diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 71e8d8e46d..b1582fc836 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -249,85 +249,21 @@ here's a set of features that will almost always be needed: * [issues marked "help wanted"](https://github.com/quisquous/cactbot/issues?utf8=%E2%9C%93&q=label%3A%22help+wanted%22) * [adding missing timelines](https://github.com/quisquous/cactbot/issues/414) * missing translations -* job ui for missing jobs (that you play and have opinions on) ## Trigger Guidelines -As a rule, cactbot defaults to text alarms with a small number of default sounds over custom sounds and tts. -This is because there is a clearer mental separation between visual text for triggers and audio of voice comms. -This separation is easier to process than mixing the audio of voice comms and tts together. -This design choice isn't for everybody, especially those used to tts (which is an option). -However, text triggers will always be the default. -Give it a try. - -As it's easier to disable triggers than to write triggers, -cactbot also tends to be slightly noisier than most people prefer. - -### Trigger Severity - -Here's the general guidelines for how cactbot has triggers. -You can use these when adding new triggers for raids. -As always, try to be consistent with the surrounding code. - -* alarm (red text) - * you will wipe the raid if you mess this up - * ideally used on random mechanics (one person gets X) - * ideally used only once or twice in a raid - -* alert (yellow text) - * you will get killed if you mess this up (or kill others) - * used for important mechanics - * should be about ~1/3 of the triggers - -* info (green text) - * you should probably do something about this, but it might not kill you - * also used for information like nael dragon dives or grand octet markers - * should be about ~2/3 of the triggers - -Another consideration for trigger severity is to make them contextually useful. -For example, if you may get selected for one of two mechanics, -it's preferable to have one mechanic be info and the other alert -(or one alert and the other alarm) -so that it is obvious from the noise which mechanic you have. - -A final consideration is to not overload the player -with too many of the same types of message. -If every trigger is an alert, -it's probably better to change some of them to be info. -Having different sounds helps create a "rhythm" for the fight. -This is especially true for simultaneous alerts. - -### Trigger Text - -Here's some general guidelines for the text in triggers. -The goal for trigger text is to mimic what a human raidcaller would say. -It should minimize the amount of that the player has to think to do a mechanic. - -* Be concise. Text should be as short as possible, like lalafells. -* Tell the player what to do rather than the mechanic name, i.e. prefer `Get Out` vs `Iron Chariot` -* Have the text be positive, i.e. prefer `Left` vs `Don't Go Right` -* Don't prescribe a particular strategy, if multiple strategies exist, i.e. Titania Ex tethers or Hello World -* If multiple strategies exist, tell the player the mechanic (`Jail on YOU`) instead of dictating a strategy. -* Don't write triggers for obvious ground aoes. -* As always, be consistent with other triggers. +See: [Raidboss Guide](docs/RaidbossGuide.md#trigger-guidelines) ## Timeline Guidelines -* Use the existing scripts in the `util/` directory to make timelines. -* Prefer using `sync` with the default time for all abilities. -* Prefer to use actual ability names for the timeline text. -* If ability names are confusing or long, consider abbreviating. -* When using `jump`, prefer to jump to a time that has a timeline entry on it. -* When adding a loop, add at least 30 seconds of fake abilities, and make sure these abilities line up with where the loop jumps to. -* As always, be consistent with other timelines. +See: [Timeline Guide](docs/TimelineGuide.md#cactbot-style-guide) + +## Oopsy Guidelines + +See: [Oopsy Guide](docs/OopsyraidsyGuide.md#overview) ## Markdown Guidelines * Improvements and additions to documentation are always welcome. * Use [semantic line breaks](https://sembr.org/). * As always, be consistent! - -## Roadmap - -If you're curious what is coming in the future, -here is a [rough roadmap](https://gist.github.com/quisquous/85b85338b7a87ca6bad98e793d159fdf). diff --git a/README.md b/README.md index f16ed15c10..c9717c3036 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -[![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/quisquous/cactbot/Test/main)](https://github.com/quisquous/cactbot/actions?query=workflow%3ATest+branch%3Amain) +[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/quisquous/cactbot/test.yml?branch=main)](https://github.com/quisquous/cactbot/actions?query=workflow%3ATest+branch%3Amain) [![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/quisquous/cactbot?color=brightgreen&sort=semver)](https://github.com/quisquous/cactbot/releases/latest) 🌎 [**English**] [[简体中文](docs/zh-CN/README.md)] [[한국어](docs/ko-KR/README.md)] @@ -10,19 +10,20 @@ 1. [About](#about) 1. [Installing](#installing) 1. [Building From Source](#building-from-source) -1. [UI Module Overview](#ui-module-overview) +1. [Overlay Overview](#overlay-overview) 1. [Troubleshooting](#troubleshooting) 1. [Cactbot Customization](#cactbot-customization) 1. [Supported Languages](#supported-languages) ## About -cactbot is an ACT overlay that provides raiding tools for [Final Fantasy XIV](http://www.finalfantasyxiv.com/). This project is an overlay plugin for +cactbot is an ACT overlay that provides raiding tools for [Final Fantasy XIV](http://www.finalfantasyxiv.com/). +This project depends on [OverlayPlugin](https://github.com/OverlayPlugin/OverlayPlugin) -which itself is a plugin for +and is a plugin for [Advanced Combat Tracker](http://advancedcombattracker.com/). -cactbot provides these modules: +cactbot provides these overlays: * raidboss: built-in timelines and triggers: @@ -113,12 +114,6 @@ This will download the cactbot into `%APPDATA%\Advanced Combat Tracker\Plugins\cactbot-version\cactbot` and enable `CactbotOverlay.dll` in the list of plugins. -**Note**: Due to a difference in how ACT expects archives to be -and how cactbot generates its zip files, -there will be something like a `cactbot-0.15.2` folder -that corresponds to the initial version that you downloaded cactbot. -This folder name does not matter and is cosmetic. - ### Plugin Load Order Because of cactbot’s dependencies, @@ -133,9 +128,9 @@ Verify that your plugins are in this order: Finally, restart ACT. -## Adding overlay modules +## Adding overlays -Here's an example of how to set up the raidboss overlay module. +Here's an example of how to set up the raidboss overlay. Setting up other cactbot overlays works identically. 1. Open ACT. @@ -243,30 +238,29 @@ To install npm and start Webpack, follow these steps: 1. Run `npm run build` or `npm start`. Cactbot should always work with the latest LTS release. - If this is not the case, file an issue. See the [contributing](CONTRIBUTING.md#validating-changes-via-webpack) documentation for more details about using Webpack. -## UI module overview +## Overlay Overview -The [ui/](ui/) directory contains cactbot's ui modules. +The [ui/](ui/) directory contains cactbot's overlays. If you installed cactbot following the instructions above, this will most likely be `%APPDATA%\Advanced Combat Tracker\Plugins\cactbot-version\cactbot\ui\`. -Each cactbot ui module should be added as a separate overlay. -See the [Adding Overlay Modules](#adding-overlay-modules) section for more details about setup. +Each cactbot overlay should be added as a separate overlay. +See the [Adding Overlays](#adding-overlays) section for more details about setup. -### [raidboss](ui/raidboss) module +### [raidboss](ui/raidboss) overlay -To use this module, +To use this overlay, point cactbot at **ui/raidboss/raidboss.html** or use the `Cactbot Raidboss` preset. -This module provides a visual timeline of upcoming events in a fight, as well as text and audio +This overlay provides a visual timeline of upcoming events in a fight, as well as text and audio notifications to help increase raid awareness. Text and sound alerts can be based on the fight timeline, or come from log messages that occur in the game, similar to ACT's "Custom Triggers". -The module is designed to look and feel similar to the +The overlay is designed to look and feel similar to the [BigWigs Bossmods](https://www.curseforge.com/wow/addons/big-wigs) addon for World of Warcraft. [This page](https://quisquous.github.io/cactbot/util/coverage/coverage.html) lists @@ -275,7 +269,7 @@ Support is continually added over time (patches welcome!) but a lot of old content may not be supported yet. Fight timelines are provided in files designed for the [ACT Timeline](https://github.com/grindingcoil/act_timeline) -plugin, [documented here](http://dtguilds.enjin.com/forum/m/37032836/viewthread/26353492-act-timeline-plugin) +plugin, [documented here](https://web.archive.org/web/20230426121530/https://dtguilds.enjin.com/forum/m/37032836/viewthread/26353492-act-timeline-plugin) with [some extensions](docs/TimelineGuide.md). There are three levels of text alerts, in order of escalating importance: `info`, `alert`, and `alarm`. @@ -283,7 +277,7 @@ Text messages will be in one of these, and more important levels are larger and Timeline files and triggers for text and sound alerts are found in [ui/raidboss/data](ui/raidboss/data), timeline files with `.txt` extension and trigger files with `.ts` extension. -In this screenshot, the raidboss module is highlighted, with the timeline circled in red, and the +In this screenshot, the raidboss overlay is highlighted, with the timeline circled in red, and the text alerts circled in yellow, with an `alert`-level text message visible. ![raidboss screenshot](screenshots/Raidboss.png) @@ -323,12 +317,15 @@ If the emulator is not working, check the console log in the inspector for error ![raidboss emulator screenshot](screenshots/raidboss_emulator.png) -### [oopsyraidsy](ui/oopsyraidsy) module +### [oopsyraidsy](ui/oopsyraidsy) overlay -To use this module, +To use this overlay, point cactbot at **ui/oopsyraidsy/oopsyraidsy.html** or use the `Cactbot OopsyRaidsy` preset. -This module provides mistake tracking and death reporting. Oopsy raidsy is meant to reduce the time wasted understanding what went wrong on fights and how people died. During the fight, only a limited number of mistakes are shown (to avoid clutter), but afterwards a full scrollable list is displayed. +This overlay provides mistake tracking and death reporting. +Oopsy raidsy is meant to reduce the time wasted understanding what went wrong on fights and how people died. +During the fight, only a limited number of mistakes are shown (to avoid clutter), +but afterwards a full scrollable list is displayed. When somebody dies, the last thing they took damage from is listed in the log. For example, if the log specifies: ":skull: Poutine: Iron Chariot (82173/23703)" this means that Poutine most likely died to Iron Chariot, taking 82173 damage and having 23703 health at the time. The health value itself is not perfect and may be slightly out of date by a ~second due to a hot tick or multiple simultaneous damage sources. @@ -341,12 +338,12 @@ Mistake triggers are specified for individual fights in the [ui/oopsyraidsy/data You can copy oopsy lines to the clipboard by clicking them. (You may need to uncheck `Enable Clickthrough` checkbox from the OverlayPlugin option.) -### [jobs](ui/jobs) module +### [jobs](ui/jobs) overlay -To use this module, +To use this overlay, point cactbot at **ui/jobs/jobs.html** or use the `Cactbot Jobs` preset. -This module includes 3 parts: a resource zone at top middle, a raidbuff zone at top right, and a tracking zone at bottom. +This overlay includes 3 parts: a resource zone at top middle, a raidbuff zone at top right, and a tracking zone at bottom. * **resource zone**: HP bars and job-specific resource, along with some special counters for some jobs. * **tracking zone**: job-specific important buff/debuff duration, cooldowns and procs. @@ -357,7 +354,7 @@ You can change some of the behavior or appearance via the user panel, e.g. only However, customization of some behavior like cooldown alert thresholds and element order is not available for now. In this screenshot, the RDM jobs UI is shown as an example. -The in-game UI is shown at top and the jobs module is shown at bottom. +The in-game UI is shown at top and the jobs overlay is shown at bottom. HP & MP bar, White Mana and Black Mana are shown in purple. The right yellow is raidbuff icon. Verstone Ready duration, Verfire Ready duration, Fleche cooldown, Contre Sixte cooldown are shown in red. @@ -394,12 +391,12 @@ Verstone Ready duration, Verfire Ready duration, Fleche cooldown, Contre Sixte c -### [eureka](ui/eureka) module +### [eureka](ui/eureka) overlay -To use this module, +To use this overlay, point cactbot at **ui/eureka/eureka.html** or use the `Cactbot Eureka` preset. -This module provides automatic tracking of NMs that are popped or have +This overlay provides automatic tracking of NMs that are popped or have been killed. It shows gales/night timers and any local tracker link that has been pasted in chat. Any flags in chat are also temporarily included on the map. @@ -413,12 +410,12 @@ If you do not see the emoji, make sure you have installed [this Windows update]( ![eureka screenshot](screenshots/promo_eureka.png) -### [radar](ui/radar) module +### [radar](ui/radar) overlay -To use this module, +To use this overlay, point cactbot at **ui/radar/radar.html** or use the `Cactbot Radar` preset. -This module lets you know about nearby hunt mobs (S-rank, A-rank, etc). +This overlay lets you know about nearby hunt mobs (S-rank, A-rank, etc). When one pops, it gives you an arrow (based on your character's heading) and a distance to the mob. @@ -432,16 +429,12 @@ See the `cactbot/user/radar-example.js` for more options. ![radar screenshot](screenshots/promo_radar.png) -### [dps](ui/dps) meters +### [dps](ui/dps) meter overlays -cactbot can be used with any dps meter overlay designed for OverlayPlugin's miniparse -addon, with the option to build out more features through cactbot's additional Javascript -APIs. cactbot also auto-stops fights on wipes, so you can configure ACT's fight time to -infinity. +cactbot has a couple of dps meters as well with a few extra features. +They hide when you change zones, so it's not something you need to manually hide or show. -The [xephero](ui/dps/xephero) dps meter is based on the same dps meter built for miniparse, -with the additional ability to do per-phase dps tracking, displayed in additional columns. -In the screenshot below the phases are named B1, B2, B3. These autogenerate from dungeon bosses, but could be used to differentiate raid fight phases. +The [xephero](ui/dps/xephero) dps meter is based on the same dps meter built for miniparse. ![xephero screenshot](screenshots/xephero.png) @@ -450,9 +443,9 @@ recolored to match [fflogs](http://fflogs.com). ![rdmty screenshot](screenshots/rdmty.png) -### [pull counter](ui/pullcounter) module +### [pull counter](ui/pullcounter) overlay -This small module sticks the current pull count for raiding bosses on screen. +This small overlay sticks the current pull count for raiding bosses on screen. This is primarily for folks who stream a lot and want to review video footage. Having a number on screen makes it easy to scrub through video and find particular pulls to review. @@ -465,12 +458,12 @@ file. ![pull counter screenshot](screenshots/pullcounter.png) -### [test](ui/test) module +### [test](ui/test) overlay -To use this module, +To use this overlay, point cactbot at **ui/test/test.html** or use the `Cactbot Test` preset. -This module is just an onscreen test of cactbot variables and is not meant to be used while playing. +This overlay is just an onscreen test of cactbot variables and is not meant to be used while playing. It can be useful to try out to make sure everything is working as expected or to use to help debug overlay issues. ![test screenshot](screenshots/test.png) @@ -525,6 +518,7 @@ international (English, German, French, Japanese) version, the current Chinese version, and the current Korean version. Some translations are still a work in progress. +See the [cactbot coverage page](https://quisquous.github.io/cactbot/util/coverage/coverage.html) for more details. ## Licensing, Trademarks, Copyright diff --git a/docs/FAQ-Troubleshooting.md b/docs/FAQ-Troubleshooting.md index 479a6f21f3..c942593818 100644 --- a/docs/FAQ-Troubleshooting.md +++ b/docs/FAQ-Troubleshooting.md @@ -80,7 +80,7 @@ A common use case is to add one overlay for timeline only and one overlay for al If you are seeing timelines but not alerts or vice versa, make sure you have the overlays you need. -See: [this section](../README.md#adding-overlay-modules) for how to add cactbot overlays. +See: [this section](../README.md#adding-overlays) for how to add cactbot overlays. ### Summerford Farms Raidboss Test diff --git a/docs/RaidbossGuide.md b/docs/RaidbossGuide.md index a790cb6397..f69e6f373e 100644 --- a/docs/RaidbossGuide.md +++ b/docs/RaidbossGuide.md @@ -1,12 +1,110 @@ -# Triggers File Format +# Raidboss Triggers Overview [**English**] [[简体中文](./zh-CN/RaidbossGuide.md)] +## Trigger Guidelines + +As a rule, cactbot defaults to text alarms with a small number of default sounds over custom sounds and tts. +This is because there is a clearer mental separation between visual text for triggers and audio of voice comms. +This separation is easier to process than mixing the audio of voice comms and tts together. +This design choice isn't for everybody, especially those used to tts (which is an option). +However, text triggers will always be the default. +Give it a try. + +As it's easier to disable triggers than to write triggers, +cactbot also tends to be slightly noisier than most people prefer. + +### Trigger Severity + +Here's the general guidelines for how cactbot has triggers. +You can use these when adding new triggers for raids. +As always, try to be consistent with the surrounding code. + +- alarm (red text) + - you will wipe the raid if you mess this up + - ideally used on random mechanics (one person gets X) + - ideally used only once or twice in a raid + +- alert (yellow text) + - you will get killed if you mess this up (or kill others) + - used for important mechanics + - should be about 1/2 of the triggers + +- info (green text) + - you should probably do something about this, but it might not kill you + - good for "move now" sorts of calls + - also used for information like nael dragon dives or grand octet markers + - should be about 1/2 of the triggers + +Another consideration for trigger severity is to make them contextually useful. +For example, if you may get selected for one of two mechanics, +it's preferable to have one mechanic be info and the other alert +(or one alert and the other alarm) +so that it is obvious from the noise which mechanic you have. + +A final consideration is to not overload the player +with too many of the same types of message. +If every trigger is an alert, +it's probably better to change some of them to be info. +Having different sounds helps create a "rhythm" for the fight. +This is especially true for simultaneous alerts. + +Try not to have more than two triggers on screen at once, +and try not to have them be the same type (e.g. two alert texts) +to avoid visual clutter. + +### Trigger Text + +Here's some general guidelines for the text in triggers. +The goal for trigger text is to mimic what a human raidcaller would say. +It should minimize the amount of that the player has to think to do a mechanic. + +- Be concise. Text should be as short as possible, like lalafells +- Tell the player what to do rather than the mechanic name, i.e. prefer `Get Out` vs `Iron Chariot` +- Have the text be positive, i.e. prefer `Left` vs `Don't Go Right` +- Don't prescribe a particular strategy by default if multiple strategies exist, e.g. Hello World +- If multiple strategies exist, tell the player the mechanic (`Jail on YOU`) or add an [option](#strat-specific-options) +- Don't write triggers for obvious ground aoes +- Be careful about telling people what needs to be done vs what to do in the moment (e.g. `Under + Intercards` vs `(Under + Intercards for later)`) +- Keep the text brief and assume that the player has some familiarity with the mechanic; people are only new once, so it's better to optimize for clarity for experienced players +- As always, be consistent with other triggers + +### Strat-specific options + +If a fight does have strat-specific options, +the way to handle this is to add a `config` section to the trigger set. +This will create options in the [cactbot config UI](CactbotCustomization.md#using-the-cactbot-ui) +that will appear at the top of each raidboss file section. + +By default, you should not pick a particular strategy if there are multiple. + +See: [P12S](../ui/raidboss/data/06-ew/raid/p12s.ts) for an example of many different tower and classical concept options. + +TODO: update this guide to explain the structure of the config section better + +### Trigger Implementation Guidelines for Developers + +This is just a grab bag of miscellaneous thoughts about triggers. + +- triggers should be timed so that when the text appears it it safe to do that mechanic, e.g. if there's a stack=>spread don't call spread until the stack has gone off +- use `delaySeconds` sparingly; it's more reliable to trigger off of ability or damage than a delay from a much earlier cast or ability (the stack=>spread example calling spread would use the stack damage) +- knockbacks generally use 5s of delay to make sure that when the trigger text appears it is safe to hit the button +- prefer using a normal trigger over a timeline trigger, as timeline triggers can be inconsistent from unknown hp pushes +- always use `suppressSeconds` for timeline triggers (TODO: make this automatic or suppress until the next jump) +- if you are using custom OverlayPlugin lines (e.g. MapEffect, any log type >= 256), make sure your triggers fail silently or return basic information if they are not present (as they sometimes are not up to date immediately after a patch) +- never return raw strings or concatenated strings; always return `output.something!()`; each parameter should also be `output.somethingElse!()` or an array of outputs (this allows everything to be translated) +- if you have multiple alerts like `Knockback` and `Spread`, or `Right March` and `Stack` that go off at the same time consider adding some logic to combine them into a single trigger (see: `AAI Statice Pop`) +- if you have really wordy triggers, consider disabling tts for that trigger via `tts: null` +- similarly sound can be disabled via `sound: ''` if you don't want to jump scare people who are waiting for a trigger to do something, or if you have a lot of triggers (e.g. counting multhits) +- sometimes triggers give you information egregiously earlier than you could know otherwise; sometimes it's extremely helpful (e.g. caster uptime) and so don't worry overmuch about making things "fair"; if the information comes so early that you might forget it and there's nothing else going on, feel free to delay it until a more reasonable time + ## File Structure -Each trigger file is a module that exports a single trigger set. +Each trigger file is a TypeScript module that exports a single trigger set. + +See: [trigger.d.ts](../types/trigger.d.ts) for more details. -```javascript +```typescript import ZoneId from '../path/to/resources/zone_id'; // Other imports here. @@ -16,9 +114,24 @@ export default { zoneLabel: { en: 'The Weapon\'s Refrain (Ultimate)', }, + loadConfigs: ['TheUnendingCoilOfBahamutUltimate'], + config: [ + { + id: 'someOptionId', + comment: { + en: 'This text will show up in the cactbot config ui to explain this to users.', + }, + name: { + en: 'Turn on Fancy Option', + }, + type: 'checkbox', + default: false, + }, + ], + resetWhenOutOfCombat: true, overrideTimelineFile: false, timelineFile: 'filename.txt', - timeline: `hideall`, + timeline: `hideall "Reset"`, timelineReplace: [ { locale: 'en', @@ -30,7 +143,11 @@ export default { }, }, ], - resetWhenOutOfCombat: true, + timelineTriggers: [ + { /* ..trigger 1.. */ }, + { /* ..trigger 2.. */ }, + { /* ..trigger 3.. */ } + ], triggers: [ { /* ..trigger 1.. */ }, { /* ..trigger 2.. */ }, @@ -44,7 +161,7 @@ export default { **id** A unique string to identify this trigger set. This value should be unique among all trigger sets. -For cactbot triggers, this should generally match the `ZoneId` itself for consistency. +For cactbot triggers, this should exactly match the `ZoneId` itself for consistency. If there are multiple zones, then pick a reasonable string, e.g. `'EurekaOrthosGeneral'` for the set that applies to all Eureka Orthos floors. @@ -65,12 +182,27 @@ It should return an object that sets values for any fields in `data` that need t This function is called any time the fight is reset, mainly on zone change or wipe. See [t1.ts](../ui/raidboss/data/02-arr/raid/t1.ts) for an example implementation. -**zoneRegex** +**zoneRegex** (deprecated) A regular expression that matches against the zone name (coming from ACT). If the regular expression matches, then the triggers will apply to that zone. For players in CN/KR, zone names can be Chinese/Korean, though other players always see English. Your Regex should cover them. The current zone name can be found on title or main UI of ACT. +**config** +An array of `ConfigEntry` objects. +Each object is an option exposed to the user in the [cactbot config UI](CactbotCustomization.md#using-the-cactbot-ui). +See: [user_config.ts](../resources/user_config.ts) for more details. +This is the same format the config ui uses, exposed into a trigger set. +These are exposed via `data.triggerSet.optionName` where `optionName` is the `id` from the `ConfigEntry`. + +**loadConfigs** +An array of strings, which correspond to trigger set ids. + +By default, not all config values from all files are available in `data.triggerSet`. +The current file is always loaded. +If you need to load the config options from another file, +you can specify the `id` from the other trigger set. + **overrideTimelineFile** An optional boolean value that specifies that the `timelineFile` and `timeline` specified in this trigger set override all timelines previously found. @@ -78,7 +210,7 @@ This is a way to replace timelines in user files and is not used inside cactbot **timelineFile** An optional timeline file to load for this zone. -Timeline files in cactbot should be named the same as the `.js` file they come from, +Timeline files in cactbot should be named the same as the `.ts` file they come from, but with a `.txt` extension instead. These files live alongside their parent trigger file in the appropriate folder. (As for example `raidboss/data/04-sb/raid/`). @@ -90,9 +222,6 @@ or an array contains different kinds of items above. There is a complete example that uses the **timeline** property in [test.ts](../ui/raidboss/data/00-misc/test.ts). -**locale** -Optional locale to restrict the trigger file to, e.g. 'en', 'ko', 'fr'. If not present, applies to all locales. - **replaceText** Key:value pairs to search and replace in timeline ability names. The display name for that ability is changed, but all `hideall`, `infotext`, `alerttext`, `alarmtext`, etc all refer to the original name. This enables translation/localization of the timeline files without having to edit those files directly. @@ -100,11 +229,21 @@ Key:value pairs to search and replace in timeline ability names. The display nam Key:value pairs to search and replace in timeline file sync expressions. Necessary if localized names differ in the sync regexes. **resetWhenOutOfCombat** -Boolean, defaults to true. If true, timelines and triggers will reset automatically when the game is out of combat. Otherwise it's necessary to manually call `data.StopCombat()`. +Boolean, defaults to true. +If true, timelines and triggers will reset automatically when the game is out of combat. +Otherwise it's necessary to manually call `data.StopCombat()`. +This is used for sections where you want the timeline to keep running if you're not in combat, +such as in Bozja or in Phantom Train where sometimes combat stops between train cars. + +**triggers** / **timelineTriggers** + +An array of raidboss triggers. See below for the structure. + +Timeline triggers (whose regex matches timeline text) are in their own section. ## Trigger Structure -```javascript +```typescript { id: 'id string', type: 'StartsUsing', @@ -301,7 +440,7 @@ In the string, you can use `${param}` constructions to allow for functions to pa Here are two example `outputStrings` entries for a tank buster: -```javascript +```typescript outputStrings: { noTarget: { en: 'Tank Buster', @@ -326,9 +465,9 @@ outputStrings: { Here's an example using these `outputStrings`, passing parameters to the `onTarget` version: -```javascript +```typescript alarmText: (data, matches, output) => { - return output.onTarget({ name: matches.target }); + return output.onTarget!({ name: data.party.member(matches.target) }); }, ``` @@ -336,11 +475,16 @@ Calling `output.onTarget()` finds the string in `outputStrings.onTarget` for the For each `param` passed in, it replaces `${param}` in the string with the value. Then it returns the replaced string for `alarmText` to use. +Instead of passing a name into any trigger, always use `data.party.member` to pass a player object instead. +This allows the "use job names instead of player names" option to work. +You can always pass any array (of strings or of player objects) as a parameter +and the result will be a list with commas, e.g. `['a', 'b', 'c']` => `'a, b, c'`. + Similarly, this is another trigger example, without any parameters. -```javascript +```typescript infoText: (data, matches, output) => { - return output.noTarget(); + return output.noTarget!(); }, ``` @@ -354,11 +498,11 @@ and keeps [resources/responses.ts](../resources/responses.ts) more encapsulated. For example: -```javascript +```typescript response: (data, matches, output) => { output.responseOutputStrings = { text: { en: 'Some Text: ${words}' } }; return { - alarmText: output.text({ words: 'words word words' }), + alarmText: output.text!({ words: 'words word words' }), }; }, ``` @@ -370,7 +514,7 @@ You can use it to explain your trigger, leave some descriptive text, or even inc Example: -```javascript +```typescript comment: { en: `Write your annotation text here. Supports HTML tags`, }, @@ -449,10 +593,11 @@ the `id`, (the hex ability ID, such as `2478`,) and whether or not the regex sho A sample trigger that makes use of all these elements: -```javascript +```typescript { id: 'TEA Mega Holy Modified', - netRegex: NetRegexes.startsUsing({ source: 'Alexander Prime', id: '4A83', capture: false }), + type: 'StartsUsing', + netRegex: { source: 'Alexander Prime', id: '4A83', capture: false }, condition: Conditions.caresAboutMagical(), response: Responses.bigAoe('alert'), }, @@ -460,7 +605,7 @@ A sample trigger that makes use of all these elements: This is far less verbose than: -```javascript +```typescript { id: 'TEA Mega Holy Modified', netRegex: /^(?:20)\|(?:[^|]*)\|(?:[^|]*)\|(?:Alexander Prime)\|(?:4A83)\|/i, @@ -497,10 +642,11 @@ When writing triggers, prefer using `Outputs` if possible to avoid duplication. A simple example using `outputStrings` and `Outputs` as below: -```javascript +```typescript { id: 'E9S Zero-Form Devouring Dark', - netRegex: NetRegexes.startsUsing({ id: '5623', source: 'Cloud Of Darkness' }), + type: 'StartsUsing', + netRegex: { id: '5623', source: 'Cloud Of Darkness' }, durationSeconds: 4, alertText: function(data, matches, output) { if (data.me === matches.target) @@ -535,12 +681,13 @@ A simple example using `outputStrings` and `Outputs` as below: ## Timeline Info The trigger subfolders may contain timeline text files in the format defined by ACT Timeline plugin, which described in here: - + Each timeline file Cactbot uses has to be loaded by a relative directory reference from the given [TRIGGER-FILE].js. Typically the filename for the timeline file will match the name of the trigger file, and for specific encounters the filenames should at least loosely match the zone name. -Cactbot implements some extensions to the original format. These extensions can appear in the file -itself or in the `timeline` field in the triggers: +Cactbot implements some extensions to the original format. +These extensions can appear in the file itself or in the `timeline` field in the triggers. +That said, generally these aren't used and timeline triggers are written instead. **infotext "event name" before 1** Show a info-priority text popup on screen before an event will occur. The `event name` matches a timed event in the file and will be shown before each occurrence of events with that name. By default the name of the event will be shown, but you may specify the text to be shown at the end of the line if it should be different. The `before` parameter must be present, but can be 0 if the text should be shown at the same time the event happens. Negative values can be used to show the text after the event. @@ -579,8 +726,6 @@ This report includes links to all of the missing translations: - [missing_translations_cn.html](https://quisquous.github.io/cactbot/util/coverage/missing_translations_cn.html) - [missing_translations_ko.html](https://quisquous.github.io/cactbot/util/coverage/missing_translations_ko.html) -TODO: it'd be nice if we could mark cn/ko fights that haven't been released yet as not needing text/sync translations. - You can run `npm run util` and select find translations using the ui. You can also run `npm run util -- findTranslations -f . -l fr` (or `-l de` or `-l cn` etc) @@ -591,7 +736,7 @@ These reports have several different categories of errors: - other: general miscellaneous errors, usually not related to any line - code: a block of TypeScript code is missing a translation -- sync: a trigger or a timeline `sync /something/` line is missing a translation +- sync: a trigger or a timeline `Ability { source: "something" }` line is missing a translation - text: timeline text (e.g. `2.0 "text"`) is missing a translation ### Code Translations @@ -806,6 +951,9 @@ the tests will catch that error because it expects that there are no missing tra It is not an `npm run test` error to have `missingTranslations: true` when it is not needed, but this error will show up in the find missing translations script and should be cleaned up if possible. +Missing translations are listed on the [coverage page](https://quisquous.github.io/cactbot/util/coverage/coverage.html) +by language. + #### Escaping Here's a brief aside on escaping special characters, with some examples. @@ -842,3 +990,131 @@ This becomes the regex `/724P-Operated Superior Flight Unit \\\(A-Lpha\\\)/`. On the positive side, this only comes up when there are special characters that need to be escaped in a string or a regex (e.g. backslash, parens, brackets) which are all fairly rare in FFXIV. + +## Sync Files + +There are a couple of cases in FFXIV where the content is literally identical across different zones, +but with different ability ids. +These are for criterion dungeons vs their savage equivalent, +as well as extreme trials and their unreal equivalent. + +The best way to handle these is to add an entry into `util/sync_files.ts` +with file and ability ids mappings. +This can be run via `npm run sync-files` which will create the new files with those mappings. +If you don't have ids, you can use `TODO`. +(Sometimes this may cause typescript errors, so you can use `TODO1` or `TODO2` etc if you need unique ids.) + +By using this script, you will make sure that the files stay in sync. + +## Trigger Examples + +Here's a few examples of common patterns for triggers. + +### Collect / Call / Cleanup multi-trigger + +For triggers where there are multiple lines you need to look at, +a common pattern is the collect/call/cleanup pattern. +One collecting trigger collects all the lines and stores it on `data`. +Another call trigger uses the same `netRegex` with a `delaySeconds` + `suppressSeconds` to make the call using that `data`. +One final cleanup trigger uses the same `netRegex` with a larger `delaySeconds` + (optional) `suppressSeconds` to erase the collected information on `data`. + +- [P7N Hemitheos Aero II Collect](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/raid/p7n.ts#:~:text=id%3A%20%27P7N%20Hemitheos%20Aero%20II%20Collect%27) +- [P7N Hemitheos Aero II Call](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/raid/p7n.ts#:~:text=id%3A%20%27P7N%20Hemitheos%20Aero%20II%20Call%27) +- [P7N Hemitheos Aero II Cleanup](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/raid/p7n.ts#:~:text=id%3A%20%27P7N%20Hemitheos%20Aero%20II%20Cleanup%27) + +Often the cleanup is combined into the call, or is put onto phase transitions or other triggers. + +### Collect / Call / Cleanup single trigger + +It's possible to have a single trigger do collect/call/cleanup. + +See: [AAI Ketuduke Foamy Fetters Bubble Weave](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/dungeon/another_aloalo_island.ts#:~:text=id%3A%20%27AAI%20Ketuduke%20Foamy%20Fetters%20Bubble%20Weave%27) + +`delaySeconds` does the collecting. As long as the delay is greater than zero this will work, +but you can optionally set a delay to zero once you have collected everything you need +so that it goes off as soon as possible. + +`alertText` does the call. Rather than using `suppressSeconds` (which would prevent collection), +it checks if there's anything that's been collected and quits if cleanup has occurred. + +Doing the cleanup in `run` means that as soon as the first trigger finishes and cleans up, +the remaining delayed versions of this trigger will all early out in `alertText`. + +### Headmarkers + +For writing triggers for [Headmarker lines](LogGuide.md#line-27-0x1b-networktargeticon-head-marker) +(i.e. graphic indicators on players and enemies), +see the [Headmarker Guide](Headmarkers.md). + +### Get Combatants + +One thing to keep in mind while writing triggers is that some log lines +have information that comes from memory rather than network data. +For [AddCombatant](LogGuide.md#line-03-0x03-addcombatant), +this means that when the log line gets emitted may drift in time somewhat. +For other ffxiv plugin log lines that have position data, +(such as [StartsUsing](LogGuide.md#line-20-0x14-networkstartscasting) or [AddCombatant](LogGuide.md#line-03-0x03-addcombatant)) +this also means that the position data might be stale. +The reason for this is that many times ffxiv will spawn in an invisible actor in a default location, +and then move it right before it starts casting. +Whether or not the ffxiv plugin picks up the correct location is timing dependent. + +Note: [Ability](LogGuide.md#line-21-0x15-networkability) seems to be mostly correct. +Note: [StartsuUsingExtra](LogGuide.md#line-263-0x107-startsusingextra) is network data, so is always correct. + +A way to fix is this is to use `getCombatants`, +aka `callOverlayHandler({ call: 'getCombatants', etc })`. +This is an OverlayPlugin function that will inspect the state of memory +at that moment and then return the current values. +You can use [CombatantMemory](LogGuide.md#line-261-0x105-combatantmemory) lines +which emit changing position data for combatants to get an idea of when actors have updated +and it is safe to call `getCombatants`. +`CombatantMemory` (as the name implies) does come from memory and so may be slightly delayed. + +See: [P10S Dividing Wings Tether](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/raid/p10s.ts#:~:text=id%3A%20%27P10S%20Dividing%20Wings%20Tether%27) + +Some common suggestions: + +- add `combatantData: PluginCombatantState[];` to the `Data` object (as you can then reuse this across all `getCombatants` calls as they so far have never been needed simultaneously) +- add a `promise` to call `getCombatants` (which will return quickly, but asynchronously) +- make sure to clear `data.combatantData` first +- the ids for combatants are decimal ids and not hex ids so you must convert them (see example trigger) +- the returned combatant list is not in any order +- verify that the returned combatant list has the correct number of combatants in it before processing + +### Two-step Mechanics + +A common multi-step example is when there is a stack into a spread or a spread into a stack. +It's nice to call `Spread => Stack` and then once the spreads go off call `Stack` after that. +It's both a reminder (for people lost in the sauce) but if the second call triggers on the first damage, +it can tell people when it it safe to start moving and the initial mechanic has locked in. + +See: [AAI Ketuduke Hydro Buff Double](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/dungeon/another_aloalo_island.ts#:~:text=id%3A%20%27AAI%20Ketuduke%20Hydro%20Buff%20Double%27) +and [AAI Ketuduke Hydro Buff Double Followup](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/dungeon/another_aloalo_island.ts#:~:text=id%3A%20%27AAI%20Ketuduke%20Hydro%20Buff%20Double%20Followup%27) + +### Three-step Mechanics + +There are a few three (or more)-step mechanics in the game that have a sequence of moves to do. +Quintuplecast, P12S door boss wings, and Another Mount Rokkon Triple Kasumi-giri are all examples. + +A common way to call these mechanics that have tells is something like the following, +where "first", "second", "third" could all be things like "spread" or "left" or "swap". + +- [first tell] alert: `First mechanic` (long duration until the first mechanic goes off, so you don't forget while you wait for the tells) +- [second tell] info: `(then second mechanic)` (short duration) +- [third tell] info: `first => second => third` (long duration, so you can read what's coming next while the mechanics go off) +- [first mechanic goes off] alert: `Second` (first tell duration should have ended before this) +- [second mechanic goes off] alert: `Third` + +The benefits of this are: + +- allows somebody to raidcall if they want / everybody is prepared for the steps +- maximum one alert and one info text on screen at once +- people can turn off parts of this they don't want +- if final two `Second` and `Third` calls are based on ability ids of the `First` and `Second` abilities going off, then it's safe to do that movement when it goes off + +See: [P12S First Wing](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/raid/p12s.ts#:~:text=id%3A%20%27P12S%20First%20Wing%27), +[P12S Wing Collect](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/raid/p12s.ts#:~:text=id%3A%20%27P12S%20Wing%20Collect%27), +[P12S Wing Followup](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/raid/p12s.ts#:~:text=id%3A%20%27P12S%20Wing%20Followup%27) + +See also: [AMR Moko Triple Kasumi-giri triggers](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.ts) diff --git a/docs/TimelineGuide.md b/docs/TimelineGuide.md index 31c547fe18..2dac6fc354 100644 --- a/docs/TimelineGuide.md +++ b/docs/TimelineGuide.md @@ -3,15 +3,6 @@ This is a guide for people who want to write timelines, primarily for cactbot. -NOTE: When this guide was originally written, -Cape Westwind was a standard 8-player trial. -This was removed in Endwalker, and that version of the encounter is no longer accessible. -However, the timeline creation process for it is still valid, -and it covers nearly all the different situations that can arise during timeline creation. - -The example output for `test_timeline` is out of date compared to its modern incarnation, -but it's close enough to be understandable. - ![import screenshot](images/timelineguide_timeline.png) cactbot uses the [raidboss module](https://github.com/quisquous/cactbot#raidboss-module) @@ -21,48 +12,103 @@ or triggers that are based on timelines themselves. ## Table of Contents -* [History](#history) -* [Timeline File Syntax](#timeline-file-syntax) - * [Comments](#comments) - * [Entries](#entries) - * [Commands](#commands) - * [Examples](#examples) - * [Testing](#testing) - * [Shasta Kota Guide](#shasta-kota-guide) -* [Cactbot Style Guide](#cactbot-style-guide) -* [Timeline Triggers](#timeline-triggers) -* [Timeline Injection](#timeline-injection) -* [Timeline Translation](#timeline-translation) -* [Example Timeline Creation](#example-timeline-creation) - * [Run the fight a few times](#run-the-fight-a-few-times) - * [Software prerequisites](#software-prerequisites) - * [Timeline Skeleton](#timeline-skeleton) - * [Generating an initial timeline file](#generating-an-initial-timeline-file) - * [Building Loops](#building-loops) - * [Adding Phases](#adding-phases) - * [Next phase](#next-phase) - * [Final Phase](#final-phase) - * [Boilerplate glue](#boilerplate-glue) - * [Making loops loop](#making-loops-loop) - * [Putting it all together](#putting-it-all-together) - * [Testing Timelines](#testing-timelines) - * [Test against other timelines](#test-against-other-timelines) +* [Timeline Guide](#timeline-guide) + * [Table of Contents](#table-of-contents) + * [History](#history) + * [How do Timelines Work](#how-do-timelines-work) + * [Timeline File Syntax](#timeline-file-syntax) + * [Comments](#comments) + * [Entries](#entries) + * [Commands](#commands) + * [Basic Testing](#basic-testing) + * [Cactbot Style Guide](#cactbot-style-guide) + * [Guidelines](#guidelines) + * [Trigger Filenames](#trigger-filenames) + * [Pre-timeline combat, starts & resets, and multiple zones](#pre-timeline-combat--starts---resets--and-multiple-zones) + * [Timeline Triggers](#timeline-triggers) + * [Timeline Injection](#timeline-injection) + * [Timeline Translation](#timeline-translation) + * [Making a Timeline](#making-a-timeline) + * [Run the fight a few times](#run-the-fight-a-few-times) + * [Software prerequisites](#software-prerequisites) + * [Timeline Skeleton](#timeline-skeleton) + * [Using make_timeline.ts](#using-make-timelinets) + * [Timeline Ability Tables](#timeline-ability-tables) + * [One Hacky Workflow Suggestion](#one-hacky-workflow-suggestion) + * [Using make_timeline.ts with fflogs](#using-make-timelinets-with-fflogs) + * [Using test_timeline.ts](#using-test-timelinets) + * [Using test_timeline.ts with fflogs](#using-test-timelinets-with-fflogs) + * [Common Timeline Edits](#common-timeline-edits) + * [`-ii` to ignore abilities](#--ii--to-ignore-abilities) + * [`-p` for later phases](#--p--for-later-phases) + * [Targetable Lines](#targetable-lines) + * [Ignoring Combatants](#ignoring-combatants) + * [Adjusting Blocks of Timelines](#adjusting-blocks-of-timelines) + * [Variations vs Simultaneous Abilities](#variations-vs-simultaneous-abilities) + * [Basic Loops](#basic-loops) + * [Branches](#branches) + * [HP% Pushes](#hp--pushes) + * [Doubled Abilities](#doubled-abilities) + * [Doubled Abilities with suffixes](#doubled-abilities-with-suffixes) + * [Multi-hit Abilities](#multi-hit-abilities) + * [Numbering Important Mechanics](#numbering-important-mechanics) + * [Renaming Abilities to `--sync--`](#renaming-abilities-to----sync---) + * [Future Work](#future-work) + * [Smaller Fixes/Changes](#smaller-fixes-changes) + * [Larger Features](#larger-features) + * [Ability Table](#ability-table) ## History -Back in 2016, Shasta Kota on the Death and Taxes website made this [guide](https://dtguilds.enjin.com/forum/m/37032836/viewthread/26353492-act-timeline-plugin) to use with anoyetta's [ACT timeline plugin](https://github.com/anoyetta/ACT.Hojoring). +Back in 2016, Shasta Kota on the Death and Taxes website made this +[guide](https://web.archive.org/web/20230426121530/https://dtguilds.enjin.com/forum/m/37032836/viewthread/26353492-act-timeline-plugin) to use with anoyetta's [ACT timeline plugin](https://github.com/anoyetta/ACT.Hojoring). That plugin is now part of Hojoring. There's also an older [kaizoban](https://github.com/090/act_timeline/releases) version of the plugin that some people have used that predates anoyetta's work. -cactbot timeline files were originally intended to be backwards compatible with these, -and so cactbot-specific extensions are injected later from the triggers file. +cactbot timeline files were originally intended to be backwards compatible with these. +Eventually when it became clear that nobody else was using this format, +some breaking changes were added, including: + +* `forcejump` keyword +* `label` keyword +* netregex sync syntax, e.g. `Ability { id: "1234", source: "That Mob" }` instead of `sync /etc/` + +## How do Timelines Work + +You can think about timelines as being a very simple state machine. +There are two states: whether it is paused or not, and the current timeline time. + +They start paused at time=0. +As soon as any sync happens, it jumps to that time, then unpauses. +If it ever jumps to time=0, then it pauses again. + +When playing, the timeline time advances in real time. +In other words, if the timeline time is currently `360.2` +and then exactly two seconds of real time pass, +then the timeline time will automatically move to `362.2`. + +To keep the timeline on track, the timeline is full of syncs +which each have a window of time that they are active for. + +Take the line: +`1350.7 "Melt" Ability { id: "5372", source: "Shiva" } window 20,10` + +This line has a `window 20,10` and a time of `1350.7`. +This means that between the timeline times of `1330.7` and `1360.7` this sync is active. + +Once the current timeline time is within that window of 30 seconds, then it can be synced to. +If the regex `Ability { id: "5372", source: "Shiva" }` matches any network log line, +then the current timeline will jump to `1350.7`. +After that the timeline will continue playing and moving forward in real time. +If that line occurs outside the valid window, it is ignored. ## Timeline File Syntax Each line in a timeline file is considered its own timeline entry. There is no ordering at all. The fact that timeline files are ordered is as a convenience to the reader. +(Two lines with the same time do keep their relative ordering.) ### Comments @@ -71,32 +117,69 @@ Everything after that on the current line will be ignored. ### Entries -Here are some grammar examples of timeline entries. -Every timeline entry begins with the ability time and the ability name. +Here are some grammar examples of the timeline. +(The parentheses here indicate optionality and are not literal parentheses.) -`Number "String" (duration Number)` +There are only a few keywords: `hideall`, `jump`, `forcejump`, `duration`, `window`, `label`. -`Number "String" sync /Regex/ (window Number,Number) (jump NumberOrLabel) (duration Number)` +Note: `forcejump` and `label` were added during Endwalker and so +many previous timelines do not use these (but could and should). -`Number "String" sync /Regex/ (window Number,Number) (forcejump NumberOrLabel) (duration Number)` +```text +# hideall "[string]" +hideall "--sync--" +hideall "Reset" -`Number label "String"` +# [number] label "[string]" +3631.7 label "oschon-p2-loop" +6508.1 label "statice-10-loop" -(The parentheses here indicate optionality and are not literal parentheses.) +# [number] "[string]" (duration [number]) +677.0 "Heavensfall Trio" +1044 "Enrage" # ??? +35.2 "Flare Breath x3" duration 4 + +# [number] "[string]" [LogType] { [params] } (window [number],[number]) (jump [numberOrLabel]) (duration [number]) +685.5 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } jump 1077.3 +267.5 "Resonance" Ability { id: "B6B", source: "Kaliya" } window 10,10 jump 217.5 +28.0 "Damning Edict?" Ability { id: "3150", source: "Chaos" } window 30,10 jump 2028.0 -**Number** can be an integer, e.g. `34`, or a float, e.g. `84.381`. +# [number] "[string]" [LogType] { [params] } (window [number],[number]) (forcejump [numberOrLabel]) (duration [number]) +5639.7 "Made Magic" Ability { id: "8B94", source: "Quaqua" } window 40,40 forcejump "quaqua-right-untouched-loop" +1258.6 "Immolating Shade (light parties)" Ability { id: "8496", source: "Golbez" } forcejump 1600.0 +``` -**NumberOrLabel** can be a **Number** (e.g. `42` or `12.8`) +`[number]` can be an integer, e.g. `34`, or a float, e.g. `84.381`. + +`[numberOrLabel]` can be a `[number]` (e.g. `42` or `12.8`) or a label name with double quotes (e.g. `"loop"` or `"branch2"`). -**String** is a character string, e.g. `"Liftoff"` or `"Double Attack"` +`"[string]"` is a character string, e.g. `"Liftoff"` or `"Double Attack"` + +`[LogType]` is a key from [netlog_defs.ts](../resources/netlog_defs.ts), +e.g. `Ability` or `StartsUsing` or `AddedCombatant`. +Any line with `[LogType]` and parameters is a "sync". -**Regex** is a [Javascript regular expression](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions). +`[params]` are a [JSON5](https://json5.org/) object. +The keys are from the `fields` of the `LogType`. +See: the [Log Guide](LogGuide.md) for more explanation. +The values are either strings or arrays of strings. +Style-wise, prefer using bareword keys with double quotes. +(Even if quoted keys or single quotes are legal.) + +These string param fields are interpreted as regular expressions, +so `"E.D.D."` means `E` followed by any character then `D` followed by any character (etc). +If you want escape a regular expression character, you need two backslashes, e.g. +`"E\\.D\\.D\\."` (i.e. matching the literal string `E.D.D.`). + +Additionally, if you are using [sync_files.ts](RaidbossGuide.md#sync-files) for this timeline +you should spell out ability ids in full, e.g. `id: "(8B43|8B46)"` instead of `id: "8B4[36]"`, +so that the script can find and replace them properly. The ability time and ability name always need to come first, -but `duration`, `forcejump`, `jump`, `sync`, and `window` +but `duration`, `forcejump`, `jump`, `[LogType]`, and `window` do not have to be in any order with respect to each other. -Stylistically, usually `sync` is put first. +Stylistically, usually the`[LogType]` sync is put first. **duration** is a time in seconds to display the accompanying action. Usually, timeline entries disappear immediately, @@ -104,13 +187,14 @@ but sometimes an action is ongoing, like 5x Bahamut's Claw in a row. You can use `duration` to show the action for that length of time. It does not need a sync to do this. -The syntax for **duration** is `duration Number`, +The syntax for **duration** is `duration [number]`, as `duration 5.5`. **forcejump** tells the timeline playback to jump to a particular time if the sync is encountered *or* if the line containing the **forcejump** is reached without syncing. This is intended for loops that will always be taken in an encounter. + When this is used, no "lookahead" loop unrolling is needed, and the timeline will use the **forcejump** destination to list events in the future, because it knows that it will always jump there. @@ -124,7 +208,8 @@ and its second value extends past the **forcejump** time, this "overhang window" will still be respected even after force jumping until the next sync or jump occurs. -The syntax for **forcejump** is `forcejump Number`, as `forcejump 204.2`. +The syntax for **forcejump** is `forcejump [number]` (e.g. `forcejump 204.2`) +or `forcejump [label]` (e.g. `forcejump "quaqua-middle-poison-loop"`). **jump** tells the timeline playback to jump to a particular time if and only if the sync is encountered. @@ -133,82 +218,64 @@ The timeline controller does not require a timeline entry at the time you jump t but common practice is to ensure there there is one for readability and sanity-check purposes. If you jump to time 0, the timeline will stop playback. -The syntax for **jump** is `jump Number`, as `jump 204.2`. +The syntax for **jump** is `jump [number]` (e.g. `jump 204.2`) +or `jump [label]` (e.g. `jump "Hieroglyphika"`). **window** is the time frame in which to consider the sync. By default, if **window** is not specified, cactbot considers it the -same as specifying `window 2.5,2.5`. In other words, +same as specifying `window 2.5,2.5`. +In other words, 2.5 seconds before the ability time and 2.5 seconds after. -As an example, for the line `3118.9 "Lancing Bolt" sync /:Raiden:3876:/`, -if the regular expression `/:Raiden:3876:/` is encountered anywhere between 3116.4 and 3121.4 -then it will resync the timeline playback to 3118.9. +As an example, for the line `3118.9 "Lancing Bolt" Ability { id: "3876", source: "Raiden" }`, +if the log line for this ability is encountered anywhere between `3116.4` and `3121.4` +then it will resync the timeline playback to `3118.9`. Often timelines will use very large windows for unique abilities, -to make sure that timelines sync to the right place even if started mid-fight. +to make sure that timelines sync to the right place even if started mid-fight +or if hp pushes are discovered when the content is no longer current. -The syntax for **window** is `window Number,Number`, as `window 10,30`. +The syntax for **window** is `window [number],[number]` (e.g `window 10,30`). +There is no space after the comma. ### Commands To hide all instances of an ability, you can use the `hideall` command. Most timelines start with the line `hideall "--sync--"` to hide syncs that are just used to keep the timeline on track but should not be shown to the player. +Timeline triggers can still match hidden entries. There are a number of other commands for generating alerts based on timeline entries. These are still supported but are not documented. Instead, alerts based on timelines in cactbot should use [timeline triggers](#timeline-triggers). -### Example Timeline Entries - -```bash -# I am just a comment - -# This hides all timeline entries that contain the exact string "--sync--". -hideall "--sync--" - -# These examples are improper, generally speaking. Lines should have syncs, -# or their syncs should be commented out. -# Some older timelines will still have entries that look like this though. -677.0 "Heavensfall Trio" -1044 "Enrage" # ??? -35.2 "Flare Breath x3" duration 4 - -# These are examples of lines that sync to actions. -1608.1 "Petrifaction" sync / 1[56]:[^:]*:Melusine:7B1:/ window 1610,5 -1141.4 "Leg Shot" sync / 1[56]:[^:]*:Mustadio:3738:/ duration 20 -28.0 "Damning Edict?" sync / 1[56]:[^:]*:Chaos:3150:/ window 30,10 jump 2028.0 -524.9 "Allagan Field" sync / 1[56]:[^:]*:The Avatar:7C4:/ duration 31 jump 444.9 - -# This is an example of syncing to the beginning of a cast. -1032.0 "Control Tower" sync / 14:[^:]*:Hashmal:25C1:/ window 20,20 duration 13.5 # start of cast -> tower fall - -# This is a line that would sync to an action, but the sync has been commented out. -330.7 "Atma-Linga x2" #sync / 1[56]:[^:]*:Ravana:EA6:/ -``` - -### Testing +### Basic Testing In cactbot, running `npm run test` will run tests to verify that there are no errors. -### Shasta Kota Guide +## Cactbot Style Guide -It is also worth reading Shasta Kota's original [guide](https://dtguilds.enjin.com/forum/m/37032836/viewthread/26353492-act-timeline-plugin) -which is still excellent. +Timelines are extremely subjective. +The goal is to be clear and useful to people using it. +This means cleaning up things that feel "noisy" but leaving in as much as possible. +It requires a good bit of manual work to create a nice feeling and correct timeline. -## Cactbot Style Guide +In general, cactbot has decided to use actual ability names instead of things like "raidwide". +It's easier to translate, but it is hard to talk about abilities with others if +"raidwide" could mean "Ultima" or "Gaiochos" or "Caloric Theory". -These are guidelines that cactbot tries to follow for timelines. +### Guidelines -* add syncs for everything possible +* add syncs for every ability possible. * if there is only one boss in a zone, the timeline should start on entering combat. (The timeline utility will usually add the correct line automatically for you.) -It is generally unnecessary to sync to the first auto-attack -or otherwise "supplement" starting from combat beginning. +* add a sync for the first cast that will start the timeline so that testing with fflogs will sync properly. +* it is generally unnecessary to sync to the first auto-attack. (In special cases such as raid bosses with checkpoints, it may be acceptable to sync an auto for the second part of the encounter.) +* remove all other auto attack syncs, as these are often inconsistent. * include any special command line flags used to generate the timeline in a comment at the top. (The ignore-combatant and ignore-ability flags are automatically added by the timeline utility for your convenience.) -* prefer actions for syncs over game log lines, but sync to game log lines if that's the only option +* prefer actions for syncs over game log lines, but sync to game log lines if that's the only option. * if you do sync a phase with game log lines, add a large window sync for an action after that line for safety. * if a boss has multiple phases, @@ -220,14 +287,19 @@ If this is not possible, still try to add wide syncs to the beginning of each ph or if it otherwise makes sense to modify how it's displayed, handle that modification in the timeline replacement section of the trigger file.) * loops should use `jump` or `forcejump` to return to an earlier point in the timeline, -rather than using a wide window sync at the beginning of the loop. -* liberally use whitespace and comments to make the timeline readable -* do not put any triggers, tts, or any other form of alerts in the timeline file itself -* use [timeline triggers](#timeline-triggers) from within a trigger file for any alerts -* add a lookahead window of at least 30 seconds *and* 6 abilities for multi-possibility `jump`s that are not simple loops. -(If it is a simple loop, use `forcejump`.) -* comment out syncs from any displayed abilities that are within 7 seconds of each other, +rather than using a wide window sync at the beginning of the loop for readability. +* liberally use whitespace and comments to make the timeline readable. +* do not put any triggers, tts, or any other form of alerts in the timeline file itself. +* use [timeline triggers](#timeline-triggers) from within a trigger file for any alerts. +* prefer using `label` for all jumps rather than jumping to a number. +* for any loop that is always taken, use `forcejump` to automatically provide lookahead. +* for any loop or branch that is conditionally taken, add a lookahead window of at least 30 seconds *and* 6 abilities. +* for any `jump` or `forcejump`, prefer to jump via `StartsUsing` instead of `Ability` where possible to jump sooner. +* comment out syncs from any displayed abilities that are within 3 seconds of each other, but do not remove them. (This preserves the ability ID for future maintainers.) +* prefer to use `npcNameId` instead of `name` on `AddedCombatant` lines. +* use `-la` with `make_timeline` to print an [ability table](../ui/raidboss/data/06-ew/dungeon/another_aloalo_island.txt#L92-L142) and fill it out. +* As always, be consistent with other timelines. ### Trigger Filenames @@ -238,7 +310,7 @@ raids get abbreviated and numbered, dungeons are called by their zone. For filenames, use underscores to separate words. -For trials like `nm` (normal mode), `hm` (hard mode), and `ex` (extreme mode), +For trials like `nm` (normal mode), `hm` (hard mode), `ex` (extreme mode), `un` (unreal mode) separate with a hyphen. Dungeons with hard in the name can spell out "Hard" as a full word. Articles like `The` can be dropped. @@ -253,11 +325,118 @@ Examples: * The Grand Cosmos: `grand_cosmos` * Titan Extreme: `titan-ex` * Ruby Weapon Extreme: `ruby_weapon-ex` +* Thordan Unreal: `thordan-un` * The Great Gubal Library (Hard): `great_gubal_library_hard` * Sigmascape V2.0 (Savage): `o6s` * Alexander - The Arm of the Father: `a3n` * The Final Coil of Bahamut: `t13` +### Pre-timeline combat, starts & resets, and multiple zones + +There is no one-size-fits-all approach for starting and resetting timelines. + +In single-boss, single-zone content (e.g., most trials), +the timeline should start when combat begins, +and should reset on a wipe or when the player is out of combat. + +However, in dungeons for example, the player is often in combat +with mobs before the timeline should begin for the first boss encounter. +For that matter, there are also several boss encounters in each dungeon. +In those situations, we need discrete timelines for each boss encounter, +and each boss's timeline should start only once that boss encounter begins. + +There are a number of ways we can handle this. + +First, by default, cacbot will reset the timeline to time=0 +whenever a player is out of combat. +This default can be overriden in particular fight's trigger set +with the following property: + +```typescript +resetWhenOutOfCombat: false +``` + +This property is only used in selective circumstances (e.g. zones like Eureka), +so we'll approach timeline creation here assuming default behavior. + +The first step is determining how the timeline should begin running. + +If the timeline should begin when the player first begins combat, +we can use OverlayPlugin's 0x104 InCombat line +to detect when the player enters combat: + +```text +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +``` + +(`make_timeline` generates this line by default where appropriate.) + +However, if there will be pre-timeline combat (e.g., pre-boss mobs), +this would incorrectly start combat during the pre-boss phase, +so we need a different approach. + +In these situations, boss encounters (and timelines) are often tied +to a specific zone within the instance, +which means we can start the timeline when that zone is sealed off. +For example: + +```text +# Landfast Floe will be sealed off +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10CD" } window 100000,0 +``` + +(`make_timeline` generates this by default if the encounter begins with a zone seal.) + +This `SystemLogMessage` is the equivalent of the `GameLog` that looks like +`00|2023-12-14T21:02:36.0000000-08:00|0839||The Landfast Floe will be sealed off in 15 seconds!|419a62a812652b97`. +However, by using `SystemLogMessage` with an id, it will work without chat log lines turned on +and it does not require any translations and thus is more robust. + +For multi-zone instances like dungeons, we can effectively create +separate timelines for each encounter in the same timeline file +by using large gaps between the timelines, coupled with large sync windows. + +For example, in [Alzadaal's Legacy](../ui/raidboss/data/06-ew/dungeon/alzadaals_legacy.txt), +we effectively have three separate timelines, +one for each boss encounter, each spaced 1000 seconds apart. +Because the timeline resets to 0 each time the player is out of combat, +we use large sync windows on each zone-seal message to 'jump' the timeline +to the right place for each encounter: + +```bash +# Undersea Entrance will be sealed off +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "103E" } window 0,1 +# etc etc +# The Threshold of Bounty will be sealed off +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "103F" } window 1000,1 +# etc etc +# Weaver's Warding will be sealed off +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1040" } window 2000,1 +``` + +Finally, because cactbot automatically resets the timeline when the player is out of combat, +there is no need to include specific reset lines in most timeline files by default. + +However, if a trigger set contains the property to NOT reset the timeline +when out of combat, there are several options for manualy triggering a reset. + +On fights where the entire zone resets (e.g. all of omegascape, a4s, a8s, a12s, t9, t13), +you can use the ActorControl line that is sent on a wipe: + +```bash +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 +``` + +On fights with zones that seal and unseal, (e.g. a1s, t1-8) +you can use the zone unsealing message itself to reset: + +```bash +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 +``` + +This `SystemLogMessage` is the equivalent to the `GameLog` line for something like +`00|2023-12-14T21:06:37.0000000-08:00|0839||The Landfast Floe is no longer sealed!|7505dac81c639ea5`. + ## Timeline Triggers Trigger files in cactbot support adding timeline triggers. @@ -298,9 +477,11 @@ If those things are strings, it will add them directly. If those things are functions, it will call the function and add the return value. (The `data` parameter passed only contains a player's role and job and not other things.) -The test timeline in Summerford Farms that you can start by doing a /countdown or /bow-ing to a Striking Dummy has examples of this. See: [test.js](https://github.com/quisquous/cactbot/blob/79239abda888dd7a277da0501a7d4ac60d8cf963/ui/raidboss/data/triggers/test.js#L10). +The test timeline in Summerford Farms that you can start by doing a /countdown or /bow-ing to a Striking Dummy has examples of this. +See: [test.ts](../ui/raidboss/data/00-misc/test.ts). -You can also add timeline entries to your **cactbot/user/raidboss.js** file for personalized timeline entries and triggers. See: [user/raidboss.js](https://github.com/quisquous/cactbot-user/blob/641488590e3ea499cc3b54cc9f2f2f856dee4ad8/raidboss.js#L28) +You can also add timeline entries to your **cactbot/user/raidboss.js** file for personalized timeline entries and triggers. +See: [user/raidboss.js](https://github.com/quisquous/cactbot-user/blob/641488590e3ea499cc3b54cc9f2f2f856dee4ad8/raidboss.js#L28) ## Timeline Translation @@ -312,20 +493,17 @@ This has two purposes. The first purpose is for tools, to autogenerate regular expression translations for triggers. The second purpose is for timelines at runtime. -cactbot will use the `replaceSync` section to auto-replace anything inside a `sync /text/` on a timeline line, +cactbot will use the `replaceSync` section to auto-replace anything inside curly braces on +a timeline line (e.g. `Ability { id: "1234", source: "Ultima" })`) and the `replaceText` section to auto-replace anything inside the ability text. -These match only the exact text of the regex within the line, not the entire line. +Each `replaceSync` entry is applied against each parameter individually. +Only some parameters are translated (e.g. never `id`, but always `source` or `name`). Care is needed to make sure that replacements are not overzealous. -## Example Timeline Creation - -Here's an example of using cactbot's tools to make a timeline file for Cape Westwind. -This is pretty straightforward and only requires one person to test, so is a good first example. +See also: [Trigger Translation Overview](RaidbossGuide.md#translation-overview) -Note that the Cape Westwind trial was removed in Patch 6.1, -and the timeline has since been removed from cactbot. -However, you can view the original timeline [here](https://github.com/quisquous/cactbot/blob/aa38bdf8f2551a504e1d3f595cd266d3baa193f2/ui/raidboss/data/02-arr/trial/cape_westwind.txt). +## Making a Timeline ### Run the fight a few times @@ -343,40 +521,52 @@ Good guidelines for getting good logs are: 1. run long enough to see the enrage 1. have enough people to see all the mechanics (e.g. t11 tethers don't appear without two people) 1. per phase, run long enough to see the mechanics loop -1. run several times so you can test it +1. run several times so you can test it, especially if there are mechanic variations or hp pushes + +It's also recommended that you record video at the same time. +If you don't want to stream publicly, unlisted youtube videos are a good option. ### Software prerequisites * [Node.js](https://nodejs.org/en/) * A copy of cactbot's [source code](https://github.com/quisquous/cactbot/archive/main.zip) +* See: [CONTRIBUTING.md](../CONTRIBUTING.md#development-workflow) ### Timeline Skeleton There are three things you need to add a new timeline to cactbot. +Let's say you are creating a log file for the final extreme of Endwalker. + (1) Create a blank timeline file. -Add a new file called **ui/raidboss/data/timelines/cape_westwind.txt**. +Add a new file called **ui/raidboss/data/06-ew/raid/zeromus-ex.txt**. You can leave it blank. (2) Add a new triggers file, if it doesn't exist. -Create **ui/raidboss/data/02-arr/trial/cape_westwind.js**. -This can be named whatever you want. -Timeline files can only be loaded via triggers files, -so the triggers file is always required. +Create **ui/raidboss/data/06-ew/raid/zeromus-ex.ts**. +Timeline files can only be loaded via trigger files, +so the trigger file is always required. (Note that these steps are typically already done by repository contributors around patch release.) -An initial triggers file should look like the following: +An initial trigger file should look like the following: -```javascript -export default { - zoneId: ZoneId.CapeWestwind, - timelineFile: 'cape_westwind.txt', - triggers: [ - ], +```typescript +import { RaidbossData } from '../../../../../types/data'; +import { TriggerSet } from '../../../../../types/trigger'; + +export type Data = RaidbossData; + +const triggerSet: TriggerSet = { + id: 'TheAbyssalFractureExtreme', + zoneId: ZoneId.TheAbyssalFractureExtreme, + timelineFile: 'zeromus-ex.txt', + triggers: [], }; + +export default triggerSet; ``` (3) Build cactbot. @@ -392,1061 +582,678 @@ plugin to pick up the changes. If you are using `webpack-dev-server`, it will automatically reload whenever you change the source files. -### Generating an initial timeline file +### Using make_timeline.ts + +For this example, we'll be using the [TheAbyssalFractureExtreme.log](logs/TheAbyssalFractureExtreme.log) file. +Feel free to play along at home. + +From your cactbot directory, use the command: +`node --loader=ts-node/esm util/logtools/make_timeline.ts -f docs/logs/TheAbyssalFractureExtreme.log -lf` + +```shell +$ node --loader=ts-node/esm util/logtools/make_timeline.ts -f docs/logs/TheAbyssalFractureExtreme.log -lf +(node:19900) ExperimentalWarning: Custom ESM Loaders is an experimental feature. This feature could change at any time +(Use `node --trace-warnings ...` to show where the warning was created) +┌───────┬──────────────┬────────────────┬──────────┬──────────────────────────────────┬──────────────────────────────────┬──────────┐ +│ Index │ Start Date │ Start Time │ Duration │ Zone Name │ Encounter Name │ End Type │ +├───────┼──────────────┼────────────────┼──────────┼──────────────────────────────────┼──────────────────────────────────┼──────────┤ +│ 1 │ 2023-10-06 │ 20:20:08.265 │ 10m │ The Abyssal Fracture (Extreme) │ The Abyssal Fracture (Extreme) │ Win │ +│ 2 │ 2023-10-06 │ 21:09:43.014 │ 12m │ The Abyssal Fracture (Extreme) │ The Abyssal Fracture (Extreme) │ Win │ +│ 3 │ 2023-10-06 │ 21:55:12.239 │ 9m │ The Abyssal Fracture (Extreme) │ The Abyssal Fracture (Extreme) │ Win │ +└───────┴──────────────┴────────────────┴──────────┴──────────────────────────────────┴──────────────────────────────────┴──────────┘ +``` -Once you have a network log file, you need to find the start and the finish. +`-lf` lists all of the fights and their zones. +This log file has been run through the [log splitter](https://quisquous.github.io/cactbot/util/logtools/splitter.html) +and anonymized, and so there are only three fights. -[View the logs in ACT](LogGuide.md#viewing-logs-after-a-fight) and find the start and the end. +You can make a timeline for a particular fight by using `-lf` with the index, e.g. `-lf 1`. +If you run the command, it should look something like this. -![encounter logs screenshot](images/timelineguide_encounterlogs.png) +```shell +$ node --loader=ts-node/esm util/logtools/make_timeline.ts -f docs/logs/TheAbyssalFractureExtreme.log -lf 1 +(node:24172) ExperimentalWarning: Custom ESM Loaders is an experimental feature. This + feature could change at any time +(Use `node --trace-warnings ...` to show where the warning was created) +### THE ABYSSAL FRACTURE (EXTREME) +# ZoneId: 491 -For example, in this fight, these are the relevant log lines and times: +hideall "--Reset--" +hideall "--sync--" -```log -[18:42:23.614] 15:105E5703:Potato Chippy:2E:Tomahawk:4000EE16:Rhitahtyn sas Arvina:710003:9450000:1C:2E8000:0:0:0:0:0:0:0:0:0:0:0:0:140279:140279:8010:8010:1000:1000:-707.8608:-822.4221:67.74045:3858:74095:4560:0:1000:1000:-693.7162:-816.4633:65.55687: -[18:49:22.934] 19:Rhitahtyn Sas Arvina was defeated by Potato Chippy. +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +72.8 "--sync--" Ability { id: "8C49", source: "Zeromus" } +75.8 "--sync--" Ability { id: "8C49", source: "Zeromus" } +83.9 "Abyssal Nox" Ability { id: "8B3F", source: "Zeromus" } +92.9 "--sync--" Ability { id: "8B41", source: "Zeromus" } +92.9 "--sync--" #Ability { id: "8B40", source: "Zeromus" } +92.9 "--sync--" #Ability { id: "8B40", source: "Zeromus" } +92.9 "--sync--" Ability { id: "8D2B", source: "Zeromus" } +97.9 "--sync--" Ability { id: "8B41", source: "Zeromus" } +97.9 "--sync--" Ability { id: "8B40", source: "Zeromus" } +99.9 "Abyssal Echoes" Ability { id: "8B42", source: "Zeromus" } +# etc etc etc ``` -(Known bug: sometimes network logs from other people's timezones require converting the time from what the act log lines. Patches welcome.) - -You can then make a timeline from those times by running the following command. +TODO: for some reason, `make_timeline.ts` is confused here and thinks the first +real ability (Abyssal Nox 8B3F) occurs at time=83.9. +It's clear from the log that it should be t=11.1. +See: -```bash -node --loader=ts-node/esm util/logtools/make_timeline.ts -f CapeWestwind.log -s 18:42:23.614 -e 18:49:22.934 - -0 "Start" -2.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -10.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -19.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -24.4 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ -29.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -38.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -46.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -52.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ -57.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -66.2 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -74.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -80.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ -85.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -94.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -102.5 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -106.1 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -110.4 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -114.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -119.2 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -123.5 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -127.8 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -132.1 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -136.4 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -140.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -145.2 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -149.8 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -154.3 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -158.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -163.3 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -167.8 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -172.3 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -175.8 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ -179.3 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -184.5 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -189.0 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -193.7 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -195.9 "Fast Blade" sync /:7th Cohort Optio:2CD:/ -196.1 "Fast Blade" sync /:7th Cohort Optio:2CD:/ -198.2 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -202.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -202.9 "Fast Blade" sync /:7th Cohort Optio:2CD:/ -203.3 "Fast Blade" sync /:7th Cohort Optio:2CD:/ -207.2 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -207.6 "Rampart" sync /:7th Cohort Optio:0A:/ -210.0 "Fast Blade" sync /:7th Cohort Optio:2CD:/ -211.7 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -212.6 "Shield Bash" sync /:7th Cohort Optio:2CE:/ -214.3 "Fast Blade" sync /:7th Cohort Optio:2CD:/ -214.9 "Fight Or Flight" sync /:7th Cohort Optio:14:/ -216.2 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -217.3 "Rampart" sync /:7th Cohort Optio:0A:/ -218.0 "Celeris" sync /:7th Cohort Optio:194:/ -220.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -222.0 "Fight Or Flight" sync /:7th Cohort Optio:14:/ -225.2 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -226.3 "Fast Blade" sync /:7th Cohort Optio:2CD:/ -229.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -234.4 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -239.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -243.4 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -259.1 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -263.6 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -267.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -269.1 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -274.2 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -278.5 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -282.8 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -299.3 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -303.8 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -308.1 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -309.3 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -314.4 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -318.7 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -323.0 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -339.5 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -344.0 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -348.3 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -349.5 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -354.6 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -358.9 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -363.2 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -378.7 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -383.2 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -387.5 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -388.7 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -393.8 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -398.1 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -402.4 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ +```text +260|2023-10-06T20:21:19.9510000-07:00|1|0| +20|2023-10-06T20:21:27.1110000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0007|Kehabiqo Febiqo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|126650|128564|10000|10000|||99.95|97.53|0.00|3.14|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|0|8| ``` -(Note that you can also use the `-lf` parameter to list the encounters in the combat log. +You can fix this by running with `-p 8B3F:11.1` which will set the first use of `8B3F` to be time `11.`1. -```bash -node --loader=ts-node/esm util/logtools/make_timeline.ts -f CapeWestwind.log -lf - -┌───────┬──────────────┬────────────────┬──────────┬─────────────────────────────────────────┬─────────────────────────────────────────┬───────────────┐ -│ Index │ Start Date │ Start Time │ Duration │ Zone Name │ Encounter Name │ End Type │ -├───────┼──────────────┼────────────────┼──────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼───────────────┤ -│ 1 │ 2018-07-02 │ 02:03:44.018 │ 13m │ Cape Westwind │ Cape Westwind │ Wipe │ -│ 2 │ 2018-07-02 │ 18:32:52.981 │ 3m │ Cape Westwind │ Cape Westwind │ Wipe │ -│ 3 │ 2018-07-02 │ 18:42:23.614 │ 7m │ Cape Westwind │ Cape Westwind │ Wipe │ -│ 4 │ 2018-07-02 │ 18:57:09.114 │ 13m │ Cape Westwind │ Cape Westwind │ Wipe │ -│ 5 │ 2018-07-02 │ 19:29:42.265 │ 7m │ Cape Westwind │ Cape Westwind │ Wipe │ -│ 6 │ 2018-07-02 │ 19:40:20.606 │ 6m │ Cape Westwind │ Cape Westwind │ Wipe │ -└───────┴──────────────┴────────────────┴──────────┴─────────────────────────────────────────┴─────────────────────────────────────────┴───────────────┘ -``` +From here, it's a question of massaging this timeline into something that's usable. -From here, you can then rerun the command with the number of the encounter you want to use, -as `-lf 3`.) - -This isn't really a workable timeline yet, but it's a start. -Paste this into **ui/raidboss/data/timelines/cape_westwind.txt**. - -If you are using Windows cmd.exe or MINGW32 as your terminal, -you can copy this by clicking the upper left hand corner icon, -selecting **Edit**, and then **Mark**. -You can highlight what you want with your mouse, and then hit -the Enter key, and that will copy that so you can paste it -elsewhere. - -![mark screenshot](images/timelineguide_copy.png) - -The first thing to note from this log is that there's a bunch -of junk from adds. -Most of the time, you can't count on adds to have reliable -timing relative to the main boss, so it's usually better to -remove them. - -The `node --loader=ts-node/esm util/logtools/make_timeline.ts` script has two options to do this. -One is "ignore combatants" and the other is "ignore id". -Either `-ic "7Th Cohort Optio"` or `-ii 0A 2CD 2CE 194 14` -will remove all of these abilities. -We'll go with ids. - -Run the command again with this ignore to have a cleaned up version: -`node --loader=ts-node/esm util/logtools/make_timeline.ts -f CapeWestwind.log -s 18:42:23.614 -e 18:49:22.934 -ii 0A 2CD 2CE 194 14` - -At this point, it may also be worth going through and finding other lines to add. -Usually, these are [added combatant](LogGuide.md#line-03-0x03-addcombatant) lines -or [game log lines](LogGuide.md#line-00-0x00-logline) for rp text. -You can look at the time and figure out where they go yourself. -(Patches welcome to add either of these into **make_timeline.ts** automatically.) - -The relevant lines here are: - -```log -[18:45:27.041] 03:Added new combatant 7Th Cohort Optio. Job: 0 Level: 49 Max HP: 24057 Max MP: 8010 Pos: (-665.5159,-804.6631,62.33055). -[18:45:27.041] 03:Added new combatant 7Th Cohort Optio. Job: 0 Level: 49 Max HP: 24057 Max MP: 8010 Pos: (-665.5013,-807.1013,62.45256). -[18:42:24.000] 00:0044:Rhitahtyn sas Arvina:I will suffer none to oppose Lord van Baelsar! -[18:44:08.000] 00:0044:Rhitahtyn sas Arvina:My shields are impregnable! Join the countless challengers who have dashed themselves against them! -[18:46:27.000] 00:0044:Rhitahtyn sas Arvina:Your defeat will bring Lord van Baelsar's noble conquest one step closer to fruition! -[18:48:27.000] 00:0044:Rhitahtyn sas Arvina:Ungh... Though it cost me my life...I will strike you down! -``` +It may be tedious, but the best place to start when making a timeline is by filling out the +[timeline ability table](#timeline-ability-tables). -You can subtract the times from the start time to figure out about where they are. -For instance, the adds pop at t=183.5 (which is 18:45:27.041 - 18:42:23.614). +After that, you should follow these guidelines and your own subjective opinions to finish the timeline: -### Building Loops +* [cactbot timeline style guide](#cactbot-style-guide) +* [common timeline edits](#common-timeline-edits) -The next step is to build some loops around the phases. -From observation, it looks like there's a number of phase pushes. +You can look at [zeromus-ex.txt](../ui/raidboss/data/06-ew/trial/zeromus-ex.txt) to see a final version. -Here's what the initial phase looks like, with some extra line breaks -for clarity. +### Timeline Ability Tables -```bash -2.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -10.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -19.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -24.4 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -29.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -38.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -46.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -52.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -57.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -66.2 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -74.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -80.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ -``` +If you run `make_timeline.ts` with the `-la` (list abilities) parameter, +it will build a table for you of encounter abilities that it's seen +and print it at the end of the timeline. -It's pretty clear that there's a loop of roughly 27.8 or 27.9 seconds. -Let's just assume it's 27.8. +It looks like this: -If you are using VSCode, you should use the [adjust time feature](https://github.com/MaikoTan/cactbot-highlight#adjust-time) from the [Cactbot Highlight](https://marketplace.visualstudio.com/items?itemName=MaikoTan.cactbot-highlight) extension, -which offer a simple way to adjust time in one-click. -This will not adjust jumps. +```shell +$ node --loader=ts-node/esm util/logtools/make_timeline.ts -f docs/logs/TheAbyssalFractureExtreme.log -lf 1 -la +# (elided normal timeline output here for many lines) -Here's an abbreviated version of the output after adjusting the time: - -```bash -29.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -38.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -46.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -52.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -57.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -66.2 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -74.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -80.0 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -85.5 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -94.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -102.5 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -108.0 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ +# ALL ENCOUNTER ABILITIES +# 8AEF --sync-- +# 8B27 --sync-- +# 8B28 --sync-- +# 8B29 --sync-- +# 8B2A --sync-- +# 8B2B --sync-- +# 8B38 Sable Thread +# 8B39 Sable Thread +# 8B3A Sable Thread +# 8B3B Sable Thread +# 8B3D Fractured Eventide +# etc ``` -Comparing to the original, it looks like this loops fairly perfectly. -The first loop is perfect and the second loop is off by a little, -as this adjusted loop has 57.6, 74.6, 80.0 but the original -is 57.7, 74.7, 80.2. Close enough. +The best way to make sense of all of the abilities is to write down some information +about each of the abilities. +Why are there four `Sable Thread` abilities here? What do they all do? -In cactbot, there's a configurable window of time for how far ahead -to show in the timeline. By default it is 30 seconds, so you should -at least make a loop that goes 30 seconds ahead. +Things to look at: -Here's what a completed version of the first phase loop looks like. +* is there a cast for this ability or is it an immediate ability? +* is this cast on players or a self-targeted cast on the boss? +* does the ability hit players? +* does the ability do damage? (or just give debuffs) +* is this id associated with a version of an attack (e.g. left cleave or right cleave)? -```bash -2.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -10.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -19.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -24.4 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -29.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -38.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -46.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -52.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -57.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -66.2 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -74.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -80.0 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:471:/ -``` +The reason to build the ability table is: -Note that we've used adjusted times rather -than the original times. -This is so that when we jump from 52.2 to 24.4, all of the relative times stay the same. -In both cases when `Gate Of Tartarus` occurs, -there's a `Shield Skewer` 5.4 seconds after it. +* easier to understand what abilities to ignore in timeline +* trivial to build [Oopsy](OopsyraidsyGuide.md) once you know what damage ids are +* easier to find ids when filling out [sync_files.ts](RaidbossGuide.md#sync-files) +* helpful to have ids to write triggers from -We'll add any necessary jumps in later. +Personally, starting from the ability table and then working out from there +is the best way to attack most new content. -### Adding Phases +#### One Hacky Workflow Suggestion -Now on to the second phase. -From observation, it's clear that at 80% the boss does some rp -text and then starts doing some different abilities. +This is a bit of a hacky workflow, but one way to build the ability table is to filter log lines +down to the useful log lines. -Unfortunately for us, it looks like the boss starts phase 2 -by doing another `Shield Skewer` which it does a lot of in -phase 1, so it won't be easy to sync to that. +If you load the log into ACT, [view the logs](LogGuide.md#viewing-logs-after-a-fight), and then search by the following regex, +you will get most of the "interesting" lines for a fight. -**make_timeline.ts** has an option `-p` to move the first usage -of an ability to a particular time. -As cactbot usually has a window of 30 seconds ahead, -feel free to generously move phases ahead in time. - -Let's move phase 2 to start its first ability at time=200. -Since `Shrapnel Shell` starts 4.3 seconds after that, -let's adjust the first usage of `Shrapnel Shell` -(ability id 474) to time=204.3. The `-p` command takes space-separated abilityId:timeline-time pairs, -so here we would write it as `-p 474:204.3`. +![encounter logs screenshot](images/timelineguide_encounterlogs.png) -Here's the new command line we've built up to: -`node --loader=ts-node/esm util/logtools/make_timeline.ts -f CapeWestwind.log -s 18:42:23.614 -e 18:49:22.934 -ii 0A 2CD 2CE 194 14 -p 474:204.3` +This includes boss abilities and casts, added combatants, tethers, map effects, head markers, and debuffs on players. +It's not perfect, but it's a place to start. -This gets us the following output for phase 2, -with manually added blank lines to break out the loops. +You can then walk through a log with video, and look at which abilities hit players and do damage +and which are castbars on the boss (not all `StartsUsing` are castbars) and then fill out the ability table +and understand what everything is. -```bash -# manually added in -199.0 "--sync--" sync /00:0044:[^:]*:My shields are impregnable/ -200.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ - -# output of make_timeline -204.3 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -208.8 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -213.1 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -217.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -221.7 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -226.0 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -230.3 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -234.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -239.1 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -243.7 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -248.2 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -252.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -257.2 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -261.7 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -266.2 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ +```text +( 1A:[^:]*:([^:]|: )*:[^:]*:[E4][^:]*:[^:]*:1| 1A:(B9A|808):| 03:| 23:| 101:| 1B:| 1[456]:4.......:(?!\w*-Egi|Liturgic Bell|Thancred|Moonstone Carbuncle|Zero(?!mus)|Alphinaud|Alisaie|Topaz Titan|Emerald Carbuncle|Eos|Rook Autoturret|Seraph|Bishop Autoturret|Ruby Carbuncle|Esteem|Demi-\w*|Earthly Star|Automaton Queen|Bunshin|Selene|Hien|Lyse|Pipin Of The Steel Heart|Yugiri Mistwalker|2B|Topaz Carbuncle|Y'shtola|Hythlodaeus|Emet-Selch|Venat|Krile|Estinien|Urianger|G'raha Tia|Carbuncle|Varshahn|Emerald Garuda|Ruby Ifrit|Bunshin|Earthly Star)[^:]*:(?!IGNOREIDSHERE)[^:]*:(?!Attack|attack)) ``` -It looks like there's a clear loop here, -where every iteration of the loop has 2x `Firebomb` and 2x `Shield Skewer`. -The loop time is 34.6. -After adjusting the time again, it looks like this: +TODO: This could be a lot better. We could add an option in the log splitter to output "interesting" lines. -```bash -234.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -238.9 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -243.4 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -247.7 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -252.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -256.3 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -260.6 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -264.9 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -``` +### Using make_timeline.ts with fflogs -This has diverged a fair bit from the original times, -with the last Firebomb being 264.9 vs 266.2. -If you want to be more precise, -this is where you would compare against some other runs. +Usually you want a network log file for the bulk of timeline work, +but in desperate situations where your fights end too quickly +it can be helpful to look through fflogs and find the longest fight possible. +This may help you find loops or enrages. -However, this is good enough for Cape Westwind, -so we will replace the second loop with adjusted output. +However, fflogs does not include all of the abilities or line types +and so this is a backup method to find extended versions of timelines +once you have already worked on the bulk of it. -The current state of our timeline is now: +You need your fflogs api v1 key. +Go to and scroll down to `Web API`. -```bash -0 "Start" -2.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -10.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -19.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -24.4 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -29.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -38.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -46.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -52.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -57.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -66.2 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -74.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -80.0 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -# 80% -199.0 "--sync--" sync /00:0044:[^:]*:My shields are impregnable/ -200.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -204.3 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -208.8 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -213.1 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -217.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -221.7 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -226.0 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -230.3 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -234.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -238.9 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -243.4 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -247.7 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -252.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -256.3 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -260.6 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -264.9 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -# 60% -``` +Add a `V1 Client Name` like "manual" and make a note of your `V1 Client Key`. -### Next phase +Find any log for the fight you want. +Here's a random one for Zeromus: + -From observation, we know that the next phase starts -at 60% and there's two adds. +Then run this command, substituting your `V1 Client Key` for `YourClientKeyHere` below: -From reading the timeline, there's a random -"Gate of Tartarus" around the time the adds show up. +```shell +$ node --loader=ts-node/esm util/logtools/make_timeline.ts -k YourClientKeyHere -r Ktm6hbrTjZAYpQB1 -rf 34` +(node:7972) ExperimentalWarning: Custom ESM Loaders is an experimental feature. +This feature could change at any time +(Use `node --trace-warnings ...` to show where the warning was created) +hideall "--Reset--" +hideall "--sync--" -This is the original timeline, before any phases were adjusted: +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.1 "Abyssal Nox" Ability { id: "8B3F", source: "Zeromus" } +20.1 "--sync--" Ability { id: "8B41", source: "Zeromus" } +20.1 "--sync--" Ability { id: "8D2B", source: "Zeromus" } +# etc +``` -```bash -175.8 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ -183.5 "Adds" +### Using test_timeline.ts + +Once you have made a timeline, it's now time to verify it works against various logs. + +`test_timeline.ts` uses all the same parameters as `make_timeline.ts`, +but you also need to specify the timeline file (no `.txt` or directory) via `-t`. + +```shell +$ node --loader=ts-node/esm util/logtools/test_timeline.ts -f docs/logs/TheAbyssalFractureExtreme.log -lf 1 -t zeromus-ex +(node:840) ExperimentalWarning: Custom ESM Loaders is an experimental feature. This feature could change at any time +(Use `node --trace-warnings ...` to show where the warning was created) +Timeline: + +0.000 | 14 | 0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 + -0.555 | 15 | 6.1 "--sync--" StartsUsing { id: "8B3F", source: "Zeromus" } window 10,10 + +0.010 | 16 | 11.1 "Abyssal Nox" Ability { id: "8B3F", source: "Zeromus" } + -0.078 | 17 | 27.1 "Abyssal Echoes 1" Ability { id: "8B42", source: "Zeromus" } + -0.035 | 18 | 32.1 "Abyssal Echoes 2" Ability { id: "8B42", source: "Zeromus" } + -0.068 | 19 | 42.1 "Sable Thread x6" Ability { id: "8B38", source: "Zeromus" } duration 6.9 + -0.230 | 24 | 49.0 "--sync--" Ability { id: "8B3A", source: "Zeromus" } + +0.275 | 26 | 61.7 "Dark Matter x3" Ability { id: "8B83", source: "Zeromus" } duration 4.1 + -0.062 | 28 | 78.8 "Visceral Whirl" Ability { id: "8B4[36]", source: "Zeromus" } + -0.102 | 29 | 87.8 "Miasmic Blast" Ability { id: "8B49", source: "Zeromus" } + -0.076 | 31 | 101.8 "Flare" Ability { id: "8B5D", source: "Zeromus" } + -0.018 | 32 | 109.9 "Prominence Spine" Ability { id: "8B63", source: "Zeromus" } + -0.030 | 33 | 119.9 "Void Bio" Ability { id: "8B66", source: "Zeromus" } + +0.081 | 34 | 134.1 "Visceral Whirl" Ability { id: "8B4[36]", source: "Zeromus" } + -0.088 | 35 | 143.1 "Miasmic Blast" Ability { id: "8B49", source: "Zeromus" } ``` -Unfortunately, the boss uses `Gate of Tartarus` in phase 1, -so we can't add it using `-p` like we did for phase 2. -(Patches welcome to add more options to make this possible?) +This runs the timeline file against hte network log and the given pull +and then prints out the results of all the syncs to verify that they are +close in time. -If we adjust the original timeline by 400-175.8=224.2 -then we can start phase 3 at t=400. +This will catch things like: -Here's the adjusted output, with the adds manually -added back in: +* ability variations (e.g. `Visceral Whirl` being `8B43` vs `8B46` when it can be both) +* hp% phase pushes (e.g. `Rend the Rift` in this fight) +* slight timeline drifts (maybe one ability is +/- 1 second and so needs a large window for safety) +* your own mistakes -```bash -400.0 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ -403.5 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ - -407.7 "Adds" -408.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -413.2 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -417.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -422.4 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -426.9 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -431.4 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -435.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -440.4 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -445.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -449.4 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -454.1 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -458.6 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -463.2 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -467.6 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ - -# 40% phase push?? -483.3 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -487.8 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -492.1 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ - -493.3 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -407.7 "Adds" -``` +Each line looks like this: -Without recorded video, it's not 100% clear from the logs -whether the `Shrapnel Shell` is part of phase 3 or phase 4. -We know from observation that `Magitek Missiles` is the last phase, -so because the `Shrapnel Shell` breaks the pattern let's assume -it starts phase 4. -We'll test this later. +`-0.555 | 15 | 6.1 "--sync--" StartsUsing { id: "8B3F", source: "Zeromus" } window 10,10` -It looks a bit like there's another loop just like phase 2. +This means: -One consideration is to see if it's exactly the same as phase 2. -You can move the abilities with an adjustment of 208.7 -to move phase 2's `Shield Skewer` on top of phase 3. -However, you can see from that output that it's not quite the same. -Therefore, we'll need to build phase 3 separately. +* `15`: the line in the file +* `6.1`: the original time +* `-0.555`: the time adjustment the timeline made when it did this sync -A 36.2 adjustment gets this output: +`-0.555` means that the original time was `6.1 + 0.555 = 6.655` +and so when this sync occurred it had to do a `-0.555` adjustment to correct for that. +Similarly, it means that if you wanted to fix the timeline +to match the log file, you would add `0.555` to the timeline time to be `6.6`. -```bash -445.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -449.5 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -454.2 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -458.7 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -463.2 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -467.7 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -472.2 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -476.7 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -``` +See also: [Adjusting Blocks of Timelines](#adjusting-blocks-of-timelines) -This is really close to the original times, so let's consider -that our loop. +In general: -### Final Phase +* 1 second or more is a very large discrepancy; 0.5s is ~ok but not ideal, <0.3 is best +* `InCombat` / `SystemLogMessage` to the first ability might have some slop, but ~0.5 is fine in this case +* if you can adjust the timeline to be <0.1 or <0.3 at worst, that's ideal especially if you see this discrepancy in multiple logs +* sometimes a large discrepancy on later abilities in loops means you have the loop wrong +* when there is a jump, it will "miss" abilities until the jump location (this is ok) -Finally, we need the phase that starts at 40%. -We assumed that the `Shrapnel Shell` started this phase. -However, this isn't a unique skill. -`Magitek Missiles` is the first unique skill in this phase -and that starts 10 seconds after "Shrapnel Shell". -Let's start phase 4 at 600 seconds, so we'll adjust the -first use of `Magitek Missile` (ability id 478) to be t=610. +### Using test_timeline.ts with fflogs -Here's the final command line, including this second phase: -`node --loader=ts-node/esm util/logtools/make_timeline.ts -f CapeWestwind.log -s 18:42:23.614 -e 18:49:22.934 -ii 0A 2CD 2CE 194 14 -p 474:204.3 478:610` +You can do the same thing as [make_timeline.ts with fflogs](#using-make_timelinets-with-fflogs) but with `test_timeline.ts. -```bash -# manually added in -595.0 "--sync--" sync /00:0044:[^:]*:Your defeat will bring/ window 600,0 -600.0 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -604.5 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -608.8 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ - -# partial output from make_timeline -610.0 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -615.1 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -619.4 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -623.7 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -640.2 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -644.7 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -649.0 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ - -650.2 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -655.3 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -659.6 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -663.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -680.4 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -684.9 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -689.2 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ - -690.4 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -695.5 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -699.8 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -704.1 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -719.6 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -724.1 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -728.4 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ - -729.6 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -734.7 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -739.0 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -743.3 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ +```shell +node --loader=ts-node/esm util/logtools/test_timeline.ts -k YourClientKeyHere -r Ktm6hbrTjZAYpQB1 -rf 34 -t zeromus-ex +(node:18264) ExperimentalWarning: Custom ESM Loaders is an experimental feature. This feature could change at any time +(Use `node --trace-warnings ...` to show where the warning was created) +Timeline: + -0.074 | 15 | 6.1 "--sync--" StartsUsing { id: "8B3F", source: "Zeromus" } window 10,10 + +0.011 | 16 | 11.1 "Abyssal Nox" Ability { id: "8B3F", source: "Zeromus" } + -0.077 | 17 | 27.1 "Abyssal Echoes 1" Ability { id: "8B42", source: "Zeromus" } + -0.031 | 18 | 32.1 "Abyssal Echoes 2" Ability { id: "8B42", source: "Zeromus" } +# etc ``` -This sure looks like a 40.2 second loop. -With a 40.2 second adjustment, -we get the following output: +This is a good way to test a variety of logs against your timeline to verify that it works. +Note that fflogs does not always include all of the abilities and line types +and so "missing" abilities may be false positives. -```bash -650.2 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ -655.3 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -659.6 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -663.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -680.4 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -684.9 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -689.2 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -``` +## Common Timeline Edits -This is a perfect match for the original times, so there's our loop. +Here's a playbook of "common operations" when making a timeline. -### Boilerplate glue +Please add to this list as necessary to collect "folk wisdom" and "common practices". -In general, most timelines should include some boilerplate at the top like this: +### `-ii` to ignore abilities -```bash -# Cape Westwind -# -ii 0A 2CD 2CE 194 14 -p 474:204 478:610 +In order to make it easier to come back later to a timeline that's been heavily edited, +timeline authors try to encode as much as possible into parameters for running `make_timeline.ts`. +(TODO: We could probably add more!) -hideall "--Reset--" -hideall "--sync--" +`-ii` ignores abilities and drops them from the timeline. -0.0 "--Reset--" sync / 21:........:4000000F:/ window 10000 jump 0 +For example, with the [TheAbyssalFractureExtreme.log](logs/TheAbyssalFractureExtreme.log) example log, +you can see `8C49` is most likely an auto attack. +(It hits one person, it happens roughly every three seconds when the boss is not casting.) +Many auto-attacks are called `Attack` by name and are auto-ignored but this is not always true. +Auto-attacks are also often inconsistent in timing and so should always be ignored in timelines +(unless they are "special" autoattacks like DSR p7 "autos" or Diamond Extreme laser cleave "autos".) -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -2.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -``` +In this case, you would want to pass `-ii 8C49` to `make_timeline.ts` to ignore this auto. +You can list multiple abilities, e.g. `-ii 8C49 8CB9 8B55 8B5B` etc. -Most of this will be automatically added for you by the timline utility, -but it's good to double-check that all of it is present if relevant. +Note: timeline times are relative to the previous entry to the precision of tenths of seconds. +That means that ignoring abilities may change the times of later non-ignored abilities +and cause some timeline drift. +It's always best to rerun `make_timeline.ts` again to get new times after ignoring abilities. -It's good practice to include the command line you used to generate this so that -other people can come back and see what you skipped. +### `-p` for later phases -`hideall` hides all instances of a line, so that players don't see `--sync--` show up visually, -but the timeline itself will still sync to those lines. -(Note that `--sync--` is not syntactically special in any way, -but it's the standard "sync to this invisibly" convention in the repository.) +If there's later phases, use `-p` to specify an ability that marks that phase. +For `zeromus-ex`, you can see the comment `-p 8B3F:11.1 8C0D:1006`. +The first instance of `8B3F` will be set to time=11.1 and the first instead of `8C0D` is set to `1006`. +`1006` is arbitrary here, and is just "very far" from the previous ability. +`1000` is used for `StartsUsing` with a large sync (which `make_timeline.ts` doesn't generate) +and so `1006` is used for the `Ability`. -### Pre-timeline combat, starts & resets, and multiple zones +### Targetable Lines -There is no one-size-fits-all approach for starting and resetting timelines. +You can pass the parameter `-it` with a mob name, e.g. `-it "Rubicante"` +to automatically generate `--targetable--` and `--untargetable--` lines in a timeline. -In single-boss, single-zone content (e.g., most trials), -the timeline should start when combat begins, -and should reset on a wipe or when the player is out of combat. +Currently, if there are multiple mobs that you want to track, +you need to run `make_timeline.ts` several times with different `-it` values. -However, in dungeons for example, the player is often in combat -with mobs before the timeline should begin for the first boss encounter. -For that matter, there are also several boss encounters in each dungeon. -In those situations, we need discrete timelines for each boss encounter, -and each boss's timeline should start only once that boss encounter begins. +### Ignoring Combatants -There are a number of ways we can handle this. +Sometimes there are NPC combatants who do abilities that you do not want to appear in the timeline.. +For example, `2B` appears in the Shadowbringers alliance raids. +You can remove combatants by name via `-ic 2B`. -First, by default, cacbot will reset the timeline to 0 -whenever a player is out of combat. -This default can be overriden in particular fight's trigger set -with the following property: +### Adjusting Blocks of Timelines -```bash -resetWhenOutOfCombat: false -``` +It's highly recommended that you use VSCode and the +[Cactbot Highlight](https://marketplace.visualstudio.com/items?itemName=MaikoTan.cactbot-highlight) +extension when adjusting timelines. -This property is only used in selective circumstances (e.g. zones like Eureka), -so we'll approach timeline creation here assuming default behavior. +Apart from just syntax formatting, +the most useful part is that you select a block of timeline entries, +right click, +and then select `Set Time of Selection`. +Type in a new time. +This will change the first listed time in the selection to the time you typed in, +and then adjust all following times relative to that. -The first step is determining how the timeline should begin running. +It's a great way to handle drift issues that you see in `test_timeline.ts. +If one sync is consistently off by -0.5 and then the rest of the timeline is fine, +you can select that line and all following and then set its time to be 0.5 more +that its original time. -If the timeline should begin when the player first begins combat, -we can use OverlayPlugin's 0x104 InCombat line -to detect when the player enters combat: +### Variations vs Simultaneous Abilities -```bash -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -``` +This is more of a timeline style thing, +but if there are two abilities that are alternatives for each other, +then it is common to put them on the same line with `/` between them. +Abilities that always happen should be on separate timeline lines. +(If there are too many lines for abilities or players don't care about some of them, +ignore as many as make sense to make the timeline more readable.) +Abilities that might or might not happen (e.g. Phantom Edge in [delubrum_reginae.txt](../ui/raidboss/data/05-shb/eureka/delubrum_reginae.txt)) +should be listed with a question mark, e.g. `Phantom Edge?`. -(`make_timeline` generates this line by default where appropriate.) +```text +438.6 "Branding Flare/Sparking Flare" Ability { id: "8B6[45]", source: "Zeromus" } +438.6 "Prominence Spine" Ability { id: "8B63", source: "Zeromus" } +``` -However, if there will be pre-timeline combat (e.g., pre-boss mobs), -this would incorrectly start combat during the pre-boss phase, -so we need a different approach. +These two lines means *either* Branding Flare or Sparking Flare (spread or partner stack) will happen, +and then Prominence Spine (fireball explosion lines) also happens at the same time. +Note: some older timelines don't follow this rule, but ~most do and newer ones should for consistency. -In these situations, boss encounters (and timelines) are often tied -to a specific zone within the instance, -which means we can start the timeline when that zone is sealed off. -For example: +The following are the log entries. +Note: these are ~0.1s apart but sometimes are closer +and so the timeline author chose to put them at the same `438.6` time. -```bash -0.0 "--sync--" sync / 00:0839::The Landfast Floe will be sealed off/ window 1,0 +```text +[21:19:05.359] AOEActionEffect 16:4002248D:Zeromus:8B65:Branding Flare:10FF0003:Gegehi Gehi:150003:A44A0000:180E:8320000:1B:8B658000:0:0:0:0:0:0:0:0:0:0:73814:73814:4950:10000:::117.80:118.35:0.00:-2.98:44:44:0:10000:::105.00:100.00:0.00:0.00:00019F83:0:2 +[21:19:05.447] ActionEffect 15:40022482:Zeromus:8B63:Prominence Spine:E0000000::0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:::::::::::44:44:0:10000:::95.00:100.00:0.00:0.00:00019F88:0:0 ``` -(`make_timeline` generates this by default if the encounter begins with a zone seal.) +### Basic Loops -For multi-zone instances like dungeons, we can effectively create -separate timelines for each encounter in the same timeline file -by using large gaps between the timelines, coupled with large sync windows. +In content without enrages, often a boss will loop its abilities forever. -For example, in [Alzadaal's Legacy](https://github.com/quisquous/cactbot/blob/main/ui/raidboss/data/06-ew/dungeon/alzadaals_legacy.txt), we effectively have three separate timelines, -one for each boss encounter, each spaced 1000 seconds apart. -Because the timeline resets to 0 each time the player is out of combat, -we use large sync windows on each zone-seal message to 'jump' the timeline -to the right place for each encounter: +Here's one example: [thaleia.txt](../ui/raidboss/data/06-ew/alliance/thaleia.txt) -```bash -0.0 "--sync--" sync / 00:0839::The Undersea Entrance will be sealed off/ window 0,1 -... -1000.0 "--sync--" sync / 00:0839::The Threshold Of Bounty will be sealed off/ window 1000,1 -... -2000.0 "--sync--" sync / 00:0839::Weaver'S Warding will be sealed off/ window 2000,1 +For the first boss Thaliak, there's this loop: + +```text +1272.9 label "thaliak-loop" +1272.9 "Tetraktys (cast)" Ability { id: "88C9", source: "Thaliak" } +1280.9 "Tetraktys 1" Ability { id: "88CA", source: "Thaliak" } + +# many abilities in between + +1442.1 "Tetraktys (cast)" Ability { id: "88C9", source: "Thaliak" } window 40,40 forcejump "thaliak-loop" ``` -Finally, because cactbot automatically resets the timeline when the player is out of combat, -there is no need to include specific reset lines in most timeline files by default. +In other words: -However, if a trigger set contains the property to NOT reset the timeline -when out of combat, there are several options for manualy triggering a reset. +* a `label`, usually named "loop" of some kind +* a `forcejump` to that label with a large window +* both source and destination of the jump are identical -On fights where the entire zone resets (e.g. all of omegascape, a4s, a8s, a12s, t9, t13), -you can use the ActorControl line that is sent on a wipe: +Note: `label` and `forcejump` were added late in 6.x to cactbot and so many old timelines don't use them. +Feel free to edit old timelines to use them, but please always use them in newer timelines. -```bash -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 -``` +The author of the timeline has also verified that everything after `1442.1` is the same as after `1272.9` +and has run this timeline through `test_timeline.ts` with multiply looping timelines to verify this. +Sometimes things *look* like loops from ability names, but have slightly different timings so it's good to test. -On fights with zones that seal and unseal, (e.g. a1s, t1-8) -you can use the zone unsealing message itself to reset: +`forcejump` not only always jumps (as the name implies), but because the timeline knows there will always be a jump, +it can preview abilities ahead. -```bash -0.0 "--Reset--" sync / 00:0839::.*is no longer sealed/ window 100000 jump 0 -``` +In other words, when the timeline is at time `1440.1`, +with 2 seconds until `Tetraktys (cast)`, +it will automatically show 10 seconds until `Tetraktys 1` at `1280.9`. -### Making loops loop +### Branches -Back to our Cape Westwind timeline, here's the phase 1 loop, again. -We're going to edit this so that whenever we get to 52.2 seconds -it will jump back to 24.4 seconds seamlessly. +[p8s.txt](../ui/raidboss/data/06-ew/raid/p8s.txt) has a classic branch that everybody hates. +Here's what the timeline looks like. -```bash -2.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -10.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -19.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -24.4 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -29.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -38.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -46.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -52.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ - -57.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -66.2 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -74.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -80.0 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ +```text +# => Snake first branch +58.7 "--sync--" #Ability { id: "7108", source: "Hephaistos" } +63.9 "--sync--" Ability { id: "794C", source: "Hephaistos" } window 100,100 jump 163.9 +71.2 "Snaking Kick?" #Ability { id: "7929", source: "Hephaistos" } +77.3 "Gorgomanteia?" #Ability { id: "791A", source: "Hephaistos" } +83.4 "Into the Shadows?" #Ability { id: "792A", source: "Hephaistos" } + +# => Beast first branch +58.7 "--sync--" Ability { id: "7108", source: "Hephaistos" } +63.9 "--sync--" Ability { id: "794B", source: "Hephaistos" } window 100,100 jump 1163.9 +70.3 "Footprint?" #Ability { id: "7109", source: "Hephaistos" } +77.2 "Uplift 1?" #Ability { id: "7935", source: "Hephaistos" } +79.3 "Uplift 2?" #Ability { id: "7935", source: "Hephaistos" } +81.5 "Uplift 3?" #Ability { id: "7935", source: "Hephaistos" } +83.6 "Uplift 4?" #Ability { id: "7935", source: "Hephaistos" } ``` -On the 52.2 line, add the following `window 10,0 forcejump 24.4`. -This means, if you see this anywhere in the past 10 seconds, jump to t=24.4. -By default, all syncs are `window 2.5,2.5` unless otherwise specified, -meaning they sync against the ability any time within the last -2.5 seconds or 2.5 seconds in the future. +Note: this old timeline does not use `forcejump` or `label` but should! -The abilities from 57.6 to 80.0 will never be synced against, -because the `forcejump` command will automatically jump to the noted time, -regardless of whether or not the sync at its line occurs. -Because we have verified already that the loop is good, -we can safely remove the rest of it after `forcejump`. -The timeline controller will display the loop appropriately -based on seeing this command. +`794C` and `794B` are the first abilities that differ between the two branches +and so are used as the jumping point with a large `window` (just in case) +Every entry after that gets a `?` in the name, with a commented out `Ability` sync. -Finally, because sometimes log lines get dropped -or ACT starts mid-combat, it can be good to put large syncs -on infrequent or important abilities so that the timeline -can sync there. +This provides a timeline "preview" of upcoming abilities that might be coming, +and when the jump finally happens to either snake or beast branch, +the question marks will be "removed" when the real entries appear. -This leaves us with this final version of the initial loop. +They should match the relative timing exactly. +See [adjusting blocks](#adjusting-blocks-of-timelines) for shortcuts on how to do this easily. -```bash -2.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -10.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -19.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -24.4 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ window 30,10 - -29.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -38.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -46.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -52.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ window 10 forcejump 24.4 -``` +TODO: This might be a good opportunity for `maybejump` keyword that could show timeline abilities along each branch +with a `?` automatically without having to list them out manually or adjust blocks. -This is repeated for each loop remaining in the timeline. +### HP% Pushes -### Putting it all together +Zeromus extreme has an hp percentage push at 25% to phase 2. +In its case, it loops forever in phase one until you get to 25%. +Timeline authors usually start new blocks at a round number far away in this case. -Putting all the loops that we have created together leaves -us with the following timeline. +```text +# Note that this enrage can happen at any time in P2, because it always happens at roughly 11m into the pull regardless of when you hit P2 +658.2 "--sync--" StartsUsing { id: "8C1E", source: "Zeromus" } window 1000,1000 +668.2 "Big Bang (Enrage)" Ability { id: "8C1E", source: "Zeromus" } -Because there are so many `Shield Skewer` abilities, any -loops are on less frequent abilities just to be more careful. +# Phase 2: ~25% push +1000.0 "--sync--" StartsUsing { id: "8C0D", source: "Zeromus" } window 1000,0 +1006.0 "Rend the Rift" Ability { id: "8C0D", source: "Zeromus" } +``` -```bash -# Cape Westwind -# -ii 0A 2CD 2CE 194 14 -p 474:204 478:610 +Another example is an hp% push where the boss will naturally do all of the abilities in order, +but if pushed low enough will "skip ahead". +In this case, it's best to keep all the ability times for the "non push" case +and then add a large `window` at the hp push. -hideall "--Reset--" -hideall "--sync--" +This is an example from [delubrum_reginae.txt](../ui/raidboss/data/05-shb/eureka/delubrum_reginae.txt). +The Queen will naturally do all of these abilities in order, +but if its gets low enough it will skip to `9613.9`. -0.0 "--Reset--" sync / 21:........:4000000F:/ window 10000 jump 0 - -### Phase 1: skewers and stuns -0 "Start" -0.0 "--sync--" sync /:Engage!/ window 0,1 -2.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -10.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -19.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -24.4 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ window 30,10 - -29.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -38.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -46.8 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -52.2 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ window 10 forcejump 24.4 - -### Phase 2 (80%): firebombs -199.0 "--sync--" sync /00:0044:[^:]*:My shields are impregnable/ window 200,0 -200.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ - -204.3 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ window 205,10 -208.8 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -213.1 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -217.4 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -221.7 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -226.0 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -230.3 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ - -234.6 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -238.9 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ window 20 forcejump 204.3 - - -### Phase 3 (60%): Adds -400.0 "Gate Of Tartarus" sync /:Rhitahtyn sas Arvina:473:/ window 200,20 -403.5 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ - -407.7 "Adds" -408.7 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ - -413.2 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ window 20,20 -417.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -422.4 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -426.9 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -431.4 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -435.9 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -440.4 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -445.0 "Shield Skewer" sync /:Rhitahtyn sas Arvina:471:/ -449.5 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ window 20 forcejump 413.2 - -### Phase 4 (40%): magitek missiles -595.0 "--sync--" sync /00:0044:[^:]*:Your defeat will bring/ window 600,0 - -600.0 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -604.5 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -608.8 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ - -610.0 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ window 610,30 -615.1 "Drill Shot" sync /:Rhitahtyn sas Arvina:475:/ -619.4 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -623.7 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ -640.2 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -644.7 "Firebomb" sync /:Rhitahtyn sas Arvina:476:/ -649.0 "Winds Of Tartarus" sync /:Rhitahtyn sas Arvina:472:/ - -650.2 "Magitek Missiles" sync /:Rhitahtyn sas Arvina:478:/ window 20 forcejump 610.0 +```text +9132.1 "Queen's Will" Ability { id: "59B9", source: "The Queen" } +9140.2 "Beck And Call To Arms" Ability { id: "5B99", source: "The Queen" } +9143.3 "--untargetable--" +9144.5 "The Means" Ability { id: "59B[BD]", source: ["Queen's Gunner", "Queen's Warrior"] } +9144.5 "The Ends" Ability { id: "59B[AC]", source: ["Queen's Soldier", "Queen's Knight"] } +9151.5 "Judgment Blade" Ability { id: "59C[12]", source: "The Queen" } +9156.2 "--targetable--" + +# HP% push here. +9160.5 "--middle--" Ability { id: "5BCB", source: "The Queen" } +9163.9 "--sync--" Ability { id: "55A8", source: "The Queen" } window 200,10 +9171.0 "Gods Save The Queen" Ability { id: "59C9", source: "The Queen" } ``` -### Testing Timelines +### Doubled Abilities -cactbot has a testing tool called **util/logtools/test_timeline.ts** that can -test a network log file or an fflogs fight against an existing timeline. +An extremely common pattern in content is to see "doubled" abilities in the timeline. +Here's an example set of loglines from Zeromus. -The test tool will tell you when a sync in your timeline is not matched against the fight, -and if a future sync is hit, it will let you know that some were skipped over. -It will not do the reverse, -and tell you about abilities in the fight that have no timeline entries. - -It will also tell you about how far off the sync was, which can help with -adjusting timelines to be more accurate. +```text +[20:22:56.186] StartsCasting 14:40022550:Zeromus:8B5D:Flare:40022550:Zeromus:6.700:100.00:80.10:0.00:0.00 +[20:22:56.186] StartsCasting 14:4002256D:Zeromus:8B60:Flare:4002256D:Zeromus:7.700:110.00:115.00:0.00:0.00 +[20:23:03.177] ActionEffect 15:40022550:Zeromus:8B5D:Flare:40022550:Zeromus:1B:8B5D8000:0:0:0:0:0:0:0:0:0:0:0:0:0:0:32191814:40478540:10000:10000:::100.00:80.10:0.00:0.00:32191814:40478540:10000:10000:::100.00:80.10:0.00:0.00:0001A75D:0:1 +[20:23:04.160] AOEActionEffect 16:4002256D:Zeromus:8B60:Flare:10FF0003:Gegehi Gehi:150003:D55E0000:1B:8B608000:0:0:0:0:0:0:0:0:0:0:0:0:73085:73085:6700:10000:::110.09:114.18:0.00:-2.85:44:44:0:10000:::110.00:115.00:0.00:0.00:0001A763:0:4 +``` -Here's an example. -The `-t` parameter here refers to the file name of the timeline you want to test against -in the **ui/raidboss/data/timelines** folder, minus the .txt extension. -(As with `make_timeline`, you can use the `-lf` parameter to list encounters.) +This turns into this timeline: -```bash -$ node --loader=ts-node/esm util/logtools/test_timeline.ts -f CapeWestwind.log -s 18:42:23.614 -e 18:49:22.934 -t cape_westwind -0.000: Matched entry: 2.0 Shield Skewer (+2.000s) -10.556: Matched entry: 10.6 Shield Skewer (+0.044s) -18.985: Matched entry: 19.0 Shield Skewer (+0.015s) -24.411: Matched entry: 24.4 Gate Of Tartarus (-0.011s) -29.810: Matched entry: 29.8 Shield Skewer (-0.010s) -38.372: Matched entry: 38.4 Shield Skewer (+0.028s) -46.835: Matched entry: 46.8 Shield Skewer (-0.035s) -52.239: Matched entry: 52.2 Gate Of Tartarus (-0.039s) - Jumping to 24.400 -29.897: Matched entry: 29.8 Shield Skewer (-0.097s) -38.286: Matched entry: 38.4 Shield Skewer (+0.114s) -46.851: Matched entry: 46.8 Shield Skewer (-0.051s) -52.291: Matched entry: 52.2 Gate Of Tartarus (-0.091s) - Jumping to 24.400 -29.831: Matched entry: 29.8 Shield Skewer (-0.031s) -38.204: Matched entry: 38.4 Shield Skewer (+0.196s) -46.888: Matched entry: 46.8 Shield Skewer (-0.088s) -48.695: Matched entry: 199.0 --sync-- (+150.305s) - Missed sync: Gate Of Tartarus at 52.2 (last seen at 24.411) -200.693: Matched entry: 200.0 Shield Skewer (-0.693s) -204.273: Matched entry: 204.3 Shrapnel Shell (+0.027s) -208.809: Matched entry: 208.8 Winds Of Tartarus (-0.009s) -213.111: Matched entry: 213.1 Firebomb (-0.011s) -217.417: Matched entry: 217.4 Shield Skewer (-0.017s) -221.711: Matched entry: 221.7 Drill Shot (-0.011s) -226.017: Matched entry: 226.0 Winds Of Tartarus (-0.017s) -230.313: Matched entry: 230.3 Firebomb (-0.013s) -234.642: Matched entry: 234.6 Shield Skewer (-0.042s) -239.144: Matched entry: 238.9 Shrapnel Shell (-0.244s) - Jumping to 204.300 -208.885: Matched entry: 208.8 Winds Of Tartarus (-0.085s) -213.304: Matched entry: 213.1 Firebomb (-0.204s) -217.623: Matched entry: 217.4 Shield Skewer (-0.223s) -221.857: Matched entry: 221.7 Drill Shot (-0.157s) -226.191: Matched entry: 226.0 Winds Of Tartarus (-0.191s) -230.480: Matched entry: 230.3 Firebomb (-0.180s) -233.846: Matched entry: 400.0 Gate Of Tartarus (+166.154s) - Missed sync: Shield Skewer at 234.6 (last seen at 217.623) - Missed sync: Shrapnel Shell at 238.9 (last seen at 204.273) -403.546: Matched entry: 403.5 Shield Skewer (-0.046s) -408.741: Matched entry: 408.7 Shield Skewer (-0.041s) -413.195: Matched entry: 413.2 Shrapnel Shell (+0.005s) -417.897: Matched entry: 417.9 Winds Of Tartarus (+0.003s) -422.385: Matched entry: 422.4 Firebomb (+0.015s) -426.890: Matched entry: 426.9 Shield Skewer (+0.010s) -431.389: Matched entry: 431.4 Drill Shot (+0.011s) -435.882: Matched entry: 435.9 Winds Of Tartarus (+0.018s) -440.393: Matched entry: 440.4 Firebomb (+0.007s) -444.969: Matched entry: 445.0 Shield Skewer (+0.031s) -449.380: Matched entry: 449.5 Shrapnel Shell (+0.120s) - Jumping to 413.200 -417.884: Matched entry: 417.9 Winds Of Tartarus (+0.016s) -422.366: Matched entry: 422.4 Firebomb (+0.034s) -426.975: Matched entry: 426.9 Shield Skewer (-0.075s) -431.292: Matched entry: 431.4 Drill Shot (+0.108s) -431.400: Matched entry: 595.0 --sync-- (+163.600s) - Missed sync: Winds Of Tartarus at 435.9 (last seen at 417.884) - Missed sync: Firebomb at 440.4 (last seen at 422.366) - Missed sync: Shield Skewer at 445.0 (last seen at 426.97499999999997) - Missed sync: Shrapnel Shell at 449.5 (last seen at 413.195) -620.783: Matched entry: 610.0 Magitek Missiles (-10.783s) - Missed sync: Shrapnel Shell at 600.0 (last seen at 610.739) - Missed sync: Firebomb at 604.5 (last seen at 615.247) - Missed sync: Winds Of Tartarus at 608.8 (last seen at 619.564) -615.098: Matched entry: 615.1 Drill Shot (+0.002s) -619.409: Matched entry: 619.4 Firebomb (-0.009s) -623.711: Matched entry: 623.7 Winds Of Tartarus (-0.011s) -640.166: Matched entry: 640.2 Shrapnel Shell (+0.034s) -644.715: Matched entry: 644.7 Firebomb (-0.015s) -649.012: Matched entry: 649.0 Winds Of Tartarus (-0.012s) -650.179: Matched entry: 650.2 Magitek Missiles (+0.021s) - Jumping to 610.000 -615.137: Matched entry: 615.1 Drill Shot (-0.037s) -619.413: Matched entry: 619.4 Firebomb (-0.013s) -623.709: Matched entry: 623.7 Winds Of Tartarus (-0.009s) -640.170: Matched entry: 640.2 Shrapnel Shell (+0.030s) -644.712: Matched entry: 644.7 Firebomb (-0.012s) -649.013: Matched entry: 649.0 Winds Of Tartarus (-0.013s) -650.177: Matched entry: 650.2 Magitek Missiles (+0.023s) - Jumping to 610.000 -615.135: Matched entry: 615.1 Drill Shot (-0.035s) -619.418: Matched entry: 619.4 Firebomb (-0.018s) -623.709: Matched entry: 623.7 Winds Of Tartarus (-0.009s) -639.166: Matched entry: 640.2 Shrapnel Shell (+1.034s) -644.713: Matched entry: 644.7 Firebomb (-0.013s) -649.014: Matched entry: 649.0 Winds Of Tartarus (-0.014s) -650.175: Matched entry: 650.2 Magitek Missiles (+0.025s) - Jumping to 610.000 -615.131: Matched entry: 615.1 Drill Shot (-0.031s) -619.413: Matched entry: 619.4 Firebomb (-0.013s) -623.709: Matched entry: 623.7 Winds Of Tartarus (-0.009s) +```text +# 8B60 has been ignored +101.8 "Flare" Ability { id: "8B5D", source: "Zeromus" } ``` -As this timeline was generated against this network log, -it's not surprising that most of these timings are very accurate. +Zeromus has a self-targeted `8B5D` cast and also a player-targeted `8560` cast slightly later. +Often the time disrepancy here is ~0.3s or so but in this case it's 1s which is very large. + +In *general*, cactbot timelines prefer to use the self-targeted castbar time, +as that's when the mitigation usually locks in and timelines are good for mitigation planning. +The damage itself is locked in silently during the `8B60` ability line on players. +(The damage itself doesn't actually happen until the corresponding 0x25 [NetworkActionSync](LogGuide.md#line-37-0x25-networkactionsync) line, +which timelines haven't ever concerned themselves with.) + +However, this is subjective and is really just an author convention and not a hard and fast rule. + +See also the next section about `(cast)`. -The `Missed sync` lines are the ones to look at more closely. +### Doubled Abilities with suffixes -These three examples aren't worrisome because they are just the end of the loop -and we've skipped forward in time to the next phase. -(Patches welcome to figure out how to not warn on this sort of jump.) +Often players expect to see castbars show up in the timeline, +and having the timeline say that some ability ends 1s later then the cast bar ends +makes it feel like the timeline is desynced. + +Sometimes when self-targeted and damage are very far away from each other, +they get labelled with a `(cast)` suffix to indicate that this is the boss +casting some prepared move which will resolve a good bit later. + +For instance, in [thaleia.txt](../ui/raidboss/data/06-ew/alliance/thaleia.txt) +there's a Rheognosis castbar and then TWENTY SECONDS LATER there's a knockback. +Because these are so far apart, the original castbar gets a `(cast)`. ```text -48.695: Matched entry: 199.0 --sync-- (+150.305s) - Missed sync: Gate Of Tartarus at 52.2 (last seen at 24.411) - -233.846: Matched entry: 400.0 Gate Of Tartarus (+166.154s) - Missed sync: Shield Skewer at 234.6 (last seen at 217.623) - Missed sync: Shrapnel Shell at 238.9 (last seen at 204.273) - -431.400: Matched entry: 595.0 --sync-- (+163.600s) - Missed sync: Winds Of Tartarus at 435.9 (last seen at 417.884) - Missed sync: Firebomb at 440.4 (last seen at 422.366) - Missed sync: Shield Skewer at 445.0 (last seen at 426.97499999999997) - Missed sync: Shrapnel Shell at 449.5 (last seen at 413.195) +1016.1 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1023.4 "Rheognosis (cast)" Ability { id: "88C4", source: "Thaliak" } +1029.5 "--sync--" Ability { id: "88C6", source: "Thaliak" } +1043.6 "Rheognosis" Ability { id: "88C7", source: "Thaliak" } ``` -However, this looks like a problem: +This also differentiates that there are not two Rheognosis abilities, just one extended one. + +### Multi-hit Abilities + +Multihit abilities usually get a `duration` and an `x#` suffix, e.g. `x6` below for "six hits". ```text -620.783: Matched entry: 610.0 Magitek Missiles (-10.783s) - Missed sync: Shrapnel Shell at 600.0 (last seen at 610.739) - Missed sync: Firebomb at 604.5 (last seen at 615.247) - Missed sync: Winds Of Tartarus at 608.8 (last seen at 619.564) +42.1 "Sable Thread x6" Ability { id: "8B38", source: "Zeromus" } duration 6.9 +#43.8 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#45.1 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#46.4 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#47.7 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +49.0 "--sync--" Ability { id: "8B3A", source: "Zeromus" } ``` -It seems pretty likely that we've put the rp text sync in the wrong place. -Because we added such a large window on `Magitek Missile` the timeline -resynced (thank goodness), but some of the abilities before that were wrong. +There's a couple of reasons for this: -The original timeline is: +* it's not that useful to know when the other hits are happening exactly +* having 6 or 7 timeline things that all say "Sable Thread" is noisy +* we can't sync things anyway because the same ability id is too close in time (and so they're commented out) -```bash -595.0 "--sync--" sync /00:0044:[^:]*:Your defeat will bring/ window 600,0 -600.0 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ -``` +Note that `8B39` is just listed out as a convenience to the timeline author to know how many hits there are. +It could be ignored. The actual `8B3B` damage after `8B38`/`8B39`/`8B3A` *is* entirely ignored via `-ii`. -However, Shrapnel Shell is off by 10.7 seconds, -as the tester output mentioned `(last seen at 610.739)`. -The fix is to move the rp text sync back in time by that amount. -The new time will be 595 - 10.7 = 584.3. +Another alternative is to list them all and number them, e.g. -```bash -584.3 "--sync--" sync /00:0044:[^:]*:Your defeat will bring/ window 600,0 -600.0 "Shrapnel Shell" sync /:Rhitahtyn sas Arvina:474:/ +```text +27.1 "Abyssal Echoes 1" Ability { id: "8B42", source: "Zeromus" } +32.1 "Abyssal Echoes 2" Ability { id: "8B42", source: "Zeromus" } ``` -Rerunning the tester (most output omitted) +These are ~5s apart and so don't need a comment. +Numbering makes it clear that there are multiple abilities that need to be dodged. -```bash -$ node --loader=ts-node/esm util/logtools/test_timeline.ts -f CapeWestwind.log -s 18:42:23.614 -e 18:49:22. -934 -t cape_westwind - -431.400: Matched entry: 584.3 --sync-- (+152.900s) - Missed sync: Winds Of Tartarus at 435.9 (last seen at 417.884) - Missed sync: Firebomb at 440.4 (last seen at 422.366) - Missed sync: Shield Skewer at 445.0 (last seen at 426.97499999999997) - Missed sync: Shrapnel Shell at 449.5 (last seen at 413.195) -600.039: Matched entry: 600.0 Shrapnel Shell (-0.039s) -604.508: Matched entry: 604.5 Firebomb (-0.008s) -608.817: Matched entry: 608.8 Winds Of Tartarus (-0.017s) -610.019: Matched entry: 610.0 Magitek Missiles (-0.019s) +Sometimes, if there's nothing else going on and timing is tight +(and especially when there is a set number of abilities that people are counting) +it can be useful to list out everything explicitly. +See this example from [p12s.txt](../ui/raidboss/data/06-ew/raid/p12s.txt): + +```text +# Laser/Cleave order is random here so we can only really timeline the Palladion dashes. +290.6 "Palladion 1" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +293.7 "Palladion 2" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +296.8 "Palladion 3" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +299.9 "Palladion 4" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +303.0 "Palladion 5" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +306.1 "Palladion 6" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +309.2 "Palladion 7" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +312.4 "Palladion 8" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 ``` -This is what we want to see. -As before, these missed syncs are just from the phase push, -but `Shrapnel Shell` is now in the right spot. +This is just subjective, so let readability and clarity guide you. + +### Numbering Important Mechanics -### Test against other timelines +Often players remember things by which instance of a big mechanic it is. +For instance, [rubicante-ex.txt](../ui/raidboss/data/06-ew/trial/rubicante-ex.txt) +has something like `Ordeal of Purgation 4` so that players remember +that this is the one where they have to find the cat ears. -It's important to test against multiple fight instances to make sure that the timeline is good. -Here's an example of running against the **CapeWestwind2.log** file. +Similarly, on fights where people do a lot of mit planning (ultimates, fourth floors) +often people will remember "I'm addling the 4th ultima" and so +[p12s.txt](../ui/raidboss/data/06-ew/raid/p12s.txt) has things like `"Ultima 6"` or `"Gaiaochos 2"`. -If you run `node --loader=ts-node/esm util/logtools/test_timeline.ts -f CapeWestwind2.log -s 13:21:00.688 -e 13:29:36.976 -t cape_westwind` yourself, you can spot at least two problems. +This is also subjective, so do what seems useful. -One minor problem is that this boss is inconsistent: +### Renaming Abilities to `--sync--` + +From [delubrum_reginae_savage.txt](../ui/raidboss/data/05-shb/eureka/delubrum_reginae_savage.txt): ```text -447.329: Matched entry: 445.0 Shield Skewer (-2.329s) -443.789: Matched entry: 445.0 Shield Skewer (+1.211s) -444.792: Matched entry: 445.0 Shield Skewer (+0.208s) -447.361: Matched entry: 445.0 Shield Skewer (-2.361s) +# Similarly, 57C4 is the cast for Devastating Bolt, but 57C5/57C6 is the delayed damage. +# Both of these casts are renamed as --sync-- to clean up the timeline. + +18247.2 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18251.3 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18251.7 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } ``` -This `Shield Skewer` in phase 3 comes at wildly different times. -However, the abilities before and after seem to be just fine. -Often if there are inconsistencies like this, -the best thing to do is make sure there are larger windows around surrounding abilities -to make sure that even if one ability is inconsistent the entire timeline doesn't get derailed. +This is an alternative to [doubled abilities with suffixes](#doubled-abilities-with-suffixes). -However, one major problem is that there's a missing `Shield Skewer`: +See also: -```text -403.454: Matched entry: 403.5 Shield Skewer (+0.046s) -407.876: Matched entry: 413.2 Shrapnel Shell (+5.324s) - Missed sync: Shield Skewer at 408.7 (last seen at 403.454) -417.748: Matched entry: 417.9 Winds Of Tartarus (+0.152s) -``` +## Future Work + +There's plenty of feature work and fixes for timelines if you are interested in working on making this code better: + +### Smaller Fixes/Changes + +* update [Cactbot Highlight](https://marketplace.visualstudio.com/items?itemName=MaikoTan.cactbot-highlight) to include `forcejump`, `label`, and new `Ability { params }` style syncs +* make it so you can pass multiple mob names to `-it` +* `test_timeline.ts` could know which file to use without `-t` (it could use `ZoneChange` lines to look up the correct timeline) +* `make_timeline.ts` has issues with empty names: +* `test_timeline.ts` sometimes misses seal lines that are in the log: +* investigate this drift issue: +* make it possible to pass a set of ids that should be named `--sync--`: +* fix the log splitter so that when importing into ACT separate fights stay separate (maybe need to keep one new zone line? or just insert a fake `/echo end`?) +* fix the offset issue with make/test timeline on zeromus log file: + +### Larger Features -One timeline has two `Shield Skewer`s and one only has one. -And the `Shrapnel Shell` is horribly mistimed here. +* general timeline improvement thread (many ideas, see especially first comment): +* add a `maybejump` similar to `forcejump` that does "loop lookahead" instead of manually writing out the loop +* named blocks to separate out phases / fights: +* consider moving all "huge syncs" to the beginning (rather than a huge sync for t=2000 for a seal line, maybe all the seal lines only sync `window 0,1` and are listed at the beginning) to reduce active syncs and improve readability +* `testsync` instead of comments (we use `#Ability { params }` to avoid sync issues, but it'd be nice to add a `testsync` command that verifies that the sync was hit in the window but does not resync for testing purposes) +* handle multiple syncs at the same time: +* clean up old timelines to use `label` and `forcejump` +* add some checkbox to the splitter code to only print out "interesting" lines (see: [hacky workflow](#one-hacky-workflow-suggestion)) -What to do in this case is subjective. -Here are some options: +### Ability Table -* get more data, and make a timeline for the most common case -* leave a comment in the timeline -* if this is an important ability (e.g. tankbuster) put a question mark on it so players know it's not guaranteed +The [ability table](#timeline-ability-tables) was added during the 6.x timeframe +and has become an important part of making timelines, triggers, and oopsy. -### Handling "Linear" Timelines +In some ways, having it be just text comments in a timeline only goes so far. -While Cape Westwind is a fairly complex example of how timelines can be generated, -most content in FFXIV that's from patch 4.0 or later will be simpler in several ways. -Looping blocks will almost always be longer, -and there will usually be very easy-to-find "bookend" abilities. -Also, most Extreme and Savage encounters will not have any loops at all, -but will have a fully linear timeline, -or several non-repeating blocks in a random order. +It could become its own json(?) file of ability mappings (auto-generated? partially auto-generated?) that says -A very common structure for normal mode trials and raids is to have -a long linear set of opening blocks, and then upon "getting to the end", -a final block will loop until the boss dies or (very rarely) -a timed enrage will occur. +* damage / no damage +* is avoidable / unavoidable damage +* has cast / has castbar in game / just ability +* self-targeted on caster / hits N players / hits all players -In all of these cases, it's good practice to put wide opening syncs at the beginning of each new block. This will ensure that even if later phase pushes are found, -the timeline will probably continue to function seamlessly. +Oopsy could use this to print out extra information (mouseover for what an ability is that somebody died from). +We wouldn't need to duplicate this information in oopsy comments or `sync_files.ts` comments. +You could make a "log viewer" that pulls out interesting lines and annotates them with this information, +or attempts to infer this information to fill out a json file. +[Cactbot Highlight](https://marketplace.visualstudio.com/items?itemName=MaikoTan.cactbot-highlight) could somehow use this information when looking at timeline? -You can see an example in the file **ui/raidboss/data/05-shb/raid/e8n.txt**. -When this file was first added, party DPS was far too low to skip anything. -However, with power creep from later expansions, -it's not at all uncommon to skip ahead a little. -To fix this, we added new very wide syncs at various points -to ensure that even if the party pushed phases, the timeline would still continue to run. +I think it could be possible to enshrine this in a little bit more formal way +and then it'd be useful in multiple cactbot contexts. +Probably other non-cactbot trigger makers would find this useful too. diff --git a/docs/ko-KR/README.md b/docs/ko-KR/README.md index 77d4b33740..dae7f53e69 100644 --- a/docs/ko-KR/README.md +++ b/docs/ko-KR/README.md @@ -2,7 +2,7 @@ -[![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/quisquous/cactbot/Test/main)](https://github.com/quisquous/cactbot/actions?query=workflow%3ATest+branch%3Amain) +[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/quisquous/cactbot/test.yml?branch=main)](https://github.com/quisquous/cactbot/actions?query=workflow%3ATest+branch%3Amain) [![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/quisquous/cactbot?color=brightgreen&sort=semver)](https://github.com/quisquous/cactbot/releases/latest) 🌎 [[English](../../README.md)] [[简体中文](../zh-CN/README.md)] [**한국어**] diff --git a/docs/logs/TheAbyssalFractureExtreme.log b/docs/logs/TheAbyssalFractureExtreme.log new file mode 100644 index 0000000000..12d6d97bc2 --- /dev/null +++ b/docs/logs/TheAbyssalFractureExtreme.log @@ -0,0 +1,104744 @@ +249|2023-10-06T08:49:20.0419818-07:00|Selected Language ID: English, Disable Damage Shield: False, Disable Combine Pets: False, Parse Filter: None, DoTCrits: False, RealDoTs: False| +249|2023-10-06T08:49:20.0419818-07:00|Selected Process ID: 0, Dump All Network Data: False, Disable Combat Log: False, Selected IP: , WinPcap: False, Socket Filter: True, Deucalion: True| +253|2023-10-06T08:49:20.0419818-07:00|FFXIV_ACT_Plugin Version: 2.6.9.4 (50BCD605C50A749F)| +256|2023-10-06T08:49:25.1830634-07:00|256|OverlayPlugin|RegisterLogLine|1| +256|2023-10-06T08:49:25.2270142-07:00|257|OverlayPlugin|MapEffect|1| +256|2023-10-06T08:49:25.2450021-07:00|258|OverlayPlugin|FateDirector|1| +256|2023-10-06T08:49:25.2480010-07:00|259|OverlayPlugin|CEDirector|1| +256|2023-10-06T08:49:25.2559976-07:00|260|OverlayPlugin|InCombat|1| +256|2023-10-06T08:49:25.2619916-07:00|261|OverlayPlugin|CombatantMemory|1| +250|2023-10-06T08:49:25.2639904-07:00|Detected Process ID: 10776, Client Mode: FFXIV_64, IsAdmin: False, Game Version: 2023.09.28.0000.0000| +256|2023-10-06T08:49:25.2639904-07:00|262|OverlayPlugin|RSVData|1| +249|2023-10-06T11:06:18.6497335-07:00|Selected Language ID: English, Disable Damage Shield: False, Disable Combine Pets: False, Parse Filter: None, DoTCrits: False, RealDoTs: False| +249|2023-10-06T11:06:18.6497335-07:00|Selected Process ID: 0, Dump All Network Data: False, Disable Combat Log: False, Selected IP: , WinPcap: False, Socket Filter: True, Deucalion: True| +253|2023-10-06T11:06:18.6497335-07:00|FFXIV_ACT_Plugin Version: 2.6.9.4 (50BCD605C50A749F)| +256|2023-10-06T11:06:22.1308501-07:00|256|OverlayPlugin|RegisterLogLine|1| +256|2023-10-06T11:06:22.1488378-07:00|257|OverlayPlugin|MapEffect|1| +256|2023-10-06T11:06:22.1608297-07:00|258|OverlayPlugin|FateDirector|1| +256|2023-10-06T11:06:22.1628294-07:00|259|OverlayPlugin|CEDirector|1| +256|2023-10-06T11:06:22.1708229-07:00|260|OverlayPlugin|InCombat|1| +256|2023-10-06T11:06:22.1758198-07:00|261|OverlayPlugin|CombatantMemory|1| +250|2023-10-06T11:06:22.1768204-07:00|Detected Process ID: 10776, Client Mode: FFXIV_64, IsAdmin: False, Game Version: 2023.09.28.0000.0000| +256|2023-10-06T11:06:22.1768204-07:00|262|OverlayPlugin|RSVData|1| +250|2023-10-06T15:19:02.7350000-07:00|Detected Process ID: 25056, Client Mode: FFXIV_64, IsAdmin: False, Game Version: 2023.09.28.0000.0000| +249|2023-10-06T17:13:13.4779153-07:00|Selected Language ID: English, Disable Damage Shield: False, Disable Combine Pets: False, Parse Filter: None, DoTCrits: False, RealDoTs: False| +249|2023-10-06T17:13:13.4779153-07:00|Selected Process ID: 0, Dump All Network Data: False, Disable Combat Log: False, Selected IP: , WinPcap: False, Socket Filter: True, Deucalion: True| +253|2023-10-06T17:13:13.4779153-07:00|FFXIV_ACT_Plugin Version: 2.6.9.4 (50BCD605C50A749F)| +256|2023-10-06T17:13:17.7442354-07:00|256|OverlayPlugin|RegisterLogLine|1| +256|2023-10-06T17:13:17.7842109-07:00|257|OverlayPlugin|MapEffect|1| +256|2023-10-06T17:13:17.7991982-07:00|258|OverlayPlugin|FateDirector|1| +256|2023-10-06T17:13:17.8011979-07:00|259|OverlayPlugin|CEDirector|1| +256|2023-10-06T17:13:18.2124363-07:00|260|OverlayPlugin|InCombat|1| +256|2023-10-06T17:13:18.6956241-07:00|261|OverlayPlugin|CombatantMemory|1| +250|2023-10-06T17:13:18.6976217-07:00|Detected Process ID: 25056, Client Mode: FFXIV_64, IsAdmin: False, Game Version: 2023.09.28.0000.0000| +256|2023-10-06T17:13:18.6976217-07:00|262|OverlayPlugin|RSVData|1| +01|2023-10-06T20:20:06.3190000-07:00|491|The Abyssal Fracture (Extreme)| +02|2023-10-06T20:20:06.3190000-07:00|10FF0001|Sesuga Sapisuga| +03|2023-10-06T20:20:06.3190000-07:00|40022539|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022540|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022541|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022542|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022543|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022544|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022545|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022546|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022547|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022548|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022549|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022550|Zeromus|00|5A|0000|00||12586|16557|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022551|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022552|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022553|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022554|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022555|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022556|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022557|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022558|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022559|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022560|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022561|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022562|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022563|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022564|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022565|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022566|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022567|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022568|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|40022569|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|10FF0001|Sesuga Sapisuga|13|5A|0000|28|Jenova|0|0|122739|122739|10000|10000|||99.85|115.75|0.00|-3.14| +03|2023-10-06T20:20:06.3190000-07:00|10FF0002|Suchichi Suchi|16|5A|0000|3F|Gilgamesh|0|0|83105|83105|10000|10000|||100.13|115.10|0.00|-3.14| +03|2023-10-06T20:20:06.3190000-07:00|10FF0003|Gegehi Gehi|23|5A|0000|39|Siren|0|0|66694|66694|10000|10000|||99.83|114.98|0.00|-3.14| +03|2023-10-06T20:20:06.3190000-07:00|10FF0004|Buhojaqe Zijaqe|1C|5A|0000|3F|Gilgamesh|0|0|74057|74057|10000|10000|||100.46|115.20|0.00|-3.14| +03|2023-10-06T20:20:06.3190000-07:00|4002256F|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|73956|10000|10000|||101.83|116.57|0.20|-3.14| +03|2023-10-06T20:20:06.3190000-07:00|10FF0005|Wuwuchu Wuchu|27|5A|0000|36|Faerie|0|0|86507|86507|10000|10000|||100.07|115.89|0.00|-3.14| +03|2023-10-06T20:20:06.3190000-07:00|10FF0006|Wowobora Gogobora|28|5A|0000|4F|Cactuar|0|0|74057|74057|10000|10000|||99.17|115.10|0.00|-3.14| +03|2023-10-06T20:20:06.3190000-07:00|4002254A|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002253D|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002253E|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002254E|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002253C|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002254C|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002254D|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002253B|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002254B|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002253A|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002253F|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002256C|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002255E|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002255B|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002255A|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002256E|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002256D|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002255C|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002255D|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002256B|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002256A|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|4002255F|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T20:20:06.3190000-07:00|10FF0007|Kehabiqo Febiqo|15|5A|0000|4D|Ultros|0|0|123477|123477|10000|10000|||100.32|114.29|0.00|-3.14| +03|2023-10-06T20:20:06.3190000-07:00|10FF0008|Kokosaze Lulusaze|1B|5A|0000|63|Sargatanas|0|0|72502|72502|10000|10000|||99.88|114.95|0.00|-3.14| +11|2023-10-06T20:20:06.3190000-07:00|8|10FF0002|10FF0003|10FF0001|10FF0004|10FF0005|10FF0006|10FF0007|10FF0008| +40|2023-10-06T20:20:06.3190000-07:00|894|???|The Abyssal Fracture|| +12|2023-10-06T20:20:07.2140000-07:00|19|3439|385|3962|245|408|390|3439|976|2540|245|408|2182|400|400|0|529|4000174A6D2E55| +21|2023-10-06T20:20:08.2650000-07:00|4002256F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14530000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|123477|128564|10000|10000|||100.32|114.29|0.00|-3.14|73956|73956|10000|10000|||101.82|116.56|0.00|-2.39|0001A40E|0|1| +37|2023-10-06T20:20:09.0670000-07:00|10FF0007|Kehabiqo Febiqo|0001A40E|128564||||||100.32|114.29|0.00|-3.14| +39|2023-10-06T20:20:10.1340000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||100.13|115.10|0.00|-3.14| +39|2023-10-06T20:20:10.1790000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||99.83|114.98|0.00|-3.14| +39|2023-10-06T20:20:10.3570000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.85|115.75|0.00|-3.14| +39|2023-10-06T20:20:10.3570000-07:00|10FF0004|Buhojaqe Zijaqe|77265|77265|10000|10000|||100.46|115.20|0.00|-3.14| +39|2023-10-06T20:20:10.4010000-07:00|4002256F|Ruby Carbuncle|73956|73956|10000|10000|||101.82|116.56|0.00|-2.56| +39|2023-10-06T20:20:10.4460000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.07|115.89|0.00|-3.14| +39|2023-10-06T20:20:10.4900000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||99.17|115.10|0.00|-3.14| +20|2023-10-06T20:20:10.6680000-07:00|10FF0004|Buhojaqe Zijaqe|433F|Summon Eos|10FF0004|Buhojaqe Zijaqe|1.450|100.46|115.20|0.00|-3.14| +39|2023-10-06T20:20:11.0250000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||100.32|114.29|0.00|-3.14| +39|2023-10-06T20:20:11.0250000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||99.88|114.95|0.00|-3.14| +261|2023-10-06T20:20:11.0430000-07:00|Change|10FF0007||||| +261|2023-10-06T20:20:11.2500000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T20:20:11.6060000-07:00|10FF0004|Buhojaqe Zijaqe|433F|Summon Eos|10FF0004|Buhojaqe Zijaqe|3E|9D8000|1B|433F8000|0|0|0|0|0|0|0|0|0|0|0|0|77265|77265|10000|10000|||100.46|115.20|0.00|-3.14|77265|77265|10000|10000|||100.46|115.20|0.00|-3.14|0001A40F|0|1| +38|2023-10-06T20:20:11.6500000-07:00|40022577||005A5A00|73956|73956|10000|10000|0||||||0|0|0| +261|2023-10-06T20:20:11.5270000-07:00|Add|40022577||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:20:11.5270000-07:00|40022577|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|73956|10000|10000|||100.46|113.46|0.00|0.00| +261|2023-10-06T20:20:11.8100000-07:00|Change|4002256F||||||||| +261|2023-10-06T20:20:11.9260000-07:00|Change|40022577||| +261|2023-10-06T20:20:12.1520000-07:00|Change|10FF0001||||||||| +34|2023-10-06T20:20:12.6740000-07:00|40022577|Ruby Carbuncle|40022577|Ruby Carbuncle|01| +20|2023-10-06T20:20:12.8520000-07:00|10FF0008|Kokosaze Lulusaze|64C6|Summon Carbuncle|10FF0008|Kokosaze Lulusaze|1.486|99.88|114.95|0.00|-3.14| +261|2023-10-06T20:20:12.4530000-07:00|Change|10FF0008||||||||||||||| +39|2023-10-06T20:20:13.1630000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||101.52|115.10|0.00|3.14| +39|2023-10-06T20:20:13.2080000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||99.83|114.98|0.00|-3.14| +261|2023-10-06T20:20:12.9730000-07:00|Change|40022577||| +39|2023-10-06T20:20:13.3860000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.53|116.74|0.00|-2.84| +39|2023-10-06T20:20:13.3860000-07:00|10FF0004|Buhojaqe Zijaqe|77265|77265|10000|10000|||100.46|115.20|0.00|3.14| +39|2023-10-06T20:20:13.4750000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.07|115.89|0.00|-3.14| +39|2023-10-06T20:20:13.5190000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||99.17|115.10|0.00|-3.14| +261|2023-10-06T20:20:13.3720000-07:00|Change|4002256F||| +21|2023-10-06T20:20:13.8320000-07:00|10FF0008|Kokosaze Lulusaze|64C6|Summon Carbuncle|10FF0008|Kokosaze Lulusaze|3E|9D8000|1B|64C68000|0|0|0|0|0|0|0|0|0|0|0|0|75636|75636|10000|10000|||99.88|114.95|0.00|-3.14|75636|75636|10000|10000|||99.88|114.95|0.00|-3.14|0001A410|0|1| +38|2023-10-06T20:20:13.8760000-07:00|4002257B||005A5A00|72376|72376|10000|10000|0||||||0|0|0| +39|2023-10-06T20:20:14.0550000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||100.32|114.29|0.00|-3.14| +39|2023-10-06T20:20:14.0550000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||99.88|114.95|0.00|3.14| +261|2023-10-06T20:20:13.7940000-07:00|Add|4002257B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:20:13.7940000-07:00|4002257B|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|72376|10000|10000|||99.88|113.20|0.00|0.00| +261|2023-10-06T20:20:14.0200000-07:00|Change|10FF0003||||||| +261|2023-10-06T20:20:14.3170000-07:00|Change|4002257B||| +34|2023-10-06T20:20:14.9000000-07:00|4002257B|Carbuncle|4002257B|Carbuncle|01| +04|2023-10-06T20:20:15.0490000-07:00|4002256F|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|73956|0|10000|||101.82|116.56|0.00|-2.56| +261|2023-10-06T20:20:15.0490000-07:00|Remove|4002256F| +261|2023-10-06T20:20:15.3250000-07:00|Change|4002257B||| +28|2023-10-06T20:20:16.0140000-07:00|Add|0|10FF0001|Sesuga Sapisuga|88.83|114.80|0.00| +28|2023-10-06T20:20:16.0140000-07:00|Add|1|10FF0001|Sesuga Sapisuga|91.60|114.67|0.00| +28|2023-10-06T20:20:16.0140000-07:00|Add|2|10FF0001|Sesuga Sapisuga|94.15|114.82|0.00| +28|2023-10-06T20:20:16.0140000-07:00|Add|3|10FF0001|Sesuga Sapisuga|96.43|115.05|0.00| +28|2023-10-06T20:20:16.0140000-07:00|Add|4|10FF0001|Sesuga Sapisuga|98.68|110.95|0.00| +28|2023-10-06T20:20:16.0140000-07:00|Add|5|10FF0001|Sesuga Sapisuga|101.75|110.99|0.00| +28|2023-10-06T20:20:16.0140000-07:00|Add|6|10FF0001|Sesuga Sapisuga|102.09|114.92|0.00| +28|2023-10-06T20:20:16.0140000-07:00|Add|7|10FF0001|Sesuga Sapisuga|98.75|114.87|0.00| +39|2023-10-06T20:20:16.1480000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||101.91|113.82|0.42|-3.13| +39|2023-10-06T20:20:16.1920000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||99.83|114.98|0.00|-3.14| +39|2023-10-06T20:20:16.3710000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.37|116.97|0.00|-0.01| +39|2023-10-06T20:20:16.3710000-07:00|10FF0004|Buhojaqe Zijaqe|77265|77265|10000|10000|||100.46|115.20|0.00|3.14| +33|2023-10-06T20:20:16.4150000-07:00|80034E7C|4000000C|00|00|00|00| +33|2023-10-06T20:20:16.4150000-07:00|80034E7C|40000001|E10|00|00|00| +21|2023-10-06T20:20:16.4150000-07:00|10FF0004|Buhojaqe Zijaqe|20FDE04|item_fde04|10FF0004|Buhojaqe Zijaqe|6800000E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77265|77265|10000|10000|||100.46|115.20|0.00|3.14|77265|77265|10000|10000|||100.46|115.20|0.00|3.14|0001A411|0|1| +261|2023-10-06T20:20:16.0570000-07:00|Change|40022536||| +00|2023-10-06T20:20:16.0000000-07:00|0839||The Abyssal Fracture (Extreme) has begun.| +39|2023-10-06T20:20:16.4600000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.07|115.89|0.00|-3.14| +33|2023-10-06T20:20:16.4600000-07:00|80034E7C|80000004|E0F|00|00|00| +39|2023-10-06T20:20:16.5050000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||99.17|115.10|0.00|-3.14| +261|2023-10-06T20:20:16.1520000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T20:20:17.0410000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||100.24|114.27|0.00|3.14| +39|2023-10-06T20:20:17.0410000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||99.88|114.95|0.00|3.14| +37|2023-10-06T20:20:17.3080000-07:00|10FF0004|Buhojaqe Zijaqe|0001A411|77265|80739|10000|10000|0||100.46|115.20|0.00|3.14|1C00|0|0|01|02000030|2968|44E10000|| +26|2023-10-06T20:20:17.3080000-07:00|30|Well Fed|1800.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|2968|77265|77265| +38|2023-10-06T20:20:17.3080000-07:00|40022577|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.46|113.46|0.00|0.00|0|0|0|||| +26|2023-10-06T20:20:17.3080000-07:00|30|Well Fed|1799.96|10FF0004|Buhojaqe Zijaqe|40022577|Ruby Carbuncle|2968|73956|77265| +38|2023-10-06T20:20:17.3080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77265|80739|10000|10000|0||100.46|115.20|0.00|3.14|0|0|0|||||||||| +261|2023-10-06T20:20:17.1030000-07:00|Change|10FF0003||||| +21|2023-10-06T20:20:17.5760000-07:00|40022577|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|155B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|77265|80739|10000|10000|||100.45|115.19|0.00|2.65|73956|77430|10000|10000|||100.46|113.46|0.00|0.00|0001A412|0|1| +39|2023-10-06T20:20:17.6200000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||100.46|113.46|0.00|0.00| +261|2023-10-06T20:20:17.3910000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:20:18.3750000-07:00|10FF0004|Buhojaqe Zijaqe|0001A412|80739||||||101.47|115.42|0.00|1.66| +00|2023-10-06T20:20:18.0000000-07:00|0839||One or more party members have yet to complete this duty. A bonus of 50 Allagan tomestones of causality will be awarded upon completion.| +39|2023-10-06T20:20:19.1350000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||98.58|116.79|0.00|-2.59| +39|2023-10-06T20:20:19.1790000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||99.89|115.09|-0.02|0.97| +39|2023-10-06T20:20:19.3580000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.66|116.43|0.00|3.14| +39|2023-10-06T20:20:19.3580000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||99.41|115.40|0.00|-1.64| +39|2023-10-06T20:20:19.4480000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.07|115.89|0.00|-3.14| +39|2023-10-06T20:20:19.4920000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||98.42|115.14|0.00|2.79| +261|2023-10-06T20:20:19.3730000-07:00|Change|10FF0005||||||||||||| +39|2023-10-06T20:20:19.8470000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||99.88|113.20|0.00|0.00| +39|2023-10-06T20:20:20.0250000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||89.86|113.97|-0.01|3.06| +39|2023-10-06T20:20:20.0250000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||99.88|114.95|0.00|3.14| +39|2023-10-06T20:20:20.6480000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||100.68|114.08|0.00|0.11| +39|2023-10-06T20:20:22.1620000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||101.90|111.12|0.00|3.08| +39|2023-10-06T20:20:22.2070000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||102.16|115.28|0.00|-3.13| +39|2023-10-06T20:20:22.3850000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||101.83|111.70|0.00|-3.14| +39|2023-10-06T20:20:22.3850000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||101.73|115.31|0.00|1.30| +39|2023-10-06T20:20:22.4740000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.68|116.43|-0.02|-3.14| +39|2023-10-06T20:20:22.5180000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||98.44|115.13|0.00|2.28| +39|2023-10-06T20:20:22.8740000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||99.88|113.20|0.00|0.00| +39|2023-10-06T20:20:23.0520000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||98.62|111.16|0.00|3.07| +39|2023-10-06T20:20:23.0520000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||99.88|114.95|0.00|3.14| +39|2023-10-06T20:20:23.6320000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||100.63|114.06|0.00|0.00| +261|2023-10-06T20:20:23.5140000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:20:23.7090000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T20:20:25.1520000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||101.88|110.95|0.00|3.09| +39|2023-10-06T20:20:25.1960000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||102.16|115.28|0.00|-3.13| +39|2023-10-06T20:20:25.3740000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||101.83|111.70|0.00|-3.14| +39|2023-10-06T20:20:25.3740000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||101.96|115.28|0.00|1.64| +39|2023-10-06T20:20:25.4640000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||98.89|111.35|0.00|-2.91| +39|2023-10-06T20:20:25.5080000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||98.44|115.13|0.00|2.28| +39|2023-10-06T20:20:25.8660000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||99.69|113.48|0.00|-0.53| +39|2023-10-06T20:20:26.0440000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||98.62|111.16|0.00|3.07| +39|2023-10-06T20:20:26.0440000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||98.89|115.10|0.00|-3.05| +39|2023-10-06T20:20:26.6240000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||100.63|114.06|0.00|0.00| +39|2023-10-06T20:20:28.1440000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||101.88|110.95|0.00|3.09| +39|2023-10-06T20:20:28.1880000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||102.16|115.28|0.00|-3.13| +39|2023-10-06T20:20:28.3690000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||97.14|111.29|0.00|2.89| +39|2023-10-06T20:20:28.3690000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||102.04|115.28|0.00|2.15| +39|2023-10-06T20:20:28.4580000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||98.89|111.35|0.00|-2.63| +39|2023-10-06T20:20:28.5020000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||98.71|115.37|-0.02|0.76| +39|2023-10-06T20:20:28.8590000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||99.69|113.48|0.00|-0.53| +39|2023-10-06T20:20:29.0370000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||97.02|111.46|0.00|-1.64| +39|2023-10-06T20:20:29.0370000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||98.89|115.10|0.00|-3.05| +39|2023-10-06T20:20:29.6150000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||100.63|114.06|0.00|0.00| +39|2023-10-06T20:20:31.1310000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||101.88|110.97|0.00|-2.17| +39|2023-10-06T20:20:31.1750000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||100.16|115.66|0.00|-2.98| +39|2023-10-06T20:20:31.3540000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||95.27|111.31|0.00|2.96| +39|2023-10-06T20:20:31.3540000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||97.92|115.24|0.00|-1.62| +39|2023-10-06T20:20:31.4430000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||93.16|113.54|-0.01|-2.92| +39|2023-10-06T20:20:31.4880000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||93.34|117.33|0.00|1.11| +39|2023-10-06T20:20:31.8450000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||95.99|113.85|0.00|-1.61| +39|2023-10-06T20:20:32.0230000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||88.73|113.97|0.00|-0.85| +39|2023-10-06T20:20:32.0230000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||93.86|115.31|0.00|-1.48| +39|2023-10-06T20:20:32.6470000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||98.77|113.86|0.00|-1.68| +39|2023-10-06T20:20:34.1610000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||91.51|114.49|0.00|-3.00| +39|2023-10-06T20:20:34.2060000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||94.07|115.37|0.00|3.01| +39|2023-10-06T20:20:34.3840000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||94.86|112.26|0.00|-0.18| +39|2023-10-06T20:20:34.3840000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||96.56|115.47|0.00|-1.51| +39|2023-10-06T20:20:34.4740000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||90.60|112.05|0.00|0.37| +39|2023-10-06T20:20:34.5190000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||94.10|115.68|0.00|3.10| +39|2023-10-06T20:20:34.8760000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||95.11|113.82|0.00|-1.64| +39|2023-10-06T20:20:35.0560000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||88.73|113.97|0.00|-0.85| +39|2023-10-06T20:20:35.0560000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||93.86|115.31|0.00|-1.48| +39|2023-10-06T20:20:35.6330000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||97.07|113.87|0.00|-1.78| +39|2023-10-06T20:20:37.1450000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||91.51|114.49|0.00|-3.00| +39|2023-10-06T20:20:37.1890000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||96.64|115.31|0.00|3.13| +39|2023-10-06T20:20:37.3670000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||92.20|115.05|0.00|-0.07| +39|2023-10-06T20:20:37.3670000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||95.32|115.22|0.00|0.98| +39|2023-10-06T20:20:37.4570000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|-2.99| +39|2023-10-06T20:20:37.5030000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||94.10|115.68|0.00|3.10| +39|2023-10-06T20:20:37.8590000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||95.11|113.82|0.00|-1.64| +39|2023-10-06T20:20:38.0370000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||88.73|113.97|0.00|-0.85| +39|2023-10-06T20:20:38.0370000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||93.86|115.31|0.00|-1.48| +39|2023-10-06T20:20:38.6160000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||95.82|113.73|0.00|-1.37| +39|2023-10-06T20:20:40.1340000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||91.51|114.49|0.00|-3.00| +39|2023-10-06T20:20:40.1790000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||96.33|115.34|0.00|-3.09| +39|2023-10-06T20:20:40.3570000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||92.07|115.04|0.00|3.07| +39|2023-10-06T20:20:40.3570000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||96.88|115.40|0.00|1.36| +39|2023-10-06T20:20:40.4470000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|-2.99| +39|2023-10-06T20:20:40.4900000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||94.10|115.68|0.00|3.10| +28|2023-10-06T20:20:40.8470000-07:00|Delete|0|10FF0001|Sesuga Sapisuga|119.14|107.46|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Add|0|10FF0001|Sesuga Sapisuga|119.14|107.46|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Delete|1|10FF0001|Sesuga Sapisuga|80.62|106.32|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Add|1|10FF0001|Sesuga Sapisuga|80.62|106.32|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Delete|2|10FF0001|Sesuga Sapisuga|80.90|91.80|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Add|2|10FF0001|Sesuga Sapisuga|80.90|91.80|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Delete|3|10FF0001|Sesuga Sapisuga|119.05|93.79|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Add|3|10FF0001|Sesuga Sapisuga|119.05|93.79|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Delete|4|10FF0001|Sesuga Sapisuga|107.21|119.34|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Add|4|10FF0001|Sesuga Sapisuga|107.21|119.34|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Delete|5|10FF0001|Sesuga Sapisuga|93.57|119.36|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Add|5|10FF0001|Sesuga Sapisuga|93.57|119.36|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Delete|6|10FF0001|Sesuga Sapisuga|90.94|81.56|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Add|6|10FF0001|Sesuga Sapisuga|90.94|81.56|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Delete|7|10FF0001|Sesuga Sapisuga|108.88|80.88|0.00| +28|2023-10-06T20:20:40.8470000-07:00|Add|7|10FF0001|Sesuga Sapisuga|108.88|80.88|0.00| +39|2023-10-06T20:20:40.8470000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||95.11|113.82|0.00|-1.64| +39|2023-10-06T20:20:41.0240000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||88.73|113.97|0.00|-0.85| +39|2023-10-06T20:20:41.0240000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||93.86|115.31|0.00|-1.48| +39|2023-10-06T20:20:41.6500000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||95.84|113.79|0.00|-1.21| +39|2023-10-06T20:20:43.1650000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||91.51|114.49|0.00|-3.00| +39|2023-10-06T20:20:43.2100000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||97.09|115.51|0.00|3.05| +39|2023-10-06T20:20:43.3880000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||92.07|115.04|0.00|3.07| +39|2023-10-06T20:20:43.3880000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||99.45|115.50|0.00|1.55| +261|2023-10-06T20:20:43.0920000-07:00|Change|10FF0006||||||||||||| +39|2023-10-06T20:20:43.4780000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|-2.99| +39|2023-10-06T20:20:43.5230000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||94.10|115.68|0.00|3.10| +39|2023-10-06T20:20:43.8350000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||95.11|113.82|0.00|-1.64| +261|2023-10-06T20:20:43.4730000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T20:20:44.0570000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||88.73|113.97|0.00|-0.85| +39|2023-10-06T20:20:44.0570000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||93.86|115.31|0.00|-1.48| +261|2023-10-06T20:20:43.7570000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:20:44.6360000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||98.64|114.09|0.00|1.53| +39|2023-10-06T20:20:46.1510000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||99.53|114.31|0.00|-3.12| +39|2023-10-06T20:20:46.1950000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||100.79|116.17|0.00|3.14| +21|2023-10-06T20:20:46.3290000-07:00|10FF0006|Wowobora Gogobora|5EDD|Kardia|10FF0001|Sesuga Sapisuga|AA0E|A2D0000|A3000F|A2C8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||92.07|115.04|0.00|3.07|77265|77265|10000|10000|||94.10|115.68|0.00|3.10|0001A413|0|1| +39|2023-10-06T20:20:46.3740000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||92.07|115.04|0.00|3.07| +39|2023-10-06T20:20:46.3740000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.39|115.28|0.00|2.46| +39|2023-10-06T20:20:46.4630000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|-2.99| +39|2023-10-06T20:20:46.5080000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||94.10|115.68|0.00|-2.96| +261|2023-10-06T20:20:46.1640000-07:00|Change|10FF0006||||||| +39|2023-10-06T20:20:46.8630000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||95.11|113.82|0.00|-1.64| +37|2023-10-06T20:20:46.9950000-07:00|10FF0001|Sesuga Sapisuga|0001A413|127791|127791|10000|10000|0||92.07|115.04|0.00|3.07|1300|0|0|01|02000A2D|0|42700000|| +26|2023-10-06T20:20:46.9950000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|77265| +37|2023-10-06T20:20:46.9950000-07:00|10FF0006|Wowobora Gogobora|0001A413|77265|77265|10000|10000|0||94.10|115.68|0.00|-1.89|2800|0|0|01|0A2C|0|42700000|| +26|2023-10-06T20:20:46.9950000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|77265|77265| +39|2023-10-06T20:20:47.0400000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||88.73|113.97|0.00|-0.85| +39|2023-10-06T20:20:47.0400000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||93.86|115.31|0.00|-1.48| +261|2023-10-06T20:20:46.6340000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:20:46.6340000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T20:20:47.6200000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||98.80|114.21|0.00|1.23| +261|2023-10-06T20:20:47.4700000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:20:49.0880000-07:00|10FF0003|Gegehi Gehi|20FDE00|item_fde00|10FF0003|Gegehi Gehi|6400000E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69610|69610|10000|10000|||100.79|116.17|0.00|3.14|69610|69610|10000|10000|||100.79|116.17|0.00|3.14|0001A414|0|1| +39|2023-10-06T20:20:49.1320000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||99.53|114.31|0.00|-3.12| +39|2023-10-06T20:20:49.1760000-07:00|10FF0003|Gegehi Gehi|69610|69610|10000|10000|||100.79|116.17|0.00|3.14| +39|2023-10-06T20:20:49.3540000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.75|112.62|0.00|3.10| +39|2023-10-06T20:20:49.3540000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.24|115.16|0.00|3.11| +39|2023-10-06T20:20:49.4440000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|-2.99| +39|2023-10-06T20:20:49.4890000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||94.10|115.68|0.00|2.16| +39|2023-10-06T20:20:49.8440000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||95.11|113.82|0.00|-1.64| +37|2023-10-06T20:20:49.9780000-07:00|10FF0003|Gegehi Gehi|0001A414|69610|73085|10000|10000|0||100.79|116.17|0.00|3.14|2300|0|0|01|30|2964|44E10000|| +26|2023-10-06T20:20:49.9780000-07:00|30|Well Fed|1800.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|2964|69610|69610| +38|2023-10-06T20:20:49.9780000-07:00|10FF0003|Gegehi Gehi|005A5A23|69610|73085|10000|10000|0||100.79|116.17|0.00|3.14|0|0|0|||| +39|2023-10-06T20:20:50.0220000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||88.73|113.97|0.00|-0.85| +39|2023-10-06T20:20:50.0220000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||93.86|115.31|0.00|-1.48| +21|2023-10-06T20:20:50.2880000-07:00|40022577|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|15400000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|69610|73085|10000|10000|||100.79|116.17|0.00|3.14|77430|77430|10000|10000|||98.80|114.21|0.00|1.23|0001A415|0|1| +39|2023-10-06T20:20:50.6460000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||98.80|114.21|0.00|0.95| +37|2023-10-06T20:20:51.0920000-07:00|10FF0003|Gegehi Gehi|0001A415|73085||||||100.79|116.17|0.00|3.14| +39|2023-10-06T20:20:52.1620000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||99.53|114.31|0.00|-3.12| +39|2023-10-06T20:20:52.2070000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||100.79|116.17|0.00|3.14| +39|2023-10-06T20:20:52.3850000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.87|110.98|0.00|3.07| +39|2023-10-06T20:20:52.3850000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.27|115.07|0.00|2.99| +39|2023-10-06T20:20:52.4730000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|-2.99| +39|2023-10-06T20:20:52.5180000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||94.10|115.68|0.00|2.23| +39|2023-10-06T20:20:52.8740000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||98.44|113.85|0.00|1.32| +39|2023-10-06T20:20:53.0520000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.71|114.02|0.00|1.47| +39|2023-10-06T20:20:53.0520000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||100.57|114.58|0.00|-3.09| +39|2023-10-06T20:20:53.6320000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||99.29|107.53|0.00|3.04| +39|2023-10-06T20:20:55.1500000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||99.53|114.31|0.00|-3.12| +39|2023-10-06T20:20:55.1940000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||100.79|116.17|0.00|3.14| +39|2023-10-06T20:20:55.3730000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.02|106.21|0.00|3.10| +39|2023-10-06T20:20:55.3730000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.27|115.07|0.00|2.99| +39|2023-10-06T20:20:55.4620000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|-2.99| +39|2023-10-06T20:20:55.5060000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||94.10|115.68|0.00|2.58| +39|2023-10-06T20:20:55.8620000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||98.80|113.85|0.00|1.56| +39|2023-10-06T20:20:56.0410000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.93|106.28|0.00|2.99| +39|2023-10-06T20:20:56.0410000-07:00|10FF0008|Kokosaze Lulusaze|75636|75636|10000|10000|||100.57|114.58|0.00|-3.09| +39|2023-10-06T20:20:56.6200000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||99.81|100.91|0.00|3.07| +38|2023-10-06T20:20:57.8250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.93|106.28|0.00|2.99|0|0|0||||||||||||| +38|2023-10-06T20:20:57.8250000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|86653|10000|10000|0||99.56|114.31|0.00|-3.12|0|0|0| +38|2023-10-06T20:20:57.8250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75636|75636|10000|10000|0||100.57|114.58|0.00|-3.09|0|0|0|||| +38|2023-10-06T20:20:57.8250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|77265|10000|10000|0||94.10|115.68|0.00|2.64|0|0|0|||| +26|2023-10-06T20:20:57.8250000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|77265|77265| +38|2023-10-06T20:20:57.8250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||100.03|103.82|0.00|3.08|0|0|0|||||||||| +26|2023-10-06T20:20:57.8250000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|77265| +38|2023-10-06T20:20:57.8250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|0||100.27|115.07|0.00|2.99|0|0|0|||||||||| +38|2023-10-06T20:20:57.8250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|10000|10000|0||100.79|116.17|0.00|3.14|0|0|0|||| +38|2023-10-06T20:20:57.8250000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|-2.99|0|0|0||||||||||||| +21|2023-10-06T20:20:58.0890000-07:00|10FF0008|Kokosaze Lulusaze|20FDE00|item_fde00|10FF0008|Kokosaze Lulusaze|6400000E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75636|75636|10000|10000|||100.57|114.58|0.00|-3.09|75636|75636|10000|10000|||100.57|114.58|0.00|-3.09|0001A416|0|1| +39|2023-10-06T20:20:58.1330000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||101.26|112.90|0.00|-3.12| +39|2023-10-06T20:20:58.1780000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||100.79|116.17|0.00|3.14| +39|2023-10-06T20:20:58.3560000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.92|103.71|0.00|3.09| +39|2023-10-06T20:20:58.3560000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.27|115.07|0.00|2.99| +39|2023-10-06T20:20:58.4460000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|-2.99| +261|2023-10-06T20:20:58.0360000-07:00|Change|10FF0002||||||||||||| +39|2023-10-06T20:20:58.4900000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||96.76|114.08|0.00|2.12| +39|2023-10-06T20:20:58.8480000-07:00|4002257B|Carbuncle|72376|72376|10000|10000|||98.80|113.85|0.00|1.56| +38|2023-10-06T20:20:58.8480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.93|106.28|0.00|2.99|0|0|0||||||||||||| +38|2023-10-06T20:20:58.8480000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|86653|10000|10000|0||102.54|109.35|0.00|-3.12|0|0|0| +38|2023-10-06T20:20:58.8480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75636|75636|10000|10000|0||100.57|114.58|0.00|-3.09|0|0|0|||| +38|2023-10-06T20:20:58.8480000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|77265|10000|10000|0||97.85|112.41|0.00|2.43|0|0|0|||| +38|2023-10-06T20:20:58.8480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.95|103.06|0.00|3.10|0|0|0|||||||||| +38|2023-10-06T20:20:58.8480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|0||100.27|115.07|0.00|2.99|0|0|0|||||||||| +38|2023-10-06T20:20:58.8480000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|10000|10000|0||100.79|116.17|0.00|3.14|0|0|0|||| +38|2023-10-06T20:20:58.8480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|-2.99|0|0|0||||||||||||| +38|2023-10-06T20:20:58.8930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.93|106.28|0.00|2.99|0|0|0||||||||||||| +38|2023-10-06T20:20:58.8930000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|86653|10000|10000|0||102.54|109.35|0.00|-3.12|0|0|0| +38|2023-10-06T20:20:58.8930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75636|75636|10000|10000|0||100.57|114.58|0.00|-3.09|0|0|0|||| +38|2023-10-06T20:20:58.8930000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|77265|10000|10000|0||97.85|112.41|0.00|2.43|0|0|0|||| +38|2023-10-06T20:20:58.8930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.95|103.06|0.00|3.10|0|0|0|||||||||| +38|2023-10-06T20:20:58.8930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|0||100.27|115.07|0.00|2.99|0|0|0|||||||||| +38|2023-10-06T20:20:58.8930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|10000|10000|0||100.79|116.17|0.00|3.14|0|0|0|||| +38|2023-10-06T20:20:58.8930000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|-2.99|0|0|0||||||||||||| +37|2023-10-06T20:20:58.9790000-07:00|10FF0008|Kokosaze Lulusaze|0001A416|75636|79111|10000|10000|0||100.57|114.58|0.00|-3.09|1B00|0|0|01|01000030|2964|45160000|| +26|2023-10-06T20:20:58.9790000-07:00|30|Well Fed|2400.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|2964|75636|75636| +38|2023-10-06T20:20:58.9790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75636|79111|10000|10000|0||100.57|114.58|0.00|-3.09|0|0|0||||||| +38|2023-10-06T20:20:58.9790000-07:00|4002257B|Carbuncle|005A5A00|72376|75851|10000|10000|0||98.80|113.85|0.00|1.56|0|0|0|||| +26|2023-10-06T20:20:58.9790000-07:00|30|Well Fed|2399.96|10FF0008|Kokosaze Lulusaze|4002257B|Carbuncle|2964|72376|75636| +39|2023-10-06T20:20:59.0230000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.93|106.28|0.00|2.99| +39|2023-10-06T20:20:59.0230000-07:00|10FF0008|Kokosaze Lulusaze|79111|75636|10000|10000|||100.57|114.58|0.00|-3.09| +38|2023-10-06T20:20:59.1580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.93|106.28|0.00|2.99|0|0|0||||||||||||| +38|2023-10-06T20:20:59.1580000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|86653|10000|10000|0||102.44|108.13|0.00|-3.12|0|0|0| +38|2023-10-06T20:20:59.1580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||100.57|114.58|0.00|-3.09|0|0|0||||||| +38|2023-10-06T20:20:59.1580000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|77265|10000|10000|0||98.39|111.03|0.00|2.67|0|0|0|||| +38|2023-10-06T20:20:59.1580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.95|103.06|0.00|3.10|0|0|0|||||||||| +38|2023-10-06T20:20:59.1580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|0||100.27|115.07|0.00|2.99|0|0|0|||||||||| +38|2023-10-06T20:20:59.1580000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|10000|10000|0||100.79|116.17|0.00|3.14|0|0|0|||| +38|2023-10-06T20:20:59.1580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|-2.99|0|0|0||||||||||||| +38|2023-10-06T20:20:59.4260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.93|106.28|0.00|2.99|0|0|0||||||||||||| +38|2023-10-06T20:20:59.4270000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|86653|10000|10000|0||102.38|106.06|0.00|-3.12|0|0|0| +38|2023-10-06T20:20:59.4270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||100.57|114.58|0.00|-3.09|0|0|0||||||| +38|2023-10-06T20:20:59.4270000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|77265|10000|10000|0||99.10|109.06|0.00|2.75|0|0|0|||| +38|2023-10-06T20:20:59.4270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.95|103.06|0.00|3.10|0|0|0|||||||||| +38|2023-10-06T20:20:59.4270000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|0||100.27|115.07|0.00|2.99|0|0|0|||||||||| +38|2023-10-06T20:20:59.4270000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|10000|10000|0||100.79|116.17|0.00|3.14|0|0|0|||| +38|2023-10-06T20:20:59.4270000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|-2.99|0|0|0||||||||||||| +39|2023-10-06T20:20:59.6470000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||99.81|100.91|0.00|3.07| +38|2023-10-06T20:21:00.2710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.93|106.28|0.00|2.99|0|0|0||||||||||||| +38|2023-10-06T20:21:00.2710000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|86653|10000|10000|0||100.85|102.73|0.00|-3.12|0|0|0| +38|2023-10-06T20:21:00.2710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||100.57|114.58|0.00|-3.09|0|0|0||||||| +38|2023-10-06T20:21:00.2710000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|77265|10000|10000|0||99.75|106.68|0.00|2.83|0|0|0|||| +26|2023-10-06T20:21:00.2710000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|77265|77265| +38|2023-10-06T20:21:00.2710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.95|103.06|0.00|3.10|0|0|0|||||||||| +26|2023-10-06T20:21:00.2710000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|77265| +38|2023-10-06T20:21:00.2710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|0||100.30|114.26|0.00|3.09|0|0|0|||||||||| +38|2023-10-06T20:21:00.2710000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|10000|10000|0||100.79|116.17|0.00|3.14|0|0|0|||| +38|2023-10-06T20:21:00.2710000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|2.82|0|0|0||||||||||||| +00|2023-10-06T20:21:00.0000000-07:00|0039||Ready check complete. Ready: 8/8 Not Ready: 0/8| +38|2023-10-06T20:21:00.8950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.93|106.28|0.00|2.99|0|0|0||||||||||||| +38|2023-10-06T20:21:00.8950000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|86653|10000|10000|0||100.37|102.47|0.00|-2.56|0|0|0| +38|2023-10-06T20:21:00.8950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||100.57|114.58|0.00|-3.09|0|0|0||||||| +38|2023-10-06T20:21:00.8950000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|77265|10000|10000|0||99.75|106.68|0.00|2.83|0|0|0|||| +38|2023-10-06T20:21:00.8950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.95|103.06|0.00|3.10|0|0|0|||||||||| +38|2023-10-06T20:21:00.8950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|0||100.32|112.32|0.00|3.12|0|0|0|||||||||| +38|2023-10-06T20:21:00.8950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|10000|10000|0||100.79|116.17|0.00|3.14|0|0|0|||| +38|2023-10-06T20:21:00.8950000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|2.68|0|0|0||||||||||||| +39|2023-10-06T20:21:01.1610000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||100.13|102.05|0.00|-2.06| +39|2023-10-06T20:21:01.2060000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||100.79|116.17|0.00|3.14| +39|2023-10-06T20:21:01.3830000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.95|103.06|0.00|3.10| +39|2023-10-06T20:21:01.3830000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.30|111.77|0.00|-3.14| +39|2023-10-06T20:21:01.4730000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|2.68| +39|2023-10-06T20:21:01.5170000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||99.75|106.68|0.00|2.83| +39|2023-10-06T20:21:01.8720000-07:00|4002257B|Carbuncle|75851|75851|10000|10000|||98.80|113.85|0.00|1.56| +39|2023-10-06T20:21:02.0500000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.93|106.28|0.00|2.99| +39|2023-10-06T20:21:02.0500000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||100.57|114.58|0.00|-3.09| +21|2023-10-06T20:21:02.5400000-07:00|10FF0005|Wuwuchu Wuchu|5F43|Soulsow|10FF0005|Wuwuchu Wuchu|F|A228000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||89.28|114.52|0.00|2.34|90055|90055|10000|10000|||89.28|114.52|0.00|2.34|0001A417|0|1| +38|2023-10-06T20:21:02.5400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|2.34|0|0|0||||||||||||| +26|2023-10-06T20:21:02.5400000-07:00|A22|Soulsow|9999.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:21:02.6290000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||99.81|100.91|0.00|3.07| +38|2023-10-06T20:21:02.9400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|2.34|0|0|0||||||||||||| +38|2023-10-06T20:21:03.1180000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.28|114.52|0.00|2.34|0|0|0||||||||||||| +39|2023-10-06T20:21:04.1400000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||100.08|101.98|0.00|-1.97| +39|2023-10-06T20:21:04.1840000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||100.79|116.11|0.00|-3.13| +21|2023-10-06T20:21:04.3190000-07:00|10FF0005|Wuwuchu Wuchu|20FDE00|item_fde00|10FF0005|Wuwuchu Wuchu|6400010E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||89.28|114.52|0.00|2.34|90055|90055|10000|10000|||89.28|114.52|0.00|2.34|0001A418|0|1| +39|2023-10-06T20:21:04.3630000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.95|103.06|0.00|3.10| +39|2023-10-06T20:21:04.3630000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.27|111.50|0.00|-3.14| +39|2023-10-06T20:21:04.4520000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.28|114.52|0.00|2.34| +39|2023-10-06T20:21:04.4960000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||99.75|106.68|0.00|2.83| +39|2023-10-06T20:21:04.8530000-07:00|4002257B|Carbuncle|75851|75851|10000|10000|||98.80|113.85|0.00|1.56| +39|2023-10-06T20:21:05.0310000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.93|106.28|0.00|2.99| +39|2023-10-06T20:21:05.0310000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||100.57|114.58|0.00|-3.09| +37|2023-10-06T20:21:05.2100000-07:00|10FF0005|Wuwuchu Wuchu|0001A418|90055|90055|10000|10000|0||89.51|114.55|-0.02|2.35|2700|0|0|01|03000030|2964|4543D000|| +26|2023-10-06T20:21:05.2100000-07:00|30|Well Fed|3133.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|2964|90055|90055| +38|2023-10-06T20:21:05.2100000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.51|114.55|-0.02|2.35|0|0|0||||||||||||| +39|2023-10-06T20:21:05.6100000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||99.96|102.01|0.00|2.14| +261|2023-10-06T20:21:05.6090000-07:00|Change|10FF0005||||||||||| +38|2023-10-06T20:21:06.5440000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|77265|10000|10000|0||99.75|106.68|0.00|2.83|0|0|0||||||| +26|2023-10-06T20:21:06.5440000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|77265|77265| +26|2023-10-06T20:21:06.5440000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|77265|77265| +21|2023-10-06T20:21:06.5440000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77265|77265|10000|10000|||99.75|106.68|0.00|2.83|77265|77265|10000|10000|||99.75|106.68|0.00|2.83|0001A419|0|1| +39|2023-10-06T20:21:07.1660000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||100.08|101.98|0.00|-1.97| +39|2023-10-06T20:21:07.2100000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||99.75|106.25|0.00|-3.11| +39|2023-10-06T20:21:07.3880000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.95|103.06|0.00|3.10| +39|2023-10-06T20:21:07.3880000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.27|111.50|0.00|-3.14| +39|2023-10-06T20:21:07.4770000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.67|112.44|0.00|-3.01| +39|2023-10-06T20:21:07.5220000-07:00|10FF0006|Wowobora Gogobora|77265|77265|10000|10000|||99.75|106.68|0.00|2.83| +39|2023-10-06T20:21:07.8330000-07:00|4002257B|Carbuncle|75851|75851|10000|10000|||98.80|113.85|0.00|1.56| +39|2023-10-06T20:21:08.0540000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.93|106.28|0.00|2.99| +39|2023-10-06T20:21:08.0540000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||100.57|114.58|0.00|-3.09| +39|2023-10-06T20:21:08.6340000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||99.96|102.01|0.00|2.14| +21|2023-10-06T20:21:09.4800000-07:00|10FF0006|Wowobora Gogobora|20FDE04|item_fde04|10FF0006|Wowobora Gogobora|6800000E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77265|77265|10000|10000|||99.75|106.68|0.00|2.83|77265|77265|10000|10000|||99.75|106.68|0.00|2.83|0001A41A|0|1| +39|2023-10-06T20:21:10.1490000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||100.08|101.98|0.00|-1.97| +39|2023-10-06T20:21:10.1940000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||99.75|106.25|0.00|-3.11| +37|2023-10-06T20:21:10.3730000-07:00|10FF0006|Wowobora Gogobora|0001A41A|77265|80739|10000|10000|0||99.75|106.68|0.00|2.83|2800|0|0|01|02000030|2968|44E10000|| +26|2023-10-06T20:21:10.3730000-07:00|30|Well Fed|1800.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|2968|77265|77265| +39|2023-10-06T20:21:10.3730000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.95|103.06|0.00|3.10| +39|2023-10-06T20:21:10.3730000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.19|106.77|0.00|-3.10| +38|2023-10-06T20:21:10.3730000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77265|80739|10000|10000|0||99.75|106.68|0.00|2.83|0|0|0|||||||||| +26|2023-10-06T20:21:10.3730000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|77265|77265| +39|2023-10-06T20:21:10.4610000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.67|112.44|0.00|-2.99| +39|2023-10-06T20:21:10.5050000-07:00|10FF0006|Wowobora Gogobora|80739|80739|10000|10000|||99.75|106.68|0.00|2.83| +39|2023-10-06T20:21:10.8610000-07:00|4002257B|Carbuncle|75851|75851|10000|10000|||98.37|109.77|0.00|-2.99| +39|2023-10-06T20:21:11.0390000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.94|105.86|0.00|3.01| +39|2023-10-06T20:21:11.0390000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||100.18|108.75|0.00|2.58| +00|2023-10-06T20:21:10.0000000-07:00|0038||end| +00|2023-10-06T20:21:10.0000000-07:00|0039||Battle commencing in 10 seconds!| +261|2023-10-06T20:21:10.9110000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:21:11.6190000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||99.96|102.01|0.00|2.14| +39|2023-10-06T20:21:13.1330000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||100.08|101.98|0.00|-1.97| +39|2023-10-06T20:21:13.1770000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||99.75|106.25|0.00|-3.11| +22|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|200004|14330000|A30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|0001A41B|0|8| +22|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|C930000|3C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|73085|73085|10000|10000|||99.75|106.25|0.00|-3.11|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|0001A41B|1|8| +22|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|C6F0000|C90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|10000|10000|||100.18|106.89|0.00|3.14|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|0001A41B|2|8| +22|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|4|CB40000|A60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|79111|79111|10000|10000|||100.18|108.75|0.00|2.58|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|0001A41B|3|8| +22|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|C920000|390E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.99|103.23|0.00|-3.10|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|0001A41B|4|8| +22|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|CD20000|60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.95|103.06|0.00|3.10|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|0001A41B|5|8| +22|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|C720000|D30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|86653|86653|10000|10000|||100.08|101.98|0.00|-1.97|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|0001A41B|6|8| +22|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|C500000|660E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||97.67|112.44|0.00|3.11|80739|80739|10000|10000|||99.75|106.68|0.00|2.83|0001A41B|7|8| +38|2023-10-06T20:21:13.3120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.99|103.23|0.00|-3.10|0|0|0||||||||||||| +26|2023-10-06T20:21:13.3120000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:21:12.8900000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:21:13.3120000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|86653|10000|10000|11||100.08|101.98|0.00|-1.97|0|0|0|||| +26|2023-10-06T20:21:13.3120000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|86653|80739| +38|2023-10-06T20:21:13.3120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|13||100.18|108.75|0.00|2.58|0|0|0|||||||||| +26|2023-10-06T20:21:13.3120000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:21:13.3120000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9100|10000|20||99.75|106.68|0.00|2.83|0|0|0||||||||||||| +26|2023-10-06T20:21:13.3120000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:21:13.3120000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:21:13.3120000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:21:13.3120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||99.95|103.06|0.00|3.10|0|0|0||||||||||||| +26|2023-10-06T20:21:13.3120000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:21:13.3120000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:21:13.3120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|12||100.18|106.89|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T20:21:13.3120000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:21:13.3120000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|10000|10000|14||99.75|106.25|0.00|-3.11|0|0|0||||||| +26|2023-10-06T20:21:13.3120000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:21:13.3120000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||97.67|112.44|0.00|3.11|0|0|0|||||||||||||||| +26|2023-10-06T20:21:13.3120000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:21:13.3550000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.95|103.06|0.00|3.10| +39|2023-10-06T20:21:13.3550000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.18|106.89|0.00|3.14| +39|2023-10-06T20:21:13.4440000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.67|112.44|0.00|3.11| +39|2023-10-06T20:21:13.4880000-07:00|10FF0006|Wowobora Gogobora|80739|80739|9700|10000|||99.75|106.68|0.00|2.83| +39|2023-10-06T20:21:13.8430000-07:00|4002257B|Carbuncle|75851|75851|10000|10000|||98.28|109.18|0.00|-2.98| +39|2023-10-06T20:21:14.0220000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.99|103.23|0.00|-3.10| +39|2023-10-06T20:21:14.0220000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||100.18|108.75|0.00|2.58| +37|2023-10-06T20:21:14.2430000-07:00|10FF0006|Wowobora Gogobora|0001A41B|80739|80739|9700|10000|20||99.75|106.68|0.00|2.83|2800|0|0|01|03000A31|0|41E8E350|| +37|2023-10-06T20:21:14.3770000-07:00|10FF0003|Gegehi Gehi|0001A41B|73085|73085|10000|10000|14||99.75|106.25|0.00|-3.11|2301|0|0|01|01000A31|0|41E7D2ED|| +37|2023-10-06T20:21:14.5100000-07:00|10FF0004|Buhojaqe Zijaqe|0001A41B|80739|80739|10000|10000|12||100.18|106.89|0.00|3.14|1C02|0|0|01|03000A31|0|41E6C28A|| +37|2023-10-06T20:21:14.6430000-07:00|10FF0008|Kokosaze Lulusaze|0001A41B|79111|79111|10000|10000|13||100.18|108.75|0.00|2.58|1B03|0|0|01|02000A31|0|41E5B227|| +39|2023-10-06T20:21:14.6430000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||100.05|100.14|0.00|3.08| +37|2023-10-06T20:21:14.7770000-07:00|10FF0007|Kehabiqo Febiqo|0001A41B|128564|128564|10000|10000|8||99.99|103.23|0.00|-3.10|1504|0|0|01|01000A31|0|41E49FB8|| +37|2023-10-06T20:21:14.9100000-07:00|10FF0001|Sesuga Sapisuga|0001A41B|127791|127791|10000|10000|8||99.95|103.06|0.00|3.10|1305|0|0|01|03000A31|0|41E38F55|| +37|2023-10-06T20:21:15.0440000-07:00|10FF0002|Suchichi Suchi|0001A41B|86653|86653|10000|10000|11||100.08|101.98|0.00|-1.97|1606|0|0|01|0A31|0|41E27EF2|| +37|2023-10-06T20:21:15.1770000-07:00|10FF0005|Wuwuchu Wuchu|0001A41B|90055|90055|10000|10000|11||97.67|112.44|0.00|3.11|2707|0|0|01|04000A31|0|41E16C83|| +261|2023-10-06T20:21:14.8190000-07:00|Change|10FF0006||||||| +39|2023-10-06T20:21:16.1580000-07:00|10FF0002|Suchichi Suchi|86653|86653|10000|10000|||100.08|101.98|0.00|-1.97| +00|2023-10-06T20:21:15.0000000-07:00|0039||Battle commencing in 5 seconds!| +39|2023-10-06T20:21:16.2020000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||99.75|106.25|0.00|-3.11| +39|2023-10-06T20:21:16.3800000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.95|103.06|0.00|3.10| +39|2023-10-06T20:21:16.3810000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.19|106.74|0.00|3.12| +39|2023-10-06T20:21:16.4690000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.84|111.10|0.00|3.09| +39|2023-10-06T20:21:16.5130000-07:00|10FF0006|Wowobora Gogobora|80739|80739|10000|10000|||99.75|106.68|0.00|2.83| +39|2023-10-06T20:21:16.8670000-07:00|4002257B|Carbuncle|75851|75851|10000|10000|||98.28|109.18|0.00|-2.98| +20|2023-10-06T20:21:16.9570000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|4.860|99.75|106.25|0.00|-3.11| +261|2023-10-06T20:21:16.5260000-07:00|Change|10FF0003||||||||||||||||||| +21|2023-10-06T20:21:17.0020000-07:00|10FF0002|Suchichi Suchi|20FDE00|item_fde00|10FF0002|Suchichi Suchi|6400000E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|86653|86653|10000|10000|||100.08|101.98|0.00|-1.97|86653|86653|10000|10000|||100.08|101.98|0.00|-1.97|0001A41C|0|1| +39|2023-10-06T20:21:17.0460000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.99|103.23|0.00|-3.10| +39|2023-10-06T20:21:17.0460000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||100.18|108.75|0.00|2.58| +39|2023-10-06T20:21:17.6250000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||100.05|100.14|0.00|3.08| +37|2023-10-06T20:21:17.8910000-07:00|10FF0002|Suchichi Suchi|0001A41C|86653|90128|10000|10000|11||100.08|101.98|0.00|-1.97|1600|0|0|01|01000030|2964|44E10000|| +26|2023-10-06T20:21:17.8910000-07:00|30|Well Fed|1800.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|2964|86653|86653| +38|2023-10-06T20:21:17.8910000-07:00|10FF0002|Suchichi Suchi|005A5A16|86653|90128|10000|10000|11||100.08|101.98|0.00|-1.97|0|0|0||||||| +261|2023-10-06T20:21:17.6800000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:21:19.0920000-07:00|40022577|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|200004|215C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|86653|90128|10000|10000|||100.08|101.98|0.00|-1.97|77430|77430|10000|10000|||100.05|100.14|0.00|1.85|0001A41D|0|1| +39|2023-10-06T20:21:19.1370000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.08|101.98|0.00|-1.97| +39|2023-10-06T20:21:19.1830000-07:00|10FF0003|Gegehi Gehi|73085|73085|10000|10000|||99.75|106.25|0.00|3.13| +39|2023-10-06T20:21:19.3610000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.96|102.91|0.00|3.07| +39|2023-10-06T20:21:19.3610000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||100.18|105.46|0.00|-2.72| +20|2023-10-06T20:21:19.3610000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.75|106.68|0.00|2.83| +39|2023-10-06T20:21:19.4510000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||98.07|111.25|0.00|-3.13| +39|2023-10-06T20:21:19.4970000-07:00|10FF0006|Wowobora Gogobora|80739|80739|10000|10000|||99.75|106.68|0.00|2.90| +39|2023-10-06T20:21:19.8530000-07:00|4002257B|Carbuncle|75851|75851|10000|10000|||98.28|109.18|0.00|-2.98| +20|2023-10-06T20:21:19.8980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.18|105.46|0.00|-2.72| +20|2023-10-06T20:21:19.9870000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|1.486|100.18|108.75|0.00|2.58| +39|2023-10-06T20:21:20.0320000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.99|103.23|0.00|-3.10| +39|2023-10-06T20:21:20.0320000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||100.18|108.75|0.00|2.58| +261|2023-10-06T20:21:19.7240000-07:00|Change|10FF0008||||||||||||||||||||| +261|2023-10-06T20:21:19.7240000-07:00|Change|10FF0006||||||||||||||||| +21|2023-10-06T20:21:20.2980000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|58A30000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||99.75|106.68|0.00|3.13|0001A41E|0|1| +260|2023-10-06T20:21:19.9510000-07:00|1|0| +21|2023-10-06T20:21:20.5210000-07:00|10FF0005|Wuwuchu Wuchu|5F44|Harvest Moon|40022550|Zeromus|750003|4C5B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.07|111.24|0.00|-3.13|0001A41F|0|1| +38|2023-10-06T20:21:20.5210000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||98.07|111.24|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T20:21:20.5210000-07:00|A22|Soulsow|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:21:20.6080000-07:00|40022577|Ruby Carbuncle|77430|77430|10000|10000|||100.05|100.14|0.00|0.01| +21|2023-10-06T20:21:20.8330000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32160000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||100.18|105.46|0.00|-3.13|0001A420|0|1| +24|2023-10-06T20:21:20.9670000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2385|127791|127791|10000|10000|||99.98|102.58|0.00|3.08|10FF0006|Wowobora Gogobora|1|80739|80739|9600|10000|||99.75|106.68|0.00|3.13| +37|2023-10-06T20:21:20.9670000-07:00|40022550|Zeromus|0001A41E|40455849||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:20.9670000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0006|Wowobora Gogobora|750003|238C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9600|10000|||99.75|106.68|0.00|3.13|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A421|0|1| +261|2023-10-06T20:21:20.4560000-07:00|Change|40022550||| +21|2023-10-06T20:21:20.9670000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|754003|3C1A0000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||100.18|108.75|0.00|-3.14|0001A422|0|1| +38|2023-10-06T20:21:20.9700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||99.98|102.58|0.00|3.08|0|0|0||||||||||||| +26|2023-10-06T20:21:20.9700000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +260|2023-10-06T20:21:20.4560000-07:00|1|1| +21|2023-10-06T20:21:21.0130000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|14960000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.99|103.23|0.00|-3.10|0001A423|0|1| +21|2023-10-06T20:21:21.0130000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|A0A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.99|103.23|0.00|-3.10|0001A424|0|1| +261|2023-10-06T20:21:20.5530000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:21:20.5530000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:21:20.5530000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:21:20.5530000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:21:20.5530000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:21:20.5530000-07:00|Change|10FF0008||||||||||||||||| +261|2023-10-06T20:21:20.5530000-07:00|Change|40022577||||||||||| +00|2023-10-06T20:21:20.0000000-07:00|0044|Zeromus|Stand aside, I beseech you.| +00|2023-10-06T20:21:20.0000000-07:00|0039||Engage!| +261|2023-10-06T20:21:20.7810000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:21:21.2790000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|13170000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|40455849|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.00|102.28|0.00|3.14|0001A425|0|1| +21|2023-10-06T20:21:21.2790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6AC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40455849|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.00|102.28|0.00|3.14|0001A426|0|1| +21|2023-10-06T20:21:21.2790000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|462A0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|40455849|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|10000|10000|||99.75|106.25|0.00|3.13|0001A427|0|1| +38|2023-10-06T20:21:21.2790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9700|10000|14||99.75|106.25|0.00|3.13|0|0|0|||||||||| +26|2023-10-06T20:21:21.2790000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +31|2023-10-06T20:21:21.2790000-07:00|10FF0001||||| +21|2023-10-06T20:21:21.4130000-07:00|10FF0002|Suchichi Suchi|4B|True Thrust|40022550|Zeromus|720003|1C900000|1B|4B8000|0|0|0|0|0|0|0|0|0|0|0|0|40455849|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.08|101.98|0.00|-1.97|0001A428|0|1| +21|2023-10-06T20:21:21.4130000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|9FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40455849|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.08|101.98|0.00|-1.97|0001A429|0|1| +37|2023-10-06T20:21:21.5460000-07:00|40022550|Zeromus|0001A423|40450579||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:21.5460000-07:00|40022550|Zeromus|0001A424|40448009||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:21.6360000-07:00|40022550|Zeromus|0001A420|40435187||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:21.2260000-07:00|Change|40022577||||| +37|2023-10-06T20:21:21.6810000-07:00|40022550|Zeromus|0001A41F|40415640||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:21.6810000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.99|103.19|0.00|-3.13|128564|128564|10000|10000|||99.99|103.19|0.00|-3.13|0001A42A|0|1| +38|2023-10-06T20:21:21.6810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.99|103.19|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T20:21:21.6810000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:21:21.7690000-07:00|10FF0006|Wowobora Gogobora|0001A421|71639|80739|9600|10000|0||99.88|103.82|0.00|3.10|2800|0|0|01|03000000|0|0|| +37|2023-10-06T20:21:21.7690000-07:00|40022550|Zeromus|0001A422|40400254||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:21.7690000-07:00|10FF0006|Wowobora Gogobora|005A5A28|71639|80739|9600|10000|0||99.88|103.82|0.00|3.10|0|0|0|||||||||| +26|2023-10-06T20:21:21.7690000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:21:21.7690000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:21:21.8140000-07:00|40022550|Zeromus|0001A426|40398546||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:21.8140000-07:00|10FF0006|Wowobora Gogobora|005A5A28|71639|80739|9600|10000|0||99.88|103.82|0.00|3.10|0|0|0|||||||||| +26|2023-10-06T20:21:21.8140000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:21:21.8140000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9600|10000|||99.88|103.82|0.00|3.10|80739|80739|9600|10000|||99.88|103.82|0.00|3.10|0001A42B|0|1| +261|2023-10-06T20:21:21.4160000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:21:21.9030000-07:00|40022550|Zeromus|0001A425|40393659||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:21.9470000-07:00|40022550|Zeromus|0001A429|40391101||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:21.5080000-07:00|Change|40022550||| +261|2023-10-06T20:21:21.5080000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T20:21:21.7020000-07:00|Change|40022577||||||||| +37|2023-10-06T20:21:22.0360000-07:00|40022550|Zeromus|0001A427|40373139||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:22.0810000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|356003|6C7F0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|40391101|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9700|10000|||99.75|106.25|0.00|3.13|0001A42C|0|1| +38|2023-10-06T20:21:22.0810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9400|10000|14||99.75|106.25|0.00|3.13|0|0|0||||||| +30|2023-10-06T20:21:22.0810000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:21:22.1690000-07:00|40022550|Zeromus|0001A428|40365827||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:22.1690000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.77|99.93|0.00|-2.59| +21|2023-10-06T20:21:22.1690000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.77|99.93|0.00|-2.59|90128|90128|10000|10000|||99.77|99.93|0.00|-2.59|0001A42D|0|1| +261|2023-10-06T20:21:21.9350000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:21:22.2150000-07:00|10FF0007|Kehabiqo Febiqo|0001A42A|128564|128564|10000|10000|8||99.97|101.39|0.00|-3.13|1500|0|0|01|04000769|0|41F00000|| +39|2023-10-06T20:21:22.2150000-07:00|10FF0003|Gegehi Gehi|73085|73085|9600|10000|||99.75|106.25|0.00|3.13| +38|2023-10-06T20:21:22.2150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.97|101.39|0.00|-3.13|0|0|0|||||||||||||||| +21|2023-10-06T20:21:22.3030000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|40365827|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9600|10000|||100.35|100.53|-0.01|3.11|0001A42E|0|1| +39|2023-10-06T20:21:22.3470000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.00|102.27|0.00|3.08| +39|2023-10-06T20:21:22.3470000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9400|10000|||100.35|100.53|-0.01|3.11| +36|2023-10-06T20:21:22.3480000-07:00|00DC|3| +261|2023-10-06T20:21:21.9350000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:21:22.0490000-07:00|Change|40022577||||||||| +39|2023-10-06T20:21:22.4370000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||96.47|101.62|0.00|2.93| +21|2023-10-06T20:21:22.4370000-07:00|10FF0008|Kokosaze Lulusaze|1D03|Summon Bahamut|40022550|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|40365827|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A42F|0|1| +21|2023-10-06T20:21:22.4370000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40365827|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9400|10000|||100.36|100.40|0.00|-3.13|0001A430|0|1| +38|2023-10-06T20:21:22.4810000-07:00|400225E5||005A5A00|65138|68265|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:21:22.4810000-07:00|400225E5||005A5A00|65138|68265|10000|10000|0||||||0|0|0|||| +39|2023-10-06T20:21:22.5250000-07:00|10FF0006|Wowobora Gogobora|72446|80739|9805|10000|||100.04|101.22|0.00|3.07| +261|2023-10-06T20:21:22.0490000-07:00|Change|4002257B||||||||||| +261|2023-10-06T20:21:22.2360000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:21:22.5710000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|B7B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40365827|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|-0.02|2.93|0001A431|0|1| +21|2023-10-06T20:21:22.7470000-07:00|40022577|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|15080000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|72446|80739|9805|10000|||100.08|100.60|0.00|3.06|77430|77430|10000|10000|||100.05|100.14|0.00|1.57|0001A432|0|1| +37|2023-10-06T20:21:22.7920000-07:00|10FF0002|Suchichi Suchi|0001A42D|90128|90128|10000|10000|11||99.23|99.90|0.00|-2.49|1600|0|0|01|02000748|0|41A00000|| +26|2023-10-06T20:21:22.7920000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:21:22.7930000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|40365827|40478540|10000|10000|||100.00|80.10|0.00|0.00|72446|80739|9805|10000|||100.08|100.60|0.00|3.06|0001A433|0|1| +21|2023-10-06T20:21:22.7930000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40365827|40478540|10000|10000|||100.00|80.10|0.00|0.00|72446|80739|9805|10000|||100.08|100.60|0.00|3.06|0001A434|0|1| +38|2023-10-06T20:21:22.7930000-07:00|10FF0006|Wowobora Gogobora|005A5A28|72446|80739|9405|10000|0||100.08|100.60|0.00|3.06|0|0|0|||||||||| +30|2023-10-06T20:21:22.7930000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +03|2023-10-06T20:21:22.3350000-07:00|400225E5|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|65138|68265|10000|10000|||101.95|110.52|0.00|-3.14| +261|2023-10-06T20:21:22.3350000-07:00|Add|400225E5||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:22.8370000-07:00|40022550|Zeromus|0001A42C|40338052||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:22.4300000-07:00|Change|400225E5||| +37|2023-10-06T20:21:22.9260000-07:00|40022550|Zeromus|0001A42E|40338052|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:21:22.9260000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:21:22.9260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9400|10000|12||100.33|99.85|0.00|3.11|0|0|0||||||||||||||||||| +26|2023-10-06T20:21:22.9260000-07:00|317|Dissipation|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:21:22.9260000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +21|2023-10-06T20:21:22.9260000-07:00|10FF0004|Buhojaqe Zijaqe|E03|Dissipation|10FF0004|Buhojaqe Zijaqe|140E|3170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9400|10000|||100.33|99.85|0.00|3.11|80739|80739|9400|10000|||100.33|99.85|0.00|3.11|0001A435|0|1| +37|2023-10-06T20:21:22.9710000-07:00|40022550|Zeromus|0001A430|40337897||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:22.9710000-07:00|10FF0004|Buhojaqe Zijaqe|0001A430|80739|80739|9400|10000|12||100.33|99.85|0.00|3.11|1C00|0|0|01|04000317|0|C1F00000|| +21|2023-10-06T20:21:22.9710000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|9600|10000|||99.74|105.85|0.00|-3.11|73085|73085|9600|10000|||99.74|105.85|0.00|-3.11|0001A436|0|1| +38|2023-10-06T20:21:22.9710000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9600|10000|14||99.74|105.85|0.00|-3.11|0|0|0|||||||||| +26|2023-10-06T20:21:22.9710000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:21:22.5510000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:21:23.0150000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|710003|24B70000|A000A0E|A1A0000|0|0|0|0|0|0|0|0|0|0|0|0|40337897|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.93|0001A437|0|1| +38|2023-10-06T20:21:23.0150000-07:00|40022550|Zeromus|005A5A00|40337897|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +26|2023-10-06T20:21:23.0150000-07:00|A1A|Death's Design|30.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +39|2023-10-06T20:21:23.0590000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.96|96.88|0.00|-3.14| +39|2023-10-06T20:21:23.0590000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||100.18|108.75|0.00|-3.14| +261|2023-10-06T20:21:22.5510000-07:00|Change|10FF0008||| +37|2023-10-06T20:21:23.1050000-07:00|40022550|Zeromus|0001A431|40334958||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A438|0|8| +22|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|9600|10000|||99.72|105.44|0.00|-3.11|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A438|1|8| +22|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.06|101.30|0.00|3.08|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A438|2|8| +22|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0005|Wuwuchu Wuchu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||96.42|101.64|0.00|2.93|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A438|3|8| +22|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72446|80739|9405|10000|||100.08|100.60|0.00|-3.14|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A438|4|8| +22|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0002|Suchichi Suchi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.60|99.96|0.00|-3.11|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A438|5|8| +22|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9400|10000|||100.33|99.72|0.00|3.09|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A438|6|8| +22|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.96|96.88|0.00|-3.14|79111|79111|9700|10000|||100.18|108.75|0.00|-3.14|0001A438|7|8| +38|2023-10-06T20:21:23.1050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.96|96.88|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T20:21:23.1050000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:21:23.1050000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.60|99.96|0.00|-3.11|0|0|0||||||||||||| +26|2023-10-06T20:21:23.1050000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|90128|79111| +38|2023-10-06T20:21:23.1050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9900|10000|13||100.18|108.75|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T20:21:23.1050000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:21:23.1050000-07:00|10FF0006|Wowobora Gogobora|005A5A28|72446|80739|9405|10000|0||100.08|100.60|0.00|-3.14|0|0|0|||||||||| +26|2023-10-06T20:21:23.1050000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|80739|79111| +38|2023-10-06T20:21:23.1050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.06|101.30|0.00|3.08|0|0|0|||||||||||||||| +26|2023-10-06T20:21:23.1050000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:21:23.1050000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:21:23.1050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9400|10000|12||100.33|99.72|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:21:23.1050000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|80739|79111| +38|2023-10-06T20:21:23.1050000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9600|10000|14||99.72|105.44|0.00|-3.11|0|0|0||||||||||||| +26|2023-10-06T20:21:23.1050000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73085|79111| +38|2023-10-06T20:21:23.1050000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.93|0|0|0|||||||||||||||| +26|2023-10-06T20:21:23.1050000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|90055|79111| +37|2023-10-06T20:21:23.3250000-07:00|40022550|Zeromus|0001A434|40334922||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:22.8980000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:21:23.4590000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|32CF0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|40334922|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.96|94.93|-0.02|-3.14|0001A439|0|1| +261|2023-10-06T20:21:23.0180000-07:00|Change|400225E5||| +261|2023-10-06T20:21:23.0180000-07:00|Change|40022577||||||| +24|2023-10-06T20:21:23.5480000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1517|127791|127791|10000|10000|||100.06|101.30|0.00|3.08|10FF0006|Wowobora Gogobora|0|72446|80739|9405|10000|||100.08|100.60|0.00|-3.14| +37|2023-10-06T20:21:23.5480000-07:00|40022550|Zeromus|0001A433|40334922|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:21:23.5480000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:21:23.5480000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40334922|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.06|101.30|0.00|3.08|0001A43A|0|1| +38|2023-10-06T20:21:23.5480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.06|101.30|0.00|3.08|0|0|0|||||||||||||||| +31|2023-10-06T20:21:23.5480000-07:00|10FF0001||||| +37|2023-10-06T20:21:23.5910000-07:00|10FF0004|Buhojaqe Zijaqe|0001A435|80739|80739|9400|10000|12||100.26|99.75|-0.02|-0.86|1C00|0|0|01|04000317|0|41F00000|| +38|2023-10-06T20:21:23.5920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9400|10000|12||100.26|99.75|-0.02|-0.86|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:21:23.6810000-07:00|10FF0003|Gegehi Gehi|1D89|Swiftcast|10FF0003|Gegehi Gehi|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|9600|10000|||99.69|104.48|0.00|-3.11|73085|73085|9600|10000|||99.69|104.48|0.00|-3.11|0001A43B|0|1| +38|2023-10-06T20:21:23.6810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9600|10000|14||99.69|104.48|0.00|-3.11|0|0|0|||||||||||||||| +26|2023-10-06T20:21:23.6810000-07:00|A7|Swiftcast|10.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:21:23.7250000-07:00|10FF0003|Gegehi Gehi|0001A436|73085|73085|9600|10000|14||99.69|104.48|0.00|-3.11|2300|0|0|02|020004D6|0|41A00000|||||| +38|2023-10-06T20:21:23.7250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9600|10000|14||99.69|104.48|0.00|-3.11|0|0|0|||||||||||||||| +21|2023-10-06T20:21:23.7710000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1EAE0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|40334922|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.06|101.30|0.00|3.08|0001A43C|0|1| +37|2023-10-06T20:21:23.8150000-07:00|10FF0003|Gegehi Gehi|0001A43B|73085|73085|9600|10000|14||99.69|104.48|0.00|-3.11|2300|0|0|01|040000A7|0|41200000|| +38|2023-10-06T20:21:23.8150000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9600|10000|14||99.69|104.48|0.00|-3.11|0|0|0|||||||||||||||| +37|2023-10-06T20:21:23.9030000-07:00|10FF0008|Kokosaze Lulusaze|0001A438|79111|79111|9900|10000|13||100.18|108.75|0.00|-3.14|1B00|0|0|01|03000A8F|0|41E9F7CC|| +21|2023-10-06T20:21:23.9030000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C724003|2BFA0000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|40334922|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.03|100.14|-0.02|0.70|0001A43D|0|1| +38|2023-10-06T20:21:23.9030000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||100.03|100.14|-0.02|0.70|0|0|0|||||||||||||||| +26|2023-10-06T20:21:23.9030000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:23.9030000-07:00|400225E5|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||101.95|110.52|0.00|-3.14|0|0|0||||||| +26|2023-10-06T20:21:23.9030000-07:00|30|Well Fed|2375.07|10FF0008|Kokosaze Lulusaze|400225E5|Demi-Bahamut|2964|68265|79111| +26|2023-10-06T20:21:23.9030000-07:00|A8F|Searing Light|29.20|10FF0008|Kokosaze Lulusaze|400225E5|Demi-Bahamut|00|68265|79111| +21|2023-10-06T20:21:23.9930000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|16890000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.96|94.93|0.00|3.14|40334922|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A43E|0|1| +37|2023-10-06T20:21:24.0370000-07:00|10FF0003|Gegehi Gehi|0001A438|73085|73085|9600|10000|14||99.69|104.40|0.00|-3.11|2301|0|0|01|03000A8F|0|41E8E55D|| +37|2023-10-06T20:21:24.0810000-07:00|40022550|Zeromus|0001A439|40321915||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:24.0810000-07:00|40022550|Zeromus|0001A43A|40320194||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:24.1710000-07:00|10FF0001|Sesuga Sapisuga|0001A438|127791|127791|10000|10000|8||100.06|101.30|0.00|-3.14|1302|0|0|01|04000A8F|0|41E7D2EE|| +37|2023-10-06T20:21:24.1710000-07:00|40022550|Zeromus|0001A437|40310795|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A1A|0A|41E71CA8|| +21|2023-10-06T20:21:24.2150000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|157D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40310795|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.83|99.87|0.00|-2.80|0001A43F|0|1| +37|2023-10-06T20:21:24.3030000-07:00|10FF0005|Wuwuchu Wuchu|0001A438|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2703|0|0|01|02000A8F|0|41E6C080|| +20|2023-10-06T20:21:24.3040000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.08|100.60|0.00|-3.14| +21|2023-10-06T20:21:24.3940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|A6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40310795|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.96|94.93|0.00|3.14|0001A440|0|1| +261|2023-10-06T20:21:23.9600000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:21:24.4380000-07:00|10FF0006|Wowobora Gogobora|0001A438|72446|80739|9405|10000|0||100.08|100.60|0.00|-3.14|2804|0|0|01|01000A8F|0|41E5B01D|| +37|2023-10-06T20:21:24.5280000-07:00|40022550|Zeromus|0001A43C|40302941||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:24.5280000-07:00|10FF0002|Suchichi Suchi|1CE6|Dragon Sight|10FF0005|Wuwuchu Wuchu|50E|5AE0000|A0F|7768000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|90128|90128|10000|10000|||99.67|99.69|0.00|-2.54|0001A441|0|1| +21|2023-10-06T20:21:24.5280000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|384C0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|40310795|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9600|10000|||99.67|103.52|0.00|-3.11|0001A442|0|1| +38|2023-10-06T20:21:24.5280000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9300|10000|14||99.67|103.52|0.00|-3.11|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:24.5280000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:21:24.5280000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:21:24.0720000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:21:24.5720000-07:00|10FF0002|Suchichi Suchi|0001A438|90128|90128|10000|10000|11||99.54|99.55|0.00|-2.33|1605|0|0|02|03000A8F|0|41E49DAE|||||| +261|2023-10-06T20:21:24.1690000-07:00|Change|4002257B||| +21|2023-10-06T20:21:24.6610000-07:00|10FF0001|Sesuga Sapisuga|20FDD6F|item_fdd6f|10FF0001|Sesuga Sapisuga|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.08|100.99|0.00|3.08|127791|127791|10000|10000|||100.08|100.99|0.00|3.08|0001A443|0|1| +37|2023-10-06T20:21:24.7060000-07:00|10FF0004|Buhojaqe Zijaqe|0001A438|80739|80739|9400|10000|12||100.05|100.60|0.00|-0.73|1C06|0|0|01|06000A8F|0|41E38B3F|| +20|2023-10-06T20:21:24.7060000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.05|100.60|0.00|-0.73| +261|2023-10-06T20:21:24.1690000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:21:24.7500000-07:00|40022550|Zeromus|0001A43F|40297440||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:24.7500000-07:00|10FF0002|Suchichi Suchi|0001A43F|90128|90128|10000|10000|11||99.46|99.46|0.00|-1.71|1600|0|0|01|04000AA0|0|C1F00000|| +37|2023-10-06T20:21:24.7940000-07:00|10FF0007|Kehabiqo Febiqo|0001A43E|122795|128564|10000|10000|0||99.96|94.93|0.00|3.14|1500|0|0|01|01000000|0|0|| +38|2023-10-06T20:21:24.7950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122795|128564|10000|10000|0||99.96|94.93|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:24.7950000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:21:24.8380000-07:00|10FF0007|Kehabiqo Febiqo|0001A438|122795|128564|10000|10000|0||99.96|94.93|0.00|3.14|1507|0|0|01|05000A8F|0|41E27ADC|| +37|2023-10-06T20:21:24.9260000-07:00|40022550|Zeromus|0001A440|40294770||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:24.9710000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|43BC0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|40294770|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||100.06|105.19|0.00|-3.11|0001A444|0|1| +261|2023-10-06T20:21:24.4790000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:21:24.4790000-07:00|Change|40022577||| +39|2023-10-06T20:21:25.1480000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.46|99.44|0.00|-0.11| +37|2023-10-06T20:21:25.1930000-07:00|10FF0005|Wuwuchu Wuchu|0001A441|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2700|0|0|01|050005AE|0|41A00000|| +26|2023-10-06T20:21:25.1930000-07:00|5AE|Left Eye|20.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:21:25.1930000-07:00|10FF0002|Suchichi Suchi|0001A441|90128|90128|10000|10000|11||99.47|99.44|0.00|0.49|1600|0|0|02|04000AA0|0|C1F00000|||||| +26|2023-10-06T20:21:25.1930000-07:00|776|Right Eye|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:21:25.1930000-07:00|10FF0003|Gegehi Gehi|73085|73085|9500|10000|||99.64|101.24|-0.02|3.13| +24|2023-10-06T20:21:25.1930000-07:00|40022550|Zeromus|DoT|0|1906|40294770|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|72446|80739|9405|10000|||100.08|100.60|0.00|-3.14| +38|2023-10-06T20:21:25.1930000-07:00|40022550|Zeromus|005A5A00|40288364|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T20:21:25.2370000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3A1A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|40294770|40478540|10000|10000|||100.00|80.10|0.00|0.00|72446|80739|9405|10000|||100.08|100.60|0.00|-3.14|0001A445|0|1| +37|2023-10-06T20:21:25.3270000-07:00|40022550|Zeromus|0001A442|40273952||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:25.3270000-07:00|10FF0003|Gegehi Gehi|0001A442|73085|73085|9500|10000|14||99.68|101.24|0.00|3.14|2300|0|0|01|050004D2|0|41F00000|| +36|2023-10-06T20:21:25.3270000-07:00|01B8|3| +38|2023-10-06T20:21:25.3270000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9500|10000|14||99.68|101.24|0.00|3.14|0|0|0||||||||||||||||||| +39|2023-10-06T20:21:25.3710000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.08|100.99|0.00|3.08| +39|2023-10-06T20:21:25.3710000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9600|10000|||100.05|100.60|0.00|-3.14| +261|2023-10-06T20:21:24.9500000-07:00|Change|10FF0004||||||| +261|2023-10-06T20:21:24.9500000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:21:25.4600000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||96.42|101.64|0.00|2.98| +39|2023-10-06T20:21:25.5050000-07:00|10FF0006|Wowobora Gogobora|73253|80739|9210|10000|||100.08|100.60|0.00|-3.14| +21|2023-10-06T20:21:25.5050000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40273952|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||100.00|103.54|0.00|-3.12|0001A446|0|1| +21|2023-10-06T20:21:25.5050000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|714003|56F50000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|40273952|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A447|0|1| +37|2023-10-06T20:21:25.5500000-07:00|40022550|Zeromus|0001A43D|40262694||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:25.5500000-07:00|10FF0002|Suchichi Suchi|0001A43D|90128|90128|10000|10000|11||99.89|99.28|0.00|-1.04|1600|0|0|01|04000AA0|0|41F00000|| +37|2023-10-06T20:21:25.5500000-07:00|10FF0001|Sesuga Sapisuga|0001A443|127791|127791|10000|10000|8||100.09|100.66|0.00|3.10|1300|0|0|01|05000031|296B|41F00000|| +26|2023-10-06T20:21:25.5500000-07:00|31|Medicated|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|296B|127791|127791| +38|2023-10-06T20:21:25.5500000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.89|99.28|0.00|-1.04|0|0|0||||||||||||||||||| +38|2023-10-06T20:21:25.5500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.09|100.66|0.00|3.10|0|0|0||||||||||||||||||| +26|2023-10-06T20:21:25.5500000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:21:25.0710000-07:00|Change|400225E5||||||||||| +12|2023-10-06T20:21:25.0710000-07:00|19|3701|385|3962|245|408|390|3701|976|2540|245|408|2182|400|400|0|529|4000174A6D2E55| +261|2023-10-06T20:21:25.0710000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:21:25.5940000-07:00|40022550|Zeromus|0001A444|40245354||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:25.6380000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31820000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40245354|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9600|10000|||100.05|100.60|0.00|-3.14|0001A448|0|1| +21|2023-10-06T20:21:25.6820000-07:00|400225E5|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|752003|1E150000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|40245354|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07|0001A449|0|1| +21|2023-10-06T20:21:25.7730000-07:00|10FF0008|Kokosaze Lulusaze|20FCF50|item_fcf50|10FF0008|Kokosaze Lulusaze|4000000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||100.02|103.04|-0.02|2.64|79111|79111|9600|10000|||100.02|103.04|-0.02|2.64|0001A44A|0|1| +21|2023-10-06T20:21:25.7730000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|167F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40245354|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44B|0|1| +21|2023-10-06T20:21:25.8170000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|77A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40245354|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|3.10|0001A44C|0|1| +31|2023-10-06T20:21:25.8170000-07:00|10FF0001||||| +24|2023-10-06T20:21:25.9060000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|22EF|127791|127791|10000|10000|||100.10|100.39|0.00|3.10|10FF0006|Wowobora Gogobora|1|73253|80739|9210|10000|||100.08|100.60|0.00|-3.14| +37|2023-10-06T20:21:25.9060000-07:00|40022550|Zeromus|0001A445|40230480||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:25.9060000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|2E8D0000|A3E|340000|A0F|A758000|11B|2D8000|0|0|0|0|0|0|0|0|40245354|40478540|10000|10000|||100.00|80.10|0.00|0.00|122795|128564|10000|10000|||99.96|95.36|0.00|0.38|0001A44D|0|1| +38|2023-10-06T20:21:25.9060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122795|128564|10000|10000|0||99.96|95.36|0.00|0.38|0|0|0||||||||||||||||||| +26|2023-10-06T20:21:25.9060000-07:00|A75|Surging Tempest|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:21:25.9060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|3.10|0|0|0||||||||||||||||||| +37|2023-10-06T20:21:26.0390000-07:00|40022550|Zeromus|0001A446|40230300||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:26.0390000-07:00|10FF0007|Kehabiqo Febiqo|124080|128564|10000|10000|||99.96|95.43|0.00|3.14| +39|2023-10-06T20:21:26.0390000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9800|10000|||100.08|102.56|0.00|1.61| +261|2023-10-06T20:21:25.6420000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:21:26.3080000-07:00|40022550|Zeromus|0001A44B|40224541||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:26.3080000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9200|10000|||100.05|100.60|0.00|-3.14|80739|80739|9200|10000|||100.05|100.60|0.00|-3.14|0001A44E|0|1| +38|2023-10-06T20:21:26.3080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9200|10000|12||100.05|100.60|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:21:26.3080000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:21:25.8660000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:21:26.3520000-07:00|40022550|Zeromus|0001A44C|40222627||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:21:26.3520000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0005|Wuwuchu Wuchu|30E|A270000|100000E|A280000|F|B9C8000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44F|0|8| +22|2023-10-06T20:21:26.3520000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0006|Wowobora Gogobora|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|73253|80739|9210|10000|||100.11|100.97|0.00|0.85|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44F|1|8| +22|2023-10-06T20:21:26.3520000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0008|Kokosaze Lulusaze|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9800|10000|||100.08|102.52|0.00|1.65|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44F|2|8| +22|2023-10-06T20:21:26.3520000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0003|Gegehi Gehi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|9500|10000|||100.18|101.24|0.00|-3.13|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44F|3|8| +22|2023-10-06T20:21:26.3520000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0001|Sesuga Sapisuga|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44F|4|8| +22|2023-10-06T20:21:26.3520000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0004|Buhojaqe Zijaqe|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9200|10000|||100.05|100.59|0.00|3.13|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44F|5|8| +22|2023-10-06T20:21:26.3520000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0002|Suchichi Suchi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.05|99.38|0.00|-2.08|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44F|6|8| +22|2023-10-06T20:21:26.3520000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0007|Kehabiqo Febiqo|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|124080|128564|10000|10000|||99.96|95.44|0.00|3.14|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A44F|7|8| +21|2023-10-06T20:21:26.3980000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41712003|49D20000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|40224541|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A450|0|1| +38|2023-10-06T20:21:26.3980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:21:26.3980000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:21:26.3980000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +04|2023-10-06T20:21:25.9800000-07:00|4002257B|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||98.28|109.18|0.00|-2.98| +261|2023-10-06T20:21:25.9800000-07:00|Remove|4002257B| +261|2023-10-06T20:21:25.9800000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:21:26.4410000-07:00|40022550|Zeromus|0001A448|40209953||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:26.4410000-07:00|10FF0004|Buhojaqe Zijaqe|0001A448|80739|80739|9200|10000|12||100.06|100.49|0.00|3.13|1C00|0|0|01|070000A7|0|C1200000|| +37|2023-10-06T20:21:26.4410000-07:00|10FF0004|Buhojaqe Zijaqe|0001A44E|80739|80739|9200|10000|12||100.06|100.49|0.00|3.13|1C00|0|0|01|070000A7|0|41200000|| +21|2023-10-06T20:21:26.4410000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|32BD0000|179D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|40222627|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.03|99.37|0.00|-2.09|0001A451|0|1| +38|2023-10-06T20:21:26.4410000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||100.03|99.37|0.00|-2.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:21:26.4410000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:26.4410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9200|10000|12||100.06|100.49|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:21:26.5310000-07:00|40022550|Zeromus|0001A447|40187692||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:26.5750000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40187692|40478540|10000|10000|||100.00|80.10|0.00|0.00|73253|80739|9210|10000|||100.13|101.18|0.00|0.56|0001A452|0|1| +21|2023-10-06T20:21:26.5750000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40187692|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9200|10000|||100.06|100.35|-0.02|3.13|0001A453|0|1| +37|2023-10-06T20:21:26.6640000-07:00|10FF0008|Kokosaze Lulusaze|0001A44A|79111|79111|9800|10000|13||100.06|102.49|0.00|2.04|1B00|0|0|01|04000031|2940|41F00000|| +26|2023-10-06T20:21:26.6640000-07:00|31|Medicated|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|2940|79111|79111| +38|2023-10-06T20:21:26.6640000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.86|99.40|0.00|-2.84|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:21:26.6640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9800|10000|13||100.06|102.49|0.00|2.04|0|0|0|||||||||||||||| +38|2023-10-06T20:21:26.6640000-07:00|400225E5|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.01|110.25|0.00|-3.07|0|0|0|||||||||| +26|2023-10-06T20:21:26.6640000-07:00|31|Medicated|29.96|10FF0008|Kokosaze Lulusaze|400225E5|Demi-Bahamut|2940|68265|79111| +37|2023-10-06T20:21:26.7080000-07:00|40022550|Zeromus|0001A449|40179991||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:26.7530000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.13|101.28|0.00|0.20| +04|2023-10-06T20:21:26.3620000-07:00|40022577|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||100.05|100.14|0.00|0.03| +261|2023-10-06T20:21:26.3620000-07:00|Remove|40022577| +37|2023-10-06T20:21:26.8870000-07:00|40022550|Zeromus|0001A451|40167002|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:21:26.8870000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:21:26.8870000-07:00|10FF0002|Suchichi Suchi|0001A451|90128|90128|10000|10000|11||99.72|99.42|0.00|-2.57|1600|0|0|01|06000323|0|41F00000|| +38|2023-10-06T20:21:26.8870000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.72|99.42|0.00|-2.57|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:21:26.8870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:21:26.9760000-07:00|40022550|Zeromus|0001A450|40148104||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:26.9760000-07:00|10FF0001|Sesuga Sapisuga|0001A450|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|1300|0|0|02|0600076E|03|41F00000|||||| +37|2023-10-06T20:21:26.9760000-07:00|10FF0005|Wuwuchu Wuchu|0001A44F|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2700|0|0|03|06000A27|0|41A00000|||||||||| +26|2023-10-06T20:21:26.9760000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:21:26.9760000-07:00|B9C|Bloodsown Circle|6.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:21:26.9760000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +38|2023-10-06T20:21:26.9760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|0|0|0||||||||||||||||||||||||| +22|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0002|Suchichi Suchi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A454|0|8| +22|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0004|Buhojaqe Zijaqe|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9200|10000|||100.08|99.92|0.00|3.13|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A454|1|8| +22|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0001|Sesuga Sapisuga|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A454|2|8| +22|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0003|Gegehi Gehi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|9500|10000|||100.18|101.24|0.00|-3.13|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A454|3|8| +22|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0006|Wowobora Gogobora|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73253|80739|9210|10000|||100.14|101.42|0.00|1.36|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A454|4|8| +22|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0008|Kokosaze Lulusaze|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9800|10000|||99.91|102.49|0.00|-2.68|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A454|5|8| +22|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0005|Wuwuchu Wuchu|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A454|6|8| +22|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0007|Kehabiqo Febiqo|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|124080|128564|10000|10000|||99.96|95.45|0.00|3.14|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A454|7|8| +21|2023-10-06T20:21:27.0220000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40148104|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.49|99.47|0.00|-2.14|0001A455|0|1| +21|2023-10-06T20:21:27.0220000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|393D0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|40148104|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9500|10000|||100.18|101.24|0.00|-3.13|0001A456|0|1| +38|2023-10-06T20:21:27.0220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9200|10000|14||100.18|101.24|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:27.0220000-07:00|A7|Swiftcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +00|2023-10-06T20:21:26.0000000-07:00|0044|Zeromus|I wish but to return home.| +261|2023-10-06T20:21:26.5650000-07:00|Change|10FF0003||||||| +37|2023-10-06T20:21:27.1110000-07:00|40022550|Zeromus|0001A452|40148058||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:27.1110000-07:00|40022550|Zeromus|0001A453|40147905||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:27.1110000-07:00|10FF0006|Wowobora Gogobora|0001A44F|73253|80739|9210|10000|0||100.14|101.42|0.00|1.36|2801|0|0|02|03000A27|0|41A00000|||||| +26|2023-10-06T20:21:27.1110000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +26|2023-10-06T20:21:27.1110000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|80739|90055| +20|2023-10-06T20:21:27.1110000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:27.1110000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A457|0|1| +21|2023-10-06T20:21:27.1110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4ECC0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40148104|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9200|10000|||100.08|99.92|0.00|3.13|0001A458|0|1| +21|2023-10-06T20:21:27.1110000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|750003|4D3C0000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|40148104|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A459|0|1| +261|2023-10-06T20:21:26.5650000-07:00|Change|40022550||||||||||||||| +38|2023-10-06T20:21:27.1110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8800|10000|12||100.08|99.92|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:21:27.1110000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:21:27.1110000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:27.1110000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +37|2023-10-06T20:21:27.2430000-07:00|10FF0008|Kokosaze Lulusaze|0001A44F|79111|79111|9800|10000|13||99.84|102.49|0.00|-2.06|1B02|0|0|02|05000A27|0|41A00000|||||| +26|2023-10-06T20:21:27.2430000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +26|2023-10-06T20:21:27.2430000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|79111|90055| +37|2023-10-06T20:21:27.2430000-07:00|10FF0005|Wuwuchu Wuchu|0001A44F|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2702|0|0|01|09000A1B|02|C1F00000|| +38|2023-10-06T20:21:27.2430000-07:00|400225E5|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.01|110.25|0.00|-3.07|0|0|0||||||||||||| +26|2023-10-06T20:21:27.2430000-07:00|A27|Arcane Circle|19.96|10FF0005|Wuwuchu Wuchu|400225E5|Demi-Bahamut|00|68265|90055| +37|2023-10-06T20:21:27.3770000-07:00|10FF0003|Gegehi Gehi|0001A44F|73085|73085|9200|10000|14||100.18|101.24|0.00|-3.13|2303|0|0|02|02000A27|0|41A00000|||||| +26|2023-10-06T20:21:27.3770000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +26|2023-10-06T20:21:27.3770000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|01|73085|90055| +37|2023-10-06T20:21:27.3770000-07:00|10FF0005|Wuwuchu Wuchu|0001A44F|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2703|0|0|01|09000A1B|02|C1F00000|| +21|2023-10-06T20:21:27.4210000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|754003|63EB0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|40147905|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9800|10000|||99.81|102.49|0.00|-1.78|0001A45A|0|1| +261|2023-10-06T20:21:26.9070000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:21:26.9070000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:21:26.9070000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:21:27.0220000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:21:27.5110000-07:00|10FF0001|Sesuga Sapisuga|0001A44F|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|1304|0|0|02|08000A27|0|41A00000|||||| +26|2023-10-06T20:21:27.5110000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +26|2023-10-06T20:21:27.5110000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|127791|90055| +37|2023-10-06T20:21:27.5110000-07:00|10FF0005|Wuwuchu Wuchu|0001A44F|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2704|0|0|01|09000A1B|02|C1F00000|| +37|2023-10-06T20:21:27.5550000-07:00|40022550|Zeromus|0001A44D|40135988||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:27.5550000-07:00|10FF0007|Kehabiqo Febiqo|0001A44D|124080|128564|10000|10000|0||99.96|95.45|0.00|3.14|1500|0|0|01|01000A75|0|41F00000|| +37|2023-10-06T20:21:27.5550000-07:00|40022550|Zeromus|0001A455|40132528||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:21:27.5550000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|0001A45B|0|8| +22|2023-10-06T20:21:27.5550000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73253|80739|9210|10000|||100.14|101.43|0.00|-3.13|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|0001A45B|1|8| +22|2023-10-06T20:21:27.5550000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|0001A45B|2|8| +22|2023-10-06T20:21:27.5550000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||99.78|102.49|0.00|3.13|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|0001A45B|3|8| +22|2023-10-06T20:21:27.5550000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8800|10000|||100.08|99.90|0.00|-3.14|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|0001A45B|4|8| +22|2023-10-06T20:21:27.5550000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0002|Suchichi Suchi|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.47|99.47|0.00|-2.10|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|0001A45B|5|8| +22|2023-10-06T20:21:27.5550000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0005|Wuwuchu Wuchu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|0001A45B|6|8| +22|2023-10-06T20:21:27.5550000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|124080|128564|10000|10000|||99.96|95.45|-0.02|-3.07|73085|73085|9200|10000|||100.18|101.24|0.00|-3.13|0001A45B|7|8| +38|2023-10-06T20:21:27.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124080|128564|10000|10000|0||99.96|95.45|-0.02|-3.07|0|0|0||||||||||||||||||| +37|2023-10-06T20:21:27.6440000-07:00|10FF0002|Suchichi Suchi|0001A454|90128|90128|10000|10000|11||99.47|99.47|0.00|-2.10|1600|0|0|01|07000312|0|41700000|| +26|2023-10-06T20:21:27.6440000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:21:27.6440000-07:00|10FF0004|Buhojaqe Zijaqe|0001A44F|80739|80739|8800|10000|12||100.08|99.90|0.00|-3.14|1C05|0|0|02|07000A27|0|41A00000|||||| +26|2023-10-06T20:21:27.6440000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +26|2023-10-06T20:21:27.6440000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|80739|90055| +37|2023-10-06T20:21:27.6440000-07:00|10FF0005|Wuwuchu Wuchu|0001A44F|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2705|0|0|01|09000A1B|02|C1F00000|| +21|2023-10-06T20:21:27.6880000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|720003|2B1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40132528|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.47|99.47|0.00|-2.10|0001A45C|0|1| +21|2023-10-06T20:21:27.6880000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3BE10000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|40132528|40478540|10000|10000|||100.00|80.10|0.00|0.00|73253|80739|9210|10000|||100.14|101.43|0.00|-3.13|0001A45D|0|1| +21|2023-10-06T20:21:27.6880000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022550|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40132528|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8800|10000|||100.08|99.90|0.00|-3.14|0001A45E|0|1| +37|2023-10-06T20:21:27.7330000-07:00|10FF0001|Sesuga Sapisuga|0001A457|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|1300|0|0|01|0A00004C|0|41A00000|| +26|2023-10-06T20:21:27.7330000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:21:27.7330000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:27.7330000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +38|2023-10-06T20:21:27.7330000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9200|10000|14||100.18|101.24|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:27.7330000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|01|73085|90055| +37|2023-10-06T20:21:27.7770000-07:00|10FF0004|Buhojaqe Zijaqe|0001A454|80739|80739|8800|10000|12||100.08|99.90|0.00|-3.14|1C01|0|0|01|09000312|0|41700000|| +26|2023-10-06T20:21:27.7770000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|80739|90128| +37|2023-10-06T20:21:27.7770000-07:00|40022550|Zeromus|0001A456|40117875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:27.7770000-07:00|10FF0002|Suchichi Suchi|0001A44F|90128|90128|10000|10000|11||99.47|99.47|0.00|3.12|1606|0|0|02|08000A27|0|41A00000|||||| +26|2023-10-06T20:21:27.7770000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +26|2023-10-06T20:21:27.7770000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|90128|90055| +37|2023-10-06T20:21:27.7770000-07:00|10FF0005|Wuwuchu Wuchu|0001A44F|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2706|0|0|01|09000A1B|02|C1F00000|| +21|2023-10-06T20:21:27.7770000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|17FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40117875|40478540|10000|10000|||100.00|80.10|0.00|0.00|124080|128564|10000|10000|||99.96|95.51|0.00|-0.79|0001A45F|0|1| +21|2023-10-06T20:21:27.7770000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|750003|2CA20000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|40117875|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A460|0|1| +38|2023-10-06T20:21:27.7770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:27.7770000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:21:27.7770000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|127791|127791| +26|2023-10-06T20:21:27.7770000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:21:27.8660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:27.8660000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +38|2023-10-06T20:21:27.8660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8800|10000|12||100.08|99.90|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:27.8660000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|80739|90055| +37|2023-10-06T20:21:27.9110000-07:00|10FF0001|Sesuga Sapisuga|0001A454|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|1302|0|0|03|0B000558|04|C1F00000|||||||||| +26|2023-10-06T20:21:27.9110000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|127791|90128| +37|2023-10-06T20:21:27.9110000-07:00|40022550|Zeromus|0001A458|40097703||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:27.9110000-07:00|10FF0007|Kehabiqo Febiqo|0001A44F|124080|128564|10000|10000|0||99.96|95.51|0.00|-0.79|1507|0|0|02|06000A27|0|41A00000|||||| +26|2023-10-06T20:21:27.9110000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +26|2023-10-06T20:21:27.9110000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|128564|90055| +37|2023-10-06T20:21:27.9110000-07:00|10FF0005|Wuwuchu Wuchu|0001A44F|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2707|0|0|01|09000A1B|02|C1F00000|| +38|2023-10-06T20:21:27.9990000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:27.9990000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|03|90055|90055| +38|2023-10-06T20:21:27.9990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|13||99.75|102.37|0.00|-3.07|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:27.9990000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|79111|90055| +37|2023-10-06T20:21:28.0430000-07:00|10FF0003|Gegehi Gehi|0001A454|73085|73085|9200|10000|14||100.18|101.24|0.00|-3.13|2303|0|0|01|04000312|0|41700000|| +26|2023-10-06T20:21:28.0430000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0003|Gegehi Gehi|00|73085|90128| +37|2023-10-06T20:21:28.0430000-07:00|40022550|Zeromus|0001A45A|40072124||||||100.00|80.10|0.00|0.00| +26|2023-10-06T20:21:28.0430000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:21:28.0430000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|D714003|56090000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|40097703|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A461|0|1| +38|2023-10-06T20:21:28.0440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:28.0440000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:21:28.0880000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|C8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40097703|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A462|0|1| +31|2023-10-06T20:21:28.0880000-07:00|10FF0001||||| +39|2023-10-06T20:21:28.1320000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.47|99.47|0.00|3.12| +37|2023-10-06T20:21:28.1770000-07:00|10FF0006|Wowobora Gogobora|0001A454|73253|80739|8810|10000|0||100.14|101.43|0.00|-3.13|2804|0|0|01|05000312|0|41700000|| +26|2023-10-06T20:21:28.1770000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|80739|90128| +37|2023-10-06T20:21:28.1770000-07:00|40022550|Zeromus|0001A459|40052352||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:28.1770000-07:00|10FF0005|Wuwuchu Wuchu|0001A459|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2700|0|0|02|09000A1B|01|41F00000|||||| +39|2023-10-06T20:21:28.1770000-07:00|10FF0003|Gegehi Gehi|73085|73085|9400|10000|||100.18|101.24|0.00|-3.13| +24|2023-10-06T20:21:28.1770000-07:00|40022550|Zeromus|DoT|0|28C4|40072124|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||99.47|99.47|0.00|3.12| +38|2023-10-06T20:21:28.1770000-07:00|40022550|Zeromus|005A5A00|40041916|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T20:21:28.1770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:28.2210000-07:00|10FF0003|Gegehi Gehi|0001A45B|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|2300|0|0|01|060004D7|0|41A00000|| +26|2023-10-06T20:21:28.2210000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:21:27.7480000-07:00|Change|10FF0003||| +37|2023-10-06T20:21:28.3110000-07:00|40022550|Zeromus|0001A45F|40035773||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:28.3110000-07:00|10FF0008|Kokosaze Lulusaze|0001A454|79111|79111|9500|10000|13||99.73|102.05|0.00|-3.07|1B05|0|0|01|06000312|0|41700000|| +26|2023-10-06T20:21:28.3110000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|79111|90128| +38|2023-10-06T20:21:28.3110000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:28.3110000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|04|90055|90055| +36|2023-10-06T20:21:28.3110000-07:00|0294|3| +38|2023-10-06T20:21:28.3110000-07:00|10FF0006|Wowobora Gogobora|005A5A28|73253|80739|8810|10000|0||100.14|101.43|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T20:21:28.3110000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:21:28.3110000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|80739|90055| +38|2023-10-06T20:21:28.3110000-07:00|400225E5|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.01|110.25|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T20:21:28.3110000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|400225E5|Demi-Bahamut|00|68265|90128| +24|2023-10-06T20:21:28.3540000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2241|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|10FF0006|Wowobora Gogobora|1|73253|80739|8810|10000|||100.14|101.43|0.00|-3.13| +37|2023-10-06T20:21:28.3540000-07:00|40022550|Zeromus|0001A45D|40020444||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:28.3540000-07:00|10FF0006|Wowobora Gogobora|0001A45B|73253|80739|8810|10000|0||100.14|101.43|0.00|-3.13|2801|0|0|01|04000511|0|41A00000|| +26|2023-10-06T20:21:28.3540000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|80739|73085| +39|2023-10-06T20:21:28.3550000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14| +39|2023-10-06T20:21:28.3550000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9000|10000|||100.08|99.90|0.00|-3.14| +21|2023-10-06T20:21:28.3550000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|26CD0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|40041916|40478540|10000|10000|||100.00|80.10|0.00|0.00|124080|128564|10000|10000|||99.96|96.82|0.00|-0.79|0001A463|0|1| +38|2023-10-06T20:21:28.3550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:28.3980000-07:00|40022550|Zeromus|0001A460|40009018||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:28.3980000-07:00|10FF0001|Sesuga Sapisuga|0001A460|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|1300|0|0|02|0B000558|04|41F00000|||||| +21|2023-10-06T20:21:28.3990000-07:00|10FF0006|Wowobora Gogobora|5EEC|Zoe|10FF0006|Wowobora Gogobora|320F|A338000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73253|80739|8810|10000|||100.14|101.43|0.00|-3.13|73253|80739|8810|10000|||100.14|101.43|0.00|-3.13|0001A464|0|1| +38|2023-10-06T20:21:28.3990000-07:00|10FF0006|Wowobora Gogobora|005A5A28|73253|80739|8810|10000|0||100.14|101.43|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:21:28.3990000-07:00|A33|Zoe|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:21:28.3990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:28.4430000-07:00|10FF0005|Wuwuchu Wuchu|0001A454|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2706|0|0|02|0B000A1D|0|C2700000|||||| +26|2023-10-06T20:21:28.4430000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +39|2023-10-06T20:21:28.4430000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||96.42|101.64|0.00|2.98| +39|2023-10-06T20:21:28.4430000-07:00|400225E5|Demi-Bahamut|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07| +261|2023-10-06T20:21:27.9810000-07:00|Change|10FF0004||||| +37|2023-10-06T20:21:28.4880000-07:00|40022550|Zeromus|0001A45C|39997982||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:28.4880000-07:00|40022550|Zeromus|0001A45E|39997982|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004C5|0|41700000|| +26|2023-10-06T20:21:28.4880000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:21:28.4880000-07:00|10FF0001|Sesuga Sapisuga|0001A45B|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|1302|0|0|01|0E000511|0|41A00000|| +26|2023-10-06T20:21:28.4880000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|127791|73085| +38|2023-10-06T20:21:28.4880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:28.4880000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:21:28.4880000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|05|90055|90055| +39|2023-10-06T20:21:28.4880000-07:00|10FF0006|Wowobora Gogobora|74060|80739|9015|10000|||100.14|101.43|0.00|-3.13| +261|2023-10-06T20:21:27.9810000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:21:28.5330000-07:00|40022550|Zeromus|0001A461|39975957||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:28.5330000-07:00|10FF0005|Wuwuchu Wuchu|0001A461|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2700|0|0|01|0B000A1D|0|42700000|| +21|2023-10-06T20:21:28.5330000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73085|73085|9400|10000|||100.18|101.24|0.00|-3.13|73085|73085|9400|10000|||100.18|101.24|0.00|-3.13|0001A465|0|1| +38|2023-10-06T20:21:28.5330000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:21:28.5330000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73085|73085| +38|2023-10-06T20:21:28.5330000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:28.5770000-07:00|10FF0007|Kehabiqo Febiqo|0001A454|124080|128564|10000|10000|0||99.96|97.11|0.00|3.14|1507|0|0|01|08000312|0|41700000|| +26|2023-10-06T20:21:28.5770000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|128564|90128| +37|2023-10-06T20:21:28.6220000-07:00|40022550|Zeromus|0001A462|39972744||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:28.6220000-07:00|10FF0008|Kokosaze Lulusaze|0001A45B|79111|79111|9500|10000|13||99.70|101.67|0.00|-3.08|1B03|0|0|01|07000511|0|41A00000|| +26|2023-10-06T20:21:28.6220000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|79111|73085| +37|2023-10-06T20:21:28.6220000-07:00|10FF0003|Gegehi Gehi|0001A45B|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|2303|0|0|01|070007B3|06|C1700000|| +38|2023-10-06T20:21:28.6220000-07:00|400225E5|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.01|110.25|0.00|-3.07|0|0|0||||||||||||||||||| +26|2023-10-06T20:21:28.6220000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|400225E5|Demi-Bahamut|00|68265|73085| +21|2023-10-06T20:21:28.6660000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39972744|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||99.69|101.56|-0.01|-3.08|0001A466|0|1| +37|2023-10-06T20:21:28.7560000-07:00|10FF0004|Buhojaqe Zijaqe|0001A45B|80739|80739|9000|10000|12||100.08|99.90|0.00|-3.14|1C04|0|0|01|08000511|0|41A00000|| +26|2023-10-06T20:21:28.7560000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|80739|73085| +37|2023-10-06T20:21:28.7560000-07:00|10FF0003|Gegehi Gehi|0001A45B|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|2304|0|0|01|070007B3|06|C1700000|| +38|2023-10-06T20:21:28.8010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|13||99.69|101.55|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:21:28.8010000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|79111|79111| +21|2023-10-06T20:21:28.8010000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|750003|260A0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|39972744|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||99.69|101.55|0.00|-3.08|0001A467|0|1| +26|2023-10-06T20:21:28.8010000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +21|2023-10-06T20:21:28.8010000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|752003|1D560000|104|AF68000|0|0|0|0|0|0|0|0|0|0|0|0|39972744|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9000|10000|||100.08|99.90|0.00|-3.14|0001A468|0|1| +38|2023-10-06T20:21:28.8010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|13||99.69|101.55|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:28.8010000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:21:28.8460000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:28.8460000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|06|90055|90055| +21|2023-10-06T20:21:28.8460000-07:00|400225E5|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|16C60000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|39972744|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07|0001A469|0|1| +38|2023-10-06T20:21:28.8460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124080|128564|10000|10000|0||99.96|97.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:21:28.8460000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|128564|90055| +37|2023-10-06T20:21:28.8900000-07:00|40022550|Zeromus|0001A463|39962811||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:28.8900000-07:00|10FF0002|Suchichi Suchi|0001A45B|90128|90128|10000|10000|11||99.47|99.47|-0.02|3.12|1605|0|0|01|0A000511|0|41A00000|| +26|2023-10-06T20:21:28.8900000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|90128|73085| +37|2023-10-06T20:21:28.8900000-07:00|10FF0003|Gegehi Gehi|0001A45B|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|2305|0|0|01|070007B3|06|C1700000|| +21|2023-10-06T20:21:28.8900000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|714003|7E0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39972744|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A46A|0|1| +37|2023-10-06T20:21:28.9350000-07:00|10FF0003|Gegehi Gehi|0001A465|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|2300|0|0|01|070007B3|06|41700000|| +21|2023-10-06T20:21:28.9350000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D726003|6A660000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|39972744|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.47|99.47|-0.02|3.12|0001A46B|0|1| +38|2023-10-06T20:21:28.9350000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.47|99.47|-0.02|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:28.9350000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:21:28.9350000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:28.9350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:21:28.9790000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|172D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39962811|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A46C|0|1| +37|2023-10-06T20:21:29.0230000-07:00|10FF0005|Wuwuchu Wuchu|0001A45B|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2706|0|0|01|08000511|0|41A00000|| +26|2023-10-06T20:21:29.0230000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|90055|73085| +39|2023-10-06T20:21:29.0230000-07:00|10FF0007|Kehabiqo Febiqo|125365|128564|10000|10000|||99.96|97.17|0.00|3.14| +39|2023-10-06T20:21:29.0230000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9700|10000|||99.69|101.55|0.00|3.13| +261|2023-10-06T20:21:28.4760000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:21:29.0680000-07:00|10FF0006|Wowobora Gogobora|0001A464|74060|80739|9015|10000|0||100.14|101.43|0.00|-3.13|2800|0|0|01|06000A33|0|41F00000|| +38|2023-10-06T20:21:29.0680000-07:00|10FF0006|Wowobora Gogobora|005A5A28|74060|80739|9015|10000|0||100.14|101.43|0.00|-3.13|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:21:29.1120000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|125365|128564|10000|10000|||99.96|97.14|0.00|3.14|125365|128564|10000|10000|||99.96|97.14|0.00|3.14|0001A46D|0|1| +38|2023-10-06T20:21:29.1120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125365|128564|10000|10000|0||99.96|97.14|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:29.1120000-07:00|A75|Surging Tempest|38.40|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:21:29.1120000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|128564|128564| +26|2023-10-06T20:21:29.1120000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:21:29.1120000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:21:29.1570000-07:00|10FF0007|Kehabiqo Febiqo|0001A45B|125365|128564|10000|10000|0||99.96|97.14|0.00|3.14|1507|0|0|04|07000499|03|C1700000|||||||||||||| +26|2023-10-06T20:21:29.1570000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|128564|73085| +20|2023-10-06T20:21:29.1570000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.14|101.43|0.00|-3.13| +37|2023-10-06T20:21:29.2020000-07:00|40022550|Zeromus|0001A466|39962648||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:29.2020000-07:00|10FF0008|Kokosaze Lulusaze|0001A466|79111|79111|9700|10000|13||99.69|101.55|0.00|3.13|1B00|0|0|01|09000A8D|0|C2700000|| +38|2023-10-06T20:21:29.3800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:29.3800000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|07|90055|90055| +21|2023-10-06T20:21:29.3800000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39962648|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9400|10000|||100.18|101.24|0.00|-3.13|0001A46E|0|1| +38|2023-10-06T20:21:29.3800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:29.3800000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|127791|90055| +37|2023-10-06T20:21:29.4250000-07:00|40022550|Zeromus|0001A46A|39930381||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:29.4250000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|752003|4BA70000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|39962648|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9400|10000|||100.18|101.24|0.00|-3.13|0001A46F|0|1| +38|2023-10-06T20:21:29.4250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:21:29.4250000-07:00|7B3|Manafication|14.47|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73085|73085| +37|2023-10-06T20:21:29.5130000-07:00|40022550|Zeromus|0001A46C|39924448||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:29.5130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.08|99.90|0.00|-3.14| +261|2023-10-06T20:21:29.0590000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T20:21:29.0590000-07:00|Change|10FF0006||||||||||||| +38|2023-10-06T20:21:29.5570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:29.5570000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|08|90055|90055| +21|2023-10-06T20:21:29.5570000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|720003|30740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39930381|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.37|99.75|0.00|2.79|0001A470|0|1| +21|2023-10-06T20:21:29.5570000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|712003|22460000|DB800E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|39930381|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A471|0|1| +38|2023-10-06T20:21:29.5570000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.37|99.75|0.00|2.79|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:29.5570000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|90128|90055| +37|2023-10-06T20:21:29.6020000-07:00|40022550|Zeromus|0001A46B|39897210||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:29.6020000-07:00|10FF0002|Suchichi Suchi|0001A46B|90128|90128|10000|10000|11||99.37|99.75|0.00|2.79|1600|0|0|01|0B000322|0|41F00000|| +38|2023-10-06T20:21:29.6020000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.37|99.75|0.00|2.79|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:21:29.7350000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|33710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39897210|40478540|10000|10000|||100.00|80.10|0.00|0.00|125365|128564|10000|10000|||99.96|96.97|0.00|3.14|0001A472|0|1| +37|2023-10-06T20:21:29.8240000-07:00|40022550|Zeromus|0001A467|39887472||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:29.8240000-07:00|10FF0008|Kokosaze Lulusaze|0001A467|79111|79111|9700|10000|13||99.69|101.55|0.00|3.13|1B00|0|0|01|09000A8D|0|42700000|| +37|2023-10-06T20:21:29.8240000-07:00|40022550|Zeromus|0001A468|39879962||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:29.8240000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|F7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39897210|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.31|99.86|0.00|3.11|0001A473|0|1| +38|2023-10-06T20:21:29.8240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|13||99.69|101.55|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:29.8690000-07:00|10FF0007|Kehabiqo Febiqo|0001A46D|125365|128564|10000|10000|0||99.96|96.97|0.00|3.14|1500|0|0|03|07000499|03|41700000|||||||||| +21|2023-10-06T20:21:29.8690000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|752003|80090000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|39897210|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||99.69|101.55|0.00|3.13|0001A474|0|1| +38|2023-10-06T20:21:29.8690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125365|128564|10000|10000|0||99.96|96.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:29.3390000-07:00|Change|10FF0008||| +37|2023-10-06T20:21:29.9120000-07:00|40022550|Zeromus|0001A46E|39879935||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:29.9120000-07:00|40022550|Zeromus|0001A469|39874105||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:30.0900000-07:00|40022550|Zeromus|0001A46F|39854738||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:30.0900000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5EFF0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|39874105|40478540|10000|10000|||100.00|80.10|0.00|0.00|74060|80739|9015|10000|||100.14|101.43|0.00|-3.13|0001A475|0|1| +21|2023-10-06T20:21:30.1350000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|722003|6A320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39854738|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9400|10000|||100.18|101.24|0.00|-3.13|0001A476|0|1| +37|2023-10-06T20:21:30.1800000-07:00|40022550|Zeromus|0001A470|39842334||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:30.2240000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.29|99.90|0.00|3.11|90128|90128|10000|10000|||99.29|99.90|0.00|3.11|0001A477|0|1| +38|2023-10-06T20:21:30.2240000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.29|99.90|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:30.2240000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:21:30.3600000-07:00|40022550|Zeromus|0001A472|39829165||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:30.3600000-07:00|40022550|Zeromus|0001A473|39825199||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:30.3600000-07:00|10FF0002|Suchichi Suchi|0001A473|90128|90128|10000|10000|11||99.30|99.90|0.00|-3.11|1600|0|0|01|06000074|0|C0A00000|| +21|2023-10-06T20:21:30.3600000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|429E0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|39842334|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A478|0|1| +21|2023-10-06T20:21:30.3600000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|11250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39842334|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A479|0|1| +31|2023-10-06T20:21:30.3600000-07:00|10FF0001||||| +21|2023-10-06T20:21:30.4490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|57440000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|39825199|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9000|10000|||100.08|99.90|0.00|-3.14|0001A47A|0|1| +37|2023-10-06T20:21:30.4940000-07:00|40022550|Zeromus|0001A474|39792422||||||100.00|80.10|0.00|0.00| +26|2023-10-06T20:21:30.4940000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:21:30.4940000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|750003|3E760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39825199|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||99.69|101.55|0.00|3.13|0001A47B|0|1| +21|2023-10-06T20:21:30.4940000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B712003|858C0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|39825199|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|0001A47C|0|1| +38|2023-10-06T20:21:30.4940000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:30.4940000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:21:30.4940000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:21:30.4940000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:21:30.0930000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T20:21:30.0930000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:21:30.5840000-07:00|40022550|Zeromus|0001A471|39783648|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050000F8|0|41700000|| +26|2023-10-06T20:21:30.5840000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:21:30.7170000-07:00|40022550|Zeromus|0001A478|39766594||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:21:30.7170000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|73F90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A47D|0|8| +22|2023-10-06T20:21:30.7170000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|73F90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|9400|10000|||100.18|101.24|0.00|-3.13|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A47D|1|8| +22|2023-10-06T20:21:30.7170000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|73F90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||99.69|101.55|0.00|3.13|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A47D|2|8| +22|2023-10-06T20:21:30.7170000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|73F90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.41|100.25|-0.02|1.98|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A47D|3|8| +22|2023-10-06T20:21:30.7170000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|73F90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A47D|4|8| +22|2023-10-06T20:21:30.7170000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|73F90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8600|10000|||100.08|99.90|0.00|-3.14|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A47D|5|8| +22|2023-10-06T20:21:30.7170000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|73F90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|125365|128564|10000|10000|||99.93|97.21|0.00|-1.38|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A47D|6|8| +22|2023-10-06T20:21:30.7170000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|73F90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||96.42|101.64|0.00|2.98|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A47D|7|8| +21|2023-10-06T20:21:30.7170000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|1040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39783648|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||100.08|99.90|0.00|-3.14|0001A47E|0|1| +37|2023-10-06T20:21:30.7610000-07:00|10FF0002|Suchichi Suchi|0001A477|90128|90128|10000|10000|11||99.41|100.25|-0.02|1.98|1600|0|0|01|06000074|0|40A00000|| +24|2023-10-06T20:21:30.7610000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|155E|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|10FF0006|Wowobora Gogobora|0|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13| +37|2023-10-06T20:21:30.7610000-07:00|40022550|Zeromus|0001A475|39742275||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:30.7610000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.41|100.25|-0.02|1.98|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:30.7610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|100.39|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:30.7610000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:21:30.8060000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|BFE70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39742275|40478540|10000|10000|||100.00|80.10|0.00|0.00|125365|128564|10000|10000|||99.93|97.39|0.00|-1.07|0001A47F|0|1| +38|2023-10-06T20:21:30.8060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125365|128564|10000|10000|0||99.93|97.39|0.00|-1.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:30.8060000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:21:30.8950000-07:00|40022550|Zeromus|0001A479|39737886||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:30.8950000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37750003|39760000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|39742275|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9400|10000|||100.18|101.24|0.00|-3.13|0001A480|0|1| +38|2023-10-06T20:21:30.8950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9400|10000|14||100.18|101.24|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:21:30.8950000-07:00|7B3|Manafication|13.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73085|73085| +37|2023-10-06T20:21:30.9840000-07:00|40022550|Zeromus|0001A47C|39703698||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:30.9840000-07:00|10FF0005|Wuwuchu Wuchu|0001A47C|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|2700|0|0|01|09000A1C|0|42700000|| +38|2023-10-06T20:21:30.9840000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:31.0280000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +21|2023-10-06T20:21:31.0280000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|750003|12060000|104|6BC8000|0|0|0|0|0|0|0|0|0|0|0|0|39703698|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||100.08|99.90|0.00|-3.14|0001A481|0|1| +39|2023-10-06T20:21:31.1620000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.54|100.73|0.00|0.34| +21|2023-10-06T20:21:31.1620000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39703698|40478540|10000|10000|||100.00|80.10|0.00|0.00|125365|128564|10000|10000|||99.93|97.77|0.00|3.14|0001A482|0|1| +38|2023-10-06T20:21:31.1620000-07:00|400225E5|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.01|110.25|0.00|-3.07|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:21:31.1620000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|400225E5|Demi-Bahamut|01|68265|40478540| +21|2023-10-06T20:21:31.1620000-07:00|10FF0008|Kokosaze Lulusaze|1D05|Enkindle Bahamut|40022550|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|39703698|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||99.69|101.55|0.00|3.13|0001A483|0|1| +39|2023-10-06T20:21:31.2080000-07:00|10FF0003|Gegehi Gehi|73085|73085|9600|10000|||100.18|101.24|0.00|-3.13| +24|2023-10-06T20:21:31.2080000-07:00|40022550|Zeromus|DoT|0|31C9|39703698|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14| +38|2023-10-06T20:21:31.2080000-07:00|40022550|Zeromus|005A5A00|39690953|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:21:30.7130000-07:00|Change|10FF0003||| +37|2023-10-06T20:21:31.2510000-07:00|40022550|Zeromus|0001A47A|39668613||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:31.2510000-07:00|40022550|Zeromus|0001A47E|39668353||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:31.2510000-07:00|400225E5|Demi-Bahamut|1D19|Akh Morn|40022550|Zeromus|750003|C08B0000|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|39690953|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07|0001A484|0|1| +37|2023-10-06T20:21:31.2950000-07:00|40022550|Zeromus|0001A476|39641167||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:31.3410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39641167|40478540|10000|10000|||100.00|80.10|0.00|0.00|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A485|0|1| +36|2023-10-06T20:21:31.3410000-07:00|0370|3| +39|2023-10-06T20:21:31.3850000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14| +39|2023-10-06T20:21:31.3850000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8800|10000|||100.08|99.90|0.00|-3.14| +37|2023-10-06T20:21:31.4300000-07:00|40022550|Zeromus|0001A47B|39625177||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:31.4300000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|12EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39641167|40478540|10000|10000|||100.00|80.10|0.00|0.00|125365|128564|10000|10000|||99.95|97.61|0.00|3.14|0001A486|0|1| +21|2023-10-06T20:21:31.4300000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A726003|AECB0000|104|20AB8000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|39641167|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|100.82|0.00|0.44|0001A487|0|1| +21|2023-10-06T20:21:31.4300000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|752003|E72B0000|200004|42178000|0|0|0|0|0|0|0|0|0|0|0|0|39641167|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|100.39|0.00|-3.14|0001A488|0|1| +38|2023-10-06T20:21:31.4300000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.57|100.82|0.00|0.44|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:31.4300000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:21:31.4300000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:21:31.4300000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:31.4300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|8||100.10|100.39|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:31.4300000-07:00|558|Requiescat|26.92|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +30|2023-10-06T20:21:31.4300000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:21:31.4300000-07:00|10FF0001||||| +39|2023-10-06T20:21:31.4750000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||96.42|101.64|0.00|2.98| +39|2023-10-06T20:21:31.4750000-07:00|400225E5|Demi-Bahamut|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07| +261|2023-10-06T20:21:31.0550000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:21:31.1560000-07:00|Change|10FF0004||| +37|2023-10-06T20:21:31.5190000-07:00|10FF0006|Wowobora Gogobora|0001A47D|74060|80739|9315|10000|0||100.14|101.43|0.00|-3.13|2800|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:21:31.5190000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:21:31.5190000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:21:31.5190000-07:00|40022550|Zeromus|0001A480|39610467||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:31.5190000-07:00|10FF0006|Wowobora Gogobora|74867|80739|9520|10000|||100.14|101.43|0.00|-3.13| +261|2023-10-06T20:21:31.1560000-07:00|Change|10FF0006||| +21|2023-10-06T20:21:31.6090000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|6C580000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|39625177|40478540|10000|10000|||100.00|80.10|0.00|0.00|74060|80739|8615|10000|||100.14|101.43|0.00|-3.13|0001A489|0|1| +21|2023-10-06T20:21:31.6090000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|3B330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39625177|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9600|10000|||100.18|101.24|0.00|-3.13|0001A48A|0|1| +37|2023-10-06T20:21:31.6530000-07:00|10FF0003|Gegehi Gehi|0001A47D|73085|73085|9600|10000|14||100.18|101.24|0.00|-3.13|2301|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:21:31.6530000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:21:31.6530000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:21:31.6980000-07:00|40022550|Zeromus|0001A482|39607375||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:31.7430000-07:00|40022550|Zeromus|0001A47F|39558248||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:31.7870000-07:00|10FF0008|Kokosaze Lulusaze|0001A47D|79111|79111|9400|10000|13||99.69|101.55|0.00|3.13|1B02|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:21:31.7870000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:21:31.7870000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:21:31.7870000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|10A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39558248|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||99.69|101.55|0.00|3.13|0001A48B|0|1| +37|2023-10-06T20:21:31.8760000-07:00|40022550|Zeromus|0001A485|39558184||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:31.8770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.08|99.90|0.00|-3.14| +37|2023-10-06T20:21:31.9210000-07:00|10FF0002|Suchichi Suchi|0001A47D|90128|90128|10000|10000|11||99.59|100.86|0.00|3.14|1603|0|0|03|06000A3A|0|41700000|||||||||| +26|2023-10-06T20:21:31.9210000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:21:31.9210000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:21:32.0560000-07:00|40022550|Zeromus|0001A486|39553341||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:32.0560000-07:00|40022550|Zeromus|0001A487|39508594||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:32.0560000-07:00|10FF0002|Suchichi Suchi|0001A487|90128|90128|10000|10000|11||99.60|100.90|0.00|-3.14|1600|0|0|01|09000747|0|41F00000|| +37|2023-10-06T20:21:32.0560000-07:00|10FF0001|Sesuga Sapisuga|0001A47D|127791|127791|9000|10000|8||100.10|100.39|0.00|-3.14|1304|0|0|02|09000A3A|0|41700000|||||| +26|2023-10-06T20:21:32.0560000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:21:32.0560000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:21:32.0560000-07:00|40022550|Zeromus|0001A488|39449415||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:32.0560000-07:00|40022550|Zeromus|0001A481|39444801||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:32.0560000-07:00|10FF0007|Kehabiqo Febiqo|126650|128564|10000|10000|||99.95|97.53|0.00|3.14| +39|2023-10-06T20:21:32.0560000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9600|10000|||99.69|101.55|0.00|3.13| +21|2023-10-06T20:21:32.0560000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|726003|92880000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|39558184|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.60|100.90|0.00|-3.14|0001A48C|0|1| +38|2023-10-06T20:21:32.0560000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.60|100.90|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:32.0560000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:21:31.5390000-07:00|Change|10FF0008||| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0007|Kehabiqo Febiqo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|126650|128564|10000|10000|||99.95|97.53|0.00|3.14|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|0|8| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0004|Buhojaqe Zijaqe|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|80739|80739|8800|10000|||100.08|99.90|0.00|-3.14|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|1|8| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0001|Sesuga Sapisuga|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|127791|127791|9000|10000|||100.10|100.39|0.00|-3.14|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|2|8| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0002|Suchichi Suchi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.63|100.97|-0.02|3.12|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|3|8| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0003|Gegehi Gehi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|73085|73085|9600|10000|||100.18|101.24|0.00|-3.13|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|4|8| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0006|Wowobora Gogobora|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|74867|80739|9120|10000|||100.14|101.43|0.00|-3.13|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|5|8| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0008|Kokosaze Lulusaze|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||99.69|101.55|0.00|3.13|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|6|8| +22|2023-10-06T20:21:32.1010000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0005|Wuwuchu Wuchu|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||96.42|101.64|0.00|2.94|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|7|8| +261|2023-10-06T20:21:31.7690000-07:00|Change|4002256E||||||||||||||||||||| +261|2023-10-06T20:21:31.7690000-07:00|Change|4002256C||||||||||||||||||||| +261|2023-10-06T20:21:31.7690000-07:00|Change|40022550||||||||||||| +37|2023-10-06T20:21:32.1440000-07:00|40022550|Zeromus|0001A484|39395510||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:31.7690000-07:00|Change|4002256B||||||||||||||||||||| +261|2023-10-06T20:21:31.7690000-07:00|Change|40022568||||||||||||||||||||| +261|2023-10-06T20:21:31.7690000-07:00|Change|40022567||||||||||||||||||||| +261|2023-10-06T20:21:31.7690000-07:00|Change|40022566||||||||||||||||||||| +38|2023-10-06T20:21:32.1450000-07:00|400225E5|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.01|110.25|0.00|-3.07|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:32.1450000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|400225E5|Demi-Bahamut|01|68265|40478540| +261|2023-10-06T20:21:31.7690000-07:00|Change|4002256A||||||||||||||||||||| +261|2023-10-06T20:21:31.7690000-07:00|Change|4002256D||||||||||||||||||||| +37|2023-10-06T20:21:32.1900000-07:00|10FF0004|Buhojaqe Zijaqe|0001A47D|80739|80739|8800|10000|12||100.08|99.90|0.00|-3.14|1C05|0|0|02|0A000A3A|0|41700000|||||| +261|2023-10-06T20:21:31.7690000-07:00|Change|40022569||||||||||||||||||||| +26|2023-10-06T20:21:32.1900000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:21:32.1900000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +20|2023-10-06T20:21:32.1900000-07:00|40022565|Zeromus|8B42|Abyssal Echoes|40022565|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|40022566|Zeromus|8B41|unknown_8b41|40022566|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|40022567|Zeromus|8B42|Abyssal Echoes|40022567|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|40022568|Zeromus|8B41|unknown_8b41|40022568|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|40022569|Zeromus|8B42|Abyssal Echoes|40022569|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|4002256A|Zeromus|8B40|unknown_8b40|4002256A|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|4002256B|Zeromus|8B42|Abyssal Echoes|4002256B|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|4002256C|Zeromus|8B40|unknown_8b40|4002256C|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|4002256D|Zeromus|8B42|Abyssal Echoes|4002256D|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:32.1900000-07:00|4002256E|Zeromus|8D2B|unknown_8d2b|4002256E|Zeromus|8.700|100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:31.7690000-07:00|Change|40022565||||||||||||||||||||| +21|2023-10-06T20:21:32.1900000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|EAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39444801|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.94|0001A48E|0|1| +24|2023-10-06T20:21:32.2780000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1595|127791|127791|9000|10000|||100.10|100.39|0.00|-3.14|10FF0006|Wowobora Gogobora|0|74867|80739|9120|10000|||100.14|101.43|0.00|-3.13| +37|2023-10-06T20:21:32.2780000-07:00|40022550|Zeromus|0001A489|39367774||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:32.2780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|8||100.10|100.39|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:32.3230000-07:00|40022550|Zeromus|0001A48B|39367508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:32.3230000-07:00|10FF0007|Kehabiqo Febiqo|0001A47D|126650|128564|10000|10000|0||99.95|97.50|0.00|3.14|1506|0|0|02|04000A3A|0|41700000|||||| +26|2023-10-06T20:21:32.3230000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:21:32.3230000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:21:32.3230000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|53710000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|39395510|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||99.69|101.55|0.00|3.13|0001A48F|0|1| +21|2023-10-06T20:21:32.3230000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|712003|24EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39395510|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||100.10|100.39|0.00|-3.14|0001A490|0|1| +21|2023-10-06T20:21:32.4110000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A750003|558F0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|39395510|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9600|10000|||100.18|101.24|0.00|-3.13|0001A491|0|1| +38|2023-10-06T20:21:32.4110000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9600|10000|14||100.18|101.24|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:32.4110000-07:00|7B3|Manafication|11.48|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73085|73085| +37|2023-10-06T20:21:32.4560000-07:00|10FF0005|Wuwuchu Wuchu|0001A47D|90055|90055|10000|10000|11||96.42|101.64|0.00|2.94|2707|0|0|02|0B000A3A|0|41700000|||||| +26|2023-10-06T20:21:32.4560000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:21:32.4560000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:21:32.4560000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|712003|1E380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39367508|40478540|10000|10000|||100.00|80.10|0.00|0.00|126650|128564|10000|10000|||99.96|97.47|0.00|3.14|0001A492|0|1| +37|2023-10-06T20:21:32.5450000-07:00|40022550|Zeromus|0001A48C|39329996||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:32.5450000-07:00|10FF0002|Suchichi Suchi|0001A48C|90128|90128|10000|10000|11||99.63|100.97|0.00|3.12|1600|0|0|01|0C0004DB|0|41700000|| +38|2023-10-06T20:21:32.5450000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.63|100.97|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:32.1220000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T20:21:32.1220000-07:00|Change|10FF0008||| +24|2023-10-06T20:21:32.6350000-07:00|10FF0002|Suchichi Suchi|HoT|0|1441|90128|90128|10000|10000|||99.63|100.97|0.00|3.12|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||99.63|100.97|0.00|3.12| +21|2023-10-06T20:21:32.6350000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|19CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39367508|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.63|100.97|0.00|3.12|0001A493|0|1| +21|2023-10-06T20:21:32.6350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|111F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39367508|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||100.10|100.39|0.00|-3.14|0001A494|0|1| +38|2023-10-06T20:21:32.6350000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.63|100.97|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:21:32.6350000-07:00|10FF0001||||| +261|2023-10-06T20:21:32.2130000-07:00|Change|10FF0006||| +24|2023-10-06T20:21:32.6790000-07:00|10FF0003|Gegehi Gehi|HoT|0|1541|73085|73085|9600|10000|||100.18|101.24|0.00|-3.13|10FF0006|Wowobora Gogobora|0|74867|80739|9120|10000|||100.14|101.43|0.00|-3.13| +38|2023-10-06T20:21:32.6790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9600|10000|14||100.18|101.24|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:32.7250000-07:00|40022550|Zeromus|0001A48E|39326238||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:32.7690000-07:00|40022550|Zeromus|0001A48A|39311083||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:32.8140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|34A30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|39326238|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8800|10000|||100.08|99.90|0.00|-3.14|0001A495|0|1| +24|2023-10-06T20:21:32.8580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1456|127791|127791|9000|10000|||100.11|100.26|0.00|3.14|10FF0003|Gegehi Gehi|0|73085|73085|9600|10000|||100.18|101.24|0.00|-3.13| +24|2023-10-06T20:21:32.8580000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CCF|80739|80739|8400|10000|||100.08|99.90|0.00|-3.14|10FF0006|Wowobora Gogobora|0|74867|80739|9120|10000|||100.14|101.43|0.00|-3.13| +21|2023-10-06T20:21:32.8580000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39311083|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9600|10000|||100.18|101.24|0.00|-3.13|0001A496|0|1| +38|2023-10-06T20:21:32.8580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|8||100.11|100.26|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:32.8580000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:21:32.8580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8400|10000|12||100.08|99.90|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:32.9020000-07:00|40022550|Zeromus|0001A490|39301632||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:32.9470000-07:00|40022550|Zeromus|0001A48F|39280271||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:32.9480000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|CFE|90055|90055|10000|10000|||96.42|101.64|0.00|2.94|10FF0006|Wowobora Gogobora|0|74867|80739|9120|10000|||100.14|101.43|0.00|-3.13| +21|2023-10-06T20:21:32.9480000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|722003|3B380000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|39301632|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.68|100.97|0.00|3.14|0001A497|0|1| +21|2023-10-06T20:21:32.9480000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|714003|5B140000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|39301632|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.42|101.64|0.00|2.94|0001A498|0|1| +38|2023-10-06T20:21:32.9480000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.68|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:32.9480000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:32.9480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||96.42|101.64|0.00|2.94|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:32.9480000-07:00|B9C|Bloodsown Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:21:32.9920000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D42|74867|80739|9120|10000|||100.14|101.43|0.00|-3.13|10FF0006|Wowobora Gogobora|0|74867|80739|9120|10000|||100.14|101.43|0.00|-3.13| +21|2023-10-06T20:21:32.9920000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|754003|51BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39301632|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||99.69|101.55|0.00|3.13|0001A499|0|1| +38|2023-10-06T20:21:32.9920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|13||99.69|101.55|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:32.9920000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +38|2023-10-06T20:21:32.9920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|78261|80739|9120|10000|0||100.14|101.43|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:21:32.9920000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:21:33.0360000-07:00|40022550|Zeromus|0001A491|39258368||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:33.0810000-07:00|40022550|Zeromus|0001A492|39250632||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:33.1260000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|722003|1E260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39258368|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9600|10000|||100.18|101.24|0.00|-3.13|0001A49A|0|1| +37|2023-10-06T20:21:33.1700000-07:00|40022550|Zeromus|0001A493|39244028||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:33.1700000-07:00|40022550|Zeromus|0001A494|39239645||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:33.2600000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|94610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39239645|40478540|10000|10000|||100.00|80.10|0.00|0.00|126650|128564|10000|10000|||99.96|97.44|0.00|3.14|0001A49B|0|1| +38|2023-10-06T20:21:33.2600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126650|128564|10000|10000|0||99.96|97.44|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:33.2600000-07:00|499|Inner Release|11.57|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|128564|128564| +21|2023-10-06T20:21:33.3040000-07:00|400225E5|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|752003|25870000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|39239645|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07|0001A49C|0|1| +37|2023-10-06T20:21:33.3930000-07:00|40022550|Zeromus|0001A496|39239612||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:33.4820000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|752003|1E710000|104|B608000|0|0|0|0|0|0|0|0|0|0|0|0|39239612|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8400|10000|||100.08|99.88|0.00|3.09|0001A49D|0|1| +38|2023-10-06T20:21:33.4820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8400|10000|12||100.08|99.88|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:33.4820000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +261|2023-10-06T20:21:33.1400000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T20:21:33.5260000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|150C|126650|128564|10000|10000|||99.96|97.40|-0.02|3.14|10FF0006|Wowobora Gogobora|0|78261|80739|9120|10000|||100.14|101.43|0.00|-3.13| +24|2023-10-06T20:21:33.5260000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|CEE|79111|79111|9300|10000|||99.69|101.55|0.00|3.13|10FF0006|Wowobora Gogobora|0|78261|80739|9120|10000|||100.14|101.43|0.00|-3.13| +38|2023-10-06T20:21:33.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|97.40|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:33.5260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|13||99.69|101.55|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:33.6150000-07:00|40022550|Zeromus|0001A495|39226137||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:33.6600000-07:00|10FF0008|Kokosaze Lulusaze|DFE|Deathflare|40022550|Zeromus|752003|9B650000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|39239612|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||99.69|101.55|0.00|3.13|0001A49E|0|1| +37|2023-10-06T20:21:33.7490000-07:00|40022550|Zeromus|0001A497|39210977||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:33.7490000-07:00|40022550|Zeromus|0001A49A|39203259||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:33.8370000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|724003|23330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39203259|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9600|10000|||100.17|100.57|0.00|-3.13|0001A49F|0|1| +21|2023-10-06T20:21:33.8820000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|714003|17B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39203259|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.96|97.40|0.00|3.14|0001A4A0|0|1| +37|2023-10-06T20:21:33.9270000-07:00|40022550|Zeromus|0001A49B|39165274||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:33.9270000-07:00|40022550|Zeromus|0001A499|39144352||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:33.9270000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|726003|6B370000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|39203259|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.87|101.18|0.00|3.13|0001A4A1|0|1| +21|2023-10-06T20:21:33.9270000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|750003|6F920000|200004|433E8000|0|0|0|0|0|0|0|0|0|0|0|0|39203259|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||100.10|95.77|0.00|-3.14|0001A4A2|0|1| +38|2023-10-06T20:21:33.9270000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.87|101.18|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:33.9270000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:33.9270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8000|10000|8||100.10|95.77|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:33.9270000-07:00|558|Requiescat|24.43|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +31|2023-10-06T20:21:33.9270000-07:00|10FF0001||||| +261|2023-10-06T20:21:33.4270000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:21:33.9710000-07:00|40022550|Zeromus|0001A498|39121036||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:34.0610000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|6BB60000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|39121036|40478540|10000|10000|||100.00|80.10|0.00|0.00|78261|80739|9120|10000|||100.14|101.43|0.00|-3.13|0001A4A3|0|1| +39|2023-10-06T20:21:34.1500000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.87|101.18|0.00|3.14| +21|2023-10-06T20:21:34.1500000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|736003|4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39121036|40478540|10000|10000|||100.00|80.10|0.00|0.00|78261|80739|9120|10000|||100.14|101.43|0.00|-3.13|0001A4A4|0|1| +39|2023-10-06T20:21:34.1940000-07:00|10FF0003|Gegehi Gehi|73085|73085|9800|10000|||100.18|100.57|0.00|-3.13| +24|2023-10-06T20:21:34.1940000-07:00|40022550|Zeromus|DoT|0|2C4F|39121036|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|8000|10000|||100.10|95.77|0.00|-3.14| +38|2023-10-06T20:21:34.1940000-07:00|40022550|Zeromus|005A5A00|39109693|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:21:33.6210000-07:00|Change|10FF0003||||||| +261|2023-10-06T20:21:33.6210000-07:00|Change|10FF0006||| +20|2023-10-06T20:21:34.2830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.05|99.66|0.00|-3.14| +37|2023-10-06T20:21:34.3270000-07:00|40022550|Zeromus|0001A49C|39100086||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:21:34.3270000-07:00|044C|3| +39|2023-10-06T20:21:34.3720000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8200|10000|||100.10|95.77|0.00|-3.14| +39|2023-10-06T20:21:34.3720000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8600|10000|||100.05|99.66|0.00|-3.14| +37|2023-10-06T20:21:34.4160000-07:00|40022550|Zeromus|0001A49F|39091075||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:34.4610000-07:00|40022550|Zeromus|0001A49E|39051294||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:34.4610000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.95|101.49|0.00|2.92| +39|2023-10-06T20:21:34.4610000-07:00|400225E5|Demi-Bahamut|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07| +37|2023-10-06T20:21:34.5060000-07:00|40022550|Zeromus|0001A4A0|39045227||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:34.5060000-07:00|40022550|Zeromus|0001A49D|39037434||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:34.5060000-07:00|10FF0006|Wowobora Gogobora|79068|80739|8925|10000|||100.14|101.43|0.00|-3.13| +37|2023-10-06T20:21:34.5510000-07:00|40022550|Zeromus|0001A4A1|39009987||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:34.5510000-07:00|40022550|Zeromus|0001A4A2|38981425||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:34.5510000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|CC90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39100086|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.96|97.40|0.00|3.14|0001A4A5|0|1| +21|2023-10-06T20:21:34.5510000-07:00|10FF0002|Suchichi Suchi|60|Dragonfire Dive|40022550|Zeromus|122003|55600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39100086|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.94|101.15|0.00|-3.13|0001A4A6|0|1| +261|2023-10-06T20:21:34.1730000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T20:21:34.6400000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|16840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38981425|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||100.10|95.77|0.00|-3.14|0001A4A7|0|1| +21|2023-10-06T20:21:34.6400000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022550|Zeromus|750003|62AF0000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|38981425|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9800|10000|||100.18|100.57|0.00|-3.13|0001A4A8|0|1| +38|2023-10-06T20:21:34.6400000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9400|10000|14||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:34.6400000-07:00|7B3|Manafication|9.25|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73085|73085| +26|2023-10-06T20:21:34.6400000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:21:34.1730000-07:00|Change|10FF0006||| +37|2023-10-06T20:21:34.6850000-07:00|40022550|Zeromus|0001A4A4|38981347||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:34.1730000-07:00|Change|10FF0003||||| +24|2023-10-06T20:21:34.7290000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|14FA|127791|127791|8200|10000|||100.10|95.77|0.00|-3.14|10FF0006|Wowobora Gogobora|0|79068|80739|8925|10000|||100.14|101.43|0.00|-3.13| +37|2023-10-06T20:21:34.7290000-07:00|40022550|Zeromus|0001A4A3|38953773||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:34.7290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|8||100.10|95.77|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:21:34.8180000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|50200000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|38953773|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||99.69|101.55|0.00|3.13|0001A4A9|0|1| +261|2023-10-06T20:21:34.2720000-07:00|Change|10FF0008||| +21|2023-10-06T20:21:34.8620000-07:00|400225E5|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|156F0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|38953773|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07|0001A4AA|0|1| +21|2023-10-06T20:21:34.9070000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|10E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38953773|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||99.69|101.55|0.00|3.13|0001A4AB|0|1| +21|2023-10-06T20:21:34.9070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|147E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38953773|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||100.10|95.77|0.00|-3.14|0001A4AC|0|1| +31|2023-10-06T20:21:34.9070000-07:00|10FF0001||||| +261|2023-10-06T20:21:34.4640000-07:00|Change|10FF0001||| +39|2023-10-06T20:21:35.0400000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.96|97.40|0.00|3.14| +39|2023-10-06T20:21:35.0400000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9200|10000|||99.69|101.55|0.00|3.13| +37|2023-10-06T20:21:35.0850000-07:00|40022550|Zeromus|0001A4A5|38950500||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:35.2270000-07:00|40022550|Zeromus|0001A4A7|38944736||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:35.2270000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|58D20000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|38950500|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||100.05|99.66|0.00|-3.14|0001A4AD|0|1| +261|2023-10-06T20:21:34.8080000-07:00|Change|10FF0008||| +37|2023-10-06T20:21:35.3520000-07:00|40022550|Zeromus|0001A4A6|38922880||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:35.3520000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|722003|209F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38944736|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9400|10000|||100.18|100.57|0.00|-3.13|0001A4AE|0|1| +21|2023-10-06T20:21:35.3970000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|726003|59820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38944736|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.99|100.60|0.00|-3.14|0001A4AF|0|1| +21|2023-10-06T20:21:35.3970000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|F740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38944736|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.95|101.49|0.00|2.92|0001A4B0|0|1| +37|2023-10-06T20:21:35.4450000-07:00|40022550|Zeromus|0001A4A9|38902368||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:35.4450000-07:00|40022550|Zeromus|0001A4AB|38902098||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:35.4450000-07:00|40022550|Zeromus|0001A4AC|38896852||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:35.4450000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|EF20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38944736|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.99|100.60|0.00|-3.14|0001A4B1|0|1| +21|2023-10-06T20:21:35.4450000-07:00|10FF0005|Wuwuchu Wuchu|5F41|Plentiful Harvest|40022550|Zeromus|712003|FC3B0000|323E|1018000|0|0|0|0|0|0|0|0|0|0|0|0|38944736|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.95|101.49|0.00|2.92|0001A4B2|0|1| +38|2023-10-06T20:21:35.4450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||97.95|101.49|0.00|2.92|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:35.4450000-07:00|A20|Immortal Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|08|90055|90055| +261|2023-10-06T20:21:35.1480000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T20:21:35.6660000-07:00|10FF0002|Suchichi Suchi|HoT|0|15DE|90128|90128|10000|10000|||100.01|100.57|0.00|-3.14|10FF0006|Wowobora Gogobora|0|79068|80739|8925|10000|||100.14|101.43|0.00|-3.13| +38|2023-10-06T20:21:35.6660000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||100.01|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:21:35.7100000-07:00|10FF0003|Gegehi Gehi|HoT|0|148C|73085|73085|9400|10000|||100.18|100.57|0.00|-3.13|10FF0006|Wowobora Gogobora|0|79068|80739|8925|10000|||100.14|101.43|0.00|-3.13| +21|2023-10-06T20:21:35.7100000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|92D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38896852|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.96|97.40|0.00|3.14|0001A4B3|0|1| +38|2023-10-06T20:21:35.7100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|97.40|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:35.7100000-07:00|499|Inner Release|9.11|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +38|2023-10-06T20:21:35.7100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9400|10000|14||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:35.8430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8200|10000|12||100.05|99.66|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:35.8430000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +21|2023-10-06T20:21:35.8430000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8200|10000|||100.05|99.66|0.00|-3.14|80739|80739|8200|10000|||100.05|99.66|0.00|-3.14|0001A4B4|0|1| +21|2023-10-06T20:21:35.8430000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|1010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38896852|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8200|10000|||100.05|99.66|0.00|-3.14|0001A4B5|0|1| +37|2023-10-06T20:21:35.8880000-07:00|40022550|Zeromus|0001A4AA|38891365||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:35.8880000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|14C9|127791|127791|8200|10000|||100.10|95.77|0.00|-3.14|10FF0003|Gegehi Gehi|0|73085|73085|9400|10000|||100.18|100.57|-0.02|-3.13| +24|2023-10-06T20:21:35.8880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D91|80739|80739|8200|10000|||100.05|99.66|0.00|-3.14|10FF0006|Wowobora Gogobora|0|79068|80739|8925|10000|||100.14|101.42|0.00|-3.14| +38|2023-10-06T20:21:35.8880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|8||100.10|95.77|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:35.8880000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:21:35.8880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8200|10000|12||100.05|99.66|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:35.9310000-07:00|40022550|Zeromus|0001A4B0|38887409||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:35.9760000-07:00|40022550|Zeromus|0001A4B1|38883583||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:35.9760000-07:00|40022550|Zeromus|0001A4AE|38875232||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:35.9760000-07:00|10FF0003|Gegehi Gehi|0001A4AE|73085|73085|9400|10000|14||100.18|100.57|-0.02|-3.13|2300|0|0|01|0A0004D3|0|C1F00000|| +24|2023-10-06T20:21:35.9760000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D60|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|10FF0006|Wowobora Gogobora|0|79068|80739|8925|10000|||100.14|101.42|0.00|-3.14| +38|2023-10-06T20:21:35.9760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:36.0200000-07:00|40022550|Zeromus|0001A4AD|38852494||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:36.0200000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C9E|79068|80739|8925|10000|||100.14|101.41|0.00|3.14|10FF0006|Wowobora Gogobora|0|79068|80739|8925|10000|||100.14|101.41|0.00|3.14| +38|2023-10-06T20:21:36.0200000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8925|10000|0||100.14|101.41|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:21:36.0200000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:21:36.0640000-07:00|40022550|Zeromus|0001A4A8|38827231||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:36.0640000-07:00|10FF0003|Gegehi Gehi|0001A4A8|73085|73085|9400|10000|14||100.18|100.57|-0.02|-3.13|2300|0|0|01|0A0004D3|0|41F00000|| +38|2023-10-06T20:21:36.0640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9400|10000|14||100.18|100.57|-0.02|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:36.1980000-07:00|40022550|Zeromus|0001A4AF|38804317||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:36.1980000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:36.1980000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:21:36.1980000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4B6|0|1| +21|2023-10-06T20:21:36.3310000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.96|97.40|0.00|3.14|128564|128564|10000|10000|||99.96|97.40|0.00|3.14|0001A4B7|0|1| +21|2023-10-06T20:21:36.3310000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38827231|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9400|10000|||100.18|100.57|-0.02|-3.13|0001A4B8|0|1| +38|2023-10-06T20:21:36.3310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|97.40|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:36.3310000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:21:36.3760000-07:00|40022550|Zeromus|0001A4B3|38766730||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:36.3760000-07:00|10FF0007|Kehabiqo Febiqo|0001A4B3|128564|128564|10000|10000|0||99.96|97.40|0.00|3.14|1500|0|0|01|0D000769|0|C1F00000|| +37|2023-10-06T20:21:36.3760000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4B4|80739|80739|10000|10000|12||100.05|99.66|0.00|-3.14|1C00|0|0|0| +37|2023-10-06T20:21:36.3760000-07:00|40022550|Zeromus|0001A4B5|38766473||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:36.4210000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35722003|56DF0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|38766473|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.05|100.57|0.00|-3.14|0001A4B9|0|1| +21|2023-10-06T20:21:36.4210000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|752003|CB600000|4|27B58000|0|0|0|0|0|0|0|0|0|0|0|0|38766473|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||100.10|95.77|0.00|-3.14|0001A4BA|0|1| +38|2023-10-06T20:21:36.4210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|8||100.10|95.77|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:36.4210000-07:00|558|Requiescat|21.93|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:21:36.4210000-07:00|10FF0001||||| +261|2023-10-06T20:21:35.9620000-07:00|Change|10FF0001||| +20|2023-10-06T20:21:36.5090000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.13|100.89|0.00|3.13| +261|2023-10-06T20:21:35.9620000-07:00|Change|10FF0006||||||||||||||||||| +24|2023-10-06T20:21:36.5550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CC5|128564|128564|10000|10000|||99.96|97.40|0.00|3.14|10FF0006|Wowobora Gogobora|0|80739|80739|8925|10000|||100.11|100.73|-0.02|3.13| +24|2023-10-06T20:21:36.5550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|C84|79111|79111|9200|10000|||99.69|101.55|0.00|3.13|10FF0006|Wowobora Gogobora|0|80739|80739|8925|10000|||100.11|100.73|-0.02|3.13| +38|2023-10-06T20:21:36.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|97.40|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:36.5550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|13||99.69|101.55|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:36.5990000-07:00|40022550|Zeromus|0001A4B2|38701902||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:36.1700000-07:00|Change|10FF0004||| +20|2023-10-06T20:21:36.6870000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.05|99.66|0.00|-3.14| +37|2023-10-06T20:21:36.8650000-07:00|10FF0007|Kehabiqo Febiqo|0001A4B7|128564|128564|10000|10000|0||99.96|97.40|0.00|3.14|1500|0|0|01|0D000769|0|41F00000|| +37|2023-10-06T20:21:36.8650000-07:00|40022550|Zeromus|0001A4B8|38701877||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:36.8650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|97.40|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:21:36.9530000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4BB|0|1| +38|2023-10-06T20:21:36.9530000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:36.9530000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:21:36.9970000-07:00|10FF0007|Kehabiqo Febiqo|0001A48D|1|128564|10000|10000|0||99.96|97.40|0.00|3.14|1500|0|0|01|0E0006E9|0|41200000|| +26|2023-10-06T20:21:36.9970000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|40478540| +37|2023-10-06T20:21:37.0420000-07:00|10FF0004|Buhojaqe Zijaqe|0001A48D|1|80739|10000|10000|12||100.05|99.66|0.00|-3.14|1C01|0|0|01|0C0006E9|0|41200000|| +26|2023-10-06T20:21:37.0420000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|40478540| +37|2023-10-06T20:21:37.0870000-07:00|10FF0001|Sesuga Sapisuga|0001A48D|1|127791|7200|10000|8||100.10|95.77|0.00|-3.14|1302|0|0|01|0F0006E9|0|41200000|| +26|2023-10-06T20:21:37.0870000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|40478540| +21|2023-10-06T20:21:37.0870000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.08|100.57|0.00|-3.14|90128|90128|10000|10000|||100.08|100.57|0.00|-3.14|0001A4BC|0|1| +38|2023-10-06T20:21:37.0870000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:37.0870000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:21:37.1320000-07:00|10FF0002|Suchichi Suchi|0001A48D|1|90128|10000|10000|11||100.08|100.57|0.00|-3.14|1603|0|0|02|09000074|0|C0A00000|||||| +26|2023-10-06T20:21:37.1320000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0002|Suchichi Suchi|00|90128|40478540| +39|2023-10-06T20:21:37.1320000-07:00|10FF0002|Suchichi Suchi|902|90128|10000|10000|||100.08|100.57|0.00|-3.14| +261|2023-10-06T20:21:36.6620000-07:00|Change|40022563||||||||| +261|2023-10-06T20:21:36.6620000-07:00|Change|40022562||||||||| +261|2023-10-06T20:21:36.6620000-07:00|Change|40022561||||||||| +261|2023-10-06T20:21:36.6620000-07:00|Change|40022564||||||||| +261|2023-10-06T20:21:36.6620000-07:00|Change|40022560||||||||| +261|2023-10-06T20:21:36.6620000-07:00|Change|4002255D||||||||| +261|2023-10-06T20:21:36.6620000-07:00|Change|4002255E||||||||| +261|2023-10-06T20:21:36.6620000-07:00|Change|4002255F||||||||| +37|2023-10-06T20:21:37.1770000-07:00|10FF0003|Gegehi Gehi|0001A48D|1|73085|9400|10000|14||100.18|100.57|-0.02|-3.13|2304|0|0|01|0B0006E9|0|41200000|| +26|2023-10-06T20:21:37.1770000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0003|Gegehi Gehi|00|73085|40478540| +39|2023-10-06T20:21:37.1770000-07:00|10FF0003|Gegehi Gehi|731|73085|9600|10000|||100.18|100.57|-0.02|-3.13| +24|2023-10-06T20:21:37.1770000-07:00|40022550|Zeromus|DoT|0|2A88|38701877|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|1|127791|7200|10000|||100.10|95.77|0.00|-3.14| +21|2023-10-06T20:21:37.1770000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|10990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38701877|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|127791|7200|10000|||100.10|95.77|0.00|-3.14|0001A4BD|0|1| +38|2023-10-06T20:21:37.1770000-07:00|40022550|Zeromus|005A5A00|38690989|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +31|2023-10-06T20:21:37.1770000-07:00|10FF0001||||| +261|2023-10-06T20:21:36.6620000-07:00|Change|10FF0003||||| +37|2023-10-06T20:21:37.2210000-07:00|10FF0006|Wowobora Gogobora|0001A48D|1|80739|8925|10000|0||100.11|100.54|0.00|-3.13|2805|0|0|01|090006E9|0|41200000|| +26|2023-10-06T20:21:37.2210000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0006|Wowobora Gogobora|00|80739|40478540| +20|2023-10-06T20:21:37.2210000-07:00|4002255D|Zeromus|8B42|Abyssal Echoes|4002255D|Zeromus|15.700|83.50|116.50|0.00|0.00| +20|2023-10-06T20:21:37.2210000-07:00|4002255E|Zeromus|8B41|unknown_8b41|4002255E|Zeromus|8.700|100.00|100.00|0.00|-0.79| +20|2023-10-06T20:21:37.2210000-07:00|4002255F|Zeromus|8B42|Abyssal Echoes|4002255F|Zeromus|15.700|116.50|83.50|0.00|0.00| +20|2023-10-06T20:21:37.2210000-07:00|40022560|Zeromus|8B41|unknown_8b41|40022560|Zeromus|8.700|100.00|100.00|0.00|2.36| +20|2023-10-06T20:21:37.2210000-07:00|40022561|Zeromus|8B42|Abyssal Echoes|40022561|Zeromus|15.700|100.00|112.00|0.00|0.00| +20|2023-10-06T20:21:37.2210000-07:00|40022562|Zeromus|8B40|unknown_8b40|40022562|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:21:37.2210000-07:00|40022563|Zeromus|8B42|Abyssal Echoes|40022563|Zeromus|15.700|100.00|88.00|0.00|0.00| +20|2023-10-06T20:21:37.2210000-07:00|40022564|Zeromus|8B40|unknown_8b40|40022564|Zeromus|8.700|100.00|100.00|0.00|3.14| +37|2023-10-06T20:21:37.2660000-07:00|10FF0008|Kokosaze Lulusaze|0001A48D|1|79111|9200|10000|13||99.69|101.55|0.00|3.13|1B06|0|0|01|080006E9|0|41200000|| +26|2023-10-06T20:21:37.2660000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|40478540| +21|2023-10-06T20:21:37.2660000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|8A0F|A788000|0|0|0|0|0|0|0|0|0|0|1|128564|10000|10000|||99.96|97.40|0.00|3.14|1|128564|10000|10000|||99.96|97.40|0.00|3.14|0001A4BE|0|1| +261|2023-10-06T20:21:36.7820000-07:00|Change|10FF0008||| +21|2023-10-06T20:21:37.2660000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|752003|885C0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|38701877|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9200|10000|||99.69|101.55|0.00|3.13|0001A4BF|0|1| +37|2023-10-06T20:21:37.3100000-07:00|10FF0005|Wuwuchu Wuchu|0001A48D|1|90055|10000|10000|11||97.95|101.49|0.00|3.05|2707|0|0|02|0A0004E2|0|C1200000|||||| +26|2023-10-06T20:21:37.3100000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|40478540| +37|2023-10-06T20:21:37.3100000-07:00|40022550|Zeromus|0001A4BA|38638925||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:37.3100000-07:00|10FF0001|Sesuga Sapisuga|0001A4BA|10166||||||100.10|95.77|0.00|-3.14| +36|2023-10-06T20:21:37.3100000-07:00|0528|3| +37|2023-10-06T20:21:37.3550000-07:00|10FF0005|Wuwuchu Wuchu|0001A4B6|1|90055|10000|10000|11||97.95|101.49|0.00|3.05|2700|0|0|01|0A0004E2|0|C1200000|| +39|2023-10-06T20:21:37.3550000-07:00|10FF0001|Sesuga Sapisuga|11443|127791|7400|10000|||100.10|95.77|0.00|-3.14| +39|2023-10-06T20:21:37.3550000-07:00|10FF0004|Buhojaqe Zijaqe|808|80739|10000|10000|||100.05|99.66|0.00|-3.14| +37|2023-10-06T20:21:37.4450000-07:00|40022550|Zeromus|0001A4B9|38616686||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:37.4450000-07:00|10FF0002|Suchichi Suchi|0001A4B9|902|90128|10000|10000|11||100.08|100.57|0.00|-3.14|1600|0|0|01|09000074|0|C0A00000|| +39|2023-10-06T20:21:37.4450000-07:00|10FF0005|Wuwuchu Wuchu|901|90055|10000|10000|||97.95|101.49|0.00|3.05| +39|2023-10-06T20:21:37.4450000-07:00|400225E5|Demi-Bahamut|65138|68265|10000|10000|||102.01|110.25|0.00|-3.07| +21|2023-10-06T20:21:37.4450000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3C1B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|38638925|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|80739|8925|10000|||100.11|100.54|0.00|-3.13|0001A4C0|0|1| +38|2023-10-06T20:21:37.4450000-07:00|400225E5|Demi-Bahamut|005A5A00|0|0|0|0|0||102.01|110.25|0.00|-3.07|0|0|0|||| +30|2023-10-06T20:21:37.4450000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|400225E5|Demi-Bahamut|00|68265|79111| +30|2023-10-06T20:21:37.4450000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|400225E5|Demi-Bahamut|2940|68265|79111| +30|2023-10-06T20:21:37.4450000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|400225E5|Demi-Bahamut|00|68265|90055| +261|2023-10-06T20:21:36.8970000-07:00|Change|400225E5||||||| +30|2023-10-06T20:21:37.4450000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|400225E5|Demi-Bahamut|00|68265|90128| +30|2023-10-06T20:21:37.4450000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400225E5|Demi-Bahamut|00|68265|73085| +261|2023-10-06T20:21:37.0210000-07:00|Change|10FF0006||||||||||||||||||| +38|2023-10-06T20:21:37.4890000-07:00|40022634||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||||||||| +37|2023-10-06T20:21:37.4890000-07:00|10FF0005|Wuwuchu Wuchu|0001A4BB|901|90055|10000|10000|11||97.95|101.49|0.00|3.05|2700|0|0|01|0A0004E2|0|41200000|| +39|2023-10-06T20:21:37.4890000-07:00|10FF0006|Wowobora Gogobora|808|80739|8730|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:37.4890000-07:00|40022634||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||||||||| +38|2023-10-06T20:21:37.4890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|901|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:37.0210000-07:00|Change|10FF0001||| +21|2023-10-06T20:21:37.5770000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|756003|E1200000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|38616686|40478540|10000|10000|||100.00|80.10|0.00|0.00|731|73085|9600|10000|||100.18|100.57|-0.02|-3.13|0001A4C1|0|1| +38|2023-10-06T20:21:37.5770000-07:00|10FF0003|Gegehi Gehi|005A5A23|731|73085|9200|10000|14||100.18|100.57|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:37.5770000-07:00|7B3|Manafication|6.31|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73085|73085| +37|2023-10-06T20:21:37.6220000-07:00|10FF0002|Suchichi Suchi|0001A4BC|902|90128|10000|10000|11||100.08|100.57|0.00|-3.14|1600|0|0|01|09000074|0|40A00000|| +21|2023-10-06T20:21:37.6220000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|59640000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|38616686|40478540|10000|10000|||100.00|80.10|0.00|0.00|808|80739|10000|10000|||100.05|99.66|0.00|-3.14|0001A4C2|0|1| +38|2023-10-06T20:21:37.6220000-07:00|10FF0002|Suchichi Suchi|005A5A16|902|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:21:37.1360000-07:00|40022634|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||99.73|99.83|0.00|-0.01| +261|2023-10-06T20:21:37.1360000-07:00|Add|40022634||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:37.1360000-07:00|Change|4002255E||||||||||||| +261|2023-10-06T20:21:37.1360000-07:00|Change|40022561||||||||||||| +261|2023-10-06T20:21:37.1360000-07:00|Change|40022562||||||||||||| +261|2023-10-06T20:21:37.1360000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:21:37.1360000-07:00|Change|40022564||||||||||||| +261|2023-10-06T20:21:37.1360000-07:00|Change|40022560||||||||||||| +261|2023-10-06T20:21:37.1360000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:21:37.1360000-07:00|Change|4002255F||||||||||||| +261|2023-10-06T20:21:37.2310000-07:00|Change|10FF0004||| +261|2023-10-06T20:21:37.2310000-07:00|Change|40022634||| +37|2023-10-06T20:21:37.7110000-07:00|40022550|Zeromus|0001A4BD|38612437||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:37.2310000-07:00|Change|10FF0003||| +37|2023-10-06T20:21:37.8450000-07:00|10FF0007|Kehabiqo Febiqo|0001A4BE|1|128564|10000|10000|7||99.96|97.37|0.00|-3.14|1500|0|0|03|0F000A76|0190|41000000|||||||||| +26|2023-10-06T20:21:37.8450000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +26|2023-10-06T20:21:37.8450000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:21:37.8450000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:21:37.8450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|1|128564|10000|10000|7||99.96|97.37|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:37.8890000-07:00|40022550|Zeromus|0001A4BF|38577529||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:37.9340000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38612437|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|128564|10000|10000|||99.96|97.37|0.00|-3.14|0001A4C3|0|1| +21|2023-10-06T20:21:37.9340000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38612437|40478540|10000|10000|||100.00|80.10|0.00|0.00|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C4|0|1| +21|2023-10-06T20:21:37.9340000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|712003|71960000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|38612437|40478540|10000|10000|||100.00|80.10|0.00|0.00|901|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4C5|0|1| +38|2023-10-06T20:21:37.9340000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|901|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:37.9340000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:21:38.0250000-07:00|10FF0007|Kehabiqo Febiqo|1286|128564|10000|10000|||99.96|97.31|0.00|-3.13| +39|2023-10-06T20:21:38.0250000-07:00|10FF0008|Kokosaze Lulusaze|792|79111|9100|10000|||99.69|101.55|0.00|3.13| +22|2023-10-06T20:21:38.0250000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0006|Wowobora Gogobora|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C6|0|8| +22|2023-10-06T20:21:38.0250000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0002|Suchichi Suchi|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|902|90128|10000|10000|||100.08|100.57|0.00|-3.14|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C6|1|8| +22|2023-10-06T20:21:38.0250000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0003|Gegehi Gehi|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|731|73085|9200|10000|||100.18|100.57|-0.02|-3.13|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C6|2|8| +22|2023-10-06T20:21:38.0250000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0004|Buhojaqe Zijaqe|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|808|80739|9600|10000|||100.05|99.64|0.00|-3.14|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C6|3|8| +22|2023-10-06T20:21:38.0250000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0008|Kokosaze Lulusaze|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|1|79111|8900|10000|||99.69|101.55|0.00|3.13|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C6|4|8| +22|2023-10-06T20:21:38.0250000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0005|Wuwuchu Wuchu|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|901|90055|10000|10000|||97.95|101.49|0.00|3.05|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C6|5|8| +22|2023-10-06T20:21:38.0250000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0007|Kehabiqo Febiqo|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|1|128564|10000|10000|||99.96|97.31|0.00|-3.13|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C6|6|8| +22|2023-10-06T20:21:38.0250000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0001|Sesuga Sapisuga|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|11443|127791|7400|10000|||100.10|95.77|0.00|-3.14|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4C6|7|8| +21|2023-10-06T20:21:38.0690000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38577529|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|79111|8900|10000|||99.69|101.55|0.00|3.13|0001A4C7|0|1| +24|2023-10-06T20:21:38.1120000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|150C|11443|127791|7400|10000|||100.10|95.77|0.00|-3.14|10FF0006|Wowobora Gogobora|0|808|80739|8730|10000|||100.11|100.54|0.00|-3.13| +261|2023-10-06T20:21:37.6110000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:21:38.1120000-07:00|40022550|Zeromus|0001A4C0|38562142||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:38.1120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|16831|127791|7400|10000|8||100.10|95.77|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:38.1120000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:21:38.2010000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|C3F40000|200004|3E3A8000|0|0|0|0|0|0|0|0|0|0|0|0|38562142|40478540|10000|10000|||100.00|80.10|0.00|0.00|1286|128564|10000|10000|||99.93|95.87|0.00|-3.13|0001A4C8|0|1| +38|2023-10-06T20:21:38.2010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|1286|128564|10000|10000|7||99.93|95.87|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:38.2010000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +21|2023-10-06T20:21:38.2900000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|EEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38562142|40478540|10000|10000|||100.00|80.10|0.00|0.00|902|90128|10000|10000|||100.08|100.57|0.00|-3.14|0001A4C9|0|1| +21|2023-10-06T20:21:38.2900000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|808|80739|9600|10000|||100.05|99.63|0.00|3.14|808|80739|9600|10000|||100.05|99.63|0.00|3.14|0001A4CA|0|1| +38|2023-10-06T20:21:38.2900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|808|80739|9600|10000|12||100.05|99.63|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:38.2900000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:21:37.9570000-07:00|Change|10FF0006||| +37|2023-10-06T20:21:38.4240000-07:00|40022550|Zeromus|0001A4C2|38539258||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:38.4240000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4C2|808|80739|9600|10000|12||100.05|99.58|0.00|-3.00|1C00|0|0|01|0D000768|0|C1700000|| +37|2023-10-06T20:21:38.4690000-07:00|40022550|Zeromus|0001A4C3|38536166||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:38.4690000-07:00|40022550|Zeromus|0001A4C4|38536127||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:38.4690000-07:00|40022550|Zeromus|0001A4C5|38507049||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:38.4690000-07:00|10FF0005|Wuwuchu Wuchu|0001A4C5|901|90055|10000|10000|11||97.95|101.49|0.00|3.05|2700|0|0|01|0F000A1F|0|41F00000|| +38|2023-10-06T20:21:38.4690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|901|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +34|2023-10-06T20:21:38.5140000-07:00|40022634|Carbuncle|40022634|Carbuncle|01| +261|2023-10-06T20:21:38.0700000-07:00|Change|40022634||| +37|2023-10-06T20:21:38.6030000-07:00|40022550|Zeromus|0001A4C7|38506849||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:38.6030000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1E2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38507049|40478540|10000|10000|||100.00|80.10|0.00|0.00|901|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4CB|0|1| +24|2023-10-06T20:21:38.6470000-07:00|10FF0002|Suchichi Suchi|HoT|0|D3F|902|90128|10000|10000|||100.08|100.57|0.00|-3.14|40022550|Zeromus|0|38507049|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:38.6470000-07:00|10FF0002|Suchichi Suchi|005A5A16|4293|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:21:38.6920000-07:00|10FF0003|Gegehi Gehi|HoT|0|15B8|731|73085|9200|10000|||100.13|100.44|0.00|-3.13|40022550|Zeromus|0|38506849|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:38.6920000-07:00|10FF0003|Gegehi Gehi|005A5A23|6291|73085|9200|10000|14||100.13|100.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:38.8250000-07:00|40022550|Zeromus|0001A4C9|38503030||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:38.8700000-07:00|10FF0006|Wowobora Gogobora|0001A4C6|808|80739|8730|10000|0||100.11|100.54|0.00|-3.13|2800|0|0|02|0A000A3C|0|41700000|||||| +26|2023-10-06T20:21:38.8700000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:21:38.8700000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +24|2023-10-06T20:21:38.8700000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1488|16831|127791|7400|10000|||100.10|95.77|0.00|-3.14|40022550|Zeromus|0|38506849|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:38.8700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CC9|808|80739|9600|10000|||100.05|99.45|-0.01|-3.00|40022550|Zeromus|0|38506849|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:38.8700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|22087|127791|7400|10000|8||100.10|95.77|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:38.8700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|4081|80739|9600|10000|12||100.05|99.45|-0.01|-3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:38.9150000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4CA|4081|80739|9600|10000|12||100.05|99.44|0.00|-3.00|1C00|0|0|01|0D000768|0|41700000|| +21|2023-10-06T20:21:38.9150000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F722003|A15D0000|104|1E298000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|38503030|40478540|10000|10000|||100.00|80.10|0.00|0.00|4293|90128|10000|10000|||100.08|100.57|0.00|-3.14|0001A4CC|0|1| +20|2023-10-06T20:21:38.9150000-07:00|10FF0006|Wowobora Gogobora|5EFE|Pneuma|40022550|Zeromus|1.462|100.11|100.54|0.00|-3.13| +21|2023-10-06T20:21:38.9150000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|752003|DB480000|4|27C18000|0|0|0|0|0|0|0|0|0|0|0|0|38503030|40478540|10000|10000|||100.00|80.10|0.00|0.00|22087|127791|7400|10000|||100.10|95.77|0.00|-3.14|0001A4CD|0|1| +38|2023-10-06T20:21:38.9150000-07:00|10FF0002|Suchichi Suchi|005A5A16|4293|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:38.9150000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:21:38.9150000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:38.9150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|22087|127791|6400|10000|8||100.10|95.77|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:38.9150000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +38|2023-10-06T20:21:38.9150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|4081|80739|9600|10000|12||100.05|99.44|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:21:38.9150000-07:00|10FF0001||||| +261|2023-10-06T20:21:38.4380000-07:00|Change|10FF0001||| +24|2023-10-06T20:21:38.9590000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|14D3|901|90055|10000|10000|||97.95|101.49|0.00|3.05|10FF0005|Wuwuchu Wuchu|0|901|90055|10000|10000|||97.95|101.49|0.00|3.05| +38|2023-10-06T20:21:38.9590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|6232|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:39.0040000-07:00|10FF0002|Suchichi Suchi|0001A4C6|4293|90128|10000|10000|11||100.08|100.57|0.00|-3.14|1601|0|0|03|09000A3C|0|41700000|||||||||| +26|2023-10-06T20:21:39.0040000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:21:39.0040000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +24|2023-10-06T20:21:39.0040000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1E85|808|80739|8730|10000|||100.11|100.54|0.00|-3.13|10FF0006|Wowobora Gogobora|0|808|80739|8730|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:39.0040000-07:00|10FF0006|Wowobora Gogobora|005A5A28|8621|80739|8730|10000|0||100.11|100.54|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:39.0040000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +20|2023-10-06T20:21:39.0930000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.05|99.44|0.00|-3.00| +261|2023-10-06T20:21:38.5390000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:21:39.1380000-07:00|10FF0003|Gegehi Gehi|0001A4C6|6291|73085|9200|10000|14||99.67|99.48|-0.01|-3.13|2302|0|0|02|0C000A3C|0|41700000|||||| +26|2023-10-06T20:21:39.1380000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:21:39.1380000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:21:39.1380000-07:00|40022550|Zeromus|0001A4CB|38495305||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:39.2710000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4C6|4081|80739|9600|10000|12||100.05|99.44|0.00|-3.03|1C03|0|0|02|0E000A3C|0|41700000|||||| +26|2023-10-06T20:21:39.2710000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:21:39.2710000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:21:39.3590000-07:00|40022550|Zeromus|0001A4C8|38445141||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:39.3590000-07:00|10FF0007|Kehabiqo Febiqo|0001A4C8|17216||||||99.93|95.62|0.00|3.14| +37|2023-10-06T20:21:39.4040000-07:00|10FF0008|Kokosaze Lulusaze|0001A4C6|792|79111|9100|10000|13||99.81|101.37|0.00|2.97|1B04|0|0|02|0C000A3C|0|41700000|||||| +26|2023-10-06T20:21:39.4040000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:21:39.4040000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:21:39.4040000-07:00|40022550|Zeromus|0001A4C1|38387509||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:39.4490000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|109F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38387509|40478540|10000|10000|||100.00|80.10|0.00|0.00|22087|127791|6400|10000|||100.11|94.34|0.00|3.14|0001A4CE|0|1| +21|2023-10-06T20:21:39.4490000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|716003|A4A60000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|38387509|40478540|10000|10000|||100.00|80.10|0.00|0.00|6232|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4CF|0|1| +38|2023-10-06T20:21:39.4490000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|6232|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:39.4490000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:21:39.4490000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +31|2023-10-06T20:21:39.4490000-07:00|10FF0001||||| +261|2023-10-06T20:21:38.9990000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:21:39.5390000-07:00|10FF0005|Wuwuchu Wuchu|0001A4C6|6232|90055|10000|10000|11||97.95|101.49|0.00|3.05|2705|0|0|03|0F000A1E|0|C1F00000|||||||||| +26|2023-10-06T20:21:39.5390000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:21:39.5390000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:21:39.5390000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|C8F|17216|128564|10000|10000|||99.93|95.62|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|17216|128564|10000|10000|||99.93|95.62|0.00|3.14| +24|2023-10-06T20:21:39.5390000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|279B|792|79111|9100|10000|||99.81|101.37|0.00|2.97|10FF0006|Wowobora Gogobora|0|8621|80739|8730|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:39.5390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|20431|128564|10000|10000|7||99.93|95.62|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:39.5390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|10931|79111|9100|10000|13||99.81|101.37|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:39.6260000-07:00|40022550|Zeromus|0001A4CC|38346200||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:39.6260000-07:00|10FF0002|Suchichi Suchi|0001A4CC|12014|90128|10000|10000|11||100.08|100.57|0.00|-3.14|1600|0|0|01|0D000322|0|41F00000|| +21|2023-10-06T20:21:39.6260000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|776A0F|A748000|0|0|0|0|0|0|0|0|0|0|22087|127791|6400|10000|||100.11|94.34|0.00|3.14|22087|127791|6400|10000|||100.11|94.34|0.00|3.14|0001A4D0|0|1| +38|2023-10-06T20:21:39.6260000-07:00|10FF0002|Suchichi Suchi|005A5A16|12014|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:39.6260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|22087|127791|6400|10000|8||100.11|94.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:39.6260000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:21:39.6260000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:21:39.6260000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:21:39.6260000-07:00|10FF0001||||| +37|2023-10-06T20:21:39.6700000-07:00|10FF0007|Kehabiqo Febiqo|0001A4C6|20431|128564|10000|10000|7||99.92|95.18|0.00|3.14|1506|0|0|02|09000A3C|0|41700000|||||| +26|2023-10-06T20:21:39.6700000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:21:39.6700000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:21:39.7610000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|38346200|40478540|10000|10000|||100.00|80.10|0.00|0.00|10931|79111|9100|10000|||99.81|101.37|0.00|2.97|0001A4D1|0|1| +38|2023-10-06T20:21:39.7610000-07:00|40022634|Carbuncle|005A5A00|0|0|0|0|0||99.73|99.83|0.00|-0.01|0|0|0|||| +26|2023-10-06T20:21:39.7610000-07:00|30|Well Fed|2359.24|10FF0008|Kokosaze Lulusaze|40022634|Carbuncle|2964|75851|79111| +261|2023-10-06T20:21:39.3220000-07:00|Change|40022634||||||| +38|2023-10-06T20:21:39.8050000-07:00|40022638||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||||||||| +37|2023-10-06T20:21:39.8050000-07:00|10FF0001|Sesuga Sapisuga|0001A4C6|22087|127791|6400|10000|8||100.11|94.25|0.00|3.14|1307|0|0|02|12000A3C|0|41700000|||||| +26|2023-10-06T20:21:39.8050000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:21:39.8050000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:21:39.8050000-07:00|40022550|Zeromus|0001A4CD|38290064||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:39.8050000-07:00|10FF0001|Sesuga Sapisuga|0001A4CD|32264||||||100.11|94.25|0.00|3.14| +21|2023-10-06T20:21:39.8050000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|726003|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38346200|40478540|10000|10000|||100.00|80.10|0.00|0.00|6291|73085|9200|10000|||99.66|99.44|0.00|-3.13|0001A4D2|0|1| +38|2023-10-06T20:21:39.8050000-07:00|40022638||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||||||||| +21|2023-10-06T20:21:39.8490000-07:00|10FF0006|Wowobora Gogobora|5EFE|Pneuma|40022550|Zeromus|750003|3A1B0000|3D|0|1B|5EFE8000|0|0|0|0|0|0|0|0|0|0|38346200|40478540|10000|10000|||100.00|80.10|0.00|0.00|8621|80739|8730|10000|||100.11|100.54|0.00|-3.13|0001A4D3|0|1| +37|2023-10-06T20:21:39.9830000-07:00|40022550|Zeromus|0001A4CE|38285809||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:39.9830000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|756003|3DA4001|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|38290064|40478540|10000|10000|||100.00|80.10|0.00|0.00|6291|73085|9200|10000|||99.66|99.44|0.00|-3.13|0001A4D4|0|1| +38|2023-10-06T20:21:39.9830000-07:00|10FF0003|Gegehi Gehi|005A5A23|6291|73085|8800|10000|14||99.66|99.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:39.9830000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73085|73085| +261|2023-10-06T20:21:39.5150000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:21:40.0280000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|754003|437F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|38285809|40478540|10000|10000|||100.00|80.10|0.00|0.00|4081|80739|9600|10000|||100.05|99.44|0.00|-3.14|0001A4D5|0|1| +37|2023-10-06T20:21:40.0720000-07:00|40022550|Zeromus|0001A4CF|38243659||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:40.0720000-07:00|10FF0005|Wuwuchu Wuchu|0001A4CF|6232|90055|10000|10000|11||97.95|101.49|0.00|3.05|2700|0|0|01|0F000A1E|0|41F00000|| +38|2023-10-06T20:21:40.0720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|6232|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:39.6060000-07:00|Add|40022638||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:21:39.6060000-07:00|40022638|Topaz Titan|00|5A|10FF0008|00||10264|13507|72376|75851|10000|10000|||101.57|103.17|0.00|3.13| +261|2023-10-06T20:21:39.6060000-07:00|Remove|40022638| +261|2023-10-06T20:21:39.7280000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:21:39.7280000-07:00|Add|40022638||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:39.7280000-07:00|Change|40022638||||| +39|2023-10-06T20:21:40.1610000-07:00|10FF0002|Suchichi Suchi|12915|90128|10000|10000|||100.08|100.57|0.00|-3.14| +39|2023-10-06T20:21:40.2060000-07:00|10FF0003|Gegehi Gehi|7021|73085|9000|10000|||99.66|99.44|0.00|3.12| +24|2023-10-06T20:21:40.2060000-07:00|40022550|Zeromus|DoT|0|3843|38243659|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|32264|127791|6400|10000|||100.11|93.84|0.00|3.14| +38|2023-10-06T20:21:40.2060000-07:00|40022550|Zeromus|005A5A00|38229256|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T20:21:40.3380000-07:00|40022550|Zeromus|0001A4D2|38229206||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:21:40.3380000-07:00|0604|3| +39|2023-10-06T20:21:40.3830000-07:00|10FF0001|Sesuga Sapisuga|33541|127791|6600|10000|||100.11|93.84|0.00|3.14| +39|2023-10-06T20:21:40.3830000-07:00|10FF0004|Buhojaqe Zijaqe|4888|80739|9400|10000|||100.05|99.44|0.00|-3.14| +24|2023-10-06T20:21:40.4270000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|17E8|32264|127791|6400|10000|||100.11|93.84|0.00|3.14|10FF0006|Wowobora Gogobora|0|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13| +22|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0006|Wowobora Gogobora|200004|CC090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D6|0|8| +22|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0002|Suchichi Suchi|4|7B8C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12915|90128|10000|10000|||100.08|100.57|0.00|-3.14|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D6|1|8| +22|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0008|Kokosaze Lulusaze|4|7FA40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10931|79111|9100|10000|||99.81|101.37|0.00|3.13|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D6|2|8| +22|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0004|Buhojaqe Zijaqe|200004|C8800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4081|80739|9200|10000|||100.05|99.44|0.00|-3.14|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D6|3|8| +22|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0003|Gegehi Gehi|4|7D070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7021|73085|9000|10000|||99.66|99.44|0.00|3.12|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D6|4|8| +22|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0005|Wuwuchu Wuchu|200004|CA1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6232|90055|10000|10000|||97.95|101.49|0.00|3.05|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D6|5|8| +22|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0007|Kehabiqo Febiqo|200004|D14A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431|128564|10000|10000|||99.90|94.50|0.00|3.14|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D6|6|8| +22|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0001|Sesuga Sapisuga|4|80D50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32264|127791|6400|10000|||100.11|93.84|0.00|3.14|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D6|7|8| +37|2023-10-06T20:21:40.4270000-07:00|40022550|Zeromus|0001A4D3|38214331||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|0001A4D3|8621|80739|8030|10000|0||100.11|100.54|0.00|-3.13|2800|0|0|01|06000000|0|0|| +38|2023-10-06T20:21:40.4270000-07:00|10FF0006|Wowobora Gogobora|005A5A28|8621|80739|8030|10000|0||100.11|100.54|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:40.4270000-07:00|A33|Zoe|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:21:40.4270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|39661|127791|6600|10000|8||100.11|93.84|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:40.4270000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +39|2023-10-06T20:21:40.4710000-07:00|10FF0005|Wuwuchu Wuchu|7132|90055|10000|10000|||97.95|101.49|0.00|3.05| +22|2023-10-06T20:21:40.4720000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|37350000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D7|0|8| +22|2023-10-06T20:21:40.4720000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|200004|57BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12915|90128|10000|10000|||100.08|100.57|0.00|-3.14|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D7|1|8| +22|2023-10-06T20:21:40.4720000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|4|38630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10931|79111|9100|10000|||99.81|101.37|0.00|3.13|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D7|2|8| +22|2023-10-06T20:21:40.4720000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|395D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4081|80739|9200|10000|||100.05|99.44|0.00|-3.14|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D7|3|8| +22|2023-10-06T20:21:40.4720000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|200004|5C070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7021|73085|9000|10000|||99.66|99.44|0.00|3.12|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D7|4|8| +22|2023-10-06T20:21:40.4720000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|378D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6232|90055|10000|10000|||97.95|101.49|0.00|3.05|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D7|5|8| +22|2023-10-06T20:21:40.4720000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|4|38410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431|128564|10000|10000|||99.90|94.50|0.00|3.14|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D7|6|8| +22|2023-10-06T20:21:40.4720000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|200004|58060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32264|127791|6400|10000|||100.11|93.84|0.00|3.14|8621|80739|8030|10000|||100.11|100.54|0.00|-3.13|0001A4D7|7|8| +261|2023-10-06T20:21:40.0720000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:21:40.0720000-07:00|Change|10FF0003||| +261|2023-10-06T20:21:40.0720000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:21:40.5160000-07:00|10FF0006|Wowobora Gogobora|0001A4D6|60854||||||100.11|100.54|0.00|-3.13| +39|2023-10-06T20:21:40.5160000-07:00|10FF0006|Wowobora Gogobora|61661|80739|8235|10000|||100.11|100.54|0.00|-3.13| +37|2023-10-06T20:21:40.6510000-07:00|10FF0002|Suchichi Suchi|0001A4D6|44543||||||100.08|100.57|0.00|-3.14| +21|2023-10-06T20:21:40.6510000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|BADF0000|200004|3F3E8000|0|0|0|0|0|0|0|0|0|0|0|0|38214331|40478540|10000|10000|||100.00|80.10|0.00|0.00|20431|128564|10000|10000|||99.90|94.50|0.00|3.14|0001A4D8|0|1| +38|2023-10-06T20:21:40.6510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|20431|128564|10000|10000|7||99.90|94.50|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:40.6510000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +22|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|599A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|0001A4D9|0|8| +22|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|5BFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7021|73085|9000|10000|||99.66|99.44|0.00|3.12|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|0001A4D9|1|8| +22|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|57A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61661|80739|8235|10000|||100.11|100.54|0.00|-3.13|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|0001A4D9|2|8| +22|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0002|Suchichi Suchi|200004|5BC60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44543|90128|10000|10000|||100.08|100.57|0.00|-3.14|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|0001A4D9|3|8| +22|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|58890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431|128564|10000|10000|||99.90|94.50|0.00|3.14|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|0001A4D9|4|8| +22|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|5A5D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10931|79111|9100|10000|||99.81|101.37|0.00|3.13|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|0001A4D9|5|8| +22|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|57D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39661|127791|6600|10000|||100.11|93.66|0.00|3.14|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|0001A4D9|6|8| +22|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0005|Wuwuchu Wuchu|200004|58480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7132|90055|10000|10000|||97.95|101.49|0.00|3.05|4888|80739|9400|10000|||100.05|98.81|0.00|-3.14|0001A4D9|7|8| +38|2023-10-06T20:21:40.6950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|4888|80739|9400|10000|12||100.05|98.81|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:40.6950000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:21:40.7850000-07:00|10FF0008|Kokosaze Lulusaze|0001A4D6|43607||||||99.81|101.37|0.00|3.13| +261|2023-10-06T20:21:40.3720000-07:00|Change|40022638||| +37|2023-10-06T20:21:40.8290000-07:00|40022550|Zeromus|0001A4D5|38197052||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:21:40.9180000-07:00|0730|3| +37|2023-10-06T20:21:40.9180000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4D6|56216||||||100.05|98.31|0.00|-3.12| +21|2023-10-06T20:21:40.9630000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38197052|40478540|10000|10000|||100.00|80.10|0.00|0.00|56216|80739|9400|10000|||100.05|98.13|0.00|-3.07|0001A4DA|0|1| +21|2023-10-06T20:21:40.9630000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|712003|81CF0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|38197052|40478540|10000|10000|||100.00|80.10|0.00|0.00|7132|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4DB|0|1| +38|2023-10-06T20:21:40.9630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|7132|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:40.9630000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:21:40.9630000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +36|2023-10-06T20:21:41.0520000-07:00|085C|3| +37|2023-10-06T20:21:41.0520000-07:00|10FF0003|Gegehi Gehi|0001A4D6|39028||||||99.66|99.44|0.00|3.12| +39|2023-10-06T20:21:41.0520000-07:00|10FF0007|Kehabiqo Febiqo|21716|128564|10000|10000|||99.90|94.50|0.00|3.14| +39|2023-10-06T20:21:41.0520000-07:00|10FF0008|Kokosaze Lulusaze|44398|79111|9300|10000|||99.81|101.37|0.00|3.13| +21|2023-10-06T20:21:41.0520000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|720003|19C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38197052|40478540|10000|10000|||100.00|80.10|0.00|0.00|7021|73085|9000|10000|||99.66|99.44|0.00|3.12|0001A4DC|0|1| +21|2023-10-06T20:21:41.0960000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|1E2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38197052|40478540|10000|10000|||100.00|80.10|0.00|0.00|44543|90128|10000|10000|||100.08|100.57|0.00|-3.14|0001A4DD|0|1| +261|2023-10-06T20:21:40.6720000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:21:40.6720000-07:00|Change|10FF0004||||||||| +36|2023-10-06T20:21:41.1850000-07:00|0988|3| +37|2023-10-06T20:21:41.1850000-07:00|10FF0005|Wuwuchu Wuchu|0001A4D6|58873|90055|10000|10000|11||97.95|101.49|0.00|3.05|2705|0|0|01|0F000A1F|0|C1F00000|| +21|2023-10-06T20:21:41.1850000-07:00|40022566|Zeromus|8B41|unknown_8b41|40022566|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-2.36|44|44|0|10000|||100.00|100.00|0.00|-2.36|0001A4DE|0|1| +21|2023-10-06T20:21:41.1850000-07:00|40022568|Zeromus|8B41|unknown_8b41|40022568|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|0001A4DF|0|1| +04|2023-10-06T20:21:40.7920000-07:00|400225E5|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|0|0|0|10000|||102.01|110.25|0.00|-3.07| +21|2023-10-06T20:21:41.1850000-07:00|4002256A|Zeromus|8B40|unknown_8b40|4002256A|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-1.57|44|44|0|10000|||100.00|100.00|0.00|-1.57|0001A4E0|0|1| +21|2023-10-06T20:21:41.1860000-07:00|4002256C|Zeromus|8B40|unknown_8b40|4002256C|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|1.57|44|44|0|10000|||100.00|100.00|0.00|1.57|0001A4E1|0|1| +21|2023-10-06T20:21:41.1860000-07:00|4002256E|Zeromus|8D2B|unknown_8d2b|4002256E|Zeromus|1B|8D2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A4E2|0|1| +261|2023-10-06T20:21:40.7920000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:21:40.7920000-07:00|Change|40022566||||||||||||| +37|2023-10-06T20:21:41.2300000-07:00|10FF0006|Wowobora Gogobora|0001A4D7|75794|80739|8935|10000|0||100.11|100.54|0.00|-3.13|2800|0|0|0| +261|2023-10-06T20:21:40.7920000-07:00|Change|4002256A||||||||||||| +21|2023-10-06T20:21:41.2300000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38197052|40478540|10000|10000|||100.00|80.10|0.00|0.00|44398|79111|9300|10000|||99.81|101.37|0.00|3.13|0001A4E3|0|1| +261|2023-10-06T20:21:40.7920000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:21:40.7920000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:21:40.7920000-07:00|Remove|400225E5| +37|2023-10-06T20:21:41.3180000-07:00|10FF0007|Kehabiqo Febiqo|0001A4D6|75294||||||99.90|94.50|0.00|3.14| +37|2023-10-06T20:21:41.3180000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4D9|79154||||||100.05|97.93|-0.01|-3.01| +21|2023-10-06T20:21:41.3180000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|15580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38197052|40478540|10000|10000|||100.00|80.10|0.00|0.00|21716|128564|10000|10000|||99.90|94.50|0.00|3.14|0001A4E4|0|1| +37|2023-10-06T20:21:41.3620000-07:00|10FF0002|Suchichi Suchi|0001A4D7|67003||||||100.08|100.57|0.00|-3.14| +20|2023-10-06T20:21:41.3620000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.11|100.54|0.00|-3.13| +21|2023-10-06T20:21:41.4070000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|39290000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|38197052|40478540|10000|10000|||100.00|80.10|0.00|0.00|44543|90128|10000|10000|||100.08|100.57|0.00|-3.14|0001A4E5|0|1| +38|2023-10-06T20:21:41.4070000-07:00|10FF0002|Suchichi Suchi|005A5A16|67003|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:41.4070000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:21:41.4070000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:21:41.0250000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:21:41.4520000-07:00|10FF0001|Sesuga Sapisuga|0001A4D6|72642||||||100.11|93.66|0.00|-3.13| +37|2023-10-06T20:21:41.4520000-07:00|10FF0003|Gegehi Gehi|0001A4D9|62576||||||99.66|99.44|0.00|3.12| +21|2023-10-06T20:21:41.4520000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|754003|58710000|200004|4ADB8000|0|0|0|0|0|0|0|0|0|0|0|0|38197052|40478540|10000|10000|||100.00|80.10|0.00|0.00|39661|127791|6600|10000|||100.11|93.66|0.00|-3.13|0001A4E6|0|1| +38|2023-10-06T20:21:41.4520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|72642|127791|5600|10000|8||100.11|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:41.4520000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:21:41.4960000-07:00|10FF0008|Kokosaze Lulusaze|0001A4D7|58833||||||99.81|101.37|0.00|3.13| +37|2023-10-06T20:21:41.4960000-07:00|40022550|Zeromus|0001A4DA|38196889||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:41.4960000-07:00|40022550|Zeromus|0001A4DB|38163658||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:41.4960000-07:00|10FF0005|Wuwuchu Wuchu|0001A4DB|58873|90055|10000|10000|11||97.95|101.49|0.00|3.05|2700|0|0|01|0F000A1F|0|41F00000|| +20|2023-10-06T20:21:41.4960000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.05|97.92|0.00|-3.00| +38|2023-10-06T20:21:41.4960000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|58873|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:41.5400000-07:00|40022550|Zeromus|0001A4D4|38097136||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:41.5850000-07:00|40022550|Zeromus|0001A4D8|38049297||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:41.5850000-07:00|10FF0007|Kehabiqo Febiqo|0001A4D8|91484||||||99.90|94.50|0.00|3.14| +37|2023-10-06T20:21:41.5850000-07:00|10FF0006|Wowobora Gogobora|0001A4D9|80739|80739|8935|10000|0||100.11|100.54|0.00|-3.13|2802|0|0|01|09000000|0|0|| +38|2023-10-06T20:21:41.5850000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8935|10000|0||100.11|100.54|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:41.5850000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:21:41.5850000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0006|Wowobora Gogobora|00|80739|40478540| +261|2023-10-06T20:21:41.1420000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:21:41.6290000-07:00|40022550|Zeromus|0001A4DD|38041575||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:41.6290000-07:00|10FF0002|Suchichi Suchi|0001A4DD|67003|90128|10000|10000|11||100.08|100.57|0.00|-3.14|1600|0|0|01|0F000323|0|C1F00000|| +37|2023-10-06T20:21:41.6290000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4D7|80739|80739|9400|10000|12||100.05|97.92|0.00|-3.00|1C03|0|0|01|0C000000|0|0|| +37|2023-10-06T20:21:41.6290000-07:00|40022550|Zeromus|0001A4DC|38034975||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:41.6290000-07:00|10FF0002|Suchichi Suchi|HoT|0|2A2A|67003|90128|10000|10000|||100.08|100.57|0.00|-3.14|10FF0006|Wowobora Gogobora|0|80739|80739|8935|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:41.6290000-07:00|10FF0002|Suchichi Suchi|005A5A16|77797|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:41.6290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9400|10000|12||100.05|97.92|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:41.6290000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|40478540| +24|2023-10-06T20:21:41.6740000-07:00|10FF0003|Gegehi Gehi|HoT|0|1E08|62576|73085|9000|10000|||99.66|99.44|0.00|3.12|10FF0006|Wowobora Gogobora|0|80739|80739|8935|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:41.6740000-07:00|10FF0003|Gegehi Gehi|005A5A23|70264|73085|9000|10000|14||99.66|99.44|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:41.7180000-07:00|10FF0002|Suchichi Suchi|0001A4D9|90128|90128|10000|10000|11||100.08|100.57|0.00|-3.14|1603|0|0|02|0C000000|0|0|||||| +21|2023-10-06T20:21:41.7180000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|FDA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38034975|40478540|10000|10000|||100.00|80.10|0.00|0.00|72642|127791|5600|10000|||100.11|93.66|0.00|-3.13|0001A4E7|0|1| +21|2023-10-06T20:21:41.7180000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|26490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38034975|40478540|10000|10000|||100.00|80.10|0.00|0.00|58873|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4E8|0|1| +38|2023-10-06T20:21:41.7180000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:41.7180000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0002|Suchichi Suchi|00|90128|40478540| +31|2023-10-06T20:21:41.7180000-07:00|10FF0001||||| +37|2023-10-06T20:21:41.7630000-07:00|40022550|Zeromus|0001A4E3|38034817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:41.7630000-07:00|10FF0003|Gegehi Gehi|0001A4D7|73085|73085|9000|10000|14||99.66|99.44|0.00|3.12|2304|0|0|01|0B000000|0|0|| +38|2023-10-06T20:21:41.7630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|14||99.66|99.44|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:41.7630000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0003|Gegehi Gehi|00|73085|40478540| +261|2023-10-06T20:21:41.3340000-07:00|Change|40022634||| +21|2023-10-06T20:21:41.8070000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|17450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38034817|40478540|10000|10000|||100.00|80.10|0.00|0.00|58873|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4E9|0|1| +38|2023-10-06T20:21:41.8070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91484|128564|10000|10000|7||99.90|94.50|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:41.8070000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:21:41.8510000-07:00|40022550|Zeromus|0001A4E4|38029353||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:41.8510000-07:00|10FF0007|Kehabiqo Febiqo|0001A4D9|114149||||||99.90|94.50|0.00|3.14| +21|2023-10-06T20:21:41.8520000-07:00|40022638|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|450003|6B900000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|38034817|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.57|103.17|0.00|3.13|0001A4EA|0|1| +24|2023-10-06T20:21:41.8520000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|487F|72642|127791|5600|10000|||100.11|93.66|0.00|-3.13|10FF0006|Wowobora Gogobora|0|80739|80739|8935|10000|||100.11|100.54|0.00|-3.13| +24|2023-10-06T20:21:41.8520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|24B7|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|10FF0006|Wowobora Gogobora|0|80739|80739|8935|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:41.8520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|91201|127791|5600|10000|8||100.11|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:41.8520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9400|10000|12||100.05|97.92|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:41.8960000-07:00|10FF0005|Wuwuchu Wuchu|0001A4D7|73094||||||97.95|101.49|0.00|3.05| +24|2023-10-06T20:21:41.9410000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|3042|58873|90055|10000|10000|||97.95|101.49|0.00|3.05|10FF0006|Wowobora Gogobora|0|80739|80739|8935|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:41.9410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|85448|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:41.9850000-07:00|10FF0008|Kokosaze Lulusaze|0001A4D9|79111|79111|9300|10000|13||99.84|101.11|0.00|-3.11|1B05|0|0|01|08000000|0|0|| +24|2023-10-06T20:21:41.9850000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1CF4|80739|80739|8935|10000|||100.11|100.54|0.00|-3.13|10FF0006|Wowobora Gogobora|0|80739|80739|8935|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:41.9850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|13||99.84|101.11|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:41.9850000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|40478540| +38|2023-10-06T20:21:41.9850000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8935|10000|0||100.11|100.54|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:42.0300000-07:00|40022550|Zeromus|0001A4E5|38014720||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:42.0300000-07:00|10FF0002|Suchichi Suchi|0001A4E5|90128|90128|10000|10000|11||100.08|100.57|0.00|-3.14|1600|0|0|01|0F000323|0|41F00000|| +37|2023-10-06T20:21:42.0300000-07:00|10FF0007|Kehabiqo Febiqo|0001A4D7|128550||||||99.90|94.50|0.00|3.14| +38|2023-10-06T20:21:42.0300000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:42.1180000-07:00|10FF0001|Sesuga Sapisuga|0001A4D9|113683||||||100.11|93.66|0.00|-3.13| +37|2023-10-06T20:21:42.1630000-07:00|10FF0001|Sesuga Sapisuga|0001A4D7|127791|127791|5600|10000|8||100.11|93.66|0.00|-3.13|1307|0|0|01|0F000000|0|0|| +38|2023-10-06T20:21:42.1630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|8||100.11|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.1630000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|40478540| +37|2023-10-06T20:21:42.2070000-07:00|40022550|Zeromus|0001A4E6|37992079||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:41.7360000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:21:42.2070000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|48AE0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|38014720|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||99.87|100.95|0.00|-3.09|0001A4EB|0|1| +38|2023-10-06T20:21:42.2070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|13||99.87|100.95|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:42.2070000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:21:41.7360000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:21:42.2520000-07:00|40022550|Zeromus|0001A4E7|37988021||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:42.2520000-07:00|10FF0005|Wuwuchu Wuchu|0001A4D9|90055|90055|10000|10000|11||97.95|101.49|0.00|3.05|2707|0|0|01|0E000000|0|0|| +38|2023-10-06T20:21:42.2520000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.2520000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|40478540| +21|2023-10-06T20:21:42.2970000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5E8F0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|37988021|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8935|10000|||100.11|100.54|0.00|-3.13|0001A4EC|0|1| +37|2023-10-06T20:21:42.3410000-07:00|40022550|Zeromus|0001A4E9|37982064||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:42.4300000-07:00|40022550|Zeromus|0001A4E8|37972263||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:42.5190000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|286D|128550|128564|10000|10000|||99.90|94.50|0.00|3.14|10FF0006|Wowobora Gogobora|0|80739|80739|8535|10000|||100.11|100.54|0.00|-3.13| +24|2023-10-06T20:21:42.5190000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1CEF|79111|79111|9000|10000|||99.87|100.94|0.00|3.14|10FF0006|Wowobora Gogobora|0|80739|80739|8535|10000|||100.11|100.54|0.00|-3.13| +20|2023-10-06T20:21:42.5190000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|99.66|99.44|0.00|3.12| +21|2023-10-06T20:21:42.5190000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|54120000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|37972263|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4ED|0|1| +38|2023-10-06T20:21:42.5190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||99.90|94.50|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.5190000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|40478540| +38|2023-10-06T20:21:42.5190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|13||99.87|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:42.5190000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:42.5190000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:21:42.5190000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:21:42.0810000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:21:42.0810000-07:00|Change|10FF0006||||||||||||||| +38|2023-10-06T20:21:42.6080000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.6080000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:21:42.6970000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37972263|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8535|10000|||100.11|100.54|0.00|-3.13|0001A4EE|0|1| +38|2023-10-06T20:21:42.7410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9400|10000|12||100.05|97.92|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.7410000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|80739|90128| +38|2023-10-06T20:21:42.7860000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.7860000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:21:42.8300000-07:00|40022550|Zeromus|0001A4EB|37953657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:42.8300000-07:00|10FF0008|Kokosaze Lulusaze|0001A4EB|79111|79111|9000|10000|13||99.87|100.94|0.00|3.14|1B00|0|0|01|08000B25|0|0|| +38|2023-10-06T20:21:42.8300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|13||99.87|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:21:42.8750000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|2B2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37972263|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9000|10000|||99.87|100.94|0.00|3.14|0001A4EF|0|1| +38|2023-10-06T20:21:42.8750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|13||99.87|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.8750000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:21:42.8750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|8||100.11|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:42.8750000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:21:42.8750000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|127791|90128| +21|2023-10-06T20:21:42.9200000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8535|10000|||100.11|100.54|0.00|-3.13|80739|80739|8535|10000|||100.11|100.54|0.00|-3.13|0001A4F0|0|1| +22|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|367D0000|2E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|0001A4F1|0|8| +22|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|21A20000|D00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73085|73085|9000|10000|||99.66|99.44|0.00|3.12|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|0001A4F1|1|8| +22|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|225A0000|F60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|8535|10000|||100.11|100.54|0.00|-3.13|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|0001A4F1|2|8| +22|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|20AA0000|430E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.08|100.57|0.00|-3.14|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|0001A4F1|3|8| +22|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|21A70000|D80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79111|79111|9000|10000|||99.87|100.94|0.00|3.14|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|0001A4F1|4|8| +22|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|208B0000|110E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.90|94.50|0.00|3.14|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|0001A4F1|5|8| +22|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|21E80000|400E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|0001A4F1|6|8| +22|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|21B40000|EC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|5600|10000|||100.11|93.66|0.00|-3.13|80739|80739|9400|10000|||100.05|97.92|0.00|-3.00|0001A4F1|7|8| +38|2023-10-06T20:21:42.9200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.90|94.50|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:42.9200000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:21:42.9200000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.9200000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:21:42.9200000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:21:42.9200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|17||99.87|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.9200000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:21:42.9200000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:21:42.9200000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8535|10000|17||100.11|100.54|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:42.9200000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:21:42.9200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|10||100.11|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.9200000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:21:42.9200000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:21:42.9200000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8400|10000|27||100.05|97.92|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.9200000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:21:42.9200000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:21:42.9200000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||99.66|99.44|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.9200000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:21:42.9200000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:21:42.9200000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:42.9200000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:21:42.9200000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:21:42.9640000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2609|127791|127791|5600|10000|||100.11|93.66|0.00|-3.13|10FF0006|Wowobora Gogobora|1|80739|80739|8535|10000|||100.11|100.54|0.00|-3.13| +37|2023-10-06T20:21:42.9640000-07:00|40022550|Zeromus|0001A4EC|37929450||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:42.9640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|10||100.11|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:43.0080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||99.66|99.44|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:43.0080000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0003|Gegehi Gehi|00|73085|90128| +21|2023-10-06T20:21:43.0970000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|967B0000|200004|3BC88000|0|0|0|0|0|0|0|0|0|0|0|0|37929450|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.90|94.48|0.00|3.14|0001A4F2|0|1| +38|2023-10-06T20:21:43.0970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.90|94.48|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:43.0970000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +37|2023-10-06T20:21:43.1420000-07:00|40022550|Zeromus|0001A4ED|37907928||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:43.1420000-07:00|10FF0005|Wuwuchu Wuchu|0001A4ED|90055|90055|10000|10000|15||97.95|101.49|0.00|3.05|2700|0|0|01|0E000A1E|0|41F00000|| +39|2023-10-06T20:21:43.1420000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.40|100.17|0.00|3.14| +38|2023-10-06T20:21:43.1420000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8535|10000|17||100.11|100.54|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:43.1420000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|80739|90128| +38|2023-10-06T20:21:43.1420000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:21:43.1860000-07:00|10FF0003|Gegehi Gehi|73085|73085|9200|10000|||99.66|99.44|0.00|3.12| +24|2023-10-06T20:21:43.1860000-07:00|40022550|Zeromus|DoT|0|2C67|37929450|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|5600|10000|||100.11|93.66|0.00|-3.13| +38|2023-10-06T20:21:43.1860000-07:00|40022550|Zeromus|005A5A00|37896561|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:21:42.7000000-07:00|Change|10FF0003||||| +37|2023-10-06T20:21:43.2300000-07:00|40022550|Zeromus|0001A4EE|37896495||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:42.8200000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T20:21:43.2760000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|714003|2FB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37896561|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4F3|0|1| +38|2023-10-06T20:21:43.2760000-07:00|40022638|Topaz Titan|005A5A00|0|75851|10000|10000|0||101.57|103.17|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T20:21:43.2760000-07:00|30|Well Fed|2355.73|10FF0008|Kokosaze Lulusaze|40022638|Topaz Titan|2964|75851|79111| +26|2023-10-06T20:21:43.2760000-07:00|A8F|Searing Light|9.83|10FF0008|Kokosaze Lulusaze|40022638|Topaz Titan|00|75851|79111| +26|2023-10-06T20:21:43.2760000-07:00|31|Medicated|13.34|10FF0008|Kokosaze Lulusaze|40022638|Topaz Titan|2940|75851|79111| +26|2023-10-06T20:21:43.2760000-07:00|A27|Arcane Circle|3.92|10FF0005|Wuwuchu Wuchu|40022638|Topaz Titan|00|75851|90055| +26|2023-10-06T20:21:43.2760000-07:00|511|Embolden|5.30|10FF0003|Gegehi Gehi|40022638|Topaz Titan|00|75851|73085| +38|2023-10-06T20:21:43.2760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|17||99.87|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:43.2760000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|79111|90128| +36|2023-10-06T20:21:43.3190000-07:00|0A64|3| +261|2023-10-06T20:21:42.8200000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:21:43.3640000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5800|10000|||100.11|93.50|0.00|3.14| +39|2023-10-06T20:21:43.3640000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8600|10000|||100.05|97.91|0.00|-3.02| +261|2023-10-06T20:21:42.9410000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:21:43.4090000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:43.4090000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +39|2023-10-06T20:21:43.4530000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.95|101.49|0.00|3.05| +38|2023-10-06T20:21:43.4530000-07:00|40022550|Zeromus|005A5A00|37896495|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:43.4530000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +39|2023-10-06T20:21:43.4970000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8740|10000|||100.11|100.54|0.00|-3.13| +37|2023-10-06T20:21:43.5420000-07:00|10FF0006|Wowobora Gogobora|0001A4F0|80739|80739|8740|10000|17||100.11|100.54|0.00|-3.13|2800|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T20:21:43.5420000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:21:43.5420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.90|93.06|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:43.5420000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|128564|90128| +261|2023-10-06T20:21:43.0580000-07:00|Change|10FF0006||| +37|2023-10-06T20:21:43.6310000-07:00|40022550|Zeromus|0001A4EF|37885443||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:43.6310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|10||100.10|92.33|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:43.6310000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +04|2023-10-06T20:21:43.1780000-07:00|40022634|Carbuncle|00|5A|10FF0008|00||10261|13498|0|0|0|10000|||99.73|99.83|0.00|-0.01| +261|2023-10-06T20:21:43.1780000-07:00|Remove|40022634| +261|2023-10-06T20:21:43.2770000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:21:43.7190000-07:00|40022550|Zeromus|0001A4F2|37846920||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:43.7640000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.11|100.54|0.00|-3.13| +37|2023-10-06T20:21:43.8090000-07:00|40022550|Zeromus|0001A4EA|37819384||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:43.8980000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37819384|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||101.65|95.89|0.00|3.11|0001A4F4|0|1| +21|2023-10-06T20:21:43.9430000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A722003|709C0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|37819384|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||101.65|95.89|0.00|3.11|0001A4F5|0|1| +21|2023-10-06T20:21:43.9430000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|714003|4CED0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37819384|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||100.09|90.37|0.00|-3.12|0001A4F6|0|1| +21|2023-10-06T20:21:43.9430000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|454003|45530000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|37819384|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9200|10000|||99.66|99.44|0.00|3.12|0001A4F7|0|1| +38|2023-10-06T20:21:43.9430000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||99.66|99.44|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:43.9430000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:21:43.9430000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:21:43.9430000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||101.65|95.89|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:43.9430000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:21:43.9430000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:43.9430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|10||100.09|90.37|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:43.9430000-07:00|76E|Sword Oath|12.99|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +37|2023-10-06T20:21:43.9870000-07:00|40022550|Zeromus|0001A4F3|37807171||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:43.9870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|A380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37819384|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||100.08|89.74|0.00|-3.12|0001A4F8|0|1| +31|2023-10-06T20:21:43.9870000-07:00|10FF0001||||| +261|2023-10-06T20:21:43.6650000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:21:44.0320000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4F1|80739|80739|8600|10000|27||100.10|94.77|0.00|-3.14|1C00|0|0|01|03000129|0|41E774B8|| +39|2023-10-06T20:21:44.0320000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.90|88.84|0.00|-3.14| +39|2023-10-06T20:21:44.0320000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9200|10000|||99.77|98.18|0.00|-3.11| +20|2023-10-06T20:21:44.0320000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|97.95|101.49|0.00|3.05| +20|2023-10-06T20:21:44.0770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.10|94.77|0.00|-3.14| +37|2023-10-06T20:21:44.1660000-07:00|10FF0003|Gegehi Gehi|0001A4F1|73085|73085|9000|10000|18||99.66|99.44|0.00|3.12|2301|0|0|01|01000129|0|41E66249|| +261|2023-10-06T20:21:43.6650000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:21:43.6650000-07:00|Change|10FF0005||||||||||||||||||||| +261|2023-10-06T20:21:43.7780000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:21:43.7780000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:21:43.7780000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:21:44.2990000-07:00|10FF0006|Wowobora Gogobora|0001A4F1|80739|80739|8740|10000|17||100.11|100.54|0.00|-3.13|2802|0|0|01|06000129|0|41E54FDA|| +21|2023-10-06T20:21:44.3890000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37807171|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9200|10000|||99.73|96.58|0.00|-3.11|0001A4F9|0|1| +37|2023-10-06T20:21:44.4330000-07:00|40022550|Zeromus|0001A4F4|37803733||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:44.4330000-07:00|10FF0002|Suchichi Suchi|0001A4F4|90128|90128|10000|10000|14||101.76|93.20|0.00|-3.10|1600|0|0|01|02000747|0|C1F00000|| +37|2023-10-06T20:21:44.4330000-07:00|10FF0002|Suchichi Suchi|0001A4F1|90128|90128|10000|10000|14||101.76|93.20|0.00|-3.10|1603|0|0|02|0129|0|41E43D6B|||||| +37|2023-10-06T20:21:44.5220000-07:00|40022550|Zeromus|0001A4F8|37801117||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:44.1120000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T20:21:44.1120000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:21:44.5670000-07:00|10FF0008|Kokosaze Lulusaze|0001A4F1|79111|79111|9200|10000|17||99.71|95.15|0.00|-3.12|1B04|0|0|01|02000129|0|41E32D08|| +37|2023-10-06T20:21:44.6120000-07:00|40022550|Zeromus|0001A4F5|37772289||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:44.6120000-07:00|10FF0002|Suchichi Suchi|0001A4F5|90128|90128|10000|10000|14||101.79|91.81|0.00|-3.13|1600|0|0|01|02000747|0|41F00000|| +38|2023-10-06T20:21:44.6120000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||101.79|91.81|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:21:44.6560000-07:00|10FF0002|Suchichi Suchi|HoT|0|1D81|90128|90128|10000|10000|||101.79|91.81|0.00|-3.13|10FF0006|Wowobora Gogobora|0|80739|80739|8740|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:44.6560000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||101.79|91.81|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:44.7010000-07:00|10FF0007|Kehabiqo Febiqo|0001A4F1|128564|128564|10000|10000|18||99.90|85.27|0.00|-3.14|1505|0|0|01|0D000129|0|41E21A99|| +24|2023-10-06T20:21:44.7010000-07:00|10FF0003|Gegehi Gehi|HoT|0|1E4A|73085|73085|9000|10000|||99.83|97.09|0.00|3.08|10FF0006|Wowobora Gogobora|0|80739|80739|8740|10000|||100.11|100.54|0.00|-3.13| +21|2023-10-06T20:21:44.7010000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37772289|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.90|85.27|0.00|-3.14|0001A4FA|0|1| +21|2023-10-06T20:21:44.7010000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|671D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|37772289|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8740|10000|||100.11|100.54|0.00|-3.13|0001A4FB|0|1| +38|2023-10-06T20:21:44.7010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||99.83|97.09|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:44.7450000-07:00|40022550|Zeromus|0001A4F7|37754542||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:44.7450000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|4B3C0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37772289|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9200|10000|||99.70|94.41|0.00|-3.12|0001A4FC|0|1| +21|2023-10-06T20:21:44.7450000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37772289|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9000|10000|||99.83|97.09|0.00|3.08|0001A4FD|0|1| +38|2023-10-06T20:21:44.7450000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8900|10000|17||99.70|94.41|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:44.7450000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:21:44.7900000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|754003|DFCA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37772289|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|0001A4FE|0|1| +38|2023-10-06T20:21:44.7900000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:44.7900000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:21:44.7900000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:21:44.4110000-07:00|Change|10FF0005||||||||||||| +261|2023-10-06T20:21:44.4110000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:21:44.8340000-07:00|10FF0005|Wuwuchu Wuchu|0001A4F1|90055|90055|10000|10000|15||97.95|101.49|0.00|3.05|2706|0|0|01|04000129|0|41E10A36|| +38|2023-10-06T20:21:44.8340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.89|84.67|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:44.8340000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +24|2023-10-06T20:21:44.8780000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|49A4|127791|127791|5800|10000|||100.03|87.40|0.00|-3.12|10FF0006|Wowobora Gogobora|0|80739|80739|8340|10000|||100.11|100.54|0.00|-3.13| +24|2023-10-06T20:21:44.8780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1D95|80739|80739|8600|10000|||100.14|94.29|0.00|-3.13|10FF0006|Wowobora Gogobora|0|80739|80739|8340|10000|||100.11|100.54|0.00|-3.13| +38|2023-10-06T20:21:44.8780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|10||100.03|87.40|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:44.8780000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:21:44.8780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8600|10000|27||100.14|94.29|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:44.9230000-07:00|40022550|Zeromus|0001A4F9|37754383||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:44.9680000-07:00|10FF0001|Sesuga Sapisuga|0001A4F1|127791|127791|5800|10000|10||100.03|87.40|0.00|-3.12|1307|0|0|01|03000129|0|41DFF7C7|| +24|2023-10-06T20:21:44.9680000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|30A9|90055|90055|10000|10000|||97.95|101.49|0.00|3.05|10FF0006|Wowobora Gogobora|0|80739|80739|8340|10000|||100.11|100.54|-0.02|-3.14| +38|2023-10-06T20:21:44.9680000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||97.95|101.49|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:21:45.0130000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2458|80739|80739|8340|10000|||100.11|100.54|-0.02|-3.14|10FF0006|Wowobora Gogobora|0|80739|80739|8340|10000|||100.11|100.54|-0.02|-3.14| +21|2023-10-06T20:21:45.0130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|54F30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|37754383|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||100.14|94.29|0.00|-3.13|0001A4FF|0|1| +38|2023-10-06T20:21:45.0130000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8890|10000|17||100.11|100.54|-0.02|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:45.0130000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:21:44.7070000-07:00|Change|10FF0003||||||||| +38|2023-10-06T20:21:45.1920000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||101.90|88.50|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:45.1920000-07:00|776|Right Eye|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:45.1920000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||97.95|101.48|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:45.1920000-07:00|5AE|Left Eye|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:21:45.2370000-07:00|40022550|Zeromus|0001A4FA|37751186||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:45.2370000-07:00|40022550|Zeromus|0001A4F6|37731493||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:45.2370000-07:00|10FF0001|Sesuga Sapisuga|0001A4F6|127791|127791|6200|10000|10||100.03|87.40|0.00|-3.12|1300|0|0|0| +261|2023-10-06T20:21:44.8190000-07:00|Change|10FF0001||||||| +261|2023-10-06T20:21:44.8190000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:21:45.2810000-07:00|40022550|Zeromus|0001A4FD|37731451||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:45.3710000-07:00|40022550|Zeromus|0001A4FC|37712191||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:45.3710000-07:00|10FF0008|Kokosaze Lulusaze|0001A4FC|79111|79111|8900|10000|17||99.68|92.81|0.00|3.13|1B00|0|0|01|06000B25|0|0|| +24|2023-10-06T20:21:45.3710000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|16F9|127791|127791|5800|10000|||100.03|87.40|0.00|-3.12|10FF0006|Wowobora Gogobora|0|80739|80739|8890|10000|||100.09|99.73|0.00|3.12| +37|2023-10-06T20:21:45.3710000-07:00|40022550|Zeromus|0001A4FB|37685794||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:45.3710000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|1CCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37731493|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8900|10000|||99.68|92.81|0.00|3.13|0001A500|0|1| +38|2023-10-06T20:21:45.3710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8900|10000|17||99.68|92.81|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:45.3710000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:21:45.3710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6200|10000|10||100.03|87.40|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:44.9390000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:21:45.4150000-07:00|40022550|Zeromus|0001A4FE|37628504||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:45.0530000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:21:45.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1DE3|128564|128564|10000|10000|||99.87|83.70|0.00|-3.14|10FF0006|Wowobora Gogobora|0|80739|80739|8890|10000|||100.05|98.10|0.00|-3.13| +24|2023-10-06T20:21:45.5490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2F4C|79111|79111|8900|10000|||99.66|91.57|0.00|3.12|10FF0006|Wowobora Gogobora|0|80739|80739|8890|10000|||100.05|98.10|0.00|-3.13| +21|2023-10-06T20:21:45.5490000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|23930000|A3E|340000|200004|3C298000|11B|258000|0|0|0|0|0|0|0|0|37628504|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.87|83.70|0.00|-3.14|0001A501|0|1| +38|2023-10-06T20:21:45.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|83.70|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:45.5490000-07:00|40022550|Zeromus|005A5A00|37628504|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T20:21:45.5490000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +38|2023-10-06T20:21:45.5490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8900|10000|17||99.66|91.57|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:45.1660000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:21:45.6820000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8200|10000|||100.07|92.27|0.00|-3.11|80739|80739|8200|10000|||100.07|92.27|0.00|-3.11|0001A502|0|1| +37|2023-10-06T20:21:45.8160000-07:00|40022550|Zeromus|0001A4FF|37606757||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:45.8160000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|712003|647C0000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|37606757|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.23|98.51|0.00|3.05|0001A503|0|1| +21|2023-10-06T20:21:45.8160000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1E200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37606757|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.23|98.51|0.00|3.05|0001A504|0|1| +38|2023-10-06T20:21:45.8160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|83.70|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:45.8160000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +38|2023-10-06T20:21:45.8160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.23|98.51|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:45.8160000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +261|2023-10-06T20:21:45.3470000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:21:45.8610000-07:00|40022638|Topaz Titan|005A5A00|0|75851|0|10000|0||101.57|103.17|0.00|3.13|0|0|0|||| +30|2023-10-06T20:21:45.8610000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022638|Topaz Titan|00|75851|79111| +30|2023-10-06T20:21:45.8610000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|40022638|Topaz Titan|2940|75851|79111| +30|2023-10-06T20:21:45.8610000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022638|Topaz Titan|00|75851|90055| +30|2023-10-06T20:21:45.8610000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022638|Topaz Titan|00|75851|73085| +261|2023-10-06T20:21:45.4470000-07:00|Change|40022638||||| +261|2023-10-06T20:21:45.4470000-07:00|Change|40022638||||| +38|2023-10-06T20:21:45.9060000-07:00|40022659||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||||||||| +38|2023-10-06T20:21:45.9060000-07:00|40022659||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||||||||| +261|2023-10-06T20:21:45.5480000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:21:46.1290000-07:00|40022550|Zeromus|0001A500|37599383||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:46.1290000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||103.23|85.31|0.00|-1.28| +261|2023-10-06T20:21:45.7510000-07:00|Add|40022659||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:21:45.7510000-07:00|40022659|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||99.58|85.47|0.00|0.01| +261|2023-10-06T20:21:45.7510000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:21:45.7510000-07:00|Change|40022659||| +37|2023-10-06T20:21:46.1740000-07:00|40022550|Zeromus|0001A501|37590276||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:46.1740000-07:00|10FF0003|Gegehi Gehi|73085|73085|9200|10000|||100.55|87.94|0.00|3.14| +24|2023-10-06T20:21:46.1740000-07:00|40022550|Zeromus|DoT|0|2E13|37599383|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||103.23|85.31|0.00|-1.28| +38|2023-10-06T20:21:46.1740000-07:00|40022550|Zeromus|005A5A00|37578481|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T20:21:46.2180000-07:00|4002255E|Zeromus|8B41|unknown_8b41|4002255E|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-0.79|44|44|0|10000|||100.00|100.00|0.00|-0.79|0001A505|0|1| +21|2023-10-06T20:21:46.2180000-07:00|40022560|Zeromus|8B41|unknown_8b41|40022560|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|2.36|44|44|0|10000|||100.00|100.00|0.00|2.36|0001A506|0|1| +21|2023-10-06T20:21:46.2180000-07:00|40022562|Zeromus|8B40|unknown_8b40|40022562|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A507|0|1| +21|2023-10-06T20:21:46.2180000-07:00|40022564|Zeromus|8B40|unknown_8b40|40022564|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|3.14|0001A508|0|1| +21|2023-10-06T20:21:46.2630000-07:00|10FF0006|Wowobora Gogobora|5EFC|Toxikon II|40022550|Zeromus|754003|4C740000|1B|5EFC8000|0|0|0|0|0|0|0|0|0|0|0|0|37599383|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8890|10000|||99.96|93.40|-0.01|-3.14|0001A509|0|1| +261|2023-10-06T20:21:45.8620000-07:00|Change|40022560||||||||||||| +261|2023-10-06T20:21:45.8620000-07:00|Change|40022562||||||||||||| +21|2023-10-06T20:21:46.2630000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|14D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37599383|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6200|10000|||100.03|87.40|0.00|-3.14|0001A50A|0|1| +261|2023-10-06T20:21:45.8620000-07:00|Change|4002255E||||||||||||| +31|2023-10-06T20:21:46.2630000-07:00|10FF0001||||| +261|2023-10-06T20:21:45.8620000-07:00|Change|40022564||||||||||||| +261|2023-10-06T20:21:45.8620000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:21:46.3060000-07:00|10FF0004|Buhojaqe Zijaqe|0001A502|80739|80739|8200|10000|27||99.98|88.97|0.00|-3.10|1C00|0|0|01|090004B4|0|41A80000|| +26|2023-10-06T20:21:46.3060000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:21:46.3510000-07:00|40022550|Zeromus|0001A503|37552757||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:46.3510000-07:00|10FF0005|Wuwuchu Wuchu|0001A503|90055|90055|10000|10000|15||98.53|95.50|0.00|3.05|2700|0|0|01|05000A1B|01|41F00000|| +37|2023-10-06T20:21:46.3510000-07:00|40022550|Zeromus|0001A504|37545045||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:46.3510000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6400|10000|||100.03|87.40|0.00|-3.14| +39|2023-10-06T20:21:46.3510000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8400|10000|||99.98|88.97|0.00|-3.10| +36|2023-10-06T20:21:46.3510000-07:00|0B40|3| +38|2023-10-06T20:21:46.3510000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.53|95.50|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:45.9840000-07:00|Change|10FF0001||||| +261|2023-10-06T20:21:45.9840000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:21:46.4400000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||98.58|94.96|0.00|3.05| +21|2023-10-06T20:21:46.4400000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|29AA0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|37545045|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.23|85.31|0.00|-1.41|0001A50B|0|1| +21|2023-10-06T20:21:46.4400000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|61C80000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37545045|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6400|10000|||100.03|87.40|0.00|-3.14|0001A50C|0|1| +38|2023-10-06T20:21:46.4400000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||103.23|85.31|0.00|-1.41|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:46.4400000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:46.4400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|10||100.03|87.40|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:46.4400000-07:00|76E|Sword Oath|10.49|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +21|2023-10-06T20:21:46.4840000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37545045|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8890|10000|||99.96|92.37|0.00|-3.14|0001A50D|0|1| +21|2023-10-06T20:21:46.4840000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|152003|554A0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|37545045|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9200|10000|||100.51|87.17|0.00|-3.13|0001A50E|0|1| +38|2023-10-06T20:21:46.4850000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8890|10000|17||99.96|92.37|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:46.4850000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:21:46.4850000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:21:46.4850000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||100.51|87.17|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:46.4850000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:21:46.4850000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +39|2023-10-06T20:21:46.5290000-07:00|10FF0006|Wowobora Gogobora|80739|80739|9095|10000|||99.96|92.37|0.00|-3.14| +21|2023-10-06T20:21:46.5730000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|AC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37545045|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8400|10000|||99.91|87.82|0.00|-3.10|0001A50F|0|1| +38|2023-10-06T20:21:46.6190000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||100.49|86.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:46.6190000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:21:46.6190000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +21|2023-10-06T20:21:46.7070000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|C8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37545045|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.23|85.31|0.00|-2.59|0001A510|0|1| +20|2023-10-06T20:21:46.7530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.90|87.18|0.00|-3.11| +38|2023-10-06T20:21:46.7530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8900|10000|17||99.53|84.29|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:46.7530000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:21:46.7530000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:21:46.7970000-07:00|40022550|Zeromus|0001A50A|37539715||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:46.8420000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|4BFC0000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|37545045|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.76|93.04|0.00|3.05|0001A511|0|1| +38|2023-10-06T20:21:46.8420000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.76|93.04|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:46.8420000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:21:46.8420000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:21:46.8420000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:21:46.3930000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:21:46.8870000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||103.23|85.31|0.00|-2.59|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:46.8870000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:21:46.8870000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +34|2023-10-06T20:21:46.9310000-07:00|40022659|Carbuncle|40022659|Carbuncle|01| +261|2023-10-06T20:21:46.4900000-07:00|Change|40022659||||||||| +38|2023-10-06T20:21:46.9760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.78|92.81|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:46.9760000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:21:47.0210000-07:00|40022550|Zeromus|0001A50D|37539675||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:47.0210000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.87|83.70|0.00|3.11| +39|2023-10-06T20:21:47.0210000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9100|10000|||99.50|83.42|0.00|-3.11| +38|2023-10-06T20:21:47.0210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|10||100.03|87.40|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:47.0210000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:21:47.0210000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:21:47.0210000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:21:47.0650000-07:00|40022550|Zeromus|0001A50B|37529009||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:47.0650000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9095|10000|17||99.99|90.88|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:47.0650000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:21:47.0650000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +37|2023-10-06T20:21:47.1100000-07:00|40022550|Zeromus|0001A50F|37528837||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:47.1100000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|3D410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37539715|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.23|85.31|0.00|-2.59|0001A512|0|1| +38|2023-10-06T20:21:47.1550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8400|10000|27||99.88|85.25|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.1550000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:21:47.1550000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:21:47.2000000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|452003|60400000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37528837|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9100|10000|||99.50|83.42|0.00|-3.11|0001A513|0|1| +38|2023-10-06T20:21:47.2000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8800|10000|17||99.50|83.42|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.2000000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +26|2023-10-06T20:21:47.2000000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:21:47.2000000-07:00|40022659|Carbuncle|005A5A00|72376|75851|10000|10000|0||99.23|85.31|0.00|-0.74|0|0|0|||||||||||||||| +26|2023-10-06T20:21:47.2000000-07:00|30|Well Fed|2351.81|10FF0008|Kokosaze Lulusaze|40022659|Carbuncle|2964|75851|79111| +26|2023-10-06T20:21:47.2000000-07:00|A8F|Searing Light|5.90|10FF0008|Kokosaze Lulusaze|40022659|Carbuncle|00|75851|79111| +26|2023-10-06T20:21:47.2000000-07:00|31|Medicated|9.42|10FF0008|Kokosaze Lulusaze|40022659|Carbuncle|2940|75851|79111| +26|2023-10-06T20:21:47.2000000-07:00|511|Embolden|1.38|10FF0003|Gegehi Gehi|40022659|Carbuncle|00|75851|73085| +37|2023-10-06T20:21:47.2450000-07:00|40022550|Zeromus|0001A510|37525624||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:47.2890000-07:00|40022550|Zeromus|0001A50E|37503790||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:47.2890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|83.70|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.2890000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:21:47.2890000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:21:47.3330000-07:00|40022550|Zeromus|0001A511|37484338||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:47.3330000-07:00|10FF0005|Wuwuchu Wuchu|0001A511|90055|90055|10000|10000|15||98.85|92.13|0.00|3.05|2700|0|0|01|05000A1D|0|42700000|| +38|2023-10-06T20:21:47.3330000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||100.45|86.47|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.3330000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +38|2023-10-06T20:21:47.3330000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.85|92.13|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:46.9460000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T20:21:47.4230000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.85|92.13|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.4230000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:21:47.4230000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:21:47.4670000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|277F|127791|127791|6400|10000|||100.03|87.40|0.00|-3.14|10FF0006|Wowobora Gogobora|1|80739|80739|9095|10000|||100.04|87.93|-0.02|3.13| +37|2023-10-06T20:21:47.4670000-07:00|40022550|Zeromus|0001A509|37464766||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:47.0650000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:21:47.4670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|10||100.03|87.40|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.4670000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +38|2023-10-06T20:21:47.4670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.90|91.84|-0.02|3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.4670000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:21:47.0650000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:21:47.5120000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37484338|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8800|10000|||99.50|83.42|0.00|3.00|0001A514|0|1| +38|2023-10-06T20:21:47.6000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8400|10000|27||99.87|84.95|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.6000000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +24|2023-10-06T20:21:47.6450000-07:00|10FF0002|Suchichi Suchi|HoT|0|1035|90128|90128|10000|10000|||103.23|85.31|0.00|-2.59|10FF0006|Wowobora Gogobora|0|80739|80739|9095|10000|||100.05|87.17|0.00|3.13| +38|2023-10-06T20:21:47.6450000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||103.23|85.31|0.00|-2.59|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:47.6450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|10||100.03|87.40|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.6450000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +24|2023-10-06T20:21:47.6890000-07:00|10FF0003|Gegehi Gehi|HoT|0|10DF|73085|73085|9000|10000|||100.45|86.47|0.00|-3.07|10FF0006|Wowobora Gogobora|0|80739|80739|9095|10000|||100.06|86.48|0.00|3.13| +21|2023-10-06T20:21:47.6890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|35F60000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|37464766|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8400|10000|||99.87|84.95|0.00|3.12|0001A515|0|1| +38|2023-10-06T20:21:47.6890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|10||100.03|87.40|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.6890000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:21:47.6890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||100.45|86.47|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:47.7340000-07:00|40022550|Zeromus|0001A50C|37439734||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:47.7340000-07:00|10FF0001|Sesuga Sapisuga|0001A50C|127791|127791|6800|10000|10||100.03|87.40|0.00|-3.14|1300|0|0|0| +38|2023-10-06T20:21:47.7340000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||103.23|85.31|0.00|-2.59|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.7340000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +261|2023-10-06T20:21:47.3750000-07:00|Change|10FF0001||| +37|2023-10-06T20:21:47.8230000-07:00|40022550|Zeromus|0001A513|37415094||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:47.8230000-07:00|10FF0008|Kokosaze Lulusaze|0001A513|79111|79111|8800|10000|17||99.50|83.42|0.00|3.00|1B00|0|0|01|05000B25|0|0|| +21|2023-10-06T20:21:47.8230000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|21050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37464766|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8800|10000|||99.50|83.42|0.00|3.00|0001A516|0|1| +38|2023-10-06T20:21:47.8230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8800|10000|17||99.50|83.42|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.8230000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +24|2023-10-06T20:21:47.8670000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|346D|127791|127791|6800|10000|||100.03|87.40|0.00|-3.14|10FF0006|Wowobora Gogobora|0|80739|80739|9095|10000|||100.08|85.08|0.00|3.13| +24|2023-10-06T20:21:47.8670000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|10DB|80739|80739|8000|10000|||99.87|84.95|0.00|3.12|10FF0006|Wowobora Gogobora|0|80739|80739|9095|10000|||100.08|85.08|0.00|3.13| +38|2023-10-06T20:21:47.8670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|83.70|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:47.8670000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +38|2023-10-06T20:21:47.8670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6800|10000|10||100.03|87.40|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:47.8670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8550|10000|27||99.87|84.95|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:47.4700000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:21:47.9550000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1C54|90055|90055|10000|10000|||99.57|88.31|0.00|2.97|10FF0006|Wowobora Gogobora|0|80739|80739|9095|10000|||100.08|85.08|0.00|3.13| +38|2023-10-06T20:21:47.9550000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||99.57|88.31|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:21:48.0010000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1C78|80739|80739|9095|10000|||100.10|83.80|0.00|3.13|10FF0006|Wowobora Gogobora|0|80739|80739|9095|10000|||100.10|83.80|0.00|3.13| +21|2023-10-06T20:21:48.0010000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|33D90000|143E|340000|4|1A588000|11B|2A8000|0|0|0|0|0|0|0|0|37415094|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.87|83.70|0.00|3.11|0001A517|0|1| +38|2023-10-06T20:21:48.0010000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9645|10000|17||100.10|83.80|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:48.0460000-07:00|40022550|Zeromus|0001A514|37414941||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:48.0900000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|14A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37415094|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.87|83.70|0.00|3.11|0001A518|0|1| +261|2023-10-06T20:21:47.7770000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:21:48.1790000-07:00|40022565|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|83.50|0.00|0.00|0001A519|0|0| +21|2023-10-06T20:21:48.1790000-07:00|40022567|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|116.50|0.00|0.00|0001A51A|0|0| +21|2023-10-06T20:21:48.1790000-07:00|40022569|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.00|100.00|0.00|0.00|0001A51B|0|0| +21|2023-10-06T20:21:48.1790000-07:00|4002256B|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.00|100.00|0.00|0.00|0001A51C|0|0| +21|2023-10-06T20:21:48.1790000-07:00|4002256D|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A51D|0|0| +38|2023-10-06T20:21:48.1790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||100.45|86.47|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.1790000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:21:47.8920000-07:00|Change|40022565||||||||||||| +21|2023-10-06T20:21:48.2240000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37414941|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9000|10000|||100.45|86.47|0.00|-3.07|0001A51E|0|1| +37|2023-10-06T20:21:48.3130000-07:00|40022550|Zeromus|0001A512|37399260||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:47.8920000-07:00|Change|40022567||||||||||||| +38|2023-10-06T20:21:48.3130000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9645|10000|17||99.69|83.21|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:47.8920000-07:00|Change|40022569||||||||||||| +30|2023-10-06T20:21:48.3130000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|80739|73085| +261|2023-10-06T20:21:47.8920000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:21:47.8920000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:21:47.8920000-07:00|Change|10FF0004||||||||||||||||||| +38|2023-10-06T20:21:48.4480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6800|10000|10||100.03|87.40|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.4480000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|127791|73085| +261|2023-10-06T20:21:48.1150000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:21:48.4920000-07:00|40022550|Zeromus|0001A515|37385446||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:48.5370000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|101D|128564|128564|10000|10000|||99.87|83.70|0.00|3.11|10FF0006|Wowobora Gogobora|0|80739|80739|9645|10000|||99.07|83.09|0.00|2.99| +24|2023-10-06T20:21:48.5370000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1016|79111|79111|8800|10000|||99.50|83.42|0.00|3.00|10FF0006|Wowobora Gogobora|0|80739|80739|9645|10000|||99.07|83.09|0.00|2.99| +21|2023-10-06T20:21:48.5370000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37399260|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6800|10000|||100.03|87.40|0.00|-3.14|0001A51F|0|1| +38|2023-10-06T20:21:48.5370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|83.70|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:48.5370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8800|10000|17||99.50|83.42|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:21:48.5370000-07:00|10FF0001||||| +37|2023-10-06T20:21:48.5820000-07:00|40022550|Zeromus|0001A516|37376993||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:48.5820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8800|10000|17||99.50|83.42|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.5820000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|79111|73085| +38|2023-10-06T20:21:48.5820000-07:00|40022659|Carbuncle|005A5A00|72376|75851|10000|10000|0||99.23|85.31|0.00|-0.74|0|0|0|||||||||| +30|2023-10-06T20:21:48.5820000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022659|Carbuncle|00|75851|73085| +37|2023-10-06T20:21:48.6270000-07:00|40022550|Zeromus|0001A518|37371709||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:48.6710000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.89|83.06|0.00|2.59| +38|2023-10-06T20:21:48.7150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8550|10000|27||99.87|84.92|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.7150000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|80739|73085| +37|2023-10-06T20:21:48.7600000-07:00|40022550|Zeromus|0001A51E|37371685||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:48.8500000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||102.95|87.39|0.00|-1.37|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.8500000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|90128|73085| +38|2023-10-06T20:21:48.8500000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9645|10000|17||98.59|83.00|0.00|2.50|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.8500000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:21:48.8950000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|22820000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|37371685|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.95|87.39|0.00|-1.37|0001A520|0|1| +21|2023-10-06T20:21:48.8950000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|2DF50000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37371685|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6800|10000|||100.03|87.40|0.00|-3.14|0001A521|0|1| +38|2023-10-06T20:21:48.8950000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||102.95|87.39|0.00|-1.37|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:48.8950000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:48.8950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6800|10000|10||100.03|87.40|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.8950000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +38|2023-10-06T20:21:48.9840000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||102.50|87.39|0.00|-2.93|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.9840000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:21:48.9840000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||100.24|84.03|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:48.9840000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|90055|73085| +21|2023-10-06T20:21:49.0290000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37371685|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.24|84.03|0.00|3.06|0001A522|0|1| +37|2023-10-06T20:21:49.0730000-07:00|40022550|Zeromus|0001A51F|37369715||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:49.1170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.84|83.99|-0.01|-3.04| +38|2023-10-06T20:21:49.1170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|83.72|0.00|-2.36|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:49.1170000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|128564|73085| +38|2023-10-06T20:21:49.1170000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9000|10000|18||98.44|85.90|0.00|-1.96|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:49.1170000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +39|2023-10-06T20:21:49.1610000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||102.16|87.39|0.00|-2.93| +39|2023-10-06T20:21:49.2060000-07:00|10FF0003|Gegehi Gehi|73085|73085|9200|10000|||97.76|85.93|0.00|-1.92| +24|2023-10-06T20:21:49.2060000-07:00|40022550|Zeromus|DoT|0|2AAA|37369715|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||101.98|87.40|0.00|-2.93| +38|2023-10-06T20:21:49.2060000-07:00|40022550|Zeromus|005A5A00|37358793|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T20:21:48.7280000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T20:21:49.2510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8550|10000|27||99.84|83.94|0.00|-3.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:49.2510000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:21:49.2960000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|710003|298B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37358793|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.26|83.83|0.00|3.11|0001A523|0|1| +38|2023-10-06T20:21:49.2960000-07:00|40022550|Zeromus|005A5A00|37358793|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T20:21:49.2960000-07:00|A1A|Death's Design|33.72|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +36|2023-10-06T20:21:49.3400000-07:00|0C1C|3| +39|2023-10-06T20:21:49.3850000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7000|10000|||99.60|87.19|0.00|-2.71| +39|2023-10-06T20:21:49.3850000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8750|10000|||99.84|83.94|0.00|-3.08| +38|2023-10-06T20:21:49.3850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8800|10000|17||99.48|83.43|0.00|-2.92|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:49.3850000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:21:48.9600000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:21:48.9600000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:21:49.0770000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:21:49.4740000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.26|83.81|0.00|-3.13| +37|2023-10-06T20:21:49.5200000-07:00|40022550|Zeromus|0001A517|37345520||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:49.5200000-07:00|10FF0006|Wowobora Gogobora|80739|80739|9850|10000|||98.25|82.93|0.00|2.60| +21|2023-10-06T20:21:49.5200000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|EC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37358793|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.46|87.69|0.00|-2.34|0001A524|0|1| +38|2023-10-06T20:21:49.5200000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||100.26|83.81|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:49.5200000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:21:49.5640000-07:00|40022550|Zeromus|0001A522|37342148||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:49.6090000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3A2E0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|37345520|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9850|10000|||98.25|82.93|0.00|2.60|0001A525|0|1| +21|2023-10-06T20:21:49.6090000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|9200|10000|||95.21|86.37|0.00|-1.78|73085|73085|9200|10000|||95.21|86.37|0.00|-1.78|0001A526|0|1| +38|2023-10-06T20:21:49.6090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9200|10000|18||95.21|86.37|0.00|-1.78|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:49.6090000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:21:49.6530000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|37650000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37345520|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8800|10000|||98.64|83.58|0.00|-1.81|0001A527|0|1| +261|2023-10-06T20:21:49.2830000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:21:49.6530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||96.83|85.35|0.00|-2.53|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +04|2023-10-06T20:21:49.2830000-07:00|40022638|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|75851|0|10000|||101.57|103.17|0.00|3.13| +30|2023-10-06T20:21:49.6530000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:21:49.6530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8500|10000|17||98.64|83.58|0.00|-1.81|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:49.6530000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:21:49.2830000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:21:49.2830000-07:00|Remove|40022638| +38|2023-10-06T20:21:49.7870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|10||97.25|87.66|0.00|-2.72|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:49.7870000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:21:49.7870000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:21:49.4730000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:21:49.4730000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:21:49.5700000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:21:50.0550000-07:00|40022550|Zeromus|0001A524|37338370||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:50.0550000-07:00|10FF0002|Suchichi Suchi|0001A524|90128|90128|10000|10000|14||96.76|88.54|0.00|-1.45|1600|0|0|01|04000AA0|0|C1F00000|| +39|2023-10-06T20:21:50.0550000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||94.20|85.95|0.00|-2.86| +39|2023-10-06T20:21:50.0550000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8700|10000|||97.28|83.83|0.00|2.55| +21|2023-10-06T20:21:50.0550000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30300000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|37342148|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8750|10000|||99.81|83.94|0.00|-2.69|0001A528|0|1| +261|2023-10-06T20:21:49.7780000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:21:49.8940000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:21:50.1880000-07:00|40022550|Zeromus|0001A521|37326605||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:50.1880000-07:00|10FF0001|Sesuga Sapisuga|0001A521|127791|127791|7400|10000|10||94.22|88.36|0.00|-2.75|1300|0|0|0| +37|2023-10-06T20:21:50.2770000-07:00|40022550|Zeromus|0001A527|37312424||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:50.2770000-07:00|10FF0008|Kokosaze Lulusaze|0001A527|79111|79111|8700|10000|17||97.46|83.79|-0.01|2.55|1B00|0|0|01|05000B25|0|0|| +24|2023-10-06T20:21:50.2770000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2349|127791|127791|7000|10000|||94.22|88.36|0.00|-2.75|10FF0006|Wowobora Gogobora|1|80739|80739|9450|10000|||98.25|82.96|0.00|-1.33| +37|2023-10-06T20:21:50.2770000-07:00|40022550|Zeromus|0001A525|37297530||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:50.2770000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37338370|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9450|10000|||98.25|82.96|0.00|-1.33|0001A529|0|1| +38|2023-10-06T20:21:50.2770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8700|10000|17||97.46|83.79|-0.01|2.55|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:50.2770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|10||94.22|88.36|0.00|-2.75|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:21:50.3220000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|2A090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37338370|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8700|10000|||97.46|83.79|-0.01|2.55|0001A52A|0|1| +38|2023-10-06T20:21:50.3220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8700|10000|17||97.46|83.79|-0.01|2.55|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:50.3220000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:21:50.3660000-07:00|10FF0003|Gegehi Gehi|0001A526|73085|73085|9200|10000|18||90.72|86.53|0.00|-1.46|2300|0|0|01|020004D6|0|41A00000|| +21|2023-10-06T20:21:50.3660000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|37B10000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|37297530|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9200|10000|||90.72|86.53|0.00|-1.46|0001A52B|0|1| +38|2023-10-06T20:21:50.3660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8900|10000|18||90.72|86.53|0.00|-1.46|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:50.3660000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:21:50.3660000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:21:50.4550000-07:00|40022550|Zeromus|0001A523|37286895||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:50.4550000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|712003|5F560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37297530|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||91.60|85.97|0.00|-3.09|0001A52C|0|1| +261|2023-10-06T20:21:50.1290000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:21:50.5440000-07:00|40022550|Zeromus|0001A520|37278061||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:50.5440000-07:00|10FF0002|Suchichi Suchi|0001A520|90128|90128|10000|10000|14||93.49|89.36|0.00|-1.34|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:21:50.5440000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||93.49|89.36|0.00|-1.34|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:21:50.6330000-07:00|10FF0002|Suchichi Suchi|HoT|0|1BCC|90128|90128|10000|10000|||93.49|89.36|0.00|-1.34|10FF0006|Wowobora Gogobora|0|80739|80739|9450|10000|||96.45|83.75|0.00|-1.17| +21|2023-10-06T20:21:50.6330000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37286895|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8700|10000|||95.74|84.12|0.00|-3.14|0001A52D|0|1| +38|2023-10-06T20:21:50.6330000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||93.49|89.36|0.00|-1.34|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:50.2400000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:21:50.3400000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:21:50.3400000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:21:50.6780000-07:00|10FF0003|Gegehi Gehi|HoT|0|1A67|73085|73085|8900|10000|||89.21|86.70|0.00|-2.97|10FF0006|Wowobora Gogobora|0|80739|80739|9450|10000|||95.45|84.08|0.00|-1.21| +38|2023-10-06T20:21:50.6780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8900|10000|18||89.21|86.70|0.00|-2.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:50.8120000-07:00|40022550|Zeromus|0001A529|37278023||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:50.8120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37278061|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||90.64|88.04|0.00|-2.77|0001A52E|0|1| +31|2023-10-06T20:21:50.8120000-07:00|10FF0001||||| +37|2023-10-06T20:21:50.8560000-07:00|40022550|Zeromus|0001A528|37265687||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:50.8560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|35B2|127791|127791|7400|10000|||90.64|88.04|0.00|-2.77|10FF0006|Wowobora Gogobora|0|80739|80739|9450|10000|||93.84|84.62|0.00|-1.28| +24|2023-10-06T20:21:50.8560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1133|80739|80739|8350|10000|||95.75|84.11|0.00|-1.72|10FF0006|Wowobora Gogobora|0|80739|80739|9450|10000|||93.84|84.62|0.00|-1.28| +38|2023-10-06T20:21:50.8560000-07:00|40022550|Zeromus|005A5A00|37265687|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T20:21:50.8560000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +38|2023-10-06T20:21:50.8560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|10||90.64|88.04|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:50.8560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8900|10000|27||95.75|84.11|0.00|-1.72|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:50.5270000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:21:50.5270000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:21:50.6190000-07:00|Change|10FF0005||||||||| +24|2023-10-06T20:21:50.9440000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|117A|90055|90055|10000|10000|||95.03|85.80|0.00|-1.97|10FF0006|Wowobora Gogobora|0|80739|80739|9450|10000|||93.18|84.58|0.00|-1.35| +38|2023-10-06T20:21:50.9440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||95.03|85.80|0.00|-1.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:21:50.9890000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1BEF|80739|80739|9450|10000|||93.18|84.58|0.00|-1.35|10FF0006|Wowobora Gogobora|0|80739|80739|9450|10000|||93.18|84.58|0.00|-1.35| +38|2023-10-06T20:21:50.9890000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|10000|10000|17||93.18|84.58|0.00|-1.35|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:50.9890000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:21:51.0780000-07:00|40022550|Zeromus|0001A52C|37241281||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:51.0780000-07:00|40022550|Zeromus|0001A52A|37230520||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:51.0780000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|10000|10000|17||92.61|84.47|0.00|-1.43|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:51.0780000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:21:51.0780000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|10000|10000|||92.61|84.47|0.00|-1.43|80739|80739|10000|10000|||92.61|84.47|0.00|-1.43|0001A52F|0|1| +37|2023-10-06T20:21:51.1230000-07:00|40022550|Zeromus|0001A52B|37216263||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:51.1230000-07:00|10FF0003|Gegehi Gehi|0001A52B|73085|73085|8900|10000|18||86.63|86.98|0.00|-1.58|2300|0|0|01|040004D2|0|41F00000|| +38|2023-10-06T20:21:51.1230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8900|10000|18||86.63|86.98|0.00|-1.58|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:51.1670000-07:00|40022550|Zeromus|0001A52D|37216113||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:50.7130000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:21:50.8280000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:21:50.9450000-07:00|Change|40022659||||||||| +37|2023-10-06T20:21:51.3450000-07:00|40022550|Zeromus|0001A52E|37214188||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:51.4340000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42722003|44EC0000|174B0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|37216113|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||88.18|89.84|0.00|-2.16|0001A530|0|1| +38|2023-10-06T20:21:51.4340000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||88.18|89.84|0.00|-2.16|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:51.4340000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:21:51.0570000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:21:51.4780000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37214188|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||87.64|85.42|0.00|2.79|0001A531|0|1| +21|2023-10-06T20:21:51.4780000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|712003|22A90000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|37214188|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||87.09|87.25|0.00|3.04|0001A532|0|1| +24|2023-10-06T20:21:51.5220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1C5A|128564|128564|10000|10000|||87.64|85.42|0.00|2.79|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||87.64|85.42|0.00|2.79| +24|2023-10-06T20:21:51.5220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1CAB|79111|79111|8700|10000|||88.68|85.98|0.00|-1.32|10FF0006|Wowobora Gogobora|0|80739|80739|10000|10000|||89.80|84.35|0.00|-1.55| +38|2023-10-06T20:21:51.5220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||87.64|85.42|0.00|2.79|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:51.5220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8700|10000|17||88.68|85.98|0.00|-1.32|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:21:51.5670000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F640E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|37214188|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8900|10000|||91.75|84.49|0.00|-1.46|0001A533|0|1| +261|2023-10-06T20:21:51.1750000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:21:51.2750000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:21:51.6550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|10||86.59|86.91|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:51.6550000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:21:51.7000000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37214188|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8500|10000|||91.16|84.62|0.00|2.49|0001A534|0|1| +21|2023-10-06T20:21:51.7000000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|726003|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37214188|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8900|10000|||84.97|86.82|0.00|-1.77|0001A535|0|1| +261|2023-10-06T20:21:51.4680000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:21:51.4680000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:21:51.7890000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||85.18|84.96|0.00|2.90|128564|128564|10000|10000|||85.18|84.96|0.00|2.90|0001A536|0|1| +21|2023-10-06T20:21:51.7890000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|714003|37BE0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|37214188|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||89.55|86.06|0.00|-1.43|0001A537|0|1| +38|2023-10-06T20:21:51.7890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||85.18|84.96|0.00|2.90|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:51.7890000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:21:51.8770000-07:00|40022550|Zeromus|0001A530|37196544|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:21:51.8770000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:21:51.8770000-07:00|10FF0002|Suchichi Suchi|0001A530|90128|90128|10000|10000|14||85.61|89.10|0.00|3.10|1600|0|0|01|02000323|0|41F00000|| +39|2023-10-06T20:21:51.8770000-07:00|40022659|Carbuncle|75851|75851|10000|10000|||92.06|83.71|0.00|-1.37| +38|2023-10-06T20:21:51.8770000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||85.61|89.10|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:51.6620000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:21:52.0110000-07:00|40022550|Zeromus|0001A531|37193666||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:52.0110000-07:00|10FF0007|Kehabiqo Febiqo|0001A531|128564|128564|10000|10000|18||83.92|84.71|0.00|2.94|1500|0|0|01|04000769|0|C1F00000|| +37|2023-10-06T20:21:52.1010000-07:00|40022550|Zeromus|0001A532|37184793||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:52.1010000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|37196544|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8700|10000|||85.55|87.32|0.00|-1.20|0001A538|0|1| +21|2023-10-06T20:21:52.1010000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|F250E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|37196544|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||86.73|84.41|0.00|-1.55|0001A539|0|1| +38|2023-10-06T20:21:52.1010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8700|10000|17||85.55|87.32|0.00|-1.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:52.1010000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:21:52.1010000-07:00|40022659|Carbuncle|005A5A00|0|0|0|0|0||90.92|83.97|0.00|-1.32|0|0|0|||| +30|2023-10-06T20:21:52.1010000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022659|Carbuncle|00|75851|79111| +30|2023-10-06T20:21:52.1010000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|40022659|Carbuncle|2940|75851|79111| +38|2023-10-06T20:21:52.1010000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9600|10000|17||86.73|84.41|0.00|-1.55|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:52.1010000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:21:52.1460000-07:00|40022664||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||| +39|2023-10-06T20:21:52.1460000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||84.56|88.57|0.00|-2.89| +38|2023-10-06T20:21:52.1460000-07:00|40022664||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T20:21:52.1900000-07:00|40022550|Zeromus|0001A533|37184793|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:21:52.1900000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +39|2023-10-06T20:21:52.1900000-07:00|10FF0003|Gegehi Gehi|73085|73085|9100|10000|||84.92|86.83|0.00|-2.49| +24|2023-10-06T20:21:52.1900000-07:00|40022550|Zeromus|DoT|0|23C3|37196544|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||84.56|88.57|0.00|-2.89| +38|2023-10-06T20:21:52.1900000-07:00|40022550|Zeromus|005A5A00|37175638|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T20:21:51.7840000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:21:52.2340000-07:00|40022550|Zeromus|0001A534|37175383||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:52.2340000-07:00|40022550|Zeromus|0001A535|37175334||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:52.2340000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37175638|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||87.44|86.31|0.00|2.71|0001A53A|0|1| +37|2023-10-06T20:21:52.2780000-07:00|40022550|Zeromus|0001A537|37161064||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:52.3230000-07:00|10FF0007|Kehabiqo Febiqo|0001A536|128564|128564|10000|10000|18||82.99|84.53|0.00|2.91|1500|0|0|01|04000769|0|41F00000|| +261|2023-10-06T20:21:51.8950000-07:00|Change|40022659||||||||||||||| +21|2023-10-06T20:21:52.3230000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37161064|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||84.27|88.41|0.00|-3.04|0001A53B|0|1| +36|2023-10-06T20:21:52.3230000-07:00|0CF8|3| +38|2023-10-06T20:21:52.3230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||82.99|84.53|0.00|2.91|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:21:52.3680000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7600|10000|||85.68|86.63|0.00|2.67| +39|2023-10-06T20:21:52.3680000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8700|10000|||88.44|85.32|0.00|-1.53| +261|2023-10-06T20:21:52.0050000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:21:52.4570000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||86.05|86.17|0.00|-2.52| +261|2023-10-06T20:21:52.0050000-07:00|Add|40022664||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:21:52.0050000-07:00|40022664|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|72376|75851|10000|10000|||83.68|90.16|0.00|2.03| +39|2023-10-06T20:21:52.5010000-07:00|10FF0006|Wowobora Gogobora|80739|80739|9805|10000|||85.92|84.32|0.00|1.86| +261|2023-10-06T20:21:52.1230000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:21:52.1230000-07:00|Change|40022664||||| +261|2023-10-06T20:21:52.2410000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:21:52.7690000-07:00|40022550|Zeromus|0001A53A|37156800||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:52.8140000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|85.10|86.90|0.00|2.82| +37|2023-10-06T20:21:52.8580000-07:00|40022550|Zeromus|0001A53B|37153750||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:21:52.8580000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|154B|127791|127791|7600|10000|||85.68|86.63|0.00|2.67|10FF0006|Wowobora Gogobora|0|80739|80739|9805|10000|||83.71|84.75|0.00|-2.07| +37|2023-10-06T20:21:52.8590000-07:00|40022550|Zeromus|0001A539|37153750|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:21:52.8590000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:21:52.8590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7600|10000|10||85.68|86.63|0.00|2.67|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:52.8590000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:21:52.9030000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|A2AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37156800|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||82.47|84.43|0.00|2.90|0001A53C|0|1| +38|2023-10-06T20:21:52.9030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||82.47|84.43|0.00|2.90|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:52.9030000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +39|2023-10-06T20:21:53.0360000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||82.47|84.43|0.00|1.81| +39|2023-10-06T20:21:53.0360000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8900|10000|||84.46|87.79|0.00|2.03| +261|2023-10-06T20:21:52.6250000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:21:53.0810000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37153750|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9805|10000|||82.96|84.43|0.00|-2.28|0001A53D|0|1| +21|2023-10-06T20:21:53.0810000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|BD40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37153750|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7600|10000|||85.68|86.63|0.00|2.67|0001A53E|0|1| +31|2023-10-06T20:21:53.0810000-07:00|10FF0001||||| +261|2023-10-06T20:21:52.6250000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:21:53.1260000-07:00|10FF0008|Kokosaze Lulusaze|0001A538|79111|79111|8900|10000|17||84.46|87.79|0.00|2.03|1B00|0|0|01|05000AA4|0|0|| +38|2023-10-06T20:21:53.1260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||82.47|84.43|0.00|1.81|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.1260000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:21:53.1260000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||84.00|88.27|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.1260000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|90128|79111| +38|2023-10-06T20:21:53.1260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8900|10000|17||84.46|87.79|0.00|2.03|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.1260000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:21:53.1260000-07:00|40022664|Ruby Ifrit|005A5A00|72376|75851|10000|10000|0||83.68|90.16|0.00|2.03|0|0|0|||||||||| +26|2023-10-06T20:21:53.1260000-07:00|30|Well Fed|2345.89|10FF0008|Kokosaze Lulusaze|40022664|Ruby Ifrit|2964|75851|79111| +26|2023-10-06T20:21:53.1260000-07:00|31|Medicated|3.49|10FF0008|Kokosaze Lulusaze|40022664|Ruby Ifrit|2940|75851|79111| +38|2023-10-06T20:21:53.1260000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9805|10000|17||82.96|84.43|0.00|-2.28|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:21:53.1260000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:21:53.1260000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|80739|79111| +38|2023-10-06T20:21:53.1260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7600|10000|10||85.68|86.63|0.00|2.67|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.1260000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:21:53.1260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8700|10000|27||84.78|86.29|0.00|-0.93|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.1260000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|80739|79111| +38|2023-10-06T20:21:53.1260000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9100|10000|18||85.10|86.90|0.00|2.42|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.1260000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73085|79111| +38|2023-10-06T20:21:53.1260000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||84.01|86.32|0.00|-2.48|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.1260000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|90055|79111| +21|2023-10-06T20:21:53.1690000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750603|D090000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7600|10000|||85.68|86.63|0.00|2.67|37153750|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A53F|0|1| +261|2023-10-06T20:21:52.7470000-07:00|Change|40022664||| +261|2023-10-06T20:21:52.7470000-07:00|Change|10FF0003||||||||||||||||||| +21|2023-10-06T20:21:53.2140000-07:00|4002255D|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|116.50|0.00|0.00|0001A540|0|0| +21|2023-10-06T20:21:53.2140000-07:00|4002255F|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|83.50|0.00|0.00|0001A541|0|0| +21|2023-10-06T20:21:53.2140000-07:00|40022561|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|112.00|0.00|0.00|0001A542|0|0| +21|2023-10-06T20:21:53.2140000-07:00|40022563|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|88.00|0.00|0.00|0001A543|0|0| +261|2023-10-06T20:21:52.7470000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:21:52.7470000-07:00|Change|4002255F||||||||||||| +261|2023-10-06T20:21:52.8580000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:21:52.8580000-07:00|Change|40022561||||||||||||| +20|2023-10-06T20:21:53.5700000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|82.51|84.31|0.00|-2.98| +38|2023-10-06T20:21:53.5700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8700|10000|27||84.60|86.82|0.00|0.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.5700000-07:00|317|Dissipation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:21:53.6150000-07:00|40022666||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:21:53.6150000-07:00|40022550|Zeromus|0001A53D|37153713||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:53.6150000-07:00|40022550|Zeromus|0001A53E|37150685||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:53.6150000-07:00|40022666||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +24|2023-10-06T20:21:53.6600000-07:00|10FF0002|Suchichi Suchi|HoT|0|1B5D|90128|90128|10000|10000|||84.00|88.27|0.00|3.09|10FF0006|Wowobora Gogobora|0|80739|80739|9805|10000|||82.51|84.31|0.00|-3.02| +38|2023-10-06T20:21:53.6600000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||84.00|88.27|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +03|2023-10-06T20:21:53.3000000-07:00|40022666|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||82.64|86.03|0.00|0.42| +261|2023-10-06T20:21:53.3000000-07:00|Add|40022666||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:21:53.7040000-07:00|10FF0003|Gegehi Gehi|HoT|0|1033|73085|73085|9100|10000|||85.10|86.90|0.00|2.00|10FF0006|Wowobora Gogobora|0|80739|80739|9805|10000|||82.51|84.31|0.00|-3.02| +38|2023-10-06T20:21:53.7040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9100|10000|18||85.10|86.90|0.00|2.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:53.3000000-07:00|Change|40022666||| +21|2023-10-06T20:21:53.7920000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37150685|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8900|10000|||84.46|87.79|0.00|2.03|0001A544|0|1| +37|2023-10-06T20:21:53.8370000-07:00|40022550|Zeromus|0001A53C|37109040||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:53.8370000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9805|10000|17||82.51|84.31|0.00|2.50|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:21:53.8370000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +24|2023-10-06T20:21:53.8820000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1BCC|127791|127791|7600|10000|||85.68|86.63|0.00|2.00|10FF0006|Wowobora Gogobora|0|80739|80739|9805|10000|||82.51|84.31|0.00|2.50| +24|2023-10-06T20:21:53.8820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1C55|80739|80739|8700|10000|||84.67|87.30|0.00|0.22|10FF0006|Wowobora Gogobora|0|80739|80739|9805|10000|||82.51|84.31|0.00|2.50| +38|2023-10-06T20:21:53.8820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7600|10000|10||85.68|86.63|0.00|2.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:21:53.8820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9250|10000|27||84.67|87.30|0.00|0.22|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:53.4910000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:21:53.9280000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|2A180000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|37150685|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||84.00|88.27|0.00|3.09|0001A545|0|1| +38|2023-10-06T20:21:53.9280000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||84.00|88.27|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.9280000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:21:53.9280000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:21:53.9720000-07:00|10FF0001|Sesuga Sapisuga|0001A53F|124454|127791|7600|10000|0||85.68|86.63|0.00|2.00|1300|0|0|01|03000000|0|0|| +24|2023-10-06T20:21:53.9720000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1C3C|90055|90055|10000|10000|||83.76|86.48|-0.02|2.62|10FF0006|Wowobora Gogobora|0|80739|80739|9805|10000|||82.51|84.31|0.00|2.17| +21|2023-10-06T20:21:53.9720000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1F9C0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|37109040|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7600|10000|||85.68|86.63|0.00|2.00|0001A546|0|1| +20|2023-10-06T20:21:53.9720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|84.67|87.30|0.00|0.22| +38|2023-10-06T20:21:53.9720000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||84.00|88.27|0.00|2.04|0|0|0|||||||||||||||| +30|2023-10-06T20:21:53.9720000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:21:53.9720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|124454|127791|7600|10000|0||85.68|86.63|0.00|2.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:53.9720000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:21:53.9720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||83.76|86.48|-0.02|2.62|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:53.6740000-07:00|Change|10FF0006||||||||||||||||||||| +38|2023-10-06T20:21:54.0160000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|10000|10000|17||82.51|84.31|0.00|1.81|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:21:54.0590000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|200004|223C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|124454|127791|7600|10000|||85.68|86.63|0.00|2.00|73956|77430|10000|10000|||82.87|86.18|0.00|0.80|0001A547|0|1| +38|2023-10-06T20:21:54.1040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|9100|10000|18||85.10|86.90|0.00|2.00|0|0|0|||||||||||||||| +30|2023-10-06T20:21:54.1040000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:21:53.7900000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:21:53.7900000-07:00|Change|40022659||||||||| +21|2023-10-06T20:21:54.1930000-07:00|40022664|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|154003|80A20000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|37109040|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||83.68|90.16|0.00|2.03|0001A548|0|1| +21|2023-10-06T20:21:54.2380000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|156003|5C680000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|37109040|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9100|10000|||85.10|86.90|0.00|2.00|0001A549|0|1| +38|2023-10-06T20:21:54.2380000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8900|10000|18||85.10|86.90|0.00|2.00|0|0|0|||||||||| +26|2023-10-06T20:21:54.2380000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:21:54.2380000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:21:54.2380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9250|10000|27||84.67|87.30|0.00|1.45|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:54.2380000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:21:54.2810000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|42AD0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|37109040|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.73|86.49|0.00|2.42|0001A54A|0|1| +261|2023-10-06T20:21:53.9070000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T20:21:54.3260000-07:00|40022550|Zeromus|0001A544|37108861||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:54.3700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8900|10000|17||84.47|87.79|-0.02|1.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:54.3700000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:21:54.0210000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:21:54.5050000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35E70000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|37108861|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||82.51|84.31|0.00|1.81|0001A54B|0|1| +38|2023-10-06T20:21:54.5050000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||83.73|86.50|0.00|2.01|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:54.5050000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:21:54.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|101B|128564|128564|10000|10000|||83.90|86.47|0.00|2.17|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||83.90|86.47|0.00|2.17| +38|2023-10-06T20:21:54.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||83.90|86.47|0.00|2.17|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:21:54.5930000-07:00|40022550|Zeromus|0001A545|37098085||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:54.5930000-07:00|10FF0002|Suchichi Suchi|0001A545|90128|90128|10000|10000|14||84.73|88.96|0.00|1.78|1600|0|0|01|03000322|0|41F00000|| +21|2023-10-06T20:21:54.5930000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|150003|49960000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|37108861|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8900|10000|||84.55|87.82|0.00|1.57|0001A54C|0|1| +38|2023-10-06T20:21:54.5930000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||84.73|88.96|0.00|1.78|0|0|0|||||||||||||||| +38|2023-10-06T20:21:54.5930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8900|10000|17||84.55|87.82|0.00|1.57|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:54.5930000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +34|2023-10-06T20:21:54.6370000-07:00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01| +38|2023-10-06T20:21:54.6370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||84.29|87.02|0.00|2.17|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:54.6370000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:21:54.2410000-07:00|Change|40022666||||||||| +37|2023-10-06T20:21:54.7260000-07:00|40022550|Zeromus|0001A546|37089993||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:54.7260000-07:00|10FF0001|Sesuga Sapisuga|0001A546|124454|127791|8600|10000|0||85.68|86.63|0.00|2.00|1300|0|0|0| +261|2023-10-06T20:21:54.3340000-07:00|Change|10FF0001||||| +38|2023-10-06T20:21:54.7710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|124454|127791|8600|10000|0||85.68|86.63|0.00|2.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:21:54.7710000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:21:54.8590000-07:00|10FF0001|Sesuga Sapisuga|0001A547|127791||||||85.68|86.63|0.00|2.00| +37|2023-10-06T20:21:54.8590000-07:00|40022550|Zeromus|0001A54A|37072924||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:54.8600000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|127C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37089993|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||85.08|88.16|0.00|2.18|0001A54D|0|1| +21|2023-10-06T20:21:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|754003|3E300000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|37072924|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9250|10000|||84.67|87.30|0.00|2.01|0001A54E|0|1| +37|2023-10-06T20:21:55.0380000-07:00|40022550|Zeromus|0001A549|37049268||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:55.1280000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||87.59|91.39|0.00|1.69| +21|2023-10-06T20:21:55.1280000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37049268|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||87.59|91.39|0.00|1.69|0001A54F|0|1| +261|2023-10-06T20:21:54.7340000-07:00|Change|10FF0006||||||||||||||||||||||| +24|2023-10-06T20:21:55.1720000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|22D9|127791|127791|8600|10000|||85.70|87.90|0.00|1.31|10FF0006|Wowobora Gogobora|1|80739|80739|9600|10000|||82.53|84.31|0.00|0.95| +37|2023-10-06T20:21:55.1720000-07:00|40022550|Zeromus|0001A54B|37035469||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:21:55.1720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8600|10000|0||85.70|87.90|0.00|1.31|0|0|0||||||||||||||||||| +26|2023-10-06T20:21:55.1720000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +39|2023-10-06T20:21:55.2160000-07:00|10FF0003|Gegehi Gehi|73085|73085|9100|10000|||85.10|86.90|0.00|2.00| +24|2023-10-06T20:21:55.2160000-07:00|40022550|Zeromus|DoT|0|2677|37035469|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||88.17|91.85|0.00|1.69| +38|2023-10-06T20:21:55.2160000-07:00|40022550|Zeromus|005A5A00|37025622|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T20:21:54.8450000-07:00|Change|40022666||||||||||| +21|2023-10-06T20:21:55.2610000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|352F0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|37035469|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8900|10000|||85.10|86.90|0.00|2.00|0001A550|0|1| +38|2023-10-06T20:21:55.2610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8800|10000|18||85.10|86.90|0.00|2.00|0|0|0||||||| +30|2023-10-06T20:21:55.2610000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:21:54.9570000-07:00|Change|10FF0003||| +261|2023-10-06T20:21:54.9570000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:21:55.3510000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8800|10000|||85.96|89.12|0.00|1.31| +39|2023-10-06T20:21:55.3510000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9050|10000|||84.80|87.50|0.00|0.85| +21|2023-10-06T20:21:55.3510000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|91E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37025622|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8600|10000|||85.96|89.12|0.00|1.31|0001A551|0|1| +36|2023-10-06T20:21:55.3510000-07:00|0DD4|3| +31|2023-10-06T20:21:55.3510000-07:00|10FF0001||||| +37|2023-10-06T20:21:55.3940000-07:00|40022550|Zeromus|0001A54D|37020890||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:55.3950000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|15D10000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|37025622|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||87.60|89.69|0.00|2.18|0001A552|0|1| +261|2023-10-06T20:21:55.0690000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:21:55.4390000-07:00|40022550|Zeromus|0001A54C|37002052||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:55.4390000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||87.85|87.38|0.00|1.63| +21|2023-10-06T20:21:55.4390000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|15F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37020890|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||87.85|87.38|0.00|1.63|0001A553|0|1| +39|2023-10-06T20:21:55.5270000-07:00|10FF0006|Wowobora Gogobora|80739|80739|9805|10000|||84.38|85.77|0.00|0.90| +38|2023-10-06T20:21:55.5270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8800|10000|0||86.27|89.65|0.00|1.31|0|0|0|||||||||| +30|2023-10-06T20:21:55.5270000-07:00|31|Medicated|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|296B|127791|127791| +12|2023-10-06T20:21:55.1800000-07:00|19|3439|385|3962|245|408|390|3439|976|2540|245|408|2182|400|400|0|529|4000174A6D2E55| +37|2023-10-06T20:21:55.6610000-07:00|40022550|Zeromus|0001A54F|36999187||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:55.2710000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:21:55.7060000-07:00|40022550|Zeromus|0001A54E|36983267||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:55.2710000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:21:55.3700000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:21:55.8400000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36983267|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9050|10000|||86.69|89.52|0.00|0.80|0001A554|0|1| +37|2023-10-06T20:21:55.8850000-07:00|40022550|Zeromus|0001A551|36980933||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:55.9300000-07:00|40022550|Zeromus|0001A552|36975348||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:55.9740000-07:00|40022550|Zeromus|0001A553|36969731||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:55.5550000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:21:56.0190000-07:00|40022550|Zeromus|0001A550|36956116||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:56.0190000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||90.87|92.77|0.00|2.19| +39|2023-10-06T20:21:56.0190000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9100|10000|||88.43|89.94|0.00|1.25| +20|2023-10-06T20:21:56.0190000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|86.54|87.81|0.00|0.97| +261|2023-10-06T20:21:55.6530000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:21:55.6530000-07:00|Change|40022659||| +04|2023-10-06T20:21:55.6530000-07:00|40022659|Carbuncle|00|5A|10FF0008|00||10261|13498|0|0|0|10000|||87.82|84.92|0.00|-1.18| +261|2023-10-06T20:21:55.6530000-07:00|Remove|40022659| +37|2023-10-06T20:21:56.1510000-07:00|40022550|Zeromus|0001A548|36923186||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:55.7680000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:21:56.1960000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||91.45|92.89|0.00|2.18|36923186|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A555|0|1| +37|2023-10-06T20:21:56.3740000-07:00|40022550|Zeromus|0001A554|36923029||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:56.3740000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|89.01|90.64|-0.02|0.99| +21|2023-10-06T20:21:56.4190000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|722003|64070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36923186|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8800|10000|||87.69|90.14|0.00|0.71|0001A556|0|1| +21|2023-10-06T20:21:56.4640000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|34F50000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|36923029|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||94.33|95.98|0.00|2.38|0001A557|0|1| +21|2023-10-06T20:21:56.4640000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41714003|2FE00000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|36923029|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8800|10000|||89.26|94.68|0.00|1.32|0001A558|0|1| +38|2023-10-06T20:21:56.4640000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||94.33|95.98|0.00|2.38|0|0|0|||||||||||||||| +26|2023-10-06T20:21:56.4640000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:21:56.4640000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:56.4640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8800|10000|0||89.26|94.68|0.00|1.32|0|0|0|||||||||||||||| +26|2023-10-06T20:21:56.4640000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:21:56.4640000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:21:56.0030000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:21:56.0030000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:21:56.0030000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:21:56.1240000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:21:56.2420000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:21:56.6420000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36923029|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8800|10000|||89.08|91.73|0.00|2.34|0001A559|0|1| +38|2023-10-06T20:21:56.6420000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||95.58|96.74|0.00|2.85|0|0|0|||||||||||||||| +38|2023-10-06T20:21:56.6420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9100|10000|17||91.48|91.92|0.00|1.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:56.6420000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|2940|79111|79111| +38|2023-10-06T20:21:56.6420000-07:00|40022664|Ruby Ifrit|005A5A00|0|75851|10000|10000|0||83.68|90.16|0.00|2.03|0|0|0|||| +30|2023-10-06T20:21:56.6420000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|40022664|Ruby Ifrit|2940|75851|79111| +21|2023-10-06T20:21:56.7730000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40714003|52040000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|36923029|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||95.83|90.10|0.00|1.44|0001A55A|0|1| +261|2023-10-06T20:21:56.4300000-07:00|Change|40022550||| +38|2023-10-06T20:21:56.8640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8800|10000|0||90.56|96.88|0.00|1.32|0|0|0|||||||||||||||| +38|2023-10-06T20:21:56.8640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9600|10000|27||89.13|90.68|0.00|2.34|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:21:56.4300000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:21:56.9530000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36923029|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9100|10000|||92.64|92.73|0.00|0.99|0001A55B|0|1| +21|2023-10-06T20:21:56.9530000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|58CB0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|36923029|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9805|10000|||86.81|88.06|0.00|2.12|0001A55C|0|1| +37|2023-10-06T20:21:56.9980000-07:00|10FF0007|Kehabiqo Febiqo|0001A555|128564|128564|10000|10000|5||95.60|93.13|0.00|2.29|1500|0|0|01|11000000|0|0|| +38|2023-10-06T20:21:56.9980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|5||95.60|93.13|0.00|2.29|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:21:56.9980000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:21:56.9980000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9955|10000|17||86.81|88.06|0.00|2.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:21:56.9980000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:21:57.0420000-07:00|40022550|Zeromus|0001A558|36910773||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:57.0420000-07:00|10FF0001|Sesuga Sapisuga|0001A558|127791|127791|8800|10000|0||90.90|97.44|0.00|1.32|1300|0|0|02|0300076E|03|41F00000|||||| +21|2023-10-06T20:21:57.0420000-07:00|10FF0008|Kokosaze Lulusaze|651D|Crimson Strike|40022550|Zeromus|154003|573B0000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|36923029|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9100|10000|||93.23|93.15|0.00|0.95|0001A55D|0|1| +261|2023-10-06T20:21:56.6220000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:21:57.0420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8800|10000|0||90.90|97.44|0.00|1.32|0|0|0|||||||||||||||| +37|2023-10-06T20:21:57.0860000-07:00|40022550|Zeromus|0001A557|36897216||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:57.0860000-07:00|10FF0002|Suchichi Suchi|0001A557|90128|90128|10000|10000|14||95.89|96.90|0.00|2.80|1600|0|0|01|02000747|0|41F00000|| +38|2023-10-06T20:21:57.0860000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||95.89|96.90|0.00|2.80|0|0|0|||||||||||||||| +37|2023-10-06T20:21:57.1750000-07:00|40022550|Zeromus|0001A559|36897184||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:56.7430000-07:00|Change|40022666||||||||| +261|2023-10-06T20:21:56.8610000-07:00|Change|40022666||||||||| +37|2023-10-06T20:21:57.3080000-07:00|40022550|Zeromus|0001A55A|36876188||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:57.3080000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|300E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36897184|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9600|10000|||89.13|90.68|0.00|2.34|0001A55E|0|1| +37|2023-10-06T20:21:57.4850000-07:00|40022550|Zeromus|0001A55B|36876001||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:57.0820000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:21:57.2000000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:21:57.2000000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:21:57.5750000-07:00|40022550|Zeromus|0001A556|36850394||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:57.2000000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:21:57.6200000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15C0|127791|127791|8800|10000|||94.52|98.64|0.00|1.32|10FF0006|Wowobora Gogobora|0|80739|80739|9955|10000|||87.08|88.27|0.00|1.24| +37|2023-10-06T20:21:57.6200000-07:00|40022550|Zeromus|0001A55C|36827663||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:57.6200000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36850394|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8800|10000|||94.52|98.64|0.00|1.32|0001A55F|0|1| +38|2023-10-06T20:21:57.6200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8800|10000|0||94.52|98.64|0.00|1.32|0|0|0|||||||||||||||| +26|2023-10-06T20:21:57.6200000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +31|2023-10-06T20:21:57.6200000-07:00|10FF0001||||| +261|2023-10-06T20:21:57.2000000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:21:57.2000000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:21:57.3970000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:21:57.7980000-07:00|40022550|Zeromus|0001A55D|36805332||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:57.8420000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32714003|28640000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|36805332|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||97.03|93.27|0.00|2.86|0001A560|0|1| +21|2023-10-06T20:21:57.8420000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36805332|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9955|10000|||88.38|89.24|0.00|1.06|0001A561|0|1| +261|2023-10-06T20:21:57.3970000-07:00|Change|40022550||| +21|2023-10-06T20:21:57.9320000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36805332|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.89|99.20|0.00|2.98|0001A562|0|1| +37|2023-10-06T20:21:58.1100000-07:00|40022550|Zeromus|0001A55E|36793030||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:57.7860000-07:00|Change|40022666||||||||||| +37|2023-10-06T20:21:58.1550000-07:00|40022550|Zeromus|0001A55F|36791243||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:58.1550000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.01|99.29|-0.02|3.06| +39|2023-10-06T20:21:58.2010000-07:00|10FF0003|Gegehi Gehi|73085|73085|9000|10000|||94.74|96.98|0.00|0.90| +24|2023-10-06T20:21:58.2010000-07:00|40022550|Zeromus|DoT|0|2DA0|36793030|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||100.01|99.29|-0.02|3.06| +41|2023-10-06T20:21:58.2010000-07:00|80034E7C|2909|01|00|00| +20|2023-10-06T20:21:58.2010000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|94.74|96.98|0.00|0.90| +261|2023-10-06T20:21:57.7860000-07:00|Change|40022664||||| +261|2023-10-06T20:21:57.7860000-07:00|Change|40022664||||| +38|2023-10-06T20:21:58.2010000-07:00|40022550|Zeromus|005A5A00|36779563|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T20:21:57.7860000-07:00|Change|4002256E||||||||| +00|2023-10-06T20:21:57.0000000-07:00|0839||Zeromus drinks deep of Azdaja's soul...| +261|2023-10-06T20:21:57.9040000-07:00|Change|10FF0006||||||||| +38|2023-10-06T20:21:58.2440000-07:00|4002266C||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:21:58.2440000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|166E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36779563|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.68|93.69|0.00|2.94|0001A563|0|1| +38|2023-10-06T20:21:58.2440000-07:00|4002266C||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +23|2023-10-06T20:21:58.2900000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +261|2023-10-06T20:21:57.9040000-07:00|Change|40022666||||||||||| +20|2023-10-06T20:21:58.2900000-07:00|40022550|Zeromus|8B38|Sable Thread|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:58.2900000-07:00|4002256E|Zeromus|8AEF|unknown_8aef|10FF0006|Wowobora Gogobora|1B|8AEF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9955|10000|||90.49|91.15|-0.01|0.83|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A564|0|1| +36|2023-10-06T20:21:58.3340000-07:00|0EB0|3| +37|2023-10-06T20:21:58.3770000-07:00|40022550|Zeromus|0001A561|36779526||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:58.3770000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9000|10000|||98.93|99.06|0.00|2.14| +39|2023-10-06T20:21:58.3770000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9400|10000|||92.85|92.54|0.00|1.12| +261|2023-10-06T20:21:58.0250000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:21:58.0250000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:21:58.0250000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:21:58.4670000-07:00|40022550|Zeromus|0001A560|36769186||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:21:58.4670000-07:00|40022550|Zeromus|0001A562|36766196||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:21:58.4670000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||98.83|95.50|0.00|0.99| +20|2023-10-06T20:21:58.4670000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|90.85|91.45|0.00|0.86| +261|2023-10-06T20:21:58.0250000-07:00|Add|4002266C||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:21:58.0250000-07:00|4002266C|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||100.74|100.35|0.00|-2.47| +261|2023-10-06T20:21:58.0250000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:21:58.1420000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:21:58.1420000-07:00|Change|4002266C||| +39|2023-10-06T20:21:58.5110000-07:00|10FF0006|Wowobora Gogobora|80739|80739|10000|10000|||90.96|91.54|0.00|0.91| +20|2023-10-06T20:21:58.5550000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|96.00|97.96|0.00|1.05| +21|2023-10-06T20:21:58.6440000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|103A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36766196|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.95|95.58|0.00|1.19|0001A565|0|1| +37|2023-10-06T20:21:58.7780000-07:00|40022550|Zeromus|0001A563|36760454||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:21:58.8230000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|94.56|92.94|0.00|1.40| +261|2023-10-06T20:21:58.4530000-07:00|Change|40022550||||| +21|2023-10-06T20:21:58.9570000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|3ED00000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|36760454|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.96|99.29|0.00|3.12|0001A566|0|1| +21|2023-10-06T20:21:58.9570000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|28CE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36760454|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||99.88|97.90|0.00|2.97|0001A567|0|1| +38|2023-10-06T20:21:58.9570000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|14||99.96|99.29|0.00|3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:21:58.9570000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:21:58.9570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||99.88|97.90|0.00|2.97|0|0|0|||||||||||||||| +26|2023-10-06T20:21:58.9570000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +39|2023-10-06T20:21:59.0460000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||98.80|91.18|0.00|3.11| +39|2023-10-06T20:21:59.0460000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9300|10000|||100.31|100.94|0.00|-0.56| +261|2023-10-06T20:21:58.7790000-07:00|Change|40022666||||||||| +37|2023-10-06T20:21:59.1800000-07:00|40022550|Zeromus|0001A565|36756300||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:21:58.8920000-07:00|Change|4002266C||| +21|2023-10-06T20:21:59.2690000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|710003|40130000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|36756300|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.74|95.82|0.00|2.37|0001A568|0|1| +34|2023-10-06T20:21:59.2700000-07:00|4002266C|Carbuncle|4002266C|Carbuncle|01| +261|2023-10-06T20:21:58.8920000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:21:59.0070000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T20:21:59.1230000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:21:59.4030000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|44330000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|36756300|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||91.26|91.78|0.00|2.50|0001A569|0|1| +20|2023-10-06T20:21:59.4930000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|100.20|101.17|0.00|-1.29| +261|2023-10-06T20:21:59.1230000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:21:59.5820000-07:00|40022550|Zeromus|0001A566|36740220||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:21:59.5820000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|724003|2C010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36756300|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.96|99.29|0.00|3.14|0001A56A|0|1| +21|2023-10-06T20:21:59.7170000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2C8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36740220|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.62|90.56|0.00|-3.12|0001A56B|0|1| +21|2023-10-06T20:21:59.7170000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|E000000|13000E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|36740220|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||99.94|94.75|0.00|-3.11|0001A56C|0|1| +21|2023-10-06T20:21:59.7600000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32060000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36740220|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9400|10000|||94.80|93.00|0.00|2.76|0001A56D|0|1| +38|2023-10-06T20:21:59.8500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9550|10000|27||94.80|93.00|0.00|2.76|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:21:59.8950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36740220|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||99.94|94.68|0.00|-3.11|0001A56E|0|1| +31|2023-10-06T20:21:59.8950000-07:00|10FF0001||||| +21|2023-10-06T20:21:59.9840000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|752003|45EA0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|36740220|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|9000|10000|||97.06|98.80|0.00|2.99|0001A56F|0|1| +38|2023-10-06T20:21:59.9840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8800|10000|18||97.06|98.80|0.00|2.99|0|0|0|||||||||| +26|2023-10-06T20:21:59.9840000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:22:00.0280000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|10000|10000|17||92.14|91.99|0.00|1.84|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:22:00.0280000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +24|2023-10-06T20:22:00.0720000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|238B|127791|127791|9000|10000|||99.94|94.68|0.00|-3.11|10FF0006|Wowobora Gogobora|1|80739|80739|9600|10000|||92.14|91.99|0.00|1.84| +37|2023-10-06T20:22:00.0720000-07:00|40022550|Zeromus|0001A569|36722761||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:00.0720000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|716003|68760000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|36740220|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.77|95.96|0.00|3.04|0001A570|0|1| +38|2023-10-06T20:22:00.0720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||99.94|94.68|0.00|-3.11|0|0|0|||||||||||||||| +26|2023-10-06T20:22:00.0720000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:00.0720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.77|95.96|0.00|3.04|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:00.0720000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +37|2023-10-06T20:22:00.2060000-07:00|40022550|Zeromus|0001A56A|36711496||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:22:00.2060000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0006|Wowobora Gogobora|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|0001A571|0|8| +22|2023-10-06T20:22:00.2060000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0004|Buhojaqe Zijaqe|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9550|10000|||94.94|93.10|0.00|0.97|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|0001A571|1|8| +22|2023-10-06T20:22:00.2060000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0007|Kehabiqo Febiqo|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||98.62|90.56|0.00|3.01|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|0001A571|2|8| +22|2023-10-06T20:22:00.2060000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0005|Wuwuchu Wuchu|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||98.81|96.04|0.00|3.08|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|0001A571|3|8| +22|2023-10-06T20:22:00.2060000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0001|Sesuga Sapisuga|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9000|10000|||99.94|94.68|0.00|-3.11|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|0001A571|4|8| +22|2023-10-06T20:22:00.2060000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0003|Gegehi Gehi|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|8800|10000|||97.06|98.80|0.00|2.99|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|0001A571|5|8| +22|2023-10-06T20:22:00.2060000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0002|Suchichi Suchi|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.96|99.29|0.00|3.14|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|0001A571|6|8| +22|2023-10-06T20:22:00.2060000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0008|Kokosaze Lulusaze|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9300|10000|||100.18|101.21|0.00|-3.13|80739|80739|10000|10000|||92.91|92.18|0.00|1.66|0001A571|7|8| +37|2023-10-06T20:22:00.2510000-07:00|40022550|Zeromus|0001A567|36701050||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:00.2510000-07:00|10FF0001|Sesuga Sapisuga|0001A567|127791|127791|9400|10000|0||99.94|94.68|0.00|-3.11|1300|0|0|0| +261|2023-10-06T20:21:59.8530000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:22:00.2950000-07:00|40022550|Zeromus|0001A568|36684647||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:00.2950000-07:00|10FF0005|Wuwuchu Wuchu|0001A568|90055|90055|10000|10000|15||98.81|96.04|0.00|3.08|2700|0|0|01|02000A1B|01|C1F00000|| +261|2023-10-06T20:21:59.9730000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:22:00.3410000-07:00|40022550|Zeromus|0001A56B|36673244||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:00.3850000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|32720000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|36684647|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.62|90.56|0.00|3.01|0001A572|0|1| +38|2023-10-06T20:22:00.3850000-07:00|40022666|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.35|94.65|0.00|3.10|0|0|0||||||| +26|2023-10-06T20:22:00.3850000-07:00|30|Well Fed|1696.89|10FF0004|Buhojaqe Zijaqe|40022666|Ruby Carbuncle|2968|77430|80739| +26|2023-10-06T20:22:00.3850000-07:00|7AC|Summon Order II|30.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:22:00.3850000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9550|10000|||95.63|93.47|0.00|1.02|80739|80739|9550|10000|||95.63|93.47|0.00|1.02|0001A573|0|1| +38|2023-10-06T20:22:00.3850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|5||98.62|90.56|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:00.3850000-07:00|A75|Surging Tempest|37.13|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:22:00.3850000-07:00|A53|Panhaimatinon|14.82|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|05|128564|80739| +261|2023-10-06T20:22:00.0940000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T20:22:00.4300000-07:00|40022550|Zeromus|0001A56E|36671466||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:00.4300000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|712003|4CA30000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|36673244|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9400|10000|||99.94|94.68|0.00|3.14|0001A574|0|1| +22|2023-10-06T20:22:00.4740000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9400|10000|||99.94|94.68|0.00|3.14|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A575|0|8| +22|2023-10-06T20:22:00.4740000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9550|10000|||96.32|93.83|0.00|1.07|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A575|1|8| +22|2023-10-06T20:22:00.4740000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0005|Wuwuchu Wuchu|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||98.88|96.18|0.00|3.08|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A575|2|8| +22|2023-10-06T20:22:00.4740000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||98.62|90.56|0.00|3.01|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A575|3|8| +22|2023-10-06T20:22:00.4740000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0002|Suchichi Suchi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.96|99.29|0.00|3.14|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A575|4|8| +22|2023-10-06T20:22:00.4740000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|8800|10000|||97.12|98.78|0.00|2.53|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A575|5|8| +22|2023-10-06T20:22:00.4740000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|10000|10000|||93.66|92.37|0.00|1.29|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A575|6|8| +22|2023-10-06T20:22:00.4740000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9300|10000|||100.18|101.21|0.00|-3.13|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A575|7|8| +261|2023-10-06T20:22:00.2110000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:00.2110000-07:00|Change|10FF0008||||||||||||||||||| +261|2023-10-06T20:22:00.2110000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:22:00.5650000-07:00|40022550|Zeromus|0001A56D|36658660||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:00.6090000-07:00|40022550|Zeromus|0001A570|36631918||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:00.6090000-07:00|10FF0005|Wuwuchu Wuchu|0001A570|90055|90055|10000|10000|15||98.91|96.25|0.00|3.08|2700|0|0|01|02000A1B|01|41F00000|| +38|2023-10-06T20:22:00.6090000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|15||98.91|96.25|0.00|3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:22:00.6090000-07:00|A53|Panhaimatinon|14.60|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|05|90055|80739| +37|2023-10-06T20:22:00.7420000-07:00|40022550|Zeromus|0001A56C|36628334|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T20:22:00.7420000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:22:00.7420000-07:00|40022550|Zeromus|0001A56F|36610436||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:00.7420000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36631918|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.96|99.29|0.00|3.14|0001A576|0|1| +37|2023-10-06T20:22:00.7870000-07:00|40022550|Zeromus|0001A574|36590817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:00.7870000-07:00|10FF0001|Sesuga Sapisuga|0001A574|127791|127791|9900|10000|0||99.94|94.51|0.00|3.13|1300|0|0|0| +37|2023-10-06T20:22:00.8770000-07:00|10FF0006|Wowobora Gogobora|0001A571|80739|80739|10000|10000|25||95.17|92.84|0.00|1.25|2800|0|0|02|01000A53|05|41700000|||||| +26|2023-10-06T20:22:00.8770000-07:00|A53|Panhaimatinon|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|05|80739|80739| +26|2023-10-06T20:22:00.8770000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:00.8770000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|10000|10000|25||95.17|92.84|0.00|1.25|0|0|0|||||||||||||||||||||| +20|2023-10-06T20:22:00.9210000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|95.17|92.84|0.00|1.25| +21|2023-10-06T20:22:00.9210000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36590817|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9550|10000|||97.42|94.12|0.00|1.24|0001A577|0|1| +261|2023-10-06T20:22:00.6430000-07:00|Change|40022550||||| +37|2023-10-06T20:22:01.0110000-07:00|10FF0004|Buhojaqe Zijaqe|0001A571|80739|80739|9550|10000|35||98.20|94.24|0.00|1.37|1C01|0|0|02|04000A53|05|41700000|||||| +26|2023-10-06T20:22:01.0110000-07:00|A53|Panhaimatinon|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|05|80739|80739| +26|2023-10-06T20:22:01.0110000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:22:01.0110000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|37DD0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|36590817|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8800|10000|||99.03|99.68|0.00|2.42|0001A578|0|1| +38|2023-10-06T20:22:01.0110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9550|10000|35||98.20|94.24|0.00|1.37|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:01.0110000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8500|10000|18||99.03|99.68|0.00|2.42|0|0|0|||||||||||||||| +30|2023-10-06T20:22:01.0110000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:22:01.0110000-07:00|A53|Panhaimatinon|14.20|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|05|73085|80739| +26|2023-10-06T20:22:01.0110000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:22:01.1440000-07:00|10FF0007|Kehabiqo Febiqo|0001A571|128564|128564|10000|10000|10||98.62|90.56|0.00|3.01|1502|0|0|02|04000A53|05|41700000|||||| +26|2023-10-06T20:22:01.1440000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +39|2023-10-06T20:22:01.1440000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.96|99.29|0.00|3.14| +38|2023-10-06T20:22:01.1440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|10||98.62|90.56|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:22:01.1890000-07:00|10FF0003|Gegehi Gehi|73085|73085|8700|10000|||99.45|99.80|0.00|3.14| +24|2023-10-06T20:22:01.1890000-07:00|40022550|Zeromus|DoT|0|29F2|36590817|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|9900|10000|||99.94|93.53|0.00|3.13| +20|2023-10-06T20:22:01.1890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|98.79|94.92|0.00|1.29| +38|2023-10-06T20:22:01.1890000-07:00|40022550|Zeromus|005A5A00|36580079|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:22:01.2330000-07:00|40022666|Ruby Carbuncle|73956|77430|10000|10000|||99.35|94.65|0.00|3.10| +37|2023-10-06T20:22:01.2780000-07:00|40022550|Zeromus|0001A576|36575216||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:01.2780000-07:00|10FF0001|Sesuga Sapisuga|0001A575|127791|127791|9900|10000|0||99.94|93.53|0.00|3.13|1300|0|0|01|0600013D|0|41A00000|| +26|2023-10-06T20:22:01.2780000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:22:01.2780000-07:00|10FF0005|Wuwuchu Wuchu|0001A571|90055|90055|10000|10000|22||98.92|96.27|0.00|3.08|2703|0|0|02|06000A53|05|41700000|||||| +26|2023-10-06T20:22:01.2780000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +38|2023-10-06T20:22:01.2780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|22||98.92|96.27|0.00|3.08|0|0|0||||||||||||||||||||||||| +36|2023-10-06T20:22:01.3220000-07:00|0F8C|3| +261|2023-10-06T20:22:00.9930000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:22:01.3660000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.95|93.36|0.00|3.14| +39|2023-10-06T20:22:01.3660000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9750|10000|||99.00|95.16|0.00|1.77| +261|2023-10-06T20:22:01.1120000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:22:01.4100000-07:00|10FF0004|Buhojaqe Zijaqe|0001A575|80739|80739|9750|10000|35||99.20|95.39|0.00|2.23|1C01|0|0|01|0700013D|0|41A00000|| +26|2023-10-06T20:22:01.4100000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +37|2023-10-06T20:22:01.4100000-07:00|10FF0001|Sesuga Sapisuga|0001A571|127791|127791|10000|10000|5||99.95|93.29|0.00|3.13|1304|0|0|02|05000A53|05|41700000|||||| +26|2023-10-06T20:22:01.4100000-07:00|A53|Panhaimatinon|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|05|127791|80739| +26|2023-10-06T20:22:01.4100000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:01.4100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||99.95|93.29|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:22:01.4550000-07:00|40022550|Zeromus|0001A577|36575063||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:01.4560000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||98.92|96.27|0.00|3.08| +21|2023-10-06T20:22:01.4560000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35720003|265C0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|36575216|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.96|99.29|0.00|3.14|0001A579|0|1| +21|2023-10-06T20:22:01.4560000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|29420000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36575216|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.95|93.29|0.00|3.13|0001A57A|0|1| +38|2023-10-06T20:22:01.4560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||99.95|93.29|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:22:01.4560000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +39|2023-10-06T20:22:01.4990000-07:00|10FF0006|Wowobora Gogobora|80739|80739|10000|10000|||97.12|93.43|0.00|2.93| +261|2023-10-06T20:22:01.2260000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:01.2260000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:22:01.5450000-07:00|10FF0005|Wuwuchu Wuchu|0001A575|90055|90055|10000|10000|22||98.92|96.27|0.00|3.08|2702|0|0|01|0800013D|0|41A00000|| +26|2023-10-06T20:22:01.5450000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:22:01.5450000-07:00|10FF0003|Gegehi Gehi|0001A571|73085|73085|8700|10000|27||99.85|99.93|0.00|3.14|2305|0|0|03|02000A35|0|41700000|||||||||| +26|2023-10-06T20:22:01.5450000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:22:01.5450000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8700|10000|27||99.85|99.93|0.00|3.14|0|0|0|||||||||||||||| +21|2023-10-06T20:22:01.6350000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|D940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36575063|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.62|90.56|0.00|3.01|0001A57B|0|1| +37|2023-10-06T20:22:01.6790000-07:00|10FF0007|Kehabiqo Febiqo|0001A575|128564|128564|10000|10000|10||98.62|90.56|0.00|3.01|1503|0|0|01|0600013D|0|41A00000|| +26|2023-10-06T20:22:01.6790000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:22:01.6790000-07:00|10FF0002|Suchichi Suchi|0001A571|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|1606|0|0|02|02000A53|05|41700000|||||| +26|2023-10-06T20:22:01.6790000-07:00|A53|Panhaimatinon|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|05|90128|80739| +26|2023-10-06T20:22:01.6790000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +21|2023-10-06T20:22:01.6790000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36575063|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8700|10000|||99.87|99.93|0.00|3.14|0001A57C|0|1| +38|2023-10-06T20:22:01.6790000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|0|0|0|||||||||||||||| +21|2023-10-06T20:22:01.7230000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|154003|68540000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|36575063|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||100.18|101.21|0.00|-3.13|0001A57D|0|1| +261|2023-10-06T20:22:01.4330000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:22:01.7680000-07:00|40022550|Zeromus|0001A578|36560762||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:01.7680000-07:00|10FF0003|Gegehi Gehi|0001A578|73085|73085|8700|10000|27||99.87|99.93|0.00|3.14|2300|0|0|01|040004D3|0|41F00000|| +21|2023-10-06T20:22:01.7680000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|5C1B0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|36575063|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.92|96.27|0.00|3.08|0001A57E|0|1| +38|2023-10-06T20:22:01.7680000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8700|10000|27||99.87|99.93|0.00|3.14|0|0|0|||||||||||||||| +38|2023-10-06T20:22:01.7680000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|22||98.92|96.27|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:22:01.7680000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:22:01.7680000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:22:01.7680000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:22:01.8130000-07:00|10FF0002|Suchichi Suchi|0001A575|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|1604|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T20:22:01.8130000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +37|2023-10-06T20:22:01.8130000-07:00|10FF0008|Kokosaze Lulusaze|0001A571|79111|79111|9000|10000|25||100.18|101.21|0.00|-3.13|1B07|0|0|02|03000A53|05|41700000|||||| +26|2023-10-06T20:22:01.8130000-07:00|A53|Panhaimatinon|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|05|79111|80739| +26|2023-10-06T20:22:01.8130000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:01.8130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|25||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:01.8570000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|347D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|36560762|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||97.12|93.43|0.00|2.93|0001A57F|0|1| +21|2023-10-06T20:22:01.8570000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36560762|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.92|96.27|0.00|3.08|0001A580|0|1| +37|2023-10-06T20:22:01.9450000-07:00|10FF0003|Gegehi Gehi|0001A575|73085|73085|8700|10000|27||99.87|99.93|0.00|3.14|2305|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T20:22:01.9450000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +37|2023-10-06T20:22:02.0360000-07:00|40022550|Zeromus|0001A572|36547848||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:02.0360000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||98.62|90.56|0.00|3.01| +39|2023-10-06T20:22:02.0360000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9200|10000|||100.18|101.21|0.00|-3.13| +21|2023-10-06T20:22:02.0360000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|64700000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||98.62|90.56|0.00|3.01|128564|128564|10000|10000|||98.62|90.56|0.00|3.01|0001A581|0|1| +37|2023-10-06T20:22:02.0800000-07:00|10FF0006|Wowobora Gogobora|0001A575|80739|80739|9600|10000|25||97.12|93.43|0.00|2.93|2806|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T20:22:02.0800000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +21|2023-10-06T20:22:02.0800000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|726003|69BD0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|36547848|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.96|99.29|0.00|3.14|0001A582|0|1| +38|2023-10-06T20:22:02.0800000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:22:02.0800000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:22:02.1260000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32C00000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36547848|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9750|10000|||99.60|95.84|0.00|3.12|0001A583|0|1| +04|2023-10-06T20:22:01.8310000-07:00|40022664|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|75851|0|10000|||83.68|90.16|0.00|2.03| +261|2023-10-06T20:22:01.8310000-07:00|Remove|40022664| +37|2023-10-06T20:22:02.1700000-07:00|40022550|Zeromus|0001A57B|36544372||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:02.1700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36547848|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.95|92.78|0.00|3.13|0001A584|0|1| +31|2023-10-06T20:22:02.1700000-07:00|10FF0001||||| +37|2023-10-06T20:22:02.2140000-07:00|10FF0008|Kokosaze Lulusaze|0001A575|79111|79111|9200|10000|25||100.18|101.21|0.00|-3.13|1B07|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T20:22:02.2140000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +37|2023-10-06T20:22:02.2140000-07:00|40022550|Zeromus|0001A57C|36544341||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:02.2140000-07:00|10FF0001|Sesuga Sapisuga|1CD9|Passage of Arms|10FF0001|Sesuga Sapisuga|4400640F|4978000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.95|92.78|0.00|3.13|127791|127791|10000|10000|||99.95|92.78|0.00|3.13|0001A585|0|1| +38|2023-10-06T20:22:02.2140000-07:00|40022666|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.35|94.65|0.00|3.10|0|0|0|||| +30|2023-10-06T20:22:02.2140000-07:00|7AC|Summon Order II|0.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T20:22:02.2570000-07:00|40022550|Zeromus|0001A57E|36520762||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:02.2570000-07:00|10FF0005|Wuwuchu Wuchu|0001A57E|90055|90055|10000|10000|22||98.92|96.27|0.00|3.07|2700|0|0|01|02000A1C|0|42700000|| +38|2023-10-06T20:22:02.2570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|22||98.92|96.27|0.00|3.07|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:22:02.3460000-07:00|40022550|Zeromus|0001A57D|36494054||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:02.0580000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:22:02.3910000-07:00|40022550|Zeromus|0001A580|36490880||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:02.3910000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36494054|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9200|10000|||100.18|101.21|0.00|-3.13|0001A586|0|1| +22|2023-10-06T20:22:02.4360000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|0001A587|0|8| +22|2023-10-06T20:22:02.4360000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9350|10000|||99.60|95.84|0.00|3.12|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|0001A587|1|8| +22|2023-10-06T20:22:02.4360000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.01|96.28|0.00|3.07|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|0001A587|2|8| +22|2023-10-06T20:22:02.4360000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.95|92.78|0.00|3.13|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|0001A587|3|8| +22|2023-10-06T20:22:02.4360000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||98.62|90.56|0.00|3.01|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|0001A587|4|8| +22|2023-10-06T20:22:02.4360000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.96|99.29|0.00|3.14|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|0001A587|5|8| +22|2023-10-06T20:22:02.4360000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|8700|10000|||99.87|99.93|0.00|3.14|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|0001A587|6|8| +22|2023-10-06T20:22:02.4360000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9200|10000|||100.18|101.21|0.00|-3.13|80739|80739|9600|10000|||97.12|93.43|0.00|1.72|0001A587|7|8| +37|2023-10-06T20:22:02.4800000-07:00|40022550|Zeromus|0001A579|36481060||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:02.4800000-07:00|10FF0002|Suchichi Suchi|0001A579|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|1600|0|0|01|060004DB|0|C1700000|| +20|2023-10-06T20:22:02.4800000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|100.18|101.21|0.00|-3.13| +24|2023-10-06T20:22:02.5240000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1557|127791|127791|10000|10000|||99.95|92.78|0.00|3.13|10FF0006|Wowobora Gogobora|0|80739|80739|9600|10000|||97.38|93.71|0.00|0.74| +37|2023-10-06T20:22:02.5250000-07:00|40022550|Zeromus|0001A57F|36467623||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:02.5250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||99.95|92.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:22:02.5250000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:22:02.5690000-07:00|40022550|Zeromus|0001A582|36440554||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:02.5690000-07:00|10FF0002|Suchichi Suchi|0001A582|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|1600|0|0|01|060004DB|0|41700000|| +21|2023-10-06T20:22:02.5700000-07:00|10FF0005|Wuwuchu Wuchu|5F54|Arcane Crest|10FF0005|Wuwuchu Wuchu|F2D0F|A258000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.11|96.30|0.00|3.07|90055|90055|10000|10000|||99.11|96.30|0.00|3.07|0001A588|0|1| +38|2023-10-06T20:22:02.5700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:22:02.5700000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|32||99.11|96.30|0.00|3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:22:02.5700000-07:00|A25|Crest of Time Borrowed|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:22:02.2900000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:22:02.6130000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36440554|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9600|10000|||97.93|94.32|0.00|0.74|0001A589|0|1| +37|2023-10-06T20:22:02.7020000-07:00|10FF0007|Kehabiqo Febiqo|0001A581|154276|154276|10000|10000|9||98.62|90.56|0.00|3.01|1500|0|0|01|07000057|0|41200000|| +26|2023-10-06T20:22:02.7020000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:22:02.7020000-07:00|40022550|Zeromus|0001A584|36438868||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:02.7020000-07:00|10FF0005|Wuwuchu Wuchu|0001A588|90055|90055|10000|10000|32||99.10|96.30|0.00|3.06|2700|0|0|01|05000A25|0|40A00000|| +38|2023-10-06T20:22:02.7020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|9||98.62|90.56|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:02.7020000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|32||99.10|96.30|0.00|3.06|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:22:02.4720000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:22:02.7500000-07:00|40022550|Zeromus|0001A57A|36428306||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:02.8360000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:22:02.8360000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|90128|127791| +38|2023-10-06T20:22:02.8360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8700|10000|27||99.87|99.93|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:22:02.8360000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73085|127791| +38|2023-10-06T20:22:02.8360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9350|10000|35||99.60|95.84|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:02.8360000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|80739|127791| +38|2023-10-06T20:22:02.8360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|32||99.14|96.30|0.00|3.06|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:02.8360000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|90055|127791| +38|2023-10-06T20:22:02.8360000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9600|10000|25||98.91|95.42|-0.02|0.73|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:22:02.8360000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:22:02.8360000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|80739|127791| +38|2023-10-06T20:22:02.8360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|25||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:02.8360000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|79111|127791| +38|2023-10-06T20:22:02.8360000-07:00|40022666|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.35|94.65|0.00|3.10|0|0|0||||||| +26|2023-10-06T20:22:02.8360000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|40022666|Ruby Carbuncle|00|77430|127791| +38|2023-10-06T20:22:02.8360000-07:00|4002266C|Carbuncle|005A5A00|72376|75851|10000|10000|0||100.74|100.35|0.00|-2.47|0|0|0||||||| +26|2023-10-06T20:22:02.8360000-07:00|30|Well Fed|2336.24|10FF0008|Kokosaze Lulusaze|4002266C|Carbuncle|2964|75851|79111| +26|2023-10-06T20:22:02.8360000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|4002266C|Carbuncle|00|75851|127791| +37|2023-10-06T20:22:02.8360000-07:00|10FF0001|Sesuga Sapisuga|0001A585|127791|127791|10000|10000|5||99.95|92.78|0.00|3.13|1300|0|0|01|08000497|1444|41900000|| +26|2023-10-06T20:22:02.8360000-07:00|497|Passage of Arms|18.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|127791|127791| +21|2023-10-06T20:22:02.8360000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|17150000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|36428306|40478540|10000|10000|||100.00|80.10|0.00|0.00|154276|154276|10000|10000|||98.62|90.56|0.00|3.01|0001A58A|0|1| +38|2023-10-06T20:22:02.8810000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.96|99.29|0.00|3.14|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:22:02.8810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8700|10000|27||99.87|99.93|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:22:02.8810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9350|10000|35||99.60|95.84|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:02.8810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|32||99.14|96.30|0.00|3.06|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:02.8810000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9600|10000|25||98.91|95.42|-0.02|0.73|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:22:02.8810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|25||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:02.8810000-07:00|40022666|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.35|94.65|0.00|3.10|0|0|0||||||| +38|2023-10-06T20:22:02.8810000-07:00|4002266C|Carbuncle|005A5A00|72376|75851|10000|10000|0||100.74|100.35|0.00|-2.47|0|0|0||||||| +38|2023-10-06T20:22:02.8810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9900|10000|35||99.60|95.84|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:02.9250000-07:00|40022550|Zeromus|0001A586|36428129||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:02.9250000-07:00|40022550|Zeromus|0001A583|36415137||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:02.9250000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|138D0F|A748000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.95|92.78|0.00|3.13|127791|127791|10000|10000|||99.95|92.78|0.00|3.13|0001A58B|0|1| +26|2023-10-06T20:22:02.9250000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +22|2023-10-06T20:22:02.9250000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F200F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9900|10000|||99.60|95.84|0.00|3.12|80739|80739|9900|10000|||99.60|95.84|0.00|3.12|0001A58C|0|1| +38|2023-10-06T20:22:02.9250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||99.95|92.78|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:02.9250000-07:00|497|Passage of Arms|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|127791|127791| +26|2023-10-06T20:22:02.9250000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:22:02.9250000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:22:02.9250000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:22:02.9250000-07:00|10FF0001||||| +21|2023-10-06T20:22:02.9700000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|726003|34910000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|36428306|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.96|99.28|0.00|3.14|0001A58D|0|1| +38|2023-10-06T20:22:02.9700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.96|99.28|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:22:02.9700000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:03.0140000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|10000|10000|25||99.54|96.66|0.00|0.60|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:22:03.1480000-07:00|40022550|Zeromus|0001A589|36415100||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:03.2380000-07:00|10FF0006|Wowobora Gogobora|0001A587|80739|80739|10000|10000|25||99.72|97.11|0.00|0.51|2800|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:22:03.2380000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:22:03.2380000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:22:03.2820000-07:00|40022550|Zeromus|8B38|Sable Thread|40022550|Zeromus|49|48000|1B|8B388000|0|0|0|0|0|0|0|0|0|0|0|0|36415100|40478540|10000|10000|||100.00|80.10|0.00|0.00|36415100|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A58E|0|1| +261|2023-10-06T20:22:03.0020000-07:00|Change|40022550||||||||||||| +00|2023-10-06T20:22:03.0000000-07:00|0044|Zeromus|Your flesh shall melt and seethe!| +20|2023-10-06T20:22:03.3270000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.66|97.34|0.00|0.34| +37|2023-10-06T20:22:03.3710000-07:00|40022550|Zeromus|0001A58A|36409191||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:03.3710000-07:00|10FF0004|Buhojaqe Zijaqe|0001A587|80739|80739|9900|10000|35||99.60|95.85|0.00|-2.30|1C01|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:22:03.3710000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:22:03.3710000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:22:03.1190000-07:00|Change|10FF0006||||||||||||||||||||||| +20|2023-10-06T20:22:03.4170000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|99.77|99.93|0.00|3.10| +261|2023-10-06T20:22:03.1190000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T20:22:03.5050000-07:00|10FF0005|Wuwuchu Wuchu|0001A587|90055|90055|10000|10000|32||100.25|96.26|0.00|3.06|2702|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:22:03.5050000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:22:03.5050000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:22:03.5510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|FED|154276|154276|10000|10000|||98.63|90.56|0.00|3.03|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78| +24|2023-10-06T20:22:03.5510000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D16|127791|127791|10000|10000|||99.95|92.78|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78| +24|2023-10-06T20:22:03.5510000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D2D|90055|90055|10000|10000|||100.21|96.10|0.00|3.06|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78| +24|2023-10-06T20:22:03.5510000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|15A9|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78| +24|2023-10-06T20:22:03.5510000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D41|80739|80739|10000|10000|||99.57|97.74|0.00|1.85|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78| +24|2023-10-06T20:22:03.5510000-07:00|10FF0002|Suchichi Suchi|HoT|798|D4E|90128|90128|10000|10000|||99.47|98.66|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78| +24|2023-10-06T20:22:03.5510000-07:00|10FF0003|Gegehi Gehi|HoT|798|14F3|73085|73085|8700|10000|||99.74|99.93|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78| +24|2023-10-06T20:22:03.5510000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CF8|79111|79111|9200|10000|||100.18|101.21|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9900|10000|||99.60|95.87|0.00|-0.78| +37|2023-10-06T20:22:03.5510000-07:00|10FF0004|Buhojaqe Zijaqe|0001A58C|80739|80739|9900|10000|35||99.60|95.87|0.00|-0.78|1C00|0|0|02|0C000798|0|41700000|||||| +26|2023-10-06T20:22:03.5510000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:22:03.5510000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:22:03.5510000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|126D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36409191|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.47|98.66|0.00|3.10|0001A58F|0|1| +38|2023-10-06T20:22:03.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|9||98.63|90.56|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:03.5510000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:22:03.5510000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.47|98.66|0.00|3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:22:03.5510000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:03.5510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|25||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:03.5510000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:03.5510000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|10000|10000|25||99.57|97.74|0.00|1.85|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:03.5510000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:03.5510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||99.95|92.78|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:03.5510000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:03.5510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9900|10000|35||99.60|95.87|0.00|-0.78|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:03.5510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8700|10000|27||99.74|99.93|0.00|3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:22:03.5510000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:22:03.5510000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|32||100.21|96.10|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:03.5510000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:22:03.3280000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:22:03.6400000-07:00|10FF0001|Sesuga Sapisuga|0001A587|127791|127791|10000|10000|5||99.95|92.78|0.00|3.13|1303|0|0|02|0C000A3A|0|41700000|||||| +26|2023-10-06T20:22:03.6400000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:03.6400000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +20|2023-10-06T20:22:03.6860000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.60|95.87|0.00|-0.60| +261|2023-10-06T20:22:03.4260000-07:00|Add|4002268C||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:03.7750000-07:00|40022550|Zeromus|0001A58D|36395734||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:03.7750000-07:00|10FF0007|Kehabiqo Febiqo|0001A587|154276|154276|10000|10000|9||98.72|90.56|0.00|3.09|1504|0|0|02|09000A3A|0|41700000|||||| +26|2023-10-06T20:22:03.7750000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +26|2023-10-06T20:22:03.7750000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +37|2023-10-06T20:22:03.9080000-07:00|10FF0002|Suchichi Suchi|0001A587|90128|90128|10000|10000|22||99.77|98.57|0.00|3.10|1605|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:22:03.9080000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:22:03.9080000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +22|2023-10-06T20:22:03.9540000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750603|66940000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||98.82|90.55|0.00|3.11|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A590|0|8| +22|2023-10-06T20:22:03.9540000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750205|467F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.95|92.78|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A590|1|8| +22|2023-10-06T20:22:03.9540000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.16|95.92|0.00|3.06|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A590|2|8| +22|2023-10-06T20:22:03.9540000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9900|10000|||99.69|96.40|0.00|-1.53|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A590|3|8| +22|2023-10-06T20:22:03.9540000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|10000|10000|||99.53|97.92|0.00|3.12|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A590|4|8| +22|2023-10-06T20:22:03.9540000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.77|98.57|0.00|3.10|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A590|5|8| +22|2023-10-06T20:22:03.9540000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|8700|10000|||99.72|99.93|-0.01|3.13|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A590|6|8| +22|2023-10-06T20:22:03.9540000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9200|10000|||100.18|101.21|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.00|0001A590|7|8| +21|2023-10-06T20:22:03.9540000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F724003|55710000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|36395734|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.77|98.57|0.00|3.10|0001A591|0|1| +21|2023-10-06T20:22:03.9540000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|3FF10000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36395734|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.95|92.78|0.00|3.14|0001A592|0|1| +38|2023-10-06T20:22:03.9540000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.77|98.57|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:03.9540000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:03.9540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:03.9540000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:22:04.0420000-07:00|10FF0003|Gegehi Gehi|0001A587|73085|73085|8700|10000|27||99.72|99.93|0.00|3.13|2306|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:22:04.0420000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:22:04.0420000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:22:04.0870000-07:00|40022550|Zeromus|0001A58F|36391017||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:04.0870000-07:00|10FF0002|Suchichi Suchi|0001A58F|90128|90128|10000|10000|22||99.90|98.94|0.00|-3.14|1600|0|0|01|0A000322|0|C1F00000|| +39|2023-10-06T20:22:04.1310000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.90|98.94|0.00|-3.14| +37|2023-10-06T20:22:04.1760000-07:00|10FF0008|Kokosaze Lulusaze|0001A587|79111|79111|9200|10000|25||100.18|101.21|0.00|-3.13|1B07|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:22:04.1760000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:22:04.1760000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +39|2023-10-06T20:22:04.1760000-07:00|10FF0003|Gegehi Gehi|73085|73085|8900|10000|||99.72|99.93|0.00|3.13| +24|2023-10-06T20:22:04.1760000-07:00|40022550|Zeromus|DoT|0|25FB|36391017|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|10000|10000|||99.95|92.78|0.00|3.14| +38|2023-10-06T20:22:04.1760000-07:00|40022550|Zeromus|005A5A00|36381294|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:22:04.2200000-07:00|4002266C|Carbuncle|75851|75851|10000|10000|||100.74|100.35|0.00|-2.47| +39|2023-10-06T20:22:04.2200000-07:00|40022666|Ruby Carbuncle|73956|77430|10000|10000|||99.35|94.65|0.00|3.10| +21|2023-10-06T20:22:04.2200000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|712003|43340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36391017|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.09|96.66|0.00|3.07|0001A593|0|1| +38|2023-10-06T20:22:04.2200000-07:00|40022550|Zeromus|005A5A00|36381294|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T20:22:04.2200000-07:00|A1A|Death's Design|48.79|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +261|2023-10-06T20:22:03.9230000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:22:03.9230000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:22:04.2660000-07:00|10FF0007|Kehabiqo Febiqo|0001A590|128016|154276|10000|10000|4||99.08|90.53|0.00|-3.12|1500|0|0|03|04000A53|04|413E106A|||||||||| +26|2023-10-06T20:22:04.2660000-07:00|A53|Panhaimatinon|11.88|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|04|154276|80739| +26|2023-10-06T20:22:04.2660000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +21|2023-10-06T20:22:04.2660000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750205|1D0C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|109744|127791|10000|10000|||99.95|92.78|0.00|3.14|36381294|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A594|0|1| +21|2023-10-06T20:22:04.2660000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|379D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|36381294|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9600|10000|||99.53|97.92|0.00|3.12|0001A595|0|1| +38|2023-10-06T20:22:04.2660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128016|154276|10000|10000|4||99.08|90.53|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:04.2660000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +37|2023-10-06T20:22:04.3100000-07:00|10FF0001|Sesuga Sapisuga|0001A590|109744|127791|10000|10000|0||99.95|92.78|0.00|3.14|1301|0|0|03|03000A35|0|41700000|||||||||| +26|2023-10-06T20:22:04.3100000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:04.3100000-07:00|A53|Panhaimatinon|12.10|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|04|127791|80739| +36|2023-10-06T20:22:04.3100000-07:00|1068|3| +38|2023-10-06T20:22:04.3100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109744|127791|10000|10000|0||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:04.3100000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:22:04.3550000-07:00|10FF0005|Wuwuchu Wuchu|0001A590|90055|90055|10000|10000|19||100.05|96.96|-0.02|-3.14|2702|0|0|03|05000A26|0|41700000|||||||||| +30|2023-10-06T20:22:04.3550000-07:00|A25|Crest of Time Borrowed|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:22:04.3550000-07:00|A26|Crest of Time Returned|15.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:22:04.3550000-07:00|A53|Panhaimatinon|11.92|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|04|90055|80739| +26|2023-10-06T20:22:04.3550000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:22:04.3550000-07:00|10FF0001|Sesuga Sapisuga|111021|127791|10000|10000|||99.95|92.78|0.00|3.14| +39|2023-10-06T20:22:04.3550000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|10000|10000|||99.81|97.06|0.00|3.13| +38|2023-10-06T20:22:04.3560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128016|154276|10000|10000|4||99.08|90.53|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|154276|90055| +38|2023-10-06T20:22:04.3560000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.98|99.47|-0.02|-2.60|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +38|2023-10-06T20:22:04.3560000-07:00|4002266C|Carbuncle|005A5A00|75851|75851|10000|10000|0||100.74|100.35|0.00|-2.47|0|0|0|||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|4002266C|Carbuncle|00|75851|90055| +38|2023-10-06T20:22:04.3560000-07:00|40022666|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.35|94.65|0.00|3.10|0|0|0|||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|77430|90055| +38|2023-10-06T20:22:04.3560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|25||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:22:04.3560000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9600|10000|25||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +38|2023-10-06T20:22:04.3560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111021|127791|10000|10000|0||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +38|2023-10-06T20:22:04.3560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|35||99.81|97.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +38|2023-10-06T20:22:04.3560000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8900|10000|27||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:04.3560000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +38|2023-10-06T20:22:04.3560000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|19||100.05|96.96|-0.02|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:04.0440000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:22:04.3990000-07:00|10FF0004|Buhojaqe Zijaqe|0001A590|80739|80739|10000|10000|22||99.81|97.06|0.00|3.13|1C03|0|0|02|04000A53|04|4139C298|||||| +26|2023-10-06T20:22:04.3990000-07:00|A53|Panhaimatinon|11.61|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|04|80739|80739| +26|2023-10-06T20:22:04.3990000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:04.3990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|22||99.81|97.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:04.4430000-07:00|10FF0006|Wowobora Gogobora|0001A590|80739|80739|9600|10000|12||99.53|97.92|0.00|3.12|2804|0|0|02|01000A53|04|4136ED9B|||||| +26|2023-10-06T20:22:04.4430000-07:00|A53|Panhaimatinon|11.43|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|04|80739|80739| +26|2023-10-06T20:22:04.4430000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +39|2023-10-06T20:22:04.4430000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.05|97.02|0.00|-3.14| +21|2023-10-06T20:22:04.4430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36381294|40478540|10000|10000|||100.00|80.10|0.00|0.00|111021|127791|10000|10000|||99.95|92.78|0.00|3.14|0001A596|0|1| +38|2023-10-06T20:22:04.4430000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9600|10000|12||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:22:04.4430000-07:00|10FF0001||||| +37|2023-10-06T20:22:04.4870000-07:00|10FF0002|Suchichi Suchi|0001A590|90128|90128|10000|10000|8||100.02|99.64|0.00|-2.03|1605|0|0|03|02000A53|04|41431275|||||||||| +26|2023-10-06T20:22:04.4870000-07:00|A53|Panhaimatinon|12.19|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|04|90128|80739| +26|2023-10-06T20:22:04.4870000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +39|2023-10-06T20:22:04.4880000-07:00|10FF0006|Wowobora Gogobora|80739|80739|9805|10000|||99.53|97.92|0.00|3.12| +38|2023-10-06T20:22:04.4880000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||100.02|99.64|0.00|-2.03|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:04.5310000-07:00|10FF0003|Gegehi Gehi|0001A590|73085|73085|8900|10000|9||99.72|99.93|0.00|3.13|2306|0|0|02|02000A35|0|41700000|||||| +26|2023-10-06T20:22:04.5310000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:22:04.5310000-07:00|A53|Panhaimatinon|12.01|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|04|73085|80739| +38|2023-10-06T20:22:04.5310000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9805|10000|12||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:04.5310000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:04.5310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8900|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:04.5750000-07:00|10FF0008|Kokosaze Lulusaze|0001A590|79111|79111|9200|10000|10||100.18|101.21|0.00|-3.13|1B07|0|0|02|03000A53|04|4143C6AE|||||| +26|2023-10-06T20:22:04.5750000-07:00|A53|Panhaimatinon|12.24|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|04|79111|80739| +26|2023-10-06T20:22:04.5750000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:04.5750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|10||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:04.3740000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:22:04.6200000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30C90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36381294|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||99.81|97.06|0.00|3.13|0001A597|0|1| +37|2023-10-06T20:22:04.6650000-07:00|40022550|Zeromus|0001A591|36359421||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:04.6650000-07:00|10FF0002|Suchichi Suchi|0001A591|90128|90128|10000|10000|8||100.07|99.91|0.00|-1.13|1600|0|0|01|0A000322|0|41F00000|| +38|2023-10-06T20:22:04.6650000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||100.07|99.91|0.00|-1.13|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:04.7080000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|19A00000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|128016|154276|10000|10000|||99.08|90.53|0.00|-3.12|73956|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A598|0|1| +21|2023-10-06T20:22:04.7540000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|4F990000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|36359421|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9200|10000|||100.18|101.21|0.00|-3.13|0001A599|0|1| +261|2023-10-06T20:22:04.4690000-07:00|Change|10FF0008||||||||||||||| +21|2023-10-06T20:22:04.8420000-07:00|10FF0002|Suchichi Suchi|1D7D|Feint|40022550|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36359421|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.10|100.03|0.00|-0.73|0001A59A|0|1| +21|2023-10-06T20:22:04.8420000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|2F320000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|36359421|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8900|10000|||99.72|99.93|0.00|3.13|0001A59B|0|1| +38|2023-10-06T20:22:04.8420000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8700|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:04.8420000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:22:04.8420000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:22:04.8860000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36359421|40478540|10000|10000|||100.00|80.10|0.00|0.00|36359421|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A59C|0|1| +24|2023-10-06T20:22:04.9320000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1604|111021|127791|10000|10000|||99.95|92.78|0.00|3.14|10FF0006|Wowobora Gogobora|0|80739|80739|9805|10000|||99.53|97.92|0.00|3.12| +37|2023-10-06T20:22:04.9320000-07:00|40022550|Zeromus|0001A595|36345184||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:04.9320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116657|127791|10000|10000|0||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:04.9320000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:22:04.9760000-07:00|40022550|Zeromus|0001A596|36343422||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:05.0210000-07:00|10FF0007|Kehabiqo Febiqo|129558|154276|10000|10000|||99.08|90.53|0.00|-3.12| +39|2023-10-06T20:22:05.0210000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9100|10000|||100.18|101.21|0.00|-3.13| +21|2023-10-06T20:22:05.0210000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36345184|40478540|10000|10000|||100.00|80.10|0.00|0.00|128016|154276|10000|10000|||99.08|90.53|0.00|-3.12|0001A59D|0|1| +37|2023-10-06T20:22:05.0650000-07:00|10FF0001|Sesuga Sapisuga|0001A594|109221|127791|10000|10000|5||99.95|92.78|0.00|3.14|1300|0|0|0| +21|2023-10-06T20:22:05.0650000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36345184|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.02|97.54|0.00|3.08|0001A59E|0|1| +38|2023-10-06T20:22:05.1540000-07:00|40022666|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.35|94.65|0.00|-3.07|0|0|0||||||||||||| +26|2023-10-06T20:22:05.1540000-07:00|77B|Summon Order|30.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:22:05.1540000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9600|10000|||99.81|97.06|0.00|3.13|80739|80739|9600|10000|||99.81|97.06|0.00|3.13|0001A59F|0|1| +37|2023-10-06T20:22:05.2440000-07:00|40022550|Zeromus|0001A592|36327053||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:05.0140000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:22:05.0140000-07:00|Change|10FF0008||| +21|2023-10-06T20:22:05.2900000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|361B0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|36327053|40478540|10000|10000|||100.00|80.10|0.00|0.00|129558|154276|10000|10000|||99.08|90.53|0.00|-3.12|0001A5A0|0|1| +37|2023-10-06T20:22:05.3780000-07:00|40022550|Zeromus|0001A59A|36327053|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004AB|0|41200000|| +26|2023-10-06T20:22:05.3780000-07:00|4AB|Feint|10.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:22:05.3780000-07:00|40022550|Zeromus|0001A599|36306676||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:05.3780000-07:00|40022550|Zeromus|0001A593|36289472||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:05.1270000-07:00|Change|10FF0006||| +37|2023-10-06T20:22:05.4240000-07:00|40022550|Zeromus|0001A597|36276983||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:05.4240000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|36327053|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9100|10000|||100.18|101.21|0.00|-3.13|0001A5A1|0|1| +38|2023-10-06T20:22:05.4240000-07:00|4002266C|Carbuncle|005A5A00|0|75851|0|10000|0||100.74|100.35|0.00|-2.47|0|0|0|||| +30|2023-10-06T20:22:05.4240000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|4002266C|Carbuncle|00|75851|127791| +30|2023-10-06T20:22:05.4240000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|4002266C|Carbuncle|00|75851|90055| +38|2023-10-06T20:22:05.4240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9100|10000|10||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:05.4240000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:22:05.1270000-07:00|Change|4002266C||| +38|2023-10-06T20:22:05.4690000-07:00|4002268E||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:22:05.4690000-07:00|4002268E||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:22:05.5130000-07:00|10FF0007|Kehabiqo Febiqo|0001A598|136118||||||99.08|90.53|0.00|3.05| +261|2023-10-06T20:22:05.2400000-07:00|Change|4002256D||||||||| +37|2023-10-06T20:22:05.5580000-07:00|40022550|Zeromus|0001A59D|36274087||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:22:05.5580000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|78590000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129558|154276|10000|10000|||99.08|90.53|0.00|3.05|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A5A2|0|8| +22|2023-10-06T20:22:05.5580000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|57FE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|109221|127791|10000|10000|||99.95|92.78|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A5A2|1|8| +22|2023-10-06T20:22:05.5580000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9600|10000|||99.81|97.03|0.00|3.09|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A5A2|2|8| +22|2023-10-06T20:22:05.5580000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750603|6930000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.02|97.55|0.00|3.08|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A5A2|3|8| +22|2023-10-06T20:22:05.5580000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|1A020000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9805|10000|||99.53|97.92|0.00|3.12|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A5A2|4|8| +22|2023-10-06T20:22:05.5580000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750603|2ABF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.14|100.17|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A5A2|5|8| +22|2023-10-06T20:22:05.5580000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|28420000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|8700|10000|||99.72|99.93|0.00|3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A5A2|6|8| +22|2023-10-06T20:22:05.5580000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|23D40000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9100|10000|||100.18|101.21|0.00|-3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A5A2|7|8| +37|2023-10-06T20:22:05.6020000-07:00|40022550|Zeromus|0001A59E|36270881||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:05.6020000-07:00|40022666|Ruby Carbuncle|HoT|0|4CB|73956|77430|10000|10000|||99.35|94.65|0.00|-3.07|40022666|Ruby Carbuncle|0|73956|77430|10000|10000|||99.35|94.65|0.00|-3.07| +38|2023-10-06T20:22:05.6020000-07:00|40022666|Ruby Carbuncle|005A5A00|75183|77430|10000|10000|0||99.35|94.65|0.00|-3.07|0|0|0||||||||||||| +261|2023-10-06T20:22:05.3310000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:22:05.6460000-07:00|40022550|Zeromus|0001A59B|36258799||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:05.6460000-07:00|10FF0002|Suchichi Suchi|HoT|0|11E2|90128|90128|10000|10000|||100.14|100.10|0.00|-3.14|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.02|97.55|0.00|3.08| +38|2023-10-06T20:22:05.6460000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||100.14|100.10|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:05.6910000-07:00|10FF0003|Gegehi Gehi|HoT|0|10D6|73085|73085|8700|10000|||99.72|99.93|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.02|97.55|0.00|3.08| +38|2023-10-06T20:22:05.6910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8700|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +03|2023-10-06T20:22:05.4220000-07:00|4002268E|Emerald Garuda|00|5A|10FF0008|00||10263|13506|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13| +261|2023-10-06T20:22:05.4220000-07:00|Add|4002268E||||||||||||||||||||||||||||||||||||| +22|2023-10-06T20:22:05.7800000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|109221|127791|10000|10000|||99.95|92.78|0.00|3.14|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07|0001A5A3|0|8| +22|2023-10-06T20:22:05.7800000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9600|10000|||99.81|96.99|0.00|3.01|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07|0001A5A3|1|8| +22|2023-10-06T20:22:05.7800000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0005|Wuwuchu Wuchu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.02|97.55|0.00|3.08|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07|0001A5A3|2|8| +22|2023-10-06T20:22:05.7800000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9805|10000|||99.53|97.92|0.00|3.12|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07|0001A5A3|3|8| +22|2023-10-06T20:22:05.7800000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F8A0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|136118|154276|10000|10000|||99.08|90.53|0.00|3.05|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07|0001A5A3|4|8| +22|2023-10-06T20:22:05.7800000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|8700|10000|||99.72|99.93|0.00|3.13|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07|0001A5A3|5|8| +22|2023-10-06T20:22:05.7800000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0002|Suchichi Suchi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.14|100.02|0.00|-3.14|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07|0001A5A3|6|8| +22|2023-10-06T20:22:05.7800000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9100|10000|||100.18|101.21|0.00|-3.13|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07|0001A5A3|7|8| +20|2023-10-06T20:22:05.7800000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.53|97.92|0.00|3.12| +261|2023-10-06T20:22:05.5160000-07:00|Change|4002268E||||| +37|2023-10-06T20:22:05.8690000-07:00|10FF0007|Kehabiqo Febiqo|0001A5A2|105309|154276|10000|10000|4||99.08|90.53|0.00|3.05|1500|0|0|02|04000A53|03|41246674|||||| +26|2023-10-06T20:22:05.8690000-07:00|A53|Panhaimatinon|10.28|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|03|154276|80739| +24|2023-10-06T20:22:05.8690000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|38C9|109221|127791|10000|10000|||99.95|92.78|0.00|3.14|10FF0006|Wowobora Gogobora|0|80739|80739|9805|10000|||99.53|97.92|0.00|3.12| +24|2023-10-06T20:22:05.8690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|18C2|136118|154276|10000|10000|||99.08|90.53|0.00|3.05|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||99.81|96.97|0.00|2.98| +24|2023-10-06T20:22:05.8690000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CD6|109221|127791|10000|10000|||99.95|92.78|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||99.81|96.97|0.00|2.98| +24|2023-10-06T20:22:05.8690000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|14C3|80739|80739|9600|10000|||99.81|96.97|0.00|2.98|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||99.81|96.97|0.00|2.98| +24|2023-10-06T20:22:05.8690000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|14CE|90055|90055|10000|10000|||100.02|97.55|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||99.81|96.97|0.00|2.98| +24|2023-10-06T20:22:05.8690000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CF0|80739|80739|9805|10000|||99.53|97.92|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||99.81|96.97|0.00|2.98| +24|2023-10-06T20:22:05.8690000-07:00|10FF0002|Suchichi Suchi|HoT|798|D1C|90128|90128|10000|10000|||100.14|99.96|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||99.81|96.97|0.00|2.98| +24|2023-10-06T20:22:05.8690000-07:00|10FF0003|Gegehi Gehi|HoT|798|CE7|73085|73085|8700|10000|||99.72|99.93|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||99.81|96.97|0.00|2.98| +24|2023-10-06T20:22:05.8690000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D1A|79111|79111|9100|10000|||100.18|101.21|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||99.81|96.97|0.00|2.98| +24|2023-10-06T20:22:05.8690000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|110C|80739|80739|9600|10000|||99.81|96.97|0.00|2.98|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.02|97.55|0.00|3.08| +21|2023-10-06T20:22:05.8690000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|552003|56510000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|36258799|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8700|10000|||99.72|99.93|0.00|3.13|0001A5A4|0|1| +38|2023-10-06T20:22:05.8700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111647|154276|10000|10000|4||99.08|90.53|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:05.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:22:05.8700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||100.14|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:05.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:05.8700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9100|10000|10||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:05.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:05.8700000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9805|10000|12||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:05.8700000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:22:05.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:05.8700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127044|127791|10000|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:05.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:05.8700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|22||99.81|96.97|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:05.8700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:05.8700000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8400|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:05.8700000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:22:05.8700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:22:05.8700000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|19||100.02|97.55|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:05.8700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:22:05.9140000-07:00|40022550|Zeromus|0001A5A0|36244948||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:05.9140000-07:00|10FF0001|Sesuga Sapisuga|0001A5A2|104518|127791|10000|10000|5||99.95|92.78|0.00|3.14|1301|0|0|02|03000A35|0|41700000|||||| +26|2023-10-06T20:22:05.9140000-07:00|A53|Panhaimatinon|10.50|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|03|127791|80739| +38|2023-10-06T20:22:05.9140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104518|127791|10000|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:05.9580000-07:00|10FF0004|Buhojaqe Zijaqe|0001A5A2|80739|80739|10000|10000|10||99.81|96.95|0.00|2.95|1C02|0|0|02|04000A53|03|4120D0F3|||||| +26|2023-10-06T20:22:05.9580000-07:00|A53|Panhaimatinon|10.05|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +24|2023-10-06T20:22:05.9580000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1122|90055|90055|10000|10000|||100.02|97.55|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|80739|80739|10000|10000|||99.81|96.95|0.00|2.95| +38|2023-10-06T20:22:05.9580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|10||99.81|96.95|0.00|2.95|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:05.9580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|19||100.02|97.55|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:06.0020000-07:00|10FF0005|Wuwuchu Wuchu|0001A5A2|88372|90055|10000|10000|0||100.02|97.55|0.00|3.08|2703|0|0|03|04000A35|0|41700000|||||||||| +30|2023-10-06T20:22:06.0020000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:22:06.0020000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:22:06.0020000-07:00|A53|Panhaimatinon|10.28|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|03|90055|80739| +24|2023-10-06T20:22:06.0020000-07:00|10FF0006|Wowobora Gogobora|HoT|0|119B|80739|80739|9805|10000|||99.53|97.92|0.00|3.12|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.02|97.55|0.00|3.08| +21|2023-10-06T20:22:06.0020000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|734003|B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36244948|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||99.81|96.94|0.00|2.94|0001A5A5|0|1| +38|2023-10-06T20:22:06.0020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9805|10000|12||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:06.0020000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88372|90055|10000|10000|0||100.02|97.55|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:06.0020000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:22:06.0480000-07:00|10FF0006|Wowobora Gogobora|0001A5A2|74081|80739|9805|10000|8||99.53|97.92|0.00|3.12|2804|0|0|03|01000A53|03|411D47BD|||||||||| +26|2023-10-06T20:22:06.0480000-07:00|A53|Panhaimatinon|9.83|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|03|80739|80739| +20|2023-10-06T20:22:06.0480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.81|96.94|0.00|2.94| +38|2023-10-06T20:22:06.0480000-07:00|10FF0006|Wowobora Gogobora|005A5A28|74081|80739|9805|10000|8||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:06.0480000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:22:06.0920000-07:00|10FF0002|Suchichi Suchi|0001A5A2|79185|90128|10000|10000|0||100.14|99.90|0.00|3.14|1605|0|0|03|0A35|0|41700000|||||||||| +30|2023-10-06T20:22:06.0920000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:22:06.0920000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:22:06.0920000-07:00|A53|Panhaimatinon|10.59|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|03|90128|80739| +21|2023-10-06T20:22:06.0920000-07:00|10FF0008|Kokosaze Lulusaze|1D88|Addle|40022550|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36244948|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9100|10000|||100.18|101.21|0.00|-3.13|0001A5A6|0|1| +38|2023-10-06T20:22:06.0930000-07:00|10FF0002|Suchichi Suchi|005A5A16|79185|90128|10000|10000|0||100.14|99.90|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:06.0930000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:22:06.1360000-07:00|10FF0003|Gegehi Gehi|0001A5A2|62779|73085|8400|10000|0||99.72|99.93|0.00|3.13|2306|0|0|03|01000A35|0|41700000|||||||||| +30|2023-10-06T20:22:06.1360000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:22:06.1360000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:22:06.1360000-07:00|A53|Panhaimatinon|10.41|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|03|73085|80739| +38|2023-10-06T20:22:06.1360000-07:00|10FF0003|Gegehi Gehi|005A5A23|62779|73085|8400|10000|0||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:06.1360000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:22:06.1810000-07:00|10FF0008|Kokosaze Lulusaze|0001A5A2|69939|79111|9100|10000|0||100.18|101.21|0.00|-3.13|1B07|0|0|03|02000A35|0|41700000|||||||||| +30|2023-10-06T20:22:06.1810000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:22:06.1810000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:22:06.1810000-07:00|A53|Panhaimatinon|10.63|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|03|79111|80739| +38|2023-10-06T20:22:06.1810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69939|79111|9100|10000|0||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:06.1810000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:22:06.2710000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36244948|40478540|10000|10000|||100.00|80.10|0.00|0.00|36244948|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A5A7|0|1| +21|2023-10-06T20:22:06.2710000-07:00|10FF0007|Kehabiqo Febiqo|1D6B|Rampart|10FF0007|Kehabiqo Febiqo|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|111647|154276|10000|10000|||99.08|90.53|0.00|3.05|111647|154276|10000|10000|||99.08|90.53|0.00|3.05|0001A5A8|0|1| +261|2023-10-06T20:22:05.9510000-07:00|Change|10FF0003||| +21|2023-10-06T20:22:06.3590000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36244948|40478540|10000|10000|||100.00|80.10|0.00|0.00|79185|90128|10000|10000|||100.14|99.90|0.00|3.14|0001A5A9|0|1| +37|2023-10-06T20:22:06.4490000-07:00|10FF0008|Kokosaze Lulusaze|0001A5A1|69939|79111|9100|10000|0||100.18|101.21|0.00|-3.13|1B00|0|0|01|0C000AA5|0|0|| +21|2023-10-06T20:22:06.4490000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|2A580000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|36244948|40478540|10000|10000|||100.00|80.10|0.00|0.00|79185|90128|10000|10000|||100.14|99.90|0.00|3.14|0001A5AA|0|1| +21|2023-10-06T20:22:06.4490000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|2D9B0000|4|28EA8000|0|0|0|0|0|0|0|0|0|0|0|0|36244948|40478540|10000|10000|||100.00|80.10|0.00|0.00|104518|127791|10000|10000|||99.95|92.78|0.00|3.14|0001A5AB|0|1| +38|2023-10-06T20:22:06.4490000-07:00|10FF0002|Suchichi Suchi|005A5A16|79185|90128|10000|10000|0||100.14|99.90|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:06.4490000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:22:06.4490000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:06.4490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69939|79111|9100|10000|0||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:06.4490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104518|127791|9000|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:06.4490000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:22:06.1820000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:06.1820000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T20:22:06.1820000-07:00|Change|4002268E||| +37|2023-10-06T20:22:06.5380000-07:00|40022550|Zeromus|0001A5A5|36244763||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:06.5380000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1338|111647|154276|10000|10000|||99.08|90.53|0.00|3.05|10FF0005|Wuwuchu Wuchu|0|88372|90055|10000|10000|||100.02|97.55|0.00|3.08| +24|2023-10-06T20:22:06.5380000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|18FE|69939|79111|9100|10000|||100.18|101.21|0.00|-3.13|10FF0008|Kokosaze Lulusaze|0|69939|79111|9100|10000|||100.18|101.21|0.00|-3.13| +38|2023-10-06T20:22:06.5380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116567|154276|10000|10000|4||99.08|90.53|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:06.5380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|76337|79111|9100|10000|0||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:06.6270000-07:00|40022550|Zeromus|0001A5A4|36222666||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:06.6270000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36244763|40478540|10000|10000|||100.00|80.10|0.00|0.00|62779|73085|8400|10000|||99.72|99.93|0.00|3.13|0001A5AC|0|1| +37|2023-10-06T20:22:06.6700000-07:00|10FF0001|Sesuga Sapisuga|0001A5A3|104518|127791|9000|10000|5||99.95|92.78|0.00|3.14|1300|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T20:22:06.6700000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +261|2023-10-06T20:22:06.3970000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T20:22:06.6710000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2C4D0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|36222666|40478540|10000|10000|||100.00|80.10|0.00|0.00|88372|90055|10000|10000|||100.02|97.55|0.00|3.09|0001A5AD|0|1| +37|2023-10-06T20:22:06.7150000-07:00|40022550|Zeromus|0001A5A6|36222666|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|060004B3|0|41200000|| +26|2023-10-06T20:22:06.7150000-07:00|4B3|Addle|10.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|79111| +21|2023-10-06T20:22:06.7150000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|355A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|36222666|40478540|10000|10000|||100.00|80.10|0.00|0.00|74081|80739|9805|10000|||99.53|97.92|0.00|3.12|0001A5AE|0|1| +21|2023-10-06T20:22:06.7150000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36222666|40478540|10000|10000|||100.00|80.10|0.00|0.00|104518|127791|9000|10000|||99.95|92.78|0.00|3.14|0001A5AF|0|1| +31|2023-10-06T20:22:06.7150000-07:00|10FF0001||||| +37|2023-10-06T20:22:06.8040000-07:00|10FF0004|Buhojaqe Zijaqe|0001A5A3|80739|80739|10000|10000|10||99.81|96.94|0.00|3.13|1C01|0|0|01|0F00013B|0|41A80000|| +26|2023-10-06T20:22:06.8040000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +37|2023-10-06T20:22:06.8940000-07:00|40022550|Zeromus|0001A5A9|36219749||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:06.8940000-07:00|10FF0002|Suchichi Suchi|0001A5A9|79185|90128|10000|10000|0||100.14|99.90|0.00|-3.13|1600|0|0|01|03000323|0|C1F00000|| +21|2023-10-06T20:22:06.8940000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|34A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36222666|40478540|10000|10000|||100.00|80.10|0.00|0.00|62779|73085|8400|10000|||99.72|99.93|0.00|3.13|0001A5B0|0|1| +37|2023-10-06T20:22:06.9380000-07:00|10FF0007|Kehabiqo Febiqo|0001A5A8|116567|154276|10000|10000|4||99.08|90.53|0.00|3.05|1500|0|0|01|0C0004A7|0|41A00000|| +26|2023-10-06T20:22:06.9380000-07:00|4A7|Rampart|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|154276|154276| +37|2023-10-06T20:22:06.9380000-07:00|10FF0005|Wuwuchu Wuchu|0001A5A3|88372|90055|10000|10000|0||100.02|97.55|0.00|-3.14|2702|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T20:22:06.9380000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +22|2023-10-06T20:22:06.9390000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|53BC0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|116567|154276|10000|10000|||99.08|90.53|0.00|3.05|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5B1|0|8| +22|2023-10-06T20:22:06.9390000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|4C0B0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|104518|127791|9000|10000|||99.95|92.78|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5B1|1|8| +22|2023-10-06T20:22:06.9390000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|1A250000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|10000|10000|||99.81|96.94|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5B1|2|8| +22|2023-10-06T20:22:06.9390000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|25470000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|88372|90055|10000|10000|||100.02|97.55|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5B1|3|8| +22|2023-10-06T20:22:06.9390000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|22210000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|74081|80739|9405|10000|||99.53|97.92|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5B1|4|8| +22|2023-10-06T20:22:06.9390000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|27460000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79185|90128|10000|10000|||100.14|99.90|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5B1|5|8| +22|2023-10-06T20:22:06.9390000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|1FF00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|62779|73085|8400|10000|||99.72|99.93|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5B1|6|8| +22|2023-10-06T20:22:06.9390000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|23900000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|76337|79111|9100|10000|||100.18|101.21|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5B1|7|8| +38|2023-10-06T20:22:06.9390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104518|127791|9000|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:06.9390000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:06.9390000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:22:06.9830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|333B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36219749|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||99.81|96.94|0.00|3.13|0001A5B2|0|1| +37|2023-10-06T20:22:07.0720000-07:00|40022550|Zeromus|0001A5AA|36208909||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:07.0720000-07:00|10FF0002|Suchichi Suchi|0001A5AA|79185|90128|10000|10000|0||100.14|99.90|0.00|-3.13|1600|0|0|01|03000323|0|41F00000|| +37|2023-10-06T20:22:07.0720000-07:00|10FF0006|Wowobora Gogobora|0001A5A3|74081|80739|9405|10000|8||99.53|97.92|0.00|3.12|2803|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T20:22:07.0720000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +38|2023-10-06T20:22:07.0720000-07:00|10FF0002|Suchichi Suchi|005A5A16|79185|90128|10000|10000|0||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:07.1150000-07:00|10FF0001|Sesuga Sapisuga|1D6B|Rampart|10FF0001|Sesuga Sapisuga|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|104518|127791|9000|10000|||99.95|92.78|0.00|3.14|104518|127791|9000|10000|||99.95|92.78|0.00|3.14|0001A5B3|0|1| +37|2023-10-06T20:22:07.1600000-07:00|40022550|Zeromus|0001A5AC|36208882||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:07.1600000-07:00|40022550|Zeromus|0001A5AD|36197541||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:07.1600000-07:00|10FF0002|Suchichi Suchi|80086|90128|10000|10000|||100.14|99.90|0.00|-3.13| +37|2023-10-06T20:22:07.2040000-07:00|10FF0007|Kehabiqo Febiqo|0001A5A3|116567|154276|10000|10000|4||99.08|90.53|0.00|3.05|1504|0|0|01|0D00013B|0|41A80000|| +26|2023-10-06T20:22:07.2040000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|154276|77430| +37|2023-10-06T20:22:07.2040000-07:00|40022550|Zeromus|0001A5AB|36185866||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:07.2040000-07:00|10FF0001|Sesuga Sapisuga|0001A5AB|114992||||||99.95|92.78|0.00|3.14| +39|2023-10-06T20:22:07.2040000-07:00|10FF0003|Gegehi Gehi|63509|73085|8600|10000|||99.72|99.93|0.00|3.13| +24|2023-10-06T20:22:07.2040000-07:00|40022550|Zeromus|DoT|0|229F|36208909|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|76337|79111|9100|10000|||100.18|101.21|0.00|-3.13| +38|2023-10-06T20:22:07.2040000-07:00|40022550|Zeromus|005A5A00|36177003|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:22:07.2490000-07:00|10FF0007|Kehabiqo Febiqo|0001A5B1|95131|154276|10000|10000|4||99.08|90.53|0.00|3.05|1500|0|0|02|04000A53|02|410E51FE|||||| +26|2023-10-06T20:22:07.2490000-07:00|A53|Panhaimatinon|8.90|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|02|154276|80739| +26|2023-10-06T20:22:07.2490000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +37|2023-10-06T20:22:07.2490000-07:00|40022550|Zeromus|0001A5AF|36175336||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:07.2490000-07:00|40022666|Ruby Carbuncle|75183|77430|10000|10000|||99.35|94.65|0.00|-3.07| +38|2023-10-06T20:22:07.2490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95131|154276|10000|10000|4||99.08|90.53|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:07.2920000-07:00|10FF0001|Sesuga Sapisuga|0001A5B1|95525|127791|9000|10000|5||99.95|92.78|0.00|3.14|1301|0|0|02|03000A35|0|41700000|||||| +26|2023-10-06T20:22:07.2920000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:07.2920000-07:00|A53|Panhaimatinon|9.12|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|02|127791|80739| +261|2023-10-06T20:22:07.0130000-07:00|Change|10FF0003||| +21|2023-10-06T20:22:07.2930000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750005|3A20000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|114992|127791|9000|10000|||99.95|92.78|0.00|3.14|36177003|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A5B4|0|1| +38|2023-10-06T20:22:07.2930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|95525|127791|9000|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:07.2930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9600|10000|10||99.81|96.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:07.2930000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:22:07.3380000-07:00|10FF0004|Buhojaqe Zijaqe|0001A5B1|74046|80739|9600|10000|0||99.81|96.94|0.00|3.13|1C02|0|0|03|03000A35|0|41700000|||||||||| +30|2023-10-06T20:22:07.3380000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:22:07.3380000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:22:07.3380000-07:00|A53|Panhaimatinon|8.67|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +37|2023-10-06T20:22:07.3380000-07:00|10FF0003|Gegehi Gehi|0001A5A3|63509|73085|8600|10000|0||99.72|99.93|0.00|3.13|2305|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T20:22:07.3380000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +36|2023-10-06T20:22:07.3380000-07:00|1144|3| +38|2023-10-06T20:22:07.3380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74046|80739|9600|10000|0||99.81|96.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:07.3380000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:22:07.3820000-07:00|10FF0005|Wuwuchu Wuchu|0001A5B1|78829|90055|10000|10000|7||100.02|97.55|0.00|-3.14|2703|0|0|02|04000A35|0|41700000|||||| +26|2023-10-06T20:22:07.3820000-07:00|A53|Panhaimatinon|8.90|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|02|90055|80739| +24|2023-10-06T20:22:07.3820000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1535|95525|127791|9000|10000|||99.95|92.78|0.00|3.14|10FF0006|Wowobora Gogobora|0|74081|80739|9405|10000|||99.53|97.92|0.00|3.12| +37|2023-10-06T20:22:07.3820000-07:00|40022550|Zeromus|0001A5AE|36161678||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:07.3820000-07:00|10FF0001|Sesuga Sapisuga|102231|127791|9200|10000|||99.95|92.78|0.00|3.14| +39|2023-10-06T20:22:07.3820000-07:00|10FF0004|Buhojaqe Zijaqe|74853|80739|9800|10000|||99.81|96.94|0.00|3.13| +21|2023-10-06T20:22:07.3820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36175336|40478540|10000|10000|||100.00|80.10|0.00|0.00|74081|80739|9405|10000|||99.53|97.92|0.00|3.12|0001A5B5|0|1| +38|2023-10-06T20:22:07.3820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102231|127791|9200|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:07.3820000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|78829|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:07.4260000-07:00|10FF0006|Wowobora Gogobora|0001A5B1|65344|80739|9405|10000|8||99.53|97.92|0.00|3.12|2804|0|0|02|01000A53|02|41073347|||||| +26|2023-10-06T20:22:07.4260000-07:00|A53|Panhaimatinon|8.45|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|80739|80739| +26|2023-10-06T20:22:07.4260000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:07.4260000-07:00|10FF0006|Wowobora Gogobora|005A5A28|65344|80739|9405|10000|8||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:07.4720000-07:00|10FF0002|Suchichi Suchi|0001A5B1|70032|90128|10000|10000|7||100.14|99.90|0.00|-3.13|1605|0|0|02|0A35|0|41700000|||||| +26|2023-10-06T20:22:07.4720000-07:00|A53|Panhaimatinon|9.21|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|02|90128|80739| +37|2023-10-06T20:22:07.4720000-07:00|10FF0002|Suchichi Suchi|0001A5A3|70032|90128|10000|10000|7||100.14|99.90|0.00|-3.13|1606|0|0|01|0A00013B|0|41A80000|| +26|2023-10-06T20:22:07.4720000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +39|2023-10-06T20:22:07.4720000-07:00|10FF0005|Wuwuchu Wuchu|79729|90055|10000|10000|||100.02|97.55|0.00|-3.14| +38|2023-10-06T20:22:07.4720000-07:00|10FF0002|Suchichi Suchi|005A5A16|70032|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:07.1230000-07:00|Change|10FF0001||| +261|2023-10-06T20:22:07.1230000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T20:22:07.2420000-07:00|Change|4002266C||| +37|2023-10-06T20:22:07.5160000-07:00|10FF0003|Gegehi Gehi|0001A5B1|55333|73085|8600|10000|9||99.72|99.93|0.00|3.13|2306|0|0|02|01000A35|0|41700000|||||| +26|2023-10-06T20:22:07.5160000-07:00|A53|Panhaimatinon|9.03|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|02|73085|80739| +21|2023-10-06T20:22:07.5160000-07:00|4002268E|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|350003|62B00000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|36161678|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13|0001A5B6|0|1| +39|2023-10-06T20:22:07.5160000-07:00|10FF0006|Wowobora Gogobora|66151|80739|9610|10000|||99.53|97.92|0.00|3.12| +38|2023-10-06T20:22:07.5160000-07:00|10FF0003|Gegehi Gehi|005A5A23|55333|73085|8600|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:07.5610000-07:00|10FF0008|Kokosaze Lulusaze|0001A5B1|67233|79111|9100|10000|8||100.18|101.21|0.00|-3.13|1B07|0|0|02|02000A35|0|41700000|||||| +26|2023-10-06T20:22:07.5610000-07:00|A53|Panhaimatinon|9.25|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|02|79111|80739| +38|2023-10-06T20:22:07.5610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|67233|79111|9100|10000|8||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:07.6050000-07:00|10FF0008|Kokosaze Lulusaze|0001A5A3|67233|79111|9100|10000|8||100.18|101.21|0.00|-3.13|1B07|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T20:22:07.6050000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +38|2023-10-06T20:22:07.6050000-07:00|40022666|Ruby Carbuncle|005A5A00|75183|77430|10000|10000|0||99.35|94.65|0.00|-3.11|0|0|0|||||||||| +30|2023-10-06T20:22:07.6050000-07:00|77B|Summon Order|0.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:22:07.6490000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36161678|40478540|10000|10000|||100.00|80.10|0.00|0.00|36161678|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A5B7|0|1| +261|2023-10-06T20:22:07.3420000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:22:07.7400000-07:00|10FF0001|Sesuga Sapisuga|0001A5B3|102231|127791|9200|10000|5||99.95|92.78|0.00|3.14|1300|0|0|01|0A0004A7|0|41A00000|| +26|2023-10-06T20:22:07.7400000-07:00|4A7|Rampart|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:22:07.7400000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|2E650000|143E|340000|4|1B6E8000|11B|2A8000|0|0|0|0|0|0|0|0|36161678|40478540|10000|10000|||100.00|80.10|0.00|0.00|95131|154276|10000|10000|||99.08|90.53|0.00|3.05|0001A5B8|0|1| +21|2023-10-06T20:22:07.7400000-07:00|10FF0004|Buhojaqe Zijaqe|650B|Protraction|10FF0007|Kehabiqo Febiqo|A0A0E|A960000|4|3C430000|0|0|0|0|0|0|0|0|0|0|0|0|95131|154276|10000|10000|||99.08|90.53|0.00|3.05|74853|80739|9800|10000|||99.81|96.94|0.00|3.13|0001A5B9|0|1| +37|2023-10-06T20:22:07.7840000-07:00|40022550|Zeromus|0001A5B2|36148563||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:07.8740000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36148563|40478540|10000|10000|||100.00|80.10|0.00|0.00|67233|79111|9100|10000|||100.18|101.21|0.00|-3.13|0001A5BA|0|1| +38|2023-10-06T20:22:07.8740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74853|80739|9800|10000|0||99.81|96.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:07.8740000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|80739|127791| +38|2023-10-06T20:22:07.8740000-07:00|10FF0003|Gegehi Gehi|005A5A23|55333|73085|8600|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:07.8740000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73085|127791| +38|2023-10-06T20:22:07.8740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79729|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:07.8740000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|90055|127791| +37|2023-10-06T20:22:07.9190000-07:00|40022550|Zeromus|0001A5B5|36148526||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:07.9190000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|100.18|101.21|0.00|-3.13| +38|2023-10-06T20:22:07.9190000-07:00|10FF0002|Suchichi Suchi|005A5A16|70032|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:07.9190000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|90128|127791| +38|2023-10-06T20:22:07.9190000-07:00|40022666|Ruby Carbuncle|005A5A00|75183|77430|10000|10000|0||99.35|94.65|0.00|3.10|0|0|0|||||||||| +30|2023-10-06T20:22:07.9190000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|40022666|Ruby Carbuncle|00|77430|127791| +38|2023-10-06T20:22:07.9190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|67233|79111|9100|10000|8||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:07.9190000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|79111|127791| +38|2023-10-06T20:22:07.9190000-07:00|10FF0006|Wowobora Gogobora|005A5A28|66151|80739|9610|10000|8||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:07.9190000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:22:07.9190000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|80739|127791| +261|2023-10-06T20:22:07.6250000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:22:08.0530000-07:00|40022550|Zeromus|0001A5B0|36135054||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:08.0530000-07:00|10FF0007|Kehabiqo Febiqo|96673|154276|10000|10000|||99.08|90.53|0.00|3.05| +39|2023-10-06T20:22:08.0530000-07:00|10FF0008|Kokosaze Lulusaze|68024|79111|9300|10000|||100.18|101.21|0.00|-3.13| +37|2023-10-06T20:22:08.0970000-07:00|10FF0001|Sesuga Sapisuga|0001A5B4|101301|127791|9200|10000|5||99.95|92.78|0.00|3.14|1300|0|0|02|03000A35|0|41700000|||||| +26|2023-10-06T20:22:08.0970000-07:00|A53|Panhaimatinon|8.31|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|01|127791|80739| +38|2023-10-06T20:22:08.0970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101301|127791|9200|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:22:08.1860000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.53|97.92|0.00|3.12| +20|2023-10-06T20:22:08.2760000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|99.72|99.93|0.00|3.13| +21|2023-10-06T20:22:08.2760000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C6D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36135054|40478540|10000|10000|||100.00|80.10|0.00|0.00|79729|90055|10000|10000|||100.02|97.55|0.00|-3.14|0001A5BB|0|1| +261|2023-10-06T20:22:07.9660000-07:00|Change|10FF0003||||||||||||| +22|2023-10-06T20:22:08.3200000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|55580000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|96673|154276|10000|10000|||99.08|90.53|0.00|3.05|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5BC|0|8| +22|2023-10-06T20:22:08.3200000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|46130000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|101301|127791|9200|10000|||99.95|92.78|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5BC|1|8| +22|2023-10-06T20:22:08.3200000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|2D4A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|74853|80739|9800|10000|||99.81|96.94|0.00|-3.03|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5BC|2|8| +22|2023-10-06T20:22:08.3200000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|31CA0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79729|90055|10000|10000|||100.02|97.55|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5BC|3|8| +22|2023-10-06T20:22:08.3200000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|2C210000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|66151|80739|9610|10000|||99.53|97.92|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5BC|4|8| +22|2023-10-06T20:22:08.3200000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|2EFC0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|70032|90128|10000|10000|||100.14|99.90|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5BC|5|8| +22|2023-10-06T20:22:08.3200000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|2B510000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|55333|73085|8600|10000|||99.72|99.93|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5BC|6|8| +22|2023-10-06T20:22:08.3200000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|2B2F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|68024|79111|9300|10000|||100.18|101.21|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5BC|7|8| +37|2023-10-06T20:22:08.4090000-07:00|40022550|Zeromus|0001A5BA|36134910||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:08.4090000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|E950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36135054|40478540|10000|10000|||100.00|80.10|0.00|0.00|96673|154276|10000|10000|||99.08|90.53|0.00|3.05|0001A5BD|0|1| +26|2023-10-06T20:22:08.4090000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +21|2023-10-06T20:22:08.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0004|Buhojaqe Zijaqe|200004|7BFC0000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|74853|80739|9800|10000|||99.81|96.94|0.00|-3.03|74853|80739|9800|10000|||99.81|96.94|0.00|-3.03|0001A5BE|0|1| +261|2023-10-06T20:22:08.1880000-07:00|Change|10FF0008||||| +261|2023-10-06T20:22:08.1880000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:22:08.4980000-07:00|10FF0007|Kehabiqo Febiqo|0001A5B9|112100|169704|10000|10000|0||99.08|90.53|0.00|3.05|1500|0|0|01|0E000A96|0|41200000|| +26|2023-10-06T20:22:08.4980000-07:00|A96|Protraction|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:22:08.4990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112100|169704|10000|10000|0||99.08|90.53|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:08.5420000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|20F60000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|55333|73085|8600|10000|||99.72|99.93|0.00|3.13|75183|77430|10000|10000|||99.35|94.65|0.00|1.71|0001A5BF|0|1| +24|2023-10-06T20:22:08.5880000-07:00|40022666|Ruby Carbuncle|HoT|0|4D4|75183|77430|10000|10000|||99.35|94.65|0.00|1.71|10FF0005|Wuwuchu Wuchu|0|79729|90055|10000|10000|||100.02|97.55|0.00|-3.14| +38|2023-10-06T20:22:08.5880000-07:00|40022666|Ruby Carbuncle|005A5A00|76419|77430|10000|10000|0||99.35|94.65|0.00|1.71|0|0|0|||||||||| +37|2023-10-06T20:22:08.6320000-07:00|10FF0007|Kehabiqo Febiqo|0001A5BC|90252|169704|10000|10000|3||99.08|90.53|0.00|3.05|1500|0|0|02|04000A53|01|40F06277|||||| +26|2023-10-06T20:22:08.6320000-07:00|A53|Panhaimatinon|7.51|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|01|154276|80739| +24|2023-10-06T20:22:08.6320000-07:00|10FF0002|Suchichi Suchi|HoT|0|23EC|70032|90128|10000|10000|||100.14|99.90|0.00|-3.13|10FF0005|Wuwuchu Wuchu|0|79729|90055|10000|10000|||100.02|97.55|0.00|-3.14| +38|2023-10-06T20:22:08.6320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90252|169704|10000|10000|3||99.08|90.53|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:08.6320000-07:00|10FF0002|Suchichi Suchi|005A5A16|79228|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:08.6770000-07:00|10FF0001|Sesuga Sapisuga|0001A5BC|83362|127791|9200|10000|5||99.95|92.78|0.00|3.14|1301|0|0|02|03000A35|0|41700000|||||| +24|2023-10-06T20:22:08.6770000-07:00|10FF0003|Gegehi Gehi|HoT|0|2441|55333|73085|8600|10000|||99.72|99.93|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|79729|90055|10000|10000|||100.02|97.55|0.00|-3.14| +21|2023-10-06T20:22:08.6770000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|200004|F1030000|1CCD0F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|90252|169704|10000|10000|||99.08|90.53|0.00|3.05|90252|169704|10000|10000|||99.08|90.53|0.00|3.05|0001A5C0|0|1| +38|2023-10-06T20:22:08.6770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|83362|127791|9200|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:08.6770000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|01|127791|80739| +38|2023-10-06T20:22:08.6770000-07:00|10FF0003|Gegehi Gehi|005A5A23|64614|73085|8600|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:08.7220000-07:00|10FF0004|Buhojaqe Zijaqe|0001A5BC|63259|80739|9800|10000|8||99.81|96.94|0.00|-3.03|1C02|0|0|02|03000A35|0|41700000|||||| +26|2023-10-06T20:22:08.7220000-07:00|A53|Panhaimatinon|7.29|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +38|2023-10-06T20:22:08.7220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63259|80739|9800|10000|8||99.81|96.94|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:08.7660000-07:00|10FF0005|Wuwuchu Wuchu|0001A5BC|66983|90055|10000|10000|7||100.02|97.55|0.00|-3.14|2703|0|0|02|04000A35|0|41700000|||||| +26|2023-10-06T20:22:08.7660000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:22:08.7660000-07:00|A53|Panhaimatinon|7.51|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|01|90055|80739| +38|2023-10-06T20:22:08.7670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|66983|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:08.8100000-07:00|10FF0006|Wowobora Gogobora|0001A5BC|54854|80739|9610|10000|8||99.53|97.92|0.00|3.12|2804|0|0|02|01000A53|01|40E21CD3|||||| +26|2023-10-06T20:22:08.8100000-07:00|A53|Panhaimatinon|7.07|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|80739|80739| +37|2023-10-06T20:22:08.8100000-07:00|40022550|Zeromus|0001A5B6|36109646||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:08.8100000-07:00|40022550|Zeromus|0001A5BB|36106465||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:08.8100000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54854|80739|9610|10000|8||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:08.8570000-07:00|10FF0002|Suchichi Suchi|0001A5BC|67200|90128|10000|10000|7||100.14|99.90|0.00|-3.13|1605|0|0|02|0A35|0|41700000|||||| +26|2023-10-06T20:22:08.8570000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:22:08.8570000-07:00|A53|Panhaimatinon|7.83|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|01|90128|80739| +24|2023-10-06T20:22:08.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3BDD|83362|127791|9200|10000|||99.95|92.78|0.00|3.14|10FF0006|Wowobora Gogobora|0|66151|80739|9610|10000|||99.53|97.92|0.00|3.12| +24|2023-10-06T20:22:08.8570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1130|90252|169704|10000|10000|||99.08|90.53|0.00|3.05|10FF0004|Buhojaqe Zijaqe|0|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03| +24|2023-10-06T20:22:08.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1534|83362|127791|9200|10000|||99.95|92.78|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03| +24|2023-10-06T20:22:08.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D40|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03|10FF0004|Buhojaqe Zijaqe|0|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03| +24|2023-10-06T20:22:08.8570000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|14B7|79729|90055|10000|10000|||100.02|97.55|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03| +24|2023-10-06T20:22:08.8570000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CBB|66151|80739|9610|10000|||99.53|97.92|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03| +24|2023-10-06T20:22:08.8570000-07:00|10FF0002|Suchichi Suchi|HoT|798|15B3|79228|90128|10000|10000|||100.14|99.90|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03| +24|2023-10-06T20:22:08.8570000-07:00|10FF0003|Gegehi Gehi|HoT|798|CEA|64614|73085|8600|10000|||99.72|99.93|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03| +24|2023-10-06T20:22:08.8570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1526|68024|79111|9300|10000|||100.18|101.21|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03| +24|2023-10-06T20:22:08.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1B5D|63259|80739|9800|10000|||99.81|96.94|0.00|-3.03|40022666|Ruby Carbuncle|0|76419|77430|10000|10000|||99.35|94.65|0.00|1.01| +38|2023-10-06T20:22:08.8570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94652|169704|10000|10000|3||99.08|90.53|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:08.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|169704|80739| +38|2023-10-06T20:22:08.8570000-07:00|10FF0002|Suchichi Suchi|005A5A16|72755|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:08.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:08.8570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|73438|79111|9300|10000|8||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:08.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:08.8570000-07:00|10FF0006|Wowobora Gogobora|005A5A28|58113|80739|9610|10000|8||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:08.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:08.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104115|127791|9200|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:08.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:08.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73656|80739|9800|10000|8||99.81|96.94|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:08.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:08.8570000-07:00|10FF0003|Gegehi Gehi|005A5A23|67920|73085|8600|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:08.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:22:08.8570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|72286|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:08.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:22:08.9000000-07:00|10FF0003|Gegehi Gehi|0001A5BC|56831|73085|8600|10000|9||99.72|99.93|0.00|3.13|2306|0|0|02|01000A35|0|41700000|||||| +26|2023-10-06T20:22:08.9000000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:22:08.9000000-07:00|A53|Panhaimatinon|7.64|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|01|73085|80739| +38|2023-10-06T20:22:08.9000000-07:00|10FF0003|Gegehi Gehi|005A5A23|56831|73085|8600|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:08.9450000-07:00|40022550|Zeromus|0001A5BD|36102732||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:08.9450000-07:00|10FF0008|Kokosaze Lulusaze|0001A5BC|62383|79111|9300|10000|8||100.18|101.21|0.00|-3.13|1B07|0|0|02|02000A35|0|41700000|||||| +26|2023-10-06T20:22:08.9450000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:22:08.9450000-07:00|A53|Panhaimatinon|7.87|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|01|79111|80739| +24|2023-10-06T20:22:08.9450000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|2202|72286|90055|10000|10000|||100.02|97.55|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|73656|80739|9800|10000|||99.81|96.94|0.00|-3.03| +21|2023-10-06T20:22:08.9450000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A724003|45AF0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|36106465|40478540|10000|10000|||100.00|80.10|0.00|0.00|72755|90128|10000|10000|||100.14|99.90|0.00|-3.13|0001A5C1|0|1| +21|2023-10-06T20:22:08.9450000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|144D0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|36106465|40478540|10000|10000|||100.00|80.10|0.00|0.00|104115|127791|9200|10000|||99.95|92.78|0.00|3.14|0001A5C2|0|1| +38|2023-10-06T20:22:08.9450000-07:00|10FF0002|Suchichi Suchi|005A5A16|72755|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:08.9450000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:22:08.9450000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:08.9450000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|62383|79111|9300|10000|8||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:08.9450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|80992|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:08.9890000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1BBA|58113|80739|9610|10000|||99.53|97.92|0.00|3.12|10FF0005|Wuwuchu Wuchu|0|80992|90055|10000|10000|||100.02|97.55|0.00|-3.14| +21|2023-10-06T20:22:08.9890000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36102732|40478540|10000|10000|||100.00|80.10|0.00|0.00|104115|127791|9200|10000|||99.95|92.78|0.00|3.14|0001A5C3|0|1| +38|2023-10-06T20:22:08.9890000-07:00|10FF0006|Wowobora Gogobora|005A5A28|65211|80739|9610|10000|8||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:22:08.9890000-07:00|10FF0001||||| +37|2023-10-06T20:22:09.0340000-07:00|10FF0004|Buhojaqe Zijaqe|0001A5BE|80739||||||99.81|96.94|0.00|-3.03| +21|2023-10-06T20:22:09.0340000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36102732|40478540|10000|10000|||100.00|80.10|0.00|0.00|36102732|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A5C4|0|1| +21|2023-10-06T20:22:09.1230000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|350D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|36102732|40478540|10000|10000|||100.00|80.10|0.00|0.00|65211|80739|9610|10000|||99.53|97.92|0.00|3.12|0001A5C5|0|1| +21|2023-10-06T20:22:09.1230000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C710003|36D10000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|36102732|40478540|10000|10000|||100.00|80.10|0.00|0.00|80992|90055|10000|10000|||100.02|97.55|0.00|-3.14|0001A5C6|0|1| +21|2023-10-06T20:22:09.1680000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36102732|40478540|10000|10000|||100.00|80.10|0.00|0.00|72755|90128|10000|10000|||100.14|99.90|0.00|-3.13|0001A5C7|0|1| +37|2023-10-06T20:22:09.2560000-07:00|40022550|Zeromus|0001A5B8|36090855||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:09.2560000-07:00|10FF0007|Kehabiqo Febiqo|0001A5B8|101674||||||99.08|90.53|0.00|3.05| +37|2023-10-06T20:22:09.3010000-07:00|10FF0007|Kehabiqo Febiqo|0001A5C0|163373|169704|10000|10000|3||99.08|90.53|0.00|3.05|1500|0|0|01|0F000A79|0|41700000|| +26|2023-10-06T20:22:09.3010000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|169704|169704| +04|2023-10-06T20:22:09.0220000-07:00|4002266C|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||100.74|100.35|0.00|-2.47| +261|2023-10-06T20:22:09.0220000-07:00|Remove|4002266C| +37|2023-10-06T20:22:09.3450000-07:00|10FF0003|Gegehi Gehi|0001A5BF|65269||||||99.72|99.93|0.00|3.13| +261|2023-10-06T20:22:09.2570000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:22:09.5230000-07:00|40022550|Zeromus|0001A5C3|36089129||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:09.5230000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|472A|163373|169704|10000|10000|||99.08|90.53|0.00|3.05|10FF0007|Kehabiqo Febiqo|0|163373|169704|10000|10000|||99.08|90.53|0.00|3.05| +24|2023-10-06T20:22:09.5230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1B4D|62383|79111|9300|10000|||100.18|101.21|0.00|-3.13|10FF0008|Kokosaze Lulusaze|0|62383|79111|9300|10000|||100.18|101.21|0.00|-3.13| +38|2023-10-06T20:22:09.5230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|169704|169704|10000|10000|3||99.08|90.53|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:09.5230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69372|79111|9300|10000|8||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:09.5680000-07:00|40022550|Zeromus|0001A5C2|36083932||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:09.6120000-07:00|40022550|Zeromus|0001A5C1|36066093||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:09.6120000-07:00|10FF0002|Suchichi Suchi|0001A5C1|72755|90128|10000|10000|7||100.14|99.90|0.00|-3.13|1600|0|0|01|07000747|0|41F00000|| +38|2023-10-06T20:22:09.6120000-07:00|10FF0002|Suchichi Suchi|005A5A16|72755|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:09.7020000-07:00|40022550|Zeromus|0001A5C7|36061264||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:09.7020000-07:00|40022550|Zeromus|0001A5C6|36047231||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:22:09.7020000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|4E8F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|169704|169704|10000|10000|||99.08|90.53|0.00|3.05|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5C8|0|8| +22|2023-10-06T20:22:09.7020000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750005|32830000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|104115|127791|9200|10000|||99.95|92.78|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5C8|1|8| +22|2023-10-06T20:22:09.7020000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|2C320000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9800|10000|||99.81|96.94|0.00|-3.03|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5C8|2|8| +22|2023-10-06T20:22:09.7020000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|2D570000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80992|90055|10000|10000|||100.02|97.55|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5C8|3|8| +22|2023-10-06T20:22:09.7020000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|2AB00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|65211|80739|9210|10000|||99.53|97.92|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5C8|4|8| +22|2023-10-06T20:22:09.7020000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|326B0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|72755|90128|10000|10000|||100.14|99.90|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5C8|5|8| +22|2023-10-06T20:22:09.7020000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|2DFB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|65269|73085|8600|10000|||99.72|99.93|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5C8|6|8| +22|2023-10-06T20:22:09.7020000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|2EF20000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|69372|79111|9300|10000|||100.18|101.21|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5C8|7|8| +21|2023-10-06T20:22:09.7020000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|2E270000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|36066093|40478540|10000|10000|||100.00|80.10|0.00|0.00|65269|73085|8600|10000|||99.72|99.93|0.00|3.13|0001A5C9|0|1| +38|2023-10-06T20:22:09.7020000-07:00|10FF0003|Gegehi Gehi|005A5A23|65269|73085|8400|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:09.7020000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:22:09.4430000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T20:22:09.7910000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|160D|104115|127791|9200|10000|||99.95|92.78|0.00|3.14|10FF0006|Wowobora Gogobora|0|65211|80739|9210|10000|||99.53|97.92|0.00|3.12| +37|2023-10-06T20:22:09.7910000-07:00|40022550|Zeromus|0001A5C5|36033650||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:09.7910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109760|127791|9200|10000|5||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:09.7910000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:22:10.0120000-07:00|10FF0007|Kehabiqo Febiqo|0001A5C8|149593|169704|10000|10000|0||99.08|90.53|0.00|3.05|1500|0|0|02|04000A35|0|41700000|||||| +30|2023-10-06T20:22:10.0120000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|01|169704|80739| +26|2023-10-06T20:22:10.0120000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|169704|80739| +38|2023-10-06T20:22:10.0120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|149593|169704|10000|10000|0||99.08|90.53|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.0120000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|169704|80739| +37|2023-10-06T20:22:10.0580000-07:00|10FF0001|Sesuga Sapisuga|0001A5C8|96829|127791|9200|10000|0||99.95|92.78|0.00|3.14|1301|0|0|01|03000000|0|0|| +38|2023-10-06T20:22:10.0580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|96829|127791|9200|10000|0||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.0580000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:22:10.1030000-07:00|10FF0004|Buhojaqe Zijaqe|0001A5C8|69425|80739|9800|10000|8||99.81|96.94|0.00|-3.03|1C02|0|0|02|03000A35|0|41700000|||||| +26|2023-10-06T20:22:10.1030000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:10.1030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69425|80739|9800|10000|8||99.81|96.94|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.1030000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +37|2023-10-06T20:22:10.1480000-07:00|10FF0005|Wuwuchu Wuchu|0001A5C8|69385|90055|10000|10000|7||100.02|97.55|0.00|-3.14|2703|0|0|02|04000A35|0|41700000|||||| +39|2023-10-06T20:22:10.1480000-07:00|10FF0002|Suchichi Suchi|73656|90128|10000|10000|||100.14|99.90|0.00|-3.13| +21|2023-10-06T20:22:10.1480000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36033650|40478540|10000|10000|||100.00|80.10|0.00|0.00|69425|80739|9800|10000|||99.81|96.94|0.00|-3.03|0001A5CA|0|1| +38|2023-10-06T20:22:10.1480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|69385|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.1480000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|01|90055|80739| +37|2023-10-06T20:22:10.1910000-07:00|10FF0006|Wowobora Gogobora|0001A5C8|54283|80739|9210|10000|0||99.53|97.92|0.00|3.12|2804|0|0|02|01000A35|0|41700000|||||| +30|2023-10-06T20:22:10.1910000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|80739|80739| +26|2023-10-06T20:22:10.1910000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +39|2023-10-06T20:22:10.1910000-07:00|10FF0003|Gegehi Gehi|65999|73085|8600|10000|||99.72|99.93|0.00|3.13| +24|2023-10-06T20:22:10.1910000-07:00|40022550|Zeromus|DoT|0|234F|36033650|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|69372|79111|9300|10000|||100.18|101.21|0.00|-3.13| +21|2023-10-06T20:22:10.1910000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|3BC80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36033650|40478540|10000|10000|||100.00|80.10|0.00|0.00|149593|169704|10000|10000|||99.08|90.53|0.00|3.05|0001A5CB|0|1| +261|2023-10-06T20:22:09.9750000-07:00|Change|40022550||| +21|2023-10-06T20:22:10.1910000-07:00|10FF0004|Buhojaqe Zijaqe|1D0A|Excogitation|10FF0007|Kehabiqo Febiqo|320FAD0E|4C40000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|149593|169704|10000|10000|||99.08|90.53|0.00|3.05|69425|80739|9800|10000|||99.81|96.94|0.00|-3.03|0001A5CC|0|1| +38|2023-10-06T20:22:10.1910000-07:00|40022550|Zeromus|005A5A00|36024611|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:22:10.1910000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54283|80739|9210|10000|0||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:10.1910000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:22:10.1910000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:10.1910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69425|80739|9800|10000|8||99.81|96.94|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.1910000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +37|2023-10-06T20:22:10.2350000-07:00|10FF0002|Suchichi Suchi|0001A5C8|60749|90128|10000|10000|7||100.14|99.90|0.00|-3.13|1605|0|0|02|0A35|0|41700000|||||| +39|2023-10-06T20:22:10.2350000-07:00|40022666|Ruby Carbuncle|76419|77430|10000|10000|||99.35|94.65|0.00|1.36| +38|2023-10-06T20:22:10.2350000-07:00|10FF0002|Suchichi Suchi|005A5A16|60749|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.2350000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|01|90128|80739| +37|2023-10-06T20:22:10.2800000-07:00|10FF0003|Gegehi Gehi|0001A5C8|54228|73085|8600|10000|9||99.72|99.93|0.00|3.13|2306|0|0|02|01000A35|0|41700000|||||| +21|2023-10-06T20:22:10.2800000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69385|90055|10000|10000|||100.02|97.55|0.00|-3.14|69385|90055|10000|10000|||100.02|97.55|0.00|-3.14|0001A5CD|0|1| +38|2023-10-06T20:22:10.2800000-07:00|10FF0003|Gegehi Gehi|005A5A23|54228|73085|8600|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.2800000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|01|73085|80739| +38|2023-10-06T20:22:10.2800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|69385|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:10.2800000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:22:10.3250000-07:00|10FF0008|Kokosaze Lulusaze|0001A5C8|57354|79111|9300|10000|8||100.18|101.21|0.00|-3.13|1B07|0|0|02|02000A35|0|41700000|||||| +21|2023-10-06T20:22:10.3250000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|9240000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|149593|169704|10000|10000|||99.08|90.53|0.00|3.05|36024611|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A5CE|0|1| +36|2023-10-06T20:22:10.3250000-07:00|1220|3| +38|2023-10-06T20:22:10.3250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|57354|79111|9300|10000|8||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.3250000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|01|79111|80739| +39|2023-10-06T20:22:10.3690000-07:00|10FF0001|Sesuga Sapisuga|98106|127791|9400|10000|||99.95|92.78|0.00|3.14| +39|2023-10-06T20:22:10.3690000-07:00|10FF0004|Buhojaqe Zijaqe|70232|80739|10000|10000|||99.81|96.94|0.00|-3.03| +21|2023-10-06T20:22:10.3690000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|352003|6CCF0000|16C00F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|36024611|40478540|10000|10000|||100.00|80.10|0.00|0.00|69372|79111|9300|10000|||100.18|101.21|0.00|-3.13|0001A5CF|0|1| +38|2023-10-06T20:22:10.3690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|57354|79111|9300|10000|8||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.3690000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:22:10.0910000-07:00|Change|10FF0008||||||||||||| +261|2023-10-06T20:22:10.0910000-07:00|Change|10FF0004||||| +261|2023-10-06T20:22:10.0910000-07:00|Change|10FF0001||| +21|2023-10-06T20:22:10.4120000-07:00|40022550|Zeromus|8B3A|Sable Thread|40022550|Zeromus|49|8000|1B|8B3A8000|0|0|0|0|0|0|0|0|0|0|0|0|36024611|40478540|10000|10000|||100.00|80.10|0.00|0.00|36024611|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A5D0|0|1| +37|2023-10-06T20:22:10.4580000-07:00|40022550|Zeromus|0001A5C9|36012796||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:10.4580000-07:00|10FF0005|Wuwuchu Wuchu|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14| +39|2023-10-06T20:22:10.5020000-07:00|10FF0006|Wowobora Gogobora|55090|80739|9415|10000|||99.53|97.92|0.00|3.12| +261|2023-10-06T20:22:10.2730000-07:00|Change|10FF0006||| +20|2023-10-06T20:22:10.6370000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.53|97.92|0.00|3.12| +37|2023-10-06T20:22:10.6810000-07:00|40022550|Zeromus|0001A5CA|36012559||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:10.7260000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|375D0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|36012559|40478540|10000|10000|||100.00|80.10|0.00|0.00|54228|73085|8600|10000|||99.72|99.93|0.00|3.13|0001A5D1|0|1| +38|2023-10-06T20:22:10.7260000-07:00|10FF0003|Gegehi Gehi|005A5A23|54228|73085|8300|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:10.7260000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:22:10.7260000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:22:10.4690000-07:00|Change|10FF0003||| +37|2023-10-06T20:22:10.8150000-07:00|40022550|Zeromus|0001A5CB|35997255||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:10.8150000-07:00|10FF0005|Wuwuchu Wuchu|0001A5CD|70285|90055|10000|10000|7||100.02|97.55|0.00|-3.14|2700|0|0|01|060004E2|0|41200000|| +38|2023-10-06T20:22:10.8150000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70285|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:10.8590000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|FF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35997255|40478540|10000|10000|||100.00|80.10|0.00|0.00|149593|169704|10000|10000|||99.08|90.53|0.00|3.05|0001A5D2|0|1| +20|2023-10-06T20:22:10.8590000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.81|96.94|0.00|-3.03| +261|2023-10-06T20:22:10.5700000-07:00|Change|10FF0004||||||||||||||| +38|2023-10-06T20:22:10.9490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|98106|127791|9400|10000|0||99.95|92.78|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:10.9490000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:22:10.9920000-07:00|10FF0007|Kehabiqo Febiqo|0001A5CC|149593|169704|10000|10000|0||99.08|90.53|0.00|3.05|1500|0|0|01|050004C4|32|42340000|| +26|2023-10-06T20:22:10.9920000-07:00|4C4|Excogitation|45.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|32|169704|80739| +39|2023-10-06T20:22:11.0370000-07:00|10FF0007|Kehabiqo Febiqo|151290|169704|10000|10000|||99.08|90.53|0.00|3.05| +39|2023-10-06T20:22:11.0370000-07:00|10FF0008|Kokosaze Lulusaze|58145|79111|9500|10000|||100.18|101.21|0.00|-3.13| +261|2023-10-06T20:22:10.6670000-07:00|Change|10FF0008||| +21|2023-10-06T20:22:11.0860000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|714003|42330000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|35997255|40478540|10000|10000|||100.00|80.10|0.00|0.00|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14|0001A5D3|0|1| +38|2023-10-06T20:22:11.0860000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70285|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:11.0860000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +37|2023-10-06T20:22:11.1270000-07:00|10FF0007|Kehabiqo Febiqo|0001A5CE|148950|169704|10000|10000|0||99.08|90.53|0.00|3.05|1500|0|0|01|04000000|0|0|| +38|2023-10-06T20:22:11.1270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|148950|169704|10000|10000|0||99.08|90.53|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:11.1270000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|169704|80739| +21|2023-10-06T20:22:11.2610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35997255|40478540|10000|10000|||100.00|80.10|0.00|0.00|98106|127791|9400|10000|||99.95|92.78|0.00|3.14|0001A5D4|0|1| +31|2023-10-06T20:22:11.2610000-07:00|10FF0001||||| +261|2023-10-06T20:22:11.0200000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T20:22:11.3940000-07:00|40022550|Zeromus|DoT|A92|4C5|35997255|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|58145|79111|9500|10000|||100.18|101.21|0.00|-3.13| +37|2023-10-06T20:22:11.3940000-07:00|40022550|Zeromus|0001A5CF|35968179||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:11.3940000-07:00|10FF0008|Kokosaze Lulusaze|0001A5CF|58145|79111|9500|10000|8||100.18|101.21|0.00|-3.13|1B00|0|0|01|03000A92|0|41700000|| +26|2023-10-06T20:22:11.3940000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:22:11.3940000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|22DC0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|35997255|40478540|10000|10000|||100.00|80.10|0.00|0.00|58145|79111|9500|10000|||100.18|101.21|0.00|-3.13|0001A5D5|0|1| +38|2023-10-06T20:22:11.3940000-07:00|40022550|Zeromus|005A5A00|35968179|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:22:11.1300000-07:00|Change|4002256D||||||||| +22|2023-10-06T20:22:11.4390000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|69950000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|148950|169704|10000|10000|||99.08|90.53|0.00|3.05|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5D6|0|8| +22|2023-10-06T20:22:11.4390000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|71570000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|98106|127791|9400|10000|||99.95|92.78|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5D6|1|8| +22|2023-10-06T20:22:11.4390000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|2C6A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|70232|80739|10000|10000|||99.81|96.94|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5D6|2|8| +22|2023-10-06T20:22:11.4390000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|2FF50000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5D6|3|8| +22|2023-10-06T20:22:11.4390000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|2A8F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|55090|80739|9415|10000|||99.53|97.92|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5D6|4|8| +22|2023-10-06T20:22:11.4390000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|34380000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|60749|90128|10000|10000|||100.14|99.90|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5D6|5|8| +22|2023-10-06T20:22:11.4390000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|2ADD0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|54228|73085|8300|10000|||99.72|99.93|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5D6|6|8| +22|2023-10-06T20:22:11.4390000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|28B20000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|58145|79111|9500|10000|||100.18|101.21|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|0001A5D6|7|8| +21|2023-10-06T20:22:11.4390000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|26590000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|35997255|40478540|10000|10000|||100.00|80.10|0.00|0.00|60749|90128|10000|10000|||100.14|99.90|0.00|-3.13|0001A5D7|0|1| +21|2023-10-06T20:22:11.4390000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1F8C0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|35997255|40478540|10000|10000|||100.00|80.10|0.00|0.00|98106|127791|9400|10000|||99.95|92.78|0.00|3.14|0001A5D8|0|1| +38|2023-10-06T20:22:11.4390000-07:00|10FF0002|Suchichi Suchi|005A5A16|60749|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:11.4390000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:22:11.4830000-07:00|40022550|Zeromus|0001A5D2|35964093||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:11.4830000-07:00|40022550|Zeromus|0001A5D1|35949920||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:11.4830000-07:00|10FF0003|Gegehi Gehi|0001A5D1|54228|73085|8300|10000|9||99.72|99.93|0.00|3.13|2300|0|0|01|030004D3|0|41F00000|| +21|2023-10-06T20:22:11.4830000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|720003|12460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35968179|40478540|10000|10000|||100.00|80.10|0.00|0.00|54228|73085|8300|10000|||99.72|99.93|0.00|3.13|0001A5D9|0|1| +21|2023-10-06T20:22:11.4830000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|109E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35968179|40478540|10000|10000|||100.00|80.10|0.00|0.00|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14|0001A5DA|0|1| +38|2023-10-06T20:22:11.4830000-07:00|10FF0003|Gegehi Gehi|005A5A23|54228|73085|8300|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:11.2280000-07:00|Change|4002268E||||| +261|2023-10-06T20:22:11.2280000-07:00|Change|10FF0006||||||||||||| +38|2023-10-06T20:22:11.5720000-07:00|4002269A||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +24|2023-10-06T20:22:11.5720000-07:00|40022666|Ruby Carbuncle|HoT|0|4CB|76419|77430|10000|10000|||99.35|94.65|0.00|3.10|10FF0005|Wuwuchu Wuchu|0|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14| +21|2023-10-06T20:22:11.5720000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36810000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|35968179|40478540|10000|10000|||100.00|80.10|0.00|0.00|55090|80739|9415|10000|||99.53|97.92|0.00|3.12|0001A5DB|0|1| +21|2023-10-06T20:22:11.5720000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35968179|40478540|10000|10000|||100.00|80.10|0.00|0.00|54228|73085|8300|10000|||99.72|99.93|0.00|3.13|0001A5DC|0|1| +38|2023-10-06T20:22:11.5720000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||99.35|94.65|0.00|3.10|0|0|0|||||||||| +38|2023-10-06T20:22:11.5720000-07:00|4002269A||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:22:11.6160000-07:00|40022550|Zeromus|0001A5D3|35932973||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:11.6160000-07:00|10FF0005|Wuwuchu Wuchu|0001A5D3|70285|90055|10000|10000|7||100.02|97.55|0.00|-3.14|2700|0|0|01|09000A1B|01|41F00000|| +38|2023-10-06T20:22:11.6160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70285|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:11.6600000-07:00|10FF0002|Suchichi Suchi|HoT|0|1BBD|60749|90128|10000|10000|||100.14|99.90|0.00|-3.13|10FF0005|Wuwuchu Wuchu|0|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14| +38|2023-10-06T20:22:11.6600000-07:00|10FF0002|Suchichi Suchi|005A5A16|67850|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:11.7060000-07:00|10FF0003|Gegehi Gehi|HoT|0|22CD|54228|73085|8300|10000|||99.72|99.93|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14| +38|2023-10-06T20:22:11.7060000-07:00|10FF0003|Gegehi Gehi|005A5A23|63137|73085|8300|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:11.3290000-07:00|Add|40022699||||||||||||||||||||||||||||| +03|2023-10-06T20:22:11.4300000-07:00|4002269A|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||100.17|99.48|0.00|0.01| +261|2023-10-06T20:22:11.4300000-07:00|Add|4002269A||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:11.7490000-07:00|10FF0007|Kehabiqo Febiqo|0001A5D6|121921||||||99.08|90.53|0.00|3.05| +261|2023-10-06T20:22:11.4300000-07:00|Change|4002269A||| +37|2023-10-06T20:22:11.7950000-07:00|10FF0001|Sesuga Sapisuga|0001A5D6|69091||||||99.95|92.78|0.00|3.14| +37|2023-10-06T20:22:11.7950000-07:00|40022550|Zeromus|0001A5D4|35931322||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:11.7950000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|11E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35932973|40478540|10000|10000|||100.00|80.10|0.00|0.00|148950|169704|10000|10000|||99.08|90.53|0.00|3.05|0001A5DD|0|1| +21|2023-10-06T20:22:11.7950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32280000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35932973|40478540|10000|10000|||100.00|80.10|0.00|0.00|70232|80739|10000|10000|||99.81|96.94|0.00|3.13|0001A5DE|0|1| +21|2023-10-06T20:22:11.7950000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|45EE0000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|35932973|40478540|10000|10000|||100.00|80.10|0.00|0.00|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14|0001A5DF|0|1| +38|2023-10-06T20:22:11.7950000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70285|90055|10000|10000|7||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:11.7950000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:22:11.7950000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:22:11.7950000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:22:11.8390000-07:00|10FF0004|Buhojaqe Zijaqe|0001A5D6|58862|80739|9600|10000|0||99.81|96.94|0.00|3.13|1C02|0|0|01|03000000|0|0|| +38|2023-10-06T20:22:11.8390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58862|80739|9600|10000|0||99.81|96.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:11.8390000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:22:11.8840000-07:00|10FF0005|Wuwuchu Wuchu|0001A5D6|58008|90055|10000|10000|0||100.02|97.55|0.00|-3.14|2703|0|0|02|04000000|0|0|||||| +24|2023-10-06T20:22:11.8840000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3368|69091|127791|9400|10000|||99.96|92.72|0.00|2.94|10FF0006|Wowobora Gogobora|0|55090|80739|9015|10000|||99.53|97.92|0.00|3.12| +24|2023-10-06T20:22:11.8840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1111|121921|169704|10000|10000|||99.06|90.53|-0.02|3.06|10FF0004|Buhojaqe Zijaqe|0|70232|80739|9600|10000|||99.81|96.94|0.00|3.13| +24|2023-10-06T20:22:11.8840000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D6C|69091|127791|9400|10000|||99.96|92.72|0.00|2.94|10FF0004|Buhojaqe Zijaqe|0|70232|80739|9600|10000|||99.81|96.94|0.00|3.13| +24|2023-10-06T20:22:11.8840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D00|70232|80739|9600|10000|||99.81|96.94|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|70232|80739|9600|10000|||99.81|96.94|0.00|3.13| +24|2023-10-06T20:22:11.8840000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|153E|70285|90055|10000|10000|||100.02|97.55|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|70232|80739|9600|10000|||99.81|96.94|0.00|3.13| +24|2023-10-06T20:22:11.8840000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D78|55090|80739|9015|10000|||99.53|97.92|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|70232|80739|9600|10000|||99.81|96.94|0.00|3.13| +24|2023-10-06T20:22:11.8840000-07:00|10FF0002|Suchichi Suchi|HoT|798|15A1|67850|90128|10000|10000|||100.14|99.90|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|70232|80739|9600|10000|||99.81|96.94|0.00|3.13| +24|2023-10-06T20:22:11.8840000-07:00|10FF0003|Gegehi Gehi|HoT|798|15D6|63137|73085|8300|10000|||99.72|99.93|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|70232|80739|9600|10000|||99.81|96.94|0.00|3.13| +24|2023-10-06T20:22:11.8840000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D42|58145|79111|9200|10000|||100.18|101.21|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|70232|80739|9600|10000|||99.81|96.94|0.00|3.13| +24|2023-10-06T20:22:11.8840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2405|70232|80739|9600|10000|||99.81|96.94|0.00|3.13|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:11.8840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126290|169704|10000|10000|0||99.06|90.53|-0.02|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:11.8840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|169704|80739| +38|2023-10-06T20:22:11.8840000-07:00|10FF0002|Suchichi Suchi|005A5A16|73387|90128|10000|10000|7||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:11.8840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:11.8840000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|61539|79111|9200|10000|8||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:11.8840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:11.8840000-07:00|10FF0006|Wowobora Gogobora|005A5A28|58538|80739|9015|10000|0||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:11.8840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:11.8840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|85687|127791|9400|10000|0||99.96|92.72|0.00|2.94|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:11.8840000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:11.8840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:11.8840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71411|80739|9600|10000|0||99.81|96.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:11.8840000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:11.8840000-07:00|10FF0003|Gegehi Gehi|005A5A23|68727|73085|8300|10000|9||99.72|99.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:11.8840000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:22:11.8840000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63446|90055|10000|10000|0||100.02|97.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:11.8840000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:22:11.8840000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:22:11.9280000-07:00|10FF0006|Wowobora Gogobora|0001A5D6|47643|80739|9015|10000|0||99.53|97.92|0.00|3.12|2804|0|0|01|01000000|0|0|| +38|2023-10-06T20:22:11.9280000-07:00|10FF0006|Wowobora Gogobora|005A5A28|47643|80739|9015|10000|0||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:11.9280000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:22:11.7130000-07:00|Change|10FF0008||| +37|2023-10-06T20:22:11.9720000-07:00|10FF0002|Suchichi Suchi|0001A5D6|60019|90128|10000|10000|0||100.14|99.90|0.00|-3.13|1605|0|0|01|0|0|0|| +24|2023-10-06T20:22:11.9720000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1B70|63446|90055|10000|10000|||100.02|97.55|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|71411|80739|9600|10000|||99.81|96.94|0.00|3.13| +21|2023-10-06T20:22:11.9720000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35931322|40478540|10000|10000|||100.00|80.10|0.00|0.00|73387|90128|10000|10000|||100.14|99.90|0.00|-3.13|0001A5E0|0|1| +38|2023-10-06T20:22:11.9730000-07:00|10FF0002|Suchichi Suchi|005A5A16|60019|90128|10000|10000|0||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:11.9730000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:11.9730000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70470|90055|10000|10000|0||100.02|97.55|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:12.0180000-07:00|10FF0003|Gegehi Gehi|0001A5D6|57754|73085|8300|10000|0||99.72|99.93|-0.02|3.13|2306|0|0|01|01000000|0|0|| +37|2023-10-06T20:22:12.0180000-07:00|40022550|Zeromus|0001A5D5|35922398||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:12.0180000-07:00|40022550|Zeromus|0001A5DA|35918144||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:12.0180000-07:00|10FF0005|Wuwuchu Wuchu|0001A5DA|70470|90055|10000|10000|0||100.02|97.55|0.00|-3.13|2700|0|0|01|09000A1D|0|C2700000|| +24|2023-10-06T20:22:12.0180000-07:00|10FF0006|Wowobora Gogobora|HoT|0|22C9|47643|80739|9015|10000|||99.53|97.92|0.00|3.12|10FF0005|Wuwuchu Wuchu|0|63446|90055|10000|10000|||100.02|97.55|0.00|-3.13| +38|2023-10-06T20:22:12.0180000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56548|80739|9015|10000|0||99.53|97.92|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:12.0180000-07:00|10FF0003|Gegehi Gehi|005A5A23|57754|73085|8300|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:12.0180000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:22:12.0620000-07:00|40022550|Zeromus|0001A5D7|35908327||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:12.0620000-07:00|10FF0008|Kokosaze Lulusaze|0001A5D6|51121|79111|9200|10000|0||100.18|101.21|0.00|-3.13|1B07|0|0|01|02000000|0|0|| +38|2023-10-06T20:22:12.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51121|79111|9200|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:12.0620000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:22:12.1060000-07:00|40022550|Zeromus|0001A5D9|35903649||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:12.1060000-07:00|40022550|Zeromus|0001A5DC|35903625||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:12.1510000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35908327|40478540|10000|10000|||100.00|80.10|0.00|0.00|56548|80739|9015|10000|||99.53|97.92|0.00|3.12|0001A5E1|0|1| +37|2023-10-06T20:22:12.1960000-07:00|40022550|Zeromus|0001A5D8|35895549||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:12.1960000-07:00|10FF0001|Sesuga Sapisuga|0001A5D8|85687|127791|10000|10000|0||100.00|92.54|0.00|2.93|1300|0|0|0| +261|2023-10-06T20:22:11.8340000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:22:12.2410000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|21D6|85687|127791|9400|10000|||100.00|92.54|0.00|2.93|10FF0006|Wowobora Gogobora|1|56548|80739|9015|10000|||99.53|97.92|0.00|3.12| +37|2023-10-06T20:22:12.2410000-07:00|40022550|Zeromus|0001A5DB|35881596||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:12.2410000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|722003|2A940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35908327|40478540|10000|10000|||100.00|80.10|0.00|0.00|57754|73085|8300|10000|||99.72|99.93|-0.02|3.13|0001A5E2|0|1| +38|2023-10-06T20:22:12.2410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|94349|127791|10000|10000|0||100.00|92.54|0.00|2.93|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:12.2850000-07:00|40022550|Zeromus|0001A5DF|35863694||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:12.2850000-07:00|10FF0005|Wuwuchu Wuchu|0001A5DF|70470|90055|10000|10000|0||99.96|97.59|0.00|3.13|2700|0|0|01|09000A1D|0|42700000|| +38|2023-10-06T20:22:12.2850000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70470|90055|10000|10000|0||99.96|97.59|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:12.3290000-07:00|40022550|Zeromus|0001A5DD|35859109||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:12.0670000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T20:22:12.4180000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|14B70000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|56548|80739|9015|10000|||99.53|97.92|0.00|3.12|77430|77430|10000|10000|||99.35|94.65|0.00|1.89|0001A5E3|0|1| +37|2023-10-06T20:22:12.5070000-07:00|40022550|Zeromus|0001A5E0|35856209||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:12.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|385F|126290|169704|10000|10000|||98.51|90.03|0.00|-3.13|10FF0007|Kehabiqo Febiqo|0|126290|169704|10000|10000|||98.51|90.03|0.00|-3.13| +24|2023-10-06T20:22:12.5520000-07:00|40022550|Zeromus|DoT|A92|62D|35859109|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|51121|79111|9200|10000|||100.18|101.21|0.00|-3.13| +24|2023-10-06T20:22:12.5520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|218D|51121|79111|9200|10000|||100.18|101.21|0.00|-3.13|10FF0005|Wuwuchu Wuchu|0|70470|90055|10000|10000|||99.79|97.71|0.00|3.06| +38|2023-10-06T20:22:12.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|140721|169704|10000|10000|0||98.51|90.03|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:12.5520000-07:00|40022550|Zeromus|005A5A00|35854628|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:22:12.5520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|59710|79111|9200|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:12.2650000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:22:12.5960000-07:00|40022550|Zeromus|0001A5DE|35841788||||||100.00|80.10|0.00|0.00| +34|2023-10-06T20:22:12.5960000-07:00|4002269A|Carbuncle|4002269A|Carbuncle|01| +261|2023-10-06T20:22:12.2650000-07:00|Change|4002269A||| +21|2023-10-06T20:22:12.6410000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|16430000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|35854628|40478540|10000|10000|||100.00|80.10|0.00|0.00|140721|169704|10000|10000|||98.47|89.93|-0.01|-3.13|0001A5E4|0|1| +37|2023-10-06T20:22:12.6850000-07:00|40022550|Zeromus|0001A5E1|35841728||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:12.6850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|140721|141420|10000|10000|0||98.47|89.92|0.00|2.99|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:12.6850000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|169704|169704| +37|2023-10-06T20:22:12.8190000-07:00|40022550|Zeromus|0001A5E2|35830828||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:12.8640000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|352003|3BDC0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|35830828|40478540|10000|10000|||100.00|80.10|0.00|0.00|59710|79111|9200|10000|||100.18|101.21|0.00|-3.13|0001A5E5|0|1| +20|2023-10-06T20:22:13.0860000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.53|97.92|0.00|3.12| +261|2023-10-06T20:22:12.7550000-07:00|Change|10FF0008||| +39|2023-10-06T20:22:13.1310000-07:00|10FF0002|Suchichi Suchi|60920|90128|10000|10000|||100.14|99.90|0.00|-3.13| +37|2023-10-06T20:22:13.1770000-07:00|40022550|Zeromus|0001A5E4|35825129||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:13.1770000-07:00|10FF0003|Gegehi Gehi|58484|73085|8500|10000|||99.72|99.93|-0.02|3.13| +24|2023-10-06T20:22:13.1770000-07:00|40022550|Zeromus|DoT|0|2E64|35830828|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|59710|79111|8900|10000|||100.18|101.21|0.00|-3.13| +20|2023-10-06T20:22:13.1770000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|99.72|99.93|-0.02|3.13| +38|2023-10-06T20:22:13.1770000-07:00|40022550|Zeromus|005A5A00|35813253|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:22:12.7550000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T20:22:13.2200000-07:00|10FF0006|Wowobora Gogobora|0001A5E3|61851||||||99.53|97.92|0.00|3.12| +39|2023-10-06T20:22:13.2200000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|0.05| +21|2023-10-06T20:22:13.2660000-07:00|10FF0007|Kehabiqo Febiqo|2C|Vengeance|10FF0007|Kehabiqo Febiqo|6400E20E|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|140721|141420|10000|10000|||98.47|89.92|0.00|2.99|140721|141420|10000|10000|||98.47|89.92|0.00|2.99|0001A5E6|0|1| +20|2023-10-06T20:22:13.2660000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.81|96.81|0.00|-3.09| +36|2023-10-06T20:22:13.3100000-07:00|12FC|3| +39|2023-10-06T20:22:13.3540000-07:00|10FF0001|Sesuga Sapisuga|95626|127791|10000|10000|||100.90|91.99|0.00|2.92| +39|2023-10-06T20:22:13.3540000-07:00|10FF0004|Buhojaqe Zijaqe|72218|80739|9800|10000|||99.81|96.79|0.00|-3.08| +21|2023-10-06T20:22:13.3540000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|21F70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|140721|141420|10000|10000|||98.47|89.92|0.00|2.99|35813253|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A5E7|0|1| +261|2023-10-06T20:22:12.9940000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T20:22:13.4440000-07:00|10FF0005|Wuwuchu Wuchu|71370|90055|10000|10000|||99.75|97.83|0.00|2.99| +38|2023-10-06T20:22:13.4440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|71370|90055|10000|10000|0||99.75|97.83|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:13.4440000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:22:13.4440000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70470|90055|10000|10000|||99.75|97.83|0.00|2.99|70470|90055|10000|10000|||99.75|97.83|0.00|2.99|0001A5E8|0|1| +37|2023-10-06T20:22:13.4890000-07:00|40022550|Zeromus|0001A5E5|35797929||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:13.4890000-07:00|10FF0006|Wowobora Gogobora|62658|80739|9220|10000|||99.53|97.92|0.00|3.12| +21|2023-10-06T20:22:13.4890000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35813253|40478540|10000|10000|||100.00|80.10|0.00|0.00|59710|79111|8900|10000|||100.18|101.21|0.00|-3.13|0001A5E9|0|1| +21|2023-10-06T20:22:13.5330000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35813253|40478540|10000|10000|||100.00|80.10|0.00|0.00|95626|127791|10000|10000|||101.42|91.69|0.00|2.78|0001A5EA|0|1| +31|2023-10-06T20:22:13.5330000-07:00|10FF0001||||| +261|2023-10-06T20:22:13.2120000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T20:22:13.3090000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:22:13.8910000-07:00|10FF0007|Kehabiqo Febiqo|0001A5E6|140721|141420|10000|10000|0||97.89|89.29|0.00|3.13|1500|0|0|01|04000059|64|41700000|| +26|2023-10-06T20:22:13.8910000-07:00|59|Vengeance|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|141420|141420| +21|2023-10-06T20:22:13.9350000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|232A0000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|35797929|40478540|10000|10000|||100.00|80.10|0.00|0.00|60920|90128|10000|10000|||100.14|99.90|0.00|-3.13|0001A5EB|0|1| +21|2023-10-06T20:22:13.9350000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|28B70000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|35797929|40478540|10000|10000|||100.00|80.10|0.00|0.00|95626|127791|10000|10000|||103.87|91.14|0.00|2.68|0001A5EC|0|1| +38|2023-10-06T20:22:13.9350000-07:00|10FF0002|Suchichi Suchi|005A5A16|60920|90128|10000|10000|0||100.14|99.90|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:13.9350000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:13.9350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|95626|127791|10000|10000|0||103.87|91.14|0.00|2.68|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:13.9350000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:13.9350000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:22:13.9350000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:22:13.5950000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:13.6850000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T20:22:14.0240000-07:00|40022550|Zeromus|0001A5E9|35797787||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:14.0240000-07:00|10FF0007|Kehabiqo Febiqo|141420|141420|10000|10000|||96.83|88.26|0.00|-3.14| +39|2023-10-06T20:22:14.0240000-07:00|10FF0008|Kokosaze Lulusaze|60501|79111|9100|10000|||100.18|101.21|0.00|-3.13| +21|2023-10-06T20:22:14.0240000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35980000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|35797929|40478540|10000|10000|||100.00|80.10|0.00|0.00|62658|80739|9220|10000|||99.53|97.92|0.00|3.12|0001A5ED|0|1| +37|2023-10-06T20:22:14.0680000-07:00|40022550|Zeromus|0001A5EA|35796082||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:14.0680000-07:00|10FF0001|Sesuga Sapisuga|0001A5EA|95626|127791|10000|10000|0||105.06|90.74|0.00|2.68|1300|0|0|02|0300076E|03|C1F00000|||||| +261|2023-10-06T20:22:13.7950000-07:00|Change|10FF0008||| +37|2023-10-06T20:22:14.1570000-07:00|10FF0007|Kehabiqo Febiqo|0001A5E7|132725||||||96.26|87.70|0.00|-3.13| +21|2023-10-06T20:22:14.2000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32620000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35796082|40478540|10000|10000|||100.00|80.10|0.00|0.00|72218|80739|9800|10000|||99.81|96.79|0.00|3.13|0001A5EE|0|1| +21|2023-10-06T20:22:14.2890000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|714003|4C530000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|35796082|40478540|10000|10000|||100.00|80.10|0.00|0.00|71370|90055|10000|10000|||99.75|97.83|0.00|2.99|0001A5EF|0|1| +38|2023-10-06T20:22:14.2890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|71370|90055|10000|10000|0||99.75|97.83|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.2890000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:22:14.3790000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|356003|48B90000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|35796082|40478540|10000|10000|||100.00|80.10|0.00|0.00|60501|79111|9100|10000|||100.18|101.21|0.00|-3.13|0001A5F0|0|1| +37|2023-10-06T20:22:14.5130000-07:00|40022550|Zeromus|0001A5EC|35785659||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:14.5130000-07:00|10FF0001|Sesuga Sapisuga|0001A5EC|95626|127791|10000|10000|0||107.42|89.64|0.00|2.94|1300|0|0|02|0300076E|03|41F00000|||||| +38|2023-10-06T20:22:14.5130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|95626|127791|10000|10000|0||107.42|89.64|0.00|2.94|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:14.6030000-07:00|10FF0005|Wuwuchu Wuchu|0001A5E8|71370|90055|10000|10000|0||99.75|97.83|0.00|3.13|2700|0|0|01|04000A1F|0|C1F00000|| +24|2023-10-06T20:22:14.6030000-07:00|40022666|Ruby Carbuncle|HoT|0|497|77430|77430|10000|10000|||99.35|94.65|0.00|2.48|10FF0005|Wuwuchu Wuchu|0|71370|90055|10000|10000|||99.75|97.83|0.00|3.13| +21|2023-10-06T20:22:14.6030000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|30620000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|35796082|40478540|10000|10000|||100.00|80.10|0.00|0.00|58484|73085|8500|10000|||99.72|99.93|-0.02|3.13|0001A5F1|0|1| +38|2023-10-06T20:22:14.6030000-07:00|10FF0003|Gegehi Gehi|005A5A23|58484|73085|8300|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.6030000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:22:14.6030000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:22:14.6030000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||99.35|94.65|0.00|2.48|0|0|0|||||||||| +261|2023-10-06T20:22:14.2480000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:22:14.2480000-07:00|Change|10FF0006||||||||||||||||||||| +24|2023-10-06T20:22:14.6470000-07:00|10FF0002|Suchichi Suchi|HoT|0|29E3|60920|90128|10000|10000|||99.71|99.54|0.00|-3.09|10FF0005|Wuwuchu Wuchu|0|71370|90055|10000|10000|||99.75|97.83|0.00|3.13| +38|2023-10-06T20:22:14.6470000-07:00|10FF0002|Suchichi Suchi|005A5A16|71643|90128|10000|10000|0||99.71|99.54|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:14.6910000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15F3|95626|127791|10000|10000|||107.96|89.26|0.00|3.00|10FF0006|Wowobora Gogobora|0|62658|80739|8820|10000|||99.53|97.90|0.00|3.09| +37|2023-10-06T20:22:14.6910000-07:00|40022550|Zeromus|0001A5ED|35771939||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:14.6910000-07:00|10FF0003|Gegehi Gehi|HoT|0|2320|58484|73085|8300|10000|||99.72|99.93|-0.02|3.13|10FF0005|Wuwuchu Wuchu|0|71370|90055|10000|10000|||99.75|97.83|0.00|3.13| +21|2023-10-06T20:22:14.6910000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CCB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35771939|40478540|10000|10000|||100.00|80.10|0.00|0.00|71370|90055|10000|10000|||99.75|97.83|0.00|3.13|0001A5F2|0|1| +38|2023-10-06T20:22:14.6910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101245|127791|10000|10000|0||108.47|88.87|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:14.6910000-07:00|10FF0003|Gegehi Gehi|005A5A23|67476|73085|8300|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:14.3430000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T20:22:14.7800000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|EB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35771939|40478540|10000|10000|||100.00|80.10|0.00|0.00|71643|90128|10000|10000|||99.60|99.44|0.00|-3.08|0001A5F3|0|1| +37|2023-10-06T20:22:14.8240000-07:00|40022550|Zeromus|0001A5EF|35752400||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:14.8240000-07:00|10FF0005|Wuwuchu Wuchu|0001A5EF|71370|90055|10000|10000|0||99.75|97.83|0.00|3.13|2700|0|0|01|04000A1F|0|41F00000|| +38|2023-10-06T20:22:14.8240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|71370|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:14.8680000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3B2C|101245|127791|10000|10000|||109.02|88.45|0.00|3.03|10FF0006|Wowobora Gogobora|0|62658|80739|8820|10000|||99.48|96.77|0.00|3.12| +261|2023-10-06T20:22:14.4380000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:22:14.8700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|ED5|132725|141420|10000|10000|||95.14|86.41|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75| +24|2023-10-06T20:22:14.8700000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1544|62658|80739|8820|10000|||99.48|96.77|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75| +24|2023-10-06T20:22:14.8700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|14CB|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75|10FF0004|Buhojaqe Zijaqe|0|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75| +24|2023-10-06T20:22:14.8700000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D75|71370|90055|10000|10000|||99.75|97.83|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75| +24|2023-10-06T20:22:14.8700000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|14FA|101245|127791|10000|10000|||109.02|88.45|0.00|3.03|10FF0004|Buhojaqe Zijaqe|0|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75| +24|2023-10-06T20:22:14.8700000-07:00|10FF0002|Suchichi Suchi|HoT|798|CE9|71643|90128|10000|10000|||99.57|99.41|0.00|-3.08|10FF0004|Buhojaqe Zijaqe|0|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75| +24|2023-10-06T20:22:14.8700000-07:00|10FF0003|Gegehi Gehi|HoT|798|D53|67476|73085|8300|10000|||99.72|99.93|-0.02|3.13|10FF0004|Buhojaqe Zijaqe|0|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75| +24|2023-10-06T20:22:14.8700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CE2|60501|79111|8800|10000|||100.18|101.21|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75| +24|2023-10-06T20:22:14.8700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1BBF|72218|80739|9400|10000|||99.81|96.79|0.00|-2.75|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:14.8700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|136522|141420|10000|10000|0||95.14|86.41|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|141420|80739| +38|2023-10-06T20:22:14.8700000-07:00|10FF0002|Suchichi Suchi|005A5A16|74948|90128|10000|10000|0||99.57|99.41|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:14.8700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|63799|79111|8800|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:14.8700000-07:00|10FF0006|Wowobora Gogobora|005A5A28|68102|80739|8820|10000|0||99.48|96.77|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.8700000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:22:14.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:14.8700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121763|127791|10000|10000|0||109.02|88.45|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.8700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:14.8700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9400|10000|0||99.81|96.79|0.00|-2.75|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.8700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:14.8700000-07:00|10FF0003|Gegehi Gehi|005A5A23|70887|73085|8300|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.8700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:22:14.8700000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74815|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:14.8700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:22:14.9580000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1A9D|74815|90055|10000|10000|||99.75|97.83|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9400|10000|||99.81|96.80|0.00|-2.08| +38|2023-10-06T20:22:14.9580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121763|127791|10000|10000|0||109.45|88.09|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:14.9580000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:22:14.9580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|81628|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:15.0030000-07:00|40022550|Zeromus|0001A5F0|35733783||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:15.0030000-07:00|40022550|Zeromus|0001A5EE|35720885||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:15.0030000-07:00|10FF0006|Wowobora Gogobora|HoT|0|23A4|68102|80739|8820|10000|||99.45|96.07|0.00|-3.14|10FF0005|Wuwuchu Wuchu|0|74815|90055|10000|10000|||99.75|97.83|0.00|3.13| +38|2023-10-06T20:22:15.0030000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77226|80739|8820|10000|0||99.45|96.07|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:15.1370000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32714003|2AAC0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|35720885|40478540|10000|10000|||100.00|80.10|0.00|0.00|136522|141420|10000|10000|||95.14|86.41|0.00|-3.14|0001A5F4|0|1| +261|2023-10-06T20:22:14.7710000-07:00|Change|10FF0008||| +21|2023-10-06T20:22:15.1810000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AE10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35720885|40478540|10000|10000|||100.00|80.10|0.00|0.00|136522|141420|10000|10000|||95.14|86.41|0.00|2.49|0001A5F5|0|1| +37|2023-10-06T20:22:15.2260000-07:00|40022550|Zeromus|0001A5F2|35717610||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:15.2260000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35720885|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9400|10000|||99.78|96.89|0.00|-0.84|0001A5F6|0|1| +37|2023-10-06T20:22:15.3150000-07:00|40022550|Zeromus|0001A5F3|35713845||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:15.3150000-07:00|10FF0002|Suchichi Suchi|0001A5F3|74948|90128|10000|10000|0||99.57|99.41|0.00|-3.08|1600|0|0|01|04000AA0|0|C1F00000|| +04|2023-10-06T20:22:14.8870000-07:00|4002268E|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|75851|0|10000|||101.96|102.97|0.00|-3.13| +261|2023-10-06T20:22:14.8870000-07:00|Remove|4002268E| +38|2023-10-06T20:22:15.3590000-07:00|40022550|Zeromus|005A5A00|35713845|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:22:15.3590000-07:00|4AB|Feint|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:22:15.4020000-07:00|40022550|Zeromus|0001A5F1|35701459||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:15.4920000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.95|93.07|0.00|2.98| +24|2023-10-06T20:22:15.5360000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|4E7D|136522|141420|10000|10000|||95.14|86.41|0.00|2.49|10FF0007|Kehabiqo Febiqo|0|136522|141420|10000|10000|||95.14|86.41|0.00|2.49| +24|2023-10-06T20:22:15.5360000-07:00|40022550|Zeromus|DoT|A92|4EE|35701459|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|63799|79111|8800|10000|||100.18|101.21|0.00|-3.13| +24|2023-10-06T20:22:15.5360000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1B4E|63799|79111|8800|10000|||100.18|101.21|0.00|-3.13|10FF0005|Wuwuchu Wuchu|0|81628|90055|10000|10000|||99.75|97.83|0.00|3.13| +38|2023-10-06T20:22:15.5360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|141420|141420|10000|10000|0||95.14|86.41|0.00|2.49|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:15.5360000-07:00|40022550|Zeromus|005A5A00|35700197|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:22:15.5360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70789|79111|8800|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:15.5810000-07:00|40022550|Zeromus|0001A5EB|35691195||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:15.5810000-07:00|10FF0002|Suchichi Suchi|0001A5EB|74948|90128|10000|10000|0||99.57|99.41|0.00|-3.08|1600|0|0|01|04000AA0|0|41F00000|| +21|2023-10-06T20:22:15.5810000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|3FA30000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|35701459|40478540|10000|10000|||100.00|80.10|0.00|0.00|70887|73085|8300|10000|||99.72|99.93|-0.02|3.13|0001A5F7|0|1| +38|2023-10-06T20:22:15.5810000-07:00|10FF0002|Suchichi Suchi|005A5A16|74948|90128|10000|10000|0||99.57|99.41|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:15.5810000-07:00|10FF0003|Gegehi Gehi|005A5A23|70887|73085|8000|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:15.5810000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:22:15.2080000-07:00|Change|10FF0003||| +261|2023-10-06T20:22:15.2080000-07:00|Change|10FF0006||||||||||||||||||||| +20|2023-10-06T20:22:15.6710000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.78|97.17|0.00|-0.23| +37|2023-10-06T20:22:15.7160000-07:00|40022550|Zeromus|0001A5F5|35688410||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:15.7160000-07:00|40022550|Zeromus|005A5A00|35688410|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:22:15.7160000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +261|2023-10-06T20:22:15.3880000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:22:15.7600000-07:00|40022550|Zeromus|0001A5F4|35677486||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:15.7600000-07:00|40022550|Zeromus|0001A5F6|35677341||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:15.8050000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|81B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35677341|40478540|10000|10000|||100.00|80.10|0.00|0.00|121763|127791|10000|10000|||111.25|84.98|0.00|-2.99|0001A5F8|0|1| +21|2023-10-06T20:22:15.8050000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|46420000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|35677341|40478540|10000|10000|||100.00|80.10|0.00|0.00|81628|90055|10000|10000|||99.75|97.83|0.00|3.13|0001A5F9|0|1| +38|2023-10-06T20:22:15.8050000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|81628|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:15.8050000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:22:15.8050000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +31|2023-10-06T20:22:15.8050000-07:00|10FF0001||||| +38|2023-10-06T20:22:15.8500000-07:00|40022550|Zeromus|005A5A00|35677341|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:22:15.8500000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +21|2023-10-06T20:22:15.8940000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|356003|476B0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|35677341|40478540|10000|10000|||100.00|80.10|0.00|0.00|70789|79111|8800|10000|||100.18|101.21|0.00|-3.13|0001A5FA|0|1| +39|2023-10-06T20:22:16.1610000-07:00|10FF0002|Suchichi Suchi|75849|90128|10000|10000|||99.57|99.41|0.00|-3.08| +261|2023-10-06T20:22:15.8040000-07:00|Change|10FF0008||| +39|2023-10-06T20:22:16.2060000-07:00|10FF0003|Gegehi Gehi|71617|73085|8200|10000|||99.72|99.93|-0.02|3.13| +24|2023-10-06T20:22:16.2060000-07:00|40022550|Zeromus|DoT|0|19A9|35677341|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|70789|79111|8500|10000|||100.18|101.21|0.00|-3.13| +38|2023-10-06T20:22:16.2060000-07:00|40022550|Zeromus|005A5A00|35670772|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:22:16.2490000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|219C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|70789|79111|8500|10000|||100.18|101.21|0.00|-3.13|77430|77430|10000|10000|||99.35|94.65|0.00|1.81|0001A5FB|0|1| +39|2023-10-06T20:22:16.2490000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|1.81| +37|2023-10-06T20:22:16.3390000-07:00|40022550|Zeromus|0001A5F8|35668697||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:16.3390000-07:00|40022550|Zeromus|0001A5F7|35652406||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:22:16.3390000-07:00|13D8|3| +39|2023-10-06T20:22:16.3830000-07:00|10FF0001|Sesuga Sapisuga|123040|127791|10000|10000|||111.25|84.98|0.00|-1.98| +39|2023-10-06T20:22:16.3830000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9600|10000|||99.78|97.25|0.00|3.13| +21|2023-10-06T20:22:16.3830000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|18E30000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|141420|141420|10000|10000|||95.14|86.41|0.00|2.49|35670772|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A5FC|0|1| +37|2023-10-06T20:22:16.4290000-07:00|40022550|Zeromus|0001A5F9|35634420||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:16.4290000-07:00|10FF0005|Wuwuchu Wuchu|0001A5F9|81628|90055|10000|10000|0||99.75|97.83|0.00|3.13|2700|0|0|01|04000A1E|0|41F00000|| +21|2023-10-06T20:22:16.4290000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|28BA0000|171D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|35670772|40478540|10000|10000|||100.00|80.10|0.00|0.00|75849|90128|10000|10000|||99.57|99.41|0.00|-3.08|0001A5FD|0|1| +21|2023-10-06T20:22:16.4290000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35490000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|35670772|40478540|10000|10000|||100.00|80.10|0.00|0.00|77226|80739|8820|10000|||100.08|92.55|0.00|-3.13|0001A5FE|0|1| +21|2023-10-06T20:22:16.4290000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|284D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35670772|40478540|10000|10000|||100.00|80.10|0.00|0.00|121763|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A5FF|0|1| +38|2023-10-06T20:22:16.4290000-07:00|10FF0002|Suchichi Suchi|005A5A16|75849|90128|10000|10000|0||99.57|99.41|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:16.4290000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:16.4290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123040|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:16.4290000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:16.4290000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +38|2023-10-06T20:22:16.4290000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|81628|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:22:16.4730000-07:00|10FF0005|Wuwuchu Wuchu|82528|90055|10000|10000|||99.75|97.83|0.00|3.13| +37|2023-10-06T20:22:16.5180000-07:00|40022550|Zeromus|0001A5FA|35616137||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:16.5180000-07:00|10FF0006|Wowobora Gogobora|78033|80739|8625|10000|||100.08|92.55|0.00|-3.13| +21|2023-10-06T20:22:16.5180000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35634420|40478540|10000|10000|||100.00|80.10|0.00|0.00|71617|73085|8200|10000|||99.72|99.93|-0.02|3.13|0001A600|0|1| +21|2023-10-06T20:22:16.6070000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|502E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35616137|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9600|10000|||99.78|97.25|0.00|3.13|0001A601|0|1| +261|2023-10-06T20:22:16.2400000-07:00|Change|10FF0003||| +261|2023-10-06T20:22:16.2400000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:22:16.6520000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35616137|40478540|10000|10000|||100.00|80.10|0.00|0.00|70789|79111|8500|10000|||100.18|101.21|0.00|-3.13|0001A602|0|1| +38|2023-10-06T20:22:16.6960000-07:00|40022550|Zeromus|005A5A00|35616137|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T20:22:16.6960000-07:00|4B3|Addle|0.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|79111| +261|2023-10-06T20:22:16.3370000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:22:16.8750000-07:00|40022550|Zeromus|0001A5FD|35605711|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:22:16.8750000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:22:16.8750000-07:00|10FF0002|Suchichi Suchi|0001A5FD|75849|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|0323|0|41F00000|| +38|2023-10-06T20:22:16.8750000-07:00|10FF0002|Suchichi Suchi|005A5A16|75849|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:16.9200000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35605711|40478540|10000|10000|||100.00|80.10|0.00|0.00|78033|80739|8625|10000|||100.08|92.54|-0.02|3.13|0001A603|0|1| +37|2023-10-06T20:22:17.0520000-07:00|10FF0008|Kokosaze Lulusaze|0001A5FB|79111||||||100.18|101.21|0.00|-3.13| +37|2023-10-06T20:22:17.0520000-07:00|40022550|Zeromus|0001A600|35605687||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:17.0520000-07:00|10FF0007|Kehabiqo Febiqo|141420|141420|10000|10000|||95.14|86.41|0.00|2.49| +39|2023-10-06T20:22:17.0520000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8700|10000|||100.18|101.21|0.00|-3.13| +24|2023-10-06T20:22:17.0980000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2210|123040|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0006|Wowobora Gogobora|1|78033|80739|8625|10000|||100.08|92.53|0.00|2.92| +37|2023-10-06T20:22:17.0980000-07:00|40022550|Zeromus|0001A5FE|35592046||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:17.0980000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|123040|127791|10000|10000|||111.25|84.98|0.00|-1.98|123040|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A604|0|1| +38|2023-10-06T20:22:17.0980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:17.1860000-07:00|10FF0007|Kehabiqo Febiqo|0001A5FC|135049||||||95.14|86.41|0.00|2.49| +37|2023-10-06T20:22:17.1860000-07:00|40022550|Zeromus|0001A602|35591816||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:16.8540000-07:00|Change|10FF0008||| +21|2023-10-06T20:22:17.3200000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|49B70000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|35591816|40478540|10000|10000|||100.00|80.10|0.00|0.00|82528|90055|10000|10000|||99.75|97.83|0.00|3.13|0001A605|0|1| +38|2023-10-06T20:22:17.3200000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82528|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:17.3200000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:22:17.3200000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +20|2023-10-06T20:22:17.3640000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|1.486|100.18|101.21|0.00|-3.13| +37|2023-10-06T20:22:17.4080000-07:00|40022550|Zeromus|0001A601|35571290||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:17.4540000-07:00|40022550|Zeromus|0001A603|35571229||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:17.5430000-07:00|4002269A|Carbuncle|75851|75851|10000|10000|||100.17|99.48|0.00|0.01| +24|2023-10-06T20:22:17.5870000-07:00|40022666|Ruby Carbuncle|HoT|0|4BE|77430|77430|10000|10000|||99.35|94.65|0.00|0.22|10FF0005|Wuwuchu Wuchu|0|82528|90055|10000|10000|||99.75|97.83|0.00|3.13| +21|2023-10-06T20:22:17.5880000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F714003|3A2E0000|143E|340000|4|19E08000|11B|2A8000|0|0|0|0|0|0|0|0|35571229|40478540|10000|10000|||100.00|80.10|0.00|0.00|135049|141420|10000|10000|||95.14|86.41|0.00|2.49|0001A606|0|1| +21|2023-10-06T20:22:17.5880000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BB90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35571229|40478540|10000|10000|||100.00|80.10|0.00|0.00|75849|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A607|0|1| +38|2023-10-06T20:22:17.5880000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||99.35|94.65|0.00|0.22|0|0|0|||||||||| +37|2023-10-06T20:22:17.6320000-07:00|10FF0001|Sesuga Sapisuga|0001A604|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|1300|0|0|01|0900004A|0|41700000|| +26|2023-10-06T20:22:17.6320000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +24|2023-10-06T20:22:17.6320000-07:00|10FF0002|Suchichi Suchi|HoT|0|2160|75849|90128|10000|10000|||99.57|99.41|0.00|3.12|10FF0005|Wuwuchu Wuchu|0|82528|90055|10000|10000|||99.75|97.83|0.00|3.13| +38|2023-10-06T20:22:17.6320000-07:00|10FF0002|Suchichi Suchi|005A5A16|84393|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:17.6770000-07:00|10FF0003|Gegehi Gehi|HoT|0|1BA9|71617|73085|8200|10000|||99.72|99.93|-0.02|3.13|10FF0005|Wuwuchu Wuchu|0|82528|90055|10000|10000|||99.75|97.83|0.00|3.13| +38|2023-10-06T20:22:17.6770000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8200|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:17.7210000-07:00|40022550|Zeromus|0001A5FF|35560912||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:17.8540000-07:00|40022550|Zeromus|0001A605|35542041||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:17.8540000-07:00|10FF0005|Wuwuchu Wuchu|0001A605|82528|90055|10000|10000|0||99.75|97.83|0.00|3.13|2700|0|0|01|04000A1F|0|41F00000|| +24|2023-10-06T20:22:17.8540000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1B80|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0006|Wowobora Gogobora|0|78033|80739|8625|10000|||101.59|89.48|0.00|2.69| +24|2023-10-06T20:22:17.8540000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CFC|78033|80739|8625|10000|||101.59|89.48|0.00|2.69|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51| +24|2023-10-06T20:22:17.8540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1757|135049|141420|10000|10000|||95.14|86.41|0.00|2.49|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51| +24|2023-10-06T20:22:17.8540000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D31|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51| +24|2023-10-06T20:22:17.8540000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|CEB|82528|90055|10000|10000|||99.75|97.83|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51| +24|2023-10-06T20:22:17.8540000-07:00|10FF0002|Suchichi Suchi|HoT|798|15D8|84393|90128|10000|10000|||99.57|99.41|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51| +24|2023-10-06T20:22:17.8540000-07:00|10FF0003|Gegehi Gehi|HoT|798|D3C|73085|73085|8200|10000|||99.72|99.93|-0.02|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51| +24|2023-10-06T20:22:17.8540000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D2B|79111|79111|8700|10000|||100.18|101.21|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51| +24|2023-10-06T20:22:17.8540000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|14FA|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51| +24|2023-10-06T20:22:17.8540000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|21F2|80739|80739|9200|10000|||99.78|97.48|0.00|-0.51|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|0.39| +38|2023-10-06T20:22:17.8540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|141024|141420|10000|10000|0||95.14|86.41|0.00|2.49|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:17.8540000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|141420|80739| +38|2023-10-06T20:22:17.8540000-07:00|10FF0002|Suchichi Suchi|005A5A16|89985|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:17.8540000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:17.8540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8700|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:17.8540000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:17.8540000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8625|10000|0||101.59|89.48|0.00|2.69|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:17.8540000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:22:17.8540000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:17.8540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:17.8540000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:17.8540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9200|10000|0||99.78|97.48|0.00|-0.51|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:17.8540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:17.8540000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8200|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:17.8540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:22:17.8540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|85835|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:17.8540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:22:17.8980000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D5B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35542041|40478540|10000|10000|||100.00|80.10|0.00|0.00|85835|90055|10000|10000|||99.75|97.83|0.00|3.13|0001A608|0|1| +24|2023-10-06T20:22:17.9430000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1B4A|85835|90055|10000|10000|||99.75|97.83|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9200|10000|||99.78|97.56|-0.01|-0.34| +20|2023-10-06T20:22:17.9430000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.75|89.12|0.00|2.71| +38|2023-10-06T20:22:17.9430000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:17.5240000-07:00|Change|10FF0006||||||||||||||||||||| +24|2023-10-06T20:22:17.9880000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1AF6|80739|80739|8625|10000|||101.84|88.92|-0.02|2.79|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||99.75|97.83|0.00|3.13| +38|2023-10-06T20:22:17.9880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8625|10000|0||101.84|88.92|-0.02|2.79|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:18.0770000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35542041|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A609|0|1| +20|2023-10-06T20:22:18.0770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.78|97.65|-0.01|-0.12| +21|2023-10-06T20:22:18.0770000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|1F280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35542041|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.75|97.83|0.00|3.13|0001A60A|0|1| +31|2023-10-06T20:22:18.0770000-07:00|10FF0001||||| +37|2023-10-06T20:22:18.1210000-07:00|40022550|Zeromus|0001A607|35539040||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:17.7130000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:22:17.8340000-07:00|Change|10FF0008||||||||||||| +38|2023-10-06T20:22:18.2100000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8625|10000|0||101.99|88.58|0.00|-2.90|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.2100000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:22:18.2100000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:22:18.3430000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|750003|2F930000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|35539040|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8700|10000|||100.18|101.21|0.00|-3.13|0001A60B|0|1| +21|2023-10-06T20:22:18.3430000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|8200|10000|||99.72|99.93|-0.02|3.13|73085|73085|8200|10000|||99.72|99.93|-0.02|3.13|0001A60C|0|1| +38|2023-10-06T20:22:18.3430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9200|10000|0||99.78|97.67|0.00|-1.77|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.3430000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:22:18.3430000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:18.3430000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8200|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:18.3430000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:22:18.4320000-07:00|40022550|Zeromus|0001A608|35535621||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:18.4770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||95.14|86.41|0.00|2.49|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.4770000-07:00|A96|Protraction|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|141420|80739| +38|2023-10-06T20:22:18.4770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.4770000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:22:18.4770000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:22:18.5210000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|518E|128564|128564|10000|10000|||95.11|86.38|0.00|2.60|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||95.11|86.38|0.00|2.60| +24|2023-10-06T20:22:18.5210000-07:00|40022550|Zeromus|DoT|A92|5AB|35535621|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|8400|10000|||100.18|101.21|0.00|-3.13| +24|2023-10-06T20:22:18.5210000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1AD1|79111|79111|8400|10000|||100.18|101.21|0.00|-3.13|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||99.75|97.83|0.00|3.13| +38|2023-10-06T20:22:18.5210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||95.11|86.38|0.00|2.60|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:18.5210000-07:00|40022550|Zeromus|005A5A00|35534170|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T20:22:18.5210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:18.5210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9200|10000|0||99.78|97.67|0.00|-2.48|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.5210000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:22:18.5650000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|11740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35535621|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||95.11|86.38|0.00|2.60|0001A60D|0|1| +37|2023-10-06T20:22:18.6090000-07:00|40022550|Zeromus|0001A609|35532382||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:18.6090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:18.6090000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:18.6090000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:18.6090000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:22:18.2400000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T20:22:18.7420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||95.05|86.38|0.00|2.85|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.7420000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:22:18.7420000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:22:18.7870000-07:00|40022550|Zeromus|0001A60A|35524406||||||100.00|80.10|0.00|0.00| +27|2023-10-06T20:22:18.7870000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +27|2023-10-06T20:22:18.7870000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +00|2023-10-06T20:22:18.0000000-07:00|0044|Zeromus|In endless Dark embrace your end.| +21|2023-10-06T20:22:18.8320000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|716003|93E20000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|35532382|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.75|97.83|0.00|3.13|0001A60E|0|1| +38|2023-10-06T20:22:18.8320000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.8320000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:22:18.8320000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +20|2023-10-06T20:22:18.8770000-07:00|40022550|Zeromus|8B83|Dark Matter|40022550|Zeromus|3.700|100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:18.8770000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36360000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|35524406|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8625|10000|||102.04|88.49|0.00|-2.90|0001A60F|0|1| +38|2023-10-06T20:22:18.8770000-07:00|10FF0002|Suchichi Suchi|005A5A16|89985|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.8770000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:22:18.8770000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +261|2023-10-06T20:22:18.4240000-07:00|Change|40022550||||||||||| +21|2023-10-06T20:22:18.9210000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|2A000000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|35524406|40478540|10000|10000|||100.00|80.10|0.00|0.00|89985|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A610|0|1| +21|2023-10-06T20:22:18.9210000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|716003|544D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35524406|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A611|0|1| +38|2023-10-06T20:22:18.9210000-07:00|10FF0002|Suchichi Suchi|005A5A16|89985|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:18.9210000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:22:18.9210000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:18.9210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:18.9210000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:22:18.5260000-07:00|Remove|4002268C| +261|2023-10-06T20:22:18.5260000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:22:19.0100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31AA0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35524406|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9200|10000|||99.78|97.67|0.00|3.13|0001A612|0|1| +38|2023-10-06T20:22:19.0100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8200|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.0100000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:22:19.0100000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +21|2023-10-06T20:22:19.0540000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|552003|59BE0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|35524406|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8200|10000|||99.72|99.93|-0.02|3.13|0001A613|0|1| +38|2023-10-06T20:22:19.0540000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7900|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.0540000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:22:19.0540000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:22:18.6480000-07:00|Change|10FF0003||| +261|2023-10-06T20:22:18.6480000-07:00|Change|10FF0003||| +261|2023-10-06T20:22:18.6480000-07:00|Change|10FF0003||| +37|2023-10-06T20:22:19.0990000-07:00|40022550|Zeromus|0001A606|35509512||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:19.0990000-07:00|40022550|Zeromus|0001A60D|35505044||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:19.0990000-07:00|10FF0003|Gegehi Gehi|0001A60C|73085|73085|7900|10000|0||99.72|99.93|-0.02|3.13|2300|0|0|01|030004D2|0|C1F00000|| +37|2023-10-06T20:22:19.1440000-07:00|40022550|Zeromus|0001A60B|35492865||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:19.1440000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +38|2023-10-06T20:22:19.1440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.1440000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:22:19.1440000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:22:18.7630000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T20:22:19.1880000-07:00|10FF0003|Gegehi Gehi|73085|73085|8100|10000|||99.72|99.93|-0.02|3.13| +24|2023-10-06T20:22:19.1880000-07:00|40022550|Zeromus|DoT|0|1FC4|35492865|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +38|2023-10-06T20:22:19.1880000-07:00|40022550|Zeromus|005A5A00|35484733|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T20:22:19.2320000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +261|2023-10-06T20:22:18.7630000-07:00|Change|10FF0008||||||||||||||| +36|2023-10-06T20:22:19.3210000-07:00|14B4|3| +38|2023-10-06T20:22:19.3210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.75|84.28|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +38|2023-10-06T20:22:19.3210000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +38|2023-10-06T20:22:19.3210000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||99.35|94.65|0.00|3.10|0|0|0|||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|77430|90055| +38|2023-10-06T20:22:19.3210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:22:19.3210000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8225|10000|0||102.04|88.49|0.00|-2.90|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +38|2023-10-06T20:22:19.3210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +38|2023-10-06T20:22:19.3210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8800|10000|0||99.78|97.67|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +38|2023-10-06T20:22:19.3210000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8100|10000|0||99.72|99.93|-0.02|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +38|2023-10-06T20:22:19.3210000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:19.3210000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:22:19.3640000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98| +39|2023-10-06T20:22:19.3640000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9000|10000|||99.78|97.67|0.00|3.13| +37|2023-10-06T20:22:19.4540000-07:00|40022550|Zeromus|0001A60E|35446875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:19.4540000-07:00|10FF0005|Wuwuchu Wuchu|0001A60E|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|2700|0|0|01|04000A1E|0|41F00000|| +39|2023-10-06T20:22:19.4540000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.75|97.83|0.00|3.13| +38|2023-10-06T20:22:19.4540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:22:19.4980000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8430|10000|||102.04|88.49|-0.02|-2.91| +24|2023-10-06T20:22:19.5420000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15C6|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0006|Wowobora Gogobora|0|80739|80739|8225|10000|||102.04|88.49|-0.02|-2.91| +37|2023-10-06T20:22:19.5420000-07:00|40022550|Zeromus|0001A60F|35432997||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:19.5420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:19.1940000-07:00|Change|10FF0003||| +37|2023-10-06T20:22:19.5860000-07:00|40022550|Zeromus|0001A610|35422245||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:19.5860000-07:00|10FF0002|Suchichi Suchi|0001A610|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|02000322|0|41F00000|| +38|2023-10-06T20:22:19.5860000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:19.2920000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:22:19.8090000-07:00|40022550|Zeromus|0001A612|35409531||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:19.8090000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|1F0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35422245|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.75|97.83|0.00|3.13|0001A614|0|1| +37|2023-10-06T20:22:19.8540000-07:00|40022550|Zeromus|0001A613|35386557||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:19.8540000-07:00|10FF0003|Gegehi Gehi|0001A613|73085|73085|8100|10000|0||99.72|99.93|-0.02|3.13|2300|0|0|01|030004D2|0|41F00000|| +21|2023-10-06T20:22:19.8540000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|750003|43E80000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|35409531|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8400|10000|||100.18|101.21|0.00|-3.13|0001A615|0|1| +38|2023-10-06T20:22:19.8540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8000|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:22:19.8540000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:22:19.8540000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8100|10000|0||99.72|99.93|-0.02|3.13|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:22:19.9860000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35386557|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8100|10000|||99.72|99.93|-0.02|3.13|0001A616|0|1| +261|2023-10-06T20:22:19.5690000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:22:20.0310000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.27|84.06|0.00|2.99| +39|2023-10-06T20:22:20.0310000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8200|10000|||100.18|101.21|0.00|-3.13| +21|2023-10-06T20:22:20.0310000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|17130000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|35386557|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.27|84.06|0.00|2.99|0001A617|0|1| +261|2023-10-06T20:22:19.7820000-07:00|Change|10FF0008||| +37|2023-10-06T20:22:20.2080000-07:00|40022550|Zeromus|0001A611|35364976||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:20.3430000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8430|10000|0||102.01|84.91|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:20.3430000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:22:20.3430000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:22:20.3430000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8430|10000|||102.01|84.91|0.00|3.09|80739|80739|8430|10000|||102.01|84.91|0.00|3.09|0001A618|0|1| +21|2023-10-06T20:22:20.3430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|AC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35386557|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A619|0|1| +21|2023-10-06T20:22:20.3430000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35386557|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9000|10000|||99.78|97.67|0.00|3.13|0001A61A|0|1| +31|2023-10-06T20:22:20.3430000-07:00|10FF0001||||| +21|2023-10-06T20:22:20.3870000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35386557|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A61B|0|1| +21|2023-10-06T20:22:20.4780000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|35364976|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9000|10000|||99.78|97.67|0.00|3.13|0001A61C|0|1| +37|2023-10-06T20:22:20.5210000-07:00|40022550|Zeromus|0001A616|35364950||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:20.5210000-07:00|40022550|Zeromus|0001A614|35357003||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:20.5220000-07:00|10FF0008|Kokosaze Lulusaze|1D8A|Lucid Dreaming|10FF0008|Kokosaze Lulusaze|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8200|10000|||100.18|101.21|0.00|-3.13|79111|79111|8200|10000|||100.18|101.21|0.00|-3.13|0001A61D|0|1| +20|2023-10-06T20:22:20.5220000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|99.75|97.83|0.00|3.13| +37|2023-10-06T20:22:20.5670000-07:00|40022550|Zeromus|0001A617|35351096||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:20.5670000-07:00|4002269A|Carbuncle|75851|75851|10000|10000|||100.17|99.48|0.00|0.01| +261|2023-10-06T20:22:20.1320000-07:00|Change|10FF0005||||||||||||||||||| +37|2023-10-06T20:22:20.6550000-07:00|40022550|Zeromus|0001A615|35333712||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:20.6550000-07:00|10FF0002|Suchichi Suchi|HoT|0|9E2|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:20.6550000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:20.7000000-07:00|10FF0003|Gegehi Gehi|HoT|0|990|73085|73085|8100|10000|||99.72|99.93|-0.02|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|8600|10000|||99.78|97.67|0.00|3.13| +21|2023-10-06T20:22:20.7000000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35333712|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8430|10000|||102.08|84.59|0.00|-2.78|0001A61E|0|1| +38|2023-10-06T20:22:20.7000000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8100|10000|0||99.72|99.93|-0.02|3.13|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:22:20.2320000-07:00|Change|10FF0004||| +38|2023-10-06T20:22:20.7880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:20.7880000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:22:20.8330000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35333712|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8200|10000|||100.18|101.21|0.00|-3.13|0001A61F|0|1| +37|2023-10-06T20:22:20.8780000-07:00|40022550|Zeromus|0001A619|35330960||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:20.8780000-07:00|40022550|Zeromus|0001A61A|35330806||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:20.8780000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|93E|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98| +24|2023-10-06T20:22:20.8780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|FE9|80739|80739|8600|10000|||99.78|97.67|0.00|3.13|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:20.8780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:20.8780000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:20.8780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8600|10000|0||99.78|97.67|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:20.9220000-07:00|40022550|Zeromus|0001A61B|35327912||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:20.9660000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|97E|90055|90055|10000|10000|||99.75|97.83|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|8600|10000|||99.78|97.67|0.00|3.13| +38|2023-10-06T20:22:20.9660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:21.0110000-07:00|10FF0006|Wowobora Gogobora|HoT|0|FA5|80739|80739|8430|10000|||101.83|84.50|0.00|-1.95|10FF0004|Buhojaqe Zijaqe|0|80739|80739|8600|10000|||99.78|97.67|0.00|3.13| +38|2023-10-06T20:22:21.0110000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8430|10000|0||101.83|84.50|0.00|-1.95|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:21.1000000-07:00|40022550|Zeromus|0001A61C|35327912|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:22:21.1000000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:22:21.1450000-07:00|10FF0008|Kokosaze Lulusaze|0001A61D|79111|79111|8200|10000|0||100.18|101.21|0.00|-3.13|1B00|0|0|01|020004B4|0|41A80000|| +26|2023-10-06T20:22:21.1450000-07:00|4B4|Lucid Dreaming|21.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:22:21.2340000-07:00|40022550|Zeromus|0001A61E|35327855||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:21.2350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:21.2350000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +21|2023-10-06T20:22:21.2800000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|754003|BE730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35327855|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.75|97.83|0.00|3.13|0001A620|0|1| +38|2023-10-06T20:22:21.2800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:21.2800000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:22:21.2800000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:22:20.8660000-07:00|Change|10FF0005||||||||||||| +37|2023-10-06T20:22:21.3690000-07:00|40022550|Zeromus|0001A61F|35327709||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:21.3690000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|35327855|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8430|10000|||101.59|84.47|0.00|-1.52|0001A621|0|1| +38|2023-10-06T20:22:21.3690000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8030|10000|0||101.59|84.47|0.00|-1.52|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:21.3690000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:21.3690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8600|10000|0||99.78|97.67|-0.02|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:21.3690000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +261|2023-10-06T20:22:20.9790000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:22:21.4140000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A722003|5AE70000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|35327855|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A622|0|1| +21|2023-10-06T20:22:21.4140000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|27CA0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35327855|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A623|0|1| +38|2023-10-06T20:22:21.4140000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:21.4140000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:22:21.4140000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:21.4140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:21.4140000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +20|2023-10-06T20:22:21.4580000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|99.72|99.93|-0.02|3.13| +261|2023-10-06T20:22:20.9790000-07:00|Change|10FF0003||||||||||||| +38|2023-10-06T20:22:21.5020000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:21.5020000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +24|2023-10-06T20:22:21.5470000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2C93|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04| +24|2023-10-06T20:22:21.5470000-07:00|40022550|Zeromus|DoT|A92|4D0|35327709|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|8200|10000|||100.18|101.21|0.00|-3.13| +24|2023-10-06T20:22:21.5470000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|992|79111|79111|8200|10000|||100.18|101.21|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|8600|10000|||99.78|97.68|0.00|2.45| +38|2023-10-06T20:22:21.5470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:21.5470000-07:00|40022550|Zeromus|005A5A00|35326477|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T20:22:21.5470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8750|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:22:21.1890000-07:00|Change|10FF0008||| +38|2023-10-06T20:22:21.6360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:21.6360000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:22:21.7680000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:21.7680000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +37|2023-10-06T20:22:21.9020000-07:00|40022550|Zeromus|0001A620|35277722||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:21.9020000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|143E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35326477|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.75|97.83|0.00|3.11|0001A624|0|1| +38|2023-10-06T20:22:21.9020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8100|10000|0||99.72|99.93|-0.02|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:22:21.9020000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +21|2023-10-06T20:22:21.9470000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AB80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35326477|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A625|0|1| +37|2023-10-06T20:22:22.0370000-07:00|40022550|Zeromus|0001A622|35254451||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:22.0370000-07:00|10FF0002|Suchichi Suchi|0001A622|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|0747|0|41F00000|| +38|2023-10-06T20:22:22.0370000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:22.0370000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8030|10000|0||101.52|84.46|0.00|-2.80|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:22.0370000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +24|2023-10-06T20:22:22.1260000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|22EA|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0006|Wowobora Gogobora|1|80739|80739|8030|10000|||101.52|84.46|0.00|-2.80| +37|2023-10-06T20:22:22.1260000-07:00|40022550|Zeromus|0001A621|35254451|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:22:22.1260000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +39|2023-10-06T20:22:22.1260000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +21|2023-10-06T20:22:22.1260000-07:00|10FF0006|Wowobora Gogobora|5EEF|Taurochole|10FF0001|Sesuga Sapisuga|4|575C0000|F60E|A3B0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|80739|80739|8030|10000|||101.52|84.46|0.00|-2.80|0001A626|0|1| +38|2023-10-06T20:22:22.1260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:22.1700000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A627|0|1| +38|2023-10-06T20:22:22.1700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8750|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:22:22.1700000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +39|2023-10-06T20:22:22.2140000-07:00|10FF0003|Gegehi Gehi|73085|73085|8300|10000|||99.72|99.93|-0.02|3.13| +24|2023-10-06T20:22:22.2140000-07:00|40022550|Zeromus|DoT|0|1F26|35254451|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +38|2023-10-06T20:22:22.2140000-07:00|40022550|Zeromus|005A5A00|35246477|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T20:22:22.2580000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +21|2023-10-06T20:22:22.3030000-07:00|10FF0008|Kokosaze Lulusaze|64E7|Summon Phoenix|40022550|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|35254451|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8750|10000|||100.18|101.21|0.00|-3.13|0001A628|0|1| +261|2023-10-06T20:22:21.9110000-07:00|Change|4002269A||| +261|2023-10-06T20:22:21.9110000-07:00|Change|10FF0003||||| +38|2023-10-06T20:22:22.3480000-07:00|400226AB||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +39|2023-10-06T20:22:22.3480000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||111.25|84.98|0.00|-1.62| +39|2023-10-06T20:22:22.3480000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8800|10000|||99.90|97.83|0.00|0.70| +36|2023-10-06T20:22:22.3480000-07:00|1590|3| +38|2023-10-06T20:22:22.3480000-07:00|400226AB||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:22:22.4380000-07:00|40022550|Zeromus|0001A624|35241295||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:22.4380000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.75|97.83|0.00|2.98| +261|2023-10-06T20:22:22.0250000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:22:22.4830000-07:00|40022550|Zeromus|0001A625|35238551||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:22.4830000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|20A10000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|35246477|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A629|0|1| +21|2023-10-06T20:22:22.4830000-07:00|10FF0001|Sesuga Sapisuga|1CD6|Intervention|10FF0007|Kehabiqo Febiqo|EC0E|4960000|F60E|A730000|138D0E|A740000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|127791|127791|10000|10000|||111.25|84.98|0.00|-1.62|0001A62A|0|1| +31|2023-10-06T20:22:22.4830000-07:00|10FF0001||||| +39|2023-10-06T20:22:22.5260000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8235|10000|||101.52|84.46|0.00|2.57| +03|2023-10-06T20:22:22.1410000-07:00|400226AB|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13| +261|2023-10-06T20:22:22.1410000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:22:22.1410000-07:00|Add|400226AB||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:22.6150000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|66D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35238551|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||111.25|84.98|0.00|-1.62|0001A62B|0|1| +31|2023-10-06T20:22:22.6150000-07:00|10FF0001||||| +261|2023-10-06T20:22:22.1410000-07:00|Change|400226AB||| +37|2023-10-06T20:22:22.7040000-07:00|40022550|Zeromus|0001A623|35228365||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:22.7930000-07:00|10FF0002|Suchichi Suchi|0001A627|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|02000748|0|41A00000|| +26|2023-10-06T20:22:22.7930000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:22:22.7930000-07:00|10FF0001|Sesuga Sapisuga|0001A626|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.62|1300|0|0|01|03000A3B|0|41700000|| +26|2023-10-06T20:22:22.7930000-07:00|A3B|Taurochole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:22:22.7930000-07:00|10FF0006|Wowobora Gogobora|0001A626|80739|80739|8935|10000|0||101.52|84.46|0.00|1.68|2800|0|0|0| +21|2023-10-06T20:22:22.7930000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|724003|4C5C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35228365|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A62C|0|1| +21|2023-10-06T20:22:22.8370000-07:00|40022550|Zeromus|8B83|Dark Matter|40022550|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35228365|40478540|10000|10000|||100.00|80.10|0.00|0.00|35228365|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A62D|0|1| +38|2023-10-06T20:22:22.8370000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8800|10000|0||99.90|97.83|0.00|0.70|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:22.8370000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:22.8370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8300|10000|0||99.72|99.93|-0.02|3.13|0|0|0||||||||||||| +30|2023-10-06T20:22:22.8370000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:22:22.8370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.75|97.83|0.00|2.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:22.8370000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:22:22.4210000-07:00|Change|40022550||||| +20|2023-10-06T20:22:22.8820000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.52|84.46|0.00|1.52| +20|2023-10-06T20:22:22.8820000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.90|97.83|0.00|0.70| +21|2023-10-06T20:22:22.8820000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|2D800000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|35228365|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8300|10000|||99.72|99.93|-0.02|3.13|0001A62E|0|1| +38|2023-10-06T20:22:22.8820000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8100|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||| +26|2023-10-06T20:22:22.8820000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:22:22.8820000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:22:22.8820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:22.8820000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:22:22.4210000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T20:22:22.8820000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:22.8820000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:22.8830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8750|10000|0||100.18|101.21|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T20:22:22.8830000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:22:22.8830000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8935|10000|0||101.52|84.46|0.00|1.52|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:22.8830000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:22:22.8830000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:22.8830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:22.8830000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:22.8830000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +39|2023-10-06T20:22:23.0160000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.27|84.06|0.00|2.04| +39|2023-10-06T20:22:23.0160000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8950|10000|||100.18|101.21|0.00|-3.13| +21|2023-10-06T20:22:23.0160000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40712003|6A8D0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|35228365|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.75|97.83|0.00|2.98|0001A62F|0|1| +261|2023-10-06T20:22:22.5130000-07:00|Change|10FF0008||| +21|2023-10-06T20:22:23.0600000-07:00|10FF0008|Kokosaze Lulusaze|64E6|Rekindle|10FF0007|Kehabiqo Febiqo|4|25860000|4B16A40E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|79111|79111|8950|10000|||100.18|101.21|0.00|-3.13|0001A630|0|1| +37|2023-10-06T20:22:23.1050000-07:00|40022550|Zeromus|0001A629|35220012||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:23.1490000-07:00|40022550|Zeromus|0001A62B|35218367||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:22.7400000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:22:23.1940000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35218367|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A631|0|1| +37|2023-10-06T20:22:23.2820000-07:00|10FF0007|Kehabiqo Febiqo|0001A62A|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|1500|0|0|03|06000496|0|41000000|||||||||| +26|2023-10-06T20:22:23.2820000-07:00|496|Intervention|8.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +26|2023-10-06T20:22:23.2820000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +26|2023-10-06T20:22:23.2820000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +261|2023-10-06T20:22:22.8590000-07:00|Change|10FF0006||||||||||||||||||||||| +22|2023-10-06T20:22:23.3270000-07:00|400226AB|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8950|10000|||100.18|101.21|0.00|-2.96|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13|0001A632|0|5| +22|2023-10-06T20:22:23.3270000-07:00|400226AB|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|8100|10000|||99.72|99.93|-0.02|3.13|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13|0001A632|1|5| +22|2023-10-06T20:22:23.3270000-07:00|400226AB|Demi-Phoenix|4085|Everlasting Flight|10FF0002|Suchichi Suchi|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13|0001A632|2|5| +22|2023-10-06T20:22:23.3270000-07:00|400226AB|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8800|10000|||99.90|97.83|0.00|2.50|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13|0001A632|3|5| +22|2023-10-06T20:22:23.3270000-07:00|400226AB|Demi-Phoenix|4085|Everlasting Flight|10FF0005|Wuwuchu Wuchu|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.75|97.83|0.00|3.13|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13|0001A632|4|5| +261|2023-10-06T20:22:22.8590000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:22:22.9790000-07:00|Change|400226AB||| +261|2023-10-06T20:22:22.9790000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:22:23.5490000-07:00|40022550|Zeromus|0001A62F|35191090||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:23.1840000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:22:23.1840000-07:00|Change|4002256D||||||||| +21|2023-10-06T20:22:23.6390000-07:00|4002256D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750003|65A00000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||111.25|84.98|0.00|-1.62|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A633|0|1| +21|2023-10-06T20:22:23.6390000-07:00|4002256E|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|55B30000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A634|0|1| +24|2023-10-06T20:22:23.6390000-07:00|10FF0002|Suchichi Suchi|HoT|0|FA8|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:23.6390000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:23.6840000-07:00|40022550|Zeromus|0001A62E|35179442||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:23.6840000-07:00|10FF0003|Gegehi Gehi|HoT|0|933|73085|73085|8100|10000|||99.72|99.93|-0.02|3.13|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:23.6840000-07:00|400226AB|Demi-Phoenix|005A5A00|72376|75851|10000|10000|0||101.96|102.97|0.00|-3.13|0|0|0||||||| +26|2023-10-06T20:22:23.6840000-07:00|30|Well Fed|2315.38|10FF0008|Kokosaze Lulusaze|400226AB|Demi-Phoenix|2964|75851|79111| +26|2023-10-06T20:22:23.6840000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|400226AB|Demi-Phoenix|01|75851|40478540| +21|2023-10-06T20:22:23.6840000-07:00|10FF0008|Kokosaze Lulusaze|4084|Enkindle Phoenix|40022550|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|35191090|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8950|10000|||100.18|101.21|0.00|-2.71|0001A635|0|1| +38|2023-10-06T20:22:23.6840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8100|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||| +37|2023-10-06T20:22:23.7280000-07:00|40022550|Zeromus|0001A631|35176390||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:23.8170000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36430000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|35179442|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8935|10000|||101.52|84.46|0.00|-2.80|0001A636|0|1| +21|2023-10-06T20:22:23.8170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32490000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35179442|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8800|10000|||99.90|97.83|0.00|3.14|0001A637|0|1| +24|2023-10-06T20:22:23.8620000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9DC|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98| +24|2023-10-06T20:22:23.8620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9AB|80739|80739|8400|10000|||99.90|97.83|0.00|3.14|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:23.8620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:23.8620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8400|10000|0||99.90|97.83|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:23.9070000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|2BC20000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|35176390|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A638|0|1| +21|2023-10-06T20:22:23.9070000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|712003|217C0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|35176390|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A639|0|1| +21|2023-10-06T20:22:23.9070000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|354003|40710000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|35176390|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8100|10000|||99.72|99.93|-0.02|3.13|0001A63A|0|1| +38|2023-10-06T20:22:23.9070000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:23.9070000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:23.9070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7800|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||| +30|2023-10-06T20:22:23.9070000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +24|2023-10-06T20:22:23.9520000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|925|90055|90055|10000|10000|||99.96|97.67|0.00|3.10|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||99.96|97.67|0.00|3.10| +21|2023-10-06T20:22:23.9520000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0001|Sesuga Sapisuga|6400F60E|7420000|F60E|A770000|D0E|A780000|90A3000F|7418000|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A63B|0|1| +38|2023-10-06T20:22:23.9520000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.96|97.67|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:23.9970000-07:00|40022550|Zeromus|0001A62C|35156842||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:23.9970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9EE|80739|80739|8535|10000|||101.52|84.46|0.00|-2.80|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +21|2023-10-06T20:22:23.9970000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35176390|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8950|10000|||100.18|101.21|0.00|-3.13|0001A63C|0|1| +38|2023-10-06T20:22:23.9970000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8535|10000|0||101.52|84.46|0.00|-2.80|0|0|0||||||||||||||||||| +37|2023-10-06T20:22:24.0850000-07:00|10FF0007|Kehabiqo Febiqo|0001A630|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|1500|0|0|01|09000A90|4B|41F00000|| +26|2023-10-06T20:22:24.0850000-07:00|A90|Rekindle|30.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|4B|128564|79111| +261|2023-10-06T20:22:23.8840000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:22:24.2650000-07:00|10FF0001|Sesuga Sapisuga|0001A633|101775||||||111.25|84.98|0.00|-1.98| +37|2023-10-06T20:22:24.2650000-07:00|10FF0007|Kehabiqo Febiqo|0001A634|106625||||||92.27|84.06|0.00|1.93| +37|2023-10-06T20:22:24.2650000-07:00|10FF0008|Kokosaze Lulusaze|0001A632|79111|79111|8950|10000|0||100.18|101.21|0.00|-3.13|1B00|0|0|01|0500074C|0|41A80000|| +26|2023-10-06T20:22:24.2650000-07:00|74C|Everlasting Flight|21.00|400226AB|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|79111|75851| +38|2023-10-06T20:22:24.2650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106625|128564|10000|10000|0||92.27|84.06|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:24.2650000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +21|2023-10-06T20:22:24.3090000-07:00|400226AB|Demi-Phoenix|4086|Revelation|40022550|Zeromus|150003|AAA30000|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|35156842|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.96|102.97|0.00|-3.13|0001A63D|0|1| +261|2023-10-06T20:22:23.8840000-07:00|Change|10FF0003||| +261|2023-10-06T20:22:23.9970000-07:00|Change|4002269A||| +37|2023-10-06T20:22:24.3990000-07:00|10FF0003|Gegehi Gehi|0001A632|73085|73085|7800|10000|0||99.72|99.93|-0.02|3.13|2301|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T20:22:24.3990000-07:00|74C|Everlasting Flight|21.00|400226AB|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73085|75851| +21|2023-10-06T20:22:24.4430000-07:00|10FF0006|Wowobora Gogobora|5EF1|Haima|10FF0007|Kehabiqo Febiqo|FF00E|A340000|50FF00E|A520000|1B|5EF18000|0|0|0|0|0|0|0|0|0|0|106625|128564|10000|10000|||92.27|84.06|0.00|1.80|80739|80739|8535|10000|||101.52|84.46|0.00|-2.80|0001A63E|0|1| +21|2023-10-06T20:22:24.4430000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35156842|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8400|10000|||99.90|97.83|0.00|3.14|0001A63F|0|1| +261|2023-10-06T20:22:23.9970000-07:00|Change|400226AB||||||||| +261|2023-10-06T20:22:23.9970000-07:00|Change|10FF0004||||||||||||||||| +24|2023-10-06T20:22:24.4870000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15BF|101775|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0006|Wowobora Gogobora|0|80739|80739|8535|10000|||101.52|84.46|0.00|-2.70| +37|2023-10-06T20:22:24.4870000-07:00|40022550|Zeromus|0001A636|35142951||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:24.4870000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35156842|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8535|10000|||101.52|84.46|0.00|-2.70|0001A640|0|1| +38|2023-10-06T20:22:24.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|107342|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:24.5330000-07:00|40022550|Zeromus|0001A638|35131749||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:24.5330000-07:00|40022550|Zeromus|0001A63C|35131597||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:24.5330000-07:00|40022550|Zeromus|0001A639|35123025||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:24.5330000-07:00|10FF0002|Suchichi Suchi|0001A632|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1602|0|0|01|074C|0|41A80000|| +26|2023-10-06T20:22:24.5330000-07:00|74C|Everlasting Flight|21.00|400226AB|Demi-Phoenix|10FF0002|Suchichi Suchi|00|90128|75851| +24|2023-10-06T20:22:24.5330000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|236E|106625|128564|10000|10000|||92.27|84.06|0.00|1.67|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +24|2023-10-06T20:22:24.5330000-07:00|40022550|Zeromus|DoT|A92|5C1|35156842|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|8950|10000|||100.18|101.21|0.00|-3.13| +24|2023-10-06T20:22:24.5330000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1743|79111|79111|8950|10000|||100.18|101.21|0.00|-3.13|400226AB|Demi-Phoenix|0|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +38|2023-10-06T20:22:24.5330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115695|128564|10000|10000|0||92.27|84.06|0.00|1.67|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:24.5330000-07:00|A52|Haimatinon|14.91|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|05|128564|80739| +38|2023-10-06T20:22:24.5330000-07:00|40022550|Zeromus|005A5A00|35121552|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T20:22:24.5330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||| +261|2023-10-06T20:22:24.1170000-07:00|Change|10FF0008||| +37|2023-10-06T20:22:24.5770000-07:00|10FF0001|Sesuga Sapisuga|0001A63B|107342|127791|10000|10000|12||111.25|84.98|0.00|-1.98|1300|0|0|03|06000742|64|41000000|||||||||| +26|2023-10-06T20:22:24.5770000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|127791|128564| +26|2023-10-06T20:22:24.5770000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +26|2023-10-06T20:22:24.5770000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +37|2023-10-06T20:22:24.5770000-07:00|10FF0007|Kehabiqo Febiqo|0001A63B|115695|128564|10000|10000|0||92.27|84.06|0.00|1.67|1500|0|0|01|0B000741|0190|41000000|| +26|2023-10-06T20:22:24.5770000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +38|2023-10-06T20:22:24.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|107342|127791|10000|10000|12||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:24.6210000-07:00|40022550|Zeromus|0001A637|35108679||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:24.6650000-07:00|10FF0004|Buhojaqe Zijaqe|0001A632|80739|80739|8400|10000|0||99.90|97.83|0.00|3.14|1C03|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T20:22:24.6650000-07:00|74C|Everlasting Flight|21.00|400226AB|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|80739|75851| +37|2023-10-06T20:22:24.6650000-07:00|40022550|Zeromus|0001A63A|35092182||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:24.6650000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|3FF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35121552|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7800|10000|||99.72|99.93|-0.02|3.13|0001A641|0|1| +261|2023-10-06T20:22:24.3170000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:22:24.7990000-07:00|10FF0005|Wuwuchu Wuchu|0001A632|90055|90055|10000|10000|0||100.33|97.80|0.00|3.06|2704|0|0|01|0200074C|0|41A80000|| +26|2023-10-06T20:22:24.7990000-07:00|74C|Everlasting Flight|21.00|400226AB|Demi-Phoenix|10FF0005|Wuwuchu Wuchu|00|90055|75851| +21|2023-10-06T20:22:24.7990000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|152003|86E70000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|35092182|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||100.18|101.21|0.00|-3.13|0001A642|0|1| +21|2023-10-06T20:22:24.8880000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|224E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|115695|128564|10000|10000|||92.27|84.06|0.00|1.52|77430|77430|10000|10000|||99.35|94.65|0.00|-3.08|0001A643|0|1| +21|2023-10-06T20:22:24.8880000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35092182|40478540|10000|10000|||100.00|80.10|0.00|0.00|107342|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A644|0|1| +31|2023-10-06T20:22:24.8880000-07:00|10FF0001||||| +261|2023-10-06T20:22:24.6190000-07:00|Change|10FF0008||| +21|2023-10-06T20:22:24.9320000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35092182|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7800|10000|||99.72|99.93|-0.02|3.13|0001A645|0|1| +37|2023-10-06T20:22:24.9760000-07:00|40022550|Zeromus|0001A63F|35091939||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:24.9760000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F712003|4B7B0000|143E|340000|204|253D8000|4|16EA8000|11B|2A8000|0|0|0|0|0|0|35092182|40478540|10000|10000|||100.00|80.10|0.00|0.00|115695|128564|10000|10000|||92.27|84.06|0.00|1.52|0001A646|0|1| +37|2023-10-06T20:22:25.0200000-07:00|40022550|Zeromus|0001A640|35091879||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:25.1090000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1AA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35091879|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.33|97.80|0.00|3.06|0001A647|0|1| +39|2023-10-06T20:22:25.1530000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +37|2023-10-06T20:22:25.1990000-07:00|10FF0007|Kehabiqo Febiqo|0001A63E|115695|128564|10000|10000|7||92.27|84.06|0.00|2.04|1500|0|0|02|0A000A52|05|41700000|||||| +26|2023-10-06T20:22:25.1990000-07:00|A34|Haima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:22:25.1990000-07:00|4002256D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|16AB0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|107342|127791|10000|10000|||111.25|84.98|0.00|-1.98|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A648|0|1| +21|2023-10-06T20:22:25.1990000-07:00|4002256E|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|2E940000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|115695|128564|10000|10000|||92.27|84.06|0.00|2.04|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A649|0|1| +39|2023-10-06T20:22:25.1990000-07:00|10FF0003|Gegehi Gehi|73085|73085|8000|10000|||99.72|99.93|-0.02|3.13| +24|2023-10-06T20:22:25.1990000-07:00|40022550|Zeromus|DoT|0|200C|35091879|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +38|2023-10-06T20:22:25.1990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115695|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:25.1990000-07:00|40022550|Zeromus|005A5A00|35083675|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T20:22:25.2430000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|-2.82| +20|2023-10-06T20:22:25.2880000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.52|84.46|0.00|-1.62| +20|2023-10-06T20:22:25.2880000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.90|97.83|0.00|3.14| +37|2023-10-06T20:22:25.3330000-07:00|40022550|Zeromus|0001A63D|35039992||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:25.3330000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AB60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35083675|40478540|10000|10000|||100.00|80.10|0.00|0.00|115695|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A64A|0|1| +36|2023-10-06T20:22:25.3330000-07:00|166C|3| +38|2023-10-06T20:22:25.3330000-07:00|400226AB|Demi-Phoenix|005A5A00|72376|75851|10000|10000|0||101.95|102.95|0.00|-3.06|0|0|0|||| +30|2023-10-06T20:22:25.3330000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|400226AB|Demi-Phoenix|01|75851|40478540| +39|2023-10-06T20:22:25.3760000-07:00|10FF0001|Sesuga Sapisuga|108619|127791|10000|10000|||111.25|84.98|0.00|-1.98| +39|2023-10-06T20:22:25.3760000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8600|10000|||99.90|97.83|0.00|3.14| +261|2023-10-06T20:22:24.9630000-07:00|Change|10FF0003||| +261|2023-10-06T20:22:25.0770000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:22:25.4210000-07:00|40022550|Zeromus|0001A644|35038230||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:25.4650000-07:00|40022550|Zeromus|0001A645|35038206||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:25.4650000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.33|97.80|0.00|3.06| +39|2023-10-06T20:22:25.5110000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8740|10000|||101.52|84.46|0.00|-2.01| +21|2023-10-06T20:22:25.5110000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|714003|4BA50000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|35039992|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.33|97.80|0.00|3.06|0001A64B|0|1| +37|2023-10-06T20:22:25.6440000-07:00|40022550|Zeromus|0001A647|35031389||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:25.6880000-07:00|10FF0007|Kehabiqo Febiqo|0001A643|124477||||||92.27|84.06|0.00|2.04| +261|2023-10-06T20:22:25.2630000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:22:25.8230000-07:00|10FF0001|Sesuga Sapisuga|0001A648|102816|127791|10000|10000|0||111.25|84.98|0.00|-1.98|1300|0|0|01|08000000|0|0|| +37|2023-10-06T20:22:25.8230000-07:00|10FF0007|Kehabiqo Febiqo|0001A649|112553|128564|10000|10000|7||92.27|84.06|0.00|2.04|1500|0|0|02|0A000A52|04|4166041A|||||| +26|2023-10-06T20:22:25.8230000-07:00|A52|Haimatinon|14.38|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|04|128564|80739| +37|2023-10-06T20:22:25.8230000-07:00|40022550|Zeromus|0001A641|35015018||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:25.8230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112553|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:25.8230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102816|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:25.8230000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:25.8230000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +37|2023-10-06T20:22:25.8670000-07:00|40022550|Zeromus|0001A64A|35012276||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:25.8670000-07:00|40022550|Zeromus|0001A642|34977741||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:26.0020000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|FEE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34977741|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A64C|0|1| +39|2023-10-06T20:22:26.0470000-07:00|10FF0007|Kehabiqo Febiqo|113838|128564|10000|10000|||92.27|84.06|0.00|2.04| +39|2023-10-06T20:22:26.0470000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9400|10000|||100.18|101.21|0.00|-3.13| +261|2023-10-06T20:22:25.5700000-07:00|Change|10FF0008||| +04|2023-10-06T20:22:25.6850000-07:00|4002269A|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||100.17|99.48|0.00|0.01| +261|2023-10-06T20:22:25.6850000-07:00|Remove|4002269A| +21|2023-10-06T20:22:26.2250000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38BB0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|34977741|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8740|10000|||101.52|84.46|0.00|-2.80|0001A64D|0|1| +21|2023-10-06T20:22:26.2250000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4E2C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34977741|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||99.90|97.83|0.00|3.14|0001A64E|0|1| +21|2023-10-06T20:22:26.3600000-07:00|400226AB|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|128B0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34977741|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06|0001A64F|0|1| +20|2023-10-06T20:22:26.3600000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|99.72|99.93|-0.02|3.13| +38|2023-10-06T20:22:26.3600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:22:26.3600000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:22:26.4040000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35722003|455C0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|34977741|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A650|0|1| +21|2023-10-06T20:22:26.4040000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1D540000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|34977741|40478540|10000|10000|||100.00|80.10|0.00|0.00|102816|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A651|0|1| +261|2023-10-06T20:22:25.9160000-07:00|Change|10FF0003||||||||||||| +24|2023-10-06T20:22:26.4930000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|253D|102816|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0007|Kehabiqo Febiqo|0|113838|128564|10000|10000|||92.27|84.06|0.00|2.04| +37|2023-10-06T20:22:26.4930000-07:00|40022550|Zeromus|0001A646|34958418||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:26.4930000-07:00|10FF0007|Kehabiqo Febiqo|0001A646|128564||||||92.27|84.06|0.00|2.04| +38|2023-10-06T20:22:26.4930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|112349|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:26.0290000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:22:26.5370000-07:00|40022550|Zeromus|0001A64C|34954340||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:26.5370000-07:00|40022550|Zeromus|0001A64B|34934975||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:26.1450000-07:00|Remove|40022699| +24|2023-10-06T20:22:26.6260000-07:00|10FF0002|Suchichi Suchi|HoT|0|1190|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:26.6260000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:26.7150000-07:00|10FF0003|Gegehi Gehi|HoT|0|16B9|73085|73085|8000|10000|||99.72|99.93|-0.02|3.13|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:26.7150000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8000|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||| +21|2023-10-06T20:22:26.7590000-07:00|4002256D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|EC750305|3FEA0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|112349|127791|10000|10000|||111.25|84.98|0.00|-1.98|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A652|0|1| +21|2023-10-06T20:22:26.7590000-07:00|4002256E|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|2CC70000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A653|0|1| +261|2023-10-06T20:22:26.3350000-07:00|Change|10FF0006||||||||||||||||| +24|2023-10-06T20:22:26.8490000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9D8|112349|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0001|Sesuga Sapisuga|0|112349|127791|10000|10000|||111.25|84.98|0.00|-1.98| +24|2023-10-06T20:22:26.8490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1161|80739|80739|8200|10000|||99.90|97.83|0.00|3.14|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:26.8490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|114869|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:26.8490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8200|10000|0||99.90|97.83|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:26.8940000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|157D|112349|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0006|Wowobora Gogobora|0|80739|80739|8340|10000|||101.52|84.46|0.00|-2.80| +37|2023-10-06T20:22:26.8940000-07:00|40022550|Zeromus|0001A64D|34920452||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:26.8940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:26.8940000-07:00|4A7|Rampart|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:22:26.8940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|120370|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T20:22:26.9380000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1B9C|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12| +38|2023-10-06T20:22:26.9380000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:27.0270000-07:00|40022550|Zeromus|0001A64E|34900440||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:27.0270000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9B1|80739|80739|8340|10000|||101.52|84.46|0.00|-2.80|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +38|2023-10-06T20:22:27.0270000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8340|10000|0||101.52|84.46|0.00|-2.80|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:27.0270000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:22:27.0720000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A654|0|1| +38|2023-10-06T20:22:27.0720000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:27.0720000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:22:27.1160000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34900440|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||100.18|101.21|0.00|-3.13|0001A655|0|1| +21|2023-10-06T20:22:27.1160000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|120370|127791|10000|10000|||111.25|84.98|0.00|-1.98|120370|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A656|0|1| +37|2023-10-06T20:22:27.1600000-07:00|40022550|Zeromus|0001A651|34892932||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:27.1610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|AEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34892932|40478540|10000|10000|||100.00|80.10|0.00|0.00|120370|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A657|0|1| +21|2023-10-06T20:22:27.1610000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|750003|46860000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|34892932|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12|0001A658|0|1| +38|2023-10-06T20:22:27.1610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:27.1610000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +31|2023-10-06T20:22:27.1610000-07:00|10FF0001||||| +21|2023-10-06T20:22:27.2500000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|56CE0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34892932|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||100.18|101.21|0.00|-3.13|0001A659|0|1| +38|2023-10-06T20:22:27.2500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:27.2500000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +261|2023-10-06T20:22:26.7520000-07:00|Change|10FF0008||| +37|2023-10-06T20:22:27.3830000-07:00|10FF0001|Sesuga Sapisuga|0001A652|104008||||||111.25|84.98|0.00|-1.98| +37|2023-10-06T20:22:27.3840000-07:00|10FF0007|Kehabiqo Febiqo|0001A653|117101|128564|10000|10000|0||92.27|84.06|0.00|2.04|1500|0|0|03|07000A34|0|41700000|||||||||| +26|2023-10-06T20:22:27.3840000-07:00|A34|Haima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:22:27.3840000-07:00|A52|Haimatinon|12.82|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|03|128564|80739| +37|2023-10-06T20:22:27.3840000-07:00|40022550|Zeromus|0001A64F|34888185||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:27.3840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117101|128564|10000|10000|0||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:27.3840000-07:00|A34|Haima|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:22:27.4270000-07:00|40022550|Zeromus|0001A650|34870429||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:27.4270000-07:00|10FF0002|Suchichi Suchi|0001A650|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|03000074|0|C0A00000|| +21|2023-10-06T20:22:27.4270000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|38FD0000|204|253A8000|0|0|0|0|0|0|0|0|0|0|0|0|34892932|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A65A|0|1| +24|2023-10-06T20:22:27.5160000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|32D9|117101|128564|10000|10000|||92.27|84.06|0.00|2.04|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +24|2023-10-06T20:22:27.5160000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|14FE|79111|79111|9100|10000|||100.18|101.21|0.00|-3.13|400226AB|Demi-Phoenix|0|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +38|2023-10-06T20:22:27.5160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:27.5160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9650|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||| +37|2023-10-06T20:22:27.6050000-07:00|10FF0002|Suchichi Suchi|0001A654|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|03000074|0|40A00000|| +38|2023-10-06T20:22:27.6050000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:27.6500000-07:00|40022550|Zeromus|0001A655|34870280||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:27.6500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104008|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:27.6500000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:22:27.6950000-07:00|40022550|Zeromus|0001A657|34867486||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:27.6950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.90|97.83|0.00|3.14| +38|2023-10-06T20:22:27.6950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104008|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:27.6950000-07:00|4A7|Rampart|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:22:27.2960000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:22:27.7390000-07:00|10FF0001|Sesuga Sapisuga|0001A656|104008|127791|10000|10000|0||111.25|84.98|0.00|-1.98|1300|0|0|01|0400004C|0|41A00000|| +26|2023-10-06T20:22:27.7390000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +20|2023-10-06T20:22:27.7390000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.52|84.46|0.00|-2.80| +21|2023-10-06T20:22:27.7840000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|750003|26CD0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|34867486|40478540|10000|10000|||100.00|80.10|0.00|0.00|104008|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A65B|0|1| +21|2023-10-06T20:22:27.7840000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|2C1B0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|34867486|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8000|10000|||99.72|99.93|-0.02|3.13|0001A65C|0|1| +38|2023-10-06T20:22:27.7840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7800|10000|0||99.72|99.93|-0.02|3.13|0|0|0||||||||||||| +26|2023-10-06T20:22:27.7840000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:22:27.7840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104008|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:27.7840000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|127791|127791| +26|2023-10-06T20:22:27.7840000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:22:27.7840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8200|10000|0||99.90|97.83|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T20:22:27.7840000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +261|2023-10-06T20:22:27.2960000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:22:27.3900000-07:00|Change|10FF0006||||||||||||| +38|2023-10-06T20:22:27.9160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:27.9160000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +24|2023-10-06T20:22:28.0500000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|253A|104008|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04| +37|2023-10-06T20:22:28.0500000-07:00|40022550|Zeromus|0001A65A|34852897||||||100.00|80.10|0.00|0.00| +26|2023-10-06T20:22:28.0500000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:22:28.0500000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|56B90000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|34867486|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12|0001A65D|0|1| +38|2023-10-06T20:22:28.0500000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8340|10000|0||101.52|84.46|0.00|-2.80|0|0|0|||||||||| +30|2023-10-06T20:22:28.0500000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +38|2023-10-06T20:22:28.0500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113538|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:28.0500000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:28.0500000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:28.0500000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:22:28.0500000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:22:28.1390000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +39|2023-10-06T20:22:28.1840000-07:00|10FF0003|Gegehi Gehi|73085|73085|8000|10000|||99.72|99.93|-0.02|3.13| +24|2023-10-06T20:22:28.1840000-07:00|40022550|Zeromus|DoT|0|2188|34852897|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +38|2023-10-06T20:22:28.1840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:28.1840000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:22:28.1840000-07:00|40022550|Zeromus|005A5A00|34844313|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T20:22:28.2290000-07:00|40022550|Zeromus|0001A658|34826259||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:28.2290000-07:00|10FF0005|Wuwuchu Wuchu|0001A658|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|2700|0|0|02|04000A1B|01|41F00000|||||| +21|2023-10-06T20:22:28.2290000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|15770000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|113538|127791|10000|10000|||111.25|84.98|0.00|-1.98|77430|77430|10000|10000|||99.35|94.65|0.00|3.02|0001A65E|0|1| +39|2023-10-06T20:22:28.2290000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|3.02| +38|2023-10-06T20:22:28.2290000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|0|0|0||||||||||||||||||| +261|2023-10-06T20:22:27.8100000-07:00|Change|10FF0008||| +37|2023-10-06T20:22:28.3180000-07:00|40022550|Zeromus|0001A659|34804037||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:28.3180000-07:00|400226AB|Demi-Phoenix|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +21|2023-10-06T20:22:28.3180000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34844313|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12|0001A65F|0|1| +36|2023-10-06T20:22:28.3180000-07:00|1748|3| +38|2023-10-06T20:22:28.3180000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8000|10000|0||99.72|99.93|-0.02|3.13|0|0|0||||||||||||| +30|2023-10-06T20:22:28.3180000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +39|2023-10-06T20:22:28.3620000-07:00|10FF0001|Sesuga Sapisuga|114815|127791|10000|10000|||111.25|84.98|0.00|-1.98| +39|2023-10-06T20:22:28.3620000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8400|10000|||99.90|97.83|0.00|3.14| +37|2023-10-06T20:22:28.4070000-07:00|40022550|Zeromus|0001A65B|34794104||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:28.4070000-07:00|10FF0001|Sesuga Sapisuga|0001A65B|114815|127791|10000|10000|0||111.25|84.98|0.00|-1.98|1300|0|0|02|08000558|04|41F00000|||||| +38|2023-10-06T20:22:28.4070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|114815|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:22:28.4510000-07:00|400226AB|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|13070000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34794104|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06|0001A660|0|1| +39|2023-10-06T20:22:28.4510000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12| +38|2023-10-06T20:22:28.4510000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:22:28.4510000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +39|2023-10-06T20:22:28.4960000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8545|10000|||101.52|84.46|0.00|-2.80| +37|2023-10-06T20:22:28.5410000-07:00|40022550|Zeromus|0001A65C|34782813||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:28.5410000-07:00|40022550|Zeromus|0001A65D|34760612||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:28.5410000-07:00|10FF0005|Wuwuchu Wuchu|0001A65D|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|2700|0|0|01|05000A1C|0|42700000|| +38|2023-10-06T20:22:28.5410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|114815|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:28.5410000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +38|2023-10-06T20:22:28.5410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|0|0|0||||||||||||||||||| +38|2023-10-06T20:22:28.5860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9650|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:22:28.5860000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +21|2023-10-06T20:22:28.6300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|330E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34760612|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8400|10000|||99.90|97.83|0.00|3.14|0001A661|0|1| +21|2023-10-06T20:22:28.6760000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38470000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|34760612|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8545|10000|||101.52|84.46|0.00|-2.80|0001A662|0|1| +261|2023-10-06T20:22:28.2470000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T20:22:28.7200000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BCC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34760612|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A663|0|1| +261|2023-10-06T20:22:28.3480000-07:00|Change|10FF0003||| +38|2023-10-06T20:22:28.7650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9650|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:28.7650000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|79111|79111| +21|2023-10-06T20:22:28.7650000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|752003|35900000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|34760612|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9650|10000|||100.18|101.21|0.00|-3.13|0001A664|0|1| +21|2023-10-06T20:22:28.7650000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|356E0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|34760612|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8000|10000|||99.72|99.93|-0.02|3.13|0001A665|0|1| +38|2023-10-06T20:22:28.7650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9650|10000|0||100.18|101.21|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:28.7650000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:22:28.7650000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7700|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||| +26|2023-10-06T20:22:28.7650000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:22:28.7650000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:22:28.8090000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|18EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34760612|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A666|0|1| +261|2023-10-06T20:22:28.3480000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:22:28.8530000-07:00|40022550|Zeromus|0001A65F|34756480||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:28.8540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:28.8540000-07:00|59|Vengeance|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|128564|128564| +21|2023-10-06T20:22:28.8990000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F726003|96670000|104|1C1C8000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|34756480|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A667|0|1| +21|2023-10-06T20:22:28.8990000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|A4A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|34756480|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A668|0|1| +21|2023-10-06T20:22:28.8990000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|710003|58B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34756480|40478540|10000|10000|||100.00|80.10|0.00|0.00|114815|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A669|0|1| +38|2023-10-06T20:22:28.8990000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||| +30|2023-10-06T20:22:28.8990000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:22:28.8990000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:22:29.0310000-07:00|10FF0001|Sesuga Sapisuga|0001A65E|120310||||||111.25|84.98|0.00|-1.98| +39|2023-10-06T20:22:29.0310000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.27|84.06|0.00|2.04| +39|2023-10-06T20:22:29.0310000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9850|10000|||100.18|101.20|-0.02|-3.13| +21|2023-10-06T20:22:29.1660000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A66A|0|1| +38|2023-10-06T20:22:29.1660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:29.1660000-07:00|A75|Surging Tempest|18.35|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:22:29.1660000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|128564|128564| +26|2023-10-06T20:22:29.1660000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:22:29.1660000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:22:29.2550000-07:00|40022550|Zeromus|0001A663|34753460||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:29.2550000-07:00|10FF0007|Kehabiqo Febiqo|0001A663|128564|128564|10000|10000|0||92.27|84.06|0.00|2.04|1500|0|0|03|04000499|03|C1700000|||||||||| +21|2023-10-06T20:22:29.2550000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34756480|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8145|10000|||101.52|84.46|0.00|-2.80|0001A66B|0|1| +261|2023-10-06T20:22:28.8850000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:22:29.3450000-07:00|40022550|Zeromus|0001A666|34747082||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:29.3450000-07:00|10FF0002|Suchichi Suchi|0001A666|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|05000322|0|C1F00000|| +24|2023-10-06T20:22:29.3450000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|151E|120310|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0006|Wowobora Gogobora|0|80739|80739|8145|10000|||101.52|84.46|0.00|-2.80| +37|2023-10-06T20:22:29.3450000-07:00|40022550|Zeromus|0001A662|34732675||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:29.3450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125716|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:29.4340000-07:00|40022550|Zeromus|0001A669|34709962||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:29.4340000-07:00|40022550|Zeromus|0001A661|34696892||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:29.4340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|83C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34753460|40478540|10000|10000|||100.00|80.10|0.00|0.00|120310|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A66C|0|1| +31|2023-10-06T20:22:29.4340000-07:00|10FF0001||||| +37|2023-10-06T20:22:29.4780000-07:00|40022550|Zeromus|0001A660|34692021||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:29.5230000-07:00|40022550|Zeromus|0001A665|34678343||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:29.5230000-07:00|10FF0003|Gegehi Gehi|0001A665|73085|73085|7700|10000|0||99.72|99.93|-0.02|3.13|2300|0|0|01|020004D3|0|41F00000|| +38|2023-10-06T20:22:29.5230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7700|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||| +21|2023-10-06T20:22:29.5670000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|720003|26380000|23E|BD8000|FE3E|9E8000|0|0|0|0|0|0|0|0|0|0|34678343|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A66D|0|1| +21|2023-10-06T20:22:29.5670000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34678343|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8000|10000|||99.90|97.83|0.00|3.14|0001A66E|0|1| +37|2023-10-06T20:22:29.6120000-07:00|40022550|Zeromus|0001A667|34639840||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:29.6120000-07:00|10FF0002|Suchichi Suchi|0001A667|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|05000322|0|41F00000|| +38|2023-10-06T20:22:29.6120000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||| +24|2023-10-06T20:22:29.6580000-07:00|10FF0002|Suchichi Suchi|HoT|0|75A|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +38|2023-10-06T20:22:29.6580000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||| +37|2023-10-06T20:22:29.7020000-07:00|10FF0007|Kehabiqo Febiqo|0001A668|125930|128564|10000|10000|7||92.27|84.06|0.00|2.04|1500|0|0|04|04000499|03|C1700000|||||||||||||| +26|2023-10-06T20:22:29.7020000-07:00|A34|Haima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:22:29.7020000-07:00|A52|Haimatinon|10.50|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|02|128564|80739| +24|2023-10-06T20:22:29.7020000-07:00|10FF0003|Gegehi Gehi|HoT|0|BD2|73085|73085|7700|10000|||99.72|99.93|-0.02|3.13|10FF0003|Gegehi Gehi|0|73085|73085|7700|10000|||99.72|99.93|-0.02|3.13| +21|2023-10-06T20:22:29.7020000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|10E10000|13C00E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|34639840|40478540|10000|10000|||100.00|80.10|0.00|0.00|125716|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A66F|0|1| +38|2023-10-06T20:22:29.7020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125930|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:29.7020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7700|10000|0||99.72|99.93|-0.02|3.13|0|0|0|||||||||| +21|2023-10-06T20:22:29.7470000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|51660000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34639840|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9850|10000|||100.07|98.04|0.00|-3.11|0001A670|0|1| +37|2023-10-06T20:22:29.7910000-07:00|40022550|Zeromus|0001A664|34626128||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:29.7910000-07:00|10FF0008|Kokosaze Lulusaze|0001A664|79111|79111|9550|10000|0||100.07|98.04|0.00|-3.11|1B00|0|0|01|04000A8D|0|42700000|| +37|2023-10-06T20:22:29.7910000-07:00|40022550|Zeromus|0001A66B|34626090||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:29.7910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9550|10000|0||100.07|98.04|0.00|-3.11|0|0|0||||||||||||||||||| +261|2023-10-06T20:22:29.4050000-07:00|Change|10FF0003||| +24|2023-10-06T20:22:29.8810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|736|80739|80739|8000|10000|||99.90|97.83|0.00|3.14|400226AB|Demi-Phoenix|0|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +21|2023-10-06T20:22:29.8810000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|753A0000|204|25018000|0|0|0|0|0|0|0|0|0|0|0|0|34626090|40478540|10000|10000|||100.00|80.10|0.00|0.00|125930|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A671|0|1| +21|2023-10-06T20:22:29.8810000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34626090|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7700|10000|||99.72|99.93|-0.02|3.13|0001A672|0|1| +38|2023-10-06T20:22:29.8810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125930|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:29.8810000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|128564|128564| +38|2023-10-06T20:22:29.8810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8000|10000|0||99.90|97.83|0.00|3.14|0|0|0||||||||||||| +37|2023-10-06T20:22:29.9250000-07:00|10FF0007|Kehabiqo Febiqo|0001A66A|125930|128564|10000|10000|7||92.27|84.06|0.00|2.04|1500|0|0|03|04000499|02|41700000|||||||||| +38|2023-10-06T20:22:29.9250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125930|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:29.9690000-07:00|40022550|Zeromus|0001A66C|34623982||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:29.9690000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|73D|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12| +38|2023-10-06T20:22:29.9690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|0|0|0||||||||||||||||||| +37|2023-10-06T20:22:30.1030000-07:00|40022550|Zeromus|0001A66E|34623732||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:30.1030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.90|97.83|0.00|3.14| +37|2023-10-06T20:22:30.1920000-07:00|40022550|Zeromus|0001A66D|34613948||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:30.1920000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.52|84.46|0.00|-2.80| +261|2023-10-06T20:22:29.7180000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T20:22:29.7180000-07:00|Change|10FF0006||||||||||||| +21|2023-10-06T20:22:30.2370000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|724003|45460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34613948|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A673|0|1| +21|2023-10-06T20:22:30.2370000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34613948|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9550|10000|||100.05|97.23|0.00|-3.14|0001A674|0|1| +261|2023-10-06T20:22:29.8370000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:22:30.4150000-07:00|40022550|Zeromus|0001A672|34613905||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:30.5040000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|2501|125716|127791|10000|10000|||111.25|84.98|0.00|-1.98|10FF0007|Kehabiqo Febiqo|0|125930|128564|10000|10000|||92.27|84.06|0.00|2.04| +37|2023-10-06T20:22:30.5040000-07:00|40022550|Zeromus|0001A671|34583895||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:30.5040000-07:00|10FF0007|Kehabiqo Febiqo|0001A671|128564||||||92.27|84.06|0.00|2.04| +21|2023-10-06T20:22:30.5040000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|37050000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|34613905|40478540|10000|10000|||100.00|80.10|0.00|0.00|125716|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A675|0|1| +21|2023-10-06T20:22:30.5040000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B714003|59430000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|34613905|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.33|97.80|0.00|-3.12|0001A676|0|1| +38|2023-10-06T20:22:30.5040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||111.25|84.98|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:30.5040000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:30.5040000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.33|97.80|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:22:30.5040000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:22:30.5040000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:22:30.5040000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:22:30.5480000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|24E1|125930|128564|10000|10000|||92.27|84.06|0.00|2.04|10FF0007|Kehabiqo Febiqo|0|125930|128564|10000|10000|||92.27|84.06|0.00|2.04| +24|2023-10-06T20:22:30.5480000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7BB|79111|79111|9550|10000|||100.02|94.82|0.00|-3.14|400226AB|Demi-Phoenix|0|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +21|2023-10-06T20:22:30.5480000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2A9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34613905|40478540|10000|10000|||100.00|80.10|0.00|0.00|125930|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A677|0|1| +38|2023-10-06T20:22:30.5480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:30.5480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||100.02|94.82|0.00|-3.14|0|0|0||||||||||||||||||| +37|2023-10-06T20:22:30.7270000-07:00|40022550|Zeromus|0001A66F|34579574|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T20:22:30.7270000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:22:30.7700000-07:00|40022550|Zeromus|0001A674|34579386||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:30.8160000-07:00|40022550|Zeromus|0001A670|34558548||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:30.3520000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:22:30.8600000-07:00|40022550|Zeromus|0001A675|34544463||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:30.9930000-07:00|40022550|Zeromus|0001A673|34526729||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:30.9930000-07:00|40022550|Zeromus|0001A676|34503878||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:30.9930000-07:00|10FF0005|Wuwuchu Wuchu|0001A676|90055|90055|10000|10000|0||100.14|97.76|0.00|3.10|2700|0|0|01|04000A1D|0|42700000|| +38|2023-10-06T20:22:30.9930000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.14|97.76|0.00|3.10|0|0|0|||||||||||||||| +21|2023-10-06T20:22:31.0380000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4F5E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34503878|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8000|10000|||99.90|97.83|0.00|3.14|0001A678|0|1| +39|2023-10-06T20:22:31.1270000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +21|2023-10-06T20:22:31.1270000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|42E30000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|34503878|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8145|10000|||101.52|84.46|0.00|-2.80|0001A679|0|1| +261|2023-10-06T20:22:30.6580000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:22:31.1720000-07:00|40022550|Zeromus|0001A677|34492968||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:30.7760000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T20:22:30.7760000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:22:31.2160000-07:00|10FF0003|Gegehi Gehi|73085|73085|7900|10000|||99.57|94.68|0.00|-3.13| +24|2023-10-06T20:22:31.2160000-07:00|40022550|Zeromus|DoT|0|26DE|34503878|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98| +38|2023-10-06T20:22:31.2160000-07:00|40022550|Zeromus|005A5A00|34483018|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:22:31.2610000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +21|2023-10-06T20:22:31.2610000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|754003|307B0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|34503878|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7700|10000|||99.57|94.68|0.00|-3.13|0001A67A|0|1| +38|2023-10-06T20:22:31.2610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||92.27|84.06|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:31.2610000-07:00|496|Intervention|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +39|2023-10-06T20:22:31.3060000-07:00|400226AB|Demi-Phoenix|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +39|2023-10-06T20:22:31.3500000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98| +39|2023-10-06T20:22:31.3500000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7800|10000|||99.90|97.83|0.00|3.14| +36|2023-10-06T20:22:31.3500000-07:00|1824|3| +21|2023-10-06T20:22:31.3960000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|2EB30000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|34483018|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A67B|0|1| +38|2023-10-06T20:22:31.3960000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||| +26|2023-10-06T20:22:31.3960000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:22:31.3960000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:22:31.4400000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.84|97.75|0.00|3.06| +21|2023-10-06T20:22:31.4400000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|10390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34483018|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A67C|0|1| +21|2023-10-06T20:22:31.4400000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|750003|78CF0000|200004|3DB28000|0|0|0|0|0|0|0|0|0|0|0|0|34483018|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||111.25|84.98|0.00|-1.98|0001A67D|0|1| +38|2023-10-06T20:22:31.4400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||111.25|84.98|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:31.4400000-07:00|558|Requiescat|26.92|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +30|2023-10-06T20:22:31.4400000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:22:31.4400000-07:00|10FF0001||||| +261|2023-10-06T20:22:31.1150000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:22:31.5290000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7950|10000|||101.52|84.46|0.00|-2.80| +21|2023-10-06T20:22:31.5290000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|FC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34483018|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.84|97.75|0.00|3.06|0001A67E|0|1| +21|2023-10-06T20:22:31.6180000-07:00|400226AB|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|13690000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34483018|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06|0001A67F|0|1| +21|2023-10-06T20:22:31.6180000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|C510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34483018|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A680|0|1| +21|2023-10-06T20:22:31.7070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|AD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34483018|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||111.25|84.98|0.00|-1.98|0001A681|0|1| +31|2023-10-06T20:22:31.7070000-07:00|10FF0001||||| +261|2023-10-06T20:22:31.2960000-07:00|Change|10FF0008||||||||| +24|2023-10-06T20:22:31.7960000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1508|127791|127791|9000|10000|||111.14|84.97|0.00|-2.42|10FF0006|Wowobora Gogobora|0|80739|80739|7950|10000|||101.52|84.46|0.00|-2.80| +37|2023-10-06T20:22:31.7960000-07:00|40022550|Zeromus|0001A679|34465895||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:31.7960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||111.14|84.97|0.00|-2.42|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:22:31.8410000-07:00|40022550|Zeromus|0001A678|34445577||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:31.8850000-07:00|40022550|Zeromus|0001A67A|34433166||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:31.9310000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|180E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|34433166|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A682|0|1| +261|2023-10-06T20:22:31.4840000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:22:31.4840000-07:00|Change|4002256D||||||||| +00|2023-10-06T20:22:31.0000000-07:00|0044|Zeromus|Ah, the Darkness! It riseth!| +261|2023-10-06T20:22:31.5830000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:22:32.0200000-07:00|40022550|Zeromus|0001A67B|34421211||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:32.0200000-07:00|10FF0002|Suchichi Suchi|0001A67B|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|03000323|0|41F00000|| +20|2023-10-06T20:22:32.0200000-07:00|40022550|Zeromus|8B46|Visceral Whirl|40022550|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:32.0200000-07:00|4002256D|Zeromus|8B47|Visceral Whirl|4002256D|Zeromus|8.500|119.90|80.10|0.00|-0.79| +20|2023-10-06T20:22:32.0200000-07:00|4002256E|Zeromus|8B48|Visceral Whirl|4002256E|Zeromus|8.500|80.10|80.10|0.00|0.79| +39|2023-10-06T20:22:32.0200000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.27|84.06|0.00|2.04| +39|2023-10-06T20:22:32.0200000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||99.93|85.54|0.00|-3.14| +261|2023-10-06T20:22:31.6810000-07:00|Change|40022550||||||||| +38|2023-10-06T20:22:32.0200000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||| +37|2023-10-06T20:22:32.0650000-07:00|40022550|Zeromus|0001A67C|34417058||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:32.0650000-07:00|40022550|Zeromus|0001A67D|34386131||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:32.0650000-07:00|40022550|Zeromus|0001A67E|34382099||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:32.0650000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|724003|49BC0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|34433166|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A683|0|1| +38|2023-10-06T20:22:32.0650000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:32.0650000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:22:32.1090000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BCD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34433166|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.27|84.06|0.00|2.04|0001A684|0|1| +261|2023-10-06T20:22:31.7990000-07:00|Change|10FF0004||| +261|2023-10-06T20:22:31.7990000-07:00|Change|10FF0006||| +37|2023-10-06T20:22:32.1550000-07:00|40022550|Zeromus|0001A680|34378946||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:32.1550000-07:00|10FF0002|Suchichi Suchi|0001A680|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|050004DB|0|C1700000|| +21|2023-10-06T20:22:32.1990000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|154003|6AED0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34382099|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||99.93|85.34|0.00|-3.14|0001A685|0|1| +37|2023-10-06T20:22:32.2430000-07:00|40022550|Zeromus|0001A681|34376176||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:32.2870000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|712003|20060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34376176|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||109.89|85.15|0.00|-2.04|0001A686|0|1| +21|2023-10-06T20:22:32.3320000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|A3600000|200204|3D4B8000|0|0|0|0|0|0|0|0|0|0|0|0|34376176|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.32|84.06|0.00|2.51|0001A687|0|1| +38|2023-10-06T20:22:32.3320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||92.32|84.06|0.00|2.51|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:32.3320000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:22:32.0270000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:22:32.0270000-07:00|Change|4002256D||||||||||||| +20|2023-10-06T20:22:32.4660000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.90|97.83|0.00|3.14| +37|2023-10-06T20:22:32.5550000-07:00|40022550|Zeromus|0001A683|34357300||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:32.5550000-07:00|10FF0002|Suchichi Suchi|0001A683|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|1600|0|0|01|050004DB|0|41700000|| +38|2023-10-06T20:22:32.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||92.32|84.06|0.00|2.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:32.5550000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +38|2023-10-06T20:22:32.5550000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||| +38|2023-10-06T20:22:32.5550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||109.89|85.15|0.00|-2.04|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:32.5550000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:32.5550000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|127791|128564| +20|2023-10-06T20:22:32.5990000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.52|84.46|0.00|-2.80| +38|2023-10-06T20:22:32.5990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||109.89|85.15|0.00|-2.04|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:22:32.5990000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:22:32.6440000-07:00|40022550|Zeromus|0001A684|34354279||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:32.6440000-07:00|40022550|Zeromus|0001A67F|34349310||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:32.6440000-07:00|10FF0002|Suchichi Suchi|HoT|0|7D4|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||99.57|99.41|0.00|3.12| +38|2023-10-06T20:22:32.6440000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0||||||||||||||||||| +24|2023-10-06T20:22:32.6890000-07:00|10FF0003|Gegehi Gehi|HoT|0|7CB|73085|73085|7900|10000|||99.67|88.86|0.00|-3.11|10FF0003|Gegehi Gehi|0|73085|73085|7900|10000|||99.67|88.86|0.00|-3.11| +38|2023-10-06T20:22:32.6890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7900|10000|0||99.67|88.86|0.00|-3.11|0|0|0|||||||||| +37|2023-10-06T20:22:32.7330000-07:00|10FF0007|Kehabiqo Febiqo|0001A682|122406|128564|10000|10000|0||92.32|84.06|0.00|2.05|1500|0|0|03|06000A34|0|41700000|||||||||| +26|2023-10-06T20:22:32.7330000-07:00|A34|Haima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:22:32.7330000-07:00|A52|Haimatinon|7.47|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|01|128564|80739| +261|2023-10-06T20:22:32.2320000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:22:32.7340000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37754003|39160000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|34349310|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7900|10000|||99.66|88.56|0.00|-3.11|0001A688|0|1| +38|2023-10-06T20:22:32.7340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122406|128564|10000|10000|0||92.32|84.06|0.00|2.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:32.7340000-07:00|A34|Haima|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:22:32.8670000-07:00|40022550|Zeromus|0001A686|34341112||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:32.8670000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7CF|80739|80739|7800|10000|||99.90|97.83|0.00|3.14|400226AB|Demi-Phoenix|0|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +38|2023-10-06T20:22:32.8670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7800|10000|0||99.90|97.83|0.00|3.14|0|0|0||||||||||||| +21|2023-10-06T20:22:32.9110000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|726003|3E1C0000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|34341112|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.41|0.00|3.12|0001A689|0|1| +38|2023-10-06T20:22:32.9110000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.41|0.00|3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:22:32.9110000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:22:32.9550000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|C63|90055|90055|10000|10000|||100.05|94.85|0.00|3.04|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.05|94.85|0.00|3.04| +38|2023-10-06T20:22:32.9560000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.05|94.85|0.00|3.04|0|0|0|||||||||||||||| +21|2023-10-06T20:22:33.0010000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|716003|4FCC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34341112|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.07|94.51|0.00|3.10|0001A68A|0|1| +38|2023-10-06T20:22:33.0010000-07:00|40022550|Zeromus|005A5A00|34341112|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T20:22:33.0010000-07:00|A1A|Death's Design|50.02|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +21|2023-10-06T20:22:33.1330000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21DB0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|122406|128564|10000|10000|||92.32|84.06|0.00|2.05|77430|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A68B|0|1| +261|2023-10-06T20:22:32.7360000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T20:22:32.7360000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:22:33.2660000-07:00|40022550|Zeromus|0001A685|34313739||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:33.3570000-07:00|40022550|Zeromus|0001A688|34299125||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:33.3580000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34313739|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||99.93|85.13|0.00|3.13|0001A68C|0|1| +21|2023-10-06T20:22:33.3580000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34313739|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7900|10000|||99.63|87.66|0.00|3.09|0001A68D|0|1| +21|2023-10-06T20:22:33.4020000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4D650000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34313739|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7800|10000|||99.90|97.83|0.00|3.14|0001A68E|0|1| +261|2023-10-06T20:22:32.9650000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:22:33.4900000-07:00|40022550|Zeromus|0001A687|34257301||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:33.4900000-07:00|10FF0007|Kehabiqo Febiqo|0001A687|128564||||||92.32|84.06|0.00|2.05| +24|2023-10-06T20:22:33.5350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1731|122406|128564|10000|10000|||92.32|84.06|0.00|2.05|10FF0007|Kehabiqo Febiqo|0|122406|128564|10000|10000|||92.32|84.06|0.00|2.05| +24|2023-10-06T20:22:33.5350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|75F|79111|79111|9700|10000|||99.93|85.13|0.00|3.13|400226AB|Demi-Phoenix|0|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +21|2023-10-06T20:22:33.5350000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|41B20000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|34299125|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7950|10000|||101.52|84.46|0.00|-2.80|0001A68F|0|1| +38|2023-10-06T20:22:33.5350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.33|84.06|0.00|2.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:33.5350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||99.93|85.13|0.00|3.13|0|0|0||||||||||||||||||| +37|2023-10-06T20:22:33.7130000-07:00|40022550|Zeromus|0001A689|34241401||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:33.2670000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:22:33.8920000-07:00|40022550|Zeromus|0001A68C|34241257||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:33.8920000-07:00|40022550|Zeromus|0001A68D|34241224||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:33.9360000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A724003|47A90000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|34241401|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|99.39|0.00|3.13|0001A690|0|1| +38|2023-10-06T20:22:33.9360000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.57|99.39|0.00|3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:22:33.9360000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:22:33.9360000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:22:33.9810000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|752003|91410000|4|25BD8000|0|0|0|0|0|0|0|0|0|0|0|0|34241401|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||103.55|85.55|0.00|-2.41|0001A691|0|1| +21|2023-10-06T20:22:33.9810000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|102E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34241401|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||103.55|85.55|0.00|-2.41|0001A692|0|1| +38|2023-10-06T20:22:33.9810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8000|10000|0||103.55|85.55|0.00|-2.41|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:22:33.9810000-07:00|558|Requiescat|24.38|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +31|2023-10-06T20:22:33.9810000-07:00|10FF0001||||| +261|2023-10-06T20:22:33.6520000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:22:34.0250000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34241224|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7550|10000|||101.52|84.46|0.00|-2.80|0001A693|0|1| +261|2023-10-06T20:22:33.7690000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:22:33.7690000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:22:33.7690000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:22:34.1600000-07:00|40022550|Zeromus|0001A68A|34220796||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:34.1600000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.57|98.92|0.00|3.12| +24|2023-10-06T20:22:34.2040000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1607|127791|127791|8000|10000|||101.62|85.43|0.00|-2.42|10FF0006|Wowobora Gogobora|0|80739|80739|7550|10000|||101.52|84.46|0.00|-2.80| +37|2023-10-06T20:22:34.2040000-07:00|40022550|Zeromus|0001A68F|34203978||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:34.2040000-07:00|40022550|Zeromus|0001A68E|34184165||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:34.2040000-07:00|10FF0003|Gegehi Gehi|73085|73085|8100|10000|||99.63|87.66|0.00|3.09| +24|2023-10-06T20:22:34.2040000-07:00|40022550|Zeromus|DoT|0|2302|34241224|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|8000|10000|||101.62|85.43|0.00|-2.42| +38|2023-10-06T20:22:34.2040000-07:00|40022550|Zeromus|005A5A00|34175203|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:22:34.2040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8000|10000|0||101.62|85.43|0.00|-2.42|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T20:22:34.2490000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|-2.62| +21|2023-10-06T20:22:34.2490000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A750003|49210000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|34241224|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7900|10000|||99.63|87.66|0.00|3.09|0001A694|0|1| +261|2023-10-06T20:22:33.7690000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:22:34.3380000-07:00|400226AB|Demi-Phoenix|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +36|2023-10-06T20:22:34.3380000-07:00|1900|3| +39|2023-10-06T20:22:34.3820000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8200|10000|||100.96|85.39|0.00|-2.42| +39|2023-10-06T20:22:34.3820000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7600|10000|||99.60|95.55|0.00|-3.06| +21|2023-10-06T20:22:34.4260000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|C6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34175203|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.57|97.21|0.00|3.14|0001A695|0|1| +39|2023-10-06T20:22:34.4700000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.36|91.14|0.00|3.14| +37|2023-10-06T20:22:34.5150000-07:00|40022550|Zeromus|0001A692|34171061||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:34.5150000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7755|10000|||101.50|84.46|0.00|-2.19| +37|2023-10-06T20:22:34.5590000-07:00|40022550|Zeromus|0001A693|34171025||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:34.6030000-07:00|40022550|Zeromus|0001A690|34152680||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:34.6030000-07:00|10FF0002|Suchichi Suchi|0001A690|90128|90128|10000|10000|0||99.56|95.93|0.00|-3.14|1600|0|0|01|05000747|0|41F00000|| +37|2023-10-06T20:22:34.6030000-07:00|40022550|Zeromus|0001A691|34115495||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:34.6040000-07:00|10FF0002|Suchichi Suchi|4060|Stardiver|40022550|Zeromus|120003|613F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34171025|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.56|95.93|0.00|-3.14|0001A696|0|1| +38|2023-10-06T20:22:34.6040000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.56|95.93|0.00|-3.14|0|0|0||||||||||||||||||| +21|2023-10-06T20:22:34.6480000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34171025|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7600|10000|||99.86|93.78|0.00|3.11|0001A697|0|1| +21|2023-10-06T20:22:34.6930000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|57980000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34171025|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||99.93|83.97|0.00|-3.13|0001A698|0|1| +21|2023-10-06T20:22:34.7370000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|156A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34115495|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.18|89.56|0.00|3.13|0001A699|0|1| +261|2023-10-06T20:22:34.3080000-07:00|Change|10FF0008||||||| +21|2023-10-06T20:22:34.7820000-07:00|400226AB|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|133B0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34115495|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06|0001A69A|0|1| +21|2023-10-06T20:22:34.7820000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|73F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34115495|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.90|84.86|0.00|2.96|0001A69B|0|1| +38|2023-10-06T20:22:34.7820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||96.90|84.86|0.00|2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:34.7820000-07:00|499|Inner Release|10.10|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +37|2023-10-06T20:22:34.9150000-07:00|40022550|Zeromus|0001A694|34096774||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:34.4070000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:22:34.9600000-07:00|40022550|Zeromus|0001A695|34093592||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:35.0050000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|12B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34096774|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||97.58|84.97|0.00|2.68|0001A69C|0|1| +39|2023-10-06T20:22:35.0490000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||96.65|84.81|-0.02|2.53| +39|2023-10-06T20:22:35.0490000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||99.93|83.97|0.00|3.13| +261|2023-10-06T20:22:34.6190000-07:00|Change|10FF0005||||||||| +20|2023-10-06T20:22:35.0940000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.15|83.54|-0.02|-1.57| +20|2023-10-06T20:22:35.1380000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.40|91.23|0.00|-2.89| +37|2023-10-06T20:22:35.1830000-07:00|40022550|Zeromus|0001A697|34093442||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:35.2730000-07:00|40022550|Zeromus|0001A699|34087960||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:35.2730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||95.07|84.53|0.00|2.77|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:35.2730000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +261|2023-10-06T20:22:34.8490000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:34.8490000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:22:34.8490000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:22:35.4060000-07:00|40022550|Zeromus|0001A69B|34058274||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:35.4950000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34058274|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||93.09|84.19|-0.02|2.92|0001A69D|0|1| +21|2023-10-06T20:22:35.5400000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|716003|55990000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|34058274|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.54|86.36|0.00|-2.28|0001A69E|0|1| +261|2023-10-06T20:22:35.1730000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:22:35.5840000-07:00|40022550|Zeromus|0001A69C|34053484||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:35.6280000-07:00|10FF0002|Suchichi Suchi|HoT|0|C85|90128|90128|10000|10000|||99.53|92.65|0.00|3.11|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||99.53|92.65|0.00|3.11| +38|2023-10-06T20:22:35.6280000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.53|92.65|0.00|3.11|0|0|0||||||||||||||||||| +24|2023-10-06T20:22:35.6730000-07:00|10FF0003|Gegehi Gehi|HoT|0|78E|73085|73085|8100|10000|||96.59|83.64|0.00|-2.88|10FF0003|Gegehi Gehi|0|73085|73085|8100|10000|||96.59|83.64|0.00|-2.88| +38|2023-10-06T20:22:35.6730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|8100|10000|0||96.59|83.64|0.00|-2.88|0|0|0|||||||||| +37|2023-10-06T20:22:35.7620000-07:00|40022550|Zeromus|0001A698|34031060||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:35.2730000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:22:35.8050000-07:00|40022550|Zeromus|0001A69A|34026137||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:35.8510000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7BF|80739|80739|7600|10000|||98.65|90.65|0.00|3.02|400226AB|Demi-Phoenix|0|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +38|2023-10-06T20:22:35.8510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7600|10000|0||98.65|90.65|0.00|3.02|0|0|0||||||||||||| +37|2023-10-06T20:22:35.8960000-07:00|40022550|Zeromus|0001A696|34001242||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:35.9410000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|723|90055|90055|10000|10000|||96.09|85.16|0.00|-3.10|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||96.09|85.16|0.00|-3.10| +38|2023-10-06T20:22:35.9410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||96.09|85.16|0.00|-3.10|0|0|0|||||||||||||||| +261|2023-10-06T20:22:35.4630000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:22:36.0300000-07:00|40022550|Zeromus|0001A69D|33998371||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:36.0300000-07:00|40022550|Zeromus|0001A69E|33976458||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:36.0300000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37F10000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|34001242|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7755|10000|||97.40|83.36|0.00|2.48|0001A69F|0|1| +21|2023-10-06T20:22:36.0740000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2F9B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34001242|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7600|10000|||98.65|90.65|0.00|3.02|0001A6A0|0|1| +21|2023-10-06T20:22:36.2520000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|AAF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33976458|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||94.86|83.04|0.00|2.60|0001A6A1|0|1| +31|2023-10-06T20:22:36.2520000-07:00|10FF0001||||| +261|2023-10-06T20:22:35.7970000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:22:35.7970000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:22:36.4310000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|353D0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|33976458|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||98.30|90.41|0.00|-2.75|0001A6A2|0|1| +21|2023-10-06T20:22:36.4310000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022550|Zeromus|154003|6B490000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|33976458|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|8100|10000|||96.15|81.78|0.00|-2.87|0001A6A3|0|1| +38|2023-10-06T20:22:36.4310000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||98.30|90.41|0.00|-2.75|0|0|0|||||||||||||||| +30|2023-10-06T20:22:36.4310000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:36.4310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7700|10000|0||96.15|81.78|0.00|-2.87|0|0|0||||||||||||| +26|2023-10-06T20:22:36.4310000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:22:36.4750000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|750003|6AEA0000|200004|3DD88000|0|0|0|0|0|0|0|0|0|0|0|0|33976458|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||94.86|83.04|0.00|2.09|0001A6A4|0|1| +38|2023-10-06T20:22:36.4750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|0||94.86|83.04|0.00|2.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:22:36.4750000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:36.4750000-07:00|558|Requiescat|21.89|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:22:36.4750000-07:00|10FF0001||||| +261|2023-10-06T20:22:36.0230000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:22:36.5200000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7CB|79111|79111|9900|10000|||94.58|82.10|0.00|-1.77|400226AB|Demi-Phoenix|0|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +21|2023-10-06T20:22:36.5200000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33976458|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||94.58|82.10|0.00|-1.77|0001A6A5|0|1| +38|2023-10-06T20:22:36.5200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||94.58|82.10|0.00|-1.77|0|0|0||||||||||||||||||| +261|2023-10-06T20:22:36.1340000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:22:36.1340000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T20:22:36.6980000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1573|127791|127791|7200|10000|||94.86|83.04|0.00|2.09|10FF0006|Wowobora Gogobora|0|80739|80739|7355|10000|||97.38|83.36|0.00|-2.93| +37|2023-10-06T20:22:36.6980000-07:00|40022550|Zeromus|0001A69F|33962137||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:36.6980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|0||94.86|83.04|0.00|2.09|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:22:36.3220000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:22:36.7880000-07:00|40022550|Zeromus|0001A6A1|33959402||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:36.8330000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7200|10000|0||96.15|88.80|0.00|-2.26|0|0|0|||||||||||||||| +26|2023-10-06T20:22:36.8330000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +21|2023-10-06T20:22:36.8330000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7200|10000|||96.15|88.80|0.00|-2.26|80739|80739|7200|10000|||96.15|88.80|0.00|-2.26|0001A6A6|0|1| +21|2023-10-06T20:22:36.8330000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33962137|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7700|10000|||95.91|81.72|0.00|1.95|0001A6A7|0|1| +37|2023-10-06T20:22:36.8760000-07:00|40022550|Zeromus|0001A6A0|33947215||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:37.0530000-07:00|40022550|Zeromus|0001A6A2|33933586||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:37.0530000-07:00|40022550|Zeromus|0001A6A5|33933438||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:36.6230000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:22:37.1000000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|3F440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33933438|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||97.00|88.44|0.00|-3.11|0001A6A8|0|1| +39|2023-10-06T20:22:37.1440000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||97.00|88.44|0.00|-3.11| +21|2023-10-06T20:22:37.1440000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|156003|AB3F0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|33933438|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||94.32|82.02|0.00|-1.62|0001A6A9|0|1| +39|2023-10-06T20:22:37.1890000-07:00|10FF0003|Gegehi Gehi|73085|73085|7900|10000|||95.87|81.71|0.00|1.95| +24|2023-10-06T20:22:37.1890000-07:00|40022550|Zeromus|DoT|0|2A8B|33933438|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|7200|10000|||95.01|82.89|0.00|1.23| +38|2023-10-06T20:22:37.1890000-07:00|40022550|Zeromus|005A5A00|33922547|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:22:37.2330000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +21|2023-10-06T20:22:37.2330000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|7E230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33933438|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.55|84.09|0.00|2.97|0001A6AA|0|1| +21|2023-10-06T20:22:37.2330000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|F4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33933438|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||96.57|87.77|0.00|2.52|0001A6AB|0|1| +38|2023-10-06T20:22:37.2330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.55|84.09|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:37.2330000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +39|2023-10-06T20:22:37.3230000-07:00|400226AB|Demi-Phoenix|72376|75851|10000|10000|||101.95|102.95|0.00|-3.06| +36|2023-10-06T20:22:37.3230000-07:00|19DC|3| +38|2023-10-06T20:22:37.3670000-07:00|400226BD||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:22:37.3670000-07:00|40022550|Zeromus|0001A6A4|33895177||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:36.8530000-07:00|Change|400226AB||| +37|2023-10-06T20:22:37.3670000-07:00|10FF0004|Buhojaqe Zijaqe|0001A6A6|80739|80739|9200|10000|0||94.15|86.25|0.00|-2.52|1C00|0|0|0| +37|2023-10-06T20:22:37.3670000-07:00|40022550|Zeromus|0001A6A7|33895150||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:37.3670000-07:00|10FF0003|Gegehi Gehi|0001A6A7|73085|73085|7900|10000|0||95.87|81.71|0.00|1.95|2300|0|0|01|030004D2|0|C1F00000|| +39|2023-10-06T20:22:37.3680000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7400|10000|||95.01|82.89|0.00|1.23| +39|2023-10-06T20:22:37.3680000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9400|10000|||94.15|86.25|0.00|-2.52| +261|2023-10-06T20:22:36.8530000-07:00|Add|400226BD||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:22:37.3680000-07:00|400226BD||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +03|2023-10-06T20:22:36.9670000-07:00|400226BD|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||95.99|81.47|0.00|-1.24| +261|2023-10-06T20:22:36.9670000-07:00|Change|400226BD||| +39|2023-10-06T20:22:37.4560000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||92.76|85.35|0.00|-1.86| +39|2023-10-06T20:22:37.5010000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7560|10000|||97.52|81.64|0.00|2.72| +20|2023-10-06T20:22:37.5010000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|97.52|81.64|0.00|2.72| +261|2023-10-06T20:22:37.0790000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:37.0790000-07:00|Change|10FF0006||||||||||||||||||||||| +20|2023-10-06T20:22:37.5460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|93.62|85.39|0.00|-2.61| +261|2023-10-06T20:22:37.1770000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:22:37.7690000-07:00|40022550|Zeromus|0001A6AB|33891232||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:37.7690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|0||95.01|82.89|0.00|1.23|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:22:37.7690000-07:00|A3B|Taurochole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:22:37.3660000-07:00|Change|10FF0008||||||| +37|2023-10-06T20:22:37.8610000-07:00|40022550|Zeromus|0001A6AA|33858941||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:37.8610000-07:00|40022550|Zeromus|0001A6A3|33831476||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:37.8610000-07:00|10FF0003|Gegehi Gehi|0001A6A3|73085|73085|7900|10000|0||95.87|81.71|0.00|1.95|2300|0|0|01|030004D2|0|41F00000|| +38|2023-10-06T20:22:37.8630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7900|10000|0||95.87|81.71|0.00|1.95|0|0|0||||||||||||| +261|2023-10-06T20:22:37.3660000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:22:37.9470000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CCC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33891232|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||92.76|85.37|-0.02|-2.01|0001A6AC|0|1| +21|2023-10-06T20:22:37.9920000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.55|84.09|0.00|2.07|128564|128564|10000|10000|||92.55|84.09|0.00|2.07|0001A6AD|0|1| +21|2023-10-06T20:22:37.9920000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C710003|36110000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|33831476|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||92.76|85.37|0.00|-2.11|0001A6AE|0|1| +38|2023-10-06T20:22:37.9920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.55|84.09|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:37.9920000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:22:37.6570000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T20:22:38.0360000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.55|84.09|0.00|2.07| +39|2023-10-06T20:22:38.0360000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||94.32|82.02|0.00|1.90| +37|2023-10-06T20:22:38.2150000-07:00|40022550|Zeromus|0001A6A9|33787637||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:38.3040000-07:00|40022550|Zeromus|0001A6A8|33771441||||||100.00|80.10|0.00|0.00| +34|2023-10-06T20:22:38.3930000-07:00|400226BD|Carbuncle|400226BD|Carbuncle|01| +261|2023-10-06T20:22:37.8870000-07:00|Change|400226BD||| +21|2023-10-06T20:22:38.4390000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|355B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|33771441|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7560|10000|||97.76|81.41|0.00|2.11|0001A6AF|0|1| +37|2023-10-06T20:22:38.4830000-07:00|40022550|Zeromus|0001A6AC|33768165||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:38.4830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31740000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33771441|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9400|10000|||93.34|84.92|0.00|2.20|0001A6B0|0|1| +261|2023-10-06T20:22:37.9980000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:22:38.5290000-07:00|10FF0007|Kehabiqo Febiqo|0001A6AD|128564|128564|10000|10000|0||92.55|84.09|0.00|2.07|1500|0|0|01|04000769|0|41F00000|| +21|2023-10-06T20:22:38.5290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|80D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33768165|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||95.01|82.89|0.00|1.23|0001A6B1|0|1| +38|2023-10-06T20:22:38.5290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.55|84.09|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:22:38.5290000-07:00|10FF0001||||| +37|2023-10-06T20:22:38.5730000-07:00|40022550|Zeromus|0001A6AE|33754324||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:38.6620000-07:00|10FF0002|Suchichi Suchi|HoT|0|757|90128|90128|10000|10000|||92.14|84.67|0.00|-0.23|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||92.14|84.67|0.00|-0.23| +38|2023-10-06T20:22:38.6620000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||92.14|84.67|0.00|-0.23|0|0|0|||||||||||||||| +24|2023-10-06T20:22:38.7060000-07:00|10FF0003|Gegehi Gehi|HoT|0|BC2|73085|73085|7900|10000|||95.87|81.71|0.00|1.95|10FF0003|Gegehi Gehi|0|73085|73085|7900|10000|||95.87|81.71|0.00|1.95| +38|2023-10-06T20:22:38.7060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7900|10000|0||95.87|81.71|0.00|1.95|0|0|0||||||||||||| +21|2023-10-06T20:22:38.7960000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33754324|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7160|10000|||97.76|81.41|0.00|2.11|0001A6B2|0|1| +261|2023-10-06T20:22:38.3010000-07:00|Change|10FF0008||| +261|2023-10-06T20:22:38.3980000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:22:38.8860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|719|80739|80739|9000|10000|||93.35|84.90|0.00|2.23|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9000|10000|||93.35|84.90|0.00|2.23| +21|2023-10-06T20:22:38.8860000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|E370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33754324|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.55|84.09|0.00|2.07|0001A6B3|0|1| +21|2023-10-06T20:22:38.8860000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|754003|7B2A0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|33754324|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7900|10000|||95.87|81.71|0.00|1.95|0001A6B4|0|1| +38|2023-10-06T20:22:38.8860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9000|10000|0||93.35|84.90|0.00|2.23|0|0|0|||||||||||||||| +261|2023-10-06T20:22:38.3980000-07:00|Change|10FF0003||| +21|2023-10-06T20:22:38.9300000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|26C60000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|33754324|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||92.15|84.67|0.00|-0.16|0001A6B5|0|1| +21|2023-10-06T20:22:38.9300000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|750003|781A0000|200004|3DB48000|0|0|0|0|0|0|0|0|0|0|0|0|33754324|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||95.01|82.89|0.00|1.23|0001A6B6|0|1| +38|2023-10-06T20:22:38.9300000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||92.15|84.67|0.00|-0.16|0|0|0|||||||||||||||| +26|2023-10-06T20:22:38.9300000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:38.9300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|0||95.01|82.89|0.00|1.23|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:38.9300000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:38.9300000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:22:38.9300000-07:00|10FF0001||||| +24|2023-10-06T20:22:38.9750000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|BDF|90055|90055|10000|10000|||92.87|85.82|0.00|-3.02|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||92.87|85.82|0.00|-3.02| +38|2023-10-06T20:22:38.9750000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||92.87|85.82|0.00|-3.02|0|0|0|||||||||||||||| +37|2023-10-06T20:22:39.0640000-07:00|40022550|Zeromus|0001A6B1|33752263||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:39.1080000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15E6|127791|127791|6400|10000|||95.01|82.89|0.00|2.08|10FF0006|Wowobora Gogobora|0|80739|80739|7160|10000|||97.76|81.41|0.00|2.11| +37|2023-10-06T20:22:39.1080000-07:00|40022550|Zeromus|0001A6AF|33738604||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:39.1080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|0||95.01|82.89|0.00|2.08|0|0|0||||||||||||||||||| +261|2023-10-06T20:22:38.6170000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:22:39.2870000-07:00|40022550|Zeromus|0001A6B0|33725944||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:39.3330000-07:00|40022550|Zeromus|0001A6B2|33725906||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:39.4220000-07:00|40022550|Zeromus|0001A6B3|33722267||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:39.5550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|BBD|79111|79111|9900|10000|||94.32|82.02|0.00|1.90|400226AB|Demi-Phoenix|0|0|75851|0|10000|||101.95|102.95|0.00|-3.06| +38|2023-10-06T20:22:39.5550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||94.32|82.02|0.00|1.90|0|0|0||||||||||||||||||| +21|2023-10-06T20:22:39.6000000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|33722267|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||94.32|82.02|0.00|1.90|0001A6B7|0|1| +261|2023-10-06T20:22:39.1700000-07:00|Change|400226BD||| +38|2023-10-06T20:22:39.6450000-07:00|400226C1||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:22:39.6450000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|AC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33722267|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||94.32|82.02|0.00|1.90|0001A6B8|0|1| +38|2023-10-06T20:22:39.6450000-07:00|400226C1||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:22:39.6890000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|714003|1C120000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|33722267|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.55|84.09|0.00|2.07|0001A6B9|0|1| +21|2023-10-06T20:22:39.7330000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33722267|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9000|10000|||96.18|81.94|-0.02|2.24|0001A6BA|0|1| +261|2023-10-06T20:22:39.2720000-07:00|Add|400226C1||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:22:39.3710000-07:00|400226C1|Topaz Titan|00|5A|10FF0008|00||10264|13507|72376|75851|10000|10000|||93.24|84.27|0.00|1.90| +37|2023-10-06T20:22:39.8230000-07:00|40022550|Zeromus|0001A6B6|33691521||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:39.3710000-07:00|Change|10FF0008||||| +261|2023-10-06T20:22:39.3710000-07:00|Change|10FF0001||| +261|2023-10-06T20:22:39.3710000-07:00|Change|400226C1||||| +20|2023-10-06T20:22:39.9110000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.06|81.26|0.00|2.11| +20|2023-10-06T20:22:39.9110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|96.30|81.85|0.00|2.17| +261|2023-10-06T20:22:39.4670000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:22:39.9990000-07:00|40022550|Zeromus|8B46|Visceral Whirl|40022550|Zeromus|1B|8B468000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33691521|40478540|10000|10000|||100.00|80.10|0.00|0.00|33691521|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A6BB|0|1| +261|2023-10-06T20:22:39.4670000-07:00|Change|40022550||||| +21|2023-10-06T20:22:40.0450000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|149D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33691521|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||92.24|84.28|0.00|-0.03|0001A6BC|0|1| +39|2023-10-06T20:22:40.1340000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||92.24|84.28|0.00|-0.03| +261|2023-10-06T20:22:39.6600000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:22:40.1790000-07:00|40022550|Zeromus|0001A6B8|33691349||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:40.1790000-07:00|10FF0003|Gegehi Gehi|73085|73085|7700|10000|||95.87|81.71|0.00|1.95| +24|2023-10-06T20:22:40.1790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A52|12A8|128564|128564|10000|10000|||92.55|84.09|0.00|2.07|10FF0006|Wowobora Gogobora|0|80739|80739|7160|10000|||98.39|81.10|0.00|2.06| +24|2023-10-06T20:22:40.1790000-07:00|40022550|Zeromus|DoT|0|2449|33691521|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|6400|10000|||95.01|82.89|0.00|2.08| +38|2023-10-06T20:22:40.1790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.55|84.09|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:40.1790000-07:00|A52|Haimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|01|128564|80739| +38|2023-10-06T20:22:40.1790000-07:00|40022550|Zeromus|005A5A00|33682060|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:22:40.2240000-07:00|40022550|Zeromus|0001A6B9|33674874||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:40.2240000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +21|2023-10-06T20:22:40.2240000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|720003|34010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33691521|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||92.24|84.28|0.00|-0.03|0001A6BD|0|1| +261|2023-10-06T20:22:39.7780000-07:00|Change|10FF0003||| +37|2023-10-06T20:22:40.2670000-07:00|40022550|Zeromus|0001A6BA|33674717||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:40.3120000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33674874|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7700|10000|||95.87|81.71|0.00|1.95|0001A6BE|0|1| +36|2023-10-06T20:22:40.3120000-07:00|1AB8|3| +39|2023-10-06T20:22:40.3560000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6600|10000|||95.01|82.89|0.00|2.08| +39|2023-10-06T20:22:40.3560000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9200|10000|||96.65|81.60|-0.01|2.01| +39|2023-10-06T20:22:40.4460000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||92.79|85.83|-0.02|1.83| +21|2023-10-06T20:22:40.4460000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|444C0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|33674717|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||92.79|85.83|-0.02|1.83|0001A6BF|0|1| +39|2023-10-06T20:22:40.4900000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7365|10000|||98.53|81.04|0.00|2.15| +37|2023-10-06T20:22:40.5800000-07:00|40022550|Zeromus|0001A6B5|33664791||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:40.5800000-07:00|10FF0002|Suchichi Suchi|0001A6B5|90128|90128|10000|10000|0||92.24|84.28|0.00|2.07|1600|0|0|01|04000AA0|0|41F00000|| +37|2023-10-06T20:22:40.5800000-07:00|40022550|Zeromus|0001A6BC|33659514||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:40.5800000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||92.24|84.28|0.00|2.07|0|0|0|||||||||||||||| +261|2023-10-06T20:22:40.2170000-07:00|Change|400226C1||| +37|2023-10-06T20:22:40.7130000-07:00|40022550|Zeromus|0001A6B4|33627984||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:40.8020000-07:00|4002256D|Zeromus|8B47|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|0001A6C0|0|0| +21|2023-10-06T20:22:40.8020000-07:00|4002256E|Zeromus|8B48|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|0001A6C1|0|0| +21|2023-10-06T20:22:40.8020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|E250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33627984|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||95.01|82.89|0.00|2.08|0001A6C2|0|1| +31|2023-10-06T20:22:40.8020000-07:00|10FF0001||||| +261|2023-10-06T20:22:40.3080000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:22:40.3080000-07:00|Change|4002256E||||||||||||| +37|2023-10-06T20:22:40.8470000-07:00|40022550|Zeromus|0001A6BE|33627943||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:40.8470000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36760000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|33627984|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7365|10000|||98.53|81.04|0.00|2.15|0001A6C3|0|1| +21|2023-10-06T20:22:40.8470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|320E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33627984|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9200|10000|||96.67|81.59|0.00|2.00|0001A6C4|0|1| +38|2023-10-06T20:22:40.8470000-07:00|40022550|Zeromus|005A5A00|33627943|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:22:40.8470000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +261|2023-10-06T20:22:40.4060000-07:00|Change|10FF0001||| +261|2023-10-06T20:22:40.4060000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:22:40.9810000-07:00|40022550|Zeromus|0001A6BD|33614630||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:40.9810000-07:00|40022550|Zeromus|0001A6BF|33597146||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:41.0260000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.55|84.09|0.00|2.07| +39|2023-10-06T20:22:41.0260000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||94.32|82.02|0.00|1.90| +261|2023-10-06T20:22:40.5030000-07:00|Remove|400226AB| +261|2023-10-06T20:22:40.5030000-07:00|Change|4002256C||||||||| +04|2023-10-06T20:22:40.5030000-07:00|400226AB|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|0|75851|0|10000|||101.95|102.95|0.00|-3.06| +261|2023-10-06T20:22:40.5030000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:22:40.5030000-07:00|Change|40022569||||||||| +261|2023-10-06T20:22:40.5030000-07:00|Change|40022568||||||||| +261|2023-10-06T20:22:40.5030000-07:00|Change|40022567||||||||| +261|2023-10-06T20:22:40.5030000-07:00|Change|4002256A||||||||| +20|2023-10-06T20:22:41.1170000-07:00|40022567|Zeromus|8B49|Miasmic Blast|40022567|Zeromus|7.700|116.50|116.50|0.00|0.00| +20|2023-10-06T20:22:41.1170000-07:00|40022568|Zeromus|8CF8|unknown_8cf8|40022568|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T20:22:41.1170000-07:00|40022569|Zeromus|8B49|Miasmic Blast|40022569|Zeromus|7.700|88.00|100.00|0.00|0.00| +20|2023-10-06T20:22:41.1170000-07:00|4002256A|Zeromus|8CF8|unknown_8cf8|4002256A|Zeromus|7.700|100.00|100.00|0.00|-1.57| +20|2023-10-06T20:22:41.1170000-07:00|4002256B|Zeromus|8B49|Miasmic Blast|4002256B|Zeromus|7.700|112.00|100.00|0.00|0.00| +20|2023-10-06T20:22:41.1170000-07:00|4002256C|Zeromus|8CF8|unknown_8cf8|4002256C|Zeromus|7.700|100.00|100.00|0.00|1.57| +21|2023-10-06T20:22:41.1610000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|14A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33597146|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||92.55|86.08|-0.02|2.42|0001A6C5|0|1| +261|2023-10-06T20:22:40.7310000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:22:41.3400000-07:00|40022550|Zeromus|0001A6C2|33593525||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:41.3850000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|2E070000|17B90E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|33597146|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||92.45|83.88|0.00|-0.02|0001A6C6|0|1| +38|2023-10-06T20:22:41.3850000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||92.45|83.88|0.00|-0.02|0|0|0|||||||||||||||| +26|2023-10-06T20:22:41.3850000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:22:41.4290000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|752003|A2EF0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|33593525|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7700|10000|||95.87|81.71|0.00|1.95|0001A6C7|0|1| +24|2023-10-06T20:22:41.5190000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1537|127791|127791|6600|10000|||97.01|83.73|0.00|0.33|10FF0006|Wowobora Gogobora|0|80739|80739|6965|10000|||98.55|81.04|0.00|1.39| +37|2023-10-06T20:22:41.5190000-07:00|40022550|Zeromus|0001A6C3|33579583||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:41.5190000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|3A5D0000|4|26118000|0|0|0|0|0|0|0|0|0|0|0|0|33593525|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||97.01|83.73|0.00|0.33|0001A6C8|0|1| +38|2023-10-06T20:22:41.5190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|0||97.01|83.73|0.00|0.33|0|0|0|||||||||||||||| +26|2023-10-06T20:22:41.5190000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:41.5190000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:22:41.0800000-07:00|Change|10FF0003||| +261|2023-10-06T20:22:41.0800000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:22:41.0800000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:22:41.0800000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:22:41.0800000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:22:41.0800000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:22:41.0800000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:22:41.1780000-07:00|Change|400226BD||| +37|2023-10-06T20:22:41.6520000-07:00|40022550|Zeromus|0001A6C4|33566769||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:41.6520000-07:00|10FF0002|Suchichi Suchi|HoT|0|A6F|90128|90128|10000|10000|||92.45|83.88|0.00|2.04|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||92.45|83.88|0.00|2.04| +38|2023-10-06T20:22:41.6520000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||92.45|83.88|0.00|2.04|0|0|0|||||||||||||||| +37|2023-10-06T20:22:41.6970000-07:00|40022550|Zeromus|0001A6C5|33561485||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:41.6970000-07:00|400226C1|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|450003|612E0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|33566769|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||93.24|84.27|0.00|1.90|0001A6C9|0|1| +24|2023-10-06T20:22:41.6970000-07:00|10FF0003|Gegehi Gehi|HoT|0|A50|73085|73085|7300|10000|||95.87|81.71|0.00|1.95|10FF0003|Gegehi Gehi|0|73085|73085|7300|10000|||95.87|81.71|0.00|1.95| +38|2023-10-06T20:22:41.6970000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7300|10000|0||95.87|81.71|0.00|1.95|0|0|0||||||||||||| +37|2023-10-06T20:22:41.8290000-07:00|40022550|Zeromus|0001A6C6|33549702|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:22:41.8290000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:22:41.8290000-07:00|10FF0002|Suchichi Suchi|0001A6C6|90128|90128|10000|10000|0||92.47|83.88|0.00|1.65|1600|0|0|01|03000323|0|41F00000|| +38|2023-10-06T20:22:41.8290000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||92.47|83.88|0.00|1.65|0|0|0|||||||||||||||| +24|2023-10-06T20:22:41.8730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|745|80739|80739|8800|10000|||98.09|82.17|0.00|1.19|10FF0004|Buhojaqe Zijaqe|0|80739|80739|8800|10000|||98.09|82.17|0.00|1.19| +38|2023-10-06T20:22:41.8730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8800|10000|0||98.09|82.17|0.00|1.19|0|0|0|||||||||||||||| +261|2023-10-06T20:22:41.4540000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:22:41.9620000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|784|90055|90055|10000|10000|||92.48|85.59|0.00|2.84|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||92.48|85.59|0.00|2.84| +38|2023-10-06T20:22:41.9620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||92.48|85.59|0.00|2.84|0|0|0|||||||||||||||| +21|2023-10-06T20:22:42.1410000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|43A60000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|33549702|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||96.35|82.45|0.00|1.44|0001A6CA|0|1| +38|2023-10-06T20:22:42.1410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||96.35|82.45|0.00|1.44|0|0|0||||||||||||||||||| +30|2023-10-06T20:22:42.1410000-07:00|4B4|Lucid Dreaming|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +26|2023-10-06T20:22:42.1410000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:22:41.7570000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:22:42.1860000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|21E00000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|33549702|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||97.68|84.53|0.00|1.47|0001A6CB|0|1| +261|2023-10-06T20:22:41.7570000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:22:41.7570000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:22:41.8700000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:22:42.2750000-07:00|40022550|Zeromus|0001A6C8|33534761||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:42.2750000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|122D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33549702|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.33|84.61|0.00|2.88|0001A6CC|0|1| +21|2023-10-06T20:22:42.3650000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|64BB0000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|33534761|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6965|10000|||103.65|82.94|0.00|1.24|0001A6CD|0|1| +24|2023-10-06T20:22:42.5440000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|731|79111|79111|9700|10000|||96.62|82.51|0.00|2.19|400226AB||0||||||||||| +38|2023-10-06T20:22:42.5440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||96.62|82.51|0.00|2.19|0|0|0||||||||||||||||||| +21|2023-10-06T20:22:42.5880000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33534761|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6565|10000|||104.24|83.12|0.00|-2.18|0001A6CE|0|1| +37|2023-10-06T20:22:42.7670000-07:00|40022550|Zeromus|0001A6CA|33517443||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:42.7670000-07:00|10FF0008|Kokosaze Lulusaze|0001A6CA|79111|79111|9700|10000|0||97.94|82.78|0.00|1.82|1B00|0|0|01|02000B25|0|0|| +21|2023-10-06T20:22:42.7670000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|1C510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33534761|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||97.94|82.78|0.00|1.82|0001A6CF|0|1| +21|2023-10-06T20:22:42.7670000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33534761|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||97.94|82.78|0.00|1.82|0001A6D0|0|1| +38|2023-10-06T20:22:42.7670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||97.47|84.36|0.00|0.07|0|0|0|||||||||||||||| +30|2023-10-06T20:22:42.7670000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:42.7670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||97.94|82.78|0.00|1.82|0|0|0||||||||||||||||||| +30|2023-10-06T20:22:42.7670000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:22:42.8110000-07:00|40022550|Zeromus|0001A6CB|33508771||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:42.8110000-07:00|40022550|Zeromus|0001A6CC|33504118||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:42.2860000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:22:42.8550000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33504118|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||98.08|84.82|0.00|0.05|0001A6D1|0|1| +261|2023-10-06T20:22:42.3860000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:22:42.9900000-07:00|40022550|Zeromus|0001A6C7|33462407||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:42.9900000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|16920000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||102.12|86.09|0.00|1.64|33504118|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A6D2|0|1| +20|2023-10-06T20:22:42.9900000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|104.97|85.11|-0.02|1.02| +21|2023-10-06T20:22:42.9900000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2A990000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|33504118|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.60|84.47|0.00|2.01|0001A6D3|0|1| +24|2023-10-06T20:22:43.0340000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1616|127791|127791|5600|10000|||104.64|85.52|0.00|0.00|10FF0006|Wowobora Gogobora|0|80739|80739|6565|10000|||106.48|84.68|0.00|0.32| +37|2023-10-06T20:22:43.0340000-07:00|40022550|Zeromus|0001A6CD|33436620||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:43.0340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|0||104.64|85.52|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T20:22:43.0790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33436620|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5600|10000|||105.24|85.53|0.00|-0.03|0001A6D4|0|1| +31|2023-10-06T20:22:43.0790000-07:00|10FF0001||||| +37|2023-10-06T20:22:43.1240000-07:00|40022550|Zeromus|0001A6CE|33436583||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:42.5990000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:22:43.1680000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.18|85.56|0.00|0.02| +39|2023-10-06T20:22:43.2130000-07:00|10FF0003|Gegehi Gehi|73085|73085|7500|10000|||100.10|82.60|0.00|1.80| +24|2023-10-06T20:22:43.2130000-07:00|40022550|Zeromus|DoT|0|3986|33436583|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|5600|10000|||105.79|85.84|0.00|-0.04| +38|2023-10-06T20:22:43.2130000-07:00|40022550|Zeromus|005A5A00|33421857|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:22:42.7120000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:22:42.7120000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:22:43.2580000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +261|2023-10-06T20:22:42.7120000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:22:42.8260000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:22:42.8260000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:22:43.3030000-07:00|40022550|Zeromus|0001A6D0|33421705||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:43.3480000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5800|10000|||106.28|86.16|0.00|-0.23| +39|2023-10-06T20:22:43.3480000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9000|10000|||105.33|85.34|0.00|3.00| +36|2023-10-06T20:22:43.3480000-07:00|1B94|3| +37|2023-10-06T20:22:43.3920000-07:00|40022550|Zeromus|0001A6D1|33418793||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:42.9390000-07:00|Change|10FF0008||||||||| +04|2023-10-06T20:22:42.9390000-07:00|400226BD|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||95.99|81.47|0.00|-1.24| +261|2023-10-06T20:22:42.9390000-07:00|Remove|400226BD| +39|2023-10-06T20:22:43.4380000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||101.54|85.28|0.00|1.78| +37|2023-10-06T20:22:43.4820000-07:00|40022550|Zeromus|0001A6D3|33407888||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:43.5270000-07:00|40022550|Zeromus|0001A6CF|33400639||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:43.5270000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6770|10000|||108.85|82.95|0.00|2.16| +37|2023-10-06T20:22:43.6150000-07:00|40022550|Zeromus|0001A6D4|33398424||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:43.6600000-07:00|40022550|Zeromus|0001A6C9|33373546||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:43.2510000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:22:43.2510000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:22:43.7950000-07:00|10FF0007|Kehabiqo Febiqo|0001A6D2|122786|128564|10000|10000|0||106.04|87.49|0.00|0.91|1500|0|0|01|06000000|0|0|| +21|2023-10-06T20:22:43.7950000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33373546|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7500|10000|||102.72|84.54|0.00|1.65|0001A6D5|0|1| +38|2023-10-06T20:22:43.7950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122786|128564|10000|10000|0||106.04|87.49|0.00|0.91|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:43.7950000-07:00|A34|Haima|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:22:43.9290000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|27BF0000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|33373546|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.94|86.39|0.00|-0.01|0001A6D6|0|1| +21|2023-10-06T20:22:43.9290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|311F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33373546|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9000|10000|||105.49|85.44|0.00|-2.86|0001A6D7|0|1| +38|2023-10-06T20:22:43.9290000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||104.56|86.42|0.00|-2.44|0|0|0|||||||||||||||| +26|2023-10-06T20:22:43.9290000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:22:43.9290000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:22:43.5340000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:22:43.9730000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14E20000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|122786|128564|10000|10000|||106.95|89.11|0.00|1.11|77430|77430|10000|10000|||99.35|94.65|0.00|3.10|0001A6D8|0|1| +39|2023-10-06T20:22:44.0180000-07:00|10FF0007|Kehabiqo Febiqo|124071|128564|10000|10000|||106.95|89.11|0.00|1.11| +39|2023-10-06T20:22:44.0180000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||105.67|85.85|0.00|1.13| +261|2023-10-06T20:22:43.5340000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:22:43.6480000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:22:43.6480000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:22:43.7670000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:22:43.7670000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:22:44.3300000-07:00|40022550|Zeromus|0001A6D5|33373520||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:44.3750000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|109F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33373546|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||107.14|87.37|0.00|1.21|0001A6D9|0|1| +37|2023-10-06T20:22:44.5980000-07:00|40022550|Zeromus|0001A6D6|33363345||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:44.5980000-07:00|10FF0002|Suchichi Suchi|0001A6D6|90128|90128|10000|10000|0||108.66|86.66|0.00|-0.53|1600|0|0|01|02000322|0|41F00000|| +21|2023-10-06T20:22:44.5980000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|43CE0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|33373520|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||108.57|87.46|0.00|1.08|0001A6DA|0|1| +38|2023-10-06T20:22:44.5980000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||108.66|86.66|0.00|-0.53|0|0|0|||||||||||||||| +38|2023-10-06T20:22:44.5980000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||108.57|87.46|0.00|1.08|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:44.5980000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:22:44.1090000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:44.1090000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:22:44.6420000-07:00|10FF0002|Suchichi Suchi|HoT|0|79B|90128|90128|10000|10000|||108.66|86.66|0.00|-0.53|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||108.66|86.66|0.00|-0.53| +21|2023-10-06T20:22:44.6420000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|2FB90000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|33373520|40478540|10000|10000|||100.00|80.10|0.00|0.00|124071|128564|10000|10000|||109.37|90.95|0.00|1.34|0001A6DB|0|1| +38|2023-10-06T20:22:44.6420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124071|128564|10000|10000|0||109.37|90.95|0.00|1.34|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:44.6420000-07:00|A75|Surging Tempest|32.87|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:22:44.6420000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||108.66|86.66|0.00|-0.53|0|0|0|||||||||||||||| +24|2023-10-06T20:22:44.6860000-07:00|10FF0003|Gegehi Gehi|HoT|0|773|73085|73085|7500|10000|||107.17|85.94|0.00|1.66|10FF0003|Gegehi Gehi|0|73085|73085|7500|10000|||107.17|85.94|0.00|1.66| +38|2023-10-06T20:22:44.6860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7500|10000|0||107.17|85.94|0.00|1.66|0|0|0||||||||||||| +37|2023-10-06T20:22:44.7300000-07:00|40022550|Zeromus|0001A6D7|33350770||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:44.7750000-07:00|10FF0007|Kehabiqo Febiqo|0001A6D8|128564||||||110.14|90.85|0.00|-2.34| +21|2023-10-06T20:22:44.8210000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41714003|3D4F0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|33350770|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||113.97|90.02|0.00|-0.47|0001A6DC|0|1| +21|2023-10-06T20:22:44.8210000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|EC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33350770|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||109.32|87.84|-0.02|1.23|0001A6DD|0|1| +38|2023-10-06T20:22:44.8210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|0||113.97|90.02|0.00|-0.47|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:44.8210000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:44.8210000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:22:44.8210000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +24|2023-10-06T20:22:44.8650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7D0|80739|80739|8600|10000|||109.32|87.84|-0.02|1.23|10FF0004|Buhojaqe Zijaqe|0|80739|80739|8600|10000|||109.32|87.84|-0.02|1.23| +38|2023-10-06T20:22:44.8650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|0||113.97|90.02|0.00|-0.47|0|0|0||||||||||||||||||| +38|2023-10-06T20:22:44.8650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8600|10000|0||109.32|87.84|-0.02|1.23|0|0|0|||||||||||||||| +37|2023-10-06T20:22:44.9090000-07:00|40022550|Zeromus|0001A6D9|33346515||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:44.9090000-07:00|10FF0006|Wowobora Gogobora|5EFC|Toxikon II|40022550|Zeromus|752003|5D140000|1B|5EFC8000|0|0|0|0|0|0|0|0|0|0|0|0|33350770|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6770|10000|||111.86|82.55|0.00|1.46|0001A6DE|0|1| +38|2023-10-06T20:22:44.9090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||111.62|90.99|0.00|2.83|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:44.9090000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:22:44.3970000-07:00|Change|10FF0005||||||||| +24|2023-10-06T20:22:44.9540000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|766|90055|90055|10000|10000|||110.60|87.88|0.00|1.42|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||110.60|87.88|0.00|1.42| +38|2023-10-06T20:22:44.9540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||110.60|87.88|0.00|1.42|0|0|0|||||||||||||||| +261|2023-10-06T20:22:44.3970000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:22:44.4970000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:22:44.4970000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:22:44.6140000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:22:45.2220000-07:00|40022550|Zeromus|0001A6DA|33329157||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:45.2220000-07:00|10FF0008|Kokosaze Lulusaze|0001A6DA|79111|79111|9600|10000|0||110.87|88.75|0.00|-2.89|1B00|0|0|01|02000B25|0|0|| +38|2023-10-06T20:22:45.2220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||110.87|88.75|0.00|-2.89|0|0|0|||||||||||||||| +30|2023-10-06T20:22:45.2220000-07:00|74C|Everlasting Flight|0.00|400226AB|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|79111|| +21|2023-10-06T20:22:45.2660000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|25680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33329157|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||111.80|89.31|0.00|2.59|0001A6DF|0|1| +38|2023-10-06T20:22:45.2660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||111.80|89.31|0.00|2.59|0|0|0|||||||||||||||| +30|2023-10-06T20:22:45.2660000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:22:45.3550000-07:00|40022550|Zeromus|0001A6DD|33328921||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:45.3550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33329157|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||116.70|91.67|0.00|-0.50|0001A6E0|0|1| +21|2023-10-06T20:22:45.3550000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|752003|3D310000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|33329157|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||112.14|89.92|0.00|0.96|0001A6E1|0|1| +38|2023-10-06T20:22:45.3550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7500|10000|0||110.76|89.17|0.00|1.67|0|0|0||||||||||||| +30|2023-10-06T20:22:45.3550000-07:00|74C|Everlasting Flight|0.00|400226AB|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73085|| +31|2023-10-06T20:22:45.3550000-07:00|10FF0001||||| +37|2023-10-06T20:22:45.3990000-07:00|40022550|Zeromus|0001A6DC|33313226||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:45.3990000-07:00|10FF0001|Sesuga Sapisuga|0001A6DC|127791|127791|5800|10000|0||116.70|91.67|0.00|-0.50|1300|0|0|02|0300076E|03|41F00000|||||| +21|2023-10-06T20:22:45.4000000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33329157|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6770|10000|||112.76|83.27|0.00|-1.26|0001A6E2|0|1| +38|2023-10-06T20:22:45.4000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|0||116.70|91.67|0.00|-0.50|0|0|0||||||||||||||||||| +38|2023-10-06T20:22:45.4880000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||110.14|85.97|0.00|-0.79|0|0|0|||||||||||||||| +30|2023-10-06T20:22:45.4880000-07:00|74C|Everlasting Flight|0.00|400226AB|Demi-Phoenix|10FF0002|Suchichi Suchi|00|90128|| +261|2023-10-06T20:22:45.0780000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:45.0780000-07:00|Change|10FF0006||||||||| +38|2023-10-06T20:22:45.6220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8200|10000|0||112.52|90.20|0.00|-2.25|0|0|0|||||||||||||||| +30|2023-10-06T20:22:45.6220000-07:00|74C|Everlasting Flight|0.00|400226AB|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|80739|| +21|2023-10-06T20:22:45.6670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33313226|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||116.11|91.92|0.00|1.39|0001A6E3|0|1| +21|2023-10-06T20:22:45.6670000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33313226|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||110.30|85.58|0.00|-0.52|0001A6E4|0|1| +38|2023-10-06T20:22:45.7110000-07:00|40022550|Zeromus|005A5A00|33313226|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T20:22:45.7110000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +261|2023-10-06T20:22:45.1790000-07:00|Change|400226C1||||| +38|2023-10-06T20:22:45.7560000-07:00|400226FD||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:22:45.7560000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||114.37|90.37|0.00|1.18|0|0|0|||||||||||||||| +30|2023-10-06T20:22:45.7560000-07:00|74C|Everlasting Flight|0.00|400226AB|Demi-Phoenix|10FF0005|Wuwuchu Wuchu|00|90055|| +38|2023-10-06T20:22:45.7560000-07:00|400226FD||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:22:45.2740000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:22:45.2740000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:22:45.8000000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|6770|10000|||114.48|85.29|0.00|0.30|80739|80739|6770|10000|||114.48|85.29|0.00|0.30|0001A6E5|0|1| +03|2023-10-06T20:22:45.2740000-07:00|400226FD|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||116.96|92.62|0.00|-2.11| +261|2023-10-06T20:22:45.3730000-07:00|Add|400226FD||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:45.3730000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:22:45.3730000-07:00|Change|400226FD||| +37|2023-10-06T20:22:45.8890000-07:00|40022550|Zeromus|0001A6E0|33311064||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:45.8890000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33313226|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||115.26|91.53|0.00|2.52|0001A6E6|0|1| +37|2023-10-06T20:22:45.9340000-07:00|40022550|Zeromus|0001A6E2|33311028||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:45.5690000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:22:46.0240000-07:00|40022550|Zeromus|0001A6DF|33301452||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:46.0240000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E980000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||116.80|92.09|0.00|1.36|33311028|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A6E7|0|1| +24|2023-10-06T20:22:46.1120000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1526|127791|127791|5800|10000|||118.00|93.22|0.00|-1.05|10FF0006|Wowobora Gogobora|0|80739|80739|6770|10000|||115.11|86.64|0.00|0.52| +37|2023-10-06T20:22:46.1120000-07:00|40022550|Zeromus|0001A6DE|33277624||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:46.1130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|0||118.00|93.22|0.00|-1.05|0|0|0||||||||||||||||||| +39|2023-10-06T20:22:46.1570000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||112.10|85.44|0.00|-0.71| +21|2023-10-06T20:22:46.1570000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8200|10000|||114.95|91.56|0.00|1.24|80739|80739|8200|10000|||114.95|91.56|0.00|1.24|0001A6E8|0|1| +37|2023-10-06T20:22:46.2030000-07:00|40022550|Zeromus|0001A6E3|33274661||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:46.2030000-07:00|40022550|Zeromus|0001A6E4|33271727||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:46.2030000-07:00|10FF0003|Gegehi Gehi|73085|73085|7700|10000|||114.89|92.27|0.00|1.73| +24|2023-10-06T20:22:46.2030000-07:00|40022550|Zeromus|DoT|0|2B2C|33277624|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||112.10|85.44|0.00|-0.71| +38|2023-10-06T20:22:46.2030000-07:00|40022550|Zeromus|005A5A00|33260675|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T20:22:46.2460000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|3.10| +37|2023-10-06T20:22:46.2910000-07:00|40022550|Zeromus|0001A6DB|33248458||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:46.2910000-07:00|40022550|Zeromus|0001A6E1|33232793||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:22:46.3350000-07:00|1C70|3| +39|2023-10-06T20:22:46.3800000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6000|10000|||118.08|93.36|0.00|-1.05| +39|2023-10-06T20:22:46.3800000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8400|10000|||115.36|91.75|0.00|1.02| +261|2023-10-06T20:22:45.9070000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:22:46.4250000-07:00|40022550|Zeromus|0001A6E6|33232566||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:46.4250000-07:00|10FF0006|Wowobora Gogobora|0001A6E5|80739|80739|6770|10000|0||115.69|87.61|0.00|0.54|2800|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T20:22:46.4250000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:22:46.4250000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|365F0000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|33232793|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||112.30|85.66|0.00|-0.94|0001A6E9|0|1| +20|2023-10-06T20:22:46.4250000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|115.39|92.59|0.00|1.74| +38|2023-10-06T20:22:46.4250000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||112.30|85.66|0.00|-0.94|0|0|0|||||||||||||||| +26|2023-10-06T20:22:46.4250000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:22:46.4250000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:22:45.9070000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:22:46.4700000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||116.60|93.22|0.00|0.86| +39|2023-10-06T20:22:46.5140000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6975|10000|||116.22|88.43|0.00|0.56| +261|2023-10-06T20:22:46.0170000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:22:46.5580000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|714003|40D10000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|33232566|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||116.67|93.24|0.00|0.93|0001A6EA|0|1| +38|2023-10-06T20:22:46.5580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||116.67|93.24|0.00|0.93|0|0|0|||||||||||||||| +26|2023-10-06T20:22:46.5580000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +261|2023-10-06T20:22:46.1300000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:22:46.7810000-07:00|10FF0004|Buhojaqe Zijaqe|0001A6E8|80739|80739|8400|10000|0||116.29|92.22|0.00|1.14|1C00|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T20:22:46.7810000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +34|2023-10-06T20:22:46.7810000-07:00|400226FD|Carbuncle|400226FD|Carbuncle|01| +261|2023-10-06T20:22:46.3250000-07:00|Change|400226FD||| +261|2023-10-06T20:22:46.3250000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T20:22:46.8250000-07:00|10FF0007|Kehabiqo Febiqo|0001A6E7|112540||||||116.93|92.32|0.00|0.88| +37|2023-10-06T20:22:47.0480000-07:00|40022550|Zeromus|0001A6E9|33218647||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:47.0480000-07:00|10FF0002|Suchichi Suchi|0001A6E9|90128|90128|10000|10000|0||115.68|88.82|0.00|-1.06|1600|0|0|01|0747|0|41F00000|| +39|2023-10-06T20:22:47.0480000-07:00|10FF0007|Kehabiqo Febiqo|113825|128564|10000|10000|||116.95|92.44|0.00|-0.19| +39|2023-10-06T20:22:47.0480000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9800|10000|||118.64|93.06|0.00|0.88| +21|2023-10-06T20:22:47.0480000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|41D00000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|33232566|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||118.64|93.06|0.00|0.88|0001A6EB|0|1| +38|2023-10-06T20:22:47.0480000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||115.68|88.82|0.00|-1.06|0|0|0|||||||||||||||| +38|2023-10-06T20:22:47.0480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||118.64|93.06|0.00|0.88|0|0|0|||||||||||||||| +26|2023-10-06T20:22:47.0480000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:22:46.5180000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:22:47.0930000-07:00|40022550|Zeromus|0001A6EA|33202054||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:47.0930000-07:00|10FF0005|Wuwuchu Wuchu|0001A6EA|90055|90055|10000|10000|0||116.78|93.28|-0.02|-2.24|2700|0|0|01|02000A1B|01|41F00000|| +21|2023-10-06T20:22:47.0930000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|9C2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33218647|40478540|10000|10000|||100.00|80.10|0.00|0.00|113825|128564|10000|10000|||116.96|92.53|0.00|-0.66|0001A6EC|0|1| +38|2023-10-06T20:22:47.0930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113825|128564|10000|10000|0||116.96|92.53|0.00|-0.66|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:22:47.0930000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:22:47.0930000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||116.78|93.28|-0.02|-2.24|0|0|0|||||||||||||||| +261|2023-10-06T20:22:46.6290000-07:00|Change|10FF0004||||||||||| +20|2023-10-06T20:22:47.3170000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|118.19|92.85|0.00|0.62| +21|2023-10-06T20:22:47.3170000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|327B0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|33202054|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6000|10000|||118.08|93.36|0.00|-2.20|0001A6ED|0|1| +38|2023-10-06T20:22:47.3170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6000|10000|0||118.08|93.36|0.00|-2.20|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:47.3170000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:47.3170000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +261|2023-10-06T20:22:46.8540000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:22:46.8540000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:22:47.4500000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15110000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|113825|128564|10000|10000|||116.98|92.64|0.00|-2.14|77430|77430|10000|10000|||99.35|94.65|0.00|2.90|0001A6EE|0|1| +21|2023-10-06T20:22:47.5850000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|5B6D0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|33202054|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||116.81|93.25|-0.02|-2.48|0001A6EF|0|1| +21|2023-10-06T20:22:47.5850000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|149C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33202054|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||116.81|93.25|-0.02|-2.48|0001A6F0|0|1| +38|2023-10-06T20:22:47.5850000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||116.81|93.25|-0.02|-2.48|0|0|0||||||||||||| +30|2023-10-06T20:22:47.5850000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:22:47.5850000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:22:47.5850000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:22:47.6290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33202054|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6000|10000|||118.08|93.36|0.00|-2.20|0001A6F1|0|1| +31|2023-10-06T20:22:47.6290000-07:00|10FF0001||||| +37|2023-10-06T20:22:47.6740000-07:00|40022550|Zeromus|0001A6EB|33185206||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:47.6740000-07:00|10FF0008|Kokosaze Lulusaze|0001A6EB|79111|79111|9500|10000|0||118.64|93.06|0.00|-2.18|1B00|0|0|01|02000B25|0|0|| +21|2023-10-06T20:22:47.6740000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|16B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33202054|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||118.64|93.06|0.00|-2.18|0001A6F2|0|1| +38|2023-10-06T20:22:47.6740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||118.64|93.06|0.00|-2.18|0|0|0|||||||||||||||| +30|2023-10-06T20:22:47.6740000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +20|2023-10-06T20:22:47.7180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|117.12|92.69|0.00|0.39| +38|2023-10-06T20:22:47.7180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6000|10000|0||118.08|93.36|0.00|-2.20|0|0|0||||||||||||||||||| +30|2023-10-06T20:22:47.7180000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:22:47.8510000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|454003|3E800000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|33185206|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7700|10000|||116.23|93.03|0.00|-2.24|0001A6F3|0|1| +38|2023-10-06T20:22:47.8510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7500|10000|0||116.23|93.03|0.00|-2.24|0|0|0||||||||||||| +26|2023-10-06T20:22:47.8510000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:22:47.8510000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:22:47.8510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8950|10000|0||117.18|92.74|0.00|-0.15|0|0|0|||||||||||||||| +261|2023-10-06T20:22:47.3640000-07:00|Change|10FF0003||||||||||||||||||||||| +38|2023-10-06T20:22:47.9400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||117.07|93.14|-0.02|2.63|0|0|0||||||||||||| +261|2023-10-06T20:22:47.5560000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T20:22:47.9850000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7525|10000|0||118.58|93.55|0.00|-2.20|0|0|0|||||||||| +26|2023-10-06T20:22:47.9850000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:22:48.0300000-07:00|40022550|Zeromus|0001A6EC|33145226||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:48.0740000-07:00|40022550|Zeromus|0001A6EF|33121821||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:48.0740000-07:00|10FF0005|Wuwuchu Wuchu|0001A6EF|90055|90055|10000|10000|0||117.22|93.12|0.00|1.99|2700|0|0|01|02000A1C|0|42700000|| +38|2023-10-06T20:22:48.0750000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||117.22|93.12|0.00|1.99|0|0|0||||||||||||| +37|2023-10-06T20:22:48.1180000-07:00|40022550|Zeromus|0001A6F0|33116545||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:48.1620000-07:00|40022550|Zeromus|0001A6F1|33114474||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:48.2520000-07:00|10FF0007|Kehabiqo Febiqo|0001A6EE|119218||||||116.99|93.06|0.00|-1.52| +21|2023-10-06T20:22:48.2520000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|58D10000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|33114474|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7525|10000|||118.58|93.55|0.00|-2.20|0001A6F4|0|1| +261|2023-10-06T20:22:47.8790000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:22:48.4310000-07:00|40022550|Zeromus|0001A6F2|33108660||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:48.4760000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33108660|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||117.33|92.64|0.00|-1.50|0001A6F5|0|1| +37|2023-10-06T20:22:48.6080000-07:00|40022550|Zeromus|0001A6ED|33095737||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:48.6080000-07:00|10FF0001|Sesuga Sapisuga|0001A6ED|127791|127791|6400|10000|0||118.08|93.36|0.00|-2.20|1300|0|0|0| +261|2023-10-06T20:22:48.1150000-07:00|Change|10FF0001||||| +37|2023-10-06T20:22:48.6540000-07:00|40022550|Zeromus|0001A6F3|33079737||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:48.6540000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|300B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33108660|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8950|10000|||117.20|92.76|0.00|-2.21|0001A6F6|0|1| +21|2023-10-06T20:22:48.7420000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|726003|340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33079737|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7500|10000|||117.31|93.16|0.00|1.90|0001A6F7|0|1| +21|2023-10-06T20:22:48.8320000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|352003|590F0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|33079737|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7500|10000|||117.51|93.19|0.00|1.69|0001A6F8|0|1| +38|2023-10-06T20:22:48.8320000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7200|10000|0||117.51|93.19|0.00|1.69|0|0|0||||||||||||| +30|2023-10-06T20:22:48.8320000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:22:48.4000000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T20:22:48.9220000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1527|127791|127791|6400|10000|||118.08|93.36|0.00|-2.20|10FF0006|Wowobora Gogobora|0|80739|80739|7125|10000|||118.58|93.55|0.00|-2.20| +37|2023-10-06T20:22:48.9220000-07:00|40022550|Zeromus|0001A6F4|33057000||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:48.9220000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33079737|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8550|10000|||117.20|92.76|0.00|-2.21|0001A6F9|0|1| +38|2023-10-06T20:22:48.9220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|0||118.08|93.36|0.00|-2.20|0|0|0||||||||||||||||||| +21|2023-10-06T20:22:48.9670000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|726003|4C0C0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|33079737|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||117.33|92.64|0.00|-1.50|0001A6FA|0|1| +38|2023-10-06T20:22:48.9670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||117.33|92.64|0.00|-1.50|0|0|0|||||||||||||||| +30|2023-10-06T20:22:48.9670000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:22:49.0110000-07:00|40022550|Zeromus|0001A6F5|33054098||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:49.0110000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33057000|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||118.64|93.06|0.00|-2.18|0001A6FB|0|1| +21|2023-10-06T20:22:49.0550000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33057000|40478540|10000|10000|||100.00|80.10|0.00|0.00|119218|128564|10000|10000|||116.92|93.06|0.00|-1.59|0001A6FC|0|1| +21|2023-10-06T20:22:49.0550000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E1C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|119218|128564|10000|10000|||116.92|93.06|0.00|-1.59|33057000|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A6FD|0|1| +21|2023-10-06T20:22:49.1010000-07:00|40022567|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.00|100.00|0.00|0.79|0001A6FE|0|0| +21|2023-10-06T20:22:49.1010000-07:00|40022568|Zeromus|8CF8|unknown_8cf8|40022568|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||86.00|100.00|0.00|0.79|44|44|0|10000|||86.00|100.00|0.00|0.79|0001A6FF|0|1| +21|2023-10-06T20:22:49.1010000-07:00|40022569|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||107.00|93.00|0.00|0.79|0001A700|0|0| +21|2023-10-06T20:22:49.1010000-07:00|4002256A|Zeromus|8CF8|unknown_8cf8|4002256A|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||107.00|93.00|0.00|0.79|44|44|0|10000|||107.00|93.00|0.00|0.79|0001A701|0|1| +21|2023-10-06T20:22:49.1010000-07:00|4002256B|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||93.00|93.00|0.00|0.79|0001A702|0|0| +21|2023-10-06T20:22:49.1010000-07:00|4002256C|Zeromus|8CF8|unknown_8cf8|4002256C|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||93.00|93.00|0.00|0.79|44|44|0|10000|||93.00|93.00|0.00|0.79|0001A703|0|1| +21|2023-10-06T20:22:49.1010000-07:00|10FF0006|Wowobora Gogobora|5EE8|Druochole|10FF0007|Kehabiqo Febiqo|4|4BC70000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|119218|128564|10000|10000|||116.92|93.06|0.00|-1.59|80739|80739|7125|10000|||118.58|93.55|0.00|-2.20|0001A704|0|1| +261|2023-10-06T20:22:48.6090000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:22:48.6090000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:22:48.6090000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:22:48.6090000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:22:48.6090000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:22:48.6090000-07:00|Change|4002256C||||||||||||| +39|2023-10-06T20:22:49.1440000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||117.26|92.58|0.00|-1.97| +261|2023-10-06T20:22:48.6090000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:22:49.1890000-07:00|10FF0003|Gegehi Gehi|73085|73085|7400|10000|||117.72|93.21|0.00|-2.21| +24|2023-10-06T20:22:49.1900000-07:00|40022550|Zeromus|DoT|0|274D|33054098|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||117.26|92.58|0.00|-1.97| +21|2023-10-06T20:22:49.1900000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33054098|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7125|10000|||118.58|93.55|0.00|-2.17|0001A705|0|1| +38|2023-10-06T20:22:49.1900000-07:00|40022550|Zeromus|005A5A00|33044037|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T20:22:49.2340000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.35|94.65|0.00|2.69| +37|2023-10-06T20:22:49.2790000-07:00|40022550|Zeromus|0001A6F7|33043985||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:22:49.3230000-07:00|1D4C|3| +39|2023-10-06T20:22:49.3670000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6600|10000|||118.08|93.36|0.00|-2.20| +39|2023-10-06T20:22:49.3670000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8750|10000|||117.20|92.76|0.00|-2.21| +04|2023-10-06T20:22:48.9570000-07:00|400226C1|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|75851|0|10000|||93.24|84.27|0.00|1.90| +261|2023-10-06T20:22:48.9570000-07:00|Remove|400226C1| +37|2023-10-06T20:22:49.4560000-07:00|40022550|Zeromus|0001A6F6|33031686||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:49.4560000-07:00|40022550|Zeromus|0001A6F9|33031543||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:49.4560000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||117.38|93.10|-0.02|-2.28| +39|2023-10-06T20:22:49.5020000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7330|10000|||118.58|93.55|0.00|-1.91| +21|2023-10-06T20:22:49.5020000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|31FC0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|33031543|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||118.64|93.06|0.00|-2.18|0001A706|0|1| +38|2023-10-06T20:22:49.5020000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|0||118.64|93.06|0.00|-2.18|0|0|0|||||||||||||||| +26|2023-10-06T20:22:49.5020000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:22:49.0830000-07:00|Change|10FF0008||| +37|2023-10-06T20:22:49.5460000-07:00|40022550|Zeromus|0001A6FB|33031363||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:49.5460000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|16B50000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|33031543|40478540|10000|10000|||100.00|80.10|0.00|0.00|119218|128564|10000|10000|||115.21|93.00|0.00|-1.61|0001A707|0|1| +261|2023-10-06T20:22:49.0830000-07:00|Change|10FF0006||||| +261|2023-10-06T20:22:49.1840000-07:00|Change|10FF0001||| +37|2023-10-06T20:22:49.5900000-07:00|40022550|Zeromus|0001A6FC|33028563||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:49.5900000-07:00|40022550|Zeromus|0001A6FA|33009095||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:49.5900000-07:00|40022550|Zeromus|0001A6F8|32986296||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:49.6340000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|724003|42D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33031363|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7400|10000|||117.75|93.22|0.00|-2.21|0001A708|0|1| +37|2023-10-06T20:22:49.7230000-07:00|40022550|Zeromus|0001A705|32986237||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:49.7680000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7330|10000|0||118.58|93.55|0.00|-1.84|0|0|0||||||||||||| +26|2023-10-06T20:22:49.7680000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:22:49.7680000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7330|10000|||118.58|93.55|0.00|-1.84|80739|80739|7330|10000|||118.58|93.55|0.00|-1.84|0001A709|0|1| +37|2023-10-06T20:22:49.8580000-07:00|10FF0007|Kehabiqo Febiqo|0001A6FD|103318||||||115.19|93.00|0.00|-2.27| +37|2023-10-06T20:22:49.8580000-07:00|10FF0007|Kehabiqo Febiqo|0001A704|122717||||||115.19|93.00|0.00|-2.27| +37|2023-10-06T20:22:49.8580000-07:00|10FF0006|Wowobora Gogobora|0001A704|80739|80739|8030|10000|0||118.58|93.55|0.00|-1.84|2800|0|0|0| +21|2023-10-06T20:22:49.8580000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|714003|330E0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32986296|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||117.95|93.31|0.00|-1.88|0001A70A|0|1| +38|2023-10-06T20:22:49.8580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6600|10000|0||117.95|93.31|0.00|-1.88|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:49.8580000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:49.8580000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:22:49.3720000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:22:49.9010000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32986237|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||117.53|93.18|0.00|-1.87|0001A70B|0|1| +31|2023-10-06T20:22:49.9010000-07:00|10FF0001||||| +39|2023-10-06T20:22:50.0340000-07:00|10FF0007|Kehabiqo Febiqo|124002|128564|10000|10000|||115.19|93.00|0.00|-2.27| +39|2023-10-06T20:22:50.0340000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9400|10000|||118.64|93.06|0.00|-2.18| +261|2023-10-06T20:22:49.5540000-07:00|Change|10FF0008||| +37|2023-10-06T20:22:50.0790000-07:00|40022550|Zeromus|0001A707|32980424||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:50.0790000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|43AF0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|32986237|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||117.39|93.10|0.00|-1.89|0001A70C|0|1| +21|2023-10-06T20:22:50.1230000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|32986237|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8750|10000|||117.20|92.76|0.00|-2.21|0001A70D|0|1| +261|2023-10-06T20:22:49.6780000-07:00|Change|10FF0004||| +37|2023-10-06T20:22:50.1690000-07:00|40022550|Zeromus|0001A706|32967628||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:50.1690000-07:00|10FF0008|Kokosaze Lulusaze|0001A706|79111|79111|9400|10000|0||118.64|93.06|0.00|-2.18|1B00|0|0|01|02000B25|0|0|| +21|2023-10-06T20:22:50.1690000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|1E550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32986237|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||118.64|93.06|0.00|-2.18|0001A70E|0|1| +38|2023-10-06T20:22:50.1690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||118.64|93.06|0.00|-2.18|0|0|0|||||||||||||||| +30|2023-10-06T20:22:50.1690000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:22:50.2570000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|722003|505D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32967628|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||115.28|91.97|0.00|-1.61|0001A70F|0|1| +37|2023-10-06T20:22:50.4350000-07:00|40022550|Zeromus|0001A70B|32965466||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:50.1400000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:22:50.1400000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:50.1400000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:22:50.6590000-07:00|40022550|Zeromus|0001A70C|32948139||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:50.2510000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:22:50.7480000-07:00|40022550|Zeromus|0001A70D|32948139|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:22:50.7480000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:22:50.7920000-07:00|40022550|Zeromus|0001A708|32931033||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:50.7920000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|32948139|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8030|10000|||115.39|95.00|0.00|-1.15|0001A710|0|1| +21|2023-10-06T20:22:50.7920000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|F960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32948139|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||115.99|93.93|0.00|-2.03|0001A711|0|1| +38|2023-10-06T20:22:50.7920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7630|10000|0||115.39|95.00|0.00|-1.15|0|0|0|||||||||| +26|2023-10-06T20:22:50.7920000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:22:50.7920000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:22:50.8810000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|144C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|124002|128564|10000|10000|||111.56|91.04|-0.02|-1.62|77430|77430|10000|10000|||99.35|94.65|0.00|2.97|0001A712|0|1| +38|2023-10-06T20:22:50.8810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8900|10000|0||115.04|93.50|-0.02|-1.34|0|0|0|||||||||||||||| +37|2023-10-06T20:22:50.9250000-07:00|40022550|Zeromus|0001A70E|32923268||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:51.0150000-07:00|40022550|Zeromus|0001A70F|32902695||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:51.0150000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8180|10000|0||114.34|95.23|-0.02|-2.38|0|0|0|||||||||| +37|2023-10-06T20:22:51.1480000-07:00|40022550|Zeromus|0001A70A|32889625||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:51.1480000-07:00|10FF0001|Sesuga Sapisuga|0001A70A|127791|127791|7000|10000|0||110.62|91.14|0.00|-1.86|1300|0|0|0| +261|2023-10-06T20:22:50.7560000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:22:50.7560000-07:00|Change|10FF0008||||||||| +20|2023-10-06T20:22:51.2370000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|117.75|93.22|0.00|-2.21| +261|2023-10-06T20:22:50.7560000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:22:50.7560000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:22:51.2810000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BA60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32889625|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||109.00|91.59|0.00|-1.64|0001A713|0|1| +37|2023-10-06T20:22:51.3260000-07:00|40022550|Zeromus|0001A711|32885635||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:50.9930000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:22:51.4600000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35724003|302F0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|32885635|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.53|91.50|0.00|-1.64|0001A714|0|1| +261|2023-10-06T20:22:50.9930000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:22:51.1070000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:22:51.5490000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15D4|127791|127791|7000|10000|||108.07|91.22|0.00|-2.51|10FF0006|Wowobora Gogobora|0|80739|80739|8180|10000|||110.38|96.10|-0.02|-1.48| +37|2023-10-06T20:22:51.5490000-07:00|40022550|Zeromus|0001A710|32885635|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:22:51.5490000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:22:51.5490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|0||108.07|91.22|0.00|-2.51|0|0|0||||||||||||||||||| +261|2023-10-06T20:22:51.2060000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:22:51.6810000-07:00|10FF0007|Kehabiqo Febiqo|0001A712|128564||||||106.90|90.86|0.00|-1.42| +39|2023-10-06T20:22:51.7270000-07:00|400226FD|Carbuncle|75851|75851|10000|10000|||115.50|94.60|0.00|-0.73| +37|2023-10-06T20:22:51.8160000-07:00|40022550|Zeromus|0001A713|32882653||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:51.4000000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:22:51.9940000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32882653|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8180|10000|||107.58|96.40|0.00|-1.49|0001A715|0|1| +261|2023-10-06T20:22:51.4930000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:22:51.5880000-07:00|Change|400226FD||||||||| +21|2023-10-06T20:22:52.0390000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|21B50000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|32882653|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||104.39|91.99|0.00|-1.21|0001A716|0|1| +21|2023-10-06T20:22:52.0390000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|32882653|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||112.29|102.12|0.00|-0.55|0001A717|0|1| +38|2023-10-06T20:22:52.0390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||112.29|102.12|0.00|-0.55|0|0|0|||||||||||||||| +26|2023-10-06T20:22:52.0390000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:22:52.0840000-07:00|40022708||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:22:52.0840000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||106.32|91.69|0.00|-2.62|90128|90128|10000|10000|||106.32|91.69|0.00|-2.62|0001A718|0|1| +21|2023-10-06T20:22:52.0840000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40860000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||104.39|91.99|0.00|-1.21|32882653|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A719|0|1| +21|2023-10-06T20:22:52.0840000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32882653|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8900|10000|||108.92|97.76|0.00|-0.82|0001A71A|0|1| +38|2023-10-06T20:22:52.0840000-07:00|40022708||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:22:52.0840000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||106.32|91.69|0.00|-2.62|0|0|0|||||||||||||||| +26|2023-10-06T20:22:52.0840000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:22:52.1280000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||106.32|91.69|0.00|-2.62| +261|2023-10-06T20:22:51.7050000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:22:51.7050000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:22:52.1730000-07:00|10FF0003|Gegehi Gehi|73085|73085|7600|10000|||117.75|93.22|0.00|-2.21| +24|2023-10-06T20:22:52.1730000-07:00|40022550|Zeromus|DoT|0|2647|32882653|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||106.26|91.57|-0.02|-1.99| +21|2023-10-06T20:22:52.1730000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|AC60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32882653|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7000|10000|||104.27|90.33|0.00|-2.62|0001A71B|0|1| +38|2023-10-06T20:22:52.1730000-07:00|40022550|Zeromus|005A5A00|32872854|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +31|2023-10-06T20:22:52.1730000-07:00|10FF0001||||| +39|2023-10-06T20:22:52.2170000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||99.41|94.98|0.00|1.81| +38|2023-10-06T20:22:52.2620000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8180|10000|0||106.27|96.16|0.00|-1.73|0|0|0||||||||||||| +26|2023-10-06T20:22:52.2620000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:22:52.2620000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8180|10000|||106.27|96.16|0.00|-1.73|80739|80739|8180|10000|||106.27|96.16|0.00|-1.73|0001A71C|0|1| +261|2023-10-06T20:22:51.8170000-07:00|Add|40022708||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:22:51.8170000-07:00|40022708|Emerald Garuda|00|5A|10FF0008|00||10263|13506|72376|75851|10000|10000|||113.97|104.14|0.00|-2.68| +261|2023-10-06T20:22:51.8170000-07:00|Change|10FF0003||||| +261|2023-10-06T20:22:51.8170000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:51.8170000-07:00|Change|40022708||||| +39|2023-10-06T20:22:52.3510000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7200|10000|||103.01|89.97|0.00|-2.64| +39|2023-10-06T20:22:52.3510000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9100|10000|||108.09|98.77|0.00|-0.58| +36|2023-10-06T20:22:52.3510000-07:00|1E28|3| +39|2023-10-06T20:22:52.4410000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||106.95|95.17|0.00|-1.75| +21|2023-10-06T20:22:52.4410000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|13010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32872854|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||103.57|92.34|0.00|-2.48|0001A71D|0|1| +21|2023-10-06T20:22:52.4410000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|41CF0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32872854|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7200|10000|||102.40|89.79|0.00|-2.64|0001A71E|0|1| +38|2023-10-06T20:22:52.4410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|0||102.40|89.79|0.00|-2.64|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:52.4410000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:52.4410000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:22:52.4860000-07:00|40022550|Zeromus|0001A714|32860519||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:52.4860000-07:00|10FF0002|Suchichi Suchi|0001A714|90128|90128|10000|10000|0||104.06|91.84|0.00|-1.87|1600|0|0|01|74|0|C0A00000|| +39|2023-10-06T20:22:52.4860000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8385|10000|||104.49|96.23|0.00|-1.50| +20|2023-10-06T20:22:52.4860000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|108.08|98.85|0.00|-0.47| +37|2023-10-06T20:22:52.5300000-07:00|40022550|Zeromus|0001A715|32860461||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:52.5310000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|44EC0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|32872854|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||106.95|95.17|0.00|-1.75|0001A71F|0|1| +37|2023-10-06T20:22:52.6200000-07:00|10FF0002|Suchichi Suchi|0001A718|90128|90128|10000|10000|0||103.71|91.79|0.00|-1.91|1600|0|0|01|74|0|40A00000|| +37|2023-10-06T20:22:52.6200000-07:00|40022550|Zeromus|0001A71A|32860317||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:52.6200000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.71|91.79|0.00|-1.91|0|0|0|||||||||||||||| +261|2023-10-06T20:22:52.2400000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:22:52.2400000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:22:52.6640000-07:00|40022550|Zeromus|0001A716|32851688||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:52.6640000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|32020000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|32860317|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7600|10000|||117.75|93.22|0.00|-2.21|0001A720|0|1| +38|2023-10-06T20:22:52.6640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7400|10000|0||117.75|93.22|0.00|-2.21|0|0|0||||||| +26|2023-10-06T20:22:52.6640000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:22:52.6640000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:22:52.7090000-07:00|40022550|Zeromus|0001A71B|32848930||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:52.3340000-07:00|Change|40022666||||||||| +37|2023-10-06T20:22:52.8860000-07:00|10FF0007|Kehabiqo Febiqo|0001A719|112046||||||101.88|92.56|0.00|-1.80| +261|2023-10-06T20:22:52.4270000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:22:52.9760000-07:00|40022550|Zeromus|0001A71D|32844065||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:53.0200000-07:00|10FF0007|Kehabiqo Febiqo|113331|128564|10000|10000|||100.74|91.63|0.00|-2.42| +39|2023-10-06T20:22:53.0200000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9600|10000|||109.89|107.45|0.00|-0.33| +261|2023-10-06T20:22:52.5220000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:22:53.0660000-07:00|10FF0008|Kokosaze Lulusaze|0001A717|79111|79111|9600|10000|0||109.89|107.45|0.00|-0.33|1B00|0|0|01|02000AA5|0|0|| +37|2023-10-06T20:22:53.0660000-07:00|40022550|Zeromus|0001A71F|32826421||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:53.0660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||109.89|107.45|0.00|-0.33|0|0|0|||||||||||||||| +261|2023-10-06T20:22:52.6330000-07:00|Change|400226FD||||||||| +261|2023-10-06T20:22:52.6330000-07:00|Change|40022708||| +261|2023-10-06T20:22:52.7470000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:22:52.7470000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:22:52.7470000-07:00|Change|10FF0003||||||||||||||||||||| +22|2023-10-06T20:22:53.3340000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|C790000|E90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|8385|10000|||101.51|97.09|0.00|-0.94|80739|80739|8385|10000|||101.51|97.09|0.00|-0.94|0001A721|0|6| +22|2023-10-06T20:22:53.3340000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|C740000|D90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||105.12|96.21|0.00|-2.18|80739|80739|8385|10000|||101.51|97.09|0.00|-0.94|0001A721|1|6| +22|2023-10-06T20:22:53.3340000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|CEA0000|530E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|113331|128564|10000|10000|||99.35|91.41|0.00|-2.76|80739|80739|8385|10000|||101.51|97.09|0.00|-0.94|0001A721|2|6| +22|2023-10-06T20:22:53.3340000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|200004|14B80000|4C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|9100|10000|||108.05|98.99|0.00|-2.74|80739|80739|8385|10000|||101.51|97.09|0.00|-0.94|0001A721|3|6| +22|2023-10-06T20:22:53.3340000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|C690000|B60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|7200|10000|||98.03|88.76|0.00|-2.77|80739|80739|8385|10000|||101.51|97.09|0.00|-0.94|0001A721|4|6| +22|2023-10-06T20:22:53.3340000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|CC20000|D30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.01|89.67|0.00|-2.03|80739|80739|8385|10000|||101.51|97.09|0.00|-0.94|0001A721|5|6| +38|2023-10-06T20:22:53.3340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113331|128564|10000|10000|8||99.35|91.41|0.00|-2.76|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:22:53.3340000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:22:53.3340000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.01|89.67|0.00|-2.03|0|0|0|||||||||||||||| +26|2023-10-06T20:22:53.3340000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:22:53.3340000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7485|10000|12||101.51|97.09|0.00|-0.94|0|0|0|||||||||||||||| +26|2023-10-06T20:22:53.3340000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:22:53.3340000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:22:53.3340000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:22:53.3340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|7||98.03|88.76|0.00|-2.77|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:53.3340000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:22:53.3340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9100|10000|21||108.05|98.99|0.00|-2.74|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:53.3340000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:22:53.3340000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||105.12|96.21|0.00|-2.18|0|0|0|||||||||||||||| +26|2023-10-06T20:22:53.3340000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:22:53.4220000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31CB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32826421|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9100|10000|||108.05|98.99|0.00|-2.74|0001A722|0|1| +37|2023-10-06T20:22:53.4670000-07:00|40022550|Zeromus|0001A720|32813619||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:53.0990000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:22:53.1900000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:22:53.6890000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32813619|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7400|10000|||116.93|94.20|0.00|-1.03|0001A723|0|1| +37|2023-10-06T20:22:53.7340000-07:00|40022550|Zeromus|0001A71E|32796772||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:53.7340000-07:00|10FF0001|Sesuga Sapisuga|0001A71E|127791|127791|7600|10000|7||95.72|88.46|0.00|-2.91|1300|0|0|0| +21|2023-10-06T20:22:53.7340000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|33440000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|32813619|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7400|10000|||116.93|94.20|0.00|-1.03|0001A724|0|1| +38|2023-10-06T20:22:53.7340000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7100|10000|0||116.93|94.20|0.00|-1.03|0|0|0|||||||||| +30|2023-10-06T20:22:53.7340000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:22:53.7340000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:22:53.2870000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:22:53.8680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9250|10000|21||108.05|98.99|0.00|-1.88|0|0|0||||||||||||||||||| +21|2023-10-06T20:22:53.9570000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F722003|6D8B0000|104|14798000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|32796772|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||94.62|89.17|0.00|-2.38|0001A725|0|1| +22|2023-10-06T20:22:53.9570000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|0001A726|0|8| +22|2023-10-06T20:22:53.9570000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||101.86|98.67|0.00|-2.55|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|0001A726|1|8| +22|2023-10-06T20:22:53.9570000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9250|10000|||108.05|99.00|0.00|-1.18|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|0001A726|2|8| +22|2023-10-06T20:22:53.9570000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|113331|128564|10000|10000|||99.10|93.49|0.00|-2.11|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|0001A726|3|8| +22|2023-10-06T20:22:53.9570000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||110.55|110.25|0.00|0.83|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|0001A726|4|8| +22|2023-10-06T20:22:53.9570000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|7100|10000|||116.19|95.11|0.00|-2.32|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|0001A726|5|8| +22|2023-10-06T20:22:53.9570000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7600|10000|||94.61|87.78|0.00|-2.91|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|0001A726|6|8| +22|2023-10-06T20:22:53.9570000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||94.62|89.17|0.00|-2.38|80739|80739|7485|10000|||101.57|98.07|0.00|-0.09|0001A726|7|8| +38|2023-10-06T20:22:53.9570000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||94.62|89.17|0.00|-2.38|0|0|0|||||||||||||||| +30|2023-10-06T20:22:53.9570000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:22:53.9570000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:22:53.5820000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:22:54.0020000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CE50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32796772|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||101.59|98.82|0.00|-2.70|0001A727|0|1| +38|2023-10-06T20:22:54.0020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8035|10000|12||101.85|98.88|0.00|0.19|0|0|0|||||||||||||||| +38|2023-10-06T20:22:54.0450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113331|128564|10000|10000|8||99.21|93.36|0.00|-2.41|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:22:54.0450000-07:00|A91|Undying Flame|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +30|2023-10-06T20:22:54.0450000-07:00|A90|Rekindle|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|4B|128564|79111| +261|2023-10-06T20:22:53.5820000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T20:22:54.0900000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|125A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32796772|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.27|88.12|0.00|2.43|0001A728|0|1| +21|2023-10-06T20:22:54.1350000-07:00|40022708|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|352003|9F0D0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|32796772|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||113.97|104.14|0.00|-2.68|0001A729|0|1| +261|2023-10-06T20:22:53.6920000-07:00|Change|400226FD||| +261|2023-10-06T20:22:53.6920000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:22:54.2240000-07:00|40022550|Zeromus|0001A722|32784025||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:54.2240000-07:00|40022550|Zeromus|0001A723|32784001||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:54.2240000-07:00|10FF0003|Gegehi Gehi|0001A723|73085|73085|7100|10000|0||115.99|95.33|0.00|-2.20|2300|0|0|01|020004D2|0|C1F00000|| +21|2023-10-06T20:22:54.2240000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|149E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|113331|128564|10000|10000|||99.36|92.95|0.00|-2.85|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A72A|0|1| +261|2023-10-06T20:22:53.8070000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:22:54.2680000-07:00|10FF0006|Wowobora Gogobora|0001A721|80739|80739|8035|10000|12||102.35|100.31|0.00|0.19|2800|0|0|01|04000A31|0|41E8DF38|| +261|2023-10-06T20:22:53.8070000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:22:54.4020000-07:00|10FF0005|Wuwuchu Wuchu|0001A721|90055|90055|10000|10000|11||101.00|99.30|0.00|-3.07|2701|0|0|01|04000A31|0|41E7CABD|| +21|2023-10-06T20:22:54.4480000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32784001|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7600|10000|||91.82|86.78|0.00|2.83|0001A72B|0|1| +21|2023-10-06T20:22:54.4480000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|410D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32784001|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7100|10000|||115.15|96.42|0.00|-1.39|0001A72C|0|1| +31|2023-10-06T20:22:54.4480000-07:00|10FF0001||||| +37|2023-10-06T20:22:54.4920000-07:00|40022550|Zeromus|0001A724|32770877||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:54.4920000-07:00|10FF0003|Gegehi Gehi|0001A724|73085|73085|7100|10000|0||115.15|96.42|0.00|-1.39|2300|0|0|01|020004D2|0|41F00000|| +21|2023-10-06T20:22:54.4920000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|31FF0000|143E|340000|4|16CC8000|11B|2A8000|0|0|0|0|0|0|0|0|32784001|40478540|10000|10000|||100.00|80.10|0.00|0.00|113331|128564|10000|10000|||99.09|91.83|0.00|-2.91|0001A72D|0|1| +20|2023-10-06T20:22:54.4920000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|110.55|110.25|0.00|0.83| +38|2023-10-06T20:22:54.4920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7100|10000|0||115.15|96.42|0.00|-1.39|0|0|0|||||||||| +37|2023-10-06T20:22:54.5360000-07:00|10FF0007|Kehabiqo Febiqo|0001A721|116637|128564|10000|10000|8||98.91|91.15|0.00|3.01|1502|0|0|01|04000A31|0|41E6BA5B|| +37|2023-10-06T20:22:54.5360000-07:00|40022550|Zeromus|0001A727|32767576||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:54.5360000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1299|113331|128564|10000|10000|||98.91|91.15|0.00|3.01|10FF0008|Kokosaze Lulusaze|0|79111|79111|9600|10000|||110.55|110.25|0.00|1.19| +38|2023-10-06T20:22:54.5360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121398|128564|10000|10000|8||98.91|91.15|0.00|3.01|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:22:54.6260000-07:00|40022550|Zeromus|0001A728|32762878||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:54.6260000-07:00|10FF0002|Suchichi Suchi|0001A728|90128|90128|10000|10000|11||91.53|87.52|0.00|2.64|1600|0|0|01|03000322|0|C1F00000|| +37|2023-10-06T20:22:54.6700000-07:00|40022550|Zeromus|0001A725|32734835||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:54.6700000-07:00|10FF0002|Suchichi Suchi|0001A725|90128|90128|10000|10000|11||91.26|87.50|0.00|2.69|1600|0|0|01|03000322|0|41F00000|| +37|2023-10-06T20:22:54.6700000-07:00|10FF0004|Buhojaqe Zijaqe|0001A721|80739|80739|9250|10000|21||108.06|103.12|0.00|-0.08|1C03|0|0|01|05000A31|0|41E5A7EC|| +38|2023-10-06T20:22:54.6700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||91.26|87.50|0.00|2.69|0|0|0|||||||||||||||| +37|2023-10-06T20:22:54.7580000-07:00|10FF0006|Wowobora Gogobora|0001A726|80739|80739|8735|10000|12||103.33|103.24|0.00|0.32|2800|0|0|02|03000A3A|0|41700000|||||| +26|2023-10-06T20:22:54.7580000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:22:54.7580000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:22:54.2480000-07:00|Change|10FF0008||||||||||||||||||| +261|2023-10-06T20:22:54.3460000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:22:54.8030000-07:00|10FF0001|Sesuga Sapisuga|0001A721|127791|127791|7600|10000|7||90.76|85.55|0.00|2.10|1304|0|0|01|03000A31|0|41E49995|| +37|2023-10-06T20:22:54.8920000-07:00|10FF0005|Wuwuchu Wuchu|0001A726|90055|90055|10000|10000|11||100.90|100.32|0.00|3.08|2701|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:22:54.8920000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:22:54.8920000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +20|2023-10-06T20:22:54.8920000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|103.41|104.11|0.00|0.25| +261|2023-10-06T20:22:54.4430000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:22:54.9370000-07:00|10FF0002|Suchichi Suchi|0001A721|90128|90128|10000|10000|11||90.85|87.48|-0.01|2.76|1605|0|0|01|02000A31|0|41E38726|| +21|2023-10-06T20:22:54.9370000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|2D9C0000|200004|3E748000|0|0|0|0|0|0|0|0|0|0|0|0|32734835|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7600|10000|||90.76|85.55|0.00|2.10|0001A72E|0|1| +20|2023-10-06T20:22:54.9370000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|107.88|104.47|-0.02|-0.10| +38|2023-10-06T20:22:54.9370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6600|10000|7||90.76|85.55|0.00|2.10|0|0|0||||||||||||| +26|2023-10-06T20:22:54.9370000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:22:54.9370000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:22:54.9800000-07:00|40022550|Zeromus|0001A72B|32733119||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:54.4430000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:22:54.5360000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:22:55.0260000-07:00|10FF0007|Kehabiqo Febiqo|0001A72A|126676||||||97.91|89.38|0.00|3.11| +37|2023-10-06T20:22:55.0260000-07:00|10FF0004|Buhojaqe Zijaqe|0001A726|80739|80739|9250|10000|21||107.86|104.60|-0.02|-0.24|1C02|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:22:55.0260000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:22:55.0260000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:22:55.0260000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|710003|28250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32734835|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.88|100.39|0.00|3.09|0001A72F|0|1| +38|2023-10-06T20:22:55.0260000-07:00|40022550|Zeromus|005A5A00|32733119|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T20:22:55.0260000-07:00|A1A|Death's Design|57.99|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +261|2023-10-06T20:22:54.6540000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:54.6540000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:22:55.1140000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|16D90000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|126676|128564|10000|10000|||97.27|88.65|0.00|-3.07|32733119|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A730|0|1| +37|2023-10-06T20:22:55.1590000-07:00|10FF0007|Kehabiqo Febiqo|0001A726|126676|128564|10000|10000|8||97.27|88.65|0.00|-3.07|1503|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:22:55.1590000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:22:55.1590000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +39|2023-10-06T20:22:55.1590000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||90.84|87.46|0.00|2.75| +39|2023-10-06T20:22:55.2040000-07:00|10FF0003|Gegehi Gehi|73085|73085|7300|10000|||111.84|100.58|0.00|-0.82| +24|2023-10-06T20:22:55.2040000-07:00|40022550|Zeromus|DoT|0|2623|32733119|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||90.84|87.44|0.00|2.75| +38|2023-10-06T20:22:55.2040000-07:00|40022550|Zeromus|005A5A00|32723356|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T20:22:55.2480000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-2.92| +37|2023-10-06T20:22:55.2920000-07:00|10FF0008|Kokosaze Lulusaze|0001A726|79111|79111|9600|10000|0||110.55|110.25|0.00|-2.80|1B04|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:22:55.2920000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:22:55.2920000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +36|2023-10-06T20:22:55.3370000-07:00|1F04|3| +39|2023-10-06T20:22:55.3810000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6800|10000|||90.76|85.55|0.00|2.10| +39|2023-10-06T20:22:55.3810000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9450|10000|||107.82|104.96|0.00|-2.26| +37|2023-10-06T20:22:55.4260000-07:00|40022550|Zeromus|0001A729|32682639||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:55.4260000-07:00|10FF0003|Gegehi Gehi|0001A726|73085|73085|7300|10000|0||111.08|101.52|-0.02|-0.73|2305|0|0|02|01000A3A|0|41700000|||||| +26|2023-10-06T20:22:55.4260000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:22:55.4260000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +39|2023-10-06T20:22:55.4710000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.88|100.51|0.00|-3.10| +39|2023-10-06T20:22:55.5150000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8940|10000|||103.53|106.40|0.00|-3.01| +37|2023-10-06T20:22:55.5600000-07:00|10FF0001|Sesuga Sapisuga|0001A726|127791|127791|6800|10000|7||90.76|85.55|0.00|2.10|1306|0|0|02|04000A3A|0|41700000|||||| +26|2023-10-06T20:22:55.5600000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:22:55.5600000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:22:55.6040000-07:00|40022550|Zeromus|0001A72C|32665986||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:55.6940000-07:00|10FF0002|Suchichi Suchi|0001A726|90128|90128|10000|10000|11||90.68|86.92|0.00|2.75|1607|0|0|02|0A3A|0|41700000|||||| +26|2023-10-06T20:22:55.6940000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:22:55.6940000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:22:55.6940000-07:00|40022550|Zeromus|0001A72E|32654310||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:55.2950000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:22:55.8290000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32654310|40478540|10000|10000|||100.00|80.10|0.00|0.00|126676|128564|10000|10000|||93.85|87.47|0.00|-2.90|0001A731|0|1| +21|2023-10-06T20:22:55.8290000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36870000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|32654310|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8940|10000|||103.53|106.40|0.00|-3.01|0001A732|0|1| +04|2023-10-06T20:22:55.3870000-07:00|400226FD|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||112.84|98.53|0.00|-0.54| +261|2023-10-06T20:22:55.3870000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:22:55.3870000-07:00|Remove|400226FD| +21|2023-10-06T20:22:55.8730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|52C10000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32654310|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9450|10000|||107.80|105.06|0.00|-2.84|0001A733|0|1| +37|2023-10-06T20:22:55.9180000-07:00|10FF0007|Kehabiqo Febiqo|0001A730|120827|128564|10000|10000|0||93.85|87.47|0.00|-2.90|1500|0|0|01|04000000|0|0|| +38|2023-10-06T20:22:55.9180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120827|128564|10000|10000|0||93.85|87.47|0.00|-2.90|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:22:55.9180000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +24|2023-10-06T20:22:55.9630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C4|D650|120827|128564|10000|10000|||93.71|87.60|0.00|-2.89|10FF0004|Buhojaqe Zijaqe|1|80739|80739|9050|10000|||107.80|105.06|0.00|-2.84| +38|2023-10-06T20:22:55.9630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||93.71|87.60|0.00|-2.89|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:22:55.9630000-07:00|4C4|Excogitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|32|128564|80739| +261|2023-10-06T20:22:55.4820000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:22:56.0070000-07:00|40022550|Zeromus|0001A72D|32641511||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:56.0510000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||93.60|87.70|-0.01|-2.89| +39|2023-10-06T20:22:56.0510000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9800|10000|||110.55|110.25|0.00|-2.80| +261|2023-10-06T20:22:55.5780000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:22:55.5780000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:22:55.5780000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:22:55.5780000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:22:55.5780000-07:00|Change|10FF0008||||| +00|2023-10-06T20:22:55.0000000-07:00|0044|Zeromus|Begone, contemptible Light!| +37|2023-10-06T20:22:56.1860000-07:00|40022550|Zeromus|0001A72F|32631234||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:56.1860000-07:00|40022550|Zeromus|8B5D|Flare|40022550|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:56.1860000-07:00|4002256D|Zeromus|8B60|Flare|4002256D|Zeromus|7.700|110.00|115.00|0.00|0.00| +20|2023-10-06T20:22:56.1860000-07:00|4002256E|Zeromus|8B60|Flare|4002256E|Zeromus|7.700|90.00|85.00|0.00|0.00| +261|2023-10-06T20:22:55.7020000-07:00|Change|40022550||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|4002270E||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|40022711||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|40022710||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|40022714||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|4002270F||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|40022717||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|40022712||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|40022713||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|40022715||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.7020000-07:00|Add|40022716||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:55.8170000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:22:55.8170000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:22:55.8170000-07:00|Change|40022717||| +261|2023-10-06T20:22:55.8170000-07:00|Change|40022714||| +261|2023-10-06T20:22:55.8170000-07:00|Change|40022716||| +261|2023-10-06T20:22:55.8170000-07:00|Change|40022715||| +261|2023-10-06T20:22:55.8170000-07:00|Change|40022713||| +261|2023-10-06T20:22:55.8170000-07:00|Change|40022711||| +261|2023-10-06T20:22:55.8170000-07:00|Change|40022712||| +261|2023-10-06T20:22:55.8170000-07:00|Change|4002270E||| +261|2023-10-06T20:22:55.8170000-07:00|Change|4002270F||| +261|2023-10-06T20:22:55.8170000-07:00|Change|40022710||| +20|2023-10-06T20:22:56.3190000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|107.69|105.35|0.00|-0.69| +37|2023-10-06T20:22:56.3640000-07:00|40022550|Zeromus|0001A731|32628338||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:56.4530000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|27D00000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|32628338|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.78|86.50|0.00|2.70|0001A734|0|1| +38|2023-10-06T20:22:56.4530000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.70|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:22:56.4530000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:22:56.4530000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:22:56.4980000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|14DF|127791|127791|6800|10000|||91.08|86.43|0.00|1.91|10FF0006|Wowobora Gogobora|0|80739|80739|8540|10000|||103.55|106.40|0.00|1.78| +37|2023-10-06T20:22:56.4980000-07:00|40022550|Zeromus|0001A732|32614379||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:22:56.4980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6800|10000|7||91.08|86.43|0.00|1.91|0|0|0||||||||||||||||||| +24|2023-10-06T20:22:56.6310000-07:00|10FF0002|Suchichi Suchi|HoT|0|1519|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|10FF0006|Wowobora Gogobora|0|80739|80739|8540|10000|||103.76|106.57|0.00|1.40| +38|2023-10-06T20:22:56.6310000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:22:56.1450000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:22:56.1450000-07:00|Change|4002256D||||||||||||| +37|2023-10-06T20:22:56.6760000-07:00|40022550|Zeromus|0001A733|32593194||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:22:56.6760000-07:00|10FF0003|Gegehi Gehi|HoT|0|D0A|73085|73085|7300|10000|||107.53|106.61|0.00|-2.26|10FF0006|Wowobora Gogobora|0|80739|80739|8540|10000|||104.40|107.10|0.00|1.25| +38|2023-10-06T20:22:56.6760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7300|10000|0||107.53|106.61|0.00|-2.26|0|0|0||||||||||||| +21|2023-10-06T20:22:56.7200000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32614379|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6800|10000|||91.08|86.43|0.00|1.91|0001A735|0|1| +31|2023-10-06T20:22:56.7200000-07:00|10FF0001||||| +24|2023-10-06T20:22:56.8540000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|14F2|127791|127791|6800|10000|||91.08|86.43|0.00|1.91|10FF0006|Wowobora Gogobora|0|80739|80739|8540|10000|||105.00|107.61|0.00|1.11| +24|2023-10-06T20:22:56.8540000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D88|80739|80739|9050|10000|||107.38|107.51|0.00|-0.42|10FF0006|Wowobora Gogobora|0|80739|80739|8540|10000|||105.00|107.61|0.00|1.11| +38|2023-10-06T20:22:56.8540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6800|10000|7||91.08|86.43|0.00|1.91|0|0|0||||||||||||||||||| +38|2023-10-06T20:22:56.8540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9600|10000|21||107.38|107.51|0.00|-0.42|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:22:56.3390000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T20:22:56.8980000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32593194|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|0001A736|0|1| +24|2023-10-06T20:22:56.9420000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|C59|90055|90055|10000|10000|||99.04|99.81|0.00|-2.90|10FF0006|Wowobora Gogobora|0|80739|80739|8540|10000|||105.65|108.20|0.00|1.04| +21|2023-10-06T20:22:56.9420000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|166E0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|32593194|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||93.52|87.48|0.00|-2.91|0001A737|0|1| +21|2023-10-06T20:22:56.9420000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|350003|42FC0000|16C00F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|32593194|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9800|10000|||110.55|110.25|0.00|-2.80|0001A738|0|1| +38|2023-10-06T20:22:56.9420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9800|10000|0||110.55|110.25|0.00|-2.80|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:22:56.9420000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:22:56.9420000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||99.04|99.81|0.00|-2.90|0|0|0|||||||||||||||||||||| +24|2023-10-06T20:22:56.9870000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1436|80739|80739|8540|10000|||105.65|108.20|0.00|1.04|10FF0006|Wowobora Gogobora|0|80739|80739|8540|10000|||105.65|108.20|0.00|1.04| +38|2023-10-06T20:22:56.9870000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9090|10000|12||105.65|108.20|0.00|1.04|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:56.9870000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:22:57.0760000-07:00|40022550|Zeromus|0001A734|32583002||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:57.0760000-07:00|10FF0002|Suchichi Suchi|0001A734|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|1600|0|0|01|06000323|0|41F00000|| +38|2023-10-06T20:22:57.0760000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:22:56.6550000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:22:56.6550000-07:00|Change|10FF0008||||||||||||||| +261|2023-10-06T20:22:56.6550000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:22:57.2110000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32583002|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.45|98.42|0.00|-2.79|0001A739|0|1| +37|2023-10-06T20:22:57.2550000-07:00|40022550|Zeromus|0001A735|32581354||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:56.7670000-07:00|Change|10FF0005||||||||| +20|2023-10-06T20:22:57.3000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|107.00|110.22|0.00|-0.22| +20|2023-10-06T20:22:57.3440000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|106.68|109.56|0.00|0.33| +37|2023-10-06T20:22:57.4340000-07:00|40022550|Zeromus|0001A736|32578426||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:57.4340000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|712003|20DC0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|32581354|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6800|10000|||91.08|86.43|0.00|2.19|0001A73A|0|1| +37|2023-10-06T20:22:57.4790000-07:00|40022550|Zeromus|0001A737|32572684||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:57.4790000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|710003|3D300000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|32578426|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.40|96.60|0.00|-2.63|0001A73B|0|1| +24|2023-10-06T20:22:57.5230000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F95|128564|128564|10000|10000|||93.52|87.42|0.00|3.08|10FF0006|Wowobora Gogobora|0|80739|80739|9090|10000|||106.76|109.72|0.00|-0.01| +24|2023-10-06T20:22:57.5230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D8E|79111|79111|9800|10000|||110.55|110.25|0.00|-2.80|10FF0006|Wowobora Gogobora|0|80739|80739|9090|10000|||106.76|109.72|0.00|-0.01| +38|2023-10-06T20:22:57.5230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||93.52|87.42|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:22:57.5230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9800|10000|0||110.55|110.25|0.00|-2.80|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:22:57.7450000-07:00|40022550|Zeromus|0001A739|32568388||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:57.7450000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|300D0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|32572684|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7300|10000|||107.50|106.89|0.00|-2.87|0001A73C|0|1| +38|2023-10-06T20:22:57.7450000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7100|10000|0||107.50|106.89|0.00|-2.87|0|0|0||||||||||||| +30|2023-10-06T20:22:57.7450000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:22:57.7450000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:22:57.4420000-07:00|Change|10FF0003||||||||||||||||||||||| +21|2023-10-06T20:22:57.9230000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|25BC0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32568388|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9800|10000|||110.50|110.26|0.00|-2.32|0001A73D|0|1| +24|2023-10-06T20:22:57.9680000-07:00|40022550|Zeromus|DoT|A92|5AF|32568388|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9500|10000|||110.46|110.26|0.00|-2.82| +37|2023-10-06T20:22:57.9680000-07:00|40022550|Zeromus|0001A738|32549785||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:57.9680000-07:00|10FF0008|Kokosaze Lulusaze|0001A738|79111|79111|9500|10000|0||110.46|110.26|0.00|-2.82|1B00|0|0|01|02000A92|0|41700000|| +26|2023-10-06T20:22:57.9680000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:22:57.9680000-07:00|40022550|Zeromus|005A5A00|32549785|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T20:22:57.7320000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T20:22:57.7320000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:22:57.7320000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:22:57.7320000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:22:58.0560000-07:00|40022550|Zeromus|0001A73A|32541373||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:58.1450000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||90.78|86.50|0.00|2.18| +38|2023-10-06T20:22:58.1900000-07:00|40022722||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +39|2023-10-06T20:22:58.1900000-07:00|10FF0003|Gegehi Gehi|73085|73085|7300|10000|||107.54|106.99|0.00|1.50| +03|2023-10-06T20:22:57.7320000-07:00|40022722|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||107.30|111.18|0.00|1.83| +24|2023-10-06T20:22:58.1900000-07:00|40022550|Zeromus|DoT|0|267A|32549785|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||90.78|86.50|0.00|2.18| +38|2023-10-06T20:22:58.1900000-07:00|40022722|Carbuncle|005A5A00|72376|75851|10000|10000|0||107.30|111.18|0.00|1.83|0|0|0|||| +26|2023-10-06T20:22:58.1900000-07:00|30|Well Fed|2280.92|10FF0008|Kokosaze Lulusaze|40022722|Carbuncle|2964|75851|79111| +261|2023-10-06T20:22:57.7320000-07:00|Change|40022708||||| +38|2023-10-06T20:22:58.1900000-07:00|40022550|Zeromus|005A5A00|32531523|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T20:22:57.7320000-07:00|Add|40022722||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:22:58.2340000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +21|2023-10-06T20:22:58.2340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32270000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32549785|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9600|10000|||106.89|110.46|0.00|-2.92|0001A73E|0|1| +261|2023-10-06T20:22:57.7320000-07:00|Add|40022720||||||||||||||||||||||||||||||||| +261|2023-10-06T20:22:57.8510000-07:00|Change|40022722||| +21|2023-10-06T20:22:58.2790000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5CC40000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|32531523|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9090|10000|||106.86|109.94|0.00|-2.92|0001A73F|0|1| +36|2023-10-06T20:22:58.3230000-07:00|1FE0|3| +39|2023-10-06T20:22:58.3670000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7000|10000|||91.17|86.56|0.00|1.75| +39|2023-10-06T20:22:58.3670000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9400|10000|||106.89|110.46|0.00|-2.92| +261|2023-10-06T20:22:57.9680000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:22:58.4560000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||96.94|90.74|0.00|-3.12| +37|2023-10-06T20:22:58.5000000-07:00|40022550|Zeromus|0001A73B|32515859||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:58.5000000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8895|10000|||106.86|109.94|0.00|-2.92| +37|2023-10-06T20:22:58.5450000-07:00|40022550|Zeromus|0001A73C|32503558||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:58.5890000-07:00|40022550|Zeromus|0001A73D|32493898||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:58.7680000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|354003|45D60000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|32493898|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7300|10000|||108.45|109.47|0.00|0.36|0001A740|0|1| +38|2023-10-06T20:22:58.7680000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7000|10000|0||108.45|109.47|0.00|0.36|0|0|0|||||||||||||||| +30|2023-10-06T20:22:58.7680000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:22:58.7680000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:22:58.3710000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T20:22:58.9460000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|236C|127791|127791|7000|10000|||91.34|87.29|0.00|1.83|10FF0006|Wowobora Gogobora|1|80739|80739|8895|10000|||106.86|109.94|0.00|-2.92| +37|2023-10-06T20:22:58.9460000-07:00|40022550|Zeromus|0001A73F|32470150||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:22:58.9460000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|34520000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|32493898|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|0001A741|0|1| +38|2023-10-06T20:22:58.9460000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:58.9460000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:22:58.9460000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:22:58.9460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|7||91.34|87.29|0.00|1.83|0|0|0||||||||||||||||||| +26|2023-10-06T20:22:58.9460000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:22:58.9910000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32470150|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7000|10000|||91.34|87.29|0.00|1.83|0001A742|0|1| +31|2023-10-06T20:22:58.9910000-07:00|10FF0001||||| +261|2023-10-06T20:22:58.5630000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:22:59.0350000-07:00|40022550|Zeromus|0001A73E|32457311||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:22:59.0350000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||90.14|85.53|0.00|-2.93| +39|2023-10-06T20:22:59.0350000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9700|10000|||108.60|110.80|0.00|-1.31| +261|2023-10-06T20:22:58.6790000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:22:58.6790000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:22:58.6790000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:22:58.6790000-07:00|Change|40022722||| +21|2023-10-06T20:22:59.2140000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|EB80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32457311|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||90.14|85.53|0.00|-2.93|0001A743|0|1| +34|2023-10-06T20:22:59.2140000-07:00|40022722|Carbuncle|40022722|Carbuncle|01| +21|2023-10-06T20:22:59.3030000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|710003|36950000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|32457311|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||93.07|87.17|0.00|-2.24|0001A744|0|1| +38|2023-10-06T20:22:59.3030000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||93.07|87.17|0.00|-2.24|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:22:59.3030000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:22:59.3910000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|37D20000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|32457311|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||90.14|85.53|0.00|-3.08|0001A745|0|1| +21|2023-10-06T20:22:59.3910000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|352003|3AE80000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32457311|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||108.60|110.80|0.00|-1.31|0001A746|0|1| +37|2023-10-06T20:22:59.5240000-07:00|40022550|Zeromus|0001A742|32455657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:59.5240000-07:00|40022550|Zeromus|0001A740|32437779||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:59.5240000-07:00|10FF0003|Gegehi Gehi|0001A740|73085|73085|7000|10000|0||109.60|112.75|0.00|1.66|2300|0|0|01|040004D3|0|41F00000|| +38|2023-10-06T20:22:59.5250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7000|10000|0||109.60|112.75|0.00|1.66|0|0|0|||||||||||||||| +21|2023-10-06T20:22:59.5690000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|722003|376E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32457311|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|0001A747|0|1| +37|2023-10-06T20:22:59.6140000-07:00|40022550|Zeromus|0001A741|32424385||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:59.6140000-07:00|10FF0002|Suchichi Suchi|0001A741|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|1600|0|0|01|03000747|0|41F00000|| +38|2023-10-06T20:22:59.6140000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0||||||||||||||||||| +24|2023-10-06T20:22:59.6590000-07:00|10FF0002|Suchichi Suchi|HoT|0|14CC|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|10FF0006|Wowobora Gogobora|0|80739|80739|8895|10000|||107.44|112.46|0.00|0.56| +38|2023-10-06T20:22:59.6590000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0||||||||||||||||||| +24|2023-10-06T20:22:59.7030000-07:00|10FF0003|Gegehi Gehi|HoT|0|D1D|73085|73085|7000|10000|||109.79|113.30|0.00|1.14|10FF0003|Gegehi Gehi|0|73085|73085|7000|10000|||109.79|113.30|0.00|1.14| +21|2023-10-06T20:22:59.7030000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32424385|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|0001A748|0|1| +20|2023-10-06T20:22:59.7030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|107.17|111.60|0.00|1.02| +38|2023-10-06T20:22:59.7030000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7000|10000|0||109.79|113.30|0.00|1.14|0|0|0|||||||||||||||| +37|2023-10-06T20:22:59.7470000-07:00|40022550|Zeromus|0001A743|32420617||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:22:59.7920000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|107.58|112.48|0.00|0.98| +37|2023-10-06T20:22:59.8370000-07:00|40022550|Zeromus|0001A744|32406644||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:22:59.8370000-07:00|10FF0005|Wuwuchu Wuchu|0001A744|90055|90055|10000|10000|11||92.09|86.54|0.00|2.26|2700|0|0|01|07000A1B|01|41F00000|| +38|2023-10-06T20:22:59.8370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||92.09|86.54|0.00|2.26|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:22:59.8810000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|C5E|127791|127791|7000|10000|||91.34|87.29|0.00|2.26|10FF0006|Wowobora Gogobora|0|80739|80739|8895|10000|||107.70|112.50|0.00|1.33| +24|2023-10-06T20:22:59.8810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CEE|80739|80739|9400|10000|||107.20|111.72|-0.02|1.25|10FF0006|Wowobora Gogobora|0|80739|80739|8895|10000|||107.70|112.50|0.00|1.33| +38|2023-10-06T20:22:59.8810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|7||91.34|87.29|0.00|2.26|0|0|0||||||||||||||||||| +38|2023-10-06T20:22:59.8810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9950|10000|21||107.20|111.72|-0.02|1.25|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:22:59.9260000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1EED0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|32420617|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7000|10000|||91.34|87.29|0.00|2.26|0001A749|0|1| +24|2023-10-06T20:22:59.9700000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D39|90055|90055|10000|10000|||92.09|86.53|0.00|2.26|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||92.09|86.53|0.00|2.26| +38|2023-10-06T20:22:59.9700000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||92.09|86.53|0.00|2.26|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:00.0140000-07:00|40022550|Zeromus|0001A745|32392354||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:00.0140000-07:00|40022550|Zeromus|0001A746|32377274||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:00.0140000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C53|80739|80739|8895|10000|||107.72|112.50|0.00|2.39|10FF0006|Wowobora Gogobora|0|80739|80739|8895|10000|||107.72|112.50|0.00|2.39| +38|2023-10-06T20:23:00.0150000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9445|10000|12||107.72|112.50|0.00|2.39|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:00.0150000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:23:00.0600000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|48A30000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|32406644|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||92.09|86.53|0.00|2.26|0001A74A|0|1| +38|2023-10-06T20:23:00.0600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||92.09|86.53|0.00|2.26|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:00.0600000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:23:00.0600000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:23:00.0600000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:22:59.7410000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:22:59.7410000-07:00|Change|10FF0008||||| +37|2023-10-06T20:23:00.1920000-07:00|40022550|Zeromus|0001A747|32363084||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:22:59.7410000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:23:00.2370000-07:00|40022550|Zeromus|0001A748|32360271||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:00.4150000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32360271|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||92.09|86.53|0.00|2.97|0001A74B|0|1| +37|2023-10-06T20:23:00.5500000-07:00|40022550|Zeromus|0001A74A|32341676||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:00.5500000-07:00|10FF0005|Wuwuchu Wuchu|0001A74A|90055|90055|10000|10000|11||92.08|86.54|-0.02|-2.92|2700|0|0|01|07000A1D|0|42700000|| +24|2023-10-06T20:23:00.5500000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|279D|128564|128564|10000|10000|||90.14|85.53|0.00|2.08|10FF0006|Wowobora Gogobora|0|80739|80739|9445|10000|||107.74|112.50|0.00|-2.91| +24|2023-10-06T20:23:00.5500000-07:00|40022550|Zeromus|DoT|A92|4F1|32360271|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9400|10000|||108.60|110.80|0.00|-2.87| +24|2023-10-06T20:23:00.5500000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|CF8|79111|79111|9400|10000|||108.60|110.80|0.00|-2.87|10FF0006|Wowobora Gogobora|0|80739|80739|9445|10000|||107.74|112.50|0.00|-2.91| +21|2023-10-06T20:23:00.5500000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2DAD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32360271|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||90.14|85.53|0.00|2.08|0001A74C|0|1| +38|2023-10-06T20:23:00.5500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||90.14|85.53|0.00|2.08|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:00.5500000-07:00|40022550|Zeromus|005A5A00|32340411|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T20:23:00.5500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||108.60|110.80|0.00|-2.87|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:23:00.5500000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||92.08|86.54|-0.02|-2.92|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:23:00.5940000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|D9F0000|13000E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|32340411|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7000|10000|||91.34|87.29|0.00|2.26|0001A74D|0|1| +21|2023-10-06T20:23:00.6380000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30C40000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32340411|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9950|10000|||107.23|111.80|0.00|-2.92|0001A74E|0|1| +37|2023-10-06T20:23:00.6830000-07:00|40022550|Zeromus|0001A749|32332494||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:00.6830000-07:00|10FF0001|Sesuga Sapisuga|0001A749|127791|127791|8000|10000|7||91.34|87.29|0.00|2.26|1300|0|0|0| +261|2023-10-06T20:23:00.1900000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:23:00.7290000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35A40000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|32332494|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9445|10000|||107.74|112.50|0.00|-2.91|0001A74F|0|1| +20|2023-10-06T20:23:00.9140000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|1.486|108.60|110.80|0.00|-2.87| +37|2023-10-06T20:23:00.9510000-07:00|40022550|Zeromus|0001A74B|32328178||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:01.1320000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||90.78|86.50|0.00|2.18| +261|2023-10-06T20:23:00.6990000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:23:00.6990000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:23:01.1770000-07:00|40022550|Zeromus|0001A74C|32316485||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:01.1770000-07:00|10FF0003|Gegehi Gehi|73085|73085|7200|10000|||110.09|114.18|0.00|0.31| +24|2023-10-06T20:23:01.1770000-07:00|40022550|Zeromus|DoT|0|26FE|32328178|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||90.78|86.50|0.00|2.18| +38|2023-10-06T20:23:01.1770000-07:00|40022550|Zeromus|005A5A00|32306503|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T20:23:01.2170000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +261|2023-10-06T20:23:00.6990000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:23:00.8100000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:23:01.2630000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|2C890000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|32306503|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8000|10000|||91.34|87.29|0.00|2.26|0001A750|0|1| +21|2023-10-06T20:23:01.2630000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|66C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32306503|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8000|10000|||91.34|87.29|0.00|2.26|0001A751|0|1| +31|2023-10-06T20:23:01.2630000-07:00|10FF0001||||| +20|2023-10-06T20:23:01.3080000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|110.09|114.18|0.00|0.31| +36|2023-10-06T20:23:01.3080000-07:00|20BC|3| +39|2023-10-06T20:23:01.3520000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8200|10000|||91.34|87.29|0.00|2.26| +39|2023-10-06T20:23:01.3520000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9750|10000|||107.27|111.74|0.00|2.79| +24|2023-10-06T20:23:01.3960000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|156F|127791|127791|8000|10000|||91.34|87.29|0.00|2.26|10FF0006|Wowobora Gogobora|0|80739|80739|9045|10000|||107.74|112.50|0.00|-2.91| +37|2023-10-06T20:23:01.3960000-07:00|40022550|Zeromus|0001A74F|32292771||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:01.3980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|7||91.34|87.29|0.00|2.26|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:01.3980000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:23:01.0320000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T20:23:01.4420000-07:00|40022550|Zeromus|0001A74E|32280287||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:01.4440000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||90.93|86.39|0.00|2.98| +21|2023-10-06T20:23:01.4440000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|24B70000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|32292771|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|0001A752|0|1| +38|2023-10-06T20:23:01.4440000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:01.4440000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:23:01.4860000-07:00|10FF0006|Wowobora Gogobora|80739|80739|9250|10000|||107.74|112.50|0.00|-2.91| +37|2023-10-06T20:23:01.6190000-07:00|40022550|Zeromus|0001A750|32268886||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:01.6190000-07:00|10FF0001|Sesuga Sapisuga|0001A750|127791|127791|8700|10000|7||91.34|87.29|0.00|2.26|1300|0|0|0| +37|2023-10-06T20:23:01.6190000-07:00|40022550|Zeromus|0001A74D|32265399|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T20:23:01.6190000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +261|2023-10-06T20:23:01.2320000-07:00|Change|10FF0001||| +261|2023-10-06T20:23:01.2320000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:23:01.7970000-07:00|40022550|Zeromus|0001A751|32263755||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:23:01.3220000-07:00|40022708|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|75851|0|10000|||113.97|104.14|0.00|-2.68| +261|2023-10-06T20:23:01.4200000-07:00|Remove|40022708| +21|2023-10-06T20:23:01.8420000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F716003|65790000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|32265399|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||90.14|85.53|0.00|2.08|0001A753|0|1| +38|2023-10-06T20:23:01.8420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||90.14|85.53|0.00|2.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:01.8420000-07:00|A75|Surging Tempest|45.67|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +21|2023-10-06T20:23:01.8850000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|750003|31C10000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|32263755|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||108.60|110.80|0.00|-2.87|0001A754|0|1| +39|2023-10-06T20:23:02.0190000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||90.14|85.53|0.00|2.08| +39|2023-10-06T20:23:02.0190000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9300|10000|||108.60|110.80|0.00|-2.87| +37|2023-10-06T20:23:02.0630000-07:00|40022550|Zeromus|0001A752|32254356||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:02.0630000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|724003|42FD0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|32263755|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|0001A755|0|1| +38|2023-10-06T20:23:02.0630000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:02.0630000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +20|2023-10-06T20:23:02.1080000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|107.41|111.62|0.00|2.31| +261|2023-10-06T20:23:01.7200000-07:00|Change|10FF0006||||||| +261|2023-10-06T20:23:01.7200000-07:00|Change|10FF0008||||||||||||||| +261|2023-10-06T20:23:01.8330000-07:00|Change|10FF0004||||||||||||||||||||| +20|2023-10-06T20:23:02.1970000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|107.74|112.30|0.00|3.03| +21|2023-10-06T20:23:02.4200000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41712003|3FEA0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|32254356|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8700|10000|||91.34|87.29|0.00|2.26|0001A756|0|1| +38|2023-10-06T20:23:02.4200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|7||91.34|87.29|0.00|2.26|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:02.4200000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:23:02.4200000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:23:02.5090000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AD90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32254356|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|0001A757|0|1| +37|2023-10-06T20:23:02.5530000-07:00|40022550|Zeromus|0001A755|32237207||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:02.5530000-07:00|10FF0002|Suchichi Suchi|0001A755|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|1600|0|0|01|030004DB|0|41700000|| +38|2023-10-06T20:23:02.5530000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0||||||||||||||||||| +21|2023-10-06T20:23:02.5980000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32254356|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||90.14|85.53|0.00|2.08|0001A758|0|1| +24|2023-10-06T20:23:02.6430000-07:00|10FF0002|Suchichi Suchi|HoT|0|1592|90128|90128|10000|10000|||90.78|86.50|0.00|2.18|10FF0006|Wowobora Gogobora|0|80739|80739|9250|10000|||107.74|112.17|0.00|-3.00| +21|2023-10-06T20:23:02.6430000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|29480000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|32254356|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||90.90|86.44|0.00|2.33|0001A759|0|1| +38|2023-10-06T20:23:02.6430000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.78|86.50|0.00|2.18|0|0|0||||||||||||||||||| +37|2023-10-06T20:23:02.6870000-07:00|40022550|Zeromus|0001A754|32224470||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:02.6870000-07:00|10FF0003|Gegehi Gehi|HoT|0|C6C|73085|73085|7200|10000|||110.09|114.18|0.00|-2.85|10FF0003|Gegehi Gehi|0|73085|73085|7200|10000|||110.09|114.18|0.00|-2.85| +38|2023-10-06T20:23:02.6870000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7200|10000|0||110.09|114.18|0.00|-2.85|0|0|0|||||||||||||||| +21|2023-10-06T20:23:02.7320000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|2EF00000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|32254356|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7200|10000|||110.09|114.18|0.00|-2.85|0001A75A|0|1| +38|2023-10-06T20:23:02.7320000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|7000|10000|0||110.09|114.18|0.00|-2.85|0|0|0|||||||||||||||| +26|2023-10-06T20:23:02.7320000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:23:02.2640000-07:00|Change|10FF0003||||||||||||||||| +24|2023-10-06T20:23:02.8650000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D60|127791|127791|8700|10000|||91.34|87.29|0.00|2.26|10FF0006|Wowobora Gogobora|0|80739|80739|9250|10000|||107.74|112.14|0.00|-2.90| +24|2023-10-06T20:23:02.8650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CA4|80739|80739|9750|10000|||107.41|111.62|0.00|-2.91|10FF0006|Wowobora Gogobora|0|80739|80739|9250|10000|||107.74|112.14|0.00|-2.90| +38|2023-10-06T20:23:02.8650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|7||91.34|87.29|0.00|2.26|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:23:02.8650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|10000|10000|21||107.41|111.62|0.00|-2.91|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:23:02.9540000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D71|90055|90055|10000|10000|||90.90|86.44|0.00|2.18|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||90.90|86.44|0.00|2.18| +38|2023-10-06T20:23:02.9540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||90.90|86.44|0.00|2.18|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:02.9990000-07:00|40022550|Zeromus|0001A756|32208108||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:02.9990000-07:00|10FF0001|Sesuga Sapisuga|0001A756|127791|127791|8700|10000|7||91.34|87.29|0.00|2.26|1300|0|0|02|0600076E|03|41F00000|||||| +24|2023-10-06T20:23:03.0000000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C81|80739|80739|9250|10000|||107.74|112.14|0.00|-2.90|10FF0006|Wowobora Gogobora|0|80739|80739|9250|10000|||107.74|112.14|0.00|-2.90| +38|2023-10-06T20:23:03.0000000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|9800|10000|12||107.74|112.14|0.00|-2.90|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:03.0000000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:23:03.0000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|7||91.34|87.29|0.00|2.26|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:03.0440000-07:00|40022550|Zeromus|0001A757|32205331||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:03.0440000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|303D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32224470|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|10000|10000|||107.41|111.62|0.00|-2.91|0001A75B|0|1| +37|2023-10-06T20:23:03.1340000-07:00|40022550|Zeromus|0001A758|32202382||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:03.1340000-07:00|40022550|Zeromus|0001A759|32191814||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:03.1340000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37920000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|32205331|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9800|10000|||107.74|112.14|0.00|-2.90|0001A75C|0|1| +261|2023-10-06T20:23:02.6580000-07:00|Change|40022550||||| +21|2023-10-06T20:23:03.1770000-07:00|40022550|Zeromus|8B5D|Flare|40022550|Zeromus|1B|8B5D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32191814|40478540|10000|10000|||100.00|80.10|0.00|0.00|32191814|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A75D|0|1| +261|2023-10-06T20:23:02.7720000-07:00|Change|10FF0006||||||| +261|2023-10-06T20:23:02.7720000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T20:23:03.4020000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|352003|3A850000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32191814|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||108.60|110.80|0.00|-2.87|0001A75E|0|1| +261|2023-10-06T20:23:02.8910000-07:00|Change|10FF0008||| +37|2023-10-06T20:23:03.4890000-07:00|40022550|Zeromus|0001A753|32165837||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:03.4890000-07:00|40022550|Zeromus|0001A75A|32153821||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:03.5350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2034|128564|128564|10000|10000|||90.14|85.53|0.00|2.08|10FF0006|Wowobora Gogobora|0|80739|80739|9400|10000|||107.74|112.14|0.00|-2.90| +24|2023-10-06T20:23:03.5350000-07:00|40022550|Zeromus|DoT|A92|49B|32153821|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9000|10000|||108.60|110.80|0.00|-2.87| +24|2023-10-06T20:23:03.5350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D43|79111|79111|9000|10000|||108.60|110.80|0.00|-2.87|10FF0006|Wowobora Gogobora|0|80739|80739|9400|10000|||107.74|112.14|0.00|-2.90| +21|2023-10-06T20:23:03.5350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32153821|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8700|10000|||91.34|87.29|0.00|2.26|0001A75F|0|1| +38|2023-10-06T20:23:03.5350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||90.14|85.53|0.00|2.08|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:03.5350000-07:00|40022550|Zeromus|005A5A00|32152642|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:23:03.5350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|0||108.60|110.80|0.00|-2.87|0|0|0|||||||||||||||||||||| +31|2023-10-06T20:23:03.5350000-07:00|10FF0001||||| +21|2023-10-06T20:23:03.6230000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|13F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32152642|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||90.90|86.44|0.00|2.13|0001A760|0|1| +21|2023-10-06T20:23:03.7580000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|40D60000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|32152642|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|7000|10000|||110.09|114.18|0.00|-2.85|0001A761|0|1| +38|2023-10-06T20:23:03.7580000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6700|10000|0||110.09|114.18|0.00|-2.85|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:03.7580000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:23:03.7580000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:23:03.3110000-07:00|Change|10FF0003||| +24|2023-10-06T20:23:03.8020000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15D7|127791|127791|8700|10000|||91.34|87.29|0.00|2.26|10FF0006|Wowobora Gogobora|0|80739|80739|9400|10000|||107.74|112.14|0.00|-2.90| +37|2023-10-06T20:23:03.8020000-07:00|40022550|Zeromus|0001A75C|32138416||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:03.8020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|7||91.34|87.29|0.00|2.26|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:03.8020000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:23:03.8470000-07:00|40022550|Zeromus|0001A75B|32126067||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:03.9360000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C722003|35240000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|32126067|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||91.54|85.19|0.00|1.69|0001A762|0|1| +38|2023-10-06T20:23:03.9360000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||91.54|85.19|0.00|1.69|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:03.9360000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:04.0250000-07:00|40022550|Zeromus|0001A75E|32111086||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:04.0700000-07:00|40022550|Zeromus|0001A75F|32109316||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:04.1600000-07:00|40022550|Zeromus|0001A760|32104212||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:04.1600000-07:00|40022722|Carbuncle|75851|75851|10000|10000|||107.30|111.18|0.00|1.83| +39|2023-10-06T20:23:04.1600000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||91.54|85.19|0.00|2.11| +22|2023-10-06T20:23:04.1600000-07:00|4002256D|Zeromus|8B60|Flare|10FF0003|Gegehi Gehi|150003|D55E0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|6700|10000|||110.09|114.18|0.00|-2.85|44|44|0|10000|||110.00|115.00|0.00|0.00|0001A763|0|4| +22|2023-10-06T20:23:04.1600000-07:00|4002256D|Zeromus|8B60|Flare|10FF0006|Wowobora Gogobora|150003|9E3D0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9400|10000|||107.74|112.14|-0.02|-2.88|44|44|0|10000|||110.00|115.00|0.00|0.00|0001A763|1|4| +22|2023-10-06T20:23:04.1600000-07:00|4002256D|Zeromus|8B60|Flare|10FF0004|Buhojaqe Zijaqe|150003|91750000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|9600|10000|||107.41|111.62|0.00|-2.91|44|44|0|10000|||110.00|115.00|0.00|0.00|0001A763|2|4| +22|2023-10-06T20:23:04.1600000-07:00|4002256D|Zeromus|8B60|Flare|10FF0008|Kokosaze Lulusaze|150003|D68F0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9000|10000|||108.60|110.80|0.00|-2.87|44|44|0|10000|||110.00|115.00|0.00|0.00|0001A763|3|4| +22|2023-10-06T20:23:04.1600000-07:00|4002256E|Zeromus|8B60|Flare|10FF0007|Kehabiqo Febiqo|150003|86F30000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||90.14|85.53|0.00|2.08|44|44|0|10000|||90.00|85.00|0.00|0.00|0001A764|0|4| +22|2023-10-06T20:23:04.1600000-07:00|4002256E|Zeromus|8B60|Flare|10FF0002|Suchichi Suchi|150003|C24F0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||91.54|85.19|0.00|2.11|44|44|0|10000|||90.00|85.00|0.00|0.00|0001A764|1|4| +22|2023-10-06T20:23:04.1600000-07:00|4002256E|Zeromus|8B60|Flare|10FF0005|Wuwuchu Wuchu|150003|B4EA0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||90.90|86.44|0.00|2.09|44|44|0|10000|||90.00|85.00|0.00|0.00|0001A764|2|4| +22|2023-10-06T20:23:04.1600000-07:00|4002256E|Zeromus|8B60|Flare|10FF0001|Sesuga Sapisuga|EC150005|4AAC0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|8700|10000|||91.34|87.29|0.00|2.26|44|44|0|10000|||90.00|85.00|0.00|0.00|0001A764|3|4| +39|2023-10-06T20:23:04.2040000-07:00|10FF0003|Gegehi Gehi|73085|73085|6900|10000|||110.09|114.18|0.00|-2.85| +24|2023-10-06T20:23:04.2040000-07:00|40022550|Zeromus|DoT|0|2A4B|32109316|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|8700|10000|||91.34|87.29|0.00|2.26| +38|2023-10-06T20:23:04.2050000-07:00|40022550|Zeromus|005A5A00|32093385|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:23:03.7020000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:23:03.7020000-07:00|Change|4002256E||||||||||||| +39|2023-10-06T20:23:04.2480000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +21|2023-10-06T20:23:04.2930000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|3B7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32093385|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||90.14|85.53|0.00|2.08|0001A765|0|1| +37|2023-10-06T20:23:04.3370000-07:00|10FF0003|Gegehi Gehi|0001A763|18463|73085|6900|10000|0||110.09|114.18|0.00|-2.85|2300|0|0|01|050004D2|0|C1F00000|| +37|2023-10-06T20:23:04.3370000-07:00|10FF0007|Kehabiqo Febiqo|0001A764|94017||||||90.14|85.53|0.00|2.08| +36|2023-10-06T20:23:04.3370000-07:00|2198|3| +37|2023-10-06T20:23:04.3810000-07:00|10FF0006|Wowobora Gogobora|0001A763|40230|80739|9400|10000|0||107.74|112.12|0.00|-2.76|2801|0|0|01|04000000|0|0|| +37|2023-10-06T20:23:04.3810000-07:00|10FF0002|Suchichi Suchi|0001A764|40385|90128|10000|10000|0||91.58|85.17|0.00|1.84|1601|0|0|02|02000000|0|0|||||| +39|2023-10-06T20:23:04.3820000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8900|10000|||91.34|87.29|0.00|2.26| +39|2023-10-06T20:23:04.3820000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9800|10000|||107.41|111.62|0.00|-2.91| +38|2023-10-06T20:23:04.3820000-07:00|10FF0002|Suchichi Suchi|005A5A16|40385|90128|10000|10000|0||91.58|85.17|0.00|1.84|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:04.3820000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:23:04.3820000-07:00|10FF0006|Wowobora Gogobora|005A5A28|40230|80739|9400|10000|0||107.74|112.12|0.00|-2.76|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:04.3820000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:23:03.9260000-07:00|Change|10FF0001||| +261|2023-10-06T20:23:03.9260000-07:00|Change|10FF0004||| +37|2023-10-06T20:23:04.4260000-07:00|10FF0004|Buhojaqe Zijaqe|0001A763|43502|80739|9800|10000|0||107.41|111.62|0.00|-2.91|1C02|0|0|01|05000000|0|0|| +37|2023-10-06T20:23:04.4260000-07:00|10FF0005|Wuwuchu Wuchu|0001A764|43741|90055|10000|10000|0||90.90|86.44|0.00|2.09|2702|0|0|01|04000000|0|0|| +38|2023-10-06T20:23:04.4260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|43502|80739|9800|10000|0||107.41|111.62|0.00|-2.91|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:04.4260000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:23:04.4260000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|43741|90055|10000|10000|0||90.90|86.44|0.00|2.09|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:04.4260000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:23:04.4710000-07:00|10FF0008|Kokosaze Lulusaze|0001A763|24184||||||108.60|110.80|0.00|-2.87| +37|2023-10-06T20:23:04.4710000-07:00|10FF0001|Sesuga Sapisuga|0001A764|108675|127791|8900|10000|0||91.34|87.29|0.00|2.26|1303|0|0|01|03000000|0|0|| +39|2023-10-06T20:23:04.4710000-07:00|10FF0005|Wuwuchu Wuchu|44641|90055|10000|10000|||90.90|86.44|0.00|2.09| +38|2023-10-06T20:23:04.4710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108675|127791|8900|10000|0||91.34|87.29|0.00|2.26|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:04.4710000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:23:04.5170000-07:00|40022550|Zeromus|0001A761|32076787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:04.5170000-07:00|10FF0003|Gegehi Gehi|0001A761|18463|73085|6900|10000|0||110.09|114.18|0.00|-2.85|2300|0|0|01|050004D2|0|41F00000|| +39|2023-10-06T20:23:04.5170000-07:00|10FF0006|Wowobora Gogobora|41037|80739|9605|10000|||107.39|111.62|0.00|-2.71| +20|2023-10-06T20:23:04.5170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|107.41|111.62|0.00|-2.91| +38|2023-10-06T20:23:04.5170000-07:00|10FF0003|Gegehi Gehi|005A5A23|18463|73085|6900|10000|0||110.09|114.18|0.00|-2.85|0|0|0||||||||||||||||||| +261|2023-10-06T20:23:04.0380000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:23:04.7400000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|720003|12BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32076787|40478540|10000|10000|||100.00|80.10|0.00|0.00|18463|73085|6900|10000|||110.09|114.18|0.00|-2.85|0001A766|0|1| +20|2023-10-06T20:23:04.7850000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|106.44|110.27|0.00|-2.60| +261|2023-10-06T20:23:04.3730000-07:00|Change|10FF0003||| +21|2023-10-06T20:23:04.8750000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|724003|48630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32076787|40478540|10000|10000|||100.00|80.10|0.00|0.00|40385|90128|10000|10000|||91.66|85.13|0.00|1.38|0001A767|0|1| +21|2023-10-06T20:23:04.8750000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|23780000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32076787|40478540|10000|10000|||100.00|80.10|0.00|0.00|24184|79111|9000|10000|||108.60|110.80|0.00|-2.87|0001A768|0|1| +261|2023-10-06T20:23:04.4660000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:23:04.9190000-07:00|40022550|Zeromus|0001A765|32061557||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:04.9190000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|21EA0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|18463|73085|6900|10000|||110.09|114.16|0.00|-2.85|77430|77430|10000|10000|||100.18|98.80|0.00|2.10|0001A769|0|1| +21|2023-10-06T20:23:04.9190000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|27F50000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32076787|40478540|10000|10000|||100.00|80.10|0.00|0.00|108675|127791|8900|10000|||91.91|87.74|0.00|0.90|0001A76A|0|1| +38|2023-10-06T20:23:04.9190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108675|127791|8900|10000|0||91.91|87.74|0.00|0.90|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:04.9190000-07:00|76E|Sword Oath|28.03|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +39|2023-10-06T20:23:05.0540000-07:00|10FF0007|Kehabiqo Febiqo|95302|128564|10000|10000|||90.17|85.56|0.00|2.12| +39|2023-10-06T20:23:05.0540000-07:00|10FF0008|Kokosaze Lulusaze|24975|79111|8900|10000|||108.54|110.75|0.00|-2.87| +261|2023-10-06T20:23:04.6680000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:23:05.1880000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|36E30000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|95302|128564|10000|10000|||90.18|85.58|0.00|2.14|32061557|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A76B|0|1| +21|2023-10-06T20:23:05.1880000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C712003|5AFF0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|32061557|40478540|10000|10000|||100.00|80.10|0.00|0.00|44641|90055|10000|10000|||90.92|86.47|0.00|2.06|0001A76C|0|1| +21|2023-10-06T20:23:05.2340000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32061557|40478540|10000|10000|||100.00|80.10|0.00|0.00|18463|73085|6900|10000|||105.82|99.76|0.00|-2.85|0001A76D|0|1| +21|2023-10-06T20:23:05.3220000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|11EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32061557|40478540|10000|10000|||100.00|80.10|0.00|0.00|40385|90128|10000|10000|||91.68|85.14|0.00|1.91|0001A76E|0|1| +261|2023-10-06T20:23:05.0130000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:23:05.0130000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T20:23:05.3660000-07:00|40022550|Zeromus|0001A766|32056760||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:05.4550000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|301F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32061557|40478540|10000|10000|||100.00|80.10|0.00|0.00|43502|80739|9800|10000|||107.41|111.62|0.00|-2.91|0001A76F|0|1| +261|2023-10-06T20:23:05.1250000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:23:05.4990000-07:00|40022550|Zeromus|0001A768|32047680||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:05.5450000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|724003|208A0000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|32056760|40478540|10000|10000|||100.00|80.10|0.00|0.00|40385|90128|10000|10000|||92.34|85.34|0.00|1.44|0001A770|0|1| +38|2023-10-06T20:23:05.5450000-07:00|10FF0002|Suchichi Suchi|005A5A16|40385|90128|10000|10000|0||92.34|85.34|0.00|1.44|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:05.5450000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:05.5890000-07:00|40022550|Zeromus|0001A762|32034076||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:05.5890000-07:00|10FF0002|Suchichi Suchi|0001A762|40385|90128|10000|10000|0||92.34|85.34|0.00|1.44|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:23:05.5890000-07:00|10FF0002|Suchichi Suchi|005A5A16|40385|90128|10000|10000|0||92.34|85.34|0.00|1.44|0|0|0||||||||||||||||||| +24|2023-10-06T20:23:05.6330000-07:00|10FF0002|Suchichi Suchi|HoT|0|D96|40385|90128|10000|10000|||92.34|85.34|0.00|1.44|10FF0006|Wowobora Gogobora|0|41037|80739|9605|10000|||105.85|109.36|0.00|-2.94| +38|2023-10-06T20:23:05.6330000-07:00|10FF0002|Suchichi Suchi|005A5A16|43863|90128|10000|10000|0||92.34|85.34|0.00|1.44|0|0|0||||||||||||||||||| +261|2023-10-06T20:23:05.2450000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:23:05.6780000-07:00|10FF0003|Gegehi Gehi|HoT|0|D8D|18463|73085|6900|10000|||105.35|100.03|0.00|-2.77|10FF0003|Gegehi Gehi|0|18463|73085|6900|10000|||105.35|100.03|0.00|-2.77| +38|2023-10-06T20:23:05.6780000-07:00|10FF0003|Gegehi Gehi|005A5A23|21932|73085|6900|10000|0||105.35|100.03|0.00|-2.77|0|0|0||||||||||||||||||| +37|2023-10-06T20:23:05.7230000-07:00|10FF0003|Gegehi Gehi|0001A769|30614||||||105.35|100.03|0.00|-2.77| +21|2023-10-06T20:23:05.7240000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|390B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|32034076|40478540|10000|10000|||100.00|80.10|0.00|0.00|41037|80739|9605|10000|||105.85|109.36|0.00|-2.94|0001A771|0|1| +37|2023-10-06T20:23:05.7670000-07:00|40022550|Zeromus|0001A76D|32034044||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:05.7670000-07:00|40022550|Zeromus|0001A76C|32010749||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:05.8120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|AD00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32034076|40478540|10000|10000|||100.00|80.10|0.00|0.00|108675|127791|8900|10000|||93.99|92.15|0.00|1.05|0001A772|0|1| +38|2023-10-06T20:23:05.8120000-07:00|40022550|Zeromus|005A5A00|32010749|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:23:05.8120000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +31|2023-10-06T20:23:05.8120000-07:00|10FF0001||||| +37|2023-10-06T20:23:05.8560000-07:00|40022550|Zeromus|0001A76E|32006158||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:05.8560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|CC6|108675|127791|8900|10000|||93.99|92.15|0.00|1.05|10FF0001|Sesuga Sapisuga|0|108675|127791|8900|10000|||93.99|92.15|0.00|1.05| +24|2023-10-06T20:23:05.8560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CF4|43502|80739|9400|10000|||107.39|111.62|0.00|-2.55|10FF0006|Wowobora Gogobora|0|41037|80739|9605|10000|||105.85|109.36|0.00|-2.94| +38|2023-10-06T20:23:05.8560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111945|127791|8900|10000|0||93.99|92.15|0.00|1.05|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:05.8560000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:23:05.8560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46818|80739|9950|10000|0||106.89|111.06|0.00|-2.51|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:23:05.5280000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:23:05.9450000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D54|44641|90055|10000|10000|||92.70|90.24|0.00|2.33|10FF0005|Wuwuchu Wuchu|0|44641|90055|10000|10000|||92.70|90.24|0.00|2.33| +38|2023-10-06T20:23:05.9450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|48053|90055|10000|10000|0||92.70|90.24|0.00|2.33|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:05.9900000-07:00|10FF0007|Kehabiqo Febiqo|0001A76B|81251||||||93.24|90.26|0.00|2.15| +24|2023-10-06T20:23:05.9900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C86|41037|80739|9205|10000|||105.84|109.35|0.00|-2.91|10FF0006|Wowobora Gogobora|0|41037|80739|9205|10000|||105.84|109.35|0.00|-2.91| +21|2023-10-06T20:23:05.9900000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32006158|40478540|10000|10000|||100.00|80.10|0.00|0.00|95302|128564|10000|10000|||93.24|90.26|0.00|2.15|0001A773|0|1| +38|2023-10-06T20:23:05.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|44243|80739|9755|10000|0||105.84|109.35|0.00|-2.91|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:05.9900000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:23:06.0790000-07:00|40022550|Zeromus|0001A767|31987627||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:23:06.1690000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|104.47|100.52|0.00|-2.67| +261|2023-10-06T20:23:05.7420000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:23:05.7420000-07:00|Change|4002256B||||||||| +37|2023-10-06T20:23:06.2140000-07:00|40022550|Zeromus|0001A76A|31977398||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:06.2140000-07:00|10FF0001|Sesuga Sapisuga|0001A76A|111945|127791|9300|10000|0||94.59|94.70|0.00|0.76|1300|0|0|0| +261|2023-10-06T20:23:05.7420000-07:00|Change|40022568||||||||| +261|2023-10-06T20:23:05.7420000-07:00|Change|40022567||||||||| +261|2023-10-06T20:23:05.8540000-07:00|Change|40022564||||||||| +261|2023-10-06T20:23:05.8540000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:23:05.8540000-07:00|Change|40022566||||||||| +261|2023-10-06T20:23:05.8540000-07:00|Change|40022563||||||||| +261|2023-10-06T20:23:05.8540000-07:00|Change|40022565||||||||| +261|2023-10-06T20:23:05.8540000-07:00|Change|40022569||||||||| +261|2023-10-06T20:23:05.8540000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:06.2580000-07:00|40022550|Zeromus|0001A76F|31965079||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:06.2580000-07:00|4002256B|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|0001A774|0|0| +21|2023-10-06T20:23:06.2580000-07:00|4002256C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001A775|0|0| +20|2023-10-06T20:23:06.2580000-07:00|4002256D|Zeromus|8B62|Flare|4002256D|Zeromus|4.700|110.00|115.00|0.00|0.00| +20|2023-10-06T20:23:06.2580000-07:00|4002256E|Zeromus|8B62|Flare|4002256E|Zeromus|4.700|90.00|85.00|0.00|0.00| +261|2023-10-06T20:23:05.8540000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:23:05.8540000-07:00|Change|4002256E||||||||||||| +20|2023-10-06T20:23:06.3020000-07:00|40022563|Zeromus|8B63|Prominence Spine|40022563|Zeromus|4.700|100.00|88.00|0.00|0.00| +20|2023-10-06T20:23:06.3020000-07:00|40022564|Zeromus|8B63|Prominence Spine|40022564|Zeromus|4.700|100.00|100.00|0.00|3.14| +20|2023-10-06T20:23:06.3020000-07:00|40022565|Zeromus|8B63|Prominence Spine|40022565|Zeromus|4.700|83.50|83.50|0.00|0.00| +20|2023-10-06T20:23:06.3020000-07:00|40022566|Zeromus|8B63|Prominence Spine|40022566|Zeromus|4.700|100.00|100.00|0.00|-2.36| +20|2023-10-06T20:23:06.3020000-07:00|40022567|Zeromus|8B63|Prominence Spine|40022567|Zeromus|4.700|86.00|100.00|0.00|0.79| +20|2023-10-06T20:23:06.3020000-07:00|40022568|Zeromus|8B63|Prominence Spine|40022568|Zeromus|4.700|110.00|115.00|0.00|3.14| +20|2023-10-06T20:23:06.3020000-07:00|40022569|Zeromus|8B63|Prominence Spine|40022569|Zeromus|4.700|110.00|115.00|0.00|1.57| +20|2023-10-06T20:23:06.3020000-07:00|4002256A|Zeromus|8B63|Prominence Spine|4002256A|Zeromus|4.700|110.00|115.00|0.00|-1.57| +261|2023-10-06T20:23:05.8540000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:23:06.3460000-07:00|40022550|Zeromus|0001A770|31956749||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:06.3460000-07:00|40022550|Zeromus|0001A772|31953981||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:06.3920000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1554|111945|127791|9300|10000|||94.92|95.84|0.00|0.69|10FF0006|Wowobora Gogobora|0|44243|80739|9755|10000|||105.00|108.02|0.00|-2.68| +37|2023-10-06T20:23:06.3920000-07:00|40022550|Zeromus|0001A771|31939378||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:06.3920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|117405|127791|9300|10000|0||94.92|95.84|0.00|0.69|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:23:06.4360000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42724003|33250000|171D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|31953981|40478540|10000|10000|||100.00|80.10|0.00|0.00|43863|90128|10000|10000|||97.79|87.23|0.00|1.29|0001A776|0|1| +21|2023-10-06T20:23:06.4360000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|31953981|40478540|10000|10000|||100.00|80.10|0.00|0.00|24975|79111|8900|10000|||103.49|104.42|0.00|-2.55|0001A777|0|1| +38|2023-10-06T20:23:06.4360000-07:00|10FF0002|Suchichi Suchi|005A5A16|43863|90128|10000|10000|0||97.79|87.23|0.00|1.29|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:06.4360000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:23:06.4360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|24975|79111|8900|10000|0||103.49|104.42|0.00|-2.55|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:06.4360000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:23:05.9740000-07:00|Change|40022722||||||||| +261|2023-10-06T20:23:05.9740000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:23:05.9740000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:23:05.9740000-07:00|Change|10FF0007||||||||| +38|2023-10-06T20:23:06.4810000-07:00|4002276F||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:23:06.4810000-07:00|4002276F||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:23:06.1980000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:23:06.1980000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:23:06.5260000-07:00|40022550|Zeromus|0001A773|31934762||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:06.5260000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2008|81251|128564|10000|10000|||95.03|92.98|0.00|2.15|10FF0006|Wowobora Gogobora|0|44243|80739|9755|10000|||104.59|107.38|0.00|-2.63| +24|2023-10-06T20:23:06.5260000-07:00|40022550|Zeromus|DoT|A92|4C0|31939378|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|24975|79111|8900|10000|||103.28|104.09|0.00|-3.01| +24|2023-10-06T20:23:06.5260000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D14|24975|79111|8900|10000|||103.28|104.09|0.00|-3.01|10FF0006|Wowobora Gogobora|0|44243|80739|9755|10000|||104.59|107.38|0.00|-2.63| +38|2023-10-06T20:23:06.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89451|128564|10000|10000|0||95.03|92.98|0.00|2.15|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:06.5260000-07:00|40022550|Zeromus|005A5A00|31933546|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:23:06.5260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|28323|79111|8900|10000|0||103.28|104.09|0.00|-3.01|0|0|0||||||||||||||||||||||||| +03|2023-10-06T20:23:06.2890000-07:00|4002276F|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|72376|75851|10000|10000|||105.17|105.42|0.00|-3.01| +261|2023-10-06T20:23:06.2890000-07:00|Add|4002276F||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:23:06.7030000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|16DC0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|31933546|40478540|10000|10000|||100.00|80.10|0.00|0.00|89451|128564|10000|10000|||95.43|93.59|0.00|2.15|0001A778|0|1| +261|2023-10-06T20:23:06.2890000-07:00|Change|4002276F||||| +261|2023-10-06T20:23:06.2890000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:23:06.2890000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:23:06.2890000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:23:06.2890000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:23:06.2890000-07:00|Change|40022564||||||||||||| +261|2023-10-06T20:23:06.2890000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:23:06.2890000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:23:06.2890000-07:00|Change|4002256A||||||||||||| +21|2023-10-06T20:23:06.8380000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|14BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31933546|40478540|10000|10000|||100.00|80.10|0.00|0.00|48053|90055|10000|10000|||96.00|94.07|0.00|2.33|0001A779|0|1| +37|2023-10-06T20:23:06.8810000-07:00|40022550|Zeromus|0001A776|31920453|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:23:06.8810000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:23:06.8810000-07:00|10FF0002|Suchichi Suchi|0001A776|43863|90128|10000|10000|0||100.45|88.54|0.00|1.54|1600|0|0|01|02000323|0|41F00000|| +38|2023-10-06T20:23:06.8810000-07:00|10FF0002|Suchichi Suchi|005A5A16|43863|90128|10000|10000|0||100.45|88.54|0.00|1.54|0|0|0||||||||||||||||||| +21|2023-10-06T20:23:06.9710000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31920453|40478540|10000|10000|||100.00|80.10|0.00|0.00|28323|79111|8900|10000|||102.62|103.04|0.00|-2.84|0001A77A|0|1| +261|2023-10-06T20:23:06.4780000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:23:06.6880000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:23:07.1490000-07:00|10FF0002|Suchichi Suchi|44764|90128|10000|10000|||101.44|89.43|0.00|1.12| +39|2023-10-06T20:23:07.1940000-07:00|10FF0003|Gegehi Gehi|31344|73085|7100|10000|||104.02|100.76|0.00|-2.95| +24|2023-10-06T20:23:07.1940000-07:00|40022550|Zeromus|DoT|0|2978|31920453|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|117405|127791|9300|10000|||98.08|98.99|0.00|1.43| +20|2023-10-06T20:23:07.1940000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|102.58|104.69|0.00|-2.41| +38|2023-10-06T20:23:07.1940000-07:00|40022550|Zeromus|005A5A00|31909837|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:23:07.2390000-07:00|40022550|Zeromus|0001A778|31903985||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:07.2390000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +261|2023-10-06T20:23:06.8020000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:23:06.8020000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:23:07.3290000-07:00|4002256B|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|0001A77B|0|0| +21|2023-10-06T20:23:07.3290000-07:00|4002256C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001A77C|0|0| +36|2023-10-06T20:23:07.3290000-07:00|2274|3| +37|2023-10-06T20:23:07.3740000-07:00|40022550|Zeromus|0001A779|31898674||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:07.3740000-07:00|10FF0001|Sesuga Sapisuga|118682|127791|9500|10000|||98.60|98.98|0.00|1.85| +39|2023-10-06T20:23:07.3740000-07:00|10FF0004|Buhojaqe Zijaqe|47625|80739|10000|10000|||101.04|104.10|0.00|-2.43| +21|2023-10-06T20:23:07.3740000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|42790000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|31903985|40478540|10000|10000|||100.00|80.10|0.00|0.00|117405|127791|9300|10000|||98.60|98.98|0.00|1.85|0001A77D|0|1| +38|2023-10-06T20:23:07.3740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118682|127791|9500|10000|0||98.60|98.98|0.00|1.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:07.3740000-07:00|76E|Sword Oath|25.58|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:23:07.0370000-07:00|Change|10FF0003||||||||||||| +38|2023-10-06T20:23:07.4190000-07:00|10FF0006|Wowobora Gogobora|005A5A28|44243|80739|9755|10000|0||102.37|104.46|0.00|-2.63|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:07.4190000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:23:07.4630000-07:00|10FF0008|Kokosaze Lulusaze|0001A777|28323|79111|8900|10000|0||101.52|101.34|0.00|-2.65|1B00|0|0|01|07000AA4|0|0|| +39|2023-10-06T20:23:07.4640000-07:00|10FF0005|Wuwuchu Wuchu|48953|90055|10000|10000|||96.76|95.63|0.00|-3.12| +38|2023-10-06T20:23:07.4640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|28323|79111|8900|10000|0||101.52|101.34|0.00|-2.65|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:07.5070000-07:00|40022550|Zeromus|0001A77A|31898535||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:07.5070000-07:00|10FF0006|Wowobora Gogobora|45050|80739|9960|10000|||102.37|104.46|0.00|-2.63| +261|2023-10-06T20:23:07.1530000-07:00|Change|4002276F||| +261|2023-10-06T20:23:07.1530000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:07.1530000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:23:07.5970000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|456003|64170000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|31898535|40478540|10000|10000|||100.00|80.10|0.00|0.00|31344|73085|7100|10000|||104.02|100.76|0.00|-2.95|0001A77E|0|1| +38|2023-10-06T20:23:07.5970000-07:00|10FF0003|Gegehi Gehi|005A5A23|31344|73085|6900|10000|0||104.02|100.76|0.00|-2.95|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:07.5970000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:23:07.5970000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:23:07.6860000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40712003|6D340000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|31898535|40478540|10000|10000|||100.00|80.10|0.00|0.00|48953|90055|10000|10000|||96.79|95.83|0.00|3.13|0001A77F|0|1| +38|2023-10-06T20:23:07.7760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47625|80739|10000|10000|0||99.53|102.03|0.00|-2.54|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:07.7760000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:23:07.5330000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:23:08.0420000-07:00|10FF0007|Kehabiqo Febiqo|90736|128564|10000|10000|||98.08|97.98|0.00|2.92| +39|2023-10-06T20:23:08.0420000-07:00|10FF0008|Kokosaze Lulusaze|29114|79111|9100|10000|||103.93|99.90|0.00|2.39| +21|2023-10-06T20:23:08.0870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31898535|40478540|10000|10000|||100.00|80.10|0.00|0.00|118682|127791|9500|10000|||99.47|98.95|0.00|-3.09|0001A780|0|1| +31|2023-10-06T20:23:08.0870000-07:00|10FF0001||||| +261|2023-10-06T20:23:07.6290000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:23:08.1320000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31898535|40478540|10000|10000|||100.00|80.10|0.00|0.00|44764|90128|10000|10000|||105.17|93.33|0.00|-0.68|0001A781|0|1| +21|2023-10-06T20:23:08.1320000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|34780000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|31898535|40478540|10000|10000|||100.00|80.10|0.00|0.00|45050|80739|9960|10000|||102.16|104.23|0.00|-3.05|0001A782|0|1| +21|2023-10-06T20:23:08.1770000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|4|14C40000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|48953|90055|10000|10000|||97.61|95.70|0.00|2.95|77430|77430|10000|10000|||100.18|98.80|0.00|-3.10|0001A783|0|1| +261|2023-10-06T20:23:07.8560000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:23:07.8560000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:08.2220000-07:00|40022550|Zeromus|0001A77F|31870579||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:08.2220000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3A9F0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90736|128564|10000|10000|||96.95|97.96|0.00|3.05|31898535|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A784|0|1| +21|2023-10-06T20:23:08.2660000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31898535|40478540|10000|10000|||100.00|80.10|0.00|0.00|47625|80739|10000|10000|||101.44|99.09|0.00|2.82|0001A785|0|1| +21|2023-10-06T20:23:08.3100000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|24AE0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|31870579|40478540|10000|10000|||100.00|80.10|0.00|0.00|47625|80739|10000|10000|||101.42|98.46|0.00|2.83|0001A786|0|1| +37|2023-10-06T20:23:08.4000000-07:00|40022550|Zeromus|0001A77E|31844956||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:08.4000000-07:00|4002256B|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|0001A787|0|0| +21|2023-10-06T20:23:08.4000000-07:00|4002256C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001A788|0|0| +261|2023-10-06T20:23:08.0820000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T20:23:08.0820000-07:00|Change|40022722||||||||| +21|2023-10-06T20:23:08.5330000-07:00|4002276F|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|150003|5A8C0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|31844956|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||105.17|105.42|0.00|-3.01|0001A789|0|1| +261|2023-10-06T20:23:08.1970000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:23:08.6230000-07:00|40022550|Zeromus|0001A780|31843190||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:08.6230000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|36FA0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|31844956|40478540|10000|10000|||100.00|80.10|0.00|0.00|31344|73085|6900|10000|||106.24|100.46|0.00|1.82|0001A78A|0|1| +38|2023-10-06T20:23:08.6230000-07:00|10FF0003|Gegehi Gehi|005A5A23|31344|73085|6600|10000|0||106.24|100.46|0.00|1.82|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:08.6230000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:23:08.6670000-07:00|40022550|Zeromus|0001A781|31840390||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:08.6670000-07:00|40022550|Zeromus|0001A77D|31823373||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:08.6670000-07:00|10FF0001|Sesuga Sapisuga|0001A77D|118682|127791|9900|10000|0||100.99|97.90|0.00|2.93|1300|0|0|0| +24|2023-10-06T20:23:08.6670000-07:00|10FF0002|Suchichi Suchi|HoT|0|CA1|44764|90128|10000|10000|||106.34|93.76|0.00|-0.54|10FF0006|Wowobora Gogobora|0|45050|80739|9560|10000|||102.16|104.22|0.00|3.11| +38|2023-10-06T20:23:08.6670000-07:00|10FF0002|Suchichi Suchi|005A5A16|47997|90128|10000|10000|0||106.34|93.76|0.00|-0.54|0|0|0||||||||||||||||||| +261|2023-10-06T20:23:08.2910000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:23:08.7120000-07:00|10FF0003|Gegehi Gehi|HoT|0|14A2|31344|73085|6600|10000|||106.97|100.63|0.00|-2.79|10FF0003|Gegehi Gehi|0|31344|73085|6600|10000|||106.97|100.63|0.00|-2.79| +38|2023-10-06T20:23:08.7120000-07:00|10FF0003|Gegehi Gehi|005A5A23|36626|73085|6600|10000|0||106.97|100.63|0.00|-2.79|0|0|0||||||||||||||||||| +24|2023-10-06T20:23:08.8020000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|23B3|118682|127791|9900|10000|||102.01|97.23|0.00|2.95|10FF0006|Wowobora Gogobora|1|45050|80739|9560|10000|||102.31|103.92|0.00|2.96| +37|2023-10-06T20:23:08.8020000-07:00|40022550|Zeromus|0001A782|31809941||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:08.8020000-07:00|40022550|Zeromus|0001A785|31809690||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:23:08.8020000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|31DC0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78B|0|8| +22|2023-10-06T20:23:08.8020000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|4|313A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|118682|127791|9900|10000|||102.01|97.23|0.00|2.95|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78B|1|8| +22|2023-10-06T20:23:08.8020000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|4|33B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36626|73085|6600|10000|||107.67|100.80|0.00|-2.79|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78B|2|8| +22|2023-10-06T20:23:08.8020000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|31D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47625|80739|9600|10000|||103.02|96.91|0.00|2.49|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78B|3|8| +22|2023-10-06T20:23:08.8020000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|4|31EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29114|79111|9100|10000|||107.43|97.60|0.00|2.19|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78B|4|8| +22|2023-10-06T20:23:08.8020000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|200004|4FE90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48953|90055|10000|10000|||101.74|94.00|0.00|2.82|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78B|5|8| +22|2023-10-06T20:23:08.8020000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|200004|535C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90736|128564|10000|10000|||94.19|97.88|0.00|3.10|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78B|6|8| +22|2023-10-06T20:23:08.8020000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|4|31E50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47997|90128|10000|10000|||107.56|94.14|0.00|-0.38|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78B|7|8| +38|2023-10-06T20:23:08.8020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9900|10000|0||102.01|97.23|0.00|2.95|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:08.8020000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +24|2023-10-06T20:23:08.8920000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|C8A|118682|127791|9900|10000|||102.01|97.23|0.00|2.95|10FF0001|Sesuga Sapisuga|0|118682|127791|9900|10000|||102.01|97.23|0.00|2.95| +24|2023-10-06T20:23:08.8920000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D3E|47625|80739|9600|10000|||103.02|96.91|0.00|2.49|10FF0006|Wowobora Gogobora|0|45050|80739|9560|10000|||102.31|103.92|0.00|2.96| +21|2023-10-06T20:23:08.8920000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|154003|50BB0000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|31823373|40478540|10000|10000|||100.00|80.10|0.00|0.00|29114|79111|9100|10000|||107.43|97.60|0.00|2.19|0001A78C|0|1| +21|2023-10-06T20:23:08.8920000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31823373|40478540|10000|10000|||100.00|80.10|0.00|0.00|45050|80739|9560|10000|||102.31|103.92|0.00|2.96|0001A78D|0|1| +38|2023-10-06T20:23:08.8920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|29114|79111|9100|10000|0||107.43|97.60|0.00|2.19|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:23:08.8920000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:23:08.8920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9900|10000|0||102.01|97.23|0.00|2.95|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:23:08.8920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|51015|80739|9600|10000|0||103.02|96.91|0.00|2.49|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:23:08.9360000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D722003|415D0000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|31809690|40478540|10000|10000|||100.00|80.10|0.00|0.00|47997|90128|10000|10000|||108.33|94.33|0.00|-0.34|0001A78E|0|1| +38|2023-10-06T20:23:08.9360000-07:00|10FF0002|Suchichi Suchi|005A5A16|47997|90128|10000|10000|0||108.33|94.33|0.00|-0.34|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:08.9360000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:23:08.9360000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:08.9800000-07:00|10FF0005|Wuwuchu Wuchu|0001A783|54269||||||102.55|93.94|0.00|2.78| +24|2023-10-06T20:23:08.9800000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|150F|48953|90055|10000|10000|||102.55|93.94|0.00|2.78|10FF0005|Wuwuchu Wuchu|0|48953|90055|10000|10000|||102.55|93.94|0.00|2.78| +38|2023-10-06T20:23:08.9800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59660|90055|10000|10000|0||102.55|93.94|0.00|2.78|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:09.0250000-07:00|10FF0007|Kehabiqo Febiqo|0001A784|75729||||||93.48|97.85|0.00|3.10| +24|2023-10-06T20:23:09.0250000-07:00|10FF0006|Wowobora Gogobora|HoT|0|14E8|45050|80739|9560|10000|||102.70|103.13|0.00|2.87|10FF0006|Wowobora Gogobora|0|45050|80739|9560|10000|||102.70|103.13|0.00|2.87| +261|2023-10-06T20:23:08.5780000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:23:08.5780000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:23:09.0250000-07:00|10FF0001|Sesuga Sapisuga|03|Sprint|10FF0001|Sesuga Sapisuga|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9900|10000|||102.60|96.83|0.00|2.88|127791|127791|9900|10000|||102.60|96.83|0.00|2.88|0001A78F|0|1| +38|2023-10-06T20:23:09.0250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|50402|80739|9560|10000|0||102.70|103.13|0.00|2.87|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:09.0250000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:23:08.5780000-07:00|Change|10FF0005||||||||| +38|2023-10-06T20:23:09.0690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|75729|128564|10000|10000|0||92.79|97.81|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:09.0690000-07:00|A91|Undying Flame|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +21|2023-10-06T20:23:09.1130000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51015|80739|9600|10000|||100.98|96.94|0.00|-2.61|51015|80739|9600|10000|||100.98|96.94|0.00|-2.61|0001A790|0|1| +37|2023-10-06T20:23:09.1570000-07:00|10FF0001|Sesuga Sapisuga|0001A78F|127791|127791|9900|10000|0||103.88|96.96|0.00|2.10|1300|0|0|01|03000032|1E|41200000|| +26|2023-10-06T20:23:09.1570000-07:00|32|Sprint|10.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|127791|127791| +261|2023-10-06T20:23:08.8180000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:23:09.2030000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|361A0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|31809690|40478540|10000|10000|||100.00|80.10|0.00|0.00|75729|128564|10000|10000|||91.99|97.78|0.00|3.10|0001A791|0|1| +261|2023-10-06T20:23:08.8180000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:23:09.2480000-07:00|10FF0004|Buhojaqe Zijaqe|0001A790|51015|80739|9600|10000|0||99.25|97.03|0.00|-1.47|1C00|0|0|01|03000032|1E|41200000|| +26|2023-10-06T20:23:09.2480000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +37|2023-10-06T20:23:09.2480000-07:00|40022550|Zeromus|0001A786|31800300||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:08.8180000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:23:09.3810000-07:00|40022550|Zeromus|0001A78A|31786226||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:09.3810000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|13030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31800300|40478540|10000|10000|||100.00|80.10|0.00|0.00|75729|128564|10000|10000|||90.53|97.73|0.00|2.66|0001A792|0|1| +37|2023-10-06T20:23:09.4260000-07:00|40022550|Zeromus|0001A78D|31786167||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:09.4690000-07:00|4002256B|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|0001A793|0|0| +21|2023-10-06T20:23:09.4690000-07:00|4002256C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001A794|0|0| +261|2023-10-06T20:23:09.0470000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:23:09.1660000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:23:09.5590000-07:00|10FF0006|Wowobora Gogobora|0001A78B|63166|80739|10000|10000|0||105.02|100.07|0.00|2.46|2800|0|0|0| +24|2023-10-06T20:23:09.5590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|15D1|75729|128564|10000|10000|||89.82|97.70|0.00|2.66|10FF0006|Wowobora Gogobora|0|50402|80739|9560|10000|||105.02|100.07|0.00|2.46| +24|2023-10-06T20:23:09.5590000-07:00|40022550|Zeromus|DoT|A92|4A9|31786167|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|29114|79111|9100|10000|||109.60|97.07|0.00|-2.66| +24|2023-10-06T20:23:09.5590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D35|29114|79111|9100|10000|||109.60|97.07|0.00|-2.66|10FF0006|Wowobora Gogobora|0|50402|80739|9560|10000|||105.02|100.07|0.00|2.46| +38|2023-10-06T20:23:09.5590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81314|128564|10000|10000|0||89.82|97.70|0.00|2.66|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:09.5590000-07:00|40022550|Zeromus|005A5A00|31784974|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:23:09.5590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|32495|79111|9100|10000|0||109.60|97.07|0.00|-2.66|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:23:09.6030000-07:00|40022550|Zeromus|0001A78E|31768241||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:09.6030000-07:00|10FF0002|Suchichi Suchi|0001A78E|47997|90128|10000|10000|0||112.22|93.70|0.00|1.93|1600|0|0|01|03000322|0|41F00000|| +38|2023-10-06T20:23:09.6030000-07:00|10FF0002|Suchichi Suchi|005A5A16|47997|90128|10000|10000|0||112.22|93.70|0.00|1.93|0|0|0||||||||||||||||||| +37|2023-10-06T20:23:09.7380000-07:00|40022550|Zeromus|0001A78C|31747574||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:09.7380000-07:00|10FF0006|Wowobora Gogobora|005A5A28|63166|80739|10000|10000|0||106.26|99.50|0.00|2.21|0|0|0|||||||||| +30|2023-10-06T20:23:09.7380000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:23:09.7380000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:23:09.8260000-07:00|40022550|Zeromus|0001A791|31733724||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:09.8260000-07:00|10FF0003|Gegehi Gehi|0001A78B|49862||||||113.91|101.12|0.00|1.59| +21|2023-10-06T20:23:09.8710000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|41BF0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|31747574|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9900|10000|||108.71|96.21|0.00|1.67|0001A795|0|1| +38|2023-10-06T20:23:09.8710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9900|10000|0||108.71|96.21|0.00|1.67|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:09.8710000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +38|2023-10-06T20:23:09.8710000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59660|90055|10000|10000|0||106.46|90.95|0.00|2.54|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:09.8710000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:23:09.8710000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:23:09.9150000-07:00|40022550|Zeromus|0001A792|31728857||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:09.9590000-07:00|10FF0004|Buhojaqe Zijaqe|0001A78B|63770||||||96.32|97.22|0.00|-1.48| +261|2023-10-06T20:23:09.5530000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:09.6450000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:09.6450000-07:00|Change|10FF0003||||||||| +38|2023-10-06T20:23:10.0050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63770|80739|9600|10000|0||95.79|97.27|0.00|-1.48|0|0|0|||||||||||||||| +30|2023-10-06T20:23:10.0050000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:23:10.0050000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:23:10.0490000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31728857|40478540|10000|10000|||100.00|80.10|0.00|0.00|59660|90055|10000|10000|||107.99|91.37|0.00|2.31|0001A796|0|1| +261|2023-10-06T20:23:09.6450000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:23:09.7640000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:09.8750000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:23:10.0930000-07:00|10FF0008|Kokosaze Lulusaze|0001A78B|45278||||||112.70|96.55|0.00|2.14| +21|2023-10-06T20:23:10.0930000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31728857|40478540|10000|10000|||100.00|80.10|0.00|0.00|32495|79111|9100|10000|||112.70|96.55|0.00|2.14|0001A797|0|1| +39|2023-10-06T20:23:10.1390000-07:00|10FF0002|Suchichi Suchi|48898|90128|10000|10000|||115.36|94.66|0.00|0.62| +21|2023-10-06T20:23:10.1390000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|712003|43350000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|31728857|40478540|10000|10000|||100.00|80.10|0.00|0.00|59660|90055|10000|10000|||109.33|91.92|0.00|1.96|0001A798|0|1| +38|2023-10-06T20:23:10.1390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81314|128564|10000|10000|0||87.10|97.59|0.00|3.09|0|0|0||||||||||||| +30|2023-10-06T20:23:10.1390000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:23:10.1390000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +39|2023-10-06T20:23:10.1830000-07:00|10FF0003|Gegehi Gehi|50592|73085|6800|10000|||116.59|101.15|0.00|1.57| +24|2023-10-06T20:23:10.1830000-07:00|40022550|Zeromus|DoT|0|298E|31728857|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|9900|10000|||112.08|95.93|0.00|1.67| +38|2023-10-06T20:23:10.1830000-07:00|40022550|Zeromus|005A5A00|31718219|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:23:10.2280000-07:00|10FF0005|Wuwuchu Wuchu|0001A78B|80117||||||109.33|91.92|0.00|1.96| +39|2023-10-06T20:23:10.2280000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +261|2023-10-06T20:23:09.8750000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:23:09.9950000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:23:10.2720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|45278|79111|9100|10000|0||113.39|96.43|0.00|1.74|0|0|0|||||||||||||||| +30|2023-10-06T20:23:10.2720000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:23:10.2720000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +36|2023-10-06T20:23:10.3170000-07:00|2350|3| +37|2023-10-06T20:23:10.3610000-07:00|10FF0007|Kehabiqo Febiqo|0001A78B|102654||||||86.68|97.57|0.00|3.10| +39|2023-10-06T20:23:10.3610000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||112.86|96.05|0.00|1.73| +39|2023-10-06T20:23:10.3610000-07:00|10FF0004|Buhojaqe Zijaqe|64577|80739|9800|10000|||93.46|97.20|0.00|-1.55| +21|2023-10-06T20:23:10.3610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31718219|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9900|10000|||112.86|96.05|0.00|1.73|0001A799|0|1| +31|2023-10-06T20:23:10.3610000-07:00|10FF0001||||| +04|2023-10-06T20:23:09.9950000-07:00|40022722|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||104.60|108.48|0.00|-2.55| +261|2023-10-06T20:23:09.9950000-07:00|Remove|40022722| +38|2023-10-06T20:23:10.4060000-07:00|10FF0003|Gegehi Gehi|005A5A23|50592|73085|6800|10000|0||117.43|101.15|0.00|1.57|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:10.4060000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:23:10.4060000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +39|2023-10-06T20:23:10.4500000-07:00|10FF0005|Wuwuchu Wuchu|81017|90055|10000|10000|||109.60|92.07|0.00|-2.47| +37|2023-10-06T20:23:10.4950000-07:00|40022550|Zeromus|0001A789|31695039||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:10.4950000-07:00|10FF0002|Suchichi Suchi|0001A78B|61671||||||115.82|95.68|0.00|-0.39| +39|2023-10-06T20:23:10.4950000-07:00|10FF0006|Wowobora Gogobora|63973|80739|10000|10000|||110.60|98.88|0.00|1.64| +21|2023-10-06T20:23:10.5390000-07:00|4002256B|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|0001A79A|0|0| +21|2023-10-06T20:23:10.5390000-07:00|4002256C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001A79B|0|0| +38|2023-10-06T20:23:10.5390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||114.35|96.90|0.00|1.93|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:10.5390000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:23:10.5390000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:23:10.5840000-07:00|40022550|Zeromus|0001A796|31691582||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:10.6280000-07:00|40022550|Zeromus|0001A797|31691442||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:10.6280000-07:00|40022550|Zeromus|0001A798|31674237||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:10.6730000-07:00|10FF0002|Suchichi Suchi|005A5A16|61671|90128|10000|10000|0||116.91|96.26|-0.02|-0.42|0|0|0|||||||||||||||| +30|2023-10-06T20:23:10.6730000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:23:10.6730000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +21|2023-10-06T20:23:10.7620000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|24E10000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|31674237|40478540|10000|10000|||100.00|80.10|0.00|0.00|64577|80739|9800|10000|||89.78|97.01|0.00|-1.61|0001A79C|0|1| +261|2023-10-06T20:23:10.4260000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:23:10.4260000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:10.8950000-07:00|40022550|Zeromus|0001A799|31671388||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:11.0280000-07:00|10FF0007|Kehabiqo Febiqo|103939|128564|10000|10000|||83.04|97.14|0.00|3.01| +39|2023-10-06T20:23:11.0280000-07:00|10FF0008|Kokosaze Lulusaze|46069|79111|9300|10000|||117.12|95.12|0.00|1.96| +20|2023-10-06T20:23:11.0280000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|118.09|101.15|0.00|1.57| +261|2023-10-06T20:23:10.6210000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T20:23:10.7310000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:23:11.1610000-07:00|40022550|Zeromus|0001A795|31654557||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:10.7310000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:10.8420000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:23:11.2500000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|406B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|103939|128564|10000|10000|||82.65|97.13|0.00|-2.06|31654557|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A79D|0|1| +21|2023-10-06T20:23:11.2500000-07:00|4002256D|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|0001A79E|0|0| +21|2023-10-06T20:23:11.2500000-07:00|4002256E|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001A79F|0|0| +261|2023-10-06T20:23:10.8420000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:23:10.8420000-07:00|Change|4002256E||||||||||||| +21|2023-10-06T20:23:11.2950000-07:00|40022563|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.35|0001A7A0|0|0| +21|2023-10-06T20:23:11.2950000-07:00|40022564|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001A7A1|0|0| +21|2023-10-06T20:23:11.2950000-07:00|40022565|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|1.57|0001A7A2|0|0| +21|2023-10-06T20:23:11.2950000-07:00|40022566|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|-1.57|0001A7A3|0|0| +261|2023-10-06T20:23:10.8420000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:23:10.8420000-07:00|Change|40022564||||||||||||| +21|2023-10-06T20:23:11.2950000-07:00|40022567|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|-2.79|0001A7A4|0|0| +21|2023-10-06T20:23:11.2950000-07:00|40022568|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|3.14|0001A7A5|0|0| +21|2023-10-06T20:23:11.2950000-07:00|40022569|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|1.57|0001A7A6|0|0| +21|2023-10-06T20:23:11.2950000-07:00|4002256A|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|-1.57|0001A7A7|0|0| +261|2023-10-06T20:23:10.8420000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:23:10.8420000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:23:10.8420000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:23:10.8420000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:23:10.8420000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:23:10.8420000-07:00|Change|40022569||||||||||||| +21|2023-10-06T20:23:11.3410000-07:00|10FF0008|Kokosaze Lulusaze|651D|Crimson Strike|40022550|Zeromus|152003|6F910000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|31654557|40478540|10000|10000|||100.00|80.10|0.00|0.00|46069|79111|9300|10000|||118.07|94.34|0.00|2.33|0001A7A8|0|1| +261|2023-10-06T20:23:10.9580000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:23:10.9580000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:23:11.0700000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:23:11.4290000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|35540000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|31654557|40478540|10000|10000|||100.00|80.10|0.00|0.00|61671|90128|10000|10000|||118.18|95.14|-0.02|3.03|0001A7A9|0|1| +20|2023-10-06T20:23:11.4300000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|116.12|99.31|0.00|1.45| +38|2023-10-06T20:23:11.4300000-07:00|10FF0002|Suchichi Suchi|005A5A16|61671|90128|10000|10000|0||118.18|95.14|-0.02|3.03|0|0|0|||||||||||||||| +26|2023-10-06T20:23:11.4300000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:23:11.4300000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:23:11.1830000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:23:11.6510000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|21980000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|64577|80739|9400|10000|||83.14|96.95|0.00|-1.81|77430|77430|10000|10000|||100.18|98.80|0.00|-2.86|0001A7AA|0|1| +38|2023-10-06T20:23:11.6510000-07:00|10FF0002|Suchichi Suchi|005A5A16|61671|90128|10000|10000|0||118.19|94.69|0.00|-2.23|0|0|0|||||||||||||||| +37|2023-10-06T20:23:11.6950000-07:00|40022550|Zeromus|0001A79C|31645116||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:11.9620000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AE40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31645116|40478540|10000|10000|||100.00|80.10|0.00|0.00|61671|90128|10000|10000|||118.20|94.25|0.00|-2.16|0001A7AB|0|1| +37|2023-10-06T20:23:12.0520000-07:00|40022550|Zeromus|0001A7A9|31631464||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:12.0520000-07:00|10FF0002|Suchichi Suchi|0001A7A9|61671|90128|10000|10000|0||118.19|94.25|0.00|-2.03|1600|0|0|01|0747|0|41F00000|| +37|2023-10-06T20:23:12.0520000-07:00|10FF0007|Kehabiqo Febiqo|0001A79D|87448||||||82.33|98.14|0.00|-2.75| +38|2023-10-06T20:23:12.0520000-07:00|10FF0002|Suchichi Suchi|005A5A16|61671|90128|10000|10000|0||118.19|94.25|0.00|-2.03|0|0|0|||||||||||||||| +37|2023-10-06T20:23:12.0950000-07:00|40022550|Zeromus|0001A7A8|31602903||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:12.0950000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F712003|4F560000|143E|340000|4|17CC8000|11B|2A8000|0|0|0|0|0|0|0|0|31645116|40478540|10000|10000|||100.00|80.10|0.00|0.00|103939|128564|10000|10000|||82.33|98.14|0.00|-2.75|0001A7AC|0|1| +261|2023-10-06T20:23:11.7880000-07:00|Change|10FF0006||||||||||||||||||| +21|2023-10-06T20:23:12.3630000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38F00000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|31602903|40478540|10000|10000|||100.00|80.10|0.00|0.00|63973|80739|10000|10000|||116.87|99.50|0.00|-2.43|0001A7AD|0|1| +37|2023-10-06T20:23:12.4530000-07:00|10FF0004|Buhojaqe Zijaqe|0001A7AA|73177||||||82.44|97.00|0.00|-1.68| +21|2023-10-06T20:23:12.4530000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|2E280000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|31602903|40478540|10000|10000|||100.00|80.10|0.00|0.00|50592|73085|6800|10000|||118.09|101.15|0.00|-2.43|0001A7AE|0|1| +38|2023-10-06T20:23:12.4530000-07:00|10FF0003|Gegehi Gehi|005A5A23|50592|73085|6600|10000|0||118.09|101.15|0.00|-2.43|0|0|0||||||| +26|2023-10-06T20:23:12.4530000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:23:12.4530000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:23:12.1380000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T20:23:12.4960000-07:00|40022550|Zeromus|0001A7AB|31600115||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:12.1380000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:23:12.5420000-07:00|40022550|Zeromus|DoT|A92|775|31602903|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|46069|79111|9300|10000|||118.25|94.07|0.00|-1.23| +38|2023-10-06T20:23:12.5420000-07:00|40022550|Zeromus|005A5A00|31598206|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:23:12.1380000-07:00|Change|4002276F||||| +38|2023-10-06T20:23:12.5860000-07:00|40022780||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:23:12.5860000-07:00|40022780||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:23:12.6310000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31598206|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||110.79|96.10|0.00|-1.80|0001A7AF|0|1| +31|2023-10-06T20:23:12.6310000-07:00|10FF0001||||| +03|2023-10-06T20:23:12.2480000-07:00|40022780|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||115.44|95.59|0.00|2.07| +261|2023-10-06T20:23:12.3460000-07:00|Add|40022780||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:12.3460000-07:00|Change|40022780||| +21|2023-10-06T20:23:12.7650000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AE70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31598206|40478540|10000|10000|||100.00|80.10|0.00|0.00|87448|128564|10000|10000|||85.03|94.80|0.00|2.29|0001A7B0|0|1| +38|2023-10-06T20:23:12.9440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|46069|79111|9300|10000|0||116.35|95.08|0.00|-1.07|0|0|0|||||||||||||||| +30|2023-10-06T20:23:12.9440000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:23:12.6360000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:23:13.0330000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15CD|127791|127791|10000|10000|||108.43|95.85|0.00|-1.81|10FF0006|Wowobora Gogobora|0|63973|80739|9600|10000|||116.82|99.50|0.00|-2.11| +37|2023-10-06T20:23:13.0330000-07:00|40022550|Zeromus|0001A7AD|31583630||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:13.0330000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C716003|6E7D0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|31598206|40478540|10000|10000|||100.00|80.10|0.00|0.00|81017|90055|10000|10000|||118.59|96.96|0.00|-2.26|0001A7B1|0|1| +38|2023-10-06T20:23:13.0330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||108.43|95.85|0.00|-1.81|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:13.0330000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:23:12.6360000-07:00|Remove|40022720| +21|2023-10-06T20:23:13.1220000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|2F220000|200004|3DD08000|0|0|0|0|0|0|0|0|0|0|0|0|31583630|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||107.75|96.26|0.00|-1.82|0001A7B2|0|1| +38|2023-10-06T20:23:13.1220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||107.75|96.26|0.00|-1.82|0|0|0||||||||||||| +30|2023-10-06T20:23:13.1220000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:23:13.1660000-07:00|40022550|Zeromus|0001A7AF|31581890||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:13.1660000-07:00|10FF0002|Suchichi Suchi|62572|90128|10000|10000|||112.33|93.25|0.00|-1.69| +261|2023-10-06T20:23:12.8720000-07:00|Change|10FF0006||||||||||||||||||||||| +39|2023-10-06T20:23:13.2120000-07:00|10FF0003|Gegehi Gehi|51322|73085|6800|10000|||118.06|101.13|0.00|-2.35| +24|2023-10-06T20:23:13.2120000-07:00|40022550|Zeromus|DoT|0|2572|31583630|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|9000|10000|||107.01|96.66|0.00|-1.93| +38|2023-10-06T20:23:13.2120000-07:00|40022550|Zeromus|005A5A00|31572304|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:23:12.8720000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:23:13.2570000-07:00|40022550|Zeromus|0001A7AE|31560488||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:13.2570000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-2.42| +21|2023-10-06T20:23:13.2570000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31572304|40478540|10000|10000|||100.00|80.10|0.00|0.00|46069|79111|9300|10000|||114.08|96.46|0.00|-0.99|0001A7B3|0|1| +21|2023-10-06T20:23:13.2570000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31572304|40478540|10000|10000|||100.00|80.10|0.00|0.00|81017|90055|10000|10000|||116.25|97.10|0.00|-1.85|0001A7B4|0|1| +37|2023-10-06T20:23:13.3000000-07:00|40022550|Zeromus|0001A7B0|31557697||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:12.9860000-07:00|Change|10FF0008||||||||| +36|2023-10-06T20:23:13.3450000-07:00|242C|3| +39|2023-10-06T20:23:13.3890000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9200|10000|||105.68|97.63|0.00|-2.18| +39|2023-10-06T20:23:13.3890000-07:00|10FF0004|Buhojaqe Zijaqe|73984|80739|9600|10000|||86.56|96.89|0.00|1.64| +261|2023-10-06T20:23:12.9860000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:23:13.4790000-07:00|10FF0005|Wuwuchu Wuchu|81917|90055|10000|10000|||115.32|97.16|0.00|-1.64| +21|2023-10-06T20:23:13.4790000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31557697|40478540|10000|10000|||100.00|80.10|0.00|0.00|73177|80739|9400|10000|||86.56|96.89|0.00|1.64|0001A7B5|0|1| +261|2023-10-06T20:23:13.0960000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:13.0960000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:23:13.5230000-07:00|10FF0006|Wowobora Gogobora|64780|80739|9805|10000|||113.94|99.56|0.00|-1.60| +20|2023-10-06T20:23:13.5230000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|87.17|97.23|-0.02|1.49| +21|2023-10-06T20:23:13.5230000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|365E0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|31557697|40478540|10000|10000|||100.00|80.10|0.00|0.00|51322|73085|6800|10000|||117.25|100.94|0.00|-2.08|0001A7B6|0|1| +38|2023-10-06T20:23:13.5230000-07:00|10FF0003|Gegehi Gehi|005A5A23|51322|73085|6500|10000|0||117.25|100.94|0.00|-2.08|0|0|0|||| +30|2023-10-06T20:23:13.5230000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:23:13.6140000-07:00|40022550|Zeromus|0001A7AC|31537387||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:13.6140000-07:00|10FF0007|Kehabiqo Febiqo|0001A7AC|93540||||||90.71|95.08|0.00|1.47| +37|2023-10-06T20:23:13.6140000-07:00|40022550|Zeromus|0001A7B1|31509102||||||100.00|80.10|0.00|0.00| +34|2023-10-06T20:23:13.6140000-07:00|40022780|Carbuncle|40022780|Carbuncle|01| +261|2023-10-06T20:23:13.3100000-07:00|Change|40022780||| +21|2023-10-06T20:23:13.7020000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31509102|40478540|10000|10000|||100.00|80.10|0.00|0.00|64780|80739|9805|10000|||112.90|99.65|-0.02|-1.70|0001A7B7|0|1| +37|2023-10-06T20:23:13.7910000-07:00|40022550|Zeromus|0001A7B3|31508862||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:13.7910000-07:00|40022550|Zeromus|0001A7B4|31504700||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:23:13.7910000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|112.07|96.32|0.00|-1.42| +261|2023-10-06T20:23:13.4050000-07:00|Change|10FF0007||||||||| +20|2023-10-06T20:23:13.8350000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|112.74|99.67|-0.02|-2.36| +37|2023-10-06T20:23:13.8800000-07:00|40022550|Zeromus|0001A7B2|31492634||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:13.9250000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|2D9C0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|31492634|40478540|10000|10000|||100.00|80.10|0.00|0.00|62572|90128|10000|10000|||108.12|93.88|0.00|-1.81|0001A7B8|0|1| +38|2023-10-06T20:23:13.9250000-07:00|10FF0002|Suchichi Suchi|005A5A16|62572|90128|10000|10000|0||108.12|93.88|0.00|-1.81|0|0|0|||||||||||||||| +30|2023-10-06T20:23:13.9250000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:23:13.5040000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:23:13.5940000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:23:13.6850000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:14.0140000-07:00|40022550|Zeromus|0001A7B5|31492386||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:14.0580000-07:00|10FF0007|Kehabiqo Febiqo|94825|128564|10000|10000|||93.52|95.42|0.00|1.46| +39|2023-10-06T20:23:14.0580000-07:00|10FF0008|Kokosaze Lulusaze|46860|79111|9500|10000|||111.64|96.30|0.00|-2.04| +37|2023-10-06T20:23:14.2350000-07:00|40022550|Zeromus|0001A7B7|31492351||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:13.7980000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:23:14.2800000-07:00|40022550|Zeromus|0001A7B6|31478433||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:14.2810000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42870000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|94825|128564|10000|10000|||94.85|95.57|0.00|1.46|31492351|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A7B9|0|1| +261|2023-10-06T20:23:13.9160000-07:00|Change|10FF0008||||||||||||||||||||||| +21|2023-10-06T20:23:14.4570000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4DD30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31478433|40478540|10000|10000|||100.00|80.10|0.00|0.00|73984|80739|9600|10000|||87.82|97.67|0.00|2.54|0001A7BA|0|1| +261|2023-10-06T20:23:14.1510000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:23:14.5460000-07:00|40022550|Zeromus|0001A7B8|31466757||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:14.5460000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|23390000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|31478433|40478540|10000|10000|||100.00|80.10|0.00|0.00|94825|128564|10000|10000|||96.16|95.72|0.00|1.46|0001A7BB|0|1| +261|2023-10-06T20:23:14.1510000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:14.2600000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:23:14.7260000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31466757|40478540|10000|10000|||100.00|80.10|0.00|0.00|51322|73085|6500|10000|||111.12|100.45|0.00|-1.66|0001A7BC|0|1| +21|2023-10-06T20:23:14.7690000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31466757|40478540|10000|10000|||100.00|80.10|0.00|0.00|62572|90128|10000|10000|||105.03|94.84|0.00|-2.09|0001A7BD|0|1| +21|2023-10-06T20:23:14.7690000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|34500000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|31466757|40478540|10000|10000|||100.00|80.10|0.00|0.00|64780|80739|9805|10000|||112.23|99.72|0.00|-2.58|0001A7BE|0|1| +261|2023-10-06T20:23:14.4470000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:23:14.9030000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14E80000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|94825|128564|10000|10000|||98.71|95.66|0.00|2.15|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7BF|0|1| +21|2023-10-06T20:23:14.9030000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31466757|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||99.03|98.08|0.00|-3.09|0001A7C0|0|1| +31|2023-10-06T20:23:14.9030000-07:00|10FF0001||||| +261|2023-10-06T20:23:14.5450000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:23:15.0820000-07:00|40022550|Zeromus|0001A7BB|31457740||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:15.0820000-07:00|10FF0007|Kehabiqo Febiqo|0001A7B9|77794||||||98.50|95.70|0.00|2.38| +261|2023-10-06T20:23:14.8720000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:23:15.2610000-07:00|40022550|Zeromus|0001A7BA|31437817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:15.2610000-07:00|40022550|Zeromus|0001A7BC|31437785||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:15.3050000-07:00|40022550|Zeromus|0001A7BD|31434818||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:14.9870000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:23:15.3960000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51322|73085|6500|10000|||106.97|100.19|0.00|-1.64|51322|73085|6500|10000|||106.97|100.19|0.00|-1.64|0001A7C1|0|1| +38|2023-10-06T20:23:15.3960000-07:00|10FF0003|Gegehi Gehi|005A5A23|51322|73085|6500|10000|0||106.97|100.19|0.00|-1.64|0|0|0||||||| +26|2023-10-06T20:23:15.3960000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +24|2023-10-06T20:23:15.4400000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1553|127791|127791|9200|10000|||99.03|98.08|0.00|-3.09|10FF0006|Wowobora Gogobora|0|64780|80739|9405|10000|||112.23|99.74|0.00|-1.67| +37|2023-10-06T20:23:15.4400000-07:00|40022550|Zeromus|0001A7BE|31421426||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:15.4400000-07:00|40022550|Zeromus|0001A7C0|31418603||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:15.4410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9200|10000|0||99.03|98.08|0.00|-3.09|0|0|0||||||||||||| +26|2023-10-06T20:23:15.4410000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:23:15.4840000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|45970000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|31434818|40478540|10000|10000|||100.00|80.10|0.00|0.00|81917|90055|10000|10000|||105.03|98.43|0.00|-1.52|0001A7C2|0|1| +261|2023-10-06T20:23:15.2220000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:15.2220000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:23:15.6190000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|14C30000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|31418603|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||99.03|98.08|0.00|3.09|0001A7C3|0|1| +21|2023-10-06T20:23:15.6630000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|BF0F|A788000|0|0|0|0|0|0|0|0|0|0|77794|128564|10000|10000|||100.59|96.15|-0.01|2.97|77794|128564|10000|10000|||100.59|96.15|-0.01|2.97|0001A7C4|0|1| +37|2023-10-06T20:23:15.7070000-07:00|10FF0007|Kehabiqo Febiqo|0001A7BF|83146||||||100.59|96.15|-0.01|2.97| +20|2023-10-06T20:23:15.9310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|95.86|98.33|-0.02|1.51| +37|2023-10-06T20:23:16.0200000-07:00|40022550|Zeromus|0001A7C2|31400788||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:16.0200000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|50480000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|31418603|40478540|10000|10000|||100.00|80.10|0.00|0.00|46860|79111|9500|10000|||111.44|96.30|0.00|-2.53|0001A7C5|0|1| +261|2023-10-06T20:23:15.5920000-07:00|Change|10FF0008||||||||||||||||| +261|2023-10-06T20:23:15.5920000-07:00|Change|10FF0008||||||||||||||||| +261|2023-10-06T20:23:15.8160000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:23:16.1080000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|34B70000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|31400788|40478540|10000|10000|||100.00|80.10|0.00|0.00|51322|73085|6500|10000|||104.66|100.02|0.00|-1.66|0001A7C6|0|1| +38|2023-10-06T20:23:16.1080000-07:00|10FF0003|Gegehi Gehi|005A5A23|51322|73085|6200|10000|0||104.66|100.02|0.00|-1.66|0|0|0|||||||||| +30|2023-10-06T20:23:16.1080000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:23:16.1080000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:23:16.1530000-07:00|10FF0003|Gegehi Gehi|0001A7C1|51322|73085|6200|10000|0||104.66|100.02|0.00|-1.66|2300|0|0|01|020004D3|0|C1F00000|| +39|2023-10-06T20:23:16.1530000-07:00|10FF0002|Suchichi Suchi|63473|90128|10000|10000|||100.42|97.86|0.00|-2.99| +21|2023-10-06T20:23:16.1530000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31400788|40478540|10000|10000|||100.00|80.10|0.00|0.00|83146|128564|10000|10000|||100.60|96.15|0.00|2.97|0001A7C7|0|1| +39|2023-10-06T20:23:16.1970000-07:00|10FF0003|Gegehi Gehi|52052|73085|6400|10000|||104.66|100.02|0.00|-2.91| +24|2023-10-06T20:23:16.1980000-07:00|40022550|Zeromus|DoT|0|21EA|31400788|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|9200|10000|||99.03|98.08|0.00|3.09| +38|2023-10-06T20:23:16.1980000-07:00|40022550|Zeromus|005A5A00|31392106|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:23:15.9350000-07:00|Change|4002276F||| +04|2023-10-06T20:23:15.9350000-07:00|4002276F|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|75851|0|10000|||105.17|105.42|0.00|-3.01| +37|2023-10-06T20:23:16.2420000-07:00|10FF0007|Kehabiqo Febiqo|0001A7C4|83146|128564|10000|10000|7||100.60|96.15|0.00|2.97|1500|0|0|03|04000A76|0190|41000000|||||||||| +26|2023-10-06T20:23:16.2420000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +26|2023-10-06T20:23:16.2420000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:23:16.2420000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:23:16.2420000-07:00|40022550|Zeromus|0001A7C3|31386791||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:16.2420000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|3.03| +38|2023-10-06T20:23:16.2420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|83146|128564|10000|10000|7||100.60|96.15|0.00|2.97|0|0|0|||||||||||||||||||||| +20|2023-10-06T20:23:16.2860000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|107.10|99.24|0.00|-1.94| +00|2023-10-06T20:23:15.0000000-07:00|0044|Zeromus|All are as one in Darkness.| +261|2023-10-06T20:23:15.9350000-07:00|Remove|4002276F| +261|2023-10-06T20:23:15.9350000-07:00|Change|10FF0003||||||||||| +20|2023-10-06T20:23:16.3310000-07:00|40022550|Zeromus|8B66|Void Bio|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +36|2023-10-06T20:23:16.3310000-07:00|2508|3| +261|2023-10-06T20:23:15.9350000-07:00|Change|40022550||||||||| +39|2023-10-06T20:23:16.3750000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9400|10000|||99.03|98.08|0.00|3.09| +39|2023-10-06T20:23:16.3750000-07:00|10FF0004|Buhojaqe Zijaqe|74791|80739|9400|10000|||96.03|98.34|0.00|2.72| +261|2023-10-06T20:23:16.0550000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:23:16.4210000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35724003|30FD0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|31386791|40478540|10000|10000|||100.00|80.10|0.00|0.00|63473|90128|10000|10000|||100.42|97.86|0.00|-2.99|0001A7C8|0|1| +21|2023-10-06T20:23:16.4210000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|710003|33960000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|31386791|40478540|10000|10000|||100.00|80.10|0.00|0.00|81917|90055|10000|10000|||104.90|98.44|-0.02|-2.85|0001A7C9|0|1| +38|2023-10-06T20:23:16.4210000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|81917|90055|10000|10000|0||104.90|98.44|-0.02|-2.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:16.4210000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +39|2023-10-06T20:23:16.4650000-07:00|10FF0005|Wuwuchu Wuchu|82817|90055|10000|10000|||104.90|98.44|-0.02|-2.85| +21|2023-10-06T20:23:16.4650000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|15690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31386791|40478540|10000|10000|||100.00|80.10|0.00|0.00|81917|90055|10000|10000|||104.90|98.44|-0.02|-2.85|0001A7CA|0|1| +39|2023-10-06T20:23:16.5080000-07:00|10FF0006|Wowobora Gogobora|65587|80739|9610|10000|||107.12|99.21|0.00|-2.12| +38|2023-10-06T20:23:16.5970000-07:00|40022550|Zeromus|005A5A00|31386791|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T20:23:16.5970000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +261|2023-10-06T20:23:16.2620000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:23:16.6860000-07:00|40022550|Zeromus|0001A7C7|31383988||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:16.6860000-07:00|40022550|Zeromus|0001A7C5|31363436||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:16.3580000-07:00|Remove|4002270E| +261|2023-10-06T20:23:16.3580000-07:00|Remove|4002270F| +261|2023-10-06T20:23:16.3580000-07:00|Remove|40022710| +261|2023-10-06T20:23:16.3580000-07:00|Remove|40022711| +261|2023-10-06T20:23:16.3580000-07:00|Remove|40022712| +261|2023-10-06T20:23:16.3580000-07:00|Remove|40022713| +261|2023-10-06T20:23:16.3580000-07:00|Remove|40022714| +261|2023-10-06T20:23:16.3580000-07:00|Remove|40022715| +261|2023-10-06T20:23:16.3580000-07:00|Remove|40022716| +261|2023-10-06T20:23:16.3580000-07:00|Remove|40022717| +20|2023-10-06T20:23:16.7750000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|111.44|96.30|0.00|-2.53| +261|2023-10-06T20:23:16.3580000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:23:16.8650000-07:00|40022550|Zeromus|0001A7C6|31349941||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:16.8650000-07:00|10FF0003|Gegehi Gehi|0001A7C6|52052|73085|6400|10000|0||104.59|100.08|0.00|-2.69|2300|0|0|01|020004D3|0|41F00000|| +21|2023-10-06T20:23:16.8650000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|316B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31363436|40478540|10000|10000|||100.00|80.10|0.00|0.00|74791|80739|9400|10000|||96.06|98.34|0.00|2.93|0001A7CB|0|1| +38|2023-10-06T20:23:16.8650000-07:00|10FF0003|Gegehi Gehi|005A5A23|52052|73085|6400|10000|0||104.59|100.08|0.00|-2.69|0|0|0|||||||||| +37|2023-10-06T20:23:16.9550000-07:00|40022550|Zeromus|0001A7C9|31336735||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:16.9550000-07:00|10FF0005|Wuwuchu Wuchu|0001A7C9|82817|90055|10000|10000|0||103.88|99.11|-0.01|-1.87|2700|0|0|01|02000A1B|01|41F00000|| +38|2023-10-06T20:23:16.9550000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82817|90055|10000|10000|0||103.88|99.11|-0.01|-1.87|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:16.9980000-07:00|40022550|Zeromus|0001A7CA|31331254||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:16.9990000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|35BA0000|A3E|340000|200004|3C858000|11B|258000|0|0|0|0|0|0|0|0|31349941|40478540|10000|10000|||100.00|80.10|0.00|0.00|83146|128564|10000|10000|||100.60|96.15|0.00|2.97|0001A7CC|0|1| +39|2023-10-06T20:23:17.0440000-07:00|10FF0007|Kehabiqo Febiqo|84431|128564|10000|10000|||100.60|96.15|0.00|-3.10| +39|2023-10-06T20:23:17.0440000-07:00|10FF0008|Kokosaze Lulusaze|47651|79111|9400|10000|||111.44|96.30|0.00|-2.53| +21|2023-10-06T20:23:17.1780000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31331254|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9400|10000|||99.12|98.28|0.00|-3.08|0001A7CD|0|1| +31|2023-10-06T20:23:17.1780000-07:00|10FF0001||||| +261|2023-10-06T20:23:16.7620000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:23:17.2230000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|57D70000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|31331254|40478540|10000|10000|||100.00|80.10|0.00|0.00|65587|80739|9610|10000|||107.16|99.14|0.00|-2.78|0001A7CE|0|1| +37|2023-10-06T20:23:17.4450000-07:00|40022550|Zeromus|0001A7C8|31318713||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:17.5350000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.13|0|0|0||||||| +26|2023-10-06T20:23:17.5350000-07:00|77B|Summon Order|30.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:23:17.5350000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|74791|80739|9000|10000|||96.83|98.68|0.00|1.38|74791|80739|9000|10000|||96.83|98.68|0.00|1.38|0001A7CF|0|1| +21|2023-10-06T20:23:17.5790000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|123E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31318713|40478540|10000|10000|||100.00|80.10|0.00|0.00|63473|90128|10000|10000|||100.42|97.86|0.00|-3.12|0001A7D0|0|1| +261|2023-10-06T20:23:17.2270000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:23:17.6240000-07:00|40022550|Zeromus|0001A7CC|31304959||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:17.6240000-07:00|10FF0007|Kehabiqo Febiqo|0001A7CC|99924||||||100.60|96.15|0.00|-3.10| +22|2023-10-06T20:23:17.6240000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0002|Suchichi Suchi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|63473|90128|10000|10000|||100.42|97.86|0.00|-3.12|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7D1|0|8| +22|2023-10-06T20:23:17.6240000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9400|10000|||99.12|98.28|0.00|-3.08|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7D1|1|8| +22|2023-10-06T20:23:17.6240000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|52052|73085|6400|10000|||101.58|100.91|0.00|-3.01|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7D1|2|8| +22|2023-10-06T20:23:17.6240000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|84431|128564|10000|10000|||100.60|96.15|0.00|-3.10|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7D1|3|8| +22|2023-10-06T20:23:17.6240000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|74791|80739|9000|10000|||97.65|99.03|0.00|1.31|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7D1|4|8| +22|2023-10-06T20:23:17.6240000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0005|Wuwuchu Wuchu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|82817|90055|10000|10000|||103.84|99.14|0.00|-1.83|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7D1|5|8| +22|2023-10-06T20:23:17.6240000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|65587|80739|9210|10000|||107.16|99.14|0.00|-2.52|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7D1|6|8| +22|2023-10-06T20:23:17.6240000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|47651|79111|9400|10000|||111.44|96.30|0.00|-2.53|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7D1|7|8| +37|2023-10-06T20:23:17.6680000-07:00|40022550|Zeromus|0001A7CB|31292308||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:17.7120000-07:00|40022550|Zeromus|0001A7CD|31290589||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:17.4240000-07:00|Change|10FF0008||||| +24|2023-10-06T20:23:17.8910000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|21F6|127791|127791|9400|10000|||99.12|98.28|0.00|-3.08|10FF0006|Wowobora Gogobora|1|65587|80739|9210|10000|||107.14|99.14|0.00|-1.77| +37|2023-10-06T20:23:17.8910000-07:00|40022550|Zeromus|0001A7CE|31268102||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:17.8910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9400|10000|0||99.12|98.28|0.00|-3.08|0|0|0||||||||||||| +26|2023-10-06T20:23:17.8910000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:23:18.0690000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|5A7F0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|31268102|40478540|10000|10000|||100.00|80.10|0.00|0.00|82817|90055|10000|10000|||103.84|99.14|0.00|-1.82|0001A7D2|0|1| +38|2023-10-06T20:23:18.0690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82817|90055|10000|10000|0||103.84|99.14|0.00|-1.82|0|0|0||||||||||||| +30|2023-10-06T20:23:18.0690000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:23:18.0690000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:23:18.0690000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:23:18.1140000-07:00|40022550|Zeromus|0001A7D0|31263432||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:17.8110000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:23:18.2030000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31263432|40478540|10000|10000|||100.00|80.10|0.00|0.00|52052|73085|6400|10000|||101.46|100.94|0.00|-3.04|0001A7D3|0|1| +21|2023-10-06T20:23:18.2480000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1D9E0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|31263432|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9400|10000|||99.12|98.28|0.00|3.09|0001A7D4|0|1| +21|2023-10-06T20:23:18.2930000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|31263432|40478540|10000|10000|||100.00|80.10|0.00|0.00|74791|80739|9000|10000|||100.29|99.53|0.00|1.66|0001A7D5|0|1| +21|2023-10-06T20:23:18.4700000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31263432|40478540|10000|10000|||100.00|80.10|0.00|0.00|65587|80739|9210|10000|||103.25|98.75|0.00|-1.64|0001A7D6|0|1| +37|2023-10-06T20:23:18.5150000-07:00|10FF0002|Suchichi Suchi|0001A7D1|63473|90128|10000|10000|0||100.42|97.86|0.00|-3.12|1600|0|0|01|013B|0|41A80000|| +26|2023-10-06T20:23:18.5150000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +37|2023-10-06T20:23:18.5600000-07:00|40022550|Zeromus|0001A7D2|31240265||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:18.5600000-07:00|10FF0005|Wuwuchu Wuchu|0001A7D2|82817|90055|10000|10000|0||103.81|99.16|0.00|-2.94|2700|0|0|01|02000A1C|0|42700000|| +39|2023-10-06T20:23:18.5600000-07:00|40022780|Carbuncle|75851|75851|10000|10000|||112.75|94.93|0.00|-1.49| +21|2023-10-06T20:23:18.5600000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31263432|40478540|10000|10000|||100.00|80.10|0.00|0.00|74791|80739|8600|10000|||100.46|99.56|0.00|-3.11|0001A7D7|0|1| +20|2023-10-06T20:23:18.5600000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|101.46|100.94|0.00|-3.04| +38|2023-10-06T20:23:18.5600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82817|90055|10000|10000|0||103.81|99.16|0.00|-2.94|0|0|0||||||||||||| +261|2023-10-06T20:23:18.2610000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T20:23:18.2610000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:23:18.6490000-07:00|10FF0001|Sesuga Sapisuga|0001A7D1|127791|127791|9400|10000|0||99.12|98.28|0.00|3.09|1301|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T20:23:18.6490000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:23:18.7380000-07:00|40022550|Zeromus|0001A7D3|31240223||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:18.7380000-07:00|10FF0006|Wowobora Gogobora|005A5A28|65587|80739|9210|10000|0||102.14|98.78|0.00|-1.57|0|0|0|||||||||| +26|2023-10-06T20:23:18.7380000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:23:18.7380000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:23:18.7380000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65587|80739|9210|10000|||102.14|98.78|0.00|-1.57|65587|80739|9210|10000|||102.14|98.78|0.00|-1.57|0001A7D8|0|1| +37|2023-10-06T20:23:18.7830000-07:00|10FF0003|Gegehi Gehi|0001A7D1|52052|73085|6400|10000|0||101.46|100.94|0.00|-3.04|2302|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T20:23:18.7830000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +261|2023-10-06T20:23:18.4480000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:18.9170000-07:00|10FF0007|Kehabiqo Febiqo|0001A7D1|99924|128564|10000|10000|7||100.60|96.15|0.00|-3.10|1503|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T20:23:18.9170000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:23:18.9170000-07:00|40022550|Zeromus|0001A7D5|31240223|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:23:18.9170000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:23:18.9170000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F720003|41040000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|31240223|40478540|10000|10000|||100.00|80.10|0.00|0.00|63473|90128|10000|10000|||100.42|97.86|0.00|-3.12|0001A7D9|0|1| +38|2023-10-06T20:23:18.9170000-07:00|10FF0002|Suchichi Suchi|005A5A16|63473|90128|10000|10000|0||100.42|97.86|0.00|-3.12|0|0|0|||||||||||||||| +26|2023-10-06T20:23:18.9170000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:23:18.9610000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.13|0|0|0|||||||||| +26|2023-10-06T20:23:18.9610000-07:00|7AE|Summon Order IV|30.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:23:18.9610000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|74791|80739|8600|10000|||100.53|99.49|0.00|2.84|74791|80739|8600|10000|||100.53|99.49|0.00|2.84|0001A7DA|0|1| +37|2023-10-06T20:23:19.0070000-07:00|40022550|Zeromus|0001A7D6|31240185||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:19.0070000-07:00|40022550|Zeromus|0001A7D4|31232603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:19.0070000-07:00|10FF0001|Sesuga Sapisuga|0001A7D4|127791|127791|10000|10000|0||99.12|98.28|0.00|3.09|1300|0|0|0| +21|2023-10-06T20:23:19.0070000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|52D90000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|31240223|40478540|10000|10000|||100.00|80.10|0.00|0.00|47651|79111|9400|10000|||111.44|96.30|0.00|-2.53|0001A7DB|0|1| +261|2023-10-06T20:23:18.6550000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:18.6550000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:23:19.0500000-07:00|10FF0004|Buhojaqe Zijaqe|0001A7D1|74791|80739|8600|10000|0||100.55|99.47|0.00|2.73|1C04|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T20:23:19.0500000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +37|2023-10-06T20:23:19.0940000-07:00|40022550|Zeromus|0001A7D7|31232456||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:19.1400000-07:00|10FF0002|Suchichi Suchi|64374|90128|10000|10000|||100.42|97.86|0.00|-3.12| +38|2023-10-06T20:23:19.1400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.42|98.32|0.00|2.99|0|0|0|||||||||||||||| +30|2023-10-06T20:23:19.1400000-07:00|32|Sprint|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|127791|127791| +37|2023-10-06T20:23:19.1840000-07:00|10FF0005|Wuwuchu Wuchu|0001A7D1|82817|90055|10000|10000|0||101.26|100.42|0.00|-2.81|2705|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T20:23:19.1840000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +21|2023-10-06T20:23:19.1840000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14570000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|99924|128564|10000|10000|||100.60|96.15|0.00|-3.10|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A7DC|0|1| +39|2023-10-06T20:23:19.1840000-07:00|10FF0003|Gegehi Gehi|52782|73085|6600|10000|||101.46|100.94|0.00|-3.07| +24|2023-10-06T20:23:19.1840000-07:00|40022550|Zeromus|DoT|0|2B18|31232456|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|63473|90128|10000|10000|||100.42|97.86|0.00|-3.12| +38|2023-10-06T20:23:19.1840000-07:00|40022550|Zeromus|005A5A00|31221424|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T20:23:18.8810000-07:00|Change|10FF0003||||||| +39|2023-10-06T20:23:19.2290000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +38|2023-10-06T20:23:19.2290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74791|80739|8600|10000|0||100.59|99.43|0.00|2.50|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:19.2290000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +37|2023-10-06T20:23:19.3180000-07:00|10FF0006|Wowobora Gogobora|0001A7D1|65587|80739|9210|10000|0||99.97|97.74|0.00|-2.51|2806|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T20:23:19.3180000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +36|2023-10-06T20:23:19.3180000-07:00|25E4|3| +39|2023-10-06T20:23:19.3620000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.50|98.33|0.00|2.99| +39|2023-10-06T20:23:19.3620000-07:00|10FF0004|Buhojaqe Zijaqe|75598|80739|8800|10000|||100.60|99.41|-0.01|2.42| +261|2023-10-06T20:23:19.2200000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:23:19.4520000-07:00|10FF0008|Kokosaze Lulusaze|0001A7D1|47651|79111|9100|10000|0||111.44|96.30|0.00|-2.53|1B07|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T20:23:19.4520000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +39|2023-10-06T20:23:19.4520000-07:00|10FF0005|Wuwuchu Wuchu|83717|90055|10000|10000|||100.30|100.41|0.00|3.13| +21|2023-10-06T20:23:19.4520000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|30740000|143E|340000|200004|3EAF8000|4|17E18000|11B|2A8000|0|0|0|0|0|0|31221424|40478540|10000|10000|||100.00|80.10|0.00|0.00|99924|128564|10000|10000|||100.60|96.15|0.00|-3.10|0001A7DD|0|1| +21|2023-10-06T20:23:19.4530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31221424|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|98.35|0.00|2.99|0001A7DE|0|1| +38|2023-10-06T20:23:19.4530000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|3.09|0|0|0|||||||||| +30|2023-10-06T20:23:19.4530000-07:00|77B|Summon Order|0.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|77430|77430| +31|2023-10-06T20:23:19.4530000-07:00|10FF0001||||| +39|2023-10-06T20:23:19.4970000-07:00|10FF0006|Wowobora Gogobora|66394|80739|9415|10000|||99.75|97.49|0.00|-2.32| +21|2023-10-06T20:23:19.5410000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31221424|40478540|10000|10000|||100.00|80.10|0.00|0.00|99924|128564|10000|10000|||100.60|96.15|0.00|-3.10|0001A7DF|0|1| +261|2023-10-06T20:23:19.3120000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:23:19.6320000-07:00|40022550|Zeromus|0001A7D9|31204780||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:19.6320000-07:00|10FF0002|Suchichi Suchi|0001A7D9|64374|90128|10000|10000|0||100.42|97.86|0.00|-3.12|1600|0|0|01|02000322|0|41F00000|| +37|2023-10-06T20:23:19.6320000-07:00|40022550|Zeromus|0001A7DB|31183571||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:19.6320000-07:00|10FF0002|Suchichi Suchi|005A5A16|64374|90128|10000|10000|0||100.42|97.86|0.00|-3.12|0|0|0|||||||||||||||| +21|2023-10-06T20:23:19.6750000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31221424|40478540|10000|10000|||100.00|80.10|0.00|0.00|83717|90055|10000|10000|||100.06|100.61|0.00|3.08|0001A7E0|0|1| +21|2023-10-06T20:23:19.7640000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|750003|43460000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|31183571|40478540|10000|10000|||100.00|80.10|0.00|0.00|47651|79111|9100|10000|||111.36|96.32|0.00|-2.02|0001A7E1|0|1| +21|2023-10-06T20:23:19.7640000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|31183571|40478540|10000|10000|||100.00|80.10|0.00|0.00|66394|80739|9415|10000|||99.80|98.01|0.00|-0.57|0001A7E2|0|1| +38|2023-10-06T20:23:19.7640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|47651|79111|8700|10000|0||111.36|96.32|0.00|-2.02|0|0|0||||||||||||| +30|2023-10-06T20:23:19.7640000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:23:19.7640000-07:00|10FF0006|Wowobora Gogobora|005A5A28|66394|80739|9015|10000|0||99.80|98.01|0.00|-0.57|0|0|0||||||||||||| +30|2023-10-06T20:23:19.7640000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:23:19.9870000-07:00|10FF0007|Kehabiqo Febiqo|0001A7DC|105131||||||100.60|96.15|0.00|-3.10| +37|2023-10-06T20:23:19.9870000-07:00|40022550|Zeromus|0001A7DE|31181890||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:19.9870000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|452003|4BFF0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|31183571|40478540|10000|10000|||100.00|80.10|0.00|0.00|52782|73085|6600|10000|||101.46|100.94|0.00|-3.07|0001A7E3|0|1| +38|2023-10-06T20:23:19.9870000-07:00|10FF0003|Gegehi Gehi|005A5A23|52782|73085|6400|10000|0||101.46|100.94|0.00|-3.07|0|0|0|||||||||| +30|2023-10-06T20:23:19.9870000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:23:19.9870000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:23:19.5930000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T20:23:20.0320000-07:00|10FF0007|Kehabiqo Febiqo|106416|128564|10000|10000|||100.60|96.15|0.00|-3.10| +39|2023-10-06T20:23:20.0320000-07:00|10FF0008|Kokosaze Lulusaze|48442|79111|8900|10000|||111.24|96.36|0.00|-2.54| +37|2023-10-06T20:23:20.0760000-07:00|40022550|Zeromus|0001A7DF|31177279||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:19.8970000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T20:23:20.2090000-07:00|40022550|Zeromus|0001A7E0|31174109||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:20.2090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106416|128564|10000|10000|7||100.60|96.15|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:20.2090000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +22|2023-10-06T20:23:20.2530000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|25150000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|66394|80739|9015|10000|||100.08|99.05|0.00|-3.14|77430|77430|10000|10000|||100.18|98.80|0.00|2.99|0001A7E4|0|8| +22|2023-10-06T20:23:20.2530000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0002|Suchichi Suchi|4|242C0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|64374|90128|10000|10000|||100.43|98.11|0.00|0.42|77430|77430|10000|10000|||100.18|98.80|0.00|2.99|0001A7E4|1|8| +22|2023-10-06T20:23:20.2530000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|24270000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|75598|80739|8800|10000|||100.63|99.32|0.00|3.03|77430|77430|10000|10000|||100.18|98.80|0.00|2.99|0001A7E4|2|8| +22|2023-10-06T20:23:20.2530000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|250E0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.63|98.35|0.00|2.99|77430|77430|10000|10000|||100.18|98.80|0.00|2.99|0001A7E4|3|8| +22|2023-10-06T20:23:20.2530000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0005|Wuwuchu Wuchu|4|25150000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|83717|90055|10000|10000|||99.78|101.21|0.00|2.96|77430|77430|10000|10000|||100.18|98.80|0.00|2.99|0001A7E4|4|8| +22|2023-10-06T20:23:20.2530000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|25D00000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|52782|73085|6400|10000|||101.46|100.94|0.00|-3.07|77430|77430|10000|10000|||100.18|98.80|0.00|2.99|0001A7E4|5|8| +22|2023-10-06T20:23:20.2530000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|200004|3D470000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|106416|128564|10000|10000|||100.60|96.15|0.00|-3.10|77430|77430|10000|10000|||100.18|98.80|0.00|2.99|0001A7E4|6|8| +22|2023-10-06T20:23:20.2530000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|26040000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|48442|79111|8900|10000|||111.18|96.39|0.00|-2.54|77430|77430|10000|10000|||100.18|98.80|0.00|2.99|0001A7E4|7|8| +21|2023-10-06T20:23:20.3860000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|DB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31174109|40478540|10000|10000|||100.00|80.10|0.00|0.00|64374|90128|10000|10000|||100.43|98.26|0.00|0.32|0001A7E5|0|1| +24|2023-10-06T20:23:20.5220000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|152C|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|10FF0006|Wowobora Gogobora|0|66394|80739|9015|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:23:20.5220000-07:00|40022550|Zeromus|0001A7E2|31174109|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:23:20.5220000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:23:20.5220000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|710003|290A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31174109|40478540|10000|10000|||100.00|80.10|0.00|0.00|83717|90055|10000|10000|||99.78|101.23|0.00|2.95|0001A7E6|0|1| +38|2023-10-06T20:23:20.5220000-07:00|40022550|Zeromus|005A5A00|31174109|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T20:23:20.5220000-07:00|A1A|Death's Design|60.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +38|2023-10-06T20:23:20.5220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0|||||||||||||||| +26|2023-10-06T20:23:20.5220000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:23:20.1300000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:23:20.5650000-07:00|40022550|Zeromus|0001A7E1|31156887||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:20.5660000-07:00|10FF0008|Kokosaze Lulusaze|1D8A|Lucid Dreaming|10FF0008|Kokosaze Lulusaze|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48442|79111|8900|10000|||109.88|96.85|0.00|-1.98|48442|79111|8900|10000|||109.88|96.85|0.00|-1.98|0001A7E7|0|1| +24|2023-10-06T20:23:20.6550000-07:00|10FF0002|Suchichi Suchi|HoT|0|951|64374|90128|10000|10000|||100.42|98.44|0.00|0.89|10FF0002|Suchichi Suchi|0|64374|90128|10000|10000|||100.42|98.44|0.00|0.89| +38|2023-10-06T20:23:20.6550000-07:00|10FF0002|Suchichi Suchi|005A5A16|66759|90128|10000|10000|0||100.42|98.44|0.00|0.89|0|0|0|||||||||||||||| +24|2023-10-06T20:23:20.6990000-07:00|10FF0003|Gegehi Gehi|HoT|0|92D|52782|73085|6400|10000|||101.46|100.94|0.00|-3.07|10FF0003|Gegehi Gehi|0|52782|73085|6400|10000|||101.46|100.94|0.00|-3.07| +20|2023-10-06T20:23:20.6990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.63|99.32|0.00|3.03| +38|2023-10-06T20:23:20.6990000-07:00|10FF0003|Gegehi Gehi|005A5A23|55131|73085|6400|10000|0||101.46|100.94|0.00|-3.07|0|0|0|||||||||| +261|2023-10-06T20:23:20.3360000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:23:20.7440000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|27420000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|31156887|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|0001A7E8|0|1| +38|2023-10-06T20:23:20.7440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:20.7440000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:23:20.7440000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:23:20.7880000-07:00|40022550|Zeromus|0001A7E3|31137432||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:20.8770000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|956|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|2.99| +24|2023-10-06T20:23:20.8770000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|967|75598|80739|8800|10000|||100.63|99.32|0.00|3.06|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|2.99| +38|2023-10-06T20:23:20.8770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0||||||||||||||||||| +38|2023-10-06T20:23:20.8770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|78005|80739|8800|10000|0||100.63|99.32|0.00|3.06|0|0|0||||||||||||||||||| +37|2023-10-06T20:23:20.9220000-07:00|40022550|Zeromus|0001A7E5|31133926||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:20.5230000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:23:20.9660000-07:00|40022550|Zeromus|0001A7DD|31121522||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:20.9660000-07:00|10FF0007|Kehabiqo Febiqo|0001A7DD|128564||||||100.16|96.15|0.00|3.13| +24|2023-10-06T20:23:20.9660000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|9F2|83717|90055|10000|10000|||99.78|101.24|0.00|3.04|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|2.99| +21|2023-10-06T20:23:20.9660000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31133926|40478540|10000|10000|||100.00|80.10|0.00|0.00|48442|79111|8900|10000|||106.43|98.08|0.00|-1.23|0001A7E9|0|1| +38|2023-10-06T20:23:20.9660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|86263|90055|10000|10000|0||99.78|101.24|0.00|3.04|0|0|0|||||||||||||||| +24|2023-10-06T20:23:21.0110000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9BA|66394|80739|9015|10000|||100.08|99.05|0.00|-3.14|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|2.99| +21|2023-10-06T20:23:21.0110000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|354B0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|31133926|40478540|10000|10000|||100.00|80.10|0.00|0.00|55131|73085|6400|10000|||101.46|100.94|0.00|-3.07|0001A7EA|0|1| +38|2023-10-06T20:23:21.0110000-07:00|10FF0006|Wowobora Gogobora|005A5A28|68884|80739|9015|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T20:23:21.0110000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:23:21.0110000-07:00|10FF0003|Gegehi Gehi|005A5A23|55131|73085|6100|10000|0||101.46|100.94|0.00|-3.07|0|0|0||||||| +30|2023-10-06T20:23:21.0110000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:23:20.6270000-07:00|Change|40022780||||||||| +37|2023-10-06T20:23:21.0550000-07:00|10FF0006|Wowobora Gogobora|0001A7E4|78377||||||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:23:21.1880000-07:00|10FF0002|Suchichi Suchi|0001A7E4|76019||||||100.18|98.65|0.00|-3.12| +37|2023-10-06T20:23:21.1880000-07:00|10FF0008|Kokosaze Lulusaze|0001A7E7|48442|79111|8900|10000|0||104.99|98.60|0.00|-1.23|1B00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T20:23:21.1880000-07:00|4B4|Lucid Dreaming|21.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +20|2023-10-06T20:23:21.2330000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.08|99.05|0.00|-3.14| +261|2023-10-06T20:23:20.8530000-07:00|Change|10FF0003||| +37|2023-10-06T20:23:21.3230000-07:00|10FF0004|Buhojaqe Zijaqe|0001A7E4|80739||||||100.63|99.32|0.00|-3.11| +37|2023-10-06T20:23:21.3250000-07:00|40022550|Zeromus|0001A7E8|31111472||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:21.3250000-07:00|10FF0001|Sesuga Sapisuga|0001A7E8|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|1300|0|0|02|0300076E|03|41F00000|||||| +21|2023-10-06T20:23:21.3250000-07:00|40022550|Zeromus|8B66|Void Bio|40022550|Zeromus|1B|8B668000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31121522|40478540|10000|10000|||100.00|80.10|0.00|0.00|31121522|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A7EB|0|1| +261|2023-10-06T20:23:20.9720000-07:00|Change|40022550||||||||||||| +38|2023-10-06T20:23:21.3250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0||||||||||||||||||| +21|2023-10-06T20:23:21.4570000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D724003|31470000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|31111472|40478540|10000|10000|||100.00|80.10|0.00|0.00|76019|90128|10000|10000|||100.17|98.65|-0.02|-3.12|0001A7EC|0|1| +38|2023-10-06T20:23:21.4570000-07:00|10FF0002|Suchichi Suchi|005A5A16|76019|90128|10000|10000|0||100.17|98.65|-0.02|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:23:21.4570000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:23:21.4570000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:21.5030000-07:00|40022550|Zeromus|0001A7E9|31111293||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:21.5460000-07:00|40022780|Carbuncle|75851|75851|10000|10000|||107.58|96.23|0.00|-1.24| +24|2023-10-06T20:23:21.5460000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|93B|128564|128564|10000|10000|||100.05|96.15|0.00|3.12|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|2.99| +24|2023-10-06T20:23:21.5460000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9E3|48442|79111|8900|10000|||102.86|99.35|0.00|-1.23|10FF0008|Kokosaze Lulusaze|0|48442|79111|8900|10000|||102.86|99.35|0.00|-1.23| +38|2023-10-06T20:23:21.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||100.05|96.15|0.00|3.12|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:23:21.5460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|50973|79111|9450|10000|0||102.86|99.35|0.00|-1.23|0|0|0|||||||||||||||| +261|2023-10-06T20:23:21.2030000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:23:21.5900000-07:00|10FF0005|Wuwuchu Wuchu|0001A7E4|90055||||||100.67|100.92|0.00|2.98| +21|2023-10-06T20:23:21.6340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|330E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31111293|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8800|10000|||100.63|99.32|0.00|-3.11|0001A7ED|0|1| +37|2023-10-06T20:23:21.6790000-07:00|40022550|Zeromus|0001A7E6|31100787||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:21.4000000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:23:21.7230000-07:00|10FF0003|Gegehi Gehi|0001A7E4|64811||||||101.46|100.94|0.00|-3.07| +21|2023-10-06T20:23:21.7230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|66D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31100787|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|0001A7EE|0|1| +31|2023-10-06T20:23:21.7230000-07:00|10FF0001||||| +261|2023-10-06T20:23:21.4000000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:23:21.7690000-07:00|40022550|Zeromus|0001A7EA|31087144||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:21.4920000-07:00|Change|40022780||||||||| +21|2023-10-06T20:23:21.9050000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|25700000|200004|3CA58000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|31087144|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.05|96.15|0.00|3.12|0001A7EF|0|1| +37|2023-10-06T20:23:21.9920000-07:00|10FF0008|Kokosaze Lulusaze|0001A7E4|60705||||||101.06|99.90|0.00|-1.36| +38|2023-10-06T20:23:21.9920000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|3.04|0|0|0|||| +30|2023-10-06T20:23:21.9920000-07:00|7AE|Summon Order IV|0.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T20:23:22.0800000-07:00|40022550|Zeromus|0001A7EC|31074529||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:22.0800000-07:00|10FF0002|Suchichi Suchi|0001A7EC|76019|90128|10000|10000|0||99.93|98.65|0.00|3.14|1600|0|0|01|03000323|0|41F00000|| +38|2023-10-06T20:23:22.0810000-07:00|10FF0002|Suchichi Suchi|005A5A16|76019|90128|10000|10000|0||99.93|98.65|0.00|3.14|0|0|0|||||||||||||||| +39|2023-10-06T20:23:22.1270000-07:00|10FF0002|Suchichi Suchi|76920|90128|10000|10000|||99.93|98.65|0.00|3.14| +21|2023-10-06T20:23:22.1700000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|76019|90128|10000|10000|||99.93|98.65|0.00|3.14|76019|90128|10000|10000|||99.93|98.65|0.00|3.14|0001A7F0|0|1| +21|2023-10-06T20:23:22.1700000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|39350000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|31087144|40478540|10000|10000|||100.00|80.10|0.00|0.00|78377|80739|9015|10000|||100.08|99.05|0.00|-3.14|0001A7F1|0|1| +39|2023-10-06T20:23:22.2150000-07:00|10FF0003|Gegehi Gehi|65541|73085|6300|10000|||101.46|100.94|0.00|-3.07| +24|2023-10-06T20:23:22.2150000-07:00|40022550|Zeromus|DoT|0|2B34|31074529|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|76920|90128|10000|10000|||99.93|98.65|0.00|3.14| +21|2023-10-06T20:23:22.2150000-07:00|10FF0008|Kokosaze Lulusaze|1D03|Summon Bahamut|40022550|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|31074529|40478540|10000|10000|||100.00|80.10|0.00|0.00|60705|79111|9450|10000|||100.60|100.02|0.00|-1.43|0001A7F2|0|1| +38|2023-10-06T20:23:22.2150000-07:00|40022550|Zeromus|005A5A00|31063469|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T20:23:22.2600000-07:00|4002278A||005A5A00|65138|68265|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:23:22.2600000-07:00|40022550|Zeromus|0001A7EE|31061824||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:22.2600000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.14| +21|2023-10-06T20:23:22.2600000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31074529|40478540|10000|10000|||100.00|80.10|0.00|0.00|78377|80739|8615|10000|||100.08|99.05|0.00|-3.14|0001A7F3|0|1| +38|2023-10-06T20:23:22.2600000-07:00|4002278A||005A5A00|65138|68265|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:23:21.8970000-07:00|Add|4002278A||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:21.8970000-07:00|Add|40022789||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:23:21.8970000-07:00|40022789|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||82.00|80.30|0.00|0.00| +03|2023-10-06T20:23:21.8970000-07:00|4002278A|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|65138|68265|10000|10000|||102.44|101.76|0.00|-3.11| +261|2023-10-06T20:23:21.8970000-07:00|Change|10FF0003||| +261|2023-10-06T20:23:21.8970000-07:00|Change|40022789||| +261|2023-10-06T20:23:22.0090000-07:00|Change|4002278A||| +39|2023-10-06T20:23:22.3490000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.63|98.35|0.00|3.12| +39|2023-10-06T20:23:22.3490000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8600|10000|||100.62|99.33|0.00|-2.00| +21|2023-10-06T20:23:22.3490000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|14620000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.05|96.15|0.00|-3.14|31061824|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A7F4|0|1| +36|2023-10-06T20:23:22.3490000-07:00|26C0|3| +37|2023-10-06T20:23:22.4380000-07:00|40022550|Zeromus|0001A7EF|31052240||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:22.4380000-07:00|40022550|Zeromus|0001A7ED|31039170||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:22.4380000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.76|100.79|0.00|-3.12| +39|2023-10-06T20:23:22.5260000-07:00|10FF0006|Wowobora Gogobora|79184|80739|8820|10000|||100.08|99.05|0.00|-3.14| +261|2023-10-06T20:23:22.2450000-07:00|Change|10FF0006||||||||||||||||| +21|2023-10-06T20:23:22.6600000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31039170|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||100.52|99.54|0.00|-1.35|0001A7F5|0|1| +03|2023-10-06T20:23:22.3400000-07:00|4002278B|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||86.00|80.30|0.00|0.00| +261|2023-10-06T20:23:22.3400000-07:00|Add|4002278B||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:22.3400000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:23:22.3400000-07:00|Change|4002278B||| +37|2023-10-06T20:23:22.7940000-07:00|10FF0002|Suchichi Suchi|0001A7F0|76920|90128|10000|10000|0||99.93|98.65|0.00|3.14|1600|0|0|01|02000748|0|41A00000|| +26|2023-10-06T20:23:22.7940000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:22.7940000-07:00|40022550|Zeromus|0001A7F3|31039133||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:22.8380000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|155F|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|10FF0006|Wowobora Gogobora|0|79184|80739|8820|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:23:22.8380000-07:00|40022550|Zeromus|0001A7F1|31024488||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:22.8380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:22.8380000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:23:22.8830000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31039133|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.76|100.79|0.00|-3.12|0001A7F6|0|1| +21|2023-10-06T20:23:22.9270000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|200004|214C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|79184|80739|8820|10000|||100.08|99.05|0.00|-3.14|77430|77430|10000|10000|||100.18|98.80|0.00|-2.03|0001A7F7|0|1| +21|2023-10-06T20:23:22.9270000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|11CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31024488|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.05|96.15|0.00|-3.14|0001A7F8|0|1| +261|2023-10-06T20:23:22.5370000-07:00|Change|40022780||||||||| +21|2023-10-06T20:23:22.9730000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|712003|454A0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|31024488|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.76|100.79|0.00|-3.12|0001A7F9|0|1| +39|2023-10-06T20:23:23.0170000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||100.05|96.15|0.00|-3.14| +39|2023-10-06T20:23:23.0170000-07:00|10FF0008|Kokosaze Lulusaze|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11| +261|2023-10-06T20:23:22.6370000-07:00|Change|10FF0008||||||||||| +22|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A7FA|0|8| +22|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8600|10000|||100.36|99.87|0.00|-0.88|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A7FA|1|8| +22|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0005|Wuwuchu Wuchu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.76|100.79|0.00|-3.11|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A7FA|2|8| +22|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65541|73085|6300|10000|||100.92|99.70|0.00|-3.08|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A7FA|3|8| +22|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79184|80739|8820|10000|||100.08|99.05|0.00|-3.14|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A7FA|4|8| +22|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0002|Suchichi Suchi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|76920|90128|10000|10000|||99.96|98.65|0.00|3.14|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A7FA|5|8| +22|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A7FA|6|8| +22|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.05|96.15|0.00|-3.14|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A7FA|7|8| +20|2023-10-06T20:23:23.1070000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.36|99.87|0.00|-0.88| +38|2023-10-06T20:23:23.1070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||100.05|96.15|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:23.1070000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:23:23.1070000-07:00|10FF0002|Suchichi Suchi|005A5A16|76920|90128|10000|10000|0||99.96|98.65|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:23.1070000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|90128|79111| +38|2023-10-06T20:23:23.1070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|61496|79111|9650|10000|0||100.60|100.02|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:23.1070000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:23:23.1070000-07:00|10FF0006|Wowobora Gogobora|005A5A28|79184|80739|8820|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T20:23:23.1070000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:23:23.1070000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|80739|79111| +38|2023-10-06T20:23:23.1070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:23.1070000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:23:23.1070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8600|10000|0||100.36|99.87|0.00|-0.88|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:23.1070000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|80739|79111| +38|2023-10-06T20:23:23.1070000-07:00|10FF0003|Gegehi Gehi|005A5A23|65541|73085|6300|10000|0||100.92|99.70|0.00|-3.08|0|0|0|||||||||| +26|2023-10-06T20:23:23.1070000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73085|79111| +38|2023-10-06T20:23:23.1070000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.76|100.79|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:23.1070000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|90055|79111| +03|2023-10-06T20:23:22.7550000-07:00|4002278C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||90.00|80.30|0.00|0.00| +03|2023-10-06T20:23:22.7550000-07:00|4002278E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||94.00|80.30|0.00|0.00| +261|2023-10-06T20:23:22.7550000-07:00|Add|4002278C||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:22.7550000-07:00|Add|4002278E||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:23.1510000-07:00|10FF0007|Kehabiqo Febiqo|0001A7F4|123346|128564|10000|10000|0||100.05|96.15|0.00|-3.14|1500|0|0|01|06000000|0|0|| +21|2023-10-06T20:23:23.1510000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31024488|40478540|10000|10000|||100.00|80.10|0.00|0.00|65541|73085|6300|10000|||100.86|99.47|0.00|-3.09|0001A7FB|0|1| +38|2023-10-06T20:23:23.1510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123346|128564|10000|10000|0||100.05|96.15|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:23.1510000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:23:22.7550000-07:00|Change|4002278C||| +261|2023-10-06T20:23:22.7550000-07:00|Change|4002278E||| +37|2023-10-06T20:23:23.1950000-07:00|40022550|Zeromus|0001A7F5|31024344||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:23.1950000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|CBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31024488|40478540|10000|10000|||100.00|80.10|0.00|0.00|76920|90128|10000|10000|||99.97|98.65|0.00|3.13|0001A7FC|0|1| +21|2023-10-06T20:23:23.2400000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|714003|1A250000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|31024344|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|0001A7FD|0|1| +21|2023-10-06T20:23:23.2850000-07:00|10FF0003|Gegehi Gehi|20FD613|item_fd613|10FF0003|Gegehi Gehi|5800000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65541|73085|6300|10000|||100.79|99.23|0.00|-3.09|65541|73085|6300|10000|||100.79|99.23|0.00|-3.09|0001A7FE|0|1| +261|2023-10-06T20:23:22.8760000-07:00|Change|4002278A||| +37|2023-10-06T20:23:23.4180000-07:00|40022550|Zeromus|0001A7F6|31020944||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:23.4630000-07:00|40022550|Zeromus|0001A7F8|31016386||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:23.4630000-07:00|40022550|Zeromus|0001A7F9|30998648||||||100.00|80.10|0.00|0.00| +03|2023-10-06T20:23:23.1080000-07:00|40022791|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||102.00|80.30|0.00|0.00| +03|2023-10-06T20:23:23.1080000-07:00|40022790|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||98.00|80.30|0.00|0.00| +261|2023-10-06T20:23:23.1080000-07:00|Add|40022791||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:23.1080000-07:00|Add|40022790||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:23.2200000-07:00|Change|40022791||| +261|2023-10-06T20:23:23.2200000-07:00|Change|40022790||| +24|2023-10-06T20:23:23.6410000-07:00|10FF0002|Suchichi Suchi|HoT|0|9C9|76920|90128|10000|10000|||99.99|98.65|-0.02|3.13|10FF0008|Kokosaze Lulusaze|0|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11| +20|2023-10-06T20:23:23.6410000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.08|99.05|0.00|-3.14| +38|2023-10-06T20:23:23.6410000-07:00|10FF0002|Suchichi Suchi|005A5A16|79425|90128|10000|10000|0||99.99|98.65|-0.02|3.13|0|0|0||||||||||||||||||| +261|2023-10-06T20:23:23.3170000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:23:23.6860000-07:00|40022550|Zeromus|0001A7FB|30998621||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:23.6860000-07:00|10FF0003|Gegehi Gehi|HoT|0|A0C|65541|73085|6300|10000|||100.79|99.23|-0.02|-3.09|10FF0008|Kokosaze Lulusaze|0|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11| +38|2023-10-06T20:23:23.6860000-07:00|10FF0003|Gegehi Gehi|005A5A23|68113|73085|6300|10000|0||100.79|99.23|-0.02|-3.09|0|0|0|||||||||| +37|2023-10-06T20:23:23.7290000-07:00|40022550|Zeromus|0001A7FC|30995358||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:23.7290000-07:00|10FF0006|Wowobora Gogobora|0001A7F7|80739||||||100.08|99.05|0.00|-3.14| +261|2023-10-06T20:23:23.4070000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:23:23.8630000-07:00|40022550|Zeromus|0001A7FD|30988665||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:23.8630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9F0|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|10FF0008|Kokosaze Lulusaze|0|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11| +24|2023-10-06T20:23:23.8630000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9D1|80739|80739|8600|10000|||100.36|99.87|0.00|-3.12|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|-0.39| +38|2023-10-06T20:23:23.8630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:23:23.8630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8600|10000|0||100.36|99.87|0.00|-3.12|0|0|0||||||||||||||||||| +37|2023-10-06T20:23:23.9080000-07:00|10FF0008|Kokosaze Lulusaze|0001A7FA|61496|79111|9650|10000|0||100.60|100.02|0.00|-3.11|1B00|0|0|01|05000A8F|0|41E9F1A7|| +38|2023-10-06T20:23:23.9080000-07:00|4002278A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.44|101.76|0.00|-3.11|0|0|0||||||| +26|2023-10-06T20:23:23.9080000-07:00|30|Well Fed|2255.24|10FF0008|Kokosaze Lulusaze|4002278A|Demi-Bahamut|2964|68265|79111| +26|2023-10-06T20:23:23.9080000-07:00|A8F|Searing Light|29.20|10FF0008|Kokosaze Lulusaze|4002278A|Demi-Bahamut|00|68265|79111| +261|2023-10-06T20:23:23.5050000-07:00|Add|40022792||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:23:23.5050000-07:00|40022792|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||106.00|80.30|0.00|0.00| +261|2023-10-06T20:23:23.5050000-07:00|Change|40022792||| +24|2023-10-06T20:23:23.9530000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|F93|90055|90055|10000|10000|||100.24|100.79|0.00|-3.06|10FF0008|Kokosaze Lulusaze|0|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11| +21|2023-10-06T20:23:23.9530000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A722003|63240000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|30988665|40478540|10000|10000|||100.00|80.10|0.00|0.00|79425|90128|10000|10000|||99.99|98.65|0.00|3.13|0001A7FF|0|1| +38|2023-10-06T20:23:23.9530000-07:00|10FF0002|Suchichi Suchi|005A5A16|79425|90128|10000|10000|0||99.99|98.65|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:23:23.9530000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:23:23.9530000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:23:23.9530000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.24|100.79|0.00|-3.06|0|0|0||||||||||||||||||| +24|2023-10-06T20:23:23.9970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9DC|80739|80739|8820|10000|||100.08|99.05|0.00|-3.14|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|-0.39| +21|2023-10-06T20:23:23.9970000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30988665|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|0001A800|0|1| +38|2023-10-06T20:23:23.9970000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8820|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||| +31|2023-10-06T20:23:23.9970000-07:00|10FF0001||||| +37|2023-10-06T20:23:24.0420000-07:00|10FF0004|Buhojaqe Zijaqe|0001A7FA|80739|80739|8600|10000|0||100.36|99.87|0.00|-3.12|1C01|0|0|01|03000A8F|0|41E8DF38|| +21|2023-10-06T20:23:24.0420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30E70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|30988665|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||100.36|99.87|0.00|-3.12|0001A801|0|1| +38|2023-10-06T20:23:24.0420000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-0.39|0|0|0||||||| +26|2023-10-06T20:23:24.0420000-07:00|A8F|Searing Light|29.06|10FF0008|Kokosaze Lulusaze|40022666|Ruby Carbuncle|00|77430|79111| +21|2023-10-06T20:23:24.1300000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30988665|40478540|10000|10000|||100.00|80.10|0.00|0.00|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|0001A802|0|1| +37|2023-10-06T20:23:24.1750000-07:00|10FF0005|Wuwuchu Wuchu|0001A7FA|90055|90055|10000|10000|0||100.05|100.79|0.00|-3.04|2702|0|0|01|05000A8F|0|41E7CED6|| +37|2023-10-06T20:23:24.1750000-07:00|10FF0003|Gegehi Gehi|0001A7FE|68113|73085|6300|10000|0||100.79|99.23|0.00|-3.09|2300|0|0|01|03000031|2958|41F00000|| +26|2023-10-06T20:23:24.1750000-07:00|31|Medicated|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|2958|73085|73085| +38|2023-10-06T20:23:24.1750000-07:00|10FF0003|Gegehi Gehi|005A5A23|68113|73085|6300|10000|0||100.79|99.23|0.00|-3.09|0|0|0||||||||||||| +38|2023-10-06T20:23:24.2190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123346|128564|10000|10000|0||100.05|96.15|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:24.2190000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +37|2023-10-06T20:23:24.3090000-07:00|10FF0003|Gegehi Gehi|0001A7FA|68113|73085|6300|10000|0||100.79|99.23|0.00|-3.09|2303|0|0|01|02000A8F|0|41E6BC67|| +03|2023-10-06T20:23:23.9310000-07:00|40022793|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||110.00|80.30|0.00|0.00| +261|2023-10-06T20:23:23.9310000-07:00|Change|4002278A||||||||||| +261|2023-10-06T20:23:23.9310000-07:00|Add|40022793||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:23.9310000-07:00|Add|40022794||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:23:23.9310000-07:00|40022794|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||114.00|80.30|0.00|0.00| +261|2023-10-06T20:23:23.9310000-07:00|Change|40022780||| +261|2023-10-06T20:23:23.9310000-07:00|Change|40022793||| +261|2023-10-06T20:23:23.9310000-07:00|Change|40022794||| +21|2023-10-06T20:23:24.3550000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|232A0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|30988665|40478540|10000|10000|||100.00|80.10|0.00|0.00|123346|128564|10000|10000|||100.05|96.15|0.00|-3.14|0001A803|0|1| +37|2023-10-06T20:23:24.4440000-07:00|10FF0006|Wowobora Gogobora|0001A7FA|80739|80739|8820|10000|0||100.08|99.05|0.00|-3.14|2804|0|0|01|01000A8F|0|41E5A7EC|| +37|2023-10-06T20:23:24.5330000-07:00|40022550|Zeromus|0001A800|30986879||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:24.5330000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9D2|123346|128564|10000|10000|||100.05|96.15|0.00|-3.14|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|-0.92| +24|2023-10-06T20:23:24.5330000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|FE3|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11|10FF0008|Kokosaze Lulusaze|0|61496|79111|9650|10000|||100.60|100.02|0.00|-3.11| +21|2023-10-06T20:23:24.5330000-07:00|10FF0002|Suchichi Suchi|1CE6|Dragon Sight|10FF0005|Wuwuchu Wuchu|50E|5AE0000|A0F|7768000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.19|100.79|-0.02|-3.05|79425|90128|10000|10000|||99.99|98.65|0.00|-3.14|0001A804|0|1| +261|2023-10-06T20:23:24.1590000-07:00|Change|10FF0008||| +38|2023-10-06T20:23:24.5330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125860|128564|10000|10000|0||100.05|96.15|0.00|-3.14|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:23:24.5330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|65563|79111|10000|10000|0||100.60|100.02|0.00|-3.11|0|0|0||||||||||||||||||| +37|2023-10-06T20:23:24.5770000-07:00|10FF0002|Suchichi Suchi|0001A7FA|79425|90128|10000|10000|0||99.99|98.65|0.00|-3.14|1605|0|0|02|05000A8F|0|41E4957D|||||| +21|2023-10-06T20:23:24.5770000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5FBA0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|30988665|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8820|10000|||100.08|99.05|0.00|-3.14|0001A805|0|1| +21|2023-10-06T20:23:24.5770000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|750003|2AA10000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|30988665|40478540|10000|10000|||100.00|80.10|0.00|0.00|68113|73085|6300|10000|||100.79|99.23|0.00|-3.09|0001A806|0|1| +37|2023-10-06T20:23:24.6220000-07:00|40022550|Zeromus|0001A7FF|30961499||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:24.6220000-07:00|10FF0002|Suchichi Suchi|0001A7FF|79425|90128|10000|10000|0||99.99|98.65|0.00|-3.14|1600|0|0|01|06000747|0|41F00000|| +38|2023-10-06T20:23:24.6220000-07:00|10FF0002|Suchichi Suchi|005A5A16|79425|90128|10000|10000|0||99.99|98.65|0.00|-3.14|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:23:24.2500000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:23:24.6660000-07:00|40022550|Zeromus|0001A802|30961354||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:24.7110000-07:00|10FF0001|Sesuga Sapisuga|0001A7FA|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|1306|0|0|01|06000A8F|0|41E3851A|| +21|2023-10-06T20:23:24.7110000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|4A360000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30961499|40478540|10000|10000|||100.00|80.10|0.00|0.00|65563|79111|10000|10000|||100.60|100.02|0.00|-3.11|0001A807|0|1| +03|2023-10-06T20:23:24.3460000-07:00|40022795|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|80.30|0.00|0.00| +261|2023-10-06T20:23:24.3460000-07:00|Add|40022795||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:24.3460000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:23:24.4530000-07:00|Change|40022795||| +37|2023-10-06T20:23:24.8430000-07:00|10FF0007|Kehabiqo Febiqo|0001A7FA|125860|128564|10000|10000|0||100.05|96.15|0.00|-3.14|1507|0|0|01|05000A8F|0|41E274B7|| +37|2023-10-06T20:23:24.8430000-07:00|40022550|Zeromus|0001A801|30948835||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:24.9780000-07:00|40022550|Zeromus|0001A803|30939833||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:24.6680000-07:00|Change|10FF0008||||| +37|2023-10-06T20:23:25.1570000-07:00|10FF0005|Wuwuchu Wuchu|0001A804|90055|90055|10000|10000|0||100.30|100.79|0.00|3.11|2700|0|0|01|060005AE|0|41A00000|| +26|2023-10-06T20:23:25.1570000-07:00|5AE|Left Eye|20.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:23:25.1570000-07:00|10FF0002|Suchichi Suchi|0001A804|79425|90128|10000|10000|0||99.99|98.65|0.00|1.01|1600|0|0|01|03000776|0|41A00000|| +26|2023-10-06T20:23:25.1570000-07:00|776|Right Eye|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:23:25.1570000-07:00|10FF0002|Suchichi Suchi|80326|90128|10000|10000|||99.99|98.65|0.00|1.01| +37|2023-10-06T20:23:25.2010000-07:00|40022550|Zeromus|0001A806|30928920||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:25.2010000-07:00|10FF0003|Gegehi Gehi|68843|73085|6500|10000|||100.79|99.23|0.00|-3.10| +24|2023-10-06T20:23:25.2010000-07:00|40022550|Zeromus|DoT|0|2DA7|30939833|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|80326|90128|10000|10000|||99.99|98.65|0.00|0.76| +38|2023-10-06T20:23:25.2010000-07:00|40022550|Zeromus|005A5A00|30917233|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T20:23:24.7880000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:23:24.7880000-07:00|Change|40022794||| +24|2023-10-06T20:23:25.2450000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15D4|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|10FF0006|Wowobora Gogobora|0|80739|80739|8420|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:23:25.2450000-07:00|40022550|Zeromus|0001A805|30892727||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:25.2450000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-2.99| +261|2023-10-06T20:23:24.7880000-07:00|Change|40022790||||||||| +38|2023-10-06T20:23:25.2460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:25.2460000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:23:24.9030000-07:00|Change|40022789||| +37|2023-10-06T20:23:25.3340000-07:00|40022550|Zeromus|0001A807|30873729||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:23:25.3340000-07:00|279C|3| +21|2023-10-06T20:23:25.3780000-07:00|4002278A|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|140C0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|30892727|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03|0001A808|0|1| +39|2023-10-06T20:23:25.3780000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.63|98.35|0.00|3.12| +39|2023-10-06T20:23:25.3780000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8400|10000|||100.41|99.61|0.00|3.05| +21|2023-10-06T20:23:25.3780000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|400C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|125860|128564|10000|10000|||100.05|96.15|0.00|-3.14|30892727|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A809|0|1| +39|2023-10-06T20:23:25.4670000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.30|100.79|0.00|3.11| +21|2023-10-06T20:23:25.4670000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|473B0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|30873729|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.30|100.79|0.00|3.11|0001A80A|0|1| +261|2023-10-06T20:23:25.1360000-07:00|Change|40022795||||||||| +261|2023-10-06T20:23:25.1360000-07:00|Change|4002278B||||||||| +261|2023-10-06T20:23:25.1360000-07:00|Change|40022791||||||||| +39|2023-10-06T20:23:25.5110000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8625|10000|||100.08|99.05|0.00|-3.14| +20|2023-10-06T20:23:25.5110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.42|99.57|0.00|3.04| +261|2023-10-06T20:23:25.3340000-07:00|Change|10FF0006||| +21|2023-10-06T20:23:25.7330000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|2B230000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|30873729|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|0001A80B|0|1| +38|2023-10-06T20:23:25.7330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:25.7330000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +261|2023-10-06T20:23:25.3340000-07:00|Change|40022792||||||||| +261|2023-10-06T20:23:25.4300000-07:00|Change|4002278C||||||||| +261|2023-10-06T20:23:25.4300000-07:00|Change|10FF0004||||||||||||||||||||||| +04|2023-10-06T20:23:25.5220000-07:00|40022780|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||102.37|98.04|0.00|-1.24| +261|2023-10-06T20:23:25.5220000-07:00|Remove|40022780| +21|2023-10-06T20:23:26.0000000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|10EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30873729|40478540|10000|10000|||100.00|80.10|0.00|0.00|80326|90128|10000|10000|||100.08|99.06|0.00|1.96|0001A80C|0|1| +261|2023-10-06T20:23:25.6240000-07:00|Change|4002278E||||||||| +261|2023-10-06T20:23:25.6240000-07:00|Change|40022793||||||||| +37|2023-10-06T20:23:26.0440000-07:00|40022550|Zeromus|0001A80A|30855494||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:26.0440000-07:00|10FF0007|Kehabiqo Febiqo|127145|128564|10000|10000|||100.05|96.24|-0.02|-0.03| +39|2023-10-06T20:23:26.0440000-07:00|10FF0008|Kokosaze Lulusaze|66354|79111|9900|10000|||100.60|100.02|0.00|-3.11| +21|2023-10-06T20:23:26.0440000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30873729|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8625|10000|||100.08|99.05|0.00|-3.14|0001A80D|0|1| +20|2023-10-06T20:23:26.0900000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.08|99.05|0.00|-3.14| +21|2023-10-06T20:23:26.0900000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37752003|54490000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|30873729|40478540|10000|10000|||100.00|80.10|0.00|0.00|68843|73085|6500|10000|||100.79|99.23|0.00|-3.10|0001A80E|0|1| +21|2023-10-06T20:23:26.0900000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1B790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30873729|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A80F|0|1| +21|2023-10-06T20:23:26.1340000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21730000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|125860|128564|10000|10000|||100.05|96.24|-0.02|-0.03|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A810|0|1| +37|2023-10-06T20:23:26.1770000-07:00|10FF0007|Kehabiqo Febiqo|0001A809|110749||||||100.05|96.24|-0.02|-0.03| +261|2023-10-06T20:23:25.8150000-07:00|Change|10FF0008||| +21|2023-10-06T20:23:26.2670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30855494|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|0001A811|0|1| +31|2023-10-06T20:23:26.2670000-07:00|10FF0001||||| +21|2023-10-06T20:23:26.3130000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30855494|40478540|10000|10000|||100.00|80.10|0.00|0.00|110749|128564|10000|10000|||100.05|96.51|0.00|0.00|0001A812|0|1| +22|2023-10-06T20:23:26.3130000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0005|Wuwuchu Wuchu|30E|A270000|100000E|A280000|F|B9C8000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A813|0|8| +22|2023-10-06T20:23:26.3130000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0008|Kokosaze Lulusaze|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|66354|79111|9900|10000|||100.60|100.02|0.00|-3.11|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A813|1|8| +22|2023-10-06T20:23:26.3130000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0004|Buhojaqe Zijaqe|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8400|10000|||100.42|99.57|0.00|-3.12|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A813|2|8| +22|2023-10-06T20:23:26.3130000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0003|Gegehi Gehi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|68843|73085|6500|10000|||100.79|99.23|0.00|-3.10|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A813|3|8| +22|2023-10-06T20:23:26.3130000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0002|Suchichi Suchi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|80326|90128|10000|10000|||100.08|99.11|-0.02|3.14|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A813|4|8| +22|2023-10-06T20:23:26.3130000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0006|Wowobora Gogobora|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8625|10000|||100.08|99.05|0.00|-3.14|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A813|5|8| +22|2023-10-06T20:23:26.3130000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0001|Sesuga Sapisuga|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A813|6|8| +22|2023-10-06T20:23:26.3130000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0007|Kehabiqo Febiqo|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|110749|128564|10000|10000|||100.05|96.51|0.00|0.00|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A813|7|8| +37|2023-10-06T20:23:26.4020000-07:00|40022550|Zeromus|0001A808|30850362||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:26.4460000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|312B0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|30855494|40478540|10000|10000|||100.00|80.10|0.00|0.00|80326|90128|10000|10000|||100.08|99.11|0.00|3.14|0001A814|0|1| +21|2023-10-06T20:23:26.4460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31430000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|30855494|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8400|10000|||100.42|99.57|0.00|-3.12|0001A815|0|1| +38|2023-10-06T20:23:26.4460000-07:00|10FF0002|Suchichi Suchi|005A5A16|80326|90128|10000|10000|0||100.08|99.11|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:26.4460000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:26.5340000-07:00|40022550|Zeromus|0001A80C|30846031||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:26.5790000-07:00|40022550|Zeromus|0001A80D|30845992||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:26.6230000-07:00|40022550|Zeromus|0001A80F|30838959||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:26.6230000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30850362|40478540|10000|10000|||100.00|80.10|0.00|0.00|68843|73085|6500|10000|||100.79|99.23|0.00|-3.10|0001A816|0|1| +24|2023-10-06T20:23:26.6690000-07:00|10FF0002|Suchichi Suchi|HoT|0|9CD|80326|90128|10000|10000|||100.08|99.11|0.00|-3.14|10FF0008|Kokosaze Lulusaze|0|66354|79111|9900|10000|||100.60|100.02|0.00|-3.11| +38|2023-10-06T20:23:26.6690000-07:00|10FF0002|Suchichi Suchi|005A5A16|82835|90128|10000|10000|0||100.08|99.11|0.00|-3.14|0|0|0||||||||||||||||||| +261|2023-10-06T20:23:26.3630000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:23:26.7130000-07:00|40022550|Zeromus|0001A80E|30817382||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:26.7130000-07:00|10FF0003|Gegehi Gehi|HoT|0|FA2|68843|73085|6500|10000|||100.79|99.23|0.00|-3.10|10FF0003|Gegehi Gehi|0|68843|73085|6500|10000|||100.79|99.23|0.00|-3.10| +38|2023-10-06T20:23:26.7130000-07:00|10FF0003|Gegehi Gehi|005A5A23|72845|73085|6500|10000|0||100.79|99.23|0.00|-3.10|0|0|0||||||||||||| +261|2023-10-06T20:23:26.3630000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:23:26.8020000-07:00|40022550|Zeromus|0001A811|30815635||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:26.8020000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|712003|60CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30817382|40478540|10000|10000|||100.00|80.10|0.00|0.00|110749|128564|10000|10000|||100.05|97.61|-0.02|-0.01|0001A817|0|1| +37|2023-10-06T20:23:26.8460000-07:00|40022550|Zeromus|0001A812|30812790||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:26.8460000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|726003|8AE40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30817382|40478540|10000|10000|||100.00|80.10|0.00|0.00|72845|73085|6500|10000|||100.79|99.23|0.00|-3.10|0001A818|0|1| +24|2023-10-06T20:23:26.8910000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9B7|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|10FF0008|Kokosaze Lulusaze|0|66354|79111|9900|10000|||100.60|100.02|0.00|-3.11| +24|2023-10-06T20:23:26.8910000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|986|80739|80739|8000|10000|||100.42|99.56|0.00|3.14|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|-3.02| +38|2023-10-06T20:23:26.8910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:23:26.8910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8000|10000|0||100.42|99.56|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T20:23:26.9350000-07:00|10FF0007|Kehabiqo Febiqo|0001A810|119312||||||100.05|97.61|0.00|-3.14| +37|2023-10-06T20:23:26.9350000-07:00|10FF0005|Wuwuchu Wuchu|0001A813|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|2700|0|0|03|07000A27|0|41A00000|||||||||| +26|2023-10-06T20:23:26.9350000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:23:26.9350000-07:00|B9C|Bloodsown Circle|6.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:23:26.9350000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +24|2023-10-06T20:23:26.9810000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|9AA|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13| +38|2023-10-06T20:23:26.9810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:27.0250000-07:00|40022550|Zeromus|0001A80B|30801747||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:27.0250000-07:00|10FF0006|Wowobora Gogobora|HoT|0|93A|80739|80739|8625|10000|||100.08|99.05|0.00|-3.14|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|-3.02| +21|2023-10-06T20:23:27.0250000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3B090000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|30812790|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8625|10000|||100.08|99.05|0.00|-3.14|0001A819|0|1| +38|2023-10-06T20:23:27.0250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8225|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T20:23:27.0250000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:23:26.5560000-07:00|Change|4002278E||||| +261|2023-10-06T20:23:26.5560000-07:00|Change|40022793||||| +37|2023-10-06T20:23:27.0690000-07:00|40022550|Zeromus|0001A814|30789160||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:27.0690000-07:00|10FF0008|Kokosaze Lulusaze|0001A813|66354|79111|9900|10000|0||100.60|100.02|0.00|-3.11|1B01|0|0|02|06000A27|0|41A00000|||||| +26|2023-10-06T20:23:27.0690000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +26|2023-10-06T20:23:27.0690000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|79111|90055| +22|2023-10-06T20:23:27.0690000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0002|Suchichi Suchi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|0001A81A|0|8| +22|2023-10-06T20:23:27.0690000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0006|Wowobora Gogobora|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8225|10000|||100.08|99.05|0.00|-3.14|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|0001A81A|1|8| +22|2023-10-06T20:23:27.0690000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0004|Buhojaqe Zijaqe|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8000|10000|||100.42|99.54|-0.02|3.08|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|0001A81A|2|8| +22|2023-10-06T20:23:27.0690000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0003|Gegehi Gehi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72845|73085|6500|10000|||100.79|99.23|0.00|-3.10|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|0001A81A|3|8| +22|2023-10-06T20:23:27.0690000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0001|Sesuga Sapisuga|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|0001A81A|4|8| +22|2023-10-06T20:23:27.0690000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0008|Kokosaze Lulusaze|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|66354|79111|9900|10000|||100.60|100.02|0.00|-3.11|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|0001A81A|5|8| +22|2023-10-06T20:23:27.0690000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0007|Kehabiqo Febiqo|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|119312|128564|10000|10000|||100.05|97.61|0.00|-3.14|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|0001A81A|6|8| +22|2023-10-06T20:23:27.0690000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0005|Wuwuchu Wuchu|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|82835|90128|10000|10000|||100.08|99.11|0.00|-3.14|0001A81A|7|8| +38|2023-10-06T20:23:27.0690000-07:00|4002278A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.43|101.73|0.00|-3.03|0|0|0|||||||||| +26|2023-10-06T20:23:27.0690000-07:00|A27|Arcane Circle|19.96|10FF0005|Wuwuchu Wuchu|4002278A|Demi-Bahamut|00|68265|90055| +37|2023-10-06T20:23:27.1580000-07:00|40022550|Zeromus|0001A816|30789120||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:27.1590000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|754003|593E0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30789160|40478540|10000|10000|||100.00|80.10|0.00|0.00|66354|79111|9900|10000|||100.60|100.02|0.00|-3.11|0001A81B|0|1| +21|2023-10-06T20:23:27.1590000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|756003|A1CF0000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|30789160|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A81C|0|1| +38|2023-10-06T20:23:27.1590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:27.1590000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +37|2023-10-06T20:23:27.2030000-07:00|10FF0004|Buhojaqe Zijaqe|0001A813|80739|80739|8000|10000|0||100.43|99.46|0.00|3.07|1C02|0|0|02|06000A27|0|41A00000|||||| +26|2023-10-06T20:23:27.2030000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +26|2023-10-06T20:23:27.2030000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|80739|90055| +37|2023-10-06T20:23:27.2030000-07:00|10FF0005|Wuwuchu Wuchu|0001A813|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|2702|0|0|01|0A000A1B|02|C1F00000|| +38|2023-10-06T20:23:27.2030000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.02|0|0|0|||||||||| +26|2023-10-06T20:23:27.2030000-07:00|A27|Arcane Circle|19.96|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|77430|90055| +261|2023-10-06T20:23:26.7940000-07:00|Change|10FF0008||| +37|2023-10-06T20:23:27.2470000-07:00|40022550|Zeromus|0001A815|30776509||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:26.9140000-07:00|Change|40022794||||||||| +21|2023-10-06T20:23:27.2920000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30776509|40478540|10000|10000|||100.00|80.10|0.00|0.00|66354|79111|9600|10000|||100.60|100.02|0.00|-3.11|0001A81D|0|1| +261|2023-10-06T20:23:26.9140000-07:00|Change|40022790||||||| +37|2023-10-06T20:23:27.3380000-07:00|10FF0003|Gegehi Gehi|0001A813|72845|73085|6500|10000|0||100.79|99.23|0.00|-3.10|2303|0|0|02|04000A27|0|41A00000|||||| +26|2023-10-06T20:23:27.3380000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +26|2023-10-06T20:23:27.3380000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|01|73085|90055| +37|2023-10-06T20:23:27.3380000-07:00|10FF0005|Wuwuchu Wuchu|0001A813|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|2703|0|0|01|0A000A1B|02|C1F00000|| +261|2023-10-06T20:23:26.9140000-07:00|Change|40022789||||||||| +261|2023-10-06T20:23:27.0260000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:23:27.0260000-07:00|Change|4002256D||||||||| +37|2023-10-06T20:23:27.4260000-07:00|40022550|Zeromus|0001A817|30751729||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:27.4710000-07:00|10FF0002|Suchichi Suchi|0001A813|82835|90128|10000|10000|0||100.08|99.11|0.00|-3.14|1604|0|0|02|06000A27|0|41A00000|||||| +26|2023-10-06T20:23:27.4710000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +26|2023-10-06T20:23:27.4710000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|90128|90055| +37|2023-10-06T20:23:27.4710000-07:00|10FF0005|Wuwuchu Wuchu|0001A813|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|2704|0|0|01|0A000A1B|02|C1F00000|| +20|2023-10-06T20:23:27.4710000-07:00|40022550|Zeromus|8B43|Visceral Whirl|40022550|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:23:27.4710000-07:00|4002256D|Zeromus|8B44|Visceral Whirl|4002256D|Zeromus|8.500|80.10|80.10|0.00|0.79| +20|2023-10-06T20:23:27.4710000-07:00|4002256E|Zeromus|8B45|Visceral Whirl|4002256E|Zeromus|8.500|119.90|80.10|0.00|-0.79| +261|2023-10-06T20:23:27.1390000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:23:27.1390000-07:00|Change|40022795||||| +24|2023-10-06T20:23:27.5590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9CE|119312|128564|10000|10000|||100.05|97.61|0.00|-3.14|40022666|Ruby Carbuncle|0|77430|77430|10000|10000|||100.18|98.80|0.00|-3.11| +24|2023-10-06T20:23:27.5590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|F5C|66354|79111|9600|10000|||100.60|100.01|0.00|-3.11|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13| +38|2023-10-06T20:23:27.5590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121822|128564|10000|10000|0||100.05|97.61|0.00|-3.14|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:23:27.5590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70286|79111|10000|10000|0||100.60|100.01|0.00|-3.11|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:23:27.2490000-07:00|Change|40022791||||| +261|2023-10-06T20:23:27.2490000-07:00|Change|4002278B||||| +37|2023-10-06T20:23:27.6030000-07:00|10FF0006|Wowobora Gogobora|0001A813|80739|80739|8225|10000|0||100.08|99.05|0.00|-3.14|2805|0|0|02|04000A27|0|41A00000|||||| +26|2023-10-06T20:23:27.6030000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +26|2023-10-06T20:23:27.6030000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|80739|90055| +37|2023-10-06T20:23:27.6030000-07:00|10FF0005|Wuwuchu Wuchu|0001A813|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|2705|0|0|01|0A000A1B|02|C1F00000|| +21|2023-10-06T20:23:27.6030000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|3C3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30751729|40478540|10000|10000|||100.00|80.10|0.00|0.00|72845|73085|6500|10000|||100.79|99.23|0.00|-3.10|0001A81E|0|1| +38|2023-10-06T20:23:27.6480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:27.6480000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +38|2023-10-06T20:23:27.6480000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8225|10000|0||100.08|99.05|0.00|-3.14|0|0|0|||||||||||||||| +30|2023-10-06T20:23:27.6480000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|80739|90055| +37|2023-10-06T20:23:27.6940000-07:00|10FF0002|Suchichi Suchi|0001A81A|82835|90128|10000|10000|0||100.10|99.11|0.00|-3.14|1600|0|0|01|08000312|0|41700000|| +26|2023-10-06T20:23:27.6940000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:23:27.6940000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1529|127791|127791|10000|10000|||99.63|98.35|0.00|3.12|10FF0006|Wowobora Gogobora|0|80739|80739|8225|10000|||100.09|99.04|0.00|3.01| +37|2023-10-06T20:23:27.6940000-07:00|40022550|Zeromus|0001A819|30736616||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:27.6940000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022550|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30751729|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8000|10000|||100.45|99.11|0.00|3.04|0001A81F|0|1| +38|2023-10-06T20:23:27.6940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:27.6940000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:23:27.3490000-07:00|Change|10FF0006||||||||||||||||||||||| +38|2023-10-06T20:23:27.7380000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:27.7380000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +37|2023-10-06T20:23:27.7380000-07:00|10FF0001|Sesuga Sapisuga|0001A813|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|1306|0|0|02|07000A27|0|41A00000|||||| +26|2023-10-06T20:23:27.7380000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +26|2023-10-06T20:23:27.7380000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|127791|90055| +37|2023-10-06T20:23:27.7380000-07:00|10FF0005|Wuwuchu Wuchu|0001A813|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|2706|0|0|01|0A000A1B|02|C1F00000|| +21|2023-10-06T20:23:27.7380000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|48680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30751729|40478540|10000|10000|||100.00|80.10|0.00|0.00|82835|90128|10000|10000|||100.10|99.11|0.00|-3.14|0001A820|0|1| +38|2023-10-06T20:23:27.7380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70286|79111|10000|10000|0||100.60|99.96|0.00|-3.10|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:23:27.7380000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|79111|90055| +37|2023-10-06T20:23:27.7820000-07:00|40022550|Zeromus|0001A81B|30713770||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:27.7820000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30751729|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8000|10000|||100.45|99.11|0.00|3.04|0001A821|0|1| +261|2023-10-06T20:23:27.4420000-07:00|Change|40022792||||| +37|2023-10-06T20:23:27.8260000-07:00|10FF0006|Wowobora Gogobora|0001A81A|80739|80739|8225|10000|0||100.10|99.03|0.00|2.76|2801|0|0|01|05000312|0|41700000|| +26|2023-10-06T20:23:27.8260000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|80739|90128| +37|2023-10-06T20:23:27.8260000-07:00|40022550|Zeromus|0001A81D|30713614||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:27.4420000-07:00|Change|4002278C||||||| +37|2023-10-06T20:23:27.8710000-07:00|10FF0007|Kehabiqo Febiqo|0001A813|121822|128564|10000|10000|0||100.05|97.61|0.00|-3.14|1507|0|0|02|04000A27|0|41A00000|||||| +26|2023-10-06T20:23:27.8710000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +26|2023-10-06T20:23:27.8710000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|128564|90055| +37|2023-10-06T20:23:27.8710000-07:00|10FF0005|Wuwuchu Wuchu|0001A813|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|2707|0|0|01|0A000A1B|02|C1F00000|| +261|2023-10-06T20:23:27.5360000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:23:27.5360000-07:00|Change|4002256D||||||||||||| +37|2023-10-06T20:23:27.9610000-07:00|10FF0004|Buhojaqe Zijaqe|0001A81A|80739|80739|8000|10000|0||100.45|99.11|0.00|-3.12|1C02|0|0|01|08000312|0|41700000|| +26|2023-10-06T20:23:27.9610000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|80739|90128| +26|2023-10-06T20:23:27.9610000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:23:27.9610000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|4CCA0000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|30713614|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.30|100.79|0.00|-3.13|0001A822|0|1| +38|2023-10-06T20:23:27.9610000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T20:23:27.9610000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|40022666|Ruby Carbuncle|00|77430|90128| +38|2023-10-06T20:23:27.9610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:27.9610000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:23:27.9610000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:23:28.0050000-07:00|40022550|Zeromus|0001A818|30678058||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:28.0940000-07:00|10FF0003|Gegehi Gehi|0001A81A|72845|73085|6500|10000|0||100.79|99.23|0.00|-3.10|2303|0|0|01|06000312|0|41700000|| +26|2023-10-06T20:23:28.0940000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0003|Gegehi Gehi|00|73085|90128| +39|2023-10-06T20:23:28.1380000-07:00|10FF0002|Suchichi Suchi|83736|90128|10000|10000|||100.41|99.11|0.00|-3.12| +261|2023-10-06T20:23:27.8510000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:23:28.1840000-07:00|10FF0003|Gegehi Gehi|73085|73085|6700|10000|||100.79|99.23|0.00|-3.10| +24|2023-10-06T20:23:28.1840000-07:00|40022550|Zeromus|DoT|0|2070|30678058|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|83736|90128|10000|10000|||100.13|99.11|0.00|-3.12| +38|2023-10-06T20:23:28.1840000-07:00|40022550|Zeromus|005A5A00|30669754|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T20:23:28.2270000-07:00|10FF0001|Sesuga Sapisuga|0001A81A|127791|127791|10000|10000|0||99.63|98.35|0.00|3.12|1304|0|0|01|09000312|0|41700000|| +26|2023-10-06T20:23:28.2270000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|127791|90128| +37|2023-10-06T20:23:28.2270000-07:00|40022550|Zeromus|0001A81C|30628331||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:28.2270000-07:00|10FF0005|Wuwuchu Wuchu|0001A81C|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|2700|0|0|02|0A000A1B|01|41F00000|||||| +39|2023-10-06T20:23:28.2280000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +261|2023-10-06T20:23:27.9690000-07:00|Change|10FF0003||| +39|2023-10-06T20:23:28.2280000-07:00|4002278A|Demi-Bahamut|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03| +38|2023-10-06T20:23:28.2280000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.30|100.79|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:23:28.2730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.45|99.11|0.00|-3.12| +37|2023-10-06T20:23:28.3180000-07:00|40022550|Zeromus|0001A821|30628169||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:23:28.3180000-07:00|2878|3| +37|2023-10-06T20:23:28.3620000-07:00|10FF0008|Kokosaze Lulusaze|0001A81A|70286|79111|10000|10000|0||100.57|99.66|0.00|-3.09|1B05|0|0|01|07000312|0|41700000|| +26|2023-10-06T20:23:28.3620000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|79111|90128| +39|2023-10-06T20:23:28.3620000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.63|98.35|0.00|3.12| +39|2023-10-06T20:23:28.3620000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8200|10000|||100.45|99.11|0.00|-3.12| +38|2023-10-06T20:23:28.3620000-07:00|4002278A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.43|101.73|0.00|-3.03|0|0|0||||||||||||| +26|2023-10-06T20:23:28.3620000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|4002278A|Demi-Bahamut|00|68265|90128| +261|2023-10-06T20:23:27.9690000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T20:23:28.4060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.28|100.79|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:28.4060000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:23:28.4060000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|03|90055|90055| +21|2023-10-06T20:23:28.4060000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A750003|52140000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|30628169|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6700|10000|||100.79|99.23|0.00|-3.10|0001A823|0|1| +37|2023-10-06T20:23:28.4510000-07:00|40022550|Zeromus|0001A822|30608511||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:28.4510000-07:00|10FF0005|Wuwuchu Wuchu|0001A822|90055|90055|10000|10000|0||100.28|100.79|0.00|-3.13|2700|0|0|01|0C000A1D|0|42700000|| +39|2023-10-06T20:23:28.4510000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.28|100.79|0.00|-3.13| +38|2023-10-06T20:23:28.4510000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.28|100.79|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:28.4950000-07:00|10FF0007|Kehabiqo Febiqo|0001A81A|121822|128564|10000|10000|0||100.05|97.61|0.00|-3.14|1506|0|0|01|08000312|0|41700000|| +26|2023-10-06T20:23:28.4950000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|128564|90128| +37|2023-10-06T20:23:28.4950000-07:00|40022550|Zeromus|0001A81F|30608511|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004C5|0|41700000|| +26|2023-10-06T20:23:28.4950000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +39|2023-10-06T20:23:28.4950000-07:00|10FF0006|Wowobora Gogobora|80739|80739|8430|10000|||101.81|96.84|0.00|2.40| +21|2023-10-06T20:23:28.5410000-07:00|4002278A|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|13B80000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|30628169|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03|0001A824|0|1| +26|2023-10-06T20:23:28.5410000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:23:28.5410000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|750003|38470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30628169|40478540|10000|10000|||100.00|80.10|0.00|0.00|70286|79111|10000|10000|||100.57|99.66|0.00|-3.09|0001A825|0|1| +20|2023-10-06T20:23:28.5410000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.81|96.84|0.00|2.40| +21|2023-10-06T20:23:28.5410000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35712003|340E0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|30628169|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.64|98.35|0.00|2.53|0001A826|0|1| +21|2023-10-06T20:23:28.5410000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30628169|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.64|98.35|0.00|2.53|0001A827|0|1| +31|2023-10-06T20:23:28.5410000-07:00|10FF0001||||| +37|2023-10-06T20:23:28.6290000-07:00|10FF0005|Wuwuchu Wuchu|0001A81A|90055|90055|10000|10000|0||100.05|100.78|0.00|3.14|2707|0|0|01|02000312|0|41700000|| +26|2023-10-06T20:23:28.6290000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +261|2023-10-06T20:23:28.3980000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:23:28.7630000-07:00|40022550|Zeromus|0001A81E|30593089||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:28.8080000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|12D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30608511|40478540|10000|10000|||100.00|80.10|0.00|0.00|83736|90128|10000|10000|||100.38|99.11|0.00|-3.12|0001A828|0|1| +37|2023-10-06T20:23:28.9430000-07:00|40022550|Zeromus|0001A820|30574553||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:28.9430000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|2C460000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|30593089|40478540|10000|10000|||100.00|80.10|0.00|0.00|83736|90128|10000|10000|||100.44|99.11|0.00|-3.12|0001A829|0|1| +38|2023-10-06T20:23:28.9430000-07:00|10FF0002|Suchichi Suchi|005A5A16|83736|90128|10000|10000|0||100.44|99.11|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:28.9430000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:23:28.5800000-07:00|Change|40022790||||||||| +38|2023-10-06T20:23:28.9870000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.77|100.78|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:28.9870000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|04|90055|90055| +38|2023-10-06T20:23:28.9870000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6700|10000|0||100.79|99.23|0.00|-3.10|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:23:28.9870000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|01|73085|90055| +261|2023-10-06T20:23:28.6930000-07:00|Change|40022789||||||||| +37|2023-10-06T20:23:29.0320000-07:00|40022550|Zeromus|0001A823|30553541||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:29.0320000-07:00|10FF0007|Kehabiqo Febiqo|123107|128564|10000|10000|||101.23|97.18|0.00|3.04| +39|2023-10-06T20:23:29.0320000-07:00|10FF0008|Kokosaze Lulusaze|71077|79111|10000|10000|||100.57|99.66|0.00|-3.11| +37|2023-10-06T20:23:29.0770000-07:00|40022550|Zeromus|0001A827|30551679||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:29.0770000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||102.15|98.73|0.00|2.78|127791|127791|10000|10000|||102.15|98.73|0.00|2.78|0001A82A|0|1| +21|2023-10-06T20:23:29.1660000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|724003|1A130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30553541|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6700|10000|||100.79|99.23|0.00|-3.10|0001A82B|0|1| +21|2023-10-06T20:23:29.2100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|53410000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|30551679|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8200|10000|||100.45|99.11|0.00|-3.12|0001A82C|0|1| +261|2023-10-06T20:23:28.8090000-07:00|Change|10FF0004||||||||||||||||| +38|2023-10-06T20:23:29.2540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.88|100.80|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:29.2540000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|05|90055|90055| +21|2023-10-06T20:23:29.2540000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|39B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30551679|40478540|10000|10000|||100.00|80.10|0.00|0.00|123107|128564|10000|10000|||101.85|96.59|0.00|2.88|0001A82D|0|1| +38|2023-10-06T20:23:29.2540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||103.37|99.19|0.00|2.78|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:29.2540000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|127791|90055| +37|2023-10-06T20:23:29.2980000-07:00|40022550|Zeromus|0001A826|30538353||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:29.2990000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1D7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30551679|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.88|100.80|0.00|3.11|0001A82E|0|1| +37|2023-10-06T20:23:29.3420000-07:00|40022550|Zeromus|0001A828|30533537||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:29.3420000-07:00|10FF0002|Suchichi Suchi|0001A828|83736|90128|10000|10000|0||101.18|98.66|0.00|-3.08|1600|0|0|01|04000AA0|0|C1F00000|| +261|2023-10-06T20:23:29.0420000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:23:29.4310000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14A30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|123107|128564|10000|10000|||101.90|96.52|0.00|-3.02|77430|77430|10000|10000|||100.18|98.80|0.00|3.11|0001A82F|0|1| +37|2023-10-06T20:23:29.4760000-07:00|40022550|Zeromus|0001A825|30519130||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:29.4760000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38030000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|30533537|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8430|10000|||102.31|96.06|0.00|-3.00|0001A830|0|1| +261|2023-10-06T20:23:29.1630000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:23:29.2530000-07:00|Change|4002278C||||||||| +37|2023-10-06T20:23:29.5650000-07:00|40022550|Zeromus|0001A824|30514082||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:29.6090000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|726003|598E0000|23E|BD8000|FE3E|9E8000|0|0|0|0|0|0|0|0|0|0|30519130|40478540|10000|10000|||100.00|80.10|0.00|0.00|83736|90128|10000|10000|||102.49|97.09|0.00|-3.01|0001A831|0|1| +24|2023-10-06T20:23:29.6540000-07:00|10FF0002|Suchichi Suchi|HoT|0|9F8|83736|90128|10000|10000|||102.49|97.09|0.00|-3.01|10FF0002|Suchichi Suchi|0|83736|90128|10000|10000|||102.49|97.09|0.00|-3.01| +21|2023-10-06T20:23:29.6540000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|752003|79290000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30519130|40478540|10000|10000|||100.00|80.10|0.00|0.00|71077|79111|10000|10000|||100.57|99.66|0.00|-3.11|0001A832|0|1| +38|2023-10-06T20:23:29.6540000-07:00|10FF0002|Suchichi Suchi|005A5A16|86288|90128|10000|10000|0||102.49|97.09|0.00|-3.01|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:23:29.3610000-07:00|Change|10FF0008||||| +261|2023-10-06T20:23:29.3610000-07:00|Change|10FF0006||||||||||||||||||||||| +24|2023-10-06T20:23:29.6990000-07:00|10FF0003|Gegehi Gehi|HoT|0|986|73085|73085|6700|10000|||100.79|99.23|0.00|-3.10|10FF0002|Suchichi Suchi|0|86288|90128|10000|10000|||102.24|96.58|0.00|-3.02| +21|2023-10-06T20:23:29.6990000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|17270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30514082|40478540|10000|10000|||100.00|80.10|0.00|0.00|123107|128564|10000|10000|||102.00|96.36|0.00|-3.11|0001A833|0|1| +38|2023-10-06T20:23:29.6990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6700|10000|0||100.79|99.23|0.00|-3.10|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:23:29.7430000-07:00|10FF0001|Sesuga Sapisuga|0001A82A|127791|127791|10000|10000|0||105.92|99.57|0.00|2.86|1300|0|0|01|0800004C|0|41A00000|| +26|2023-10-06T20:23:29.7430000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:23:29.8320000-07:00|40022550|Zeromus|0001A82B|30507407||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:29.8320000-07:00|40022550|Zeromus|0001A82E|30499857||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:29.8770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.96|100.82|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:29.8770000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|06|90055|90055| +261|2023-10-06T20:23:29.5450000-07:00|Change|40022792||||||| +261|2023-10-06T20:23:29.5450000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:23:29.8770000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|993|127791|127791|10000|10000|||106.52|99.74|0.00|2.89|10FF0002|Suchichi Suchi|0|86288|90128|10000|10000|||101.88|96.02|0.00|-2.99| +24|2023-10-06T20:23:29.8770000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9B8|80739|80739|7800|10000|||101.39|98.10|0.00|2.31|10FF0002|Suchichi Suchi|0|86288|90128|10000|10000|||101.88|96.02|0.00|-2.99| +26|2023-10-06T20:23:29.8770000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +21|2023-10-06T20:23:29.8770000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|750003|11610000|104|67E8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|30514082|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7800|10000|||101.39|98.10|0.00|2.31|0001A834|0|1| +21|2023-10-06T20:23:29.8770000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|720003|1B750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30514082|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6700|10000|||100.79|99.23|0.00|-3.10|0001A835|0|1| +38|2023-10-06T20:23:29.8770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123107|128564|10000|10000|0||102.03|96.36|0.00|3.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:29.8770000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|128564|90055| +38|2023-10-06T20:23:29.8770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||106.52|99.74|0.00|2.89|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:29.8770000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:23:29.8770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7800|10000|0||101.39|98.10|0.00|2.31|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:23:29.9200000-07:00|40022550|Zeromus|0001A82D|30485083||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:29.5450000-07:00|Change|4002278C||||| +261|2023-10-06T20:23:29.5450000-07:00|Change|4002278B||||||||| +21|2023-10-06T20:23:29.9210000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|750003|28CD0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|30485083|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||106.81|99.31|0.00|2.96|0001A836|0|1| +38|2023-10-06T20:23:29.9210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||106.81|99.31|0.00|2.96|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:29.9210000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|127791|127791| +26|2023-10-06T20:23:29.9210000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:23:29.9650000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.96|100.82|-0.02|3.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:29.9650000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|07|90055|90055| +24|2023-10-06T20:23:29.9650000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|F4C|90055|90055|10000|10000|||99.96|100.82|-0.02|3.00|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||99.96|100.82|-0.02|3.00| +38|2023-10-06T20:23:29.9650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7800|10000|0||101.76|97.72|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:29.9650000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|80739|90055| +38|2023-10-06T20:23:29.9650000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.96|100.82|-0.02|3.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:30.0100000-07:00|40022550|Zeromus|0001A82C|30463770||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:30.0100000-07:00|10FF0006|Wowobora Gogobora|HoT|0|97B|80739|80739|8030|10000|||102.31|96.06|0.00|-3.00|10FF0002|Suchichi Suchi|0|86288|90128|10000|10000|||101.52|96.13|0.00|-3.02| +38|2023-10-06T20:23:30.0100000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8030|10000|0||102.31|96.06|0.00|-3.00|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:30.0100000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:23:30.0980000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30485083|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6700|10000|||100.79|99.23|0.00|-3.10|0001A837|0|1| +261|2023-10-06T20:23:29.7400000-07:00|Change|4002278E||||||| +261|2023-10-06T20:23:29.7400000-07:00|Change|40022793||||| +24|2023-10-06T20:23:30.1430000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|22B2|127791|127791|10000|10000|||106.86|99.00|0.00|2.98|10FF0006|Wowobora Gogobora|1|80739|80739|8030|10000|||102.31|96.06|0.00|-3.00| +37|2023-10-06T20:23:30.1430000-07:00|40022550|Zeromus|0001A830|30449431||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:30.1440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||106.86|99.00|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:30.2330000-07:00|40022550|Zeromus|0001A833|30443504||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:30.2330000-07:00|40022550|Zeromus|0001A831|30420578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:30.2330000-07:00|10FF0002|Suchichi Suchi|0001A831|86288|90128|10000|10000|0||101.27|95.38|0.00|-2.99|1600|0|0|01|04000AA0|0|C1F00000|| +37|2023-10-06T20:23:30.2330000-07:00|10FF0007|Kehabiqo Febiqo|0001A82F|128390||||||104.42|96.92|0.00|2.98| +37|2023-10-06T20:23:30.2780000-07:00|40022550|Zeromus|0001A832|30389561||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:30.2780000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|726003|7C640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30449431|40478540|10000|10000|||100.00|80.10|0.00|0.00|86288|90128|10000|10000|||101.27|95.38|0.00|-2.99|0001A838|0|1| +21|2023-10-06T20:23:30.3220000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|752003|5FE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30389561|40478540|10000|10000|||100.00|80.10|0.00|0.00|71077|79111|9700|10000|||100.60|99.50|0.00|3.06|0001A839|0|1| +38|2023-10-06T20:23:30.3220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|71077|79111|9700|10000|0||100.60|99.50|0.00|3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:30.3220000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +261|2023-10-06T20:23:29.9750000-07:00|Change|40022794||||| +261|2023-10-06T20:23:30.0930000-07:00|Change|40022789||||| +261|2023-10-06T20:23:30.0930000-07:00|Change|40022790||||| +37|2023-10-06T20:23:30.4560000-07:00|40022550|Zeromus|0001A835|30382532||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:30.4560000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|12D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30389561|40478540|10000|10000|||100.00|80.10|0.00|0.00|71077|79111|9700|10000|||100.61|99.45|0.00|-3.10|0001A83A|0|1| +21|2023-10-06T20:23:30.5010000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B710003|503C0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|30389561|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.78|97.88|0.00|2.88|0001A83B|0|1| +38|2023-10-06T20:23:30.5010000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.78|97.88|0.00|2.88|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:30.5010000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:23:30.5010000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +30|2023-10-06T20:23:30.5010000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +38|2023-10-06T20:23:30.5450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.96|97.27|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:30.5450000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|08|90055|90055| +37|2023-10-06T20:23:30.5450000-07:00|40022550|Zeromus|0001A836|30372087||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:30.5450000-07:00|10FF0001|Sesuga Sapisuga|0001A836|127791|127791|10000|10000|0||106.92|98.32|0.00|3.10|1300|0|0|02|0A000558|04|41F00000|||||| +24|2023-10-06T20:23:30.5450000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|996|128390|128564|10000|10000|||104.67|96.08|0.00|-2.96|10FF0002|Suchichi Suchi|0|86288|90128|10000|10000|||100.60|93.31|0.00|-3.11| +24|2023-10-06T20:23:30.5450000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|973|71077|79111|9700|10000|||100.62|99.40|0.00|-3.10|10FF0002|Suchichi Suchi|0|86288|90128|10000|10000|||100.60|93.31|0.00|-3.11| +38|2023-10-06T20:23:30.5450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||104.67|96.08|0.00|-2.96|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:30.5450000-07:00|10FF0002|Suchichi Suchi|005A5A16|86288|90128|10000|10000|0||100.60|93.31|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:30.5450000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|90128|90055| +38|2023-10-06T20:23:30.5450000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|73496|79111|10000|10000|0||100.62|99.40|0.00|-3.10|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:23:30.5450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||106.92|98.32|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:30.5900000-07:00|40022550|Zeromus|0001A829|30360753||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:30.5900000-07:00|10FF0002|Suchichi Suchi|0001A829|86288|90128|10000|10000|0||100.60|93.31|0.00|-3.11|1600|0|0|01|04000AA0|0|41F00000|| +21|2023-10-06T20:23:30.5900000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|128390|128564|10000|10000|||104.67|96.08|0.00|-2.96|128390|128564|10000|10000|||104.67|96.08|0.00|-2.96|0001A83C|0|1| +261|2023-10-06T20:23:30.2170000-07:00|Change|40022795||||| +38|2023-10-06T20:23:30.5900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||104.67|96.08|0.00|-2.96|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:30.5900000-07:00|A75|Surging Tempest|26.92|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:23:30.5900000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|128564|128564| +26|2023-10-06T20:23:30.5900000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:23:30.5900000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:23:30.5900000-07:00|10FF0002|Suchichi Suchi|005A5A16|86288|90128|10000|10000|0||100.60|93.31|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:23:30.6330000-07:00|40022550|Zeromus|0001A837|30360712||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:30.3110000-07:00|Change|40022791||||| +261|2023-10-06T20:23:30.3110000-07:00|Change|4002278B||||| +261|2023-10-06T20:23:30.3110000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:23:30.3110000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:23:30.6790000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022550|Zeromus|152003|9DA90000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|0|0|30360712|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6700|10000|||102.03|98.59|0.00|2.57|0001A83D|0|1| +261|2023-10-06T20:23:30.3110000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:23:30.8110000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30360712|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8030|10000|||102.69|93.90|0.00|3.01|0001A83E|0|1| +21|2023-10-06T20:23:30.8110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|AF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30360712|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||107.04|98.33|0.00|-3.13|0001A83F|0|1| +31|2023-10-06T20:23:30.8110000-07:00|10FF0001||||| +38|2023-10-06T20:23:30.8550000-07:00|40022550|Zeromus|005A5A00|30360712|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:23:30.8550000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:23:30.8990000-07:00|40022550|Zeromus|0001A834|30356263||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:30.5130000-07:00|Change|10FF0002||||||||| +38|2023-10-06T20:23:30.9440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|73496|79111|10000|10000|0||100.78|98.19|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:30.9440000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|79111|79111| +21|2023-10-06T20:23:30.9440000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|752003|37D10000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|30356263|40478540|10000|10000|||100.00|80.10|0.00|0.00|73496|79111|10000|10000|||100.78|98.19|0.00|-3.12|0001A840|0|1| +38|2023-10-06T20:23:30.9440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|73496|79111|10000|10000|0||100.78|98.19|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:30.9440000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:23:30.9890000-07:00|40022550|Zeromus|0001A83A|30355962||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:30.9890000-07:00|10FF0008|Kokosaze Lulusaze|0001A83A|73496|79111|10000|10000|0||100.78|98.19|0.00|-3.12|1B00|0|0|01|08000A8D|0|C2700000|| +37|2023-10-06T20:23:30.9890000-07:00|40022550|Zeromus|0001A83B|30335422||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:30.9890000-07:00|10FF0005|Wuwuchu Wuchu|0001A83B|90055|90055|10000|10000|0||102.59|95.79|0.00|2.97|2700|0|0|01|09000A1C|0|42700000|| +21|2023-10-06T20:23:30.9890000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|6C590000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|30356263|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8030|10000|||102.16|92.49|0.00|-2.76|0001A841|0|1| +38|2023-10-06T20:23:30.9890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||102.59|95.79|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:30.6030000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:30.6030000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:30.6030000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:23:31.0330000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|710003|5A3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30335422|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||108.35|97.18|0.00|-3.10|0001A842|0|1| +37|2023-10-06T20:23:31.0770000-07:00|40022550|Zeromus|0001A838|30303578||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:30.7180000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:23:31.1660000-07:00|10FF0002|Suchichi Suchi|87189|90128|10000|10000|||97.77|91.51|-0.02|-2.89| +39|2023-10-06T20:23:31.2100000-07:00|10FF0003|Gegehi Gehi|73085|73085|6500|10000|||102.73|98.17|-0.02|-3.07| +24|2023-10-06T20:23:31.2100000-07:00|40022550|Zeromus|DoT|0|1FED|30303578|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|80739|80739|7800|10000|||102.50|91.82|0.00|-3.02| +38|2023-10-06T20:23:31.2100000-07:00|40022550|Zeromus|005A5A00|30295405|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:23:30.8350000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:23:31.2560000-07:00|40022550|Zeromus|0001A839|30270861||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:31.2560000-07:00|10FF0008|Kokosaze Lulusaze|0001A839|73496|79111|10000|10000|0||101.12|95.14|0.00|-3.06|1B00|0|0|01|08000A8D|0|C2700000|| +39|2023-10-06T20:23:31.2570000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|3.05| +39|2023-10-06T20:23:31.2570000-07:00|4002278A|Demi-Bahamut|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03| +37|2023-10-06T20:23:31.3460000-07:00|10FF0007|Kehabiqo Febiqo|0001A83C|128564|128564|10000|10000|0||102.32|92.33|0.00|-2.94|1500|0|0|03|06000499|03|41700000|||||||||| +37|2023-10-06T20:23:31.3460000-07:00|40022550|Zeromus|0001A83E|30270802||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:31.3460000-07:00|40022550|Zeromus|0001A83F|30267999||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:23:31.3460000-07:00|2954|3| +38|2023-10-06T20:23:31.3460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||102.32|92.33|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:30.9540000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:23:31.3900000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||109.79|95.99|0.00|-3.11| +39|2023-10-06T20:23:31.3900000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8000|10000|||101.40|90.85|0.00|-2.50| +21|2023-10-06T20:23:31.3900000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|25170000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|30270861|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7800|10000|||101.40|90.85|0.00|-2.50|0001A843|0|1| +21|2023-10-06T20:23:31.4340000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|35F30000|DFD70E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|30270861|40478540|10000|10000|||100.00|80.10|0.00|0.00|87189|90128|10000|10000|||97.53|89.92|0.00|-3.04|0001A844|0|1| +38|2023-10-06T20:23:31.4340000-07:00|10FF0002|Suchichi Suchi|005A5A16|87189|90128|10000|10000|0||97.53|89.92|0.00|-3.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:31.4340000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:23:31.4780000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||105.82|94.41|0.00|2.45| +39|2023-10-06T20:23:31.5230000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7835|10000|||101.35|91.02|0.00|-2.93| +261|2023-10-06T20:23:31.1930000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:23:31.1930000-07:00|Change|4002278C||||||||| +37|2023-10-06T20:23:31.5670000-07:00|40022550|Zeromus|0001A842|30244899||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:31.1930000-07:00|Change|40022792||||||||| +21|2023-10-06T20:23:31.6120000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|11780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30267999|40478540|10000|10000|||100.00|80.10|0.00|0.00|87189|90128|10000|10000|||97.40|88.39|0.00|2.86|0001A845|0|1| +261|2023-10-06T20:23:31.3090000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:23:31.6560000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1501|127791|127791|10000|10000|||109.32|95.87|0.00|-3.04|10FF0006|Wowobora Gogobora|0|80739|80739|7835|10000|||101.07|90.47|0.00|-2.85| +37|2023-10-06T20:23:31.6560000-07:00|40022550|Zeromus|0001A841|30217162||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:31.6570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||108.66|95.94|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:23:31.7010000-07:00|4002278A|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|752003|20310000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|30217162|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03|0001A846|0|1| +21|2023-10-06T20:23:31.7010000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|8A880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30217162|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||101.69|91.11|0.00|3.11|0001A847|0|1| +38|2023-10-06T20:23:31.7010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||101.69|91.11|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:31.7010000-07:00|499|Inner Release|14.60|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|128564|128564| +261|2023-10-06T20:23:31.4100000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:23:31.5030000-07:00|Change|4002278E||||||||| +37|2023-10-06T20:23:31.8790000-07:00|40022550|Zeromus|0001A844|30203351|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:23:31.8790000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:23:31.8790000-07:00|10FF0002|Suchichi Suchi|0001A844|87189|90128|10000|10000|0||97.34|86.78|0.00|2.96|1600|0|0|01|07000323|0|41F00000|| +38|2023-10-06T20:23:31.8790000-07:00|10FF0002|Suchichi Suchi|005A5A16|87189|90128|10000|10000|0||97.34|86.78|0.00|2.96|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:23:31.9230000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30203351|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7600|10000|||100.71|89.82|0.00|-2.56|0001A848|0|1| +37|2023-10-06T20:23:31.9670000-07:00|40022550|Zeromus|0001A840|30189062||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:31.9670000-07:00|10FF0008|Kokosaze Lulusaze|0001A840|73496|79111|10000|10000|0||100.10|90.72|0.00|-2.84|1B00|0|0|01|08000A8D|0|42700000|| +38|2023-10-06T20:23:31.9670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|73496|79111|10000|10000|0||100.10|90.72|0.00|-2.84|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:23:31.6020000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:23:31.6020000-07:00|Change|40022790||||||||| +39|2023-10-06T20:23:32.0570000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||101.91|90.83|0.00|-2.95| +39|2023-10-06T20:23:32.0570000-07:00|10FF0008|Kokosaze Lulusaze|74287|79111|10000|10000|||99.85|90.13|0.00|-2.81| +37|2023-10-06T20:23:32.1010000-07:00|40022550|Zeromus|0001A83D|30148701||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:32.1010000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|752003|76A60000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30189062|40478540|10000|10000|||100.00|80.10|0.00|0.00|73496|79111|10000|10000|||99.85|90.13|0.00|-2.81|0001A849|0|1| +261|2023-10-06T20:23:31.7030000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:23:31.7030000-07:00|Change|40022789||||||||| +37|2023-10-06T20:23:32.1450000-07:00|40022550|Zeromus|0001A845|30144229||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:32.2350000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|720003|46440000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|30144229|40478540|10000|10000|||100.00|80.10|0.00|0.00|87189|90128|10000|10000|||97.31|84.58|0.00|2.97|0001A84A|0|1| +38|2023-10-06T20:23:32.2350000-07:00|10FF0002|Suchichi Suchi|005A5A16|87189|90128|10000|10000|0||97.31|84.58|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:32.2350000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:23:31.9250000-07:00|Change|4002278B||||||||| +37|2023-10-06T20:23:32.3250000-07:00|40022550|Zeromus|0001A847|30108765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:32.3250000-07:00|40022550|Zeromus|0001A843|30099270||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:31.9250000-07:00|Change|40022793||||||||| +21|2023-10-06T20:23:32.3700000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|30400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30144229|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||102.12|90.37|0.00|-3.01|0001A84B|0|1| +37|2023-10-06T20:23:32.4590000-07:00|40022550|Zeromus|0001A848|30099113||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:32.5030000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1BFE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30099270|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||103.29|91.93|0.00|2.64|0001A84C|0|1| +261|2023-10-06T20:23:32.1610000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:23:32.6370000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|14F80000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|74287|79111|9700|10000|||98.79|87.52|0.00|3.11|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A84D|0|1| +24|2023-10-06T20:23:32.6370000-07:00|10FF0002|Suchichi Suchi|HoT|0|9CA|87189|90128|10000|10000|||97.23|83.55|0.00|2.62|10FF0002|Suchichi Suchi|0|87189|90128|10000|10000|||97.23|83.55|0.00|2.62| +38|2023-10-06T20:23:32.6370000-07:00|10FF0002|Suchichi Suchi|005A5A16|89695|90128|10000|10000|0||97.23|83.55|0.00|2.62|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:23:32.6810000-07:00|10FF0003|Gegehi Gehi|HoT|0|93D|73085|73085|6500|10000|||103.33|94.38|0.00|3.14|10FF0002|Suchichi Suchi|0|89695|90128|10000|10000|||97.22|83.30|0.00|2.69| +26|2023-10-06T20:23:32.6810000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +21|2023-10-06T20:23:32.6810000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|752003|1C700000|104|AA08000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|30099113|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7600|10000|||102.44|86.31|0.00|2.68|0001A84E|0|1| +38|2023-10-06T20:23:32.6810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6500|10000|0||103.33|94.38|0.00|3.14|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:23:32.3770000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:32.7270000-07:00|40022550|Zeromus|0001A84A|30081125||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:32.7270000-07:00|10FF0002|Suchichi Suchi|0001A84A|89695|90128|10000|10000|0||97.22|83.30|0.00|2.69|1600|0|0|01|090004DB|0|41700000|| +37|2023-10-06T20:23:32.7270000-07:00|40022550|Zeromus|0001A849|30050751||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:32.7270000-07:00|40022550|Zeromus|0001A846|30042510||||||100.00|80.10|0.00|0.00| +26|2023-10-06T20:23:32.7270000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:23:32.7270000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|752003|606B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30099113|40478540|10000|10000|||100.00|80.10|0.00|0.00|74287|79111|9700|10000|||98.48|86.68|0.00|-3.07|0001A84F|0|1| +38|2023-10-06T20:23:32.7270000-07:00|10FF0002|Suchichi Suchi|005A5A16|89695|90128|10000|10000|0||97.20|83.05|0.00|2.76|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:32.3770000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:23:32.4750000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:23:32.4750000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:23:32.8600000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|936|127791|127791|10000|10000|||102.33|94.27|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||102.33|94.27|0.00|-3.13| +24|2023-10-06T20:23:32.8600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|953|80739|80739|7600|10000|||103.70|85.37|0.00|-2.86|10FF0002|Suchichi Suchi|0|89695|90128|10000|10000|||97.19|82.86|-0.01|2.82| +38|2023-10-06T20:23:32.8600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||103.73|89.32|0.00|2.80|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:32.8600000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:23:32.8600000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||103.73|89.32|0.00|2.80|90055|90055|10000|10000|||103.73|89.32|0.00|2.80|0001A850|0|1| +38|2023-10-06T20:23:32.8600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||102.33|94.27|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:32.8600000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:23:32.8600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7600|10000|0||103.70|85.37|0.00|-2.86|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:32.9050000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||103.73|89.32|0.00|2.80|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:32.9050000-07:00|B9C|Bloodsown Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:23:32.5800000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:32.5800000-07:00|Change|10FF0003||||||||| +24|2023-10-06T20:23:32.9500000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|9F0|90055|90055|10000|10000|||103.73|89.32|0.00|2.80|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||103.73|89.32|0.00|2.80| +38|2023-10-06T20:23:32.9500000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||103.73|89.32|0.00|2.80|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:32.9950000-07:00|40022550|Zeromus|0001A84B|30030158||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:32.9950000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9D8|80739|80739|7835|10000|||106.37|83.91|0.00|2.40|10FF0002|Suchichi Suchi|0|89695|90128|10000|10000|||97.18|82.81|0.00|2.83| +38|2023-10-06T20:23:32.9950000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7835|10000|0||106.37|83.91|0.00|2.40|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:32.9950000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:23:33.0400000-07:00|40022550|Zeromus|0001A84C|30022992||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:33.0850000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C7B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||104.54|85.58|0.00|2.73|0001A851|0|1| +21|2023-10-06T20:23:33.0850000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|720003|23B30000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|89695|90128|10000|10000|||97.29|82.71|-0.02|2.79|0001A852|0|1| +21|2023-10-06T20:23:33.0850000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|9010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||101.65|93.26|0.00|3.09|0001A853|0|1| +21|2023-10-06T20:23:33.0850000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|754003|82B80000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6500|10000|||102.33|92.12|0.00|-3.00|0001A854|0|1| +38|2023-10-06T20:23:33.0850000-07:00|10FF0002|Suchichi Suchi|005A5A16|89695|90128|10000|10000|0||97.29|82.71|-0.02|2.79|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:33.0850000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +31|2023-10-06T20:23:33.0850000-07:00|10FF0001||||| +261|2023-10-06T20:23:32.6780000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:23:32.7930000-07:00|Change|40022794||||||||| +261|2023-10-06T20:23:32.9050000-07:00|Change|4002278C||||||||| +261|2023-10-06T20:23:32.9050000-07:00|Change|40022792||||||||| +38|2023-10-06T20:23:33.3950000-07:00|4002278A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.43|101.73|0.00|-3.03|0|0|0|||||||||||||||| +26|2023-10-06T20:23:33.3950000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|4002278A|Demi-Bahamut|01|68265|40478540| +21|2023-10-06T20:23:33.3950000-07:00|10FF0008|Kokosaze Lulusaze|1D05|Enkindle Bahamut|40022550|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|74287|79111|9700|10000|||98.48|81.96|0.00|2.72|0001A855|0|1| +37|2023-10-06T20:23:33.4390000-07:00|10FF0008|Kokosaze Lulusaze|0001A84D|79111||||||98.48|81.96|0.00|2.72| +20|2023-10-06T20:23:33.4390000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|107.28|82.78|-0.02|2.44| +261|2023-10-06T20:23:33.1350000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:33.1350000-07:00|Change|4002278E||||||||| +21|2023-10-06T20:23:33.4840000-07:00|4002278A|Demi-Bahamut|1D19|Akh Morn|40022550|Zeromus|750003|AD410000|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03|0001A856|0|1| +24|2023-10-06T20:23:33.5290000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9F0|128564|128564|10000|10000|||107.34|84.87|0.00|2.59|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||107.34|84.87|0.00|2.59| +24|2023-10-06T20:23:33.5290000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|F92|79111|79111|9700|10000|||98.99|81.44|0.00|2.39|10FF0008|Kokosaze Lulusaze|0|79111|79111|9700|10000|||98.99|81.44|0.00|2.39| +38|2023-10-06T20:23:33.5290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||107.34|84.87|0.00|2.59|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:33.5290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||98.99|81.44|0.00|2.39|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:23:33.2500000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:23:33.5730000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|750003|7ED80000|4|26968000|0|0|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||102.28|90.79|0.00|2.53|0001A857|0|1| +21|2023-10-06T20:23:33.5730000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6100|10000|||101.95|89.45|0.00|3.07|0001A858|0|1| +38|2023-10-06T20:23:33.5730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||102.28|90.79|0.00|2.53|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:33.5730000-07:00|558|Requiescat|26.93|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +30|2023-10-06T20:23:33.5730000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:23:33.5730000-07:00|10FF0001||||| +261|2023-10-06T20:23:33.2500000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:23:33.6170000-07:00|40022550|Zeromus|0001A851|30019797||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:33.6170000-07:00|40022550|Zeromus|0001A853|30017492||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:33.6170000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30022992|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||98.99|81.44|0.00|2.39|0001A859|0|1| +37|2023-10-06T20:23:33.6610000-07:00|40022550|Zeromus|0001A84F|29992809||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:33.7060000-07:00|40022550|Zeromus|0001A84E|29985529||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:33.7060000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||106.32|85.15|0.00|2.46|90055|90055|10000|10000|||106.32|85.15|0.00|2.46|0001A85A|0|1| +38|2023-10-06T20:23:33.7060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.32|85.15|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:33.7060000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:23:33.3510000-07:00|Change|40022790||||||||| +261|2023-10-06T20:23:33.4470000-07:00|Change|40022789||||||||| +20|2023-10-06T20:23:33.7950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|107.80|82.23|0.00|2.26| +261|2023-10-06T20:23:33.4470000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:23:33.5380000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:23:33.5380000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:23:33.5380000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:23:33.8840000-07:00|40022550|Zeromus|0001A852|29976390||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:33.9290000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D722003|55280000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|29985529|40478540|10000|10000|||100.00|80.10|0.00|0.00|89695|90128|10000|10000|||99.66|81.19|0.00|1.98|0001A85B|0|1| +38|2023-10-06T20:23:33.9290000-07:00|10FF0002|Suchichi Suchi|005A5A16|89695|90128|10000|10000|0||99.66|81.19|0.00|1.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:33.9290000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:23:33.9290000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:23:33.5380000-07:00|Change|40022791||||||||| +261|2023-10-06T20:23:33.6310000-07:00|Change|4002278B||||||||| +261|2023-10-06T20:23:33.6310000-07:00|Change|40022793||||||||| +37|2023-10-06T20:23:34.0170000-07:00|10FF0005|Wuwuchu Wuchu|0001A850|90055|90055|10000|10000|0||107.40|84.56|0.00|2.86|2700|0|0|01|080004E2|0|C1200000|| +37|2023-10-06T20:23:34.1070000-07:00|40022550|Zeromus|0001A858|29976348||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:34.1510000-07:00|40022550|Zeromus|0001A859|29976192||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:34.1510000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||101.44|80.77|0.00|-2.33| +21|2023-10-06T20:23:34.1510000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|89380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29976348|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||108.35|83.73|0.00|2.70|0001A85C|0|1| +38|2023-10-06T20:23:34.1510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||108.35|83.73|0.00|2.70|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:34.1510000-07:00|499|Inner Release|12.15|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +37|2023-10-06T20:23:34.1960000-07:00|40022550|Zeromus|0001A857|29943720||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:34.1960000-07:00|10FF0003|Gegehi Gehi|73085|73085|6300|10000|||105.29|87.51|0.00|2.30| +24|2023-10-06T20:23:34.1960000-07:00|40022550|Zeromus|DoT|0|25B7|29976348|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|80739|80739|7600|10000|||108.55|81.99|0.00|-2.11| +38|2023-10-06T20:23:34.1960000-07:00|40022550|Zeromus|005A5A00|29934065|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:23:34.2410000-07:00|10FF0005|Wuwuchu Wuchu|0001A85A|90055|90055|10000|10000|0||107.56|84.51|0.00|3.00|2700|0|0|01|080004E2|0|41200000|| +39|2023-10-06T20:23:34.2410000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.14| +39|2023-10-06T20:23:34.2410000-07:00|4002278A|Demi-Bahamut|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03| +38|2023-10-06T20:23:34.2410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||107.56|84.51|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||| +36|2023-10-06T20:23:34.3290000-07:00|2A30|3| +37|2023-10-06T20:23:34.3740000-07:00|40022550|Zeromus|0001A856|29889712||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:34.3740000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9200|10000|||106.18|89.15|0.00|2.47| +39|2023-10-06T20:23:34.3740000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7800|10000|||108.66|81.96|-0.01|-1.80| +21|2023-10-06T20:23:34.3740000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5D2B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|29934065|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7835|10000|||107.29|82.78|0.00|-1.93|0001A85D|0|1| +38|2023-10-06T20:23:34.3740000-07:00|4002278A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.43|101.73|0.00|-3.03|0|0|0||||||||||||| +30|2023-10-06T20:23:34.3740000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|4002278A|Demi-Bahamut|01|68265|40478540| +261|2023-10-06T20:23:34.1990000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T20:23:34.4180000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|17CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29889712|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||101.64|81.04|0.00|-3.04|0001A85E|0|1| +39|2023-10-06T20:23:34.4640000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||107.84|84.52|0.00|-2.85| +21|2023-10-06T20:23:34.4640000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|137E0000|DBF90E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|29889712|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||106.99|88.12|0.00|2.50|0001A85F|0|1| +21|2023-10-06T20:23:34.4640000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|437A0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|29889712|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||107.84|84.52|0.00|-2.85|0001A860|0|1| +38|2023-10-06T20:23:34.4640000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||107.84|84.52|0.00|-2.85|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:34.4640000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:23:34.5080000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7640|10000|||107.29|82.78|0.00|-1.93| +261|2023-10-06T20:23:34.1990000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:34.3130000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:23:34.5520000-07:00|10FF0002|Suchichi Suchi|60|Dragonfire Dive|40022550|Zeromus|126003|6B5C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29889712|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.11|81.21|0.00|2.54|0001A861|0|1| +37|2023-10-06T20:23:34.5970000-07:00|40022550|Zeromus|0001A85B|29867912||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:34.5970000-07:00|10FF0002|Suchichi Suchi|0001A85B|90128|90128|10000|10000|0||102.11|81.21|0.00|2.54|1600|0|0|01|09000322|0|41F00000|| +21|2023-10-06T20:23:34.5970000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|4CC00000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|29889712|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||105.53|81.07|0.00|1.41|0001A862|0|1| +21|2023-10-06T20:23:34.5970000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29889712|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7640|10000|||107.29|82.78|0.00|-1.93|0001A863|0|1| +38|2023-10-06T20:23:34.5970000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.11|81.21|0.00|2.54|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:34.3130000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:23:34.4080000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:23:34.4080000-07:00|Change|40022795||||||||| +21|2023-10-06T20:23:34.7300000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|11320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29867912|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||108.35|83.73|0.00|-1.98|0001A864|0|1| +21|2023-10-06T20:23:34.7300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|36880000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|29867912|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7800|10000|||108.66|81.96|0.00|-1.78|0001A865|0|1| +37|2023-10-06T20:23:34.7740000-07:00|40022550|Zeromus|0001A85C|29832784||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:34.5010000-07:00|Change|40022794||||||||| +261|2023-10-06T20:23:34.5010000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:23:34.5010000-07:00|Change|4002278C||||||||| +37|2023-10-06T20:23:34.9070000-07:00|40022550|Zeromus|0001A854|29799320||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:34.9520000-07:00|40022550|Zeromus|0001A85E|29793226||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:34.5990000-07:00|Change|40022792||||||||| +37|2023-10-06T20:23:34.9970000-07:00|40022550|Zeromus|0001A860|29775952||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:34.9970000-07:00|10FF0005|Wuwuchu Wuchu|0001A860|90055|90055|10000|10000|0||107.90|84.52|-0.02|-2.08|2700|0|0|01|0C000A1F|0|41F00000|| +38|2023-10-06T20:23:34.9970000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||107.90|84.52|-0.02|-2.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:23:35.0410000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1606|127791|127791|9200|10000|||108.22|85.22|0.00|3.11|10FF0006|Wowobora Gogobora|0|80739|80739|7640|10000|||107.26|82.80|0.00|-1.57| +37|2023-10-06T20:23:35.0410000-07:00|40022550|Zeromus|0001A85D|29752101||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:35.0410000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||108.35|83.73|0.00|-1.98| +39|2023-10-06T20:23:35.0410000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||106.80|81.37|0.00|-0.62| +38|2023-10-06T20:23:35.0410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9200|10000|0||108.22|85.22|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:35.0410000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +22|2023-10-06T20:23:35.0860000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|0001A866|0|8| +22|2023-10-06T20:23:35.0860000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9200|10000|||108.22|85.22|0.00|3.11|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|0001A866|1|8| +22|2023-10-06T20:23:35.0860000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||108.35|83.73|0.00|-1.98|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|0001A866|2|8| +22|2023-10-06T20:23:35.0860000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0005|Wuwuchu Wuchu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||107.90|84.52|-0.02|-2.08|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|0001A866|3|8| +22|2023-10-06T20:23:35.0860000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7400|10000|||108.66|81.96|0.00|-1.78|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|0001A866|4|8| +22|2023-10-06T20:23:35.0860000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9700|10000|||106.80|81.37|0.00|-0.62|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|0001A866|5|8| +22|2023-10-06T20:23:35.0860000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7640|10000|||107.26|82.80|0.00|-1.57|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|0001A866|6|8| +22|2023-10-06T20:23:35.0860000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0002|Suchichi Suchi|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||102.28|81.28|0.00|-2.02|73085|73085|6300|10000|||109.67|85.21|0.00|2.21|0001A866|7|8| +37|2023-10-06T20:23:35.1310000-07:00|40022550|Zeromus|0001A863|29752039||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:34.8130000-07:00|Change|4002278E||||||||| +37|2023-10-06T20:23:35.2220000-07:00|40022550|Zeromus|0001A862|29732391||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:35.2220000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|752003|58B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29752101|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||107.18|81.46|0.00|0.17|0001A867|0|1| +21|2023-10-06T20:23:35.2220000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|3BA20000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|29752101|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||108.19|84.56|0.00|-2.96|0001A868|0|1| +38|2023-10-06T20:23:35.2220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9900|10000|0||107.18|81.46|0.00|0.17|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:35.2220000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:23:35.2660000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|756003|24AA0000|104|DB48000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|29732391|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7400|10000|||108.66|81.96|0.00|-1.78|0001A869|0|1| +38|2023-10-06T20:23:35.2660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7400|10000|0||108.66|81.96|0.00|-1.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:35.2660000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +37|2023-10-06T20:23:35.3550000-07:00|40022550|Zeromus|0001A864|29727989||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:35.3550000-07:00|40022550|Zeromus|0001A861|29700505||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:35.3550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29732391|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||107.64|83.39|0.00|-2.43|0001A86A|0|1| +31|2023-10-06T20:23:35.3550000-07:00|10FF0001||||| +261|2023-10-06T20:23:35.0500000-07:00|Change|40022790||||||||| +21|2023-10-06T20:23:35.4000000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|722003|45060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29732391|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.28|81.28|0.00|-2.02|0001A86B|0|1| +21|2023-10-06T20:23:35.4440000-07:00|40022550|Zeromus|8B43|Visceral Whirl|40022550|Zeromus|1B|8B438000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29732391|40478540|10000|10000|||100.00|80.10|0.00|0.00|29732391|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A86C|0|1| +261|2023-10-06T20:23:35.0500000-07:00|Change|40022550||||| +261|2023-10-06T20:23:35.1680000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:35.1680000-07:00|Change|40022789||||||||| +37|2023-10-06T20:23:35.4880000-07:00|40022550|Zeromus|0001A85F|29695515|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050000F8|0|41700000|| +26|2023-10-06T20:23:35.4880000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:23:35.5320000-07:00|40022550|Zeromus|0001A865|29681555||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:35.5320000-07:00|4002278A|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|752003|1EE50000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|29700505|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03|0001A86D|0|1| +37|2023-10-06T20:23:35.5760000-07:00|40022550|Zeromus|0001A868|29666289||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:35.5760000-07:00|10FF0001|Sesuga Sapisuga|0001A868|127791|127791|9700|10000|0||107.17|82.95|0.00|-2.20|1300|0|0|0| +261|2023-10-06T20:23:35.2800000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:23:35.2800000-07:00|Change|40022791||||||||| +24|2023-10-06T20:23:35.6660000-07:00|10FF0002|Suchichi Suchi|HoT|0|9DB|90128|90128|10000|10000|||102.34|81.30|0.00|-2.02|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||102.34|81.30|0.00|-2.02| +38|2023-10-06T20:23:35.6660000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.34|81.30|0.00|-2.02|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:35.2800000-07:00|Change|4002278B||||||||| +261|2023-10-06T20:23:35.3790000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:23:35.7110000-07:00|10FF0003|Gegehi Gehi|HoT|0|9E0|73085|73085|6300|10000|||110.31|84.98|0.00|2.21|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||102.34|81.30|0.00|-2.02| +261|2023-10-06T20:23:35.3790000-07:00|Change|40022793||||||||| +21|2023-10-06T20:23:35.7110000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|127A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29666289|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||107.90|84.52|0.00|-1.75|0001A86E|0|1| +38|2023-10-06T20:23:35.7110000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:23:35.7550000-07:00|10FF0003|Gegehi Gehi|0001A866|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|2300|0|0|01|050004D7|0|41A00000|| +26|2023-10-06T20:23:35.7550000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:23:35.8000000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73085|73085|6300|10000|||110.31|84.98|0.00|2.21|73085|73085|6300|10000|||110.31|84.98|0.00|2.21|0001A86F|0|1| +38|2023-10-06T20:23:35.8000000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:35.8000000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73085|73085| +21|2023-10-06T20:23:35.8440000-07:00|10FF0008|Kokosaze Lulusaze|DFE|Deathflare|40022550|Zeromus|752003|87AE0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|29666289|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||107.74|81.59|0.00|-1.76|0001A870|0|1| +21|2023-10-06T20:23:35.8440000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|6BDA0000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|29666289|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7640|10000|||103.23|82.04|0.00|-1.46|0001A871|0|1| +261|2023-10-06T20:23:35.4720000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:23:35.8880000-07:00|40022550|Zeromus|0001A86A|29664121||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:35.8880000-07:00|10FF0001|Sesuga Sapisuga|0001A866|127791|127791|9700|10000|0||107.17|82.95|0.00|-2.20|1301|0|0|01|0B000511|0|41A00000|| +26|2023-10-06T20:23:35.8880000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|127791|73085| +37|2023-10-06T20:23:35.8880000-07:00|10FF0003|Gegehi Gehi|0001A866|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|2301|0|0|01|070007B3|06|C1700000|| +24|2023-10-06T20:23:35.8880000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|972|127791|127791|9700|10000|||107.17|82.95|0.00|-2.20|10FF0003|Gegehi Gehi|0|73085|73085|6300|10000|||110.31|84.98|0.00|2.21| +24|2023-10-06T20:23:35.8880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|923|80739|80739|7400|10000|||108.73|82.06|0.00|-0.09|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||102.34|81.30|0.00|-2.02| +38|2023-10-06T20:23:35.8880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9700|10000|0||107.17|82.95|0.00|-2.20|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:35.8880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7400|10000|0||108.73|82.06|0.00|-0.09|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T20:23:35.9780000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|952|90055|90055|10000|10000|||107.90|84.52|-0.02|-1.60|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||107.90|84.52|-0.02|-1.60| +21|2023-10-06T20:23:35.9780000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|712003|78610000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|29664121|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||107.90|84.52|-0.02|-1.60|0001A872|0|1| +38|2023-10-06T20:23:35.9780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||107.90|84.52|-0.02|-1.60|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:35.9780000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:23:35.9780000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:23:36.0230000-07:00|10FF0007|Kehabiqo Febiqo|0001A866|128564|128564|10000|10000|0||108.35|83.73|-0.02|-1.98|1502|0|0|01|0B000511|0|41A00000|| +26|2023-10-06T20:23:36.0230000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|128564|73085| +37|2023-10-06T20:23:36.0230000-07:00|10FF0003|Gegehi Gehi|0001A866|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|2302|0|0|01|070007B3|06|C1700000|| +24|2023-10-06T20:23:36.0230000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9BA|80739|80739|7240|10000|||103.02|82.01|0.00|-2.17|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||102.34|81.30|0.00|-2.02| +21|2023-10-06T20:23:36.0230000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29664121|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7400|10000|||108.84|82.22|0.00|0.23|0001A873|0|1| +38|2023-10-06T20:23:36.0230000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7240|10000|0||103.02|82.01|0.00|-2.17|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:36.0230000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:23:36.0670000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|750003|660C0000|4|25AE8000|0|0|0|0|0|0|0|0|0|0|0|0|29664121|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9700|10000|||107.17|82.95|0.00|-1.95|0001A874|0|1| +38|2023-10-06T20:23:36.0670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|0||107.17|82.95|0.00|-1.95|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:36.0670000-07:00|558|Requiescat|24.43|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +31|2023-10-06T20:23:36.0670000-07:00|10FF0001||||| +37|2023-10-06T20:23:36.1550000-07:00|40022550|Zeromus|0001A867|29641408||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:36.1550000-07:00|10FF0005|Wuwuchu Wuchu|0001A866|90055|90055|10000|10000|0||107.90|84.55|0.00|-2.08|2703|0|0|02|0C000A1E|0|C1F00000|||||| +26|2023-10-06T20:23:36.1550000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|90055|73085| +37|2023-10-06T20:23:36.1550000-07:00|10FF0003|Gegehi Gehi|0001A866|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|2303|0|0|01|070007B3|06|C1700000|| +37|2023-10-06T20:23:36.2010000-07:00|40022550|Zeromus|0001A86B|29623738||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:36.2010000-07:00|10FF0003|Gegehi Gehi|0001A86F|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|2300|0|0|01|070007B3|06|41700000|| +20|2023-10-06T20:23:36.2010000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|108.94|82.37|0.00|0.54| +38|2023-10-06T20:23:36.2010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:36.2450000-07:00|40022550|Zeromus|0001A86E|29619008||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:36.2450000-07:00|10FF0005|Wuwuchu Wuchu|0001A86E|90055|90055|10000|10000|0||107.90|84.57|0.00|-2.08|2700|0|0|01|0C000A1E|0|C1F00000|| +21|2023-10-06T20:23:36.2450000-07:00|4002256D|Zeromus|8B44|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|0001A875|0|0| +21|2023-10-06T20:23:36.2450000-07:00|4002256E|Zeromus|8B45|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|0001A876|0|0| +261|2023-10-06T20:23:35.8750000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:23:35.8750000-07:00|Change|4002256E||||||||||||| +37|2023-10-06T20:23:36.2890000-07:00|40022550|Zeromus|0001A869|29609622||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:36.2890000-07:00|10FF0004|Buhojaqe Zijaqe|0001A866|80739|80739|7400|10000|0||108.94|82.37|0.00|0.54|1C04|0|0|01|04000511|0|41A00000|| +26|2023-10-06T20:23:36.2890000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|80739|73085| +38|2023-10-06T20:23:36.2890000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T20:23:36.2890000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40022666|Ruby Carbuncle|00|77430|73085| +37|2023-10-06T20:23:36.4220000-07:00|10FF0008|Kokosaze Lulusaze|0001A866|79111|79111|9900|10000|0||107.74|81.59|0.00|-1.76|1B05|0|0|01|03000511|0|41A00000|| +26|2023-10-06T20:23:36.4220000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|79111|73085| +21|2023-10-06T20:23:36.4220000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A726003|89850000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|29609622|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.73|81.45|-0.02|-2.10|0001A877|0|1| +21|2023-10-06T20:23:36.4220000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42500000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||108.35|83.73|-0.02|-1.98|29609622|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A878|0|1| +38|2023-10-06T20:23:36.4220000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.73|81.45|-0.02|-2.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:36.4220000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:23:36.4220000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:23:36.4220000-07:00|4002278A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||102.43|101.73|0.00|-3.03|0|0|0|||||||||||||||| +26|2023-10-06T20:23:36.4220000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002278A|Demi-Bahamut|00|68265|73085| +261|2023-10-06T20:23:36.1120000-07:00|Change|40022795||||||||| +21|2023-10-06T20:23:36.4670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|13890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29609622|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||108.35|83.73|-0.02|-1.98|0001A879|0|1| +261|2023-10-06T20:23:36.1120000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:23:36.1120000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:23:36.1120000-07:00|Change|40022569||||||||| +261|2023-10-06T20:23:36.1120000-07:00|Change|10FF0001||||| +261|2023-10-06T20:23:36.1120000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:23:36.1120000-07:00|Change|40022567||||||||| +261|2023-10-06T20:23:36.1120000-07:00|Change|40022568||||||||| +24|2023-10-06T20:23:36.5110000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1600|127791|127791|8700|10000|||107.17|82.95|0.00|-1.95|10FF0006|Wowobora Gogobora|0|80739|80739|7240|10000|||102.77|81.99|0.00|-2.17| +37|2023-10-06T20:23:36.5110000-07:00|40022550|Zeromus|0001A871|29582012||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:36.5110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|0||107.17|82.95|0.00|-1.95|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:36.2290000-07:00|Change|40022794||||||||| +37|2023-10-06T20:23:36.5570000-07:00|40022550|Zeromus|0001A86D|29574103||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:36.5570000-07:00|40022550|Zeromus|0001A873|29573949||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:36.5570000-07:00|10FF0006|Wowobora Gogobora|0001A866|80739|80739|7240|10000|0||102.77|81.99|0.00|-2.17|2806|0|0|01|06000511|0|41A00000|| +26|2023-10-06T20:23:36.5570000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|80739|73085| +20|2023-10-06T20:23:36.5570000-07:00|40022567|Zeromus|8B49|Miasmic Blast|40022567|Zeromus|7.700|114.00|100.00|0.00|0.79| +20|2023-10-06T20:23:36.5570000-07:00|40022568|Zeromus|8CF8|unknown_8cf8|40022568|Zeromus|7.700|114.00|100.00|0.00|0.79| +20|2023-10-06T20:23:36.5570000-07:00|40022569|Zeromus|8B49|Miasmic Blast|40022569|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T20:23:36.5570000-07:00|4002256A|Zeromus|8CF8|unknown_8cf8|4002256A|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T20:23:36.5570000-07:00|4002256B|Zeromus|8B49|Miasmic Blast|4002256B|Zeromus|7.700|100.00|86.00|0.00|0.79| +20|2023-10-06T20:23:36.5570000-07:00|4002256C|Zeromus|8CF8|unknown_8cf8|4002256C|Zeromus|7.700|100.00|86.00|0.00|0.79| +24|2023-10-06T20:23:36.5570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A0C|128564|128564|10000|10000|||108.35|83.73|-0.02|-1.98|10FF0003|Gegehi Gehi|0|73085|73085|6300|10000|||110.31|84.98|0.00|2.21| +24|2023-10-06T20:23:36.5570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9F8|79111|79111|9900|10000|||107.70|81.60|0.00|-1.64|10FF0008|Kokosaze Lulusaze|0|79111|79111|9900|10000|||107.70|81.60|0.00|-1.64| +38|2023-10-06T20:23:36.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||108.35|83.73|-0.02|-1.98|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:36.5570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||107.70|81.60|0.00|-1.64|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:23:36.6010000-07:00|40022550|Zeromus|0001A872|29543132||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:36.6010000-07:00|10FF0005|Wuwuchu Wuchu|0001A872|90055|90055|10000|10000|0||108.00|84.63|-0.02|-1.95|2700|0|0|01|0C000A1E|0|41F00000|| +21|2023-10-06T20:23:36.6010000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|C4880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29582012|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||108.35|83.73|-0.02|-1.98|0001A87A|0|1| +38|2023-10-06T20:23:36.6010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||108.35|83.73|-0.02|-1.98|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:36.6010000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:23:36.6010000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||108.00|84.63|-0.02|-1.95|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:36.2290000-07:00|Change|4002278C||||||||| +261|2023-10-06T20:23:36.3240000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:23:36.6440000-07:00|40022550|Zeromus|0001A870|29508398||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:36.3240000-07:00|Change|40022792||||||||| +37|2023-10-06T20:23:36.6900000-07:00|40022550|Zeromus|0001A874|29482274||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:36.6900000-07:00|10FF0002|Suchichi Suchi|0001A866|90128|90128|10000|10000|0||104.12|82.10|0.00|2.59|1607|0|0|02|07000747|0|C1F00000|||||| +26|2023-10-06T20:23:36.6900000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|90128|73085| +261|2023-10-06T20:23:36.3240000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:23:36.7800000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|1380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29482274|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||107.60|81.61|0.00|-1.40|0001A87B|0|1| +21|2023-10-06T20:23:36.7800000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|756003|60740000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|29482274|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6300|10000|||110.31|84.98|0.00|2.21|0001A87C|0|1| +38|2023-10-06T20:23:36.7800000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6300|10000|0||110.31|84.98|0.00|2.21|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:36.7800000-07:00|7B3|Manafication|14.38|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73085|73085| +21|2023-10-06T20:23:36.8240000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|142E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29482274|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8700|10000|||106.91|82.90|0.00|-1.95|0001A87D|0|1| +261|2023-10-06T20:23:36.5230000-07:00|Change|4002278E||||||||| +261|2023-10-06T20:23:36.6160000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:23:36.6160000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:23:36.6160000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:23:36.6160000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:23:36.6160000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:23:36.6160000-07:00|Change|4002256A||||||||||||| +37|2023-10-06T20:23:37.0020000-07:00|40022550|Zeromus|0001A879|29477273||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:37.0460000-07:00|40022550|Zeromus|0001A877|29442068||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:37.0460000-07:00|10FF0002|Suchichi Suchi|0001A877|90128|90128|10000|10000|0||105.28|82.63|0.00|1.53|1600|0|0|01|07000747|0|41F00000|| +21|2023-10-06T20:23:37.0470000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29482274|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6300|10000|||110.31|84.98|0.00|-2.01|0001A87E|0|1| +38|2023-10-06T20:23:37.0470000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||105.28|82.63|0.00|1.53|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:23:37.0910000-07:00|10FF0002|Suchichi Suchi|4060|Stardiver|40022550|Zeromus|126003|DFA00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29442068|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||105.40|82.87|0.00|1.36|0001A87F|0|1| +261|2023-10-06T20:23:36.7310000-07:00|Change|40022790||||||||| +21|2023-10-06T20:23:37.0910000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|50E50000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|29442068|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||105.38|82.29|0.00|-1.35|0001A880|0|1| +39|2023-10-06T20:23:37.1360000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||105.40|82.87|0.00|1.36| +21|2023-10-06T20:23:37.1360000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|345C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|29442068|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7400|10000|||108.96|82.41|0.00|-1.82|0001A881|0|1| +261|2023-10-06T20:23:36.8500000-07:00|Change|40022789||||||||| +39|2023-10-06T20:23:37.1800000-07:00|10FF0003|Gegehi Gehi|73085|73085|6500|10000|||110.31|84.98|0.00|-2.01| +24|2023-10-06T20:23:37.1800000-07:00|40022550|Zeromus|DoT|0|2DB0|29442068|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|8700|10000|||106.91|82.90|0.00|-1.95| +38|2023-10-06T20:23:37.1800000-07:00|40022550|Zeromus|005A5A00|29430372|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:23:36.8500000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:23:37.2240000-07:00|10FF0007|Kehabiqo Febiqo|0001A878|111588||||||108.35|83.73|0.00|-1.98| +39|2023-10-06T20:23:37.2240000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +39|2023-10-06T20:23:37.2240000-07:00|4002278A|Demi-Bahamut|65138|68265|10000|10000|||102.43|101.73|0.00|-3.03| +21|2023-10-06T20:23:37.2240000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|FD80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29430372|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||105.09|83.46|0.00|-2.38|0001A882|0|1| +38|2023-10-06T20:23:37.2240000-07:00|4002278A|Demi-Bahamut|005A5A00|0|68265|0|10000|0||102.43|101.73|0.00|-3.03|0|0|0|||| +30|2023-10-06T20:23:37.2240000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|4002278A|Demi-Bahamut|00|68265|79111| +30|2023-10-06T20:23:37.2240000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|4002278A|Demi-Bahamut|00|68265|90055| +30|2023-10-06T20:23:37.2240000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|4002278A|Demi-Bahamut|00|68265|90128| +30|2023-10-06T20:23:37.2240000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002278A|Demi-Bahamut|00|68265|73085| +261|2023-10-06T20:23:36.8500000-07:00|Change|4002278A||||| +38|2023-10-06T20:23:37.2680000-07:00|400227AB||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||||||||| +38|2023-10-06T20:23:37.2680000-07:00|400227AB||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||||||||| +261|2023-10-06T20:23:36.9600000-07:00|Change|40022791||||||||| +37|2023-10-06T20:23:37.3120000-07:00|40022550|Zeromus|0001A87B|29430060||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:23:37.3120000-07:00|2B0C|3| +261|2023-10-06T20:23:36.9600000-07:00|Change|4002278B||||||||| +39|2023-10-06T20:23:37.3570000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8900|10000|||106.87|82.90|0.00|-1.33| +39|2023-10-06T20:23:37.3570000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7200|10000|||108.96|82.41|0.00|-1.82| +37|2023-10-06T20:23:37.4020000-07:00|40022550|Zeromus|0001A87D|29424894||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:37.4020000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29430372|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7240|10000|||102.77|81.99|0.00|-2.17|0001A883|0|1| +261|2023-10-06T20:23:37.0800000-07:00|Change|40022793||||||||| +37|2023-10-06T20:23:37.4450000-07:00|40022550|Zeromus|0001A87C|29400202||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:37.4460000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||108.32|85.43|0.00|-0.63| +21|2023-10-06T20:23:37.4460000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|53F60000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|29424894|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||108.32|85.43|0.00|-0.63|0001A884|0|1| +38|2023-10-06T20:23:37.4460000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||108.32|85.43|0.00|-0.63|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:37.4460000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:23:37.4460000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:23:37.4890000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14790000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|111588|128564|10000|10000|||108.35|83.73|0.00|-1.98|77430|77430|10000|10000|||100.18|98.80|0.00|-3.14|0001A885|0|1| +39|2023-10-06T20:23:37.4890000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7445|10000|||102.77|81.99|0.00|-2.17| +261|2023-10-06T20:23:37.2010000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:23:37.2010000-07:00|Change|10FF0001||||||||| +03|2023-10-06T20:23:37.2010000-07:00|400227AB|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||102.56|81.89|0.00|1.20| +261|2023-10-06T20:23:37.2010000-07:00|Add|400227AB||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:37.5780000-07:00|40022550|Zeromus|0001A87E|29400178||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:37.3160000-07:00|Change|400227AB||| +21|2023-10-06T20:23:37.6230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|BD60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29400178|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||105.54|83.79|0.00|-0.86|0001A886|0|1| +31|2023-10-06T20:23:37.6230000-07:00|10FF0001||||| +261|2023-10-06T20:23:37.3160000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:23:37.4100000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:23:37.7560000-07:00|40022550|Zeromus|0001A87A|29349866||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:37.7560000-07:00|40022550|Zeromus|0001A882|29345810||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:37.7560000-07:00|40022550|Zeromus|0001A880|29325101||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:37.8030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7200|10000|0||108.96|82.44|0.00|-0.17|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:37.8030000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +21|2023-10-06T20:23:37.8030000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7200|10000|||108.96|82.44|0.00|-0.17|80739|80739|7200|10000|||108.96|82.44|0.00|-0.17|0001A887|0|1| +37|2023-10-06T20:23:37.9350000-07:00|40022550|Zeromus|0001A883|29325037||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:37.9350000-07:00|40022550|Zeromus|0001A881|29311633||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:37.9800000-07:00|40022550|Zeromus|0001A884|29290139||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:37.9800000-07:00|10FF0005|Wuwuchu Wuchu|0001A884|90055|90055|10000|10000|0||107.21|86.21|0.00|-1.19|2700|0|0|01|0C000A1F|0|41F00000|| +38|2023-10-06T20:23:37.9800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||107.21|86.21|0.00|-1.19|0|0|0||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:23:38.0250000-07:00|10FF0007|Kehabiqo Febiqo|112873|128564|10000|10000|||108.35|83.73|-0.02|-1.98| +39|2023-10-06T20:23:38.0250000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||100.96|82.88|0.00|-1.47| +261|2023-10-06T20:23:37.8060000-07:00|Change|40022795||||||||| +37|2023-10-06T20:23:38.1590000-07:00|40022550|Zeromus|0001A886|29287109||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:37.8060000-07:00|Change|40022794||||||||| +21|2023-10-06T20:23:38.2030000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|712003|1E5D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29290139|40478540|10000|10000|||100.00|80.10|0.00|0.00|112873|128564|10000|10000|||107.80|83.97|0.00|-1.83|0001A888|0|1| +261|2023-10-06T20:23:37.9170000-07:00|Change|4002278C||||||||| +261|2023-10-06T20:23:37.9170000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:23:38.2930000-07:00|10FF0007|Kehabiqo Febiqo|0001A885|118114||||||107.25|84.21|0.00|-2.22| +20|2023-10-06T20:23:38.2930000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|102.19|81.79|0.00|-2.07| +21|2023-10-06T20:23:38.2930000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37750003|3E5C0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|29287109|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6500|10000|||110.26|85.17|0.00|-1.83|0001A889|0|1| +34|2023-10-06T20:23:38.2930000-07:00|400227AB|Carbuncle|400227AB|Carbuncle|01| +38|2023-10-06T20:23:38.2930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6500|10000|0||110.26|85.17|0.00|-1.83|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:38.2930000-07:00|7B3|Manafication|12.86|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73085|73085| +261|2023-10-06T20:23:37.9170000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:23:37.9170000-07:00|Change|400227AB||||||||| +37|2023-10-06T20:23:38.3370000-07:00|10FF0004|Buhojaqe Zijaqe|0001A887|80739|80739|9200|10000|0||109.22|83.28|0.00|-0.11|1C00|0|0|0| +261|2023-10-06T20:23:38.0370000-07:00|Change|40022792||||||||| +261|2023-10-06T20:23:38.0370000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:23:38.3820000-07:00|40022550|Zeromus|0001A87F|29229861||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:38.2660000-07:00|Change|4002278E||||||||| +261|2023-10-06T20:23:38.2660000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:23:38.6490000-07:00|10FF0002|Suchichi Suchi|HoT|0|94B|90128|90128|10000|10000|||103.57|86.47|0.00|-2.11|10FF0003|Gegehi Gehi|0|73085|73085|6500|10000|||110.24|85.30|-0.02|-2.00| +38|2023-10-06T20:23:38.6490000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.57|86.47|0.00|-2.11|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:38.3660000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T20:23:38.6940000-07:00|10FF0003|Gegehi Gehi|HoT|0|1001|73085|73085|6500|10000|||110.24|85.30|-0.02|-2.00|10FF0003|Gegehi Gehi|0|73085|73085|6500|10000|||110.24|85.30|-0.02|-2.00| +38|2023-10-06T20:23:38.6940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6500|10000|0||110.24|85.30|-0.02|-2.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:38.8270000-07:00|40022550|Zeromus|0001A888|29222088||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:38.4670000-07:00|Change|40022789||||||||| +261|2023-10-06T20:23:38.4670000-07:00|Change|40022790||||||||| +24|2023-10-06T20:23:38.8720000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A0F|127791|127791|8900|10000|||99.09|84.89|0.00|-0.03|10FF0003|Gegehi Gehi|0|73085|73085|6500|10000|||110.16|85.34|0.00|-1.60| +24|2023-10-06T20:23:38.8720000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F28|80739|80739|9200|10000|||105.34|84.53|0.00|-1.31|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||101.84|86.97|0.00|-1.33| +38|2023-10-06T20:23:38.8720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8900|10000|0||99.09|84.89|0.00|-0.03|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:38.8720000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:23:38.8720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9200|10000|0||105.34|84.53|0.00|-1.31|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:23:38.9160000-07:00|40022550|Zeromus|0001A889|29206124||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:38.9160000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|F0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29229861|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||105.46|86.92|0.00|-0.77|0001A88A|0|1| +24|2023-10-06T20:23:38.9610000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|9BC|90055|90055|10000|10000|||105.49|86.97|0.00|-0.74|10FF0003|Gegehi Gehi|0|73085|73085|6500|10000|||109.73|85.44|0.00|-1.49| +21|2023-10-06T20:23:38.9610000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|726003|65650000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|29206124|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||101.30|86.86|0.00|-1.16|0001A88B|0|1| +38|2023-10-06T20:23:38.9610000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||101.30|86.86|0.00|-1.16|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:38.9610000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:23:38.9610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||105.49|86.97|0.00|-0.74|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:38.6540000-07:00|Change|40022791||||||||| +24|2023-10-06T20:23:39.0050000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9CF|80739|80739|7445|10000|||102.07|81.74|0.00|-2.24|10FF0003|Gegehi Gehi|0|73085|73085|6500|10000|||109.73|85.44|0.00|-1.49| +38|2023-10-06T20:23:39.0050000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7445|10000|0||102.07|81.74|0.00|-2.24|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:39.0050000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:23:38.6540000-07:00|Change|4002278B||||||||| +21|2023-10-06T20:23:39.0500000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|752003|40B10000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|29206124|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9200|10000|||103.86|84.89|0.00|-1.36|0001A88C|0|1| +261|2023-10-06T20:23:38.7640000-07:00|Change|40022793||||||||| +21|2023-10-06T20:23:39.0940000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|92840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29206124|40478540|10000|10000|||100.00|80.10|0.00|0.00|118114|128564|10000|10000|||106.45|84.56|0.00|-2.22|0001A88D|0|1| +38|2023-10-06T20:23:39.0940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118114|128564|10000|10000|0||106.45|84.56|0.00|-2.22|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:39.0940000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +21|2023-10-06T20:23:39.2270000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3A840000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|29206124|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7445|10000|||102.07|81.74|0.00|-2.24|0001A88E|0|1| +21|2023-10-06T20:23:39.3160000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|752003|BF7B0000|4|26A58000|0|0|0|0|0|0|0|0|0|0|0|0|29206124|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||97.28|85.51|0.00|2.68|0001A88F|0|1| +38|2023-10-06T20:23:39.3160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7900|10000|0||97.28|85.51|0.00|2.68|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:39.3160000-07:00|558|Requiescat|21.18|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:23:39.3160000-07:00|10FF0001||||| +261|2023-10-06T20:23:39.0060000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:23:39.1230000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:39.1230000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:39.1230000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:23:39.1230000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:23:39.4500000-07:00|40022550|Zeromus|0001A88A|29202273||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:39.4500000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40780000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|118114|128564|10000|10000|||103.99|85.72|0.00|-2.40|29206124|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A890|0|1| +261|2023-10-06T20:23:39.1230000-07:00|Change|10FF0007||||||||| +38|2023-10-06T20:23:39.4940000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.53|85.27|0.00|-1.30|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:39.4940000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +24|2023-10-06T20:23:39.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|981|118114|128564|10000|10000|||103.26|85.97|0.00|-2.11|10FF0003|Gegehi Gehi|0|73085|73085|6500|10000|||106.04|85.88|0.00|-1.50| +24|2023-10-06T20:23:39.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A07|79111|79111|9900|10000|||92.18|82.35|0.00|-2.00|10FF0008|Kokosaze Lulusaze|0|79111|79111|9900|10000|||92.18|82.35|0.00|-2.00| +21|2023-10-06T20:23:39.5400000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|29202273|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||92.18|82.35|0.00|-2.00|0001A891|0|1| +38|2023-10-06T20:23:39.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120547|128564|10000|10000|0||103.26|85.97|0.00|-2.11|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:39.5400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||92.18|82.35|0.00|-2.00|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:39.5400000-07:00|400227AB|Carbuncle|005A5A00|0|75851|0|10000|0||97.60|82.08|0.00|-1.34|0|0|0|||| +26|2023-10-06T20:23:39.5400000-07:00|30|Well Fed|2239.64|10FF0008|Kokosaze Lulusaze|400227AB|Carbuncle|2964|75851|79111| +261|2023-10-06T20:23:39.2200000-07:00|Change|400227AB||||||||||| +261|2023-10-06T20:23:39.3220000-07:00|Change|10FF0003||||||||| +38|2023-10-06T20:23:39.5830000-07:00|400227AF||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||||||||| +37|2023-10-06T20:23:39.5840000-07:00|40022550|Zeromus|0001A88B|29176316||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:39.5840000-07:00|400227AF||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||||||||| +21|2023-10-06T20:23:39.6280000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|722003|4A6D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29202273|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.37|85.01|-0.02|-0.86|0001A892|0|1| +38|2023-10-06T20:23:39.6280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7900|10000|0||96.75|85.65|0.00|-0.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:39.6280000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +261|2023-10-06T20:23:39.4210000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:39.7160000-07:00|40022550|Zeromus|0001A88D|29138808||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:39.7610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6500|10000|0||104.82|85.88|0.00|-1.53|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:39.7610000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +21|2023-10-06T20:23:39.8070000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A756003|B1DA0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|29138808|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6500|10000|||104.18|85.88|0.00|-1.54|0001A893|0|1| +38|2023-10-06T20:23:39.8070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6500|10000|0||104.18|85.88|0.00|-1.54|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:39.8070000-07:00|7B3|Manafication|11.35|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73085|73085| +261|2023-10-06T20:23:39.5140000-07:00|Change|40022795||||||||| +21|2023-10-06T20:23:39.8500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|14CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29138808|40478540|10000|10000|||100.00|80.10|0.00|0.00|120547|128564|10000|10000|||101.22|86.63|-0.02|-1.35|0001A894|0|1| +261|2023-10-06T20:23:39.5140000-07:00|Change|40022794||||||||| +24|2023-10-06T20:23:39.8960000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|23DD|127791|127791|7900|10000|||95.49|85.56|0.00|-0.06|10FF0006|Wowobora Gogobora|1|80739|80739|7045|10000|||101.94|81.83|0.00|-1.35| +37|2023-10-06T20:23:39.8960000-07:00|40022550|Zeromus|0001A88E|29123828||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:39.8960000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|EBB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29138808|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||95.49|85.56|0.00|-0.06|0001A895|0|1| +38|2023-10-06T20:23:39.8960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120547|128564|10000|10000|0||101.22|86.63|-0.02|-1.35|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:39.8960000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:23:39.8960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7900|10000|0||95.49|85.56|0.00|-0.06|0|0|0||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:23:39.8960000-07:00|10FF0001||||| +21|2023-10-06T20:23:39.9400000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29123828|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||90.73|81.94|-0.02|1.68|0001A896|0|1| +261|2023-10-06T20:23:39.6070000-07:00|Change|4002278C||||||||| +261|2023-10-06T20:23:39.6070000-07:00|Add|400227AF||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:39.6070000-07:00|Remove|40022790| +37|2023-10-06T20:23:39.9840000-07:00|40022550|Zeromus|0001A88C|29107267||||||100.00|80.10|0.00|0.00| +03|2023-10-06T20:23:39.6070000-07:00|400227AF|Topaz Titan|00|5A|10FF0008|00||10264|13507|72376|75851|10000|10000|||89.27|83.91|0.00|1.76| +261|2023-10-06T20:23:39.6070000-07:00|Change|400227AF||||| +261|2023-10-06T20:23:39.7000000-07:00|Change|40022792||||||||| +21|2023-10-06T20:23:40.0280000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|1DC90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29107267|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.48|84.54|0.00|3.09|0001A897|0|1| +21|2023-10-06T20:23:40.0280000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|271C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29107267|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.21|86.85|0.00|-1.34|0001A898|0|1| +38|2023-10-06T20:23:40.0280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8800|10000|0||97.08|86.97|0.00|-1.31|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:40.0280000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +39|2023-10-06T20:23:40.1620000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.48|84.54|0.00|3.09| +21|2023-10-06T20:23:40.1620000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29107267|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8800|10000|||97.08|86.97|0.00|-1.31|0001A899|0|1| +38|2023-10-06T20:23:40.1620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||98.21|86.85|0.00|-1.34|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:40.1620000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:23:40.2070000-07:00|40022550|Zeromus|0001A88F|29058248||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:40.2070000-07:00|10FF0003|Gegehi Gehi|73085|73085|6700|10000|||103.61|85.86|0.00|-2.60| +24|2023-10-06T20:23:40.2070000-07:00|40022550|Zeromus|DoT|0|34FF|29107267|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|7900|10000|||93.53|85.48|0.00|-0.04| +38|2023-10-06T20:23:40.2070000-07:00|40022550|Zeromus|005A5A00|29044681|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:23:39.8140000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:23:39.8140000-07:00|Change|4002278E||||||||| +37|2023-10-06T20:23:40.2510000-07:00|10FF0007|Kehabiqo Febiqo|0001A890|104043||||||99.03|86.96|0.00|-1.39| +39|2023-10-06T20:23:40.2510000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +261|2023-10-06T20:23:39.9340000-07:00|Change|10FF0008||||||||||| +26|2023-10-06T20:23:40.2970000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +21|2023-10-06T20:23:40.2970000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|752003|1DB50000|104|B1A8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|29044681|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8800|10000|||96.57|87.13|-0.02|-1.26|0001A89A|0|1| +38|2023-10-06T20:23:40.2970000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7045|10000|0||99.39|83.31|0.00|-1.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:23:40.2970000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +261|2023-10-06T20:23:39.9340000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:23:40.0570000-07:00|Change|10FF0001||||||||| +36|2023-10-06T20:23:40.3420000-07:00|2BE8|3| +37|2023-10-06T20:23:40.3860000-07:00|40022550|Zeromus|0001A894|29039359||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:40.3860000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8100|10000|||92.33|85.69|0.00|-0.78| +39|2023-10-06T20:23:40.3860000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|9000|10000|||95.90|87.37|0.00|2.58| +37|2023-10-06T20:23:40.4310000-07:00|40022550|Zeromus|0001A892|29020306||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:40.4310000-07:00|40022550|Zeromus|0001A895|29016535||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:40.4310000-07:00|40022550|Zeromus|0001A893|28971005||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:40.4310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|0||87.23|83.38|0.00|-1.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:40.4310000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +37|2023-10-06T20:23:40.4750000-07:00|40022550|Zeromus|0001A896|28970847||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:40.4750000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||96.48|86.42|0.00|-2.82| +39|2023-10-06T20:23:40.5190000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7250|10000|||98.03|83.85|0.00|-1.15| +21|2023-10-06T20:23:40.5190000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28971005|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6700|10000|||102.11|85.90|0.00|-2.03|0001A89B|0|1| +261|2023-10-06T20:23:40.1720000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:23:40.5640000-07:00|40022550|Zeromus|0001A897|28963222||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:40.2630000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:23:40.2630000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:40.2630000-07:00|Change|400227AF||| +261|2023-10-06T20:23:40.3610000-07:00|Change|40022791||||||||| +37|2023-10-06T20:23:40.6980000-07:00|40022550|Zeromus|0001A899|28963048||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:40.6980000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21D40000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|104043|128564|10000|10000|||96.53|88.11|0.00|-1.48|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A89C|0|1| +20|2023-10-06T20:23:40.6980000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|96.72|83.86|0.00|-1.36| +261|2023-10-06T20:23:40.3610000-07:00|Change|4002278B||||||||| +37|2023-10-06T20:23:40.7420000-07:00|40022550|Zeromus|0001A898|28953036||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:23:40.4520000-07:00|40022789|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||81.99|119.68|0.00|2.80| +261|2023-10-06T20:23:40.4520000-07:00|Remove|40022789| +261|2023-10-06T20:23:40.4520000-07:00|Change|40022793||||||||| +261|2023-10-06T20:23:40.6390000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:23:41.0090000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|716003|A36E0000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|28953036|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||93.50|85.97|0.00|-1.87|0001A89D|0|1| +38|2023-10-06T20:23:41.0090000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||93.50|85.97|0.00|-1.87|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:41.0090000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:23:41.0090000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:23:41.0540000-07:00|40022550|Zeromus|0001A89B|28953006||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:41.0540000-07:00|10FF0007|Kehabiqo Febiqo|105328|128564|10000|10000|||95.13|89.33|0.00|-1.53| +39|2023-10-06T20:23:41.0540000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||84.17|86.16|0.00|-0.80| +261|2023-10-06T20:23:40.7530000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:23:41.1430000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|105328|128564|10000|10000|||94.62|89.65|-0.02|-1.54|105328|128564|10000|10000|||94.62|89.65|-0.02|-1.54|0001A89E|0|1| +38|2023-10-06T20:23:41.1430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105328|128564|10000|10000|0||94.62|89.65|-0.02|-1.54|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:41.1430000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +04|2023-10-06T20:23:40.7530000-07:00|4002278A|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|0|68265|0|10000|||102.43|101.73|0.00|-3.03| +261|2023-10-06T20:23:40.7530000-07:00|Remove|4002278A| +261|2023-10-06T20:23:40.8630000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:23:40.8630000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:23:41.3200000-07:00|40022550|Zeromus|0001A89A|28945401||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:41.0910000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:23:41.4540000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35720003|35B70000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|28945401|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||98.09|82.61|0.00|0.55|0001A89F|0|1| +21|2023-10-06T20:23:41.4540000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|752003|422B0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|28945401|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9000|10000|||89.25|89.45|0.00|-1.23|0001A8A0|0|1| +261|2023-10-06T20:23:41.0910000-07:00|Change|40022795||||||||| +261|2023-10-06T20:23:41.1860000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T20:23:41.1860000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:41.2870000-07:00|Change|40022794||||||||| +37|2023-10-06T20:23:41.4980000-07:00|10FF0007|Kehabiqo Febiqo|0001A89C|113988|128564|10000|10000|0||92.56|89.73|0.00|-1.55|1500|0|0|01|06000769|0|C1F00000|| +37|2023-10-06T20:23:41.6320000-07:00|40022550|Zeromus|0001A89D|28903563||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:41.6320000-07:00|10FF0005|Wuwuchu Wuchu|0001A89D|90055|90055|10000|10000|0||90.48|85.11|0.00|-2.11|2700|0|0|01|04000A1E|0|41F00000|| +21|2023-10-06T20:23:41.6320000-07:00|400227AF|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|450003|6CD20000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|28945401|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||89.27|83.91|0.00|1.76|0001A8A1|0|1| +21|2023-10-06T20:23:41.6320000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|4ED60000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|28945401|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7250|10000|||96.15|83.79|0.00|2.34|0001A8A2|0|1| +38|2023-10-06T20:23:41.6320000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||90.48|85.11|0.00|-2.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +04|2023-10-06T20:23:41.2870000-07:00|4002278C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||89.98|119.68|0.00|3.13| +261|2023-10-06T20:23:41.2870000-07:00|Change|400227AB||||||||| +261|2023-10-06T20:23:41.2870000-07:00|Remove|4002278C| +261|2023-10-06T20:23:41.3880000-07:00|Change|40022792||||||||| +37|2023-10-06T20:23:41.6770000-07:00|10FF0007|Kehabiqo Febiqo|0001A89E|113988|128564|10000|10000|0||92.93|89.72|0.00|-1.55|1500|0|0|01|06000769|0|41F00000|| +38|2023-10-06T20:23:41.6770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113988|128564|10000|10000|0||92.93|89.72|0.00|-1.55|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:23:41.7650000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|C4840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28903563|40478540|10000|10000|||100.00|80.10|0.00|0.00|113988|128564|10000|10000|||92.53|90.03|0.00|-1.55|0001A8A3|0|1| +38|2023-10-06T20:23:41.7650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113988|128564|10000|10000|0||92.53|90.03|0.00|-1.55|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:41.7650000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:23:41.4860000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:23:41.8990000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|752003|CAC40000|200004|3CDA8000|0|0|0|0|0|0|0|0|0|0|0|0|28903563|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8100|10000|||84.28|89.36|0.00|-1.06|0001A8A4|0|1| +38|2023-10-06T20:23:41.8990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|0||84.28|89.36|0.00|-1.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:41.8990000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:23:41.8990000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:23:41.8990000-07:00|10FF0001||||| +261|2023-10-06T20:23:41.4860000-07:00|Change|4002278B||||||| +261|2023-10-06T20:23:41.4860000-07:00|Change|40022791||||| +261|2023-10-06T20:23:41.4860000-07:00|Change|40022795||||| +261|2023-10-06T20:23:41.5880000-07:00|Change|4002278E||||||||| +21|2023-10-06T20:23:41.9880000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|452E0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28903563|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||81.72|90.61|0.00|-0.12|0001A8A5|0|1| +38|2023-10-06T20:23:41.9880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||81.72|90.61|0.00|-0.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:41.9880000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:23:41.6820000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:23:41.6820000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:23:42.0780000-07:00|10FF0002|Suchichi Suchi|5E|Elusive Jump|10FF0002|Suchichi Suchi|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||97.64|83.74|0.00|2.21|90128|90128|10000|10000|||97.64|83.74|0.00|2.21|0001A8A6|0|1| +21|2023-10-06T20:23:42.1220000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|19A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28903563|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||88.08|86.57|0.00|-1.69|0001A8A7|0|1| +261|2023-10-06T20:23:41.6820000-07:00|Change|40022792||||||| +21|2023-10-06T20:23:42.1680000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28903563|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6850|10000|||96.15|83.79|0.00|2.34|0001A8A8|0|1| +21|2023-10-06T20:23:42.1680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|C1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28903563|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7100|10000|||82.58|90.38|0.00|-0.99|0001A8A9|0|1| +26|2023-10-06T20:23:42.1680000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +21|2023-10-06T20:23:42.1680000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|750003|121B0000|104|6C38000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|28903563|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||85.26|91.76|0.00|-1.24|0001A8AA|0|1| +38|2023-10-06T20:23:42.1680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||81.73|90.72|0.00|2.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:42.1680000-07:00|4B4|Lucid Dreaming|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +31|2023-10-06T20:23:42.1680000-07:00|10FF0001||||| +261|2023-10-06T20:23:41.7950000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:23:42.2570000-07:00|10FF0006|Wowobora Gogobora|5EE7|Icarus|10FF0001|Sesuga Sapisuga|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7100|10000|||82.58|90.38|0.00|-0.99|80739|80739|6850|10000|||96.15|83.79|0.00|2.34|0001A8AB|0|1| +21|2023-10-06T20:23:42.2570000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022550|Zeromus|156003|DA650000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|0|0|28903563|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6700|10000|||91.00|85.38|0.00|-1.73|0001A8AC|0|1| +38|2023-10-06T20:23:42.2570000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6300|10000|0||91.00|85.38|0.00|-1.73|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:42.2570000-07:00|7B3|Manafication|8.90|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73085|73085| +24|2023-10-06T20:23:42.3020000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15AA|127791|127791|7100|10000|||82.08|90.72|0.00|-0.95|10FF0006|Wowobora Gogobora|0|80739|80739|6850|10000|||96.15|83.79|0.00|2.34| +37|2023-10-06T20:23:42.3020000-07:00|40022550|Zeromus|0001A8A2|28883381||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:42.3020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|0||82.08|90.72|0.00|-0.95|0|0|0||||||||||||||||||||||||||||||||||||| +04|2023-10-06T20:23:42.0280000-07:00|4002278B|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||85.98|119.67|0.00|2.78| +261|2023-10-06T20:23:42.0280000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:42.0280000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:42.0280000-07:00|Remove|4002278B| +37|2023-10-06T20:23:42.3910000-07:00|40022550|Zeromus|0001A8A0|28866442||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:42.0280000-07:00|Change|40022793||||| +261|2023-10-06T20:23:42.0280000-07:00|Change|4002278E||||| +261|2023-10-06T20:23:42.0280000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:23:42.1440000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:23:42.4800000-07:00|40022550|Zeromus|0001A89F|28852691||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:42.4800000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42FA0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|113988|128564|10000|10000|||90.02|91.04|0.00|2.83|28883381|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A8AD|0|1| +38|2023-10-06T20:23:42.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||81.74|90.99|0.00|2.11|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:23:42.5690000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|156E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28852691|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7100|10000|||81.48|91.17|0.00|-0.88|0001A8AE|0|1| +37|2023-10-06T20:23:42.6140000-07:00|40022550|Zeromus|0001A8A5|28834981||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:42.6140000-07:00|10FF0008|Kokosaze Lulusaze|0001A8A5|79111|79111|9700|10000|0||81.74|91.02|0.00|2.11|1B00|0|0|01|02000B25|0|0|| +21|2023-10-06T20:23:42.6140000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|1A910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28852691|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||81.74|91.02|0.00|2.11|0001A8AF|0|1| +38|2023-10-06T20:23:42.6140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||81.74|91.02|0.00|2.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:42.6140000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:23:42.2350000-07:00|Change|40022794||||| +261|2023-10-06T20:23:42.2350000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:42.2350000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:23:42.6590000-07:00|40022550|Zeromus|0001A8A7|28828421||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:42.6590000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||89.29|85.84|0.00|1.80|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:42.6590000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:42.7030000-07:00|40022550|Zeromus|0001A8A3|28778113||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:42.7030000-07:00|40022550|Zeromus|0001A8A8|28778047||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:42.7030000-07:00|40022550|Zeromus|0001A8A9|28774949||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:42.3270000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:23:42.7480000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|712003|3FE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28774949|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||85.24|90.17|0.00|-0.67|0001A8B0|0|1| +37|2023-10-06T20:23:42.7930000-07:00|40022550|Zeromus|0001A8A4|28723041||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:42.7930000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||87.01|86.36|0.00|1.80|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:42.7930000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:23:42.7930000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6850|10000|0||88.13|87.82|0.00|-1.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:42.7930000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:23:42.7930000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|80739|90128| +21|2023-10-06T20:23:42.8360000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28723041|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||84.64|86.90|0.00|1.80|0001A8B1|0|1| +21|2023-10-06T20:23:42.9260000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||83.23|87.26|0.00|1.80|90128|90128|10000|10000|||83.23|87.26|0.00|1.80|0001A8B2|0|1| +38|2023-10-06T20:23:42.9260000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||83.23|87.26|0.00|1.80|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:42.9260000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:23:42.9260000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T20:23:42.9260000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|40022666|Ruby Carbuncle|00|77430|90128| +38|2023-10-06T20:23:42.9260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8600|10000|0||82.36|93.51|0.00|-1.60|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:42.9260000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|80739|90128| +261|2023-10-06T20:23:42.5290000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:23:43.0610000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|1060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28723041|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||81.74|91.02|0.00|2.11|0001A8B3|0|1| +38|2023-10-06T20:23:43.0610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6300|10000|0||86.82|88.16|0.00|-2.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:43.0610000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0003|Gegehi Gehi|00|73085|90128| +261|2023-10-06T20:23:42.6260000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:23:43.1490000-07:00|40022550|Zeromus|0001A8AE|28717555||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:43.1490000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||83.62|87.54|0.00|2.10| +04|2023-10-06T20:23:42.7460000-07:00|40022792|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||105.97|119.67|0.00|-2.40| +261|2023-10-06T20:23:42.7460000-07:00|Remove|40022792| +261|2023-10-06T20:23:42.7460000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:23:43.1940000-07:00|40022550|Zeromus|0001A8AA|28712920||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:43.1940000-07:00|10FF0003|Gegehi Gehi|73085|73085|6500|10000|||86.22|88.51|0.00|-1.83| +24|2023-10-06T20:23:43.1940000-07:00|40022550|Zeromus|DoT|0|3A9E|28723041|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|7100|10000|||82.41|90.62|0.00|2.11| +38|2023-10-06T20:23:43.1940000-07:00|40022550|Zeromus|005A5A00|28697914|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:23:43.1940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|0||82.41|90.62|0.00|2.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:43.1940000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|127791|90128| +261|2023-10-06T20:23:42.8690000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:23:43.2380000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +21|2023-10-06T20:23:43.2380000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|CC10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28697914|40478540|10000|10000|||100.00|80.10|0.00|0.00|113988|128564|10000|10000|||84.07|93.10|0.00|-1.58|0001A8B4|0|1| +37|2023-10-06T20:23:43.2830000-07:00|10FF0007|Kehabiqo Febiqo|0001A8AD|96842||||||84.07|93.10|0.00|-1.58| +21|2023-10-06T20:23:43.2830000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|11B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28697914|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||82.23|93.61|0.00|-1.15|0001A8B5|0|1| +36|2023-10-06T20:23:43.3280000-07:00|2CC4|3| +38|2023-10-06T20:23:43.3280000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||81.74|91.02|0.00|2.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:43.3280000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|79111|90128| +38|2023-10-06T20:23:43.3280000-07:00|400227AF|Topaz Titan|005A5A00|0|75851|10000|10000|0||89.27|83.91|0.00|1.76|0|0|0||||||||||||| +26|2023-10-06T20:23:43.3280000-07:00|30|Well Fed|2235.85|10FF0008|Kokosaze Lulusaze|400227AF|Topaz Titan|2964|75851|79111| +26|2023-10-06T20:23:43.3280000-07:00|511|Embolden|13.05|10FF0003|Gegehi Gehi|400227AF|Topaz Titan|00|75851|73085| +26|2023-10-06T20:23:43.3280000-07:00|A8F|Searing Light|9.78|10FF0008|Kokosaze Lulusaze|400227AF|Topaz Titan|00|75851|79111| +26|2023-10-06T20:23:43.3280000-07:00|A27|Arcane Circle|3.70|10FF0005|Wuwuchu Wuchu|400227AF|Topaz Titan|00|75851|90055| +37|2023-10-06T20:23:43.3720000-07:00|40022550|Zeromus|0001A8B1|28694499||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:43.3720000-07:00|10FF0002|Suchichi Suchi|0001A8B1|90128|90128|10000|10000|0||84.03|87.98|0.00|2.11|1600|0|0|01|74|0|C0A00000|| +37|2023-10-06T20:23:43.3720000-07:00|40022550|Zeromus|0001A8AF|28687698||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:43.3720000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7300|10000|||82.20|90.84|0.00|0.59| +39|2023-10-06T20:23:43.3720000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8800|10000|||82.23|93.61|0.00|-1.15| +261|2023-10-06T20:23:42.9900000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:23:43.4610000-07:00|10FF0002|Suchichi Suchi|0001A8B2|90128|90128|10000|10000|0||83.66|88.39|0.00|1.60|1600|0|0|01|74|0|40A00000|| +37|2023-10-06T20:23:43.4610000-07:00|40022550|Zeromus|0001A8B0|28671343||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:43.4610000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||84.82|90.87|0.00|2.19| +20|2023-10-06T20:23:43.4610000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|84.82|90.87|0.00|2.19| +38|2023-10-06T20:23:43.4610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96842|128564|10000|10000|0||83.30|93.27|0.00|-1.55|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:43.4610000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|128564|90128| +38|2023-10-06T20:23:43.4610000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||83.66|88.39|0.00|1.60|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:43.4610000-07:00|40022550|Zeromus|005A5A00|28671343|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:43.4610000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +261|2023-10-06T20:23:43.1000000-07:00|Change|10FF0005||||||||||||||||||| +39|2023-10-06T20:23:43.5060000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7055|10000|||82.43|90.17|0.00|-1.44| +20|2023-10-06T20:23:43.5510000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|82.28|90.14|0.00|-1.52| +04|2023-10-06T20:23:43.1980000-07:00|400227AB|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||95.29|81.86|0.00|-1.81| +261|2023-10-06T20:23:43.1980000-07:00|Change|40022791||||||||| +261|2023-10-06T20:23:43.1980000-07:00|Change|40022795||||||||| +261|2023-10-06T20:23:43.1980000-07:00|Remove|400227AB| +37|2023-10-06T20:23:43.5950000-07:00|40022550|Zeromus|0001A8B3|28671081||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:43.5950000-07:00|40022550|Zeromus|0001A8A1|28643223||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:43.5950000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||84.82|90.87|0.00|2.19|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:43.5950000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +261|2023-10-06T20:23:43.3000000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:23:43.6840000-07:00|40022550|Zeromus|0001A8AC|28587314||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:43.7730000-07:00|40022550|Zeromus|0001A8B4|28584049||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:43.8180000-07:00|40022550|Zeromus|0001A8B5|28583766||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:23:43.8180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|82.23|93.61|0.00|-1.15| +261|2023-10-06T20:23:43.4880000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:23:43.9510000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F722003|820E0000|104|184E8000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|28584049|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||82.40|90.09|0.00|0.19|0001A8B6|0|1| +38|2023-10-06T20:23:43.9510000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||82.40|90.09|0.00|0.19|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:43.9510000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:23:43.9510000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +04|2023-10-06T20:23:43.5870000-07:00|4002278E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||93.98|119.67|0.00|-2.57| +261|2023-10-06T20:23:43.5870000-07:00|Remove|4002278E| +21|2023-10-06T20:23:43.9960000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28583766|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6500|10000|||81.94|90.92|0.00|-1.08|0001A8B7|0|1| +39|2023-10-06T20:23:44.0410000-07:00|10FF0007|Kehabiqo Febiqo|98127|128564|10000|10000|||82.44|93.31|0.00|-1.53| +39|2023-10-06T20:23:44.0410000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||81.74|91.02|0.00|2.11| +261|2023-10-06T20:23:43.6820000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:23:44.1300000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|148B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|96842|128564|10000|10000|||82.44|93.31|0.00|-1.53|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A8B8|0|1| +23|2023-10-06T20:23:44.1740000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|Cancelled| +261|2023-10-06T20:23:43.7950000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:23:44.2180000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|356D0000|143E|340000|200004|25828000|11B|2A8000|0|0|0|0|0|0|0|0|28583766|40478540|10000|10000|||100.00|80.10|0.00|0.00|98127|128564|10000|10000|||82.44|93.31|0.00|-1.53|0001A8B9|0|1| +38|2023-10-06T20:23:44.2180000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||84.79|91.01|-0.02|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:44.2180000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:23:43.7950000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:23:43.9150000-07:00|Change|40022794||||||||| +21|2023-10-06T20:23:44.3970000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|357C0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|28583766|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7300|10000|||81.80|91.22|0.00|2.12|0001A8BA|0|1| +38|2023-10-06T20:23:44.3970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7300|10000|0||81.80|91.22|0.00|2.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:44.3970000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:23:44.3970000-07:00|76E|Sword Oath|6.88|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +21|2023-10-06T20:23:44.4420000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|47AC0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28583766|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||81.74|91.02|0.00|2.11|0001A8BB|0|1| +21|2023-10-06T20:23:44.4420000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|92D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28583766|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7300|10000|||81.80|91.22|0.00|2.12|0001A8BC|0|1| +38|2023-10-06T20:23:44.4420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||81.74|91.02|0.00|2.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:44.4420000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +31|2023-10-06T20:23:44.4420000-07:00|10FF0001||||| +21|2023-10-06T20:23:44.4870000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|61E70000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|28583766|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7055|10000|||81.96|90.07|0.00|2.08|0001A8BD|0|1| +261|2023-10-06T20:23:44.1430000-07:00|Change|10FF0005||||||||||||||||||||| +37|2023-10-06T20:23:44.5320000-07:00|40022550|Zeromus|0001A8B7|28583739||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:44.5320000-07:00|40022567|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||114.00|100.00|0.00|0.79|0001A8BE|0|0| +21|2023-10-06T20:23:44.5320000-07:00|40022568|Zeromus|8CF8|unknown_8cf8|40022568|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||114.00|100.00|0.00|0.79|44|44|0|10000|||114.00|100.00|0.00|0.79|0001A8BF|0|1| +21|2023-10-06T20:23:44.5320000-07:00|40022569|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.79|0001A8C0|0|0| +21|2023-10-06T20:23:44.5320000-07:00|4002256A|Zeromus|8CF8|unknown_8cf8|4002256A|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|0001A8C1|0|1| +21|2023-10-06T20:23:44.5320000-07:00|4002256B|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|86.00|0.00|0.79|0001A8C2|0|0| +21|2023-10-06T20:23:44.5320000-07:00|4002256C|Zeromus|8CF8|unknown_8cf8|4002256C|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|86.00|0.00|0.79|44|44|0|10000|||100.00|86.00|0.00|0.79|0001A8C3|0|1| +261|2023-10-06T20:23:44.1430000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:23:44.1430000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:23:44.1430000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:23:44.1430000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:23:44.1430000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:23:44.1430000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:23:44.1430000-07:00|Change|10FF0008||| +37|2023-10-06T20:23:44.6650000-07:00|40022550|Zeromus|0001A8B6|28550445||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:44.6650000-07:00|10FF0002|Suchichi Suchi|0001A8B6|90128|90128|10000|10000|0||82.29|91.02|0.00|0.74|1600|0|0|01|02000322|0|41F00000|| +21|2023-10-06T20:23:44.6650000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|750003|76DF0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|28583739|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6500|10000|||81.74|91.02|0.00|-1.14|0001A8C4|0|1| +38|2023-10-06T20:23:44.6650000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||82.29|91.02|0.00|0.74|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:44.6650000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6100|10000|0||81.74|91.02|0.00|-1.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:44.6650000-07:00|7B3|Manafication|6.49|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73085|73085| +21|2023-10-06T20:23:44.7540000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|754003|46E60000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|28550445|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8800|10000|||82.23|93.61|0.00|2.22|0001A8C5|0|1| +04|2023-10-06T20:23:44.3280000-07:00|40022793|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||109.97|119.68|0.00|-2.33| +261|2023-10-06T20:23:44.3280000-07:00|Remove|40022793| +21|2023-10-06T20:23:44.8870000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|722003|5F820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28550445|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||82.35|91.66|0.00|1.69|0001A8C6|0|1| +37|2023-10-06T20:23:44.9320000-07:00|10FF0007|Kehabiqo Febiqo|0001A8B8|103386||||||82.44|93.31|0.00|2.22| +261|2023-10-06T20:23:44.5310000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:23:44.9760000-07:00|40022550|Zeromus|0001A8BC|28548096||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:45.0670000-07:00|40022550|Zeromus|0001A8BB|28529748||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:45.0670000-07:00|10FF0008|Kokosaze Lulusaze|0001A8BB|79111|79111|9600|10000|0||81.74|91.02|0.00|2.11|1B00|0|0|01|02000B25|0|0|| +38|2023-10-06T20:23:45.0670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||81.74|91.02|0.00|2.11|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T20:23:45.1570000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1550|127791|127791|7300|10000|||81.80|91.22|0.00|2.12|10FF0006|Wowobora Gogobora|0|80739|80739|6655|10000|||81.98|90.10|0.00|1.36| +37|2023-10-06T20:23:45.1570000-07:00|40022550|Zeromus|0001A8BD|28504685||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:45.1570000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||82.65|92.02|0.00|2.20|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:45.1570000-07:00|776|Right Eye|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:23:45.1570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7300|10000|0||81.80|91.22|0.00|2.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:45.1570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||83.99|92.89|0.00|-0.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:45.1570000-07:00|5AE|Left Eye|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +261|2023-10-06T20:23:44.7390000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:23:45.2010000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|1A390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28504685|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||81.74|91.02|0.00|2.11|0001A8C7|0|1| +38|2023-10-06T20:23:45.2010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||81.74|91.02|0.00|2.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:45.2010000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:23:44.8620000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:44.8620000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:23:44.8620000-07:00|Change|40022795||||||||| +261|2023-10-06T20:23:44.9750000-07:00|Change|40022791||||||||| +20|2023-10-06T20:23:45.4240000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|83.93|92.96|0.00|0.29| +261|2023-10-06T20:23:45.0920000-07:00|Change|10FF0005||||||||||||||||||||| +21|2023-10-06T20:23:45.5140000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3D030000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|103386|128564|10000|10000|||82.46|93.31|-0.02|2.16|28504685|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A8C8|0|1| +37|2023-10-06T20:23:45.5580000-07:00|40022550|Zeromus|0001A8C5|28486535||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:23:45.1940000-07:00|40022794|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||113.97|119.68|0.00|-2.27| +261|2023-10-06T20:23:45.1940000-07:00|Remove|40022794| +37|2023-10-06T20:23:45.6470000-07:00|40022550|Zeromus|0001A8C6|28462085||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:45.6470000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|10420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28486535|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||83.65|92.39|0.00|2.36|0001A8C9|0|1| +38|2023-10-06T20:23:45.6470000-07:00|400227AF|Topaz Titan|005A5A00|0|75851|0|10000|0||89.27|83.91|0.00|1.76|0|0|0|||| +30|2023-10-06T20:23:45.6470000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400227AF|Topaz Titan|00|75851|73085| +30|2023-10-06T20:23:45.6470000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|400227AF|Topaz Titan|00|75851|79111| +30|2023-10-06T20:23:45.6470000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|400227AF|Topaz Titan|00|75851|90055| +261|2023-10-06T20:23:45.1940000-07:00|Change|400227AF||||| +38|2023-10-06T20:23:45.6910000-07:00|400227CD||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +37|2023-10-06T20:23:45.6910000-07:00|40022550|Zeromus|0001A8BA|28448393||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:45.6910000-07:00|10FF0001|Sesuga Sapisuga|0001A8BA|127791|127791|7700|10000|0||81.80|91.22|0.00|2.12|1300|0|0|0| +38|2023-10-06T20:23:45.6920000-07:00|400227CD||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +37|2023-10-06T20:23:45.7350000-07:00|40022550|Zeromus|0001A8B9|28434716||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:45.7350000-07:00|10FF0007|Kehabiqo Febiqo|0001A8B9|112988||||||82.52|93.31|0.00|1.87| +261|2023-10-06T20:23:45.3060000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:23:45.9570000-07:00|40022550|Zeromus|0001A8C7|28428003||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:23:45.9570000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|86.52|91.45|0.00|1.10| +03|2023-10-06T20:23:45.5910000-07:00|400227CD|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||83.26|90.14|0.00|-1.03| +261|2023-10-06T20:23:45.5910000-07:00|Add|400227CD||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:45.5910000-07:00|Change|400227CD||| +39|2023-10-06T20:23:46.1350000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||87.41|92.18|0.00|2.41| +261|2023-10-06T20:23:45.8280000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:45.8280000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:23:45.9400000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:23:46.1810000-07:00|40022550|Zeromus|0001A8C9|28423841||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:46.1810000-07:00|10FF0003|Gegehi Gehi|73085|73085|6300|10000|||81.71|91.56|0.00|1.46| +24|2023-10-06T20:23:46.1810000-07:00|40022550|Zeromus|DoT|0|28EA|28428003|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|7700|10000|||84.02|91.44|0.00|1.53| +21|2023-10-06T20:23:46.1810000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|754003|D6650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28428003|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.88|93.00|0.00|2.25|0001A8CA|0|1| +38|2023-10-06T20:23:46.1810000-07:00|40022550|Zeromus|005A5A00|28413367|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:23:46.1810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||83.88|93.00|0.00|2.25|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:46.1810000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:23:46.1810000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:23:46.2240000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13| +21|2023-10-06T20:23:46.2240000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28428003|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||83.83|91.16|0.00|1.60|0001A8CB|0|1| +37|2023-10-06T20:23:46.3140000-07:00|10FF0007|Kehabiqo Febiqo|0001A8C8|97369||||||85.47|93.50|0.00|1.54| +36|2023-10-06T20:23:46.3140000-07:00|2DA0|3| +38|2023-10-06T20:23:46.3140000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|97369|128564|10000|10000|0||85.47|93.50|0.00|1.54|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:46.3140000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:23:45.9400000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:23:46.3590000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7900|10000|||84.61|91.46|0.00|1.53| +39|2023-10-06T20:23:46.3590000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8600|10000|||87.16|95.48|0.00|1.25| +04|2023-10-06T20:23:46.0590000-07:00|40022791|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||101.98|119.67|0.00|-2.44| +261|2023-10-06T20:23:46.0590000-07:00|Remove|40022791| +39|2023-10-06T20:23:46.4490000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||83.88|93.00|0.00|2.25| +21|2023-10-06T20:23:46.4490000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D722003|466E0000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|28413367|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||89.41|92.05|0.00|2.42|0001A8CC|0|1| +21|2023-10-06T20:23:46.4490000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|720003|1D890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28413367|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6300|10000|||81.79|91.58|0.00|1.48|0001A8CD|0|1| +38|2023-10-06T20:23:46.4490000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||89.41|92.05|0.00|2.42|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:46.4490000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:23:46.4490000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:46.4920000-07:00|40022550|Zeromus|0001A8C4|28382936||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:46.4920000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6860|10000|||86.77|91.54|-0.01|2.26| +20|2023-10-06T20:23:46.4920000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|87.79|95.63|0.00|1.29| +261|2023-10-06T20:23:46.1770000-07:00|Change|10FF0005||||||||||||||||||| +21|2023-10-06T20:23:46.6250000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|13730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28382936|40478540|10000|10000|||100.00|80.10|0.00|0.00|97369|128564|10000|10000|||87.62|93.66|0.00|1.51|0001A8CE|0|1| +21|2023-10-06T20:23:46.6700000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|18840000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|28382936|40478540|10000|10000|||100.00|80.10|0.00|0.00|97369|128564|10000|10000|||87.62|93.66|0.00|1.51|0001A8CF|0|1| +261|2023-10-06T20:23:46.2710000-07:00|Change|400227CD||| +21|2023-10-06T20:23:46.7160000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|9810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28382936|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||86.61|91.54|0.00|1.53|0001A8D0|0|1| +34|2023-10-06T20:23:46.7160000-07:00|400227CD|Carbuncle|400227CD|Carbuncle|01| +31|2023-10-06T20:23:46.7160000-07:00|10FF0001||||| +261|2023-10-06T20:23:46.3620000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:23:46.7600000-07:00|40022550|Zeromus|0001A8CB|28382771||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:46.8060000-07:00|40022550|Zeromus|0001A8CA|28327886||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:46.3620000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:23:46.8480000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|11430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28382771|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.88|93.00|0.00|1.41|0001A8D1|0|1| +21|2023-10-06T20:23:46.8940000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3BB30000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|28382771|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6860|10000|||86.78|91.54|0.00|2.29|0001A8D2|0|1| +21|2023-10-06T20:23:46.8940000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|754003|4EF20000|200004|3D1E8000|0|0|0|0|0|0|0|0|0|0|0|0|28382771|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||87.25|91.54|0.00|1.59|0001A8D3|0|1| +38|2023-10-06T20:23:46.8940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6900|10000|0||87.25|91.54|0.00|1.59|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:46.8940000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:23:46.8940000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:23:46.8940000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||83.88|93.00|0.00|1.41|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:46.8940000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:23:46.9380000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28327886|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6460|10000|||86.78|91.54|0.00|2.29|0001A8D4|0|1| +21|2023-10-06T20:23:46.9820000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|48860000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28327886|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||87.21|93.06|0.00|1.19|0001A8D5|0|1| +38|2023-10-06T20:23:46.9820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|0||87.21|93.06|0.00|1.19|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:46.9820000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:23:47.0270000-07:00|40022550|Zeromus|0001A8CD|28320325||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:47.0270000-07:00|10FF0007|Kehabiqo Febiqo|98654|128564|10000|10000|||88.98|93.76|0.00|2.47| +39|2023-10-06T20:23:47.0270000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9500|10000|||87.69|93.38|0.00|2.26| +38|2023-10-06T20:23:47.0270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||87.69|93.38|0.00|2.26|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:47.0270000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:23:47.0270000-07:00|400227CD|Carbuncle|005A5A00|72376|75851|10000|10000|0||83.45|90.23|0.00|-0.88|0|0|0|||||||||| +26|2023-10-06T20:23:47.0270000-07:00|30|Well Fed|2232.16|10FF0008|Kokosaze Lulusaze|400227CD|Carbuncle|2964|75851|79111| +26|2023-10-06T20:23:47.0270000-07:00|511|Embolden|9.35|10FF0003|Gegehi Gehi|400227CD|Carbuncle|00|75851|73085| +26|2023-10-06T20:23:47.0270000-07:00|A8F|Searing Light|6.08|10FF0008|Kokosaze Lulusaze|400227CD|Carbuncle|00|75851|79111| +261|2023-10-06T20:23:46.5460000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:23:47.0710000-07:00|40022550|Zeromus|0001A8CC|28302295||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:47.0710000-07:00|10FF0002|Suchichi Suchi|0001A8CC|90128|90128|10000|10000|0||93.02|92.40|0.00|2.54|1600|0|0|01|0323|0|41F00000|| +38|2023-10-06T20:23:47.0710000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||93.02|92.40|0.00|2.54|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:46.6620000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:23:47.1610000-07:00|40022550|Zeromus|0001A8CE|28297316||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:47.1610000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T20:23:47.1610000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|77430|90055| +38|2023-10-06T20:23:47.1610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8600|10000|0||88.46|95.72|0.00|2.51|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:47.1610000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +04|2023-10-06T20:23:46.7770000-07:00|40022795|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|119.68|0.00|-2.29| +261|2023-10-06T20:23:46.7770000-07:00|Remove|40022795| +37|2023-10-06T20:23:47.2050000-07:00|40022550|Zeromus|0001A8CF|28291040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:47.2510000-07:00|40022550|Zeromus|0001A8D0|28288607||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:47.2510000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|754003|9F780000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|28291040|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6300|10000|||84.21|91.75|0.00|1.51|0001A8D6|0|1| +38|2023-10-06T20:23:47.2510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5900|10000|0||84.21|91.75|0.00|1.51|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:47.2510000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73085|73085| +38|2023-10-06T20:23:47.2950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5900|10000|0||84.21|91.75|0.00|1.51|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:47.2950000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +261|2023-10-06T20:23:46.8940000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:23:46.8940000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:23:47.3840000-07:00|40022550|Zeromus|0001A8D1|28284188||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:47.0110000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:23:47.4280000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|366E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|28288607|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8600|10000|||88.46|95.72|0.00|2.51|0001A8D7|0|1| +38|2023-10-06T20:23:47.4280000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||94.77|93.16|0.00|2.60|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:47.4280000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +37|2023-10-06T20:23:47.4720000-07:00|40022550|Zeromus|0001A8D4|28284146||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:47.4720000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28284188|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5900|10000|||84.21|91.75|0.00|2.21|0001A8D8|0|1| +21|2023-10-06T20:23:47.5170000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|149D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|98654|128564|10000|10000|||91.54|93.95|0.00|1.73|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A8D9|0|1| +24|2023-10-06T20:23:47.5610000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|153A|127791|127791|6900|10000|||91.19|91.45|0.00|1.59|10FF0006|Wowobora Gogobora|0|80739|80739|6460|10000|||86.99|91.55|0.00|1.81| +37|2023-10-06T20:23:47.5610000-07:00|40022550|Zeromus|0001A8D2|28268863||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:47.5610000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6460|10000|0||86.99|91.55|0.00|1.81|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:47.5610000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:23:47.5610000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +38|2023-10-06T20:23:47.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6900|10000|0||91.86|91.44|0.00|1.58|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:47.2200000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:23:47.6060000-07:00|40022550|Zeromus|0001A8D5|28250297||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:47.6060000-07:00|10FF0008|Kokosaze Lulusaze|0001A8D5|79111|79111|9500|10000|0||88.63|95.62|0.00|0.67|1B00|0|0|01|02000B25|0|0|| +21|2023-10-06T20:23:47.6060000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|19AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28268863|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||88.63|95.62|0.00|0.67|0001A8DA|0|1| +38|2023-10-06T20:23:47.6060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||88.63|95.62|0.00|0.67|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:47.6060000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:23:47.6500000-07:00|40022550|Zeromus|0001A8D3|28230087||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:47.6940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6900|10000|0||92.45|91.44|0.00|1.58|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:47.6940000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +261|2023-10-06T20:23:47.4120000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:23:47.8290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98654|128564|10000|10000|0||93.46|94.56|0.00|1.56|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:47.8290000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +261|2023-10-06T20:23:47.4120000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:47.5060000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:23:47.9620000-07:00|10FF0005|Wuwuchu Wuchu|5F41|Plentiful Harvest|40022550|Zeromus|716003|1CD14001|323E|1018000|0|0|0|0|0|0|0|0|0|0|0|0|28230087|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||88.70|94.53|0.00|1.32|0001A8DB|0|1| +38|2023-10-06T20:23:47.9620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||88.70|94.53|0.00|1.32|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:47.9620000-07:00|A20|Immortal Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|08|90055|90055| +261|2023-10-06T20:23:47.5060000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:23:48.0060000-07:00|40022550|Zeromus|0001A8D8|28230061||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:48.0520000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8200|10000|||90.61|97.57|0.00|1.01|80739|80739|8200|10000|||90.61|97.57|0.00|1.01|0001A8DC|0|1| +261|2023-10-06T20:23:47.7240000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:23:47.8360000-07:00|Change|400227CD||||||||| +37|2023-10-06T20:23:48.2280000-07:00|40022550|Zeromus|0001A8D7|28216127||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:48.3190000-07:00|10FF0007|Kehabiqo Febiqo|0001A8D9|103931||||||95.71|96.77|0.00|1.66| +261|2023-10-06T20:23:47.9490000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:23:48.3640000-07:00|40022550|Zeromus|0001A8DA|28209557||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:48.3640000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28216127|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8200|10000|||90.74|97.67|0.00|1.16|0001A8DD|0|1| +38|2023-10-06T20:23:48.4090000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6460|10000|0||92.13|93.12|0.00|1.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:48.4090000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:23:48.4090000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|6460|10000|||92.13|93.12|0.00|1.11|80739|80739|6460|10000|||92.13|93.12|0.00|1.11|0001A8DE|0|1| +261|2023-10-06T20:23:48.0590000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:23:48.4520000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|C210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28209557|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.17|94.60|-0.02|2.06|0001A8DF|0|1| +21|2023-10-06T20:23:48.5420000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E750000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|103931|128564|10000|10000|||97.09|96.35|0.00|2.20|28209557|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A8E0|0|1| +261|2023-10-06T20:23:48.2690000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:23:48.6750000-07:00|10FF0004|Buhojaqe Zijaqe|0001A8DC|80739|80739|8200|10000|0||92.41|97.36|0.00|1.45|1C00|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T20:23:48.6750000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:23:48.3680000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:48.3680000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:23:48.8100000-07:00|40022550|Zeromus|0001A8D6|28168733||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:48.8980000-07:00|40022550|Zeromus|0001A8DD|28168574||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:48.8980000-07:00|40022550|Zeromus|005A5A00|28168574|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:23:48.8980000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:23:48.9430000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|3D2E0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|28168574|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.22|95.42|0.00|0.04|0001A8E1|0|1| +21|2023-10-06T20:23:48.9430000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F020E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|28168574|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8200|10000|||94.30|97.31|0.00|1.50|0001A8E2|0|1| +38|2023-10-06T20:23:48.9430000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.22|95.42|0.00|0.04|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:48.9430000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:23:48.9430000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:23:48.9870000-07:00|40022550|Zeromus|0001A8DF|28165469||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:48.9870000-07:00|10FF0002|Suchichi Suchi|0001A8DF|90128|90128|10000|10000|0||99.22|95.42|0.00|0.04|1600|0|0|01|02000747|0|C1F00000|| +21|2023-10-06T20:23:48.9870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|ECC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28168574|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6900|10000|||100.23|91.38|0.00|1.69|0001A8E3|0|1| +31|2023-10-06T20:23:48.9870000-07:00|10FF0001||||| +261|2023-10-06T20:23:48.5590000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:23:48.6560000-07:00|Change|400227CD||||||||| +37|2023-10-06T20:23:49.1220000-07:00|40022550|Zeromus|0001A8DB|28092556||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:49.1220000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|247C0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|28165469|40478540|10000|10000|||100.00|80.10|0.00|0.00|103931|128564|10000|10000|||98.98|95.06|0.00|-2.94|0001A8E4|0|1| +261|2023-10-06T20:23:48.7690000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:23:49.1660000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.23|95.61|-0.02|3.00| +39|2023-10-06T20:23:49.2110000-07:00|10FF0003|Gegehi Gehi|73085|73085|6100|10000|||90.23|96.43|0.00|1.80| +24|2023-10-06T20:23:49.2110000-07:00|40022550|Zeromus|DoT|0|19E0|28092556|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|6900|10000|||101.55|91.22|0.00|1.69| +38|2023-10-06T20:23:49.2110000-07:00|40022550|Zeromus|005A5A00|28085932|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +39|2023-10-06T20:23:49.2550000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-3.06| +261|2023-10-06T20:23:48.8870000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:23:49.3460000-07:00|10FF0007|Kehabiqo Febiqo|0001A8E0|87942||||||99.08|94.95|0.00|3.08| +36|2023-10-06T20:23:49.3460000-07:00|2E7C|3| +39|2023-10-06T20:23:49.3890000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7100|10000|||102.19|91.14|0.00|1.69| +39|2023-10-06T20:23:49.3890000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8000|10000|||96.78|98.47|0.00|1.73| +21|2023-10-06T20:23:49.3900000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|38860000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|28085932|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7100|10000|||102.87|91.05|0.00|1.70|0001A8E5|0|1| +38|2023-10-06T20:23:49.3900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|0||102.87|91.05|0.00|1.70|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:49.3900000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:23:49.3900000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +21|2023-10-06T20:23:49.4340000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|35970000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28085932|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||90.40|104.99|-0.02|0.62|0001A8E6|0|1| +21|2023-10-06T20:23:49.4340000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FCD0E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|28085932|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6460|10000|||96.94|97.75|0.00|0.64|0001A8E7|0|1| +38|2023-10-06T20:23:49.4340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|0||90.40|104.99|-0.02|0.62|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:49.4340000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:23:49.4340000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6060|10000|0||96.94|97.75|0.00|0.64|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:23:49.4340000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +39|2023-10-06T20:23:49.4780000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.12|97.39|-0.02|2.12| +37|2023-10-06T20:23:49.5230000-07:00|40022550|Zeromus|0001A8E3|28082144||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:49.5230000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6265|10000|||97.22|98.21|0.00|2.78| +37|2023-10-06T20:23:49.5680000-07:00|40022550|Zeromus|0001A8E2|28082144|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:23:49.5680000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +261|2023-10-06T20:23:49.1190000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:23:49.1190000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:23:49.1190000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:23:49.1190000-07:00|Remove|400227AF| +04|2023-10-06T20:23:49.1190000-07:00|400227AF|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|75851|0|10000|||89.27|83.91|0.00|1.76| +00|2023-10-06T20:23:49.0000000-07:00|0044|Zeromus|O stifled Darkness in moon abiding...| +37|2023-10-06T20:23:49.6120000-07:00|40022550|Zeromus|0001A8E1|28066482||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:49.6120000-07:00|10FF0002|Suchichi Suchi|0001A8E1|90128|90128|10000|10000|0||99.33|97.94|0.00|0.62|1600|0|0|01|02000747|0|41F00000|| +22|2023-10-06T20:23:49.6120000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0004|Buhojaqe Zijaqe|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|0001A8E8|0|8| +22|2023-10-06T20:23:49.6120000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0002|Suchichi Suchi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.33|97.94|0.00|0.62|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|0001A8E8|1|8| +22|2023-10-06T20:23:49.6120000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0006|Wowobora Gogobora|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|6265|10000|||97.56|98.67|0.00|2.17|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|0001A8E8|2|8| +22|2023-10-06T20:23:49.6120000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0005|Wuwuchu Wuchu|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||97.30|97.33|0.00|2.26|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|0001A8E8|3|8| +22|2023-10-06T20:23:49.6120000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0007|Kehabiqo Febiqo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|87942|128564|10000|10000|||99.14|94.90|-0.02|3.08|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|0001A8E8|4|8| +22|2023-10-06T20:23:49.6120000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0003|Gegehi Gehi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|6100|10000|||90.62|96.54|0.00|1.88|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|0001A8E8|5|8| +22|2023-10-06T20:23:49.6120000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0008|Kokosaze Lulusaze|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9200|10000|||90.45|105.15|0.00|2.78|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|0001A8E8|6|8| +22|2023-10-06T20:23:49.6120000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0001|Sesuga Sapisuga|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7100|10000|||104.12|90.90|0.00|1.70|80739|80739|8000|10000|||98.42|99.48|0.00|1.24|0001A8E8|7|8| +38|2023-10-06T20:23:49.6120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87942|128564|10000|10000|0||99.14|94.90|-0.02|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:49.6120000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:23:49.6120000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|128564|80739| +38|2023-10-06T20:23:49.6120000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.33|97.94|0.00|0.62|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:49.6120000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:23:49.6120000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|1E|90128|80739| +38|2023-10-06T20:23:49.6120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|0||90.45|105.15|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:49.6120000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:23:49.6120000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|79111|80739| +38|2023-10-06T20:23:49.6120000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6265|10000|0||97.56|98.67|0.00|2.17|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:49.6120000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:23:49.6120000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:23:49.6120000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|80739|80739| +38|2023-10-06T20:23:49.6120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|0||104.12|90.90|0.00|1.70|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:49.6120000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:23:49.6120000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|127791|80739| +261|2023-10-06T20:23:49.2200000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T20:23:49.6130000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8000|10000|0||98.42|99.48|0.00|1.24|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:49.6130000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:23:49.6130000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +38|2023-10-06T20:23:49.6130000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6100|10000|0||90.62|96.54|0.00|1.88|0|0|0||||||||||||||||||| +26|2023-10-06T20:23:49.6130000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:23:49.6130000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73085|80739| +38|2023-10-06T20:23:49.6130000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||97.30|97.33|0.00|2.26|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:49.6130000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:23:49.6130000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|1E|90055|80739| +20|2023-10-06T20:23:49.6560000-07:00|40022550|Zeromus|8B4C|Big Bang|40022550|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:23:49.6560000-07:00|4002256C|Zeromus|8BDE|Big Bang|10FF0004|Buhojaqe Zijaqe|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:23:49.6560000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:23:49.6560000-07:00|4002256D|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:23:49.6560000-07:00|4002256E|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:23:49.2200000-07:00|Change|40022550||||||||| +20|2023-10-06T20:23:49.7010000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|90.62|96.54|0.00|1.88| +38|2023-10-06T20:23:49.7010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|0||104.94|90.79|0.00|1.70|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:49.7010000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:23:49.3120000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:23:49.3120000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:23:49.7460000-07:00|40022550|Zeromus|0001A8E4|28057142||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:49.7460000-07:00|10FF0007|Kehabiqo Febiqo|0001A8E4|87942|128564|10000|10000|0||99.14|94.90|0.00|3.08|1500|0|0|02|04000A97|0|C1A00000|||||| +21|2023-10-06T20:23:49.7460000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28066482|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6265|10000|||97.91|99.15|0.00|1.55|0001A8E9|0|1| +20|2023-10-06T20:23:49.7900000-07:00|40022569|Zeromus|8BDE|Big Bang|10FF0002|Suchichi Suchi|4.700|100.00|100.00|0.00|0.79| +27|2023-10-06T20:23:49.7900000-07:00|10FF0002|Suchichi Suchi|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:23:49.7900000-07:00|4002256A|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.79| +20|2023-10-06T20:23:49.7900000-07:00|4002256B|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|86.00|0.00|0.79| +261|2023-10-06T20:23:49.4030000-07:00|Change|40022569||||||||||||||| +261|2023-10-06T20:23:49.4030000-07:00|Change|40022566||||||||| +261|2023-10-06T20:23:49.4030000-07:00|Change|40022567||||||||| +261|2023-10-06T20:23:49.4030000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:23:49.4030000-07:00|Change|40022568||||||||| +20|2023-10-06T20:23:49.8790000-07:00|40022566|Zeromus|8BDE|Big Bang|10FF0003|Gegehi Gehi|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:23:49.8790000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:23:49.8790000-07:00|40022567|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:23:49.8790000-07:00|40022568|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:23:49.4030000-07:00|Change|40022565||||||||| +261|2023-10-06T20:23:49.4030000-07:00|Change|40022564||||||||| +261|2023-10-06T20:23:49.4030000-07:00|Change|40022563||||||||| +261|2023-10-06T20:23:49.4030000-07:00|Change|10FF0004||||||||||| +20|2023-10-06T20:23:49.9690000-07:00|40022563|Zeromus|8BDE|Big Bang|10FF0006|Wowobora Gogobora|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:23:49.9690000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:23:49.9690000-07:00|40022564|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:23:49.9690000-07:00|40022565|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:23:49.4950000-07:00|Change|40022561||||||||| +261|2023-10-06T20:23:49.5960000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:23:49.5960000-07:00|Change|400227CD||||||||| +261|2023-10-06T20:23:49.5960000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:23:49.5960000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:23:50.0130000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|17FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28057142|40478540|10000|10000|||100.00|80.10|0.00|0.00|87942|128564|10000|10000|||99.17|96.27|0.00|1.44|0001A8EA|0|1| +37|2023-10-06T20:23:50.0570000-07:00|40022550|Zeromus|0001A8E6|28043423||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:50.0570000-07:00|10FF0008|Kokosaze Lulusaze|0001A8E6|79111|79111|9200|10000|0||90.50|105.30|0.00|2.78|1B00|0|0|03|02000B25|0|0|||||||||| +20|2023-10-06T20:23:50.0580000-07:00|40022560|Zeromus|8BDE|Big Bang|10FF0005|Wuwuchu Wuchu|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:23:50.0580000-07:00|10FF0005|Wuwuchu Wuchu|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:23:50.0580000-07:00|40022561|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:23:50.0580000-07:00|40022562|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +39|2023-10-06T20:23:50.0580000-07:00|10FF0007|Kehabiqo Febiqo|89227|128564|10000|10000|||99.17|96.27|0.00|1.44| +39|2023-10-06T20:23:50.0580000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9400|10000|||90.50|105.30|0.00|2.78| +21|2023-10-06T20:23:50.0580000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|2B8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28057142|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9200|10000|||90.50|105.30|0.00|2.78|0001A8EB|0|1| +261|2023-10-06T20:23:49.6940000-07:00|Change|40022560||||||||||||||| +21|2023-10-06T20:23:50.0580000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28057142|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.69|97.21|0.00|2.58|0001A8EC|0|1| +38|2023-10-06T20:23:50.0580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||90.50|105.30|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:50.0580000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:23:49.6940000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:23:49.6940000-07:00|Change|4002255E||||||||| +261|2023-10-06T20:23:49.6940000-07:00|Change|4002255D||||||||| +21|2023-10-06T20:23:50.1020000-07:00|10FF0006|Wowobora Gogobora|5EE8|Druochole|10FF0006|Wowobora Gogobora|200004|7EA70000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|6265|10000|||98.60|99.36|0.00|1.09|80739|80739|6265|10000|||98.60|99.36|0.00|1.09|0001A8ED|0|1| +261|2023-10-06T20:23:49.6940000-07:00|Change|4002255F||||||||| +261|2023-10-06T20:23:49.6940000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:49.8060000-07:00|Change|4002256B||||||||||| +24|2023-10-06T20:23:50.1920000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15EC|127791|127791|7100|10000|||108.18|90.03|0.00|1.88|10FF0006|Wowobora Gogobora|0|80739|80739|6265|10000|||98.78|99.37|0.00|1.02| +37|2023-10-06T20:23:50.1920000-07:00|40022550|Zeromus|0001A8E7|28043423|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:23:50.1920000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:23:50.1920000-07:00|10FF0006|Wowobora Gogobora|0001A8E7|80739|80739|6265|10000|0||98.78|99.37|0.00|1.02|2800|0|0|02|03000A97|0|C1A00000|||||| +20|2023-10-06T20:23:50.1920000-07:00|4002255D|Zeromus|8BDE|Big Bang|10FF0001|Sesuga Sapisuga|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:23:50.1920000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:23:50.1920000-07:00|4002255E|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:23:50.1920000-07:00|4002255F|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T20:23:50.1920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|0||108.18|90.03|0.00|1.88|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:50.2360000-07:00|10FF0004|Buhojaqe Zijaqe|0001A8E8|80739|80739|8000|10000|0||101.13|101.76|0.00|0.96|1C00|0|0|02|06000A97|0|41A00000|||||| +38|2023-10-06T20:23:50.2360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8000|10000|0||101.13|101.76|0.00|0.96|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:23:49.8060000-07:00|Change|4002255C||||||||| +261|2023-10-06T20:23:49.8060000-07:00|Change|4002255B||||||||| +37|2023-10-06T20:23:50.2840000-07:00|40022550|Zeromus|0001A8E9|28043360||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:50.2840000-07:00|10FF0006|Wowobora Gogobora|0001A8E9|80739|80739|6265|10000|0||98.89|99.38|-0.01|0.98|2800|0|0|02|03000A97|0|C1A00000|||||| +20|2023-10-06T20:23:50.2840000-07:00|4002255B|Zeromus|8BDE|Big Bang|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:23:50.2840000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:23:50.2840000-07:00|4002255C|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:23:49.9220000-07:00|Change|40022559||||||||| +261|2023-10-06T20:23:49.9220000-07:00|Change|40022567||||||||||| +261|2023-10-06T20:23:49.9220000-07:00|Change|4002255A||||||||| +261|2023-10-06T20:23:49.9220000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:23:49.9220000-07:00|Change|40022568||||||||||| +37|2023-10-06T20:23:50.3700000-07:00|10FF0002|Suchichi Suchi|0001A8E8|90128|90128|10000|10000|0||99.76|100.11|-0.02|1.68|1601|0|0|02|0A97|0|41A00000|||||| +20|2023-10-06T20:23:50.3700000-07:00|40022559|Zeromus|8BDE|Big Bang|10FF0007|Kehabiqo Febiqo|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:23:50.3700000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:23:50.3700000-07:00|4002255A|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:23:50.0380000-07:00|Change|10FF0005||||||||| +38|2023-10-06T20:23:50.3700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.76|100.11|-0.02|1.68|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:50.0380000-07:00|Change|40022558||||||||| +261|2023-10-06T20:23:50.0380000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:23:50.0380000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:23:50.0380000-07:00|Change|40022565||||||||||| +261|2023-10-06T20:23:50.0380000-07:00|Change|40022561||||||||||| +20|2023-10-06T20:23:50.4610000-07:00|40022558|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T20:23:50.4610000-07:00|40022550|Zeromus|005A5A00|28043360|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T20:23:50.4610000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:23:50.5060000-07:00|10FF0006|Wowobora Gogobora|0001A8E8|80739|80739|6265|10000|0||98.89|99.38|0.00|0.98|2802|0|0|02|03000A97|0|41A00000|||||| +38|2023-10-06T20:23:50.5060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6265|10000|0||98.89|99.38|0.00|0.98|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:23:50.5480000-07:00|40022550|Zeromus|0001A8EA|28037222||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:50.5480000-07:00|10FF0007|Kehabiqo Febiqo|0001A8EA|89227|128564|10000|10000|0||99.24|99.77|0.00|0.21|1500|0|0|02|04000A97|0|C1A00000|||||| +21|2023-10-06T20:23:50.5480000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|712003|6AA40000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|28043360|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.09|98.44|0.00|-2.81|0001A8EE|0|1| +261|2023-10-06T20:23:50.1520000-07:00|Change|40022557||||||||| +261|2023-10-06T20:23:50.1520000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:23:50.1520000-07:00|Change|4002256E||||||||||| +261|2023-10-06T20:23:50.1520000-07:00|Change|4002256D||||||||||| +37|2023-10-06T20:23:50.5910000-07:00|40022550|Zeromus|0001A8EC|28033750||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:50.5910000-07:00|10FF0005|Wuwuchu Wuchu|0001A8EC|90055|90055|10000|10000|0||98.28|98.87|0.00|3.07|2700|0|0|02|02000A97|0|C1A00000|||||| +20|2023-10-06T20:23:50.5910000-07:00|40022557|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:23:50.1520000-07:00|Change|40022556||||||||| +37|2023-10-06T20:23:50.6360000-07:00|10FF0005|Wuwuchu Wuchu|0001A8E8|90055|90055|10000|10000|0||98.28|98.87|0.00|3.07|2703|0|0|02|02000A97|0|41A00000|||||| +38|2023-10-06T20:23:50.6360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||98.28|98.87|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:50.2530000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:23:50.2530000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:23:50.6810000-07:00|40022550|Zeromus|0001A8E5|28019280||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:50.6810000-07:00|10FF0001|Sesuga Sapisuga|0001A8E5|127791|127791|7500|10000|0||111.26|88.79|0.00|2.03|1300|0|0|02|03000A97|0|C1A00000|||||| +20|2023-10-06T20:23:50.6810000-07:00|40022556|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:50.6810000-07:00|400227CD|Carbuncle|005A5A00|72376|75851|10000|10000|0||91.38|103.38|0.00|-0.01|0|0|0||||||||||||| +26|2023-10-06T20:23:50.6810000-07:00|77B|Summon Order|30.00|10FF0008|Kokosaze Lulusaze|400227CD|Carbuncle|01|75851|79111| +21|2023-10-06T20:23:50.6810000-07:00|10FF0008|Kokosaze Lulusaze|64C7|Radiant Aegis|10FF0008|Kokosaze Lulusaze|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||90.50|105.30|0.00|2.78|79111|79111|9400|10000|||90.50|105.30|0.00|2.78|0001A8EF|0|1| +38|2023-10-06T20:23:50.6810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6100|10000|0||90.62|96.54|0.00|2.62|0|0|0||||||||||||||||||| +261|2023-10-06T20:23:50.2530000-07:00|Change|40022555||||||||| +261|2023-10-06T20:23:50.2530000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:23:50.2530000-07:00|Change|4002255B||||||||||||| +261|2023-10-06T20:23:50.2530000-07:00|Change|4002255C||||||||||| +261|2023-10-06T20:23:50.3510000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:23:50.7700000-07:00|10FF0007|Kehabiqo Febiqo|0001A8E8|89227|128564|10000|10000|0||99.66|100.08|0.00|1.29|1504|0|0|02|04000A97|0|41A00000|||||| +20|2023-10-06T20:23:50.7700000-07:00|40022555|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T20:23:50.7700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89227|128564|10000|10000|0||99.66|100.08|0.00|1.29|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:50.8160000-07:00|40022550|Zeromus|0001A8EB|28008133||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:50.8160000-07:00|10FF0008|Kokosaze Lulusaze|0001A8EB|79111|79111|9400|10000|0||90.50|105.31|-0.02|2.96|1B00|0|0|02|04000A97|0|C1A00000|||||| +21|2023-10-06T20:23:50.8160000-07:00|400227CD|Carbuncle|64F1|Radiant Aegis|10FF0008|Kokosaze Lulusaze|CE0E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||90.50|105.31|-0.02|2.96|72376|75851|10000|10000|||91.39|103.61|0.00|-0.02|0001A8F0|0|1| +38|2023-10-06T20:23:50.8160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|19||90.50|105.31|-0.02|2.96|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:50.8160000-07:00|A8E|Radiant Aegis|29.96|400227CD|Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|75851| +37|2023-10-06T20:23:50.8590000-07:00|10FF0006|Wowobora Gogobora|0001A8ED|80739|80739|6965|10000|0||98.89|99.39|0.00|0.28|2800|0|0|0| +38|2023-10-06T20:23:50.8600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7500|10000|0||112.84|89.23|0.00|2.10|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:50.8600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8550|10000|0||104.93|104.85|0.00|0.78|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:23:50.9050000-07:00|10FF0003|Gegehi Gehi|0001A8E8|73085|73085|6100|10000|0||90.62|96.54|0.00|2.62|2305|0|0|02|01000A97|0|41A00000|||||| +38|2023-10-06T20:23:50.9060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|6100|10000|0||90.62|96.54|0.00|2.62|0|0|0||||||||||||||||||| +20|2023-10-06T20:23:50.9490000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.89|99.40|0.00|-0.19| +261|2023-10-06T20:23:50.5480000-07:00|Change|40022557||||||||||| +37|2023-10-06T20:23:51.0380000-07:00|10FF0008|Kokosaze Lulusaze|0001A8E8|79111|79111|9400|10000|19||90.48|105.39|0.00|-1.74|1B06|0|0|02|04000A97|0|41A00000|||||| +38|2023-10-06T20:23:51.0380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|19||90.48|105.39|0.00|-1.74|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:23:50.6640000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:23:51.1270000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|754003|42E50000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|28008133|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6100|10000|||90.62|96.54|0.00|2.62|0001A8F1|0|1| +38|2023-10-06T20:23:51.1270000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5900|10000|0||90.62|96.54|0.00|2.62|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:51.1270000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:23:50.6640000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:23:50.6640000-07:00|Change|40022556||||||||||| +261|2023-10-06T20:23:50.6640000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:23:50.6640000-07:00|Change|4002255F||||||||||| +37|2023-10-06T20:23:51.1720000-07:00|10FF0001|Sesuga Sapisuga|0001A8E8|127791|127791|7500|10000|0||114.92|87.76|0.00|2.31|1307|0|0|02|03000A97|0|41A00000|||||| +38|2023-10-06T20:23:51.1720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7500|10000|0||114.92|87.76|0.00|2.31|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:50.7770000-07:00|Change|40022555||||||||||| +21|2023-10-06T20:23:51.2610000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22640000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|89227|128564|10000|10000|||99.25|99.12|0.00|2.95|77430|77430|10000|10000|||100.18|98.80|0.00|-2.31|0001A8F2|0|1| +21|2023-10-06T20:23:51.2610000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|ECE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28008133|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.65|99.14|0.00|3.14|0001A8F3|0|1| +21|2023-10-06T20:23:51.2610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28008133|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7500|10000|||115.52|87.14|0.00|2.41|0001A8F4|0|1| +31|2023-10-06T20:23:51.2610000-07:00|10FF0001||||| +261|2023-10-06T20:23:50.7770000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:23:50.8940000-07:00|Change|40022559||||||||||||| +261|2023-10-06T20:23:50.8940000-07:00|Change|4002255A||||||||||| +21|2023-10-06T20:23:51.3950000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|27830000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|28008133|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8550|10000|||108.49|107.84|0.00|0.76|0001A8F5|0|1| +21|2023-10-06T20:23:51.4400000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|43ED0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|28008133|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||101.00|99.08|0.00|3.13|0001A8F6|0|1| +38|2023-10-06T20:23:51.4400000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||101.00|99.08|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:51.4400000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:23:51.0050000-07:00|Change|40022558||||||||||| +37|2023-10-06T20:23:51.5740000-07:00|40022550|Zeromus|0001A8EE|27980833||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:51.5740000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F714003|416A0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|28008133|40478540|10000|10000|||100.00|80.10|0.00|0.00|89227|128564|10000|10000|||97.65|97.19|0.00|3.10|0001A8F7|0|1| +38|2023-10-06T20:23:51.5740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89227|128564|10000|10000|0||97.65|97.19|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:51.5740000-07:00|A75|Surging Tempest|35.94|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:23:51.6180000-07:00|10FF0008|Kokosaze Lulusaze|0001A8F0|79111|79111|9400|10000|19||89.00|109.04|0.00|-0.52|1B00|0|0|01|02000A8E|0|41E99166|| +38|2023-10-06T20:23:51.6180000-07:00|400227CD|Carbuncle|005A5A00|72376|75851|10000|10000|0||91.26|103.71|0.00|-0.55|0|0|0|||||||||| +30|2023-10-06T20:23:51.6180000-07:00|77B|Summon Order|0.00|10FF0008|Kokosaze Lulusaze|400227CD|Carbuncle|01|75851|79111| +261|2023-10-06T20:23:51.2300000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:23:51.6620000-07:00|400227CD|Carbuncle|75851|75851|10000|10000|||91.16|103.79|0.00|-0.64| +261|2023-10-06T20:23:51.3240000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T20:23:51.3240000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:23:51.3240000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:23:51.7950000-07:00|40022550|Zeromus|0001A8F3|27977043||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:51.7950000-07:00|40022550|Zeromus|0001A8F4|27975184||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:51.4260000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:23:51.4260000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:51.8840000-07:00|40022550|Zeromus|0001A8F1|27958059||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:51.8840000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|39A60000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|27975184|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6965|10000|||98.07|100.21|0.00|3.05|0001A8F8|0|1| +21|2023-10-06T20:23:51.8840000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|29F30000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|27975184|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7500|10000|||116.36|86.08|0.00|-1.92|0001A8F9|0|1| +38|2023-10-06T20:23:51.8840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7500|10000|0||116.36|86.08|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:51.8840000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:23:51.8840000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:23:51.8840000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:23:51.9290000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|27975184|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||88.04|111.51|0.00|-0.41|0001A8FA|0|1| +38|2023-10-06T20:23:51.9290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|19||88.04|111.51|0.00|-0.41|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:51.9290000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:23:51.9290000-07:00|400227CD|Carbuncle|005A5A00|0|75851|0|10000|0||90.51|104.24|0.00|-0.78|0|0|0|||| +30|2023-10-06T20:23:51.9290000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400227CD|Carbuncle|00|75851|73085| +30|2023-10-06T20:23:51.9290000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|400227CD|Carbuncle|00|75851|79111| +261|2023-10-06T20:23:51.5230000-07:00|Change|400227CD||||||||| +38|2023-10-06T20:23:51.9740000-07:00|40022814||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T20:23:51.9740000-07:00|40022814||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||| +261|2023-10-06T20:23:51.5230000-07:00|Add|40022814||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:23:51.5230000-07:00|40022814|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|72376|75851|10000|10000|||88.78|114.69|0.00|2.78| +261|2023-10-06T20:23:51.6130000-07:00|Change|40022814||||| +261|2023-10-06T20:23:51.6130000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:23:52.0630000-07:00|40022550|Zeromus|0001A8F6|27940670||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:52.0630000-07:00|10FF0007|Kehabiqo Febiqo|0001A8F2|98031||||||97.67|95.89|0.00|3.00| +21|2023-10-06T20:23:52.1080000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|3FAD0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|27958059|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5900|10000|||87.16|97.04|0.00|-1.41|0001A8FB|0|1| +38|2023-10-06T20:23:52.1080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5600|10000|0||87.16|97.04|0.00|-1.41|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:52.1080000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:23:52.1080000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +39|2023-10-06T20:23:52.1520000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||108.72|98.83|0.00|-3.05| +39|2023-10-06T20:23:52.1970000-07:00|10FF0003|Gegehi Gehi|73085|73085|5800|10000|||86.51|97.36|0.00|2.94| +24|2023-10-06T20:23:52.1970000-07:00|40022550|Zeromus|DoT|0|27B8|27940670|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||108.72|98.83|0.00|-3.05| +21|2023-10-06T20:23:52.1970000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|3D730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27940670|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||108.72|98.83|0.00|-3.05|0001A8FC|0|1| +38|2023-10-06T20:23:52.1970000-07:00|40022550|Zeromus|005A5A00|27930502|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T20:23:52.2420000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-2.43| +37|2023-10-06T20:23:52.3310000-07:00|40022550|Zeromus|0001A8F5|27920387||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:23:52.3310000-07:00|2F58|3| +261|2023-10-06T20:23:51.9300000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:23:52.3750000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7700|10000|||116.47|85.70|0.00|2.98| +39|2023-10-06T20:23:52.3750000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|8350|10000|||112.43|114.43|0.00|0.58| +38|2023-10-06T20:23:52.4190000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||103.50|91.59|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:52.4190000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:23:52.4190000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||103.50|91.59|0.00|3.00|90055|90055|10000|10000|||103.50|91.59|0.00|3.00|0001A8FD|0|1| +37|2023-10-06T20:23:52.4630000-07:00|40022550|Zeromus|0001A8F9|27909648||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:52.4630000-07:00|10FF0001|Sesuga Sapisuga|0001A8F9|127791|127791|7700|10000|0||116.47|85.70|0.00|2.98|1300|0|0|02|0500076E|03|41F00000|||||| +39|2023-10-06T20:23:52.4630000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||103.50|91.59|0.00|3.00| +38|2023-10-06T20:23:52.4630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7700|10000|0||116.47|85.70|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:52.0440000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:23:52.5070000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6770|10000|||98.05|100.23|0.00|-1.06| +261|2023-10-06T20:23:52.1600000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:23:52.5520000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1582|127791|127791|7700|10000|||116.47|85.70|0.00|2.98|10FF0006|Wowobora Gogobora|0|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06| +37|2023-10-06T20:23:52.5520000-07:00|40022550|Zeromus|0001A8F8|27894890||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:23:52.5520000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|0001A8FE|0|8| +22|2023-10-06T20:23:52.5520000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||109.30|98.72|0.00|-2.68|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|0001A8FE|1|8| +22|2023-10-06T20:23:52.5520000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|98031|128564|10000|10000|||97.25|92.10|0.00|-3.08|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|0001A8FE|2|8| +22|2023-10-06T20:23:52.5520000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||103.59|90.73|0.00|-2.79|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|0001A8FE|3|8| +22|2023-10-06T20:23:52.5520000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5800|10000|||85.09|98.65|0.00|-1.74|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|0001A8FE|4|8| +22|2023-10-06T20:23:52.5520000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||87.42|113.52|0.00|2.18|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|0001A8FE|5|8| +22|2023-10-06T20:23:52.5520000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8350|10000|||112.39|115.05|0.00|0.53|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|0001A8FE|6|8| +22|2023-10-06T20:23:52.5520000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7700|10000|||116.47|85.70|0.00|2.98|80739|80739|6565|10000|||98.05|100.23|0.00|-1.06|0001A8FE|7|8| +38|2023-10-06T20:23:52.5520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7700|10000|0||116.47|85.70|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:52.1600000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:23:52.2570000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:52.2570000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:23:52.6840000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022550|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27894890|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7700|10000|||116.47|85.70|0.00|2.98|0001A8FF|0|1| +261|2023-10-06T20:23:52.4470000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:23:52.9090000-07:00|40022550|Zeromus|0001A8FB|27878589||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:52.9090000-07:00|10FF0003|Gegehi Gehi|0001A8FB|73085|73085|5800|10000|0||84.69|99.25|-0.02|-1.04|2300|0|0|01|070004D3|0|41F00000|| +38|2023-10-06T20:23:52.9090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5800|10000|0||84.69|99.25|-0.02|-1.04|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:23:52.9520000-07:00|10FF0008|Kokosaze Lulusaze|0001A8FA|79111|79111|9400|10000|19||86.70|116.37|0.00|0.56|1B00|0|0|01|07000AA4|0|0|| +38|2023-10-06T20:23:52.9520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|19||86.70|116.37|0.00|0.56|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:23:52.5460000-07:00|Change|40022814||| +39|2023-10-06T20:23:53.0420000-07:00|10FF0007|Kehabiqo Febiqo|99316|128564|10000|10000|||94.73|89.14|0.00|-2.96| +39|2023-10-06T20:23:53.0420000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9600|10000|||86.51|117.17|0.00|0.19| +261|2023-10-06T20:23:52.6610000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:23:53.1310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99316|128564|10000|10000|0||94.44|88.27|0.00|-2.95|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:23:53.1310000-07:00|40022814|Ruby Ifrit|005A5A00|72376|75851|10000|10000|0||88.78|114.69|0.00|2.78|0|0|0||||||| +26|2023-10-06T20:23:53.1310000-07:00|30|Well Fed|2226.06|10FF0008|Kokosaze Lulusaze|40022814|Ruby Ifrit|2964|75851|79111| +26|2023-10-06T20:23:53.1310000-07:00|511|Embolden|3.25|10FF0003|Gegehi Gehi|40022814|Ruby Ifrit|00|75851|73085| +38|2023-10-06T20:23:53.1310000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||112.50|97.60|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|90128|79111| +38|2023-10-06T20:23:53.1310000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022666|Ruby Carbuncle|00|77430|79111| +38|2023-10-06T20:23:53.1310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|19||86.33|117.92|-0.01|-0.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:23:53.1310000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6770|10000|0||98.28|102.46|0.00|-0.15|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:53.1310000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|80739|79111| +38|2023-10-06T20:23:53.1310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7700|10000|0||116.34|85.82|0.00|-2.24|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:23:53.1310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8350|10000|0||112.17|116.23|0.00|0.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|80739|79111| +38|2023-10-06T20:23:53.1310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5800|10000|0||84.52|99.55|0.00|-0.69|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73085|79111| +38|2023-10-06T20:23:53.1310000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.89|88.36|0.00|-2.16|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:53.1310000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|90055|79111| +261|2023-10-06T20:23:52.6610000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:23:52.6610000-07:00|Change|10FF0007||||||||| +22|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0006|Wowobora Gogobora|200004|3E200000|200E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|0001A900|0|8| +22|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0003|Gegehi Gehi|4|26CB0000|CB0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|73085|73085|5800|10000|||84.17|99.76|0.00|-0.49|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|0001A900|1|8| +22|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0005|Wuwuchu Wuchu|200004|3E280000|280E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.03|88.24|0.00|-2.05|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|0001A900|2|8| +22|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0008|Kokosaze Lulusaze|4|26530000|530E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||86.29|118.09|0.00|-0.22|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|0001A900|3|8| +22|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0002|Suchichi Suchi|4|252C0000|2C0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||112.96|97.29|0.00|-2.74|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|0001A900|4|8| +22|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0007|Kehabiqo Febiqo|4|25B30000|B30E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|99316|128564|10000|10000|||94.32|87.29|0.00|-2.94|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|0001A900|5|8| +22|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0004|Buhojaqe Zijaqe|4|25C00000|C00E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|80739|80739|8350|10000|||112.09|116.52|-0.02|0.01|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|0001A900|6|8| +22|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0001|Sesuga Sapisuga|4|255E0000|5E0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|127791|127791|7700|10000|||116.38|86.15|0.00|-2.24|80739|80739|6770|10000|||97.79|102.78|0.00|-0.72|0001A900|7|8| +21|2023-10-06T20:23:53.1770000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.03|88.24|0.00|-2.05|90055|90055|10000|10000|||99.03|88.24|0.00|-2.05|0001A901|0|1| +38|2023-10-06T20:23:53.1770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99316|128564|10000|10000|7||94.32|87.29|0.00|-2.94|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:53.1770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:23:53.1770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:23:53.1770000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|10||112.96|97.29|0.00|-2.74|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:53.1770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:23:53.1770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:23:53.1770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|32||86.29|118.09|0.00|-0.22|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:53.1770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:23:53.1770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:23:53.1770000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6770|10000|19||97.79|102.78|0.00|-0.72|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:23:53.1770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:23:53.1770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:23:53.1770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7700|10000|7||116.38|86.15|0.00|-2.24|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:53.1770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:23:53.1770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:23:53.1770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8350|10000|11||112.09|116.52|-0.02|0.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:53.1770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:23:53.1770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:23:53.1770000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5800|10000|13||84.17|99.76|0.00|-0.49|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:23:53.1770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:23:53.1770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:23:53.1770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|17||99.03|88.24|0.00|-2.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:53.1770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:23:53.1770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:23:53.1770000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:23:53.2190000-07:00|40022550|Zeromus|0001A8F7|27861843||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:53.2640000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27878589|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.03|88.24|0.00|-2.05|0001A902|0|1| +37|2023-10-06T20:23:53.3080000-07:00|40022550|Zeromus|0001A8FF|27861843|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004A9|0|41200000|| +26|2023-10-06T20:23:53.3080000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:23:53.3530000-07:00|10FF0006|Wowobora Gogobora|0001A8FE|80739|80739|7470|10000|19||97.23|103.19|0.00|-1.38|2800|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:23:53.3530000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:23:53.3530000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:23:53.3970000-07:00|40022550|Zeromus|0001A8FC|27846112||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:53.3970000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|14000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27861843|40478540|10000|10000|||100.00|80.10|0.00|0.00|99316|128564|10000|10000|||93.66|85.75|0.00|-2.94|0001A903|0|1| +37|2023-10-06T20:23:53.4850000-07:00|10FF0002|Suchichi Suchi|0001A8FE|90128|90128|10000|10000|10||113.38|96.97|0.00|-2.67|1601|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:23:53.4850000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:23:53.4850000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +21|2023-10-06T20:23:53.5310000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27846112|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7700|10000|||117.05|87.27|0.00|-2.24|0001A904|0|1| +31|2023-10-06T20:23:53.5310000-07:00|10FF0001||||| +37|2023-10-06T20:23:53.5750000-07:00|10FF0005|Wuwuchu Wuchu|0001A8FD|90055|90055|10000|10000|17||97.02|87.63|0.00|-1.98|2700|0|0|01|080004E2|0|C1200000|| +37|2023-10-06T20:23:53.6200000-07:00|10FF0007|Kehabiqo Febiqo|0001A8FE|99316|128564|10000|10000|7||92.94|85.11|0.00|-2.93|1502|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:23:53.6200000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:23:53.6200000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +24|2023-10-06T20:23:53.6640000-07:00|10FF0002|Suchichi Suchi|HoT|0|1429|90128|90128|10000|10000|||113.56|96.82|0.00|-2.63|10FF0003|Gegehi Gehi|0|73085|73085|5800|10000|||82.65|100.54|0.00|0.20| +38|2023-10-06T20:23:53.6640000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|10||113.56|96.82|0.00|-2.63|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:53.3220000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:23:53.7080000-07:00|10FF0005|Wuwuchu Wuchu|0001A901|90055|90055|10000|10000|17||96.71|86.14|0.00|-2.00|2700|0|0|01|080004E2|0|41200000|| +38|2023-10-06T20:23:53.7080000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|17||96.71|86.14|0.00|-2.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:53.7530000-07:00|10FF0005|Wuwuchu Wuchu|0001A8FE|90055|90055|10000|10000|17||96.71|86.14|0.00|-2.00|2703|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:23:53.7530000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:23:53.7530000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:23:53.7980000-07:00|40022550|Zeromus|0001A902|27842768||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:23:53.7980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|110.83|117.62|0.00|-0.84| +37|2023-10-06T20:23:53.8420000-07:00|10FF0006|Wowobora Gogobora|0001A900|80739|80739|7470|10000|19||96.66|105.62|0.00|1.99|2800|0|0|02|01000D25|0|41EB0416|||||| +261|2023-10-06T20:23:53.5150000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:23:53.8880000-07:00|10FF0003|Gegehi Gehi|0001A8FE|73085|73085|5800|10000|13||82.44|100.69|0.00|-0.60|2304|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:23:53.8880000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:23:53.8880000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:23:53.8880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8900|10000|11||110.61|117.74|0.00|-1.28|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:53.9310000-07:00|40022550|Zeromus|0001A903|27837648||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:53.9320000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C722003|395D0000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|27842768|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||113.62|96.75|0.00|-2.61|0001A905|0|1| +38|2023-10-06T20:23:53.9320000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|10||113.62|96.75|0.00|-2.61|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:53.9320000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:23:53.5150000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:23:53.5150000-07:00|Change|400227CD||||||||| +261|2023-10-06T20:23:53.6050000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:23:53.9770000-07:00|10FF0003|Gegehi Gehi|0001A900|73085|73085|5800|10000|13||82.14|99.14|0.00|0.60|2301|0|0|02|02000D25|0|41E9F3B3|||||| +24|2023-10-06T20:23:53.9770000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D00|90055|90055|10000|10000|||96.64|86.22|0.00|-2.01|10FF0003|Gegehi Gehi|0|73085|73085|5800|10000|||82.14|99.14|0.00|0.60| +38|2023-10-06T20:23:53.9770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|17||96.64|86.22|0.00|-2.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:54.0210000-07:00|10FF0008|Kokosaze Lulusaze|0001A8FE|79111|79111|9600|10000|32||87.10|118.45|0.00|1.39|1B05|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:23:54.0210000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:23:54.0210000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:23:54.0220000-07:00|40022814|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|152003|9AA30000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|27837648|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||88.78|114.69|0.00|2.78|0001A906|0|1| +24|2023-10-06T20:23:54.0220000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C93|80739|80739|7470|10000|||97.28|108.67|0.00|0.27|10FF0006|Wowobora Gogobora|0|80739|80739|7470|10000|||97.28|108.67|0.00|0.27| +38|2023-10-06T20:23:54.0220000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7470|10000|19||97.28|108.67|0.00|0.27|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:23:54.0670000-07:00|40022550|Zeromus|0001A904|27835920||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:54.0670000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|171F0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|27837648|40478540|10000|10000|||100.00|80.10|0.00|0.00|99316|128564|10000|10000|||88.69|84.41|0.00|-2.52|0001A907|0|1| +21|2023-10-06T20:23:54.0670000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|F900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27837648|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||113.63|96.73|0.00|-2.46|0001A908|0|1| +37|2023-10-06T20:23:54.1110000-07:00|10FF0005|Wuwuchu Wuchu|0001A900|90055|90055|10000|10000|17||96.64|86.22|0.00|-2.01|2702|0|0|02|05000D25|0|41E8DF38|||||| +37|2023-10-06T20:23:54.1560000-07:00|10FF0004|Buhojaqe Zijaqe|0001A8FE|80739|80739|8900|10000|11||110.21|117.98|0.00|-2.28|1C06|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:23:54.1560000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:23:54.1560000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:23:54.1560000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5800|10000|13||82.14|99.14|0.00|0.60|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:54.1560000-07:00|31|Medicated|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|2958|73085|73085| +37|2023-10-06T20:23:54.2450000-07:00|10FF0008|Kokosaze Lulusaze|0001A900|79111|79111|9600|10000|32||87.52|118.67|0.00|1.40|1B03|0|0|02|05000D25|0|41E7CABD|||||| +37|2023-10-06T20:23:54.2890000-07:00|10FF0001|Sesuga Sapisuga|0001A8FE|127791|127791|7700|10000|7||116.93|87.43|0.00|-2.24|1307|0|0|02|09000A3A|0|41700000|||||| +26|2023-10-06T20:23:54.2890000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:23:54.2890000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:23:54.3800000-07:00|10FF0002|Suchichi Suchi|0001A900|90128|90128|10000|10000|10||113.63|96.73|-0.02|-2.46|1604|0|0|03|02000D25|0|41E6BA5A|||||||||| +20|2023-10-06T20:23:54.4250000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|88.10|118.85|0.00|1.42| +21|2023-10-06T20:23:54.4250000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|29790000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27835920|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7700|10000|||116.93|87.43|0.00|-1.98|0001A909|0|1| +38|2023-10-06T20:23:54.4250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7700|10000|7||116.93|87.43|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:54.4250000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:23:54.4250000-07:00|76E|Sword Oath|27.99|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +37|2023-10-06T20:23:54.5130000-07:00|10FF0007|Kehabiqo Febiqo|0001A900|108967|128564|10000|10000|7||87.05|82.96|0.00|2.60|1505|0|0|02|05000D25|0|41E5A7EB|||||| +21|2023-10-06T20:23:54.5570000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|20E90000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|108967|128564|10000|10000|||86.78|82.72|0.00|3.04|77430|77430|10000|10000|||100.18|98.80|0.00|-3.03|0001A90A|0|1| +24|2023-10-06T20:23:54.5570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|C8E|108967|128564|10000|10000|||86.78|82.72|0.00|3.04|10FF0003|Gegehi Gehi|0|73085|73085|5800|10000|||81.72|98.09|0.00|2.08| +24|2023-10-06T20:23:54.5570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D0C|79111|79111|9600|10000|||88.29|118.90|0.00|1.78|10FF0006|Wowobora Gogobora|0|80739|80739|7470|10000|||96.98|112.45|0.00|0.03| +38|2023-10-06T20:23:54.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112181|128564|10000|10000|7||86.78|82.72|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:54.5570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|32||88.29|118.90|0.00|1.78|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:54.1590000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:23:54.6020000-07:00|40022550|Zeromus|0001A907|27830001||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:54.6020000-07:00|40022550|Zeromus|0001A908|27826017||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:54.6020000-07:00|10FF0002|Suchichi Suchi|0001A908|90128|90128|10000|10000|10||113.63|96.70|0.00|-2.47|1600|0|0|01|04000AA0|0|C1F00000|| +20|2023-10-06T20:23:54.6020000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|81.72|98.09|0.00|2.08| +261|2023-10-06T20:23:54.1590000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T20:23:54.6460000-07:00|10FF0004|Buhojaqe Zijaqe|0001A900|80739|80739|8900|10000|11||109.97|118.12|0.00|-2.88|1C06|0|0|02|03000D25|0|41E4957C|||||| +21|2023-10-06T20:23:54.6460000-07:00|4002256C|Zeromus|8BDE|Big Bang|10FF0004|Buhojaqe Zijaqe|550003|338C0000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|80739|80739|8900|10000|||109.97|118.12|0.00|-2.88|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A90B|0|1| +38|2023-10-06T20:23:54.6460000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8900|10000|11||109.97|118.12|0.00|-2.88|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:54.6460000-07:00|B7D|Magic Vulnerability Up|2.00|4002256C|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +261|2023-10-06T20:23:54.2560000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:23:54.2560000-07:00|Change|10FF0008||||||||||||||||||||| +21|2023-10-06T20:23:54.7360000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|34470000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27826017|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8900|10000|||109.97|118.12|0.00|-2.88|0001A90C|0|1| +21|2023-10-06T20:23:54.7360000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|3E880000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|27826017|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||94.48|87.73|0.00|-1.39|0001A90D|0|1| +38|2023-10-06T20:23:54.7360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|17||94.48|87.73|0.00|-1.39|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:54.7360000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:23:54.3530000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:23:54.7810000-07:00|10FF0001|Sesuga Sapisuga|0001A900|127791|127791|7700|10000|7||116.93|87.43|0.00|-1.98|1307|0|0|02|06000D25|0|41E3830D|||||| +21|2023-10-06T20:23:54.7810000-07:00|40022569|Zeromus|8BDE|Big Bang|10FF0002|Suchichi Suchi|550003|3AAF0000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||113.62|96.70|0.00|-2.50|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A90E|0|1| +20|2023-10-06T20:23:54.7810000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|96.86|113.40|-0.02|-0.01| +38|2023-10-06T20:23:54.7810000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|10||113.62|96.70|0.00|-2.50|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:54.7810000-07:00|B7D|Magic Vulnerability Up|2.00|40022569|Zeromus|10FF0002|Suchichi Suchi|00|90128|44| +261|2023-10-06T20:23:54.3530000-07:00|Change|40022569||||||||||||| +21|2023-10-06T20:23:54.8690000-07:00|40022566|Zeromus|8BDE|Big Bang|10FF0003|Gegehi Gehi|550003|30D00000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|73085|73085|5800|10000|||81.68|98.01|0.00|2.24|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A90F|0|1| +38|2023-10-06T20:23:54.8690000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5800|10000|13||81.68|98.01|0.00|2.24|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:54.8690000-07:00|B7D|Magic Vulnerability Up|2.00|40022566|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +261|2023-10-06T20:23:54.4530000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:23:54.4530000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:23:54.9590000-07:00|40022563|Zeromus|8BDE|Big Bang|10FF0006|Wowobora Gogobora|550003|19D60000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|80739|80739|7470|10000|||96.72|114.28|0.00|0.93|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A910|0|1| +38|2023-10-06T20:23:54.9590000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7470|10000|19||96.72|114.28|0.00|0.93|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:54.9590000-07:00|B7D|Magic Vulnerability Up|2.00|40022563|Zeromus|10FF0006|Wowobora Gogobora|00|80739|44| +261|2023-10-06T20:23:54.5520000-07:00|Change|40022563||||||||||||| +21|2023-10-06T20:23:55.0470000-07:00|40022560|Zeromus|8BDE|Big Bang|10FF0005|Wuwuchu Wuchu|550003|1BD50000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||93.91|88.20|0.00|2.49|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A911|0|1| +38|2023-10-06T20:23:55.0470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|17||93.91|88.20|0.00|2.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:55.0470000-07:00|B7D|Magic Vulnerability Up|2.00|40022560|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|44| +261|2023-10-06T20:23:54.5520000-07:00|Change|40022560||||||||||||| +39|2023-10-06T20:23:55.1360000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||113.41|96.39|0.00|-2.56| +39|2023-10-06T20:23:55.1810000-07:00|10FF0003|Gegehi Gehi|73085|73085|6000|10000|||81.68|98.01|0.00|2.34| +24|2023-10-06T20:23:55.1810000-07:00|40022550|Zeromus|DoT|0|3C0D|27826017|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|7700|10000|||116.93|87.43|0.00|-1.98| +21|2023-10-06T20:23:55.1810000-07:00|4002255D|Zeromus|8BDE|Big Bang|10FF0001|Sesuga Sapisuga|EC550005|8570000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|127791|127791|7700|10000|||116.93|87.43|0.00|-1.98|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A912|0|1| +38|2023-10-06T20:23:55.1810000-07:00|40022550|Zeromus|005A5A00|27810644|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:23:55.1810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7700|10000|7||116.93|87.43|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:55.1810000-07:00|B7D|Magic Vulnerability Up|2.00|4002255D|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|44| +261|2023-10-06T20:23:54.7790000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:23:54.7790000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:23:55.2250000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-2.53| +21|2023-10-06T20:23:55.2250000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|722003|57D10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27826017|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||113.41|96.39|0.00|-2.56|0001A913|0|1| +37|2023-10-06T20:23:55.2690000-07:00|10FF0004|Buhojaqe Zijaqe|0001A90B|67543|80739|8500|10000|0||110.00|118.12|0.00|1.81|1C00|0|0|02|03000000|0|0|||||| +37|2023-10-06T20:23:55.2690000-07:00|40022550|Zeromus|0001A90D|27794636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:55.2690000-07:00|10FF0005|Wuwuchu Wuchu|0001A90D|90055|90055|10000|10000|17||93.71|88.36|-0.01|2.49|2700|0|0|01|0C000A1F|0|41F00000|| +21|2023-10-06T20:23:55.2690000-07:00|4002255B|Zeromus|8BDE|Big Bang|10FF0008|Kokosaze Lulusaze|550003|0|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||88.85|119.04|0.00|2.86|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A914|0|1| +38|2023-10-06T20:23:55.2690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|32||88.85|119.04|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:55.2690000-07:00|B7D|Magic Vulnerability Up|2.00|4002255B|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|44| +38|2023-10-06T20:23:55.2690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|67543|80739|8500|10000|0||110.00|118.12|0.00|1.81|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.2690000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:23:55.2690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|17||93.71|88.36|-0.01|2.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:54.8910000-07:00|Change|4002255B||||||||||||| +36|2023-10-06T20:23:55.3130000-07:00|3034|3| +37|2023-10-06T20:23:55.3570000-07:00|10FF0007|Kehabiqo Febiqo|0001A90A|120606||||||86.17|82.17|0.00|-2.27| +39|2023-10-06T20:23:55.3570000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7900|10000|||116.93|87.43|0.00|-1.98| +39|2023-10-06T20:23:55.3570000-07:00|10FF0004|Buhojaqe Zijaqe|68350|80739|8700|10000|||110.19|118.15|0.00|1.77| +21|2023-10-06T20:23:55.3570000-07:00|40022559|Zeromus|8BDE|Big Bang|10FF0007|Kehabiqo Febiqo|550003|15560000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|112181|128564|10000|10000|||86.17|82.17|0.00|-2.27|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A915|0|1| +38|2023-10-06T20:23:55.3570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120606|128564|10000|10000|7||86.17|82.17|0.00|-2.27|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:55.3570000-07:00|B7D|Magic Vulnerability Up|2.00|40022559|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|44| +261|2023-10-06T20:23:54.8910000-07:00|Change|40022559||||||||||||| +261|2023-10-06T20:23:55.0100000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:23:55.4460000-07:00|10FF0002|Suchichi Suchi|0001A90E|75105|90128|10000|10000|0||113.39|96.36|0.00|-2.45|1600|0|0|03|02000000|0|0|||||||||| +39|2023-10-06T20:23:55.4460000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||93.71|88.36|0.00|2.49| +38|2023-10-06T20:23:55.4460000-07:00|10FF0002|Suchichi Suchi|005A5A16|75105|90128|10000|10000|0||113.39|96.36|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.4460000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +39|2023-10-06T20:23:55.4910000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7675|10000|||96.54|115.37|0.00|3.04| +37|2023-10-06T20:23:55.5350000-07:00|10FF0003|Gegehi Gehi|0001A90F|60589|73085|6000|10000|0||81.68|98.01|0.00|2.35|2300|0|0|02|02000000|0|0|||||| +37|2023-10-06T20:23:55.5350000-07:00|40022550|Zeromus|0001A90C|27781253||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:55.5350000-07:00|10FF0003|Gegehi Gehi|005A5A23|60589|73085|6000|10000|0||81.68|98.01|0.00|2.35|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.5350000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:23:55.5800000-07:00|40022550|Zeromus|0001A905|27766568||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:55.5800000-07:00|10FF0002|Suchichi Suchi|0001A905|75105|90128|10000|10000|0||113.39|96.36|0.00|-2.45|1600|0|0|01|04000AA0|0|41F00000|| +261|2023-10-06T20:23:55.1310000-07:00|Remove|400227CD| +38|2023-10-06T20:23:55.5800000-07:00|10FF0002|Suchichi Suchi|005A5A16|75105|90128|10000|10000|0||113.39|96.36|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||| +04|2023-10-06T20:23:55.2310000-07:00|400227CD|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||88.94|105.97|0.00|-0.43| +261|2023-10-06T20:23:55.2310000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:23:55.6240000-07:00|10FF0006|Wowobora Gogobora|0001A910|74125|80739|7675|10000|0||96.54|115.37|0.00|3.04|2800|0|0|02|01000000|0|0|||||| +21|2023-10-06T20:23:55.6240000-07:00|4002256D|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A916|0|0| +21|2023-10-06T20:23:55.6240000-07:00|4002256E|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A917|0|0| +38|2023-10-06T20:23:55.6240000-07:00|10FF0006|Wowobora Gogobora|005A5A28|74125|80739|7675|10000|0||96.54|115.37|0.00|3.04|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:55.6240000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:23:55.6240000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:23:55.2310000-07:00|Change|4002256E||||||||||| +261|2023-10-06T20:23:55.2310000-07:00|Change|4002256D||||||||||| +37|2023-10-06T20:23:55.7140000-07:00|10FF0005|Wuwuchu Wuchu|0001A911|82930|90055|10000|10000|0||93.71|88.36|0.00|2.49|2700|0|0|02|05000000|0|0|||||| +37|2023-10-06T20:23:55.7140000-07:00|40022550|Zeromus|0001A909|27755951||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:55.7140000-07:00|10FF0001|Sesuga Sapisuga|0001A909|127791|127791|8300|10000|7||116.93|87.43|0.00|-1.98|1300|0|0|0| +21|2023-10-06T20:23:55.7140000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36C80000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|27766568|40478540|10000|10000|||100.00|80.10|0.00|0.00|74125|80739|7675|10000|||96.54|115.37|0.00|3.04|0001A918|0|1| +38|2023-10-06T20:23:55.7140000-07:00|10FF0003|Gegehi Gehi|005A5A23|60589|73085|6000|10000|0||81.68|98.01|0.00|2.35|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.7140000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:23:55.7140000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82930|90055|10000|10000|0||93.71|88.36|0.00|2.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.7140000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:23:55.7580000-07:00|4002256A|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A919|0|0| +261|2023-10-06T20:23:55.3280000-07:00|Change|4002256B||||||||||| +21|2023-10-06T20:23:55.7580000-07:00|4002256B|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A91A|0|0| +261|2023-10-06T20:23:55.3280000-07:00|Change|4002256A||||||||||| +37|2023-10-06T20:23:55.8020000-07:00|10FF0001|Sesuga Sapisuga|0001A912|125656|127791|8300|10000|0||116.93|87.43|0.00|-1.98|1300|0|0|02|06000000|0|0|||||| +21|2023-10-06T20:23:55.8020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27755951|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8300|10000|||116.93|87.43|0.00|-1.98|0001A91B|0|1| +38|2023-10-06T20:23:55.8020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125656|127791|8300|10000|0||116.93|87.43|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.8020000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +31|2023-10-06T20:23:55.8020000-07:00|10FF0001||||| +21|2023-10-06T20:23:55.8470000-07:00|40022567|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A91C|0|0| +21|2023-10-06T20:23:55.8470000-07:00|40022568|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A91D|0|0| +38|2023-10-06T20:23:55.8470000-07:00|40022550|Zeromus|005A5A00|27755951|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:23:55.8470000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +38|2023-10-06T20:23:55.8470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125656|127791|8300|10000|0||116.93|87.43|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.8470000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|127791|73085| +261|2023-10-06T20:23:55.4210000-07:00|Change|40022568||||||||||| +261|2023-10-06T20:23:55.4210000-07:00|Change|40022567||||||||||| +37|2023-10-06T20:23:55.9370000-07:00|10FF0008|Kokosaze Lulusaze|0001A914|79111|79111|9600|10000|4||88.85|119.04|0.00|2.86|1B00|0|0|02|05000000|0|0|||||| +21|2023-10-06T20:23:55.9370000-07:00|40022564|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A91E|0|0| +21|2023-10-06T20:23:55.9370000-07:00|40022565|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A91F|0|0| +38|2023-10-06T20:23:55.9370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|4||88.85|119.04|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.9370000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:23:55.5150000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:23:55.5150000-07:00|Change|40022565||||||||||| +261|2023-10-06T20:23:55.5150000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:23:55.9810000-07:00|40022550|Zeromus|0001A906|27716364||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:55.9810000-07:00|40022550|Zeromus|0001A913|27693883||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:55.9810000-07:00|10FF0007|Kehabiqo Febiqo|0001A915|115144|128564|10000|10000|0||86.17|82.17|0.00|-2.27|1500|0|0|02|05000000|0|0|||||| +38|2023-10-06T20:23:55.9810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115144|128564|10000|10000|0||86.17|82.17|0.00|-2.27|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:55.9810000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:23:55.9810000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|128564|73085| +39|2023-10-06T20:23:56.0260000-07:00|10FF0007|Kehabiqo Febiqo|116429|128564|10000|10000|||86.17|82.17|0.00|-2.27| +39|2023-10-06T20:23:56.0260000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9800|10000|||88.85|119.04|0.00|2.86| +21|2023-10-06T20:23:56.0260000-07:00|40022561|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A920|0|0| +21|2023-10-06T20:23:56.0260000-07:00|40022562|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A921|0|0| +21|2023-10-06T20:23:56.0260000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|310E0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|27755951|40478540|10000|10000|||100.00|80.10|0.00|0.00|60589|73085|6000|10000|||81.68|98.01|0.00|2.35|0001A922|0|1| +38|2023-10-06T20:23:56.0260000-07:00|10FF0003|Gegehi Gehi|005A5A23|60589|73085|5800|10000|0||81.68|98.01|0.00|2.35|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:56.0260000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:23:56.0260000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:23:55.7070000-07:00|Change|40022561||||||||||| +38|2023-10-06T20:23:56.1150000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82930|90055|10000|10000|0||93.71|88.36|0.00|2.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:55.7070000-07:00|Change|40022562||||||||||| +30|2023-10-06T20:23:56.1150000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|90055|73085| +261|2023-10-06T20:23:55.7070000-07:00|Change|10FF0008||||||||||||| +261|2023-10-06T20:23:55.7070000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T20:23:56.1590000-07:00|4002255E|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A923|0|0| +21|2023-10-06T20:23:56.1590000-07:00|4002255F|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A924|0|0| +20|2023-10-06T20:23:56.2040000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|110.85|117.84|0.00|-2.90| +261|2023-10-06T20:23:55.8270000-07:00|Change|4002255E||||||||||| +21|2023-10-06T20:23:56.2490000-07:00|4002255C|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A925|0|0| +261|2023-10-06T20:23:55.8270000-07:00|Change|4002255F||||||||||| +21|2023-10-06T20:23:56.2490000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|452E0000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|27693883|40478540|10000|10000|||100.00|80.10|0.00|0.00|82930|90055|10000|10000|||93.71|88.36|0.00|2.49|0001A926|0|1| +38|2023-10-06T20:23:56.2490000-07:00|40022666|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.18|98.80|0.00|-3.13|0|0|0|||| +30|2023-10-06T20:23:56.2490000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022666|Ruby Carbuncle|00|77430|73085| +38|2023-10-06T20:23:56.2490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|68350|80739|8700|10000|0||110.82|117.76|-0.02|-2.85|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:56.2490000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|80739|73085| +38|2023-10-06T20:23:56.2490000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82930|90055|10000|10000|0||93.71|88.36|0.00|2.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:56.2490000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:23:56.2490000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:23:55.8270000-07:00|Change|4002255C||||||||||| +261|2023-10-06T20:23:55.9390000-07:00|Change|10FF0001||| +37|2023-10-06T20:23:56.3380000-07:00|40022550|Zeromus|0001A91B|27690981||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:56.3380000-07:00|4002255A|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A927|0|0| +24|2023-10-06T20:23:56.3830000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2244|125656|127791|8300|10000|||116.93|87.43|0.00|-1.98|10FF0006|Wowobora Gogobora|1|74125|80739|7275|10000|||96.54|115.37|0.00|3.04| +37|2023-10-06T20:23:56.3830000-07:00|40022550|Zeromus|0001A918|27676957||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:56.3830000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|74125|80739|7275|10000|||96.54|115.37|0.00|3.04|74125|80739|7275|10000|||96.54|115.37|0.00|3.04|0001A928|0|1| +38|2023-10-06T20:23:56.3830000-07:00|40022814|Ruby Ifrit|005A5A00|0|75851|10000|10000|0||88.78|114.69|0.00|2.78|0|0|0|||| +30|2023-10-06T20:23:56.3830000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022814|Ruby Ifrit|00|75851|73085| +38|2023-10-06T20:23:56.3830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9800|10000|4||88.85|119.04|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:56.3830000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|79111|73085| +38|2023-10-06T20:23:56.3830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8300|10000|0||116.93|87.43|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:55.9390000-07:00|Change|4002255A||||||||||| +21|2023-10-06T20:23:56.4270000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|2A600000|176B0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|27693883|40478540|10000|10000|||100.00|80.10|0.00|0.00|75105|90128|10000|10000|||113.39|96.36|0.00|-2.45|0001A929|0|1| +21|2023-10-06T20:23:56.4280000-07:00|40022558|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A92A|0|0| +38|2023-10-06T20:23:56.4280000-07:00|10FF0002|Suchichi Suchi|005A5A16|75105|90128|10000|10000|0||113.39|96.36|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:56.4280000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:23:56.4720000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27676957|40478540|10000|10000|||100.00|80.10|0.00|0.00|82930|90055|10000|10000|||93.71|88.36|0.00|2.49|0001A92B|0|1| +261|2023-10-06T20:23:56.1750000-07:00|Change|40022558||||||||||| +21|2023-10-06T20:23:56.5170000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|21650000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|27676957|40478540|10000|10000|||100.00|80.10|0.00|0.00|116429|128564|10000|10000|||86.17|82.17|0.00|-2.27|0001A92C|0|1| +38|2023-10-06T20:23:56.5170000-07:00|10FF0006|Wowobora Gogobora|005A5A28|74125|80739|7275|10000|0||96.54|115.37|0.00|3.04|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:56.5170000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|80739|73085| +261|2023-10-06T20:23:56.1750000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T20:23:56.5610000-07:00|40022557|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A92D|0|0| +24|2023-10-06T20:23:56.6500000-07:00|10FF0002|Suchichi Suchi|HoT|0|D4E|75105|90128|10000|10000|||113.39|96.36|0.00|-2.45|10FF0003|Gegehi Gehi|0|60589|73085|5800|10000|||81.68|98.01|0.00|2.35| +21|2023-10-06T20:23:56.6510000-07:00|40022556|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A92E|0|0| +38|2023-10-06T20:23:56.6510000-07:00|10FF0002|Suchichi Suchi|005A5A16|78511|90128|10000|10000|0||113.39|96.36|0.00|-2.45|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:56.6510000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|90128|73085| +38|2023-10-06T20:23:56.6510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|68350|80739|8700|10000|0||110.78|117.62|0.00|-2.86|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:56.6510000-07:00|B7D|Magic Vulnerability Up|0.00|4002256C|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +261|2023-10-06T20:23:56.2740000-07:00|Change|40022556||||||||||| +261|2023-10-06T20:23:56.2740000-07:00|Change|40022557||||||||||| +24|2023-10-06T20:23:56.6950000-07:00|10FF0003|Gegehi Gehi|HoT|0|CE3|60589|73085|5800|10000|||81.68|98.01|0.00|2.35|10FF0006|Wowobora Gogobora|0|74125|80739|7275|10000|||96.54|115.37|0.00|3.04| +21|2023-10-06T20:23:56.6950000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|154003|5FE80000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|27676957|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9800|10000|||88.85|119.04|0.00|2.86|0001A92F|0|1| +38|2023-10-06T20:23:56.6950000-07:00|10FF0003|Gegehi Gehi|005A5A23|63888|73085|5800|10000|0||81.68|98.01|0.00|2.35|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:23:56.7390000-07:00|40022555|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A930|0|0| +21|2023-10-06T20:23:56.7850000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BC80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27676957|40478540|10000|10000|||100.00|80.10|0.00|0.00|116429|128564|10000|10000|||86.17|82.17|0.00|1.72|0001A931|0|1| +38|2023-10-06T20:23:56.7850000-07:00|10FF0002|Suchichi Suchi|005A5A16|78511|90128|10000|10000|0||113.39|96.36|0.00|-2.45|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:23:56.7850000-07:00|B7D|Magic Vulnerability Up|0.00|40022569|Zeromus|10FF0002|Suchichi Suchi|00|90128|44| +261|2023-10-06T20:23:56.3730000-07:00|Change|40022555||||||||||| +37|2023-10-06T20:23:56.8290000-07:00|40022550|Zeromus|0001A922|27664399||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:56.8730000-07:00|40022550|Zeromus|0001A929|27653551|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:23:56.8730000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:23:56.8730000-07:00|10FF0002|Suchichi Suchi|0001A929|78511|90128|10000|10000|0||113.39|96.36|0.00|-2.45|1600|0|0|01|02000323|0|41F00000|| +37|2023-10-06T20:23:56.8730000-07:00|40022550|Zeromus|0001A926|27635841||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:56.8730000-07:00|10FF0005|Wuwuchu Wuchu|0001A926|82930|90055|10000|10000|0||93.71|88.36|0.00|2.49|2700|0|0|01|05000A1E|0|41F00000|| +24|2023-10-06T20:23:56.8740000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|CDF|127791|127791|8300|10000|||116.93|87.43|0.00|-1.98|4002255D|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +24|2023-10-06T20:23:56.8740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|15E2|68350|80739|8700|10000|||110.77|117.57|0.00|-2.86|10FF0006|Wowobora Gogobora|0|74125|80739|7275|10000|||96.54|115.34|0.00|3.10| +21|2023-10-06T20:23:56.8740000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|17460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27676957|40478540|10000|10000|||100.00|80.10|0.00|0.00|78511|90128|10000|10000|||113.39|96.36|0.00|-2.45|0001A932|0|1| +38|2023-10-06T20:23:56.8740000-07:00|10FF0002|Suchichi Suchi|005A5A16|78511|90128|10000|10000|0||113.39|96.36|0.00|-2.45|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:23:56.8740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8300|10000|0||116.93|87.43|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:56.8740000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:23:56.8740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73952|80739|9250|10000|0||110.77|117.57|0.00|-2.86|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:56.8740000-07:00|10FF0003|Gegehi Gehi|005A5A23|63888|73085|5800|10000|0||81.75|98.04|0.00|1.83|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:56.8740000-07:00|B7D|Magic Vulnerability Up|0.00|40022566|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +38|2023-10-06T20:23:56.8740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82930|90055|10000|10000|0||93.71|88.36|0.00|2.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:23:56.9180000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|28030000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27676957|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8300|10000|||116.93|87.43|0.00|-1.98|0001A933|0|1| +38|2023-10-06T20:23:56.9180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8300|10000|0||116.93|87.43|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:56.9180000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:23:56.4710000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T20:23:56.9630000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|150D|82930|90055|10000|10000|||93.71|88.36|0.00|2.49|40022560|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T20:23:56.9630000-07:00|10FF0006|Wowobora Gogobora|005A5A28|74125|80739|7275|10000|0||96.54|115.27|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:56.9630000-07:00|B7D|Magic Vulnerability Up|0.00|40022563|Zeromus|10FF0006|Wowobora Gogobora|00|80739|44| +38|2023-10-06T20:23:56.9630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88319|90055|10000|10000|0||93.71|88.36|0.00|2.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:23:57.0080000-07:00|10FF0006|Wowobora Gogobora|0001A928|74125|80739|7275|10000|0||96.54|115.27|0.00|3.12|2800|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T20:23:57.0080000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:23:57.0080000-07:00|40022550|Zeromus|0001A92B|27632512||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:57.0080000-07:00|10FF0006|Wowobora Gogobora|HoT|0|15A6|74125|80739|7275|10000|||96.54|115.27|0.00|3.12|10FF0006|Wowobora Gogobora|0|74125|80739|7275|10000|||96.54|115.27|0.00|3.12| +38|2023-10-06T20:23:57.0080000-07:00|10FF0006|Wowobora Gogobora|005A5A28|79667|80739|7825|10000|0||96.54|115.27|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:23:57.0520000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|354003|42730000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|27632512|40478540|10000|10000|||100.00|80.10|0.00|0.00|63888|73085|5800|10000|||82.60|98.29|0.00|1.49|0001A934|0|1| +38|2023-10-06T20:23:57.0520000-07:00|10FF0003|Gegehi Gehi|005A5A23|63888|73085|5500|10000|0||82.60|98.29|0.00|1.49|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:57.0520000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:23:57.0520000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88319|90055|10000|10000|0||93.71|88.36|0.00|2.49|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:57.0520000-07:00|B7D|Magic Vulnerability Up|0.00|40022560|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|44| +37|2023-10-06T20:23:57.1420000-07:00|40022550|Zeromus|0001A92C|27623963||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:57.1420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|50E40000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27632512|40478540|10000|10000|||100.00|80.10|0.00|0.00|73952|80739|9250|10000|||110.77|117.57|0.00|-2.86|0001A935|0|1| +261|2023-10-06T20:23:56.6890000-07:00|Change|10FF0008||||||||||||||| +20|2023-10-06T20:23:57.1870000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|96.54|115.08|0.00|3.13| +38|2023-10-06T20:23:57.1870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8300|10000|0||116.93|87.43|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:57.1870000-07:00|B7D|Magic Vulnerability Up|0.00|4002255D|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|44| +261|2023-10-06T20:23:56.7990000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T20:23:57.2750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|4||88.85|119.04|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:57.2750000-07:00|B7D|Magic Vulnerability Up|0.00|4002255B|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|44| +37|2023-10-06T20:23:57.3190000-07:00|40022550|Zeromus|0001A931|27620947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:57.3190000-07:00|40022550|Zeromus|0001A92F|27596395||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:57.3640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116429|128564|10000|10000|0||86.17|82.17|0.00|1.72|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:57.3640000-07:00|B7D|Magic Vulnerability Up|0.00|40022559|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|44| +37|2023-10-06T20:23:57.4080000-07:00|40022550|Zeromus|0001A932|27590437||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:57.5420000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CE7|116429|128564|10000|10000|||86.17|82.17|0.00|1.72|10FF0006|Wowobora Gogobora|0|79667|80739|7825|10000|||96.54|115.00|0.00|3.07| +24|2023-10-06T20:23:57.5420000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|14FF|79111|79111|9500|10000|||88.85|119.04|0.00|2.86|10FF0006|Wowobora Gogobora|0|79667|80739|7825|10000|||96.54|115.00|0.00|3.07| +38|2023-10-06T20:23:57.5420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119732|128564|10000|10000|0||86.17|82.17|0.00|1.72|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:57.5420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|4||88.85|119.04|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:57.2330000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:23:57.7640000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|152003|72110000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|27590437|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||88.85|119.04|0.00|2.86|0001A936|0|1| +21|2023-10-06T20:23:57.7640000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|46520000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|27590437|40478540|10000|10000|||100.00|80.10|0.00|0.00|88319|90055|10000|10000|||93.71|88.36|0.00|2.49|0001A937|0|1| +38|2023-10-06T20:23:57.7640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|4||88.85|119.04|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:57.7640000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:23:57.7640000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88319|90055|10000|10000|0||93.71|88.36|0.00|2.49|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:57.7640000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:23:57.7640000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:23:57.8090000-07:00|40022550|Zeromus|0001A934|27573426||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:57.8090000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|200004|228A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|88319|90055|10000|10000|||93.71|88.36|0.00|2.49|77430|77430|10000|10000|||100.18|98.80|0.00|-3.13|0001A938|0|1| +21|2023-10-06T20:23:57.8090000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|42AC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27590437|40478540|10000|10000|||100.00|80.10|0.00|0.00|63888|73085|5500|10000|||85.29|98.89|0.00|2.11|0001A939|0|1| +37|2023-10-06T20:23:57.9440000-07:00|40022550|Zeromus|0001A935|27552718||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:57.9880000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27573426|40478540|10000|10000|||100.00|80.10|0.00|0.00|63888|73085|5500|10000|||87.35|99.18|0.00|2.66|0001A93A|0|1| +261|2023-10-06T20:23:57.5250000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T20:23:58.0780000-07:00|4002281D||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:23:58.0780000-07:00|10FF0002|Suchichi Suchi|1D7D|Feint|40022550|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27552718|40478540|10000|10000|||100.00|80.10|0.00|0.00|78511|90128|10000|10000|||109.61|97.96|0.00|-2.49|0001A93B|0|1| +21|2023-10-06T20:23:58.0780000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27552718|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8300|10000|||116.88|87.45|0.00|-1.96|0001A93C|0|1| +38|2023-10-06T20:23:58.0780000-07:00|4002281D||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +31|2023-10-06T20:23:58.0780000-07:00|10FF0001||||| +261|2023-10-06T20:23:57.6210000-07:00|Change|40022814||||| +261|2023-10-06T20:23:57.6210000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:23:58.1220000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|570B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|27552718|40478540|10000|10000|||100.00|80.10|0.00|0.00|79667|80739|7825|10000|||96.54|114.98|0.00|3.04|0001A93D|0|1| +39|2023-10-06T20:23:58.1660000-07:00|10FF0002|Suchichi Suchi|79412|90128|10000|10000|||108.70|97.84|0.00|-2.69| +37|2023-10-06T20:23:58.2110000-07:00|40022550|Zeromus|0001A933|27542475||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:58.2110000-07:00|10FF0001|Sesuga Sapisuga|0001A933|127791|127791|8700|10000|0||116.49|87.61|0.00|-1.96|1300|0|0|0| +39|2023-10-06T20:23:58.2110000-07:00|10FF0003|Gegehi Gehi|64618|73085|5700|10000|||88.80|99.36|0.00|2.66| +24|2023-10-06T20:23:58.2110000-07:00|40022550|Zeromus|DoT|0|3139|27552718|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|127791|127791|8300|10000|||116.49|87.61|0.00|-1.96| +38|2023-10-06T20:23:58.2110000-07:00|40022550|Zeromus|005A5A00|27529874|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:23:57.7330000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:57.7330000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:23:58.2550000-07:00|40022666|Ruby Carbuncle|77430|77430|10000|10000|||100.18|98.80|0.00|-2.75| +37|2023-10-06T20:23:58.2990000-07:00|40022550|Zeromus|0001A937|27511872||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:58.2990000-07:00|10FF0005|Wuwuchu Wuchu|0001A937|88319|90055|10000|10000|0||93.90|89.30|0.00|1.72|2700|0|0|01|05000A1F|0|41F00000|| +38|2023-10-06T20:23:58.2990000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88319|90055|10000|10000|0||93.90|89.30|0.00|1.72|0|0|0||||||||||||||||||||||||||||||||||||| +36|2023-10-06T20:23:58.3440000-07:00|3110|3| +39|2023-10-06T20:23:58.3890000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8900|10000|||115.04|88.25|0.00|-1.91| +39|2023-10-06T20:23:58.3890000-07:00|10FF0004|Buhojaqe Zijaqe|74759|80739|9050|10000|||106.87|112.28|0.00|-2.58| +261|2023-10-06T20:23:57.9620000-07:00|Add|4002281D||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:23:57.9620000-07:00|4002281D|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||89.36|117.31|0.00|-0.28| +261|2023-10-06T20:23:57.9620000-07:00|Change|10FF0008||||||||| +22|2023-10-06T20:23:58.4340000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F200F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|73952|80739|8850|10000|||106.87|112.28|0.00|-2.58|73952|80739|8850|10000|||106.87|112.28|0.00|-2.58|0001A93E|0|1| +38|2023-10-06T20:23:58.4340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74759|80739|9050|10000|0||106.87|112.28|0.00|-2.58|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:58.4340000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +261|2023-10-06T20:23:58.0810000-07:00|Change|4002281D||| +39|2023-10-06T20:23:58.4770000-07:00|10FF0005|Wuwuchu Wuchu|89219|90055|10000|10000|||94.09|90.21|0.00|0.96| +37|2023-10-06T20:23:58.5220000-07:00|40022550|Zeromus|0001A93A|27511832||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:23:58.5220000-07:00|10FF0006|Wowobora Gogobora|80474|80739|7630|10000|||96.54|114.96|0.00|3.05| +37|2023-10-06T20:23:58.6110000-07:00|40022550|Zeromus|0001A93B|27511832|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004AB|0|41200000|| +26|2023-10-06T20:23:58.6110000-07:00|4AB|Feint|10.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +261|2023-10-06T20:23:58.1930000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:23:58.6110000-07:00|10FF0005|Wuwuchu Wuchu|0001A938|90055||||||94.43|91.82|0.00|-0.40| +37|2023-10-06T20:23:58.6110000-07:00|40022550|Zeromus|0001A936|27482631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:58.6110000-07:00|40022550|Zeromus|0001A93C|27480958||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:23:58.1930000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:23:58.3220000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:23:58.3220000-07:00|Change|10FF0005||||||||| +24|2023-10-06T20:23:58.7900000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|14E5|127791|127791|8900|10000|||112.75|89.38|0.00|-1.90|10FF0006|Wowobora Gogobora|0|80474|80739|7630|10000|||96.54|114.93|0.00|3.06| +37|2023-10-06T20:23:58.7900000-07:00|40022550|Zeromus|0001A93D|27458675||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:23:58.7900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8900|10000|0||112.75|89.38|0.00|-1.90|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:23:58.8350000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27458675|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||94.35|99.81|0.00|2.86|0001A93F|0|1| +261|2023-10-06T20:23:58.4780000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:23:58.4780000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:23:58.9240000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|724003|17A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27458675|40478540|10000|10000|||100.00|80.10|0.00|0.00|64618|73085|5700|10000|||95.66|100.92|0.00|1.97|0001A940|0|1| +37|2023-10-06T20:23:58.9680000-07:00|40022550|Zeromus|0001A939|27441607||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:58.9680000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|31BC0000|143E|340000|4|182D8000|11B|2A8000|0|0|0|0|0|0|0|0|27458675|40478540|10000|10000|||100.00|80.10|0.00|0.00|119732|128564|10000|10000|||90.21|88.72|0.00|0.75|0001A941|0|1| +21|2023-10-06T20:23:58.9680000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|27890000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|27458675|40478540|10000|10000|||100.00|80.10|0.00|0.00|79412|90128|10000|10000|||104.54|97.36|0.00|-2.52|0001A942|0|1| +21|2023-10-06T20:23:58.9680000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|712003|356A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27458675|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||94.34|94.06|0.00|0.00|0001A943|0|1| +38|2023-10-06T20:23:58.9680000-07:00|10FF0002|Suchichi Suchi|005A5A16|79412|90128|10000|10000|0||104.54|97.36|0.00|-2.52|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:23:58.9680000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:23:58.9680000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +20|2023-10-06T20:23:59.0120000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|104.39|108.27|0.00|-2.58| +24|2023-10-06T20:23:59.0570000-07:00|10FF0002|Suchichi Suchi|HoT|798|1514|79412|90128|10000|10000|||103.59|97.26|0.00|-3.02|10FF0004|Buhojaqe Zijaqe|0|74759|80739|9050|10000|||104.09|107.83|0.00|-2.62| +24|2023-10-06T20:23:59.0570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CD3|79111|79111|9500|10000|||94.88|99.95|0.00|2.60|10FF0004|Buhojaqe Zijaqe|0|74759|80739|9050|10000|||104.09|107.83|0.00|-2.62| +24|2023-10-06T20:23:59.0570000-07:00|10FF0003|Gegehi Gehi|HoT|798|D79|64618|73085|5700|10000|||95.94|101.07|0.00|3.00|10FF0004|Buhojaqe Zijaqe|0|74759|80739|9050|10000|||104.09|107.83|0.00|-2.62| +24|2023-10-06T20:23:59.0570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D2B|74759|80739|9050|10000|||104.09|107.83|0.00|-2.62|10FF0004|Buhojaqe Zijaqe|0|74759|80739|9050|10000|||104.09|107.83|0.00|-2.62| +24|2023-10-06T20:23:59.0570000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|CE9|90055|90055|10000|10000|||94.69|94.38|-0.02|2.76|10FF0004|Buhojaqe Zijaqe|0|74759|80739|9050|10000|||104.09|107.83|0.00|-2.62| +24|2023-10-06T20:23:59.0570000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D78|80474|80739|7630|10000|||97.06|111.63|0.00|2.99|10FF0004|Buhojaqe Zijaqe|0|74759|80739|9050|10000|||104.09|107.83|0.00|-2.62| +24|2023-10-06T20:23:59.0570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|CBF|119732|128564|10000|10000|||90.70|89.44|0.00|2.34|10FF0004|Buhojaqe Zijaqe|0|74759|80739|9050|10000|||104.09|107.83|0.00|-2.62| +37|2023-10-06T20:23:59.0570000-07:00|10FF0004|Buhojaqe Zijaqe|0001A93E|78130|80739|9050|10000|0||104.09|107.83|0.00|-2.62|1C00|0|0|02|03000798|0|41700000|||||| +26|2023-10-06T20:23:59.0570000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:23:59.0570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:23:59.0570000-07:00|10FF0007|Kehabiqo Febiqo|124280|128564|10000|10000|||90.70|89.44|0.00|2.34| +39|2023-10-06T20:23:59.0570000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9700|10000|||94.88|99.95|0.00|2.60| +38|2023-10-06T20:23:59.0570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124280|128564|10000|10000|0||90.70|89.44|0.00|2.34|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:59.0570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:23:59.0570000-07:00|10FF0002|Suchichi Suchi|005A5A16|84808|90128|10000|10000|0||103.59|97.26|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:59.0570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:23:59.0570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|4||94.88|99.95|0.00|2.60|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:59.0570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:23:59.0570000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7630|10000|0||97.06|111.63|0.00|2.99|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:23:59.0570000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:23:59.0570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:23:59.0570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|78130|80739|9050|10000|0||104.09|107.83|0.00|-2.62|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:59.0570000-07:00|10FF0003|Gegehi Gehi|005A5A23|68067|73085|5700|10000|0||95.94|101.07|0.00|3.00|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:59.0570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:23:59.0570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||94.69|94.38|-0.02|2.76|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:59.0570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +34|2023-10-06T20:23:59.1020000-07:00|4002281D|Carbuncle|4002281D|Carbuncle|01| +261|2023-10-06T20:23:58.6880000-07:00|Change|4002281D||||||||| +261|2023-10-06T20:23:58.8040000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:23:58.8040000-07:00|Add|40022820||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:58.9200000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:23:59.3690000-07:00|40022550|Zeromus|0001A93F|27441426||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:59.4140000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|277F0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27441426|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||108.00|91.70|0.00|-1.91|0001A944|0|1| +38|2023-10-06T20:23:59.4140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8900|10000|0||108.00|91.70|0.00|-1.91|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:59.4140000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:23:59.4140000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:23:59.0350000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:23:59.1470000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:23:59.5470000-07:00|40022550|Zeromus|0001A940|27435373||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:23:59.5920000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|720003|235D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27441426|40478540|10000|10000|||100.00|80.10|0.00|0.00|84808|90128|10000|10000|||101.66|98.60|0.00|-2.93|0001A945|0|1| +37|2023-10-06T20:23:59.6360000-07:00|40022550|Zeromus|0001A942|27425252||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:23:59.6360000-07:00|10FF0002|Suchichi Suchi|0001A942|84808|90128|10000|10000|0||101.24|99.08|0.00|-3.11|1600|0|0|01|08000322|0|41F00000|| +24|2023-10-06T20:23:59.6360000-07:00|10FF0002|Suchichi Suchi|HoT|0|CA8|84808|90128|10000|10000|||101.24|99.08|0.00|-3.11|10FF0002|Suchichi Suchi|0|84808|90128|10000|10000|||101.24|99.08|0.00|-3.11| +261|2023-10-06T20:23:59.2430000-07:00|Change|10FF0004||||||||||||||||||||| +22|2023-10-06T20:23:59.6370000-07:00|40022550|Zeromus|8B4C|Big Bang|10FF0001|Sesuga Sapisuga|750003|49560000|E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|127791|127791|8900|10000|||106.54|92.40|0.00|-1.91|27435373|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A946|0|8| +22|2023-10-06T20:23:59.6370000-07:00|40022550|Zeromus|8B4C|Big Bang|10FF0007|Kehabiqo Febiqo|750003|43630000|9A0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|124280|128564|10000|10000|||92.97|92.65|0.00|0.82|27435373|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A946|1|8| +22|2023-10-06T20:23:59.6370000-07:00|40022550|Zeromus|8B4C|Big Bang|10FF0005|Wuwuchu Wuchu|750003|68EE0000|9A0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||95.63|95.17|0.00|2.86|27435373|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A946|2|8| +22|2023-10-06T20:23:59.6370000-07:00|40022550|Zeromus|8B4C|Big Bang|10FF0002|Suchichi Suchi|750003|709E0000|9A0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|84808|90128|10000|10000|||101.24|99.08|0.00|-3.11|27435373|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A946|3|8| +22|2023-10-06T20:23:59.6370000-07:00|40022550|Zeromus|8B4C|Big Bang|10FF0003|Gegehi Gehi|750003|69EB0000|470E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|68067|73085|5700|10000|||96.44|100.27|0.00|3.00|27435373|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A946|4|8| +22|2023-10-06T20:23:59.6370000-07:00|40022550|Zeromus|8B4C|Big Bang|10FF0008|Kokosaze Lulusaze|750003|5AA70000|470E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|79111|79111|9700|10000|||98.83|100.79|0.00|1.60|27435373|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A946|5|8| +22|2023-10-06T20:23:59.6370000-07:00|40022550|Zeromus|8B4C|Big Bang|10FF0006|Wowobora Gogobora|750003|660F0000|50E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|80739|80739|7630|10000|||97.78|107.84|-0.02|2.96|27435373|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A946|6|8| +22|2023-10-06T20:23:59.6370000-07:00|40022550|Zeromus|8B4C|Big Bang|10FF0004|Buhojaqe Zijaqe|750003|68110000|50E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01|27435373|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A946|7|8| +20|2023-10-06T20:23:59.6370000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|97.78|107.84|-0.02|2.96| +38|2023-10-06T20:23:59.6370000-07:00|10FF0002|Suchichi Suchi|005A5A16|88048|90128|10000|10000|0||101.24|99.08|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:23:59.2430000-07:00|Change|40022550||||||||||||| +00|2023-10-06T20:23:59.0000000-07:00|0044|Zeromus|Coalesce and consume creation!| +37|2023-10-06T20:23:59.6810000-07:00|40022550|Zeromus|0001A943|27411578||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:23:59.6810000-07:00|10FF0003|Gegehi Gehi|HoT|0|14E6|68067|73085|5700|10000|||96.64|100.30|0.00|2.86|10FF0006|Wowobora Gogobora|0|80739|80739|7630|10000|||97.81|107.65|0.00|2.98| +21|2023-10-06T20:23:59.6810000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|DF10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27425252|40478540|10000|10000|||100.00|80.10|0.00|0.00|88048|90128|10000|10000|||101.01|99.36|0.00|-3.11|0001A947|0|1| +21|2023-10-06T20:23:59.6810000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27425252|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||95.63|95.17|0.00|2.86|0001A948|0|1| +38|2023-10-06T20:23:59.6810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5700|10000|0||96.64|100.30|0.00|2.86|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:23:59.7260000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|714003|54750000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|27425252|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||95.63|95.17|0.00|2.86|0001A949|0|1| +38|2023-10-06T20:23:59.7260000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:23:59.7260000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:23:59.7260000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:23:59.4460000-07:00|Change|4002281D||||||||| +24|2023-10-06T20:23:59.8590000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D38|127791|127791|8900|10000|||104.97|93.15|0.00|-1.91|10FF0006|Wowobora Gogobora|0|80739|80739|7630|10000|||97.83|107.46|0.00|3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D69|79111|79111|9700|10000|||99.90|100.97|-0.01|1.51|10FF0004|Buhojaqe Zijaqe|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0002|Suchichi Suchi|HoT|798|D2F|88048|90128|10000|10000|||100.87|99.52|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0003|Gegehi Gehi|HoT|798|CBC|73085|73085|5700|10000|||97.03|100.33|0.00|2.71|10FF0004|Buhojaqe Zijaqe|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1560|80739|80739|7630|10000|||97.83|107.46|0.00|3.01|10FF0004|Buhojaqe Zijaqe|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|150C|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01|10FF0004|Buhojaqe Zijaqe|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D5B|90055|90055|10000|10000|||95.63|95.17|0.00|2.86|10FF0004|Buhojaqe Zijaqe|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D54|124280|128564|10000|10000|||93.93|94.00|0.00|0.70|10FF0004|Buhojaqe Zijaqe|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CD3|127791|127791|8900|10000|||104.97|93.15|0.00|-1.91|10FF0004|Buhojaqe Zijaqe|0|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01| +24|2023-10-06T20:23:59.8590000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|14C6|78130|80739|9050|10000|||103.72|107.35|0.00|-3.01|10FF0006|Wowobora Gogobora|0|80739|80739|7630|10000|||97.83|107.46|0.00|3.01| +38|2023-10-06T20:23:59.8590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127692|128564|10000|10000|0||93.93|94.00|0.00|0.70|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:59.8590000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.87|99.52|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:59.8590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|4||99.90|100.97|-0.01|1.51|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:59.8590000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7630|10000|0||97.83|107.46|0.00|3.01|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:23:59.8590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8900|10000|0||104.97|93.15|0.00|-1.91|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:23:59.8590000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:23:59.8590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9600|10000|0||103.72|107.35|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:59.8590000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5700|10000|0||97.03|100.33|0.00|2.71|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:23:59.8590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:59.4460000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:23:59.9480000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1611|90055|90055|10000|10000|||95.63|95.17|0.00|2.86|10FF0004|Buhojaqe Zijaqe|0|80739|80739|9600|10000|||103.72|107.35|0.00|-3.01| +21|2023-10-06T20:23:59.9480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4BC30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27411578|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|9600|10000|||103.72|107.35|0.00|-3.01|0001A94A|0|1| +20|2023-10-06T20:23:59.9480000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|97.60|100.36|0.00|2.59| +38|2023-10-06T20:23:59.9480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:23:59.5420000-07:00|Change|10FF0003||||||||||||||||||||| +24|2023-10-06T20:23:59.9920000-07:00|10FF0006|Wowobora Gogobora|HoT|0|CAF|80739|80739|7630|10000|||97.86|107.29|0.00|3.03|10FF0006|Wowobora Gogobora|0|80739|80739|7630|10000|||97.86|107.29|0.00|3.03| +38|2023-10-06T20:23:59.9920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|8180|10000|0||97.86|107.29|0.00|3.03|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:24:00.1690000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|DE20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27411578|40478540|10000|10000|||100.00|80.10|0.00|0.00|127692|128564|10000|10000|||95.35|95.99|0.00|0.63|0001A94B|0|1| +261|2023-10-06T20:23:59.8550000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:23:59.8550000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:24:00.2150000-07:00|40022550|Zeromus|0001A947|27408009||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:00.2150000-07:00|40022550|Zeromus|0001A948|27404812||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:00.2150000-07:00|10FF0005|Wuwuchu Wuchu|0001A948|90055|90055|10000|10000|0||95.63|95.17|0.00|2.86|2700|0|0|01|05000A1E|0|C1F00000|| +21|2023-10-06T20:24:00.2150000-07:00|10FF0008|Kokosaze Lulusaze|651D|Crimson Strike|40022550|Zeromus|152003|72620000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|27374138|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||99.90|100.97|0.00|3.14|0001A94C|0|1| +38|2023-10-06T20:24:00.2150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|9200|10000|0||103.72|107.34|0.00|-2.86|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:00.2150000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +37|2023-10-06T20:24:00.2580000-07:00|40022550|Zeromus|0001A945|27395759||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:00.3470000-07:00|40022550|Zeromus|0001A949|27374138||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:00.3470000-07:00|10FF0005|Wuwuchu Wuchu|0001A949|90055|90055|10000|10000|0||95.63|95.17|0.00|2.86|2700|0|0|01|05000A1E|0|41F00000|| +21|2023-10-06T20:24:00.3470000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27374138|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||103.04|96.60|0.00|-1.98|0001A94D|0|1| +38|2023-10-06T20:24:00.3470000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.23|99.77|0.00|-2.90|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:24:00.3470000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|1E|90128|80739| +38|2023-10-06T20:24:00.3470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:24:00.3470000-07:00|10FF0001||||| +261|2023-10-06T20:23:59.9700000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:24:00.0860000-07:00|Change|4002281D||||||||| +37|2023-10-06T20:24:00.4800000-07:00|40022550|Zeromus|0001A941|27361406||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:00.4800000-07:00|10FF0007|Kehabiqo Febiqo|0001A941|128564||||||96.66|97.69|0.00|0.68| +38|2023-10-06T20:24:00.4830000-07:00|40022550|Zeromus|005A5A00|27361406|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9700|10000|0||99.90|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||10FF0008|Kokosaze Lulusaze|00|79111|| +38|2023-10-06T20:24:00.4830000-07:00|4002281D|Carbuncle|005A5A00|53095|53095|10000|10000|0||95.16|105.83|0.00|2.45|0|0|0||||||| +26|2023-10-06T20:24:00.4830000-07:00|30|Well Fed|2218.77|10FF0008|Kokosaze Lulusaze|4002281D|Carbuncle|2964|75851|79111| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||4002281D|Carbuncle|00|75851|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9700|10000|0||99.90|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0008|Kokosaze Lulusaze|00|79111|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9700|10000|0||99.90|100.97|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0008|Kokosaze Lulusaze|00|79111|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8900|10000|0||101.89|97.70|0.00|-2.22|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||10FF0001|Sesuga Sapisuga|00|127791|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8900|10000|0||101.89|97.70|0.00|-2.22|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0001|Sesuga Sapisuga|00|127791|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8900|10000|0||101.89|97.70|0.00|-2.22|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0001|Sesuga Sapisuga|00|127791|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5700|10000|0||99.05|100.42|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5700|10000|0||99.05|100.42|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5700|10000|0||99.05|100.42|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||97.16|98.43|0.00|0.88|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||10FF0007|Kehabiqo Febiqo|00|128564|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||97.16|98.43|0.00|0.88|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0007|Kehabiqo Febiqo|00|128564|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||97.16|98.43|0.00|0.88|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0007|Kehabiqo Febiqo|00|128564|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||99.98|99.82|0.00|2.84|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||10FF0002|Suchichi Suchi|00|90128|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||99.98|99.82|0.00|2.84|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0002|Suchichi Suchi|00|90128|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||99.98|99.82|0.00|2.84|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0002|Suchichi Suchi|00|90128|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||10FF0005|Wuwuchu Wuchu|00|90055|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0005|Wuwuchu Wuchu|00|90055|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0005|Wuwuchu Wuchu|00|90055|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8180|10000|0||97.89|107.07|0.00|3.06|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:00.1840000-07:00|Change|10FF0007||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||10FF0006|Wowobora Gogobora|00|80739|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8180|10000|0||97.89|107.07|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0006|Wowobora Gogobora|00|80739|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8180|10000|0||97.89|107.07|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0006|Wowobora Gogobora|00|80739|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9200|10000|0||103.18|106.64|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|80739|| +38|2023-10-06T20:24:00.4830000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.18|98.80|0.00|-3.13|0|0|0||||||| +26|2023-10-06T20:24:00.4830000-07:00|441|HP Penalty|9999.00|E0000000||40022666|Ruby Carbuncle|00|77430|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9200|10000|0||103.18|106.64|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|80739|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9200|10000|0||103.18|106.64|0.00|-2.69|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|80739|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9200|10000|0||103.18|106.64|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|ED2|Beckoning Dark|76.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|80739|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5700|10000|0||99.05|100.42|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|ED7|Forked Lightning|76.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +38|2023-10-06T20:24:00.4830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9700|10000|0||99.90|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:00.4830000-07:00|ED7|Forked Lightning|76.00|E0000000||10FF0008|Kokosaze Lulusaze|00|79111|| +21|2023-10-06T20:24:00.4830000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|20D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27361406|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||95.63|95.17|0.00|2.86|0001A94E|0|1| +38|2023-10-06T20:24:00.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8180|10000|0||97.89|107.07|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:00.4830000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|80739|80739| +37|2023-10-06T20:24:00.5250000-07:00|10FF0001|Sesuga Sapisuga|0001A946|70679|89453|8900|10000|0||101.89|97.70|0.00|-2.22|1300|0|0|01|0D000EB1|0|41700000|| +26|2023-10-06T20:24:00.5250000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|40478540| +24|2023-10-06T20:24:00.5250000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|C76|128564|128564|10000|10000|||97.16|98.43|0.00|0.88|E0000000||0||||||||||| +24|2023-10-06T20:24:00.5250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|155E|79111|79111|9700|10000|||99.90|100.97|0.00|3.14|E0000000||0||||||||||| +38|2023-10-06T20:24:00.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||97.16|98.43|0.00|0.88|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:00.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9700|10000|0||99.90|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:00.5700000-07:00|10FF0007|Kehabiqo Febiqo|0001A946|72743|89994|10000|10000|0||97.16|98.43|0.00|0.88|1501|0|0|01|0D000EB1|0|41700000|| +26|2023-10-06T20:24:00.5700000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|40478540| +21|2023-10-06T20:24:00.5700000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|375F0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|27361406|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8180|10000|||97.89|107.07|0.00|3.06|0001A94F|0|1| +261|2023-10-06T20:24:00.1840000-07:00|Change|10FF0004||||||||||||||||||||||||| +37|2023-10-06T20:24:00.6150000-07:00|10FF0005|Wuwuchu Wuchu|0001A946|36176|63038|10000|10000|0||95.63|95.17|0.00|2.86|2702|0|0|01|10000EB1|0|41700000|| +26|2023-10-06T20:24:00.6150000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|40478540| +38|2023-10-06T20:24:00.6150000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|36176|63038|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:00.6150000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|1E|90055|80739| +37|2023-10-06T20:24:00.6590000-07:00|10FF0002|Suchichi Suchi|0001A946|34259|63089|10000|10000|0||99.98|99.82|0.00|2.84|1603|0|0|01|0B000EB1|0|41700000|| +26|2023-10-06T20:24:00.6590000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0002|Suchichi Suchi|00|90128|40478540| +37|2023-10-06T20:24:00.7040000-07:00|40022550|Zeromus|0001A94B|27357852||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:00.7040000-07:00|10FF0003|Gegehi Gehi|0001A946|24044|51159|5700|10000|0||99.05|100.42|0.00|3.10|2304|0|0|01|0B000EB1|0|41700000|| +26|2023-10-06T20:24:00.7040000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0003|Gegehi Gehi|00|51159|40478540| +37|2023-10-06T20:24:00.7040000-07:00|40022550|Zeromus|0001A944|27347741||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:00.7040000-07:00|10FF0001|Sesuga Sapisuga|0001A944|70679|89453|9300|10000|0||101.19|98.14|0.00|-2.51|1300|0|0|0| +37|2023-10-06T20:24:00.7490000-07:00|10FF0008|Kokosaze Lulusaze|0001A946|32170|55377|9700|10000|0||99.90|100.97|0.00|3.14|1B05|0|0|01|02000EB1|0|41700000|| +30|2023-10-06T20:24:00.7490000-07:00|A8E|Radiant Aegis|0.00|400227CD|Carbuncle|10FF0008|Kokosaze Lulusaze|00|55377|| +26|2023-10-06T20:24:00.7490000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0008|Kokosaze Lulusaze|00|55377|40478540| +37|2023-10-06T20:24:00.7490000-07:00|40022550|Zeromus|0001A94A|27328346||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:00.7490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|72743|89994|10000|10000|0||97.67|99.18|0.00|1.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:00.7490000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|89994|56517| +38|2023-10-06T20:24:00.7490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|32170|55377|9700|10000|0||99.90|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:00.7940000-07:00|10FF0006|Wowobora Gogobora|0001A946|30390|56517|7780|10000|0||97.89|107.07|0.00|3.06|2806|0|0|01|04000EB1|0|41700000|| +26|2023-10-06T20:24:00.7940000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0006|Wowobora Gogobora|00|56517|40478540| +37|2023-10-06T20:24:00.8370000-07:00|10FF0004|Buhojaqe Zijaqe|0001A946|29876|56517|9200|10000|0||102.29|105.51|0.00|-2.55|1C07|0|0|01|0E000EB1|0|41700000|| +26|2023-10-06T20:24:00.8370000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0004|Buhojaqe Zijaqe|00|56517|40478540| +37|2023-10-06T20:24:00.8830000-07:00|40022550|Zeromus|0001A94D|27326681||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:00.8830000-07:00|10FF0003|Gegehi Gehi|005A5A23|24044|51159|5700|10000|0||99.05|100.42|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:00.8830000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|51159|56517| +261|2023-10-06T20:24:00.4750000-07:00|Change|10FF0001||||||||||||| +37|2023-10-06T20:24:00.9720000-07:00|40022550|Zeromus|0001A94C|27297399||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:01.0160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|32170|55377|9700|10000|0||99.90|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:01.0160000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|55377|56517| +21|2023-10-06T20:24:01.1500000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|4|150B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|36176|63038|10000|10000|||95.63|95.17|0.00|2.86|54201|54201|10000|10000|||100.18|98.80|0.00|-3.07|0001A950|0|1| +39|2023-10-06T20:24:01.1500000-07:00|10FF0002|Suchichi Suchi|34889|63089|10000|10000|||99.62|99.78|0.00|-2.93| +38|2023-10-06T20:24:01.1500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|70679|89453|9300|10000|0||98.91|98.55|0.00|-2.89|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:01.1500000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|89453|56517| +37|2023-10-06T20:24:01.1950000-07:00|40022550|Zeromus|0001A94E|27288991||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:01.1950000-07:00|10FF0003|Gegehi Gehi|24555|51159|5900|10000|||99.05|100.42|0.00|3.10| +24|2023-10-06T20:24:01.1950000-07:00|40022550|Zeromus|DoT|0|2636|27297399|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:24:01.1950000-07:00|40022550|Zeromus|005A5A00|27279209|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:24:00.8210000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T20:24:01.2390000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15AA|70679|89453|9300|10000|||98.91|98.55|0.00|-2.89|10FF0006|Wowobora Gogobora|0|30390|56517|7780|10000|||97.89|107.05|0.00|3.12| +37|2023-10-06T20:24:01.2390000-07:00|40022550|Zeromus|0001A94F|27265034||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:01.2390000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||100.18|98.80|0.00|-3.02| +20|2023-10-06T20:24:01.2390000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|95.63|95.17|0.00|2.86| +38|2023-10-06T20:24:01.2390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|76225|89453|9300|10000|0||98.91|98.55|0.00|-2.89|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:00.8210000-07:00|Change|10FF0005||||||||||||||||||||||| +261|2023-10-06T20:24:00.8210000-07:00|Change|4002281D||||||||||| +261|2023-10-06T20:24:00.9380000-07:00|Change|10FF0006||||||||||||||||||||||||| +36|2023-10-06T20:24:01.3280000-07:00|31EC|3| +39|2023-10-06T20:24:01.3730000-07:00|10FF0001|Sesuga Sapisuga|77119|89453|9500|10000|||98.91|98.55|0.00|-2.89| +39|2023-10-06T20:24:01.3730000-07:00|10FF0004|Buhojaqe Zijaqe|30441|56517|9400|10000|||100.35|102.76|0.00|-2.56| +21|2023-10-06T20:24:01.3730000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|754003|37D20000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|27265034|40478540|10000|10000|||100.00|80.10|0.00|0.00|24555|51159|5900|10000|||99.05|100.42|0.00|3.10|0001A951|0|1| +38|2023-10-06T20:24:01.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|24555|51159|5700|10000|0||99.05|100.42|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:01.3730000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +21|2023-10-06T20:24:01.4170000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|23D90000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|27265034|40478540|10000|10000|||100.00|80.10|0.00|0.00|72743|89994|10000|10000|||100.77|100.00|0.00|2.76|0001A952|0|1| +39|2023-10-06T20:24:01.4630000-07:00|10FF0005|Wuwuchu Wuchu|36806|63038|10000|10000|||95.63|95.17|0.00|2.86| +21|2023-10-06T20:24:01.4630000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|37EE0000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|27265034|40478540|10000|10000|||100.00|80.10|0.00|0.00|34889|63089|10000|10000|||99.57|99.66|0.00|-2.92|0001A953|0|1| +20|2023-10-06T20:24:01.4630000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.24|102.59|0.00|-2.59| +38|2023-10-06T20:24:01.4630000-07:00|10FF0002|Suchichi Suchi|005A5A16|34889|63089|10000|10000|0||99.57|99.66|0.00|-2.92|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:01.4630000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:24:01.4630000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +39|2023-10-06T20:24:01.5060000-07:00|10FF0006|Wowobora Gogobora|30955|56517|7985|10000|||97.94|105.62|0.00|3.11| +21|2023-10-06T20:24:01.5950000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27265034|40478540|10000|10000|||100.00|80.10|0.00|0.00|30955|56517|7985|10000|||97.97|104.80|0.00|3.11|0001A954|0|1| +261|2023-10-06T20:24:01.2540000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:24:01.5390000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:01.9540000-07:00|40022550|Zeromus|0001A952|27255857||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:01.9540000-07:00|10FF0005|Wuwuchu Wuchu|0001A950|42193||||||95.63|95.17|0.00|2.86| +21|2023-10-06T20:24:01.9540000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|752003|49B80000|4|26148000|0|0|0|0|0|0|0|0|0|0|0|0|27265034|40478540|10000|10000|||100.00|80.10|0.00|0.00|77119|89453|9500|10000|||98.91|98.55|0.00|3.08|0001A955|0|1| +38|2023-10-06T20:24:01.9540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|77119|89453|8500|10000|0||98.91|98.55|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:01.9540000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:24:01.9540000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +21|2023-10-06T20:24:02.0000000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27265034|40478540|10000|10000|||100.00|80.10|0.00|0.00|32170|55377|9700|10000|||99.90|100.97|0.00|3.14|0001A956|0|1| +21|2023-10-06T20:24:02.0000000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|750003|9AAB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27265034|40478540|10000|10000|||100.00|80.10|0.00|0.00|36806|63038|10000|10000|||95.63|95.17|0.00|2.86|0001A957|0|1| +38|2023-10-06T20:24:02.0000000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|42193|63038|10000|10000|0||95.63|95.17|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:02.0000000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:24:02.0000000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +04|2023-10-06T20:24:01.5390000-07:00|40022814|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|75851|0|10000|||88.78|114.69|0.00|2.78| +261|2023-10-06T20:24:01.5390000-07:00|Change|10FF0005||||||||||||| +261|2023-10-06T20:24:01.5390000-07:00|Remove|40022814| +39|2023-10-06T20:24:02.0440000-07:00|10FF0007|Kehabiqo Febiqo|73642|89994|10000|10000|||101.00|99.87|0.00|-3.09| +39|2023-10-06T20:24:02.0440000-07:00|10FF0008|Kokosaze Lulusaze|32723|55377|9900|10000|||99.90|100.97|0.00|3.14| +20|2023-10-06T20:24:02.0440000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.08|103.26|0.00|2.72| +37|2023-10-06T20:24:02.0870000-07:00|40022550|Zeromus|0001A953|27241539||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:02.0870000-07:00|10FF0002|Suchichi Suchi|0001A953|34889|63089|10000|10000|0||99.67|99.64|0.00|-2.99|1600|0|0|01|0C000747|0|41F00000|| +38|2023-10-06T20:24:02.0880000-07:00|10FF0002|Suchichi Suchi|005A5A16|34889|63089|10000|10000|0||99.67|99.64|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:02.1330000-07:00|40022550|Zeromus|0001A954|27241501||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:01.6350000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:24:02.1330000-07:00|40022550|Zeromus|0001A951|27227211||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:02.2210000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|724003|43FC0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|27227211|40478540|10000|10000|||100.00|80.10|0.00|0.00|34889|63089|10000|10000|||99.70|99.63|-0.01|-2.94|0001A958|0|1| +38|2023-10-06T20:24:02.2210000-07:00|10FF0002|Suchichi Suchi|005A5A16|34889|63089|10000|10000|0||99.70|99.63|-0.01|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.2210000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:24:01.7550000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:24:01.8740000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:24:02.3550000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2C1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27227211|40478540|10000|10000|||100.00|80.10|0.00|0.00|73642|89994|10000|10000|||101.00|99.87|0.00|-3.09|0001A959|0|1| +21|2023-10-06T20:24:02.3550000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|354003|443B0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|27227211|40478540|10000|10000|||100.00|80.10|0.00|0.00|24555|51159|5700|10000|||99.05|100.42|0.00|3.10|0001A95A|0|1| +38|2023-10-06T20:24:02.3550000-07:00|10FF0003|Gegehi Gehi|005A5A23|24555|51159|5400|10000|0||99.05|100.42|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:02.3550000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +26|2023-10-06T20:24:02.3550000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +21|2023-10-06T20:24:02.4000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|528E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27227211|40478540|10000|10000|||100.00|80.10|0.00|0.00|30441|56517|9400|10000|||100.24|102.59|0.00|-3.13|0001A95B|0|1| +21|2023-10-06T20:24:02.4890000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BCA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27227211|40478540|10000|10000|||100.00|80.10|0.00|0.00|34889|63089|10000|10000|||99.71|99.63|0.00|3.13|0001A95C|0|1| +37|2023-10-06T20:24:02.5330000-07:00|40022550|Zeromus|0001A956|27227024||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:02.5790000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27227024|40478540|10000|10000|||100.00|80.10|0.00|0.00|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13|0001A95D|0|1| +37|2023-10-06T20:24:02.6230000-07:00|40022550|Zeromus|0001A957|27187429||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:02.6230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|DF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27227024|40478540|10000|10000|||100.00|80.10|0.00|0.00|77119|89453|8500|10000|||98.96|99.41|0.00|0.83|0001A95E|0|1| +31|2023-10-06T20:24:02.6230000-07:00|10FF0001||||| +24|2023-10-06T20:24:02.6670000-07:00|10FF0002|Suchichi Suchi|DoT|0|139E|34889|63089|10000|10000|||99.72|99.63|-0.02|3.13|10FF0002|Suchichi Suchi|FFFFFFFF|34889|63089|10000|10000|||99.72|99.63|-0.02|3.13| +24|2023-10-06T20:24:02.6670000-07:00|10FF0002|Suchichi Suchi|HoT|0|C61|34889|63089|10000|10000|||99.72|99.63|-0.02|3.13|10FF0002|Suchichi Suchi|0|34889|63089|10000|10000|||99.72|99.63|-0.02|3.13| +20|2023-10-06T20:24:02.6670000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|99.90|100.97|0.00|3.14| +38|2023-10-06T20:24:02.6670000-07:00|10FF0002|Suchichi Suchi|005A5A16|33036|63089|10000|10000|0||99.72|99.63|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:02.2070000-07:00|Change|10FF0008||||||||||||| +261|2023-10-06T20:24:02.2070000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:24:02.7120000-07:00|40022550|Zeromus|0001A958|27170025||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:02.7120000-07:00|10FF0002|Suchichi Suchi|0001A958|33036|63089|10000|10000|0||99.72|99.63|-0.02|3.13|1600|0|0|01|080004DB|0|41700000|| +37|2023-10-06T20:24:02.7120000-07:00|40022550|Zeromus|0001A955|27151153||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:02.7120000-07:00|10FF0001|Sesuga Sapisuga|0001A955|86867||||||98.96|99.41|0.00|0.19| +24|2023-10-06T20:24:02.7120000-07:00|10FF0003|Gegehi Gehi|DoT|0|13BB|24555|51159|5400|10000|||99.05|100.42|0.00|3.10|40022550|Zeromus|FFFFFFFF|27187429|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:02.7120000-07:00|10FF0003|Gegehi Gehi|HoT|0|CE9|24555|51159|5400|10000|||99.05|100.42|0.00|3.10|40022550|Zeromus|0|27187429|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:02.7120000-07:00|10FF0002|Suchichi Suchi|005A5A16|33036|63089|10000|10000|0||99.72|99.63|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:02.7120000-07:00|10FF0003|Gegehi Gehi|005A5A23|22809|51159|5400|10000|0||99.05|100.42|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:02.8910000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|E8D|86867|89453|8500|10000|||99.12|99.40|0.00|-3.09|40022550|Zeromus|FFFFFFFF|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:02.8910000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|156D|86867|89453|8500|10000|||99.12|99.40|0.00|-3.09|40022550|Zeromus|0|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:02.8910000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D6F|32723|55377|9900|10000|||99.90|100.97|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13| +24|2023-10-06T20:24:02.8910000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1531|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13| +24|2023-10-06T20:24:02.8910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D5B|73642|89994|10000|10000|||101.00|99.87|-0.02|-3.08|10FF0004|Buhojaqe Zijaqe|0|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13| +24|2023-10-06T20:24:02.8910000-07:00|10FF0003|Gegehi Gehi|HoT|798|D09|22809|51159|5400|10000|||99.05|100.42|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13| +24|2023-10-06T20:24:02.8910000-07:00|10FF0002|Suchichi Suchi|HoT|798|D84|33036|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13| +24|2023-10-06T20:24:02.8910000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D6F|86867|89453|8500|10000|||99.12|99.40|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13| +24|2023-10-06T20:24:02.8910000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D34|30955|56517|7985|10000|||98.10|103.01|0.00|3.06|10FF0004|Buhojaqe Zijaqe|0|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13| +24|2023-10-06T20:24:02.8910000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|151E|42193|63038|10000|10000|||95.70|95.26|-0.02|1.84|10FF0004|Buhojaqe Zijaqe|0|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13| +24|2023-10-06T20:24:02.8910000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|124D|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13|40022550|Zeromus|FFFFFFFF|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:02.8910000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CC9|30441|56517|9000|10000|||100.24|102.59|0.00|-3.13|40022550|Zeromus|0|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:02.8910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77061|89994|10000|10000|0||101.00|99.87|-0.02|-3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:02.8910000-07:00|10FF0002|Suchichi Suchi|005A5A16|36496|63089|10000|10000|0||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:02.8910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|36162|55377|9900|10000|0||99.90|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:02.8910000-07:00|10FF0006|Wowobora Gogobora|005A5A28|34335|56517|7985|10000|0||98.10|103.01|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.8910000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:02.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:02.8910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8500|10000|0||99.12|99.40|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:02.8910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|34454|56517|9550|10000|0||100.24|102.59|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.8910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:02.8910000-07:00|10FF0003|Gegehi Gehi|005A5A23|26146|51159|5400|10000|0||99.05|100.42|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.8910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:02.8910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|47599|63038|10000|10000|0||95.70|95.26|-0.02|1.84|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:02.8910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +21|2023-10-06T20:24:02.9350000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00|22809|51159|5400|10000|||99.05|100.42|0.00|3.10|0001A95F|0|1| +37|2023-10-06T20:24:02.9800000-07:00|40022550|Zeromus|0001A959|27139858||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:02.9800000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|145F|47599|63038|10000|10000|||96.22|95.67|0.00|1.60|40022550|Zeromus|FFFFFFFF|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:02.9800000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|14FB|47599|63038|10000|10000|||96.22|95.67|0.00|1.60|40022550|Zeromus|0|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:02.9810000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38190000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00|34335|56517|7985|10000|||98.10|103.01|0.00|3.06|0001A960|0|1| +38|2023-10-06T20:24:02.9810000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.18|98.80|0.00|-3.00|0|0|0|||||||||| +26|2023-10-06T20:24:02.9810000-07:00|7AC|Summon Order II|30.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T20:24:02.9810000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34454|56517|9550|10000|||100.24|102.59|0.00|-3.13|34454|56517|9550|10000|||100.24|102.59|0.00|-3.13|0001A961|0|1| +38|2023-10-06T20:24:02.9810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|47755|63038|10000|10000|0||96.22|95.67|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:02.4880000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:03.0250000-07:00|40022550|Zeromus|0001A95C|27136840||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:03.0250000-07:00|10FF0006|Wowobora Gogobora|DoT|0|13C9|34335|56517|7985|10000|||98.10|103.01|0.00|3.06|E0000000||FFFFFFFF||||||||||| +24|2023-10-06T20:24:03.0250000-07:00|10FF0006|Wowobora Gogobora|HoT|0|CC9|34335|56517|7985|10000|||98.10|103.01|0.00|3.06|E0000000||0||||||||||| +21|2023-10-06T20:24:03.0250000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|720003|1A5A0000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|27151153|40478540|10000|10000|||100.00|80.10|0.00|0.00|36496|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A962|0|1| +38|2023-10-06T20:24:03.0250000-07:00|10FF0002|Suchichi Suchi|005A5A16|36496|63089|10000|10000|0||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:03.0250000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:24:03.0250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|32543|56517|8135|10000|0||98.10|103.01|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +22|2023-10-06T20:24:03.0680000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0002|Suchichi Suchi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|36496|63089|10000|10000|||99.72|99.63|0.00|3.13|54201|54201|10000|10000|||100.18|98.80|0.00|-3.11|0001A963|0|8| +22|2023-10-06T20:24:03.0680000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|8500|10000|||99.12|99.40|0.00|-3.09|54201|54201|10000|10000|||100.18|98.80|0.00|-3.11|0001A963|1|8| +22|2023-10-06T20:24:03.0680000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|77061|89994|10000|10000|||100.94|99.89|0.00|-2.95|54201|54201|10000|10000|||100.18|98.80|0.00|-3.11|0001A963|2|8| +22|2023-10-06T20:24:03.0680000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|26146|51159|5400|10000|||99.05|100.42|0.00|3.10|54201|54201|10000|10000|||100.18|98.80|0.00|-3.11|0001A963|3|8| +22|2023-10-06T20:24:03.0680000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|36162|55377|9900|10000|||99.90|100.97|0.00|3.14|54201|54201|10000|10000|||100.18|98.80|0.00|-3.11|0001A963|4|8| +22|2023-10-06T20:24:03.0680000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0005|Wuwuchu Wuchu|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|47755|63038|10000|10000|||96.63|96.00|0.00|1.39|54201|54201|10000|10000|||100.18|98.80|0.00|-3.11|0001A963|5|8| +22|2023-10-06T20:24:03.0680000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|34454|56517|9550|10000|||100.24|102.58|-0.02|-3.09|54201|54201|10000|10000|||100.18|98.80|0.00|-3.11|0001A963|6|8| +22|2023-10-06T20:24:03.0680000-07:00|40022666|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|54201|54201|10000|10000|||100.18|98.80|0.00|-3.11|0001A963|7|8| +37|2023-10-06T20:24:03.1130000-07:00|40022550|Zeromus|0001A95D|27136695||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:03.1130000-07:00|40022550|Zeromus|0001A95A|27119228||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:03.1130000-07:00|10FF0003|Gegehi Gehi|0001A95A|26146|51159|5400|10000|0||99.05|100.42|0.00|3.10|2300|0|0|01|0C0004D3|0|41F00000|| +21|2023-10-06T20:24:03.1130000-07:00|10FF0003|Gegehi Gehi|1D87|Surecast|10FF0003|Gegehi Gehi|E|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26146|51159|5400|10000|||99.05|100.42|0.00|3.10|26146|51159|5400|10000|||99.05|100.42|0.00|3.10|0001A964|0|1| +21|2023-10-06T20:24:03.1130000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|714003|42320000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|27136840|40478540|10000|10000|||100.00|80.10|0.00|0.00|47755|63038|10000|10000|||96.63|96.00|0.00|1.39|0001A965|0|1| +38|2023-10-06T20:24:03.1130000-07:00|10FF0003|Gegehi Gehi|005A5A23|26146|51159|5400|10000|0||99.05|100.42|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:03.1130000-07:00|A0|Surecast|6.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +38|2023-10-06T20:24:03.1130000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|47755|63038|10000|10000|0||96.63|96.00|0.00|1.39|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:03.1130000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +37|2023-10-06T20:24:03.1570000-07:00|40022550|Zeromus|0001A95E|27115657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:03.2000000-07:00|40022550|Zeromus|0001A95B|27094523||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:02.8440000-07:00|Change|10FF0003||| +38|2023-10-06T20:24:03.2910000-07:00|40022550|Zeromus|005A5A00|27094523|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:24:03.2910000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +26|2023-10-06T20:24:03.2910000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +261|2023-10-06T20:24:02.9620000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:24:03.4690000-07:00|40022550|Zeromus|0001A95F|27094497||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:03.4690000-07:00|10FF0003|Gegehi Gehi|0001A95F|26146|51159|5400|10000|0||99.05|100.42|0.00|3.10|2300|0|0|01|040000A0|0|C0C00000|| +24|2023-10-06T20:24:03.5590000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|D24|77061|89994|10000|10000|||100.53|100.02|-0.01|-2.87|40022550|Zeromus|FFFFFFFF|27094497|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:03.5590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D71|77061|89994|10000|10000|||100.53|100.02|-0.01|-2.87|40022550|Zeromus|0|27094497|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:03.5590000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|12CF|36162|55377|9900|10000|||99.90|100.97|0.00|3.14|E0000000||FFFFFFFF||||||||||| +24|2023-10-06T20:24:03.5590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|15E2|36162|55377|9900|10000|||99.90|100.97|0.00|3.14|E0000000||0||||||||||| +21|2023-10-06T20:24:03.5590000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27094497|40478540|10000|10000|||100.00|80.10|0.00|0.00|77061|89994|10000|10000|||100.53|100.02|-0.01|-2.87|0001A966|0|1| +38|2023-10-06T20:24:03.5590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77138|89994|10000|10000|0||100.53|100.02|-0.01|-2.87|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:03.5590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|36949|55377|9900|10000|0||99.90|100.97|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:03.6480000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15C6|89453|89453|8500|10000|||99.12|99.40|0.00|-3.09|10FF0006|Wowobora Gogobora|0|32543|56517|8135|10000|||98.10|103.01|0.00|3.06| +37|2023-10-06T20:24:03.6480000-07:00|40022550|Zeromus|0001A960|27080136||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:03.6480000-07:00|10FF0003|Gegehi Gehi|0001A964|26146|51159|5400|10000|0||99.05|100.42|0.00|3.10|2300|0|0|01|040000A0|0|40C00000|| +37|2023-10-06T20:24:03.6480000-07:00|40022550|Zeromus|0001A965|27063190||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:03.6480000-07:00|10FF0005|Wuwuchu Wuchu|0001A965|47755|63038|10000|10000|0||97.49|96.79|-0.02|2.99|2700|0|0|01|04000A1B|01|41F00000|| +22|2023-10-06T20:24:03.6480000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0006|Wowobora Gogobora|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|0001A967|0|8| +22|2023-10-06T20:24:03.6480000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0004|Buhojaqe Zijaqe|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|34454|56517|9550|10000|||100.02|102.01|0.00|-2.55|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|0001A967|1|8| +22|2023-10-06T20:24:03.6480000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0008|Kokosaze Lulusaze|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|36949|55377|9900|10000|||99.90|100.97|0.00|3.14|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|0001A967|2|8| +22|2023-10-06T20:24:03.6480000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0003|Gegehi Gehi|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|26146|51159|5400|10000|||99.05|100.42|0.00|3.10|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|0001A967|3|8| +22|2023-10-06T20:24:03.6480000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0002|Suchichi Suchi|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|36496|63089|10000|10000|||99.72|99.63|0.00|3.13|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|0001A967|4|8| +22|2023-10-06T20:24:03.6480000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0001|Sesuga Sapisuga|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|8500|10000|||99.12|99.40|0.00|-3.09|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|0001A967|5|8| +22|2023-10-06T20:24:03.6480000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0007|Kehabiqo Febiqo|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|77138|89994|10000|10000|||100.51|100.02|0.00|-2.86|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|0001A967|6|8| +22|2023-10-06T20:24:03.6480000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0005|Wuwuchu Wuchu|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|47755|63038|10000|10000|||97.49|96.79|-0.02|2.99|32543|56517|8135|10000|||98.10|103.01|0.00|3.06|0001A967|7|8| +38|2023-10-06T20:24:03.6480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8500|10000|0||99.12|99.40|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:03.6480000-07:00|10FF0003|Gegehi Gehi|005A5A23|26146|51159|5400|10000|0||99.05|100.42|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:03.6480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|47755|63038|10000|10000|0||97.49|96.79|-0.02|2.99|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:03.6920000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27094497|40478540|10000|10000|||100.00|80.10|0.00|0.00|47755|63038|10000|10000|||97.49|96.79|-0.02|2.99|0001A968|0|1| +38|2023-10-06T20:24:03.6920000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|47755|63038|10000|10000|0||97.49|96.79|-0.02|2.99|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:03.6920000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:24:03.2720000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:24:03.8250000-07:00|40022550|Zeromus|0001A962|27056444||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:24:03.8260000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.90|101.69|-0.02|-2.45| +37|2023-10-06T20:24:03.8710000-07:00|10FF0002|Suchichi Suchi|0001A963|36496|63089|10000|10000|0||99.72|99.63|0.00|3.13|1600|0|0|01|0800013D|0|41A00000|| +26|2023-10-06T20:24:03.8710000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|63089|54201| +21|2023-10-06T20:24:03.8720000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32714003|28300000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|27056444|40478540|10000|10000|||100.00|80.10|0.00|0.00|77138|89994|10000|10000|||100.51|100.02|0.00|-2.87|0001A969|0|1| +21|2023-10-06T20:24:03.8720000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26146|51159|5400|10000|||99.05|100.42|0.00|3.10|26146|51159|5400|10000|||99.05|100.42|0.00|3.10|0001A96A|0|1| +21|2023-10-06T20:24:03.8720000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|45D10000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|27056444|40478540|10000|10000|||100.00|80.10|0.00|0.00|47755|63038|10000|10000|||97.49|96.79|0.00|2.99|0001A96B|0|1| +38|2023-10-06T20:24:03.8720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|47755|63038|10000|10000|0||97.49|96.79|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:03.8720000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +26|2023-10-06T20:24:03.8720000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:24:03.8720000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +21|2023-10-06T20:24:03.9170000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|250B0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|27056444|40478540|10000|10000|||100.00|80.10|0.00|0.00|36496|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A96C|0|1| +38|2023-10-06T20:24:03.9170000-07:00|10FF0002|Suchichi Suchi|005A5A16|36496|63089|10000|10000|0||99.72|99.63|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:03.9170000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:04.0040000-07:00|10FF0001|Sesuga Sapisuga|0001A963|89453|89453|8500|10000|0||99.12|99.40|0.00|-3.09|1301|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T20:24:04.0040000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|89453|54201| +39|2023-10-06T20:24:04.0490000-07:00|4002281D|Carbuncle|53095|53095|10000|10000|||98.53|102.34|0.00|2.27| +37|2023-10-06T20:24:04.0930000-07:00|40022550|Zeromus|0001A966|27053544||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:04.1380000-07:00|10FF0007|Kehabiqo Febiqo|0001A963|77138|89994|10000|10000|0||100.51|100.02|0.00|-3.12|1502|0|0|01|0600013D|0|41A00000|| +26|2023-10-06T20:24:04.1380000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|89994|54201| +39|2023-10-06T20:24:04.1380000-07:00|10FF0002|Suchichi Suchi|37126|63089|10000|10000|||99.72|99.63|0.00|3.13| +39|2023-10-06T20:24:04.1840000-07:00|10FF0003|Gegehi Gehi|26657|51159|5600|10000|||99.13|100.44|0.00|2.99| +24|2023-10-06T20:24:04.1840000-07:00|40022550|Zeromus|DoT|0|210C|27056444|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:24:04.1840000-07:00|40022550|Zeromus|005A5A00|27045084|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:24:03.7930000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:24:03.7930000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:24:04.2280000-07:00|40022550|Zeromus|0001A968|27041627||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:04.2280000-07:00|10FF0005|Wuwuchu Wuchu|0001A968|47755|63038|10000|10000|0||97.49|96.78|0.00|3.00|2700|0|0|01|04000A1D|0|C2700000|| +39|2023-10-06T20:24:04.2280000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||100.18|98.80|0.00|-3.13| +37|2023-10-06T20:24:04.2730000-07:00|10FF0003|Gegehi Gehi|0001A963|26657|51159|5600|10000|0||99.17|100.44|0.00|2.95|2303|0|0|01|0D00013D|0|41A00000|| +26|2023-10-06T20:24:04.2730000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51159|54201| +36|2023-10-06T20:24:04.3160000-07:00|32C8|3| +37|2023-10-06T20:24:04.3610000-07:00|40022550|Zeromus|0001A96B|27023754||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:04.3610000-07:00|10FF0005|Wuwuchu Wuchu|0001A96B|47755|63038|10000|10000|0||97.43|96.49|0.00|-3.03|2700|0|0|01|04000A1D|0|42700000|| +39|2023-10-06T20:24:04.3610000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|8700|10000|||99.12|99.40|0.00|3.10| +39|2023-10-06T20:24:04.3610000-07:00|10FF0004|Buhojaqe Zijaqe|35019|56517|9750|10000|||99.87|101.61|0.00|3.14| +38|2023-10-06T20:24:04.3610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|47755|63038|10000|10000|0||97.43|96.49|0.00|-3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:04.4050000-07:00|10FF0008|Kokosaze Lulusaze|0001A963|36949|55377|9900|10000|0||99.90|100.97|0.00|3.14|1B04|0|0|01|0600013D|0|41A00000|| +26|2023-10-06T20:24:04.4050000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|55377|54201| +39|2023-10-06T20:24:04.4490000-07:00|10FF0005|Wuwuchu Wuchu|48385|63038|10000|10000|||97.43|96.49|0.00|-3.03| +37|2023-10-06T20:24:04.4940000-07:00|40022550|Zeromus|0001A969|27013466||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:04.4940000-07:00|10FF0006|Wowobora Gogobora|0001A967|32543|56517|8135|10000|0||98.04|102.32|0.00|2.96|2800|0|0|02|0C000A3C|0|41700000|||||| +26|2023-10-06T20:24:04.4940000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:04.4940000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:24:04.4950000-07:00|10FF0003|Gegehi Gehi|0001A96A|26657|51159|5600|10000|0||99.68|100.56|0.00|2.92|2300|0|0|01|0E0004B4|0|41A80000|| +26|2023-10-06T20:24:04.4950000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +39|2023-10-06T20:24:04.4950000-07:00|10FF0006|Wowobora Gogobora|33108|56517|8340|10000|||98.04|102.32|0.00|2.96| +20|2023-10-06T20:24:04.4950000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.04|102.32|0.00|2.96| +21|2023-10-06T20:24:04.4950000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|716003|29880000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|27041627|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8500|10000|||99.12|99.40|0.00|3.10|0001A96D|0|1| +261|2023-10-06T20:24:04.0290000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:24:04.5400000-07:00|40022550|Zeromus|0001A96C|27003983||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:04.5400000-07:00|10FF0005|Wuwuchu Wuchu|0001A963|48385|63038|10000|10000|0||97.41|96.36|0.00|-2.90|2705|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T20:24:04.5400000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|63038|54201| +37|2023-10-06T20:24:04.6290000-07:00|10FF0004|Buhojaqe Zijaqe|0001A967|35019|56517|9750|10000|0||99.87|101.61|0.00|3.14|1C01|0|0|02|0F000A3C|0|41700000|||||| +26|2023-10-06T20:24:04.6290000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:24:04.6290000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +261|2023-10-06T20:24:04.3540000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:24:04.6730000-07:00|10FF0004|Buhojaqe Zijaqe|0001A963|35019|56517|9750|10000|0||99.87|101.61|0.00|3.14|1C06|0|0|01|1100013D|0|41A00000|| +26|2023-10-06T20:24:04.6730000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|56517|54201| +41|2023-10-06T20:24:04.7180000-07:00|80034E7C|290A|01|00|00| +21|2023-10-06T20:24:04.7180000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|24200000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|77138|89994|10000|10000|||100.50|100.02|0.00|-3.11|27003983|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A96E|0|1| +37|2023-10-06T20:24:04.7610000-07:00|10FF0008|Kokosaze Lulusaze|0001A967|36949|55377|9900|10000|0||99.90|100.97|0.00|3.14|1B02|0|0|02|0E000A3C|0|41700000|||||| +26|2023-10-06T20:24:04.7610000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +26|2023-10-06T20:24:04.7610000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +21|2023-10-06T20:24:04.7620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2F730000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27003983|40478540|10000|10000|||100.00|80.10|0.00|0.00|35019|56517|9750|10000|||99.87|101.61|0.00|3.14|0001A96F|0|1| +00|2023-10-06T20:24:04.0000000-07:00|0839||Zeromus expands its domain...| +37|2023-10-06T20:24:04.8070000-07:00|10FF0006|Wowobora Gogobora|0001A963|33108|56517|8340|10000|0||98.04|102.04|0.00|2.93|2807|0|0|01|0E00013D|0|41A00000|| +26|2023-10-06T20:24:04.8070000-07:00|13D|Fey Illumination|20.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|56517|54201| +20|2023-10-06T20:24:04.8080000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|100.53|100.75|-0.01|2.91| +38|2023-10-06T20:24:04.8080000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.18|98.80|0.00|-3.11|0|0|0||||||| +30|2023-10-06T20:24:04.8080000-07:00|7AC|Summon Order II|0.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|54201|54201| +37|2023-10-06T20:24:04.8980000-07:00|10FF0003|Gegehi Gehi|0001A967|26657|51159|5600|10000|0||100.53|100.75|-0.01|2.91|2303|0|0|02|0F000A3C|0|41700000|||||| +26|2023-10-06T20:24:04.8980000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +26|2023-10-06T20:24:04.8980000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +21|2023-10-06T20:24:04.8980000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27003983|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8700|10000|||99.12|99.40|0.00|3.10|0001A970|0|1| +31|2023-10-06T20:24:04.8980000-07:00|10FF0001||||| +21|2023-10-06T20:24:04.9410000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|4CE80000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|27003983|40478540|10000|10000|||100.00|80.10|0.00|0.00|36949|55377|9900|10000|||99.90|100.97|0.00|3.14|0001A971|0|1| +261|2023-10-06T20:24:04.5450000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:24:05.0310000-07:00|10FF0002|Suchichi Suchi|0001A967|37126|63089|10000|10000|0||99.72|99.63|0.00|3.13|1604|0|0|02|0C000A3C|0|41700000|||||| +26|2023-10-06T20:24:05.0310000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:24:05.0310000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +39|2023-10-06T20:24:05.0310000-07:00|10FF0007|Kehabiqo Febiqo|78037|89994|10000|10000|||100.37|100.02|0.00|-3.11| +39|2023-10-06T20:24:05.0310000-07:00|10FF0008|Kokosaze Lulusaze|37502|55377|9800|10000|||99.90|100.97|0.00|3.14| +37|2023-10-06T20:24:05.1200000-07:00|40022550|Zeromus|0001A96D|26993351||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:05.1660000-07:00|10FF0001|Sesuga Sapisuga|0001A967|89453|89453|8700|10000|0||99.12|99.40|0.00|3.10|1305|0|0|02|07000A3C|0|41700000|||||| +26|2023-10-06T20:24:05.1660000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:24:05.1660000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +21|2023-10-06T20:24:05.1660000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|DFE0000|13000E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|27003983|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8700|10000|||99.12|99.40|0.00|3.10|0001A972|0|1| +21|2023-10-06T20:24:05.2100000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|16480000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|33108|56517|8340|10000|||98.04|101.86|-0.01|3.05|54201|54201|10000|10000|||100.18|98.80|0.00|-2.47|0001A973|0|1| +37|2023-10-06T20:24:05.2990000-07:00|10FF0007|Kehabiqo Febiqo|0001A967|78037|89994|10000|10000|0||100.22|100.02|0.00|-3.12|1506|0|0|02|0E000A3C|0|41700000|||||| +26|2023-10-06T20:24:05.2990000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +26|2023-10-06T20:24:05.2990000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +21|2023-10-06T20:24:05.2990000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BBB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26993351|40478540|10000|10000|||100.00|80.10|0.00|0.00|37126|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A974|0|1| +261|2023-10-06T20:24:04.8740000-07:00|Change|10FF0001||| +261|2023-10-06T20:24:04.8740000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T20:24:05.4320000-07:00|10FF0005|Wuwuchu Wuchu|0001A967|48385|63038|10000|10000|0||98.62|97.15|0.00|-3.07|2707|0|0|02|06000A3C|0|41700000|||||| +26|2023-10-06T20:24:05.4320000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +26|2023-10-06T20:24:05.4320000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:24:05.4320000-07:00|40022550|Zeromus|0001A970|26991570||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:05.4320000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|55890000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|26993351|40478540|10000|10000|||100.00|80.10|0.00|0.00|33108|56517|8340|10000|||98.04|101.85|0.00|3.05|0001A975|0|1| +261|2023-10-06T20:24:05.1020000-07:00|Change|10FF0008||| +37|2023-10-06T20:24:05.5210000-07:00|10FF0007|Kehabiqo Febiqo|0001A96E|68789||||||100.13|100.02|0.00|-3.13| +261|2023-10-06T20:24:05.1020000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:24:05.5670000-07:00|40022550|Zeromus|0001A971|26971882||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:05.5670000-07:00|40022550|Zeromus|0001A96F|26959735||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:05.6560000-07:00|10FF0002|Suchichi Suchi|DoT|0|13CC|37126|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|33108|56517|7940|10000|||98.04|101.85|0.00|3.05| +24|2023-10-06T20:24:05.6560000-07:00|10FF0002|Suchichi Suchi|HoT|0|1DEB|37126|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0006|Wowobora Gogobora|0|33108|56517|7940|10000|||98.04|101.85|0.00|3.05| +21|2023-10-06T20:24:05.6560000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|26959735|40478540|10000|10000|||100.00|80.10|0.00|0.00|37502|55377|9800|10000|||99.90|100.97|0.00|3.14|0001A976|0|1| +38|2023-10-06T20:24:05.6560000-07:00|10FF0002|Suchichi Suchi|005A5A16|39717|63089|10000|10000|0||99.72|99.63|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:05.6560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|37502|55377|9800|10000|0||99.90|100.97|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.6560000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:24:05.1970000-07:00|Change|4002281D||||||||| +38|2023-10-06T20:24:05.7010000-07:00|40022830||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:24:05.7010000-07:00|40022830||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +24|2023-10-06T20:24:05.7010000-07:00|10FF0003|Gegehi Gehi|DoT|0|1257|26657|51159|5600|10000|||100.54|100.76|0.00|-3.11|10FF0006|Wowobora Gogobora|FFFFFFFF|33108|56517|7940|10000|||98.04|101.85|0.00|3.05| +24|2023-10-06T20:24:05.7010000-07:00|10FF0003|Gegehi Gehi|HoT|0|1DC5|26657|51159|5600|10000|||100.54|100.76|0.00|-3.11|10FF0006|Wowobora Gogobora|0|33108|56517|7940|10000|||98.04|101.85|0.00|3.05| +38|2023-10-06T20:24:05.7010000-07:00|10FF0003|Gegehi Gehi|005A5A23|29583|51159|6150|10000|0||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:05.2870000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:24:05.8340000-07:00|40022550|Zeromus|0001A974|26956732||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:05.8340000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|712003|47400000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|26959735|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8700|10000|||99.12|99.40|0.00|3.10|0001A977|0|1| +24|2023-10-06T20:24:05.8800000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|D99|89453|89453|8700|10000|||99.12|99.40|0.00|3.10|10FF0006|Wowobora Gogobora|FFFFFFFF|33108|56517|7940|10000|||98.04|101.85|0.00|3.05| +24|2023-10-06T20:24:05.8800000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1DD3|89453|89453|8700|10000|||99.12|99.40|0.00|3.10|10FF0006|Wowobora Gogobora|0|33108|56517|7940|10000|||98.04|101.85|0.00|3.05| +24|2023-10-06T20:24:05.8800000-07:00|10FF0003|Gegehi Gehi|HoT|798|176F|29583|51159|6150|10000|||100.54|100.76|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|35019|56517|9350|10000|||99.92|101.50|0.00|2.70| +24|2023-10-06T20:24:05.8800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|EC2|35019|56517|9350|10000|||99.92|101.50|0.00|2.70|10FF0004|Buhojaqe Zijaqe|0|35019|56517|9350|10000|||99.92|101.50|0.00|2.70| +24|2023-10-06T20:24:05.8800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|EC5|37502|55377|9800|10000|||99.90|100.97|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|35019|56517|9350|10000|||99.92|101.50|0.00|2.70| +24|2023-10-06T20:24:05.8800000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E49|68789|89994|10000|10000|||100.02|100.02|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|35019|56517|9350|10000|||99.92|101.50|0.00|2.70| +24|2023-10-06T20:24:05.8800000-07:00|10FF0002|Suchichi Suchi|HoT|798|E09|39717|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|35019|56517|9350|10000|||99.92|101.50|0.00|2.70| +24|2023-10-06T20:24:05.8800000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|17D5|89453|89453|8700|10000|||99.12|99.40|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|35019|56517|9350|10000|||99.92|101.50|0.00|2.70| +24|2023-10-06T20:24:05.8800000-07:00|10FF0006|Wowobora Gogobora|HoT|798|ED5|33108|56517|7940|10000|||98.04|101.85|0.00|3.05|10FF0004|Buhojaqe Zijaqe|0|35019|56517|9350|10000|||99.92|101.50|0.00|2.70| +24|2023-10-06T20:24:05.8800000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|EAC|48385|63038|10000|10000|||98.86|98.36|0.00|-2.99|10FF0004|Buhojaqe Zijaqe|0|35019|56517|9350|10000|||99.92|101.50|0.00|2.70| +24|2023-10-06T20:24:05.8800000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|13C7|35019|56517|9350|10000|||99.92|101.50|0.00|2.70|40022666|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.18|98.80|0.00|-0.62| +24|2023-10-06T20:24:05.8800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1D1C|35019|56517|9350|10000|||99.92|101.50|0.00|2.70|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||100.18|98.80|0.00|-0.62| +38|2023-10-06T20:24:05.8800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|72446|89994|10000|10000|0||100.02|100.02|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.8800000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:05.8800000-07:00|10FF0002|Suchichi Suchi|005A5A16|43310|63089|10000|10000|0||99.72|99.63|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.8800000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:05.8800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|41283|55377|9800|10000|0||99.90|100.97|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.8800000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:05.8800000-07:00|10FF0006|Wowobora Gogobora|005A5A28|36905|56517|7940|10000|0||98.04|101.85|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.8800000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:05.8800000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:05.8800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8700|10000|0||99.12|99.40|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.8800000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:24:05.8800000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:05.8800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|41186|56517|9900|10000|0||99.92|101.50|0.00|2.70|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.8800000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:05.8800000-07:00|10FF0003|Gegehi Gehi|005A5A23|35582|51159|6150|10000|0||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.8800000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:05.8800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|52141|63038|10000|10000|0||98.86|98.36|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:05.8800000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +24|2023-10-06T20:24:05.9690000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|157C|52141|63038|10000|10000|||98.91|98.64|0.00|-2.99|40022550|Zeromus|FFFFFFFF|26956732|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:05.9690000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1C8E|52141|63038|10000|10000|||98.91|98.64|0.00|-2.99|40022550|Zeromus|0|26956732|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:05.9690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|53951|63038|10000|10000|0||98.91|98.64|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:05.5740000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:24:06.0130000-07:00|10FF0006|Wowobora Gogobora|0001A973|42609||||||98.04|101.85|0.00|3.05| +24|2023-10-06T20:24:06.0130000-07:00|10FF0006|Wowobora Gogobora|DoT|0|12F0|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|40022666|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.18|98.80|0.00|-0.61| +24|2023-10-06T20:24:06.0130000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2768|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||100.18|98.80|0.00|-0.61| +38|2023-10-06T20:24:06.0130000-07:00|10FF0006|Wowobora Gogobora|005A5A28|47849|56517|8490|10000|0||98.04|101.85|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +22|2023-10-06T20:24:06.0560000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|389A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|0001A978|0|8| +22|2023-10-06T20:24:06.0560000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|4|375B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41283|55377|9800|10000|||99.90|100.97|0.00|3.14|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|0001A978|1|8| +22|2023-10-06T20:24:06.0560000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|37040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41186|56517|9900|10000|||100.16|100.99|0.00|2.52|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|0001A978|2|8| +22|2023-10-06T20:24:06.0560000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|4|36FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72446|89994|10000|10000|||99.99|100.02|0.00|-3.12|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|0001A978|3|8| +22|2023-10-06T20:24:06.0560000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|4|39160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|8700|10000|||99.00|99.41|0.00|-3.10|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|0001A978|4|8| +22|2023-10-06T20:24:06.0560000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|4|361B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35582|51159|6150|10000|||100.54|100.76|0.00|-3.11|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|0001A978|5|8| +22|2023-10-06T20:24:06.0560000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|4|38F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43310|63089|10000|10000|||99.72|99.63|0.00|3.13|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|0001A978|6|8| +22|2023-10-06T20:24:06.0560000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|38980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53951|63038|10000|10000|||99.00|99.13|0.00|-2.98|36905|56517|7940|10000|||98.04|101.85|0.00|3.05|0001A978|7|8| +24|2023-10-06T20:24:06.1010000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2589|89453|89453|8700|10000|||99.00|99.41|0.00|-3.10|10FF0006|Wowobora Gogobora|1|36905|56517|7940|10000|||98.04|101.85|0.00|3.05| +37|2023-10-06T20:24:06.1010000-07:00|40022550|Zeromus|0001A975|26934835||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:06.1010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8700|10000|0||99.00|99.41|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:24:05.6700000-07:00|40022830|Emerald Garuda|00|5A|10FF0008|00||10263|13506|53095|53095|10000|10000|||101.66|102.76|0.00|3.14| +261|2023-10-06T20:24:05.6700000-07:00|Add|40022830||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:05.7930000-07:00|Change|40022830||||| +37|2023-10-06T20:24:06.1900000-07:00|40022550|Zeromus|0001A972|26931253|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T20:24:06.1900000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +37|2023-10-06T20:24:06.1910000-07:00|40022550|Zeromus|0001A977|26913013||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:06.1910000-07:00|10FF0001|Sesuga Sapisuga|0001A977|89453|89453|9200|10000|0||98.53|99.43|0.00|-3.11|1300|0|0|0| +20|2023-10-06T20:24:06.1910000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.22|100.85|-0.01|2.47| +21|2023-10-06T20:24:06.2350000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|31900000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|26934835|40478540|10000|10000|||100.00|80.10|0.00|0.00|35582|51159|6150|10000|||100.54|100.76|0.00|-3.11|0001A979|0|1| +38|2023-10-06T20:24:06.2350000-07:00|10FF0003|Gegehi Gehi|005A5A23|35582|51159|5950|10000|0||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:06.2350000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +26|2023-10-06T20:24:06.2350000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:24:05.9120000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:24:05.9120000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T20:24:06.3230000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F714003|3D7B0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|26913013|40478540|10000|10000|||100.00|80.10|0.00|0.00|72446|89994|10000|10000|||99.99|100.02|0.00|-3.12|0001A97A|0|1| +38|2023-10-06T20:24:06.3230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|72446|89994|10000|10000|0||99.99|100.02|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:06.3230000-07:00|A75|Surging Tempest|51.19|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +21|2023-10-06T20:24:06.3670000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|736003|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26913013|40478540|10000|10000|||100.00|80.10|0.00|0.00|47849|56517|8490|10000|||98.04|101.85|0.00|3.05|0001A97B|0|1| +21|2023-10-06T20:24:06.4120000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35722003|3B270000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|26913013|40478540|10000|10000|||100.00|80.10|0.00|0.00|43310|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A97C|0|1| +21|2023-10-06T20:24:06.4120000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|714003|4AE60000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|26913013|40478540|10000|10000|||100.00|80.10|0.00|0.00|53951|63038|10000|10000|||99.13|99.83|-0.02|-2.98|0001A97D|0|1| +24|2023-10-06T20:24:06.5460000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|C16|72446|89994|10000|10000|||99.99|100.02|0.00|-3.14|10FF0006|Wowobora Gogobora|FFFFFFFF|47849|56517|8490|10000|||98.04|101.85|0.00|3.05| +24|2023-10-06T20:24:06.5460000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2627|72446|89994|10000|10000|||99.99|100.02|0.00|-3.14|10FF0006|Wowobora Gogobora|0|47849|56517|8490|10000|||98.04|101.85|0.00|3.05| +24|2023-10-06T20:24:06.5460000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|13F0|41283|55377|9800|10000|||99.90|101.06|0.00|-1.34|10FF0006|Wowobora Gogobora|FFFFFFFF|47849|56517|8490|10000|||98.04|101.85|0.00|3.05| +24|2023-10-06T20:24:06.5460000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1D5E|41283|55377|9800|10000|||99.90|101.06|0.00|-1.34|10FF0006|Wowobora Gogobora|0|47849|56517|8490|10000|||98.04|101.85|0.00|3.05| +38|2023-10-06T20:24:06.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|79119|89994|10000|10000|0||99.99|100.02|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:06.5460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|43697|55377|9800|10000|0||99.90|101.06|0.00|-1.34|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:06.1490000-07:00|Change|10FF0006||| +37|2023-10-06T20:24:06.6780000-07:00|10FF0008|Kokosaze Lulusaze|0001A976|43697|55377|9800|10000|0||99.89|101.89|0.00|-1.00|1B00|0|0|01|10000AA5|0|0|| +38|2023-10-06T20:24:06.6780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|43697|55377|9800|10000|0||99.89|101.89|0.00|-1.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:06.2500000-07:00|Change|40022830||| +261|2023-10-06T20:24:06.3400000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:24:06.8570000-07:00|10FF0006|Wowobora Gogobora|0001A978|56517|56517|9190|10000|0||98.04|101.85|0.00|3.05|2800|0|0|0| +37|2023-10-06T20:24:06.9020000-07:00|40022550|Zeromus|0001A97B|26912937||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:06.9020000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40022550|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26913013|40478540|10000|10000|||100.00|80.10|0.00|0.00|79119|89994|10000|10000|||99.99|100.02|0.00|-3.14|0001A97E|0|1| +21|2023-10-06T20:24:06.9020000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26913013|40478540|10000|10000|||100.00|80.10|0.00|0.00|53951|63038|10000|10000|||99.16|100.02|0.00|3.10|0001A97F|0|1| +21|2023-10-06T20:24:06.9460000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26912937|40478540|10000|10000|||100.00|80.10|0.00|0.00|79119|89994|10000|10000|||99.99|100.02|0.00|-3.14|0001A980|0|1| +20|2023-10-06T20:24:06.9460000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.04|101.85|0.00|3.05| +37|2023-10-06T20:24:06.9910000-07:00|10FF0008|Kokosaze Lulusaze|0001A978|55377||||||99.87|102.97|0.00|-0.31| +21|2023-10-06T20:24:06.9910000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35712003|313E0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|26912937|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9200|10000|||96.94|99.41|0.00|3.10|0001A981|0|1| +37|2023-10-06T20:24:07.0350000-07:00|40022550|Zeromus|0001A979|26900249||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:07.1240000-07:00|10FF0004|Buhojaqe Zijaqe|0001A978|55270||||||100.27|100.76|0.00|2.44| +39|2023-10-06T20:24:07.1700000-07:00|10FF0002|Suchichi Suchi|43940|63089|10000|10000|||99.72|99.63|0.00|3.13| +21|2023-10-06T20:24:07.1700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26900249|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9200|10000|||96.60|99.63|0.00|3.10|0001A982|0|1| +31|2023-10-06T20:24:07.1700000-07:00|10FF0001||||| +39|2023-10-06T20:24:07.2140000-07:00|10FF0003|Gegehi Gehi|36093|51159|6150|10000|||100.54|100.76|0.00|-3.11| +24|2023-10-06T20:24:07.2140000-07:00|40022550|Zeromus|DoT|0|2453|26900249|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T20:24:07.2140000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|3FD80000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|26900249|40478540|10000|10000|||100.00|80.10|0.00|0.00|35582|51159|5950|10000|||100.54|100.76|0.00|-3.11|0001A983|0|1| +38|2023-10-06T20:24:07.2140000-07:00|40022550|Zeromus|005A5A00|26890950|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:07.2140000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:07.2140000-07:00|10FF0003|Gegehi Gehi|005A5A23|36093|51159|5850|10000|0||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:07.2140000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +37|2023-10-06T20:24:07.2590000-07:00|10FF0007|Kehabiqo Febiqo|0001A978|89994||||||99.99|100.02|0.00|-3.14| +39|2023-10-06T20:24:07.2590000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||100.18|98.80|0.00|-2.65| +21|2023-10-06T20:24:07.3030000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|710003|33730000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|26890950|40478540|10000|10000|||100.00|80.10|0.00|0.00|53951|63038|10000|10000|||99.17|100.05|0.00|-3.14|0001A984|0|1| +38|2023-10-06T20:24:07.3030000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|53951|63038|10000|10000|0||99.17|100.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.3030000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +261|2023-10-06T20:24:06.8740000-07:00|Change|10FF0003||| +39|2023-10-06T20:24:07.3490000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|9400|10000|||96.43|99.81|0.00|3.10| +39|2023-10-06T20:24:07.3490000-07:00|10FF0004|Buhojaqe Zijaqe|55835|56517|10000|10000|||100.27|100.76|0.00|2.44| +36|2023-10-06T20:24:07.3490000-07:00|33A4|3| +261|2023-10-06T20:24:06.8740000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:07.4360000-07:00|40022550|Zeromus|0001A97C|26875807||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:07.4360000-07:00|40022550|Zeromus|0001A97D|26856633||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:07.4360000-07:00|10FF0005|Wuwuchu Wuchu|0001A97D|53951|63038|10000|10000|0||99.05|100.29|0.00|3.08|2700|0|0|01|09000A1B|01|C1F00000|| +37|2023-10-06T20:24:07.4360000-07:00|40022550|Zeromus|0001A97F|26853462||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:07.4360000-07:00|10FF0005|Wuwuchu Wuchu|0001A97F|53951|63038|10000|10000|0||99.05|100.29|0.00|3.08|2700|0|0|01|09000A1B|01|C1F00000|| +37|2023-10-06T20:24:07.4810000-07:00|40022550|Zeromus|0001A980|26848765||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:07.4810000-07:00|10FF0005|Wuwuchu Wuchu|54581|63038|10000|10000|||99.05|100.29|0.00|3.08| +21|2023-10-06T20:24:07.4810000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26890950|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9800|10000|||99.90|103.30|0.00|1.06|0001A985|0|1| +37|2023-10-06T20:24:07.5250000-07:00|40022550|Zeromus|0001A97E|26848765|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|070004A9|0|41200000|| +26|2023-10-06T20:24:07.5250000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40022550|Zeromus|00|40478540|89994| +37|2023-10-06T20:24:07.5250000-07:00|10FF0003|Gegehi Gehi|0001A978|49944||||||100.54|100.76|0.00|-3.11| +39|2023-10-06T20:24:07.5250000-07:00|10FF0006|Wowobora Gogobora|56517|56517|9395|10000|||98.04|101.85|0.00|3.05| +261|2023-10-06T20:24:07.1050000-07:00|Change|10FF0006||||||||||||||| +22|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|31070000|710E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|0001A986|0|8| +22|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|1F440000|60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|49944|51159|5850|10000|||100.54|100.76|0.00|-3.11|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|0001A986|1|8| +22|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|200004|307F0000|980E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|43940|63089|10000|10000|||99.72|99.63|0.00|3.13|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|0001A986|2|8| +22|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|1F750000|540E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|54581|63038|10000|10000|||98.86|100.47|0.00|3.07|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|0001A986|3|8| +22|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|310B0000|780E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||99.84|100.02|-0.02|-3.13|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|0001A986|4|8| +22|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|1F710000|4E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55377|55377|9800|10000|||99.93|103.25|0.00|3.02|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|0001A986|5|8| +22|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|32E30000|6B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|56517|56517|9395|10000|||98.04|101.85|0.00|3.05|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|0001A986|6|8| +22|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|323C0000|600E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|89453|89453|9400|10000|||96.29|99.85|0.00|3.10|55835|56517|9000|10000|||100.27|100.76|0.00|2.44|0001A986|7|8| +38|2023-10-06T20:24:07.6150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|22||99.84|100.02|-0.02|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.6150000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:07.6150000-07:00|10FF0002|Suchichi Suchi|005A5A16|43940|63089|10000|10000|31||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.6150000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:07.6150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9800|10000|23||99.93|103.25|0.00|3.02|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.6150000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:07.6150000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9395|10000|36||98.04|101.85|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.6150000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:07.6150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9400|10000|23||96.29|99.85|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.6150000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:07.6150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55835|56517|9000|10000|35||100.27|100.76|0.00|2.44|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.6150000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:07.6150000-07:00|10FF0003|Gegehi Gehi|005A5A23|49944|51159|5850|10000|25||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.6150000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:07.6150000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|54581|63038|10000|10000|20||98.86|100.47|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:07.6150000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:24:07.6590000-07:00|10FF0002|Suchichi Suchi|0001A978|58519||||||99.72|99.63|0.00|3.13| +261|2023-10-06T20:24:07.2030000-07:00|Change|4002281D||| +37|2023-10-06T20:24:07.7030000-07:00|40022550|Zeromus|0001A982|26846557||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:07.7480000-07:00|40022550|Zeromus|0001A981|26833951||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:07.7480000-07:00|10FF0001|Sesuga Sapisuga|0001A981|89453|89453|10000|10000|23||96.29|99.85|0.00|3.10|1300|0|0|0| +21|2023-10-06T20:24:07.7480000-07:00|40022830|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|354003|75220000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|26846557|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||101.66|102.76|0.00|3.14|0001A987|0|1| +21|2023-10-06T20:24:07.7480000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||99.01|100.03|0.00|-3.13|26846557|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A988|0|1| +37|2023-10-06T20:24:07.7930000-07:00|10FF0005|Wuwuchu Wuchu|0001A978|63038|63038|10000|10000|20||98.79|100.48|0.00|3.07|2707|0|0|01|09000A1B|01|C1F00000|| +261|2023-10-06T20:24:07.2930000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:24:07.8360000-07:00|40022550|Zeromus|0001A984|26820780||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:07.8360000-07:00|10FF0005|Wuwuchu Wuchu|0001A984|63038|63038|10000|10000|20||98.73|100.50|0.00|3.07|2700|0|0|01|09000A1B|01|41F00000|| +38|2023-10-06T20:24:07.8360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|20||98.73|100.50|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:07.8810000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|56D70000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|26833951|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9395|10000|||98.04|101.85|0.00|3.05|0001A989|0|1| +21|2023-10-06T20:24:07.8810000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26833951|40478540|10000|10000|||100.00|80.10|0.00|0.00|49944|51159|5850|10000|||100.54|100.76|0.00|-3.11|0001A98A|0|1| +37|2023-10-06T20:24:07.9710000-07:00|40022550|Zeromus|0001A97A|26805041||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:07.9710000-07:00|40022550|Zeromus|0001A983|26788697||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:08.0150000-07:00|40022550|Zeromus|0001A985|26788555||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:08.0600000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|10000|10000|||95.98|100.07|0.00|-3.13| +39|2023-10-06T20:24:08.0600000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|10000|10000|||99.96|103.20|0.00|3.13| +21|2023-10-06T20:24:08.1040000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|DED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26788697|40478540|10000|10000|||100.00|80.10|0.00|0.00|58519|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A98B|0|1| +20|2023-10-06T20:24:08.1040000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|99.96|103.20|0.00|3.13| +261|2023-10-06T20:24:07.6820000-07:00|Change|10FF0008||||||||||||||||||||| +21|2023-10-06T20:24:08.1930000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26788697|40478540|10000|10000|||100.00|80.10|0.00|0.00|55835|56517|9000|10000|||100.27|100.78|0.00|0.80|0001A98C|0|1| +38|2023-10-06T20:24:08.3270000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8995|10000|36||98.04|101.85|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.3270000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:08.3270000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:08.3270000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +261|2023-10-06T20:24:07.9220000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:08.4160000-07:00|40022550|Zeromus|0001A98A|26788512||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:08.4600000-07:00|10FF0002|Suchichi Suchi|005A5A16|58519|63089|10000|10000|31||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:08.4600000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +30|2023-10-06T20:24:08.4600000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +21|2023-10-06T20:24:08.5040000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|34270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26788512|40478540|10000|10000|||100.00|80.10|0.00|0.00|49944|51159|5850|10000|||100.54|100.76|0.00|-3.11|0001A98D|0|1| +37|2023-10-06T20:24:08.5480000-07:00|10FF0007|Kehabiqo Febiqo|0001A988|89994|89994|10000|10000|12||95.19|100.08|0.00|-3.13|1500|0|0|0| +24|2023-10-06T20:24:08.5480000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1773|89453|89453|10000|10000|||96.29|99.85|0.00|3.10|10FF0006|Wowobora Gogobora|0|56517|56517|8995|10000|||98.04|101.85|-0.02|3.00| +37|2023-10-06T20:24:08.5480000-07:00|40022550|Zeromus|0001A989|26766281||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:08.5490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|23||96.29|99.85|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.5490000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +261|2023-10-06T20:24:08.1520000-07:00|Change|10FF0006||||||||||||||||||||||| +20|2023-10-06T20:24:08.5940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.02|101.34|0.00|-0.39| +38|2023-10-06T20:24:08.5940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|12||95.11|100.08|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:08.5940000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +30|2023-10-06T20:24:08.5940000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:08.5940000-07:00|40022550|Zeromus|005A5A00|26766281|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:24:08.5940000-07:00|4AB|Feint|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +37|2023-10-06T20:24:08.6380000-07:00|40022550|Zeromus|0001A98B|26762716||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:08.6380000-07:00|10FF0002|Suchichi Suchi|DoT|0|0|58519|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|55835|56517|9000|10000|||100.02|101.34|0.00|-0.39| +24|2023-10-06T20:24:08.6380000-07:00|10FF0002|Suchichi Suchi|HoT|0|1B26|58519|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|55835|56517|9000|10000|||100.02|101.34|0.00|-0.39| +38|2023-10-06T20:24:08.6380000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|23||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:08.6830000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|49944|51159|5850|10000|||100.54|100.76|0.00|-3.11|10FF0006|Wowobora Gogobora|FFFFFFFF|56517|56517|8995|10000|||98.05|101.84|0.00|2.78| +24|2023-10-06T20:24:08.6830000-07:00|10FF0003|Gegehi Gehi|HoT|0|1DF6|49944|51159|5850|10000|||100.54|100.76|0.00|-3.11|10FF0006|Wowobora Gogobora|0|56517|56517|8995|10000|||98.05|101.84|0.00|2.78| +38|2023-10-06T20:24:08.6830000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6400|10000|15||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:08.2420000-07:00|Change|10FF0003||| +37|2023-10-06T20:24:08.7280000-07:00|10FF0004|Buhojaqe Zijaqe|0001A986|56517|56517|9000|10000|35||99.97|101.45|0.00|-0.93|1C00|0|0|01|12000129|0|41E772AD|| +37|2023-10-06T20:24:08.7280000-07:00|40022550|Zeromus|0001A98C|26762573||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:08.7280000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|20||98.68|100.51|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:08.7280000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +30|2023-10-06T20:24:08.7280000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +21|2023-10-06T20:24:08.7720000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|165A0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|26762716|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||95.03|100.08|-0.01|-3.13|0001A98E|0|1| +261|2023-10-06T20:24:08.3380000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:24:08.8620000-07:00|10FF0003|Gegehi Gehi|0001A986|51159|51159|6400|10000|15||100.54|100.76|0.00|-3.11|2301|0|0|01|0C000129|0|41E6624A|| +24|2023-10-06T20:24:08.8620000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|89453|89453|10000|10000|||96.43|99.85|0.00|3.10|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1DCC|89453|89453|10000|10000|||96.43|99.85|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0003|Gegehi Gehi|HoT|798|E25|51159|51159|6400|10000|||100.54|100.76|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|17F2|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|16F2|55377|55377|10000|10000|||99.96|103.20|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0006|Wowobora Gogobora|HoT|798|ED3|56517|56517|8995|10000|||98.23|101.59|0.00|2.42|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0002|Suchichi Suchi|HoT|798|E13|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|1801|63038|63038|10000|10000|||98.68|100.51|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|180F|89453|89453|10000|10000|||96.43|99.85|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E6B|89994|89994|10000|10000|||95.02|100.08|0.00|2.90|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +24|2023-10-06T20:24:08.8620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1EC6|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9000|10000|||99.94|101.50|0.00|-1.49| +38|2023-10-06T20:24:08.8620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|12||95.02|100.08|0.00|2.90|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.8620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:08.8620000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|23||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.8620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:08.8620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|10000|10000|23||99.96|103.20|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.8620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:08.8620000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8995|10000|36||98.23|101.59|0.00|2.42|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.8620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:08.8620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|19||96.43|99.85|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.8620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:08.8620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9550|10000|26||99.94|101.50|0.00|-1.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.8620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:08.8620000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6400|10000|15||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.8620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +30|2023-10-06T20:24:08.8620000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +30|2023-10-06T20:24:08.8620000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:08.8620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|20||98.68|100.51|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.8620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +21|2023-10-06T20:24:08.9060000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F720003|41250000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|26762573|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A98F|0|1| +38|2023-10-06T20:24:08.9060000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|23||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:08.9060000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +21|2023-10-06T20:24:08.9510000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|16960000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|54201|54201|10000|10000|||100.18|98.80|0.00|-2.32|0001A990|0|1| +24|2023-10-06T20:24:08.9510000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|0|63038|63038|10000|10000|||98.68|100.51|0.00|3.07|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|9550|10000|||99.92|101.56|0.00|-2.03| +24|2023-10-06T20:24:08.9510000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1C9A|63038|63038|10000|10000|||98.68|100.51|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9550|10000|||99.92|101.56|0.00|-2.03| +21|2023-10-06T20:24:08.9510000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|5A1B0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|26762573|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.68|100.51|0.00|3.07|0001A991|0|1| +38|2023-10-06T20:24:08.9510000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|11||98.68|100.51|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:08.9510000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:24:08.9510000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +26|2023-10-06T20:24:08.9510000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:24:08.9950000-07:00|10FF0002|Suchichi Suchi|0001A986|63089|63089|10000|10000|23||99.72|99.63|0.00|3.13|1602|0|0|02|06000322|0|C1F00000|||||| +24|2023-10-06T20:24:08.9950000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|56517|56517|8995|10000|||98.41|101.39|0.00|2.43|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|9550|10000|||99.92|101.56|0.00|-2.03| +24|2023-10-06T20:24:08.9950000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1065|56517|56517|8995|10000|||98.41|101.39|0.00|2.43|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9550|10000|||99.92|101.56|0.00|-2.03| +38|2023-10-06T20:24:08.9950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|10000|10000|23||99.96|103.20|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:08.9950000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +30|2023-10-06T20:24:08.9950000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:08.9950000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9545|10000|27||98.41|101.39|0.00|2.43|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:09.0400000-07:00|40022550|Zeromus|0001A987|26732587||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:09.1290000-07:00|10FF0005|Wuwuchu Wuchu|0001A986|63038|63038|10000|10000|11||98.68|100.51|0.00|3.08|2703|0|0|02|09000A1C|0|C2700000|||||| +38|2023-10-06T20:24:09.1290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9550|10000|26||99.87|101.66|-0.01|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:09.1290000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +30|2023-10-06T20:24:09.1290000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +37|2023-10-06T20:24:09.2630000-07:00|10FF0007|Kehabiqo Febiqo|0001A986|89994|89994|10000|10000|12||95.06|100.08|0.00|3.02|1504|0|0|01|10000129|0|41E32AFD|| +38|2023-10-06T20:24:09.2630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|19||96.43|99.85|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:09.2630000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:24:09.2630000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:24:09.3070000-07:00|40022550|Zeromus|0001A98E|26726865||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:24:09.3510000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.99|100.69|0.00|2.46| +37|2023-10-06T20:24:09.3960000-07:00|10FF0008|Kokosaze Lulusaze|0001A986|55377|55377|10000|10000|23||99.96|103.20|0.00|3.14|1B05|0|0|01|11000129|0|41E21A9A|| +37|2023-10-06T20:24:09.4410000-07:00|40022550|Zeromus|0001A991|26703798||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:09.4410000-07:00|10FF0005|Wuwuchu Wuchu|0001A991|63038|63038|10000|10000|11||97.81|100.41|0.00|3.03|2700|0|0|01|09000A1C|0|42700000|| +21|2023-10-06T20:24:09.4410000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26726865|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||96.43|99.85|0.00|2.96|0001A992|0|1| +38|2023-10-06T20:24:09.4410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|11||97.81|100.41|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:24:09.4410000-07:00|10FF0001||||| +21|2023-10-06T20:24:09.4860000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41714003|30F10000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|26726865|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||96.43|99.85|0.00|2.96|0001A993|0|1| +38|2023-10-06T20:24:09.4860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|19||96.43|99.85|0.00|2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:09.4860000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +26|2023-10-06T20:24:09.4860000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +37|2023-10-06T20:24:09.5310000-07:00|10FF0006|Wowobora Gogobora|0001A986|56517|56517|9545|10000|27||98.99|100.69|0.00|2.75|2806|0|0|01|0F000129|0|41E1082B|| +24|2023-10-06T20:24:09.5310000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|89994|89994|10000|10000|||96.17|100.34|0.00|3.04|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|9550|10000|||99.87|101.67|0.00|3.14| +24|2023-10-06T20:24:09.5310000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|10AD|89994|89994|10000|10000|||96.17|100.34|0.00|3.04|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9550|10000|||99.87|101.67|0.00|3.14| +24|2023-10-06T20:24:09.5310000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|55377|55377|10000|10000|||99.96|103.20|0.00|3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|9550|10000|||99.87|101.67|0.00|3.14| +24|2023-10-06T20:24:09.5310000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1064|55377|55377|10000|10000|||99.96|103.20|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9550|10000|||99.87|101.67|0.00|3.14| +21|2023-10-06T20:24:09.5310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|51190000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26703798|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9550|10000|||99.87|101.67|0.00|3.14|0001A994|0|1| +38|2023-10-06T20:24:09.5310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|9||96.17|100.34|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:09.5310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|10000|10000|14||99.96|103.20|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:09.1170000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:24:09.6190000-07:00|40022550|Zeromus|0001A98F|26687121||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:09.6190000-07:00|10FF0002|Suchichi Suchi|0001A98F|63089|63089|10000|10000|23||99.72|99.63|0.00|3.13|1600|0|0|01|06000322|0|41F00000|| +38|2023-10-06T20:24:09.6190000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|23||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:09.6190000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6400|10000|15||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:09.6190000-07:00|A0|Surecast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +04|2023-10-06T20:24:09.1170000-07:00|4002281D|Carbuncle|00|5A|10FF0008|00||10261|13498|0|53095|0|10000|||98.53|102.34|0.00|2.27| +261|2023-10-06T20:24:09.2160000-07:00|Remove|4002281D| +37|2023-10-06T20:24:09.6630000-07:00|10FF0001|Sesuga Sapisuga|0001A986|89453|89453|10000|10000|19||96.43|99.85|0.00|2.96|1307|0|0|03|0900076E|03|C1F00000|||||||||| +37|2023-10-06T20:24:09.6630000-07:00|40022550|Zeromus|0001A98D|26673770||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:09.6630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9150|10000|26||99.87|101.67|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:09.6630000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022544||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022546||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022545||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022544||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022545||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|4002253F||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022541||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022543||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|4002253B||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|4002253D||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022542||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|4002253F||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|40022539||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|4002253E||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|4002253A||||||||| +261|2023-10-06T20:24:09.2160000-07:00|Change|4002253C||||||||| +261|2023-10-06T20:24:09.3120000-07:00|Change|10FF0004||||||||||||||||||||||| +20|2023-10-06T20:24:09.8410000-07:00|40022539|Comet|8B5C|Meteor Impact|40022539|Comet|5.700|108.80|93.40|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|4002253A|Comet|8B5C|Meteor Impact|4002253A|Comet|5.700|96.80|91.40|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|4002253B|Comet|8B5C|Meteor Impact|4002253B|Comet|5.700|118.00|83.00|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|4002253C|Comet|8B5C|Meteor Impact|4002253C|Comet|5.700|113.80|89.20|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|4002253D|Comet|8B5C|Meteor Impact|4002253D|Comet|5.700|110.60|84.00|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|4002253E|Comet|8B5C|Meteor Impact|4002253E|Comet|5.700|105.00|82.40|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|4002253F|Comet|8B5C|Meteor Impact|4002253F|Comet|5.700|100.00|85.60|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|40022540|Comet|8B5C|Meteor Impact|40022540|Comet|5.700|95.00|82.40|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|40022541|Comet|8B5C|Meteor Impact|40022541|Comet|5.700|89.40|84.00|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|40022542|Comet|8B5C|Meteor Impact|40022542|Comet|5.700|86.20|89.20|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|40022543|Comet|8B5C|Meteor Impact|40022543|Comet|5.700|82.00|83.00|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|40022544|Comet|8B5C|Meteor Impact|40022544|Comet|5.700|118.00|102.00|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|40022545|Comet|8B5C|Meteor Impact|40022545|Comet|5.700|82.00|102.00|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|40022546|Comet|8B5C|Meteor Impact|40022546|Comet|5.700|100.00|117.60|0.00|0.00| +20|2023-10-06T20:24:09.8410000-07:00|40022550|Zeromus|8B57|Void Meteor|40022550|Zeromus|4.500|100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:09.3120000-07:00|Change|40022540||||||||||||||||| +261|2023-10-06T20:24:09.3120000-07:00|Change|40022550||||||||||||| +20|2023-10-06T20:24:09.8860000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|100.54|100.76|0.00|-3.11| +261|2023-10-06T20:24:09.4140000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T20:24:09.9740000-07:00|40022550|Zeromus|0001A992|26671972||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:09.9740000-07:00|10FF0001|Sesuga Sapisuga|0001A992|89453|89453|10000|10000|19||96.43|99.85|0.00|2.96|1300|0|0|02|0900076E|03|C1F00000|||||| +261|2023-10-06T20:24:09.5100000-07:00|Change|40022544||||||||||||||||||||| +261|2023-10-06T20:24:09.5100000-07:00|Change|40022545||||||||||||||||||||| +261|2023-10-06T20:24:09.5100000-07:00|Change|4002253F||||||||||||||||||||| +37|2023-10-06T20:24:10.0640000-07:00|40022550|Zeromus|0001A993|26659443||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:10.0640000-07:00|10FF0001|Sesuga Sapisuga|0001A993|89453|89453|10000|10000|19||96.43|99.85|0.00|2.96|1300|0|0|02|0900076E|03|41F00000|||||| +38|2023-10-06T20:24:10.0640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|19||96.43|99.85|0.00|2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:10.1090000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|F810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26671972|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.01|100.47|0.00|2.99|0001A995|0|1| +39|2023-10-06T20:24:10.1530000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||99.72|99.63|0.00|3.13| +261|2023-10-06T20:24:09.7250000-07:00|Change|40022546||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|40022543||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|4002253D||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|4002253E||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|40022541||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|40022539||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|40022542||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|4002253C||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|4002253B||||||||||||| +261|2023-10-06T20:24:09.7250000-07:00|Change|4002253A||||||||||||| +39|2023-10-06T20:24:10.1980000-07:00|10FF0003|Gegehi Gehi|51159|51159|6600|10000|||100.54|100.76|0.00|-3.11| +24|2023-10-06T20:24:10.1980000-07:00|40022550|Zeromus|DoT|0|3239|26659443|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|89994|89994|10000|10000|||97.31|100.60|0.00|3.00| +38|2023-10-06T20:24:10.1980000-07:00|40022550|Zeromus|005A5A00|26646586|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:24:10.1980000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:10.1980000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9150|10000|26||99.87|101.67|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:10.1980000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +39|2023-10-06T20:24:10.2420000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||100.18|98.80|0.00|-0.61| +21|2023-10-06T20:24:10.2880000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|382D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|26659443|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9545|10000|||98.99|100.69|0.00|3.09|0001A996|0|1| +37|2023-10-06T20:24:10.3320000-07:00|40022550|Zeromus|0001A994|26625825||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:10.3320000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26646586|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||97.31|100.60|0.00|3.00|0001A997|0|1| +36|2023-10-06T20:24:10.3320000-07:00|3480|3| +38|2023-10-06T20:24:10.3320000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|23||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:10.3320000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +39|2023-10-06T20:24:10.3760000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||96.43|99.85|0.00|2.96| +39|2023-10-06T20:24:10.3760000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|9350|10000|||99.87|101.67|0.00|3.13| +39|2023-10-06T20:24:10.4650000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||97.50|100.84|0.00|2.99| +38|2023-10-06T20:24:10.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9145|10000|27||98.99|100.69|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.4650000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:10.4650000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +39|2023-10-06T20:24:10.5080000-07:00|10FF0006|Wowobora Gogobora|56517|56517|9350|10000|||98.99|100.69|0.00|3.09| +21|2023-10-06T20:24:10.5530000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|350003|40B70000|16C00F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|26625825|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|10000|10000|||99.96|103.20|0.00|3.14|0001A998|0|1| +38|2023-10-06T20:24:10.5530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|10000|10000|14||99.96|103.20|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:10.5530000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:24:10.0720000-07:00|Change|10FF0008||||||||||||||| +38|2023-10-06T20:24:10.5980000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|11||97.77|100.88|0.00|2.99|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:10.5980000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:24:10.6420000-07:00|40022550|Zeromus|0001A995|26621856||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:10.1730000-07:00|Change|10FF0006||||||||||||||||| +38|2023-10-06T20:24:10.7310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|9||97.31|100.60|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:10.7310000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +22|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0001|Sesuga Sapisuga|F10E|5520000|4|29AC0000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|0001A999|0|8| +22|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0007|Kehabiqo Febiqo|F10E|5520000|200004|43860000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.31|100.60|0.00|3.00|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|0001A999|1|8| +22|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0005|Wuwuchu Wuchu|F10E|5520000|200004|44440000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||97.99|101.19|0.00|3.01|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|0001A999|2|8| +22|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0006|Wowobora Gogobora|F10E|5520000|200004|41DD0000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9350|10000|||98.99|100.69|0.00|3.09|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|0001A999|3|8| +22|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0002|Suchichi Suchi|F10E|5520000|4|28F00000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|0001A999|4|8| +22|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0004|Buhojaqe Zijaqe|F10E|5520000|4|28690000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9350|10000|||99.87|101.53|0.00|3.11|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|0001A999|5|8| +22|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0003|Gegehi Gehi|F10E|5520000|4|28D50000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|6600|10000|||100.54|100.76|0.00|-3.11|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|0001A999|6|8| +22|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0008|Kokosaze Lulusaze|F10E|5520000|200004|43270000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|10000|10000|||99.96|103.20|0.00|3.14|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|0001A999|7|8| +38|2023-10-06T20:24:10.7760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|18||97.31|100.60|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.7760000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|89994|89453| +38|2023-10-06T20:24:10.7760000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|37||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.7760000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|63089|89453| +38|2023-10-06T20:24:10.7760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|10000|10000|30||99.96|103.20|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.7760000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|55377|89453| +38|2023-10-06T20:24:10.7760000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9350|10000|43||98.99|100.69|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.7760000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|56517|89453| +38|2023-10-06T20:24:10.7760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|29||96.63|99.86|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.7760000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:24:10.7760000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +38|2023-10-06T20:24:10.7760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9350|10000|42||99.87|101.53|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.7760000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|56517|89453| +38|2023-10-06T20:24:10.7760000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6600|10000|33||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.7760000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|51159|89453| +38|2023-10-06T20:24:10.7760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|26||97.99|101.19|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:10.7760000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|63038|89453| +37|2023-10-06T20:24:10.8640000-07:00|40022550|Zeromus|0001A997|26617183||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:10.3630000-07:00|Change|10FF0004||||||| +38|2023-10-06T20:24:10.8650000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6600|10000|33||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:10.8650000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +261|2023-10-06T20:24:10.3630000-07:00|Change|10FF0003||||| +21|2023-10-06T20:24:10.9090000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26617183|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A99A|0|1| +24|2023-10-06T20:24:10.9530000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|17CB|89453|89453|10000|10000|||96.63|99.86|0.00|3.10|10FF0006|Wowobora Gogobora|0|56517|56517|9350|10000|||98.99|100.70|0.00|2.58| +37|2023-10-06T20:24:10.9530000-07:00|40022550|Zeromus|0001A996|26602802||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:10.9530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|29||96.63|99.86|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:24:10.9970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.87|101.47|-0.01|3.11| +38|2023-10-06T20:24:10.9970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|10000|10000|30||99.96|103.20|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:10.9970000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +39|2023-10-06T20:24:11.0420000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|10000|10000|||97.31|100.60|0.00|3.00| +39|2023-10-06T20:24:11.0420000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|10000|10000|||99.96|103.20|0.00|3.14| +21|2023-10-06T20:24:11.1310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26602802|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9350|10000|||98.99|100.71|0.00|1.86|0001A99B|0|1| +38|2023-10-06T20:24:11.1310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|29||96.63|99.86|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:11.1310000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +21|2023-10-06T20:24:11.2200000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32714003|29140000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|26602802|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||97.31|100.60|0.00|3.00|0001A99C|0|1| +21|2023-10-06T20:24:11.3090000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|754003|384F0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|26602802|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6600|10000|||100.54|100.76|0.00|-3.11|0001A99D|0|1| +38|2023-10-06T20:24:11.3090000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6400|10000|33||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.3090000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +21|2023-10-06T20:24:11.3980000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D722003|406A0000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|26602802|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A99E|0|1| +38|2023-10-06T20:24:11.3980000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|37||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:11.3980000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:24:11.3980000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:11.4420000-07:00|40022550|Zeromus|0001A99A|26599905||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:11.4420000-07:00|10FF0002|Suchichi Suchi|0001A99A|63089|63089|10000|10000|37||99.72|99.63|0.00|3.13|1600|0|0|01|07000323|0|C1F00000|| +37|2023-10-06T20:24:11.4420000-07:00|10FF0001|Sesuga Sapisuga|0001A999|89453|89453|10000|10000|29||96.81|99.87|0.00|3.10|1300|0|0|01|10000552|0|41EB0416|| +21|2023-10-06T20:24:11.4420000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|714003|31350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26602802|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.21|101.37|0.00|3.10|0001A99F|0|1| +38|2023-10-06T20:24:11.4420000-07:00|40022550|Zeromus|005A5A00|26599905|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:24:11.4420000-07:00|A1A|Death's Design|39.08|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|63038| +24|2023-10-06T20:24:11.5750000-07:00|40022550|Zeromus|DoT|A92|4FB|26599905|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|55377|55377|10000|10000|||99.96|103.20|0.00|3.14| +37|2023-10-06T20:24:11.5750000-07:00|40022550|Zeromus|0001A998|26582063||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:11.5750000-07:00|10FF0008|Kokosaze Lulusaze|0001A998|55377|55377|10000|10000|30||99.96|103.20|0.00|3.14|1B00|0|0|01|04000A92|0|41700000|| +26|2023-10-06T20:24:11.5750000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:24:11.5750000-07:00|10FF0007|Kehabiqo Febiqo|0001A999|89994|89994|10000|10000|18||97.31|100.60|0.00|3.01|1501|0|0|01|04000552|0|41E9F3B3|| +21|2023-10-06T20:24:11.5760000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|24A20000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26582063|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|10000|10000|||99.96|103.20|0.00|3.14|0001A9A0|0|1| +38|2023-10-06T20:24:11.5760000-07:00|40022550|Zeromus|005A5A00|26582063|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:24:11.2590000-07:00|Change|10FF0008||| +37|2023-10-06T20:24:11.6650000-07:00|40022550|Zeromus|0001A99B|26582025||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:11.6650000-07:00|10FF0002|Suchichi Suchi|DoT|0|0|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.6650000-07:00|10FF0002|Suchichi Suchi|HoT|0|10F1|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +38|2023-10-06T20:24:11.6650000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:11.7100000-07:00|10FF0005|Wuwuchu Wuchu|0001A999|63038|63038|10000|10000|26||98.23|101.38|0.00|3.06|2702|0|0|01|02000552|0|41E8E144|| +24|2023-10-06T20:24:11.7100000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|51159|51159|6400|10000|||100.54|100.76|0.00|-3.11|10FF0006|Wowobora Gogobora|FFFFFFFF|56517|56517|9350|10000|||99.25|101.57|0.00|0.40| +24|2023-10-06T20:24:11.7100000-07:00|10FF0003|Gegehi Gehi|HoT|0|11AE|51159|51159|6400|10000|||100.54|100.76|0.00|-3.11|10FF0006|Wowobora Gogobora|0|56517|56517|9350|10000|||99.25|101.57|0.00|0.40| +261|2023-10-06T20:24:11.2590000-07:00|Add|4002283F||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:11.7100000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26582063|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||96.81|99.87|0.00|3.10|0001A9A1|0|1| +38|2023-10-06T20:24:11.7100000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6950|10000|23||100.54|100.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:24:11.7100000-07:00|10FF0001||||| +261|2023-10-06T20:24:11.3600000-07:00|Change|40022830||||| +38|2023-10-06T20:24:11.8010000-07:00|40022840||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:24:11.8010000-07:00|40022840||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +20|2023-10-06T20:24:11.8010000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.32|101.79|-0.02|0.39| +37|2023-10-06T20:24:11.8430000-07:00|40022550|Zeromus|0001A99C|26571509||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:11.8430000-07:00|10FF0006|Wowobora Gogobora|0001A999|56517|56517|9350|10000|43||99.32|101.79|-0.02|0.39|2803|0|0|01|03000552|0|41E7CCC9|| +261|2023-10-06T20:24:11.3600000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:24:11.3600000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T20:24:11.4720000-07:00|Change|10FF0003||||||||||||||||||||| +24|2023-10-06T20:24:11.8880000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|10FF0001|Sesuga Sapisuga|FFFFFFFF|89453|89453|10000|10000|||96.81|99.87|0.00|2.98| +24|2023-10-06T20:24:11.8880000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|101C|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|10FF0001|Sesuga Sapisuga|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98| +24|2023-10-06T20:24:11.8880000-07:00|10FF0003|Gegehi Gehi|HoT|798|1733|51159|51159|6950|10000|||100.56|100.85|0.00|1.49|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|E3A|56517|56517|9350|10000|||99.87|101.46|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0006|Wowobora Gogobora|HoT|798|17DF|56517|56517|9350|10000|||99.32|101.79|0.00|0.95|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|E3F|55377|55377|9700|10000|||99.96|103.20|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0002|Suchichi Suchi|HoT|798|E63|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|E04|63038|63038|10000|10000|||98.25|101.40|0.00|3.06|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E1E|89994|89994|10000|10000|||97.31|100.60|0.00|3.01|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|E31|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.8880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|113C|56517|56517|9350|10000|||99.87|101.46|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|9350|10000|||99.87|101.46|0.00|3.14| +38|2023-10-06T20:24:11.8880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|18||97.31|100.60|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:11.8880000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:11.8880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9700|10000|30||99.96|103.20|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:11.8880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9350|10000|43||99.32|101.79|0.00|0.95|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:11.8880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|24||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:11.8880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9350|10000|33||99.87|101.46|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.8880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:11.8880000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6950|10000|23||100.56|100.85|0.00|1.49|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.8880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:11.8880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|26||98.25|101.40|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.8880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +21|2023-10-06T20:24:11.9330000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|754003|3FCE0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26571509|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9350|10000|||99.87|101.46|0.00|3.14|0001A9A2|0|1| +37|2023-10-06T20:24:11.9780000-07:00|10FF0002|Suchichi Suchi|0001A999|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|1604|0|0|02|0552|0|41E6BC66|||||| +24|2023-10-06T20:24:11.9780000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|0|63038|63038|10000|10000|||98.25|101.40|0.00|3.06|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8950|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:11.9780000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1151|63038|63038|10000|10000|||98.25|101.40|0.00|3.06|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8950|10000|||99.87|101.46|0.00|3.14| +21|2023-10-06T20:24:11.9780000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|269F0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|26571509|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|0001A9A3|0|1| +38|2023-10-06T20:24:11.9780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|24||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:11.9780000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|89453|89453| +38|2023-10-06T20:24:11.9780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|17||98.25|101.40|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:12.0230000-07:00|40022550|Zeromus|0001A99E|26555019||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:12.0230000-07:00|10FF0002|Suchichi Suchi|0001A99E|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|1600|0|0|01|07000323|0|41F00000|| +24|2023-10-06T20:24:12.0230000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|56517|56517|9350|10000|||99.32|101.79|0.00|1.58|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8950|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:12.0230000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1150|56517|56517|9350|10000|||99.32|101.79|0.00|1.58|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8950|10000|||99.87|101.46|0.00|3.14| +38|2023-10-06T20:24:12.0230000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:12.0230000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9900|10000|35||99.32|101.79|0.00|1.58|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:11.5650000-07:00|Add|40022840||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:12.0660000-07:00|40022550|Zeromus|0001A99D|26540604||||||100.00|80.10|0.00|0.00| +03|2023-10-06T20:24:11.5650000-07:00|40022840|Carbuncle|00|5A|10FF0008|00||10261|13498|53095|53095|10000|10000|||99.97|101.47|0.00|0.00| +37|2023-10-06T20:24:12.1120000-07:00|10FF0004|Buhojaqe Zijaqe|0001A999|56517|56517|8950|10000|33||99.87|101.46|0.00|3.14|1C05|0|0|01|05000552|0|41E5A9F7|| +261|2023-10-06T20:24:11.6760000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T20:24:11.6760000-07:00|Change|40022840||| +37|2023-10-06T20:24:12.2010000-07:00|40022550|Zeromus|0001A9A0|26531226||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:12.2010000-07:00|10FF0005|Wuwuchu Wuchu|5F54|Arcane Crest|10FF0005|Wuwuchu Wuchu|F9F0F|A258000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.25|101.40|0.00|3.03|63038|63038|10000|10000|||98.25|101.40|0.00|3.03|0001A9A4|0|1| +38|2023-10-06T20:24:12.2010000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|27||98.25|101.40|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:12.2010000-07:00|A25|Crest of Time Borrowed|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:24:12.2450000-07:00|10FF0003|Gegehi Gehi|0001A999|51159|51159|6950|10000|23||100.58|101.27|0.00|0.65|2306|0|0|01|04000552|0|41E49788|| +37|2023-10-06T20:24:12.2450000-07:00|40022550|Zeromus|0001A9A1|26529144||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:12.2910000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|374A0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|26540604|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6950|10000|||100.58|101.27|0.00|0.65|0001A9A5|0|1| +38|2023-10-06T20:24:12.2910000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6650|10000|23||100.58|101.27|0.00|0.65|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:12.2910000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +26|2023-10-06T20:24:12.2910000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +37|2023-10-06T20:24:12.3350000-07:00|10FF0005|Wuwuchu Wuchu|0001A9A4|63038|63038|10000|10000|27||98.27|101.40|0.00|2.97|2700|0|0|01|04000A25|0|40A00000|| +38|2023-10-06T20:24:12.3350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|27||98.27|101.40|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:12.3800000-07:00|10FF0008|Kokosaze Lulusaze|0001A999|55377|55377|9700|10000|30||99.93|103.06|0.00|-3.10|1B07|0|0|01|0A000552|0|41E38519|| +24|2023-10-06T20:24:12.5570000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|89994|89994|10000|10000|||97.31|100.60|0.00|3.01|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8950|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:12.5570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|10E5|89994|89994|10000|10000|||97.31|100.60|0.00|3.01|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8950|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:12.5570000-07:00|40022550|Zeromus|DoT|A92|494|26529144|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|55377|55377|9700|10000|||99.93|102.96|0.00|-3.07| +24|2023-10-06T20:24:12.5570000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|55377|55377|9700|10000|||99.93|102.96|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8950|10000|||99.87|101.46|0.00|3.14| +24|2023-10-06T20:24:12.5570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1138|55377|55377|9700|10000|||99.93|102.96|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8950|10000|||99.87|101.46|0.00|3.14| +38|2023-10-06T20:24:12.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|15||97.31|100.60|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:12.5570000-07:00|40022550|Zeromus|005A5A00|26527972|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:24:12.5570000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:12.5570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9700|10000|21||99.93|102.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:12.6010000-07:00|40022550|Zeromus|0001A99F|26515375||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:12.7350000-07:00|40022550|Zeromus|0001A9A2|26499041||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:12.7350000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|341F0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|26515375|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9900|10000|||99.32|101.79|0.00|3.11|0001A9A6|0|1| +21|2023-10-06T20:24:12.8240000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26515375|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6650|10000|||100.60|101.61|-0.01|-3.11|0001A9A7|0|1| +34|2023-10-06T20:24:12.8240000-07:00|40022840|Carbuncle|40022840|Carbuncle|01| +261|2023-10-06T20:24:12.4540000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:24:12.4540000-07:00|Change|40022840||| +261|2023-10-06T20:24:12.4540000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:24:13.0460000-07:00|40022550|Zeromus|0001A9A5|26484887||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:13.0460000-07:00|10FF0003|Gegehi Gehi|0001A9A5|51159|51159|6650|10000|23||100.60|101.61|0.00|-3.11|2300|0|0|01|080004D2|0|41F00000|| +38|2023-10-06T20:24:13.0460000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6650|10000|23||100.60|101.61|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:13.0900000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2CD10000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26499041|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9700|10000|||99.93|102.95|0.00|-3.07|0001A9A8|0|1| +261|2023-10-06T20:24:12.5560000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:24:12.5560000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:24:13.1350000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||99.72|99.63|0.00|3.13| +21|2023-10-06T20:24:13.1350000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26484887|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9400|10000|||99.93|102.95|0.00|3.14|0001A9A9|0|1| +261|2023-10-06T20:24:12.6710000-07:00|Change|10FF0006||||||||||||||||| +39|2023-10-06T20:24:13.1810000-07:00|10FF0003|Gegehi Gehi|51159|51159|6850|10000|||100.60|101.61|0.00|-3.11| +24|2023-10-06T20:24:13.1810000-07:00|40022550|Zeromus|DoT|0|2F0E|26484887|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|89994|89994|10000|10000|||97.35|100.60|0.00|3.04| +21|2023-10-06T20:24:13.1810000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|720003|1A5F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26484887|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6650|10000|||100.60|101.61|0.00|-3.11|0001A9AA|0|1| +38|2023-10-06T20:24:13.1810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|15||97.35|100.60|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:13.1810000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:13.1810000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:13.1810000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:13.1810000-07:00|40022550|Zeromus|005A5A00|26472841|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:24:13.1810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9400|10000|21||99.93|102.95|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:13.1810000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:13.1810000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9500|10000|35||99.32|101.79|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:13.1810000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:13.1810000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:13.1810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|24||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:13.1810000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:24:13.1810000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:13.1810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8950|10000|33||99.69|101.45|0.00|-1.44|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:13.1810000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:13.1810000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6850|10000|23||100.60|101.61|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:13.1810000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:13.1810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|27||98.41|101.43|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:13.1810000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +39|2023-10-06T20:24:13.2240000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +37|2023-10-06T20:24:13.2690000-07:00|40022550|Zeromus|0001A9A3|26462954||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:13.3140000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26472841|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8950|10000|||99.65|101.45|0.00|-1.21|0001A9AB|0|1| +21|2023-10-06T20:24:13.3140000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26472841|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.41|101.43|0.00|3.10|0001A9AC|0|1| +36|2023-10-06T20:24:13.3140000-07:00|355C|3| +37|2023-10-06T20:24:13.3580000-07:00|40022550|Zeromus|0001A9A7|26462930||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:13.3580000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||96.81|99.87|0.00|2.98| +39|2023-10-06T20:24:13.3580000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|9150|10000|||99.62|101.46|0.00|-0.80| +24|2023-10-06T20:24:13.4030000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|17B8|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|10FF0006|Wowobora Gogobora|0|56517|56517|9500|10000|||99.32|101.79|0.00|3.11| +37|2023-10-06T20:24:13.4030000-07:00|40022550|Zeromus|0001A9A6|26449587||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:24:13.4030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.62|101.46|0.00|-0.80| +38|2023-10-06T20:24:13.4030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|24||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:24:13.4470000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||98.41|101.43|0.00|3.10| +39|2023-10-06T20:24:13.4910000-07:00|10FF0006|Wowobora Gogobora|56517|56517|9705|10000|||99.32|101.79|0.00|3.11| +37|2023-10-06T20:24:13.6710000-07:00|40022550|Zeromus|0001A9A9|26449448||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:13.6710000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|36CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26449587|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||97.54|100.82|0.00|0.79|0001A9AD|0|1| +37|2023-10-06T20:24:13.7160000-07:00|40022550|Zeromus|0001A9A8|26437975||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:13.7160000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AB40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26449587|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||97.54|100.82|0.00|0.79|0001A9AE|0|1| +21|2023-10-06T20:24:13.7160000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26449587|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A9AF|0|1| +37|2023-10-06T20:24:13.7590000-07:00|40022550|Zeromus|0001A9AA|26431224||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:13.8480000-07:00|40022550|Zeromus|0001A9AB|26431073||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:13.8480000-07:00|40022550|Zeromus|0001A9AC|26427823||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:13.8930000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|35800000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|26427823|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A9B0|0|1| +38|2023-10-06T20:24:13.8930000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:13.8930000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:24:13.8930000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:24:13.4480000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:24:13.9370000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|714003|37F20000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|26427823|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.41|101.43|0.00|3.10|0001A9B1|0|1| +261|2023-10-06T20:24:13.5390000-07:00|Change|10FF0003||| +21|2023-10-06T20:24:13.9830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26427823|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|0001A9B2|0|1| +31|2023-10-06T20:24:13.9830000-07:00|10FF0001||||| +39|2023-10-06T20:24:14.0280000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|10000|10000|||97.59|100.88|0.00|3.03| +39|2023-10-06T20:24:14.0280000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|9600|10000|||99.93|102.95|0.00|3.14| +38|2023-10-06T20:24:14.0280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|9150|10000|33||99.60|101.46|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:14.0280000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +261|2023-10-06T20:24:13.6390000-07:00|Change|10FF0008||| +261|2023-10-06T20:24:13.7580000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:24:13.7580000-07:00|Change|10FF0006||| +20|2023-10-06T20:24:14.2050000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.32|101.79|0.00|3.11| +37|2023-10-06T20:24:14.2500000-07:00|40022550|Zeromus|0001A9AE|26425083||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:14.2500000-07:00|40022550|Zeromus|0001A9AF|26422204||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:14.2500000-07:00|10FF0002|Suchichi Suchi|0001A9AF|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|1600|0|0|01|05000747|0|C1F00000|| +37|2023-10-06T20:24:14.2950000-07:00|40022550|Zeromus|0001A9AD|26408174||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:14.3400000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2F490000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26408174|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9150|10000|||99.60|101.46|0.00|3.12|0001A9B3|0|1| +37|2023-10-06T20:24:14.4290000-07:00|40022550|Zeromus|0001A9B1|26393852||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:13.9800000-07:00|Remove|40022820| +21|2023-10-06T20:24:14.4740000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|283D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|26408174|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|0001A9B4|0|1| +38|2023-10-06T20:24:14.4740000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9705|10000|35||99.32|101.79|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:14.4740000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:14.4740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|24||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:14.4740000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +37|2023-10-06T20:24:14.5180000-07:00|40022550|Zeromus|0001A9B2|26392092||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:14.5620000-07:00|40022550|Zeromus|0001A9B0|26378396||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:14.5620000-07:00|10FF0002|Suchichi Suchi|0001A9B0|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|1600|0|0|01|05000747|0|41F00000|| +21|2023-10-06T20:24:14.5620000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2BF10000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26392092|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9600|10000|||99.93|102.95|0.00|3.14|0001A9B5|0|1| +38|2023-10-06T20:24:14.5620000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|28||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:14.6070000-07:00|10FF0002|Suchichi Suchi|1D76|Bloodbath|10FF0002|Suchichi Suchi|190E|540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|0001A9B6|0|1| +21|2023-10-06T20:24:14.6070000-07:00|40022550|Zeromus|8B57|Void Meteor|40022550|Zeromus|1B|8B578000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26392092|40478540|10000|10000|||100.00|80.10|0.00|0.00|26392092|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A9B7|0|1| +38|2023-10-06T20:24:14.6070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8750|10000|33||99.60|101.46|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:14.6070000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +261|2023-10-06T20:24:14.1850000-07:00|Change|40022550||||| +24|2023-10-06T20:24:14.6510000-07:00|10FF0002|Suchichi Suchi|DoT|0|0|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +24|2023-10-06T20:24:14.6510000-07:00|10FF0002|Suchichi Suchi|HoT|0|10AF|63089|63089|10000|10000|||99.72|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +38|2023-10-06T20:24:14.6510000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|20||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:14.6510000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|63089|89453| +24|2023-10-06T20:24:14.6960000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|51159|51159|6850|10000|||100.60|101.61|0.00|-3.11|10FF0006|Wowobora Gogobora|FFFFFFFF|56517|56517|9705|10000|||99.32|101.79|0.00|3.11| +24|2023-10-06T20:24:14.6960000-07:00|10FF0003|Gegehi Gehi|HoT|0|1C52|51159|51159|6850|10000|||100.60|101.61|0.00|-3.11|10FF0006|Wowobora Gogobora|0|56517|56517|9705|10000|||99.32|101.79|0.00|3.11| +38|2023-10-06T20:24:14.6960000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7400|10000|13||100.60|101.61|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:14.6960000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|51159|89453| +20|2023-10-06T20:24:14.7400000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|100.60|101.61|0.00|-3.11| +38|2023-10-06T20:24:14.7400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9300|10000|21||99.93|102.95|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:14.7400000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +24|2023-10-06T20:24:14.8730000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|10FF0001|Sesuga Sapisuga|FFFFFFFF|89453|89453|10000|10000|||96.81|99.87|0.00|2.98| +24|2023-10-06T20:24:14.8730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|10E8|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|10FF0001|Sesuga Sapisuga|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98| +24|2023-10-06T20:24:14.8730000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +24|2023-10-06T20:24:14.8730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1A6F|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +38|2023-10-06T20:24:14.8730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|20||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:14.8730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8750|10000|25||99.60|101.46|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:14.8730000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|56517|89453| +38|2023-10-06T20:24:14.8730000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7400|10000|13||100.60|101.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:14.8730000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +24|2023-10-06T20:24:14.9630000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|0|63038|63038|10000|10000|||98.44|101.57|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +24|2023-10-06T20:24:14.9630000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1C74|63038|63038|10000|10000|||98.44|101.57|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +38|2023-10-06T20:24:14.9630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|19||98.44|101.57|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:14.5620000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T20:24:15.0070000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|56517|56517|9705|10000|||99.32|101.79|0.00|3.11|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +24|2023-10-06T20:24:15.0070000-07:00|10FF0006|Wowobora Gogobora|HoT|0|111C|56517|56517|9705|10000|||99.32|101.79|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +38|2023-10-06T20:24:15.0070000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|20||99.72|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.0070000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:15.0070000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|10000|10000|26||99.32|101.79|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.0070000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|56517|89453| +261|2023-10-06T20:24:14.6720000-07:00|Change|10FF0008||| +37|2023-10-06T20:24:15.1400000-07:00|40022550|Zeromus|0001A9B3|26366291||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:15.1400000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|58710000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|26378396|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|10000|10000|||99.32|101.79|0.00|3.11|0001A9B8|0|1| +38|2023-10-06T20:24:15.1400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|20||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.1400000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +261|2023-10-06T20:24:14.7940000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:24:14.7940000-07:00|Change|10FF0006||| +37|2023-10-06T20:24:15.2300000-07:00|40022550|Zeromus|0001A9B5|26355042||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:15.2740000-07:00|10FF0002|Suchichi Suchi|0001A9B6|63089|63089|10000|10000|20||99.72|99.63|0.00|3.13|1600|0|0|01|54|0|41A00000|| +26|2023-10-06T20:24:15.2740000-07:00|54|Bloodbath|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:24:15.2740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|15||97.61|100.91|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.2740000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:15.4080000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|19||98.28|101.76|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.4080000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +38|2023-10-06T20:24:15.4960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|20||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:15.4960000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:24:15.4960000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0001|Sesuga Sapisuga|00|89453|40478540| +24|2023-10-06T20:24:15.5420000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|114C|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +24|2023-10-06T20:24:15.5420000-07:00|40022550|Zeromus|DoT|A92|489|26355042|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|55377|55377|9300|10000|||99.93|102.95|0.00|3.14| +24|2023-10-06T20:24:15.5420000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +24|2023-10-06T20:24:15.5420000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|116E|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12| +38|2023-10-06T20:24:15.5420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|15||97.61|100.91|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.5420000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0007|Kehabiqo Febiqo|00|89994|40478540| +38|2023-10-06T20:24:15.5420000-07:00|40022550|Zeromus|005A5A00|26353881|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:24:15.5420000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:15.5420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9300|10000|13||99.93|102.95|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.5420000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|55377|89453| +21|2023-10-06T20:24:15.5870000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|26353881|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A9B9|0|1| +38|2023-10-06T20:24:15.5870000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|19||98.28|101.76|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.5870000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0005|Wuwuchu Wuchu|00|63038|40478540| +38|2023-10-06T20:24:15.6310000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|20||99.72|99.64|0.00|2.30|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.6310000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0002|Suchichi Suchi|00|63089|40478540| +04|2023-10-06T20:24:15.2330000-07:00|40022830|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|53095|0|10000|||101.66|102.76|0.00|3.14| +261|2023-10-06T20:24:15.2330000-07:00|Remove|40022830| +38|2023-10-06T20:24:15.6750000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7400|10000|13||100.60|101.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.6750000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0003|Gegehi Gehi|00|51159|40478540| +38|2023-10-06T20:24:15.7190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9300|10000|13||99.93|102.95|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.7190000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0008|Kokosaze Lulusaze|00|55377|40478540| +37|2023-10-06T20:24:15.7640000-07:00|40022550|Zeromus|0001A9B4|26343580||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:15.7640000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9600|10000|26||99.32|101.79|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:15.7640000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:15.7640000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0006|Wowobora Gogobora|00|56517|40478540| +24|2023-10-06T20:24:15.8090000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|23EA|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|10FF0006|Wowobora Gogobora|1|56517|56517|9600|10000|||99.32|101.79|0.00|3.11| +37|2023-10-06T20:24:15.8090000-07:00|40022550|Zeromus|0001A9B8|26320939||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:24:15.8110000-07:00|40022539|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001A9BA|0|8| +22|2023-10-06T20:24:15.8110000-07:00|40022539|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001A9BA|1|8| +22|2023-10-06T20:24:15.8110000-07:00|40022539|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001A9BA|2|8| +22|2023-10-06T20:24:15.8110000-07:00|40022539|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001A9BA|3|8| +22|2023-10-06T20:24:15.8110000-07:00|40022539|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001A9BA|4|8| +22|2023-10-06T20:24:15.8110000-07:00|40022539|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001A9BA|5|8| +22|2023-10-06T20:24:15.8110000-07:00|40022539|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001A9BA|6|8| +22|2023-10-06T20:24:15.8110000-07:00|40022539|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001A9BA|7|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253A|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001A9BB|0|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253A|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|1D6C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001A9BB|1|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253A|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|5AB0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001A9BB|2|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253A|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001A9BB|3|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253A|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001A9BB|4|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253A|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001A9BB|5|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253A|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001A9BB|6|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253A|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001A9BB|7|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253B|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|5950000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001A9BC|0|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253B|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001A9BC|1|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253B|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001A9BC|2|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253B|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001A9BC|3|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253B|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001A9BC|4|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253B|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001A9BC|5|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253B|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|36A0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001A9BC|6|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253B|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001A9BC|7|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253C|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|59E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001A9BD|0|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|40022539||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|4002253C|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001A9BD|1|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253C|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001A9BD|2|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253C|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001A9BD|3|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253C|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001A9BD|4|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253C|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001A9BD|5|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253C|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3700000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001A9BD|6|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253C|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001A9BD|7|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|4002253A||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|4002253D|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|52E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001A9BE|0|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253D|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001A9BE|1|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253D|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001A9BE|2|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253D|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|1D10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001A9BE|3|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|4002253B||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|4002253D|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001A9BE|4|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253D|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3510000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001A9BE|5|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253D|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001A9BE|6|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253D|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001A9BE|7|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253E|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|57B0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001A9BF|0|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253E|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|3520000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001A9BF|1|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253E|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|27D0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001A9BF|2|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253E|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001A9BF|3|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253E|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3460000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001A9BF|4|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253E|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001A9BF|5|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253E|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001A9BF|6|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253E|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|1DE0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001A9BF|7|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253F|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|2BD0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001A9C0|0|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253F|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|5250000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001A9C0|1|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253F|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3610000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001A9C0|2|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253F|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001A9C0|3|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253F|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5040000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001A9C0|4|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253F|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001A9C0|5|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253F|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001A9C0|6|8| +22|2023-10-06T20:24:15.8110000-07:00|4002253F|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|52A0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001A9C0|7|8| +22|2023-10-06T20:24:15.8110000-07:00|40022540|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|2AC0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001A9C1|0|8| +22|2023-10-06T20:24:15.8110000-07:00|40022540|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3570000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001A9C1|1|8| +22|2023-10-06T20:24:15.8110000-07:00|40022540|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|51B0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001A9C1|2|8| +22|2023-10-06T20:24:15.8110000-07:00|40022540|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001A9C1|3|8| +22|2023-10-06T20:24:15.8110000-07:00|40022540|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|53A0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001A9C1|4|8| +22|2023-10-06T20:24:15.8110000-07:00|40022540|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001A9C1|5|8| +22|2023-10-06T20:24:15.8110000-07:00|40022540|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5380000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001A9C1|6|8| +22|2023-10-06T20:24:15.8110000-07:00|40022540|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|50E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001A9C1|7|8| +22|2023-10-06T20:24:15.8110000-07:00|40022541|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|33C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001A9C2|0|8| +22|2023-10-06T20:24:15.8110000-07:00|40022541|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|36D0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001A9C2|1|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|4002253C||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|40022541|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|59F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001A9C2|2|8| +22|2023-10-06T20:24:15.8110000-07:00|40022541|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|59E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001A9C2|3|8| +22|2023-10-06T20:24:15.8110000-07:00|40022541|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001A9C2|4|8| +22|2023-10-06T20:24:15.8110000-07:00|40022541|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001A9C2|5|8| +22|2023-10-06T20:24:15.8110000-07:00|40022541|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4D00000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001A9C2|6|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|4002253D||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|40022541|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|4FA0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001A9C2|7|8| +22|2023-10-06T20:24:15.8110000-07:00|40022542|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|34B0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001A9C3|0|8| +22|2023-10-06T20:24:15.8110000-07:00|40022542|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3670000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001A9C3|1|8| +22|2023-10-06T20:24:15.8110000-07:00|40022542|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|5430000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001A9C3|2|8| +22|2023-10-06T20:24:15.8110000-07:00|40022542|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|5950000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001A9C3|3|8| +22|2023-10-06T20:24:15.8110000-07:00|40022542|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|44F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001A9C3|4|8| +22|2023-10-06T20:24:15.8110000-07:00|40022542|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001A9C3|5|8| +22|2023-10-06T20:24:15.8110000-07:00|40022542|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4FD0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001A9C3|6|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|4002253E||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|40022542|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5200000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001A9C3|7|8| +22|2023-10-06T20:24:15.8110000-07:00|40022543|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|3270000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001A9C4|0|8| +22|2023-10-06T20:24:15.8110000-07:00|40022543|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|36B0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001A9C4|1|8| +22|2023-10-06T20:24:15.8110000-07:00|40022543|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|5390000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001A9C4|2|8| +22|2023-10-06T20:24:15.8110000-07:00|40022543|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|5900000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001A9C4|3|8| +22|2023-10-06T20:24:15.8110000-07:00|40022543|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4E40000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001A9C4|4|8| +22|2023-10-06T20:24:15.8110000-07:00|40022543|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001A9C4|5|8| +22|2023-10-06T20:24:15.8110000-07:00|40022543|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5470000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001A9C4|6|8| +22|2023-10-06T20:24:15.8110000-07:00|40022543|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5160000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001A9C4|7|8| +22|2023-10-06T20:24:15.8110000-07:00|40022544|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|52F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001A9C5|0|8| +22|2023-10-06T20:24:15.8110000-07:00|40022544|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5450000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001A9C5|1|8| +22|2023-10-06T20:24:15.8110000-07:00|40022544|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|5A40000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001A9C5|2|8| +22|2023-10-06T20:24:15.8110000-07:00|40022544|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|51F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001A9C5|3|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|40022540||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|40022544|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|2550000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001A9C5|4|8| +22|2023-10-06T20:24:15.8110000-07:00|40022544|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|5A10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001A9C5|5|8| +22|2023-10-06T20:24:15.8110000-07:00|40022544|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|31F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001A9C5|6|8| +22|2023-10-06T20:24:15.8110000-07:00|40022544|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|34A0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001A9C5|7|8| +22|2023-10-06T20:24:15.8110000-07:00|40022545|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|2880000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001A9C6|0|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|4002253F||||||||||||| +261|2023-10-06T20:24:15.3400000-07:00|Change|40022541||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|40022545|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3560000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001A9C6|1|8| +22|2023-10-06T20:24:15.8110000-07:00|40022545|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|5830000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001A9C6|2|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|40022542||||||||||||| +22|2023-10-06T20:24:15.8110000-07:00|40022545|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|4BC0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001A9C6|3|8| +22|2023-10-06T20:24:15.8110000-07:00|40022545|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4E80000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001A9C6|4|8| +22|2023-10-06T20:24:15.8110000-07:00|40022545|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|5470000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001A9C6|5|8| +22|2023-10-06T20:24:15.8110000-07:00|40022545|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|52E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001A9C6|6|8| +22|2023-10-06T20:24:15.8110000-07:00|40022545|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4FC0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001A9C6|7|8| +22|2023-10-06T20:24:15.8110000-07:00|40022546|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|4FE0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001A9C7|0|8| +22|2023-10-06T20:24:15.8110000-07:00|40022546|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|4D10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001A9C7|1|8| +22|2023-10-06T20:24:15.8110000-07:00|40022546|Comet|8B5C|Meteor Impact|10FF0005|Wuwuchu Wuchu|750603|5740000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.28|101.76|0.00|-3.05|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001A9C7|2|8| +22|2023-10-06T20:24:15.8110000-07:00|40022546|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5100000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001A9C7|3|8| +22|2023-10-06T20:24:15.8110000-07:00|40022546|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4C90000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||99.60|101.46|0.00|3.12|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001A9C7|4|8| +22|2023-10-06T20:24:15.8110000-07:00|40022546|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3460000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001A9C7|5|8| +22|2023-10-06T20:24:15.8110000-07:00|40022546|Comet|8B5C|Meteor Impact|10FF0002|Suchichi Suchi|750603|5570000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.73|99.81|0.00|1.19|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001A9C7|6|8| +22|2023-10-06T20:24:15.8110000-07:00|40022546|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|3440000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001A9C7|7|8| +261|2023-10-06T20:24:15.3400000-07:00|Change|40022543||||||||||||| +20|2023-10-06T20:24:15.8110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.60|101.46|0.00|3.12| +38|2023-10-06T20:24:15.8110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|20||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:15.8110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8750|10000|25||99.60|101.46|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:15.8110000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0004|Buhojaqe Zijaqe|00|56517|40478540| +261|2023-10-06T20:24:15.3400000-07:00|Change|40022546||||||||||||| +261|2023-10-06T20:24:15.3400000-07:00|Change|40022545||||||||||||| +261|2023-10-06T20:24:15.3400000-07:00|Change|40022544||||||||||||| +261|2023-10-06T20:24:15.4460000-07:00|Change|40022546||| +261|2023-10-06T20:24:15.4460000-07:00|Change|40022543||| +261|2023-10-06T20:24:15.4460000-07:00|Change|4002253D||| +261|2023-10-06T20:24:15.4460000-07:00|Change|4002253E||| +261|2023-10-06T20:24:15.4460000-07:00|Change|40022541||| +261|2023-10-06T20:24:15.4460000-07:00|Change|40022539||| +261|2023-10-06T20:24:15.4460000-07:00|Change|40022542||| +261|2023-10-06T20:24:15.4460000-07:00|Change|40022540||| +261|2023-10-06T20:24:15.4460000-07:00|Change|4002253C||| +261|2023-10-06T20:24:15.4460000-07:00|Change|4002253B||| +261|2023-10-06T20:24:15.4460000-07:00|Change|40022544||| +261|2023-10-06T20:24:15.4460000-07:00|Change|40022545||| +261|2023-10-06T20:24:15.4460000-07:00|Change|4002253A||| +261|2023-10-06T20:24:15.4460000-07:00|Change|4002253F||| +21|2023-10-06T20:24:15.8980000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26320939|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9600|10000|||99.32|101.79|0.00|3.11|0001A9C8|0|1| +21|2023-10-06T20:24:16.0750000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2B7B0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26320939|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9300|10000|||99.93|102.95|0.00|3.14|0001A9C9|0|1| +21|2023-10-06T20:24:16.1190000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|3A2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26320939|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9CA|0|1| +261|2023-10-06T20:24:15.6610000-07:00|Change|10FF0008||| +39|2023-10-06T20:24:16.1640000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||99.76|100.30|0.00|0.46| +21|2023-10-06T20:24:16.1640000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|154003|3DE70000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|26320939|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11|0001A9CB|0|1| +38|2023-10-06T20:24:16.1640000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7200|10000|13||100.60|101.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.1640000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +30|2023-10-06T20:24:16.1640000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:24:15.7750000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:24:15.7750000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T20:24:16.2070000-07:00|10FF0003|Gegehi Gehi|51159|51159|7400|10000|||100.60|101.61|0.00|-3.11| +24|2023-10-06T20:24:16.2080000-07:00|40022550|Zeromus|DoT|0|2E96|26320939|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|89994|89994|10000|10000|||97.61|100.91|0.00|3.03| +38|2023-10-06T20:24:16.2080000-07:00|40022550|Zeromus|005A5A00|26309013|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +39|2023-10-06T20:24:16.2530000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +21|2023-10-06T20:24:16.2530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26320939|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||96.81|99.87|0.00|2.98|0001A9CC|0|1| +31|2023-10-06T20:24:16.2530000-07:00|10FF0001||||| +21|2023-10-06T20:24:16.2970000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26320939|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9000|10000|||99.93|102.95|0.00|3.14|0001A9CD|0|1| +36|2023-10-06T20:24:16.3410000-07:00|3638|3| +37|2023-10-06T20:24:16.3850000-07:00|10FF0007|Kehabiqo Febiqo|0001A9B9|89994|89994|10000|10000|0||97.61|100.91|0.00|3.03|1500|0|0|02|04000000|0|0|||||| +39|2023-10-06T20:24:16.3850000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||96.81|99.87|0.00|2.98| +39|2023-10-06T20:24:16.3850000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|8950|10000|||99.60|101.46|0.00|3.12| +38|2023-10-06T20:24:16.3850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||97.61|100.91|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.3850000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|89994|89453| +30|2023-10-06T20:24:16.3850000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +37|2023-10-06T20:24:16.4310000-07:00|40022550|Zeromus|0001A9C8|26308952||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:16.4310000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|3C080000|104|B388000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|26309013|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||99.78|100.54|0.00|0.09|0001A9CE|0|1| +21|2023-10-06T20:24:16.4310000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C710003|34100000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|26309013|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.28|101.76|0.00|-3.06|0001A9CF|0|1| +38|2023-10-06T20:24:16.4310000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|20||99.78|100.54|0.00|0.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.4310000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +39|2023-10-06T20:24:16.4740000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||98.28|101.76|0.00|-3.06| +37|2023-10-06T20:24:16.5200000-07:00|10FF0002|Suchichi Suchi|0001A9BA|63089|63089|10000|10000|0||99.78|100.54|0.00|0.09|1600|0|0|01|0E000000|0|0|| +37|2023-10-06T20:24:16.5200000-07:00|10FF0001|Sesuga Sapisuga|0001A9BB|89453|89453|10000|10000|0||96.81|99.87|0.00|2.98|1300|0|0|02|0F000000|0|0|||||| +37|2023-10-06T20:24:16.5200000-07:00|10FF0002|Suchichi Suchi|0001A9BC|61660||||||99.78|100.54|0.00|0.09| +37|2023-10-06T20:24:16.5200000-07:00|10FF0002|Suchichi Suchi|0001A9BD|60222||||||99.78|100.54|0.00|0.09| +37|2023-10-06T20:24:16.5200000-07:00|10FF0002|Suchichi Suchi|0001A9BE|58896||||||99.78|100.54|0.00|0.09| +37|2023-10-06T20:24:16.5200000-07:00|10FF0002|Suchichi Suchi|0001A9BF|57493||||||99.78|100.54|0.00|0.09| +37|2023-10-06T20:24:16.5200000-07:00|10FF0001|Sesuga Sapisuga|0001A9C0|88752||||||96.81|99.87|0.00|2.98| +37|2023-10-06T20:24:16.5200000-07:00|10FF0001|Sesuga Sapisuga|0001A9C1|88068||||||96.81|99.87|0.00|2.98| +37|2023-10-06T20:24:16.5200000-07:00|10FF0001|Sesuga Sapisuga|0001A9C2|87240||||||96.81|99.87|0.00|2.98| +37|2023-10-06T20:24:16.5200000-07:00|10FF0001|Sesuga Sapisuga|0001A9C3|86397||||||96.81|99.87|0.00|2.98| +37|2023-10-06T20:24:16.5200000-07:00|10FF0001|Sesuga Sapisuga|0001A9C4|85590||||||96.81|99.87|0.00|2.98| +37|2023-10-06T20:24:16.5200000-07:00|10FF0003|Gegehi Gehi|0001A9C5|49832|51159|7400|10000|0||100.60|101.61|0.00|-3.11|2300|0|0|01|0C000000|0|0|| +37|2023-10-06T20:24:16.5200000-07:00|10FF0001|Sesuga Sapisuga|0001A9C6|84942||||||96.81|99.87|0.00|2.98| +37|2023-10-06T20:24:16.5200000-07:00|10FF0008|Kokosaze Lulusaze|0001A9C7|54099|55377|9000|10000|0||99.93|102.95|0.00|3.14|1B00|0|0|01|11000000|0|0|| +39|2023-10-06T20:24:16.5200000-07:00|10FF0006|Wowobora Gogobora|56517|56517|9805|10000|||99.32|101.79|0.00|3.11| +21|2023-10-06T20:24:16.5200000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AEF0000|104|20A8000|0|0|0|0|0|0|0|0|0|0|0|0|26309013|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||99.78|100.54|0.00|0.09|0001A9D0|0|1| +21|2023-10-06T20:24:16.5200000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|FF10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26309013|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.28|101.76|0.00|-3.06|0001A9D1|0|1| +38|2023-10-06T20:24:16.5200000-07:00|10FF0002|Suchichi Suchi|005A5A16|57493|63089|10000|10000|0||99.78|100.54|0.00|0.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.5200000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:16.5200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54099|55377|9000|10000|0||99.93|102.95|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.5200000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:16.5210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84942|89453|10000|10000|0||96.81|99.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.5210000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:24:16.5210000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +38|2023-10-06T20:24:16.5210000-07:00|10FF0003|Gegehi Gehi|005A5A23|49832|51159|7400|10000|0||100.60|101.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.5210000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +261|2023-10-06T20:24:16.1180000-07:00|Change|10FF0006||| +37|2023-10-06T20:24:16.5640000-07:00|10FF0007|Kehabiqo Febiqo|0001A9BB|82462||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.5640000-07:00|10FF0001|Sesuga Sapisuga|0001A9BF|84092||||||96.81|99.87|0.00|2.98| +37|2023-10-06T20:24:16.5640000-07:00|10FF0002|Suchichi Suchi|0001A9C0|56176||||||99.78|100.54|0.00|0.09| +37|2023-10-06T20:24:16.5640000-07:00|10FF0007|Kehabiqo Febiqo|0001A9C1|81607||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.5640000-07:00|10FF0007|Kehabiqo Febiqo|0001A9C2|80730||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.5640000-07:00|10FF0007|Kehabiqo Febiqo|0001A9C3|79859||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.5640000-07:00|10FF0007|Kehabiqo Febiqo|0001A9C4|78984||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.5640000-07:00|10FF0008|Kokosaze Lulusaze|0001A9C5|52750||||||99.93|102.95|0.00|3.14| +37|2023-10-06T20:24:16.5640000-07:00|10FF0007|Kehabiqo Febiqo|0001A9C6|78130||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.5640000-07:00|10FF0006|Wowobora Gogobora|0001A9C7|55284|56517|9805|10000|0||99.32|101.79|0.00|3.11|2801|0|0|01|0F000000|0|0|| +38|2023-10-06T20:24:16.5640000-07:00|10FF0006|Wowobora Gogobora|005A5A28|55284|56517|9805|10000|0||99.32|101.79|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.5640000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:24:16.6090000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9BA|56517|56517|8950|10000|0||99.60|101.46|0.00|3.12|1C02|0|0|01|12000000|0|0|| +37|2023-10-06T20:24:16.6090000-07:00|10FF0002|Suchichi Suchi|0001A9BB|54725||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:16.6090000-07:00|10FF0003|Gegehi Gehi|0001A9BF|49195||||||100.60|101.61|0.00|-3.11| +37|2023-10-06T20:24:16.6090000-07:00|10FF0007|Kehabiqo Febiqo|0001A9C0|77265||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.6090000-07:00|10FF0002|Suchichi Suchi|0001A9C1|53418||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:16.6090000-07:00|10FF0002|Suchichi Suchi|0001A9C2|51979||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:16.6090000-07:00|10FF0005|Wuwuchu Wuchu|0001A9C3|61691|63038|10000|10000|0||98.28|101.76|0.00|3.06|2702|0|0|03|02000A26|0|41700000|||||||||| +30|2023-10-06T20:24:16.6090000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|63038|89453| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|15.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:24:16.6090000-07:00|10FF0005|Wuwuchu Wuchu|0001A9C4|60354||||||98.28|101.76|0.00|3.06| +37|2023-10-06T20:24:16.6090000-07:00|10FF0002|Suchichi Suchi|0001A9C5|50535||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:16.6090000-07:00|10FF0005|Wuwuchu Wuchu|0001A9C6|58943||||||98.28|101.76|0.00|3.06| +37|2023-10-06T20:24:16.6090000-07:00|10FF0005|Wuwuchu Wuchu|0001A9C7|57547||||||98.28|101.76|0.00|3.06| +38|2023-10-06T20:24:16.6090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77265|89994|10000|10000|0||97.61|100.91|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|89994|63038| +38|2023-10-06T20:24:16.6090000-07:00|10FF0002|Suchichi Suchi|005A5A16|50535|63089|10000|10000|0||99.78|100.54|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|63089|63038| +38|2023-10-06T20:24:16.6090000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|3.13|0|0|0|||||||||| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|54201|63038| +38|2023-10-06T20:24:16.6090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|52750|55377|9000|10000|0||99.93|102.95|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|55377|63038| +38|2023-10-06T20:24:16.6090000-07:00|40022840|Carbuncle|005A5A00|53095|53095|10000|10000|0||99.97|101.47|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T20:24:16.6090000-07:00|30|Well Fed|2202.62|10FF0008|Kokosaze Lulusaze|40022840|Carbuncle|2964|53095|55377| +26|2023-10-06T20:24:16.6090000-07:00|441|HP Penalty|9999.00|E0000000||40022840|Carbuncle|00|53095|| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|40022840|Carbuncle|00|53095|63038| +38|2023-10-06T20:24:16.6090000-07:00|10FF0006|Wowobora Gogobora|005A5A28|55284|56517|9805|10000|0||99.32|101.79|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|56517|63038| +38|2023-10-06T20:24:16.6090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84092|89453|10000|10000|0||96.65|99.79|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|89453|63038| +38|2023-10-06T20:24:16.6090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8950|10000|0||99.60|101.46|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|56517|63038| +30|2023-10-06T20:24:16.6090000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:16.6090000-07:00|10FF0003|Gegehi Gehi|005A5A23|49195|51159|7400|10000|0||100.60|101.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.6090000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|51159|63038| +38|2023-10-06T20:24:16.6090000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|57547|63038|10000|10000|0||98.28|101.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.6090000-07:00|A25|Crest of Time Borrowed|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:24:16.6090000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:24:16.6530000-07:00|10FF0001|Sesuga Sapisuga|0001A9BE|83627||||||96.65|99.79|0.00|3.10| +37|2023-10-06T20:24:16.6530000-07:00|10FF0005|Wuwuchu Wuchu|0001A9C2|56109||||||98.28|101.76|0.00|3.06| +37|2023-10-06T20:24:16.6530000-07:00|10FF0002|Suchichi Suchi|0001A9C3|49106||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:16.6530000-07:00|10FF0002|Suchichi Suchi|0001A9C4|47682||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:16.6530000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9C5|55206||||||99.60|101.46|0.00|3.12| +37|2023-10-06T20:24:16.6530000-07:00|10FF0006|Wowobora Gogobora|0001A9C6|54072||||||99.32|101.79|0.00|3.11| +37|2023-10-06T20:24:16.6530000-07:00|10FF0003|Gegehi Gehi|0001A9C7|47899||||||100.60|101.61|0.00|-3.11| +20|2023-10-06T20:24:16.6530000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.32|101.79|0.00|3.11| +261|2023-10-06T20:24:16.2220000-07:00|Change|4002254E||||||||| +261|2023-10-06T20:24:16.2220000-07:00|Change|4002254D||||||||| +261|2023-10-06T20:24:16.2220000-07:00|Change|4002254C||||||||| +257|2023-10-06T20:24:16.6530000-07:00|80034E7C|00020001|01|00|0000| +261|2023-10-06T20:24:16.2220000-07:00|Change|4002254B||||||||| +261|2023-10-06T20:24:16.2220000-07:00|Change|40022549||||||||| +261|2023-10-06T20:24:16.2220000-07:00|Change|40022548||||||||| +261|2023-10-06T20:24:16.2220000-07:00|Change|40022547||||||||| +261|2023-10-06T20:24:16.2220000-07:00|Change|4002254A||||||||| +00|2023-10-06T20:24:16.0000000-07:00|0044|Zeromus|In my memory the stars yet shine, attending the moon...| +37|2023-10-06T20:24:16.6970000-07:00|10FF0007|Kehabiqo Febiqo|0001A9BF|76427||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.6970000-07:00|10FF0003|Gegehi Gehi|0001A9C0|46615||||||100.60|101.61|0.00|-3.11| +37|2023-10-06T20:24:16.6970000-07:00|10FF0005|Wuwuchu Wuchu|0001A9C1|54771||||||98.28|101.76|0.00|3.09| +37|2023-10-06T20:24:16.6970000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9C3|54103||||||99.60|101.46|0.00|3.12| +37|2023-10-06T20:24:16.6970000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9C4|52851||||||99.60|101.46|0.00|3.12| +37|2023-10-06T20:24:16.6970000-07:00|10FF0006|Wowobora Gogobora|0001A9C5|53475||||||99.32|101.79|0.00|3.11| +37|2023-10-06T20:24:16.6970000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9C6|51595||||||99.60|101.46|0.00|3.12| +37|2023-10-06T20:24:16.6970000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9C7|50370||||||99.60|101.46|0.00|3.12| +37|2023-10-06T20:24:16.6970000-07:00|40022550|Zeromus|0001A9C9|26297821||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:16.6970000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:16.6970000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:16.6970000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:16.6970000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:16.7410000-07:00|40022550|Zeromus|0001A9CA|26282930||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:16.7410000-07:00|10FF0007|Kehabiqo Febiqo|0001A9BE|75578||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.7410000-07:00|10FF0005|Wuwuchu Wuchu|0001A9C5|53330||||||98.28|101.76|0.00|3.09| +37|2023-10-06T20:24:16.7410000-07:00|10FF0002|Suchichi Suchi|0001A9C6|46331||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:16.7410000-07:00|10FF0007|Kehabiqo Febiqo|0001A9C7|74740||||||97.61|100.91|0.00|3.03| +20|2023-10-06T20:24:16.7410000-07:00|40022550|Zeromus|8B56|Meteor Impact|40022550|Zeromus|10.700|100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:16.7410000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30C10000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26308952|40478540|10000|10000|||100.00|80.10|0.00|0.00|55206|56517|8950|10000|||99.60|101.46|0.00|3.12|0001A9D2|0|1| +37|2023-10-06T20:24:16.7860000-07:00|10FF0007|Kehabiqo Febiqo|0001A9BC|73866||||||97.61|100.91|0.00|3.03| +261|2023-10-06T20:24:16.3330000-07:00|Change|40022550||||||||| +37|2023-10-06T20:24:16.7860000-07:00|10FF0007|Kehabiqo Febiqo|0001A9BD|72986||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.7860000-07:00|10FF0003|Gegehi Gehi|0001A9C1|45279||||||100.60|101.61|0.00|-3.11| +37|2023-10-06T20:24:16.7860000-07:00|10FF0003|Gegehi Gehi|0001A9C2|44047||||||100.60|101.61|0.00|-3.11| +37|2023-10-06T20:24:16.7860000-07:00|10FF0003|Gegehi Gehi|0001A9C3|42770||||||100.60|101.61|0.00|-3.11| +37|2023-10-06T20:24:16.7860000-07:00|10FF0003|Gegehi Gehi|0001A9C4|41419||||||100.60|101.61|0.00|-3.11| +37|2023-10-06T20:24:16.7860000-07:00|10FF0007|Kehabiqo Febiqo|0001A9C5|72187||||||97.61|100.91|0.00|3.03| +37|2023-10-06T20:24:16.7860000-07:00|10FF0008|Kokosaze Lulusaze|0001A9C6|51424||||||99.93|102.95|0.00|3.14| +37|2023-10-06T20:24:16.7860000-07:00|10FF0002|Suchichi Suchi|0001A9C7|44964||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:16.7860000-07:00|40022550|Zeromus|0001A9CC|26281259||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:16.7860000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:16.7860000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:16.7860000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:16.7860000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:16.8310000-07:00|10FF0008|Kokosaze Lulusaze|0001A9BF|50946||||||99.93|102.97|-0.02|2.96| +37|2023-10-06T20:24:16.8310000-07:00|10FF0008|Kokosaze Lulusaze|0001A9C0|49624||||||99.93|102.97|-0.02|2.96| +37|2023-10-06T20:24:16.8310000-07:00|10FF0008|Kokosaze Lulusaze|0001A9C1|48330||||||99.93|102.97|-0.02|2.96| +37|2023-10-06T20:24:16.8310000-07:00|10FF0008|Kokosaze Lulusaze|0001A9C2|47056||||||99.93|102.97|-0.02|2.96| +37|2023-10-06T20:24:16.8310000-07:00|10FF0008|Kokosaze Lulusaze|0001A9C3|45744||||||99.93|102.97|-0.02|2.96| +37|2023-10-06T20:24:16.8310000-07:00|10FF0008|Kokosaze Lulusaze|0001A9C4|44442||||||99.93|102.97|-0.02|2.96| +37|2023-10-06T20:24:16.8310000-07:00|10FF0001|Sesuga Sapisuga|0001A9C5|82785||||||96.25|99.63|0.00|3.10| +37|2023-10-06T20:24:16.8310000-07:00|10FF0003|Gegehi Gehi|0001A9C6|40143||||||100.60|101.61|0.00|-3.11| +37|2023-10-06T20:24:16.8310000-07:00|10FF0001|Sesuga Sapisuga|0001A9C7|81949||||||96.25|99.63|0.00|3.10| +37|2023-10-06T20:24:16.8310000-07:00|40022550|Zeromus|0001A9CD|26281068||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:16.8750000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:16.8750000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:16.8750000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:16.8750000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:16.8750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|50370|56517|8550|10000|0||99.60|101.46|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.8750000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:16.8750000-07:00|10FF0003|Gegehi Gehi|005A5A23|40143|51159|7400|10000|0||100.60|101.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.8750000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:16.8750000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|53330|63038|10000|10000|0||98.28|101.76|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.8750000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +22|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0007|Kehabiqo Febiqo|5BB0E|5B10000|1C640E|83C0000|200004|2D190000|0|0|0|0|0|0|0|0|0|0|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D3|0|8| +22|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0005|Wuwuchu Wuchu|5EF0E|5B10000|1C640E|83C0000|200004|2E860000|0|0|0|0|0|0|0|0|0|0|53330|63038|10000|10000|||98.28|101.76|0.00|-3.12|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D3|1|8| +22|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0006|Wowobora Gogobora|51D0E|5B10000|1C640E|83C0000|4|1CD70000|0|0|0|0|0|0|0|0|0|0|53475|56517|9805|10000|||99.32|101.79|0.00|3.11|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D3|2|8| +22|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0001|Sesuga Sapisuga|5690E|5B10000|1C640E|83C0000|4|1C880000|0|0|0|0|0|0|0|0|0|0|81949|89453|10000|10000|||95.62|99.60|0.00|3.10|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D3|3|8| +22|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0004|Buhojaqe Zijaqe|51D0E|5B10000|1C640E|83C0000|4|1C2D0000|0|0|0|0|0|0|0|0|0|0|50370|56517|8550|10000|||99.60|101.46|0.00|3.12|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D3|4|8| +22|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0002|Suchichi Suchi|5F70E|5B10000|1C640E|83C0000|200004|2DDB0000|0|0|0|0|0|0|0|0|0|0|44964|63089|10000|10000|||99.78|100.54|0.00|3.13|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D3|5|8| +22|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0003|Gegehi Gehi|5F90E|5B10000|1C640E|83C0000|4|1C350000|0|0|0|0|0|0|0|0|0|0|40143|51159|7400|10000|||100.60|101.61|0.00|-3.11|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D3|6|8| +22|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0008|Kokosaze Lulusaze|5720E|5B10000|1C640E|83C0000|200004|2CDC0000|0|0|0|0|0|0|0|0|0|0|44442|55377|9000|10000|||99.93|103.04|0.00|2.15|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D3|7|8| +38|2023-10-06T20:24:16.9210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|72187|89994|10000|10000|14||97.61|100.91|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.9210000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +26|2023-10-06T20:24:16.9210000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +26|2023-10-06T20:24:16.9210000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:24:16.9210000-07:00|10FF0002|Suchichi Suchi|005A5A16|44964|63089|10000|10000|14||99.78|100.54|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.9210000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:24:16.9210000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|63089|89994| +26|2023-10-06T20:24:16.9210000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|63089|89994| +38|2023-10-06T20:24:16.9210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|44442|55377|9000|10000|14||99.93|103.04|0.00|2.15|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.9210000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +26|2023-10-06T20:24:16.9210000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|55377|89994| +26|2023-10-06T20:24:16.9210000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|55377|89994| +38|2023-10-06T20:24:16.9210000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53475|56517|9805|10000|14||99.32|101.79|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.9210000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|56517|89994| +26|2023-10-06T20:24:16.9210000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|56517|89994| +30|2023-10-06T20:24:16.9210000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:16.9210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|81949|89453|10000|10000|14||95.62|99.60|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.9210000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:24:16.9210000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|89453|89994| +26|2023-10-06T20:24:16.9210000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|89453|89994| +38|2023-10-06T20:24:16.9210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|50370|56517|8550|10000|14||99.60|101.46|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.9210000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|56517|89994| +26|2023-10-06T20:24:16.9210000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|56517|89994| +38|2023-10-06T20:24:16.9210000-07:00|10FF0003|Gegehi Gehi|005A5A23|40143|51159|7400|10000|14||100.60|101.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.9210000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|51159|89994| +26|2023-10-06T20:24:16.9210000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|51159|89994| +38|2023-10-06T20:24:16.9210000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|53330|63038|10000|10000|14||98.28|101.76|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:16.9210000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|63038|89994| +26|2023-10-06T20:24:16.9210000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|63038|89994| +37|2023-10-06T20:24:16.9650000-07:00|40022550|Zeromus|0001A9CB|26265221||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:16.9650000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:16.9650000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:16.9650000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:16.9650000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:16.9650000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|714003|31260000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|26281068|40478540|10000|10000|||100.00|80.10|0.00|0.00|81949|89453|10000|10000|||95.62|99.60|0.00|3.10|0001A9D4|0|1| +38|2023-10-06T20:24:16.9650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|81949|89453|10000|10000|14||95.62|99.60|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:16.9650000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +37|2023-10-06T20:24:17.0090000-07:00|40022550|Zeromus|0001A9CF|26251893||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:17.0540000-07:00|40022550|Zeromus|0001A9CE|26236525||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:17.0540000-07:00|10FF0002|Suchichi Suchi|0001A9CE|47836||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:17.0540000-07:00|40022550|Zeromus|0001A9D0|26233726||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:17.0540000-07:00|10FF0002|Suchichi Suchi|0001A9D0|48358||||||99.78|100.54|0.00|3.13| +37|2023-10-06T20:24:17.0540000-07:00|40022550|Zeromus|0001A9D1|26229645||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:17.0540000-07:00|10FF0007|Kehabiqo Febiqo|73086|89994|10000|10000|||97.61|100.91|0.00|3.03| +39|2023-10-06T20:24:17.0540000-07:00|10FF0008|Kokosaze Lulusaze|44995|55377|9200|10000|||99.93|103.10|0.00|1.43| +35|2023-10-06T20:24:17.0540000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.0540000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.0540000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.0540000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:17.0980000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26265221|40478540|10000|10000|||100.00|80.10|0.00|0.00|72187|89994|10000|10000|||97.61|100.91|0.00|3.03|0001A9D5|0|1| +35|2023-10-06T20:24:17.1420000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.1420000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.1420000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.1420000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +261|2023-10-06T20:24:16.6720000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:24:17.1870000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|34D00000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|26229645|40478540|10000|10000|||100.00|80.10|0.00|0.00|40143|51159|7400|10000|||100.60|101.61|0.00|-3.11|0001A9D6|0|1| +38|2023-10-06T20:24:17.1870000-07:00|10FF0003|Gegehi Gehi|005A5A23|40143|51159|7100|10000|14||100.60|101.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:17.1870000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:24:16.7950000-07:00|Change|10FF0003||| +261|2023-10-06T20:24:16.7950000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T20:24:17.2310000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|14800000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|48358|63089|10000|10000|||99.78|100.54|0.00|3.13|54201|54201|10000|10000|||99.81|96.03|0.00|1.65|0001A9D7|0|1| +35|2023-10-06T20:24:17.2310000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.2310000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.2310000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.2310000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +35|2023-10-06T20:24:17.3200000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.3200000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.3200000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.3200000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +35|2023-10-06T20:24:17.4090000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.4090000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.4090000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.4090000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +35|2023-10-06T20:24:17.4980000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.4980000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.4980000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.4980000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:17.4980000-07:00|40022550|Zeromus|005A5A00|26229645|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:24:17.4980000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40022550|Zeromus|00|40478540|89994| +261|2023-10-06T20:24:17.1440000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:24:17.5420000-07:00|40022550|Zeromus|0001A9D2|26217164||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:17.5880000-07:00|40022666|Ruby Carbuncle|HoT|0|48C|54201|54201|10000|10000|||99.81|96.03|0.00|0.64|10FF0005|Wuwuchu Wuchu|0|53330|63038|10000|10000|||98.25|101.77|0.00|-3.01| +35|2023-10-06T20:24:17.5880000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.5880000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.5880000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.5880000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +20|2023-10-06T20:24:17.5880000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|1.486|100.01|105.41|0.00|0.22| +21|2023-10-06T20:24:17.5880000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5B2D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|26229645|40478540|10000|10000|||100.00|80.10|0.00|0.00|53475|56517|9805|10000|||99.32|101.79|0.00|3.11|0001A9D8|0|1| +38|2023-10-06T20:24:17.5880000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|0.64|0|0|0|||||||||| +261|2023-10-06T20:24:17.2440000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:17.6330000-07:00|40022550|Zeromus|0001A9D5|26214364||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:17.6330000-07:00|10FF0002|Suchichi Suchi|HoT|0|2960|48358|63089|10000|10000|||99.74|100.54|0.00|-1.82|10FF0006|Wowobora Gogobora|0|53475|56517|9805|10000|||99.32|101.79|0.00|3.11| +38|2023-10-06T20:24:17.6330000-07:00|10FF0002|Suchichi Suchi|005A5A16|58950|63089|10000|10000|14||99.74|100.54|0.00|-1.82|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:17.6770000-07:00|10FF0003|Gegehi Gehi|HoT|0|1FBC|40143|51159|7100|10000|||100.66|101.53|0.00|2.76|10FF0006|Wowobora Gogobora|0|53475|56517|9405|10000|||99.32|101.79|0.00|3.11| +35|2023-10-06T20:24:17.6770000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.6770000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.6770000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.6770000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:17.6770000-07:00|10FF0003|Gegehi Gehi|005A5A23|48267|51159|7650|10000|14||100.66|101.53|0.00|2.76|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:17.7210000-07:00|10FF0007|Kehabiqo Febiqo|0001A9D3|84631|89994|10000|10000|14||96.70|99.84|0.00|3.14|1500|0|0|02|050005B1|0|41E9EF9B|||||| +39|2023-10-06T20:24:17.7660000-07:00|40022840|Carbuncle|53095|53095|10000|10000|||100.56|102.39|0.00|0.48| +24|2023-10-06T20:24:17.7660000-07:00|40022840|Carbuncle|HoT|0|48C|53095|53095|10000|10000|||100.56|102.39|0.00|0.48|10FF0005|Wuwuchu Wuchu|0|53330|63038|10000|10000|||97.43|101.90|0.00|-2.99| +35|2023-10-06T20:24:17.7660000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.7660000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.7660000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.7660000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:17.7660000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26214364|40478540|10000|10000|||100.00|80.10|0.00|0.00|48267|51159|7650|10000|||100.69|101.49|-0.01|2.53|0001A9D9|0|1| +38|2023-10-06T20:24:17.7670000-07:00|40022840|Carbuncle|005A5A00|53095|53095|10000|10000|0||100.56|102.39|0.00|0.48|0|0|0|||||||||| +37|2023-10-06T20:24:17.8550000-07:00|10FF0005|Wuwuchu Wuchu|0001A9D3|63038|63038|10000|10000|14||97.43|101.90|0.00|-2.99|2701|0|0|02|040005B1|0|41E8DF38|||||| +24|2023-10-06T20:24:17.8550000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2500|81949|89453|10000|10000|||91.22|99.39|0.00|3.10|E0000000||0||||||||||| +24|2023-10-06T20:24:17.8550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1E87|50370|56517|8550|10000|||101.62|101.35|0.00|1.77|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||99.81|96.03|0.00|-0.01| +35|2023-10-06T20:24:17.8550000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.8550000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.8550000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.8550000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:17.8550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||91.22|99.39|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:17.8550000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:17.8550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8550|10000|14||101.62|101.35|0.00|1.77|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:17.9430000-07:00|40022550|Zeromus|0001A9D6|26200844||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:17.9430000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1F34|63038|63038|10000|10000|||96.92|101.98|0.00|-2.98|E0000000||0||||||||||| +35|2023-10-06T20:24:17.9440000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:17.9440000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.9440000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:17.9440000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:17.9440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||96.92|101.98|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:17.9880000-07:00|10FF0006|Wowobora Gogobora|0001A9D3|56517|56517|9405|10000|14||99.32|101.79|0.00|3.11|2802|0|0|02|040005B1|0|41E7CED6|||||| +24|2023-10-06T20:24:17.9880000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1E5B|53475|56517|9405|10000|||99.32|101.79|0.00|3.11|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||99.81|96.03|0.00|-0.08| +38|2023-10-06T20:24:17.9880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9405|10000|14||99.32|101.79|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:17.9880000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:17.9880000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:24:18.0330000-07:00|10FF0002|Suchichi Suchi|0001A9D7|63089||||||97.86|100.26|0.00|-0.34| +35|2023-10-06T20:24:18.0330000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.0330000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.0330000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.0330000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +261|2023-10-06T20:24:17.7400000-07:00|Change|10FF0008||||||||||||||||||||| +37|2023-10-06T20:24:18.1210000-07:00|10FF0001|Sesuga Sapisuga|0001A9D3|89453|89453|10000|10000|14||91.27|99.15|0.00|2.92|1303|0|0|02|050005B1|0|41E6BE73|||||| +35|2023-10-06T20:24:18.1210000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.1210000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.1210000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.1210000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +35|2023-10-06T20:24:18.2100000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.2100000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.2100000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.2100000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +261|2023-10-06T20:24:17.8590000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:24:18.0990000-07:00|Change|10FF0002||||||||||| +37|2023-10-06T20:24:18.2550000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9D3|56517|56517|8550|10000|14||103.67|101.27|0.00|2.05|1C04|0|0|02|040005B1|0|41E5AC04|||||| +24|2023-10-06T20:24:18.2550000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|22FA|89453|89453|10000|10000|||91.27|99.15|0.00|2.92|10FF0006|Wowobora Gogobora|1|56517|56517|9405|10000|||99.28|101.81|0.00|-1.83| +37|2023-10-06T20:24:18.2550000-07:00|40022550|Zeromus|0001A9D8|26177503||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:18.2550000-07:00|40022550|Zeromus|0001A9D4|26164921||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:18.2550000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|26200844|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8550|10000|||103.67|101.27|0.00|2.05|0001A9DA|0|1| +38|2023-10-06T20:24:18.2550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||91.27|99.15|0.00|2.92|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:18.2980000-07:00|40022550|Zeromus|0001A9D9|26164880||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:18.2980000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T20:24:18.0990000-07:00|Change|10FF0004||||||||||| +35|2023-10-06T20:24:18.2980000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.2980000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +261|2023-10-06T20:24:18.0990000-07:00|Change|10FF0006||||||||||||||||||||||| +35|2023-10-06T20:24:18.2980000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:18.3880000-07:00|10FF0002|Suchichi Suchi|0001A9D3|63089|63089|10000|10000|14||95.07|99.97|0.00|-0.08|1605|0|0|02|020005B1|0|41E49995|||||| +35|2023-10-06T20:24:18.3880000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.3880000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.3880000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.3880000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:18.4330000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26200844|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8550|10000|||103.67|101.27|0.00|2.05|0001A9DB|0|1| +35|2023-10-06T20:24:18.4780000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.4780000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.4780000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.4780000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:18.5230000-07:00|10FF0003|Gegehi Gehi|0001A9D3|51159|51159|7650|10000|14||105.10|101.30|0.00|2.40|2306|0|0|02|020005B1|0|41E38932|||||| +24|2023-10-06T20:24:18.5230000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F19|84631|89994|10000|10000|||93.75|98.56|-0.01|2.93|10FF0006|Wowobora Gogobora|0|56517|56517|9405|10000|||99.28|101.81|0.00|-1.83| +24|2023-10-06T20:24:18.5230000-07:00|40022550|Zeromus|DoT|A92|4BB|26200844|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|44995|55377|9200|10000|||100.02|105.61|0.00|-3.14| +24|2023-10-06T20:24:18.5230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|246B|44995|55377|9200|10000|||100.02|105.61|0.00|-3.14|10FF0006|Wowobora Gogobora|0|56517|56517|9405|10000|||99.28|101.81|0.00|-1.83| +21|2023-10-06T20:24:18.5230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26200844|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||91.27|99.15|0.00|2.92|0001A9DC|0|1| +38|2023-10-06T20:24:18.5230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|14||93.75|98.56|-0.01|2.93|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:18.5230000-07:00|40022550|Zeromus|005A5A00|26163669|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:18.5230000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:18.5230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54318|55377|9200|10000|14||100.02|105.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:24:18.5230000-07:00|10FF0001||||| +35|2023-10-06T20:24:18.5670000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.5670000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.5670000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.5670000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:18.5670000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F714003|3CF00000|143E|340000|4|17088000|11B|2A8000|0|0|0|0|0|0|0|0|26163669|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||93.74|98.56|0.00|2.92|0001A9DD|0|1| +21|2023-10-06T20:24:18.5670000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|754003|3A940000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|26163669|40478540|10000|10000|||100.00|80.10|0.00|0.00|54318|55377|9200|10000|||100.02|105.61|0.00|-3.14|0001A9DE|0|1| +37|2023-10-06T20:24:18.6560000-07:00|10FF0008|Kokosaze Lulusaze|0001A9D3|55377|55377|8900|10000|14||100.02|105.61|0.00|-3.14|1B07|0|0|02|030005B1|0|41E276C3|||||| +35|2023-10-06T20:24:18.6560000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.6560000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.6560000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.6560000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +35|2023-10-06T20:24:18.7450000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.7450000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.7450000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.7450000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +35|2023-10-06T20:24:18.8340000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.8340000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.8340000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.8340000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:18.8780000-07:00|40022550|Zeromus|0001A9DA|26163669|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:24:18.8780000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|56517| +35|2023-10-06T20:24:18.9240000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:18.9240000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.9240000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:18.9240000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:18.9240000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|215B0000|104|63A8000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|26163669|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||94.64|98.11|0.00|-1.56|0001A9DF|0|1| +21|2023-10-06T20:24:18.9240000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|42D70000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|26163669|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||96.04|100.59|-0.02|-2.85|0001A9E0|0|1| +38|2023-10-06T20:24:18.9240000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||94.64|98.11|0.00|-1.56|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:18.9240000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:18.9680000-07:00|40022550|Zeromus|0001A9DB|26163438||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:18.9680000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-1.83|0|0|0||||||||||||| +26|2023-10-06T20:24:18.9680000-07:00|77B|Summon Order|30.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T20:24:18.9680000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8150|10000|||102.93|101.25|0.00|-2.46|56517|56517|8150|10000|||102.93|101.25|0.00|-2.46|0001A9E1|0|1| +35|2023-10-06T20:24:19.0120000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.0120000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.0120000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.0120000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +261|2023-10-06T20:24:18.5770000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:24:19.0570000-07:00|40022550|Zeromus|0001A9DC|26160621||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:24:19.0570000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9405|10000|||99.99|100.31|0.00|2.87|54201|54201|10000|10000|||99.81|96.03|0.00|-2.31|0001A9E2|0|8| +22|2023-10-06T20:24:19.0570000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8150|10000|||102.33|101.24|0.00|-2.10|54201|54201|10000|10000|||99.81|96.03|0.00|-2.31|0001A9E2|1|8| +22|2023-10-06T20:24:19.0570000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0005|Wuwuchu Wuchu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||95.68|100.07|0.00|2.86|54201|54201|10000|10000|||99.81|96.03|0.00|-2.31|0001A9E2|2|8| +22|2023-10-06T20:24:19.0570000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0002|Suchichi Suchi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||94.07|96.50|0.00|2.79|54201|54201|10000|10000|||99.81|96.03|0.00|-2.31|0001A9E2|3|8| +22|2023-10-06T20:24:19.0570000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||93.69|98.56|0.00|2.86|54201|54201|10000|10000|||99.81|96.03|0.00|-2.31|0001A9E2|4|8| +22|2023-10-06T20:24:19.0570000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7650|10000|||108.32|99.47|0.00|2.15|54201|54201|10000|10000|||99.81|96.03|0.00|-2.31|0001A9E2|5|8| +22|2023-10-06T20:24:19.0570000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||91.27|99.15|0.00|2.92|54201|54201|10000|10000|||99.81|96.03|0.00|-2.31|0001A9E2|6|8| +22|2023-10-06T20:24:19.0570000-07:00|40022666|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|8900|10000|||100.02|105.61|0.00|-3.14|54201|54201|10000|10000|||99.81|96.03|0.00|-2.31|0001A9E2|7|8| +35|2023-10-06T20:24:19.1010000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.1010000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.1010000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.1010000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:19.1010000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9405|10000|14||99.99|100.31|0.00|2.87|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:19.1010000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:24:19.1010000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9405|10000|||99.99|100.31|0.00|2.87|56517|56517|9405|10000|||99.99|100.31|0.00|2.87|0001A9E3|0|1| +39|2023-10-06T20:24:19.1450000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||94.07|96.50|0.00|2.79| +261|2023-10-06T20:24:18.6910000-07:00|Change|10FF0008||||||||||||||||| +39|2023-10-06T20:24:19.1900000-07:00|10FF0003|Gegehi Gehi|51159|51159|7850|10000|||108.90|99.07|0.00|2.15| +24|2023-10-06T20:24:19.1900000-07:00|40022550|Zeromus|DoT|0|2B73|26160621|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T20:24:19.1900000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.1900000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.1900000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.1900000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:19.1900000-07:00|40022550|Zeromus|005A5A00|26149498|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T20:24:19.2350000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|-2.56| +35|2023-10-06T20:24:19.2790000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.2790000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.2790000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.2790000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +261|2023-10-06T20:24:18.8040000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:24:19.3240000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B590000|104|21E8000|0|0|0|0|0|0|0|0|0|0|0|0|26149498|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||93.38|95.11|0.00|-3.04|0001A9E4|0|1| +36|2023-10-06T20:24:19.3240000-07:00|3714|3| +261|2023-10-06T20:24:18.9180000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:24:19.3680000-07:00|40022550|Zeromus|0001A9DE|26134502||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:19.3680000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||91.27|99.15|0.00|2.92| +39|2023-10-06T20:24:19.3680000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|8350|10000|||101.52|101.21|-0.01|-1.62| +35|2023-10-06T20:24:19.3680000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.3680000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.3680000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.3680000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:19.4580000-07:00|40022550|Zeromus|0001A9E0|26117391||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:19.4580000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||95.63|99.57|0.00|2.93| +35|2023-10-06T20:24:19.4580000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.4580000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.4580000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.4580000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:19.4580000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|752003|46F20000|200004|43848000|0|0|0|0|0|0|0|0|0|0|0|0|26134502|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||91.27|99.15|0.00|2.71|0001A9E5|0|1| +38|2023-10-06T20:24:19.4580000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9405|10000|14||100.14|100.05|-0.02|2.47|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:19.4580000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:19.4580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9000|10000|14||91.27|99.15|0.00|2.71|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:19.4580000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +261|2023-10-06T20:24:19.0330000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:24:19.5020000-07:00|10FF0006|Wowobora Gogobora|56517|56517|9610|10000|||100.14|100.05|-0.02|2.47| +35|2023-10-06T20:24:19.5460000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.5460000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.5460000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.5460000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +261|2023-10-06T20:24:19.1340000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:24:19.1340000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:24:19.5920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8350|10000|14||101.52|101.21|0.00|-1.62|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:19.5920000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +35|2023-10-06T20:24:19.6370000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.6370000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.6370000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.6370000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:19.6370000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|754003|30470000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|26117391|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|7850|10000|||111.08|97.38|0.00|2.23|0001A9E6|0|1| +21|2023-10-06T20:24:19.6810000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26117391|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9610|10000|||100.15|100.06|0.00|1.95|0001A9E7|0|1| +35|2023-10-06T20:24:19.7260000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.7260000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.7260000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.7260000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:19.7260000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|15BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26117391|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||95.93|98.30|0.00|3.13|0001A9E8|0|1| +38|2023-10-06T20:24:19.7260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8900|10000|14||100.02|105.61|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:19.7260000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +35|2023-10-06T20:24:19.8140000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.8140000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.8140000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.8140000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:19.8580000-07:00|40022550|Zeromus|0001A9E4|26114486||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:19.8580000-07:00|10FF0002|Suchichi Suchi|0001A9E4|63089|63089|10000|10000|14||91.99|92.37|0.00|-2.69|1600|0|0|01|04000AA0|0|C1F00000|| +38|2023-10-06T20:24:19.8580000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7850|10000|14||111.71|96.88|0.00|-2.53|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:19.8580000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +35|2023-10-06T20:24:19.9030000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.9030000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.9030000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.9030000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:19.9470000-07:00|10FF0006|Wowobora Gogobora|0001A9E2|56517|56517|9610|10000|14||100.38|100.26|0.00|2.02|2800|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T20:24:19.9470000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|56517|54201| +35|2023-10-06T20:24:19.9920000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:19.9920000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:19.9920000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:19.9920000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:19.9920000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||91.94|92.23|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:19.9920000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +261|2023-10-06T20:24:19.5240000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:24:20.0360000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|10000|10000|||88.24|97.82|0.00|3.09| +39|2023-10-06T20:24:20.0360000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|9100|10000|||100.04|105.51|0.00|3.00| +37|2023-10-06T20:24:20.0810000-07:00|40022550|Zeromus|0001A9DD|26098886||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:20.0810000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9E2|56517|56517|8350|10000|14||101.52|101.21|0.00|-1.62|1C01|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T20:24:20.0810000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|56517|54201| +35|2023-10-06T20:24:20.0810000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.0810000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.0810000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:20.0810000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +21|2023-10-06T20:24:20.0810000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|750003|433A0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|26114486|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8900|10000|||100.04|105.51|0.00|3.00|0001A9E9|0|1| +38|2023-10-06T20:24:20.0810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8700|10000|14||100.04|105.51|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:20.0810000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:24:19.6370000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:24:20.1250000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|26098886|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9210|10000|||100.65|100.50|0.00|-3.10|0001A9EA|0|1| +38|2023-10-06T20:24:20.1250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9210|10000|14||100.65|100.50|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:20.1250000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:20.1250000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:20.1250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9000|10000|14||88.18|97.46|0.00|2.66|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:20.1250000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:24:20.1250000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +35|2023-10-06T20:24:20.1690000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.1690000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.1690000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:20.1690000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:20.1690000-07:00|40022550|Zeromus|005A5A00|26098886|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:24:20.1690000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|56517| +261|2023-10-06T20:24:19.7490000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:24:20.2130000-07:00|10FF0005|Wuwuchu Wuchu|0001A9E2|63038|63038|10000|10000|14||94.31|96.35|0.00|-3.05|2702|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T20:24:20.2130000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|63038|54201| +37|2023-10-06T20:24:20.2130000-07:00|40022550|Zeromus|0001A9E7|26098851||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:20.2130000-07:00|40022550|Zeromus|0001A9E5|26080689||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:20.2580000-07:00|40022550|Zeromus|0001A9E8|26075123||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:20.2580000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.2580000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.2580000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:20.2580000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:20.2580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|14||87.72|97.80|-0.02|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:20.2580000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +37|2023-10-06T20:24:20.3020000-07:00|40022550|Zeromus|0001A9E6|26062764||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:20.3460000-07:00|10FF0002|Suchichi Suchi|0001A9E2|63089|63089|10000|10000|14||91.90|91.84|-0.02|1.04|1603|0|0|02|04000AA0|0|C1F00000|||||| +26|2023-10-06T20:24:20.3460000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|63089|54201| +35|2023-10-06T20:24:20.3460000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.3460000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.3460000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T20:24:20.3460000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +261|2023-10-06T20:24:19.9830000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:24:20.3910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||92.94|96.76|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:20.3910000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +35|2023-10-06T20:24:20.4350000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.4350000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.4350000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.4350000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:20.4790000-07:00|10FF0007|Kehabiqo Febiqo|0001A9E2|89994|89994|10000|10000|14||87.72|97.80|0.00|3.11|1504|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T20:24:20.4790000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|89994|54201| +21|2023-10-06T20:24:20.4790000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26062764|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||87.72|97.80|0.00|3.11|0001A9EB|0|1| +21|2023-10-06T20:24:20.4790000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26062764|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8700|10000|||100.54|103.40|0.00|2.97|0001A9EC|0|1| +35|2023-10-06T20:24:20.5230000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.5230000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.5230000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.5230000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +37|2023-10-06T20:24:20.5670000-07:00|40022550|Zeromus|0001A9DF|26054225||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:20.5670000-07:00|10FF0002|Suchichi Suchi|0001A9DF|63089|63089|10000|10000|14||92.16|91.84|0.00|0.74|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:24:20.5670000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.16|91.84|0.00|0.74|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:20.1900000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:24:20.6120000-07:00|10FF0003|Gegehi Gehi|0001A9E2|51159|51159|7850|10000|14||114.33|94.78|0.00|2.46|2305|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T20:24:20.6120000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51159|54201| +24|2023-10-06T20:24:20.6120000-07:00|40022666|Ruby Carbuncle|HoT|0|4AA|54201|54201|10000|10000|||99.81|96.03|0.00|3.13|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:20.6120000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.6120000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.6120000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.6120000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:20.6120000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|3.13|0|0|0||||||||||||| +24|2023-10-06T20:24:20.6570000-07:00|10FF0002|Suchichi Suchi|HoT|0|1DDB|63089|63089|10000|10000|||92.27|91.84|0.00|0.61|E0000000||0||||||||||| +38|2023-10-06T20:24:20.6570000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.27|91.84|0.00|0.61|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:20.7010000-07:00|10FF0003|Gegehi Gehi|HoT|0|17B6|51159|51159|7850|10000|||114.83|94.38|0.00|2.36|10FF0003|Gegehi Gehi|0|51159|51159|7850|10000|||114.83|94.38|0.00|2.36| +35|2023-10-06T20:24:20.7010000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.7010000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.7010000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.7010000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FD|||| +38|2023-10-06T20:24:20.7010000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8400|10000|14||114.83|94.38|0.00|2.36|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:20.7460000-07:00|10FF0001|Sesuga Sapisuga|0001A9E2|89453|89453|9000|10000|14||85.80|95.50|0.00|2.44|1306|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T20:24:20.7460000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|89453|54201| +39|2023-10-06T20:24:20.7920000-07:00|40022840|Carbuncle|53095|53095|10000|10000|||100.97|103.99|0.00|0.14| +24|2023-10-06T20:24:20.7920000-07:00|40022840|Carbuncle|HoT|0|49F|53095|53095|10000|10000|||100.97|103.99|0.00|0.14|10FF0005|Wuwuchu Wuchu|0|63038|63038|10000|10000|||90.23|96.74|0.00|-2.86| +35|2023-10-06T20:24:20.7920000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.7920000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.7920000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.7920000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:20.7920000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|69A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26054225|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9000|10000|||85.33|95.08|0.00|2.39|0001A9ED|0|1| +38|2023-10-06T20:24:20.7920000-07:00|40022840|Carbuncle|005A5A00|53095|53095|10000|10000|0||100.97|103.99|0.00|0.14|0|0|0|||||||||| +31|2023-10-06T20:24:20.7920000-07:00|10FF0001||||| +261|2023-10-06T20:24:20.3840000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T20:24:20.8360000-07:00|40022550|Zeromus|005A5A00|26054225|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:24:20.8360000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +26|2023-10-06T20:24:20.8360000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +37|2023-10-06T20:24:20.8810000-07:00|10FF0008|Kokosaze Lulusaze|0001A9E2|55377|55377|8700|10000|14||101.04|101.79|0.00|2.88|1B07|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T20:24:20.8810000-07:00|13B|Whispering Dawn|21.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|55377|54201| +37|2023-10-06T20:24:20.8810000-07:00|40022550|Zeromus|0001A9E9|26037015||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:20.8810000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15D0|89453|89453|9000|10000|||84.83|94.61|0.00|2.39|10FF0006|Wowobora Gogobora|0|56517|56517|9210|10000|||100.85|100.66|0.00|-3.10| +37|2023-10-06T20:24:20.8810000-07:00|40022550|Zeromus|0001A9EA|26037015|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:24:20.8810000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|56517| +24|2023-10-06T20:24:20.8810000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1815|89453|89453|9000|10000|||84.83|94.61|0.00|2.39|E0000000||0||||||||||| +24|2023-10-06T20:24:20.8810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|16F9|56517|56517|8350|10000|||101.52|101.21|0.00|-2.02|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:20.8810000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.8810000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.8810000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.8810000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:20.8810000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|3.13|0|0|0|||||||||| +30|2023-10-06T20:24:20.8810000-07:00|77B|Summon Order|0.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|54201|54201| +38|2023-10-06T20:24:20.8810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9000|10000|14||84.83|94.61|0.00|2.39|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:20.8810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8350|10000|14||101.52|101.21|0.00|-2.02|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:20.4860000-07:00|Change|10FF0005||||||||| +24|2023-10-06T20:24:20.9690000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1DE9|63038|63038|10000|10000|||89.65|96.53|0.00|-2.84|E0000000||0||||||||||| +35|2023-10-06T20:24:20.9690000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:20.9690000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.9690000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:20.9690000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:20.9690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||89.65|96.53|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:21.0140000-07:00|40022550|Zeromus|0001A9EB|26034132||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:21.0140000-07:00|40022550|Zeromus|0001A9EC|26033990||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:21.0140000-07:00|10FF0006|Wowobora Gogobora|HoT|0|17B2|56517|56517|9210|10000|||100.85|100.66|0.00|3.02|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +21|2023-10-06T20:24:21.0140000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|15120000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|26037015|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||87.72|97.80|0.00|3.11|0001A9EE|0|1| +38|2023-10-06T20:24:21.0140000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9210|10000|14||100.85|100.66|0.00|3.02|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:21.0590000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.0590000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.0590000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.0590000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:21.1480000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.1480000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.1480000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.1480000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:21.1480000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37750003|2F4D0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|26033990|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8400|10000|||116.80|92.33|0.00|2.39|0001A9EF|0|1| +38|2023-10-06T20:24:21.1480000-07:00|40022550|Zeromus|005A5A00|26033990|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:24:21.1480000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +261|2023-10-06T20:24:20.7030000-07:00|Change|10FF0008||||||||| +35|2023-10-06T20:24:21.2370000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.2370000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.2370000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.2370000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:21.2370000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26033990|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8400|10000|||117.15|91.81|0.00|-2.10|0001A9F0|0|1| +261|2023-10-06T20:24:20.8260000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:21.3260000-07:00|40022550|Zeromus|0001A9ED|26032300||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:21.3260000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.3260000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.3260000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.3260000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:21.4160000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.4160000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.4160000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.4160000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:21.4160000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42724003|31C20000|171D0E|A9F0000|104|94C8000|F|3238000|11B|64AC8000|0|0|0|0|0|0|26033990|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.40|91.91|0.00|0.48|0001A9F1|0|1| +38|2023-10-06T20:24:21.4160000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.40|91.91|0.00|0.48|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:21.4160000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +35|2023-10-06T20:24:21.5050000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.5050000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.5050000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.5050000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:21.5490000-07:00|40022550|Zeromus|0001A9EE|26026906||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:21.5500000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1755|89994|89994|10000|10000|||87.68|97.80|0.00|2.78|E0000000||0||||||||||| +24|2023-10-06T20:24:21.5500000-07:00|40022550|Zeromus|DoT|A92|5D3|26032300|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|55377|55377|8700|10000|||102.97|98.50|0.00|2.84| +24|2023-10-06T20:24:21.5500000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|17B6|55377|55377|8700|10000|||102.97|98.50|0.00|2.84|E0000000||0||||||||||| +38|2023-10-06T20:24:21.5500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|14||87.68|97.80|0.00|2.78|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:21.5500000-07:00|40022550|Zeromus|005A5A00|26025415|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:24:21.5500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8700|10000|14||102.97|98.50|0.00|2.84|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:21.5940000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.5940000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.5940000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.5940000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +20|2023-10-06T20:24:21.5940000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.70|99.99|0.00|2.43| +21|2023-10-06T20:24:21.5940000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26032300|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8350|10000|||101.07|100.96|-0.02|-2.56|0001A9F2|0|1| +261|2023-10-06T20:24:21.2420000-07:00|Change|10FF0006||||||||||||||||||||| +35|2023-10-06T20:24:21.6830000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.6830000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.6830000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.6830000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +261|2023-10-06T20:24:21.2420000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:24:21.3380000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:24:21.7710000-07:00|40022550|Zeromus|0001A9EF|26013306||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:21.7710000-07:00|40022550|Zeromus|0001A9F0|26013264||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:21.7720000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.7720000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.7720000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.7720000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +37|2023-10-06T20:24:21.8600000-07:00|40022550|Zeromus|0001A9F1|26000526|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:24:21.8600000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +37|2023-10-06T20:24:21.8600000-07:00|10FF0002|Suchichi Suchi|0001A9F1|63089|63089|10000|10000|14||92.45|92.02|0.00|2.58|1600|0|0|01|0B000323|0|41F00000|| +35|2023-10-06T20:24:21.8600000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.8600000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.8600000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.8600000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +38|2023-10-06T20:24:21.8600000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.02|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:24:21.9060000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|101.00|100.88|0.00|-2.97| +261|2023-10-06T20:24:21.4280000-07:00|Change|10FF0004||||||||||||||||||| +35|2023-10-06T20:24:21.9500000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:21.9500000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.9500000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:21.9500000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +21|2023-10-06T20:24:21.9500000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|14560000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|26000526|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9000|10000|||83.63|89.55|0.00|2.09|0001A9F3|0|1| +35|2023-10-06T20:24:22.0390000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:22.0390000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.0390000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.0390000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +261|2023-10-06T20:24:21.5180000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:24:22.0830000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2AEE0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|26000526|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||84.69|92.62|0.00|-2.84|0001A9F4|0|1| +37|2023-10-06T20:24:22.1280000-07:00|40022550|Zeromus|0001A9F2|26000380||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:22.1280000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||92.45|92.03|0.00|2.58| +35|2023-10-06T20:24:22.1280000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:22.1280000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.1280000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.1280000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +21|2023-10-06T20:24:22.1280000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B7D0000|104|2258000|0|0|0|0|0|0|0|0|0|0|0|0|26000526|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001A9F5|0|1| +39|2023-10-06T20:24:22.2170000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +39|2023-10-06T20:24:22.2170000-07:00|10FF0003|Gegehi Gehi|51159|51159|8600|10000|||118.01|89.80|0.00|2.77| +24|2023-10-06T20:24:22.2170000-07:00|40022550|Zeromus|DoT|0|2359|26000380|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T20:24:22.2170000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:22.2170000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.2170000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.2170000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +38|2023-10-06T20:24:22.2170000-07:00|40022550|Zeromus|005A5A00|25991331|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:24:21.7540000-07:00|Change|10FF0003||||||||||| +35|2023-10-06T20:24:22.3060000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:22.3060000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.3060000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.3060000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +39|2023-10-06T20:24:22.3510000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|9200|10000|||83.63|89.55|0.00|2.09| +39|2023-10-06T20:24:22.3510000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|8550|10000|||100.66|100.48|0.00|-3.11| +36|2023-10-06T20:24:22.3510000-07:00|37F0|3| +35|2023-10-06T20:24:22.3950000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T20:24:22.3950000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.3950000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.3950000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +261|2023-10-06T20:24:21.9900000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:24:21.9900000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T20:24:22.4400000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||84.48|92.49|0.00|2.72| +35|2023-10-06T20:24:22.4840000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:22.4840000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.4840000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.4840000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +39|2023-10-06T20:24:22.5300000-07:00|10FF0006|Wowobora Gogobora|56517|56517|9415|10000|||102.07|99.69|0.00|-3.04| +21|2023-10-06T20:24:22.5300000-07:00|10FF0008|Kokosaze Lulusaze|64E7|Summon Phoenix|40022550|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|25991331|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8700|10000|||103.87|92.51|0.00|3.07|0001A9F6|0|1| +21|2023-10-06T20:24:22.5300000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|54D30000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|25991331|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9210|10000|||102.07|99.69|0.00|-3.04|0001A9F7|0|1| +38|2023-10-06T20:24:22.5300000-07:00|40022840|Carbuncle|005A5A00|0|53095|0|10000|0||103.78|98.79|0.00|3.01|0|0|0||||||| +30|2023-10-06T20:24:22.5300000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|40022840|Carbuncle|00|53095|63038| +261|2023-10-06T20:24:22.1050000-07:00|Change|40022840||||||||| +261|2023-10-06T20:24:22.1050000-07:00|Change|40022840||||||||| +38|2023-10-06T20:24:22.5740000-07:00|4002284B||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:24:22.5740000-07:00|4002284B||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T20:24:22.5740000-07:00|40022550|Zeromus|0001A9F3|25986125||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:22.5740000-07:00|40022550|Zeromus|0001A9F4|25975135||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:22.5740000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:22.5750000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.5750000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.5750000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +261|2023-10-06T20:24:22.2020000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:24:22.6630000-07:00|40022550|Zeromus|0001A9F5|25972194||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:22.6630000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:22.6630000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.6630000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.6630000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +35|2023-10-06T20:24:22.7530000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:22.7530000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.7530000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.7530000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +35|2023-10-06T20:24:22.8420000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:22.8420000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.8420000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.8420000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +21|2023-10-06T20:24:22.8420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|33620000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25972194|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8550|10000|||100.66|100.48|0.00|-3.11|0001A9F8|0|1| +21|2023-10-06T20:24:22.8420000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A756003|8E0B0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|25972194|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8600|10000|||118.35|89.13|0.00|2.68|0001A9F9|0|1| +03|2023-10-06T20:24:22.3980000-07:00|4002284B|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|53095|53095|10000|10000|||106.13|92.46|0.00|-2.81| +261|2023-10-06T20:24:22.3980000-07:00|Add|4002284B||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:22.9300000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:22.9300000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.9300000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:22.9300000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +21|2023-10-06T20:24:22.9300000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25972194|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||84.39|92.43|0.00|-2.98|0001A9FA|0|1| +261|2023-10-06T20:24:22.4930000-07:00|Change|4002284B||| +39|2023-10-06T20:24:23.0200000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|10000|10000|||84.09|97.11|0.00|2.85| +39|2023-10-06T20:24:23.0200000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8900|10000|||103.87|91.62|0.00|-2.93| +35|2023-10-06T20:24:23.0200000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.0200000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.0200000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.0200000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +261|2023-10-06T20:24:22.6100000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:24:23.0640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25972194|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9200|10000|||83.35|89.76|0.00|1.00|0001A9FB|0|1| +31|2023-10-06T20:24:23.0640000-07:00|10FF0001||||| +35|2023-10-06T20:24:23.1090000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.1090000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.1090000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.1090000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +24|2023-10-06T20:24:23.1990000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|158F|89453|89453|9200|10000|||83.27|89.70|0.00|1.33|10FF0006|Wowobora Gogobora|0|56517|56517|9015|10000|||102.07|99.69|0.00|-3.04| +37|2023-10-06T20:24:23.1990000-07:00|40022550|Zeromus|0001A9F7|25950479||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:23.1990000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.1990000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.1990000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.1990000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FE|||| +38|2023-10-06T20:24:23.1990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9200|10000|14||83.27|89.70|0.00|1.33|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:23.1990000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +35|2023-10-06T20:24:23.2870000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.2870000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.2870000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.2870000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:23.3320000-07:00|4002284B|Demi-Phoenix|005A5A00|53095|53095|10000|10000|0||106.13|92.46|0.00|-2.81|0|0|0|||||||||| +26|2023-10-06T20:24:23.3320000-07:00|30|Well Fed|2195.91|10FF0008|Kokosaze Lulusaze|4002284B|Demi-Phoenix|2964|53095|55377| +26|2023-10-06T20:24:23.3320000-07:00|441|HP Penalty|9999.00|E0000000||4002284B|Demi-Phoenix|00|53095|| +26|2023-10-06T20:24:23.3320000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|4002284B|Demi-Phoenix|01|53095|40478540| +21|2023-10-06T20:24:23.3320000-07:00|10FF0008|Kokosaze Lulusaze|4084|Enkindle Phoenix|40022550|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|25950479|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8900|10000|||103.73|90.05|0.00|-3.04|0001A9FC|0|1| +35|2023-10-06T20:24:23.3770000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.3770000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.3770000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.3770000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:23.4650000-07:00|40022550|Zeromus|0001A9F9|25914116||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:23.4650000-07:00|40022550|Zeromus|0001A9FA|25910910||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:23.4650000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.4650000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.4650000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.4650000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:23.4650000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32716003|46170000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|25950479|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||84.21|96.67|0.00|2.85|0001A9FD|0|1| +21|2023-10-06T20:24:23.4650000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25950479|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9015|10000|||102.04|99.69|0.00|-2.71|0001A9FE|0|1| +261|2023-10-06T20:24:23.0830000-07:00|Change|10FF0004||||||||||||||||||||||| +35|2023-10-06T20:24:23.5540000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.5540000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.5540000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.5540000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +22|2023-10-06T20:24:23.5540000-07:00|4002284B|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|8900|10000|||103.64|89.21|0.00|-2.93|53095|53095|10000|10000|||106.13|92.46|0.00|-2.81|0001A9FF|0|5| +22|2023-10-06T20:24:23.5540000-07:00|4002284B|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|9015|10000|||102.02|99.68|-0.02|-2.43|53095|53095|10000|10000|||106.13|92.46|0.00|-2.81|0001A9FF|1|5| +22|2023-10-06T20:24:23.5540000-07:00|4002284B|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8150|10000|||100.92|100.45|-0.02|2.03|53095|53095|10000|10000|||106.13|92.46|0.00|-2.81|0001A9FF|2|5| +22|2023-10-06T20:24:23.5540000-07:00|4002284B|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|8600|10000|||118.67|88.51|0.00|-3.00|53095|53095|10000|10000|||106.13|92.46|0.00|-2.81|0001A9FF|3|5| +22|2023-10-06T20:24:23.5540000-07:00|4002284B|Demi-Phoenix|4085|Everlasting Flight|10FF0002|Suchichi Suchi|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|53095|53095|10000|10000|||106.13|92.46|0.00|-2.81|0001A9FF|4|5| +37|2023-10-06T20:24:23.5990000-07:00|40022550|Zeromus|0001A9FB|25909260||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:23.5990000-07:00|40022666|Ruby Carbuncle|HoT|0|49C|54201|54201|10000|10000|||99.81|96.03|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|63038|63038|10000|10000|||85.36|93.26|0.00|-2.88| +38|2023-10-06T20:24:23.5990000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|3.13|0|0|0|||||||||| +261|2023-10-06T20:24:23.1740000-07:00|Change|4002284B||||| +37|2023-10-06T20:24:23.6440000-07:00|40022550|Zeromus|0001A9F8|25896106||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:23.6440000-07:00|10FF0002|Suchichi Suchi|HoT|0|2383|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|10FF0002|Suchichi Suchi|0|63089|63089|10000|10000|||92.45|92.03|0.00|2.58| +35|2023-10-06T20:24:23.6440000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.6440000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.6440000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.6440000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:23.6440000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25910910|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8900|10000|||103.61|88.95|0.00|-2.86|0001AA00|0|1| +38|2023-10-06T20:24:23.6440000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:23.6900000-07:00|10FF0003|Gegehi Gehi|HoT|0|1E3C|51159|51159|8600|10000|||118.90|88.03|0.00|2.83|10FF0003|Gegehi Gehi|0|51159|51159|8600|10000|||118.90|88.03|0.00|2.83| +35|2023-10-06T20:24:23.6900000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:23.6900000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +257|2023-10-06T20:24:23.6900000-07:00|80034E7C|00020001|00|00|0000| +35|2023-10-06T20:24:23.6900000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:23.6900000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:23.6900000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9150|10000|14||118.90|88.03|0.00|2.83|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:23.2710000-07:00|Change|10FF0003||||||||||| +35|2023-10-06T20:24:23.7330000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.7330000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.7330000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.7330000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:23.7770000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:23.7770000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:23.7770000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:23.7770000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:23.8210000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.8210000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.8210000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.8210000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +24|2023-10-06T20:24:23.8660000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1750|89453|89453|9200|10000|||82.93|90.21|0.00|0.83|E0000000||0||||||||||| +24|2023-10-06T20:24:23.8660000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2355|56517|56517|8150|10000|||101.24|100.39|0.00|2.22|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:23.8660000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:23.8660000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:23.8660000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:23.8660000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:23.8660000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|124B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25896106|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||84.21|96.67|-0.02|2.30|0001AA01|0|1| +38|2023-10-06T20:24:23.8660000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:23.8660000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|63089|54201| +38|2023-10-06T20:24:23.8660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9200|10000|14||82.93|90.21|0.00|0.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:23.8660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8150|10000|14||101.24|100.39|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:23.9110000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:23.9110000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.9110000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:23.9110000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:23.9110000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D722003|44FF0000|104|CE48000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|25896106|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA02|0|1| +38|2023-10-06T20:24:23.9110000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:23.9110000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:24:23.9110000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +24|2023-10-06T20:24:23.9550000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1D61|63038|63038|10000|10000|||85.82|93.74|-0.02|-2.91|E0000000||0||||||||||| +35|2023-10-06T20:24:23.9550000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:23.9550000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:23.9550000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:23.9550000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:23.9550000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||85.82|93.74|-0.02|-2.91|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:24.0000000-07:00|40022550|Zeromus|0001A9FE|25896046||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:24.0000000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2434|56517|56517|9015|10000|||101.80|99.57|-0.01|-2.11|40022666|Ruby Carbuncle|0|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:24.0000000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.0000000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.0000000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.0000000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:24.0000000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9015|10000|14||101.80|99.57|-0.01|-2.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:24.0000000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:24.0000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9200|10000|14||82.90|90.24|0.00|0.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:24.0000000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|89453|54201| +261|2023-10-06T20:24:23.5530000-07:00|Change|10FF0006||||||||||||||||||| +35|2023-10-06T20:24:24.0440000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.0440000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:24.0440000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.0440000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +20|2023-10-06T20:24:24.0440000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.80|99.57|-0.01|-2.11| +37|2023-10-06T20:24:24.0880000-07:00|40022550|Zeromus|0001A9FD|25878103||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:24.0880000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.0880000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.0880000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.0880000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:24.1340000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.1340000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:24.1340000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.1340000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:24.1340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|14||84.21|96.68|0.00|0.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:24.1340000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|89994|54201| +37|2023-10-06T20:24:24.1770000-07:00|40022550|Zeromus|0001AA00|25877954||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:24.1770000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.1770000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.1770000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.1770000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:24.2210000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.2210000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:24.2210000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.2210000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:24.2670000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.2670000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.2670000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.2670000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:24.2670000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9150|10000|14||119.03|87.79|0.00|2.67|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:24.2670000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51159|54201| +35|2023-10-06T20:24:24.3120000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.3120000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:24.3120000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.3120000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +20|2023-10-06T20:24:24.3120000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|101.53|100.34|0.00|1.91| +35|2023-10-06T20:24:24.3560000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.3560000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.3560000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.3560000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:24.4010000-07:00|40022550|Zeromus|0001AA01|25873271||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:24.4010000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.4010000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:24.4010000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.4010000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:24.4010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8900|10000|14||103.59|88.39|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:24.4010000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|55377|54201| +35|2023-10-06T20:24:24.4460000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.4460000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.4460000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.4460000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:24.4460000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35714003|26110000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|25877954|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9200|10000|||82.90|90.24|0.00|0.83|0001AA03|0|1| +37|2023-10-06T20:24:24.4910000-07:00|10FF0008|Kokosaze Lulusaze|0001A9FF|55377|55377|8900|10000|14||103.60|88.32|0.00|3.08|1B00|0|0|01|0600074C|0|41A80000|| +26|2023-10-06T20:24:24.4910000-07:00|74C|Everlasting Flight|21.00|4002284B|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|55377|53095| +35|2023-10-06T20:24:24.4910000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.4910000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:24.4910000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.4910000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:24.0310000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:24:24.5350000-07:00|4002284B|Demi-Phoenix|4086|Revelation|40022550|Zeromus|152003|10164001|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|25873271|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||106.13|92.46|0.00|-2.81|0001AA04|0|1| +24|2023-10-06T20:24:24.5350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2206|89994|89994|10000|10000|||84.21|96.67|0.00|0.50|E0000000||0||||||||||| +24|2023-10-06T20:24:24.5350000-07:00|40022550|Zeromus|DoT|A92|4E8|25873271|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|55377|55377|8900|10000|||103.60|88.32|0.00|3.08| +24|2023-10-06T20:24:24.5350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1F4B|55377|55377|8900|10000|||103.60|88.32|0.00|3.08|E0000000||0||||||||||| +35|2023-10-06T20:24:24.5350000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.5350000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.5350000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.5350000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:24.5350000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA05|0|1| +38|2023-10-06T20:24:24.5350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|14||84.21|96.67|0.00|0.50|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:24.5350000-07:00|40022550|Zeromus|005A5A00|25872015|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:24.5350000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:24.5350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8900|10000|14||103.60|88.32|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:24.5350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||85.88|94.14|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:24.5350000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|63038|54201| +37|2023-10-06T20:24:24.5800000-07:00|40022550|Zeromus|0001AA02|25854352||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:24.5800000-07:00|10FF0002|Suchichi Suchi|0001AA02|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|1600|0|0|01|08000322|0|41F00000|| +35|2023-10-06T20:24:24.5800000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.5800000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:24.5800000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.5800000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:24.5800000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|714003|365B0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|25872015|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||85.88|94.17|0.00|-2.96|0001AA06|0|1| +38|2023-10-06T20:24:24.5800000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:24.6240000-07:00|10FF0006|Wowobora Gogobora|0001A9FF|56517|56517|9015|10000|14||101.79|99.57|0.00|-2.92|2801|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T20:24:24.6240000-07:00|74C|Everlasting Flight|21.00|4002284B|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|56517|53095| +35|2023-10-06T20:24:24.6240000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.6240000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.6240000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.6240000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +261|2023-10-06T20:24:24.1420000-07:00|Change|40022840||||||||| +35|2023-10-06T20:24:24.6690000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.6690000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:24.6690000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.6690000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:24.6690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8150|10000|14||101.60|100.33|0.00|2.61|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:24.6690000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|56517|54201| +35|2023-10-06T20:24:24.7130000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.7130000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.7130000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.7130000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:24.7130000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25854352|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|9150|10000|||119.19|87.48|0.00|2.67|0001AA07|0|1| +37|2023-10-06T20:24:24.7570000-07:00|10FF0004|Buhojaqe Zijaqe|0001A9FF|56517|56517|8150|10000|14||101.60|100.33|0.00|2.91|1C02|0|0|01|0900074C|0|41A80000|| +26|2023-10-06T20:24:24.7570000-07:00|74C|Everlasting Flight|21.00|4002284B|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|56517|53095| +35|2023-10-06T20:24:24.7570000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.7570000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:24.7570000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.7570000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:24.8020000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.8020000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.8020000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.8020000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:24.8020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|9015|10000|14||101.79|99.57|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:24.8020000-07:00|13D|Fey Illumination|0.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|56517|54201| +35|2023-10-06T20:24:24.8470000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.8470000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:24.8470000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.8470000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:24.8920000-07:00|10FF0003|Gegehi Gehi|0001A9FF|51159|51159|9150|10000|14||119.19|87.48|0.00|2.67|2303|0|0|01|0800074C|0|41A80000|| +26|2023-10-06T20:24:24.8920000-07:00|74C|Everlasting Flight|21.00|4002284B|Demi-Phoenix|10FF0003|Gegehi Gehi|00|51159|53095| +35|2023-10-06T20:24:24.8920000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.8920000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.8920000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.8920000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:24.9360000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:24.9360000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:24.9360000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:24.9360000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:24.9360000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BE30000|104|2378000|0|0|0|0|0|0|0|0|0|0|0|0|25854352|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA08|0|1| +35|2023-10-06T20:24:24.9800000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:24.9800000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.9800000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:24.9800000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:24.9800000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36740000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|25854352|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|9015|10000|||101.79|99.56|-0.02|-3.07|0001AA09|0|1| +37|2023-10-06T20:24:25.0270000-07:00|10FF0002|Suchichi Suchi|0001A9FF|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|1604|0|0|01|0B00074C|0|41A80000|| +26|2023-10-06T20:24:25.0270000-07:00|74C|Everlasting Flight|21.00|4002284B|Demi-Phoenix|10FF0002|Suchichi Suchi|00|63089|53095| +35|2023-10-06T20:24:25.0270000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.0270000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.0270000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.0270000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:24.5530000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:24:25.0270000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|55460000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25854352|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8900|10000|||103.68|87.91|0.00|2.94|0001AA0A|0|1| +21|2023-10-06T20:24:25.0270000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022550|Zeromus|754003|66B80000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|25854352|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|9150|10000|||119.19|87.48|0.00|2.67|0001AA0B|0|1| +38|2023-10-06T20:24:25.0270000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8750|10000|14||119.19|87.48|0.00|2.67|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:25.0270000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:24:24.5530000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:24:24.5530000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:24:25.0690000-07:00|40022550|Zeromus|0001AA06|25840437||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:25.0690000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.0690000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.0690000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.0690000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:25.1140000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.1140000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.1140000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.1140000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:25.1590000-07:00|10FF0002|Suchichi Suchi|0001AA05|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|1600|0|0|01|0C000748|0|41A00000|| +26|2023-10-06T20:24:25.1590000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +39|2023-10-06T20:24:25.1590000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||92.45|92.03|0.00|2.58| +35|2023-10-06T20:24:25.1600000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.1600000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.1600000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.1600000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:25.2040000-07:00|40022550|Zeromus|0001AA03|25830692||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:25.2040000-07:00|10FF0001|Sesuga Sapisuga|0001AA03|89453|89453|10000|10000|14||82.99|90.61|0.00|0.71|1300|0|0|0| +39|2023-10-06T20:24:25.2040000-07:00|10FF0003|Gegehi Gehi|51159|51159|8950|10000|||119.19|87.48|0.00|-1.94| +24|2023-10-06T20:24:25.2040000-07:00|40022550|Zeromus|DoT|0|2E1C|25840437|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T20:24:25.2040000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.2040000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.2040000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.2040000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:25.2040000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|41B80000|104|C488000|0|0|0|0|0|0|0|0|0|0|0|0|25840437|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA0C|0|1| +38|2023-10-06T20:24:25.2040000-07:00|40022550|Zeromus|005A5A00|25818888|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:24:24.7820000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:25.2480000-07:00|40022550|Zeromus|0001AA07|25818864||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:25.2480000-07:00|10FF0003|Gegehi Gehi|0001AA07|51159|51159|8950|10000|14||119.19|87.48|0.00|-1.94|2300|0|0|01|090004D3|0|C1F00000|| +39|2023-10-06T20:24:25.2480000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:25.2480000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.2480000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.2480000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.2480000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:25.2480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2FB90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25818888|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8150|10000|||101.61|100.33|0.00|-3.06|0001AA0D|0|1| +35|2023-10-06T20:24:25.2930000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.2930000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.2930000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.2930000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:25.3380000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.3380000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.3380000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.3380000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:25.3380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25818888|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||82.98|90.62|0.00|0.71|0001AA0E|0|1| +36|2023-10-06T20:24:25.3380000-07:00|38CC|3| +31|2023-10-06T20:24:25.3380000-07:00|10FF0001||||| +39|2023-10-06T20:24:25.3830000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||82.98|90.62|0.00|0.71| +39|2023-10-06T20:24:25.3830000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7950|10000|||101.61|100.33|0.00|-3.06| +35|2023-10-06T20:24:25.3830000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.3830000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.3830000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.3830000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:25.4270000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.4270000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.4270000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.4270000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:25.4720000-07:00|40022550|Zeromus|0001AA08|25815821||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:25.4720000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||85.89|94.25|0.00|2.36| +35|2023-10-06T20:24:25.4720000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.4720000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.4720000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.4720000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:25.4720000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8950|10000|14||119.19|87.48|0.00|-1.94|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:25.4720000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:24:25.0170000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T20:24:25.5170000-07:00|10FF0006|Wowobora Gogobora|56517|56517|8820|10000|||101.58|97.76|0.00|-3.00| +35|2023-10-06T20:24:25.5170000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.5170000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.5170000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.5170000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:25.5610000-07:00|40022550|Zeromus|0001AA04|25746167||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:25.5610000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.5610000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.5610000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.5610000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:25.5610000-07:00|4002284B|Demi-Phoenix|005A5A00|53095|53095|10000|10000|0||106.13|92.45|0.00|-2.68|0|0|0||||||| +30|2023-10-06T20:24:25.5610000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|4002284B|Demi-Phoenix|01|53095|40478540| +35|2023-10-06T20:24:25.6060000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.6060000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.6060000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.6060000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +24|2023-10-06T20:24:25.6510000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1617|89453|89453|10000|10000|||82.88|90.70|0.00|0.71|10FF0006|Wowobora Gogobora|0|56517|56517|8820|10000|||101.42|97.07|-0.02|-2.97| +37|2023-10-06T20:24:25.6510000-07:00|40022550|Zeromus|0001AA09|25732227||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:25.6510000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.6510000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.6510000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.6510000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:25.6510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||82.88|90.70|0.00|0.71|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:25.6510000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +35|2023-10-06T20:24:25.6950000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.6950000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.6950000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.6950000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:25.7400000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.7400000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.7400000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.7400000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:25.7840000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.7840000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.7840000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.7840000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:25.8290000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.8290000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.8290000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.8290000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:25.8290000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|724003|503C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25732227|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8950|10000|||119.19|87.48|0.00|-1.94|0001AA0F|0|1| +37|2023-10-06T20:24:25.8730000-07:00|40022550|Zeromus|0001AA0E|25730486||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:25.8730000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.8730000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.8730000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.8730000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:25.9180000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:25.9180000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:25.9180000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:25.9180000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:25.9180000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|32860000|143E|340000|200004|259B8000|11B|2A8000|0|0|0|0|0|0|0|0|25730486|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||83.21|96.30|0.00|2.77|0001AA10|0|1| +35|2023-10-06T20:24:25.9620000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:25.9620000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.9620000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:25.9620000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +261|2023-10-06T20:24:25.6190000-07:00|Change|10FF0003||| +261|2023-10-06T20:24:25.6190000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T20:24:26.0070000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.0070000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.0070000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.0070000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:26.0520000-07:00|40022550|Zeromus|0001AA0D|25718269||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:26.0520000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|10000|10000|||83.21|96.30|0.00|2.34| +39|2023-10-06T20:24:26.0520000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8800|10000|||103.68|87.91|0.00|-2.70| +35|2023-10-06T20:24:26.0520000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.0520000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.0520000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.0520000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:26.0980000-07:00|40022550|Zeromus|0001AA0A|25696439||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:26.0980000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.0980000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T20:24:25.7150000-07:00|Change|10FF0008||||| +35|2023-10-06T20:24:26.0980000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.0980000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:26.0980000-07:00|10FF0008|Kokosaze Lulusaze|64E6|Rekindle|10FF0008|Kokosaze Lulusaze|4|24F80000|4B16A40E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|55377|55377|8600|10000|||103.68|87.91|0.00|-2.70|55377|55377|8600|10000|||103.68|87.91|0.00|-2.70|0001AA11|0|1| +35|2023-10-06T20:24:26.1400000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.1400000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.1400000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.1400000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:26.1400000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25730486|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||85.89|94.25|0.00|3.02|0001AA12|0|1| +35|2023-10-06T20:24:26.1860000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.1860000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.1860000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.1860000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:26.2300000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.2300000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.2300000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.2300000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:26.2740000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.2740000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.2740000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.2740000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:26.3190000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.3190000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.3190000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.3190000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:26.3640000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.3640000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.3640000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.3640000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:26.4110000-07:00|40022550|Zeromus|0001AA0C|25679615||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:26.4110000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.4110000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.4110000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.4110000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:26.4110000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A726003|798A0000|104|16B78000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|25696439|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA13|0|1| +38|2023-10-06T20:24:26.4110000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:26.4110000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:24:26.4110000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:26.4540000-07:00|40022550|Zeromus|0001AA0B|25653319||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:26.4540000-07:00|10FF0003|Gegehi Gehi|0001AA0B|51159|51159|8950|10000|14||119.19|87.48|0.00|-1.94|2300|0|0|01|090004D3|0|41F00000|| +35|2023-10-06T20:24:26.4550000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.4550000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.4550000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.4550000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:26.4550000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8950|10000|14||119.19|87.48|0.00|-1.94|0|0|0|||||||||||||||||||||||||||||||||| +04|2023-10-06T20:24:26.0700000-07:00|40022840|Carbuncle|00|5A|10FF0008|00||10261|13498|0|53095|0|10000|||103.81|95.84|0.00|-3.12| +261|2023-10-06T20:24:26.0700000-07:00|Remove|40022840| +35|2023-10-06T20:24:26.4990000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.4990000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.4990000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.4990000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +20|2023-10-06T20:24:26.4990000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.05|96.18|0.00|-2.81| +35|2023-10-06T20:24:26.5440000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.5440000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.5440000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.5440000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:26.5440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8800|10000|14||103.68|87.91|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:26.5440000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +21|2023-10-06T20:24:26.5890000-07:00|4002284B|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|154003|178C0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|25653319|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||106.13|92.45|0.00|-2.68|0001AA14|0|1| +24|2023-10-06T20:24:26.5890000-07:00|40022666|Ruby Carbuncle|HoT|0|4A7|54201|54201|10000|10000|||99.81|96.03|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|63038|63038|10000|10000|||85.89|94.25|0.00|-2.99| +35|2023-10-06T20:24:26.5890000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.5890000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.5890000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.5890000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:26.5890000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|3.13|0|0|0|||||||||| +24|2023-10-06T20:24:26.6320000-07:00|10FF0002|Suchichi Suchi|HoT|0|1EC8|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|10FF0002|Suchichi Suchi|0|63089|63089|10000|10000|||92.45|92.03|0.00|2.58| +35|2023-10-06T20:24:26.6320000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.6320000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.6320000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.6320000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:26.6320000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:26.6770000-07:00|40022550|Zeromus|0001AA12|25649946||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:26.6770000-07:00|10FF0003|Gegehi Gehi|HoT|0|29AB|51159|51159|8950|10000|||119.19|87.48|0.00|-1.94|E0000000||0||||||||||| +35|2023-10-06T20:24:26.6770000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.6770000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.6770000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.6770000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:26.6770000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25653319|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7950|10000|||101.56|100.30|0.00|-2.16|0001AA15|0|1| +38|2023-10-06T20:24:26.6770000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8950|10000|14||119.19|87.48|0.00|-1.94|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:26.7210000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.7210000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.7210000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T20:24:26.2620000-07:00|Change|10FF0004||||||||||||||||||||| +35|2023-10-06T20:24:26.7210000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +20|2023-10-06T20:24:26.7210000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|101.56|100.30|0.00|-2.16| +35|2023-10-06T20:24:26.7660000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.7660000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.7660000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.7660000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:26.7660000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25649946|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8800|10000|||103.68|87.91|0.00|-2.70|0001AA16|0|1| +35|2023-10-06T20:24:26.8100000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.8100000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.8100000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.8100000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +24|2023-10-06T20:24:26.8560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1C99|89453|89453|10000|10000|||83.01|90.85|0.00|0.71|E0000000||0||||||||||| +24|2023-10-06T20:24:26.8560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|29E0|56517|56517|7950|10000|||101.55|100.30|-0.02|-1.83|E0000000||0||||||||||| +35|2023-10-06T20:24:26.8560000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.8560000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.8560000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.8560000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:26.8560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||83.01|90.85|0.00|0.71|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:26.8560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7950|10000|14||101.55|100.30|-0.02|-1.83|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:26.3590000-07:00|Remove|4002283F| +35|2023-10-06T20:24:26.8990000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.8990000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.8990000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.8990000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +24|2023-10-06T20:24:26.9450000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|236D|63038|63038|10000|10000|||85.89|94.25|0.00|-2.99|E0000000||0||||||||||| +35|2023-10-06T20:24:26.9450000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:26.9450000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.9450000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:26.9450000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:26.9450000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|29B90000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|25649946|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||83.01|90.85|0.00|2.13|0001AA17|0|1| +38|2023-10-06T20:24:26.9450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||83.01|90.85|0.00|2.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:26.9450000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +26|2023-10-06T20:24:26.9450000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +38|2023-10-06T20:24:26.9450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||85.89|94.25|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:26.9900000-07:00|40022550|Zeromus|0001AA0F|25629406||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:26.9900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2627|56517|56517|8820|10000|||100.05|96.18|0.00|-3.13|E0000000||0||||||||||| +35|2023-10-06T20:24:26.9900000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:26.9900000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:26.9900000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:26.9900000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:26.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8820|10000|14||100.05|96.18|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:26.9900000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:24:27.0340000-07:00|40022550|Zeromus|0001AA13|25598292||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:27.0340000-07:00|10FF0002|Suchichi Suchi|0001AA13|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|1600|0|0|01|0D000747|0|41F00000|| +35|2023-10-06T20:24:27.0340000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.0340000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.0340000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.0340000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:27.0340000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:27.0780000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.0780000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.0780000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.0780000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:26.5600000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:24:27.1230000-07:00|10FF0008|Kokosaze Lulusaze|0001AA11|55377|55377|8800|10000|14||103.68|87.91|0.00|-2.70|1B00|0|0|01|04000A90|4B|41F00000|| +26|2023-10-06T20:24:27.1230000-07:00|A90|Rekindle|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|4B|55377|55377| +35|2023-10-06T20:24:27.1230000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.1230000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.1230000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.1230000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:27.1230000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|754003|59AA0000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|25598292|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||85.89|94.25|0.00|-2.99|0001AA18|0|1| +38|2023-10-06T20:24:27.1230000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||85.89|94.25|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:27.1230000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|63038|63038| +35|2023-10-06T20:24:27.1670000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.1670000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.1670000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.1670000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:27.2110000-07:00|40022550|Zeromus|0001AA15|25598147||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:27.2120000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.2120000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.2120000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.2120000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:27.2570000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.2570000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.2570000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.2570000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:27.2570000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25598292|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||83.21|96.30|0.00|2.34|0001AA19|0|1| +37|2023-10-06T20:24:27.3010000-07:00|40022550|Zeromus|0001AA16|25598003||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:27.3010000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.3010000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.3010000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.3010000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:27.3460000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.3460000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.3460000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.3460000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:27.3900000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.3900000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.3900000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.3900000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:27.4350000-07:00|40022550|Zeromus|0001AA10|25585069||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:27.4350000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.4350000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.4350000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.4350000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:27.4350000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35120000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|25598003|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8820|10000|||100.05|96.18|0.00|-3.14|0001AA1A|0|1| +35|2023-10-06T20:24:27.4790000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.4790000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.4790000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.4790000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:27.4790000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|154003|67F40000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25598003|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8800|10000|||103.68|87.91|0.00|-2.70|0001AA1B|0|1| +261|2023-10-06T20:24:27.0070000-07:00|Change|10FF0008||||| +37|2023-10-06T20:24:27.5240000-07:00|40022550|Zeromus|0001AA17|25574388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:27.5240000-07:00|10FF0001|Sesuga Sapisuga|0001AA17|89453|89453|10000|10000|14||83.01|90.85|0.00|2.13|1300|0|0|02|0400076E|03|41F00000|||||| +24|2023-10-06T20:24:27.5240000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1E18|89994|89994|10000|10000|||83.21|96.30|0.00|2.34|E0000000||0||||||||||| +24|2023-10-06T20:24:27.5240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2650|55377|55377|8500|10000|||103.68|87.91|0.00|-2.70|E0000000||0||||||||||| +35|2023-10-06T20:24:27.5240000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.5240000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.5240000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.5240000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:27.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|14||83.21|96.30|0.00|2.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:27.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8500|10000|14||103.68|87.91|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:27.5250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||83.01|90.85|0.00|2.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:27.5690000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.5690000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.5690000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.5690000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +37|2023-10-06T20:24:27.6140000-07:00|40022550|Zeromus|0001AA14|25568360||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:27.6140000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.6140000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.6140000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.6140000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:27.6140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B5F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25585069|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||83.01|90.85|0.00|2.13|0001AA1C|0|1| +31|2023-10-06T20:24:27.6140000-07:00|10FF0001||||| +35|2023-10-06T20:24:27.6580000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.6580000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.6580000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.6580000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:27.6580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4F3A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25568360|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7950|10000|||101.49|100.30|0.00|-3.07|0001AA1D|0|1| +35|2023-10-06T20:24:27.7020000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.7020000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.7020000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.7020000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:27.7020000-07:00|40022550|Zeromus|8B56|Meteor Impact|40022550|Zeromus|1B|8B568000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25568360|40478540|10000|10000|||100.00|80.10|0.00|0.00|25568360|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AA1E|0|1| +261|2023-10-06T20:24:27.2250000-07:00|Change|40022550||||| +00|2023-10-06T20:24:27.0000000-07:00|0044|Zeromus|Bright as stars in the night.| +261|2023-10-06T20:24:27.2250000-07:00|Change|10FF0004||||||||||||||||||||| +35|2023-10-06T20:24:27.7460000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.7460000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.7460000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.7460000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:27.7460000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|105A0000|104|30D8000|0|0|0|0|0|0|0|0|0|0|0|0|25568360|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA1F|0|1| +37|2023-10-06T20:24:27.7910000-07:00|40022550|Zeromus|0001AA19|25565619||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:27.7910000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.7910000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.7910000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.7910000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:27.8360000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.8360000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.8360000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.8360000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:27.8360000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|750003|61460000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|25568360|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8950|10000|||119.19|87.48|0.00|-1.94|0001AA20|0|1| +261|2023-10-06T20:24:27.4090000-07:00|Change|10FF0003||| +35|2023-10-06T20:24:27.8790000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.8790000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.8790000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.8790000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:27.9250000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:27.9250000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.9250000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:27.9250000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +26|2023-10-06T20:24:27.9250000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +21|2023-10-06T20:24:27.9250000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|48110000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|25565619|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||85.89|94.25|0.00|2.36|0001AA21|0|1| +38|2023-10-06T20:24:27.9250000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||85.89|94.25|0.00|2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:27.9250000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:24:27.9250000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +35|2023-10-06T20:24:27.9680000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:27.9680000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:27.9680000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:27.9680000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:27.6040000-07:00|Change|10FF0006||||||||||||||||||||||| +35|2023-10-06T20:24:28.0130000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.0130000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.0130000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.0130000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:28.0570000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.0570000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.0570000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.0570000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +24|2023-10-06T20:24:28.1010000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2268|89453|89453|10000|10000|||83.01|90.85|0.00|2.13|10FF0006|Wowobora Gogobora|1|56517|56517|8420|10000|||100.19|95.80|0.00|2.98| +37|2023-10-06T20:24:28.1010000-07:00|40022550|Zeromus|0001AA1A|25552033||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:28.1020000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.1020000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.1020000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.1020000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +38|2023-10-06T20:24:28.1020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||83.01|90.85|0.00|2.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:28.1020000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:24:28.1470000-07:00|40022550|Zeromus|0001AA1C|25549122||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:28.1470000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||92.45|92.03|0.00|2.58| +35|2023-10-06T20:24:28.1470000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.1470000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.1470000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.1470000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:28.1920000-07:00|40022550|Zeromus|0001AA18|25526168||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:28.1920000-07:00|10FF0005|Wuwuchu Wuchu|0001AA18|63038|63038|10000|10000|14||85.89|94.25|0.00|2.36|2700|0|0|02|05000A1B|01|41F00000|||||| +39|2023-10-06T20:24:28.1920000-07:00|10FF0003|Gegehi Gehi|51159|51159|8750|10000|||119.19|87.48|0.00|-1.94| +24|2023-10-06T20:24:28.1920000-07:00|40022550|Zeromus|DoT|0|2A69|25549122|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T20:24:28.1920000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.1920000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.1920000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.1920000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:28.1920000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25549122|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8550|10000|||119.19|87.48|0.00|-1.94|0001AA22|0|1| +38|2023-10-06T20:24:28.1920000-07:00|40022550|Zeromus|005A5A00|25515311|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:28.1920000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:28.1920000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||85.89|94.25|0.00|2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:24:28.2360000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:28.2360000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.2360000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.2360000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.2360000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:28.2360000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25549122|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8420|10000|||100.24|95.66|0.00|2.93|0001AA23|0|1| +37|2023-10-06T20:24:28.2810000-07:00|40022550|Zeromus|0001AA1F|25511125||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:28.2810000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.2810000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.2810000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.2810000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:28.3260000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.3260000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.3260000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T20:24:27.9340000-07:00|Change|10FF0003||| +35|2023-10-06T20:24:28.3260000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +36|2023-10-06T20:24:28.3260000-07:00|39A8|3| +39|2023-10-06T20:24:28.3710000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||83.01|90.85|0.00|2.13| +39|2023-10-06T20:24:28.3710000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7750|10000|||101.49|100.30|0.00|-3.07| +35|2023-10-06T20:24:28.3710000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.3710000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.3710000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.3710000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:28.3710000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|3B9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25511125|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||83.21|96.30|0.00|2.34|0001AA24|0|1| +37|2023-10-06T20:24:28.4140000-07:00|40022550|Zeromus|0001AA21|25492676||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:28.4150000-07:00|10FF0005|Wuwuchu Wuchu|0001AA21|63038|63038|10000|10000|14||85.89|94.25|0.00|2.36|2700|0|0|01|06000A1D|0|42700000|| +35|2023-10-06T20:24:28.4150000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.4150000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.4150000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.4150000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:28.4150000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||85.89|94.25|0.00|2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:28.4590000-07:00|40022550|Zeromus|0001AA1D|25472394||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:28.4600000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||85.89|94.25|0.00|2.36| +35|2023-10-06T20:24:28.4600000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.4600000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.4600000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.4600000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +39|2023-10-06T20:24:28.5050000-07:00|10FF0006|Wowobora Gogobora|56517|56517|8625|10000|||100.29|95.22|0.00|3.00| +35|2023-10-06T20:24:28.5050000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.5050000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.5050000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.5050000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:28.5480000-07:00|40022550|Zeromus|0001AA1B|25445782||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:28.5480000-07:00|4002284B|Demi-Phoenix|53095|53095|10000|10000|||106.13|92.45|0.00|-2.68| +35|2023-10-06T20:24:28.5480000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.5480000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.5480000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.5480000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:28.5930000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.5930000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.5930000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.5930000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:28.6380000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.6380000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.6380000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.6380000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:28.6820000-07:00|4002284B|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|156003|27670000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|25445782|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||106.13|92.45|0.00|-2.68|0001AA25|0|1| +35|2023-10-06T20:24:28.6820000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.6820000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.6820000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.6820000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:28.6820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8500|10000|14||103.68|87.91|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:28.6820000-07:00|9D6|Bind|3.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +38|2023-10-06T20:24:28.6820000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:28.6820000-07:00|9D6|Bind|3.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +38|2023-10-06T20:24:28.6830000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8750|10000|14||119.19|87.48|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:28.6830000-07:00|9D6|Bind|3.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +38|2023-10-06T20:24:28.6830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||85.89|94.26|-0.02|2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:28.6830000-07:00|9D6|Bind|3.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +37|2023-10-06T20:24:28.7270000-07:00|40022550|Zeromus|0001AA22|25445758||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:28.7270000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.7270000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.7270000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.7270000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +261|2023-10-06T20:24:28.2500000-07:00|Change|10FF0004||| +37|2023-10-06T20:24:28.7710000-07:00|40022550|Zeromus|0001AA23|25445720||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:28.7710000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.7710000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.7710000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.7710000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:28.8150000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.8150000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.8150000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.8150000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:28.8600000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.8600000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.8600000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.8600000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:28.9040000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.9040000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.9040000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.9040000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:28.9050000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|726003|52150000|104|F578000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|25445720|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA26|0|1| +20|2023-10-06T20:24:28.9050000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.31|95.00|0.00|3.03| +38|2023-10-06T20:24:28.9050000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:28.9050000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +35|2023-10-06T20:24:28.9490000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:28.9490000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:28.9490000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:28.9490000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:28.9940000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:28.9940000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.9940000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:28.9940000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +23|2023-10-06T20:24:29.0380000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|Cancelled| +37|2023-10-06T20:24:29.0380000-07:00|40022550|Zeromus|0001AA24|25430460||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:29.0380000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|10000|10000|||83.21|96.30|0.00|2.34| +39|2023-10-06T20:24:29.0380000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8700|10000|||103.68|87.91|0.00|-2.70| +35|2023-10-06T20:24:29.0380000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.0380000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.0380000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.0380000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:28.5500000-07:00|Change|10FF0008||| +35|2023-10-06T20:24:29.0830000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:29.0830000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.0830000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.0830000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +261|2023-10-06T20:24:28.5500000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T20:24:29.1290000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.1290000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.1290000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.1290000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +20|2023-10-06T20:24:29.1290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|101.49|100.30|0.00|-3.07| +35|2023-10-06T20:24:29.1720000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:29.1720000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.1720000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.1720000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:29.2170000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.2170000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.2170000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.2170000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +20|2023-10-06T20:24:29.2170000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.30|94.80|-0.02|-2.99| +35|2023-10-06T20:24:29.2610000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:29.2610000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.2610000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.2610000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:29.3060000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.3060000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.3060000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.3060000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:29.3500000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:29.3500000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.3500000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.3500000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:29.3500000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|F7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25430460|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||86.07|94.40|0.00|2.25|0001AA27|0|1| +35|2023-10-06T20:24:29.3940000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.3940000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.3940000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.3940000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:29.4380000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:29.4380000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.4380000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.4380000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:29.4380000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|712003|21D00000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|25430460|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||82.96|90.88|0.00|2.13|0001AA28|0|1| +35|2023-10-06T20:24:29.4820000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.4820000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.4820000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.4820000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:29.5270000-07:00|40022550|Zeromus|0001AA26|25409447||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:29.5270000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:29.5270000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.5270000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.5270000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +24|2023-10-06T20:24:29.5730000-07:00|40022666|Ruby Carbuncle|HoT|0|4C3|54201|54201|10000|10000|||99.81|96.03|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|63038|63038|10000|10000|||86.07|94.41|-0.01|2.15| +35|2023-10-06T20:24:29.5730000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.5730000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.5730000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.5730000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:29.5730000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|3.13|0|0|0|||||||||| +35|2023-10-06T20:24:29.6160000-07:00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T20:24:29.6160000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.6160000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.6160000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +21|2023-10-06T20:24:29.6160000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|E1B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||83.21|96.30|0.00|2.34|25409447|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AA29|0|1| +37|2023-10-06T20:24:29.6620000-07:00|40022550|Zeromus|0001AA20|25384545||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:29.6620000-07:00|10FF0002|Suchichi Suchi|HoT|0|1E1F|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|10FF0002|Suchichi Suchi|0|63089|63089|10000|10000|||92.45|92.03|0.00|2.58| +35|2023-10-06T20:24:29.6620000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.6620000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.6620000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.6620000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:29.6620000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|14||92.45|92.03|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:29.7060000-07:00|40022550|Zeromus|0001AA25|25374458||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:29.7060000-07:00|10FF0003|Gegehi Gehi|HoT|0|230D|51159|51159|8750|10000|||119.19|87.48|0.00|-1.94|E0000000||0||||||||||| +35|2023-10-06T20:24:29.7060000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.7060000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.7060000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:29.7060000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +38|2023-10-06T20:24:29.7060000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8750|10000|14||119.19|87.48|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:29.7510000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.7510000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.7510000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:29.3190000-07:00|Change|10FF0004||||||||||||| +22|2023-10-06T20:24:29.7960000-07:00|4002254E|Comet|8B58|Meteor Impact|10FF0008|Kokosaze Lulusaze|730003|B180000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|55377|55377|8700|10000|||103.68|87.91|0.00|-2.70|69200|69200|10000|10000|||106.00|118.00|0.00|-3.07|0001AA2A|0|1| +35|2023-10-06T20:24:29.7960000-07:00|4002254D|Comet|10FF0002|Suchichi Suchi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.7960000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.7960000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:29.7960000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +38|2023-10-06T20:24:29.7960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8700|10000|0||103.68|87.91|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:29.7960000-07:00|8C8|Blunt Resistance Down|9.96|4002254E|Comet|10FF0008|Kokosaze Lulusaze|00|55377|69200| +35|2023-10-06T20:24:29.8390000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:29.8390000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.8390000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:29.4110000-07:00|Change|4002254E||||| +37|2023-10-06T20:24:29.8840000-07:00|40022550|Zeromus|0001AA27|25370496||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:29.8840000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|172F|89453|89453|10000|10000|||82.96|90.88|0.00|2.13|E0000000||0||||||||||| +24|2023-10-06T20:24:29.8840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2576|56517|56517|7750|10000|||101.49|100.30|0.00|-3.07|E0000000||0||||||||||| +35|2023-10-06T20:24:29.8840000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.8840000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:29.8840000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.8840000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T20:24:29.8840000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||83.21|96.30|0.00|2.34|89994|89994|10000|10000|||83.21|96.30|0.00|2.34|0001AA2B|0|1| +21|2023-10-06T20:24:29.8840000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25374458|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||82.96|90.88|0.00|2.13|0001AA2C|0|1| +38|2023-10-06T20:24:29.8840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|14||83.21|96.30|0.00|2.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:29.8840000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:24:29.8840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||82.96|90.88|0.00|2.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:29.8840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7750|10000|14||101.49|100.30|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:24:29.8840000-07:00|10FF0001||||| +35|2023-10-06T20:24:29.9280000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:29.9280000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:29.9280000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|582C0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25374458|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8700|10000|||103.68|87.91|0.00|-2.32|0001AA2D|0|1| +21|2023-10-06T20:24:29.9280000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25374458|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8700|10000|||103.68|87.91|0.00|-2.32|0001AA2E|0|1| +261|2023-10-06T20:24:29.4110000-07:00|Change|10FF0008||| +22|2023-10-06T20:24:29.9720000-07:00|4002254D|Comet|8B58|Meteor Impact|10FF0002|Suchichi Suchi|730003|F10000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|69200|69200|10000|10000|||106.00|118.00|0.00|0.00|0001AA2F|0|1| +261|2023-10-06T20:24:29.5030000-07:00|Change|4002254D||||| +261|2023-10-06T20:24:29.6050000-07:00|Change|10FF0006||||||||||||||||||| +24|2023-10-06T20:24:29.9730000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1792|63038|63038|10000|10000|||86.08|94.41|0.00|2.13|E0000000||0||||||||||| +35|2023-10-06T20:24:29.9730000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:29.9730000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:29.9730000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:29.9730000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T20:24:29.9730000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:29.9730000-07:00|8C8|Blunt Resistance Down|9.96|4002254D|Comet|10FF0002|Suchichi Suchi|00|63089|69200| +38|2023-10-06T20:24:29.9730000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|14||86.08|94.41|0.00|2.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:30.0170000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2622|56517|56517|8625|10000|||100.14|94.80|0.00|-3.13|E0000000||0||||||||||| +35|2023-10-06T20:24:30.0170000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.0170000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:30.0170000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8625|10000|14||100.14|94.80|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:30.0170000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +261|2023-10-06T20:24:29.6050000-07:00|Change|4002254C||||||||| +37|2023-10-06T20:24:30.0610000-07:00|40022550|Zeromus|0001AA28|25361840||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:30.0610000-07:00|4002254C|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T20:24:30.0610000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:30.0610000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.0610000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T20:24:30.0610000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|314E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25370496|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7750|10000|||101.49|100.30|0.00|-3.07|0001AA30|0|1| +35|2023-10-06T20:24:30.1050000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.1050000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:30.1500000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:30.1500000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.1500000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.1500000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T20:24:30.1500000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|359A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|25370496|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8625|10000|||100.14|94.80|0.00|-3.13|0001AA31|0|1| +261|2023-10-06T20:24:29.7150000-07:00|Change|10FF0008||||||||| +22|2023-10-06T20:24:30.1950000-07:00|4002254C|Comet|8B58|Meteor Impact|10FF0003|Gegehi Gehi|730003|D9F0000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|51159|51159|8750|10000|||119.19|87.48|0.00|-1.94|69200|69200|10000|10000|||106.00|118.00|0.00|2.73|0001AA32|0|1| +35|2023-10-06T20:24:30.1950000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:30.1950000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8750|10000|0||119.19|87.48|0.00|-1.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:30.1950000-07:00|8C8|Blunt Resistance Down|9.96|4002254C|Comet|10FF0003|Gegehi Gehi|00|51159|69200| +35|2023-10-06T20:24:30.2380000-07:00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|0000|0000|00FF|||| +35|2023-10-06T20:24:30.2380000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.2380000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.2380000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.2830000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:30.2830000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|756003|DBDC0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|25361840|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8750|10000|||119.19|87.48|0.00|-1.94|0001AA33|0|1| +261|2023-10-06T20:24:29.8300000-07:00|Change|10FF0003||| +35|2023-10-06T20:24:30.3280000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.3280000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.3280000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.3280000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:29.9430000-07:00|Change|4002254C||| +261|2023-10-06T20:24:29.9430000-07:00|Change|4002254E||||||||| +22|2023-10-06T20:24:30.3720000-07:00|4002254B|Comet|8B58|Meteor Impact|10FF0005|Wuwuchu Wuchu|730003|0|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||86.08|94.41|0.00|2.13|69200|69200|10000|10000|||106.00|118.00|0.00|-2.44|0001AA34|0|1| +35|2023-10-06T20:24:30.3720000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.3720000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.3720000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.3720000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:30.3720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||86.08|94.41|0.00|2.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:30.3720000-07:00|8C8|Blunt Resistance Down|9.96|4002254B|Comet|10FF0005|Wuwuchu Wuchu|00|63038|69200| +37|2023-10-06T20:24:30.4170000-07:00|10FF0007|Kehabiqo Febiqo|0001AA2B|89994|89994|10000|10000|14||83.21|96.30|0.00|2.34|1500|0|0|01|06000769|0|41F00000|| +37|2023-10-06T20:24:30.4170000-07:00|10FF0007|Kehabiqo Febiqo|0001AA29|86383|89994|10000|10000|0||83.21|96.30|0.00|2.34|1500|0|0|01|05000000|0|0|| +37|2023-10-06T20:24:30.4170000-07:00|40022550|Zeromus|0001AA2C|25360083||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:30.4170000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.4170000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.4170000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.4170000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:30.4170000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|722003|422D0000|104|C5E8000|23E|BD8000|FE3E|9E8000|0|0|0|0|0|0|0|0|25361840|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA35|0|1| +38|2023-10-06T20:24:30.4170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86383|89994|10000|10000|0||83.21|96.30|0.00|2.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:30.4170000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +37|2023-10-06T20:24:30.4620000-07:00|10FF0008|Kokosaze Lulusaze|0001AA2A|52537|55377|8400|10000|0||103.68|87.91|0.00|0.11|1B00|0|0|02|03000000|0|0|||||| +37|2023-10-06T20:24:30.4620000-07:00|40022550|Zeromus|0001AA2E|25359848||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:30.4620000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.4620000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.4620000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.4620000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:30.4620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|52537|55377|8400|10000|0||103.68|87.91|0.00|0.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:30.4620000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|55377|89994| +261|2023-10-06T20:24:30.0630000-07:00|Change|4002254B||||| +261|2023-10-06T20:24:30.0630000-07:00|Change|10FF0008||||||||| +35|2023-10-06T20:24:30.5050000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.5050000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.5050000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.5050000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +24|2023-10-06T20:24:30.5500000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1DB4|86383|89994|10000|10000|||83.21|96.30|0.00|2.34|E0000000||0||||||||||| +24|2023-10-06T20:24:30.5500000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|244B|52537|55377|8400|10000|||103.68|87.91|0.00|0.14|E0000000||0||||||||||| +35|2023-10-06T20:24:30.5500000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.5500000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.5500000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.5500000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:30.5500000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D210000|104|2738000|0|0|0|0|0|0|0|0|0|0|0|0|25359848|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA36|0|1| +38|2023-10-06T20:24:30.5500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||83.21|96.30|0.00|2.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:30.5500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8400|10000|0||103.68|87.91|0.00|0.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:30.0630000-07:00|Change|4002254D||||||||| +35|2023-10-06T20:24:30.5940000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.5940000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.5940000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.5940000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:30.6380000-07:00|10FF0002|Suchichi Suchi|0001AA2F|62848|63089|10000|10000|0||92.45|92.03|0.00|2.58|1600|0|0|02|02000000|0|0|||||| +35|2023-10-06T20:24:30.6380000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.6380000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.6380000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.6380000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:30.6380000-07:00|10FF0002|Suchichi Suchi|005A5A16|62848|63089|10000|10000|0||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:30.6380000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|63089|89994| +35|2023-10-06T20:24:30.6830000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.6830000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.6830000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.6830000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:30.7280000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.7280000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.7280000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.7280000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:30.2830000-07:00|Change|4002254E||||||||| +261|2023-10-06T20:24:30.2830000-07:00|Change|10FF0004||||||||||||||||||||| +35|2023-10-06T20:24:30.7720000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.7720000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.7720000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.7720000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:30.2830000-07:00|Change|4002256E||||||||| +37|2023-10-06T20:24:30.8160000-07:00|10FF0003|Gegehi Gehi|0001AA32|47672|51159|8350|10000|0||119.19|87.48|0.00|-1.94|2300|0|0|02|02000000|0|0|||||| +24|2023-10-06T20:24:30.8160000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1602|89453|89453|10000|10000|||82.36|91.32|0.00|0.45|10FF0006|Wowobora Gogobora|0|56517|56517|8225|10000|||100.14|94.80|0.00|-3.13| +37|2023-10-06T20:24:30.8160000-07:00|40022550|Zeromus|0001AA31|25346126||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:30.8180000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.8180000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.8180000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.8180000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:30.8180000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|94440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25359848|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||83.21|96.30|0.00|2.34|0001AA37|0|1| +21|2023-10-06T20:24:30.8180000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BBD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25359848|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||83.21|96.30|0.00|2.34|0001AA38|0|1| +38|2023-10-06T20:24:30.8180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||83.21|96.30|0.00|2.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:30.8180000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:24:30.8180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||82.36|91.32|0.00|0.45|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:30.3770000-07:00|Change|4002254D||||||||| +26|2023-10-06T20:24:30.8180000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:30.8180000-07:00|10FF0003|Gegehi Gehi|005A5A23|47672|51159|8350|10000|0||119.19|87.48|0.00|-1.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:30.8180000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|51159|89994| +37|2023-10-06T20:24:30.8610000-07:00|40022550|Zeromus|0001AA30|25333504||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:30.8620000-07:00|4002256E|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AA39|0|0| +35|2023-10-06T20:24:30.8620000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.8620000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.8620000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.8620000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:30.9060000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.9060000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.9060000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.9060000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:30.4690000-07:00|Change|4002254C||||||||| +35|2023-10-06T20:24:30.9510000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.9510000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.9510000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.9510000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:30.9510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8400|10000|0||103.68|87.91|0.00|0.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:30.9510000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|55377|55377| +21|2023-10-06T20:24:30.9510000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|752003|351C0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|25333504|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8400|10000|||103.68|87.91|0.00|0.13|0001AA3A|0|1| +38|2023-10-06T20:24:30.9510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8400|10000|0||103.68|87.91|0.00|0.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:30.9510000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:24:30.4690000-07:00|Change|4002256D||||||||| +37|2023-10-06T20:24:30.9950000-07:00|10FF0005|Wuwuchu Wuchu|0001AA34|63038|63038|10000|10000|1||86.08|94.41|0.00|2.43|2700|0|0|01|0A0008C8|0|4116041A|| +37|2023-10-06T20:24:30.9950000-07:00|40022550|Zeromus|0001AA2D|25310932||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:30.9950000-07:00|10FF0008|Kokosaze Lulusaze|0001AA2D|55377|55377|8400|10000|0||103.68|87.91|0.00|-2.70|1B00|0|0|01|0E000A8D|0|C2700000|| +35|2023-10-06T20:24:30.9950000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:30.9950000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:30.9950000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:30.9950000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:31.0410000-07:00|40022550|Zeromus|0001AA35|25293991||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:31.0410000-07:00|10FF0002|Suchichi Suchi|0001AA35|63089||||||92.45|92.03|0.00|2.58| +21|2023-10-06T20:24:31.0410000-07:00|4002256D|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|-2.66|0001AA3B|0|0| +35|2023-10-06T20:24:31.0410000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.0410000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.0410000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.0410000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T20:24:31.0860000-07:00|40022550|Zeromus|0001AA36|25290630||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:31.0860000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.0860000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.0860000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.0860000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:31.0860000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|720003|36B70000|104|A398000|0|0|0|0|0|0|0|0|0|0|0|0|25333504|40478540|10000|10000|||100.00|80.10|0.00|0.00|62848|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA3C|0|1| +21|2023-10-06T20:24:31.0860000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||82.36|91.32|0.00|0.45|89453|89453|10000|10000|||82.36|91.32|0.00|0.45|0001AA3D|0|1| +261|2023-10-06T20:24:30.5850000-07:00|Change|4002254B||||||||| +39|2023-10-06T20:24:31.1300000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||92.45|92.03|0.00|2.58| +35|2023-10-06T20:24:31.1300000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.1300000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.1300000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.1300000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:30.7010000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:24:30.7010000-07:00|Change|4002254C||||||||| +39|2023-10-06T20:24:31.1750000-07:00|10FF0003|Gegehi Gehi|48183|51159|8550|10000|||119.19|87.48|0.00|-1.29| +24|2023-10-06T20:24:31.1750000-07:00|40022550|Zeromus|DoT|0|1F6D|25290630|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T20:24:31.1750000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.1750000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.1750000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.1750000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:31.1750000-07:00|40022550|Zeromus|005A5A00|25282585|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:31.1750000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +261|2023-10-06T20:24:30.7010000-07:00|Change|4002256C||||||||| +39|2023-10-06T20:24:31.2190000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:31.2190000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.2190000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.2190000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.2190000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:30.7010000-07:00|Change|10FF0003||||| +21|2023-10-06T20:24:31.2630000-07:00|4002256C|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AA3E|0|0| +35|2023-10-06T20:24:31.2640000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.2640000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.2640000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.2640000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:31.3080000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.3080000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.3080000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.3080000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +36|2023-10-06T20:24:31.3080000-07:00|3A84|3| +261|2023-10-06T20:24:30.9320000-07:00|Change|4002254B||||||||| +37|2023-10-06T20:24:31.3530000-07:00|40022550|Zeromus|0001AA38|25279580||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:31.3530000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||82.89|92.33|0.00|0.49| +39|2023-10-06T20:24:31.3530000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7550|10000|||101.82|100.42|0.00|1.37| +35|2023-10-06T20:24:31.3530000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.3530000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.3530000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.3530000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:30.9320000-07:00|Change|4002256B||||||||| +35|2023-10-06T20:24:31.3980000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.3980000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.3980000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.3980000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:31.4430000-07:00|4002256B|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|-2.44|0001AA3F|0|0| +39|2023-10-06T20:24:31.4430000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||86.08|94.41|0.00|2.77| +35|2023-10-06T20:24:31.4430000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.4430000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.4430000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.4430000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +39|2023-10-06T20:24:31.4880000-07:00|10FF0006|Wowobora Gogobora|56517|56517|8430|10000|||100.20|94.80|0.00|1.87| +35|2023-10-06T20:24:31.4880000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.4880000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.4880000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.4880000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:31.5320000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|155B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|48183|51159|8550|10000|||119.19|87.48|0.00|-0.86|54201|54201|10000|10000|||99.81|96.03|0.00|3.04|0001AA40|0|1| +39|2023-10-06T20:24:31.5320000-07:00|4002284B|Demi-Phoenix|53095|53095|10000|10000|||106.13|92.45|0.00|-2.68| +35|2023-10-06T20:24:31.5320000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.5320000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.5320000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.5320000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T20:24:31.5770000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.5770000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.5770000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.5770000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T20:24:31.5770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||83.21|96.30|0.00|2.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|89994|63038| +38|2023-10-06T20:24:31.5770000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|63089|63038| +38|2023-10-06T20:24:31.5770000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|3.04|0|0|0||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|54201|63038| +38|2023-10-06T20:24:31.5770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8400|10000|0||103.68|87.91|0.00|-0.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|55377|63038| +38|2023-10-06T20:24:31.5770000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8430|10000|14||100.20|94.80|0.00|1.87|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|56517|63038| +38|2023-10-06T20:24:31.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||83.50|93.48|0.00|0.50|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|89453|63038| +38|2023-10-06T20:24:31.5770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7550|10000|14||102.24|100.45|0.00|1.24|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|56517|63038| +38|2023-10-06T20:24:31.5770000-07:00|10FF0003|Gegehi Gehi|005A5A23|48183|51159|8550|10000|0||119.19|87.48|0.00|-0.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|51159|63038| +38|2023-10-06T20:24:31.5770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||86.08|94.41|0.00|2.79|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.5770000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +35|2023-10-06T20:24:31.6210000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.6210000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.6210000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.6210000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:31.6210000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|23530000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|25279580|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7550|10000|||102.24|100.45|0.00|1.24|0001AA41|0|1| +35|2023-10-06T20:24:31.6650000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.6650000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.6650000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.6650000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:31.6650000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25279580|40478540|10000|10000|||100.00|80.10|0.00|0.00|48183|51159|8550|10000|||119.19|87.48|0.00|-0.78|0001AA42|0|1| +37|2023-10-06T20:24:31.7110000-07:00|10FF0001|Sesuga Sapisuga|0001AA3D|89453|89453|10000|10000|14||83.67|94.07|0.00|0.51|1300|0|0|01|0300004C|0|41A00000|| +26|2023-10-06T20:24:31.7110000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +35|2023-10-06T20:24:31.7110000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T20:24:31.7110000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.7110000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.7110000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:31.7110000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35720003|28D20000|104|7A08000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|25279580|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.45|92.03|0.00|2.58|0001AA43|0|1| +38|2023-10-06T20:24:31.7110000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.7110000-07:00|9D6|Bind|0.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +38|2023-10-06T20:24:31.7110000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8400|10000|0||103.68|87.91|0.00|0.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.7110000-07:00|9D6|Bind|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +38|2023-10-06T20:24:31.7110000-07:00|10FF0003|Gegehi Gehi|005A5A23|48183|51159|8550|10000|0||119.19|87.48|0.00|-0.78|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.7110000-07:00|9D6|Bind|0.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +38|2023-10-06T20:24:31.7110000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||86.08|94.41|0.00|2.77|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.7110000-07:00|9D6|Bind|0.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +37|2023-10-06T20:24:31.7540000-07:00|40022550|Zeromus|0001AA37|25241624||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:31.7540000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:31.7540000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.7540000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.7540000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T20:24:31.3770000-07:00|Change|10FF0004||||||||| +35|2023-10-06T20:24:31.8000000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:31.8000000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.8000000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.8000000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T20:24:31.8000000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|750003|28EB0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|25279580|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||83.70|94.66|0.00|0.51|0001AA44|0|1| +21|2023-10-06T20:24:31.8000000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25279580|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7150|10000|||103.74|100.40|0.00|-2.91|0001AA45|0|1| +38|2023-10-06T20:24:31.8000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||83.70|94.66|0.00|0.51|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:31.8000000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|89453|89453| +26|2023-10-06T20:24:31.8000000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +37|2023-10-06T20:24:31.8440000-07:00|40022550|Zeromus|0001AA3C|25227617||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:31.8440000-07:00|40022550|Zeromus|0001AA33|25171333||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:31.8440000-07:00|4002284B|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|154003|16D10000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|25279580|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||106.13|92.45|0.00|-2.68|0001AA46|0|1| +35|2023-10-06T20:24:31.8440000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:31.8440000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.8440000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.8440000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:31.8890000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:31.8890000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.8890000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.8890000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +21|2023-10-06T20:24:31.8890000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||83.24|96.29|0.00|2.20|89994|89994|10000|10000|||83.24|96.29|0.00|2.20|0001AA47|0|1| +38|2023-10-06T20:24:31.8890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||83.24|96.29|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:31.8890000-07:00|A75|Surging Tempest|35.62|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +26|2023-10-06T20:24:31.8890000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|89994|89994| +26|2023-10-06T20:24:31.8890000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +26|2023-10-06T20:24:31.8890000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +261|2023-10-06T20:24:31.4760000-07:00|Change|10FF0001||||||||| +35|2023-10-06T20:24:31.9350000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:31.9350000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.9350000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.9350000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +38|2023-10-06T20:24:31.9350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||83.24|96.29|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.9350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:24:31.9350000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||92.45|92.03|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.9350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|63089|89994| +38|2023-10-06T20:24:31.9350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8400|10000|0||103.68|87.91|0.00|0.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.9350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|55377|89994| +38|2023-10-06T20:24:31.9350000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8430|10000|14||101.29|93.31|-0.02|2.38|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.9350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|56517|89994| +38|2023-10-06T20:24:31.9350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||84.00|95.19|0.00|0.53|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.9350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|89453|89994| +38|2023-10-06T20:24:31.9350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7150|10000|14||104.14|100.36|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.9350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|56517|89994| +38|2023-10-06T20:24:31.9350000-07:00|10FF0003|Gegehi Gehi|005A5A23|48183|51159|8550|10000|0||119.19|87.48|0.00|-0.63|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.9350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|51159|89994| +38|2023-10-06T20:24:31.9350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||86.08|94.41|0.00|2.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:31.9350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|63038|89994| +37|2023-10-06T20:24:31.9770000-07:00|40022550|Zeromus|0001AA3A|25157737||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:31.9770000-07:00|10FF0008|Kokosaze Lulusaze|0001AA3A|55377|55377|8400|10000|0||103.68|87.91|0.00|0.10|1B00|0|0|01|0E000A8D|0|42700000|| +261|2023-10-06T20:24:31.6630000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T20:24:31.9780000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:31.9780000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:31.9780000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:31.9780000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +38|2023-10-06T20:24:31.9780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8400|10000|0||103.68|87.91|0.00|0.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:24:32.0220000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|10000|10000|||83.29|96.27|0.00|1.88| +39|2023-10-06T20:24:32.0220000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8600|10000|||103.68|87.91|0.00|0.10| +35|2023-10-06T20:24:32.0220000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.0220000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.0220000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.0220000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.0670000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.0670000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.0670000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.0670000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.1120000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.1120000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.1120000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.1120000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.1560000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.1560000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.1560000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.1560000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +21|2023-10-06T20:24:32.1560000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25157737|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8430|10000|||101.40|92.76|0.00|2.76|0001AA48|0|1| +21|2023-10-06T20:24:32.1560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25157737|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||84.71|96.36|0.00|0.55|0001AA49|0|1| +31|2023-10-06T20:24:32.1560000-07:00|10FF0001||||| +261|2023-10-06T20:24:31.6630000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:24:32.2010000-07:00|40022550|Zeromus|0001AA42|25157705||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:32.2010000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.2010000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.2010000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.2010000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.2450000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.2450000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.2450000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.2450000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.2890000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.2890000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.2890000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.2890000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +37|2023-10-06T20:24:32.3340000-07:00|10FF0003|Gegehi Gehi|0001AA40|51159||||||118.68|88.30|0.00|-0.56| +37|2023-10-06T20:24:32.3340000-07:00|40022550|Zeromus|0001AA45|25157556||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:32.3340000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.3340000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.3340000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.3340000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.3790000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.3790000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.3790000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.3790000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +21|2023-10-06T20:24:32.3790000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|720003|3C680000|104|B4A8000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|25157705|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||92.47|92.06|0.00|2.58|0001AA4A|0|1| +38|2023-10-06T20:24:32.3790000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||92.47|92.06|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:32.3790000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:32.4250000-07:00|40022550|Zeromus|0001AA44|25147081||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:32.4250000-07:00|10FF0001|Sesuga Sapisuga|0001AA44|89453|89453|10000|10000|14||85.71|98.04|0.00|0.53|1300|0|0|02|0A000558|04|41F00000|||||| +35|2023-10-06T20:24:32.4250000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.4250000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.4250000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.4250000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +21|2023-10-06T20:24:32.4250000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|154003|69F10000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25157705|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8600|10000|||103.68|88.01|0.00|0.10|0001AA4B|0|1| +38|2023-10-06T20:24:32.4250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||85.71|98.04|0.00|0.53|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:32.4690000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.4690000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.4690000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.4690000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.5130000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.5130000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.5130000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T20:24:32.5130000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +261|2023-10-06T20:24:32.1170000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:24:32.5590000-07:00|40022550|Zeromus|0001AA41|25138038||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:32.5590000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.5590000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.5590000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.5590000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +21|2023-10-06T20:24:32.5590000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C7F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25147081|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||86.66|93.89|0.00|2.82|0001AA4C|0|1| +35|2023-10-06T20:24:32.6020000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.6020000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.6020000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.6020000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +37|2023-10-06T20:24:32.6470000-07:00|10FF0007|Kehabiqo Febiqo|0001AA47|89994|89994|10000|10000|0||84.65|95.86|0.00|1.88|1500|0|0|03|04000499|03|41700000|||||||||| +24|2023-10-06T20:24:32.6470000-07:00|10FF0002|Suchichi Suchi|HoT|0|1549|63089|63089|10000|10000|||92.95|92.97|0.00|2.07|4002254D|Comet|0|69200|69200|10000|10000|||92.45|92.03|0.00|-2.66| +35|2023-10-06T20:24:32.6470000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.6470000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.6470000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.6470000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +21|2023-10-06T20:24:32.6470000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|428A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|10000|10000|||84.65|95.86|0.00|1.88|25147081|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AA4D|0|1| +20|2023-10-06T20:24:32.6470000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|102.01|92.33|0.00|1.87| +21|2023-10-06T20:24:32.6470000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|710003|5B5C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25147081|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||86.36|99.16|0.00|0.53|0001AA4E|0|1| +38|2023-10-06T20:24:32.6470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||84.65|95.86|0.00|1.88|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:32.6470000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||92.95|92.97|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:32.2420000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:24:32.6910000-07:00|40022550|Zeromus|0001AA48|25137981||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:32.6910000-07:00|40022550|Zeromus|0001AA49|25135880||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:32.6910000-07:00|10FF0003|Gegehi Gehi|HoT|0|1726|51159|51159|8550|10000|||117.94|89.51|0.00|-0.56|4002254C|Comet|0|69200|69200|10000|10000|||119.19|87.48|0.00|2.73| +35|2023-10-06T20:24:32.6910000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.6910000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.6910000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.6910000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +38|2023-10-06T20:24:32.6910000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8550|10000|0||117.55|90.17|-0.02|-0.55|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:32.3400000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:32.7360000-07:00|40022550|Zeromus|0001AA43|25125430||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:32.7360000-07:00|10FF0002|Suchichi Suchi|0001AA43|63089|63089|10000|10000|0||93.11|93.27|0.00|1.97|1600|0|0|01|020004DB|0|C1700000|| +35|2023-10-06T20:24:32.7360000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.7360000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.7360000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.7360000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.7800000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.7800000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.7800000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.7800000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T20:24:32.8250000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.8250000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.8250000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.8250000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +37|2023-10-06T20:24:32.8690000-07:00|40022550|Zeromus|0001AA4A|25109966||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:32.8690000-07:00|10FF0002|Suchichi Suchi|0001AA4A|63089|63089|10000|10000|0||93.26|93.57|0.00|1.88|1600|0|0|01|020004DB|0|41700000|| +37|2023-10-06T20:24:32.8690000-07:00|40022550|Zeromus|0001AA46|25104125||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:32.8690000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|93F|89453|89453|10000|10000|||86.79|100.26|0.00|0.56|10FF0001|Sesuga Sapisuga|0|89453|89453|10000|10000|||86.79|100.26|0.00|0.56| +24|2023-10-06T20:24:32.8690000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1766|56517|56517|7150|10000|||109.69|97.26|0.00|2.35|E0000000||0||||||||||| +35|2023-10-06T20:24:32.8690000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.8690000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.8690000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.8690000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:32.8690000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||93.26|93.57|0.00|1.88|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:32.8690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||86.79|100.26|0.00|0.56|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:32.8690000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:32.8690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7150|10000|14||109.69|97.26|0.00|2.35|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:32.9140000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.9140000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.9140000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.9140000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +24|2023-10-06T20:24:32.9590000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|980|63038|63038|10000|10000|||87.13|93.61|0.00|2.86|E0000000||0||||||||||| +35|2023-10-06T20:24:32.9590000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:32.9590000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:32.9590000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:32.9590000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:32.9590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||87.13|93.61|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:32.5440000-07:00|Change|10FF0003||||||||| +24|2023-10-06T20:24:33.0030000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1B13|56517|56517|8430|10000|||102.15|92.29|0.00|2.87|E0000000||0||||||||||| +35|2023-10-06T20:24:33.0030000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.0030000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.0030000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.0030000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:33.0030000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8430|10000|14||102.15|92.29|0.00|2.87|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:33.0030000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +35|2023-10-06T20:24:33.0470000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.0470000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.0470000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.0470000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:33.0910000-07:00|40022550|Zeromus|0001AA4C|25100926||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:33.0920000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.0920000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.0920000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.0920000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:33.0920000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25104125|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8300|10000|||103.83|90.00|0.00|-1.86|0001AA4F|0|1| +35|2023-10-06T20:24:33.1360000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.1360000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.1360000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.1360000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:33.1810000-07:00|40022550|Zeromus|0001AA4E|25077538||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:33.1810000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.1810000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.1810000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.1810000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:32.7840000-07:00|Change|10FF0006||||||||||||||||||||| +35|2023-10-06T20:24:33.2260000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.2260000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.2260000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.2260000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:33.2260000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||93.43|93.89|0.00|0.99|63089|63089|10000|10000|||93.43|93.89|0.00|0.99|0001AA50|0|1| +38|2023-10-06T20:24:33.2260000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||93.43|93.89|0.00|0.99|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:33.2260000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +35|2023-10-06T20:24:33.2700000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.2700000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.2700000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.2700000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:33.2700000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|76200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25100926|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|10000|10000|||88.07|94.56|-0.02|2.06|0001AA51|0|1| +38|2023-10-06T20:24:33.2700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|10000|10000|0||88.07|94.56|-0.02|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:33.2700000-07:00|499|Inner Release|14.33|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|89994|89994| +35|2023-10-06T20:24:33.3140000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.3140000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.3140000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.3140000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:33.3580000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.3580000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.3580000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.3580000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:33.3580000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|10330000|104|3068000|0|0|0|0|0|0|0|0|0|0|0|0|25077538|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||93.45|93.94|0.00|0.49|0001AA52|0|1| +35|2023-10-06T20:24:33.4040000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.4040000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.4040000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.4040000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:33.4480000-07:00|10FF0007|Kehabiqo Febiqo|0001AA4D|72960||||||88.53|94.32|0.00|2.48| +35|2023-10-06T20:24:33.4480000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.4480000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.4480000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.4480000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:33.4920000-07:00|40022550|Zeromus|0001AA4B|25050417||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:33.4920000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.4920000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.4920000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.4920000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +24|2023-10-06T20:24:33.5380000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|99F|72960|89994|10000|10000|||88.71|94.23|0.00|2.48|E0000000||0||||||||||| +24|2023-10-06T20:24:33.5380000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|170F|55377|55377|8300|10000|||104.02|93.32|0.00|-0.34|10FF0008|Kokosaze Lulusaze|0|55377|55377|8300|10000|||104.02|93.32|0.00|-0.34| +35|2023-10-06T20:24:33.5380000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.5380000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.5380000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.5380000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:33.5380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|75423|89994|10000|10000|0||88.71|94.23|0.00|2.48|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:33.5380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8300|10000|0||104.02|93.32|0.00|-0.34|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:33.5810000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.5810000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.5810000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.5810000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:33.2400000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:24:33.5820000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|55E90000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|25050417|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8430|10000|||102.22|92.27|0.00|-2.96|0001AA53|0|1| +261|2023-10-06T20:24:33.2400000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:24:33.6260000-07:00|40022550|Zeromus|0001AA4F|25050270||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:33.6260000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.6260000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.6260000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.6260000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:33.6710000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.6710000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.6710000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.6710000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:33.7140000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.7140000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.7140000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FE|||| +35|2023-10-06T20:24:33.7140000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:33.7590000-07:00|10FF0002|Suchichi Suchi|0001AA50|63089|63089|10000|10000|0||93.85|94.68|0.00|0.49|1600|0|0|01|05000074|0|40A00000|| +35|2023-10-06T20:24:33.7590000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.7590000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.7590000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:33.7590000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:33.7590000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||93.85|94.68|0.00|0.49|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:33.3300000-07:00|Change|10FF0003||||||||| +35|2023-10-06T20:24:33.8030000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.8030000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.8030000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:33.8030000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:33.8470000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.8470000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.8470000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:33.8470000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:33.8920000-07:00|40022550|Zeromus|0001AA52|25046123||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:33.8920000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.8920000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.8920000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:33.8920000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:33.9370000-07:00|40022550|Zeromus|0001AA51|25015883||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:33.9370000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.9370000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.9370000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:33.9370000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:33.9810000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:33.9810000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:33.9810000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:33.9810000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.0250000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.0250000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T20:24:34.0250000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.0250000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.0700000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.0700000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.0700000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.0700000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.1150000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.1150000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.1150000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.1150000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +39|2023-10-06T20:24:34.1600000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||95.41|97.63|-0.02|0.48| +35|2023-10-06T20:24:34.1600000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.1600000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.1600000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.1600000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:33.7110000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:24:34.2040000-07:00|10FF0003|Gegehi Gehi|51159|51159|8750|10000|||115.01|98.75|-0.02|-0.23| +24|2023-10-06T20:24:34.2040000-07:00|40022550|Zeromus|DoT|0|1E56|25015883|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T20:24:34.2040000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.2040000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.2040000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.2040000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:34.2040000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AFE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25015883|40478540|10000|10000|||100.00|80.10|0.00|0.00|75423|89994|10000|10000|||90.12|95.40|0.00|1.16|0001AA54|0|1| +21|2023-10-06T20:24:34.2040000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F726003|958F0000|104|37E88000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|25015883|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||95.41|97.63|-0.02|0.48|0001AA55|0|1| +38|2023-10-06T20:24:34.2040000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.41|97.63|-0.02|0.48|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:34.2040000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:24:34.2040000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:24:34.2040000-07:00|40022550|Zeromus|005A5A00|25008117|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:34.2040000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +24|2023-10-06T20:24:34.2480000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|220A|89453|89453|10000|10000|||85.89|99.79|0.00|0.57|10FF0006|Wowobora Gogobora|1|56517|56517|8030|10000|||102.16|92.40|0.00|-1.12| +37|2023-10-06T20:24:34.2480000-07:00|40022550|Zeromus|0001AA53|24986124||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:34.2480000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:34.2480000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.2480000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.2480000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.2480000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:34.2480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|14||85.89|99.79|0.00|0.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:34.2930000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.2930000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.2930000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.2930000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.3370000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.3370000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.3370000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.3370000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +36|2023-10-06T20:24:34.3370000-07:00|3B60|3| +261|2023-10-06T20:24:33.9440000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:24:34.3820000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||85.89|99.79|0.00|0.57| +39|2023-10-06T20:24:34.3820000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7350|10000|||112.89|95.25|0.00|1.68| +35|2023-10-06T20:24:34.3820000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.3820000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.3820000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.3820000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.4270000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.4270000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.4270000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.4270000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:34.0570000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:24:34.4710000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||87.34|86.28|0.00|2.88| +35|2023-10-06T20:24:34.4710000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.4710000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.4710000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.4710000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +39|2023-10-06T20:24:34.5160000-07:00|10FF0006|Wowobora Gogobora|56517|56517|8235|10000|||102.13|92.47|0.00|-0.71| +35|2023-10-06T20:24:34.5160000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.5160000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.5160000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.5160000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +39|2023-10-06T20:24:34.5600000-07:00|4002284B|Demi-Phoenix|53095|53095|10000|10000|||106.13|92.45|0.00|-2.68| +35|2023-10-06T20:24:34.5600000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.5600000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.5600000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.5600000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:34.1740000-07:00|Change|10FF0005||||||||| +35|2023-10-06T20:24:34.6040000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.6040000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.6040000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.6040000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:34.1740000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:24:34.1740000-07:00|Change|10FF0003||||||||||| +35|2023-10-06T20:24:34.6480000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.6480000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.6480000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.6480000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.6940000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.6940000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.6940000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.6940000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:34.7370000-07:00|40022550|Zeromus|0001AA54|24983310||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:34.7370000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.7370000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.7370000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.7370000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.7820000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.7820000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.7820000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.7820000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.8270000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.8270000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.8270000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.8270000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:34.8710000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.8710000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.8710000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.8710000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:34.8710000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|724003|25660000|104|6FC8000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|24983310|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||95.90|99.72|-0.02|1.43|0001AA56|0|1| +21|2023-10-06T20:24:34.8710000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|156003|AA970000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|24983310|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8300|10000|||103.06|100.70|0.00|-0.43|0001AA57|0|1| +38|2023-10-06T20:24:34.8710000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.90|99.72|-0.02|1.43|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:34.8710000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:34.9150000-07:00|40022550|Zeromus|0001AA55|24945023||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:34.9150000-07:00|10FF0002|Suchichi Suchi|0001AA55|63089|63089|10000|10000|0||95.92|99.86|0.00|2.94|1600|0|0|01|06000322|0|41F00000|| +35|2023-10-06T20:24:34.9150000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.9150000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.9150000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.9150000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:34.9150000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.92|99.86|0.00|2.94|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:34.9600000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:34.9600000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:34.9600000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:34.9600000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:34.9600000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24983310|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7350|10000|||113.75|94.77|0.00|2.31|0001AA58|0|1| +21|2023-10-06T20:24:35.0050000-07:00|4002284B|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|11F50000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|24983310|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||106.13|92.45|0.00|-2.68|0001AA59|0|1| +35|2023-10-06T20:24:35.0050000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.0050000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.0050000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.0050000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +39|2023-10-06T20:24:35.0480000-07:00|10FF0007|Kehabiqo Febiqo|76322|89994|10000|10000|||91.17|97.09|-0.01|-3.04| +39|2023-10-06T20:24:35.0480000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8200|10000|||102.95|100.94|0.00|-3.00| +35|2023-10-06T20:24:35.0480000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.0480000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.0480000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.0480000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:35.0930000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15710000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|75423|89994|10000|10000|||91.17|97.09|-0.01|-3.04|54201|54201|10000|10000|||99.81|96.03|0.00|-2.85|0001AA5A|0|1| +35|2023-10-06T20:24:35.0930000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.0930000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.0930000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.0930000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +20|2023-10-06T20:24:35.0930000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|102.13|92.55|0.00|0.02| +20|2023-10-06T20:24:35.0930000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|113.40|104.05|0.00|-0.36| +35|2023-10-06T20:24:35.1370000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.1370000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.1370000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.1370000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:35.1830000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.1830000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.1830000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.1830000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:34.8270000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:24:35.1830000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|750003|736E0000|4|249F8000|0|0|0|0|0|0|0|0|0|0|0|0|24945023|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||85.89|99.79|0.00|2.52|0001AA5B|0|1| +38|2023-10-06T20:24:35.1830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9000|10000|14||85.89|99.79|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:35.1830000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:24:35.1830000-07:00|558|Requiescat|27.20|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +30|2023-10-06T20:24:35.1830000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +31|2023-10-06T20:24:35.1830000-07:00|10FF0001||||| +261|2023-10-06T20:24:34.8270000-07:00|Change|10FF0006||||||||||||||||||||| +35|2023-10-06T20:24:35.2260000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.2260000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.2260000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.2260000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:35.2710000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.2710000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.2710000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.2710000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:35.2710000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.95|100.16|0.00|2.94|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:35.2710000-07:00|54|Bloodbath|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +35|2023-10-06T20:24:35.3170000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.3170000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.3170000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.3170000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:35.3590000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.3590000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.3590000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.3590000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:34.9400000-07:00|Change|10FF0004||||||||||| +35|2023-10-06T20:24:35.4040000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.4040000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.4040000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.4040000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:35.4490000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.4490000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.4490000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.4490000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +20|2023-10-06T20:24:35.4490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|113.96|94.60|0.00|2.31| +21|2023-10-06T20:24:35.4490000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2D0A0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|24945023|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||85.79|85.36|0.00|1.42|0001AA5C|0|1| +38|2023-10-06T20:24:35.4490000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||85.79|85.36|0.00|1.42|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:35.4490000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +261|2023-10-06T20:24:35.0610000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:24:35.4930000-07:00|40022550|Zeromus|0001AA58|24944877||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:35.4930000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.4930000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.4930000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.4930000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:35.5380000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.5380000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.5380000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.5380000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:35.5810000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.5810000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.5810000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.5810000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +24|2023-10-06T20:24:35.6270000-07:00|10FF0002|Suchichi Suchi|HoT|0|112F|63089|63089|10000|10000|||95.96|100.27|0.00|2.94|4002254D|Comet|0|69200|69200|10000|10000|||92.45|92.03|0.00|-2.66| +35|2023-10-06T20:24:35.6270000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.6270000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.6270000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.6270000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:35.6270000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.96|100.27|0.00|2.94|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:35.2910000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T20:24:35.6710000-07:00|40022550|Zeromus|0001AA56|24935303||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:35.6710000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.6710000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.6710000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.6710000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:35.6710000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|411C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|76322|89994|10000|10000|||91.17|97.09|0.00|-3.04|24944877|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AA5D|0|1| +24|2023-10-06T20:24:35.7170000-07:00|10FF0003|Gegehi Gehi|HoT|0|1C6B|51159|51159|8750|10000|||113.18|104.69|0.00|-2.65|4002254C|Comet|0|69200|69200|10000|10000|||119.19|87.48|0.00|2.73| +35|2023-10-06T20:24:35.7170000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.7170000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.7170000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.7170000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:35.7170000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8235|10000|14||102.13|92.55|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:35.7170000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:35.7170000-07:00|9D6|Bind|3.00|E0000000||10FF0006|Wowobora Gogobora|00|56517|| +38|2023-10-06T20:24:35.7170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|76322|89994|10000|10000|0||91.17|97.09|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:35.7170000-07:00|9D6|Bind|3.00|E0000000||10FF0007|Kehabiqo Febiqo|00|89994|| +38|2023-10-06T20:24:35.7170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7350|10000|14||113.99|94.56|0.00|2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:35.7170000-07:00|9D6|Bind|3.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:24:35.7170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9000|10000|14||85.89|99.79|0.00|2.53|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:35.7170000-07:00|9D6|Bind|3.00|E0000000||10FF0001|Sesuga Sapisuga|00|89453|| +21|2023-10-06T20:24:35.7170000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|7C570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24944877|40478540|10000|10000|||100.00|80.10|0.00|0.00|76322|89994|10000|10000|||91.17|97.09|0.00|-3.04|0001AA5E|0|1| +38|2023-10-06T20:24:35.7170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|76322|89994|10000|10000|0||91.17|97.09|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:35.7170000-07:00|499|Inner Release|11.89|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|89994|89994| +38|2023-10-06T20:24:35.7170000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8750|10000|0||113.18|104.69|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:35.7610000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.7610000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.7610000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.7610000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:35.7610000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24935303|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||85.74|85.46|-0.02|1.62|0001AA5F|0|1| +37|2023-10-06T20:24:35.8060000-07:00|40022550|Zeromus|0001AA5B|24905753||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:35.8060000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.8060000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.8060000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.8060000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +24|2023-10-06T20:24:35.8510000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9E5|89453|89453|9000|10000|||85.84|99.71|0.00|-2.67|E0000000||0||||||||||| +24|2023-10-06T20:24:35.8510000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|10A3|56517|56517|7350|10000|||114.00|94.56|-0.01|-2.55|E0000000||0||||||||||| +35|2023-10-06T20:24:35.8510000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.8510000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.8510000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.8510000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:35.8510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9000|10000|14||85.84|99.71|0.00|-2.67|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:35.8510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7350|10000|14||114.00|94.56|-0.01|-2.55|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:35.8950000-07:00|10FF0007|Kehabiqo Febiqo|0001AA5A|81811||||||91.17|97.09|0.00|2.66| +35|2023-10-06T20:24:35.8950000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.8950000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.8950000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.8950000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:35.9400000-07:00|40022550|Zeromus|0001AA57|24862082||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:35.9400000-07:00|40022550|Zeromus|0001AA5C|24850552||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:35.9400000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|F78|63038|63038|10000|10000|||85.74|85.47|0.00|1.48|E0000000||0||||||||||| +35|2023-10-06T20:24:35.9400000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.9400000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.9400000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.9400000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:35.9400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||85.74|85.47|0.00|1.48|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:35.9840000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:35.9840000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:35.9840000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:35.9840000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:36.0290000-07:00|40022550|Zeromus|0001AA59|24845955||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:36.0290000-07:00|10FF0006|Wowobora Gogobora|HoT|0|10BD|56517|56517|8235|10000|||102.13|92.55|0.00|-2.97|E0000000||0||||||||||| +35|2023-10-06T20:24:36.0290000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.0290000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.0290000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.0290000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:36.0290000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36BD0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|24850552|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8235|10000|||102.13|92.55|0.00|-2.97|0001AA60|0|1| +38|2023-10-06T20:24:36.0290000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7835|10000|14||102.13|92.55|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:36.0720000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.0720000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.0720000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.0720000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:36.1170000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.1170000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.1170000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.1170000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:36.1620000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.1620000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.1620000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.1620000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:36.1620000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|C990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24850552|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||96.02|100.21|0.00|2.36|0001AA61|0|1| +261|2023-10-06T20:24:35.8750000-07:00|Change|10FF0006||||||||||||||||| +35|2023-10-06T20:24:36.2060000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.2060000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.2060000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.2060000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:36.2510000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.2510000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.2510000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.2510000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:36.2510000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24845955|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8200|10000|||102.95|100.94|0.00|-3.00|0001AA62|0|1| +37|2023-10-06T20:24:36.2950000-07:00|40022550|Zeromus|0001AA5F|24842531||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:36.2960000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.2960000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.2960000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.2960000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:36.3400000-07:00|40022550|Zeromus|0001AA5E|24810700||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:36.3400000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.3400000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.3400000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.3400000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:36.3400000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|740F|A788000|0|0|0|0|0|0|0|0|0|0|81811|89994|10000|10000|||91.17|97.09|0.00|2.66|81811|89994|10000|10000|||91.17|97.09|0.00|2.66|0001AA63|0|1| +261|2023-10-06T20:24:35.9920000-07:00|Change|10FF0004||||||||||||||||||||| +35|2023-10-06T20:24:36.3840000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.3840000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.3840000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.3840000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:36.3840000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2F8D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|24810700|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7350|10000|||114.00|94.56|0.00|-2.37|0001AA64|0|1| +35|2023-10-06T20:24:36.4290000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.4290000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.4290000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.4290000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:36.4730000-07:00|10FF0007|Kehabiqo Febiqo|0001AA5D|65143||||||91.17|97.09|0.00|2.66| +35|2023-10-06T20:24:36.4730000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.4730000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.4730000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.4730000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +24|2023-10-06T20:24:36.5180000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FFB|81811|89994|10000|10000|||91.17|97.09|0.00|2.66|E0000000||0||||||||||| +24|2023-10-06T20:24:36.5180000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1505|55377|55377|8200|10000|||102.95|100.94|0.00|-3.00|10FF0008|Kokosaze Lulusaze|0|55377|55377|8200|10000|||102.95|100.94|0.00|-3.00| +35|2023-10-06T20:24:36.5180000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.5180000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.5180000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.5180000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:36.5180000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|452003|4C440000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|24810700|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8750|10000|||113.18|104.69|0.00|-2.65|0001AA65|0|1| +38|2023-10-06T20:24:36.5180000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8550|10000|0||113.18|104.69|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:36.5180000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +30|2023-10-06T20:24:36.5180000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +38|2023-10-06T20:24:36.5190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69234|89994|10000|10000|0||91.17|97.09|0.00|2.66|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:36.5190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8200|10000|0||102.95|100.94|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:36.5620000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.5620000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.5620000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.5620000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:36.6070000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.6070000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.6070000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.6070000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T20:24:36.6510000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.6510000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.6510000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.6510000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:36.3120000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T20:24:36.6960000-07:00|40022550|Zeromus|0001AA61|24807475||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:36.6960000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|23E7|89453|89453|9000|10000|||85.84|99.71|0.00|-2.58|10FF0006|Wowobora Gogobora|1|56517|56517|7835|10000|||102.13|92.55|0.00|-2.97| +37|2023-10-06T20:24:36.6960000-07:00|40022550|Zeromus|0001AA60|24793462||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:36.6960000-07:00|4002254A|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T20:24:36.6960000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.6960000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.6960000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:36.6960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9000|10000|14||85.84|99.71|0.00|-2.58|0|0|0|||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:36.7400000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.7400000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.7400000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:36.7400000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|2ED10000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|24793462|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||95.94|100.00|0.00|-1.67|0001AA66|0|1| +261|2023-10-06T20:24:36.4020000-07:00|Change|4002254A||||||||| +38|2023-10-06T20:24:36.7400000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.94|100.00|0.00|-1.67|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:36.7400000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:24:36.7400000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:36.7840000-07:00|40022550|Zeromus|0001AA62|24793319||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:24:36.7840000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.7840000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.7840000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +22|2023-10-06T20:24:36.8300000-07:00|4002254A|Comet|8B58|Meteor Impact|10FF0006|Wowobora Gogobora|730003|8350000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|56517|56517|7835|10000|||102.13|92.55|0.00|-2.97|69200|69200|10000|10000|||94.00|118.00|0.00|0.00|0001AA67|0|1| +35|2023-10-06T20:24:36.8300000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.8300000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.8300000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:36.8300000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||86.63|86.52|0.00|0.95|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:36.8300000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +21|2023-10-06T20:24:36.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||86.63|86.52|0.00|0.95|63038|63038|10000|10000|||86.63|86.52|0.00|0.95|0001AA68|0|1| +38|2023-10-06T20:24:36.8300000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7835|10000|0||102.13|92.55|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:36.8300000-07:00|8C8|Blunt Resistance Down|9.96|4002254A|Comet|10FF0006|Wowobora Gogobora|00|56517|69200| +261|2023-10-06T20:24:36.5040000-07:00|Change|4002254A||| +35|2023-10-06T20:24:36.8740000-07:00|40022549|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T20:24:36.8740000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.8740000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:36.9180000-07:00|10FF0007|Kehabiqo Febiqo|0001AA63|69234|89994|10000|10000|10||91.17|97.09|0.00|2.66|1500|0|0|03|09000A76|0190|41000000|||||||||| +26|2023-10-06T20:24:36.9180000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|89994|89994| +26|2023-10-06T20:24:36.9180000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +26|2023-10-06T20:24:36.9180000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +35|2023-10-06T20:24:36.9190000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.9190000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:36.9190000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24793319|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7835|10000|||102.13|92.55|0.00|-2.97|0001AA69|0|1| +38|2023-10-06T20:24:36.9190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69234|89994|10000|10000|10||91.17|97.09|0.00|2.66|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T20:24:36.9630000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:36.9630000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +22|2023-10-06T20:24:37.0090000-07:00|40022549|Comet|8B58|Meteor Impact|10FF0007|Kehabiqo Febiqo|730303|8F884003|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|69234|89994|10000|10000|||91.17|97.09|0.00|2.66|69200|69200|10000|10000|||94.00|118.00|0.00|-3.01|0001AA6A|0|1| +35|2023-10-06T20:24:37.0090000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:37.0090000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +21|2023-10-06T20:24:37.0090000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|714003|349E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24793319|40478540|10000|10000|||100.00|80.10|0.00|0.00|69234|89994|10000|10000|||91.17|97.09|0.00|2.66|0001AA6B|0|1| +38|2023-10-06T20:24:37.0090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69234|89994|10000|10000|0||91.17|97.09|0.00|2.66|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:37.0090000-07:00|8C8|Blunt Resistance Down|9.96|40022549|Comet|10FF0007|Kehabiqo Febiqo|00|89994|69200| +35|2023-10-06T20:24:37.0520000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:37.0520000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:36.5990000-07:00|Change|40022549||||| +35|2023-10-06T20:24:37.0970000-07:00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T20:24:37.0970000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +39|2023-10-06T20:24:37.1420000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||95.92|99.98|0.00|3.10| +35|2023-10-06T20:24:37.1420000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T20:24:36.7130000-07:00|Change|40022548||||||||| +37|2023-10-06T20:24:37.1880000-07:00|40022550|Zeromus|0001AA64|24781146||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:37.1880000-07:00|10FF0003|Gegehi Gehi|51159|51159|8750|10000|||113.18|104.69|0.00|-2.65| +24|2023-10-06T20:24:37.1880000-07:00|40022550|Zeromus|DoT|0|2A9A|24793319|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T20:24:37.1880000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:37.1880000-07:00|40022550|Zeromus|005A5A00|24770240|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:37.1880000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +22|2023-10-06T20:24:37.2320000-07:00|40022548|Comet|8B58|Meteor Impact|10FF0004|Buhojaqe Zijaqe|730003|9300000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|56517|56517|6950|10000|||114.00|94.56|0.00|-2.37|69200|69200|10000|10000|||94.00|118.00|0.00|2.43|0001AA6C|0|1| +39|2023-10-06T20:24:37.2320000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +35|2023-10-06T20:24:37.2320000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +38|2023-10-06T20:24:37.2320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6950|10000|0||114.00|94.56|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:37.2320000-07:00|8C8|Blunt Resistance Down|9.96|40022548|Comet|10FF0004|Buhojaqe Zijaqe|00|56517|69200| +261|2023-10-06T20:24:36.8230000-07:00|Change|40022548||| +35|2023-10-06T20:24:37.2770000-07:00|40022547|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +37|2023-10-06T20:24:37.3210000-07:00|40022550|Zeromus|0001AA65|24750716||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:24:37.3210000-07:00|3C3C|3| +37|2023-10-06T20:24:37.3650000-07:00|40022550|Zeromus|0001AA66|24738731||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:37.3650000-07:00|10FF0002|Suchichi Suchi|0001AA66|63089|63089|10000|10000|0||95.88|99.94|0.00|-2.85|1600|0|0|01|0323|0|41F00000|| +39|2023-10-06T20:24:37.3650000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|9200|10000|||85.84|99.71|0.00|-2.58| +39|2023-10-06T20:24:37.3650000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7150|10000|||114.00|94.56|0.00|-2.37| +21|2023-10-06T20:24:37.3650000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|53850000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|24770240|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8200|10000|||102.95|100.94|0.00|-3.00|0001AA6D|0|1| +38|2023-10-06T20:24:37.3650000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.88|99.94|0.00|-2.85|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:36.9370000-07:00|Change|10FF0008||||| +261|2023-10-06T20:24:36.9370000-07:00|Change|10FF0001||||||||| +22|2023-10-06T20:24:37.4100000-07:00|40022547|Comet|8B58|Meteor Impact|10FF0001|Sesuga Sapisuga|EC730005|9CBB4003|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|89453|89453|9200|10000|||85.84|99.71|0.00|-2.58|69200|69200|10000|10000|||94.00|118.00|0.00|-2.72|0001AA6E|0|1| +38|2023-10-06T20:24:37.4100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9200|10000|0||85.84|99.71|0.00|-2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:37.4100000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:24:37.4100000-07:00|8C8|Blunt Resistance Down|9.96|40022547|Comet|10FF0001|Sesuga Sapisuga|00|89453|69200| +261|2023-10-06T20:24:37.0470000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T20:24:37.0470000-07:00|Change|4002254A||||||||| +261|2023-10-06T20:24:37.0470000-07:00|Change|40022547||||| +37|2023-10-06T20:24:37.4550000-07:00|10FF0006|Wowobora Gogobora|0001AA67|54416|56517|7835|10000|0||102.13|92.55|0.00|-2.97|2800|0|0|02|04000000|0|0|||||| +37|2023-10-06T20:24:37.4550000-07:00|40022550|Zeromus|0001AA69|24738694||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:37.4550000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||86.75|86.66|0.00|0.92| +21|2023-10-06T20:24:37.4550000-07:00|10FF0002|Suchichi Suchi|4060|Stardiver|40022550|Zeromus|124003|76B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24738731|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||95.86|99.92|0.00|-2.72|0001AA6F|0|1| +38|2023-10-06T20:24:37.4550000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54416|56517|7835|10000|0||102.13|92.55|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:37.4550000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|56517|89994| +39|2023-10-06T20:24:37.4990000-07:00|10FF0006|Wowobora Gogobora|54981|56517|8040|10000|||102.13|92.55|0.00|-2.97| +39|2023-10-06T20:24:37.5440000-07:00|4002284B|Demi-Phoenix|53095|53095|10000|10000|||106.13|92.45|0.00|-2.68| +261|2023-10-06T20:24:37.1640000-07:00|Change|4002284B||||||||| +261|2023-10-06T20:24:37.1640000-07:00|Change|10FF0006||| +20|2023-10-06T20:24:37.5440000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|102.13|92.55|0.00|-2.97| +38|2023-10-06T20:24:37.5890000-07:00|4002286A||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:24:37.5890000-07:00|4002286A||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T20:24:37.5890000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24738694|40478540|10000|10000|||100.00|80.10|0.00|0.00|69234|89994|10000|10000|||91.17|97.09|0.00|2.66|0001AA70|0|1| +261|2023-10-06T20:24:37.2850000-07:00|Change|40022549||||||||| +37|2023-10-06T20:24:37.6330000-07:00|40022550|Zeromus|0001AA6B|24725224||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:37.6330000-07:00|10FF0007|Kehabiqo Febiqo|0001AA6A|0|89994|0|10000|0||91.17|97.09|0.00|2.66|1500|0|0|04|01000000|0|0|||||||||||||| +38|2023-10-06T20:24:37.6330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|0|89994|0|10000|0||91.17|97.09|0.00|2.66|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:37.6330000-07:00|A75|Surging Tempest|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +30|2023-10-06T20:24:37.6330000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|89994|89994| +30|2023-10-06T20:24:37.6330000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +30|2023-10-06T20:24:37.6330000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +30|2023-10-06T20:24:37.6330000-07:00|9D6|Bind|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|89994|| +30|2023-10-06T20:24:37.6330000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|89994|54201| +30|2023-10-06T20:24:37.6330000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|89994|89994| +30|2023-10-06T20:24:37.6330000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|89994|| +30|2023-10-06T20:24:37.6330000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +30|2023-10-06T20:24:37.6330000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +30|2023-10-06T20:24:37.6330000-07:00|8C8|Blunt Resistance Down|0.00|40022549|Comet|10FF0007|Kehabiqo Febiqo|00|89994|69200| +261|2023-10-06T20:24:37.2850000-07:00|Change|10FF0007||||||||||||| +261|2023-10-06T20:24:37.2850000-07:00|Change|10FF0007||||||||||||| +21|2023-10-06T20:24:37.6780000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||86.75|86.66|-0.02|0.92|63038|63038|10000|10000|||86.75|86.66|-0.02|0.92|0001AA71|0|1| +38|2023-10-06T20:24:37.6780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||86.75|86.66|-0.02|0.92|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:37.6780000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +03|2023-10-06T20:24:37.2850000-07:00|4002286A|Carbuncle|00|5A|10FF0008|00||10261|13498|53095|53095|10000|10000|||102.72|99.21|0.00|0.14| +261|2023-10-06T20:24:37.3790000-07:00|Change|10FF0003||| +261|2023-10-06T20:24:37.3790000-07:00|Add|4002286A||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:37.3790000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:24:37.3790000-07:00|Change|4002254A||||||||| +261|2023-10-06T20:24:37.3790000-07:00|Change|4002286A||| +261|2023-10-06T20:24:37.3790000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:24:37.4790000-07:00|Change|40022548||||||||| +37|2023-10-06T20:24:37.8600000-07:00|10FF0004|Buhojaqe Zijaqe|0001AA6C|54165|56517|7150|10000|0||114.00|94.56|0.00|-2.37|1C00|0|0|02|04000000|0|0|||||| +20|2023-10-06T20:24:37.8600000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|114.00|94.56|0.00|-2.37| +21|2023-10-06T20:24:37.8600000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|37900000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|24725224|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8750|10000|||113.18|104.69|0.00|-2.65|0001AA72|0|1| +38|2023-10-06T20:24:37.8600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|54165|56517|7150|10000|0||114.00|94.56|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:37.8600000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|56517|89994| +38|2023-10-06T20:24:37.8600000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8450|10000|0||113.18|104.69|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:37.8600000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:24:37.4790000-07:00|Change|40022549||||||||| +261|2023-10-06T20:24:37.6740000-07:00|Change|40022547||||||||| +21|2023-10-06T20:24:37.8990000-07:00|4002256E|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.00|118.00|0.00|2.83|0001AA73|0|0| +37|2023-10-06T20:24:37.9890000-07:00|10FF0005|Wuwuchu Wuchu|0001AA68|63038|63038|10000|10000|1||87.00|86.86|0.00|0.92|2700|0|0|01|050004E2|0|C1200000|| +31|2023-10-06T20:24:38.0340000-07:00|10FF0001||||| +37|2023-10-06T20:24:38.0340000-07:00|10FF0001|Sesuga Sapisuga|0001AA6E|0|89453|0|10000|0||85.84|99.71|0.00|-2.58|1300|0|0|04|03000000|0|0|||||||||||||| +261|2023-10-06T20:24:37.6740000-07:00|Change|4002256D||||||||| +39|2023-10-06T20:24:38.0340000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8100|10000|||102.95|100.94|0.00|-3.00| +38|2023-10-06T20:24:38.0350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|0|89453|0|10000|0||85.84|99.71|0.00|-2.58|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:38.0350000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +30|2023-10-06T20:24:38.0350000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +30|2023-10-06T20:24:38.0350000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|89453|89994| +30|2023-10-06T20:24:38.0350000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|89453|54201| +30|2023-10-06T20:24:38.0350000-07:00|9D6|Bind|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|89453|| +30|2023-10-06T20:24:38.0350000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +30|2023-10-06T20:24:38.0350000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +30|2023-10-06T20:24:38.0350000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|89453|| +30|2023-10-06T20:24:38.0350000-07:00|8C8|Blunt Resistance Down|0.00|40022547|Comet|10FF0001|Sesuga Sapisuga|00|89453|69200| +261|2023-10-06T20:24:37.6740000-07:00|Change|10FF0001||||| +261|2023-10-06T20:24:37.6740000-07:00|Change|10FF0008||| +261|2023-10-06T20:24:37.6740000-07:00|Change|40022548||||||||| +21|2023-10-06T20:24:38.0780000-07:00|4002256D|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.00|118.00|0.00|-3.01|0001AA74|0|0| +37|2023-10-06T20:24:38.2110000-07:00|10FF0005|Wuwuchu Wuchu|0001AA71|63038|63038|10000|10000|1||87.26|87.06|0.00|0.92|2700|0|0|01|050004E2|0|41200000|| +38|2023-10-06T20:24:38.2110000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||87.26|87.06|0.00|0.92|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:37.8970000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:24:37.8970000-07:00|Change|40022547||||||||| +261|2023-10-06T20:24:38.1290000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T20:24:38.3000000-07:00|4002256C|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.00|118.00|0.00|2.43|0001AA75|0|0| +21|2023-10-06T20:24:38.3900000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|15700000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|54981|56517|8040|10000|||102.13|92.55|0.00|-2.97|54201|54201|10000|10000|||99.81|96.03|0.00|3.06|0001AA76|0|1| +21|2023-10-06T20:24:38.3900000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|3F9E0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|24725224|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||87.33|87.11|0.00|0.92|0001AA77|0|1| +38|2023-10-06T20:24:38.3900000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||87.33|87.11|0.00|0.92|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:38.3900000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:24:38.4350000-07:00|40022550|Zeromus|0001AA6D|24703843||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:38.1290000-07:00|Change|4002256B||||||||| +257|2023-10-06T20:24:38.4350000-07:00|80034E7C|00080004|01|00|0000| +257|2023-10-06T20:24:38.4350000-07:00|80034E7C|00080004|00|00|0000| +21|2023-10-06T20:24:38.4780000-07:00|4002256B|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|-2.44|0001AA78|0|0| +21|2023-10-06T20:24:38.4780000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|39210000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|24725224|40478540|10000|10000|||100.00|80.10|0.00|0.00|54981|56517|8040|10000|||102.13|92.55|0.00|-2.97|0001AA79|0|1| +261|2023-10-06T20:24:38.2430000-07:00|Change|10FF0006||| +261|2023-10-06T20:24:38.3330000-07:00|Change|4002286A||| +34|2023-10-06T20:24:38.6130000-07:00|4002286A|Carbuncle|4002286A|Carbuncle|01| +37|2023-10-06T20:24:38.6580000-07:00|40022550|Zeromus|0001AA72|24689619||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:38.6580000-07:00|10FF0002|Suchichi Suchi|HoT|0|1112|63089|63089|10000|10000|||95.81|99.87|-0.02|2.93|4002254D|Comet|0|69200|69200|10000|10000|||92.45|92.03|0.00|-2.66| +38|2023-10-06T20:24:38.6580000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.81|99.87|-0.02|2.93|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:38.7010000-07:00|10FF0003|Gegehi Gehi|HoT|0|114A|51159|51159|8450|10000|||111.59|104.43|0.00|-1.77|4002254C|Comet|0|69200|69200|10000|10000|||119.19|87.48|0.00|2.73| +21|2023-10-06T20:24:38.7010000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0002|Suchichi Suchi|750003|684C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||95.81|99.87|-0.02|2.93|24703843|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AA7A|0|1| +38|2023-10-06T20:24:38.7010000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8450|10000|0||111.59|104.43|0.00|-1.77|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:38.3330000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:24:38.7470000-07:00|40022550|Zeromus|0001AA6F|24659228||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:38.7470000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54981|56517|7640|10000|0||102.13|92.55|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:38.4280000-07:00|Change|40022550||| +26|2023-10-06T20:24:38.7470000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:38.7470000-07:00|9D6|Bind|0.00|E0000000||10FF0006|Wowobora Gogobora|00|56517|| +38|2023-10-06T20:24:38.7470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|54165|56517|7150|10000|0||114.00|94.56|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:38.7470000-07:00|9D6|Bind|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +21|2023-10-06T20:24:38.7890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|319D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|24689619|40478540|10000|10000|||100.00|80.10|0.00|0.00|54165|56517|7150|10000|||114.00|94.56|0.00|-2.37|0001AA7B|0|1| +24|2023-10-06T20:24:38.8800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1757|54165|56517|7150|10000|||114.00|94.56|0.00|-2.37|E0000000||0||||||||||| +38|2023-10-06T20:24:38.8800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6750|10000|0||114.00|94.56|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:38.9260000-07:00|40022550|Zeromus|0001AA77|24642942||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:38.9260000-07:00|10FF0005|Wuwuchu Wuchu|0001AA77|63038|63038|10000|10000|1||87.33|87.11|0.00|2.08|2700|0|0|01|07000A1F|0|41F00000|| +38|2023-10-06T20:24:38.9260000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||87.33|87.11|0.00|2.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:38.6150000-07:00|Change|10FF0006||||||||| +24|2023-10-06T20:24:38.9710000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|967|63038|63038|10000|10000|||87.33|87.11|0.00|2.08|E0000000||0||||||||||| +21|2023-10-06T20:24:38.9710000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|F110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24642942|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||95.81|99.87|-0.02|2.93|0001AA7C|0|1| +21|2023-10-06T20:24:38.9710000-07:00|10FF0008|Kokosaze Lulusaze|1D89|Swiftcast|10FF0008|Kokosaze Lulusaze|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|8100|10000|||102.95|100.94|0.00|-3.00|55377|55377|8100|10000|||102.95|100.94|0.00|-3.00|0001AA7D|0|1| +21|2023-10-06T20:24:38.9710000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24642942|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||87.33|87.11|0.00|2.08|0001AA7E|0|1| +38|2023-10-06T20:24:38.9710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8100|10000|0||102.95|100.94|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:38.9710000-07:00|A7|Swiftcast|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:24:38.9710000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||87.33|87.11|0.00|2.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:39.0140000-07:00|10FF0006|Wowobora Gogobora|HoT|0|11E8|54981|56517|7640|10000|||102.13|92.55|0.00|-1.44|E0000000||0||||||||||| +38|2023-10-06T20:24:39.0140000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7640|10000|0||102.13|92.55|0.00|-1.44|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:39.1040000-07:00|10FF0008|Kokosaze Lulusaze|0001AA7D|55377|55377|8100|10000|0||102.95|100.94|0.00|-3.00|1B00|0|0|01|020000A7|0|41200000|| +38|2023-10-06T20:24:39.1040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8100|10000|0||102.95|100.94|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:39.1480000-07:00|40022550|Zeromus|0001AA79|24628317||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:39.2810000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|3DC80000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|24628317|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||95.82|99.88|0.00|2.60|0001AA7F|0|1| +38|2023-10-06T20:24:39.2820000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||95.82|99.88|0.00|2.60|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:39.2820000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:24:39.2820000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +21|2023-10-06T20:24:39.3720000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24628317|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8100|10000|||102.95|100.94|0.00|-3.00|0001AA80|0|1| +261|2023-10-06T20:24:39.0520000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T20:24:39.4160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6750|10000|0||113.99|94.56|0.00|-2.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:39.4160000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|56517|56517| +21|2023-10-06T20:24:39.4160000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6750|10000|||113.99|94.56|0.00|-2.06|56517|56517|6750|10000|||113.99|94.56|0.00|-2.06|0001AA81|0|1| +261|2023-10-06T20:24:39.1620000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:24:39.5040000-07:00|40022550|Zeromus|0001AA7C|24624460||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:39.5040000-07:00|10FF0002|Suchichi Suchi|0001AA7C|63089|63089|10000|10000|0||95.85|99.91|0.00|2.94|1600|0|0|01|02000747|0|C1F00000|| +37|2023-10-06T20:24:39.5040000-07:00|10FF0002|Suchichi Suchi|0001AA7A|36389|63089|10000|10000|0||95.85|99.91|0.00|2.94|1600|0|0|01|02000747|0|C1F00000|| +37|2023-10-06T20:24:39.5040000-07:00|40022550|Zeromus|0001AA7E|24621099||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|40022539|Comet|8D34|Explosion|40022539|Comet|4.700|108.80|93.40|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|4002253A|Comet|8D34|Explosion|4002253A|Comet|4.700|96.80|91.40|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|4002253B|Comet|8D34|Explosion|4002253B|Comet|4.700|118.00|83.00|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|4002253C|Comet|8D34|Explosion|4002253C|Comet|4.700|113.80|89.20|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|4002253D|Comet|8D34|Explosion|4002253D|Comet|4.700|110.60|84.00|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|4002253E|Comet|8D34|Explosion|4002253E|Comet|4.700|105.00|82.40|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|4002253F|Comet|8D34|Explosion|4002253F|Comet|4.700|100.00|85.60|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|40022540|Comet|8D34|Explosion|40022540|Comet|4.700|95.00|82.40|0.00|0.00| +20|2023-10-06T20:24:39.5490000-07:00|40022541|Comet|8D34|Explosion|40022541|Comet|4.700|89.40|84.00|0.00|0.00| +20|2023-10-06T20:24:39.5510000-07:00|40022542|Comet|8D34|Explosion|40022542|Comet|4.700|86.20|89.20|0.00|0.00| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022539||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002253A||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002253D||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002253B||||||||||||| +20|2023-10-06T20:24:39.5510000-07:00|40022543|Comet|8D34|Explosion|40022543|Comet|4.700|82.00|83.00|0.00|0.00| +20|2023-10-06T20:24:39.5510000-07:00|40022544|Comet|8D34|Explosion|40022544|Comet|4.700|118.00|102.00|0.00|0.00| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002253C||||||||||||| +20|2023-10-06T20:24:39.5510000-07:00|40022545|Comet|8D34|Explosion|40022545|Comet|4.700|82.00|102.00|0.00|0.00| +20|2023-10-06T20:24:39.5510000-07:00|40022546|Comet|8D34|Explosion|40022546|Comet|4.700|100.00|117.60|0.00|0.00| +20|2023-10-06T20:24:39.5510000-07:00|40022547|Comet|8D34|Explosion|40022547|Comet|4.700|85.83|99.69|0.00|-2.72| +20|2023-10-06T20:24:39.5510000-07:00|40022548|Comet|8D34|Explosion|40022548|Comet|4.700|114.00|94.56|0.00|2.43| +20|2023-10-06T20:24:39.5510000-07:00|40022549|Comet|8D34|Explosion|40022549|Comet|4.700|91.17|97.09|0.00|-3.01| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002253F||||||||||||| +20|2023-10-06T20:24:39.5510000-07:00|4002254A|Comet|8D34|Explosion|4002254A|Comet|4.700|102.13|92.55|0.00|2.83| +20|2023-10-06T20:24:39.5510000-07:00|4002254B|Comet|8D34|Explosion|4002254B|Comet|4.700|86.08|94.41|0.00|-2.44| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022541||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022540||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022543||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022544||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022545||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022546||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002253E||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022549||||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002254A||||||||||||| +20|2023-10-06T20:24:39.5510000-07:00|4002254C|Comet|8D34|Explosion|4002254C|Comet|4.700|119.19|87.48|0.00|2.73| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002254B||||||||||||| +20|2023-10-06T20:24:39.5510000-07:00|4002254D|Comet|8D34|Explosion|4002254D|Comet|4.700|92.45|92.03|0.00|-2.66| +20|2023-10-06T20:24:39.5510000-07:00|4002254E|Comet|8D34|Explosion|4002254E|Comet|4.700|103.68|87.91|0.00|-3.07| +24|2023-10-06T20:24:39.5510000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1111|55377|55377|8100|10000|||102.95|100.94|0.00|-3.00|10FF0008|Kokosaze Lulusaze|0|55377|55377|8100|10000|||102.95|100.94|0.00|-3.00| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022542||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002254E||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002254C||||||||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|4002254D||||||||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022547||||||||||||||| +261|2023-10-06T20:24:39.2750000-07:00|Change|40022548||||||||||||||| +38|2023-10-06T20:24:39.5510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8100|10000|0||102.95|100.94|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:39.5940000-07:00|40022550|Zeromus|0001AA7B|24608398||||||100.00|80.10|0.00|0.00| +25|2023-10-06T20:24:39.6400000-07:00|10FF0007|Kehabiqo Febiqo|40022549|Comet| +38|2023-10-06T20:24:39.7720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8100|10000|0||102.93|100.98|0.00|-2.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:39.7720000-07:00|8C8|Blunt Resistance Down|0.00|4002254E|Comet|10FF0008|Kokosaze Lulusaze|00|55377|69200| +261|2023-10-06T20:24:39.4630000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T20:24:39.9070000-07:00|40022550|Zeromus|0001AA80|24608223||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:39.9070000-07:00|10FF0008|Kokosaze Lulusaze|AD|Resurrection|10FF0001|Sesuga Sapisuga|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|89453|0|10000|||85.84|99.71|0.00|-2.58|55377|55377|8100|10000|||102.91|101.01|0.00|-1.39|0001AA82|0|1| +21|2023-10-06T20:24:39.9070000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|49A90000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|24608398|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||87.33|87.11|0.00|2.08|0001AA83|0|1| +38|2023-10-06T20:24:39.9070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5700|10000|0||102.91|101.01|0.00|-1.39|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:39.9070000-07:00|A7|Swiftcast|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:24:39.9070000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||87.33|87.11|0.00|2.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:39.9070000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:24:39.9070000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:24:39.5570000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:24:39.9500000-07:00|40022550|Zeromus|0001AA7F|24592407||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:39.9500000-07:00|10FF0002|Suchichi Suchi|0001AA7F|36389|63089|10000|10000|0||95.96|100.14|0.00|2.94|1600|0|0|01|02000747|0|41F00000|| +37|2023-10-06T20:24:39.9500000-07:00|10FF0004|Buhojaqe Zijaqe|0001AA81|56517|56517|8750|10000|0||112.80|95.46|0.00|-1.67|1C00|0|0|0| +38|2023-10-06T20:24:39.9510000-07:00|10FF0002|Suchichi Suchi|005A5A16|36389|63089|10000|10000|0||96.40|100.47|0.00|3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:39.9510000-07:00|8C8|Blunt Resistance Down|0.00|4002254D|Comet|10FF0002|Suchichi Suchi|00|63089|69200| +25|2023-10-06T20:24:40.0400000-07:00|10FF0001|Sesuga Sapisuga|40022547|Comet| +21|2023-10-06T20:24:40.0400000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24592407|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8750|10000|||112.18|95.93|0.00|-1.35|0001AA84|0|1| +39|2023-10-06T20:24:40.1310000-07:00|10FF0002|Suchichi Suchi|37019|63089|10000|10000|||96.96|100.91|0.00|3.11| +21|2023-10-06T20:24:40.1310000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|7640|10000|||100.84|96.89|0.00|-0.29|56517|56517|7640|10000|||100.84|96.89|0.00|-0.29|0001AA85|0|1| +38|2023-10-06T20:24:40.1310000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7640|10000|0||100.84|96.89|0.00|-0.29|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:40.1310000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +39|2023-10-06T20:24:40.1730000-07:00|10FF0003|Gegehi Gehi|51159|51159|8650|10000|||104.98|105.54|0.00|-2.20| +24|2023-10-06T20:24:40.1730000-07:00|40022550|Zeromus|DoT|0|2022|24592407|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:24:40.1730000-07:00|40022550|Zeromus|005A5A00|24584181|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:40.1730000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:40.1730000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|0||104.98|105.54|0.00|-2.20|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:40.1730000-07:00|8C8|Blunt Resistance Down|0.00|4002254C|Comet|10FF0003|Gegehi Gehi|00|51159|69200| +261|2023-10-06T20:24:39.7790000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:24:40.2180000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +37|2023-10-06T20:24:40.2630000-07:00|10FF0006|Wowobora Gogobora|0001AA85|56517|56517|7640|10000|0||100.72|97.49|0.00|-0.25|2800|0|0|01|030000A7|0|41200000|| +38|2023-10-06T20:24:40.2630000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7640|10000|0||100.72|97.49|0.00|-0.25|0|0|0||||||||||||||||||||||||||||||||||||| +36|2023-10-06T20:24:40.3090000-07:00|3D18|3| +39|2023-10-06T20:24:40.3530000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|8950|10000|||110.89|97.34|0.00|-0.72| +21|2023-10-06T20:24:40.3530000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|752003|3CC60000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|24584181|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8750|10000|||110.89|97.34|0.00|-0.72|0001AA86|0|1| +38|2023-10-06T20:24:40.3530000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||87.33|87.11|0.00|2.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:40.3530000-07:00|8C8|Blunt Resistance Down|0.00|4002254B|Comet|10FF0005|Wuwuchu Wuchu|00|63038|69200| +39|2023-10-06T20:24:40.4430000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||87.78|87.71|0.00|1.73| +261|2023-10-06T20:24:40.1230000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:24:40.4880000-07:00|10FF0006|Wowobora Gogobora|56517|56517|7845|10000|||100.46|98.86|-0.02|-0.25| +37|2023-10-06T20:24:40.5310000-07:00|40022550|Zeromus|0001AA83|24565324||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:40.5310000-07:00|10FF0005|Wuwuchu Wuchu|0001AA83|63038|63038|10000|10000|1||87.78|87.71|0.00|1.73|2700|0|0|01|07000A1E|0|41F00000|| +38|2023-10-06T20:24:40.5310000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||87.78|87.71|0.00|1.73|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:40.5750000-07:00|40022550|Zeromus|0001AA84|24565166||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:40.3220000-07:00|Change|10FF0008||||||||||||| +21|2023-10-06T20:24:40.7080000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|736003|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24565166|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7845|10000|||100.09|100.35|0.00|-0.24|0001AA87|0|1| +21|2023-10-06T20:24:40.7970000-07:00|10FF0005|Wuwuchu Wuchu|5F51|Hell's Ingress|10FF0005|Wuwuchu Wuchu|F|A238000|F|B1D8000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||89.14|89.45|0.00|1.03|63038|63038|10000|10000|||89.14|89.45|0.00|1.03|0001AA88|0|1| +261|2023-10-06T20:24:40.4220000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:24:40.5180000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:24:40.5180000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:24:40.5180000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:24:40.9310000-07:00|10FF0005|Wuwuchu Wuchu|0001AA88|63038|63038|10000|10000|1||90.06|90.54|0.00|0.56|2700|0|0|02|09000A23|0|41200000|||||| +26|2023-10-06T20:24:40.9310000-07:00|A23|Threshold|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:24:40.9310000-07:00|B1D|Enhanced Harpe|20.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +38|2023-10-06T20:24:40.9310000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7845|10000|0||99.78|102.58|0.00|-0.15|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:40.9310000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:40.9310000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|56517|54201| +21|2023-10-06T20:24:40.9750000-07:00|10FF0006|Wowobora Gogobora|5EDF|Egeiro|10FF0007|Kehabiqo Febiqo|814000E|940000|1B|5EDF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|89994|0|10000|||91.17|97.09|0.00|2.66|56517|56517|7845|10000|||99.78|102.58|0.00|-0.15|0001AA89|0|1| +38|2023-10-06T20:24:40.9750000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5445|10000|0||99.78|102.58|0.00|-0.15|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:40.9750000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:24:41.0190000-07:00|10FF0001|Sesuga Sapisuga|0001AA82|0|89453|0|10000|0||85.84|99.71|0.00|-2.58|1300|0|0|01|03000094|08|42700000|| +26|2023-10-06T20:24:41.0190000-07:00|94|Raise|60.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|08|89453|55377| +39|2023-10-06T20:24:41.0190000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|5900|10000|||99.15|104.01|0.00|-0.80| +38|2023-10-06T20:24:41.0640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8550|10000|0||108.84|99.64|-0.02|-0.93|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:41.0640000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|56517|54201| +21|2023-10-06T20:24:41.1090000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|724003|42DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24565166|40478540|10000|10000|||100.00|80.10|0.00|0.00|37019|63089|10000|10000|||100.22|102.62|0.00|1.73|0001AA8A|0|1| +38|2023-10-06T20:24:41.1970000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|1||91.33|92.55|0.00|0.56|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:41.1970000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|63038|54201| +37|2023-10-06T20:24:41.2410000-07:00|40022550|Zeromus|0001AA87|24565092||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:40.8530000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:24:41.2860000-07:00|40022550|Zeromus|0001AA86|24549534||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:40.8530000-07:00|Add|4002286D||||||||||||||||||||||||||||||||| +04|2023-10-06T20:24:40.9690000-07:00|4002284B|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|0|53095|0|10000|||106.13|92.45|0.00|-2.68| +261|2023-10-06T20:24:40.9690000-07:00|Remove|4002284B| +38|2023-10-06T20:24:41.3310000-07:00|10FF0002|Suchichi Suchi|005A5A16|37019|63089|10000|10000|0||100.41|102.86|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:41.3310000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|63089|54201| +261|2023-10-06T20:24:41.2040000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:24:41.5530000-07:00|10FF0007|Kehabiqo Febiqo|0001AA89|0|89994|0|10000|0||91.17|97.09|0.00|2.66|1500|0|0|01|01000094|08|42700000|| +26|2023-10-06T20:24:41.5530000-07:00|94|Raise|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|08|89994|56517| +261|2023-10-06T20:24:41.2040000-07:00|Change|10FF0004||||||||| +38|2023-10-06T20:24:41.5980000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|0||104.91|105.36|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:41.5980000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51159|54201| +24|2023-10-06T20:24:41.6430000-07:00|10FF0002|Suchichi Suchi|HoT|0|78B|37019|63089|10000|10000|||100.85|103.31|0.00|-2.51|10FF0002|Suchichi Suchi|0|37019|63089|10000|10000|||100.85|103.31|0.00|-2.51| +38|2023-10-06T20:24:41.6430000-07:00|10FF0002|Suchichi Suchi|005A5A16|38950|63089|10000|10000|0||100.85|103.31|0.00|-2.51|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:41.3050000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:24:41.6880000-07:00|10FF0003|Gegehi Gehi|HoT|0|74E|51159|51159|8650|10000|||104.91|105.36|0.00|-2.31|E0000000||0||||||||||| +38|2023-10-06T20:24:41.6880000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|0||104.91|105.36|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:41.4030000-07:00|Change|10FF0008||||||||||||| +21|2023-10-06T20:24:41.7330000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0002|Suchichi Suchi|750003|64740000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|38950|63089|10000|10000|||100.92|103.32|0.00|-2.37|24549534|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AA8B|0|1| +21|2023-10-06T20:24:41.7780000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|33750000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|24549534|40478540|10000|10000|||100.00|80.10|0.00|0.00|38950|63089|10000|10000|||100.98|103.31|0.00|-2.40|0001AA8C|0|1| +21|2023-10-06T20:24:41.7780000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|148A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24549534|40478540|10000|10000|||100.00|80.10|0.00|0.00|38950|63089|10000|10000|||100.98|103.31|0.00|-2.40|0001AA8D|0|1| +38|2023-10-06T20:24:41.7780000-07:00|10FF0002|Suchichi Suchi|005A5A16|38950|63089|10000|10000|0||100.98|103.31|0.00|-2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:41.7780000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:41.8680000-07:00|40022550|Zeromus|0001AA8A|24532416||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:41.8680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|721|56517|56517|8550|10000|||105.64|103.21|0.00|-0.82|E0000000||0||||||||||| +38|2023-10-06T20:24:41.8680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5900|10000|0||99.96|105.62|0.00|1.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:41.8680000-07:00|13B|Whispering Dawn|0.00|40022666|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|55377|54201| +38|2023-10-06T20:24:41.8680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8550|10000|0||105.64|103.21|0.00|-0.82|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:41.5880000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:24:41.6830000-07:00|Change|4002286A||||||||| +24|2023-10-06T20:24:42.0020000-07:00|10FF0006|Wowobora Gogobora|HoT|0|77F|56517|56517|5445|10000|||99.92|105.83|0.00|-2.02|E0000000||0||||||||||| +38|2023-10-06T20:24:42.0020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5445|10000|0||99.92|105.83|0.00|-2.02|0|0|0||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:24:42.0910000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|104.91|105.36|0.00|-2.31| +261|2023-10-06T20:24:41.7990000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T20:24:42.2250000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|14750000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|38950|63089|10000|10000|||101.09|103.26|-0.01|-3.09|54201|54201|10000|10000|||99.81|96.03|0.00|1.83|0001AA8E|0|1| +37|2023-10-06T20:24:42.3140000-07:00|40022550|Zeromus|0001AA8D|24527158||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:42.3590000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|24527158|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|5900|10000|||100.75|105.59|0.00|1.80|0001AA8F|0|1| +38|2023-10-06T20:24:42.4040000-07:00|4002286F||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:24:42.4040000-07:00|4002286F||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T20:24:42.4040000-07:00|40022550|Zeromus|0001AA8C|24513985||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:42.4040000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|3D5E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24527158|40478540|10000|10000|||100.00|80.10|0.00|0.00|38950|63089|10000|10000|||101.09|103.26|0.00|-3.09|0001AA90|0|1| +261|2023-10-06T20:24:42.1380000-07:00|Add|4002286F||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:24:42.1380000-07:00|4002286F|Topaz Titan|00|5A|10FF0008|00||10264|13507|53095|53095|10000|10000|||102.93|107.12|0.00|-3.10| +37|2023-10-06T20:24:42.5390000-07:00|10FF0002|Suchichi Suchi|0001AA8B|13234||||||101.09|103.26|0.00|-3.09| +24|2023-10-06T20:24:42.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|AE6|55377|55377|5900|10000|||100.93|105.50|0.00|-3.10|10FF0008|Kokosaze Lulusaze|0|55377|55377|5900|10000|||100.93|105.50|0.00|-3.10| +38|2023-10-06T20:24:42.5400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5900|10000|0||100.93|105.50|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:42.2340000-07:00|Change|4002286F||||| +21|2023-10-06T20:24:42.8510000-07:00|10FF0006|Wowobora Gogobora|5EE8|Druochole|10FF0002|Suchichi Suchi|4|4A590000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|13234|63089|10000|10000|||101.09|103.26|0.00|-3.09|56517|56517|5445|10000|||99.81|105.03|0.00|-2.97|0001AA91|0|1| +261|2023-10-06T20:24:42.5150000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:24:43.0280000-07:00|10FF0002|Suchichi Suchi|0001AA8E|18471||||||101.09|103.26|0.00|-3.09| +261|2023-10-06T20:24:42.7250000-07:00|Change|4002286A||||||||| +261|2023-10-06T20:24:42.7250000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T20:24:43.1620000-07:00|10FF0002|Suchichi Suchi|19101|63089|10000|10000|||101.09|103.26|0.00|-3.09| +39|2023-10-06T20:24:43.2070000-07:00|10FF0003|Gegehi Gehi|51159|51159|8850|10000|||104.91|105.36|0.00|-2.95| +24|2023-10-06T20:24:43.2070000-07:00|40022550|Zeromus|DoT|0|2F62|24513985|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:24:43.2070000-07:00|40022550|Zeromus|005A5A00|24501855|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:43.2070000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +39|2023-10-06T20:24:43.2520000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|0.17| +20|2023-10-06T20:24:43.2970000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|103.65|104.80|0.00|-1.08| +36|2023-10-06T20:24:43.3410000-07:00|3DF4|3| +261|2023-10-06T20:24:42.9510000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:24:43.3850000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|8750|10000|||103.53|104.82|0.00|-1.17| +261|2023-10-06T20:24:43.0680000-07:00|Change|4002286F||| +39|2023-10-06T20:24:43.4740000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||101.13|104.17|-0.02|2.72| +39|2023-10-06T20:24:43.5190000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5650|10000|||99.81|105.03|0.00|2.53| +38|2023-10-06T20:24:43.5190000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5650|10000|0||99.81|105.03|0.00|2.53|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:43.5190000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:43.5190000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:24:43.5190000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|5445|10000|||99.81|105.03|0.00|2.53|56517|56517|5445|10000|||99.81|105.03|0.00|2.53|0001AA92|0|1| +21|2023-10-06T20:24:43.5190000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|2F490000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|24501855|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8850|10000|||104.91|105.36|0.00|-2.95|0001AA93|0|1| +38|2023-10-06T20:24:43.5190000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|0||104.91|105.36|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:43.5190000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:24:43.1690000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:24:43.6070000-07:00|40022550|Zeromus|0001AA90|24486145||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:43.6070000-07:00|10FF0002|Suchichi Suchi|0001AA91|38134||||||101.09|103.26|0.00|-3.09| +37|2023-10-06T20:24:43.6070000-07:00|10FF0006|Wowobora Gogobora|0001AA91|56517|56517|6350|10000|0||99.81|105.03|0.00|2.53|2800|0|0|0| +42|2023-10-06T20:24:43.6540000-07:00|10FF0001|Sesuga Sapisuga|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:43.6540000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +261|2023-10-06T20:24:43.5420000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:24:43.6390000-07:00|Change|10FF0006||| +39|2023-10-06T20:24:44.0640000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|6100|10000|||100.54|105.15|0.00|-1.50| +261|2023-10-06T20:24:43.6390000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:24:43.7510000-07:00|Change|10FF0004||||||||||||||||||||||||||| +37|2023-10-06T20:24:44.2770000-07:00|40022550|Zeromus|0001AA93|24474040||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:44.2770000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|23EE0000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|24486145|40478540|10000|10000|||100.00|80.10|0.00|0.00|38134|63089|10000|10000|||101.09|103.26|0.00|-3.09|0001AA94|0|1| +38|2023-10-06T20:24:44.2770000-07:00|10FF0002|Suchichi Suchi|005A5A16|38134|63089|10000|10000|0||101.09|103.26|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:44.2770000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +21|2023-10-06T20:24:44.3210000-07:00|10FF0008|Kokosaze Lulusaze|1D8A|Lucid Dreaming|10FF0008|Kokosaze Lulusaze|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|6100|10000|||100.54|105.15|0.00|-1.50|55377|55377|6100|10000|||100.54|105.15|0.00|-1.50|0001AA95|0|1| +21|2023-10-06T20:24:44.4550000-07:00|4002286F|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|454003|765D0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|24474040|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||102.93|107.12|0.00|-3.10|0001AA96|0|1| +261|2023-10-06T20:24:44.0950000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:24:44.0950000-07:00|Change|4002286A||| +21|2023-10-06T20:24:44.5450000-07:00|40022539|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||108.80|93.40|0.00|0.00|0001AA97|0|0| +21|2023-10-06T20:24:44.5450000-07:00|4002253A|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||96.80|91.40|0.00|0.00|0001AA98|0|0| +21|2023-10-06T20:24:44.5450000-07:00|4002253B|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001AA99|0|0| +21|2023-10-06T20:24:44.5450000-07:00|4002253C|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001AA9A|0|0| +21|2023-10-06T20:24:44.5450000-07:00|4002253D|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001AA9B|0|0| +21|2023-10-06T20:24:44.5450000-07:00|4002253E|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001AA9C|0|0| +21|2023-10-06T20:24:44.5450000-07:00|4002253F|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001AA9D|0|0| +21|2023-10-06T20:24:44.5450000-07:00|40022540|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001AA9E|0|0| +21|2023-10-06T20:24:44.5450000-07:00|40022541|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001AA9F|0|0| +21|2023-10-06T20:24:44.5450000-07:00|40022542|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001AAA0|0|0| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002253E||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002253C||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002253D||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002253A||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022539||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002253F||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022541||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022542||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002253B||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022540||||||||||||| +21|2023-10-06T20:24:44.5460000-07:00|40022543|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001AAA1|0|0| +21|2023-10-06T20:24:44.5460000-07:00|40022544|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001AAA2|0|0| +21|2023-10-06T20:24:44.5460000-07:00|40022545|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||82.00|102.00|0.00|0.00|0001AAA3|0|0| +21|2023-10-06T20:24:44.5460000-07:00|40022546|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||100.00|117.60|0.00|0.00|0001AAA4|0|0| +21|2023-10-06T20:24:44.5460000-07:00|40022547|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||85.83|99.69|0.00|-2.72|0001AAA5|0|0| +21|2023-10-06T20:24:44.5460000-07:00|40022548|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||114.00|94.56|0.00|2.43|0001AAA6|0|0| +21|2023-10-06T20:24:44.5460000-07:00|40022549|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||91.17|97.09|0.00|-3.01|0001AAA7|0|0| +21|2023-10-06T20:24:44.5460000-07:00|4002254A|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||102.13|92.55|0.00|2.83|0001AAA8|0|0| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022544||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022545||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022543||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022546||||||||||||| +21|2023-10-06T20:24:44.5460000-07:00|4002254B|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||86.08|94.41|0.00|-2.44|0001AAA9|0|0| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022547||||||||||||| +21|2023-10-06T20:24:44.5460000-07:00|4002254C|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||119.19|87.48|0.00|2.73|0001AAAA|0|0| +21|2023-10-06T20:24:44.5460000-07:00|4002254D|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||92.45|92.03|0.00|-2.66|0001AAAB|0|0| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022548||||||||||||| +21|2023-10-06T20:24:44.5460000-07:00|4002254E|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||103.68|87.91|0.00|-3.07|0001AAAC|0|0| +21|2023-10-06T20:24:44.5460000-07:00|10FF0006|Wowobora Gogobora|5EE3|Eukrasian Diagnosis|10FF0002|Suchichi Suchi|4|260C0000|7C0E|A2F0000|1B|5EE38000|0|0|0|0|0|0|0|0|0|0|38134|63089|10000|10000|||101.09|103.26|0.00|-3.09|56517|56517|6350|10000|||99.81|105.03|0.00|2.53|0001AAAD|0|1| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002254B||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002254C||||||||||||| +38|2023-10-06T20:24:44.5460000-07:00|10FF0002|Suchichi Suchi|005A5A16|38134|63089|10000|10000|27||101.09|103.26|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:44.5460000-07:00|A2F|Eukrasian Diagnosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:44.5460000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5450|10000|0||99.81|105.03|0.00|2.53|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:44.5460000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002254D||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|40022549||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002254A||||||||||||| +261|2023-10-06T20:24:44.1960000-07:00|Change|4002254E||||||||||||| +21|2023-10-06T20:24:44.5880000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24474040|40478540|10000|10000|||100.00|80.10|0.00|0.00|38134|63089|10000|10000|||101.09|103.26|0.00|-3.09|0001AAAE|0|1| +21|2023-10-06T20:24:44.5880000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|32F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24474040|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8650|10000|||104.91|105.36|0.00|-2.95|0001AAAF|0|1| +24|2023-10-06T20:24:44.6320000-07:00|10FF0002|Suchichi Suchi|HoT|0|79A|38134|63089|10000|10000|||101.09|103.26|0.00|-3.09|10FF0002|Suchichi Suchi|0|38134|63089|10000|10000|||101.09|103.26|0.00|-3.09| +38|2023-10-06T20:24:44.6320000-07:00|10FF0002|Suchichi Suchi|005A5A16|40080|63089|10000|10000|27||101.09|103.26|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:44.6770000-07:00|10FF0003|Gegehi Gehi|HoT|0|AE3|51159|51159|8650|10000|||104.91|105.36|0.00|-2.95|E0000000||0||||||||||| +38|2023-10-06T20:24:44.6770000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|0||104.91|105.36|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||| +22|2023-10-06T20:24:44.7230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|18F40000|EC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|56517|56517|8750|10000|||103.20|104.88|0.00|-1.43|56517|56517|8750|10000|||103.20|104.88|0.00|-1.43|0001AAB0|0|6| +22|2023-10-06T20:24:44.7230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|195C0000|930E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|51159|51159|8650|10000|||104.91|105.36|0.00|-2.95|56517|56517|8750|10000|||103.20|104.88|0.00|-1.43|0001AAB0|1|6| +22|2023-10-06T20:24:44.7230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|19E20000|690E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||100.72|104.34|0.00|-2.96|56517|56517|8750|10000|||103.20|104.88|0.00|-1.43|0001AAB0|2|6| +22|2023-10-06T20:24:44.7230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|19860000|D6000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|38134|63089|10000|10000|||101.09|103.26|0.00|-3.09|56517|56517|8750|10000|||103.20|104.88|0.00|-1.43|0001AAB0|3|6| +22|2023-10-06T20:24:44.7230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|18990000|5B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55377|55377|6100|10000|||100.54|105.15|0.00|-1.50|56517|56517|8750|10000|||103.20|104.88|0.00|-1.43|0001AAB0|4|6| +22|2023-10-06T20:24:44.7230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|29BF0000|CB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|56517|56517|5450|10000|||99.81|105.03|0.00|2.53|56517|56517|8750|10000|||103.20|104.88|0.00|-1.43|0001AAB0|5|6| +38|2023-10-06T20:24:44.7230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6100|10000|18||100.54|105.15|0.00|-1.50|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:44.7230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:44.7230000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5450|10000|30||99.81|105.03|0.00|2.53|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:44.7230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:44.7230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7750|10000|18||103.20|104.88|0.00|-1.43|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:44.7230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:44.7230000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|20||104.91|105.36|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:44.7230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:44.7230000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|17||100.72|104.34|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:44.7230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +21|2023-10-06T20:24:44.7660000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0002|Suchichi Suchi|750003|22B90000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|40080|63089|10000|10000|||101.09|103.26|0.00|-3.09|24474040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AAB1|0|1| +24|2023-10-06T20:24:44.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A3B|56517|56517|7750|10000|||103.20|104.88|0.00|-1.43|E0000000||0||||||||||| +38|2023-10-06T20:24:44.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7750|10000|18||103.20|104.88|0.00|-1.43|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:44.9000000-07:00|10FF0002|Suchichi Suchi|1D75|Second Wind|10FF0002|Suchichi Suchi|4|2DC70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40080|63089|10000|10000|||101.09|103.26|0.00|-3.09|40080|63089|10000|10000|||101.09|103.26|0.00|-3.09|0001AAB2|0|1| +37|2023-10-06T20:24:44.9460000-07:00|10FF0008|Kokosaze Lulusaze|0001AA95|55377|55377|6100|10000|18||100.54|105.15|0.00|-1.50|1B00|0|0|01|080004B4|0|41A80000|| +26|2023-10-06T20:24:44.9460000-07:00|4B4|Lucid Dreaming|21.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +21|2023-10-06T20:24:44.9460000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|35660000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|24474040|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6100|10000|||100.54|105.15|0.00|-1.50|0001AAB3|0|1| +261|2023-10-06T20:24:44.5820000-07:00|Change|10FF0008||||| +38|2023-10-06T20:24:44.9460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5800|10000|18||100.54|105.15|0.00|-1.50|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:44.9460000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:24:44.6820000-07:00|Change|10FF0006||| +24|2023-10-06T20:24:44.9890000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7C9|56517|56517|5450|10000|||99.81|105.03|0.00|2.53|E0000000||0||||||||||| +38|2023-10-06T20:24:44.9890000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5450|10000|30||99.81|105.03|0.00|2.53|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:44.6820000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:24:45.1220000-07:00|40022550|Zeromus|0001AAAE|24470710||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:45.1220000-07:00|10FF0002|Suchichi Suchi|0001AAAE|40080|63089|10000|10000|27||101.09|103.26|0.00|-3.09|1600|0|0|01|04000AA0|0|C1F00000|| +21|2023-10-06T20:24:45.1220000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|714003|53E70000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|24474040|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||99.09|102.63|0.00|-2.74|0001AAB4|0|1| +38|2023-10-06T20:24:45.1220000-07:00|10FF0002|Suchichi Suchi|005A5A16|40080|63089|10000|10000|27||101.09|103.26|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:45.1220000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:24:45.1220000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|17||99.09|102.63|0.00|-2.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:45.1220000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:24:45.1220000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:24:44.7760000-07:00|Change|10FF0004||||| +37|2023-10-06T20:24:45.2110000-07:00|10FF0002|Suchichi Suchi|0001AAAD|49820|63089|10000|10000|27||101.09|103.26|0.00|-3.09|1600|0|0|02|0A2F|0|41EB082E|||||| +21|2023-10-06T20:24:45.2550000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|15FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24474040|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||99.09|102.63|0.00|-2.74|0001AAB5|0|1| +38|2023-10-06T20:24:45.4800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5800|10000|18||100.54|105.15|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:45.4800000-07:00|74C|Everlasting Flight|0.00|4002284B|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|55377|| +37|2023-10-06T20:24:45.5240000-07:00|10FF0002|Suchichi Suchi|0001AAB2|61539|63089|10000|10000|27||101.09|103.26|0.00|-3.09|1600|0|0|01|04000AA0|0|C1F00000|| +38|2023-10-06T20:24:45.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6350|10000|18||100.54|105.15|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:45.5680000-07:00|10FF0002|Suchichi Suchi|0001AAB1|52650|63089|10000|10000|0||101.09|103.26|0.00|-3.09|1600|0|0|02|0|0|0|||||| +37|2023-10-06T20:24:45.5680000-07:00|40022550|Zeromus|0001AAB3|24457040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:45.5680000-07:00|10FF0008|Kokosaze Lulusaze|0001AAB3|55377|55377|6350|10000|18||100.54|105.15|0.00|-3.12|1B00|0|0|01|09000B25|0|0|| +38|2023-10-06T20:24:45.5680000-07:00|10FF0002|Suchichi Suchi|005A5A16|52650|63089|10000|10000|0||101.09|103.26|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:45.5680000-07:00|A2F|Eukrasian Diagnosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:45.5680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6350|10000|18||100.54|105.15|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:45.6120000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5450|10000|30||99.79|105.00|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:45.6120000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:24:45.6120000-07:00|74C|Everlasting Flight|0.00|4002284B|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|56517|| +37|2023-10-06T20:24:45.6570000-07:00|40022550|Zeromus|0001AAB4|24435561||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:45.6570000-07:00|10FF0005|Wuwuchu Wuchu|0001AAB4|63038|63038|10000|10000|17||98.99|101.79|0.00|3.10|2700|0|0|01|07000A1F|0|41F00000|| +38|2023-10-06T20:24:45.6570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|17||98.99|101.79|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:45.7470000-07:00|40022550|Zeromus|0001AAAF|24422520||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:45.7470000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|17300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24435561|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6350|10000|||100.54|105.15|0.00|-3.12|0001AAB6|0|1| +38|2023-10-06T20:24:45.7470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6350|10000|18||100.54|105.15|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:45.7470000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:24:45.7470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7750|10000|18||103.17|104.88|0.00|-1.52|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:45.7470000-07:00|74C|Everlasting Flight|0.00|4002284B|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|56517|| +37|2023-10-06T20:24:45.7900000-07:00|40022550|Zeromus|0001AAB5|24416894||||||100.00|80.10|0.00|0.00| +27|2023-10-06T20:24:45.7900000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0146|0000|0000|0000| +27|2023-10-06T20:24:45.7900000-07:00|10FF0003|Gegehi Gehi|0000|0000|0146|0000|0000|0000| +27|2023-10-06T20:24:45.7900000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0146|0000|0000|0000| +27|2023-10-06T20:24:45.7900000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0146|0000|0000|0000| +27|2023-10-06T20:24:45.7900000-07:00|10FF0002|Suchichi Suchi|0000|0000|0146|0000|0000|0000| +27|2023-10-06T20:24:45.7900000-07:00|10FF0005|Wuwuchu Wuchu|0000|0000|0146|0000|0000|0000| +37|2023-10-06T20:24:45.8360000-07:00|10FF0004|Buhojaqe Zijaqe|0001AAB0|56517|56517|7750|10000|18||103.08|104.89|-0.02|-1.54|1C00|0|0|01|04000129|0|41E774B9|| +21|2023-10-06T20:24:45.8360000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|205F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24416894|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.99|101.73|0.00|3.10|0001AAB7|0|1| +38|2023-10-06T20:24:45.8360000-07:00|40022550|Zeromus|005A5A00|24416894|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:24:45.8360000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +26|2023-10-06T20:24:45.8360000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:24:45.8800000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|20||103.39|105.08|0.00|-2.53|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:45.8800000-07:00|74C|Everlasting Flight|0.00|4002284B|Demi-Phoenix|10FF0003|Gegehi Gehi|00|51159|| +261|2023-10-06T20:24:45.5770000-07:00|Change|10FF0008||| +37|2023-10-06T20:24:45.9240000-07:00|40022550|Zeromus|0001AA94|24407696||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:45.9240000-07:00|10FF0002|Suchichi Suchi|0001AA94|52650|63089|10000|10000|0||101.09|103.26|0.00|-3.09|1600|0|0|01|04000AA0|0|41F00000|| +21|2023-10-06T20:24:45.9240000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|724003|169B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24416894|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8650|10000|||102.63|104.97|0.00|-2.48|0001AAB8|0|1| +38|2023-10-06T20:24:45.9240000-07:00|10FF0002|Suchichi Suchi|005A5A16|52650|63089|10000|10000|0||101.09|103.26|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:45.9700000-07:00|10FF0003|Gegehi Gehi|0001AAB0|51159|51159|8650|10000|20||102.63|104.97|0.00|-2.48|2301|0|0|01|02000129|0|41E6624A|| +38|2023-10-06T20:24:46.0180000-07:00|10FF0002|Suchichi Suchi|005A5A16|52650|63089|10000|10000|0||101.09|103.26|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:46.0180000-07:00|74C|Everlasting Flight|0.00|4002284B|Demi-Phoenix|10FF0002|Suchichi Suchi|00|63089|| +21|2023-10-06T20:24:46.0570000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|14BE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|52650|63089|10000|10000|||101.09|103.26|0.00|-3.09|54201|54201|10000|10000|||99.81|96.03|0.00|1.54|0001AAB9|0|1| +20|2023-10-06T20:24:46.0570000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.62|104.13|0.00|-3.00| +37|2023-10-06T20:24:46.1010000-07:00|10FF0005|Wuwuchu Wuchu|0001AAB0|63038|63038|10000|10000|17||98.99|101.73|0.00|3.10|2702|0|0|01|08000129|0|41E551E8|| +39|2023-10-06T20:24:46.1470000-07:00|10FF0002|Suchichi Suchi|53280|63089|10000|10000|||101.09|103.26|0.00|-3.09| +39|2023-10-06T20:24:46.1910000-07:00|10FF0003|Gegehi Gehi|51159|51159|8850|10000|||102.11|104.84|0.00|-3.05| +24|2023-10-06T20:24:46.1910000-07:00|40022550|Zeromus|DoT|0|18EB|24407696|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:24:46.1910000-07:00|40022550|Zeromus|005A5A00|24401317|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:24:46.2360000-07:00|10FF0002|Suchichi Suchi|0001AAB0|59814||||||101.09|103.26|0.00|-3.09| +39|2023-10-06T20:24:46.2360000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|1.54| +261|2023-10-06T20:24:45.8050000-07:00|Change|10FF0003||||||||||| +04|2023-10-06T20:24:45.8050000-07:00|4002286A|Carbuncle|00|5A|10FF0008|00||10261|13498|0|53095|0|10000|||99.26|104.42|0.00|-0.39| +261|2023-10-06T20:24:45.8050000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T20:24:45.8050000-07:00|Remove|4002286A| +36|2023-10-06T20:24:46.3240000-07:00|3ED0|3| +37|2023-10-06T20:24:46.3680000-07:00|10FF0008|Kokosaze Lulusaze|0001AAB0|55377|55377|6350|10000|18||100.54|105.15|0.00|-3.12|1B04|0|0|01|02000129|0|41E32F18|| +39|2023-10-06T20:24:46.3680000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7950|10000|||101.72|105.08|0.00|-1.43| +261|2023-10-06T20:24:45.9260000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:24:46.4130000-07:00|40022550|Zeromus|0001AA96|24371016||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:46.4570000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||98.99|101.73|0.00|3.10| +37|2023-10-06T20:24:46.5020000-07:00|40022550|Zeromus|0001AAB6|24365080||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:46.5020000-07:00|10FF0006|Wowobora Gogobora|0001AAB0|56517|56517|5450|10000|30||99.60|104.02|0.00|-3.08|2805|0|0|01|03000129|0|41E21EB5|| +39|2023-10-06T20:24:46.5020000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5655|10000|||99.60|104.02|0.00|-3.08| +21|2023-10-06T20:24:46.5020000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|24401317|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7950|10000|||101.50|105.10|0.00|-1.44|0001AABA|0|1| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002253D||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002253E||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022541||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022539||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022542||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022540||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002253C||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002253B||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002253A||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002253F||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002254A||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022546||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022543||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022549||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002254E||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002254C||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002254D||| +261|2023-10-06T20:24:46.1560000-07:00|Change|4002254B||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022544||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022545||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022547||| +261|2023-10-06T20:24:46.1560000-07:00|Change|40022548||| +261|2023-10-06T20:24:46.2490000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:24:46.5460000-07:00|40022550|Zeromus|0001AAB7|24356793||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:46.5910000-07:00|40022550|Zeromus|0001AAB8|24351006||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:46.5910000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|491F0000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|24365080|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.99|101.73|0.00|3.10|0001AABB|0|1| +38|2023-10-06T20:24:46.5910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|17||98.99|101.73|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:46.5910000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:24:46.5910000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +21|2023-10-06T20:24:46.6360000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24365080|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8850|10000|||101.77|100.51|0.00|-3.05|0001AABC|0|1| +38|2023-10-06T20:24:46.6360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|17890|89453|2000|10000|0||99.66|105.47|0.00|0.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:46.6360000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:24:46.6360000-07:00|94|Raise|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|08|89453|55377| +26|2023-10-06T20:24:46.6360000-07:00|2B|Weakness|100.00|E0000000||10FF0001|Sesuga Sapisuga|00|89453|| +26|2023-10-06T20:24:46.6360000-07:00|1A2|Transcendent|5.00|E0000000||10FF0001|Sesuga Sapisuga|00|89453|| +12|2023-10-06T20:24:46.2490000-07:00|19|2579|289|3962|184|306|390|2579|976|2540|184|306|2182|400|400|0|529|4000174A6D2E55| +261|2023-10-06T20:24:46.2490000-07:00|Change|10FF0001||| +261|2023-10-06T20:24:46.3460000-07:00|Change|10FF0001||| +21|2023-10-06T20:24:46.7240000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|722003|27820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24365080|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8850|10000|||101.77|100.51|0.00|-3.05|0001AABD|0|1| +21|2023-10-06T20:24:46.7680000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42724003|356E0000|171D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|24365080|40478540|10000|10000|||100.00|80.10|0.00|0.00|59814|63089|10000|10000|||101.09|103.26|0.00|-3.09|0001AABE|0|1| +38|2023-10-06T20:24:46.7680000-07:00|10FF0002|Suchichi Suchi|005A5A16|59814|63089|10000|10000|0||101.09|103.26|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:46.7680000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:24:46.8120000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5655|10000|30||99.60|104.02|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:46.8120000-07:00|8C8|Blunt Resistance Down|0.00|4002254A|Comet|10FF0006|Wowobora Gogobora|00|56517|69200| +37|2023-10-06T20:24:46.8570000-07:00|10FF0002|Suchichi Suchi|0001AAB9|63089|63089|10000|10000|0||101.10|103.22|-0.02|-3.09|1600|0|0|01|0323|0|C1F00000|| +38|2023-10-06T20:24:46.9470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|16||98.99|101.73|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:46.9470000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|63038|89994| +21|2023-10-06T20:24:46.9910000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36160000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|24351006|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5655|10000|||99.60|104.02|0.00|3.13|0001AABF|0|1| +39|2023-10-06T20:24:47.0360000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|6550|10000|||100.54|105.15|0.00|-3.12| +261|2023-10-06T20:24:46.5340000-07:00|Change|10FF0008||| +37|2023-10-06T20:24:47.1250000-07:00|40022550|Zeromus|0001AABA|24351006|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:24:47.1250000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|56517| +37|2023-10-06T20:24:47.1700000-07:00|40022550|Zeromus|0001AABC|24350975||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:47.2160000-07:00|40022550|Zeromus|0001AABE|24337297|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A9F|0|41C00000|| +26|2023-10-06T20:24:47.2160000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +37|2023-10-06T20:24:47.2160000-07:00|10FF0002|Suchichi Suchi|0001AABE|63089|63089|10000|10000|0||101.10|102.82|0.00|-2.94|1600|0|0|01|0323|0|41F00000|| +37|2023-10-06T20:24:47.2160000-07:00|40022550|Zeromus|0001AABB|24318578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:47.2160000-07:00|10FF0005|Wuwuchu Wuchu|0001AABB|63038|63038|10000|10000|16||98.99|101.73|0.00|3.10|2700|0|0|01|07000A1E|0|41F00000|| +38|2023-10-06T20:24:47.2160000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||101.10|102.82|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:47.2160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7550|10000|18||101.24|105.18|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:47.2160000-07:00|8C8|Blunt Resistance Down|0.00|40022548|Comet|10FF0004|Buhojaqe Zijaqe|00|56517|69200| +38|2023-10-06T20:24:47.2160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|16||98.99|101.73|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:47.3030000-07:00|40022550|Zeromus|0001AABD|24308464||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:47.3480000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|712003|35AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24308464|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.99|101.73|0.00|3.10|0001AAC0|0|1| +21|2023-10-06T20:24:47.3920000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24308464|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||101.15|102.63|0.00|-2.51|0001AAC1|0|1| +261|2023-10-06T20:24:46.9940000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:24:47.4370000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|456003|6A580000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|24308464|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6550|10000|||100.54|105.15|0.00|-3.12|0001AAC2|0|1| +38|2023-10-06T20:24:47.4370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6250|10000|18||100.54|105.15|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:47.4370000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +21|2023-10-06T20:24:47.5270000-07:00|10FF0001|Sesuga Sapisuga|1D6D|Provoke|40022550|Zeromus|18|7C480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24308464|40478540|10000|10000|||100.00|80.10|0.00|0.00|17890|89453|2000|10000|||99.69|102.71|0.00|3.13|0001AAC3|0|1| +21|2023-10-06T20:24:47.5270000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24308464|40478540|10000|10000|||100.00|80.10|0.00|0.00|17890|89453|2000|10000|||99.69|102.71|0.00|3.13|0001AAC4|0|1| +21|2023-10-06T20:24:47.5270000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|2BD00000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|24308464|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8850|10000|||101.82|100.51|0.00|-3.05|0001AAC5|0|1| +38|2023-10-06T20:24:47.5270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|17890|89453|2000|10000|0||99.69|102.71|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:47.5270000-07:00|1A2|Transcendent|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|89453|| +38|2023-10-06T20:24:47.5270000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|20||101.82|100.51|0.00|-3.05|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:47.5270000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +31|2023-10-06T20:24:47.5270000-07:00|10FF0001||||| +21|2023-10-06T20:24:47.5710000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24308464|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5255|10000|||99.60|103.99|0.00|2.95|0001AAC6|0|1| +261|2023-10-06T20:24:47.1100000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:24:47.2000000-07:00|Change|10FF0006||||||||||||||||||||| +24|2023-10-06T20:24:47.6610000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15B7|17890|89453|2000|10000|||99.69|102.07|0.00|3.13|10FF0006|Wowobora Gogobora|0|56517|56517|5255|10000|||99.60|103.39|0.00|2.99| +37|2023-10-06T20:24:47.6610000-07:00|40022550|Zeromus|0001AABF|24294618||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:47.6610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|23449|89453|2000|10000|0||99.69|102.07|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:47.7950000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0002|Suchichi Suchi|750003|6B180000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||101.65|101.32|0.00|-2.34|24294618|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AAC7|0|1| +38|2023-10-06T20:24:47.7950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|17998|89994|2000|10000|0||99.99|106.30|0.00|0.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:47.7950000-07:00|94|Raise|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|08|89994|56517| +261|2023-10-06T20:24:47.3930000-07:00|Change|10FF0007||| +26|2023-10-06T20:24:47.7950000-07:00|2B|Weakness|100.00|E0000000||10FF0007|Kehabiqo Febiqo|00|89994|| +26|2023-10-06T20:24:47.7950000-07:00|1A2|Transcendent|5.00|E0000000||10FF0007|Kehabiqo Febiqo|00|89994|| +261|2023-10-06T20:24:47.3930000-07:00|Change|10FF0007||| +26|2023-10-06T20:24:47.8840000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|56517|56517| +22|2023-10-06T20:24:47.8840000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F200F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|7550|10000|||101.14|104.80|0.00|-3.04|56517|56517|7550|10000|||101.14|104.80|0.00|-3.04|0001AAC8|0|1| +37|2023-10-06T20:24:47.9280000-07:00|40022550|Zeromus|0001AAC1|24289861||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:47.5880000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:24:48.0620000-07:00|40022550|Zeromus|0001AAC2|24262637||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:48.0620000-07:00|10FF0008|Kokosaze Lulusaze|0001AAC2|55377|55377|6250|10000|18||100.50|103.76|0.00|-3.11|1B00|0|0|01|06000B25|0|0|| +37|2023-10-06T20:24:48.0620000-07:00|40022550|Zeromus|0001AAC4|24261430||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:48.0620000-07:00|40022550|Zeromus|0001AAC0|24247688||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:48.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6250|10000|18||100.50|103.76|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:48.1070000-07:00|40022550|Zeromus|0001AAC6|24247643||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:24:48.1070000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|98.99|101.73|0.00|3.10| +261|2023-10-06T20:24:47.6810000-07:00|Change|10FF0005||||||||||||||||||||| +21|2023-10-06T20:24:48.1970000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|1C850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24247643|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6250|10000|||100.49|102.28|0.00|-3.13|0001AAC9|0|1| +38|2023-10-06T20:24:48.1970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6250|10000|18||100.49|102.28|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:48.1970000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:24:48.1970000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|16||98.99|101.73|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:48.1970000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +39|2023-10-06T20:24:48.2410000-07:00|10FF0007|Kehabiqo Febiqo|18897|89994|2200|10000|||99.99|106.30|0.00|0.00| +37|2023-10-06T20:24:48.2850000-07:00|40022550|Zeromus|0001AAC5|24236427||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:48.3740000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|F450000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|24236427|40478540|10000|10000|||100.00|80.10|0.00|0.00|23449|89453|2000|10000|||99.70|101.71|0.00|3.13|0001AACA|0|1| +20|2023-10-06T20:24:48.4630000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.60|102.34|0.00|-2.04| +261|2023-10-06T20:24:48.0450000-07:00|Change|4002286F||||| +38|2023-10-06T20:24:48.5090000-07:00|400228C6||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:24:48.5090000-07:00|400228C6||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +24|2023-10-06T20:24:48.5090000-07:00|10FF0003|Gegehi Gehi|HoT|798|D07|51159|51159|8650|10000|||101.82|100.51|0.00|-3.05|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02| +24|2023-10-06T20:24:48.5090000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|14C8|23449|89453|2000|10000|||99.70|101.71|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02| +24|2023-10-06T20:24:48.5090000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D4E|63038|63038|10000|10000|||98.99|101.73|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02| +24|2023-10-06T20:24:48.5090000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CFF|55377|55377|6250|10000|||100.48|102.29|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02| +24|2023-10-06T20:24:48.5090000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D82|56517|56517|5255|10000|||99.60|102.34|0.00|-2.04|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02| +24|2023-10-06T20:24:48.5090000-07:00|10FF0002|Suchichi Suchi|HoT|798|CEE|63089|63089|10000|10000|||100.83|102.62|0.00|-1.93|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02| +24|2023-10-06T20:24:48.5090000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|14A4|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02| +24|2023-10-06T20:24:48.5090000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|14CB|18897|89994|2200|10000|||99.99|106.30|0.00|0.00|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7550|10000|||101.09|104.62|0.00|-3.02| +37|2023-10-06T20:24:48.5090000-07:00|10FF0004|Buhojaqe Zijaqe|0001AAC8|56517|56517|7550|10000|18||101.09|104.62|0.00|-3.02|1C00|0|0|02|05000798|0|41700000|||||| +26|2023-10-06T20:24:48.5090000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:24:48.5090000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:48.5090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|24220|89994|2200|10000|0||99.99|106.30|0.00|0.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:48.5090000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:48.5090000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|0||100.83|102.62|0.00|-1.93|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:48.5090000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +261|2023-10-06T20:24:48.0450000-07:00|Add|400228C6||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:48.5090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6250|10000|18||100.48|102.29|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:48.5090000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:48.5090000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5255|10000|30||99.60|102.34|0.00|-2.04|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:48.5090000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:48.5090000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:48.5090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|28769|89453|2000|10000|0||99.70|101.71|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:48.5090000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:48.5090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7550|10000|18||101.09|104.62|0.00|-3.02|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:48.0450000-07:00|Change|400228C6||| +03|2023-10-06T20:24:48.0450000-07:00|400228C6|Carbuncle|00|5A|10FF0008|00||10261|13498|53095|53095|10000|10000|||100.43|100.57|0.00|0.02| +38|2023-10-06T20:24:48.5090000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8650|10000|20||101.82|100.51|0.00|-3.05|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:48.5090000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:48.5090000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|16||98.99|101.73|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:48.5090000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +261|2023-10-06T20:24:48.1600000-07:00|Change|400228C6||| +38|2023-10-06T20:24:48.5530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6800|10000|18||100.47|102.29|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:48.5970000-07:00|10FF0002|Suchichi Suchi|0001AAC7|35673||||||100.76|102.64|0.00|-2.37| +261|2023-10-06T20:24:48.2540000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:24:48.6410000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24236427|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6800|10000|||100.46|102.30|0.00|-3.12|0001AACB|0|1| +26|2023-10-06T20:24:48.6860000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|56517|56517| +22|2023-10-06T20:24:48.6860000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|4|33E70000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|0001AACC|0|8| +22|2023-10-06T20:24:48.6860000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0002|Suchichi Suchi|200004|542B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||100.76|102.64|0.00|-2.37|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|0001AACC|1|8| +22|2023-10-06T20:24:48.6860000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|50E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|6800|10000|||100.46|102.30|0.00|-3.12|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|0001AACC|2|8| +22|2023-10-06T20:24:48.6860000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|50060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|5255|10000|||99.49|102.35|0.00|-2.27|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|0001AACC|3|8| +22|2023-10-06T20:24:48.6860000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|50AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28769|89453|2000|10000|||99.70|101.45|0.00|3.13|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|0001AACC|4|8| +22|2023-10-06T20:24:48.6860000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0005|Wuwuchu Wuchu|4|317B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.99|101.73|0.00|3.10|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|0001AACC|5|8| +22|2023-10-06T20:24:48.6860000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|522C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|8650|10000|||101.82|100.51|0.00|-3.05|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|0001AACC|6|8| +22|2023-10-06T20:24:48.6860000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|4|32660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24220|89994|2200|10000|||99.98|106.26|0.00|-1.58|56517|56517|7550|10000|||101.06|104.21|0.00|-3.04|0001AACC|7|8| +261|2023-10-06T20:24:48.3510000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:24:48.3510000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:24:48.3510000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:24:48.8640000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|756003|3ACD4001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24236427|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.99|101.73|0.00|3.10|0001AACD|0|1| +38|2023-10-06T20:24:48.8640000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|16||98.99|101.73|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:48.8640000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:24:48.8640000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +20|2023-10-06T20:24:48.9080000-07:00|40022550|Zeromus|8B46|Visceral Whirl|40022550|Zeromus|7.700|100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:48.4450000-07:00|Change|10FF0005||||||||||||| +20|2023-10-06T20:24:48.9080000-07:00|4002256D|Zeromus|8B47|Visceral Whirl|4002256D|Zeromus|8.500|119.90|80.10|0.00|-0.79| +261|2023-10-06T20:24:48.4450000-07:00|Change|40022550||||||||||||| +20|2023-10-06T20:24:48.9080000-07:00|4002256E|Zeromus|8B48|Visceral Whirl|4002256E|Zeromus|8.500|80.10|80.10|0.00|0.79| +261|2023-10-06T20:24:48.4450000-07:00|Add|400228C7||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:48.9530000-07:00|40022550|Zeromus|0001AAC9|24229126||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:48.9980000-07:00|40022550|Zeromus|0001AACA|24225217||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:48.9980000-07:00|10FF0001|Sesuga Sapisuga|29663|89453|2200|10000|||99.70|101.23|0.00|3.14| +261|2023-10-06T20:24:48.5460000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:24:48.5460000-07:00|Change|40022550||||| +21|2023-10-06T20:24:49.0430000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|F8A0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|24229126|40478540|10000|10000|||100.00|80.10|0.00|0.00|24220|89994|2200|10000|||99.79|103.96|0.00|-2.63|0001AACE|0|1| +21|2023-10-06T20:24:49.0430000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|7A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24229126|40478540|10000|10000|||100.00|80.10|0.00|0.00|24220|89994|2200|10000|||99.79|103.96|0.00|-2.63|0001AACF|0|1| +38|2023-10-06T20:24:49.0430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|24220|89994|2200|10000|0||99.79|103.96|0.00|-2.63|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:49.0430000-07:00|1A2|Transcendent|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|89994|| +261|2023-10-06T20:24:48.6650000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:24:49.0870000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|712003|108D0000|13370E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|24225217|40478540|10000|10000|||100.00|80.10|0.00|0.00|29663|89453|2200|10000|||99.70|101.23|0.00|3.14|0001AAD0|0|1| +39|2023-10-06T20:24:49.1320000-07:00|10FF0002|Suchichi Suchi|36303|63089|10000|10000|||100.67|102.51|0.00|-2.76| +37|2023-10-06T20:24:49.1770000-07:00|40022550|Zeromus|0001AACB|24225030||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:49.1770000-07:00|10FF0003|Gegehi Gehi|51159|51159|8850|10000|||101.82|100.51|0.00|-3.05| +24|2023-10-06T20:24:49.1770000-07:00|40022550|Zeromus|DoT|0|2C70|24225217|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:24:49.1770000-07:00|40022550|Zeromus|005A5A00|24213654|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:49.1770000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +261|2023-10-06T20:24:48.6650000-07:00|Change|10FF0003||| +39|2023-10-06T20:24:49.2210000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +21|2023-10-06T20:24:49.2660000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|2A120000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|24225217|40478540|10000|10000|||100.00|80.10|0.00|0.00|36303|63089|10000|10000|||100.65|102.46|0.00|-2.80|0001AAD1|0|1| +21|2023-10-06T20:24:49.2660000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24225217|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.99|101.73|0.00|3.10|0001AAD2|0|1| +38|2023-10-06T20:24:49.2660000-07:00|10FF0002|Suchichi Suchi|005A5A16|36303|63089|10000|10000|0||100.65|102.46|0.00|-2.80|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:49.2660000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:24:49.2660000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +20|2023-10-06T20:24:49.3100000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.95|102.76|0.00|-3.12| +36|2023-10-06T20:24:49.3100000-07:00|3FAC|3| +261|2023-10-06T20:24:48.8910000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:24:49.3550000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7750|10000|||100.95|102.76|0.00|-3.12| +261|2023-10-06T20:24:48.8910000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:24:48.8910000-07:00|Change|4002256D||||||||||||| +21|2023-10-06T20:24:49.3980000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|377E0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|24213654|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5255|10000|||99.35|102.37|0.00|3.11|0001AAD3|0|1| +37|2023-10-06T20:24:49.4430000-07:00|10FF0002|Suchichi Suchi|0001AACC|57850|63089|10000|10000|0||100.60|102.39|0.00|-3.11|1601|0|0|01|05000322|0|C1F00000|| +39|2023-10-06T20:24:49.4430000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||98.99|101.73|0.00|3.10| +37|2023-10-06T20:24:49.4870000-07:00|40022550|Zeromus|0001AACD|24133065||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:49.4880000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5060|10000|||99.35|102.37|0.00|3.11| +34|2023-10-06T20:24:49.5330000-07:00|400228C6|Carbuncle|400228C6|Carbuncle|01| +37|2023-10-06T20:24:49.5760000-07:00|40022550|Zeromus|0001AACE|24129087||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:49.5760000-07:00|40022550|Zeromus|0001AACF|24127134||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:49.2140000-07:00|Change|400228C6||| +21|2023-10-06T20:24:49.6650000-07:00|10FF0007|Kehabiqo Febiqo|1D6D|Provoke|40022550|Zeromus|18|76080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24127134|40478540|10000|10000|||100.00|80.10|0.00|0.00|24220|89994|2200|10000|||99.78|101.14|0.00|3.12|0001AAD4|0|1| +261|2023-10-06T20:24:49.2140000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:24:49.7540000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|22020000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|24127134|40478540|10000|10000|||100.00|80.10|0.00|0.00|29663|89453|2200|10000|||99.70|101.23|0.00|3.13|0001AAD5|0|1| +37|2023-10-06T20:24:49.8000000-07:00|40022550|Zeromus|0001AAD2|24122855||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:49.8000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24122855|40478540|10000|10000|||100.00|80.10|0.00|0.00|29663|89453|2200|10000|||99.70|101.23|0.00|3.13|0001AAD6|0|1| +31|2023-10-06T20:24:49.8000000-07:00|10FF0001||||| +261|2023-10-06T20:24:49.4150000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T20:24:49.8430000-07:00|10FF0001|Sesuga Sapisuga|0001AACC|50317||||||99.70|101.23|0.00|3.13| +21|2023-10-06T20:24:49.8900000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|34AE0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|24122855|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6800|10000|||100.45|102.31|0.00|-3.12|0001AAD7|0|1| +38|2023-10-06T20:24:49.8900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6500|10000|18||100.45|102.31|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:49.8900000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:24:49.9340000-07:00|40022550|Zeromus|0001AAD1|24112085||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:49.9340000-07:00|10FF0002|Suchichi Suchi|0001AAD1|57850|63089|10000|10000|0||100.48|102.26|0.00|-2.95|1600|0|0|01|05000322|0|41F00000|| +21|2023-10-06T20:24:49.9340000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|15780000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|57850|63089|10000|10000|||100.48|102.26|0.00|-2.95|54201|54201|10000|10000|||99.81|96.03|0.00|1.63|0001AAD8|0|1| +38|2023-10-06T20:24:49.9340000-07:00|10FF0002|Suchichi Suchi|005A5A16|57850|63089|10000|10000|0||100.48|102.26|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:49.6010000-07:00|Change|10FF0008||||| +39|2023-10-06T20:24:50.0220000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|6700|10000|||100.45|102.31|0.00|-3.12| +24|2023-10-06T20:24:50.0670000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1567|50317|89453|2200|10000|||99.70|101.23|0.00|3.13|10FF0006|Wowobora Gogobora|0|56517|56517|5060|10000|||99.35|102.37|0.00|3.11| +37|2023-10-06T20:24:50.0670000-07:00|40022550|Zeromus|0001AAD3|24097879||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:24:50.0670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAD9|0|8| +22|2023-10-06T20:24:50.0670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.99|101.75|0.00|3.10|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAD9|1|8| +22|2023-10-06T20:24:50.0670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|57850|63089|10000|10000|||100.42|102.22|-0.01|-2.90|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAD9|2|8| +22|2023-10-06T20:24:50.0670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|6500|10000|||100.45|102.31|0.00|-3.12|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAD9|3|8| +22|2023-10-06T20:24:50.0670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|50317|89453|2200|10000|||99.70|101.23|0.00|3.13|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAD9|4|8| +22|2023-10-06T20:24:50.0670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|24220|89994|2200|10000|||99.78|100.91|-0.01|3.13|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAD9|5|8| +22|2023-10-06T20:24:50.0670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAD9|6|8| +22|2023-10-06T20:24:50.0670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|8850|10000|||100.86|100.34|0.00|3.13|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAD9|7|8| +38|2023-10-06T20:24:50.0670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|55796|89453|2200|10000|0||99.70|101.23|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.0670000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:24:50.1120000-07:00|40022550|Zeromus|0001AAD0|24093642|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T20:24:50.1120000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +37|2023-10-06T20:24:50.1120000-07:00|40022550|Zeromus|0001AAD5|24084936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:50.1120000-07:00|10FF0001|Sesuga Sapisuga|0001AAD5|55796|89453|2700|10000|0||99.70|101.23|0.00|3.13|1300|0|0|0| +21|2023-10-06T20:24:50.1120000-07:00|10FF0002|Suchichi Suchi|03|Sprint|10FF0002|Suchichi Suchi|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57850|63089|10000|10000|||100.42|102.22|-0.01|-2.90|57850|63089|10000|10000|||100.42|102.22|-0.01|-2.90|0001AADA|0|1| +21|2023-10-06T20:24:50.1120000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24112085|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|8850|10000|||100.86|100.34|0.00|3.13|0001AADB|0|1| +261|2023-10-06T20:24:49.6980000-07:00|Change|10FF0001||||| +21|2023-10-06T20:24:50.2000000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|E530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24084936|40478540|10000|10000|||100.00|80.10|0.00|0.00|57850|63089|10000|10000|||100.42|102.22|0.00|-2.90|0001AADC|0|1| +37|2023-10-06T20:24:50.2440000-07:00|10FF0002|Suchichi Suchi|0001AADA|57850|63089|10000|10000|0||100.42|102.22|0.00|-2.90|1600|0|0|01|32|1E|41200000|| +26|2023-10-06T20:24:50.2440000-07:00|32|Sprint|10.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|1E|63089|63089| +37|2023-10-06T20:24:50.2440000-07:00|10FF0007|Kehabiqo Febiqo|0001AACC|37122||||||99.78|100.91|0.00|3.13| +21|2023-10-06T20:24:50.2890000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|4|53D30000|1CEF0F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|24220|89994|2200|10000|||99.78|100.91|0.00|3.13|24220|89994|2200|10000|||99.78|100.91|0.00|3.13|0001AADD|0|1| +37|2023-10-06T20:24:50.3330000-07:00|40022550|Zeromus|0001AAD6|24083638||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:50.5560000-07:00|40022550|Zeromus|0001AAD7|24070152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:50.5560000-07:00|10FF0008|Kokosaze Lulusaze|0001AAD7|55377|55377|6700|10000|18||100.45|102.20|0.00|-3.10|1B00|0|0|01|09000B25|0|0|| +21|2023-10-06T20:24:50.5560000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|168F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24083638|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6700|10000|||100.45|102.20|0.00|-3.10|0001AADE|0|1| +38|2023-10-06T20:24:50.5560000-07:00|40022550|Zeromus|005A5A00|24070152|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:24:50.5560000-07:00|A1A|Death's Design|0.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|63038| +38|2023-10-06T20:24:50.5560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6700|10000|18||100.45|102.20|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:50.5560000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:24:50.6450000-07:00|40022550|Zeromus|0001AADB|24070113||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:50.2460000-07:00|Change|10FF0003||||||||||||||||||| +20|2023-10-06T20:24:50.6890000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|100.92|98.32|0.00|-3.05| +37|2023-10-06T20:24:50.7340000-07:00|40022550|Zeromus|0001AADC|24066446||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:50.7340000-07:00|10FF0002|Suchichi Suchi|0001AAD8|63089||||||100.42|102.22|-0.02|-2.90| +22|2023-10-06T20:24:50.7340000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|29BF0000|CB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|0001AADF|0|8| +22|2023-10-06T20:24:50.7340000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|18FF0000|FE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57850|63089|10000|10000|||100.42|102.22|-0.02|-2.90|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|0001AADF|1|8| +22|2023-10-06T20:24:50.7340000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19EC0000|790E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55377|55377|6700|10000|||100.42|102.11|0.00|-3.12|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|0001AADF|2|8| +22|2023-10-06T20:24:50.7340000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|194B0000|78000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|0001AADF|3|8| +22|2023-10-06T20:24:50.7340000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|289C0000|F90E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55796|89453|2700|10000|||99.92|101.09|0.00|3.14|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|0001AADF|4|8| +22|2023-10-06T20:24:50.7340000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|200004|27F50000|EE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.92|102.86|-0.02|3.10|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|0001AADF|5|8| +22|2023-10-06T20:24:50.7340000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|29210000|CE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|37122|89994|2200|10000|||99.78|100.91|0.00|3.13|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|0001AADF|6|8| +22|2023-10-06T20:24:50.7340000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|19F70000|8B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|51159|51159|8850|10000|||100.92|98.32|0.00|-3.05|56517|56517|7750|10000|||100.94|102.65|0.00|-3.11|0001AADF|7|8| +21|2023-10-06T20:24:50.7350000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|714003|498D0000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|24070113|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.92|102.86|-0.02|3.10|0001AAE0|0|1| +38|2023-10-06T20:24:50.7350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|37122|89994|2200|10000|18||99.78|100.91|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.7350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:50.7350000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|16||100.42|102.22|-0.02|-2.90|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.7350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:50.7350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6700|10000|19||100.42|102.11|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.7350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:50.7350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|55796|89453|2700|10000|18||99.92|101.09|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.7350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:50.7350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6750|10000|30||100.94|102.65|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.7350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:50.7350000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8850|10000|20||100.92|98.32|0.00|-3.05|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.7350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:50.7350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||98.92|102.86|-0.02|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.7350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +38|2023-10-06T20:24:50.8230000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5060|10000|30||99.35|102.37|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8230000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:50.8230000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0006|Wowobora Gogobora|00|56517|| +38|2023-10-06T20:24:50.8230000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8850|10000|20||101.07|98.02|0.00|-3.07|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8230000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +35|2023-10-06T20:24:50.8230000-07:00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|0000|0000|00A3|||| +38|2023-10-06T20:24:50.8230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6750|10000|30||100.94|102.65|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8230000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:24:50.8230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6700|10000|19||100.42|102.04|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8230000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +35|2023-10-06T20:24:50.8230000-07:00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|0000|0000|00A3|||| +38|2023-10-06T20:24:50.8230000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|16||100.42|102.22|0.00|-2.90|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8230000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +38|2023-10-06T20:24:50.8230000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||98.92|102.91|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8230000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +35|2023-10-06T20:24:50.8230000-07:00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|0000|0000|00A3|||| +261|2023-10-06T20:24:50.3550000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:24:50.8680000-07:00|10FF0006|Wowobora Gogobora|0001AAD9|56517|56517|5760|10000|30||99.35|102.37|0.00|3.11|2800|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:24:50.8680000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:50.8680000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +24|2023-10-06T20:24:50.8680000-07:00|10FF0003|Gegehi Gehi|HoT|798|D2B|51159|51159|8850|10000|||101.17|97.81|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11| +24|2023-10-06T20:24:50.8680000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D31|37122|89994|2200|10000|||99.78|100.91|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11| +24|2023-10-06T20:24:50.8680000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|152E|55796|89453|2700|10000|||99.92|101.09|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11| +24|2023-10-06T20:24:50.8680000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|152B|55377|55377|6700|10000|||100.42|101.98|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11| +24|2023-10-06T20:24:50.8680000-07:00|10FF0002|Suchichi Suchi|HoT|798|CFD|63089|63089|10000|10000|||100.42|102.22|0.00|-2.90|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11| +24|2023-10-06T20:24:50.8680000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D45|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11| +24|2023-10-06T20:24:50.8680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|15A2|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11| +24|2023-10-06T20:24:50.8680000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|CED|63038|63038|10000|10000|||98.89|102.94|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11| +21|2023-10-06T20:24:50.8680000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|15AC0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|24066446|40478540|10000|10000|||100.00|80.10|0.00|0.00|55796|89453|2700|10000|||99.92|101.09|0.00|3.14|0001AAE1|0|1| +38|2023-10-06T20:24:50.8680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|40499|89994|2200|10000|18||99.78|100.91|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:50.8680000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|16||100.42|102.22|0.00|-2.90|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:50.8680000-07:00|40022550|Zeromus|005A5A00|24066446|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:24:50.8680000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|56517| +38|2023-10-06T20:24:50.8680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6700|10000|19||100.42|101.98|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:50.8680000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5760|10000|30||99.35|102.37|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:50.8680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|61218|89453|2700|10000|18||99.92|101.09|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:50.8680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6750|10000|30||100.94|102.65|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8680000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:24:50.8680000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|8850|10000|20||101.17|97.81|0.00|-3.07|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8680000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:50.8680000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||98.89|102.94|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:50.8680000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:24:50.9110000-07:00|10FF0007|Kehabiqo Febiqo|0001AADD|61958|89994|2200|10000|18||99.78|100.91|0.00|3.13|1500|0|0|01|06000A79|0|41700000|| +26|2023-10-06T20:24:50.9110000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +21|2023-10-06T20:24:50.9120000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|65890000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|24066446|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5060|10000|||99.35|102.37|0.00|3.11|0001AAE2|0|1| +38|2023-10-06T20:24:50.9120000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||98.89|102.94|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:50.9120000-07:00|A23|Threshold|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:24:50.4540000-07:00|Change|10FF0006||| +37|2023-10-06T20:24:51.0010000-07:00|10FF0005|Wuwuchu Wuchu|0001AAD9|63038|63038|10000|10000|25||98.85|102.97|0.00|3.14|2701|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:24:51.0010000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +26|2023-10-06T20:24:51.0010000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +24|2023-10-06T20:24:51.0010000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D2E|56517|56517|5360|10000|||99.35|102.37|0.00|3.11|E0000000||0||||||||||| +38|2023-10-06T20:24:51.0010000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5360|10000|30||99.35|102.37|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:50.6510000-07:00|Change|40022550||||| +21|2023-10-06T20:24:51.0910000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|726003|66330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24066446|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||100.42|102.22|0.00|-2.90|0001AAE3|0|1| +261|2023-10-06T20:24:50.6510000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:24:51.1350000-07:00|10FF0002|Suchichi Suchi|0001AAD9|63089|63089|10000|10000|16||100.42|102.22|0.00|-2.90|1602|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:24:51.1350000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:24:51.1350000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +261|2023-10-06T20:24:50.7990000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:24:51.2240000-07:00|10FF0007|Kehabiqo Febiqo|62857|89994|2400|10000|||99.78|100.91|0.00|3.13| +37|2023-10-06T20:24:51.2690000-07:00|10FF0008|Kokosaze Lulusaze|0001AAD9|55377|55377|6700|10000|19||100.42|101.85|-0.02|-3.12|1B03|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:24:51.2690000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +26|2023-10-06T20:24:51.2690000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +37|2023-10-06T20:24:51.3140000-07:00|40022550|Zeromus|0001AADE|24060671||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:50.9140000-07:00|Remove|4002286D| +21|2023-10-06T20:24:51.3580000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24060671|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5360|10000|||99.35|102.37|0.00|3.11|0001AAE4|0|1| +21|2023-10-06T20:24:51.3580000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11|56517|56517|6750|10000|||100.94|102.65|0.00|-3.11|0001AAE5|0|1| +37|2023-10-06T20:24:51.4030000-07:00|10FF0001|Sesuga Sapisuga|0001AAD9|61218|89453|2700|10000|18||99.92|101.09|0.00|3.14|1304|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:24:51.4030000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:24:51.4030000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +21|2023-10-06T20:24:51.4930000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|16C00000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|24060671|40478540|10000|10000|||100.00|80.10|0.00|0.00|62857|89994|2400|10000|||99.78|100.91|0.00|3.13|0001AAE6|0|1| +37|2023-10-06T20:24:51.5380000-07:00|10FF0007|Kehabiqo Febiqo|0001AAD9|62857|89994|2400|10000|18||99.78|100.91|0.00|3.13|1505|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:24:51.5380000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +26|2023-10-06T20:24:51.5380000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +24|2023-10-06T20:24:51.5380000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1A19|62857|89994|2400|10000|||99.78|100.91|0.00|3.13|E0000000||0||||||||||| +24|2023-10-06T20:24:51.5380000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|160A|55377|55377|6700|10000|||100.42|101.85|0.00|-3.12|10FF0008|Kokosaze Lulusaze|0|55377|55377|6700|10000|||100.42|101.85|0.00|-3.12| +21|2023-10-06T20:24:51.5380000-07:00|10FF0006|Wowobora Gogobora|5EF5|Rhizomata|10FF0006|Wowobora Gogobora|13E|1028000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|5360|10000|||99.35|102.37|0.00|3.11|56517|56517|5360|10000|||99.35|102.37|0.00|3.11|0001AAE7|0|1| +38|2023-10-06T20:24:51.5380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69538|89994|2400|10000|18||99.78|100.91|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:51.5380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7250|10000|19||100.42|101.85|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:51.5820000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|14F4|61218|89453|2700|10000|||99.92|101.09|0.00|3.14|10FF0006|Wowobora Gogobora|0|56517|56517|5360|10000|||99.35|102.37|0.00|3.11| +37|2023-10-06T20:24:51.5820000-07:00|40022550|Zeromus|0001AAE2|24034678||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:51.5820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|66582|89453|2700|10000|18||99.92|101.09|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:24:51.6260000-07:00|40022550|Zeromus|0001AAE1|24029130||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:51.6260000-07:00|10FF0001|Sesuga Sapisuga|0001AAE1|66582|89453|3700|10000|18||99.92|101.09|0.00|3.14|1300|0|0|0| +261|2023-10-06T20:24:51.1450000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:51.6710000-07:00|10FF0004|Buhojaqe Zijaqe|0001AAD9|56517|56517|6750|10000|30||100.94|102.66|0.00|-2.33|1C06|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:24:51.6710000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:24:51.6710000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +21|2023-10-06T20:24:51.6710000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|714003|D330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24029130|40478540|10000|10000|||100.00|80.10|0.00|0.00|66582|89453|3700|10000|||99.92|101.09|0.00|3.14|0001AAE8|0|1| +37|2023-10-06T20:24:51.7610000-07:00|40022550|Zeromus|0001AAE0|24010301||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:51.7610000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A724003|43710000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|24010301|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||100.35|101.86|0.00|3.14|0001AAE9|0|1| +38|2023-10-06T20:24:51.7610000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|16||100.35|101.86|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:51.7610000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:24:51.7610000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:51.8050000-07:00|10FF0003|Gegehi Gehi|0001AAD9|51159|51159|8850|10000|20||101.43|97.28|0.00|-3.06|2307|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:24:51.8050000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +26|2023-10-06T20:24:51.8050000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +21|2023-10-06T20:24:51.8050000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24010301|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|7250|10000|||100.42|101.85|0.00|-3.12|0001AAEA|0|1| +37|2023-10-06T20:24:51.8490000-07:00|40022550|Zeromus|0001AAE3|23984138||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:51.8490000-07:00|10FF0002|Suchichi Suchi|0001AAE3|63089|63089|10000|10000|16||100.21|101.26|0.00|3.14|1600|0|0|01|0C000747|0|C1F00000|| +37|2023-10-06T20:24:51.8490000-07:00|10FF0004|Buhojaqe Zijaqe|0001AADF|56517|56517|6750|10000|30||100.95|103.43|0.00|-1.30|1C00|0|0|01|04000129|0|41E76C88|| +37|2023-10-06T20:24:51.8940000-07:00|40022550|Zeromus|0001AAE4|23984101||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:51.9820000-07:00|10FF0004|Buhojaqe Zijaqe|0001AAE5|56517|56517|6750|10000|30||100.95|103.43|0.00|-1.30|1C00|0|0|01|0E0004B4|0|41A80000|| +26|2023-10-06T20:24:51.9820000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +37|2023-10-06T20:24:51.9820000-07:00|10FF0002|Suchichi Suchi|0001AADF|63089|63089|10000|10000|16||100.21|101.26|0.00|3.14|1601|0|0|02|06000129|0|41E65C25|||||| +39|2023-10-06T20:24:52.0270000-07:00|10FF0001|Sesuga Sapisuga|67476|89453|3900|10000|||99.92|100.60|0.00|3.14| +23|2023-10-06T20:24:52.0720000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +21|2023-10-06T20:24:52.0720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23984101|40478540|10000|10000|||100.00|80.10|0.00|0.00|66582|89453|3700|10000|||99.92|100.60|0.00|3.14|0001AAEB|0|1| +31|2023-10-06T20:24:52.0720000-07:00|10FF0001||||| +261|2023-10-06T20:24:51.6410000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T20:24:51.6410000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:24:52.1170000-07:00|40022550|Zeromus|0001AAE6|23978277||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:52.1170000-07:00|10FF0008|Kokosaze Lulusaze|0001AADF|55377|55377|7250|10000|19||100.42|101.74|0.00|3.12|1B02|0|0|01|02000129|0|41E549B6|| +21|2023-10-06T20:24:52.1170000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|252C0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|23984101|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6750|10000|||100.98|104.95|0.00|-0.40|0001AAEC|0|1| +261|2023-10-06T20:24:51.6410000-07:00|Remove|4002286F| +39|2023-10-06T20:24:52.1610000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||99.99|100.28|0.00|3.14| +04|2023-10-06T20:24:51.6410000-07:00|4002286F|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|53095|0|10000|||102.93|107.12|0.00|-3.10| +261|2023-10-06T20:24:51.6410000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:24:52.2060000-07:00|10FF0003|Gegehi Gehi|51159|51159|9050|10000|||101.41|97.25|0.00|-3.00| +24|2023-10-06T20:24:52.2060000-07:00|40022550|Zeromus|DoT|0|1417|23978277|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:24:52.2060000-07:00|40022550|Zeromus|005A5A00|23973134|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:52.2060000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +37|2023-10-06T20:24:52.2510000-07:00|40022550|Zeromus|0001AAE8|23969755||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:52.2510000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|2.94| +22|2023-10-06T20:24:52.2510000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|33E10000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|0001AAED|0|8| +22|2023-10-06T20:24:52.2510000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|4|31210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|7250|10000|||100.25|101.51|-0.02|3.10|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|0001AAED|1|8| +22|2023-10-06T20:24:52.2510000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|4|33C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67476|89453|3900|10000|||100.01|100.66|0.00|1.76|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|0001AAED|2|8| +22|2023-10-06T20:24:52.2510000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|200004|504A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69538|89994|2400|10000|||100.11|100.98|-0.02|2.81|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|0001AAED|3|8| +22|2023-10-06T20:24:52.2510000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|33BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||98.93|97.96|0.00|-3.06|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|0001AAED|4|8| +22|2023-10-06T20:24:52.2510000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|32CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6350|10000|||101.37|105.47|0.00|-3.08|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|0001AAED|5|8| +22|2023-10-06T20:24:52.2510000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|200004|53350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||99.81|99.49|0.00|-3.09|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|0001AAED|6|8| +22|2023-10-06T20:24:52.2510000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|200004|54410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|8850|10000|||101.41|97.25|0.00|-3.00|56517|56517|5360|10000|||99.39|102.04|0.00|-3.09|0001AAED|7|8| +37|2023-10-06T20:24:52.3390000-07:00|40022550|Zeromus|0001AAEA|23969602||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:24:52.3390000-07:00|4088|3| +37|2023-10-06T20:24:52.3840000-07:00|40022550|Zeromus|0001AAE9|23952337||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:52.3840000-07:00|10FF0002|Suchichi Suchi|0001AAE9|63089|63089|10000|10000|16||99.63|98.70|0.00|-3.04|1600|0|0|01|0C000747|0|41F00000|| +37|2023-10-06T20:24:52.3840000-07:00|10FF0001|Sesuga Sapisuga|0001AADF|77872|89453|3900|10000|18||100.33|100.87|0.00|1.80|1304|0|0|01|05000129|0|41E326E4|| +39|2023-10-06T20:24:52.3840000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|6550|10000|||101.79|105.94|0.00|-3.08| +21|2023-10-06T20:24:52.3840000-07:00|10FF0007|Kehabiqo Febiqo|03|Sprint|10FF0007|Kehabiqo Febiqo|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69538|89994|2400|10000|||100.82|101.14|0.00|2.47|69538|89994|2400|10000|||100.82|101.14|0.00|2.47|0001AAEE|0|1| +38|2023-10-06T20:24:52.3840000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|16||99.63|98.70|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:52.4290000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|7510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23952337|40478540|10000|10000|||100.00|80.10|0.00|0.00|69538|89994|2400|10000|||101.65|101.32|0.00|1.45|0001AAEF|0|1| +21|2023-10-06T20:24:52.4290000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|42420000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|23952337|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|7250|10000|||99.22|100.26|0.00|3.03|0001AAF0|0|1| +38|2023-10-06T20:24:52.4290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6950|10000|19||99.22|100.26|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:52.4290000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:24:51.9860000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:24:51.9860000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:24:52.4730000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||98.04|96.47|0.00|-2.75| +21|2023-10-06T20:24:52.4730000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|BC40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23952337|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||98.04|96.47|0.00|-2.75|0001AAF1|0|1| +37|2023-10-06T20:24:52.5200000-07:00|10FF0007|Kehabiqo Febiqo|0001AAEE|69538|89994|2400|10000|18||102.43|101.49|0.00|1.45|1500|0|0|01|09000032|1E|41200000|| +26|2023-10-06T20:24:52.5200000-07:00|32|Sprint|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|1E|89994|89994| +37|2023-10-06T20:24:52.5200000-07:00|10FF0005|Wuwuchu Wuchu|0001AADF|63038|63038|10000|10000|25||98.04|96.47|0.00|-2.75|2705|0|0|01|08000129|0|41E21475|| +39|2023-10-06T20:24:52.5200000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5565|10000|||98.23|103.12|0.00|-1.32| +261|2023-10-06T20:24:51.9860000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:24:52.1040000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:24:52.6080000-07:00|40022550|Zeromus|0001AAEB|23951057||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:52.2050000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:52.6520000-07:00|10FF0007|Kehabiqo Febiqo|0001AADF|80067|89994|2400|10000|18||102.31|101.50|0.00|1.45|1506|0|0|01|05000129|0|41E0FFFA|| +21|2023-10-06T20:24:52.7420000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|714003|3F280000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|23951057|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||97.21|95.49|0.00|-2.53|0001AAF2|0|1| +38|2023-10-06T20:24:52.7420000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||97.21|95.49|0.00|-2.53|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:52.7420000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +37|2023-10-06T20:24:52.7860000-07:00|10FF0003|Gegehi Gehi|0001AADF|51159|51159|9050|10000|20||100.51|95.03|0.00|-2.78|2307|0|0|01|02000129|0|41DFED8B|| +20|2023-10-06T20:24:52.7860000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|4.860|100.51|95.03|0.00|-2.78| +37|2023-10-06T20:24:52.9650000-07:00|40022550|Zeromus|0001AAEF|23949184||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:52.9650000-07:00|10FF0006|Wowobora Gogobora|03|Sprint|10FF0006|Wowobora Gogobora|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|5565|10000|||98.65|104.89|0.00|-0.13|56517|56517|5565|10000|||98.65|104.89|0.00|-0.13|0001AAF3|0|1| +261|2023-10-06T20:24:52.5000000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:24:52.5000000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:24:53.0090000-07:00|10FF0006|Wowobora Gogobora|0001AAED|56517|56517|6265|10000|30||98.65|104.89|0.00|-0.13|2800|0|0|0| +37|2023-10-06T20:24:53.0090000-07:00|40022550|Zeromus|0001AAF1|23946172||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:53.0090000-07:00|10FF0005|Wuwuchu Wuchu|0001AAF1|63038|63038|10000|10000|25||96.50|94.50|0.00|3.03|2700|0|0|01|09000A1B|01|C1F00000|| +21|2023-10-06T20:24:53.0090000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23951057|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||97.14|93.05|-0.02|-2.69|0001AAF4|0|1| +261|2023-10-06T20:24:52.5000000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:24:53.0540000-07:00|40022550|Zeromus|0001AAF0|23929210||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:53.0540000-07:00|10FF0008|Kokosaze Lulusaze|0001AAF0|55377|55377|6950|10000|19||97.78|97.71|0.00|2.87|1B00|0|0|01|0F000B25|0|0|| +37|2023-10-06T20:24:53.0540000-07:00|40022550|Zeromus|0001AAEC|23919694||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:53.0540000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|7150|10000|||97.78|97.71|0.00|2.87| +21|2023-10-06T20:24:53.0540000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|18220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23946172|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6950|10000|||97.78|97.71|0.00|2.87|0001AAF5|0|1| +38|2023-10-06T20:24:53.0540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7150|10000|19||97.78|97.71|0.00|2.87|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.0540000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +30|2023-10-06T20:24:53.0540000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +23|2023-10-06T20:24:53.0980000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|Cancelled| +37|2023-10-06T20:24:53.0980000-07:00|10FF0006|Wowobora Gogobora|0001AAF3|56517|56517|6265|10000|30||98.91|105.52|0.00|0.45|2800|0|0|01|07000032|1E|41200000|| +26|2023-10-06T20:24:53.0980000-07:00|32|Sprint|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|1E|56517|56517| +261|2023-10-06T20:24:52.6190000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:24:52.7310000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:24:53.2770000-07:00|10FF0001|Sesuga Sapisuga|0001AAED|89453||||||105.23|104.01|0.00|1.76| +37|2023-10-06T20:24:53.2770000-07:00|40022550|Zeromus|0001AAF2|23903526||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:53.2770000-07:00|10FF0005|Wuwuchu Wuchu|0001AAF2|63038|63038|10000|10000|25||95.65|92.91|0.00|-2.97|2700|0|0|01|09000A1B|01|41F00000|| +38|2023-10-06T20:24:53.2770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||95.65|92.91|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.2770000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +261|2023-10-06T20:24:52.8470000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:24:53.4100000-07:00|10FF0007|Kehabiqo Febiqo|0001AAED|89994||||||106.12|100.23|0.00|1.31| +21|2023-10-06T20:24:53.4100000-07:00|10FF0001|Sesuga Sapisuga|03|Sprint|10FF0001|Sesuga Sapisuga|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|3900|10000|||105.78|104.38|0.00|1.76|89453|89453|3900|10000|||105.78|104.38|0.00|1.76|0001AAF6|0|1| +21|2023-10-06T20:24:53.4990000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15560000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|2400|10000|||106.69|99.82|0.00|1.27|54201|54201|10000|10000|||99.81|96.03|0.00|2.67|0001AAF7|0|1| +261|2023-10-06T20:24:53.0780000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:53.5450000-07:00|40022550|Zeromus|0001AAF4|23900756||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:53.5450000-07:00|10FF0001|Sesuga Sapisuga|0001AAF6|89453|89453|3900|10000|18||106.36|104.78|0.00|1.76|1300|0|0|01|09000032|1E|41200000|| +26|2023-10-06T20:24:53.5450000-07:00|32|Sprint|10.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|89453|89453| +261|2023-10-06T20:24:53.1730000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:24:53.6330000-07:00|10FF0002|Suchichi Suchi|HoT|0|CB4|63089|63089|10000|10000|||93.60|88.71|-0.02|-2.43|10FF0002|Suchichi Suchi|0|63089|63089|10000|10000|||93.60|88.71|-0.02|-2.43| +38|2023-10-06T20:24:53.6330000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|16||93.60|88.71|-0.02|-2.43|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.6330000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +24|2023-10-06T20:24:53.6790000-07:00|10FF0003|Gegehi Gehi|HoT|0|D66|51159|51159|9050|10000|||98.70|92.22|0.00|-2.70|E0000000||0||||||||||| +21|2023-10-06T20:24:53.6790000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B710003|3D6D0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|23900756|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||94.81|91.01|0.00|-2.73|0001AAF8|0|1| +38|2023-10-06T20:24:53.6790000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9050|10000|20||98.70|92.22|0.00|-2.70|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.6790000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +38|2023-10-06T20:24:53.6790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||94.81|91.01|0.00|-2.73|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:53.6790000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:24:53.6790000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +26|2023-10-06T20:24:53.6790000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:24:53.2660000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:24:53.2660000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:24:53.8120000-07:00|40022550|Zeromus|0001AAF5|23894578||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:53.3650000-07:00|Change|10FF0004||||||||| +24|2023-10-06T20:24:53.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|14F7|89453|89453|3900|10000|||108.39|106.16|0.00|1.76|E0000000||0||||||||||| +24|2023-10-06T20:24:53.8570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CE2|55377|55377|7150|10000|||95.53|94.17|0.00|-2.94|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6550|10000|||110.24|109.85|0.00|1.14| +24|2023-10-06T20:24:53.8570000-07:00|10FF0003|Gegehi Gehi|HoT|798|D70|51159|51159|9050|10000|||97.71|91.03|0.00|-2.56|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6550|10000|||110.24|109.85|0.00|1.14| +24|2023-10-06T20:24:53.8570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|15AE|89994|89994|2400|10000|||107.92|98.98|0.00|1.15|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6550|10000|||110.24|109.85|0.00|1.14| +24|2023-10-06T20:24:53.8570000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|CF4|63038|63038|10000|10000|||94.38|90.14|0.00|2.66|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6550|10000|||110.24|109.85|0.00|1.14| +24|2023-10-06T20:24:53.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CD7|89453|89453|3900|10000|||108.39|106.16|0.00|1.76|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6550|10000|||110.24|109.85|0.00|1.14| +24|2023-10-06T20:24:53.8570000-07:00|10FF0002|Suchichi Suchi|HoT|798|CE1|63089|63089|10000|10000|||92.35|87.45|0.00|-2.39|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6550|10000|||110.24|109.85|0.00|1.14| +24|2023-10-06T20:24:53.8570000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D75|56517|56517|6265|10000|||102.38|109.99|-0.02|0.71|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6550|10000|||110.24|109.85|0.00|1.14| +24|2023-10-06T20:24:53.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1436|56517|56517|6550|10000|||110.24|109.85|0.00|1.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6550|10000|||110.24|109.85|0.00|1.14| +38|2023-10-06T20:24:53.8570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|2400|10000|18||107.92|98.98|0.00|1.15|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:53.8570000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|16||92.35|87.45|0.00|-2.39|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:53.8570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7150|10000|19||95.53|94.17|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:53.8570000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6265|10000|30||102.38|109.99|-0.02|0.71|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.8570000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:53.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:53.8570000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0006|Wowobora Gogobora|00|56517|| +38|2023-10-06T20:24:53.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|3900|10000|18||108.39|106.16|0.00|1.76|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.8570000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:24:53.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:53.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7100|10000|30||110.24|109.85|0.00|1.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.8570000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:24:53.8570000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9050|10000|20||97.71|91.03|0.00|-2.56|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:53.8570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||94.38|90.14|0.00|2.66|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +27|2023-10-06T20:24:53.9460000-07:00|10FF0002|Suchichi Suchi|0000|0000|010B|0000|0000|0000| +27|2023-10-06T20:24:53.9460000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|010B|0000|0000|0000| +27|2023-10-06T20:24:53.9460000-07:00|10FF0006|Wowobora Gogobora|0000|0000|010B|0000|0000|0000| +27|2023-10-06T20:24:53.9460000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|010B|0000|0000|0000| +27|2023-10-06T20:24:53.9460000-07:00|10FF0003|Gegehi Gehi|0000|0000|010B|0000|0000|0000| +24|2023-10-06T20:24:53.9460000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D1A|63038|63038|10000|10000|||94.43|90.22|0.00|2.66|E0000000||0||||||||||| +27|2023-10-06T20:24:53.9460000-07:00|10FF0005|Wuwuchu Wuchu|0000|0000|010B|0000|0000|0000| +21|2023-10-06T20:24:53.9460000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|21B50000|A3E|340000|A0F|A758000|11B|2D8000|0|0|0|0|0|0|0|0|23894578|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|2400|10000|||108.14|98.85|0.00|1.11|0001AAF9|0|1| +38|2023-10-06T20:24:53.9460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|2400|10000|18||108.14|98.85|0.00|1.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:53.9460000-07:00|A75|Surging Tempest|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:24:53.9460000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||94.43|90.22|0.00|2.66|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:53.9900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C69|56517|56517|6265|10000|||103.36|109.92|0.00|0.94|E0000000||0||||||||||| +38|2023-10-06T20:24:53.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6265|10000|30||103.36|109.92|0.00|0.94|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:53.5520000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:24:53.6660000-07:00|Change|400228C6||||||||| +261|2023-10-06T20:24:53.6660000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:24:54.1690000-07:00|40022550|Zeromus|0001AAF8|23878853||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:54.1690000-07:00|10FF0005|Wuwuchu Wuchu|0001AAF8|63038|63038|10000|10000|25||94.40|90.14|0.00|2.69|2700|0|0|01|09000A1C|0|42700000|| +38|2023-10-06T20:24:54.1690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7150|10000|19||94.96|92.26|0.00|-2.90|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:54.1690000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +38|2023-10-06T20:24:54.1690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7100|10000|30||111.91|110.85|0.00|1.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:54.1690000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:24:54.1690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|25||94.40|90.14|0.00|2.69|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:53.7830000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:24:53.7830000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:24:54.2590000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|2600|10000|||110.20|100.56|0.00|1.76| +21|2023-10-06T20:24:54.2590000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|30A20000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|23878853|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||89.80|85.20|0.00|-2.31|0001AAFA|0|1| +38|2023-10-06T20:24:54.2590000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|10000|10000|16||89.80|85.20|0.00|-2.31|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:54.2590000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:24:54.3030000-07:00|10FF0007|Kehabiqo Febiqo|0001AAF7|89994|89994|2600|10000|18||110.20|100.56|0.00|1.76|1500|0|0|01|0B000A75|0|C1F00000|| +261|2023-10-06T20:24:53.8960000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:24:54.4800000-07:00|400228C6|Carbuncle|53095|53095|10000|10000|||94.96|96.97|0.00|-2.69| +261|2023-10-06T20:24:54.0170000-07:00|Change|10FF0003||||||||| +24|2023-10-06T20:24:54.5260000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|229D|89994|89994|2600|10000|||111.37|101.98|0.00|1.20|E0000000||0||||||||||| +24|2023-10-06T20:24:54.5260000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D84|55377|55377|7150|10000|||94.45|90.43|0.00|-2.89|10FF0008|Kokosaze Lulusaze|0|55377|55377|7150|10000|||94.45|90.43|0.00|-2.89| +38|2023-10-06T20:24:54.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|2600|10000|18||111.37|101.98|0.00|1.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:54.5260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7700|10000|19||94.45|90.43|0.00|-2.89|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:54.0170000-07:00|Change|10FF0005||||||||| +20|2023-10-06T20:24:54.8360000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|110.59|110.26|-0.02|1.52| +38|2023-10-06T20:24:54.8360000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6265|10000|30||110.59|110.26|-0.02|1.52|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:54.8360000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0006|Wowobora Gogobora|00|56517|| +38|2023-10-06T20:24:54.8360000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9050|10000|20||93.53|86.31|0.00|-2.42|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:54.8360000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +37|2023-10-06T20:24:54.8810000-07:00|40022550|Zeromus|0001AAFA|23866403||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:54.8810000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|23878853|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|7700|10000|||93.97|88.40|0.00|-2.90|0001AAFB|0|1| +261|2023-10-06T20:24:54.3310000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T20:24:54.8810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7700|10000|19||93.97|88.40|0.00|-2.90|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:54.8810000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:24:54.3310000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T20:24:54.3310000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:24:54.9250000-07:00|400228D5||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:24:54.9250000-07:00|400228D5||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +03|2023-10-06T20:24:54.4390000-07:00|400228D5|Emerald Garuda|00|5A|10FF0008|00||10263|13506|53095|53095|10000|10000|||93.42|88.98|0.00|2.34| +261|2023-10-06T20:24:54.4390000-07:00|Add|400228D5||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:54.9690000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23866403|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|7700|10000|||93.80|87.69|0.00|2.34|0001AAFC|0|1| +261|2023-10-06T20:24:54.5300000-07:00|Change|400228C6||||||||||| +39|2023-10-06T20:24:55.0140000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|4100|10000|||112.89|108.63|0.00|2.09| +261|2023-10-06T20:24:54.5300000-07:00|Change|400228D5||||| +39|2023-10-06T20:24:55.1480000-07:00|10FF0002|Suchichi Suchi|63089|63089|10000|10000|||86.23|83.04|0.00|-2.83| +39|2023-10-06T20:24:55.1940000-07:00|10FF0003|Gegehi Gehi|51159|51159|9250|10000|||92.39|84.98|0.00|-2.45| +24|2023-10-06T20:24:55.1940000-07:00|40022550|Zeromus|DoT|0|22BC|23866403|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:24:55.1940000-07:00|40022550|Zeromus|005A5A00|23857511|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:55.1940000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +261|2023-10-06T20:24:54.7660000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:24:55.2370000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|2.37| +261|2023-10-06T20:24:54.7660000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:24:55.2820000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23857511|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|9250|10000|||92.12|84.67|-0.01|-2.46|0001AAFD|0|1| +21|2023-10-06T20:24:55.3280000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|3F430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23857511|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|9250|10000|||92.12|84.67|-0.01|-2.46|0001AAFE|0|1| +36|2023-10-06T20:24:55.3280000-07:00|4164|3| +39|2023-10-06T20:24:55.3710000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7300|10000|||112.50|111.01|0.00|1.38| +261|2023-10-06T20:24:54.8810000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:24:55.4610000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|10000|10000|||89.48|85.37|0.00|2.39| +37|2023-10-06T20:24:55.5060000-07:00|40022550|Zeromus|0001AAFC|23857326||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:55.5060000-07:00|10FF0006|Wowobora Gogobora|56517|56517|6470|10000|||111.65|110.46|0.00|-2.78| +261|2023-10-06T20:24:55.1160000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:24:55.1160000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:24:55.5950000-07:00|40022550|Zeromus|0001AAF9|23848697||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:55.5950000-07:00|10FF0007|Kehabiqo Febiqo|0001AAF9|89994|89994|2600|10000|18||115.17|107.47|0.00|1.62|1500|0|0|01|0B000A75|0|41F00000|| +38|2023-10-06T20:24:55.5950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|2600|10000|18||115.17|107.47|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:55.6840000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|B460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23848697|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||88.81|84.68|0.00|2.39|0001AAFF|0|1| +21|2023-10-06T20:24:55.7730000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|34AA0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|23848697|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6470|10000|||111.65|110.46|0.00|-2.78|0001AB00|0|1| +37|2023-10-06T20:24:55.8170000-07:00|40022550|Zeromus|0001AAFD|23848672||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:55.8170000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BB70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23848697|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|10000|10000|||82.81|81.64|-0.02|-2.23|0001AB01|0|1| +38|2023-10-06T20:24:55.8630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7300|10000|30||112.50|111.01|0.00|1.38|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:55.8630000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +261|2023-10-06T20:24:55.3930000-07:00|Change|4002256C||||||||| +37|2023-10-06T20:24:55.9060000-07:00|10FF0008|Kokosaze Lulusaze|0001AAFB|55377|55377|7700|10000|19||92.36|85.19|0.00|-2.31|1B00|0|0|01|09000AA5|0|0|| +38|2023-10-06T20:24:55.9060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7700|10000|19||92.36|85.19|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:55.3930000-07:00|Change|10FF0004||||| +22|2023-10-06T20:24:55.9510000-07:00|4002256C|Zeromus|8B55|the Dark Binds|10FF0002|Suchichi Suchi|750603|17340000|100140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||82.79|81.48|0.00|0.49|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB02|0|2| +22|2023-10-06T20:24:55.9510000-07:00|4002256C|Zeromus|8B55|the Dark Binds|10FF0005|Wuwuchu Wuchu|750603|6A0000|100140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||89.84|85.62|-0.02|2.31|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB02|1|2| +261|2023-10-06T20:24:55.4870000-07:00|Change|400228D5||| +39|2023-10-06T20:24:56.0410000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|7900|10000|||92.36|85.19|0.00|-2.31| +261|2023-10-06T20:24:55.5820000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:24:56.1310000-07:00|10FF0002|Suchichi Suchi|0001AB02|57149|63089|10000|10000|0||82.72|81.21|0.00|-0.31|1600|0|0|02|050006FD|01|42700000|||||| +26|2023-10-06T20:24:56.1310000-07:00|6FD|Vulnerability Up|60.00|4002256C|Zeromus|10FF0002|Suchichi Suchi|01|63089|44| +21|2023-10-06T20:24:56.1310000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|26020000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|23848672|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|10000|10000|||90.39|85.91|0.00|2.21|0001AB03|0|1| +38|2023-10-06T20:24:56.1310000-07:00|10FF0002|Suchichi Suchi|005A5A16|57149|63089|10000|10000|0||82.72|81.21|0.00|-0.31|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:56.1310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:24:56.1310000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +37|2023-10-06T20:24:56.1740000-07:00|10FF0005|Wuwuchu Wuchu|0001AB02|62932|63038|10000|10000|0||90.39|85.91|0.00|2.21|2701|0|0|02|060006FD|01|42700000|||||| +26|2023-10-06T20:24:56.1740000-07:00|6FD|Vulnerability Up|60.00|4002256C|Zeromus|10FF0005|Wuwuchu Wuchu|01|63038|44| +38|2023-10-06T20:24:56.1740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62932|63038|10000|10000|0||90.39|85.91|0.00|2.21|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:56.1740000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +30|2023-10-06T20:24:56.1740000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:24:56.2180000-07:00|40022550|Zeromus|0001AAFF|23845786||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:24:56.3520000-07:00|40022550|Zeromus|0001AB01|23842787||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:55.9240000-07:00|Change|10FF0006||||||||||||||| +24|2023-10-06T20:24:56.4420000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1511|89453|89453|4100|10000|||112.89|108.63|0.00|2.09|10FF0006|Wowobora Gogobora|0|56517|56517|6070|10000|||111.65|110.46|0.00|-2.78| +37|2023-10-06T20:24:56.4420000-07:00|40022550|Zeromus|0001AB00|23829305||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:24:56.4420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4100|10000|18||112.89|108.63|0.00|2.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:56.4420000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:24:56.4870000-07:00|40022550|Zeromus|0001AAFE|23813110||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:56.1450000-07:00|Change|10FF0006||||| +37|2023-10-06T20:24:56.6190000-07:00|40022550|Zeromus|0001AB03|23803380||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:24:56.6660000-07:00|10FF0002|Suchichi Suchi|HoT|0|D6F|57149|63089|10000|10000|||82.61|80.93|0.00|-2.20|10FF0006|Wowobora Gogobora|0|56517|56517|6070|10000|||111.65|110.46|0.00|-2.78| +38|2023-10-06T20:24:56.6660000-07:00|10FF0002|Suchichi Suchi|005A5A16|60588|63089|10000|10000|0||82.61|80.93|0.00|-2.20|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:56.7080000-07:00|10FF0003|Gegehi Gehi|HoT|0|D73|51159|51159|9250|10000|||91.97|84.49|0.00|2.07|E0000000||0||||||||||| +38|2023-10-06T20:24:56.7080000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9250|10000|20||91.97|84.49|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:24:56.7520000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35724003|2D630000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|23803380|40478540|10000|10000|||100.00|80.10|0.00|0.00|57149|63089|10000|10000|||82.61|80.93|0.00|-2.20|0001AB04|0|1| +21|2023-10-06T20:24:56.8410000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|14F30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|60588|63089|10000|10000|||82.60|80.89|0.00|1.62|54201|54201|10000|10000|||99.81|96.03|0.00|-3.11|0001AB05|0|1| +24|2023-10-06T20:24:56.8880000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D0A|89453|89453|4100|10000|||112.89|108.63|0.00|2.09|E0000000||0||||||||||| +24|2023-10-06T20:24:56.8880000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D22|62932|63038|10000|10000|||91.03|86.25|0.00|1.95|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7300|10000|||112.50|111.01|0.00|1.38| +24|2023-10-06T20:24:56.8880000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CFE|55377|55377|7900|10000|||92.36|85.19|0.00|-2.31|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7300|10000|||112.50|111.01|0.00|1.38| +24|2023-10-06T20:24:56.8880000-07:00|10FF0003|Gegehi Gehi|HoT|798|14C4|51159|51159|9250|10000|||91.97|84.49|0.00|2.07|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7300|10000|||112.50|111.01|0.00|1.38| +24|2023-10-06T20:24:56.8880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D09|56517|56517|7300|10000|||112.50|111.01|0.00|1.38|10FF0004|Buhojaqe Zijaqe|0|56517|56517|7300|10000|||112.50|111.01|0.00|1.38| +21|2023-10-06T20:24:56.8880000-07:00|40022550|Zeromus|8B46|Visceral Whirl|40022550|Zeromus|1B|8B468000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23803380|40478540|10000|10000|||100.00|80.10|0.00|0.00|23803380|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AB06|0|1| +38|2023-10-06T20:24:56.8880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7900|10000|19||92.36|85.19|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:56.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:56.8880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4100|10000|18||112.89|108.63|0.00|2.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:56.8880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7850|10000|30||112.50|111.01|0.00|1.38|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:56.8880000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9250|10000|20||91.97|84.49|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:56.8880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:24:56.8880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|0||91.03|86.25|0.00|1.95|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:56.8880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +261|2023-10-06T20:24:56.3430000-07:00|Change|40022550||||| +261|2023-10-06T20:24:56.4450000-07:00|Change|10FF0004||| +261|2023-10-06T20:24:56.4450000-07:00|Change|400228C6||||||||| +21|2023-10-06T20:24:56.9760000-07:00|400228D5|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|356003|BD540000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|23803380|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||93.42|88.98|0.00|2.34|0001AB07|0|1| +24|2023-10-06T20:24:56.9760000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|15BE|63038|63038|10000|10000|||91.07|86.27|-0.02|1.94|E0000000||0||||||||||| +38|2023-10-06T20:24:56.9760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|0||91.07|86.27|-0.02|1.94|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:57.0210000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D0B|56517|56517|6070|10000|||111.65|110.46|0.00|-2.78|E0000000||0||||||||||| +21|2023-10-06T20:24:57.0210000-07:00|10FF0007|Kehabiqo Febiqo|2E|Tomahawk|40022550|Zeromus|712003|139D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23803380|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|2600|10000|||115.16|107.77|0.00|2.09|0001AB08|0|1| +38|2023-10-06T20:24:57.0210000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6070|10000|30||111.65|110.46|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:57.0210000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:57.1090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7900|10000|19||92.36|85.19|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:57.1090000-07:00|A90|Rekindle|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|4B|55377|55377| +26|2023-10-06T20:24:57.1090000-07:00|A91|Undying Flame|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +39|2023-10-06T20:24:57.2430000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|2800|10000|||115.16|107.77|0.00|-2.64| +261|2023-10-06T20:24:57.0020000-07:00|Change|10FF0007||||||||||| +21|2023-10-06T20:24:57.4650000-07:00|10FF0002|Suchichi Suchi|8B4F|Acceleration Bomb|10FF0002|Suchichi Suchi|3|B8D40000|200140E|6FD0000|0|0|0|0|0|0|0|0|0|0|0|0|60588|63089|10000|10000|||82.33|81.09|-0.01|0.71|60588|63089|10000|10000|||82.33|81.09|-0.01|0.71|0001AB09|0|1| +21|2023-10-06T20:24:57.4660000-07:00|10FF0005|Wuwuchu Wuchu|8B4F|Acceleration Bomb|10FF0005|Wuwuchu Wuchu|3|B8AE0000|200140E|6FD0000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||91.56|86.13|0.00|1.81|63038|63038|10000|10000|||91.56|86.13|0.00|1.81|0001AB0A|0|1| +38|2023-10-06T20:24:57.4660000-07:00|10FF0002|Suchichi Suchi|005A5A16|60588|63089|10000|10000|0||82.33|81.09|-0.01|0.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:57.4660000-07:00|6FD|Vulnerability Up|0.00|4002256C|Zeromus|10FF0002|Suchichi Suchi|01|63089|44| +26|2023-10-06T20:24:57.4660000-07:00|6FD|Vulnerability Up|60.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|02|63089|63089| +30|2023-10-06T20:24:57.4660000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +38|2023-10-06T20:24:57.4660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7900|10000|19||92.36|85.19|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:57.4660000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +38|2023-10-06T20:24:57.4660000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6070|10000|30||111.65|110.46|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:57.4660000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0006|Wowobora Gogobora|00|56517|| +38|2023-10-06T20:24:57.4660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7850|10000|30||112.50|111.01|0.00|1.38|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:57.4660000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:24:57.4660000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9250|10000|20||91.97|84.49|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:57.4660000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +38|2023-10-06T20:24:57.4660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|10000|10000|0||91.56|86.13|0.00|1.81|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:57.4660000-07:00|6FD|Vulnerability Up|0.00|4002256C|Zeromus|10FF0005|Wuwuchu Wuchu|01|63038|44| +26|2023-10-06T20:24:57.4660000-07:00|6FD|Vulnerability Up|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|63038|63038| +30|2023-10-06T20:24:57.4660000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +24|2023-10-06T20:24:57.5540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1B86|89994|89994|2800|10000|||115.16|107.77|0.00|-2.64|E0000000||0||||||||||| +24|2023-10-06T20:24:57.5540000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2750|55377|55377|7900|10000|||92.36|85.19|0.00|-2.31|10FF0008|Kokosaze Lulusaze|0|55377|55377|7900|10000|||92.36|85.19|0.00|-2.31| +38|2023-10-06T20:24:57.5540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|2800|10000|18||115.16|107.77|0.00|-2.64|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:57.5540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8450|10000|19||92.36|85.19|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:24:57.1220000-07:00|Change|10FF0008||| +37|2023-10-06T20:24:57.6430000-07:00|10FF0002|Suchichi Suchi|0001AB05|63089||||||82.32|81.10|0.00|0.68| +21|2023-10-06T20:24:57.6890000-07:00|4002256D|Zeromus|8B47|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|0001AB0B|0|0| +21|2023-10-06T20:24:57.6890000-07:00|4002256E|Zeromus|8B48|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|0001AB0C|0|0| +37|2023-10-06T20:24:57.7330000-07:00|40022550|Zeromus|0001AB08|23798359||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:57.3060000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:24:57.3060000-07:00|Change|4002256E||||||||||||| +37|2023-10-06T20:24:57.7770000-07:00|40022550|Zeromus|0001AB04|23786740||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:57.4950000-07:00|Change|40022569||||||||| +261|2023-10-06T20:24:57.4950000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:24:57.4950000-07:00|Change|40022568||||||||| +261|2023-10-06T20:24:57.4950000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:24:57.4950000-07:00|Change|40022567||||||||| +261|2023-10-06T20:24:57.4950000-07:00|Change|40022566||||||||| +261|2023-10-06T20:24:57.5920000-07:00|Change|10FF0005||||||||| +20|2023-10-06T20:24:58.0000000-07:00|40022566|Zeromus|8B49|Miasmic Blast|40022566|Zeromus|7.700|86.00|100.00|0.00|0.79| +20|2023-10-06T20:24:58.0000000-07:00|40022567|Zeromus|8CF8|unknown_8cf8|40022567|Zeromus|7.700|86.00|100.00|0.00|0.79| +20|2023-10-06T20:24:58.0000000-07:00|40022568|Zeromus|8B49|Miasmic Blast|40022568|Zeromus|7.700|107.00|93.00|0.00|0.79| +20|2023-10-06T20:24:58.0000000-07:00|40022569|Zeromus|8CF8|unknown_8cf8|40022569|Zeromus|7.700|107.00|93.00|0.00|0.79| +20|2023-10-06T20:24:58.0000000-07:00|4002256A|Zeromus|8B49|Miasmic Blast|4002256A|Zeromus|7.700|93.00|93.00|0.00|0.79| +20|2023-10-06T20:24:58.0000000-07:00|4002256B|Zeromus|8CF8|unknown_8cf8|4002256B|Zeromus|7.700|93.00|93.00|0.00|0.79| +22|2023-10-06T20:24:58.0000000-07:00|4002256C|Zeromus|8B55|the Dark Binds|10FF0002|Suchichi Suchi|750003|5D110000|300140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|63089|63089|10000|10000|||82.32|81.10|0.00|0.68|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB0D|0|2| +22|2023-10-06T20:24:58.0000000-07:00|4002256C|Zeromus|8B55|the Dark Binds|10FF0005|Wuwuchu Wuchu|750003|58DB0000|300140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|63038|63038|10000|10000|||93.92|86.96|0.00|1.14|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB0D|1|2| +39|2023-10-06T20:24:58.0000000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|4300|10000|||112.89|108.63|0.00|2.09| +37|2023-10-06T20:24:58.0890000-07:00|10FF0002|Suchichi Suchi|0001AB09|15773|63089|10000|10000|0||82.32|81.10|0.00|0.68|1600|0|0|01|050006FD|03|426FA4DE|| +30|2023-10-06T20:24:58.0890000-07:00|6FD|Vulnerability Up|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|02|63089|63089| +26|2023-10-06T20:24:58.0890000-07:00|6FD|Vulnerability Up|59.91|4002256C|Zeromus|10FF0002|Suchichi Suchi|03|63089|44| +37|2023-10-06T20:24:58.0890000-07:00|10FF0005|Wuwuchu Wuchu|0001AB0A|15760|63038|10000|10000|0||93.92|86.96|0.00|1.14|2700|0|0|01|060006FD|03|426FA4DE|| +30|2023-10-06T20:24:58.0890000-07:00|6FD|Vulnerability Up|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|63038|63038| +26|2023-10-06T20:24:58.0890000-07:00|6FD|Vulnerability Up|59.91|4002256C|Zeromus|10FF0005|Wuwuchu Wuchu|03|63038|44| +39|2023-10-06T20:24:58.1340000-07:00|10FF0002|Suchichi Suchi|16403|63089|10000|10000|||82.32|81.10|0.00|0.68| +261|2023-10-06T20:24:57.6930000-07:00|Change|10FF0001||| +261|2023-10-06T20:24:57.6930000-07:00|Change|10FF0008||||| +37|2023-10-06T20:24:58.1790000-07:00|10FF0002|Suchichi Suchi|0001AB0D|0|63089|0|10000|0||82.32|81.10|0.00|0.68|1600|0|0|04|0|0|0|||||||||||||| +39|2023-10-06T20:24:58.1790000-07:00|10FF0003|Gegehi Gehi|51159|51159|9450|10000|||92.35|83.84|0.00|2.57| +24|2023-10-06T20:24:58.1790000-07:00|40022550|Zeromus|DoT|0|2177|23786740|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +261|2023-10-06T20:24:57.8190000-07:00|Change|10FF0002||||||||||| +38|2023-10-06T20:24:58.1790000-07:00|10FF0002|Suchichi Suchi|005A5A16|0|63089|0|10000|0||82.32|81.10|0.00|0.68|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:58.1790000-07:00|32|Sprint|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|1E|63089|63089| +30|2023-10-06T20:24:58.1790000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +30|2023-10-06T20:24:58.1790000-07:00|AA0|Power Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:24:58.1790000-07:00|6FD|Vulnerability Up|0.00|4002256C|Zeromus|10FF0002|Suchichi Suchi|03|63089|44| +30|2023-10-06T20:24:58.1790000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +30|2023-10-06T20:24:58.1790000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +30|2023-10-06T20:24:58.1790000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:24:58.1790000-07:00|40022550|Zeromus|005A5A00|23778173|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:24:58.1790000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +37|2023-10-06T20:24:58.2240000-07:00|10FF0005|Wuwuchu Wuchu|0001AB0D|0|63038|0|10000|0||94.35|87.49|0.00|1.04|2701|0|0|04|02000000|0|0|||||||||||||| +39|2023-10-06T20:24:58.2240000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|-2.55| +38|2023-10-06T20:24:58.2240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|0|63038|0|10000|0||94.35|87.49|0.00|1.04|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:58.2240000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +30|2023-10-06T20:24:58.2240000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +30|2023-10-06T20:24:58.2240000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +30|2023-10-06T20:24:58.2240000-07:00|6FD|Vulnerability Up|0.00|4002256C|Zeromus|10FF0005|Wuwuchu Wuchu|03|63038|44| +30|2023-10-06T20:24:58.2240000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +30|2023-10-06T20:24:58.2240000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:24:58.2240000-07:00|B1D|Enhanced Harpe|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:24:58.2680000-07:00|40022550|Zeromus|0001AB07|23729705||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:57.8190000-07:00|Change|10FF0003||||||||||| +36|2023-10-06T20:24:58.3130000-07:00|4240|3| +261|2023-10-06T20:24:57.8190000-07:00|Change|10FF0002||| +39|2023-10-06T20:24:58.3560000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|8050|10000|||112.50|111.01|0.00|1.38| +261|2023-10-06T20:24:57.9350000-07:00|Change|10FF0004||| +261|2023-10-06T20:24:57.9350000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:24:57.9350000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:24:57.9350000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:24:57.9350000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:24:57.9350000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:24:57.9350000-07:00|Change|4002256A||||||||||||| +39|2023-10-06T20:24:58.4910000-07:00|10FF0006|Wowobora Gogobora|56517|56517|6275|10000|||111.65|110.46|0.00|-2.78| +21|2023-10-06T20:24:58.4910000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23729705|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8450|10000|||92.36|85.19|0.00|-2.31|0001AB0E|0|1| +261|2023-10-06T20:24:58.0480000-07:00|Change|10FF0006||| +21|2023-10-06T20:24:58.5360000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2E580000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|23729705|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8450|10000|||92.36|85.19|0.00|-2.31|0001AB0F|0|1| +261|2023-10-06T20:24:58.0480000-07:00|Remove|400228C6| +04|2023-10-06T20:24:58.0480000-07:00|400228C6|Carbuncle|00|5A|10FF0008|00||10261|13498|0|53095|0|10000|||93.37|91.72|0.00|-2.88| +261|2023-10-06T20:24:58.0480000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:24:58.0480000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:24:58.7580000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|726003|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23729705|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|9450|10000|||92.39|83.76|0.00|2.61|0001AB10|0|1| +261|2023-10-06T20:24:58.2390000-07:00|Change|10FF0005||||||||||||| +21|2023-10-06T20:24:58.8470000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|2800|10000|||109.05|104.12|0.00|-2.47|23729705|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AB11|0|1| +38|2023-10-06T20:24:58.8920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|2800|10000|18||109.05|104.12|0.00|-2.47|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:58.8920000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:58.8920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6275|10000|30||111.65|110.46|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:24:58.8920000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:24:58.8920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4300|10000|18||112.91|108.56|0.00|-2.63|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:58.8920000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:24:58.8920000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:24:59.0270000-07:00|40022550|Zeromus|0001AB0E|23729554||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:24:59.0270000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8350|10000|||92.36|85.19|0.00|2.16| +261|2023-10-06T20:24:58.6460000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:24:59.1590000-07:00|40022550|Zeromus|0001AB0F|23717690||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:24:58.6460000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:24:59.2920000-07:00|40022550|Zeromus|0001AB10|23717640||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:24:59.5140000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|FBB0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|23717640|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|2800|10000|||105.28|101.01|-0.02|-2.44|0001AB12|0|1| +261|2023-10-06T20:24:59.1120000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:24:59.6030000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6275|10000|30||110.10|110.12|0.00|-2.32|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:59.6030000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:24:59.6030000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:24:59.6030000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6275|10000|||110.10|110.12|0.00|-2.32|56517|56517|6275|10000|||110.10|110.12|0.00|-2.32|0001AB13|0|1| +261|2023-10-06T20:24:59.1120000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:24:59.6480000-07:00|10FF0007|Kehabiqo Febiqo|0001AB11|89994|89994|2800|10000|3||105.16|100.78|0.00|-2.91|1500|0|0|0| +20|2023-10-06T20:24:59.6480000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|92.05|85.79|-0.02|0.89| +261|2023-10-06T20:24:59.1120000-07:00|Change|10FF0003||||||||||||||||||||| +24|2023-10-06T20:24:59.6920000-07:00|10FF0003|Gegehi Gehi|HoT|0|C92|51159|51159|9450|10000|||92.24|86.09|0.00|0.72|E0000000||0||||||||||| +38|2023-10-06T20:24:59.6920000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9450|10000|20||92.24|86.09|0.00|0.72|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T20:24:59.8710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D44|89453|89453|4300|10000|||111.23|102.19|0.00|-2.61|E0000000||0||||||||||| +24|2023-10-06T20:24:59.8710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D70|89994|89994|2800|10000|||104.91|100.32|0.00|-2.91|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8050|10000|||112.34|111.07|0.00|-2.30| +24|2023-10-06T20:24:59.8710000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CDB|55377|55377|8350|10000|||94.18|87.64|0.00|0.68|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8050|10000|||112.34|111.07|0.00|-2.30| +24|2023-10-06T20:24:59.8710000-07:00|10FF0003|Gegehi Gehi|HoT|798|D0A|51159|51159|9450|10000|||92.38|86.30|0.00|1.14|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8050|10000|||112.34|111.07|0.00|-2.30| +24|2023-10-06T20:24:59.8710000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D7C|89453|89453|4300|10000|||111.23|102.19|0.00|-2.61|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8050|10000|||112.34|111.07|0.00|-2.30| +24|2023-10-06T20:24:59.8710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D13|56517|56517|8050|10000|||112.34|111.07|0.00|-2.30|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8050|10000|||112.34|111.07|0.00|-2.30| +38|2023-10-06T20:24:59.8710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|2800|10000|3||104.91|100.32|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:59.8710000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:24:59.8710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8350|10000|19||94.18|87.64|0.00|0.68|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:59.8710000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:24:59.8710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4300|10000|18||111.23|102.19|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:59.8710000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:24:59.8710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8600|10000|30||112.34|111.07|0.00|-2.30|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:24:59.8710000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9450|10000|20||92.38|86.30|0.00|1.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:24:59.8710000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +261|2023-10-06T20:24:59.3890000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:24:59.9150000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|8440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23717640|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|2800|10000|||104.84|100.22|0.00|-2.91|0001AB14|0|1| +24|2023-10-06T20:25:00.0060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D5D|56517|56517|6275|10000|||109.14|109.87|0.00|-1.87|E0000000||0||||||||||| +21|2023-10-06T20:25:00.0060000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|24890000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|23717640|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8350|10000|||93.91|89.02|0.00|0.29|0001AB15|0|1| +38|2023-10-06T20:25:00.0060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6275|10000|30||109.14|109.87|0.00|-1.87|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:00.0500000-07:00|40022550|Zeromus|0001AB12|23713613||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:00.0950000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8600|10000|||110.28|112.01|0.00|-1.35|56517|56517|8600|10000|||110.28|112.01|0.00|-1.35|0001AB16|0|1| +261|2023-10-06T20:24:59.7130000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:24:59.8370000-07:00|Change|10FF0007||||||||| +25|2023-10-06T20:25:00.1830000-07:00|10FF0002|Suchichi Suchi|4002256C|Zeromus| +37|2023-10-06T20:25:00.2270000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB16|56517|56517|8600|10000|30||109.75|112.11|-0.02|-1.63|1C00|0|0|01|06000032|1E|41200000|| +26|2023-10-06T20:25:00.2270000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|56517|56517| +39|2023-10-06T20:25:00.2270000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|3000|10000|||104.32|99.54|0.00|-2.86| +25|2023-10-06T20:25:00.2270000-07:00|10FF0005|Wuwuchu Wuchu|4002256C|Zeromus| +21|2023-10-06T20:25:00.2720000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41716003|3CA10000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|23713613|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|4300|10000|||111.68|99.35|0.00|-2.76|0001AB17|0|1| +21|2023-10-06T20:25:00.2720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23713613|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|4300|10000|||111.68|99.35|0.00|-2.76|0001AB18|0|1| +38|2023-10-06T20:25:00.2720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4300|10000|18||111.68|99.35|0.00|-2.76|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:00.2720000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +26|2023-10-06T20:25:00.2720000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +31|2023-10-06T20:25:00.2720000-07:00|10FF0001||||| +261|2023-10-06T20:24:59.8370000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:00.4480000-07:00|40022550|Zeromus|0001AB14|23711497||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:00.5380000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|22C2|89994|89994|3000|10000|||102.67|97.56|0.00|-2.65|E0000000||0||||||||||| +24|2023-10-06T20:25:00.5380000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2BE9|55377|55377|8050|10000|||93.51|91.42|0.00|1.05|10FF0008|Kokosaze Lulusaze|0|55377|55377|8050|10000|||93.51|91.42|0.00|1.05| +38|2023-10-06T20:25:00.5380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3000|10000|3||102.67|97.56|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:00.5380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8600|10000|19||93.51|91.42|0.00|1.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:00.0760000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:25:00.6270000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|23711497|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6275|10000|||104.95|108.35|0.00|-1.91|0001AB19|0|1| +38|2023-10-06T20:25:00.6270000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5875|10000|30||104.95|108.35|0.00|-1.91|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:00.6270000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:25:00.6710000-07:00|40022550|Zeromus|0001AB15|23702144||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:00.7160000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|249C0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|23711497|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|8600|10000|||108.03|111.59|0.00|-1.71|0001AB1A|0|1| +261|2023-10-06T20:25:00.2640000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T20:25:00.8050000-07:00|40022550|Zeromus|0001AB18|23700938||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:00.8050000-07:00|10FF0001|Sesuga Sapisuga|0001AB18|89453|89453|4300|10000|18||113.62|95.77|0.00|-2.07|1300|0|0|02|0A00076E|03|C1F00000|||||| +37|2023-10-06T20:25:00.8500000-07:00|40022550|Zeromus|0001AB17|23685417||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:00.8500000-07:00|10FF0001|Sesuga Sapisuga|0001AB17|89453|89453|4300|10000|18||113.62|95.77|0.00|-2.07|1300|0|0|02|0A00076E|03|41F00000|||||| +38|2023-10-06T20:25:00.8500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4300|10000|18||113.62|95.77|0.00|-2.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:00.3610000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:25:00.4600000-07:00|Change|400228D5||||| +261|2023-10-06T20:25:00.4600000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:25:01.0280000-07:00|400228F7||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:25:01.0280000-07:00|400228F7||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +39|2023-10-06T20:25:01.0280000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|4500|10000|||114.43|94.24|0.00|-2.06| +261|2023-10-06T20:25:00.5770000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T20:25:01.0730000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|2DFF0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|23685417|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|9450|10000|||92.76|86.90|0.00|2.33|0001AB1B|0|1| +38|2023-10-06T20:25:01.0730000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|9250|10000|20||92.76|86.90|0.00|2.33|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:01.0730000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:25:00.5770000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:25:00.5770000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:25:01.2060000-07:00|10FF0003|Gegehi Gehi|51159|51159|9450|10000|||92.76|86.90|0.00|2.33| +24|2023-10-06T20:25:01.2060000-07:00|40022550|Zeromus|DoT|0|1792|23685417|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:01.2060000-07:00|40022550|Zeromus|005A5A00|23679383|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:01.2060000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +39|2023-10-06T20:25:01.2500000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +36|2023-10-06T20:25:01.3410000-07:00|431C|3| +261|2023-10-06T20:25:00.8120000-07:00|Add|400228F7||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:25:00.9230000-07:00|400228F7|Carbuncle|00|5A|10FF0008|00||10261|13498|53095|53095|10000|10000|||92.32|96.04|0.00|2.85| +261|2023-10-06T20:25:00.9230000-07:00|Change|10FF0003||||||| +261|2023-10-06T20:25:00.9230000-07:00|Change|400228F7||| +24|2023-10-06T20:25:01.3830000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1583|89453|89453|4500|10000|||114.39|91.25|0.00|-1.50|10FF0006|Wowobora Gogobora|0|56517|56517|5875|10000|||100.50|102.83|0.00|-2.66| +37|2023-10-06T20:25:01.3830000-07:00|40022550|Zeromus|0001AB19|23679383|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A38|0|41F00000|| +26|2023-10-06T20:25:01.3830000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|56517| +39|2023-10-06T20:25:01.3840000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|8400|10000|||102.98|114.29|0.00|-1.16| +38|2023-10-06T20:25:01.3840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4500|10000|18||114.39|91.25|0.00|-1.50|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:01.3840000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +261|2023-10-06T20:25:01.0400000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:25:01.4290000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|5875|10000|||100.28|101.93|0.00|-2.72|56517|56517|5875|10000|||100.28|101.93|0.00|-2.72|0001AB1C|0|1| +39|2023-10-06T20:25:01.5180000-07:00|10FF0006|Wowobora Gogobora|56517|56517|6080|10000|||100.28|101.93|0.00|-2.72| +21|2023-10-06T20:25:01.5180000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|22CF0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|23679383|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8600|10000|||91.83|97.77|0.00|-0.25|0001AB1D|0|1| +37|2023-10-06T20:25:01.6510000-07:00|40022550|Zeromus|0001AB1A|23670011||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:01.6510000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|11D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23679383|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8300|10000|||91.83|98.21|0.00|2.30|0001AB1E|0|1| +21|2023-10-06T20:25:01.6510000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23679383|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6080|10000|||100.08|101.14|0.00|-0.87|0001AB1F|0|1| +261|2023-10-06T20:25:01.2570000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:01.8280000-07:00|40022550|Zeromus|0001AB1B|23658236||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:01.8720000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|28AF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|3000|10000|||99.75|90.89|0.00|-2.97|23658236|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AB20|0|1| +261|2023-10-06T20:25:01.4450000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:25:01.9620000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|196E0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|23658236|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|3000|10000|||100.75|90.94|0.00|-3.02|0001AB21|0|1| +261|2023-10-06T20:25:01.5350000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:02.0510000-07:00|10FF0006|Wowobora Gogobora|0001AB1C|56517|56517|6080|10000|30||97.38|101.09|0.00|-1.46|2800|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T20:25:02.0510000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +39|2023-10-06T20:25:02.0510000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8500|10000|||91.94|101.11|0.00|0.41| +34|2023-10-06T20:25:02.0510000-07:00|400228F7|Carbuncle|400228F7|Carbuncle|01| +261|2023-10-06T20:25:01.6470000-07:00|Change|400228F7||||||||| +21|2023-10-06T20:25:02.1410000-07:00|10FF0003|Gegehi Gehi|1D63|Verraise|10FF0002|Suchichi Suchi|814000E|940000|1B|1D638000|0|0|0|0|0|0|0|0|0|0|0|0|0|63089|0|10000|||82.32|81.10|0.00|0.68|51159|51159|9450|10000|||92.76|86.90|0.00|2.33|0001AB22|0|1| +38|2023-10-06T20:25:02.1410000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7050|10000|20||92.76|86.90|0.00|2.33|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:02.1410000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:25:01.7620000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:25:01.7620000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:02.1850000-07:00|40022550|Zeromus|0001AB1D|23649325||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:02.1850000-07:00|40022550|Zeromus|0001AB1E|23649040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:02.1850000-07:00|40022550|Zeromus|0001AB1F|23649002||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:02.2300000-07:00|10FF0008|Kokosaze Lulusaze|03|Sprint|10FF0008|Kokosaze Lulusaze|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|8500|10000|||92.66|101.19|0.00|0.73|55377|55377|8500|10000|||92.66|101.19|0.00|0.73|0001AB23|0|1| +261|2023-10-06T20:25:01.8740000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:25:02.3640000-07:00|10FF0008|Kokosaze Lulusaze|0001AB23|55377|55377|8500|10000|19||92.66|101.19|0.00|0.73|1B00|0|0|01|07000032|1E|41200000|| +26|2023-10-06T20:25:02.3640000-07:00|32|Sprint|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|55377|55377| +38|2023-10-06T20:25:02.4980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3000|10000|3||105.94|90.79|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:02.4980000-07:00|32|Sprint|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|1E|89994|89994| +21|2023-10-06T20:25:02.5420000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23649002|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|4500|10000|||116.06|89.94|0.00|-0.84|0001AB24|0|1| +31|2023-10-06T20:25:02.5420000-07:00|10FF0001||||| +37|2023-10-06T20:25:02.5870000-07:00|40022550|Zeromus|0001AB21|23642492||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:02.6760000-07:00|10FF0007|Kehabiqo Febiqo|0001AB20|79579|89994|3000|10000|0||106.77|90.75|0.00|-3.07|1500|0|0|01|05000000|0|0|| +24|2023-10-06T20:25:02.6760000-07:00|10FF0003|Gegehi Gehi|HoT|0|D80|51159|51159|7050|10000|||93.27|88.69|0.00|0.56|E0000000||0||||||||||| +38|2023-10-06T20:25:02.6760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|79579|89994|3000|10000|0||106.77|90.75|0.00|-3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:02.6760000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:02.6760000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7050|10000|20||93.27|88.69|0.00|0.56|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:02.2890000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:25:02.8530000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D68|89453|89453|4500|10000|||117.67|91.89|0.00|-0.94|E0000000||0||||||||||| +24|2023-10-06T20:25:02.8530000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D42|56517|56517|6080|10000|||100.28|97.99|0.00|2.26|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8400|10000|||94.21|117.57|-0.01|-1.64| +24|2023-10-06T20:25:02.8530000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CFB|55377|55377|8500|10000|||94.07|100.42|0.00|2.21|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8400|10000|||94.21|117.57|-0.01|-1.64| +24|2023-10-06T20:25:02.8530000-07:00|10FF0003|Gegehi Gehi|HoT|798|CEA|51159|51159|7050|10000|||93.65|90.07|0.00|0.37|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8400|10000|||94.21|117.57|-0.01|-1.64| +24|2023-10-06T20:25:02.8530000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|CD5|79579|89994|3000|10000|||108.61|90.68|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8400|10000|||94.21|117.57|-0.01|-1.64| +24|2023-10-06T20:25:02.8530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D9E|56517|56517|8400|10000|||94.21|117.57|-0.01|-1.64|10FF0004|Buhojaqe Zijaqe|0|56517|56517|8400|10000|||94.21|117.57|-0.01|-1.64| +38|2023-10-06T20:25:02.8530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82864|89994|3000|10000|0||108.61|90.68|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:02.8530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:02.8530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8500|10000|19||94.07|100.42|0.00|2.21|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:02.8530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:25:02.8530000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6080|10000|30||100.28|97.99|0.00|2.26|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:02.8530000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:02.8530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:02.8530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4500|10000|18||117.67|91.89|0.00|-0.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:02.8530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8950|10000|30||94.21|117.57|-0.01|-1.64|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:02.8530000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7050|10000|20||93.65|90.07|0.00|0.37|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:02.8530000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +261|2023-10-06T20:25:02.3910000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:25:02.8980000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14FD0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|79579|89994|3000|10000|||108.61|90.68|0.00|-3.09|54201|54201|10000|10000|||99.81|96.03|0.00|3.11|0001AB25|0|1| +261|2023-10-06T20:25:02.4870000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:25:02.9420000-07:00|10FF0002|Suchichi Suchi|0001AB22|0|63089|0|10000|0||82.32|81.10|0.00|0.68|1600|0|0|01|94|08|42700000|| +26|2023-10-06T20:25:02.9420000-07:00|94|Raise|60.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|08|63089|51159| +261|2023-10-06T20:25:02.4870000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:25:02.9860000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D33|56517|56517|6080|10000|||101.18|97.75|0.00|2.15|E0000000||0||||||||||| +38|2023-10-06T20:25:02.9860000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6630|10000|30||101.18|97.75|0.00|2.15|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:03.0750000-07:00|40022550|Zeromus|0001AB24|23641218||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:03.0750000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6630|10000|30||102.09|97.51|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:03.0750000-07:00|32|Sprint|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|1E|56517|56517| +261|2023-10-06T20:25:02.7020000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:25:03.1200000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|23EA0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|23641218|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8500|10000|||96.34|99.30|0.00|2.07|0001AB26|0|1| +261|2023-10-06T20:25:02.7020000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:25:03.2530000-07:00|10FF0007|Kehabiqo Febiqo|83763|89994|3200|10000|||111.40|90.71|0.00|3.12| +21|2023-10-06T20:25:03.2980000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|9F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23641218|40478540|10000|10000|||100.00|80.10|0.00|0.00|82864|89994|3000|10000|||111.40|90.71|0.00|3.12|0001AB27|0|1| +21|2023-10-06T20:25:03.3430000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|20B00000|200004|2C798000|0|0|0|0|0|0|0|0|0|0|0|0|23641218|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|4500|10000|||118.58|93.99|0.00|-2.21|0001AB28|0|1| +21|2023-10-06T20:25:03.3430000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8950|10000|||94.19|117.57|0.00|-1.64|56517|56517|8950|10000|||94.19|117.57|0.00|-1.64|0001AB29|0|1| +38|2023-10-06T20:25:03.3430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|3500|10000|18||118.58|93.99|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:03.3430000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +38|2023-10-06T20:25:03.3430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8950|10000|30||94.19|117.57|0.00|-1.64|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:03.3430000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +261|2023-10-06T20:25:02.9350000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T20:25:03.4750000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB29|56517|56517|8950|10000|30||94.19|117.57|0.00|-1.64|1C00|0|0|01|080000A7|0|41200000|| +38|2023-10-06T20:25:03.4750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8950|10000|30||94.19|117.57|0.00|-1.64|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:03.4750000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +24|2023-10-06T20:25:03.5200000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1A30|83763|89994|3200|10000|||112.77|90.87|0.00|3.04|E0000000||0||||||||||| +24|2023-10-06T20:25:03.5200000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2037|55377|55377|8200|10000|||98.44|98.32|0.00|3.10|10FF0008|Kokosaze Lulusaze|0|55377|55377|8200|10000|||98.44|98.32|0.00|3.10| +38|2023-10-06T20:25:03.5200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3200|10000|0||112.77|90.87|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:03.5200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8750|10000|19||98.44|98.32|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:03.5200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|3500|10000|18||118.58|93.99|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:03.5200000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:25:03.5200000-07:00|32|Sprint|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|89453|89453| +261|2023-10-06T20:25:03.1590000-07:00|Change|10FF0004||||||| +261|2023-10-06T20:25:03.1590000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:25:03.1590000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T20:25:03.2500000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:25:03.7880000-07:00|40022550|Zeromus|0001AB26|23632024||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:03.3450000-07:00|Remove|400228C7| +37|2023-10-06T20:25:03.8320000-07:00|40022550|Zeromus|0001AB27|23629479||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:03.8320000-07:00|10FF0003|Gegehi Gehi|1D89|Swiftcast|10FF0003|Gegehi Gehi|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|7050|10000|||95.23|95.77|0.00|0.27|51159|51159|7050|10000|||95.23|95.77|0.00|0.27|0001AB2A|0|1| +38|2023-10-06T20:25:03.8320000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7050|10000|20||95.23|95.77|0.00|0.27|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:03.8320000-07:00|A7|Swiftcast|10.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:25:03.3450000-07:00|Change|400228F7||||||||| +261|2023-10-06T20:25:03.4430000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:03.9670000-07:00|10FF0003|Gegehi Gehi|0001AB2A|51159|51159|7050|10000|20||95.41|96.45|0.00|0.27|2300|0|0|01|040000A7|0|41200000|| +21|2023-10-06T20:25:03.9670000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0005|Wuwuchu Wuchu|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|0|10000|||95.48|89.19|0.00|0.70|56517|56517|8950|10000|||94.19|117.57|0.00|-1.64|0001AB2B|0|1| +38|2023-10-06T20:25:03.9670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6550|10000|30||94.19|117.57|0.00|-1.64|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:03.9670000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:25:03.9670000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7050|10000|20||95.41|96.45|0.00|0.27|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T20:25:04.0120000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|3700|10000|||118.58|93.99|0.00|-2.21| +37|2023-10-06T20:25:04.1020000-07:00|40022550|Zeromus|0001AB28|23621111||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:04.1900000-07:00|10FF0003|Gegehi Gehi|51159|51159|7250|10000|||95.81|97.86|-0.02|0.27| +24|2023-10-06T20:25:04.1900000-07:00|40022550|Zeromus|DoT|0|2C08|23609839|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:04.1900000-07:00|40022550|Zeromus|005A5A00|23609839|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:04.1900000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +261|2023-10-06T20:25:03.7490000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:25:04.2340000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|2.04| +36|2023-10-06T20:25:04.3230000-07:00|43F8|3| +39|2023-10-06T20:25:04.3680000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|6750|10000|||94.19|117.57|0.00|-2.43| +261|2023-10-06T20:25:03.9810000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:25:04.4130000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|23B20000|143E|340000|4|11518000|11B|2A8000|0|0|0|0|0|0|0|0|23609839|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|3200|10000|||117.01|92.45|0.00|2.71|0001AB2C|0|1| +261|2023-10-06T20:25:03.9810000-07:00|Change|10FF0003||||||||||| +27|2023-10-06T20:25:04.4570000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +27|2023-10-06T20:25:04.4570000-07:00|10FF0002|Suchichi Suchi|0000|0000|0178|0000|0000|0000| +27|2023-10-06T20:25:04.4570000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +27|2023-10-06T20:25:04.4570000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +27|2023-10-06T20:25:04.4570000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +27|2023-10-06T20:25:04.4570000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +27|2023-10-06T20:25:04.4570000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +27|2023-10-06T20:25:04.4570000-07:00|10FF0005|Wuwuchu Wuchu|0000|0000|0178|0000|0000|0000| +21|2023-10-06T20:25:04.4570000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23609839|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6630|10000|||111.20|95.08|0.00|1.97|0001AB2D|0|1| +39|2023-10-06T20:25:04.5010000-07:00|10FF0006|Wowobora Gogobora|56517|56517|6835|10000|||111.20|95.08|0.00|1.97| +261|2023-10-06T20:25:04.1040000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:25:04.1970000-07:00|Change|400228F7||||||||| +21|2023-10-06T20:25:04.6360000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|752003|691C0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|23609839|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8750|10000|||107.83|96.33|0.00|1.80|0001AB2E|0|1| +21|2023-10-06T20:25:04.6360000-07:00|10FF0003|Gegehi Gehi|1D63|Verraise|10FF0005|Wuwuchu Wuchu|814000E|940000|1B|1D638000|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|0|10000|||95.48|89.19|0.00|0.70|51159|51159|7250|10000|||96.05|98.68|-0.02|0.27|0001AB2F|0|1| +38|2023-10-06T20:25:04.6360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8350|10000|19||107.83|96.33|0.00|1.80|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:04.6360000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:25:04.6360000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|4850|10000|20||96.05|98.68|-0.02|0.27|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:04.6360000-07:00|A7|Swiftcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +21|2023-10-06T20:25:04.8140000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|12A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23609839|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8350|10000|||109.69|95.90|0.00|-2.56|0001AB30|0|1| +21|2023-10-06T20:25:04.8140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23609839|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|3700|10000|||118.58|93.99|0.00|-2.21|0001AB31|0|1| +31|2023-10-06T20:25:04.8140000-07:00|10FF0001||||| +261|2023-10-06T20:25:04.3010000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:25:04.9040000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|35DD0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|3200|10000|||117.25|92.58|0.00|-3.01|23609839|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AB32|0|1| +38|2023-10-06T20:25:04.9040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|3700|10000|18||118.58|93.99|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:04.9040000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +04|2023-10-06T20:25:04.4980000-07:00|400228D5|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|53095|0|10000|||93.42|88.98|0.00|2.34| +261|2023-10-06T20:25:04.4980000-07:00|Change|10FF0001||| +261|2023-10-06T20:25:04.4980000-07:00|Remove|400228D5| +37|2023-10-06T20:25:04.9910000-07:00|40022550|Zeromus|0001AB2D|23609804||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:05.0350000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8550|10000|||111.60|95.43|0.00|-2.96| +37|2023-10-06T20:25:05.0800000-07:00|10FF0005|Wuwuchu Wuchu|0001AB2B|0|63038|0|10000|0||95.48|89.19|0.00|0.70|2700|0|0|01|02000094|08|42700000|| +26|2023-10-06T20:25:05.0800000-07:00|94|Raise|60.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|08|63038|56517| +38|2023-10-06T20:25:05.0800000-07:00|40022550|Zeromus|005A5A00|23609804|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:05.0800000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +261|2023-10-06T20:25:04.7280000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:25:04.7280000-07:00|Change|400228F7||||||||| +37|2023-10-06T20:25:05.3450000-07:00|40022550|Zeromus|0001AB30|23609506||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:05.3450000-07:00|40022550|Zeromus|0001AB31|23608272||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:05.4360000-07:00|40022550|Zeromus|0001AB2E|23581364||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:05.4360000-07:00|10FF0005|Wuwuchu Wuchu|0001AB2F|0|63038|0|10000|0||95.48|89.19|0.00|0.70|2700|0|0|01|02000094|08|42700000|| +30|2023-10-06T20:25:05.4360000-07:00|94|Raise|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|08|63038|56517| +26|2023-10-06T20:25:05.4360000-07:00|94|Raise|60.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|08|63038|51159| +261|2023-10-06T20:25:04.9610000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:25:05.0760000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T20:25:05.4810000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6835|10000|30||117.06|93.81|0.00|1.88|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:05.4810000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:05.4810000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:25:05.4810000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6835|10000|||117.06|93.81|0.00|1.88|56517|56517|6835|10000|||117.06|93.81|0.00|1.88|0001AB33|0|1| +261|2023-10-06T20:25:05.1730000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:25:05.7040000-07:00|10FF0007|Kehabiqo Febiqo|0001AB32|76205||||||117.69|93.13|0.00|2.65| +24|2023-10-06T20:25:05.7040000-07:00|10FF0003|Gegehi Gehi|HoT|0|D7B|51159|51159|4850|10000|||98.74|101.43|0.00|1.01|E0000000||0||||||||||| +38|2023-10-06T20:25:05.7040000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|4850|10000|20||98.74|101.43|0.00|1.01|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:05.8370000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6835|10000|30||117.92|93.70|0.00|1.28|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:05.8370000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:05.8370000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +24|2023-10-06T20:25:05.8810000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|C8F|89453|89453|3700|10000|||118.44|93.89|0.00|-2.37|E0000000||0||||||||||| +24|2023-10-06T20:25:05.8810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1477|56517|56517|6750|10000|||93.71|118.01|0.00|-1.06|10FF0004|Buhojaqe Zijaqe|0|56517|56517|6750|10000|||93.71|118.01|0.00|-1.06| +38|2023-10-06T20:25:05.8810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|76205|89994|3200|10000|0||117.69|93.13|0.00|2.65|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:05.8810000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:25:05.8810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|3700|10000|18||118.44|93.89|0.00|-2.37|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:05.8810000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:25:05.8810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7300|10000|30||93.71|118.01|0.00|-1.06|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:05.9260000-07:00|40022550|Zeromus|0001AB2C|23572226||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:05.9260000-07:00|10FF0007|Kehabiqo Febiqo|0001AB2C|80638||||||117.69|93.13|0.00|2.65| +21|2023-10-06T20:25:05.9260000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|714003|23FF0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23581364|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|3700|10000|||118.44|93.89|0.00|-2.37|0001AB34|0|1| +38|2023-10-06T20:25:05.9260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8550|10000|19||117.86|93.75|0.00|1.80|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:05.9260000-07:00|4B4|Lucid Dreaming|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:25:05.9260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|3700|10000|18||118.44|93.89|0.00|-2.37|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:05.9260000-07:00|76E|Sword Oath|24.88|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|89453|89453| +261|2023-10-06T20:25:05.4570000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:25:05.9720000-07:00|40022566|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.00|100.00|0.00|0.79|0001AB35|0|0| +21|2023-10-06T20:25:05.9720000-07:00|40022567|Zeromus|8CF8|unknown_8cf8|40022567|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||86.00|100.00|0.00|0.79|44|44|0|10000|||86.00|100.00|0.00|0.79|0001AB36|0|1| +36|2023-10-06T20:25:05.9720000-07:00|4524|3| +21|2023-10-06T20:25:05.9720000-07:00|40022568|Zeromus|8B49|Miasmic Blast|10FF0003|Gegehi Gehi|750603|7BF40000|100140E|6FD0000|1B|8B498000|0|0|0|0|0|0|0|0|0|0|51159|51159|4850|10000|||100.62|101.72|0.00|1.27|44|44|0|10000|||107.00|93.00|0.00|0.79|0001AB37|0|1| +21|2023-10-06T20:25:05.9720000-07:00|40022569|Zeromus|8CF8|unknown_8cf8|40022569|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||107.00|93.00|0.00|0.79|44|44|0|10000|||107.00|93.00|0.00|0.79|0001AB38|0|1| +21|2023-10-06T20:25:05.9720000-07:00|4002256A|Zeromus|8B49|Miasmic Blast|10FF0003|Gegehi Gehi|750603|D4B20000|200140E|6FD0000|1B|8B498000|0|0|0|0|0|0|0|0|0|0|51159|51159|4850|10000|||100.62|101.72|0.00|1.27|44|44|0|10000|||93.00|93.00|0.00|0.79|0001AB39|0|1| +21|2023-10-06T20:25:05.9720000-07:00|4002256B|Zeromus|8CF8|unknown_8cf8|4002256B|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||93.00|93.00|0.00|0.79|44|44|0|10000|||93.00|93.00|0.00|0.79|0001AB3A|0|1| +261|2023-10-06T20:25:05.4570000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:25:05.4570000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:25:05.4570000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:25:05.4570000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:25:05.4570000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:25:05.4570000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:25:05.4570000-07:00|Change|400228F7||||||||| +38|2023-10-06T20:25:06.0150000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7385|10000|30||118.02|93.68|0.00|1.27|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:05.7750000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:25:06.2380000-07:00|10FF0007|Kehabiqo Febiqo|81537|89994|3400|10000|||117.69|93.13|0.00|2.65| +38|2023-10-06T20:25:06.2380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8550|10000|19||118.27|93.64|0.00|1.74|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:06.2380000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +30|2023-10-06T20:25:06.2380000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +261|2023-10-06T20:25:05.7750000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T20:25:05.8880000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:25:06.3720000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14D30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|81537|89994|3400|10000|||117.69|93.13|0.00|2.65|54201|54201|10000|10000|||99.81|96.03|0.00|2.98|0001AB3B|0|1| +38|2023-10-06T20:25:06.3720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|3700|10000|18||118.23|93.59|0.00|-2.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:06.3720000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:25:06.3720000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:25:06.5050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81537|89994|3400|10000|0||117.66|93.13|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:06.5050000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +30|2023-10-06T20:25:06.5050000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +24|2023-10-06T20:25:06.5500000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|125C|55377|55377|8550|10000|||118.24|93.74|0.00|0.36|E0000000||0||||||||||| +22|2023-10-06T20:25:06.5500000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|C740000|D90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|56517|56517|7385|10000|||118.05|93.69|0.00|0.35|56517|56517|7385|10000|||118.05|93.69|0.00|0.35|0001AB3C|0|4| +22|2023-10-06T20:25:06.5500000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|C460000|460E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|89453|89453|3700|10000|||117.93|92.52|0.00|-2.89|56517|56517|7385|10000|||118.05|93.69|0.00|0.35|0001AB3C|1|4| +22|2023-10-06T20:25:06.5500000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|4|C9F0000|630E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|55377|55377|8550|10000|||118.24|93.74|0.00|0.36|56517|56517|7385|10000|||118.05|93.69|0.00|0.35|0001AB3C|2|4| +22|2023-10-06T20:25:06.5500000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|200004|14CB0000|890E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|81537|89994|3400|10000|||117.66|93.13|0.00|-2.99|56517|56517|7385|10000|||118.05|93.69|0.00|0.35|0001AB3C|3|4| +38|2023-10-06T20:25:06.5500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81537|89994|3400|10000|18||117.66|93.13|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:06.5500000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:06.5500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8550|10000|18||118.24|93.74|0.00|0.36|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:06.5500000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +26|2023-10-06T20:25:06.5500000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:25:06.5500000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6485|10000|18||118.05|93.69|0.00|0.35|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:06.5500000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:06.5500000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:06.5500000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:06.5500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|3700|10000|11||117.93|92.52|0.00|-2.89|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:06.5500000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:25:06.5500000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:25:06.5940000-07:00|10FF0003|Gegehi Gehi|0001AB37|19427|51159|4850|10000|0||104.25|101.44|0.00|1.75|2300|0|0|02|02000000|0|0|||||| +26|2023-10-06T20:25:06.5940000-07:00|6FD|Vulnerability Up|59.42|4002256A|Zeromus|10FF0003|Gegehi Gehi|02|51159|44| +37|2023-10-06T20:25:06.5940000-07:00|10FF0003|Gegehi Gehi|0001AB39|0|51159|0|10000|0||104.25|101.44|0.00|1.75|2300|0|0|04|01000000|0|0|||||||||||||| +38|2023-10-06T20:25:06.5940000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|51159|0|10000|0||104.25|101.44|0.00|1.75|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:06.5940000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +30|2023-10-06T20:25:06.5940000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +30|2023-10-06T20:25:06.5940000-07:00|6FD|Vulnerability Up|0.00|4002256A|Zeromus|10FF0003|Gegehi Gehi|02|51159|44| +30|2023-10-06T20:25:06.5940000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +30|2023-10-06T20:25:06.5940000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +261|2023-10-06T20:25:06.2010000-07:00|Change|10FF0004||||||||| +38|2023-10-06T20:25:06.6370000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7300|10000|30||93.10|118.43|0.00|-0.96|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:06.6370000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +30|2023-10-06T20:25:06.6370000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +21|2023-10-06T20:25:06.6820000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|8910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23572226|40478540|10000|10000|||100.00|80.10|0.00|0.00|81537|89994|3400|10000|||117.66|93.13|0.00|-2.99|0001AB3D|0|1| +21|2023-10-06T20:25:06.8600000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|712003|44E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23572226|40478540|10000|10000|||100.00|80.10|0.00|0.00|81537|89994|3400|10000|||117.13|92.91|0.00|2.93|0001AB3E|0|1| +261|2023-10-06T20:25:06.4780000-07:00|Change|400228F7||||||||| +39|2023-10-06T20:25:06.9950000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|3900|10000|||117.51|90.52|0.00|-3.04| +261|2023-10-06T20:25:06.4780000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:25:06.4780000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T20:25:06.9950000-07:00|400228F7|Carbuncle|53095|53095|10000|10000|||116.46|95.43|0.00|1.84| +21|2023-10-06T20:25:07.0850000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23572226|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|3900|10000|||117.47|89.87|0.00|-3.11|0001AB3F|0|1| +31|2023-10-06T20:25:07.0850000-07:00|10FF0001||||| +261|2023-10-06T20:25:06.6960000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:25:07.1750000-07:00|10FF0007|Kehabiqo Febiqo|0001AB3B|86868||||||114.99|91.94|0.00|-2.20| +24|2023-10-06T20:25:07.1750000-07:00|40022550|Zeromus|DoT|0|2449|23572226|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:07.1750000-07:00|40022550|Zeromus|005A5A00|23562937|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:07.1750000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +37|2023-10-06T20:25:07.2190000-07:00|40022550|Zeromus|0001AB3D|23560744||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:07.2190000-07:00|40022550|Zeromus|0001AB34|23551529||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:07.2190000-07:00|10FF0001|Sesuga Sapisuga|0001AB34|89453|89453|4300|10000|11||117.45|89.22|0.00|-3.11|1300|0|0|0| +39|2023-10-06T20:25:07.2190000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|1.87| +261|2023-10-06T20:25:06.8060000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:25:07.2640000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23551529|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6485|10000|||116.85|94.29|0.00|-0.01|0001AB40|0|1| +261|2023-10-06T20:25:06.8060000-07:00|Change|10FF0005||||||||||| +39|2023-10-06T20:25:07.3520000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7500|10000|||93.10|118.43|0.00|-0.96| +36|2023-10-06T20:25:07.3520000-07:00|4600|3| +261|2023-10-06T20:25:07.0390000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:07.4870000-07:00|40022550|Zeromus|0001AB3E|23533893||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:07.4870000-07:00|10FF0006|Wowobora Gogobora|0001AB3C|56517|56517|6485|10000|18||115.49|95.03|0.00|-0.70|2800|0|0|01|03000A31|0|41E8DD2C|| +39|2023-10-06T20:25:07.4870000-07:00|10FF0006|Wowobora Gogobora|56517|56517|6690|10000|||115.49|95.03|0.00|-0.70| +21|2023-10-06T20:25:07.4870000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|716003|43B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23551529|40478540|10000|10000|||100.00|80.10|0.00|0.00|86868|89994|3400|10000|||113.16|90.94|0.00|-2.09|0001AB41|0|1| +22|2023-10-06T20:25:07.4870000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0006|Wowobora Gogobora|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6485|10000|||115.49|95.03|0.00|-0.70|56517|56517|6485|10000|||115.49|95.03|0.00|-0.70|0001AB42|0|4| +22|2023-10-06T20:25:07.4870000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0007|Kehabiqo Febiqo|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|86868|89994|3400|10000|||113.16|90.94|0.00|-2.09|56517|56517|6485|10000|||115.49|95.03|0.00|-0.70|0001AB42|1|4| +22|2023-10-06T20:25:07.4870000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0008|Kokosaze Lulusaze|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|8550|10000|||117.79|101.15|0.00|-0.03|56517|56517|6485|10000|||115.49|95.03|0.00|-0.70|0001AB42|2|4| +22|2023-10-06T20:25:07.4870000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0001|Sesuga Sapisuga|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|4300|10000|||117.42|87.24|0.00|3.13|56517|56517|6485|10000|||115.49|95.03|0.00|-0.70|0001AB42|3|4| +37|2023-10-06T20:25:07.6190000-07:00|10FF0001|Sesuga Sapisuga|0001AB3C|89453|89453|4300|10000|11||117.43|86.66|0.00|3.12|1301|0|0|01|05000A31|0|41E7CCCA|| +37|2023-10-06T20:25:07.6190000-07:00|40022550|Zeromus|0001AB3F|23532671||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:07.1610000-07:00|Change|10FF0004||| +37|2023-10-06T20:25:07.7520000-07:00|10FF0008|Kokosaze Lulusaze|0001AB3C|55377|55377|8550|10000|18||117.83|102.84|0.00|0.00|1B02|0|0|01|02000A31|0|41E6BA5B|| +37|2023-10-06T20:25:07.7970000-07:00|40022550|Zeromus|0001AB40|23532614||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:07.3600000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:25:07.3600000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:25:07.8850000-07:00|10FF0007|Kehabiqo Febiqo|0001AB3C|89994|89994|3400|10000|18||112.20|90.32|0.00|-2.21|1503|0|0|01|05000A31|0|41E5A9F8|| +38|2023-10-06T20:25:07.8850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3400|10000|18||112.20|90.32|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:07.8850000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:07.8850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8550|10000|18||117.88|103.70|0.00|0.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:07.8850000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:25:07.8850000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6690|10000|18||114.03|95.85|0.00|-0.99|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:07.8850000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:07.8850000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:25:07.9300000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|3400|10000|||112.35|90.40|0.00|-2.23|23532614|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AB43|0|1| +39|2023-10-06T20:25:08.0180000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8750|10000|||117.97|105.50|0.00|0.03| +21|2023-10-06T20:25:08.0630000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|3400|10000|||112.50|90.49|0.00|-2.24|89994|89994|3400|10000|||112.50|90.49|0.00|-2.24|0001AB44|0|1| +38|2023-10-06T20:25:08.0630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3400|10000|18||112.50|90.49|0.00|-2.24|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:08.0630000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +37|2023-10-06T20:25:08.1520000-07:00|40022550|Zeromus|0001AB41|23515280||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:08.1520000-07:00|10FF0007|Kehabiqo Febiqo|0001AB41|89994|89994|3400|10000|18||112.03|90.14|0.00|-2.20|1500|0|0|01|01000769|0|C1F00000|| +261|2023-10-06T20:25:07.7760000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:08.3300000-07:00|10FF0006|Wowobora Gogobora|0001AB42|56517|56517|6690|10000|18||111.71|96.06|0.00|-1.41|2800|0|0|02|04000A3C|0|41700000|||||| +26|2023-10-06T20:25:08.3300000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:08.3300000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +261|2023-10-06T20:25:07.8970000-07:00|Change|400228F7||||||||| +21|2023-10-06T20:25:08.4190000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|1C730000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23515280|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|4300|10000|||117.32|83.64|0.00|-1.77|0001AB45|0|1| +38|2023-10-06T20:25:08.4190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4300|10000|11||117.32|83.64|0.00|-1.77|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:08.4190000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:25:08.4190000-07:00|76E|Sword Oath|22.39|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +261|2023-10-06T20:25:08.0180000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:25:08.4630000-07:00|10FF0007|Kehabiqo Febiqo|0001AB42|89994|89994|3400|10000|18||109.23|88.10|0.00|-2.20|1501|0|0|03|01000769|0|C1F00000|||||||||| +26|2023-10-06T20:25:08.4630000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +26|2023-10-06T20:25:08.4630000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +261|2023-10-06T20:25:08.0180000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:08.5970000-07:00|10FF0007|Kehabiqo Febiqo|0001AB44|89994|89994|3400|10000|18||108.81|87.80|0.00|-2.20|1500|0|0|01|01000769|0|41F00000|| +37|2023-10-06T20:25:08.5970000-07:00|10FF0008|Kokosaze Lulusaze|0001AB42|55377|55377|8750|10000|18||118.19|110.05|0.00|0.04|1B02|0|0|02|06000A3C|0|41700000|||||| +26|2023-10-06T20:25:08.5970000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +26|2023-10-06T20:25:08.5970000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +25|2023-10-06T20:25:08.5970000-07:00|10FF0003|Gegehi Gehi|4002256A|Zeromus| +38|2023-10-06T20:25:08.5970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3400|10000|18||108.81|87.80|0.00|-2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:08.2220000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T20:25:08.7310000-07:00|10FF0007|Kehabiqo Febiqo|0001AB43|89994|89994|3400|10000|1||108.40|87.50|0.00|-2.20|1500|0|0|0| +37|2023-10-06T20:25:08.7310000-07:00|10FF0001|Sesuga Sapisuga|0001AB42|89453|89453|4300|10000|11||117.32|83.64|0.00|-1.77|1303|0|0|02|03000A3C|0|41700000|||||| +26|2023-10-06T20:25:08.7310000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:25:08.7310000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +24|2023-10-06T20:25:08.8630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1152|89453|89453|4300|10000|||117.32|83.64|0.00|-1.77|E0000000||0||||||||||| +38|2023-10-06T20:25:08.8630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4300|10000|11||117.32|83.64|0.00|-1.77|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:08.8630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8050|10000|30||89.77|118.11|0.00|-1.57|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:08.4170000-07:00|Change|10FF0006||||||||| +24|2023-10-06T20:25:08.9980000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1155|56517|56517|6690|10000|||105.90|94.99|0.00|-1.81|E0000000||0||||||||||| +38|2023-10-06T20:25:08.9980000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7240|10000|18||105.90|94.99|0.00|-1.81|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:08.5120000-07:00|Change|400228F7||||||||| +20|2023-10-06T20:25:09.1760000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|118.33|113.63|0.00|0.04| +39|2023-10-06T20:25:09.2640000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|3600|10000|||105.78|85.58|0.00|-2.20| +261|2023-10-06T20:25:08.8670000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:25:09.3100000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|76860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23515280|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|3600|10000|||105.37|85.28|0.00|-2.21|0001AB46|0|1| +38|2023-10-06T20:25:09.3100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3600|10000|1||105.37|85.28|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:09.3100000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +21|2023-10-06T20:25:09.3540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23515280|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|4300|10000|||117.32|83.64|0.00|-1.77|0001AB47|0|1| +31|2023-10-06T20:25:09.3540000-07:00|10FF0001||||| +261|2023-10-06T20:25:08.9840000-07:00|Change|10FF0008||||||||||||||||||||| +261|2023-10-06T20:25:08.9840000-07:00|Change|4002256E||||||||| +38|2023-10-06T20:25:09.4440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3600|10000|1||105.06|85.05|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:09.4440000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|89994|| +38|2023-10-06T20:25:09.4440000-07:00|10FF0002|Suchichi Suchi|005A5A16|12617|63089|2000|10000|0||93.73|90.35|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:25:09.4440000-07:00|94|Raise|0.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|08|63089|51159| +26|2023-10-06T20:25:09.4440000-07:00|2B|Weakness|100.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +26|2023-10-06T20:25:09.4440000-07:00|1A2|Transcendent|5.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +30|2023-10-06T20:25:09.4440000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +261|2023-10-06T20:25:08.9840000-07:00|Change|4002256D||||||||| +38|2023-10-06T20:25:09.4440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8750|10000|18||118.35|114.05|0.00|-1.64|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:09.4440000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +261|2023-10-06T20:25:08.9840000-07:00|Change|4002256B||||||||| +38|2023-10-06T20:25:09.4440000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7240|10000|18||103.20|94.11|0.00|-1.89|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:09.4440000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0006|Wowobora Gogobora|00|56517|| +38|2023-10-06T20:25:09.4440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4300|10000|11||117.32|83.64|0.00|-1.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:09.4440000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|89453|| +261|2023-10-06T20:25:08.9840000-07:00|Change|40022569||||||||| +261|2023-10-06T20:25:08.9840000-07:00|Change|40022568||||||||| +261|2023-10-06T20:25:08.9840000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:25:08.9840000-07:00|Change|10FF0002||||| +261|2023-10-06T20:25:08.9840000-07:00|Change|40022567||||||||| +261|2023-10-06T20:25:08.9840000-07:00|Change|10FF0007||||||||||| +38|2023-10-06T20:25:09.4440000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8050|10000|30||84.89|116.32|-0.02|-1.93|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:09.4440000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:25:09.4440000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|51159|0|10000|0||106.22|102.31|0.00|2.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:09.4440000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +38|2023-10-06T20:25:09.4440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|0|63038|0|10000|0||98.62|101.37|0.00|0.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:09.4440000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +20|2023-10-06T20:25:09.4870000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0003|Gegehi Gehi|7.704|84.89|116.32|-0.02|-1.93| +21|2023-10-06T20:25:09.5330000-07:00|40022567|Zeromus|8B52|the Dark Divides|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB48|0|0| +21|2023-10-06T20:25:09.5330000-07:00|40022568|Zeromus|8B52|the Dark Divides|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB49|0|0| +21|2023-10-06T20:25:09.5330000-07:00|40022569|Zeromus|8B52|the Dark Divides|10FF0004|Buhojaqe Zijaqe|750603|43CD0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|56517|56517|8050|10000|||84.86|116.26|0.00|-2.04|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB4A|0|1| +21|2023-10-06T20:25:09.5330000-07:00|4002256A|Zeromus|8B52|the Dark Divides|10FF0001|Sesuga Sapisuga|EC750005|1B8D0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|89453|89453|4300|10000|||117.32|83.64|0.00|-1.77|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB4B|0|1| +21|2023-10-06T20:25:09.5330000-07:00|4002256B|Zeromus|8B52|the Dark Divides|10FF0006|Wowobora Gogobora|750003|53AF0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|56517|56517|7240|10000|||102.51|93.95|0.00|-1.92|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB4C|0|1| +21|2023-10-06T20:25:09.5330000-07:00|4002256C|Zeromus|8B52|the Dark Divides|10FF0008|Kokosaze Lulusaze|750003|55B30000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|55377|55377|8750|10000|||118.36|114.16|0.00|-2.21|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB4D|0|1| +21|2023-10-06T20:25:09.5330000-07:00|4002256D|Zeromus|8B52|the Dark Divides|10FF0002|Suchichi Suchi|750103|0|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|12617|63089|2000|10000|||93.73|90.35|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB4E|0|1| +21|2023-10-06T20:25:09.5330000-07:00|4002256E|Zeromus|8B52|the Dark Divides|10FF0007|Kehabiqo Febiqo|750003|4EA10000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|89994|89994|3600|10000|||104.75|84.83|0.00|-2.37|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB4F|0|1| +24|2023-10-06T20:25:09.5330000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|11A4|89994|89994|3600|10000|||104.75|84.83|0.00|-2.37|10FF0007|Kehabiqo Febiqo|0|89994|89994|3600|10000|||104.75|84.83|0.00|-2.37| +24|2023-10-06T20:25:09.5330000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|22B1|55377|55377|8750|10000|||118.36|114.16|0.00|-2.21|E0000000||0||||||||||| +38|2023-10-06T20:25:09.5330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|3600|10000|1||104.75|84.83|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:09.5330000-07:00|B7D|Magic Vulnerability Up|1.96|4002256E|Zeromus|10FF0007|Kehabiqo Febiqo|00|89994|44| +38|2023-10-06T20:25:09.5330000-07:00|10FF0002|Suchichi Suchi|005A5A16|12617|63089|2000|10000|0||93.73|90.35|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T20:25:09.5330000-07:00|B7D|Magic Vulnerability Up|1.96|4002256D|Zeromus|10FF0002|Suchichi Suchi|00|63089|44| +38|2023-10-06T20:25:09.5330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8750|10000|18||118.36|114.16|0.00|-2.21|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:09.5330000-07:00|B7D|Magic Vulnerability Up|1.96|4002256C|Zeromus|10FF0008|Kokosaze Lulusaze|00|55377|44| +38|2023-10-06T20:25:09.5330000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7240|10000|18||102.51|93.95|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:09.5330000-07:00|B7D|Magic Vulnerability Up|1.96|4002256B|Zeromus|10FF0006|Wowobora Gogobora|00|56517|44| +38|2023-10-06T20:25:09.5330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|4300|10000|11||117.32|83.64|0.00|-1.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:09.5330000-07:00|B7D|Magic Vulnerability Up|1.96|4002256A|Zeromus|10FF0001|Sesuga Sapisuga|00|89453|44| +38|2023-10-06T20:25:09.5330000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|8050|10000|30||84.86|116.26|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:09.5330000-07:00|B7D|Magic Vulnerability Up|1.96|40022569|Zeromus|10FF0004|Buhojaqe Zijaqe|00|56517|44| +37|2023-10-06T20:25:09.7100000-07:00|40022550|Zeromus|0001AB45|23507997||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:09.7100000-07:00|10FF0001|Sesuga Sapisuga|0001AB45|89453|89453|4700|10000|11||117.32|83.64|0.00|-1.77|1300|0|0|0| +21|2023-10-06T20:25:09.7100000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|200004|21ED0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|12617|63089|2000|10000|||93.73|90.35|0.00|0.00|54201|54201|10000|10000|||99.81|96.03|0.00|3.13|0001AB50|0|1| +261|2023-10-06T20:25:09.2890000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:25:09.2890000-07:00|Change|400228F7||||||||| +261|2023-10-06T20:25:09.3840000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:09.8880000-07:00|40022550|Zeromus|0001AB47|23506762||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:10.0210000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|4900|10000|||117.32|83.64|0.00|-1.77| +39|2023-10-06T20:25:10.0210000-07:00|400228F7|Carbuncle|53095|53095|10000|10000|||117.90|111.58|0.00|0.52| +21|2023-10-06T20:25:10.0650000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|7E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23506762|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|3600|10000|||104.20|84.43|0.00|-2.37|0001AB51|0|1| +37|2023-10-06T20:25:10.1980000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB4A|39160|56517|8050|10000|0||84.79|116.11|0.00|2.14|1C00|0|0|02|04000000|0|0|||||| +37|2023-10-06T20:25:10.1980000-07:00|10FF0001|Sesuga Sapisuga|0001AB4B|82400|89453|4900|10000|0||117.32|83.64|0.00|-1.77|1300|0|0|02|05000000|0|0|||||| +37|2023-10-06T20:25:10.1980000-07:00|10FF0006|Wowobora Gogobora|0001AB4C|35094|56517|7240|10000|0||101.85|93.10|0.00|2.91|2800|0|0|02|03000000|0|0|||||| +37|2023-10-06T20:25:10.1980000-07:00|10FF0008|Kokosaze Lulusaze|0001AB4D|33438|55377|8750|10000|0||118.36|114.24|0.00|-2.65|1B00|0|0|02|02000000|0|0|||||| +37|2023-10-06T20:25:10.1980000-07:00|10FF0002|Suchichi Suchi|0001AB4E|12617|63089|2000|10000|0||93.73|90.35|0.00|0.00|1600|0|0|01|0B7D|0|3FAA9FBF|| +37|2023-10-06T20:25:10.1980000-07:00|10FF0007|Kehabiqo Febiqo|0001AB4F|69865|89994|3600|10000|0||104.20|84.43|0.00|-2.37|1500|0|0|02|01000B7D|0|3FAA9FBF|||||| +24|2023-10-06T20:25:10.1990000-07:00|40022550|Zeromus|DoT|0|29B8|23506762|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:10.1990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69865|89994|3600|10000|0||104.20|84.43|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:10.1990000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:10.1990000-07:00|40022550|Zeromus|005A5A00|23496082|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:10.1990000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:25:10.1990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|33438|55377|8750|10000|0||118.36|114.24|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:10.1990000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:25:10.1990000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35094|56517|7240|10000|0||101.85|93.10|0.00|2.91|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:10.1990000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:10.1990000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:10.1990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82400|89453|4900|10000|0||117.32|83.64|0.00|-1.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:10.1990000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:25:10.1990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39160|56517|8050|10000|0||84.79|116.11|0.00|2.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:10.1990000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +30|2023-10-06T20:25:10.1990000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|56517|56517| +37|2023-10-06T20:25:10.2430000-07:00|40022550|Zeromus|0001AB46|23465740||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:10.2430000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|-2.47| +21|2023-10-06T20:25:10.2430000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|712003|14AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23506762|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|3600|10000|||104.20|84.43|0.00|-2.37|0001AB52|0|1| +36|2023-10-06T20:25:10.3310000-07:00|46DC|3| +261|2023-10-06T20:25:09.8320000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:25:10.3750000-07:00|10FF0004|Buhojaqe Zijaqe|39725|56517|8250|10000|||84.79|116.11|0.00|2.14| +37|2023-10-06T20:25:10.5090000-07:00|10FF0002|Suchichi Suchi|0001AB50|21302||||||93.73|90.35|0.00|0.00| +39|2023-10-06T20:25:10.5090000-07:00|10FF0006|Wowobora Gogobora|35659|56517|7445|10000|||101.85|93.10|0.00|2.91| +37|2023-10-06T20:25:10.5990000-07:00|40022550|Zeromus|0001AB51|23463718||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:10.5990000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|12607|63038|2000|10000|0||98.62|101.37|0.00|0.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:10.5990000-07:00|94|Raise|0.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|08|63038|51159| +26|2023-10-06T20:25:10.5990000-07:00|2B|Weakness|100.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +26|2023-10-06T20:25:10.5990000-07:00|1A2|Transcendent|5.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +261|2023-10-06T20:25:10.1640000-07:00|Change|10FF0005||| +38|2023-10-06T20:25:10.6880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35659|56517|7445|10000|0||101.85|93.10|0.00|2.21|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:10.6880000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:25:10.6880000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35659|56517|7445|10000|||101.85|93.10|0.00|2.21|35659|56517|7445|10000|||101.85|93.10|0.00|2.21|0001AB53|0|1| +261|2023-10-06T20:25:10.2580000-07:00|Change|10FF0001||| +261|2023-10-06T20:25:10.3490000-07:00|Change|10FF0005||||| +261|2023-10-06T20:25:10.4460000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:10.8660000-07:00|40022550|Zeromus|0001AB52|23458427||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:10.8660000-07:00|10FF0005|Wuwuchu Wuchu|13237|63038|2200|10000|||98.62|101.37|0.00|0.00| +261|2023-10-06T20:25:10.4460000-07:00|Change|10FF0006||||||||||||| +21|2023-10-06T20:25:10.9110000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|1C9A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23463718|40478540|10000|10000|||100.00|80.10|0.00|0.00|82400|89453|4900|10000|||117.32|83.64|0.00|-1.77|0001AB54|0|1| +38|2023-10-06T20:25:10.9110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82400|89453|4900|10000|0||117.32|83.64|0.00|-1.77|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:25:10.9110000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:25:10.9110000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +39|2023-10-06T20:25:11.0450000-07:00|10FF0008|Kokosaze Lulusaze|33991|55377|8950|10000|||118.36|114.24|0.00|-2.65| +261|2023-10-06T20:25:10.5380000-07:00|Change|10FF0008||||||||||||| +38|2023-10-06T20:25:11.1780000-07:00|40022550|Zeromus|005A5A00|23458427|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:11.1780000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +21|2023-10-06T20:25:11.2230000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|712003|40290000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|23458427|40478540|10000|10000|||100.00|80.10|0.00|0.00|13237|63038|2200|10000|||98.62|101.37|0.00|0.00|0001AB55|0|1| +21|2023-10-06T20:25:11.2230000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|A7B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23458427|40478540|10000|10000|||100.00|80.10|0.00|0.00|13237|63038|2200|10000|||98.62|101.37|0.00|0.00|0001AB56|0|1| +38|2023-10-06T20:25:11.2230000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|13237|63038|2200|10000|0||98.62|101.37|0.00|0.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:11.2230000-07:00|1A2|Transcendent|0.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +261|2023-10-06T20:25:10.7730000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:25:10.8900000-07:00|Change|10FF0004||||| +27|2023-10-06T20:25:11.4450000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|003E|0000|0000|0000| +38|2023-10-06T20:25:11.4900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69865|89994|3600|10000|0||104.23|85.51|0.00|-2.30|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:11.4900000-07:00|B7D|Magic Vulnerability Up|0.00|4002256E|Zeromus|10FF0007|Kehabiqo Febiqo|00|89994|44| +38|2023-10-06T20:25:11.4900000-07:00|10FF0002|Suchichi Suchi|005A5A16|21302|63089|2000|10000|0||93.73|90.35|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:25:11.4900000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0002|Suchichi Suchi|00|63089|44| +38|2023-10-06T20:25:11.4900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|33991|55377|8950|10000|0||118.36|114.24|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:11.4900000-07:00|B7D|Magic Vulnerability Up|0.00|4002256C|Zeromus|10FF0008|Kokosaze Lulusaze|00|55377|44| +38|2023-10-06T20:25:11.4900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35659|56517|7445|10000|0||102.29|93.79|0.00|0.86|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:11.4900000-07:00|B7D|Magic Vulnerability Up|0.00|4002256B|Zeromus|10FF0006|Wowobora Gogobora|00|56517|44| +38|2023-10-06T20:25:11.4900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82400|89453|4900|10000|0||115.86|84.54|0.00|-1.36|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:11.4900000-07:00|B7D|Magic Vulnerability Up|0.00|4002256A|Zeromus|10FF0001|Sesuga Sapisuga|00|89453|44| +38|2023-10-06T20:25:11.4900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39725|56517|8250|10000|0||84.79|116.11|0.00|2.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:11.4900000-07:00|B7D|Magic Vulnerability Up|0.00|40022569|Zeromus|10FF0004|Buhojaqe Zijaqe|00|56517|44| +21|2023-10-06T20:25:11.6240000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|356003|8D330000|16C00F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|23458427|40478540|10000|10000|||100.00|80.10|0.00|0.00|33991|55377|8950|10000|||118.36|114.24|0.00|-2.65|0001AB57|0|1| +21|2023-10-06T20:25:11.6240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|6300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23458427|40478540|10000|10000|||100.00|80.10|0.00|0.00|82400|89453|4900|10000|||115.14|85.64|0.00|-1.36|0001AB58|0|1| +38|2023-10-06T20:25:11.6240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|33991|55377|8950|10000|0||118.36|114.24|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:11.6240000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +31|2023-10-06T20:25:11.6240000-07:00|10FF0001||||| +22|2023-10-06T20:25:11.6690000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|200004|16180000|B30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|35659|56517|7445|10000|||103.14|95.00|0.00|0.72|35659|56517|7445|10000|||103.14|95.00|0.00|0.72|0001AB59|0|4| +22|2023-10-06T20:25:11.6690000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|C470000|490E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|13237|63038|2200|10000|||98.62|101.37|0.00|3.13|35659|56517|7445|10000|||103.14|95.00|0.00|0.72|0001AB59|1|4| +22|2023-10-06T20:25:11.6690000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|DBD0000|F60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|69865|89994|3600|10000|||103.79|87.06|0.00|-1.15|35659|56517|7445|10000|||103.14|95.00|0.00|0.72|0001AB59|2|4| +22|2023-10-06T20:25:11.6690000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|CBF0000|C90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|21302|63089|2000|10000|||93.73|90.35|0.00|0.00|35659|56517|7445|10000|||103.14|95.00|0.00|0.72|0001AB59|3|4| +38|2023-10-06T20:25:11.6690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69865|89994|3600|10000|12||103.79|87.06|0.00|-1.15|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:11.6690000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:11.6690000-07:00|10FF0002|Suchichi Suchi|005A5A16|21302|63089|2000|10000|16||93.73|90.35|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T20:25:11.6690000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:25:11.6690000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35659|56517|6545|10000|32||103.14|95.00|0.00|0.72|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:11.6690000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:11.6690000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:11.6690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|13237|63038|2200|10000|15||98.62|101.37|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:11.6690000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +261|2023-10-06T20:25:11.2210000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:25:11.7570000-07:00|40022550|Zeromus|0001AB56|23455744||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:11.7570000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|FE90000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|23458427|40478540|10000|10000|||100.00|80.10|0.00|0.00|69865|89994|3600|10000|||103.79|87.06|0.00|-1.15|0001AB5A|0|1| +24|2023-10-06T20:25:11.8910000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|105D|82400|89453|4900|10000|||114.80|86.16|0.00|-1.35|10FF0006|Wowobora Gogobora|0|35659|56517|6545|10000|||103.58|95.64|0.00|0.64| +27|2023-10-06T20:25:11.8910000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +27|2023-10-06T20:25:11.8910000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +38|2023-10-06T20:25:11.8910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|86589|89453|4900|10000|0||114.80|86.16|0.00|-1.35|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:25:11.8910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39725|56517|8800|10000|0||84.79|116.11|0.00|2.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:11.4210000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:25:11.6120000-07:00|Change|10FF0001||||||||| +20|2023-10-06T20:25:11.9800000-07:00|40022550|Zeromus|8B83|Dark Matter|40022550|Zeromus|3.700|100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:12.0260000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1BF9|35659|56517|6545|10000|||103.69|95.78|0.00|0.51|E0000000||0||||||||||| +38|2023-10-06T20:25:12.0260000-07:00|10FF0006|Wowobora Gogobora|005A5A28|42820|56517|7095|10000|32||103.69|95.78|0.00|0.51|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:11.6120000-07:00|Change|40022550||||||||| +261|2023-10-06T20:25:11.6120000-07:00|Change|10FF0007||||||||| +38|2023-10-06T20:25:12.1140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|33991|55377|8950|10000|0||118.36|114.24|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:12.1140000-07:00|A91|Undying Flame|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:25:12.1580000-07:00|40022550|Zeromus|0001AB58|23454160||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:12.2030000-07:00|40022550|Zeromus|0001AB54|23446838||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:12.2030000-07:00|10FF0001|Sesuga Sapisuga|0001AB54|86589|89453|5300|10000|0||113.40|87.35|0.00|-1.36|1300|0|0|0| +37|2023-10-06T20:25:12.2480000-07:00|40022550|Zeromus|0001AB55|23430413||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:12.2480000-07:00|10FF0007|Kehabiqo Febiqo|70764|89994|3800|10000|||103.09|89.62|0.00|-0.83| +37|2023-10-06T20:25:12.2930000-07:00|40022550|Zeromus|0001AB5A|23426340||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:12.3370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|33991|55377|8950|10000|0||118.36|114.24|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:12.3370000-07:00|32|Sprint|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|55377|55377| +261|2023-10-06T20:25:11.9610000-07:00|Change|10FF0004||||| +39|2023-10-06T20:25:12.4700000-07:00|10FF0002|Suchichi Suchi|21932|63089|2200|10000|||93.75|90.41|0.00|0.42| +261|2023-10-06T20:25:11.9610000-07:00|Change|10FF0002||||||||||| +24|2023-10-06T20:25:12.5600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1C1E|70764|89994|3800|10000|||102.46|91.44|0.00|-0.73|10FF0007|Kehabiqo Febiqo|0|70764|89994|3800|10000|||102.46|91.44|0.00|-0.73| +24|2023-10-06T20:25:12.5600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|111E|33991|55377|8950|10000|||118.36|114.24|0.00|-2.65|E0000000||0||||||||||| +38|2023-10-06T20:25:12.5600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77962|89994|3800|10000|12||102.46|91.44|0.00|-0.73|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:12.5600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|38373|55377|8950|10000|0||118.36|114.24|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:12.0760000-07:00|Change|10FF0002||||||||||||| +37|2023-10-06T20:25:12.6050000-07:00|10FF0006|Wowobora Gogobora|0001AB59|48476|56517|7095|10000|32||101.59|96.76|0.00|-1.00|2800|0|0|01|06000A31|0|41E8DF3A|| +21|2023-10-06T20:25:12.6050000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|23426340|40478540|10000|10000|||100.00|80.10|0.00|0.00|38373|55377|8950|10000|||118.36|114.24|0.00|-2.65|0001AB5B|0|1| +38|2023-10-06T20:25:12.6050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|38373|55377|8950|10000|0||118.36|114.24|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:12.6050000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:25:12.1700000-07:00|Change|400228F7||||||||| +38|2023-10-06T20:25:12.6500000-07:00|40022916||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:25:12.6500000-07:00|40022916||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +24|2023-10-06T20:25:12.6500000-07:00|40022550|Zeromus|DoT|A92|5EB|23426340|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|38373|55377|8950|10000|||118.36|114.24|0.00|-2.65| +37|2023-10-06T20:25:12.6500000-07:00|40022550|Zeromus|0001AB57|23388678||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:12.6500000-07:00|10FF0008|Kokosaze Lulusaze|0001AB57|38373|55377|8950|10000|0||118.36|114.24|0.00|-2.65|1B00|0|0|01|04000A92|0|41700000|| +26|2023-10-06T20:25:12.6500000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:25:12.6500000-07:00|40022550|Zeromus|005A5A00|23388678|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:12.6500000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +37|2023-10-06T20:25:12.7390000-07:00|10FF0005|Wuwuchu Wuchu|0001AB59|16380|63038|2200|10000|15||98.05|101.98|0.00|3.08|2701|0|0|01|02000A31|0|41E7CCCB|| +37|2023-10-06T20:25:12.8720000-07:00|10FF0007|Kehabiqo Febiqo|0001AB59|81479|89994|3800|10000|12||101.03|91.97|0.00|-2.70|1502|0|0|01|01000A31|0|41E6BA5C|| +38|2023-10-06T20:25:12.9620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39725|56517|8800|10000|0||84.79|116.11|0.00|2.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:12.9620000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +261|2023-10-06T20:25:12.4690000-07:00|Add|40022917||||||||||||||||||||||||||||||||| +03|2023-10-06T20:25:12.4690000-07:00|40022916|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|53095|53095|10000|10000|||118.38|114.26|0.00|-2.65| +261|2023-10-06T20:25:12.4690000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:25:12.4690000-07:00|Add|40022916||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:13.0070000-07:00|10FF0002|Suchichi Suchi|0001AB59|25195|63089|2200|10000|16||94.57|92.61|0.00|1.77|1603|0|0|01|0A31|0|41E5A7ED|| +39|2023-10-06T20:25:13.0070000-07:00|10FF0001|Sesuga Sapisuga|87483|89453|5500|10000|||111.36|89.94|0.00|-1.90| +261|2023-10-06T20:25:12.5840000-07:00|Change|40022916||||| +261|2023-10-06T20:25:12.5840000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:25:12.6990000-07:00|Change|10FF0007||||||||||| +24|2023-10-06T20:25:13.1860000-07:00|40022550|Zeromus|DoT|0|1F96|23388678|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T20:25:13.1860000-07:00|10FF0005|Wuwuchu Wuchu|5F45|Blood Stalk|40022550|Zeromus|710003|1FD20000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|23388678|40478540|10000|10000|||100.00|80.10|0.00|0.00|16380|63038|2200|10000|||97.95|101.58|0.00|3.06|0001AB5C|0|1| +38|2023-10-06T20:25:13.1860000-07:00|40022550|Zeromus|005A5A00|23380592|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:25:13.1860000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|16380|63038|2200|10000|15||97.95|101.58|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:13.1860000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +39|2023-10-06T20:25:13.2300000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|-2.80| +21|2023-10-06T20:25:13.2300000-07:00|10FF0008|Kokosaze Lulusaze|1D88|Addle|40022550|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23380592|40478540|10000|10000|||100.00|80.10|0.00|0.00|38373|55377|8950|10000|||118.10|113.89|0.00|-2.62|0001AB5D|0|1| +36|2023-10-06T20:25:13.3190000-07:00|47B8|3| +23|2023-10-06T20:25:13.3640000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|Cancelled| +39|2023-10-06T20:25:13.3640000-07:00|10FF0004|Buhojaqe Zijaqe|40290|56517|9000|10000|||84.82|116.11|0.00|2.44| +261|2023-10-06T20:25:12.9320000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:25:13.0570000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:25:13.4090000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|E570000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|23380592|40478540|10000|10000|||100.00|80.10|0.00|0.00|87483|89453|5500|10000|||111.92|87.60|0.00|-1.94|0001AB5E|0|1| +21|2023-10-06T20:25:13.4520000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|8A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23380592|40478540|10000|10000|||100.00|80.10|0.00|0.00|81479|89994|3800|10000|||98.13|90.07|0.00|3.08|0001AB5F|0|1| +21|2023-10-06T20:25:13.4980000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|4|15470000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|16380|63038|2200|10000|||97.95|101.26|0.00|3.05|54201|54201|10000|10000|||99.81|96.03|0.00|-2.24|0001AB60|0|1| +39|2023-10-06T20:25:13.4980000-07:00|10FF0006|Wowobora Gogobora|49041|56517|7300|10000|||97.95|97.50|0.00|-0.72| +21|2023-10-06T20:25:13.5880000-07:00|10FF0002|Suchichi Suchi|4B|True Thrust|40022550|Zeromus|720003|155B0000|1B|4B8000|0|0|0|0|0|0|0|0|0|0|0|0|23380592|40478540|10000|10000|||100.00|80.10|0.00|0.00|25195|63089|2200|10000|||95.60|95.84|0.00|1.84|0001AB61|0|1| +21|2023-10-06T20:25:13.5880000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|78B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23380592|40478540|10000|10000|||100.00|80.10|0.00|0.00|25195|63089|2200|10000|||95.60|95.84|0.00|1.84|0001AB62|0|1| +38|2023-10-06T20:25:13.5880000-07:00|10FF0002|Suchichi Suchi|005A5A16|25195|63089|2200|10000|16||95.60|95.84|0.00|1.84|0|0|0||||||||||||| +30|2023-10-06T20:25:13.5880000-07:00|1A2|Transcendent|0.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +37|2023-10-06T20:25:13.6320000-07:00|10FF0008|Kokosaze Lulusaze|0001AB5B|38373|55377|8950|10000|0||117.70|113.35|0.00|-2.65|1B00|0|0|01|02000AA4|0|0|| +38|2023-10-06T20:25:13.6320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|38373|55377|8950|10000|0||117.70|113.35|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:13.2600000-07:00|Change|40022916||| +37|2023-10-06T20:25:13.8550000-07:00|40022550|Zeromus|0001AB5D|23380592|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020004B3|0|41200000|| +26|2023-10-06T20:25:13.8550000-07:00|4B3|Addle|10.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|55377| +39|2023-10-06T20:25:13.8990000-07:00|10FF0005|Wuwuchu Wuchu|17010|63038|2400|10000|||97.93|101.39|0.00|3.05| +21|2023-10-06T20:25:13.8990000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23380592|40478540|10000|10000|||100.00|80.10|0.00|0.00|87483|89453|5500|10000|||112.11|87.11|0.00|-1.94|0001AB63|0|1| +31|2023-10-06T20:25:13.8990000-07:00|10FF0001||||| +261|2023-10-06T20:25:13.4420000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:25:13.4420000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:25:13.9880000-07:00|40022550|Zeromus|0001AB5F|23378380||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:13.5370000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:14.0330000-07:00|40022550|Zeromus|0001AB5E|23374709||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:14.0330000-07:00|10FF0008|Kokosaze Lulusaze|38926|55377|9150|10000|||117.57|113.18|0.00|-2.65| +21|2023-10-06T20:25:14.0330000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|D710003|2B180000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|23378380|40478540|10000|10000|||100.00|80.10|0.00|0.00|17010|63038|2400|10000|||97.87|102.03|0.00|3.05|0001AB64|0|1| +38|2023-10-06T20:25:14.0330000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|17010|63038|2400|10000|15||97.87|102.03|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:14.0330000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +26|2023-10-06T20:25:14.0330000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:25:14.0770000-07:00|40022550|Zeromus|0001AB5C|23366563||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:13.6320000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:25:14.0770000-07:00|10FF0005|Wuwuchu Wuchu|0001AB5C|17010|63038|2400|10000|15||97.87|102.03|0.00|3.05|2700|0|0|01|05000A1D|0|C2700000|| +37|2023-10-06T20:25:14.1220000-07:00|40022550|Zeromus|0001AB62|23364632||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:13.6320000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:25:14.2100000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32714003|1DA40000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|23364632|40478540|10000|10000|||100.00|80.10|0.00|0.00|81479|89994|3800|10000|||94.76|87.63|0.00|2.77|0001AB65|0|1| +21|2023-10-06T20:25:14.2100000-07:00|10FF0006|Wowobora Gogobora|5EEF|Taurochole|10FF0007|Kehabiqo Febiqo|4|63930000|F60E|A3B0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|81479|89994|3800|10000|||94.76|87.63|0.00|2.77|49041|56517|7300|10000|||99.02|101.36|-0.01|0.37|0001AB66|0|1| +37|2023-10-06T20:25:14.3010000-07:00|10FF0005|Wuwuchu Wuchu|0001AB60|22457|63038|2400|10000|15||97.83|102.27|0.00|3.05|2700|0|0|01|05000A1D|0|C2700000|| +21|2023-10-06T20:25:14.3010000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|87483|89453|5500|10000|||112.22|86.83|0.00|-1.94|87483|89453|5500|10000|||112.22|86.83|0.00|-1.94|0001AB67|0|1| +37|2023-10-06T20:25:14.3440000-07:00|40022550|Zeromus|0001AB61|23359165||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:14.4340000-07:00|40022550|Zeromus|0001AB63|23357884||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:14.4340000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|88C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23359165|40478540|10000|10000|||100.00|80.10|0.00|0.00|22457|63038|2400|10000|||97.83|102.30|0.00|3.06|0001AB68|0|1| +37|2023-10-06T20:25:14.5240000-07:00|40022550|Zeromus|0001AB64|23346852||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:14.5240000-07:00|10FF0005|Wuwuchu Wuchu|0001AB64|22457|63038|2400|10000|15||97.90|102.31|0.00|3.13|2700|0|0|01|05000A1D|0|42700000|| +38|2023-10-06T20:25:14.5240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|22457|63038|2400|10000|15||97.90|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:14.1960000-07:00|Change|400228F7||| +261|2023-10-06T20:25:14.1960000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:25:14.7010000-07:00|40022916|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|152003|981D0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|23346852|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||118.38|114.26|0.00|-2.65|0001AB69|0|1| +37|2023-10-06T20:25:14.8350000-07:00|40022550|Zeromus|0001AB65|23339264||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:14.8350000-07:00|10FF0001|Sesuga Sapisuga|0001AB67|87483|89453|5500|10000|0||112.22|86.83|0.00|-1.94|1300|0|0|01|0500004A|0|41700000|| +26|2023-10-06T20:25:14.8350000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +37|2023-10-06T20:25:14.8790000-07:00|10FF0007|Kehabiqo Febiqo|0001AB66|89994|89994|3800|10000|12||92.58|86.69|0.00|2.56|1500|0|0|01|05000A3B|0|41700000|| +26|2023-10-06T20:25:14.8790000-07:00|A3B|Taurochole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +37|2023-10-06T20:25:14.8790000-07:00|10FF0006|Wowobora Gogobora|0001AB66|49041|56517|8000|10000|32||99.04|101.45|0.00|2.89|2800|0|0|0| +24|2023-10-06T20:25:14.8790000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|10CB|87483|89453|5500|10000|||112.22|86.83|0.00|-1.94|10FF0006|Wowobora Gogobora|0|49041|56517|7300|10000|||99.04|101.45|0.00|2.89| +38|2023-10-06T20:25:14.8790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|5500|10000|0||112.22|86.83|0.00|-1.94|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:25:14.8790000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:25:14.9680000-07:00|40022550|Zeromus|0001AB68|23337076||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:14.9680000-07:00|10FF0007|Kehabiqo Febiqo|2C|Vengeance|10FF0007|Kehabiqo Febiqo|6400E20E|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|3800|10000|||92.07|86.46|0.00|2.63|89994|89994|3800|10000|||92.07|86.46|0.00|2.63|0001AB6A|0|1| +21|2023-10-06T20:25:14.9680000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13300F|A748000|0|0|0|0|0|0|0|0|0|0|89453|89453|5500|10000|||112.22|86.83|0.00|-1.94|89453|89453|5500|10000|||112.22|86.83|0.00|-1.94|0001AB6B|0|1| +261|2023-10-06T20:25:14.4780000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:25:14.4780000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:25:14.9690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|5500|10000|0||112.22|86.83|0.00|-1.94|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:14.9690000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +26|2023-10-06T20:25:14.9690000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +26|2023-10-06T20:25:14.9690000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +31|2023-10-06T20:25:14.9690000-07:00|10FF0001||||| +24|2023-10-06T20:25:15.0130000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1172|49041|56517|8000|10000|||99.02|101.43|0.00|3.11|E0000000||0||||||||||| +38|2023-10-06T20:25:15.0130000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53507|56517|8550|10000|32||99.02|101.43|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:15.0130000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +20|2023-10-06T20:25:15.0580000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|117.88|113.09|0.00|2.37| +261|2023-10-06T20:25:14.5960000-07:00|Change|10FF0008||||||||||||||||||||| +39|2023-10-06T20:25:15.2360000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|4000|10000|||91.33|86.14|0.00|2.72| +21|2023-10-06T20:25:15.2370000-07:00|10FF0006|Wowobora Gogobora|5EFD|Krasis|10FF0007|Kehabiqo Febiqo|140E|A3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|4000|10000|||91.33|86.14|0.00|2.72|53507|56517|8550|10000|||98.81|100.74|0.00|-2.95|0001AB6C|0|1| +261|2023-10-06T20:25:14.8350000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T20:25:15.4600000-07:00|10FF0002|Suchichi Suchi|25825|63089|2400|10000|||98.57|100.60|0.00|2.99| +24|2023-10-06T20:25:15.5480000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1021|89994|89994|4000|10000|||91.33|86.14|0.00|2.72|10FF0007|Kehabiqo Febiqo|0|89994|89994|4000|10000|||91.33|86.14|0.00|2.72| +24|2023-10-06T20:25:15.5480000-07:00|40022550|Zeromus|DoT|A92|5A5|23337076|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|38926|55377|9150|10000|||117.91|113.08|-0.01|-2.81| +24|2023-10-06T20:25:15.5480000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|19F9|38926|55377|9150|10000|||117.91|113.08|-0.01|-2.81|E0000000||0||||||||||| +38|2023-10-06T20:25:15.5480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|4000|10000|12||91.33|86.14|0.00|2.72|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:15.5480000-07:00|40022550|Zeromus|005A5A00|23335631|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:15.5480000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:25:15.5480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|45575|55377|9150|10000|0||117.91|113.08|-0.01|-2.81|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:15.5930000-07:00|10FF0007|Kehabiqo Febiqo|0001AB6A|89994|89994|4000|10000|12||91.33|86.14|0.00|2.72|1500|0|0|01|08000059|64|41700000|| +26|2023-10-06T20:25:15.5930000-07:00|59|Vengeance|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|89994|89994| +261|2023-10-06T20:25:15.2640000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:25:15.3560000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:25:15.8610000-07:00|10FF0005|Wuwuchu Wuchu|5F54|Arcane Crest|10FF0005|Wuwuchu Wuchu|F9F0F|A258000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22457|63038|2400|10000|||95.77|104.09|0.00|-2.91|22457|63038|2400|10000|||95.77|104.09|0.00|-2.91|0001AB6D|0|1| +38|2023-10-06T20:25:15.8610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|22457|63038|2400|10000|25||95.77|104.09|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:15.8610000-07:00|A25|Crest of Time Borrowed|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +21|2023-10-06T20:25:15.9050000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|15DB0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|23335631|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|5500|10000|||112.22|86.83|0.00|-2.07|0001AB6E|0|1| +21|2023-10-06T20:25:15.9490000-07:00|40022550|Zeromus|8B83|Dark Matter|40022550|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23335631|40478540|10000|10000|||100.00|80.10|0.00|0.00|23335631|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AB6F|0|1| +261|2023-10-06T20:25:15.4520000-07:00|Change|40022550||||| +261|2023-10-06T20:25:15.4520000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:15.9940000-07:00|10FF0007|Kehabiqo Febiqo|0001AB6C|89994|89994|4000|10000|12||91.33|86.14|0.00|2.72|1500|0|0|01|09000A3E|0|41200000|| +26|2023-10-06T20:25:15.9940000-07:00|A3E|Krasis|10.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +37|2023-10-06T20:25:15.9940000-07:00|10FF0005|Wuwuchu Wuchu|0001AB6D|22457|63038|2400|10000|25||95.72|103.58|0.00|2.86|2700|0|0|01|06000A25|0|40A00000|| +39|2023-10-06T20:25:15.9940000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|5700|10000|||112.22|86.83|0.00|-2.07| +38|2023-10-06T20:25:15.9940000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|22457|63038|2400|10000|25||95.72|103.58|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:16.0390000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53507|56517|8550|10000|32||99.98|101.36|0.00|0.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:16.0390000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:25:16.0390000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53507|56517|8550|10000|||99.98|101.36|0.00|0.14|53507|56517|8550|10000|||99.98|101.36|0.00|0.14|0001AB70|0|1| +21|2023-10-06T20:25:16.0840000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|17B50000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|23335631|40478540|10000|10000|||100.00|80.10|0.00|0.00|25825|63089|2400|10000|||99.74|100.49|0.00|1.89|0001AB71|0|1| +38|2023-10-06T20:25:16.0840000-07:00|10FF0002|Suchichi Suchi|005A5A16|25825|63089|2400|10000|16||99.74|100.49|0.00|1.89|0|0|0|||||||||||||||| +26|2023-10-06T20:25:16.0840000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:15.6570000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:25:16.1740000-07:00|40022550|Zeromus|DoT|0|2131|23335631|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T20:25:16.1740000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23335631|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|5700|10000|||112.22|86.83|0.00|-2.07|0001AB72|0|1| +38|2023-10-06T20:25:16.1740000-07:00|40022550|Zeromus|005A5A00|23327134|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +31|2023-10-06T20:25:16.1740000-07:00|10FF0001||||| +39|2023-10-06T20:25:16.2180000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|3.13| +39|2023-10-06T20:25:16.3520000-07:00|10FF0004|Buhojaqe Zijaqe|40855|56517|9200|10000|||95.93|101.85|0.00|2.41| +36|2023-10-06T20:25:16.3520000-07:00|4894|3| +21|2023-10-06T20:25:16.3960000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23327134|40478540|10000|10000|||100.00|80.10|0.00|0.00|25825|63089|2400|10000|||99.50|100.53|0.00|-2.78|0001AB73|0|1| +33|2023-10-06T20:25:16.4410000-07:00|80034E7C|40000007|00|01|00|00| +38|2023-10-06T20:25:16.4410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|45575|55377|9150|10000|0||117.91|113.08|0.00|-2.64|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:16.4410000-07:00|ED7|Forked Lightning|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +38|2023-10-06T20:25:16.4410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40855|56517|9200|10000|0||96.40|101.35|0.00|2.40|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:16.4410000-07:00|ED2|Beckoning Dark|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:25:16.4410000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|51159|0|10000|0||106.22|102.31|0.00|2.08|0|0|0||||||||||||| +30|2023-10-06T20:25:16.4410000-07:00|ED7|Forked Lightning|0.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +261|2023-10-06T20:25:16.0080000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:25:16.0080000-07:00|Change|4002256C||||||||| +39|2023-10-06T20:25:16.4850000-07:00|10FF0006|Wowobora Gogobora|54072|56517|8755|10000|||100.69|102.10|0.00|0.80| +21|2023-10-06T20:25:16.5300000-07:00|4002256C|Zeromus|8B54|Forked Lightning|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB74|0|0| +36|2023-10-06T20:25:16.5300000-07:00|49C0|3| +36|2023-10-06T20:25:16.5300000-07:00|4AEC|3| +22|2023-10-06T20:25:16.5300000-07:00|4002256D|Zeromus|8D3A|the Dark Beckons|10FF0004|Buhojaqe Zijaqe|750003|7C800000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|40855|56517|9200|10000|||96.40|101.35|0.00|2.40|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB75|0|4| +22|2023-10-06T20:25:16.5300000-07:00|4002256D|Zeromus|8D3A|the Dark Beckons|10FF0005|Wuwuchu Wuchu|750003|44050000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|22457|63038|2400|10000|||95.84|103.15|0.00|2.73|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB75|1|4| +22|2023-10-06T20:25:16.5300000-07:00|4002256D|Zeromus|8D3A|the Dark Beckons|10FF0002|Suchichi Suchi|750003|5BEA0000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|25825|63089|2400|10000|||99.36|100.56|0.00|-2.58|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB75|2|4| +22|2023-10-06T20:25:16.5300000-07:00|4002256D|Zeromus|8D3A|the Dark Beckons|10FF0006|Wowobora Gogobora|750003|343D0000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|53507|56517|8550|10000|||100.69|102.10|0.00|0.80|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB75|3|4| +21|2023-10-06T20:25:16.5300000-07:00|4002256E|Zeromus|8B54|Forked Lightning|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB76|0|0| +38|2023-10-06T20:25:16.5300000-07:00|10FF0002|Suchichi Suchi|005A5A16|25825|63089|2400|10000|16||99.36|100.56|0.00|-2.58|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:16.5300000-07:00|B7D|Magic Vulnerability Up|1.96|4002256D|Zeromus|10FF0002|Suchichi Suchi|00|63089|44| +38|2023-10-06T20:25:16.5300000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54072|56517|8755|10000|32||100.69|102.10|0.00|0.80|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:16.5300000-07:00|B7D|Magic Vulnerability Up|1.96|4002256D|Zeromus|10FF0006|Wowobora Gogobora|00|56517|44| +38|2023-10-06T20:25:16.5300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40855|56517|9200|10000|0||96.40|101.35|0.00|2.40|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:25:16.5300000-07:00|B7D|Magic Vulnerability Up|1.96|4002256D|Zeromus|10FF0004|Buhojaqe Zijaqe|00|56517|44| +38|2023-10-06T20:25:16.5300000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|22457|63038|2400|10000|25||95.84|103.15|0.00|2.73|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:16.5300000-07:00|B7D|Magic Vulnerability Up|1.96|4002256D|Zeromus|10FF0005|Wuwuchu Wuchu|00|63038|44| +21|2023-10-06T20:25:16.5740000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022550|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23327134|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|5700|10000|||112.22|86.83|0.00|-2.07|0001AB77|0|1| +04|2023-10-06T20:25:16.1240000-07:00|400228F7|Carbuncle|00|5A|10FF0008|00||10261|13498|0|53095|0|10000|||118.30|112.32|0.00|0.56| +261|2023-10-06T20:25:16.1240000-07:00|Remove|400228F7| +21|2023-10-06T20:25:16.6190000-07:00|10FF0005|Wuwuchu Wuchu|1D75|Second Wind|10FF0005|Wuwuchu Wuchu|4|21D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22457|63038|2400|10000|||95.87|103.06|0.00|2.70|22457|63038|2400|10000|||95.87|103.06|0.00|2.70|0001AB78|0|1| +37|2023-10-06T20:25:16.6640000-07:00|40022550|Zeromus|0001AB69|23288193||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:16.6640000-07:00|40022550|Zeromus|0001AB6E|23282598||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:16.6640000-07:00|10FF0001|Sesuga Sapisuga|0001AB6E|89453|89453|6700|10000|0||112.22|86.83|0.00|-2.07|1300|0|0|0| +21|2023-10-06T20:25:16.6640000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|24B30000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|23327134|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|4000|10000|||91.33|86.14|0.00|2.64|0001AB79|0|1| +20|2023-10-06T20:25:16.6640000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|97.12|100.54|0.00|2.39| +38|2023-10-06T20:25:16.6640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|4000|10000|12||91.33|86.14|0.00|2.64|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:16.6640000-07:00|A75|Surging Tempest|38.89|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +37|2023-10-06T20:25:16.7070000-07:00|40022550|Zeromus|0001AB72|23281359||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:16.7520000-07:00|4002256A|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750203|5DE60000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|6700|10000|||112.22|86.83|0.00|-2.07|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB7A|0|1| +21|2023-10-06T20:25:16.7520000-07:00|4002256B|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|466B0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|4000|10000|||91.33|86.14|0.00|2.18|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB7B|0|1| +261|2023-10-06T20:25:16.3170000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:25:16.8410000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|D4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23281359|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|4000|10000|||91.33|86.14|0.00|2.18|0001AB7C|0|1| +39|2023-10-06T20:25:16.8850000-07:00|10FF0005|Wuwuchu Wuchu|23087|63038|2600|10000|||95.94|102.86|0.00|2.57| +33|2023-10-06T20:25:16.8850000-07:00|80034E7C|80000004|CE3|00|00|00| +261|2023-10-06T20:25:16.4180000-07:00|Change|10FF0005||||||||||| +37|2023-10-06T20:25:16.9290000-07:00|40022550|Zeromus|0001AB73|23279222||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:16.9290000-07:00|10FF0002|Suchichi Suchi|0001AB73|25825|63089|2400|10000|16||98.66|100.74|0.00|-2.67|1600|0|0|01|04000AA0|0|C1F00000|| +261|2023-10-06T20:25:16.5080000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:25:17.0190000-07:00|10FF0008|Kokosaze Lulusaze|46128|55377|9350|10000|||117.91|113.08|0.00|-2.64| +261|2023-10-06T20:25:16.5080000-07:00|Change|10FF0008||||||||||||| +22|2023-10-06T20:25:17.1100000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|E530000|D60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|54072|56517|7855|10000|||100.10|99.96|0.00|-2.44|54072|56517|7855|10000|||100.10|99.96|0.00|-2.44|0001AB7D|0|4| +22|2023-10-06T20:25:17.1100000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|200004|14080000|190E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|25825|63089|2400|10000|||98.35|100.81|-0.01|-2.76|54072|56517|7855|10000|||100.10|99.96|0.00|-2.44|0001AB7D|1|4| +22|2023-10-06T20:25:17.1100000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|CF60000|790E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|40855|56517|9200|10000|||97.52|100.12|0.00|2.29|54072|56517|7855|10000|||100.10|99.96|0.00|-2.44|0001AB7D|2|4| +22|2023-10-06T20:25:17.1100000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|200004|13FE0000|F90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|23087|63038|2600|10000|||98.11|102.62|0.00|2.57|54072|56517|7855|10000|||100.10|99.96|0.00|-2.44|0001AB7D|3|4| +38|2023-10-06T20:25:17.1100000-07:00|10FF0002|Suchichi Suchi|005A5A16|25825|63089|2400|10000|26||98.35|100.81|-0.01|-2.76|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:17.1100000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:25:17.1100000-07:00|40022550|Zeromus|005A5A00|23279222|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:17.1100000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|56517| +38|2023-10-06T20:25:17.1100000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54072|56517|7855|10000|20||100.10|99.96|0.00|-2.44|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:17.1100000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:17.1100000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:17.1100000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:17.1100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40855|56517|9200|10000|18||97.52|100.12|0.00|2.29|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:25:17.1100000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:25:17.1100000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|23087|63038|2600|10000|25||98.11|102.62|0.00|2.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:17.1100000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:25:17.1540000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB75|8983|56517|9200|10000|18||97.52|100.12|0.00|2.29|1C00|0|0|01|04000B7D|0|3FB020C7|| +261|2023-10-06T20:25:16.7380000-07:00|Change|10FF0001||| +37|2023-10-06T20:25:17.1990000-07:00|10FF0005|Wuwuchu Wuchu|0001AB75|5674|63038|2600|10000|25||98.11|102.62|0.00|2.57|2701|0|0|02|06000A26|0|41700000|||||| +30|2023-10-06T20:25:17.1990000-07:00|A25|Crest of Time Borrowed|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:25:17.1990000-07:00|A26|Crest of Time Returned|15.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:25:17.1990000-07:00|40022550|Zeromus|0001AB77|23279222|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04A9|0|41200000|| +26|2023-10-06T20:25:17.1990000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +38|2023-10-06T20:25:17.1990000-07:00|10FF0002|Suchichi Suchi|005A5A16|25825|63089|2400|10000|26||98.35|100.81|-0.01|-2.76|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:17.1990000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|63089|63038| +38|2023-10-06T20:25:17.1990000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-2.59|0|0|0|||||||||| +26|2023-10-06T20:25:17.1990000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|54201|63038| +38|2023-10-06T20:25:17.1990000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54072|56517|7855|10000|20||100.10|99.96|0.00|-2.44|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:17.1990000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|56517|63038| +38|2023-10-06T20:25:17.1990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|8983|56517|9200|10000|18||97.52|100.12|0.00|2.29|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:25:17.1990000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|56517|63038| +38|2023-10-06T20:25:17.1990000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|5674|63038|2600|10000|25||98.11|102.62|0.00|2.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:17.2440000-07:00|10FF0002|Suchichi Suchi|0001AB75|2295|63089|2400|10000|26||98.34|100.82|0.00|-2.77|1602|0|0|02|04000AA0|0|C1F00000|||||| +37|2023-10-06T20:25:17.2440000-07:00|10FF0005|Wuwuchu Wuchu|0001AB78|14330||||||98.57|102.10|0.00|2.57| +37|2023-10-06T20:25:17.2880000-07:00|10FF0006|Wowobora Gogobora|0001AB75|40699|56517|7855|10000|20||100.02|99.67|0.00|-2.56|2803|0|0|01|07000B7D|0|3F9ED91A|| +21|2023-10-06T20:25:17.2880000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|464E0000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|4000|10000|||91.33|86.14|0.00|2.18|89994|89994|4000|10000|||91.33|86.14|0.00|2.18|0001AB7E|0|1| +21|2023-10-06T20:25:17.2880000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|4FFE0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|23279222|40478540|10000|10000|||100.00|80.10|0.00|0.00|46128|55377|9350|10000|||117.91|113.08|0.00|-2.64|0001AB7F|0|1| +261|2023-10-06T20:25:16.8590000-07:00|Change|10FF0001||| +21|2023-10-06T20:25:17.3320000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|15130000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|2295|63089|2400|10000|||98.34|100.82|0.00|-2.77|54201|54201|10000|10000|||99.81|96.03|0.00|-1.90|0001AB80|0|1| +37|2023-10-06T20:25:17.3780000-07:00|40022550|Zeromus|0001AB7C|23275818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:17.3780000-07:00|10FF0001|Sesuga Sapisuga|0001AB7A|65415||||||112.22|86.83|0.00|-2.07| +37|2023-10-06T20:25:17.3780000-07:00|10FF0007|Kehabiqo Febiqo|0001AB7B|71967|89994|4000|10000|0||91.33|86.14|0.00|2.18|1500|0|0|01|01000000|0|0|| +21|2023-10-06T20:25:17.3780000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|712003|2D400000|A000A0E|A1A0000|0|0|0|0|0|0|0|0|0|0|0|0|23279222|40478540|10000|10000|||100.00|80.10|0.00|0.00|14330|63038|2600|10000|||98.76|101.61|-0.02|2.57|0001AB81|0|1| +38|2023-10-06T20:25:17.3780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|71967|89994|4000|10000|0||91.33|86.14|0.00|2.18|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:17.3780000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:17.3780000-07:00|40022550|Zeromus|005A5A00|23275818|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:17.3780000-07:00|A1A|Death's Design|30.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|63038| +261|2023-10-06T20:25:17.0990000-07:00|Change|10FF0008||||||||||||||| +24|2023-10-06T20:25:17.5990000-07:00|40022666|Ruby Carbuncle|HoT|0|39A|54201|54201|10000|10000|||99.81|96.03|0.00|-1.08|10FF0005|Wuwuchu Wuchu|0|14330|63038|2600|10000|||98.69|101.47|0.00|3.08| +38|2023-10-06T20:25:17.5990000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-1.08|0|0|0|||||||||| +24|2023-10-06T20:25:17.6440000-07:00|10FF0002|Suchichi Suchi|HoT|0|39B|2295|63089|2400|10000|||98.34|100.78|0.00|-2.89|10FF0005|Wuwuchu Wuchu|0|14330|63038|2600|10000|||98.68|101.43|0.00|3.01| +21|2023-10-06T20:25:17.6440000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|BB30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23275818|40478540|10000|10000|||100.00|80.10|0.00|0.00|14330|63038|2600|10000|||98.68|101.43|0.00|3.01|0001AB82|0|1| +38|2023-10-06T20:25:17.6440000-07:00|10FF0002|Suchichi Suchi|005A5A16|3218|63089|2400|10000|26||98.34|100.78|0.00|-2.89|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:25:17.7340000-07:00|40022550|Zeromus|0001AB71|23269749||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:17.7340000-07:00|10FF0002|Suchichi Suchi|0001AB71|3218|63089|2400|10000|26||98.34|100.78|0.00|-2.89|1600|0|0|01|04000AA0|0|41F00000|| +22|2023-10-06T20:25:17.7340000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0006|Wowobora Gogobora|F8C0E|A350000|50F8C0E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|40699|56517|7855|10000|||99.85|99.10|0.00|-1.27|40699|56517|7855|10000|||99.85|99.10|0.00|-1.27|0001AB83|0|7| +22|2023-10-06T20:25:17.7340000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0005|Wuwuchu Wuchu|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|14330|63038|2600|10000|||98.68|101.43|0.00|3.01|40699|56517|7855|10000|||99.85|99.10|0.00|-1.27|0001AB83|1|7| +22|2023-10-06T20:25:17.7340000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0004|Buhojaqe Zijaqe|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|8983|56517|9200|10000|||97.61|100.02|0.00|2.27|40699|56517|7855|10000|||99.85|99.10|0.00|-1.27|0001AB83|2|7| +22|2023-10-06T20:25:17.7340000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0002|Suchichi Suchi|FF40E|A350000|50FF40E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|2295|63089|2400|10000|||98.34|100.78|0.00|-2.89|40699|56517|7855|10000|||99.85|99.10|0.00|-1.27|0001AB83|3|7| +22|2023-10-06T20:25:17.7340000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0007|Kehabiqo Febiqo|F410E|A350000|50F410E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|71967|89994|4000|10000|||91.33|86.14|0.00|2.18|40699|56517|7855|10000|||99.85|99.10|0.00|-1.27|0001AB83|4|7| +22|2023-10-06T20:25:17.7340000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0001|Sesuga Sapisuga|F8C0E|A350000|50F8C0E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|65415|89453|6700|10000|||112.22|86.83|0.00|-2.07|40699|56517|7855|10000|||99.85|99.10|0.00|-1.27|0001AB83|5|7| +22|2023-10-06T20:25:17.7340000-07:00|10FF0006|Wowobora Gogobora|5EF7|Panhaima|10FF0008|Kokosaze Lulusaze|F8C0E|A350000|50F8C0E|A530000|0|0|0|0|0|0|0|0|0|0|0|0|46128|55377|9050|10000|||117.91|113.08|0.00|-2.64|40699|56517|7855|10000|||99.85|99.10|0.00|-1.27|0001AB83|6|7| +38|2023-10-06T20:25:17.7340000-07:00|10FF0002|Suchichi Suchi|005A5A16|3218|63089|2400|10000|26||98.34|100.78|0.00|-2.89|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:25:17.7340000-07:00|A53|Panhaimatinon|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|05|63089|56517| +24|2023-10-06T20:25:17.8680000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3156|65415|89453|6700|10000|||112.22|86.83|0.00|-2.07|10FF0006|Wowobora Gogobora|0|40699|56517|7855|10000|||99.52|99.89|0.00|-0.32| +24|2023-10-06T20:25:17.8680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|368|8983|56517|9200|10000|||97.61|100.02|0.00|2.27|10FF0006|Wowobora Gogobora|0|40699|56517|7855|10000|||99.52|99.89|0.00|-0.32| +38|2023-10-06T20:25:17.8680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|78045|89453|6700|10000|0||112.22|86.83|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:17.8680000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:25:17.8680000-07:00|A53|Panhaimatinon|14.87|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|05|89453|56517| +38|2023-10-06T20:25:17.8680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|9855|56517|9200|10000|18||97.61|100.02|0.00|2.27|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:25:17.8680000-07:00|A53|Panhaimatinon|14.87|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|05|56517|56517| +37|2023-10-06T20:25:17.9130000-07:00|10FF0007|Kehabiqo Febiqo|0001AB7E|89965|107993|4000|10000|0||91.33|86.14|0.00|2.18|1500|0|0|01|0C000057|0|41200000|| +26|2023-10-06T20:25:17.9130000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +37|2023-10-06T20:25:17.9130000-07:00|40022550|Zeromus|0001AB7F|23249271||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:17.9130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89965|107993|4000|10000|0||91.33|86.14|0.00|2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:17.9130000-07:00|A53|Panhaimatinon|14.82|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|05|89994|56517| +24|2023-10-06T20:25:17.9570000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|37B|14330|63038|2600|10000|||98.65|101.37|0.00|2.97|E0000000||0||||||||||| +38|2023-10-06T20:25:17.9570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|15221|63038|2600|10000|25||98.65|101.37|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:17.9570000-07:00|A53|Panhaimatinon|14.78|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|05|63038|56517| +261|2023-10-06T20:25:17.5620000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:25:17.5620000-07:00|Change|10FF0001||| +24|2023-10-06T20:25:18.0010000-07:00|10FF0006|Wowobora Gogobora|HoT|0|13CA|40699|56517|7855|10000|||99.27|100.53|0.00|-0.32|E0000000||0||||||||||| +38|2023-10-06T20:25:18.0010000-07:00|10FF0006|Wowobora Gogobora|005A5A28|45765|56517|8405|10000|20||99.27|100.53|0.00|-0.32|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:18.0010000-07:00|A53|Panhaimatinon|14.73|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|05|56517|56517| +37|2023-10-06T20:25:18.0470000-07:00|10FF0006|Wowobora Gogobora|0001AB7D|49432|56517|8405|10000|20||99.27|100.53|0.00|-0.32|2800|0|0|01|06000A31|0|41E8DD2C|| +22|2023-10-06T20:25:18.0470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|18E30000|D10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|9855|56517|9200|10000|||97.61|100.02|0.00|2.27|9855|56517|9200|10000|||97.61|100.02|0.00|2.27|0001AB84|0|4| +22|2023-10-06T20:25:18.0470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|200004|29040000|A00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|3218|63089|2400|10000|||97.54|100.66|0.00|-3.10|9855|56517|9200|10000|||97.61|100.02|0.00|2.27|0001AB84|1|4| +261|2023-10-06T20:25:17.5620000-07:00|Change|10FF0004||||||||||||||||||||| +22|2023-10-06T20:25:18.0470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1BF00000|B30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|40699|56517|7855|10000|||99.27|100.53|0.00|-0.32|9855|56517|9200|10000|||97.61|100.02|0.00|2.27|0001AB84|2|4| +22|2023-10-06T20:25:18.0470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|200004|286B0000|AB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|15221|63038|2600|10000|||98.63|101.33|0.00|2.95|9855|56517|9200|10000|||97.61|100.02|0.00|2.27|0001AB84|3|4| +38|2023-10-06T20:25:18.0470000-07:00|10FF0002|Suchichi Suchi|005A5A16|3218|63089|2400|10000|26||97.54|100.66|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:18.0470000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:25:18.0470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:25:18.0470000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49432|56517|8405|10000|20||99.27|100.53|0.00|-0.32|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.0470000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:18.0470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:18.0470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|9855|56517|8200|10000|18||97.61|100.02|0.00|2.27|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.0470000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:25:18.0470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:25:18.0470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|15221|63038|2600|10000|26||98.63|101.33|0.00|2.95|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.0470000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +26|2023-10-06T20:25:18.0470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +36|2023-10-06T20:25:18.1340000-07:00|4D44|3| +37|2023-10-06T20:25:18.1340000-07:00|10FF0002|Suchichi Suchi|0001AB80|8613||||||97.35|100.64|-0.01|-3.13| +37|2023-10-06T20:25:18.1800000-07:00|10FF0002|Suchichi Suchi|0001AB7D|13741||||||97.35|100.64|-0.01|-3.13| +37|2023-10-06T20:25:18.1800000-07:00|40022550|Zeromus|0001AB82|23246276||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:18.2260000-07:00|10FF0007|Kehabiqo Febiqo|91044|107993|4200|10000|||91.33|86.14|0.00|2.18| +20|2023-10-06T20:25:18.2260000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|117.91|113.08|0.00|-2.64| +261|2023-10-06T20:25:17.7860000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:18.3150000-07:00|40022550|Zeromus|0001AB79|23236881||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:18.3150000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB7D|13173||||||97.61|100.02|0.00|2.27| +21|2023-10-06T20:25:18.3150000-07:00|4002256A|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750203|52350000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|78045|89453|6700|10000|||112.22|86.83|0.00|-2.07|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB85|0|1| +21|2023-10-06T20:25:18.3150000-07:00|4002256B|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|65590000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|91044|107993|4200|10000|||91.33|86.14|0.00|2.18|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB86|0|1| +38|2023-10-06T20:25:18.3150000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49432|56517|8405|10000|20||99.19|100.73|0.00|-1.32|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.3150000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:25:18.4020000-07:00|10FF0006|Wowobora Gogobora|0001AB83|49432|56517|8405|10000|33||99.01|100.58|0.00|-2.15|2800|0|0|02|05000A35|0|41700000|||||| +26|2023-10-06T20:25:18.4020000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:18.4020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49432|56517|8405|10000|33||99.01|100.58|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:18.4470000-07:00|10FF0005|Wuwuchu Wuchu|0001AB7D|20339||||||99.16|101.53|0.00|2.98| +39|2023-10-06T20:25:18.4470000-07:00|10FF0002|Suchichi Suchi|14371|63089|2600|10000|||97.33|100.58|0.00|2.91| +261|2023-10-06T20:25:18.0180000-07:00|Change|10FF0002||||||||||| +21|2023-10-06T20:25:18.4470000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0001|Sesuga Sapisuga|6400F60E|7420000|F60E|A770000|360E|A780000|90A3000F|7418000|0|0|0|0|0|0|0|0|78045|89453|6700|10000|||112.22|86.83|0.00|-2.07|91044|107993|4200|10000|||91.33|86.14|0.00|2.18|0001AB87|0|1| +38|2023-10-06T20:25:18.4470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91044|107993|4200|10000|0||91.33|86.14|0.00|2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.4470000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|107993|56517| +38|2023-10-06T20:25:18.4910000-07:00|10FF0002|Suchichi Suchi|005A5A16|14371|63089|2600|10000|26||97.33|100.58|0.00|2.91|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:18.4910000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0002|Suchichi Suchi|00|63089|44| +38|2023-10-06T20:25:18.4910000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49432|56517|8405|10000|33||99.01|100.58|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.4910000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0006|Wowobora Gogobora|00|56517|44| +38|2023-10-06T20:25:18.4910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|13173|56517|8200|10000|18||97.61|100.02|0.00|2.27|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.4910000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0004|Buhojaqe Zijaqe|00|56517|44| +38|2023-10-06T20:25:18.4910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|20339|63038|2600|10000|26||99.16|101.53|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.4910000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0005|Wuwuchu Wuchu|00|63038|44| +261|2023-10-06T20:25:18.1320000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:25:18.5350000-07:00|10FF0005|Wuwuchu Wuchu|0001AB83|20339|63038|2600|10000|36||99.16|101.53|0.00|2.98|2701|0|0|02|07000A35|0|41700000|||||| +26|2023-10-06T20:25:18.5350000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:25:18.5350000-07:00|40022550|Zeromus|0001AB81|23225297|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A1A|0A|41E71892|| +24|2023-10-06T20:25:18.5350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1AB6|91044|107993|4200|10000|||91.33|86.14|0.00|2.18|10FF0007|Kehabiqo Febiqo|0|91044|107993|4200|10000|||91.33|86.14|0.00|2.18| +24|2023-10-06T20:25:18.5350000-07:00|40022550|Zeromus|DoT|A92|7CA|23236881|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|46128|55377|9050|10000|||117.91|113.08|0.00|-2.64| +24|2023-10-06T20:25:18.5350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1C28|46128|55377|9050|10000|||117.91|113.08|0.00|-2.64|10FF0006|Wowobora Gogobora|0|49432|56517|8405|10000|||99.01|100.58|0.00|-2.15| +38|2023-10-06T20:25:18.5350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|97882|107993|4200|10000|0||91.33|86.14|0.00|2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:18.5350000-07:00|40022550|Zeromus|005A5A00|23223303|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:18.5350000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:25:18.5350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53336|55377|9050|10000|0||117.91|113.08|0.00|-2.64|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:25:18.5350000-07:00|A53|Panhaimatinon|14.20|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|05|55377|56517| +38|2023-10-06T20:25:18.5350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|20339|63038|2600|10000|36||99.30|101.58|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:25:18.5800000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|1F620000|177F0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|23223303|40478540|10000|10000|||100.00|80.10|0.00|0.00|14371|63089|2600|10000|||97.42|100.58|-0.02|3.07|0001AB88|0|1| +38|2023-10-06T20:25:18.5800000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49432|56517|8405|10000|33||98.91|100.46|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:18.5800000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:25:18.5800000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|49432|56517|8405|10000|||98.91|100.46|0.00|-2.98|49432|56517|8405|10000|||98.91|100.46|0.00|-2.98|0001AB89|0|1| +38|2023-10-06T20:25:18.5800000-07:00|10FF0002|Suchichi Suchi|005A5A16|14371|63089|2600|10000|26||97.42|100.58|-0.02|3.07|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:25:18.5800000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:25:18.5800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53336|55377|9050|10000|0||117.91|113.08|0.00|-2.64|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:18.5800000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +37|2023-10-06T20:25:18.6700000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB83|13173|56517|8200|10000|29||97.61|100.02|0.00|2.27|1C02|0|0|02|04000A35|0|41700000|||||| +26|2023-10-06T20:25:18.6700000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +21|2023-10-06T20:25:18.6700000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41712003|308A0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|23223303|40478540|10000|10000|||100.00|80.10|0.00|0.00|78045|89453|6700|10000|||112.22|86.83|0.00|-2.07|0001AB8A|0|1| +21|2023-10-06T20:25:18.6700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|50C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23223303|40478540|10000|10000|||100.00|80.10|0.00|0.00|78045|89453|6700|10000|||112.22|86.83|0.00|-2.07|0001AB8B|0|1| +38|2023-10-06T20:25:18.6700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|78045|89453|6700|10000|0||112.22|86.83|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:18.6700000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +26|2023-10-06T20:25:18.6700000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +38|2023-10-06T20:25:18.6700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|13173|56517|8200|10000|29||97.61|100.02|0.00|2.27|0|0|0|||||||||||||||||||||||||||| +31|2023-10-06T20:25:18.6700000-07:00|10FF0001||||| +38|2023-10-06T20:25:18.7130000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-0.69|0|0|0||||||||||||| +26|2023-10-06T20:25:18.7130000-07:00|7AE|Summon Order IV|30.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T20:25:18.7130000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13173|56517|8200|10000|||97.61|100.02|0.00|2.27|13173|56517|8200|10000|||97.61|100.02|0.00|2.27|0001AB8C|0|1| +38|2023-10-06T20:25:18.7140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|78045|89453|6700|10000|0||112.22|86.83|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.7140000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +261|2023-10-06T20:25:18.2240000-07:00|Change|40022916||||| +38|2023-10-06T20:25:18.7590000-07:00|40022924||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:25:18.7590000-07:00|40022924||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T20:25:18.8030000-07:00|10FF0002|Suchichi Suchi|0001AB83|14371|63089|2600|10000|37||98.18|100.75|-0.02|3.00|1603|0|0|03|05000323|0|C1F00000|||||||||| +26|2023-10-06T20:25:18.8030000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +22|2023-10-06T20:25:18.8030000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|258C0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|49432|56517|8405|10000|||98.81|100.34|0.00|-2.98|54201|54201|10000|10000|||99.81|96.03|0.00|-0.69|0001AB8D|0|6| +22|2023-10-06T20:25:18.8030000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0002|Suchichi Suchi|4|25740000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|14371|63089|2600|10000|||98.18|100.75|-0.02|3.00|54201|54201|10000|10000|||99.81|96.03|0.00|-0.69|0001AB8D|1|6| +22|2023-10-06T20:25:18.8030000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|25230000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|13173|56517|8200|10000|||97.61|100.02|0.00|2.27|54201|54201|10000|10000|||99.81|96.03|0.00|-0.69|0001AB8D|2|6| +22|2023-10-06T20:25:18.8030000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0005|Wuwuchu Wuchu|200004|3DA70000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|20339|63038|2600|10000|||99.45|101.62|0.00|3.02|54201|54201|10000|10000|||99.81|96.03|0.00|-0.69|0001AB8D|3|6| +22|2023-10-06T20:25:18.8030000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|36F70000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|97882|107993|4200|10000|||91.33|86.14|0.00|1.86|54201|54201|10000|10000|||99.81|96.03|0.00|-0.69|0001AB8D|4|6| +22|2023-10-06T20:25:18.8030000-07:00|40022666|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|200004|3B9D0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|78045|89453|6700|10000|||112.22|86.83|0.00|-2.07|54201|54201|10000|10000|||99.81|96.03|0.00|-0.69|0001AB8D|5|6| +38|2023-10-06T20:25:18.8030000-07:00|10FF0002|Suchichi Suchi|005A5A16|14371|63089|2600|10000|37||98.18|100.75|-0.02|3.00|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:25:18.9350000-07:00|10FF0007|Kehabiqo Febiqo|0001AB83|97882|107993|4200|10000|8||91.33|86.14|0.00|1.71|1504|0|0|02|01000A53|05|41700000|||||| +26|2023-10-06T20:25:18.9350000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|107993|56517| +38|2023-10-06T20:25:18.9350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|97882|107993|4200|10000|8||91.33|86.14|0.00|1.71|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:18.9800000-07:00|10FF0001|Sesuga Sapisuga|0001AB85|57000|89453|6700|10000|0||112.22|86.83|0.00|-2.07|1300|0|0|02|0C00076E|03|C1F00000|||||| +37|2023-10-06T20:25:18.9800000-07:00|10FF0007|Kehabiqo Febiqo|0001AB86|71937||||||91.33|86.14|0.00|1.58| +38|2023-10-06T20:25:18.9800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|57000|89453|6700|10000|0||112.22|86.83|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:18.9800000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +261|2023-10-06T20:25:18.5120000-07:00|Add|40022924||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:25:18.5120000-07:00|40022924|Carbuncle|00|5A|10FF0008|00||10261|13498|53095|53095|10000|10000|||117.08|111.55|0.00|0.50| +261|2023-10-06T20:25:18.5120000-07:00|Change|40022924||| +37|2023-10-06T20:25:19.0260000-07:00|40022550|Zeromus|0001AB88|23215269|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000A9F|0|41C00000|| +26|2023-10-06T20:25:19.0260000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +37|2023-10-06T20:25:19.0260000-07:00|10FF0002|Suchichi Suchi|0001AB88|14371|63089|2600|10000|37||98.73|100.57|0.00|2.95|1600|0|0|01|05000323|0|41F00000|| +39|2023-10-06T20:25:19.0260000-07:00|10FF0001|Sesuga Sapisuga|57894|89453|6900|10000|||112.22|86.83|0.00|-2.07| +38|2023-10-06T20:25:19.0260000-07:00|10FF0002|Suchichi Suchi|005A5A16|14371|63089|2600|10000|37||98.73|100.57|0.00|2.95|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:25:18.5120000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:25:18.5120000-07:00|Change|40022924||| +37|2023-10-06T20:25:19.0690000-07:00|10FF0001|Sesuga Sapisuga|0001AB83|57894|89453|6900|10000|8||112.22|86.83|0.00|-2.07|1305|0|0|04|07000A35|0|41700000|||||||||||||| +26|2023-10-06T20:25:19.0690000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:25:19.0690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|57894|89453|6900|10000|8||112.22|86.83|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:18.6220000-07:00|Change|10FF0001||| +37|2023-10-06T20:25:19.1140000-07:00|10FF0001|Sesuga Sapisuga|0001AB87|57894|89453|6900|10000|17||112.22|86.83|0.00|-2.07|1300|0|0|04|09000742|64|41000000|||||||||||||| +26|2023-10-06T20:25:19.1140000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|89453|107993| +26|2023-10-06T20:25:19.1140000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|89453|107993| +37|2023-10-06T20:25:19.1140000-07:00|10FF0007|Kehabiqo Febiqo|0001AB87|71937|107993|4200|10000|8||91.33|86.14|0.00|1.54|1500|0|0|01|0D000741|0190|41000000|| +26|2023-10-06T20:25:19.1140000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|107993|107993| +21|2023-10-06T20:25:19.1140000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|19750000|204|1C428000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|23215269|40478540|10000|10000|||100.00|80.10|0.00|0.00|71937|107993|4200|10000|||91.33|86.14|0.00|1.54|0001AB8E|0|1| +38|2023-10-06T20:25:19.1140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|57894|89453|6900|10000|17||112.22|86.83|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:19.1140000-07:00|A78|Stem the Tide|19.96|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|89453|107993| +37|2023-10-06T20:25:19.1570000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB84|19544|56517|8200|10000|29||97.61|100.02|0.00|2.27|1C00|0|0|01|05000129|0|41E774BE|| +37|2023-10-06T20:25:19.2030000-07:00|10FF0008|Kokosaze Lulusaze|0001AB83|53336|55377|9050|10000|13||117.91|113.08|0.00|-2.64|1B06|0|0|02|07000A53|05|41700000|||||| +26|2023-10-06T20:25:19.2030000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +37|2023-10-06T20:25:19.2030000-07:00|40022550|Zeromus|0001AB8B|23213977||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:19.2030000-07:00|10FF0001|Sesuga Sapisuga|0001AB8B|57894|89453|6900|10000|17||112.22|86.83|0.00|-2.07|1300|0|0|02|0C00076E|03|C1F00000|||||| +24|2023-10-06T20:25:19.2030000-07:00|40022550|Zeromus|DoT|0|19E5|23215269|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T20:25:19.2030000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23215269|40478540|10000|10000|||100.00|80.10|0.00|0.00|14371|63089|2600|10000|||99.03|100.48|0.00|2.07|0001AB8F|0|1| +38|2023-10-06T20:25:19.2030000-07:00|40022550|Zeromus|005A5A00|23207348|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:25:19.2030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53336|55377|9050|10000|13||117.91|113.08|0.00|-2.64|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:25:19.2470000-07:00|40022550|Zeromus|0001AB8A|23194922||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:19.2470000-07:00|10FF0001|Sesuga Sapisuga|0001AB8A|57894|89453|6900|10000|17||112.22|86.83|0.00|-2.07|1300|0|0|02|0C00076E|03|41F00000|||||| +39|2023-10-06T20:25:19.2470000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|-1.77| +38|2023-10-06T20:25:19.2470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|57894|89453|6900|10000|17||112.22|86.83|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:19.2910000-07:00|10FF0002|Suchichi Suchi|0001AB84|24871|63089|2600|10000|37||99.10|100.47|0.00|1.31|1601|0|0|01|0129|0|41E6645C|| +36|2023-10-06T20:25:19.3370000-07:00|4E20|3| +39|2023-10-06T20:25:19.3810000-07:00|10FF0004|Buhojaqe Zijaqe|20109|56517|8400|10000|||97.61|100.02|-0.02|2.21| +261|2023-10-06T20:25:18.9670000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:25:19.4250000-07:00|10FF0006|Wowobora Gogobora|0001AB84|56517|56517|8405|10000|33||98.50|100.67|-0.02|-1.36|2802|0|0|01|06000129|0|41E551ED|| +21|2023-10-06T20:25:19.4250000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|9FE0000|13370E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|23194922|40478540|10000|10000|||100.00|80.10|0.00|0.00|57894|89453|6900|10000|||112.22|86.83|0.00|-2.07|0001AB90|0|1| +39|2023-10-06T20:25:19.5140000-07:00|10FF0006|Wowobora Gogobora|56517|56517|8610|10000|||98.47|100.75|0.00|-1.00| +37|2023-10-06T20:25:19.5580000-07:00|10FF0005|Wuwuchu Wuchu|0001AB84|30686|63038|2600|10000|36||100.70|100.55|0.00|3.08|2703|0|0|01|02000129|0|41E4418A|| +22|2023-10-06T20:25:19.5590000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|200004|14AD0000|290E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|56517|56517|8405|10000|||98.47|100.75|0.00|-1.00|56517|56517|8405|10000|||98.47|100.75|0.00|-1.00|0001AB91|0|4| +22|2023-10-06T20:25:19.5590000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|CD60000|130E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|24871|63089|2600|10000|||99.13|100.68|0.00|0.60|56517|56517|8405|10000|||98.47|100.75|0.00|-1.00|0001AB91|1|4| +22|2023-10-06T20:25:19.5590000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|D020000|A00E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|20109|56517|8400|10000|||97.62|100.03|0.00|1.91|56517|56517|8405|10000|||98.47|100.75|0.00|-1.00|0001AB91|2|4| +22|2023-10-06T20:25:19.5590000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|CBC0000|C00E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|20339|63038|2600|10000|||100.70|100.55|0.00|3.08|56517|56517|8405|10000|||98.47|100.75|0.00|-1.00|0001AB91|3|4| +38|2023-10-06T20:25:19.5590000-07:00|10FF0002|Suchichi Suchi|005A5A16|24871|63089|2600|10000|27||99.13|100.68|0.00|0.60|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:19.5590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:25:19.5590000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:25:19.5590000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|7710|10000|42||98.47|100.75|0.00|-1.00|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:19.5590000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:19.5590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:19.5590000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:19.5590000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:19.5590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|20109|56517|8400|10000|30||97.63|100.04|0.00|1.60|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:19.5590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:25:19.5590000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:25:19.5590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|30686|63038|2600|10000|27||100.89|100.35|-0.01|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:19.5590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +26|2023-10-06T20:25:19.5590000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +24|2023-10-06T20:25:19.6480000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|1C42|57894|89453|6900|10000|||112.22|86.83|0.00|-2.07|10FF0007|Kehabiqo Febiqo|0|71937|107993|4200|10000|||91.33|86.14|0.00|2.18| +37|2023-10-06T20:25:19.6480000-07:00|40022550|Zeromus|0001AB8E|23188405||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:19.6480000-07:00|10FF0007|Kehabiqo Febiqo|0001AB8E|79171||||||91.33|86.14|0.00|2.18| +20|2023-10-06T20:25:19.6480000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|97.63|100.04|0.00|1.60| +38|2023-10-06T20:25:19.6480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|65128|89453|6900|10000|17||112.22|86.83|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:19.7370000-07:00|40022550|Zeromus|0001AB8F|23185784||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:19.7370000-07:00|10FF0002|Suchichi Suchi|0001AB8D|34459||||||99.13|100.91|0.00|0.14| +34|2023-10-06T20:25:19.7820000-07:00|40022924|Carbuncle|40022924|Carbuncle|01| +261|2023-10-06T20:25:19.3620000-07:00|Change|40022924||| +37|2023-10-06T20:25:19.8700000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB8D|29616||||||97.85|100.09|0.00|1.59| +21|2023-10-06T20:25:19.8700000-07:00|4002256A|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|FB90000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|65128|89453|6900|10000|||112.22|86.83|0.00|-2.07|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB92|0|1| +21|2023-10-06T20:25:19.8700000-07:00|4002256B|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|44320000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|79171|107993|4200|10000|||91.33|86.14|0.00|2.18|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AB93|0|1| +39|2023-10-06T20:25:19.8700000-07:00|10FF0005|Wuwuchu Wuchu|31316|63038|2800|10000|||100.91|100.33|0.00|3.08| +261|2023-10-06T20:25:19.3620000-07:00|Change|10FF0005||||||||||| +21|2023-10-06T20:25:19.8710000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|714003|26A30000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|23185784|40478540|10000|10000|||100.00|80.10|0.00|0.00|30686|63038|2600|10000|||100.91|100.33|0.00|3.08|0001AB94|0|1| +261|2023-10-06T20:25:19.5580000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:20.0040000-07:00|10FF0005|Wuwuchu Wuchu|0001AB8D|47099||||||100.91|100.33|0.00|-3.10| +21|2023-10-06T20:25:20.0040000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|CBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23185784|40478540|10000|10000|||100.00|80.10|0.00|0.00|79171|107993|4200|10000|||91.33|86.14|0.00|2.18|0001AB95|0|1| +39|2023-10-06T20:25:20.0480000-07:00|10FF0008|Kokosaze Lulusaze|53889|55377|9250|10000|||117.91|113.08|0.00|-2.64| +261|2023-10-06T20:25:19.5580000-07:00|Change|10FF0008||||| +37|2023-10-06T20:25:20.1380000-07:00|10FF0007|Kehabiqo Febiqo|0001AB8D|93242||||||91.33|86.14|0.00|2.18| +21|2023-10-06T20:25:20.1380000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|229D0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|23185784|40478540|10000|10000|||100.00|80.10|0.00|0.00|65128|89453|6900|10000|||112.22|86.83|0.00|-2.07|0001AB96|0|1| +21|2023-10-06T20:25:20.2260000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|83D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23185784|40478540|10000|10000|||100.00|80.10|0.00|0.00|93242|107993|4200|10000|||91.33|86.14|0.00|2.18|0001AB97|0|1| +37|2023-10-06T20:25:20.2700000-07:00|10FF0001|Sesuga Sapisuga|0001AB8D|80389||||||112.22|86.83|0.00|-2.07| +38|2023-10-06T20:25:20.2700000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-1.99|0|0|0|||||||||| +30|2023-10-06T20:25:20.2700000-07:00|7AE|Summon Order IV|0.00|40022666|Ruby Carbuncle|40022666|Ruby Carbuncle|01|54201|54201| +37|2023-10-06T20:25:20.3590000-07:00|40022550|Zeromus|0001AB94|23175893||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:20.0290000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:25:20.4480000-07:00|40022550|Zeromus|0001AB90|23173335|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050000F8|0|41700000|| +26|2023-10-06T20:25:20.4480000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +37|2023-10-06T20:25:20.4930000-07:00|10FF0006|Wowobora Gogobora|0001AB91|56517|56517|7710|10000|42||98.45|98.54|-0.02|-2.89|2800|0|0|01|06000A31|0|41E8E144|| +21|2023-10-06T20:25:20.4930000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|4FEC0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|23173335|40478540|10000|10000|||100.00|80.10|0.00|0.00|53889|55377|9250|10000|||117.91|113.08|0.00|-2.64|0001AB98|0|1| +37|2023-10-06T20:25:20.5380000-07:00|10FF0001|Sesuga Sapisuga|0001AB92|76364|89453|6900|10000|8||112.22|86.83|0.00|-2.07|1300|0|0|03|07000A35|0|41700000|||||||||| +26|2023-10-06T20:25:20.5380000-07:00|A53|Panhaimatinon|13.53|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|04|89453|56517| +37|2023-10-06T20:25:20.5380000-07:00|10FF0007|Kehabiqo Febiqo|0001AB93|75784|107993|4200|10000|8||91.33|86.14|0.00|2.18|1500|0|0|02|01000A53|04|41566254|||||| +26|2023-10-06T20:25:20.5380000-07:00|A53|Panhaimatinon|13.40|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|04|107993|56517| +37|2023-10-06T20:25:20.5380000-07:00|40022550|Zeromus|0001AB96|23164474||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:20.5380000-07:00|10FF0001|Sesuga Sapisuga|0001AB96|76364|89453|7400|10000|8||112.22|86.83|0.00|-2.07|1300|0|0|0| +38|2023-10-06T20:25:20.5380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|75784|107993|4200|10000|8||91.33|86.14|0.00|2.18|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:20.5380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|76364|89453|7400|10000|8||112.22|86.83|0.00|-2.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:20.5380000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:25:20.5380000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|89453|107993| +24|2023-10-06T20:25:20.5820000-07:00|40022666|Ruby Carbuncle|HoT|0|392|54201|54201|10000|10000|||99.81|96.03|0.00|-1.84|10FF0005|Wuwuchu Wuchu|0|47099|63038|2800|10000|||100.88|100.33|0.00|3.11| +38|2023-10-06T20:25:20.5820000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-1.84|0|0|0|||||||||| +261|2023-10-06T20:25:20.1470000-07:00|Change|10FF0001||| +37|2023-10-06T20:25:20.6270000-07:00|40022550|Zeromus|0001AB95|23161211||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:20.6270000-07:00|10FF0002|Suchichi Suchi|0001AB91|37745|63089|2600|10000|27||100.14|100.51|0.00|3.04|1601|0|0|01|0A31|0|41E7D0E1|| +24|2023-10-06T20:25:20.6270000-07:00|10FF0002|Suchichi Suchi|HoT|0|385|34459|63089|2600|10000|||100.14|100.51|0.00|3.04|10FF0006|Wowobora Gogobora|0|56517|56517|7710|10000|||98.45|97.82|0.00|-2.96| +38|2023-10-06T20:25:20.6270000-07:00|10FF0002|Suchichi Suchi|005A5A16|38646|63089|2600|10000|27||100.14|100.51|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:25:20.7140000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|151A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|29616|56517|8400|10000|||98.13|100.14|0.00|1.69|54201|54201|10000|10000|||99.81|96.03|0.00|-1.75|0001AB99|0|1| +37|2023-10-06T20:25:20.7590000-07:00|40022550|Zeromus|0001AB97|23159102||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:20.7590000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB91|32946|56517|8400|10000|30||98.13|100.14|0.00|1.69|1C02|0|0|01|05000A31|0|41E6C07F|| +24|2023-10-06T20:25:20.8480000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|232D|76364|89453|7400|10000|||112.22|86.83|0.00|-2.07|10FF0007|Kehabiqo Febiqo|0|75784|107993|4200|10000|||91.33|86.14|-0.02|2.18| +24|2023-10-06T20:25:20.8480000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|38B|32946|56517|8400|10000|||98.13|100.14|0.00|1.69|10FF0006|Wowobora Gogobora|0|56517|56517|7710|10000|||98.46|97.16|0.00|-3.06| +21|2023-10-06T20:25:20.8480000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|9F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23159102|40478540|10000|10000|||100.00|80.10|0.00|0.00|47099|63038|2800|10000|||100.83|100.40|0.00|3.09|0001AB9A|0|1| +38|2023-10-06T20:25:20.8480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|85369|89453|7400|10000|8||112.22|86.83|0.00|-2.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:20.8480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|33853|56517|8400|10000|30||98.13|100.14|0.00|1.69|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:25:20.8930000-07:00|10FF0005|Wuwuchu Wuchu|0001AB91|50359|63038|2800|10000|27||100.72|100.55|-0.02|3.09|2703|0|0|01|02000A31|0|41E5AE10|| +21|2023-10-06T20:25:20.9370000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23159102|40478540|10000|10000|||100.00|80.10|0.00|0.00|85369|89453|7400|10000|||112.22|86.83|0.00|-2.07|0001AB9B|0|1| +31|2023-10-06T20:25:20.9370000-07:00|10FF0001||||| +24|2023-10-06T20:25:20.9820000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|383|50359|63038|2800|10000|||100.64|100.61|0.00|3.08|E0000000||0||||||||||| +38|2023-10-06T20:25:20.9820000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|51258|63038|2800|10000|27||100.64|100.61|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:25:21.0300000-07:00|10FF0006|Wowobora Gogobora|HoT|0|13DF|56517|56517|7710|10000|||98.48|96.92|-0.02|2.69|E0000000||0||||||||||| +22|2023-10-06T20:25:21.0300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|27DC0000|C60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|33853|56517|8400|10000|||98.13|100.14|0.00|1.69|33853|56517|8400|10000|||98.13|100.14|0.00|1.69|0001AB9C|0|4| +22|2023-10-06T20:25:21.0300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|18FD0000|FB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|38646|63089|2600|10000|||100.14|100.51|0.00|3.04|33853|56517|8400|10000|||98.13|100.14|0.00|1.69|0001AB9C|1|4| +22|2023-10-06T20:25:21.0300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|18FA0000|F60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|50359|63038|2800|10000|||100.64|100.61|0.00|3.08|33853|56517|8400|10000|||98.13|100.14|0.00|1.69|0001AB9C|2|4| +22|2023-10-06T20:25:21.0300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19650000|A10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|56517|56517|7710|10000|||98.48|96.92|-0.02|2.69|33853|56517|8400|10000|||98.13|100.14|0.00|1.69|0001AB9C|3|4| +38|2023-10-06T20:25:21.0300000-07:00|10FF0002|Suchichi Suchi|005A5A16|38646|63089|2600|10000|26||100.14|100.51|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:21.0300000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:25:21.0300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:25:21.0300000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8260|10000|31||98.48|96.92|-0.02|2.69|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:21.0300000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:21.0300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:21.0300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|33853|56517|7400|10000|40||98.13|100.14|0.00|1.69|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:21.0300000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:25:21.0300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:25:21.0300000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|51258|63038|2800|10000|26||100.64|100.61|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:21.0300000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +26|2023-10-06T20:25:21.0300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +21|2023-10-06T20:25:21.0710000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|1F3D0000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|23159102|40478540|10000|10000|||100.00|80.10|0.00|0.00|38646|63089|2600|10000|||100.14|100.51|0.00|3.04|0001AB9D|0|1| +38|2023-10-06T20:25:21.0710000-07:00|10FF0002|Suchichi Suchi|005A5A16|38646|63089|2600|10000|26||100.14|100.51|0.00|3.04|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:21.0710000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:25:21.0710000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:20.6560000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:25:20.6560000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:25:21.1160000-07:00|40022550|Zeromus|0001AB98|23138642||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:21.1600000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|714003|245D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23138642|40478540|10000|10000|||100.00|80.10|0.00|0.00|85369|89453|7400|10000|||112.22|86.83|0.00|-2.07|0001AB9E|0|1| +38|2023-10-06T20:25:21.1600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|85369|89453|7400|10000|8||112.22|86.83|0.00|-2.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:21.1600000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|89453|89453| +21|2023-10-06T20:25:21.2070000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|150003|41030000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|23138642|40478540|10000|10000|||100.00|80.10|0.00|0.00|53889|55377|8950|10000|||117.91|113.08|0.00|-2.64|0001AB9F|0|1| +38|2023-10-06T20:25:21.2070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53889|55377|8950|10000|13||117.91|113.08|0.00|-2.64|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:21.2070000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +39|2023-10-06T20:25:21.2520000-07:00|10FF0007|Kehabiqo Febiqo|76863|107993|4400|10000|||91.33|86.14|-0.02|2.18| +261|2023-10-06T20:25:20.8830000-07:00|Change|10FF0007||||| +37|2023-10-06T20:25:21.3830000-07:00|40022550|Zeromus|0001AB9A|23136098||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:20.9960000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:25:21.4720000-07:00|40022550|Zeromus|0001AB9B|23134850||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:21.4720000-07:00|10FF0002|Suchichi Suchi|39276|63089|2800|10000|||100.14|100.51|0.00|-3.13| +261|2023-10-06T20:25:20.9960000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:25:21.5170000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB99|39255||||||98.13|100.14|0.00|1.69| +24|2023-10-06T20:25:21.5170000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|110A|76863|107993|4400|10000|||91.33|86.14|-0.02|2.18|10FF0007|Kehabiqo Febiqo|0|76863|107993|4400|10000|||91.33|86.14|-0.02|2.18| +24|2023-10-06T20:25:21.5170000-07:00|40022550|Zeromus|DoT|A92|7FC|23136098|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|53889|55377|8950|10000|||117.91|113.08|0.00|-2.64| +24|2023-10-06T20:25:21.5170000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|10AE|53889|55377|8950|10000|||117.91|113.08|0.00|-2.64|10FF0006|Wowobora Gogobora|0|56517|56517|8260|10000|||98.55|96.94|0.00|1.24| +38|2023-10-06T20:25:21.5170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81225|107993|4400|10000|8||91.33|86.14|-0.02|2.18|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:21.5170000-07:00|40022550|Zeromus|005A5A00|23132806|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:21.5170000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:25:21.5170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8950|10000|13||117.91|113.08|0.00|-2.64|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:25:21.5610000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|26010000|A3E|340000|200204|2CF48000|11B|258000|0|0|0|0|0|0|0|0|23132806|40478540|10000|10000|||100.00|80.10|0.00|0.00|81225|107993|4400|10000|||91.34|86.14|0.00|2.25|0001ABA0|0|1| +261|2023-10-06T20:25:21.2020000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:25:21.7400000-07:00|40022550|Zeromus|0001AB9D|23124809||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:21.7400000-07:00|10FF0002|Suchichi Suchi|0001AB9D|39276|63089|2800|10000|26||100.14|100.51|0.00|-3.13|1600|0|0|01|09000322|0|41F00000|| +38|2023-10-06T20:25:21.7400000-07:00|10FF0002|Suchichi Suchi|005A5A16|39276|63089|2800|10000|26||100.14|100.51|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +20|2023-10-06T20:25:21.8290000-07:00|10FF0006|Wowobora Gogobora|5EDF|Egeiro|10FF0003|Gegehi Gehi|7.800|98.56|96.94|0.00|0.94| +261|2023-10-06T20:25:21.3890000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:25:21.5730000-07:00|Change|10FF0006||||||||||||||||||| +39|2023-10-06T20:25:22.0070000-07:00|10FF0001|Sesuga Sapisuga|86263|89453|7600|10000|||112.22|86.83|0.00|-2.07| +21|2023-10-06T20:25:22.0070000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|A3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23124809|40478540|10000|10000|||100.00|80.10|0.00|0.00|39276|63089|2800|10000|||100.14|100.51|0.00|-3.13|0001ABA1|0|1| +21|2023-10-06T20:25:22.0070000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|81225|107993|4400|10000|||93.49|87.45|0.00|2.50|23124809|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001ABA2|0|1| +37|2023-10-06T20:25:22.0510000-07:00|40022550|Zeromus|0001AB9F|23108166||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:25:22.0510000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0003|Gegehi Gehi|7.704|98.24|99.92|0.00|2.41| +261|2023-10-06T20:25:21.6940000-07:00|Change|10FF0001||| +37|2023-10-06T20:25:22.1400000-07:00|10FF0004|Buhojaqe Zijaqe|0001AB9C|49459|56517|7400|10000|40||98.24|99.92|0.00|2.41|1C00|0|0|01|05000129|0|41E778D2|| +261|2023-10-06T20:25:21.6940000-07:00|Change|10FF0006||||||||| +24|2023-10-06T20:25:22.1860000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|2CF4|86263|89453|7600|10000|||112.22|86.83|0.00|-2.07|10FF0007|Kehabiqo Febiqo|0|81225|107993|4400|10000|||94.07|87.81|0.00|2.54| +37|2023-10-06T20:25:22.1860000-07:00|40022550|Zeromus|0001ABA0|23098437||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:22.1860000-07:00|10FF0007|Kehabiqo Febiqo|0001ABA0|92733||||||94.07|87.81|0.00|2.54| +24|2023-10-06T20:25:22.1860000-07:00|40022550|Zeromus|DoT|0|1D40|23108166|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:22.1860000-07:00|40022550|Zeromus|005A5A00|23090949|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:25:22.1860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7600|10000|8||112.22|86.83|0.00|-2.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:25:22.2300000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|-0.83| +21|2023-10-06T20:25:22.2300000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23108166|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8950|10000|||109.76|98.10|0.00|-2.64|0001ABA3|0|1| +37|2023-10-06T20:25:22.2740000-07:00|10FF0002|Suchichi Suchi|0001AB9C|45673|63089|2800|10000|26||100.14|100.51|0.00|-3.13|1601|0|0|01|0129|0|41E66663|| +36|2023-10-06T20:25:22.3190000-07:00|4EFC|3| +39|2023-10-06T20:25:22.3630000-07:00|10FF0004|Buhojaqe Zijaqe|50024|56517|7600|10000|||98.32|99.77|0.00|1.91| +37|2023-10-06T20:25:22.4080000-07:00|10FF0005|Wuwuchu Wuchu|0001AB9C|57652|63038|2800|10000|26||100.42|100.79|0.00|3.06|2702|0|0|01|02000129|0|41E55600|| +21|2023-10-06T20:25:22.4080000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C712003|3FE00000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|23090949|40478540|10000|10000|||100.00|80.10|0.00|0.00|51258|63038|2800|10000|||100.42|100.79|0.00|3.06|0001ABA4|0|1| +37|2023-10-06T20:25:22.4530000-07:00|40022550|Zeromus|0001AB9E|23081640||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:22.4530000-07:00|10FF0001|Sesuga Sapisuga|0001AB9E|89453|89453|8000|10000|8||112.18|86.91|0.00|-1.65|1300|0|0|0| +261|2023-10-06T20:25:22.0540000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T20:25:22.4970000-07:00|10FF0006|Wowobora Gogobora|56517|56517|8465|10000|||98.56|96.94|0.00|0.96| +261|2023-10-06T20:25:22.0540000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:22.5420000-07:00|40022550|Zeromus|0001ABA1|23079018||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:22.5420000-07:00|10FF0006|Wowobora Gogobora|0001AB9C|56517|56517|8465|10000|31||98.56|96.94|0.00|0.96|2803|0|0|01|06000129|0|41E44391|| +04|2023-10-06T20:25:22.1460000-07:00|40022916|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|53095|0|10000|||118.38|114.26|0.00|-2.65| +261|2023-10-06T20:25:22.1460000-07:00|Remove|40022916| +37|2023-10-06T20:25:22.7660000-07:00|40022550|Zeromus|0001ABA3|23078876||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:22.8100000-07:00|10FF0007|Kehabiqo Febiqo|0001ABA2|92733|107993|4400|10000|1||97.09|89.69|0.00|2.67|1500|0|0|0| +261|2023-10-06T20:25:22.4260000-07:00|Change|10FF0005||||||||| +23|2023-10-06T20:25:22.8990000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|Cancelled| +39|2023-10-06T20:25:22.8990000-07:00|10FF0005|Wuwuchu Wuchu|58282|63038|3000|10000|||100.42|100.79|0.00|-3.12| +261|2023-10-06T20:25:22.4260000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:25:22.4260000-07:00|Change|40022924||||||||| +37|2023-10-06T20:25:22.9880000-07:00|40022550|Zeromus|0001ABA4|23062524||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:22.9880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8000|10000|8||110.73|88.84|0.00|-1.57|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:22.9880000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:25:22.9880000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +39|2023-10-06T20:25:23.0320000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|9150|10000|||106.65|97.21|0.00|-1.72| +38|2023-10-06T20:25:23.0320000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8465|10000|31||98.56|96.94|0.00|0.96|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:23.0320000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:23.0320000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +261|2023-10-06T20:25:22.5260000-07:00|Change|10FF0004||||||||||||||||||||||||| +261|2023-10-06T20:25:22.5260000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:25:23.0760000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|B690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23062524|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8000|10000|||110.32|88.84|0.00|-2.27|0001ABA5|0|1| +38|2023-10-06T20:25:23.0760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8000|10000|8||110.32|88.84|0.00|-2.27|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:23.0760000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|89453|107993| +261|2023-10-06T20:25:22.6480000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:25:23.2100000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|8290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23062524|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8000|10000|||110.32|88.84|0.00|-2.27|0001ABA6|0|1| +31|2023-10-06T20:25:23.2100000-07:00|10FF0001||||| +261|2023-10-06T20:25:22.7670000-07:00|Change|10FF0006||||||| +38|2023-10-06T20:25:23.3000000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8465|10000|31||98.56|96.94|0.00|0.96|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:23.3000000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:25:23.3900000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|23062524|40478540|10000|10000|||100.00|80.10|0.00|0.00|50024|56517|7600|10000|||98.93|99.80|0.00|2.42|0001ABA7|0|1| +38|2023-10-06T20:25:23.4350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92733|107993|4400|10000|1||97.75|92.41|0.00|1.21|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:23.4350000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|107993|56517| +38|2023-10-06T20:25:23.5690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9150|10000|13||103.46|97.94|0.00|-1.40|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:23.5690000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +261|2023-10-06T20:25:23.1260000-07:00|Change|40022924||||||||| +24|2023-10-06T20:25:23.6140000-07:00|40022666|Ruby Carbuncle|HoT|0|37E|54201|54201|10000|10000|||99.81|96.03|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|58282|63038|3000|10000|||100.42|100.79|0.00|3.01| +21|2023-10-06T20:25:23.6140000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|D920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23062524|40478540|10000|10000|||100.00|80.10|0.00|0.00|92733|107993|4400|10000|||97.88|92.32|0.00|1.70|0001ABA8|0|1| +21|2023-10-06T20:25:23.6140000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A724003|336A0000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|23062524|40478540|10000|10000|||100.00|80.10|0.00|0.00|45673|63089|2800|10000|||100.13|100.50|0.00|-3.14|0001ABA9|0|1| +38|2023-10-06T20:25:23.6140000-07:00|10FF0002|Suchichi Suchi|005A5A16|45673|63089|2800|10000|26||100.13|100.50|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:25:23.6140000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:25:23.6140000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:25:23.6140000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|3.13|0|0|0|||||||||| +37|2023-10-06T20:25:23.6580000-07:00|40022550|Zeromus|0001ABA5|23059603||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:23.6580000-07:00|10FF0002|Suchichi Suchi|HoT|0|388|45673|63089|2800|10000|||100.11|100.50|0.00|-3.14|10FF0006|Wowobora Gogobora|0|56517|56517|8465|10000|||98.56|96.94|0.00|0.96| +38|2023-10-06T20:25:23.6580000-07:00|10FF0002|Suchichi Suchi|005A5A16|46577|63089|2800|10000|26||100.11|100.50|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:25:23.7020000-07:00|10FF0008|Kokosaze Lulusaze|1D03|Summon Bahamut|40022550|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|23062524|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9150|10000|||102.28|98.04|0.00|-1.57|0001ABAA|0|1| +38|2023-10-06T20:25:23.7020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8000|10000|8||110.13|89.04|0.00|-1.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:23.7020000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:25:23.7470000-07:00|40022965||005A5A00|47785|47785|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:25:23.7470000-07:00|40022965||005A5A00|47785|47785|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T20:25:23.7470000-07:00|40022550|Zeromus|0001ABA6|23057514||||||100.00|80.10|0.00|0.00| +03|2023-10-06T20:25:23.3070000-07:00|40022965|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|47785|47785|10000|10000|||102.28|100.04|0.00|-3.12| +261|2023-10-06T20:25:23.3070000-07:00|Add|40022965||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:23.8360000-07:00|40022550|Zeromus|005A5A00|23057514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:23.8360000-07:00|4B3|Addle|0.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|55377| +26|2023-10-06T20:25:23.8360000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +261|2023-10-06T20:25:23.4060000-07:00|Change|40022965||| +24|2023-10-06T20:25:23.8800000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|13C9|89453|89453|8000|10000|||109.69|89.48|0.00|-1.57|10FF0001|Sesuga Sapisuga|0|89453|89453|8000|10000|||109.69|89.48|0.00|-1.57| +24|2023-10-06T20:25:23.8800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|3A3|50024|56517|7200|10000|||99.06|99.73|0.00|3.10|10FF0006|Wowobora Gogobora|0|56517|56517|8465|10000|||98.56|96.94|0.00|0.96| +21|2023-10-06T20:25:23.8800000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|1EDF0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23057514|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8000|10000|||109.69|89.48|0.00|-1.57|0001ABAB|0|1| +38|2023-10-06T20:25:23.8800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8000|10000|8||109.69|89.48|0.00|-1.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:23.8800000-07:00|76E|Sword Oath|25.32|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +38|2023-10-06T20:25:23.8800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|50955|56517|7200|10000|40||99.06|99.73|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:25:23.4060000-07:00|Change|10FF0008||||||||| +24|2023-10-06T20:25:23.9690000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|35C|58282|63038|3000|10000|||100.42|100.79|0.00|3.01|E0000000||0||||||||||| +38|2023-10-06T20:25:23.9690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59142|63038|3000|10000|26||100.42|100.79|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:23.5090000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:25:24.0140000-07:00|40022550|Zeromus|0001ABA7|23057514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T20:25:24.0140000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|56517| +24|2023-10-06T20:25:24.0140000-07:00|10FF0006|Wowobora Gogobora|HoT|0|3F2|56517|56517|8465|10000|||98.56|96.94|0.00|0.96|E0000000||0||||||||||| +21|2023-10-06T20:25:24.0140000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|23200000|143E|340000|204|1B818000|4|18C88000|11B|2A8000|0|0|0|0|0|0|23057514|40478540|10000|10000|||100.00|80.10|0.00|0.00|92733|107993|4400|10000|||98.22|92.06|-0.02|3.02|0001ABAC|0|1| +38|2023-10-06T20:25:24.0140000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8465|10000|31||98.56|96.94|0.00|0.96|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:25:24.0580000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|ED50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23057514|40478540|10000|10000|||100.00|80.10|0.00|0.00|59142|63038|3000|10000|||100.42|100.79|0.00|3.01|0001ABAD|0|1| +37|2023-10-06T20:25:24.1470000-07:00|40022550|Zeromus|0001ABA8|23054040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:24.2360000-07:00|40022550|Zeromus|0001ABA9|23040878||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:24.2360000-07:00|10FF0002|Suchichi Suchi|0001ABA9|46577|63089|2800|10000|26||100.15|100.24|0.00|3.14|1600|0|0|01|05000747|0|41F00000|| +39|2023-10-06T20:25:24.2360000-07:00|10FF0007|Kehabiqo Febiqo|93812|107993|4600|10000|||98.22|92.06|0.00|3.00| +38|2023-10-06T20:25:24.2360000-07:00|10FF0002|Suchichi Suchi|005A5A16|46577|63089|2800|10000|26||100.15|100.24|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:25:23.8340000-07:00|Change|10FF0007||||||||||| +38|2023-10-06T20:25:24.2810000-07:00|40022965|Demi-Bahamut|005A5A00|47785|47785|10000|10000|0||102.28|100.04|0.00|-3.12|0|0|0|||||||||| +26|2023-10-06T20:25:24.2810000-07:00|30|Well Fed|2135.05|10FF0008|Kokosaze Lulusaze|40022965|Demi-Bahamut|2964|47785|55377| +26|2023-10-06T20:25:24.2810000-07:00|441|HP Penalty|9999.00|E0000000||40022965|Demi-Bahamut|00|47785|| +26|2023-10-06T20:25:24.2810000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|40022965|Demi-Bahamut|01|47785|40478540| +21|2023-10-06T20:25:24.2810000-07:00|10FF0008|Kokosaze Lulusaze|1D05|Enkindle Bahamut|40022550|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|23054040|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9150|10000|||99.43|98.40|0.00|-2.05|0001ABAE|0|1| +39|2023-10-06T20:25:24.4580000-07:00|10FF0002|Suchichi Suchi|47207|63089|3000|10000|||100.07|100.04|0.00|3.13| +261|2023-10-06T20:25:23.9450000-07:00|Change|10FF0002||||||||||| +21|2023-10-06T20:25:24.5480000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|153D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|50955|56517|7200|10000|||99.08|99.72|0.00|3.10|54201|54201|10000|10000|||99.81|96.03|0.00|-2.21|0001ABAF|0|1| +24|2023-10-06T20:25:24.5480000-07:00|40022550|Zeromus|DoT|A92|4A2|23040878|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|55377|55377|9150|10000|||99.01|98.46|0.00|3.08| +38|2023-10-06T20:25:24.5480000-07:00|40022550|Zeromus|005A5A00|23039692|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:25:24.5930000-07:00|40022550|Zeromus|0001ABAD|23035895||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:24.1550000-07:00|Change|40022924||||||||| +261|2023-10-06T20:25:24.1550000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:25:24.6820000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23035895|40478540|10000|10000|||100.00|80.10|0.00|0.00|50955|56517|7200|10000|||99.08|99.72|0.00|3.10|0001ABB0|0|1| +261|2023-10-06T20:25:24.3480000-07:00|Change|40022965||||| +21|2023-10-06T20:25:24.8150000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|D380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23035895|40478540|10000|10000|||100.00|80.10|0.00|0.00|47207|63089|3000|10000|||100.02|99.93|0.00|3.13|0001ABB1|0|1| +261|2023-10-06T20:25:24.3480000-07:00|Change|40022965||| +21|2023-10-06T20:25:24.8600000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|31770000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|23035895|40478540|10000|10000|||100.00|80.10|0.00|0.00|59142|63038|3000|10000|||100.42|100.79|0.00|3.01|0001ABB2|0|1| +22|2023-10-06T20:25:24.9480000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|0001ABB3|0|7| +22|2023-10-06T20:25:24.9480000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50955|56517|7200|10000|||99.08|99.72|0.00|3.10|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|0001ABB3|1|7| +22|2023-10-06T20:25:24.9480000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8465|10000|||98.56|96.94|0.00|0.96|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|0001ABB3|2|7| +22|2023-10-06T20:25:24.9480000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0002|Suchichi Suchi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47207|63089|3000|10000|||100.02|99.93|0.00|3.13|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|0001ABB3|3|7| +22|2023-10-06T20:25:24.9480000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0005|Wuwuchu Wuchu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59142|63038|3000|10000|||100.42|100.79|0.00|3.01|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|0001ABB3|4|7| +22|2023-10-06T20:25:24.9480000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|93812|107993|4600|10000|||99.06|92.38|0.00|3.11|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|0001ABB3|5|7| +22|2023-10-06T20:25:24.9480000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|8000|10000|||105.72|93.29|0.00|-1.91|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|0001ABB3|6|7| +38|2023-10-06T20:25:24.9480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|93812|107993|4600|10000|1||99.06|92.38|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:24.9480000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|107993|55377| +38|2023-10-06T20:25:24.9480000-07:00|10FF0002|Suchichi Suchi|005A5A16|47207|63089|3000|10000|26||100.02|99.93|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:24.9480000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|63089|55377| +38|2023-10-06T20:25:24.9480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9150|10000|13||98.77|98.50|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:25:24.9480000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:25:24.9480000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8465|10000|31||98.56|96.94|0.00|0.96|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:24.9480000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|56517|55377| +38|2023-10-06T20:25:24.9480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8000|10000|8||105.72|93.29|0.00|-1.91|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:24.9480000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|89453|55377| +38|2023-10-06T20:25:24.9480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|50955|56517|7200|10000|40||99.08|99.72|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:24.9480000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|56517|55377| +38|2023-10-06T20:25:24.9480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59142|63038|3000|10000|26||100.42|100.79|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:24.9480000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|63038|55377| +39|2023-10-06T20:25:25.0390000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|8200|10000|||105.04|93.59|0.00|-1.96| +21|2023-10-06T20:25:25.0390000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|22D90000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|93812|107993|4600|10000|||99.47|92.56|0.00|3.12|23035895|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001ABB4|0|1| +00|2023-10-06T20:25:24.0000000-07:00|0044|Zeromus|My Darkness shall devour all Light.| +20|2023-10-06T20:25:25.1270000-07:00|40022550|Zeromus|8B69|Black Hole|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:25.1730000-07:00|40022550|Zeromus|0001ABAB|23027992||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:25.1730000-07:00|10FF0001|Sesuga Sapisuga|0001ABAB|89453|89453|8600|10000|8||104.78|94.19|0.00|-2.00|1300|0|0|0| +24|2023-10-06T20:25:25.1730000-07:00|40022550|Zeromus|DoT|0|213A|23035895|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:25.1730000-07:00|40022550|Zeromus|005A5A00|23019486|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:25:24.6550000-07:00|Change|40022550||||||||| +37|2023-10-06T20:25:25.2150000-07:00|40022550|Zeromus|0001ABB0|23019328||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:25.2600000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|-0.20| +37|2023-10-06T20:25:25.3510000-07:00|40022550|Zeromus|0001ABB1|23015944||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:25.3510000-07:00|10FF0004|Buhojaqe Zijaqe|0001ABAF|56392||||||99.09|99.64|0.00|3.03| +39|2023-10-06T20:25:25.3510000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7400|10000|||99.09|99.64|0.00|3.03| +21|2023-10-06T20:25:25.3510000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23019328|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9150|10000|||98.77|98.50|0.00|3.08|0001ABB5|0|1| +36|2023-10-06T20:25:25.3510000-07:00|4FD8|3| +261|2023-10-06T20:25:24.8820000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:25:25.3950000-07:00|40022550|Zeromus|0001ABB2|23003281||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:25.4850000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23003281|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8600|10000|||103.43|95.43|0.00|-2.11|0001ABB6|0|1| +31|2023-10-06T20:25:25.4850000-07:00|10FF0001||||| +24|2023-10-06T20:25:25.5280000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|1B81|89453|89453|8600|10000|||103.43|95.43|0.00|-2.11|10FF0007|Kehabiqo Febiqo|0|93812|107993|4600|10000|||99.94|92.64|0.00|3.13| +37|2023-10-06T20:25:25.5280000-07:00|40022550|Zeromus|0001ABAC|22994289||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:25.5280000-07:00|10FF0007|Kehabiqo Febiqo|0001ABAC|107197||||||99.94|92.64|0.00|3.13| +39|2023-10-06T20:25:25.5280000-07:00|10FF0006|Wowobora Gogobora|56517|56517|8670|10000|||98.56|96.94|0.00|0.96| +38|2023-10-06T20:25:25.5280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8600|10000|8||103.43|95.43|0.00|-2.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:25.5280000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +261|2023-10-06T20:25:25.0030000-07:00|Change|10FF0006||||| +261|2023-10-06T20:25:25.1210000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:25:25.7500000-07:00|10FF0008|Kokosaze Lulusaze|0001ABB3|55377|55377|9150|10000|13||99.07|98.76|0.00|2.43|1B00|0|0|01|02000A8F|0|41E9F1A8|| +38|2023-10-06T20:25:25.7500000-07:00|40022965|Demi-Bahamut|005A5A00|47785|47785|10000|10000|0||102.28|100.04|0.00|-3.12|0|0|0||||||||||||| +26|2023-10-06T20:25:25.7500000-07:00|A8F|Searing Light|29.20|10FF0008|Kokosaze Lulusaze|40022965|Demi-Bahamut|00|47785|55377| +261|2023-10-06T20:25:25.3100000-07:00|Change|40022924||| +21|2023-10-06T20:25:25.7950000-07:00|40022965|Demi-Bahamut|1D19|Akh Morn|40022550|Zeromus|752003|18C14001|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|22994289|40478540|10000|10000|||100.00|80.10|0.00|0.00|47785|47785|10000|10000|||102.28|100.04|0.00|-3.12|0001ABB7|0|1| +20|2023-10-06T20:25:25.7950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.11|99.57|0.00|2.97| +37|2023-10-06T20:25:25.8380000-07:00|10FF0007|Kehabiqo Febiqo|0001ABB4|98276|107993|4600|10000|8||99.93|92.34|0.00|3.13|1500|0|0|02|01000A53|03|41018D63|||||| +26|2023-10-06T20:25:25.8380000-07:00|A53|Panhaimatinon|8.10|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|03|107993|56517| +26|2023-10-06T20:25:25.8380000-07:00|A35|Panhaima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|107993|56517| +38|2023-10-06T20:25:25.8380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98276|107993|4600|10000|8||99.93|92.34|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:25.8820000-07:00|40022550|Zeromus|0001ABB5|22994057||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:25.8820000-07:00|10FF0004|Buhojaqe Zijaqe|0001ABB3|56517|56517|7400|10000|40||99.11|99.57|0.00|2.97|1C01|0|0|01|09000A8F|0|41E8E146|| +39|2023-10-06T20:25:25.8820000-07:00|10FF0005|Wuwuchu Wuchu|59772|63038|3200|10000|||100.19|100.60|0.00|3.09| +38|2023-10-06T20:25:25.8820000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-0.20|0|0|0||||||||||||| +26|2023-10-06T20:25:25.8820000-07:00|A8F|Searing Light|29.07|10FF0008|Kokosaze Lulusaze|40022666|Ruby Carbuncle|00|54201|55377| +261|2023-10-06T20:25:25.4030000-07:00|Change|10FF0005||||||||| +38|2023-10-06T20:25:25.9700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98276|107993|4600|10000|8||99.93|92.30|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:25.9700000-07:00|A3E|Krasis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|107993|56517| +37|2023-10-06T20:25:26.0150000-07:00|10FF0006|Wowobora Gogobora|0001ABB3|56517|56517|8670|10000|31||98.56|96.94|0.00|0.96|2802|0|0|01|01000A8F|0|41E7D2F0|| +37|2023-10-06T20:25:26.0150000-07:00|40022550|Zeromus|0001ABB6|22992812||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:26.0600000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|9350|10000|||99.32|98.89|0.00|1.63| +21|2023-10-06T20:25:26.1050000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|23E70000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|22994057|40478540|10000|10000|||100.00|80.10|0.00|0.00|47207|63089|3000|10000|||100.02|99.93|0.00|3.13|0001ABB8|0|1| +38|2023-10-06T20:25:26.1050000-07:00|10FF0002|Suchichi Suchi|005A5A16|47207|63089|3000|10000|26||100.02|99.93|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:26.1050000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:25.5920000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:25:26.1490000-07:00|10FF0002|Suchichi Suchi|0001ABB3|47207|63089|3000|10000|26||100.02|99.93|0.00|-3.14|1603|0|0|01|09000A8F|0|41E6BE75|| +21|2023-10-06T20:25:26.1950000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|489D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|22992812|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9350|10000|||99.32|98.89|0.00|1.63|0001ABB9|0|1| +261|2023-10-06T20:25:25.9400000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:25:26.2820000-07:00|10FF0005|Wuwuchu Wuchu|0001ABB3|59772|63038|3200|10000|26||99.81|100.47|0.00|2.96|2704|0|0|01|09000A8F|0|41E5AC06|| +21|2023-10-06T20:25:26.3720000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|1D8D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22992812|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8600|10000|||100.09|96.81|0.00|-3.14|0001ABBA|0|1| +38|2023-10-06T20:25:26.3720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8600|10000|8||100.09|96.81|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:26.3720000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +37|2023-10-06T20:25:26.4160000-07:00|10FF0007|Kehabiqo Febiqo|0001ABB3|98276|107993|4600|10000|8||99.93|92.21|0.00|3.13|1505|0|0|01|06000A8F|0|41E49BA4|| +21|2023-10-06T20:25:26.4600000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|11060000|200204|2CB48000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|22992812|40478540|10000|10000|||100.00|80.10|0.00|0.00|98276|107993|4600|10000|||99.93|92.21|0.00|3.13|0001ABBB|0|1| +37|2023-10-06T20:25:26.5500000-07:00|10FF0001|Sesuga Sapisuga|0001ABB3|89453|89453|8600|10000|8||100.09|96.81|0.00|-3.14|1306|0|0|01|03000A8F|0|41E38B41|| +261|2023-10-06T20:25:26.1520000-07:00|Change|10FF0008||||||| +24|2023-10-06T20:25:26.5940000-07:00|40022666|Ruby Carbuncle|HoT|0|35D|54201|54201|10000|10000|||99.81|96.03|0.00|-2.29|10FF0008|Kokosaze Lulusaze|0|55377|55377|9050|10000|||99.32|98.89|0.00|3.11| +38|2023-10-06T20:25:26.5940000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-2.29|0|0|0||||||||||||| +24|2023-10-06T20:25:26.6380000-07:00|10FF0002|Suchichi Suchi|HoT|0|375|47207|63089|3000|10000|||99.95|99.80|0.00|3.14|10FF0008|Kokosaze Lulusaze|0|55377|55377|9050|10000|||99.32|98.89|0.00|3.11| +38|2023-10-06T20:25:26.6380000-07:00|10FF0002|Suchichi Suchi|005A5A16|48092|63089|3000|10000|26||99.95|99.80|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:26.6840000-07:00|40022550|Zeromus|0001ABB7|22920939||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:26.6840000-07:00|40022965|Demi-Bahamut|005A5A00|47785|47785|10000|10000|0||102.25|100.02|0.00|-3.03|0|0|0||||||||||||| +30|2023-10-06T20:25:26.6840000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|40022965|Demi-Bahamut|01|47785|40478540| +37|2023-10-06T20:25:26.7270000-07:00|40022550|Zeromus|0001ABB8|22911748||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:26.7270000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47207|63089|3000|10000|||99.95|99.80|0.00|3.14|47207|63089|3000|10000|||99.95|99.80|0.00|3.14|0001ABBC|0|1| +21|2023-10-06T20:25:26.7270000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|33A80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|22992812|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7400|10000|||99.11|99.57|0.00|3.10|0001ABBD|0|1| +37|2023-10-06T20:25:26.8620000-07:00|40022550|Zeromus|0001ABB9|22893159||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:26.8620000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|12BB|89453|89453|8600|10000|||100.09|96.81|0.00|-3.14|10FF0001|Sesuga Sapisuga|0|89453|89453|8600|10000|||100.09|96.81|0.00|-3.14| +24|2023-10-06T20:25:26.8620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|388|56517|56517|7000|10000|||99.11|99.57|0.00|3.10|10FF0008|Kokosaze Lulusaze|0|55377|55377|9050|10000|||99.32|98.89|0.00|3.11| +38|2023-10-06T20:25:26.8620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8600|10000|8||100.09|96.81|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:26.8620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7000|10000|40||99.11|99.57|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:25:26.9490000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|358|59772|63038|3200|10000|||99.78|100.48|0.00|2.95|E0000000||0||||||||||| +38|2023-10-06T20:25:26.9490000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60628|63038|3200|10000|26||99.78|100.48|0.00|2.95|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:25:26.9960000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|2CB4|89453|89453|8600|10000|||100.09|96.81|0.00|-3.09|10FF0007|Kehabiqo Febiqo|0|98276|107993|4600|10000|||99.93|92.21|0.00|3.14| +37|2023-10-06T20:25:26.9960000-07:00|40022550|Zeromus|0001ABBB|22888801||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:26.9960000-07:00|10FF0007|Kehabiqo Febiqo|0001ABBB|107993||||||99.93|92.21|0.00|3.14| +24|2023-10-06T20:25:26.9960000-07:00|10FF0006|Wowobora Gogobora|HoT|0|3E8|56517|56517|8670|10000|||98.56|96.94|0.00|0.96|E0000000||0||||||||||| +21|2023-10-06T20:25:26.9960000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|E8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22893159|40478540|10000|10000|||100.00|80.10|0.00|0.00|98276|107993|4600|10000|||99.93|92.21|0.00|3.14|0001ABBE|0|1| +38|2023-10-06T20:25:26.9960000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|8670|10000|31||98.56|96.94|0.00|0.96|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:26.9960000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:26.9960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8600|10000|8||100.09|96.81|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:26.9960000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +38|2023-10-06T20:25:27.0830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107993|107993|4600|10000|8||99.93|92.21|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:27.0830000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|107993|107993| +38|2023-10-06T20:25:27.0830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8600|10000|8||100.09|96.81|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:27.0830000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|89453|107993| +38|2023-10-06T20:25:27.1730000-07:00|40022550|Zeromus|005A5A00|22888801|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:27.1730000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +26|2023-10-06T20:25:27.1730000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +39|2023-10-06T20:25:27.2610000-07:00|10FF0007|Kehabiqo Febiqo|107993|107993|4800|10000|||99.93|92.21|0.00|3.14| +21|2023-10-06T20:25:27.2610000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|F9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22888801|40478540|10000|10000|||100.00|80.10|0.00|0.00|60628|63038|3200|10000|||99.78|100.48|0.00|2.95|0001ABBF|0|1| +261|2023-10-06T20:25:26.7690000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:27.3490000-07:00|10FF0002|Suchichi Suchi|0001ABBC|48092|63089|3000|10000|26||99.72|99.47|0.00|3.14|1600|0|0|01|05000748|0|41A00000|| +26|2023-10-06T20:25:27.3490000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +21|2023-10-06T20:25:27.3490000-07:00|10FF0002|Suchichi Suchi|1CE6|Dragon Sight|10FF0005|Wuwuchu Wuchu|50E|5AE0000|A0F|7768000|0|0|0|0|0|0|0|0|0|0|0|0|60628|63038|3200|10000|||99.78|100.48|0.00|2.95|48092|63089|3000|10000|||99.72|99.47|0.00|3.14|0001ABC0|0|1| +21|2023-10-06T20:25:27.3490000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|710003|2EAB0000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|22888801|40478540|10000|10000|||100.00|80.10|0.00|0.00|60628|63038|3200|10000|||99.78|100.48|0.00|2.95|0001ABC1|0|1| +261|2023-10-06T20:25:26.8860000-07:00|Change|10FF0004||||||||||||||| +04|2023-10-06T20:25:26.8860000-07:00|40022924|Carbuncle|00|5A|10FF0008|00||10261|13498|0|53095|0|10000|||108.14|100.24|0.00|-2.02| +261|2023-10-06T20:25:26.9970000-07:00|Remove|40022924| +39|2023-10-06T20:25:27.4400000-07:00|10FF0002|Suchichi Suchi|48722|63089|3200|10000|||99.72|99.47|0.00|2.93| +261|2023-10-06T20:25:26.9970000-07:00|Change|10FF0002||||||||||| +37|2023-10-06T20:25:27.5290000-07:00|40022550|Zeromus|0001ABBE|22885074||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:27.5290000-07:00|40022550|Zeromus|0001ABBD|22871850||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:27.5290000-07:00|40022550|Zeromus|DoT|A92|A07|22888801|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|55377|55377|9050|10000|||99.52|98.86|0.00|2.32| +38|2023-10-06T20:25:27.5290000-07:00|40022550|Zeromus|005A5A00|22869283|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:25:27.6200000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|12890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22871850|40478540|10000|10000|||100.00|80.10|0.00|0.00|48722|63089|3200|10000|||99.72|99.47|0.00|2.14|0001ABC2|0|1| +38|2023-10-06T20:25:27.6200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|9050|10000|13||99.58|98.86|0.00|2.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:27.6200000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:25:27.6640000-07:00|40022550|Zeromus|0001ABBA|22861718||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:27.6640000-07:00|10FF0001|Sesuga Sapisuga|0001ABBA|89453|89453|9000|10000|8||99.91|98.25|0.00|-1.15|1300|0|0|0| +261|2023-10-06T20:25:27.2020000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:25:27.7550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|87D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22861718|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9000|10000|||99.91|98.25|0.00|-0.18|0001ABC3|0|1| +31|2023-10-06T20:25:27.7550000-07:00|10FF0001||||| +37|2023-10-06T20:25:27.7990000-07:00|40022550|Zeromus|0001ABBF|22857720||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:27.2990000-07:00|Remove|40022917| +21|2023-10-06T20:25:27.8430000-07:00|40022965|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|12A50000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|22857720|40478540|10000|10000|||100.00|80.10|0.00|0.00|47785|47785|10000|10000|||102.25|100.02|0.00|-3.03|0001ABC4|0|1| +21|2023-10-06T20:25:27.8870000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022550|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22857720|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7000|10000|||99.19|99.54|-0.02|2.00|0001ABC5|0|1| +38|2023-10-06T20:25:27.8880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|4800|10000|9||99.93|92.21|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:27.8880000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|107993|107993| +37|2023-10-06T20:25:27.9760000-07:00|10FF0005|Wuwuchu Wuchu|0001ABC0|60628|63038|3200|10000|26||99.78|100.48|0.00|3.13|2700|0|0|01|0A0005AE|0|41A00000|| +26|2023-10-06T20:25:27.9760000-07:00|5AE|Left Eye|20.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|63038|63089| +37|2023-10-06T20:25:27.9760000-07:00|10FF0002|Suchichi Suchi|0001ABC0|48722|63089|3200|10000|26||99.72|99.47|0.00|0.06|1600|0|0|01|0A000776|0|41A00000|| +26|2023-10-06T20:25:27.9760000-07:00|776|Right Eye|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +39|2023-10-06T20:25:28.0210000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|9200|10000|||100.08|97.98|0.00|3.10| +22|2023-10-06T20:25:28.0670000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0005|Wuwuchu Wuchu|30E|A270000|100000E|A280000|F|B9C8000|0|0|0|0|0|0|0|0|0|0|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|0001ABC6|0|7| +22|2023-10-06T20:25:28.0670000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0002|Suchichi Suchi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|48722|63089|3200|10000|||99.72|99.47|0.00|0.06|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|0001ABC6|1|7| +22|2023-10-06T20:25:28.0670000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0004|Buhojaqe Zijaqe|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|7000|10000|||99.26|99.52|0.00|3.11|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|0001ABC6|2|7| +22|2023-10-06T20:25:28.0670000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0008|Kokosaze Lulusaze|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|9050|10000|||99.78|98.86|0.00|1.64|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|0001ABC6|3|7| +22|2023-10-06T20:25:28.0670000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0001|Sesuga Sapisuga|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|9200|10000|||100.08|97.98|0.00|3.10|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|0001ABC6|4|7| +22|2023-10-06T20:25:28.0670000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0006|Wowobora Gogobora|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|8670|10000|||98.56|96.94|0.00|0.96|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|0001ABC6|5|7| +22|2023-10-06T20:25:28.0670000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0007|Kehabiqo Febiqo|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|4800|10000|||99.93|92.21|-0.02|-3.07|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|0001ABC6|6|7| +37|2023-10-06T20:25:28.1540000-07:00|40022550|Zeromus|0001ABC2|22852975||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:28.2000000-07:00|40022550|Zeromus|DoT|0|2347|22852975|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:28.2000000-07:00|40022550|Zeromus|005A5A00|22843944|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T20:25:28.2430000-07:00|40022666|Ruby Carbuncle|54201|54201|10000|10000|||99.81|96.03|0.00|-2.23| +37|2023-10-06T20:25:28.2870000-07:00|40022550|Zeromus|0001ABC3|22841771||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:25:28.3330000-07:00|50B4|3| +37|2023-10-06T20:25:28.3780000-07:00|40022550|Zeromus|0001ABC1|22829824||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:28.3780000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7200|10000|||99.29|99.50|0.00|3.11| +261|2023-10-06T20:25:27.9100000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:25:28.4220000-07:00|40022666|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|157D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|48722|63089|3200|10000|||99.72|99.47|0.00|0.06|54201|54201|10000|10000|||99.81|96.03|0.00|-1.82|0001ABC7|0|1| +39|2023-10-06T20:25:28.5110000-07:00|10FF0006|Wowobora Gogobora|56517|56517|8875|10000|||98.56|96.94|0.00|0.96| +21|2023-10-06T20:25:28.5110000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|13A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22829824|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9050|10000|||99.78|98.86|0.00|1.64|0001ABC8|0|1| +261|2023-10-06T20:25:28.0200000-07:00|Change|10FF0006||||| +20|2023-10-06T20:25:28.5560000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.29|99.50|0.00|3.11| +21|2023-10-06T20:25:28.6000000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35722003|36470000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|22829824|40478540|10000|10000|||100.00|80.10|0.00|0.00|48722|63089|3200|10000|||99.72|99.47|0.00|0.22|0001ABC9|0|1| +21|2023-10-06T20:25:28.6460000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|48750000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|22829824|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|9050|10000|||99.78|98.86|0.00|1.64|0001ABCA|0|1| +261|2023-10-06T20:25:28.1340000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:25:28.2320000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:28.6900000-07:00|40022550|Zeromus|0001ABC5|22829824|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04C5|0|41700000|| +26|2023-10-06T20:25:28.6900000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|56517| +37|2023-10-06T20:25:28.7350000-07:00|10FF0005|Wuwuchu Wuchu|0001ABC6|60628|63038|3200|10000|26||99.78|100.48|0.00|3.13|2700|0|0|03|0B000A27|0|41A00000|||||||||| +26|2023-10-06T20:25:28.7350000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:25:28.7350000-07:00|B9C|Bloodsown Circle|6.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:25:28.7350000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +21|2023-10-06T20:25:28.8240000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|750003|3AB70000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|22829824|40478540|10000|10000|||100.00|80.10|0.00|0.00|60628|63038|3200|10000|||99.78|100.48|0.00|3.13|0001ABCB|0|1| +38|2023-10-06T20:25:28.8240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60628|63038|3200|10000|26||99.78|100.48|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:28.8240000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|63038|63038| +37|2023-10-06T20:25:28.8670000-07:00|40022550|Zeromus|0001ABC4|22825051||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:28.8670000-07:00|10FF0002|Suchichi Suchi|0001ABC6|48722|63089|3200|10000|26||99.69|99.45|0.00|3.13|1601|0|0|02|0B000A27|0|41A00000|||||| +26|2023-10-06T20:25:28.8670000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|63089|63038| +26|2023-10-06T20:25:28.8670000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|63089|63038| +37|2023-10-06T20:25:28.8670000-07:00|10FF0005|Wuwuchu Wuchu|0001ABC6|60628|63038|3200|10000|26||99.78|100.48|0.00|3.13|2701|0|0|01|0F000A1B|02|C1F00000|| +39|2023-10-06T20:25:28.8670000-07:00|10FF0005|Wuwuchu Wuchu|61258|63038|3400|10000|||99.78|100.48|0.00|3.13| +21|2023-10-06T20:25:28.8670000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|F920000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|22829824|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9200|10000|||100.08|97.98|0.00|-3.14|0001ABCC|0|1| +261|2023-10-06T20:25:28.3220000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:25:28.9120000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|19440000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|22829824|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|4800|10000|||99.84|93.46|0.00|-0.16|0001ABCD|0|1| +37|2023-10-06T20:25:29.0000000-07:00|10FF0004|Buhojaqe Zijaqe|0001ABC6|56517|56517|7200|10000|40||99.29|99.50|0.00|3.11|1C02|0|0|02|0A000A27|0|41A00000|||||| +26|2023-10-06T20:25:29.0000000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|56517|63038| +26|2023-10-06T20:25:29.0000000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|56517|63038| +37|2023-10-06T20:25:29.0000000-07:00|10FF0005|Wuwuchu Wuchu|0001ABC6|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|2702|0|0|01|0F000A1B|02|C1F00000|| +38|2023-10-06T20:25:29.0010000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-0.37|0|0|0|||||||||||||||| +26|2023-10-06T20:25:29.0010000-07:00|A27|Arcane Circle|19.96|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|54201|63038| +37|2023-10-06T20:25:29.0460000-07:00|40022550|Zeromus|0001ABC8|22824737||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:29.0460000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8950|10000|||99.78|98.86|0.00|3.13| +21|2023-10-06T20:25:29.0900000-07:00|10FF0006|Wowobora Gogobora|5EDF|Egeiro|10FF0003|Gegehi Gehi|814000E|940000|1B|5EDF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|51159|0|10000|||106.22|102.31|0.00|2.08|56517|56517|8875|10000|||98.56|96.94|0.00|0.96|0001ABCE|0|1| +261|2023-10-06T20:25:28.6390000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:25:29.1350000-07:00|10FF0008|Kokosaze Lulusaze|0001ABC6|55377|55377|8950|10000|13||99.78|98.90|0.00|2.42|1B03|0|0|02|04000A27|0|41A00000|||||| +26|2023-10-06T20:25:29.1350000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|55377|63038| +26|2023-10-06T20:25:29.1350000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|55377|63038| +37|2023-10-06T20:25:29.1350000-07:00|10FF0005|Wuwuchu Wuchu|0001ABC6|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|2703|0|0|01|0F000A1B|02|C1F00000|| +38|2023-10-06T20:25:29.1350000-07:00|40022965|Demi-Bahamut|005A5A00|47785|47785|10000|10000|0||102.25|100.02|0.00|-3.03|0|0|0||||||||||||| +26|2023-10-06T20:25:29.1350000-07:00|A27|Arcane Circle|19.96|10FF0005|Wuwuchu Wuchu|40022965|Demi-Bahamut|00|47785|63038| +261|2023-10-06T20:25:28.6390000-07:00|Change|10FF0008||||||| +22|2023-10-06T20:25:29.1800000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0002|Suchichi Suchi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48722|63089|3200|10000|||99.56|99.34|-0.01|-3.13|48722|63089|3200|10000|||99.56|99.34|-0.01|-3.13|0001ABCF|0|7| +22|2023-10-06T20:25:29.1800000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0004|Buhojaqe Zijaqe|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|7200|10000|||99.29|99.50|0.00|3.11|48722|63089|3200|10000|||99.56|99.34|-0.01|-3.13|0001ABCF|1|7| +22|2023-10-06T20:25:29.1800000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0008|Kokosaze Lulusaze|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|8950|10000|||99.78|98.90|0.00|2.42|48722|63089|3200|10000|||99.56|99.34|-0.01|-3.13|0001ABCF|2|7| +22|2023-10-06T20:25:29.1800000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0005|Wuwuchu Wuchu|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61258|63038|3400|10000|||99.78|100.48|0.00|3.13|48722|63089|3200|10000|||99.56|99.34|-0.01|-3.13|0001ABCF|3|7| +22|2023-10-06T20:25:29.1800000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0001|Sesuga Sapisuga|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|9200|10000|||100.08|97.98|0.00|-3.14|48722|63089|3200|10000|||99.56|99.34|-0.01|-3.13|0001ABCF|4|7| +22|2023-10-06T20:25:29.1800000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0006|Wowobora Gogobora|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6475|10000|||98.56|96.94|0.00|0.96|48722|63089|3200|10000|||99.56|99.34|-0.01|-3.13|0001ABCF|5|7| +22|2023-10-06T20:25:29.1800000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0007|Kehabiqo Febiqo|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|4800|10000|||99.84|93.52|0.00|3.13|48722|63089|3200|10000|||99.56|99.34|-0.01|-3.13|0001ABCF|6|7| +37|2023-10-06T20:25:29.2240000-07:00|10FF0002|Suchichi Suchi|0001ABC7|54223||||||99.56|99.34|-0.01|-3.13| +38|2023-10-06T20:25:29.2240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:29.2240000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +38|2023-10-06T20:25:29.2240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8950|10000|13||99.78|98.90|0.00|2.42|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:29.2240000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|55377|63038| +37|2023-10-06T20:25:29.2690000-07:00|40022550|Zeromus|0001ABCA|22806188||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:29.2690000-07:00|10FF0001|Sesuga Sapisuga|0001ABC6|89453|89453|9200|10000|8||100.08|97.98|0.00|-3.14|1304|0|0|02|08000A27|0|41A00000|||||| +26|2023-10-06T20:25:29.2690000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|89453|63038| +26|2023-10-06T20:25:29.2690000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|89453|63038| +37|2023-10-06T20:25:29.2690000-07:00|10FF0005|Wuwuchu Wuchu|0001ABC6|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|2704|0|0|01|0F000A1B|02|C1F00000|| +261|2023-10-06T20:25:28.8680000-07:00|Change|10FF0006||||| +37|2023-10-06T20:25:29.4020000-07:00|10FF0006|Wowobora Gogobora|0001ABC6|56517|56517|6475|10000|31||98.56|96.94|0.00|0.96|2805|0|0|02|04000A27|0|41A00000|||||| +26|2023-10-06T20:25:29.4020000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|56517|63038| +26|2023-10-06T20:25:29.4020000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|56517|63038| +37|2023-10-06T20:25:29.4020000-07:00|10FF0005|Wuwuchu Wuchu|0001ABC6|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|2705|0|0|01|0F000A1B|02|C1F00000|| +261|2023-10-06T20:25:28.9880000-07:00|Change|10FF0004||||||||||||||| +38|2023-10-06T20:25:29.4470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:29.4470000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|63038|63038| +38|2023-10-06T20:25:29.4470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9200|10000|8||100.10|97.95|0.00|2.64|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:29.4470000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:25:29.4470000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|89453|63038| +37|2023-10-06T20:25:29.4910000-07:00|40022550|Zeromus|0001ABCC|22802202||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:29.4910000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32C00000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|22806188|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7200|10000|||99.29|99.50|0.00|3.11|0001ABD0|0|1| +37|2023-10-06T20:25:29.5350000-07:00|40022550|Zeromus|0001ABCD|22795734||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:29.5350000-07:00|10FF0007|Kehabiqo Febiqo|0001ABC6|89994|89994|4800|10000|9||99.84|93.52|0.00|3.13|1506|0|0|02|09000A27|0|41A00000|||||| +26|2023-10-06T20:25:29.5350000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|89994|63038| +26|2023-10-06T20:25:29.5350000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|89994|63038| +37|2023-10-06T20:25:29.5350000-07:00|10FF0005|Wuwuchu Wuchu|0001ABC6|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|2706|0|0|01|0F000A1B|02|C1F00000|| +38|2023-10-06T20:25:29.5810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:29.5810000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|03|63038|63038| +24|2023-10-06T20:25:29.5810000-07:00|40022666|Ruby Carbuncle|HoT|0|378|54201|54201|10000|10000|||99.81|96.03|0.00|-0.11|10FF0005|Wuwuchu Wuchu|0|61258|63038|3400|10000|||99.78|100.48|0.00|3.13| +38|2023-10-06T20:25:29.5810000-07:00|10FF0002|Suchichi Suchi|005A5A16|54223|63089|3200|10000|26||99.53|99.32|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:29.5810000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|63089|63038| +38|2023-10-06T20:25:29.5810000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-0.11|0|0|0|||||||||||||||| +37|2023-10-06T20:25:29.6250000-07:00|40022550|Zeromus|0001ABC9|22781839||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:29.6700000-07:00|10FF0003|Gegehi Gehi|0001ABCE|0|51159|0|10000|0||106.22|102.31|0.00|2.08|2300|0|0|01|01000094|08|42700000|| +26|2023-10-06T20:25:29.6700000-07:00|94|Raise|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|08|51159|56517| +24|2023-10-06T20:25:29.6700000-07:00|10FF0002|Suchichi Suchi|HoT|0|3A3|54223|63089|3200|10000|||99.53|99.32|0.00|-3.13|10FF0005|Wuwuchu Wuchu|0|61258|63038|3400|10000|||99.78|100.48|0.00|3.13| +38|2023-10-06T20:25:29.6700000-07:00|10FF0002|Suchichi Suchi|005A5A16|55154|63089|3200|10000|26||99.53|99.32|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:25:29.7140000-07:00|40022965|Demi-Bahamut|47785|47785|10000|10000|||102.25|100.02|0.00|-3.03| +21|2023-10-06T20:25:29.7590000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|10B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22781839|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6800|10000|||99.29|99.50|0.00|3.11|0001ABD1|0|1| +37|2023-10-06T20:25:29.8030000-07:00|10FF0002|Suchichi Suchi|0001ABCF|55154|63089|3200|10000|26||99.53|99.32|-0.02|-3.13|1600|0|0|01|0C000312|0|41700000|| +26|2023-10-06T20:25:29.8030000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:25:29.8030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9200|10000|8||100.88|98.16|0.00|2.79|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:29.8030000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +24|2023-10-06T20:25:29.8470000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|37F|56517|56517|6800|10000|||99.29|99.50|0.00|3.11|10FF0005|Wuwuchu Wuchu|0|61258|63038|3400|10000|||99.78|100.48|0.00|3.13| +38|2023-10-06T20:25:29.8470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|4800|10000|9||99.84|93.52|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:29.8470000-07:00|A3B|Taurochole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:29.8470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6800|10000|40||99.29|99.50|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:29.8930000-07:00|40022550|Zeromus|0001ABCB|22766808||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:29.8930000-07:00|10FF0005|Wuwuchu Wuchu|0001ABCB|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|2700|0|0|01|0F000A1B|02|41F00000|| +21|2023-10-06T20:25:29.8930000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55154|63089|3200|10000|||99.53|99.32|-0.02|-3.13|55154|63089|3200|10000|||99.53|99.32|-0.02|-3.13|0001ABD2|0|1| +26|2023-10-06T20:25:29.8930000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +21|2023-10-06T20:25:29.8930000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|480D0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|22781839|40478540|10000|10000|||100.00|80.10|0.00|0.00|61258|63038|3400|10000|||99.78|100.48|0.00|3.13|0001ABD3|0|1| +38|2023-10-06T20:25:29.8930000-07:00|10FF0002|Suchichi Suchi|005A5A16|55154|63089|3200|10000|26||99.53|99.32|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:29.8930000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:25:29.8930000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61258|63038|3400|10000|26||99.78|100.48|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:29.8930000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:25:29.8930000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:25:29.9380000-07:00|10FF0004|Buhojaqe Zijaqe|0001ABCF|56517|56517|6800|10000|40||99.29|99.50|0.00|3.11|1C01|0|0|01|0C000312|0|41700000|| +26|2023-10-06T20:25:29.9380000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|56517|63089| +37|2023-10-06T20:25:29.9380000-07:00|10FF0002|Suchichi Suchi|0001ABCF|55154|63089|3200|10000|26||99.50|99.32|-0.02|-3.12|1601|0|0|01|0D000074|0|C0A00000|| +21|2023-10-06T20:25:29.9380000-07:00|40022965|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|13450000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|22766808|40478540|10000|10000|||100.00|80.10|0.00|0.00|47785|47785|10000|10000|||102.25|100.02|0.00|-3.03|0001ABD4|0|1| +24|2023-10-06T20:25:29.9380000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|350|61258|63038|3400|10000|||99.78|100.48|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|61258|63038|3400|10000|||99.78|100.48|0.00|3.13| +21|2023-10-06T20:25:29.9380000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|752003|AE320000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|22766808|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6475|10000|||98.56|96.94|0.00|0.96|0001ABD5|0|1| +21|2023-10-06T20:25:29.9380000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22766808|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6475|10000|||98.56|96.94|0.00|0.96|0001ABD6|0|1| +38|2023-10-06T20:25:29.9380000-07:00|40022666|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.81|96.03|0.00|-0.46|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:29.9380000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|40022666|Ruby Carbuncle|00|54201|63089| +38|2023-10-06T20:25:29.9380000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62106|63038|3400|10000|26||99.78|100.48|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:29.3810000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T20:25:30.0250000-07:00|10FF0006|Wowobora Gogobora|HoT|0|3DA|56517|56517|6075|10000|||98.56|96.94|0.00|3.06|E0000000||0||||||||||| +21|2023-10-06T20:25:30.0250000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|87D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22766808|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9200|10000|||102.13|98.54|0.00|2.93|0001ABD7|0|1| +38|2023-10-06T20:25:30.0250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6075|10000|31||98.56|96.94|0.00|3.06|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:30.0250000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +31|2023-10-06T20:25:30.0250000-07:00|10FF0001||||| +37|2023-10-06T20:25:30.0700000-07:00|10FF0008|Kokosaze Lulusaze|0001ABCF|55377|55377|8950|10000|13||99.96|101.98|-0.01|0.06|1B02|0|0|01|06000312|0|41700000|| +26|2023-10-06T20:25:30.0700000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|55377|63089| +37|2023-10-06T20:25:30.0700000-07:00|10FF0002|Suchichi Suchi|0001ABCF|55154|63089|3200|10000|26||99.35|99.32|0.00|-3.12|1602|0|0|01|0D000074|0|C0A00000|| +38|2023-10-06T20:25:30.0700000-07:00|40022965|Demi-Bahamut|005A5A00|47785|47785|10000|10000|0||102.25|100.02|0.00|-3.03|0|0|0|||||||||||||||| +26|2023-10-06T20:25:30.0700000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|40022965|Demi-Bahamut|00|47785|63089| +21|2023-10-06T20:25:30.1140000-07:00|40022550|Zeromus|8B69|Black Hole|40022550|Zeromus|1B|8B698000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22766808|40478540|10000|10000|||100.00|80.10|0.00|0.00|22766808|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001ABD8|0|1| +26|2023-10-06T20:25:30.1140000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|55377|55377| +21|2023-10-06T20:25:30.1140000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|752003|5F1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22766808|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8950|10000|||99.96|101.98|-0.01|0.06|0001ABD9|0|1| +21|2023-10-06T20:25:30.1140000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|756003|242B0000|104|D848000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|22766808|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6800|10000|||99.29|99.50|0.00|3.11|0001ABDA|0|1| +38|2023-10-06T20:25:30.1140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6800|10000|40||99.29|99.50|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:30.1140000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|56517|56517| +261|2023-10-06T20:25:29.6590000-07:00|Change|40022550||||||||||||| +37|2023-10-06T20:25:30.2040000-07:00|10FF0005|Wuwuchu Wuchu|0001ABCF|62106|63038|3400|10000|26||99.78|100.48|0.00|3.13|2703|0|0|02|05000312|0|41700000|||||| +26|2023-10-06T20:25:30.2040000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|63038|63089| +37|2023-10-06T20:25:30.2040000-07:00|10FF0002|Suchichi Suchi|0001ABCF|55154|63089|3200|10000|26||99.29|99.32|0.00|-3.12|1603|0|0|01|0D000074|0|C0A00000|| +38|2023-10-06T20:25:30.2480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62106|63038|3400|10000|26||99.78|100.48|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:30.2480000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|04|63038|63038| +39|2023-10-06T20:25:30.2480000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|5000|10000|||99.84|93.52|0.00|3.13| +38|2023-10-06T20:25:30.2480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6800|10000|40||99.29|99.50|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:30.2480000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|56517|63038| +37|2023-10-06T20:25:30.2920000-07:00|40022550|Zeromus|0001ABD0|22753816||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:30.2920000-07:00|40022550|Zeromus|0001ABD1|22753549||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:29.7780000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T20:25:29.9010000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:25:30.3370000-07:00|10FF0001|Sesuga Sapisuga|0001ABCF|89453|89453|9200|10000|8||102.19|98.06|0.00|3.06|1304|0|0|01|05000312|0|41700000|| +26|2023-10-06T20:25:30.3370000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|89453|63089| +37|2023-10-06T20:25:30.3370000-07:00|10FF0002|Suchichi Suchi|0001ABCF|55154|63089|3200|10000|26||99.23|99.32|0.00|-3.12|1604|0|0|01|0D000074|0|C0A00000|| +38|2023-10-06T20:25:30.3370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62106|63038|3400|10000|26||99.68|100.06|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:30.3370000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +26|2023-10-06T20:25:30.3370000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|05|63038|63038| +37|2023-10-06T20:25:30.3820000-07:00|40022550|Zeromus|0001ABD3|22735104||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:30.3820000-07:00|10FF0005|Wuwuchu Wuchu|0001ABD3|62106|63038|3400|10000|26||99.68|100.06|0.00|3.09|2700|0|0|01|11000A1C|0|42700000|| +21|2023-10-06T20:25:30.3820000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|8860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22753549|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5000|10000|||99.84|93.52|0.00|3.13|0001ABDB|0|1| +38|2023-10-06T20:25:30.3820000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62106|63038|3400|10000|26||99.68|100.06|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:30.4260000-07:00|10FF0002|Suchichi Suchi|0001ABD2|55154|63089|3200|10000|26||99.23|99.32|0.00|-3.12|1600|0|0|01|0D000074|0|40A00000|| +261|2023-10-06T20:25:30.0110000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:25:30.4260000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|15850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22753549|40478540|10000|10000|||100.00|80.10|0.00|0.00|55154|63089|3200|10000|||99.23|99.32|0.00|-3.12|0001ABDC|0|1| +38|2023-10-06T20:25:30.4260000-07:00|10FF0002|Suchichi Suchi|005A5A16|55154|63089|3200|10000|26||99.23|99.32|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:30.4710000-07:00|10FF0006|Wowobora Gogobora|0001ABCF|56517|56517|6075|10000|31||98.56|96.94|0.00|3.06|2805|0|0|01|0A000312|0|41700000|| +26|2023-10-06T20:25:30.4710000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|56517|63089| +37|2023-10-06T20:25:30.4710000-07:00|40022550|Zeromus|0001ABD6|22735041||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:30.4710000-07:00|10FF0002|Suchichi Suchi|55784|63089|3400|10000|||99.23|99.32|0.00|-3.12| +21|2023-10-06T20:25:30.4710000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|15250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22753549|40478540|10000|10000|||100.00|80.10|0.00|0.00|62106|63038|3400|10000|||99.68|100.06|0.00|3.09|0001ABDD|0|1| +38|2023-10-06T20:25:30.5600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62106|63038|3400|10000|26||99.60|99.68|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:30.5600000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|06|63038|63038| +37|2023-10-06T20:25:30.5600000-07:00|40022550|Zeromus|0001ABD7|22732868||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:30.5600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5000|10000|9||99.84|93.52|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:30.5600000-07:00|59|Vengeance|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|89994|89994| +38|2023-10-06T20:25:30.5600000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6075|10000|31||98.56|96.94|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:30.5600000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|56517|63038| +37|2023-10-06T20:25:30.6050000-07:00|10FF0007|Kehabiqo Febiqo|0001ABCF|89994|89994|5000|10000|9||99.84|93.52|0.00|3.13|1506|0|0|01|05000312|0|41700000|| +26|2023-10-06T20:25:30.6050000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|89994|63089| +24|2023-10-06T20:25:30.6050000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|23A5|89453|89453|9200|10000|||102.19|98.06|0.00|3.06|10FF0006|Wowobora Gogobora|1|56517|56517|6075|10000|||98.56|96.94|0.00|3.06| +37|2023-10-06T20:25:30.6050000-07:00|40022550|Zeromus|0001ABD5|22688274||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:30.6050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9200|10000|8||102.19|98.06|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:30.7830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6800|10000|40||99.29|99.50|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:30.7830000-07:00|317|Dissipation|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:25:30.7830000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|56517|56517| +21|2023-10-06T20:25:30.7830000-07:00|10FF0004|Buhojaqe Zijaqe|E03|Dissipation|10FF0004|Buhojaqe Zijaqe|140E|3170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6800|10000|||99.29|99.50|0.00|3.11|56517|56517|6800|10000|||99.29|99.50|0.00|3.11|0001ABDE|0|1| +38|2023-10-06T20:25:30.7830000-07:00|40022666|Ruby Carbuncle|005A5A00|0|54201|0|10000|0||99.81|96.03|0.00|-2.95|0|0|0||||||| +30|2023-10-06T20:25:30.7830000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|54201|63038| +261|2023-10-06T20:25:30.3180000-07:00|Change|40022666||||||||||| +30|2023-10-06T20:25:30.7830000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022666|Ruby Carbuncle|00|54201|55377| +30|2023-10-06T20:25:30.7830000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022666|Ruby Carbuncle|00|54201|63038| +30|2023-10-06T20:25:30.7830000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|40022666|Ruby Carbuncle|00|54201|63089| +27|2023-10-06T20:25:30.8710000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|014A|0000|0000|0000| +261|2023-10-06T20:25:30.4170000-07:00|Change|40022666||||||||| +37|2023-10-06T20:25:30.9160000-07:00|40022550|Zeromus|0001ABDB|22686092||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:30.9610000-07:00|40022550|Zeromus|0001ABDC|22680583||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:30.9610000-07:00|40022550|Zeromus|0001ABD4|22675650||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:31.0050000-07:00|40022550|Zeromus|0001ABDD|22670237||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:31.0060000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|9400|10000|||102.19|98.06|0.00|3.06| +261|2023-10-06T20:25:30.5140000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:31.0510000-07:00|40022550|Zeromus|0001ABD9|22645887||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:31.0960000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F726003|88800000|104|19838000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|22645887|40478540|10000|10000|||100.00|80.10|0.00|0.00|55784|63089|3400|10000|||99.25|99.32|0.00|3.14|0001ABDF|0|1| +21|2023-10-06T20:25:31.0960000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|4C1D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|22645887|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8950|10000|||99.99|102.76|0.00|0.46|0001ABE0|0|1| +38|2023-10-06T20:25:31.0960000-07:00|10FF0002|Suchichi Suchi|005A5A16|55784|63089|3400|10000|26||99.25|99.32|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:31.0960000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:25:31.0960000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:30.5140000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:25:31.1390000-07:00|40022550|Zeromus|0001ABDA|22636628||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:31.1390000-07:00|10FF0004|Buhojaqe Zijaqe|0001ABDA|56517|56517|6800|10000|40||99.29|99.50|0.00|3.11|1C00|0|0|01|03000317|0|C1F00000|| +24|2023-10-06T20:25:31.1850000-07:00|40022550|Zeromus|DoT|0|2733|22645887|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:31.1850000-07:00|40022550|Zeromus|005A5A00|22626593|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:31.1850000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +36|2023-10-06T20:25:31.3190000-07:00|5190|3| +39|2023-10-06T20:25:31.3640000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|7000|10000|||99.31|99.50|0.00|2.32| +21|2023-10-06T20:25:31.3640000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|26D10000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|22626593|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5000|10000|||99.84|93.52|0.00|3.13|0001ABE1|0|1| +38|2023-10-06T20:25:31.3640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5000|10000|9||99.84|93.52|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:31.3640000-07:00|A75|Surging Tempest|54.19|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:25:31.3640000-07:00|40022550|Zeromus|005A5A00|22626593|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:31.3640000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|56517| +37|2023-10-06T20:25:31.4080000-07:00|10FF0004|Buhojaqe Zijaqe|0001ABDE|56517|56517|7000|10000|40||99.34|99.51|0.00|2.09|1C00|0|0|01|03000317|0|41F00000|| +21|2023-10-06T20:25:31.4080000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|17FA0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|22626593|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9400|10000|||102.19|98.06|0.00|-3.02|0001ABE2|0|1| +38|2023-10-06T20:25:31.4080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7000|10000|40||99.34|99.51|0.00|2.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:30.9750000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:25:31.4960000-07:00|10FF0006|Wowobora Gogobora|56517|56517|6280|10000|||98.56|96.94|0.00|3.06| +20|2023-10-06T20:25:31.4960000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.38|99.52|0.00|1.92| +261|2023-10-06T20:25:30.9750000-07:00|Change|10FF0006||| +21|2023-10-06T20:25:31.6740000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22626593|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8650|10000|||99.99|102.95|0.00|-3.14|0001ABE3|0|1| +37|2023-10-06T20:25:31.7190000-07:00|40022550|Zeromus|0001ABE0|22607108||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:31.7190000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|726003|43FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22626593|40478540|10000|10000|||100.00|80.10|0.00|0.00|55784|63089|3400|10000|||99.56|98.98|0.00|3.09|0001ABE4|0|1| +21|2023-10-06T20:25:31.7630000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|750003|3A730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22607108|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8650|10000|||99.99|102.95|0.00|-3.14|0001ABE5|0|1| +38|2023-10-06T20:25:31.7630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8650|10000|13||99.99|102.95|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:25:31.7630000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|55377|55377| +37|2023-10-06T20:25:31.8080000-07:00|40022550|Zeromus|0001ABDF|22572164||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:31.8080000-07:00|10FF0002|Suchichi Suchi|0001ABDF|62315|63089|3400|10000|26||99.65|98.81|0.00|3.13|1600|0|0|01|0E000322|0|41F00000|| +38|2023-10-06T20:25:31.8080000-07:00|10FF0002|Suchichi Suchi|005A5A16|62315|63089|3400|10000|26||99.65|98.81|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:25:31.8970000-07:00|10FF0005|Wuwuchu Wuchu|62736|63038|3600|10000|||99.50|99.26|0.00|2.98| +261|2023-10-06T20:25:31.3990000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:25:32.0330000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8850|10000|||99.99|102.95|0.00|-3.14| +261|2023-10-06T20:25:31.4890000-07:00|Change|10FF0008||||||| +37|2023-10-06T20:25:32.1650000-07:00|40022550|Zeromus|0001ABE2|22566026||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:32.1650000-07:00|10FF0001|Sesuga Sapisuga|0001ABE2|89453|89453|10000|10000|8||102.19|98.06|0.00|-3.02|1300|0|0|0| +261|2023-10-06T20:25:31.6020000-07:00|Change|4002256E||||||||| +00|2023-10-06T20:25:31.0000000-07:00|0044|Zeromus|Your souls are mine!| +261|2023-10-06T20:25:31.7190000-07:00|Change|10FF0001||||| +21|2023-10-06T20:25:32.1660000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|10000|10000|||102.19|98.06|0.00|-3.02|89453|89453|10000|10000|||102.19|98.06|0.00|-3.02|0001ABE6|0|1| +38|2023-10-06T20:25:32.1660000-07:00|10FF0002|Suchichi Suchi|005A5A16|62315|63089|3400|10000|26||99.70|98.74|0.00|-2.19|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:32.1660000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|63089|63038| +38|2023-10-06T20:25:32.1660000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|6280|10000|31||98.69|96.47|-0.02|2.78|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:32.1660000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:32.1660000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|56517|63038| +38|2023-10-06T20:25:32.1660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|7000|10000|40||99.47|99.53|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:32.1660000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|56517|63038| +38|2023-10-06T20:25:32.1660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62736|63038|3600|10000|26||99.50|99.26|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:32.1660000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:25:32.2100000-07:00|40022550|Zeromus|0001ABE3|22565843||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:25:32.2550000-07:00|40022550|Zeromus|8B3D|Fractured Eventide|40022550|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:25:32.2550000-07:00|4002256E|Zeromus|8B3E|Fractured Eventide|4002256E|Zeromus|10.200|100.00|80.10|0.00|-0.79| +261|2023-10-06T20:25:31.8310000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:25:31.8310000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:25:32.3000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|8CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22565843|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||102.32|98.04|0.00|-2.97|0001ABE7|0|1| +31|2023-10-06T20:25:32.3000000-07:00|10FF0001||||| +37|2023-10-06T20:25:32.3440000-07:00|40022550|Zeromus|0001ABE4|22548441||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:32.3440000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|3C440000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|22565843|40478540|10000|10000|||100.00|80.10|0.00|0.00|62736|63038|3600|10000|||99.50|99.26|0.00|2.98|0001ABE8|0|1| +38|2023-10-06T20:25:32.3440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62736|63038|3600|10000|26||99.50|99.26|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:32.3440000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:25:32.3440000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +30|2023-10-06T20:25:32.3440000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +21|2023-10-06T20:25:32.3880000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|720003|1F8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22548441|40478540|10000|10000|||100.00|80.10|0.00|0.00|62315|63089|3400|10000|||99.69|98.84|-0.02|-1.28|0001ABE9|0|1| +38|2023-10-06T20:25:32.3880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8850|10000|13||99.99|102.95|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:25:32.3880000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|55377|55377| +21|2023-10-06T20:25:32.3880000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|752003|376B0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|22548441|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8850|10000|||99.99|102.95|0.00|-3.14|0001ABEA|0|1| +20|2023-10-06T20:25:32.3880000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.76|96.22|0.00|2.63| +38|2023-10-06T20:25:32.3880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8850|10000|13||99.99|102.95|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:32.3880000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:25:31.9470000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:25:32.4310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|571D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|22548441|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|7000|10000|||99.47|99.53|0.00|3.12|0001ABEB|0|1| +261|2023-10-06T20:25:31.9470000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:25:32.6980000-07:00|40022550|Zeromus|0001ABE5|22533478||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:32.6980000-07:00|10FF0008|Kokosaze Lulusaze|0001ABE5|55377|55377|8850|10000|13||99.99|102.95|0.00|-3.14|1B00|0|0|01|09000A8D|0|C2700000|| +261|2023-10-06T20:25:32.2500000-07:00|Change|4002256E||||||||||||| +39|2023-10-06T20:25:32.7430000-07:00|40022965|Demi-Bahamut|47785|47785|10000|10000|||102.25|100.02|0.00|-3.03| +261|2023-10-06T20:25:32.3450000-07:00|Change|40022666||||||| +37|2023-10-06T20:25:32.8310000-07:00|10FF0001|Sesuga Sapisuga|0001ABE6|89453|89453|10000|10000|8||103.37|97.54|0.00|-2.97|1300|0|0|01|0900004C|0|41A00000|| +26|2023-10-06T20:25:32.8310000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +37|2023-10-06T20:25:32.8310000-07:00|40022550|Zeromus|0001ABE7|22531224||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:32.8770000-07:00|40022550|Zeromus|0001ABE8|22515796||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:32.8770000-07:00|10FF0005|Wuwuchu Wuchu|0001ABE8|62736|63038|3600|10000|26||99.50|99.26|0.00|3.12|2700|0|0|01|06000A1D|0|42700000|| +38|2023-10-06T20:25:32.8770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62736|63038|3600|10000|26||99.50|99.26|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:32.9660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62736|63038|3600|10000|26||99.50|99.26|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:32.9660000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|07|63038|63038| +21|2023-10-06T20:25:32.9660000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|750003|1F3B0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|22515796|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||103.67|97.49|0.00|-2.97|0001ABEC|0|1| +38|2023-10-06T20:25:32.9660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5000|10000|9||99.31|93.69|0.00|-1.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:32.9660000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|89994|63038| +38|2023-10-06T20:25:32.9660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|8||103.67|97.49|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:32.9660000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:25:32.9660000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|89453|89453| +26|2023-10-06T20:25:32.9660000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +37|2023-10-06T20:25:33.0100000-07:00|40022550|Zeromus|0001ABE1|22505859||||||100.00|80.10|0.00|0.00| +26|2023-10-06T20:25:33.0100000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|56517|56517| +21|2023-10-06T20:25:33.0100000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|752003|1B950000|104|A4E8000|0|0|0|0|0|0|0|0|0|0|0|0|22515796|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6600|10000|||99.47|99.53|0.00|3.12|0001ABED|0|1| +21|2023-10-06T20:25:33.0980000-07:00|40022965|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|752003|20470000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|22505859|40478540|10000|10000|||100.00|80.10|0.00|0.00|47785|47785|10000|10000|||102.25|100.02|0.00|-3.03|0001ABEE|0|1| +37|2023-10-06T20:25:33.1880000-07:00|40022550|Zeromus|0001ABE9|22497784||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:33.2320000-07:00|40022550|Zeromus|0001ABEB|22475483||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:33.2320000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|5200|10000|||99.17|93.79|-0.01|-0.09| +21|2023-10-06T20:25:33.2320000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AC90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22475483|40478540|10000|10000|||100.00|80.10|0.00|0.00|62315|63089|3400|10000|||99.66|98.92|0.00|3.12|0001ABEF|0|1| +261|2023-10-06T20:25:32.7870000-07:00|Change|10FF0007||||||||||| +21|2023-10-06T20:25:33.3200000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38B30000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|22475483|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6280|10000|||98.83|95.96|0.00|3.07|0001ABF0|0|1| +24|2023-10-06T20:25:33.3660000-07:00|10FF0006|Wowobora Gogobora|HoT|A53|46A3|56517|56517|5880|10000|||98.83|95.96|0.00|3.07|10FF0006|Wowobora Gogobora|0|56517|56517|5880|10000|||98.83|95.96|0.00|3.07| +38|2023-10-06T20:25:33.3660000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5880|10000|18||98.83|95.96|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:33.3660000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:33.3660000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|05|56517|56517| +261|2023-10-06T20:25:32.9070000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:25:33.4550000-07:00|40022550|Zeromus|0001ABEA|22461296||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:33.4550000-07:00|10FF0008|Kokosaze Lulusaze|0001ABEA|55377|55377|8850|10000|13||99.99|102.95|0.00|-3.14|1B00|0|0|01|09000A8D|0|42700000|| +39|2023-10-06T20:25:33.4550000-07:00|10FF0002|Suchichi Suchi|62945|63089|3600|10000|||99.66|99.01|0.00|3.12| +38|2023-10-06T20:25:33.4550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8850|10000|13||99.99|102.95|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:33.0290000-07:00|Change|10FF0002||||||||||| +24|2023-10-06T20:25:33.4990000-07:00|10FF0005|Wuwuchu Wuchu|HoT|A53|6C86|62736|63038|3600|10000|||99.72|99.46|-0.02|3.04|10FF0006|Wowobora Gogobora|1|56517|56517|5880|10000|||98.83|95.96|0.00|3.07| +38|2023-10-06T20:25:33.4990000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|3600|10000|16||99.72|99.46|-0.02|3.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:33.4990000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +30|2023-10-06T20:25:33.4990000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|05|63038|56517| +21|2023-10-06T20:25:33.5440000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|4A400000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|22461296|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8850|10000|||99.99|102.95|0.00|-3.14|0001ABF1|0|1| +261|2023-10-06T20:25:33.1460000-07:00|Change|10FF0008||| +21|2023-10-06T20:25:33.5890000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D722003|40500000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|22461296|40478540|10000|10000|||100.00|80.10|0.00|0.00|62945|63089|3600|10000|||99.66|99.05|0.00|3.12|0001ABF2|0|1| +38|2023-10-06T20:25:33.5890000-07:00|10FF0002|Suchichi Suchi|005A5A16|62945|63089|3600|10000|26||99.66|99.05|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:33.5890000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:25:33.5890000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:25:33.6330000-07:00|40022550|Zeromus|0001ABEC|22453301||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:33.6330000-07:00|10FF0001|Sesuga Sapisuga|0001ABEC|89453|89453|10000|10000|8||101.65|97.51|0.00|-3.05|1300|0|0|02|0A000558|04|41F00000|||||| +24|2023-10-06T20:25:33.6330000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|A53|6428|56517|56517|6600|10000|||99.45|99.34|-0.02|2.33|10FF0006|Wowobora Gogobora|1|56517|56517|5880|10000|||98.83|95.96|0.00|3.07| +38|2023-10-06T20:25:33.6330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|8||101.65|97.51|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:33.6330000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6600|10000|28||99.45|99.34|-0.02|2.33|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:33.6330000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +30|2023-10-06T20:25:33.6330000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|05|56517|56517| +21|2023-10-06T20:25:33.6780000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|11740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22453301|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|3600|10000|||99.48|99.49|0.00|3.00|0001ABF3|0|1| +21|2023-10-06T20:25:33.7220000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22453301|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5880|10000|||98.83|95.96|0.00|3.07|0001ABF4|0|1| +37|2023-10-06T20:25:33.7660000-07:00|40022550|Zeromus|0001ABEF|22450540||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:33.7660000-07:00|10FF0002|Suchichi Suchi|0001ABEF|62945|63089|3600|10000|26||99.66|99.07|0.00|3.12|1600|0|0|01|06000323|0|C1F00000|| +24|2023-10-06T20:25:33.7670000-07:00|10FF0002|Suchichi Suchi|HoT|A53|4235|62945|63089|3600|10000|||99.66|99.07|0.00|3.12|10FF0006|Wowobora Gogobora|0|56517|56517|5880|10000|||98.83|95.96|0.00|3.07| +21|2023-10-06T20:25:33.7670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|8F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22453301|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5200|10000|||99.17|93.80|0.00|-0.05|0001ABF5|0|1| +38|2023-10-06T20:25:33.7670000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3600|10000|16||99.66|99.07|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:33.7670000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|05|63089|56517| +30|2023-10-06T20:25:33.7670000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +21|2023-10-06T20:25:33.8110000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|2E890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22450540|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5200|10000|||99.17|93.80|0.00|-0.05|0001ABF6|0|1| +24|2023-10-06T20:25:33.9000000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A53|34F5|89994|89994|5200|10000|||99.17|93.80|0.00|3.08|10FF0006|Wowobora Gogobora|0|56517|56517|5880|10000|||98.83|95.96|0.00|3.07| +21|2023-10-06T20:25:33.9000000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|716003|8B510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22450540|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||99.63|97.70|0.00|-3.05|0001ABF7|0|1| +21|2023-10-06T20:25:33.9000000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|10A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22450540|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6600|10000|||99.26|98.62|0.00|-3.13|0001ABF8|0|1| +38|2023-10-06T20:25:33.9000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5200|10000|9||99.17|93.80|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:33.9000000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|03|89994|56517| +24|2023-10-06T20:25:33.9890000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|2394|89453|89453|10000|10000|||99.63|97.70|0.00|-3.05|10FF0006|Wowobora Gogobora|1|56517|56517|5880|10000|||98.83|95.96|0.00|3.07| +37|2023-10-06T20:25:33.9890000-07:00|40022550|Zeromus|0001ABF0|22436025||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:33.9890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|8||99.63|97.70|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:34.0330000-07:00|40022550|Zeromus|0001ABED|22428964||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:34.0330000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|10000|10000|||98.96|97.77|0.00|-3.05| +24|2023-10-06T20:25:34.0330000-07:00|10FF0001|Sesuga Sapisuga|HoT|A53|3914|89453|89453|10000|10000|||98.96|97.77|0.00|-3.05|10FF0006|Wowobora Gogobora|0|56517|56517|5880|10000|||98.83|95.96|0.00|3.07| +38|2023-10-06T20:25:34.0330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|8||98.96|97.77|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:34.0330000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|04|89453|56517| +37|2023-10-06T20:25:34.1220000-07:00|40022550|Zeromus|0001ABEE|22420701||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:34.1660000-07:00|10FF0008|Kokosaze Lulusaze|HoT|A53|45D3|55377|55377|8550|10000|||99.99|102.95|0.00|-3.14|10FF0006|Wowobora Gogobora|0|56517|56517|5880|10000|||98.83|95.96|0.00|3.07| +38|2023-10-06T20:25:34.1660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8550|10000|0||99.99|102.95|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:34.1660000-07:00|A53|Panhaimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|05|55377|56517| +30|2023-10-06T20:25:34.1660000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +37|2023-10-06T20:25:34.2100000-07:00|40022550|Zeromus|0001ABF2|22404237||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:34.2100000-07:00|10FF0002|Suchichi Suchi|0001ABF2|63089|63089|3600|10000|16||99.76|98.96|0.00|3.12|1600|0|0|01|06000323|0|41F00000|| +37|2023-10-06T20:25:34.2100000-07:00|40022550|Zeromus|0001ABF1|22385229||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:34.2100000-07:00|40022550|Zeromus|0001ABF3|22380761||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:34.2120000-07:00|40022550|Zeromus|DoT|0|1D9B|22380761|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T20:25:34.2120000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|720003|33970000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|22380761|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|3600|10000|||100.06|98.61|-0.02|3.09|0001ABF9|0|1| +26|2023-10-06T20:25:34.2120000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|55377|55377| +21|2023-10-06T20:25:34.2120000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|754003|48340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22380761|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8550|10000|||99.99|102.95|0.00|-3.14|0001ABFA|0|1| +38|2023-10-06T20:25:34.2120000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3600|10000|16||100.06|98.61|-0.02|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:34.2120000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:25:34.2120000-07:00|40022550|Zeromus|005A5A00|22373182|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:34.2120000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +37|2023-10-06T20:25:34.2550000-07:00|40022550|Zeromus|0001ABF4|22373135||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:33.8570000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:34.3000000-07:00|40022550|Zeromus|0001ABF5|22370844||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:25:34.3460000-07:00|526C|3| +39|2023-10-06T20:25:34.3900000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|6800|10000|||97.83|98.13|-0.02|-2.02| +261|2023-10-06T20:25:33.9780000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:25:34.4350000-07:00|40022550|Zeromus|0001ABF6|22358931||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:34.4350000-07:00|40022550|Zeromus|0001ABF7|22323266||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:34.4350000-07:00|40022550|Zeromus|0001ABF8|22323000||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:34.5240000-07:00|10FF0006|Wowobora Gogobora|56517|56517|6085|10000|||98.80|95.96|0.00|-2.17| +21|2023-10-06T20:25:34.5680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22323000|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||96.07|97.00|0.00|3.11|0001ABFB|0|1| +31|2023-10-06T20:25:34.5680000-07:00|10FF0001||||| +261|2023-10-06T20:25:34.1810000-07:00|Change|10FF0006||||||||| +04|2023-10-06T20:25:34.1810000-07:00|40022666|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|54201|0|10000|||99.81|96.03|0.00|3.13| +261|2023-10-06T20:25:34.1810000-07:00|Remove|40022666| +37|2023-10-06T20:25:34.7030000-07:00|40022550|Zeromus|0001ABF9|22309793||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:34.7030000-07:00|10FF0002|Suchichi Suchi|0001ABF9|63089|63089|3600|10000|16||100.02|98.04|-0.02|-3.14|1600|0|0|01|070004DB|0|41700000|| +38|2023-10-06T20:25:34.7030000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3600|10000|16||100.02|98.04|-0.02|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:34.7030000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|3600|10000|16||97.20|97.49|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:34.7030000-07:00|B9C|Bloodsown Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +21|2023-10-06T20:25:34.8370000-07:00|10FF0008|Kokosaze Lulusaze|DFE|Deathflare|40022550|Zeromus|750003|573B0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|22309793|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8550|10000|||99.99|102.95|0.00|-3.14|0001ABFC|0|1| +21|2023-10-06T20:25:34.8370000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22309793|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8550|10000|||99.99|102.95|0.00|-3.14|0001ABFD|0|1| +21|2023-10-06T20:25:34.8370000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|752003|A67C0000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|22309793|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6085|10000|||97.33|96.06|0.00|-1.81|0001ABFE|0|1| +21|2023-10-06T20:25:34.8370000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|752003|3BC50000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|22309793|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6800|10000|||94.97|98.61|0.00|-1.63|0001ABFF|0|1| +39|2023-10-06T20:25:34.8810000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|3800|10000|||96.76|96.19|0.00|-2.83| +21|2023-10-06T20:25:34.8810000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|23F30000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|22309793|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|3600|10000|||96.76|96.19|0.00|-2.83|0001AC00|0|1| +261|2023-10-06T20:25:34.3820000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:25:34.3820000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:25:35.0590000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8750|10000|||99.99|102.95|0.00|-3.14| +21|2023-10-06T20:25:35.0590000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|3600|10000|||100.04|97.94|0.00|2.17|63089|63089|3600|10000|||100.04|97.94|0.00|2.17|0001AC01|0|1| +38|2023-10-06T20:25:35.0590000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3600|10000|16||100.04|97.94|0.00|2.17|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:35.0590000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:34.5740000-07:00|Change|10FF0008||| +37|2023-10-06T20:25:35.1030000-07:00|40022550|Zeromus|0001ABFB|22307727||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:35.1470000-07:00|40022550|Zeromus|0001ABFA|22289243||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:35.1470000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|89994|89994|5200|10000|||97.33|93.71|0.00|3.09|89994|89994|5200|10000|||97.33|93.71|0.00|3.09|0001AC02|0|1| +38|2023-10-06T20:25:35.1470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5200|10000|9||97.33|93.71|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:35.1470000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|89994|89994| +26|2023-10-06T20:25:35.1470000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +26|2023-10-06T20:25:35.1470000-07:00|A75|Surging Tempest|60.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +26|2023-10-06T20:25:35.1470000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +37|2023-10-06T20:25:35.3680000-07:00|40022550|Zeromus|0001ABFD|22289083||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:35.3680000-07:00|40022550|Zeromus|0001AC00|22279880||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:35.4140000-07:00|40022550|Zeromus|005A5A00|22279880|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:35.4140000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +261|2023-10-06T20:25:35.0360000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:25:35.5040000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|230E|89453|89453|10000|10000|||92.28|96.02|0.00|3.10|10FF0006|Wowobora Gogobora|1|56517|56517|5685|10000|||94.22|96.42|0.00|-1.93| +37|2023-10-06T20:25:35.5040000-07:00|40022550|Zeromus|0001ABFE|22237260||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:35.5040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|10000|10000|0||92.28|96.02|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:35.5040000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +30|2023-10-06T20:25:35.5040000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:25:35.5920000-07:00|10FF0002|Suchichi Suchi|0001AC01|63089|63089|3600|10000|16||100.13|97.94|0.00|2.75|1600|0|0|01|08000074|0|40A00000|| +38|2023-10-06T20:25:35.5920000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3600|10000|16||100.13|97.94|0.00|2.75|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:35.1520000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:35.6360000-07:00|40022550|Zeromus|0001ABFC|22214929||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:35.7260000-07:00|40022965|Demi-Bahamut|47785|47785|10000|10000|||102.25|100.02|0.00|-3.03| +38|2023-10-06T20:25:35.7260000-07:00|10FF0003|Gegehi Gehi|005A5A23|10231|51159|2000|10000|0||98.57|96.96|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:25:35.7260000-07:00|94|Raise|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|08|51159|56517| +26|2023-10-06T20:25:35.7260000-07:00|2B|Weakness|100.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +26|2023-10-06T20:25:35.7260000-07:00|1A2|Transcendent|5.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +261|2023-10-06T20:25:35.2440000-07:00|Change|10FF0003||| +37|2023-10-06T20:25:35.7700000-07:00|40022550|Zeromus|0001ABFF|22199628||||||100.00|80.10|0.00|0.00| +26|2023-10-06T20:25:35.8590000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|56517|56517| +21|2023-10-06T20:25:35.8590000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|752003|1B620000|104|A3C8000|0|0|0|0|0|0|0|0|0|0|0|0|22199628|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6400|10000|||89.76|97.50|0.00|-1.96|0001AC03|0|1| +37|2023-10-06T20:25:35.9030000-07:00|10FF0007|Kehabiqo Febiqo|0001AC02|89994|89994|5200|10000|9||96.56|92.43|0.00|3.09|1500|0|0|03|01000499|03|41700000|||||||||| +38|2023-10-06T20:25:35.9030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5200|10000|9||96.56|92.43|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:35.4340000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:25:35.6250000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:25:36.0370000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AF50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22199628|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|3600|10000|||98.39|96.45|0.00|-3.01|0001AC04|0|1| +21|2023-10-06T20:25:36.0370000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|46BB0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|22199628|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8750|10000|||99.02|101.99|0.00|-2.49|0001AC05|0|1| +21|2023-10-06T20:25:36.0820000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A722003|5E280000|104|11998000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|22199628|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|3600|10000|||98.39|96.45|0.00|-3.01|0001AC06|0|1| +38|2023-10-06T20:25:36.0820000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3600|10000|16||98.39|96.45|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:36.0820000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:25:36.0820000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:25:36.0820000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:35.6250000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:25:35.6250000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:25:36.2610000-07:00|40022965|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|752003|208E0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|22199628|40478540|10000|10000|||100.00|80.10|0.00|0.00|47785|47785|10000|10000|||102.25|100.02|0.00|-3.03|0001AC07|0|1| +39|2023-10-06T20:25:36.2610000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|5400|10000|||95.28|90.74|0.00|3.09| +21|2023-10-06T20:25:36.3050000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|681A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22199628|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5400|10000|||94.91|90.40|-0.02|3.09|0001AC08|0|1| +38|2023-10-06T20:25:36.3050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5400|10000|9||94.91|90.40|-0.02|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:36.3050000-07:00|499|Inner Release|14.55|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|89994|89994| +39|2023-10-06T20:25:36.3500000-07:00|10FF0003|Gegehi Gehi|10742|51159|2200|10000|||98.57|96.95|-0.02|-0.07| +261|2023-10-06T20:25:35.8540000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:25:35.8540000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:25:35.8540000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:25:36.4380000-07:00|10FF0002|Suchichi Suchi|63089|63089|3800|10000|||96.81|95.67|-0.02|3.00| +21|2023-10-06T20:25:36.4380000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|750003|5D2A0000|4|1C4B8000|0|0|0|0|0|0|0|0|0|0|0|0|22199628|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|10000|10000|||89.96|91.80|0.00|-3.05|0001AC09|0|1| +38|2023-10-06T20:25:36.4380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9000|10000|0||89.96|91.80|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:36.4380000-07:00|558|Requiescat|27.15|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +30|2023-10-06T20:25:36.4380000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +31|2023-10-06T20:25:36.4380000-07:00|10FF0001||||| +261|2023-10-06T20:25:35.9690000-07:00|Change|10FF0002||||||||||| +21|2023-10-06T20:25:36.5280000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22199628|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5685|10000|||89.90|91.97|0.00|-2.54|0001AC0A|0|1| +37|2023-10-06T20:25:36.5730000-07:00|40022550|Zeromus|0001AC04|22196823||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:36.5730000-07:00|10FF0002|Suchichi Suchi|0001AC04|63089|63089|3800|10000|16||97.03|95.85|0.00|3.00|1600|0|0|01|0D000747|0|C1F00000|| +37|2023-10-06T20:25:36.6620000-07:00|40022550|Zeromus|0001AC05|22178716||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:36.7510000-07:00|40022550|Zeromus|0001AC06|22154612||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:36.7510000-07:00|10FF0002|Suchichi Suchi|0001AC06|63089|63089|3800|10000|16||96.59|95.86|0.00|-2.96|1600|0|0|01|0D000747|0|41F00000|| +38|2023-10-06T20:25:36.7510000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3800|10000|16||96.59|95.86|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:36.2830000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:25:36.8400000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|A580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22154612|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9000|10000|||88.06|90.06|0.00|3.08|0001AC0B|0|1| +31|2023-10-06T20:25:36.8400000-07:00|10FF0001||||| +37|2023-10-06T20:25:36.8850000-07:00|40022550|Zeromus|0001AC03|22147602||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:36.8850000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|11020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22154612|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|3800|10000|||88.13|93.28|0.00|-2.04|0001AC0C|0|1| +37|2023-10-06T20:25:36.9290000-07:00|40022550|Zeromus|0001AC08|22120952||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:36.4850000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:25:37.0200000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|9200|10000|||87.62|89.56|0.00|3.07| +21|2023-10-06T20:25:37.0200000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|720003|19530000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|22147602|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|3800|10000|||95.16|95.46|0.00|-2.28|0001AC0D|0|1| +21|2023-10-06T20:25:37.0200000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22147602|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6400|10000|||84.01|93.80|0.00|-2.22|0001AC0E|0|1| +38|2023-10-06T20:25:37.0200000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3800|10000|16||95.16|95.46|0.00|-2.28|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:37.0200000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:36.4850000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:25:37.0640000-07:00|40022550|Zeromus|0001AC0A|22120915||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:37.0640000-07:00|40022550|Zeromus|0001AC09|22097065||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:37.1530000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|EA50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22097065|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5400|10000|||92.03|89.70|0.00|2.92|0001AC0F|0|1| +261|2023-10-06T20:25:36.7050000-07:00|Change|10FF0006||||||||| +24|2023-10-06T20:25:37.1970000-07:00|40022550|Zeromus|DoT|0|12EC|22097065|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:37.1970000-07:00|40022550|Zeromus|005A5A00|22092221|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:37.1970000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +261|2023-10-06T20:25:36.7050000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T20:25:36.7050000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:25:37.2860000-07:00|40022550|Zeromus|0001AC07|22083887||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:37.2860000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5685|10000|18||89.02|87.14|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:37.2860000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:25:37.2860000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:25:37.2860000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|5685|10000|||89.02|87.14|0.00|-2.98|56517|56517|5685|10000|||89.02|87.14|0.00|-2.98|0001AC10|0|1| +261|2023-10-06T20:25:36.8270000-07:00|Change|10FF0003||||||||| +36|2023-10-06T20:25:37.3300000-07:00|5348|3| +37|2023-10-06T20:25:37.3750000-07:00|40022550|Zeromus|0001AC0B|22081239||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:37.3750000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|6600|10000|||81.90|92.77|0.00|-1.95| +21|2023-10-06T20:25:37.3750000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|38FB0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|22083887|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|3800|10000|||85.80|91.44|0.00|-2.23|0001AC11|0|1| +37|2023-10-06T20:25:37.4190000-07:00|40022550|Zeromus|0001AC0C|22076885||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:37.4630000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|F1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22083887|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9200|10000|||86.56|87.47|0.00|2.86|0001AC12|0|1| +39|2023-10-06T20:25:37.5080000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5890|10000|||88.96|86.05|0.00|-3.04| +21|2023-10-06T20:25:37.5080000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|712003|37800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22076885|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5400|10000|||89.81|89.41|0.00|3.04|0001AC13|0|1| +37|2023-10-06T20:25:37.5530000-07:00|40022550|Zeromus|0001AC0E|22076733||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:37.1500000-07:00|Change|10FF0002||||||||| +20|2023-10-06T20:25:37.5970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|81.37|92.70|0.00|-1.86| +21|2023-10-06T20:25:37.6410000-07:00|10FF0002|Suchichi Suchi|60|Dragonfire Dive|40022550|Zeromus|126003|4C7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22076733|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|3800|10000|||92.23|94.48|0.00|2.75|0001AC14|0|1| +37|2023-10-06T20:25:37.6860000-07:00|40022550|Zeromus|0001AC0F|22072984||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:37.8190000-07:00|40022550|Zeromus|0001AC0D|22066501||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:37.3330000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:25:37.3330000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:25:37.8640000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|4000|10000|||84.66|89.31|0.00|3.14| +261|2023-10-06T20:25:37.4230000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:37.9540000-07:00|40022550|Zeromus|0001AC11|22051914||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:37.4230000-07:00|Change|10FF0005||||||||||| +21|2023-10-06T20:25:37.9980000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22051914|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8450|10000|||90.92|93.13|0.00|-2.43|0001AC15|0|1| +37|2023-10-06T20:25:38.0410000-07:00|40022550|Zeromus|0001AC12|22048046||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:38.0410000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8650|10000|||90.92|93.13|0.00|-2.43| +261|2023-10-06T20:25:37.7250000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:25:37.7250000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:38.1300000-07:00|40022550|Zeromus|0001AC13|22033838||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:38.2650000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|D7890E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|22033838|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5890|10000|||89.00|83.14|0.00|2.76|0001AC16|0|1| +38|2023-10-06T20:25:38.2650000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5490|10000|18||89.00|83.14|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:38.2650000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:25:38.4420000-07:00|40022550|Zeromus|0001AC14|22014257||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:38.5320000-07:00|40022550|Zeromus|0001AC15|22014020||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:38.5320000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|49890000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|22014257|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8650|10000|||89.40|91.24|0.00|-2.46|0001AC17|0|1| +21|2023-10-06T20:25:38.5320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|359A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|22014020|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6200|10000|||80.67|92.52|0.00|2.14|0001AC18|0|1| +21|2023-10-06T20:25:38.5770000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|255B0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|22014020|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|3800|10000|||90.56|93.64|0.00|2.43|0001AC19|0|1| +38|2023-10-06T20:25:38.5770000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|3800|10000|16||90.56|93.64|0.00|2.43|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:38.5770000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +21|2023-10-06T20:25:38.6210000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10742|51159|2200|10000|||89.75|88.65|0.00|-2.32|10742|51159|2200|10000|||89.75|88.65|0.00|-2.32|0001AC1A|0|1| +38|2023-10-06T20:25:38.6210000-07:00|10FF0003|Gegehi Gehi|005A5A23|10742|51159|2200|10000|0||89.75|88.65|0.00|-2.32|0|0|0||||||||||||| +30|2023-10-06T20:25:38.6210000-07:00|1A2|Transcendent|0.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +39|2023-10-06T20:25:38.7110000-07:00|40022965|Demi-Bahamut|47785|47785|10000|10000|||102.25|100.02|0.00|-3.03| +38|2023-10-06T20:25:38.7110000-07:00|40022965|Demi-Bahamut|005A5A00|0|47785|0|10000|0||102.25|100.02|0.00|-3.03|0|0|0||||||| +30|2023-10-06T20:25:38.7110000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022965|Demi-Bahamut|00|47785|63038| +30|2023-10-06T20:25:38.7110000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022965|Demi-Bahamut|00|47785|55377| +30|2023-10-06T20:25:38.7110000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|40022965|Demi-Bahamut|00|47785|63089| +261|2023-10-06T20:25:38.1700000-07:00|Change|40022965||||||||| +261|2023-10-06T20:25:38.1700000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:25:38.7560000-07:00|40022986||005A5A00|53095|53095|10000|10000|0||||||0|0|0|||||||||||||||| +38|2023-10-06T20:25:38.7560000-07:00|40022986||005A5A00|53095|53095|10000|10000|0||||||0|0|0|||||||||||||||| +21|2023-10-06T20:25:38.7560000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|8BAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22014020|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5400|10000|||84.41|84.30|-0.02|2.73|0001AC1B|0|1| +38|2023-10-06T20:25:38.7560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5400|10000|9||84.41|84.30|-0.02|2.73|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:38.7560000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +261|2023-10-06T20:25:38.3660000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:25:38.8450000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|10BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22014020|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|3800|10000|||89.58|93.06|0.00|2.38|0001AC1C|0|1| +261|2023-10-06T20:25:38.3660000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:25:38.9340000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|752003|71680000|4|1C0B8000|0|0|0|0|0|0|0|0|0|0|0|0|22014020|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9200|10000|||88.87|83.51|0.00|2.21|0001AC1D|0|1| +38|2023-10-06T20:25:38.9340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8200|10000|0||88.87|83.51|0.00|2.21|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:38.9340000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:25:38.9340000-07:00|558|Requiescat|24.65|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|89453|89453| +31|2023-10-06T20:25:38.9340000-07:00|10FF0001||||| +24|2023-10-06T20:25:39.0240000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|15FC|89453|89453|8200|10000|||89.36|83.15|0.00|2.21|10FF0006|Wowobora Gogobora|0|56517|56517|5490|10000|||89.40|81.47|0.00|1.70| +37|2023-10-06T20:25:39.0240000-07:00|40022550|Zeromus|0001AC16|22014020|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A38|0|41F00000|| +26|2023-10-06T20:25:39.0240000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|56517| +38|2023-10-06T20:25:39.0240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8200|10000|0||89.36|83.15|0.00|2.21|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:38.4580000-07:00|Add|40022986||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:25:38.5700000-07:00|40022986|Carbuncle|00|5A|10FF0008|00||10261|13498|53095|53095|10000|10000|||87.36|88.35|0.00|0.61| +261|2023-10-06T20:25:38.5700000-07:00|Change|40022986||| +21|2023-10-06T20:25:39.1120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22014020|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8200|10000|||89.63|82.58|0.00|2.20|0001AC1E|0|1| +31|2023-10-06T20:25:39.1120000-07:00|10FF0001||||| +261|2023-10-06T20:25:38.6800000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:25:39.1570000-07:00|40022550|Zeromus|0001AC17|21995195||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:39.1570000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|752003|60AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22014020|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8350|10000|||87.60|88.71|0.00|-2.70|0001AC1F|0|1| +21|2023-10-06T20:25:39.1570000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0003|Gegehi Gehi|4|4B3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10742|51159|2200|10000|||88.15|87.22|0.00|-2.29|56517|56517|6200|10000|||80.54|92.54|-0.02|-2.78|0001AC20|0|1| +38|2023-10-06T20:25:39.1570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8350|10000|0||87.60|88.71|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:39.1570000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|55377|55377| +38|2023-10-06T20:25:39.1570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|56517|6200|10000|28||80.54|92.54|-0.02|-2.78|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:39.1570000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|56517|56517| +261|2023-10-06T20:25:38.6800000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:25:39.2020000-07:00|40022550|Zeromus|0001AC19|21985632||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:39.2470000-07:00|10FF0003|Gegehi Gehi|0001AC1A|10742|51159|2200|10000|0||88.32|87.36|0.00|-2.30|2300|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T20:25:39.2470000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +39|2023-10-06T20:25:39.2470000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|5600|10000|||84.09|83.99|0.00|1.77| +261|2023-10-06T20:25:38.7930000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T20:25:39.3350000-07:00|40022550|Zeromus|0001AC18|21971910||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:39.3360000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21985632|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5490|10000|||89.40|81.47|0.00|1.70|0001AC21|0|1| +37|2023-10-06T20:25:39.3820000-07:00|40022550|Zeromus|0001AC1C|21967626||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:39.3820000-07:00|10FF0003|Gegehi Gehi|11253|51159|2400|10000|||87.35|86.74|0.00|-2.24| +21|2023-10-06T20:25:39.3820000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|34EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21971910|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|3800|10000|||86.67|90.13|0.00|-2.72|0001AC22|0|1| +261|2023-10-06T20:25:38.9080000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:25:39.4700000-07:00|10FF0002|Suchichi Suchi|63089|63089|4000|10000|||86.67|90.13|0.00|-2.72| +37|2023-10-06T20:25:39.5580000-07:00|40022550|Zeromus|0001AC1D|21938594||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:39.1340000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:25:39.2350000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:25:39.6490000-07:00|40022550|Zeromus|0001AC1E|21936837||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:39.7820000-07:00|10FF0003|Gegehi Gehi|0001AC20|30514||||||85.30|85.41|0.00|-2.17| +34|2023-10-06T20:25:39.7820000-07:00|40022986|Carbuncle|40022986|Carbuncle|01| +20|2023-10-06T20:25:39.8270000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|89.35|81.47|0.00|-2.82| +21|2023-10-06T20:25:39.8270000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|35020000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|21936837|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4000|10000|||86.13|84.70|0.00|2.68|0001AC23|0|1| +261|2023-10-06T20:25:39.3290000-07:00|Change|40022986||||||||| +261|2023-10-06T20:25:39.4210000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:39.8710000-07:00|40022550|Zeromus|0001AC21|21936799||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:39.9150000-07:00|40022550|Zeromus|0001AC1B|21901041||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:39.5200000-07:00|Change|10FF0002||||||||||| +39|2023-10-06T20:25:40.0050000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|8400|10000|||89.99|82.16|0.00|2.20| +20|2023-10-06T20:25:40.0050000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|80.46|92.55|0.00|2.57| +261|2023-10-06T20:25:39.6380000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:25:40.0940000-07:00|40022550|Zeromus|0001AC1F|21876292||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:25:40.0940000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|0001AC24|0|8| +22|2023-10-06T20:25:40.0940000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|5600|10000|||83.69|83.56|0.00|1.79|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|0001AC24|1|8| +22|2023-10-06T20:25:40.0940000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|8350|10000|||84.23|83.44|0.00|-2.62|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|0001AC24|2|8| +22|2023-10-06T20:25:40.0940000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0002|Suchichi Suchi|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|4000|10000|||85.25|86.25|0.00|2.84|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|0001AC24|3|8| +22|2023-10-06T20:25:40.0940000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0005|Wuwuchu Wuchu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|4000|10000|||86.08|84.81|0.00|1.87|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|0001AC24|4|8| +22|2023-10-06T20:25:40.0940000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|5490|10000|||89.07|81.47|0.00|2.19|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|0001AC24|5|8| +22|2023-10-06T20:25:40.0940000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|8400|10000|||89.99|82.16|0.00|2.20|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|0001AC24|6|8| +22|2023-10-06T20:25:40.0940000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|6200|10000|||80.46|92.55|0.00|2.49|30514|51159|2400|10000|||83.44|84.08|0.00|-2.33|0001AC24|7|8| +21|2023-10-06T20:25:40.0940000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|A810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21901041|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4000|10000|||86.08|84.81|0.00|1.87|0001AC25|0|1| +21|2023-10-06T20:25:40.1380000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|D050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21901041|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5600|10000|||83.69|83.56|0.00|1.79|0001AC26|0|1| +24|2023-10-06T20:25:40.1820000-07:00|40022550|Zeromus|DoT|0|28C9|21901041|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:40.1820000-07:00|40022550|Zeromus|005A5A00|21865851|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:40.1820000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +21|2023-10-06T20:25:40.2260000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|722003|354D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21901041|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4000|10000|||85.25|86.25|0.00|2.84|0001AC27|0|1| +261|2023-10-06T20:25:39.7530000-07:00|Add|40022987||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:39.7530000-07:00|Change|40022987||| +36|2023-10-06T20:25:40.3150000-07:00|5424|3| +37|2023-10-06T20:25:40.3590000-07:00|40022550|Zeromus|0001AC23|21852281||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:40.3590000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|6400|10000|||80.46|92.55|0.00|2.37| +39|2023-10-06T20:25:40.4930000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5695|10000|||89.01|81.47|0.00|1.70| +21|2023-10-06T20:25:40.5370000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|DD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21852281|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5600|10000|||83.60|83.44|0.00|1.74|0001AC28|0|1| +37|2023-10-06T20:25:40.5820000-07:00|40022550|Zeromus|0001AC22|21838735||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:40.0910000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:25:40.0910000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:25:40.6270000-07:00|40022550|Zeromus|0001AC25|21836046||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:40.7610000-07:00|10FF0003|Gegehi Gehi|0001AC24|30514|51159|2400|10000|0||83.24|83.94|0.00|-2.35|2300|0|0|01|040004D7|0|41A00000|| +26|2023-10-06T20:25:40.7610000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +21|2023-10-06T20:25:40.7610000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5ED40000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|21836046|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5695|10000|||89.01|81.47|0.00|1.70|0001AC29|0|1| +37|2023-10-06T20:25:40.8060000-07:00|40022550|Zeromus|0001AC26|21832713||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:40.8060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5600|10000|0||83.58|83.40|0.00|1.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:40.8060000-07:00|A35|Panhaima|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +21|2023-10-06T20:25:40.8500000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|30514|51159|2400|10000|||83.24|83.94|0.00|-2.35|30514|51159|2400|10000|||83.24|83.94|0.00|-2.35|0001AC2A|0|1| +38|2023-10-06T20:25:40.8500000-07:00|10FF0003|Gegehi Gehi|005A5A23|30514|51159|2400|10000|0||83.24|83.94|0.00|-2.35|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:40.8500000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|51159|51159| +261|2023-10-06T20:25:40.4600000-07:00|Change|10FF0001||| +37|2023-10-06T20:25:40.8940000-07:00|10FF0007|Kehabiqo Febiqo|0001AC24|89994|89994|5600|10000|0||83.50|83.29|0.00|1.74|1501|0|0|01|07000511|0|41A00000|| +26|2023-10-06T20:25:40.8940000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|89994|51159| +37|2023-10-06T20:25:40.8940000-07:00|10FF0003|Gegehi Gehi|0001AC24|30514|51159|2400|10000|0||83.24|83.94|0.00|-2.35|2301|0|0|01|050007B3|06|C1700000|| +39|2023-10-06T20:25:40.8940000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|4200|10000|||85.61|83.19|0.00|2.32| +21|2023-10-06T20:25:40.9390000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|34AB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|21832713|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6400|10000|||80.46|92.55|0.00|2.14|0001AC2B|0|1| +21|2023-10-06T20:25:40.9840000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|21832713|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8350|10000|||83.52|81.60|0.00|2.38|0001AC2C|0|1| +38|2023-10-06T20:25:40.9850000-07:00|40022986|Carbuncle|005A5A00|0|53095|0|10000|0||86.34|85.09|0.00|3.11|0|0|0||||||||||||| +26|2023-10-06T20:25:40.9850000-07:00|30|Well Fed|2118.37|10FF0008|Kokosaze Lulusaze|40022986|Carbuncle|2964|53095|55377| +26|2023-10-06T20:25:40.9850000-07:00|441|HP Penalty|9999.00|E0000000||40022986|Carbuncle|00|53095|| +261|2023-10-06T20:25:40.5520000-07:00|Change|40022986||||||||| +03|2023-10-06T20:25:40.5520000-07:00|4002298A|Topaz Titan|00|5A|10FF0008|00||10264|13507|53095|53095|10000|10000|||81.96|83.33|0.00|1.65| +38|2023-10-06T20:25:41.0290000-07:00|4002298A|Topaz Titan|005A5A00|53095|53095|10000|10000|0||81.96|83.33|0.00|1.65|0|0|0|||||||||||||||| +26|2023-10-06T20:25:41.0290000-07:00|30|Well Fed|2118.37|10FF0008|Kokosaze Lulusaze|4002298A|Topaz Titan|2964|53095|55377| +26|2023-10-06T20:25:41.0290000-07:00|A8F|Searing Light|13.96|10FF0008|Kokosaze Lulusaze|4002298A|Topaz Titan|00|53095|55377| +26|2023-10-06T20:25:41.0290000-07:00|A27|Arcane Circle|8.11|10FF0005|Wuwuchu Wuchu|4002298A|Topaz Titan|00|53095|63038| +26|2023-10-06T20:25:41.0290000-07:00|441|HP Penalty|9999.00|E0000000||4002298A|Topaz Titan|00|53095|| +26|2023-10-06T20:25:41.0290000-07:00|312|Battle Litany|4.04|10FF0002|Suchichi Suchi|4002298A|Topaz Titan|00|53095|63089| +38|2023-10-06T20:25:41.0290000-07:00|4002298A|Topaz Titan|005A5A00|53095|53095|10000|10000|0||81.96|83.33|0.00|1.65|0|0|0|||||||||||||||| +37|2023-10-06T20:25:41.0290000-07:00|40022550|Zeromus|0001AC27|21819068||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:41.0290000-07:00|10FF0008|Kokosaze Lulusaze|0001AC24|55377|55377|8350|10000|0||83.53|81.50|0.00|1.65|1B02|0|0|01|03000511|0|41A00000|| +26|2023-10-06T20:25:41.0290000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|55377|51159| +37|2023-10-06T20:25:41.0290000-07:00|10FF0003|Gegehi Gehi|0001AC24|30514|51159|2400|10000|0||83.24|83.94|0.00|-2.35|2302|0|0|01|050007B3|06|C1700000|| +39|2023-10-06T20:25:41.0290000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8550|10000|||83.53|81.50|0.00|1.65| +261|2023-10-06T20:25:40.5520000-07:00|Add|4002298A||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:41.0290000-07:00|4002298A|Topaz Titan|005A5A00|53095|53095|10000|10000|0||81.96|83.33|0.00|1.65|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:41.0290000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002298A|Topaz Titan|00|53095|51159| +261|2023-10-06T20:25:40.5520000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:25:41.0720000-07:00|40022550|Zeromus|0001AC28|21815531||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:41.1170000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C722003|33000000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|21832713|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4000|10000|||84.95|85.27|0.00|1.79|0001AC2D|0|1| +38|2023-10-06T20:25:41.1170000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4000|10000|16||84.95|85.27|0.00|1.79|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:41.1170000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:40.6700000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:25:40.6700000-07:00|Change|4002298A||||| +37|2023-10-06T20:25:41.1620000-07:00|10FF0002|Suchichi Suchi|0001AC24|63089|63089|4000|10000|16||84.79|84.78|0.00|1.76|1603|0|0|02|04000AA0|0|C1F00000|||||| +26|2023-10-06T20:25:41.1620000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|63089|51159| +37|2023-10-06T20:25:41.1620000-07:00|10FF0003|Gegehi Gehi|0001AC24|30514|51159|2400|10000|0||83.24|83.94|0.00|-2.35|2303|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T20:25:41.1620000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|1080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21815531|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8550|10000|||83.53|81.47|0.00|1.65|0001AC2E|0|1| +21|2023-10-06T20:25:41.2060000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|72C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21815531|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5600|10000|||83.65|82.99|0.00|1.79|0001AC2F|0|1| +38|2023-10-06T20:25:41.2060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5600|10000|0||83.65|82.99|0.00|1.79|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:41.2060000-07:00|499|Inner Release|9.65|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|89994|89994| +37|2023-10-06T20:25:41.2510000-07:00|10FF0003|Gegehi Gehi|0001AC2A|30514|51159|2400|10000|0||83.24|83.94|0.00|-2.35|2300|0|0|01|050007B3|06|41700000|| +38|2023-10-06T20:25:41.2510000-07:00|10FF0003|Gegehi Gehi|005A5A23|30514|51159|2400|10000|0||83.24|83.94|0.00|-2.35|0|0|0||||||||||||||||||| +37|2023-10-06T20:25:41.2950000-07:00|10FF0005|Wuwuchu Wuchu|0001AC24|63038|63038|4200|10000|16||84.24|82.83|0.00|2.28|2704|0|0|01|07000511|0|41A00000|| +26|2023-10-06T20:25:41.2950000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|63038|51159| +21|2023-10-06T20:25:41.3850000-07:00|10FF0006|Wowobora Gogobora|5EDD|Kardia|10FF0003|Gegehi Gehi|AA0E|A2D0000|DB000F|A2C8000|0|0|0|0|0|0|0|0|0|0|0|0|30514|51159|2400|10000|||83.24|83.94|0.00|-2.35|56517|56517|5295|10000|||89.01|81.47|0.00|1.70|0001AC30|0|1| +21|2023-10-06T20:25:41.3850000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|ACA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21815531|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8400|10000|||89.99|82.16|0.00|1.77|0001AC31|0|1| +31|2023-10-06T20:25:41.3850000-07:00|10FF0001||||| +24|2023-10-06T20:25:41.4300000-07:00|10FF0001|Sesuga Sapisuga|HoT|A2C|1618|89453|89453|8400|10000|||89.99|82.16|0.00|1.77|10FF0006|Wowobora Gogobora|0|56517|56517|5295|10000|||89.01|81.47|0.00|1.38| +37|2023-10-06T20:25:41.4300000-07:00|40022550|Zeromus|0001AC29|21791255||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:41.4300000-07:00|10FF0006|Wowobora Gogobora|0001AC24|56517|56517|5295|10000|18||89.01|81.47|0.00|1.38|2805|0|0|01|03000511|0|41A00000|| +26|2023-10-06T20:25:41.4300000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|56517|51159| +21|2023-10-06T20:25:41.4300000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|750003|515B0000|200004|2C728000|0|0|0|0|0|0|0|0|0|0|0|0|21815531|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8400|10000|||89.99|82.16|0.00|1.77|0001AC32|0|1| +38|2023-10-06T20:25:41.4300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7400|10000|0||89.99|82.16|0.00|1.77|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:41.4300000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:25:41.4300000-07:00|558|Requiescat|22.16|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +31|2023-10-06T20:25:41.4300000-07:00|10FF0001||||| +37|2023-10-06T20:25:41.5630000-07:00|10FF0001|Sesuga Sapisuga|0001AC24|89453|89453|7400|10000|0||89.99|82.16|0.00|1.77|1306|0|0|01|07000511|0|41A00000|| +26|2023-10-06T20:25:41.5630000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|89453|51159| +261|2023-10-06T20:25:41.1200000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:25:41.1200000-07:00|Change|10FF0006||||||||||||||||| +21|2023-10-06T20:25:41.6530000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|D7B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21791255|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4000|10000|||84.21|83.08|0.00|1.87|0001AC33|0|1| +38|2023-10-06T20:25:41.6530000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4000|10000|16||84.21|83.08|0.00|1.87|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:41.6980000-07:00|40022550|Zeromus|0001AC2E|21790991||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:41.6980000-07:00|10FF0004|Buhojaqe Zijaqe|0001AC24|56517|56517|6000|10000|28||80.46|92.54|0.00|2.26|1C07|0|0|01|04000511|0|41A00000|| +26|2023-10-06T20:25:41.6980000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|56517|51159| +38|2023-10-06T20:25:41.6980000-07:00|10FF0003|Gegehi Gehi|005A5A23|30514|51159|2950|10000|0||83.24|83.94|0.00|-2.35|0|0|0||||||||||||||||||| +37|2023-10-06T20:25:41.7410000-07:00|40022550|Zeromus|0001AC2B|21777508||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:41.2200000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:25:41.8300000-07:00|40022550|Zeromus|0001AC2F|21748130||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:41.3190000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:25:41.4150000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:41.9190000-07:00|40022550|Zeromus|0001AC31|21745368||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:41.6220000-07:00|Change|4002298A||| +37|2023-10-06T20:25:42.0530000-07:00|10FF0003|Gegehi Gehi|0001AC30|30514|51159|2950|10000|0||83.24|83.94|0.00|-2.35|2300|0|0|01|06000A2D|0|42700000|| +26|2023-10-06T20:25:42.0530000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:25:42.0530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7400|10000|0||89.79|82.17|0.00|2.18|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:42.0530000-07:00|A2D|Kardion|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:25:42.1860000-07:00|40022550|Zeromus|0001AC33|21741917||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:42.1860000-07:00|10FF0002|Suchichi Suchi|0001AC33|63089|63089|4000|10000|16||84.63|81.77|0.00|1.82|1600|0|0|01|04000AA0|0|C1F00000|| +39|2023-10-06T20:25:42.2310000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|5800|10000|||86.76|82.29|-0.02|1.66| +21|2023-10-06T20:25:42.2310000-07:00|40022550|Zeromus|8B3D|Fractured Eventide|40022550|Zeromus|1B|8B3D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21741917|40478540|10000|10000|||100.00|80.10|0.00|0.00|21741917|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AC34|0|1| +20|2023-10-06T20:25:42.2310000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|89.01|81.47|0.00|-1.17| +261|2023-10-06T20:25:41.8530000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T20:25:41.8530000-07:00|Change|40022550||||||||||||| +37|2023-10-06T20:25:42.3200000-07:00|40022550|Zeromus|0001AC32|21721090||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:42.3650000-07:00|10FF0003|Gegehi Gehi|31025|51159|3150|10000|||83.24|83.94|0.00|-2.35| +21|2023-10-06T20:25:42.3650000-07:00|10FF0005|Wuwuchu Wuchu|5F41|Plentiful Harvest|40022550|Zeromus|712003|BBA90000|323E|1018000|0|0|0|0|0|0|0|0|0|0|0|0|21721090|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4200|10000|||82.63|83.51|0.00|1.97|0001AC35|0|1| +38|2023-10-06T20:25:42.3650000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4200|10000|16||82.63|83.51|0.00|1.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:42.3650000-07:00|A20|Immortal Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|07|63038|63038| +21|2023-10-06T20:25:42.4080000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|29D60000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|21721090|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|6000|10000|||81.78|89.96|0.00|2.62|0001AC36|0|1| +39|2023-10-06T20:25:42.4530000-07:00|10FF0002|Suchichi Suchi|63089|63089|4200|10000|||84.98|81.50|-0.02|1.71| +261|2023-10-06T20:25:42.0510000-07:00|Change|10FF0003||| +261|2023-10-06T20:25:42.0510000-07:00|Change|10FF0004||||||||| +04|2023-10-06T20:25:42.1470000-07:00|40022965|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|0|47785|0|10000|||102.25|100.02|0.00|-3.03| +261|2023-10-06T20:25:42.1470000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T20:25:42.1470000-07:00|Remove|40022965| +21|2023-10-06T20:25:42.7210000-07:00|4002256E|Zeromus|8B3E|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.79|0001AC37|0|0| +261|2023-10-06T20:25:42.2430000-07:00|Change|4002256E||||||||||||| +37|2023-10-06T20:25:42.7670000-07:00|40022550|Zeromus|0001AC2D|21708034||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:42.7670000-07:00|10FF0002|Suchichi Suchi|0001AC2D|63089|63089|4200|10000|16||84.99|81.47|0.00|1.62|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:25:42.7670000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4200|10000|16||84.99|81.47|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:42.3330000-07:00|Change|10FF0002||||||||||| +21|2023-10-06T20:25:42.9000000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|5800|10000|||87.17|82.20|0.00|1.74|89994|89994|5800|10000|||87.17|82.20|0.00|1.74|0001AC38|0|1| +38|2023-10-06T20:25:42.9000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5800|10000|0||87.17|82.20|0.00|1.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:42.9000000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:25:42.9890000-07:00|40022550|Zeromus|005A5A00|21708034|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:42.9890000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +26|2023-10-06T20:25:42.9890000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +39|2023-10-06T20:25:43.0320000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|7600|10000|||88.95|82.33|0.00|-0.96| +261|2023-10-06T20:25:42.5260000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:25:42.5260000-07:00|Change|40022986||||||||| +21|2023-10-06T20:25:43.0770000-07:00|4002298A|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|452003|A3940000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|21708034|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||81.96|83.33|0.00|1.65|0001AC39|0|1| +21|2023-10-06T20:25:43.1670000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|756003|7D150000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|21708034|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5295|10000|||89.01|81.47|0.00|1.70|0001AC3A|0|1| +21|2023-10-06T20:25:43.2110000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.66|0001AC3B|0|0| +24|2023-10-06T20:25:43.2110000-07:00|40022550|Zeromus|DoT|0|2B26|21708034|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:43.2110000-07:00|40022550|Zeromus|005A5A00|21696988|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:25:43.3000000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|D7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21696988|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4200|10000|||84.51|82.60|0.00|1.70|0001AC3C|0|1| +37|2023-10-06T20:25:43.3450000-07:00|40022550|Zeromus|0001AC36|21686278||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:25:43.3450000-07:00|5500|3| +39|2023-10-06T20:25:43.3890000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|5800|10000|||81.41|90.16|0.44|2.04| +37|2023-10-06T20:25:43.4320000-07:00|10FF0007|Kehabiqo Febiqo|0001AC38|89994|89994|5800|10000|0||87.17|82.20|0.00|1.74|1500|0|0|01|08000769|0|41F00000|| +21|2023-10-06T20:25:43.4330000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|452003|61230000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|21686278|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8550|10000|||84.18|81.59|0.00|1.47|0001AC3D|0|1| +38|2023-10-06T20:25:43.4330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5800|10000|0||87.17|82.20|0.00|1.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:43.4330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8250|10000|0||84.18|81.59|0.00|1.47|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:43.4330000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:25:43.0020000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:25:43.0020000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:25:43.5230000-07:00|40022550|Zeromus|0001AC35|21638237||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:43.5230000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5100|10000|||89.01|81.47|0.00|1.70| +21|2023-10-06T20:25:43.6120000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42722003|3F310000|DF0D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|21686278|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4200|10000|||85.17|81.45|0.00|1.39|0001AC3E|0|1| +38|2023-10-06T20:25:43.6120000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4200|10000|16||84.79|82.54|0.00|1.68|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:43.6120000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +21|2023-10-06T20:25:43.6120000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|4200|10000|||84.79|82.54|0.00|1.68|63038|63038|4200|10000|||84.79|82.54|0.00|1.68|0001AC3F|0|1| +38|2023-10-06T20:25:43.6120000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4200|10000|16||85.17|81.45|0.00|1.39|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:43.6120000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:43.2130000-07:00|Change|10FF0006||||||||||||||||| +21|2023-10-06T20:25:43.6570000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.54|0001AC40|0|0| +21|2023-10-06T20:25:43.6570000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|8CA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21638237|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5800|10000|||87.22|82.21|0.00|1.56|0001AC41|0|1| +21|2023-10-06T20:25:43.6570000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|72B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21638237|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7600|10000|||88.95|82.33|0.00|-0.96|0001AC42|0|1| +38|2023-10-06T20:25:43.6570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|5800|10000|0||87.22|82.21|0.00|1.56|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:43.6570000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:25:43.6570000-07:00|40022550|Zeromus|005A5A00|21638237|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:43.6570000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|56517| +31|2023-10-06T20:25:43.6570000-07:00|10FF0001||||| +24|2023-10-06T20:25:43.8340000-07:00|10FF0003|Gegehi Gehi|HoT|A2C|14FB|31025|51159|3150|10000|||86.00|84.41|-0.02|1.55|10FF0006|Wowobora Gogobora|0|56517|56517|5100|10000|||89.04|81.55|0.00|1.32| +37|2023-10-06T20:25:43.8340000-07:00|40022550|Zeromus|0001AC3A|21606216||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:43.8340000-07:00|40022550|Zeromus|0001AC3C|21602766||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:43.8340000-07:00|10FF0003|Gegehi Gehi|005A5A23|36396|51159|3150|10000|0||86.00|84.41|-0.02|1.55|0|0|0|||||||||||||||||||||| +39|2023-10-06T20:25:43.8770000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|4400|10000|||85.22|82.48|0.00|1.66| +261|2023-10-06T20:25:43.4120000-07:00|Change|10FF0005||||||||||| +21|2023-10-06T20:25:43.9230000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|F830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21638237|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|5800|10000|||87.30|82.24|-0.02|1.75|0001AC43|0|1| +21|2023-10-06T20:25:43.9230000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|750003|60CC0000|4|1C268000|0|0|0|0|0|0|0|0|0|0|0|0|21638237|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7600|10000|||89.07|82.33|0.00|1.54|0001AC44|0|1| +38|2023-10-06T20:25:43.9230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|6600|10000|0||89.07|82.33|0.00|1.54|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:43.9230000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +31|2023-10-06T20:25:43.9230000-07:00|10FF0001||||| +261|2023-10-06T20:25:43.5080000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:44.0570000-07:00|40022550|Zeromus|0001AC3E|21586589|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0A9F|0|41C00000|| +26|2023-10-06T20:25:44.0570000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +37|2023-10-06T20:25:44.0570000-07:00|10FF0002|Suchichi Suchi|0001AC3E|63089|63089|4200|10000|16||86.22|82.87|0.00|1.52|1600|0|0|01|07000323|0|41F00000|| +37|2023-10-06T20:25:44.0570000-07:00|40022550|Zeromus|0001AC3D|21561722||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:44.0570000-07:00|10FF0008|Kokosaze Lulusaze|0001AC3D|55377|55377|8250|10000|0||84.35|81.59|0.00|1.64|1B00|0|0|01|07000B25|0|0|| +39|2023-10-06T20:25:44.0570000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8450|10000|||84.35|81.59|0.00|1.64| +38|2023-10-06T20:25:44.0570000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4200|10000|16||86.22|82.87|0.00|1.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:44.0570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8450|10000|0||84.35|81.59|0.00|1.64|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:43.6330000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:25:44.1030000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|456003|37310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21561722|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8450|10000|||84.39|81.59|0.00|1.62|0001AC45|0|1| +21|2023-10-06T20:25:44.1030000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21561722|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5100|10000|||89.71|82.20|0.00|0.75|0001AC46|0|1| +38|2023-10-06T20:25:44.1030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8450|10000|0||84.39|81.59|0.00|1.62|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:44.1030000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +21|2023-10-06T20:25:44.1450000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.54|0001AC47|0|0| +37|2023-10-06T20:25:44.1900000-07:00|40022550|Zeromus|0001AC42|21559887||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:43.7440000-07:00|Change|10FF0003||||||||| +38|2023-10-06T20:25:44.2350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|0|56517|0|10000|0||80.46|92.55|0.00|2.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:44.2350000-07:00|317|Dissipation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +30|2023-10-06T20:25:44.2350000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|56517|51159| +30|2023-10-06T20:25:44.2350000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +30|2023-10-06T20:25:44.2350000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|56517|55377| +30|2023-10-06T20:25:44.2350000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|56517|63038| +30|2023-10-06T20:25:44.2350000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|56517|63089| +21|2023-10-06T20:25:44.3240000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21559887|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8450|10000|||84.46|81.59|-0.02|1.67|0001AC48|0|1| +21|2023-10-06T20:25:44.3240000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|4400|10000|||85.47|82.44|0.00|1.66|63038|63038|4400|10000|||85.47|82.44|0.00|1.66|0001AC49|0|1| +38|2023-10-06T20:25:44.3240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4400|10000|16||85.47|82.44|0.00|1.66|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:44.3240000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:25:43.9720000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T20:25:44.4580000-07:00|40022550|Zeromus|0001AC43|21555916||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:44.4580000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|13040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21559887|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4200|10000|||88.77|83.78|0.00|1.35|0001AC4A|0|1| +261|2023-10-06T20:25:44.1770000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:25:44.5900000-07:00|40022550|Zeromus|0001AC41|21519909||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:44.5900000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.42|0001AC4B|0|0| +37|2023-10-06T20:25:44.6360000-07:00|40022550|Zeromus|0001AC46|21519868||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:44.1770000-07:00|Remove|40022986| +04|2023-10-06T20:25:44.1770000-07:00|40022986|Carbuncle|00|5A|10FF0008|00||10261|13498|0|53095|0|10000|||85.47|83.48|0.00|-2.07| +261|2023-10-06T20:25:44.2800000-07:00|Change|10FF0006||||||||| +38|2023-10-06T20:25:44.6800000-07:00|10FF0003|Gegehi Gehi|005A5A23|36396|51159|3700|10000|0||90.67|86.54|0.00|1.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:44.6800000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +37|2023-10-06T20:25:44.7700000-07:00|10FF0005|Wuwuchu Wuchu|0001AC3F|63038|63038|4400|10000|16||85.63|82.43|0.00|1.65|2700|0|0|01|0C0004E2|0|C1200000|| +38|2023-10-06T20:25:44.7700000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4200|10000|16||90.05|84.00|0.00|1.33|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:44.7700000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:44.2800000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:25:44.8150000-07:00|40022550|Zeromus|0001AC44|21495088||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:25:44.8150000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|92.81|85.01|-0.02|0.83| +261|2023-10-06T20:25:44.3810000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:44.8590000-07:00|40022550|Zeromus|0001AC45|21480959||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:44.8590000-07:00|40022550|Zeromus|0001AC48|21480804||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:44.8590000-07:00|10FF0005|Wuwuchu Wuchu|0001AC49|63038|63038|4400|10000|16||86.72|82.34|0.00|1.65|2700|0|0|01|0C0004E2|0|41200000|| +38|2023-10-06T20:25:44.8590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4400|10000|16||86.72|82.34|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:44.9930000-07:00|40022550|Zeromus|0001AC4A|21475936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:45.0380000-07:00|40022550|Zeromus|0001AC39|21434060||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:45.0380000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.17|0001AC4C|0|0| +38|2023-10-06T20:25:45.0380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8450|10000|0||88.07|81.55|0.00|1.60|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:45.0380000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|55377|63089| +38|2023-10-06T20:25:45.0380000-07:00|4002298A|Topaz Titan|005A5A00|0|53095|10000|10000|0||81.96|83.33|0.00|1.65|0|0|0||||||||||||||||||| +30|2023-10-06T20:25:45.0380000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|4002298A|Topaz Titan|00|53095|63089| +21|2023-10-06T20:25:45.1280000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|716003|69280000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|21475936|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4400|10000|||88.12|82.22|0.00|1.65|0001AC4D|0|1| +38|2023-10-06T20:25:45.1280000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4400|10000|16||88.12|82.22|0.00|1.65|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:45.1280000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +38|2023-10-06T20:25:45.1720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4400|10000|16||88.12|82.22|0.00|1.65|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:45.1720000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|63038|63089| +39|2023-10-06T20:25:45.2620000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|6000|10000|||91.22|87.36|0.00|0.44| +261|2023-10-06T20:25:44.7760000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:25:45.3070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|6600|10000|0||92.43|85.26|0.00|1.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:45.3070000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|89453|63089| +39|2023-10-06T20:25:45.3510000-07:00|10FF0003|Gegehi Gehi|36907|51159|3900|10000|||91.91|88.87|0.00|0.42| +261|2023-10-06T20:25:44.8920000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T20:25:45.4430000-07:00|10FF0002|Suchichi Suchi|63089|63089|4400|10000|||92.49|86.49|0.00|1.28| +38|2023-10-06T20:25:45.4430000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5100|10000|18||92.58|85.87|-0.01|2.17|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:45.4430000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:45.4430000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|56517|63089| +21|2023-10-06T20:25:45.4840000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.05|0001AC4E|0|0| +261|2023-10-06T20:25:45.0140000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:25:45.0140000-07:00|Change|10FF0005||||||||| +38|2023-10-06T20:25:45.5740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6000|10000|0||91.42|87.91|0.00|0.38|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:45.5740000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|89994|63089| +261|2023-10-06T20:25:45.1310000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:45.6620000-07:00|40022550|Zeromus|0001AC4D|21407140||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:45.6620000-07:00|10FF0005|Wuwuchu Wuchu|0001AC4D|63038|63038|4400|10000|16||90.66|82.97|0.00|1.57|2700|0|0|01|0E000A1F|0|41F00000|| +38|2023-10-06T20:25:45.6620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4400|10000|16||91.34|82.90|0.00|1.71|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:25:45.7510000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3B780000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|21407140|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5100|10000|||92.58|85.89|0.00|2.24|0001AC4F|0|1| +261|2023-10-06T20:25:45.3220000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:25:45.3220000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:25:45.3220000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:25:45.9310000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|3C440000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|21407140|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8450|10000|||93.19|82.50|0.00|1.27|0001AC50|0|1| +21|2023-10-06T20:25:45.9310000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|70D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21407140|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|6600|10000|||93.97|87.87|0.00|1.05|0001AC51|0|1| +38|2023-10-06T20:25:45.9310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8150|10000|0||93.19|82.50|0.00|1.27|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:45.9310000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:25:45.4130000-07:00|Change|4002256E||||||||| +31|2023-10-06T20:25:45.9310000-07:00|10FF0001||||| +21|2023-10-06T20:25:45.9740000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.05|0001AC52|0|0| +39|2023-10-06T20:25:46.0190000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|6800|10000|||94.14|88.52|0.00|1.04| +261|2023-10-06T20:25:45.6000000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:25:46.1090000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|277E0000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|21407140|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4400|10000|||96.01|89.26|0.00|1.32|0001AC53|0|1| +38|2023-10-06T20:25:46.1090000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4400|10000|16||96.01|89.26|0.00|1.32|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:46.1090000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:25:46.1090000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +21|2023-10-06T20:25:46.1540000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|60700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21407140|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6000|10000|||93.94|90.35|0.00|0.47|0001AC54|0|1| +38|2023-10-06T20:25:46.1540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6000|10000|0||93.94|90.35|0.00|0.47|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:46.1540000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|89994|89994| +24|2023-10-06T20:25:46.1990000-07:00|40022550|Zeromus|DoT|0|2D23|21407140|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:46.1990000-07:00|40022550|Zeromus|005A5A00|21395585|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:46.1990000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +25|2023-10-06T20:25:46.2430000-07:00|10FF0004|Buhojaqe Zijaqe|E0000000|| +36|2023-10-06T20:25:46.3320000-07:00|55DC|3| +261|2023-10-06T20:25:45.8450000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:25:45.8450000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:25:45.8450000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:25:46.4210000-07:00|10FF0003|Gegehi Gehi|HoT|A2C|1573|36907|51159|3900|10000|||95.57|94.00|0.00|0.86|10FF0006|Wowobora Gogobora|0|56517|56517|4700|10000|||93.67|87.28|0.00|0.78| +37|2023-10-06T20:25:46.4210000-07:00|40022550|Zeromus|0001AC4F|21380361||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:46.4210000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.19|0001AC55|0|0| +21|2023-10-06T20:25:46.4210000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|30300000|4|1BA98000|0|0|0|0|0|0|0|0|0|0|0|0|21395585|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|6800|10000|||95.71|90.39|0.00|0.67|0001AC56|0|1| +38|2023-10-06T20:25:46.4210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|5800|10000|0||95.71|90.39|0.00|0.67|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:46.4210000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +38|2023-10-06T20:25:46.4210000-07:00|10FF0003|Gegehi Gehi|005A5A23|42398|51159|3900|10000|0||95.57|94.00|0.00|0.86|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:25:46.4640000-07:00|40022550|Zeromus|0001AC51|21378556||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:46.5090000-07:00|10FF0006|Wowobora Gogobora|56517|56517|4905|10000|||94.12|87.83|0.00|0.73| +21|2023-10-06T20:25:46.5090000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|B480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21378556|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4400|10000|||94.01|88.06|0.00|0.89|0001AC57|0|1| +261|2023-10-06T20:25:46.0830000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:25:46.5540000-07:00|40022550|Zeromus|0001AC50|21363128||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:46.5540000-07:00|10FF0008|Kokosaze Lulusaze|0001AC50|55377|55377|8150|10000|0||95.35|85.68|0.00|0.82|1B00|0|0|01|06000B25|0|0|| +38|2023-10-06T20:25:46.5540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8150|10000|0||95.35|85.68|0.00|0.82|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:46.1760000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:25:46.7330000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|205E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21363128|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8150|10000|||95.09|86.44|0.00|0.42|0001AC58|0|1| +261|2023-10-06T20:25:46.2720000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:25:46.7340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|8150|10000|0||95.04|87.20|-0.02|2.52|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:46.7340000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:25:46.7770000-07:00|40022550|Zeromus|0001AC54|21338440||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:46.7770000-07:00|40022550|Zeromus|0001AC53|21328330||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:46.7770000-07:00|10FF0002|Suchichi Suchi|0001AC53|63089|63089|4400|10000|16||98.61|91.77|0.00|1.51|1600|0|0|01|08000322|0|41F00000|| +38|2023-10-06T20:25:46.7770000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4400|10000|16||98.61|91.77|0.00|1.51|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:25:46.8660000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.19|0001AC59|0|0| +39|2023-10-06T20:25:46.8660000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|4600|10000|||95.05|89.16|0.00|0.75| +37|2023-10-06T20:25:47.0450000-07:00|40022550|Zeromus|0001AC57|21325442||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:47.0450000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8350|10000|||95.04|87.20|-0.02|2.52| +261|2023-10-06T20:25:46.5610000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:25:46.5610000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:25:46.5610000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:25:46.5610000-07:00|Change|4002298A||||| +38|2023-10-06T20:25:47.0900000-07:00|4002298A|Topaz Titan|005A5A00|0|53095|0|10000|0||81.96|83.33|0.00|1.65|0|0|0||||||||||||| +30|2023-10-06T20:25:47.0900000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|4002298A|Topaz Titan|00|53095|55377| +30|2023-10-06T20:25:47.0900000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|4002298A|Topaz Titan|00|53095|63038| +30|2023-10-06T20:25:47.0900000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002298A|Topaz Titan|00|53095|51159| +38|2023-10-06T20:25:47.1340000-07:00|400229CE||005A5A00|53095|53095|10000|10000|0||||||0|0|0|||||||||||||||| +38|2023-10-06T20:25:47.1340000-07:00|400229CE||005A5A00|53095|53095|10000|10000|0||||||0|0|0|||||||||||||||| +37|2023-10-06T20:25:47.1800000-07:00|40022550|Zeromus|0001AC56|21313106||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:46.8080000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:25:47.2690000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21313106|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4400|10000|||101.03|93.35|-0.02|1.42|0001AC5A|0|1| +21|2023-10-06T20:25:47.2690000-07:00|10FF0006|Wowobora Gogobora|5EFC|Toxikon II|40022550|Zeromus|750003|3B4C0000|1B|5EFC8000|0|0|0|0|0|0|0|0|0|0|0|0|21313106|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|4905|10000|||96.39|92.15|-0.02|0.46|0001AC5B|0|1| +21|2023-10-06T20:25:47.3130000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.44|0001AC5C|0|0| +21|2023-10-06T20:25:47.3130000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|C100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21313106|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6000|10000|||98.06|97.07|0.00|0.69|0001AC5D|0|1| +38|2023-10-06T20:25:47.3130000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4400|10000|16||101.16|93.96|0.00|1.41|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:47.3130000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +21|2023-10-06T20:25:47.3570000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|6000|10000|||98.06|97.07|0.00|0.69|89994|89994|6000|10000|||98.06|97.07|0.00|0.69|0001AC5E|0|1| +38|2023-10-06T20:25:47.3570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6000|10000|0||98.06|97.07|0.00|0.69|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:47.3570000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:25:47.4020000-07:00|40022550|Zeromus|005A5A00|21313106|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:47.4020000-07:00|A1A|Death's Design|0.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|63038| +21|2023-10-06T20:25:47.4470000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|1050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21313106|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8350|10000|||97.10|91.24|-0.02|0.57|0001AC5F|0|1| +03|2023-10-06T20:25:47.0300000-07:00|400229CE|Carbuncle|00|5A|10FF0008|00||10261|13498|53095|53095|10000|10000|||97.87|91.20|0.00|-2.32| +261|2023-10-06T20:25:47.0300000-07:00|Add|400229CE||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:47.4910000-07:00|40022550|Zeromus|0001AC58|21304820||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:47.0300000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:25:47.0300000-07:00|Change|400229CE||| +261|2023-10-06T20:25:47.1450000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:25:47.1450000-07:00|Change|10FF0006||||||||| +38|2023-10-06T20:25:47.7140000-07:00|10FF0003|Gegehi Gehi|005A5A23|42398|51159|4450|10000|0||99.98|99.75|0.00|0.68|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:47.7140000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +21|2023-10-06T20:25:47.7590000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.56|0001AC60|0|0| +37|2023-10-06T20:25:47.8040000-07:00|40022550|Zeromus|0001AC5A|21301854||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:47.8490000-07:00|40022550|Zeromus|0001AC5D|21298766||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:47.8490000-07:00|10FF0007|Kehabiqo Febiqo|0001AC5D|89994|89994|6000|10000|0||98.70|97.51|0.00|0.85|1500|0|0|01|01000769|0|C1F00000|| +261|2023-10-06T20:25:47.3380000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:25:47.8930000-07:00|10FF0007|Kehabiqo Febiqo|0001AC5E|89994|89994|6000|10000|0||98.70|97.51|0.00|0.85|1500|0|0|01|01000769|0|41F00000|| +21|2023-10-06T20:25:47.8930000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21301854|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|4905|10000|||97.78|95.05|0.00|1.27|0001AC61|0|1| +21|2023-10-06T20:25:47.8930000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|714003|3C4D0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|21301854|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4600|10000|||99.25|94.82|0.00|0.63|0001AC62|0|1| +38|2023-10-06T20:25:47.8930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6000|10000|0||98.70|97.51|0.00|0.85|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:47.8930000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4600|10000|16||99.25|94.82|0.00|0.63|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:47.8930000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +38|2023-10-06T20:25:47.9370000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4400|10000|16||103.21|95.68|0.00|1.36|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:47.9370000-07:00|776|Right Eye|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:25:47.9370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4600|10000|16||99.25|94.82|0.00|0.63|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:47.9370000-07:00|5AE|Left Eye|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|63038|63089| +37|2023-10-06T20:25:47.9810000-07:00|40022550|Zeromus|0001AC5F|21298505||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:47.6440000-07:00|Change|400229CE||||||||| +34|2023-10-06T20:25:48.1600000-07:00|400229CE|Carbuncle|400229CE|Carbuncle|01| +21|2023-10-06T20:25:48.2050000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.56|0001AC63|0|0| +21|2023-10-06T20:25:48.2050000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|87C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21298505|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|5800|10000|||102.82|96.03|0.00|1.29|0001AC64|0|1| +31|2023-10-06T20:25:48.2050000-07:00|10FF0001||||| +261|2023-10-06T20:25:47.7550000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:25:48.2480000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|6200|10000|||100.89|98.95|0.00|0.96| +261|2023-10-06T20:25:47.7550000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T20:25:47.8770000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:25:48.3830000-07:00|10FF0003|Gegehi Gehi|42909|51159|4650|10000|||103.40|101.94|0.00|1.34| +21|2023-10-06T20:25:48.3830000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|750003|4AAE0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|21298505|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8350|10000|||100.66|95.94|0.00|0.75|0001AC65|0|1| +38|2023-10-06T20:25:48.3830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7950|10000|0||100.66|95.94|0.00|0.75|0|0|0||||||||||||||||||| +30|2023-10-06T20:25:48.3830000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:25:48.4270000-07:00|40022550|Zeromus|0001AC61|21298464||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:48.4270000-07:00|40022550|Zeromus|0001AC62|21283027||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:48.4270000-07:00|10FF0005|Wuwuchu Wuchu|0001AC62|63038|63038|4600|10000|16||100.64|94.98|0.00|2.58|2700|0|0|01|0E000A1F|0|41F00000|| +38|2023-10-06T20:25:48.4270000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4600|10000|16||100.64|94.98|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:47.9920000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:25:47.9920000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:25:47.9920000-07:00|Change|10FF0006||||||||| +24|2023-10-06T20:25:48.4710000-07:00|10FF0003|Gegehi Gehi|HoT|A2C|1562|42398|51159|4450|10000|||103.40|101.94|0.00|1.34|10FF0006|Wowobora Gogobora|0|56517|56517|4905|10000|||100.25|96.89|0.00|0.95| +37|2023-10-06T20:25:48.4710000-07:00|40022550|Zeromus|0001AC5B|21267847||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:48.4710000-07:00|10FF0002|Suchichi Suchi|63089|63089|4600|10000|||106.36|97.24|0.00|1.37| +38|2023-10-06T20:25:48.4710000-07:00|10FF0003|Gegehi Gehi|005A5A23|48383|51159|4650|10000|0||103.68|102.55|0.00|1.39|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:25:48.5600000-07:00|10FF0006|Wowobora Gogobora|5EE8|Druochole|10FF0003|Gegehi Gehi|4|4B5D0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|42909|51159|4650|10000|||103.68|102.55|0.00|1.39|56517|56517|4905|10000|||100.78|97.22|0.00|0.97|0001AC66|0|1| +21|2023-10-06T20:25:48.6050000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|7BDB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21267847|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6200|10000|||102.81|99.82|0.00|1.12|0001AC67|0|1| +21|2023-10-06T20:25:48.6050000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|2C350000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|21267847|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4600|10000|||106.97|97.48|0.00|1.38|0001AC68|0|1| +38|2023-10-06T20:25:48.6060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6200|10000|0||102.81|99.82|0.00|1.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:48.6060000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:25:48.6060000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4600|10000|16||106.97|97.48|0.00|1.38|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:48.6060000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:25:48.6060000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +21|2023-10-06T20:25:48.6490000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.68|0001AC69|0|0| +38|2023-10-06T20:25:48.6930000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4600|10000|16||101.69|95.91|0.00|1.84|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:48.6930000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:25:48.7380000-07:00|40022550|Zeromus|0001AC64|21265675||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:48.8270000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4600|10000|16||108.50|97.45|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:48.8270000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|63089|63038| +261|2023-10-06T20:25:48.3910000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:25:48.9160000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|29C40000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|21265675|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|5800|10000|||107.33|96.53|0.00|1.81|0001AC6A|0|1| +38|2023-10-06T20:25:48.9160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|5800|10000|0||107.33|96.53|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:48.9160000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +26|2023-10-06T20:25:48.9160000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +39|2023-10-06T20:25:49.0060000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|6000|10000|||107.33|96.53|0.00|1.81| +21|2023-10-06T20:25:49.0500000-07:00|10FF0008|Kokosaze Lulusaze|1D89|Swiftcast|10FF0008|Kokosaze Lulusaze|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|7950|10000|||102.08|96.87|0.00|2.95|55377|55377|7950|10000|||102.08|96.87|0.00|2.95|0001AC6B|0|1| +38|2023-10-06T20:25:49.0500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7950|10000|0||102.08|96.87|0.00|2.95|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:49.0500000-07:00|A7|Swiftcast|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:25:48.4890000-07:00|Change|4002256E||||||||| +21|2023-10-06T20:25:49.0950000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.80|0001AC6C|0|0| +38|2023-10-06T20:25:49.0950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7950|10000|0||102.08|96.87|0.00|2.95|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:49.0950000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|55377|63038| +38|2023-10-06T20:25:49.0950000-07:00|400229CE|Carbuncle|005A5A00|53095|53095|10000|10000|0||99.67|93.68|0.00|0.77|0|0|0|||||||||||||||| +26|2023-10-06T20:25:49.0950000-07:00|30|Well Fed|2110.27|10FF0008|Kokosaze Lulusaze|400229CE|Carbuncle|2964|53095|55377| +26|2023-10-06T20:25:49.0950000-07:00|A8F|Searing Light|5.85|10FF0008|Kokosaze Lulusaze|400229CE|Carbuncle|00|53095|55377| +26|2023-10-06T20:25:49.0950000-07:00|511|Embolden|11.89|10FF0003|Gegehi Gehi|400229CE|Carbuncle|00|53095|51159| +26|2023-10-06T20:25:49.0950000-07:00|441|HP Penalty|9999.00|E0000000||400229CE|Carbuncle|00|53095|| +261|2023-10-06T20:25:48.6020000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:25:48.7170000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:25:49.1840000-07:00|40022550|Zeromus|0001AC65|21246557||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:49.1840000-07:00|10FF0008|Kokosaze Lulusaze|0001AC65|55377|55377|7950|10000|0||102.80|97.25|0.00|1.34|1B00|0|0|01|060000A7|0|C1200000|| +37|2023-10-06T20:25:49.1840000-07:00|10FF0008|Kokosaze Lulusaze|0001AC6B|55377|55377|7950|10000|0||102.80|97.25|0.00|1.34|1B00|0|0|01|060000A7|0|41200000|| +24|2023-10-06T20:25:49.1840000-07:00|40022550|Zeromus|DoT|0|2F1B|21265675|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:49.1840000-07:00|40022550|Zeromus|005A5A00|21234498|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:49.1840000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:25:49.1840000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7950|10000|0||102.80|97.25|0.00|1.34|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:25:49.2290000-07:00|40022550|Zeromus|0001AC68|21223181||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:49.2290000-07:00|10FF0002|Suchichi Suchi|0001AC68|63089|63089|4600|10000|16||108.93|97.25|0.00|-3.13|1600|0|0|01|05000747|0|41F00000|| +38|2023-10-06T20:25:49.2290000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4600|10000|16||108.93|97.25|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:25:49.2290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|6000|10000|0||109.19|96.26|0.00|1.55|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:49.2290000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|89453|63038| +261|2023-10-06T20:25:48.8370000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:25:48.8370000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:25:49.3170000-07:00|10FF0003|Gegehi Gehi|0001AC66|51159||||||107.14|100.61|0.00|2.23| +37|2023-10-06T20:25:49.3170000-07:00|10FF0006|Wowobora Gogobora|0001AC66|56517|56517|5605|10000|18||102.64|98.05|0.00|0.71|2800|0|0|0| +36|2023-10-06T20:25:49.3180000-07:00|56B8|3| +21|2023-10-06T20:25:49.3620000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|716003|67DA0000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|21223181|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4600|10000|||106.16|97.51|0.00|1.23|0001AC6D|0|1| +38|2023-10-06T20:25:49.3620000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5605|10000|18||103.71|98.42|0.00|0.92|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:49.3620000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:49.3620000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|56517|63038| +38|2023-10-06T20:25:49.3620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4600|10000|16||106.16|97.51|0.00|1.23|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:49.3620000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:25:49.3620000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:25:48.9530000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:25:48.9530000-07:00|Change|400229CE||||||||| +261|2023-10-06T20:25:48.9530000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:25:49.4960000-07:00|40022550|Zeromus|0001AC6A|21212489||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:49.4960000-07:00|10FF0001|Sesuga Sapisuga|0001AC6A|89453|89453|6000|10000|0||110.56|96.28|0.00|1.55|1300|0|0|02|0200076E|03|41F00000|||||| +39|2023-10-06T20:25:49.4960000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5810|10000|||104.59|98.75|0.00|1.08| +38|2023-10-06T20:25:49.4960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6200|10000|0||107.95|98.61|-0.02|2.69|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:49.4960000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|89994|63038| +38|2023-10-06T20:25:49.4960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|6000|10000|0||110.56|96.28|0.00|1.55|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:25:49.5410000-07:00|40022550|Zeromus|0001AC67|21180782||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:49.5410000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.92|0001AC6E|0|0| +21|2023-10-06T20:25:49.6300000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|DE00000|13FE0E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|21180782|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|6000|10000|||111.23|96.29|0.00|1.58|0001AC6F|0|1| +20|2023-10-06T20:25:49.7190000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|105.97|99.51|0.00|1.07| +21|2023-10-06T20:25:49.7190000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|C050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21180782|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4600|10000|||107.67|98.46|0.00|2.69|0001AC70|0|1| +261|2023-10-06T20:25:49.3480000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:25:49.8080000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|712003|149A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21180782|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6200|10000|||109.87|98.40|-0.02|3.02|0001AC71|0|1| +39|2023-10-06T20:25:49.8980000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|4800|10000|||108.53|98.87|0.00|1.96| +37|2023-10-06T20:25:49.9870000-07:00|40022550|Zeromus|0001AC6D|21154196||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:49.9870000-07:00|10FF0005|Wuwuchu Wuchu|0001AC6D|63038|63038|4800|10000|16||108.53|98.87|0.00|1.96|2700|0|0|01|05000A1E|0|41F00000|| +21|2023-10-06T20:25:49.9870000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.05|0001AC72|0|0| +38|2023-10-06T20:25:49.9870000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4800|10000|16||108.53|98.87|0.00|1.96|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:49.5310000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:25:50.0310000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8150|10000|||108.51|98.73|0.00|1.40| +261|2023-10-06T20:25:49.6490000-07:00|Change|10FF0005||||||||||| +21|2023-10-06T20:25:50.0760000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21154196|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4600|10000|||114.82|96.11|0.00|1.97|0001AC73|0|1| +261|2023-10-06T20:25:49.6490000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:50.2540000-07:00|40022550|Zeromus|0001AC70|21151119||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:50.3430000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|2E200000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|21151119|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|6000|10000|||115.68|95.55|0.00|2.05|0001AC74|0|1| +261|2023-10-06T20:25:49.8920000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:25:49.8920000-07:00|Change|400229CE||||||||| +37|2023-10-06T20:25:50.4310000-07:00|40022550|Zeromus|0001AC71|21145845||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:50.4310000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.29|0001AC75|0|0| +261|2023-10-06T20:25:50.0070000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:25:50.4760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21151119|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|6000|10000|||116.21|95.24|0.00|2.17|0001AC76|0|1| +31|2023-10-06T20:25:50.4760000-07:00|10FF0001||||| +261|2023-10-06T20:25:50.1230000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:25:50.1230000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:25:50.5660000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21145845|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8150|10000|||111.95|98.94|-0.02|1.55|0001AC77|0|1| +37|2023-10-06T20:25:50.6100000-07:00|40022550|Zeromus|0001AC73|21143548||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:50.6550000-07:00|40022550|Zeromus|0001AC6F|21139996|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T20:25:50.6550000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +21|2023-10-06T20:25:50.6550000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|62710000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|21143548|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5810|10000|||108.02|100.76|0.00|-2.77|0001AC78|0|1| +37|2023-10-06T20:25:50.6990000-07:00|40022550|Zeromus|0001AC74|21128188||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:50.6990000-07:00|10FF0001|Sesuga Sapisuga|0001AC74|89453|89453|6500|10000|0||117.21|94.37|0.00|2.46|1300|0|0|0| +21|2023-10-06T20:25:50.7000000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|F120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21143548|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6200|10000|||110.24|96.97|0.00|-2.62|0001AC79|0|1| +38|2023-10-06T20:25:50.7000000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5200|10000|0||114.59|97.74|0.00|2.88|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:50.7000000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +261|2023-10-06T20:25:50.3150000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:25:50.8780000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.41|0001AC7A|0|0| +21|2023-10-06T20:25:50.8780000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|492D0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|21128188|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|8150|10000|||113.98|98.62|-0.02|1.75|0001AC7B|0|1| +21|2023-10-06T20:25:50.8780000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|714003|40410000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|21128188|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4800|10000|||113.69|96.87|0.00|1.97|0001AC7C|0|1| +38|2023-10-06T20:25:50.8780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6200|10000|0||111.88|96.18|0.00|-2.89|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:50.8780000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +38|2023-10-06T20:25:50.8780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7850|10000|0||113.98|98.62|-0.02|1.75|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:50.8780000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:25:50.8780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4800|10000|16||113.69|96.87|0.00|1.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:50.8780000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:25:50.8780000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:25:50.4100000-07:00|Change|10FF0002||||||||| +38|2023-10-06T20:25:50.9660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4800|10000|16||113.69|96.87|0.00|1.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:50.5010000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:25:51.0120000-07:00|40022550|Zeromus|0001AC76|21125365||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:51.0590000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|11160000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|21128188|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6200|10000|||112.58|95.70|0.00|-2.89|0001AC7D|0|1| +38|2023-10-06T20:25:51.0590000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4600|10000|0||117.85|92.86|0.00|-2.88|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:51.0590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:25:51.0590000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5410|10000|0||108.24|100.69|0.00|2.20|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:51.0590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:25:51.0590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4800|10000|0||114.01|96.30|0.00|-2.90|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:51.0590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +04|2023-10-06T20:25:50.6160000-07:00|4002298A|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|53095|0|10000|||81.96|83.33|0.00|1.65| +261|2023-10-06T20:25:50.6160000-07:00|Remove|4002298A| +37|2023-10-06T20:25:51.1000000-07:00|40022550|Zeromus|0001AC77|21125211||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:51.1000000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|264C0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|21125365|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4600|10000|||117.93|92.78|0.00|-2.69|0001AC7E|0|1| +21|2023-10-06T20:25:51.1000000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|752003|325F0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|21125365|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|5200|10000|||116.15|95.53|0.00|-3.06|0001AC7F|0|1| +21|2023-10-06T20:25:51.1000000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21125365|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|5200|10000|||116.15|95.53|0.00|-3.06|0001AC80|0|1| +38|2023-10-06T20:25:51.1000000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|4600|10000|0||117.93|92.78|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:51.1000000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:25:51.1000000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5200|10000|0||116.15|95.53|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:51.1000000-07:00|7B3|Manafication|5.11|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|51159|51159| +261|2023-10-06T20:25:50.7340000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:25:50.7340000-07:00|Change|400229CE||||||||| +37|2023-10-06T20:25:51.2330000-07:00|40022550|Zeromus|0001AC79|21121353||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:51.2330000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|6400|10000|||113.08|94.24|0.00|-2.41| +261|2023-10-06T20:25:50.8470000-07:00|Change|10FF0007||||||||||| +24|2023-10-06T20:25:51.3230000-07:00|10FF0003|Gegehi Gehi|HoT|A2C|1608|51159|51159|5200|10000|||115.94|94.24|0.00|-2.49|10FF0006|Wowobora Gogobora|0|56517|56517|5410|10000|||110.50|100.35|0.00|1.87| +37|2023-10-06T20:25:51.3230000-07:00|40022550|Zeromus|0001AC78|21096152||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:51.3230000-07:00|10FF0006|Wowobora Gogobora|5EDD|Kardia|10FF0007|Kehabiqo Febiqo|AA0E|A2D0000|C000F|A2C8000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|6400|10000|||113.31|93.54|0.00|-2.41|56517|56517|5410|10000|||110.50|100.35|0.00|1.87|0001AC81|0|1| +38|2023-10-06T20:25:51.3230000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5200|10000|0||115.94|94.24|0.00|-2.49|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:25:51.3680000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.41|0001AC82|0|0| +39|2023-10-06T20:25:51.3680000-07:00|10FF0003|Gegehi Gehi|51159|51159|5400|10000|||115.94|94.24|0.00|-2.49| +261|2023-10-06T20:25:50.9730000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:25:51.4130000-07:00|40022550|Zeromus|0001AC7C|21079703||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:51.4130000-07:00|10FF0005|Wuwuchu Wuchu|0001AC7C|63038|63038|4800|10000|0||115.58|94.14|0.00|2.53|2700|0|0|01|05000A1F|0|41F00000|| +21|2023-10-06T20:25:51.4130000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|40AB0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|21096152|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|6500|10000|||118.04|91.14|0.00|3.10|0001AC83|0|1| +38|2023-10-06T20:25:51.4130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|6500|10000|0||118.04|91.14|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:51.4130000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|89453|89453| +38|2023-10-06T20:25:51.4130000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|4800|10000|0||115.58|94.14|0.00|2.53|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:50.9730000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:25:51.4570000-07:00|10FF0002|Suchichi Suchi|63089|63089|4800|10000|||118.13|92.52|0.00|-2.12| +261|2023-10-06T20:25:51.0830000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:25:51.5020000-07:00|40022550|Zeromus|0001AC7B|21060970||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:51.5020000-07:00|10FF0008|Kokosaze Lulusaze|0001AC7B|55377|55377|7850|10000|0||116.17|96.04|0.00|3.05|1B00|0|0|01|04000B25|0|0|| +21|2023-10-06T20:25:51.5020000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|18B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21096152|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|7850|10000|||116.17|96.04|0.00|3.05|0001AC84|0|1| +38|2023-10-06T20:25:51.5020000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7850|10000|0||116.17|96.04|0.00|3.05|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:51.5020000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:25:51.5900000-07:00|40022550|Zeromus|0001AC7D|21056596||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:51.6340000-07:00|40022550|Zeromus|0001AC80|21056595||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:51.6800000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21056595|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5410|10000|||111.08|100.20|0.00|1.93|0001AC85|0|1| +37|2023-10-06T20:25:51.7240000-07:00|40022550|Zeromus|0001AC7E|21046791||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:51.7240000-07:00|40022550|Zeromus|0001AC7F|21033896||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:51.8140000-07:00|4002256E|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.54|0001AC86|0|0| +261|2023-10-06T20:25:51.3940000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:25:51.4860000-07:00|Change|10FF0002||||||||||| +37|2023-10-06T20:25:51.9940000-07:00|10FF0007|Kehabiqo Febiqo|0001AC81|89994|89994|6400|10000|0||115.24|90.09|0.00|-2.88|1500|0|0|01|01000A2D|0|42700000|| +26|2023-10-06T20:25:51.9940000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +39|2023-10-06T20:25:51.9940000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|6700|10000|||118.06|90.12|0.00|3.12| +38|2023-10-06T20:25:51.9940000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5400|10000|0||115.04|92.23|-0.02|-2.64|0|0|0||||||||||||||||||| +30|2023-10-06T20:25:51.9940000-07:00|A2D|Kardion|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +21|2023-10-06T20:25:52.0380000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|17900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21033896|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|4800|10000|||117.09|91.94|0.00|2.61|0001AC87|0|1| +261|2023-10-06T20:25:51.6990000-07:00|Change|400229CE||||||||| +261|2023-10-06T20:25:51.6990000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:25:51.6990000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:52.2150000-07:00|40022550|Zeromus|0001AC85|21033846||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:25:52.2160000-07:00|40022550|Zeromus|DoT|0|2F39|21033896|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:52.2160000-07:00|40022550|Zeromus|005A5A00|21021757|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:52.2160000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +37|2023-10-06T20:25:52.2600000-07:00|40022550|Zeromus|0001AC84|21015436||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:25:52.3490000-07:00|5794|3| +20|2023-10-06T20:25:52.4820000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|114.72|98.19|0.00|2.23| +39|2023-10-06T20:25:52.5260000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5615|10000|||115.22|97.89|-0.02|2.27| +261|2023-10-06T20:25:52.0460000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:25:52.5710000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37754003|30220000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|21015436|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|5400|10000|||115.54|93.89|0.00|-0.15|0001AC88|0|1| +38|2023-10-06T20:25:52.5710000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5400|10000|0||115.54|93.89|0.00|-0.15|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:52.5710000-07:00|7B3|Manafication|3.64|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|51159|51159| +37|2023-10-06T20:25:52.7050000-07:00|40022550|Zeromus|0001AC83|20998881||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:52.7050000-07:00|10FF0001|Sesuga Sapisuga|0001AC83|89453|89453|7100|10000|0||118.27|89.80|0.00|3.13|1300|0|0|0| +37|2023-10-06T20:25:52.7500000-07:00|40022550|Zeromus|0001AC87|20992849||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:52.7500000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20998881|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7100|10000|||118.27|89.80|0.00|3.13|0001AC89|0|1| +31|2023-10-06T20:25:52.7500000-07:00|10FF0001||||| +38|2023-10-06T20:25:52.7950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7100|10000|0||118.27|89.80|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:52.7950000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +39|2023-10-06T20:25:52.8830000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|5000|10000|||117.37|91.66|0.00|-2.13| +21|2023-10-06T20:25:52.8830000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20992849|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4800|10000|||118.05|89.97|0.00|-1.80|0001AC8A|0|1| +261|2023-10-06T20:25:52.4710000-07:00|Change|10FF0005||||||||||| +21|2023-10-06T20:25:52.9280000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|B1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20992849|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5000|10000|||117.38|91.66|0.00|-2.13|0001AC8B|0|1| +39|2023-10-06T20:25:53.0170000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|8050|10000|||117.48|94.35|0.00|2.67| +261|2023-10-06T20:25:52.5660000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:25:52.5660000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:25:53.0620000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|16550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20992849|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5000|10000|||117.38|91.66|0.00|-2.13|0001AC8C|0|1| +39|2023-10-06T20:25:53.1060000-07:00|400229CE|Carbuncle|53095|53095|10000|10000|||116.58|96.87|0.00|1.86| +37|2023-10-06T20:25:53.1950000-07:00|40022550|Zeromus|0001AC88|20980527||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:52.7930000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:53.2840000-07:00|40022550|Zeromus|0001AC89|20978827||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:53.3300000-07:00|10FF0008|Kokosaze Lulusaze|AD|Resurrection|10FF0004|Buhojaqe Zijaqe|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|0|10000|||100.18|115.14|0.00|-3.14|55377|55377|8050|10000|||117.48|94.28|0.00|2.83|0001AC8D|0|1| +38|2023-10-06T20:25:53.3300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5650|10000|0||117.48|94.28|0.00|2.83|0|0|0||||||||||||||||||| +30|2023-10-06T20:25:53.3300000-07:00|A7|Swiftcast|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +37|2023-10-06T20:25:53.4200000-07:00|40022550|Zeromus|0001AC8A|20976524||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:53.4200000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3BAD0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|20978827|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5615|10000|||116.84|96.91|0.00|-2.36|0001AC8E|0|1| +261|2023-10-06T20:25:53.0250000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:25:53.4630000-07:00|40022550|Zeromus|0001AC8B|20973680||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:53.5080000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|2A490000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|20973680|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6400|10000|||118.37|84.32|0.00|3.04|0001AC8F|0|1| +261|2023-10-06T20:25:53.1390000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:25:53.5960000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35726003|3F420000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|20973680|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|4800|10000|||118.15|87.57|0.00|-1.71|0001AC90|0|1| +38|2023-10-06T20:25:53.6850000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|5950|10000|0||116.70|96.65|0.00|-1.46|0|0|0||||||||||||||||||| +261|2023-10-06T20:25:53.2330000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:25:53.2330000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:25:53.7750000-07:00|40022550|Zeromus|0001AC8C|20967963||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:53.4260000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:25:53.9080000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|1F320000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20967963|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7100|10000|||118.28|89.23|0.00|-2.03|0001AC91|0|1| +38|2023-10-06T20:25:53.9080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7100|10000|0||118.28|89.23|0.00|-2.03|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:25:53.9080000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +20|2023-10-06T20:25:53.9970000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|118.28|86.39|0.00|-3.14| +38|2023-10-06T20:25:53.9970000-07:00|40022550|Zeromus|005A5A00|20967963|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:53.9970000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|56517| +24|2023-10-06T20:25:54.0850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|232F|89994|89994|6400|10000|||118.41|84.25|0.00|-1.84|10FF0006|Wowobora Gogobora|1|56517|56517|5215|10000|||117.64|95.84|0.00|2.71| +37|2023-10-06T20:25:54.0850000-07:00|40022550|Zeromus|0001AC8E|20952686||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:54.0850000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|F5C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20967963|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6400|10000|||118.41|84.25|0.00|-1.84|0001AC92|0|1| +38|2023-10-06T20:25:54.0850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6400|10000|0||118.41|84.25|0.00|-1.84|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:54.0850000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +37|2023-10-06T20:25:54.1310000-07:00|40022550|Zeromus|0001AC8F|20941861||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:54.2630000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|6600|10000|||118.41|84.24|0.00|-1.87| +261|2023-10-06T20:25:53.8250000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T20:25:54.3530000-07:00|10FF0003|Gegehi Gehi|51159|51159|6150|10000|||118.32|93.69|0.00|-2.91| +21|2023-10-06T20:25:54.3530000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A750003|39EE0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|20941861|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|5950|10000|||118.32|93.69|0.00|-2.91|0001AC93|0|1| +38|2023-10-06T20:25:54.3530000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6150|10000|0||118.32|93.69|0.00|-2.91|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:54.3530000-07:00|7B3|Manafication|1.85|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|51159|51159| +261|2023-10-06T20:25:53.9430000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:25:54.4430000-07:00|10FF0004|Buhojaqe Zijaqe|0001AC8D|0|56517|0|10000|0||100.18|115.14|0.00|-3.14|1C00|0|0|01|03000094|08|42700000|| +26|2023-10-06T20:25:54.4430000-07:00|94|Raise|60.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|08|56517|55377| +39|2023-10-06T20:25:54.4430000-07:00|10FF0002|Suchichi Suchi|63089|63089|5000|10000|||118.57|87.21|-0.01|1.51| +261|2023-10-06T20:25:53.9430000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:25:54.0630000-07:00|Change|10FF0008||||||||||||| +23|2023-10-06T20:25:54.4860000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|Cancelled| +21|2023-10-06T20:25:54.5760000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20941861|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6150|10000|||118.57|92.96|0.00|-2.15|0001AC94|0|1| +37|2023-10-06T20:25:54.6200000-07:00|40022550|Zeromus|0001AC92|20937929||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:54.6200000-07:00|40022550|Zeromus|0001AC90|20921735||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:54.1800000-07:00|Change|400229CE||||||||| +261|2023-10-06T20:25:54.2790000-07:00|Change|10FF0006||||||||| +38|2023-10-06T20:25:54.8440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5000|10000|0||118.56|85.65|0.00|-2.87|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:54.8440000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +20|2023-10-06T20:25:54.8880000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|118.54|91.83|0.00|2.71| +20|2023-10-06T20:25:54.9320000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|118.60|85.63|0.00|-3.03| +261|2023-10-06T20:25:54.4630000-07:00|Change|10FF0005||||||||||||||||||||| +37|2023-10-06T20:25:54.9770000-07:00|40022550|Zeromus|0001AC93|20906905||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:54.9770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6600|10000|0||118.04|81.97|0.00|-1.88|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:54.9770000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|89994|55377| +38|2023-10-06T20:25:54.9770000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5000|10000|0||118.58|87.21|0.00|1.45|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:54.9770000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|63089|55377| +38|2023-10-06T20:25:54.9770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5650|10000|0||118.22|86.05|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T20:25:54.9770000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:25:54.9770000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5215|10000|0||118.54|91.72|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:54.9770000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:25:54.9770000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|56517|55377| +38|2023-10-06T20:25:54.9770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7100|10000|0||118.48|89.23|0.00|3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:54.9770000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|89453|55377| +38|2023-10-06T20:25:54.9770000-07:00|400229CE|Carbuncle|005A5A00|53095|53095|10000|10000|0||116.92|91.40|0.00|2.87|0|0|0|||||||||||||||| +30|2023-10-06T20:25:54.9770000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|400229CE|Carbuncle|00|53095|55377| +38|2023-10-06T20:25:54.9770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5000|10000|0||118.63|85.62|-0.02|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:54.9770000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|63038|55377| +39|2023-10-06T20:25:55.0200000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|7300|10000|||118.48|89.23|0.00|3.12| +21|2023-10-06T20:25:55.0200000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20906905|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7100|10000|||118.48|89.23|0.00|3.12|0001AC95|0|1| +31|2023-10-06T20:25:55.0200000-07:00|10FF0001||||| +261|2023-10-06T20:25:54.5530000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:55.1100000-07:00|40022550|Zeromus|0001AC94|20906904||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:55.1990000-07:00|40022550|Zeromus|0001AC91|20898918||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:55.1990000-07:00|10FF0001|Sesuga Sapisuga|0001AC91|89453|89453|7700|10000|0||118.48|89.23|0.00|3.12|1300|0|0|0| +24|2023-10-06T20:25:55.1990000-07:00|40022550|Zeromus|DoT|0|2201|20906904|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:55.1990000-07:00|40022550|Zeromus|005A5A00|20890213|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:55.1990000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +21|2023-10-06T20:25:55.2870000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41670000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|6600|10000|||118.11|81.70|0.00|-1.88|20906904|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AC96|0|1| +36|2023-10-06T20:25:55.3320000-07:00|5870|3| +39|2023-10-06T20:25:55.5110000-07:00|10FF0006|Wowobora Gogobora|56517|56517|5420|10000|||118.55|91.42|0.00|-2.12| +37|2023-10-06T20:25:55.5550000-07:00|40022550|Zeromus|0001AC95|20888929||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:55.1270000-07:00|Change|400229CE||||||||| +21|2023-10-06T20:25:55.6450000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|722003|500C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20888929|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6150|10000|||118.91|90.01|0.00|-2.81|0001AC97|0|1| +21|2023-10-06T20:25:55.6900000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|E390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20888929|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5000|10000|||118.56|87.21|0.00|0.63|0001AC98|0|1| +21|2023-10-06T20:25:55.6900000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|750003|6B6A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20888929|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5000|10000|||118.64|85.62|0.00|-1.86|0001AC99|0|1| +38|2023-10-06T20:25:55.6900000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5000|10000|0||118.64|85.62|0.00|-1.86|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:55.6900000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:25:55.6900000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:25:55.2230000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:25:55.7790000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|34B00000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|20888929|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|5650|10000|||118.15|84.95|0.00|-2.91|0001AC9A|0|1| +21|2023-10-06T20:25:55.7790000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20888929|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|5650|10000|||118.15|84.95|0.00|-2.91|0001AC9B|0|1| +38|2023-10-06T20:25:55.7790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5350|10000|0||118.15|84.95|0.00|-2.91|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:55.7790000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:25:55.3260000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:25:55.8240000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3A2E0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|20888929|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5420|10000|||118.55|91.42|0.00|-2.12|0001AC9C|0|1| +39|2023-10-06T20:25:55.8680000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|5200|10000|||118.64|85.62|0.00|-1.86| +21|2023-10-06T20:25:55.9570000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F714003|2E3D0000|143E|340000|200004|1C3D8000|11B|2A8000|0|0|0|0|0|0|0|0|20888929|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6600|10000|||118.15|81.53|0.00|-1.88|0001AC9D|0|1| +261|2023-10-06T20:25:55.5170000-07:00|Change|10FF0005||||||||||||||||||||||| +261|2023-10-06T20:25:55.6140000-07:00|Change|10FF0001||| +39|2023-10-06T20:25:56.0460000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|5550|10000|||118.15|84.95|0.00|-1.83| +37|2023-10-06T20:25:56.0910000-07:00|10FF0007|Kehabiqo Febiqo|0001AC96|73251||||||118.15|81.53|0.00|-1.65| +39|2023-10-06T20:25:56.0910000-07:00|400229CE|Carbuncle|53095|53095|10000|10000|||119.37|87.34|0.00|2.82| +21|2023-10-06T20:25:56.0910000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F720003|316B0000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|20888929|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5000|10000|||118.15|87.74|0.00|-0.02|0001AC9E|0|1| +38|2023-10-06T20:25:56.0910000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5000|10000|0||118.15|87.74|0.00|-0.02|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:56.0910000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:25:56.2230000-07:00|40022550|Zeromus|0001AC98|20885288||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:56.2230000-07:00|10FF0002|Suchichi Suchi|0001AC98|63089|63089|5000|10000|0||118.04|87.97|0.00|-1.92|1600|0|0|01|0322|0|C1F00000|| +38|2023-10-06T20:25:56.2230000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6150|10000|0||118.91|90.01|0.00|-2.05|0|0|0|||||||||||||||| +30|2023-10-06T20:25:56.2230000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|51159|51159| +261|2023-10-06T20:25:55.8380000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:25:56.3130000-07:00|40022550|Zeromus|0001AC9B|20885096||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:56.3130000-07:00|40022550|Zeromus|0001AC99|20857598||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:56.4030000-07:00|40022550|Zeromus|0001AC9A|20844110||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:56.4030000-07:00|10FF0008|Kokosaze Lulusaze|0001AC9A|55377|55377|5550|10000|0||118.15|84.95|0.00|-1.83|1B00|0|0|01|02000B25|0|0|| +21|2023-10-06T20:25:56.4030000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|26430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20857598|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6150|10000|||118.91|90.01|0.00|-2.05|0001AC9F|0|1| +38|2023-10-06T20:25:56.4030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5550|10000|0||118.15|84.95|0.00|-1.83|0|0|0||||||||||||||||||| +21|2023-10-06T20:25:56.4480000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|29D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20857598|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|5550|10000|||118.15|84.95|0.00|-1.83|0001ACA0|0|1| +21|2023-10-06T20:25:56.4480000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20857598|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5020|10000|||118.55|91.40|0.00|-2.73|0001ACA1|0|1| +38|2023-10-06T20:25:56.4480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5550|10000|0||118.15|84.95|0.00|-1.83|0|0|0||||||||||||||||||| +30|2023-10-06T20:25:56.4480000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +24|2023-10-06T20:25:56.4930000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|2250|73251|89994|6600|10000|||118.15|81.53|0.00|-1.65|10FF0006|Wowobora Gogobora|1|56517|56517|5020|10000|||118.55|91.40|0.00|-2.73| +37|2023-10-06T20:25:56.4930000-07:00|40022550|Zeromus|0001AC9C|20829216||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:56.4930000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|1E170000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20857598|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7700|10000|||118.48|89.23|0.00|-2.03|0001ACA2|0|1| +38|2023-10-06T20:25:56.4930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82035|89994|6600|10000|0||118.15|81.53|0.00|-1.65|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:56.4930000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:25:56.4930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7700|10000|0||118.48|89.23|0.00|-2.03|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:56.4930000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|89453|89453| +38|2023-10-06T20:25:56.6260000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5000|10000|0||117.82|88.77|0.00|-1.61|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:25:56.1880000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T20:25:56.7150000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6700|10000|0||118.88|90.04|0.00|-2.03|0|0|0|||||||||||||||| +261|2023-10-06T20:25:56.2830000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:25:56.2830000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:25:56.8040000-07:00|40022550|Zeromus|0001AC9E|20816565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:56.8040000-07:00|10FF0002|Suchichi Suchi|0001AC9E|63089|63089|5000|10000|0||117.81|89.02|0.00|-1.59|1600|0|0|01|0322|0|41F00000|| +37|2023-10-06T20:25:56.8040000-07:00|40022550|Zeromus|0001AC97|20796073||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:56.8040000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5000|10000|0||117.81|89.02|0.00|-1.59|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:25:56.3740000-07:00|Change|10FF0008||| +37|2023-10-06T20:25:56.9830000-07:00|40022550|Zeromus|0001ACA1|20796034||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:57.0720000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|710003|260A0000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|20796034|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5200|10000|||117.06|85.64|0.00|-1.61|0001ACA3|0|1| +38|2023-10-06T20:25:57.0720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5200|10000|0||117.06|85.64|0.00|-1.61|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:57.0720000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +37|2023-10-06T20:25:57.2050000-07:00|40022550|Zeromus|0001ACA0|20785326||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:57.2500000-07:00|10FF0007|Kehabiqo Febiqo|82934|89994|6800|10000|||117.77|81.92|0.00|-1.64| +261|2023-10-06T20:25:56.8060000-07:00|Change|10FF0007||||||||||| +20|2023-10-06T20:25:57.2950000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|118.27|89.46|0.00|-3.00| +21|2023-10-06T20:25:57.2950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20785326|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7700|10000|||116.71|90.31|0.00|-1.63|0001ACA4|0|1| +31|2023-10-06T20:25:57.2950000-07:00|10FF0001||||| +39|2023-10-06T20:25:57.3830000-07:00|10FF0003|Gegehi Gehi|51159|51159|6900|10000|||116.04|91.77|0.00|-1.87| +261|2023-10-06T20:25:56.9280000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:25:57.4280000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|8C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20785326|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5200|10000|||116.79|85.73|0.00|-1.58|0001ACA5|0|1| +37|2023-10-06T20:25:57.4720000-07:00|40022550|Zeromus|0001AC9D|20773489||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:57.4720000-07:00|10FF0007|Kehabiqo Febiqo|0001AC9D|89994||||||116.27|83.47|0.00|-1.58| +39|2023-10-06T20:25:57.4720000-07:00|10FF0002|Suchichi Suchi|63089|63089|5200|10000|||116.82|90.85|0.00|-1.54| +21|2023-10-06T20:25:57.4720000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|B6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20785326|40478540|10000|10000|||100.00|80.10|0.00|0.00|82934|89994|6800|10000|||116.27|83.47|0.00|-1.58|0001ACA6|0|1| +261|2023-10-06T20:25:57.0450000-07:00|Change|10FF0002||||||||||| +37|2023-10-06T20:25:57.5610000-07:00|40022550|Zeromus|0001AC9F|20763694||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:57.5610000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022550|Zeromus|750003|3E240000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|0|0|20785326|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6900|10000|||115.50|92.09|0.00|-1.86|0001ACA7|0|1| +37|2023-10-06T20:25:57.6060000-07:00|40022550|Zeromus|0001ACA3|20753956||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:57.6060000-07:00|10FF0005|Wuwuchu Wuchu|0001ACA3|63038|63038|5200|10000|0||116.71|85.76|0.00|-1.34|2700|0|0|01|02000A1B|01|41F00000|| +38|2023-10-06T20:25:57.6060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5200|10000|0||116.71|85.76|0.00|-1.34|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:25:57.3590000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:25:57.7830000-07:00|40022550|Zeromus|0001ACA2|20746253||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:57.7830000-07:00|10FF0001|Sesuga Sapisuga|0001ACA2|89453|89453|8100|10000|0||114.67|91.90|0.00|-1.74|1300|0|0|0| +261|2023-10-06T20:25:57.3590000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:25:57.8280000-07:00|40022550|Zeromus|0001ACA4|20744964||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:57.9180000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|3F980000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|20744964|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5200|10000|||116.14|86.28|0.00|-1.10|0001ACA8|0|1| +38|2023-10-06T20:25:57.9180000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5200|10000|0||116.14|86.28|0.00|-1.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:25:57.9180000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +26|2023-10-06T20:25:57.9180000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:25:57.9180000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:25:57.9620000-07:00|40022550|Zeromus|0001ACA5|20742719||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:57.9620000-07:00|10FF0005|Wuwuchu Wuchu|0001ACA5|63038|63038|5200|10000|0||116.14|86.28|0.00|-1.10|2700|0|0|01|02000A1C|0|C2700000|| +261|2023-10-06T20:25:57.6470000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:25:58.0070000-07:00|40022550|Zeromus|0001ACA6|20739793||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:58.0070000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|8300|10000|||112.52|93.18|0.00|-1.86| +21|2023-10-06T20:25:58.0510000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20742719|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6500|10000|||113.77|93.11|0.00|-2.14|0001ACA9|0|1| +24|2023-10-06T20:25:58.1870000-07:00|40022550|Zeromus|DoT|0|22E7|20739793|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:25:58.1870000-07:00|40022550|Zeromus|005A5A00|20730858|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:25:58.1870000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +21|2023-10-06T20:25:58.2310000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36F80000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|20739793|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|5020|10000|||118.27|89.46|0.00|-2.05|0001ACAA|0|1| +261|2023-10-06T20:25:57.8770000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:25:58.2760000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|20730858|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|5550|10000|||118.15|84.95|0.00|-1.83|0001ACAB|0|1| +38|2023-10-06T20:25:58.2760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5550|10000|0||118.15|84.95|0.00|-1.83|0|0|0||||||||||||||||||| +26|2023-10-06T20:25:58.2760000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +38|2023-10-06T20:25:58.2760000-07:00|400229CE|Carbuncle|005A5A00|0|53095|0|10000|0||119.80|85.98|0.00|2.89|0|0|0|||||||||||||||| +30|2023-10-06T20:25:58.2760000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400229CE|Carbuncle|00|53095|51159| +261|2023-10-06T20:25:57.8770000-07:00|Change|400229CE||||||||| +38|2023-10-06T20:25:58.3210000-07:00|40022A10||005A5A00|53095|53095|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T20:25:58.3210000-07:00|40022A10||005A5A00|53095|53095|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T20:25:58.3210000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E6B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89994|89994|6800|10000|||112.91|87.44|0.00|-1.13|20730858|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001ACAC|0|1| +36|2023-10-06T20:25:58.3210000-07:00|594C|3| +261|2023-10-06T20:25:58.0030000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:25:58.0030000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:25:58.4110000-07:00|40022550|Zeromus|0001ACA8|20714578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:58.4110000-07:00|10FF0005|Wuwuchu Wuchu|0001ACA8|63038|63038|5200|10000|0||114.31|88.08|0.00|-2.08|2700|0|0|01|02000A1C|0|42700000|| +21|2023-10-06T20:25:58.4110000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|10470000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|20730858|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|6800|10000|||112.91|87.44|0.00|-1.13|0001ACAD|0|1| +38|2023-10-06T20:25:58.4110000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5200|10000|0||114.31|88.08|0.00|-2.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:25:58.4550000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|720003|DC40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20714578|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6500|10000|||112.88|93.65|0.00|-2.10|0001ACAE|0|1| +39|2023-10-06T20:25:58.4990000-07:00|10FF0006|Wowobora Gogobora|56517|56517|4825|10000|||118.27|89.47|-0.02|-1.96| +21|2023-10-06T20:25:58.4990000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20714578|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5200|10000|||111.65|93.38|0.00|-1.53|0001ACAF|0|1| +37|2023-10-06T20:25:58.5880000-07:00|40022550|Zeromus|0001ACA9|20714577||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:58.5880000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|1FA30000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|20714578|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5200|10000|||110.88|93.42|0.00|-1.52|0001ACB0|0|1| +38|2023-10-06T20:25:58.5880000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5200|10000|0||110.88|93.42|0.00|-1.52|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:25:58.5880000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:25:58.5880000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:25:58.2280000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:25:58.2280000-07:00|Add|40022A10||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:25:58.2280000-07:00|40022A10|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|53095|53095|10000|10000|||118.16|84.97|0.00|-1.83| +261|2023-10-06T20:25:58.3230000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:25:58.3230000-07:00|Change|40022A10||||| +24|2023-10-06T20:25:58.8990000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15FA|89994|89994|6800|10000|||111.91|89.06|0.00|-1.54|10FF0006|Wowobora Gogobora|0|56517|56517|4825|10000|||117.54|90.14|0.00|-1.05| +37|2023-10-06T20:25:58.8990000-07:00|40022550|Zeromus|0001ACAA|20700505||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:25:58.9000000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|5400|10000|||111.08|89.43|0.00|-1.96| +21|2023-10-06T20:25:58.9000000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20714577|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|5550|10000|||117.79|85.21|0.00|-1.23|0001ACB1|0|1| +38|2023-10-06T20:25:58.9000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|6800|10000|0||111.91|89.06|0.00|-1.54|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:25:58.9000000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +37|2023-10-06T20:25:58.9450000-07:00|40022550|Zeromus|0001ACAD|20696338||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:58.9450000-07:00|10FF0008|Kokosaze Lulusaze|1D8A|Lucid Dreaming|10FF0008|Kokosaze Lulusaze|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|5550|10000|||117.79|85.21|0.00|-1.23|55377|55377|5550|10000|||117.79|85.21|0.00|-1.23|0001ACB2|0|1| +37|2023-10-06T20:25:58.9890000-07:00|40022550|Zeromus|0001ACA7|20680430||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:25:58.9890000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|21A50000|4|1B2D8000|0|0|0|0|0|0|0|0|0|0|0|0|20696338|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8300|10000|||107.60|95.19|0.00|-2.05|0001ACB3|0|1| +38|2023-10-06T20:25:58.9890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7300|10000|0||107.60|95.19|0.00|-2.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:58.9890000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +37|2023-10-06T20:25:59.0340000-07:00|40022550|Zeromus|0001ACAF|20678269||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:59.0340000-07:00|10FF0002|Suchichi Suchi|0001ACAF|63089|63089|5200|10000|0||109.28|94.71|0.00|-1.70|1600|0|0|01|05000323|0|C1F00000|| +39|2023-10-06T20:25:59.0340000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|5750|10000|||117.15|85.70|0.00|-0.91| +261|2023-10-06T20:25:58.6080000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:25:59.0780000-07:00|40022550|Zeromus|0001ACAE|20674745||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:58.6080000-07:00|Change|10FF0005||||||||||| +37|2023-10-06T20:25:59.1210000-07:00|10FF0007|Kehabiqo Febiqo|0001ACAC|74015||||||111.96|89.04|0.00|-1.81| +37|2023-10-06T20:25:59.2120000-07:00|40022550|Zeromus|0001ACB0|20666646||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:25:59.2120000-07:00|10FF0002|Suchichi Suchi|0001ACB0|63089|63089|5200|10000|0||108.97|95.01|0.00|-1.59|1600|0|0|01|05000323|0|41F00000|| +38|2023-10-06T20:25:59.2120000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5200|10000|0||108.97|95.01|0.00|-1.59|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:25:59.2570000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|722003|1CEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20674745|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6500|10000|||110.69|94.02|0.00|-2.42|0001ACB4|0|1| +37|2023-10-06T20:25:59.3010000-07:00|10FF0008|Kokosaze Lulusaze|0001ACAB|55377|55377|5750|10000|0||116.19|86.45|0.00|-0.91|1B00|0|0|01|02000AA4|0|0|| +38|2023-10-06T20:25:59.3010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|5750|10000|0||116.19|86.45|0.00|-0.91|0|0|0||||||||||||||||||| +261|2023-10-06T20:25:58.8420000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:25:58.9550000-07:00|Change|40022A10||| +37|2023-10-06T20:25:59.4340000-07:00|40022550|Zeromus|0001ACB1|20666461||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:25:59.0730000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:25:59.0730000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:25:59.5680000-07:00|10FF0008|Kokosaze Lulusaze|0001ACB2|55377|55377|5750|10000|0||116.14|86.49|0.00|-0.91|1B00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T20:25:59.5680000-07:00|4B4|Lucid Dreaming|21.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +21|2023-10-06T20:25:59.5680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20666461|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7300|10000|||104.45|96.04|0.00|-2.17|0001ACB5|0|1| +31|2023-10-06T20:25:59.5680000-07:00|10FF0001||||| +261|2023-10-06T20:25:59.2870000-07:00|Change|10FF0006||||||||| +38|2023-10-06T20:25:59.7010000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|7050|10000|0||110.00|94.81|0.00|-2.55|0|0|0|||||||||||||||| +261|2023-10-06T20:25:59.2870000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:25:59.7460000-07:00|40022550|Zeromus|0001ACB3|20657848||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:25:59.7460000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|114.19|92.85|0.00|-0.98| +37|2023-10-06T20:25:59.8350000-07:00|40022550|Zeromus|0001ACB4|20650446||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:25:59.9690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|11303|56517|2000|10000|0||118.35|86.77|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:25:59.9690000-07:00|94|Raise|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|08|56517|55377| +261|2023-10-06T20:25:59.4900000-07:00|Change|10FF0004||| +26|2023-10-06T20:25:59.9690000-07:00|2B|Weakness|100.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +26|2023-10-06T20:25:59.9690000-07:00|1A2|Transcendent|5.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +261|2023-10-06T20:25:59.5830000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:00.1020000-07:00|40022550|Zeromus|0001ACB5|20649097||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:00.1020000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|750003|467A0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|20650446|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|7050|10000|||108.71|96.32|0.00|-1.86|0001ACB6|0|1| +261|2023-10-06T20:25:59.6800000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:26:00.2360000-07:00|10FF0007|Kehabiqo Febiqo|74914|89994|7000|10000|||106.45|94.48|0.00|-1.66| +21|2023-10-06T20:26:00.2360000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11303|56517|2000|10000|||118.35|86.77|0.00|0.00|11303|56517|2000|10000|||118.35|86.77|0.00|0.00|0001ACB7|0|1| +38|2023-10-06T20:26:00.2360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|11303|56517|2000|10000|0||118.35|86.77|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:00.2360000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +30|2023-10-06T20:26:00.2360000-07:00|1A2|Transcendent|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:26:00.2360000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6650|10000|0||108.07|96.94|0.00|-2.60|0|0|0|||||||||||||||| +30|2023-10-06T20:26:00.2360000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:25:59.9090000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:26:00.0190000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:26:00.3710000-07:00|40022A10|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|152003|9A2D0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|53095|53095|10000|10000|||118.16|84.97|0.00|-1.83|0001ACB8|0|1| +39|2023-10-06T20:26:00.3710000-07:00|10FF0003|Gegehi Gehi|51159|51159|6850|10000|||106.29|98.12|0.00|-1.79| +21|2023-10-06T20:26:00.3710000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|710003|2AED0000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5400|10000|||109.09|93.43|0.00|-2.57|0001ACB9|0|1| +261|2023-10-06T20:26:00.0190000-07:00|Change|400229CE||| +261|2023-10-06T20:26:00.0190000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:26:00.0190000-07:00|Change|4002256C||||||||| +20|2023-10-06T20:26:00.4590000-07:00|40022550|Zeromus|8B4D|Big Crunch|40022550|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:26:00.4590000-07:00|4002256C|Zeromus|8D32|Big Crunch|10FF0001|Sesuga Sapisuga|4.700|106.25|102.31|0.00|2.08| +27|2023-10-06T20:26:00.4590000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:26:00.4590000-07:00|4002256D|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:00.4590000-07:00|4002256E|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|80.10|0.00|1.66| +39|2023-10-06T20:26:00.4590000-07:00|10FF0002|Suchichi Suchi|63089|63089|5400|10000|||102.99|97.42|0.00|-1.97| +261|2023-10-06T20:26:00.0190000-07:00|Change|4002256D||||||||||| +261|2023-10-06T20:26:00.0190000-07:00|Change|40022550||||||||||||| +38|2023-10-06T20:26:00.5500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6300|10000|0||110.94|90.54|0.00|-0.91|0|0|0||||||||||||||||||| +20|2023-10-06T20:26:00.5940000-07:00|40022569|Zeromus|8D32|Big Crunch|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:26:00.5940000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:26:00.5940000-07:00|4002256A|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:00.5940000-07:00|4002256B|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:26:00.1360000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:26:00.1360000-07:00|Change|4002256B||||||||||| +261|2023-10-06T20:26:00.1360000-07:00|Change|4002256A||||||||||| +261|2023-10-06T20:26:00.1360000-07:00|Change|40022566||||||||| +21|2023-10-06T20:26:00.6380000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|BCD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5400|10000|||109.09|93.43|0.00|-2.54|0001ACBA|0|1| +20|2023-10-06T20:26:00.6830000-07:00|40022566|Zeromus|8D32|Big Crunch|10FF0002|Suchichi Suchi|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:26:00.6830000-07:00|10FF0002|Suchichi Suchi|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:26:00.6830000-07:00|40022567|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:00.6830000-07:00|40022568|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T20:26:00.6830000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|49630000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|4825|10000|||113.97|93.00|0.00|-2.32|0001ACBB|0|1| +261|2023-10-06T20:26:00.2340000-07:00|Change|40022567||||||||||| +261|2023-10-06T20:26:00.2340000-07:00|Change|40022568||||||||||| +261|2023-10-06T20:26:00.2340000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:26:00.7270000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6850|10000|0||104.88|98.94|0.00|-1.35|0|0|0||||||||||||| +30|2023-10-06T20:26:00.7270000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +20|2023-10-06T20:26:00.7720000-07:00|40022563|Zeromus|8D32|Big Crunch|10FF0005|Wuwuchu Wuchu|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:26:00.7720000-07:00|10FF0005|Wuwuchu Wuchu|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:26:00.7720000-07:00|40022564|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:00.7720000-07:00|40022565|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T20:26:00.7720000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|150003|451F0000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6300|10000|||109.75|91.45|0.00|-0.91|0001ACBC|0|1| +38|2023-10-06T20:26:00.7720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6300|10000|0||109.75|91.45|0.00|-0.91|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:00.7720000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|55377|55377| +261|2023-10-06T20:26:00.3270000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:26:00.3270000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:26:00.3270000-07:00|Change|40022565||||||||||| +37|2023-10-06T20:26:00.8610000-07:00|10FF0004|Buhojaqe Zijaqe|0001ACB7|11303|56517|2000|10000|0||117.86|87.14|0.00|-0.50|1C00|0|0|01|03000768|0|41700000|| +20|2023-10-06T20:26:00.8610000-07:00|40022560|Zeromus|8D32|Big Crunch|10FF0006|Wowobora Gogobora|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:26:00.8610000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:26:00.8610000-07:00|40022561|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:00.8610000-07:00|40022562|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:26:00.4200000-07:00|Change|40022560||||||||||||| +261|2023-10-06T20:26:00.4200000-07:00|Change|40022561||||||||||| +261|2023-10-06T20:26:00.4200000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:26:00.4200000-07:00|Change|10FF0007||||||||||| +21|2023-10-06T20:26:00.8610000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|18BC0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|74914|89994|7000|10000|||102.91|96.45|0.00|-2.63|0001ACBD|0|1| +21|2023-10-06T20:26:00.8610000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|A6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|74914|89994|7000|10000|||102.91|96.45|0.00|-2.63|0001ACBE|0|1| +38|2023-10-06T20:26:00.8610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|74914|89994|7000|10000|0||102.91|96.45|0.00|-2.63|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:00.8610000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|89994|51159| +38|2023-10-06T20:26:00.8610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|11303|56517|2000|10000|0||117.86|87.14|0.00|-0.50|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:26:00.4200000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:26:00.4200000-07:00|Change|4002256E||||||||||| +21|2023-10-06T20:26:00.9060000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|724003|11910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6850|10000|||104.30|99.20|0.00|-1.31|0001ACBF|0|1| +261|2023-10-06T20:26:00.4200000-07:00|Change|10FF0008||||||||||| +20|2023-10-06T20:26:00.9960000-07:00|4002255D|Zeromus|8D32|Big Crunch|10FF0003|Gegehi Gehi|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:26:00.9960000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:26:00.9960000-07:00|4002255E|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:00.9960000-07:00|4002255F|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +39|2023-10-06T20:26:00.9960000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|7500|10000|||101.46|97.33|0.00|-3.02| +261|2023-10-06T20:26:00.5170000-07:00|Change|4002255D||||||||||||| +38|2023-10-06T20:26:00.9960000-07:00|40022A10|Ruby Ifrit|005A5A00|0|53095|10000|10000|0||118.16|84.97|0.00|-1.83|0|0|0|||||||||| +26|2023-10-06T20:26:00.9960000-07:00|30|Well Fed|2098.39|10FF0008|Kokosaze Lulusaze|40022A10|Ruby Ifrit|2964|53095|55377| +26|2023-10-06T20:26:00.9960000-07:00|441|HP Penalty|9999.00|E0000000||40022A10|Ruby Ifrit|00|53095|| +38|2023-10-06T20:26:00.9960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6300|10000|0||108.64|92.35|0.00|-2.57|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:00.9960000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|55377|51159| +261|2023-10-06T20:26:00.5170000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:26:00.5170000-07:00|Change|4002255F||||||||||| +261|2023-10-06T20:26:00.5170000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:26:01.0400000-07:00|10FF0004|Buhojaqe Zijaqe|1D0A|Excogitation|10FF0004|Buhojaqe Zijaqe|32E8DB0E|4C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11303|56517|2000|10000|||117.63|87.31|-0.02|-0.67|11303|56517|2000|10000|||117.63|87.31|-0.02|-0.67|0001ACC0|0|1| +38|2023-10-06T20:26:01.0400000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|11303|56517|2000|10000|0||117.63|87.31|-0.02|-0.67|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:01.0400000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +20|2023-10-06T20:26:01.0850000-07:00|4002255B|Zeromus|8D32|Big Crunch|10FF0004|Buhojaqe Zijaqe|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:26:01.0850000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:26:01.0850000-07:00|4002255C|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T20:26:01.0850000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A724003|353E0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5400|10000|||100.34|98.46|0.00|-2.18|0001ACC1|0|1| +261|2023-10-06T20:26:00.6370000-07:00|Change|4002255B||||||||||| +38|2023-10-06T20:26:01.0850000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5400|10000|0||100.34|98.46|0.00|-2.18|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:01.0850000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +30|2023-10-06T20:26:01.0850000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:26:00.6370000-07:00|Change|4002255C||||||||||| +261|2023-10-06T20:26:00.6370000-07:00|Change|40022566||||||||||||| +38|2023-10-06T20:26:01.1280000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5400|10000|0||100.34|98.46|0.00|-2.18|0|0|0|||||||||||||||| +30|2023-10-06T20:26:01.1280000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|63089|51159| +37|2023-10-06T20:26:01.1730000-07:00|40022550|Zeromus|0001ACBA|20646076||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:26:01.1730000-07:00|40022559|Zeromus|8D32|Big Crunch|10FF0007|Kehabiqo Febiqo|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T20:26:01.1730000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +20|2023-10-06T20:26:01.1730000-07:00|4002255A|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +24|2023-10-06T20:26:01.1730000-07:00|40022550|Zeromus|DoT|0|1B2E|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T20:26:01.1730000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|716003|502F0000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5400|10000|||109.09|93.43|0.00|-2.52|0001ACC2|0|1| +38|2023-10-06T20:26:01.1730000-07:00|40022550|Zeromus|005A5A00|20639118|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:01.1730000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:26:01.1730000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5400|10000|0||109.09|93.43|0.00|-2.52|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:01.1730000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +261|2023-10-06T20:26:00.7560000-07:00|Change|40022559||||||||||||| +261|2023-10-06T20:26:00.7560000-07:00|Change|4002255A||||||||||| +21|2023-10-06T20:26:01.2170000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20649097|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|4425|10000|||113.97|93.02|0.00|-1.40|0001ACC3|0|1| +20|2023-10-06T20:26:01.2620000-07:00|40022558|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T20:26:01.2620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5400|10000|0||109.09|93.43|0.00|-2.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:01.2620000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|63038|51159| +261|2023-10-06T20:26:00.8670000-07:00|Change|40022558||||||||||| +21|2023-10-06T20:26:01.3060000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|CFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20639118|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5400|10000|||100.20|98.56|0.00|-3.12|0001ACC4|0|1| +24|2023-10-06T20:26:01.3520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1570|74914|89994|7000|10000|||101.25|97.06|-0.02|-3.07|10FF0006|Wowobora Gogobora|0|56517|56517|4425|10000|||113.97|93.03|0.00|-1.08| +37|2023-10-06T20:26:01.3520000-07:00|40022550|Zeromus|0001ACBB|20620331||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:26:01.3520000-07:00|5A28|3| +38|2023-10-06T20:26:01.3520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80402|89994|7000|10000|0||101.25|97.06|-0.02|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:01.3520000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +37|2023-10-06T20:26:01.3960000-07:00|40022550|Zeromus|0001ACBE|20617661||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:00.9780000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:26:00.9780000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:26:01.3970000-07:00|40022550|Zeromus|0001ACB9|20606672||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:01.3970000-07:00|10FF0005|Wuwuchu Wuchu|0001ACB9|63038|63038|5400|10000|0||109.04|93.47|0.00|-2.57|2700|0|0|01|05000A1B|01|C1F00000|| +20|2023-10-06T20:26:01.3970000-07:00|40022557|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T20:26:01.3970000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|4425|10000|0||113.43|93.44|0.00|-1.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:01.3970000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:26:01.3970000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|56517|51159| +261|2023-10-06T20:26:00.9780000-07:00|Change|40022557||||||||||| +37|2023-10-06T20:26:01.4860000-07:00|40022550|Zeromus|0001ACBD|20600340||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:26:01.4860000-07:00|40022556|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +39|2023-10-06T20:26:01.4860000-07:00|10FF0006|Wowobora Gogobora|56517|56517|4630|10000|||113.43|93.44|0.00|-1.01| +21|2023-10-06T20:26:01.4860000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|10540000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|20620331|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7500|10000|||101.46|97.33|0.00|-3.06|0001ACC5|0|1| +261|2023-10-06T20:26:01.0950000-07:00|Change|40022556||||||||||| +37|2023-10-06T20:26:01.5300000-07:00|40022550|Zeromus|0001ACBF|20595843||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:01.5300000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20600340|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6850|10000|||103.31|99.64|0.00|-3.02|0001ACC6|0|1| +38|2023-10-06T20:26:01.5300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7500|10000|0||101.46|97.33|0.00|3.01|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:01.5300000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|89453|51159| +20|2023-10-06T20:26:01.5740000-07:00|40022555|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:26:01.1910000-07:00|Change|40022555||||||||||| +37|2023-10-06T20:26:01.6180000-07:00|40022550|Zeromus|0001ACBC|20578148||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:01.6180000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|724003|161D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20595843|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6850|10000|||103.00|99.77|0.00|-3.02|0001ACC7|0|1| +261|2023-10-06T20:26:01.2900000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:26:01.7080000-07:00|40022550|Zeromus|0001ACC2|20557621||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:01.7080000-07:00|10FF0005|Wuwuchu Wuchu|0001ACC2|63038|63038|5400|10000|0||108.29|93.53|0.00|-2.44|2700|0|0|01|05000A1B|01|41F00000|| +38|2023-10-06T20:26:01.7080000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5400|10000|0||108.29|93.53|0.00|-2.44|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:01.7520000-07:00|40022550|Zeromus|0001ACC1|20543991||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:01.7520000-07:00|10FF0002|Suchichi Suchi|0001ACC1|63089|63089|5400|10000|0||99.81|98.77|0.00|-3.06|1600|0|0|01|0747|0|41F00000|| +37|2023-10-06T20:26:01.7520000-07:00|40022550|Zeromus|0001ACC3|20543954||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:01.7520000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|722003|29BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20578148|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5400|10000|||99.81|98.77|0.00|-3.06|0001ACC8|0|1| +38|2023-10-06T20:26:01.7520000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5400|10000|0||99.81|98.77|0.00|-3.06|0|0|0|||||||||||||||| +37|2023-10-06T20:26:01.8410000-07:00|40022550|Zeromus|0001ACC4|20540629||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:01.8410000-07:00|10FF0004|Buhojaqe Zijaqe|0001ACC0|11303|56517|2000|10000|0||114.63|89.87|0.00|-0.87|1C00|0|0|01|030004C4|32|0|| +26|2023-10-06T20:26:01.8410000-07:00|4C4|Excogitation|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|32|56517|56517| +261|2023-10-06T20:26:01.3800000-07:00|Change|10FF0004||||||||| +24|2023-10-06T20:26:01.8420000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C4|7D01|11303|56517|2000|10000|||114.63|89.87|0.00|-0.87|10FF0004|Buhojaqe Zijaqe|1|11303|56517|2000|10000|||114.63|89.87|0.00|-0.87| +21|2023-10-06T20:26:01.8420000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20543954|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7500|10000|||101.66|95.92|0.00|2.97|0001ACC9|0|1| +38|2023-10-06T20:26:01.8420000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|43304|56517|2000|10000|0||114.63|89.87|0.00|-0.87|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:01.8420000-07:00|4C4|Excogitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|32|56517|56517| +31|2023-10-06T20:26:01.8420000-07:00|10FF0001||||| +261|2023-10-06T20:26:01.4710000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:26:01.8850000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|5600|10000|||106.97|93.32|0.00|-2.13| +37|2023-10-06T20:26:01.9310000-07:00|40022550|Zeromus|0001ACB6|20522587||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:01.4710000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:26:02.0200000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|6500|10000|||107.82|95.73|-0.01|0.06| +37|2023-10-06T20:26:02.0650000-07:00|40022550|Zeromus|0001ACC6|20522586||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:02.0650000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20522587|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6300|10000|||107.82|95.73|-0.01|0.06|0001ACCA|0|1| +37|2023-10-06T20:26:02.1090000-07:00|40022550|Zeromus|0001ACC5|20518406||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:02.1540000-07:00|10FF0004|Buhojaqe Zijaqe|43869|56517|2200|10000|||113.00|91.30|0.00|-0.82| +261|2023-10-06T20:26:01.6620000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:26:02.1990000-07:00|40022550|Zeromus|0001ACC7|20512745||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:02.1990000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|4630|10000|0||108.65|96.70|0.00|-1.09|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:02.1990000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:26:02.1990000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|4630|10000|||108.65|96.70|0.00|-1.09|56517|56517|4630|10000|||108.65|96.70|0.00|-1.09|0001ACCB|0|1| +37|2023-10-06T20:26:02.3340000-07:00|40022550|Zeromus|0001ACB8|20473276||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:26:01.8930000-07:00|400229CE|Carbuncle|00|5A|10FF0008|00||10261|13498|0|53095|0|10000|||119.80|85.98|0.00|2.89| +261|2023-10-06T20:26:01.8930000-07:00|Remove|400229CE| +37|2023-10-06T20:26:02.3790000-07:00|40022550|Zeromus|0001ACC8|20462591||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:02.3790000-07:00|40022550|Zeromus|0001ACC9|20461274||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0004|Buhojaqe Zijaqe|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|0001ACCC|0|8| +22|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0008|Kokosaze Lulusaze|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|6500|10000|||108.51|96.46|0.00|0.83|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|0001ACCC|1|8| +22|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0006|Wowobora Gogobora|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|4630|10000|||108.13|96.93|0.00|-1.16|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|0001ACCC|2|8| +22|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0001|Sesuga Sapisuga|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|7500|10000|||102.30|92.79|0.00|2.92|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|0001ACCC|3|8| +22|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0005|Wuwuchu Wuchu|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|5600|10000|||104.48|92.49|0.00|-1.99|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|0001ACCC|4|8| +22|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0003|Gegehi Gehi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|6850|10000|||102.58|100.43|0.00|-1.39|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|0001ACCC|5|8| +22|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0002|Suchichi Suchi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|5400|10000|||99.79|98.77|0.00|3.14|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|0001ACCC|6|8| +22|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0007|Kehabiqo Febiqo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|80402|89994|7000|10000|||95.64|96.43|0.00|-2.82|43869|56517|2200|10000|||112.77|92.64|0.00|-0.49|0001ACCC|7|8| +38|2023-10-06T20:26:02.3790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80402|89994|7000|10000|0||95.64|96.43|0.00|-2.82|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:02.3790000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +26|2023-10-06T20:26:02.3790000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|89994|56517| +38|2023-10-06T20:26:02.3790000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5400|10000|0||99.79|98.77|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:02.3790000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:26:02.3790000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|1E|63089|56517| +38|2023-10-06T20:26:02.3790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6500|10000|0||108.51|96.46|0.00|0.83|0|0|0||||||||||||||||||| +26|2023-10-06T20:26:02.3790000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|55377|56517| +26|2023-10-06T20:26:02.3790000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|55377|56517| +38|2023-10-06T20:26:02.3790000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|4630|10000|0||108.13|96.93|0.00|-1.16|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:02.3790000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:26:02.3790000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|56517|56517| +38|2023-10-06T20:26:02.3790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7500|10000|0||102.30|92.79|0.00|2.92|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:02.3790000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:26:02.3790000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|89453|56517| +38|2023-10-06T20:26:02.3790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|43869|56517|2200|10000|0||112.77|92.64|0.00|-0.49|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:02.3790000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:26:02.3790000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|56517|56517| +261|2023-10-06T20:26:01.8930000-07:00|Change|10FF0004||||||||||||| +38|2023-10-06T20:26:02.3790000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6850|10000|0||102.58|100.43|0.00|-1.39|0|0|0|||||||||||||||| +26|2023-10-06T20:26:02.3790000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +26|2023-10-06T20:26:02.3790000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|51159|56517| +38|2023-10-06T20:26:02.3790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5600|10000|0||104.48|92.49|0.00|-1.99|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:02.3790000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +26|2023-10-06T20:26:02.3790000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|1E|63038|56517| +261|2023-10-06T20:26:01.8930000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:26:02.1420000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:26:02.1420000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:02.6030000-07:00|40022550|Zeromus|0001ACCA|20461098||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:02.6030000-07:00|10FF0008|Kokosaze Lulusaze|0001ACCA|55377|55377|6500|10000|0||108.64|97.78|0.00|0.39|1B00|0|0|02|02000A97|0|C1A00000|||||| +21|2023-10-06T20:26:02.6030000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|754003|5F3B0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|20461274|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6850|10000|||103.12|101.35|0.00|0.00|0001ACCD|0|1| +261|2023-10-06T20:26:02.1420000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T20:26:02.6460000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5400|10000|0||99.45|98.54|0.00|-3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:02.6930000-07:00|10FF0006|Wowobora Gogobora|0001ACCB|56517|56517|4630|10000|0||106.14|97.52|0.00|-1.25|2800|0|0|02|03000A97|0|C1A00000|||||| +38|2023-10-06T20:26:02.6930000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6450|10000|0||103.59|102.12|0.00|-2.95|0|0|0|||||||||||||||| +261|2023-10-06T20:26:02.2380000-07:00|Change|10FF0005||||||||| +38|2023-10-06T20:26:02.8690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7500|10000|0||103.95|90.24|0.00|2.70|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:26:02.8690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|43869|56517|2200|10000|0||112.66|94.35|0.00|-0.11|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:26:02.9580000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|2CE70000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|20461098|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5600|10000|||100.33|90.88|0.00|-1.95|0001ACCE|0|1| +38|2023-10-06T20:26:02.9580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5600|10000|0||100.33|90.88|0.00|-1.95|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:02.9580000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +30|2023-10-06T20:26:02.9580000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|63038|63038| +26|2023-10-06T20:26:02.9580000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +37|2023-10-06T20:26:03.0040000-07:00|10FF0004|Buhojaqe Zijaqe|0001ACCC|43869|56517|2200|10000|0||113.48|96.16|0.00|0.21|1C00|0|0|02|03000A97|0|41A00000|||||| +38|2023-10-06T20:26:03.0040000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|4630|10000|0||103.90|97.48|0.00|-1.49|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:03.0040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|43869|56517|2200|10000|0||113.48|96.16|0.00|0.21|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:26:02.6570000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:26:03.1350000-07:00|10FF0008|Kokosaze Lulusaze|0001ACCC|55377|55377|6500|10000|0||106.98|100.17|-0.02|-0.75|1B01|0|0|02|02000A97|0|41A00000|||||| +38|2023-10-06T20:26:03.1350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6500|10000|0||106.98|100.17|-0.02|-0.75|0|0|0||||||||||||||||||| +261|2023-10-06T20:26:02.7770000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:26:02.7770000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:26:03.2250000-07:00|10FF0007|Kehabiqo Febiqo|81301|89994|7200|10000|||92.59|91.55|0.00|-3.00| +21|2023-10-06T20:26:03.2250000-07:00|10FF0008|Kokosaze Lulusaze|651D|Crimson Strike|40022550|Zeromus|150003|46CA0000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|20461098|40478540|10000|10000|||100.00|80.10|0.00|0.00|55377|55377|6500|10000|||106.60|100.89|0.00|-0.70|0001ACCF|0|1| +22|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|CDE0000|2C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|0001ACD0|0|8| +22|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|C5F0000|960E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|63089|63089|5400|10000|||101.36|98.25|0.00|2.96|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|0001ACD0|1|8| +22|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|200004|14DA0000|B90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|55377|55377|6500|10000|||106.60|100.89|0.00|-0.70|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|0001ACD0|2|8| +22|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|200004|14B70000|490E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|89453|89453|7500|10000|||106.57|88.59|0.00|2.49|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|0001ACD0|3|8| +22|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|C750000|DC0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|63038|63038|5600|10000|||98.65|90.22|0.00|3.04|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|0001ACD0|4|8| +22|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|C7A0000|EC0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|51159|51159|6450|10000|||105.48|105.56|0.00|1.15|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|0001ACD0|5|8| +22|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|CBB0000|BC0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|43869|56517|2200|10000|||114.13|98.05|0.00|0.38|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|0001ACD0|6|8| +22|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|200004|15000000|330E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80402|89994|7000|10000|||92.59|91.55|0.00|-3.00|56517|56517|4630|10000|||103.26|97.45|0.00|-1.50|0001ACD0|7|8| +38|2023-10-06T20:26:03.2260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81301|89994|7200|10000|19||92.59|91.55|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:03.2260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:26:03.2260000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5400|10000|16||101.36|98.25|0.00|2.96|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:03.2260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:26:03.2260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|6500|10000|30||106.60|100.89|0.00|-0.70|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:03.2260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +38|2023-10-06T20:26:03.2260000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|3730|10000|18||103.26|97.45|0.00|-1.50|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:03.2260000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:26:03.2260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:26:03.2260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7500|10000|18||106.57|88.59|0.00|2.49|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:03.2260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:26:03.2260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|43869|56517|2200|10000|18||114.13|98.05|0.00|0.38|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:03.2260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:26:03.2260000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6450|10000|19||105.48|105.56|0.00|1.15|0|0|0||||||||||||||||||| +26|2023-10-06T20:26:03.2260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:26:03.2260000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5600|10000|16||98.65|90.22|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:03.2260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:26:03.2690000-07:00|10FF0006|Wowobora Gogobora|0001ACCC|56517|56517|3730|10000|18||103.26|97.45|0.00|-1.50|2802|0|0|02|03000A97|0|41A00000|||||| +38|2023-10-06T20:26:03.2690000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|3730|10000|18||103.26|97.45|0.00|-1.50|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:02.7770000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:26:02.7770000-07:00|Change|10FF0007||||||||||| +21|2023-10-06T20:26:03.3130000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|24B90000|143E|340000|200004|1CC88000|11B|2A8000|0|0|0|0|0|0|0|0|20461098|40478540|10000|10000|||100.00|80.10|0.00|0.00|81301|89994|7200|10000|||92.44|90.74|0.00|-3.00|0001ACD1|0|1| +261|2023-10-06T20:26:03.0040000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:26:03.3590000-07:00|10FF0003|Gegehi Gehi|51159|51159|6650|10000|||106.28|107.20|0.00|0.79| +37|2023-10-06T20:26:03.4020000-07:00|10FF0001|Sesuga Sapisuga|0001ACCC|89453|89453|7500|10000|18||107.62|87.20|0.00|2.49|1303|0|0|02|02000A97|0|41A00000|||||| +38|2023-10-06T20:26:03.4020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|7500|10000|18||107.62|87.20|0.00|2.49|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:03.4460000-07:00|40022550|Zeromus|0001ACCE|20449603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:03.4460000-07:00|10FF0005|Wuwuchu Wuchu|0001ACCE|63038|63038|5600|10000|16||97.04|90.51|0.00|-2.51|2700|0|0|03|05000A1D|0|42700000|||||||||| +39|2023-10-06T20:26:03.4460000-07:00|10FF0002|Suchichi Suchi|63089|63089|5600|10000|||102.92|97.31|0.00|2.91| +38|2023-10-06T20:26:03.4460000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5600|10000|16||97.04|90.51|0.00|-2.51|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:03.0040000-07:00|Change|10FF0002||||||||||| +37|2023-10-06T20:26:03.5360000-07:00|10FF0005|Wuwuchu Wuchu|0001ACCC|63038|63038|5600|10000|16||96.38|90.45|0.00|-2.26|2704|0|0|02|06000A97|0|41A00000|||||| +38|2023-10-06T20:26:03.5360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81301|89994|7200|10000|19||92.00|89.25|0.00|2.55|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:03.5360000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:26:03.5360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7050|10000|30||105.83|102.41|0.00|-2.87|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:26:03.5360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5600|10000|16||96.38|90.45|0.00|-2.26|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:03.1250000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:26:03.5790000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|2D580000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|20449603|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5600|10000|||103.55|96.57|0.00|2.91|0001ACD2|0|1| +38|2023-10-06T20:26:03.5790000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5600|10000|16||103.55|96.57|0.00|2.91|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:03.5790000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:26:03.6690000-07:00|10FF0003|Gegehi Gehi|0001ACCC|51159|51159|6650|10000|19||107.03|108.84|0.00|0.59|2305|0|0|02|01000A97|0|41A00000|||||| +38|2023-10-06T20:26:03.6690000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6650|10000|19||107.03|108.84|0.00|0.59|0|0|0||||||||||||||||||| +261|2023-10-06T20:26:03.3110000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:26:03.8040000-07:00|10FF0002|Suchichi Suchi|0001ACCC|63089|63089|5600|10000|16||105.44|96.29|0.00|-2.84|1606|0|0|02|05000A97|0|41A00000|||||| +38|2023-10-06T20:26:03.8040000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5600|10000|16||105.44|96.29|0.00|-2.84|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:26:03.3110000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:26:03.8490000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|8D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20449603|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5600|10000|||95.45|89.63|0.00|-2.09|0001ACD3|0|1| +261|2023-10-06T20:26:03.4080000-07:00|Change|10FF0003||||||||||| +22|2023-10-06T20:26:03.8920000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|0001ACD4|0|8| +22|2023-10-06T20:26:03.8920000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|63038|63038|5600|10000|||95.11|89.80|0.00|-2.05|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|0001ACD4|1|8| +22|2023-10-06T20:26:03.8920000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|55377|55377|7050|10000|||105.45|103.11|0.00|-2.23|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|0001ACD4|2|8| +22|2023-10-06T20:26:03.8920000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|63089|63089|5600|10000|||106.21|96.21|-0.02|-2.84|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|0001ACD4|3|8| +22|2023-10-06T20:26:03.8920000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|81301|89994|7200|10000|||90.33|87.42|0.00|-3.14|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|0001ACD4|4|8| +22|2023-10-06T20:26:03.8920000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|89453|89453|7500|10000|||110.01|85.04|0.00|2.52|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|0001ACD4|5|8| +22|2023-10-06T20:26:03.8920000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|51159|51159|6650|10000|||107.86|110.58|0.00|0.50|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|0001ACD4|6|8| +22|2023-10-06T20:26:03.8920000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|43869|56517|2200|10000|||116.39|103.04|0.00|0.53|56517|56517|3730|10000|||102.02|97.68|-0.02|-1.27|0001ACD4|7|8| +37|2023-10-06T20:26:03.9380000-07:00|10FF0007|Kehabiqo Febiqo|0001ACCC|81301|89994|7200|10000|19||90.33|87.42|0.00|-3.14|1507|0|0|02|05000A97|0|41A00000|||||| +38|2023-10-06T20:26:03.9380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81301|89994|7200|10000|19||90.33|87.42|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:03.9820000-07:00|40022550|Zeromus|0001ACCF|20431481||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:03.9820000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35714003|1CF50000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|20449603|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7500|10000|||110.66|84.68|0.00|2.52|0001ACD5|0|1| +261|2023-10-06T20:26:03.5140000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:26:04.0270000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|7700|10000|||111.07|84.11|0.00|2.52| +21|2023-10-06T20:26:04.0270000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431481|40478540|10000|10000|||100.00|80.10|0.00|0.00|56517|56517|3730|10000|||100.29|98.07|0.00|-0.89|0001ACD6|0|1| +261|2023-10-06T20:26:03.7230000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:26:04.1160000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|112A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431481|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5600|10000|||105.41|96.30|0.00|-2.84|0001ACD7|0|1| +21|2023-10-06T20:26:04.1160000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|50A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431481|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|7700|10000|||111.07|84.11|0.00|2.52|0001ACD8|0|1| +31|2023-10-06T20:26:04.1160000-07:00|10FF0001||||| +37|2023-10-06T20:26:04.1610000-07:00|10FF0006|Wowobora Gogobora|0001ACD0|56517|56517|3730|10000|18||99.39|98.27|0.00|-0.89|2800|0|0|01|05000A31|0|41E8DF3A|| +37|2023-10-06T20:26:04.1610000-07:00|40022550|Zeromus|0001ACCD|20407102||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:04.2060000-07:00|40022550|Zeromus|0001ACD2|20395494||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:04.2060000-07:00|40022550|Zeromus|DoT|0|1EC3|20431481|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T20:26:04.2060000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40022550|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431481|40478540|10000|10000|||100.00|80.10|0.00|0.00|81301|89994|7200|10000|||88.45|86.05|0.00|-3.00|0001ACD9|0|1| +38|2023-10-06T20:26:04.2060000-07:00|40022550|Zeromus|005A5A00|20387619|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:04.2060000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +21|2023-10-06T20:26:04.2500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|8060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431481|40478540|10000|10000|||100.00|80.10|0.00|0.00|81301|89994|7200|10000|||88.45|86.05|0.00|-3.00|0001ACDA|0|1| +37|2023-10-06T20:26:04.2940000-07:00|10FF0002|Suchichi Suchi|0001ACD0|63089|63089|5600|10000|16||106.34|96.14|0.00|-2.87|1601|0|0|01|07000A31|0|41E7CCCB|| +36|2023-10-06T20:26:04.3390000-07:00|5B04|3| +261|2023-10-06T20:26:03.9480000-07:00|Remove|40022987| +37|2023-10-06T20:26:04.3820000-07:00|40022550|Zeromus|0001ACD3|20385356||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:03.9480000-07:00|Change|40022A10||||| +261|2023-10-06T20:26:03.9480000-07:00|Change|40022A10||||| +261|2023-10-06T20:26:03.9480000-07:00|Change|10FF0006||||||||| +38|2023-10-06T20:26:04.4280000-07:00|40022A53||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:26:04.4280000-07:00|40022A53||005A5A00|53095|53095|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T20:26:04.4280000-07:00|10FF0008|Kokosaze Lulusaze|0001ACD0|55377|55377|7050|10000|30||103.17|106.98|0.00|-0.71|1B02|0|0|01|06000A31|0|41E6BE75|| +261|2023-10-06T20:26:04.0640000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:26:04.5160000-07:00|10FF0006|Wowobora Gogobora|56517|56517|3935|10000|||97.58|99.89|0.00|-0.84| +261|2023-10-06T20:26:04.0640000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:26:04.5600000-07:00|40022550|Zeromus|0001ACD6|20385319||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:04.5600000-07:00|10FF0001|Sesuga Sapisuga|0001ACD0|89453|89453|7700|10000|18||111.07|84.11|0.00|2.52|1303|0|0|01|05000A31|0|41E5AC07|| +261|2023-10-06T20:26:04.1790000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:04.6510000-07:00|40022550|Zeromus|0001ACD7|20380925||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:04.6510000-07:00|40022550|Zeromus|0001ACD8|20379635||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:04.6940000-07:00|10FF0006|Wowobora Gogobora|0001ACD4|56517|56517|4635|10000|18||96.09|101.06|0.00|-0.86|2800|0|0|02|01000A3A|0|41700000|||||| +26|2023-10-06T20:26:04.6940000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:26:04.6940000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +37|2023-10-06T20:26:04.6940000-07:00|10FF0005|Wuwuchu Wuchu|0001ACD0|63038|63038|5600|10000|16||94.11|88.40|0.00|-2.10|2704|0|0|01|02000A31|0|41E4978C|| +261|2023-10-06T20:26:04.2740000-07:00|Add|40022A53||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:26:04.2740000-07:00|40022A53|Carbuncle|00|5A|10FF0008|00||10261|13498|53095|53095|10000|10000|||101.55|109.53|0.00|2.57| +37|2023-10-06T20:26:04.7380000-07:00|40022550|Zeromus|0001ACD5|20372222||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:04.7380000-07:00|10FF0001|Sesuga Sapisuga|0001ACD5|89453|89453|8700|10000|18||111.07|84.11|0.00|2.52|1300|0|0|0| +261|2023-10-06T20:26:04.2740000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:26:04.7830000-07:00|40022550|Zeromus|0001ACDA|20370168||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:04.7830000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|722003|42060000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|20379635|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5600|10000|||110.70|95.88|0.00|-3.10|0001ACDB|0|1| +38|2023-10-06T20:26:04.7830000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5600|10000|16||110.70|95.88|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:04.7830000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:26:04.3730000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:26:04.3730000-07:00|Change|40022A53||| +37|2023-10-06T20:26:04.8280000-07:00|40022550|Zeromus|0001ACD1|20360767||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:04.8280000-07:00|10FF0007|Kehabiqo Febiqo|0001ACD1|88669||||||84.87|83.62|0.00|-2.94| +37|2023-10-06T20:26:04.8280000-07:00|10FF0005|Wuwuchu Wuchu|0001ACD4|63038|63038|5600|10000|16||94.11|88.40|0.00|-2.10|2701|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:26:04.8280000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +26|2023-10-06T20:26:04.8280000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +37|2023-10-06T20:26:04.8280000-07:00|10FF0003|Gegehi Gehi|0001ACD0|51159|51159|6650|10000|19||110.41|117.01|0.00|0.29|2305|0|0|01|05000A31|0|41E38936|| +21|2023-10-06T20:26:04.8280000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56517|56517|3935|10000|||96.09|101.06|0.00|-0.86|56517|56517|3935|10000|||96.09|101.06|0.00|-0.86|0001ACDC|0|1| +37|2023-10-06T20:26:04.8730000-07:00|40022550|Zeromus|0001ACD9|20360767|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020004A9|0|41200000|| +26|2023-10-06T20:26:04.8730000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40022550|Zeromus|00|40478540|89994| +39|2023-10-06T20:26:04.8730000-07:00|10FF0005|Wuwuchu Wuchu|63038|63038|5800|10000|||94.12|88.43|0.00|-2.11| +261|2023-10-06T20:26:04.4700000-07:00|Change|10FF0005||||||||||| +37|2023-10-06T20:26:04.9630000-07:00|10FF0008|Kokosaze Lulusaze|0001ACD4|55377|55377|7050|10000|30||100.55|111.04|0.00|-0.59|1B02|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:26:04.9630000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +26|2023-10-06T20:26:04.9630000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +37|2023-10-06T20:26:04.9630000-07:00|10FF0004|Buhojaqe Zijaqe|0001ACD0|47128|56517|2200|10000|18||118.13|105.33|0.00|1.33|1C06|0|0|01|06000A31|0|41E274BB|| +20|2023-10-06T20:26:05.0070000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|109.40|117.10|0.00|1.37| +261|2023-10-06T20:26:04.5660000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:26:04.5660000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:26:05.0520000-07:00|10FF0008|Kokosaze Lulusaze|55377|55377|7250|10000|||100.03|111.88|0.00|-0.58| +37|2023-10-06T20:26:05.0960000-07:00|10FF0002|Suchichi Suchi|0001ACD4|63089|63089|5600|10000|16||113.44|95.25|0.00|-2.85|1603|0|0|03|04DB|0|C1700000|||||||||| +26|2023-10-06T20:26:05.0960000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +26|2023-10-06T20:26:05.0960000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +37|2023-10-06T20:26:05.0960000-07:00|10FF0007|Kehabiqo Febiqo|0001ACD0|89994|89994|7200|10000|19||84.09|83.08|0.00|-2.94|1507|0|0|01|07000A31|0|41E1624C|| +39|2023-10-06T20:26:05.1400000-07:00|10FF0004|Buhojaqe Zijaqe|47693|56517|2400|10000|||118.41|105.34|0.00|1.41| +261|2023-10-06T20:26:04.6760000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:26:05.2310000-07:00|10FF0007|Kehabiqo Febiqo|0001ACD4|89994|89994|7200|10000|19||83.96|82.99|0.00|-2.94|1504|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:26:05.2310000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +26|2023-10-06T20:26:05.2310000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +37|2023-10-06T20:26:05.2750000-07:00|40022550|Zeromus|0001ACDB|20343865||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:05.2750000-07:00|10FF0002|Suchichi Suchi|0001ACDB|63089|63089|5600|10000|16||114.37|94.98|0.00|-3.01|1600|0|0|01|04DB|0|41700000|| +38|2023-10-06T20:26:05.2750000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5600|10000|16||114.37|94.98|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||| +20|2023-10-06T20:26:05.3180000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|1.926|118.61|105.51|0.00|0.77| +261|2023-10-06T20:26:04.9070000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:26:05.3630000-07:00|10FF0001|Sesuga Sapisuga|0001ACD4|89453|89453|8700|10000|18||111.07|84.11|0.00|2.52|1305|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:26:05.3630000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +26|2023-10-06T20:26:05.3630000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|89453|56517| +37|2023-10-06T20:26:05.4540000-07:00|10FF0006|Wowobora Gogobora|0001ACDC|56517|56517|4635|10000|18||93.12|105.88|0.00|-0.45|2800|0|0|01|070004B4|0|41A80000|| +26|2023-10-06T20:26:05.4540000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:26:05.4540000-07:00|4002256C|Zeromus|8D32|Big Crunch|10FF0001|Sesuga Sapisuga|550003|0|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|89453|89453|8700|10000|||111.07|84.11|0.00|2.52|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACDD|0|1| +21|2023-10-06T20:26:05.4540000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|714003|20FB0000|A000A0E|A1A0000|0|0|0|0|0|0|0|0|0|0|0|0|20343865|40478540|10000|10000|||100.00|80.10|0.00|0.00|63038|63038|5800|10000|||93.35|88.57|0.00|-2.19|0001ACDE|0|1| +34|2023-10-06T20:26:05.4540000-07:00|40022A53|Carbuncle|40022A53|Carbuncle|01| +38|2023-10-06T20:26:05.4540000-07:00|40022550|Zeromus|005A5A00|20343865|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:05.4540000-07:00|A1A|Death's Design|30.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|63038| +38|2023-10-06T20:26:05.4540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8700|10000|18||111.07|84.11|0.00|2.52|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:05.4540000-07:00|B7D|Magic Vulnerability Up|2.00|4002256C|Zeromus|10FF0001|Sesuga Sapisuga|00|89453|44| +261|2023-10-06T20:26:05.0210000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:26:05.0210000-07:00|Change|40022A53||||||||| +37|2023-10-06T20:26:05.4960000-07:00|10FF0003|Gegehi Gehi|0001ACD4|51159|51159|6650|10000|19||108.29|116.96|0.00|-2.92|2306|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:26:05.4960000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +26|2023-10-06T20:26:05.4960000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +261|2023-10-06T20:26:05.1380000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T20:26:05.5860000-07:00|40022569|Zeromus|8D32|Big Crunch|10FF0008|Kokosaze Lulusaze|550003|21310000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|55377|55377|7250|10000|||98.39|115.23|-0.02|-0.45|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACDF|0|1| +38|2023-10-06T20:26:05.5860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55377|55377|7250|10000|30||98.39|115.23|-0.02|-0.45|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:05.5860000-07:00|B7D|Magic Vulnerability Up|2.00|40022569|Zeromus|10FF0008|Kokosaze Lulusaze|00|55377|44| +261|2023-10-06T20:26:05.1380000-07:00|Change|40022569||||||||||||| +37|2023-10-06T20:26:05.6310000-07:00|10FF0004|Buhojaqe Zijaqe|0001ACD4|47693|56517|2400|10000|18||118.91|106.12|-0.01|0.47|1C07|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:26:05.6310000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:26:05.6310000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +24|2023-10-06T20:26:05.6310000-07:00|10FF0002|Suchichi Suchi|HoT|0|D83|63089|63089|5600|10000|||114.88|94.66|0.00|-2.80|10FF0006|Wowobora Gogobora|0|56517|56517|4635|10000|||92.77|107.55|-0.02|-0.31| +38|2023-10-06T20:26:05.6310000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5600|10000|16||114.88|94.66|0.00|-2.80|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:05.6310000-07:00|40022550|Zeromus|005A5A00|20343865|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:05.6310000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|89453| +261|2023-10-06T20:26:05.2300000-07:00|Change|10FF0006||||||||| +24|2023-10-06T20:26:05.6760000-07:00|10FF0003|Gegehi Gehi|HoT|0|CA6|51159|51159|6650|10000|||108.29|116.96|0.00|-2.92|10FF0006|Wowobora Gogobora|0|56517|56517|4635|10000|||92.77|107.55|-0.02|-0.31| +21|2023-10-06T20:26:05.6760000-07:00|40022566|Zeromus|8D32|Big Crunch|10FF0002|Suchichi Suchi|550003|3FB30000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|63089|63089|5600|10000|||114.88|94.66|0.00|-2.80|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACE0|0|1| +20|2023-10-06T20:26:05.6760000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|98.23|115.71|0.00|-0.41| +38|2023-10-06T20:26:05.6760000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5600|10000|16||114.88|94.66|0.00|-2.80|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:05.6760000-07:00|B7D|Magic Vulnerability Up|2.00|40022566|Zeromus|10FF0002|Suchichi Suchi|00|63089|44| +38|2023-10-06T20:26:05.6760000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6650|10000|19||108.29|116.96|0.00|-2.92|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:26:05.2300000-07:00|Change|40022566||||||||||||| +21|2023-10-06T20:26:05.7660000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|10A70000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|20343865|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|7200|10000|||83.88|82.93|0.00|-2.94|0001ACE1|0|1| +21|2023-10-06T20:26:05.7660000-07:00|40022563|Zeromus|8D32|Big Crunch|10FF0005|Wuwuchu Wuchu|550003|426B0000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|63038|63038|5800|10000|||93.25|88.58|0.00|3.11|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACE2|0|1| +38|2023-10-06T20:26:05.7660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5800|10000|16||93.25|88.58|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:05.7660000-07:00|B7D|Magic Vulnerability Up|2.00|40022563|Zeromus|10FF0005|Wuwuchu Wuchu|00|63038|44| +261|2023-10-06T20:26:05.3310000-07:00|Change|40022563||||||||||||| +24|2023-10-06T20:26:05.8550000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|C6D|89453|89453|8700|10000|||111.07|84.11|0.00|2.52|4002256C|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +24|2023-10-06T20:26:05.8550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D15|47693|56517|2400|10000|||118.94|106.19|0.00|0.43|10FF0006|Wowobora Gogobora|0|56517|56517|4635|10000|||92.40|108.27|0.00|-0.44| +21|2023-10-06T20:26:05.8550000-07:00|40022560|Zeromus|8D32|Big Crunch|10FF0006|Wowobora Gogobora|550003|35AF0000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|56517|56517|4635|10000|||92.40|108.27|0.00|-0.44|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACE3|0|1| +38|2023-10-06T20:26:05.8550000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|4635|10000|18||92.40|108.27|0.00|-0.44|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:05.8550000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:26:05.8550000-07:00|B7D|Magic Vulnerability Up|2.00|40022560|Zeromus|10FF0006|Wowobora Gogobora|00|56517|44| +38|2023-10-06T20:26:05.8550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8700|10000|18||111.07|84.11|0.00|2.52|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:05.8550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|51042|56517|2400|10000|18||118.94|106.19|0.00|0.43|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:05.4240000-07:00|Change|40022560||||||||||||| +24|2023-10-06T20:26:05.9440000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|C92|63038|63038|5800|10000|||93.22|88.59|0.00|-2.65|E0000000||0||||||||||| +38|2023-10-06T20:26:05.9440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|63038|63038|5800|10000|16||93.22|88.59|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:05.9900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1614|56517|56517|4635|10000|||92.24|108.58|0.00|-0.50|E0000000||0||||||||||| +21|2023-10-06T20:26:05.9900000-07:00|4002255D|Zeromus|8D32|Big Crunch|10FF0003|Gegehi Gehi|550003|35130000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|51159|51159|6650|10000|||108.29|116.96|0.00|-2.92|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACE4|0|1| +38|2023-10-06T20:26:05.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56517|56517|5185|10000|18||92.24|108.58|0.00|-0.50|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:05.9900000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6650|10000|19||108.29|116.96|0.00|-2.92|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:05.9900000-07:00|B7D|Magic Vulnerability Up|2.00|4002255D|Zeromus|10FF0003|Gegehi Gehi|00|51159|44| +261|2023-10-06T20:26:05.5230000-07:00|Change|4002255D||||||||||||| +37|2023-10-06T20:26:06.0780000-07:00|10FF0001|Sesuga Sapisuga|0001ACDD|89453|89453|8700|10000|1||111.07|84.11|0.00|2.52|1300|0|0|01|09000B7D|0|3FB5A1CD|| +21|2023-10-06T20:26:06.0780000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C724003|1E990000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|20343865|40478540|10000|10000|||100.00|80.10|0.00|0.00|63089|63089|5600|10000|||115.25|93.98|0.00|-2.58|0001ACE5|0|1| +21|2023-10-06T20:26:06.0780000-07:00|4002255B|Zeromus|8D32|Big Crunch|10FF0004|Buhojaqe Zijaqe|550003|39D00000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|51042|56517|2400|10000|||118.94|106.19|0.00|0.43|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACE6|0|1| +38|2023-10-06T20:26:06.0780000-07:00|10FF0002|Suchichi Suchi|005A5A16|63089|63089|5600|10000|16||115.25|93.98|0.00|-2.58|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:06.0780000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +38|2023-10-06T20:26:06.0780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|51042|56517|2400|10000|18||118.94|106.19|0.00|0.43|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:06.0780000-07:00|B7D|Magic Vulnerability Up|2.00|4002255B|Zeromus|10FF0004|Buhojaqe Zijaqe|00|56517|44| +261|2023-10-06T20:26:05.6170000-07:00|Change|4002255B||||||||||| +261|2023-10-06T20:26:05.7320000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:26:06.1660000-07:00|40022559|Zeromus|8D32|Big Crunch|10FF0007|Kehabiqo Febiqo|550003|0|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|89994|89994|7200|10000|||83.88|82.93|0.00|1.75|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACE7|0|1| +38|2023-10-06T20:26:06.1660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|7200|10000|19||83.88|82.93|0.00|1.75|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:06.1660000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +26|2023-10-06T20:26:06.1660000-07:00|B7D|Magic Vulnerability Up|2.00|40022559|Zeromus|10FF0007|Kehabiqo Febiqo|00|89994|44| +261|2023-10-06T20:26:05.8430000-07:00|Change|40022559||||||||||||| +261|2023-10-06T20:26:05.8430000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:06.2120000-07:00|10FF0008|Kokosaze Lulusaze|0001ACDF|46880|55377|7250|10000|0||97.83|116.99|0.00|3.08|1B00|0|0|02|06000000|0|0|||||| +38|2023-10-06T20:26:06.2120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|46880|55377|7250|10000|0||97.83|116.99|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:06.2120000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|55377|56517| +39|2023-10-06T20:26:06.2550000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|7400|10000|||83.88|82.93|0.00|1.75| +261|2023-10-06T20:26:05.9570000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:26:06.3010000-07:00|40022550|Zeromus|0001ACE1|20339602||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:06.3010000-07:00|10FF0002|Suchichi Suchi|0001ACE0|46782|63089|5600|10000|0||115.25|93.98|0.00|-2.31|1600|0|0|03|04000AA0|0|C1F00000|||||||||| +38|2023-10-06T20:26:06.3010000-07:00|10FF0002|Suchichi Suchi|005A5A16|46782|63089|5600|10000|0||115.25|93.98|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:06.3010000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|63089|56517| +20|2023-10-06T20:26:06.3450000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|91.97|109.14|0.00|2.00| +261|2023-10-06T20:26:05.9570000-07:00|Change|10FF0008||||||||||||||||||| +37|2023-10-06T20:26:06.3900000-07:00|10FF0005|Wuwuchu Wuchu|0001ACE2|46035|63038|5800|10000|0||92.37|88.85|0.00|-2.79|2700|0|0|02|02000000|0|0|||||| +39|2023-10-06T20:26:06.3900000-07:00|10FF0003|Gegehi Gehi|51159|51159|6850|10000|||108.29|116.96|0.00|-2.92| +21|2023-10-06T20:26:06.3900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20343865|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8700|10000|||111.07|84.11|0.00|-1.92|0001ACE8|0|1| +38|2023-10-06T20:26:06.3900000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|46035|63038|5800|10000|0||92.37|88.85|0.00|-2.79|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:06.3900000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|63038|56517| +31|2023-10-06T20:26:06.3900000-07:00|10FF0001||||| +21|2023-10-06T20:26:06.4350000-07:00|4002256D|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACE9|0|0| +21|2023-10-06T20:26:06.4350000-07:00|4002256E|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACEA|0|0| +21|2023-10-06T20:26:06.4350000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|752003|33F30000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|20343865|40478540|10000|10000|||100.00|80.10|0.00|0.00|51159|51159|6650|10000|||108.29|116.96|0.00|-2.92|0001ACEB|0|1| +38|2023-10-06T20:26:06.4350000-07:00|10FF0003|Gegehi Gehi|005A5A23|51159|51159|6650|10000|19||108.29|116.96|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:06.4350000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:26:05.9570000-07:00|Change|4002256E||||||||||| +261|2023-10-06T20:26:05.9570000-07:00|Change|4002256D||||||||||| +37|2023-10-06T20:26:06.4800000-07:00|10FF0006|Wowobora Gogobora|0001ACE3|42774|56517|5185|10000|0||92.31|108.42|0.00|2.22|2800|0|0|02|05000000|0|0|||||| +39|2023-10-06T20:26:06.4800000-07:00|10FF0002|Suchichi Suchi|47412|63089|5800|10000|||115.25|93.98|0.00|-2.31| +21|2023-10-06T20:26:06.4800000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|1C600000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|20339602|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8700|10000|||111.07|84.11|0.00|-1.92|0001ACEC|0|1| +38|2023-10-06T20:26:06.4800000-07:00|10FF0006|Wowobora Gogobora|005A5A28|42774|56517|5185|10000|0||92.31|108.42|0.00|2.22|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:06.4800000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:26:06.4800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8700|10000|1||111.07|84.11|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:06.4800000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|89453|89453| +26|2023-10-06T20:26:06.4800000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|89453|89453| +261|2023-10-06T20:26:06.0740000-07:00|Change|10FF0002||||||||||| +24|2023-10-06T20:26:06.5240000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CD9|89994|89994|7400|10000|||83.88|82.93|0.00|1.75|40022559|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +24|2023-10-06T20:26:06.5240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D5B|46880|55377|7250|10000|||97.83|116.99|0.00|3.08|40022569|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T20:26:06.5240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|7400|10000|19||83.88|82.93|0.00|1.75|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:06.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|50299|55377|7800|10000|0||97.83|116.99|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:06.5680000-07:00|4002256A|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACED|0|0| +21|2023-10-06T20:26:06.5680000-07:00|4002256B|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACEE|0|0| +261|2023-10-06T20:26:06.1880000-07:00|Change|4002256A||||||||||| +261|2023-10-06T20:26:06.1880000-07:00|Change|4002256B||||||||||| +261|2023-10-06T20:26:06.1880000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:26:06.1880000-07:00|Change|40022A53||||||||| +37|2023-10-06T20:26:06.6140000-07:00|10FF0003|Gegehi Gehi|0001ACE4|37572|51159|6650|10000|0||108.29|116.96|0.00|-2.92|2300|0|0|02|05000000|0|0|||||| +37|2023-10-06T20:26:06.6140000-07:00|40022550|Zeromus|0001ACDE|20331159|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000A1A|0A|41E71478|| +38|2023-10-06T20:26:06.6140000-07:00|10FF0003|Gegehi Gehi|005A5A23|37572|51159|6650|10000|0||108.29|116.96|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:06.6140000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51159|56517| +21|2023-10-06T20:26:06.6590000-07:00|40022567|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACEF|0|0| +21|2023-10-06T20:26:06.6590000-07:00|40022568|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACF0|0|0| +261|2023-10-06T20:26:06.2780000-07:00|Change|40022567||||||||||| +261|2023-10-06T20:26:06.2780000-07:00|Change|40022568||||||||||| +261|2023-10-06T20:26:06.2780000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:26:06.7030000-07:00|10FF0004|Buhojaqe Zijaqe|0001ACE6|36242|56517|2400|10000|0||118.94|106.19|0.00|0.43|1C00|0|0|02|06000000|0|0|||||| +21|2023-10-06T20:26:06.7030000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|200004|2EF20000|800E|1290000|800E|77E0000|1B|B98000|0|0|0|0|0|0|0|0|51042|56517|2400|10000|||118.94|106.19|0.00|0.43|51042|56517|2400|10000|||118.94|106.19|0.00|0.43|0001ACF1|0|1| +38|2023-10-06T20:26:06.7030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|36242|56517|1400|10000|76||118.94|106.19|0.00|0.43|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:06.7030000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:26:06.7030000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:26:06.7030000-07:00|77E|Catalyze|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +21|2023-10-06T20:26:06.7480000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|722003|1F190000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|20331159|40478540|10000|10000|||100.00|80.10|0.00|0.00|47412|63089|5800|10000|||115.25|93.98|0.00|-2.31|0001ACF2|0|1| +21|2023-10-06T20:26:06.7480000-07:00|40022564|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACF3|0|0| +21|2023-10-06T20:26:06.7480000-07:00|40022565|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACF4|0|0| +38|2023-10-06T20:26:06.7480000-07:00|10FF0002|Suchichi Suchi|005A5A16|47412|63089|5800|10000|0||115.25|93.98|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:06.7480000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +261|2023-10-06T20:26:06.2780000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:26:06.2780000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:26:06.2780000-07:00|Change|40022565||||||||||| +37|2023-10-06T20:26:06.7930000-07:00|10FF0007|Kehabiqo Febiqo|0001ACE7|89994|89994|7400|10000|1||83.88|82.93|0.00|1.75|1500|0|0|01|0C000B7D|0|3FB58107|| +21|2023-10-06T20:26:06.8370000-07:00|40022561|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACF5|0|0| +21|2023-10-06T20:26:06.8370000-07:00|40022562|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACF6|0|0| +261|2023-10-06T20:26:06.3760000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:26:06.3760000-07:00|Change|40022561||||||||||| +37|2023-10-06T20:26:06.9260000-07:00|40022550|Zeromus|0001ACE8|20329855||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:06.9260000-07:00|10FF0001|Sesuga Sapisuga|0001ACE8|89453|89453|8700|10000|1||111.07|84.11|0.00|-1.92|1300|0|0|02|0A00076E|03|C1F00000|||||| +21|2023-10-06T20:26:06.9260000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|86E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20331159|40478540|10000|10000|||100.00|80.10|0.00|0.00|47412|63089|5800|10000|||115.25|93.98|0.00|-2.31|0001ACF7|0|1| +21|2023-10-06T20:26:06.9710000-07:00|4002255E|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACF8|0|0| +21|2023-10-06T20:26:06.9710000-07:00|4002255F|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACF9|0|0| +261|2023-10-06T20:26:06.5640000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:26:06.5640000-07:00|Change|4002255F||||||||||| +39|2023-10-06T20:26:07.0160000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|8900|10000|||111.07|84.11|0.00|-1.92| +37|2023-10-06T20:26:07.0630000-07:00|40022550|Zeromus|0001ACEC|20322591||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:07.0630000-07:00|10FF0001|Sesuga Sapisuga|0001ACEC|89453|89453|8900|10000|1||111.07|84.11|0.00|-1.92|1300|0|0|02|0A00076E|03|41F00000|||||| +21|2023-10-06T20:26:07.0630000-07:00|4002255C|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACFA|0|0| +21|2023-10-06T20:26:07.0630000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|14350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20329855|40478540|10000|10000|||100.00|80.10|0.00|0.00|46035|63038|5800|10000|||92.06|88.96|0.00|2.46|0001ACFB|0|1| +38|2023-10-06T20:26:07.0630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8900|10000|1||111.07|84.11|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:06.6840000-07:00|Change|4002255C||||||||||| +21|2023-10-06T20:26:07.1500000-07:00|4002255A|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACFC|0|0| +261|2023-10-06T20:26:06.6840000-07:00|Change|4002255A||||||||||| +37|2023-10-06T20:26:07.1940000-07:00|40022550|Zeromus|0001ACEB|20309292||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:07.1940000-07:00|40022550|Zeromus|DoT|0|1727|20329855|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:26:07.1940000-07:00|40022550|Zeromus|005A5A00|20303365|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:07.1940000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +261|2023-10-06T20:26:06.8020000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T20:26:07.2410000-07:00|40022558|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001ACFD|0|0| +261|2023-10-06T20:26:06.8020000-07:00|Change|40022558||||||||||| +261|2023-10-06T20:26:06.9150000-07:00|Change|10FF0001||| +21|2023-10-06T20:26:07.2830000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|39490000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|20303365|40478540|10000|10000|||100.00|80.10|0.00|0.00|42774|56517|5185|10000|||93.31|106.28|0.00|2.89|0001ACFE|0|1| +36|2023-10-06T20:26:07.3280000-07:00|5BE0|3| +21|2023-10-06T20:26:07.3740000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|726003|58A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20303365|40478540|10000|10000|||100.00|80.10|0.00|0.00|47412|63089|5800|10000|||115.25|93.98|0.00|-2.31|0001ACFF|0|1| +21|2023-10-06T20:26:07.3740000-07:00|40022557|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AD00|0|0| +21|2023-10-06T20:26:07.3740000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36242|56517|1400|10000|||118.94|106.19|0.00|0.43|36242|56517|1400|10000|||118.94|106.19|0.00|0.43|0001AD01|0|1| +261|2023-10-06T20:26:06.9150000-07:00|Change|40022557||||||||||| +261|2023-10-06T20:26:06.9150000-07:00|Change|10FF0008||||| +21|2023-10-06T20:26:07.4180000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|552003|3E7E0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|20303365|40478540|10000|10000|||100.00|80.10|0.00|0.00|37572|51159|6650|10000|||108.29|116.96|0.00|-2.92|0001AD02|0|1| +38|2023-10-06T20:26:07.4180000-07:00|10FF0003|Gegehi Gehi|005A5A23|37572|51159|6350|10000|0||108.29|116.96|0.00|-2.92|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:07.4180000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +37|2023-10-06T20:26:07.4630000-07:00|40022550|Zeromus|0001ACF7|20301207||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:07.4630000-07:00|10FF0002|Suchichi Suchi|0001ACF7|47412|63089|5800|10000|0||115.25|93.98|0.00|-2.31|1600|0|0|01|04000AA0|0|C1F00000|| +21|2023-10-06T20:26:07.4630000-07:00|40022556|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AD03|0|0| +38|2023-10-06T20:26:07.4630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8900|10000|1||111.07|84.11|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:07.4630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256C|Zeromus|10FF0001|Sesuga Sapisuga|00|89453|44| +261|2023-10-06T20:26:07.0330000-07:00|Change|40022556||||||||||| +39|2023-10-06T20:26:07.5070000-07:00|10FF0006|Wowobora Gogobora|43339|56517|4990|10000|||93.31|106.28|0.00|2.89| +21|2023-10-06T20:26:07.5070000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|21D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20301207|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|7400|10000|||83.88|82.93|0.00|1.75|0001AD04|0|1| +38|2023-10-06T20:26:07.5070000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|46035|63038|5800|10000|0||93.44|88.91|0.00|1.99|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:07.5070000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +21|2023-10-06T20:26:07.5070000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46035|63038|5800|10000|||93.44|88.91|0.00|1.99|46035|63038|5800|10000|||93.44|88.91|0.00|1.99|0001AD05|0|1| +37|2023-10-06T20:26:07.5510000-07:00|40022550|Zeromus|0001ACF2|20293246||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:07.5510000-07:00|10FF0002|Suchichi Suchi|0001ACF2|47412|63089|5800|10000|0||115.25|93.98|0.00|-2.31|1600|0|0|01|04000AA0|0|C1F00000|| +21|2023-10-06T20:26:07.5510000-07:00|40022555|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AD06|0|0| +261|2023-10-06T20:26:07.1510000-07:00|Change|40022555||||||||||| +37|2023-10-06T20:26:07.5960000-07:00|40022550|Zeromus|0001ACFB|20288073||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:07.5960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|50299|55377|7800|10000|0||97.83|116.99|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:07.5960000-07:00|B7D|Magic Vulnerability Up|0.00|40022569|Zeromus|10FF0008|Kokosaze Lulusaze|00|55377|44| +261|2023-10-06T20:26:07.1510000-07:00|Change|10FF0003||| +21|2023-10-06T20:26:07.6400000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|D4D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20301207|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|7400|10000|||83.88|82.93|0.00|1.75|0001AD07|0|1| +37|2023-10-06T20:26:07.6850000-07:00|10FF0004|Buhojaqe Zijaqe|0001ACF1|48260|56517|1400|10000|76||118.94|106.19|0.00|0.43|1C00|0|0|02|06000129|0|41E88104|||||| +38|2023-10-06T20:26:07.6850000-07:00|10FF0002|Suchichi Suchi|005A5A16|47412|63089|5800|10000|0||115.25|93.98|0.00|-2.31|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:07.6850000-07:00|B7D|Magic Vulnerability Up|0.00|40022566|Zeromus|10FF0002|Suchichi Suchi|00|63089|44| +261|2023-10-06T20:26:07.2530000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:26:07.7290000-07:00|40022550|Zeromus|0001ACE5|20280240||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:07.7290000-07:00|10FF0002|Suchichi Suchi|0001ACE5|47412|63089|5800|10000|0||115.25|93.98|0.00|-2.31|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:26:07.7290000-07:00|10FF0002|Suchichi Suchi|005A5A16|47412|63089|5800|10000|0||115.25|93.98|0.00|-2.31|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:07.7740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|46035|63038|5800|10000|0||94.97|89.03|0.00|0.74|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:07.7740000-07:00|B7D|Magic Vulnerability Up|0.00|40022563|Zeromus|10FF0005|Wuwuchu Wuchu|00|63038|44| +39|2023-10-06T20:26:07.8620000-07:00|10FF0005|Wuwuchu Wuchu|46665|63038|6000|10000|||95.36|89.41|-0.02|0.74| +261|2023-10-06T20:26:07.4370000-07:00|Change|10FF0005||||||||||| +38|2023-10-06T20:26:07.8620000-07:00|10FF0006|Wowobora Gogobora|005A5A28|43339|56517|4990|10000|0||93.31|106.28|0.00|2.89|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:07.8620000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +30|2023-10-06T20:26:07.8620000-07:00|B7D|Magic Vulnerability Up|0.00|40022560|Zeromus|10FF0006|Wowobora Gogobora|00|56517|44| +21|2023-10-06T20:26:07.9080000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|152003|88600000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|20280240|40478540|10000|10000|||100.00|80.10|0.00|0.00|50299|55377|7800|10000|||97.83|116.99|0.00|3.08|0001AD08|0|1| +24|2023-10-06T20:26:07.9520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|154A|89994|89994|7400|10000|||83.88|82.93|0.00|1.75|10FF0006|Wowobora Gogobora|0|43339|56517|4990|10000|||93.31|106.28|0.00|2.89| +37|2023-10-06T20:26:07.9520000-07:00|40022550|Zeromus|0001ACFE|20265575||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:07.9520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|7400|10000|1||83.88|82.93|0.00|1.75|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:07.9960000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD01|48260|56517|1400|10000|76||118.94|106.19|0.00|0.43|1C00|0|0|01|0C0004B4|0|41A80000|| +26|2023-10-06T20:26:07.9960000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +21|2023-10-06T20:26:07.9960000-07:00|10FF0002|Suchichi Suchi|1D7D|Feint|40022550|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20280240|40478540|10000|10000|||100.00|80.10|0.00|0.00|47412|63089|5800|10000|||115.25|93.98|0.00|-2.31|0001AD09|0|1| +38|2023-10-06T20:26:07.9960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48260|56517|1400|10000|76||118.94|106.19|0.00|0.43|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:07.9960000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|56517|56517| +21|2023-10-06T20:26:07.9960000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48260|56517|1400|10000|||118.94|106.19|0.00|0.43|48260|56517|1400|10000|||118.94|106.19|0.00|0.43|0001AD0A|0|1| +38|2023-10-06T20:26:07.9960000-07:00|10FF0003|Gegehi Gehi|005A5A23|37572|51159|6350|10000|0||108.29|116.96|0.00|-2.92|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:07.9960000-07:00|B7D|Magic Vulnerability Up|0.00|4002255D|Zeromus|10FF0003|Gegehi Gehi|00|51159|44| +39|2023-10-06T20:26:08.0410000-07:00|10FF0008|Kokosaze Lulusaze|50852|55377|7700|10000|||97.83|116.99|0.00|3.08| +38|2023-10-06T20:26:08.0410000-07:00|40022550|Zeromus|005A5A00|20265575|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:08.0410000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +38|2023-10-06T20:26:08.0850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48260|56517|1400|10000|76||118.94|106.19|0.00|0.43|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:08.0850000-07:00|B7D|Magic Vulnerability Up|0.00|4002255B|Zeromus|10FF0004|Buhojaqe Zijaqe|00|56517|44| +37|2023-10-06T20:26:08.1300000-07:00|40022550|Zeromus|0001AD04|20256913||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:08.1300000-07:00|10FF0004|Buhojaqe Zijaqe|48825|56517|1600|10000|||118.94|106.19|0.00|0.43| +37|2023-10-06T20:26:08.1740000-07:00|40022550|Zeromus|0001AD07|20253508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:08.1740000-07:00|40022550|Zeromus|0001AD02|20237510||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:07.7560000-07:00|Change|10FF0004||||||| +38|2023-10-06T20:26:08.1740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|7400|10000|1||83.88|82.94|-0.02|1.69|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:08.1740000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +30|2023-10-06T20:26:08.1740000-07:00|B7D|Magic Vulnerability Up|0.00|40022559|Zeromus|10FF0007|Kehabiqo Febiqo|00|89994|44| +21|2023-10-06T20:26:08.2180000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32714003|1FF50000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|20237510|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|7400|10000|||83.88|82.94|-0.02|1.69|0001AD0B|0|1| +21|2023-10-06T20:26:08.3520000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46665|63038|6000|10000|||97.26|91.37|0.00|0.74|46665|63038|6000|10000|||97.26|91.37|0.00|0.74|0001AD0C|0|1| +38|2023-10-06T20:26:08.3520000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|46665|63038|6000|10000|0||97.26|91.37|0.00|0.74|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:08.3520000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +04|2023-10-06T20:26:07.9870000-07:00|40022A10|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|53095|0|10000|||118.16|84.97|0.00|-1.83| +261|2023-10-06T20:26:07.9870000-07:00|Change|10FF0008||||||||||||||| +261|2023-10-06T20:26:07.9870000-07:00|Remove|40022A10| +37|2023-10-06T20:26:08.5310000-07:00|40022550|Zeromus|0001AD09|20237510|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04AB|0|41200000|| +26|2023-10-06T20:26:08.5310000-07:00|4AB|Feint|10.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +37|2023-10-06T20:26:08.5310000-07:00|40022550|Zeromus|0001AD08|20202598||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:08.5310000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD0A|48825|56517|3600|10000|76||118.94|106.19|0.00|-0.31|1C00|0|0|0| +37|2023-10-06T20:26:08.5750000-07:00|40022550|Zeromus|0001ACFF|20179904||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:08.6200000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|1D720000|177F0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|20179904|40478540|10000|10000|||100.00|80.10|0.00|0.00|47412|63089|5800|10000|||113.78|94.43|0.00|-2.15|0001AD0D|0|1| +38|2023-10-06T20:26:08.6200000-07:00|10FF0002|Suchichi Suchi|005A5A16|47412|63089|5800|10000|0||113.78|94.43|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:08.6200000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:26:08.6650000-07:00|10FF0005|Wuwuchu Wuchu|0001AD05|46665|63038|6000|10000|0||97.61|91.73|0.00|0.74|2700|0|0|01|0A0004E2|0|C1200000|| +24|2023-10-06T20:26:08.6650000-07:00|10FF0002|Suchichi Suchi|HoT|0|C71|47412|63089|5800|10000|||113.78|94.43|0.00|-2.15|10FF0006|Wowobora Gogobora|0|43339|56517|4990|10000|||94.00|105.91|0.00|2.26| +20|2023-10-06T20:26:08.6650000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|97.83|116.99|0.00|3.08| +21|2023-10-06T20:26:08.6650000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20179904|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8900|10000|||109.93|85.39|0.00|-1.48|0001AD0E|0|1| +38|2023-10-06T20:26:08.6650000-07:00|10FF0002|Suchichi Suchi|005A5A16|50597|63089|5800|10000|0||113.78|94.43|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||| +31|2023-10-06T20:26:08.6650000-07:00|10FF0001||||| +24|2023-10-06T20:26:08.7090000-07:00|10FF0003|Gegehi Gehi|HoT|0|D6A|37572|51159|6350|10000|||108.29|116.96|0.00|-2.92|10FF0006|Wowobora Gogobora|0|43339|56517|4990|10000|||94.87|105.44|0.00|2.21| +38|2023-10-06T20:26:08.7090000-07:00|10FF0003|Gegehi Gehi|005A5A23|41006|51159|6350|10000|0||108.29|116.96|0.00|-2.92|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:26:08.8430000-07:00|40022550|Zeromus|0001AD0B|20171723||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:08.8430000-07:00|10FF0006|Wowobora Gogobora|005A5A28|43339|56517|4990|10000|0||95.80|104.93|0.00|2.15|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:08.8430000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +21|2023-10-06T20:26:08.8430000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43339|56517|4990|10000|||95.80|104.93|0.00|2.15|43339|56517|4990|10000|||95.80|104.93|0.00|2.15|0001AD0F|0|1| +37|2023-10-06T20:26:08.8870000-07:00|10FF0005|Wuwuchu Wuchu|0001AD0C|46665|63038|6000|10000|0||98.42|92.60|0.00|0.74|2700|0|0|01|0A0004E2|0|41200000|| +24|2023-10-06T20:26:08.8870000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|C91|89453|89453|8900|10000|||109.92|87.06|0.00|-1.48|10FF0001|Sesuga Sapisuga|0|89453|89453|8900|10000|||109.92|87.06|0.00|-1.48| +24|2023-10-06T20:26:08.8870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|C9D|48825|56517|3600|10000|||118.55|106.00|0.00|-1.62|10FF0004|Buhojaqe Zijaqe|0|48825|56517|3600|10000|||118.55|106.00|0.00|-1.62| +38|2023-10-06T20:26:08.8870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8900|10000|1||109.92|87.06|0.00|-1.48|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:08.8870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52054|56517|4150|10000|76||118.55|106.00|0.00|-1.62|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:08.8870000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|46665|63038|6000|10000|0||98.42|92.60|0.00|0.74|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:08.9320000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|FD90E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|20179904|40478540|10000|10000|||100.00|80.10|0.00|0.00|48825|56517|3600|10000|||118.55|106.00|0.00|-1.62|0001AD10|0|1| +261|2023-10-06T20:26:08.4840000-07:00|Change|10FF0005||||||||| +24|2023-10-06T20:26:08.9760000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|C99|46665|63038|6000|10000|||99.13|93.39|0.00|0.74|E0000000||0||||||||||| +21|2023-10-06T20:26:08.9760000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|1ED70000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20171723|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|8900|10000|||109.34|87.76|0.00|-1.49|0001AD11|0|1| +38|2023-10-06T20:26:08.9760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|8900|10000|1||109.34|87.76|0.00|-1.49|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:08.9760000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|89453|89453| +38|2023-10-06T20:26:08.9760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|49890|63038|6000|10000|0||99.13|93.39|0.00|0.74|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:09.0210000-07:00|10FF0006|Wowobora Gogobora|HoT|0|CFE|43339|56517|4990|10000|||96.45|104.56|0.00|2.11|E0000000||0||||||||||| +38|2023-10-06T20:26:09.0210000-07:00|40022550|Zeromus|005A5A00|20171723|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:09.0210000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|56517| +38|2023-10-06T20:26:09.0210000-07:00|10FF0006|Wowobora Gogobora|005A5A28|46665|56517|5540|10000|0||96.45|104.56|0.00|2.11|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:08.5860000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:26:08.5860000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:26:09.0650000-07:00|40022550|Zeromus|0001AD0D|20164185|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A9F|0|41C00000|| +26|2023-10-06T20:26:09.0650000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|63089| +37|2023-10-06T20:26:09.0650000-07:00|10FF0002|Suchichi Suchi|0001AD0D|50597|63089|5800|10000|0||110.14|95.86|0.00|-2.10|1600|0|0|01|0323|0|41F00000|| +38|2023-10-06T20:26:09.0650000-07:00|10FF0002|Suchichi Suchi|005A5A16|50597|63089|5800|10000|0||110.14|95.86|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:08.5860000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:26:09.1100000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41006|51159|6350|10000|||108.29|116.96|0.00|-2.92|41006|51159|6350|10000|||108.29|116.96|0.00|-2.92|0001AD12|0|1| +21|2023-10-06T20:26:09.1100000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|716003|58700000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|20171723|40478540|10000|10000|||100.00|80.10|0.00|0.00|49890|63038|6000|10000|||99.81|94.14|-0.02|0.74|0001AD13|0|1| +38|2023-10-06T20:26:09.1100000-07:00|10FF0003|Gegehi Gehi|005A5A23|41006|51159|6350|10000|0||108.29|116.96|0.00|-2.92|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:09.1100000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +38|2023-10-06T20:26:09.1100000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|49890|63038|6000|10000|0||99.81|94.14|-0.02|0.74|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:09.1100000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:26:08.7030000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:26:09.1980000-07:00|40022550|Zeromus|0001AD0E|20162905||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:09.2420000-07:00|10FF0007|Kehabiqo Febiqo|89994|89994|7600|10000|||86.14|85.43|0.00|1.01| +261|2023-10-06T20:26:08.8170000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T20:26:09.3750000-07:00|10FF0003|Gegehi Gehi|41517|51159|6550|10000|||108.29|116.96|0.00|-2.92| +261|2023-10-06T20:26:08.9290000-07:00|Change|10FF0003||| +261|2023-10-06T20:26:09.0410000-07:00|Change|10FF0008||||||||||||| +39|2023-10-06T20:26:09.4650000-07:00|10FF0002|Suchichi Suchi|51227|63089|6000|10000|||107.89|96.88|0.00|-1.97| +37|2023-10-06T20:26:09.5540000-07:00|40022550|Zeromus|0001AD10|20162905|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000767|0|41F00000|| +26|2023-10-06T20:26:09.5540000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|56517| +24|2023-10-06T20:26:09.5540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CE7|89994|89994|7600|10000|||88.12|87.60|0.00|0.82|10FF0007|Kehabiqo Febiqo|0|89994|89994|7600|10000|||88.12|87.60|0.00|0.82| +24|2023-10-06T20:26:09.5540000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|CFA|50852|55377|7700|10000|||97.83|116.99|0.00|3.08|10FF0006|Wowobora Gogobora|0|46665|56517|5540|10000|||98.69|102.80|0.00|2.24| +38|2023-10-06T20:26:09.5540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|7600|10000|1||88.12|87.60|0.00|0.82|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:09.5540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54174|55377|8250|10000|0||97.83|116.99|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:26:09.6430000-07:00|40022550|Zeromus|0001AD13|20140265||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:09.6430000-07:00|10FF0005|Wuwuchu Wuchu|0001AD13|49890|63038|6000|10000|0||101.28|96.01|0.00|2.04|2700|0|0|01|0B000A1F|0|41F00000|| +38|2023-10-06T20:26:09.6430000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|49890|63038|6000|10000|0||101.28|96.01|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:09.2510000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:26:09.3490000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:26:09.7310000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20140265|40478540|10000|10000|||100.00|80.10|0.00|0.00|51227|63089|6000|10000|||105.29|98.05|0.00|-1.94|0001AD14|0|1| +261|2023-10-06T20:26:09.3490000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:26:09.8210000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|20140265|40478540|10000|10000|||100.00|80.10|0.00|0.00|46665|56517|5540|10000|||99.36|101.82|-0.02|2.22|0001AD15|0|1| +38|2023-10-06T20:26:09.8210000-07:00|10FF0006|Wowobora Gogobora|005A5A28|46665|56517|5140|10000|0||99.36|101.82|-0.02|2.22|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:09.8210000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +261|2023-10-06T20:26:09.4400000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:09.8650000-07:00|10FF0003|Gegehi Gehi|0001AD12|41517|51159|6550|10000|0||108.28|116.72|-0.02|-2.97|2300|0|0|01|050004D6|0|41A00000|| +21|2023-10-06T20:26:09.8650000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20140265|40478540|10000|10000|||100.00|80.10|0.00|0.00|46665|56517|5140|10000|||99.63|101.42|0.00|-3.13|0001AD16|0|1| +38|2023-10-06T20:26:09.8650000-07:00|10FF0003|Gegehi Gehi|005A5A23|41517|51159|6550|10000|0||108.28|116.72|-0.02|-2.97|0|0|0||||||||||||||||||||||||| +39|2023-10-06T20:26:09.9980000-07:00|10FF0001|Sesuga Sapisuga|89453|89453|9100|10000|||104.18|93.34|0.00|-1.58| +21|2023-10-06T20:26:09.9980000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|352003|3FF50000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|20140265|40478540|10000|10000|||100.00|80.10|0.00|0.00|41517|51159|6550|10000|||108.13|115.78|0.00|-2.98|0001AD17|0|1| +38|2023-10-06T20:26:09.9980000-07:00|10FF0003|Gegehi Gehi|005A5A23|41517|51159|6250|10000|0||108.13|115.78|0.00|-2.98|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:09.9980000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +26|2023-10-06T20:26:09.9980000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51159|51159| +261|2023-10-06T20:26:09.5430000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:26:09.6350000-07:00|Change|10FF0006||||||||||| +26|2023-10-06T20:26:10.0430000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|56517|56517| +22|2023-10-06T20:26:10.0430000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|FBA0F|7988000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52054|56517|3750|10000|||110.02|103.76|0.00|-1.80|52054|56517|3750|10000|||110.02|103.76|0.00|-1.80|0001AD18|0|1| +24|2023-10-06T20:26:10.1770000-07:00|40022550|Zeromus|DoT|0|1025|20140265|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T20:26:10.1770000-07:00|40022550|Zeromus|005A5A00|20136132|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:10.1770000-07:00|EB0|Big Bang|30.00|E0000000||40022550|Zeromus|00|40478540|| +37|2023-10-06T20:26:10.2660000-07:00|40022550|Zeromus|0001AD14|20133935||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:10.2660000-07:00|40022550|Zeromus|0001AD11|20126040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:10.2660000-07:00|10FF0001|Sesuga Sapisuga|0001AD11|89453|89453|9500|10000|1||103.51|95.56|0.00|-1.76|1300|0|0|0| +21|2023-10-06T20:26:10.2660000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|9DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20136132|40478540|10000|10000|||100.00|80.10|0.00|0.00|49890|63038|6000|10000|||100.96|96.53|0.00|1.65|0001AD19|0|1| +36|2023-10-06T20:26:10.3100000-07:00|5CBC|3| +37|2023-10-06T20:26:10.3990000-07:00|40022550|Zeromus|0001AD16|20126004||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:10.3990000-07:00|40022A53|Carbuncle|53095|53095|10000|10000|||99.57|116.14|0.00|-0.18| +261|2023-10-06T20:26:09.9990000-07:00|Change|10FF0002||||||||| +22|2023-10-06T20:26:10.4430000-07:00|40022550|Zeromus|8B4D|Big Crunch|10FF0007|Kehabiqo Febiqo|750003|53D00000|8E0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|89994|89994|7600|10000|||92.87|92.81|-0.02|0.74|20126040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD1A|0|8| +22|2023-10-06T20:26:10.4430000-07:00|40022550|Zeromus|8B4D|Big Crunch|10FF0001|Sesuga Sapisuga|750003|520B0000|8E0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|89453|89453|9500|10000|||103.12|96.25|0.00|-1.77|20126040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD1A|1|8| +22|2023-10-06T20:26:10.4430000-07:00|40022550|Zeromus|8B4D|Big Crunch|10FF0005|Wuwuchu Wuchu|750003|833E0000|6D0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|49890|63038|6000|10000|||100.60|96.72|0.00|1.83|20126040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD1A|2|8| +22|2023-10-06T20:26:10.4430000-07:00|40022550|Zeromus|8B4D|Big Crunch|10FF0002|Suchichi Suchi|750003|81E40000|6D0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|51227|63089|6000|10000|||101.25|99.79|0.00|-2.39|20126040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD1A|3|8| +22|2023-10-06T20:26:10.4430000-07:00|40022550|Zeromus|8B4D|Big Crunch|10FF0006|Wowobora Gogobora|750003|78650000|790E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|46665|56517|5140|10000|||100.33|100.39|0.00|-3.13|20126040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD1A|4|8| +22|2023-10-06T20:26:10.4430000-07:00|40022550|Zeromus|8B4D|Big Crunch|10FF0004|Buhojaqe Zijaqe|750603|0|790E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|52054|56517|3750|10000|||109.30|103.62|0.00|-2.03|20126040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD1A|5|8| +22|2023-10-06T20:26:10.4430000-07:00|40022550|Zeromus|8B4D|Big Crunch|10FF0003|Gegehi Gehi|750003|81630000|CC0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|41517|51159|6250|10000|||107.54|111.96|0.00|-2.95|20126040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD1A|6|8| +22|2023-10-06T20:26:10.4430000-07:00|40022550|Zeromus|8B4D|Big Crunch|10FF0008|Kokosaze Lulusaze|750003|7A5B0000|CC0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|54174|55377|8250|10000|||97.83|116.99|0.00|3.08|20126040|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD1A|7|8| +261|2023-10-06T20:26:09.9990000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:26:09.9990000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:26:09.9990000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:26:09.9990000-07:00|Change|10FF0008||||| +39|2023-10-06T20:26:10.4880000-07:00|10FF0006|Wowobora Gogobora|47230|56517|5345|10000|||100.33|100.39|0.00|-3.13| +24|2023-10-06T20:26:10.5760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|14F8|89994|89994|7600|10000|||93.53|93.54|0.00|0.74|10FF0006|Wowobora Gogobora|0|46665|56517|5140|10000|||100.33|100.39|0.00|-3.13| +37|2023-10-06T20:26:10.5760000-07:00|40022550|Zeromus|0001AD15|20126004|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|05000A38|0|41F00000|| +26|2023-10-06T20:26:10.5760000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|56517| +21|2023-10-06T20:26:10.5770000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|716003|634A0000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|20126004|40478540|10000|10000|||100.00|80.10|0.00|0.00|49890|63038|6000|10000|||99.99|97.21|0.00|2.07|0001AD1B|0|1| +38|2023-10-06T20:26:10.5770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|7600|10000|1||94.21|94.29|0.00|0.74|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:10.5770000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:26:10.5770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|49890|63038|6000|10000|0||99.99|97.21|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:10.5770000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +26|2023-10-06T20:26:10.5770000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|63038|63038| +261|2023-10-06T20:26:10.2350000-07:00|Change|10FF0003||||||||| +24|2023-10-06T20:26:10.6670000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|9CD|49890|63038|6000|10000|||99.99|97.21|0.00|2.07|10FF0004|Buhojaqe Zijaqe|0|52054|56517|3750|10000|||109.06|103.46|0.00|-2.03| +24|2023-10-06T20:26:10.6670000-07:00|10FF0002|Suchichi Suchi|HoT|798|FF3|51227|63089|6000|10000|||100.78|99.90|0.00|-2.69|10FF0004|Buhojaqe Zijaqe|0|52054|56517|3750|10000|||109.06|103.46|0.00|-2.03| +24|2023-10-06T20:26:10.6670000-07:00|10FF0006|Wowobora Gogobora|HoT|798|9B2|47230|56517|5345|10000|||100.33|100.39|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|52054|56517|3750|10000|||109.06|103.46|0.00|-2.03| +24|2023-10-06T20:26:10.6670000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|9F4|89453|89453|9500|10000|||102.56|97.77|0.00|-1.97|10FF0004|Buhojaqe Zijaqe|0|52054|56517|3750|10000|||109.06|103.46|0.00|-2.03| +24|2023-10-06T20:26:10.6670000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|103A|89994|89994|7600|10000|||94.21|94.29|0.00|0.74|10FF0004|Buhojaqe Zijaqe|0|52054|56517|3750|10000|||109.06|103.46|0.00|-2.03| +24|2023-10-06T20:26:10.6670000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|FB0|52054|56517|3750|10000|||109.06|103.46|0.00|-2.03|10FF0004|Buhojaqe Zijaqe|0|52054|56517|3750|10000|||109.06|103.46|0.00|-2.03| +24|2023-10-06T20:26:10.6670000-07:00|10FF0003|Gegehi Gehi|HoT|798|995|41517|51159|6250|10000|||107.29|110.31|0.00|-2.98|10FF0004|Buhojaqe Zijaqe|0|52054|56517|3750|10000|||109.06|103.46|0.00|-2.03| +37|2023-10-06T20:26:10.6670000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD18|56070|56517|3750|10000|76||109.06|103.46|0.00|-2.03|1C00|0|0|02|0A000798|0|41700000|||||| +26|2023-10-06T20:26:10.6670000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +26|2023-10-06T20:26:10.6670000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|56517|56517| +38|2023-10-06T20:26:10.6670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|7600|10000|1||94.21|94.29|0.00|0.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:10.6670000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|89994|56517| +38|2023-10-06T20:26:10.6670000-07:00|10FF0002|Suchichi Suchi|005A5A16|55310|63089|6000|10000|0||100.78|99.90|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:10.6670000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|63089|56517| +38|2023-10-06T20:26:10.6670000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49712|56517|5345|10000|0||100.33|100.39|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:10.6670000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|56517|56517| +26|2023-10-06T20:26:10.6670000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|56517|56517| +38|2023-10-06T20:26:10.6670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|89453|9500|10000|1||102.56|97.77|0.00|-1.97|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:10.6670000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|89453|56517| +38|2023-10-06T20:26:10.6670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56070|56517|3750|10000|76||109.06|103.46|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:10.6670000-07:00|10FF0003|Gegehi Gehi|005A5A23|43970|51159|6250|10000|0||107.29|110.31|0.00|-2.98|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:10.6670000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51159|56517| +38|2023-10-06T20:26:10.6670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|52399|63038|6000|10000|0||99.99|97.21|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:10.6670000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|63038|56517| +261|2023-10-06T20:26:10.3320000-07:00|Add|40022A7D||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:10.7110000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|23DB0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|20126004|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|7600|10000|||94.91|95.06|-0.02|0.74|0001AD1C|0|1| +38|2023-10-06T20:26:10.7110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|89994|7600|10000|1||94.91|95.06|-0.02|0.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:10.7110000-07:00|A75|Surging Tempest|54.44|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|89994|89994| +37|2023-10-06T20:26:10.7550000-07:00|40022550|Zeromus|0001AD17|20109631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:10.7550000-07:00|10FF0003|Gegehi Gehi|0001AD17|43970|51159|6250|10000|0||107.16|109.47|0.00|-2.98|2300|0|0|01|080004D3|0|41F00000|| +38|2023-10-06T20:26:10.7550000-07:00|10FF0003|Gegehi Gehi|005A5A23|43970|51159|6250|10000|0||107.16|109.47|0.00|-2.98|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:26:10.8000000-07:00|40022550|Zeromus|0001AD19|20107107||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:10.8000000-07:00|10FF0005|Wuwuchu Wuchu|0001AD19|52399|63038|6000|10000|0||99.51|97.65|0.00|3.10|2700|0|0|01|0B000A1E|0|C1F00000|| +261|2023-10-06T20:26:10.4260000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:26:10.8890000-07:00|10FF0005|Wuwuchu Wuchu|53029|63038|6200|10000|||99.51|97.65|0.00|3.10| +261|2023-10-06T20:26:10.4260000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:26:10.9340000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|156003|9BF30000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|20107107|40478540|10000|10000|||100.00|80.10|0.00|0.00|54174|55377|8250|10000|||97.83|116.99|0.00|3.08|0001AD1D|0|1| +21|2023-10-06T20:26:10.9340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20107107|40478540|10000|10000|||100.00|80.10|0.00|0.00|89453|89453|9500|10000|||100.68|99.05|0.00|-2.43|0001AD1E|0|1| +31|2023-10-06T20:26:10.9340000-07:00|10FF0001||||| +261|2023-10-06T20:26:10.5230000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:26:11.0230000-07:00|10FF0008|Kokosaze Lulusaze|54727|55377|8150|10000|||97.83|116.99|0.00|3.08| +21|2023-10-06T20:26:11.0230000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|82D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20107107|40478540|10000|10000|||100.00|80.10|0.00|0.00|89994|89994|7600|10000|||97.09|97.48|0.00|2.70|0001AD1F|0|1| +261|2023-10-06T20:26:10.6470000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:26:11.1570000-07:00|10FF0004|Buhojaqe Zijaqe|56517|56517|3950|10000|||103.70|102.26|0.00|-1.92| +21|2023-10-06T20:26:11.1570000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|1E8F0000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|20107107|40478540|10000|10000|||100.00|80.10|0.00|0.00|55310|63089|6000|10000|||100.51|99.96|0.00|-2.86|0001AD20|0|1| +38|2023-10-06T20:26:11.1570000-07:00|10FF0002|Suchichi Suchi|005A5A16|55310|63089|6000|10000|0||100.51|99.96|0.00|-2.86|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.1570000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +26|2023-10-06T20:26:11.1570000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|63089|63089| +37|2023-10-06T20:26:11.2010000-07:00|40022550|Zeromus|0001AD1B|20081689||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:11.2010000-07:00|10FF0005|Wuwuchu Wuchu|0001AD1B|53029|63038|6200|10000|0||99.27|98.15|0.00|3.08|2700|0|0|01|0B000A1E|0|41F00000|| +38|2023-10-06T20:26:11.2010000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|53029|63038|6200|10000|0||99.27|98.15|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:26:11.2920000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.30|100.65|0.00|-0.88| +38|2023-10-06T20:26:11.2920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89994|128564|7600|10000|0||98.20|98.70|0.00|1.55|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|441|HP Penalty|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|89994|| +38|2023-10-06T20:26:11.2920000-07:00|10FF0002|Suchichi Suchi|005A5A16|55310|90128|6000|10000|0||100.51|99.96|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|441|HP Penalty|0.00|E0000000||10FF0002|Suchichi Suchi|00|63089|| +38|2023-10-06T20:26:11.2920000-07:00|40022550|Zeromus|005A5A00|20081689|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|EB0|Big Bang|0.00|E0000000||40022550|Zeromus|00|40478540|| +38|2023-10-06T20:26:11.2920000-07:00|40022A53|Carbuncle|005A5A00|53095|75851|10000|10000|0||99.57|116.14|0.00|-0.18|0|0|0|||| +26|2023-10-06T20:26:11.2920000-07:00|30|Well Fed|2088.11|10FF0008|Kokosaze Lulusaze|40022A53|Carbuncle|2964|53095|55377| +38|2023-10-06T20:26:11.2920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54727|79111|8150|10000|0||97.83|116.99|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|441|HP Penalty|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|55377|| +38|2023-10-06T20:26:11.2920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49712|80739|5345|10000|0||100.30|100.65|0.00|-0.88|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|441|HP Penalty|0.00|E0000000||10FF0006|Wowobora Gogobora|00|56517|| +38|2023-10-06T20:26:11.2920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89453|127791|9500|10000|0||100.12|99.29|0.00|-2.57|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|441|HP Penalty|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|89453|| +38|2023-10-06T20:26:11.2920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|80739|3950|10000|14||102.77|101.98|-0.02|-1.91|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|441|HP Penalty|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|56517|| +38|2023-10-06T20:26:11.2920000-07:00|10FF0003|Gegehi Gehi|005A5A23|43970|73085|6250|10000|0||104.48|106.41|0.00|-2.99|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|441|HP Penalty|0.00|E0000000||10FF0003|Gegehi Gehi|00|51159|| +38|2023-10-06T20:26:11.2920000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|53029|90055|6200|10000|0||99.24|98.65|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.2920000-07:00|441|HP Penalty|0.00|E0000000||10FF0005|Wuwuchu Wuchu|00|63038|| +261|2023-10-06T20:26:10.8780000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:26:11.3350000-07:00|10FF0007|Kehabiqo Febiqo|0001AD1A|68538|128564|7600|10000|0||98.20|98.70|0.00|1.55|1500|0|0|01|07000EB1|0|41700000|| +30|2023-10-06T20:26:11.3350000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|89994|56517| +26|2023-10-06T20:26:11.3350000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0007|Kehabiqo Febiqo|00|89994|40478540| +20|2023-10-06T20:26:11.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|102.77|101.98|-0.02|-1.91| +38|2023-10-06T20:26:11.3350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|68538|128564|7600|10000|0||98.20|98.70|0.00|1.55|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:11.3800000-07:00|10FF0001|Sesuga Sapisuga|0001AD1A|68450|127791|9500|10000|0||100.12|99.29|0.00|-2.57|1301|0|0|01|05000EB1|0|41700000|| +30|2023-10-06T20:26:11.3800000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:26:11.3800000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|40478540| +38|2023-10-06T20:26:11.3800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|68450|127791|9500|10000|0||100.12|99.29|0.00|-2.57|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:11.4240000-07:00|10FF0005|Wuwuchu Wuchu|0001AD1A|19431|90055|6200|10000|0||99.21|99.13|0.00|3.02|2702|0|0|01|0D000EB1|0|41700000|| +26|2023-10-06T20:26:11.4240000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|40478540| +37|2023-10-06T20:26:11.4700000-07:00|10FF0002|Suchichi Suchi|0001AD1A|22058|90128|6000|10000|0||100.51|99.96|0.00|-3.11|1603|0|0|02|0EB1|0|41700000|||||| +26|2023-10-06T20:26:11.4700000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0002|Suchichi Suchi|00|90128|40478540| +37|2023-10-06T20:26:11.4700000-07:00|40022550|Zeromus|0001AD1E|20080449||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:11.4700000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|1C8B0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20081689|40478540|10000|10000|||100.00|80.10|0.00|0.00|68450|127791|9500|10000|||100.12|99.29|0.00|-3.14|0001AD21|0|1| +38|2023-10-06T20:26:11.4700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|68450|127791|9500|10000|0||100.12|99.29|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:11.4700000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:26:11.1090000-07:00|Change|10FF0004||||||||||||||||||||||||| +261|2023-10-06T20:26:11.1090000-07:00|Change|10FF0008||||||||||||||||||||||| +37|2023-10-06T20:26:11.5140000-07:00|10FF0006|Wowobora Gogobora|0001AD1A|18891|80739|5345|10000|0||100.30|100.78|0.00|-1.39|2804|0|0|01|08000EB1|0|41700000|| +26|2023-10-06T20:26:11.5140000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0006|Wowobora Gogobora|00|80739|40478540| +37|2023-10-06T20:26:11.5600000-07:00|40022550|Zeromus|0001AD1F|20078356||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:11.5600000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD1A|56517|80739|3950|10000|14||101.25|101.41|0.00|-1.95|1C05|0|0|02|07000EB1|0|41700000|||||| +26|2023-10-06T20:26:11.5600000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|40478540| +37|2023-10-06T20:26:11.5600000-07:00|40022550|Zeromus|0001AD1D|20038433||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:11.5600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56517|80739|3950|10000|14||101.25|101.41|0.00|-1.95|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:11.5600000-07:00|77E|Catalyze|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:26:11.6050000-07:00|10FF0003|Gegehi Gehi|0001AD1A|10847|73085|6250|10000|0||102.57|104.99|0.00|-2.98|2306|0|0|01|03000EB1|0|41700000|| +26|2023-10-06T20:26:11.6050000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0003|Gegehi Gehi|00|73085|40478540| +21|2023-10-06T20:26:11.6050000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|20080449|40478540|10000|10000|||100.00|80.10|0.00|0.00|54727|79111|8150|10000|||97.84|116.90|0.00|3.05|0001AD22|0|1| +38|2023-10-06T20:26:11.6050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54727|79111|8150|10000|0||97.84|116.90|0.00|3.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:11.6050000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:26:11.2200000-07:00|Change|40022A53||||||||||| +38|2023-10-06T20:26:11.6500000-07:00|40022A7E||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:26:11.6500000-07:00|10FF0008|Kokosaze Lulusaze|0001AD1A|23404|79111|8150|10000|0||97.84|116.90|0.00|3.05|1B07|0|0|01|06000EB1|0|41700000|| +26|2023-10-06T20:26:11.6500000-07:00|EB1|Big Bounce|15.00|40022550|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|40478540| +24|2023-10-06T20:26:11.6500000-07:00|10FF0002|Suchichi Suchi|DoT|0|197F|22058|90128|6000|10000|||100.51|99.96|0.00|-3.11|10FF0006|Wowobora Gogobora|FFFFFFFF|18891|80739|5345|10000|||100.30|100.82|0.00|-1.96| +24|2023-10-06T20:26:11.6500000-07:00|10FF0002|Suchichi Suchi|HoT|0|CDA|22058|90128|6000|10000|||100.51|99.96|0.00|-3.11|10FF0006|Wowobora Gogobora|0|18891|80739|5345|10000|||100.30|100.82|0.00|-1.96| +38|2023-10-06T20:26:11.6500000-07:00|10FF0002|Suchichi Suchi|005A5A16|18821|90128|6000|10000|0||100.51|99.96|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:11.6500000-07:00|40022A7E||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +24|2023-10-06T20:26:11.6930000-07:00|10FF0003|Gegehi Gehi|DoT|0|18D5|10847|73085|6250|10000|||101.78|104.44|0.00|-2.97|10FF0003|Gegehi Gehi|FFFFFFFF|10847|73085|6250|10000|||101.78|104.44|0.00|-2.97| +24|2023-10-06T20:26:11.6930000-07:00|10FF0003|Gegehi Gehi|HoT|0|D7F|10847|73085|6250|10000|||101.78|104.44|0.00|-2.97|10FF0003|Gegehi Gehi|0|10847|73085|6250|10000|||101.78|104.44|0.00|-2.97| +38|2023-10-06T20:26:11.6930000-07:00|10FF0003|Gegehi Gehi|005A5A23|7945|73085|6250|10000|0||101.78|104.44|0.00|-2.97|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:26:11.3140000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T20:26:11.8270000-07:00|40022550|Zeromus|0001AD20|20030610||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:11.8270000-07:00|10FF0002|Suchichi Suchi|0001AD20|18821|90128|6000|10000|0||100.51|99.96|0.00|-3.11|1600|0|0|01|0A000322|0|41F00000|| +38|2023-10-06T20:26:11.8270000-07:00|10FF0002|Suchichi Suchi|005A5A16|18821|90128|6000|10000|0||100.51|99.96|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:11.8710000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|F37|68450|127791|9500|10000|||100.12|99.29|0.00|-3.14|10FF0001|Sesuga Sapisuga|FFFFFFFF|68450|127791|9500|10000|||100.12|99.29|0.00|-3.14| +24|2023-10-06T20:26:11.8710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D86|68450|127791|9500|10000|||100.12|99.29|0.00|-3.14|10FF0001|Sesuga Sapisuga|0|68450|127791|9500|10000|||100.12|99.29|0.00|-3.14| +24|2023-10-06T20:26:11.8710000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|9FC|68450|127791|9500|10000|||100.12|99.29|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:11.8710000-07:00|10FF0002|Suchichi Suchi|HoT|798|9B4|18821|90128|6000|10000|||100.51|99.96|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:11.8710000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1037|18891|80739|5345|10000|||100.30|100.91|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:11.8710000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|9EF|19431|90055|6200|10000|||99.03|100.61|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:11.8710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|975|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97|10FF0004|Buhojaqe Zijaqe|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:11.8710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|F4A|68538|128564|7600|10000|||101.57|100.36|0.00|2.21|10FF0004|Buhojaqe Zijaqe|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:11.8710000-07:00|10FF0003|Gegehi Gehi|HoT|798|F4A|7945|73085|6250|10000|||100.78|103.32|0.00|-2.97|10FF0004|Buhojaqe Zijaqe|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:11.8710000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:11.8710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1494|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97|10FF0004|Buhojaqe Zijaqe|0|56517|80739|3950|10000|||100.57|101.15|0.00|-1.97| +38|2023-10-06T20:26:11.8710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|72452|128564|7600|10000|0||101.57|100.36|0.00|2.21|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:11.8710000-07:00|10FF0002|Suchichi Suchi|005A5A16|21305|90128|6000|10000|0||100.51|99.96|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:11.8710000-07:00|10FF0006|Wowobora Gogobora|005A5A28|23042|80739|5345|10000|0||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:26:11.8710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|70573|127791|9500|10000|0||100.12|99.29|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:11.8710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64206|80739|4500|10000|6||100.57|101.15|0.00|-1.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:11.8710000-07:00|10FF0003|Gegehi Gehi|005A5A23|11859|73085|6250|10000|0||100.78|103.32|0.00|-2.97|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:26:11.8710000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|21974|90055|6200|10000|0||99.03|100.61|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:26:11.5070000-07:00|40022A7E|Emerald Garuda|00|5A|10FF0008|00||10263|13506|72376|75851|10000|10000|||99.69|117.42|0.00|3.09| +261|2023-10-06T20:26:11.5070000-07:00|Add|40022A7E||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:11.9600000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|1A9D|19431|90055|6200|10000|||99.03|100.61|0.00|3.11|40022550|Zeromus|FFFFFFFF|20030610|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:11.9600000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|C62|19431|90055|6200|10000|||99.03|100.61|0.00|3.11|40022550|Zeromus|0|20030610|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:11.9600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|18331|90055|6200|10000|0||99.03|100.61|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:11.6090000-07:00|Change|40022A7E||||| +261|2023-10-06T20:26:11.6090000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:26:11.7050000-07:00|Change|10FF0006||||||||||||||||||| +24|2023-10-06T20:26:12.0050000-07:00|10FF0006|Wowobora Gogobora|DoT|0|174B|23042|80739|5345|10000|||100.30|100.91|0.00|-3.13|40022550|Zeromus|FFFFFFFF|20030610|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:12.0050000-07:00|10FF0006|Wowobora Gogobora|HoT|0|CD9|23042|80739|5345|10000|||100.30|100.91|0.00|-3.13|40022550|Zeromus|0|20030610|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:12.0050000-07:00|10FF0006|Wowobora Gogobora|005A5A28|20368|80739|5895|10000|0||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:26:12.0490000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|333C0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|20030610|40478540|10000|10000|||100.00|80.10|0.00|0.00|18331|90055|6200|10000|||98.99|100.92|-0.01|-3.10|0001AD23|0|1| +38|2023-10-06T20:26:12.0490000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|18331|90055|6200|10000|0||98.99|100.92|-0.01|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:12.0490000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:26:12.0490000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:26:12.1370000-07:00|10FF0002|Suchichi Suchi|1D76|Bloodbath|10FF0002|Suchichi Suchi|190E|540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21305|90128|6000|10000|||100.51|99.96|0.00|-3.11|21305|90128|6000|10000|||100.51|99.96|0.00|-3.11|0001AD24|0|1| +39|2023-10-06T20:26:12.2270000-07:00|10FF0007|Kehabiqo Febiqo|73737|128564|7800|10000|||102.28|100.36|0.00|3.01| +21|2023-10-06T20:26:12.2270000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|574D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|20030610|40478540|10000|10000|||100.00|80.10|0.00|0.00|20368|80739|5895|10000|||100.30|100.91|0.00|-3.13|0001AD25|0|1| +37|2023-10-06T20:26:12.3600000-07:00|40022550|Zeromus|0001AD1C|20021431||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:12.3600000-07:00|10FF0003|Gegehi Gehi|12589|73085|6450|10000|||100.45|101.23|0.00|-2.96| +20|2023-10-06T20:26:12.4040000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|100.42|101.07|0.00|-2.96| +39|2023-10-06T20:26:12.4490000-07:00|10FF0002|Suchichi Suchi|22206|90128|6200|10000|||100.51|99.96|0.00|-3.11| +261|2023-10-06T20:26:12.0640000-07:00|Change|10FF0002||||||||||||| +261|2023-10-06T20:26:12.0640000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T20:26:12.5390000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|F4A|73737|128564|7800|10000|||102.27|100.36|0.00|3.02|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:12.5390000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|15C4|73737|128564|7800|10000|||102.27|100.36|0.00|3.02|10FF0004|Buhojaqe Zijaqe|0|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:12.5390000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|1723|23404|79111|8150|10000|||98.43|112.46|0.00|3.03|10FF0006|Wowobora Gogobora|FFFFFFFF|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:12.5390000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D8E|23404|79111|8150|10000|||98.43|112.46|0.00|3.03|10FF0006|Wowobora Gogobora|0|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13| +21|2023-10-06T20:26:12.5390000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20021431|40478540|10000|10000|||100.00|80.10|0.00|0.00|22206|90128|6200|10000|||100.51|99.96|0.00|-3.11|0001AD26|0|1| +38|2023-10-06T20:26:12.5390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|75395|128564|7800|10000|0||102.27|100.36|0.00|3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:12.5390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|20951|79111|8700|10000|0||98.43|112.46|0.00|3.03|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:26:12.1750000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:26:12.5830000-07:00|40022550|Zeromus|0001AD23|20008315||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:12.5830000-07:00|10FF0005|Wuwuchu Wuchu|0001AD23|18331|90055|6200|10000|0||98.99|100.94|0.00|3.09|2700|0|0|01|0B000A1F|0|41F00000|| +38|2023-10-06T20:26:12.5830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|18331|90055|6200|10000|0||98.99|100.94|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:12.6290000-07:00|10FF0008|Kokosaze Lulusaze|0001AD22|20951|79111|8700|10000|0||98.56|111.45|0.00|3.02|1B00|0|0|01|05000AA5|0|0|| +38|2023-10-06T20:26:12.6290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|20951|79111|8700|10000|0||98.56|111.45|0.00|3.02|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:26:12.2800000-07:00|Change|40022A7E||| +22|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|1DAE0000|7C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|0001AD27|0|8| +22|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|12950000|BB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|12589|73085|6450|10000|||100.39|100.96|0.00|-3.03|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|0001AD27|1|8| +22|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|12ED0000|480E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|0001AD27|2|8| +22|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|12540000|530E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|22206|90128|6200|10000|||100.51|99.96|0.00|-3.11|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|0001AD27|3|8| +22|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|12B80000|F30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|18331|90055|6200|10000|||98.99|100.94|0.00|3.09|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|0001AD27|4|8| +22|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|12E40000|390E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|75395|128564|7800|10000|||102.24|100.36|0.00|3.04|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|0001AD27|5|8| +22|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|12AE0000|E30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|70573|127791|9500|10000|||100.12|99.29|0.00|-3.14|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|0001AD27|6|8| +22|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|132D0000|AE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|20951|79111|8700|10000|||98.56|111.45|0.00|3.02|64206|80739|4500|10000|||100.57|101.15|0.00|-1.97|0001AD27|7|8| +38|2023-10-06T20:26:12.7190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|75395|128564|7800|10000|6||102.24|100.36|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:12.7190000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:26:12.7190000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:12.7190000-07:00|10FF0002|Suchichi Suchi|005A5A16|22206|90128|6200|10000|8||100.51|99.96|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:12.7190000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:12.7190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|20951|79111|8700|10000|9||98.56|111.45|0.00|3.02|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:12.7190000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:12.7190000-07:00|10FF0006|Wowobora Gogobora|005A5A28|20368|80739|5495|10000|9||100.30|100.91|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:12.7190000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:12.7190000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:12.7190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|70573|127791|9500|10000|5||100.12|99.29|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:12.7190000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:12.7190000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64206|80739|3500|10000|15||100.57|101.15|0.00|-1.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:12.7190000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:12.7190000-07:00|10FF0003|Gegehi Gehi|005A5A23|12589|73085|6450|10000|10||100.39|100.96|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:12.7190000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:12.7190000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|18331|90055|6200|10000|8||98.99|100.94|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:12.7190000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:26:12.3750000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:12.7630000-07:00|10FF0002|Suchichi Suchi|0001AD24|22206|90128|6200|10000|8||100.51|99.96|0.00|-3.11|1600|0|0|01|0B000054|0|41A00000|| +26|2023-10-06T20:26:12.7630000-07:00|54|Bloodbath|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:26:12.7630000-07:00|40022550|Zeromus|0001AD21|20001008||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:12.7630000-07:00|10FF0001|Sesuga Sapisuga|0001AD21|70573|127791|9900|10000|5||100.12|99.29|0.00|-3.14|1300|0|0|0| +261|2023-10-06T20:26:12.3750000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T20:26:12.8070000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|180B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20008315|40478540|10000|10000|||100.00|80.10|0.00|0.00|18331|90055|6200|10000|||98.99|100.94|0.00|3.09|0001AD28|0|1| +24|2023-10-06T20:26:12.8960000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|156F|75395|128564|7800|10000|||101.93|99.82|0.00|3.07|10FF0006|Wowobora Gogobora|0|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13| +37|2023-10-06T20:26:12.8960000-07:00|40022550|Zeromus|0001AD25|19978659||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:12.8960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80882|128564|7800|10000|6||101.93|99.82|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +22|2023-10-06T20:26:12.9850000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0006|Wowobora Gogobora|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|0001AD29|0|8| +22|2023-10-06T20:26:12.9850000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0003|Gegehi Gehi|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|12589|73085|6450|10000|||100.39|100.88|-0.02|-3.12|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|0001AD29|1|8| +22|2023-10-06T20:26:12.9850000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0004|Buhojaqe Zijaqe|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|64206|80739|3500|10000|||100.57|101.15|0.00|-1.97|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|0001AD29|2|8| +22|2023-10-06T20:26:12.9850000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0002|Suchichi Suchi|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|22206|90128|6200|10000|||100.51|99.96|0.00|-3.11|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|0001AD29|3|8| +22|2023-10-06T20:26:12.9850000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0005|Wuwuchu Wuchu|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|18331|90055|6200|10000|||98.99|100.94|0.00|3.09|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|0001AD29|4|8| +22|2023-10-06T20:26:12.9850000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0001|Sesuga Sapisuga|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|70573|127791|9900|10000|||100.12|99.29|0.00|-3.14|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|0001AD29|5|8| +22|2023-10-06T20:26:12.9850000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0007|Kehabiqo Febiqo|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|80882|128564|7800|10000|||101.63|99.37|0.00|3.08|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|0001AD29|6|8| +22|2023-10-06T20:26:12.9850000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0008|Kokosaze Lulusaze|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|20951|79111|8700|10000|||99.07|108.37|0.00|2.99|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13|0001AD29|7|8| +38|2023-10-06T20:26:12.9850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64206|80739|3500|10000|15||100.57|101.15|0.00|-1.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:12.9850000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +39|2023-10-06T20:26:13.0290000-07:00|10FF0001|Sesuga Sapisuga|71850|127791|10000|10000|||100.12|99.29|0.00|-3.14| +261|2023-10-06T20:26:12.5710000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T20:26:13.0740000-07:00|40022550|Zeromus|0001AD26|19976483||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:13.1190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|20951|79111|8700|10000|9||99.26|107.26|0.00|2.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.1190000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|79111|80739| +261|2023-10-06T20:26:12.6880000-07:00|Change|10FF0006||||||||||||||||| +261|2023-10-06T20:26:12.6880000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:26:13.1630000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|28740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19976483|40478540|10000|10000|||100.00|80.10|0.00|0.00|80882|128564|7800|10000|||101.38|99.25|0.00|3.10|0001AD2A|0|1| +21|2023-10-06T20:26:13.1630000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19976483|40478540|10000|10000|||100.00|80.10|0.00|0.00|64206|80739|3500|10000|||100.57|101.15|0.00|-1.97|0001AD2B|0|1| +24|2023-10-06T20:26:13.2080000-07:00|40022550|Zeromus|DoT|0|2021|19976483|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|20368|80739|5495|10000|||100.30|100.91|0.00|-3.13| +21|2023-10-06T20:26:13.2080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|6770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19976483|40478540|10000|10000|||100.00|80.10|0.00|0.00|71850|127791|10000|10000|||100.12|99.29|0.00|-3.14|0001AD2C|0|1| +38|2023-10-06T20:26:13.2080000-07:00|40022550|Zeromus|005A5A00|19968258|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +31|2023-10-06T20:26:13.2080000-07:00|10FF0001||||| +38|2023-10-06T20:26:13.2530000-07:00|10FF0006|Wowobora Gogobora|005A5A28|20368|80739|5495|10000|9||100.30|100.91|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.2530000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|80739|80739| +36|2023-10-06T20:26:13.3410000-07:00|5D98|3| +38|2023-10-06T20:26:13.3870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|71850|127791|10000|10000|5||100.12|99.29|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.3870000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|127791|80739| +21|2023-10-06T20:26:13.4740000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|BC10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19968258|40478540|10000|10000|||100.00|80.10|0.00|0.00|18331|90055|6200|10000|||98.99|100.94|0.00|3.09|0001AD2D|0|1| +261|2023-10-06T20:26:13.1490000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:26:13.5190000-07:00|40022550|Zeromus|0001AD28|19962103||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:13.5190000-07:00|10FF0006|Wowobora Gogobora|21175|80739|5700|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:13.5190000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|18331|90055|6200|10000|8||98.99|100.94|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.5190000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|1E|90055|80739| +21|2023-10-06T20:26:13.5630000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|716003|65610000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|19962103|40478540|10000|10000|||100.00|80.10|0.00|0.00|18331|90055|6200|10000|||98.99|100.94|0.00|3.09|0001AD2E|0|1| +38|2023-10-06T20:26:13.5630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|18331|90055|6200|10000|8||98.99|100.94|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:13.5630000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:26:13.5630000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:26:13.6520000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|27650000|104|75C8000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|19962103|40478540|10000|10000|||100.00|80.10|0.00|0.00|22206|90128|6200|10000|||100.20|99.98|0.00|-3.10|0001AD2F|0|1| +21|2023-10-06T20:26:13.6520000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19962103|40478540|10000|10000|||100.00|80.10|0.00|0.00|21175|80739|5700|10000|||100.30|100.91|0.00|-3.13|0001AD30|0|1| +38|2023-10-06T20:26:13.6520000-07:00|10FF0002|Suchichi Suchi|005A5A16|22206|90128|6200|10000|8||100.20|99.98|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.6520000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:26:13.6520000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:26:13.6520000-07:00|10FF0003|Gegehi Gehi|005A5A23|12589|73085|6450|10000|10||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.6520000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73085|80739| +261|2023-10-06T20:26:13.2400000-07:00|Change|40022A53||| +37|2023-10-06T20:26:13.6960000-07:00|40022550|Zeromus|0001AD2B|19961985||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:13.6960000-07:00|40022A7E|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|350003|5AA10000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|19962103|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||99.69|117.42|0.00|3.09|0001AD31|0|1| +37|2023-10-06T20:26:13.7410000-07:00|40022550|Zeromus|0001AD2C|19960330||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:26:13.7410000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:13.7860000-07:00|10FF0002|Suchichi Suchi|005A5A16|22206|90128|6200|10000|8||100.15|99.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.7860000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|1E|90128|80739| +261|2023-10-06T20:26:13.4400000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:26:13.8310000-07:00|40022550|Zeromus|0001AD2A|19949974||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:13.8310000-07:00|10FF0006|Wowobora Gogobora|0001AD29|21175|80739|5700|10000|9||100.30|100.91|0.00|-3.13|2800|0|0|02|04000A3C|0|41700000|||||| +26|2023-10-06T20:26:13.8310000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:13.8310000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:26:13.8310000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD27|71804|80739|3500|10000|15||100.57|101.15|0.00|-1.97|1C00|0|0|01|06000129|0|41E774B9|| +20|2023-10-06T20:26:13.8310000-07:00|10FF0004|Buhojaqe Zijaqe|433F|Summon Eos|10FF0004|Buhojaqe Zijaqe|1.444|100.57|101.15|0.00|-1.97| +21|2023-10-06T20:26:13.8310000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|454003|2A500000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|19961985|40478540|10000|10000|||100.00|80.10|0.00|0.00|12589|73085|6450|10000|||100.39|100.88|0.00|-3.12|0001AD32|0|1| +38|2023-10-06T20:26:13.8310000-07:00|10FF0003|Gegehi Gehi|005A5A23|12589|73085|6250|10000|10||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:13.8310000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:26:13.8310000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:13.4400000-07:00|Change|10FF0001||| +39|2023-10-06T20:26:13.8760000-07:00|10FF0005|Wuwuchu Wuchu|19231|90055|6400|10000|||98.99|100.94|0.00|3.09| +21|2023-10-06T20:26:13.8760000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19949974|40478540|10000|10000|||100.00|80.10|0.00|0.00|20951|79111|8700|10000|||100.60|101.85|0.00|3.04|0001AD33|0|1| +261|2023-10-06T20:26:13.4400000-07:00|Change|10FF0005||||||||||| +38|2023-10-06T20:26:13.9200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80882|128564|7800|10000|6||100.79|98.95|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.9200000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|128564|80739| +37|2023-10-06T20:26:13.9660000-07:00|10FF0003|Gegehi Gehi|0001AD29|12589|73085|6250|10000|10||100.39|100.88|0.00|-3.12|2301|0|0|02|08000A3C|0|41700000|||||| +26|2023-10-06T20:26:13.9660000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:26:13.9660000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:26:13.9660000-07:00|10FF0003|Gegehi Gehi|0001AD27|17346|73085|6250|10000|10||100.39|100.88|0.00|-3.12|2301|0|0|01|09000129|0|41E6624A|| +21|2023-10-06T20:26:13.9660000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|31AB0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|19949974|40478540|10000|10000|||100.00|80.10|0.00|0.00|71850|127791|10000|10000|||100.12|99.29|0.00|-3.14|0001AD34|0|1| +38|2023-10-06T20:26:13.9660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|71850|127791|10000|10000|5||100.12|99.29|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:13.9660000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:26:13.6350000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T20:26:14.0090000-07:00|40022550|Zeromus|0001AD2D|19946965||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:14.0090000-07:00|10FF0005|Wuwuchu Wuchu|0001AD2D|19231|90055|6400|10000|8||98.99|100.94|0.00|3.09|2700|0|0|01|07000A1E|0|C1F00000|| +39|2023-10-06T20:26:14.0540000-07:00|10FF0008|Kokosaze Lulusaze|21742|79111|8900|10000|||100.77|100.84|-0.01|3.13| +37|2023-10-06T20:26:14.0990000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD29|71804|80739|3500|10000|15||100.57|101.15|0.00|-1.97|1C02|0|0|02|05000A3C|0|41700000|||||| +26|2023-10-06T20:26:14.0990000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:26:14.0990000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:26:14.0990000-07:00|10FF0006|Wowobora Gogobora|0001AD27|26020|80739|5700|10000|9||100.30|100.91|0.00|-3.13|2802|0|0|01|09000129|0|41E54FDB|| +20|2023-10-06T20:26:14.0990000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|100.77|100.84|-0.01|3.13| +21|2023-10-06T20:26:14.0990000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19949974|40478540|10000|10000|||100.00|80.10|0.00|0.00|17346|73085|6250|10000|||100.39|100.88|0.00|-3.12|0001AD35|0|1| +261|2023-10-06T20:26:13.7520000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:26:14.1430000-07:00|10FF0004|Buhojaqe Zijaqe|72611|80739|3700|10000|||100.57|101.15|0.00|-1.97| +37|2023-10-06T20:26:14.1880000-07:00|40022550|Zeromus|0001AD30|19946928||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:14.1880000-07:00|40022550|Zeromus|0001AD2E|19920975||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:14.1880000-07:00|10FF0005|Wuwuchu Wuchu|0001AD2E|19231|90055|6400|10000|8||98.99|100.94|0.00|3.09|2700|0|0|01|07000A1E|0|41F00000|| +38|2023-10-06T20:26:14.1880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|19231|90055|6400|10000|8||98.99|100.94|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:14.2330000-07:00|10FF0002|Suchichi Suchi|0001AD29|22206|90128|6200|10000|8||100.05|99.99|-0.02|-3.14|1603|0|0|03|06000A3C|0|41700000|||||||||| +26|2023-10-06T20:26:14.2330000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:26:14.2330000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:26:14.2330000-07:00|10FF0002|Suchichi Suchi|0001AD27|26898|90128|6200|10000|8||100.05|99.99|-0.02|-3.14|1603|0|0|02|03000129|0|41E43D6C|||||| +37|2023-10-06T20:26:14.2770000-07:00|40022550|Zeromus|0001AD2F|19910890||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:14.2770000-07:00|10FF0002|Suchichi Suchi|0001AD2F|28782|90128|6200|10000|8||100.05|99.99|0.00|-3.14|1600|0|0|01|0C000747|0|41F00000|| +21|2023-10-06T20:26:14.2780000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|714003|1E7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19920975|40478540|10000|10000|||100.00|80.10|0.00|0.00|19231|90055|6400|10000|||98.99|100.94|0.00|3.09|0001AD36|0|1| +38|2023-10-06T20:26:14.2780000-07:00|10FF0002|Suchichi Suchi|005A5A16|28782|90128|6200|10000|8||100.05|99.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:14.3670000-07:00|10FF0005|Wuwuchu Wuchu|0001AD29|19231|90055|6400|10000|8||98.99|100.94|0.00|3.09|2704|0|0|02|0B000A3C|0|41700000|||||| +26|2023-10-06T20:26:14.3670000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:26:14.3670000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:26:14.3670000-07:00|10FF0005|Wuwuchu Wuchu|0001AD27|24023|90055|6400|10000|8||98.99|100.94|0.00|3.09|2704|0|0|01|0E000129|0|41E32AFD|| +37|2023-10-06T20:26:14.4110000-07:00|40022550|Zeromus|0001AD33|19910740||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:14.4110000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|D000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19910890|40478540|10000|10000|||100.00|80.10|0.00|0.00|80882|128564|7800|10000|||100.79|98.95|0.00|-3.10|0001AD37|0|1| +37|2023-10-06T20:26:14.5000000-07:00|10FF0001|Sesuga Sapisuga|0001AD29|71850|127791|10000|10000|5||100.12|99.29|0.00|-3.14|1305|0|0|02|03000A3C|0|41700000|||||| +26|2023-10-06T20:26:14.5000000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:26:14.5000000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:26:14.5000000-07:00|10FF0007|Kehabiqo Febiqo|0001AD27|85718|128564|7800|10000|6||100.79|98.95|0.00|-3.10|1505|0|0|01|0A000129|0|41E2188E|| +261|2023-10-06T20:26:14.0940000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:26:14.6350000-07:00|10FF0007|Kehabiqo Febiqo|0001AD29|85718|128564|7800|10000|6||100.79|98.95|0.00|-3.10|1506|0|0|02|06000A3C|0|41700000|||||| +26|2023-10-06T20:26:14.6350000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:26:14.6350000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:26:14.6350000-07:00|10FF0001|Sesuga Sapisuga|0001AD27|76632|127791|10000|10000|5||100.12|99.29|0.00|-3.14|1306|0|0|01|06000129|0|41E10413|| +37|2023-10-06T20:26:14.6350000-07:00|40022550|Zeromus|0001AD32|19899908||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:14.6350000-07:00|40022550|Zeromus|0001AD35|19899907||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:14.6350000-07:00|10FF0002|Suchichi Suchi|DoT|0|0|28782|90128|6200|10000|||100.05|99.99|0.00|-3.14|10FF0002|Suchichi Suchi|FFFFFFFF|28782|90128|6200|10000|||100.05|99.99|0.00|-3.14| +24|2023-10-06T20:26:14.6350000-07:00|10FF0002|Suchichi Suchi|HoT|0|3161|28782|90128|6200|10000|||100.05|99.99|0.00|-3.14|10FF0002|Suchichi Suchi|0|28782|90128|6200|10000|||100.05|99.99|0.00|-3.14| +38|2023-10-06T20:26:14.6350000-07:00|10FF0002|Suchichi Suchi|005A5A16|41423|90128|6200|10000|1||100.05|99.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:14.6780000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|17346|73085|6250|10000|||100.39|100.88|0.00|-3.12|10FF0006|Wowobora Gogobora|FFFFFFFF|26020|80739|5700|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:14.6780000-07:00|10FF0003|Gegehi Gehi|HoT|0|1EAB|17346|73085|6250|10000|||100.39|100.88|0.00|-3.12|10FF0006|Wowobora Gogobora|0|26020|80739|5700|10000|||100.30|100.91|0.00|-3.13| +21|2023-10-06T20:26:14.6780000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|344A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|19910740|40478540|10000|10000|||100.00|80.10|0.00|0.00|26020|80739|5700|10000|||100.30|100.91|0.00|-3.13|0001AD38|0|1| +38|2023-10-06T20:26:14.6780000-07:00|10FF0003|Gegehi Gehi|005A5A23|25197|73085|6250|10000|1||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:14.7670000-07:00|10FF0008|Kokosaze Lulusaze|0001AD29|21742|79111|8900|10000|9||100.79|100.72|0.00|-3.10|1B07|0|0|02|03000A3C|0|41700000|||||| +26|2023-10-06T20:26:14.7670000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:26:14.7670000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:26:14.7680000-07:00|10FF0008|Kokosaze Lulusaze|0001AD27|26651|79111|8900|10000|9||100.79|100.72|0.00|-3.10|1B07|0|0|01|09000129|0|41DFF5BD|| +21|2023-10-06T20:26:14.7680000-07:00|10FF0004|Buhojaqe Zijaqe|433F|Summon Eos|10FF0004|Buhojaqe Zijaqe|3E|9D8000|1B|433F8000|0|0|0|0|0|0|0|0|0|0|0|0|72611|80739|3700|10000|||100.57|101.15|0.00|-1.97|72611|80739|3700|10000|||100.57|101.15|0.00|-1.97|0001AD39|0|1| +38|2023-10-06T20:26:14.8120000-07:00|40022A88||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:26:14.8130000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|30160000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|19899907|40478540|10000|10000|||100.00|80.10|0.00|0.00|25197|73085|6250|10000|||100.39|100.88|0.00|-3.12|0001AD3A|0|1| +38|2023-10-06T20:26:14.8130000-07:00|40022A88||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:26:14.8130000-07:00|10FF0003|Gegehi Gehi|005A5A23|25197|73085|5950|10000|1||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:14.8130000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:14.4040000-07:00|Change|10FF0008||||||||||||||||||||||| +24|2023-10-06T20:26:14.8570000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|76632|127791|10000|10000|||100.12|99.29|0.00|-3.14|10FF0001|Sesuga Sapisuga|FFFFFFFF|76632|127791|10000|10000|||100.12|99.29|0.00|-3.14| +24|2023-10-06T20:26:14.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|265B|76632|127791|10000|10000|||100.12|99.29|0.00|-3.14|10FF0001|Sesuga Sapisuga|0|76632|127791|10000|10000|||100.12|99.29|0.00|-3.14| +24|2023-10-06T20:26:14.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|ACD|76632|127791|10000|10000|||100.12|99.29|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1186|85718|128564|7800|10000|||100.79|98.95|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0002|Suchichi Suchi|HoT|798|A95|41423|90128|6200|10000|||100.05|99.99|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|118F|26651|79111|8900|10000|||100.79|100.72|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0003|Gegehi Gehi|HoT|798|A9D|25197|73085|6250|10000|||100.39|100.88|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0006|Wowobora Gogobora|HoT|798|A7E|26020|80739|5300|10000|||100.30|100.91|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|ABA|24023|90055|6400|10000|||98.99|100.94|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|AFA|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:14.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1E64|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97|10FF0004|Buhojaqe Zijaqe|0|72611|80739|3500|10000|||100.57|101.15|0.00|-1.97| +38|2023-10-06T20:26:14.8570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90204|128564|7800|10000|6||100.79|98.95|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:14.8570000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:26:14.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:14.8570000-07:00|10FF0002|Suchichi Suchi|005A5A16|44132|90128|6200|10000|1||100.05|99.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:14.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:14.8570000-07:00|40022550|Zeromus|005A5A00|19899907|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:14.8570000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40022550|Zeromus|00|40478540|128564| +38|2023-10-06T20:26:14.8570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|31146|79111|8900|10000|9||100.79|100.72|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:14.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:14.8570000-07:00|10FF0006|Wowobora Gogobora|005A5A28|28706|80739|5300|10000|9||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:14.8570000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:14.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:14.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89216|127791|10000|10000|2||100.12|99.29|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:14.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:14.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4050|10000|7||100.57|101.15|0.00|-1.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:14.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:14.8570000-07:00|10FF0003|Gegehi Gehi|005A5A23|27914|73085|5950|10000|1||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:14.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:14.8570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|26769|90055|6400|10000|8||98.99|100.94|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:14.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:26:14.9440000-07:00|40022550|Zeromus|0001AD37|19896579||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:14.9440000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|0|26769|90055|6400|10000|||98.99|100.94|0.00|3.09|10FF0006|Wowobora Gogobora|FFFFFFFF|28706|80739|5300|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:14.9440000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|3078|26769|90055|6400|10000|||98.99|100.94|0.00|3.09|10FF0006|Wowobora Gogobora|0|28706|80739|5300|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:14.9440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|39177|90055|6400|10000|1||98.99|100.94|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:14.9900000-07:00|40022550|Zeromus|0001AD31|19873378||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:14.9900000-07:00|40022550|Zeromus|0001AD36|19865572||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:14.9900000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|28706|80739|5300|10000|||100.30|100.91|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|28706|80739|5300|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:14.9900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|24BC|28706|80739|5300|10000|||100.30|100.91|0.00|-3.13|10FF0006|Wowobora Gogobora|0|28706|80739|5300|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:14.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|38110|80739|5850|10000|2||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +20|2023-10-06T20:26:15.0790000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|98.99|100.94|0.00|3.09| +261|2023-10-06T20:26:14.6820000-07:00|Change|10FF0005||||||||||||| +261|2023-10-06T20:26:14.6820000-07:00|Change|10FF0003||| +261|2023-10-06T20:26:14.6820000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T20:26:14.7980000-07:00|Add|40022A88||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:26:14.7980000-07:00|40022A88|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||98.97|100.50|0.00|2.38| +261|2023-10-06T20:26:14.7980000-07:00|Change|40022A88||||| +37|2023-10-06T20:26:15.2570000-07:00|40022550|Zeromus|0001AD34|19852857||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:15.2580000-07:00|10FF0007|Kehabiqo Febiqo|91489|128564|8000|10000|||100.89|98.95|0.00|-3.14| +261|2023-10-06T20:26:14.9170000-07:00|Change|10FF0007||||||||||| +22|2023-10-06T20:26:15.3030000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|200004|59CF0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|0001AD3C|0|8| +22|2023-10-06T20:26:15.3030000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|4|36AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27914|73085|5950|10000|||100.39|100.88|0.00|-3.12|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|0001AD3C|1|8| +22|2023-10-06T20:26:15.3030000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|36530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4050|10000|||100.57|101.15|0.00|-1.97|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|0001AD3C|2|8| +22|2023-10-06T20:26:15.3030000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|4|38D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31146|79111|8900|10000|||100.79|100.72|0.00|-3.10|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|0001AD3C|3|8| +22|2023-10-06T20:26:15.3030000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|4|38770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44132|90128|6200|10000|||100.05|99.99|0.00|-3.14|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|0001AD3C|4|8| +22|2023-10-06T20:26:15.3030000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|38370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39177|90055|6400|10000|||98.99|100.94|0.00|3.09|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|0001AD3C|5|8| +22|2023-10-06T20:26:15.3030000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|4|37120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89216|127791|10000|10000|||100.12|99.29|0.00|-3.14|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|0001AD3C|6|8| +22|2023-10-06T20:26:15.3030000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|4|38730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|91489|128564|8000|10000|||100.98|98.95|0.00|3.14|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13|0001AD3C|7|8| +24|2023-10-06T20:26:15.3470000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|17B5|91489|128564|8000|10000|||100.98|98.95|0.00|3.14|10FF0006|Wowobora Gogobora|0|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13| +37|2023-10-06T20:26:15.3470000-07:00|40022550|Zeromus|0001AD38|19839471||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:15.3470000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|D440000|104|27A8000|0|0|0|0|0|0|0|0|0|0|0|0|19852857|40478540|10000|10000|||100.00|80.10|0.00|0.00|44132|90128|6200|10000|||100.05|99.99|0.00|-3.14|0001AD3D|0|1| +38|2023-10-06T20:26:15.3470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|97558|128564|8000|10000|6||100.98|98.95|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:26:15.3910000-07:00|10FF0003|Gegehi Gehi|28644|73085|6150|10000|||100.39|100.88|0.00|-3.12| +261|2023-10-06T20:26:15.1510000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T20:26:15.4360000-07:00|10FF0002|Suchichi Suchi|45033|90128|6400|10000|||100.05|99.99|0.00|-3.14| +21|2023-10-06T20:26:15.4800000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19839471|40478540|10000|10000|||100.00|80.10|0.00|0.00|89216|127791|10000|10000|||100.12|99.29|0.00|-3.14|0001AD3E|0|1| +31|2023-10-06T20:26:15.4800000-07:00|10FF0001||||| +24|2023-10-06T20:26:15.5240000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|97558|128564|8000|10000|||101.16|98.95|0.00|3.12|10FF0006|Wowobora Gogobora|FFFFFFFF|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:15.5240000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1DA7|97558|128564|8000|10000|||101.16|98.95|0.00|3.12|10FF0006|Wowobora Gogobora|0|38110|80739|5850|10000|||100.30|100.91|0.00|-3.13| +261|2023-10-06T20:26:15.2640000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:26:15.5240000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|31146|79111|8900|10000|||100.79|100.72|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|80739|80739|4050|10000|||100.57|101.15|0.00|-1.97| +24|2023-10-06T20:26:15.5240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2944|31146|79111|8900|10000|||100.79|100.72|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4050|10000|||100.57|101.15|0.00|-1.97| +21|2023-10-06T20:26:15.5240000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|1BAC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|97558|128564|8000|10000|||101.16|98.95|0.00|3.12|19839471|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD3F|0|1| +38|2023-10-06T20:26:15.5240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105149|128564|8000|10000|3||101.16|98.95|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:15.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|41710|79111|9450|10000|2||100.79|100.72|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:15.5680000-07:00|40022550|Zeromus|0001AD3A|19827161||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:26:15.2640000-07:00|40022A53|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||99.57|116.14|0.00|-0.18| +261|2023-10-06T20:26:15.2640000-07:00|Remove|40022A53| +21|2023-10-06T20:26:15.6120000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|712003|42D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19827161|40478540|10000|10000|||100.00|80.10|0.00|0.00|105149|128564|8000|10000|||101.19|98.95|0.00|3.13|0001AD40|0|1| +37|2023-10-06T20:26:15.6570000-07:00|10FF0006|Wowobora Gogobora|0001AD3B|43948||||||100.30|100.91|0.00|-3.13| +261|2023-10-06T20:26:15.4650000-07:00|Change|10FF0008||||| +21|2023-10-06T20:26:15.8360000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|754003|85480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19827161|40478540|10000|10000|||100.00|80.10|0.00|0.00|39177|90055|6400|10000|||98.99|100.94|0.00|3.09|0001AD41|0|1| +34|2023-10-06T20:26:15.8360000-07:00|40022A88|Ruby Carbuncle|40022A88|Ruby Carbuncle|01| +38|2023-10-06T20:26:15.8360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|39177|90055|6400|10000|1||98.99|100.94|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:15.8360000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:26:15.8360000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:26:15.4650000-07:00|Change|10FF0005||||||||||||| +261|2023-10-06T20:26:15.4650000-07:00|Change|40022A88||||||||| +37|2023-10-06T20:26:15.8810000-07:00|40022550|Zeromus|0001AD3D|19823765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:15.8810000-07:00|10FF0002|Suchichi Suchi|0001AD3D|45667||||||100.05|99.99|0.00|-3.14| +37|2023-10-06T20:26:16.0150000-07:00|40022550|Zeromus|0001AD3E|19822450||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:16.0150000-07:00|10FF0001|Sesuga Sapisuga|90493|127791|10000|10000|||100.12|99.29|0.00|-3.14| +37|2023-10-06T20:26:16.0590000-07:00|10FF0006|Wowobora Gogobora|0001AD3C|66939|80739|6550|10000|2||100.30|100.91|0.00|-3.13|2800|0|0|0| +261|2023-10-06T20:26:15.6850000-07:00|Change|10FF0003||| +21|2023-10-06T20:26:16.1490000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|230D0000|104|68C8000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|19822450|40478540|10000|10000|||100.00|80.10|0.00|0.00|45667|90128|6400|10000|||100.05|99.99|0.00|-3.14|0001AD42|0|1| +20|2023-10-06T20:26:16.1490000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:16.1490000-07:00|10FF0002|Suchichi Suchi|005A5A16|45667|90128|6400|10000|1||100.05|99.99|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:16.1490000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:26:15.8000000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:26:16.1930000-07:00|10FF0003|Gegehi Gehi|0001AD3C|42642||||||100.39|100.88|0.00|-3.12| +24|2023-10-06T20:26:16.1930000-07:00|40022550|Zeromus|DoT|0|1EDB|19822450|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|43948|80739|5850|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:16.1930000-07:00|40022550|Zeromus|005A5A00|19814551|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T20:26:16.2370000-07:00|40022550|Zeromus|0001AD40|19797444||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:16.3280000-07:00|10FF0007|Kehabiqo Febiqo|0001AD3F|98065|128564|8000|10000|0||100.84|98.22|0.00|3.14|1500|0|0|01|0A000000|0|0|| +20|2023-10-06T20:26:16.3280000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.36|101.42|0.00|-1.06| +36|2023-10-06T20:26:16.3280000-07:00|5E74|3| +38|2023-10-06T20:26:16.3280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98065|128564|8000|10000|0||100.84|98.22|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:16.3280000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:26:16.4610000-07:00|10FF0008|Kokosaze Lulusaze|0001AD3C|56254||||||100.79|100.72|0.00|-3.10| +37|2023-10-06T20:26:16.4610000-07:00|40022550|Zeromus|0001AD41|19763324||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:16.4610000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|204A0000|4|1FA18000|0|0|0|0|0|0|0|0|0|0|0|0|19797444|40478540|10000|10000|||100.00|80.10|0.00|0.00|90493|127791|10000|10000|||100.12|99.29|0.00|-3.14|0001AD43|0|1| +38|2023-10-06T20:26:16.4610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90493|127791|9000|10000|2||100.12|99.29|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:16.4610000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:26:16.1410000-07:00|Change|10FF0001||| +39|2023-10-06T20:26:16.5050000-07:00|10FF0006|Wowobora Gogobora|67746|80739|6755|10000|||100.30|100.91|0.00|-3.13| +261|2023-10-06T20:26:16.1410000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:26:16.5510000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|356003|883B0000|16C00F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|19763324|40478540|10000|10000|||100.00|80.10|0.00|0.00|56254|79111|9450|10000|||100.79|100.72|0.00|-3.10|0001AD44|0|1| +21|2023-10-06T20:26:16.5510000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42642|73085|6150|10000|||100.39|100.88|0.00|-3.12|42642|73085|6150|10000|||100.39|100.88|0.00|-3.12|0001AD45|0|1| +38|2023-10-06T20:26:16.5510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|56254|79111|9450|10000|2||100.79|100.72|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:16.5510000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:26:16.5510000-07:00|10FF0003|Gegehi Gehi|005A5A23|42642|73085|6150|10000|1||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:16.5510000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:26:16.5950000-07:00|10FF0002|Suchichi Suchi|0001AD3C|60122||||||100.05|99.99|0.00|-3.14| +37|2023-10-06T20:26:16.7280000-07:00|10FF0005|Wuwuchu Wuchu|0001AD3C|53568||||||98.99|100.94|0.00|3.12| +37|2023-10-06T20:26:16.7730000-07:00|40022550|Zeromus|0001AD42|19754351||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:16.7730000-07:00|10FF0002|Suchichi Suchi|0001AD42|61798||||||100.05|99.99|0.00|-3.14| +37|2023-10-06T20:26:16.8620000-07:00|10FF0001|Sesuga Sapisuga|0001AD3C|104591||||||100.12|99.29|0.00|-3.14| +39|2023-10-06T20:26:16.8620000-07:00|10FF0005|Wuwuchu Wuchu|54468|90055|6600|10000|||98.99|100.94|0.00|3.14| +261|2023-10-06T20:26:16.4320000-07:00|Change|10FF0008||||||||||||||| +261|2023-10-06T20:26:16.5330000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:26:16.9960000-07:00|10FF0007|Kehabiqo Febiqo|0001AD3C|112516||||||100.35|97.89|0.00|-0.91| +39|2023-10-06T20:26:17.0420000-07:00|10FF0008|Kokosaze Lulusaze|57045|79111|9650|10000|||100.79|100.72|0.00|-3.10| +21|2023-10-06T20:26:17.0860000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35660000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|19754351|40478540|10000|10000|||100.00|80.10|0.00|0.00|67746|80739|6755|10000|||100.30|100.91|0.00|-3.13|0001AD46|0|1| +39|2023-10-06T20:26:17.1310000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4250|10000|||100.08|102.28|0.00|-3.14| +261|2023-10-06T20:26:16.8510000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:26:17.2210000-07:00|40022550|Zeromus|0001AD43|19746085||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:17.2210000-07:00|10FF0001|Sesuga Sapisuga|0001AD43|112688||||||100.12|99.29|0.00|-3.14| +21|2023-10-06T20:26:17.2650000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|22860000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19754351|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4250|10000|||100.08|102.28|0.00|-3.14|0001AD47|0|1| +37|2023-10-06T20:26:17.3100000-07:00|10FF0003|Gegehi Gehi|0001AD45|42642|73085|6150|10000|1||100.39|100.88|0.00|-3.12|2300|0|0|01|040004D6|0|41A00000|| +38|2023-10-06T20:26:17.3100000-07:00|10FF0003|Gegehi Gehi|005A5A23|42642|73085|6150|10000|1||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:17.3540000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|28200000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|19746085|40478540|10000|10000|||100.00|80.10|0.00|0.00|42642|73085|6150|10000|||100.39|100.88|0.00|-3.12|0001AD48|0|1| +38|2023-10-06T20:26:17.3540000-07:00|10FF0003|Gegehi Gehi|005A5A23|42642|73085|5850|10000|1||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:17.3540000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:26:17.3540000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:16.9710000-07:00|Change|10FF0003||| +21|2023-10-06T20:26:17.4870000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|C160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19746085|40478540|10000|10000|||100.00|80.10|0.00|0.00|54468|90055|6600|10000|||98.20|100.11|-0.01|-3.10|0001AD49|0|1| +261|2023-10-06T20:26:17.2060000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T20:26:17.5780000-07:00|40022550|Zeromus|DoT|A92|486|19746085|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|57045|79111|9650|10000|||100.79|100.72|0.00|-3.10| +37|2023-10-06T20:26:17.5780000-07:00|40022550|Zeromus|0001AD44|19710052||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:17.5780000-07:00|10FF0008|Kokosaze Lulusaze|0001AD44|57045|79111|9650|10000|2||100.79|100.72|0.00|-3.10|1B00|0|0|01|05000A92|0|41700000|| +26|2023-10-06T20:26:17.5780000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:26:17.5780000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|356003|4AA30000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|19746085|40478540|10000|10000|||100.00|80.10|0.00|0.00|57045|79111|9650|10000|||100.79|100.72|0.00|-3.10|0001AD4A|0|1| +21|2023-10-06T20:26:17.5780000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19746085|40478540|10000|10000|||100.00|80.10|0.00|0.00|42642|73085|5850|10000|||100.39|100.88|0.00|-3.12|0001AD4B|0|1| +21|2023-10-06T20:26:17.5780000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|712003|30310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19746085|40478540|10000|10000|||100.00|80.10|0.00|0.00|54468|90055|6600|10000|||98.07|99.96|0.00|-3.10|0001AD4C|0|1| +38|2023-10-06T20:26:17.5780000-07:00|40022550|Zeromus|005A5A00|19710052|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T20:26:17.5780000-07:00|A1A|Death's Design|47.88|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +24|2023-10-06T20:26:17.6660000-07:00|10FF0002|Suchichi Suchi|DoT|0|1687|61798|90128|6400|10000|||99.77|99.99|0.00|-3.13|10FF0002|Suchichi Suchi|FFFFFFFF|61798|90128|6400|10000|||99.77|99.99|0.00|-3.13| +24|2023-10-06T20:26:17.6660000-07:00|10FF0002|Suchichi Suchi|HoT|0|2805|61798|90128|6400|10000|||99.77|99.99|0.00|-3.13|10FF0002|Suchichi Suchi|0|61798|90128|6400|10000|||99.77|99.99|0.00|-3.13| +38|2023-10-06T20:26:17.6660000-07:00|10FF0002|Suchichi Suchi|005A5A16|66276|90128|6400|10000|0||99.77|99.99|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:17.6660000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +24|2023-10-06T20:26:17.7100000-07:00|10FF0003|Gegehi Gehi|DoT|0|13AB|45213|73085|5850|10000|||100.39|100.88|0.00|-3.12|10FF0006|Wowobora Gogobora|FFFFFFFF|67746|80739|6355|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:17.7100000-07:00|10FF0003|Gegehi Gehi|HoT|0|1DB6|45213|73085|5850|10000|||100.39|100.88|0.00|-3.12|10FF0006|Wowobora Gogobora|0|67746|80739|6355|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:17.7110000-07:00|10FF0003|Gegehi Gehi|005A5A23|45213|73085|5850|10000|0||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:17.7110000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:26:17.3040000-07:00|Change|40022A7E||||| +261|2023-10-06T20:26:17.3040000-07:00|Change|40022A7E||||| +38|2023-10-06T20:26:17.7550000-07:00|40022A8F||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +24|2023-10-06T20:26:17.7550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|174A|112516|128564|8000|10000|||100.27|98.47|0.00|-0.02|10FF0006|Wowobora Gogobora|0|67746|80739|6355|10000|||100.30|100.91|0.00|-3.13| +37|2023-10-06T20:26:17.7550000-07:00|40022550|Zeromus|0001AD46|19696382||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:17.7550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|4E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19710052|40478540|10000|10000|||100.00|80.10|0.00|0.00|112688|127791|9000|10000|||100.12|99.29|0.00|-3.14|0001AD4D|0|1| +38|2023-10-06T20:26:17.7550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118478|128564|8000|10000|0||100.27|98.47|0.00|-0.02|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:17.7550000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:17.7550000-07:00|40022A8F||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +31|2023-10-06T20:26:17.7550000-07:00|10FF0001||||| +21|2023-10-06T20:26:17.7990000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|8530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19710052|40478540|10000|10000|||100.00|80.10|0.00|0.00|112516|128564|8000|10000|||100.27|98.47|0.00|-0.02|0001AD4E|0|1| +261|2023-10-06T20:26:17.5000000-07:00|Change|10FF0008||||||||| +24|2023-10-06T20:26:17.8890000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|1B3|112688|127791|9000|10000|||100.12|99.29|0.00|-3.14|10FF0006|Wowobora Gogobora|FFFFFFFF|67746|80739|6355|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:17.8890000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|274D|112688|127791|9000|10000|||100.12|99.29|0.00|-3.14|10FF0006|Wowobora Gogobora|0|67746|80739|6355|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:17.8890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|ABA|118478|128564|8000|10000|||100.27|98.47|0.00|-0.02|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|AD1|112688|127791|9000|10000|||100.12|99.29|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0002|Suchichi Suchi|HoT|798|11CE|66276|90128|6400|10000|||99.53|99.99|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1164|57045|79111|9350|10000|||100.70|100.72|0.00|-2.71|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0003|Gegehi Gehi|HoT|798|AD1|45213|73085|5850|10000|||100.39|100.88|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0006|Wowobora Gogobora|HoT|798|A7E|67746|80739|6355|10000|||100.30|100.91|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|AFA|54468|90055|6600|10000|||98.07|99.96|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|AB9|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|65|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +24|2023-10-06T20:26:17.8890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1E24|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3850|10000|||100.08|102.28|0.00|-3.14| +38|2023-10-06T20:26:17.8890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121224|128564|8000|10000|0||100.27|98.47|0.00|-0.02|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:17.8890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:17.8890000-07:00|10FF0002|Suchichi Suchi|005A5A16|70834|90128|6400|10000|0||99.53|99.99|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:17.8890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:17.8890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|61497|79111|9350|10000|2||100.70|100.72|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:17.8890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:17.8890000-07:00|10FF0006|Wowobora Gogobora|005A5A28|70432|80739|6355|10000|2||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:17.8890000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:17.8890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:17.8890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125083|127791|9000|10000|0||100.12|99.29|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:17.8890000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:26:17.8890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:17.8890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4400|10000|0||100.08|102.28|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:17.8890000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:26:17.8890000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:17.8890000-07:00|10FF0003|Gegehi Gehi|005A5A23|47982|73085|5850|10000|0||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:17.8890000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:17.8890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|57278|90055|6600|10000|1||98.07|99.96|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:17.8890000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:26:17.5000000-07:00|Add|40022A8F||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:17.5000000-07:00|Add|40022A8D||||||||||||||||||||||||||||||||| +03|2023-10-06T20:26:17.5000000-07:00|40022A8F|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||99.61|99.26|0.00|0.57| +261|2023-10-06T20:26:17.5000000-07:00|Change|40022A8F||| +24|2023-10-06T20:26:17.9790000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|14CC|57278|90055|6600|10000|||98.07|99.96|-0.02|3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|70432|80739|6355|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:17.9790000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|256C|57278|90055|6600|10000|||98.07|99.96|-0.02|3.13|10FF0006|Wowobora Gogobora|0|70432|80739|6355|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:17.9790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61534|90055|6600|10000|0||98.07|99.96|-0.02|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:17.9790000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:26:17.5980000-07:00|Change|40022A8F||| +37|2023-10-06T20:26:18.0220000-07:00|40022550|Zeromus|0001AD49|19693288||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:18.0220000-07:00|10FF0006|Wowobora Gogobora|DoT|0|FB1|70432|80739|6355|10000|||100.30|100.91|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|70432|80739|6355|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:18.0220000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1DF3|70432|80739|6355|10000|||100.30|100.91|0.00|-3.13|10FF0006|Wowobora Gogobora|0|70432|80739|6355|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:18.0220000-07:00|10FF0006|Wowobora Gogobora|005A5A28|74082|80739|6905|10000|0||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:18.0220000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:26:18.0670000-07:00|40022550|Zeromus|0001AD47|19684450||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:18.0670000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|10680000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|19696382|40478540|10000|10000|||100.00|80.10|0.00|0.00|121224|128564|8000|10000|||100.27|98.47|0.00|-0.02|0001AD4F|0|1| +37|2023-10-06T20:26:18.1110000-07:00|40022550|Zeromus|0001AD48|19674178||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:18.1110000-07:00|10FF0003|Gegehi Gehi|0001AD48|47982|73085|5850|10000|0||100.39|100.88|0.00|-3.12|2300|0|0|01|0B0004D2|0|41F00000|| +37|2023-10-06T20:26:18.1110000-07:00|40022550|Zeromus|0001AD4B|19674177||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:18.1110000-07:00|10FF0003|Gegehi Gehi|005A5A23|47982|73085|5850|10000|0||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:18.1550000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8860000|104|1978000|0|0|0|0|0|0|0|0|0|0|0|0|19696382|40478540|10000|10000|||100.00|80.10|0.00|0.00|70834|90128|6400|10000|||99.47|99.99|0.00|-3.13|0001AD50|0|1| +261|2023-10-06T20:26:17.7950000-07:00|Change|10FF0006||| +37|2023-10-06T20:26:18.1990000-07:00|40022550|Zeromus|0001AD4A|19655070||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:18.2440000-07:00|10FF0007|Kehabiqo Febiqo|122509|128564|8200|10000|||100.27|98.47|0.00|-3.13| +37|2023-10-06T20:26:18.2880000-07:00|40022550|Zeromus|0001AD4D|19653819||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:18.2880000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19674177|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4400|10000|||100.08|101.90|0.00|-3.12|0001AD51|0|1| +261|2023-10-06T20:26:17.9140000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T20:26:18.3330000-07:00|40022550|Zeromus|0001AD4E|19651688||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:18.3770000-07:00|10FF0003|Gegehi Gehi|48712|73085|6050|10000|||100.39|100.88|0.00|-3.12| +21|2023-10-06T20:26:18.4210000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19653819|40478540|10000|10000|||100.00|80.10|0.00|0.00|74082|80739|6905|10000|||100.30|100.91|0.00|-3.13|0001AD52|0|1| +261|2023-10-06T20:26:18.0290000-07:00|Change|10FF0003||| +39|2023-10-06T20:26:18.4650000-07:00|10FF0002|Suchichi Suchi|71735|90128|6600|10000|||99.47|99.99|0.00|-3.13| +38|2023-10-06T20:26:18.5100000-07:00|40022550|Zeromus|005A5A00|19651688|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:18.5100000-07:00|4AB|Feint|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +261|2023-10-06T20:26:18.1480000-07:00|Change|10FF0002||||||| +261|2023-10-06T20:26:18.1480000-07:00|Change|10FF0004||||||||| +24|2023-10-06T20:26:18.5540000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|1035|122509|128564|8200|10000|||100.27|98.47|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|74082|80739|6905|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:18.5540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1E5F|122509|128564|8200|10000|||100.27|98.47|0.00|-3.13|10FF0006|Wowobora Gogobora|0|74082|80739|6905|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:18.5550000-07:00|40022550|Zeromus|DoT|A92|5EC|19651688|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|61497|79111|9350|10000|||100.47|100.72|0.00|-1.58| +24|2023-10-06T20:26:18.5550000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|F34|61497|79111|9350|10000|||100.47|100.72|0.00|-1.58|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|80739|80739|4400|10000|||100.04|101.28|0.00|-3.03| +24|2023-10-06T20:26:18.5550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|25F2|61497|79111|9350|10000|||100.47|100.72|0.00|-1.58|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4400|10000|||100.04|101.28|0.00|-3.03| +21|2023-10-06T20:26:18.5550000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2FA10000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|122509|128564|8200|10000|||100.27|98.47|0.00|-3.13|19651688|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD53|0|1| +38|2023-10-06T20:26:18.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126135|128564|8200|10000|0||100.27|98.47|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:18.5550000-07:00|40022550|Zeromus|005A5A00|19650172|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:26:18.5550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|67319|79111|9900|10000|0||100.47|100.72|0.00|-1.58|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:18.5550000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:26:18.5990000-07:00|40022550|Zeromus|0001AD4F|19645972||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:18.5990000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|172E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|61497|79111|9350|10000|||100.47|100.72|0.00|-1.58|73956|77430|10000|10000|||99.86|97.32|0.00|1.83|0001AD54|0|1| +20|2023-10-06T20:26:18.5990000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.30|100.91|0.00|-3.13| +21|2023-10-06T20:26:18.6430000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35720003|1C100000|104|53E8000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|19651688|40478540|10000|10000|||100.00|80.10|0.00|0.00|71735|90128|6600|10000|||99.47|99.99|0.00|-3.13|0001AD55|0|1| +261|2023-10-06T20:26:18.2420000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:26:18.6880000-07:00|40022550|Zeromus|0001AD50|19643790||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:18.6880000-07:00|10FF0002|Suchichi Suchi|0001AD50|72142||||||99.47|99.99|0.00|-3.13| +37|2023-10-06T20:26:18.7330000-07:00|40022550|Zeromus|0001AD4C|19631453||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:26:18.7330000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.03|101.11|-0.01|-3.00| +34|2023-10-06T20:26:18.7770000-07:00|40022A8F|Carbuncle|40022A8F|Carbuncle|01| +261|2023-10-06T20:26:18.3420000-07:00|Change|40022A8F||| +37|2023-10-06T20:26:18.8210000-07:00|40022550|Zeromus|0001AD51|19631337||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:18.8660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61534|90055|6600|10000|0||97.63|99.53|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:18.8660000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:26:18.4370000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:26:18.9550000-07:00|40022550|Zeromus|0001AD52|19631299||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:19.0000000-07:00|10FF0001|Sesuga Sapisuga|126360|127791|9200|10000|||100.13|97.90|0.00|3.14| +21|2023-10-06T20:26:19.0000000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|712003|18F80000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|19631337|40478540|10000|10000|||100.00|80.10|0.00|0.00|125083|127791|9000|10000|||100.13|97.90|0.00|3.14|0001AD56|0|1| +261|2023-10-06T20:26:18.5370000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:26:19.0450000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2EB10000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|19631299|40478540|10000|10000|||100.00|80.10|0.00|0.00|67319|79111|9900|10000|||100.24|100.72|-0.01|-1.58|0001AD57|0|1| +24|2023-10-06T20:26:19.1780000-07:00|40022550|Zeromus|DoT|0|1A06|19631299|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|74082|80739|6905|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:19.1780000-07:00|40022550|Zeromus|005A5A00|19624637|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:26:18.7650000-07:00|Change|10FF0006||||||||||||| +36|2023-10-06T20:26:19.3120000-07:00|5F50|3| +37|2023-10-06T20:26:19.3560000-07:00|10FF0007|Kehabiqo Febiqo|0001AD53|113942||||||100.27|98.47|0.00|-3.13| +37|2023-10-06T20:26:19.4010000-07:00|10FF0008|Kokosaze Lulusaze|0001AD54|73253||||||100.24|100.72|0.00|-3.13| +39|2023-10-06T20:26:19.4900000-07:00|10FF0006|Wowobora Gogobora|74889|80739|7110|10000|||100.30|100.91|0.00|-3.13| +21|2023-10-06T20:26:19.5340000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19624637|40478540|10000|10000|||100.00|80.10|0.00|0.00|73253|79111|9600|10000|||100.24|100.72|0.00|-3.13|0001AD58|0|1| +21|2023-10-06T20:26:19.5340000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|379D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|19624637|40478540|10000|10000|||100.00|80.10|0.00|0.00|74889|80739|7110|10000|||100.30|100.91|0.00|-3.13|0001AD59|0|1| +261|2023-10-06T20:26:19.2350000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:26:19.6230000-07:00|40022550|Zeromus|0001AD56|19618245||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:19.6690000-07:00|40022550|Zeromus|0001AD55|19611061||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:19.6690000-07:00|10FF0002|Suchichi Suchi|0001AD55|73484||||||99.47|99.99|0.00|3.12| +37|2023-10-06T20:26:19.6690000-07:00|40022550|Zeromus|0001AD57|19599108||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:19.6690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|22D50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19624637|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4400|10000|||100.02|101.00|0.00|-3.14|0001AD5A|0|1| +38|2023-10-06T20:26:19.6690000-07:00|10FF0006|Wowobora Gogobora|005A5A28|74889|80739|6710|10000|0||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:19.6690000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:19.6690000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:26:19.7130000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|A580000|13370E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|19624637|40478540|10000|10000|||100.00|80.10|0.00|0.00|126360|127791|9200|10000|||100.13|96.57|0.00|3.14|0001AD5B|0|1| +20|2023-10-06T20:26:19.8020000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|100.39|100.88|0.00|-3.12| +38|2023-10-06T20:26:19.8020000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61534|90055|6600|10000|0||98.62|100.39|-0.02|2.92|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:19.8020000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:26:19.8020000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:26:19.8900000-07:00|10FF0005|Wuwuchu Wuchu|62434|90055|6800|10000|||98.62|100.39|-0.02|2.92| +261|2023-10-06T20:26:19.5250000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:26:19.5250000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:26:19.5250000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:26:19.9340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|73253|79111|9600|10000|0||100.13|100.56|0.00|-2.49|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:19.9340000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:26:19.9340000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +39|2023-10-06T20:26:20.0240000-07:00|10FF0008|Kokosaze Lulusaze|74044|79111|9800|10000|||100.12|100.42|0.00|-2.64| +21|2023-10-06T20:26:20.0240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|5200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19599108|40478540|10000|10000|||100.00|80.10|0.00|0.00|126360|127791|9200|10000|||100.13|96.57|0.00|3.14|0001AD5C|0|1| +31|2023-10-06T20:26:20.0240000-07:00|10FF0001||||| +37|2023-10-06T20:26:20.0690000-07:00|40022550|Zeromus|0001AD58|19598960||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:20.0690000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|716003|3F270000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|19599108|40478540|10000|10000|||100.00|80.10|0.00|0.00|62434|90055|6800|10000|||98.62|100.39|-0.02|2.90|0001AD5D|0|1| +38|2023-10-06T20:26:20.0690000-07:00|10FF0002|Suchichi Suchi|005A5A16|73484|90128|6600|10000|0||99.47|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:20.0690000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:26:20.0690000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +39|2023-10-06T20:26:20.1570000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +261|2023-10-06T20:26:19.8270000-07:00|Change|10FF0006||||||||||||||| +24|2023-10-06T20:26:20.2020000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|173D|113942|128564|8200|10000|||100.27|98.47|0.00|-3.13|10FF0006|Wowobora Gogobora|0|74889|80739|6710|10000|||100.30|100.91|0.00|-3.13| +37|2023-10-06T20:26:20.2020000-07:00|40022550|Zeromus|0001AD59|19584723||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:20.2020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119891|128564|8200|10000|0||100.27|98.47|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.2020000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:26:20.2020000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:26:20.2020000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:20.3360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126360|127791|9200|10000|0||100.13|96.57|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:20.3360000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:26:20.3360000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:26:20.4680000-07:00|40022550|Zeromus|0001AD5A|19575806||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:20.4680000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|229D0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|19584723|40478540|10000|10000|||100.00|80.10|0.00|0.00|126360|127791|9200|10000|||100.13|96.57|0.00|-3.13|0001AD5E|0|1| +38|2023-10-06T20:26:20.4680000-07:00|10FF0003|Gegehi Gehi|005A5A23|48712|73085|6050|10000|0||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:20.4680000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:26:20.4680000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +21|2023-10-06T20:26:20.5130000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|197F0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|19584723|40478540|10000|10000|||100.00|80.10|0.00|0.00|119891|128564|8200|10000|||100.27|98.47|0.00|-3.13|0001AD5F|0|1| +37|2023-10-06T20:26:20.5580000-07:00|40022550|Zeromus|0001AD5C|19574494||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:20.5580000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2DCC0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|19575806|40478540|10000|10000|||100.00|80.10|0.00|0.00|74044|79111|9800|10000|||100.08|99.96|-0.02|3.14|0001AD60|0|1| +38|2023-10-06T20:26:20.5580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|74044|79111|9500|10000|0||100.08|99.96|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:20.5580000-07:00|4B4|Lucid Dreaming|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:26:20.6020000-07:00|40022550|Zeromus|0001AD5D|19558327||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:20.6020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4200|10000|0||100.02|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:20.6020000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:26:20.6020000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +00|2023-10-06T20:26:20.0000000-07:00|0044|Zeromus|In Darkness be steeped.| +261|2023-10-06T20:26:20.1870000-07:00|Change|10FF0004||||||||||||||||| +24|2023-10-06T20:26:20.6470000-07:00|10FF0002|Suchichi Suchi|DoT|0|1895|73484|90128|6600|10000|||99.47|99.99|0.00|3.12|10FF0002|Suchichi Suchi|FFFFFFFF|73484|90128|6600|10000|||99.47|99.99|0.00|3.12| +24|2023-10-06T20:26:20.6470000-07:00|10FF0002|Suchichi Suchi|HoT|0|10AA|71457|90128|6600|10000|||99.47|99.99|0.00|3.12|10FF0002|Suchichi Suchi|0|71457|90128|6600|10000|||99.47|99.99|0.00|3.12| +38|2023-10-06T20:26:20.6470000-07:00|10FF0002|Suchichi Suchi|005A5A16|71457|90128|6600|10000|0||99.47|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:26:20.6920000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:20.6920000-07:00|10FF0003|Gegehi Gehi|DoT|0|1778|48712|73085|6050|10000|||100.39|100.88|0.00|-3.12|10FF0003|Gegehi Gehi|FFFFFFFF|48712|73085|6050|10000|||100.39|100.88|0.00|-3.12| +24|2023-10-06T20:26:20.6920000-07:00|10FF0003|Gegehi Gehi|HoT|0|1AC8|48712|73085|6050|10000|||100.39|100.88|0.00|-3.12|10FF0003|Gegehi Gehi|0|48712|73085|6050|10000|||100.39|100.88|0.00|-3.12| +261|2023-10-06T20:26:20.2870000-07:00|Change|40022550||||||||||||| +21|2023-10-06T20:26:20.6920000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|98B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19558327|40478540|10000|10000|||100.00|80.10|0.00|0.00|62434|90055|6800|10000|||98.60|100.39|0.00|3.07|0001AD61|0|1| +38|2023-10-06T20:26:20.6920000-07:00|10FF0003|Gegehi Gehi|005A5A23|49560|73085|6050|10000|0||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:20.7360000-07:00|40022550|Zeromus|0001AD5B|19555679|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|F8|0|41700000|| +26|2023-10-06T20:26:20.7360000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:26:20.8250000-07:00|40022550|Zeromus|0001AD5E|19546818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:20.8250000-07:00|10FF0001|Sesuga Sapisuga|0001AD5E|126360|127791|9700|10000|0||100.13|96.57|0.00|-3.13|1300|0|0|0| +261|2023-10-06T20:26:20.3780000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:26:20.8710000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.00| +24|2023-10-06T20:26:20.8710000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|EC6|126360|127791|9700|10000|||100.13|96.57|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|74889|80739|6710|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:20.8710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1C01|126360|127791|9700|10000|||100.13|96.57|0.00|-3.13|10FF0006|Wowobora Gogobora|0|74889|80739|6710|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:20.8710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|A77|119891|128564|8200|10000|||100.27|98.47|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1175|74044|79111|9500|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0002|Suchichi Suchi|HoT|798|AA6|71457|90128|6600|10000|||99.47|99.99|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0003|Gegehi Gehi|HoT|798|AC4|49560|73085|6050|10000|||100.39|100.88|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0006|Wowobora Gogobora|HoT|798|B01|74889|80739|6710|10000|||100.30|100.91|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|AFD|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|AA2|126360|127791|9700|10000|||100.13|96.57|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|A74|62434|90055|6800|10000|||97.69|100.32|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1699|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:20.8710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1153|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||100.02|101.00|0.00|-3.14| +38|2023-10-06T20:26:20.8710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122570|128564|8200|10000|0||100.27|98.47|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.8710000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:20.8710000-07:00|10FF0002|Suchichi Suchi|005A5A16|74183|90128|6600|10000|0||99.47|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.8710000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:20.8710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|78513|79111|9500|10000|0||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.8710000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:20.8710000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77706|80739|6710|10000|0||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.8710000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:20.8710000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:20.8710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9700|10000|0||100.13|96.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.8710000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:20.8710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79389|80739|4750|10000|0||100.02|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.8710000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:20.8710000-07:00|10FF0003|Gegehi Gehi|005A5A23|52316|73085|6050|10000|0||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.8710000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:20.8710000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65110|90055|6800|10000|0||97.69|100.32|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:20.8710000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:26:20.4730000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:26:20.9600000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|18B0|62434|90055|6800|10000|||97.69|100.32|0.00|3.07|10FF0006|Wowobora Gogobora|FFFFFFFF|74889|80739|6710|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:20.9600000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1BBA|62434|90055|6800|10000|||97.69|100.32|0.00|3.07|10FF0006|Wowobora Gogobora|0|74889|80739|6710|10000|||100.30|100.91|0.00|-3.13| +21|2023-10-06T20:26:20.9600000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8210000|104|1848000|0|0|0|0|0|0|0|0|0|0|0|0|19546818|40478540|10000|10000|||100.00|80.10|0.00|0.00|71457|90128|6600|10000|||99.47|99.99|0.00|3.12|0001AD62|0|1| +38|2023-10-06T20:26:20.9600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65888|90055|6800|10000|0||97.69|100.32|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:21.0050000-07:00|10FF0006|Wowobora Gogobora|DoT|0|1819|77706|80739|6710|10000|||100.30|100.91|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|77706|80739|6710|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:21.0050000-07:00|10FF0006|Wowobora Gogobora|HoT|0|10E7|77706|80739|6710|10000|||100.30|100.91|0.00|-3.13|10FF0006|Wowobora Gogobora|0|77706|80739|6710|10000|||100.30|100.91|0.00|-3.13| +38|2023-10-06T20:26:21.0050000-07:00|10FF0006|Wowobora Gogobora|005A5A28|75864|80739|7260|10000|0||100.30|100.91|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +20|2023-10-06T20:26:21.0490000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.30|100.91|0.00|-3.13| +37|2023-10-06T20:26:21.1400000-07:00|40022550|Zeromus|0001AD5F|19540291||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:21.1400000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F726003|64150000|104|12B48000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|19546818|40478540|10000|10000|||100.00|80.10|0.00|0.00|74183|90128|6600|10000|||99.47|99.99|0.00|3.12|0001AD63|0|1| +20|2023-10-06T20:26:21.1400000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.02|101.00|0.00|-3.14| +38|2023-10-06T20:26:21.1400000-07:00|10FF0002|Suchichi Suchi|005A5A16|74183|90128|6600|10000|0||99.47|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:21.1400000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:26:21.1830000-07:00|40022550|Zeromus|0001AD60|19528567||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:21.1830000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|D9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19540291|40478540|10000|10000|||100.00|80.10|0.00|0.00|122570|128564|8200|10000|||100.27|98.47|0.00|-3.13|0001AD64|0|1| +261|2023-10-06T20:26:20.9140000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:26:21.2280000-07:00|40022550|Zeromus|0001AD61|19526124||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:21.2280000-07:00|10FF0007|Kehabiqo Febiqo|123855|128564|8400|10000|||100.27|98.47|0.00|-3.13| +21|2023-10-06T20:26:21.2280000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|234C0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|19540291|40478540|10000|10000|||100.00|80.10|0.00|0.00|52316|73085|6050|10000|||100.39|100.88|0.00|-3.12|0001AD65|0|1| +38|2023-10-06T20:26:21.2280000-07:00|10FF0003|Gegehi Gehi|005A5A23|52316|73085|5850|10000|0||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:21.2280000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:26:21.2280000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:20.9140000-07:00|Change|10FF0007||| +261|2023-10-06T20:26:20.9140000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T20:26:21.3610000-07:00|10FF0003|Gegehi Gehi|53046|73085|6050|10000|||100.39|100.88|0.00|-3.12| +39|2023-10-06T20:26:21.4500000-07:00|10FF0002|Suchichi Suchi|75084|90128|6800|10000|||99.59|99.99|0.00|-3.11| +37|2023-10-06T20:26:21.4940000-07:00|40022550|Zeromus|0001AD62|19524043||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:21.4940000-07:00|10FF0002|Suchichi Suchi|0001AD62|75472|90128|6800|10000|0||99.59|99.99|0.00|-3.11|1600|0|0|01|03000322|0|C1F00000|| +21|2023-10-06T20:26:21.4940000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|17460000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|19526124|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9700|10000|||100.13|96.57|0.00|-3.13|0001AD66|0|1| +261|2023-10-06T20:26:21.1490000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:26:21.5390000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|FB3|123855|128564|8400|10000|||100.25|98.47|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|75864|80739|7260|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:21.5390000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|112D|123855|128564|8400|10000|||100.25|98.47|0.00|-3.13|10FF0006|Wowobora Gogobora|0|75864|80739|7260|10000|||100.30|100.91|0.00|-3.13| +24|2023-10-06T20:26:21.5390000-07:00|40022550|Zeromus|DoT|A92|4C7|19526124|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|78513|79111|9500|10000|||100.08|99.96|0.00|-3.14| +24|2023-10-06T20:26:21.5390000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|18BC|78513|79111|9500|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|79389|80739|4750|10000|||100.02|101.00|0.00|-3.14| +24|2023-10-06T20:26:21.5390000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|114E|78513|79111|9500|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|79389|80739|4750|10000|||100.02|101.00|0.00|-3.14| +38|2023-10-06T20:26:21.5390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124233|128564|8400|10000|0||100.25|98.47|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:21.5390000-07:00|40022550|Zeromus|005A5A00|19522820|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:26:21.5390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|76611|79111|9500|10000|0||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +04|2023-10-06T20:26:21.1490000-07:00|40022A7E|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|75851|0|10000|||99.69|117.42|0.00|3.09| +261|2023-10-06T20:26:21.1490000-07:00|Remove|40022A7E| +261|2023-10-06T20:26:21.2440000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:26:21.7170000-07:00|40022550|Zeromus|0001AD64|19519336||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:21.8510000-07:00|40022550|Zeromus|0001AD63|19493715||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:21.8510000-07:00|10FF0002|Suchichi Suchi|0001AD63|80260|90128|6800|10000|0||99.63|99.99|0.00|-3.08|1600|0|0|01|03000322|0|41F00000|| +38|2023-10-06T20:26:21.8510000-07:00|10FF0002|Suchichi Suchi|005A5A16|80260|90128|6800|10000|0||99.63|99.99|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:21.9850000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|382D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|19493715|40478540|10000|10000|||100.00|80.10|0.00|0.00|75864|80739|7260|10000|||100.30|100.91|0.00|-3.13|0001AD67|0|1| +37|2023-10-06T20:26:22.0300000-07:00|40022550|Zeromus|0001AD65|19484679||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:22.0300000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9900|10000|||100.13|96.57|0.00|-3.13| +21|2023-10-06T20:26:22.0740000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|23800000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|19493715|40478540|10000|10000|||100.00|80.10|0.00|0.00|76611|79111|9500|10000|||100.08|99.96|0.00|-3.14|0001AD68|0|1| +21|2023-10-06T20:26:22.0740000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|241E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19493715|40478540|10000|10000|||100.00|80.10|0.00|0.00|79389|80739|4750|10000|||100.02|101.00|0.00|-3.14|0001AD69|0|1| +261|2023-10-06T20:26:21.7230000-07:00|Change|10FF0001||| +261|2023-10-06T20:26:21.7230000-07:00|Change|10FF0008||||| +261|2023-10-06T20:26:21.8440000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T20:26:21.8440000-07:00|Change|10FF0003||| +24|2023-10-06T20:26:22.2080000-07:00|40022550|Zeromus|DoT|0|1D1B|19484679|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|75864|80739|6860|10000|||100.30|100.91|0.00|-3.13| +21|2023-10-06T20:26:22.2080000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|354003|33630000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|19484679|40478540|10000|10000|||100.00|80.10|0.00|0.00|53046|73085|6050|10000|||100.39|100.88|0.00|-3.12|0001AD6A|0|1| +38|2023-10-06T20:26:22.2080000-07:00|40022550|Zeromus|005A5A00|19477228|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:26:22.2080000-07:00|10FF0003|Gegehi Gehi|005A5A23|53046|73085|5750|10000|0||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:22.2080000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:26:22.2510000-07:00|40022550|Zeromus|0001AD66|19471270||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:22.2510000-07:00|10FF0001|Sesuga Sapisuga|0001AD66|127791|127791|10000|10000|0||100.13|96.57|0.00|-3.13|1300|0|0|0| +21|2023-10-06T20:26:22.2970000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|8240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19484679|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9900|10000|||100.13|96.57|0.00|-3.13|0001AD6B|0|1| +31|2023-10-06T20:26:22.2970000-07:00|10FF0001||||| +36|2023-10-06T20:26:22.3410000-07:00|602C|3| +21|2023-10-06T20:26:22.4750000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|17370000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|75864|80739|6860|10000|||100.30|100.91|0.00|-3.13|73956|77430|10000|10000|||99.90|97.15|0.00|1.73|0001AD6C|0|1| +39|2023-10-06T20:26:22.5200000-07:00|10FF0006|Wowobora Gogobora|76671|80739|7065|10000|||100.30|100.91|0.00|-3.13| +21|2023-10-06T20:26:22.5200000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19471270|40478540|10000|10000|||100.00|80.10|0.00|0.00|53046|73085|5750|10000|||100.39|100.88|0.00|-3.12|0001AD6D|0|1| +21|2023-10-06T20:26:22.5640000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|306D0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|19471270|40478540|10000|10000|||100.00|80.10|0.00|0.00|65888|90055|6800|10000|||99.05|100.02|0.00|3.06|0001AD6E|0|1| +261|2023-10-06T20:26:22.2880000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T20:26:22.6530000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|17CF|124233|128564|8400|10000|||99.99|98.47|0.00|3.12|10FF0006|Wowobora Gogobora|0|76671|80739|7065|10000|||100.30|100.91|0.00|-3.13| +37|2023-10-06T20:26:22.6530000-07:00|40022550|Zeromus|0001AD67|19456889||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:22.6530000-07:00|40022A88|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.90|97.15|0.00|1.38|0|0|0||||||| +26|2023-10-06T20:26:22.6530000-07:00|30|Well Fed|1434.63|10FF0004|Buhojaqe Zijaqe|40022A88|Ruby Carbuncle|2968|77430|80739| +26|2023-10-06T20:26:22.6530000-07:00|77B|Summon Order|30.00|40022A88|Ruby Carbuncle|40022A88|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:26:22.6530000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79389|80739|4350|10000|||100.02|101.00|0.00|-3.14|79389|80739|4350|10000|||100.02|101.00|0.00|-3.14|0001AD6F|0|1| +38|2023-10-06T20:26:22.6530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8400|10000|0||99.99|98.47|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:22.6530000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:26:22.6970000-07:00|40022550|Zeromus|0001AD68|19447801||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:22.6970000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|11F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19456889|40478540|10000|10000|||100.00|80.10|0.00|0.00|76611|79111|9200|10000|||100.08|99.96|0.00|-3.14|0001AD70|0|1| +37|2023-10-06T20:26:22.8310000-07:00|40022550|Zeromus|0001AD6B|19445717||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:22.8760000-07:00|40022550|Zeromus|0001AD69|19436471||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:22.8760000-07:00|10FF0005|Wuwuchu Wuchu|66788|90055|7000|10000|||99.05|100.02|0.00|3.09| +261|2023-10-06T20:26:22.4790000-07:00|Change|10FF0005||||||||||| +21|2023-10-06T20:26:22.9220000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|722003|4F610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19436471|40478540|10000|10000|||100.00|80.10|0.00|0.00|53046|73085|5750|10000|||100.39|100.88|0.00|-3.12|0001AD71|0|1| +37|2023-10-06T20:26:22.9660000-07:00|40022550|Zeromus|0001AD6A|19423316||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:22.9660000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|22BF0000|143E|340000|4|13488000|11B|2A8000|0|0|0|0|0|0|0|0|19436471|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|8400|10000|||99.99|98.47|0.00|3.12|0001AD72|0|1| +38|2023-10-06T20:26:22.9660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79389|80739|4350|10000|0||100.02|100.97|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:22.9660000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:26:23.0550000-07:00|40022550|Zeromus|0001AD6D|19423315||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:23.0550000-07:00|10FF0008|Kokosaze Lulusaze|77402|79111|9400|10000|||100.08|99.96|0.00|-3.14| +38|2023-10-06T20:26:23.1000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|77402|79111|9400|10000|0||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.1000000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:26:23.1440000-07:00|40022550|Zeromus|0001AD6E|19410918||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:23.1440000-07:00|10FF0004|Buhojaqe Zijaqe|80196|80739|4550|10000|||100.02|100.85|0.00|-3.14| +21|2023-10-06T20:26:23.1890000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19423315|40478540|10000|10000|||100.00|80.10|0.00|0.00|76671|80739|7065|10000|||100.30|100.88|0.00|-3.13|0001AD73|0|1| +261|2023-10-06T20:26:22.8120000-07:00|Change|10FF0001||| +261|2023-10-06T20:26:22.8120000-07:00|Change|10FF0008||| +37|2023-10-06T20:26:23.2330000-07:00|40022550|Zeromus|0001AD70|19410631||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:23.2330000-07:00|10FF0006|Wowobora Gogobora|005A5A28|76671|80739|7065|10000|0||100.30|100.88|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.2330000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:23.2330000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:26:23.2770000-07:00|10FF0006|Wowobora Gogobora|0001AD6C|80739||||||100.30|100.88|0.00|-3.14| +261|2023-10-06T20:26:22.9270000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:26:22.9270000-07:00|Change|10FF0003||| +38|2023-10-06T20:26:23.3660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||100.13|96.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.3660000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:26:23.4110000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19410631|40478540|10000|10000|||100.00|80.10|0.00|0.00|80196|80739|4550|10000|||100.02|100.75|0.00|-3.14|0001AD74|0|1| +38|2023-10-06T20:26:23.4550000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7065|10000|0||100.27|100.67|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.4550000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:26:23.4550000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7065|10000|||100.27|100.67|0.00|3.01|80739|80739|7065|10000|||100.27|100.67|0.00|3.01|0001AD75|0|1| +38|2023-10-06T20:26:23.5000000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|66788|90055|7000|10000|0||99.27|99.80|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.5000000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +22|2023-10-06T20:26:23.5450000-07:00|40022A88|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13|73956|77430|10000|10000|||99.90|97.15|0.00|0.10|0001AD76|0|8| +22|2023-10-06T20:26:23.5450000-07:00|40022A88|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|8400|10000|||99.99|98.47|0.00|-3.14|73956|77430|10000|10000|||99.90|97.15|0.00|0.10|0001AD76|1|8| +22|2023-10-06T20:26:23.5450000-07:00|40022A88|Ruby Carbuncle|323|Whispering Dawn|10FF0005|Wuwuchu Wuchu|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|66788|90055|7000|10000|||99.27|99.80|0.00|3.07|73956|77430|10000|10000|||99.90|97.15|0.00|0.10|0001AD76|2|8| +22|2023-10-06T20:26:23.5450000-07:00|40022A88|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|77402|79111|9400|10000|||100.08|99.96|0.00|-3.14|73956|77430|10000|10000|||99.90|97.15|0.00|0.10|0001AD76|3|8| +22|2023-10-06T20:26:23.5450000-07:00|40022A88|Ruby Carbuncle|323|Whispering Dawn|10FF0002|Suchichi Suchi|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|80260|90128|6800|10000|||99.63|99.99|0.00|-3.08|73956|77430|10000|10000|||99.90|97.15|0.00|0.10|0001AD76|4|8| +22|2023-10-06T20:26:23.5450000-07:00|40022A88|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7065|10000|||100.27|100.67|0.00|3.01|73956|77430|10000|10000|||99.90|97.15|0.00|0.10|0001AD76|5|8| +22|2023-10-06T20:26:23.5450000-07:00|40022A88|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|80196|80739|4550|10000|||100.02|100.71|0.00|-3.14|73956|77430|10000|10000|||99.90|97.15|0.00|0.10|0001AD76|6|8| +22|2023-10-06T20:26:23.5450000-07:00|40022A88|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|53046|73085|5750|10000|||100.39|100.88|0.00|-3.12|73956|77430|10000|10000|||99.90|97.15|0.00|0.10|0001AD76|7|8| +21|2023-10-06T20:26:23.5450000-07:00|10FF0008|Kokosaze Lulusaze|64E7|Summon Phoenix|40022550|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|19410631|40478540|10000|10000|||100.00|80.10|0.00|0.00|77402|79111|9400|10000|||100.08|99.96|0.00|-3.14|0001AD77|0|1| +20|2023-10-06T20:26:23.5450000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.02|100.71|0.00|-3.14| +261|2023-10-06T20:26:23.1680000-07:00|Change|40022A8F||| +38|2023-10-06T20:26:23.5900000-07:00|40022A9F||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:26:23.5900000-07:00|40022A9F||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +24|2023-10-06T20:26:23.6340000-07:00|10FF0002|Suchichi Suchi|DoT|0|1953|80260|90128|6800|10000|||99.63|99.99|0.00|-3.08|10FF0002|Suchichi Suchi|FFFFFFFF|80260|90128|6800|10000|||99.63|99.99|0.00|-3.08| +261|2023-10-06T20:26:23.2580000-07:00|Change|10FF0004||||||||||||||||||| +24|2023-10-06T20:26:23.6340000-07:00|10FF0002|Suchichi Suchi|HoT|0|1ADF|80260|90128|6800|10000|||99.63|99.99|0.00|-3.08|10FF0002|Suchichi Suchi|0|80260|90128|6800|10000|||99.63|99.99|0.00|-3.08| +21|2023-10-06T20:26:23.6340000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|1E300000|104|5A48000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|19410631|40478540|10000|10000|||100.00|80.10|0.00|0.00|80260|90128|6800|10000|||99.63|99.99|0.00|-3.08|0001AD78|0|1| +38|2023-10-06T20:26:23.6340000-07:00|10FF0002|Suchichi Suchi|005A5A16|80656|90128|6800|10000|0||99.63|99.99|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.6340000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:26:23.6340000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:26:23.6340000-07:00|10FF0003|Gegehi Gehi|005A5A23|53046|73085|5750|10000|0||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.6340000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +24|2023-10-06T20:26:23.6780000-07:00|10FF0003|Gegehi Gehi|DoT|0|17A0|53046|73085|5750|10000|||100.39|100.88|0.00|-3.12|10FF0006|Wowobora Gogobora|FFFFFFFF|80739|80739|7065|10000|||100.27|100.48|0.00|2.84| +24|2023-10-06T20:26:23.6780000-07:00|10FF0003|Gegehi Gehi|HoT|0|1A07|53046|73085|5750|10000|||100.39|100.88|0.00|-3.12|10FF0006|Wowobora Gogobora|0|80739|80739|7065|10000|||100.27|100.48|0.00|2.84| +38|2023-10-06T20:26:23.6780000-07:00|10FF0003|Gegehi Gehi|005A5A23|53661|73085|5750|10000|0||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:23.7230000-07:00|40022550|Zeromus|0001AD73|19410575||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:23.7670000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|D2B0000|104|2758000|0|0|0|0|0|0|0|0|0|0|0|0|19410575|40478540|10000|10000|||100.00|80.10|0.00|0.00|80656|90128|6800|10000|||99.63|99.99|0.00|3.12|0001AD79|0|1| +38|2023-10-06T20:26:23.7670000-07:00|10FF0002|Suchichi Suchi|005A5A16|80656|90128|6800|10000|0||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.7670000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:23.8120000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7065|10000|0||100.27|100.42|-0.02|2.84|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.8120000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +24|2023-10-06T20:26:23.8570000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|FA1|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|80739|80739|7065|10000|||100.27|100.39|0.00|2.86| +24|2023-10-06T20:26:23.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|117D|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13|10FF0006|Wowobora Gogobora|0|80739|80739|7065|10000|||100.27|100.39|0.00|2.86| +24|2023-10-06T20:26:23.8570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|B01|128564|128564|8400|10000|||99.99|98.47|0.50|-3.14|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|AA5|66788|90055|7000|10000|||99.32|99.75|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|A9B|77402|79111|9400|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0002|Suchichi Suchi|HoT|798|AB8|80656|90128|6800|10000|||99.63|99.99|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0006|Wowobora Gogobora|HoT|798|986|80739|80739|7065|10000|||100.27|100.39|0.00|2.86|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|117E|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0003|Gegehi Gehi|HoT|798|A88|53661|73085|5750|10000|||100.39|100.88|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|A71|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1856|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:23.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|11AD|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80196|80739|4550|10000|||100.02|100.69|0.00|-3.14| +38|2023-10-06T20:26:23.8570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8400|10000|0||99.99|98.47|0.50|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:23.8570000-07:00|10FF0002|Suchichi Suchi|005A5A16|83400|90128|6800|10000|0||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:23.8570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:23.8570000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7065|10000|0||100.27|100.39|0.00|2.86|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:23.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||100.13|96.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:23.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79034|80739|5100|10000|0||100.02|100.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:23.8570000-07:00|10FF0003|Gegehi Gehi|005A5A23|56357|73085|5750|10000|0||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:23.8570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|69513|90055|7000|10000|0||99.32|99.75|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:26:23.9010000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|0.10| +21|2023-10-06T20:26:23.9010000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|EA20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19410575|40478540|10000|10000|||100.00|80.10|0.00|0.00|66788|90055|7000|10000|||99.32|99.75|0.00|3.07|0001AD7A|0|1| +38|2023-10-06T20:26:23.9010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8400|10000|0||99.99|98.47|0.50|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.9010000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:26:23.5430000-07:00|Add|40022A9F||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:23.9460000-07:00|40022550|Zeromus|0001AD74|19410503||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:23.9460000-07:00|10FF0005|Wuwuchu Wuchu|DoT|0|18B3|66788|90055|7000|10000|||99.32|99.75|0.00|3.07|10FF0006|Wowobora Gogobora|FFFFFFFF|80739|80739|7065|10000|||100.27|100.39|0.00|2.86| +24|2023-10-06T20:26:23.9460000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1018|66788|90055|7000|10000|||99.32|99.75|0.00|3.07|10FF0006|Wowobora Gogobora|0|80739|80739|7065|10000|||100.27|100.39|0.00|2.86| +38|2023-10-06T20:26:23.9460000-07:00|10FF0003|Gegehi Gehi|005A5A23|56357|73085|5750|10000|0||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:23.9460000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:23.9460000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|67310|90055|7000|10000|0||99.32|99.75|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:26:23.5430000-07:00|40022A9F|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14| +261|2023-10-06T20:26:23.6380000-07:00|Change|40022A9F||| +24|2023-10-06T20:26:23.9920000-07:00|10FF0006|Wowobora Gogobora|DoT|0|16C4|80739|80739|7065|10000|||100.29|100.39|0.00|2.95|40022550|Zeromus|FFFFFFFF|19410503|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:23.9920000-07:00|10FF0006|Wowobora Gogobora|HoT|0|10E4|80739|80739|7065|10000|||100.29|100.39|0.00|2.95|40022550|Zeromus|0|19410503|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:23.9920000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41712003|2F600000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|19410503|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13|0001AD7B|0|1| +38|2023-10-06T20:26:23.9920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|79235|80739|7615|10000|0||100.29|100.39|0.00|2.95|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:26:23.9920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||100.13|96.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:23.9920000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:26:23.9920000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:26:24.0790000-07:00|40022550|Zeromus|0001AD71|19390182||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:24.0790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79034|80739|5100|10000|0||100.02|100.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:24.0790000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:26:23.8480000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:26:24.2120000-07:00|10FF0002|Suchichi Suchi|005A5A16|83400|90128|6800|10000|0||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:24.2120000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:26:24.2560000-07:00|40022550|Zeromus|0001AD78|19382454||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:23.8480000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:24.2560000-07:00|10FF0002|Suchichi Suchi|0001AD78|84844|90128|6800|10000|0||99.63|99.99|0.00|3.12|1600|0|0|01|08000323|0|41F00000|| +39|2023-10-06T20:26:24.2560000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|8600|10000|||99.99|98.47|1.58|-3.14| +38|2023-10-06T20:26:24.2560000-07:00|10FF0002|Suchichi Suchi|005A5A16|84844|90128|6800|10000|0||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:24.3020000-07:00|40022550|Zeromus|0001AD79|19379083||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:24.3020000-07:00|10FF0002|Suchichi Suchi|0001AD79|85473||||||99.63|99.99|0.00|3.12| +38|2023-10-06T20:26:24.3450000-07:00|40022A9F|Demi-Phoenix|005A5A00|72376|75851|10000|10000|0||101.85|101.74|0.00|-3.14|0|0|0||||||| +26|2023-10-06T20:26:24.3450000-07:00|30|Well Fed|2075.07|10FF0008|Kokosaze Lulusaze|40022A9F|Demi-Phoenix|2964|75851|79111| +26|2023-10-06T20:26:24.3450000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|40022A9F|Demi-Phoenix|01|75851|40478540| +21|2023-10-06T20:26:24.3450000-07:00|10FF0008|Kokosaze Lulusaze|4084|Enkindle Phoenix|40022550|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|19379083|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14|0001AD7C|0|1| +38|2023-10-06T20:26:24.3450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|67310|90055|7000|10000|0||99.32|99.75|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:24.3450000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:26:24.3890000-07:00|10FF0003|Gegehi Gehi|57087|73085|5950|10000|||100.39|100.88|0.00|-3.12| +37|2023-10-06T20:26:24.4340000-07:00|10FF0001|Sesuga Sapisuga|0001AD76|127791|127791|10000|10000|0||100.13|96.57|0.00|-3.13|1300|0|0|03|0200076E|03|C1F00000|||||||||| +26|2023-10-06T20:26:24.4340000-07:00|13B|Whispering Dawn|21.00|40022A88|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:26:24.4340000-07:00|40022550|Zeromus|0001AD7A|19375337||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:24.0840000-07:00|Change|10FF0003||| +37|2023-10-06T20:26:24.4800000-07:00|40022550|Zeromus|0001AD72|19366442||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:24.4800000-07:00|10FF0002|Suchichi Suchi|86374|90128|7000|10000|||99.63|99.99|0.00|3.12| +22|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|200004|150B0000|560E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|0001AD7D|0|8| +22|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|200004|170E0000|C60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|0001AD7D|1|8| +22|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|CD80000|190E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|79034|80739|5100|10000|||100.02|100.69|0.00|-3.14|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|0001AD7D|2|8| +22|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|200004|13F60000|E00E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|57087|73085|5950|10000|||100.39|100.88|0.00|-3.12|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|0001AD7D|3|8| +22|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|200004|13F70000|E30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|85473|90128|6800|10000|||99.63|99.99|0.00|3.12|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|0001AD7D|4|8| +22|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|CDA0000|200E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|67310|90055|7000|10000|||99.32|99.75|0.00|3.07|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|0001AD7D|5|8| +261|2023-10-06T20:26:24.0840000-07:00|Change|10FF0002||||||||| +22|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|200004|160D0000|900E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|128564|128564|8600|10000|||99.99|98.47|0.00|-3.14|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|0001AD7D|6|8| +22|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|CDB0000|230E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|0001AD7D|7|8| +21|2023-10-06T20:26:24.4800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|3D370000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19375337|40478540|10000|10000|||100.00|80.10|0.00|0.00|79034|80739|5100|10000|||100.02|100.69|0.00|-3.14|0001AD7E|0|1| +38|2023-10-06T20:26:24.4800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8600|10000|14||99.99|98.47|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:24.4800000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:24.4800000-07:00|10FF0002|Suchichi Suchi|005A5A16|86374|90128|7000|10000|18||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:24.4800000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:24.4800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|23||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:24.4800000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:24.4800000-07:00|10FF0006|Wowobora Gogobora|005A5A28|79235|80739|6715|10000|21||100.30|100.24|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:24.4800000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:24.4800000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:24.4800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.13|96.57|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:24.4800000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:26:24.4800000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:24.4800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79034|80739|4700|10000|13||100.02|100.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:24.4800000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:24.4800000-07:00|10FF0003|Gegehi Gehi|005A5A23|57087|73085|5950|10000|22||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:24.4800000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:24.4800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|67310|90055|7000|10000|11||99.32|99.75|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:24.4800000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:26:24.5240000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|128564|128564|8600|10000|||99.99|98.47|0.00|-3.14|10FF0006|Wowobora Gogobora|FFFFFFFF|79235|80739|7615|10000|||100.30|100.24|0.00|3.10| +24|2023-10-06T20:26:24.5240000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|117C|128564|128564|8600|10000|||99.99|98.47|0.00|-3.14|10FF0006|Wowobora Gogobora|0|79235|80739|7615|10000|||100.30|100.24|0.00|3.10| +24|2023-10-06T20:26:24.5240000-07:00|40022550|Zeromus|DoT|A92|4D3|19375337|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14| +24|2023-10-06T20:26:24.5240000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|79034|80739|5100|10000|||100.02|100.69|0.00|-3.14| +24|2023-10-06T20:26:24.5240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|10DB|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|79034|80739|5100|10000|||100.02|100.69|0.00|-3.14| +38|2023-10-06T20:26:24.5240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8600|10000|10||99.99|98.47|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:24.5240000-07:00|40022550|Zeromus|005A5A00|19365207|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:26:24.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|16||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:24.5680000-07:00|10FF0007|Kehabiqo Febiqo|0001AD76|128564|128564|8600|10000|10||99.99|98.47|0.00|-3.14|1501|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T20:26:24.5680000-07:00|13B|Whispering Dawn|21.00|40022A88|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:26:24.5680000-07:00|40022550|Zeromus|0001AD7B|19353079||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:24.5680000-07:00|10FF0001|Sesuga Sapisuga|0001AD7B|127791|127791|10000|10000|8||100.13|96.57|0.00|-3.13|1300|0|0|02|0200076E|03|41F00000|||||| +21|2023-10-06T20:26:24.5680000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|8430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19375337|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|8600|10000|||99.99|98.47|0.00|-3.14|0001AD7F|0|1| +21|2023-10-06T20:26:24.5680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|52E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19375337|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13|0001AD80|0|1| +22|2023-10-06T20:26:24.5680000-07:00|40022A9F|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|57087|73085|5950|10000|||100.39|100.88|0.00|-3.12|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD81|0|8| +22|2023-10-06T20:26:24.5680000-07:00|40022A9F|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79034|80739|5100|10000|||100.02|100.69|0.00|-3.14|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD81|1|8| +22|2023-10-06T20:26:24.5680000-07:00|40022A9F|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79235|80739|7615|10000|||100.30|100.24|0.00|3.10|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD81|2|8| +22|2023-10-06T20:26:24.5680000-07:00|40022A9F|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|16360E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD81|3|8| +22|2023-10-06T20:26:24.5680000-07:00|40022A9F|Demi-Phoenix|4085|Everlasting Flight|10FF0002|Suchichi Suchi|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|85473|90128|6800|10000|||99.63|99.99|0.00|3.12|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD81|4|8| +22|2023-10-06T20:26:24.5680000-07:00|40022A9F|Demi-Phoenix|4085|Everlasting Flight|10FF0005|Wuwuchu Wuchu|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|67310|90055|7000|10000|||99.32|99.75|0.00|3.07|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD81|5|8| +22|2023-10-06T20:26:24.5680000-07:00|40022A9F|Demi-Phoenix|4085|Everlasting Flight|10FF0007|Kehabiqo Febiqo|16360E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|8600|10000|||99.99|98.47|0.00|-3.14|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD81|6|8| +22|2023-10-06T20:26:24.5680000-07:00|40022A9F|Demi-Phoenix|4085|Everlasting Flight|10FF0001|Sesuga Sapisuga|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD81|7|8| +38|2023-10-06T20:26:24.5680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.13|96.57|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +31|2023-10-06T20:26:24.5680000-07:00|10FF0001||||| +38|2023-10-06T20:26:24.6120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8600|10000|10||99.99|98.47|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:24.6120000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:26:24.2020000-07:00|Change|40022A9F||| +20|2023-10-06T20:26:24.6560000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|100.39|100.88|0.00|-3.12| +261|2023-10-06T20:26:24.3000000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:26:24.3000000-07:00|Change|40022A9F||| +37|2023-10-06T20:26:24.7000000-07:00|10FF0005|Wuwuchu Wuchu|0001AD76|67310|90055|7000|10000|11||99.32|99.75|0.00|3.07|2702|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T20:26:24.7000000-07:00|13B|Whispering Dawn|21.00|40022A88|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +38|2023-10-06T20:26:24.7450000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|16||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:24.7450000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:26:24.8330000-07:00|10FF0008|Kokosaze Lulusaze|0001AD76|79111|79111|9400|10000|16||100.08|99.96|0.00|-3.14|1B03|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T20:26:24.8330000-07:00|13B|Whispering Dawn|21.00|40022A88|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +37|2023-10-06T20:26:24.9680000-07:00|10FF0002|Suchichi Suchi|0001AD76|86374|90128|7000|10000|18||99.63|99.99|0.00|3.12|1604|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T20:26:24.9680000-07:00|13B|Whispering Dawn|21.00|40022A88|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +39|2023-10-06T20:26:25.0120000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.13|96.57|0.00|-3.13| +21|2023-10-06T20:26:25.0580000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40714003|3B320000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|19353079|40478540|10000|10000|||100.00|80.10|0.00|0.00|67310|90055|7000|10000|||99.32|99.75|0.00|3.07|0001AD82|0|1| +37|2023-10-06T20:26:25.1010000-07:00|40022550|Zeromus|0001AD7F|19350964||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:25.1010000-07:00|10FF0006|Wowobora Gogobora|0001AD76|79235|80739|6715|10000|21||100.30|100.21|0.00|3.13|2805|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T20:26:25.1010000-07:00|13B|Whispering Dawn|21.00|40022A88|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +37|2023-10-06T20:26:25.1010000-07:00|40022550|Zeromus|0001AD80|19349638||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:25.1900000-07:00|40022550|Zeromus|DoT|0|1D43|19349638|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|79235|80739|6715|10000|||100.30|100.21|0.00|3.13| +38|2023-10-06T20:26:25.1900000-07:00|40022550|Zeromus|005A5A00|19342147|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T20:26:25.2350000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD76|79034|80739|4700|10000|13||100.02|100.66|0.00|-3.14|1C06|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T20:26:25.2350000-07:00|13B|Whispering Dawn|21.00|40022A88|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +37|2023-10-06T20:26:25.2790000-07:00|40022550|Zeromus|0001AD7E|19326476||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:26:25.3240000-07:00|6108|3| +261|2023-10-06T20:26:24.9510000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:26:25.3690000-07:00|10FF0003|Gegehi Gehi|0001AD76|57087|73085|5950|10000|22||100.39|100.88|0.00|-3.12|2307|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T20:26:25.3690000-07:00|13B|Whispering Dawn|21.00|40022A88|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +38|2023-10-06T20:26:25.3690000-07:00|40022A88|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.90|97.15|0.00|0.15|0|0|0|||| +30|2023-10-06T20:26:25.3690000-07:00|77B|Summon Order|0.00|40022A88|Ruby Carbuncle|40022A88|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T20:26:25.4130000-07:00|10FF0006|Wowobora Gogobora|0001AD7D|80739|80739|6715|10000|21||100.30|100.21|0.00|2.43|2800|0|0|01|03000A31|0|41E8E144|| +21|2023-10-06T20:26:25.4130000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|102F0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|8600|10000|||99.99|98.47|0.00|-3.14|0001AD83|0|1| +261|2023-10-06T20:26:25.0670000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T20:26:25.5020000-07:00|10FF0003|Gegehi Gehi|0001AD81|57087|73085|5950|10000|22||100.39|100.88|0.00|-3.12|2300|0|0|01|0600074C|0|41A80000|| +26|2023-10-06T20:26:25.5020000-07:00|74C|Everlasting Flight|21.00|40022A9F|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73085|75851| +39|2023-10-06T20:26:25.5020000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6920|10000|||100.30|100.25|-0.02|1.77| +37|2023-10-06T20:26:25.5470000-07:00|10FF0008|Kokosaze Lulusaze|0001AD7D|79111|79111|9400|10000|16||100.08|99.96|0.00|-3.14|1B01|0|0|01|02000A31|0|41E7D0E1|| +21|2023-10-06T20:26:25.5470000-07:00|40022A9F|Demi-Phoenix|4086|Revelation|40022550|Zeromus|152003|204001|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.85|101.74|0.00|-3.14|0001AD84|0|1| +37|2023-10-06T20:26:25.5920000-07:00|40022550|Zeromus|0001AD82|19311322||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:25.2760000-07:00|Change|40022A8F||| +37|2023-10-06T20:26:25.6370000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD81|79034|80739|4700|10000|13||100.02|100.60|0.00|-3.14|1C01|0|0|01|0800074C|0|41A80000|| +26|2023-10-06T20:26:25.6370000-07:00|74C|Everlasting Flight|21.00|40022A9F|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|80739|75851| +38|2023-10-06T20:26:25.6370000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79034|80739|4700|10000|13||100.02|100.60|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:25.6370000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:26:25.6820000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD7D|80739|80739|4700|10000|13||100.02|100.60|0.00|-3.14|1C02|0|0|01|03000A31|0|41E6BC66|| +22|2023-10-06T20:26:25.6820000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0001|Sesuga Sapisuga|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.14|96.16|0.00|3.12|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD85|0|8| +22|2023-10-06T20:26:25.6820000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0007|Kehabiqo Febiqo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|128564|128564|8600|10000|||99.99|98.47|0.00|-3.14|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD85|1|8| +22|2023-10-06T20:26:25.6820000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0008|Kokosaze Lulusaze|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD85|2|8| +22|2023-10-06T20:26:25.6820000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0002|Suchichi Suchi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|86374|90128|7000|10000|||99.63|99.99|0.00|3.12|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD85|3|8| +22|2023-10-06T20:26:25.6820000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0005|Wuwuchu Wuchu|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|67310|90055|7000|10000|||99.45|99.80|0.00|3.10|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD85|4|8| +22|2023-10-06T20:26:25.6820000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0004|Buhojaqe Zijaqe|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|79034|80739|4700|10000|||100.02|100.60|0.00|-3.14|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD85|5|8| +22|2023-10-06T20:26:25.6820000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0006|Wowobora Gogobora|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|80739|80739|6920|10000|||100.27|100.40|0.00|1.31|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD85|6|8| +22|2023-10-06T20:26:25.6820000-07:00|40022550|Zeromus|8B3F|Abyssal Nox|10FF0003|Gegehi Gehi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|57087|73085|5950|10000|||100.39|100.88|0.00|-3.12|19326476|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AD85|7|8| +261|2023-10-06T20:26:25.2760000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:26:25.2760000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:26:25.2760000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:26:25.2760000-07:00|Change|40022569||||||||| +261|2023-10-06T20:26:25.2760000-07:00|Change|40022568||||||||| +261|2023-10-06T20:26:25.2760000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:26:25.2760000-07:00|Change|40022567||||||||| +261|2023-10-06T20:26:25.2760000-07:00|Change|40022565||||||||| +37|2023-10-06T20:26:25.7700000-07:00|10FF0006|Wowobora Gogobora|0001AD81|80739|80739|6920|10000|21||100.27|100.51|0.00|0.94|2802|0|0|01|0600074C|0|41A80000|| +26|2023-10-06T20:26:25.7700000-07:00|74C|Everlasting Flight|21.00|40022A9F|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|80739|75851| +20|2023-10-06T20:26:25.7700000-07:00|40022565|Zeromus|8B42|Abyssal Echoes|40022565|Zeromus|15.700|83.50|116.50|0.00|0.00| +20|2023-10-06T20:26:25.7700000-07:00|40022566|Zeromus|8B41|unknown_8b41|40022566|Zeromus|8.700|100.00|100.00|0.00|-0.79| +20|2023-10-06T20:26:25.7700000-07:00|40022567|Zeromus|8B42|Abyssal Echoes|40022567|Zeromus|15.700|116.50|116.50|0.00|0.00| +20|2023-10-06T20:26:25.7700000-07:00|40022568|Zeromus|8B41|unknown_8b41|40022568|Zeromus|8.700|100.00|100.00|0.00|0.79| +20|2023-10-06T20:26:25.7700000-07:00|40022569|Zeromus|8B42|Abyssal Echoes|40022569|Zeromus|15.700|112.00|100.00|0.00|0.00| +20|2023-10-06T20:26:25.7700000-07:00|4002256A|Zeromus|8B40|unknown_8b40|4002256A|Zeromus|8.700|100.00|100.00|0.00|1.57| +20|2023-10-06T20:26:25.7700000-07:00|4002256B|Zeromus|8B42|Abyssal Echoes|4002256B|Zeromus|15.700|100.00|88.00|0.00|0.00| +20|2023-10-06T20:26:25.7700000-07:00|4002256C|Zeromus|8B40|unknown_8b40|4002256C|Zeromus|8.700|100.00|100.00|0.00|3.14| +20|2023-10-06T20:26:25.7700000-07:00|4002256D|Zeromus|8B42|Abyssal Echoes|4002256D|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:25.7700000-07:00|4002256E|Zeromus|8D2B|unknown_8d2b|4002256E|Zeromus|8.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:26:25.3710000-07:00|Change|40022566||||||||||||||| +261|2023-10-06T20:26:25.3710000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:26:25.3710000-07:00|Change|4002256D||||||||||||| +37|2023-10-06T20:26:25.8150000-07:00|10FF0003|Gegehi Gehi|0001AD7D|62197|73085|5950|10000|22||100.39|100.88|0.00|-3.12|2303|0|0|01|01000A31|0|41E5AC03|| +39|2023-10-06T20:26:25.8590000-07:00|10FF0005|Wuwuchu Wuchu|68210|90055|7200|10000|||99.72|99.94|0.00|3.11| +21|2023-10-06T20:26:25.8600000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19311322|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14|0001AD86|0|1| +261|2023-10-06T20:26:25.4630000-07:00|Change|10FF0005||||||||||| +37|2023-10-06T20:26:25.9050000-07:00|10FF0008|Kokosaze Lulusaze|0001AD81|79111|79111|9400|10000|16||100.08|99.96|0.00|-3.14|1B03|0|0|01|0700074C|0|41A80000|| +26|2023-10-06T20:26:25.9050000-07:00|74C|Everlasting Flight|21.00|40022A9F|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|79111|75851| +37|2023-10-06T20:26:25.9490000-07:00|40022550|Zeromus|0001AD83|19307179||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:25.9490000-07:00|10FF0002|Suchichi Suchi|0001AD7D|90128|90128|7000|10000|18||99.63|99.99|0.00|3.12|1604|0|0|01|03000A31|0|41E49788|| +261|2023-10-06T20:26:25.5560000-07:00|Remove|40022A7D| +20|2023-10-06T20:26:25.9930000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.27|100.67|0.00|0.43| +37|2023-10-06T20:26:26.0380000-07:00|10FF0002|Suchichi Suchi|0001AD81|90128|90128|7000|10000|18||99.63|99.99|0.00|3.12|1604|0|0|01|0900074C|0|41A80000|| +26|2023-10-06T20:26:26.0380000-07:00|74C|Everlasting Flight|21.00|40022A9F|Demi-Phoenix|10FF0002|Suchichi Suchi|00|90128|75851| +39|2023-10-06T20:26:26.0380000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9600|10000|||100.08|99.96|0.00|-3.14| +21|2023-10-06T20:26:26.0380000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|154003|694B0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|19307179|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||100.08|99.96|0.00|-3.14|0001AD87|0|1| +37|2023-10-06T20:26:26.0810000-07:00|10FF0005|Wuwuchu Wuchu|0001AD7D|71500|90055|7200|10000|11||99.95|100.08|0.00|3.12|2705|0|0|01|02000A31|0|41E38725|| +21|2023-10-06T20:26:26.0810000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|200004|20DC0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|68210|90055|7200|10000|||99.95|100.08|0.00|3.12|73956|77430|10000|10000|||99.90|97.15|0.00|1.11|0001AD88|0|1| +21|2023-10-06T20:26:26.0820000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|754003|2A330000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|19307179|40478540|10000|10000|||100.00|80.10|0.00|0.00|62197|73085|5950|10000|||100.39|100.88|0.00|-3.12|0001AD89|0|1| +261|2023-10-06T20:26:25.7450000-07:00|Change|10FF0008||| +38|2023-10-06T20:26:26.0820000-07:00|10FF0003|Gegehi Gehi|005A5A23|62197|73085|5750|10000|22||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:26.0820000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +39|2023-10-06T20:26:26.1260000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4900|10000|||100.02|100.09|0.00|-3.14| +21|2023-10-06T20:26:26.1260000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|286B0000|104|78D8000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|19307179|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|7000|10000|||99.63|99.99|0.00|3.12|0001AD8A|0|1| +38|2023-10-06T20:26:26.1260000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7000|10000|18||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:26.1260000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:26:26.1260000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:26:26.1700000-07:00|10FF0005|Wuwuchu Wuchu|0001AD81|71500|90055|7200|10000|11||99.95|100.08|0.00|3.12|2705|0|0|01|0700074C|0|41A80000|| +26|2023-10-06T20:26:26.1700000-07:00|74C|Everlasting Flight|21.00|40022A9F|Demi-Phoenix|10FF0005|Wuwuchu Wuchu|00|90055|75851| +261|2023-10-06T20:26:25.7450000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:26:25.7450000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:26:25.7450000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:26:25.7450000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:26:25.7450000-07:00|Change|4002256A||||||||||||| +37|2023-10-06T20:26:26.2150000-07:00|10FF0007|Kehabiqo Febiqo|0001AD7D|128564|128564|8600|10000|10||99.99|98.47|0.00|-3.14|1506|0|0|01|05000A31|0|41E278CE|| +37|2023-10-06T20:26:26.3040000-07:00|10FF0007|Kehabiqo Febiqo|0001AD81|128564|128564|8600|10000|10||99.99|98.47|0.00|-3.14|1506|0|0|01|0900074C|0|41A80000|| +26|2023-10-06T20:26:26.3040000-07:00|74C|Everlasting Flight|21.00|40022A9F|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|128564|75851| +38|2023-10-06T20:26:26.3040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8600|10000|10||99.99|98.47|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:26.3040000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:26:26.3040000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|40478540| +261|2023-10-06T20:26:25.8670000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:26:26.3480000-07:00|10FF0001|Sesuga Sapisuga|0001AD7D|127791|127791|10000|10000|8||100.14|96.16|0.00|3.12|1307|0|0|01|08000A31|0|41E1665F|| +38|2023-10-06T20:26:26.3480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.14|96.16|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:26.3480000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|40478540| +37|2023-10-06T20:26:26.3930000-07:00|40022550|Zeromus|0001AD86|19307004||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:26.3930000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|71500|90055|7200|10000|11||100.00|100.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:26.3930000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|40478540| +261|2023-10-06T20:26:26.1000000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T20:26:26.4380000-07:00|10FF0001|Sesuga Sapisuga|0001AD81|127791|127791|10000|10000|8||100.14|96.16|0.00|-3.13|1307|0|0|01|0500074C|0|41A80000|| +26|2023-10-06T20:26:26.4380000-07:00|74C|Everlasting Flight|21.00|40022A9F|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|127791|75851| +38|2023-10-06T20:26:26.4380000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7000|10000|18||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:26.4380000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0002|Suchichi Suchi|00|90128|40478540| +38|2023-10-06T20:26:26.4380000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6920|10000|21||100.27|100.84|0.00|-2.86|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:26.4380000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:26.4380000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:26.4820000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6920|10000|21||100.27|100.84|0.00|-2.86|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:26.4820000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0006|Wowobora Gogobora|00|80739|40478540| +38|2023-10-06T20:26:26.5270000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4900|10000|13||100.02|100.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:26.5270000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|40478540| +37|2023-10-06T20:26:26.5710000-07:00|40022550|Zeromus|0001AD84|19241436||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:26.5720000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|A9A0000|104|1FA8000|0|0|0|0|0|0|0|0|0|0|0|0|19307004|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|7000|10000|||99.63|99.99|0.00|3.12|0001AD8B|0|1| +21|2023-10-06T20:26:26.5720000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|F490000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|19307004|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001AD8C|0|1| +38|2023-10-06T20:26:26.5720000-07:00|40022A9F|Demi-Phoenix|005A5A00|72376|75851|10000|10000|0||101.85|101.73|0.00|-3.06|0|0|0|||| +30|2023-10-06T20:26:26.5720000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|40022A9F|Demi-Phoenix|01|75851|40478540| +38|2023-10-06T20:26:26.5720000-07:00|10FF0003|Gegehi Gehi|005A5A23|62197|73085|5750|10000|22||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:26.5720000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0003|Gegehi Gehi|00|73085|40478540| +38|2023-10-06T20:26:26.6160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|16||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:26.6160000-07:00|EB1|Big Bounce|0.00|40022550|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|40478540| +24|2023-10-06T20:26:26.6610000-07:00|10FF0002|Suchichi Suchi|HoT|0|31DF|90128|90128|7000|10000|||99.63|99.99|0.00|3.12|10FF0002|Suchichi Suchi|0|90128|90128|7000|10000|||99.63|99.99|0.00|3.12| +20|2023-10-06T20:26:26.6610000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.02|100.05|0.00|-3.14| +38|2023-10-06T20:26:26.6610000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7000|10000|18||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:26.6610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.14|96.16|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:26.6610000-07:00|2B|Weakness|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|127791|| +12|2023-10-06T20:26:26.3040000-07:00|19|3439|385|3962|245|408|390|3439|976|2540|245|408|2182|400|400|0|529|4000174A6D2E55| +24|2023-10-06T20:26:26.7050000-07:00|10FF0003|Gegehi Gehi|HoT|0|29CE|62197|73085|5750|10000|||100.39|100.88|0.00|-3.12|10FF0006|Wowobora Gogobora|0|80739|80739|6920|10000|||100.27|100.85|0.00|-3.13| +38|2023-10-06T20:26:26.7050000-07:00|10FF0003|Gegehi Gehi|005A5A23|72899|73085|5750|10000|22||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:26:26.3040000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:26:26.3040000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:26:26.3040000-07:00|Change|40022565||||||||||||| +37|2023-10-06T20:26:26.7950000-07:00|40022550|Zeromus|0001AD8A|19231089||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:26.7950000-07:00|10FF0002|Suchichi Suchi|0001AD8A|90128|90128|7000|10000|18||99.63|99.99|0.00|3.12|1600|0|0|01|0A000747|0|41F00000|| +21|2023-10-06T20:26:26.7950000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|7000|10000|||99.63|99.99|0.00|3.12|90128|90128|7000|10000|||99.63|99.99|0.00|3.12|0001AD8D|0|1| +38|2023-10-06T20:26:26.7950000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7000|10000|18||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:26.8390000-07:00|40022550|Zeromus|0001AD89|19220286||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:26.8390000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|7FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19231089|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001AD8E|0|1| +31|2023-10-06T20:26:26.8390000-07:00|10FF0001||||| +37|2023-10-06T20:26:26.8830000-07:00|10FF0005|Wuwuchu Wuchu|0001AD88|79912||||||100.04|100.32|0.00|2.99| +39|2023-10-06T20:26:26.8840000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|0.04| +24|2023-10-06T20:26:26.8840000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2672|127791|127791|10000|10000|||100.14|96.16|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4900|10000|||100.02|100.05|0.00|-3.14| +24|2023-10-06T20:26:26.8840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2ECC|80739|80739|4900|10000|||100.02|100.05|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4900|10000|||100.02|100.05|0.00|-3.14| +38|2023-10-06T20:26:26.8840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.14|96.16|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:26.8840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5450|10000|13||100.02|100.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:26.9290000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|343B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|19220286|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6920|10000|||100.27|100.85|0.00|-3.13|0001AD8F|0|1| +24|2023-10-06T20:26:26.9720000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|2419|79912|90055|7200|10000|||100.05|100.33|0.00|2.96|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4900|10000|||100.02|100.05|0.00|-3.14| +21|2023-10-06T20:26:26.9720000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19220286|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6920|10000|||100.27|100.85|0.00|-3.13|0001AD90|0|1| +38|2023-10-06T20:26:26.9720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|89153|90055|7200|10000|11||100.05|100.33|0.00|2.96|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:27.0180000-07:00|10FF0006|Wowobora Gogobora|HoT|0|22E0|80739|80739|6920|10000|||100.27|100.85|0.00|-3.13|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:27.0180000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6520|10000|21||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:26:27.0620000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|26090000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|19220286|40478540|10000|10000|||100.00|80.10|0.00|0.00|72899|73085|5750|10000|||100.39|100.88|0.00|-3.12|0001AD91|0|1| +38|2023-10-06T20:26:27.0620000-07:00|10FF0003|Gegehi Gehi|005A5A23|72899|73085|5450|10000|22||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:27.0620000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:26:27.1070000-07:00|40022550|Zeromus|0001AD8B|19217572||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:27.1070000-07:00|40022550|Zeromus|0001AD87|19190617||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:27.1070000-07:00|10FF0008|Kokosaze Lulusaze|64E6|Rekindle|10FF0007|Kehabiqo Febiqo|4|23DE0000|4B16A40E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|128564|128564|8600|10000|||99.99|97.82|0.00|-3.14|79111|79111|9300|10000|||100.08|99.96|0.00|-3.14|0001AD92|0|1| +21|2023-10-06T20:26:27.1070000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|12DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19220286|40478540|10000|10000|||100.00|80.10|0.00|0.00|89153|90055|7200|10000|||100.05|100.35|0.00|2.92|0001AD93|0|1| +37|2023-10-06T20:26:27.1960000-07:00|40022550|Zeromus|0001AD8C|19186704||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:26.7050000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T20:26:27.2400000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|8800|10000|||99.99|97.64|-0.02|-3.14| +261|2023-10-06T20:26:26.8240000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:26:26.9340000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:26:27.3740000-07:00|40022550|Zeromus|0001AD8E|19184658||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:27.3740000-07:00|10FF0003|Gegehi Gehi|73085|73085|5650|10000|||100.39|100.88|0.00|-3.12| +37|2023-10-06T20:26:27.4180000-07:00|10FF0002|Suchichi Suchi|0001AD8D|90128|90128|7000|10000|18||99.63|99.99|0.00|3.12|1600|0|0|01|0748|0|41A00000|| +26|2023-10-06T20:26:27.4180000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:26:27.4630000-07:00|10FF0002|Suchichi Suchi|90128|90128|7200|10000|||99.63|99.99|0.00|3.12| +21|2023-10-06T20:26:27.4630000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19184658|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5650|10000|||100.39|100.88|0.00|-3.12|0001AD94|0|1| +261|2023-10-06T20:26:27.0520000-07:00|Change|10FF0002||| +261|2023-10-06T20:26:27.0520000-07:00|Change|10FF0003||| +37|2023-10-06T20:26:27.5070000-07:00|40022550|Zeromus|0001AD90|19184622||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:27.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|28D9|128564|128564|8800|10000|||99.99|97.13|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14| +24|2023-10-06T20:26:27.5520000-07:00|40022550|Zeromus|DoT|A92|4B9|19184622|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9300|10000|||100.08|99.96|0.00|-3.11| +24|2023-10-06T20:26:27.5520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|351B|79111|79111|9300|10000|||100.08|99.96|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14| +21|2023-10-06T20:26:27.5520000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|714003|39150000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|19184622|40478540|10000|10000|||100.00|80.10|0.00|0.00|89153|90055|7200|10000|||100.05|100.36|0.00|2.91|0001AD95|0|1| +38|2023-10-06T20:26:27.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8800|10000|10||99.99|97.13|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:27.5520000-07:00|40022550|Zeromus|005A5A00|19183413|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:26:27.5520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|16||100.08|99.96|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +04|2023-10-06T20:26:27.1690000-07:00|40022A8F|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||99.61|99.26|0.00|0.57| +261|2023-10-06T20:26:27.1690000-07:00|Remove|40022A8F| +24|2023-10-06T20:26:27.5960000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|23B1|128564|128564|8800|10000|||99.99|97.13|0.00|-3.14|10FF0006|Wowobora Gogobora|1|80739|80739|6520|10000|||100.27|100.85|0.00|-3.13| +37|2023-10-06T20:26:27.5960000-07:00|40022550|Zeromus|0001AD8F|19170042||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:27.5960000-07:00|40022A9F|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|154003|16F30000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|19184622|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06|0001AD96|0|1| +38|2023-10-06T20:26:27.5960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8800|10000|10||99.99|97.13|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:27.6410000-07:00|40022550|Zeromus|0001AD93|19165212||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:27.8200000-07:00|40022550|Zeromus|0001AD91|19155475||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:27.8200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8800|10000|10||99.99|96.94|-0.02|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:27.8200000-07:00|2B|Weakness|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|128564|| +21|2023-10-06T20:26:27.8640000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|21840000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|19165212|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|8800|10000|||99.99|96.94|-0.02|-3.14|0001AD97|0|1| +21|2023-10-06T20:26:27.9530000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AB80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19155475|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|8800|10000|||99.99|96.94|0.00|-3.14|0001AD98|0|1| +37|2023-10-06T20:26:27.9970000-07:00|40022550|Zeromus|0001AD94|19155474||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:27.9970000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.14|96.16|0.00|-3.13| +22|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|1EBA0000|290E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|0001AD99|0|8| +22|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|129F0000|CB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79111|79111|9300|10000|||100.08|99.96|0.00|-3.11|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|0001AD99|1|8| +22|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|12590000|5B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90128|90128|7200|10000|||99.63|99.99|0.00|3.12|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|0001AD99|2|8| +22|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|1ED20000|500E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|6520|10000|||100.27|100.85|0.00|-3.13|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|0001AD99|3|8| +22|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|12C40000|60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73085|73085|5650|10000|||100.39|100.88|0.00|-3.12|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|0001AD99|4|8| +22|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|13110000|810E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|89153|90055|7200|10000|||100.05|100.36|0.00|2.95|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|0001AD99|5|8| +22|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|1DB80000|8C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|128564|128564|8800|10000|||99.99|96.94|0.00|-3.14|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|0001AD99|6|8| +22|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|12740000|860E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.14|96.16|0.00|-3.13|80739|80739|5450|10000|||100.02|100.05|0.00|-3.14|0001AD99|7|8| +38|2023-10-06T20:26:28.0870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8800|10000|9||99.99|96.94|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.0870000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:26:28.0870000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:28.0870000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7200|10000|8||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.0870000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:26:28.0870000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:28.0870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|9||100.08|99.96|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.0870000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:26:28.0870000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:28.0870000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6520|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:28.0870000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:28.0870000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:28.0870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||100.14|96.16|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.0870000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:26:28.0870000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:28.0870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4450|10000|15||100.02|100.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.0870000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:26:28.0870000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:28.0870000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5650|10000|10||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.0870000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:26:28.0870000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:28.0870000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|89153|90055|7200|10000|8||100.05|100.36|0.00|2.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.0870000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:26:28.0870000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:26:27.7540000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:26:28.1300000-07:00|10FF0007|Kehabiqo Febiqo|0001AD92|128564|128564|8800|10000|9||99.99|96.94|0.00|-3.14|1500|0|0|01|04000A90|4B|41F00000|| +26|2023-10-06T20:26:28.1300000-07:00|A90|Rekindle|30.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|4B|128564|79111| +24|2023-10-06T20:26:28.1750000-07:00|40022550|Zeromus|DoT|0|1D9D|19155474|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|80739|80739|6520|10000|||100.27|100.85|0.00|-3.13| +38|2023-10-06T20:26:28.1750000-07:00|40022550|Zeromus|005A5A00|19147893|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +36|2023-10-06T20:26:28.3080000-07:00|61E4|3| +20|2023-10-06T20:26:28.3970000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.27|100.85|0.00|-3.13| +261|2023-10-06T20:26:27.9760000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:26:28.4860000-07:00|40022550|Zeromus|0001AD97|19139313||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:28.4860000-07:00|40022550|Zeromus|0001AD98|19136569||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:28.4860000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6725|10000|||100.27|100.85|0.00|-3.13| +21|2023-10-06T20:26:28.4860000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|56FE0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|19147893|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||100.08|99.96|0.00|-3.11|0001AD9A|0|1| +261|2023-10-06T20:26:28.0930000-07:00|Change|10FF0008||||| +37|2023-10-06T20:26:28.5750000-07:00|40022550|Zeromus|0001AD95|19121956||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:28.6190000-07:00|40022550|Zeromus|0001AD96|19116081||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:28.6200000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|31C60000|104|94C8000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|19116081|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|7200|10000|||99.63|99.99|0.00|3.12|0001AD9B|0|1| +38|2023-10-06T20:26:28.6200000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7200|10000|8||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.6200000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:26:28.7970000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6725|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:28.7970000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:28.7970000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:28.8410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4450|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.8410000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:28.8410000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5650|10000|10||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.8410000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:28.8410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|89153|90055|7200|10000|8||99.92|96.83|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.8410000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:26:28.4830000-07:00|Change|10FF0005||||||||||| +39|2023-10-06T20:26:28.8860000-07:00|10FF0005|Wuwuchu Wuchu|90053|90055|7400|10000|||99.90|96.73|0.00|3.12| +21|2023-10-06T20:26:28.8860000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|756003|66320000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|19116081|40478540|10000|10000|||100.00|80.10|0.00|0.00|89153|90055|7200|10000|||99.90|96.73|0.00|3.12|0001AD9C|0|1| +38|2023-10-06T20:26:28.8860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8800|10000|9||99.99|96.65|-0.01|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:28.8860000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:26:28.8860000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:28.8860000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7200|10000|8||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.8860000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:28.8860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:28.8860000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:28.8860000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6725|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:28.8860000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:28.8860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||100.14|96.16|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.8860000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:28.8860000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90053|90055|7400|10000|8||99.90|96.73|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:28.8860000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +38|2023-10-06T20:26:28.9300000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5650|10000|10||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:28.9300000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:28.9750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4450|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:28.9750000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:26:29.0200000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9200|10000|||100.08|99.96|0.00|-3.14| +21|2023-10-06T20:26:29.0200000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19116081|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9000|10000|||100.08|99.96|0.00|-3.14|0001AD9D|0|1| +21|2023-10-06T20:26:29.0200000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19116081|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4450|10000|||100.02|100.05|0.00|-3.14|0001AD9E|0|1| +261|2023-10-06T20:26:28.5850000-07:00|Change|10FF0008||| +21|2023-10-06T20:26:29.0650000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|28710000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|19116081|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001AD9F|0|1| +38|2023-10-06T20:26:29.0650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||100.14|96.16|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:29.0650000-07:00|76E|Sword Oath|25.46|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +38|2023-10-06T20:26:29.0650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4450|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:29.0650000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:26:29.1090000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19116081|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001ADA0|0|1| +31|2023-10-06T20:26:29.1090000-07:00|10FF0001||||| +39|2023-10-06T20:26:29.1530000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14| +37|2023-10-06T20:26:29.1990000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD99|80739|80739|4650|10000|15||100.02|100.05|0.00|-3.14|1C00|0|0|01|03000129|0|41E776C4|| +38|2023-10-06T20:26:29.1990000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7200|10000|8||99.63|99.99|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:29.1990000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +261|2023-10-06T20:26:28.8100000-07:00|Change|10FF0004||||| +37|2023-10-06T20:26:29.2420000-07:00|40022550|Zeromus|0001AD9B|19103339||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:29.2870000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|724003|3B1B0000|104|B0B8000|0|0|0|0|0|0|0|0|0|0|0|0|19103339|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|7200|10000|||99.63|99.99|0.00|3.12|0001ADA1|0|1| +37|2023-10-06T20:26:29.3310000-07:00|10FF0008|Kokosaze Lulusaze|0001AD99|79111|79111|9200|10000|9||100.08|99.96|0.00|-3.14|1B01|0|0|01|02000129|0|41E66456|| +21|2023-10-06T20:26:29.3320000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|FC0F|A788000|0|0|0|0|0|0|0|0|0|0|128564|128564|8800|10000|||99.99|96.64|0.00|-3.14|128564|128564|8800|10000|||99.99|96.64|0.00|-3.14|0001ADA2|0|1| +21|2023-10-06T20:26:29.3320000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35920000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|19103339|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6725|10000|||100.27|100.85|0.00|-3.13|0001ADA3|0|1| +20|2023-10-06T20:26:29.3320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.02|100.05|0.00|-3.14| +38|2023-10-06T20:26:29.3320000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90053|90055|7400|10000|8||99.82|96.31|-0.02|3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:29.3320000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:26:29.3760000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|9930000|104|1C98000|0|0|0|0|0|0|0|0|0|0|0|0|19103339|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|7200|10000|||99.63|99.99|0.00|3.12|0001ADA4|0|1| +37|2023-10-06T20:26:29.4660000-07:00|10FF0002|Suchichi Suchi|0001AD99|90128|90128|7200|10000|8||99.63|99.99|0.00|3.12|1602|0|0|01|03000129|0|41E54FDB|| +38|2023-10-06T20:26:29.4660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||100.14|96.16|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:29.4660000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:26:29.0520000-07:00|Change|10FF0006||||||||||||||| +20|2023-10-06T20:26:29.5110000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|100.39|100.88|0.00|-3.12| +261|2023-10-06T20:26:29.0520000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T20:26:29.5560000-07:00|40022550|Zeromus|0001AD9A|19081069||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:29.5560000-07:00|40022550|Zeromus|0001AD9D|19080927||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:29.5560000-07:00|40022550|Zeromus|0001AD9E|19080808||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:29.5560000-07:00|40022A9F|Demi-Phoenix|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +37|2023-10-06T20:26:29.6000000-07:00|10FF0006|Wowobora Gogobora|0001AD99|80739|80739|6325|10000|15||100.27|100.85|0.00|-3.13|2803|0|0|01|03000129|0|41E43D6C|| +38|2023-10-06T20:26:29.6000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8800|10000|9||99.99|96.64|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:29.6000000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:26:29.6440000-07:00|40022550|Zeromus|0001ADA0|19079081||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:29.6440000-07:00|10FF0002|Suchichi Suchi|HoT|0|16EC|90128|90128|7200|10000|||99.65|99.99|0.00|-3.14|10FF0002|Suchichi Suchi|0|90128|90128|7200|10000|||99.65|99.99|0.00|-3.14| +38|2023-10-06T20:26:29.6440000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7200|10000|8||99.65|99.99|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:29.6880000-07:00|40022A9F|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|152003|1DF10000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|19080808|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06|0001ADA5|0|1| +24|2023-10-06T20:26:29.6880000-07:00|10FF0003|Gegehi Gehi|HoT|0|19A5|73085|73085|5650|10000|||100.39|100.88|0.00|-3.12|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:29.6880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5650|10000|10||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:29.7330000-07:00|10FF0003|Gegehi Gehi|0001AD99|73085|73085|5650|10000|10||100.39|100.88|0.00|-3.12|2304|0|0|01|01000129|0|41E32F15|| +38|2023-10-06T20:26:29.7330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:29.7330000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:26:29.8670000-07:00|10FF0005|Wuwuchu Wuchu|0001AD99|90055|90055|7400|10000|8||99.72|95.91|0.00|3.10|2705|0|0|02|02000129|0|41E21CA6|||||| +39|2023-10-06T20:26:29.8670000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.14| +24|2023-10-06T20:26:29.8670000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|18EB|127791|127791|10000|10000|||100.14|96.16|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14| +24|2023-10-06T20:26:29.8670000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|18BE|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14| +38|2023-10-06T20:26:29.8670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|5||100.14|96.16|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:26:29.8670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4650|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:29.9110000-07:00|10FF0007|Kehabiqo Febiqo|0001ADA2|128564|128564|8800|10000|21||99.99|96.64|0.00|-3.14|1500|0|0|03|06000A76|0190|41000000|||||||||| +26|2023-10-06T20:26:29.9110000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +26|2023-10-06T20:26:29.9110000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:26:29.9110000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:26:29.9110000-07:00|40022550|Zeromus|0001ADA4|19076630||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:29.9110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8800|10000|21||99.99|96.64|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:29.9560000-07:00|40022550|Zeromus|0001AD9C|19050468||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:29.9560000-07:00|10FF0005|Wuwuchu Wuchu|0001AD9C|90055|90055|7400|10000|8||99.72|95.91|0.00|3.10|2700|0|0|01|08000A1B|02|41F00000|| +24|2023-10-06T20:26:29.9560000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1211|90053|90055|7400|10000|||99.72|95.91|0.00|3.10|10FF0005|Wuwuchu Wuchu|0|90053|90055|7400|10000|||99.72|95.91|0.00|3.10| +38|2023-10-06T20:26:29.9560000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|7400|10000|8||99.72|95.91|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T20:26:30.0000000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|159B|128564|128564|8800|10000|||99.99|96.64|0.00|-3.14|10FF0006|Wowobora Gogobora|0|80739|80739|6325|10000|||100.27|100.85|0.00|-3.13| +37|2023-10-06T20:26:30.0000000-07:00|40022550|Zeromus|0001ADA3|19036754||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:30.0000000-07:00|10FF0007|Kehabiqo Febiqo|0001AD99|128564|128564|8800|10000|21||99.99|96.64|0.00|-3.14|1506|0|0|01|05000129|0|41E10C43|| +24|2023-10-06T20:26:30.0000000-07:00|10FF0006|Wowobora Gogobora|HoT|0|183D|80739|80739|6325|10000|||100.27|100.85|0.00|-3.13|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:30.0000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|8800|10000|21||99.99|96.64|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:30.0000000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6325|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:30.0890000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:26:30.0890000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B712003|55AA0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|19050468|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|7400|10000|||99.72|95.90|0.00|3.10|0001ADA6|0|1| +38|2023-10-06T20:26:30.0890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|7400|10000|8||99.72|95.90|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:30.0890000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:26:30.0890000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:26:30.1330000-07:00|10FF0001|Sesuga Sapisuga|0001AD99|127791|127791|10000|10000|5||100.14|96.16|0.00|-3.13|1307|0|0|01|08000129|0|41DFF9D4|| +261|2023-10-06T20:26:29.8710000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T20:26:30.2220000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|9000|10000|||99.99|96.64|0.00|-3.14| +261|2023-10-06T20:26:29.8710000-07:00|Change|10FF0007||||||| +21|2023-10-06T20:26:30.3120000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|30010000|143E|340000|4|26AC8000|4|17F08000|11B|2A8000|0|0|0|0|0|0|19036754|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9000|10000|||99.99|96.64|0.00|-3.14|0001ADA7|0|1| +21|2023-10-06T20:26:30.3120000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|C1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19036754|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|7400|10000|||99.72|95.90|0.00|3.12|0001ADA8|0|1| +37|2023-10-06T20:26:30.3560000-07:00|40022550|Zeromus|0001AD9F|19026401||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:30.3560000-07:00|10FF0003|Gegehi Gehi|73085|73085|5850|10000|||100.39|100.88|0.00|-3.12| +261|2023-10-06T20:26:29.9810000-07:00|Change|10FF0003||||| +39|2023-10-06T20:26:30.4450000-07:00|10FF0002|Suchichi Suchi|90128|90128|7400|10000|||99.82|99.73|0.00|2.44| +261|2023-10-06T20:26:30.0960000-07:00|Change|10FF0002||||||||||| +37|2023-10-06T20:26:30.4890000-07:00|40022550|Zeromus|0001ADA1|19011270||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:30.5340000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|19B4|128564|128564|9000|10000|||99.99|96.64|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|128564|128564|9000|10000|||99.99|96.64|0.00|-3.14| +24|2023-10-06T20:26:30.5340000-07:00|40022550|Zeromus|DoT|A92|96C|19026401|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9200|10000|||100.08|99.96|0.00|-3.14| +24|2023-10-06T20:26:30.5340000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|12F4|79111|79111|9200|10000|||100.08|99.96|0.00|-3.14|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:30.5340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9000|10000|21||99.99|96.64|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:30.5340000-07:00|40022550|Zeromus|005A5A00|19008858|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:26:30.5340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:26:30.5780000-07:00|10FF0001|Sesuga Sapisuga|0001AD85|1|127791|10000|10000|5||100.14|96.16|0.00|-3.13|1300|0|0|01|030006E9|0|41200000|| +26|2023-10-06T20:26:30.5780000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|40478540| +37|2023-10-06T20:26:30.5780000-07:00|40022550|Zeromus|0001ADA6|18986928||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:30.5780000-07:00|10FF0005|Wuwuchu Wuchu|0001ADA6|90055|90055|7400|10000|8||99.72|95.85|0.00|3.13|2700|0|0|01|09000A1C|0|42700000|| +38|2023-10-06T20:26:30.5780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|7400|10000|8||99.72|95.85|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:30.6230000-07:00|10FF0007|Kehabiqo Febiqo|0001AD85|1|128564|9000|10000|21||99.99|96.64|0.00|-3.14|1501|0|0|02|04000A90|4B|0|||||| +26|2023-10-06T20:26:30.6230000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|40478540| +38|2023-10-06T20:26:30.6230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|1|128564|9000|10000|21||99.99|96.64|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:30.6230000-07:00|A90|Rekindle|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|4B|128564|79111| +26|2023-10-06T20:26:30.6230000-07:00|A91|Undying Flame|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +37|2023-10-06T20:26:30.6670000-07:00|10FF0008|Kokosaze Lulusaze|0001AD85|1|79111|9200|10000|9||100.08|99.96|0.00|-3.14|1B02|0|0|01|030006E9|0|41200000|| +26|2023-10-06T20:26:30.6670000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|40478540| +37|2023-10-06T20:26:30.7120000-07:00|10FF0002|Suchichi Suchi|0001AD85|1|90128|7400|10000|8||99.87|99.81|0.00|1.00|1603|0|0|01|060006E9|0|41200000|| +26|2023-10-06T20:26:30.7120000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0002|Suchichi Suchi|00|90128|40478540| +37|2023-10-06T20:26:30.7120000-07:00|40022550|Zeromus|0001ADA5|18979263||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:30.2970000-07:00|Change|40022563||||||||| +261|2023-10-06T20:26:30.2970000-07:00|Change|40022561||||||||| +261|2023-10-06T20:26:30.2970000-07:00|Change|40022560||||||||| +261|2023-10-06T20:26:30.2970000-07:00|Change|4002255F||||||||| +261|2023-10-06T20:26:30.2970000-07:00|Change|4002255D||||||||| +37|2023-10-06T20:26:30.7570000-07:00|10FF0005|Wuwuchu Wuchu|0001AD85|1|90055|7400|10000|8||99.79|95.45|0.00|3.12|2704|0|0|01|050006E9|0|41200000|| +26|2023-10-06T20:26:30.7570000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|40478540| +21|2023-10-06T20:26:30.7570000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18986928|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6325|10000|||100.27|100.85|0.00|-3.13|0001ADA9|0|1| +22|2023-10-06T20:26:30.7570000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|129C0000|C6000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|0001ADAA|0|8| +22|2023-10-06T20:26:30.7570000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|12A40000|D30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|1|79111|9200|10000|||100.08|99.96|0.00|-3.14|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|0001ADAA|1|8| +22|2023-10-06T20:26:30.7570000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|125A0000|5C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90128|90128|7400|10000|||99.87|99.81|0.00|1.00|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|0001ADAA|2|8| +22|2023-10-06T20:26:30.7570000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|12740000|86000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|6325|10000|||100.27|100.85|0.00|-3.13|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|0001ADAA|3|8| +22|2023-10-06T20:26:30.7570000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|126C0000|79000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73085|73085|5850|10000|||100.39|100.88|0.00|-3.12|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|0001ADAA|4|8| +22|2023-10-06T20:26:30.7570000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|12CE0000|16000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|1|128564|9000|10000|||99.99|96.64|0.00|-3.14|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|0001ADAA|5|8| +22|2023-10-06T20:26:30.7570000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|13100000|800E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|1|127791|10000|10000|||100.14|96.16|0.00|-3.13|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|0001ADAA|6|8| +22|2023-10-06T20:26:30.7570000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|12F40000|53000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90055|90055|7400|10000|||99.79|95.45|0.00|3.12|80739|80739|4650|10000|||100.02|100.05|0.00|-3.14|0001ADAA|7|8| +38|2023-10-06T20:26:30.7570000-07:00|10FF0002|Suchichi Suchi|005A5A16|1|90128|7400|10000|8||99.87|99.81|0.00|1.00|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:30.7570000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:30.7570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|1|79111|9200|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:30.7570000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:30.7570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|1|127791|10000|10000|6||100.14|96.16|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:30.7570000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:26:30.8000000-07:00|10FF0004|Buhojaqe Zijaqe|0001AD85|1|80739|3650|10000|15||100.02|100.05|0.00|-3.14|1C05|0|0|01|050006E9|0|41200000|| +26|2023-10-06T20:26:30.8000000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|40478540| +20|2023-10-06T20:26:30.8000000-07:00|4002255D|Zeromus|8B42|Abyssal Echoes|4002255D|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:30.8000000-07:00|4002255E|Zeromus|8B41|unknown_8b41|4002255E|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:30.8000000-07:00|4002255F|Zeromus|8B42|Abyssal Echoes|4002255F|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:30.8000000-07:00|40022560|Zeromus|8B41|unknown_8b41|40022560|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:30.8000000-07:00|40022561|Zeromus|8B42|Abyssal Echoes|40022561|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:30.8000000-07:00|40022562|Zeromus|8B40|unknown_8b40|40022562|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:30.8000000-07:00|40022563|Zeromus|8B42|Abyssal Echoes|40022563|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:26:30.8000000-07:00|40022564|Zeromus|8B40|unknown_8b40|40022564|Zeromus|8.700|100.00|100.00|0.00|0.00| +261|2023-10-06T20:26:30.3940000-07:00|Change|4002255E||||||||||||||| +261|2023-10-06T20:26:30.3940000-07:00|Change|40022562||||||||||||||| +261|2023-10-06T20:26:30.3940000-07:00|Change|40022564||||||||||||| +37|2023-10-06T20:26:30.8450000-07:00|10FF0006|Wowobora Gogobora|0001AD85|1|80739|6325|10000|15||100.27|100.85|0.00|-3.13|2806|0|0|01|040006E9|0|41200000|| +26|2023-10-06T20:26:30.8450000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0006|Wowobora Gogobora|00|80739|40478540| +37|2023-10-06T20:26:30.8450000-07:00|40022550|Zeromus|0001ADA8|18976160||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:26:30.8450000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.27|100.85|0.00|-3.13| +261|2023-10-06T20:26:30.3940000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:26:30.8900000-07:00|10FF0003|Gegehi Gehi|0001AD85|1|73085|5850|10000|10||100.39|100.88|0.00|-3.12|2307|0|0|01|030006E9|0|41200000|| +26|2023-10-06T20:26:30.8900000-07:00|6E9|Doom|10.00|40022550|Zeromus|10FF0003|Gegehi Gehi|00|73085|40478540| +21|2023-10-06T20:26:30.8900000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|14720000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|1|127791|10000|10000|||100.14|96.16|0.00|-3.13|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADAB|0|1| +21|2023-10-06T20:26:30.9350000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|22B50000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|18976160|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|73085|5850|10000|||100.39|100.88|0.00|-3.12|0001ADAC|0|1| +38|2023-10-06T20:26:30.9350000-07:00|10FF0003|Gegehi Gehi|005A5A23|1|73085|5650|10000|10||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:30.9350000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:26:30.9800000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|511F0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|18976160|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|79111|9200|10000|||100.08|99.96|0.00|-3.14|0001ADAD|0|1| +261|2023-10-06T20:26:30.4890000-07:00|Change|10FF0008||||| +39|2023-10-06T20:26:31.0240000-07:00|10FF0001|Sesuga Sapisuga|1278|127791|10000|10000|||100.14|96.16|0.00|-3.13| +21|2023-10-06T20:26:31.1580000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|1B160000|104|50F8000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|18976160|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|90128|7400|10000|||99.90|99.87|0.00|0.04|0001ADAE|0|1| +38|2023-10-06T20:26:31.1580000-07:00|10FF0002|Suchichi Suchi|005A5A16|1|90128|7400|10000|8||99.90|99.87|0.00|0.04|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:31.1580000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:26:31.2030000-07:00|40022550|Zeromus|DoT|0|23A6|18976160|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|1|80739|6325|10000|||100.27|100.85|0.00|-3.13| +38|2023-10-06T20:26:31.2030000-07:00|40022550|Zeromus|005A5A00|18967034|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:26:30.8170000-07:00|Change|40022561||||||||||||| +261|2023-10-06T20:26:30.8170000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:26:30.8170000-07:00|Change|40022560||||||||||||| +261|2023-10-06T20:26:30.8170000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:26:30.8170000-07:00|Change|4002255F||||||||||||| +37|2023-10-06T20:26:31.2920000-07:00|40022550|Zeromus|0001ADA9|18966988||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:30.8170000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T20:26:31.3360000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|161C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18967034|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|128564|9000|10000|||99.99|96.64|0.00|-3.14|0001ADAF|0|1| +26|2023-10-06T20:26:31.3360000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +22|2023-10-06T20:26:31.3360000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|4|26510000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|0001ADB0|0|8| +22|2023-10-06T20:26:31.3360000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|4|24DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|79111|8900|10000|||100.08|99.96|0.00|-3.14|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|0001ADB0|1|8| +22|2023-10-06T20:26:31.3360000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0002|Suchichi Suchi|200004|3CB40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|90128|7400|10000|||99.90|99.87|0.00|3.14|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|0001ADB0|2|8| +22|2023-10-06T20:26:31.3360000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|3DFB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|80739|6325|10000|||100.27|100.85|0.00|-3.13|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|0001ADB0|3|8| +22|2023-10-06T20:26:31.3360000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|3DD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|73085|5650|10000|||100.39|100.88|0.00|-3.12|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|0001ADB0|4|8| +22|2023-10-06T20:26:31.3360000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|4|26680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|128564|9000|10000|||99.99|96.64|0.00|-3.14|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|0001ADB0|5|8| +22|2023-10-06T20:26:31.3360000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|3D130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1278|127791|10000|10000|||100.14|96.16|0.00|-3.13|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|0001ADB0|6|8| +22|2023-10-06T20:26:31.3360000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0005|Wuwuchu Wuchu|4|26710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|90055|7400|10000|||100.01|94.79|-0.02|-3.14|1|80739|3650|10000|||100.02|100.05|0.00|-3.14|0001ADB0|7|8| +36|2023-10-06T20:26:31.3360000-07:00|62C0|3| +21|2023-10-06T20:26:31.3800000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18966988|40478540|10000|10000|||100.00|80.10|0.00|0.00|1278|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001ADB1|0|1| +31|2023-10-06T20:26:31.3800000-07:00|10FF0001||||| +261|2023-10-06T20:26:31.0440000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T20:26:31.5140000-07:00|10FF0006|Wowobora Gogobora|808|80739|6530|10000|||100.27|100.85|0.00|-3.13| +21|2023-10-06T20:26:31.5580000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1D200000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|18966988|40478540|10000|10000|||100.00|80.10|0.00|0.00|1278|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001ADB2|0|1| +36|2023-10-06T20:26:31.6930000-07:00|6518|3| +37|2023-10-06T20:26:31.6930000-07:00|10FF0001|Sesuga Sapisuga|0001ADAB|6512||||||100.14|96.16|0.00|-3.13| +37|2023-10-06T20:26:31.6930000-07:00|40022550|Zeromus|0001ADAC|18958103||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:31.7820000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|720003|1B860000|104|5248000|23E|BD8000|FE3E|9E8000|0|0|0|0|0|0|0|0|18966988|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|90128|7400|10000|||100.27|99.85|0.00|-3.12|0001ADB3|0|1| +21|2023-10-06T20:26:31.7820000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35EA0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|18966988|40478540|10000|10000|||100.00|80.10|0.00|0.00|808|80739|6530|10000|||100.27|100.85|0.00|-3.13|0001ADB4|0|1| +37|2023-10-06T20:26:31.8270000-07:00|40022550|Zeromus|0001ADA7|18945814||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:31.8270000-07:00|10FF0007|Kehabiqo Febiqo|0001ADA7|16029||||||99.99|96.64|0.00|-3.14| +37|2023-10-06T20:26:31.8720000-07:00|40022550|Zeromus|0001ADAF|18940154||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:26:31.8720000-07:00|6644|3| +37|2023-10-06T20:26:31.8720000-07:00|10FF0004|Buhojaqe Zijaqe|0001ADAA|4765||||||100.02|100.05|0.00|-3.14| +39|2023-10-06T20:26:31.8720000-07:00|10FF0005|Wuwuchu Wuchu|901|90055|7600|10000|||98.88|95.39|0.00|-2.88| +261|2023-10-06T20:26:31.4090000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:26:31.4090000-07:00|Change|10FF0005||||||||||| +261|2023-10-06T20:26:31.4090000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:26:31.9170000-07:00|40022550|Zeromus|0001ADB1|18937263||||||100.00|80.10|0.00|0.00| +36|2023-10-06T20:26:31.9620000-07:00|6770|3| +37|2023-10-06T20:26:31.9620000-07:00|10FF0004|Buhojaqe Zijaqe|0001ADB0|14574||||||100.02|100.05|0.00|-3.14| +21|2023-10-06T20:26:31.9620000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|552003|3D9E0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|18940154|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|73085|5650|10000|||100.39|100.88|0.00|-3.12|0001ADB5|0|1| +38|2023-10-06T20:26:31.9620000-07:00|10FF0003|Gegehi Gehi|005A5A23|1|73085|5350|10000|10||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:31.9620000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:26:31.9620000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +36|2023-10-06T20:26:32.0060000-07:00|689C|3| +37|2023-10-06T20:26:32.0060000-07:00|10FF0008|Kokosaze Lulusaze|0001ADAA|4773|79111|8900|10000|9||100.08|99.96|0.00|-3.14|1B01|0|0|01|02000129|0|41E65A19|| +37|2023-10-06T20:26:32.0510000-07:00|40022550|Zeromus|0001ADAD|18916496||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:32.0510000-07:00|10FF0008|Kokosaze Lulusaze|5564|79111|9100|10000|||100.08|99.96|0.00|-3.14| +261|2023-10-06T20:26:31.6020000-07:00|Change|10FF0008||| +36|2023-10-06T20:26:32.0960000-07:00|69C8|3| +37|2023-10-06T20:26:32.0960000-07:00|10FF0008|Kokosaze Lulusaze|0001ADB0|15003||||||100.08|99.96|0.00|-3.14| +36|2023-10-06T20:26:32.1390000-07:00|6AF4|3| +37|2023-10-06T20:26:32.1390000-07:00|10FF0002|Suchichi Suchi|0001ADAA|4699|90128|7400|10000|8||100.76|99.81|0.00|-3.10|1602|0|0|02|03000129|0|41E547AA|||||| +39|2023-10-06T20:26:32.1400000-07:00|10FF0004|Buhojaqe Zijaqe|15381|80739|3850|10000|||100.02|100.05|0.00|-3.14| +21|2023-10-06T20:26:32.1840000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|B380000|104|2188000|0|0|0|0|0|0|0|0|0|0|0|0|18916496|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|90128|7400|10000|||100.76|99.81|0.00|-3.10|0001ADB6|0|1| +21|2023-10-06T20:26:32.1840000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18916496|40478540|10000|10000|||100.00|80.10|0.00|0.00|15003|79111|9100|10000|||100.08|99.96|0.00|-3.14|0001ADB7|0|1| +36|2023-10-06T20:26:32.2290000-07:00|6C20|3| +37|2023-10-06T20:26:32.2290000-07:00|10FF0002|Suchichi Suchi|0001ADB0|20239|90128|7400|10000|8||100.82|99.81|0.00|-3.10|1602|0|0|01|04000AA0|0|C1F00000|| +20|2023-10-06T20:26:32.2290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.02|100.05|0.00|-3.14| +36|2023-10-06T20:26:32.2730000-07:00|6D4C|3| +37|2023-10-06T20:26:32.2730000-07:00|10FF0006|Wowobora Gogobora|0001ADAA|5532||||||100.27|100.85|0.00|-3.13| +261|2023-10-06T20:26:31.8270000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:26:32.3170000-07:00|40022550|Zeromus|0001ADB2|18909040||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:32.3170000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6512|127791|10000|10000|||100.14|96.16|0.00|-3.13|6512|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001ADB8|0|1| +36|2023-10-06T20:26:32.3610000-07:00|6E78|3| +37|2023-10-06T20:26:32.3610000-07:00|10FF0006|Wowobora Gogobora|0001ADB0|21399||||||100.27|100.85|0.00|-3.13| +37|2023-10-06T20:26:32.4070000-07:00|40022550|Zeromus|0001ADB3|18901994||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:32.4070000-07:00|10FF0002|Suchichi Suchi|0001ADB3|21555|90128|7400|10000|8||100.85|99.81|0.00|-3.10|1600|0|0|01|04000AA0|0|C1F00000|| +36|2023-10-06T20:26:32.4070000-07:00|6FA4|3| +37|2023-10-06T20:26:32.4070000-07:00|10FF0003|Gegehi Gehi|0001ADAA|4717|73085|5350|10000|10||100.39|100.88|0.00|-3.12|2304|0|0|01|070004D2|0|C1F00000|| +21|2023-10-06T20:26:32.4070000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|726003|53FB0000|104|FB28000|0|0|0|0|0|0|0|0|0|0|0|0|18909040|40478540|10000|10000|||100.00|80.10|0.00|0.00|20239|90128|7400|10000|||100.85|99.81|0.00|-3.10|0001ADB9|0|1| +21|2023-10-06T20:26:32.4070000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18909040|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|73085|5350|10000|||100.39|100.88|0.00|-3.12|0001ADBA|0|1| +24|2023-10-06T20:26:32.4510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1523|16029|128564|9000|10000|||99.99|96.69|0.00|1.27|10FF0006|Wowobora Gogobora|0|5532|80739|6130|10000|||100.27|100.85|0.00|-3.13| +37|2023-10-06T20:26:32.4510000-07:00|40022550|Zeromus|0001ADB4|18888192||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:32.0600000-07:00|Change|10FF0003||| +21|2023-10-06T20:26:32.4520000-07:00|10FF0006|Wowobora Gogobora|5EEC|Zoe|10FF0006|Wowobora Gogobora|320F|A338000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21399|80739|6130|10000|||100.27|100.85|0.00|-3.13|21399|80739|6130|10000|||100.27|100.85|0.00|-3.13|0001ADBB|0|1| +38|2023-10-06T20:26:32.4520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|21440|128564|9000|10000|21||100.00|97.40|0.00|0.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:32.4520000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:32.4520000-07:00|10FF0006|Wowobora Gogobora|005A5A28|21399|80739|6130|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:32.4520000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:32.4520000-07:00|A33|Zoe|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +36|2023-10-06T20:26:32.4960000-07:00|70D0|3| +37|2023-10-06T20:26:32.4960000-07:00|10FF0003|Gegehi Gehi|0001ADB0|20543|73085|5350|10000|10||100.39|100.88|0.00|-3.12|2304|0|0|01|070004D2|0|C1F00000|| +37|2023-10-06T20:26:32.5410000-07:00|10FF0007|Kehabiqo Febiqo|0001ADAA|26254||||||99.99|97.98|0.00|0.63| +21|2023-10-06T20:26:32.5410000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B712003|53B60000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|18888192|40478540|10000|10000|||100.00|80.10|0.00|0.00|901|90055|7600|10000|||98.83|97.31|-0.02|-2.77|0001ADBC|0|1| +38|2023-10-06T20:26:32.5410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|15003|79111|9100|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:32.5410000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:26:32.5410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|901|90055|7600|10000|8||98.83|97.31|-0.02|-2.77|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:32.5410000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:26:32.5410000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:26:32.5410000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:26:32.5850000-07:00|40022A9F|Demi-Phoenix|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +37|2023-10-06T20:26:32.6300000-07:00|10FF0007|Kehabiqo Febiqo|0001ADB0|36086||||||99.99|97.98|0.00|0.63| +24|2023-10-06T20:26:32.6300000-07:00|10FF0002|Suchichi Suchi|HoT|0|11E4|21555|90128|7400|10000|||100.85|99.81|0.00|-3.10|10FF0002|Suchichi Suchi|0|21555|90128|7400|10000|||100.85|99.81|0.00|-3.10| +38|2023-10-06T20:26:32.6300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|15003|79111|9100|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:32.6300000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|79111|79111| +21|2023-10-06T20:26:32.6300000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|750003|1E4C0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|18888192|40478540|10000|10000|||100.00|80.10|0.00|0.00|15003|79111|9100|10000|||100.08|99.96|0.00|-3.14|0001ADBD|0|1| +38|2023-10-06T20:26:32.6300000-07:00|10FF0002|Suchichi Suchi|005A5A16|26135|90128|7400|10000|8||100.85|99.81|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:32.6300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|15003|79111|9100|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:32.6300000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +36|2023-10-06T20:26:32.6740000-07:00|71FC|3| +37|2023-10-06T20:26:32.6740000-07:00|10FF0001|Sesuga Sapisuga|0001ADAA|11392|127791|10000|10000|6||100.14|96.16|0.00|-3.13|1306|0|0|01|08000129|0|41E10413|| +24|2023-10-06T20:26:32.6750000-07:00|10FF0003|Gegehi Gehi|HoT|0|1283|20543|73085|5350|10000|||100.39|100.88|0.00|-3.12|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:32.6750000-07:00|10FF0003|Gegehi Gehi|005A5A23|25282|73085|5350|10000|10||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:26:32.7200000-07:00|40022550|Zeromus|0001ADB6|18885320||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:32.7200000-07:00|10FF0002|Suchichi Suchi|0001ADB6|26671|90128|7400|10000|8||100.85|99.81|0.00|-3.10|1600|0|0|01|04000AA0|0|C1F00000|| +37|2023-10-06T20:26:32.7200000-07:00|40022550|Zeromus|0001ADB7|18885167||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:32.7200000-07:00|10FF0008|Kokosaze Lulusaze|0001ADB7|15003|79111|9100|10000|9||100.08|99.96|0.00|-3.14|1B00|0|0|01|06000A8D|0|C2700000|| +37|2023-10-06T20:26:32.7200000-07:00|40022550|Zeromus|0001ADB5|18869393||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:32.7200000-07:00|10FF0003|Gegehi Gehi|0001ADB5|25282|73085|5350|10000|10||100.39|100.88|0.00|-3.12|2300|0|0|01|070004D2|0|41F00000|| +38|2023-10-06T20:26:32.7200000-07:00|10FF0002|Suchichi Suchi|005A5A16|26671|90128|7400|10000|8||100.85|99.81|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:32.7200000-07:00|54|Bloodbath|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:26:32.7200000-07:00|10FF0003|Gegehi Gehi|005A5A23|25282|73085|5350|10000|10||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||| +36|2023-10-06T20:26:32.7640000-07:00|7328|3| +37|2023-10-06T20:26:32.7640000-07:00|10FF0001|Sesuga Sapisuga|0001ADB0|27027||||||100.14|96.16|0.00|-3.13| +21|2023-10-06T20:26:32.7640000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|36D00000|200004|3EB68000|0|0|0|0|0|0|0|0|0|0|0|0|18888192|40478540|10000|10000|||100.00|80.10|0.00|0.00|36086|128564|9000|10000|||99.99|98.19|0.00|0.47|0001ADBE|0|1| +261|2023-10-06T20:26:32.3490000-07:00|Remove|40022A8D| +37|2023-10-06T20:26:32.8090000-07:00|40022550|Zeromus|0001ADAE|18862459||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:32.8090000-07:00|10FF0002|Suchichi Suchi|0001ADAE|27966|90128|7400|10000|8||100.85|99.83|0.00|-2.28|1600|0|0|01|04000AA0|0|41F00000|| +36|2023-10-06T20:26:32.8090000-07:00|7454|3| +37|2023-10-06T20:26:32.8090000-07:00|10FF0005|Wuwuchu Wuchu|0001ADAA|5753|90055|7600|10000|8||98.95|97.64|0.00|3.14|2707|0|0|01|08000A1D|0|C2700000|| +38|2023-10-06T20:26:32.8090000-07:00|10FF0002|Suchichi Suchi|005A5A16|27966|90128|7400|10000|8||100.85|99.83|0.00|-2.28|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:32.8520000-07:00|40022A9F|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|12B60000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|18862459|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06|0001ADBF|0|1| +24|2023-10-06T20:26:32.8520000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|11FD|27027|127791|10000|10000|||100.14|96.16|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|15381|80739|3850|10000|||100.02|100.05|0.00|-3.14| +24|2023-10-06T20:26:32.8520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1225|15381|80739|3850|10000|||100.02|100.05|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|15381|80739|3850|10000|||100.02|100.05|0.00|-3.14| +38|2023-10-06T20:26:32.8520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|31632|127791|10000|10000|6||100.14|96.16|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:26:32.8520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|20026|80739|3850|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +36|2023-10-06T20:26:32.8960000-07:00|7530|3| +37|2023-10-06T20:26:32.8960000-07:00|10FF0005|Wuwuchu Wuchu|0001ADB0|15594|90055|7600|10000|8||99.00|97.76|0.00|-3.04|2707|0|0|01|08000A1D|0|C2700000|| +39|2023-10-06T20:26:32.8960000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.14| +37|2023-10-06T20:26:32.9410000-07:00|10FF0001|Sesuga Sapisuga|0001ADB8|31632|127791|10000|10000|6||100.14|96.16|0.00|-3.13|1300|0|0|01|0400004C|0|41A00000|| +26|2023-10-06T20:26:32.9410000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:26:32.9410000-07:00|40022550|Zeromus|0001ADBA|18862458||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:32.9410000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1216|5753|90055|7600|10000|||99.00|97.76|0.00|-3.04|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:32.9410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|20224|90055|7600|10000|8||99.00|97.76|0.00|-3.04|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T20:26:32.9850000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1918|21399|80739|6130|10000|||100.27|100.85|0.00|-3.13|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:32.9850000-07:00|10FF0006|Wowobora Gogobora|005A5A28|27823|80739|6130|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:33.0300000-07:00|40022550|Zeromus|0001ADBC|18841028||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:33.0300000-07:00|10FF0005|Wuwuchu Wuchu|0001ADBC|20224|90055|7600|10000|8||99.04|97.89|0.00|-2.94|2700|0|0|01|08000A1D|0|42700000|| +21|2023-10-06T20:26:33.0300000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|756003|52760000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|18862458|40478540|10000|10000|||100.00|80.10|0.00|0.00|31632|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001ADC0|0|1| +38|2023-10-06T20:26:33.0300000-07:00|40022550|Zeromus|005A5A00|18841028|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:33.0300000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +38|2023-10-06T20:26:33.0300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|31632|127791|10000|10000|6||100.14|96.16|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:33.0300000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|127791|127791| +26|2023-10-06T20:26:33.0300000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:26:33.0300000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|20224|90055|7600|10000|8||99.04|97.89|0.00|-2.94|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:26:33.1180000-07:00|10FF0006|Wowobora Gogobora|0001ADBB|27823|80739|6130|10000|15||100.27|100.85|0.00|-3.13|2800|0|0|01|05000A33|0|41F00000|| +38|2023-10-06T20:26:33.1180000-07:00|10FF0006|Wowobora Gogobora|005A5A28|27823|80739|6130|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:33.1620000-07:00|40022550|Zeromus|0001ADB9|18819529||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:33.1620000-07:00|10FF0002|Suchichi Suchi|0001ADB9|31984||||||101.00|99.84|0.00|-2.32| +39|2023-10-06T20:26:33.2510000-07:00|10FF0007|Kehabiqo Febiqo|37371|128564|9200|10000|||99.99|98.59|0.00|-3.14| +261|2023-10-06T20:26:32.7790000-07:00|Change|10FF0007||||||||| +20|2023-10-06T20:26:33.2960000-07:00|10FF0006|Wowobora Gogobora|5EFE|Pneuma|40022550|Zeromus|1.462|100.27|100.85|0.00|-3.13| +21|2023-10-06T20:26:33.2960000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|27240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18819529|40478540|10000|10000|||100.00|80.10|0.00|0.00|25282|73085|5350|10000|||100.39|100.88|0.00|-3.12|0001ADC1|0|1| +261|2023-10-06T20:26:32.7790000-07:00|Change|10FF0006||||||||||||| +39|2023-10-06T20:26:33.3850000-07:00|10FF0003|Gegehi Gehi|26012|73085|5550|10000|||100.39|100.88|0.00|-3.12| +37|2023-10-06T20:26:33.4310000-07:00|40022550|Zeromus|0001ADBE|18805497||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:33.4310000-07:00|10FF0007|Kehabiqo Febiqo|0001ADBE|53425||||||99.99|98.53|0.00|-3.14| +21|2023-10-06T20:26:33.4310000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|528B0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|18819529|40478540|10000|10000|||100.00|80.10|0.00|0.00|15003|79111|9100|10000|||100.08|99.96|0.00|-3.14|0001ADC2|0|1| +261|2023-10-06T20:26:32.8920000-07:00|Change|10FF0008||| +39|2023-10-06T20:26:33.4750000-07:00|10FF0002|Suchichi Suchi|32885|90128|7600|10000|||101.15|99.84|0.00|-3.11| +261|2023-10-06T20:26:33.0130000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:26:33.0130000-07:00|Change|10FF0003||| +24|2023-10-06T20:26:33.5200000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|31A2|53425|128564|9200|10000|||99.99|98.48|0.00|-3.14|40022550|Zeromus|0|18805497|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:33.5200000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|128B|15003|79111|8800|10000|||100.08|99.96|0.00|-3.14|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +21|2023-10-06T20:26:33.5200000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|C620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18805497|40478540|10000|10000|||100.00|80.10|0.00|0.00|20224|90055|7600|10000|||99.23|98.31|0.00|-2.82|0001ADC3|0|1| +38|2023-10-06T20:26:33.5200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|66131|128564|9200|10000|21||99.99|98.48|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:33.5200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|19750|79111|8800|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:26:33.6530000-07:00|40022550|Zeromus|0001ADBD|18797741||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:33.6530000-07:00|10FF0008|Kokosaze Lulusaze|0001ADBD|19750|79111|8800|10000|9||100.08|99.96|0.00|-3.14|1B00|0|0|01|06000A8D|0|42700000|| +37|2023-10-06T20:26:33.6530000-07:00|40022550|Zeromus|0001ADC0|18776631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:33.6530000-07:00|10FF0001|Sesuga Sapisuga|0001ADC0|31632|127791|10000|10000|6||100.14|96.16|0.00|-3.13|1300|0|0|02|09000558|04|41F00000|||||| +21|2023-10-06T20:26:33.6540000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42726003|44EA0000|17F20E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|18805497|40478540|10000|10000|||100.00|80.10|0.00|0.00|32885|90128|7600|10000|||101.15|99.84|0.00|-3.11|0001ADC4|0|1| +21|2023-10-06T20:26:33.6540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|ADE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18805497|40478540|10000|10000|||100.00|80.10|0.00|0.00|31632|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001ADC5|0|1| +22|2023-10-06T20:26:33.6540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|12550000|54000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|0001ADC6|0|8| +22|2023-10-06T20:26:33.6540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|12AD0000|E10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|19750|79111|8800|10000|||100.08|99.96|0.00|-3.14|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|0001ADC6|1|8| +22|2023-10-06T20:26:33.6540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|1DF10000|E8000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|27823|80739|6130|10000|||100.27|100.85|0.00|-3.13|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|0001ADC6|2|8| +22|2023-10-06T20:26:33.6540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|127B0000|91000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|20224|90055|7600|10000|||99.47|98.66|-0.02|-2.82|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|0001ADC6|3|8| +22|2023-10-06T20:26:33.6540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|1EDD0000|610E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|26012|73085|5550|10000|||100.39|100.88|0.00|-3.12|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|0001ADC6|4|8| +22|2023-10-06T20:26:33.6540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|12D70000|240E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|32885|90128|7600|10000|||101.15|99.84|0.00|-3.11|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|0001ADC6|5|8| +22|2023-10-06T20:26:33.6540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|1EF90000|8E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|66131|128564|9200|10000|||99.99|98.44|0.00|-3.14|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|0001ADC6|6|8| +22|2023-10-06T20:26:33.6540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|12650000|6E000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|31632|127791|10000|10000|||100.14|96.16|0.00|-3.13|20026|80739|3850|10000|||100.02|100.05|0.00|-3.14|0001ADC6|7|8| +38|2023-10-06T20:26:33.6540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|66131|128564|9200|10000|21||99.99|98.44|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:33.6540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:33.6540000-07:00|10FF0002|Suchichi Suchi|005A5A16|32885|90128|7600|10000|8||101.15|99.84|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:33.6540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:26:33.6540000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:26:33.6540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|19750|79111|8800|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:33.6540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:33.6540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|31632|127791|10000|10000|6||100.14|96.16|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:33.6540000-07:00|10FF0003|Gegehi Gehi|005A5A23|26012|73085|5550|10000|17||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:33.6540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +31|2023-10-06T20:26:33.6540000-07:00|10FF0001||||| +261|2023-10-06T20:26:33.3200000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:26:33.8760000-07:00|40022550|Zeromus|0001ADBF|18771841||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:33.8760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|66131|128564|9200|10000|21||99.99|98.44|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:33.8760000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +39|2023-10-06T20:26:34.0090000-07:00|10FF0001|Sesuga Sapisuga|32909|127791|10000|10000|||100.14|96.16|0.00|-3.13| +37|2023-10-06T20:26:34.0540000-07:00|40022550|Zeromus|0001ADC3|18768671||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:34.0540000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|712003|921B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18771841|40478540|10000|10000|||100.00|80.10|0.00|0.00|32909|127791|10000|10000|||100.14|96.16|0.00|-3.13|0001ADC7|0|1| +37|2023-10-06T20:26:34.0990000-07:00|40022550|Zeromus|0001ADC4|18751029|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A9F|0|41C00000|| +26|2023-10-06T20:26:34.0990000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:26:34.0990000-07:00|10FF0002|Suchichi Suchi|0001ADC4|32885|90128|7600|10000|8||101.25|99.84|0.00|-3.10|1600|0|0|01|07000323|0|41F00000|| +21|2023-10-06T20:26:34.0990000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|14570000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|32909|127791|10000|10000|||100.14|96.16|0.00|-3.13|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADC8|0|1| +38|2023-10-06T20:26:34.0990000-07:00|10FF0002|Suchichi Suchi|005A5A16|32885|90128|7600|10000|8||101.25|99.84|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:34.1880000-07:00|40022550|Zeromus|0001ADC5|18748247||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:34.1880000-07:00|40022550|Zeromus|DoT|0|1C1B|18751029|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|27823|80739|6130|10000|||100.27|100.85|0.00|-3.13| +38|2023-10-06T20:26:34.1880000-07:00|40022550|Zeromus|005A5A00|18741052|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +21|2023-10-06T20:26:34.2340000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|4|6EB80000|1CCA0F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|66131|128564|9200|10000|||99.99|98.44|0.00|-3.14|66131|128564|9200|10000|||99.99|98.44|0.00|-3.14|0001ADC9|0|1| +21|2023-10-06T20:26:34.2340000-07:00|10FF0006|Wowobora Gogobora|5EFE|Pneuma|40022550|Zeromus|750003|34320000|3D|0|1B|5EFE8000|0|0|0|0|0|0|0|0|0|0|18751029|40478540|10000|10000|||100.00|80.10|0.00|0.00|27823|80739|6130|10000|||100.27|100.85|0.00|-3.13|0001ADCA|0|1| +21|2023-10-06T20:26:34.2780000-07:00|10FF0004|Buhojaqe Zijaqe|E02|Emergency Tactics|10FF0004|Buhojaqe Zijaqe|E|3180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20026|80739|2850|10000|||100.02|100.05|0.00|-3.14|20026|80739|2850|10000|||100.02|100.05|0.00|-3.14|0001ADCB|0|1| +38|2023-10-06T20:26:34.2780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|20026|80739|2850|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:34.2780000-07:00|318|Emergency Tactics|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:26:33.8680000-07:00|Change|10FF0006||||||||||||||| +20|2023-10-06T20:26:34.3670000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|100.39|100.88|0.00|-3.12| +37|2023-10-06T20:26:34.4550000-07:00|40022550|Zeromus|0001ADC1|18731032||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:34.5000000-07:00|40022550|Zeromus|0001ADC2|18709901||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:34.5000000-07:00|10FF0006|Wowobora Gogobora|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13| +261|2023-10-06T20:26:34.1030000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T20:26:34.5890000-07:00|40022550|Zeromus|0001ADC7|18672498||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:34.7220000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18672498|40478540|10000|10000|||100.00|80.10|0.00|0.00|66131|128564|9200|10000|||99.99|98.44|0.00|-3.14|0001ADCC|0|1| +37|2023-10-06T20:26:34.7660000-07:00|10FF0004|Buhojaqe Zijaqe|0001ADC6|24719|80739|2850|10000|15||100.02|100.05|0.00|-3.14|1C00|0|0|01|07000318|0|C1700000|| +21|2023-10-06T20:26:34.7670000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|720003|2E060000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|18672498|40478540|10000|10000|||100.00|80.10|0.00|0.00|32885|90128|7600|10000|||101.39|99.84|-0.02|-3.13|0001ADCD|0|1| +21|2023-10-06T20:26:34.7670000-07:00|40022566|Zeromus|8B41|unknown_8b41|40022566|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-0.79|44|44|0|10000|||100.00|100.00|0.00|-0.79|0001ADCE|0|1| +21|2023-10-06T20:26:34.7670000-07:00|40022568|Zeromus|8B41|unknown_8b41|40022568|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|0001ADCF|0|1| +21|2023-10-06T20:26:34.7670000-07:00|4002256A|Zeromus|8B40|unknown_8b40|4002256A|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|1.57|44|44|0|10000|||100.00|100.00|0.00|1.57|0001ADD0|0|1| +21|2023-10-06T20:26:34.7670000-07:00|4002256C|Zeromus|8B40|unknown_8b40|4002256C|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|3.14|0001ADD1|0|1| +21|2023-10-06T20:26:34.7670000-07:00|4002256E|Zeromus|8D2B|unknown_8d2b|4002256E|Zeromus|1B|8D2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ADD2|0|1| +38|2023-10-06T20:26:34.7670000-07:00|10FF0002|Suchichi Suchi|005A5A16|32885|90128|7600|10000|8||101.39|99.84|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:34.7670000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:26:34.2890000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:26:34.2890000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:26:34.2890000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:26:34.2890000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:26:34.2890000-07:00|Change|4002256E||||||||||||| +24|2023-10-06T20:26:34.8110000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15AA|66131|128564|9200|10000|||99.99|98.44|0.00|-3.14|10FF0006|Wowobora Gogobora|0|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13| +22|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0006|Wowobora Gogobora|200004|B7FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD3|0|8| +22|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0003|Gegehi Gehi|4|72FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26012|73085|5550|10000|||100.39|100.88|0.00|-3.12|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD3|1|8| +22|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0004|Buhojaqe Zijaqe|200004|B4A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20026|80739|2850|10000|||100.02|100.05|0.00|-3.14|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD3|2|8| +22|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0008|Kokosaze Lulusaze|4|75160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19750|79111|8800|10000|||100.08|99.96|0.00|-3.14|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD3|3|8| +22|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0002|Suchichi Suchi|4|74490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32885|90128|7600|10000|||101.39|99.84|-0.02|-3.13|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD3|4|8| +22|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0005|Wuwuchu Wuchu|4|73EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20224|90055|7600|10000|||99.50|99.43|0.00|3.09|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD3|5|8| +22|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0007|Kehabiqo Febiqo|4|6F090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|66131|128564|9200|10000|||99.99|98.44|0.00|-3.14|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD3|6|8| +22|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|6B84|Pneuma|10FF0001|Sesuga Sapisuga|4|71650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32909|127791|10000|10000|||100.15|95.72|0.00|3.12|28630|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD3|7|8| +37|2023-10-06T20:26:34.8110000-07:00|40022550|Zeromus|0001ADCA|18659136||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|0001ADCA|28630|80739|5635|10000|15||100.27|100.85|0.00|-3.13|2800|0|0|01|05000000|0|0|| +38|2023-10-06T20:26:34.8110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|71677|128564|9200|10000|21||99.99|98.44|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:34.8110000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:34.8110000-07:00|10FF0006|Wowobora Gogobora|005A5A28|28630|80739|5635|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:34.8110000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:34.8110000-07:00|A33|Zoe|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:26:34.8550000-07:00|10FF0007|Kehabiqo Febiqo|0001ADC9|100021|128564|9200|10000|21||99.99|98.44|0.00|-3.14|1500|0|0|01|07000A79|0|41700000|| +26|2023-10-06T20:26:34.8550000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +21|2023-10-06T20:26:34.8550000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|138D0F|A748000|0|0|0|0|0|0|0|0|0|0|32909|127791|10000|10000|||100.15|95.72|0.00|3.12|32909|127791|10000|10000|||100.15|95.72|0.00|3.12|0001ADD4|0|1| +38|2023-10-06T20:26:34.8550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|32909|127791|10000|10000|6||100.15|95.72|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:34.8550000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:26:34.8550000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:26:34.8550000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:26:34.8550000-07:00|10FF0001||||| +37|2023-10-06T20:26:34.8990000-07:00|10FF0001|Sesuga Sapisuga|0001ADC8|38116||||||100.15|95.72|0.00|3.12| +37|2023-10-06T20:26:34.8990000-07:00|10FF0006|Wowobora Gogobora|0001ADD3|75733||||||100.27|100.85|0.00|-3.13| +37|2023-10-06T20:26:34.8990000-07:00|10FF0008|Kokosaze Lulusaze|0001ADC6|24531|79111|8800|10000|9||100.08|99.96|0.00|-3.14|1B01|0|0|01|02000129|0|41E6624A|| +37|2023-10-06T20:26:34.8990000-07:00|10FF0004|Buhojaqe Zijaqe|0001ADC6|24719|80739|2850|10000|15||100.02|100.05|0.00|-3.14|1C01|0|0|01|07000318|0|C1700000|| +39|2023-10-06T20:26:34.8990000-07:00|10FF0005|Wuwuchu Wuchu|21124|90055|7800|10000|||99.49|99.45|0.00|3.08| +261|2023-10-06T20:26:34.4740000-07:00|Change|10FF0005||||||||||| +37|2023-10-06T20:26:34.9440000-07:00|10FF0004|Buhojaqe Zijaqe|0001ADCB|24719|80739|2850|10000|15||100.02|100.05|0.00|-3.14|1C00|0|0|01|07000318|0|41700000|| +20|2023-10-06T20:26:34.9440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.02|100.05|0.00|-3.14| +261|2023-10-06T20:26:34.4740000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T20:26:34.9440000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|24719|80739|2850|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:34.9880000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|E470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18659136|40478540|10000|10000|||100.00|80.10|0.00|0.00|32885|90128|7600|10000|||101.36|99.84|0.00|-3.07|0001ADD5|0|1| +37|2023-10-06T20:26:35.0340000-07:00|10FF0003|Gegehi Gehi|0001ADD3|55451||||||100.39|100.88|0.00|-3.12| +37|2023-10-06T20:26:35.0340000-07:00|10FF0006|Wowobora Gogobora|0001ADC6|80739|80739|5635|10000|15||100.27|100.85|0.00|-3.13|2802|0|0|01|04000000|0|0|| +39|2023-10-06T20:26:35.0340000-07:00|10FF0008|Kokosaze Lulusaze|25322|79111|9000|10000|||100.08|99.96|0.00|-3.14| +21|2023-10-06T20:26:35.0340000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|710003|1C8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18659136|40478540|10000|10000|||100.00|80.10|0.00|0.00|21124|90055|7800|10000|||99.48|99.47|0.00|3.07|0001ADD6|0|1| +38|2023-10-06T20:26:35.0340000-07:00|40022550|Zeromus|005A5A00|18659136|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T20:26:35.0340000-07:00|A1A|Death's Design|60.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +38|2023-10-06T20:26:35.0340000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5635|10000|15||100.27|100.85|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:35.0340000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0006|Wowobora Gogobora|00|80739|40478540| +261|2023-10-06T20:26:34.5730000-07:00|Change|10FF0008||| +37|2023-10-06T20:26:35.1670000-07:00|10FF0004|Buhojaqe Zijaqe|0001ADD3|70962||||||100.02|100.05|0.00|-3.14| +37|2023-10-06T20:26:35.1670000-07:00|10FF0005|Wuwuchu Wuchu|0001ADC6|25855||||||99.47|99.47|0.00|3.12| +39|2023-10-06T20:26:35.1670000-07:00|10FF0004|Buhojaqe Zijaqe|71769|80739|3050|10000|||100.02|100.05|0.00|-3.14| +21|2023-10-06T20:26:35.2110000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|23AA0000|200004|3BED8000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|18659136|40478540|10000|10000|||100.00|80.10|0.00|0.00|100021|128564|9200|10000|||99.99|98.44|0.00|-3.14|0001ADD7|0|1| +37|2023-10-06T20:26:35.2550000-07:00|40022550|Zeromus|0001ADCC|18654333||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:35.2550000-07:00|40022550|Zeromus|0001ADCD|18642551||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:35.2550000-07:00|10FF0002|Suchichi Suchi|0001ADCD|32885|90128|7600|10000|8||100.97|99.48|0.00|-3.07|1600|0|0|01|080004DB|0|41700000|| +38|2023-10-06T20:26:35.2550000-07:00|10FF0002|Suchichi Suchi|005A5A16|32885|90128|7600|10000|8||100.97|99.48|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:35.3000000-07:00|10FF0008|Kokosaze Lulusaze|0001ADD3|55296||||||100.08|99.96|0.00|-3.14| +37|2023-10-06T20:26:35.3000000-07:00|10FF0003|Gegehi Gehi|0001ADC6|63352|73085|5550|10000|17||100.39|100.88|0.00|-3.12|2304|0|0|01|01000129|0|41E32F15|| +21|2023-10-06T20:26:35.3440000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18659136|40478540|10000|10000|||100.00|80.10|0.00|0.00|25322|79111|9000|10000|||100.08|99.96|0.00|-3.14|0001ADD8|0|1| +22|2023-10-06T20:26:35.3890000-07:00|10FF0006|Wowobora Gogobora|5EED|Pepsis|10FF0006|Wowobora Gogobora|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD9|0|8| +22|2023-10-06T20:26:35.3890000-07:00|10FF0006|Wowobora Gogobora|5EED|Pepsis|10FF0003|Gegehi Gehi|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63352|73085|5550|10000|||100.39|100.88|0.00|-3.12|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD9|1|8| +22|2023-10-06T20:26:35.3890000-07:00|10FF0006|Wowobora Gogobora|5EED|Pepsis|10FF0004|Buhojaqe Zijaqe|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|71769|80739|3050|10000|||100.02|100.05|0.00|-3.14|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD9|2|8| +22|2023-10-06T20:26:35.3890000-07:00|10FF0006|Wowobora Gogobora|5EED|Pepsis|10FF0008|Kokosaze Lulusaze|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55296|79111|9000|10000|||100.08|99.96|0.00|-3.14|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD9|3|8| +22|2023-10-06T20:26:35.3890000-07:00|10FF0006|Wowobora Gogobora|5EED|Pepsis|10FF0005|Wuwuchu Wuchu|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25855|90055|7800|10000|||99.47|99.47|-0.02|3.12|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD9|4|8| +22|2023-10-06T20:26:35.3890000-07:00|10FF0006|Wowobora Gogobora|5EED|Pepsis|10FF0002|Suchichi Suchi|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32885|90128|7600|10000|||100.85|99.37|0.00|-3.07|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD9|5|8| +22|2023-10-06T20:26:35.3890000-07:00|10FF0006|Wowobora Gogobora|5EED|Pepsis|10FF0007|Kehabiqo Febiqo|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|100021|128564|9200|10000|||99.99|98.44|0.00|-3.14|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD9|6|8| +22|2023-10-06T20:26:35.3890000-07:00|10FF0006|Wowobora Gogobora|5EED|Pepsis|10FF0001|Sesuga Sapisuga|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38116|127791|10000|10000|||100.15|95.72|0.00|3.12|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADD9|7|8| +261|2023-10-06T20:26:34.9300000-07:00|Change|10FF0006||| +37|2023-10-06T20:26:35.4350000-07:00|10FF0002|Suchichi Suchi|0001ADD3|62654||||||100.85|99.37|0.00|-3.07| +37|2023-10-06T20:26:35.4350000-07:00|10FF0002|Suchichi Suchi|0001ADC6|67477|90128|7600|10000|8||100.85|99.37|0.00|-3.07|1605|0|0|01|03000129|0|41E21CA6|| +37|2023-10-06T20:26:35.5230000-07:00|40022550|Zeromus|0001ADD5|18638896||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:35.5230000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18642551|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5635|10000|||100.27|100.85|0.00|-3.13|0001ADDA|0|1| +21|2023-10-06T20:26:35.5230000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|12620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18642551|40478540|10000|10000|||100.00|80.10|0.00|0.00|38116|127791|10000|10000|||100.15|95.72|0.00|-3.13|0001ADDB|0|1| +37|2023-10-06T20:26:35.5670000-07:00|10FF0005|Wuwuchu Wuchu|0001ADD3|55529||||||99.46|99.47|0.00|3.12| +37|2023-10-06T20:26:35.5670000-07:00|10FF0007|Kehabiqo Febiqo|0001ADC6|107950|128564|9200|10000|21||99.99|98.44|0.00|-3.14|1506|0|0|01|05000129|0|41E10A38|| +39|2023-10-06T20:26:35.5670000-07:00|40022A9F|Demi-Phoenix|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +21|2023-10-06T20:26:35.6110000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|726003|2DC40000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|18638896|40478540|10000|10000|||100.00|80.10|0.00|0.00|67477|90128|7600|10000|||100.76|99.32|0.00|-3.08|0001ADDC|0|1| +38|2023-10-06T20:26:35.6110000-07:00|10FF0002|Suchichi Suchi|005A5A16|67477|90128|7600|10000|8||100.76|99.32|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:35.6110000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:26:35.6560000-07:00|10FF0002|Suchichi Suchi|HoT|0|11D3|67477|90128|7600|10000|||100.76|99.32|0.00|-3.08|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:35.6560000-07:00|10FF0002|Suchichi Suchi|005A5A16|72040|90128|7600|10000|8||100.76|99.32|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:35.6990000-07:00|10FF0007|Kehabiqo Febiqo|0001ADD3|128564|128564|9200|10000|21||99.99|98.44|0.00|-3.14|1506|0|0|01|0C000000|0|0|| +37|2023-10-06T20:26:35.6990000-07:00|10FF0001|Sesuga Sapisuga|0001ADC6|42825||||||100.15|95.72|0.00|-3.13| +24|2023-10-06T20:26:35.7000000-07:00|10FF0003|Gegehi Gehi|HoT|0|1214|63352|73085|5550|10000|||100.39|100.88|0.00|-3.12|10FF0003|Gegehi Gehi|0|63352|73085|5550|10000|||100.39|100.88|0.00|-3.12| +38|2023-10-06T20:26:35.7000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9200|10000|21||99.99|98.44|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:35.7000000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|40478540| +38|2023-10-06T20:26:35.7000000-07:00|40022550|Zeromus|005A5A00|18638896|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:35.7000000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +38|2023-10-06T20:26:35.7000000-07:00|10FF0003|Gegehi Gehi|005A5A23|67980|73085|5550|10000|17||100.39|100.88|0.00|-3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:26:35.7450000-07:00|40022550|Zeromus|0001ADD7|18629766||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:35.7900000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|154003|29E00000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|18638896|40478540|10000|10000|||100.00|80.10|0.00|0.00|63352|73085|5550|10000|||100.39|100.88|0.00|-3.12|0001ADDD|0|1| +38|2023-10-06T20:26:35.7900000-07:00|10FF0003|Gegehi Gehi|005A5A23|67980|73085|5350|10000|17||100.39|100.88|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:35.7900000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:26:35.7900000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:35.3320000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T20:26:35.8350000-07:00|10FF0001|Sesuga Sapisuga|0001ADD3|71854||||||100.15|95.72|0.00|-3.13| +21|2023-10-06T20:26:35.8350000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|128564|128564|9200|10000|||99.99|98.44|0.00|-3.14|128564|128564|9200|10000|||99.99|98.44|0.00|-3.14|0001ADDE|0|1| +38|2023-10-06T20:26:35.8350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9200|10000|21||99.99|98.44|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:35.8350000-07:00|A75|Surging Tempest|39.31|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:26:35.8350000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|128564|128564| +26|2023-10-06T20:26:35.8350000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:26:35.8350000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:26:35.8790000-07:00|40022550|Zeromus|0001ADD8|18629623||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:35.8790000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.14| +24|2023-10-06T20:26:35.8790000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3177|42825|127791|10000|10000|||100.15|95.72|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|42825|127791|10000|10000|||100.15|95.72|0.00|-3.13| +24|2023-10-06T20:26:35.8790000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|122E|71769|80739|3050|10000|||100.02|100.05|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|71769|80739|3050|10000|||100.02|100.05|0.00|-3.14| +38|2023-10-06T20:26:35.8790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84517|127791|10000|10000|6||100.15|95.72|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:35.8790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|76423|80739|3050|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:35.9230000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|152003|8FEC0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|18629623|40478540|10000|10000|||100.00|80.10|0.00|0.00|55296|79111|9000|10000|||100.08|99.96|0.00|-3.14|0001ADDF|0|1| +21|2023-10-06T20:26:35.9230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18629623|40478540|10000|10000|||100.00|80.10|0.00|0.00|84517|127791|10000|10000|||100.15|95.72|0.00|-3.13|0001ADE0|0|1| +31|2023-10-06T20:26:35.9230000-07:00|10FF0001||||| +261|2023-10-06T20:26:35.4330000-07:00|Change|10FF0008||| +24|2023-10-06T20:26:35.9690000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1238|55529|90055|7800|10000|||99.16|100.07|0.00|3.04|10FF0005|Wuwuchu Wuchu|0|55529|90055|7800|10000|||99.16|100.07|0.00|3.04| +38|2023-10-06T20:26:35.9690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60193|90055|7800|10000|8||99.16|100.07|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:26:35.5340000-07:00|Change|10FF0004||||| +21|2023-10-06T20:26:36.0130000-07:00|40022A9F|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|12DF0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|18629623|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06|0001ADE1|0|1| +24|2023-10-06T20:26:36.0130000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1883|80739|80739|5635|10000|||100.22|99.65|0.00|-3.12|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:36.0130000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5635|10000|15||100.22|99.65|0.00|-3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:36.0580000-07:00|40022550|Zeromus|0001ADDA|18629562||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:36.1020000-07:00|40022550|Zeromus|0001ADDB|18624856||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:36.1920000-07:00|40022550|Zeromus|0001ADD6|18617546||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:36.2360000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|9400|10000|||99.99|98.44|0.00|-3.14| +261|2023-10-06T20:26:35.7480000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:26:36.2810000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D726003|43BC0000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|18617546|40478540|10000|10000|||100.00|80.10|0.00|0.00|72040|90128|7600|10000|||100.51|99.32|0.00|-3.10|0001ADE2|0|1| +38|2023-10-06T20:26:36.2810000-07:00|10FF0002|Suchichi Suchi|005A5A16|72040|90128|7600|10000|8||100.51|99.32|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:36.2810000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:26:36.2810000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +20|2023-10-06T20:26:36.3250000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.21|99.26|0.00|2.92| +22|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|12DD0000|4|1E2E0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|0001ADE3|0|8| +22|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|124A0000|4|1D430000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55296|79111|8700|10000|||100.08|99.96|0.00|-3.14|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|0001ADE3|1|8| +22|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|12F50000|4|1E540000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|72040|90128|7600|10000|||100.51|99.32|0.00|-3.10|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|0001ADE3|2|8| +22|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|124B0000|4|1D440000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67980|73085|5350|10000|||100.39|100.88|0.00|-3.12|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|0001ADE3|3|8| +22|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|200004|1F2F0000|4|31E40000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|60193|90055|7800|10000|||99.00|101.06|0.00|2.98|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|0001ADE3|4|8| +22|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|1E300000|4|304C0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|5635|10000|||100.21|99.26|0.00|2.92|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|0001ADE3|5|8| +22|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|123F0000|4|1D310000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|128564|128564|9400|10000|||99.99|98.44|0.00|-3.14|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|0001ADE3|6|8| +22|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|1EA20000|4|31030000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|84517|127791|10000|10000|||100.15|95.72|0.00|-3.13|76423|80739|3050|10000|||100.02|100.05|0.00|-3.14|0001ADE3|7|8| +38|2023-10-06T20:26:36.3250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|76423|80739|2050|10000|15||100.02|100.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:36.3250000-07:00|318|Emergency Tactics|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:26:36.3690000-07:00|10FF0003|Gegehi Gehi|68710|73085|5550|10000|||100.39|100.88|0.00|-3.12| +261|2023-10-06T20:26:35.9690000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:26:36.4140000-07:00|40022550|Zeromus|0001ADDC|18605830||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:36.4140000-07:00|10FF0002|Suchichi Suchi|0001ADDC|72040|90128|7600|10000|8||100.51|99.32|0.00|-3.10|1600|0|0|01|08000322|0|C1F00000|| +37|2023-10-06T20:26:36.4580000-07:00|40022550|Zeromus|0001ADE0|18603744||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:36.4580000-07:00|10FF0002|Suchichi Suchi|72941|90128|7800|10000|||100.49|99.29|-0.02|-3.12| +261|2023-10-06T20:26:35.9690000-07:00|Change|10FF0002||||||||||| +24|2023-10-06T20:26:36.5470000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|35BD|128564|128564|9400|10000|||99.99|98.42|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|128564|128564|9400|10000|||99.99|98.42|0.00|-3.14| +24|2023-10-06T20:26:36.5470000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1E3B|55296|79111|8700|10000|||100.08|99.96|0.00|-3.14|40022A9F|Demi-Phoenix|0|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +21|2023-10-06T20:26:36.5470000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18605830|40478540|10000|10000|||100.00|80.10|0.00|0.00|76423|80739|2050|10000|||100.02|100.05|0.00|-3.14|0001ADE4|0|1| +38|2023-10-06T20:26:36.5470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9400|10000|21||99.99|98.42|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:36.5470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|63035|79111|8700|10000|9||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:26:36.5920000-07:00|10FF0007|Kehabiqo Febiqo|0001ADDE|128564|128564|9400|10000|21||99.99|98.39|0.00|-3.14|1500|0|0|03|0C000499|03|41700000|||||||||| +37|2023-10-06T20:26:36.5920000-07:00|40022550|Zeromus|0001ADDD|18593024||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:36.5920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9400|10000|21||99.99|98.39|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:36.7250000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|FCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18593024|40478540|10000|10000|||100.00|80.10|0.00|0.00|60193|90055|7800|10000|||99.54|101.00|0.00|2.99|0001ADE5|0|1| +21|2023-10-06T20:26:36.8160000-07:00|10FF0001|Sesuga Sapisuga|DD5|Clemency|10FF0001|Sesuga Sapisuga|200004|95FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|84517|127791|10000|10000|||100.17|95.08|0.00|3.12|84517|127791|10000|10000|||100.17|95.08|0.00|3.12|0001ADE6|0|1| +21|2023-10-06T20:26:36.8160000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|289B0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|18593024|40478540|10000|10000|||100.00|80.10|0.00|0.00|68710|73085|5550|10000|||100.39|100.77|0.00|-3.13|0001ADE7|0|1| +38|2023-10-06T20:26:36.8160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84517|127791|8000|10000|6||100.17|95.08|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:36.8160000-07:00|558|Requiescat|26.79|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +38|2023-10-06T20:26:36.8160000-07:00|10FF0003|Gegehi Gehi|005A5A23|68710|73085|5250|10000|17||100.39|100.77|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:36.8160000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:36.3680000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:26:36.3680000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:26:36.9030000-07:00|10FF0002|Suchichi Suchi|4060|Stardiver|40022550|Zeromus|124003|53D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18593024|40478540|10000|10000|||100.00|80.10|0.00|0.00|72941|90128|7800|10000|||100.17|98.51|0.00|-3.10|0001ADE8|0|1| +37|2023-10-06T20:26:36.9480000-07:00|40022550|Zeromus|0001ADE2|18575684||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:36.9480000-07:00|10FF0002|Suchichi Suchi|0001ADE2|72941|90128|7800|10000|8||100.17|98.51|0.00|-3.10|1600|0|0|01|08000322|0|41F00000|| +38|2023-10-06T20:26:36.9490000-07:00|10FF0002|Suchichi Suchi|005A5A16|72941|90128|7800|10000|8||100.17|98.51|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:36.4700000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:26:36.9930000-07:00|40022550|Zeromus|0001ADDF|18538840||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:36.9930000-07:00|10FF0001|Sesuga Sapisuga|85794|127791|8200|10000|||100.17|95.08|0.00|3.12| +37|2023-10-06T20:26:37.0380000-07:00|40022550|Zeromus|0001ADE1|18534009||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:37.0810000-07:00|40022550|Zeromus|0001ADE4|18533889||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:37.1260000-07:00|40022A88|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0||||||| +26|2023-10-06T20:26:37.1260000-07:00|7AE|Summon Order IV|30.00|40022A88|Ruby Carbuncle|40022A88|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:26:37.1260000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|76423|80739|2050|10000|||100.02|100.04|0.00|-3.12|76423|80739|2050|10000|||100.02|100.04|0.00|-3.12|0001ADE9|0|1| +22|2023-10-06T20:26:37.2160000-07:00|40022A88|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|25F70000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|68710|73085|5250|10000|||100.02|97.83|0.00|-2.99|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADEA|0|8| +22|2023-10-06T20:26:37.2160000-07:00|40022A88|Ruby Carbuncle|40A0|Fey Blessing|10FF0002|Suchichi Suchi|4|25610000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|72941|90128|7800|10000|||98.65|98.02|0.00|-2.87|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADEA|1|8| +22|2023-10-06T20:26:37.2160000-07:00|40022A88|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|25110000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5635|10000|||100.21|98.95|0.00|-3.13|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADEA|2|8| +22|2023-10-06T20:26:37.2160000-07:00|40022A88|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|200004|3AF10000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|85794|127791|8200|10000|||100.17|95.08|0.00|3.12|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADEA|3|8| +22|2023-10-06T20:26:37.2160000-07:00|40022A88|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|200004|3DCC0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|9400|10000|||98.20|95.36|0.00|3.13|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADEA|4|8| +22|2023-10-06T20:26:37.2160000-07:00|40022A88|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|251A0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|76423|80739|2050|10000|||100.02|99.94|-0.02|-3.11|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADEA|5|8| +22|2023-10-06T20:26:37.2160000-07:00|40022A88|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|25CB0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|63035|79111|8700|10000|||100.05|99.89|0.00|-3.14|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADEA|6|8| +22|2023-10-06T20:26:37.2160000-07:00|40022A88|Ruby Carbuncle|40A0|Fey Blessing|10FF0005|Wuwuchu Wuchu|4|25E10000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|60193|90055|7800|10000|||100.04|100.46|0.00|3.00|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001ADEA|7|8| +24|2023-10-06T20:26:37.2160000-07:00|40022550|Zeromus|DoT|0|2078|18533889|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|80739|80739|5635|10000|||100.21|98.95|0.00|-3.13| +38|2023-10-06T20:26:37.2160000-07:00|40022550|Zeromus|005A5A00|18525577|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T20:26:37.2600000-07:00|40022550|Zeromus|0001ADE5|18521531||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:37.2600000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36D10000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|18533889|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5635|10000|||100.21|98.95|0.00|-3.13|0001ADEB|0|1| +21|2023-10-06T20:26:37.3490000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18521531|40478540|10000|10000|||100.00|80.10|0.00|0.00|68710|73085|5250|10000|||99.61|97.20|0.00|-2.84|0001ADEC|0|1| +261|2023-10-06T20:26:36.9170000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:26:37.4390000-07:00|10FF0001|Sesuga Sapisuga|0001ADE6|124193||||||100.17|95.08|0.00|3.12| +37|2023-10-06T20:26:37.4390000-07:00|10FF0004|Buhojaqe Zijaqe|0001ADE3|80739|80739|2050|10000|15||99.98|99.46|0.00|-3.10|1C00|0|0|01|05000000|0|0|| +38|2023-10-06T20:26:37.4400000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|2050|10000|15||99.98|99.46|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:37.4400000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|40478540| +261|2023-10-06T20:26:37.0370000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:26:37.5280000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5440|10000|||100.21|98.95|0.00|-3.13| +261|2023-10-06T20:26:37.1330000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:26:37.5730000-07:00|10FF0008|Kokosaze Lulusaze|0001ADE3|75208||||||99.25|99.15|0.00|-2.80| +37|2023-10-06T20:26:37.5730000-07:00|40022550|Zeromus|0001ADE7|18511136||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:37.5730000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|20AE0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|18521531|40478540|10000|10000|||100.00|80.10|0.00|0.00|60193|90055|7800|10000|||100.14|100.30|0.00|3.00|0001ADED|0|1| +21|2023-10-06T20:26:37.6620000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|79F00000|4|25578000|0|0|0|0|0|0|0|0|0|0|0|0|18511136|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9400|10000|||95.82|94.37|0.00|2.85|0001ADEE|0|1| +38|2023-10-06T20:26:37.6630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9400|10000|21||95.82|94.37|0.00|2.85|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:37.6630000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:26:37.6630000-07:00|499|Inner Release|13.89|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|128564|128564| +37|2023-10-06T20:26:37.7060000-07:00|10FF0002|Suchichi Suchi|0001ADE3|85558||||||97.82|97.81|0.00|3.10| +20|2023-10-06T20:26:37.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|99.94|99.10|0.00|-3.10| +21|2023-10-06T20:26:37.7950000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|8FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18511136|40478540|10000|10000|||100.00|80.10|0.00|0.00|85558|90128|7800|10000|||97.82|97.81|0.00|3.10|0001ADEF|0|1| +261|2023-10-06T20:26:37.3150000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:26:37.8400000-07:00|10FF0003|Gegehi Gehi|0001ADE3|73085|73085|5250|10000|17||97.68|95.50|0.00|-2.39|2303|0|0|01|03000000|0|0|| +38|2023-10-06T20:26:37.8400000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|17||97.15|95.15|0.00|-2.33|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:37.8400000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0003|Gegehi Gehi|00|73085|40478540| +37|2023-10-06T20:26:37.8840000-07:00|40022550|Zeromus|0001ADEC|18511135||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:37.8840000-07:00|10FF0005|Wuwuchu Wuchu|61093|90055|8000|10000|||100.14|100.30|0.00|3.14| +38|2023-10-06T20:26:37.8850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9400|10000|21||94.72|93.93|0.00|2.74|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:37.8850000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +261|2023-10-06T20:26:37.4080000-07:00|Change|10FF0005||||||||| +24|2023-10-06T20:26:37.9300000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|222A|128564|128564|9400|10000|||94.10|93.66|0.00|2.70|10FF0006|Wowobora Gogobora|1|80739|80739|5440|10000|||100.21|98.94|0.00|3.12| +37|2023-10-06T20:26:37.9300000-07:00|40022550|Zeromus|0001ADEB|18497102||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:37.9300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9400|10000|21||94.10|93.66|0.00|2.70|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:37.9730000-07:00|10FF0005|Wuwuchu Wuchu|0001ADE3|81848||||||100.14|100.30|0.00|3.13| +261|2023-10-06T20:26:37.5120000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T20:26:37.6040000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:26:38.0180000-07:00|10FF0008|Kokosaze Lulusaze|75999|79111|8900|10000|||96.39|97.29|0.00|-2.16| +37|2023-10-06T20:26:38.0620000-07:00|40022550|Zeromus|0001ADED|18488736||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:38.1070000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18497102|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9400|10000|||93.86|93.55|0.00|2.69|0001ADF0|0|1| +37|2023-10-06T20:26:38.1520000-07:00|10FF0002|Suchichi Suchi|0001ADEA|90128|90128|7800|10000|8||97.82|97.81|0.00|3.10|1601|0|0|01|06000000|0|0|| +39|2023-10-06T20:26:38.1520000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|2250|10000|||99.93|98.99|0.00|-2.95| +38|2023-10-06T20:26:38.1520000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7800|10000|8||97.82|97.81|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:38.1520000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0002|Suchichi Suchi|00|90128|40478540| +37|2023-10-06T20:26:38.1970000-07:00|40022550|Zeromus|0001ADE8|18467274||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:38.1970000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18488736|40478540|10000|10000|||100.00|80.10|0.00|0.00|124193|127791|8200|10000|||97.65|93.24|0.00|-2.84|0001ADF1|0|1| +31|2023-10-06T20:26:38.1970000-07:00|10FF0001||||| +23|2023-10-06T20:26:38.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|Cancelled| +37|2023-10-06T20:26:38.2850000-07:00|40022550|Zeromus|0001ADEE|18436058||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:38.3300000-07:00|40022550|Zeromus|0001ADEF|18433756||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:38.3300000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|712003|46C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18488736|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9400|10000|||93.40|93.34|0.00|2.67|0001ADF2|0|1| +37|2023-10-06T20:26:38.3740000-07:00|10FF0001|Sesuga Sapisuga|0001ADE3|127791|127791|8200|10000|6||97.65|93.24|0.00|-2.84|1307|0|0|01|03000000|0|0|| +38|2023-10-06T20:26:38.3740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|6||97.65|93.24|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:38.3740000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|40478540| +21|2023-10-06T20:26:38.4190000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|152003|8DE80000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|18433756|40478540|10000|10000|||100.00|80.10|0.00|0.00|75999|79111|8900|10000|||94.92|96.45|-0.02|-2.11|0001ADF3|0|1| +261|2023-10-06T20:26:37.9540000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:26:37.9540000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:26:38.5080000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18433756|40478540|10000|10000|||100.00|80.10|0.00|0.00|75999|79111|8600|10000|||94.66|96.29|0.00|2.78|0001ADF4|0|1| +39|2023-10-06T20:26:38.5520000-07:00|40022A9F|Demi-Phoenix|72376|75851|10000|10000|||101.85|101.73|0.00|-3.06| +261|2023-10-06T20:26:38.0650000-07:00|Change|40022A9F||||||||| +261|2023-10-06T20:26:38.0650000-07:00|Change|40022A9F||||||||| +261|2023-10-06T20:26:38.0650000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:26:38.0650000-07:00|Change|10FF0007||||||||| +38|2023-10-06T20:26:38.5960000-07:00|40022ADA||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:26:38.5970000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|2250|10000|||98.40|97.32|0.00|-2.44|80739|80739|2250|10000|||98.40|97.32|0.00|-2.44|0001ADF5|0|1| +38|2023-10-06T20:26:38.5970000-07:00|40022ADA||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:26:38.6410000-07:00|40022550|Zeromus|0001ADF0|18430790||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:38.6410000-07:00|10FF0002|Suchichi Suchi|HoT|0|1958|90128|90128|7800|10000|||95.41|97.62|0.00|-2.75|40022A9F|Demi-Phoenix|0|0|75851|0|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:38.6410000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7800|10000|8||95.41|97.62|0.00|-2.75|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:38.6860000-07:00|10FF0003|Gegehi Gehi|HoT|0|11F7|73085|73085|5250|10000|||93.59|92.41|0.00|-2.26|40022A9F|Demi-Phoenix|0|0|75851|0|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:38.6860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|17||93.59|92.41|0.00|-2.26|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:38.7310000-07:00|40022550|Zeromus|0001ADF1|18428562||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:38.7310000-07:00|10FF0004|Buhojaqe Zijaqe|0001ADF5|80739|80739|2250|10000|15||97.97|96.90|0.00|-2.31|1C00|0|0|01|05000032|1E|41200000|| +26|2023-10-06T20:26:38.7310000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +261|2023-10-06T20:26:38.2600000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:26:38.7760000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A724003|38890000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|18430790|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|7800|10000|||94.56|97.52|0.00|-2.63|0001ADF6|0|1| +38|2023-10-06T20:26:38.7760000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7800|10000|8||94.56|97.52|0.00|-2.63|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:38.7760000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:26:38.7760000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +03|2023-10-06T20:26:38.2600000-07:00|40022ADA|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||94.37|94.11|0.00|-0.36| +261|2023-10-06T20:26:38.3560000-07:00|Add|40022ADA||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:38.3560000-07:00|Change|40022ADA||| +37|2023-10-06T20:26:38.8200000-07:00|10FF0008|Kokosaze Lulusaze|0001ADEA|79111|79111|8600|10000|9||93.47|95.59|0.00|-2.99|1B06|0|0|01|03000000|0|0|| +38|2023-10-06T20:26:38.8200000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5440|10000|15||96.98|95.03|0.00|-2.33|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:38.8200000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:38.8200000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:26:38.8200000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5440|10000|||96.98|95.03|0.00|-2.33|80739|80739|5440|10000|||96.98|95.03|0.00|-2.33|0001ADF7|0|1| +38|2023-10-06T20:26:38.8200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8600|10000|9||93.47|95.59|0.00|-2.99|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:38.8200000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|40478540| +39|2023-10-06T20:26:38.8640000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.14| +24|2023-10-06T20:26:38.8640000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|30A4|127791|127791|8200|10000|||96.36|90.21|0.00|-2.61|10FF0001|Sesuga Sapisuga|0|127791|127791|8200|10000|||96.36|90.21|0.00|-2.61| +24|2023-10-06T20:26:38.8640000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|11B6|80739|80739|2250|10000|||97.51|96.46|0.00|-2.31|10FF0004|Buhojaqe Zijaqe|0|80739|80739|2250|10000|||97.51|96.46|0.00|-2.31| +38|2023-10-06T20:26:38.8640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|6||96.36|90.21|0.00|-2.61|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:38.8640000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:26:38.8640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|2250|10000|15||97.51|96.46|0.00|-2.31|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:38.9530000-07:00|40022550|Zeromus|0001ADF2|18410444||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:38.9530000-07:00|10FF0005|Wuwuchu Wuchu|0001ADEA|90055|90055|8000|10000|8||96.14|98.37|0.00|-2.75|2707|0|0|01|05000000|0|0|| +24|2023-10-06T20:26:38.9530000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1725|81848|90055|8000|10000|||96.14|98.37|0.00|-2.75|10FF0005|Wuwuchu Wuchu|0|81848|90055|8000|10000|||96.14|98.37|0.00|-2.75| +38|2023-10-06T20:26:38.9530000-07:00|40022A88|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0|||| +30|2023-10-06T20:26:38.9530000-07:00|7AE|Summon Order IV|0.00|40022A88|Ruby Carbuncle|40022A88|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T20:26:38.9530000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8000|10000|8||96.14|98.37|0.00|-2.75|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:38.9530000-07:00|6E9|Doom|0.00|40022550|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|40478540| +261|2023-10-06T20:26:38.4610000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:26:38.4610000-07:00|Change|10FF0005||||||||| +24|2023-10-06T20:26:38.9970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1281|80739|80739|5440|10000|||95.77|94.22|0.00|-2.13|40022A9F|Demi-Phoenix|0|0|75851|0|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:38.9970000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5440|10000|15||95.77|94.22|0.00|-2.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:39.0420000-07:00|40022550|Zeromus|0001ADF4|18410259||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:39.0860000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|4|15620000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|8000|10000|||95.50|98.22|0.00|-2.71|73956|77430|10000|10000|||99.90|97.15|0.00|-2.97|0001ADF8|0|1| +261|2023-10-06T20:26:38.6820000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:26:38.7970000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:26:39.2630000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|9600|10000|||88.84|90.06|0.00|2.52| +21|2023-10-06T20:26:39.3080000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18410259|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5440|10000|||96.33|94.58|0.00|-2.13|0001ADF9|0|1| +21|2023-10-06T20:26:39.3080000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|752003|5E6A0000|200004|3EF68000|0|0|0|0|0|0|0|0|0|0|0|0|18410259|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||93.41|89.45|0.00|-2.58|0001ADFA|0|1| +38|2023-10-06T20:26:39.3080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|6||93.41|89.45|0.00|-2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:39.3080000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +39|2023-10-06T20:26:39.3520000-07:00|10FF0003|Gegehi Gehi|73085|73085|5450|10000|||90.04|89.43|0.00|-2.27| +37|2023-10-06T20:26:39.3970000-07:00|40022550|Zeromus|0001ADF6|18395786||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:39.3970000-07:00|10FF0002|Suchichi Suchi|0001ADF6|90128|90128|7800|10000|8||93.02|97.18|0.00|2.77|1600|0|0|01|06000747|0|41F00000|| +38|2023-10-06T20:26:39.3970000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|7800|10000|8||93.02|97.18|0.00|2.77|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:38.9130000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T20:26:39.4410000-07:00|10FF0002|Suchichi Suchi|90128|90128|8000|10000|||93.02|97.18|0.00|2.77| +37|2023-10-06T20:26:39.4850000-07:00|40022550|Zeromus|0001ADF3|18359458||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:39.5300000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3E97|128564|128564|9600|10000|||87.77|89.09|0.00|2.47|10FF0007|Kehabiqo Febiqo|0|128564|128564|9600|10000|||87.77|89.09|0.00|2.47| +24|2023-10-06T20:26:39.5300000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|18FB|79111|79111|8600|10000|||90.55|93.81|0.00|-2.16|40022A9F|Demi-Phoenix|0|0|75851|0|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:39.5300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9600|10000|21||87.77|89.09|0.00|2.47|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:39.5300000-07:00|40022550|Zeromus|005A5A00|18359458|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:39.5300000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:26:39.5300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8600|10000|9||90.55|93.81|0.00|-2.16|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:26:39.0230000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:26:39.5750000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|FD90E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|18359458|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|2250|10000|||94.62|93.90|0.00|-2.29|0001ADFB|0|1| +261|2023-10-06T20:26:39.1420000-07:00|Change|10FF0002||||||||||| +34|2023-10-06T20:26:39.6190000-07:00|40022ADA|Carbuncle|40022ADA|Carbuncle|01| +261|2023-10-06T20:26:39.1420000-07:00|Change|40022ADA||||||||| +261|2023-10-06T20:26:39.1420000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T20:26:39.7960000-07:00|4002255E|Zeromus|8B41|unknown_8b41|4002255E|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-2.36|44|44|0|10000|||100.00|100.00|0.00|-2.36|0001ADFC|0|1| +21|2023-10-06T20:26:39.7960000-07:00|40022560|Zeromus|8B41|unknown_8b41|40022560|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|2.36|44|44|0|10000|||100.00|100.00|0.00|2.36|0001ADFD|0|1| +21|2023-10-06T20:26:39.7960000-07:00|40022562|Zeromus|8B40|unknown_8b40|40022562|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-1.57|44|44|0|10000|||100.00|100.00|0.00|-1.57|0001ADFE|0|1| +21|2023-10-06T20:26:39.7960000-07:00|40022564|Zeromus|8B40|unknown_8b40|40022564|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|0001ADFF|0|1| +261|2023-10-06T20:26:39.2400000-07:00|Change|40022560||||||||||||| +261|2023-10-06T20:26:39.2400000-07:00|Change|4002255E||||||||||||| +261|2023-10-06T20:26:39.2400000-07:00|Change|40022562||||||||||||| +261|2023-10-06T20:26:39.2400000-07:00|Change|40022564||||||||||||| +261|2023-10-06T20:26:39.3390000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:26:39.3390000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:26:39.8420000-07:00|40022550|Zeromus|0001ADF9|18359398||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|200004|15180000|800E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|0001AE00|0|8| +22|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|CAD0000|900E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|1850|10000|||93.23|92.85|0.00|2.61|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|0001AE00|1|8| +22|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|C5A0000|860E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90055|90055|8000|10000|||92.30|94.49|0.00|-2.50|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|0001AE00|2|8| +22|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|200004|14BA0000|530E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|7200|10000|||91.06|89.37|0.00|-2.84|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|0001AE00|3|8| +22|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|C920000|390E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90128|90128|8000|10000|||90.07|95.73|0.00|-3.02|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|0001AE00|4|8| +22|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|200004|14970000|E30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|79111|79111|8600|10000|||88.69|92.58|0.00|-2.12|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|0001AE00|5|8| +22|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|CBE0000|C60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|73085|73085|5450|10000|||88.15|87.82|0.00|-2.28|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|0001AE00|6|8| +22|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|CAE0000|930E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|128564|128564|9600|10000|||86.23|87.48|0.00|2.36|80739|80739|5440|10000|||93.55|93.00|0.00|-2.06|0001AE00|7|8| +38|2023-10-06T20:26:39.8420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9600|10000|20||86.23|87.48|0.00|2.36|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:39.8420000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:26:39.8420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:26:39.8420000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:39.8420000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8000|10000|11||90.07|95.73|0.00|-3.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:39.8420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:26:39.8420000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:39.8420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8600|10000|21||87.97|92.17|0.00|-2.09|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:39.8420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:26:39.8420000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:39.8420000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4540|10000|21||92.78|92.64|0.00|-2.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:39.8420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:39.8420000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:39.8420000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:39.8420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|13||90.43|89.42|0.00|-2.90|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:39.8420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:26:39.8420000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:39.8420000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1850|10000|12||92.82|92.55|0.00|2.66|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:39.8420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:26:39.8420000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:39.8420000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5450|10000|14||87.61|87.36|0.00|-2.28|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:39.8420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:26:39.8420000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:39.8420000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8000|10000|11||91.88|93.97|0.00|-2.47|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:39.8420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:26:39.8420000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:26:39.8850000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|720003|1C2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18359398|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8000|10000|||89.36|95.28|-0.02|2.40|0001AE01|0|1| +21|2023-10-06T20:26:39.9300000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|93B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18359398|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8000|10000|||91.88|93.97|0.00|-2.47|0001AE02|0|1| +261|2023-10-06T20:26:39.4450000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:26:40.0180000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7400|10000|||89.86|89.25|0.00|-2.96| +20|2023-10-06T20:26:40.0180000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|87.07|86.90|0.00|-2.28| +37|2023-10-06T20:26:40.0630000-07:00|40022550|Zeromus|0001ADFA|18335228||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:40.0630000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C712003|3FC20000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|18327279|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8000|10000|||90.00|91.86|0.00|3.02|0001AE03|0|1| +21|2023-10-06T20:26:40.1070000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|9ED00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18327279|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9600|10000|||85.03|85.90|0.00|1.91|0001AE04|0|1| +261|2023-10-06T20:26:39.9030000-07:00|Change|10FF0003||||||||||||||||||||||| +38|2023-10-06T20:26:40.1070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9600|10000|20||85.03|85.90|0.00|1.91|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:40.1070000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +24|2023-10-06T20:26:40.1960000-07:00|40022550|Zeromus|DoT|0|1F0D|18327279|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|80739|80739|4540|10000|||91.05|91.70|0.00|-2.09| +38|2023-10-06T20:26:40.1960000-07:00|40022550|Zeromus|005A5A00|18327279|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T20:26:40.2410000-07:00|40022550|Zeromus|0001ADFB|18327279|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:26:40.2410000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:26:40.2850000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18327279|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|1850|10000|||89.45|90.64|0.00|-2.38|0001AE05|0|1| +261|2023-10-06T20:26:39.9030000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:26:40.4640000-07:00|40022550|Zeromus|0001AE02|18324916||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:40.4640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|A610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18327279|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||88.13|88.37|0.00|3.09|0001AE06|0|1| +31|2023-10-06T20:26:40.4640000-07:00|10FF0001||||| +261|2023-10-06T20:26:40.0270000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:26:40.5090000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4745|10000|||90.35|91.14|0.00|-2.15| +38|2023-10-06T20:26:40.5540000-07:00|40022550|Zeromus|005A5A00|18324916|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:26:40.5540000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:26:40.5980000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|9580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18324916|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8000|10000|||89.07|95.09|0.00|2.40|0001AE07|0|1| +261|2023-10-06T20:26:40.1470000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:26:40.1470000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:26:40.6420000-07:00|40022550|Zeromus|0001AE03|18308594||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:40.2670000-07:00|Change|40022ADA||||||||| +37|2023-10-06T20:26:40.6870000-07:00|40022550|Zeromus|0001AE01|18301381||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:40.7770000-07:00|10FF0006|Wowobora Gogobora|0001AE00|80739|80739|4745|10000|21||88.87|90.00|0.00|-2.19|2800|0|0|01|03000A31|0|41E8DF38|| +37|2023-10-06T20:26:40.8200000-07:00|40022550|Zeromus|0001AE05|18301313||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:40.3630000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:26:40.8650000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|8200|10000|||87.89|90.00|0.00|-2.64| +21|2023-10-06T20:26:40.8650000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|18301381|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8600|10000|||83.52|89.37|0.00|-2.18|0001AE08|0|1| +38|2023-10-06T20:26:40.9090000-07:00|40022AE2||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:26:40.9090000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE00|80739|80739|1850|10000|12||85.23|88.10|0.00|-2.16|1C01|0|0|01|03000A31|0|41E7CED6|| +38|2023-10-06T20:26:40.9090000-07:00|40022AE2||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:26:40.9980000-07:00|40022550|Zeromus|0001AE06|18298656||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:40.5600000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:26:40.5600000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:26:41.0430000-07:00|10FF0005|Wuwuchu Wuchu|0001AE00|90055|90055|8200|10000|11||87.06|88.84|0.00|-2.62|2702|0|0|01|02000A31|0|41E6BC67|| +39|2023-10-06T20:26:41.0430000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8800|10000|||83.06|89.00|0.00|2.03| +261|2023-10-06T20:26:40.5600000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:26:41.1320000-07:00|40022550|Zeromus|0001AE07|18296264||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:41.1320000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|2050|10000|||84.01|86.93|0.00|-2.27| +37|2023-10-06T20:26:41.1770000-07:00|10FF0001|Sesuga Sapisuga|0001AE00|127791|127791|7400|10000|13||85.45|86.27|0.00|2.63|1303|0|0|01|08000A31|0|41E5A9F9|| +261|2023-10-06T20:26:40.6750000-07:00|Add|40022AE2||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:26:40.6750000-07:00|40022AE2|Topaz Titan|00|5A|10FF0008|00||10264|13507|72376|75851|10000|10000|||81.91|91.07|0.00|2.03| +37|2023-10-06T20:26:41.2670000-07:00|40022550|Zeromus|0001AE04|18255608||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:41.2670000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|1FDE0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|18296264|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8000|10000|||85.41|93.80|0.00|2.78|0001AE09|0|1| +38|2023-10-06T20:26:41.2670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8000|10000|11||85.41|93.80|0.00|2.78|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:41.2670000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:26:40.7940000-07:00|Change|40022AE2||||| +37|2023-10-06T20:26:41.3120000-07:00|10FF0002|Suchichi Suchi|0001AE00|90128|90128|8000|10000|11||85.41|93.80|0.00|2.78|1604|0|0|01|03000A31|0|41E4957E|| +21|2023-10-06T20:26:41.3120000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|102C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18296264|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9600|10000|||85.03|85.90|0.00|1.91|0001AE0A|0|1| +261|2023-10-06T20:26:40.9100000-07:00|Change|10FF0005||||||||||| +38|2023-10-06T20:26:41.4020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4745|10000|21||85.70|86.79|0.00|-2.37|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:41.4020000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:41.4020000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:26:41.4020000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4745|10000|||85.70|86.79|0.00|-2.37|80739|80739|4745|10000|||85.70|86.79|0.00|-2.37|0001AE0B|0|1| +37|2023-10-06T20:26:41.4440000-07:00|10FF0008|Kokosaze Lulusaze|0001AE00|79111|79111|8800|10000|21||82.74|88.68|0.00|2.17|1B05|0|0|01|02000A31|0|41E38102|| +21|2023-10-06T20:26:41.4440000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|225E0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|18255608|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5450|10000|||86.59|86.47|0.00|2.02|0001AE0C|0|1| +38|2023-10-06T20:26:41.4440000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|14||86.59|86.47|0.00|2.02|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:41.4440000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:41.0250000-07:00|Change|10FF0003||||||||||||||||||||||| +21|2023-10-06T20:26:41.4890000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18255608|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9600|10000|||85.03|85.90|0.00|1.91|0001AE0D|0|1| +37|2023-10-06T20:26:41.5780000-07:00|10FF0003|Gegehi Gehi|0001AE00|73085|73085|5250|10000|14||86.59|86.47|0.00|2.02|2306|0|0|01|01000A31|0|41E274B8|| +24|2023-10-06T20:26:41.6670000-07:00|10FF0002|Suchichi Suchi|HoT|0|11E1|90128|90128|8000|10000|||83.24|92.23|0.00|2.39|40022A9F|Demi-Phoenix|0|0|75851|0|10000|||101.85|101.73|0.00|-3.06| +21|2023-10-06T20:26:41.6670000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18255608|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8800|10000|||83.01|88.36|0.00|2.23|0001AE0E|0|1| +38|2023-10-06T20:26:41.6670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8000|10000|11||83.24|92.23|0.00|2.39|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:41.2630000-07:00|Change|40022ADA||||||||| +37|2023-10-06T20:26:41.7120000-07:00|10FF0007|Kehabiqo Febiqo|0001AE00|128564|128564|9600|10000|20||85.03|85.90|0.00|1.91|1507|0|0|01|05000A31|0|41E16249|| +24|2023-10-06T20:26:41.7120000-07:00|10FF0003|Gegehi Gehi|HoT|0|1249|73085|73085|5250|10000|||86.59|86.47|0.00|2.02|40022A9F|Demi-Phoenix|0|0|75851|0|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:41.7120000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|14||86.59|86.47|0.00|2.02|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:26:41.7570000-07:00|40022565|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|116.50|0.00|0.00|0001AE0F|0|0| +21|2023-10-06T20:26:41.7570000-07:00|40022567|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|116.50|0.00|0.00|0001AE10|0|0| +261|2023-10-06T20:26:41.2630000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:26:41.3680000-07:00|Change|40022567||||||||||||| +21|2023-10-06T20:26:41.7570000-07:00|40022569|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.00|100.00|0.00|0.00|0001AE11|0|0| +21|2023-10-06T20:26:41.7570000-07:00|4002256B|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|88.00|0.00|0.00|0001AE12|0|0| +21|2023-10-06T20:26:41.7570000-07:00|4002256D|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE13|0|0| +261|2023-10-06T20:26:41.3680000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:26:41.3680000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:26:41.3680000-07:00|Change|4002256D||||||||||||| +21|2023-10-06T20:26:41.8010000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|750003|749F0000|4|24B98000|0|0|0|0|0|0|0|0|0|0|0|0|18255608|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||85.65|86.11|0.00|1.97|0001AE14|0|1| +38|2023-10-06T20:26:41.8010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|13||85.65|86.11|0.00|1.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:41.8010000-07:00|558|Requiescat|21.81|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +30|2023-10-06T20:26:41.8010000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:26:41.8010000-07:00|10FF0001||||| +261|2023-10-06T20:26:41.3680000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:26:41.3680000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:26:41.8920000-07:00|40022550|Zeromus|0001AE09|18247450||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:41.8920000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.14| +24|2023-10-06T20:26:41.8920000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2855|127791|127791|6400|10000|||85.65|86.11|0.00|1.97|10FF0001|Sesuga Sapisuga|0|127791|127791|6400|10000|||85.65|86.11|0.00|1.97| +24|2023-10-06T20:26:41.8920000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|17B4|80739|80739|2050|10000|||84.61|85.12|0.00|1.05|10FF0004|Buhojaqe Zijaqe|0|80739|80739|2050|10000|||84.61|85.12|0.00|1.05| +38|2023-10-06T20:26:41.8920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|13||85.65|86.11|0.00|1.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:41.8920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|2050|10000|12||84.61|85.12|0.00|1.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:41.9360000-07:00|40022550|Zeromus|0001AE0A|18243310||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:41.5510000-07:00|Change|40022AE2||| +24|2023-10-06T20:26:41.9820000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|116F|90055|90055|8200|10000|||84.67|86.53|-0.02|-2.72|10FF0005|Wuwuchu Wuchu|0|90055|90055|8200|10000|||84.67|86.53|-0.02|-2.72| +38|2023-10-06T20:26:41.9820000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8200|10000|11||84.67|86.53|-0.02|-2.72|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:26:41.6450000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:26:42.0250000-07:00|40022550|Zeromus|0001AE0D|18240431||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:42.0250000-07:00|10FF0006|Wowobora Gogobora|HoT|0|178E|80739|80739|4745|10000|||84.58|85.83|0.00|-1.49|40022A9F|Demi-Phoenix|0|0|75851|0|10000|||101.85|101.73|0.00|-3.06| +38|2023-10-06T20:26:42.0250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4745|10000|21||84.58|85.83|0.00|-1.49|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:26:42.1140000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18243310|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4745|10000|||84.58|85.83|0.00|-1.49|0001AE15|0|1| +261|2023-10-06T20:26:41.7660000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:42.2030000-07:00|40022550|Zeromus|0001AE0E|18240191||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:42.2030000-07:00|40022550|Zeromus|0001AE0C|18231393||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:42.2470000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|9800|10000|||84.81|85.58|0.00|1.91| +20|2023-10-06T20:26:42.2930000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|84.11|86.44|-0.02|-0.49| +21|2023-10-06T20:26:42.2930000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18231393|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5250|10000|||86.59|86.47|0.00|2.02|0001AE16|0|1| +39|2023-10-06T20:26:42.3820000-07:00|10FF0003|Gegehi Gehi|73085|73085|5450|10000|||86.59|86.47|0.00|2.02| +21|2023-10-06T20:26:42.3820000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|18231393|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4745|10000|||84.53|85.65|0.00|-2.22|0001AE17|0|1| +38|2023-10-06T20:26:42.3820000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4345|10000|21||84.53|85.65|0.00|-2.22|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:42.3820000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +04|2023-10-06T20:26:41.9920000-07:00|40022A9F|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|0|75851|0|10000|||101.85|101.73|0.00|-3.06| +261|2023-10-06T20:26:41.9920000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:26:41.9920000-07:00|Remove|40022A9F| +37|2023-10-06T20:26:42.4270000-07:00|40022550|Zeromus|0001AE14|18201538||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:42.4270000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|720003|27CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18231393|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8000|10000|||83.15|91.19|0.00|1.94|0001AE18|0|1| +21|2023-10-06T20:26:42.4270000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|27130000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|18231393|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5250|10000|||86.59|86.47|0.00|2.02|0001AE19|0|1| +38|2023-10-06T20:26:42.4270000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|14||86.59|86.47|0.00|2.02|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:42.4270000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:42.1080000-07:00|Change|10FF0003||| +39|2023-10-06T20:26:42.4720000-07:00|10FF0002|Suchichi Suchi|90128|90128|8200|10000|||83.12|91.07|0.00|2.14| +21|2023-10-06T20:26:42.5150000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|30F10000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|18201538|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8200|10000|||84.67|86.53|0.00|-2.72|0001AE1A|0|1| +261|2023-10-06T20:26:42.1080000-07:00|Change|10FF0002||||||||||| +24|2023-10-06T20:26:42.5600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|4613|128564|128564|9800|10000|||84.75|85.47|0.00|1.84|10FF0007|Kehabiqo Febiqo|0|128564|128564|9800|10000|||84.75|85.47|0.00|1.84| +24|2023-10-06T20:26:42.5600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|121E|79111|79111|8800|10000|||83.91|87.11|0.00|1.97|40022A9F||0||||||||||| +38|2023-10-06T20:26:42.5600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9800|10000|20||84.75|85.47|0.00|1.84|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:42.5600000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:42.5600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8800|10000|21||83.91|87.11|0.00|1.97|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:26:42.6050000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|783B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18201538|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9800|10000|||84.75|85.47|0.00|1.84|0001AE1B|0|1| +38|2023-10-06T20:26:42.6050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9800|10000|20||84.75|85.47|0.00|1.84|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:42.6050000-07:00|499|Inner Release|8.94|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +37|2023-10-06T20:26:42.6490000-07:00|40022550|Zeromus|0001AE15|18201501||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:42.7380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18201538|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6400|10000|||85.94|86.02|0.00|1.77|0001AE1C|0|1| +31|2023-10-06T20:26:42.7380000-07:00|10FF0001||||| +37|2023-10-06T20:26:42.8270000-07:00|40022550|Zeromus|0001AE16|18201500||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:42.8710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|13||86.37|86.04|0.00|1.52|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:42.8710000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:26:42.5150000-07:00|Change|40022ADA||| +21|2023-10-06T20:26:42.9610000-07:00|40022AE2|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|454003|788A0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|18201500|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||81.91|91.07|0.00|2.03|0001AE1D|0|1| +39|2023-10-06T20:26:43.0050000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6600|10000|||86.97|86.07|0.00|1.51| +261|2023-10-06T20:26:42.6260000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:26:43.0510000-07:00|40022550|Zeromus|0001AE1A|18188971||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:42.6260000-07:00|Change|10FF0004||||||||||||||||||| +24|2023-10-06T20:26:43.1400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|151B|128564|128564|9800|10000|||87.21|85.81|0.00|1.56|10FF0006|Wowobora Gogobora|0|80739|80739|4345|10000|||84.46|85.34|0.00|1.81| +37|2023-10-06T20:26:43.1400000-07:00|40022550|Zeromus|0001AE17|18188971|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:26:43.1400000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:26:43.1400000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|720003|CCB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18188971|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5150|10000|||86.59|86.47|0.00|2.02|0001AE1E|0|1| +21|2023-10-06T20:26:43.1400000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|C610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18188971|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8200|10000|||84.67|86.53|0.00|1.97|0001AE1F|0|1| +38|2023-10-06T20:26:43.1400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9800|10000|20||87.21|85.81|0.00|1.56|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:43.1840000-07:00|40022550|Zeromus|0001AE18|18178783||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:43.1840000-07:00|40022550|Zeromus|0001AE19|18168780||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:43.1840000-07:00|40022550|Zeromus|DoT|0|1AAB|18188971|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|8200|10000|||84.67|86.53|0.00|1.97| +21|2023-10-06T20:26:43.1840000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|714003|31EC0000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|18188971|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8200|10000|||84.67|86.53|0.00|1.97|0001AE20|0|1| +38|2023-10-06T20:26:43.1840000-07:00|40022550|Zeromus|005A5A00|18161953|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:26:43.1840000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8200|10000|11||84.67|86.53|0.00|1.97|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:43.1840000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +37|2023-10-06T20:26:43.2280000-07:00|40022550|Zeromus|0001AE1B|18131174||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:43.2280000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|22720000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18188971|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|2050|10000|||83.63|86.47|0.00|1.94|0001AE21|0|1| +261|2023-10-06T20:26:42.8600000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T20:26:43.2730000-07:00|40022550|Zeromus|0001AE1C|18128952||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:43.3610000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|31480000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|18128952|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8800|10000|||85.66|86.95|0.00|1.73|0001AE22|0|1| +38|2023-10-06T20:26:43.3610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8500|10000|21||85.66|86.95|0.00|1.73|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:43.3610000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:26:42.9720000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:26:43.4060000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|C0F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18128952|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8200|10000|||86.64|90.60|0.00|1.66|0001AE23|0|1| +39|2023-10-06T20:26:43.4950000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4550|10000|||85.26|85.55|0.00|1.39| +261|2023-10-06T20:26:43.0830000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:26:43.2880000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:26:43.6740000-07:00|40022550|Zeromus|0001AE1F|18125783||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:43.6740000-07:00|10FF0005|Wuwuchu Wuchu|0001AE1F|90055|90055|8200|10000|11||84.67|86.53|0.00|2.74|2700|0|0|01|05000A1B|01|C1F00000|| +37|2023-10-06T20:26:43.7180000-07:00|40022550|Zeromus|0001AE20|18113003||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:43.7180000-07:00|10FF0005|Wuwuchu Wuchu|0001AE20|90055|90055|8200|10000|11||84.69|86.54|-0.02|2.95|2700|0|0|01|05000A1B|01|41F00000|| +38|2023-10-06T20:26:43.7180000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8200|10000|11||84.69|86.54|-0.02|2.95|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:26:43.7640000-07:00|40022550|Zeromus|0001AE1E|18109728||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:43.7640000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35720003|1D4F0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|18125783|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8200|10000|||88.64|90.55|-0.02|1.61|0001AE24|0|1| +261|2023-10-06T20:26:43.4800000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:26:43.4800000-07:00|Change|10FF0005||||||||||| +39|2023-10-06T20:26:43.8960000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|8400|10000|||84.81|86.58|0.00|2.80| +37|2023-10-06T20:26:43.9410000-07:00|40022550|Zeromus|0001AE23|18106641||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:43.9870000-07:00|40022550|Zeromus|0001AE22|18094025||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:43.9870000-07:00|10FF0008|Kokosaze Lulusaze|0001AE22|79111|79111|8500|10000|21||86.68|86.88|0.00|1.98|1B00|0|0|01|03000B25|0|0|| +21|2023-10-06T20:26:43.9870000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|17830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18109728|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8500|10000|||86.68|86.88|0.00|1.98|0001AE25|0|1| +38|2023-10-06T20:26:43.9870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8500|10000|21||86.68|86.88|0.00|1.98|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:43.9870000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:26:43.6660000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:26:43.6660000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:44.0320000-07:00|40022550|Zeromus|0001AE21|18085207||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:44.0320000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8700|10000|||88.17|86.82|0.00|2.16| +21|2023-10-06T20:26:44.1200000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|724003|173D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18094025|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5150|10000|||88.10|86.66|0.00|1.75|0001AE26|0|1| +261|2023-10-06T20:26:43.7790000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T20:26:44.1650000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|1850|10000|||89.05|86.35|0.00|1.57| +261|2023-10-06T20:26:43.8980000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:26:44.3880000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|750003|590C0000|4|24F58000|0|0|0|0|0|0|0|0|0|0|0|0|18085207|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||95.26|86.89|0.00|1.46|0001AE27|0|1| +21|2023-10-06T20:26:44.3880000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18085207|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|1850|10000|||89.83|86.38|0.00|1.56|0001AE28|0|1| +38|2023-10-06T20:26:44.3880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|13||95.26|86.89|0.00|1.46|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:44.3880000-07:00|558|Requiescat|19.22|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:26:44.3880000-07:00|10FF0001||||| +21|2023-10-06T20:26:44.4320000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|8200|10000|||90.32|90.51|0.00|2.27|90128|90128|8200|10000|||90.32|90.51|0.00|2.27|0001AE29|0|1| +38|2023-10-06T20:26:44.4320000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8200|10000|11||90.32|90.51|0.00|2.27|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:44.4320000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:26:44.6550000-07:00|10FF0002|Suchichi Suchi|HoT|0|18E2|90128|90128|8200|10000|||92.19|90.43|0.00|1.59|40022A9F||0||||||||||| +38|2023-10-06T20:26:44.6550000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8200|10000|11||92.19|90.43|0.00|1.59|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:44.2530000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:26:44.3510000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:26:44.3510000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:26:44.7000000-07:00|40022550|Zeromus|0001AE26|18079258||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:44.7000000-07:00|10FF0003|Gegehi Gehi|HoT|0|120A|73085|73085|5150|10000|||91.50|87.08|-0.01|1.53|40022A9F||0||||||||||| +21|2023-10-06T20:26:44.7000000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|752003|298F0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|18085207|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|1850|10000|||92.32|86.49|-0.01|1.53|0001AE2A|0|1| +38|2023-10-06T20:26:44.7000000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|14||91.50|87.08|-0.01|1.53|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:44.7430000-07:00|40022550|Zeromus|0001AE25|18073239||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:44.7880000-07:00|40022550|Zeromus|0001AE24|18065736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:44.7880000-07:00|10FF0002|Suchichi Suchi|0001AE24|90128|90128|8200|10000|11||92.55|90.41|0.00|1.59|1600|0|0|01|06000074|0|C0A00000|| +21|2023-10-06T20:26:44.7880000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18073239|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8700|10000|||92.12|86.74|-0.02|1.81|0001AE2B|0|1| +04|2023-10-06T20:26:44.4530000-07:00|40022ADA|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||86.17|89.62|0.00|-2.21| +261|2023-10-06T20:26:44.4530000-07:00|Remove|40022ADA| +39|2023-10-06T20:26:44.8770000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.14| +24|2023-10-06T20:26:44.8770000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2D4F|127791|127791|5600|10000|||97.87|87.19|0.00|1.46|10FF0001|Sesuga Sapisuga|0|127791|127791|5600|10000|||97.87|87.19|0.00|1.46| +24|2023-10-06T20:26:44.8770000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|18B5|80739|80739|1450|10000|||93.07|86.53|0.00|2.36|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||93.07|86.53|0.00|2.36| +21|2023-10-06T20:26:44.8770000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18073239|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9800|10000|||97.33|86.50|0.00|1.56|0001AE2C|0|1| +38|2023-10-06T20:26:44.8770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|13||97.87|87.19|0.00|1.46|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:44.8770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1450|10000|12||93.07|86.53|0.00|2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:44.9210000-07:00|40022550|Zeromus|0001AE28|18065617||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:44.9210000-07:00|40022550|Zeromus|0001AE1D|18034759||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:44.9210000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18065736|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4550|10000|||93.84|86.80|0.00|1.58|0001AE2D|0|1| +261|2023-10-06T20:26:44.5550000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:26:44.5550000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:26:44.5550000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:44.9660000-07:00|10FF0002|Suchichi Suchi|0001AE29|90128|90128|8200|10000|11||92.89|90.41|0.00|1.59|1600|0|0|01|06000074|0|40A00000|| +24|2023-10-06T20:26:44.9660000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1520|90055|90055|8400|10000|||85.94|87.08|0.00|1.16|10FF0005|Wuwuchu Wuchu|0|90055|90055|8400|10000|||85.94|87.08|0.00|1.16| +38|2023-10-06T20:26:44.9660000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8200|10000|11||92.89|90.41|0.00|1.59|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:44.9660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8400|10000|11||85.94|87.08|0.00|1.16|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:26:45.0110000-07:00|40022550|Zeromus|0001AE27|18011963||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:45.0110000-07:00|10FF0006|Wowobora Gogobora|HoT|0|11C8|80739|80739|4550|10000|||94.57|86.77|0.00|1.61|40022A9F||0||||||||||| +21|2023-10-06T20:26:45.0110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|A150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18034759|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5600|10000|||99.17|87.36|0.00|1.43|0001AE2E|0|1| +38|2023-10-06T20:26:45.0110000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4550|10000|21||94.57|86.77|0.00|1.61|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:45.0110000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +31|2023-10-06T20:26:45.0110000-07:00|10FF0001||||| +21|2023-10-06T20:26:45.0550000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|78FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18034759|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|9800|10000|||98.57|85.85|0.00|2.14|0001AE2F|0|1| +38|2023-10-06T20:26:45.0550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|9800|10000|20||98.57|85.85|0.00|2.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:45.0550000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:26:45.0550000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +261|2023-10-06T20:26:44.7660000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:26:45.1440000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|129B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18011963|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5600|10000|||99.62|87.42|0.00|3.08|0001AE30|0|1| +21|2023-10-06T20:26:45.1440000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B710003|35F60000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|18011963|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8400|10000|||86.08|87.15|0.00|1.07|0001AE31|0|1| +38|2023-10-06T20:26:45.1440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8400|10000|11||86.08|87.15|0.00|1.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:45.1440000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:26:45.1440000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:26:45.1440000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:26:45.2330000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.06|85.37|0.00|2.98| +37|2023-10-06T20:26:45.3230000-07:00|40022550|Zeromus|0001AE2B|18011720||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:45.0070000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:26:45.3680000-07:00|10FF0003|Gegehi Gehi|73085|73085|5350|10000|||95.30|87.53|0.00|1.46| +261|2023-10-06T20:26:45.0070000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:26:45.4130000-07:00|40022550|Zeromus|0001AE2C|18008886||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:45.4130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|13||99.62|87.42|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:45.4130000-07:00|13B|Whispering Dawn|0.00|40022A88|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:26:45.4570000-07:00|40022550|Zeromus|0001AE2D|18008851||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:45.4570000-07:00|10FF0002|Suchichi Suchi|90128|90128|8400|10000|||97.83|90.09|0.00|1.69| +261|2023-10-06T20:26:45.1190000-07:00|Change|10FF0002||||||||||| +37|2023-10-06T20:26:45.5460000-07:00|40022550|Zeromus|0001AE2E|18006270||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:45.5460000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|4AC6|128564|128564|10000|10000|||99.21|84.89|-0.02|3.00|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||99.21|84.89|-0.02|3.00| +24|2023-10-06T20:26:45.5460000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1210|79111|79111|8700|10000|||97.56|86.61|0.00|1.59|40022A9F||0||||||||||| +38|2023-10-06T20:26:45.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||99.21|84.89|-0.02|3.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:45.5460000-07:00|13B|Whispering Dawn|0.00|40022A88|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:26:45.5460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8700|10000|21||97.56|86.61|0.00|1.59|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:26:45.6340000-07:00|40022550|Zeromus|0001AE2A|17995631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:45.6340000-07:00|40022550|Zeromus|0001AE31|17981817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:45.6340000-07:00|10FF0005|Wuwuchu Wuchu|0001AE31|90055|90055|8400|10000|11||88.50|87.28|0.00|1.80|2700|0|0|01|05000A1C|0|42700000|| +38|2023-10-06T20:26:45.6340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||99.21|84.89|-0.02|3.00|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:45.6340000-07:00|A91|Undying Flame|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:26:45.6340000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8400|10000|11||88.50|87.28|0.00|1.80|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:26:45.2370000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:26:45.2370000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:26:45.6790000-07:00|40022550|Zeromus|0001AE2F|17950843||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:45.6790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8400|10000|11||89.73|87.33|0.00|1.65|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:45.6790000-07:00|13B|Whispering Dawn|0.00|40022A88|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:26:45.7230000-07:00|40022550|Zeromus|0001AE30|17946080||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:26:45.7230000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.64|87.47|0.00|1.44| +21|2023-10-06T20:26:45.7680000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17946080|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5350|10000|||98.05|87.87|0.00|1.45|0001AE32|0|1| +21|2023-10-06T20:26:45.8130000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|342C0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|17946080|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8700|10000|||98.87|86.65|0.00|1.47|0001AE33|0|1| +38|2023-10-06T20:26:45.8130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|21||98.87|86.65|0.00|1.47|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:45.8130000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +30|2023-10-06T20:26:45.8130000-07:00|13B|Whispering Dawn|0.00|40022A88|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +20|2023-10-06T20:26:45.8560000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|98.67|87.95|0.00|1.45| +38|2023-10-06T20:26:45.9460000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8400|10000|11||100.33|88.96|0.00|2.54|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:45.9460000-07:00|13B|Whispering Dawn|0.00|40022A88|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +261|2023-10-06T20:26:45.6190000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T20:26:46.0350000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5800|10000|||99.62|87.42|0.00|3.08| +21|2023-10-06T20:26:46.0350000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|714003|15890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17946080|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.61|84.58|0.00|-3.08|0001AE34|0|1| +38|2023-10-06T20:26:46.0810000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4550|10000|21||99.37|87.61|0.00|2.77|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:46.0810000-07:00|13B|Whispering Dawn|0.00|40022A88|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +261|2023-10-06T20:26:45.7120000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:26:45.7120000-07:00|Change|10FF0006||||||||||||||||||| +24|2023-10-06T20:26:46.2140000-07:00|40022550|Zeromus|DoT|0|1B12|17946080|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|8400|10000|||93.46|87.03|0.00|1.64| +21|2023-10-06T20:26:46.2140000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|BC10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17946080|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8400|10000|||100.44|87.46|-0.02|2.93|0001AE35|0|1| +38|2023-10-06T20:26:46.2140000-07:00|40022550|Zeromus|005A5A00|17939150|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:26:46.2140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1450|10000|12||100.69|85.52|-0.02|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:46.2140000-07:00|13B|Whispering Dawn|0.00|40022A88|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +21|2023-10-06T20:26:46.2580000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F726003|6B1F0000|104|14048000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|17946080|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8400|10000|||100.44|87.46|-0.02|2.93|0001AE36|0|1| +38|2023-10-06T20:26:46.2580000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8400|10000|11||100.44|87.46|-0.02|2.93|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:46.2580000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:26:46.2580000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:26:46.3020000-07:00|40022550|Zeromus|0001AE32|17939149||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:46.3470000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|C560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17939150|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8400|10000|||94.09|86.87|0.00|1.67|0001AE37|0|1| +38|2023-10-06T20:26:46.3470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|14||99.11|88.00|-0.01|2.93|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:46.3470000-07:00|13B|Whispering Dawn|0.00|40022A88|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +261|2023-10-06T20:26:46.0610000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T20:26:46.4360000-07:00|40022550|Zeromus|0001AE33|17925793||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:46.4360000-07:00|10FF0008|Kokosaze Lulusaze|0001AE33|79111|79111|8400|10000|21||100.36|86.87|0.00|-3.09|1B00|0|0|01|03000B25|0|0|| +21|2023-10-06T20:26:46.4360000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|18810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17939149|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8400|10000|||100.36|86.87|0.00|-3.09|0001AE38|0|1| +38|2023-10-06T20:26:46.4360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|21||100.36|86.87|0.00|-3.09|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:46.4360000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:26:46.0610000-07:00|Change|10FF0005||||||||| +38|2023-10-06T20:26:46.4810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|14||99.14|88.00|0.00|3.04|0|0|0|||||||||| +30|2023-10-06T20:26:46.4810000-07:00|74C|Everlasting Flight|0.00|40022A9F|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73085|| +39|2023-10-06T20:26:46.5250000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4755|10000|||99.47|87.63|0.00|3.07| +38|2023-10-06T20:26:46.6150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1450|10000|12||100.51|85.14|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:46.6150000-07:00|74C|Everlasting Flight|0.00|40022A9F|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|80739|| +37|2023-10-06T20:26:46.6600000-07:00|40022550|Zeromus|0001AE34|17920280||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:46.6600000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.63|84.56|0.00|3.07|128564|128564|10000|10000|||99.63|84.56|0.00|3.07|0001AE39|0|1| +21|2023-10-06T20:26:46.6600000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|756003|714E0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|17925793|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4755|10000|||99.47|87.63|0.00|3.07|0001AE3A|0|1| +38|2023-10-06T20:26:46.6600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||99.63|84.56|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:46.6600000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:26:46.2830000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:26:46.7500000-07:00|40022550|Zeromus|0001AE35|17917271||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:46.7500000-07:00|10FF0002|Suchichi Suchi|0001AE35|90128|90128|8400|10000|11||100.29|85.59|0.00|-3.11|1600|0|0|01|05000322|0|C1F00000|| +21|2023-10-06T20:26:46.7500000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.64|84.56|0.00|3.07|17920280|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AE3B|0|1| +38|2023-10-06T20:26:46.7500000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4355|10000|21||99.47|87.63|0.00|3.07|0|0|0||||||||||||| +30|2023-10-06T20:26:46.7500000-07:00|74C|Everlasting Flight|0.00|40022A9F|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|80739|| +261|2023-10-06T20:26:46.3730000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:26:46.3730000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:26:46.7940000-07:00|4002255D|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|83.50|0.00|0.00|0001AE3C|0|0| +21|2023-10-06T20:26:46.7940000-07:00|4002255F|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|83.50|0.00|0.00|0001AE3D|0|0| +21|2023-10-06T20:26:46.7940000-07:00|40022561|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.00|100.00|0.00|0.00|0001AE3E|0|0| +21|2023-10-06T20:26:46.7940000-07:00|40022563|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|112.00|0.00|0.00|0001AE3F|0|0| +261|2023-10-06T20:26:46.4680000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:26:46.4680000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:26:46.4680000-07:00|Change|40022561||||||||||||| +261|2023-10-06T20:26:46.4680000-07:00|Change|4002255F||||||||||||| +20|2023-10-06T20:26:46.8390000-07:00|40022550|Zeromus|8B38|Sable Thread|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:46.8390000-07:00|4002256E|Zeromus|8AEF|unknown_8aef|10FF0004|Buhojaqe Zijaqe|1B|8AEF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|1450|10000|||100.42|85.03|-0.02|-1.86|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE40|0|1| +261|2023-10-06T20:26:46.4680000-07:00|Change|40022550||||||||||||| +37|2023-10-06T20:26:46.8830000-07:00|40022550|Zeromus|0001AE37|17914113||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:46.8840000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|8600|10000|||97.15|86.16|0.00|1.80| +21|2023-10-06T20:26:46.8840000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|750003|6A4C0000|4|26638000|0|0|0|0|0|0|0|0|0|0|0|0|17917271|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||99.62|87.42|0.00|3.09|0001AE41|0|1| +38|2023-10-06T20:26:46.8840000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|21||100.36|86.87|0.00|-3.09|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:46.8840000-07:00|74C|Everlasting Flight|0.00|40022A9F|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|79111|| +38|2023-10-06T20:26:46.8840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4800|10000|13||99.62|87.42|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:46.8840000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +30|2023-10-06T20:26:46.8840000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:26:46.8840000-07:00|10FF0001||||| +37|2023-10-06T20:26:46.9720000-07:00|40022550|Zeromus|0001AE36|17886690||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:46.9720000-07:00|10FF0002|Suchichi Suchi|0001AE36|90128|90128|8400|10000|11||100.23|84.92|0.00|-3.12|1600|0|0|01|05000322|0|41F00000|| +38|2023-10-06T20:26:46.9720000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8400|10000|11||100.23|84.92|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:46.5690000-07:00|Change|40022AE2||||| +38|2023-10-06T20:26:47.0180000-07:00|40022AFB||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +39|2023-10-06T20:26:47.0180000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8600|10000|||100.36|86.87|0.00|-3.09| +38|2023-10-06T20:26:47.0180000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8400|10000|11||100.23|84.92|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:47.0180000-07:00|74C|Everlasting Flight|0.00|40022A9F|Demi-Phoenix|10FF0002|Suchichi Suchi|00|90128|| +38|2023-10-06T20:26:47.0180000-07:00|40022AFB||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +20|2023-10-06T20:26:47.0620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.33|84.97|0.00|-1.76| +261|2023-10-06T20:26:46.6830000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T20:26:47.1510000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|1650|10000|||100.30|84.95|0.00|-2.06| +38|2023-10-06T20:26:47.1510000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8600|10000|11||98.79|85.54|0.00|1.89|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:47.1510000-07:00|74C|Everlasting Flight|0.00|40022A9F|Demi-Phoenix|10FF0005|Wuwuchu Wuchu|00|90055|| +261|2023-10-06T20:26:46.6830000-07:00|Change|10FF0001||||| +261|2023-10-06T20:26:46.8010000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:26:47.1960000-07:00|10FF0007|Kehabiqo Febiqo|0001AE39|128564|128564|10000|10000|20||99.69|84.52|-0.02|3.07|1500|0|0|01|04000769|0|41F00000|| +37|2023-10-06T20:26:47.1960000-07:00|40022550|Zeromus|0001AE38|17880417||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:47.1960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||99.69|84.52|-0.02|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:47.1960000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:26:46.8010000-07:00|Add|40022AFB||||||||||||||||||||||||||||| +03|2023-10-06T20:26:46.8010000-07:00|40022AFB|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||100.27|85.15|0.00|0.05| +261|2023-10-06T20:26:46.8010000-07:00|Change|40022AFB||||||||||||||||| +261|2023-10-06T20:26:46.8010000-07:00|Change|40022AFB||| +21|2023-10-06T20:26:47.2860000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|80F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17880417|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|4800|10000|||99.62|87.42|0.00|3.09|0001AE42|0|1| +21|2023-10-06T20:26:47.2860000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|752003|33F80000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|17880417|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5350|10000|||99.14|88.00|0.00|3.04|0001AE43|0|1| +38|2023-10-06T20:26:47.2860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|14||99.14|88.00|0.00|3.04|0|0|0||||||||||||| +26|2023-10-06T20:26:47.2860000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:26:47.2860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||99.69|84.52|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:47.2860000-07:00|74C|Everlasting Flight|0.00|40022A9F|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|128564|| +31|2023-10-06T20:26:47.2860000-07:00|10FF0001||||| +24|2023-10-06T20:26:47.3300000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1502|128564|128564|10000|10000|||99.69|84.52|0.00|3.07|10FF0006|Wowobora Gogobora|0|80739|80739|4355|10000|||99.49|86.85|0.00|3.03| +37|2023-10-06T20:26:47.3300000-07:00|40022550|Zeromus|0001AE3A|17851411||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:47.3300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||99.69|84.52|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:47.4180000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8400|10000|11||100.21|84.70|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:47.4180000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:26:47.4180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4800|10000|13||99.62|87.42|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:47.4180000-07:00|74C|Everlasting Flight|0.00|40022A9F|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|127791|| +261|2023-10-06T20:26:47.0250000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:26:47.0250000-07:00|Change|10FF0005||||||||||| +21|2023-10-06T20:26:47.5070000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|97360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17851411|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.69|84.52|0.00|3.07|0001AE44|0|1| +38|2023-10-06T20:26:47.5070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||99.69|84.52|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:47.5070000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:26:47.5510000-07:00|10FF0007|Kehabiqo Febiqo|0001AE3B|128564|128564|10000|10000|6||99.69|84.52|0.00|3.07|1500|0|0|01|0A000000|0|0|| +38|2023-10-06T20:26:47.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.69|84.52|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:47.5510000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:26:47.2590000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T20:26:47.5960000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|21430000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|17851411|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8600|10000|||99.71|85.25|-0.02|2.36|0001AE45|0|1| +261|2023-10-06T20:26:47.3560000-07:00|Change|10FF0008||| +37|2023-10-06T20:26:47.7740000-07:00|40022550|Zeromus|0001AE41|17824199||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:47.8190000-07:00|40022550|Zeromus|0001AE42|17822136||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:47.8640000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.14| +21|2023-10-06T20:26:47.9520000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|E10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17822136|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8600|10000|||100.27|86.87|0.00|-2.37|0001AE46|0|1| +21|2023-10-06T20:26:47.9980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|24D60000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|17822136|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|1650|10000|||100.21|84.89|0.00|-3.09|0001AE47|0|1| +261|2023-10-06T20:26:47.6380000-07:00|Change|40022AFB||| +37|2023-10-06T20:26:48.0420000-07:00|40022550|Zeromus|0001AE43|17808832||||||100.00|80.10|0.00|0.00| +34|2023-10-06T20:26:48.0420000-07:00|40022AFB|Carbuncle|40022AFB|Carbuncle|01| +37|2023-10-06T20:26:48.0860000-07:00|40022550|Zeromus|0001AE45|17800317||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:48.1740000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4355|10000|21||99.10|88.40|0.00|-0.31|0|0|0||||||||||||| +26|2023-10-06T20:26:48.1740000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:48.1740000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:26:48.1740000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4355|10000|||99.10|88.40|0.00|-0.31|80739|80739|4355|10000|||99.10|88.40|0.00|-0.31|0001AE48|0|1| +39|2023-10-06T20:26:48.2630000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.73|85.24|0.00|0.32| +21|2023-10-06T20:26:48.2630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17800317|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.73|85.24|0.00|0.32|0001AE49|0|1| +21|2023-10-06T20:26:48.2630000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|31B10000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|17800317|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5150|10000|||99.50|88.08|0.00|0.99|0001AE4A|0|1| +38|2023-10-06T20:26:48.2630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4850|10000|14||99.50|88.08|0.00|0.99|0|0|0|||||||||| +30|2023-10-06T20:26:48.2630000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:26:48.3080000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|32600000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|17800317|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8600|10000|||100.12|87.47|0.00|-2.47|0001AE4B|0|1| +38|2023-10-06T20:26:48.3080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8300|10000|21||100.12|87.47|0.00|-2.47|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:48.3080000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:26:48.0820000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:26:48.3530000-07:00|10FF0003|Gegehi Gehi|73085|73085|5050|10000|||99.55|88.37|-0.02|2.80| +37|2023-10-06T20:26:48.4420000-07:00|40022550|Zeromus|0001AE44|17761607||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:48.4420000-07:00|10FF0002|Suchichi Suchi|90128|90128|8600|10000|||100.26|88.73|0.00|0.05| +261|2023-10-06T20:26:48.0820000-07:00|Change|10FF0002||||||||||| +37|2023-10-06T20:26:48.4870000-07:00|40022550|Zeromus|0001AE46|17761382||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:48.4870000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17761607|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|1250|10000|||100.21|84.91|0.00|-1.07|0001AE4C|0|1| +24|2023-10-06T20:26:48.5310000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1342|128564|128564|10000|10000|||99.84|86.91|-0.02|0.17|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||99.84|86.91|-0.02|0.17| +38|2023-10-06T20:26:48.5310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.84|86.91|-0.02|0.17|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:48.5310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8300|10000|21||99.97|89.07|-0.02|2.95|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:26:48.2010000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:26:48.6200000-07:00|10FF0005|Wuwuchu Wuchu|5F54|Arcane Crest|10FF0005|Wuwuchu Wuchu|F2D0F|A258000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|8600|10000|||100.00|85.75|0.00|-3.08|90055|90055|8600|10000|||100.00|85.75|0.00|-3.08|0001AE4D|0|1| +38|2023-10-06T20:26:48.6200000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8600|10000|21||100.00|85.75|0.00|-3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:48.6200000-07:00|A25|Crest of Time Borrowed|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:26:48.7090000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17761382|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4355|10000|||99.48|89.86|0.00|0.26|0001AE4E|0|1| +38|2023-10-06T20:26:48.7090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1250|10000|12||100.25|86.26|0.00|-0.50|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:48.7090000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +261|2023-10-06T20:26:48.3840000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:26:48.7540000-07:00|10FF0005|Wuwuchu Wuchu|0001AE4D|90055|90055|8600|10000|21||100.06|86.45|0.00|-3.05|2700|0|0|01|06000A25|0|40A00000|| +21|2023-10-06T20:26:48.7540000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D722003|325E0000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|17761382|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8600|10000|||100.29|91.46|0.00|0.01|0001AE4F|0|1| +38|2023-10-06T20:26:48.7540000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8600|10000|11||100.29|91.46|0.00|0.01|0|0|0|||||||||||||||| +26|2023-10-06T20:26:48.7540000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:26:48.7540000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:26:48.7540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8600|10000|21||100.06|86.45|0.00|-3.05|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:48.8000000-07:00|40022550|Zeromus|0001AE49|17758511||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:48.8000000-07:00|40022550|Zeromus|0001AE47|17749081||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:48.8000000-07:00|40022A88|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0||||||| +26|2023-10-06T20:26:48.8000000-07:00|7AC|Summon Order II|30.00|40022A88|Ruby Carbuncle|40022A88|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:26:48.8000000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|1250|10000|||100.29|87.23|0.00|-0.24|80739|80739|1250|10000|||100.29|87.23|0.00|-0.24|0001AE50|0|1| +261|2023-10-06T20:26:48.4790000-07:00|Change|10FF0007||||||||| +22|2023-10-06T20:26:48.8870000-07:00|40022A88|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4355|10000|||99.49|90.09|0.00|0.24|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE51|0|8| +22|2023-10-06T20:26:48.8870000-07:00|40022A88|Ruby Carbuncle|325|Fey Illumination|10FF0002|Suchichi Suchi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|8600|10000|||100.30|91.96|0.00|-2.68|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE51|1|8| +22|2023-10-06T20:26:48.8870000-07:00|40022A88|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8300|10000|||99.84|91.85|0.00|0.34|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE51|2|8| +22|2023-10-06T20:26:48.8870000-07:00|40022A88|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5050|10000|||99.82|90.83|0.00|0.43|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE51|3|8| +22|2023-10-06T20:26:48.8870000-07:00|40022A88|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|4800|10000|||99.77|90.36|0.00|0.51|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE51|4|8| +22|2023-10-06T20:26:48.8870000-07:00|40022A88|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.94|89.76|0.00|0.05|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE51|5|8| +22|2023-10-06T20:26:48.8870000-07:00|40022A88|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|1250|10000|||100.30|87.74|0.00|-0.16|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE51|6|8| +22|2023-10-06T20:26:48.8870000-07:00|40022A88|Ruby Carbuncle|325|Fey Illumination|10FF0005|Wuwuchu Wuchu|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|8600|10000|||100.08|86.59|0.00|-3.05|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE51|7|8| +37|2023-10-06T20:26:48.9320000-07:00|40022550|Zeromus|0001AE4B|17736185||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:48.9320000-07:00|10FF0008|Kokosaze Lulusaze|0001AE4B|79111|79111|8300|10000|21||99.84|91.85|0.00|0.34|1B00|0|0|01|03000B25|0|0|| +21|2023-10-06T20:26:48.9320000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|17900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17749081|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8300|10000|||99.84|91.85|0.00|0.34|0001AE52|0|1| +38|2023-10-06T20:26:48.9320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8300|10000|21||99.84|91.85|0.00|0.34|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:26:48.9320000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:26:49.0200000-07:00|40022550|Zeromus|0001AE4C|17736114||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:49.0200000-07:00|40022550|Zeromus|0001AE4A|17723393||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:49.0200000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5000|10000|||99.77|90.36|0.00|0.51| +261|2023-10-06T20:26:48.5740000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:26:49.0210000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|AE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17723393|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8600|10000|||100.32|93.04|0.00|-1.07|0001AE53|0|1| +21|2023-10-06T20:26:49.0650000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|2E4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17723393|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5050|10000|||99.89|92.09|0.00|0.24|0001AE54|0|1| +261|2023-10-06T20:26:48.8060000-07:00|Change|10FF0006||||||||| +22|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|200004|13FF0000|FC000014|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|0001AE55|0|8| +22|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|C930000|3C000014|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|73085|73085|5050|10000|||99.93|92.70|0.00|3.14|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|0001AE55|1|8| +22|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|200004|14480000|E60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90128|90128|8600|10000|||100.32|93.32|0.00|-0.76|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|0001AE55|2|8| +22|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|4|CC90000|E9000014|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|79111|79111|8300|10000|||99.81|93.74|0.00|-2.47|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|0001AE55|3|8| +22|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|C4F0000|630E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.90|90.85|0.00|0.70|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|0001AE55|4|8| +22|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|C720000|D3000014|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|5000|10000|||100.03|90.82|0.00|0.51|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|0001AE55|5|8| +22|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|200004|14C30000|700E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|1250|10000|||100.35|89.31|0.00|-0.01|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|0001AE55|6|8| +22|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|CFC0000|8C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90055|90055|8600|10000|||100.06|87.04|0.00|-3.09|80739|80739|4355|10000|||100.00|92.74|0.00|0.15|0001AE55|7|8| +38|2023-10-06T20:26:49.1550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||99.90|90.85|0.00|0.70|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:49.1550000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:49.1550000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8600|10000|18||100.32|93.32|0.00|-0.76|0|0|0|||||||||||||||| +26|2023-10-06T20:26:49.1550000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:49.1550000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3455|10000|21||100.00|92.74|0.00|0.15|0|0|0||||||||||||| +30|2023-10-06T20:26:49.1550000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:49.1550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1250|10000|21||100.35|89.31|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:49.1550000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:49.1550000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8600|10000|21||100.06|87.04|0.00|-3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:49.1550000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:26:49.1990000-07:00|40022550|Zeromus|DoT|0|1B3B|17723393|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|8600|10000|||100.06|87.04|0.00|-3.09| +38|2023-10-06T20:26:49.1990000-07:00|40022550|Zeromus|005A5A00|17716422|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:26:49.2440000-07:00|40022550|Zeromus|0001AE4E|17716386||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:49.3780000-07:00|40022550|Zeromus|0001AE4F|17703492||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:49.3780000-07:00|10FF0002|Suchichi Suchi|0001AE4F|90128|90128|8600|10000|18||100.32|93.58|0.00|-0.50|1600|0|0|01|0323|0|41F00000|| +21|2023-10-06T20:26:49.3790000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|750003|33FB0000|4|25378000|0|0|0|0|0|0|0|0|0|0|0|0|17716386|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5000|10000|||100.10|90.94|0.00|0.61|0001AE56|0|1| +38|2023-10-06T20:26:49.3790000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8600|10000|18||100.32|93.58|0.00|-0.50|0|0|0|||||||||||||||| +31|2023-10-06T20:26:49.3790000-07:00|10FF0001||||| +261|2023-10-06T20:26:49.1530000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T20:26:49.4680000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8600|10000|18||100.33|93.90|-0.02|-0.28|0|0|0|||||||||||||||| +30|2023-10-06T20:26:49.4680000-07:00|2B|Weakness|0.00|E0000000||10FF0002|Suchichi Suchi|00|90128|| +261|2023-10-06T20:26:49.1530000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:26:49.5110000-07:00|10FF0006|Wowobora Gogobora|80739|80739|3660|10000|||100.20|93.82|0.00|0.11| +37|2023-10-06T20:26:49.5560000-07:00|40022550|Zeromus|0001AE53|17700705||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:49.5560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|DC70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17703492|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|4000|10000|||99.87|91.29|0.00|0.71|0001AE57|0|1| +21|2023-10-06T20:26:49.5560000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|13680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17703492|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8600|10000|||99.95|87.81|-0.02|3.10|0001AE58|0|1| +31|2023-10-06T20:26:49.5560000-07:00|10FF0001||||| +261|2023-10-06T20:26:49.1530000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:26:49.2680000-07:00|Change|40022AFB||||||||| +261|2023-10-06T20:26:49.3690000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:26:49.6890000-07:00|40022550|Zeromus|0001AE52|17694673||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:49.6890000-07:00|10FF0006|Wowobora Gogobora|0001AE51|80739|80739|3660|10000|21||100.20|93.86|0.00|0.00|2800|0|0|01|0100013D|0|41A00000|| +26|2023-10-06T20:26:49.6890000-07:00|13D|Fey Illumination|20.00|40022A88|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +37|2023-10-06T20:26:49.8230000-07:00|10FF0002|Suchichi Suchi|0001AE51|90128|90128|8600|10000|18||100.35|95.59|-0.02|-0.08|1601|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T20:26:49.8230000-07:00|13D|Fey Illumination|20.00|40022A88|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +38|2023-10-06T20:26:49.8230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||100.05|88.59|0.00|2.87|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:49.8230000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:26:49.8230000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +39|2023-10-06T20:26:49.8670000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|8800|10000|||99.81|89.02|0.00|3.05| +22|2023-10-06T20:26:49.8670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|0001AE59|0|8| +22|2023-10-06T20:26:49.8670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5050|10000|||99.84|96.42|-0.02|-0.84|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|0001AE59|1|8| +22|2023-10-06T20:26:49.8670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|1250|10000|||100.14|91.43|0.00|-0.21|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|0001AE59|2|8| +22|2023-10-06T20:26:49.8670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8300|10000|||99.78|97.93|0.00|-0.08|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|0001AE59|3|8| +22|2023-10-06T20:26:49.8670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|8600|10000|||100.35|96.25|0.00|-0.05|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|0001AE59|4|8| +22|2023-10-06T20:26:49.8670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|4000|10000|||99.44|92.83|0.00|1.20|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|0001AE59|5|8| +22|2023-10-06T20:26:49.8670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|8600|10000|||99.81|89.02|0.00|3.05|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|0001AE59|6|8| +22|2023-10-06T20:26:49.8670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.08|88.10|0.00|2.98|80739|80739|3660|10000|||100.20|94.08|0.00|-0.07|0001AE59|7|8| +261|2023-10-06T20:26:49.5700000-07:00|Change|10FF0005||||||||||| +37|2023-10-06T20:26:49.9550000-07:00|10FF0008|Kokosaze Lulusaze|0001AE51|79111|79111|8300|10000|21||99.78|97.93|0.00|-0.08|1B02|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T20:26:49.9550000-07:00|13D|Fey Illumination|20.00|40022A88|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +21|2023-10-06T20:26:49.9550000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|1FDB0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|17694673|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.08|88.10|0.00|2.98|0001AE5A|0|1| +261|2023-10-06T20:26:49.6690000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:26:50.0450000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8500|10000|||99.76|99.09|0.00|-0.04| +37|2023-10-06T20:26:50.0900000-07:00|10FF0003|Gegehi Gehi|0001AE51|73085|73085|5050|10000|14||99.60|98.00|0.00|-0.46|2303|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T20:26:50.0900000-07:00|13D|Fey Illumination|20.00|40022A88|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +37|2023-10-06T20:26:50.0900000-07:00|40022550|Zeromus|0001AE57|17691146||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:50.0900000-07:00|40022550|Zeromus|0001AE58|17686178||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:50.0900000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C710003|27E50000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|17694673|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8800|10000|||99.77|89.60|0.00|3.09|0001AE5B|0|1| +261|2023-10-06T20:26:49.7870000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:26:49.7870000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:26:50.1330000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|1450|10000|||100.04|93.42|0.00|-0.11| +21|2023-10-06T20:26:50.1780000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|712003|1C3F0000|13C00E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|17686178|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|4000|10000|||99.44|92.83|0.00|1.20|0001AE5C|0|1| +37|2023-10-06T20:26:50.2240000-07:00|10FF0001|Sesuga Sapisuga|0001AE51|127791|127791|4000|10000|13||99.44|92.83|0.00|1.20|1304|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T20:26:50.2240000-07:00|13D|Fey Illumination|20.00|40022A88|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:26:50.2240000-07:00|40022550|Zeromus|0001AE54|17674327||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:26:50.2240000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|FBA0F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|1250|10000|||100.04|93.42|0.00|-0.11|80739|80739|1250|10000|||100.04|93.42|0.00|-0.11|0001AE5D|0|1| +38|2023-10-06T20:26:50.2240000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1450|10000|21||100.04|93.42|0.00|-0.11|0|0|0|||||||||||||||| +30|2023-10-06T20:26:50.2240000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +37|2023-10-06T20:26:50.2670000-07:00|40022550|Zeromus|0001AE56|17661020||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:50.3570000-07:00|10FF0007|Kehabiqo Febiqo|0001AE51|128564|128564|10000|10000|7||100.02|86.82|-0.02|-3.14|1505|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T20:26:50.3570000-07:00|13D|Fey Illumination|20.00|40022A88|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:26:50.3570000-07:00|10FF0002|Suchichi Suchi|0001AE55|90128|90128|8600|10000|18||100.36|97.86|-0.02|-0.81|1602|0|0|01|03000A31|0|41E6BC68|| +37|2023-10-06T20:26:50.4910000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE51|80739|80739|1450|10000|21||100.10|94.91|0.00|2.20|1C06|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T20:26:50.4910000-07:00|13D|Fey Illumination|20.00|40022A88|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +261|2023-10-06T20:26:50.2500000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:26:50.5800000-07:00|40022550|Zeromus|0001AE5A|17652865||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:50.2500000-07:00|Change|40022AFB||||||||| +261|2023-10-06T20:26:50.2500000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:26:50.6250000-07:00|10FF0005|Wuwuchu Wuchu|0001AE51|90055|90055|8800|10000|21||99.52|91.63|0.00|2.10|2707|0|0|01|0700013D|0|41A00000|| +26|2023-10-06T20:26:50.6250000-07:00|13D|Fey Illumination|20.00|40022A88|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:26:50.6250000-07:00|10FF0007|Kehabiqo Febiqo|0001AE55|128564|128564|10000|10000|7||100.01|85.63|0.00|-3.13|1504|0|0|01|05000A31|0|41E4978A|| +38|2023-10-06T20:26:50.6250000-07:00|40022A88|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0|||| +30|2023-10-06T20:26:50.6250000-07:00|7AC|Summon Order II|0.00|40022A88|Ruby Carbuncle|40022A88|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T20:26:50.6250000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8800|10000|21||99.52|91.63|0.00|2.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:26:50.6250000-07:00|2B|Weakness|0.00|E0000000||10FF0005|Wuwuchu Wuchu|00|90055|| +37|2023-10-06T20:26:50.6690000-07:00|10FF0006|Wowobora Gogobora|0001AE59|80739|80739|4360|10000|21||100.08|97.30|0.00|0.02|2800|0|0|02|04000A3A|0|41700000|||||| +26|2023-10-06T20:26:50.6690000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:50.6690000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:26:50.6690000-07:00|40022550|Zeromus|0001AE5B|17642652||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:50.6690000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|62790000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|17652865|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3660|10000|||100.08|97.30|0.00|0.02|0001AE5E|0|1| +21|2023-10-06T20:26:50.6690000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|754003|254C0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|17652865|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5050|10000|||99.58|100.79|0.00|-0.04|0001AE5F|0|1| +21|2023-10-06T20:26:50.7130000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17652865|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5050|10000|||99.58|100.79|0.00|-0.04|0001AE60|0|1| +21|2023-10-06T20:26:50.7580000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|452003|54910000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|17642652|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8500|10000|||99.75|100.87|-0.02|0.32|0001AE61|0|1| +38|2023-10-06T20:26:50.7580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8200|10000|21||99.75|100.87|-0.02|0.32|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:50.7580000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:26:50.4470000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:26:50.8030000-07:00|10FF0003|Gegehi Gehi|0001AE59|73085|73085|5050|10000|14||99.59|101.08|0.00|3.12|2301|0|0|02|04000A3A|0|41700000|||||| +26|2023-10-06T20:26:50.8030000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:26:50.8030000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +04|2023-10-06T20:26:50.4470000-07:00|40022AE2|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|75851|0|10000|||81.91|91.07|0.00|2.03| +261|2023-10-06T20:26:50.4470000-07:00|Remove|40022AE2| +37|2023-10-06T20:26:50.8920000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE55|80739|80739|1450|10000|21||100.17|96.52|0.00|0.27|1C06|0|0|01|03000A31|0|41E276C4|| +24|2023-10-06T20:26:50.8920000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|976|127791|127791|4000|10000|||99.52|92.94|0.00|2.95|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|9CA|128564|128564|10000|10000|||99.99|84.55|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|9C0|90055|90055|8800|10000|||99.14|93.67|0.00|1.57|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|993|80739|80739|1450|10000|||100.17|96.52|0.00|0.27|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0002|Suchichi Suchi|HoT|798|F54|90128|90128|8600|10000|||100.36|97.86|-0.02|-2.97|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0006|Wowobora Gogobora|HoT|798|97F|80739|80739|3960|10000|||100.04|98.25|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|99C|79111|79111|8200|10000|||99.75|100.88|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0003|Gegehi Gehi|HoT|798|FE4|73085|73085|5050|10000|||99.59|101.13|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +37|2023-10-06T20:26:50.8920000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE5D|80739|80739|1450|10000|21||100.17|96.52|0.00|0.27|1C00|0|0|02|06000798|0|41700000|||||| +26|2023-10-06T20:26:50.8920000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:26:50.8920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:26:50.8920000-07:00|40022A88|Ruby Carbuncle|73956|77430|10000|10000|||99.90|97.15|0.00|3.14| +24|2023-10-06T20:26:50.8920000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|F9B|127791|127791|4000|10000|||99.52|92.94|0.00|2.95|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|F9B|128564|128564|10000|10000|||99.99|84.55|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|FEB|90055|90055|8800|10000|||99.14|93.67|0.00|1.57|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|9EA|80739|80739|1450|10000|||100.17|96.52|0.00|0.27|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0002|Suchichi Suchi|HoT|798|FDC|90128|90128|8600|10000|||100.36|97.86|-0.02|-2.97|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0006|Wowobora Gogobora|HoT|798|A02|80739|80739|3960|10000|||100.04|98.25|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1037|79111|79111|8200|10000|||99.75|100.88|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +24|2023-10-06T20:26:50.8920000-07:00|10FF0003|Gegehi Gehi|HoT|798|9BC|73085|73085|5050|10000|||99.59|101.13|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.17|96.52|0.00|0.27| +38|2023-10-06T20:26:50.8920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||99.99|84.55|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:50.8920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:26:50.8920000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8600|10000|18||100.36|97.86|-0.02|-2.97|0|0|0||||||||||||||||||| +26|2023-10-06T20:26:50.8920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:50.8920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8200|10000|21||99.75|100.88|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:50.8920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:50.8920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3960|10000|21||100.04|98.25|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:50.8920000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:50.8920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:50.8920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4000|10000|13||99.52|92.94|0.00|2.95|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:50.8920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:50.8920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1450|10000|21||100.17|96.52|0.00|0.27|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:26:50.8920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5050|10000|14||99.59|101.13|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:26:50.8920000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:50.8920000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8800|10000|21||99.14|93.67|0.00|1.57|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:26:50.8920000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:26:50.9360000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE59|80739|80739|1450|10000|21||100.17|96.52|0.00|0.27|1C02|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:26:50.9360000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:26:50.9360000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:26:50.9360000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|39A30000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|17642652|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|4000|10000|||99.52|92.94|0.00|2.95|0001AE62|0|1| +261|2023-10-06T20:26:50.5410000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:26:51.0250000-07:00|10FF0005|Wuwuchu Wuchu|0001AE55|90055|90055|8800|10000|21||99.11|94.31|0.00|1.44|2707|0|0|01|02000A31|0|41E16455|| +24|2023-10-06T20:26:51.0250000-07:00|10FF0006|Wowobora Gogobora|HoT|0|153E|80739|80739|3960|10000|||100.02|98.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1450|10000|||100.18|96.73|0.00|0.00| +38|2023-10-06T20:26:51.0250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3960|10000|21||100.02|98.70|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:26:51.0690000-07:00|10FF0008|Kokosaze Lulusaze|0001AE59|79111|79111|8200|10000|21||99.75|100.89|0.00|3.13|1B03|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:26:51.0690000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:26:51.0690000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:26:51.1140000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17642652|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8200|10000|||99.75|100.90|0.00|3.13|0001AE63|0|1| +20|2023-10-06T20:26:51.1140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.17|96.95|-0.02|-0.26| +37|2023-10-06T20:26:51.2020000-07:00|10FF0002|Suchichi Suchi|0001AE59|90128|90128|8600|10000|18||100.27|98.01|0.00|-2.06|1604|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:26:51.2020000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:26:51.2020000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:26:51.2020000-07:00|40022550|Zeromus|0001AE5C|17635421|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T20:26:51.2020000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +261|2023-10-06T20:26:50.8830000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:26:50.8830000-07:00|Add|40022B02||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:51.2480000-07:00|40022550|Zeromus|0001AE60|17635420||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:51.2480000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.99|84.55|0.00|-3.13| +21|2023-10-06T20:26:51.2480000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|35490000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|17611117|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8600|10000|||100.23|98.09|0.00|-3.13|0001AE64|0|1| +261|2023-10-06T20:26:50.8830000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:26:51.2480000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8600|10000|18||100.23|98.09|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:26:51.2480000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:26:51.2480000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:26:51.2920000-07:00|40022550|Zeromus|0001AE62|17620665||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:51.2920000-07:00|10FF0001|Sesuga Sapisuga|0001AE62|127791|127791|4500|10000|13||99.78|93.80|0.00|2.94|1300|0|0|0| +37|2023-10-06T20:26:51.2920000-07:00|40022550|Zeromus|0001AE5F|17611117||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:51.3380000-07:00|10FF0001|Sesuga Sapisuga|0001AE59|127791|127791|4500|10000|13||99.78|93.80|0.00|2.94|1305|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:26:51.3380000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:26:51.3380000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +24|2023-10-06T20:26:51.3380000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1597|128564|128564|10000|10000|||99.99|84.55|0.00|-3.13|10FF0006|Wowobora Gogobora|0|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14| +37|2023-10-06T20:26:51.3380000-07:00|40022550|Zeromus|0001AE5E|17585908||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:51.3380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||99.99|84.55|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:51.3830000-07:00|40022550|Zeromus|0001AE61|17564259||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:51.3830000-07:00|10FF0008|Kokosaze Lulusaze|0001AE61|79111|79111|8200|10000|21||99.75|100.91|0.00|3.13|1B00|0|0|01|04000B25|0|0|| +39|2023-10-06T20:26:51.3830000-07:00|10FF0003|Gegehi Gehi|73085|73085|5250|10000|||99.60|101.27|0.00|3.12| +21|2023-10-06T20:26:51.3830000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|64700000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.99|84.55|0.00|-3.13|128564|128564|10000|10000|||99.99|84.55|0.00|-3.13|0001AE65|0|1| +21|2023-10-06T20:26:51.3830000-07:00|10FF0008|Kokosaze Lulusaze|1D88|Addle|40022550|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17611117|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8200|10000|||99.75|100.91|0.00|3.13|0001AE66|0|1| +38|2023-10-06T20:26:51.3830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8200|10000|21||99.75|100.91|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:51.0080000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:26:51.4710000-07:00|10FF0005|Wuwuchu Wuchu|0001AE59|90055|90055|8800|10000|21||99.39|97.01|0.00|0.94|2706|0|0|02|08000A3A|0|41700000|||||| +261|2023-10-06T20:26:51.1190000-07:00|Change|10FF0002||||||||||| +26|2023-10-06T20:26:51.4710000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:26:51.4710000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:26:51.4720000-07:00|10FF0002|Suchichi Suchi|90128|90128|8800|10000|||100.19|98.17|0.00|-3.13| +24|2023-10-06T20:26:51.5170000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|C80|79111|79111|8200|10000|||99.75|100.91|0.00|3.13|10FF0006|Wowobora Gogobora|0|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14| +21|2023-10-06T20:26:51.5170000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17564259|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE67|0|1| +38|2023-10-06T20:26:51.5170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8200|10000|21||99.75|100.91|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:51.5600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||99.99|84.55|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:51.5600000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:26:51.2440000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:26:51.6060000-07:00|10FF0007|Kehabiqo Febiqo|0001AE59|128564|128564|10000|10000|7||99.99|84.55|0.00|-3.13|1507|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:26:51.6060000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:26:51.6060000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:26:51.2440000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:26:51.6500000-07:00|40022550|Zeromus|0001AE63|17564115||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:51.6500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17564259|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.99|84.55|0.00|-3.13|0001AE68|0|1| +261|2023-10-06T20:26:51.4420000-07:00|Change|40022AFB||||||||| +21|2023-10-06T20:26:51.8300000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17564115|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8800|10000|||100.15|98.59|-0.02|1.49|0001AE69|0|1| +21|2023-10-06T20:26:51.8300000-07:00|40022550|Zeromus|8B38|Sable Thread|40022550|Zeromus|49|48000|1B|8B388000|0|0|0|0|0|0|0|0|0|0|0|0|17564115|40478540|10000|10000|||100.00|80.10|0.00|0.00|17564115|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AE6A|0|1| +21|2023-10-06T20:26:51.8300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|D930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17564115|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|4500|10000|||100.15|94.03|0.00|2.94|0001AE6B|0|1| +31|2023-10-06T20:26:51.8300000-07:00|10FF0001||||| +261|2023-10-06T20:26:51.4420000-07:00|Change|40022550||||||||||||| +21|2023-10-06T20:26:51.8740000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|31E40000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|17564115|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|4500|10000|||100.15|93.88|0.00|3.13|0001AE6C|0|1| +38|2023-10-06T20:26:51.8740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4500|10000|13||100.15|93.88|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:51.8740000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:26:51.8740000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:26:51.9190000-07:00|40022550|Zeromus|0001AE64|17550474||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:51.9190000-07:00|10FF0002|Suchichi Suchi|0001AE64|90128|90128|8800|10000|18||100.14|98.68|0.00|1.11|1600|0|0|01|08000747|0|41F00000|| +38|2023-10-06T20:26:51.9190000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8800|10000|18||100.14|98.68|0.00|1.11|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:26:52.0090000-07:00|10FF0007|Kehabiqo Febiqo|0001AE65|154276|154276|10000|10000|6||99.99|84.55|0.00|-3.13|1500|0|0|01|09000057|0|41200000|| +26|2023-10-06T20:26:52.0090000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:26:52.0090000-07:00|40022550|Zeromus|0001AE66|17550474|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004B3|0|41200000|| +26|2023-10-06T20:26:52.0090000-07:00|4B3|Addle|10.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|79111| +39|2023-10-06T20:26:52.0090000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|4700|10000|||100.15|93.88|0.00|3.13| +38|2023-10-06T20:26:52.0090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|6||99.99|84.55|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.0090000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:26:52.0520000-07:00|40022550|Zeromus|0001AE67|17550438||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:52.0530000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|272A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17550438|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8200|10000|||99.85|101.07|-0.02|1.20|0001AE6D|0|1| +21|2023-10-06T20:26:52.0530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|22560000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|17550438|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|1450|10000|||100.05|97.86|0.00|-3.14|0001AE6E|0|1| +38|2023-10-06T20:26:52.0530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8200|10000|21||99.85|101.07|-0.02|1.20|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:52.0530000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:26:52.1420000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37750003|24820000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|17550438|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5250|10000|||99.60|101.27|0.00|3.12|0001AE6F|0|1| +37|2023-10-06T20:26:52.1860000-07:00|40022550|Zeromus|0001AE68|17547549||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:52.1860000-07:00|40022550|Zeromus|DoT|0|25AD|17550438|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|79111|79111|8200|10000|||99.88|101.10|0.00|3.14| +38|2023-10-06T20:26:52.1860000-07:00|40022550|Zeromus|005A5A00|17537904|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +22|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0006|Wowobora Gogobora|4|26690000|690E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE70|0|8| +22|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0002|Suchichi Suchi|4|254D0000|4D0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|90128|90128|8800|10000|||100.11|98.95|0.00|0.01|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE70|1|8| +22|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0005|Wuwuchu Wuchu|4|25210000|210E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|90055|90055|8800|10000|||99.69|98.91|0.00|1.90|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE70|2|8| +22|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0004|Buhojaqe Zijaqe|200004|3E6E0000|6E0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|80739|80739|1050|10000|||100.05|97.86|0.00|-3.14|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE70|3|8| +22|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0008|Kokosaze Lulusaze|4|262B0000|2B0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|79111|79111|8200|10000|||99.91|101.13|0.00|3.14|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE70|4|8| +22|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0003|Gegehi Gehi|4|27150000|150E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|73085|73085|5250|10000|||99.60|101.27|0.00|3.12|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE70|5|8| +22|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0001|Sesuga Sapisuga|4|24FD0000|FD0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE70|6|8| +22|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0007|Kehabiqo Febiqo|4|2E270000|270E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||99.99|84.55|0.00|-3.13|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|0001AE70|7|8| +38|2023-10-06T20:26:52.2770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|14||99.99|84.55|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.2770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +26|2023-10-06T20:26:52.2770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:26:52.2770000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8800|10000|29||100.11|98.95|0.00|0.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.2770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:26:52.2770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:52.2770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8200|10000|33||99.91|101.13|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.2770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:26:52.2770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:52.2770000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3960|10000|33||99.99|99.38|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.2770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:52.2770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:52.2770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4700|10000|20||100.16|93.63|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.2770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:26:52.2770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:52.2770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1050|10000|40||100.05|97.86|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.2770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:26:52.2770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:52.2770000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|27||99.60|101.27|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.2770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:26:52.2770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:52.2770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|8800|10000|32||99.69|98.91|0.00|1.90|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.2770000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:26:52.2770000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:26:51.9870000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:26:52.3650000-07:00|40022550|Zeromus|0001AE69|17533101||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:52.3650000-07:00|40022550|Zeromus|0001AE6B|17529626||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:52.3650000-07:00|10FF0001|Sesuga Sapisuga|0001AE6B|127791|127791|4700|10000|20||100.16|93.63|0.00|3.12|1300|0|0|02|0200076E|03|C1F00000|||||| +21|2023-10-06T20:26:52.4100000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|2F200000|143E|340000|4|1C608000|11B|2A8000|0|0|0|0|0|0|0|0|17529626|40478540|10000|10000|||100.00|80.10|0.00|0.00|154276|154276|10000|10000|||99.99|84.55|0.00|-3.13|0001AE71|0|1| +37|2023-10-06T20:26:52.4540000-07:00|40022550|Zeromus|0001AE6C|17516854||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:52.4540000-07:00|10FF0001|Sesuga Sapisuga|0001AE6C|127791|127791|4700|10000|20||100.16|93.63|0.00|3.12|1300|0|0|02|0200076E|03|41F00000|||||| +21|2023-10-06T20:26:52.4540000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|722003|4EB30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17529626|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8800|10000|||100.11|98.95|0.00|0.01|0001AE72|0|1| +38|2023-10-06T20:26:52.4540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4700|10000|20||100.16|93.63|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +22|2023-10-06T20:26:52.4990000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|2FFE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||99.99|84.55|0.00|-3.14|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE73|0|8| +22|2023-10-06T20:26:52.4990000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750005|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE73|1|8| +22|2023-10-06T20:26:52.4990000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|1050|10000|||100.05|97.86|0.00|-3.14|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE73|2|8| +22|2023-10-06T20:26:52.4990000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|8800|10000|||100.11|98.95|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE73|3|8| +22|2023-10-06T20:26:52.4990000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|8800|10000|||99.69|99.00|0.00|2.12|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE73|4|8| +22|2023-10-06T20:26:52.4990000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|3960|10000|||99.99|99.38|0.00|-3.14|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE73|5|8| +22|2023-10-06T20:26:52.4990000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8200|10000|||99.94|101.22|0.00|2.10|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE73|6|8| +22|2023-10-06T20:26:52.4990000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5250|10000|||99.60|101.27|0.00|3.12|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE73|7|8| +39|2023-10-06T20:26:52.4990000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4165|10000|||99.99|99.38|0.00|-3.14| +261|2023-10-06T20:26:52.2090000-07:00|Change|10FF0006||| +21|2023-10-06T20:26:52.5440000-07:00|10FF0001|Sesuga Sapisuga|1CD9|Passage of Arms|10FF0001|Sesuga Sapisuga|4400640F|4978000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|0001AE74|0|1| +21|2023-10-06T20:26:52.5440000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40714003|51FD0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|17516854|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8800|10000|||99.69|99.00|0.00|2.12|0001AE75|0|1| +261|2023-10-06T20:26:52.3090000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:26:52.6320000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17516854|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|1050|10000|||100.05|97.86|0.00|-3.14|0001AE76|0|1| +261|2023-10-06T20:26:52.3090000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:26:52.7650000-07:00|40022550|Zeromus|0001AE6F|17507508||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:52.7660000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|FF20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17516854|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|8800|10000|||99.66|99.09|0.00|3.05|0001AE77|0|1| +37|2023-10-06T20:26:52.8110000-07:00|10FF0007|Kehabiqo Febiqo|0001AE73|141990|154276|10000|10000|0||99.99|84.55|0.00|-3.14|1500|0|0|02|05000000|0|0|||||| +37|2023-10-06T20:26:52.8110000-07:00|40022550|Zeromus|0001AE6D|17497482||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:52.8120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|141990|154276|10000|10000|0||99.99|84.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:52.8120000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +30|2023-10-06T20:26:52.8120000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +37|2023-10-06T20:26:52.8550000-07:00|10FF0001|Sesuga Sapisuga|0001AE73|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|1301|0|0|01|08000000|0|0|| +37|2023-10-06T20:26:52.8560000-07:00|40022550|Zeromus|0001AE6E|17488692||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:52.8560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:52.8560000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:26:52.9010000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE73|80739|80739|1050|10000|20||100.05|97.86|0.00|-3.14|1C02|0|0|0| +39|2023-10-06T20:26:52.9020000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|9000|10000|||99.66|99.17|-0.02|3.00| +38|2023-10-06T20:26:52.9020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:52.9020000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:26:52.9450000-07:00|10FF0002|Suchichi Suchi|0001AE73|90128|90128|8800|10000|9||100.11|98.95|0.00|-3.13|1603|0|0|01|03000000|0|0|| +37|2023-10-06T20:26:52.9450000-07:00|10FF0006|Wowobora Gogobora|0001AE70|80739|80739|4165|10000|33||99.99|99.38|0.00|-3.14|2800|0|0|02|07000D25|0|41EAFFFF|||||| +38|2023-10-06T20:26:52.9450000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8800|10000|9||100.11|98.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:52.9450000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:26:52.9910000-07:00|10FF0005|Wuwuchu Wuchu|0001AE73|90055|90055|9000|10000|12||99.66|99.21|-0.02|2.98|2704|0|0|01|06000A26|0|41700000|| +30|2023-10-06T20:26:52.9910000-07:00|A25|Crest of Time Borrowed|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|15.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:26:52.9910000-07:00|40022AFB|Carbuncle|75851|75851|10000|10000|||101.24|99.79|0.00|0.03| +24|2023-10-06T20:26:52.9910000-07:00|40022AFB|Carbuncle|HoT|0|48A|72376|75851|10000|10000|||101.24|99.79|0.00|0.03|10FF0005|Wuwuchu Wuchu|0|90055|90055|9000|10000|||99.66|99.21|-0.02|2.98| +38|2023-10-06T20:26:52.9910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|141990|154276|10000|10000|0||99.99|84.57|0.00|-2.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|154276|90055| +38|2023-10-06T20:26:52.9910000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8800|10000|9||100.11|98.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +38|2023-10-06T20:26:52.9910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8200|10000|33||99.96|101.49|0.00|0.56|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:26:52.9910000-07:00|40022A88|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0||||||| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|40022A88|Ruby Carbuncle|00|77430|90055| +38|2023-10-06T20:26:52.9910000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4165|10000|33||99.99|99.38|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.9910000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +38|2023-10-06T20:26:52.9910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +38|2023-10-06T20:26:52.9910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1050|10000|20||100.05|97.86|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +38|2023-10-06T20:26:52.9910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|27||99.60|101.27|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +38|2023-10-06T20:26:52.9910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|9000|10000|12||99.66|99.21|-0.02|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:52.9910000-07:00|40022AFB|Carbuncle|005A5A00|75851|75851|10000|10000|0||101.24|99.79|0.00|0.03|0|0|0||||||| +26|2023-10-06T20:26:52.9910000-07:00|30|Well Fed|2046.47|10FF0008|Kokosaze Lulusaze|40022AFB|Carbuncle|2964|75851|79111| +26|2023-10-06T20:26:52.9910000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|40022AFB|Carbuncle|00|75851|90055| +37|2023-10-06T20:26:53.0340000-07:00|10FF0006|Wowobora Gogobora|0001AE73|80739|80739|4165|10000|12||99.99|99.38|0.00|-3.14|2805|0|0|0| +39|2023-10-06T20:26:53.0340000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8400|10000|||99.96|101.56|0.00|0.35| +37|2023-10-06T20:26:53.0780000-07:00|10FF0008|Kokosaze Lulusaze|0001AE73|79111|79111|8400|10000|12||99.96|101.56|0.00|0.35|1B06|0|0|01|02000000|0|0|| +37|2023-10-06T20:26:53.0780000-07:00|10FF0002|Suchichi Suchi|0001AE70|90128|90128|8800|10000|9||100.11|98.95|0.00|-3.13|1601|0|0|02|0D25|0|41E9EF9C|||||| +37|2023-10-06T20:26:53.0780000-07:00|40022550|Zeromus|0001AE75|17467703||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:52.7240000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:26:53.0790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|12||99.96|101.56|0.00|0.35|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:53.0790000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:26:53.1220000-07:00|10FF0003|Gegehi Gehi|0001AE73|73085|73085|5250|10000|5||99.60|101.27|0.00|3.12|2307|0|0|01|01000000|0|0|| +21|2023-10-06T20:26:53.1220000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|19A50000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|141990|154276|10000|10000|||99.99|84.59|0.00|-1.24|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|0001AE78|0|1| +20|2023-10-06T20:26:53.1220000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.99|99.38|0.00|-3.14| +38|2023-10-06T20:26:53.1220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|5||99.60|101.27|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:53.1220000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:53.1660000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8800|10000|9||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.1660000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|90128|127791| +38|2023-10-06T20:26:53.1660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|5||99.60|101.27|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.1660000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73085|127791| +38|2023-10-06T20:26:53.1660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1050|10000|20||100.05|97.86|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.1660000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|80739|127791| +38|2023-10-06T20:26:53.1660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|9000|10000|12||99.70|99.30|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.1660000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|90055|127791| +38|2023-10-06T20:26:53.1660000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4165|10000|12||99.99|99.38|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.1660000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|80739|127791| +38|2023-10-06T20:26:53.1660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|12||99.96|101.61|0.00|0.19|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.1660000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|79111|127791| +38|2023-10-06T20:26:53.1660000-07:00|40022A88|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T20:26:53.1660000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|40022A88|Ruby Carbuncle|00|77430|127791| +38|2023-10-06T20:26:53.1660000-07:00|40022AFB|Carbuncle|005A5A00|75851|75851|10000|10000|0||101.24|99.97|0.00|0.11|0|0|0|||||||||| +26|2023-10-06T20:26:53.1660000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|40022AFB|Carbuncle|00|75851|127791| +37|2023-10-06T20:26:53.1660000-07:00|10FF0001|Sesuga Sapisuga|0001AE74|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|1300|0|0|01|08000497|1444|41900000|| +26|2023-10-06T20:26:53.1660000-07:00|497|Passage of Arms|18.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|127791|127791| +37|2023-10-06T20:26:53.1660000-07:00|40022550|Zeromus|0001AE76|17467629||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:53.1660000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +37|2023-10-06T20:26:53.2100000-07:00|40022550|Zeromus|0001AE72|17447482||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:53.2100000-07:00|10FF0005|Wuwuchu Wuchu|0001AE70|90055|90055|9000|10000|12||99.70|99.30|0.00|2.98|2702|0|0|02|0A000D25|0|41E8E145|||||| +21|2023-10-06T20:26:53.2110000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|17467703|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8400|10000|||99.96|101.61|0.00|0.19|0001AE79|0|1| +38|2023-10-06T20:26:53.2110000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|12||99.96|101.61|0.00|0.19|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.2110000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:26:53.2110000-07:00|40022AFB|Carbuncle|005A5A00|0|75851|0|10000|0||101.24|99.97|0.00|0.11|0|0|0|||| +30|2023-10-06T20:26:53.2110000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|40022AFB|Carbuncle|00|75851|90055| +30|2023-10-06T20:26:53.2110000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|40022AFB|Carbuncle|00|75851|127791| +261|2023-10-06T20:26:52.8380000-07:00|Change|40022AFB||||||||| +38|2023-10-06T20:26:53.2560000-07:00|40022B08||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:26:53.2560000-07:00|10FF0001|Sesuga Sapisuga|1D6B|Rampart|10FF0001|Sesuga Sapisuga|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|0001AE7A|0|1| +38|2023-10-06T20:26:53.2560000-07:00|40022B08||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:26:53.2560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:53.2560000-07:00|497|Passage of Arms|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|127791|127791| +37|2023-10-06T20:26:53.3000000-07:00|40022550|Zeromus|0001AE77|17443400||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:53.3450000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE70|80739|80739|1250|10000|20||100.05|97.86|0.00|-3.14|1C03|0|0|02|0A000D25|0|41E7CED6|||||| +21|2023-10-06T20:26:53.4330000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17443400|40478540|10000|10000|||100.00|80.10|0.00|0.00|17443400|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AE7B|0|1| +37|2023-10-06T20:26:53.4770000-07:00|10FF0008|Kokosaze Lulusaze|0001AE70|79111|79111|8400|10000|12||99.96|101.66|0.00|3.14|1B04|0|0|02|04000D25|0|41E6BC67|||||| +20|2023-10-06T20:26:53.4770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.05|97.86|0.00|-3.14| +261|2023-10-06T20:26:53.1920000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:26:53.6120000-07:00|10FF0003|Gegehi Gehi|0001AE70|73085|73085|5250|10000|5||99.60|101.27|0.00|3.12|2305|0|0|02|07000D25|0|41E5AC05|||||| +261|2023-10-06T20:26:53.2950000-07:00|Add|40022B08||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:26:53.2950000-07:00|40022B08|Emerald Garuda|00|5A|10FF0008|00||10263|13506|72376|75851|10000|10000|||101.73|103.44|0.00|3.14| +261|2023-10-06T20:26:53.2950000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T20:26:53.6570000-07:00|10FF0002|Suchichi Suchi|HoT|0|11C5|90128|90128|8800|10000|||100.11|98.95|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12| +21|2023-10-06T20:26:53.6570000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A752003|516B0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|17443400|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5250|10000|||99.60|101.27|0.00|3.12|0001AE7C|0|1| +38|2023-10-06T20:26:53.6570000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8800|10000|9||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:53.3870000-07:00|Change|40022B08||||| +24|2023-10-06T20:26:53.7010000-07:00|10FF0003|Gegehi Gehi|HoT|0|1222|73085|73085|5250|10000|||99.60|101.27|0.00|3.12|10FF0005|Wuwuchu Wuchu|0|90055|90055|9000|10000|||99.81|99.41|-0.02|3.05| +38|2023-10-06T20:26:53.7010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|5||99.60|101.27|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:53.3870000-07:00|Change|10FF0005||||||||||| +37|2023-10-06T20:26:53.7460000-07:00|10FF0001|Sesuga Sapisuga|0001AE70|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|1306|0|0|02|0A000D25|0|41E49996|||||| +21|2023-10-06T20:26:53.7460000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|24D30000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|17443400|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8800|10000|||100.11|98.95|0.00|-3.13|0001AE7D|0|1| +38|2023-10-06T20:26:53.7460000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8800|10000|9||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:53.7460000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:26:53.7900000-07:00|40022A88|Ruby Carbuncle|HoT|0|47B|73956|77430|10000|10000|||99.90|97.15|0.00|3.14|10FF0001|Sesuga Sapisuga|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12| +38|2023-10-06T20:26:53.7910000-07:00|40022A88|Ruby Carbuncle|005A5A00|75103|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0|||||||||| +37|2023-10-06T20:26:53.8790000-07:00|10FF0007|Kehabiqo Febiqo|0001AE70|153805|154276|10000|10000|0||99.86|89.11|-0.02|-0.08|1507|0|0|01|0C000BBB|0|41938933|| +37|2023-10-06T20:26:53.8790000-07:00|10FF0001|Sesuga Sapisuga|0001AE7A|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|1300|0|0|01|080004A7|0|41A00000|| +26|2023-10-06T20:26:53.8790000-07:00|4A7|Rampart|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +39|2023-10-06T20:26:53.8790000-07:00|40022A88|Ruby Carbuncle|75103|77430|10000|10000|||99.90|97.15|0.00|3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|122E|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|10FF0006|Wowobora Gogobora|0|80739|80739|4165|10000|||99.99|99.38|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1298|141990|154276|10000|10000|||99.86|89.11|-0.02|-0.08|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|FBD|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|9A3|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0002|Suchichi Suchi|HoT|798|F85|90128|90128|8800|10000|||100.11|98.95|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0006|Wowobora Gogobora|HoT|798|FDE|80739|80739|4165|10000|||99.99|99.38|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|9CB|90055|90055|9000|10000|||99.81|99.41|0.00|3.05|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0003|Gegehi Gehi|HoT|798|9C8|73085|73085|5250|10000|||99.60|101.27|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1018|79111|79111|8400|10000|||99.96|101.67|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14| +24|2023-10-06T20:26:53.8790000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1A30|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14|10FF0001|Sesuga Sapisuga|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12| +38|2023-10-06T20:26:53.8790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|0||99.86|89.11|-0.02|-0.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.8790000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:26:53.8790000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|8800|10000|9||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.8790000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:53.8790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|12||99.96|101.67|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.8790000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:53.8790000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4165|10000|12||99.99|99.38|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.8790000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:53.8790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|4700|10000|1||100.16|93.63|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.8790000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:53.8790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1250|10000|20||100.05|97.86|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.8790000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:53.8790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5250|10000|5||99.60|101.27|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.8790000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:53.8790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|9000|10000|12||99.81|99.41|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:53.8790000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:26:53.9220000-07:00|40022550|Zeromus|0001AE71|17431336||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:53.9670000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1208|90055|90055|9000|10000|||99.81|99.41|0.00|3.05|10FF0001|Sesuga Sapisuga|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12| +38|2023-10-06T20:26:53.9670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|9000|10000|12||99.81|99.41|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:54.0120000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1192|80739|80739|4165|10000|||99.99|99.38|0.00|-3.14|10FF0001|Sesuga Sapisuga|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12| +38|2023-10-06T20:26:54.0120000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4165|10000|12||99.99|99.38|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:54.0570000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35F10000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|17431336|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4165|10000|||99.99|99.38|0.00|-3.14|0001AE7E|0|1| +22|2023-10-06T20:26:54.1010000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|85920000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||99.87|89.40|0.00|-0.05|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE7F|0|8| +22|2023-10-06T20:26:54.1010000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|64F60000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|4700|10000|||100.16|93.63|0.00|3.12|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE7F|1|8| +22|2023-10-06T20:26:54.1010000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|1250|10000|||100.05|97.86|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE7F|2|8| +22|2023-10-06T20:26:54.1010000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|1C960000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|8800|10000|||100.11|98.95|0.00|-3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE7F|3|8| +22|2023-10-06T20:26:54.1010000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|110E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4165|10000|||99.99|99.38|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE7F|4|8| +22|2023-10-06T20:26:54.1010000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|10600000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|9000|10000|||99.81|99.41|0.00|3.05|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE7F|5|8| +22|2023-10-06T20:26:54.1010000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|27BE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5250|10000|||99.60|101.27|0.00|3.12|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE7F|6|8| +22|2023-10-06T20:26:54.1010000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|12C90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8400|10000|||99.96|101.67|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|0001AE7F|7|8| +261|2023-10-06T20:26:53.7650000-07:00|Change|4002256D||||||||| +21|2023-10-06T20:26:54.1920000-07:00|10FF0007|Kehabiqo Febiqo|1D6B|Rampart|10FF0007|Kehabiqo Febiqo|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||99.87|89.52|0.00|-0.03|154276|154276|10000|10000|||99.87|89.52|0.00|-0.03|0001AE80|0|1| +21|2023-10-06T20:26:54.1920000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17431336|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5250|10000|||99.60|101.27|0.00|3.12|0001AE81|0|1| +37|2023-10-06T20:26:54.2350000-07:00|10FF0008|Kokosaze Lulusaze|0001AE79|79111|79111|8400|10000|12||99.96|101.67|0.00|3.14|1B00|0|0|01|0C000AA5|0|0|| +39|2023-10-06T20:26:54.2350000-07:00|10FF0007|Kehabiqo Febiqo|154276|154276|10000|10000|||99.87|89.59|-0.02|-0.03| +21|2023-10-06T20:26:54.2350000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17431336|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8400|10000|||99.96|101.67|0.00|3.14|0001AE82|0|1| +38|2023-10-06T20:26:54.2350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|12||99.96|101.67|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:54.2810000-07:00|40022550|Zeromus|0001AE7C|17410493||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:26:54.0130000-07:00|Change|40022B08||| +37|2023-10-06T20:26:54.3690000-07:00|40022550|Zeromus|0001AE7D|17401066||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:54.3690000-07:00|10FF0003|Gegehi Gehi|73085|73085|5450|10000|||99.60|101.27|0.00|3.12| +261|2023-10-06T20:26:54.0130000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:26:54.4140000-07:00|10FF0007|Kehabiqo Febiqo|0001AE7F|120082||||||99.87|89.59|0.00|-0.03| +21|2023-10-06T20:26:54.4140000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|722003|5D150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17410493|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|8800|10000|||100.11|98.95|0.00|-3.13|0001AE83|0|1| +37|2023-10-06T20:26:54.4590000-07:00|10FF0001|Sesuga Sapisuga|0001AE7F|101945|127791|4700|10000|0||100.16|93.63|0.00|-3.13|1301|0|0|01|0A000000|0|0|| +39|2023-10-06T20:26:54.4590000-07:00|10FF0002|Suchichi Suchi|90128|90128|9000|10000|||100.11|98.95|0.00|-3.13| +21|2023-10-06T20:26:54.4590000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|2DED0000|4|29EB8000|0|0|0|0|0|0|0|0|0|0|0|0|17401066|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|4700|10000|||100.16|93.63|0.00|-3.13|0001AE84|0|1| +21|2023-10-06T20:26:54.4590000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17401066|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|4700|10000|||100.16|93.63|0.00|-3.13|0001AE85|0|1| +38|2023-10-06T20:26:54.4590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101945|127791|3700|10000|0||100.16|93.63|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:54.4590000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +30|2023-10-06T20:26:54.4590000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +31|2023-10-06T20:26:54.4590000-07:00|10FF0001||||| +261|2023-10-06T20:26:54.1270000-07:00|Change|10FF0002||||||||||| +261|2023-10-06T20:26:54.1270000-07:00|Change|10FF0001||||| +37|2023-10-06T20:26:54.5030000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE7F|80739|80739|1250|10000|2||100.05|97.86|0.00|-3.14|1C02|0|0|01|03000000|0|0|| +38|2023-10-06T20:26:54.5030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|1250|10000|2||100.05|97.86|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:54.5030000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:26:54.2500000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:26:54.5470000-07:00|10FF0002|Suchichi Suchi|0001AE7F|82810|90128|9000|10000|0||100.11|98.95|0.00|-3.13|1603|0|0|01|0|0|0|| +24|2023-10-06T20:26:54.5470000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|12FE|120082|154276|10000|10000|||99.87|89.59|-0.02|-0.03|10FF0006|Wowobora Gogobora|0|80739|80739|3765|10000|||99.99|99.38|0.00|-3.14| +24|2023-10-06T20:26:54.5470000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1259|79111|79111|8400|10000|||99.96|101.67|0.00|3.14|10FF0008|Kokosaze Lulusaze|0|79111|79111|8400|10000|||99.96|101.67|0.00|3.14| +38|2023-10-06T20:26:54.5470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124944|154276|10000|10000|0||99.87|89.59|-0.02|-0.03|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.5470000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:26:54.5470000-07:00|10FF0002|Suchichi Suchi|005A5A16|82810|90128|9000|10000|0||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:54.5470000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:54.5470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8400|10000|12||99.96|101.67|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:54.5920000-07:00|10FF0006|Wowobora Gogobora|0001AE7F|76373|80739|3765|10000|0||99.99|99.38|0.00|-3.14|2804|0|0|02|03000000|0|0|||||| +38|2023-10-06T20:26:54.5920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|76373|80739|3765|10000|0||99.99|99.38|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:54.5920000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:54.5920000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:26:54.6360000-07:00|10FF0005|Wuwuchu Wuchu|0001AE7F|85863|90055|9000|10000|0||99.81|99.41|0.00|3.05|2705|0|0|02|02000000|0|0|||||| +21|2023-10-06T20:26:54.6360000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|EAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17401066|40478540|10000|10000|||100.00|80.10|0.00|0.00|82810|90128|9000|10000|||100.11|98.95|0.00|-3.13|0001AE86|0|1| +38|2023-10-06T20:26:54.6360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|85863|90055|9000|10000|0||99.81|99.41|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:54.6360000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:26:54.6360000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:26:54.6810000-07:00|10FF0003|Gegehi Gehi|0001AE7F|62911|73085|5450|10000|0||99.76|101.13|0.00|3.13|2306|0|0|01|07000000|0|0|| +38|2023-10-06T20:26:54.6810000-07:00|10FF0003|Gegehi Gehi|005A5A23|62911|73085|5450|10000|0||99.76|101.13|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:54.6810000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:26:54.7240000-07:00|10FF0008|Kokosaze Lulusaze|0001AE7F|74302|79111|8400|10000|0||99.96|101.64|0.00|-3.14|1B07|0|0|01|04000000|0|0|| +24|2023-10-06T20:26:54.7250000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1A02|124944|154276|10000|10000|||99.87|89.59|-0.02|-0.03|10FF0006|Wowobora Gogobora|0|76373|80739|3765|10000|||99.99|99.38|0.00|-3.14| +37|2023-10-06T20:26:54.7250000-07:00|40022550|Zeromus|0001AE7E|17387257||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:54.7250000-07:00|40022550|Zeromus|0001AE81|17387256||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:54.7250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|131602|154276|10000|10000|0||99.87|89.59|-0.02|-0.03|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:54.7250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|74302|79111|8400|10000|0||99.96|101.64|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:54.7250000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:26:54.7700000-07:00|40022550|Zeromus|0001AE82|17387114||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:54.8140000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17387114|40478540|10000|10000|||100.00|80.10|0.00|0.00|17387114|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AE87|0|1| +21|2023-10-06T20:26:54.8150000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|27790000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|131602|154276|10000|10000|||99.87|89.59|0.00|-0.03|17387114|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AE88|0|1| +37|2023-10-06T20:26:54.8590000-07:00|10FF0007|Kehabiqo Febiqo|0001AE80|131602|154276|10000|10000|0||99.87|89.59|0.00|-0.03|1500|0|0|01|0A0004A7|0|41A00000|| +26|2023-10-06T20:26:54.8590000-07:00|4A7|Rampart|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|154276|154276| +21|2023-10-06T20:26:54.8590000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|22510000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|17387114|40478540|10000|10000|||100.00|80.10|0.00|0.00|131602|154276|10000|10000|||99.87|89.59|0.00|-0.03|0001AE89|0|1| +22|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|151D0000|C80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|0001AE8A|0|8| +22|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|200004|21D30000|1E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|82810|90128|9000|10000|||100.11|98.95|0.00|-3.13|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|0001AE8A|1|8| +22|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|14130000|1E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|76373|80739|3765|10000|||99.99|99.38|0.00|-3.14|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|0001AE8A|2|8| +22|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|14830000|D10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|85863|90055|9000|10000|||99.81|99.41|0.00|3.05|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|0001AE8A|3|8| +22|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|14550000|880E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|74302|79111|8400|10000|||99.96|101.44|-0.02|-3.14|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|0001AE8A|4|8| +22|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|145E0000|960E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|62911|73085|5450|10000|||99.93|100.88|0.00|3.14|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|0001AE8A|5|8| +22|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|21DA0000|290E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|101945|127791|3700|10000|||100.16|93.63|0.00|-3.13|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|0001AE8A|6|8| +22|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|18E20000|D00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|131602|154276|10000|10000|||99.87|89.59|0.00|3.13|80739|80739|250|10000|||100.05|97.86|0.00|-3.14|0001AE8A|7|8| +38|2023-10-06T20:26:54.9040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|131602|154276|10000|10000|6||99.87|89.59|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.9040000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:26:54.9040000-07:00|10FF0002|Suchichi Suchi|005A5A16|82810|90128|9000|10000|15||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.9040000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:54.9040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|74302|79111|8400|10000|10||99.96|101.44|-0.02|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.9040000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:54.9040000-07:00|10FF0006|Wowobora Gogobora|005A5A28|76373|80739|3765|10000|10||99.99|99.38|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.9040000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:54.9040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101945|127791|3700|10000|10||100.16|93.63|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.9040000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:54.9040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|250|10000|13||100.05|97.86|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.9040000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:54.9040000-07:00|10FF0003|Gegehi Gehi|005A5A23|62911|73085|5450|10000|11||99.93|100.88|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.9040000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:54.9040000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|85863|90055|9000|10000|9||99.81|99.41|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:54.9040000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:26:54.5400000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:26:54.9920000-07:00|40022550|Zeromus|0001AE85|17385350||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:55.0370000-07:00|10FF0001|Sesuga Sapisuga|103222|127791|3900|10000|||100.16|93.63|0.00|-3.13| +21|2023-10-06T20:26:55.0370000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17385350|40478540|10000|10000|||100.00|80.10|0.00|0.00|131602|154276|10000|10000|||99.87|89.59|0.00|3.13|0001AE8B|0|1| +21|2023-10-06T20:26:55.0370000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2B880000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|17385350|40478540|10000|10000|||100.00|80.10|0.00|0.00|85863|90055|9000|10000|||99.81|99.41|0.00|3.06|0001AE8C|0|1| +37|2023-10-06T20:26:55.1710000-07:00|40022550|Zeromus|0001AE86|17381592||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:55.1710000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|138D0F|A748000|0|0|0|0|0|0|0|0|0|0|103222|127791|3900|10000|||100.16|93.63|0.00|-3.13|103222|127791|3900|10000|||100.16|93.63|0.00|-3.13|0001AE8D|0|1| +38|2023-10-06T20:26:55.1710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103222|127791|3900|10000|10||100.16|93.63|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:55.1710000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:26:55.1710000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:26:55.1710000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:26:55.1710000-07:00|10FF0001||||| +37|2023-10-06T20:26:55.2160000-07:00|40022550|Zeromus|0001AE84|17369835||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:55.2160000-07:00|10FF0001|Sesuga Sapisuga|0001AE84|113953||||||100.16|93.63|0.00|-3.13| +24|2023-10-06T20:26:55.2160000-07:00|40022550|Zeromus|DoT|0|2F00|17369835|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|74302|79111|8400|10000|||99.93|99.91|0.00|-3.14| +38|2023-10-06T20:26:55.2160000-07:00|40022550|Zeromus|005A5A00|17357803|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:26:54.8780000-07:00|Change|40022AFB||||||||| +21|2023-10-06T20:26:55.3040000-07:00|40022B08|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|350003|5C5D0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|17369835|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.73|103.44|0.00|3.14|0001AE8E|0|1| +21|2023-10-06T20:26:55.3040000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17369835|40478540|10000|10000|||100.00|80.10|0.00|0.00|76373|80739|3765|10000|||100.03|99.25|0.00|2.99|0001AE8F|0|1| +37|2023-10-06T20:26:55.3930000-07:00|40022550|Zeromus|0001AE89|17349018||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:26:55.4820000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750603|45150000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|131602|154276|10000|10000|||99.87|89.59|0.00|3.13|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE90|0|8| +22|2023-10-06T20:26:55.4820000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|14C70000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|113953|127791|3900|10000|||100.16|93.63|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE90|1|8| +22|2023-10-06T20:26:55.4820000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|E5D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|250|10000|||100.05|97.81|0.00|-3.12|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE90|2|8| +22|2023-10-06T20:26:55.4820000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750603|8BD0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|82810|90128|9000|10000|||100.11|98.95|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE90|3|8| +22|2023-10-06T20:26:55.4820000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|15790000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|76373|80739|3765|10000|||100.07|99.09|0.00|2.86|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE90|4|8| +22|2023-10-06T20:26:55.4820000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|16CC0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|74302|79111|8400|10000|||99.93|99.55|0.00|-3.14|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE90|5|8| +22|2023-10-06T20:26:55.4820000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750603|19120000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|85863|90055|9000|10000|||99.81|99.41|0.00|3.13|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE90|6|8| +22|2023-10-06T20:26:55.4820000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|18C40000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|62911|73085|5450|10000|||100.02|100.76|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.00|0001AE90|7|8| +261|2023-10-06T20:26:55.2340000-07:00|Change|10FF0001||| +37|2023-10-06T20:26:55.5270000-07:00|40022550|Zeromus|0001AE8C|17337874||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:55.5270000-07:00|10FF0006|Wowobora Gogobora|77180|80739|3970|10000|||100.07|99.09|0.00|2.86| +20|2023-10-06T20:26:55.5270000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.07|99.09|0.00|2.86| +261|2023-10-06T20:26:55.2340000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:26:55.5710000-07:00|40022550|Zeromus|0001AE8B|17334867||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:55.6160000-07:00|40022550|Zeromus|0001AE83|17311038||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:55.6160000-07:00|10FF0007|Kehabiqo Febiqo|0001AE88|121497||||||99.87|89.59|0.00|3.13| +20|2023-10-06T20:26:55.6610000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|99.93|99.41|0.00|-3.14| +261|2023-10-06T20:26:55.3320000-07:00|Change|10FF0008||||||||||||||||||||| +37|2023-10-06T20:26:55.7940000-07:00|10FF0007|Kehabiqo Febiqo|0001AE90|103812|154276|10000|10000|0||99.87|89.59|0.00|3.13|1500|0|0|01|0D000000|0|0|| +38|2023-10-06T20:26:55.7940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103812|154276|10000|10000|0||99.87|89.59|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:55.7940000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +37|2023-10-06T20:26:55.8390000-07:00|10FF0001|Sesuga Sapisuga|0001AE90|108634|127791|3900|10000|0||100.16|93.63|0.00|-3.13|1301|0|0|01|09000000|0|0|| +37|2023-10-06T20:26:55.8390000-07:00|40022550|Zeromus|0001AE8F|17311001||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:55.8390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108634|127791|3900|10000|0||100.16|93.63|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:55.8390000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:26:55.8830000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE90|77062|80739|250|10000|0||100.05|97.70|0.00|-3.11|1C02|0|0|02|03000000|0|0|||||| +39|2023-10-06T20:26:55.8830000-07:00|10FF0005|Wuwuchu Wuchu|86763|90055|9200|10000|||99.81|99.41|0.00|3.13| +21|2023-10-06T20:26:55.8830000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022550|Zeromus|750003|3EC40000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|17311001|40478540|10000|10000|||100.00|80.10|0.00|0.00|62911|73085|5450|10000|||100.02|100.76|0.00|3.14|0001AE91|0|1| +38|2023-10-06T20:26:55.8830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77062|80739|250|10000|0||100.05|97.70|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:55.8830000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:26:55.8830000-07:00|D25|Holosakos|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:55.8830000-07:00|10FF0003|Gegehi Gehi|005A5A23|62911|73085|5050|10000|11||100.02|100.76|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:55.8830000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:26:55.5190000-07:00|Change|10FF0005||||| +261|2023-10-06T20:26:55.5190000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:26:55.9280000-07:00|10FF0002|Suchichi Suchi|0001AE90|80573|90128|9000|10000|0||100.11|98.95|0.00|-3.13|1603|0|0|01|0|0|0|| +38|2023-10-06T20:26:55.9280000-07:00|10FF0002|Suchichi Suchi|005A5A16|80573|90128|9000|10000|0||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:55.9280000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:26:55.9720000-07:00|10FF0006|Wowobora Gogobora|0001AE90|71683|80739|3970|10000|0||100.08|99.05|0.00|3.05|2804|0|0|01|03000000|0|0|| +21|2023-10-06T20:26:55.9720000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17311001|40478540|10000|10000|||100.00|80.10|0.00|0.00|85863|90055|9000|10000|||99.81|99.41|0.00|3.13|0001AE92|0|1| +38|2023-10-06T20:26:55.9720000-07:00|10FF0006|Wowobora Gogobora|005A5A28|71683|80739|3970|10000|0||100.08|99.05|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:55.9720000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:55.9720000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:26:55.7060000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:26:56.0170000-07:00|10FF0008|Kokosaze Lulusaze|0001AE90|68466|79111|8400|10000|0||99.93|99.41|0.00|3.14|1B05|0|0|01|04000000|0|0|| +37|2023-10-06T20:26:56.0170000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE8A|80739||||||100.05|97.70|0.00|-3.11| +39|2023-10-06T20:26:56.0170000-07:00|10FF0008|Kokosaze Lulusaze|69257|79111|8600|10000|||99.93|99.41|0.00|3.14| +38|2023-10-06T20:26:56.0170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69257|79111|8600|10000|0||99.93|99.41|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:56.0170000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:26:56.0610000-07:00|10FF0005|Wuwuchu Wuchu|0001AE90|80345|90055|9200|10000|0||99.81|99.41|0.00|3.13|2706|0|0|01|02000000|0|0|| +21|2023-10-06T20:26:56.0610000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|710003|38690000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|17311001|40478540|10000|10000|||100.00|80.10|0.00|0.00|86763|90055|9200|10000|||99.81|99.41|0.00|3.13|0001AE93|0|1| +38|2023-10-06T20:26:56.0610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|80345|90055|9200|10000|0||99.81|99.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:56.0610000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:26:56.0610000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +37|2023-10-06T20:26:56.1060000-07:00|10FF0003|Gegehi Gehi|0001AE90|56571|73085|5050|10000|0||100.02|100.76|0.00|-3.14|2307|0|0|02|07000000|0|0|||||| +38|2023-10-06T20:26:56.1060000-07:00|10FF0003|Gegehi Gehi|005A5A23|56571|73085|5050|10000|0||100.02|100.76|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:56.1060000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:26:56.1510000-07:00|10FF0002|Suchichi Suchi|0001AE8A|89232||||||100.11|98.95|0.00|-3.13| +39|2023-10-06T20:26:56.1510000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|450|10000|||100.05|97.70|0.00|-3.11| +261|2023-10-06T20:26:55.8240000-07:00|Change|10FF0004||||||| +21|2023-10-06T20:26:56.1940000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17311001|40478540|10000|10000|||100.00|80.10|0.00|0.00|17311001|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AE94|0|1| +21|2023-10-06T20:26:56.2400000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|23470000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|17311001|40478540|10000|10000|||100.00|80.10|0.00|0.00|89232|90128|9000|10000|||100.11|98.95|0.00|-3.13|0001AE95|0|1| +38|2023-10-06T20:26:56.2400000-07:00|10FF0002|Suchichi Suchi|005A5A16|89232|90128|9000|10000|0||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.2400000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:26:56.2850000-07:00|10FF0006|Wowobora Gogobora|0001AE8A|76822||||||100.08|99.05|0.00|-3.14| +20|2023-10-06T20:26:56.2850000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.05|97.70|0.00|-3.11| +37|2023-10-06T20:26:56.4190000-07:00|10FF0005|Wuwuchu Wuchu|0001AE8A|85596|90055|9200|10000|0||99.81|99.41|0.00|3.13|2703|0|0|01|02000A1B|01|C1F00000|| +21|2023-10-06T20:26:56.4640000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36B80000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|17311001|40478540|10000|10000|||100.00|80.10|0.00|0.00|76822|80739|3970|10000|||100.08|99.05|0.00|-3.14|0001AE96|0|1| +37|2023-10-06T20:26:56.5080000-07:00|40022550|Zeromus|0001AE92|17307584||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:56.5080000-07:00|10FF0005|Wuwuchu Wuchu|0001AE92|85596|90055|9200|10000|0||99.81|99.41|0.00|3.13|2700|0|0|01|02000A1B|01|C1F00000|| +37|2023-10-06T20:26:56.5540000-07:00|10FF0008|Kokosaze Lulusaze|0001AE8A|74462||||||99.93|99.41|0.00|3.14| +261|2023-10-06T20:26:56.2810000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:26:56.5970000-07:00|40022550|Zeromus|0001AE8E|17283939||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:56.5970000-07:00|40022550|Zeromus|0001AE93|17269498||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:56.5970000-07:00|10FF0005|Wuwuchu Wuchu|0001AE93|85596|90055|9200|10000|0||99.81|99.41|0.00|3.13|2700|0|0|01|02000A1B|01|41F00000|| +38|2023-10-06T20:26:56.5970000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|85596|90055|9200|10000|0||99.81|99.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:26:56.6410000-07:00|10FF0002|Suchichi Suchi|HoT|0|11C8|89232|90128|9000|10000|||100.11|98.95|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|108634|127791|3900|10000|||100.16|93.63|0.00|-3.13| +38|2023-10-06T20:26:56.6410000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|9000|10000|0||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:56.6860000-07:00|10FF0003|Gegehi Gehi|0001AE8A|61785|73085|5050|10000|0||100.02|100.76|0.00|-3.14|2305|0|0|01|0A0004D3|0|C1F00000|| +24|2023-10-06T20:26:56.6860000-07:00|10FF0003|Gegehi Gehi|HoT|0|1265|56571|73085|5050|10000|||100.02|100.76|0.00|-3.14|10FF0005|Wuwuchu Wuchu|0|85596|90055|9200|10000|||99.81|99.41|0.00|3.13| +38|2023-10-06T20:26:56.6860000-07:00|10FF0003|Gegehi Gehi|005A5A23|66494|73085|5050|10000|0||100.02|100.76|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:56.7300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17269498|40478540|10000|10000|||100.00|80.10|0.00|0.00|108634|127791|3900|10000|||100.16|93.63|0.00|-3.13|0001AE97|0|1| +31|2023-10-06T20:26:56.7300000-07:00|10FF0001||||| +24|2023-10-06T20:26:56.7750000-07:00|40022A88|Ruby Carbuncle|HoT|0|491|75103|77430|10000|10000|||99.90|97.15|0.00|2.56|10FF0001|Sesuga Sapisuga|0|108634|127791|3900|10000|||100.16|93.63|0.00|-3.13| +38|2023-10-06T20:26:56.7750000-07:00|40022A88|Ruby Carbuncle|005A5A00|76272|77430|10000|10000|0||99.90|97.15|0.00|2.56|0|0|0|||||||||| +37|2023-10-06T20:26:56.8190000-07:00|10FF0001|Sesuga Sapisuga|0001AE8A|117300||||||100.16|93.63|0.00|-3.13| +22|2023-10-06T20:26:56.8650000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|6B100000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|103812|154276|10000|10000|||99.87|89.59|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AE98|0|8| +22|2023-10-06T20:26:56.8650000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|4CE60000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|117300|127791|3900|10000|||100.16|93.63|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AE98|1|8| +22|2023-10-06T20:26:56.8650000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|36590000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AE98|2|8| +22|2023-10-06T20:26:56.8650000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|3B680000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|9000|10000|||100.11|98.95|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AE98|3|8| +22|2023-10-06T20:26:56.8650000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|353C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|76822|80739|3570|10000|||100.08|99.05|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AE98|4|8| +22|2023-10-06T20:26:56.8650000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|37A70000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|74462|79111|8600|10000|||99.93|99.41|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AE98|5|8| +22|2023-10-06T20:26:56.8650000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|3C060000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|85596|90055|9200|10000|||99.81|99.41|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AE98|6|8| +22|2023-10-06T20:26:56.8650000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|38750000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|66494|73085|5050|10000|||100.02|100.76|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AE98|7|8| +39|2023-10-06T20:26:56.8650000-07:00|40022A88|Ruby Carbuncle|76272|77430|10000|10000|||99.90|97.15|0.00|2.17| +24|2023-10-06T20:26:56.8650000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|279E|117300|127791|3900|10000|||100.16|93.63|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|117300|127791|3900|10000|||100.16|93.63|0.00|-3.13| +24|2023-10-06T20:26:56.8650000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|BA7|103812|154276|10000|10000|||99.87|89.59|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14| +24|2023-10-06T20:26:56.8650000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|999|117300|127791|3900|10000|||100.16|93.63|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14| +24|2023-10-06T20:26:56.8650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|975|80739|80739|450|10000|||100.05|97.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14| +24|2023-10-06T20:26:56.8650000-07:00|10FF0002|Suchichi Suchi|HoT|798|99A|90128|90128|9000|10000|||100.11|98.95|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14| +24|2023-10-06T20:26:56.8650000-07:00|10FF0006|Wowobora Gogobora|HoT|798|F64|76822|80739|3570|10000|||100.08|99.05|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14| +24|2023-10-06T20:26:56.8650000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|FBA|74462|79111|8600|10000|||99.93|99.41|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14| +24|2023-10-06T20:26:56.8650000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|9C0|85596|90055|9200|10000|||99.81|99.41|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14| +24|2023-10-06T20:26:56.8650000-07:00|10FF0003|Gegehi Gehi|HoT|798|97F|66494|73085|5050|10000|||100.02|100.76|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|450|10000|||100.05|97.70|0.00|-3.14| +24|2023-10-06T20:26:56.8650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|118D|80739|80739|450|10000|||100.05|97.70|0.00|-3.14|10FF0001|Sesuga Sapisuga|0|117300|127791|3900|10000|||100.16|93.63|0.00|-3.13| +38|2023-10-06T20:26:56.8650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106795|154276|10000|10000|0||99.87|89.59|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.8650000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +26|2023-10-06T20:26:56.8650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:26:56.8650000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|9000|10000|0||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.8650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:56.8650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|78488|79111|8600|10000|0||99.93|99.41|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.8650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:56.8650000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3570|10000|0||100.08|99.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.8650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:56.8650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|3900|10000|0||100.16|93.63|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.8650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:56.8650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|450|10000|0||100.05|97.70|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.8650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:56.8650000-07:00|10FF0003|Gegehi Gehi|005A5A23|68925|73085|5050|10000|0||100.02|100.76|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.8650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:56.8650000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88092|90055|9200|10000|0||99.81|99.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.8650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:26:56.9540000-07:00|10FF0007|Kehabiqo Febiqo|0001AE8A|113165||||||99.87|89.59|0.00|3.13| +24|2023-10-06T20:26:56.9540000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1169|85596|90055|9200|10000|||99.81|99.41|0.00|3.13|10FF0001|Sesuga Sapisuga|0|117300|127791|3900|10000|||100.16|93.63|0.00|-3.13| +21|2023-10-06T20:26:56.9540000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|3E270000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|17269498|40478540|10000|10000|||100.00|80.10|0.00|0.00|117300|127791|3900|10000|||100.16|93.63|0.00|-3.13|0001AE99|0|1| +38|2023-10-06T20:26:56.9540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|3900|10000|0||100.16|93.63|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:56.9540000-07:00|76E|Sword Oath|25.46|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +38|2023-10-06T20:26:56.9540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|9200|10000|0||99.81|99.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:56.9970000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|154E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|68925|73085|5050|10000|||100.02|100.76|0.00|-3.14|76272|77430|10000|10000|||99.90|97.15|0.00|1.79|0001AE9A|0|1| +24|2023-10-06T20:26:56.9970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1232|80739|80739|3570|10000|||100.08|99.05|0.00|-3.14|10FF0001|Sesuga Sapisuga|0|127791|127791|3900|10000|||100.16|93.63|0.00|-3.13| +38|2023-10-06T20:26:56.9970000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3570|10000|0||100.08|99.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:56.6590000-07:00|Change|10FF0008||||||| +24|2023-10-06T20:26:57.1310000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|293C|113165|154276|10000|10000|||99.87|89.59|0.00|3.13|10FF0006|Wowobora Gogobora|1|80739|80739|3570|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:26:57.1310000-07:00|40022550|Zeromus|0001AE96|17255490||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:57.1310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123721|154276|10000|10000|0||99.87|89.59|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:57.1750000-07:00|10FF0007|Kehabiqo Febiqo|0001AE98|96313||||||99.87|89.59|0.00|3.13| +37|2023-10-06T20:26:57.2210000-07:00|10FF0001|Sesuga Sapisuga|0001AE98|108105||||||100.16|93.63|0.00|-3.13| +21|2023-10-06T20:26:57.2210000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|3AB40000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|17255490|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|450|10000|||100.05|97.70|0.00|-3.14|0001AE9B|0|1| +04|2023-10-06T20:26:56.8990000-07:00|40022AFB|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||101.27|100.24|0.00|0.17| +261|2023-10-06T20:26:56.8990000-07:00|Change|10FF0004||||| +261|2023-10-06T20:26:56.8990000-07:00|Remove|40022AFB| +37|2023-10-06T20:26:57.2650000-07:00|10FF0004|Buhojaqe Zijaqe|0001AE98|66826||||||100.05|97.70|0.00|-3.14| +37|2023-10-06T20:26:57.2650000-07:00|40022550|Zeromus|0001AE97|17253746||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:57.2650000-07:00|10FF0007|Kehabiqo Febiqo|97855|154276|10000|10000|||99.87|89.59|0.00|3.13| +37|2023-10-06T20:26:57.3100000-07:00|10FF0002|Suchichi Suchi|0001AE98|74920|90128|9000|10000|0||100.11|98.95|0.00|-3.13|1603|0|0|01|04000AA0|0|C1F00000|| +37|2023-10-06T20:26:57.3100000-07:00|40022550|Zeromus|0001AE91|17237678||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:57.3100000-07:00|10FF0003|Gegehi Gehi|0001AE91|68925|73085|5050|10000|0||100.02|100.76|0.00|-3.14|2300|0|0|01|0A0004D3|0|41F00000|| +21|2023-10-06T20:26:57.3100000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|34A50000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|17253746|40478540|10000|10000|||100.00|80.10|0.00|0.00|97855|154276|10000|10000|||99.87|89.59|0.00|3.13|0001AE9C|0|1| +38|2023-10-06T20:26:57.3100000-07:00|10FF0003|Gegehi Gehi|005A5A23|68925|73085|5050|10000|0||100.02|100.76|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:57.3540000-07:00|10FF0006|Wowobora Gogobora|0001AE98|67111||||||100.08|99.05|0.00|-3.14| +39|2023-10-06T20:26:57.3540000-07:00|10FF0003|Gegehi Gehi|69655|73085|5250|10000|||100.02|100.76|0.00|-3.14| +261|2023-10-06T20:26:57.0160000-07:00|Change|10FF0003||| +37|2023-10-06T20:26:57.3980000-07:00|10FF0008|Kokosaze Lulusaze|0001AE98|64241||||||99.93|99.41|0.00|3.14| +37|2023-10-06T20:26:57.4440000-07:00|10FF0005|Wuwuchu Wuchu|0001AE98|74689||||||99.81|99.41|0.00|3.13| +39|2023-10-06T20:26:57.4440000-07:00|10FF0002|Suchichi Suchi|75821|90128|9200|10000|||100.11|98.95|0.00|-3.13| +21|2023-10-06T20:26:57.4440000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|E8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17237678|40478540|10000|10000|||100.00|80.10|0.00|0.00|74920|90128|9000|10000|||100.11|98.95|0.00|-3.13|0001AE9D|0|1| +261|2023-10-06T20:26:57.1370000-07:00|Change|10FF0002||| +37|2023-10-06T20:26:57.4890000-07:00|10FF0003|Gegehi Gehi|0001AE98|55202||||||100.02|100.76|0.00|-3.14| +21|2023-10-06T20:26:57.4890000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B716003|87F10000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|17237678|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|9200|10000|||99.81|99.41|0.00|3.13|0001AE9E|0|1| +38|2023-10-06T20:26:57.4890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74689|90055|9200|10000|0||99.81|99.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:57.4890000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:26:57.4890000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:26:57.4890000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:26:57.5320000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|122D|97855|154276|10000|10000|||99.87|89.59|0.00|3.13|10FF0006|Wowobora Gogobora|0|67111|80739|3570|10000|||100.08|99.05|0.00|-3.14| +24|2023-10-06T20:26:57.5320000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|195C|64241|79111|8600|10000|||99.93|99.41|0.00|3.14|10FF0008|Kokosaze Lulusaze|0|64241|79111|8600|10000|||99.93|99.41|0.00|3.14| +38|2023-10-06T20:26:57.5320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102508|154276|10000|10000|0||99.87|89.59|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:57.5320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70733|79111|8600|10000|0||99.93|99.41|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:57.5770000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17237678|40478540|10000|10000|||100.00|80.10|0.00|0.00|17237678|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AE9F|0|1| +21|2023-10-06T20:26:57.6660000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17237678|40478540|10000|10000|||100.00|80.10|0.00|0.00|55202|73085|5250|10000|||100.02|100.76|0.00|-3.14|0001AEA0|0|1| +37|2023-10-06T20:26:57.8000000-07:00|10FF0003|Gegehi Gehi|0001AE9A|60656||||||100.02|100.76|0.00|-3.14| +21|2023-10-06T20:26:57.8460000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1FB10000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|102508|154276|10000|10000|||99.87|89.59|0.00|3.13|17237678|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AEA1|0|1| +37|2023-10-06T20:26:57.8900000-07:00|40022550|Zeromus|0001AE95|17228647||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:57.8900000-07:00|10FF0002|Suchichi Suchi|0001AE95|75821|90128|9200|10000|0||100.11|98.95|0.00|-3.13|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:26:57.8900000-07:00|10FF0002|Suchichi Suchi|005A5A16|75821|90128|9200|10000|0||100.11|98.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:57.9350000-07:00|40022550|Zeromus|0001AE9C|17215170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:57.9800000-07:00|40022550|Zeromus|0001AE9D|17211443||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:57.9800000-07:00|40022550|Zeromus|0001AE9E|17176642||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:57.9800000-07:00|10FF0005|Wuwuchu Wuchu|0001AE9E|74689|90055|9200|10000|0||99.81|99.41|0.00|3.11|2700|0|0|01|02000A1D|0|42700000|| +20|2023-10-06T20:26:57.9800000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.08|99.05|0.00|-3.14| +38|2023-10-06T20:26:57.9800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74689|90055|9200|10000|0||99.81|99.41|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:57.6320000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:26:58.0250000-07:00|40022550|Zeromus|0001AE9B|17161614||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:26:58.0250000-07:00|10FF0001|Sesuga Sapisuga|109382|127791|4100|10000|||100.16|93.63|0.00|-3.13| +38|2023-10-06T20:26:58.0710000-07:00|40022550|Zeromus|005A5A00|17161614|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:26:58.0710000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +21|2023-10-06T20:26:58.1140000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|350003|41780000|16C00F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|17176642|40478540|10000|10000|||100.00|80.10|0.00|0.00|70733|79111|8600|10000|||99.93|99.41|0.00|3.14|0001AEA2|0|1| +38|2023-10-06T20:26:58.1140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70733|79111|8600|10000|0||99.93|99.41|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:58.1140000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:26:58.1590000-07:00|10FF0002|Suchichi Suchi|005A5A16|75821|90128|9200|10000|0||100.11|98.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:58.1590000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|90128|127791| +38|2023-10-06T20:26:58.1590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70733|79111|8600|10000|0||99.93|99.41|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:58.1590000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|79111|127791| +38|2023-10-06T20:26:58.1590000-07:00|40022A88|Ruby Carbuncle|005A5A00|76272|77430|10000|10000|0||99.90|97.15|0.00|0.03|0|0|0||||||| +30|2023-10-06T20:26:58.1590000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|40022A88|Ruby Carbuncle|00|77430|127791| +38|2023-10-06T20:26:58.1590000-07:00|10FF0006|Wowobora Gogobora|005A5A28|67111|80739|3570|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:58.1590000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:26:58.1590000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|80739|127791| +38|2023-10-06T20:26:58.1590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66826|80739|50|10000|0||100.05|97.69|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:58.1590000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|80739|127791| +38|2023-10-06T20:26:58.1590000-07:00|10FF0003|Gegehi Gehi|005A5A23|60656|73085|5250|10000|0||100.02|100.76|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:58.1590000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73085|127791| +38|2023-10-06T20:26:58.1590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74689|90055|9200|10000|0||99.81|99.41|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:58.1590000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|90055|127791| +261|2023-10-06T20:26:57.8280000-07:00|Change|10FF0001||| +261|2023-10-06T20:26:57.8280000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:26:58.2040000-07:00|40022550|Zeromus|0001AEA0|17161613||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:58.2040000-07:00|40022550|Zeromus|DoT|0|18E5|17161614|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|70733|79111|8600|10000|||99.93|99.41|0.00|3.14| +21|2023-10-06T20:26:58.2040000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17161614|40478540|10000|10000|||100.00|80.10|0.00|0.00|66826|80739|50|10000|||100.07|97.66|0.00|3.04|0001AEA3|0|1| +38|2023-10-06T20:26:58.2040000-07:00|40022550|Zeromus|005A5A00|17155240|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T20:26:58.2480000-07:00|40022550|Zeromus|0001AE99|17139329||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:58.2480000-07:00|10FF0001|Sesuga Sapisuga|0001AE99|109382|127791|4500|10000|0||100.16|93.63|0.00|-3.13|1300|0|0|0| +22|2023-10-06T20:26:58.2480000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|68030000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|102508|154276|10000|10000|||99.87|89.59|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEA4|0|8| +22|2023-10-06T20:26:58.2480000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750205|3BB00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|109382|127791|4100|10000|||100.16|93.63|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEA4|1|8| +22|2023-10-06T20:26:58.2480000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|43AF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|66826|80739|50|10000|||100.07|97.66|0.00|3.04|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEA4|2|8| +22|2023-10-06T20:26:58.2480000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|45250000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|75821|90128|9200|10000|||100.11|98.95|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEA4|3|8| +22|2023-10-06T20:26:58.2480000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|43F90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|67111|80739|3570|10000|||100.08|99.05|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEA4|4|8| +22|2023-10-06T20:26:58.2480000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|3FA60000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|70733|79111|8600|10000|||99.93|99.41|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEA4|5|8| +22|2023-10-06T20:26:58.2480000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|44DB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|74689|90055|9200|10000|||99.81|99.41|0.00|3.06|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEA4|6|8| +22|2023-10-06T20:26:58.2480000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|42FC0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|60656|73085|5250|10000|||100.02|100.76|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEA4|7|8| +21|2023-10-06T20:26:58.2930000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|750003|440A0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|17161614|40478540|10000|10000|||100.00|80.10|0.00|0.00|60656|73085|5250|10000|||100.02|100.76|0.00|-3.14|0001AEA5|0|1| +261|2023-10-06T20:26:57.9390000-07:00|Change|10FF0003||| +21|2023-10-06T20:26:58.4250000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B8A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17139329|40478540|10000|10000|||100.00|80.10|0.00|0.00|102508|154276|10000|10000|||99.87|89.59|0.00|3.13|0001AEA6|0|1| +39|2023-10-06T20:26:58.5150000-07:00|10FF0006|Wowobora Gogobora|67918|80739|3775|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:26:58.5590000-07:00|10FF0007|Kehabiqo Febiqo|0001AEA4|75881||||||99.87|89.59|0.00|3.13| +37|2023-10-06T20:26:58.6030000-07:00|10FF0001|Sesuga Sapisuga|0001AEA4|94102||||||100.16|93.63|0.00|-3.13| +37|2023-10-06T20:26:58.6470000-07:00|10FF0007|Kehabiqo Febiqo|0001AEA1|67768||||||99.87|89.59|0.00|3.13| +37|2023-10-06T20:26:58.6470000-07:00|10FF0004|Buhojaqe Zijaqe|0001AEA4|49499||||||100.10|97.61|0.00|2.77| +37|2023-10-06T20:26:58.6910000-07:00|10FF0002|Suchichi Suchi|0001AEA4|58120||||||100.11|98.95|0.00|-3.13| +37|2023-10-06T20:26:58.7370000-07:00|10FF0006|Wowobora Gogobora|0001AEA4|50517||||||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:26:58.7370000-07:00|40022550|Zeromus|0001AEA3|17139209||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:58.7370000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0001|Sesuga Sapisuga|6400F60E|7420000|F60E|A770000|8E0E|A780000|90A3000F|7418000|0|0|0|0|0|0|0|0|94102|127791|4500|10000|||100.16|93.63|0.00|-3.13|67768|154276|10000|10000|||99.87|89.59|0.00|3.13|0001AEA7|0|1| +21|2023-10-06T20:26:58.7370000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42722003|3F7B0000|171D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|17139329|40478540|10000|10000|||100.00|80.10|0.00|0.00|58120|90128|9200|10000|||100.11|98.95|0.00|-3.13|0001AEA8|0|1| +38|2023-10-06T20:26:58.7370000-07:00|10FF0002|Suchichi Suchi|005A5A16|58120|90128|9200|10000|0||100.11|98.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:58.7370000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:26:58.7820000-07:00|10FF0008|Kokosaze Lulusaze|0001AEA4|54439||||||99.93|99.41|0.00|3.14| +37|2023-10-06T20:26:58.8250000-07:00|10FF0005|Wuwuchu Wuchu|0001AEA4|57062||||||99.81|99.41|0.00|3.05| +37|2023-10-06T20:26:58.8710000-07:00|10FF0003|Gegehi Gehi|0001AEA4|43508||||||100.02|100.76|0.00|-3.14| +39|2023-10-06T20:26:58.8710000-07:00|10FF0005|Wuwuchu Wuchu|57962|90055|9400|10000|||99.81|99.41|0.00|3.05| +261|2023-10-06T20:26:58.4830000-07:00|Change|10FF0005||||| +21|2023-10-06T20:26:58.9160000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|34F70000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|17139209|40478540|10000|10000|||100.00|80.10|0.00|0.00|50517|80739|3775|10000|||100.08|99.05|0.00|-3.14|0001AEA9|0|1| +37|2023-10-06T20:26:58.9600000-07:00|40022550|Zeromus|0001AEA6|17136255||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:58.9600000-07:00|40022550|Zeromus|8B39|Sable Thread|40022550|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17139209|40478540|10000|10000|||100.00|80.10|0.00|0.00|17139209|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AEAA|0|1| +21|2023-10-06T20:26:59.0060000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|69C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17139209|40478540|10000|10000|||100.00|80.10|0.00|0.00|94102|127791|4500|10000|||100.15|93.75|0.00|-2.90|0001AEAB|0|1| +31|2023-10-06T20:26:59.0060000-07:00|10FF0001||||| +261|2023-10-06T20:26:58.6960000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:26:59.0490000-07:00|10FF0008|Kokosaze Lulusaze|55230|79111|8800|10000|||99.93|99.41|0.00|3.14| +24|2023-10-06T20:26:59.1390000-07:00|40022550|Zeromus|DoT|A92|4C2|17136255|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|55230|79111|8800|10000|||99.93|99.41|0.00|3.14| +37|2023-10-06T20:26:59.1390000-07:00|40022550|Zeromus|0001AEA2|17118277||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:59.1390000-07:00|10FF0008|Kokosaze Lulusaze|0001AEA2|55230|79111|8800|10000|0||99.93|99.41|0.00|3.14|1B00|0|0|01|02000A92|0|41700000|| +26|2023-10-06T20:26:59.1390000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +39|2023-10-06T20:26:59.1390000-07:00|10FF0004|Buhojaqe Zijaqe|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +21|2023-10-06T20:26:59.1390000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2D900000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|17136255|40478540|10000|10000|||100.00|80.10|0.00|0.00|55230|79111|8800|10000|||99.93|99.41|0.00|3.14|0001AEAC|0|1| +38|2023-10-06T20:26:59.1390000-07:00|40022550|Zeromus|005A5A00|17118277|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:26:58.8170000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:26:59.1830000-07:00|40022550|Zeromus|0001AEA8|17102026|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A9F|0|41C00000|| +26|2023-10-06T20:26:59.1830000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:26:59.1830000-07:00|10FF0002|Suchichi Suchi|0001AEA8|58120|90128|9200|10000|0||100.11|98.95|0.00|-3.13|1600|0|0|01|0323|0|41F00000|| +21|2023-10-06T20:26:59.1830000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|F9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17136255|40478540|10000|10000|||100.00|80.10|0.00|0.00|57962|90055|9400|10000|||99.81|99.41|0.00|3.05|0001AEAD|0|1| +38|2023-10-06T20:26:59.1830000-07:00|10FF0002|Suchichi Suchi|005A5A16|58120|90128|9200|10000|0||100.11|98.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:59.1830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|94102|127791|4500|10000|0||100.14|93.92|0.00|-0.81|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:59.1830000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:26:58.8170000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:26:58.8170000-07:00|Change|10FF0008||| +261|2023-10-06T20:26:58.8170000-07:00|Add|40022B10||||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:59.0490000-07:00|Change|40022B08||||| +38|2023-10-06T20:26:59.3600000-07:00|40022B11||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:26:59.3600000-07:00|10FF0001|Sesuga Sapisuga|0001AEA7|94102|127791|4500|10000|7||100.14|93.92|0.00|-3.13|1300|0|0|03|09000742|64|41000000|||||||||| +26|2023-10-06T20:26:59.3600000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|127791|154276| +26|2023-10-06T20:26:59.3600000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|154276| +26|2023-10-06T20:26:59.3600000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|154276| +37|2023-10-06T20:26:59.3600000-07:00|10FF0007|Kehabiqo Febiqo|0001AEA7|67768|154276|10000|10000|0||99.87|89.59|0.00|0.07|1500|0|0|01|0D000741|0190|41000000|| +26|2023-10-06T20:26:59.3600000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|154276|154276| +38|2023-10-06T20:26:59.3610000-07:00|40022B11||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:26:59.3610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|94102|127791|4500|10000|7||100.14|93.92|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:26:59.4500000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|3F2B0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|17102026|40478540|10000|10000|||100.00|80.10|0.00|0.00|94102|127791|4500|10000|||100.14|93.92|0.00|-3.13|0001AEAE|0|1| +38|2023-10-06T20:26:59.4500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|94102|127791|4500|10000|7||100.14|93.92|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.4500000-07:00|76E|Sword Oath|22.96|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:26:59.5390000-07:00|40022550|Zeromus|0001AEAB|17100334||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:26:59.5850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|2937|67768|154276|10000|10000|||99.87|89.59|0.00|0.07|10FF0006|Wowobora Gogobora|1|50517|80739|3375|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:26:59.5850000-07:00|40022550|Zeromus|0001AEA9|17086775||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:26:59.5850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|78319|154276|10000|10000|0||99.87|89.59|0.00|0.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.5850000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +22|2023-10-06T20:26:59.6290000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|671A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|67768|154276|10000|10000|||99.87|89.59|0.00|0.07|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEAF|0|8| +22|2023-10-06T20:26:59.6290000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750305|131D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|94102|127791|4500|10000|||100.14|93.92|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEAF|1|8| +22|2023-10-06T20:26:59.6290000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|3FD80000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEAF|2|8| +22|2023-10-06T20:26:59.6290000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|40C20000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|50517|80739|3375|10000|||100.08|99.05|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEAF|3|8| +22|2023-10-06T20:26:59.6290000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|3FE50000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|55230|79111|8500|10000|||99.93|99.41|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEAF|4|8| +22|2023-10-06T20:26:59.6290000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|457C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|57962|90055|9400|10000|||99.81|99.41|0.00|3.05|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEAF|5|8| +22|2023-10-06T20:26:59.6290000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|436F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|58120|90128|9200|10000|||100.17|98.93|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEAF|6|8| +22|2023-10-06T20:26:59.6290000-07:00|4002256D|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|3F930000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|43508|73085|4850|10000|||99.99|101.15|0.00|-0.76|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEAF|7|8| +24|2023-10-06T20:26:59.6290000-07:00|10FF0002|Suchichi Suchi|HoT|0|198E|58120|90128|9200|10000|||100.17|98.93|0.00|-3.12|10FF0006|Wowobora Gogobora|0|50517|80739|3375|10000|||100.08|99.05|0.00|-3.14| +38|2023-10-06T20:26:59.6290000-07:00|10FF0002|Suchichi Suchi|005A5A16|64662|90128|9200|10000|0||100.17|98.93|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:26:59.2730000-07:00|Add|40022B11||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:26:59.2730000-07:00|40022B11|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||99.96|97.67|0.00|0.00| +261|2023-10-06T20:26:59.3690000-07:00|Change|40022B11||| +24|2023-10-06T20:26:59.6730000-07:00|10FF0003|Gegehi Gehi|HoT|0|10E6|43508|73085|4850|10000|||99.99|101.25|0.00|-0.51|10FF0003|Gegehi Gehi|0|43508|73085|4850|10000|||99.99|101.25|0.00|-0.51| +38|2023-10-06T20:26:59.6730000-07:00|10FF0003|Gegehi Gehi|005A5A23|47834|73085|4850|10000|0||99.99|101.25|0.00|-0.51|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:59.7180000-07:00|40022550|Zeromus|0001AEAD|17082781||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:26:59.7620000-07:00|40022550|Zeromus|0001AEAC|17071117||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:26:59.7620000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F712003|51CD0000|143E|340000|204|26278000|4|1B798000|11B|2A8000|0|0|0|0|0|0|17082781|40478540|10000|10000|||100.00|80.10|0.00|0.00|78319|154276|10000|10000|||99.87|89.59|0.00|0.06|0001AEB0|0|1| +24|2023-10-06T20:26:59.8070000-07:00|40022A88|Ruby Carbuncle|HoT|0|4D4|76272|77430|10000|10000|||99.90|97.15|0.00|3.14|10FF0005|Wuwuchu Wuchu|0|57962|90055|9400|10000|||99.81|99.41|0.00|3.05| +38|2023-10-06T20:26:59.8070000-07:00|40022A88|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0||||||| +24|2023-10-06T20:26:59.8530000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2F8E|94102|127791|4500|10000|||100.15|93.66|0.00|3.08|10FF0007|Kehabiqo Febiqo|0|78319|154276|10000|10000|||99.87|89.59|0.00|0.06| +24|2023-10-06T20:26:59.8530000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|BCE|78319|154276|10000|10000|||99.87|89.59|0.00|0.06|10FF0004|Buhojaqe Zijaqe|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +24|2023-10-06T20:26:59.8530000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|983|94102|127791|4500|10000|||100.15|93.66|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +24|2023-10-06T20:26:59.8530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|982|50306|80739|250|10000|||100.11|97.58|0.00|2.65|10FF0004|Buhojaqe Zijaqe|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +24|2023-10-06T20:26:59.8530000-07:00|10FF0006|Wowobora Gogobora|HoT|798|FEE|50517|80739|3375|10000|||100.08|99.05|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +24|2023-10-06T20:26:59.8530000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|9B3|55230|79111|8500|10000|||99.93|99.41|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +24|2023-10-06T20:26:59.8530000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|1027|57962|90055|9400|10000|||99.81|99.41|0.00|3.05|10FF0004|Buhojaqe Zijaqe|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +24|2023-10-06T20:26:59.8530000-07:00|10FF0002|Suchichi Suchi|HoT|798|98A|64662|90128|9200|10000|||100.27|99.43|0.00|2.03|10FF0004|Buhojaqe Zijaqe|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +24|2023-10-06T20:26:59.8530000-07:00|10FF0003|Gegehi Gehi|HoT|798|9CF|47834|73085|4850|10000|||99.99|101.34|0.00|-0.29|10FF0004|Buhojaqe Zijaqe|0|50306|80739|250|10000|||100.11|97.58|0.00|2.65| +24|2023-10-06T20:26:59.8530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1258|50306|80739|250|10000|||100.11|97.58|0.00|2.65|10FF0005|Wuwuchu Wuchu|0|57962|90055|9400|10000|||99.81|99.41|0.00|3.05| +38|2023-10-06T20:26:59.8530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81341|154276|10000|10000|0||99.87|89.59|0.00|0.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.8530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:26:59.8530000-07:00|10FF0002|Suchichi Suchi|005A5A16|67104|90128|9200|10000|0||100.27|99.43|0.00|2.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.8530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:26:59.8530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|57713|79111|8500|10000|0||99.93|99.41|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.8530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:26:59.8530000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54595|80739|3375|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.8530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:26:59.8530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108711|127791|4500|10000|7||100.15|93.66|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.8530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:26:59.8530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57436|80739|250|10000|0||100.11|97.58|0.00|2.65|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.8530000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:26:59.8530000-07:00|10FF0003|Gegehi Gehi|005A5A23|50345|73085|4850|10000|0||99.99|101.34|0.00|-0.29|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.8530000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:26:59.8530000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62097|90055|9400|10000|0||99.81|99.41|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:26:59.8530000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:26:59.8960000-07:00|40022A88|Ruby Carbuncle|77430|77430|10000|10000|||99.90|97.15|0.00|3.14| +21|2023-10-06T20:26:59.8960000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17071117|40478540|10000|10000|||100.00|80.10|0.00|0.00|57713|79111|8500|10000|||99.93|99.41|0.00|3.14|0001AEB1|0|1| +37|2023-10-06T20:26:59.9410000-07:00|10FF0007|Kehabiqo Febiqo|0001AEAF|54947||||||99.87|89.59|0.00|3.13| +24|2023-10-06T20:26:59.9410000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|117B|62097|90055|9400|10000|||99.81|99.41|0.00|3.05|10FF0006|Wowobora Gogobora|0|54595|80739|3375|10000|||100.08|99.05|0.00|-3.14| +21|2023-10-06T20:26:59.9410000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|710003|3E670000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|17071117|40478540|10000|10000|||100.00|80.10|0.00|0.00|62097|90055|9400|10000|||99.81|99.41|0.00|3.05|0001AEB2|0|1| +38|2023-10-06T20:26:59.9410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|66572|90055|9400|10000|0||99.81|99.41|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:26:59.9860000-07:00|10FF0001|Sesuga Sapisuga|0001AEAF|103818|127791|4500|10000|0||100.15|93.66|0.00|3.08|1301|0|0|01|0E000000|0|0|| +24|2023-10-06T20:26:59.9860000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1984|54595|80739|3375|10000|||100.08|99.05|0.00|-3.14|10FF0005|Wuwuchu Wuchu|0|66572|90055|9400|10000|||99.81|99.41|0.00|3.13| +38|2023-10-06T20:26:59.9860000-07:00|10FF0006|Wowobora Gogobora|005A5A28|61127|80739|3375|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:26:59.9860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103818|127791|4500|10000|0||100.15|93.66|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:26:59.9860000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|154276| +37|2023-10-06T20:27:00.0300000-07:00|10FF0004|Buhojaqe Zijaqe|0001AEAF|41092||||||100.11|97.58|0.00|2.65| +37|2023-10-06T20:27:00.0750000-07:00|10FF0006|Wowobora Gogobora|0001AEAF|44549||||||100.08|99.05|0.00|-3.14| +21|2023-10-06T20:27:00.0750000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17071117|40478540|10000|10000|||100.00|80.10|0.00|0.00|54595|80739|3375|10000|||100.08|99.05|0.00|-3.14|0001AEB3|0|1| +37|2023-10-06T20:27:00.1200000-07:00|10FF0008|Kokosaze Lulusaze|0001AEAF|41356||||||99.93|99.41|0.00|3.14| +37|2023-10-06T20:27:00.1200000-07:00|40022550|Zeromus|0001AEA5|17053699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:00.1640000-07:00|10FF0005|Wuwuchu Wuchu|0001AEAF|48784||||||99.81|99.41|0.00|3.13| +37|2023-10-06T20:27:00.2090000-07:00|10FF0002|Suchichi Suchi|0001AEAF|49841||||||100.69|99.87|0.00|2.39| +37|2023-10-06T20:27:00.2540000-07:00|10FF0003|Gegehi Gehi|0001AEAF|34070||||||99.99|101.43|0.00|-0.05| +39|2023-10-06T20:27:00.2540000-07:00|10FF0007|Kehabiqo Febiqo|56489|154276|10000|10000|||99.87|89.59|0.00|3.13| +21|2023-10-06T20:27:00.2540000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17053699|40478540|10000|10000|||100.00|80.10|0.00|0.00|67104|90128|9200|10000|||100.69|99.87|0.00|2.39|0001AEB4|0|1| +21|2023-10-06T20:27:00.3430000-07:00|40022550|Zeromus|8B3A|Sable Thread|40022550|Zeromus|49|8000|1B|8B3A8000|0|0|0|0|0|0|0|0|0|0|0|0|17053699|40478540|10000|10000|||100.00|80.10|0.00|0.00|17053699|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AEB5|0|1| +261|2023-10-06T20:27:00.1060000-07:00|Change|40022B11||| +39|2023-10-06T20:27:00.3880000-07:00|10FF0003|Gegehi Gehi|34800|73085|5050|10000|||99.99|101.43|0.00|-0.05| +20|2023-10-06T20:27:00.3880000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.08|99.05|0.00|-3.14| +261|2023-10-06T20:27:00.1060000-07:00|Change|10FF0003||||||||| +34|2023-10-06T20:27:00.3880000-07:00|40022B11|Carbuncle|40022B11|Carbuncle|01| +261|2023-10-06T20:27:00.1060000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:27:00.4330000-07:00|40022550|Zeromus|0001AEB1|17053467||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:00.4770000-07:00|10FF0002|Suchichi Suchi|50742|90128|9400|10000|||100.90|99.99|-0.01|3.14| +261|2023-10-06T20:27:00.2040000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:27:00.5220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1236|56489|154276|10000|10000|||99.87|89.59|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|56489|154276|10000|10000|||99.87|89.59|0.00|3.13| +24|2023-10-06T20:27:00.5220000-07:00|40022550|Zeromus|DoT|A92|7A3|17053467|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|41356|79111|8500|10000|||99.93|99.41|0.00|3.14| +24|2023-10-06T20:27:00.5220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|115D|41356|79111|8500|10000|||99.93|99.41|0.00|3.14|10FF0005|Wuwuchu Wuchu|0|48784|90055|9400|10000|||99.81|99.41|0.00|3.13| +38|2023-10-06T20:27:00.5220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|61151|154276|10000|10000|0||99.87|89.59|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:00.5220000-07:00|40022550|Zeromus|005A5A00|17051512|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T20:27:00.5220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|45801|79111|8500|10000|0||99.93|99.41|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:00.6110000-07:00|40022550|Zeromus|0001AEB3|17051475||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:00.6560000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|356003|4A0B0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|17051475|40478540|10000|10000|||100.00|80.10|0.00|0.00|45801|79111|8500|10000|||99.93|99.41|0.00|3.14|0001AEB6|0|1| +261|2023-10-06T20:27:00.2940000-07:00|Change|10FF0008||| +21|2023-10-06T20:27:00.7010000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|710003|347F0000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|17051475|40478540|10000|10000|||100.00|80.10|0.00|0.00|48784|90055|9400|10000|||99.81|99.41|0.00|3.13|0001AEB7|0|1| +38|2023-10-06T20:27:00.7010000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|48784|90055|9400|10000|0||99.81|99.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:00.7010000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +37|2023-10-06T20:27:00.7450000-07:00|40022550|Zeromus|0001AEAE|17035304||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:00.7450000-07:00|10FF0001|Sesuga Sapisuga|0001AEAE|103818|127791|4900|10000|0||100.15|93.66|0.00|3.08|1300|0|0|0| +21|2023-10-06T20:27:00.7450000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|754003|64B80000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|17035304|40478540|10000|10000|||100.00|80.10|0.00|0.00|34800|73085|4650|10000|||99.99|101.43|0.00|-3.14|0001AEB8|0|1| +261|2023-10-06T20:27:00.3860000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:00.7900000-07:00|40022550|Zeromus|0001AEB4|17032384||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:00.8790000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|155A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|34800|73085|4650|10000|||99.99|101.43|0.00|-3.14|77430|77430|10000|10000|||99.90|97.15|0.00|1.69|0001AEB9|0|1| +21|2023-10-06T20:27:00.8790000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1F310000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|61151|154276|10000|10000|||99.87|89.59|0.00|3.13|17032384|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AEBA|0|1| +261|2023-10-06T20:27:00.4820000-07:00|Change|10FF0003||||| +37|2023-10-06T20:27:00.9680000-07:00|40022550|Zeromus|0001AEB2|17016409||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:00.9680000-07:00|10FF0005|Wuwuchu Wuchu|0001AEB2|48784|90055|9400|10000|0||99.81|99.41|0.00|3.10|2700|0|0|01|05000A1B|01|C1F00000|| +39|2023-10-06T20:27:01.0120000-07:00|10FF0001|Sesuga Sapisuga|105095|127791|5100|10000|||100.15|93.66|0.00|3.08| +21|2023-10-06T20:27:01.1450000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17016409|40478540|10000|10000|||100.00|80.10|0.00|0.00|34800|73085|4650|10000|||99.99|101.43|0.00|-3.14|0001AEBB|0|1| +24|2023-10-06T20:27:01.1900000-07:00|40022550|Zeromus|DoT|0|288D|17016409|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|45801|79111|8200|10000|||99.93|99.41|0.00|3.14| +38|2023-10-06T20:27:01.1900000-07:00|40022550|Zeromus|005A5A00|17006028|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T20:27:01.2340000-07:00|40022550|Zeromus|0001AEB7|16992589||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:01.2340000-07:00|10FF0005|Wuwuchu Wuchu|0001AEB7|48784|90055|9400|10000|0||99.81|99.41|0.00|3.05|2700|0|0|01|05000A1B|01|41F00000|| +21|2023-10-06T20:27:01.2350000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D726003|542D0000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|17006028|40478540|10000|10000|||100.00|80.10|0.00|0.00|50742|90128|9400|10000|||100.91|99.99|0.00|-3.13|0001AEBC|0|1| +38|2023-10-06T20:27:01.2350000-07:00|10FF0002|Suchichi Suchi|005A5A16|50742|90128|9400|10000|0||100.91|99.99|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:01.2350000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:01.2350000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:27:01.2350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|48784|90055|9400|10000|0||99.81|99.41|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:27:01.2790000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|2627|105095|127791|5100|10000|||100.15|93.66|0.00|3.08|10FF0007|Kehabiqo Febiqo|0|61151|154276|10000|10000|||99.87|89.59|0.00|3.13| +37|2023-10-06T20:27:01.2790000-07:00|40022550|Zeromus|0001AEB0|16971648||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:01.2790000-07:00|10FF0007|Kehabiqo Febiqo|0001AEB0|77951||||||99.87|89.59|0.00|3.13| +37|2023-10-06T20:27:01.2790000-07:00|40022550|Zeromus|0001AEB6|16952693||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:01.2790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|AFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17006028|40478540|10000|10000|||100.00|80.10|0.00|0.00|105095|127791|5100|10000|||100.15|93.66|0.00|3.08|0001AEBD|0|1| +38|2023-10-06T20:27:01.2790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|114862|127791|5100|10000|0||100.15|93.66|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:27:01.2790000-07:00|10FF0001||||| +21|2023-10-06T20:27:01.3230000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|390B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|16952693|40478540|10000|10000|||100.00|80.10|0.00|0.00|44549|80739|3375|10000|||100.08|99.05|0.00|-3.14|0001AEBE|0|1| +22|2023-10-06T20:27:01.3680000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|64450000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|77951|154276|10000|10000|||99.87|89.59|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEBF|0|8| +22|2023-10-06T20:27:01.3680000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750305|3BA90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|114862|127791|5100|10000|||100.15|93.66|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEBF|1|8| +22|2023-10-06T20:27:01.3680000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|41C10000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|41092|80739|250|10000|||100.11|97.31|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEBF|2|8| +22|2023-10-06T20:27:01.3680000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|40800000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|44549|80739|3375|10000|||100.08|99.05|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEBF|3|8| +22|2023-10-06T20:27:01.3680000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|427C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|45801|79111|8200|10000|||99.93|99.41|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEBF|4|8| +22|2023-10-06T20:27:01.3680000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0005|Wuwuchu Wuchu|750003|49F00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|48784|90055|9400|10000|||99.81|99.41|0.00|3.03|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEBF|5|8| +22|2023-10-06T20:27:01.3680000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0002|Suchichi Suchi|750003|45FE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|50742|90128|9400|10000|||100.91|99.99|0.00|-3.10|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEBF|6|8| +22|2023-10-06T20:27:01.3680000-07:00|4002256E|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|41710000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|34800|73085|4650|10000|||99.99|101.43|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|0001AEBF|7|8| +21|2023-10-06T20:27:01.3680000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16952693|40478540|10000|10000|||100.00|80.10|0.00|0.00|41092|80739|250|10000|||100.11|97.31|0.00|-3.12|0001AEC0|0|1| +261|2023-10-06T20:27:01.1380000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:27:01.5020000-07:00|10FF0006|Wowobora Gogobora|45356|80739|3180|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:27:01.6810000-07:00|10FF0007|Kehabiqo Febiqo|0001AEBA|69966||||||99.87|89.59|0.00|3.13| +37|2023-10-06T20:27:01.6810000-07:00|10FF0007|Kehabiqo Febiqo|0001AEBF|44297||||||99.87|89.59|0.00|3.13| +37|2023-10-06T20:27:01.6810000-07:00|10FF0003|Gegehi Gehi|0001AEB9|40266||||||99.99|101.43|0.00|-3.14| +37|2023-10-06T20:27:01.6810000-07:00|40022550|Zeromus|0001AEBB|16952692||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:01.4340000-07:00|Change|10FF0001||| +37|2023-10-06T20:27:01.7260000-07:00|10FF0001|Sesuga Sapisuga|0001AEBF|99589||||||100.15|93.66|0.00|3.08| +37|2023-10-06T20:27:01.7700000-07:00|10FF0004|Buhojaqe Zijaqe|0001AEBF|24259||||||100.11|97.31|0.00|-3.12| +37|2023-10-06T20:27:01.8150000-07:00|10FF0006|Wowobora Gogobora|0001AEBF|28844||||||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:27:01.8150000-07:00|40022550|Zeromus|0001AEBD|16949879||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:01.8150000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16952692|40478540|10000|10000|||100.00|80.10|0.00|0.00|44297|154276|10000|10000|||99.87|89.59|0.00|3.13|0001AEC1|0|1| +37|2023-10-06T20:27:01.8600000-07:00|10FF0008|Kokosaze Lulusaze|0001AEBF|28781||||||99.93|99.41|0.00|3.14| +39|2023-10-06T20:27:01.8600000-07:00|10FF0005|Wuwuchu Wuchu|49684|90055|9600|10000|||99.81|99.41|0.00|3.03| +21|2023-10-06T20:27:01.8600000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|722003|3A2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16949879|40478540|10000|10000|||100.00|80.10|0.00|0.00|50742|90128|9400|10000|||100.91|99.99|0.00|-3.10|0001AEC2|0|1| +37|2023-10-06T20:27:01.9040000-07:00|40022550|Zeromus|0001AEBC|16928330||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:01.9040000-07:00|10FF0002|Suchichi Suchi|0001AEBC|50742|90128|9400|10000|0||100.91|99.99|0.00|-3.10|1600|0|0|01|08000322|0|41F00000|| +37|2023-10-06T20:27:01.9040000-07:00|10FF0005|Wuwuchu Wuchu|0001AEBF|30756||||||99.81|99.41|0.00|3.03| +37|2023-10-06T20:27:01.9040000-07:00|40022550|Zeromus|0001AEC0|16928258||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:01.9040000-07:00|10FF0002|Suchichi Suchi|005A5A16|50742|90128|9400|10000|0||100.91|99.99|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:01.9480000-07:00|10FF0002|Suchichi Suchi|0001AEBF|32824||||||100.91|99.99|0.00|-3.10| +37|2023-10-06T20:27:01.9930000-07:00|10FF0003|Gegehi Gehi|0001AEBF|23513||||||99.99|101.43|0.00|-3.14| +24|2023-10-06T20:27:01.9930000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|19AC|44297|154276|10000|10000|||99.87|89.59|0.00|3.13|10FF0006|Wowobora Gogobora|0|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:27:01.9930000-07:00|40022550|Zeromus|0001AEBE|16913655||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:01.9930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|50869|128564|10000|10000|0||99.87|89.59|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:01.9930000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +30|2023-10-06T20:27:01.9930000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|154276|154276| +261|2023-10-06T20:27:01.6320000-07:00|Change|10FF0005||||| +38|2023-10-06T20:27:01.9930000-07:00|40022550|Zeromus|005A5A00|16913655|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:01.9930000-07:00|4B3|Addle|0.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|79111| +39|2023-10-06T20:27:02.0380000-07:00|10FF0008|Kokosaze Lulusaze|29572|79111|8400|10000|||99.93|99.41|0.00|3.14| +21|2023-10-06T20:27:02.0380000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|28300000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|16913655|40478540|10000|10000|||100.00|80.10|0.00|0.00|99589|127791|5100|10000|||100.15|93.66|0.00|-3.13|0001AEC3|0|1| +38|2023-10-06T20:27:02.0380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|99589|127791|5100|10000|0||100.15|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:02.0380000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +39|2023-10-06T20:27:02.1270000-07:00|10FF0004|Buhojaqe Zijaqe|25066|80739|450|10000|||100.11|97.31|0.00|-3.12| +21|2023-10-06T20:27:02.1270000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|352003|3D8F0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|16913655|40478540|10000|10000|||100.00|80.10|0.00|0.00|28781|79111|8200|10000|||99.93|99.41|0.00|3.14|0001AEC4|0|1| +261|2023-10-06T20:27:01.7240000-07:00|Change|10FF0004||||||| +261|2023-10-06T20:27:01.7240000-07:00|Change|10FF0008||| +21|2023-10-06T20:27:02.2160000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|712003|598F0000|204|24998000|0|0|0|0|0|0|0|0|0|0|0|0|16913655|40478540|10000|10000|||100.00|80.10|0.00|0.00|50869|128564|10000|10000|||99.87|89.59|0.00|3.13|0001AEC5|0|1| +37|2023-10-06T20:27:02.3040000-07:00|40022550|Zeromus|0001AEB8|16887871||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:02.3500000-07:00|40022550|Zeromus|0001AEC1|16884954||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:02.3940000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C5B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16884954|40478540|10000|10000|||100.00|80.10|0.00|0.00|30756|90055|9600|10000|||99.81|99.41|0.00|3.03|0001AEC6|0|1| +21|2023-10-06T20:27:02.4390000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|59ED0000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|16884954|40478540|10000|10000|||100.00|80.10|0.00|0.00|30756|90055|9600|10000|||99.81|99.41|0.00|3.03|0001AEC7|0|1| +38|2023-10-06T20:27:02.4390000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|30756|90055|9600|10000|0||99.81|99.41|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:02.4390000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:27:02.4390000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:27:02.4390000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:27:02.4830000-07:00|40022550|Zeromus|0001AEC2|16870060||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:02.0750000-07:00|Change|10FF0006||| +22|2023-10-06T20:27:02.6170000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|32B30000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|0001AEC8|0|8| +22|2023-10-06T20:27:02.6170000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|4|333B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29572|79111|8100|10000|||99.93|99.41|0.00|3.14|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|0001AEC8|1|8| +22|2023-10-06T20:27:02.6170000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|32170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30756|90055|9600|10000|||99.81|99.41|0.00|3.13|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|0001AEC8|2|8| +22|2023-10-06T20:27:02.6170000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|4|33AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32824|90128|9400|10000|||100.91|99.99|0.00|-3.10|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|0001AEC8|3|8| +22|2023-10-06T20:27:02.6170000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|200004|52A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25066|80739|450|10000|||100.11|97.31|0.00|-3.12|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|0001AEC8|4|8| +22|2023-10-06T20:27:02.6170000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|4|31730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23513|73085|4650|10000|||100.32|102.01|0.00|-2.74|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|0001AEC8|5|8| +22|2023-10-06T20:27:02.6170000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|200004|53DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|99589|127791|5100|10000|||100.15|93.66|0.00|-3.13|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|0001AEC8|6|8| +22|2023-10-06T20:27:02.6170000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|200004|52FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50869|128564|10000|10000|||99.87|89.59|0.00|3.13|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14|0001AEC8|7|8| +24|2023-10-06T20:27:02.6620000-07:00|10FF0002|Suchichi Suchi|HoT|0|114D|32824|90128|9400|10000|||100.91|99.99|0.00|-3.10|10FF0006|Wowobora Gogobora|0|28844|80739|3180|10000|||100.08|99.05|0.00|-3.14| +38|2023-10-06T20:27:02.6620000-07:00|10FF0002|Suchichi Suchi|005A5A16|37253|90128|9400|10000|0||100.91|99.99|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:27:02.7060000-07:00|10FF0003|Gegehi Gehi|HoT|0|11BA|23513|73085|4650|10000|||100.40|102.13|-0.01|-3.11|10FF0003|Gegehi Gehi|0|23513|73085|4650|10000|||100.40|102.13|-0.01|-3.11| +38|2023-10-06T20:27:02.7060000-07:00|10FF0003|Gegehi Gehi|005A5A23|28051|73085|4650|10000|0||100.40|102.13|-0.01|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:02.7510000-07:00|40022550|Zeromus|0001AEC4|16854301||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:02.7960000-07:00|40022A88|Ruby Carbuncle|HoT|0|4C7|77430|77430|10000|10000|||99.90|97.15|0.00|1.63|10FF0005|Wuwuchu Wuchu|0|30756|90055|9600|10000|||99.81|99.41|0.00|3.11| +38|2023-10-06T20:27:02.7960000-07:00|40022A88|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||99.90|97.15|0.00|1.63|0|0|0||||||| +24|2023-10-06T20:27:02.8410000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|2499|99589|127791|5100|10000|||100.15|93.66|0.00|-3.13|10FF0007|Kehabiqo Febiqo|0|50869|128564|10000|10000|||99.87|89.59|0.00|3.13| +37|2023-10-06T20:27:02.8410000-07:00|40022550|Zeromus|0001AEC5|16831374||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:02.8410000-07:00|10FF0007|Kehabiqo Febiqo|0001AEC5|60238||||||99.87|89.59|0.00|3.13| +38|2023-10-06T20:27:02.8410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108958|127791|5100|10000|0||100.15|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:27:02.8850000-07:00|40022A88|Ruby Carbuncle|77430|77430|10000|10000|||99.90|97.15|0.00|2.01| +24|2023-10-06T20:27:02.8850000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|4091|99589|127791|5100|10000|||100.15|93.66|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|99589|127791|5100|10000|||100.15|93.66|0.00|-3.13| +24|2023-10-06T20:27:02.8850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|101B|50869|128564|10000|10000|||99.87|89.59|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|25066|80739|450|10000|||100.11|97.31|0.00|-3.12| +24|2023-10-06T20:27:02.8850000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|9B9|99589|127791|5100|10000|||100.15|93.66|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|25066|80739|450|10000|||100.11|97.31|0.00|-3.12| +24|2023-10-06T20:27:02.8860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|9FC|32242|80739|450|10000|||100.11|97.31|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|32242|80739|450|10000|||100.11|97.31|0.00|-3.12| +24|2023-10-06T20:27:02.8860000-07:00|10FF0006|Wowobora Gogobora|HoT|798|9B0|31324|80739|3180|10000|||100.08|99.05|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|32242|80739|450|10000|||100.11|97.31|0.00|-3.12| +24|2023-10-06T20:27:02.8860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|FDE|33634|79111|8100|10000|||99.93|99.41|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|32242|80739|450|10000|||100.11|97.31|0.00|-3.12| +24|2023-10-06T20:27:02.8860000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|9B3|33239|90055|9600|10000|||99.81|99.41|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|32242|80739|450|10000|||100.11|97.31|0.00|-3.12| +24|2023-10-06T20:27:02.8860000-07:00|10FF0002|Suchichi Suchi|HoT|798|977|39676|90128|9400|10000|||100.91|99.99|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|32242|80739|450|10000|||100.11|97.31|0.00|-3.12| +24|2023-10-06T20:27:02.8860000-07:00|10FF0003|Gegehi Gehi|HoT|798|A01|30612|73085|4650|10000|||100.42|102.16|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|32242|80739|450|10000|||100.11|97.31|0.00|-3.12| +24|2023-10-06T20:27:02.8860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|120C|32242|80739|450|10000|||100.11|97.31|0.00|-3.12|10FF0005|Wuwuchu Wuchu|0|33239|90055|9600|10000|||99.81|99.41|0.00|3.08| +38|2023-10-06T20:27:02.8860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|64361|128564|10000|10000|0||99.87|89.59|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:02.8860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:02.8860000-07:00|10FF0002|Suchichi Suchi|005A5A16|39676|90128|9400|10000|0||100.91|99.99|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:02.8860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:02.8860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|33634|79111|8100|10000|0||99.93|99.41|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:02.8860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:27:02.8860000-07:00|10FF0006|Wowobora Gogobora|005A5A28|31324|80739|3180|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:02.8860000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:27:02.8860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:02.8860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5100|10000|0||100.15|93.66|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:02.8860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:27:02.8860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|32242|80739|450|10000|0||100.11|97.31|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:02.8860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:27:02.8860000-07:00|10FF0003|Gegehi Gehi|005A5A23|30612|73085|4650|10000|0||100.42|102.16|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:02.8860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:27:02.8860000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|33239|90055|9600|10000|0||99.81|99.41|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:02.8860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:27:02.9300000-07:00|40022550|Zeromus|0001AEC6|16828211||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:02.9300000-07:00|10FF0005|Wuwuchu Wuchu|0001AEC6|33239|90055|9600|10000|0||99.81|99.41|0.00|3.08|2700|0|0|01|05000A1C|0|C2700000|| +37|2023-10-06T20:27:02.9300000-07:00|40022550|Zeromus|0001AEC7|16805190||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:02.9300000-07:00|10FF0005|Wuwuchu Wuchu|0001AEC7|33239|90055|9600|10000|0||99.81|99.41|0.00|3.08|2700|0|0|01|05000A1C|0|42700000|| +38|2023-10-06T20:27:02.9300000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|33239|90055|9600|10000|0||99.81|99.41|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:27:02.9740000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|11C3|33239|90055|9600|10000|||99.81|99.41|0.00|3.08|10FF0006|Wowobora Gogobora|0|31324|80739|3180|10000|||100.08|99.05|0.00|-3.14| +38|2023-10-06T20:27:02.9740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|37786|90055|9600|10000|0||99.81|99.41|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:27:03.0180000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1111|31324|80739|3180|10000|||100.08|99.05|0.00|-3.14|10FF0005|Wuwuchu Wuchu|0|33239|90055|9600|10000|||99.81|99.41|0.00|3.08| +21|2023-10-06T20:27:03.0180000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16831374|40478540|10000|10000|||100.00|80.10|0.00|0.00|33634|79111|8100|10000|||99.93|99.41|0.00|3.14|0001AEC9|0|1| +38|2023-10-06T20:27:03.0180000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35693|80739|3180|10000|0||100.08|99.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:27:03.0610000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16805190|40478540|10000|10000|||100.00|80.10|0.00|0.00|39676|90128|9400|10000|||100.91|99.99|0.00|-3.10|0001AECA|0|1| +261|2023-10-06T20:27:02.7870000-07:00|Change|10FF0003||||||||||||||||| +20|2023-10-06T20:27:03.1960000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|100.42|102.16|0.00|3.09| +38|2023-10-06T20:27:03.1960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5100|10000|0||100.30|93.86|0.00|1.45|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:03.1960000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +39|2023-10-06T20:27:03.2400000-07:00|10FF0007|Kehabiqo Febiqo|65646|128564|10000|10000|||99.87|89.59|0.00|3.13| +20|2023-10-06T20:27:03.2400000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.08|99.05|0.00|-3.14| +04|2023-10-06T20:27:02.8990000-07:00|40022B08|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|75851|0|10000|||101.73|103.44|0.00|3.14| +261|2023-10-06T20:27:02.8990000-07:00|Remove|40022B08| +37|2023-10-06T20:27:03.3290000-07:00|40022550|Zeromus|0001AEC3|16794902||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:03.3290000-07:00|10FF0001|Sesuga Sapisuga|0001AEC3|127791|127791|5500|10000|0||100.27|95.06|0.00|1.45|1300|0|0|0| +38|2023-10-06T20:27:03.3290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5500|10000|0||100.27|95.06|0.00|1.45|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:03.3290000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +261|2023-10-06T20:27:03.0120000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:03.3740000-07:00|10FF0006|Wowobora Gogobora|0001AEC8|48672|80739|3880|10000|0||100.08|99.05|0.00|-3.14|2800|0|0|0| +39|2023-10-06T20:27:03.3740000-07:00|10FF0003|Gegehi Gehi|31342|73085|4850|10000|||100.42|102.16|0.00|3.12| +39|2023-10-06T20:27:03.4630000-07:00|10FF0002|Suchichi Suchi|40577|90128|9600|10000|||100.91|99.99|0.00|-3.10| +261|2023-10-06T20:27:03.1310000-07:00|Change|10FF0002||||| +261|2023-10-06T20:27:03.1310000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:27:03.5070000-07:00|10FF0008|Kokosaze Lulusaze|0001AEC8|46749||||||99.93|99.41|0.00|3.14| +37|2023-10-06T20:27:03.5510000-07:00|40022550|Zeromus|0001AEC9|16794655||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:03.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|12F7|65646|128564|10000|10000|||99.87|89.59|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|65646|128564|10000|10000|||99.87|89.59|0.00|3.13| +24|2023-10-06T20:27:03.5520000-07:00|40022550|Zeromus|DoT|A92|499|16794655|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|46749|79111|8100|10000|||99.93|99.41|0.00|3.14| +24|2023-10-06T20:27:03.5520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1119|46749|79111|8100|10000|||99.93|99.41|0.00|3.14|10FF0005|Wuwuchu Wuchu|0|37786|90055|9600|10000|||99.81|99.41|0.00|2.93| +21|2023-10-06T20:27:03.5520000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16794655|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5500|10000|||100.92|96.16|0.00|1.46|0001AECB|0|1| +38|2023-10-06T20:27:03.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70501|128564|10000|10000|0||99.87|89.59|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:03.5520000-07:00|40022550|Zeromus|005A5A00|16793478|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:27:03.5520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51126|79111|8100|10000|0||99.93|99.41|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:27:03.5520000-07:00|10FF0001||||| +37|2023-10-06T20:27:03.5970000-07:00|40022550|Zeromus|0001AECA|16790637||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:03.6420000-07:00|10FF0005|Wuwuchu Wuchu|0001AEC8|50609||||||99.81|99.41|0.00|2.93| +21|2023-10-06T20:27:03.6420000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2DE50000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|16794655|40478540|10000|10000|||100.00|80.10|0.00|0.00|46749|79111|8100|10000|||99.93|99.41|0.00|3.14|0001AECC|0|1| +261|2023-10-06T20:27:03.3260000-07:00|Change|10FF0008||| +21|2023-10-06T20:27:03.7310000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|38E60000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|16790637|40478540|10000|10000|||100.00|80.10|0.00|0.00|40577|90128|9600|10000|||100.91|99.99|0.00|-3.10|0001AECD|0|1| +38|2023-10-06T20:27:03.7310000-07:00|10FF0002|Suchichi Suchi|005A5A16|40577|90128|9600|10000|0||100.91|99.99|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:03.7310000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:27:03.7310000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:03.3260000-07:00|Change|10FF0003||||||| +37|2023-10-06T20:27:03.7760000-07:00|10FF0002|Suchichi Suchi|0001AEC8|53803|90128|9600|10000|0||100.91|99.99|0.00|-3.10|1603|0|0|01|0747|0|C1F00000|| +37|2023-10-06T20:27:03.9100000-07:00|10FF0004|Buhojaqe Zijaqe|0001AEC8|53398||||||100.11|97.31|0.00|-3.12| +21|2023-10-06T20:27:03.9100000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|23160000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|70501|128564|10000|10000|||99.80|89.56|0.00|3.10|16790637|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AECE|0|1| +261|2023-10-06T20:27:03.5200000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:27:03.5200000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:27:03.9990000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5700|10000|||101.94|98.17|0.00|1.90| +37|2023-10-06T20:27:04.0450000-07:00|10FF0003|Gegehi Gehi|0001AEC8|44001||||||100.42|102.16|0.00|-3.12| +37|2023-10-06T20:27:04.0900000-07:00|40022550|Zeromus|0001AECB|16788873||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:04.1790000-07:00|40022550|Zeromus|DoT|0|2160|16790637|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|50609|90055|9600|10000|||99.79|99.66|0.00|3.00| +21|2023-10-06T20:27:04.1790000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35A20000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|16790637|40478540|10000|10000|||100.00|80.10|0.00|0.00|48672|80739|3880|10000|||100.08|99.05|0.00|-3.14|0001AECF|0|1| +38|2023-10-06T20:27:04.1790000-07:00|40022550|Zeromus|005A5A00|16780329|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:27:04.2670000-07:00|40022550|Zeromus|0001AECC|16768580||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:03.8370000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:27:04.3110000-07:00|10FF0007|Kehabiqo Febiqo|0001AEC8|91744||||||97.68|89.46|0.00|3.10| +37|2023-10-06T20:27:04.3580000-07:00|40022550|Zeromus|0001AECD|16754014||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:04.3580000-07:00|10FF0002|Suchichi Suchi|0001AECD|53803|90128|9600|10000|0||101.03|99.99|0.00|-3.14|1600|0|0|01|0747|0|41F00000|| +38|2023-10-06T20:27:04.3580000-07:00|10FF0002|Suchichi Suchi|005A5A16|53803|90128|9600|10000|0||101.03|99.99|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T20:27:04.4900000-07:00|10FF0006|Wowobora Gogobora|49479|80739|3685|10000|||100.08|99.05|0.00|-3.14| +21|2023-10-06T20:27:04.4900000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16754014|40478540|10000|10000|||100.00|80.10|0.00|0.00|53398|80739|450|10000|||100.11|97.31|0.00|0.96|0001AED0|0|1| +261|2023-10-06T20:27:04.0690000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T20:27:04.5340000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|14C40000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|16754014|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5700|10000|||104.52|99.35|0.00|2.89|0001AED1|0|1| +21|2023-10-06T20:27:04.6250000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|4|15270000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|53803|90128|9600|10000|||101.55|99.99|0.00|-3.14|77430|77430|10000|10000|||99.90|97.15|0.00|2.45|0001AED2|0|1| +21|2023-10-06T20:27:04.6250000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|22BF0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|16754014|40478540|10000|10000|||100.00|80.10|0.00|0.00|44001|73085|4850|10000|||100.42|102.16|0.00|-3.12|0001AED3|0|1| +38|2023-10-06T20:27:04.6250000-07:00|10FF0003|Gegehi Gehi|005A5A23|44001|73085|4650|10000|0||100.42|102.16|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:04.6250000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:27:04.6250000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:27:04.6680000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|17000000|204|24F28000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|16754014|40478540|10000|10000|||100.00|80.10|0.00|0.00|91744|128564|10000|10000|||97.76|89.46|-0.01|3.10|0001AED4|0|1| +37|2023-10-06T20:27:04.7130000-07:00|10FF0007|Kehabiqo Febiqo|0001AECE|82762||||||97.76|89.46|-0.01|3.10| +261|2023-10-06T20:27:04.3530000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T20:27:04.7570000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|720003|369B0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|16754014|40478540|10000|10000|||100.00|80.10|0.00|0.00|53803|90128|9600|10000|||101.99|99.99|-0.02|-3.14|0001AED5|0|1| +38|2023-10-06T20:27:04.7570000-07:00|10FF0002|Suchichi Suchi|005A5A16|53803|90128|9600|10000|0||101.99|99.99|-0.02|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:04.7570000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:27:04.8470000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1575|82762|128564|10000|10000|||97.76|89.46|0.00|2.91|10FF0006|Wowobora Gogobora|0|49479|80739|3685|10000|||100.08|99.05|0.00|-3.14| +37|2023-10-06T20:27:04.8470000-07:00|40022550|Zeromus|0001AECF|16740284||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:04.8470000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16754014|40478540|10000|10000|||100.00|80.10|0.00|0.00|49479|80739|3685|10000|||100.08|99.05|0.00|-3.14|0001AED6|0|1| +38|2023-10-06T20:27:04.8470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88255|128564|10000|10000|0||97.76|89.46|0.00|2.91|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:04.8470000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +39|2023-10-06T20:27:04.8910000-07:00|10FF0005|Wuwuchu Wuchu|51509|90055|9800|10000|||99.78|99.78|0.00|3.01| +261|2023-10-06T20:27:04.4440000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:27:04.9350000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|44070000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|16754014|40478540|10000|10000|||100.00|80.10|0.00|0.00|50609|90055|9600|10000|||99.78|99.78|0.00|3.01|0001AED7|0|1| +37|2023-10-06T20:27:05.0250000-07:00|40022550|Zeromus|0001AED0|16740217||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:05.0250000-07:00|10FF0008|Kokosaze Lulusaze|51917|79111|8000|10000|||97.01|99.41|0.00|-1.65| +261|2023-10-06T20:27:04.5370000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:27:05.1590000-07:00|40022550|Zeromus|0001AED1|16734901||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:05.1590000-07:00|10FF0004|Buhojaqe Zijaqe|54205|80739|650|10000|||100.11|97.31|-0.02|0.47| +21|2023-10-06T20:27:05.1590000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|16740217|40478540|10000|10000|||100.00|80.10|0.00|0.00|51917|79111|8000|10000|||96.79|99.41|0.00|-1.59|0001AED8|0|1| +38|2023-10-06T20:27:05.1590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51917|79111|8000|10000|0||96.79|99.41|0.00|-1.59|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:05.1590000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:27:04.7730000-07:00|Change|40022B11||||||||| +261|2023-10-06T20:27:04.7730000-07:00|Change|40022B11||||||||| +261|2023-10-06T20:27:04.7730000-07:00|Change|10FF0004||||||| +38|2023-10-06T20:27:05.2050000-07:00|40022B29||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +24|2023-10-06T20:27:05.2050000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|24F2|127791|127791|5700|10000|||104.79|99.20|0.00|3.04|10FF0007|Kehabiqo Febiqo|0|88255|128564|10000|10000|||97.76|89.46|-0.02|2.91| +37|2023-10-06T20:27:05.2050000-07:00|40022550|Zeromus|0001AED4|16729013||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:05.2050000-07:00|10FF0007|Kehabiqo Febiqo|0001AED4|97713||||||97.76|89.46|-0.02|2.91| +21|2023-10-06T20:27:05.2050000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|E200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16734901|40478540|10000|10000|||100.00|80.10|0.00|0.00|88255|128564|10000|10000|||97.76|89.46|-0.02|2.91|0001AED9|0|1| +38|2023-10-06T20:27:05.2050000-07:00|40022B29||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:27:05.2050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5700|10000|0||104.79|99.20|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:05.2490000-07:00|40022550|Zeromus|0001AED5|16715034||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:05.2490000-07:00|10FF0002|Suchichi Suchi|0001AED5|53803|90128|9600|10000|0||102.03|99.99|-0.01|-3.04|1600|0|0|01|080004DB|0|41700000|| +38|2023-10-06T20:27:05.2500000-07:00|10FF0002|Suchichi Suchi|005A5A16|53803|90128|9600|10000|0||102.03|99.99|-0.01|-3.04|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:04.7730000-07:00|Add|40022B29||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:04.7730000-07:00|40022B29|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|72376|75851|10000|10000|||98.14|101.47|0.00|2.97| +261|2023-10-06T20:27:04.8850000-07:00|Change|40022B29||||| +37|2023-10-06T20:27:05.3830000-07:00|40022550|Zeromus|0001AED6|16714999||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:05.4280000-07:00|10FF0002|Suchichi Suchi|0001AED2|59218||||||102.05|99.99|0.00|-3.06| +37|2023-10-06T20:27:05.4280000-07:00|40022550|Zeromus|0001AED3|16706104||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:05.5160000-07:00|40022550|Zeromus|0001AED7|16688689||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:05.6070000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|724003|21D10000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|16688689|40478540|10000|10000|||100.00|80.10|0.00|0.00|59218|90128|9600|10000|||102.11|100.02|-0.02|-2.61|0001AEDA|0|1| +21|2023-10-06T20:27:05.6070000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|2EA80000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|16688689|40478540|10000|10000|||100.00|80.10|0.00|0.00|44001|73085|4650|10000|||100.42|102.16|0.00|-3.12|0001AEDB|0|1| +21|2023-10-06T20:27:05.6070000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|150F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16688689|40478540|10000|10000|||100.00|80.10|0.00|0.00|51509|90055|9800|10000|||99.78|99.78|-0.02|3.05|0001AEDC|0|1| +38|2023-10-06T20:27:05.6070000-07:00|10FF0002|Suchichi Suchi|005A5A16|59218|90128|9600|10000|0||102.11|100.02|-0.02|-2.61|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:05.6070000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:27:05.6070000-07:00|10FF0003|Gegehi Gehi|005A5A23|44001|73085|4350|10000|0||100.42|102.16|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:05.6070000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +24|2023-10-06T20:27:05.6510000-07:00|10FF0002|Suchichi Suchi|HoT|0|1946|59218|90128|9600|10000|||102.11|100.02|-0.02|-2.61|10FF0006|Wowobora Gogobora|0|49479|80739|3685|10000|||100.24|96.97|0.00|3.06| +38|2023-10-06T20:27:05.6510000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49479|80739|3685|10000|0||100.24|96.97|0.00|3.06|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:05.6510000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:27:05.6510000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:05.6510000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:05.6510000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:27:05.6510000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|49479|80739|3685|10000|||100.24|96.97|0.00|3.06|49479|80739|3685|10000|||100.24|96.97|0.00|3.06|0001AEDD|0|1| +38|2023-10-06T20:27:05.6510000-07:00|10FF0002|Suchichi Suchi|005A5A16|65688|90128|9600|10000|0||102.11|100.02|-0.02|-2.61|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:27:05.6940000-07:00|10FF0003|Gegehi Gehi|HoT|0|11A4|44001|73085|4650|10000|||100.42|102.16|0.00|-3.12|10FF0005|Wuwuchu Wuchu|0|51509|90055|9800|10000|||99.78|99.78|-0.02|3.05| +38|2023-10-06T20:27:05.6940000-07:00|10FF0003|Gegehi Gehi|005A5A23|48517|73085|4350|10000|0||100.42|102.16|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:05.7400000-07:00|40022550|Zeromus|0001AED9|16685073||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:05.7840000-07:00|40022A88|Ruby Carbuncle|HoT|0|4D9|77430|77430|10000|10000|||99.90|97.15|0.00|0.66|10FF0005|Wuwuchu Wuchu|0|51509|90055|9800|10000|||99.74|99.78|-0.02|3.03| +38|2023-10-06T20:27:05.7840000-07:00|40022A88|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||99.90|97.15|0.00|0.66|0|0|0||||||| +38|2023-10-06T20:27:05.7840000-07:00|10FF0003|Gegehi Gehi|005A5A23|48517|73085|4350|10000|0||100.42|102.16|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:05.7840000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:27:05.7840000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:27:05.3220000-07:00|Change|10FF0003||| +21|2023-10-06T20:27:05.8290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16688689|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5700|10000|||104.48|99.52|0.00|3.09|0001AEDE|0|1| +31|2023-10-06T20:27:05.8290000-07:00|10FF0001||||| +39|2023-10-06T20:27:05.8730000-07:00|40022A88|Ruby Carbuncle|77430|77430|10000|10000|||99.90|97.15|0.00|0.67| +24|2023-10-06T20:27:05.8730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3746|127791|127791|5700|10000|||104.39|99.52|0.00|3.09|10FF0001|Sesuga Sapisuga|0|127791|127791|5700|10000|||104.39|99.52|0.00|3.09| +24|2023-10-06T20:27:05.8730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|112C|54205|80739|650|10000|||100.42|98.03|0.00|0.42|10FF0005|Wuwuchu Wuchu|0|51509|90055|9800|10000|||99.53|99.81|0.00|2.98| +21|2023-10-06T20:27:05.8730000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BC70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16685073|40478540|10000|10000|||100.00|80.10|0.00|0.00|65688|90128|9600|10000|||102.23|100.08|0.00|-3.03|0001AEDF|0|1| +38|2023-10-06T20:27:05.8730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5700|10000|0||104.39|99.52|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:05.8730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58601|80739|650|10000|0||100.42|98.03|0.00|0.42|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:05.8730000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:27:05.9170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58601|80739|650|10000|0||100.42|98.03|0.00|0.42|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:05.9170000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:27:05.9170000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +24|2023-10-06T20:27:05.9620000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1149|51509|90055|9800|10000|||99.33|99.85|0.00|2.94|10FF0006|Wowobora Gogobora|0|49479|80739|3685|10000|||100.30|96.45|0.00|3.06| +38|2023-10-06T20:27:05.9620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|55934|90055|9800|10000|0||99.33|99.85|0.00|2.94|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:27:06.0060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|48C|49479|80739|3685|10000|||100.30|96.45|-0.02|3.06|10FF0005|Wuwuchu Wuchu|0|55934|90055|9800|10000|||99.16|99.87|0.00|2.90| +38|2023-10-06T20:27:06.0060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|50643|80739|3685|10000|0||100.30|96.45|-0.02|3.06|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:06.0520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51917|79111|8000|10000|0||96.70|99.41|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:06.0520000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:27:06.0520000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:27:06.0960000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16685073|40478540|10000|10000|||100.00|80.10|0.00|0.00|48517|73085|4350|10000|||100.42|102.16|0.00|-3.12|0001AEE0|0|1| +261|2023-10-06T20:27:05.6110000-07:00|Remove|40022B02| +37|2023-10-06T20:27:06.1410000-07:00|40022550|Zeromus|0001AEDC|16679682||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:06.1410000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16685073|40478540|10000|10000|||100.00|80.10|0.00|0.00|51917|79111|8000|10000|||96.70|99.41|0.00|2.97|0001AEE1|0|1| +37|2023-10-06T20:27:06.1850000-07:00|10FF0008|Kokosaze Lulusaze|0001AED8|51917|79111|8000|10000|0||96.70|99.41|0.00|2.97|1B00|0|0|01|04000AA4|0|0|| +38|2023-10-06T20:27:06.1850000-07:00|10FF0002|Suchichi Suchi|005A5A16|65688|90128|9600|10000|0||102.35|100.14|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:06.1850000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:27:06.1850000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:06.1850000-07:00|40022550|Zeromus|005A5A00|16679682|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:06.1850000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +38|2023-10-06T20:27:06.1850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51917|79111|8000|10000|0||96.70|99.41|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:27:06.2300000-07:00|10FF0007|Kehabiqo Febiqo|98998|128564|10000|10000|||94.64|89.32|0.00|3.09| +261|2023-10-06T20:27:05.8480000-07:00|Change|40022B29||| +21|2023-10-06T20:27:06.2750000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|27840000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|16679682|40478540|10000|10000|||100.00|80.10|0.00|0.00|65688|90128|9600|10000|||102.36|100.14|0.00|-3.07|0001AEE2|0|1| +38|2023-10-06T20:27:06.2750000-07:00|10FF0002|Suchichi Suchi|005A5A16|65688|90128|9600|10000|0||102.36|100.14|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:06.2750000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:05.8480000-07:00|Change|10FF0007||||||||| +38|2023-10-06T20:27:06.3190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5700|10000|0||104.39|99.52|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:06.3190000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:27:06.3190000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:27:06.3630000-07:00|40022550|Zeromus|0001AEDE|16676834||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:06.3630000-07:00|40022550|Zeromus|0001AEDB|16664890||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:06.3630000-07:00|10FF0003|Gegehi Gehi|49247|73085|4550|10000|||100.42|102.16|0.00|-3.12| +37|2023-10-06T20:27:06.4070000-07:00|40022550|Zeromus|0001AEDA|16656233||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:06.4070000-07:00|40022550|Zeromus|0001AEDF|16653218||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:06.4510000-07:00|10FF0002|Suchichi Suchi|66589|90128|9800|10000|||102.40|100.14|-0.02|-3.01| +38|2023-10-06T20:27:06.4510000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|55934|90055|9800|10000|0||98.99|99.90|0.00|2.85|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:06.4510000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:27:06.4510000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:27:05.9620000-07:00|Change|10FF0002||||||||||| +24|2023-10-06T20:27:06.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1B10|98998|128564|10000|10000|||93.08|89.25|0.00|3.09|10FF0007|Kehabiqo Febiqo|0|98998|128564|10000|10000|||93.08|89.25|0.00|3.09| +24|2023-10-06T20:27:06.5400000-07:00|40022550|Zeromus|DoT|A92|4E3|16653218|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|51917|79111|8000|10000|||96.70|99.41|0.00|2.97| +24|2023-10-06T20:27:06.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|4B6|51917|79111|8000|10000|||96.70|99.41|0.00|2.97|10FF0005|Wuwuchu Wuchu|0|55934|90055|9800|10000|||98.99|99.90|0.00|2.85| +38|2023-10-06T20:27:06.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105926|128564|10000|10000|0||93.08|89.25|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:06.5400000-07:00|40022550|Zeromus|005A5A00|16651967|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:27:06.5400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53123|79111|8000|10000|0||96.70|99.41|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:06.5840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105926|128564|10000|10000|0||92.95|89.25|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:06.5840000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:06.5840000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:27:06.6290000-07:00|40022550|Zeromus|0001AEE0|16651966||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:06.6740000-07:00|40022550|Zeromus|0001AEE1|16651822||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|DF10000|9C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|0001AEE3|0|8| +22|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|DC30000|90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|58601|80739|650|10000|||100.45|98.10|0.00|0.44|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|0001AEE3|1|8| +22|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|DEE0000|930E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|55934|90055|9800|10000|||98.99|99.90|0.00|2.85|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|0001AEE3|2|8| +22|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|200004|17230000|90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|5700|10000|||104.39|99.52|0.00|3.09|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|0001AEE3|3|8| +22|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|E0F0000|FC0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|66589|90128|9800|10000|||102.94|100.14|0.00|-3.08|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|0001AEE3|4|8| +22|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|200004|16A90000|830E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|53123|79111|8000|10000|||96.70|99.46|0.00|2.28|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|0001AEE3|5|8| +22|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|DF70000|B00E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|49247|73085|4550|10000|||100.42|102.16|0.00|-3.12|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|0001AEE3|6|8| +22|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|E4D0000|C30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|105926|128564|10000|10000|||92.95|89.25|0.00|3.09|50643|80739|3685|10000|||100.53|95.60|0.00|2.90|0001AEE3|7|8| +38|2023-10-06T20:27:06.6740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105926|128564|10000|10000|9||92.95|89.25|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:06.6740000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:06.6740000-07:00|10FF0002|Suchichi Suchi|005A5A16|66589|90128|9800|10000|12||102.94|100.14|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:06.6740000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:06.6740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53123|79111|8000|10000|23||96.70|99.46|0.00|2.28|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:06.2730000-07:00|Change|10FF0006||||||||||| +26|2023-10-06T20:27:06.6740000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:27:06.6740000-07:00|10FF0006|Wowobora Gogobora|005A5A28|50643|80739|2785|10000|14||100.53|95.60|0.00|2.90|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:06.6740000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:27:06.6740000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:06.6740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5700|10000|14||104.39|99.52|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:06.6740000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:27:06.6740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58601|80739|650|10000|13||100.45|98.10|0.00|0.44|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:06.6740000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:27:06.6740000-07:00|10FF0003|Gegehi Gehi|005A5A23|49247|73085|4550|10000|15||100.42|102.16|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:06.6740000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:27:06.6740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|55934|90055|9800|10000|12||98.99|99.90|0.00|2.85|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:06.6740000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:27:06.3650000-07:00|Change|10FF0003||| +37|2023-10-06T20:27:06.8960000-07:00|40022550|Zeromus|0001AEE2|16641706||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:06.9410000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|105926|128564|10000|10000|||92.67|89.25|0.00|3.10|16641706|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AEE4|0|1| +39|2023-10-06T20:27:07.0310000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5900|10000|||104.39|99.52|0.00|-2.92| +21|2023-10-06T20:27:07.0310000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35712003|32A20000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|16641706|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5700|10000|||104.39|99.52|0.00|-2.92|0001AEE5|0|1| +261|2023-10-06T20:27:06.5610000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:27:07.1200000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32714003|2A770000|A3E|340000|204|256D8000|11B|258000|0|0|0|0|0|0|0|0|16641706|40478540|10000|10000|||100.00|80.10|0.00|0.00|105926|128564|10000|10000|||92.67|89.25|0.00|3.10|0001AEE6|0|1| +261|2023-10-06T20:27:06.7980000-07:00|Change|40022B11||||||||| +24|2023-10-06T20:27:07.2080000-07:00|40022550|Zeromus|DoT|0|1B7D|16641706|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|55934|90055|9800|10000|||98.99|99.90|0.00|2.85| +38|2023-10-06T20:27:07.2080000-07:00|40022550|Zeromus|005A5A00|16634669|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:27:07.2080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5900|10000|14||104.39|99.52|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.2080000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:27:07.2530000-07:00|40022B29|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|152003|A0680000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|16634669|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||98.14|101.47|0.00|2.97|0001AEE7|0|1| +21|2023-10-06T20:27:07.2530000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|49247|73085|4550|10000|||100.42|102.16|0.00|-3.12|49247|73085|4550|10000|||100.42|102.16|0.00|-3.12|0001AEE8|0|1| +38|2023-10-06T20:27:07.2530000-07:00|10FF0003|Gegehi Gehi|005A5A23|49247|73085|4550|10000|15||100.42|102.16|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:07.2530000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:27:07.3420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105926|128564|10000|10000|9||92.67|89.25|0.00|2.47|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:07.3420000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:07.3420000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +38|2023-10-06T20:27:07.3420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5900|10000|14||104.39|99.52|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.3420000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|127791|128564| +21|2023-10-06T20:27:07.4300000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|44CB0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|16634669|40478540|10000|10000|||100.00|80.10|0.00|0.00|55934|90055|9800|10000|||98.99|99.90|0.00|2.85|0001AEE9|0|1| +39|2023-10-06T20:27:07.5190000-07:00|10FF0006|Wowobora Gogobora|51450|80739|2990|10000|||100.10|95.82|0.00|0.00| +21|2023-10-06T20:27:07.5190000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50643|80739|2785|10000|||100.10|95.82|0.00|0.00|50643|80739|2785|10000|||100.10|95.82|0.00|0.00|0001AEEA|0|1| +261|2023-10-06T20:27:07.1460000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:07.6080000-07:00|10FF0006|Wowobora Gogobora|0001AEE3|55019|80739|2990|10000|14||99.64|96.47|0.00|-0.59|2800|0|0|01|04000A31|0|41E8DF38|| +21|2023-10-06T20:27:07.6080000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|152003|6A630000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|16634669|40478540|10000|10000|||100.00|80.10|0.00|0.00|53123|79111|8000|10000|||96.70|99.66|0.00|0.01|0001AEEB|0|1| +38|2023-10-06T20:27:07.6080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53123|79111|8000|10000|23||96.70|99.66|0.00|0.01|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.6080000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:27:07.6530000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16634669|40478540|10000|10000|||100.00|80.10|0.00|0.00|51450|80739|2990|10000|||99.64|96.47|0.00|-0.59|0001AEEC|0|1| +21|2023-10-06T20:27:07.6530000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16634669|40478540|10000|10000|||100.00|80.10|0.00|0.00|58601|80739|650|10000|||100.47|98.25|0.00|0.08|0001AEED|0|1| +37|2023-10-06T20:27:07.7410000-07:00|40022550|Zeromus|0001AEE6|16623798||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:07.7410000-07:00|10FF0007|Kehabiqo Febiqo|0001AEE6|115507||||||92.67|89.25|0.00|2.47| +37|2023-10-06T20:27:07.7410000-07:00|10FF0007|Kehabiqo Febiqo|0001AEE4|115507|128564|10000|10000|1||92.67|89.25|0.00|2.47|1500|0|0|0| +37|2023-10-06T20:27:07.7410000-07:00|10FF0004|Buhojaqe Zijaqe|0001AEE3|62124|80739|650|10000|13||100.48|98.30|0.00|-0.07|1C01|0|0|01|03000A31|0|41E7D0E2|| +37|2023-10-06T20:27:07.7850000-07:00|40022550|Zeromus|0001AEE5|16610836||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:07.7850000-07:00|10FF0001|Sesuga Sapisuga|0001AEE5|127791|127791|6900|10000|14||104.39|99.52|0.00|-2.92|1300|0|0|0| +37|2023-10-06T20:27:07.8750000-07:00|10FF0005|Wuwuchu Wuchu|0001AEE3|59500|90055|9800|10000|12||98.99|99.90|0.00|3.10|2702|0|0|01|02000A31|0|41E6BE73|| +261|2023-10-06T20:27:07.4310000-07:00|Change|10FF0005||||||||||| +39|2023-10-06T20:27:07.8750000-07:00|10FF0005|Wuwuchu Wuchu|60400|90055|10000|10000|||98.99|99.90|0.00|3.10| +38|2023-10-06T20:27:07.8750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62124|80739|650|10000|13||100.48|98.34|-0.02|-0.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.8750000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:27:07.8750000-07:00|10FF0003|Gegehi Gehi|005A5A23|49247|73085|4550|10000|15||100.42|102.16|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.8750000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:27:07.8750000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60400|90055|10000|10000|12||98.99|99.90|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.8750000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +38|2023-10-06T20:27:07.9190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115507|128564|10000|10000|1||92.67|89.25|0.00|2.47|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9190000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:07.9190000-07:00|10FF0002|Suchichi Suchi|005A5A16|66589|90128|9800|10000|12||103.53|100.14|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9190000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:07.9190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53123|79111|8000|10000|23||96.70|99.66|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9190000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:27:07.9190000-07:00|10FF0006|Wowobora Gogobora|005A5A28|55019|80739|2990|10000|14||98.49|98.26|0.00|-0.57|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:07.9190000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:07.9190000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:07.9190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6900|10000|14||104.39|99.52|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9190000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:27:07.9650000-07:00|40022550|Zeromus|0001AEE9|16593225||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:07.9650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115507|128564|10000|10000|1||92.67|89.25|0.00|2.47|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +38|2023-10-06T20:27:07.9650000-07:00|10FF0002|Suchichi Suchi|005A5A16|66589|90128|9800|10000|12||103.53|100.14|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +38|2023-10-06T20:27:07.9650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|53123|79111|8000|10000|23||96.70|99.66|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:27:07.9650000-07:00|40022A88|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||99.90|97.15|0.00|3.14|0|0|0|||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|40022A88|Ruby Carbuncle|00|77430|90055| +38|2023-10-06T20:27:07.9650000-07:00|10FF0006|Wowobora Gogobora|005A5A28|55019|80739|2990|10000|14||98.49|98.26|0.00|-0.57|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +38|2023-10-06T20:27:07.9650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6900|10000|14||104.39|99.52|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +38|2023-10-06T20:27:07.9650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62124|80739|650|10000|13||100.48|98.34|-0.02|-0.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +38|2023-10-06T20:27:07.9650000-07:00|10FF0003|Gegehi Gehi|005A5A23|49247|73085|4550|10000|15||100.42|102.16|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +38|2023-10-06T20:27:07.9650000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60400|90055|10000|10000|12||98.52|99.70|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:07.9650000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:27:07.6300000-07:00|Change|10FF0001||| +37|2023-10-06T20:27:08.0090000-07:00|10FF0001|Sesuga Sapisuga|0001AEE3|127791|127791|6900|10000|14||104.39|99.52|0.00|-2.92|1303|0|0|01|02000A31|0|41E5AC04|| +37|2023-10-06T20:27:08.0090000-07:00|10FF0003|Gegehi Gehi|0001AEE8|49247|73085|4550|10000|15||100.42|102.16|0.00|-3.12|2300|0|0|01|040004D6|0|41A00000|| +38|2023-10-06T20:27:08.0090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62124|80739|650|10000|13||100.48|98.34|-0.02|-0.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:08.0090000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +21|2023-10-06T20:27:08.0090000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|62124|80739|650|10000|||100.48|98.34|-0.02|-0.07|62124|80739|650|10000|||100.48|98.34|-0.02|-0.07|0001AEEE|0|1| +38|2023-10-06T20:27:08.0090000-07:00|10FF0003|Gegehi Gehi|005A5A23|49247|73085|4550|10000|15||100.42|102.16|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T20:27:08.0530000-07:00|10FF0008|Kokosaze Lulusaze|53914|79111|8200|10000|||96.70|99.66|0.00|2.97| +21|2023-10-06T20:27:08.0970000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|65F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16593225|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6900|10000|||104.39|99.52|0.00|-2.92|0001AEEF|0|1| +31|2023-10-06T20:27:08.0970000-07:00|10FF0001||||| +261|2023-10-06T20:27:07.7300000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:27:08.1410000-07:00|10FF0002|Suchichi Suchi|0001AEE3|70188|90128|9800|10000|12||103.53|100.14|0.00|-3.13|1604|0|0|01|0A31|0|41E49BA1|| +37|2023-10-06T20:27:08.1410000-07:00|10FF0006|Wowobora Gogobora|0001AEEA|55019|80739|2990|10000|14||97.90|99.24|-0.01|-0.55|2800|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T20:27:08.1410000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +39|2023-10-06T20:27:08.1410000-07:00|10FF0004|Buhojaqe Zijaqe|62931|80739|850|10000|||100.48|98.34|-0.02|-0.07| +261|2023-10-06T20:27:07.7300000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:27:08.1850000-07:00|40022550|Zeromus|0001AEEC|16593190||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:08.1850000-07:00|40022550|Zeromus|0001AEED|16593123||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:27:08.1850000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|97.80|99.40|0.00|-0.51| +21|2023-10-06T20:27:08.2310000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|26FD0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|16593225|40478540|10000|10000|||100.00|80.10|0.00|0.00|49247|73085|4550|10000|||100.42|102.16|0.00|-3.12|0001AEF0|0|1| +38|2023-10-06T20:27:08.2310000-07:00|10FF0003|Gegehi Gehi|005A5A23|49247|73085|4250|10000|15||100.42|102.16|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:08.2310000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:27:08.2310000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:27:07.8510000-07:00|Change|10FF0003||| +37|2023-10-06T20:27:08.2740000-07:00|10FF0008|Kokosaze Lulusaze|0001AEE3|59715|79111|8200|10000|23||96.70|99.66|0.00|2.97|1B05|0|0|01|08000A31|0|41E38B3E|| +21|2023-10-06T20:27:08.3200000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2A510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16593123|40478540|10000|10000|||100.00|80.10|0.00|0.00|115507|128564|10000|10000|||92.67|89.25|0.00|2.47|0001AEF1|0|1| +37|2023-10-06T20:27:08.4090000-07:00|10FF0003|Gegehi Gehi|0001AEE3|52822|73085|4250|10000|15||100.42|102.16|0.00|-3.12|2306|0|0|02|01000A31|0|41E278CF|||||| +37|2023-10-06T20:27:08.4530000-07:00|40022550|Zeromus|0001AEEB|16565888||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:08.4980000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|20FE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|49247|73085|4250|10000|||100.42|102.16|0.00|-3.12|77430|77430|10000|10000|||99.90|97.15|0.00|1.92|0001AEF2|0|1| +261|2023-10-06T20:27:08.0890000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:27:08.5420000-07:00|10FF0007|Kehabiqo Febiqo|0001AEE3|119168|128564|10000|10000|1||92.67|89.27|0.00|1.50|1507|0|0|01|07000A31|0|41E16660|| +37|2023-10-06T20:27:08.5420000-07:00|10FF0004|Buhojaqe Zijaqe|0001AEEE|62931|80739|2850|10000|13||100.48|98.34|0.00|-0.07|1C00|0|0|0| +261|2023-10-06T20:27:08.0890000-07:00|Change|10FF0004||||| +21|2023-10-06T20:27:08.5860000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|E580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16565888|40478540|10000|10000|||100.00|80.10|0.00|0.00|115507|128564|10000|10000|||92.67|89.27|0.00|1.50|0001AEF3|0|1| +37|2023-10-06T20:27:08.6320000-07:00|40022550|Zeromus|0001AEEF|16564257||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:08.6770000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16565888|40478540|10000|10000|||100.00|80.10|0.00|0.00|70188|90128|9800|10000|||103.53|100.14|0.00|-3.13|0001AEF4|0|1| +38|2023-10-06T20:27:08.6770000-07:00|10FF0003|Gegehi Gehi|005A5A23|52822|73085|4250|10000|15||100.42|102.16|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.2790000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:27:08.2790000-07:00|Change|4002256D||||||||| +21|2023-10-06T20:27:08.7660000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35722003|3ECD0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|16564257|40478540|10000|10000|||100.00|80.10|0.00|0.00|70188|90128|9800|10000|||103.53|100.14|0.00|-3.12|0001AEF5|0|1| +20|2023-10-06T20:27:08.8100000-07:00|40022550|Zeromus|8B5F|Branding Flare|40022550|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:27:08.8100000-07:00|4002256D|Zeromus|8B60|Flare|4002256D|Zeromus|7.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:27:08.8100000-07:00|4002256E|Zeromus|8B60|Flare|4002256E|Zeromus|7.700|95.00|100.00|0.00|0.00| +21|2023-10-06T20:27:08.8100000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16564257|40478540|10000|10000|||100.00|80.10|0.00|0.00|60400|90055|10000|10000|||97.32|100.02|0.00|2.88|0001AEF6|0|1| +261|2023-10-06T20:27:08.3700000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B2E||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B2F||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B30||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B32||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B35||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B31||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B33||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B34||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B37||||||||||||||||||||||||||||| +261|2023-10-06T20:27:08.3700000-07:00|Add|40022B36||||||||||||||||||||||||||||||||| +04|2023-10-06T20:27:08.3700000-07:00|40022B11|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||98.56|97.95|0.00|-1.37| +261|2023-10-06T20:27:08.3700000-07:00|Remove|40022B11| +39|2023-10-06T20:27:08.8990000-07:00|40022A88|Ruby Carbuncle|77430|77430|10000|10000|||99.90|97.15|0.00|0.51| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B37||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B34||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B35||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B36||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B2F||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B2E||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B31||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B30||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B32||| +261|2023-10-06T20:27:08.4610000-07:00|Change|40022B33||| +37|2023-10-06T20:27:08.9430000-07:00|40022550|Zeromus|0001AEF1|16553424||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:08.9900000-07:00|40022550|Zeromus|0001AEF0|16543443||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:08.9900000-07:00|10FF0003|Gegehi Gehi|0001AEF0|52822|73085|4250|10000|15||100.42|102.16|0.00|-3.12|2300|0|0|01|050004D2|0|41F00000|| +21|2023-10-06T20:27:08.9900000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|285E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16553424|40478540|10000|10000|||100.00|80.10|0.00|0.00|52822|73085|4250|10000|||100.42|102.16|0.00|-3.12|0001AEF7|0|1| +38|2023-10-06T20:27:08.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|55019|80739|3540|10000|14||97.43|99.87|0.00|3.01|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:27:08.9900000-07:00|10FF0003|Gegehi Gehi|005A5A23|52822|73085|4250|10000|15||100.42|102.16|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:27:09.1220000-07:00|40022550|Zeromus|0001AEF3|16539771||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:09.1220000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37EA0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|16543443|40478540|10000|10000|||100.00|80.10|0.00|0.00|55019|80739|3540|10000|||97.43|99.87|0.00|3.01|0001AEF8|0|1| +37|2023-10-06T20:27:09.2120000-07:00|40022550|Zeromus|0001AEE7|16498707||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:09.2120000-07:00|40022550|Zeromus|0001AEF4|16493910||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:08.7630000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:27:08.7630000-07:00|Change|4002256D||||||||||||| +39|2023-10-06T20:27:09.2550000-07:00|10FF0007|Kehabiqo Febiqo|120453|128564|10000|10000|||92.82|92.04|0.00|0.15| +37|2023-10-06T20:27:09.3000000-07:00|10FF0003|Gegehi Gehi|0001AEF2|61268||||||100.42|102.16|0.00|-3.12| +21|2023-10-06T20:27:09.3000000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16539771|40478540|10000|10000|||100.00|80.10|0.00|0.00|59715|79111|8200|10000|||96.70|99.66|0.00|2.97|0001AEF9|0|1| +37|2023-10-06T20:27:09.3440000-07:00|40022550|Zeromus|0001AEF6|16489638||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:09.3900000-07:00|10FF0003|Gegehi Gehi|61998|73085|4450|10000|||100.42|102.16|0.00|-3.12| +261|2023-10-06T20:27:08.8770000-07:00|Change|10FF0003||| +26|2023-10-06T20:27:09.4340000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +22|2023-10-06T20:27:09.4340000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|4|25E90000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|0001AEFA|0|8| +22|2023-10-06T20:27:09.4340000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0005|Wuwuchu Wuchu|4|24F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|60400|90055|10000|10000|||97.70|100.21|0.00|2.88|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|0001AEFA|1|8| +22|2023-10-06T20:27:09.4340000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|3E0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55019|80739|3140|10000|||97.43|99.87|0.00|3.01|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|0001AEFA|2|8| +22|2023-10-06T20:27:09.4340000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|4|259F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59715|79111|8200|10000|||96.70|99.66|0.00|2.97|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|0001AEFA|3|8| +22|2023-10-06T20:27:09.4340000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|4|26670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61998|73085|4450|10000|||100.42|102.16|0.00|-3.12|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|0001AEFA|4|8| +22|2023-10-06T20:27:09.4340000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0002|Suchichi Suchi|200004|3D980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70188|90128|9800|10000|||103.53|100.14|0.00|-2.97|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|0001AEFA|5|8| +22|2023-10-06T20:27:09.4340000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|3C670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|6900|10000|||104.39|99.52|0.00|-2.92|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|0001AEFA|6|8| +22|2023-10-06T20:27:09.4340000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|3DA20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|120453|128564|10000|10000|||92.85|92.64|-0.01|0.07|62931|80739|2850|10000|||100.04|98.40|-0.01|-1.38|0001AEFA|7|8| +39|2023-10-06T20:27:09.4800000-07:00|10FF0002|Suchichi Suchi|71089|90128|10000|10000|||103.53|100.14|0.00|-2.97| +261|2023-10-06T20:27:08.9960000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:27:09.5240000-07:00|40022550|Zeromus|DoT|A92|777|16489638|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|59715|79111|8200|10000|||96.70|99.66|0.00|2.97| +21|2023-10-06T20:27:09.5240000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|289A0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|16489638|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6900|10000|||104.39|99.52|0.00|-2.92|0001AEFB|0|1| +38|2023-10-06T20:27:09.5240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6900|10000|14||104.39|99.52|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:09.5240000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:27:09.5240000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:27:09.5240000-07:00|40022550|Zeromus|005A5A00|16487727|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:27:09.1190000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:27:09.5680000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16487727|40478540|10000|10000|||100.00|80.10|0.00|0.00|61998|73085|4450|10000|||100.42|102.16|-0.02|-3.12|0001AEFC|0|1| +21|2023-10-06T20:27:09.6130000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|2E560000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|16487727|40478540|10000|10000|||100.00|80.10|0.00|0.00|120453|128564|10000|10000|||92.85|92.74|0.00|0.01|0001AEFD|0|1| +38|2023-10-06T20:27:09.6130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120453|128564|10000|10000|1||92.85|92.74|0.00|0.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:09.6130000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:27:09.6130000-07:00|A75|Surging Tempest|35.54|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:27:09.6570000-07:00|10FF0006|Wowobora Gogobora|005A5A28|55019|80739|3140|10000|14||97.43|99.87|0.00|3.01|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:09.6570000-07:00|13D|Fey Illumination|0.00|40022A88|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +24|2023-10-06T20:27:09.7920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15A1|120453|128564|10000|10000|||92.85|92.81|0.00|2.63|10FF0006|Wowobora Gogobora|0|55019|80739|3140|10000|||97.42|99.87|-0.02|-3.00| +37|2023-10-06T20:27:09.7920000-07:00|40022550|Zeromus|0001AEF8|16473413||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:09.7920000-07:00|40022550|Zeromus|0001AEF5|16457336||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:09.7920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125990|128564|10000|10000|1||92.85|92.81|0.00|2.63|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:09.7920000-07:00|10FF0002|Suchichi Suchi|005A5A16|71089|90128|10000|10000|12||103.53|100.14|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:09.7920000-07:00|13D|Fey Illumination|0.00|40022A88|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +37|2023-10-06T20:27:09.8360000-07:00|40022550|Zeromus|0001AEF9|16457184||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:09.9250000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|714003|32E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16457336|40478540|10000|10000|||100.00|80.10|0.00|0.00|60400|90055|10000|10000|||97.70|100.21|0.00|2.88|0001AEFE|0|1| +38|2023-10-06T20:27:09.9250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|59715|79111|8200|10000|23||96.70|99.66|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:09.9250000-07:00|13D|Fey Illumination|0.00|40022A88|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +38|2023-10-06T20:27:09.9250000-07:00|40022550|Zeromus|005A5A00|16457184|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T20:27:09.9250000-07:00|A1A|Death's Design|55.11|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +39|2023-10-06T20:27:10.0130000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7100|10000|||104.39|99.52|0.00|-2.92| +37|2023-10-06T20:27:10.0580000-07:00|10FF0004|Buhojaqe Zijaqe|0001AEFA|72636||||||101.21|99.31|0.00|0.39| +38|2023-10-06T20:27:10.0590000-07:00|10FF0003|Gegehi Gehi|005A5A23|61998|73085|4450|10000|15||102.80|102.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:10.0590000-07:00|13D|Fey Illumination|0.00|40022A88|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +37|2023-10-06T20:27:10.1030000-07:00|40022550|Zeromus|0001AEFB|16446790||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:10.1030000-07:00|10FF0001|Sesuga Sapisuga|0001AEFB|127791|127791|7100|10000|14||104.39|99.52|0.00|-2.92|1300|0|0|02|0400076E|03|41F00000|||||| +37|2023-10-06T20:27:10.1030000-07:00|40022550|Zeromus|0001AEFC|16446789||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:10.1030000-07:00|10FF0008|Kokosaze Lulusaze|651D|Crimson Strike|40022550|Zeromus|152003|6AC30000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|16457184|40478540|10000|10000|||100.00|80.10|0.00|0.00|59715|79111|8200|10000|||96.70|99.66|0.00|2.97|0001AEFF|0|1| +38|2023-10-06T20:27:10.1030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|14||104.39|99.52|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:10.1470000-07:00|40022550|Zeromus|0001AEF7|16436455||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:09.6860000-07:00|Change|10FF0001||| +37|2023-10-06T20:27:10.1930000-07:00|10FF0005|Wuwuchu Wuchu|0001AEFA|69864||||||97.70|100.21|0.00|2.99| +24|2023-10-06T20:27:10.1930000-07:00|40022550|Zeromus|DoT|0|2AB1|16436455|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|60400|90055|10000|10000|||97.70|100.21|0.00|2.99| +38|2023-10-06T20:27:10.1930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|14||104.39|99.52|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:10.1930000-07:00|13D|Fey Illumination|0.00|40022A88|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +38|2023-10-06T20:27:10.1930000-07:00|40022550|Zeromus|005A5A00|16425526|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:27:10.2370000-07:00|40022550|Zeromus|005A5A00|16425526|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:10.2370000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +261|2023-10-06T20:27:09.9150000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:27:10.3280000-07:00|10FF0006|Wowobora Gogobora|0001AEFA|70902||||||97.98|99.05|0.00|3.07| +38|2023-10-06T20:27:10.3280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125990|128564|10000|10000|1||92.18|94.05|0.00|2.17|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:10.3280000-07:00|13D|Fey Illumination|0.00|40022A88|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +21|2023-10-06T20:27:10.3700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16425526|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7100|10000|||104.39|99.52|0.00|-2.92|0001AF00|0|1| +31|2023-10-06T20:27:10.3700000-07:00|10FF0001||||| +37|2023-10-06T20:27:10.4600000-07:00|10FF0008|Kokosaze Lulusaze|0001AEFA|69346||||||96.70|99.66|0.00|2.97| +38|2023-10-06T20:27:10.4600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|72636|80739|2850|10000|13||102.43|100.24|0.00|1.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:10.4600000-07:00|13D|Fey Illumination|0.00|40022A88|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +39|2023-10-06T20:27:10.5040000-07:00|10FF0006|Wowobora Gogobora|71709|80739|3345|10000|||97.98|99.05|0.00|3.07| +261|2023-10-06T20:27:10.0350000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:27:10.1520000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:27:10.5940000-07:00|10FF0003|Gegehi Gehi|0001AEFA|71829||||||105.36|102.13|0.00|-3.11| +21|2023-10-06T20:27:10.5940000-07:00|10FF0006|Wowobora Gogobora|5EFC|Toxikon II|40022550|Zeromus|750003|344B0000|1B|5EFC8000|0|0|0|0|0|0|0|0|0|0|0|0|16425526|40478540|10000|10000|||100.00|80.10|0.00|0.00|71709|80739|3345|10000|||98.15|98.83|0.00|2.69|0001AF01|0|1| +38|2023-10-06T20:27:10.5940000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|69864|90055|10000|10000|12||97.72|100.21|0.00|2.92|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:10.5940000-07:00|13D|Fey Illumination|0.00|40022A88|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:27:10.7270000-07:00|10FF0002|Suchichi Suchi|0001AEFA|86857||||||103.53|100.14|0.00|-2.97| +21|2023-10-06T20:27:10.7710000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72636|80739|2850|10000|||103.25|100.46|0.00|1.14|72636|80739|2850|10000|||103.25|100.46|0.00|1.14|0001AF02|0|1| +21|2023-10-06T20:27:10.8170000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16425526|40478540|10000|10000|||100.00|80.10|0.00|0.00|72636|80739|2850|10000|||103.47|100.52|0.00|1.06|0001AF03|0|1| +20|2023-10-06T20:27:10.8170000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|105.89|102.07|0.00|-3.00| +37|2023-10-06T20:27:10.8610000-07:00|40022550|Zeromus|0001AEFF|16398195||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:10.8610000-07:00|10FF0005|Wuwuchu Wuchu|70764|90055|10000|10000|||98.09|99.77|0.00|2.90| +37|2023-10-06T20:27:10.9060000-07:00|40022550|Zeromus|0001AF00|16396413||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:10.9960000-07:00|10FF0007|Kehabiqo Febiqo|0001AEFA|128564||||||93.90|96.96|0.00|2.14| +261|2023-10-06T20:27:10.5370000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T20:27:11.0400000-07:00|10FF0008|Kokosaze Lulusaze|70137|79111|8400|10000|||94.33|100.57|0.00|-1.50| +37|2023-10-06T20:27:11.0830000-07:00|40022550|Zeromus|0001AEFE|16383389||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:11.1290000-07:00|10FF0004|Buhojaqe Zijaqe|73443|80739|3050|10000|||103.97|100.64|0.00|1.13| +261|2023-10-06T20:27:10.6510000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:27:10.6510000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:27:11.2630000-07:00|40022550|Zeromus|0001AEFD|16371527||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:11.2630000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F724003|53990000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|16383389|40478540|10000|10000|||100.00|80.10|0.00|0.00|86857|90128|10000|10000|||103.53|100.14|0.00|-2.97|0001AF04|0|1| +38|2023-10-06T20:27:11.2630000-07:00|10FF0002|Suchichi Suchi|005A5A16|86857|90128|10000|10000|12||103.53|100.14|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:11.2630000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:10.7730000-07:00|Change|40022B29||||| +38|2023-10-06T20:27:11.3070000-07:00|40022B3B||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:27:11.3070000-07:00|40022B3B||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:27:11.3520000-07:00|40022550|Zeromus|0001AF03|16371455||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:11.3970000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF02|73443|80739|3050|10000|13||104.14|100.64|0.00|1.42|1C00|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T20:27:11.3970000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:27:11.4420000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16371527|40478540|10000|10000|||100.00|80.10|0.00|0.00|71709|80739|3345|10000|||98.18|98.77|0.00|-2.45|0001AF05|0|1| +21|2023-10-06T20:27:11.4860000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16371455|40478540|10000|10000|||100.00|80.10|0.00|0.00|86857|90128|10000|10000|||103.53|100.14|0.00|-2.97|0001AF06|0|1| +261|2023-10-06T20:27:11.1200000-07:00|Change|10FF0003||||||||||||||||||||| +38|2023-10-06T20:27:11.6650000-07:00|10FF0002|Suchichi Suchi|005A5A16|86857|90128|10000|10000|12||103.53|100.14|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:11.2180000-07:00|40022B3B|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||91.74|101.85|0.00|2.03| +261|2023-10-06T20:27:11.2180000-07:00|Add|40022B3B||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:11.2180000-07:00|Change|40022B3B||| +24|2023-10-06T20:27:11.7970000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|224C|128564|128564|10000|10000|||95.23|99.29|-0.02|-0.06|10FF0006|Wowobora Gogobora|1|71709|80739|3345|10000|||96.75|100.18|0.00|-1.08| +37|2023-10-06T20:27:11.7970000-07:00|40022550|Zeromus|0001AF01|16358068||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:11.7980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|1||95.23|99.29|-0.02|-0.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:11.7980000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +39|2023-10-06T20:27:11.8870000-07:00|40022A88|Ruby Carbuncle|77430|77430|10000|10000|||99.90|97.15|0.00|3.14| +38|2023-10-06T20:27:11.8870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73443|80739|3600|10000|13||104.91|100.19|0.00|2.44|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:11.4040000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:27:11.9770000-07:00|40022550|Zeromus|0001AF04|16336667||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:11.9770000-07:00|10FF0002|Suchichi Suchi|0001AF04|86857|90128|10000|10000|12||103.53|100.14|0.00|-2.97|1600|0|0|01|02000322|0|41F00000|| +37|2023-10-06T20:27:11.9770000-07:00|40022550|Zeromus|0001AF05|16336629||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:11.9770000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|127D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16358068|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||95.23|99.29|0.00|-0.06|0001AF07|0|1| +38|2023-10-06T20:27:11.9770000-07:00|10FF0002|Suchichi Suchi|005A5A16|86857|90128|10000|10000|12||103.53|100.14|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:12.0230000-07:00|40022550|Zeromus|0001AF06|16333732||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:12.0230000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|261F0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|16336629|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7100|10000|||104.61|99.53|0.00|-2.91|0001AF08|0|1| +21|2023-10-06T20:27:12.0230000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16336629|40478540|10000|10000|||100.00|80.10|0.00|0.00|70764|90055|10000|10000|||96.02|99.44|0.00|-2.55|0001AF09|0|1| +38|2023-10-06T20:27:12.0230000-07:00|10FF0006|Wowobora Gogobora|005A5A28|71709|80739|3895|10000|14||95.54|100.48|0.00|-1.15|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:12.0230000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:12.0230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|14||104.61|99.53|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:12.0230000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +261|2023-10-06T20:27:11.5000000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:27:12.0660000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|16C00000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|16333732|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||95.23|99.29|0.00|2.90|0001AF0A|0|1| +21|2023-10-06T20:27:12.1550000-07:00|40022A88|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|200004|21EB0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|71709|80739|3895|10000|||94.79|100.35|0.00|-1.34|77430|77430|10000|10000|||99.90|97.15|0.00|-2.61|0001AF0B|0|1| +39|2023-10-06T20:27:12.2460000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||95.23|99.29|0.00|2.90| +21|2023-10-06T20:27:12.2460000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|152003|3A160000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|16333732|40478540|10000|10000|||100.00|80.10|0.00|0.00|71829|73085|4450|10000|||106.28|102.04|0.00|-2.86|0001AF0C|0|1| +38|2023-10-06T20:27:12.2460000-07:00|10FF0003|Gegehi Gehi|005A5A23|71829|73085|4250|10000|15||106.28|102.04|0.00|-2.86|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:12.2460000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:27:12.2460000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:27:12.2900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|1||95.23|99.29|0.00|2.90|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:12.2900000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:12.2900000-07:00|10FF0002|Suchichi Suchi|005A5A16|86857|90128|10000|10000|12||103.53|100.14|0.00|-2.97|0|0|0|||||||||||||||| +30|2023-10-06T20:27:12.2900000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:12.2900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70137|79111|8400|10000|23||91.98|102.76|0.00|0.34|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:12.2900000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:27:12.2900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|71709|80739|3895|10000|14||94.24|100.24|0.00|-1.48|0|0|0|||||||||||||||| +30|2023-10-06T20:27:12.2900000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:12.2900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7100|10000|14||104.61|99.53|0.00|-2.91|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:12.2900000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:27:12.2900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73443|80739|3600|10000|13||104.94|100.18|0.00|2.47|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:12.2900000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:27:12.2900000-07:00|10FF0003|Gegehi Gehi|005A5A23|71829|73085|4250|10000|15||106.28|102.04|0.00|-2.86|0|0|0||||||||||||| +30|2023-10-06T20:27:12.2900000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:27:12.2900000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70764|90055|10000|10000|12||95.42|99.86|0.00|-2.62|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:12.2900000-07:00|BBB|Holos|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:27:11.8360000-07:00|Change|40022B3B||| +34|2023-10-06T20:27:12.3340000-07:00|40022B3B|Carbuncle|40022B3B|Carbuncle|01| +39|2023-10-06T20:27:12.3780000-07:00|10FF0003|Gegehi Gehi|72559|73085|4450|10000|||106.28|102.04|0.00|-2.86| +21|2023-10-06T20:27:12.4230000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2ACE0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|16333732|40478540|10000|10000|||100.00|80.10|0.00|0.00|70764|90055|10000|10000|||95.09|100.09|0.00|-2.65|0001AF0D|0|1| +39|2023-10-06T20:27:12.4670000-07:00|10FF0002|Suchichi Suchi|87758|90128|10000|10000|||103.53|100.14|0.00|-2.97| +37|2023-10-06T20:27:12.5130000-07:00|40022550|Zeromus|0001AF07|16328999||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:12.0710000-07:00|Change|40022A88||||||||||| +21|2023-10-06T20:27:12.5130000-07:00|10FF0004|Buhojaqe Zijaqe|40A1|Summon Seraph|10FF0004|Buhojaqe Zijaqe|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73443|80739|3600|10000|||104.94|100.18|0.00|2.47|73443|80739|3600|10000|||104.94|100.18|0.00|2.47|0001AF0E|0|1| +38|2023-10-06T20:27:12.5570000-07:00|40022B3E||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:27:12.5570000-07:00|40022550|Zeromus|0001AF09|16325607||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:12.5570000-07:00|40022550|Zeromus|DoT|A92|49D|16328999|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|70137|79111|8400|10000|||92.00|102.83|0.00|0.49| +20|2023-10-06T20:27:12.5570000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|92.00|102.83|0.00|0.49| +38|2023-10-06T20:27:12.5570000-07:00|40022550|Zeromus|005A5A00|16324426|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:27:12.5570000-07:00|40022B3E||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:27:12.1700000-07:00|Change|10FF0008||||||||||||||||||||| +37|2023-10-06T20:27:12.6010000-07:00|40022550|Zeromus|0001AF0A|16318602||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:12.1700000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T20:27:12.6470000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|DB80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16318602|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7100|10000|||104.61|99.53|0.00|-2.91|0001AF0F|0|1| +31|2023-10-06T20:27:12.6470000-07:00|10FF0001||||| +261|2023-10-06T20:27:12.3640000-07:00|Add|40022B3E||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:12.3640000-07:00|40022B3E|Seraph|00|5A|10FF0004|00||8227|10487|73956|77430|10000|10000|||99.92|97.17|0.00|2.47| +261|2023-10-06T20:27:12.3640000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:27:12.9130000-07:00|40022550|Zeromus|0001AF0D|16307644||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:12.4560000-07:00|Change|40022B3E||| +39|2023-10-06T20:27:13.0020000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7300|10000|||104.61|99.53|0.00|-2.91| +261|2023-10-06T20:27:12.5490000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:13.0460000-07:00|40022550|Zeromus|0001AF0C|16292774||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:27:13.0900000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|92.65|101.13|-0.02|-0.66| +261|2023-10-06T20:27:12.6650000-07:00|Change|10FF0006||||||||||||||||||||| +38|2023-10-06T20:27:13.1350000-07:00|40022550|Zeromus|005A5A00|16292774|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:13.1350000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:27:13.1790000-07:00|40022550|Zeromus|0001AF0F|16289262||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:13.1790000-07:00|40022550|Zeromus|DoT|0|7B8|16292774|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|70764|90055|10000|10000|||94.75|100.09|0.00|-2.88| +38|2023-10-06T20:27:13.1800000-07:00|40022550|Zeromus|005A5A00|16287286|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T20:27:13.2240000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|26AC0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|16289262|40478540|10000|10000|||100.00|80.10|0.00|0.00|72559|73085|4450|10000|||106.28|102.04|0.00|-2.86|0001AF10|0|1| +38|2023-10-06T20:27:13.2240000-07:00|10FF0003|Gegehi Gehi|005A5A23|72559|73085|4150|10000|15||106.28|102.04|0.00|-2.86|0|0|0|||||||||||||||| +30|2023-10-06T20:27:13.2240000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:27:13.2240000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:27:13.3130000-07:00|40022550|Zeromus|0001AF08|16277527||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:13.3130000-07:00|10FF0001|Sesuga Sapisuga|0001AF08|127791|127791|7700|10000|14||104.66|99.53|0.00|3.07|1300|0|0|0| +39|2023-10-06T20:27:13.4900000-07:00|10FF0006|Wowobora Gogobora|72516|80739|4100|10000|||92.25|101.43|0.00|-2.65| +34|2023-10-06T20:27:13.5800000-07:00|40022B3E|Seraph|40022B3E|Seraph|01| +261|2023-10-06T20:27:13.1280000-07:00|Change|40022B3E||| +261|2023-10-06T20:27:13.2200000-07:00|Change|10FF0003||| +21|2023-10-06T20:27:13.7590000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|2A8B0000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|16277527|40478540|10000|10000|||100.00|80.10|0.00|0.00|87758|90128|10000|10000|||102.99|100.30|-0.02|-2.40|0001AF11|0|1| +38|2023-10-06T20:27:13.7590000-07:00|10FF0002|Suchichi Suchi|005A5A16|87758|90128|10000|10000|12||102.99|100.30|-0.02|-2.40|0|0|0|||||||||||||||| +30|2023-10-06T20:27:13.7590000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:13.7590000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:13.3110000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:27:13.3110000-07:00|Change|40022569||||||||| +20|2023-10-06T20:27:13.8480000-07:00|40022569|Zeromus|8B65|Branding Flare|10FF0004|Buhojaqe Zijaqe|9.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:27:13.8480000-07:00|4002256A|Zeromus|8B65|Branding Flare|10FF0006|Wowobora Gogobora|9.700|95.00|100.00|0.00|0.00| +20|2023-10-06T20:27:13.8480000-07:00|4002256B|Zeromus|8B65|Branding Flare|10FF0001|Sesuga Sapisuga|9.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:27:13.8480000-07:00|4002256C|Zeromus|8B65|Branding Flare|10FF0007|Kehabiqo Febiqo|9.700|95.00|100.00|0.00|0.00| +38|2023-10-06T20:27:13.8480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7700|10000|14||104.80|99.54|0.00|3.07|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:13.8480000-07:00|4A7|Rampart|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:27:13.3110000-07:00|Change|4002256C||||||||||||||| +261|2023-10-06T20:27:13.3110000-07:00|Change|4002256A||||||||||||||| +39|2023-10-06T20:27:13.8920000-07:00|10FF0005|Wuwuchu Wuchu|71664|90055|10000|10000|||93.95|99.87|0.00|-3.01| +21|2023-10-06T20:27:13.9380000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16277527|40478540|10000|10000|||100.00|80.10|0.00|0.00|73443|80739|3600|10000|||104.94|100.18|0.00|2.47|0001AF12|0|1| +37|2023-10-06T20:27:13.9820000-07:00|40022550|Zeromus|0001AF10|16267627||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:13.9820000-07:00|10FF0003|Gegehi Gehi|0001AF10|72559|73085|4150|10000|15||106.28|102.04|0.00|-2.86|2300|0|0|01|040004D3|0|41F00000|| +38|2023-10-06T20:27:13.9820000-07:00|10FF0003|Gegehi Gehi|005A5A23|72559|73085|4150|10000|15||106.28|102.04|0.00|-2.86|0|0|0|||||||||||||||| +261|2023-10-06T20:27:13.5120000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:27:14.0270000-07:00|10FF0008|Kokosaze Lulusaze|70928|79111|8600|10000|||92.00|102.83|0.00|2.80| +21|2023-10-06T20:27:14.0270000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|350A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|16267627|40478540|10000|10000|||100.00|80.10|0.00|0.00|72516|80739|4100|10000|||92.09|101.55|0.00|2.79|0001AF13|0|1| +261|2023-10-06T20:27:13.6030000-07:00|Change|10FF0008||||||| +261|2023-10-06T20:27:13.6030000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:27:13.7160000-07:00|Change|10FF0005||||||||| +38|2023-10-06T20:27:14.1170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70928|79111|8600|10000|23||92.00|102.83|0.00|2.80|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:14.1170000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +39|2023-10-06T20:27:14.1620000-07:00|10FF0004|Buhojaqe Zijaqe|74250|80739|3800|10000|||104.95|100.18|0.00|2.08| +261|2023-10-06T20:27:13.7160000-07:00|Change|10FF0004||||||| +261|2023-10-06T20:27:13.8330000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:27:13.8330000-07:00|Change|4002256B||||||||||||| +21|2023-10-06T20:27:14.2510000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|720003|DF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16267627|40478540|10000|10000|||100.00|80.10|0.00|0.00|72559|73085|4150|10000|||106.28|102.04|0.00|-2.86|0001AF14|0|1| +21|2023-10-06T20:27:14.2960000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16267627|40478540|10000|10000|||100.00|80.10|0.00|0.00|87758|90128|10000|10000|||102.89|100.33|-0.02|-3.00|0001AF15|0|1| +21|2023-10-06T20:27:14.2960000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|FD90E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|16267627|40478540|10000|10000|||100.00|80.10|0.00|0.00|74250|80739|3800|10000|||104.98|100.18|0.00|1.92|0001AF16|0|1| +37|2023-10-06T20:27:14.3850000-07:00|40022550|Zeromus|0001AF11|16256736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:14.3850000-07:00|10FF0002|Suchichi Suchi|0001AF11|87758|90128|10000|10000|12||102.89|100.33|0.00|-3.00|1600|0|0|01|03000323|0|41F00000|| +38|2023-10-06T20:27:14.3850000-07:00|10FF0002|Suchichi Suchi|005A5A16|87758|90128|10000|10000|12||102.89|100.33|0.00|-3.00|0|0|0|||||||||||||||| +261|2023-10-06T20:27:14.0680000-07:00|Change|40022A88||||| +37|2023-10-06T20:27:14.4740000-07:00|40022550|Zeromus|0001AF12|16256663||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:14.5190000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|33770000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|16256736|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||94.07|99.41|0.00|3.08|0001AF17|0|1| +21|2023-10-06T20:27:14.5190000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|26BB0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|16256736|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7700|10000|||104.80|99.54|0.00|-2.90|0001AF18|0|1| +21|2023-10-06T20:27:14.5190000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16256736|40478540|10000|10000|||100.00|80.10|0.00|0.00|72559|73085|4150|10000|||106.28|102.04|0.00|-2.86|0001AF19|0|1| +38|2023-10-06T20:27:14.5190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7700|10000|14||104.80|99.54|0.00|-2.90|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:14.5190000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:27:14.0680000-07:00|Change|40022B3E||| +261|2023-10-06T20:27:14.0680000-07:00|Remove|40022B10| +22|2023-10-06T20:27:14.6080000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0006|Wowobora Gogobora|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|0001AF1A|0|8| +22|2023-10-06T20:27:14.6080000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0005|Wuwuchu Wuchu|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|71664|90055|10000|10000|||92.93|100.54|0.00|-2.92|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|0001AF1A|1|8| +22|2023-10-06T20:27:14.6080000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0008|Kokosaze Lulusaze|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|70928|79111|8600|10000|||92.00|102.83|0.00|2.80|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|0001AF1A|2|8| +22|2023-10-06T20:27:14.6080000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0007|Kehabiqo Febiqo|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||94.07|99.41|0.00|2.85|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|0001AF1A|3|8| +22|2023-10-06T20:27:14.6080000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0002|Suchichi Suchi|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|87758|90128|10000|10000|||102.89|100.33|0.00|-3.00|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|0001AF1A|4|8| +22|2023-10-06T20:27:14.6080000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0001|Sesuga Sapisuga|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7700|10000|||104.80|99.54|0.00|-2.90|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|0001AF1A|5|8| +22|2023-10-06T20:27:14.6080000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0004|Buhojaqe Zijaqe|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|74250|80739|3400|10000|||105.11|100.18|0.00|-2.89|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|0001AF1A|6|8| +22|2023-10-06T20:27:14.6080000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0003|Gegehi Gehi|FDD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|72559|73085|4150|10000|||106.25|101.92|0.00|-2.86|72516|80739|3700|10000|||92.09|101.55|0.00|2.79|0001AF1A|7|8| +261|2023-10-06T20:27:14.2590000-07:00|Change|10FF0004||||||||| +24|2023-10-06T20:27:14.6970000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|2360|128564|128564|10000|10000|||94.07|99.41|0.00|2.85|10FF0006|Wowobora Gogobora|1|72516|80739|3700|10000|||92.09|101.55|0.00|2.79| +37|2023-10-06T20:27:14.6970000-07:00|40022550|Zeromus|0001AF13|16243085||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:14.6970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|1||94.07|99.41|0.00|2.85|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:14.6970000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:27:14.8320000-07:00|40022550|Zeromus|0001AF15|16240315||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:14.8320000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|4FD00000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|16243085|40478540|10000|10000|||100.00|80.10|0.00|0.00|70928|79111|8600|10000|||92.00|102.83|0.00|2.80|0001AF1B|0|1| +38|2023-10-06T20:27:14.8320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|1||94.07|99.41|0.00|2.85|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:14.8320000-07:00|4A7|Rampart|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:27:14.8760000-07:00|40022550|Zeromus|0001AF14|16236743||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:14.8760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74250|80739|3950|10000|13||105.18|100.18|0.00|-2.89|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:27:14.9210000-07:00|40022550|Zeromus|0001AF16|16236743|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:27:14.9210000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:27:14.9210000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16236743|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7700|10000|||104.80|99.54|0.00|-2.90|0001AF1C|0|1| +21|2023-10-06T20:27:14.9210000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|41E80000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|16236743|40478540|10000|10000|||100.00|80.10|0.00|0.00|71664|90055|10000|10000|||92.63|100.57|-0.02|-2.90|0001AF1D|0|1| +31|2023-10-06T20:27:14.9210000-07:00|10FF0001||||| +21|2023-10-06T20:27:14.9650000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|720003|11B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16236743|40478540|10000|10000|||100.00|80.10|0.00|0.00|72559|73085|4150|10000|||105.64|99.81|0.00|-2.86|0001AF1E|0|1| +38|2023-10-06T20:27:15.0100000-07:00|10FF0006|Wowobora Gogobora|005A5A28|72516|80739|4250|10000|14||92.10|101.57|0.00|2.40|0|0|0|||||||||||||||| +26|2023-10-06T20:27:15.0100000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:27:15.0550000-07:00|40022550|Zeromus|0001AF19|16236742||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:14.5770000-07:00|Change|10FF0008||||||||||||||| +261|2023-10-06T20:27:14.6920000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:15.1430000-07:00|40022550|Zeromus|0001AF17|16223567||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:15.1880000-07:00|40022B3E|Seraph|40A4|Seraphic Veil|10FF0005|Wuwuchu Wuchu|4|14A00000|A00E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|71664|90055|10000|10000|||92.60|100.59|0.00|2.80|73956|77430|10000|10000|||98.74|97.32|0.00|-2.85|0001AF1F|0|1| +38|2023-10-06T20:27:15.1880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|71664|90055|10000|10000|18||92.60|100.59|0.00|2.80|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:15.1880000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +39|2023-10-06T20:27:15.2310000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||94.07|99.41|0.00|2.85| +21|2023-10-06T20:27:15.2310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16223567|40478540|10000|10000|||100.00|80.10|0.00|0.00|72516|80739|4250|10000|||92.32|101.75|-0.02|1.50|0001AF20|0|1| +21|2023-10-06T20:27:15.2310000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16223567|40478540|10000|10000|||100.00|80.10|0.00|0.00|71664|90055|10000|10000|||92.56|100.58|-0.02|2.83|0001AF21|0|1| +39|2023-10-06T20:27:15.3660000-07:00|10FF0003|Gegehi Gehi|73085|73085|4350|10000|||105.64|99.81|0.00|-2.86| +21|2023-10-06T20:27:15.3660000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16223567|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||94.07|99.41|0.00|2.85|0001AF22|0|1| +261|2023-10-06T20:27:14.8470000-07:00|Change|10FF0003||||||||| +04|2023-10-06T20:27:14.8470000-07:00|40022B29|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|75851|0|10000|||98.14|101.47|0.00|2.97| +261|2023-10-06T20:27:14.8470000-07:00|Remove|40022B29| +37|2023-10-06T20:27:15.4550000-07:00|40022550|Zeromus|0001AF1B|16203135||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:15.4550000-07:00|10FF0006|Wowobora Gogobora|0001AF1A|72516|80739|4250|10000|14||92.47|101.86|0.00|1.20|2800|0|0|02|01000A3C|0|41700000|||||| +26|2023-10-06T20:27:15.4550000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:27:15.4550000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:27:15.4550000-07:00|40022550|Zeromus|0001AF1C|16201384||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:15.4550000-07:00|10FF0002|Suchichi Suchi|88659|90128|10000|10000|||102.92|100.34|0.00|-3.12| +37|2023-10-06T20:27:15.5000000-07:00|40022550|Zeromus|0001AF1D|16184512||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:15.5000000-07:00|10FF0006|Wowobora Gogobora|005A5A28|72516|80739|4250|10000|14||92.47|101.86|0.00|1.20|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:15.5000000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:27:15.5000000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72516|80739|4250|10000|||92.47|101.86|0.00|1.20|72516|80739|4250|10000|||92.47|101.86|0.00|1.20|0001AF23|0|1| +37|2023-10-06T20:27:15.5440000-07:00|40022550|Zeromus|0001AF1E|16179975||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:27:15.5440000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|92.00|102.83|0.00|2.80| +37|2023-10-06T20:27:15.5890000-07:00|10FF0005|Wuwuchu Wuchu|0001AF1A|71664|90055|10000|10000|18||92.30|100.47|0.00|-3.13|2701|0|0|02|06000A3C|0|41700000|||||| +26|2023-10-06T20:27:15.5890000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:27:15.5890000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:27:15.2830000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:27:15.7230000-07:00|10FF0008|Kokosaze Lulusaze|0001AF1A|70928|79111|8300|10000|23||92.00|102.83|0.00|2.80|1B02|0|0|02|02000A3C|0|41700000|||||| +26|2023-10-06T20:27:15.7230000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:27:15.7230000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:27:15.7230000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|722003|4DF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16179975|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4350|10000|||105.64|99.81|0.00|-2.86|0001AF24|0|1| +261|2023-10-06T20:27:15.3760000-07:00|Change|40022550||||| +37|2023-10-06T20:27:15.7680000-07:00|40022550|Zeromus|0001AF20|16179940||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:15.7680000-07:00|40022550|Zeromus|0001AF21|16176499||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:15.7680000-07:00|40022550|Zeromus|8B5F|Branding Flare|40022550|Zeromus|1B|8B5F8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16179975|40478540|10000|10000|||100.00|80.10|0.00|0.00|16179975|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AF25|0|1| +38|2023-10-06T20:27:15.7680000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4350|10000|15||105.64|99.81|0.00|-2.86|0|0|0|||||||||||||||| +30|2023-10-06T20:27:15.7680000-07:00|2B|Weakness|0.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +37|2023-10-06T20:27:15.8110000-07:00|40022550|Zeromus|0001AF18|16166584||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:15.8110000-07:00|10FF0001|Sesuga Sapisuga|0001AF18|127791|127791|8100|10000|14||104.84|99.49|0.00|-3.12|1300|0|0|0| +261|2023-10-06T20:27:15.3760000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:15.8560000-07:00|10FF0007|Kehabiqo Febiqo|0001AF1A|128564|128564|10000|10000|1||92.45|99.29|0.00|3.05|1503|0|0|02|04000A3C|0|41700000|||||| +26|2023-10-06T20:27:15.8560000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:27:15.8560000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:27:15.9010000-07:00|40022550|Zeromus|0001AF22|16161956||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:15.9890000-07:00|10FF0002|Suchichi Suchi|0001AF1A|88659|90128|10000|10000|12||104.81|99.19|0.00|3.11|1604|0|0|02|02000A3C|0|41700000|||||| +26|2023-10-06T20:27:15.9890000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:27:15.9890000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +39|2023-10-06T20:27:16.0350000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8300|10000|||105.33|99.15|0.00|-2.69| +37|2023-10-06T20:27:16.1230000-07:00|10FF0001|Sesuga Sapisuga|0001AF1A|127791|127791|8300|10000|14||105.33|99.15|0.00|-2.69|1305|0|0|02|03000A3C|0|41700000|||||| +26|2023-10-06T20:27:16.1230000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:27:16.1230000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:27:15.5810000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T20:27:16.2120000-07:00|10FF0005|Wuwuchu Wuchu|0001AF1F|76944|90055|10000|10000|18||92.03|100.45|0.00|-3.00|2700|0|0|01|0400077D|0|41E7CCCC|| +24|2023-10-06T20:27:16.2120000-07:00|40022550|Zeromus|DoT|0|F12|16161956|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|71664|90055|10000|10000|||92.03|100.45|0.00|-3.00| +38|2023-10-06T20:27:16.2120000-07:00|40022550|Zeromus|005A5A00|16158098|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:27:16.2570000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF1A|74250|80739|3950|10000|13||105.18|100.33|0.00|-0.11|1C06|0|0|02|07000A3C|0|41700000|||||| +26|2023-10-06T20:27:16.2570000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:27:16.2570000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:27:16.2570000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A722003|552B0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|16161956|40478540|10000|10000|||100.00|80.10|0.00|0.00|88659|90128|10000|10000|||104.90|99.31|0.00|-3.14|0001AF26|0|1| +38|2023-10-06T20:27:16.2570000-07:00|10FF0002|Suchichi Suchi|005A5A16|88659|90128|10000|10000|12||104.90|99.31|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:16.2570000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:16.2570000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:16.3890000-07:00|10FF0003|Gegehi Gehi|0001AF1A|73085|73085|4350|10000|15||105.73|99.99|0.00|0.82|2307|0|0|02|02000A3C|0|41700000|||||| +26|2023-10-06T20:27:16.3890000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:27:16.3890000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +04|2023-10-06T20:27:16.0370000-07:00|40022A88|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||99.90|97.15|0.00|-1.07| +261|2023-10-06T20:27:16.0370000-07:00|Remove|40022A88| +39|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|73323|80739|4455|10000|||92.71|101.70|0.00|1.95| +22|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|E330000|700E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|0001AF27|0|8| +22|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|DFE0000|C60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.01|99.28|0.00|3.07|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|0001AF27|1|8| +22|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|4|DCC0000|26000014|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|70928|79111|8300|10000|||92.00|102.83|0.00|2.80|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|0001AF27|2|8| +22|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|E1E0000|2C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|76944|90055|10000|10000|||91.99|100.45|0.00|-2.99|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|0001AF27|3|8| +22|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|E370000|7C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|88659|90128|10000|10000|||104.97|99.40|0.00|-2.89|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|0001AF27|4|8| +22|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|200004|17090000|B60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|74250|80739|3950|10000|||105.18|100.36|-0.02|0.11|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|0001AF27|5|8| +22|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|200004|15FD0000|5C000014|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|8300|10000|||105.33|99.15|0.00|-2.69|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|0001AF27|6|8| +22|2023-10-06T20:27:16.5240000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|E050000|DC0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|73085|73085|4350|10000|||106.08|100.70|0.00|0.73|72516|80739|4250|10000|||92.71|101.70|0.00|1.95|0001AF27|7|8| +38|2023-10-06T20:27:16.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||91.89|99.27|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:16.5250000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:16.5250000-07:00|10FF0002|Suchichi Suchi|005A5A16|88659|90128|10000|10000|12||105.00|99.43|0.00|-2.89|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:16.5250000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:16.5250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|73323|80739|3555|10000|14||92.86|101.46|-0.02|2.08|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:16.5250000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:16.5250000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:16.5250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74250|80739|3950|10000|23||105.18|100.36|0.00|0.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:16.5250000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:27:16.5250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4350|10000|15||106.42|101.37|-0.02|0.65|0|0|0|||||||||||||||| +26|2023-10-06T20:27:16.5250000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:27:16.5250000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|76944|90055|10000|10000|18||91.97|100.45|0.00|-2.98|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:16.5250000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:27:16.0370000-07:00|Change|10FF0006||||||||||| +20|2023-10-06T20:27:16.7010000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|105.18|100.36|0.00|0.11| +261|2023-10-06T20:27:16.2540000-07:00|Change|10FF0004||||||||||||||||| +22|2023-10-06T20:27:16.7910000-07:00|4002256D|Zeromus|8B60|Flare|10FF0004|Buhojaqe Zijaqe|150003|A2470000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|74250|80739|3950|10000|||105.18|100.36|0.00|-0.29|44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF28|0|4| +22|2023-10-06T20:27:16.7910000-07:00|4002256D|Zeromus|8B60|Flare|10FF0002|Suchichi Suchi|150003|CC6D0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|88659|90128|10000|10000|||105.02|99.47|-0.01|-2.89|44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF28|1|4| +22|2023-10-06T20:27:16.7910000-07:00|4002256D|Zeromus|8B60|Flare|10FF0001|Sesuga Sapisuga|150003|55540000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|8300|10000|||105.33|99.15|0.00|-2.69|44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF28|2|4| +22|2023-10-06T20:27:16.7910000-07:00|4002256D|Zeromus|8B60|Flare|10FF0003|Gegehi Gehi|150003|C1EB0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|4350|10000|||106.64|101.80|0.00|0.56|44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF28|3|4| +22|2023-10-06T20:27:16.7910000-07:00|4002256E|Zeromus|8B60|Flare|10FF0006|Wowobora Gogobora|150003|BE740000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73323|80739|3555|10000|||93.10|101.05|0.00|2.31|44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF29|0|4| +22|2023-10-06T20:27:16.7910000-07:00|4002256E|Zeromus|8B60|Flare|10FF0007|Kehabiqo Febiqo|150003|6D6C0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||91.69|99.26|-0.01|3.08|44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF29|1|4| +22|2023-10-06T20:27:16.7910000-07:00|4002256E|Zeromus|8B60|Flare|10FF0008|Kokosaze Lulusaze|150003|A3C50000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|70928|79111|8300|10000|||92.00|102.83|0.00|2.80|44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF29|2|4| +22|2023-10-06T20:27:16.7910000-07:00|4002256E|Zeromus|8B60|Flare|10FF0005|Wuwuchu Wuchu|150003|B5970000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|76944|90055|10000|10000|||91.06|100.54|0.00|-3.01|44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF29|3|4| +261|2023-10-06T20:27:16.2540000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:27:16.2540000-07:00|Change|4002256E||||||||||||| +37|2023-10-06T20:27:16.8800000-07:00|40022550|Zeromus|0001AF24|16138140||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:16.8800000-07:00|10FF0005|Wuwuchu Wuchu|77844|90055|10000|10000|||90.78|100.57|-0.02|-3.02| +261|2023-10-06T20:27:16.3470000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:16.9260000-07:00|40022550|Zeromus|0001AF26|16116337||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:16.9260000-07:00|10FF0002|Suchichi Suchi|0001AF26|88659|90128|10000|10000|12||105.03|99.47|0.00|-2.89|1600|0|0|01|06000747|0|41F00000|| +38|2023-10-06T20:27:16.9260000-07:00|10FF0002|Suchichi Suchi|005A5A16|88659|90128|10000|10000|12||105.03|99.47|0.00|-2.89|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:27:16.9710000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF28|32707|80739|3950|10000|0||105.18|100.36|0.00|-1.83|1C00|0|0|01|03000000|0|0|| +37|2023-10-06T20:27:16.9710000-07:00|10FF0006|Wowobora Gogobora|0001AF29|24567|80739|3555|10000|0||93.32|100.70|-0.01|2.50|2800|0|0|01|04000000|0|0|| +21|2023-10-06T20:27:16.9710000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F714003|3A8E0000|143E|340000|4|19838000|11B|2A8000|0|0|0|0|0|0|0|0|16116337|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||91.66|99.26|0.00|3.03|0001AF2A|0|1| +21|2023-10-06T20:27:16.9710000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41CB0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||91.66|99.26|0.00|3.03|16116337|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AF2B|0|1| +38|2023-10-06T20:27:16.9710000-07:00|10FF0006|Wowobora Gogobora|005A5A28|24567|80739|3555|10000|0||93.32|100.70|-0.01|2.50|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:16.9710000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:16.9710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|32707|80739|3950|10000|0||105.18|100.36|0.00|-1.83|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:16.9710000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:27:17.0170000-07:00|10FF0002|Suchichi Suchi|0001AF28|36326|90128|10000|10000|0||105.03|99.47|0.00|-2.89|1601|0|0|01|0|0|0|| +37|2023-10-06T20:27:17.0170000-07:00|10FF0007|Kehabiqo Febiqo|0001AF29|100552|128564|10000|10000|0||91.66|99.26|0.00|2.73|1501|0|0|01|07000000|0|0|| +39|2023-10-06T20:27:17.0170000-07:00|10FF0008|Kokosaze Lulusaze|71719|79111|8500|10000|||92.00|102.83|0.00|2.80| +21|2023-10-06T20:27:17.0170000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|418F0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|16116337|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8300|10000|||105.33|99.15|0.00|-2.87|0001AF2C|0|1| +38|2023-10-06T20:27:17.0170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100552|128564|10000|10000|0||91.66|99.26|0.00|2.73|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:17.0170000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:17.0170000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:17.0170000-07:00|10FF0002|Suchichi Suchi|005A5A16|36326|90128|10000|10000|0||105.03|99.47|0.00|-2.89|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:17.0170000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:17.0170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8300|10000|14||105.33|99.15|0.00|-2.87|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:17.0170000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:27:17.0590000-07:00|10FF0001|Sesuga Sapisuga|0001AF28|105947|127791|8300|10000|0||105.33|99.15|0.00|-2.87|1302|0|0|01|02000000|0|0|| +37|2023-10-06T20:27:17.0590000-07:00|10FF0008|Kokosaze Lulusaze|0001AF29|29794|79111|8500|10000|0||92.00|102.83|0.00|2.80|1B02|0|0|01|08000000|0|0|| +38|2023-10-06T20:27:17.0600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|29794|79111|8500|10000|0||92.00|102.83|0.00|2.80|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:17.0600000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:27:17.0600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105947|127791|8300|10000|0||105.33|99.15|0.00|-2.87|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:17.0600000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:27:16.6570000-07:00|Change|10FF0008||||| +37|2023-10-06T20:27:17.1040000-07:00|10FF0003|Gegehi Gehi|0001AF28|23442|73085|4350|10000|0||106.87|102.25|0.00|0.49|2303|0|0|01|01000000|0|0|| +37|2023-10-06T20:27:17.1040000-07:00|10FF0005|Wuwuchu Wuchu|0001AF29|31357|90055|10000|10000|0||91.35|100.54|0.00|-3.05|2703|0|0|02|02000000|0|0|||||| +21|2023-10-06T20:27:17.1040000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B0E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16116337|40478540|10000|10000|||100.00|80.10|0.00|0.00|88659|90128|10000|10000|||105.03|99.47|0.00|-2.89|0001AF2D|0|1| +38|2023-10-06T20:27:17.1040000-07:00|10FF0003|Gegehi Gehi|005A5A23|23442|73085|4350|10000|0||106.87|102.25|0.00|0.49|0|0|0|||||||||||||||| +30|2023-10-06T20:27:17.1040000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:27:17.1040000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|31357|90055|10000|10000|0||91.35|100.54|0.00|-3.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:17.1040000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:27:17.1040000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +39|2023-10-06T20:27:17.1480000-07:00|10FF0004|Buhojaqe Zijaqe|33514|80739|4150|10000|||105.18|100.36|0.00|-2.46| +21|2023-10-06T20:27:17.1930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16116337|40478540|10000|10000|||100.00|80.10|0.00|0.00|105947|127791|8300|10000|||105.33|99.15|0.00|-2.87|0001AF2E|0|1| +31|2023-10-06T20:27:17.1930000-07:00|10FF0001||||| +39|2023-10-06T20:27:17.2820000-07:00|40022B3B|Carbuncle|75851|75851|10000|10000|||91.74|101.85|0.00|2.03| +37|2023-10-06T20:27:17.4610000-07:00|10FF0006|Wowobora Gogobora|0001AF27|28202||||||93.33|100.67|0.00|2.08| +37|2023-10-06T20:27:17.5940000-07:00|10FF0007|Kehabiqo Febiqo|0001AF27|104134||||||91.66|99.26|-0.02|2.74| +261|2023-10-06T20:27:17.2100000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:27:17.6400000-07:00|40022550|Zeromus|0001AF2D|16113507||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:17.6400000-07:00|10FF0002|Suchichi Suchi|HoT|0|100C|36326|90128|10000|10000|||106.38|98.21|0.00|-3.13|10FF0002|Suchichi Suchi|0|36326|90128|10000|10000|||106.38|98.21|0.00|-3.13| +21|2023-10-06T20:27:17.6400000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|23790000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16116337|40478540|10000|10000|||100.00|80.10|0.00|0.00|33514|80739|4150|10000|||105.18|100.36|-0.02|-3.06|0001AF2F|0|1| +38|2023-10-06T20:27:17.6400000-07:00|10FF0002|Suchichi Suchi|005A5A16|40434|90128|10000|10000|0||106.38|98.21|0.00|-3.13|0|0|0|||||||||||||||||||||| +24|2023-10-06T20:27:17.6850000-07:00|10FF0003|Gegehi Gehi|HoT|0|117C|23442|73085|4350|10000|||107.92|104.33|0.00|0.47|10FF0003|Gegehi Gehi|0|23442|73085|4350|10000|||107.92|104.33|0.00|0.47| +38|2023-10-06T20:27:17.6850000-07:00|10FF0003|Gegehi Gehi|005A5A23|27918|73085|4350|10000|0||107.92|104.33|0.00|0.47|0|0|0|||||||||||||||| +37|2023-10-06T20:27:17.7290000-07:00|10FF0008|Kokosaze Lulusaze|0001AF27|33326||||||92.00|102.83|0.00|2.80| +37|2023-10-06T20:27:17.7290000-07:00|40022550|Zeromus|0001AF2E|16110628||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:17.3010000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:27:17.7730000-07:00|10FF0007|Kehabiqo Febiqo|0001AF2B|87291||||||91.66|99.17|0.00|2.93| +261|2023-10-06T20:27:17.4000000-07:00|Change|10FF0002||||||||| +27|2023-10-06T20:27:17.8180000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|00C5|0000|0000|0000| +27|2023-10-06T20:27:17.8180000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|00C5|0000|0000|0000| +21|2023-10-06T20:27:17.8180000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|51FF0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|16110628|40478540|10000|10000|||100.00|80.10|0.00|0.00|33326|79111|8500|10000|||92.00|102.83|0.00|2.80|0001AF30|0|1| +37|2023-10-06T20:27:17.8630000-07:00|10FF0005|Wuwuchu Wuchu|0001AF27|34971||||||89.02|100.44|0.00|3.10| +24|2023-10-06T20:27:17.8630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|101D|105947|127791|8300|10000|||106.24|97.84|0.00|-2.86|10FF0006|Wowobora Gogobora|0|28202|80739|3555|10000|||92.93|101.26|0.00|0.04| +24|2023-10-06T20:27:17.8630000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1C08|33514|80739|3750|10000|||105.20|100.38|0.00|-2.89|10FF0006|Wowobora Gogobora|0|28202|80739|3555|10000|||92.93|101.26|0.00|0.04| +38|2023-10-06T20:27:17.8630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110072|127791|8300|10000|0||106.24|97.84|0.00|-2.86|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:27:17.8630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40690|80739|4300|10000|0||105.20|100.38|0.00|-2.89|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:27:17.4000000-07:00|Change|10FF0005||||||||| +20|2023-10-06T20:27:17.9070000-07:00|40022550|Zeromus|8D28|Nox|40022550|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:17.4000000-07:00|Change|40022550||||||||| +24|2023-10-06T20:27:17.9520000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1006|34971|90055|10000|10000|||88.47|100.37|0.00|3.07|10FF0006|Wowobora Gogobora|0|28202|80739|3555|10000|||92.82|101.47|0.00|-0.22| +38|2023-10-06T20:27:17.9520000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|39073|90055|10000|10000|0||88.47|100.37|0.00|3.07|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:27:17.9970000-07:00|10FF0002|Suchichi Suchi|0001AF27|44073||||||108.56|96.19|0.00|3.11| +24|2023-10-06T20:27:17.9970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1A4A|28202|80739|3555|10000|||92.70|101.68|0.00|-0.47|10FF0006|Wowobora Gogobora|0|28202|80739|3555|10000|||92.70|101.68|0.00|-0.47| +38|2023-10-06T20:27:17.9970000-07:00|10FF0006|Wowobora Gogobora|005A5A28|34932|80739|4105|10000|0||92.70|101.68|0.00|-0.47|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:17.9970000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:18.0420000-07:00|10FF0006|Wowobora Gogobora|005A5A28|34932|80739|4105|10000|0||92.70|101.68|0.00|-0.47|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:18.0420000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:27:18.0420000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28202|80739|3555|10000|||92.70|101.68|0.00|-0.47|28202|80739|3555|10000|||92.70|101.68|0.00|-0.47|0001AF31|0|1| +21|2023-10-06T20:27:18.0420000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16110628|40478540|10000|10000|||100.00|80.10|0.00|0.00|28202|80739|3555|10000|||92.70|101.68|0.00|-0.47|0001AF32|0|1| +21|2023-10-06T20:27:18.0420000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16110628|40478540|10000|10000|||100.00|80.10|0.00|0.00|40690|80739|4300|10000|||105.44|100.87|0.00|2.84|0001AF33|0|1| +37|2023-10-06T20:27:18.1300000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF27|46587||||||105.44|100.87|0.00|2.84| +261|2023-10-06T20:27:17.5980000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:27:17.7180000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:27:18.2650000-07:00|10FF0001|Sesuga Sapisuga|0001AF27|115701||||||107.22|95.57|0.00|-2.71| +39|2023-10-06T20:27:18.2650000-07:00|10FF0007|Kehabiqo Febiqo|88576|128564|10000|10000|||91.65|98.85|0.00|-3.13| +38|2023-10-06T20:27:18.2650000-07:00|40022B3E|Seraph|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|2.99|0|0|0||||||| +26|2023-10-06T20:27:18.2650000-07:00|30|Well Fed|1379.02|10FF0004|Buhojaqe Zijaqe|40022B3E|Seraph|2968|77430|80739| +26|2023-10-06T20:27:18.2650000-07:00|7AD|Summon Order III|30.00|40022B3E|Seraph|40022B3E|Seraph|01|77430|77430| +21|2023-10-06T20:27:18.2650000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46587|80739|4300|10000|||106.07|102.20|0.00|1.36|46587|80739|4300|10000|||106.07|102.20|0.00|1.36|0001AF34|0|1| +37|2023-10-06T20:27:18.3100000-07:00|40022550|Zeromus|0001AF2C|16093845||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:18.3100000-07:00|10FF0001|Sesuga Sapisuga|0001AF2C|115701|127791|8700|10000|0||107.43|94.98|0.00|-2.70|1300|0|0|0| +22|2023-10-06T20:27:18.3560000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|20970000|970E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|88576|128564|10000|10000|||91.64|98.80|0.00|-3.13|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AF35|0|8| +22|2023-10-06T20:27:18.3560000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|200004|33090000|90E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|33326|79111|8200|10000|||91.97|102.86|0.00|-2.79|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AF35|1|8| +22|2023-10-06T20:27:18.3560000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|1F180000|180E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|34932|80739|4105|10000|||92.58|101.90|0.00|-0.70|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AF35|2|8| +22|2023-10-06T20:27:18.3560000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|1F9D0000|9D0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|115701|127791|8300|10000|||107.43|94.98|0.00|-2.70|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AF35|3|8| +22|2023-10-06T20:27:18.3560000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0005|Wuwuchu Wuchu|4|206B0000|6B0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|39073|90055|10000|10000|||87.03|98.76|0.00|-3.09|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AF35|4|8| +22|2023-10-06T20:27:18.3560000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|20470000|470E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|46587|80739|4300|10000|||106.35|102.67|0.00|1.16|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AF35|5|8| +22|2023-10-06T20:27:18.3560000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0002|Suchichi Suchi|4|1F1D0000|1D0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|44073|90128|10000|10000|||109.63|95.05|0.00|3.14|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AF35|6|8| +22|2023-10-06T20:27:18.3560000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|200004|32400000|400E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|27918|73085|4350|10000|||110.22|107.95|0.00|0.59|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AF35|7|8| +39|2023-10-06T20:27:18.3560000-07:00|10FF0003|Gegehi Gehi|28648|73085|4550|10000|||110.22|107.95|0.00|0.59| +38|2023-10-06T20:27:18.3560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88576|128564|10000|10000|6||91.64|98.80|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:18.3560000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:27:18.3560000-07:00|10FF0002|Suchichi Suchi|005A5A16|44073|90128|10000|10000|8||109.63|95.05|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:18.3560000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0002|Suchichi Suchi|00|90128|77430| +38|2023-10-06T20:27:18.3560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|33326|79111|8200|10000|16||91.97|102.86|0.00|-2.79|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:18.3560000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +38|2023-10-06T20:27:18.3560000-07:00|10FF0006|Wowobora Gogobora|005A5A28|34932|80739|4105|10000|9||92.58|101.90|0.00|-0.70|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:18.3560000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0006|Wowobora Gogobora|00|80739|77430| +38|2023-10-06T20:27:18.3560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|115701|127791|8700|10000|6||107.43|94.98|0.00|-2.70|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:18.3560000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0001|Sesuga Sapisuga|00|127791|77430| +38|2023-10-06T20:27:18.3560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46587|80739|4300|10000|10||106.35|102.67|0.00|1.16|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:18.3560000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +38|2023-10-06T20:27:18.3560000-07:00|10FF0003|Gegehi Gehi|005A5A23|28648|73085|4550|10000|17||110.22|107.95|0.00|0.59|0|0|0|||||||||||||||| +26|2023-10-06T20:27:18.3560000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0003|Gegehi Gehi|00|73085|77430| +38|2023-10-06T20:27:18.3560000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|39073|90055|10000|10000|9||87.03|98.76|0.00|-3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:18.3560000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:27:18.3990000-07:00|10FF0003|Gegehi Gehi|0001AF27|32237||||||110.22|107.95|0.00|0.59| +261|2023-10-06T20:27:17.9480000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:18.4440000-07:00|40022550|Zeromus|0001AF30|16072854||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:18.4440000-07:00|40022550|Zeromus|0001AF2F|16063773||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:18.4440000-07:00|10FF0002|Suchichi Suchi|44974|90128|10000|10000|||110.00|94.61|0.00|-3.12| +21|2023-10-06T20:27:18.4440000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CAA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16093845|40478540|10000|10000|||100.00|80.10|0.00|0.00|39073|90055|10000|10000|||86.81|98.26|0.00|-3.04|0001AF36|0|1| +261|2023-10-06T20:27:18.0660000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:27:18.4880000-07:00|40022550|Zeromus|0001AF2A|16048783||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:18.4880000-07:00|10FF0007|Kehabiqo Febiqo|0001AF2A|95107||||||91.38|98.39|0.00|-3.13| +24|2023-10-06T20:27:18.5330000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1155|88576|128564|10000|10000|||91.38|98.39|0.00|-3.13|10FF0007|Kehabiqo Febiqo|0|88576|128564|10000|10000|||91.38|98.39|0.00|-3.13| +24|2023-10-06T20:27:18.5330000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1C7C|33326|79111|8200|10000|||91.95|102.89|0.00|-2.17|10FF0008|Kokosaze Lulusaze|0|33326|79111|8200|10000|||91.95|102.89|0.00|-2.17| +21|2023-10-06T20:27:18.5330000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|752003|70D90000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|16093845|40478540|10000|10000|||100.00|80.10|0.00|0.00|33326|79111|8200|10000|||91.95|102.89|0.00|-2.17|0001AF37|0|1| +38|2023-10-06T20:27:18.5330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99544|128564|10000|10000|6||91.38|98.39|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:18.5330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|40618|79111|7800|10000|16||91.95|102.89|0.00|-2.17|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:18.5330000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:27:18.5770000-07:00|40022550|Zeromus|0001AF32|16048747||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:18.5770000-07:00|40022550|Zeromus|0001AF33|16048673||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:18.6220000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40714003|51D00000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|16048673|40478540|10000|10000|||100.00|80.10|0.00|0.00|39073|90055|10000|10000|||86.68|97.76|0.00|-2.96|0001AF38|0|1| +261|2023-10-06T20:27:18.2660000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:27:18.7570000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|E080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16048673|40478540|10000|10000|||100.00|80.10|0.00|0.00|99544|128564|10000|10000|||90.34|96.99|0.00|-3.12|0001AF39|0|1| +21|2023-10-06T20:27:18.7570000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|267E0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|16048673|40478540|10000|10000|||100.00|80.10|0.00|0.00|44974|90128|10000|10000|||110.93|93.42|0.00|-3.06|0001AF3A|0|1| +38|2023-10-06T20:27:18.7570000-07:00|10FF0002|Suchichi Suchi|005A5A16|44974|90128|10000|10000|8||110.93|93.42|0.00|-3.06|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:18.7570000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:18.2660000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:27:18.2660000-07:00|Change|40022567||||||||| +261|2023-10-06T20:27:18.2660000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:27:18.3610000-07:00|Change|40022565||||||||| +261|2023-10-06T20:27:18.3610000-07:00|Change|40022563||||||||| +261|2023-10-06T20:27:18.3610000-07:00|Change|40022561||||||||| +261|2023-10-06T20:27:18.3610000-07:00|Change|4002255F||||||||| +21|2023-10-06T20:27:18.8900000-07:00|40022567|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF3B|0|0| +21|2023-10-06T20:27:18.8900000-07:00|40022568|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF3C|0|0| +20|2023-10-06T20:27:18.8900000-07:00|4002256D|Zeromus|8B62|Flare|4002256D|Zeromus|4.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:27:18.8900000-07:00|4002256E|Zeromus|8B62|Flare|4002256E|Zeromus|4.700|95.00|100.00|0.00|0.00| +261|2023-10-06T20:27:18.3610000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:27:18.3610000-07:00|Change|4002256E||||||||||||| +20|2023-10-06T20:27:18.9330000-07:00|4002255F|Zeromus|8B63|Prominence Spine|4002255F|Zeromus|4.700|95.00|100.00|0.00|1.57| +20|2023-10-06T20:27:18.9330000-07:00|40022560|Zeromus|8B63|Prominence Spine|40022560|Zeromus|4.700|95.00|100.00|0.00|0.00| +20|2023-10-06T20:27:18.9330000-07:00|40022561|Zeromus|8B63|Prominence Spine|40022561|Zeromus|4.700|95.00|100.00|0.00|-1.57| +20|2023-10-06T20:27:18.9330000-07:00|40022562|Zeromus|8B63|Prominence Spine|40022562|Zeromus|4.700|95.00|100.00|0.00|3.14| +20|2023-10-06T20:27:18.9330000-07:00|40022563|Zeromus|8B63|Prominence Spine|40022563|Zeromus|4.700|105.00|100.00|0.00|1.57| +20|2023-10-06T20:27:18.9330000-07:00|40022564|Zeromus|8B63|Prominence Spine|40022564|Zeromus|4.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:27:18.9330000-07:00|40022565|Zeromus|8B63|Prominence Spine|40022565|Zeromus|4.700|105.00|100.00|0.00|-1.57| +20|2023-10-06T20:27:18.9330000-07:00|40022566|Zeromus|8B63|Prominence Spine|40022566|Zeromus|4.700|105.00|100.00|0.00|3.14| +261|2023-10-06T20:27:18.4520000-07:00|Change|40022560||||||||||||||||| +261|2023-10-06T20:27:18.4520000-07:00|Change|40022566||||||||||||||||| +261|2023-10-06T20:27:18.4520000-07:00|Change|40022562||||||||||||||||| +261|2023-10-06T20:27:18.4520000-07:00|Change|40022564||||||||||||||| +37|2023-10-06T20:27:18.9780000-07:00|40022550|Zeromus|0001AF36|16045431||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:19.0230000-07:00|10FF0001|Sesuga Sapisuga|116978|127791|8900|10000|||110.08|93.47|0.00|3.06| +21|2023-10-06T20:27:19.0680000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|16045431|40478540|10000|10000|||100.00|80.10|0.00|0.00|34932|80739|4105|10000|||89.48|105.30|-0.02|-0.90|0001AF3D|0|1| +38|2023-10-06T20:27:19.0680000-07:00|10FF0006|Wowobora Gogobora|005A5A28|34932|80739|3705|10000|9||89.48|105.30|-0.02|-0.90|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:19.0680000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:27:18.5690000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:19.1570000-07:00|40022550|Zeromus|0001AF38|16024487||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:19.2020000-07:00|40022550|Zeromus|DoT|0|EC7|16045431|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|39073|90055|10000|10000|||86.57|97.13|0.00|2.52| +261|2023-10-06T20:27:18.6930000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:27:19.2030000-07:00|40022550|Zeromus|005A5A00|16020704|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:27:18.8110000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:27:19.2460000-07:00|10FF0007|Kehabiqo Febiqo|0001AF35|107887|128564|10000|10000|6||88.02|93.88|0.00|-3.12|1500|0|0|01|0600077D|0|41E8DD2C|| +37|2023-10-06T20:27:19.2920000-07:00|40022550|Zeromus|0001AF39|16017112||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:18.8110000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:27:19.3360000-07:00|40022550|Zeromus|0001AF37|15988223||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:19.3800000-07:00|40022550|Zeromus|0001AF3A|15978369||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:19.3800000-07:00|10FF0008|Kokosaze Lulusaze|0001AF35|53683|79111|7800|10000|16||89.47|106.26|0.00|-0.76|1B01|0|0|01|0400077D|0|41E7CABD|| +21|2023-10-06T20:27:19.3800000-07:00|10FF0008|Kokosaze Lulusaze|03|Sprint|10FF0008|Kokosaze Lulusaze|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40618|79111|7800|10000|||89.47|106.26|0.00|-0.76|40618|79111|7800|10000|||89.47|106.26|0.00|-0.76|0001AF3E|0|1| +261|2023-10-06T20:27:18.9340000-07:00|Change|40022561||||||||||||| +261|2023-10-06T20:27:18.9340000-07:00|Change|40022563||||||||||||| +261|2023-10-06T20:27:18.9340000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:27:18.9340000-07:00|Change|4002255F||||||||||||| +21|2023-10-06T20:27:19.4230000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|39AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15988223|40478540|10000|10000|||100.00|80.10|0.00|0.00|107887|128564|10000|10000|||87.59|93.39|0.00|-3.12|0001AF3F|0|1| +21|2023-10-06T20:27:19.4680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15978369|40478540|10000|10000|||100.00|80.10|0.00|0.00|116978|127791|8900|10000|||112.08|91.18|0.00|3.05|0001AF40|0|1| +31|2023-10-06T20:27:19.4680000-07:00|10FF0001||||| +261|2023-10-06T20:27:19.0450000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:27:19.0450000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:27:19.5130000-07:00|10FF0008|Kokosaze Lulusaze|0001AF3E|53683|79111|7800|10000|16||89.07|106.79|0.00|-0.61|1B00|0|0|01|06000032|1E|41200000|| +26|2023-10-06T20:27:19.5130000-07:00|32|Sprint|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|79111|79111| +37|2023-10-06T20:27:19.5130000-07:00|10FF0006|Wowobora Gogobora|0001AF35|42892|80739|3705|10000|9||88.61|105.76|0.00|-2.69|2802|0|0|01|0600077D|0|41E6BC67|| +39|2023-10-06T20:27:19.5130000-07:00|10FF0006|Wowobora Gogobora|43699|80739|3910|10000|||88.61|105.76|0.00|-2.69| +21|2023-10-06T20:27:19.5130000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|752003|4C0F0000|4|2AA38000|0|0|0|0|0|0|0|0|0|0|0|0|15978369|40478540|10000|10000|||100.00|80.10|0.00|0.00|116978|127791|8900|10000|||112.08|91.18|0.00|3.05|0001AF41|0|1| +38|2023-10-06T20:27:19.5130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116978|127791|7900|10000|6||112.08|91.18|0.00|3.05|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:19.5130000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:27:19.1580000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:27:19.1580000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:19.6450000-07:00|10FF0001|Sesuga Sapisuga|0001AF35|125071|127791|7900|10000|6||112.26|90.56|0.00|3.03|1303|0|0|01|0200077D|0|41E5AC04|| +261|2023-10-06T20:27:19.2480000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:27:19.7790000-07:00|10FF0005|Wuwuchu Wuchu|0001AF35|47372|90055|10000|10000|9||87.16|94.21|0.00|2.74|2704|0|0|01|0200077D|0|41E49BA1|| +24|2023-10-06T20:27:19.8230000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1847|107887|128564|10000|10000|||86.93|90.85|0.00|2.73|10FF0006|Wowobora Gogobora|0|43699|80739|3910|10000|||88.14|105.97|0.00|-3.05| +37|2023-10-06T20:27:19.8230000-07:00|40022550|Zeromus|0001AF3D|15978369|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:27:19.8230000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:27:19.8230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114102|128564|10000|10000|6||86.93|90.85|0.00|2.73|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:19.8230000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +39|2023-10-06T20:27:19.8680000-07:00|10FF0005|Wuwuchu Wuchu|48272|90055|10000|10000|||87.04|94.04|0.00|2.73| +37|2023-10-06T20:27:19.9120000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF35|54850|80739|4300|10000|10||110.65|109.48|0.00|0.60|1C05|0|0|01|0300077D|0|41E38B3E|| +21|2023-10-06T20:27:19.9120000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|13100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15978369|40478540|10000|10000|||100.00|80.10|0.00|0.00|44974|90128|10000|10000|||114.64|87.56|0.00|-2.54|0001AF42|0|1| +21|2023-10-06T20:27:19.9570000-07:00|40022567|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF43|0|0| +21|2023-10-06T20:27:19.9570000-07:00|40022568|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF44|0|0| +37|2023-10-06T20:27:20.0010000-07:00|40022550|Zeromus|0001AF40|15976582||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:20.0470000-07:00|40022550|Zeromus|0001AF3F|15961816||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:20.0470000-07:00|10FF0002|Suchichi Suchi|0001AF35|52939|90128|10000|10000|8||115.00|87.04|0.00|-2.41|1606|0|0|01|077D|0|41E278CF|| +39|2023-10-06T20:27:20.0470000-07:00|10FF0008|Kokosaze Lulusaze|54474|79111|8000|10000|||87.45|109.19|0.00|-0.60| +261|2023-10-06T20:27:19.6490000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:27:19.6490000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:27:20.1370000-07:00|10FF0004|Buhojaqe Zijaqe|55657|80739|4500|10000|||111.39|110.68|0.00|0.56| +37|2023-10-06T20:27:20.1800000-07:00|10FF0003|Gegehi Gehi|0001AF35|45101|73085|4550|10000|17||116.85|116.57|0.00|0.70|2307|0|0|01|0100077D|0|41E16248|| +38|2023-10-06T20:27:20.1800000-07:00|40022B3E|Seraph|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|3.12|0|0|0|||| +30|2023-10-06T20:27:20.1800000-07:00|7AD|Summon Order III|0.00|40022B3E|Seraph|40022B3E|Seraph|01|77430|77430| +21|2023-10-06T20:27:20.2240000-07:00|40022B3E|Seraph|40A4|Seraphic Veil|10FF0005|Wuwuchu Wuchu|4|17620000|62000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|48272|90055|10000|10000|||86.58|93.57|0.00|2.72|73956|77430|10000|10000|||97.31|97.52|0.00|-3.07|0001AF45|0|1| +261|2023-10-06T20:27:19.7630000-07:00|Change|40022B3B||||||||| +37|2023-10-06T20:27:20.2690000-07:00|40022550|Zeromus|0001AF41|15942345||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:20.2690000-07:00|10FF0001|Sesuga Sapisuga|0001AF41|127791||||||114.54|87.90|0.00|2.78| +39|2023-10-06T20:27:20.2690000-07:00|40022B3B|Carbuncle|75851|75851|10000|10000|||88.38|105.50|0.00|-0.54| +261|2023-10-06T20:27:19.7630000-07:00|Change|10FF0001||||||||||| +20|2023-10-06T20:27:20.3130000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|117.14|116.90|-0.02|0.71| +37|2023-10-06T20:27:20.4470000-07:00|40022550|Zeromus|0001AF42|15937465||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:20.4470000-07:00|40022B3E|Seraph|73956|77430|10000|10000|||97.31|97.52|0.00|-2.61| +261|2023-10-06T20:27:20.1010000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:27:20.6250000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|114102|128564|10000|10000|||85.61|88.44|-0.02|3.08|114102|128564|10000|10000|||85.61|88.44|-0.02|3.08|0001AF46|0|1| +38|2023-10-06T20:27:20.6250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114102|128564|10000|10000|6||85.61|88.44|-0.02|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:20.6250000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +24|2023-10-06T20:27:20.6700000-07:00|10FF0002|Suchichi Suchi|HoT|0|112F|52939|90128|10000|10000|||115.04|85.83|0.00|-1.62|10FF0006|Wowobora Gogobora|0|43699|80739|3910|10000|||86.66|110.05|0.00|-0.35| +38|2023-10-06T20:27:20.6700000-07:00|10FF0002|Suchichi Suchi|005A5A16|57338|90128|10000|10000|8||115.04|85.83|0.00|-1.62|0|0|0||||||||||||||||||| +261|2023-10-06T20:27:20.2230000-07:00|Change|10FF0008||||||||| +24|2023-10-06T20:27:20.7140000-07:00|10FF0003|Gegehi Gehi|HoT|0|11AD|45101|73085|4550|10000|||117.49|117.30|0.00|2.85|10FF0003|Gegehi Gehi|0|45101|73085|4550|10000|||117.49|117.30|0.00|2.85| +38|2023-10-06T20:27:20.7140000-07:00|10FF0003|Gegehi Gehi|005A5A23|49626|73085|4550|10000|17||117.49|117.30|0.00|2.85|0|0|0|||||||||||||||| +261|2023-10-06T20:27:20.3190000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:27:20.3190000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:27:20.3190000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:27:20.8480000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1A19|127791|127791|7900|10000|||115.47|86.20|0.00|2.77|10FF0006|Wowobora Gogobora|0|43699|80739|3910|10000|||86.24|110.63|0.00|-0.43| +24|2023-10-06T20:27:20.8480000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|107C|55657|80739|4500|10000|||113.75|114.14|0.00|0.64|10FF0006|Wowobora Gogobora|0|43699|80739|3910|10000|||86.24|110.63|0.00|-0.43| +21|2023-10-06T20:27:20.8480000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|D7B0000|13000E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|15937465|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||115.47|86.20|0.00|2.77|0001AF47|0|1| +38|2023-10-06T20:27:20.8480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7900|10000|6||115.47|86.20|0.00|2.77|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:27:20.8480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|59877|80739|5050|10000|10||113.75|114.14|0.00|0.64|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T20:27:20.9800000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|100D|48272|90055|10000|10000|||85.86|89.27|0.00|2.99|10FF0006|Wowobora Gogobora|0|43699|80739|3910|10000|||85.45|111.76|0.00|-0.53| +38|2023-10-06T20:27:20.9800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|52381|90055|10000|10000|9||85.86|89.27|0.00|2.99|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:27:21.0260000-07:00|40022567|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF48|0|0| +21|2023-10-06T20:27:21.0260000-07:00|40022568|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF49|0|0| +24|2023-10-06T20:27:21.0260000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1AA3|43699|80739|3910|10000|||85.45|111.76|0.00|-0.53|40022B3E|Seraph|0|73956|77430|10000|10000|||97.31|97.52|0.00|-2.16| +38|2023-10-06T20:27:21.0260000-07:00|10FF0006|Wowobora Gogobora|005A5A28|50518|80739|4460|10000|9||85.45|111.76|0.00|-0.53|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:21.0260000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:27:20.6220000-07:00|Change|40022B3B||||||||| +37|2023-10-06T20:27:21.1590000-07:00|10FF0007|Kehabiqo Febiqo|0001AF46|114102|128564|10000|10000|6||84.89|87.60|-0.02|3.01|1500|0|0|01|07000769|0|41F00000|| +21|2023-10-06T20:27:21.1590000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|712003|432E0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|15937465|40478540|10000|10000|||100.00|80.10|0.00|0.00|52381|90055|10000|10000|||85.64|88.62|0.00|3.14|0001AF4A|0|1| +38|2023-10-06T20:27:21.1590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114102|128564|10000|10000|6||84.89|87.60|-0.02|3.01|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:20.7350000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T20:27:21.2480000-07:00|10FF0005|Wuwuchu Wuchu|0001AF45|58367||||||85.40|87.93|0.00|2.00| +39|2023-10-06T20:27:21.2490000-07:00|10FF0007|Kehabiqo Febiqo|115387|128564|10000|10000|||84.89|87.60|0.00|3.01| +21|2023-10-06T20:27:21.2490000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C722003|35710000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|15937465|40478540|10000|10000|||100.00|80.10|0.00|0.00|57338|90128|10000|10000|||114.95|85.73|0.00|-1.50|0001AF4B|0|1| +20|2023-10-06T20:27:21.2490000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|1.486|82.12|117.96|0.00|-0.50| +38|2023-10-06T20:27:21.2490000-07:00|10FF0002|Suchichi Suchi|005A5A16|57338|90128|10000|10000|8||114.95|85.73|0.00|-1.50|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:21.2490000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:27:21.3810000-07:00|10FF0003|Gegehi Gehi|50356|73085|4750|10000|||117.57|117.39|0.00|-2.70| +261|2023-10-06T20:27:20.9710000-07:00|Change|10FF0008||||||||||||||||||||| +23|2023-10-06T20:27:21.4250000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|Cancelled| +39|2023-10-06T20:27:21.4700000-07:00|10FF0002|Suchichi Suchi|58239|90128|10000|10000|||114.95|85.76|0.00|-1.94| +261|2023-10-06T20:27:21.0920000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:27:21.0920000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T20:27:21.5590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|103E|115387|128564|10000|10000|||84.89|87.60|0.00|3.01|10FF0007|Kehabiqo Febiqo|0|115387|128564|10000|10000|||84.89|87.60|0.00|3.01| +24|2023-10-06T20:27:21.5590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|117C|54474|79111|8000|10000|||81.55|118.91|0.00|-2.42|10FF0008|Kokosaze Lulusaze|0|54474|79111|8000|10000|||81.55|118.91|0.00|-2.42| +21|2023-10-06T20:27:21.5590000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|2F160000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|15937465|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||115.30|85.75|0.00|-1.92|0001AF4C|0|1| +38|2023-10-06T20:27:21.5590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119545|128564|10000|10000|6||84.89|87.60|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:21.5590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|58950|79111|8000|10000|16||81.55|118.91|0.00|-2.42|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:27:21.6480000-07:00|40022550|Zeromus|0001AF4A|15920267||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:21.6480000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|FD90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15937465|40478540|10000|10000|||100.00|80.10|0.00|0.00|58367|90055|10000|10000|||84.97|87.00|-0.02|3.04|0001AF4D|0|1| +21|2023-10-06T20:27:21.7370000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B6F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15937465|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||115.29|85.76|0.00|-2.67|0001AF4E|0|1| +31|2023-10-06T20:27:21.7370000-07:00|10FF0001||||| +261|2023-10-06T20:27:21.3010000-07:00|Change|40022B3B||||||||| +37|2023-10-06T20:27:21.8710000-07:00|40022550|Zeromus|0001AF47|15916816|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T20:27:21.8710000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +21|2023-10-06T20:27:21.8710000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|96D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15920267|40478540|10000|10000|||100.00|80.10|0.00|0.00|119545|128564|10000|10000|||84.89|87.55|0.00|2.66|0001AF4F|0|1| +21|2023-10-06T20:27:21.8710000-07:00|40022550|Zeromus|8D28|Nox|40022550|Zeromus|1B|8D288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15920267|40478540|10000|10000|||100.00|80.10|0.00|0.00|15920267|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AF50|0|1| +38|2023-10-06T20:27:21.8710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119545|128564|10000|10000|6||84.89|87.55|0.00|2.66|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:21.8710000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:21.8710000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:27:21.4920000-07:00|Change|40022550||||| +37|2023-10-06T20:27:21.9590000-07:00|40022550|Zeromus|0001AF4C|15904762||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:21.9590000-07:00|10FF0001|Sesuga Sapisuga|0001AF4C|127791|127791|8400|10000|6||115.15|85.83|0.00|-2.64|1300|0|0|0| +261|2023-10-06T20:27:21.5840000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:27:22.0030000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8600|10000|||115.15|85.83|0.00|-2.64| +21|2023-10-06T20:27:22.0920000-07:00|40022567|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF51|0|0| +21|2023-10-06T20:27:22.0920000-07:00|40022568|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF52|0|0| +21|2023-10-06T20:27:22.1370000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|118C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15904762|40478540|10000|10000|||100.00|80.10|0.00|0.00|119545|128564|10000|10000|||84.89|87.41|0.00|1.99|0001AF53|0|1| +261|2023-10-06T20:27:21.7860000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T20:27:22.1810000-07:00|40022550|Zeromus|0001AF4D|15900705||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:22.1810000-07:00|40022550|Zeromus|DoT|0|267E|15904762|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|58367|90055|10000|10000|||84.53|86.45|0.00|2.45| +38|2023-10-06T20:27:22.1810000-07:00|40022550|Zeromus|005A5A00|15890851|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T20:27:22.2270000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|750003|30FF0000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|15904762|40478540|10000|10000|||100.00|80.10|0.00|0.00|58950|79111|8000|10000|||81.32|119.28|0.00|2.70|0001AF54|0|1| +37|2023-10-06T20:27:22.2690000-07:00|40022550|Zeromus|0001AF4E|15887924||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:22.2700000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|714003|18130000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|15904762|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8600|10000|||115.15|85.83|0.00|-1.93|0001AF55|0|1| +261|2023-10-06T20:27:22.0210000-07:00|Change|10FF0008||||||||||||||||||||||| +39|2023-10-06T20:27:22.4930000-07:00|10FF0006|Wowobora Gogobora|51325|80739|4665|10000|||81.42|118.24|0.00|-0.82| +261|2023-10-06T20:27:22.1420000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:22.6710000-07:00|40022550|Zeromus|0001AF53|15883432||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:22.7160000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|DCD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15887924|40478540|10000|10000|||100.00|80.10|0.00|0.00|58239|90128|10000|10000|||114.95|85.80|0.00|-1.94|0001AF56|0|1| +37|2023-10-06T20:27:22.8050000-07:00|40022550|Zeromus|0001AF4F|15844820||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:22.4580000-07:00|Change|4002255E||||||||| +261|2023-10-06T20:27:22.4580000-07:00|Change|4002255D||||||||| +37|2023-10-06T20:27:22.8940000-07:00|40022550|Zeromus|0001AF4B|15831139||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:22.8940000-07:00|10FF0002|Suchichi Suchi|0001AF4B|58239|90128|10000|10000|8||114.95|85.80|0.00|-1.94|1600|0|0|01|04000AA0|0|41F00000|| +37|2023-10-06T20:27:22.8940000-07:00|40022550|Zeromus|0001AF55|15824976||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:22.8940000-07:00|10FF0005|Wuwuchu Wuchu|59267|90055|10000|10000|||83.94|86.61|-0.02|2.20| +20|2023-10-06T20:27:22.8940000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|81.14|119.06|-0.02|-0.99| +38|2023-10-06T20:27:22.8940000-07:00|10FF0002|Suchichi Suchi|005A5A16|58239|90128|10000|10000|8||114.95|85.80|0.00|-1.94|0|0|0||||||||||||||||||| +20|2023-10-06T20:27:22.9370000-07:00|4002255D|Zeromus|8D2A|Nox|4002255D|Zeromus|4.700|83.50|83.50|0.00|0.00| +20|2023-10-06T20:27:22.9370000-07:00|4002255E|Zeromus|8D2A|Nox|4002255E|Zeromus|4.700|100.00|100.00|0.00|-2.36| +37|2023-10-06T20:27:23.0280000-07:00|40022550|Zeromus|0001AF54|15812433||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:23.0280000-07:00|10FF0008|Kokosaze Lulusaze|59741|79111|7900|10000|||81.32|119.28|0.00|2.70| +261|2023-10-06T20:27:22.5570000-07:00|Change|10FF0001||||| +21|2023-10-06T20:27:23.1600000-07:00|40022567|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF57|0|0| +21|2023-10-06T20:27:23.1600000-07:00|40022568|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF58|0|0| +39|2023-10-06T20:27:23.1600000-07:00|10FF0004|Buhojaqe Zijaqe|60684|80739|5250|10000|||116.36|117.91|-0.02|0.67| +38|2023-10-06T20:27:23.1600000-07:00|40022550|Zeromus|005A5A00|15812433|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:23.1600000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +261|2023-10-06T20:27:22.7960000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:27:23.2490000-07:00|40022550|Zeromus|0001AF56|15808900||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:23.2970000-07:00|40022B3B|Carbuncle|75851|75851|10000|10000|||80.95|117.45|0.00|-0.33| +261|2023-10-06T20:27:23.0290000-07:00|Change|4002255E||||||||||||| +261|2023-10-06T20:27:23.0290000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:27:23.0290000-07:00|Change|10FF0008||| +39|2023-10-06T20:27:23.4740000-07:00|40022B3E|Seraph|73956|77430|10000|10000|||97.31|97.52|0.00|3.03| +261|2023-10-06T20:27:23.2600000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:27:23.6070000-07:00|40022B3E|Seraph|40A4|Seraphic Veil|10FF0005|Wuwuchu Wuchu|4|17270000|27000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|59267|90055|10000|10000|||83.88|86.62|-0.02|1.75|73956|77430|10000|10000|||97.31|97.52|0.00|3.07|0001AF59|0|1| +24|2023-10-06T20:27:23.6520000-07:00|10FF0002|Suchichi Suchi|HoT|0|117A|58239|90128|10000|10000|||114.95|85.80|0.00|-1.94|10FF0006|Wowobora Gogobora|0|51325|80739|4665|10000|||81.07|119.19|0.00|2.69| +38|2023-10-06T20:27:23.6520000-07:00|10FF0002|Suchichi Suchi|005A5A16|62713|90128|10000|10000|8||114.95|85.80|0.00|-1.94|0|0|0||||||||||||||||||| +24|2023-10-06T20:27:23.6970000-07:00|10FF0003|Gegehi Gehi|HoT|0|1010|50356|73085|4750|10000|||117.85|117.42|0.00|-2.50|10FF0003|Gegehi Gehi|0|50356|73085|4750|10000|||117.85|117.42|0.00|-2.50| +21|2023-10-06T20:27:23.6970000-07:00|10FF0008|Kokosaze Lulusaze|1D03|Summon Bahamut|40022550|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|15808900|40478540|10000|10000|||100.00|80.10|0.00|0.00|59741|79111|7900|10000|||81.32|119.28|0.00|2.70|0001AF5A|0|1| +21|2023-10-06T20:27:23.6970000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C710003|381B0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|15808900|40478540|10000|10000|||100.00|80.10|0.00|0.00|59267|90055|10000|10000|||83.88|86.63|-0.02|1.72|0001AF5B|0|1| +38|2023-10-06T20:27:23.6970000-07:00|10FF0003|Gegehi Gehi|005A5A23|54468|73085|4750|10000|17||117.85|117.42|0.00|-2.50|0|0|0|||||||||||||||| +38|2023-10-06T20:27:23.7420000-07:00|40022B5A||005A5A00|65138|68265|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:27:23.7420000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|29D70000|171D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|15808900|40478540|10000|10000|||100.00|80.10|0.00|0.00|62713|90128|10000|10000|||114.95|85.80|0.00|-1.94|0001AF5C|0|1| +38|2023-10-06T20:27:23.7420000-07:00|10FF0002|Suchichi Suchi|005A5A16|62713|90128|10000|10000|8||114.95|85.80|0.00|-1.94|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:23.7420000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:27:23.7420000-07:00|40022B5A||005A5A00|65138|68265|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:27:23.3580000-07:00|Change|40022B3B||||||||| +22|2023-10-06T20:27:23.8300000-07:00|40022569|Zeromus|8B65|Branding Flare|10FF0004|Buhojaqe Zijaqe|150003|A2A30000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|60684|80739|5250|10000|||116.50|118.15|0.00|1.38|44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF5D|0|2| +22|2023-10-06T20:27:23.8300000-07:00|40022569|Zeromus|8B65|Branding Flare|10FF0003|Gegehi Gehi|150003|97BF0000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|54468|73085|4750|10000|||117.82|117.37|0.00|-2.51|44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF5D|1|2| +261|2023-10-06T20:27:23.4500000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:27:23.4500000-07:00|Change|4002256A||||||||||| +22|2023-10-06T20:27:23.8320000-07:00|4002256A|Zeromus|8B65|Branding Flare|10FF0006|Wowobora Gogobora|150003|9FE50000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|51325|80739|4665|10000|||81.07|119.19|0.00|2.69|44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF5E|0|2| +22|2023-10-06T20:27:23.8320000-07:00|4002256A|Zeromus|8B65|Branding Flare|10FF0008|Kokosaze Lulusaze|150003|8AD50000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|59741|79111|7900|10000|||81.32|119.28|0.00|2.70|44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF5E|1|2| +22|2023-10-06T20:27:23.8320000-07:00|4002256B|Zeromus|8B65|Branding Flare|10FF0001|Sesuga Sapisuga|EC150005|45B30000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|127791|127791|8600|10000|||115.15|85.83|0.00|-1.93|44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF5F|0|2| +22|2023-10-06T20:27:23.8320000-07:00|4002256B|Zeromus|8B65|Branding Flare|10FF0002|Suchichi Suchi|150003|BB570000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|62713|90128|10000|10000|||114.95|85.80|0.00|-1.94|44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF5F|1|2| +22|2023-10-06T20:27:23.8320000-07:00|4002256C|Zeromus|8B65|Branding Flare|10FF0007|Kehabiqo Febiqo|150003|62120000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|119545|128564|10000|10000|||84.81|86.04|0.00|-1.65|44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF60|0|2| +22|2023-10-06T20:27:23.8320000-07:00|4002256C|Zeromus|8B65|Branding Flare|10FF0005|Wuwuchu Wuchu|150003|B4470000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|59267|90055|10000|10000|||83.88|86.63|0.00|1.90|44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF60|1|2| +21|2023-10-06T20:27:23.8320000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37BB0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|15808900|40478540|10000|10000|||100.00|80.10|0.00|0.00|51325|80739|4665|10000|||81.07|119.19|0.00|2.69|0001AF61|0|1| +38|2023-10-06T20:27:23.8320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119545|128564|10000|10000|0||84.81|86.04|0.00|-1.65|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:23.8320000-07:00|832|Fire Resistance Down II|2.00|4002256C|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|44| +38|2023-10-06T20:27:23.8320000-07:00|10FF0002|Suchichi Suchi|005A5A16|62713|90128|10000|10000|0||114.95|85.80|0.00|-1.94|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:23.8320000-07:00|832|Fire Resistance Down II|2.00|4002256B|Zeromus|10FF0002|Suchichi Suchi|00|90128|44| +38|2023-10-06T20:27:23.8320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|59741|79111|7900|10000|0||81.32|119.28|0.00|2.70|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:23.8320000-07:00|832|Fire Resistance Down II|2.00|4002256A|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|44| +38|2023-10-06T20:27:23.8320000-07:00|10FF0006|Wowobora Gogobora|005A5A28|51325|80739|4265|10000|0||81.07|119.19|0.00|2.69|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:23.8320000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:27:23.8320000-07:00|832|Fire Resistance Down II|2.00|4002256A|Zeromus|10FF0006|Wowobora Gogobora|00|80739|44| +38|2023-10-06T20:27:23.8320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8600|10000|0||115.15|85.83|0.00|-1.93|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:23.8320000-07:00|832|Fire Resistance Down II|2.00|4002256B|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|44| +38|2023-10-06T20:27:23.8320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|60684|80739|5250|10000|0||116.50|118.15|0.00|1.38|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:23.8320000-07:00|832|Fire Resistance Down II|2.00|40022569|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +38|2023-10-06T20:27:23.8320000-07:00|10FF0003|Gegehi Gehi|005A5A23|54468|73085|4750|10000|0||117.82|117.37|0.00|-2.51|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:23.8320000-07:00|832|Fire Resistance Down II|2.00|40022569|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +38|2023-10-06T20:27:23.8320000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59267|90055|10000|10000|0||83.88|86.63|0.00|1.90|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:23.8320000-07:00|832|Fire Resistance Down II|2.00|4002256C|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|44| +261|2023-10-06T20:27:23.4500000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:27:23.4500000-07:00|Change|4002256C||||||||||| +24|2023-10-06T20:27:23.8740000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|108A|127791|127791|8600|10000|||115.15|85.83|0.00|-1.93|10FF0006|Wowobora Gogobora|0|51325|80739|4265|10000|||81.07|119.19|0.00|2.69| +24|2023-10-06T20:27:23.8740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1AAE|60684|80739|5250|10000|||116.25|118.08|-0.02|1.68|40022569|Zeromus|0|44|44|0|10000|||105.00|100.00|0.00|0.00| +21|2023-10-06T20:27:23.8740000-07:00|4002256D|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF62|0|0| +21|2023-10-06T20:27:23.8740000-07:00|4002256E|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF63|0|0| +38|2023-10-06T20:27:23.8740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8600|10000|0||115.15|85.83|0.00|-1.93|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:27:23.8740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|67514|80739|5800|10000|0||116.25|118.08|-0.02|1.68|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:27:23.9190000-07:00|4002255F|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|1.57|0001AF64|0|0| +21|2023-10-06T20:27:23.9190000-07:00|40022560|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001AF65|0|0| +21|2023-10-06T20:27:23.9190000-07:00|40022561|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|-1.57|0001AF66|0|0| +21|2023-10-06T20:27:23.9190000-07:00|40022562|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|3.14|0001AF67|0|0| +21|2023-10-06T20:27:23.9190000-07:00|40022563|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|1.57|0001AF68|0|0| +21|2023-10-06T20:27:23.9190000-07:00|40022564|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001AF69|0|0| +21|2023-10-06T20:27:23.9190000-07:00|40022565|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|-1.57|0001AF6A|0|0| +21|2023-10-06T20:27:23.9190000-07:00|40022566|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|3.14|0001AF6B|0|0| +261|2023-10-06T20:27:23.5400000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|4002255F||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|40022560||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|40022562||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|40022561||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|40022564||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:27:23.5400000-07:00|Change|40022563||||||||||||| +24|2023-10-06T20:27:23.9640000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1A3F|59267|90055|10000|10000|||83.88|86.63|0.00|1.75|10FF0006|Wowobora Gogobora|0|51325|80739|4265|10000|||81.07|119.18|0.00|2.65| +21|2023-10-06T20:27:23.9640000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|1BEE0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|15808900|40478540|10000|10000|||100.00|80.10|0.00|0.00|67514|80739|5800|10000|||115.54|117.88|0.00|2.50|0001AF6C|0|1| +38|2023-10-06T20:27:23.9640000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65986|90055|10000|10000|0||83.88|86.63|0.00|1.75|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:27:24.0070000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1B37|51325|80739|4265|10000|||81.07|119.18|0.00|2.65|40022B3E|Seraph|0|73956|77430|10000|10000|||97.31|97.52|0.00|-2.55| +21|2023-10-06T20:27:24.0070000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41A00000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|119545|128564|10000|10000|||84.76|86.05|-0.02|-1.36|15808900|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AF6D|0|1| +21|2023-10-06T20:27:24.0080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15808900|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8600|10000|||115.15|85.83|0.00|-1.93|0001AF6E|0|1| +38|2023-10-06T20:27:24.0080000-07:00|10FF0006|Wowobora Gogobora|005A5A28|58292|80739|4815|10000|0||81.07|119.18|0.00|2.65|0|0|0|||||||||||||||||||||| +31|2023-10-06T20:27:24.0080000-07:00|10FF0001||||| +261|2023-10-06T20:27:23.7420000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:27:24.1850000-07:00|40022550|Zeromus|0001AF5C|15798189|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A9F|0|41C00000|| +26|2023-10-06T20:27:24.1850000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:27:24.1850000-07:00|10FF0002|Suchichi Suchi|0001AF5C|62713|90128|10000|10000|0||114.95|85.80|0.00|-1.94|1600|0|0|01|03000323|0|41F00000|| +38|2023-10-06T20:27:24.1850000-07:00|10FF0002|Suchichi Suchi|005A5A16|62713|90128|10000|10000|0||114.95|85.80|0.00|-1.94|0|0|0|||||||||||||||||||||| +03|2023-10-06T20:27:23.8610000-07:00|40022B5A|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|65138|68265|10000|10000|||81.32|119.29|0.00|2.70| +261|2023-10-06T20:27:23.8610000-07:00|Add|40022B5A||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:23.8610000-07:00|Change|40022B5A||| +39|2023-10-06T20:27:24.2300000-07:00|10FF0007|Kehabiqo Febiqo|120830|128564|10000|10000|||84.76|86.05|0.00|-1.36| +37|2023-10-06T20:27:24.2750000-07:00|40022550|Zeromus|0001AF5B|15783826||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:24.3200000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|16EC0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|15783826|40478540|10000|10000|||100.00|80.10|0.00|0.00|120830|128564|10000|10000|||84.76|86.05|0.00|-1.36|0001AF6F|0|1| +39|2023-10-06T20:27:24.3640000-07:00|10FF0003|Gegehi Gehi|55198|73085|4950|10000|||117.09|116.08|0.00|-2.66| +261|2023-10-06T20:27:23.9760000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:27:24.4530000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF5D|25879|80739|5400|10000|0||114.40|115.96|0.00|-2.98|1C00|0|0|02|03000000|0|0|||||| +37|2023-10-06T20:27:24.4530000-07:00|10FF0006|Wowobora Gogobora|0001AF5E|17359|80739|4815|10000|0||81.75|118.18|0.00|2.51|2800|0|0|02|04000832|0|3FB5C290|||||| +37|2023-10-06T20:27:24.4530000-07:00|10FF0001|Sesuga Sapisuga|0001AF5F|109948|127791|8600|10000|0||115.15|85.83|0.00|-1.93|1300|0|0|02|02000000|0|0|||||| +37|2023-10-06T20:27:24.4530000-07:00|10FF0007|Kehabiqo Febiqo|0001AF60|95724|128564|10000|10000|0||84.76|86.05|0.00|1.94|1500|0|0|02|06000000|0|0|||||| +39|2023-10-06T20:27:24.4540000-07:00|10FF0002|Suchichi Suchi|63614|90128|10000|10000|||114.95|85.80|0.00|-1.94| +38|2023-10-06T20:27:24.4540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95724|128564|10000|10000|0||84.76|86.05|0.00|1.94|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:24.4540000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:24.4540000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:27:24.4540000-07:00|10FF0006|Wowobora Gogobora|005A5A28|17359|80739|4815|10000|0||81.75|118.18|0.00|2.51|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:24.4540000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0006|Wowobora Gogobora|00|80739|77430| +38|2023-10-06T20:27:24.4540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109948|127791|8600|10000|0||115.15|85.83|0.00|-1.93|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:24.4540000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0001|Sesuga Sapisuga|00|127791|77430| +38|2023-10-06T20:27:24.4540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|25879|80739|5400|10000|0||114.40|115.96|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:24.4540000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +37|2023-10-06T20:27:24.5000000-07:00|10FF0003|Gegehi Gehi|0001AF5D|16351|73085|4950|10000|0||116.97|115.85|0.00|-2.73|2301|0|0|02|01000000|0|0|||||| +37|2023-10-06T20:27:24.5000000-07:00|10FF0008|Kokosaze Lulusaze|0001AF5E|24200|79111|7900|10000|0||81.33|116.85|0.00|3.06|1B01|0|0|02|04000000|0|0|||||| +37|2023-10-06T20:27:24.5000000-07:00|10FF0002|Suchichi Suchi|0001AF5F|15655|90128|10000|10000|0||114.95|85.80|0.00|-1.94|1601|0|0|02|0|0|0|||||| +37|2023-10-06T20:27:24.5000000-07:00|10FF0005|Wuwuchu Wuchu|0001AF60|19835|90055|10000|10000|0||83.88|86.63|0.00|1.56|2701|0|0|02|02000000|0|0|||||| +24|2023-10-06T20:27:24.5000000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1752|120830|128564|10000|10000|||84.76|86.05|0.00|1.94|10FF0006|Wowobora Gogobora|0|58292|80739|4815|10000|||81.75|118.18|0.00|2.51| +37|2023-10-06T20:27:24.5000000-07:00|40022550|Zeromus|0001AF61|15769559||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:24.5000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101694|128564|10000|10000|0||84.76|86.05|0.00|1.94|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:24.5000000-07:00|10FF0002|Suchichi Suchi|005A5A16|15655|90128|10000|10000|0||114.95|85.80|0.00|-1.94|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:24.5000000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0002|Suchichi Suchi|00|90128|77430| +38|2023-10-06T20:27:24.5000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|24200|79111|7900|10000|0||81.33|116.85|0.00|3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:24.5000000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +38|2023-10-06T20:27:24.5000000-07:00|10FF0003|Gegehi Gehi|005A5A23|16351|73085|4950|10000|0||116.97|115.85|0.00|-2.73|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:24.5000000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0003|Gegehi Gehi|00|73085|77430| +38|2023-10-06T20:27:24.5000000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|19835|90055|10000|10000|0||83.88|86.63|0.00|1.56|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:24.5000000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:27:24.5430000-07:00|40022550|Zeromus|0001AF6E|15767871||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:24.5430000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|119F|101694|128564|10000|10000|||84.76|86.05|0.00|1.94|10FF0007|Kehabiqo Febiqo|0|101694|128564|10000|10000|||84.76|86.05|0.00|1.94| +24|2023-10-06T20:27:24.5430000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|118D|24200|79111|7900|10000|||81.34|116.08|0.00|3.10|4002256A|Zeromus|0|44|44|0|10000|||95.00|100.00|0.00|0.00| +38|2023-10-06T20:27:24.5430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106205|128564|10000|10000|0||84.76|86.05|0.00|1.94|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:24.5430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|28693|79111|7900|10000|0||81.34|116.08|0.00|3.10|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:27:24.2070000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:27:24.6320000-07:00|10FF0005|Wuwuchu Wuchu|0001AF59|25762||||||83.88|86.63|0.00|1.53| +261|2023-10-06T20:27:24.4080000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:27:24.5090000-07:00|Change|40022B5A||| +21|2023-10-06T20:27:24.7660000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1E820000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|15767871|40478540|10000|10000|||100.00|80.10|0.00|0.00|109948|127791|8600|10000|||115.15|85.83|0.00|-1.93|0001AF70|0|1| +37|2023-10-06T20:27:24.8110000-07:00|10FF0007|Kehabiqo Febiqo|0001AF6D|89405||||||84.76|86.05|0.00|1.94| +37|2023-10-06T20:27:24.8560000-07:00|40022550|Zeromus|0001AF6F|15762003||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:24.8560000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|13F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15767871|40478540|10000|10000|||100.00|80.10|0.00|0.00|25762|90055|10000|10000|||83.85|86.64|0.00|1.44|0001AF71|0|1| +37|2023-10-06T20:27:24.9000000-07:00|40022550|Zeromus|0001AF6C|15754853||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:25.0330000-07:00|10FF0001|Sesuga Sapisuga|111225|127791|8800|10000|||115.15|85.83|0.00|-1.93| +261|2023-10-06T20:27:24.6050000-07:00|Change|10FF0001||| +261|2023-10-06T20:27:24.6050000-07:00|Change|10FF0004||||||||| +24|2023-10-06T20:27:25.2120000-07:00|40022550|Zeromus|DoT|0|26B1|15754853|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|25762|90055|10000|10000|||84.27|87.54|0.00|1.38| +38|2023-10-06T20:27:25.2120000-07:00|40022550|Zeromus|005A5A00|15744948|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:27:25.3890000-07:00|40022550|Zeromus|0001AF71|15739839||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:25.3890000-07:00|40022B3E|Seraph|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|-3.05|0|0|0||||||| +26|2023-10-06T20:27:25.3890000-07:00|7AD|Summon Order III|30.00|40022B3E|Seraph|40022B3E|Seraph|01|77430|77430| +21|2023-10-06T20:27:25.3890000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25879|80739|5400|10000|||116.03|111.01|0.00|2.85|25879|80739|5400|10000|||116.03|111.01|0.00|2.85|0001AF72|0|1| +261|2023-10-06T20:27:25.0840000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:27:25.0840000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:27:25.0840000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:27:25.4340000-07:00|10FF0006|Wowobora Gogobora|005A5A28|17359|80739|4815|10000|0||85.40|113.02|0.00|2.52|0|0|0|||||||||||||||| +30|2023-10-06T20:27:25.4340000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +22|2023-10-06T20:27:25.4790000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0005|Wuwuchu Wuchu|200004|34240000|240E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|25762|90055|10000|10000|||84.92|88.88|0.00|1.32|73956|77430|10000|10000|||97.31|97.52|0.00|3.05|0001AF73|0|8| +22|2023-10-06T20:27:25.4790000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|1F3B0000|3B0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|89405|128564|10000|10000|||85.91|86.07|0.00|1.63|73956|77430|10000|10000|||97.31|97.52|0.00|3.05|0001AF73|1|8| +22|2023-10-06T20:27:25.4790000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|200004|2F280000|280E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|17359|80739|4815|10000|||85.40|113.02|0.00|2.52|73956|77430|10000|10000|||97.31|97.52|0.00|3.05|0001AF73|2|8| +22|2023-10-06T20:27:25.4790000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|4|20600000|600E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|28693|79111|7900|10000|||81.37|109.03|0.00|3.13|73956|77430|10000|10000|||97.31|97.52|0.00|3.05|0001AF73|3|8| +22|2023-10-06T20:27:25.4790000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0002|Suchichi Suchi|4|20B00000|B00E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|15655|90128|10000|10000|||114.95|85.80|0.00|-1.94|73956|77430|10000|10000|||97.31|97.52|0.00|3.05|0001AF73|4|8| +22|2023-10-06T20:27:25.4790000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|204C0000|4C0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|111225|127791|8800|10000|||115.15|85.83|0.00|-1.93|73956|77430|10000|10000|||97.31|97.52|0.00|3.05|0001AF73|5|8| +22|2023-10-06T20:27:25.4790000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|20850000|850E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|25879|80739|5400|10000|||116.27|110.27|0.00|2.85|73956|77430|10000|10000|||97.31|97.52|0.00|3.05|0001AF73|6|8| +22|2023-10-06T20:27:25.4790000-07:00|40022B3E|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|4|1F410000|410E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|16351|73085|4950|10000|||116.75|111.06|0.00|-2.73|73956|77430|10000|10000|||97.31|97.52|0.00|3.05|0001AF73|7|8| +38|2023-10-06T20:27:25.4790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89405|128564|10000|10000|6||85.91|86.07|0.00|1.63|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:25.4790000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:27:25.4790000-07:00|10FF0002|Suchichi Suchi|005A5A16|15655|90128|10000|10000|9||114.95|85.80|0.00|-1.94|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:25.4790000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0002|Suchichi Suchi|00|90128|77430| +38|2023-10-06T20:27:25.4790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|28693|79111|7900|10000|10||81.37|109.03|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:25.4790000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +38|2023-10-06T20:27:25.4790000-07:00|10FF0006|Wowobora Gogobora|005A5A28|17359|80739|4815|10000|14||85.40|113.02|0.00|2.52|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:25.4790000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0006|Wowobora Gogobora|00|80739|77430| +38|2023-10-06T20:27:25.4790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111225|127791|8800|10000|6||115.15|85.83|0.00|-1.93|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:25.4790000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0001|Sesuga Sapisuga|00|127791|77430| +38|2023-10-06T20:27:25.4790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|25879|80739|5400|10000|10||116.27|110.27|0.00|2.85|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:25.4790000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +38|2023-10-06T20:27:25.4790000-07:00|10FF0003|Gegehi Gehi|005A5A23|16351|73085|4950|10000|10||116.75|111.06|0.00|-2.73|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:25.4790000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0003|Gegehi Gehi|00|73085|77430| +38|2023-10-06T20:27:25.4790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|25762|90055|10000|10000|14||84.92|88.88|0.00|1.32|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:25.4790000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:27:25.5220000-07:00|40022550|Zeromus|0001AF70|15732029||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:25.5220000-07:00|10FF0001|Sesuga Sapisuga|0001AF70|111225|127791|9800|10000|6||115.15|85.83|0.00|-1.93|1300|0|0|0| +39|2023-10-06T20:27:25.5220000-07:00|10FF0006|Wowobora Gogobora|18166|80739|5020|10000|||85.79|112.47|0.00|2.52| +21|2023-10-06T20:27:25.5220000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|11CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15739839|40478540|10000|10000|||100.00|80.10|0.00|0.00|89405|128564|10000|10000|||86.56|86.08|0.00|1.60|0001AF74|0|1| +21|2023-10-06T20:27:25.5220000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|177D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15739839|40478540|10000|10000|||100.00|80.10|0.00|0.00|15655|90128|10000|10000|||114.95|85.81|0.00|-1.78|0001AF75|0|1| +38|2023-10-06T20:27:25.5660000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|25762|90055|10000|10000|14||85.27|89.52|0.00|1.31|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:25.5660000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +38|2023-10-06T20:27:25.7000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|28693|79111|7900|10000|10||81.37|107.31|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:25.7000000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:27:25.4950000-07:00|Change|40022B3B||| +261|2023-10-06T20:27:25.4950000-07:00|Change|10FF0004||||||||| +38|2023-10-06T20:27:25.8350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89405|128564|10000|10000|6||88.74|86.08|0.00|1.57|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:25.8350000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:25.8350000-07:00|832|Fire Resistance Down II|0.00|4002256C|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|44| +38|2023-10-06T20:27:25.8350000-07:00|10FF0002|Suchichi Suchi|005A5A16|15655|90128|10000|10000|9||114.78|86.30|0.00|-1.32|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:25.8350000-07:00|832|Fire Resistance Down II|0.00|4002256B|Zeromus|10FF0002|Suchichi Suchi|00|90128|44| +38|2023-10-06T20:27:25.8350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|28693|79111|7900|10000|10||81.38|105.70|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:25.8350000-07:00|832|Fire Resistance Down II|0.00|4002256A|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|44| +38|2023-10-06T20:27:25.8350000-07:00|10FF0006|Wowobora Gogobora|005A5A28|18166|80739|5020|10000|14||86.24|110.68|0.00|2.85|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:25.8350000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:25.8350000-07:00|832|Fire Resistance Down II|0.00|4002256A|Zeromus|10FF0006|Wowobora Gogobora|00|80739|44| +38|2023-10-06T20:27:25.8350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111225|127791|9800|10000|6||114.71|87.10|0.00|-0.97|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:25.8350000-07:00|832|Fire Resistance Down II|0.00|4002256B|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|44| +38|2023-10-06T20:27:25.8350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|25879|80739|5400|10000|10||116.86|107.59|-0.02|2.91|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:25.8350000-07:00|832|Fire Resistance Down II|0.00|40022569|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +38|2023-10-06T20:27:25.8350000-07:00|10FF0003|Gegehi Gehi|005A5A23|16351|73085|4950|10000|10||117.57|108.46|0.00|-2.68|0|0|0|||||||||||||||| +30|2023-10-06T20:27:25.8350000-07:00|832|Fire Resistance Down II|0.00|40022569|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +38|2023-10-06T20:27:25.8350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|25762|90055|10000|10000|14||86.68|91.06|0.00|1.26|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:25.8350000-07:00|832|Fire Resistance Down II|0.00|4002256C|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|44| +39|2023-10-06T20:27:25.8780000-07:00|10FF0005|Wuwuchu Wuchu|26662|90055|10000|10000|||86.68|91.06|0.00|1.26| +38|2023-10-06T20:27:25.9670000-07:00|10FF0002|Suchichi Suchi|005A5A16|15655|90128|10000|10000|9||114.45|87.08|0.00|-1.28|0|0|0|||||||||||||||| +30|2023-10-06T20:27:25.9670000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +261|2023-10-06T20:27:25.6780000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:27:25.6780000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:27:25.6780000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:27:26.0560000-07:00|40022550|Zeromus|0001AF74|15727473||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:26.0560000-07:00|40022550|Zeromus|0001AF75|15721460||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:26.0560000-07:00|10FF0008|Kokosaze Lulusaze|29484|79111|8100|10000|||81.39|103.84|0.00|3.14| +38|2023-10-06T20:27:26.1010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111225|127791|9800|10000|6||113.95|88.03|0.00|-1.07|0|0|0||||||||||||| +30|2023-10-06T20:27:26.1010000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +39|2023-10-06T20:27:26.1450000-07:00|10FF0004|Buhojaqe Zijaqe|26686|80739|5600|10000|||117.39|105.76|0.00|2.88| +21|2023-10-06T20:27:26.1890000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40714003|576A0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|15721460|40478540|10000|10000|||100.00|80.10|0.00|0.00|26662|90055|10000|10000|||88.22|92.01|0.00|1.16|0001AF76|0|1| +38|2023-10-06T20:27:26.2340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|26686|80739|5600|10000|10||117.39|105.76|0.00|2.88|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:26.2340000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:27:26.2790000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|27740000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|15721460|40478540|10000|10000|||100.00|80.10|0.00|0.00|15655|90128|10000|10000|||113.78|88.28|0.00|-1.22|0001AF77|0|1| +21|2023-10-06T20:27:26.2790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15721460|40478540|10000|10000|||100.00|80.10|0.00|0.00|111225|127791|9800|10000|||113.40|88.30|0.00|-1.16|0001AF78|0|1| +38|2023-10-06T20:27:26.2790000-07:00|10FF0002|Suchichi Suchi|005A5A16|15655|90128|10000|10000|9||113.78|88.28|0.00|-1.22|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:26.2790000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:26.2790000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +31|2023-10-06T20:27:26.2790000-07:00|10FF0001||||| +261|2023-10-06T20:27:26.0350000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:26.3680000-07:00|10FF0005|Wuwuchu Wuchu|0001AF73|40010|90055|10000|10000|14||88.67|92.36|0.00|2.49|2700|0|0|01|0200077D|0|41E8E144|| +21|2023-10-06T20:27:26.3680000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|754003|53A50000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|15721460|40478540|10000|10000|||100.00|80.10|0.00|0.00|29484|79111|8100|10000|||81.40|102.23|0.00|3.14|0001AF79|0|1| +38|2023-10-06T20:27:26.3680000-07:00|10FF0003|Gegehi Gehi|005A5A23|16351|73085|4950|10000|10||116.79|106.96|0.00|-2.57|0|0|0|||||||||||||||| +30|2023-10-06T20:27:26.3680000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +39|2023-10-06T20:27:26.4570000-07:00|40022B3E|Seraph|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +37|2023-10-06T20:27:26.5010000-07:00|10FF0007|Kehabiqo Febiqo|0001AF73|97400|128564|10000|10000|6||92.70|86.19|0.00|1.53|1501|0|0|01|0600077D|0|41E7CED5|| +37|2023-10-06T20:27:26.6350000-07:00|10FF0006|Wowobora Gogobora|0001AF73|30238|80739|5020|10000|14||85.33|106.68|0.00|3.00|2802|0|0|01|0500077D|0|41E6BE72|| +24|2023-10-06T20:27:26.6350000-07:00|10FF0002|Suchichi Suchi|HoT|0|1B10|15655|90128|10000|10000|||112.69|89.19|0.00|-2.19|10FF0002|Suchichi Suchi|0|15655|90128|10000|10000|||112.69|89.19|0.00|-2.19| +38|2023-10-06T20:27:26.6350000-07:00|10FF0002|Suchichi Suchi|005A5A16|22583|90128|10000|10000|9||112.69|89.19|0.00|-2.19|0|0|0||||||||||||||||||| +24|2023-10-06T20:27:26.6800000-07:00|10FF0003|Gegehi Gehi|HoT|0|1089|16351|73085|4950|10000|||114.76|107.59|0.00|-2.19|10FF0003|Gegehi Gehi|0|16351|73085|4950|10000|||114.76|107.59|0.00|-2.19| +38|2023-10-06T20:27:26.6800000-07:00|10FF0003|Gegehi Gehi|005A5A23|20584|73085|4950|10000|10||114.76|107.59|0.00|-2.19|0|0|0|||||||||||||||| +261|2023-10-06T20:27:26.3640000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:27:26.7240000-07:00|40022550|Zeromus|0001AF76|15699082||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:26.3640000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:27:26.7700000-07:00|10FF0008|Kokosaze Lulusaze|0001AF73|37772|79111|7800|10000|10||81.43|98.93|0.00|2.65|1B03|0|0|01|0400077D|0|41E5AC03|| +21|2023-10-06T20:27:26.7700000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|1F800000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|15721460|40478540|10000|10000|||100.00|80.10|0.00|0.00|97400|128564|10000|10000|||94.06|86.29|0.00|1.52|0001AF7A|0|1| +37|2023-10-06T20:27:26.8140000-07:00|40022550|Zeromus|0001AF78|15697433||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:26.4590000-07:00|Change|40022B5A||||||||||| +24|2023-10-06T20:27:26.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|10DC|111225|127791|9800|10000|||111.08|91.24|0.00|-1.36|10FF0006|Wowobora Gogobora|0|30238|80739|5020|10000|||85.83|105.48|0.00|2.86| +24|2023-10-06T20:27:26.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|10A5|26686|80739|5600|10000|||117.46|104.78|-0.02|-3.07|10FF0006|Wowobora Gogobora|0|30238|80739|5020|10000|||85.83|105.48|0.00|2.86| +38|2023-10-06T20:27:26.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|115541|127791|9800|10000|6||111.08|91.24|0.00|-1.36|0|0|0||||||||||||| +38|2023-10-06T20:27:26.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|30947|80739|6150|10000|10||117.46|104.78|-0.02|-3.07|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:27:26.4590000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:27:26.9030000-07:00|10FF0002|Suchichi Suchi|0001AF73|30951|90128|10000|10000|9||112.10|89.41|0.00|-1.97|1604|0|0|02|077D|0|41E49BA1|||||| +261|2023-10-06T20:27:26.5760000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:27:26.5760000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:26.9470000-07:00|40022550|Zeromus|0001AF77|15687333||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:26.9470000-07:00|10FF0002|Suchichi Suchi|0001AF77|30951|90128|10000|10000|9||111.50|89.76|0.00|-1.74|1600|0|0|01|05000322|0|41F00000|| +24|2023-10-06T20:27:26.9470000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1099|40010|90055|10000|10000|||91.17|94.42|0.00|1.88|10FF0006|Wowobora Gogobora|0|30238|80739|5020|10000|||86.07|104.92|0.00|2.81| +38|2023-10-06T20:27:26.9470000-07:00|10FF0002|Suchichi Suchi|005A5A16|30951|90128|10000|10000|9||111.50|89.76|0.00|-1.74|0|0|0||||||||||||||||||| +38|2023-10-06T20:27:26.9470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|44259|90055|10000|10000|14||91.17|94.42|0.00|1.88|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:27:26.9920000-07:00|40022550|Zeromus|0001AF79|15665920||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:26.9920000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1023|30238|80739|5020|10000|||86.07|104.92|0.00|2.81|40022B3E|Seraph|0|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +21|2023-10-06T20:27:26.9920000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30951|90128|10000|10000|||111.50|89.76|0.00|-1.74|30951|90128|10000|10000|||111.50|89.76|0.00|-1.74|0001AF7B|0|1| +38|2023-10-06T20:27:26.9920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|34369|80739|5570|10000|14||86.07|104.92|0.00|2.81|0|0|0||||||||||||||||||| +37|2023-10-06T20:27:27.0370000-07:00|10FF0001|Sesuga Sapisuga|0001AF73|123809|127791|9800|10000|6||110.36|92.22|0.00|-1.46|1305|0|0|01|0200077D|0|41E38726|| +21|2023-10-06T20:27:27.0370000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|22410000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|97400|128564|10000|10000|||94.71|86.33|0.00|2.45|15665920|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AF7C|0|1| +261|2023-10-06T20:27:26.8060000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:27:27.1710000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF73|39272|80739|6150|10000|10||117.43|104.59|0.00|2.82|1C06|0|0|01|0300077D|0|41E276C4|| +261|2023-10-06T20:27:26.8060000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:27:27.2600000-07:00|10FF0007|Kehabiqo Febiqo|98685|128564|10000|10000|||94.94|86.34|0.00|2.45| +37|2023-10-06T20:27:27.3060000-07:00|10FF0003|Gegehi Gehi|0001AF73|28585|73085|4950|10000|10||110.92|107.03|0.00|-1.84|2307|0|0|01|0100077D|0|41E16249|| +21|2023-10-06T20:27:27.3060000-07:00|40022B3E|Seraph|40A4|Seraphic Veil|10FF0005|Wuwuchu Wuchu|4|15680000|68000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|44259|90055|10000|10000|||93.48|95.44|0.00|1.34|73956|77430|10000|10000|||97.31|97.52|0.00|-3.14|0001AF7D|0|1| +21|2023-10-06T20:27:27.3060000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15665920|40478540|10000|10000|||100.00|80.10|0.00|0.00|37772|79111|7800|10000|||81.49|94.84|-0.02|3.07|0001AF7E|0|1| +21|2023-10-06T20:27:27.3060000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41712003|43CF0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|15665920|40478540|10000|10000|||100.00|80.10|0.00|0.00|123809|127791|9800|10000|||109.48|93.24|0.00|-1.53|0001AF7F|0|1| +38|2023-10-06T20:27:27.3060000-07:00|40022B3E|Seraph|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|-3.14|0|0|0|||| +30|2023-10-06T20:27:27.3060000-07:00|7AD|Summon Order III|0.00|40022B3E|Seraph|40022B3E|Seraph|01|77430|77430| +38|2023-10-06T20:27:27.3060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123809|127791|9800|10000|6||109.48|93.24|0.00|-1.53|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:27.3060000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:27:27.3060000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +39|2023-10-06T20:27:27.3500000-07:00|10FF0003|Gegehi Gehi|29315|73085|5150|10000|||110.35|106.92|0.00|-1.81| +37|2023-10-06T20:27:27.3940000-07:00|40022550|Zeromus|0001AF7A|15657856||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:27.0300000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:27:27.0300000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:27:27.4380000-07:00|10FF0002|Suchichi Suchi|31852|90128|10000|10000|||109.86|90.94|0.00|-1.24| +261|2023-10-06T20:27:27.1520000-07:00|Change|10FF0002||||||||| +24|2023-10-06T20:27:27.5280000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|114F|98685|128564|10000|10000|||95.96|86.40|0.00|2.23|10FF0007|Kehabiqo Febiqo|0|98685|128564|10000|10000|||95.96|86.40|0.00|2.23| +24|2023-10-06T20:27:27.5280000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1145|37772|79111|7800|10000|||81.53|93.10|0.00|3.12|10FF0008|Kokosaze Lulusaze|0|37772|79111|7800|10000|||81.53|93.10|0.00|3.12| +38|2023-10-06T20:27:27.5280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103116|128564|10000|10000|6||95.96|86.40|0.00|2.23|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:27.5280000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:27.5280000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|42193|79111|7800|10000|10||81.53|93.10|0.00|3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:27:27.6180000-07:00|10FF0002|Suchichi Suchi|0001AF7B|31852|90128|10000|10000|9||108.33|91.56|0.00|-1.25|1600|0|0|01|03000748|0|41A00000|| +26|2023-10-06T20:27:27.6180000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:27:27.6180000-07:00|10FF0002|Suchichi Suchi|1CE6|Dragon Sight|10FF0005|Wuwuchu Wuchu|50E|5AE0000|A0F|7768000|0|0|0|0|0|0|0|0|0|0|0|0|44259|90055|10000|10000|||95.31|96.25|0.00|1.20|31852|90128|10000|10000|||108.33|91.56|0.00|-1.25|0001AF80|0|1| +04|2023-10-06T20:27:27.3710000-07:00|40022B3B|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||80.95|117.45|0.00|-0.33| +261|2023-10-06T20:27:27.3710000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:27:27.3710000-07:00|Remove|40022B3B| +261|2023-10-06T20:27:27.3710000-07:00|Change|40022B5A||||||||| +261|2023-10-06T20:27:27.4710000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:27.8420000-07:00|10FF0007|Kehabiqo Febiqo|0001AF7C|94347|128564|10000|10000|0||98.29|87.22|0.00|1.72|1500|0|0|01|06000000|0|0|| +37|2023-10-06T20:27:27.8420000-07:00|40022550|Zeromus|0001AF7E|15657682||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:27.8420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94347|128564|10000|10000|0||98.29|87.22|0.00|1.72|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:27.8420000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:27:27.8870000-07:00|40022550|Zeromus|0001AF7F|15640323||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:27.8870000-07:00|10FF0001|Sesuga Sapisuga|0001AF7F|123809|127791|9800|10000|6||106.80|95.97|0.00|-1.67|1300|0|0|02|0400076E|03|41F00000|||||| +22|2023-10-06T20:27:27.8870000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42193|79111|7800|10000|||81.60|89.72|0.00|3.12|42193|79111|7800|10000|||81.60|89.72|0.00|3.12|0001AF81|0|6| +22|2023-10-06T20:27:27.8870000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34369|80739|5570|10000|||90.09|100.78|0.00|2.24|42193|79111|7800|10000|||81.60|89.72|0.00|3.12|0001AF81|1|6| +22|2023-10-06T20:27:27.8870000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0005|Wuwuchu Wuchu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44259|90055|10000|10000|||95.25|97.02|0.00|1.42|42193|79111|7800|10000|||81.60|89.72|0.00|3.12|0001AF81|2|6| +22|2023-10-06T20:27:27.8870000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|94347|128564|10000|10000|||98.76|87.92|0.00|1.65|42193|79111|7800|10000|||81.60|89.72|0.00|3.12|0001AF81|3|6| +22|2023-10-06T20:27:27.8870000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0002|Suchichi Suchi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31852|90128|10000|10000|||106.92|92.46|0.00|-1.32|42193|79111|7800|10000|||81.60|89.72|0.00|3.12|0001AF81|4|6| +22|2023-10-06T20:27:27.8870000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|123809|127791|9800|10000|||106.80|95.97|0.00|-1.67|42193|79111|7800|10000|||81.60|89.72|0.00|3.12|0001AF81|5|6| +38|2023-10-06T20:27:27.8870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94347|128564|10000|10000|0||98.76|87.92|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:27.8870000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:27:27.8870000-07:00|10FF0002|Suchichi Suchi|005A5A16|31852|90128|10000|10000|9||106.92|92.46|0.00|-1.32|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:27.8870000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|90128|79111| +38|2023-10-06T20:27:27.8870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|42193|79111|7800|10000|10||81.60|89.72|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:27.8870000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:27:27.8870000-07:00|10FF0006|Wowobora Gogobora|005A5A28|34369|80739|5570|10000|14||90.09|100.78|0.00|2.24|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:27.8870000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:27:27.8870000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|80739|79111| +38|2023-10-06T20:27:27.8870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123809|127791|9800|10000|6||106.80|95.97|0.00|-1.67|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:27.8870000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:27:27.8870000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|44259|90055|10000|10000|14||95.25|97.02|0.00|1.42|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:27.8870000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|90055|79111| +21|2023-10-06T20:27:27.9300000-07:00|4002255D|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.32|119.29|0.00|0.00|0001AF82|0|0| +21|2023-10-06T20:27:27.9300000-07:00|4002255E|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.53|118.18|0.00|0.00|0001AF83|0|0| +261|2023-10-06T20:27:27.5630000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:27:27.5630000-07:00|Change|4002255E||||||||||||| +261|2023-10-06T20:27:27.6590000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:27:27.6590000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:27:27.6590000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:27:27.9750000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|736003|4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15640323|40478540|10000|10000|||100.00|80.10|0.00|0.00|34369|80739|5570|10000|||91.24|100.18|0.00|2.14|0001AF84|0|1| +39|2023-10-06T20:27:28.0190000-07:00|10FF0001|Sesuga Sapisuga|125086|127791|10000|10000|||105.75|96.78|0.00|-1.75| +21|2023-10-06T20:27:28.0630000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|11230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15640323|40478540|10000|10000|||100.00|80.10|0.00|0.00|44259|90055|10000|10000|||95.23|97.32|0.00|1.59|0001AF85|0|1| +24|2023-10-06T20:27:28.1970000-07:00|40022550|Zeromus|DoT|0|1F86|15640323|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|44259|90055|10000|10000|||95.21|97.46|0.00|1.77| +38|2023-10-06T20:27:28.1970000-07:00|40022550|Zeromus|005A5A00|15632253|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:27:28.2420000-07:00|10FF0005|Wuwuchu Wuchu|0001AF80|44259|90055|10000|10000|14||95.21|97.46|0.00|1.77|2700|0|0|01|070005AE|0|41A00000|| +26|2023-10-06T20:27:28.2420000-07:00|5AE|Left Eye|20.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:27:28.2420000-07:00|10FF0002|Suchichi Suchi|0001AF80|31852|90128|10000|10000|9||105.86|93.19|0.00|-1.38|1600|0|0|01|07000776|0|41A00000|| +26|2023-10-06T20:27:28.2420000-07:00|776|Right Eye|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:28.0910000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:27:28.3310000-07:00|10FF0005|Wuwuchu Wuchu|0001AF7D|49739||||||95.20|97.64|0.00|1.77| +21|2023-10-06T20:27:28.3310000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|16C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15632253|40478540|10000|10000|||100.00|80.10|0.00|0.00|31852|90128|10000|10000|||104.32|94.08|0.00|-1.45|0001AF86|0|1| +37|2023-10-06T20:27:28.5100000-07:00|40022550|Zeromus|0001AF84|15632175||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:28.5110000-07:00|10FF0006|Wowobora Gogobora|35176|80739|5775|10000|||93.02|99.40|0.00|2.00| +21|2023-10-06T20:27:28.5550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|70F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15632175|40478540|10000|10000|||100.00|80.10|0.00|0.00|125086|127791|10000|10000|||103.98|98.42|0.00|-2.07|0001AF87|0|1| +31|2023-10-06T20:27:28.5550000-07:00|10FF0001||||| +37|2023-10-06T20:27:28.5990000-07:00|40022550|Zeromus|0001AF85|15627788||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:28.6430000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35176|80739|5775|10000|14||94.02|99.02|0.00|1.96|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:28.6430000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:27:28.6430000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35176|80739|5775|10000|||94.02|99.02|0.00|1.96|35176|80739|5775|10000|||94.02|99.02|0.00|1.96|0001AF88|0|1| +261|2023-10-06T20:27:28.3090000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:27:28.3090000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:27:28.6890000-07:00|10FF0008|Kokosaze Lulusaze|0001AF81|42193|79111|7800|10000|10||81.61|85.82|0.00|3.14|1B00|0|0|01|03000A8F|0|41E9F3B4|| +261|2023-10-06T20:27:28.3090000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T20:27:28.6890000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|710003|2ACE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15627788|40478540|10000|10000|||100.00|80.10|0.00|0.00|49739|90055|10000|10000|||95.20|97.64|0.00|1.80|0001AF89|0|1| +38|2023-10-06T20:27:28.6890000-07:00|40022550|Zeromus|005A5A00|15627788|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T20:27:28.6890000-07:00|A1A|Death's Design|60.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +38|2023-10-06T20:27:28.6890000-07:00|40022B5A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||81.09|106.26|0.00|3.10|0|0|0||||||| +26|2023-10-06T20:27:28.6890000-07:00|30|Well Fed|2010.77|10FF0008|Kokosaze Lulusaze|40022B5A|Demi-Bahamut|2964|68265|79111| +26|2023-10-06T20:27:28.6890000-07:00|A8F|Searing Light|29.20|10FF0008|Kokosaze Lulusaze|40022B5A|Demi-Bahamut|00|68265|79111| +261|2023-10-06T20:27:28.3990000-07:00|Change|40022B5A||||||||| +21|2023-10-06T20:27:28.7780000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|42BC0000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|15627788|40478540|10000|10000|||100.00|80.10|0.00|0.00|31852|90128|10000|10000|||102.09|95.60|0.00|-1.68|0001AF8A|0|1| +38|2023-10-06T20:27:28.7780000-07:00|10FF0002|Suchichi Suchi|005A5A16|31852|90128|10000|10000|9||102.09|95.60|0.00|-1.68|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:28.7780000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:28.7780000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:28.8220000-07:00|10FF0006|Wowobora Gogobora|0001AF81|35176|80739|5775|10000|14||94.22|98.94|0.00|1.87|2801|0|0|01|04000A8F|0|41E8E145|| +37|2023-10-06T20:27:28.8670000-07:00|40022550|Zeromus|0001AF86|15621963||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:28.8670000-07:00|10FF0002|Suchichi Suchi|0001AF86|31852|90128|10000|10000|9||101.30|96.04|0.00|-3.10|1600|0|0|01|08000747|0|C1F00000|| +39|2023-10-06T20:27:28.8670000-07:00|10FF0005|Wuwuchu Wuchu|50639|90055|10000|10000|||95.20|97.64|0.00|2.55| +21|2023-10-06T20:27:28.9120000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15627788|40478540|10000|10000|||100.00|80.10|0.00|0.00|94347|128564|10000|10000|||99.09|92.43|0.00|2.43|0001AF8B|0|1| +21|2023-10-06T20:27:28.9120000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|754003|58B30000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|15627788|40478540|10000|10000|||100.00|80.10|0.00|0.00|42193|79111|7800|10000|||81.48|84.16|0.00|-3.10|0001AF8C|0|1| +261|2023-10-06T20:27:28.5910000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:27:28.9570000-07:00|10FF0005|Wuwuchu Wuchu|0001AF81|50639|90055|10000|10000|14||95.20|97.64|0.00|2.36|2702|0|0|01|04000A8F|0|41E7CED6|| +39|2023-10-06T20:27:29.0460000-07:00|10FF0008|Kokosaze Lulusaze|42984|79111|7700|10000|||81.33|83.39|0.00|1.61| +37|2023-10-06T20:27:29.0900000-07:00|10FF0007|Kehabiqo Febiqo|0001AF81|94347|128564|10000|10000|0||98.92|91.38|0.00|-3.03|1503|0|0|01|05000A8F|0|41E6BA5B|| +37|2023-10-06T20:27:29.0900000-07:00|40022550|Zeromus|0001AF87|15620156||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:28.7050000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:27:29.1350000-07:00|10FF0004|Buhojaqe Zijaqe|40079|80739|6350|10000|||118.52|98.48|0.00|3.10| +20|2023-10-06T20:27:29.1350000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|101.81|101.88|0.00|-2.46| +38|2023-10-06T20:27:29.1350000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35176|80739|5775|10000|14||94.68|98.80|0.00|1.87|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:29.1350000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:27:29.2240000-07:00|10FF0002|Suchichi Suchi|0001AF81|31852|90128|10000|10000|9||100.66|96.82|0.00|-3.10|1604|0|0|02|06000A8F|0|41E5A9F8|||||| +21|2023-10-06T20:27:29.2240000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|321F0000|143E|340000|200004|27558000|11B|2A8000|0|0|0|0|0|0|0|0|15620156|40478540|10000|10000|||100.00|80.10|0.00|0.00|94347|128564|10000|10000|||98.82|90.63|0.00|-3.03|0001AF8D|0|1| +261|2023-10-06T20:27:28.9440000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B2E| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B2F| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B30| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B31| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B32| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B33| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B34| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B35| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B36| +261|2023-10-06T20:27:29.0540000-07:00|Remove|40022B37| +37|2023-10-06T20:27:29.3580000-07:00|10FF0001|Sesuga Sapisuga|0001AF81|125086|127791|10000|10000|6||100.11|99.91|0.00|-2.74|1305|0|0|01|06000A8F|0|41E49789|| +37|2023-10-06T20:27:29.4030000-07:00|40022550|Zeromus|0001AF8A|15603072||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|0001AF8A|31852|90128|10000|10000|9||100.30|97.76|0.00|2.54|1600|0|0|01|08000747|0|41F00000|| +22|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0002|Suchichi Suchi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|0001AF8E|0|8| +22|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0001|Sesuga Sapisuga|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|125086|127791|10000|10000|||99.50|99.92|0.00|-2.97|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|0001AF8E|1|8| +22|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0006|Wowobora Gogobora|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35176|80739|5775|10000|||96.46|98.40|0.00|1.83|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|0001AF8E|2|8| +22|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0003|Gegehi Gehi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29315|73085|5150|10000|||101.53|101.47|0.00|-2.84|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|0001AF8E|3|8| +22|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0005|Wuwuchu Wuchu|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|0001AF8E|4|8| +22|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0007|Kehabiqo Febiqo|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|94347|128564|10000|10000|||98.72|89.31|0.00|3.08|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|0001AF8E|5|8| +22|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0004|Buhojaqe Zijaqe|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40079|80739|6350|10000|||118.36|97.61|0.00|-3.00|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|0001AF8E|6|8| +22|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0008|Kokosaze Lulusaze|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42984|79111|7700|10000|||80.80|80.94|-0.01|1.61|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|0001AF8E|7|8| +38|2023-10-06T20:27:29.4030000-07:00|10FF0002|Suchichi Suchi|005A5A16|31852|90128|10000|10000|9||100.30|97.76|0.00|2.54|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:27:29.4480000-07:00|40022550|Zeromus|0001AF8B|15598361||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:29.4480000-07:00|40022B3E|Seraph|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +22|2023-10-06T20:27:29.4480000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0005|Wuwuchu Wuchu|30E|A270000|100000E|A280000|F|B9C8000|0|0|0|0|0|0|0|0|0|0|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|0001AF8F|0|8| +22|2023-10-06T20:27:29.4480000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0006|Wowobora Gogobora|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|35176|80739|5775|10000|||96.46|98.40|0.00|1.83|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|0001AF8F|1|8| +22|2023-10-06T20:27:29.4480000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0002|Suchichi Suchi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|31852|90128|10000|10000|||100.30|97.76|0.00|2.54|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|0001AF8F|2|8| +22|2023-10-06T20:27:29.4480000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0001|Sesuga Sapisuga|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|125086|127791|10000|10000|||99.50|99.92|0.00|-2.97|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|0001AF8F|3|8| +22|2023-10-06T20:27:29.4480000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0003|Gegehi Gehi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|29315|73085|5150|10000|||101.53|101.47|0.00|-2.84|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|0001AF8F|4|8| +22|2023-10-06T20:27:29.4480000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0007|Kehabiqo Febiqo|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|94347|128564|10000|10000|||98.72|89.31|0.00|3.08|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|0001AF8F|5|8| +22|2023-10-06T20:27:29.4480000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0008|Kokosaze Lulusaze|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|42984|79111|7700|10000|||80.80|80.94|-0.01|1.61|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|0001AF8F|6|8| +22|2023-10-06T20:27:29.4480000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0004|Buhojaqe Zijaqe|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|40079|80739|6350|10000|||118.36|97.61|0.00|-3.00|50639|90055|10000|10000|||94.94|97.86|0.00|2.47|0001AF8F|7|8| +38|2023-10-06T20:27:29.4930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|42984|79111|7700|10000|10||80.80|80.94|-0.01|1.61|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:29.4930000-07:00|32|Sprint|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|79111|79111| +261|2023-10-06T20:27:29.1710000-07:00|Change|4002255D||||||||| +261|2023-10-06T20:27:29.1710000-07:00|Change|4002255E||||||||| +37|2023-10-06T20:27:29.5380000-07:00|40022550|Zeromus|0001AF8C|15575654||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:29.5380000-07:00|4002255D|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.25|113.79|0.00|0.00|0001AF90|0|0| +21|2023-10-06T20:27:29.5380000-07:00|4002255E|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||117.04|112.70|0.00|0.00|0001AF91|0|0| +24|2023-10-06T20:27:29.6280000-07:00|10FF0002|Suchichi Suchi|HoT|0|1077|31852|90128|10000|10000|||99.79|98.46|0.00|-2.57|10FF0002|Suchichi Suchi|0|31852|90128|10000|10000|||99.79|98.46|0.00|-2.57| +22|2023-10-06T20:27:29.6280000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|200004|13E70000|B00E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|35176|80739|5775|10000|||98.18|97.93|0.00|1.82|35176|80739|5775|10000|||98.18|97.93|0.00|1.82|0001AF92|0|6| +22|2023-10-06T20:27:29.6280000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|200004|14BC0000|590E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|31852|90128|10000|10000|||99.79|98.46|0.00|-2.57|35176|80739|5775|10000|||98.18|97.93|0.00|1.82|0001AF92|1|6| +22|2023-10-06T20:27:29.6280000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|C810000|30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|125086|127791|10000|10000|||99.49|99.83|0.00|-3.06|35176|80739|5775|10000|||98.18|97.93|0.00|1.82|0001AF92|2|6| +22|2023-10-06T20:27:29.6280000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|CC70000|E30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|29315|73085|5150|10000|||101.40|101.28|-0.01|-3.07|35176|80739|5775|10000|||98.18|97.93|0.00|1.82|0001AF92|3|6| +22|2023-10-06T20:27:29.6280000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|CCA0000|EC0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|50639|90055|10000|10000|||94.83|97.95|-0.02|2.54|35176|80739|5775|10000|||98.18|97.93|0.00|1.82|0001AF92|4|6| +22|2023-10-06T20:27:29.6280000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|C470000|490E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|94347|128564|10000|10000|||98.88|88.07|0.00|3.14|35176|80739|5775|10000|||98.18|97.93|0.00|1.82|0001AF92|5|6| +38|2023-10-06T20:27:29.6280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94347|128564|10000|10000|7||98.88|88.07|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:29.6280000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:27:29.6280000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:29.6280000-07:00|10FF0002|Suchichi Suchi|005A5A16|36067|90128|10000|10000|28||99.79|98.46|0.00|-2.57|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:29.6280000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:29.6280000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35176|80739|4875|10000|35||98.18|97.93|0.00|1.82|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:29.6280000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:29.6280000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:29.6280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125086|127791|10000|10000|14||99.49|99.83|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:29.6280000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:27:29.6280000-07:00|10FF0003|Gegehi Gehi|005A5A23|29315|73085|5150|10000|25||101.40|101.28|-0.01|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T20:27:29.6280000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:27:29.6280000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|50639|90055|10000|10000|26||94.83|97.95|-0.02|2.54|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:29.6280000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:27:29.2900000-07:00|Change|40022B5A||||||||| +261|2023-10-06T20:27:29.3900000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:27:29.3900000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:27:29.7160000-07:00|40022B5A|Demi-Bahamut|65138|68265|10000|10000|||81.49|100.22|0.00|3.09| +24|2023-10-06T20:27:29.7160000-07:00|10FF0003|Gegehi Gehi|HoT|0|1009|29315|73085|5150|10000|||101.40|101.27|0.00|-3.08|10FF0003|Gegehi Gehi|0|29315|73085|5150|10000|||101.40|101.27|0.00|-3.08| +38|2023-10-06T20:27:29.7160000-07:00|10FF0003|Gegehi Gehi|005A5A23|33420|73085|5150|10000|25||101.40|101.27|0.00|-3.08|0|0|0|||||||||||||||| +21|2023-10-06T20:27:29.7610000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|714003|1AC10000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|15575654|40478540|10000|10000|||100.00|80.10|0.00|0.00|125086|127791|10000|10000|||99.49|99.83|0.00|3.12|0001AF93|0|1| +37|2023-10-06T20:27:29.8500000-07:00|40022550|Zeromus|0001AF89|15564696||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:29.8510000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1089|125086|127791|10000|10000|||99.49|99.83|0.00|3.12|10FF0006|Wowobora Gogobora|0|35176|80739|4875|10000|||98.98|98.09|0.00|1.04| +24|2023-10-06T20:27:29.8510000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1C61|40079|80739|6350|10000|||118.29|96.49|0.00|-3.03|10FF0006|Wowobora Gogobora|0|35176|80739|4875|10000|||98.98|98.09|0.00|1.04| +38|2023-10-06T20:27:29.8510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|14||99.49|99.83|0.00|3.12|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:27:29.8510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47344|80739|6900|10000|10||118.29|96.49|0.00|-3.03|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:27:29.9390000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|118E|50639|90055|10000|10000|||94.83|97.95|-0.02|2.54|10FF0006|Wowobora Gogobora|0|35176|80739|4875|10000|||98.98|98.09|0.00|1.04| +38|2023-10-06T20:27:29.9390000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|55133|90055|10000|10000|26||94.83|97.95|-0.02|2.54|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:27:29.6690000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:27:29.7690000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:30.0280000-07:00|10FF0002|Suchichi Suchi|0001AF8E|36067|90128|10000|10000|28||99.42|98.94|0.00|-2.57|1600|0|0|01|09000312|0|41700000|| +26|2023-10-06T20:27:30.0280000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:27:30.0280000-07:00|10FF0006|Wowobora Gogobora|HoT|0|114B|35176|80739|4875|10000|||99.46|98.45|0.00|0.03|40022B3E|Seraph|0|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +38|2023-10-06T20:27:30.0280000-07:00|10FF0006|Wowobora Gogobora|005A5A28|39603|80739|4875|10000|35||99.46|98.45|0.00|0.03|0|0|0||||||||||||||||||| +26|2023-10-06T20:27:30.0280000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:27:30.0720000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8F|55133|90055|10000|10000|26||94.83|97.95|0.00|2.54|2700|0|0|03|09000A27|0|41A00000|||||||||| +26|2023-10-06T20:27:30.0720000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:27:30.0720000-07:00|B9C|Bloodsown Circle|6.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:27:30.0720000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:27:30.0720000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|4A0F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15564696|40478540|10000|10000|||100.00|80.10|0.00|0.00|36067|90128|10000|10000|||99.42|98.94|0.00|-2.57|0001AF94|0|1| +21|2023-10-06T20:27:30.0720000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|19870000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|94347|128564|10000|10000|||99.64|86.51|0.00|3.10|15564696|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AF95|0|1| +37|2023-10-06T20:27:30.1620000-07:00|10FF0001|Sesuga Sapisuga|0001AF8E|127791|127791|10000|10000|14||99.49|99.83|0.00|3.12|1301|0|0|01|08000312|0|41700000|| +26|2023-10-06T20:27:30.1620000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|127791|90128| +21|2023-10-06T20:27:30.1620000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|750003|51450000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|15564696|40478540|10000|10000|||100.00|80.10|0.00|0.00|55133|90055|10000|10000|||94.83|97.95|0.00|2.54|0001AF96|0|1| +38|2023-10-06T20:27:30.1620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|55133|90055|10000|10000|26||94.83|97.95|0.00|2.54|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:30.1620000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +37|2023-10-06T20:27:30.2060000-07:00|10FF0006|Wowobora Gogobora|0001AF8F|39603|80739|4875|10000|35||99.56|98.54|0.00|-0.34|2801|0|0|02|06000A27|0|41A00000|||||| +26|2023-10-06T20:27:30.2060000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +26|2023-10-06T20:27:30.2060000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|80739|90055| +37|2023-10-06T20:27:30.2060000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8F|55133|90055|10000|10000|26||94.83|97.95|0.00|2.54|2701|0|0|01|0C000A1B|02|C1F00000|| +39|2023-10-06T20:27:30.2500000-07:00|10FF0007|Kehabiqo Febiqo|95632|128564|10000|10000|||99.62|86.26|0.00|3.09| +37|2023-10-06T20:27:30.2970000-07:00|10FF0006|Wowobora Gogobora|0001AF8E|39603|80739|4875|10000|35||99.72|98.68|-0.01|-0.93|2802|0|0|01|08000312|0|41700000|| +26|2023-10-06T20:27:30.2970000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|80739|90128| +37|2023-10-06T20:27:30.3400000-07:00|10FF0002|Suchichi Suchi|0001AF8F|36067|90128|10000|10000|28||99.32|99.01|0.00|-2.88|1602|0|0|02|0A000A27|0|41A00000|||||| +26|2023-10-06T20:27:30.3400000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +26|2023-10-06T20:27:30.3400000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|90128|90055| +37|2023-10-06T20:27:30.3400000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8F|55133|90055|10000|10000|26||94.83|97.95|0.00|2.86|2702|0|0|01|0C000A1B|02|C1F00000|| +37|2023-10-06T20:27:30.3850000-07:00|40022550|Zeromus|0001AF93|15557847||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:30.3850000-07:00|10FF0003|Gegehi Gehi|34150|73085|5350|10000|||101.40|101.27|0.00|-3.08| +37|2023-10-06T20:27:30.4310000-07:00|10FF0003|Gegehi Gehi|0001AF8E|34150|73085|5350|10000|25||101.40|101.27|0.00|-3.08|2303|0|0|01|05000312|0|41700000|| +26|2023-10-06T20:27:30.4310000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0003|Gegehi Gehi|00|73085|90128| +21|2023-10-06T20:27:30.4310000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15557847|40478540|10000|10000|||100.00|80.10|0.00|0.00|42984|79111|7700|10000|||80.61|80.61|0.00|-2.50|0001AF97|0|1| +21|2023-10-06T20:27:30.4310000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15557847|40478540|10000|10000|||100.00|80.10|0.00|0.00|47344|80739|6900|10000|||118.09|94.31|0.00|-3.04|0001AF98|0|1| +38|2023-10-06T20:27:30.4310000-07:00|10FF0006|Wowobora Gogobora|005A5A28|39603|80739|4875|10000|35||98.97|98.44|0.00|-1.19|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:30.4310000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:27:30.4750000-07:00|10FF0001|Sesuga Sapisuga|0001AF8F|127791|127791|10000|10000|14||99.49|99.83|0.00|3.12|1303|0|0|02|09000A27|0|41A00000|||||| +26|2023-10-06T20:27:30.4750000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +26|2023-10-06T20:27:30.4750000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|127791|90055| +37|2023-10-06T20:27:30.4750000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8F|55133|90055|10000|10000|26||94.83|97.95|0.00|2.86|2703|0|0|01|0C000A1B|02|C1F00000|| +39|2023-10-06T20:27:30.4750000-07:00|10FF0002|Suchichi Suchi|36968|90128|10000|10000|||99.28|99.03|0.00|-2.77| +261|2023-10-06T20:27:30.2210000-07:00|Change|40022B5A||||||||| +24|2023-10-06T20:27:30.5200000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|113E|95632|128564|10000|10000|||99.60|86.02|0.00|3.09|10FF0007|Kehabiqo Febiqo|0|95632|128564|10000|10000|||99.60|86.02|0.00|3.09| +24|2023-10-06T20:27:30.5200000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1067|42984|79111|7700|10000|||80.61|80.61|0.00|-2.50|10FF0008|Kokosaze Lulusaze|0|42984|79111|7700|10000|||80.61|80.61|0.00|-2.50| +38|2023-10-06T20:27:30.5200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100046|128564|10000|10000|7||99.60|86.02|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:30.5200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|47183|79111|7700|10000|10||80.61|80.61|0.00|-2.50|0|0|0||||||||||||||||||| +37|2023-10-06T20:27:30.5640000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8E|55133|90055|10000|10000|26||94.83|97.95|0.00|2.86|2704|0|0|02|0C000A1B|02|C1F00000|||||| +26|2023-10-06T20:27:30.5640000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:27:30.5640000-07:00|10FF0006|Wowobora Gogobora|0001AF92|44698|80739|4875|10000|35||98.23|98.20|0.00|-1.45|2800|0|0|01|03000A31|0|41E8DD2C|| +21|2023-10-06T20:27:30.5640000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|32180000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|15557847|40478540|10000|10000|||100.00|80.10|0.00|0.00|34150|73085|5350|10000|||101.40|101.27|0.00|-3.08|0001AF99|0|1| +38|2023-10-06T20:27:30.5640000-07:00|10FF0003|Gegehi Gehi|005A5A23|34150|73085|5150|10000|25||101.40|101.27|0.00|-3.08|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:30.5640000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:27:30.5640000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:27:30.5640000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|55133|90055|10000|10000|26||94.83|97.95|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:30.5640000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:27:30.6080000-07:00|10FF0003|Gegehi Gehi|0001AF8F|34150|73085|5150|10000|25||101.40|101.27|0.00|-3.08|2304|0|0|02|06000A27|0|41A00000|||||| +26|2023-10-06T20:27:30.6080000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +26|2023-10-06T20:27:30.6080000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|01|73085|90055| +37|2023-10-06T20:27:30.6080000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8F|55133|90055|10000|10000|26||94.83|97.95|0.00|2.86|2704|0|0|01|0C000A1B|02|C1F00000|| +37|2023-10-06T20:27:30.6970000-07:00|10FF0007|Kehabiqo Febiqo|0001AF8E|100046|128564|10000|10000|7||99.60|86.02|0.00|3.09|1505|0|0|01|07000312|0|41700000|| +26|2023-10-06T20:27:30.6970000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|128564|90128| +37|2023-10-06T20:27:30.6970000-07:00|10FF0002|Suchichi Suchi|0001AF92|42276|90128|10000|10000|28||99.26|99.04|0.00|-2.69|1601|0|0|01|05000A31|0|41E7CCC9|| +261|2023-10-06T20:27:30.3180000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:27:30.3180000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T20:27:30.6970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|47183|79111|7700|10000|10||80.61|80.61|0.00|-2.50|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:30.6970000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:27:30.7410000-07:00|40022550|Zeromus|0001AF8D|15545016||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:30.7410000-07:00|10FF0007|Kehabiqo Febiqo|0001AF8D|110115||||||99.60|86.02|0.00|3.09| +37|2023-10-06T20:27:30.7410000-07:00|10FF0007|Kehabiqo Febiqo|0001AF8F|110115|128564|10000|10000|7||99.60|86.02|0.00|3.09|1505|0|0|02|08000A27|0|41A00000|||||| +26|2023-10-06T20:27:30.7410000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +26|2023-10-06T20:27:30.7410000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|128564|90055| +37|2023-10-06T20:27:30.7410000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8F|55133|90055|10000|10000|26||94.84|97.94|-0.02|2.86|2705|0|0|01|0C000A1B|02|C1F00000|| +21|2023-10-06T20:27:30.7860000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15557847|40478540|10000|10000|||100.00|80.10|0.00|0.00|44698|80739|4875|10000|||97.55|97.88|0.00|-1.65|0001AF9A|0|1| +37|2023-10-06T20:27:30.8320000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF8E|47344|80739|6900|10000|10||118.03|93.47|0.00|-3.03|1C06|0|0|01|08000312|0|41700000|| +26|2023-10-06T20:27:30.8320000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|80739|90128| +37|2023-10-06T20:27:30.8320000-07:00|10FF0001|Sesuga Sapisuga|0001AF92|127791|127791|10000|10000|14||99.49|99.83|0.00|3.12|1302|0|0|01|07000A31|0|41E6BA5A|| +21|2023-10-06T20:27:30.8320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15545016|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.49|99.83|0.00|3.12|0001AF9B|0|1| +21|2023-10-06T20:27:30.8320000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15545016|40478540|10000|10000|||100.00|80.10|0.00|0.00|34150|73085|5150|10000|||101.40|101.27|0.00|-3.08|0001AF9C|0|1| +38|2023-10-06T20:27:30.8320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110115|128564|10000|10000|7||99.62|86.02|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:30.8320000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:30.8320000-07:00|40022B3E|Seraph|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|2.60|0|0|0||||||| +26|2023-10-06T20:27:30.8320000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|40022B3E|Seraph|00|77430|90128| +31|2023-10-06T20:27:30.8320000-07:00|10FF0001||||| +37|2023-10-06T20:27:30.8750000-07:00|10FF0007|Kehabiqo Febiqo|0001AF95|103580|128564|10000|10000|0||99.62|86.02|0.00|3.09|1500|0|0|01|06000000|0|0|| +37|2023-10-06T20:27:30.8750000-07:00|10FF0008|Kokosaze Lulusaze|0001AF8F|47183|79111|7700|10000|10||80.61|80.61|0.00|-2.50|1B06|0|0|02|02000A27|0|41A00000|||||| +26|2023-10-06T20:27:30.8750000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +26|2023-10-06T20:27:30.8750000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|79111|90055| +37|2023-10-06T20:27:30.8750000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8F|55133|90055|10000|10000|26||94.84|97.92|0.00|2.86|2706|0|0|01|0C000A1B|02|C1F00000|| +38|2023-10-06T20:27:30.8760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103580|128564|10000|10000|0||99.62|86.02|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:30.8760000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:30.8760000-07:00|40022B5A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||81.66|94.29|0.00|-3.11|0|0|0|||||||||| +26|2023-10-06T20:27:30.8760000-07:00|A27|Arcane Circle|19.96|10FF0005|Wuwuchu Wuchu|40022B5A|Demi-Bahamut|00|68265|90055| +37|2023-10-06T20:27:30.9650000-07:00|10FF0008|Kokosaze Lulusaze|0001AF8E|47183|79111|7700|10000|10||80.61|80.61|0.00|-2.50|1B07|0|0|01|07000312|0|41700000|| +26|2023-10-06T20:27:30.9650000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|79111|90128| +37|2023-10-06T20:27:30.9650000-07:00|40022550|Zeromus|0001AF97|15544868||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:30.9650000-07:00|10FF0003|Gegehi Gehi|0001AF92|37421|73085|5150|10000|25||101.40|101.27|0.00|-3.08|2303|0|0|01|03000A31|0|41E5A7EB|| +37|2023-10-06T20:27:30.9650000-07:00|40022550|Zeromus|0001AF98|15544795||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:30.9650000-07:00|40022B3E|Seraph|40A4|Seraphic Veil|10FF0002|Suchichi Suchi|4|144F0000|4F000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|42276|90128|10000|10000|||99.26|99.05|0.00|-2.69|73956|77430|10000|10000|||97.31|97.52|0.00|2.38|0001AF9D|0|1| +38|2023-10-06T20:27:30.9650000-07:00|10FF0002|Suchichi Suchi|005A5A16|42276|90128|10000|10000|28||99.26|99.05|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:30.9650000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:30.9650000-07:00|40022B5A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||81.64|93.62|0.00|-3.10|0|0|0||||||||||||| +26|2023-10-06T20:27:30.9650000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|40022B5A|Demi-Bahamut|00|68265|90128| +37|2023-10-06T20:27:31.0100000-07:00|10FF0004|Buhojaqe Zijaqe|0001AF8F|47344|80739|6900|10000|10||117.99|93.14|0.00|-3.02|1C07|0|0|02|09000A27|0|41A00000|||||| +26|2023-10-06T20:27:31.0100000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +26|2023-10-06T20:27:31.0100000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|80739|90055| +37|2023-10-06T20:27:31.0100000-07:00|10FF0005|Wuwuchu Wuchu|0001AF8F|55133|90055|10000|10000|26||94.85|97.90|0.00|2.86|2707|0|0|01|0C000A1B|02|C1F00000|| +39|2023-10-06T20:27:31.0100000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.49|99.83|0.00|3.12| +38|2023-10-06T20:27:31.0100000-07:00|40022B3E|Seraph|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|2.38|0|0|0|||||||||| +26|2023-10-06T20:27:31.0100000-07:00|A27|Arcane Circle|19.95|10FF0005|Wuwuchu Wuchu|40022B3E|Seraph|00|77430|90055| +261|2023-10-06T20:27:30.7160000-07:00|Change|4002255D||||||||| +261|2023-10-06T20:27:30.7160000-07:00|Change|4002255E||||||||| +37|2023-10-06T20:27:31.0980000-07:00|10FF0005|Wuwuchu Wuchu|0001AF92|58407|90055|10000|10000|26||94.86|97.88|0.00|2.86|2704|0|0|02|08000A31|0|41E4957C|||||| +21|2023-10-06T20:27:31.0980000-07:00|4002255D|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.25|113.79|0.00|0.00|0001AF9E|0|0| +21|2023-10-06T20:27:31.0980000-07:00|4002255E|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||117.04|112.70|0.00|0.00|0001AF9F|0|0| +38|2023-10-06T20:27:31.0980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|14||99.49|99.83|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:31.0980000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:27:31.1420000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|E240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15544795|40478540|10000|10000|||100.00|80.10|0.00|0.00|42276|90128|10000|10000|||99.26|99.05|0.00|-2.69|0001AFA0|0|1| +24|2023-10-06T20:27:31.1870000-07:00|40022550|Zeromus|DoT|0|2266|15544795|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|58407|90055|10000|10000|||95.20|97.27|0.00|2.79| +38|2023-10-06T20:27:31.1870000-07:00|40022550|Zeromus|005A5A00|15535989|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:27:31.2320000-07:00|10FF0007|Kehabiqo Febiqo|0001AF92|106723||||||99.71|86.42|0.00|2.69| +37|2023-10-06T20:27:31.2320000-07:00|40022550|Zeromus|0001AF96|15515184||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:31.2320000-07:00|10FF0005|Wuwuchu Wuchu|0001AF96|58407|90055|10000|10000|26||95.20|97.27|0.00|2.79|2700|0|0|01|0C000A1B|02|41F00000|| +261|2023-10-06T20:27:30.8410000-07:00|Change|10FF0005||||||||||||| +38|2023-10-06T20:27:31.2320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47344|80739|6900|10000|10||117.80|91.99|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:31.2320000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:27:31.2320000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|58407|90055|10000|10000|26||95.20|97.27|0.00|2.79|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:30.8410000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:27:31.2760000-07:00|40022550|Zeromus|0001AF94|15496225||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:31.2770000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|3E0C0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|15515184|40478540|10000|10000|||100.00|80.10|0.00|0.00|42276|90128|10000|10000|||99.26|99.05|0.00|-2.69|0001AFA1|0|1| +38|2023-10-06T20:27:31.2770000-07:00|10FF0002|Suchichi Suchi|005A5A16|42276|90128|10000|10000|28||99.26|99.05|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:31.2770000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:31.3210000-07:00|40022550|Zeromus|0001AF9A|15496187||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:31.3210000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|58407|90055|10000|10000|26||95.59|96.57|0.00|2.70|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:31.3210000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +38|2023-10-06T20:27:31.3210000-07:00|10FF0003|Gegehi Gehi|005A5A23|37421|73085|5150|10000|25||101.40|101.27|0.00|-3.08|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:31.3210000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|01|73085|90055| +37|2023-10-06T20:27:31.3660000-07:00|40022550|Zeromus|0001AF9B|15494424||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:31.3660000-07:00|40022550|Zeromus|0001AF99|15481600||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:31.3660000-07:00|40022550|Zeromus|0001AF9C|15481556||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:31.3660000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|756003|95BC0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|15496187|40478540|10000|10000|||100.00|80.10|0.00|0.00|47183|79111|7700|10000|||80.61|80.61|0.00|-2.50|0001AFA2|0|1| +38|2023-10-06T20:27:31.3660000-07:00|10FF0003|Gegehi Gehi|005A5A23|37421|73085|5150|10000|25||101.40|101.27|0.00|-3.08|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:31.3660000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:27:31.0710000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:27:31.1670000-07:00|Change|40022B5A||||||||| +39|2023-10-06T20:27:31.4990000-07:00|10FF0006|Wowobora Gogobora|45505|80739|5080|10000|||96.51|93.95|0.00|2.99| +21|2023-10-06T20:27:31.5440000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|556003|715F0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|15481556|40478540|10000|10000|||100.00|80.10|0.00|0.00|37421|73085|5150|10000|||101.40|101.27|0.00|-3.08|0001AFA3|0|1| +38|2023-10-06T20:27:31.5440000-07:00|10FF0003|Gegehi Gehi|005A5A23|37421|73085|4850|10000|25||101.40|101.27|0.00|-3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:31.5440000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:27:31.5440000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:27:31.6780000-07:00|40022550|Zeromus|0001AFA0|15477936||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:31.6780000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|714003|1E230000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|15481556|40478540|10000|10000|||100.00|80.10|0.00|0.00|106723|128564|10000|10000|||99.74|89.94|0.00|0.28|0001AFA4|0|1| +261|2023-10-06T20:27:31.3530000-07:00|Change|10FF0003||| +261|2023-10-06T20:27:31.3530000-07:00|Change|10FF0004||||||||| +38|2023-10-06T20:27:31.8560000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|58407|90055|10000|10000|26||97.66|98.12|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:31.8560000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +38|2023-10-06T20:27:31.8560000-07:00|10FF0002|Suchichi Suchi|005A5A16|42276|90128|10000|10000|28||99.29|98.89|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:31.8560000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|90128|90055| +37|2023-10-06T20:27:31.9000000-07:00|40022550|Zeromus|0001AFA1|15462052||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:31.9000000-07:00|10FF0005|Wuwuchu Wuchu|59307|90055|10000|10000|||97.74|98.23|0.00|2.51| +21|2023-10-06T20:27:31.9000000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|722003|499E0000|23E|BD8000|FE3E|9E8000|0|0|0|0|0|0|0|0|0|0|15477936|40478540|10000|10000|||100.00|80.10|0.00|0.00|42276|90128|10000|10000|||99.37|98.68|0.00|-3.07|0001AFA5|0|1| +38|2023-10-06T20:27:31.9440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||97.74|98.23|0.00|2.51|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:31.9440000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|03|90055|90055| +38|2023-10-06T20:27:31.9440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|47183|79111|7400|10000|10||80.61|80.61|0.00|1.60|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:31.9440000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|79111|90055| +37|2023-10-06T20:27:31.9890000-07:00|40022550|Zeromus|0001AFA2|15423720||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:31.9890000-07:00|10FF0002|Suchichi Suchi|0001AF9D|47475||||||99.37|98.68|0.00|-3.07| +26|2023-10-06T20:27:31.9890000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:27:31.9890000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|754003|44950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15477936|40478540|10000|10000|||100.00|80.10|0.00|0.00|47183|79111|7400|10000|||80.61|80.61|0.00|1.60|0001AFA6|0|1| +39|2023-10-06T20:27:32.0330000-07:00|10FF0008|Kokosaze Lulusaze|47974|79111|7600|10000|||80.61|80.61|0.00|1.60| +21|2023-10-06T20:27:32.1230000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1E500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15423720|40478540|10000|10000|||100.00|80.10|0.00|0.00|59307|90055|10000|10000|||97.92|98.46|0.00|2.63|0001AFA7|0|1| +38|2023-10-06T20:27:32.1670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||97.92|98.46|0.00|2.63|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:32.1670000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|04|90055|90055| +39|2023-10-06T20:27:32.1670000-07:00|10FF0004|Buhojaqe Zijaqe|48151|80739|7100|10000|||117.07|86.87|0.00|-3.01| +26|2023-10-06T20:27:32.1670000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:27:32.1670000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B716003|A0EC0000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|15423720|40478540|10000|10000|||100.00|80.10|0.00|0.00|59307|90055|10000|10000|||97.92|98.46|0.00|2.63|0001AFA8|0|1| +38|2023-10-06T20:27:32.1670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106723|128564|10000|10000|0||99.75|90.47|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:32.1670000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:32.1670000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|128564|90055| +38|2023-10-06T20:27:32.1670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||97.92|98.46|0.00|2.63|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:32.1670000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:27:32.1670000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:27:31.8530000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:32.2110000-07:00|40022550|Zeromus|0001AFA4|15416005||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:32.2560000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|37421|73085|4850|10000|||101.40|101.27|0.00|-3.08|37421|73085|4850|10000|||101.40|101.27|0.00|-3.08|0001AFA9|0|1| +38|2023-10-06T20:27:32.2560000-07:00|10FF0003|Gegehi Gehi|005A5A23|37421|73085|4850|10000|25||101.40|101.27|0.00|-3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:32.2560000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73085|73085| +37|2023-10-06T20:27:32.3010000-07:00|40022550|Zeromus|0001AFA3|15386982||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:32.3010000-07:00|10FF0003|Gegehi Gehi|0001AFA3|37421|73085|4850|10000|25||101.40|101.27|0.00|-3.08|2300|0|0|02|020004D2|0|41F00000|||||| +21|2023-10-06T20:27:32.3010000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BA60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15423720|40478540|10000|10000|||100.00|80.10|0.00|0.00|106723|128564|10000|10000|||99.72|91.15|0.00|-2.18|0001AFAA|0|1| +38|2023-10-06T20:27:32.3010000-07:00|10FF0003|Gegehi Gehi|005A5A23|37421|73085|4850|10000|25||101.40|101.27|0.00|-3.08|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:27:31.9660000-07:00|Change|10FF0005||||||||||||| +261|2023-10-06T20:27:31.9660000-07:00|Change|10FF0005||| +261|2023-10-06T20:27:31.9660000-07:00|Change|10FF0005||| +261|2023-10-06T20:27:31.9660000-07:00|Change|10FF0008||| +38|2023-10-06T20:27:32.3890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48151|80739|7100|10000|10||116.80|84.97|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:32.3890000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:27:32.4330000-07:00|40022B3E|Seraph|73956|77430|10000|10000|||97.31|97.52|0.00|1.32| +21|2023-10-06T20:27:32.4330000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1EF40000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|15386982|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.24|98.33|0.00|-3.07|0001AFAB|0|1| +261|2023-10-06T20:27:32.1880000-07:00|Change|40022B5A||||||||| +21|2023-10-06T20:27:32.5220000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|720003|3BB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15386982|40478540|10000|10000|||100.00|80.10|0.00|0.00|47475|90128|10000|10000|||99.57|98.13|0.00|3.12|0001AFAC|0|1| +37|2023-10-06T20:27:32.5670000-07:00|40022550|Zeromus|0001AFA5|15368136||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:32.6100000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||98.00|98.57|0.00|2.96|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:32.6100000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|05|90055|90055| +30|2023-10-06T20:27:32.6100000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +261|2023-10-06T20:27:32.2850000-07:00|Change|4002255E||||||||| +261|2023-10-06T20:27:32.2850000-07:00|Change|4002255D||||||||| +261|2023-10-06T20:27:32.2850000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:27:32.6550000-07:00|10FF0003|Gegehi Gehi|0001AFA9|37421|73085|4850|10000|25||101.40|101.27|0.00|-3.08|2300|0|0|01|040007B3|06|41700000|| +37|2023-10-06T20:27:32.6550000-07:00|40022550|Zeromus|0001AFA7|15360376||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:32.6550000-07:00|10FF0005|Wuwuchu Wuchu|0001AFA7|59307|90055|10000|10000|26||98.00|98.57|0.00|2.96|2700|0|0|01|0E000A1D|0|C2700000|| +37|2023-10-06T20:27:32.6550000-07:00|40022550|Zeromus|0001AFA8|15319180||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:32.6550000-07:00|10FF0005|Wuwuchu Wuchu|0001AFA8|59307|90055|10000|10000|26||98.00|98.57|0.00|2.96|2700|0|0|01|0E000A1D|0|42700000|| +21|2023-10-06T20:27:32.6550000-07:00|4002255D|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.14|108.29|0.00|0.00|0001AFAD|0|0| +21|2023-10-06T20:27:32.6550000-07:00|4002255E|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||117.29|107.21|0.00|0.00|0001AFAE|0|0| +21|2023-10-06T20:27:32.6550000-07:00|40022B5A|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|14950000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|15368136|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||80.74|85.27|0.00|-2.96|0001AFAF|0|1| +38|2023-10-06T20:27:32.6550000-07:00|10FF0003|Gegehi Gehi|005A5A23|37421|73085|4850|10000|25||101.40|101.27|0.00|-3.08|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:27:32.6550000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||98.00|98.57|0.00|2.96|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:27:32.7000000-07:00|40022B5A|Demi-Bahamut|65138|68265|10000|10000|||80.74|85.27|0.00|-2.96| +20|2023-10-06T20:27:32.7000000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.29|97.38|0.00|-0.02| +37|2023-10-06T20:27:32.8330000-07:00|40022550|Zeromus|0001AFAA|15316198||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:32.9230000-07:00|40022550|Zeromus|0001AFA6|15298641||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:33.0120000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|750003|3A3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15298641|40478540|10000|10000|||100.00|80.10|0.00|0.00|47974|79111|7600|10000|||80.61|80.61|0.00|1.60|0001AFB0|0|1| +38|2023-10-06T20:27:33.0120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|47974|79111|7600|10000|10||80.61|80.61|0.00|1.60|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:33.0120000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:27:33.1010000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41D80000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|106723|128564|10000|10000|||99.66|92.58|0.00|-0.04|15298641|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AFB1|0|1| +21|2023-10-06T20:27:33.1010000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6D50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15298641|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.25|98.04|0.00|3.12|0001AFB2|0|1| +31|2023-10-06T20:27:33.1010000-07:00|10FF0001||||| +38|2023-10-06T20:27:33.1450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||100.66|99.01|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:33.1450000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|06|90055|90055| +38|2023-10-06T20:27:33.1450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|14||99.25|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:33.1450000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|127791|90055| +37|2023-10-06T20:27:33.1890000-07:00|40022550|Zeromus|0001AFAB|15290717||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:33.1890000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.25|98.04|0.00|3.12|127791|127791|10000|10000|||99.25|98.04|0.00|3.12|0001AFB3|0|1| +39|2023-10-06T20:27:33.2340000-07:00|10FF0007|Kehabiqo Febiqo|108008|128564|10000|10000|||99.66|92.58|0.00|-0.04| +261|2023-10-06T20:27:32.8020000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:27:33.2790000-07:00|40022550|Zeromus|0001AFAC|15275432||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:33.3240000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|1B130000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|15275432|40478540|10000|10000|||100.00|80.10|0.00|0.00|48151|80739|7100|10000|||112.09|82.69|0.00|-1.86|0001AFB4|0|1| +39|2023-10-06T20:27:33.3670000-07:00|10FF0003|Gegehi Gehi|38151|73085|5050|10000|||100.27|100.39|0.00|-2.93| +261|2023-10-06T20:27:32.9210000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:27:33.0320000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:27:33.4560000-07:00|10FF0002|Suchichi Suchi|48376|90128|10000|10000|||99.79|98.16|0.00|2.19| +21|2023-10-06T20:27:33.5890000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15275432|40478540|10000|10000|||100.00|80.10|0.00|0.00|47974|79111|7600|10000|||80.61|80.61|0.00|1.60|0001AFB5|0|1| +21|2023-10-06T20:27:33.5890000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15275432|40478540|10000|10000|||100.00|80.10|0.00|0.00|48151|80739|6700|10000|||110.82|82.72|0.00|-1.80|0001AFB6|0|1| +37|2023-10-06T20:27:33.6340000-07:00|40022550|Zeromus|0001AFB2|15273683||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:33.6340000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5CBE0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|15275432|40478540|10000|10000|||100.00|80.10|0.00|0.00|45505|80739|5080|10000|||99.32|98.37|0.00|3.10|0001AFB7|0|1| +37|2023-10-06T20:27:33.6780000-07:00|40022550|Zeromus|0001AFAF|15268414||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:33.7670000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35722003|52160000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|15268414|40478540|10000|10000|||100.00|80.10|0.00|0.00|48376|90128|10000|10000|||99.84|98.20|0.00|1.13|0001AFB8|0|1| +261|2023-10-06T20:27:33.3410000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:27:33.8130000-07:00|10FF0001|Sesuga Sapisuga|0001AFB3|127791|127791|10000|10000|14||99.25|98.04|0.00|3.12|1300|0|0|01|0300004C|0|41A00000|| +26|2023-10-06T20:27:33.8130000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:27:33.8140000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|752003|765B0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|15268414|40478540|10000|10000|||100.00|80.10|0.00|0.00|47974|79111|7600|10000|||80.61|80.61|0.00|1.60|0001AFB9|0|1| +261|2023-10-06T20:27:33.4320000-07:00|Change|10FF0008||| +21|2023-10-06T20:27:33.8560000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|750003|28E60000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|15268414|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.25|98.04|0.00|3.10|0001AFBA|0|1| +38|2023-10-06T20:27:33.8560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|14||99.25|98.04|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:33.8560000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|127791|127791| +26|2023-10-06T20:27:33.8560000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:27:33.9020000-07:00|10FF0007|Kehabiqo Febiqo|0001AFB1|91152||||||99.62|94.05|0.00|-0.03| +37|2023-10-06T20:27:33.9450000-07:00|40022550|Zeromus|0001AFB0|15253503||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:33.9460000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|115A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15268414|40478540|10000|10000|||100.00|80.10|0.00|0.00|48376|90128|10000|10000|||99.85|98.23|-0.02|-3.11|0001AFBB|0|1| +21|2023-10-06T20:27:33.9460000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|752003|448D0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|15268414|40478540|10000|10000|||100.00|80.10|0.00|0.00|38151|73085|5050|10000|||99.81|99.96|0.00|-2.91|0001AFBC|0|1| +38|2023-10-06T20:27:33.9460000-07:00|10FF0003|Gegehi Gehi|005A5A23|38151|73085|5050|10000|25||99.81|99.96|0.00|-2.91|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:33.9460000-07:00|7B3|Manafication|13.67|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73085|73085| +39|2023-10-06T20:27:34.0350000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.25|98.04|0.00|3.10| +37|2023-10-06T20:27:34.1250000-07:00|40022550|Zeromus|0001AFB5|15253352||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:34.1250000-07:00|40022550|Zeromus|0001AFB6|15253277||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:34.1250000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|248F0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|15253503|40478540|10000|10000|||100.00|80.10|0.00|0.00|91152|128564|10000|10000|||99.60|94.64|0.00|-0.03|0001AFBD|0|1| +261|2023-10-06T20:27:33.7400000-07:00|Change|4002255D||||||||| +261|2023-10-06T20:27:33.7400000-07:00|Change|4002255E||||||||| +38|2023-10-06T20:27:34.2140000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||101.06|99.98|0.00|2.92|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:34.2140000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|07|90055|90055| +21|2023-10-06T20:27:34.2140000-07:00|4002255D|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.04|102.79|0.00|0.00|0001AFBE|0|0| +21|2023-10-06T20:27:34.2140000-07:00|4002255E|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.90|101.72|0.00|0.00|0001AFBF|0|0| +21|2023-10-06T20:27:34.2150000-07:00|40022B3E|Seraph|40A4|Seraphic Veil|10FF0007|Kehabiqo Febiqo|200004|224E0000|4E0E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|91152|128564|10000|10000|||99.60|94.80|0.00|3.11|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001AFC0|0|1| +21|2023-10-06T20:27:34.2150000-07:00|40022B5A|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|134E0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|15253277|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||80.43|84.15|0.00|1.78|0001AFC1|0|1| +24|2023-10-06T20:27:34.2150000-07:00|40022550|Zeromus|DoT|0|1FE6|15253277|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|59307|90055|10000|10000|||101.08|99.88|0.00|2.93| +38|2023-10-06T20:27:34.2150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91152|128564|10000|10000|6||99.60|94.80|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:34.2150000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:27:34.2150000-07:00|77D|Seraphic Veil|29.96|40022B3E|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:27:34.2150000-07:00|40022550|Zeromus|005A5A00|15245111|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:27:34.2150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48151|80739|6700|10000|10||106.59|84.17|0.00|-1.32|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:34.2150000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|80739|90055| +38|2023-10-06T20:27:34.2590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||101.08|99.88|0.00|2.93|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:34.2590000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|08|90055|90055| +37|2023-10-06T20:27:34.2590000-07:00|40022550|Zeromus|0001AFB4|15238180||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:34.2590000-07:00|10FF0006|Wowobora Gogobora|005A5A28|45505|80739|4680|10000|35||99.32|98.37|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:34.2590000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:34.2590000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|80739|90055| +261|2023-10-06T20:27:33.8630000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:27:33.8630000-07:00|Change|10FF0006||||||||||||||||| +24|2023-10-06T20:27:34.3030000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1504|91152|128564|10000|10000|||99.60|94.80|0.00|3.11|10FF0006|Wowobora Gogobora|0|45505|80739|4680|10000|||99.32|98.37|0.00|3.10| +37|2023-10-06T20:27:34.3030000-07:00|40022550|Zeromus|0001AFB7|15214438||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:34.3030000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15253277|40478540|10000|10000|||100.00|80.10|0.00|0.00|38151|73085|5050|10000|||99.81|99.96|0.00|3.13|0001AFC2|0|1| +38|2023-10-06T20:27:34.3030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96532|128564|10000|10000|6||99.60|94.80|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +22|2023-10-06T20:27:34.3930000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|33930000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|45505|80739|4680|10000|||99.32|98.37|0.00|3.10|45505|80739|4680|10000|||99.32|98.37|0.00|3.10|0001AFC3|0|6| +22|2023-10-06T20:27:34.3930000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|4|32870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.25|98.04|0.00|3.10|45505|80739|4680|10000|||99.32|98.37|0.00|3.10|0001AFC3|1|6| +22|2023-10-06T20:27:34.3930000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|4|32EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48376|90128|10000|10000|||99.81|98.40|-0.01|-2.80|45505|80739|4680|10000|||99.32|98.37|0.00|3.10|0001AFC3|2|6| +22|2023-10-06T20:27:34.3930000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|4|32BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38151|73085|5050|10000|||99.81|99.96|0.00|3.13|45505|80739|4680|10000|||99.32|98.37|0.00|3.10|0001AFC3|3|6| +22|2023-10-06T20:27:34.3930000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|32FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59307|90055|10000|10000|||101.13|99.65|0.00|2.95|45505|80739|4680|10000|||99.32|98.37|0.00|3.10|0001AFC3|4|6| +22|2023-10-06T20:27:34.3930000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|4|329B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|96532|128564|10000|10000|||99.60|94.81|0.00|3.11|45505|80739|4680|10000|||99.32|98.37|0.00|3.10|0001AFC3|5|6| +37|2023-10-06T20:27:34.4370000-07:00|40022550|Zeromus|0001AFB9|15184139||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:34.4820000-07:00|40022550|Zeromus|0001AFBB|15179697||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:34.4820000-07:00|40022550|Zeromus|0001AFBA|15169227||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:34.4830000-07:00|10FF0001|Sesuga Sapisuga|0001AFBA|127791|127791|10000|10000|14||99.25|98.04|0.00|3.10|1300|0|0|02|0A000558|04|41F00000|||||| +38|2023-10-06T20:27:34.4830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|14||99.25|98.04|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:27:34.5270000-07:00|10FF0006|Wowobora Gogobora|46312|80739|4885|10000|||99.32|98.37|0.00|3.10| +38|2023-10-06T20:27:34.5270000-07:00|40022B3E|Seraph|005A5A00|0|77430|0|10000|0||97.31|97.52|0.00|2.79|0|0|0|||| +30|2023-10-06T20:27:34.5270000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|40022B3E|Seraph|00|77430|90128| +30|2023-10-06T20:27:34.5270000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022B3E|Seraph|00|77430|90055| +261|2023-10-06T20:27:34.0850000-07:00|Change|40022B3E||||||||| +38|2023-10-06T20:27:34.5720000-07:00|40022B84||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T20:27:34.5720000-07:00|40022550|Zeromus|0001AFBC|15151678||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:34.5720000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15184139|40478540|10000|10000|||100.00|80.10|0.00|0.00|45505|80739|4680|10000|||99.32|98.37|0.00|3.10|0001AFC4|0|1| +38|2023-10-06T20:27:34.5720000-07:00|40022B84||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T20:27:34.6610000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B712003|84A00000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|15151678|40478540|10000|10000|||100.00|80.10|0.00|0.00|59307|90055|10000|10000|||101.20|99.34|0.00|3.00|0001AFC5|0|1| +38|2023-10-06T20:27:34.6610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59307|90055|10000|10000|26||101.20|99.34|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:34.6610000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:27:34.6610000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +30|2023-10-06T20:27:34.6610000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:27:34.7510000-07:00|40022550|Zeromus|0001AFBD|15142319||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:34.7510000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|722003|6E9E0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|15151678|40478540|10000|10000|||100.00|80.10|0.00|0.00|48376|90128|10000|10000|||99.81|98.41|0.00|-2.79|0001AFC6|0|1| +38|2023-10-06T20:27:34.7510000-07:00|40022B5A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||80.43|84.15|0.00|1.78|0|0|0|||||||||||||||| +26|2023-10-06T20:27:34.7510000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|40022B5A|Demi-Bahamut|01|68265|40478540| +21|2023-10-06T20:27:34.7510000-07:00|10FF0008|Kokosaze Lulusaze|1D05|Enkindle Bahamut|40022550|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|15151678|40478540|10000|10000|||100.00|80.10|0.00|0.00|47974|79111|7300|10000|||80.61|80.61|0.00|1.60|0001AFC7|0|1| +38|2023-10-06T20:27:34.7510000-07:00|10FF0002|Suchichi Suchi|005A5A16|48376|90128|10000|10000|28||99.81|98.41|0.00|-2.79|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:34.7510000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:34.7950000-07:00|40022550|Zeromus|0001AFB8|15121305||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:34.7950000-07:00|10FF0002|Suchichi Suchi|0001AFB8|48376|90128|10000|10000|28||99.81|98.41|0.00|3.13|1600|0|0|01|020004DB|0|C1700000|| +37|2023-10-06T20:27:34.8390000-07:00|40022550|Zeromus|0001AFC2|15121263||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:34.8840000-07:00|10FF0005|Wuwuchu Wuchu|60207|90055|10000|10000|||100.59|98.52|0.00|-3.13| +21|2023-10-06T20:27:34.9290000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|712003|981F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15121263|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.25|98.04|0.00|3.10|0001AFC9|0|1| +261|2023-10-06T20:27:34.4740000-07:00|Add|40022B84||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:34.4740000-07:00|40022B84|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||97.32|97.54|0.00|1.23| +261|2023-10-06T20:27:34.5720000-07:00|Change|40022B84||| +39|2023-10-06T20:27:35.0180000-07:00|10FF0008|Kokosaze Lulusaze|48765|79111|7500|10000|||80.70|80.68|0.00|1.60| +261|2023-10-06T20:27:34.5720000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:27:35.1070000-07:00|40022550|Zeromus|0001AFC4|15121218||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:34.6840000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:27:35.1530000-07:00|10FF0006|Wowobora Gogobora|0001AFC3|59515|80739|5585|10000|35||98.53|98.37|0.00|-2.47|2800|0|0|0| +37|2023-10-06T20:27:35.1530000-07:00|40022550|Zeromus|0001AFC5|15087266||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:35.1530000-07:00|10FF0005|Wuwuchu Wuchu|0001AFC5|60207|90055|10000|10000|26||99.99|98.19|0.00|3.08|2700|0|0|01|05000A1C|0|42700000|| +39|2023-10-06T20:27:35.1530000-07:00|10FF0004|Buhojaqe Zijaqe|48958|80739|6900|10000|||103.08|87.56|0.00|-0.62| +38|2023-10-06T20:27:35.1530000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60207|90055|10000|10000|26||99.99|98.19|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:35.2410000-07:00|40022550|Zeromus|0001AFC6|15058948||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:35.2410000-07:00|10FF0002|Suchichi Suchi|0001AFC6|48376|90128|10000|10000|28||99.81|98.41|0.00|3.13|1600|0|0|01|020004DB|0|41700000|| +37|2023-10-06T20:27:35.2410000-07:00|40022550|Zeromus|0001AFC1|15054006||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:35.2410000-07:00|10FF0002|Suchichi Suchi|005A5A16|48376|90128|10000|10000|28||99.81|98.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:34.9130000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:27:35.3310000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|17880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15087266|40478540|10000|10000|||100.00|80.10|0.00|0.00|60207|90055|10000|10000|||99.89|98.22|-0.02|3.06|0001AFCA|0|1| +21|2023-10-06T20:27:35.3760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15054006|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.25|98.04|0.00|3.10|0001AFCB|0|1| +38|2023-10-06T20:27:35.3760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60207|90055|10000|10000|26||99.79|98.25|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:35.3760000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:27:35.3760000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|60207|90055|10000|10000|||99.79|98.25|0.00|3.04|60207|90055|10000|10000|||99.79|98.25|0.00|3.04|0001AFCC|0|1| +31|2023-10-06T20:27:35.3760000-07:00|10FF0001||||| +37|2023-10-06T20:27:35.4200000-07:00|10FF0002|Suchichi Suchi|0001AFC3|61411||||||99.81|98.41|0.00|3.13| +37|2023-10-06T20:27:35.4650000-07:00|40022550|Zeromus|0001AFC9|15015063||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:35.4650000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37750003|34950000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|15054006|40478540|10000|10000|||100.00|80.10|0.00|0.00|38151|73085|5050|10000|||99.81|99.96|0.00|3.13|0001AFCD|0|1| +38|2023-10-06T20:27:35.4650000-07:00|10FF0003|Gegehi Gehi|005A5A23|38151|73085|5050|10000|25||99.81|99.96|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:35.4650000-07:00|7B3|Manafication|12.15|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73085|73085| +37|2023-10-06T20:27:35.5530000-07:00|10FF0003|Gegehi Gehi|0001AFC3|51141||||||99.81|99.96|0.00|3.13| +21|2023-10-06T20:27:35.5530000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61411|90128|10000|10000|||99.81|98.41|0.00|3.13|61411|90128|10000|10000|||99.81|98.41|0.00|3.13|0001AFCE|0|1| +38|2023-10-06T20:27:35.5530000-07:00|10FF0002|Suchichi Suchi|005A5A16|61411|90128|10000|10000|28||99.81|98.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:35.5530000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +34|2023-10-06T20:27:35.5980000-07:00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|01| +261|2023-10-06T20:27:35.2340000-07:00|Change|40022B84||| +37|2023-10-06T20:27:35.6420000-07:00|10FF0002|Suchichi Suchi|0001AFC8|66665|90128|10000|10000|28||99.81|98.41|0.00|3.13|1600|0|0|01|08000074|0|C0A00000|| +38|2023-10-06T20:27:35.6420000-07:00|10FF0002|Suchichi Suchi|005A5A16|66665|90128|10000|10000|28||99.81|98.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:35.6870000-07:00|10FF0005|Wuwuchu Wuchu|0001AFC3|73258||||||99.53|98.34|-0.02|2.97| +21|2023-10-06T20:27:35.6870000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15015063|40478540|10000|10000|||100.00|80.10|0.00|0.00|96532|128564|10000|10000|||99.84|96.81|-0.02|-2.00|0001AFCF|0|1| +39|2023-10-06T20:27:35.7310000-07:00|40022B5A|Demi-Bahamut|65138|68265|10000|10000|||80.43|84.15|0.00|1.78| +21|2023-10-06T20:27:35.7750000-07:00|40022B5A|Demi-Bahamut|1D19|Akh Morn|40022550|Zeromus|756003|52414001|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|15015063|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||80.43|84.15|0.00|1.78|0001AFD0|0|1| +37|2023-10-06T20:27:35.8200000-07:00|10FF0007|Kehabiqo Febiqo|0001AFC3|109487||||||99.85|96.79|0.00|3.05| +21|2023-10-06T20:27:35.8200000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|712003|21140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15015063|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.25|98.04|0.00|3.10|0001AFD1|0|1| +37|2023-10-06T20:27:35.8650000-07:00|40022550|Zeromus|0001AFCA|15009039||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:35.9090000-07:00|40022550|Zeromus|0001AFCB|15006736||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:35.6130000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:27:35.6130000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:27:36.0430000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|73258|90055|10000|10000|26||99.53|98.34|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:36.0430000-07:00|B9C|Bloodsown Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:27:36.0880000-07:00|10FF0002|Suchichi Suchi|0001AFCE|66665|90128|10000|10000|28||99.81|98.41|0.00|3.13|1600|0|0|01|08000074|0|40A00000|| +37|2023-10-06T20:27:36.0880000-07:00|40022550|Zeromus|0001AFCD|14993275||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:27:36.0880000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.28|98.51|0.00|0.17| +38|2023-10-06T20:27:36.0880000-07:00|10FF0002|Suchichi Suchi|005A5A16|66665|90128|10000|10000|28||99.81|98.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:27:36.1310000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1CE00000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|109487|128564|10000|10000|||99.87|96.62|0.00|3.08|15006736|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001AFD2|0|1| +21|2023-10-06T20:27:36.1760000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73258|90055|10000|10000|||99.53|98.34|0.00|2.97|73258|90055|10000|10000|||99.53|98.34|0.00|2.97|0001AFD3|0|1| +38|2023-10-06T20:27:36.1760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|73258|90055|10000|10000|26||99.53|98.34|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:36.1760000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:27:36.2200000-07:00|40022550|Zeromus|0001AFCF|14990101||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:36.2660000-07:00|10FF0007|Kehabiqo Febiqo|110772|128564|10000|10000|||99.88|96.51|-0.02|3.08| +21|2023-10-06T20:27:36.2660000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F722003|8D0D0000|104|1A5D8000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|14993275|40478540|10000|10000|||100.00|80.10|0.00|0.00|66665|90128|10000|10000|||99.81|98.41|-0.02|3.14|0001AFD4|0|1| +38|2023-10-06T20:27:36.2660000-07:00|10FF0002|Suchichi Suchi|005A5A16|66665|90128|10000|10000|28||99.81|98.41|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:36.2660000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:36.2660000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:35.8460000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:27:36.3090000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|754003|5C490000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|14990101|40478540|10000|10000|||100.00|80.10|0.00|0.00|48765|79111|7500|10000|||86.19|84.62|0.00|0.93|0001AFD5|0|1| +39|2023-10-06T20:27:36.3530000-07:00|10FF0003|Gegehi Gehi|51871|73085|5250|10000|||99.81|99.96|0.00|3.13| +261|2023-10-06T20:27:35.9570000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:27:36.3980000-07:00|40022550|Zeromus|0001AFD1|14981633||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:36.4420000-07:00|10FF0002|Suchichi Suchi|67566|90128|10000|10000|||99.76|98.42|0.00|3.13| +37|2023-10-06T20:27:36.5320000-07:00|10FF0005|Wuwuchu Wuchu|0001AFCC|73258|90055|10000|10000|26||99.53|98.38|0.00|2.97|2700|0|0|01|0A0004E2|0|C1200000|| +21|2023-10-06T20:27:36.5760000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|712003|66360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14981633|40478540|10000|10000|||100.00|80.10|0.00|0.00|110772|128564|10000|10000|||99.78|96.40|-0.02|3.09|0001AFD6|0|1| +37|2023-10-06T20:27:36.6650000-07:00|40022550|Zeromus|0001AFD0|14895040||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:36.6650000-07:00|40022B5A|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||80.43|84.15|0.00|1.78|0|0|0||||||||||||| +30|2023-10-06T20:27:36.6650000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|40022B5A|Demi-Bahamut|01|68265|40478540| +37|2023-10-06T20:27:36.7100000-07:00|10FF0005|Wuwuchu Wuchu|0001AFD3|73258|90055|10000|10000|26||99.48|98.68|0.00|2.97|2700|0|0|01|0A0004E2|0|41200000|| +21|2023-10-06T20:27:36.7100000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|1310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14895040|40478540|10000|10000|||100.00|80.10|0.00|0.00|48765|79111|7200|10000|||88.93|85.62|0.00|1.70|0001AFD7|0|1| +21|2023-10-06T20:27:36.7100000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14895040|40478540|10000|10000|||100.00|80.10|0.00|0.00|48958|80739|6900|10000|||99.23|96.25|0.00|-0.43|0001AFD8|0|1| +38|2023-10-06T20:27:36.7100000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|73258|90055|10000|10000|26||99.48|98.68|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:27:36.7540000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|12970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14895040|40478540|10000|10000|||100.00|80.10|0.00|0.00|67566|90128|10000|10000|||99.81|99.01|0.00|1.80|0001AFD9|0|1| +261|2023-10-06T20:27:36.4500000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:27:36.8430000-07:00|40022550|Zeromus|005A5A00|14895040|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:36.8430000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +261|2023-10-06T20:27:36.4500000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:27:36.8870000-07:00|10FF0002|Suchichi Suchi|4060|Stardiver|40022550|Zeromus|120003|67510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14895040|40478540|10000|10000|||100.00|80.10|0.00|0.00|67566|90128|10000|10000|||99.84|99.25|0.00|1.25|0001AFDA|0|1| +37|2023-10-06T20:27:36.9330000-07:00|10FF0007|Kehabiqo Febiqo|0001AFD2|103380|128564|10000|10000|0||99.67|96.34|0.00|3.12|1500|0|0|01|04000000|0|0|| +37|2023-10-06T20:27:36.9330000-07:00|40022550|Zeromus|0001AFD5|14871415||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:36.9330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103380|128564|10000|10000|0||99.67|96.34|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:36.9330000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:36.9330000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:27:36.9770000-07:00|40022550|Zeromus|0001AFD4|14835306||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:36.9770000-07:00|10FF0002|Suchichi Suchi|0001AFD4|74315|90128|10000|10000|28||99.87|99.47|0.00|3.14|1600|0|0|01|0B000322|0|41F00000|| +21|2023-10-06T20:27:36.9770000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A754003|613E0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|14895040|40478540|10000|10000|||100.00|80.10|0.00|0.00|51871|73085|5250|10000|||99.81|99.96|0.00|3.13|0001AFDB|0|1| +38|2023-10-06T20:27:36.9770000-07:00|10FF0002|Suchichi Suchi|005A5A16|74315|90128|10000|10000|28||99.87|99.47|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:36.9770000-07:00|10FF0003|Gegehi Gehi|005A5A23|51871|73085|5250|10000|25||99.81|99.96|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:36.9770000-07:00|7B3|Manafication|10.64|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73085|73085| +39|2023-10-06T20:27:37.0210000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.25|98.04|0.00|3.10| +21|2023-10-06T20:27:37.0210000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5A9A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|14895040|40478540|10000|10000|||100.00|80.10|0.00|0.00|59515|80739|5585|10000|||98.47|98.83|0.00|3.06|0001AFDC|0|1| +21|2023-10-06T20:27:37.0660000-07:00|10FF0008|Kokosaze Lulusaze|DFE|Deathflare|40022550|Zeromus|754003|67F40000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|14895040|40478540|10000|10000|||100.00|80.10|0.00|0.00|48765|79111|7200|10000|||90.23|86.12|0.00|1.39|0001AFDD|0|1| +21|2023-10-06T20:27:37.1590000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|712003|74C10000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|14835306|40478540|10000|10000|||100.00|80.10|0.00|0.00|73258|90055|10000|10000|||99.33|99.55|0.00|2.97|0001AFDE|0|1| +38|2023-10-06T20:27:37.1590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|73258|90055|10000|10000|26||99.33|99.55|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:37.1590000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:27:37.2000000-07:00|40022550|Zeromus|0001AFD6|14809140||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:37.2000000-07:00|40022550|Zeromus|DoT|0|2455|14835306|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|73258|90055|10000|10000|||99.30|99.75|0.00|3.10| +20|2023-10-06T20:27:37.2000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|99.08|98.61|0.00|-0.04| +38|2023-10-06T20:27:37.2000000-07:00|40022550|Zeromus|005A5A00|14799839|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:27:36.7750000-07:00|Change|40022B84||| +37|2023-10-06T20:27:37.2450000-07:00|40022550|Zeromus|0001AFD7|14799534||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:37.2450000-07:00|40022550|Zeromus|0001AFD8|14799419||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:37.2450000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|103380|128564|10000|10000|||99.66|96.33|0.00|3.12|103380|128564|10000|10000|||99.66|96.33|0.00|3.12|0001AFDF|0|1| +38|2023-10-06T20:27:37.2450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103380|128564|10000|10000|0||99.66|96.33|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:37.2450000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|128564|128564| +26|2023-10-06T20:27:37.2450000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:27:37.2450000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:27:37.2450000-07:00|A75|Surging Tempest|17.90|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:27:37.2900000-07:00|40022550|Zeromus|0001AFD9|14794660||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:36.8930000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:27:37.4660000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|752003|CD730000|4|24F48000|0|0|0|0|0|0|0|0|0|0|0|0|14794660|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.25|98.04|0.00|3.10|0001AFE0|0|1| +38|2023-10-06T20:27:37.4660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|14||99.25|98.04|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:37.4660000-07:00|558|Requiescat|26.97|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +30|2023-10-06T20:27:37.4660000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:27:37.4660000-07:00|10FF0001||||| +261|2023-10-06T20:27:37.0090000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:27:37.5110000-07:00|10FF0006|Wowobora Gogobora|60322|80739|5390|10000|||98.47|98.83|0.00|3.06| +37|2023-10-06T20:27:37.6000000-07:00|40022550|Zeromus|0001AFDB|14769766||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:37.6440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|ED80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14769766|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||99.25|98.04|0.00|3.10|0001AFE1|0|1| +31|2023-10-06T20:27:37.6440000-07:00|10FF0001||||| +24|2023-10-06T20:27:37.6890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|227C|103380|128564|10000|10000|||99.66|96.33|0.00|3.12|10FF0006|Wowobora Gogobora|1|60322|80739|5390|10000|||98.47|98.85|0.00|1.89| +37|2023-10-06T20:27:37.6890000-07:00|40022550|Zeromus|0001AFDC|14746572||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:37.6890000-07:00|40022550|Zeromus|0001AFDE|14716683||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:37.6890000-07:00|10FF0005|Wuwuchu Wuchu|0001AFDE|73258|90055|10000|10000|26||99.20|100.33|-0.02|3.10|2700|0|0|01|0C000A1F|0|41F00000|| +38|2023-10-06T20:27:37.6890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112208|128564|10000|10000|0||99.66|96.33|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:37.6890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|73258|90055|10000|10000|26||99.20|100.33|-0.02|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:37.3010000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:27:37.7780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|48765|79111|7200|10000|10||93.74|89.00|0.00|1.37|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:37.7780000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|79111|79111| +21|2023-10-06T20:27:37.7780000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|754003|29F20000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|14716683|40478540|10000|10000|||100.00|80.10|0.00|0.00|48765|79111|7200|10000|||93.74|89.00|0.00|1.37|0001AFE2|0|1| +21|2023-10-06T20:27:37.7780000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14716683|40478540|10000|10000|||100.00|80.10|0.00|0.00|51871|73085|5250|10000|||99.81|100.00|0.00|-2.39|0001AFE3|0|1| +38|2023-10-06T20:27:37.7790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|48765|79111|7200|10000|10||93.74|89.00|0.00|1.37|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:37.7790000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:27:37.8220000-07:00|40022B5A|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|756003|26B00000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|14716683|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||80.43|84.15|0.00|1.78|0001AFE4|0|1| +37|2023-10-06T20:27:37.8660000-07:00|40022550|Zeromus|0001AFDD|14690071||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:37.8660000-07:00|10FF0008|Kokosaze Lulusaze|0001AFDD|48765|79111|7200|10000|10||94.38|89.71|-0.02|2.70|1B00|0|0|01|06000A8D|0|C2700000|| +39|2023-10-06T20:27:37.8660000-07:00|10FF0005|Wuwuchu Wuchu|74158|90055|10000|10000|||99.20|100.33|0.00|3.10| +261|2023-10-06T20:27:37.5110000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:27:38.0010000-07:00|10FF0007|Kehabiqo Febiqo|0001AFDF|112208|128564|10000|10000|0||99.66|96.33|0.00|3.12|1500|0|0|03|04000499|03|41700000|||||||||| +38|2023-10-06T20:27:38.0010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112208|128564|10000|10000|0||99.66|96.33|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:27:38.0450000-07:00|40022550|Zeromus|8B66|Void Bio|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:38.0450000-07:00|10FF0008|Kokosaze Lulusaze|49556|79111|7400|10000|||94.72|90.12|0.00|2.70| +37|2023-10-06T20:27:38.0900000-07:00|40022550|Zeromus|0001AFE0|14637476||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:37.6960000-07:00|Change|40022550||||||||| +39|2023-10-06T20:27:38.1340000-07:00|10FF0004|Buhojaqe Zijaqe|49765|80739|7100|10000|||99.20|98.99|0.00|0.19| +37|2023-10-06T20:27:38.1790000-07:00|40022550|Zeromus|0001AFDA|14611027||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:38.1790000-07:00|40022550|Zeromus|0001AFE1|14607227||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:38.2680000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|712003|1FB60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14637476|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||99.25|98.04|0.00|3.10|0001AFE5|0|1| +37|2023-10-06T20:27:38.3120000-07:00|40022550|Zeromus|0001AFE3|14607203||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:38.3130000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|712003|4D6F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14607227|40478540|10000|10000|||100.00|80.10|0.00|0.00|112208|128564|10000|10000|||99.66|96.33|0.00|3.12|0001AFE6|0|1| +21|2023-10-06T20:27:38.3580000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|22C30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|51871|73085|5250|10000|||99.72|100.83|0.00|-0.43|73956|77430|10000|10000|||97.31|97.52|0.00|2.51|0001AFE7|0|1| +21|2023-10-06T20:27:38.3580000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14607227|40478540|10000|10000|||100.00|80.10|0.00|0.00|60322|80739|5390|10000|||98.97|100.03|0.00|0.51|0001AFE8|0|1| +261|2023-10-06T20:27:37.9230000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:27:38.4920000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|681D0000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|14607203|40478540|10000|10000|||100.00|80.10|0.00|0.00|60322|80739|5390|10000|||99.02|100.14|-0.02|0.49|0001AFE9|0|1| +21|2023-10-06T20:27:38.5380000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|17720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14607203|40478540|10000|10000|||100.00|80.10|0.00|0.00|74158|90055|10000|10000|||99.20|100.33|0.00|3.10|0001AFEA|0|1| +04|2023-10-06T20:27:38.1410000-07:00|40022B3E|Seraph|00|5A|10FF0004|00||8227|10487|0|77430|0|10000|||97.31|97.52|0.00|2.44| +261|2023-10-06T20:27:38.1410000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:27:38.1410000-07:00|Remove|40022B3E| +22|2023-10-06T20:27:38.6270000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|1EB00000|190E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|0001AFEB|0|8| +22|2023-10-06T20:27:38.6270000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|1DFE0000|FC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|9000|10000|||99.25|98.04|0.00|3.10|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|0001AFEB|1|8| +22|2023-10-06T20:27:38.6270000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|12600000|660E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|74315|90128|10000|10000|||99.90|99.72|0.00|3.14|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|0001AFEB|2|8| +22|2023-10-06T20:27:38.6270000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|12CA0000|100E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|60322|80739|4990|10000|||99.02|100.14|0.00|3.09|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|0001AFEB|3|8| +22|2023-10-06T20:27:38.6270000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|12350000|210E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|74158|90055|10000|10000|||99.20|100.33|0.00|3.10|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|0001AFEB|4|8| +22|2023-10-06T20:27:38.6270000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|12B40000|EC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|51871|73085|5250|10000|||99.66|101.30|-0.01|-0.14|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|0001AFEB|5|8| +22|2023-10-06T20:27:38.6270000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|12510000|4E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|112208|128564|10000|10000|||99.66|96.33|0.00|3.12|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|0001AFEB|6|8| +22|2023-10-06T20:27:38.6270000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|1EDE0000|630E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|49556|79111|7400|10000|||97.13|93.18|0.00|1.30|49765|80739|7100|10000|||99.20|98.99|0.00|0.12|0001AFEB|7|8| +21|2023-10-06T20:27:38.6270000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|714003|647F0000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|14607203|40478540|10000|10000|||100.00|80.10|0.00|0.00|74158|90055|10000|10000|||99.20|100.33|0.00|3.10|0001AFEC|0|1| +38|2023-10-06T20:27:38.6280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112208|128564|10000|10000|5||99.66|96.33|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:38.6280000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:38.6280000-07:00|10FF0002|Suchichi Suchi|005A5A16|74315|90128|10000|10000|17||99.90|99.72|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:38.6280000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:27:38.6280000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:27:38.6280000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|49556|79111|7400|10000|26||97.13|93.18|0.00|1.30|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:38.6280000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:27:38.6280000-07:00|10FF0006|Wowobora Gogobora|005A5A28|60322|80739|4990|10000|24||99.02|100.14|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:38.6280000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:38.6280000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:27:38.6280000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:27:38.6280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|16||99.25|98.04|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:38.6280000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:27:38.6280000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:27:38.6280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49765|80739|6100|10000|25||99.20|98.99|0.00|0.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:38.6280000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:27:38.6280000-07:00|10FF0003|Gegehi Gehi|005A5A23|51871|73085|5250|10000|21||99.66|101.30|-0.01|-0.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:38.6280000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:27:38.6280000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:27:38.6280000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74158|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:38.6280000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:27:38.6280000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:27:38.6280000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:27:38.6280000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:27:38.7160000-07:00|40022B5A|Demi-Bahamut|65138|68265|10000|10000|||80.43|84.15|0.00|1.78| +261|2023-10-06T20:27:38.2360000-07:00|Change|40022B5A||||||||||| +38|2023-10-06T20:27:38.7160000-07:00|40022B5A|Demi-Bahamut|005A5A00|0|68265|0|10000|0||80.43|84.15|0.00|1.78|0|0|0|||| +30|2023-10-06T20:27:38.7160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022B5A|Demi-Bahamut|00|68265|79111| +30|2023-10-06T20:27:38.7160000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022B5A|Demi-Bahamut|00|68265|90055| +30|2023-10-06T20:27:38.7160000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|40022B5A|Demi-Bahamut|00|68265|90128| +38|2023-10-06T20:27:38.7610000-07:00|40022BC4||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +21|2023-10-06T20:27:38.7610000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D724003|3E7A0000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|14607203|40478540|10000|10000|||100.00|80.10|0.00|0.00|74315|90128|10000|10000|||99.90|99.72|0.00|3.14|0001AFED|0|1| +38|2023-10-06T20:27:38.7610000-07:00|10FF0002|Suchichi Suchi|005A5A16|74315|90128|10000|10000|17||99.90|99.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:38.7610000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:27:38.7610000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:27:38.7610000-07:00|40022BC4||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +37|2023-10-06T20:27:38.8050000-07:00|40022550|Zeromus|0001AFE2|14596465||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:38.8050000-07:00|10FF0008|Kokosaze Lulusaze|0001AFE2|49556|79111|7400|10000|26||97.77|94.03|0.00|1.01|1B00|0|0|01|06000A8D|0|42700000|| +38|2023-10-06T20:27:38.8050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|49556|79111|7400|10000|26||97.77|94.03|0.00|1.01|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:27:38.8490000-07:00|40022550|Zeromus|0001AFE5|14588347||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:38.8940000-07:00|40022550|Zeromus|0001AFE8|14588286||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:38.9390000-07:00|40022550|Zeromus|0001AFE6|14568463||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:38.9390000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74158|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:38.4250000-07:00|Add|40022BC4||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:38.4250000-07:00|40022BC4|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||98.60|95.12|0.00|-2.51| +261|2023-10-06T20:27:38.5200000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:27:38.5200000-07:00|Change|40022BC4||| +21|2023-10-06T20:27:39.0280000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|85A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14568463|40478540|10000|10000|||100.00|80.10|0.00|0.00|112208|128564|10000|10000|||99.66|96.33|0.00|3.12|0001AFEE|0|1| +38|2023-10-06T20:27:39.0280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112208|128564|10000|10000|5||99.66|96.33|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:39.0280000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:27:39.0280000-07:00|499|Inner Release|13.93|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|128564|128564| +37|2023-10-06T20:27:39.0730000-07:00|40022550|Zeromus|0001AFEA|14562461||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:39.0730000-07:00|10FF0005|Wuwuchu Wuchu|0001AFEA|74158|90055|10000|10000|23||99.20|100.33|0.00|3.10|2700|0|0|01|0C000A1E|0|C1F00000|| +21|2023-10-06T20:27:39.0730000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|191A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14568463|40478540|10000|10000|||100.00|80.10|0.00|0.00|112208|128564|10000|10000|||99.66|96.33|0.00|3.12|0001AFEF|0|1| +37|2023-10-06T20:27:39.1630000-07:00|10FF0003|Gegehi Gehi|0001AFE7|60770||||||99.66|101.30|0.00|-0.14| +24|2023-10-06T20:27:39.1630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|21DC|112208|128564|10000|10000|||99.66|96.33|0.00|3.12|10FF0006|Wowobora Gogobora|1|60322|80739|4990|10000|||99.02|100.14|0.00|3.09| +37|2023-10-06T20:27:39.1630000-07:00|40022550|Zeromus|0001AFE9|14535808||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:39.1630000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022550|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14562461|40478540|10000|10000|||100.00|80.10|0.00|0.00|49765|80739|6100|10000|||99.47|100.46|0.00|0.16|0001AFF0|0|1| +21|2023-10-06T20:27:39.1630000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022550|Zeromus|750003|57490000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|14562461|40478540|10000|10000|||100.00|80.10|0.00|0.00|51871|73085|5250|10000|||99.66|101.30|0.00|-0.14|0001AFF1|0|1| +38|2023-10-06T20:27:39.1630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120876|128564|10000|10000|5||99.66|96.33|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:39.1630000-07:00|10FF0003|Gegehi Gehi|005A5A23|60770|73085|4850|10000|21||99.66|101.30|0.00|-0.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:39.1630000-07:00|7B3|Manafication|8.45|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73085|73085| +26|2023-10-06T20:27:39.1630000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:27:38.7410000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:27:39.2500000-07:00|40022550|Zeromus|0001AFEC|14510081||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:39.2500000-07:00|10FF0005|Wuwuchu Wuchu|0001AFEC|74158|90055|10000|10000|23||99.20|100.33|0.00|3.10|2700|0|0|01|0C000A1E|0|41F00000|| +39|2023-10-06T20:27:39.2500000-07:00|10FF0007|Kehabiqo Febiqo|122161|128564|10000|10000|||99.66|96.33|0.00|3.12| +38|2023-10-06T20:27:39.2500000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74158|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:38.9660000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:27:39.3860000-07:00|40022550|Zeromus|0001AFED|14494087||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:39.3860000-07:00|10FF0002|Suchichi Suchi|0001AFED|74315|90128|10000|10000|17||100.23|99.56|0.00|-3.11|1600|0|0|01|08000323|0|41F00000|| +39|2023-10-06T20:27:39.3860000-07:00|10FF0003|Gegehi Gehi|61500|73085|5050|10000|||99.66|101.30|0.00|3.13| +21|2023-10-06T20:27:39.3860000-07:00|10FF0002|Suchichi Suchi|60|Dragonfire Dive|40022550|Zeromus|120003|32E50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14510081|40478540|10000|10000|||100.00|80.10|0.00|0.00|74315|90128|10000|10000|||100.23|99.56|0.00|-3.11|0001AFF2|0|1| +26|2023-10-06T20:27:39.3860000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:27:39.3860000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|756003|77300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14510081|40478540|10000|10000|||100.00|80.10|0.00|0.00|49556|79111|7400|10000|||98.83|95.58|0.00|2.31|0001AFF3|0|1| +38|2023-10-06T20:27:39.3860000-07:00|10FF0002|Suchichi Suchi|005A5A16|74315|90128|10000|10000|17||100.23|99.56|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T20:27:39.4730000-07:00|10FF0002|Suchichi Suchi|75216|90128|10000|10000|||100.23|99.56|0.00|-3.11| +21|2023-10-06T20:27:39.5630000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|16DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14494087|40478540|10000|10000|||100.00|80.10|0.00|0.00|75216|90128|10000|10000|||100.28|99.53|0.00|-3.12|0001AFF4|0|1| +261|2023-10-06T20:27:39.1790000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:27:39.6070000-07:00|40022550|Zeromus|0001AFEF|14487661||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:39.6520000-07:00|40022550|Zeromus|0001AFEE|14453447||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:39.2750000-07:00|Change|10FF0003||||| +37|2023-10-06T20:27:39.7420000-07:00|10FF0004|Buhojaqe Zijaqe|0001AFEB|57621|80739|6100|10000|25||99.53|100.82|0.00|3.12|1C00|0|0|01|05000129|0|41E76C8A|| +21|2023-10-06T20:27:39.7420000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|12270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14453447|40478540|10000|10000|||100.00|80.10|0.00|0.00|122161|128564|10000|10000|||99.66|96.27|0.00|3.09|0001AFF5|0|1| +20|2023-10-06T20:27:39.7430000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.53|100.82|0.00|3.12| +261|2023-10-06T20:27:39.3760000-07:00|Change|40022BC4||||||||| +34|2023-10-06T20:27:39.7860000-07:00|40022BC4|Carbuncle|40022BC4|Carbuncle|01| +21|2023-10-06T20:27:39.8310000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14453447|40478540|10000|10000|||100.00|80.10|0.00|0.00|49556|79111|7400|10000|||99.36|98.86|0.00|-0.97|0001AFF6|0|1| +37|2023-10-06T20:27:39.8750000-07:00|10FF0001|Sesuga Sapisuga|0001AFEB|127791|127791|9000|10000|16||99.25|98.04|0.00|3.10|1301|0|0|01|07000129|0|41E65C27|| +21|2023-10-06T20:27:39.9210000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|12750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14453447|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||99.25|98.04|0.00|3.10|0001AFF7|0|1| +31|2023-10-06T20:27:39.9210000-07:00|10FF0001||||| +261|2023-10-06T20:27:39.4740000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:27:39.9640000-07:00|40022550|Zeromus|0001AFF0|14453447|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004C5|0|41700000|| +26|2023-10-06T20:27:39.9640000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:27:39.9640000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|750003|60AD0000|4|26448000|0|0|0|0|0|0|0|0|0|0|0|0|14453447|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||99.25|98.04|0.00|3.10|0001AFF8|0|1| +38|2023-10-06T20:27:39.9640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8000|10000|16||99.25|98.04|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:39.9640000-07:00|558|Requiescat|24.47|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +31|2023-10-06T20:27:39.9640000-07:00|10FF0001||||| +261|2023-10-06T20:27:39.5650000-07:00|Change|10FF0001||| +37|2023-10-06T20:27:40.0080000-07:00|10FF0002|Suchichi Suchi|0001AFEB|79920|90128|10000|10000|17||100.28|99.53|0.00|-3.12|1602|0|0|01|05000129|0|41E54BC5|| +39|2023-10-06T20:27:40.0080000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8200|10000|||99.25|98.04|0.00|3.10| +38|2023-10-06T20:27:40.0080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57621|80739|6100|10000|25||99.53|100.82|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:40.0080000-07:00|2B|Weakness|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|80739|| +37|2023-10-06T20:27:40.1000000-07:00|40022550|Zeromus|0001AFF4|14447594||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:40.1000000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|716003|A4980000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|14453447|40478540|10000|10000|||100.00|80.10|0.00|0.00|74158|90055|10000|10000|||99.20|100.33|0.00|3.10|0001AFF9|0|1| +38|2023-10-06T20:27:40.1000000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74158|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:40.1000000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:27:40.1000000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:27:40.1420000-07:00|10FF0006|Wowobora Gogobora|0001AFEB|65132|80739|4990|10000|24||99.02|100.14|0.00|3.09|2803|0|0|01|03000129|0|41E4353D|| +37|2023-10-06T20:27:40.1860000-07:00|40022550|Zeromus|0001AFF2|14434565||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:40.1860000-07:00|40022550|Zeromus|DoT|0|1B3D|14447594|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|74158|90055|10000|10000|||99.20|100.33|0.00|3.10| +38|2023-10-06T20:27:40.1860000-07:00|40022550|Zeromus|005A5A00|14427592|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:27:40.2310000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.39| +21|2023-10-06T20:27:40.2310000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79920|90128|10000|10000|||100.35|99.50|0.00|-3.12|79920|90128|10000|10000|||100.35|99.50|0.00|-3.12|0001AFFA|0|1| +38|2023-10-06T20:27:40.2310000-07:00|10FF0002|Suchichi Suchi|005A5A16|79920|90128|10000|10000|17||100.35|99.50|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:40.2310000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:40.2750000-07:00|10FF0005|Wuwuchu Wuchu|0001AFEB|78819|90055|10000|10000|23||99.20|100.33|0.00|3.10|2704|0|0|02|08000129|0|41E328F3|||||| +37|2023-10-06T20:27:40.3200000-07:00|40022550|Zeromus|0001AFF3|14397080||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:40.3650000-07:00|40022550|Zeromus|0001AFF6|14396825||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:40.4100000-07:00|40022550|Zeromus|0001AFF5|14392178||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:40.4100000-07:00|10FF0003|Gegehi Gehi|0001AFEB|66288|73085|5050|10000|21||99.66|101.30|0.00|3.13|2305|0|0|02|03000129|0|41E21684|||||| +21|2023-10-06T20:27:40.4100000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|756003|751F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14397080|40478540|10000|10000|||100.00|80.10|0.00|0.00|49556|79111|7400|10000|||99.60|99.99|0.00|-0.14|0001AFFB|0|1| +38|2023-10-06T20:27:40.4100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|49556|79111|7400|10000|26||99.60|99.99|0.00|-0.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:40.4100000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +37|2023-10-06T20:27:40.4540000-07:00|40022550|Zeromus|0001AFF7|14387453||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:40.4980000-07:00|10FF0006|Wowobora Gogobora|65939|80739|5195|10000|||99.02|100.14|0.00|3.09| +261|2023-10-06T20:27:40.1230000-07:00|Change|10FF0006||| +37|2023-10-06T20:27:40.5440000-07:00|10FF0007|Kehabiqo Febiqo|0001AFEB|126850|128564|10000|10000|5||99.69|95.88|0.00|3.13|1506|0|0|01|0A000129|0|41E10415|| +37|2023-10-06T20:27:40.5880000-07:00|40022550|Zeromus|0001AFF8|14362704||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:40.5880000-07:00|40022550|Zeromus|0001AFF1|14340359||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:40.5880000-07:00|10FF0003|Gegehi Gehi|0001AFF1|66288|73085|5050|10000|21||99.66|101.30|0.00|3.13|2300|0|0|01|070004D3|0|41F00000|| +38|2023-10-06T20:27:40.5880000-07:00|10FF0003|Gegehi Gehi|005A5A23|66288|73085|5050|10000|21||99.66|101.30|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:27:40.6330000-07:00|40022550|Zeromus|0001AFF9|14298223||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:40.6330000-07:00|10FF0005|Wuwuchu Wuchu|0001AFF9|78819|90055|10000|10000|23||99.20|100.33|0.00|3.10|2700|0|0|01|0C000A1F|0|41F00000|| +38|2023-10-06T20:27:40.6330000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|78819|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:40.6780000-07:00|10FF0008|Kokosaze Lulusaze|0001AFEB|57458|79111|7400|10000|26||99.60|99.99|0.00|3.12|1B07|0|0|01|08000129|0|41DFF1A6|| +21|2023-10-06T20:27:40.6780000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|52F80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|57621|80739|6100|10000|||99.53|100.82|0.00|3.12|0001AFFC|0|1| +21|2023-10-06T20:27:40.7220000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|44FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|66288|73085|5050|10000|||99.66|101.30|0.00|3.13|0001AFFD|0|1| +37|2023-10-06T20:27:40.7660000-07:00|10FF0002|Suchichi Suchi|0001AFFA|79920|90128|10000|10000|17||100.45|99.44|-0.02|-3.12|1600|0|0|01|0B000074|0|40A00000|| +38|2023-10-06T20:27:40.7660000-07:00|10FF0002|Suchichi Suchi|005A5A16|79920|90128|10000|10000|17||100.45|99.44|-0.02|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:27:40.9000000-07:00|10FF0005|Wuwuchu Wuchu|79719|90055|10000|10000|||99.20|100.33|0.00|3.10| +21|2023-10-06T20:27:40.9000000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|229B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|78819|90055|10000|10000|||99.20|100.33|0.00|3.10|0001AFFE|0|1| +21|2023-10-06T20:27:40.9460000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|6AC30000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|65939|80739|5195|10000|||99.02|100.14|0.00|3.09|0001AFFF|0|1| +261|2023-10-06T20:27:40.5000000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:27:40.5000000-07:00|Change|10FF0001||| +39|2023-10-06T20:27:41.0340000-07:00|10FF0008|Kokosaze Lulusaze|58249|79111|7600|10000|||99.60|99.99|0.00|3.12| +261|2023-10-06T20:27:40.6130000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:27:40.6130000-07:00|Change|40022BC4||||||||| +21|2023-10-06T20:27:41.0790000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|58249|79111|7600|10000|||99.60|99.99|0.00|3.12|0001B000|0|1| +38|2023-10-06T20:27:41.0790000-07:00|40022BC4|Carbuncle|005A5A00|0|75851|0|10000|0||98.41|98.44|0.00|0.00|0|0|0|||| +26|2023-10-06T20:27:41.0790000-07:00|30|Well Fed|1998.38|10FF0008|Kokosaze Lulusaze|40022BC4|Carbuncle|2964|75851|79111| +38|2023-10-06T20:27:41.1240000-07:00|40022BE1||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +38|2023-10-06T20:27:41.1240000-07:00|40022BE1||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +39|2023-10-06T20:27:41.1680000-07:00|10FF0004|Buhojaqe Zijaqe|58428|80739|5900|10000|||99.53|100.82|0.00|3.05| +21|2023-10-06T20:27:41.1680000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|65939|80739|4795|10000|||99.02|100.14|0.00|3.09|0001B001|0|1| +21|2023-10-06T20:27:41.2580000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A722003|827F0000|104|18638000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|79920|90128|10000|10000|||100.45|99.44|0.00|-3.12|0001B002|0|1| +21|2023-10-06T20:27:41.2580000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|66288|73085|5050|10000|||99.66|101.30|0.00|3.13|0001B003|0|1| +38|2023-10-06T20:27:41.2580000-07:00|10FF0002|Suchichi Suchi|005A5A16|79920|90128|10000|10000|17||100.45|99.44|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:41.2580000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:27:41.2580000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:41.2580000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:41.3450000-07:00|40022550|Zeromus|0001AFFB|14268240||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:40.8400000-07:00|Add|40022BE1||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:40.8400000-07:00|40022BE1|Topaz Titan|00|5A|10FF0008|00||10264|13507|72376|75851|10000|10000|||101.33|101.79|0.00|3.12| +26|2023-10-06T20:27:41.3900000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +21|2023-10-06T20:27:41.3900000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|752003|1B240000|104|A258000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|14298223|40478540|10000|10000|||100.00|80.10|0.00|0.00|58428|80739|5900|10000|||99.58|100.33|0.00|3.00|0001B004|0|1| +261|2023-10-06T20:27:40.9540000-07:00|Change|40022BE1||||| +37|2023-10-06T20:27:41.4800000-07:00|40022550|Zeromus|0001AFFC|14247000||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:41.4800000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|C49D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14268240|40478540|10000|10000|||100.00|80.10|0.00|0.00|126850|128564|10000|10000|||99.84|97.85|-0.01|-0.08|0001B005|0|1| +38|2023-10-06T20:27:41.4800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126850|128564|10000|10000|5||99.84|97.85|-0.01|-0.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:41.4800000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:41.4800000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:27:41.0760000-07:00|Change|10FF0006||| +24|2023-10-06T20:27:41.6140000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1622|126850|128564|10000|10000|||99.84|97.86|0.00|3.13|10FF0006|Wowobora Gogobora|0|65939|80739|4795|10000|||99.02|100.14|0.00|3.09| +37|2023-10-06T20:27:41.6140000-07:00|40022550|Zeromus|0001AFFF|14219669||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:41.6140000-07:00|40022550|Zeromus|0001AFFE|14210810||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:41.6140000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|750003|63EF0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|14247000|40478540|10000|10000|||100.00|80.10|0.00|0.00|66288|73085|5050|10000|||99.66|101.30|0.00|3.13|0001B006|0|1| +21|2023-10-06T20:27:41.6140000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|712003|7AFF0000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|14247000|40478540|10000|10000|||100.00|80.10|0.00|0.00|79719|90055|10000|10000|||99.20|100.33|0.00|3.10|0001B007|0|1| +38|2023-10-06T20:27:41.6140000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|5||99.84|97.86|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:41.6140000-07:00|10FF0003|Gegehi Gehi|005A5A23|66288|73085|4650|10000|21||99.66|101.30|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:41.6140000-07:00|7B3|Manafication|6.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73085|73085| +38|2023-10-06T20:27:41.6140000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79719|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:41.6140000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:27:41.6140000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:27:41.1730000-07:00|Change|10FF0003||||| +38|2023-10-06T20:27:41.6570000-07:00|10FF0002|Suchichi Suchi|005A5A16|79920|90128|10000|10000|17||100.45|99.44|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:41.7020000-07:00|40022550|Zeromus|0001B001|14210751||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:41.7470000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1E420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14210810|40478540|10000|10000|||100.00|80.10|0.00|0.00|79719|90055|10000|10000|||99.20|100.33|0.00|3.10|0001B008|0|1| +37|2023-10-06T20:27:41.7910000-07:00|40022550|Zeromus|0001B003|14210727||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:41.8810000-07:00|40022550|Zeromus|0001AFFD|14193064||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:41.8810000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14F40000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.84|97.86|0.00|3.13|73956|77430|10000|10000|||97.31|97.52|0.00|2.73|0001B009|0|1| +21|2023-10-06T20:27:41.8810000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|720003|21C40000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|14210727|40478540|10000|10000|||100.00|80.10|0.00|0.00|79920|90128|10000|10000|||100.45|99.44|0.00|-3.12|0001B00A|0|1| +38|2023-10-06T20:27:41.8810000-07:00|10FF0002|Suchichi Suchi|005A5A16|79920|90128|10000|10000|17||100.45|99.44|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:41.8810000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:41.9240000-07:00|40022550|Zeromus|0001B002|14159657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:41.9240000-07:00|10FF0002|Suchichi Suchi|0001B002|86163|90128|10000|10000|17||100.45|99.44|0.00|-3.12|1600|0|0|01|0C000747|0|41F00000|| +38|2023-10-06T20:27:41.9240000-07:00|10FF0002|Suchichi Suchi|005A5A16|86163|90128|10000|10000|17||100.45|99.44|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:41.9690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79719|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:41.5530000-07:00|Change|10FF0004||||||||| +20|2023-10-06T20:27:42.1470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.66|99.44|0.00|3.12| +261|2023-10-06T20:27:41.7660000-07:00|Change|40022BE1||| +21|2023-10-06T20:27:42.1930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|E310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14159657|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||99.25|98.04|0.00|3.10|0001B00B|0|1| +31|2023-10-06T20:27:42.1930000-07:00|10FF0001||||| +37|2023-10-06T20:27:42.2370000-07:00|40022550|Zeromus|0001B007|14128170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:42.2370000-07:00|10FF0005|Wuwuchu Wuchu|0001B007|79719|90055|10000|10000|23||99.20|100.33|0.00|3.10|2700|0|0|01|0C000A1E|0|41F00000|| +39|2023-10-06T20:27:42.2370000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.84|97.86|0.00|3.13| +38|2023-10-06T20:27:42.2370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79719|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:42.2810000-07:00|40022550|Zeromus|0001B008|14120424||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:42.3710000-07:00|10FF0003|Gegehi Gehi|67018|73085|4850|10000|||99.66|101.30|0.00|3.13| +21|2023-10-06T20:27:42.3710000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|E4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14120424|40478540|10000|10000|||100.00|80.10|0.00|0.00|86163|90128|10000|10000|||100.45|99.44|0.00|-3.12|0001B00C|0|1| +21|2023-10-06T20:27:42.3710000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|716003|4B920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14120424|40478540|10000|10000|||100.00|80.10|0.00|0.00|79719|90055|10000|10000|||99.20|100.33|0.00|3.10|0001B00D|0|1| +37|2023-10-06T20:27:42.4160000-07:00|40022550|Zeromus|0001B004|14113476||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:42.4160000-07:00|10FF0004|Buhojaqe Zijaqe|0001B004|61025||||||99.66|99.44|0.00|3.12| +261|2023-10-06T20:27:42.0000000-07:00|Change|10FF0003||| +39|2023-10-06T20:27:42.4600000-07:00|10FF0002|Suchichi Suchi|87064|90128|10000|10000|||100.45|99.44|0.00|-3.12| +21|2023-10-06T20:27:42.4600000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14113476|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.84|97.86|0.00|3.13|0001B00E|0|1| +21|2023-10-06T20:27:42.4600000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|750003|72650000|200004|3CF88000|0|0|0|0|0|0|0|0|0|0|0|0|14113476|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||99.25|98.04|0.00|3.10|0001B00F|0|1| +38|2023-10-06T20:27:42.4600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|16||99.25|98.04|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:42.4600000-07:00|558|Requiescat|21.98|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:27:42.4600000-07:00|10FF0001||||| +261|2023-10-06T20:27:42.1120000-07:00|Change|10FF0001||| +21|2023-10-06T20:27:42.5490000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|720003|2BEF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14113476|40478540|10000|10000|||100.00|80.10|0.00|0.00|86163|90128|10000|10000|||100.45|99.44|0.00|-3.12|0001B010|0|1| +04|2023-10-06T20:27:42.1120000-07:00|40022B5A|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|0|68265|0|10000|||80.43|84.15|0.00|1.78| +261|2023-10-06T20:27:42.1120000-07:00|Remove|40022B5A| +37|2023-10-06T20:27:42.6370000-07:00|40022550|Zeromus|0001B005|14063143||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:42.6810000-07:00|40022550|Zeromus|0001B00A|14054499||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:42.7260000-07:00|40022550|Zeromus|0001B00B|14050866||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:42.7260000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|712003|1C560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14054499|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.84|97.86|-0.02|3.13|0001B011|0|1| +37|2023-10-06T20:27:42.9050000-07:00|40022550|Zeromus|0001B00C|14047204||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:42.9940000-07:00|40022550|Zeromus|0001B00E|14044234||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:42.9940000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7400|10000|||99.25|98.04|0.00|3.10| +21|2023-10-06T20:27:42.9940000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14047204|40478540|10000|10000|||100.00|80.10|0.00|0.00|58249|79111|7600|10000|||99.73|99.86|0.00|2.62|0001B012|0|1| +261|2023-10-06T20:27:42.4840000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T20:27:43.0380000-07:00|40022550|Zeromus|8B66|Void Bio|40022550|Zeromus|1B|8B668000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14047204|40478540|10000|10000|||100.00|80.10|0.00|0.00|14047204|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B013|0|1| +261|2023-10-06T20:27:42.6000000-07:00|Change|40022550||||||||||||| +37|2023-10-06T20:27:43.0820000-07:00|40022550|Zeromus|0001B00D|14024888||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:43.0820000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31640000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14044234|40478540|10000|10000|||100.00|80.10|0.00|0.00|61025|80739|5900|10000|||99.66|99.44|0.00|3.12|0001B014|0|1| +20|2023-10-06T20:27:43.1270000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|99.20|100.33|0.00|3.10| +261|2023-10-06T20:27:42.6000000-07:00|Change|10FF0005||||||||||||||||||| +261|2023-10-06T20:27:42.7170000-07:00|Change|40022BC4||| +21|2023-10-06T20:27:43.1710000-07:00|40022BE1|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|452003|9B910000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|14024888|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.33|101.79|0.00|3.12|0001B015|0|1| +39|2023-10-06T20:27:43.2160000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|1.58| +24|2023-10-06T20:27:43.2160000-07:00|40022550|Zeromus|DoT|0|2125|14024888|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|79719|90055|10000|10000|||99.20|100.33|0.00|3.10| +38|2023-10-06T20:27:43.2160000-07:00|40022550|Zeromus|005A5A00|14016403|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T20:27:43.2600000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14024888|40478540|10000|10000|||100.00|80.10|0.00|0.00|61025|80739|5500|10000|||99.66|99.44|0.00|3.12|0001B016|0|1| +37|2023-10-06T20:27:43.3480000-07:00|40022550|Zeromus|0001B011|14009149||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:43.3480000-07:00|40022550|Zeromus|0001B010|13997902||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:43.3480000-07:00|40022550|Zeromus|0001B00F|13968617||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:27:43.3930000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.99|99.44|-0.01|-3.12| +37|2023-10-06T20:27:43.4380000-07:00|40022550|Zeromus|0001B006|13943034||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:42.9430000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:27:43.5270000-07:00|40022550|Zeromus|0001B012|13942779||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:43.5270000-07:00|10FF0006|Wowobora Gogobora|66746|80739|5000|10000|||98.99|99.38|0.00|-3.12| +21|2023-10-06T20:27:43.5270000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|452003|57160000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|13943034|40478540|10000|10000|||100.00|80.10|0.00|0.00|58249|79111|7600|10000|||99.84|99.72|-0.02|2.43|0001B017|0|1| +38|2023-10-06T20:27:43.5270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|58249|79111|7300|10000|26||99.84|99.72|-0.02|2.43|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:43.5270000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:27:43.0530000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:27:43.0530000-07:00|Change|10FF0001||| +261|2023-10-06T20:27:43.1500000-07:00|Change|10FF0006||||||||||||| +21|2023-10-06T20:27:43.7060000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|752003|1BFA0000|104|A758000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|13942779|40478540|10000|10000|||100.00|80.10|0.00|0.00|61025|80739|5500|10000|||99.66|99.44|0.00|3.12|0001B018|0|1| +38|2023-10-06T20:27:43.7060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|61025|80739|5500|10000|25||99.66|99.44|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:43.7060000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +21|2023-10-06T20:27:43.7520000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|3E060000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|13942779|40478540|10000|10000|||100.00|80.10|0.00|0.00|87064|90128|10000|10000|||100.45|99.44|-0.02|-3.12|0001B019|0|1| +38|2023-10-06T20:27:43.7520000-07:00|10FF0002|Suchichi Suchi|005A5A16|87064|90128|10000|10000|17||100.45|99.44|-0.02|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:43.7520000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:43.7950000-07:00|40022550|Zeromus|0001B016|13942618||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:43.8860000-07:00|40022550|Zeromus|0001B014|13929974||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:43.8860000-07:00|10FF0005|Wuwuchu Wuchu|80619|90055|10000|10000|||99.20|100.33|0.00|3.10| +21|2023-10-06T20:27:43.8860000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|754003|C7380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13942618|40478540|10000|10000|||100.00|80.10|0.00|0.00|79719|90055|10000|10000|||99.20|100.33|0.00|3.10|0001B01A|0|1| +38|2023-10-06T20:27:43.8860000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|80619|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:43.8860000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:27:43.8860000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:27:43.4460000-07:00|Change|10FF0005||||||||||||| +21|2023-10-06T20:27:43.9300000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|91D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13942618|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.02|98.22|0.00|-1.52|0001B01B|0|1| +38|2023-10-06T20:27:43.9300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|5||100.02|98.22|0.00|-1.52|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:43.9300000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:27:43.9300000-07:00|499|Inner Release|9.03|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +261|2023-10-06T20:27:43.5400000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T20:27:44.0200000-07:00|10FF0008|Kokosaze Lulusaze|59040|79111|7500|10000|||99.84|99.72|0.00|3.13| +21|2023-10-06T20:27:44.0650000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|754003|8CA70000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|13929974|40478540|10000|10000|||100.00|80.10|0.00|0.00|67018|73085|4850|10000|||99.66|101.30|0.00|3.13|0001B01C|0|1| +38|2023-10-06T20:27:44.0650000-07:00|10FF0003|Gegehi Gehi|005A5A23|67018|73085|4450|10000|21||99.66|101.30|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:44.0650000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73085|73085| +37|2023-10-06T20:27:44.1540000-07:00|40022550|Zeromus|0001B017|13907680||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:44.1540000-07:00|10FF0008|Kokosaze Lulusaze|0001B017|59040|79111|7500|10000|26||99.84|99.72|0.00|3.13|1B00|0|0|01|05000B25|0|0|| +39|2023-10-06T20:27:44.1540000-07:00|10FF0004|Buhojaqe Zijaqe|61832|80739|5700|10000|||99.66|99.44|0.00|3.12| +21|2023-10-06T20:27:44.1540000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|1F090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13929974|40478540|10000|10000|||100.00|80.10|0.00|0.00|58249|79111|7300|10000|||99.84|99.72|0.00|3.13|0001B01D|0|1| +38|2023-10-06T20:27:44.1540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|59040|79111|7500|10000|26||99.84|99.72|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:44.1540000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:27:43.6330000-07:00|Change|10FF0003||| +261|2023-10-06T20:27:43.6330000-07:00|Add|40022BE6||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:43.6330000-07:00|40022BE6|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||82.00|80.30|0.00|0.00| +261|2023-10-06T20:27:43.7430000-07:00|Change|10FF0008||| +261|2023-10-06T20:27:43.7430000-07:00|Change|40022BE6||| +21|2023-10-06T20:27:44.2000000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|20E20000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.16|98.52|-0.01|-3.13|13907680|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B01E|0|1| +21|2023-10-06T20:27:44.3340000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5BCD0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|13907680|40478540|10000|10000|||100.00|80.10|0.00|0.00|66746|80739|5000|10000|||98.99|99.38|0.00|3.09|0001B01F|0|1| +37|2023-10-06T20:27:44.3770000-07:00|40022550|Zeromus|0001B019|13891802||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:44.3770000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|48420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13907680|40478540|10000|10000|||100.00|80.10|0.00|0.00|87064|90128|10000|10000|||100.51|99.44|-0.01|-3.12|0001B020|0|1| +21|2023-10-06T20:27:44.4660000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13891802|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||99.25|98.04|0.00|3.10|0001B021|0|1| +31|2023-10-06T20:27:44.4660000-07:00|10FF0001||||| +37|2023-10-06T20:27:44.5110000-07:00|40022550|Zeromus|0001B01A|13840802||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:44.1770000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:27:44.5550000-07:00|40022550|Zeromus|0001B01B|13803471||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:44.5560000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|D7640E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|13840802|40478540|10000|10000|||100.00|80.10|0.00|0.00|61832|80739|5700|10000|||99.66|99.44|0.00|3.12|0001B022|0|1| +261|2023-10-06T20:27:44.1770000-07:00|Add|40022BE7||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:44.1770000-07:00|Add|40022BE9||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:44.1770000-07:00|40022BE9|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||90.00|80.30|0.00|0.00| +03|2023-10-06T20:27:44.1770000-07:00|40022BE7|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||86.00|80.30|0.00|0.00| +261|2023-10-06T20:27:44.2760000-07:00|Change|40022BE9||| +261|2023-10-06T20:27:44.2760000-07:00|Change|40022BE7||| +37|2023-10-06T20:27:44.7330000-07:00|40022550|Zeromus|0001B018|13796309||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:44.7330000-07:00|10FF0004|Buhojaqe Zijaqe|0001B018|64509||||||99.66|99.44|0.00|3.12| +21|2023-10-06T20:27:44.7330000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13803471|40478540|10000|10000|||100.00|80.10|0.00|0.00|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B023|0|1| +22|2023-10-06T20:27:44.8670000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B024|0|8| +22|2023-10-06T20:27:44.8670000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0005|Wuwuchu Wuchu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80619|90055|10000|10000|||99.20|100.33|0.00|3.10|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B024|1|8| +22|2023-10-06T20:27:44.8670000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0002|Suchichi Suchi|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|87064|90128|10000|10000|||100.23|99.68|0.00|-3.13|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B024|2|8| +22|2023-10-06T20:27:44.8670000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59040|79111|7500|10000|||99.84|99.72|0.00|3.13|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B024|3|8| +22|2023-10-06T20:27:44.8670000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61832|80739|5300|10000|||99.66|99.44|0.00|3.12|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B024|4|8| +22|2023-10-06T20:27:44.8670000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|66746|80739|4600|10000|||98.99|99.38|0.00|3.09|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B024|5|8| +22|2023-10-06T20:27:44.8670000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.18|98.56|0.00|-3.13|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B024|6|8| +22|2023-10-06T20:27:44.8670000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7400|10000|||99.25|98.04|0.00|3.10|67018|73085|4450|10000|||99.66|101.30|0.00|3.13|0001B024|7|8| +37|2023-10-06T20:27:44.9130000-07:00|40022550|Zeromus|0001B01D|13788364||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:44.9130000-07:00|40022550|Zeromus|005A5A00|13788364|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:44.9130000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:27:44.9570000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13796309|40478540|10000|10000|||100.00|80.10|0.00|0.00|66746|80739|4600|10000|||98.99|99.38|0.00|3.09|0001B025|0|1| +21|2023-10-06T20:27:44.9570000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|750003|7F710000|4|25E78000|0|0|0|0|0|0|0|0|0|0|0|0|13796309|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||99.25|98.04|0.00|3.10|0001B026|0|1| +38|2023-10-06T20:27:44.9570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|16||99.25|98.04|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:44.9570000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:27:44.9570000-07:00|10FF0001||||| +261|2023-10-06T20:27:44.4640000-07:00|Add|40022BEC||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:44.4640000-07:00|40022BEC|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||98.00|80.30|0.00|0.00| +261|2023-10-06T20:27:44.4640000-07:00|Change|10FF0001||| +261|2023-10-06T20:27:44.4640000-07:00|Change|40022BEC||| +261|2023-10-06T20:27:44.4640000-07:00|Add|40022BEA||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:44.4640000-07:00|Remove|40022BC4| +03|2023-10-06T20:27:44.4640000-07:00|40022BEA|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||94.00|80.30|0.00|0.00| +37|2023-10-06T20:27:45.0010000-07:00|10FF0007|Kehabiqo Febiqo|0001B01E|120146|128564|10000|10000|0||100.18|98.56|0.00|-3.13|1500|0|0|01|0A000000|0|0|| +24|2023-10-06T20:27:45.0010000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|21F8|120146|128564|10000|10000|||100.18|98.56|0.00|-3.13|10FF0006|Wowobora Gogobora|1|66746|80739|4600|10000|||98.99|99.38|0.00|3.09| +37|2023-10-06T20:27:45.0010000-07:00|40022550|Zeromus|0001B01F|13764863||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:45.0010000-07:00|40022550|Zeromus|0001B021|13762610||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:45.0020000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|724003|4B310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13762610|40478540|10000|10000|||100.00|80.10|0.00|0.00|87064|90128|10000|10000|||100.12|99.77|0.00|-3.14|0001B027|0|1| +38|2023-10-06T20:27:45.0020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||100.18|98.56|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:45.0020000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:27:45.0020000-07:00|10FF0002|Suchichi Suchi|005A5A16|87064|90128|10000|10000|17||100.12|99.77|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:45.0020000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:44.5750000-07:00|Change|40022BEC||| +261|2023-10-06T20:27:44.5750000-07:00|Change|40022BEA||| +261|2023-10-06T20:27:44.5750000-07:00|Change|10FF0004||| +37|2023-10-06T20:27:45.1350000-07:00|40022550|Zeromus|0001B015|13722785||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:45.1350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|16||99.25|98.04|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:45.1350000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|127791|90128| +37|2023-10-06T20:27:45.1790000-07:00|40022550|Zeromus|0001B022|13722785|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:27:45.1790000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:27:45.1790000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|12C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13762610|40478540|10000|10000|||100.00|80.10|0.00|0.00|87064|90128|10000|10000|||100.11|99.78|0.00|-3.14|0001B028|0|1| +39|2023-10-06T20:27:45.2240000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||100.18|98.56|0.00|-3.13| +37|2023-10-06T20:27:45.2690000-07:00|40022550|Zeromus|0001B023|13722761||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:45.2690000-07:00|10FF0006|Wowobora Gogobora|005A5A28|66746|80739|4600|10000|24||98.99|99.38|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:27:45.2690000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:45.2690000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|80739|90128| +39|2023-10-06T20:27:45.3580000-07:00|10FF0003|Gegehi Gehi|67748|73085|4650|10000|||99.66|101.30|0.00|3.13| +261|2023-10-06T20:27:44.9220000-07:00|Change|10FF0003||| +261|2023-10-06T20:27:44.9220000-07:00|Add|40022BED||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:44.9220000-07:00|40022BED|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||102.00|80.30|0.00|0.00| +261|2023-10-06T20:27:44.9220000-07:00|Change|40022BED||| +38|2023-10-06T20:27:45.4020000-07:00|10FF0003|Gegehi Gehi|005A5A23|67748|73085|4650|10000|21||99.66|101.30|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:45.4020000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0003|Gegehi Gehi|00|73085|90128| +39|2023-10-06T20:27:45.4470000-07:00|10FF0002|Suchichi Suchi|87965|90128|10000|10000|||100.11|99.77|0.00|-3.13| +37|2023-10-06T20:27:45.4930000-07:00|40022550|Zeromus|0001B025|13722721||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:45.5360000-07:00|10FF0003|Gegehi Gehi|0001B024|67748|73085|4650|10000|21||99.66|101.30|0.00|3.13|2300|0|0|01|040004D7|0|41A00000|| +26|2023-10-06T20:27:45.5360000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:27:45.5360000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|152D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|59040|79111|7500|10000|||99.84|99.72|0.00|3.13|73956|77430|10000|10000|||97.31|97.52|0.00|2.32|0001B029|0|1| +38|2023-10-06T20:27:45.5360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|80619|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:45.5360000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:27:45.5820000-07:00|40022550|Zeromus|0001B020|13704223||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:45.6270000-07:00|40022550|Zeromus|0001B01C|13668216||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:45.6270000-07:00|10FF0005|Wuwuchu Wuchu|5F41|Plentiful Harvest|40022550|Zeromus|710003|8F850000|323E|1018000|0|0|0|0|0|0|0|0|0|0|0|0|13722721|40478540|10000|10000|||100.00|80.10|0.00|0.00|80619|90055|10000|10000|||99.20|100.33|0.00|3.10|0001B02A|0|1| +38|2023-10-06T20:27:45.6270000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|80619|90055|10000|10000|23||99.20|100.33|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:45.6270000-07:00|A20|Immortal Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|08|90055|90055| +37|2023-10-06T20:27:45.6700000-07:00|10FF0005|Wuwuchu Wuchu|0001B024|80619|90055|10000|10000|23||99.20|100.33|0.00|3.10|2701|0|0|01|06000511|0|41A00000|| +26|2023-10-06T20:27:45.6700000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|90055|73085| +38|2023-10-06T20:27:45.6700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||100.18|98.56|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:45.6700000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|128564|90128| +37|2023-10-06T20:27:45.7150000-07:00|40022550|Zeromus|0001B028|13663411||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:45.7590000-07:00|40022550|Zeromus|0001B027|13644162||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:45.7600000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|18800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13644162|40478540|10000|10000|||100.00|80.10|0.00|0.00|80619|90055|10000|10000|||99.20|100.33|0.00|3.10|0001B02B|0|1| +03|2023-10-06T20:27:45.3480000-07:00|40022BEF|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||106.00|80.30|0.00|0.00| +03|2023-10-06T20:27:45.3480000-07:00|40022BF1|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||110.00|80.30|0.00|0.00| +261|2023-10-06T20:27:45.3480000-07:00|Add|40022BEF||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:45.3480000-07:00|Add|40022BF1||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:45.8040000-07:00|10FF0002|Suchichi Suchi|0001B024|87965|90128|10000|10000|17||100.07|99.71|0.00|-3.12|1602|0|0|01|02000511|0|41A00000|| +26|2023-10-06T20:27:45.8040000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|90128|73085| +20|2023-10-06T20:27:45.8040000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.99|99.38|0.00|3.09| +38|2023-10-06T20:27:45.8040000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|1.69|0|0|0|||||||||| +26|2023-10-06T20:27:45.8040000-07:00|30|Well Fed|1351.48|10FF0004|Buhojaqe Zijaqe|40022B84|Ruby Carbuncle|2968|77430|80739| +26|2023-10-06T20:27:45.8040000-07:00|A27|Arcane Circle|5.16|10FF0005|Wuwuchu Wuchu|40022B84|Ruby Carbuncle|00|77430|90055| +38|2023-10-06T20:27:45.8040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64509|80739|5300|10000|25||99.66|99.44|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:45.8040000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|80739|90128| +261|2023-10-06T20:27:45.3480000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T20:27:45.3480000-07:00|Change|40022BEF||| +261|2023-10-06T20:27:45.3480000-07:00|Change|40022BF1||| +37|2023-10-06T20:27:45.8480000-07:00|40022550|Zeromus|0001B026|13611537||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:45.8480000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13644162|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.18|98.56|0.00|-3.13|0001B02C|0|1| +37|2023-10-06T20:27:45.9370000-07:00|10FF0008|Kokosaze Lulusaze|0001B024|59040|79111|7500|10000|26||99.84|99.72|0.00|3.13|1B03|0|0|01|05000511|0|41A00000|| +26|2023-10-06T20:27:45.9370000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|79111|73085| +38|2023-10-06T20:27:45.9370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|59040|79111|7500|10000|26||99.84|99.72|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:45.9370000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|79111|90128| +38|2023-10-06T20:27:45.9370000-07:00|40022BE1|Topaz Titan|005A5A00|0|75851|10000|10000|0||101.33|101.79|0.00|3.12|0|0|0|||||||||||||||| +26|2023-10-06T20:27:45.9370000-07:00|30|Well Fed|1993.52|10FF0008|Kokosaze Lulusaze|40022BE1|Topaz Titan|2964|75851|79111| +26|2023-10-06T20:27:45.9370000-07:00|A27|Arcane Circle|4.89|10FF0005|Wuwuchu Wuchu|40022BE1|Topaz Titan|00|75851|90055| +26|2023-10-06T20:27:45.9370000-07:00|A8F|Searing Light|11.95|10FF0008|Kokosaze Lulusaze|40022BE1|Topaz Titan|00|75851|79111| +26|2023-10-06T20:27:45.9370000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40022BE1|Topaz Titan|00|75851|73085| +21|2023-10-06T20:27:45.9820000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|3B250000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|13611537|40478540|10000|10000|||100.00|80.10|0.00|0.00|59040|79111|7500|10000|||99.84|99.72|0.00|3.13|0001B02D|0|1| +38|2023-10-06T20:27:45.9820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|59040|79111|7200|10000|26||99.84|99.72|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:45.9820000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:27:45.6400000-07:00|Change|10FF0008||| +39|2023-10-06T20:27:46.0270000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6600|10000|||99.25|98.04|0.00|3.10| +37|2023-10-06T20:27:46.0710000-07:00|10FF0004|Buhojaqe Zijaqe|0001B024|64509|80739|5300|10000|25||99.69|99.42|0.00|2.51|1C04|0|0|01|04000511|0|41A00000|| +26|2023-10-06T20:27:46.0710000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|80739|73085| +38|2023-10-06T20:27:46.0710000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|0.97|0|0|0|||||||||| +26|2023-10-06T20:27:46.0710000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40022B84|Ruby Carbuncle|00|77430|73085| +21|2023-10-06T20:27:46.1150000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13611537|40478540|10000|10000|||100.00|80.10|0.00|0.00|59040|79111|7500|10000|||99.84|99.72|0.00|3.13|0001B02E|0|1| +261|2023-10-06T20:27:45.6400000-07:00|Change|10FF0001||| +261|2023-10-06T20:27:45.8780000-07:00|Add|40022BF3||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:27:46.2050000-07:00|10FF0006|Wowobora Gogobora|0001B024|66746|80739|4600|10000|24||98.99|99.38|0.00|3.09|2805|0|0|01|01000511|0|41A00000|| +26|2023-10-06T20:27:46.2050000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|80739|73085| +39|2023-10-06T20:27:46.2050000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|0.86| +24|2023-10-06T20:27:46.2050000-07:00|40022550|Zeromus|DoT|0|294C|13611537|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|80619|90055|10000|10000|||99.20|100.36|-0.02|3.10| +38|2023-10-06T20:27:46.2050000-07:00|40022550|Zeromus|005A5A00|13600965|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T20:27:46.2490000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|2CA90000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|13611537|40478540|10000|10000|||100.00|80.10|0.00|0.00|87965|90128|10000|10000|||100.05|99.69|0.00|-3.12|0001B02F|0|1| +38|2023-10-06T20:27:46.2490000-07:00|10FF0002|Suchichi Suchi|005A5A16|87965|90128|10000|10000|17||100.05|99.69|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:46.2490000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:46.2940000-07:00|40022550|Zeromus|0001B02B|13594693||||||100.00|80.10|0.00|0.00| +03|2023-10-06T20:27:45.8780000-07:00|40022BF3|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||114.00|80.30|0.00|0.00| +261|2023-10-06T20:27:45.8780000-07:00|Change|40022BED||| +261|2023-10-06T20:27:45.8780000-07:00|Change|40022BF3||| +261|2023-10-06T20:27:45.8780000-07:00|Change|40022BE7||||||||| +261|2023-10-06T20:27:45.8780000-07:00|Change|40022BF3||| +37|2023-10-06T20:27:46.3380000-07:00|10FF0008|Kokosaze Lulusaze|0001B029|64461||||||99.84|99.72|0.00|3.13| +37|2023-10-06T20:27:46.3380000-07:00|10FF0007|Kehabiqo Febiqo|0001B024|128564|128564|10000|10000|0||100.18|98.56|0.00|-3.13|1506|0|0|01|06000511|0|41A00000|| +26|2023-10-06T20:27:46.3380000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|128564|73085| +37|2023-10-06T20:27:46.3830000-07:00|40022550|Zeromus|0001B02C|13591744||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:46.3830000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|8E790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13594693|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.18|98.56|0.00|-3.13|0001B030|0|1| +21|2023-10-06T20:27:46.3830000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13594693|40478540|10000|10000|||100.00|80.10|0.00|0.00|64509|80739|5300|10000|||99.73|99.38|0.00|1.87|0001B031|0|1| +38|2023-10-06T20:27:46.3830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||100.18|98.56|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:46.3830000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:46.3830000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +37|2023-10-06T20:27:46.4700000-07:00|10FF0001|Sesuga Sapisuga|0001B024|127791|127791|6600|10000|16||99.25|98.04|0.00|3.10|1307|0|0|01|08000511|0|41A00000|| +26|2023-10-06T20:27:46.4700000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|127791|73085| +261|2023-10-06T20:27:45.9880000-07:00|Change|40022BE9||||||||| +261|2023-10-06T20:27:45.9880000-07:00|Change|40022BEF||||||||| +39|2023-10-06T20:27:46.5160000-07:00|10FF0006|Wowobora Gogobora|67553|80739|4805|10000|||98.99|99.38|0.00|3.09| +03|2023-10-06T20:27:46.1120000-07:00|40022BF4|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|80.30|0.00|-0.72| +261|2023-10-06T20:27:46.1120000-07:00|Add|40022BF4||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:46.2040000-07:00|Change|40022BF4||| +37|2023-10-06T20:27:46.6040000-07:00|40022550|Zeromus|0001B02D|13576603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:46.6040000-07:00|10FF0008|Kokosaze Lulusaze|0001B02D|64461|79111|7200|10000|26||99.84|99.72|0.00|3.13|1B00|0|0|01|07000B25|0|0|| +38|2023-10-06T20:27:46.6040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|64461|79111|7200|10000|26||99.84|99.72|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:27:46.6490000-07:00|40022550|Zeromus|0001B02E|13576412||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:46.6490000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|1B560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13591744|40478540|10000|10000|||100.00|80.10|0.00|0.00|64461|79111|7200|10000|||99.84|99.72|0.00|3.13|0001B032|0|1| +38|2023-10-06T20:27:46.6490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|64461|79111|7200|10000|26||99.84|99.72|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:46.6490000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:27:46.6940000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|80619|90055|10000|10000|23||98.79|100.80|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:46.6940000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:27:46.2040000-07:00|Change|40022BEA||||||||| +261|2023-10-06T20:27:46.2950000-07:00|Change|40022BF1||||||||| +21|2023-10-06T20:27:46.7380000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|65E50000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|13576412|40478540|10000|10000|||100.00|80.10|0.00|0.00|67553|80739|4805|10000|||98.99|99.38|0.00|3.09|0001B033|0|1| +21|2023-10-06T20:27:46.7380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|9600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13576412|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||99.25|98.04|0.00|3.10|0001B034|0|1| +31|2023-10-06T20:27:46.7380000-07:00|10FF0001||||| +37|2023-10-06T20:27:46.7820000-07:00|40022550|Zeromus|0001B02A|13539671||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:46.3970000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:27:46.8720000-07:00|10FF0005|Wuwuchu Wuchu|81519|90055|10000|10000|||98.54|100.84|0.00|3.03| +21|2023-10-06T20:27:46.8720000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|39B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13539671|40478540|10000|10000|||100.00|80.10|0.00|0.00|67748|73085|4650|10000|||99.66|101.30|0.00|3.13|0001B035|0|1| +37|2023-10-06T20:27:46.9160000-07:00|40022550|Zeromus|0001B031|13539512||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:46.4960000-07:00|Change|40022BF3||||||||| +20|2023-10-06T20:27:46.9610000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.75|99.38|-0.02|1.49| +261|2023-10-06T20:27:46.4960000-07:00|Change|40022BEC||||||||| +261|2023-10-06T20:27:46.4960000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:27:46.4960000-07:00|Change|40022BE6||||||||| +37|2023-10-06T20:27:47.0500000-07:00|40022550|Zeromus|0001B030|13503039||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:47.0500000-07:00|10FF0008|Kokosaze Lulusaze|65252|79111|7400|10000|||99.84|99.72|0.00|3.13| +21|2023-10-06T20:27:47.0500000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.18|98.56|0.00|-3.13|128564|128564|10000|10000|||100.18|98.56|0.00|-3.13|0001B036|0|1| +38|2023-10-06T20:27:47.0500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||100.18|98.56|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:47.0500000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:27:46.4960000-07:00|Change|10FF0008||| +39|2023-10-06T20:27:47.1380000-07:00|10FF0004|Buhojaqe Zijaqe|65316|80739|5500|10000|||99.75|99.38|0.00|1.73| +38|2023-10-06T20:27:47.1830000-07:00|40022BE1|Topaz Titan|005A5A00|0|75851|0|10000|0||101.33|101.79|0.00|3.12|0|0|0|||| +30|2023-10-06T20:27:47.1830000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022BE1|Topaz Titan|00|75851|90055| +30|2023-10-06T20:27:47.1830000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022BE1|Topaz Titan|00|75851|79111| +30|2023-10-06T20:27:47.1830000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022BE1|Topaz Titan|00|75851|73085| +261|2023-10-06T20:27:46.7310000-07:00|Change|40022BE1||||| +261|2023-10-06T20:27:46.7310000-07:00|Change|10FF0004||||||||||||| +38|2023-10-06T20:27:47.2280000-07:00|40022BF6||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +21|2023-10-06T20:27:47.2280000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40BF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.18|98.56|0.00|-3.13|13503039|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B037|0|1| +38|2023-10-06T20:27:47.2280000-07:00|40022BF6||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +37|2023-10-06T20:27:47.2720000-07:00|40022550|Zeromus|0001B034|13500639||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:46.8450000-07:00|Add|40022BF6||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:46.8450000-07:00|40022BF6|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||99.86|97.98|0.00|-0.01| +261|2023-10-06T20:27:46.9600000-07:00|Change|40022BF6||| +37|2023-10-06T20:27:47.4050000-07:00|40022550|Zeromus|0001B032|13493641||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:47.4050000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|156B|128564|128564|10000|10000|||100.18|98.56|0.00|-3.13|10FF0006|Wowobora Gogobora|0|67553|80739|4405|10000|||98.99|99.38|0.00|3.09| +37|2023-10-06T20:27:47.4050000-07:00|40022550|Zeromus|0001B033|13467556||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:47.4050000-07:00|10FF0006|Wowobora Gogobora|5EE8|Druochole|10FF0006|Wowobora Gogobora|4|4CB10000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|67553|80739|4405|10000|||98.99|99.38|0.00|3.09|67553|80739|4405|10000|||98.99|99.38|0.00|3.09|0001B038|0|1| +38|2023-10-06T20:27:47.4050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||100.18|98.56|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:27:47.4490000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|36C20000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|13467556|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||99.25|98.04|0.00|3.10|0001B039|0|1| +38|2023-10-06T20:27:47.4490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6600|10000|16||99.25|98.04|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:47.4490000-07:00|76E|Sword Oath|10.39|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +261|2023-10-06T20:27:47.0720000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:27:47.5830000-07:00|10FF0007|Kehabiqo Febiqo|0001B036|128564|128564|10000|10000|0||100.18|98.56|0.00|-3.13|1500|0|0|01|04000769|0|41F00000|| +38|2023-10-06T20:27:47.5830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||100.18|98.56|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:47.5830000-07:00|10FF0002|Suchichi Suchi|005A5A16|87965|90128|10000|10000|17||100.05|99.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:47.5830000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:27:47.6280000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|752003|457A0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|13467556|40478540|10000|10000|||100.00|80.10|0.00|0.00|67748|73085|4650|10000|||99.66|101.30|0.00|3.13|0001B03A|0|1| +38|2023-10-06T20:27:47.6280000-07:00|10FF0002|Suchichi Suchi|005A5A16|87965|90128|10000|10000|17||100.05|99.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:47.2650000-07:00|Change|40022BF1||||| +261|2023-10-06T20:27:47.2650000-07:00|Change|40022BEA||||| +37|2023-10-06T20:27:47.8940000-07:00|40022550|Zeromus|0001B02F|13456123||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:47.8940000-07:00|10FF0002|Suchichi Suchi|0001B02F|87965|90128|10000|10000|17||100.05|99.69|0.00|-3.14|1600|0|0|01|04000AA0|0|41F00000|| +21|2023-10-06T20:27:47.8940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|557F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13467556|40478540|10000|10000|||100.00|80.10|0.00|0.00|65316|80739|5500|10000|||99.75|99.38|0.00|3.13|0001B03B|0|1| +38|2023-10-06T20:27:47.8940000-07:00|10FF0002|Suchichi Suchi|005A5A16|87965|90128|10000|10000|17||100.05|99.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:47.4570000-07:00|Change|40022BF3||||| +21|2023-10-06T20:27:47.9830000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|DE60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13456123|40478540|10000|10000|||100.00|80.10|0.00|0.00|87965|90128|10000|10000|||100.05|99.69|0.00|-3.14|0001B03C|0|1| +261|2023-10-06T20:27:47.4570000-07:00|Change|40022BEC||||| +37|2023-10-06T20:27:48.0270000-07:00|10FF0007|Kehabiqo Febiqo|0001B037|111989||||||100.18|98.56|0.00|-3.13| +37|2023-10-06T20:27:48.0270000-07:00|40022550|Zeromus|0001B035|13441350||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:48.1620000-07:00|10FF0006|Wowobora Gogobora|0001B038|80739|80739|5105|10000|24||98.99|99.38|0.00|3.09|2800|0|0|0| +21|2023-10-06T20:27:48.1620000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|712003|74B90000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|13456123|40478540|10000|10000|||100.00|80.10|0.00|0.00|81519|90055|10000|10000|||98.34|100.88|0.00|2.99|0001B03D|0|1| +38|2023-10-06T20:27:48.1620000-07:00|40022550|Zeromus|005A5A00|13441350|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:48.1620000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +261|2023-10-06T20:27:47.6440000-07:00|Change|40022BE6||||| +261|2023-10-06T20:27:47.7550000-07:00|Change|10FF0006||| +21|2023-10-06T20:27:48.2070000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13441350|40478540|10000|10000|||100.00|80.10|0.00|0.00|67748|73085|4650|10000|||99.66|101.30|0.00|3.13|0001B03E|0|1| +38|2023-10-06T20:27:48.2070000-07:00|10FF0002|Suchichi Suchi|005A5A16|87965|90128|10000|10000|17||100.05|99.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:48.2070000-07:00|776|Right Eye|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:27:48.2070000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|81519|90055|10000|10000|23||98.34|100.88|0.00|3.05|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:47.8680000-07:00|Change|40022BE7||||||| +30|2023-10-06T20:27:48.2070000-07:00|5AE|Left Eye|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +261|2023-10-06T20:27:47.8680000-07:00|Change|40022BED||||||||| +261|2023-10-06T20:27:47.8680000-07:00|Change|40022BF4||||||||| +37|2023-10-06T20:27:48.2510000-07:00|40022550|Zeromus|0001B03A|13423564||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:48.2510000-07:00|10FF0007|Kehabiqo Febiqo|113274|128564|10000|10000|||100.18|98.56|0.00|-3.13| +34|2023-10-06T20:27:48.2510000-07:00|40022BF6|Carbuncle|40022BF6|Carbuncle|01| +38|2023-10-06T20:27:48.3410000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5105|10000|24||98.99|99.38|0.00|3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:48.3410000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:27:48.3410000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:27:48.3410000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5105|10000|||98.99|99.38|0.00|3.09|80739|80739|5105|10000|||98.99|99.38|0.00|3.09|0001B03F|0|1| +261|2023-10-06T20:27:47.8680000-07:00|Change|40022BF6||| +39|2023-10-06T20:27:48.3840000-07:00|10FF0003|Gegehi Gehi|68478|73085|4850|10000|||99.66|101.30|0.00|3.13| +261|2023-10-06T20:27:47.9860000-07:00|Change|10FF0003||| +39|2023-10-06T20:27:48.4750000-07:00|10FF0002|Suchichi Suchi|88866|90128|10000|10000|||100.05|99.69|0.00|-3.14| +21|2023-10-06T20:27:48.4750000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|456003|7AD50000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|13423564|40478540|10000|10000|||100.00|80.10|0.00|0.00|65252|79111|7400|10000|||99.81|99.23|0.00|-3.08|0001B040|0|1| +38|2023-10-06T20:27:48.4750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|65252|79111|7100|10000|26||99.81|99.23|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:48.4750000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:27:47.9860000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:27:47.9860000-07:00|Change|40022BEF||||| +37|2023-10-06T20:27:48.5180000-07:00|40022550|Zeromus|0001B03C|13420006||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:48.5180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|65252|79111|7100|10000|26||99.81|99.23|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:27:48.0980000-07:00|Change|40022BE9||||| +261|2023-10-06T20:27:48.0980000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:27:48.6970000-07:00|40022550|Zeromus|0001B03B|13398119||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:48.7410000-07:00|40022550|Zeromus|0001B039|13384101||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:48.7410000-07:00|10FF0001|Sesuga Sapisuga|0001B039|127791|127791|7000|10000|16||99.25|98.04|0.00|3.10|1300|0|0|0| +37|2023-10-06T20:27:48.7410000-07:00|40022550|Zeromus|0001B03E|13384077||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:48.2870000-07:00|Change|10FF0001||| +21|2023-10-06T20:27:48.7420000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42724003|362B0000|7BCE0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|13420006|40478540|10000|10000|||100.00|80.10|0.00|0.00|88866|90128|10000|10000|||100.05|99.69|0.00|-3.14|0001B041|0|1| +21|2023-10-06T20:27:48.7420000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13420006|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5105|10000|||98.99|99.38|0.00|3.09|0001B042|0|1| +38|2023-10-06T20:27:48.7420000-07:00|10FF0002|Suchichi Suchi|005A5A16|88866|90128|10000|10000|17||100.05|99.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:48.7420000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:27:48.2870000-07:00|Change|40022BF1||||| +261|2023-10-06T20:27:48.2870000-07:00|Change|40022BEA||||| +21|2023-10-06T20:27:48.8320000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|AD740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13384077|40478540|10000|10000|||100.00|80.10|0.00|0.00|113274|128564|10000|10000|||100.18|98.56|0.00|-3.13|0001B043|0|1| +38|2023-10-06T20:27:48.8320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113274|128564|10000|10000|0||100.18|98.56|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:48.8320000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:27:48.8320000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +21|2023-10-06T20:27:48.9650000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|E910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13384077|40478540|10000|10000|||100.00|80.10|0.00|0.00|81519|90055|10000|10000|||98.83|100.20|-0.02|3.05|0001B044|0|1| +261|2023-10-06T20:27:48.4840000-07:00|Change|40022BF3||||||| +39|2023-10-06T20:27:49.0080000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7200|10000|||99.25|98.04|0.00|3.10| +21|2023-10-06T20:27:49.0080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|9360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13384077|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7000|10000|||99.25|98.04|0.00|3.10|0001B045|0|1| +31|2023-10-06T20:27:49.0080000-07:00|10FF0001||||| +261|2023-10-06T20:27:48.4840000-07:00|Change|40022BEC||||| +261|2023-10-06T20:27:48.5940000-07:00|Change|40022BE6||||| +21|2023-10-06T20:27:49.0970000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|157D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|113274|128564|10000|10000|||100.18|98.56|0.00|-3.13|73956|77430|10000|10000|||97.31|97.52|0.00|2.85|0001B046|0|1| +21|2023-10-06T20:27:49.0970000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37754003|3E4F0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|13384077|40478540|10000|10000|||100.00|80.10|0.00|0.00|68478|73085|4850|10000|||99.66|101.30|0.00|3.13|0001B047|0|1| +261|2023-10-06T20:27:48.5940000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:27:48.5940000-07:00|Change|4002256E||||||||| +37|2023-10-06T20:27:49.1420000-07:00|40022550|Zeromus|0001B040|13352632||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:49.1420000-07:00|10FF0008|Kokosaze Lulusaze|0001B040|65252|79111|7100|10000|26||99.81|99.23|0.00|3.13|1B00|0|0|01|07000B25|0|0|| +38|2023-10-06T20:27:49.1420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|65252|79111|7100|10000|26||99.81|99.23|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:27:49.1870000-07:00|40022550|Zeromus|0001B041|13338765|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A9F|0|41C00000|| +26|2023-10-06T20:27:49.1870000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:27:49.1870000-07:00|10FF0002|Suchichi Suchi|0001B041|88866|90128|10000|10000|17||100.05|99.69|0.00|-3.14|1600|0|0|01|03000323|0|41F00000|| +37|2023-10-06T20:27:49.1870000-07:00|40022550|Zeromus|0001B03D|13308884||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:48.7110000-07:00|Change|40022550||||||||||||| +20|2023-10-06T20:27:49.1870000-07:00|40022550|Zeromus|8B43|Visceral Whirl|40022550|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:27:49.1870000-07:00|4002256D|Zeromus|8B44|Visceral Whirl|4002256D|Zeromus|8.500|80.10|80.10|0.00|0.79| +20|2023-10-06T20:27:49.1870000-07:00|4002256E|Zeromus|8B45|Visceral Whirl|4002256E|Zeromus|8.500|119.90|80.10|0.00|-0.79| +24|2023-10-06T20:27:49.1870000-07:00|40022550|Zeromus|DoT|0|239B|13384077|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|81519|90055|10000|10000|||98.85|100.15|-0.02|3.04| +38|2023-10-06T20:27:49.1870000-07:00|10FF0002|Suchichi Suchi|005A5A16|88866|90128|10000|10000|17||100.05|99.69|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:27:49.1870000-07:00|40022550|Zeromus|005A5A00|13299769|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:27:49.2320000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.22| +21|2023-10-06T20:27:49.2320000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13299769|40478540|10000|10000|||100.00|80.10|0.00|0.00|113274|128564|10000|10000|||100.18|98.56|0.00|-3.13|0001B048|0|1| +21|2023-10-06T20:27:49.2320000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|1B760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13299769|40478540|10000|10000|||100.00|80.10|0.00|0.00|65252|79111|7100|10000|||99.81|99.23|0.00|3.13|0001B049|0|1| +38|2023-10-06T20:27:49.2320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|65252|79111|7100|10000|26||99.81|99.23|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:49.2320000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:27:49.2750000-07:00|40022550|Zeromus|0001B042|13299717||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:49.2750000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|1010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13299769|40478540|10000|10000|||100.00|80.10|0.00|0.00|65252|79111|7100|10000|||99.81|99.23|0.00|3.13|0001B04A|0|1| +21|2023-10-06T20:27:49.3200000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|73350E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|13299769|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5105|10000|||99.00|98.78|0.00|3.08|0001B04B|0|1| +38|2023-10-06T20:27:49.3200000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4705|10000|24||99.00|98.78|0.00|3.08|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:49.3200000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:27:48.8290000-07:00|Change|10FF0006||||||||||| +20|2023-10-06T20:27:49.3650000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.72|99.04|-0.01|3.08| +37|2023-10-06T20:27:49.4990000-07:00|40022550|Zeromus|0001B044|13295988||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:49.4990000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4910|10000|||99.01|98.51|0.00|3.09| +261|2023-10-06T20:27:49.0650000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:27:49.5430000-07:00|40022550|Zeromus|0001B045|13293630||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:49.1660000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:27:49.1660000-07:00|Change|4002256D||||||||||||| +37|2023-10-06T20:27:49.7210000-07:00|40022550|Zeromus|0001B047|13277679||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:49.7660000-07:00|40022550|Zeromus|0001B043|13233275||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:49.7660000-07:00|40022550|Zeromus|0001B048|13230081||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:49.2610000-07:00|Change|10FF0001||| +37|2023-10-06T20:27:49.8110000-07:00|40022550|Zeromus|0001B04A|13229824||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:49.8110000-07:00|40022550|Zeromus|005A5A00|13229824|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:49.8110000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:27:49.8990000-07:00|10FF0007|Kehabiqo Febiqo|0001B046|118775||||||100.18|98.56|0.00|-3.13| +39|2023-10-06T20:27:49.8990000-07:00|10FF0005|Wuwuchu Wuchu|82419|90055|10000|10000|||98.89|99.78|0.00|2.94| +21|2023-10-06T20:27:49.9440000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|37A60000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|13229824|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7200|10000|||99.25|98.04|0.00|3.10|0001B04C|0|1| +38|2023-10-06T20:27:49.9440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|16||99.25|98.04|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:49.9440000-07:00|76E|Sword Oath|7.90|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:27:49.4450000-07:00|Change|40022BE7||||||||| +261|2023-10-06T20:27:49.6340000-07:00|Change|40022BF4||||||||| +37|2023-10-06T20:27:49.9880000-07:00|40022550|Zeromus|0001B049|13222794||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:50.0350000-07:00|10FF0008|Kokosaze Lulusaze|66043|79111|7300|10000|||99.81|99.23|0.00|3.13| +38|2023-10-06T20:27:50.0350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82419|90055|10000|10000|23||98.89|99.78|0.00|2.94|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:50.0350000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:27:50.0780000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|22DB|118775|128564|10000|10000|||100.18|98.56|0.00|-3.13|10FF0006|Wowobora Gogobora|1|80739|80739|4910|10000|||98.48|96.57|0.00|-2.97| +37|2023-10-06T20:27:50.0780000-07:00|40022550|Zeromus|0001B04B|13222794|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:27:50.0780000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:27:50.0780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127698|128564|10000|10000|0||100.18|98.56|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:49.6340000-07:00|Change|10FF0008||||| +39|2023-10-06T20:27:50.1670000-07:00|10FF0004|Buhojaqe Zijaqe|66123|80739|5300|10000|||99.72|99.02|0.00|3.13| +38|2023-10-06T20:27:50.1680000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4910|10000|24||98.43|95.73|0.00|3.11|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:50.1680000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +21|2023-10-06T20:27:50.3010000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32CC0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13222794|40478540|10000|10000|||100.00|80.10|0.00|0.00|66123|80739|5300|10000|||99.72|99.02|0.00|3.13|0001B04D|0|1| +38|2023-10-06T20:27:50.3010000-07:00|10FF0002|Suchichi Suchi|005A5A16|88866|90128|10000|10000|17||100.05|99.69|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:50.3010000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +261|2023-10-06T20:27:49.8740000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:27:50.3910000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82419|90055|10000|10000|||98.89|99.78|0.00|2.94|82419|90055|10000|10000|||98.89|99.78|0.00|2.94|0001B04E|0|1| +38|2023-10-06T20:27:50.3910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82419|90055|10000|10000|23||98.89|99.78|0.00|2.94|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:50.3910000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +38|2023-10-06T20:27:50.4350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|16||100.24|97.94|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:50.4350000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +38|2023-10-06T20:27:50.5680000-07:00|10FF0003|Gegehi Gehi|005A5A23|68478|73085|4850|10000|21||99.66|101.30|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:50.5680000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +261|2023-10-06T20:27:50.1060000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T20:27:50.6130000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A754003|5D400000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|13222794|40478540|10000|10000|||100.00|80.10|0.00|0.00|68478|73085|4850|10000|||99.66|101.30|0.00|3.13|0001B04F|0|1| +38|2023-10-06T20:27:50.7020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127698|128564|10000|10000|0||100.49|98.57|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:50.7020000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +261|2023-10-06T20:27:50.1990000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:27:50.7920000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|CDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13222794|40478540|10000|10000|||100.00|80.10|0.00|0.00|88866|90128|10000|10000|||100.05|99.69|0.00|-3.14|0001B050|0|1| +20|2023-10-06T20:27:50.7920000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.60|95.10|0.00|2.69| +38|2023-10-06T20:27:50.8360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|66043|79111|7300|10000|26||99.81|99.23|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:50.8360000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:27:50.8360000-07:00|40022BF6|Carbuncle|005A5A00|72376|75851|10000|10000|0||99.86|97.98|0.00|-0.01|0|0|0||||||||||||| +26|2023-10-06T20:27:50.8360000-07:00|30|Well Fed|1988.63|10FF0008|Kokosaze Lulusaze|40022BF6|Carbuncle|2964|75851|79111| +26|2023-10-06T20:27:50.8360000-07:00|A8F|Searing Light|7.05|10FF0008|Kokosaze Lulusaze|40022BF6|Carbuncle|00|75851|79111| +26|2023-10-06T20:27:50.8360000-07:00|511|Embolden|15.06|10FF0003|Gegehi Gehi|40022BF6|Carbuncle|00|75851|73085| +261|2023-10-06T20:27:50.3900000-07:00|Change|40022BF3||||||||| +37|2023-10-06T20:27:50.9260000-07:00|10FF0005|Wuwuchu Wuchu|0001B04E|82419|90055|10000|10000|23||98.90|99.76|0.00|2.94|2700|0|0|01|070004E2|0|41200000|| +21|2023-10-06T20:27:50.9270000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|456003|753B0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|13222794|40478540|10000|10000|||100.00|80.10|0.00|0.00|66043|79111|7300|10000|||99.81|99.23|0.00|3.13|0001B051|0|1| +38|2023-10-06T20:27:50.9270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|66043|79111|7000|10000|26||99.81|99.23|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:50.9270000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:27:50.9270000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82419|90055|10000|10000|23||98.91|99.75|0.00|2.94|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:27:50.9710000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|2.72|0|0|0||||||| +30|2023-10-06T20:27:50.9710000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022B84|Ruby Carbuncle|00|77430|90055| +38|2023-10-06T20:27:50.9710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66123|80739|4900|10000|25||99.72|99.02|0.00|3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:50.9710000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +261|2023-10-06T20:27:50.4860000-07:00|Change|10FF0008||| +261|2023-10-06T20:27:50.4860000-07:00|Change|40022BE1||| +04|2023-10-06T20:27:50.4860000-07:00|40022BE1|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|75851|0|10000|||101.33|101.79|0.00|3.12| +261|2023-10-06T20:27:50.4860000-07:00|Remove|40022BE1| +37|2023-10-06T20:27:51.1040000-07:00|40022550|Zeromus|0001B04D|13209790||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:50.6030000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:51.2370000-07:00|40022550|Zeromus|0001B04C|13195544||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:51.2370000-07:00|10FF0001|Sesuga Sapisuga|0001B04C|127791|127791|7600|10000|16||104.46|97.63|0.00|2.66|1300|0|0|0| +37|2023-10-06T20:27:51.2370000-07:00|40022550|Zeromus|0001B04F|13171672||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:51.2370000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||103.41|98.70|0.00|3.10| +21|2023-10-06T20:27:51.2830000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F712003|515C0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|13209790|40478540|10000|10000|||100.00|80.10|0.00|0.00|127698|128564|10000|10000|||103.41|98.70|0.00|3.10|0001B052|0|1| +21|2023-10-06T20:27:51.2830000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D726003|5BE50000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|13209790|40478540|10000|10000|||100.00|80.10|0.00|0.00|88866|90128|10000|10000|||100.02|99.69|0.00|-3.11|0001B053|0|1| +21|2023-10-06T20:27:51.2830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|91F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13209790|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7200|10000|||104.46|97.63|0.00|2.66|0001B054|0|1| +38|2023-10-06T20:27:51.2830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||103.41|98.70|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:51.2830000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:27:51.2830000-07:00|A75|Surging Tempest|33.87|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:27:51.2830000-07:00|10FF0002|Suchichi Suchi|005A5A16|88866|90128|10000|10000|17||100.02|99.69|0.00|-3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:51.2830000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:51.2830000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +31|2023-10-06T20:27:51.2830000-07:00|10FF0001||||| +37|2023-10-06T20:27:51.3270000-07:00|40022550|Zeromus|0001B050|13168379||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:51.3270000-07:00|10FF0002|Suchichi Suchi|0001B050|88866|90128|10000|10000|17||100.00|99.69|0.00|3.10|1600|0|0|01|07000322|0|C1F00000|| +261|2023-10-06T20:27:50.9440000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:27:51.3720000-07:00|10FF0003|Gegehi Gehi|69208|73085|5050|10000|||99.66|101.30|0.00|3.13| +261|2023-10-06T20:27:50.9440000-07:00|Change|10FF0003||| +39|2023-10-06T20:27:51.4600000-07:00|10FF0002|Suchichi Suchi|89767|90128|10000|10000|||99.98|99.69|0.00|3.10| +21|2023-10-06T20:27:51.5050000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13168379|40478540|10000|10000|||100.00|80.10|0.00|0.00|66123|80739|4900|10000|||99.67|98.80|0.00|-2.94|0001B055|0|1| +37|2023-10-06T20:27:51.5500000-07:00|40022550|Zeromus|0001B051|13138368||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:51.5500000-07:00|10FF0008|Kokosaze Lulusaze|0001B051|66043|79111|7000|10000|26||99.81|99.23|0.00|3.13|1B00|0|0|01|02000B25|0|0|| +38|2023-10-06T20:27:51.5500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|66043|79111|7000|10000|26||99.81|99.23|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:27:51.1510000-07:00|Change|40022BE7||||||||| +261|2023-10-06T20:27:51.1510000-07:00|Change|40022BEA||||||||| +21|2023-10-06T20:27:51.6830000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13138368|40478540|10000|10000|||100.00|80.10|0.00|0.00|69208|73085|5050|10000|||99.66|101.29|-0.02|3.12|0001B056|0|1| +38|2023-10-06T20:27:51.6830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82419|90055|10000|10000|23||99.06|99.00|0.00|2.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:51.6830000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:27:51.6830000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82419|90055|10000|10000|||99.06|99.00|0.00|2.94|82419|90055|10000|10000|||99.06|99.00|0.00|2.94|0001B057|0|1| +21|2023-10-06T20:27:51.7280000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38430000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|13138368|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4910|10000|||98.62|95.05|0.00|3.05|0001B058|0|1| +21|2023-10-06T20:27:51.7730000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|193D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13138368|40478540|10000|10000|||100.00|80.10|0.00|0.00|66043|79111|7000|10000|||99.81|99.23|0.00|3.13|0001B059|0|1| +38|2023-10-06T20:27:51.7730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|66043|79111|7000|10000|26||99.81|99.23|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:51.7730000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:27:51.3400000-07:00|Change|40022BF4||||||||| +37|2023-10-06T20:27:51.8170000-07:00|40022550|Zeromus|0001B054|13136033||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:51.9520000-07:00|40022550|Zeromus|0001B053|13112508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:51.9520000-07:00|10FF0002|Suchichi Suchi|0001B053|89767|90128|10000|10000|17||98.12|97.81|-0.02|-3.12|1600|0|0|01|07000322|0|41F00000|| +38|2023-10-06T20:27:51.9520000-07:00|10FF0002|Suchichi Suchi|005A5A16|89767|90128|10000|10000|17||98.12|97.81|-0.02|-3.12|0|0|0||||||||||||||||||||||||| +39|2023-10-06T20:27:51.9970000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7800|10000|||107.51|94.95|0.00|2.64| +21|2023-10-06T20:27:51.9970000-07:00|10FF0002|Suchichi Suchi|03|Sprint|10FF0002|Suchichi Suchi|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89767|90128|10000|10000|||98.12|97.81|-0.02|-3.12|89767|90128|10000|10000|||98.12|97.81|-0.02|-3.12|0001B05A|0|1| +261|2023-10-06T20:27:51.5290000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:27:52.0410000-07:00|40022550|Zeromus|0001B055|13112262||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:52.1300000-07:00|10FF0002|Suchichi Suchi|0001B05A|89767|90128|10000|10000|17||99.16|96.80|0.00|3.14|1600|0|0|01|03000032|1E|41200000|| +26|2023-10-06T20:27:52.1300000-07:00|32|Sprint|10.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|1E|90128|90128| +261|2023-10-06T20:27:51.6240000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:27:52.1760000-07:00|40022550|Zeromus|DoT|0|2069|13112262|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|82419|90055|10000|10000|||99.72|96.58|0.00|2.85| +21|2023-10-06T20:27:52.1760000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1B7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13112262|40478540|10000|10000|||100.00|80.10|0.00|0.00|82419|90055|10000|10000|||99.72|96.58|0.00|2.85|0001B05B|0|1| +38|2023-10-06T20:27:52.1760000-07:00|40022550|Zeromus|005A5A00|13103965|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:27:52.2200000-07:00|40022550|Zeromus|0001B056|13103932||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:51.8620000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:27:52.2210000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +21|2023-10-06T20:27:52.2210000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|25DE0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|13112262|40478540|10000|10000|||100.00|80.10|0.00|0.00|66123|80739|4900|10000|||99.53|96.28|0.00|3.12|0001B05C|0|1| +261|2023-10-06T20:27:51.8620000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:27:51.9760000-07:00|Change|40022BEC||||||||| +24|2023-10-06T20:27:52.3980000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|14FD|128564|128564|10000|10000|||107.09|95.42|0.00|3.13|10FF0006|Wowobora Gogobora|0|80739|80739|4510|10000|||99.59|94.77|0.00|1.72| +37|2023-10-06T20:27:52.3980000-07:00|40022550|Zeromus|0001B058|13089529||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:52.3980000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13103932|40478540|10000|10000|||100.00|80.10|0.00|0.00|66043|79111|7000|10000|||100.76|98.68|0.00|2.36|0001B05D|0|1| +38|2023-10-06T20:27:52.3980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||107.09|95.42|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:27:52.4430000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|200004|21530000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|82419|90055|10000|10000|||100.42|95.85|0.00|2.75|73956|77430|10000|10000|||97.31|97.52|0.00|2.93|0001B05E|0|1| +261|2023-10-06T20:27:52.1010000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:27:52.1010000-07:00|Change|40022BF3||||||||| +39|2023-10-06T20:27:52.4870000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4715|10000|||100.37|94.55|0.00|1.78| +21|2023-10-06T20:27:52.4870000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|34290000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|13089529|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7800|10000|||109.39|91.64|0.00|2.25|0001B05F|0|1| +38|2023-10-06T20:27:52.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7800|10000|16||109.39|91.64|0.00|2.25|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:52.4870000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:27:52.5320000-07:00|40022550|Zeromus|0001B059|13083068||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:52.5330000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13089529|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4510|10000|||100.37|94.55|0.00|1.78|0001B060|0|1| +21|2023-10-06T20:27:52.6220000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|14D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13083068|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||108.03|94.55|0.00|3.12|0001B061|0|1| +37|2023-10-06T20:27:52.7100000-07:00|40022550|Zeromus|0001B05B|13076031||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:52.7100000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|716003|85EC0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|13083068|40478540|10000|10000|||100.00|80.10|0.00|0.00|82419|90055|10000|10000|||101.31|95.23|0.00|2.62|0001B062|0|1| +38|2023-10-06T20:27:52.7100000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82419|90055|10000|10000|23||101.31|95.23|0.00|2.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:52.7100000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:27:52.2900000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:27:52.8430000-07:00|10FF0005|Wuwuchu Wuchu|0001B057|82419|90055|10000|10000|23||101.82|94.77|0.00|-2.92|2700|0|0|01|0A000A1F|0|C1F00000|| +39|2023-10-06T20:27:52.8880000-07:00|10FF0005|Wuwuchu Wuchu|83319|90055|10000|10000|||102.27|94.35|0.00|-2.92| +37|2023-10-06T20:27:52.9330000-07:00|40022550|Zeromus|0001B052|13055203||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:52.9330000-07:00|40022550|Zeromus|0001B05D|13055003||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:52.4860000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:27:52.9780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||108.81|92.53|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:52.9780000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +39|2023-10-06T20:27:53.0230000-07:00|10FF0008|Kokosaze Lulusaze|66834|79111|7200|10000|||103.87|96.70|0.00|1.86| +261|2023-10-06T20:27:52.4860000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:27:52.4860000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:27:53.0670000-07:00|40022550|Zeromus|0001B060|13054955||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:52.6000000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:27:53.1570000-07:00|40022550|Zeromus|0001B061|13049624||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:53.1570000-07:00|40022550|Zeromus|0001B05C|13039930||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:53.1570000-07:00|10FF0004|Buhojaqe Zijaqe|66930|80739|4700|10000|||102.66|92.35|0.00|2.18| +261|2023-10-06T20:27:52.7170000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:27:53.2010000-07:00|40022BF6|Carbuncle|75851|75851|10000|10000|||99.96|97.65|0.00|0.57| +37|2023-10-06T20:27:53.2470000-07:00|10FF0005|Wuwuchu Wuchu|0001B05E|90055|90055|10000|10000|23||102.81|93.53|0.00|-2.92|2700|0|0|01|0A000A1F|0|C1F00000|| +37|2023-10-06T20:27:53.2470000-07:00|40022550|Zeromus|0001B062|13005646||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:53.2470000-07:00|10FF0005|Wuwuchu Wuchu|0001B062|90055|90055|10000|10000|23||102.81|93.53|0.00|-2.92|2700|0|0|01|0A000A1F|0|41F00000|| +38|2023-10-06T20:27:53.2470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|23||102.81|93.53|0.00|-2.92|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:52.8310000-07:00|Change|40022BEF||||||||| +261|2023-10-06T20:27:52.8310000-07:00|Change|40022BE7||||||||| +261|2023-10-06T20:27:52.8310000-07:00|Change|40022BEA||||||||| +21|2023-10-06T20:27:53.4250000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|13005646|40478540|10000|10000|||100.00|80.10|0.00|0.00|66834|79111|7200|10000|||106.46|95.84|0.00|1.81|0001B063|0|1| +38|2023-10-06T20:27:53.4250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|66834|79111|7200|10000|26||106.46|95.84|0.00|1.81|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:53.4250000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:27:53.4250000-07:00|40022BF6|Carbuncle|005A5A00|0|75851|0|10000|0||100.59|97.40|0.00|1.09|0|0|0|||| +30|2023-10-06T20:27:53.4250000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022BF6|Carbuncle|00|75851|79111| +30|2023-10-06T20:27:53.4250000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022BF6|Carbuncle|00|75851|73085| +261|2023-10-06T20:27:52.9440000-07:00|Change|40022BF6||||||||| +261|2023-10-06T20:27:52.9440000-07:00|Change|40022BF6||||||||| +261|2023-10-06T20:27:52.9440000-07:00|Change|10FF0002||||||||| +38|2023-10-06T20:27:53.4700000-07:00|40022C0B||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T20:27:53.4700000-07:00|40022C0B||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||| +261|2023-10-06T20:27:53.0640000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:27:53.0640000-07:00|Change|40022BF4||||||||| +21|2023-10-06T20:27:53.5600000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|12140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13005646|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7800|10000|||114.21|88.58|0.00|2.21|0001B064|0|1| +31|2023-10-06T20:27:53.5600000-07:00|10FF0001||||| +261|2023-10-06T20:27:53.0640000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:27:53.6030000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|136F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13005646|40478540|10000|10000|||100.00|80.10|0.00|0.00|89767|90128|10000|10000|||103.34|92.62|0.00|-3.11|0001B065|0|1| +37|2023-10-06T20:27:53.7820000-07:00|40022550|Zeromus|0001B05F|12992293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:53.7820000-07:00|10FF0001|Sesuga Sapisuga|0001B05F|127791|127791|8200|10000|16||115.11|87.62|0.00|2.57|1300|0|0|0| +21|2023-10-06T20:27:53.7820000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|26EA0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|13005646|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||110.03|88.89|0.00|-3.09|0001B066|0|1| +21|2023-10-06T20:27:53.7820000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|3A860000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|13005646|40478540|10000|10000|||100.00|80.10|0.00|0.00|89767|90128|10000|10000|||102.43|90.25|0.00|2.90|0001B067|0|1| +38|2023-10-06T20:27:53.7820000-07:00|10FF0002|Suchichi Suchi|005A5A16|89767|90128|10000|10000|17||102.43|90.25|0.00|2.90|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:53.7820000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:27:53.7820000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:27:53.7820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|16||115.11|87.62|0.00|2.57|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:53.7820000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +03|2023-10-06T20:27:53.2640000-07:00|40022C0B|Emerald Garuda|00|5A|10FF0008|00||10263|13506|72376|75851|10000|10000|||109.26|96.51|0.00|-2.72| +261|2023-10-06T20:27:53.2640000-07:00|Add|40022C0B||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:53.3540000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:27:53.3540000-07:00|Change|40022C0B||||| +261|2023-10-06T20:27:53.4460000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:27:53.4460000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:27:53.4460000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:27:53.5400000-07:00|Change|40022BE9||||||||| +37|2023-10-06T20:27:54.0930000-07:00|40022550|Zeromus|0001B064|12987665||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:53.5400000-07:00|Change|40022BEC||||||||| +37|2023-10-06T20:27:54.1380000-07:00|40022550|Zeromus|0001B065|12982690||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:54.1380000-07:00|10FF0002|Suchichi Suchi|0001B065|89767|90128|10000|10000|17||102.47|87.61|0.00|-2.84|1600|0|0|01|08000747|0|C1F00000|| +261|2023-10-06T20:27:53.6580000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:27:54.2260000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||110.59|88.42|0.00|-2.24| +261|2023-10-06T20:27:53.7700000-07:00|Change|40022BF3||||||||| +37|2023-10-06T20:27:54.3150000-07:00|40022550|Zeromus|0001B066|12972728||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:54.3590000-07:00|10FF0003|Gegehi Gehi|69938|73085|5250|10000|||109.96|91.20|0.00|2.37| +37|2023-10-06T20:27:54.4040000-07:00|40022550|Zeromus|0001B067|12957746||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:54.4040000-07:00|10FF0002|Suchichi Suchi|0001B067|89767|90128|10000|10000|17||103.37|86.04|0.00|3.09|1600|0|0|01|08000747|0|41F00000|| +261|2023-10-06T20:27:53.8890000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:27:53.8890000-07:00|Change|10FF0007||||||||| +38|2023-10-06T20:27:54.4040000-07:00|10FF0002|Suchichi Suchi|005A5A16|89767|90128|10000|10000|17||104.15|85.61|0.00|2.99|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:27:53.9990000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:27:54.4490000-07:00|10FF0008|Kokosaze Lulusaze|0001B063|66834|79111|7200|10000|26||109.31|92.86|0.00|2.54|1B00|0|0|01|02000AA5|0|0|| +39|2023-10-06T20:27:54.4490000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||104.15|85.61|0.00|2.99| +38|2023-10-06T20:27:54.4490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|66834|79111|7200|10000|26||109.31|92.86|0.00|2.54|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:27:53.9990000-07:00|Change|40022C0B||| +261|2023-10-06T20:27:54.1140000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:27:54.6260000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12957746|40478540|10000|10000|||100.00|80.10|0.00|0.00|66930|80739|4700|10000|||110.77|88.60|0.00|2.28|0001B068|0|1| +261|2023-10-06T20:27:54.3010000-07:00|Change|10FF0006||||||||| +20|2023-10-06T20:27:54.8040000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|111.85|88.67|0.00|2.50| +261|2023-10-06T20:27:54.3980000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:27:54.3980000-07:00|Change|40022BED||||||||| +261|2023-10-06T20:27:54.3980000-07:00|Change|40022BEF||||||||| +38|2023-10-06T20:27:54.9380000-07:00|40022550|Zeromus|005A5A00|12957746|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:27:54.9380000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +261|2023-10-06T20:27:54.3980000-07:00|Change|10FF0008||||||||| +23|2023-10-06T20:27:54.9830000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +21|2023-10-06T20:27:54.9830000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|752003|52CA0000|200004|3EBE8000|0|0|0|0|0|0|0|0|0|0|0|0|12957746|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||114.65|82.62|0.00|-2.07|0001B069|0|1| +38|2023-10-06T20:27:54.9830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|16||114.65|82.62|0.00|-2.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:54.9830000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:27:54.5000000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:27:54.5000000-07:00|Change|40022BE7||||||||| +39|2023-10-06T20:27:55.0260000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7400|10000|||114.65|82.62|0.00|-2.07| +261|2023-10-06T20:27:54.5000000-07:00|Change|40022BEA||||||||| +21|2023-10-06T20:27:55.0710000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|722003|550B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12957746|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.14|83.82|0.00|3.00|0001B06A|0|1| +21|2023-10-06T20:27:55.1160000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|712003|75890000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|12957746|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||106.40|83.85|0.00|2.96|0001B06B|0|1| +38|2023-10-06T20:27:55.1160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|23||106.40|83.85|0.00|2.96|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:55.1160000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:27:55.1160000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:27:55.1600000-07:00|40022550|Zeromus|0001B068|12957493||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:54.7300000-07:00|Change|40022BF4||||||||| +39|2023-10-06T20:27:55.2040000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +24|2023-10-06T20:27:55.2040000-07:00|40022550|Zeromus|DoT|0|2723|12957493|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||106.35|83.57|-0.02|-2.03| +38|2023-10-06T20:27:55.2040000-07:00|40022550|Zeromus|005A5A00|12947474|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:27:54.8490000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:27:55.3380000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12947474|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4715|10000|||113.35|85.54|0.00|2.59|0001B06C|0|1| +21|2023-10-06T20:27:55.3380000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12947474|40478540|10000|10000|||100.00|80.10|0.00|0.00|69938|73085|5250|10000|||112.08|88.15|-0.02|-2.74|0001B06D|0|1| +21|2023-10-06T20:27:55.3820000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|DAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12947474|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||106.32|83.40|0.00|-2.03|0001B06E|0|1| +20|2023-10-06T20:27:55.4710000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|113.79|84.60|0.00|2.82| +38|2023-10-06T20:27:55.4710000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||107.19|83.60|-0.02|-2.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:55.4710000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0002|Suchichi Suchi|00|90128|| +38|2023-10-06T20:27:55.4710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|66834|79111|7200|10000|15||114.05|87.59|0.00|2.53|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:55.4710000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|| +38|2023-10-06T20:27:55.4710000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4715|10000|9||113.79|84.60|0.00|2.82|0|0|0|||||||||||||||| +26|2023-10-06T20:27:55.4710000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:55.4710000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0006|Wowobora Gogobora|00|80739|| +38|2023-10-06T20:27:55.4710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|9||114.65|82.62|0.00|-2.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:55.4710000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0001|Sesuga Sapisuga|00|127791|| +38|2023-10-06T20:27:55.4710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66930|80739|4700|10000|15||113.95|84.53|-0.02|2.45|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:55.4710000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|| +261|2023-10-06T20:27:55.0700000-07:00|Change|40022BF6||||||||| +38|2023-10-06T20:27:55.4710000-07:00|10FF0003|Gegehi Gehi|005A5A23|69938|73085|5250|10000|10||112.88|86.73|0.00|2.60|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:27:55.4710000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0003|Gegehi Gehi|00|73085|| +38|2023-10-06T20:27:55.4710000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||106.30|83.30|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:55.4710000-07:00|77D|Seraphic Veil|0.00|40022B3E|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|| +21|2023-10-06T20:27:55.5140000-07:00|40022C0B|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|352003|A3020000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|12947474|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||109.26|96.51|0.00|-2.72|0001B06F|0|1| +39|2023-10-06T20:27:55.5140000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4920|10000|||113.79|84.60|0.00|2.82| +21|2023-10-06T20:27:55.5590000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12947474|40478540|10000|10000|||100.00|80.10|0.00|0.00|66834|79111|7200|10000|||114.05|87.59|0.00|2.53|0001B070|0|1| +261|2023-10-06T20:27:55.0700000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:27:55.6490000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|F4E0000|133E0E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|12947474|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||114.65|82.62|0.00|-2.07|0001B071|0|1| +261|2023-10-06T20:27:55.1660000-07:00|Change|40022BF1||||||||| +37|2023-10-06T20:27:55.7370000-07:00|40022550|Zeromus|0001B069|12926280||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:55.7370000-07:00|40022550|Zeromus|0001B06B|12896191||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:55.7370000-07:00|10FF0005|Wuwuchu Wuchu|0001B06B|90055|90055|10000|10000|8||106.28|83.21|0.00|-2.03|2700|0|0|01|0A000A1E|0|41F00000|| +21|2023-10-06T20:27:55.7370000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022550|Zeromus|154003|6A550000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|12947474|40478540|10000|10000|||100.00|80.10|0.00|0.00|69938|73085|5250|10000|||113.68|85.38|0.00|2.60|0001B072|0|1| +38|2023-10-06T20:27:55.7370000-07:00|10FF0003|Gegehi Gehi|005A5A23|69938|73085|4850|10000|10||113.68|85.38|0.00|2.60|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:27:55.7370000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:27:55.7370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||106.28|83.21|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:27:55.2620000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:27:55.2620000-07:00|Change|40022BE9||||||||| +261|2023-10-06T20:27:55.2620000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:27:55.7800000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|14830000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|66834|79111|7200|10000|||114.42|86.17|-0.02|2.87|73956|77430|10000|10000|||97.31|97.52|0.00|2.95|0001B073|0|1| +261|2023-10-06T20:27:55.2620000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:27:55.2620000-07:00|Change|40022BEC||||||||| +21|2023-10-06T20:27:55.8250000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12896191|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||114.55|82.61|0.00|-1.57|0001B074|0|1| +31|2023-10-06T20:27:55.8250000-07:00|10FF0001||||| +37|2023-10-06T20:27:55.8690000-07:00|40022550|Zeromus|0001B06A|12874420||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:55.8690000-07:00|40022550|Zeromus|0001B06C|12874382||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:55.8690000-07:00|40022550|Zeromus|0001B06D|12874356||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:55.8690000-07:00|10FF0003|Gegehi Gehi|0001B06D|69938|73085|4850|10000|10||113.94|84.94|0.00|-1.81|2300|0|0|01|020004D2|0|C1F00000|| +39|2023-10-06T20:27:55.8690000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||106.28|83.21|0.00|-2.03| +37|2023-10-06T20:27:55.9130000-07:00|40022550|Zeromus|0001B06E|12870854||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:55.4490000-07:00|Change|40022BF3||||||||| +21|2023-10-06T20:27:55.9580000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|31A90000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|12870854|40478540|10000|10000|||100.00|80.10|0.00|0.00|66834|79111|7200|10000|||114.68|84.69|0.00|2.92|0001B075|0|1| +20|2023-10-06T20:27:55.9580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|115.76|82.56|0.00|2.46| +23|2023-10-06T20:27:55.9580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +261|2023-10-06T20:27:55.5470000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:27:56.0030000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12870854|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||114.16|82.55|0.00|-1.63|0001B076|0|1| +39|2023-10-06T20:27:56.0470000-07:00|10FF0008|Kokosaze Lulusaze|67625|79111|7100|10000|||114.83|83.85|0.00|-1.79| +37|2023-10-06T20:27:56.0910000-07:00|40022550|Zeromus|0001B070|12870703||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:27:56.1360000-07:00|10FF0004|Buhojaqe Zijaqe|67737|80739|4900|10000|||115.87|82.33|0.00|-2.88| +21|2023-10-06T20:27:56.2250000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|22810000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|12870703|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||113.46|82.60|0.00|-1.50|0001B077|0|1| +21|2023-10-06T20:27:56.2700000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|296E0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|12870703|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.19|83.56|0.00|-2.58|0001B078|0|1| +38|2023-10-06T20:27:56.2700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||107.19|83.56|0.00|-2.58|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:27:56.2700000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:27:56.3590000-07:00|40022550|Zeromus|0001B074|12868458||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:56.3590000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|31520000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|12870703|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||111.56|82.68|0.00|-1.55|0001B079|0|1| +21|2023-10-06T20:27:56.4040000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|C7B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12870703|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.27|83.46|0.00|-1.96|0001B07A|0|1| +21|2023-10-06T20:27:56.4040000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3BC20000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|12870703|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4920|10000|||114.03|84.00|0.00|-1.84|0001B07B|0|1| +261|2023-10-06T20:27:56.0250000-07:00|Change|40022BE6||||||||| +37|2023-10-06T20:27:56.5370000-07:00|40022550|Zeromus|0001B076|12865355||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:56.1390000-07:00|Change|40022BED||||||||| +37|2023-10-06T20:27:56.5810000-07:00|40022550|Zeromus|0001B075|12852642||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:56.5810000-07:00|10FF0008|Kokosaze Lulusaze|0001B073|72876||||||113.35|82.79|0.00|-1.78| +261|2023-10-06T20:27:56.1390000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:27:56.1390000-07:00|Change|40022BEF||||||||| +21|2023-10-06T20:27:56.6260000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|714003|62EB0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|12852642|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||106.28|83.21|0.00|-2.03|0001B07C|0|1| +38|2023-10-06T20:27:56.6260000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||106.28|83.21|0.00|-2.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:56.6260000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:27:56.6260000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:27:56.6700000-07:00|40022550|Zeromus|0001B071|12848724|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T20:27:56.6700000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +261|2023-10-06T20:27:56.2350000-07:00|Change|40022BE7||||||||| +261|2023-10-06T20:27:56.2350000-07:00|Change|40022BEA||||||||| +37|2023-10-06T20:27:56.7140000-07:00|40022550|Zeromus|0001B079|12836098||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:56.7140000-07:00|10FF0001|Sesuga Sapisuga|0001B079|127791|127791|7900|10000|9||109.55|82.71|0.00|-1.57|1300|0|0|0| +38|2023-10-06T20:27:56.7150000-07:00|10FF0003|Gegehi Gehi|005A5A23|69938|73085|4850|10000|10||114.68|81.53|-0.02|-2.81|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:27:56.2350000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:27:56.3260000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:27:56.8050000-07:00|40022550|Zeromus|0001B06F|12794368||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:56.3260000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:27:56.8490000-07:00|40022550|Zeromus|0001B077|12785535||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:56.3260000-07:00|Change|40022BF4||||||||| +261|2023-10-06T20:27:56.4240000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:27:56.8950000-07:00|40022550|Zeromus|0001B078|12774929||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:56.9400000-07:00|40022550|Zeromus|0001B07A|12771734||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:56.9400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||106.30|83.17|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:27:57.0730000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1574|128564|128564|10000|10000|||109.55|83.13|0.00|-1.94|10FF0006|Wowobora Gogobora|0|80739|80739|4520|10000|||113.25|84.00|0.00|-1.77| +37|2023-10-06T20:27:57.0730000-07:00|40022550|Zeromus|0001B07B|12756436||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:57.0730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||109.55|83.13|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:57.0730000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:27:57.1620000-07:00|40022550|Zeromus|0001B072|12729215||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:57.1620000-07:00|10FF0003|Gegehi Gehi|0001B072|69938|73085|4850|10000|10||111.87|82.79|0.00|-1.95|2300|0|0|01|020004D2|0|41F00000|| +261|2023-10-06T20:27:56.6340000-07:00|Change|40022550||||| +37|2023-10-06T20:27:57.1620000-07:00|40022550|Zeromus|0001B07C|12703892||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:56.6340000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:27:57.1620000-07:00|10FF0005|Wuwuchu Wuchu|0001B07C|90055|90055|10000|10000|8||106.96|83.41|0.00|-3.09|2700|0|0|01|02000A1F|0|41F00000|| +21|2023-10-06T20:27:57.1620000-07:00|40022550|Zeromus|8B43|Visceral Whirl|40022550|Zeromus|1B|8B438000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12756436|40478540|10000|10000|||100.00|80.10|0.00|0.00|12756436|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B07D|0|1| +38|2023-10-06T20:27:57.1620000-07:00|10FF0003|Gegehi Gehi|005A5A23|69938|73085|4850|10000|10||111.87|82.79|0.00|-1.95|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:27:57.1620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||106.96|83.41|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T20:27:57.2500000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||108.68|83.44|0.00|-2.59| +261|2023-10-06T20:27:56.8640000-07:00|Change|40022BF1||||||||| +39|2023-10-06T20:27:57.3840000-07:00|10FF0003|Gegehi Gehi|70668|73085|5050|10000|||110.44|82.59|0.00|-1.74| +04|2023-10-06T20:27:56.8640000-07:00|40022BF6|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||102.34|97.89|0.00|1.16| +261|2023-10-06T20:27:56.9810000-07:00|Remove|40022BF6| +261|2023-10-06T20:27:56.9810000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:27:56.9810000-07:00|Change|40022BE9||||||||| +21|2023-10-06T20:27:57.4280000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|25EE0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|12703892|40478540|10000|10000|||100.00|80.10|0.00|0.00|72876|79111|7100|10000|||108.50|82.12|0.00|-1.45|0001B07E|0|1| +261|2023-10-06T20:27:56.9810000-07:00|Change|40022BEC||||||||| +39|2023-10-06T20:27:57.4730000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||108.54|82.92|0.00|-1.11| +21|2023-10-06T20:27:57.4730000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41714003|34430000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|12703892|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||105.05|82.63|0.00|-1.60|0001B07F|0|1| +38|2023-10-06T20:27:57.4730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7900|10000|9||105.05|82.63|0.00|-1.60|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:57.4730000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:27:57.4730000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:27:57.0990000-07:00|Change|40022BF3||||||||| +261|2023-10-06T20:27:57.1990000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:27:57.7850000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12703892|40478540|10000|10000|||100.00|80.10|0.00|0.00|67737|80739|4900|10000|||111.37|82.62|0.00|-1.52|0001B080|0|1| +261|2023-10-06T20:27:57.2990000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:27:57.3950000-07:00|Change|10FF0004||||||||| +38|2023-10-06T20:27:57.9180000-07:00|40022C0B|Emerald Garuda|005A5A00|0|75851|10000|10000|0||109.26|96.51|0.00|-2.72|0|0|0|||||||||| +26|2023-10-06T20:27:57.9180000-07:00|30|Well Fed|1981.54|10FF0008|Kokosaze Lulusaze|40022C0B|Emerald Garuda|2964|75851|79111| +26|2023-10-06T20:27:57.9180000-07:00|511|Embolden|7.98|10FF0003|Gegehi Gehi|40022C0B|Emerald Garuda|00|75851|73085| +38|2023-10-06T20:27:57.9180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||107.48|83.53|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:57.9180000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:27:57.9180000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||108.98|83.27|0.00|-0.36|0|0|0||||||||||||||||||| +30|2023-10-06T20:27:57.9180000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|90128|79111| +38|2023-10-06T20:27:57.9180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|72876|79111|6800|10000|15||108.18|82.20|-0.01|-1.82|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:57.9180000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:27:57.9180000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4520|10000|9||107.87|84.16|0.00|-1.53|0|0|0||||||||||||| +26|2023-10-06T20:27:57.9180000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:27:57.9180000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|80739|79111| +38|2023-10-06T20:27:57.9180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7900|10000|9||104.48|82.65|0.00|-1.26|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:27:57.9180000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:27:57.9180000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||108.60|84.05|0.00|2.89|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:57.9180000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|90055|79111| +21|2023-10-06T20:27:57.9620000-07:00|4002256D|Zeromus|8B44|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|0001B081|0|0| +21|2023-10-06T20:27:57.9620000-07:00|4002256E|Zeromus|8B45|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|0001B082|0|0| +261|2023-10-06T20:27:57.4880000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:27:57.4880000-07:00|Change|4002256E||||||||||||| +39|2023-10-06T20:27:58.0060000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8100|10000|||104.44|82.66|0.00|-1.15| +37|2023-10-06T20:27:58.0520000-07:00|40022550|Zeromus|0001B07E|12694182||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:58.0520000-07:00|40022550|Zeromus|0001B07F|12680803||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:58.0520000-07:00|10FF0001|Sesuga Sapisuga|0001B07F|127791|127791|8100|10000|9||104.44|82.66|0.00|-1.15|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T20:27:58.0520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8100|10000|9||104.44|82.66|0.00|-1.15|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:27:57.5830000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:27:57.7060000-07:00|Change|40022BE6||||||||| +21|2023-10-06T20:27:58.0960000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12680803|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8100|10000|||104.27|82.74|0.00|-1.15|0001B083|0|1| +21|2023-10-06T20:27:58.0970000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|714003|2BC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12680803|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||108.63|84.06|0.00|2.89|0001B084|0|1| +31|2023-10-06T20:27:58.0970000-07:00|10FF0001||||| +21|2023-10-06T20:27:58.1410000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|750003|66140000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|12680803|40478540|10000|10000|||100.00|80.10|0.00|0.00|70668|73085|5050|10000|||106.18|82.71|0.00|-1.64|0001B085|0|1| +24|2023-10-06T20:27:58.1860000-07:00|40022550|Zeromus|DoT|0|3DB8|12680803|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||108.63|84.06|0.00|2.89| +38|2023-10-06T20:27:58.1860000-07:00|40022550|Zeromus|005A5A00|12665003|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:27:57.7060000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:27:57.7060000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:27:57.7060000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:27:57.7060000-07:00|Change|40022569||||||||| +261|2023-10-06T20:27:57.7060000-07:00|Change|40022568||||||||| +261|2023-10-06T20:27:57.7060000-07:00|Change|40022567||||||||| +261|2023-10-06T20:27:57.8250000-07:00|Change|40022BED||||||||| +39|2023-10-06T20:27:58.2310000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +20|2023-10-06T20:27:58.2750000-07:00|40022567|Zeromus|8B49|Miasmic Blast|40022567|Zeromus|7.700|107.00|107.00|0.00|0.79| +20|2023-10-06T20:27:58.2750000-07:00|40022568|Zeromus|8CF8|unknown_8cf8|40022568|Zeromus|7.700|107.00|107.00|0.00|0.79| +20|2023-10-06T20:27:58.2750000-07:00|40022569|Zeromus|8B49|Miasmic Blast|40022569|Zeromus|7.700|93.00|107.00|0.00|0.79| +20|2023-10-06T20:27:58.2750000-07:00|4002256A|Zeromus|8CF8|unknown_8cf8|4002256A|Zeromus|7.700|93.00|107.00|0.00|0.79| +20|2023-10-06T20:27:58.2750000-07:00|4002256B|Zeromus|8B49|Miasmic Blast|4002256B|Zeromus|7.700|93.00|93.00|0.00|0.79| +20|2023-10-06T20:27:58.2750000-07:00|4002256C|Zeromus|8CF8|unknown_8cf8|4002256C|Zeromus|7.700|93.00|93.00|0.00|0.79| +21|2023-10-06T20:27:58.2750000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|43060000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||107.04|83.48|0.00|2.83|12665003|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B086|0|1| +20|2023-10-06T20:27:58.2750000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|108.88|82.81|-0.02|-1.57| +261|2023-10-06T20:27:57.8250000-07:00|Change|40022BEF||||||||| +261|2023-10-06T20:27:57.8250000-07:00|Change|40022BE7||||||||| +37|2023-10-06T20:27:58.3200000-07:00|40022550|Zeromus|0001B080|12664843||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:27:58.3200000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|105.55|83.89|0.00|-1.70| +261|2023-10-06T20:27:57.9390000-07:00|Change|40022BEA||||||||| +261|2023-10-06T20:27:57.9390000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:27:58.4970000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4725|10000|||105.46|83.77|0.00|-1.81| +261|2023-10-06T20:27:58.1580000-07:00|Change|40022BF4||||||||| +21|2023-10-06T20:27:58.5860000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12664843|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||108.63|84.06|0.00|-2.00|0001B087|0|1| +37|2023-10-06T20:27:58.6310000-07:00|40022550|Zeromus|0001B083|12662968||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:58.6750000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|33D50000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|12664843|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||107.04|83.48|0.00|2.83|0001B088|0|1| +38|2023-10-06T20:27:58.6750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||107.04|83.48|0.00|2.83|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:58.6750000-07:00|A75|Surging Tempest|56.47|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +21|2023-10-06T20:27:58.7190000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12664843|40478540|10000|10000|||100.00|80.10|0.00|0.00|72876|79111|6800|10000|||108.17|82.20|0.00|-1.82|0001B089|0|1| +261|2023-10-06T20:27:58.2480000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:27:58.2480000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:27:58.2480000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:27:58.2480000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:27:58.2480000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:27:58.2480000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:27:58.2480000-07:00|Change|4002256A||||||||||||| +21|2023-10-06T20:27:58.7630000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35720003|29D80000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|12662968|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||109.11|83.42|0.00|-0.12|0001B08A|0|1| +37|2023-10-06T20:27:58.8080000-07:00|40022550|Zeromus|0001B084|12651768||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:58.8080000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12662968|40478540|10000|10000|||100.00|80.10|0.00|0.00|70668|73085|4650|10000|||105.28|82.25|0.00|-2.04|0001B08B|0|1| +261|2023-10-06T20:27:58.3460000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:27:58.8970000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||108.63|84.06|0.00|-2.00| +21|2023-10-06T20:27:58.8970000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|356003|4C560000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|12651768|40478540|10000|10000|||100.00|80.10|0.00|0.00|72876|79111|6800|10000|||108.13|82.22|0.00|-1.65|0001B08C|0|1| +261|2023-10-06T20:27:58.4410000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:27:58.9420000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|714003|58630000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|12651768|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||108.63|84.06|0.00|-1.99|0001B08D|0|1| +38|2023-10-06T20:27:58.9420000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||108.63|84.06|0.00|-1.99|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:27:58.9420000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:27:58.9420000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:27:59.0310000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|15360000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|67737|80739|4900|10000|||108.42|82.96|0.00|-1.90|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001B08E|0|1| +39|2023-10-06T20:27:59.0310000-07:00|10FF0008|Kokosaze Lulusaze|73667|79111|6700|10000|||108.08|82.23|0.00|-1.86| +261|2023-10-06T20:27:58.5420000-07:00|Change|40022BF1||||||||| +37|2023-10-06T20:27:59.0750000-07:00|10FF0007|Kehabiqo Febiqo|0001B086|111406||||||107.03|83.45|0.00|-2.25| +261|2023-10-06T20:27:58.5420000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:27:59.1190000-07:00|40022550|Zeromus|0001B087|12647465||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:59.1190000-07:00|10FF0005|Wuwuchu Wuchu|0001B087|90055|90055|10000|10000|8||108.38|84.23|-0.02|-2.06|2700|0|0|01|02000A1E|0|C1F00000|| +261|2023-10-06T20:27:58.6610000-07:00|Change|40022BE9||||||||| +23|2023-10-06T20:27:59.1640000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +39|2023-10-06T20:27:59.1640000-07:00|10FF0004|Buhojaqe Zijaqe|68544|80739|5100|10000|||108.42|82.96|0.00|-1.90| +261|2023-10-06T20:27:58.6610000-07:00|Change|40022BEC||||||||| +21|2023-10-06T20:27:59.2080000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12647465|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||108.07|83.72|0.00|-1.29|0001B08F|0|1| +37|2023-10-06T20:27:59.2530000-07:00|40022550|Zeromus|0001B089|12647321||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:58.7730000-07:00|Change|40022BF3||||||||| +21|2023-10-06T20:27:59.2530000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5CE50000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|12647321|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4725|10000|||105.15|83.36|0.00|-2.14|0001B090|0|1| +37|2023-10-06T20:27:59.3420000-07:00|40022550|Zeromus|0001B08B|12647296||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:59.3870000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BB10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12647296|40478540|10000|10000|||100.00|80.10|0.00|0.00|111406|128564|10000|10000|||106.31|84.02|0.00|-2.32|0001B091|0|1| +37|2023-10-06T20:27:59.5200000-07:00|40022550|Zeromus|0001B08C|12627754||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:59.5210000-07:00|40022C0B|Emerald Garuda|005A5A00|0|75851|0|10000|0||109.26|96.51|0.00|-2.72|0|0|0|||| +30|2023-10-06T20:27:59.5210000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022C0B|Emerald Garuda|00|75851|73085| +261|2023-10-06T20:27:59.0120000-07:00|Change|40022C0B||||| +38|2023-10-06T20:27:59.5660000-07:00|40022C22||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T20:27:59.5660000-07:00|40022550|Zeromus|0001B08D|12605127||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:27:59.5660000-07:00|10FF0005|Wuwuchu Wuchu|0001B08D|90055|90055|10000|10000|8||106.47|85.25|0.00|-2.30|2700|0|0|01|02000A1E|0|41F00000|| +38|2023-10-06T20:27:59.5670000-07:00|40022C22||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:27:59.5670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||106.47|85.25|0.00|-2.30|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:27:59.7000000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|20ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12605127|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||106.31|85.00|0.00|-2.24|0001B092|0|1| +37|2023-10-06T20:27:59.7440000-07:00|40022550|Zeromus|0001B08F|12602176||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:59.2330000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:27:59.3360000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:27:59.7880000-07:00|40022550|Zeromus|0001B08A|12591464||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:27:59.3360000-07:00|Add|40022C22||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:27:59.3360000-07:00|40022C22|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||102.84|82.95|0.00|1.71| +37|2023-10-06T20:27:59.8320000-07:00|10FF0004|Buhojaqe Zijaqe|0001B08E|73974||||||105.68|82.93|0.00|-1.62| +261|2023-10-06T20:27:59.4350000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:27:59.4350000-07:00|Change|40022C22||| +261|2023-10-06T20:27:59.4350000-07:00|Change|40022BE6||||||||| +37|2023-10-06T20:27:59.9220000-07:00|40022550|Zeromus|0001B091|12588471||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:27:59.9220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15D0|111406|128564|10000|10000|||104.43|86.18|0.00|-1.55|10FF0006|Wowobora Gogobora|0|80739|80739|4325|10000|||104.99|83.35|-0.02|-1.73| +37|2023-10-06T20:27:59.9220000-07:00|40022550|Zeromus|0001B090|12564690||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:27:59.9220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116990|128564|10000|10000|0||104.43|86.18|0.00|-1.55|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:27:59.9220000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:27:59.4350000-07:00|Change|40022BED||||||||| +261|2023-10-06T20:27:59.4350000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:27:59.9660000-07:00|40022550|Zeromus|0001B085|12538558||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:27:59.9660000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|714003|338A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|12564690|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8100|10000|||98.23|85.13|0.00|-0.16|0001B093|0|1| +38|2023-10-06T20:27:59.9660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8100|10000|9||98.23|85.13|0.00|-0.16|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:27:59.9660000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +261|2023-10-06T20:27:59.4350000-07:00|Change|40022BEF||||||||| +261|2023-10-06T20:27:59.5370000-07:00|Change|40022BE7||||||||| +261|2023-10-06T20:27:59.6500000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:27:59.6500000-07:00|Change|40022BEA||||||||| +21|2023-10-06T20:28:00.1000000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12538558|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4325|10000|||102.64|83.24|0.00|-1.58|0001B094|0|1| +261|2023-10-06T20:27:59.7640000-07:00|Change|40022BF4||||||||| +39|2023-10-06T20:28:00.2330000-07:00|10FF0007|Kehabiqo Febiqo|118275|128564|10000|10000|||102.77|88.47|0.00|-1.38| +37|2023-10-06T20:28:00.3220000-07:00|40022550|Zeromus|0001B088|12525289||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:00.3670000-07:00|10FF0003|Gegehi Gehi|71398|73085|4850|10000|||101.27|82.62|0.00|-1.35| +21|2023-10-06T20:28:00.3670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12538558|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8100|10000|||95.96|85.17|0.00|-0.41|0001B095|0|1| +31|2023-10-06T20:28:00.3670000-07:00|10FF0001||||| +261|2023-10-06T20:27:59.8770000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:28:00.4110000-07:00|40022550|Zeromus|0001B092|12516860||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:00.4560000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||98.30|84.15|0.00|-0.11| +261|2023-10-06T20:28:00.1130000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:28:00.2030000-07:00|Change|40022C22||||||||| +21|2023-10-06T20:28:00.5890000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|750003|6F2C0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|12516860|40478540|10000|10000|||100.00|80.10|0.00|0.00|71398|73085|4850|10000|||100.16|82.90|-0.02|-1.34|0001B096|0|1| +34|2023-10-06T20:28:00.5890000-07:00|40022C22|Carbuncle|40022C22|Carbuncle|01| +37|2023-10-06T20:28:00.6330000-07:00|40022550|Zeromus|0001B094|12516800||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:00.2030000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:28:00.6790000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|350003|26CA0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|12516860|40478540|10000|10000|||100.00|80.10|0.00|0.00|73667|79111|6700|10000|||99.78|83.62|0.00|-1.43|0001B097|0|1| +261|2023-10-06T20:28:00.2030000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:28:00.2970000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:28:00.2970000-07:00|Change|40022BF1||||||||| +261|2023-10-06T20:28:00.2970000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:28:00.2970000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:28:00.3910000-07:00|Change|40022BE9||||||||| +261|2023-10-06T20:28:00.3910000-07:00|Change|40022BEC||||||||| +37|2023-10-06T20:28:00.9010000-07:00|40022550|Zeromus|0001B095|12515084||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:00.9010000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||103.19|85.35|0.00|-1.64|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:00.9010000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:28:00.3910000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:28:00.4830000-07:00|Change|40022BF3||||||||| +39|2023-10-06T20:28:01.0340000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8300|10000|||92.88|84.52|0.00|0.98| +21|2023-10-06T20:28:01.1690000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|17E50000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|12515084|40478540|10000|10000|||100.00|80.10|0.00|0.00|118275|128564|10000|10000|||97.33|89.23|0.00|-1.48|0001B098|0|1| +39|2023-10-06T20:28:01.2130000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +24|2023-10-06T20:28:01.2130000-07:00|40022550|Zeromus|DoT|0|3132|12515084|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||101.48|85.42|0.00|-1.57| +38|2023-10-06T20:28:01.2130000-07:00|40022550|Zeromus|005A5A00|12502490|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:28:01.2580000-07:00|40022550|Zeromus|0001B093|12489296||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:01.2580000-07:00|10FF0001|Sesuga Sapisuga|0001B093|127791|127791|8700|10000|9||91.92|83.74|0.00|3.05|1300|0|0|0| +21|2023-10-06T20:28:01.2580000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F720003|470F0000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|12515084|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||94.07|83.56|0.00|0.02|0001B099|0|1| +38|2023-10-06T20:28:01.2580000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||94.07|83.56|0.00|0.02|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:01.2580000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:01.3010000-07:00|40022550|Zeromus|0001B097|12479366||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:01.3010000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3DA80000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|118275|128564|10000|10000|||95.89|88.98|0.00|2.74|12489296|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B09A|0|1| +261|2023-10-06T20:28:00.9070000-07:00|Change|10FF0007||||||||| +04|2023-10-06T20:28:00.9070000-07:00|40022BE7|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||85.98|119.66|0.00|2.50| +261|2023-10-06T20:28:00.9070000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:28:00.9070000-07:00|Remove|40022BE7| +261|2023-10-06T20:28:01.0230000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:28:01.5230000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4530|10000|||94.69|83.67|0.00|-1.40| +261|2023-10-06T20:28:01.1410000-07:00|Change|40022BE6||||||||| +20|2023-10-06T20:28:01.5680000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|95.61|81.70|0.00|-1.75| +261|2023-10-06T20:28:01.1410000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:28:01.1410000-07:00|Change|40022BED||||||||| +261|2023-10-06T20:28:01.2330000-07:00|Change|40022BEF||||||||| +37|2023-10-06T20:28:01.7010000-07:00|40022550|Zeromus|0001B098|12473249||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:01.2330000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:28:01.2330000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:28:01.3300000-07:00|Change|40022BEA||||||||| +21|2023-10-06T20:28:01.7910000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|DFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12473249|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.96|85.28|0.00|-1.64|0001B09B|0|1| +261|2023-10-06T20:28:01.3300000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:28:01.8790000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.24|85.28|0.00|-1.65| +21|2023-10-06T20:28:01.8790000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|720003|24D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12473249|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.14|83.13|0.00|2.10|0001B09C|0|1| +21|2023-10-06T20:28:01.8790000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12473249|40478540|10000|10000|||100.00|80.10|0.00|0.00|73667|79111|6400|10000|||92.72|82.66|0.00|-1.77|0001B09D|0|1| +37|2023-10-06T20:28:01.9670000-07:00|40022550|Zeromus|0001B099|12455058||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:01.9670000-07:00|10FF0002|Suchichi Suchi|0001B099|90128|90128|10000|10000|8||93.07|83.01|0.00|1.96|1600|0|0|01|0322|0|41F00000|| +38|2023-10-06T20:28:01.9670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.07|83.01|0.00|1.96|0|0|0||||||||||||||||||| +21|2023-10-06T20:28:02.0110000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|17610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12473249|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.07|83.01|0.00|1.96|0001B09E|0|1| +39|2023-10-06T20:28:02.0550000-07:00|10FF0008|Kokosaze Lulusaze|74458|79111|6600|10000|||92.33|82.58|0.00|-1.79| +37|2023-10-06T20:28:02.1010000-07:00|10FF0007|Kehabiqo Febiqo|0001B09A|102491||||||93.23|85.46|0.00|-2.82| +38|2023-10-06T20:28:02.1010000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.07|83.01|0.00|1.96|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:02.1010000-07:00|32|Sprint|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|1E|90128|90128| +261|2023-10-06T20:28:01.7350000-07:00|Change|40022C22||||||||| +37|2023-10-06T20:28:02.1450000-07:00|40022550|Zeromus|0001B096|12426598||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:02.1450000-07:00|10FF0004|Buhojaqe Zijaqe|74781|80739|5300|10000|||95.05|81.62|0.00|1.87| +20|2023-10-06T20:28:02.1450000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|92.27|82.57|0.00|-1.79| +04|2023-10-06T20:28:01.7350000-07:00|40022BF4|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|119.66|0.00|-2.23| +261|2023-10-06T20:28:01.7350000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:28:01.7350000-07:00|Remove|40022BF4| +261|2023-10-06T20:28:01.8530000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:28:01.8530000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:28:02.2780000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14F10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|102491|128564|10000|10000|||92.32|84.44|0.00|-3.06|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001B09F|0|1| +21|2023-10-06T20:28:02.2790000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12426598|40478540|10000|10000|||100.00|80.10|0.00|0.00|71398|73085|4450|10000|||92.89|82.08|0.00|-2.36|0001B0A0|0|1| +37|2023-10-06T20:28:02.3230000-07:00|40022550|Zeromus|0001B09B|12423017||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:02.3230000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|90.74|83.31|0.00|-2.22| +37|2023-10-06T20:28:02.4120000-07:00|40022550|Zeromus|0001B09D|12422859||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:01.9670000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:28:02.4570000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|714003|33670000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|12422859|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8700|10000|||91.21|82.65|0.00|1.85|0001B0A1|0|1| +38|2023-10-06T20:28:02.4570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|9||91.21|82.65|0.00|1.85|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:02.4570000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:28:01.9670000-07:00|Change|40022BF1||||||||| +37|2023-10-06T20:28:02.5010000-07:00|40022550|Zeromus|0001B09C|12413427||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:02.5010000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|33140000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|12422859|40478540|10000|10000|||100.00|80.10|0.00|0.00|74781|80739|5300|10000|||95.05|81.62|0.00|1.87|0001B0A2|0|1| +261|2023-10-06T20:28:02.0810000-07:00|Change|40022BE9||||||||| +37|2023-10-06T20:28:02.5450000-07:00|40022550|Zeromus|0001B09E|12407442||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:02.0810000-07:00|Change|40022BEC||||||||| +261|2023-10-06T20:28:02.1790000-07:00|Change|10FF0008||||||||||||||||||||||| +21|2023-10-06T20:28:02.6340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12407442|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8700|10000|||91.18|82.33|0.00|0.91|0001B0A3|0|1| +31|2023-10-06T20:28:02.6340000-07:00|10FF0001||||| +261|2023-10-06T20:28:02.2710000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:28:02.7670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12407442|40478540|10000|10000|||100.00|80.10|0.00|0.00|102491|128564|10000|10000|||91.55|82.90|0.00|3.02|0001B0A4|0|1| +37|2023-10-06T20:28:02.8120000-07:00|40022550|Zeromus|0001B0A0|12407411||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:02.8120000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12407442|40478540|10000|10000|||100.00|80.10|0.00|0.00|74781|80739|4900|10000|||95.04|81.63|0.00|1.15|0001B0A5|0|1| +20|2023-10-06T20:28:02.9900000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|92.42|81.32|0.00|-2.75| +04|2023-10-06T20:28:02.5660000-07:00|40022BF3|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||113.97|119.66|0.00|-2.32| +261|2023-10-06T20:28:02.5660000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:28:02.5660000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:28:02.5660000-07:00|Remove|40022BF3| +37|2023-10-06T20:28:03.0780000-07:00|10FF0007|Kehabiqo Febiqo|0001B09F|107852||||||91.33|82.60|-0.02|2.99| +37|2023-10-06T20:28:03.1680000-07:00|40022550|Zeromus|0001B0A3|12404551||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:02.7820000-07:00|Change|40022BE6||||||||| +39|2023-10-06T20:28:03.2580000-07:00|10FF0007|Kehabiqo Febiqo|109137|128564|10000|10000|||91.33|82.60|-0.02|2.99| +21|2023-10-06T20:28:03.2580000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37E90000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|12407411|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4530|10000|||90.78|83.05|0.00|1.88|0001B0A6|0|1| +261|2023-10-06T20:28:02.7820000-07:00|Change|40022BED||||||||| +37|2023-10-06T20:28:03.3030000-07:00|40022550|Zeromus|0001B0A4|12401393||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:03.3030000-07:00|40022550|Zeromus|0001B0A2|12388317||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:02.7820000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:28:03.3480000-07:00|40022550|Zeromus|0001B0A5|12388167||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:02.8960000-07:00|Change|40022BEF||||||||| +39|2023-10-06T20:28:03.3930000-07:00|10FF0003|Gegehi Gehi|72128|73085|4650|10000|||92.42|81.32|0.00|2.04| +04|2023-10-06T20:28:02.8960000-07:00|40022C0B|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|75851|0|10000|||109.26|96.51|0.00|-2.72| +261|2023-10-06T20:28:02.8960000-07:00|Remove|40022C0B| +39|2023-10-06T20:28:03.4360000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||93.00|82.79|0.00|3.06| +261|2023-10-06T20:28:02.8960000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:28:03.6150000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32716003|439C0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|12388167|40478540|10000|10000|||100.00|80.10|0.00|0.00|109137|128564|10000|10000|||91.33|82.60|0.00|2.88|0001B0A7|0|1| +261|2023-10-06T20:28:03.2280000-07:00|Change|40022C22||||||||| +37|2023-10-06T20:28:03.7490000-07:00|40022550|Zeromus|0001B0A1|12375008||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:03.7490000-07:00|10FF0001|Sesuga Sapisuga|0001B0A1|127791|127791|9100|10000|9||91.01|82.13|0.00|-2.25|1300|0|0|0| +21|2023-10-06T20:28:03.7490000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D722003|45C60000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|12388167|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.00|82.78|0.00|-3.13|0001B0A8|0|1| +38|2023-10-06T20:28:03.7490000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.00|82.78|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:03.7490000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:28:03.7490000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:28:03.3230000-07:00|Change|10FF0001||||||||| +04|2023-10-06T20:28:03.3230000-07:00|40022BEA|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||93.98|119.67|0.00|-2.43| +261|2023-10-06T20:28:03.3230000-07:00|Remove|40022BEA| +21|2023-10-06T20:28:03.8820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12375008|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4130|10000|||90.79|83.04|0.00|2.18|0001B0A9|0|1| +24|2023-10-06T20:28:03.9270000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|2385|109137|128564|10000|10000|||91.33|82.60|0.00|1.85|10FF0006|Wowobora Gogobora|1|80739|80739|4130|10000|||90.79|83.04|0.00|2.18| +37|2023-10-06T20:28:03.9270000-07:00|40022550|Zeromus|0001B0A6|12360695||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:03.9280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118230|128564|10000|10000|0||91.33|82.60|0.00|1.85|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:03.9280000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +20|2023-10-06T20:28:03.9720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|92.17|82.32|-0.02|-2.12| +261|2023-10-06T20:28:03.5110000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:28:03.6080000-07:00|Change|40022BF1||||||||| +39|2023-10-06T20:28:04.0160000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9300|10000|||91.01|82.13|0.00|-2.25| +261|2023-10-06T20:28:03.7220000-07:00|Change|40022BE9||||||||| +24|2023-10-06T20:28:04.1950000-07:00|40022550|Zeromus|DoT|0|31E2|12360695|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||88.31|83.79|0.00|2.76| +38|2023-10-06T20:28:04.1950000-07:00|40022550|Zeromus|005A5A00|12347925|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:28:04.2400000-07:00|40022550|Zeromus|0001B0A7|12330617||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:04.2400000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +20|2023-10-06T20:28:04.2400000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|88.31|83.79|0.00|2.76| +21|2023-10-06T20:28:04.3290000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42240000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|118230|128564|10000|10000|||91.33|82.60|0.00|1.85|12360695|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B0AA|0|1| +261|2023-10-06T20:28:03.8330000-07:00|Change|10FF0003||||||| +261|2023-10-06T20:28:03.8330000-07:00|Change|10FF0005||||||||||||||||||||| +37|2023-10-06T20:28:04.3730000-07:00|40022550|Zeromus|0001B0A8|12312755||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:04.3730000-07:00|10FF0002|Suchichi Suchi|0001B0A8|90128|90128|10000|10000|8||93.00|82.78|0.00|1.94|1600|0|0|01|03000323|0|41F00000|| +38|2023-10-06T20:28:04.3730000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.00|82.78|0.00|1.94|0|0|0||||||||||||||||||| +37|2023-10-06T20:28:04.4180000-07:00|40022550|Zeromus|0001B0A9|12312716||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:04.4180000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|33CB0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|12330617|40478540|10000|10000|||100.00|80.10|0.00|0.00|72128|73085|4650|10000|||92.42|81.32|0.00|1.73|0001B0AB|0|1| +38|2023-10-06T20:28:04.4180000-07:00|10FF0003|Gegehi Gehi|005A5A23|72128|73085|4450|10000|10||92.42|81.32|0.00|1.73|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:28:04.4180000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:28:04.4180000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +39|2023-10-06T20:28:04.5070000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4335|10000|||91.11|81.87|-0.01|2.91| +261|2023-10-06T20:28:04.0560000-07:00|Change|10FF0006||||||||| +04|2023-10-06T20:28:04.1470000-07:00|40022BEC|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||97.98|119.66|0.00|-2.30| +261|2023-10-06T20:28:04.1470000-07:00|Remove|40022BEC| +21|2023-10-06T20:28:04.5970000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|350003|47790000|16FC0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|12312716|40478540|10000|10000|||100.00|80.10|0.00|0.00|74458|79111|6600|10000|||92.27|82.57|0.00|1.88|0001B0AC|0|1| +261|2023-10-06T20:28:04.1470000-07:00|Change|10FF0008||||||||||||||| +38|2023-10-06T20:28:04.5970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|74458|79111|6600|10000|15||92.27|82.57|0.00|1.88|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:04.5970000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:28:04.7300000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|720003|3A670000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|12312716|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.00|82.78|0.00|1.94|0001B0AD|0|1| +20|2023-10-06T20:28:04.7300000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|91.11|81.86|0.00|2.91| +38|2023-10-06T20:28:04.7300000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.00|82.78|0.00|1.94|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:04.7300000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:28:04.2380000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T20:28:04.8200000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|E720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12312716|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.00|82.78|0.00|1.94|0001B0AE|0|1| +39|2023-10-06T20:28:04.8640000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||90.41|82.52|0.00|1.83| +261|2023-10-06T20:28:04.4320000-07:00|Change|40022BE6||||||||| +21|2023-10-06T20:28:04.9100000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12312716|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9300|10000|||91.01|82.13|0.00|1.79|0001B0AF|0|1| +21|2023-10-06T20:28:04.9100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|53A00000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|12312716|40478540|10000|10000|||100.00|80.10|0.00|0.00|74781|80739|4900|10000|||92.06|82.26|0.00|1.84|0001B0B0|0|1| +31|2023-10-06T20:28:04.9100000-07:00|10FF0001||||| +261|2023-10-06T20:28:04.4320000-07:00|Change|40022BED||||||||| +21|2023-10-06T20:28:04.9540000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|2B9A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|12312716|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9300|10000|||91.01|82.13|0.00|1.79|0001B0B1|0|1| +38|2023-10-06T20:28:04.9540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9300|10000|9||91.01|82.13|0.00|1.79|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:04.9540000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +21|2023-10-06T20:28:04.9980000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|752003|F7170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12312716|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||90.44|82.51|0.00|1.82|0001B0B2|0|1| +38|2023-10-06T20:28:04.9980000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||90.44|82.51|0.00|1.82|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:04.9980000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:28:04.9980000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:28:04.5230000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T20:28:05.0420000-07:00|10FF0008|Kokosaze Lulusaze|75249|79111|6800|10000|||92.27|82.57|0.00|1.88| +21|2023-10-06T20:28:05.0860000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|230F|A788000|0|0|0|0|0|0|0|0|0|0|118230|128564|10000|10000|||91.10|82.50|0.00|3.01|118230|128564|10000|10000|||91.10|82.50|0.00|3.01|0001B0B3|0|1| +261|2023-10-06T20:28:04.5230000-07:00|Change|10FF0008||| +37|2023-10-06T20:28:05.1300000-07:00|10FF0007|Kehabiqo Febiqo|0001B0AA|101298||||||91.08|82.47|-0.02|3.10| +39|2023-10-06T20:28:05.1300000-07:00|10FF0004|Buhojaqe Zijaqe|75588|80739|4700|10000|||92.06|82.26|0.00|1.84| +37|2023-10-06T20:28:05.2200000-07:00|40022550|Zeromus|0001B0AD|12297765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:05.2200000-07:00|10FF0002|Suchichi Suchi|0001B0AD|90128|90128|10000|10000|8||93.00|82.78|0.00|1.94|1600|0|0|01|04DB|0|41700000|| +37|2023-10-06T20:28:05.2200000-07:00|40022550|Zeromus|0001B0AB|12284506||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:05.2200000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.00|82.78|0.00|1.94|0|0|0||||||||||||||||||| +261|2023-10-06T20:28:04.8770000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T20:28:04.8770000-07:00|Change|10FF0005||||||||||||||||||||| +37|2023-10-06T20:28:05.3540000-07:00|40022550|Zeromus|0001B0AE|12280808||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:28:04.9910000-07:00|40022BEF|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||105.97|119.65|0.00|-2.22| +261|2023-10-06T20:28:04.9910000-07:00|Remove|40022BEF| +37|2023-10-06T20:28:05.4440000-07:00|40022550|Zeromus|0001B0AF|12278947||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:05.4440000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|497B0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|12280808|40478540|10000|10000|||100.00|80.10|0.00|0.00|72128|73085|4450|10000|||92.38|81.32|-0.02|2.48|0001B0B4|0|1| +38|2023-10-06T20:28:05.4440000-07:00|10FF0003|Gegehi Gehi|005A5A23|72128|73085|4150|10000|10||92.38|81.32|-0.02|2.48|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:05.4440000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:28:05.4440000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:28:05.1020000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T20:28:05.5320000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|22A80000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|75588|80739|4700|10000|||92.06|82.26|0.00|1.84|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001B0B5|0|1| +39|2023-10-06T20:28:05.5320000-07:00|40022C22|Carbuncle|75851|75851|10000|10000|||92.85|84.37|0.00|-1.64| +38|2023-10-06T20:28:05.5320000-07:00|10FF0003|Gegehi Gehi|005A5A23|72128|73085|4150|10000|10||92.24|81.32|0.00|1.72|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:05.5320000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:28:05.5800000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|722003|2EFE0000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|12278947|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.00|82.78|0.00|1.94|0001B0B6|0|1| +38|2023-10-06T20:28:05.5800000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.00|82.78|0.00|1.94|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:05.5800000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:28:05.6240000-07:00|40022550|Zeromus|DoT|A92|860|12278947|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|75249|79111|6800|10000|||92.27|82.57|0.00|1.88| +37|2023-10-06T20:28:05.6240000-07:00|40022550|Zeromus|0001B0AC|12258506||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:05.6240000-07:00|10FF0008|Kokosaze Lulusaze|0001B0AC|75249|79111|6800|10000|15||92.27|82.57|0.00|1.88|1B00|0|0|01|02000A92|0|41700000|| +26|2023-10-06T20:28:05.6240000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:28:05.6240000-07:00|40022550|Zeromus|0001B0B2|12195251||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:05.6240000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|12278947|40478540|10000|10000|||100.00|80.10|0.00|0.00|75249|79111|6800|10000|||92.27|82.57|0.00|1.88|0001B0B7|0|1| +38|2023-10-06T20:28:05.6240000-07:00|40022C22|Carbuncle|005A5A00|0|75851|0|10000|0||92.85|84.37|0.00|-1.64|0|0|0|||| +26|2023-10-06T20:28:05.6240000-07:00|30|Well Fed|1973.84|10FF0008|Kokosaze Lulusaze|40022C22|Carbuncle|2964|75851|79111| +38|2023-10-06T20:28:05.6240000-07:00|40022550|Zeromus|005A5A00|12195251|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:28:05.6240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75249|79111|6800|10000|15||92.27|82.57|0.00|1.88|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:05.6240000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:05.1020000-07:00|Change|40022C22||||||| +261|2023-10-06T20:28:05.1020000-07:00|Change|40022C22||||||| +38|2023-10-06T20:28:05.6660000-07:00|40022C63||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T20:28:05.6660000-07:00|10FF0007|Kehabiqo Febiqo|0001B0B3|101298|128564|10000|10000|7||91.08|82.47|0.00|3.10|1500|0|0|03|04000A76|0190|41000000|||||||||| +26|2023-10-06T20:28:05.6660000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +26|2023-10-06T20:28:05.6660000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:28:05.6660000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +21|2023-10-06T20:28:05.6670000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|469E0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|12195251|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4335|10000|||91.11|81.86|0.00|1.77|0001B0B8|0|1| +38|2023-10-06T20:28:05.6670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101298|128564|10000|10000|7||91.08|82.47|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:05.6670000-07:00|40022C63||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T20:28:05.6670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||90.44|82.51|0.00|1.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:05.6670000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|90055|73085| +37|2023-10-06T20:28:05.7110000-07:00|40022550|Zeromus|0001B0B0|12173843||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:05.7110000-07:00|10FF0003|Gegehi Gehi|005A5A23|72128|73085|4150|10000|10||92.11|81.32|0.00|1.72|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:28:05.2990000-07:00|Change|40022BF1||||||||| +21|2023-10-06T20:28:05.8000000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12173843|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||90.50|82.50|-0.02|1.75|0001B0B9|0|1| +38|2023-10-06T20:28:05.8000000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.00|82.78|0.00|1.94|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:05.8000000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|90128|73085| +261|2023-10-06T20:28:05.2990000-07:00|Add|40022C64||||||||||||||||||||||||||||||| +03|2023-10-06T20:28:05.2990000-07:00|40022C63|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|72376|75851|10000|10000|||91.14|84.78|0.00|1.88| +261|2023-10-06T20:28:05.2990000-07:00|Add|40022C63||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:05.3980000-07:00|Change|40022C63||||| +38|2023-10-06T20:28:05.9320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75249|79111|6800|10000|15||92.27|82.57|0.00|1.88|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:05.9320000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|79111|73085| +38|2023-10-06T20:28:05.9320000-07:00|40022C63|Ruby Ifrit|005A5A00|72376|75851|10000|10000|0||91.14|84.78|0.00|1.88|0|0|0|||| +26|2023-10-06T20:28:05.9320000-07:00|30|Well Fed|1973.53|10FF0008|Kokosaze Lulusaze|40022C63|Ruby Ifrit|2964|75851|79111| +261|2023-10-06T20:28:05.5020000-07:00|Change|10FF0004||| +21|2023-10-06T20:28:06.0670000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F716003|63840000|143E|340000|200004|3E298000|4|17138000|11B|2A8000|0|0|0|0|0|0|12173843|40478540|10000|10000|||100.00|80.10|0.00|0.00|101298|128564|10000|10000|||91.08|82.47|0.00|3.10|0001B0BA|0|1| +38|2023-10-06T20:28:06.0670000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|-2.82|0|0|0|||| +30|2023-10-06T20:28:06.0670000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022B84|Ruby Carbuncle|00|77430|73085| +38|2023-10-06T20:28:06.0670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75588|80739|4700|10000|15||92.06|82.26|0.00|1.84|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:06.0670000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|80739|73085| +21|2023-10-06T20:28:06.1550000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12173843|40478540|10000|10000|||100.00|80.10|0.00|0.00|101298|128564|10000|10000|||91.08|82.47|0.00|3.10|0001B0BB|0|1| +37|2023-10-06T20:28:06.1990000-07:00|40022550|Zeromus|0001B0B4|12155032||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:06.1990000-07:00|10FF0003|Gegehi Gehi|0001B0B4|72128|73085|4150|10000|10||91.84|81.32|0.00|1.72|2300|0|0|01|020004D2|0|41F00000|| +21|2023-10-06T20:28:06.2000000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|722003|6D240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12173843|40478540|10000|10000|||100.00|80.10|0.00|0.00|72128|73085|4150|10000|||91.84|81.32|0.00|1.72|0001B0BC|0|1| +38|2023-10-06T20:28:06.2000000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3935|10000|9||91.11|81.86|0.00|1.77|0|0|0||||||||||||| +26|2023-10-06T20:28:06.2000000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:28:06.2000000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|80739|73085| +38|2023-10-06T20:28:06.2000000-07:00|10FF0003|Gegehi Gehi|005A5A23|72128|73085|4150|10000|10||91.84|81.32|0.00|1.72|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:28:06.2450000-07:00|40022550|Zeromus|0001B0B1|12143870||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:06.2450000-07:00|10FF0001|Sesuga Sapisuga|0001B0B1|127791|127791|9700|10000|9||91.01|82.13|0.00|1.79|1300|0|0|0| +39|2023-10-06T20:28:06.2450000-07:00|10FF0007|Kehabiqo Febiqo|102583|128564|10000|10000|||91.08|82.47|0.00|1.83| +21|2023-10-06T20:28:06.2450000-07:00|40022567|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||107.00|107.00|0.00|0.79|0001B0BD|0|0| +21|2023-10-06T20:28:06.2450000-07:00|40022568|Zeromus|8CF8|unknown_8cf8|40022568|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||107.00|107.00|0.00|0.79|44|44|0|10000|||107.00|107.00|0.00|0.79|0001B0BE|0|1| +21|2023-10-06T20:28:06.2460000-07:00|40022569|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||93.00|107.00|0.00|0.79|0001B0BF|0|0| +21|2023-10-06T20:28:06.2460000-07:00|4002256A|Zeromus|8CF8|unknown_8cf8|4002256A|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||93.00|107.00|0.00|0.79|44|44|0|10000|||93.00|107.00|0.00|0.79|0001B0C0|0|1| +21|2023-10-06T20:28:06.2460000-07:00|4002256B|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||93.00|93.00|0.00|0.79|0001B0C1|0|0| +21|2023-10-06T20:28:06.2460000-07:00|4002256C|Zeromus|8CF8|unknown_8cf8|4002256C|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||93.00|93.00|0.00|0.79|44|44|0|10000|||93.00|93.00|0.00|0.79|0001B0C2|0|1| +21|2023-10-06T20:28:06.2900000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A726003|6DBA0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|12173843|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.03|82.78|0.00|1.87|0001B0C3|0|1| +04|2023-10-06T20:28:05.8200000-07:00|40022BE9|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||89.98|119.67|0.00|2.72| +261|2023-10-06T20:28:05.8200000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:28:05.8200000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:28:05.8200000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:28:05.8200000-07:00|Change|4002256B||||||||||||| +38|2023-10-06T20:28:06.2900000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.03|82.78|0.00|1.87|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:06.2900000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:28:06.2900000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:06.3350000-07:00|10FF0004|Buhojaqe Zijaqe|0001B0B5|80739||||||92.06|82.26|0.00|1.84| +24|2023-10-06T20:28:06.3350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15E7|101298|128564|10000|10000|||91.08|82.47|0.00|1.83|10FF0006|Wowobora Gogobora|0|80739|80739|3935|10000|||91.11|81.86|0.00|1.77| +37|2023-10-06T20:28:06.3350000-07:00|40022550|Zeromus|0001B0B8|12125792||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:05.8200000-07:00|Change|4002256A||||||||||||| +37|2023-10-06T20:28:06.3350000-07:00|40022550|Zeromus|0001B0B9|12121692||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:06.3350000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|92.06|82.26|0.00|1.84| +38|2023-10-06T20:28:06.3350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108190|128564|10000|10000|7||91.08|82.47|0.00|1.83|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:06.3350000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:28:06.3350000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|128564|73085| +261|2023-10-06T20:28:05.8200000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:28:05.9300000-07:00|Change|10FF0001||| +261|2023-10-06T20:28:05.9300000-07:00|Change|10FF0003||||||| +261|2023-10-06T20:28:05.9300000-07:00|Remove|40022BE9| +37|2023-10-06T20:28:06.3790000-07:00|40022550|Zeromus|0001B0B6|12109662||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:06.3790000-07:00|10FF0002|Suchichi Suchi|0001B0B6|90128|90128|10000|10000|8||93.06|82.78|0.00|1.95|1600|0|0|01|0747|0|C1F00000|| +39|2023-10-06T20:28:06.3790000-07:00|10FF0003|Gegehi Gehi|72858|73085|4350|10000|||91.84|81.32|0.00|1.72| +21|2023-10-06T20:28:06.4240000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|712003|57B50000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|12121692|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||91.35|82.39|0.00|1.67|0001B0C4|0|1| +38|2023-10-06T20:28:06.4240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||91.35|82.39|0.00|1.67|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:06.4240000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +39|2023-10-06T20:28:06.4690000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||93.06|82.78|0.00|1.95| +38|2023-10-06T20:28:06.4690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9700|10000|9||91.01|82.13|0.00|1.79|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:06.4690000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|127791|73085| +261|2023-10-06T20:28:06.0440000-07:00|Change|10FF0006||||||||||||||||||||| +24|2023-10-06T20:28:06.5580000-07:00|40022550|Zeromus|DoT|A92|883|12109662|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|75249|79111|6800|10000|||92.27|82.57|0.00|1.88| +38|2023-10-06T20:28:06.5580000-07:00|40022550|Zeromus|005A5A00|12107483|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:28:06.5580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75249|79111|6800|10000|15||92.27|82.57|0.00|1.88|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:28:06.6460000-07:00|10FF0008|Kokosaze Lulusaze|0001B0B7|75249|79111|6800|10000|15||92.27|82.57|0.00|1.88|1B00|0|0|01|03000AA4|0|0|| +38|2023-10-06T20:28:06.6460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75249|79111|6800|10000|15||92.27|82.57|0.00|1.88|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:28:06.1560000-07:00|Change|40022BE6||||||||| +37|2023-10-06T20:28:06.6910000-07:00|40022550|Zeromus|0001B0BB|12104500||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:06.2470000-07:00|Change|40022C63||| +37|2023-10-06T20:28:06.9580000-07:00|40022550|Zeromus|0001B0C3|12076410||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:06.9580000-07:00|10FF0002|Suchichi Suchi|0001B0C3|90128|90128|10000|10000|8||93.56|82.73|0.00|1.76|1600|0|0|01|0747|0|41F00000|| +37|2023-10-06T20:28:06.9580000-07:00|40022550|Zeromus|0001B0C4|12053957||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:06.9580000-07:00|10FF0005|Wuwuchu Wuchu|0001B0C4|90055|90055|10000|10000|8||91.60|82.35|0.00|1.84|2700|0|0|01|02000A1B|01|41F00000|| +38|2023-10-06T20:28:06.9580000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|8||93.56|82.73|0.00|1.76|0|0|0||||||||||||||||||| +38|2023-10-06T20:28:06.9580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||91.60|82.35|0.00|1.84|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T20:28:07.0030000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9900|10000|||91.01|82.13|0.00|1.79| +04|2023-10-06T20:28:06.5580000-07:00|40022BED|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||101.98|119.66|0.00|-2.25| +261|2023-10-06T20:28:06.5580000-07:00|Remove|40022BED| +261|2023-10-06T20:28:06.5580000-07:00|Change|10FF0004||||||||||||| +24|2023-10-06T20:28:07.1810000-07:00|40022550|Zeromus|DoT|0|2DD0|12053957|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||91.66|82.35|0.00|1.84| +20|2023-10-06T20:28:07.1810000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|92.59|85.04|0.00|0.49| +21|2023-10-06T20:28:07.1810000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|A910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12053957|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9900|10000|||91.03|82.14|0.00|0.88|0001B0C5|0|1| +38|2023-10-06T20:28:07.1810000-07:00|40022550|Zeromus|005A5A00|12042229|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +31|2023-10-06T20:28:07.1810000-07:00|10FF0001||||| +39|2023-10-06T20:28:07.2250000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|3.04| +21|2023-10-06T20:28:07.2250000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12053957|40478540|10000|10000|||100.00|80.10|0.00|0.00|72858|73085|4350|10000|||91.84|81.32|0.00|1.72|0001B0C6|0|1| +21|2023-10-06T20:28:07.2250000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|48140000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|12053957|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||91.66|82.35|0.00|1.84|0001B0C7|0|1| +38|2023-10-06T20:28:07.2250000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||91.66|82.35|0.00|1.84|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:07.2250000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:28:07.2250000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:28:07.2250000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:28:07.2700000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|52970000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|12042229|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4700|10000|||92.06|82.26|0.00|1.84|0001B0C8|0|1| +37|2023-10-06T20:28:07.3590000-07:00|40022550|Zeromus|0001B0BC|12014289||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:07.3590000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|E110000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|108190|128564|10000|10000|||91.08|82.52|0.00|1.72|12042229|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B0C9|0|1| +261|2023-10-06T20:28:06.9180000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:28:06.9180000-07:00|Change|10FF0003||| +21|2023-10-06T20:28:07.4490000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|756003|5FD00000|200004|3CB18000|0|0|0|0|0|0|0|0|0|0|0|0|12014289|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9900|10000|||91.79|82.75|0.00|0.92|0001B0CA|0|1| +38|2023-10-06T20:28:07.4490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8900|10000|9||91.79|82.75|0.00|0.92|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:07.4490000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +39|2023-10-06T20:28:07.4920000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4140|10000|||92.76|85.36|0.00|1.40| +21|2023-10-06T20:28:07.5380000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12014289|40478540|10000|10000|||100.00|80.10|0.00|0.00|75249|79111|6800|10000|||92.28|82.57|-0.02|1.87|0001B0CB|0|1| +37|2023-10-06T20:28:07.5820000-07:00|40022550|Zeromus|0001B0BA|11988813||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:07.5820000-07:00|10FF0007|Kehabiqo Febiqo|0001B0BA|128564||||||91.33|82.88|0.00|1.57| +261|2023-10-06T20:28:07.1520000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:28:07.6270000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|EA50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11988813|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||93.95|86.13|0.00|1.68|0001B0CC|0|1| +261|2023-10-06T20:28:07.2550000-07:00|Change|40022C22||| +37|2023-10-06T20:28:07.7160000-07:00|40022550|Zeromus|0001B0C5|11986108||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:07.7160000-07:00|40022550|Zeromus|0001B0C7|11967656||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:07.7160000-07:00|10FF0005|Wuwuchu Wuchu|0001B0C7|90055|90055|10000|10000|8||91.66|82.35|0.00|1.82|2700|0|0|01|02000A1D|0|42700000|| +21|2023-10-06T20:28:07.7160000-07:00|40022C63|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|152003|927D0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|11988813|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||91.14|84.78|0.00|1.88|0001B0CD|0|1| +38|2023-10-06T20:28:07.7160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|8||91.66|82.35|0.00|1.82|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:28:07.7610000-07:00|40022550|Zeromus|0001B0C6|11967617||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:07.8490000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|91.84|81.32|0.00|1.72| +39|2023-10-06T20:28:07.8940000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||92.07|82.75|0.00|1.78| +04|2023-10-06T20:28:07.4550000-07:00|40022BF1|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||109.97|119.66|0.00|-2.47| +261|2023-10-06T20:28:07.4550000-07:00|Remove|40022BF1| +21|2023-10-06T20:28:07.9380000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11967617|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4300|10000|||92.13|82.37|-0.02|1.74|0001B0CE|0|1| +261|2023-10-06T20:28:07.5600000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:28:07.5600000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:28:08.0260000-07:00|10FF0008|Kokosaze Lulusaze|76040|79111|7000|10000|||93.93|83.71|0.00|1.25| +37|2023-10-06T20:28:08.0710000-07:00|40022550|Zeromus|0001B0CB|11967441||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:08.0720000-07:00|40022550|Zeromus|0001B0C8|11946298||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:08.1170000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|150003|415B0000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|11967617|40478540|10000|10000|||100.00|80.10|0.00|0.00|75249|79111|6800|10000|||93.93|83.71|0.00|1.25|0001B0CF|0|1| +261|2023-10-06T20:28:07.7470000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:28:08.1170000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|42BE0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|11967617|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4140|10000|||92.91|85.65|0.00|2.24|0001B0D0|0|1| +38|2023-10-06T20:28:08.1170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|76040|79111|7000|10000|15||93.93|83.71|0.00|1.25|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:08.1170000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:28:08.1610000-07:00|40022550|Zeromus|0001B0CC|11942549||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:08.1610000-07:00|10FF0007|Kehabiqo Febiqo|0001B0C9|124963|128564|10000|10000|0||93.90|86.02|0.00|1.46|1500|0|0|01|07000000|0|0|| +39|2023-10-06T20:28:08.1610000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4500|10000|||92.61|83.09|0.00|1.09| +38|2023-10-06T20:28:08.1610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124963|128564|10000|10000|0||93.90|86.02|0.00|1.46|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:08.1610000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:28:07.7470000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T20:28:08.2050000-07:00|40022550|Zeromus|0001B0CA|11918021||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:07.9760000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T20:28:08.4720000-07:00|40022550|Zeromus|0001B0CE|11917874||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:07.9760000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:28:08.5180000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|78A30000|200004|3E6D8000|0|0|0|0|0|0|0|0|0|0|0|0|11918021|40478540|10000|10000|||100.00|80.10|0.00|0.00|124963|128564|10000|10000|||95.03|87.42|0.00|1.46|0001B0D1|0|1| +261|2023-10-06T20:28:08.0860000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:28:08.0860000-07:00|Remove|40022BE6| +04|2023-10-06T20:28:08.0860000-07:00|40022BE6|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||81.99|119.65|0.00|2.33| +21|2023-10-06T20:28:08.6510000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11917874|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3740|10000|||92.92|85.65|0.00|2.04|0001B0D2|0|1| +38|2023-10-06T20:28:08.6510000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||95.50|91.58|0.00|1.88|0|0|0|||||||||||||||| +30|2023-10-06T20:28:08.6510000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:28:08.6510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|76040|79111|7000|10000|0||95.25|85.15|0.00|2.23|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:08.6510000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:28:08.6510000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3740|10000|0||92.92|85.65|0.00|2.04|0|0|0|||||||||| +26|2023-10-06T20:28:08.6510000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:28:08.6510000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:08.6510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8900|10000|0||97.83|86.43|0.00|1.05|0|0|0||||||| +30|2023-10-06T20:28:08.6510000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:28:08.6510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4500|10000|0||93.81|85.48|0.00|0.57|0|0|0|||||||||| +30|2023-10-06T20:28:08.6510000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:28:08.6510000-07:00|10FF0003|Gegehi Gehi|005A5A23|72858|73085|4350|10000|0||91.84|81.32|0.00|1.72|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:08.6510000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:28:08.6510000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||94.60|86.68|0.00|1.01|0|0|0||||||||||||| +30|2023-10-06T20:28:08.6510000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:28:08.1860000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:28:08.7400000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|143C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|124963|128564|10000|10000|||96.06|88.66|0.00|2.68|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001B0D3|0|1| +24|2023-10-06T20:28:08.7840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|156F|124963|128564|10000|10000|||96.06|88.66|0.00|2.68|10FF0006|Wowobora Gogobora|0|80739|80739|3740|10000|||92.92|85.66|0.00|1.70| +37|2023-10-06T20:28:08.7840000-07:00|40022550|Zeromus|0001B0D0|11900788||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:08.7840000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|726003|4E000000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|11917874|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||95.78|92.35|0.00|1.89|0001B0D4|0|1| +38|2023-10-06T20:28:08.7840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||96.06|88.66|0.00|2.68|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:08.7840000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:08.7840000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||95.78|92.35|0.00|1.89|0|0|0|||||||||||||||| +30|2023-10-06T20:28:08.7840000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:28:08.8730000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|3740|10000|||92.93|85.67|0.00|1.37|80739|80739|3740|10000|||92.93|85.67|0.00|1.37|0001B0D5|0|1| +261|2023-10-06T20:28:08.3710000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:28:08.3710000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:28:08.9620000-07:00|40022550|Zeromus|0001B0CF|11884057||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:09.0070000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|14170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11884057|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.13|89.19|0.00|0.61|0001B0D6|0|1| +261|2023-10-06T20:28:08.5780000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:28:09.1840000-07:00|40022550|Zeromus|0001B0D1|11853174||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:09.1840000-07:00|40022550|Zeromus|0001B0D2|11853138||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:09.1840000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|712003|49D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11884057|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.05|88.54|-0.02|2.68|0001B0D7|0|1| +261|2023-10-06T20:28:08.6930000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:28:09.2270000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||96.55|87.77|0.00|2.71| +21|2023-10-06T20:28:09.2730000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|454003|3BF30000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|11853138|40478540|10000|10000|||100.00|80.10|0.00|0.00|72858|73085|4350|10000|||91.84|81.32|0.00|1.72|0001B0D8|0|1| +38|2023-10-06T20:28:09.2730000-07:00|10FF0003|Gegehi Gehi|005A5A23|72858|73085|4150|10000|0||91.84|81.32|0.00|1.72|0|0|0|||||||||| +26|2023-10-06T20:28:09.2730000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:28:09.2730000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +39|2023-10-06T20:28:09.3610000-07:00|10FF0003|Gegehi Gehi|73085|73085|4350|10000|||91.84|81.32|0.00|1.72| +37|2023-10-06T20:28:09.4070000-07:00|40022550|Zeromus|0001B0D4|11833170||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:28:08.9240000-07:00|40022C22|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||92.85|84.37|0.00|-1.64| +261|2023-10-06T20:28:08.9240000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:28:08.9240000-07:00|Remove|40022C22| +39|2023-10-06T20:28:09.4510000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||97.33|95.41|0.00|2.14| +21|2023-10-06T20:28:09.4510000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11833170|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||102.49|88.81|0.00|1.18|0001B0D9|0|1| +31|2023-10-06T20:28:09.4510000-07:00|10FF0001||||| +37|2023-10-06T20:28:09.4950000-07:00|10FF0006|Wowobora Gogobora|0001B0D5|80739|80739|3740|10000|0||93.57|86.40|0.00|0.69|2800|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T20:28:09.4950000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:28:09.0470000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:28:09.5400000-07:00|40022550|Zeromus|0001B0D6|11828027||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:09.5400000-07:00|40022550|Zeromus|DoT|A92|65F|11833170|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|76040|79111|7000|10000|||97.04|88.30|0.00|0.87| +21|2023-10-06T20:28:09.5400000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|E8C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11833170|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||97.41|86.14|0.00|2.71|0001B0DA|0|1| +21|2023-10-06T20:28:09.5400000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|23910000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|11833170|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4500|10000|||95.42|91.29|0.00|0.30|0001B0DB|0|1| +38|2023-10-06T20:28:09.5400000-07:00|40022550|Zeromus|005A5A00|11826396|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +20|2023-10-06T20:28:09.5840000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|94.02|87.20|0.00|0.62| +261|2023-10-06T20:28:09.1580000-07:00|Change|10FF0006||||||||||||||||||||| +38|2023-10-06T20:28:09.6290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||97.41|86.14|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:09.6290000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:28:09.6730000-07:00|40022550|Zeromus|0001B0CD|11788895||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:09.7170000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|710003|3F0C0000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|11826396|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.09|92.59|0.00|0.34|0001B0DC|0|1| +37|2023-10-06T20:28:09.8510000-07:00|40022550|Zeromus|0001B0D7|11769992||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:09.9400000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|712003|1F090000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|11769992|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||104.89|89.70|0.00|1.31|0001B0DD|0|1| +261|2023-10-06T20:28:09.4380000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:28:09.4380000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:28:09.5330000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:28:09.6270000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:28:09.9840000-07:00|40022550|Zeromus|0001B0D9|11768219||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:10.0280000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9100|10000|||106.19|89.99|0.00|1.40| +37|2023-10-06T20:28:10.0730000-07:00|40022550|Zeromus|0001B0DA|11764495||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:10.0730000-07:00|40022550|Zeromus|0001B0D8|11749148||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:10.0730000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|3B410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11769992|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.21|97.87|0.00|1.07|0001B0DE|0|1| +39|2023-10-06T20:28:10.2070000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +24|2023-10-06T20:28:10.2070000-07:00|40022550|Zeromus|DoT|0|2383|11749148|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||97.15|92.87|0.00|2.92| +38|2023-10-06T20:28:10.2070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4100|10000|0||95.97|92.63|0.00|2.43|0|0|0||||||||||||| +26|2023-10-06T20:28:10.2070000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +21|2023-10-06T20:28:10.2070000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4100|10000|||95.97|92.63|0.00|2.43|80739|80739|4100|10000|||95.97|92.63|0.00|2.43|0001B0DF|0|1| +38|2023-10-06T20:28:10.2070000-07:00|40022550|Zeromus|005A5A00|11740057|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T20:28:10.2520000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|356003|6F6A0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|11740057|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4350|10000|||91.15|84.37|0.00|0.50|0001B0E0|0|1| +38|2023-10-06T20:28:10.2520000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4050|10000|0||91.15|84.37|0.00|0.50|0|0|0||||||||||||| +30|2023-10-06T20:28:10.2520000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:28:10.2520000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:28:09.8610000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:28:10.3830000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3AC80000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||101.80|85.18|0.00|3.04|11740057|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B0E1|0|1| +21|2023-10-06T20:28:10.4270000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|E270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11740057|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.51|98.38|0.00|3.12|0001B0E2|0|1| +261|2023-10-06T20:28:09.9760000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:28:10.4720000-07:00|40022550|Zeromus|0001B0DB|11730952||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:10.5170000-07:00|10FF0006|Wowobora Gogobora|80739|80739|3945|10000|||95.63|90.35|0.00|2.74| +21|2023-10-06T20:28:10.5170000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|373C0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|11740057|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3740|10000|||95.63|90.35|0.00|2.74|0001B0E3|0|1| +37|2023-10-06T20:28:10.5620000-07:00|40022550|Zeromus|0001B0DD|11723007||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:10.5620000-07:00|10FF0008|Kokosaze Lulusaze|651D|Crimson Strike|40022550|Zeromus|154003|57270000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|11730952|40478540|10000|10000|||100.00|80.10|0.00|0.00|76040|79111|7000|10000|||99.49|93.77|0.00|0.38|0001B0E4|0|1| +21|2023-10-06T20:28:10.6070000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|710003|35D90000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|11730952|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.16|92.89|-0.02|1.65|0001B0E5|0|1| +38|2023-10-06T20:28:10.6070000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||97.16|92.89|-0.02|1.65|0|0|0|||||||||||||||| +26|2023-10-06T20:28:10.6070000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +261|2023-10-06T20:28:10.2010000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:28:10.6960000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11723007|40478540|10000|10000|||100.00|80.10|0.00|0.00|76040|79111|7000|10000|||99.70|94.38|0.00|3.13|0001B0E6|0|1| +37|2023-10-06T20:28:10.7400000-07:00|10FF0004|Buhojaqe Zijaqe|0001B0DF|80739|80739|6100|10000|0||98.04|95.41|0.00|0.92|1C00|0|0|0| +37|2023-10-06T20:28:10.7400000-07:00|40022550|Zeromus|0001B0DC|11706867||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:10.7400000-07:00|10FF0005|Wuwuchu Wuchu|0001B0DC|90055|90055|10000|10000|0||97.16|92.91|0.00|2.95|2700|0|0|01|04000A1B|01|C1F00000|| +261|2023-10-06T20:28:10.2940000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:28:10.2940000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:28:10.3880000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:28:10.8750000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.16|93.06|-0.02|2.95| +37|2023-10-06T20:28:10.9630000-07:00|40022550|Zeromus|0001B0E2|11703244||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:10.9640000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|716003|2E830000|200004|3C5F8000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|11703244|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||105.27|85.18|0.00|-2.95|0001B0E7|0|1| +37|2023-10-06T20:28:11.0080000-07:00|40022550|Zeromus|0001B0E0|11674722||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:11.0080000-07:00|10FF0003|Gegehi Gehi|0001B0E0|73085|73085|4050|10000|0||92.31|88.23|0.00|0.53|2300|0|0|01|030004D3|0|41F00000|| +38|2023-10-06T20:28:11.0080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4050|10000|0||92.31|88.23|0.00|0.53|0|0|0||||||||||||| +39|2023-10-06T20:28:11.0520000-07:00|10FF0008|Kokosaze Lulusaze|76831|79111|7200|10000|||100.33|96.42|0.00|1.81| +21|2023-10-06T20:28:11.0980000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9100|10000|||112.04|89.44|0.00|1.87|127791|127791|9100|10000|||112.04|89.44|0.00|1.87|0001B0E8|0|1| +21|2023-10-06T20:28:11.0980000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11674722|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6100|10000|||99.20|97.95|0.00|0.64|0001B0E9|0|1| +37|2023-10-06T20:28:11.1430000-07:00|40022550|Zeromus|0001B0E5|11660937||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:11.1430000-07:00|10FF0005|Wuwuchu Wuchu|0001B0E5|90055|90055|10000|10000|0||97.09|93.73|0.00|2.95|2700|0|0|01|04000A1B|01|41F00000|| +39|2023-10-06T20:28:11.1430000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|6300|10000|||99.20|97.95|0.00|0.64| +38|2023-10-06T20:28:11.1430000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||97.09|93.73|0.00|2.95|0|0|0|||||||||||||||| +261|2023-10-06T20:28:10.7230000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:28:11.1880000-07:00|10FF0007|Kehabiqo Febiqo|0001B0E1|113516||||||105.46|85.17|0.00|-2.28| +24|2023-10-06T20:28:11.1880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|2256|128564|128564|10000|10000|||105.46|85.17|0.00|-2.28|10FF0006|Wowobora Gogobora|1|80739|80739|3545|10000|||95.64|90.35|0.00|2.18| +37|2023-10-06T20:28:11.1880000-07:00|40022550|Zeromus|0001B0E3|11646797||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:11.1880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122306|128564|10000|10000|0||105.46|85.17|0.00|-2.28|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:11.1880000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:28:11.2320000-07:00|40022550|Zeromus|0001B0E6|11646658||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:11.2320000-07:00|10FF0006|Wowobora Gogobora|5EE8|Druochole|10FF0007|Kehabiqo Febiqo|4|4BFC0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|122306|128564|10000|10000|||105.62|85.15|0.00|-2.28|80739|80739|3545|10000|||95.65|90.35|0.00|1.95|0001B0EA|0|1| +37|2023-10-06T20:28:11.2770000-07:00|40022550|Zeromus|0001B0DE|11631489||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:11.2770000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|23280000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|11646658|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.86|98.61|0.00|3.11|0001B0EB|0|1| +38|2023-10-06T20:28:11.2770000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.86|98.61|0.00|3.11|0|0|0|||||||||||||||| +26|2023-10-06T20:28:11.2770000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:11.3210000-07:00|40022550|Zeromus|0001B0E4|11609178||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:10.8440000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:28:10.9550000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:28:11.4990000-07:00|40022550|Zeromus|0001B0E7|11597271||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:11.4990000-07:00|10FF0007|Kehabiqo Febiqo|0001B0E7|128564||||||105.88|85.13|-0.02|-2.28| +37|2023-10-06T20:28:11.6330000-07:00|10FF0001|Sesuga Sapisuga|0001B0E8|127791|127791|9100|10000|0||113.54|90.98|0.00|2.23|1300|0|0|01|0200004A|0|41700000|| +26|2023-10-06T20:28:11.6330000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:28:11.6330000-07:00|40022550|Zeromus|0001B0E9|11597120||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:11.6330000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.69|0.00|-2.54|0|0|0|||||||||||||||| +38|2023-10-06T20:28:11.6330000-07:00|40022550|Zeromus|005A5A00|11597120|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:28:11.6330000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +21|2023-10-06T20:28:11.7230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11597120|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9100|10000|||114.20|91.05|0.00|2.27|0001B0EC|0|1| +31|2023-10-06T20:28:11.7230000-07:00|10FF0001||||| +261|2023-10-06T20:28:11.2720000-07:00|Change|40022C63||||| +38|2023-10-06T20:28:11.7670000-07:00|40022C6A||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:28:11.7670000-07:00|40022C6A||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:28:11.8110000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|720003|12FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11597120|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4050|10000|||90.53|92.36|0.00|0.36|0001B0ED|0|1| +03|2023-10-06T20:28:11.3620000-07:00|40022C6A|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||99.01|99.48|0.00|1.98| +261|2023-10-06T20:28:11.3620000-07:00|Add|40022C6A||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:11.3620000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:28:11.3620000-07:00|Change|40022C6A||| +20|2023-10-06T20:28:11.9440000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|101.56|99.32|0.00|1.83| +261|2023-10-06T20:28:11.4600000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:28:11.9890000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4095|10000|0||96.81|92.23|0.00|1.36|0|0|0|||||||||| +26|2023-10-06T20:28:11.9890000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:28:11.5510000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:28:12.0340000-07:00|10FF0006|Wowobora Gogobora|0001B0EA|80739|80739|4795|10000|0||97.13|93.02|0.00|1.06|2800|0|0|0| +20|2023-10-06T20:28:12.0340000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|97.13|93.02|0.00|1.06| +21|2023-10-06T20:28:12.1680000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11597120|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4050|10000|||90.37|92.83|0.00|2.50|0001B0EE|0|1| +21|2023-10-06T20:28:12.2140000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|F8A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11597120|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.25|96.51|-0.02|2.34|0001B0EF|0|1| +37|2023-10-06T20:28:12.2580000-07:00|40022550|Zeromus|0001B0EC|11595048||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:12.2580000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||105.88|85.13|0.00|-2.28| +21|2023-10-06T20:28:12.2580000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B716003|8E100000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|11597120|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.25|96.51|-0.02|2.34|0001B0F0|0|1| +38|2023-10-06T20:28:12.2580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||98.25|96.51|-0.02|2.34|0|0|0|||||||||||||||| +30|2023-10-06T20:28:12.2580000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:28:12.2580000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:28:12.2580000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:28:12.3910000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|20EA0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|76831|79111|7200|10000|||100.35|100.06|0.00|0.01|73956|77430|10000|10000|||97.31|97.52|0.00|2.69|0001B0F1|0|1| +39|2023-10-06T20:28:12.3910000-07:00|10FF0003|Gegehi Gehi|73085|73085|4250|10000|||90.37|92.83|0.00|2.50| +261|2023-10-06T20:28:11.8990000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:28:12.4360000-07:00|40022550|Zeromus|0001B0ED|11590186||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:12.4360000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.90|98.99|0.00|-0.01| +21|2023-10-06T20:28:12.4360000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35712003|32B00000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|11595048|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9100|10000|||116.92|92.03|0.00|2.74|0001B0F2|0|1| +24|2023-10-06T20:28:12.5250000-07:00|40022550|Zeromus|DoT|A92|506|11590186|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|76831|79111|7200|10000|||99.81|101.39|0.00|-0.26| +38|2023-10-06T20:28:12.5250000-07:00|40022550|Zeromus|005A5A00|11588900|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T20:28:12.6580000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|726003|327F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11588900|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4250|10000|||90.24|93.63|0.00|2.20|0001B0F3|0|1| +261|2023-10-06T20:28:12.2290000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:28:12.7020000-07:00|40022550|Zeromus|0001B0EE|11588873||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:12.7470000-07:00|40022550|Zeromus|0001B0EF|11584895||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:12.7470000-07:00|10FF0005|Wuwuchu Wuchu|0001B0EF|90055|90055|10000|10000|0||98.71|97.62|0.00|2.51|2700|0|0|01|04000A1C|0|C2700000|| +37|2023-10-06T20:28:12.7470000-07:00|40022550|Zeromus|0001B0F0|11548527||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:12.7470000-07:00|10FF0005|Wuwuchu Wuchu|0001B0F0|90055|90055|10000|10000|0||98.71|97.62|0.00|2.51|2700|0|0|01|04000A1C|0|42700000|| +38|2023-10-06T20:28:12.7470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||98.71|97.62|0.00|2.51|0|0|0|||||||||||||||| +34|2023-10-06T20:28:12.7920000-07:00|40022C6A|Carbuncle|40022C6A|Carbuncle|01| +261|2023-10-06T20:28:12.3290000-07:00|Change|40022C6A||| +21|2023-10-06T20:28:12.8810000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32B90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|11548527|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6300|10000|||101.58|99.32|0.00|-3.06|0001B0F4|0|1| +261|2023-10-06T20:28:12.4290000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:28:12.9260000-07:00|40022550|Zeromus|0001B0EB|11539527||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:12.9260000-07:00|10FF0002|Suchichi Suchi|0001B0EB|90128|90128|10000|10000|0||99.90|98.99|0.00|-0.01|1600|0|0|01|04000AA0|0|41F00000|| +21|2023-10-06T20:28:12.9260000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11548527|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||105.67|85.04|0.00|-2.76|0001B0F5|0|1| +38|2023-10-06T20:28:12.9260000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|-0.01|0|0|0|||||||||||||||| +21|2023-10-06T20:28:12.9710000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|383D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|11539527|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4795|10000|||98.07|95.29|0.00|3.02|0001B0F6|0|1| +39|2023-10-06T20:28:13.0150000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9300|10000|||116.92|92.03|0.00|2.74| +261|2023-10-06T20:28:12.5200000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:28:12.5200000-07:00|Change|10FF0006||||||||| +38|2023-10-06T20:28:13.1480000-07:00|40022550|Zeromus|005A5A00|11539527|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:28:13.1480000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:28:13.1930000-07:00|10FF0008|Kokosaze Lulusaze|0001B0F1|79111||||||97.02|104.49|0.00|-0.73| +37|2023-10-06T20:28:13.1930000-07:00|40022550|Zeromus|0001B0F2|11526551||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:13.1930000-07:00|10FF0001|Sesuga Sapisuga|0001B0F2|127791|127791|10000|10000|0||116.92|92.03|0.00|2.74|1300|0|0|0| +24|2023-10-06T20:28:13.1930000-07:00|40022550|Zeromus|DoT|0|2B55|11539527|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||99.53|99.69|-0.02|2.16| +38|2023-10-06T20:28:13.1930000-07:00|40022550|Zeromus|005A5A00|11515458|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:28:12.7450000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:28:13.2370000-07:00|40022550|Zeromus|0001B0F3|11502531||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:13.2370000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|0.47| +27|2023-10-06T20:28:13.2370000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +27|2023-10-06T20:28:13.2370000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +21|2023-10-06T20:28:13.2370000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11539527|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|-0.01|0001B0F7|0|1| +20|2023-10-06T20:28:13.2370000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|97.02|104.49|0.00|-0.73| +20|2023-10-06T20:28:13.3250000-07:00|40022550|Zeromus|8B83|Dark Matter|40022550|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:12.8550000-07:00|Change|40022550||||||||| +21|2023-10-06T20:28:13.4150000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|21FE0000|A3E|340000|4|25DD8000|11B|258000|0|0|0|0|0|0|0|0|11502531|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||104.69|84.58|0.00|-2.93|0001B0F8|0|1| +21|2023-10-06T20:28:13.4150000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11502531|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4395|10000|||98.07|95.29|0.00|3.02|0001B0F9|0|1| +261|2023-10-06T20:28:12.9650000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:28:13.4600000-07:00|40022550|Zeromus|0001B0F5|11499656||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:13.4600000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5900|10000|||101.52|99.34|0.00|-1.49|80739|80739|5900|10000|||101.52|99.34|0.00|-1.49|0001B0FA|0|1| +39|2023-10-06T20:28:13.5040000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4600|10000|||98.07|95.29|0.00|3.02| +24|2023-10-06T20:28:13.6370000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1501|128564|128564|10000|10000|||104.69|84.58|0.00|-2.33|10FF0006|Wowobora Gogobora|0|80739|80739|4600|10000|||98.07|95.29|-0.02|3.09| +37|2023-10-06T20:28:13.6370000-07:00|40022550|Zeromus|0001B0F6|11485259||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:13.6370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||104.69|84.58|0.00|-2.33|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:13.6370000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:28:13.6370000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +37|2023-10-06T20:28:13.6840000-07:00|40022550|Zeromus|0001B0F4|11472274||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:13.1840000-07:00|Change|10FF0008||||||||||||||||||||| +37|2023-10-06T20:28:13.7710000-07:00|40022550|Zeromus|0001B0F7|11469419||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:13.7710000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42726003|53740000|171D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|11472274|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|-0.01|0001B0FB|0|1| +38|2023-10-06T20:28:13.7710000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|-0.01|0|0|0|||||||||||||||| +26|2023-10-06T20:28:13.7710000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +20|2023-10-06T20:28:13.8160000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|91.36|99.78|0.00|2.20| +39|2023-10-06T20:28:13.8600000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.72|100.51|-0.01|3.14| +37|2023-10-06T20:28:13.9500000-07:00|40022550|Zeromus|0001B0F9|11469381||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:13.9950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11469419|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||116.92|92.03|0.00|2.74|0001B0FC|0|1| +31|2023-10-06T20:28:13.9950000-07:00|10FF0001||||| +261|2023-10-06T20:28:13.5650000-07:00|Change|10FF0001||| +261|2023-10-06T20:28:13.5650000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:28:14.0390000-07:00|40022550|Zeromus|0001B0F8|11460679||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:14.0390000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|7400|10000|||96.60|104.75|0.00|3.01| +37|2023-10-06T20:28:14.0840000-07:00|10FF0004|Buhojaqe Zijaqe|0001B0FA|80739|80739|5900|10000|0||100.58|99.85|0.00|-1.18|1C00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T20:28:14.0840000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:28:14.1280000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|6100|10000|||100.58|99.85|0.00|-1.18| +261|2023-10-06T20:28:13.6590000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:28:13.7770000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T20:28:14.2180000-07:00|40022550|Zeromus|0001B0FB|11439315|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A9F|0|41C00000|| +26|2023-10-06T20:28:14.2180000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:28:14.2180000-07:00|10FF0002|Suchichi Suchi|0001B0FB|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|1600|0|0|01|0323|0|41F00000|| +38|2023-10-06T20:28:14.2180000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|0|0|0|||||||||||||||| +21|2023-10-06T20:28:14.3060000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|11460679|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6100|10000|||100.38|99.92|0.00|-1.01|0001B0FD|0|1| +20|2023-10-06T20:28:14.4850000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.84|98.60|0.00|0.35| +37|2023-10-06T20:28:14.5290000-07:00|40022550|Zeromus|0001B0FC|11437631||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:14.2180000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:28:14.2180000-07:00|Change|10FF0008||||||||||||| +21|2023-10-06T20:28:14.7520000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|716003|50930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11437631|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.72|100.54|0.00|-3.11|0001B0FE|0|1| +38|2023-10-06T20:28:14.7520000-07:00|40022550|Zeromus|005A5A00|11437631|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T20:28:14.7520000-07:00|A1A|Death's Design|43.94|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +261|2023-10-06T20:28:14.3090000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:28:14.8850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|6250|10000|0||99.97|100.07|0.00|-1.58|0|0|0|||||||||||||||| +37|2023-10-06T20:28:14.9300000-07:00|40022550|Zeromus|0001B0FD|11437631|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:28:14.9300000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:28:14.9300000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41712003|43110000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|11437631|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||116.92|92.03|0.00|-2.18|0001B0FF|0|1| +38|2023-10-06T20:28:14.9300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||116.92|92.03|0.00|-2.18|0|0|0|||||||||||||||| +26|2023-10-06T20:28:14.9300000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:28:14.9300000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:28:15.0200000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5150|10000|0||99.47|98.44|-0.02|3.11|0|0|0|||||||||| +26|2023-10-06T20:28:15.0200000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:28:14.6100000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:28:14.7280000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:28:15.2430000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||96.11|85.00|-0.02|-3.14| +21|2023-10-06T20:28:15.2430000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11437631|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6250|10000|||99.84|100.11|0.00|-0.95|0001B100|0|1| +21|2023-10-06T20:28:15.2430000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|154003|3E940000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|11437631|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4250|10000|||91.87|99.84|0.00|2.75|0001B101|0|1| +38|2023-10-06T20:28:15.2430000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4050|10000|0||91.87|99.84|0.00|2.75|0|0|0||||||||||||| +26|2023-10-06T20:28:15.2430000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:28:15.2430000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:28:14.7280000-07:00|Change|10FF0003||||||||||||||||||||||| +39|2023-10-06T20:28:15.3770000-07:00|10FF0003|Gegehi Gehi|73085|73085|4250|10000|||91.87|99.84|0.00|2.75| +21|2023-10-06T20:28:15.4220000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38E80000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|11437631|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5150|10000|||99.47|98.44|0.00|3.11|0001B102|0|1| +21|2023-10-06T20:28:15.4220000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10E10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11437631|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.72|100.54|0.00|3.13|0001B103|0|1| +04|2023-10-06T20:28:14.9640000-07:00|40022C63|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|75851|0|10000|||91.14|84.78|0.00|1.88| +261|2023-10-06T20:28:14.9640000-07:00|Remove|40022C63| +39|2023-10-06T20:28:15.4660000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.90|98.99|0.00|3.14| +37|2023-10-06T20:28:15.5120000-07:00|40022550|Zeromus|0001B0FF|11420462||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:15.5120000-07:00|10FF0001|Sesuga Sapisuga|0001B0FF|127791|127791|10000|10000|0||116.66|91.63|0.00|-2.76|1300|0|0|02|0300076E|03|41F00000|||||| +21|2023-10-06T20:28:15.5120000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|154003|67A40000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|11437631|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7400|10000|||96.60|104.75|0.00|3.01|0001B104|0|1| +21|2023-10-06T20:28:15.5120000-07:00|10FF0004|Buhojaqe Zijaqe|650B|Protraction|10FF0007|Kehabiqo Febiqo|A0A0E|A960000|4|32380000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||95.19|84.98|0.00|3.09|80739|80739|6250|10000|||99.84|100.11|0.00|-0.95|0001B105|0|1| +38|2023-10-06T20:28:15.5120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||116.66|91.63|0.00|-2.76|0|0|0|||||||||||||||| +24|2023-10-06T20:28:15.5570000-07:00|40022550|Zeromus|DoT|A92|619|11437631|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|7400|10000|||96.60|104.75|0.00|3.01| +38|2023-10-06T20:28:15.5570000-07:00|40022550|Zeromus|005A5A00|11418901|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:28:15.2820000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:28:15.7780000-07:00|40022550|Zeromus|0001B100|11418750||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:15.8680000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F714003|3B3B0000|143E|340000|4|17018000|11B|2A8000|0|0|0|0|0|0|0|0|11418750|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||94.87|84.98|0.00|3.04|0001B106|0|1| +37|2023-10-06T20:28:15.9130000-07:00|40022550|Zeromus|0001B0FE|11398123||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:15.9130000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|138D0F|A748000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||115.93|89.82|0.00|-2.75|127791|127791|10000|10000|||115.93|89.82|0.00|-2.75|0001B107|0|1| +38|2023-10-06T20:28:15.9130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||115.93|89.82|0.00|-2.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:28:15.9130000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:28:15.9130000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:28:15.9130000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:28:15.9130000-07:00|10FF0001||||| +37|2023-10-06T20:28:15.9570000-07:00|40022550|Zeromus|0001B103|11393802||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:15.5710000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:28:16.0010000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||115.44|88.65|0.00|-2.74| +37|2023-10-06T20:28:16.0460000-07:00|40022550|Zeromus|0001B101|11377782||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:16.0460000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|132C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11393802|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B108|0|1| +21|2023-10-06T20:28:16.0460000-07:00|10FF0006|Wowobora Gogobora|5EEF|Taurochole|10FF0001|Sesuga Sapisuga|4|59CC0000|F60E|A3B0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||115.44|88.65|0.00|-2.74|80739|80739|4750|10000|||99.47|98.44|0.00|3.11|0001B109|0|1| +24|2023-10-06T20:28:16.0900000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|22CA|128564|128564|10000|10000|||94.87|84.98|0.00|2.33|10FF0006|Wowobora Gogobora|1|80739|80739|4750|10000|||99.47|98.44|0.00|3.11| +37|2023-10-06T20:28:16.0900000-07:00|40022550|Zeromus|0001B102|11363214||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:16.0900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||94.87|84.98|0.00|2.33|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:16.0900000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:28:16.1350000-07:00|40022550|Zeromus|0001B104|11336682||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:15.7850000-07:00|Change|10FF0003||| +24|2023-10-06T20:28:16.1810000-07:00|40022550|Zeromus|DoT|0|2BCE|11336682|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||99.72|100.54|0.00|3.13| +20|2023-10-06T20:28:16.1810000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|96.60|104.75|0.00|3.01| +38|2023-10-06T20:28:16.1810000-07:00|40022550|Zeromus|005A5A00|11325468|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:28:16.2250000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.99| +21|2023-10-06T20:28:16.2250000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|40A00000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|11336682|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4250|10000|||91.87|99.84|0.00|2.75|0001B10A|0|1| +38|2023-10-06T20:28:16.2250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3950|10000|0||91.87|99.84|0.00|2.75|0|0|0||||||||||||| +30|2023-10-06T20:28:16.2250000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:28:16.2700000-07:00|10FF0007|Kehabiqo Febiqo|0001B105|141420|141420|10000|10000|0||94.87|84.98|0.00|2.33|1500|0|0|01|04000A96|0|41200000|| +26|2023-10-06T20:28:16.2700000-07:00|A96|Protraction|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:28:16.2700000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D726003|50F90000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|11336682|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B10B|0|1| +21|2023-10-06T20:28:16.2700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11336682|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||115.40|88.56|0.00|-2.71|0001B10C|0|1| +38|2023-10-06T20:28:16.2700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|141420|141420|10000|10000|0||94.87|84.98|0.00|2.33|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:16.2700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|0|0|0|||||||||||||||| +30|2023-10-06T20:28:16.2700000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:28:16.2700000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +31|2023-10-06T20:28:16.2700000-07:00|10FF0001||||| +21|2023-10-06T20:28:16.3150000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11336682|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||94.87|84.98|0.00|2.33|0001B10D|0|1| +39|2023-10-06T20:28:16.4930000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4955|10000|||99.88|97.60|0.00|2.40| +37|2023-10-06T20:28:16.5830000-07:00|40022550|Zeromus|0001B108|11320560||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:16.5830000-07:00|10FF0002|Suchichi Suchi|0001B108|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|1600|0|0|01|02000322|0|C1F00000|| +261|2023-10-06T20:28:16.2210000-07:00|Change|10FF0008||||||||||||| +20|2023-10-06T20:28:16.6720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.61|100.35|0.00|-1.12| +37|2023-10-06T20:28:16.7170000-07:00|10FF0001|Sesuga Sapisuga|0001B109|127791|127791|10000|10000|0||115.32|88.39|0.00|-2.70|1300|0|0|01|08000A3B|0|41700000|| +26|2023-10-06T20:28:16.7170000-07:00|A3B|Taurochole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:28:16.7170000-07:00|10FF0006|Wowobora Gogobora|0001B109|80739|80739|5655|10000|0||100.02|97.33|0.00|2.38|2800|0|0|0| +261|2023-10-06T20:28:16.3160000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:28:16.8060000-07:00|40022550|Zeromus|0001B10C|11318842||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:16.8500000-07:00|40022550|Zeromus|0001B10D|11315943||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:16.8950000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.72|100.54|0.00|3.09| +38|2023-10-06T20:28:16.8950000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5655|10000|0||100.12|97.11|0.00|2.35|0|0|0||||||||||||| +26|2023-10-06T20:28:16.8950000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:28:16.8950000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5655|10000|||100.12|97.11|0.00|2.35|80739|80739|5655|10000|||100.12|97.11|0.00|2.35|0001B10E|0|1| +37|2023-10-06T20:28:16.9400000-07:00|40022550|Zeromus|0001B10B|11295214||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:16.9400000-07:00|10FF0002|Suchichi Suchi|0001B10B|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|1600|0|0|01|02000322|0|41F00000|| +38|2023-10-06T20:28:16.9400000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|0|0|0|||||||||||||||| +37|2023-10-06T20:28:16.9850000-07:00|40022550|Zeromus|0001B10A|11278670||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:17.0300000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|7300|10000|||96.60|104.75|0.00|3.01| +21|2023-10-06T20:28:17.1180000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11278670|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3950|10000|||92.94|101.32|0.00|2.35|0001B10F|0|1| +261|2023-10-06T20:28:16.6330000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:28:17.1620000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|6450|10000|||99.60|100.36|0.00|-3.02| +21|2023-10-06T20:28:17.2060000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11278670|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5655|10000|||100.41|96.53|0.00|2.29|0001B110|0|1| +21|2023-10-06T20:28:17.2060000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2AC90000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|11278670|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.72|100.54|0.00|3.09|0001B111|0|1| +21|2023-10-06T20:28:17.2960000-07:00|40022550|Zeromus|8B83|Dark Matter|40022550|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11278670|40478540|10000|10000|||100.00|80.10|0.00|0.00|11278670|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B112|0|1| +261|2023-10-06T20:28:16.7500000-07:00|Change|40022550||||| +261|2023-10-06T20:28:16.7500000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:28:17.3850000-07:00|40022550|Zeromus|0001B106|11263507||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:17.4290000-07:00|10FF0007|Kehabiqo Febiqo|2C|Vengeance|10FF0007|Kehabiqo Febiqo|6400E20E|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|141420|141420|10000|10000|||95.41|84.64|0.00|2.11|141420|141420|10000|10000|||95.41|84.64|0.00|2.11|0001B113|0|1| +21|2023-10-06T20:28:17.4290000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|2B0A0000|200004|3C028000|0|0|0|0|0|0|0|0|0|0|0|0|11278670|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||115.13|88.02|0.00|-2.05|0001B114|0|1| +38|2023-10-06T20:28:17.4290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||115.13|88.02|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:17.4290000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:28:16.9850000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:28:17.6070000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2FF60000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|11263507|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6450|10000|||99.60|100.36|0.00|3.12|0001B115|0|1| +37|2023-10-06T20:28:17.6510000-07:00|40022550|Zeromus|0001B10F|11263483||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:17.6960000-07:00|40022550|Zeromus|0001B111|11252530||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:17.7410000-07:00|40022550|Zeromus|0001B110|11252484||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:17.7410000-07:00|40022C6A|Carbuncle|75851|75851|10000|10000|||97.92|103.44|0.00|-0.05| +261|2023-10-06T20:28:17.2970000-07:00|Change|10FF0008||||| +261|2023-10-06T20:28:17.2970000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T20:28:17.8740000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1688|127791|127791|9000|10000|||115.13|88.02|0.00|-2.05|10FF0006|Wowobora Gogobora|0|80739|80739|5655|10000|||100.28|96.86|0.00|0.23| +38|2023-10-06T20:28:17.8740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||115.13|88.02|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:28:17.8740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|6600|10000|0||99.60|100.36|0.00|3.12|0|0|0|||||||||||||||| +21|2023-10-06T20:28:17.9190000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|11252484|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5655|10000|||100.26|96.91|0.00|0.09|0001B116|0|1| +38|2023-10-06T20:28:17.9190000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5255|10000|0||100.26|96.91|0.00|0.09|0|0|0|||||||||| +26|2023-10-06T20:28:17.9190000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:28:17.9190000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:28:17.6050000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T20:28:18.0080000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5805|10000|0||100.24|96.94|0.00|-3.13|0|0|0|||||||||| +37|2023-10-06T20:28:18.0530000-07:00|10FF0007|Kehabiqo Febiqo|0001B113|141420|141420|10000|10000|0||95.41|84.64|0.00|2.11|1500|0|0|01|05000059|64|41700000|| +26|2023-10-06T20:28:18.0530000-07:00|59|Vengeance|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|141420|141420| +21|2023-10-06T20:28:18.0970000-07:00|4002256D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750203|60A40000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9000|10000|||115.13|88.02|0.00|-2.05|44|44|0|10000|||80.10|80.10|0.00|0.79|0001B117|0|1| +21|2023-10-06T20:28:18.0970000-07:00|4002256E|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|8E910000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|141420|141420|10000|10000|||95.41|84.64|0.00|2.11|44|44|0|10000|||119.90|80.10|0.00|-0.79|0001B118|0|1| +261|2023-10-06T20:28:17.7170000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:28:17.7170000-07:00|Change|4002256D||||||||| +37|2023-10-06T20:28:18.1860000-07:00|40022550|Zeromus|0001B114|11241466||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:18.2300000-07:00|10FF0007|Kehabiqo Febiqo|141420|141420|10000|10000|||95.41|84.64|0.00|2.11| +21|2023-10-06T20:28:18.3190000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|25590000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|11241466|40478540|10000|10000|||100.00|80.10|0.00|0.00|141420|141420|10000|10000|||95.41|84.64|0.00|2.11|0001B119|0|1| +39|2023-10-06T20:28:18.3630000-07:00|10FF0003|Gegehi Gehi|73085|73085|4150|10000|||98.13|102.49|0.00|3.00| +26|2023-10-06T20:28:18.3630000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +21|2023-10-06T20:28:18.3630000-07:00|10FF0004|Buhojaqe Zijaqe|1D0A|Excogitation|10FF0007|Kehabiqo Febiqo|320F900E|4C40000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|141420|141420|10000|10000|||95.41|84.64|0.00|2.35|80739|80739|6600|10000|||99.60|100.36|0.00|3.12|0001B11A|0|1| +261|2023-10-06T20:28:17.9490000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:28:18.4080000-07:00|40022550|Zeromus|0001B115|11229188||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:18.4520000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.90|98.99|0.00|3.14| +21|2023-10-06T20:28:18.4520000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|154003|61D40000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|11241466|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7300|10000|||96.60|104.75|0.00|3.01|0001B11B|0|1| +21|2023-10-06T20:28:18.4520000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|714003|45780000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|11241466|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.02|100.54|0.00|-3.10|0001B11C|0|1| +38|2023-10-06T20:28:18.4520000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.02|100.54|0.00|-3.10|0|0|0|||||||||||||||| +26|2023-10-06T20:28:18.4520000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +24|2023-10-06T20:28:18.5410000-07:00|40022550|Zeromus|DoT|A92|4D2|11229188|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|7000|10000|||96.60|104.75|0.00|3.01| +21|2023-10-06T20:28:18.5410000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B6A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11229188|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||115.13|88.02|0.00|-2.05|0001B11D|0|1| +38|2023-10-06T20:28:18.5410000-07:00|40022550|Zeromus|005A5A00|11227954|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +31|2023-10-06T20:28:18.5410000-07:00|10FF0001||||| +21|2023-10-06T20:28:18.5850000-07:00|10FF0006|Wowobora Gogobora|5EF1|Haima|10FF0007|Kehabiqo Febiqo|FD40E|A340000|50FD40E|A520000|1B|5EF18000|0|0|0|0|0|0|0|0|0|0|141420|141420|10000|10000|||95.41|84.64|0.00|2.35|80739|80739|5805|10000|||100.24|96.97|0.00|-3.13|0001B11E|0|1| +20|2023-10-06T20:28:18.6300000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|98.13|102.49|0.00|3.00| +21|2023-10-06T20:28:18.6300000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CCC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11227954|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.02|100.54|0.00|-3.14|0001B11F|0|1| +24|2023-10-06T20:28:18.6740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1730|141420|141420|10000|10000|||95.41|84.64|0.00|2.35|10FF0006|Wowobora Gogobora|0|80739|80739|5805|10000|||100.24|96.97|0.00|-3.05| +37|2023-10-06T20:28:18.6740000-07:00|40022550|Zeromus|0001B116|11227954|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:28:18.6740000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:28:18.6740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|141420|141420|10000|10000|0||95.41|84.64|0.00|2.35|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:18.6740000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|141420|80739| +26|2023-10-06T20:28:18.6740000-07:00|A52|Haimatinon|14.91|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|05|141420|80739| +37|2023-10-06T20:28:18.7630000-07:00|10FF0001|Sesuga Sapisuga|0001B117|103051||||||115.13|88.02|0.00|-2.05| +37|2023-10-06T20:28:18.7630000-07:00|10FF0007|Kehabiqo Febiqo|0001B118|104923||||||95.41|84.64|0.00|2.35| +21|2023-10-06T20:28:18.7630000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A724003|472F0000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|11227954|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B120|0|1| +38|2023-10-06T20:28:18.7630000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T20:28:18.7630000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:28:18.7630000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:28:18.2490000-07:00|Change|10FF0008||||||||||||||| +21|2023-10-06T20:28:18.8060000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|178D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|104923|141420|10000|10000|||95.41|84.64|0.00|2.35|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001B121|0|1| +261|2023-10-06T20:28:18.3480000-07:00|Change|10FF0004||||||| +37|2023-10-06T20:28:18.8500000-07:00|40022550|Zeromus|0001B119|11218393||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:18.8500000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B0E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11227954|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B122|0|1| +37|2023-10-06T20:28:18.9840000-07:00|40022550|Zeromus|0001B11C|11200609||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:18.9840000-07:00|10FF0005|Wuwuchu Wuchu|0001B11C|90055|90055|10000|10000|0||100.02|100.54|0.00|-3.14|2700|0|0|01|02000A1B|01|41F00000|| +38|2023-10-06T20:28:18.9840000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.02|100.54|0.00|-3.14|0|0|0|||||||||||||||| +39|2023-10-06T20:28:19.0290000-07:00|10FF0001|Sesuga Sapisuga|104328|127791|9200|10000|||115.13|88.02|0.00|-2.05| +261|2023-10-06T20:28:18.5410000-07:00|Change|10FF0001||| +37|2023-10-06T20:28:19.0730000-07:00|40022550|Zeromus|0001B11D|11197687||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:19.0730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.67|100.34|-0.02|2.56| +37|2023-10-06T20:28:19.1180000-07:00|40022550|Zeromus|0001B11B|11172643||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:18.6540000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:28:19.1620000-07:00|10FF0007|Kehabiqo Febiqo|0001B11A|104923|141420|10000|10000|0||95.41|84.64|0.00|2.35|1500|0|0|01|070004C4|32|42340000|| +26|2023-10-06T20:28:19.1620000-07:00|4C4|Excogitation|45.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|32|141420|80739| +37|2023-10-06T20:28:19.1620000-07:00|40022550|Zeromus|0001B11F|11169367||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:19.1620000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|1.486|96.60|104.75|0.00|3.01| +39|2023-10-06T20:28:19.2060000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|-3.11| +24|2023-10-06T20:28:19.2060000-07:00|40022550|Zeromus|DoT|0|258C|11169367|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||100.02|100.54|0.00|-3.14| +38|2023-10-06T20:28:19.2070000-07:00|40022550|Zeromus|005A5A00|11159755|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:28:19.3400000-07:00|10FF0007|Kehabiqo Febiqo|0001B11E|104923|141420|10000|10000|7||95.41|84.62|0.00|2.52|1500|0|0|02|06000A52|05|41700000|||||| +26|2023-10-06T20:28:19.3400000-07:00|A34|Haima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|141420|80739| +38|2023-10-06T20:28:19.3400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104923|141420|10000|10000|7||95.41|84.62|0.00|2.52|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:28:19.3850000-07:00|40022550|Zeromus|0001B120|11141532||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:19.3850000-07:00|10FF0002|Suchichi Suchi|0001B120|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|1600|0|0|01|0747|0|41F00000|| +37|2023-10-06T20:28:19.3850000-07:00|40022550|Zeromus|0001B122|11138702||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:19.3850000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|0|0|0|||||||||||||||| +261|2023-10-06T20:28:18.8900000-07:00|Change|10FF0003||||||||||||||| +20|2023-10-06T20:28:19.4300000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.24|96.97|0.00|-2.77| +39|2023-10-06T20:28:19.5190000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6010|10000|||100.24|96.97|0.00|-2.81| +37|2023-10-06T20:28:19.6080000-07:00|10FF0007|Kehabiqo Febiqo|0001B121|110952||||||95.47|84.43|0.00|2.70| +21|2023-10-06T20:28:19.6530000-07:00|4002256D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750203|58950000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|104328|127791|9200|10000|||115.13|88.02|0.00|-2.05|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B123|0|1| +21|2023-10-06T20:28:19.6530000-07:00|4002256E|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|5D490000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|110952|141420|10000|10000|||95.52|84.25|0.00|2.75|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B124|0|1| +21|2023-10-06T20:28:19.6980000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11138702|40478540|10000|10000|||100.00|80.10|0.00|0.00|110952|141420|10000|10000|||95.52|84.25|0.00|2.75|0001B125|0|1| +21|2023-10-06T20:28:19.6980000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B716003|8A140000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|11138702|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.02|100.54|0.00|-3.14|0001B126|0|1| +38|2023-10-06T20:28:19.6980000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.02|100.54|0.00|-3.14|0|0|0||||||||||||| +30|2023-10-06T20:28:19.6980000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:28:19.6980000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:28:19.6980000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:28:19.3120000-07:00|Change|10FF0008||||||||||||| +261|2023-10-06T20:28:19.3120000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T20:28:19.8770000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.02|100.54|0.00|-3.14| +21|2023-10-06T20:28:19.9220000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|29540000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|11138702|40478540|10000|10000|||100.00|80.10|0.00|0.00|104328|127791|9200|10000|||115.13|88.02|0.00|-2.05|0001B127|0|1| +38|2023-10-06T20:28:19.9220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104328|127791|9200|10000|0||115.13|88.02|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:19.9220000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +30|2023-10-06T20:28:19.9220000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:28:20.0110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30BF0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|11138702|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6600|10000|||99.78|100.30|0.00|3.13|0001B128|0|1| +39|2023-10-06T20:28:20.0560000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|7200|10000|||96.60|104.75|0.00|3.01| +21|2023-10-06T20:28:20.0560000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|2F2C0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|11138702|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4150|10000|||98.13|102.49|0.00|3.06|0001B129|0|1| +38|2023-10-06T20:28:20.0560000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3950|10000|0||98.13|102.49|0.00|3.06|0|0|0||||||| +26|2023-10-06T20:28:20.0560000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:28:20.0560000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +39|2023-10-06T20:28:20.1440000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|6400|10000|||99.78|100.30|0.00|3.13| +21|2023-10-06T20:28:20.1440000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|750003|31960000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|11138702|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7000|10000|||96.60|104.75|0.00|3.01|0001B12A|0|1| +261|2023-10-06T20:28:19.6200000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:28:20.1890000-07:00|40022550|Zeromus|0001B126|11103354||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:20.1890000-07:00|10FF0005|Wuwuchu Wuchu|0001B126|90055|90055|10000|10000|0||99.91|100.61|-0.02|-3.13|2700|0|0|01|02000A1D|0|42700000|| +38|2023-10-06T20:28:20.1890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.91|100.61|-0.02|-3.13|0|0|0||||||||||||| +37|2023-10-06T20:28:20.2320000-07:00|40022550|Zeromus|0001B125|11100493||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:20.2770000-07:00|10FF0001|Sesuga Sapisuga|0001B123|81651||||||115.13|88.02|0.00|-2.05| +37|2023-10-06T20:28:20.2770000-07:00|10FF0007|Kehabiqo Febiqo|0001B124|87071|141420|10000|10000|7||96.20|83.92|0.00|2.85|1500|0|0|02|06000A52|04|4161020E|||||| +26|2023-10-06T20:28:20.2770000-07:00|A52|Haimatinon|14.06|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|04|141420|80739| +38|2023-10-06T20:28:20.2770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87071|141420|10000|10000|7||96.20|83.92|0.00|2.85|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:20.3670000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37A50000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|11100493|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6010|10000|||100.24|96.97|0.00|-3.13|0001B12B|0|1| +21|2023-10-06T20:28:20.3670000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11100493|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6400|10000|||99.78|100.30|0.00|3.13|0001B12C|0|1| +261|2023-10-06T20:28:19.9650000-07:00|Change|10FF0003||||||||||||||| +38|2023-10-06T20:28:20.5910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|6900|10000|0||96.60|104.75|0.00|3.01|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:20.5910000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:20.1710000-07:00|Remove|40022C64| +39|2023-10-06T20:28:20.7240000-07:00|40022C6A|Carbuncle|75851|75851|10000|10000|||97.92|103.44|0.00|-0.05| +21|2023-10-06T20:28:20.7680000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|34170000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|11100493|40478540|10000|10000|||100.00|80.10|0.00|0.00|87071|141420|10000|10000|||96.33|83.88|0.00|2.85|0001B12D|0|1| +37|2023-10-06T20:28:20.8130000-07:00|40022550|Zeromus|0001B128|11088014||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:20.8130000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|68D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11100493|40478540|10000|10000|||100.00|80.10|0.00|0.00|81651|127791|9200|10000|||115.13|88.02|0.00|-2.05|0001B12E|0|1| +31|2023-10-06T20:28:20.8130000-07:00|10FF0001||||| +261|2023-10-06T20:28:20.3690000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:28:20.8570000-07:00|40022550|Zeromus|0001B129|11075938||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:20.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|27D9|81651|127791|9200|10000|||115.13|88.02|0.00|-2.05|10FF0006|Wowobora Gogobora|0|80739|80739|5610|10000|||100.24|96.97|0.00|-3.13| +38|2023-10-06T20:28:20.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|91852|127791|9200|10000|0||115.13|88.02|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:28:20.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|6950|10000|0||99.78|100.30|0.00|3.13|0|0|0|||||||||||||||| +261|2023-10-06T20:28:20.3690000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:28:20.9010000-07:00|40022550|Zeromus|0001B12C|11075698||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:20.9450000-07:00|40022550|Zeromus|0001B12A|11063004||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:20.9900000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11063004|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5610|10000|||100.24|96.97|0.00|-3.13|0001B12F|0|1| +38|2023-10-06T20:28:20.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6160|10000|0||100.24|96.97|0.00|-3.13|0|0|0|||||||||| +26|2023-10-06T20:28:20.9900000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +24|2023-10-06T20:28:21.0350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1850|87071|141420|10000|10000|||96.33|83.88|0.00|2.37|10FF0006|Wowobora Gogobora|0|80739|80739|5610|10000|||100.24|96.97|0.00|-3.13| +37|2023-10-06T20:28:21.0350000-07:00|40022550|Zeromus|0001B12B|11048759||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:21.0350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|93295|141420|10000|10000|7||96.33|83.88|0.00|2.37|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:21.0350000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|141420|80739| +21|2023-10-06T20:28:21.0790000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|38010000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|11063004|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3950|10000|||98.13|102.49|0.00|3.06|0001B130|0|1| +38|2023-10-06T20:28:21.0790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3650|10000|0||98.13|102.49|0.00|3.06|0|0|0|||| +30|2023-10-06T20:28:21.0790000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:28:20.6640000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:28:21.2130000-07:00|40022550|Zeromus|0001B127|11038179||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:21.2130000-07:00|10FF0001|Sesuga Sapisuga|0001B127|91852|127791|9600|10000|0||115.13|88.02|0.00|-2.05|1300|0|0|0| +21|2023-10-06T20:28:21.2130000-07:00|4002256D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750003|6C6B0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|91852|127791|9200|10000|||115.13|88.02|0.00|-2.05|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B131|0|1| +21|2023-10-06T20:28:21.2130000-07:00|4002256E|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|68530000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|93295|141420|10000|10000|||96.33|83.88|0.00|2.37|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B132|0|1| +261|2023-10-06T20:28:20.7820000-07:00|Change|10FF0001||| +39|2023-10-06T20:28:21.2570000-07:00|10FF0007|Kehabiqo Febiqo|94709|141420|10000|10000|||96.33|83.88|0.00|2.37| +21|2023-10-06T20:28:21.2570000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|2DEF0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|11038179|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B133|0|1| +38|2023-10-06T20:28:21.2570000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|0|0|0|||||||||||||||| +30|2023-10-06T20:28:21.2570000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:28:21.3020000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.00|0|0|0|||||||||||||||| +26|2023-10-06T20:28:21.3020000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:28:21.3020000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.87|101.03|0.00|3.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.00|0001B134|0|1| +37|2023-10-06T20:28:21.3450000-07:00|40022550|Zeromus|0001B12E|11036502||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:21.3910000-07:00|40022550|Zeromus|0001B12D|11023167||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:21.3910000-07:00|10FF0003|Gegehi Gehi|73085|73085|3850|10000|||98.13|102.49|0.00|3.06| +21|2023-10-06T20:28:21.3910000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|6E7C0000|0|0|0|0|0|0|0|0|0|0|0|0|94709|141420|10000|10000|||96.33|83.88|0.00|2.37|94709|141420|10000|10000|||96.33|83.88|0.00|2.37|0001B135|0|1| +261|2023-10-06T20:28:20.9020000-07:00|Change|10FF0003||| +39|2023-10-06T20:28:21.4790000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.90|98.99|0.00|3.14| +37|2023-10-06T20:28:21.5240000-07:00|40022550|Zeromus|0001B12F|11023120||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:21.6140000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|750003|45140000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|11023120|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|6900|10000|||96.60|104.75|0.00|3.01|0001B136|0|1| +38|2023-10-06T20:28:21.6140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|6500|10000|0||96.60|104.75|0.00|3.01|0|0|0||||||| +30|2023-10-06T20:28:21.6140000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:28:21.6580000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BD90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11023120|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B137|0|1| +37|2023-10-06T20:28:21.8370000-07:00|10FF0001|Sesuga Sapisuga|0001B131|64097||||||115.13|88.02|0.00|-2.05| +37|2023-10-06T20:28:21.8370000-07:00|10FF0007|Kehabiqo Febiqo|0001B132|68002|141420|10000|10000|7||96.33|83.88|0.00|2.37|1500|0|0|03|06000A52|03|41480C4F|||||||||| +26|2023-10-06T20:28:21.8370000-07:00|A52|Haimatinon|12.50|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|03|141420|80739| +26|2023-10-06T20:28:21.8370000-07:00|A34|Haima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|141420|80739| +37|2023-10-06T20:28:21.8370000-07:00|40022550|Zeromus|0001B130|11008783||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:21.8370000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C4|74E0|94709|141420|10000|10000|||96.33|83.88|0.00|2.37|10FF0004|Buhojaqe Zijaqe|0|80739|80739|6950|10000|||99.78|100.30|0.00|3.13| +20|2023-10-06T20:28:21.8370000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.24|96.97|0.00|-3.13| +21|2023-10-06T20:28:21.8370000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|720003|12330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11023120|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3850|10000|||98.13|102.49|0.00|3.06|0001B138|0|1| +21|2023-10-06T20:28:21.8370000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11023120|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.00|0001B139|0|1| +38|2023-10-06T20:28:21.8370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|97922|141420|10000|10000|7||96.33|83.88|0.00|2.37|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:21.8370000-07:00|4C4|Excogitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|32|141420|80739| +261|2023-10-06T20:28:21.3390000-07:00|Change|10FF0008||| +37|2023-10-06T20:28:21.8800000-07:00|40022550|Zeromus|0001B133|10997024||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:21.9700000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|2.99|0|0|0||||||| +26|2023-10-06T20:28:21.9700000-07:00|7AD|Summon Order III|30.00|10FF0001|Sesuga Sapisuga|40022B84|Ruby Carbuncle|01|77430|127791| +21|2023-10-06T20:28:21.9700000-07:00|10FF0004|Buhojaqe Zijaqe|1D0D|Aetherpact|10FF0001|Sesuga Sapisuga|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|64097|127791|9600|10000|||115.13|88.02|0.00|-2.05|80739|80739|6950|10000|||99.78|100.30|0.00|3.13|0001B13A|0|1| +37|2023-10-06T20:28:22.0150000-07:00|10FF0007|Kehabiqo Febiqo|0001B135|126206|169704|10000|10000|6||96.33|83.88|0.00|2.37|1500|0|0|01|07000057|0|41200000|| +26|2023-10-06T20:28:22.0150000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|141420|141420| +21|2023-10-06T20:28:22.0150000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|1C3F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|97922|141420|10000|10000|||96.33|83.88|0.00|2.37|73956|77430|10000|10000|||97.31|97.52|0.00|2.99|0001B13B|0|1| +39|2023-10-06T20:28:22.0150000-07:00|10FF0001|Sesuga Sapisuga|65374|127791|9800|10000|||115.13|88.02|0.00|-2.05| +21|2023-10-06T20:28:22.0150000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.87|101.03|0.00|3.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.00|0001B13C|0|1| +38|2023-10-06T20:28:22.0150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126206|169704|10000|10000|6||96.33|83.88|0.00|2.37|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:22.0150000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.00|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:22.0150000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:28:22.0590000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10997024|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3850|10000|||98.13|102.48|0.00|3.06|0001B13D|0|1| +37|2023-10-06T20:28:22.1920000-07:00|40022550|Zeromus|0001B137|10993991||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:22.1920000-07:00|40022550|Zeromus|DoT|0|2C0C|10997024|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||99.87|101.03|0.00|3.00| +38|2023-10-06T20:28:22.1920000-07:00|40022550|Zeromus|005A5A00|10982715|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:28:21.7490000-07:00|Change|10FF0006||||||||||||| +39|2023-10-06T20:28:22.2370000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|3.00| +261|2023-10-06T20:28:21.7490000-07:00|Change|10FF0001||| +21|2023-10-06T20:28:22.3270000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|4|990E0000|1CCD0F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|126206|169704|10000|10000|||96.33|83.88|0.00|2.37|126206|169704|10000|10000|||96.33|83.88|0.00|2.37|0001B13E|0|1| +37|2023-10-06T20:28:22.3710000-07:00|40022550|Zeromus|0001B139|10979461||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:22.3710000-07:00|10FF0005|Wuwuchu Wuchu|0001B139|90055|90055|10000|10000|0||99.87|101.03|0.00|3.00|2700|0|0|01|050004E2|0|C1200000|| +21|2023-10-06T20:28:22.3710000-07:00|10FF0008|Kokosaze Lulusaze|1D8A|Lucid Dreaming|10FF0008|Kokosaze Lulusaze|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|6500|10000|||96.60|104.75|0.00|3.01|79111|79111|6500|10000|||96.60|104.75|0.00|3.01|0001B13F|0|1| +37|2023-10-06T20:28:22.4160000-07:00|40022550|Zeromus|0001B136|10961777||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:22.4160000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|29F70000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10982715|40478540|10000|10000|||100.00|80.10|0.00|0.00|65374|127791|9800|10000|||115.13|88.02|0.00|-2.05|0001B140|0|1| +38|2023-10-06T20:28:22.4160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|65374|127791|9800|10000|0||115.13|88.02|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:22.4160000-07:00|76E|Sword Oath|23.05|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:28:22.4600000-07:00|40022550|Zeromus|0001B138|10957118||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:22.4600000-07:00|10FF0005|Wuwuchu Wuchu|0001B134|90055|90055|10000|10000|0||99.87|101.03|0.00|3.00|2700|0|0|01|050004E2|0|C1200000|| +39|2023-10-06T20:28:22.5050000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6365|10000|||100.24|96.97|0.00|-3.13| +37|2023-10-06T20:28:22.5500000-07:00|10FF0005|Wuwuchu Wuchu|0001B13C|90055|90055|10000|10000|0||99.87|101.03|0.00|3.00|2700|0|0|01|050004E2|0|41200000|| +21|2023-10-06T20:28:22.5500000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|722003|28700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10957118|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3850|10000|||98.31|100.51|0.00|3.06|0001B141|0|1| +38|2023-10-06T20:28:22.5500000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.00|0|0|0||||||||||||||||||| +37|2023-10-06T20:28:22.5950000-07:00|40022550|Zeromus|0001B13D|10957086||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:22.6390000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.78|100.30|0.00|2.25| +261|2023-10-06T20:28:22.1950000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T20:28:22.7720000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37A40000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|10957086|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6365|10000|||100.24|96.97|0.00|-3.13|0001B142|0|1| +21|2023-10-06T20:28:22.7720000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|3BA80000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|10957086|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.00|0001B143|0|1| +38|2023-10-06T20:28:22.7720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:22.7720000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:28:22.8150000-07:00|10FF0007|Kehabiqo Febiqo|0001B13B|133437||||||96.33|83.88|0.00|2.37| +39|2023-10-06T20:28:22.8600000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.87|101.03|0.00|3.00| +37|2023-10-06T20:28:22.9930000-07:00|10FF0007|Kehabiqo Febiqo|0001B13E|169704|169704|10000|10000|6||96.33|83.88|0.00|2.37|1500|0|0|01|09000A79|0|41700000|| +26|2023-10-06T20:28:22.9930000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|169704|169704| +37|2023-10-06T20:28:22.9930000-07:00|10FF0008|Kokosaze Lulusaze|0001B13F|79111|79111|6500|10000|0||96.60|104.74|0.00|3.02|1B00|0|0|01|020004B4|0|41A80000|| +26|2023-10-06T20:28:22.9930000-07:00|4B4|Lucid Dreaming|21.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +39|2023-10-06T20:28:23.0380000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|6700|10000|||96.60|104.74|0.00|3.02| +261|2023-10-06T20:28:22.4910000-07:00|Change|10FF0008||||||| +21|2023-10-06T20:28:23.0830000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AB00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10957086|40478540|10000|10000|||100.00|80.10|0.00|0.00|133437|169704|10000|10000|||96.33|83.88|0.00|2.37|0001B144|0|1| +21|2023-10-06T20:28:23.0830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|66C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10957086|40478540|10000|10000|||100.00|80.10|0.00|0.00|65374|127791|9800|10000|||115.13|88.02|0.00|-2.05|0001B145|0|1| +31|2023-10-06T20:28:23.0830000-07:00|10FF0001||||| +37|2023-10-06T20:28:23.1270000-07:00|40022550|Zeromus|0001B141|10946734||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:23.1270000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7150|10000|||99.78|100.30|0.00|3.04| +261|2023-10-06T20:28:22.6100000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T20:28:23.2160000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F712003|50B90000|143E|340000|4|1E448000|11B|2A8000|0|0|0|0|0|0|0|0|10946734|40478540|10000|10000|||100.00|80.10|0.00|0.00|169704|169704|10000|10000|||96.33|83.88|0.00|2.37|0001B146|0|1| +261|2023-10-06T20:28:22.7220000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:28:23.3040000-07:00|40022550|Zeromus|0001B143|10931462||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:23.3040000-07:00|10FF0005|Wuwuchu Wuchu|0001B143|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|2700|0|0|01|06000A1F|0|41F00000|| +38|2023-10-06T20:28:23.3040000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:28:23.3480000-07:00|40022B84|Ruby Carbuncle|1D0E|Fey Union|10FF0001|Sesuga Sapisuga|F0F0E|4C70000|2CA3F60F|4C68000|1B|1D0E8000|0|0|0|0|0|0|0|0|0|0|65374|127791|9800|10000|||115.13|88.02|0.00|-2.05|73956|77430|10000|10000|||97.31|97.52|0.00|3.02|0001B147|0|1| +21|2023-10-06T20:28:23.3480000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|722003|5AAF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10931462|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3850|10000|||98.31|100.51|0.00|3.06|0001B148|0|1| +21|2023-10-06T20:28:23.3930000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3AB0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|169704|169704|10000|10000|||96.33|83.88|0.00|2.37|10931462|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B149|0|1| +24|2023-10-06T20:28:23.4370000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1D28|169704|169704|10000|10000|||96.33|83.88|0.00|2.37|10FF0006|Wowobora Gogobora|0|80739|80739|5965|10000|||100.24|96.97|0.00|-3.13| +37|2023-10-06T20:28:23.4370000-07:00|40022550|Zeromus|0001B142|10917218||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:23.4370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|169704|169704|10000|10000|6||96.33|83.88|0.00|2.37|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:23.4370000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|169704|80739| +21|2023-10-06T20:28:23.5710000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10917218|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|6700|10000|||97.86|103.50|-0.02|2.69|0001B14A|0|1| +21|2023-10-06T20:28:23.5710000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2FA90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10917218|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7150|10000|||99.78|100.30|0.00|3.13|0001B14B|0|1| +37|2023-10-06T20:28:23.6150000-07:00|40022550|Zeromus|0001B144|10914482||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:23.6150000-07:00|40022550|Zeromus|0001B145|10912838||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:23.7050000-07:00|40022550|Zeromus|0001B140|10902095||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:23.7050000-07:00|10FF0001|Sesuga Sapisuga|0001B140|65374|127791|10000|10000|0||114.12|88.69|0.00|-2.15|1300|0|0|0| +261|2023-10-06T20:28:23.2730000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:28:23.7490000-07:00|40022C6A|Carbuncle|75851|75851|10000|10000|||97.92|103.44|0.00|-0.05| +21|2023-10-06T20:28:23.7490000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35726003|4FA20000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|10902095|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B14C|0|1| +21|2023-10-06T20:28:23.7940000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|712003|1B8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10902095|40478540|10000|10000|||100.00|80.10|0.00|0.00|169704|169704|10000|10000|||96.33|83.88|0.00|2.37|0001B14D|0|1| +24|2023-10-06T20:28:23.8820000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|16D7|65374|127791|10000|10000|||113.39|89.81|0.00|-2.15|10FF0006|Wowobora Gogobora|0|80739|80739|5965|10000|||100.24|96.97|0.00|-3.13| +38|2023-10-06T20:28:23.8820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|71221|127791|10000|10000|0||113.39|89.81|0.00|-2.15|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:28:23.8820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7300|10000|0||99.78|100.30|0.00|3.13|0|0|0|||||||||||||||| +38|2023-10-06T20:28:23.9270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|71221|127791|10000|10000|0||113.39|89.81|0.00|-2.15|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:23.9270000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:28:24.0170000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6515|10000|0||100.24|96.97|0.00|-3.13|0|0|0|||||||||| +26|2023-10-06T20:28:24.0170000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:28:23.6940000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:28:24.1060000-07:00|40022550|Zeromus|0001B14A|10901948||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:24.1060000-07:00|10FF0008|Kokosaze Lulusaze|64E7|Summon Phoenix|40022550|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|10902095|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|6700|10000|||98.65|102.77|0.00|2.36|0001B14E|0|1| +38|2023-10-06T20:28:24.1510000-07:00|40022C92||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:28:24.1510000-07:00|10FF0001|Sesuga Sapisuga|0001B147|71221|127791|10000|10000|0||112.32|91.45|0.00|-2.15|1300|0|0|01|040004C7|0|42700000|| +26|2023-10-06T20:28:24.1510000-07:00|4C7|Fey Union|60.00|40022B84|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:28:24.1510000-07:00|40022B84|Ruby Carbuncle|0001B147|73956|77430|10000|10000|0||97.31|97.52|0.00|2.06|0|0|0|01|020004C6|012C|0|| +26|2023-10-06T20:28:24.1510000-07:00|4C6|Fey Union|9999.00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|12C|77430|77430| +38|2023-10-06T20:28:24.1510000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|2.06|0|0|0|||||||||| +30|2023-10-06T20:28:24.1510000-07:00|7AD|Summon Order III|0.00|10FF0001|Sesuga Sapisuga|40022B84|Ruby Carbuncle|01|77430|127791| +38|2023-10-06T20:28:24.1510000-07:00|40022C92||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:28:23.6940000-07:00|Change|40022C6A||||||||| +37|2023-10-06T20:28:24.1950000-07:00|10FF0007|Kehabiqo Febiqo|0001B149|168765|169704|10000|10000|6||96.33|83.88|0.00|2.37|1500|0|0|02|06000A52|02|41224DE1|||||| +26|2023-10-06T20:28:24.1950000-07:00|A52|Haimatinon|10.14|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|02|169704|80739| +26|2023-10-06T20:28:24.1950000-07:00|A34|Haima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|169704|80739| +38|2023-10-06T20:28:24.1950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|168765|169704|10000|10000|6||96.33|83.88|0.00|2.37|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:23.8090000-07:00|Change|10FF0006||| +39|2023-10-06T20:28:24.2400000-07:00|10FF0007|Kehabiqo Febiqo|169704|169704|10000|10000|||96.33|83.88|0.00|2.37| +21|2023-10-06T20:28:24.2400000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|714003|54830000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|10901948|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.14|0001B14F|0|1| +38|2023-10-06T20:28:24.2400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:24.2400000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:28:24.2400000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +20|2023-10-06T20:28:24.2830000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.24|96.97|0.00|-3.13| +03|2023-10-06T20:28:23.9200000-07:00|40022C92|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|72376|75851|10000|10000|||100.32|104.66|0.00|3.08| +21|2023-10-06T20:28:24.3290000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|3850|10000|||98.31|100.51|0.00|3.06|73085|73085|3850|10000|||98.31|100.51|0.00|3.06|0001B150|0|1| +38|2023-10-06T20:28:24.3290000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3850|10000|0||98.31|100.51|0.00|3.06|0|0|0||||||| +26|2023-10-06T20:28:24.3290000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:28:23.9200000-07:00|Add|40022C92||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:23.9200000-07:00|Change|40022C92||| +37|2023-10-06T20:28:24.3720000-07:00|40022550|Zeromus|0001B14B|10889747||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:24.3720000-07:00|10FF0003|Gegehi Gehi|73085|73085|4050|10000|||98.31|100.51|0.00|3.06| +37|2023-10-06T20:28:24.4170000-07:00|40022550|Zeromus|0001B14D|10882692||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:23.9200000-07:00|Change|10FF0003||||||| +39|2023-10-06T20:28:24.4610000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.90|98.99|0.00|3.14| +21|2023-10-06T20:28:24.4610000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10882692|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B151|0|1| +37|2023-10-06T20:28:24.5060000-07:00|40022550|Zeromus|0001B148|10859477||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:24.5060000-07:00|10FF0003|Gegehi Gehi|0001B148|73085|73085|4050|10000|0||98.31|100.51|0.00|3.06|2300|0|0|01|010004D6|0|C1A00000|| +21|2023-10-06T20:28:24.5060000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10882692|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7300|10000|||99.78|100.29|0.00|3.11|0001B152|0|1| +24|2023-10-06T20:28:24.5510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2891|169704|169704|10000|10000|||96.33|83.88|0.00|2.37|10FF0007|Kehabiqo Febiqo|0|169704|169704|10000|10000|||96.33|83.88|0.00|2.37| +38|2023-10-06T20:28:24.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|169704|169704|10000|10000|6||96.33|83.88|0.00|2.37|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:24.5510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|7250|10000|0||98.65|102.77|0.00|3.08|0|0|0|||||||||| +261|2023-10-06T20:28:24.1610000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:28:24.1610000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:28:24.7290000-07:00|40022550|Zeromus|0001B146|10838812||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:24.7290000-07:00|10FF0008|Kokosaze Lulusaze|64E6|Rekindle|10FF0001|Sesuga Sapisuga|4|249B0000|4B16A40E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|71221|127791|10000|10000|||109.71|92.92|0.00|-1.81|79111|79111|7250|10000|||98.65|102.77|0.00|3.08|0001B153|0|1| +37|2023-10-06T20:28:24.7730000-07:00|40022550|Zeromus|0001B14C|10818426||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:24.8620000-07:00|40022550|Zeromus|0001B14F|10796791||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:24.8620000-07:00|10FF0005|Wuwuchu Wuchu|0001B14F|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|2700|0|0|01|06000A1E|0|41F00000|| +38|2023-10-06T20:28:24.8620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:28:24.9970000-07:00|40022550|Zeromus|0001B151|10793740||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:24.9970000-07:00|10FF0001|Sesuga Sapisuga|72498|127791|10000|10000|||108.66|93.73|0.00|-1.57| +21|2023-10-06T20:28:24.9970000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|28EA0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10796791|40478540|10000|10000|||100.00|80.10|0.00|0.00|71221|127791|10000|10000|||108.66|93.73|0.00|-1.57|0001B154|0|1| +38|2023-10-06T20:28:24.9970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|72498|127791|10000|10000|0||108.66|93.73|0.00|-1.57|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:24.9970000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:28:25.0430000-07:00|40022550|Zeromus|0001B152|10793486||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:25.0430000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.87|99.72|0.00|3.04| +21|2023-10-06T20:28:25.0430000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C5D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10793740|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.14|0001B155|0|1| +37|2023-10-06T20:28:25.0860000-07:00|10FF0003|Gegehi Gehi|0001B150|73085|73085|4050|10000|0||98.31|100.51|0.00|3.06|2300|0|0|01|010004D6|0|41A00000|| +21|2023-10-06T20:28:25.0860000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|354003|3FA10000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|10793740|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4050|10000|||98.31|100.51|0.00|3.06|0001B156|0|1| +38|2023-10-06T20:28:25.0860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3750|10000|0||98.31|100.51|0.00|3.06|0|0|0|||||||||| +30|2023-10-06T20:28:25.0860000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:28:25.0860000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:28:24.6020000-07:00|Change|10FF0003||| +261|2023-10-06T20:28:24.7230000-07:00|Change|10FF0004||||||||||||||||||||| +22|2023-10-06T20:28:25.1310000-07:00|40022C92|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|7250|10000|||98.65|102.77|0.00|2.54|72376|75851|10000|10000|||100.32|104.66|0.00|3.08|0001B157|0|7| +22|2023-10-06T20:28:25.1310000-07:00|40022C92|Demi-Phoenix|4085|Everlasting Flight|10FF0005|Wuwuchu Wuchu|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.87|101.03|0.00|3.14|72376|75851|10000|10000|||100.32|104.66|0.00|3.08|0001B157|1|7| +22|2023-10-06T20:28:25.1310000-07:00|40022C92|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|3750|10000|||98.31|100.51|0.00|3.06|72376|75851|10000|10000|||100.32|104.66|0.00|3.08|0001B157|2|7| +22|2023-10-06T20:28:25.1310000-07:00|40022C92|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7300|10000|||99.90|99.50|0.00|3.05|72376|75851|10000|10000|||100.32|104.66|0.00|3.08|0001B157|3|7| +22|2023-10-06T20:28:25.1310000-07:00|40022C92|Demi-Phoenix|4085|Everlasting Flight|10FF0002|Suchichi Suchi|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|72376|75851|10000|10000|||100.32|104.66|0.00|3.08|0001B157|4|7| +22|2023-10-06T20:28:25.1310000-07:00|40022C92|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|6515|10000|||100.24|96.97|0.00|-3.13|72376|75851|10000|10000|||100.32|104.66|0.00|3.08|0001B157|5|7| +22|2023-10-06T20:28:25.1310000-07:00|40022C92|Demi-Phoenix|4085|Everlasting Flight|10FF0001|Sesuga Sapisuga|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|72498|127791|10000|10000|||107.76|94.60|0.00|-1.19|72376|75851|10000|10000|||100.32|104.66|0.00|3.08|0001B157|6|7| +24|2023-10-06T20:28:25.1760000-07:00|40022550|Zeromus|DoT|0|27D6|10793486|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||99.87|101.03|0.00|3.14| +38|2023-10-06T20:28:25.1760000-07:00|40022550|Zeromus|005A5A00|10783288|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:28:25.2200000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.06| +21|2023-10-06T20:28:25.2200000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35640000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|10783288|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6515|10000|||100.24|96.97|0.00|-3.13|0001B158|0|1| +261|2023-10-06T20:28:24.8430000-07:00|Change|10FF0006||| +261|2023-10-06T20:28:24.8430000-07:00|Change|40022C92||| +21|2023-10-06T20:28:25.3540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|E470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10783288|40478540|10000|10000|||100.00|80.10|0.00|0.00|72498|127791|10000|10000|||106.65|95.10|0.00|-1.13|0001B159|0|1| +31|2023-10-06T20:28:25.3540000-07:00|10FF0001||||| +261|2023-10-06T20:28:25.0830000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:28:25.4880000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6320|10000|||100.24|96.97|0.00|-3.13| +24|2023-10-06T20:28:25.5330000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C7|2242|72498|127791|10000|10000|||106.04|95.41|0.00|-1.07|40022B84|Ruby Carbuncle|0|73956|77430|10000|10000|||97.31|97.52|0.00|2.06| +21|2023-10-06T20:28:25.5330000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10783288|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3750|10000|||98.31|100.51|0.00|3.06|0001B15A|0|1| +37|2023-10-06T20:28:25.5780000-07:00|40022550|Zeromus|0001B155|10780123||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:25.6680000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|37220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10783288|40478540|10000|10000|||100.00|80.10|0.00|0.00|169704|169704|10000|10000|||97.56|88.91|0.00|0.32|0001B15B|0|1| +21|2023-10-06T20:28:25.6680000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|714003|11220000|13000E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|10780123|40478540|10000|10000|||100.00|80.10|0.00|0.00|72498|127791|10000|10000|||104.89|96.06|0.00|-1.03|0001B15C|0|1| +261|2023-10-06T20:28:25.2710000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T20:28:25.7570000-07:00|10FF0001|Sesuga Sapisuga|0001B153|90639|127791|10000|10000|0||104.37|96.38|0.00|-1.02|1300|0|0|01|03000A90|4B|0|| +26|2023-10-06T20:28:25.7570000-07:00|A90|Rekindle|9999.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|4B|127791|79111| +21|2023-10-06T20:28:25.7570000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|736003|4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10780123|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6320|10000|||100.24|96.97|0.00|-3.13|0001B15D|0|1| +21|2023-10-06T20:28:25.7570000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|712003|75CC0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|10780123|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.14|0001B15E|0|1| +38|2023-10-06T20:28:25.7570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90639|127791|10000|10000|0||104.37|96.38|0.00|-1.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:25.7570000-07:00|A90|Rekindle|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|4B|127791|79111| +26|2023-10-06T20:28:25.7570000-07:00|A91|Undying Flame|15.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:28:25.7570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:25.7570000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:28:25.7570000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:28:25.8460000-07:00|40022550|Zeromus|0001B156|10763834||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:25.8460000-07:00|10FF0003|Gegehi Gehi|0001B156|73085|73085|3750|10000|0||98.31|100.51|0.00|3.06|2300|0|0|01|020004D3|0|41F00000|| +38|2023-10-06T20:28:25.8460000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3750|10000|0||98.31|100.51|0.00|3.06|0|0|0|||||||||| +24|2023-10-06T20:28:25.8890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1D31|169704|169704|10000|10000|||97.83|90.86|0.00|2.40|10FF0006|Wowobora Gogobora|0|80739|80739|6320|10000|||100.24|96.97|0.00|-3.13| +37|2023-10-06T20:28:25.8890000-07:00|40022550|Zeromus|0001B158|10750166||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:25.8890000-07:00|40022550|Zeromus|0001B159|10746511||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:25.8900000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.87|101.03|0.00|3.14| +38|2023-10-06T20:28:25.8900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|169704|169704|10000|10000|6||97.83|90.86|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:25.8900000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|169704|80739| +21|2023-10-06T20:28:25.9790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|310A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10746511|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7300|10000|||99.96|99.14|0.00|3.14|0001B15F|0|1| +39|2023-10-06T20:28:26.0250000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|7450|10000|||98.65|102.77|0.00|2.34| +37|2023-10-06T20:28:26.0680000-07:00|10FF0008|Kokosaze Lulusaze|0001B157|79111|79111|7450|10000|0||98.65|102.77|0.00|2.34|1B00|0|0|01|0300074C|0|41A80000|| +261|2023-10-06T20:28:25.5580000-07:00|Change|10FF0008||||| +26|2023-10-06T20:28:26.0680000-07:00|74C|Everlasting Flight|21.00|40022C92|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|79111|75851| +37|2023-10-06T20:28:26.0680000-07:00|40022550|Zeromus|0001B15A|10746487||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:25.6710000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T20:28:26.1580000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7100|10000|||99.96|99.14|0.00|3.14| +37|2023-10-06T20:28:26.2020000-07:00|10FF0005|Wuwuchu Wuchu|0001B157|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|2701|0|0|02|06000A1F|0|C1F00000|||||| +26|2023-10-06T20:28:26.2020000-07:00|74C|Everlasting Flight|21.00|40022C92|Demi-Phoenix|10FF0005|Wuwuchu Wuchu|00|90055|75851| +261|2023-10-06T20:28:25.7930000-07:00|Change|10FF0006||| +261|2023-10-06T20:28:25.7930000-07:00|Change|40022C6A||| +261|2023-10-06T20:28:25.7930000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:28:26.2480000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F724003|50910000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|10746487|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|98.99|0.00|3.14|0001B160|0|1| +38|2023-10-06T20:28:26.2480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|7||98.17|93.35|0.00|0.36|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:26.2480000-07:00|A96|Protraction|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|169704|80739| +38|2023-10-06T20:28:26.2480000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|98.99|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T20:28:26.2480000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:26.2930000-07:00|40022550|Zeromus|0001B15B|10732373||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:26.2930000-07:00|40022550|Zeromus|0001B15D|10732298||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:26.2930000-07:00|40022550|Zeromus|0001B154|10721824||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:26.2930000-07:00|40022550|Zeromus|0001B15E|10691668||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:26.2930000-07:00|10FF0005|Wuwuchu Wuchu|0001B15E|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|2700|0|0|01|06000A1F|0|41F00000|| +38|2023-10-06T20:28:26.2930000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:28:26.3360000-07:00|10FF0003|Gegehi Gehi|0001B157|73085|73085|3750|10000|0||98.45|100.54|0.00|3.04|2302|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T20:28:26.3360000-07:00|74C|Everlasting Flight|21.00|40022C92|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73085|75851| +21|2023-10-06T20:28:26.4260000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|EA0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||98.25|93.94|0.00|0.28|10691668|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B161|0|1| +21|2023-10-06T20:28:26.4260000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|714003|386B0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|10691668|40478540|10000|10000|||100.00|80.10|0.00|0.00|90639|127791|10000|10000|||101.27|98.24|0.00|-1.21|0001B162|0|1| +37|2023-10-06T20:28:26.4700000-07:00|10FF0004|Buhojaqe Zijaqe|0001B157|80739|80739|7100|10000|0||99.96|99.14|0.00|3.14|1C03|0|0|01|0500074C|0|41A80000|| +26|2023-10-06T20:28:26.4700000-07:00|74C|Everlasting Flight|21.00|40022C92|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|80739|75851| +21|2023-10-06T20:28:26.4700000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BB80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10691668|40478540|10000|10000|||100.00|80.10|0.00|0.00|154276|154276|10000|10000|||98.25|93.94|0.00|0.28|0001B163|0|1| +20|2023-10-06T20:28:26.5150000-07:00|40022550|Zeromus|8B5E|Sparking Flare|40022550|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:26.5150000-07:00|4002256D|Zeromus|8B60|Flare|4002256D|Zeromus|7.700|100.00|100.00|0.00|0.00| +20|2023-10-06T20:28:26.5150000-07:00|4002256E|Zeromus|8B60|Flare|4002256E|Zeromus|7.700|100.00|100.00|0.00|0.00| +21|2023-10-06T20:28:26.5150000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|714003|27BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10691668|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.14|0001B164|0|1| +261|2023-10-06T20:28:26.1490000-07:00|Change|4002256D||||||||||||||| +261|2023-10-06T20:28:26.1490000-07:00|Change|40022550||||||||| +261|2023-10-06T20:28:26.1490000-07:00|Change|4002256E||||||||||||||| +261|2023-10-06T20:28:26.1490000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T20:28:26.6040000-07:00|10FF0002|Suchichi Suchi|0001B157|90128|90128|10000|10000|0||99.93|98.99|0.00|-3.14|1604|0|0|02|0322|0|C1F00000|||||| +26|2023-10-06T20:28:26.6040000-07:00|74C|Everlasting Flight|21.00|40022C92|Demi-Phoenix|10FF0002|Suchichi Suchi|00|90128|75851| +21|2023-10-06T20:28:26.6040000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|55F90000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|10691668|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7450|10000|||98.65|102.77|0.00|2.35|0001B165|0|1| +38|2023-10-06T20:28:26.6040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90639|127791|10000|10000|0||101.27|98.24|0.00|-1.21|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:26.6040000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:28:26.6040000-07:00|4C7|Fey Union|60.00|40022B84|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +261|2023-10-06T20:28:26.1490000-07:00|Change|10FF0008||||| +24|2023-10-06T20:28:26.6470000-07:00|10FF0002|Suchichi Suchi|HoT|0|7AA|90128|90128|10000|10000|||99.93|98.99|0.00|-3.14|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||99.93|98.99|0.00|-3.14| +261|2023-10-06T20:28:26.1490000-07:00|Add|40022C97||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.1490000-07:00|Add|40022C98||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.1490000-07:00|Add|40022C99||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.2440000-07:00|Add|40022C9B||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.2440000-07:00|Add|40022C9D||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.2440000-07:00|Add|40022C9A||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.2440000-07:00|Add|40022C9C||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.2440000-07:00|Add|40022C9E||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.2440000-07:00|Add|40022CA0||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.2440000-07:00|Add|40022C9F||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C9A||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C97||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C9B||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C98||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C9C||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C9E||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C9F||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022CA0||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C9D||| +261|2023-10-06T20:28:26.2440000-07:00|Change|40022C99||| +38|2023-10-06T20:28:26.6480000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.94|99.04|-0.02|2.78|0|0|0|||||||||||||||| +37|2023-10-06T20:28:26.6920000-07:00|40022550|Zeromus|0001B15C|10687282|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T20:28:26.6920000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +24|2023-10-06T20:28:26.6920000-07:00|10FF0003|Gegehi Gehi|HoT|0|C39|73085|73085|3750|10000|||98.66|100.54|0.00|3.07|10FF0003|Gegehi Gehi|0|73085|73085|3750|10000|||98.66|100.54|0.00|3.07| +21|2023-10-06T20:28:26.6920000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10691668|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7150|10000|||98.65|102.77|0.00|3.08|0001B166|0|1| +38|2023-10-06T20:28:26.6920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3750|10000|0||98.66|100.54|0.00|3.07|0|0|0|||||||||| +37|2023-10-06T20:28:26.7370000-07:00|10FF0006|Wowobora Gogobora|0001B157|80739|80739|6320|10000|0||100.24|96.97|0.00|-3.13|2805|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T20:28:26.7370000-07:00|74C|Everlasting Flight|21.00|40022C92|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|80739|75851| +20|2023-10-06T20:28:26.7370000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.24|96.97|0.00|-3.13| +37|2023-10-06T20:28:26.7810000-07:00|40022550|Zeromus|0001B15F|10674728||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:26.8260000-07:00|40022550|Zeromus|0001B162|10660285||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:26.8710000-07:00|10FF0001|Sesuga Sapisuga|0001B157|90639|127791|10000|10000|0||100.79|99.36|0.00|-1.88|1306|0|0|01|0200074C|0|41A80000|| +26|2023-10-06T20:28:26.8710000-07:00|74C|Everlasting Flight|21.00|40022C92|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|127791|75851| +24|2023-10-06T20:28:26.8710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|325B|90639|127791|10000|10000|||100.79|99.36|0.00|-1.88|10FF0006|Wowobora Gogobora|0|80739|80739|6320|10000|||100.24|96.97|0.00|-3.13| +24|2023-10-06T20:28:26.8710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7A3|80739|80739|7100|10000|||99.94|99.16|0.00|-1.24|40022C92|Demi-Phoenix|0|72376|75851|10000|10000|||100.30|104.63|0.00|3.12| +38|2023-10-06T20:28:26.8710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103530|127791|10000|10000|0||100.79|99.36|0.00|-1.88|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:28:26.8710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7650|10000|0||99.94|99.16|0.00|-1.24|0|0|0||||||||||||||||||| +37|2023-10-06T20:28:26.9600000-07:00|40022550|Zeromus|0001B160|10639660||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:26.9600000-07:00|10FF0002|Suchichi Suchi|0001B160|90128|90128|10000|10000|0||99.90|99.22|0.00|1.64|1600|0|0|01|0322|0|41F00000|| +24|2023-10-06T20:28:26.9600000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|7C2|90055|90055|10000|10000|||99.87|101.03|0.00|3.14|40022C92|Demi-Phoenix|0|72376|75851|10000|10000|||100.30|104.63|0.00|3.12| +38|2023-10-06T20:28:26.9600000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||99.90|99.22|0.00|1.64|0|0|0|||||||||||||||| +38|2023-10-06T20:28:26.9600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:28:27.0060000-07:00|40022550|Zeromus|0001B163|10636660||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:27.0060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|768|80739|80739|6320|10000|||100.24|96.97|0.00|-3.13|40022C92|Demi-Phoenix|0|72376|75851|10000|10000|||100.30|104.63|0.00|3.14| +38|2023-10-06T20:28:27.0060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6870|10000|0||100.24|96.97|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T20:28:27.0060000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:28:26.7720000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:28:27.2270000-07:00|10FF0007|Kehabiqo Febiqo|0001B161|154042|154276|10000|10000|0||99.36|96.72|-0.02|2.65|1500|0|0|03|04000A34|0|41700000|||||||||| +26|2023-10-06T20:28:27.2270000-07:00|A34|Haima|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +26|2023-10-06T20:28:27.2270000-07:00|A52|Haimatinon|7.11|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|01|154276|80739| +37|2023-10-06T20:28:27.2270000-07:00|40022550|Zeromus|0001B166|10636513||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:27.2270000-07:00|40022550|Zeromus|0001B164|10626342||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:27.2270000-07:00|10FF0007|Kehabiqo Febiqo|154276|154276|10000|10000|||99.36|96.72|-0.02|2.65| +21|2023-10-06T20:28:27.2270000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.90|99.37|0.00|0.68|90128|90128|10000|10000|||99.90|99.37|0.00|0.68|0001B167|0|1| +38|2023-10-06T20:28:27.2270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|0||99.36|96.72|-0.02|2.65|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:27.2270000-07:00|A34|Haima|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +261|2023-10-06T20:28:26.7720000-07:00|Change|40022C92||||||||| +21|2023-10-06T20:28:27.2710000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10636660|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.90|99.37|0.00|0.68|0001B168|0|1| +21|2023-10-06T20:28:27.2710000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|44850000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|10636660|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.14|0001B169|0|1| +38|2023-10-06T20:28:27.2710000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:27.2710000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:28:27.2710000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:28:26.8870000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:28:27.3620000-07:00|10FF0003|Gegehi Gehi|73085|73085|3950|10000|||98.86|100.54|0.00|3.10| +261|2023-10-06T20:28:26.8870000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:28:27.4500000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.90|99.46|-0.01|0.03| +20|2023-10-06T20:28:27.4500000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.60|100.20|0.00|-0.31| +21|2023-10-06T20:28:27.4950000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|714003|19550000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|10626342|40478540|10000|10000|||100.00|80.10|0.00|0.00|103530|127791|10000|10000|||98.84|100.17|0.00|3.08|0001B16A|0|1| +20|2023-10-06T20:28:27.4950000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|98.86|100.54|0.00|3.10| +24|2023-10-06T20:28:27.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2967|154276|154276|10000|10000|||99.56|96.89|-0.02|3.07|10FF0007|Kehabiqo Febiqo|0|154276|154276|10000|10000|||99.56|96.89|-0.02|3.07| +24|2023-10-06T20:28:27.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|BEF|79111|79111|7150|10000|||98.65|102.77|0.00|3.08|40022C92|Demi-Phoenix|0|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13| +38|2023-10-06T20:28:27.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|0||99.56|96.89|-0.02|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:27.5400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|7700|10000|0||98.65|102.77|0.00|3.08|0|0|0||||||||||||| +21|2023-10-06T20:28:27.6280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|CFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10626342|40478540|10000|10000|||100.00|80.10|0.00|0.00|103530|127791|10000|10000|||98.84|100.17|0.00|3.08|0001B16B|0|1| +261|2023-10-06T20:28:27.2060000-07:00|Change|10FF0008||| +31|2023-10-06T20:28:27.6290000-07:00|10FF0001||||| +37|2023-10-06T20:28:27.6730000-07:00|40022550|Zeromus|0001B165|10604333||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:27.6730000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|370A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|10626342|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6870|10000|||100.24|96.97|0.00|-3.13|0001B16C|0|1| +21|2023-10-06T20:28:27.7170000-07:00|40022C92|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|154003|182B0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|10626342|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13|0001B16D|0|1| +37|2023-10-06T20:28:27.8060000-07:00|40022550|Zeromus|0001B168|10599492||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:27.8510000-07:00|10FF0002|Suchichi Suchi|0001B167|90128|90128|10000|10000|0||99.90|99.54|0.00|0.03|1600|0|0|01|03000748|0|41A00000|| +26|2023-10-06T20:28:27.8510000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +04|2023-10-06T20:28:27.3940000-07:00|40022C6A|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||97.92|103.44|0.00|-0.05| +261|2023-10-06T20:28:27.3940000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:28:27.3940000-07:00|Remove|40022C6A| +37|2023-10-06T20:28:27.8970000-07:00|40022550|Zeromus|0001B169|10581951||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:27.8970000-07:00|10FF0005|Wuwuchu Wuchu|0001B169|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|2700|0|0|01|06000A1E|0|41F00000|| +38|2023-10-06T20:28:27.8970000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.87|101.03|0.00|3.14|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:28:27.9410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103530|127791|10000|10000|0||99.47|100.04|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:27.9410000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:28:27.9850000-07:00|40022C92|Demi-Phoenix|005A5A00|72376|75851|10000|10000|0||100.30|104.63|0.00|-3.13|0|0|0||||||| +26|2023-10-06T20:28:27.9850000-07:00|30|Well Fed|1951.48|10FF0008|Kokosaze Lulusaze|40022C92|Demi-Phoenix|2964|75851|79111| +26|2023-10-06T20:28:27.9850000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|40022C92|Demi-Phoenix|01|75851|40478540| +21|2023-10-06T20:28:27.9850000-07:00|10FF0008|Kokosaze Lulusaze|4084|Enkindle Phoenix|40022550|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|10581951|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7700|10000|||98.63|102.74|0.00|-3.05|0001B16E|0|1| +39|2023-10-06T20:28:28.0280000-07:00|10FF0001|Sesuga Sapisuga|104807|127791|10000|10000|||100.17|100.01|0.00|-3.10| +21|2023-10-06T20:28:28.0740000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|1F030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10581951|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|3.14|0001B16F|0|1| +261|2023-10-06T20:28:27.6960000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:28:28.1180000-07:00|40022550|Zeromus|0001B16A|10575466||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:28.1180000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|24C60000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|10581951|40478540|10000|10000|||100.00|80.10|0.00|0.00|154276|154276|10000|10000|||97.65|97.23|0.00|-3.01|0001B170|0|1| +37|2023-10-06T20:28:28.1630000-07:00|40022550|Zeromus|0001B16B|10572141||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:28.2080000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|2.06| +24|2023-10-06T20:28:28.2080000-07:00|40022550|Zeromus|DoT|0|2238|10581951|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||99.87|101.03|0.00|3.14| +38|2023-10-06T20:28:28.2080000-07:00|40022550|Zeromus|005A5A00|10563381|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:28:27.8110000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:28:28.2520000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1B190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10563381|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|101.03|0.00|-3.12|0001B171|0|1| +24|2023-10-06T20:28:28.3410000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1994|154276|154276|10000|10000|||97.61|97.24|0.00|3.00|10FF0006|Wowobora Gogobora|0|80739|80739|6470|10000|||100.24|96.98|0.00|-2.35| +37|2023-10-06T20:28:28.3410000-07:00|40022550|Zeromus|0001B16C|10549291||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:28.3410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|0||97.61|97.24|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:28.3410000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +21|2023-10-06T20:28:28.3860000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|754003|3A6D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10563381|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7650|10000|||99.53|100.39|0.00|3.12|0001B172|0|1| +39|2023-10-06T20:28:28.5200000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6675|10000|||100.24|96.99|0.00|-1.70| +24|2023-10-06T20:28:28.5650000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C7|25C0|104807|127791|10000|10000|||103.13|99.87|0.00|-3.10|40022B84|Ruby Carbuncle|0|73956|77430|10000|10000|||97.31|97.52|0.00|2.06| +37|2023-10-06T20:28:28.6540000-07:00|40022550|Zeromus|0001B170|10539877||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:28.7440000-07:00|40022550|Zeromus|0001B16D|10533690||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:28.7440000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|2BBF0000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|10539877|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.69|99.67|0.00|2.86|0001B173|0|1| +38|2023-10-06T20:28:28.7440000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.69|99.67|0.00|2.86|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:28.7440000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:28:28.7440000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:28.7880000-07:00|40022550|Zeromus|0001B16F|10525751||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:28.7880000-07:00|40022550|Zeromus|0001B171|10518814||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:28.8770000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||97.20|101.20|0.00|-2.30| +21|2023-10-06T20:28:28.9230000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|2E760000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|10518814|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3950|10000|||98.86|100.54|0.00|3.09|0001B174|0|1| +38|2023-10-06T20:28:28.9230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3750|10000|0||98.86|100.54|0.00|3.09|0|0|0|||||||||| +30|2023-10-06T20:28:28.9230000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:28:28.9230000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:28:28.4490000-07:00|Change|10FF0003||||||||||||||||| +39|2023-10-06T20:28:29.0560000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|7900|10000|||94.95|100.91|0.00|-1.93| +21|2023-10-06T20:28:29.0560000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|53050000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|10518814|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7700|10000|||94.95|100.91|0.00|-1.93|0001B175|0|1| +38|2023-10-06T20:28:29.0560000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|2.06|0|0|0|||||||||| +26|2023-10-06T20:28:29.0560000-07:00|77B|Summon Order|30.00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:28:29.0560000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7250|10000|||101.49|99.99|0.00|1.99|80739|80739|7250|10000|||101.49|99.99|0.00|1.99|0001B176|0|1| +38|2023-10-06T20:28:29.0560000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.31|97.52|0.00|2.06|0|0|0||||||| +30|2023-10-06T20:28:29.0560000-07:00|4C6|Fey Union|0.00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|12C|77430|77430| +38|2023-10-06T20:28:29.0560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|114471|127791|10000|10000|0||104.75|99.54|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:29.0560000-07:00|4C7|Fey Union|0.00|40022B84|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +261|2023-10-06T20:28:28.6600000-07:00|Change|10FF0008||||||||||| +20|2023-10-06T20:28:29.1000000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|95.70|100.59|0.00|-2.09| +261|2023-10-06T20:28:28.6600000-07:00|Change|10FF0005||||||||||||||||||| +39|2023-10-06T20:28:29.1450000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7450|10000|||102.13|99.93|0.00|1.88| +38|2023-10-06T20:28:29.1450000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6675|10000|0||98.88|99.72|0.00|-0.85|0|0|0|||||||||||||||| +26|2023-10-06T20:28:29.1450000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:28:29.1450000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:28:29.1450000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|6675|10000|||98.88|99.72|0.00|-0.85|80739|80739|6675|10000|||98.88|99.72|0.00|-0.85|0001B177|0|1| +37|2023-10-06T20:28:29.1890000-07:00|40022550|Zeromus|0001B172|10503857||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:28.7810000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:28:29.2340000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|150B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|114471|127791|10000|10000|||106.04|99.48|0.00|-3.10|73956|77430|10000|10000|||97.31|97.52|0.00|2.00|0001B178|0|1| +21|2023-10-06T20:28:29.2780000-07:00|40022C92|Demi-Phoenix|4086|Revelation|40022550|Zeromus|156003|458A4001|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|10503857|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13|0001B179|0|1| +261|2023-10-06T20:28:28.8960000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:28:29.3670000-07:00|40022550|Zeromus|0001B173|10492658||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:29.3670000-07:00|10FF0002|Suchichi Suchi|0001B173|90128|90128|10000|10000|0||103.49|99.54|-0.01|-3.12|1600|0|0|01|05000323|0|41F00000|| +38|2023-10-06T20:28:29.3670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.49|99.54|-0.01|-3.12|0|0|0||||||||||||||||||| +261|2023-10-06T20:28:29.1210000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:28:29.5460000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10492658|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6675|10000|||98.62|100.21|-0.02|-0.88|0001B17A|0|1| +21|2023-10-06T20:28:29.5900000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|734003|BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10492658|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7450|10000|||103.72|99.88|0.00|1.75|0001B17B|0|1| +24|2023-10-06T20:28:29.6350000-07:00|10FF0002|Suchichi Suchi|HoT|0|C88|90128|90128|10000|10000|||103.53|99.53|0.00|-3.13|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||103.53|99.53|0.00|-3.13| +38|2023-10-06T20:28:29.6350000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.53|99.53|0.00|-3.13|0|0|0||||||||||||||||||| +24|2023-10-06T20:28:29.6790000-07:00|10FF0003|Gegehi Gehi|HoT|0|73C|73085|73085|3750|10000|||101.54|100.27|0.00|1.75|10FF0003|Gegehi Gehi|0|73085|73085|3750|10000|||101.54|100.27|0.00|1.75| +38|2023-10-06T20:28:29.6790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3750|10000|0||101.54|100.27|0.00|1.75|0|0|0|||||||||| +37|2023-10-06T20:28:29.7240000-07:00|40022550|Zeromus|0001B174|10480764||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:29.8130000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10480764|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7600|10000|||94.31|100.76|0.00|2.24|0001B17C|0|1| +24|2023-10-06T20:28:29.8590000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1AA3|114471|127791|10000|10000|||106.07|98.85|0.00|-3.09|10FF0006|Wowobora Gogobora|0|80739|80739|6675|10000|||98.60|100.19|-0.02|-1.32| +24|2023-10-06T20:28:29.8590000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|79E|80739|80739|7450|10000|||104.01|99.82|0.00|1.87|40022C92|Demi-Phoenix|0|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13| +21|2023-10-06T20:28:29.8590000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|11C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10480764|40478540|10000|10000|||100.00|80.10|0.00|0.00|154276|154276|10000|10000|||94.64|98.78|0.00|-2.96|0001B17D|0|1| +20|2023-10-06T20:28:29.8590000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|104.01|99.82|0.00|1.87| +21|2023-10-06T20:28:29.8590000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|750003|8E740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10480764|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||94.71|100.18|0.00|2.88|0001B17E|0|1| +38|2023-10-06T20:28:29.8590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121290|127791|10000|10000|0||106.07|98.85|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:28:29.8590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8000|10000|0||104.01|99.82|0.00|1.87|0|0|0||||||||||||||||||| +38|2023-10-06T20:28:29.8590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||94.71|100.18|0.00|2.88|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:29.8590000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:28:29.8590000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:28:29.4120000-07:00|Change|10FF0005||||||||||||||||||| +21|2023-10-06T20:28:29.9030000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|66E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10480764|40478540|10000|10000|||100.00|80.10|0.00|0.00|121290|127791|10000|10000|||106.07|98.85|0.00|-2.83|0001B17F|0|1| +31|2023-10-06T20:28:29.9030000-07:00|10FF0001||||| +24|2023-10-06T20:28:29.9470000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|7CA|90055|90055|10000|10000|||94.71|100.18|0.00|2.88|40022C92|Demi-Phoenix|0|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13| +21|2023-10-06T20:28:29.9470000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|556003|6A890000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|10480764|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3750|10000|||102.84|100.42|0.00|1.60|0001B180|0|1| +38|2023-10-06T20:28:29.9470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3450|10000|0||102.84|100.42|0.00|1.60|0|0|0||||||| +261|2023-10-06T20:28:29.5020000-07:00|Change|10FF0003||||||||||| +30|2023-10-06T20:28:29.9470000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:28:29.9470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||94.71|100.18|0.00|2.88|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:28:29.9920000-07:00|10FF0006|Wowobora Gogobora|HoT|0|738|80739|80739|6675|10000|||98.48|100.00|0.00|-2.04|10FF0006|Wowobora Gogobora|0|80739|80739|6675|10000|||98.48|100.00|0.00|-2.04| +21|2023-10-06T20:28:29.9920000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1CBC0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|10480764|40478540|10000|10000|||100.00|80.10|0.00|0.00|121290|127791|10000|10000|||106.07|98.85|0.00|-2.83|0001B181|0|1| +38|2023-10-06T20:28:29.9920000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7225|10000|0||98.48|100.00|0.00|-2.04|0|0|0|||||||||||||||| +37|2023-10-06T20:28:30.0360000-07:00|10FF0001|Sesuga Sapisuga|0001B178|126677||||||106.07|98.85|0.00|-2.83| +37|2023-10-06T20:28:30.0810000-07:00|40022550|Zeromus|0001B17A|10480728||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:30.0810000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|1A6B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10480764|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.64|99.53|0.00|-3.11|0001B182|0|1| +37|2023-10-06T20:28:30.1250000-07:00|40022550|Zeromus|0001B175|10459475||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:30.1250000-07:00|40022550|Zeromus|0001B17B|10459285||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:30.1250000-07:00|40022C92|Demi-Phoenix|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13| +22|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|CC00000|CC0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|0001B183|0|8| +22|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|CED0000|5C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||94.71|100.18|0.00|2.88|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|0001B183|1|8| +22|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|F490000|E90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||94.44|99.10|0.00|-2.96|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|0001B183|2|8| +22|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|200004|14D20000|A00E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|79111|79111|7600|10000|||93.85|101.18|0.00|-3.04|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|0001B183|3|8| +22|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|200004|147D0000|900E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||103.68|99.50|0.00|-3.11|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|0001B183|4|8| +22|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|200004|15000000|330E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|8000|10000|||104.28|99.76|0.00|3.02|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|0001B183|5|8| +22|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|C500000|660E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|73085|73085|3450|10000|||104.71|101.06|0.00|2.26|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|0001B183|6|8| +22|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|CDE0000|2C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|126677|127791|10000|10000|||106.07|98.85|0.00|-2.83|80739|80739|7225|10000|||98.39|99.84|0.00|-2.61|0001B183|7|8| +38|2023-10-06T20:28:30.1700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|15||94.44|99.10|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:30.1700000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:28:30.1700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||103.68|99.50|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:30.1700000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:28:30.1700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|7600|10000|21||93.85|101.18|0.00|-3.04|0|0|0|||||||||||||||| +26|2023-10-06T20:28:30.1700000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:28:30.1700000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6325|10000|12||98.39|99.84|0.00|-2.61|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:30.1700000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:28:30.1700000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:30.1700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126677|127791|10000|10000|8||106.07|98.85|0.00|-2.83|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:30.1700000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:28:30.1700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8000|10000|21||104.28|99.76|0.00|3.02|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:30.1700000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:28:30.1700000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3450|10000|13||104.71|101.06|0.00|2.26|0|0|0|||||||||| +26|2023-10-06T20:28:30.1700000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:28:30.1700000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||94.71|100.18|0.00|2.88|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:28:30.1700000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:28:29.8100000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T20:28:30.2580000-07:00|10FF0007|Kehabiqo Febiqo|154276|154276|10000|10000|||94.44|99.10|0.00|-2.96| +37|2023-10-06T20:28:30.3030000-07:00|40022550|Zeromus|0001B179|10375947||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:28:30.3030000-07:00|40022B84|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|6325|10000|||98.34|99.76|0.00|-2.89|73956|77430|10000|10000|||97.31|97.52|0.00|1.42|0001B184|0|8| +22|2023-10-06T20:28:30.3030000-07:00|40022B84|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F8A0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||94.41|99.13|0.00|-2.96|73956|77430|10000|10000|||97.31|97.52|0.00|1.42|0001B184|1|8| +22|2023-10-06T20:28:30.3030000-07:00|40022B84|Ruby Carbuncle|323|Whispering Dawn|10FF0005|Wuwuchu Wuchu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||94.71|100.18|0.00|2.88|73956|77430|10000|10000|||97.31|97.52|0.00|1.42|0001B184|2|8| +22|2023-10-06T20:28:30.3030000-07:00|40022B84|Ruby Carbuncle|323|Whispering Dawn|10FF0002|Suchichi Suchi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||103.73|99.44|0.00|-3.11|73956|77430|10000|10000|||97.31|97.52|0.00|1.42|0001B184|3|8| +22|2023-10-06T20:28:30.3030000-07:00|40022B84|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|7600|10000|||93.22|101.60|-0.02|-2.41|73956|77430|10000|10000|||97.31|97.52|0.00|1.42|0001B184|4|8| +22|2023-10-06T20:28:30.3030000-07:00|40022B84|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8000|10000|||104.32|99.75|-0.01|-2.96|73956|77430|10000|10000|||97.31|97.52|0.00|1.42|0001B184|5|8| +22|2023-10-06T20:28:30.3030000-07:00|40022B84|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|3450|10000|||105.33|101.33|0.00|1.74|73956|77430|10000|10000|||97.31|97.52|0.00|1.42|0001B184|6|8| +22|2023-10-06T20:28:30.3030000-07:00|40022B84|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|126677|127791|10000|10000|||106.07|98.85|0.00|-2.83|73956|77430|10000|10000|||97.31|97.52|0.00|1.42|0001B184|7|8| +38|2023-10-06T20:28:30.3030000-07:00|40022C92|Demi-Phoenix|005A5A00|72376|75851|10000|10000|0||100.30|104.63|0.00|-3.13|0|0|0|||| +30|2023-10-06T20:28:30.3030000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|40022C92|Demi-Phoenix|01|75851|40478540| +261|2023-10-06T20:28:29.9280000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:28:30.3470000-07:00|40022550|Zeromus|0001B17C|10375798||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:30.3910000-07:00|40022550|Zeromus|0001B17D|10371249||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:30.3910000-07:00|10FF0003|Gegehi Gehi|73085|73085|3650|10000|||105.33|101.33|0.00|1.74| +37|2023-10-06T20:28:30.4350000-07:00|40022550|Zeromus|0001B17F|10369603||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:30.4800000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||103.78|99.39|0.00|-3.11| +21|2023-10-06T20:28:30.4800000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10371249|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3650|10000|||105.82|101.66|0.00|1.56|0001B185|0|1| +38|2023-10-06T20:28:30.4800000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6325|10000|12||98.31|99.72|0.00|-3.05|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:30.4800000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:28:30.5250000-07:00|40022550|Zeromus|0001B17E|10333135||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:30.5250000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1825|154276|154276|10000|10000|||94.41|99.14|0.00|-2.96|10FF0007|Kehabiqo Febiqo|0|154276|154276|10000|10000|||94.41|99.14|0.00|-2.96| +24|2023-10-06T20:28:30.5250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7AB|79111|79111|7600|10000|||92.72|102.09|0.00|-1.34|10FF0006|Wowobora Gogobora|0|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06| +38|2023-10-06T20:28:30.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154276|154276|10000|10000|15||94.41|99.14|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:30.5250000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +38|2023-10-06T20:28:30.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8150|10000|21||92.72|102.09|0.00|-1.34|0|0|0|||||||||||||||| +261|2023-10-06T20:28:30.1570000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:28:30.5690000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|1FF80000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|10369603|40478540|10000|10000|||100.00|80.10|0.00|0.00|154276|154276|10000|10000|||94.41|99.14|0.00|-2.96|0001B186|0|1| +37|2023-10-06T20:28:30.6140000-07:00|40022550|Zeromus|0001B182|10326372||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:30.7040000-07:00|40022550|Zeromus|0001B180|10299099||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:30.7480000-07:00|40022550|Zeromus|0001B181|10291743||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:28:30.7940000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|0001B187|0|8| +22|2023-10-06T20:28:30.7940000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||94.71|100.18|0.00|2.88|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|0001B187|1|8| +22|2023-10-06T20:28:30.7940000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|F910E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|154276|154276|10000|10000|||94.41|99.14|0.00|2.86|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|0001B187|2|8| +22|2023-10-06T20:28:30.7940000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||103.84|99.32|0.00|-3.11|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|0001B187|3|8| +22|2023-10-06T20:28:30.7940000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|8000|10000|||104.33|99.75|0.00|-2.92|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|0001B187|4|8| +22|2023-10-06T20:28:30.7940000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8150|10000|||92.59|102.34|0.00|-0.24|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|0001B187|5|8| +22|2023-10-06T20:28:30.7940000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|126677|127791|10000|10000|||106.07|98.85|0.00|-2.83|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|0001B187|6|8| +22|2023-10-06T20:28:30.7940000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|3650|10000|||106.16|102.27|0.00|2.26|80739|80739|6325|10000|||98.31|99.72|0.00|-3.06|0001B187|7|8| +21|2023-10-06T20:28:30.7940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|756003|62D80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10299099|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8000|10000|||104.33|99.75|0.00|-2.92|0001B188|0|1| +261|2023-10-06T20:28:30.5370000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:28:31.0170000-07:00|40022550|Zeromus|0001B185|10291719||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:31.0170000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||106.21|98.85|0.00|-3.13| +37|2023-10-06T20:28:31.1060000-07:00|10FF0006|Wowobora Gogobora|0001B183|80739|80739|6325|10000|12||98.30|99.72|0.00|-2.33|2800|0|0|01|05000A31|0|41E8DD2C|| +37|2023-10-06T20:28:31.1960000-07:00|40022550|Zeromus|0001B186|10283535||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:31.1960000-07:00|10FF0006|Wowobora Gogobora|0001B184|80739|80739|6325|10000|12||98.29|99.72|0.00|-2.02|2800|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T20:28:31.1960000-07:00|13B|Whispering Dawn|21.00|40022B84|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +24|2023-10-06T20:28:31.1960000-07:00|40022550|Zeromus|DoT|0|297F|10291719|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||94.71|100.18|0.00|2.88| +21|2023-10-06T20:28:31.1960000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|43DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10291719|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3650|10000|||106.25|102.49|0.00|2.62|0001B189|0|1| +38|2023-10-06T20:28:31.1960000-07:00|40022550|Zeromus|005A5A00|10272912|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:28:30.7660000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:28:31.2400000-07:00|10FF0005|Wuwuchu Wuchu|0001B183|90055|90055|10000|10000|11||94.71|100.18|0.00|2.88|2701|0|0|01|04000A31|0|41E7CABD|| +39|2023-10-06T20:28:31.2400000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.31|97.52|0.00|1.42| +21|2023-10-06T20:28:31.2400000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|3B580000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|10291719|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.84|99.32|0.00|-3.11|0001B18A|0|1| +38|2023-10-06T20:28:31.2400000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||103.84|99.32|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:31.2400000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:28:31.2400000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:28:30.7660000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:28:31.3280000-07:00|10FF0007|Kehabiqo Febiqo|0001B184|154276|154276|10000|10000|15||94.41|99.14|0.00|2.86|1501|0|0|01|0A00013B|0|41A80000|| +26|2023-10-06T20:28:31.3280000-07:00|13B|Whispering Dawn|21.00|40022B84|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|154276|77430| +21|2023-10-06T20:28:31.3280000-07:00|40022C92|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|152003|1EDC0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|10272912|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13|0001B18B|0|1| +37|2023-10-06T20:28:31.3720000-07:00|10FF0007|Kehabiqo Febiqo|0001B183|154276|154276|10000|10000|15||94.41|99.14|0.00|2.86|1502|0|0|01|08000A31|0|41E6BA5A|| +37|2023-10-06T20:28:31.4620000-07:00|10FF0005|Wuwuchu Wuchu|0001B184|90055|90055|10000|10000|11||94.71|100.18|0.00|2.88|2702|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T20:28:31.4620000-07:00|13B|Whispering Dawn|21.00|40022B84|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +261|2023-10-06T20:28:30.9860000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:28:30.9860000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:28:30.9860000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:28:30.9860000-07:00|Change|40022567||||||||| +261|2023-10-06T20:28:30.9860000-07:00|Change|40022569||||||||| +261|2023-10-06T20:28:30.9860000-07:00|Change|40022568||||||||| +261|2023-10-06T20:28:30.9860000-07:00|Change|40022566||||||||| +261|2023-10-06T20:28:30.9860000-07:00|Change|40022565||||||||| +37|2023-10-06T20:28:31.5070000-07:00|10FF0008|Kokosaze Lulusaze|0001B183|79111|79111|8150|10000|21||92.52|102.68|0.00|1.15|1B03|0|0|01|04000A31|0|41E5A7EB|| +39|2023-10-06T20:28:31.5070000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6530|10000|||96.10|100.48|0.00|-1.43| +21|2023-10-06T20:28:31.5070000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|53220000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|10272912|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8150|10000|||92.52|102.68|0.00|1.15|0001B18C|0|1| +261|2023-10-06T20:28:31.1010000-07:00|Change|10FF0006||||||||||| +20|2023-10-06T20:28:31.5510000-07:00|40022565|Zeromus|8B64|Sparking Flare|10FF0004|Buhojaqe Zijaqe|9.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:28:31.5510000-07:00|40022566|Zeromus|8B64|Sparking Flare|10FF0002|Suchichi Suchi|9.700|95.00|100.00|0.00|0.00| +20|2023-10-06T20:28:31.5510000-07:00|40022567|Zeromus|8B64|Sparking Flare|10FF0001|Sesuga Sapisuga|9.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:28:31.5510000-07:00|40022568|Zeromus|8B64|Sparking Flare|10FF0006|Wowobora Gogobora|9.700|95.00|100.00|0.00|0.00| +20|2023-10-06T20:28:31.5510000-07:00|40022569|Zeromus|8B64|Sparking Flare|10FF0005|Wuwuchu Wuchu|9.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:28:31.5510000-07:00|4002256A|Zeromus|8B64|Sparking Flare|10FF0003|Gegehi Gehi|9.700|95.00|100.00|0.00|0.00| +20|2023-10-06T20:28:31.5510000-07:00|4002256B|Zeromus|8B64|Sparking Flare|10FF0008|Kokosaze Lulusaze|9.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:28:31.5510000-07:00|4002256C|Zeromus|8B64|Sparking Flare|10FF0007|Kehabiqo Febiqo|9.700|95.00|100.00|0.00|0.00| +261|2023-10-06T20:28:31.1010000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:28:31.5970000-07:00|10FF0002|Suchichi Suchi|0001B184|90128|90128|10000|10000|18||103.84|99.32|0.00|-2.94|1603|0|0|02|0500013B|0|41A80000|||||| +26|2023-10-06T20:28:31.5970000-07:00|13B|Whispering Dawn|21.00|40022B84|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +37|2023-10-06T20:28:31.5970000-07:00|10FF0006|Wowobora Gogobora|0001B187|80739|80739|7230|10000|12||96.10|100.48|0.00|-1.43|2800|0|0|02|04000A3A|0|41700000|||||| +26|2023-10-06T20:28:31.5970000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:28:31.5970000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:28:31.5970000-07:00|40022550|Zeromus|0001B188|10247608||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:31.5970000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|710003|40830000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|10272912|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||94.71|100.18|0.00|2.88|0001B18D|0|1| +37|2023-10-06T20:28:31.6410000-07:00|10FF0002|Suchichi Suchi|0001B183|90128|90128|10000|10000|18||103.89|99.32|0.00|-2.98|1604|0|0|02|0A31|0|41E4957C|||||| +38|2023-10-06T20:28:31.6860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||106.62|98.84|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T20:28:31.6860000-07:00|A3B|Taurochole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:28:31.7310000-07:00|10FF0008|Kokosaze Lulusaze|0001B184|79111|79111|7850|10000|21||92.52|102.68|0.00|2.82|1B04|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T20:28:31.7310000-07:00|13B|Whispering Dawn|21.00|40022B84|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +37|2023-10-06T20:28:31.7310000-07:00|10FF0005|Wuwuchu Wuchu|0001B187|90055|90055|10000|10000|11||94.71|100.18|0.00|2.88|2701|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:28:31.7310000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:28:31.7310000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:28:31.7750000-07:00|10FF0004|Buhojaqe Zijaqe|0001B183|80739|80739|7600|10000|21||104.33|99.75|0.00|-2.92|1C05|0|0|01|06000A31|0|41E38101|| +261|2023-10-06T20:28:31.4220000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:28:31.8640000-07:00|10FF0004|Buhojaqe Zijaqe|0001B184|80739|80739|7600|10000|21||104.33|99.75|0.00|-2.92|1C05|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T20:28:31.8640000-07:00|13B|Whispering Dawn|21.00|40022B84|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +37|2023-10-06T20:28:31.8640000-07:00|10FF0007|Kehabiqo Febiqo|0001B187|154276|154276|10000|10000|15||94.37|99.14|0.00|3.06|1502|0|0|02|0C000A3A|0|41700000|||||| +26|2023-10-06T20:28:31.8640000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +26|2023-10-06T20:28:31.8640000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|154276|80739| +39|2023-10-06T20:28:31.8640000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||94.71|100.18|0.00|2.88| +37|2023-10-06T20:28:31.9090000-07:00|40022550|Zeromus|0001B18A|10232416||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:31.9090000-07:00|10FF0002|Suchichi Suchi|0001B18A|90128|90128|10000|10000|18||104.00|99.32|0.00|-3.06|1600|0|0|01|06000747|0|41F00000|| +37|2023-10-06T20:28:31.9090000-07:00|10FF0003|Gegehi Gehi|0001B183|73085|73085|3650|10000|13||106.25|102.49|0.00|-2.87|2306|0|0|01|02000A31|0|41E2709E|| +21|2023-10-06T20:28:31.9090000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|720003|284C0000|23E|BD8000|FE3E|9E8000|0|0|0|0|0|0|0|0|0|0|10247608|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||104.00|99.32|0.00|-3.06|0001B18E|0|1| +38|2023-10-06T20:28:31.9090000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||104.00|99.32|0.00|-3.06|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:28:31.5190000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:28:31.5190000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:28:31.5190000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:28:31.5190000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:28:31.5190000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:28:31.5190000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:28:31.5190000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:28:31.5190000-07:00|Change|4002256A||||||||||||| +37|2023-10-06T20:28:32.0000000-07:00|10FF0003|Gegehi Gehi|0001B184|73085|73085|3650|10000|13||106.25|102.49|0.00|-2.87|2306|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T20:28:32.0000000-07:00|13B|Whispering Dawn|21.00|40022B84|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +37|2023-10-06T20:28:32.0000000-07:00|10FF0002|Suchichi Suchi|0001B187|90128|90128|10000|10000|18||104.06|99.32|0.00|-2.93|1603|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:28:32.0000000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:28:32.0000000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:28:32.0000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||94.32|99.14|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:32.0000000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|154276|154276| +37|2023-10-06T20:28:32.0440000-07:00|10FF0001|Sesuga Sapisuga|0001B183|127791|127791|10000|10000|8||106.62|98.84|0.00|-3.13|1307|0|0|01|04000A31|0|41E15A17|| +39|2023-10-06T20:28:32.0440000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8050|10000|||92.52|102.68|0.00|2.82| +37|2023-10-06T20:28:32.1330000-07:00|10FF0001|Sesuga Sapisuga|0001B184|127791|127791|10000|10000|8||106.62|98.84|0.00|-3.13|1307|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T20:28:32.1330000-07:00|13B|Whispering Dawn|21.00|40022B84|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:28:32.1330000-07:00|10FF0004|Buhojaqe Zijaqe|0001B187|80739|80739|7600|10000|21||104.33|99.75|0.00|-2.92|1C04|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:28:32.1330000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:28:32.1330000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:28:32.1330000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7800|10000|||104.33|99.75|0.00|-2.92| +20|2023-10-06T20:28:32.1330000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|93.62|102.69|-0.02|-0.47| +38|2023-10-06T20:28:32.1330000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.56|98.60|0.00|0.82|0|0|0|||| +30|2023-10-06T20:28:32.1330000-07:00|77B|Summon Order|0.00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:28:32.1780000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10232416|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||106.62|98.84|0.00|-3.13|0001B18F|0|1| +31|2023-10-06T20:28:32.1780000-07:00|10FF0001||||| +261|2023-10-06T20:28:31.8150000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:28:32.2660000-07:00|10FF0008|Kokosaze Lulusaze|0001B187|79111|79111|8050|10000|21||92.52|102.68|0.00|2.82|1B05|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:28:32.2660000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:28:32.2660000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:28:32.2660000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10232416|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||94.71|100.18|0.00|2.89|0001B190|0|1| +37|2023-10-06T20:28:32.3550000-07:00|40022550|Zeromus|0001B18B|10224516||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:32.3550000-07:00|40022550|Zeromus|0001B189|10207145||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:32.4010000-07:00|10FF0001|Sesuga Sapisuga|0001B187|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|1306|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:28:32.4010000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:28:32.4010000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:28:32.4470000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|282D0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|10232416|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||106.62|98.84|0.00|-2.80|0001B191|0|1| +21|2023-10-06T20:28:32.4470000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|750003|47AD0000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|10232416|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||94.71|100.18|0.00|2.89|0001B192|0|1| +38|2023-10-06T20:28:32.4470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:32.4470000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:28:32.4470000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:28:32.4470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||94.71|100.18|0.00|2.89|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:32.4470000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +261|2023-10-06T20:28:32.0530000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:28:32.5350000-07:00|40022550|Zeromus|0001B18E|10196829||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:32.5350000-07:00|10FF0003|Gegehi Gehi|0001B187|73085|73085|3650|10000|13||106.25|102.49|0.00|-2.87|2307|0|0|02|04000A3A|0|41700000|||||| +26|2023-10-06T20:28:32.5350000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:28:32.5350000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +21|2023-10-06T20:28:32.5350000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|722003|57130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10207145|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||104.08|99.32|0.00|-2.93|0001B193|0|1| +38|2023-10-06T20:28:32.5350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||94.71|100.18|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:32.5350000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:28:32.1640000-07:00|Change|10FF0008||| +37|2023-10-06T20:28:32.5800000-07:00|40022550|Zeromus|0001B18C|10175547||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:28:32.5800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|104.39|99.79|0.00|1.84| +37|2023-10-06T20:28:32.6240000-07:00|40022550|Zeromus|0001B18D|10159032||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:32.6240000-07:00|10FF0005|Wuwuchu Wuchu|0001B18D|90055|90055|10000|10000|11||94.71|100.12|-0.02|2.86|2700|0|0|01|0A000A1B|02|C1F00000|| +24|2023-10-06T20:28:32.6690000-07:00|10FF0002|Suchichi Suchi|HoT|0|1CFD|90128|90128|10000|10000|||104.08|99.32|0.00|-2.93|10FF0006|Wowobora Gogobora|0|80739|80739|7230|10000|||93.59|102.55|0.00|-2.76| +38|2023-10-06T20:28:32.6690000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||104.08|99.32|0.00|-2.93|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:28:32.7140000-07:00|40022550|Zeromus|0001B18F|10157316||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:32.7140000-07:00|10FF0001|Sesuga Sapisuga|0001B18F|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|1300|0|0|02|0800076E|03|C1F00000|||||| +24|2023-10-06T20:28:32.7140000-07:00|10FF0003|Gegehi Gehi|HoT|0|225A|73085|73085|3650|10000|||106.25|102.49|0.00|-2.87|10FF0006|Wowobora Gogobora|0|80739|80739|7230|10000|||93.58|102.53|0.00|2.94| +38|2023-10-06T20:28:32.7140000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3650|10000|13||106.25|102.49|0.00|-2.87|0|0|0||||||||||||||||||| +37|2023-10-06T20:28:32.8020000-07:00|40022550|Zeromus|0001B190|10154008||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:32.8020000-07:00|10FF0005|Wuwuchu Wuchu|0001B190|90055|90055|10000|10000|11||94.59|99.67|0.00|2.86|2700|0|0|01|0A000A1B|02|C1F00000|| +24|2023-10-06T20:28:32.8470000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3119|127791|127791|10000|10000|||106.62|98.84|0.00|-2.80|10FF0006|Wowobora Gogobora|0|80739|80739|7230|10000|||93.58|102.53|0.00|2.86| +24|2023-10-06T20:28:32.8470000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2FF4|80739|80739|7800|10000|||104.45|99.83|0.00|2.54|10FF0006|Wowobora Gogobora|0|80739|80739|7230|10000|||93.58|102.53|0.00|2.86| +38|2023-10-06T20:28:32.8470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:32.8470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|8350|10000|21||104.45|99.83|0.00|2.54|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:32.8920000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10157316|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||104.08|99.33|-0.02|-2.78|0001B194|0|1| +24|2023-10-06T20:28:32.9810000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|263F|90055|90055|10000|10000|||94.10|99.85|0.00|-3.04|10FF0006|Wowobora Gogobora|0|80739|80739|7230|10000|||93.58|102.53|0.00|2.86| +38|2023-10-06T20:28:32.9810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||94.10|99.85|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:28:33.0260000-07:00|40022550|Zeromus|0001B191|10143723||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:33.0260000-07:00|10FF0001|Sesuga Sapisuga|0001B191|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|1300|0|0|02|0800076E|03|41F00000|||||| +24|2023-10-06T20:28:33.0260000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1EAC|80739|80739|7230|10000|||93.58|102.53|0.00|2.86|10FF0006|Wowobora Gogobora|0|80739|80739|7230|10000|||93.58|102.53|0.00|2.86| +21|2023-10-06T20:28:33.0260000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|31C20000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|10154008|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.76|99.41|0.00|-2.97|0001B195|0|1| +38|2023-10-06T20:28:33.0260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||92.76|99.41|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:33.0260000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:28:33.0260000-07:00|59|Vengeance|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|128564|128564| +26|2023-10-06T20:28:33.0260000-07:00|A75|Surging Tempest|52.12|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:28:33.0260000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7230|10000|12||93.58|102.53|0.00|2.86|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:33.0260000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:33.0260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:33.0710000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|41210000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|10154008|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7230|10000|||93.58|102.53|0.00|2.86|0001B196|0|1| +39|2023-10-06T20:28:33.1150000-07:00|40022C92|Demi-Phoenix|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13| +20|2023-10-06T20:28:33.1150000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|106.25|102.49|0.00|-2.87| +261|2023-10-06T20:28:32.6580000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T20:28:33.2490000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.76|99.41|0.00|2.78| +21|2023-10-06T20:28:33.2490000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|17400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10143723|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.76|99.41|0.00|2.78|0001B197|0|1| +37|2023-10-06T20:28:33.2940000-07:00|40022550|Zeromus|0001B193|10121432||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:32.8850000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:28:33.3390000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10143723|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6830|10000|||93.58|102.53|0.00|2.86|0001B198|0|1| +21|2023-10-06T20:28:33.3390000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||106.62|98.84|0.00|-2.80|127791|127791|10000|10000|||106.62|98.84|0.00|-2.80|0001B199|0|1| +39|2023-10-06T20:28:33.3830000-07:00|10FF0003|Gegehi Gehi|73085|73085|3850|10000|||106.25|102.49|0.00|-2.87| +37|2023-10-06T20:28:33.4270000-07:00|40022550|Zeromus|0001B194|10118081||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:33.4270000-07:00|40022C92|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|152003|201B0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|10121432|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13|0001B19A|0|1| +39|2023-10-06T20:28:33.4720000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||104.45|99.52|-0.01|-2.95| +21|2023-10-06T20:28:33.4720000-07:00|40022550|Zeromus|8B5E|Sparking Flare|40022550|Zeromus|1B|8B5E8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10121432|40478540|10000|10000|||100.00|80.10|0.00|0.00|10121432|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B19B|0|1| +261|2023-10-06T20:28:33.1110000-07:00|Change|40022550||||| +37|2023-10-06T20:28:33.5160000-07:00|40022550|Zeromus|0001B192|10099732||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:33.5160000-07:00|10FF0005|Wuwuchu Wuchu|0001B192|90055|90055|10000|10000|11||93.54|100.02|0.00|-2.21|2700|0|0|01|0A000A1B|02|41F00000|| +24|2023-10-06T20:28:33.5160000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3939|128564|128564|10000|10000|||92.76|99.41|0.00|2.78|10FF0006|Wowobora Gogobora|0|80739|80739|6830|10000|||93.58|102.53|0.00|2.86| +24|2023-10-06T20:28:33.5160000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|21B0|79111|79111|8050|10000|||92.52|102.68|0.00|2.82|10FF0006|Wowobora Gogobora|0|80739|80739|6830|10000|||93.58|102.53|0.00|2.86| +21|2023-10-06T20:28:33.5160000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30280000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10121432|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|8350|10000|||104.51|99.87|0.00|-2.92|0001B19C|0|1| +38|2023-10-06T20:28:33.5160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||92.76|99.41|0.00|2.78|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:33.5160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8600|10000|21||92.52|102.68|0.00|2.82|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:28:33.5160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||93.54|100.02|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:33.1110000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:28:33.2190000-07:00|Change|10FF0008||| +261|2023-10-06T20:28:33.2190000-07:00|Change|10FF0003||||| +24|2023-10-06T20:28:33.7390000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|150B|128564|128564|10000|10000|||92.76|99.41|0.00|2.78|10FF0006|Wowobora Gogobora|0|80739|80739|6830|10000|||93.58|102.53|0.00|2.86| +37|2023-10-06T20:28:33.7390000-07:00|40022550|Zeromus|0001B196|10083059||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:33.7390000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|28F60000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|10099732|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||104.48|99.53|0.00|-3.09|0001B19D|0|1| +38|2023-10-06T20:28:33.7390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||92.76|99.41|0.00|2.78|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:33.7390000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||104.48|99.53|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:33.7390000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:33.7830000-07:00|40022550|Zeromus|0001B197|10077107||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:33.8710000-07:00|40022550|Zeromus|0001B198|10077050||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:33.9600000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|156003|A7C30000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|10077050|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8600|10000|||92.52|102.68|0.00|2.82|0001B19E|0|1| +37|2023-10-06T20:28:34.0060000-07:00|10FF0001|Sesuga Sapisuga|0001B199|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|1300|0|0|01|0A00004C|0|41A00000|| +26|2023-10-06T20:28:34.0060000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +39|2023-10-06T20:28:34.0060000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||106.62|98.84|0.00|-2.80| +21|2023-10-06T20:28:34.0060000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|752003|3E8C0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|10077050|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||106.62|98.84|0.00|-2.80|0001B19F|0|1| +38|2023-10-06T20:28:34.0060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:34.0060000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|127791|127791| +26|2023-10-06T20:28:34.0060000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:28:34.0950000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:28:34.0950000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B714003|5B390000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|10077050|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||92.94|99.87|0.00|-1.98|0001B1A0|0|1| +38|2023-10-06T20:28:34.0950000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||92.94|99.87|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:34.0950000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:28:34.0950000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:28:34.1840000-07:00|40022550|Zeromus|DoT|0|3118|10077050|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||92.94|99.87|0.00|2.80| +38|2023-10-06T20:28:34.1840000-07:00|40022550|Zeromus|005A5A00|10064482|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:28:34.2290000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|3.03| +261|2023-10-06T20:28:33.8290000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:28:34.3180000-07:00|40022550|Zeromus|0001B19C|10052154||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:34.3190000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A52|1620|128564|128564|10000|10000|||92.76|99.41|0.00|2.78|10FF0006|Wowobora Gogobora|0|80739|80739|6830|10000|||93.58|102.53|0.00|2.00| +38|2023-10-06T20:28:34.3190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||92.76|99.41|0.00|2.78|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:34.3190000-07:00|A52|Haimatinon|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|01|128564|80739| +37|2023-10-06T20:28:34.3620000-07:00|40022550|Zeromus|0001B19D|10041668||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:34.4520000-07:00|40022550|Zeromus|0001B19A|10033449||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:34.4520000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10041668|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||106.62|98.84|0.00|-2.80|0001B1A1|0|1| +31|2023-10-06T20:28:34.4520000-07:00|10FF0001||||| +39|2023-10-06T20:28:34.4950000-07:00|10FF0006|Wowobora Gogobora|80739|80739|7035|10000|||93.71|102.64|0.00|1.35| +261|2023-10-06T20:28:34.0640000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:28:34.0640000-07:00|Change|4002256D||||||||||||| +22|2023-10-06T20:28:34.4950000-07:00|4002256D|Zeromus|8B60|Flare|10FF0004|Buhojaqe Zijaqe|150003|8D030000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7950|10000|||104.68|99.93|0.00|1.14|44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1A2|0|4| +22|2023-10-06T20:28:34.4950000-07:00|4002256D|Zeromus|8B60|Flare|10FF0002|Suchichi Suchi|150003|942B0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||105.11|99.20|0.00|-3.05|44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1A2|1|4| +22|2023-10-06T20:28:34.4950000-07:00|4002256D|Zeromus|8B60|Flare|10FF0001|Sesuga Sapisuga|EC150005|49E30000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||106.62|98.84|0.00|-2.80|44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1A2|2|4| +22|2023-10-06T20:28:34.4950000-07:00|4002256D|Zeromus|8B60|Flare|10FF0003|Gegehi Gehi|150003|A64B0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|3850|10000|||106.25|102.49|0.00|-2.87|44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1A2|3|4| +22|2023-10-06T20:28:34.4950000-07:00|4002256E|Zeromus|8B60|Flare|10FF0005|Wuwuchu Wuchu|150003|B8750000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||92.93|99.88|0.00|-2.94|44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1A3|0|4| +22|2023-10-06T20:28:34.4950000-07:00|4002256E|Zeromus|8B60|Flare|10FF0007|Kehabiqo Febiqo|150003|2D070000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.76|99.41|0.00|2.78|44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1A3|1|4| +22|2023-10-06T20:28:34.4950000-07:00|4002256E|Zeromus|8B60|Flare|10FF0006|Wowobora Gogobora|150003|AAA90000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|7035|10000|||93.71|102.64|0.00|1.35|44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1A3|2|4| +22|2023-10-06T20:28:34.4950000-07:00|4002256E|Zeromus|8B60|Flare|10FF0008|Kokosaze Lulusaze|150003|95440000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8300|10000|||92.52|102.68|0.00|2.82|44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1A3|3|4| +21|2023-10-06T20:28:34.5400000-07:00|10FF0006|Wowobora Gogobora|5EFC|Toxikon II|40022550|Zeromus|754003|44890000|1B|5EFC8000|0|0|0|0|0|0|0|0|0|0|0|0|10033449|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7035|10000|||93.71|102.64|0.00|1.35|0001B1A4|0|1| +21|2023-10-06T20:28:34.5400000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|756003|5B700000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|10033449|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3850|10000|||106.25|102.49|0.00|-2.87|0001B1A5|0|1| +38|2023-10-06T20:28:34.5400000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3650|10000|13||106.25|102.49|0.00|-2.87|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:34.5400000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:28:34.1810000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:28:34.5840000-07:00|40022550|Zeromus|0001B1A0|10010096||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:34.5840000-07:00|10FF0005|Wuwuchu Wuchu|0001B1A0|90055|90055|10000|10000|11||92.93|99.88|0.00|-2.94|2700|0|0|01|05000A1C|0|42700000|| +38|2023-10-06T20:28:34.5840000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||92.93|99.88|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:28:34.6280000-07:00|40022550|Zeromus|0001B19F|9994084||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:34.6280000-07:00|10FF0001|Sesuga Sapisuga|0001B19F|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|1300|0|0|02|0B000558|04|41F00000|||||| +38|2023-10-06T20:28:34.6280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||106.62|98.84|0.00|-2.80|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:34.1810000-07:00|Change|10FF0008||||| +261|2023-10-06T20:28:34.2760000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T20:28:34.6740000-07:00|40022550|Zeromus|0001B195|9981346||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:34.6740000-07:00|10FF0004|Buhojaqe Zijaqe|0001B1A2|44640|80739|7950|10000|0||104.74|99.95|0.00|1.18|1C00|0|0|01|06000000|0|0|| +37|2023-10-06T20:28:34.6740000-07:00|10FF0005|Wuwuchu Wuchu|0001B1A3|42834|90055|10000|10000|0||92.90|99.90|0.00|-2.77|2700|0|0|01|04000000|0|0|| +21|2023-10-06T20:28:34.6740000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9994084|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7950|10000|||104.74|99.95|0.00|1.18|0001B1A6|0|1| +38|2023-10-06T20:28:34.6740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44640|80739|7950|10000|0||104.74|99.95|0.00|1.18|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:34.6740000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:28:34.6740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|42834|90055|10000|10000|0||92.90|99.90|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:34.6740000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:28:34.7180000-07:00|10FF0002|Suchichi Suchi|0001B1A2|52197|90128|10000|10000|0||105.34|99.08|-0.02|-3.07|1601|0|0|01|0|0|0|| +37|2023-10-06T20:28:34.7180000-07:00|10FF0007|Kehabiqo Febiqo|0001B1A3|117037|128564|10000|10000|0||92.76|99.41|0.00|2.78|1501|0|0|02|04000000|0|0|||||| +38|2023-10-06T20:28:34.7180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117037|128564|10000|10000|0||92.76|99.41|0.00|2.78|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:34.7180000-07:00|A34|Haima|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:28:34.7180000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:34.7180000-07:00|10FF0002|Suchichi Suchi|005A5A16|52197|90128|10000|10000|0||105.34|99.08|-0.02|-3.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:34.7180000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:28:34.7640000-07:00|10FF0001|Sesuga Sapisuga|0001B1A2|108876|127791|10000|10000|0||106.62|98.84|0.00|-2.80|1302|0|0|01|04000000|0|0|| +37|2023-10-06T20:28:34.7640000-07:00|10FF0006|Wowobora Gogobora|0001B1A3|37050|80739|7035|10000|0||93.91|102.81|0.00|2.89|2802|0|0|01|05000000|0|0|| +21|2023-10-06T20:28:34.7640000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|722003|64EA0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|9981346|40478540|10000|10000|||100.00|80.10|0.00|0.00|52197|90128|10000|10000|||105.44|99.04|0.00|-3.08|0001B1A7|0|1| +38|2023-10-06T20:28:34.7640000-07:00|10FF0002|Suchichi Suchi|005A5A16|52197|90128|10000|10000|0||105.44|99.04|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:34.7640000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:28:34.7640000-07:00|10FF0006|Wowobora Gogobora|005A5A28|37050|80739|7035|10000|0||93.91|102.81|0.00|2.89|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:34.7640000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:34.7640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108876|127791|10000|10000|0||106.62|98.84|0.00|-2.80|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:34.7640000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:28:34.8060000-07:00|10FF0003|Gegehi Gehi|0001B1A2|30514|73085|3650|10000|0||106.25|102.49|0.00|-2.87|2303|0|0|01|02000000|0|0|| +37|2023-10-06T20:28:34.8060000-07:00|10FF0008|Kokosaze Lulusaze|0001B1A3|40899|79111|8300|10000|0||92.52|102.68|0.00|2.82|1B03|0|0|01|04000000|0|0|| +38|2023-10-06T20:28:34.8060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|40899|79111|8300|10000|0||92.52|102.68|0.00|2.82|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:34.8060000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:28:34.8060000-07:00|10FF0003|Gegehi Gehi|005A5A23|30514|73085|3650|10000|0||106.25|102.49|0.00|-2.87|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:34.8060000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +39|2023-10-06T20:28:34.8960000-07:00|10FF0005|Wuwuchu Wuchu|43734|90055|10000|10000|||92.88|99.91|0.00|-2.63| +21|2023-10-06T20:28:34.9400000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|710003|5A440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9981346|40478540|10000|10000|||100.00|80.10|0.00|0.00|108876|127791|10000|10000|||106.62|98.84|0.00|-2.80|0001B1A8|0|1| +37|2023-10-06T20:28:34.9850000-07:00|40022550|Zeromus|0001B1A1|9979095||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:35.0290000-07:00|40022550|Zeromus|0001B19E|9936148||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:35.0290000-07:00|10FF0008|Kokosaze Lulusaze|41690|79111|8500|10000|||92.52|102.68|0.00|2.82| +21|2023-10-06T20:28:35.0740000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|4|157D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|43734|90055|10000|10000|||92.61|99.90|0.00|-2.55|73956|77430|10000|10000|||97.80|99.60|0.00|-2.86|0001B1A9|0|1| +38|2023-10-06T20:28:35.0740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44640|80739|7950|10000|0||104.83|100.01|0.00|0.49|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:35.0740000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:28:35.1190000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|752003|3B390000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|9936148|40478540|10000|10000|||100.00|80.10|0.00|0.00|44640|80739|7950|10000|||104.83|100.01|0.00|0.49|0001B1AA|0|1| +39|2023-10-06T20:28:35.1640000-07:00|10FF0004|Buhojaqe Zijaqe|45447|80739|7750|10000|||104.85|100.13|0.00|-2.57| +37|2023-10-06T20:28:35.2070000-07:00|40022550|Zeromus|0001B1A6|9935896||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:35.2540000-07:00|40022550|Zeromus|0001B1A7|9910062||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:35.2540000-07:00|10FF0002|Suchichi Suchi|0001B1A7|52197|90128|10000|10000|0||105.93|98.95|0.00|-3.02|1600|0|0|01|04DB|0|41700000|| +38|2023-10-06T20:28:35.2540000-07:00|10FF0002|Suchichi Suchi|005A5A16|52197|90128|10000|10000|0||105.93|98.95|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:28:35.2970000-07:00|40022550|Zeromus|0001B1A5|9886654||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:34.9270000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:28:35.4320000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9886654|40478540|10000|10000|||100.00|80.10|0.00|0.00|30514|73085|3650|10000|||106.25|102.49|0.00|-2.87|0001B1AB|0|1| +37|2023-10-06T20:28:35.4780000-07:00|40022550|Zeromus|0001B1A8|9863546||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:35.4780000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|105B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9886654|40478540|10000|10000|||100.00|80.10|0.00|0.00|43734|90055|10000|10000|||89.85|99.75|0.00|-2.68|0001B1AC|0|1| +261|2023-10-06T20:28:35.1580000-07:00|Change|10FF0005||||||||| +27|2023-10-06T20:28:35.5210000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|00C5|0000|0000|0000| +27|2023-10-06T20:28:35.5210000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|00C5|0000|0000|0000| +21|2023-10-06T20:28:35.5210000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|3A9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9886654|40478540|10000|10000|||100.00|80.10|0.00|0.00|117037|128564|10000|10000|||92.34|96.10|0.00|-3.03|0001B1AD|0|1| +21|2023-10-06T20:28:35.5650000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|375C0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|9886654|40478540|10000|10000|||100.00|80.10|0.00|0.00|30514|73085|3650|10000|||106.25|102.49|0.00|-2.87|0001B1AE|0|1| +38|2023-10-06T20:28:35.5660000-07:00|10FF0003|Gegehi Gehi|005A5A23|30514|73085|3350|10000|0||106.25|102.49|0.00|-2.87|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:35.5660000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:28:35.5660000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +20|2023-10-06T20:28:35.6100000-07:00|40022550|Zeromus|8D28|Nox|40022550|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:35.2540000-07:00|Change|40022550||||||||| +261|2023-10-06T20:28:35.2540000-07:00|Change|10FF0008||| +24|2023-10-06T20:28:35.6560000-07:00|10FF0002|Suchichi Suchi|HoT|0|1E0E|52197|90128|10000|10000|||106.21|98.81|-0.02|-3.09|10FF0006|Wowobora Gogobora|0|37050|80739|7035|10000|||93.92|106.37|0.00|0.03| +38|2023-10-06T20:28:35.6560000-07:00|10FF0002|Suchichi Suchi|005A5A16|59891|90128|10000|10000|0||106.21|98.81|-0.02|-3.09|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:28:35.2540000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T20:28:35.7000000-07:00|10FF0003|Gegehi Gehi|HoT|0|2600|30514|73085|3350|10000|||106.28|102.53|0.00|-2.87|10FF0006|Wowobora Gogobora|0|37050|80739|7035|10000|||93.92|106.37|0.00|0.03| +21|2023-10-06T20:28:35.7000000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|15280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9863546|40478540|10000|10000|||100.00|80.10|0.00|0.00|52197|90128|10000|10000|||106.21|98.81|-0.02|-3.09|0001B1AF|0|1| +38|2023-10-06T20:28:35.7000000-07:00|10FF0003|Gegehi Gehi|005A5A23|40242|73085|3350|10000|0||106.28|102.53|0.00|-2.87|0|0|0||||||||||||||||||| +261|2023-10-06T20:28:35.3530000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:28:35.7450000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1565|117037|128564|10000|10000|||92.13|94.76|0.00|2.72|10FF0006|Wowobora Gogobora|0|37050|80739|7035|10000|||93.82|107.03|0.00|-0.03| +37|2023-10-06T20:28:35.7450000-07:00|40022550|Zeromus|0001B1A4|9846001||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:35.7450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122514|128564|10000|10000|0||92.13|94.76|0.00|2.72|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:35.7450000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:28:35.3530000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T20:28:35.4540000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:28:35.8790000-07:00|10FF0005|Wuwuchu Wuchu|0001B1A9|49235||||||87.88|98.11|0.00|-2.68| +24|2023-10-06T20:28:35.8790000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2EC8|108876|127791|10000|10000|||106.64|96.31|0.00|-3.09|10FF0001|Sesuga Sapisuga|0|108876|127791|10000|10000|||106.64|96.31|0.00|-3.09| +24|2023-10-06T20:28:35.8790000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|22B6|45447|80739|7750|10000|||105.78|103.19|0.00|0.16|10FF0006|Wowobora Gogobora|0|37050|80739|7035|10000|||93.58|108.25|0.00|-0.12| +38|2023-10-06T20:28:35.8790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|120852|127791|10000|10000|0||106.64|96.31|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:35.8790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|54333|80739|7750|10000|0||105.78|103.19|0.00|0.16|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:28:35.9690000-07:00|40022550|Zeromus|0001B1AB|9845976||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:35.9690000-07:00|10FF0003|Gegehi Gehi|0001B1AB|40242|73085|3350|10000|0||106.87|103.08|0.00|2.84|2300|0|0|01|020004D2|0|C1F00000|| +24|2023-10-06T20:28:35.9690000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1D81|43734|90055|10000|10000|||87.88|98.11|0.00|-2.68|10FF0005|Wuwuchu Wuchu|0|43734|90055|10000|10000|||87.88|98.11|0.00|-2.68| +38|2023-10-06T20:28:35.9690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|56788|90055|10000|10000|0||87.88|98.11|0.00|-2.68|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:35.6480000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:28:36.0150000-07:00|40022550|Zeromus|0001B1AC|9841789||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:36.0150000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1DB7|37050|80739|7035|10000|||93.41|108.88|0.00|-0.16|10FF0006|Wowobora Gogobora|0|37050|80739|7035|10000|||93.41|108.88|0.00|-0.16| +38|2023-10-06T20:28:36.0150000-07:00|10FF0006|Wowobora Gogobora|005A5A28|44657|80739|7035|10000|0||93.41|108.88|0.00|-0.16|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:36.0150000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:28:36.0590000-07:00|40022550|Zeromus|0001B1AA|9826628||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:36.1470000-07:00|40022550|Zeromus|0001B1AD|9811622||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:36.1470000-07:00|40022C92|Demi-Phoenix|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13| +38|2023-10-06T20:28:36.1930000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.80|99.60|0.00|-1.60|0|0|0||||||| +26|2023-10-06T20:28:36.1930000-07:00|7AE|Summon Order IV|30.00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:28:36.1930000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|54333|80739|7750|10000|||106.19|104.29|-0.02|0.30|54333|80739|7750|10000|||106.19|104.29|-0.02|0.30|0001B1B0|0|1| +37|2023-10-06T20:28:36.2380000-07:00|40022550|Zeromus|0001B1AF|9806206||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:36.2380000-07:00|10FF0007|Kehabiqo Febiqo|123799|128564|10000|10000|||91.73|92.16|-0.02|-3.02| +22|2023-10-06T20:28:36.2820000-07:00|40022B84|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|200004|3C890000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|41690|79111|8500|10000|||92.29|102.79|-0.02|-1.33|73956|77430|10000|10000|||97.80|99.60|0.00|-1.62|0001B1B1|0|8| +22|2023-10-06T20:28:36.2820000-07:00|40022B84|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|200004|3B600000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|120852|127791|10000|10000|||106.46|94.44|0.00|-3.03|73956|77430|10000|10000|||97.80|99.60|0.00|-1.62|0001B1B1|1|8| +22|2023-10-06T20:28:36.2820000-07:00|40022B84|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|200004|3C220000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|123799|128564|10000|10000|||91.65|91.62|0.00|-3.02|73956|77430|10000|10000|||97.80|99.60|0.00|-1.62|0001B1B1|2|8| +22|2023-10-06T20:28:36.2820000-07:00|40022B84|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|256C0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|54333|80739|7750|10000|||106.14|104.64|0.00|0.19|73956|77430|10000|10000|||97.80|99.60|0.00|-1.62|0001B1B1|3|8| +22|2023-10-06T20:28:36.2820000-07:00|40022B84|Ruby Carbuncle|40A0|Fey Blessing|10FF0005|Wuwuchu Wuchu|4|262D0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|56788|90055|10000|10000|||87.09|96.70|0.00|-2.72|73956|77430|10000|10000|||97.80|99.60|0.00|-1.62|0001B1B1|4|8| +22|2023-10-06T20:28:36.2820000-07:00|40022B84|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|24E00000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|44657|80739|7035|10000|||93.67|110.11|0.00|0.04|73956|77430|10000|10000|||97.80|99.60|0.00|-1.62|0001B1B1|5|8| +22|2023-10-06T20:28:36.2820000-07:00|40022B84|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|200004|3D780000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|40242|73085|3350|10000|||108.46|104.59|-0.02|1.10|73956|77430|10000|10000|||97.80|99.60|0.00|-1.62|0001B1B1|6|8| +22|2023-10-06T20:28:36.2820000-07:00|40022B84|Ruby Carbuncle|40A0|Fey Blessing|10FF0002|Suchichi Suchi|4|24630000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|59891|90128|10000|10000|||109.07|95.59|0.00|-3.07|73956|77430|10000|10000|||97.80|99.60|0.00|-1.62|0001B1B1|7|8| +21|2023-10-06T20:28:36.2820000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C724003|2EF70000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|9806206|40478540|10000|10000|||100.00|80.10|0.00|0.00|59891|90128|10000|10000|||109.07|95.59|0.00|-3.07|0001B1B2|0|1| +38|2023-10-06T20:28:36.2820000-07:00|10FF0002|Suchichi Suchi|005A5A16|59891|90128|10000|10000|0||109.07|95.59|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:36.2820000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:36.3270000-07:00|40022550|Zeromus|0001B1AE|9792034||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:36.3270000-07:00|10FF0003|Gegehi Gehi|0001B1AE|40242|73085|3350|10000|0||108.46|104.59|-0.02|1.10|2300|0|0|01|020004D2|0|41F00000|| +22|2023-10-06T20:28:36.3270000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|31630000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|44657|80739|7035|10000|||93.67|110.11|0.00|0.04|44657|80739|7035|10000|||93.67|110.11|0.00|0.04|0001B1B3|0|3| +22|2023-10-06T20:28:36.3270000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|200004|514C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41690|79111|8500|10000|||92.29|102.79|-0.02|-1.33|44657|80739|7035|10000|||93.67|110.11|0.00|0.04|0001B1B3|1|3| +22|2023-10-06T20:28:36.3270000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|320C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|54333|80739|7750|10000|||106.14|104.64|0.00|0.19|44657|80739|7035|10000|||93.67|110.11|0.00|0.04|0001B1B3|2|3| +38|2023-10-06T20:28:36.3270000-07:00|10FF0003|Gegehi Gehi|005A5A23|40242|73085|3350|10000|0||108.46|104.59|-0.02|1.10|0|0|0||||||||||||||||||| +39|2023-10-06T20:28:36.3710000-07:00|10FF0003|Gegehi Gehi|40972|73085|3550|10000|||108.78|105.09|0.00|0.97| +261|2023-10-06T20:28:36.0050000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:28:36.4590000-07:00|10FF0002|Suchichi Suchi|60792|90128|10000|10000|||109.22|95.41|0.00|-2.57| +261|2023-10-06T20:28:36.1160000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:28:36.5040000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|53EF0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|9792034|40478540|10000|10000|||100.00|80.10|0.00|0.00|41690|79111|8500|10000|||90.85|103.63|0.00|-1.17|0001B1B4|0|1| +261|2023-10-06T20:28:36.1160000-07:00|Change|40022564||||||||| +24|2023-10-06T20:28:36.5510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|346D|123799|128564|10000|10000|||91.48|90.39|0.00|-3.00|10FF0006|Wowobora Gogobora|0|44657|80739|7035|10000|||94.12|111.23|-0.02|0.33| +24|2023-10-06T20:28:36.5510000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|222B|41690|79111|8500|10000|||90.85|103.63|0.00|-1.17|10FF0006|Wowobora Gogobora|0|44657|80739|7035|10000|||94.12|111.23|-0.02|0.33| +261|2023-10-06T20:28:36.1160000-07:00|Change|40022561||||||||| +38|2023-10-06T20:28:36.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||91.48|90.39|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:36.1160000-07:00|Change|40022562||||||||| +261|2023-10-06T20:28:36.1160000-07:00|Change|40022560||||||||| +261|2023-10-06T20:28:36.1160000-07:00|Change|4002255F||||||||| +261|2023-10-06T20:28:36.1160000-07:00|Change|4002255E||||||||| +261|2023-10-06T20:28:36.1160000-07:00|Change|4002255D||||||||| +38|2023-10-06T20:28:36.5510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|50437|79111|8750|10000|0||90.85|103.63|0.00|-1.17|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:28:36.5930000-07:00|40022563|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1B5|0|0| +21|2023-10-06T20:28:36.5930000-07:00|40022564|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1B6|0|0| +20|2023-10-06T20:28:36.5930000-07:00|4002256D|Zeromus|8B62|Flare|4002256D|Zeromus|4.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:28:36.5930000-07:00|4002256E|Zeromus|8B62|Flare|4002256E|Zeromus|4.700|95.00|100.00|0.00|0.00| +21|2023-10-06T20:28:36.5930000-07:00|40022C92|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|13640000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|9792034|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13|0001B1B7|0|1| +261|2023-10-06T20:28:36.2250000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:28:36.2250000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:28:36.2250000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:28:36.2250000-07:00|Change|10FF0003||||||||||| +20|2023-10-06T20:28:36.6380000-07:00|4002255B|Zeromus|8B63|Prominence Spine|4002255B|Zeromus|4.700|95.00|100.00|0.00|1.57| +20|2023-10-06T20:28:36.6380000-07:00|4002255C|Zeromus|8B63|Prominence Spine|4002255C|Zeromus|4.700|95.00|100.00|0.00|0.00| +20|2023-10-06T20:28:36.6380000-07:00|4002255D|Zeromus|8B63|Prominence Spine|4002255D|Zeromus|4.700|95.00|100.00|0.00|-1.57| +20|2023-10-06T20:28:36.6380000-07:00|4002255E|Zeromus|8B63|Prominence Spine|4002255E|Zeromus|4.700|95.00|100.00|0.00|3.14| +20|2023-10-06T20:28:36.6380000-07:00|4002255F|Zeromus|8B63|Prominence Spine|4002255F|Zeromus|4.700|105.00|100.00|0.00|1.57| +20|2023-10-06T20:28:36.6380000-07:00|40022560|Zeromus|8B63|Prominence Spine|40022560|Zeromus|4.700|105.00|100.00|0.00|0.00| +20|2023-10-06T20:28:36.6380000-07:00|40022561|Zeromus|8B63|Prominence Spine|40022561|Zeromus|4.700|105.00|100.00|0.00|-1.57| +20|2023-10-06T20:28:36.6380000-07:00|40022562|Zeromus|8B63|Prominence Spine|40022562|Zeromus|4.700|105.00|100.00|0.00|3.14| +261|2023-10-06T20:28:36.2250000-07:00|Change|4002255C||||||||||||||| +261|2023-10-06T20:28:36.2250000-07:00|Change|4002255B||||||||||||||||| +261|2023-10-06T20:28:36.2250000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:28:36.6380000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9792034|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||91.37|89.69|0.00|-3.00|0001B1B8|0|1| +261|2023-10-06T20:28:36.3240000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:28:36.6830000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|43C90000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|9792034|40478540|10000|10000|||100.00|80.10|0.00|0.00|56788|90055|10000|10000|||86.53|94.09|0.00|-2.90|0001B1B9|0|1| +38|2023-10-06T20:28:36.6830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|56788|90055|10000|10000|0||86.53|94.09|0.00|-2.90|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:36.6830000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:28:36.6830000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:28:36.6830000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:28:36.7270000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|D9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9792034|40478540|10000|10000|||100.00|80.10|0.00|0.00|120852|127791|10000|10000|||106.20|91.81|0.00|-3.10|0001B1BA|0|1| +31|2023-10-06T20:28:36.7270000-07:00|10FF0001||||| +21|2023-10-06T20:28:36.9050000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|724003|24A30000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|9792034|40478540|10000|10000|||100.00|80.10|0.00|0.00|60792|90128|10000|10000|||109.61|94.84|0.00|-2.57|0001B1BB|0|1| +38|2023-10-06T20:28:36.9050000-07:00|10FF0002|Suchichi Suchi|005A5A16|60792|90128|10000|10000|0||109.61|94.84|0.00|-2.57|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:36.9050000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:28:36.9940000-07:00|10FF0001|Sesuga Sapisuga|122129|127791|10000|10000|||105.66|90.73|0.00|2.87| +37|2023-10-06T20:28:37.0820000-07:00|10FF0008|Kokosaze Lulusaze|0001B1B1|65934||||||89.20|104.83|0.00|-2.63| +37|2023-10-06T20:28:37.0820000-07:00|10FF0006|Wowobora Gogobora|0001B1B3|57300|80739|7735|10000|0||93.70|111.38|0.00|2.18|2800|0|0|0| +261|2023-10-06T20:28:36.6140000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:28:36.6140000-07:00|Change|4002255E||||||||||||| +261|2023-10-06T20:28:36.6140000-07:00|Change|40022561||||||||||||| +261|2023-10-06T20:28:36.6140000-07:00|Change|40022562||||||||||||| +261|2023-10-06T20:28:36.6140000-07:00|Change|40022560||||||||||||| +261|2023-10-06T20:28:36.6140000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:28:36.6140000-07:00|Change|4002255F||||||||||||| +261|2023-10-06T20:28:36.7240000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:28:37.1720000-07:00|40022550|Zeromus|0001B1B8|9787178||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:37.1720000-07:00|40022550|Zeromus|0001B1B9|9769825||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:37.1720000-07:00|10FF0005|Wuwuchu Wuchu|0001B1B9|56788|90055|10000|10000|0||85.42|92.76|0.00|2.88|2700|0|0|01|02000A1D|0|42700000|| +38|2023-10-06T20:28:37.1720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|56788|90055|10000|10000|0||85.42|92.76|0.00|2.88|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:36.7240000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:28:37.2170000-07:00|10FF0001|Sesuga Sapisuga|0001B1B1|127791||||||105.76|89.52|0.00|2.38| +37|2023-10-06T20:28:37.2170000-07:00|10FF0008|Kokosaze Lulusaze|0001B1B3|79111||||||89.34|104.72|0.00|-3.02| +39|2023-10-06T20:28:37.2170000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|-2.19| +24|2023-10-06T20:28:37.2170000-07:00|40022550|Zeromus|DoT|0|2FD9|9792034|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|56788|90055|10000|10000|||85.42|92.76|0.00|2.88| +38|2023-10-06T20:28:37.2170000-07:00|40022550|Zeromus|005A5A00|9757576|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:28:37.2610000-07:00|40022550|Zeromus|0001B1BA|9754091||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:37.3060000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|54333|80739|7750|10000|||107.49|110.82|0.00|0.41|54333|80739|7750|10000|||107.49|110.82|0.00|0.41|0001B1BC|0|1| +37|2023-10-06T20:28:37.3500000-07:00|10FF0004|Buhojaqe Zijaqe|0001B1B3|67145||||||107.85|111.54|0.00|0.49| +37|2023-10-06T20:28:37.4400000-07:00|10FF0004|Buhojaqe Zijaqe|0001B1BC|67145|80739|7750|10000|0||107.85|111.54|0.00|0.49|1C00|0|0|01|04000032|1E|41200000|| +26|2023-10-06T20:28:37.4400000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +21|2023-10-06T20:28:37.4400000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|754003|8BA60000|4|254F8000|0|0|0|0|0|0|0|0|0|0|0|0|9754091|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||106.40|88.57|0.00|1.88|0001B1BD|0|1| +38|2023-10-06T20:28:37.4400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||106.40|88.57|0.00|1.88|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:37.4400000-07:00|558|Requiescat|27.14|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +30|2023-10-06T20:28:37.4400000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:28:37.4400000-07:00|10FF0001||||| +37|2023-10-06T20:28:37.4850000-07:00|10FF0004|Buhojaqe Zijaqe|0001B1B1|76725||||||108.21|112.27|0.00|0.49| +39|2023-10-06T20:28:37.4850000-07:00|10FF0006|Wowobora Gogobora|58107|80739|7940|10000|||93.98|110.28|0.00|1.70| +37|2023-10-06T20:28:37.5750000-07:00|40022550|Zeromus|0001B1B4|9732604||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:37.5750000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|722003|69380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9754091|40478540|10000|10000|||100.00|80.10|0.00|0.00|60792|90128|10000|10000|||113.22|91.74|0.00|-2.62|0001B1BE|0|1| +261|2023-10-06T20:28:37.1970000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:28:37.1970000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:28:37.6190000-07:00|10FF0005|Wuwuchu Wuchu|0001B1B1|66561||||||84.40|91.11|0.00|2.77| +37|2023-10-06T20:28:37.6190000-07:00|40022550|Zeromus|0001B1B7|9727640||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:37.1970000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:28:37.6640000-07:00|40022563|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1BF|0|0| +21|2023-10-06T20:28:37.6640000-07:00|40022564|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1C0|0|0| +37|2023-10-06T20:28:37.7080000-07:00|40022550|Zeromus|0001B1BB|9718261||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:37.7080000-07:00|10FF0002|Suchichi Suchi|0001B1BB|60792|90128|10000|10000|0||114.72|91.19|0.00|-2.17|1600|0|0|01|04000AA0|0|C1F00000|| +261|2023-10-06T20:28:37.2880000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:28:37.7530000-07:00|10FF0006|Wowobora Gogobora|0001B1B1|67547||||||94.01|111.46|0.00|0.56| +261|2023-10-06T20:28:37.3840000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:28:37.8870000-07:00|10FF0003|Gegehi Gehi|0001B1B1|56708||||||115.10|107.41|0.00|-3.07| +39|2023-10-06T20:28:37.8870000-07:00|10FF0005|Wuwuchu Wuchu|67461|90055|10000|10000|||84.88|90.07|0.00|2.62| +261|2023-10-06T20:28:37.4760000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:28:37.9320000-07:00|40022550|Zeromus|0001B1B2|9706238||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:37.9320000-07:00|10FF0002|Suchichi Suchi|0001B1B2|60792|90128|10000|10000|0||115.92|90.54|0.00|-2.24|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:28:37.9320000-07:00|10FF0002|Suchichi Suchi|005A5A16|60792|90128|10000|10000|0||115.92|90.54|0.00|-2.24|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:28:37.5730000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:28:37.9760000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|15B60000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|9718261|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||88.56|83.11|0.00|-2.98|0001B1C1|0|1| +38|2023-10-06T20:28:37.9760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||88.56|83.11|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:37.9760000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:28:37.9760000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:28:38.0220000-07:00|10FF0002|Suchichi Suchi|0001B1B1|70107||||||116.53|90.10|0.00|-2.33| +39|2023-10-06T20:28:38.0220000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8950|10000|||87.12|110.72|0.00|-0.38| +38|2023-10-06T20:28:38.0220000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.80|99.60|0.00|-2.30|0|0|0|||| +30|2023-10-06T20:28:38.0220000-07:00|7AE|Summon Order IV|0.00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T20:28:38.0650000-07:00|40022550|Zeromus|0001B1BD|9670488||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:37.6670000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:28:38.1540000-07:00|10FF0004|Buhojaqe Zijaqe|77532|80739|7950|10000|||111.98|116.35|0.00|0.82| +38|2023-10-06T20:28:38.1990000-07:00|40022550|Zeromus|005A5A00|9670488|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:28:38.1990000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:28:38.5090000-07:00|40022550|Zeromus|0001B1C1|9664930||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:38.5090000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|200004|215F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|67461|90055|10000|10000|||84.22|86.22|0.00|2.37|73956|77430|10000|10000|||97.80|99.60|0.00|-2.99|0001B1C2|0|1| +21|2023-10-06T20:28:38.5100000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|CB10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9670488|40478540|10000|10000|||100.00|80.10|0.00|0.00|70107|90128|10000|10000|||117.27|87.71|0.00|-2.00|0001B1C3|0|1| +261|2023-10-06T20:28:38.2170000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:28:38.6430000-07:00|10FF0002|Suchichi Suchi|HoT|0|25BA|70107|90128|10000|10000|||117.27|87.71|0.00|-2.00|10FF0006|Wowobora Gogobora|0|67547|80739|7940|10000|||92.26|116.03|0.00|-0.32| +38|2023-10-06T20:28:38.6430000-07:00|10FF0002|Suchichi Suchi|005A5A16|79765|90128|10000|10000|0||117.27|87.71|0.00|-2.00|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T20:28:38.6880000-07:00|10FF0003|Gegehi Gehi|HoT|0|1DEF|56708|73085|3550|10000|||118.26|104.13|0.00|-2.51|10FF0006|Wowobora Gogobora|0|67547|80739|7940|10000|||92.24|116.36|0.00|-0.30| +21|2023-10-06T20:28:38.6880000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9664930|40478540|10000|10000|||100.00|80.10|0.00|0.00|67461|90055|10000|10000|||84.15|86.05|0.00|2.32|0001B1C4|0|1| +38|2023-10-06T20:28:38.6880000-07:00|10FF0003|Gegehi Gehi|005A5A23|64371|73085|3550|10000|0||118.26|104.13|0.00|-2.51|0|0|0||||||||||||||||||| +261|2023-10-06T20:28:38.3160000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:28:38.7330000-07:00|40022563|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1C5|0|0| +21|2023-10-06T20:28:38.7330000-07:00|40022564|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1C6|0|0| +261|2023-10-06T20:28:38.3160000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:28:38.3160000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:28:38.7780000-07:00|40022550|Zeromus|0001B1BE|9637994||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:38.7780000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|2A9A0000|17B90E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|9664930|40478540|10000|10000|||100.00|80.10|0.00|0.00|79765|90128|10000|10000|||117.23|86.68|0.00|-1.74|0001B1C7|0|1| +20|2023-10-06T20:28:38.7780000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|118.43|104.00|0.00|-2.51| +38|2023-10-06T20:28:38.7780000-07:00|10FF0002|Suchichi Suchi|005A5A16|79765|90128|10000|10000|0||117.23|86.68|0.00|-1.74|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:38.7780000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:28:38.4170000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:28:38.8660000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3C23|127791|127791|9000|10000|||110.56|91.32|0.00|1.22|10FF0001|Sesuga Sapisuga|0|127791|127791|9000|10000|||110.56|91.32|0.00|1.22| +24|2023-10-06T20:28:38.8660000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1E0B|77532|80739|7950|10000|||114.53|117.56|0.00|1.71|10FF0006|Wowobora Gogobora|0|67547|80739|7940|10000|||92.22|116.64|0.00|-0.54| +38|2023-10-06T20:28:38.8660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|0||110.56|91.32|0.00|1.22|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:38.8660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7950|10000|0||114.53|117.56|0.00|1.71|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:38.9110000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||87.21|81.83|0.00|-2.64|128564|128564|10000|10000|||87.21|81.83|0.00|-2.64|0001B1C8|0|1| +38|2023-10-06T20:28:38.9110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||87.21|81.83|0.00|-2.64|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:38.9110000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|128564|128564| +26|2023-10-06T20:28:38.9110000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:28:38.9110000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:28:38.9110000-07:00|A75|Surging Tempest|56.24|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +24|2023-10-06T20:28:38.9560000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|233C|67461|90055|10000|10000|||84.05|85.79|-0.02|2.24|10FF0006|Wowobora Gogobora|0|67547|80739|7940|10000|||92.21|116.79|0.00|-1.29| +21|2023-10-06T20:28:38.9560000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|51000000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|9637994|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8950|10000|||84.70|115.46|0.00|-1.16|0001B1C9|0|1| +38|2023-10-06T20:28:38.9560000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|76481|90055|10000|10000|0||84.05|85.79|-0.02|2.24|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:28:39.0020000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1EA7|67547|80739|7940|10000|||92.20|116.94|0.00|-2.01|10FF0006|Wowobora Gogobora|0|67547|80739|7940|10000|||92.20|116.94|0.00|-2.01| +21|2023-10-06T20:28:39.0020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|D520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9637994|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||110.81|92.46|0.00|1.07|0001B1CA|0|1| +38|2023-10-06T20:28:39.0020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|75394|80739|7940|10000|0||92.20|116.94|0.00|-2.01|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:39.0020000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +31|2023-10-06T20:28:39.0020000-07:00|10FF0001||||| +37|2023-10-06T20:28:39.0440000-07:00|40022550|Zeromus|0001B1C3|9634745||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:39.0440000-07:00|10FF0002|Suchichi Suchi|0001B1C3|79765|90128|10000|10000|0||117.20|86.28|0.00|-1.90|1600|0|0|01|0323|0|C1F00000|| +39|2023-10-06T20:28:39.1340000-07:00|40022C92|Demi-Phoenix|72376|75851|10000|10000|||100.30|104.63|0.00|-3.13| +261|2023-10-06T20:28:38.6320000-07:00|Change|40022C92||| +38|2023-10-06T20:28:39.1790000-07:00|40022CB1||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:28:39.1790000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|714003|33430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9634745|40478540|10000|10000|||100.00|80.10|0.00|0.00|76481|90055|10000|10000|||84.01|85.67|0.00|2.17|0001B1CB|0|1| +38|2023-10-06T20:28:39.1790000-07:00|40022550|Zeromus|005A5A00|9634745|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T20:28:39.1790000-07:00|A1A|Death's Design|49.51|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +38|2023-10-06T20:28:39.1790000-07:00|40022CB1||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:28:39.2230000-07:00|40022550|Zeromus|0001B1C7|9623839|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A9F|0|41C00000|| +26|2023-10-06T20:28:39.2230000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:28:39.2230000-07:00|10FF0002|Suchichi Suchi|0001B1C7|79765|90128|10000|10000|0||117.28|86.36|0.00|-1.73|1600|0|0|01|0323|0|41F00000|| +37|2023-10-06T20:28:39.2230000-07:00|40022550|Zeromus|0001B1C4|9620390||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:39.2230000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||87.21|81.83|0.00|-2.64| +38|2023-10-06T20:28:39.2230000-07:00|10FF0002|Suchichi Suchi|005A5A16|79765|90128|10000|10000|0||117.28|86.36|0.00|-1.73|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:28:39.3120000-07:00|10FF0005|Wuwuchu Wuchu|0001B1C2|85024||||||83.99|85.63|0.00|1.90| +39|2023-10-06T20:28:39.3560000-07:00|10FF0003|Gegehi Gehi|65101|73085|3750|10000|||118.88|103.62|-0.01|-2.47| +39|2023-10-06T20:28:39.4450000-07:00|10FF0002|Suchichi Suchi|80666|90128|10000|10000|||117.30|85.99|0.00|-1.58| +261|2023-10-06T20:28:39.0940000-07:00|Add|40022CB1||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:28:39.0940000-07:00|40022CB1|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||84.10|115.64|0.00|-0.42| +261|2023-10-06T20:28:39.0940000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:28:39.5340000-07:00|40022550|Zeromus|0001B1CA|9616980||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:39.0940000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:28:39.0940000-07:00|Change|40022CB1||| +24|2023-10-06T20:28:39.5350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|239A|128564|128564|10000|10000|||87.21|81.79|0.00|-3.02|10FF0006|Wowobora Gogobora|0|75394|80739|7940|10000|||90.74|113.98|0.00|-2.66| +24|2023-10-06T20:28:39.5350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|22EB|79111|79111|8650|10000|||82.28|117.69|0.00|-2.52|10FF0006|Wowobora Gogobora|0|75394|80739|7940|10000|||90.74|113.98|0.00|-2.66| +38|2023-10-06T20:28:39.5350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||87.21|81.79|0.00|-3.02|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:39.5350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|0||82.28|117.69|0.00|-2.52|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:28:39.5790000-07:00|10FF0002|Suchichi Suchi|4060|Stardiver|40022550|Zeromus|124003|72640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9620390|40478540|10000|10000|||100.00|80.10|0.00|0.00|80666|90128|10000|10000|||117.28|85.56|0.00|-1.55|0001B1CC|0|1| +21|2023-10-06T20:28:39.5790000-07:00|40022550|Zeromus|8D28|Nox|40022550|Zeromus|1B|8D288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9620390|40478540|10000|10000|||100.00|80.10|0.00|0.00|9620390|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B1CD|0|1| +38|2023-10-06T20:28:39.5790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|0||82.28|117.69|0.00|-2.52|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:28:39.5790000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|79111|79111| +21|2023-10-06T20:28:39.5790000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|752003|30AD0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|9620390|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8650|10000|||82.28|117.69|0.00|-2.52|0001B1CE|0|1| +20|2023-10-06T20:28:39.5790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|117.57|117.95|0.00|1.34| +38|2023-10-06T20:28:39.5790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|0||82.28|117.69|0.00|-2.52|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:39.5790000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:39.2150000-07:00|Change|40022550||||| +37|2023-10-06T20:28:39.6690000-07:00|10FF0007|Kehabiqo Febiqo|0001B1C8|128564|128564|10000|10000|0||87.24|81.67|0.00|-3.11|1500|0|0|03|04000499|03|41700000|||||||||| +38|2023-10-06T20:28:39.6690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||87.24|81.67|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:39.3950000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T20:28:39.3950000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T20:28:39.8020000-07:00|40022563|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1CF|0|0| +21|2023-10-06T20:28:39.8020000-07:00|40022564|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1D0|0|0| +21|2023-10-06T20:28:39.9360000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|752003|8C960000|4|25368000|0|0|0|0|0|0|0|0|0|0|0|0|9616980|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||111.23|92.54|0.00|1.07|0001B1D1|0|1| +261|2023-10-06T20:28:39.4910000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:28:39.9370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8000|10000|0||111.23|92.54|0.00|-2.41|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:39.9370000-07:00|558|Requiescat|24.65|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +31|2023-10-06T20:28:39.9370000-07:00|10FF0001||||| +37|2023-10-06T20:28:40.0260000-07:00|40022550|Zeromus|0001B1C9|9596244||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:40.0260000-07:00|10FF0008|Kokosaze Lulusaze|0001B1C9|79111|79111|9200|10000|0||81.05|118.48|-0.01|2.68|1B00|0|0|01|08000A8D|0|C2700000|| +39|2023-10-06T20:28:40.0260000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8200|10000|||111.23|92.54|0.00|-2.41| +21|2023-10-06T20:28:40.0260000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9616980|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||87.31|81.35|0.00|2.90|0001B1D2|0|1| +261|2023-10-06T20:28:39.7990000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:28:40.2040000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|-2.96| +24|2023-10-06T20:28:40.2040000-07:00|40022550|Zeromus|DoT|0|231E|9596244|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|85024|90055|10000|10000|||84.49|85.00|0.00|1.86| +21|2023-10-06T20:28:40.2040000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|152003|4AA50000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|9596244|40478540|10000|10000|||100.00|80.10|0.00|0.00|65101|73085|3750|10000|||118.88|103.62|0.00|-2.47|0001B1D3|0|1| +261|2023-10-06T20:28:39.7990000-07:00|Change|40022CB1||||||||| +38|2023-10-06T20:28:40.2040000-07:00|10FF0003|Gegehi Gehi|005A5A23|65101|73085|3550|10000|0||118.88|103.62|0.00|-2.47|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:40.2040000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:28:40.2040000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +34|2023-10-06T20:28:40.2040000-07:00|40022CB1|Carbuncle|40022CB1|Carbuncle|01| +38|2023-10-06T20:28:40.2040000-07:00|40022550|Zeromus|005A5A00|9587254|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:28:40.3370000-07:00|40022550|Zeromus|0001B1CB|9574131||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:40.4270000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|74280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9574131|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||87.33|81.25|-0.02|2.81|0001B1D4|0|1| +20|2023-10-06T20:28:40.4270000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|88.71|109.24|0.00|-2.68| +38|2023-10-06T20:28:40.4270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||87.33|81.25|-0.02|2.81|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:40.4270000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:28:40.4270000-07:00|499|Inner Release|14.20|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|128564|128564| +21|2023-10-06T20:28:40.4720000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|37320000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||87.33|81.25|-0.02|2.81|9574131|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B1D5|0|1| +39|2023-10-06T20:28:40.5160000-07:00|10FF0006|Wowobora Gogobora|76201|80739|8145|10000|||88.48|108.99|0.00|-2.74| +21|2023-10-06T20:28:40.5160000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|754003|3BFB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|9574131|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7950|10000|||118.88|118.36|0.00|-2.68|0001B1D6|0|1| +37|2023-10-06T20:28:40.5610000-07:00|40022550|Zeromus|0001B1D2|9571362||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:40.5610000-07:00|40022550|Zeromus|0001B1D1|9535372||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:40.1470000-07:00|Change|4002255A||||||||| +261|2023-10-06T20:28:40.1470000-07:00|Change|40022559||||||||| +261|2023-10-06T20:28:40.1470000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:28:40.6060000-07:00|40022550|Zeromus|0001B1CE|9522911||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:40.6060000-07:00|10FF0008|Kokosaze Lulusaze|0001B1CE|79111|79111|9200|10000|0||81.04|118.49|0.00|-2.24|1B00|0|0|01|08000A8D|0|42700000|| +38|2023-10-06T20:28:40.6060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|0||81.04|118.49|0.00|-2.24|0|0|0|||||||||||||||||||||||||||| +20|2023-10-06T20:28:40.6500000-07:00|40022559|Zeromus|8D2A|Nox|40022559|Zeromus|4.700|81.05|118.51|0.00|0.00| +20|2023-10-06T20:28:40.6500000-07:00|4002255A|Zeromus|8D2A|Nox|4002255A|Zeromus|4.700|118.91|118.39|0.00|0.00| +21|2023-10-06T20:28:40.6500000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|13760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9535372|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||111.23|92.54|0.00|-2.41|0001B1D7|0|1| +38|2023-10-06T20:28:40.7830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|0||111.23|92.54|0.00|-2.41|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:40.7830000-07:00|A91|Undying Flame|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +261|2023-10-06T20:28:40.4430000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:28:40.4430000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:28:40.8730000-07:00|40022550|Zeromus|0001B1CC|9493627||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:40.8730000-07:00|40022563|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1D8|0|0| +21|2023-10-06T20:28:40.8730000-07:00|40022564|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1D9|0|0| +39|2023-10-06T20:28:40.8730000-07:00|10FF0005|Wuwuchu Wuchu|85924|90055|10000|10000|||85.20|85.95|0.00|1.73| +261|2023-10-06T20:28:40.5450000-07:00|Change|10FF0001||| +37|2023-10-06T20:28:41.0070000-07:00|40022550|Zeromus|0001B1D3|9474518||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:41.0520000-07:00|40022550|Zeromus|0001B1D4|9444782||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:41.0520000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9400|10000|||81.04|118.49|0.00|-1.60| +261|2023-10-06T20:28:40.6570000-07:00|Change|40022559||||||||||||| +261|2023-10-06T20:28:40.6570000-07:00|Change|4002255A||||||||||||| +39|2023-10-06T20:28:41.1410000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|7750|10000|||118.88|118.36|0.00|-2.68| +21|2023-10-06T20:28:41.1410000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2DB80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9444782|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||87.40|81.16|0.00|2.40|0001B1DA|0|1| +261|2023-10-06T20:28:40.7770000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:28:41.2300000-07:00|40022550|Zeromus|0001B1D7|9439800||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:41.2730000-07:00|10FF0007|Kehabiqo Febiqo|0001B1D5|114434||||||87.41|81.13|0.00|1.65| +21|2023-10-06T20:28:41.2750000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D724003|35780000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|9444782|40478540|10000|10000|||100.00|80.10|0.00|0.00|80666|90128|10000|10000|||117.30|84.48|0.00|-1.56|0001B1DB|0|1| +21|2023-10-06T20:28:41.2750000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|AE80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9444782|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||111.23|92.54|0.00|-2.41|0001B1DC|0|1| +38|2023-10-06T20:28:41.2750000-07:00|10FF0002|Suchichi Suchi|005A5A16|80666|90128|10000|10000|0||117.30|84.48|0.00|-1.56|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:41.2750000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:28:41.2750000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +31|2023-10-06T20:28:41.2750000-07:00|10FF0001||||| +37|2023-10-06T20:28:41.3180000-07:00|40022550|Zeromus|0001B1D6|9424445||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:41.3190000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|14880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9444782|40478540|10000|10000|||100.00|80.10|0.00|0.00|80666|90128|10000|10000|||117.30|84.48|0.00|-1.56|0001B1DD|0|1| +21|2023-10-06T20:28:41.3630000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|576A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|9424445|40478540|10000|10000|||100.00|80.10|0.00|0.00|76201|80739|8145|10000|||88.00|108.42|0.00|2.74|0001B1DE|0|1| +21|2023-10-06T20:28:41.4080000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|9424445|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||81.04|118.49|0.00|-1.60|0001B1DF|0|1| +261|2023-10-06T20:28:41.0040000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:28:41.0040000-07:00|Change|40022CB1||||||||| +38|2023-10-06T20:28:41.4520000-07:00|40022CBD||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:28:41.4520000-07:00|40022CBD||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:28:41.5420000-07:00|40022565|Zeromus|8B64|Sparking Flare|10FF0004|Buhojaqe Zijaqe|150003|AE6A0000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|80739|80739|7750|10000|||118.88|118.36|0.00|-2.70|44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1E0|0|1| +21|2023-10-06T20:28:41.5420000-07:00|40022566|Zeromus|8B64|Sparking Flare|10FF0002|Suchichi Suchi|150003|B8770000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|80666|90128|10000|10000|||117.30|84.42|0.00|-1.81|44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1E1|0|1| +03|2023-10-06T20:28:41.1180000-07:00|40022CBD|Topaz Titan|00|5A|10FF0008|00||10264|13507|72376|75851|10000|10000|||81.05|118.51|0.00|2.68| +261|2023-10-06T20:28:41.1180000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:28:41.1180000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:28:41.1180000-07:00|Add|40022CBD||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:41.5430000-07:00|40022567|Zeromus|8B64|Sparking Flare|10FF0001|Sesuga Sapisuga|150003|72B90000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|127791|127791|8200|10000|||111.23|92.54|0.00|-2.41|44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1E2|0|1| +21|2023-10-06T20:28:41.5430000-07:00|40022568|Zeromus|8B64|Sparking Flare|10FF0006|Wowobora Gogobora|150003|B6E20000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|76201|80739|7745|10000|||88.00|108.42|0.00|2.74|44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1E3|0|1| +21|2023-10-06T20:28:41.5430000-07:00|40022569|Zeromus|8B64|Sparking Flare|10FF0005|Wuwuchu Wuchu|150003|BF9C0000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|85924|90055|10000|10000|||85.75|86.86|0.00|1.64|44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1E4|0|1| +21|2023-10-06T20:28:41.5430000-07:00|4002256A|Zeromus|8B64|Sparking Flare|10FF0003|Gegehi Gehi|150003|B72D0000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|65101|73085|3550|10000|||118.86|103.67|0.00|-2.31|44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1E5|0|1| +21|2023-10-06T20:28:41.5430000-07:00|4002256B|Zeromus|8B64|Sparking Flare|10FF0008|Kokosaze Lulusaze|150003|B9FA0000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||81.04|118.49|0.00|2.68|44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1E6|0|1| +21|2023-10-06T20:28:41.5430000-07:00|4002256C|Zeromus|8B64|Sparking Flare|10FF0007|Kehabiqo Febiqo|150003|71130000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|114434|128564|10000|10000|||87.42|81.13|0.00|1.65|44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1E7|0|1| +38|2023-10-06T20:28:41.5430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114434|128564|10000|10000|0||87.42|81.13|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:41.5430000-07:00|832|Fire Resistance Down II|2.00|4002256C|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|44| +261|2023-10-06T20:28:41.2140000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|40022568||||||||||||| +38|2023-10-06T20:28:41.5430000-07:00|10FF0002|Suchichi Suchi|005A5A16|80666|90128|10000|10000|0||117.30|84.40|0.00|-1.81|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:41.5430000-07:00|832|Fire Resistance Down II|2.00|40022566|Zeromus|10FF0002|Suchichi Suchi|00|90128|44| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002256B||||||||||||| +38|2023-10-06T20:28:41.5430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||81.04|118.49|0.00|2.68|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:41.5430000-07:00|832|Fire Resistance Down II|2.00|4002256B|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|44| +38|2023-10-06T20:28:41.5430000-07:00|10FF0006|Wowobora Gogobora|005A5A28|76201|80739|7745|10000|0||88.00|108.42|0.00|2.74|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:41.5430000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:28:41.5430000-07:00|832|Fire Resistance Down II|2.00|40022568|Zeromus|10FF0006|Wowobora Gogobora|00|80739|44| +38|2023-10-06T20:28:41.5430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|0||111.23|92.54|0.00|-2.41|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:41.5430000-07:00|832|Fire Resistance Down II|2.00|40022567|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|44| +38|2023-10-06T20:28:41.5430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7750|10000|0||118.88|118.36|0.00|-2.75|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:41.5430000-07:00|832|Fire Resistance Down II|2.00|40022565|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +38|2023-10-06T20:28:41.5430000-07:00|10FF0003|Gegehi Gehi|005A5A23|65101|73085|3550|10000|0||118.86|103.67|0.00|-2.31|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:41.5430000-07:00|832|Fire Resistance Down II|2.00|4002256A|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +38|2023-10-06T20:28:41.5430000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|85924|90055|10000|10000|0||85.75|86.86|0.00|1.64|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:41.5430000-07:00|832|Fire Resistance Down II|2.00|40022569|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|44| +21|2023-10-06T20:28:41.5860000-07:00|4002256D|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1E8|0|0| +21|2023-10-06T20:28:41.5860000-07:00|4002256E|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1E9|0|0| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|40022CBD||||| +24|2023-10-06T20:28:41.6310000-07:00|10FF0002|Suchichi Suchi|HoT|0|1DD2|80666|90128|10000|10000|||117.30|84.40|0.00|-1.81|10FF0006|Wowobora Gogobora|0|76201|80739|7745|10000|||88.00|108.42|0.00|2.74| +21|2023-10-06T20:28:41.6310000-07:00|4002255B|Zeromus|8B63|Prominence Spine|10FF0003|Gegehi Gehi|150003|54434008|100140E|6FD0000|1B|8B638000|0|0|0|0|0|0|0|0|0|0|65101|73085|3550|10000|||118.86|103.67|0.00|-2.31|44|44|0|10000|||95.00|100.00|0.00|1.57|0001B1EA|0|1| +21|2023-10-06T20:28:41.6310000-07:00|4002255C|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|0001B1EB|0|0| +21|2023-10-06T20:28:41.6310000-07:00|4002255D|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|-1.57|0001B1EC|0|0| +21|2023-10-06T20:28:41.6310000-07:00|4002255E|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|3.14|0001B1ED|0|0| +21|2023-10-06T20:28:41.6310000-07:00|4002255F|Zeromus|8B63|Prominence Spine|10FF0003|Gegehi Gehi|150003|9B6A4009|200140E|6FD0000|1B|8B638000|0|0|0|0|0|0|0|0|0|0|65101|73085|3550|10000|||118.86|103.67|0.00|-2.31|44|44|0|10000|||105.00|100.00|0.00|1.57|0001B1EE|0|1| +21|2023-10-06T20:28:41.6310000-07:00|40022560|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|0001B1EF|0|0| +21|2023-10-06T20:28:41.6310000-07:00|40022561|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|-1.57|0001B1F0|0|0| +21|2023-10-06T20:28:41.6310000-07:00|40022562|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|3.14|0001B1F1|0|0| +21|2023-10-06T20:28:41.6310000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|712003|43F60000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|9424445|40478540|10000|10000|||100.00|80.10|0.00|0.00|85924|90055|10000|10000|||85.75|86.86|0.00|1.64|0001B1F2|0|1| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002255B||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002255C||||||||||||| +38|2023-10-06T20:28:41.6310000-07:00|10FF0002|Suchichi Suchi|005A5A16|88300|90128|10000|10000|0||117.30|84.40|0.00|-1.81|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002255F||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|40022562||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002255E||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|40022561||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|4002255D||||||||||||| +261|2023-10-06T20:28:41.2140000-07:00|Change|40022560||||||||||||| +24|2023-10-06T20:28:41.6740000-07:00|10FF0003|Gegehi Gehi|HoT|0|1D59|65101|73085|3550|10000|||118.85|103.71|0.00|-2.19|4002255F|Zeromus|0|44|44|0|10000|||105.00|100.00|0.00|1.57| +38|2023-10-06T20:28:41.6740000-07:00|40022550|Zeromus|005A5A00|9424445|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:28:41.6740000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +38|2023-10-06T20:28:41.6740000-07:00|10FF0003|Gegehi Gehi|005A5A23|72614|73085|3550|10000|0||118.85|103.71|0.00|-2.19|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:28:41.6740000-07:00|6FD|Vulnerability Up|59.96|4002255F|Zeromus|10FF0003|Gegehi Gehi|02|73085|44| +37|2023-10-06T20:28:41.7630000-07:00|40022550|Zeromus|0001B1DA|9412741||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:41.4040000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:28:41.8110000-07:00|10FF0003|Gegehi Gehi|0001B1EA|0|73085|0|10000|0||118.83|103.75|0.00|-2.08|2300|0|0|04|01000000|0|0|||||||||||||| +37|2023-10-06T20:28:41.8110000-07:00|40022550|Zeromus|0001B1DC|9409949||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:41.8110000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|73085|0|10000|0||118.83|103.75|0.00|-2.08|0|0|0|||| +30|2023-10-06T20:28:41.8110000-07:00|74C|Everlasting Flight|0.00|40022C92|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73085|75851| +30|2023-10-06T20:28:41.8110000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:28:41.8110000-07:00|13B|Whispering Dawn|0.00|40022B84|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +30|2023-10-06T20:28:41.8110000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:28:41.8110000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:28:41.8110000-07:00|832|Fire Resistance Down II|0.00|4002256A|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +30|2023-10-06T20:28:41.8110000-07:00|6FD|Vulnerability Up|0.00|4002255F|Zeromus|10FF0003|Gegehi Gehi|02|73085|44| +37|2023-10-06T20:28:41.8530000-07:00|40022550|Zeromus|0001B1DD|9404693||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:41.8530000-07:00|10FF0002|Suchichi Suchi|0001B1DD|88300|90128|10000|10000|0||117.30|84.37|0.00|-1.81|1600|0|0|01|06000322|0|C1F00000|| +24|2023-10-06T20:28:41.8530000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|268C|127791|127791|8200|10000|||111.23|92.54|0.00|-2.41|10FF0001|Sesuga Sapisuga|0|127791|127791|8200|10000|||111.23|92.54|0.00|-2.41| +24|2023-10-06T20:28:41.8530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2476|80739|80739|7750|10000|||118.87|117.73|0.00|-2.87|10FF0006|Wowobora Gogobora|0|76201|80739|7745|10000|||88.00|108.42|0.00|2.74| +38|2023-10-06T20:28:41.8540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|0||111.23|92.54|0.00|-2.41|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:41.8540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|7750|10000|0||118.87|117.73|0.00|-2.87|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:41.4980000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:28:41.8990000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9404693|40478540|10000|10000|||100.00|80.10|0.00|0.00|85924|90055|10000|10000|||85.80|86.93|-0.02|1.87|0001B1F3|0|1| +37|2023-10-06T20:28:41.9430000-07:00|40022550|Zeromus|0001B1DB|9391005||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:41.9430000-07:00|10FF0002|Suchichi Suchi|0001B1DB|88300|90128|10000|10000|0||117.30|84.37|0.00|-1.81|1600|0|0|01|06000322|0|41F00000|| +24|2023-10-06T20:28:41.9430000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1EEB|85924|90055|10000|10000|||85.80|86.93|-0.02|1.87|10FF0006|Wowobora Gogobora|0|76201|80739|7745|10000|||88.01|108.42|0.00|2.40| +38|2023-10-06T20:28:41.9430000-07:00|10FF0002|Suchichi Suchi|005A5A16|88300|90128|10000|10000|0||117.30|84.37|0.00|-1.81|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:28:41.9430000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||85.80|86.93|-0.02|1.87|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:28:41.9880000-07:00|10FF0006|Wowobora Gogobora|HoT|0|24A4|80739|80739|7745|10000|||88.02|108.41|-0.02|2.09|10FF0006|Wowobora Gogobora|0|80739|80739|7745|10000|||88.02|108.41|-0.02|2.09| +38|2023-10-06T20:28:41.9880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|7745|10000|0||88.02|108.41|-0.02|2.09|0|0|0|||||||||||||||||||||| +24|2023-10-06T20:28:42.0330000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|154C|114434|128564|10000|10000|||87.42|81.13|0.00|1.65|10FF0006|Wowobora Gogobora|0|80739|80739|7745|10000|||88.07|108.41|0.00|2.01| +37|2023-10-06T20:28:42.0330000-07:00|40022550|Zeromus|0001B1DE|9368627||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:42.0330000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|724003|2FD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9391005|40478540|10000|10000|||100.00|80.10|0.00|0.00|88300|90128|10000|10000|||117.30|84.37|0.00|-1.81|0001B1F4|0|1| +21|2023-10-06T20:28:42.0330000-07:00|10FF0008|Kokosaze Lulusaze|03|Sprint|10FF0008|Kokosaze Lulusaze|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9400|10000|||81.01|118.35|0.00|-3.14|79111|79111|9400|10000|||81.01|118.35|0.00|-3.14|0001B1F5|0|1| +38|2023-10-06T20:28:42.0330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119886|128564|10000|10000|0||87.42|81.13|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:42.0760000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|23360000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|9391005|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|7750|10000|||118.83|115.07|0.00|-3.08|0001B1F6|0|1| +37|2023-10-06T20:28:42.1200000-07:00|40022550|Zeromus|0001B1F2|9351229||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:42.1660000-07:00|10FF0004|Buhojaqe Zijaqe|0001B1E0|36089|80739|7350|10000|0||118.83|115.07|0.00|-3.08|1C00|0|0|01|06000832|0|3FB5E354|| +37|2023-10-06T20:28:42.1660000-07:00|10FF0002|Suchichi Suchi|0001B1E1|41077|90128|10000|10000|0||117.30|84.37|0.00|-1.81|1600|0|0|01|0832|0|3FB5E354|| +37|2023-10-06T20:28:42.1660000-07:00|10FF0001|Sesuga Sapisuga|0001B1E2|98422|127791|8200|10000|0||111.23|92.54|0.00|-2.41|1300|0|0|01|03000832|0|3FB5E354|| +37|2023-10-06T20:28:42.1660000-07:00|10FF0006|Wowobora Gogobora|0001B1E3|33921|80739|7745|10000|0||88.07|108.41|0.00|2.01|2800|0|0|01|05000832|0|3FB5E354|| +37|2023-10-06T20:28:42.1660000-07:00|10FF0008|Kokosaze Lulusaze|0001B1F5|79111|79111|9400|10000|0||81.01|118.35|0.00|-3.14|1B00|0|0|01|0A000032|1E|41200000|| +26|2023-10-06T20:28:42.1660000-07:00|32|Sprint|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|79111|79111| +37|2023-10-06T20:28:42.1660000-07:00|10FF0005|Wuwuchu Wuchu|0001B1E4|41003|90055|10000|10000|0||85.81|86.96|0.00|1.76|2700|0|0|01|04000832|0|3FB5E354|| +37|2023-10-06T20:28:42.1660000-07:00|10FF0008|Kokosaze Lulusaze|0001B1E6|31501|79111|9400|10000|0||81.01|118.35|0.00|-3.14|1B00|0|0|01|09000832|0|3FB5E354|| +37|2023-10-06T20:28:42.1660000-07:00|10FF0007|Kehabiqo Febiqo|0001B1E7|90939|128564|10000|10000|0||87.42|81.13|0.00|1.65|1500|0|0|01|07000832|0|3FB5E354|| +261|2023-10-06T20:28:41.8100000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:28:41.8100000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:28:42.2090000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|14F00000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|33921|80739|7745|10000|||88.11|108.38|0.00|1.94|73956|77430|10000|10000|||97.80|99.60|0.00|-2.71|0001B1F7|0|1| +39|2023-10-06T20:28:42.2540000-07:00|10FF0007|Kehabiqo Febiqo|92224|128564|10000|10000|||87.42|81.13|0.00|1.65| +37|2023-10-06T20:28:42.4320000-07:00|40022550|Zeromus|0001B1F3|9348043||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:42.4770000-07:00|10FF0002|Suchichi Suchi|41978|90128|10000|10000|||117.30|84.37|0.00|-1.81| +21|2023-10-06T20:28:42.4770000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|752003|AE490000|200004|3DC38000|0|0|0|0|0|0|0|0|0|0|0|0|9348043|40478540|10000|10000|||100.00|80.10|0.00|0.00|98422|127791|8200|10000|||111.23|92.54|0.00|-2.41|0001B1F8|0|1| +38|2023-10-06T20:28:42.4770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|98422|127791|7200|10000|0||111.23|92.54|0.00|-2.41|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:42.4770000-07:00|558|Requiescat|22.11|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:28:42.4770000-07:00|10FF0001||||| +261|2023-10-06T20:28:42.0360000-07:00|Change|10FF0001||| +261|2023-10-06T20:28:42.0360000-07:00|Change|40022CBD||| +24|2023-10-06T20:28:42.5210000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2BB9|92224|128564|10000|10000|||87.42|81.13|0.00|1.65|10FF0006|Wowobora Gogobora|0|33921|80739|7745|10000|||88.17|108.38|0.00|1.85| +24|2023-10-06T20:28:42.5210000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1E29|31501|79111|9400|10000|||80.91|116.26|0.00|-3.10|10FF0008|Kokosaze Lulusaze|0|31501|79111|9400|10000|||80.91|116.26|0.00|-3.10| +38|2023-10-06T20:28:42.5210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103417|128564|10000|10000|0||87.42|81.13|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:42.5210000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:42.5210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|39222|79111|9950|10000|0||80.91|116.26|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:42.1500000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:28:42.3410000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:28:42.8310000-07:00|40022550|Zeromus|0001B1F4|9335800||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:42.8770000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|7BAC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9335800|40478540|10000|10000|||100.00|80.10|0.00|0.00|103417|128564|10000|10000|||87.42|81.13|0.00|1.65|0001B1F9|0|1| +38|2023-10-06T20:28:42.8770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103417|128564|10000|10000|0||87.42|81.13|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:42.8770000-07:00|499|Inner Release|11.75|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +21|2023-10-06T20:28:42.9210000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|720003|35000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9335800|40478540|10000|10000|||100.00|80.10|0.00|0.00|41978|90128|10000|10000|||117.30|84.37|0.00|-1.81|0001B1FA|0|1| +37|2023-10-06T20:28:43.0090000-07:00|10FF0006|Wowobora Gogobora|0001B1F7|39281||||||89.08|107.32|0.00|2.47| +37|2023-10-06T20:28:43.0090000-07:00|40022550|Zeromus|0001B1F6|9326786||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:43.0090000-07:00|10FF0001|Sesuga Sapisuga|99699|127791|7400|10000|||111.23|92.54|0.00|-2.41| +261|2023-10-06T20:28:42.6450000-07:00|Change|10FF0005||||||||| +04|2023-10-06T20:28:42.6450000-07:00|40022C92|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|0|75851|0|10000|||100.30|104.63|0.00|-3.13| +261|2023-10-06T20:28:42.6450000-07:00|Remove|40022C92| +21|2023-10-06T20:28:43.1430000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|121D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9326786|40478540|10000|10000|||100.00|80.10|0.00|0.00|99699|127791|7400|10000|||111.23|92.54|0.00|-2.41|0001B1FB|0|1| +261|2023-10-06T20:28:42.6450000-07:00|Change|10FF0008||||||||| +24|2023-10-06T20:28:43.1880000-07:00|40022550|Zeromus|DoT|0|2A9E|9326786|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|41003|90055|10000|10000|||88.66|89.82|0.00|1.51| +38|2023-10-06T20:28:43.1880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|39281|80739|7745|10000|0||90.06|106.21|0.00|2.42|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:28:43.1880000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:28:43.1880000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39281|80739|7745|10000|||90.06|106.21|0.00|2.42|39281|80739|7745|10000|||90.06|106.21|0.00|2.42|0001B1FC|0|1| +38|2023-10-06T20:28:43.1880000-07:00|40022550|Zeromus|005A5A00|9315876|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:28:43.2330000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|-0.85| +37|2023-10-06T20:28:43.3660000-07:00|40022550|Zeromus|0001B1F8|9271259||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:43.3660000-07:00|10FF0001|Sesuga Sapisuga|0001B1F8|115510||||||111.23|92.54|0.00|-2.41| +21|2023-10-06T20:28:43.4100000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9315876|40478540|10000|10000|||100.00|80.10|0.00|0.00|103417|128564|10000|10000|||88.45|81.35|0.00|1.44|0001B1FD|0|1| +261|2023-10-06T20:28:43.1210000-07:00|Change|40022CB1||| +261|2023-10-06T20:28:43.1210000-07:00|Change|10FF0001||| +261|2023-10-06T20:28:43.1210000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:28:43.5010000-07:00|40022550|Zeromus|0001B1F9|9239599||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:43.5010000-07:00|40022CBD|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|450003|5C240000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|9271259|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||81.05|118.51|0.00|2.68|0001B1FE|0|1| +39|2023-10-06T20:28:43.5010000-07:00|10FF0006|Wowobora Gogobora|40088|80739|7950|10000|||91.57|104.69|0.00|2.35| +21|2023-10-06T20:28:43.5010000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|38240000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|103417|128564|10000|10000|||89.20|81.53|0.00|1.40|9271259|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B1FF|0|1| +21|2023-10-06T20:28:43.5460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|D210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9271259|40478540|10000|10000|||100.00|80.10|0.00|0.00|115510|127791|7400|10000|||111.23|92.54|0.00|-2.41|0001B200|0|1| +38|2023-10-06T20:28:43.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103417|128564|10000|10000|0||89.20|81.53|0.00|1.40|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:43.5460000-07:00|832|Fire Resistance Down II|0.00|4002256C|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|44| +38|2023-10-06T20:28:43.5460000-07:00|10FF0002|Suchichi Suchi|005A5A16|41978|90128|10000|10000|0||115.92|84.55|0.00|-1.67|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:43.5460000-07:00|832|Fire Resistance Down II|0.00|40022566|Zeromus|10FF0002|Suchichi Suchi|00|90128|44| +38|2023-10-06T20:28:43.5460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|39222|79111|9950|10000|0||80.79|107.31|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:43.5460000-07:00|832|Fire Resistance Down II|0.00|4002256B|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|44| +38|2023-10-06T20:28:43.5460000-07:00|10FF0006|Wowobora Gogobora|005A5A28|40088|80739|7950|10000|0||91.57|104.69|0.00|2.35|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:28:43.5460000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:28:43.5460000-07:00|832|Fire Resistance Down II|0.00|40022568|Zeromus|10FF0006|Wowobora Gogobora|00|80739|44| +38|2023-10-06T20:28:43.5460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|115510|127791|7400|10000|0||111.23|92.54|0.00|-2.41|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:43.5460000-07:00|832|Fire Resistance Down II|0.00|40022567|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|44| +38|2023-10-06T20:28:43.5460000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|36089|80739|7350|10000|0||117.98|107.58|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:43.5460000-07:00|832|Fire Resistance Down II|0.00|40022565|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +38|2023-10-06T20:28:43.5460000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|41003|90055|10000|10000|0||89.37|91.70|-0.01|1.15|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:43.5460000-07:00|832|Fire Resistance Down II|0.00|40022569|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|44| +31|2023-10-06T20:28:43.5460000-07:00|10FF0001||||| +261|2023-10-06T20:28:43.2130000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:28:43.6790000-07:00|40022550|Zeromus|0001B1FA|9226031||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:43.7240000-07:00|40022550|Zeromus|0001B1FB|9221394||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:43.7700000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A726003|7E840000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|9239599|40478540|10000|10000|||100.00|80.10|0.00|0.00|41978|90128|10000|10000|||114.70|85.07|0.00|-1.52|0001B201|0|1| +38|2023-10-06T20:28:43.7700000-07:00|10FF0002|Suchichi Suchi|005A5A16|41978|90128|10000|10000|0||114.70|85.07|0.00|-1.52|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:43.7700000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:28:43.7700000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +25|2023-10-06T20:28:43.8130000-07:00|10FF0003|Gegehi Gehi|4002255B|Zeromus| +261|2023-10-06T20:28:43.4080000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:28:43.8570000-07:00|10FF0005|Wuwuchu Wuchu|41903|90055|10000|10000|||89.93|93.34|0.00|1.12| +21|2023-10-06T20:28:43.9020000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|349B0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|9221394|40478540|10000|10000|||100.00|80.10|0.00|0.00|39222|79111|9950|10000|||80.85|104.93|0.00|3.13|0001B202|0|1| +38|2023-10-06T20:28:43.9020000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|39222|79111|9650|10000|0||80.85|104.93|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:43.9020000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:43.5100000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:28:43.9460000-07:00|40022550|Zeromus|0001B1FD|9218459||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:43.9910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|39222|79111|9650|10000|0||80.87|104.09|0.00|2.46|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:43.9910000-07:00|4B4|Lucid Dreaming|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +39|2023-10-06T20:28:44.0350000-07:00|10FF0008|Kokosaze Lulusaze|40013|79111|9850|10000|||80.89|103.25|0.00|2.46| +37|2023-10-06T20:28:44.0800000-07:00|40022550|Zeromus|0001B200|9215098||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:44.1240000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9218459|40478540|10000|10000|||100.00|80.10|0.00|0.00|41978|90128|10000|10000|||113.90|86.77|0.00|-2.07|0001B203|0|1| +21|2023-10-06T20:28:44.1240000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C716003|6F820000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|9218459|40478540|10000|10000|||100.00|80.10|0.00|0.00|41903|90055|10000|10000|||90.34|94.68|0.00|1.10|0001B204|0|1| +261|2023-10-06T20:28:43.7040000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:28:44.1680000-07:00|10FF0004|Buhojaqe Zijaqe|36896|80739|7550|10000|||118.45|104.93|0.00|2.96| +37|2023-10-06T20:28:44.3040000-07:00|10FF0007|Kehabiqo Febiqo|0001B1FF|89045||||||94.09|82.83|-0.02|1.33| +21|2023-10-06T20:28:44.3040000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9215098|40478540|10000|10000|||100.00|80.10|0.00|0.00|40088|80739|7950|10000|||95.17|102.24|0.00|2.21|0001B205|0|1| +261|2023-10-06T20:28:43.9330000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:28:43.9330000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:28:44.3910000-07:00|40022550|Zeromus|0001B201|9182710||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:44.3910000-07:00|10FF0002|Suchichi Suchi|0001B201|41978|90128|10000|10000|0||112.81|88.30|0.00|-1.86|1600|0|0|01|0747|0|41F00000|| +38|2023-10-06T20:28:44.3920000-07:00|10FF0002|Suchichi Suchi|005A5A16|41978|90128|10000|10000|0||112.81|88.30|0.00|-1.86|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:28:44.4810000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|258B0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|9215098|40478540|10000|10000|||100.00|80.10|0.00|0.00|36896|80739|7550|10000|||118.34|103.46|0.00|3.08|0001B206|0|1| +37|2023-10-06T20:28:44.5250000-07:00|40022550|Zeromus|0001B202|9169243||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:44.5250000-07:00|10FF0008|Kokosaze Lulusaze|0001B202|40013|79111|9850|10000|0||80.90|102.20|0.00|2.64|1B00|0|0|01|09000B25|0|0|| +21|2023-10-06T20:28:44.5250000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|1CB70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9182710|40478540|10000|10000|||100.00|80.10|0.00|0.00|40013|79111|9850|10000|||80.90|102.20|0.00|2.64|0001B207|0|1| +38|2023-10-06T20:28:44.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|40013|79111|9850|10000|0||80.90|102.20|0.00|2.64|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:44.5250000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:44.1440000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:28:44.6590000-07:00|40022550|Zeromus|0001B203|9165876||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:44.6590000-07:00|10FF0002|Suchichi Suchi|HoT|0|208C|41978|90128|10000|10000|||111.63|89.69|0.00|-1.59|10FF0006|Wowobora Gogobora|0|40088|80739|7950|10000|||96.68|100.81|0.00|2.31| +38|2023-10-06T20:28:44.6590000-07:00|10FF0002|Suchichi Suchi|005A5A16|50310|90128|10000|10000|0||111.63|89.69|0.00|-1.59|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:28:44.7030000-07:00|40022550|Zeromus|0001B204|9137330||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:44.3300000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:28:44.8360000-07:00|40022550|Zeromus|0001B205|9137295||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:44.8800000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1DB9|115510|127791|7400|10000|||106.90|93.52|0.00|-1.56|10FF0001|Sesuga Sapisuga|0|115510|127791|7400|10000|||106.90|93.52|0.00|-1.56| +24|2023-10-06T20:28:44.8800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1DF8|36896|80739|7150|10000|||118.20|100.26|0.00|-3.07|10FF0006|Wowobora Gogobora|0|40088|80739|7950|10000|||98.35|99.76|0.00|2.18| +38|2023-10-06T20:28:44.8800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123119|127791|7400|10000|0||106.90|93.52|0.00|-1.56|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:44.8800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44568|80739|7150|10000|0||118.20|100.26|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:44.9250000-07:00|40022550|Zeromus|005A5A00|9137295|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:28:44.9250000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +261|2023-10-06T20:28:44.5210000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:28:44.9690000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|21C0|41903|90055|10000|10000|||92.19|98.15|0.00|1.43|10FF0006|Wowobora Gogobora|0|40088|80739|7950|10000|||98.91|99.41|0.00|2.17| +38|2023-10-06T20:28:44.9690000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|50543|90055|10000|10000|0||92.19|98.15|0.00|1.43|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:28:45.0140000-07:00|10FF0006|Wowobora Gogobora|HoT|0|26AB|40088|80739|7950|10000|||98.91|99.41|0.00|2.17|10FF0006|Wowobora Gogobora|0|40088|80739|7950|10000|||98.91|99.41|0.00|2.17| +38|2023-10-06T20:28:45.0140000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49987|80739|7950|10000|0||98.91|99.41|0.00|2.17|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:28:44.5210000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:28:44.5210000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:28:44.6410000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:28:45.0590000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|752003|B5090000|200004|3B7A8000|0|0|0|0|0|0|0|0|0|0|0|0|9137295|40478540|10000|10000|||100.00|80.10|0.00|0.00|123119|127791|7400|10000|||106.21|93.51|0.00|-1.65|0001B208|0|1| +38|2023-10-06T20:28:45.0590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123119|127791|6400|10000|0||106.21|93.51|0.00|-1.65|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:45.0590000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:28:45.0590000-07:00|10FF0001||||| +21|2023-10-06T20:28:45.1040000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9137295|40478540|10000|10000|||100.00|80.10|0.00|0.00|41903|90055|10000|10000|||92.19|98.15|0.00|1.43|0001B209|0|1| +261|2023-10-06T20:28:44.6410000-07:00|Change|40022CB1||| +04|2023-10-06T20:28:44.6410000-07:00|40022CB1|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||82.75|117.75|0.00|-0.56| +261|2023-10-06T20:28:44.6410000-07:00|Remove|40022CB1| +261|2023-10-06T20:28:44.7610000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:28:45.2370000-07:00|10FF0007|Kehabiqo Febiqo|90330|128564|10000|10000|||98.46|86.33|0.00|1.09| +21|2023-10-06T20:28:45.2370000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50310|90128|10000|10000|||108.21|92.27|0.00|-1.72|50310|90128|10000|10000|||108.21|92.27|0.00|-1.72|0001B20A|0|1| +38|2023-10-06T20:28:45.2370000-07:00|10FF0002|Suchichi Suchi|005A5A16|50310|90128|10000|10000|0||108.21|92.27|0.00|-1.72|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:45.2370000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:45.2800000-07:00|40022550|Zeromus|0001B207|9129944||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:45.3260000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|A2110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9129944|40478540|10000|10000|||100.00|80.10|0.00|0.00|90330|128564|10000|10000|||98.98|86.60|0.00|1.08|0001B20B|0|1| +22|2023-10-06T20:28:45.3260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|C680000|B30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|49987|80739|7950|10000|||100.06|97.96|0.00|2.38|49987|80739|7950|10000|||100.06|97.96|0.00|2.38|0001B20C|0|5| +22|2023-10-06T20:28:45.3260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|C4C0000|590E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|50543|90055|10000|10000|||93.54|99.66|0.00|1.59|49987|80739|7950|10000|||100.06|97.96|0.00|2.38|0001B20C|1|5| +22|2023-10-06T20:28:45.3260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|200004|14470000|E30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|123119|127791|6400|10000|||104.95|94.34|0.00|-1.98|49987|80739|7950|10000|||100.06|97.96|0.00|2.38|0001B20C|2|5| +22|2023-10-06T20:28:45.3260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|CB10000|9C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|50310|90128|10000|10000|||107.64|92.69|0.00|-1.73|49987|80739|7950|10000|||100.06|97.96|0.00|2.38|0001B20C|3|5| +22|2023-10-06T20:28:45.3260000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|C840000|C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90330|128564|10000|10000|||98.98|86.60|0.00|1.08|49987|80739|7950|10000|||100.06|97.96|0.00|2.38|0001B20C|4|5| +38|2023-10-06T20:28:45.3260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90330|128564|10000|10000|7||98.98|86.60|0.00|1.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:45.3260000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:28:45.3260000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:28:45.3260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:45.3260000-07:00|10FF0002|Suchichi Suchi|005A5A16|50310|90128|10000|10000|11||107.64|92.69|0.00|-1.73|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:45.3260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:28:45.3260000-07:00|10FF0006|Wowobora Gogobora|005A5A28|49987|80739|7050|10000|12||100.06|97.96|0.00|2.38|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:45.3260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:28:45.3260000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:45.3260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123119|127791|6400|10000|12||104.95|94.34|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:45.3260000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:28:45.3270000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|50543|90055|10000|10000|11||93.54|99.66|0.00|1.59|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:45.3270000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:28:45.4150000-07:00|40022550|Zeromus|0001B206|9120333||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:44.9920000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:28:45.4590000-07:00|40022550|Zeromus|0001B1FE|9096745||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:45.4590000-07:00|10FF0002|Suchichi Suchi|51211|90128|10000|10000|||107.10|93.08|0.00|-1.73| +24|2023-10-06T20:28:45.5480000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1A09|90330|128564|10000|10000|||99.27|86.76|0.00|3.06|10FF0006|Wowobora Gogobora|0|49987|80739|7050|10000|||100.36|97.35|0.00|2.50| +24|2023-10-06T20:28:45.5480000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2BB8|40013|79111|9850|10000|||81.04|94.55|0.00|2.94|10FF0008|Kokosaze Lulusaze|0|40013|79111|9850|10000|||81.04|94.55|0.00|2.94| +38|2023-10-06T20:28:45.5480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96995|128564|10000|10000|7||99.27|86.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:45.5480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51205|79111|9850|10000|0||81.04|94.55|0.00|2.94|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:28:45.6370000-07:00|40022550|Zeromus|0001B209|9092458||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:45.6370000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|4|14BA0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|50543|90055|10000|10000|||94.89|99.45|0.00|1.65|73956|77430|10000|10000|||97.80|99.60|0.00|-3.10|0001B20D|0|1| +21|2023-10-06T20:28:45.6370000-07:00|40022559|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.05|118.51|0.00|0.00|0001B20E|0|0| +21|2023-10-06T20:28:45.6370000-07:00|4002255A|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.91|118.39|0.00|0.00|0001B20F|0|0| +261|2023-10-06T20:28:45.1940000-07:00|Change|40022559||||||||||||| +261|2023-10-06T20:28:45.1940000-07:00|Change|4002255A||||||||||||| +37|2023-10-06T20:28:45.7690000-07:00|10FF0002|Suchichi Suchi|0001B20A|51211|90128|10000|10000|11||105.82|94.01|0.00|-1.73|1600|0|0|01|06000074|0|40A00000|| +38|2023-10-06T20:28:45.7690000-07:00|10FF0002|Suchichi Suchi|005A5A16|51211|90128|10000|10000|11||105.82|94.01|0.00|-1.73|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:45.8140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|88B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9092458|40478540|10000|10000|||100.00|80.10|0.00|0.00|123119|127791|6400|10000|||103.22|96.07|0.00|-2.20|0001B210|0|1| +31|2023-10-06T20:28:45.8140000-07:00|10FF0001||||| +261|2023-10-06T20:28:45.3920000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:28:45.3920000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:28:45.9480000-07:00|40022550|Zeromus|0001B208|9046113||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:45.9480000-07:00|10FF0001|Sesuga Sapisuga|0001B208|127791||||||102.76|96.47|0.00|-2.27| +261|2023-10-06T20:28:45.4900000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:28:45.4900000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T20:28:45.4900000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:28:46.0350000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6600|10000|||101.96|97.42|0.00|-2.27| +39|2023-10-06T20:28:46.2140000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|-2.05| +24|2023-10-06T20:28:46.2140000-07:00|40022550|Zeromus|DoT|0|133F|9046113|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|50543|90055|10000|10000|||96.33|99.34|0.00|2.19| +38|2023-10-06T20:28:46.2140000-07:00|40022550|Zeromus|005A5A00|9041186|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T20:28:45.8100000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:28:46.2580000-07:00|10FF0006|Wowobora Gogobora|0001B20C|53163|80739|7050|10000|12||101.31|95.15|0.00|2.65|2800|0|0|01|05000A31|0|41E8E350|| +21|2023-10-06T20:28:46.2600000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|726003|565A0000|104|10238000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|9046113|40478540|10000|10000|||100.00|80.10|0.00|0.00|51211|90128|10000|10000|||103.02|96.06|0.00|-1.72|0001B211|0|1| +21|2023-10-06T20:28:46.2600000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9046113|40478540|10000|10000|||100.00|80.10|0.00|0.00|51205|79111|9850|10000|||80.94|87.68|0.00|-3.12|0001B212|0|1| +38|2023-10-06T20:28:46.2600000-07:00|10FF0002|Suchichi Suchi|005A5A16|51211|90128|10000|10000|11||103.02|96.06|0.00|-1.72|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:46.2600000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:28:46.2600000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:46.3480000-07:00|40022550|Zeromus|0001B210|9038999||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:46.3930000-07:00|10FF0005|Wuwuchu Wuchu|0001B20C|53691|90055|10000|10000|11||96.40|99.36|0.00|2.26|2701|0|0|01|04000A31|0|41E7D0E1|| +21|2023-10-06T20:28:46.3930000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|456003|6D380000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|9041186|40478540|10000|10000|||100.00|80.10|0.00|0.00|51205|79111|9850|10000|||80.92|86.80|0.00|-3.12|0001B213|0|1| +21|2023-10-06T20:28:46.3930000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44568|80739|7150|10000|||117.57|95.70|0.00|-3.01|44568|80739|7150|10000|||117.57|95.70|0.00|-3.01|0001B214|0|1| +38|2023-10-06T20:28:46.3930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51205|79111|9550|10000|0||80.92|86.80|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:46.3930000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:28:46.3930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44568|80739|7150|10000|0||117.57|95.70|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:46.3930000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:28:46.4370000-07:00|10FF0005|Wuwuchu Wuchu|0001B20D|58997||||||96.45|99.38|-0.01|2.30| +37|2023-10-06T20:28:46.4820000-07:00|40022550|Zeromus|0001B20B|8997510||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:46.4830000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|110D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9038999|40478540|10000|10000|||100.00|80.10|0.00|0.00|96995|128564|10000|10000|||99.27|86.76|0.00|3.06|0001B215|0|1| +37|2023-10-06T20:28:46.5270000-07:00|10FF0001|Sesuga Sapisuga|0001B20C|127791|127791|6600|10000|12||99.79|98.46|0.00|-2.81|1302|0|0|01|03000A31|0|41E6BC66|| +37|2023-10-06T20:28:46.5270000-07:00|10FF0004|Buhojaqe Zijaqe|0001B214|44568|80739|7150|10000|0||117.57|95.48|0.00|-3.01|1C00|0|0|01|060000A7|0|41200000|| +39|2023-10-06T20:28:46.5270000-07:00|10FF0006|Wowobora Gogobora|53970|80739|7255|10000|||101.11|95.68|0.00|0.75| +21|2023-10-06T20:28:46.5270000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|FAF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|96995|128564|10000|10000|||99.32|86.79|0.00|3.10|8997510|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B216|0|1| +38|2023-10-06T20:28:46.5270000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44568|80739|7150|10000|0||117.57|95.48|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:46.5720000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53970|80739|7255|10000|12||101.11|95.68|0.00|0.75|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:46.5720000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:28:46.5720000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:28:46.5720000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:28:46.6160000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40712003|70760000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|8997510|40478540|10000|10000|||100.00|80.10|0.00|0.00|58997|90055|10000|10000|||96.45|99.38|0.00|2.30|0001B217|0|1| +261|2023-10-06T20:28:46.1500000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:28:46.6620000-07:00|10FF0002|Suchichi Suchi|0001B20C|54460|90128|10000|10000|11||101.28|98.08|0.00|-2.63|1603|0|0|01|09000A31|0|41E5AC03|| +261|2023-10-06T20:28:46.2440000-07:00|Change|10FF0002||||||||| +38|2023-10-06T20:28:46.7060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|58997|90055|10000|10000|11||96.45|99.38|0.00|2.91|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:46.7060000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:28:46.7060000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C97| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C98| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C99| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C9A| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C9B| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C9C| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C9D| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C9E| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022C9F| +261|2023-10-06T20:28:46.2440000-07:00|Remove|40022CA0| +37|2023-10-06T20:28:46.7950000-07:00|40022550|Zeromus|0001B212|8997267||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:46.7950000-07:00|10FF0007|Kehabiqo Febiqo|0001B20C|100199|128564|10000|10000|7||99.33|86.79|0.00|3.10|1504|0|0|01|05000A31|0|41E49994|| +21|2023-10-06T20:28:46.7950000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|E810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8997510|40478540|10000|10000|||100.00|80.10|0.00|0.00|96995|128564|10000|10000|||99.33|86.79|0.00|3.10|0001B218|0|1| +21|2023-10-06T20:28:46.7950000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53970|80739|7255|10000|||100.67|96.86|0.00|0.15|53970|80739|7255|10000|||100.67|96.86|0.00|0.15|0001B219|0|1| +38|2023-10-06T20:28:46.7950000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53970|80739|7255|10000|12||100.67|96.86|0.00|0.15|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:46.7950000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:46.8400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100199|128564|10000|10000|7||99.33|86.79|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:46.8400000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:28:46.8400000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:28:46.8840000-07:00|40022550|Zeromus|0001B211|8975161||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:46.8840000-07:00|10FF0002|Suchichi Suchi|0001B211|58591||||||100.37|98.77|0.00|-2.46| +39|2023-10-06T20:28:46.8840000-07:00|10FF0005|Wuwuchu Wuchu|59897|90055|10000|10000|||96.45|99.38|0.00|2.52| +37|2023-10-06T20:28:46.9290000-07:00|10FF0006|Wowobora Gogobora|0001B219|53970|80739|7255|10000|12||100.53|97.34|0.00|-0.37|2800|0|0|01|040000A7|0|41200000|| +21|2023-10-06T20:28:46.9290000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|19770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8997267|40478540|10000|10000|||100.00|80.10|0.00|0.00|54460|90128|10000|10000|||100.37|98.77|0.00|-2.46|0001B21A|0|1| +38|2023-10-06T20:28:46.9290000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53970|80739|7255|10000|12||100.53|97.34|0.00|-0.37|0|0|0||||||||||||||||||| +38|2023-10-06T20:28:46.9730000-07:00|10FF0002|Suchichi Suchi|005A5A16|58591|90128|10000|10000|11||100.15|98.74|0.00|-2.53|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:46.9730000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:28:46.9730000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +261|2023-10-06T20:28:46.5350000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:28:47.0190000-07:00|40022550|Zeromus|0001B213|8947201||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:47.0190000-07:00|10FF0008|Kokosaze Lulusaze|0001B213|51205|79111|9550|10000|0||80.72|82.96|0.00|2.42|1B00|0|0|01|02000B25|0|0|| +39|2023-10-06T20:28:47.0190000-07:00|10FF0008|Kokosaze Lulusaze|51996|79111|9750|10000|||80.72|82.96|0.00|2.42| +38|2023-10-06T20:28:47.0190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51996|79111|9750|10000|0||80.72|82.96|0.00|2.42|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:47.0630000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0003|Gegehi Gehi|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|0|10000|||117.85|105.94|0.00|-2.54|44568|80739|7150|10000|||117.34|94.06|0.00|-2.99|0001B21B|0|1| +38|2023-10-06T20:28:47.0630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51996|79111|9750|10000|0||80.72|82.96|0.00|2.42|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.0630000-07:00|74C|Everlasting Flight|0.00|40022C92|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|79111|| +38|2023-10-06T20:28:47.0630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44568|80739|4750|10000|0||117.34|94.06|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.0630000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:28:46.5350000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:28:46.5350000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:28:47.1070000-07:00|40022550|Zeromus|0001B215|8942836||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:47.1070000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8947201|40478540|10000|10000|||100.00|80.10|0.00|0.00|53970|80739|7255|10000|||100.27|98.26|-0.01|-0.37|0001B21C|0|1| +38|2023-10-06T20:28:47.1070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44568|80739|4750|10000|0||117.19|93.25|0.00|-2.77|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:47.1070000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:28:47.1070000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:28:47.1500000-07:00|40022550|Zeromus|0001B217|8914046||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:47.1500000-07:00|10FF0004|Buhojaqe Zijaqe|45375|80739|4950|10000|||117.19|93.25|0.00|-2.77| +38|2023-10-06T20:28:47.1960000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|59897|90055|10000|10000|11||98.21|99.33|0.00|2.41|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:47.1960000-07:00|74C|Everlasting Flight|0.00|40022C92|Demi-Phoenix|10FF0005|Wuwuchu Wuchu|00|90055|| +261|2023-10-06T20:28:46.7770000-07:00|Change|4002255A||||||||| +261|2023-10-06T20:28:46.7770000-07:00|Change|40022559||||||||| +21|2023-10-06T20:28:47.2400000-07:00|40022559|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.05|118.51|0.00|0.00|0001B21D|0|0| +21|2023-10-06T20:28:47.2400000-07:00|4002255A|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.91|118.39|0.00|0.00|0001B21E|0|0| +38|2023-10-06T20:28:47.2400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51996|79111|9750|10000|0||80.59|81.88|0.00|2.89|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.2400000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:28:47.2400000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:28:46.7770000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:28:47.3300000-07:00|40022550|Zeromus|0001B218|8910333||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:47.3300000-07:00|10FF0007|Kehabiqo Febiqo|0001B216|96184|128564|10000|10000|0||99.54|86.91|0.00|3.10|1500|0|0|01|05000000|0|0|| +38|2023-10-06T20:28:47.3300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96184|128564|10000|10000|0||99.54|86.91|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:47.3300000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:28:47.3300000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:47.3750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6600|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.3750000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:28:47.3750000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:28:47.4190000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45375|80739|4950|10000|0||116.83|91.59|0.00|-0.63|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:47.4190000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +37|2023-10-06T20:28:47.4640000-07:00|40022550|Zeromus|0001B21A|8903814||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:47.4640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45375|80739|4950|10000|0||116.83|91.59|0.00|-0.63|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:28:47.4640000-07:00|74C|Everlasting Flight|0.00|40022C92|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|80739|| +21|2023-10-06T20:28:47.5100000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|183A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8903814|40478540|10000|10000|||100.00|80.10|0.00|0.00|51996|79111|9750|10000|||80.49|81.08|0.00|-3.12|0001B21F|0|1| +38|2023-10-06T20:28:47.5100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|51996|79111|9750|10000|0||80.49|81.08|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.5100000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:47.1230000-07:00|Change|40022CBD||||| +261|2023-10-06T20:28:47.1230000-07:00|Change|40022CBD||||| +38|2023-10-06T20:28:47.5540000-07:00|40022CC9||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:28:47.5540000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|384D0000|200004|3C928000|0|0|0|0|0|0|0|0|0|0|0|0|8903814|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||99.92|98.16|0.00|3.14|0001B220|0|1| +38|2023-10-06T20:28:47.5540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.5540000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:28:47.5540000-07:00|40022CC9||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:28:47.5990000-07:00|10FF0006|Wowobora Gogobora|5EDF|Egeiro|10FF0003|Gegehi Gehi|814000E|940000|1B|5EDF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|0|10000|||117.85|105.94|0.00|-2.54|53970|80739|7255|10000|||100.27|98.28|0.00|-0.37|0001B221|0|1| +38|2023-10-06T20:28:47.5990000-07:00|10FF0002|Suchichi Suchi|005A5A16|58591|90128|10000|10000|11||99.63|98.74|0.00|-2.76|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.5990000-07:00|74C|Everlasting Flight|0.00|40022C92|Demi-Phoenix|10FF0002|Suchichi Suchi|00|90128|| +38|2023-10-06T20:28:47.5990000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53970|80739|4855|10000|12||100.27|98.28|0.00|-0.37|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:47.5990000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:28:47.6430000-07:00|40022550|Zeromus|0001B21C|8903769||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:47.6430000-07:00|10FF0002|Suchichi Suchi|HoT|0|96A|58591|90128|10000|10000|||99.63|98.74|0.00|-2.76|10FF0006|Wowobora Gogobora|0|53970|80739|4855|10000|||100.27|98.28|0.00|-0.37| +38|2023-10-06T20:28:47.6430000-07:00|10FF0002|Suchichi Suchi|005A5A16|61001|90128|10000|10000|11||99.63|98.74|0.00|-2.76|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:47.2230000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:28:47.7320000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53970|80739|4855|10000|12||100.27|98.28|0.00|-0.04|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:47.7320000-07:00|74C|Everlasting Flight|0.00|40022C92|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|80739|| +261|2023-10-06T20:28:47.3150000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:28:47.7760000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|7AAD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8903769|40478540|10000|10000|||100.00|80.10|0.00|0.00|96184|128564|10000|10000|||100.30|89.83|0.00|0.65|0001B222|0|1| +38|2023-10-06T20:28:47.7770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96184|128564|10000|10000|0||100.30|89.83|0.00|0.65|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.7770000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +38|2023-10-06T20:28:47.8200000-07:00|10FF0002|Suchichi Suchi|005A5A16|61001|90128|10000|10000|11||99.63|98.74|0.00|-2.76|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.8200000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:28:47.8650000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|97C|127791|127791|5600|10000|||99.92|98.16|0.00|3.14|10FF0001|Sesuga Sapisuga|0|127791|127791|5600|10000|||99.92|98.16|0.00|3.14| +24|2023-10-06T20:28:47.8650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9E1|45375|80739|4950|10000|||116.82|90.95|0.00|1.49|40022B84|Ruby Carbuncle|0|73956|77430|10000|10000|||97.80|99.60|0.00|3.03| +38|2023-10-06T20:28:47.8650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:47.8650000-07:00|74C|Everlasting Flight|0.00|40022C92|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|127791|| +38|2023-10-06T20:28:47.8650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47904|80739|4950|10000|0||116.82|90.95|0.00|1.49|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:28:47.4100000-07:00|Change|10FF0006||||||||||| +03|2023-10-06T20:28:47.5080000-07:00|40022CC9|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||82.19|80.55|0.00|-1.55| +261|2023-10-06T20:28:47.5080000-07:00|Add|40022CC9||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:28:47.9540000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|9B1|59897|90055|10000|10000|||100.27|99.44|0.00|2.81|40022B84|Ruby Carbuncle|0|73956|77430|10000|10000|||97.80|99.60|0.00|3.03| +38|2023-10-06T20:28:47.9540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62378|90055|10000|10000|11||100.27|99.44|0.00|2.81|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:28:47.5080000-07:00|Change|40022CC9||| +24|2023-10-06T20:28:47.9980000-07:00|10FF0006|Wowobora Gogobora|HoT|0|F2A|53970|80739|4855|10000|||100.27|98.28|0.00|0.72|10FF0006|Wowobora Gogobora|0|53970|80739|4855|10000|||100.27|98.28|0.00|0.72| +38|2023-10-06T20:28:47.9980000-07:00|10FF0006|Wowobora Gogobora|005A5A28|57852|80739|4855|10000|12||100.27|98.28|0.00|0.72|0|0|0||||||||||||||||||| +261|2023-10-06T20:28:47.5080000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:28:47.5080000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T20:28:48.0880000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8903769|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5600|10000|||99.92|98.16|0.00|3.14|0001B223|0|1| +31|2023-10-06T20:28:48.0880000-07:00|10FF0001||||| +37|2023-10-06T20:28:48.1750000-07:00|10FF0003|Gegehi Gehi|0001B221|0|73085|0|10000|0||117.85|105.94|0.00|-2.54|2300|0|0|01|01000094|08|42700000|| +26|2023-10-06T20:28:48.1750000-07:00|94|Raise|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|08|73085|80739| +37|2023-10-06T20:28:48.1750000-07:00|10FF0003|Gegehi Gehi|0001B21B|0|73085|0|10000|0||117.85|105.94|0.00|-2.54|2300|0|0|01|01000094|08|42700000|| +30|2023-10-06T20:28:48.1750000-07:00|94|Raise|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|08|73085|80739| +26|2023-10-06T20:28:48.1750000-07:00|94|Raise|60.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|08|73085|80739| +37|2023-10-06T20:28:48.2650000-07:00|40022550|Zeromus|0001B21F|8897567||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:48.2650000-07:00|10FF0007|Kehabiqo Febiqo|97469|128564|10000|10000|||100.52|91.21|0.00|-3.09| +37|2023-10-06T20:28:48.3090000-07:00|40022550|Zeromus|0001B220|8883154||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:48.3090000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8897567|40478540|10000|10000|||100.00|80.10|0.00|0.00|62378|90055|10000|10000|||100.21|99.33|0.00|2.94|0001B224|0|1| +37|2023-10-06T20:28:48.4430000-07:00|40022550|Zeromus|0001B222|8851749||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:48.4430000-07:00|10FF0002|Suchichi Suchi|61902|90128|10000|10000|||99.63|98.74|0.00|-2.76| +24|2023-10-06T20:28:48.5320000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|BA6|97469|128564|10000|10000|||100.88|92.30|0.00|2.28|10FF0007|Kehabiqo Febiqo|0|97469|128564|10000|10000|||100.88|92.30|0.00|2.28| +24|2023-10-06T20:28:48.5320000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|95D|51996|79111|9750|10000|||80.43|80.58|0.00|1.60|10FF0008|Kokosaze Lulusaze|0|51996|79111|9750|10000|||80.43|80.58|0.00|1.60| +38|2023-10-06T20:28:48.5320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100451|128564|10000|10000|0||100.88|92.30|0.00|2.28|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:48.5320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54393|79111|9750|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:48.1480000-07:00|Change|40022CC9||| +34|2023-10-06T20:28:48.5770000-07:00|40022CC9|Carbuncle|40022CC9|Carbuncle|01| +37|2023-10-06T20:28:48.6210000-07:00|40022550|Zeromus|0001B223|8849519||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:48.6660000-07:00|40022550|Zeromus|005A5A00|8849519|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T20:28:48.6660000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:28:48.7550000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35724003|2EB00000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|8849519|40478540|10000|10000|||100.00|80.10|0.00|0.00|61902|90128|10000|10000|||99.63|98.74|0.00|-2.76|0001B225|0|1| +261|2023-10-06T20:28:48.2400000-07:00|Change|40022559||||||||| +261|2023-10-06T20:28:48.2400000-07:00|Change|4002255A||||||||| +21|2023-10-06T20:28:48.7990000-07:00|40022559|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.96|113.01|0.00|0.00|0001B226|0|0| +21|2023-10-06T20:28:48.7990000-07:00|4002255A|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.47|112.91|0.00|0.00|0001B227|0|0| +37|2023-10-06T20:28:48.8430000-07:00|40022550|Zeromus|0001B224|8846047||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:48.8430000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|31E20000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|8849519|40478540|10000|10000|||100.00|80.10|0.00|0.00|54393|79111|9750|10000|||80.43|80.58|0.00|1.60|0001B228|0|1| +38|2023-10-06T20:28:48.8430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54393|79111|9450|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:48.8430000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:48.3360000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:28:48.4270000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:28:48.9310000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22310000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|100451|128564|10000|10000|||102.47|94.54|0.00|2.22|73956|77430|10000|10000|||97.80|99.60|0.00|2.98|0001B229|0|1| +39|2023-10-06T20:28:49.0200000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5800|10000|||99.92|98.16|0.00|3.14| +261|2023-10-06T20:28:48.5170000-07:00|Change|10FF0001||| +21|2023-10-06T20:28:49.1100000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|100451|128564|10000|10000|||102.12|95.21|-0.02|1.77|100451|128564|10000|10000|||102.12|95.21|-0.02|1.77|0001B22A|0|1| +21|2023-10-06T20:28:49.1100000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2B010000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|8846047|40478540|10000|10000|||100.00|80.10|0.00|0.00|62378|90055|10000|10000|||100.21|99.32|0.00|2.96|0001B22B|0|1| +38|2023-10-06T20:28:49.1100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100451|128564|10000|10000|0||102.12|95.21|-0.02|1.77|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:49.1100000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +24|2023-10-06T20:28:49.1990000-07:00|40022550|Zeromus|DoT|0|66D|8846047|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|62378|90055|10000|10000|||100.21|99.32|0.00|-3.13| +38|2023-10-06T20:28:49.1990000-07:00|40022550|Zeromus|005A5A00|8844402|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T20:28:49.2440000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|2.80| +21|2023-10-06T20:28:49.4220000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8844402|40478540|10000|10000|||100.00|80.10|0.00|0.00|54393|79111|9450|10000|||80.43|80.58|0.00|1.60|0001B22C|0|1| +261|2023-10-06T20:28:48.9790000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:28:49.4680000-07:00|40022550|Zeromus|0001B228|8831632||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:49.4680000-07:00|10FF0008|Kokosaze Lulusaze|0001B228|54393|79111|9450|10000|0||80.43|80.58|0.00|1.60|1B00|0|0|01|02000B25|0|0|| +21|2023-10-06T20:28:49.4680000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|26D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8844402|40478540|10000|10000|||100.00|80.10|0.00|0.00|54393|79111|9450|10000|||80.43|80.58|0.00|1.60|0001B22D|0|1| +38|2023-10-06T20:28:49.4680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54393|79111|9450|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:49.4680000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +39|2023-10-06T20:28:49.5120000-07:00|10FF0006|Wowobora Gogobora|58659|80739|5060|10000|||100.10|98.78|0.00|0.11| +261|2023-10-06T20:28:49.1000000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:28:49.5560000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42CF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|100451|128564|10000|10000|||99.93|96.12|-0.02|3.12|8831632|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B22E|0|1| +37|2023-10-06T20:28:49.6010000-07:00|40022550|Zeromus|0001B22B|8820623||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:49.6450000-07:00|10FF0007|Kehabiqo Febiqo|0001B22A|100451|128564|10000|10000|0||99.93|96.12|-0.02|3.12|1500|0|0|01|04000769|0|41F00000|| +38|2023-10-06T20:28:49.6450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100451|128564|10000|10000|0||99.93|96.12|-0.02|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:49.6450000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:28:49.7330000-07:00|10FF0007|Kehabiqo Febiqo|0001B229|109204||||||99.93|96.12|0.00|3.12| +21|2023-10-06T20:28:49.7330000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|16880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8820623|40478540|10000|10000|||100.00|80.10|0.00|0.00|61902|90128|10000|10000|||99.63|98.74|0.00|3.12|0001B22F|0|1| +37|2023-10-06T20:28:49.7780000-07:00|40022550|Zeromus|0001B225|8808671||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:49.7780000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8820623|40478540|10000|10000|||100.00|80.10|0.00|0.00|47904|80739|4950|10000|||117.32|84.57|0.00|-3.13|0001B230|0|1| +39|2023-10-06T20:28:49.8670000-07:00|10FF0005|Wuwuchu Wuchu|63278|90055|10000|10000|||100.21|99.41|0.00|3.05| +21|2023-10-06T20:28:49.9120000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8808671|40478540|10000|10000|||100.00|80.10|0.00|0.00|58659|80739|5060|10000|||100.74|100.70|0.00|1.02|0001B231|0|1| +37|2023-10-06T20:28:49.9570000-07:00|40022550|Zeromus|0001B22C|8808519||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:50.0450000-07:00|10FF0008|Kokosaze Lulusaze|55184|79111|9650|10000|||80.43|80.58|0.00|1.60| +20|2023-10-06T20:28:50.0450000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.88|100.51|0.00|2.35| +21|2023-10-06T20:28:50.0450000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|30090000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|8808519|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||99.92|98.16|0.00|3.14|0001B232|0|1| +38|2023-10-06T20:28:50.0450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:50.0450000-07:00|76E|Sword Oath|12.94|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +39|2023-10-06T20:28:50.1330000-07:00|10FF0004|Buhojaqe Zijaqe|48711|80739|5150|10000|||116.83|83.13|0.00|-2.83| +261|2023-10-06T20:28:49.6710000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T20:28:49.6710000-07:00|Change|10FF0008||| +21|2023-10-06T20:28:50.1780000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|D8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8808519|40478540|10000|10000|||100.00|80.10|0.00|0.00|109204|128564|10000|10000|||99.89|94.67|0.00|3.14|0001B233|0|1| +37|2023-10-06T20:28:50.2220000-07:00|40022550|Zeromus|0001B22D|8798576||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:50.2220000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|96600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8808519|40478540|10000|10000|||100.00|80.10|0.00|0.00|109204|128564|10000|10000|||99.89|94.67|0.00|3.14|0001B234|0|1| +38|2023-10-06T20:28:50.2220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109204|128564|10000|10000|0||99.89|94.67|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:50.2220000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:28:50.2660000-07:00|40022550|Zeromus|0001B22F|8792808||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:50.3110000-07:00|40022550|Zeromus|0001B230|8792661||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:50.3570000-07:00|10FF0007|Kehabiqo Febiqo|0001B22E|92101||||||99.88|94.12|0.00|3.13| +261|2023-10-06T20:28:49.9030000-07:00|Change|40022559||||||||| +261|2023-10-06T20:28:49.9030000-07:00|Change|4002255A||||||||| +21|2023-10-06T20:28:50.3570000-07:00|40022559|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.87|107.51|0.00|0.00|0001B235|0|0| +21|2023-10-06T20:28:50.3570000-07:00|4002255A|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.21|107.41|0.00|0.00|0001B236|0|0| +21|2023-10-06T20:28:50.3570000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8792808|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||99.92|98.16|0.00|3.14|0001B237|0|1| +21|2023-10-06T20:28:50.3570000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|8792808|40478540|10000|10000|||100.00|80.10|0.00|0.00|48711|80739|5150|10000|||116.70|82.67|0.00|-2.87|0001B238|0|1| +31|2023-10-06T20:28:50.3570000-07:00|10FF0001||||| +37|2023-10-06T20:28:50.4450000-07:00|40022550|Zeromus|0001B231|8792605||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:50.0130000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T20:28:50.6670000-07:00|10FF0002|Suchichi Suchi|HoT|0|991|61902|90128|10000|10000|||99.63|98.74|0.00|3.12|10FF0006|Wowobora Gogobora|0|58659|80739|5060|10000|||101.09|100.21|0.00|-3.09| +38|2023-10-06T20:28:50.6670000-07:00|10FF0002|Suchichi Suchi|005A5A16|64351|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:28:50.7110000-07:00|40022550|Zeromus|0001B233|8789134||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:50.8890000-07:00|40022550|Zeromus|0001B237|8787053||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:50.8900000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|98D|127791|127791|5800|10000|||99.92|98.16|0.00|3.14|10FF0001|Sesuga Sapisuga|0|127791|127791|5800|10000|||99.92|98.16|0.00|3.14| +24|2023-10-06T20:28:50.8900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|105B|48711|80739|4750|10000|||114.64|81.90|0.00|-1.70|40022B84|Ruby Carbuncle|0|73956|77430|10000|10000|||97.80|99.60|0.00|3.03| +38|2023-10-06T20:28:50.8900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:50.8900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52898|80739|4750|10000|0||114.64|81.90|0.00|-1.70|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:28:50.9790000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|96E|63278|90055|10000|10000|||100.21|99.44|0.00|3.04|40022B84|Ruby Carbuncle|0|73956|77430|10000|10000|||97.80|99.60|0.00|3.03| +21|2023-10-06T20:28:50.9790000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38230000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|8787053|40478540|10000|10000|||100.00|80.10|0.00|0.00|58659|80739|5060|10000|||101.09|100.21|0.00|-3.09|0001B239|0|1| +38|2023-10-06T20:28:50.9790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65692|90055|10000|10000|11||100.21|99.44|0.00|3.04|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:28:51.0230000-07:00|40022550|Zeromus|0001B238|8787053|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:28:51.0230000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +24|2023-10-06T20:28:51.0230000-07:00|10FF0006|Wowobora Gogobora|HoT|0|962|58659|80739|5060|10000|||101.09|100.21|0.00|-3.09|10FF0006|Wowobora Gogobora|0|58659|80739|5060|10000|||101.09|100.21|0.00|-3.09| +38|2023-10-06T20:28:51.0230000-07:00|10FF0006|Wowobora Gogobora|005A5A28|61061|80739|4660|10000|12||101.09|100.21|0.00|-3.09|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:51.0230000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:28:51.1560000-07:00|40022550|Zeromus|0001B234|8748557||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:50.7530000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:28:51.2460000-07:00|10FF0007|Kehabiqo Febiqo|93386|128564|10000|10000|||99.85|95.00|0.00|-0.21| +21|2023-10-06T20:28:51.2460000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F720003|44540000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|8748557|40478540|10000|10000|||100.00|80.10|0.00|0.00|64351|90128|10000|10000|||99.63|98.74|0.00|3.12|0001B23A|0|1| +38|2023-10-06T20:28:51.2460000-07:00|10FF0002|Suchichi Suchi|005A5A16|64351|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:51.2460000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:28:51.2900000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|43A70000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|8748557|40478540|10000|10000|||100.00|80.10|0.00|0.00|55184|79111|9650|10000|||80.43|80.58|0.00|1.60|0001B23B|0|1| +38|2023-10-06T20:28:51.2900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|55184|79111|9350|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:51.2900000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:50.8710000-07:00|Change|10FF0008||| +261|2023-10-06T20:28:50.8710000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:28:51.3340000-07:00|40022550|Zeromus|0001B232|8736260||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:51.3340000-07:00|10FF0001|Sesuga Sapisuga|0001B232|127791|127791|6200|10000|12||99.92|98.16|0.00|3.14|1300|0|0|0| +261|2023-10-06T20:28:50.8710000-07:00|Change|10FF0001||| +39|2023-10-06T20:28:51.4680000-07:00|10FF0002|Suchichi Suchi|65252|90128|10000|10000|||99.63|98.74|0.00|3.12| +21|2023-10-06T20:28:51.5130000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|F710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8736260|40478540|10000|10000|||100.00|80.10|0.00|0.00|65692|90055|10000|10000|||100.21|99.44|0.00|3.04|0001B23C|0|1| +04|2023-10-06T20:28:51.0960000-07:00|40022CBD|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|75851|0|10000|||81.05|118.51|0.00|2.68| +261|2023-10-06T20:28:51.0960000-07:00|Remove|40022CBD| +24|2023-10-06T20:28:51.5580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|BA3|93386|128564|10000|10000|||99.81|96.90|0.00|-0.09|10FF0007|Kehabiqo Febiqo|0|93386|128564|10000|10000|||99.81|96.90|0.00|-0.09| +24|2023-10-06T20:28:51.5580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|94E|55184|79111|9350|10000|||80.43|80.58|0.00|1.60|10FF0008|Kokosaze Lulusaze|0|55184|79111|9350|10000|||80.43|80.58|0.00|1.60| +38|2023-10-06T20:28:51.5580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96365|128564|10000|10000|0||99.81|96.90|0.00|-0.09|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:51.5580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|57566|79111|9350|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:51.6020000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|41280000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|8736260|40478540|10000|10000|||100.00|80.10|0.00|0.00|65692|90055|10000|10000|||100.21|99.44|0.00|3.04|0001B23D|0|1| +24|2023-10-06T20:28:51.6470000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15E4|96365|128564|10000|10000|||99.81|97.10|0.00|-0.06|10FF0006|Wowobora Gogobora|0|61061|80739|4660|10000|||101.09|100.21|0.00|-3.09| +37|2023-10-06T20:28:51.6470000-07:00|40022550|Zeromus|0001B239|8721889||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:51.6470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101969|128564|10000|10000|0||99.81|97.10|0.00|-0.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:51.6470000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:28:51.3820000-07:00|Change|40022559||||||||| +261|2023-10-06T20:28:51.3820000-07:00|Change|4002255A||||||||| +37|2023-10-06T20:28:51.9140000-07:00|40022550|Zeromus|0001B23B|8704570||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:51.9140000-07:00|10FF0008|Kokosaze Lulusaze|0001B23B|57566|79111|9350|10000|0||80.43|80.58|0.00|1.60|1B00|0|0|01|02000B25|0|0|| +21|2023-10-06T20:28:51.9140000-07:00|40022559|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.78|102.01|0.00|0.00|0001B23E|0|0| +21|2023-10-06T20:28:51.9140000-07:00|4002255A|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||117.82|101.93|0.00|0.00|0001B23F|0|0| +21|2023-10-06T20:28:51.9140000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|18370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8721889|40478540|10000|10000|||100.00|80.10|0.00|0.00|57566|79111|9350|10000|||80.43|80.58|0.00|1.60|0001B240|0|1| +38|2023-10-06T20:28:51.9140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|57566|79111|9350|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:51.9140000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:28:51.9590000-07:00|40022550|Zeromus|0001B23A|8687078||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:51.9590000-07:00|10FF0002|Suchichi Suchi|0001B23A|65252|90128|10000|10000|11||99.63|98.74|0.00|3.12|1600|0|0|01|0322|0|41F00000|| +38|2023-10-06T20:28:51.9590000-07:00|10FF0002|Suchichi Suchi|005A5A16|65252|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:28:51.5790000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:28:52.0040000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6400|10000|||99.92|98.16|0.00|3.14| +37|2023-10-06T20:28:52.0480000-07:00|40022550|Zeromus|0001B23C|8683125||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:52.1380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|57566|79111|9350|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:52.1380000-07:00|32|Sprint|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|79111|79111| +37|2023-10-06T20:28:52.1830000-07:00|40022550|Zeromus|0001B23D|8666445||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:52.1830000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14770000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|101969|128564|10000|10000|||99.97|96.85|0.00|-2.56|73956|77430|10000|10000|||97.80|99.60|0.00|3.03|0001B241|0|1| +24|2023-10-06T20:28:52.1830000-07:00|40022550|Zeromus|DoT|0|1A1C|8687078|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|65692|90055|10000|10000|||100.21|99.44|0.00|2.95| +38|2023-10-06T20:28:52.1830000-07:00|40022550|Zeromus|005A5A00|8659761|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T20:28:52.1830000-07:00|10FF0006|Wowobora Gogobora|005A5A28|61061|80739|4660|10000|12||101.06|99.47|0.00|-3.08|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:52.1830000-07:00|13B|Whispering Dawn|0.00|40022B84|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +39|2023-10-06T20:28:52.2260000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|2.93| +38|2023-10-06T20:28:52.3160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101969|128564|10000|10000|0||99.99|96.72|-0.01|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:52.3160000-07:00|13B|Whispering Dawn|0.00|40022B84|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +26|2023-10-06T20:28:52.3610000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +22|2023-10-06T20:28:52.3610000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F200F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|52898|80739|4750|10000|||106.59|85.42|0.00|-0.92|52898|80739|4750|10000|||106.59|85.42|0.00|-0.92|0001B242|0|1| +261|2023-10-06T20:28:51.8970000-07:00|Change|10FF0001||| +21|2023-10-06T20:28:52.4500000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|754003|80310000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|8659761|40478540|10000|10000|||100.00|80.10|0.00|0.00|61061|80739|4660|10000|||100.99|98.75|0.00|-3.06|0001B243|0|1| +38|2023-10-06T20:28:52.4500000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65692|90055|10000|10000|11||100.20|99.48|0.00|3.00|0|0|0|||||||||||||||| +30|2023-10-06T20:28:52.4500000-07:00|13B|Whispering Dawn|0.00|40022B84|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +261|2023-10-06T20:28:52.0100000-07:00|Change|10FF0006||||||||| +39|2023-10-06T20:28:52.4930000-07:00|10FF0006|Wowobora Gogobora|61868|80739|4465|10000|||100.95|98.54|0.00|-3.09| +21|2023-10-06T20:28:52.5390000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AFB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8659761|40478540|10000|10000|||100.00|80.10|0.00|0.00|65252|90128|10000|10000|||99.63|98.74|0.00|3.12|0001B244|0|1| +21|2023-10-06T20:28:52.5390000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|332A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|8659761|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6400|10000|||99.92|98.16|0.00|3.14|0001B245|0|1| +38|2023-10-06T20:28:52.5390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:52.5390000-07:00|76E|Sword Oath|10.44|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +21|2023-10-06T20:28:52.5840000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3F210000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|101969|128564|10000|10000|||99.99|96.70|0.00|3.12|8659761|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B246|0|1| +21|2023-10-06T20:28:52.5840000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8659761|40478540|10000|10000|||100.00|80.10|0.00|0.00|57566|79111|9350|10000|||80.43|80.58|0.00|1.60|0001B247|0|1| +38|2023-10-06T20:28:52.5840000-07:00|10FF0002|Suchichi Suchi|005A5A16|65252|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:52.5840000-07:00|13B|Whispering Dawn|0.00|40022B84|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +21|2023-10-06T20:28:52.6280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8659761|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6400|10000|||99.92|98.16|0.00|3.14|0001B248|0|1| +31|2023-10-06T20:28:52.6280000-07:00|10FF0001||||| +37|2023-10-06T20:28:52.6720000-07:00|40022550|Zeromus|0001B240|8653562||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:52.6720000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32716003|450E0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|8659761|40478540|10000|10000|||100.00|80.10|0.00|0.00|101969|128564|10000|10000|||99.99|96.70|0.00|3.12|0001B249|0|1| +38|2023-10-06T20:28:52.7170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|57566|79111|9350|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:52.7170000-07:00|13B|Whispering Dawn|0.00|40022B84|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +21|2023-10-06T20:28:52.8060000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|714003|45690000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|8653562|40478540|10000|10000|||100.00|80.10|0.00|0.00|65692|90055|10000|10000|||100.18|99.56|0.00|3.10|0001B24A|0|1| +38|2023-10-06T20:28:52.8060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65692|90055|10000|10000|11||100.18|99.56|0.00|3.10|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:52.8060000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +38|2023-10-06T20:28:52.8510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52898|80739|4750|10000|0||104.23|87.74|0.00|-0.75|0|0|0||||||||||||| +30|2023-10-06T20:28:52.8510000-07:00|13B|Whispering Dawn|0.00|40022B84|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +39|2023-10-06T20:28:52.8960000-07:00|10FF0005|Wuwuchu Wuchu|66592|90055|10000|10000|||100.18|99.56|0.00|3.10| +21|2023-10-06T20:28:52.8960000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|720003|32930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8653562|40478540|10000|10000|||100.00|80.10|0.00|0.00|65252|90128|10000|10000|||99.63|98.74|0.00|3.12|0001B24B|0|1| +21|2023-10-06T20:28:52.9400000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8653562|40478540|10000|10000|||100.00|80.10|0.00|0.00|52898|80739|4750|10000|||103.78|88.33|0.00|-0.72|0001B24C|0|1| +261|2023-10-06T20:28:52.5010000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:28:52.9850000-07:00|10FF0007|Kehabiqo Febiqo|0001B241|107208||||||99.99|96.70|0.00|-3.14| +24|2023-10-06T20:28:52.9850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D23|101969|128564|10000|10000|||99.99|96.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|52898|80739|4750|10000|||103.78|88.33|0.00|-0.72| +24|2023-10-06T20:28:52.9850000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D0D|127791|127791|6400|10000|||99.92|98.16|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|52898|80739|4750|10000|||103.78|88.33|0.00|-0.72| +24|2023-10-06T20:28:52.9850000-07:00|10FF0002|Suchichi Suchi|HoT|798|D53|65252|90128|10000|10000|||99.63|98.74|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|52898|80739|4750|10000|||103.78|88.33|0.00|-0.72| +24|2023-10-06T20:28:52.9850000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CF7|61868|80739|4465|10000|||100.90|98.26|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|52898|80739|4750|10000|||103.78|88.33|0.00|-0.72| +24|2023-10-06T20:28:52.9850000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|159C|66592|90055|10000|10000|||100.18|99.57|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|52898|80739|4750|10000|||103.78|88.33|0.00|-0.72| +24|2023-10-06T20:28:52.9850000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D79|52898|80739|4750|10000|||103.78|88.33|0.00|-0.72|10FF0004|Buhojaqe Zijaqe|0|52898|80739|4750|10000|||103.78|88.33|0.00|-0.72| +37|2023-10-06T20:28:52.9850000-07:00|10FF0004|Buhojaqe Zijaqe|0001B242|56347|80739|4750|10000|0||103.78|88.33|0.00|-0.72|1C00|0|0|02|04000798|0|41700000|||||| +26|2023-10-06T20:28:52.9850000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:28:52.9850000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:28:52.9850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110571|128564|10000|10000|0||99.99|96.70|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:52.9850000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:52.9850000-07:00|10FF0002|Suchichi Suchi|005A5A16|68663|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:52.9850000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:28:52.9850000-07:00|10FF0006|Wowobora Gogobora|005A5A28|65187|80739|4465|10000|12||100.90|98.26|0.00|-3.09|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:52.9850000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:52.9850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:52.9850000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:28:52.9850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56347|80739|4750|10000|0||103.78|88.33|0.00|-0.72|0|0|0||||||||||||||||||| +38|2023-10-06T20:28:52.9850000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|72124|90055|10000|10000|11||100.18|99.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:52.9850000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:28:53.0290000-07:00|10FF0008|Kokosaze Lulusaze|58357|79111|9550|10000|||80.43|80.58|0.00|1.60| +261|2023-10-06T20:28:52.5010000-07:00|Change|10FF0008||| +37|2023-10-06T20:28:53.0730000-07:00|40022550|Zeromus|0001B244|8650751||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:53.1180000-07:00|40022550|Zeromus|0001B247|8650525||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:53.1180000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15D4|110571|128564|10000|10000|||99.99|96.70|0.00|-3.14|10FF0006|Wowobora Gogobora|0|65187|80739|4465|10000|||100.88|98.21|-0.02|-3.08| +37|2023-10-06T20:28:53.1180000-07:00|40022550|Zeromus|0001B243|8617708||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:52.6110000-07:00|Add|40022CCF||||||||||||||||||||||||||||| +38|2023-10-06T20:28:53.1190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116159|128564|10000|10000|0||99.99|96.77|0.00|-2.63|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:53.1190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:53.1190000-07:00|13B|Whispering Dawn|0.00|40022B84|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:28:53.1620000-07:00|40022550|Zeromus|0001B248|8615670||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:53.1620000-07:00|10FF0004|Buhojaqe Zijaqe|57154|80739|4950|10000|||102.99|89.39|0.00|-0.66| +37|2023-10-06T20:28:53.2960000-07:00|40022550|Zeromus|0001B249|8597992||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:53.3410000-07:00|40022550|Zeromus|0001B24A|8580223||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:53.3410000-07:00|10FF0005|Wuwuchu Wuchu|0001B24A|72124|90055|10000|10000|11||100.18|99.57|0.00|-3.13|2700|0|0|01|05000A1B|01|41F00000|| +38|2023-10-06T20:28:53.3410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|72124|90055|10000|10000|11||100.18|99.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:28:53.3840000-07:00|10FF0007|Kehabiqo Febiqo|0001B246|99998||||||99.99|97.00|0.00|-1.30| +37|2023-10-06T20:28:53.4750000-07:00|40022550|Zeromus|0001B24C|8580068||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:53.0640000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:28:53.5180000-07:00|40022CC9|Carbuncle|75851|75851|10000|10000|||82.19|80.55|0.00|-1.55| +21|2023-10-06T20:28:53.5630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AE40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8580068|40478540|10000|10000|||100.00|80.10|0.00|0.00|99998|128564|10000|10000|||99.96|97.19|0.00|-0.76|0001B24D|0|1| +37|2023-10-06T20:28:53.6520000-07:00|40022550|Zeromus|0001B24B|8567121||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:53.6960000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8580068|40478540|10000|10000|||100.00|80.10|0.00|0.00|65187|80739|4465|10000|||100.51|95.39|0.00|-3.01|0001B24E|0|1| +21|2023-10-06T20:28:53.7410000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D726003|527A0000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|8567121|40478540|10000|10000|||100.00|80.10|0.00|0.00|68663|90128|10000|10000|||99.63|98.74|0.00|3.12|0001B24F|0|1| +21|2023-10-06T20:28:53.7410000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|8567121|40478540|10000|10000|||100.00|80.10|0.00|0.00|58357|79111|9550|10000|||80.43|80.58|0.00|1.60|0001B250|0|1| +38|2023-10-06T20:28:53.7410000-07:00|10FF0002|Suchichi Suchi|005A5A16|68663|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:53.7410000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:28:53.7410000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:28:53.7410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|58357|79111|9550|10000|0||80.43|80.58|0.00|1.60|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:53.7410000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:28:53.2670000-07:00|Change|40022CC9||| +261|2023-10-06T20:28:53.2670000-07:00|Change|40022CC9||| +261|2023-10-06T20:28:53.3670000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T20:28:53.7860000-07:00|40022CD0||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:28:53.7860000-07:00|40022CD0||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:28:53.8300000-07:00|40022550|Zeromus|0001B245|8554023||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:53.8300000-07:00|10FF0001|Sesuga Sapisuga|0001B245|127791|127791|6800|10000|12||99.92|98.16|0.00|3.14|1300|0|0|0| +261|2023-10-06T20:28:53.3670000-07:00|Change|10FF0001||| +24|2023-10-06T20:28:53.8750000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D41|99998|128564|10000|10000|||99.96|97.42|0.00|-0.12|10FF0004|Buhojaqe Zijaqe|0|57154|80739|4950|10000|||99.93|92.65|0.00|-0.69| +24|2023-10-06T20:28:53.8750000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D37|127791|127791|6800|10000|||99.92|98.16|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|57154|80739|4950|10000|||99.93|92.65|0.00|-0.69| +24|2023-10-06T20:28:53.8750000-07:00|10FF0002|Suchichi Suchi|HoT|798|CD3|68663|90128|10000|10000|||99.63|98.74|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|57154|80739|4950|10000|||99.93|92.65|0.00|-0.69| +24|2023-10-06T20:28:53.8750000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1529|65187|80739|4465|10000|||100.50|95.20|0.00|-3.02|10FF0004|Buhojaqe Zijaqe|0|57154|80739|4950|10000|||99.93|92.65|0.00|-0.69| +24|2023-10-06T20:28:53.8750000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D69|72124|90055|10000|10000|||100.18|99.57|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|57154|80739|4950|10000|||99.93|92.65|0.00|-0.69| +24|2023-10-06T20:28:53.8750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D4D|57154|80739|4950|10000|||99.93|92.65|0.00|-0.69|10FF0004|Buhojaqe Zijaqe|0|57154|80739|4950|10000|||99.93|92.65|0.00|-0.69| +38|2023-10-06T20:28:53.8750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103391|128564|10000|10000|0||99.96|97.42|0.00|-0.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:53.8750000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:53.8750000-07:00|10FF0002|Suchichi Suchi|005A5A16|71946|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:53.8750000-07:00|10FF0006|Wowobora Gogobora|005A5A28|70604|80739|4465|10000|12||100.50|95.20|0.00|-3.02|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:53.8750000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:53.8750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6800|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:53.8750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|60559|80739|4950|10000|0||99.93|92.65|0.00|-0.69|0|0|0||||||||||||||||||| +38|2023-10-06T20:28:53.8750000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|75557|90055|10000|10000|11||100.18|99.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:28:53.4570000-07:00|Add|40022CD0||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:28:53.4570000-07:00|40022CD0|Emerald Garuda|00|5A|10FF0008|00||10263|13506|72376|75851|10000|10000|||80.44|80.59|0.00|1.60| +38|2023-10-06T20:28:53.9630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6800|10000|12||99.92|98.16|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:28:53.9630000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:28:53.5540000-07:00|Change|40022CD0||||| +21|2023-10-06T20:28:54.0080000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0004|Buhojaqe Zijaqe|6400F60E|7420000|F60E|A770000|A50E|A780000|90B8000F|7418000|0|0|0|0|0|0|0|0|60559|80739|4950|10000|||99.62|93.88|0.00|-0.51|103391|128564|10000|10000|||99.96|97.46|0.00|-0.02|0001B251|0|1| +37|2023-10-06T20:28:54.0980000-07:00|40022550|Zeromus|0001B24D|8551235||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:54.0980000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B710003|45C20000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|8554023|40478540|10000|10000|||100.00|80.10|0.00|0.00|75557|90055|10000|10000|||100.18|99.57|0.00|-3.13|0001B252|0|1| +38|2023-10-06T20:28:54.0980000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|75557|90055|10000|10000|11||100.18|99.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:54.0980000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:28:54.0980000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:28:54.0980000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:28:54.2300000-07:00|40022550|Zeromus|0001B24E|8551197||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:54.2300000-07:00|10FF0007|Kehabiqo Febiqo|104676|128564|10000|10000|||99.96|97.46|0.00|-1.22| +37|2023-10-06T20:28:54.3640000-07:00|40022550|Zeromus|0001B24F|8530083||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:54.3640000-07:00|10FF0002|Suchichi Suchi|0001B24F|71946|90128|10000|10000|11||99.63|98.74|0.00|3.12|1600|0|0|01|03000323|0|41F00000|| +38|2023-10-06T20:28:54.3640000-07:00|10FF0002|Suchichi Suchi|005A5A16|71946|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T20:28:54.4540000-07:00|10FF0002|Suchichi Suchi|72847|90128|10000|10000|||99.63|98.74|0.00|3.12| +38|2023-10-06T20:28:54.5430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|58357|79111|9550|10000|0||81.62|81.86|0.00|0.80|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:28:54.5880000-07:00|40022550|Zeromus|0001B252|8512225||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:54.5880000-07:00|10FF0005|Wuwuchu Wuchu|0001B252|75557|90055|10000|10000|11||100.18|99.58|0.00|-3.13|2700|0|0|01|05000A1C|0|42700000|| +38|2023-10-06T20:28:54.5880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|75557|90055|10000|10000|11||100.18|99.58|0.00|-3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:28:54.6310000-07:00|10FF0004|Buhojaqe Zijaqe|0001B251|60559|80739|4950|10000|11||99.30|96.23|0.00|-0.20|1C00|0|0|03|06000742|64|41000000|||||||||| +26|2023-10-06T20:28:54.6310000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|64|80739|128564| +26|2023-10-06T20:28:54.6310000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +26|2023-10-06T20:28:54.6310000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +37|2023-10-06T20:28:54.6310000-07:00|10FF0007|Kehabiqo Febiqo|0001B251|104676|128564|10000|10000|0||99.96|97.46|0.00|-2.01|1500|0|0|01|05000741|0190|41000000|| +26|2023-10-06T20:28:54.6310000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +38|2023-10-06T20:28:54.6310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104676|128564|10000|10000|0||99.96|97.46|0.00|-2.01|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:54.6310000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:28:54.6310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|60559|80739|4950|10000|11||99.30|96.23|0.00|-0.20|0|0|0|||||||||||||||||||||||||||| +20|2023-10-06T20:28:54.6750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|99.39|96.81|-0.02|-0.12| +21|2023-10-06T20:28:54.7200000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8512225|40478540|10000|10000|||100.00|80.10|0.00|0.00|75557|90055|10000|10000|||100.18|99.66|0.00|-3.13|0001B253|0|1| +37|2023-10-06T20:28:54.7640000-07:00|10FF0008|Kokosaze Lulusaze|0001B250|58357|79111|9550|10000|0||82.70|83.03|0.00|0.77|1B00|0|0|01|02000AA5|0|0|| +38|2023-10-06T20:28:54.7640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|58357|79111|9550|10000|0||82.70|83.03|0.00|0.77|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:28:54.3880000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:28:54.3880000-07:00|Change|40022CD0||| +38|2023-10-06T20:28:54.8980000-07:00|10FF0006|Wowobora Gogobora|005A5A28|70604|80739|4465|10000|12||100.34|96.49|0.00|-0.29|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:54.8980000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:28:54.8980000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70604|80739|4465|10000|||100.34|96.49|0.00|-0.29|70604|80739|4465|10000|||100.34|96.49|0.00|-0.29|0001B254|0|1| +21|2023-10-06T20:28:54.8980000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B0D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8512225|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6800|10000|||99.92|98.16|0.00|3.14|0001B255|0|1| +31|2023-10-06T20:28:54.8980000-07:00|10FF0001||||| +261|2023-10-06T20:28:54.4890000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:28:55.0330000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7000|10000|||99.92|98.16|0.00|3.14| +21|2023-10-06T20:28:55.0330000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|29320000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|8512225|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6800|10000|||99.92|98.16|0.00|3.14|0001B256|0|1| +38|2023-10-06T20:28:55.0330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|12||99.92|98.16|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T20:28:55.0330000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:28:54.6030000-07:00|Change|10FF0001||| +21|2023-10-06T20:28:55.1200000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|2EC70000|143E|340000|204|24D28000|4|17FE8000|11B|2A8000|0|0|0|0|0|0|8512225|40478540|10000|10000|||100.00|80.10|0.00|0.00|104676|128564|10000|10000|||99.96|97.46|0.00|-2.00|0001B257|0|1| +39|2023-10-06T20:28:55.2090000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|3.03| +24|2023-10-06T20:28:55.2090000-07:00|40022550|Zeromus|DoT|0|1235|8512225|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|75557|90055|10000|10000|||100.20|99.93|0.00|3.11| +38|2023-10-06T20:28:55.2090000-07:00|40022550|Zeromus|005A5A00|8507564|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:28:55.2540000-07:00|40022550|Zeromus|0001B253|8503300||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:55.3430000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8503300|40478540|10000|10000|||100.00|80.10|0.00|0.00|72847|90128|10000|10000|||99.63|98.74|0.00|3.12|0001B258|0|1| +37|2023-10-06T20:28:55.4320000-07:00|40022550|Zeromus|0001B255|8500471||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:55.4760000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|15770000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|73956|77430|10000|10000|||97.80|99.60|0.00|3.03|0001B259|0|1| +39|2023-10-06T20:28:55.5210000-07:00|10FF0006|Wowobora Gogobora|71411|80739|4670|10000|||100.27|97.26|0.00|1.22| +261|2023-10-06T20:28:55.0610000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:28:55.6110000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|37950000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|104676|128564|10000|10000|||99.96|97.46|0.00|3.14|8500471|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B25A|0|1| +21|2023-10-06T20:28:55.6990000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|712003|16D10000|13000E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|8500471|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7000|10000|||99.92|98.16|0.00|3.14|0001B25B|0|1| +21|2023-10-06T20:28:55.7440000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|1270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8500471|40478540|10000|10000|||100.00|80.10|0.00|0.00|58357|79111|9550|10000|||87.02|87.47|0.00|0.78|0001B25C|0|1| +261|2023-10-06T20:28:55.3660000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:28:55.3660000-07:00|Change|40022CC9||| +21|2023-10-06T20:28:55.8340000-07:00|40022CD0|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|350003|62580000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|8500471|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||80.44|80.59|0.00|1.60|0001B25D|0|1| +37|2023-10-06T20:28:55.8780000-07:00|40022550|Zeromus|0001B258|8497481||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:55.8780000-07:00|10FF0005|Wuwuchu Wuchu|76457|90055|10000|10000|||100.21|99.99|0.00|3.09| +21|2023-10-06T20:28:55.9240000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|8497481|40478540|10000|10000|||100.00|80.10|0.00|0.00|71411|80739|4670|10000|||100.25|97.09|0.00|2.40|0001B25E|0|1| +38|2023-10-06T20:28:55.9240000-07:00|10FF0006|Wowobora Gogobora|005A5A28|71411|80739|4270|10000|12||100.25|97.09|0.00|2.40|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:55.9240000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:28:55.9240000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:28:55.5570000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:28:56.0580000-07:00|10FF0008|Kokosaze Lulusaze|59148|79111|9750|10000|||88.87|89.28|0.00|0.80| +22|2023-10-06T20:28:56.0580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19010000|10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|0001B25F|0|7| +22|2023-10-06T20:28:56.0580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|19240000|390E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|104676|128564|10000|10000|||99.92|97.46|0.00|3.13|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|0001B25F|1|7| +261|2023-10-06T20:28:55.6490000-07:00|Change|10FF0003||||||||| +22|2023-10-06T20:28:56.0580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|191F0000|310E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|7000|10000|||99.92|98.16|0.00|3.14|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|0001B25F|2|7| +22|2023-10-06T20:28:56.0580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|19A10000|10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|72847|90128|10000|10000|||99.63|98.74|0.00|3.12|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|0001B25F|3|7| +22|2023-10-06T20:28:56.0580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19370000|580E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|71411|80739|4270|10000|||100.29|97.28|0.00|-3.13|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|0001B25F|4|7| +22|2023-10-06T20:28:56.0580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|200004|28020000|30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|76457|90055|10000|10000|||100.21|99.99|0.00|3.09|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|0001B25F|5|7| +22|2023-10-06T20:28:56.0580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|298A0000|760E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|58357|79111|9550|10000|||88.87|89.28|0.00|0.80|60559|80739|4950|10000|||99.69|97.80|0.00|0.34|0001B25F|6|7| +38|2023-10-06T20:28:56.0580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104676|128564|10000|10000|8||99.92|97.46|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:56.0580000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:28:56.0580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:56.0580000-07:00|10FF0002|Suchichi Suchi|005A5A16|72847|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:56.0580000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:28:56.0580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:28:56.0580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|59148|79111|9750|10000|21||88.87|89.28|0.00|0.80|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:56.0580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:28:56.0580000-07:00|10FF0006|Wowobora Gogobora|005A5A28|71411|80739|4270|10000|12||100.29|97.28|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:28:56.0580000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:28:56.0580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:56.0580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|8||99.92|98.16|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T20:28:56.0580000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:28:56.0580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:28:56.0580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|60559|80739|3950|10000|24||99.69|97.80|0.00|0.34|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:56.0580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:28:56.0580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|76457|90055|10000|10000|18||100.21|99.99|0.00|3.09|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:28:56.0580000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:28:56.0580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:28:56.1450000-07:00|10FF0004|Buhojaqe Zijaqe|61366|80739|4150|10000|||99.69|97.80|0.00|0.34| +261|2023-10-06T20:28:55.6490000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:28:56.2340000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A724003|425F0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|8497481|40478540|10000|10000|||100.00|80.10|0.00|0.00|72847|90128|10000|10000|||99.63|98.74|0.00|3.12|0001B260|0|1| +21|2023-10-06T20:28:56.2340000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|352003|38600000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|8497481|40478540|10000|10000|||100.00|80.10|0.00|0.00|59148|79111|9750|10000|||89.34|89.73|0.00|0.80|0001B261|0|1| +38|2023-10-06T20:28:56.2340000-07:00|10FF0002|Suchichi Suchi|005A5A16|72847|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:56.2340000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:28:56.2340000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:28:56.2780000-07:00|40022550|Zeromus|0001B25C|8497186||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:56.2780000-07:00|10FF0004|Buhojaqe Zijaqe|0001B259|66861||||||99.69|97.80|0.00|0.34| +37|2023-10-06T20:28:56.3230000-07:00|40022550|Zeromus|0001B256|8486640||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:56.3230000-07:00|10FF0001|Sesuga Sapisuga|0001B256|127791|127791|7400|10000|8||99.92|98.16|0.00|3.14|1300|0|0|0| +261|2023-10-06T20:28:55.8820000-07:00|Change|10FF0001||| +37|2023-10-06T20:28:56.4110000-07:00|10FF0007|Kehabiqo Febiqo|0001B25A|90447||||||99.80|97.46|0.00|3.12| +21|2023-10-06T20:28:56.4110000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|710003|2D400000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|8497186|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7000|10000|||99.92|98.16|0.00|3.14|0001B262|0|1| +21|2023-10-06T20:28:56.5000000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8486640|40478540|10000|10000|||100.00|80.10|0.00|0.00|71411|80739|4270|10000|||100.30|98.25|0.00|1.49|0001B263|0|1| +21|2023-10-06T20:28:56.5890000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|42CA0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|8486640|40478540|10000|10000|||100.00|80.10|0.00|0.00|76457|90055|10000|10000|||100.21|99.99|0.00|3.09|0001B264|0|1| +24|2023-10-06T20:28:56.6340000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|742|24D2|66861|80739|4150|10000|||99.69|97.80|0.00|0.22|10FF0007|Kehabiqo Febiqo|0|90447|128564|10000|10000|||99.72|98.00|0.00|-1.90| +37|2023-10-06T20:28:56.6340000-07:00|40022550|Zeromus|0001B257|8474665||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:56.6340000-07:00|10FF0007|Kehabiqo Febiqo|0001B257|106015||||||99.72|98.00|0.00|-1.90| +38|2023-10-06T20:28:56.6340000-07:00|10FF0002|Suchichi Suchi|005A5A16|72847|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:28:56.6340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|76287|80739|4150|10000|24||99.69|97.80|0.00|0.22|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:28:56.6790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|14F9|106015|128564|10000|10000|||99.70|98.19|0.00|-1.40|10FF0006|Wowobora Gogobora|0|71411|80739|4270|10000|||100.30|98.74|0.00|0.64| +37|2023-10-06T20:28:56.6790000-07:00|40022550|Zeromus|0001B25E|8474665|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A38|0|41F00000|| +26|2023-10-06T20:28:56.6790000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:28:56.6790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111384|128564|10000|10000|8||99.70|98.19|0.00|-1.40|0|0|0||||||||||||||||||||||||||||||||||||| +00|2023-10-06T20:28:56.0000000-07:00|0044|Zeromus|Her will...my will...shall not be denied.| +37|2023-10-06T20:28:56.7240000-07:00|40022550|Zeromus|0001B25B|8468824|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T20:28:56.7240000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:28:56.7690000-07:00|40022550|Zeromus|0001B262|8457240||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:56.7690000-07:00|10FF0001|Sesuga Sapisuga|0001B262|127791|127791|7900|10000|8||99.92|98.16|0.00|3.14|1300|0|0|0| +20|2023-10-06T20:28:56.7690000-07:00|40022550|Zeromus|8C0D|Rend the Rift|40022550|Zeromus|5.700|100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:56.3080000-07:00|Change|40022550||||||||| +261|2023-10-06T20:28:56.3080000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:28:56.8570000-07:00|40022550|Zeromus|0001B261|8442808||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:28:56.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D37|127791|127791|7900|10000|||99.92|98.16|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|76287|80739|4150|10000|||99.71|98.00|-0.02|0.07| +24|2023-10-06T20:28:56.8570000-07:00|10FF0002|Suchichi Suchi|HoT|798|D4F|72847|90128|10000|10000|||99.63|98.74|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|76287|80739|4150|10000|||99.71|98.00|-0.02|0.07| +24|2023-10-06T20:28:56.8570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D37|111384|128564|10000|10000|||99.73|98.37|0.00|-1.11|10FF0004|Buhojaqe Zijaqe|0|76287|80739|4150|10000|||99.71|98.00|-0.02|0.07| +24|2023-10-06T20:28:56.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|CCA|76287|80739|4150|10000|||99.71|98.00|-0.02|0.07|10FF0004|Buhojaqe Zijaqe|0|76287|80739|4150|10000|||99.71|98.00|-0.02|0.07| +24|2023-10-06T20:28:56.8570000-07:00|10FF0006|Wowobora Gogobora|HoT|798|14F5|71411|80739|4270|10000|||100.30|98.83|0.00|0.96|10FF0004|Buhojaqe Zijaqe|0|76287|80739|4150|10000|||99.71|98.00|-0.02|0.07| +24|2023-10-06T20:28:56.8570000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D6B|76457|90055|10000|10000|||100.21|99.99|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|76287|80739|4150|10000|||99.71|98.00|-0.02|0.07| +24|2023-10-06T20:28:56.8570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|150D|59148|79111|9450|10000|||90.96|91.13|0.00|1.09|10FF0004|Buhojaqe Zijaqe|0|76287|80739|4150|10000|||99.71|98.00|-0.02|0.07| +38|2023-10-06T20:28:56.8570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114767|128564|10000|10000|8||99.73|98.37|0.00|-1.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:56.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:56.8570000-07:00|10FF0002|Suchichi Suchi|005A5A16|76254|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:56.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:28:56.8570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|64537|79111|9450|10000|21||90.96|91.13|0.00|1.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:56.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:28:56.8570000-07:00|10FF0006|Wowobora Gogobora|005A5A28|76776|80739|4270|10000|12||100.30|98.83|0.00|0.96|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:56.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:56.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7900|10000|8||99.92|98.16|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T20:28:56.8570000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:28:56.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79561|80739|4150|10000|24||99.71|98.00|-0.02|0.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:56.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:28:56.8570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79892|90055|10000|10000|18||100.21|99.99|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:56.8570000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:28:56.9020000-07:00|40022550|Zeromus|0001B260|8425817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:56.9020000-07:00|10FF0002|Suchichi Suchi|0001B260|76254|90128|10000|10000|11||99.63|98.74|0.00|3.12|1600|0|0|01|0747|0|41F00000|| +38|2023-10-06T20:28:56.9020000-07:00|10FF0002|Suchichi Suchi|005A5A16|76254|90128|10000|10000|11||99.63|98.74|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:56.9460000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|16750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8442808|40478540|10000|10000|||100.00|80.10|0.00|0.00|114767|128564|10000|10000|||99.96|98.47|0.00|-1.64|0001B265|0|1| +37|2023-10-06T20:28:57.0350000-07:00|40022550|Zeromus|0001B263|8425782||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:57.1250000-07:00|40022550|Zeromus|0001B25D|8400606||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:57.1250000-07:00|40022550|Zeromus|0001B264|8383508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:57.1700000-07:00|10FF0004|Buhojaqe Zijaqe|0001B25F|80739|80739|4150|10000|24||99.91|99.35|0.00|0.11|1C00|0|0|01|09000129|0|41E774B9|| +21|2023-10-06T20:28:57.1700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8425782|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||99.92|98.16|0.00|3.14|0001B266|0|1| +31|2023-10-06T20:28:57.1700000-07:00|10FF0001||||| +20|2023-10-06T20:28:57.2140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.94|99.52|0.00|0.11| +261|2023-10-06T20:28:56.7230000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:28:57.2590000-07:00|10FF0007|Kehabiqo Febiqo|116052|128564|10000|10000|||99.91|97.91|0.00|-3.13| +37|2023-10-06T20:28:57.3030000-07:00|10FF0007|Kehabiqo Febiqo|0001B25F|122488|128564|10000|10000|8||99.71|97.51|0.00|-3.13|1501|0|0|01|06000129|0|41E6624A|| +20|2023-10-06T20:28:57.3920000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.17|98.45|0.00|2.91| +261|2023-10-06T20:28:56.9470000-07:00|Change|10FF0001||| +261|2023-10-06T20:28:56.9470000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:28:57.4360000-07:00|10FF0001|Sesuga Sapisuga|0001B25F|127791|127791|7900|10000|8||99.92|98.16|0.00|3.14|1302|0|0|01|03000129|0|41E551E7|| +39|2023-10-06T20:28:57.4360000-07:00|10FF0002|Suchichi Suchi|77155|90128|10000|10000|||99.63|98.74|0.00|3.12| +37|2023-10-06T20:28:57.4810000-07:00|40022550|Zeromus|0001B265|8377759||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:57.5700000-07:00|10FF0002|Suchichi Suchi|0001B25F|83716|90128|10000|10000|11||99.66|98.74|0.00|-3.14|1603|0|0|01|09000129|0|41E43F78|| +21|2023-10-06T20:28:57.5710000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|25B80000|204|25168000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|8377759|40478540|10000|10000|||100.00|80.10|0.00|0.00|122488|128564|10000|10000|||100.01|97.16|0.00|-3.13|0001B267|0|1| +21|2023-10-06T20:28:57.6160000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|13500000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|8377759|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7900|10000|||99.92|98.16|0.00|3.14|0001B268|0|1| +04|2023-10-06T20:28:57.2680000-07:00|40022CC9|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||82.19|80.55|0.00|-1.55| +261|2023-10-06T20:28:57.2680000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:28:57.2680000-07:00|Remove|40022CC9| +37|2023-10-06T20:28:57.7050000-07:00|40022550|Zeromus|0001B266|8376044||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:57.7050000-07:00|10FF0006|Wowobora Gogobora|0001B25F|80739|80739|4270|10000|12||100.04|97.88|0.00|3.11|2804|0|0|01|05000129|0|41E32D09|| +21|2023-10-06T20:28:57.7490000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2DA20000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|8377759|40478540|10000|10000|||100.00|80.10|0.00|0.00|64537|79111|9450|10000|||95.17|95.01|0.00|0.83|0001B269|0|1| +37|2023-10-06T20:28:57.8380000-07:00|10FF0005|Wuwuchu Wuchu|0001B25F|90055|90055|10000|10000|18||99.93|100.12|0.00|-3.14|2705|0|0|01|04000129|0|41E21A9A|| +21|2023-10-06T20:28:57.9280000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8376044|40478540|10000|10000|||100.00|80.10|0.00|0.00|79892|90055|10000|10000|||99.93|100.12|0.00|-3.14|0001B26A|0|1| +37|2023-10-06T20:28:57.9720000-07:00|10FF0008|Kokosaze Lulusaze|0001B25F|75171|79111|9150|10000|21||95.74|95.53|0.00|2.92|1B06|0|0|01|03000129|0|41E10A37|| +39|2023-10-06T20:28:58.0160000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8100|10000|||99.92|98.16|0.00|3.14| +24|2023-10-06T20:28:58.1050000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|742|2516|80739|80739|4150|10000|||99.99|99.84|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|122488|128564|10000|10000|||100.14|97.04|0.00|-3.13| +37|2023-10-06T20:28:58.1050000-07:00|40022550|Zeromus|0001B267|8366388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:28:58.1050000-07:00|10FF0007|Kehabiqo Febiqo|0001B267|128564||||||100.14|97.04|0.00|-3.13| +38|2023-10-06T20:28:58.1060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4150|10000|24||99.99|99.84|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:28:58.1490000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8366388|40478540|10000|10000|||100.00|80.10|0.00|0.00|83716|90128|10000|10000|||99.75|98.98|0.00|0.70|0001B26B|0|1| +21|2023-10-06T20:28:58.1490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30C80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|8366388|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4150|10000|||99.99|99.84|0.00|-3.14|0001B26C|0|1| +24|2023-10-06T20:28:58.1940000-07:00|40022550|Zeromus|DoT|0|22B8|8366388|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0005|Wuwuchu Wuchu|FFFFFFFF|90055|90055|10000|10000|||99.71|100.25|0.00|3.09| +38|2023-10-06T20:28:58.1940000-07:00|40022550|Zeromus|005A5A00|8357500|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T20:28:58.2380000-07:00|40022550|Zeromus|0001B268|8352556||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:28:58.2380000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|3.03| +261|2023-10-06T20:28:57.7650000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:28:58.3280000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|36140000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|8352556|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4270|10000|||100.02|97.80|0.00|-3.14|0001B26D|0|1| +37|2023-10-06T20:28:58.3730000-07:00|40022550|Zeromus|0001B269|8340874||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:57.9960000-07:00|Change|10FF0001||| +261|2023-10-06T20:28:57.9960000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:28:58.4630000-07:00|40022550|Zeromus|0001B26A|8336595||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:58.1060000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T20:28:58.5070000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4075|10000|||100.02|97.80|0.00|-3.14| +21|2023-10-06T20:28:58.5070000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8336595|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3750|10000|||99.99|99.84|0.00|3.14|0001B26E|0|1| +38|2023-10-06T20:28:58.5960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3750|10000|24||99.99|99.84|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:58.5960000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +37|2023-10-06T20:28:58.6850000-07:00|40022550|Zeromus|0001B26B|8331882||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:58.7300000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|3DB90000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|8336595|40478540|10000|10000|||100.00|80.10|0.00|0.00|83716|90128|10000|10000|||99.78|99.05|-0.02|0.03|0001B26F|0|1| +38|2023-10-06T20:28:58.7300000-07:00|10FF0002|Suchichi Suchi|005A5A16|83716|90128|10000|10000|11||99.78|99.05|-0.02|0.03|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:28:58.7300000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:28:58.8630000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.63|100.30|0.00|3.04| +21|2023-10-06T20:28:58.9080000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8331882|40478540|10000|10000|||100.00|80.10|0.00|0.00|75171|79111|9150|10000|||99.76|99.50|0.00|0.89|0001B270|0|1| +37|2023-10-06T20:28:58.9520000-07:00|40022550|Zeromus|0001B26C|8319394||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:58.4910000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:28:58.9970000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|23C9|128564|128564|10000|10000|||99.40|98.49|0.00|0.73|10FF0006|Wowobora Gogobora|1|80739|80739|4075|10000|||100.02|97.80|0.00|-3.14| +37|2023-10-06T20:28:58.9970000-07:00|40022550|Zeromus|0001B26D|8305550||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:28:58.9970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.40|98.49|0.00|0.73|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:58.9970000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:28:59.0420000-07:00|40022550|Zeromus|0001B26E|8305312||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:59.0420000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|21930000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|75171|79111|9150|10000|||99.99|99.80|0.00|0.61|73956|77430|10000|10000|||97.80|99.60|0.00|2.72|0001B271|0|1| +39|2023-10-06T20:28:59.0420000-07:00|10FF0008|Kokosaze Lulusaze|75962|79111|9350|10000|||99.99|99.80|0.00|0.61| +21|2023-10-06T20:28:59.0420000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|714003|34500000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|8331882|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.63|100.30|0.00|3.03|0001B272|0|1| +39|2023-10-06T20:28:59.1310000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|3950|10000|||99.99|99.84|0.00|3.14| +20|2023-10-06T20:28:59.2200000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|100.36|100.27|-0.02|0.61| +38|2023-10-06T20:28:59.2660000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.80|99.60|0.00|2.29|0|0|0||||||| +26|2023-10-06T20:28:59.2660000-07:00|7AC|Summon Order II|30.00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:28:59.2660000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|3950|10000|||99.99|99.84|0.00|3.14|80739|80739|3950|10000|||99.99|99.84|0.00|3.14|0001B273|0|1| +261|2023-10-06T20:28:58.8100000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:28:59.3540000-07:00|40022550|Zeromus|0001B26F|8289511||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:59.3990000-07:00|10FF0002|Suchichi Suchi|1D7D|Feint|40022550|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8289511|40478540|10000|10000|||100.00|80.10|0.00|0.00|83716|90128|10000|10000|||99.85|98.77|0.00|-3.12|0001B274|0|1| +38|2023-10-06T20:28:59.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|14617|73085|2000|10000|0||117.14|89.91|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T20:28:59.4000000-07:00|94|Raise|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|08|73085|80739| +26|2023-10-06T20:28:59.4000000-07:00|2B|Weakness|100.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +26|2023-10-06T20:28:59.4000000-07:00|1A2|Transcendent|5.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +261|2023-10-06T20:28:58.9280000-07:00|Change|10FF0003||| +261|2023-10-06T20:28:58.9280000-07:00|Change|10FF0003||| +37|2023-10-06T20:28:59.4440000-07:00|40022550|Zeromus|0001B270|8289328||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:28:59.4440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8289511|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8100|10000|||100.06|98.19|0.00|2.94|0001B275|0|1| +31|2023-10-06T20:28:59.4440000-07:00|10FF0001||||| +261|2023-10-06T20:28:58.9280000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:28:59.0490000-07:00|Change|10FF0008||||||||||||||||||||| +37|2023-10-06T20:28:59.5340000-07:00|40022550|Zeromus|0001B272|8275936||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:59.3450000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:28:59.8460000-07:00|10FF0008|Kokosaze Lulusaze|0001B271|79111||||||100.36|100.27|0.00|-3.12| +20|2023-10-06T20:28:59.8460000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.30|99.09|0.00|0.35| +261|2023-10-06T20:28:59.3450000-07:00|Change|40022CD0||||| +38|2023-10-06T20:28:59.8910000-07:00|40022CEC||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +24|2023-10-06T20:28:59.8910000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CBE|127791|127791|8100|10000|||100.06|98.19|0.00|2.94|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3950|10000|||100.02|99.99|0.00|-0.26| +24|2023-10-06T20:28:59.8910000-07:00|10FF0002|Suchichi Suchi|HoT|798|15E7|83716|90128|10000|10000|||99.87|98.69|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3950|10000|||100.02|99.99|0.00|-0.26| +24|2023-10-06T20:28:59.8910000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15D8|80739|80739|4075|10000|||100.30|99.09|0.00|0.35|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3950|10000|||100.02|99.99|0.00|-0.26| +24|2023-10-06T20:28:59.8910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D25|128564|128564|10000|10000|||99.19|97.84|-0.02|2.87|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3950|10000|||100.02|99.99|0.00|-0.26| +24|2023-10-06T20:28:59.8910000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|CBE|80739|80739|3950|10000|||100.02|99.99|0.00|-0.26|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3950|10000|||100.02|99.99|0.00|-0.26| +24|2023-10-06T20:28:59.8910000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D83|90055|90055|10000|10000|||99.63|100.30|0.00|3.04|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3950|10000|||100.02|99.99|0.00|-0.26| +24|2023-10-06T20:28:59.8910000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D7F|75962|79111|9350|10000|||100.36|100.27|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3950|10000|||100.02|99.99|0.00|-0.26| +38|2023-10-06T20:28:59.8910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.19|97.84|-0.02|2.87|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:59.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:28:59.8910000-07:00|10FF0002|Suchichi Suchi|005A5A16|89323|90128|10000|10000|11||99.87|98.69|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:59.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:28:59.8910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9350|10000|21||100.36|100.27|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:28:59.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:28:59.8910000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4075|10000|12||100.30|99.09|0.00|0.35|0|0|0||||||||||||||||||| +26|2023-10-06T20:28:59.8910000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:28:59.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:28:59.8910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8100|10000|8||100.06|98.19|0.00|2.94|0|0|0||||||||||||| +26|2023-10-06T20:28:59.8910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:28:59.8910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3950|10000|24||100.02|99.99|0.00|-0.26|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:28:59.8910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:28:59.8910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|18||99.63|100.30|0.00|3.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:28:59.8910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +38|2023-10-06T20:28:59.8910000-07:00|40022CEC||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:28:59.9350000-07:00|40022550|Zeromus|0001B274|8275936|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004AB|0|41200000|| +26|2023-10-06T20:28:59.9350000-07:00|4AB|Feint|10.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +261|2023-10-06T20:28:59.4380000-07:00|Add|40022CEC||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:28:59.4380000-07:00|40022CEC|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||100.33|98.54|0.00|0.02| +37|2023-10-06T20:28:59.9790000-07:00|40022550|Zeromus|0001B275|8273042||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:28:59.5290000-07:00|Change|40022CEC||| +39|2023-10-06T20:29:00.0240000-07:00|10FF0003|Gegehi Gehi|15347|73085|2200|10000|||117.05|89.95|0.00|-0.63| +21|2023-10-06T20:29:00.0240000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|38520000|A3E|340000|204|25598000|11B|258000|0|0|0|0|0|0|0|0|8273042|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.71|99.17|0.00|3.06|0001B276|0|1| +22|2023-10-06T20:29:00.1130000-07:00|40022B84|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.71|99.17|0.00|3.06|73956|77430|10000|10000|||97.80|99.60|0.00|1.31|0001B277|0|8| +22|2023-10-06T20:29:00.1130000-07:00|40022B84|Ruby Carbuncle|325|Fey Illumination|10FF0005|Wuwuchu Wuchu|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.63|100.30|0.00|3.02|73956|77430|10000|10000|||97.80|99.60|0.00|1.31|0001B277|1|8| +22|2023-10-06T20:29:00.1130000-07:00|40022B84|Ruby Carbuncle|325|Fey Illumination|10FF0002|Suchichi Suchi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|89323|90128|10000|10000|||99.87|98.68|0.00|3.13|73956|77430|10000|10000|||97.80|99.60|0.00|1.31|0001B277|2|8| +22|2023-10-06T20:29:00.1130000-07:00|40022B84|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|3950|10000|||100.02|100.02|0.00|0.25|73956|77430|10000|10000|||97.80|99.60|0.00|1.31|0001B277|3|8| +22|2023-10-06T20:29:00.1130000-07:00|40022B84|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4075|10000|||100.34|99.27|0.00|2.26|73956|77430|10000|10000|||97.80|99.60|0.00|1.31|0001B277|4|8| +22|2023-10-06T20:29:00.1130000-07:00|40022B84|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9350|10000|||100.36|100.27|0.00|-3.12|73956|77430|10000|10000|||97.80|99.60|0.00|1.31|0001B277|5|8| +22|2023-10-06T20:29:00.1130000-07:00|40022B84|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|8100|10000|||100.08|97.97|0.00|3.07|73956|77430|10000|10000|||97.80|99.60|0.00|1.31|0001B277|6|8| +22|2023-10-06T20:29:00.1130000-07:00|40022B84|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|14617|73085|2000|10000|||117.05|89.95|0.00|-0.63|73956|77430|10000|10000|||97.80|99.60|0.00|1.31|0001B277|7|8| +21|2023-10-06T20:29:00.1130000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35712003|30D80000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|8273042|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8100|10000|||100.08|97.97|0.00|3.07|0001B278|0|1| +39|2023-10-06T20:29:00.2450000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.79|99.38|0.00|3.14| +21|2023-10-06T20:29:00.3360000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8273042|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.81|99.45|0.00|3.14|0001B279|0|1| +261|2023-10-06T20:28:59.9450000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:29:00.4680000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.87|98.68|0.00|3.13| +261|2023-10-06T20:28:59.9450000-07:00|Change|10FF0006||||||||||||||||||||| +24|2023-10-06T20:29:00.6460000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|742|2559|80739|80739|3950|10000|||100.02|100.02|0.00|0.25|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||99.86|99.57|0.00|3.14| +37|2023-10-06T20:29:00.6460000-07:00|40022550|Zeromus|0001B276|8258624||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:00.6460000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3950|10000|24||100.02|100.02|0.00|0.25|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:00.7800000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|34AC0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|8258624|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4075|10000|||100.36|99.32|0.00|-3.12|0001B27A|0|1| +37|2023-10-06T20:29:00.8690000-07:00|40022550|Zeromus|0001B279|8255725||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:00.8690000-07:00|40022550|Zeromus|0001B278|8243221||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:00.8690000-07:00|10FF0001|Sesuga Sapisuga|0001B278|127791|127791|9100|10000|8||100.17|95.93|0.00|3.11|1300|0|0|0| +261|2023-10-06T20:29:00.3470000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:00.3470000-07:00|Change|40022CEC||| +37|2023-10-06T20:29:00.9140000-07:00|10FF0007|Kehabiqo Febiqo|0001B277|128564|128564|10000|10000|8||99.87|99.53|0.00|-3.12|1500|0|0|01|0700013D|0|41A00000|| +26|2023-10-06T20:29:00.9140000-07:00|13D|Fey Illumination|20.00|40022B84|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +34|2023-10-06T20:29:00.9140000-07:00|40022CEC|Carbuncle|40022CEC|Carbuncle|01| +21|2023-10-06T20:29:00.9580000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8243221|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.87|98.68|0.00|3.13|0001B27B|0|1| +39|2023-10-06T20:29:01.0030000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9300|10000|||100.17|95.93|0.00|3.11| +21|2023-10-06T20:29:01.0030000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0003|Gegehi Gehi|200004|7A320000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|15347|73085|2200|10000|||114.11|93.71|0.00|-1.08|80739|80739|3950|10000|||100.02|100.02|0.00|0.25|0001B27C|0|1| +38|2023-10-06T20:29:01.0030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3950|10000|24||100.02|100.02|0.00|0.25|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:01.0030000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +37|2023-10-06T20:29:01.0470000-07:00|10FF0005|Wuwuchu Wuchu|0001B277|90055|90055|10000|10000|18||99.57|100.76|0.00|3.03|2701|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T20:29:01.0470000-07:00|13D|Fey Illumination|20.00|40022B84|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +21|2023-10-06T20:29:01.1370000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|19B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8243221|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.57|100.76|0.00|3.03|0001B27D|0|1| +37|2023-10-06T20:29:01.1810000-07:00|10FF0002|Suchichi Suchi|0001B277|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|1602|0|0|01|013D|0|41A00000|| +26|2023-10-06T20:29:01.1810000-07:00|13D|Fey Illumination|20.00|40022B84|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|77430| +24|2023-10-06T20:29:01.1810000-07:00|40022550|Zeromus|DoT|0|25C9|8243221|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0002|Suchichi Suchi|FFFFFFFF|90128|90128|10000|10000|||99.87|98.68|0.00|3.13| +38|2023-10-06T20:29:01.1810000-07:00|40022550|Zeromus|005A5A00|8233548|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T20:29:00.7720000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:29:01.2260000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|1.31| +21|2023-10-06T20:29:01.2260000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C724003|2B870000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|8233548|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.87|98.68|0.00|3.13|0001B27E|0|1| +38|2023-10-06T20:29:01.2260000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:01.2260000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:29:01.2710000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8233548|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3675|10000|||100.36|99.32|0.00|-3.12|0001B27F|0|1| +37|2023-10-06T20:29:01.3150000-07:00|10FF0004|Buhojaqe Zijaqe|0001B277|80739|80739|3950|10000|24||100.02|100.02|0.00|1.07|1C03|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T20:29:01.3150000-07:00|13D|Fey Illumination|20.00|40022B84|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +37|2023-10-06T20:29:01.4490000-07:00|10FF0006|Wowobora Gogobora|0001B277|80739|80739|3675|10000|12||100.36|99.32|0.00|-3.12|2804|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T20:29:01.4490000-07:00|13D|Fey Illumination|20.00|40022B84|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|77430| +24|2023-10-06T20:29:01.4490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|150B|128564|128564|10000|10000|||99.75|97.53|0.00|-3.10|10FF0006|Wowobora Gogobora|0|80739|80739|3675|10000|||100.36|99.32|0.00|-3.12| +37|2023-10-06T20:29:01.4490000-07:00|40022550|Zeromus|0001B27A|8220064||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:01.4490000-07:00|10FF0006|Wowobora Gogobora|5EDD|Kardia|10FF0003|Gegehi Gehi|AA0E|A2D0000|DB000F|A2C8000|0|0|0|0|0|0|0|0|0|0|0|0|15347|73085|2200|10000|||111.84|94.91|0.00|-1.08|80739|80739|3675|10000|||100.36|99.32|0.00|-3.12|0001B280|0|1| +38|2023-10-06T20:29:01.4490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.75|97.53|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:01.4490000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:29:00.9920000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:29:01.4940000-07:00|40022550|Zeromus|0001B27B|8217170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:01.4940000-07:00|10FF0002|Suchichi Suchi|0001B27B|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|1600|0|0|01|04000AA0|0|C1F00000|| +39|2023-10-06T20:29:01.4940000-07:00|10FF0006|Wowobora Gogobora|80739|80739|3880|10000|||100.36|99.32|0.00|-3.12| +21|2023-10-06T20:29:01.5390000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|42700000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|8217170|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.57|100.76|0.00|3.03|0001B281|0|1| +37|2023-10-06T20:29:01.5830000-07:00|10FF0008|Kokosaze Lulusaze|0001B277|79111|79111|9350|10000|21||100.36|100.27|0.00|-3.12|1B05|0|0|01|0600013D|0|41A00000|| +26|2023-10-06T20:29:01.5830000-07:00|13D|Fey Illumination|20.00|40022B84|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +21|2023-10-06T20:29:01.5840000-07:00|10FF0001|Sesuga Sapisuga|1CD9|Passage of Arms|10FF0001|Sesuga Sapisuga|4400640F|4978000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9300|10000|||100.17|95.93|0.00|3.11|127791|127791|9300|10000|||100.17|95.93|0.00|3.11|0001B282|0|1| +37|2023-10-06T20:29:01.6270000-07:00|10FF0003|Gegehi Gehi|0001B27C|46629||||||111.25|95.22|0.00|-1.08| +21|2023-10-06T20:29:01.6270000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|734003|C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8217170|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3950|10000|||100.02|100.02|0.00|1.45|0001B283|0|1| +37|2023-10-06T20:29:01.6730000-07:00|40022550|Zeromus|0001B27D|8210588||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:01.6730000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|350003|44A90000|16C00F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|8217170|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9350|10000|||100.36|100.27|0.00|-3.12|0001B284|0|1| +38|2023-10-06T20:29:01.6730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9350|10000|21||100.36|100.27|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:01.6730000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:29:01.2040000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:29:01.7170000-07:00|10FF0001|Sesuga Sapisuga|0001B277|127791|127791|9300|10000|8||100.17|95.93|0.00|3.11|1306|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T20:29:01.7170000-07:00|13D|Fey Illumination|20.00|40022B84|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +261|2023-10-06T20:29:01.3010000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:29:01.8050000-07:00|40022550|Zeromus|0001B27F|8210553||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:01.8500000-07:00|10FF0003|Gegehi Gehi|0001B277|46629|73085|2200|10000|0||110.21|95.78|0.00|-1.08|2307|0|0|01|0100013D|0|41A00000|| +26|2023-10-06T20:29:01.8500000-07:00|13D|Fey Illumination|20.00|40022B84|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +38|2023-10-06T20:29:01.8500000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.80|99.60|0.00|1.31|0|0|0|||| +30|2023-10-06T20:29:01.8500000-07:00|7AC|Summon Order II|0.00|40022B84|Ruby Carbuncle|40022B84|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T20:29:01.4010000-07:00|Change|10FF0001||| +39|2023-10-06T20:29:01.8950000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.56|100.76|-0.02|3.12| +21|2023-10-06T20:29:01.8950000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|720003|22C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8210553|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.87|98.68|0.00|3.13|0001B285|0|1| +261|2023-10-06T20:29:01.5900000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:29:02.0290000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9550|10000|||100.36|100.27|0.00|-3.12| +261|2023-10-06T20:29:01.6890000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:29:02.1180000-07:00|10FF0003|Gegehi Gehi|0001B280|46629|73085|2200|10000|0||107.74|97.08|0.00|-1.08|2300|0|0|01|04000A2D|0|42700000|| +26|2023-10-06T20:29:02.1180000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:29:02.1180000-07:00|40022550|Zeromus|0001B281|8193545||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:02.1180000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0003|Gegehi Gehi|1.926|100.02|100.02|0.00|1.89| +38|2023-10-06T20:29:02.1180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.70|98.67|0.00|-0.26|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:02.1180000-07:00|A2D|Kardion|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:29:02.1620000-07:00|40022550|Zeromus|0001B283|8193352||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:02.1620000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4150|10000|||100.02|100.02|0.00|1.89| +261|2023-10-06T20:29:01.6890000-07:00|Change|10FF0008||| +38|2023-10-06T20:29:02.2060000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:02.2060000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|90128|127791| +38|2023-10-06T20:29:02.2060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4150|10000|24||100.02|100.02|0.00|1.90|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:02.2060000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|80739|127791| +38|2023-10-06T20:29:02.2060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|18||99.42|100.76|0.00|3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:02.2060000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|90055|127791| +38|2023-10-06T20:29:02.2060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3880|10000|12||100.36|99.32|0.00|2.05|0|0|0||||||||||||||||||| +26|2023-10-06T20:29:02.2060000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:02.2060000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|80739|127791| +38|2023-10-06T20:29:02.2060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.69|98.77|0.00|-0.96|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:02.2060000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +38|2023-10-06T20:29:02.2060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9550|10000|21||100.36|100.27|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:02.2060000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|79111|127791| +38|2023-10-06T20:29:02.2060000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.80|99.60|0.00|2.22|0|0|0||||||| +26|2023-10-06T20:29:02.2060000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|40022B84|Ruby Carbuncle|00|77430|127791| +38|2023-10-06T20:29:02.2060000-07:00|40022CEC|Carbuncle|005A5A00|72376|75851|10000|10000|0||100.33|98.54|0.00|0.02|0|0|0||||||| +26|2023-10-06T20:29:02.2060000-07:00|30|Well Fed|1917.30|10FF0008|Kokosaze Lulusaze|40022CEC|Carbuncle|2964|75851|79111| +26|2023-10-06T20:29:02.2060000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|40022CEC|Carbuncle|00|75851|127791| +37|2023-10-06T20:29:02.2060000-07:00|10FF0001|Sesuga Sapisuga|0001B282|127791|127791|9300|10000|8||100.17|95.93|0.00|3.11|1300|0|0|01|05000497|1444|41900000|| +26|2023-10-06T20:29:02.2060000-07:00|497|Passage of Arms|18.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|127791|127791| +20|2023-10-06T20:29:02.2960000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.36|99.32|0.00|2.05| +21|2023-10-06T20:29:02.4300000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|147C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|46629|73085|2200|10000|||106.70|97.62|0.00|-1.08|73956|77430|10000|10000|||97.80|99.60|0.00|2.45|0001B286|0|1| +37|2023-10-06T20:29:02.5190000-07:00|40022550|Zeromus|0001B285|8184448||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:02.5190000-07:00|10FF0002|Suchichi Suchi|0001B285|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|1600|0|0|01|04000AA0|0|C1F00000|| +21|2023-10-06T20:29:02.5190000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F716003|648D0000|143E|340000|200204|3DB68000|4|17928000|11B|2A8000|0|0|0|0|0|0|8193352|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.71|98.27|0.00|-2.15|0001B287|0|1| +21|2023-10-06T20:29:02.5190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8193352|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9300|10000|||100.17|95.93|0.00|-3.13|0001B288|0|1| +38|2023-10-06T20:29:02.5190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9300|10000|8||100.17|95.93|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T20:29:02.5190000-07:00|497|Passage of Arms|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|127791|127791| +31|2023-10-06T20:29:02.5190000-07:00|10FF0001||||| +21|2023-10-06T20:29:02.6090000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41714003|33330000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|8193352|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9300|10000|||100.17|95.93|0.00|-3.13|0001B289|0|1| +38|2023-10-06T20:29:02.6090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.71|98.27|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:02.6090000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +38|2023-10-06T20:29:02.6090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9300|10000|8||100.17|95.93|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:29:02.6090000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:29:02.6090000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:29:02.6090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4150|10000|24||100.02|100.02|0.00|1.92|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:02.6090000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|64|80739|128564| +38|2023-10-06T20:29:02.6530000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:02.6990000-07:00|40022550|Zeromus|DoT|A92|78A|8184448|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9550|10000|||100.36|100.27|0.00|-3.12| +37|2023-10-06T20:29:02.6990000-07:00|40022550|Zeromus|0001B284|8164941||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:02.6990000-07:00|10FF0008|Kokosaze Lulusaze|0001B284|79111|79111|9550|10000|21||100.36|100.27|0.00|-3.12|1B00|0|0|01|07000A92|0|41700000|| +26|2023-10-06T20:29:02.6990000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:29:02.6990000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|352003|38490000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|8184448|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9550|10000|||100.36|100.27|0.00|-3.12|0001B28A|0|1| +38|2023-10-06T20:29:02.6990000-07:00|40022550|Zeromus|005A5A00|8164941|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +22|2023-10-06T20:29:02.7440000-07:00|40022550|Zeromus|8C0D|Rend the Rift|10FF0007|Kehabiqo Febiqo|750603|39230000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.77|96.91|0.00|3.13|8164941|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B28B|0|8| +22|2023-10-06T20:29:02.7440000-07:00|40022550|Zeromus|8C0D|Rend the Rift|10FF0001|Sesuga Sapisuga|EC750605|36400000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9300|10000|||100.17|95.93|0.00|-3.13|8164941|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B28B|1|8| +22|2023-10-06T20:29:02.7440000-07:00|40022550|Zeromus|8C0D|Rend the Rift|10FF0002|Suchichi Suchi|750603|6D820000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.87|98.68|0.00|3.13|8164941|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B28B|2|8| +22|2023-10-06T20:29:02.7440000-07:00|40022550|Zeromus|8C0D|Rend the Rift|10FF0003|Gegehi Gehi|750103|0|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|46629|73085|2200|10000|||105.22|98.83|0.00|-1.23|8164941|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B28B|3|8| +22|2023-10-06T20:29:02.7440000-07:00|40022550|Zeromus|8C0D|Rend the Rift|10FF0006|Wowobora Gogobora|750603|6C6C0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|3880|10000|||100.36|99.32|0.00|3.08|8164941|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B28B|4|8| +22|2023-10-06T20:29:02.7440000-07:00|40022550|Zeromus|8C0D|Rend the Rift|10FF0004|Buhojaqe Zijaqe|750603|3EFF0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.92|8164941|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B28B|5|8| +22|2023-10-06T20:29:02.7440000-07:00|40022550|Zeromus|8C0D|Rend the Rift|10FF0008|Kokosaze Lulusaze|750603|4AA60000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9250|10000|||100.36|100.27|0.00|-3.12|8164941|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B28B|6|8| +22|2023-10-06T20:29:02.7440000-07:00|40022550|Zeromus|8C0D|Rend the Rift|10FF0005|Wuwuchu Wuchu|750603|582E0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.11|100.76|0.00|2.98|8164941|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B28B|7|8| +261|2023-10-06T20:29:02.2390000-07:00|Add|40022CEF||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:02.2390000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:29:02.2390000-07:00|Change|40022550||||||||||||| +00|2023-10-06T20:29:02.0000000-07:00|0044|Zeromus|By my power shall all know salvation!| +261|2023-10-06T20:29:02.2390000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:29:02.8770000-07:00|40022550|Zeromus|0001B27E|8153798||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:02.8770000-07:00|10FF0002|Suchichi Suchi|0001B27E|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|1600|0|0|01|04000AA0|0|41F00000|| +24|2023-10-06T20:29:02.8770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D56|128564|128564|10000|10000|||99.78|96.62|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.91| +24|2023-10-06T20:29:02.8770000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D40|127791|127791|9300|10000|||100.17|95.93|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.91| +24|2023-10-06T20:29:02.8770000-07:00|10FF0002|Suchichi Suchi|HoT|798|D67|90128|90128|10000|10000|||99.87|98.68|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.91| +24|2023-10-06T20:29:02.8770000-07:00|10FF0006|Wowobora Gogobora|HoT|798|14F8|80739|80739|3880|10000|||100.36|99.32|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.91| +24|2023-10-06T20:29:02.8770000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|CCC|80739|80739|4150|10000|||100.02|100.02|0.00|1.91|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.91| +24|2023-10-06T20:29:02.8770000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D6A|79111|79111|9250|10000|||100.36|100.27|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.91| +24|2023-10-06T20:29:02.8770000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|15C0|90055|90055|10000|10000|||99.11|100.76|0.00|2.98|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.91| +24|2023-10-06T20:29:02.8770000-07:00|10FF0003|Gegehi Gehi|HoT|798|D38|46629|73085|2200|10000|||104.71|99.36|0.00|-1.32|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||100.02|100.02|0.00|1.91| +38|2023-10-06T20:29:02.8770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||99.78|96.62|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:02.8770000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:02.8770000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:02.8770000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:02.8770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9250|10000|21||100.36|100.27|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:02.8770000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:29:02.8770000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|3880|10000|12||100.36|99.32|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T20:29:02.8770000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:02.8770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9300|10000|8||100.17|95.93|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:29:02.8770000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:02.8770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4150|10000|24||100.02|100.02|0.00|1.91|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:02.8770000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:02.8770000-07:00|10FF0003|Gegehi Gehi|005A5A23|50013|73085|2200|10000|0||104.71|99.36|0.00|-1.32|0|0|0||||||||||||||||||| +26|2023-10-06T20:29:02.8770000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:02.8770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|18||99.11|100.76|0.00|2.98|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:02.8770000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:29:02.4300000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:29:03.0110000-07:00|10FF0003|Gegehi Gehi|50743|73085|2400|10000|||104.14|99.55|0.00|-1.49| +37|2023-10-06T20:29:03.0550000-07:00|40022550|Zeromus|0001B288|8152071||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:03.0550000-07:00|10FF0001|Sesuga Sapisuga|0001B288|127791|127791|9300|10000|8||100.17|95.93|0.00|-3.13|1300|0|0|02|0500076E|03|C1F00000|||||| +21|2023-10-06T20:29:03.1450000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40022550|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8152071|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.81|95.90|-0.01|3.11|0001B28C|0|1| +261|2023-10-06T20:29:02.6650000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:29:03.1910000-07:00|40022550|Zeromus|0001B289|8138964||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:03.1910000-07:00|10FF0001|Sesuga Sapisuga|0001B289|127791|127791|9300|10000|8||100.17|95.93|0.00|-3.13|1300|0|0|02|0500076E|03|41F00000|||||| +38|2023-10-06T20:29:03.1910000-07:00|40022550|Zeromus|005A5A00|8138964|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T20:29:03.1910000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +38|2023-10-06T20:29:03.1910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9300|10000|8||100.17|95.93|0.00|-3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:29:03.2340000-07:00|10FF0003|Gegehi Gehi|0001B286|55987||||||102.03|99.83|-0.01|-2.16| +39|2023-10-06T20:29:03.2340000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.81|95.87|-0.02|3.11| +21|2023-10-06T20:29:03.2340000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35D00000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|8138964|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3880|10000|||100.36|99.32|0.00|-3.12|0001B28D|0|1| +37|2023-10-06T20:29:03.3230000-07:00|40022550|Zeromus|0001B28A|8124555||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:02.9080000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:29:03.4560000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.87|98.68|0.00|3.13| +21|2023-10-06T20:29:03.5030000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0003|Gegehi Gehi|200004|451C0000|650E|1290000|650E|77E0000|1B|B98000|0|0|0|0|0|0|0|0|55987|73085|2400|10000|||100.97|100.11|-0.01|-2.54|80739|80739|4150|10000|||100.02|100.02|0.00|1.74|0001B28E|0|1| +38|2023-10-06T20:29:03.5030000-07:00|10FF0003|Gegehi Gehi|005A5A23|55987|73085|2400|10000|87||100.97|100.11|-0.01|-2.54|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:03.5030000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:29:03.5030000-07:00|77E|Catalyze|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:29:03.0370000-07:00|Change|40022CD0||| +24|2023-10-06T20:29:03.5470000-07:00|40022550|Zeromus|DoT|A92|4E9|8124555|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9250|10000|||100.17|100.29|-0.02|-2.01| +38|2023-10-06T20:29:03.5470000-07:00|40022550|Zeromus|005A5A00|8123298|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +04|2023-10-06T20:29:03.1440000-07:00|40022CD0|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|75851|0|10000|||80.44|80.59|0.00|1.60| +261|2023-10-06T20:29:03.1440000-07:00|Remove|40022CD0| +21|2023-10-06T20:29:03.7250000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|11CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8123298|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.77|97.09|0.00|0.65|0001B28F|0|1| +21|2023-10-06T20:29:03.7250000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|28850000|171D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|8123298|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.87|98.68|0.00|3.13|0001B290|0|1| +38|2023-10-06T20:29:03.7250000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.87|98.68|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:03.7250000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:03.7680000-07:00|40022550|Zeromus|0001B28C|8123298|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004A9|0|41200000|| +26|2023-10-06T20:29:03.7680000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40022550|Zeromus|00|40478540|128564| +21|2023-10-06T20:29:03.7680000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|17910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8123298|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.87|98.68|0.00|3.13|0001B291|0|1| +261|2023-10-06T20:29:03.3280000-07:00|Change|10FF0006||||||||||||||||| +21|2023-10-06T20:29:03.8140000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55987|73085|2400|10000|||100.72|101.27|0.00|-0.99|55987|73085|2400|10000|||100.72|101.27|0.00|-0.99|0001B292|0|1| +38|2023-10-06T20:29:03.8140000-07:00|10FF0003|Gegehi Gehi|005A5A23|55987|73085|2400|10000|87||100.72|101.27|0.00|-0.99|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:03.8140000-07:00|1A2|Transcendent|0.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +33|2023-10-06T20:29:03.8570000-07:00|80034E7C|80000001|3DC|00|00|00| +261|2023-10-06T20:29:03.4200000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:29:03.9020000-07:00|10FF0007|Kehabiqo Febiqo|0001B28B|113937|128564|10000|10000|0||99.71|98.49|0.00|0.14|1500|0|0|01|06000000|0|0|| +24|2023-10-06T20:29:03.9020000-07:00|10FF0003|Gegehi Gehi|HoT|A2C|1513|55987|73085|2400|10000|||100.75|101.47|-0.02|-0.17|10FF0006|Wowobora Gogobora|0|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12| +37|2023-10-06T20:29:03.9020000-07:00|40022550|Zeromus|0001B28D|8109522||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:03.9020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113937|128564|10000|10000|0||99.71|98.49|0.00|0.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:03.9020000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:03.9020000-07:00|10FF0003|Gegehi Gehi|005A5A23|61382|73085|2400|10000|87||100.75|101.47|-0.02|-0.17|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:29:03.9470000-07:00|10FF0001|Sesuga Sapisuga|0001B28B|113903|127791|9300|10000|0||100.17|95.93|0.00|-3.13|1301|0|0|01|03000000|0|0|| +22|2023-10-06T20:29:03.9470000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|0001B293|0|8| +22|2023-10-06T20:29:03.9470000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.71|98.49|0.00|0.14|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|0001B293|1|8| +22|2023-10-06T20:29:03.9470000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|3150|10000|||100.02|100.02|0.00|1.35|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|0001B293|2|8| +22|2023-10-06T20:29:03.9470000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.87|98.68|0.00|3.13|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|0001B293|3|8| +22|2023-10-06T20:29:03.9470000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9250|10000|||100.05|100.30|0.00|-1.53|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|0001B293|4|8| +22|2023-10-06T20:29:03.9470000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.11|100.76|0.00|2.98|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|0001B293|5|8| +22|2023-10-06T20:29:03.9470000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|55987|73085|2400|10000|||100.75|101.47|-0.02|-0.17|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|0001B293|6|8| +22|2023-10-06T20:29:03.9470000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9300|10000|||100.17|95.93|0.00|-3.13|80739|80739|3480|10000|||100.36|99.32|0.00|-3.12|0001B293|7|8| +38|2023-10-06T20:29:03.9470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113903|127791|9300|10000|0||100.17|95.93|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:29:03.9470000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:29:03.9900000-07:00|10FF0002|Suchichi Suchi|0001B28B|62094|90128|10000|10000|0||99.87|98.68|0.00|3.13|1602|0|0|02|05000323|0|C1F00000|||||| +38|2023-10-06T20:29:03.9910000-07:00|10FF0002|Suchichi Suchi|005A5A16|62094|90128|10000|10000|0||99.87|98.68|0.00|3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:29:03.9910000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:29:04.0350000-07:00|40022550|Zeromus|0001B287|8083781||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:04.0350000-07:00|10FF0007|Kehabiqo Febiqo|0001B287|128564||||||99.67|99.86|0.00|-0.03| +39|2023-10-06T20:29:04.0350000-07:00|10FF0001|Sesuga Sapisuga|115180|127791|9500|10000|||100.17|95.93|0.00|-3.13| +37|2023-10-06T20:29:04.0800000-07:00|10FF0006|Wowobora Gogobora|0001B28B|52983|80739|3480|10000|0||100.36|99.32|0.00|-3.12|2804|0|0|01|05000000|0|0|| +21|2023-10-06T20:29:04.0800000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40716003|8EEE0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|8109522|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.11|100.76|0.00|2.98|0001B294|0|1| +38|2023-10-06T20:29:04.0800000-07:00|10FF0006|Wowobora Gogobora|005A5A28|52983|80739|3480|10000|0||100.36|99.32|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:29:04.0800000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:29:04.1250000-07:00|10FF0004|Buhojaqe Zijaqe|0001B28B|64612|80739|3150|10000|0||100.02|100.02|0.00|0.93|1C05|0|0|02|08000000|0|0|||||| +38|2023-10-06T20:29:04.1250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64612|80739|3150|10000|0||100.02|100.02|0.00|0.93|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:04.1250000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +30|2023-10-06T20:29:04.1250000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:29:04.1690000-07:00|40022550|Zeromus|0001B290|8073408|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|06000A9F|0|41C00000|| +26|2023-10-06T20:29:04.1690000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:29:04.1690000-07:00|10FF0002|Suchichi Suchi|0001B290|62094|90128|10000|10000|0||99.87|98.68|0.00|3.13|1600|0|0|01|05000323|0|41F00000|| +37|2023-10-06T20:29:04.1690000-07:00|10FF0008|Kokosaze Lulusaze|0001B28B|60001|79111|9250|10000|0||100.05|100.30|0.00|-1.53|1B06|0|0|01|03000000|0|0|| +38|2023-10-06T20:29:04.1690000-07:00|10FF0002|Suchichi Suchi|005A5A16|62094|90128|10000|10000|0||99.87|98.68|0.00|3.13|0|0|0||||||||||||||||||| +38|2023-10-06T20:29:04.1690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|60001|79111|9250|10000|0||100.05|100.30|0.00|-1.53|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:04.1690000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:29:03.7300000-07:00|Change|10FF0001||||| +37|2023-10-06T20:29:04.2140000-07:00|10FF0005|Wuwuchu Wuchu|0001B28B|67481|90055|10000|10000|0||99.11|100.76|0.00|3.10|2707|0|0|01|04000000|0|0|| +38|2023-10-06T20:29:04.2140000-07:00|40022550|Zeromus|005A5A00|8073408|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:04.2140000-07:00|808|Unknown_808|9999.00|40022550|Zeromus|40022550|Zeromus|286|40478540|40478540| +39|2023-10-06T20:29:04.2140000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|2.72| +24|2023-10-06T20:29:04.2140000-07:00|40022550|Zeromus|DoT|0|25CE|8073408|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|8073408|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:04.2140000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|2E430000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|8073408|40478540|10000|10000|||100.00|80.10|0.00|0.00|60001|79111|9250|10000|||100.05|100.30|0.00|-1.53|0001B295|0|1| +38|2023-10-06T20:29:04.2140000-07:00|40022550|Zeromus|005A5A00|8063730|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:04.2140000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|67481|90055|10000|10000|0||99.11|100.76|0.00|3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:04.2140000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:29:03.8460000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:29:04.2580000-07:00|40022550|Zeromus|0001B28F|8059176||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:29:04.2580000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0003|Gegehi Gehi|9|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61382|73085|2400|10000|||100.84|102.01|0.00|0.16|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|0001B296|0|8| +22|2023-10-06T20:29:04.2580000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0008|Kokosaze Lulusaze|650E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|60001|79111|9250|10000|||100.05|100.30|0.00|-1.53|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|0001B296|1|8| +22|2023-10-06T20:29:04.2580000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0005|Wuwuchu Wuchu|650E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.11|100.76|0.00|3.10|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|0001B296|2|8| +22|2023-10-06T20:29:04.2580000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0004|Buhojaqe Zijaqe|650E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|0001B296|3|8| +22|2023-10-06T20:29:04.2580000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0007|Kehabiqo Febiqo|650E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.66|100.23|0.00|-0.03|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|0001B296|4|8| +22|2023-10-06T20:29:04.2580000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0006|Wowobora Gogobora|650E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52983|80739|3480|10000|||100.36|99.32|0.00|-3.12|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|0001B296|5|8| +22|2023-10-06T20:29:04.2580000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0002|Suchichi Suchi|650E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|62094|90128|10000|10000|||99.89|98.68|0.00|-3.14|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|0001B296|6|8| +22|2023-10-06T20:29:04.2580000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0001|Sesuga Sapisuga|650E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|115180|127791|9500|10000|||100.17|95.93|0.00|-3.13|64612|80739|3150|10000|||100.02|100.02|0.00|0.68|0001B296|7|8| +261|2023-10-06T20:29:03.8460000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:29:04.3020000-07:00|40022550|Zeromus|0001B291|8053143||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:04.3470000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8073408|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.11|100.76|0.00|3.10|0001B297|0|1| +37|2023-10-06T20:29:04.4370000-07:00|10FF0003|Gegehi Gehi|0001B292|61382|73085|2400|10000|87||100.85|102.07|-0.02|0.19|2300|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T20:29:04.4370000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:29:04.4370000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|726003|778E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8053143|40478540|10000|10000|||100.00|80.10|0.00|0.00|62094|90128|10000|10000|||99.92|98.68|0.00|-3.13|0001B298|0|1| +37|2023-10-06T20:29:04.4810000-07:00|10FF0003|Gegehi Gehi|0001B28E|73085|73085|2400|10000|87||100.85|102.07|-0.02|0.19|2300|0|0|02|06000129|0|41E8851D|||||| +39|2023-10-06T20:29:04.5240000-07:00|10FF0006|Wowobora Gogobora|53790|80739|3685|10000|||100.36|99.32|0.00|-3.12| +21|2023-10-06T20:29:04.5700000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8053143|40478540|10000|10000|||100.00|80.10|0.00|0.00|60001|79111|8950|10000|||100.05|100.30|0.00|-3.14|0001B299|0|1| +21|2023-10-06T20:29:04.5700000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|726003|5BC40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8053143|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|2400|10000|||100.85|102.07|0.00|0.19|0001B29A|0|1| +21|2023-10-06T20:29:04.5700000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8053143|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|2400|10000|||100.85|102.07|0.00|0.19|0001B29B|0|1| +37|2023-10-06T20:29:04.6150000-07:00|40022550|Zeromus|0001B294|8016553||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:04.6580000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|28D20000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.67|99.84|0.00|1.67|8016553|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B29C|0|1| +20|2023-10-06T20:29:04.7030000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.36|99.32|0.00|-3.12| +37|2023-10-06T20:29:04.7480000-07:00|10FF0006|Wowobora Gogobora|0001B293|53790|80739|4385|10000|0||100.36|99.32|0.00|-3.12|2800|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:29:04.7480000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:04.7480000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:29:04.7940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8016553|40478540|10000|10000|||100.00|80.10|0.00|0.00|115180|127791|9500|10000|||100.11|97.87|0.00|-0.05|0001B29D|0|1| +31|2023-10-06T20:29:04.7940000-07:00|10FF0001||||| +261|2023-10-06T20:29:04.2780000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:29:04.8360000-07:00|40022550|Zeromus|0001B295|8004710||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:04.8820000-07:00|10FF0007|Kehabiqo Febiqo|0001B293|128564|128564|10000|10000|0||99.68|99.61|0.00|2.66|1501|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:29:04.8820000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:29:04.8820000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:29:04.8820000-07:00|40022550|Zeromus|0001B297|8001338||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:04.8820000-07:00|10FF0005|Wuwuchu Wuchu|68381|90055|10000|10000|||99.84|100.31|-0.02|3.13| +21|2023-10-06T20:29:04.9710000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|15410000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|8004710|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.68|99.61|0.00|2.66|0001B29E|0|1| +37|2023-10-06T20:29:05.0140000-07:00|10FF0004|Buhojaqe Zijaqe|0001B293|64612|80739|3150|10000|0||100.02|100.03|0.00|0.37|1C02|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:29:05.0140000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:29:05.0140000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:29:05.0590000-07:00|10FF0008|Kokosaze Lulusaze|60792|79111|9150|10000|||100.05|100.30|0.00|-3.14| +21|2023-10-06T20:29:05.0590000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|720003|382F0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|8001338|40478540|10000|10000|||100.00|80.10|0.00|0.00|62094|90128|10000|10000|||100.49|99.15|-0.01|-3.11|0001B29F|0|1| +38|2023-10-06T20:29:05.0590000-07:00|10FF0002|Suchichi Suchi|005A5A16|62094|90128|10000|10000|0||100.49|99.15|-0.01|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:29:05.0590000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:05.1030000-07:00|40022550|Zeromus|0001B299|8001186||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:05.1030000-07:00|40022550|Zeromus|0001B29B|8001185||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:05.1030000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|27AE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|8001338|40478540|10000|10000|||100.00|80.10|0.00|0.00|115180|127791|9500|10000|||100.04|99.85|0.00|-2.28|0001B2A0|0|1| +38|2023-10-06T20:29:05.1030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|115180|127791|9500|10000|0||100.04|99.85|0.00|-2.28|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:29:05.1030000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +37|2023-10-06T20:29:05.1470000-07:00|10FF0002|Suchichi Suchi|0001B293|62094|90128|10000|10000|0||100.51|99.17|0.00|-3.11|1603|0|0|03|060004DB|0|C1700000|||||||||| +26|2023-10-06T20:29:05.1470000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:29:05.1470000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:29:05.1470000-07:00|10FF0008|Kokosaze Lulusaze|0001B296|60792|79111|9150|10000|40||100.05|100.30|0.00|-3.14|1B01|0|0|01|03000129|0|41E80000|| +26|2023-10-06T20:29:05.1470000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +39|2023-10-06T20:29:05.1470000-07:00|10FF0004|Buhojaqe Zijaqe|65419|80739|3350|10000|||100.03|100.06|-0.02|0.34| +38|2023-10-06T20:29:05.1470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|60792|79111|9150|10000|40||100.05|100.30|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:29:05.2820000-07:00|10FF0008|Kokosaze Lulusaze|0001B293|60792|79111|9150|10000|40||100.05|100.30|0.00|-3.14|1B04|0|0|02|09000A3A|0|41700000|||||| +26|2023-10-06T20:29:05.2820000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:29:05.2820000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:29:05.2820000-07:00|10FF0005|Wuwuchu Wuchu|0001B296|68381|90055|10000|10000|35||99.75|100.18|0.00|3.11|2702|0|0|01|04000129|0|41E80000|| +26|2023-10-06T20:29:05.2820000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:29:05.2820000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|724003|30310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8001185|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|2400|10000|||100.85|102.07|0.00|-3.10|0001B2A1|0|1| +38|2023-10-06T20:29:05.2820000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|68381|90055|10000|10000|35||99.75|100.18|0.00|3.11|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:29:05.3260000-07:00|40022550|Zeromus|0001B29D|7999427||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:04.9090000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:29:04.9090000-07:00|Change|10FF0008||| +37|2023-10-06T20:29:05.4160000-07:00|10FF0005|Wuwuchu Wuchu|0001B293|68381|90055|10000|10000|35||99.72|100.20|0.00|3.10|2705|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:29:05.4160000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:29:05.4160000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:05.4160000-07:00|10FF0004|Buhojaqe Zijaqe|0001B296|65419|80739|3350|10000|39||100.12|100.25|0.00|0.44|1C03|0|0|01|09000129|0|41E80000|| +26|2023-10-06T20:29:05.4160000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:05.4160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|65419|80739|3350|10000|39||100.12|100.25|0.00|0.44|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:05.4600000-07:00|10FF0007|Kehabiqo Febiqo|0001B29C|118114||||||99.69|99.48|0.00|3.12| +37|2023-10-06T20:29:05.5060000-07:00|40022550|Zeromus|0001B29E|7993986||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:05.5490000-07:00|40022550|Zeromus|0001B29F|7979603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:05.5490000-07:00|10FF0002|Suchichi Suchi|0001B29F|62094|90128|10000|10000|0||100.51|99.17|0.00|-3.11|1600|0|0|01|060004DB|0|41700000|| +37|2023-10-06T20:29:05.5490000-07:00|10FF0003|Gegehi Gehi|0001B293|73085|73085|2400|10000|87||100.85|102.07|0.00|-3.10|2306|0|0|02|08000A3A|0|41700000|||||| +26|2023-10-06T20:29:05.5490000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:29:05.5490000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:29:05.5490000-07:00|10FF0007|Kehabiqo Febiqo|0001B296|118114|128564|10000|10000|24||99.69|99.45|0.00|3.12|1504|0|0|01|08000129|0|41E80000|| +26|2023-10-06T20:29:05.5490000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:05.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118114|128564|10000|10000|24||99.69|99.45|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:05.5490000-07:00|10FF0002|Suchichi Suchi|005A5A16|62094|90128|10000|10000|0||100.51|99.17|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:29:05.6400000-07:00|40022550|Zeromus|0001B298|7948997||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:05.6400000-07:00|10FF0002|Suchichi Suchi|HoT|0|D1F|62094|90128|10000|10000|||100.51|99.17|0.00|-3.11|10FF0006|Wowobora Gogobora|0|53790|80739|4385|10000|||100.36|99.32|0.00|-3.12| +21|2023-10-06T20:29:05.6400000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|34110000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|7993986|40478540|10000|10000|||100.00|80.10|0.00|0.00|53790|80739|4385|10000|||100.36|99.32|0.00|-3.12|0001B2A2|0|1| +38|2023-10-06T20:29:05.6400000-07:00|10FF0002|Suchichi Suchi|005A5A16|65453|90128|10000|10000|0||100.51|99.17|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:29:05.6840000-07:00|10FF0001|Sesuga Sapisuga|0001B293|115180|127791|9500|10000|0||100.04|99.94|0.00|-0.03|1307|0|0|02|03000A3A|0|41700000|||||| +26|2023-10-06T20:29:05.6840000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:29:05.6840000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:29:05.6840000-07:00|10FF0006|Wowobora Gogobora|0001B296|53790|80739|3985|10000|39||100.36|99.32|0.00|-3.12|2805|0|0|01|07000129|0|41E80000|| +26|2023-10-06T20:29:05.6840000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:29:05.6840000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14FB0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|118114|128564|10000|10000|||99.71|98.61|0.00|3.11|73956|77430|10000|10000|||97.80|99.60|0.00|3.03|0001B2A3|0|1| +24|2023-10-06T20:29:05.6840000-07:00|10FF0003|Gegehi Gehi|HoT|0|151F|73085|73085|2400|10000|||100.85|102.07|0.00|-3.10|10FF0006|Wowobora Gogobora|0|53790|80739|3985|10000|||100.36|99.32|0.00|-3.12| +21|2023-10-06T20:29:05.6840000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|7948997|40478540|10000|10000|||100.00|80.10|0.00|0.00|60792|79111|9150|10000|||100.05|100.30|0.00|-3.14|0001B2A4|0|1| +38|2023-10-06T20:29:05.6840000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|60792|79111|9150|10000|40||100.05|100.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:05.6840000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:05.6840000-07:00|10FF0006|Wowobora Gogobora|005A5A28|53790|80739|3985|10000|39||100.36|99.32|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:05.6840000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:05.6840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2950|10000|87||100.85|102.07|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:05.6840000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:05.6840000-07:00|40022CEC|Carbuncle|005A5A00|0|75851|0|10000|0||100.33|98.54|0.00|0.02|0|0|0|||| +30|2023-10-06T20:29:05.6840000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|40022CEC|Carbuncle|00|75851|127791| +261|2023-10-06T20:29:05.1430000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:29:05.1430000-07:00|Change|40022CEC||| +38|2023-10-06T20:29:05.7290000-07:00|40022CF2||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:29:05.7290000-07:00|40022550|Zeromus|0001B29A|7925505||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:05.7290000-07:00|40022CF2||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:29:05.8180000-07:00|10FF0002|Suchichi Suchi|0001B296|65453|90128|10000|10000|35||100.47|99.17|0.00|-3.10|1606|0|0|01|09000129|0|41E80000|| +26|2023-10-06T20:29:05.8180000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:05.8180000-07:00|10FF0002|Suchichi Suchi|005A5A16|65453|90128|10000|10000|35||100.47|99.17|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:05.3420000-07:00|Change|10FF0006||||||||||||||| +24|2023-10-06T20:29:05.8630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D6C|115180|127791|9500|10000|||100.04|99.94|0.00|-0.03|10FF0006|Wowobora Gogobora|0|53790|80739|3985|10000|||100.36|99.32|0.00|-3.12| +24|2023-10-06T20:29:05.8630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D0E|118114|128564|10000|10000|||99.74|97.72|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +24|2023-10-06T20:29:05.8630000-07:00|10FF0002|Suchichi Suchi|HoT|798|CEB|65453|90128|10000|10000|||100.45|99.17|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +24|2023-10-06T20:29:05.8630000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CD4|53790|80739|3985|10000|||100.36|99.32|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +24|2023-10-06T20:29:05.8630000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D78|115180|127791|9500|10000|||100.04|99.94|0.00|-0.03|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +24|2023-10-06T20:29:05.8630000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|CF8|68381|90055|10000|10000|||99.72|100.24|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +24|2023-10-06T20:29:05.8630000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D6E|60792|79111|9150|10000|||100.05|100.30|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +24|2023-10-06T20:29:05.8630000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|14D8|65419|80739|3350|10000|||100.14|100.30|0.00|0.46|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +24|2023-10-06T20:29:05.8630000-07:00|10FF0003|Gegehi Gehi|HoT|798|15AC|73085|73085|2950|10000|||100.85|102.07|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +24|2023-10-06T20:29:05.8630000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1400|65419|80739|3350|10000|||100.14|100.30|0.00|0.46|10FF0004|Buhojaqe Zijaqe|0|65419|80739|3350|10000|||100.14|100.30|0.00|0.46| +38|2023-10-06T20:29:05.8630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121456|128564|10000|10000|24||99.74|97.72|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:05.8630000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:05.8630000-07:00|10FF0002|Suchichi Suchi|005A5A16|68760|90128|10000|10000|35||100.45|99.17|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:05.8630000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:05.8630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|64230|79111|9150|10000|40||100.05|100.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:05.8630000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:29:05.8630000-07:00|10FF0006|Wowobora Gogobora|005A5A28|57074|80739|3985|10000|39||100.36|99.32|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:05.8630000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:05.8630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122064|127791|9500|10000|0||100.04|99.94|0.00|-0.03|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:05.8630000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:05.8630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75875|80739|3350|10000|39||100.14|100.30|0.00|0.46|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:05.8630000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:05.8630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2950|10000|87||100.85|102.07|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:05.8630000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:05.8630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|71701|90055|10000|10000|35||99.72|100.24|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:05.8630000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:05.9530000-07:00|10FF0001|Sesuga Sapisuga|0001B296|122064|127791|9500|10000|24||100.04|99.94|0.00|-0.03|1307|0|0|01|08000129|0|41E80000|| +26|2023-10-06T20:29:05.9530000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +24|2023-10-06T20:29:05.9530000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D8E|68381|90055|10000|10000|||99.72|100.24|0.00|3.10|10FF0006|Wowobora Gogobora|0|53790|80739|3985|10000|||100.36|99.32|0.00|-3.12| +38|2023-10-06T20:29:05.9530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122064|127791|9500|10000|24||100.04|99.94|0.00|-0.03|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:29:05.9530000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|75171|90055|10000|10000|35||99.72|100.24|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:05.4350000-07:00|Add|40022CF2||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:29:05.4350000-07:00|40022CF2|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|72376|75851|10000|10000|||101.83|102.06|0.00|-3.14| +39|2023-10-06T20:29:05.9960000-07:00|10FF0003|Gegehi Gehi|73085|73085|3150|10000|||100.85|102.07|0.00|-3.10| +24|2023-10-06T20:29:05.9960000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C88|57074|80739|3985|10000|||100.36|99.32|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|75875|80739|3350|10000|||100.14|100.30|0.00|0.46| +20|2023-10-06T20:29:05.9960000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.14|100.30|0.00|0.46| +38|2023-10-06T20:29:05.9960000-07:00|10FF0006|Wowobora Gogobora|005A5A28|60282|80739|3985|10000|39||100.36|99.32|0.00|-3.12|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:29:05.5370000-07:00|Change|40022CF2||||| +21|2023-10-06T20:29:06.0410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7925505|40478540|10000|10000|||100.00|80.10|0.00|0.00|60282|80739|3985|10000|||100.36|99.32|0.00|-3.12|0001B2A5|0|1| +261|2023-10-06T20:29:05.6480000-07:00|Change|10FF0003||| +21|2023-10-06T20:29:06.2190000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D724003|34D80000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|7925505|40478540|10000|10000|||100.00|80.10|0.00|0.00|68760|90128|10000|10000|||100.39|99.17|-0.02|-3.07|0001B2A6|0|1| +38|2023-10-06T20:29:06.2200000-07:00|10FF0002|Suchichi Suchi|005A5A16|68760|90128|10000|10000|35||100.39|99.17|-0.02|-3.07|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:06.2200000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:29:06.2200000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:29:06.2640000-07:00|10FF0007|Kehabiqo Febiqo|122741|128564|10000|10000|||99.78|96.85|-0.02|3.11| +20|2023-10-06T20:29:06.2640000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|100.85|102.07|0.00|-3.10| +24|2023-10-06T20:29:06.3090000-07:00|10FF0003|Gegehi Gehi|HoT|A2C|1614|73085|73085|3150|10000|||100.85|102.07|0.00|-3.10|10FF0006|Wowobora Gogobora|0|60282|80739|3985|10000|||100.36|99.32|0.00|-3.12| +37|2023-10-06T20:29:06.3090000-07:00|40022550|Zeromus|0001B2A2|7912176||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:06.3090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3150|10000|87||100.85|102.07|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:06.3980000-07:00|40022550|Zeromus|0001B2A0|7902018||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:06.3980000-07:00|10FF0001|Sesuga Sapisuga|0001B2A0|122064|127791|9900|10000|24||100.05|99.81|0.00|3.11|1300|0|0|0| +261|2023-10-06T20:29:05.8860000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:29:06.4440000-07:00|40022550|Zeromus|0001B2A1|7889681||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:06.4440000-07:00|10FF0002|Suchichi Suchi|69661|90128|10000|10000|||100.39|99.17|0.00|-3.12| +261|2023-10-06T20:29:06.0030000-07:00|Change|10FF0004||||||||||||||||||||||||| +37|2023-10-06T20:29:06.4870000-07:00|10FF0007|Kehabiqo Febiqo|0001B2A3|128112||||||99.78|96.85|0.00|3.11| +24|2023-10-06T20:29:06.5330000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CCF|128112|128564|10000|10000|||99.78|96.85|0.00|3.11|10FF0007|Kehabiqo Febiqo|0|128112|128564|10000|10000|||99.78|96.85|0.00|3.11| +24|2023-10-06T20:29:06.5330000-07:00|40022550|Zeromus|DoT|A92|7A4|7889681|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|64230|79111|9150|10000|||100.05|100.30|0.00|-3.14| +24|2023-10-06T20:29:06.5330000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D25|64230|79111|9150|10000|||100.05|100.30|0.00|-3.14|10FF0006|Wowobora Gogobora|0|60282|80739|3985|10000|||100.36|99.32|0.00|-3.12| +21|2023-10-06T20:29:06.5340000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|712003|67730000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|7889681|40478540|10000|10000|||100.00|80.10|0.00|0.00|75171|90055|10000|10000|||99.72|100.24|0.00|3.10|0001B2A7|0|1| +38|2023-10-06T20:29:06.5340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|24||99.78|96.85|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:06.5340000-07:00|40022550|Zeromus|005A5A00|7887725|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:06.5340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|67595|79111|9150|10000|40||100.05|100.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:06.5770000-07:00|40022550|Zeromus|0001B2A5|7887687||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:06.5770000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|E3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7889681|40478540|10000|10000|||100.00|80.10|0.00|0.00|69661|90128|10000|10000|||100.39|99.17|0.00|-3.12|0001B2A8|0|1| +37|2023-10-06T20:29:06.7120000-07:00|10FF0008|Kokosaze Lulusaze|0001B2A4|67595|79111|9150|10000|40||100.05|100.30|0.00|-3.14|1B00|0|0|01|0B000AA4|0|0|| +38|2023-10-06T20:29:06.7120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|67595|79111|9150|10000|40||100.05|100.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:06.3050000-07:00|Change|40022CF2||| +37|2023-10-06T20:29:06.8910000-07:00|40022550|Zeromus|0001B2A6|7874159||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:06.8910000-07:00|10FF0002|Suchichi Suchi|0001B2A6|69661|90128|10000|10000|35||100.32|99.13|0.00|-3.10|1600|0|0|01|0A000322|0|41F00000|| +21|2023-10-06T20:29:06.8910000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|720003|1A3F0000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|7887687|40478540|10000|10000|||100.00|80.10|0.00|0.00|69661|90128|10000|10000|||100.32|99.13|0.00|-3.10|0001B2A9|0|1| +38|2023-10-06T20:29:06.8910000-07:00|10FF0002|Suchichi Suchi|005A5A16|69661|90128|10000|10000|35||100.32|99.13|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:06.8910000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:29:06.9340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2FF50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7887687|40478540|10000|10000|||100.00|80.10|0.00|0.00|75875|80739|3350|10000|||100.14|100.30|0.00|-3.13|0001B2AA|0|1| +39|2023-10-06T20:29:07.0230000-07:00|10FF0001|Sesuga Sapisuga|123341|127791|10000|10000|||100.05|99.57|0.00|3.11| +21|2023-10-06T20:29:07.0670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7874159|40478540|10000|10000|||100.00|80.10|0.00|0.00|123341|127791|10000|10000|||100.05|99.57|0.00|3.11|0001B2AB|0|1| +31|2023-10-06T20:29:07.0670000-07:00|10FF0001||||| +37|2023-10-06T20:29:07.1120000-07:00|40022550|Zeromus|0001B2A8|7870517||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:07.1120000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7874159|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.78|96.85|0.00|3.11|0001B2AC|0|1| +20|2023-10-06T20:29:07.1570000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.36|99.32|0.00|-3.12| +21|2023-10-06T20:29:07.1570000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|734003|B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7874159|40478540|10000|10000|||100.00|80.10|0.00|0.00|75875|80739|2950|10000|||100.14|100.30|0.00|-3.13|0001B2AD|0|1| +261|2023-10-06T20:29:06.6130000-07:00|Change|10FF0006||||||||||||| +39|2023-10-06T20:29:07.2020000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|2.86| +24|2023-10-06T20:29:07.2020000-07:00|40022550|Zeromus|DoT|0|2586|7870517|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|7870517|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:07.2020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|24||99.78|96.85|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:07.2020000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +38|2023-10-06T20:29:07.2020000-07:00|10FF0002|Suchichi Suchi|005A5A16|69661|90128|10000|10000|35||100.29|99.04|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:07.2020000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|90128|127791| +38|2023-10-06T20:29:07.2020000-07:00|40022550|Zeromus|005A5A00|7860911|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:07.2020000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|67595|79111|9150|10000|40||100.05|100.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:07.2020000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|79111|127791| +38|2023-10-06T20:29:07.2020000-07:00|40022B84|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.80|99.60|0.00|2.86|0|0|0|||| +30|2023-10-06T20:29:07.2020000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|40022B84|Ruby Carbuncle|00|77430|127791| +38|2023-10-06T20:29:07.2020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|60282|80739|3985|10000|39||100.36|99.32|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:07.2020000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|80739|127791| +38|2023-10-06T20:29:07.2020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75875|80739|2950|10000|39||100.14|100.30|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:07.2020000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|80739|127791| +38|2023-10-06T20:29:07.2020000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|75171|90055|10000|10000|35||99.72|100.24|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:07.2020000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|90055|127791| +261|2023-10-06T20:29:06.7230000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T20:29:07.2910000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|710003|37100000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|7860911|40478540|10000|10000|||100.00|80.10|0.00|0.00|75171|90055|10000|10000|||99.72|100.24|0.00|3.13|0001B2AE|0|1| +38|2023-10-06T20:29:07.2910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|75171|90055|10000|10000|35||99.72|100.24|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:07.2910000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:29:07.4230000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|222D0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|7860911|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.78|96.85|0.00|3.11|0001B2AF|0|1| +261|2023-10-06T20:29:06.9500000-07:00|Change|10FF0001||||| +261|2023-10-06T20:29:06.9500000-07:00|Change|10FF0004||||||||||||||||| +39|2023-10-06T20:29:07.5110000-07:00|10FF0006|Wowobora Gogobora|61089|80739|4190|10000|||100.36|99.32|0.00|-3.12| +37|2023-10-06T20:29:07.5560000-07:00|40022550|Zeromus|0001B2A7|7834428||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:07.5560000-07:00|10FF0005|Wuwuchu Wuchu|0001B2A7|75171|90055|10000|10000|35||99.72|100.24|0.00|3.13|2700|0|0|01|07000A1B|01|C1F00000|| +21|2023-10-06T20:29:07.5560000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7860911|40478540|10000|10000|||100.00|80.10|0.00|0.00|75171|90055|10000|10000|||99.72|100.24|0.00|3.13|0001B2B0|0|1| +37|2023-10-06T20:29:07.6000000-07:00|40022550|Zeromus|0001B2AB|7832755||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:07.6000000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|28640000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|7834428|40478540|10000|10000|||100.00|80.10|0.00|0.00|123341|127791|10000|10000|||100.05|99.57|0.00|-3.14|0001B2B1|0|1| +38|2023-10-06T20:29:07.6000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123341|127791|10000|10000|24||100.05|99.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:07.6000000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:29:07.6440000-07:00|40022550|Zeromus|0001B2AC|7829820||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:07.6900000-07:00|40022550|Zeromus|0001B2A9|7823101||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:07.6900000-07:00|40022550|Zeromus|0001B2AD|7822923||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:07.6900000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.78|96.85|0.00|3.13|7829820|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B2B2|0|1| +21|2023-10-06T20:29:07.6900000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|21A40000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|7829820|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3150|10000|||100.85|102.07|0.00|-3.10|0001B2B3|0|1| +38|2023-10-06T20:29:07.6900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2950|10000|87||100.85|102.07|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:07.6900000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:29:07.6900000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:29:07.2600000-07:00|Change|40022CEC||| +37|2023-10-06T20:29:07.7340000-07:00|40022550|Zeromus|0001B2AA|7810646||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:07.7340000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7829820|40478540|10000|10000|||100.00|80.10|0.00|0.00|67595|79111|9150|10000|||100.05|100.30|0.00|-3.14|0001B2B4|0|1| +21|2023-10-06T20:29:07.7780000-07:00|40022CF2|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|150003|62390000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|7829820|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.83|102.06|0.00|-3.14|0001B2B5|0|1| +37|2023-10-06T20:29:07.8230000-07:00|40022550|Zeromus|0001B2AE|7796550||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:07.8230000-07:00|10FF0005|Wuwuchu Wuchu|0001B2AE|75171|90055|10000|10000|35||99.72|100.24|0.00|3.10|2700|0|0|01|07000A1B|01|41F00000|| +38|2023-10-06T20:29:07.8230000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|75171|90055|10000|10000|35||99.72|100.24|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:07.8660000-07:00|10FF0005|Wuwuchu Wuchu|76071|90055|10000|10000|||99.72|100.24|0.00|3.10| +38|2023-10-06T20:29:07.9560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75875|80739|2950|10000|39||100.14|100.30|0.00|-2.44|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:07.9560000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:29:08.0450000-07:00|40022550|Zeromus|0001B2AF|7787801||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:08.0450000-07:00|10FF0008|Kokosaze Lulusaze|68386|79111|9350|10000|||100.05|100.30|0.00|-3.14| +261|2023-10-06T20:29:07.6470000-07:00|Change|10FF0008||||| +37|2023-10-06T20:29:08.0890000-07:00|40022550|Zeromus|0001B2B0|7783507||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:08.0890000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37040000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|7796550|40478540|10000|10000|||100.00|80.10|0.00|0.00|61089|80739|4190|10000|||100.36|99.32|0.00|-3.12|0001B2B6|0|1| +39|2023-10-06T20:29:08.1340000-07:00|10FF0004|Buhojaqe Zijaqe|76682|80739|3150|10000|||100.14|100.32|0.00|-0.87| +261|2023-10-06T20:29:07.6470000-07:00|Change|10FF0006||||||||||||||| +20|2023-10-06T20:29:08.1780000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|100.05|100.30|0.00|-3.14| +261|2023-10-06T20:29:07.7640000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T20:29:08.2680000-07:00|40022550|Zeromus|0001B2B4|7783264||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:07.8810000-07:00|Remove|40022CCF| +261|2023-10-06T20:29:07.9920000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:29:08.4460000-07:00|40022550|Zeromus|0001B2B3|7774652||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:08.4910000-07:00|10FF0007|Kehabiqo Febiqo|0001B2B2|128564|128564|10000|10000|16||99.78|96.85|0.00|3.13|1500|0|0|0| +20|2023-10-06T20:29:08.4910000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.16|100.45|0.00|0.00| +261|2023-10-06T20:29:08.1100000-07:00|Change|10FF0008||||||||||||| +24|2023-10-06T20:29:08.6700000-07:00|10FF0002|Suchichi Suchi|HoT|0|14E2|69661|90128|10000|10000|||100.30|98.99|0.00|-3.08|10FF0002|Suchichi Suchi|0|69661|90128|10000|10000|||100.30|98.99|0.00|-3.08| +38|2023-10-06T20:29:08.6700000-07:00|10FF0002|Suchichi Suchi|005A5A16|75007|90128|10000|10000|35||100.30|98.99|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:08.7140000-07:00|10FF0003|Gegehi Gehi|HoT|0|141A|73085|73085|2950|10000|||100.85|102.07|0.00|-3.10|10FF0003|Gegehi Gehi|0|73085|73085|2950|10000|||100.85|102.07|0.00|-3.10| +21|2023-10-06T20:29:08.7140000-07:00|10FF0006|Wowobora Gogobora|5EDD|Kardia|10FF0007|Kehabiqo Febiqo|AA0E|A2D0000|C000F|A2C8000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.78|96.85|0.00|3.13|61089|80739|3790|10000|||100.36|99.32|0.00|-3.12|0001B2B7|0|1| +21|2023-10-06T20:29:08.7140000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|556003|4F8B0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|7774652|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|2950|10000|||100.85|102.07|0.00|-3.10|0001B2B8|0|1| +38|2023-10-06T20:29:08.7140000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3200|10000|87||100.85|102.07|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:08.7140000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +24|2023-10-06T20:29:08.7590000-07:00|10FF0003|Gegehi Gehi|HoT|A2C|15EE|73085|73085|3200|10000|||100.85|102.07|0.00|-3.10|10FF0006|Wowobora Gogobora|0|61089|80739|3790|10000|||100.36|99.32|0.00|-3.04| +37|2023-10-06T20:29:08.7590000-07:00|40022550|Zeromus|0001B2B6|7760568||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:08.7590000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|35320000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|7774652|40478540|10000|10000|||100.00|80.10|0.00|0.00|75007|90128|10000|10000|||100.30|98.99|0.00|-3.08|0001B2B9|0|1| +38|2023-10-06T20:29:08.7590000-07:00|10FF0002|Suchichi Suchi|005A5A16|75007|90128|10000|10000|35||100.30|98.99|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:08.7590000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:29:08.7590000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:29:08.7590000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3200|10000|87||100.85|102.07|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +41|2023-10-06T20:29:08.8020000-07:00|80034E7C|290B|01|00|00| +24|2023-10-06T20:29:08.8480000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D38|123341|127791|10000|10000|||100.05|99.57|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|76682|80739|3150|10000|||100.22|100.45|0.00|2.60| +24|2023-10-06T20:29:08.8480000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|14A7|76682|80739|3150|10000|||100.22|100.45|0.00|2.60|10FF0004|Buhojaqe Zijaqe|0|76682|80739|3150|10000|||100.22|100.45|0.00|2.60| +38|2023-10-06T20:29:08.8480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126725|127791|10000|10000|24||100.05|99.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:29:08.8480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3150|10000|39||100.22|100.45|0.00|2.60|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:08.8920000-07:00|40022550|Zeromus|0001B2B1|7750228||||||100.00|80.10|0.00|0.00| +00|2023-10-06T20:29:08.0000000-07:00|0839||The barrier between worlds weakens...| +24|2023-10-06T20:29:08.9810000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|CAE|76071|90055|10000|10000|||99.72|100.24|0.00|3.02|10FF0006|Wowobora Gogobora|0|61089|80739|3790|10000|||100.36|99.32|0.00|-2.98| +38|2023-10-06T20:29:08.9810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79317|90055|10000|10000|35||99.72|100.24|0.00|3.02|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:09.0250000-07:00|10FF0003|Gegehi Gehi|73085|73085|3400|10000|||100.85|102.07|0.00|-3.10| +24|2023-10-06T20:29:09.0250000-07:00|10FF0006|Wowobora Gogobora|HoT|0|15D6|61089|80739|3790|10000|||100.36|99.32|0.00|-2.98|10FF0004|Buhojaqe Zijaqe|0|80739|80739|3150|10000|||100.23|100.45|-0.01|3.07| +38|2023-10-06T20:29:09.0250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|66679|80739|3790|10000|39||100.36|99.32|0.00|-2.98|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:09.0250000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:29:09.0700000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B712003|6EEC0000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|7750228|40478540|10000|10000|||100.00|80.10|0.00|0.00|76071|90055|10000|10000|||99.72|100.24|0.00|3.02|0001B2BA|0|1| +38|2023-10-06T20:29:09.0700000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79317|90055|10000|10000|35||99.72|100.24|0.00|3.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:09.0700000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:29:09.0700000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:29:09.0700000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:29:09.1580000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|15620000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|66679|80739|3790|10000|||100.36|99.32|0.00|-2.93|73956|77430|10000|10000|||97.80|99.60|0.00|2.93|0001B2BB|0|1| +261|2023-10-06T20:29:08.7120000-07:00|Change|10FF0003||| +39|2023-10-06T20:29:09.2480000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.78|96.85|0.00|3.13| +21|2023-10-06T20:29:09.3380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|66F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7750228|40478540|10000|10000|||100.00|80.10|0.00|0.00|126725|127791|10000|10000|||100.05|99.57|0.00|-3.14|0001B2BC|0|1| +31|2023-10-06T20:29:09.3380000-07:00|10FF0001||||| +37|2023-10-06T20:29:09.3820000-07:00|40022550|Zeromus|0001B2B9|7736610||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:09.3820000-07:00|10FF0002|Suchichi Suchi|0001B2B9|75007|90128|10000|10000|35||100.30|98.99|0.00|-3.13|1600|0|0|01|03000747|0|41F00000|| +37|2023-10-06T20:29:09.3820000-07:00|10FF0007|Kehabiqo Febiqo|0001B2B7|128564|128564|10000|10000|16||99.78|96.85|0.00|3.13|1500|0|0|01|01000A2D|0|42700000|| +26|2023-10-06T20:29:09.3820000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:29:09.3820000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B7F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7750228|40478540|10000|10000|||100.00|80.10|0.00|0.00|75007|90128|10000|10000|||100.30|98.99|0.00|-3.13|0001B2BD|0|1| +38|2023-10-06T20:29:09.3820000-07:00|10FF0002|Suchichi Suchi|005A5A16|75007|90128|10000|10000|35||100.30|98.99|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:09.3820000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3400|10000|87||100.85|102.07|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:09.3820000-07:00|A2D|Kardion|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +21|2023-10-06T20:29:09.4270000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31340000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7750228|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3150|10000|||100.24|100.45|0.00|-3.13|0001B2BE|0|1| +37|2023-10-06T20:29:09.4700000-07:00|40022550|Zeromus|0001B2B8|7716247||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:09.4700000-07:00|10FF0002|Suchichi Suchi|75908|90128|10000|10000|||100.30|98.99|0.00|-3.13| +21|2023-10-06T20:29:09.5160000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7736610|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3400|10000|||100.85|102.07|0.00|-3.10|0001B2BF|0|1| +261|2023-10-06T20:29:09.0680000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:29:09.5600000-07:00|40022550|Zeromus|0001B2BA|7687851||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:09.5600000-07:00|10FF0005|Wuwuchu Wuchu|0001B2BA|79317|90055|10000|10000|35||99.72|100.24|0.00|3.10|2700|0|0|01|07000A1D|0|42700000|| +24|2023-10-06T20:29:09.5600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CC4|128564|128564|10000|10000|||99.78|96.85|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||99.78|96.85|0.00|3.13| +24|2023-10-06T20:29:09.5600000-07:00|40022550|Zeromus|DoT|A92|5C3|7716247|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|68386|79111|9350|10000|||100.05|100.30|0.00|-3.14| +24|2023-10-06T20:29:09.5600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D77|68386|79111|9350|10000|||100.05|100.30|0.00|-3.14|10FF0008|Kokosaze Lulusaze|0|68386|79111|9350|10000|||100.05|100.30|0.00|-3.14| +38|2023-10-06T20:29:09.5610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|16||99.78|96.85|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:09.5610000-07:00|40022550|Zeromus|005A5A00|7686376|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:09.5610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|71833|79111|9350|10000|40||100.05|100.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +04|2023-10-06T20:29:09.0680000-07:00|40022CEC|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||100.33|98.54|0.00|0.02| +38|2023-10-06T20:29:09.5610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79317|90055|10000|10000|35||99.72|100.24|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:09.0680000-07:00|Remove|40022CEC| +20|2023-10-06T20:29:09.6040000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.36|99.32|0.00|-2.91| +261|2023-10-06T20:29:09.1590000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:29:09.7390000-07:00|40022550|Zeromus|0001B2B5|7661231||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:09.8720000-07:00|40022550|Zeromus|0001B2BC|7659584||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:09.8720000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|30010000|143E|340000|4|17E08000|11B|2A8000|0|0|0|0|0|0|0|0|7661231|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.78|96.85|0.00|3.13|0001B2C0|0|1| +37|2023-10-06T20:29:09.9170000-07:00|40022550|Zeromus|0001B2BD|7656641||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:09.9170000-07:00|40022550|Zeromus|005A5A00|7656641|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:09.9170000-07:00|4AB|Feint|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:29:09.9610000-07:00|10FF0006|Wowobora Gogobora|0001B2BB|72153||||||100.36|99.32|0.00|-3.03| +39|2023-10-06T20:29:10.0060000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.05|99.57|0.00|-3.14| +21|2023-10-06T20:29:10.0060000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|724003|116E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7656641|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3400|10000|||100.85|102.07|0.00|-3.10|0001B2C1|0|1| +37|2023-10-06T20:29:10.0500000-07:00|40022550|Zeromus|0001B2BF|7656640||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:10.0940000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|40080000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|7656641|40478540|10000|10000|||100.00|80.10|0.00|0.00|126725|127791|10000|10000|||100.05|99.57|0.00|-3.14|0001B2C2|0|1| +38|2023-10-06T20:29:10.0940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|24||100.05|99.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:10.0940000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +24|2023-10-06T20:29:10.1840000-07:00|40022550|Zeromus|DoT|0|2985|7656640|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|7656640|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:10.1840000-07:00|40022550|Zeromus|005A5A00|7646011|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:29:10.2280000-07:00|40022550|Zeromus|0001B2BE|7633415||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:10.2280000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|1.68| +38|2023-10-06T20:29:10.2720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|2750|10000|39||100.24|100.45|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:10.2720000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +21|2023-10-06T20:29:10.2720000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|2750|10000|||100.24|100.45|0.00|-3.13|80739|80739|2750|10000|||100.24|100.45|0.00|-3.13|0001B2C3|0|1| +21|2023-10-06T20:29:10.4500000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|152003|7D4A0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|7633415|40478540|10000|10000|||100.00|80.10|0.00|0.00|71833|79111|9350|10000|||100.05|100.30|0.00|-3.14|0001B2C4|0|1| +261|2023-10-06T20:29:09.8760000-07:00|Change|10FF0008||||||||||||||| +39|2023-10-06T20:29:10.4940000-07:00|10FF0006|Wowobora Gogobora|72960|80739|3995|10000|||100.36|99.32|0.00|-3.12| +21|2023-10-06T20:29:10.4940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7633415|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.78|96.85|0.00|3.13|0001B2C5|0|1| +21|2023-10-06T20:29:10.5390000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35960000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|7633415|40478540|10000|10000|||100.00|80.10|0.00|0.00|72960|80739|3995|10000|||100.36|99.32|0.00|-3.12|0001B2C6|0|1| +261|2023-10-06T20:29:10.1930000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:29:10.6730000-07:00|40022550|Zeromus|0001B2C1|7628953||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:10.7180000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.78|96.85|0.00|3.13|7633415|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B2C7|0|1| +21|2023-10-06T20:29:10.7620000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|722003|1D710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7628953|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|3400|10000|||100.79|100.58|0.00|-3.10|0001B2C8|0|1| +21|2023-10-06T20:29:10.7620000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|151C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7628953|40478540|10000|10000|||100.00|80.10|0.00|0.00|79317|90055|10000|10000|||98.68|99.87|0.00|2.97|0001B2C9|0|1| +37|2023-10-06T20:29:10.8060000-07:00|10FF0004|Buhojaqe Zijaqe|0001B2C3|80739|80739|4750|10000|39||100.24|100.45|0.00|-3.13|1C00|0|0|0| +261|2023-10-06T20:29:10.2960000-07:00|Change|10FF0004||| +21|2023-10-06T20:29:10.8060000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7628953|40478540|10000|10000|||100.00|80.10|0.00|0.00|72960|80739|3595|10000|||100.36|99.32|0.00|-3.12|0001B2CA|0|1| +261|2023-10-06T20:29:10.2960000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:29:10.2960000-07:00|Change|4002256C||||||||| +38|2023-10-06T20:29:10.8510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4750|10000|39||100.24|100.45|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:10.8510000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:10.8510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3400|10000|87||100.79|100.58|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:10.8510000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:10.8510000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79317|90055|10000|10000|35||98.68|99.87|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:10.8510000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +20|2023-10-06T20:29:10.8960000-07:00|4002256C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.70|86.65|0.00|0.00| +20|2023-10-06T20:29:10.8960000-07:00|4002256D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|118.70|100.15|0.00|0.00| +20|2023-10-06T20:29:10.8960000-07:00|4002256E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.95|99.96|0.00|0.00| +39|2023-10-06T20:29:10.8960000-07:00|10FF0005|Wuwuchu Wuchu|80217|90055|10000|10000|||98.68|99.87|0.00|2.97| +38|2023-10-06T20:29:10.8960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|16||99.78|96.85|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:10.8960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:10.8960000-07:00|10FF0002|Suchichi Suchi|005A5A16|75908|90128|10000|10000|35||100.30|98.99|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:10.8960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:10.8960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|71833|79111|9050|10000|40||100.05|100.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:10.8960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:29:10.8960000-07:00|10FF0006|Wowobora Gogobora|005A5A28|72960|80739|3595|10000|39||100.36|99.32|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:10.8960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:10.8960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|24||100.05|99.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:10.8960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:29:10.3980000-07:00|Change|4002256E||||||||||||||| +37|2023-10-06T20:29:11.0280000-07:00|40022550|Zeromus|0001B2C5|7624230||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:11.0280000-07:00|10FF0008|Kokosaze Lulusaze|72624|79111|9250|10000|||100.05|100.30|0.00|-3.14| +37|2023-10-06T20:29:11.0730000-07:00|40022550|Zeromus|0001B2C4|7592156||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:10.6050000-07:00|Change|10FF0008||| +21|2023-10-06T20:29:11.1180000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2B270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7628953|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.78|96.85|0.00|3.13|0001B2CB|0|1| +20|2023-10-06T20:29:11.1180000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|100.05|100.30|0.00|-3.14| +39|2023-10-06T20:29:11.1630000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4950|10000|||100.24|100.42|0.00|-3.13| +21|2023-10-06T20:29:11.1630000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72960|80739|3595|10000|||100.36|99.32|0.00|-3.12|72960|80739|3595|10000|||100.36|99.32|0.00|-3.12|0001B2CC|0|1| +20|2023-10-06T20:29:11.1630000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.24|100.42|0.00|-3.13| +24|2023-10-06T20:29:11.2070000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1605|128564|128564|10000|10000|||99.78|96.85|0.00|3.13|10FF0006|Wowobora Gogobora|0|72960|80739|3595|10000|||100.36|99.32|0.00|-3.12| +37|2023-10-06T20:29:11.2070000-07:00|40022550|Zeromus|0001B2C6|7578438||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:11.2070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|16||99.78|96.85|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:11.2520000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|724003|31850000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|7578438|40478540|10000|10000|||100.00|80.10|0.00|0.00|75908|90128|10000|10000|||100.30|98.99|0.00|-3.13|0001B2CD|0|1| +38|2023-10-06T20:29:11.2520000-07:00|10FF0002|Suchichi Suchi|005A5A16|75908|90128|10000|10000|35||100.30|98.99|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:11.2520000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:11.2960000-07:00|40022550|Zeromus|0001B2C9|7573034||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:10.8370000-07:00|Change|4002256C||||||||||| +261|2023-10-06T20:29:10.8370000-07:00|Change|4002256D||||||||||| +37|2023-10-06T20:29:11.3410000-07:00|40022550|Zeromus|0001B2CA|7572999||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:11.3410000-07:00|40022550|Zeromus|0001B2C8|7565462||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:11.3850000-07:00|40022550|Zeromus|0001B2C0|7553173||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:11.3850000-07:00|40022550|Zeromus|0001B2C2|7536781||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:11.5190000-07:00|10FF0007|Kehabiqo Febiqo|0001B2C7|128564|128564|10000|10000|7||99.78|96.85|0.00|3.13|1500|0|0|0| +21|2023-10-06T20:29:11.5200000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|712003|44C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7536781|40478540|10000|10000|||100.00|80.10|0.00|0.00|80217|90055|10000|10000|||98.68|99.87|0.00|2.97|0001B2CE|0|1| +38|2023-10-06T20:29:11.5200000-07:00|40022550|Zeromus|005A5A00|7536781|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:11.5200000-07:00|A1A|Death's Design|47.17|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +21|2023-10-06T20:29:11.6090000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|89B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7536781|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.05|99.57|0.00|-3.14|0001B2CF|0|1| +31|2023-10-06T20:29:11.6090000-07:00|10FF0001||||| +24|2023-10-06T20:29:11.6530000-07:00|10FF0002|Suchichi Suchi|HoT|0|14F3|75908|90128|10000|10000|||100.30|98.99|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4950|10000|||100.24|100.39|-0.01|-3.13| +38|2023-10-06T20:29:11.6530000-07:00|10FF0002|Suchichi Suchi|005A5A16|81271|90128|10000|10000|35||100.30|98.99|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:11.6970000-07:00|10FF0003|Gegehi Gehi|HoT|0|1455|73085|73085|3400|10000|||100.79|100.57|0.00|-3.10|10FF0006|Wowobora Gogobora|0|72960|80739|3595|10000|||100.36|99.30|0.00|-3.00| +38|2023-10-06T20:29:11.6970000-07:00|40022550|Zeromus|005A5A00|7536781|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:11.6970000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +38|2023-10-06T20:29:11.6970000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3950|10000|87||100.79|100.57|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:11.2470000-07:00|Change|10FF0003||||||| +37|2023-10-06T20:29:11.7410000-07:00|40022550|Zeromus|0001B2CB|7525734||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:11.7860000-07:00|10FF0006|Wowobora Gogobora|0001B2CC|72960|80739|3595|10000|39||100.19|99.06|0.00|-2.90|2800|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T20:29:11.7860000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:29:11.2470000-07:00|Change|40022CF2||||| +261|2023-10-06T20:29:11.3480000-07:00|Change|10FF0004||||||||||||||||||| +38|2023-10-06T20:29:11.8320000-07:00|40022CF8||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:29:11.8320000-07:00|40022CF8||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:29:11.3480000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:29:11.3480000-07:00|Change|40022569||||||||| +261|2023-10-06T20:29:11.3480000-07:00|Change|40022568||||||||| +37|2023-10-06T20:29:11.8760000-07:00|40022550|Zeromus|0001B2CD|7513057||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:11.8760000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1543|127791|127791|10000|10000|||100.19|99.49|0.00|2.96|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4950|10000|||100.24|100.39|0.00|-3.13| +24|2023-10-06T20:29:11.8760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|C6F|80739|80739|4950|10000|||100.24|100.39|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4950|10000|||100.24|100.39|0.00|-3.13| +38|2023-10-06T20:29:11.8760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|24||100.19|99.49|0.00|2.96|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:29:11.8760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4950|10000|39||100.24|100.39|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +20|2023-10-06T20:29:11.9200000-07:00|40022568|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.39|119.79|0.00|0.00| +20|2023-10-06T20:29:11.9200000-07:00|40022569|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|86.60|99.64|0.00|0.00| +20|2023-10-06T20:29:11.9200000-07:00|4002256A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.41|93.94|0.00|0.00| +20|2023-10-06T20:29:11.9200000-07:00|4002256B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.70|100.15|0.00|0.00| +261|2023-10-06T20:29:11.3480000-07:00|Change|4002256B||||||||||||||| +24|2023-10-06T20:29:11.9650000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|15C0|80217|90055|10000|10000|||98.68|99.87|0.00|3.04|10FF0006|Wowobora Gogobora|0|72960|80739|3595|10000|||99.77|98.47|0.00|-2.74| +38|2023-10-06T20:29:11.9650000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|85785|90055|10000|10000|35||98.68|99.87|0.00|3.04|0|0|0||||||||||||||||||||||||||||||| +03|2023-10-06T20:29:11.4390000-07:00|40022CF8|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||100.06|98.55|0.00|0.00| +261|2023-10-06T20:29:11.4390000-07:00|Add|40022CF8||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:11.4390000-07:00|Change|40022CF8||| +261|2023-10-06T20:29:11.5290000-07:00|Change|10FF0008||||||||||||| +39|2023-10-06T20:29:12.0090000-07:00|10FF0003|Gegehi Gehi|73085|73085|4150|10000|||100.88|100.54|0.00|-3.03| +24|2023-10-06T20:29:12.0090000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D1B|72960|80739|3595|10000|||98.95|97.30|0.00|-2.44|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4950|10000|||100.25|100.40|0.00|2.11| +38|2023-10-06T20:29:12.0090000-07:00|10FF0006|Wowobora Gogobora|005A5A28|76315|80739|4145|10000|39||98.95|97.30|0.00|-2.44|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:12.0090000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:29:12.0970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30320000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7513057|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4950|10000|||100.25|100.40|0.00|2.11|0001B2D0|0|1| +23|2023-10-06T20:29:12.1420000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|Cancelled| +37|2023-10-06T20:29:12.1420000-07:00|40022550|Zeromus|0001B2CF|7510854||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:12.1870000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|EAA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7513057|40478540|10000|10000|||100.00|80.10|0.00|0.00|81271|90128|10000|10000|||100.30|98.99|0.00|-3.13|0001B2D1|0|1| +261|2023-10-06T20:29:11.6220000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:29:11.7320000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:29:11.8520000-07:00|Change|40022569||||||||||| +261|2023-10-06T20:29:11.8520000-07:00|Change|40022568||||||||||| +261|2023-10-06T20:29:11.8520000-07:00|Change|4002256A||||||||||| +39|2023-10-06T20:29:12.2310000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||98.91|95.84|0.00|3.11| +21|2023-10-06T20:29:12.2750000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7510854|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4550|10000|||100.27|100.42|0.00|-3.13|0001B2D2|0|1| +21|2023-10-06T20:29:12.3200000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|766A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7510854|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.91|95.84|0.00|3.11|0001B2D3|0|1| +39|2023-10-06T20:29:12.4530000-07:00|10FF0002|Suchichi Suchi|82172|90128|10000|10000|||100.30|98.97|0.00|-3.12| +21|2023-10-06T20:29:12.4980000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|4150|10000|||102.91|100.64|0.00|-3.14|73085|73085|4150|10000|||102.91|100.64|0.00|-3.14|0001B2D4|0|1| +38|2023-10-06T20:29:12.4980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4150|10000|87||102.91|100.64|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:12.4980000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:29:12.0940000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:29:12.5430000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|15300000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|72624|79111|9250|10000|||100.01|99.06|0.00|-3.10|73956|77430|10000|10000|||97.80|99.60|0.00|2.79|0001B2D5|0|1| +24|2023-10-06T20:29:12.5430000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CE8|128564|128564|10000|10000|||98.02|94.55|0.00|3.05|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||98.02|94.55|0.00|3.05| +24|2023-10-06T20:29:12.5430000-07:00|40022550|Zeromus|DoT|A92|7B6|7510854|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|72624|79111|9250|10000|||100.01|99.06|0.00|-3.10| +24|2023-10-06T20:29:12.5430000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D07|72624|79111|9250|10000|||100.01|99.06|0.00|-3.10|10FF0008|Kokosaze Lulusaze|0|72624|79111|9250|10000|||100.01|99.06|0.00|-3.10| +21|2023-10-06T20:29:12.5430000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|150003|41FB0000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|7510854|40478540|10000|10000|||100.00|80.10|0.00|0.00|72624|79111|9250|10000|||100.01|99.06|0.00|-3.10|0001B2D6|0|1| +38|2023-10-06T20:29:12.5430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||98.02|94.55|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:12.5430000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:12.5430000-07:00|40022550|Zeromus|005A5A00|7508880|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:12.5430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75959|79111|9250|10000|40||100.01|99.06|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:12.5430000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:29:12.6770000-07:00|40022550|Zeromus|0001B2CE|7491276||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:12.6770000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|2EA90000|4|29158000|0|0|0|0|0|0|0|0|0|0|0|0|7510854|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||104.38|96.64|0.00|3.01|0001B2D7|0|1| +38|2023-10-06T20:29:12.6770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|24||104.38|96.64|0.00|3.01|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:12.6770000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:29:12.7210000-07:00|40022550|Zeromus|0001B2D1|7487522||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:12.3130000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:29:12.8110000-07:00|40022550|Zeromus|0001B2D2|7487334||||||100.00|80.10|0.00|0.00| +34|2023-10-06T20:29:12.8540000-07:00|40022CF8|Carbuncle|40022CF8|Carbuncle|01| +261|2023-10-06T20:29:12.3130000-07:00|Change|40022565||||||||| +261|2023-10-06T20:29:12.3130000-07:00|Change|40022564||||||||| +261|2023-10-06T20:29:12.3130000-07:00|Change|40022563||||||||| +261|2023-10-06T20:29:12.3130000-07:00|Change|40022566||||||||| +261|2023-10-06T20:29:12.4070000-07:00|Change|40022CF8||| +37|2023-10-06T20:29:12.8990000-07:00|40022550|Zeromus|0001B2D0|7474996||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:12.8990000-07:00|40022563|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.19|118.04|0.00|0.00| +20|2023-10-06T20:29:12.8990000-07:00|40022564|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|118.82|114.08|0.00|0.00| +20|2023-10-06T20:29:12.8990000-07:00|40022565|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|101.39|95.43|0.00|0.00| +20|2023-10-06T20:29:12.8990000-07:00|40022566|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.05|94.90|0.00|0.00| +20|2023-10-06T20:29:12.8990000-07:00|40022567|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.34|100.46|0.00|0.00| +37|2023-10-06T20:29:12.9430000-07:00|40022550|Zeromus|0001B2D3|7444682||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:12.4970000-07:00|Change|40022567||||||||||||||| +261|2023-10-06T20:29:12.4970000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:29:12.9880000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7444682|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4150|10000|||105.43|100.78|0.00|3.08|0001B2D8|0|1| +39|2023-10-06T20:29:13.0320000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9200|10000|||105.47|96.73|0.00|3.01| +20|2023-10-06T20:29:13.0770000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|94.95|100.54|0.00|-0.79| +261|2023-10-06T20:29:12.6070000-07:00|Change|10FF0008||||||||||||||||||||| +261|2023-10-06T20:29:12.6070000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:29:12.6070000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:29:13.2100000-07:00|40022B84|Ruby Carbuncle|73956|77430|10000|10000|||97.80|99.60|0.00|2.39| +24|2023-10-06T20:29:13.2100000-07:00|40022550|Zeromus|DoT|0|2337|7444682|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|7444682|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:13.2100000-07:00|40022550|Zeromus|005A5A00|7435667|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:29:12.7200000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:29:13.2540000-07:00|10FF0003|Gegehi Gehi|0001B2D4|73085|73085|4150|10000|87||106.14|100.74|-0.02|3.12|2300|0|0|01|040004D6|0|41A00000|| +38|2023-10-06T20:29:13.2540000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4150|10000|87||106.14|100.74|-0.02|3.12|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:13.2990000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|26300000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|7444682|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4150|10000|||106.14|100.74|-0.02|3.12|0001B2D9|0|1| +38|2023-10-06T20:29:13.2990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3850|10000|87||106.14|100.74|-0.02|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:13.2990000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:29:13.2990000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:29:12.8420000-07:00|Change|40022566||||||||||| +261|2023-10-06T20:29:12.8420000-07:00|Change|40022563||||||||||| +261|2023-10-06T20:29:12.8420000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:29:12.8420000-07:00|Change|40022565||||||||||| +37|2023-10-06T20:29:13.3430000-07:00|10FF0008|Kokosaze Lulusaze|0001B2D5|79111||||||99.94|97.02|0.00|3.14| +37|2023-10-06T20:29:13.3880000-07:00|40022550|Zeromus|0001B2D6|7418776||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:13.4330000-07:00|40022550|Zeromus|0001B2D7|7406831||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:13.5210000-07:00|40022550|Zeromus|0001B2D8|7406830||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:13.5210000-07:00|10FF0003|Gegehi Gehi|0001B2D8|73085|73085|3850|10000|87||106.89|100.62|0.00|-2.77|2300|0|0|01|050004D3|0|C1F00000|| +39|2023-10-06T20:29:13.5210000-07:00|10FF0006|Wowobora Gogobora|77122|80739|4350|10000|||94.55|101.21|0.00|-2.89| +261|2023-10-06T20:29:13.0630000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:29:13.1570000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:13.1570000-07:00|Change|10FF0004||||||||| +20|2023-10-06T20:29:13.6990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|105.47|106.32|-0.02|0.30| +21|2023-10-06T20:29:13.7430000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|12650000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||94.30|92.87|0.00|3.11|7406830|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B2DA|0|1| +38|2023-10-06T20:29:13.7430000-07:00|40022550|Zeromus|005A5A00|7406830|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:13.7430000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40022550|Zeromus|00|40478540|128564| +21|2023-10-06T20:29:13.7870000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35724003|2DFC0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|7406830|40478540|10000|10000|||100.00|80.10|0.00|0.00|82172|90128|10000|10000|||106.54|96.53|0.00|-2.66|0001B2DB|0|1| +261|2023-10-06T20:29:13.3540000-07:00|Change|40022562||||||||| +261|2023-10-06T20:29:13.3540000-07:00|Change|40022560||||||||| +261|2023-10-06T20:29:13.3540000-07:00|Change|4002255F||||||||| +261|2023-10-06T20:29:13.3540000-07:00|Change|4002255E||||||||| +39|2023-10-06T20:29:13.8760000-07:00|10FF0005|Wuwuchu Wuchu|86685|90055|10000|10000|||92.18|95.13|0.00|-2.51| +21|2023-10-06T20:29:13.8760000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7406830|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||94.18|92.71|0.00|3.11|0001B2DC|0|1| +21|2023-10-06T20:29:13.8760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7406830|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||106.68|95.38|0.00|2.69|0001B2DD|0|1| +31|2023-10-06T20:29:13.8760000-07:00|10FF0001||||| +20|2023-10-06T20:29:13.9200000-07:00|4002255E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.62|81.91|0.00|0.00| +20|2023-10-06T20:29:13.9200000-07:00|4002255F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|118.33|89.99|0.00|0.00| +20|2023-10-06T20:29:13.9200000-07:00|40022560|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.66|96.39|0.00|0.00| +20|2023-10-06T20:29:13.9200000-07:00|40022561|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.27|103.93|0.00|0.00| +20|2023-10-06T20:29:13.9200000-07:00|40022562|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.59|91.37|0.00|0.00| +261|2023-10-06T20:29:13.4450000-07:00|Change|40022561||||||||||||||||| +21|2023-10-06T20:29:13.9650000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|FBE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7406830|40478540|10000|10000|||100.00|80.10|0.00|0.00|85785|90055|10000|10000|||92.18|95.13|0.00|-2.51|0001B2DE|0|1| +261|2023-10-06T20:29:13.5410000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:29:14.0100000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38B70000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|7406830|40478540|10000|10000|||100.00|80.10|0.00|0.00|77122|80739|4350|10000|||94.53|101.24|0.00|2.89|0001B2DF|0|1| +39|2023-10-06T20:29:14.0540000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9450|10000|||103.75|96.48|0.00|1.86| +21|2023-10-06T20:29:14.0540000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2C530000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|7406830|40478540|10000|10000|||100.00|80.10|0.00|0.00|86685|90055|10000|10000|||92.16|95.02|0.00|-2.26|0001B2E0|0|1| +37|2023-10-06T20:29:14.0990000-07:00|40022550|Zeromus|0001B2D9|7397054||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:14.0990000-07:00|10FF0003|Gegehi Gehi|0001B2D9|73085|73085|3850|10000|87||108.66|100.13|0.00|-2.78|2300|0|0|01|050004D3|0|41F00000|| +38|2023-10-06T20:29:14.0990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|3850|10000|87||108.66|100.13|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:14.1430000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4750|10000|||105.41|107.04|0.00|-2.26| +261|2023-10-06T20:29:13.6410000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:29:14.2330000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7397054|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9450|10000|||104.40|96.50|0.00|1.74|0001B2E1|0|1| +261|2023-10-06T20:29:13.7580000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:29:13.8700000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:29:13.8700000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:29:13.8700000-07:00|Change|40022560||||||||||| +261|2023-10-06T20:29:13.8700000-07:00|Change|4002255F||||||||||| +37|2023-10-06T20:29:14.4120000-07:00|40022550|Zeromus|0001B2DC|7394170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:14.4120000-07:00|40022550|Zeromus|0001B2DD|7391318||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:14.5010000-07:00|40022550|Zeromus|0001B2DE|7387288||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:14.5460000-07:00|10FF0007|Kehabiqo Febiqo|0001B2DA|123855|128564|10000|10000|0||94.29|92.06|0.00|2.89|1500|0|0|01|08000000|0|0|| +37|2023-10-06T20:29:14.5460000-07:00|40022550|Zeromus|0001B2E0|7375941||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:14.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123855|128564|10000|10000|0||94.29|92.06|0.00|2.89|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:14.5460000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:14.5460000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:29:14.0950000-07:00|Change|40022B84||||||||||| +21|2023-10-06T20:29:14.5900000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7375941|40478540|10000|10000|||100.00|80.10|0.00|0.00|77122|80739|3950|10000|||94.46|101.62|0.00|-1.01|0001B2E2|0|1| +24|2023-10-06T20:29:14.6340000-07:00|10FF0002|Suchichi Suchi|HoT|0|D87|82172|90128|10000|10000|||109.06|95.64|0.00|-2.55|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4750|10000|||105.39|107.19|0.00|-2.94| +21|2023-10-06T20:29:14.6340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30C00000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7375941|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4750|10000|||105.39|107.19|0.00|-2.94|0001B2E3|0|1| +38|2023-10-06T20:29:14.6340000-07:00|10FF0002|Suchichi Suchi|005A5A16|85635|90128|10000|10000|35||109.06|95.64|0.00|-2.55|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:14.6780000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|154E|123855|128564|10000|10000|||94.85|91.46|0.00|2.79|10FF0006|Wowobora Gogobora|0|77122|80739|3950|10000|||94.46|101.62|0.00|-1.01| +37|2023-10-06T20:29:14.6780000-07:00|40022550|Zeromus|0001B2DF|7361422||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:14.6780000-07:00|10FF0003|Gegehi Gehi|HoT|0|C67|73085|73085|3850|10000|||110.78|99.35|-0.01|-2.80|10FF0006|Wowobora Gogobora|0|77122|80739|3950|10000|||94.46|101.62|0.00|-1.01| +38|2023-10-06T20:29:14.6790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||94.85|91.46|0.00|2.79|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:14.6790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4400|10000|87||110.78|99.35|-0.01|-2.80|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:14.1890000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:29:14.7670000-07:00|40022550|Zeromus|0001B2E1|7361245||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:14.8120000-07:00|40022550|Zeromus|0001B2DB|7349473||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:14.8120000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|159B0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|7361422|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||95.36|90.92|0.00|2.71|0001B2E4|0|1| +261|2023-10-06T20:29:14.2800000-07:00|Change|4002255C||||||||| +261|2023-10-06T20:29:14.2800000-07:00|Change|4002255D||||||||| +261|2023-10-06T20:29:14.2800000-07:00|Change|4002255A||||||||| +261|2023-10-06T20:29:14.2800000-07:00|Change|40022559||||||||| +261|2023-10-06T20:29:14.2800000-07:00|Change|4002255B||||||||| +00|2023-10-06T20:29:14.0000000-07:00|0044|Zeromus|Return to me, my beloved star!| +24|2023-10-06T20:29:14.8560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|15EA|127791|127791|9200|10000|||107.24|94.66|0.00|2.73|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4350|10000|||105.39|107.19|0.00|-2.94| +24|2023-10-06T20:29:14.8560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D30|80739|80739|4350|10000|||105.39|107.19|0.00|-2.94|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4350|10000|||105.39|107.19|0.00|-2.94| +21|2023-10-06T20:29:14.8560000-07:00|4002256C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.70|86.65|0.00|0.00|0001B2E5|0|0| +21|2023-10-06T20:29:14.8560000-07:00|4002256D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.70|100.15|0.00|0.00|0001B2E6|0|0| +21|2023-10-06T20:29:14.8560000-07:00|4002256E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.95|99.96|0.00|0.00|0001B2E7|0|0| +38|2023-10-06T20:29:14.8560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9200|10000|24||107.24|94.66|0.00|2.73|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:29:14.8560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4350|10000|39||105.39|107.19|0.00|-2.94|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:14.3720000-07:00|Change|4002256D||||||||||| +261|2023-10-06T20:29:14.3720000-07:00|Change|4002256E||||||||||| +261|2023-10-06T20:29:14.3720000-07:00|Change|4002256C||||||||||| +20|2023-10-06T20:29:14.9000000-07:00|40022550|Zeromus|8B6B|Nostalgia|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:14.9000000-07:00|40022559|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|113.91|92.75|0.00|0.00| +20|2023-10-06T20:29:14.9000000-07:00|4002255A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.19|82.23|0.00|0.00| +20|2023-10-06T20:29:14.9000000-07:00|4002255B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|103.19|96.92|0.00|0.00| +20|2023-10-06T20:29:14.9000000-07:00|4002255C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.34|105.20|0.00|0.00| +20|2023-10-06T20:29:14.9000000-07:00|4002255D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|110.20|98.69|0.00|0.00| +261|2023-10-06T20:29:14.3720000-07:00|Change|40022550||||||||||||| +24|2023-10-06T20:29:14.9440000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D45|86685|90055|10000|10000|||90.93|91.98|0.00|-2.57|10FF0006|Wowobora Gogobora|0|77122|80739|3950|10000|||94.13|103.89|0.00|-0.31| +38|2023-10-06T20:29:14.9440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|35||90.93|91.98|0.00|-2.57|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:14.9900000-07:00|10FF0003|Gegehi Gehi|73085|73085|4600|10000|||110.96|99.38|0.00|-0.68| +24|2023-10-06T20:29:14.9900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|14CE|77122|80739|3950|10000|||94.13|103.89|0.00|-0.31|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4350|10000|||105.39|107.20|-0.02|-2.70| +21|2023-10-06T20:29:14.9900000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7349473|40478540|10000|10000|||100.00|80.10|0.00|0.00|85635|90128|10000|10000|||109.68|95.35|0.00|-3.13|0001B2E8|0|1| +21|2023-10-06T20:29:14.9900000-07:00|10FF0008|Kokosaze Lulusaze|651D|Crimson Strike|40022550|Zeromus|150003|46320000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|7349473|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9450|10000|||108.70|95.16|0.00|1.84|0001B2E9|0|1| +38|2023-10-06T20:29:14.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4500|10000|39||94.13|103.89|0.00|-0.31|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:14.9900000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:29:14.4730000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:29:14.4730000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:29:14.4730000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:29:15.1230000-07:00|40022550|Zeromus|0001B2E2|7349438||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:15.1690000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|712003|20540000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|7349438|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||107.24|94.66|0.00|-2.68|0001B2EA|0|1| +39|2023-10-06T20:29:15.2570000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||96.48|89.21|0.00|2.70| +261|2023-10-06T20:29:14.8110000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:29:14.8110000-07:00|Change|40022CF8||||||||| +21|2023-10-06T20:29:15.3020000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4350|10000|||104.96|107.50|0.00|-1.00|80739|80739|4350|10000|||104.96|107.50|0.00|-1.00|0001B2EB|0|1| +261|2023-10-06T20:29:14.8110000-07:00|Change|40022559||||||||||| +261|2023-10-06T20:29:14.8110000-07:00|Change|4002255B||||||||||| +261|2023-10-06T20:29:14.8110000-07:00|Change|4002255A||||||||||| +261|2023-10-06T20:29:14.8110000-07:00|Change|4002255C||||||||||| +261|2023-10-06T20:29:14.8110000-07:00|Change|4002255D||||||||||| +37|2023-10-06T20:29:15.3460000-07:00|40022550|Zeromus|0001B2E4|7343907||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:15.4350000-07:00|40022550|Zeromus|0001B2E3|7331427||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:15.4800000-07:00|10FF0002|Suchichi Suchi|86536|90128|10000|10000|||110.20|95.35|0.00|1.96| +20|2023-10-06T20:29:15.4800000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|94.89|105.84|0.00|0.23| +261|2023-10-06T20:29:15.0410000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:29:15.5250000-07:00|40022550|Zeromus|0001B2E8|7326613||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:15.5250000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D92|128564|128564|10000|10000|||96.56|89.13|0.00|2.73|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||96.56|89.13|0.00|2.73| +24|2023-10-06T20:29:15.5250000-07:00|40022550|Zeromus|DoT|A92|48A|7331427|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9450|10000|||109.99|95.07|-0.02|-2.37| +24|2023-10-06T20:29:15.5250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D7B|79111|79111|9450|10000|||109.99|95.07|-0.02|-2.37|10FF0006|Wowobora Gogobora|0|80739|80739|4500|10000|||95.01|106.02|0.00|0.46| +38|2023-10-06T20:29:15.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||96.56|89.13|0.00|2.73|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:15.5250000-07:00|40022550|Zeromus|005A5A00|7325451|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:15.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9450|10000|40||109.99|95.07|-0.02|-2.37|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:15.0410000-07:00|Change|40022B84||||||||||| +04|2023-10-06T20:29:15.0410000-07:00|40022CF2|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|75851|0|10000|||101.83|102.06|0.00|-3.14| +261|2023-10-06T20:29:15.0410000-07:00|Remove|40022CF2| +37|2023-10-06T20:29:15.7470000-07:00|40022550|Zeromus|0001B2E9|7307481||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:15.2570000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:29:15.7920000-07:00|40022550|Zeromus|0001B2EA|7299205||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:15.7920000-07:00|40022B84|Ruby Carbuncle|322|Embrace|10FF0002|Suchichi Suchi|200004|226A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|86536|90128|10000|10000|||110.49|95.35|0.00|1.56|73956|77430|10000|10000|||101.47|98.22|0.00|2.07|0001B2EC|0|1| +21|2023-10-06T20:29:15.8820000-07:00|40022568|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.39|119.79|0.00|0.00|0001B2ED|0|0| +21|2023-10-06T20:29:15.8820000-07:00|40022569|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.60|99.64|0.00|0.00|0001B2EE|0|0| +21|2023-10-06T20:29:15.8820000-07:00|4002256A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.41|93.94|0.00|0.00|0001B2EF|0|0| +21|2023-10-06T20:29:15.8820000-07:00|4002256B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.70|100.15|0.00|0.00|0001B2F0|0|0| +261|2023-10-06T20:29:15.3530000-07:00|Change|40022568||||||||||| +261|2023-10-06T20:29:15.3530000-07:00|Change|40022569||||||||||| +261|2023-10-06T20:29:15.3530000-07:00|Change|4002256B||||||||||| +261|2023-10-06T20:29:15.3530000-07:00|Change|4002256A||||||||||| +37|2023-10-06T20:29:15.9260000-07:00|10FF0004|Buhojaqe Zijaqe|0001B2EB|80739|80739|4350|10000|39||103.44|108.60|0.00|-1.14|1C00|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T20:29:15.9260000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:29:15.5460000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:29:16.0150000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9400|10000|||107.49|93.06|0.00|3.03| +21|2023-10-06T20:29:16.0600000-07:00|10FF0004|Buhojaqe Zijaqe|40A1|Summon Seraph|10FF0004|Buhojaqe Zijaqe|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4350|10000|||101.96|109.43|0.00|-1.04|80739|80739|4350|10000|||101.96|109.43|0.00|-1.04|0001B2F1|0|1| +38|2023-10-06T20:29:16.1050000-07:00|40022CFF||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:29:16.1050000-07:00|40022CFF||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:29:16.1500000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7299205|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||107.49|93.06|0.00|3.03|0001B2F2|0|1| +20|2023-10-06T20:29:16.1500000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|112.73|104.24|0.00|0.35| +31|2023-10-06T20:29:16.1500000-07:00|10FF0001||||| +261|2023-10-06T20:29:15.6400000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:15.6400000-07:00|Change|40022B84||||||||| +261|2023-10-06T20:29:15.6400000-07:00|Change|10FF0008||||||||| +24|2023-10-06T20:29:16.1940000-07:00|40022550|Zeromus|DoT|0|2684|7299205|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|7299205|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:16.1940000-07:00|40022550|Zeromus|005A5A00|7289345|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:29:16.2840000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F724003|550B0000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|0|0|7299205|40478540|10000|10000|||100.00|80.10|0.00|0.00|86536|90128|10000|10000|||110.51|95.29|0.00|-2.86|0001B2F3|0|1| +38|2023-10-06T20:29:16.2840000-07:00|10FF0002|Suchichi Suchi|005A5A16|86536|90128|10000|10000|35||110.51|95.29|0.00|-2.86|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:16.2840000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:15.7510000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:29:15.8620000-07:00|Change|10FF0004||||||||| +03|2023-10-06T20:29:15.8620000-07:00|40022CFF|Seraph|00|5A|10FF0004|00||8227|10487|73956|77430|10000|10000|||101.63|98.17|0.00|-0.56| +261|2023-10-06T20:29:15.8620000-07:00|Add|40022CFF||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:16.4180000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35D40000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|7289345|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4500|10000|||95.23|106.37|0.00|2.96|0001B2F4|0|1| +261|2023-10-06T20:29:15.9720000-07:00|Change|40022CFF||| +39|2023-10-06T20:29:16.5080000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4305|10000|||95.23|106.37|0.00|2.96| +21|2023-10-06T20:29:16.5080000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C712003|571A0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|7289345|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.44|92.76|0.00|-2.63|0001B2F5|0|1| +37|2023-10-06T20:29:16.6850000-07:00|40022550|Zeromus|0001B2F2|7287635||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:16.2640000-07:00|Change|10FF0007||||||||| +20|2023-10-06T20:29:16.7290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.54|110.39|0.00|-1.38| +261|2023-10-06T20:29:16.3640000-07:00|Change|40022CF8||||||||| +39|2023-10-06T20:29:16.8630000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||83.24|92.76|0.00|2.66| +21|2023-10-06T20:29:16.8630000-07:00|40022563|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.19|118.04|0.00|0.00|0001B2F6|0|0| +21|2023-10-06T20:29:16.8630000-07:00|40022564|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.82|114.08|0.00|0.00|0001B2F7|0|0| +21|2023-10-06T20:29:16.8630000-07:00|40022565|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.39|95.43|0.00|0.00|0001B2F8|0|0| +21|2023-10-06T20:29:16.8630000-07:00|40022566|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.05|94.90|0.00|0.00|0001B2F9|0|0| +21|2023-10-06T20:29:16.8630000-07:00|40022567|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.34|100.46|0.00|0.00|0001B2FA|0|0| +261|2023-10-06T20:29:16.4570000-07:00|Change|40022565||||||||||| +261|2023-10-06T20:29:16.4570000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:29:16.4570000-07:00|Change|40022563||||||||||| +261|2023-10-06T20:29:16.4570000-07:00|Change|40022566||||||||||| +261|2023-10-06T20:29:16.4570000-07:00|Change|40022567||||||||||| +261|2023-10-06T20:29:16.5520000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:29:16.5520000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T20:29:16.9960000-07:00|40022550|Zeromus|0001B2F3|7265864||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:16.9960000-07:00|10FF0002|Suchichi Suchi|0001B2F3|86536|90128|10000|10000|35||108.51|92.81|0.00|-1.73|1600|0|0|01|02000322|0|41F00000|| +38|2023-10-06T20:29:16.9960000-07:00|10FF0002|Suchichi Suchi|005A5A16|86536|90128|10000|10000|35||108.51|92.81|0.00|-1.73|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:17.0420000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9650|10000|||110.52|104.78|0.00|-0.35| +24|2023-10-06T20:29:17.0860000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|161B|128564|128564|10000|10000|||92.79|85.19|0.00|3.10|10FF0006|Wowobora Gogobora|0|80739|80739|4305|10000|||95.23|106.37|0.00|2.96| +37|2023-10-06T20:29:17.0860000-07:00|40022550|Zeromus|0001B2F4|7252084||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:17.0860000-07:00|40022550|Zeromus|0001B2F5|7229786||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:17.0860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||92.79|85.19|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:17.0860000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +39|2023-10-06T20:29:17.1300000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4550|10000|||100.13|110.44|0.00|-2.59| +34|2023-10-06T20:29:17.1310000-07:00|40022CFF|Seraph|40022CFF|Seraph|01| +261|2023-10-06T20:29:16.6640000-07:00|Change|40022CFF||| +21|2023-10-06T20:29:17.1750000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7229786|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.19|92.76|0.00|2.71|0001B2FB|0|1| +21|2023-10-06T20:29:17.2640000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|21BF0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|7229786|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.79|85.19|0.00|3.10|0001B2FC|0|1| +21|2023-10-06T20:29:17.2640000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AFB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7229786|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||92.79|85.19|0.00|3.10|0001B2FD|0|1| +261|2023-10-06T20:29:16.8890000-07:00|Change|10FF0004||||||||||||||||||||||| +20|2023-10-06T20:29:17.4430000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|110.08|105.58|0.00|-0.41| +21|2023-10-06T20:29:17.5810000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|452003|3B1A0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|7229786|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|4600|10000|||112.99|104.94|0.00|-2.66|0001B2FE|0|1| +38|2023-10-06T20:29:17.5810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4400|10000|87||112.99|104.94|0.00|-2.66|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:17.5810000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:29:17.5810000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:29:17.5810000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||83.18|92.76|0.00|2.73|90055|90055|10000|10000|||83.18|92.76|0.00|2.73|0001B2FF|0|1| +38|2023-10-06T20:29:17.5810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|35||83.18|92.76|0.00|2.73|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:17.5810000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:29:17.1220000-07:00|Change|10FF0003||||||||||||||||||||||| +24|2023-10-06T20:29:17.6670000-07:00|10FF0002|Suchichi Suchi|HoT|0|C88|86536|90128|10000|10000|||108.05|92.36|0.00|-1.51|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4550|10000|||99.96|110.46|0.00|3.14| +21|2023-10-06T20:29:17.6670000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35712003|2EB40000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|7229786|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9400|10000|||107.49|93.06|0.00|-2.62|0001B300|0|1| +21|2023-10-06T20:29:17.6670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4E6C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7229786|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4550|10000|||99.96|110.46|0.00|3.14|0001B301|0|1| +38|2023-10-06T20:29:17.6670000-07:00|10FF0002|Suchichi Suchi|005A5A16|89744|90128|10000|10000|35||108.05|92.36|0.00|-1.51|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:17.6670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9650|10000|40||109.99|105.76|0.00|-1.55|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:17.6670000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:29:17.7110000-07:00|40022550|Zeromus|0001B2FB|7226559||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:17.7110000-07:00|10FF0005|Wuwuchu Wuchu|0001B2FB|90055|90055|10000|10000|35||83.18|92.76|0.00|2.73|2700|0|0|01|050004E2|0|C1200000|| +24|2023-10-06T20:29:17.7110000-07:00|10FF0003|Gegehi Gehi|HoT|0|CAC|73085|73085|4400|10000|||112.99|104.94|0.00|-2.66|10FF0006|Wowobora Gogobora|0|80739|80739|4305|10000|||95.38|106.07|0.00|2.61| +38|2023-10-06T20:29:17.7110000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4950|10000|87||112.99|104.94|0.00|-2.66|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:17.8000000-07:00|40022550|Zeromus|0001B2FD|7223748||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:17.8000000-07:00|40022CF8|Carbuncle|75851|75851|10000|10000|||109.96|102.42|0.00|-0.32| +21|2023-10-06T20:29:17.8000000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7226559|40478540|10000|10000|||100.00|80.10|0.00|0.00|89744|90128|10000|10000|||108.05|92.36|0.00|-1.51|0001B302|0|1| +37|2023-10-06T20:29:17.8900000-07:00|40022550|Zeromus|0001B2FC|7215109||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:17.8900000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|15C9|127791|127791|9400|10000|||107.49|93.06|0.00|-2.62|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||99.96|110.46|0.00|3.14| +24|2023-10-06T20:29:17.8900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D36|80739|80739|4150|10000|||99.96|110.46|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4150|10000|||99.96|110.46|0.00|3.14| +21|2023-10-06T20:29:17.8900000-07:00|4002255E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.62|81.91|0.00|0.00|0001B303|0|0| +21|2023-10-06T20:29:17.8900000-07:00|4002255F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.33|89.99|0.00|0.00|0001B304|0|0| +21|2023-10-06T20:29:17.8900000-07:00|40022560|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.66|96.39|0.00|0.00|0001B305|0|0| +21|2023-10-06T20:29:17.8900000-07:00|40022561|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.27|103.93|0.00|0.00|0001B306|0|0| +21|2023-10-06T20:29:17.8900000-07:00|40022562|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.59|91.37|0.00|0.00|0001B307|0|0| +38|2023-10-06T20:29:17.8900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9400|10000|24||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:29:17.4100000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:29:17.4100000-07:00|Change|4002255F||||||||||| +261|2023-10-06T20:29:17.4100000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:29:17.4100000-07:00|Change|40022561||||||||||| +38|2023-10-06T20:29:17.8900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4700|10000|39||99.96|110.46|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:17.4100000-07:00|Change|40022560||||||||||| +20|2023-10-06T20:29:17.9330000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|95.50|105.81|0.00|2.49| +24|2023-10-06T20:29:17.9780000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|D59|90055|90055|10000|10000|||83.18|92.76|0.00|2.73|10FF0006|Wowobora Gogobora|0|80739|80739|4305|10000|||95.56|105.68|0.00|2.43| +38|2023-10-06T20:29:17.9780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|35||83.18|92.76|0.00|2.73|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:17.4100000-07:00|Remove|40022CEF| +261|2023-10-06T20:29:17.5090000-07:00|Change|10FF0008||||||||||||||||||||||| +261|2023-10-06T20:29:17.6050000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:29:18.0230000-07:00|10FF0003|Gegehi Gehi|73085|73085|5150|10000|||112.99|104.94|0.00|-2.66| +24|2023-10-06T20:29:18.0230000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D53|80739|80739|4305|10000|||95.58|105.65|0.00|2.56|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4700|10000|||99.96|110.46|0.00|3.14| +22|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0007|Kehabiqo Febiqo|5540E|5B10000|1C640E|83C0000|4|1BE10000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|0001B308|0|8| +22|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0005|Wuwuchu Wuchu|5C40E|5B10000|1C640E|83C0000|4|1BD10000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||83.18|92.76|0.00|2.73|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|0001B308|1|8| +22|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0001|Sesuga Sapisuga|5E00E|5B10000|1C640E|83C0000|200004|2E2B0000|0|0|0|0|0|0|0|0|0|0|127791|127791|9400|10000|||107.49|93.06|0.00|-2.62|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|0001B308|2|8| +22|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0002|Suchichi Suchi|5CF0E|5B10000|1C640E|83C0000|200004|2D4D0000|0|0|0|0|0|0|0|0|0|0|89744|90128|10000|10000|||108.05|92.36|0.00|-1.51|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|0001B308|3|8| +22|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0006|Wowobora Gogobora|54E0E|5B10000|1C640E|83C0000|200004|2E650000|0|0|0|0|0|0|0|0|0|0|80739|80739|4305|10000|||95.58|105.65|0.00|2.56|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|0001B308|4|8| +22|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0004|Buhojaqe Zijaqe|54E0E|5B10000|1C640E|83C0000|4|1C5A0000|0|0|0|0|0|0|0|0|0|0|80739|80739|4700|10000|||99.96|110.46|0.00|3.14|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|0001B308|5|8| +22|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0008|Kokosaze Lulusaze|55A0E|5B10000|1C640E|83C0000|200004|2E500000|0|0|0|0|0|0|0|0|0|0|79111|79111|9650|10000|||109.91|105.91|0.00|-2.78|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|0001B308|6|8| +22|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0003|Gegehi Gehi|5D20E|5B10000|1C640E|83C0000|4|1BA40000|0|0|0|0|0|0|0|0|0|0|73085|73085|4950|10000|||112.99|104.94|0.00|-2.66|128564|128564|10000|10000|||92.79|85.28|0.00|0.55|0001B308|7|8| +38|2023-10-06T20:29:18.0230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|14||92.79|85.28|0.00|0.55|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.0230000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:29:18.0230000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:29:18.0230000-07:00|10FF0002|Suchichi Suchi|005A5A16|89744|90128|10000|10000|50||108.05|92.36|0.00|-1.51|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.0230000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|90128|128564| +26|2023-10-06T20:29:18.0230000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|90128|128564| +38|2023-10-06T20:29:18.0230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9650|10000|55||109.91|105.91|0.00|-2.78|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.0230000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|79111|128564| +26|2023-10-06T20:29:18.0230000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|79111|128564| +38|2023-10-06T20:29:18.0230000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4855|10000|54||95.58|105.65|0.00|2.56|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.0230000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:18.0230000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|80739|128564| +26|2023-10-06T20:29:18.0230000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|80739|128564| +38|2023-10-06T20:29:18.0230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9400|10000|39||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.0230000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +26|2023-10-06T20:29:18.0230000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +38|2023-10-06T20:29:18.0230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4700|10000|54||99.96|110.46|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.0230000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +26|2023-10-06T20:29:18.0230000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +38|2023-10-06T20:29:18.0230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|102||112.99|104.94|0.00|-2.66|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.0230000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73085|128564| +26|2023-10-06T20:29:18.0230000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73085|128564| +38|2023-10-06T20:29:18.0230000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|50||83.18|92.76|0.00|2.73|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.0230000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|90055|128564| +26|2023-10-06T20:29:18.0230000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|90055|128564| +37|2023-10-06T20:29:18.1100000-07:00|10FF0005|Wuwuchu Wuchu|0001B2FF|90055|90055|10000|10000|50||83.18|92.76|0.00|2.73|2700|0|0|01|050004E2|0|41200000|| +38|2023-10-06T20:29:18.1110000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|50||83.18|92.76|0.00|2.73|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:17.6050000-07:00|Change|40022B84||||||| +39|2023-10-06T20:29:18.2440000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||92.79|85.29|0.00|-0.04| +261|2023-10-06T20:29:17.7150000-07:00|Change|40022CFF||||||||| +37|2023-10-06T20:29:18.3330000-07:00|40022550|Zeromus|0001B302|7212083||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:18.3780000-07:00|40022550|Zeromus|0001B2FE|7196953||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:17.9420000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T20:29:17.9420000-07:00|Change|40022CF8||||||||| +37|2023-10-06T20:29:18.4230000-07:00|40022550|Zeromus|0001B300|7184997||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:18.4230000-07:00|10FF0001|Sesuga Sapisuga|0001B300|127791|127791|10000|10000|39||107.49|93.06|0.00|-2.62|1300|0|0|0| +21|2023-10-06T20:29:18.4240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|B230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7212083|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9400|10000|||107.49|93.06|0.00|-2.62|0001B309|0|1| +31|2023-10-06T20:29:18.4240000-07:00|10FF0001||||| +261|2023-10-06T20:29:17.9420000-07:00|Change|10FF0001||||| +37|2023-10-06T20:29:18.4680000-07:00|40022550|Zeromus|0001B301|7164921||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:18.4680000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||108.05|92.36|0.00|-1.51| +38|2023-10-06T20:29:18.5120000-07:00|40022CFF|Seraph|005A5A00|73956|77430|10000|10000|0||101.51|98.26|0.00|-0.65|0|0|0||||||| +26|2023-10-06T20:29:18.5120000-07:00|30|Well Fed|1258.78|10FF0004|Buhojaqe Zijaqe|40022CFF|Seraph|2968|77430|80739| +26|2023-10-06T20:29:18.5120000-07:00|7AD|Summon Order III|30.00|40022CFF|Seraph|40022CFF|Seraph|01|77430|77430| +21|2023-10-06T20:29:18.5120000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4700|10000|||99.95|110.46|0.00|-2.71|80739|80739|4700|10000|||99.95|110.46|0.00|-2.71|0001B30A|0|1| +24|2023-10-06T20:29:18.5560000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|167E|128564|128564|10000|10000|||92.79|85.31|-0.02|-0.04|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||92.79|85.31|-0.02|-0.04| +24|2023-10-06T20:29:18.5560000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1C03|79111|79111|9650|10000|||109.91|105.91|0.00|-2.78|10FF0006|Wowobora Gogobora|0|80739|80739|4855|10000|||95.63|105.55|0.00|2.97| +21|2023-10-06T20:29:18.5560000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|26BB0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|7164921|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5150|10000|||112.99|104.94|0.00|-2.66|0001B30B|0|1| +38|2023-10-06T20:29:18.5560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|14||92.79|85.31|-0.02|-0.04|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:18.5560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9650|10000|55||109.91|105.91|0.00|-2.78|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:18.5560000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4850|10000|102||112.99|104.94|0.00|-2.66|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:18.5560000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:29:18.5560000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:29:18.1620000-07:00|Change|10FF0003||| +22|2023-10-06T20:29:18.7350000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|1DB40000|B40E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|80739|80739|4855|10000|||95.63|105.55|0.00|2.97|73956|77430|10000|10000|||100.55|99.08|0.00|-0.78|0001B30C|0|8| +22|2023-10-06T20:29:18.7350000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1CA90000|A90E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|80739|80739|4700|10000|||99.14|110.32|0.00|-1.93|73956|77430|10000|10000|||100.55|99.08|0.00|-0.78|0001B30C|1|8| +22|2023-10-06T20:29:18.7350000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|1D530000|530E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|73956|77430|10000|10000|||100.55|99.08|0.00|-0.78|0001B30C|2|8| +22|2023-10-06T20:29:18.7350000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0002|Suchichi Suchi|4|1D4C0000|4C0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||108.00|92.39|0.00|-1.27|73956|77430|10000|10000|||100.55|99.08|0.00|-0.78|0001B30C|3|8| +22|2023-10-06T20:29:18.7350000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|4|1C210000|210E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|79111|79111|9650|10000|||109.91|105.91|0.00|-2.78|73956|77430|10000|10000|||100.55|99.08|0.00|-0.78|0001B30C|4|8| +22|2023-10-06T20:29:18.7350000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|4|1D350000|350E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|73085|73085|4850|10000|||112.99|104.94|0.00|-2.66|73956|77430|10000|10000|||100.55|99.08|0.00|-0.78|0001B30C|5|8| +22|2023-10-06T20:29:18.7350000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|1C2F0000|2F0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||92.79|85.35|0.00|-0.01|73956|77430|10000|10000|||100.55|99.08|0.00|-0.78|0001B30C|6|8| +22|2023-10-06T20:29:18.7350000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0005|Wuwuchu Wuchu|4|1CB30000|B30E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||83.18|92.76|0.00|2.73|73956|77430|10000|10000|||100.55|99.08|0.00|-0.78|0001B30C|7|8| +38|2023-10-06T20:29:18.7350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||92.79|85.35|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.7350000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:29:18.7350000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|58||108.00|92.39|0.00|-1.27|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.7350000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0002|Suchichi Suchi|00|90128|77430| +38|2023-10-06T20:29:18.7350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9650|10000|64||109.91|105.91|0.00|-2.78|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.7350000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +38|2023-10-06T20:29:18.7350000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4855|10000|63||95.63|105.55|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.7350000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0006|Wowobora Gogobora|00|80739|77430| +38|2023-10-06T20:29:18.7350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|45||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.7350000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0001|Sesuga Sapisuga|00|127791|77430| +38|2023-10-06T20:29:18.7350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4700|10000|63||99.14|110.32|0.00|-1.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.7350000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +38|2023-10-06T20:29:18.7350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4850|10000|112||112.99|104.94|0.00|-2.66|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.7350000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0003|Gegehi Gehi|00|73085|77430| +38|2023-10-06T20:29:18.7350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|58||83.18|92.76|0.00|2.73|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.7350000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +21|2023-10-06T20:29:18.7790000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D722003|40540000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|7164921|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||108.00|92.39|0.00|-1.27|0001B30D|0|1| +38|2023-10-06T20:29:18.7790000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|58||108.00|92.39|0.00|-1.27|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:18.7790000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:29:18.7790000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:18.8230000-07:00|10FF0007|Kehabiqo Febiqo|0001B308|128564|128564|10000|10000|20||92.79|85.35|0.00|-0.01|1500|0|0|02|040005B1|0|41E9F1A8|||||| +21|2023-10-06T20:29:18.8690000-07:00|40022559|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.91|92.75|0.00|0.00|0001B30E|0|0| +21|2023-10-06T20:29:18.8690000-07:00|4002255A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.19|82.23|0.00|0.00|0001B30F|0|0| +21|2023-10-06T20:29:18.8690000-07:00|4002255B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||103.19|96.92|0.00|0.00|0001B310|0|0| +21|2023-10-06T20:29:18.8690000-07:00|4002255C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.34|105.20|0.00|0.00|0001B311|0|0| +21|2023-10-06T20:29:18.8690000-07:00|4002255D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.20|98.69|0.00|0.00|0001B312|0|0| +21|2023-10-06T20:29:18.8690000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|39650000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|7164921|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4855|10000|||95.63|105.55|0.00|2.97|0001B313|0|1| +261|2023-10-06T20:29:18.3470000-07:00|Change|40022559||||||||||| +21|2023-10-06T20:29:18.9130000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|710003|380D0000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|7164921|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.18|92.76|0.00|2.73|0001B314|0|1| +261|2023-10-06T20:29:18.3470000-07:00|Change|4002255B||||||||||| +261|2023-10-06T20:29:18.3470000-07:00|Change|4002255A||||||||||| +38|2023-10-06T20:29:18.9130000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|58||83.18|92.76|0.00|2.73|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:18.9130000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +261|2023-10-06T20:29:18.3470000-07:00|Change|4002255C||||||||||| +261|2023-10-06T20:29:18.3470000-07:00|Change|4002255D||||||||||| +37|2023-10-06T20:29:18.9570000-07:00|10FF0005|Wuwuchu Wuchu|0001B308|90055|90055|10000|10000|58||83.18|92.76|0.00|2.22|2701|0|0|03|060005B1|0|41E8E145|||||||||| +37|2023-10-06T20:29:18.9570000-07:00|40022550|Zeromus|0001B309|7162070||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:19.0020000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62| +37|2023-10-06T20:29:19.0900000-07:00|10FF0001|Sesuga Sapisuga|0001B308|127791|127791|10000|10000|45||107.49|93.06|0.00|-2.62|1302|0|0|02|020005B1|0|41E7CED6|||||| +261|2023-10-06T20:29:18.5460000-07:00|Change|10FF0006||||||||||||||||||||||| +24|2023-10-06T20:29:19.1790000-07:00|40022550|Zeromus|DoT|0|2EAF|7162070|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|7162070|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:19.1790000-07:00|40022550|Zeromus|005A5A00|7150119|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:29:19.2240000-07:00|10FF0002|Suchichi Suchi|0001B308|90128|90128|10000|10000|58||107.84|92.47|0.00|-2.58|1603|0|0|03|030005B1|0|41E6BE74|||||||||| +21|2023-10-06T20:29:19.2240000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|7162070|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4700|10000|||97.73|109.98|0.00|-2.01|0001B315|0|1| +261|2023-10-06T20:29:18.7820000-07:00|Change|40022CFF||||||||| +37|2023-10-06T20:29:19.3130000-07:00|40022550|Zeromus|0001B30B|7140204||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:19.3130000-07:00|10FF0003|Gegehi Gehi|0001B30B|73085|73085|4850|10000|112||113.07|104.90|0.00|-2.69|2300|0|0|01|0B0004D3|0|41F00000|| +38|2023-10-06T20:29:19.3130000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4850|10000|112||113.07|104.90|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:19.3570000-07:00|10FF0006|Wowobora Gogobora|0001B308|80739|80739|4455|10000|63||95.89|105.19|0.00|2.87|2804|0|0|02|040005B1|0|41E5AC05|||||| +37|2023-10-06T20:29:19.4010000-07:00|40022550|Zeromus|0001B30D|7123736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:19.4010000-07:00|10FF0002|Suchichi Suchi|0001B30D|90128|90128|10000|10000|58||107.80|92.48|0.00|-2.58|1600|0|0|01|0A000323|0|41F00000|| +38|2023-10-06T20:29:19.4010000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|58||107.80|92.48|0.00|-2.58|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:18.8950000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:29:19.4460000-07:00|40022550|Zeromus|0001B314|7109387||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:19.4460000-07:00|10FF0005|Wuwuchu Wuchu|0001B314|90055|90055|10000|10000|58||83.19|92.76|0.00|2.52|2700|0|0|01|0C000A1B|01|41F00000|| +38|2023-10-06T20:29:19.4460000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|58||83.19|92.76|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:19.4900000-07:00|10FF0004|Buhojaqe Zijaqe|0001B308|80739|80739|4300|10000|63||97.73|109.87|0.00|3.07|1C05|0|0|02|070005B1|0|41E49BA2|||||| +39|2023-10-06T20:29:19.4900000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4660|10000|||96.46|104.41|0.00|2.65| +24|2023-10-06T20:29:19.5350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15DE|128564|128564|10000|10000|||92.99|87.56|-0.01|0.09|10FF0006|Wowobora Gogobora|0|80739|80739|4455|10000|||96.46|104.41|0.00|2.65| +37|2023-10-06T20:29:19.5350000-07:00|40022550|Zeromus|0001B313|7094694||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:19.5350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||92.99|87.56|-0.01|0.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:19.5350000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:29:19.6240000-07:00|10FF0008|Kokosaze Lulusaze|0001B308|79111|79111|9650|10000|64||109.91|105.91|0.00|-2.78|1B06|0|0|02|020005B1|0|41E38933|||||| +37|2023-10-06T20:29:19.6240000-07:00|10FF0006|Wowobora Gogobora|0001B30C|80739|80739|4660|10000|63||96.95|103.79|0.00|2.60|2800|0|0|01|0900077D|0|41E8E145|| +21|2023-10-06T20:29:19.6240000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B716003|87190000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|7094694|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.28|92.61|0.00|2.62|0001B316|0|1| +38|2023-10-06T20:29:19.6240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|58||83.28|92.61|0.00|2.62|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:19.6240000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:29:19.6240000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:29:19.6240000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:29:19.7140000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F712003|510A0000|143E|340000|4|17F78000|11B|2A8000|0|0|0|0|0|0|0|0|7094694|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||93.00|87.66|0.00|0.09|0001B317|0|1| +21|2023-10-06T20:29:19.7140000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|4E2A0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|7094694|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9650|10000|||109.91|105.91|0.00|-2.78|0001B318|0|1| +38|2023-10-06T20:29:19.7140000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4660|10000|63||97.36|103.26|0.00|2.56|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:19.7140000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:29:19.7140000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:29:19.7580000-07:00|10FF0003|Gegehi Gehi|0001B308|73085|73085|4850|10000|112||114.00|104.47|0.00|-2.72|2307|0|0|02|050005B1|0|41E278D0|||||| +37|2023-10-06T20:29:19.7580000-07:00|10FF0004|Buhojaqe Zijaqe|0001B30C|80739|80739|4300|10000|63||97.73|109.82|-0.01|3.07|1C01|0|0|01|0B00077D|0|41E7D0E2|| +261|2023-10-06T20:29:19.2200000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:29:19.8470000-07:00|40022550|Zeromus|0001B315|7094694|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:29:19.8470000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:29:19.8470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||93.00|87.66|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:19.8470000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:19.8470000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:29:19.8900000-07:00|10FF0001|Sesuga Sapisuga|0001B30C|127791|127791|10000|10000|45||107.49|93.06|0.00|-2.62|1302|0|0|01|0600077D|0|41E6C07F|| +39|2023-10-06T20:29:19.8900000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||83.50|92.21|0.00|2.40| +21|2023-10-06T20:29:19.8910000-07:00|40022550|Zeromus|8B6B|Nostalgia|40022550|Zeromus|1B|8B6B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7094694|40478540|10000|10000|||100.00|80.10|0.00|0.00|7094694|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B319|0|1| +261|2023-10-06T20:29:19.4130000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:29:19.4130000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:29:19.4130000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:29:19.4130000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:29:19.4130000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:29:19.4130000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:29:19.4130000-07:00|Change|40022568||||||||| +261|2023-10-06T20:29:19.4130000-07:00|Change|40022569||||||||| +20|2023-10-06T20:29:19.9800000-07:00|40022568|Zeromus|8B73|Primal Roar|40022568|Zeromus|9.400|90.39|119.79|0.00|0.00| +20|2023-10-06T20:29:19.9800000-07:00|40022569|Zeromus|8B72|Roar|40022569|Zeromus|6.400|86.60|99.64|0.00|0.00| +20|2023-10-06T20:29:19.9800000-07:00|4002256A|Zeromus|8B71|Roar|4002256A|Zeromus|5.400|100.41|93.94|0.00|0.00| +20|2023-10-06T20:29:19.9800000-07:00|4002256B|Zeromus|8B70|Bury|4002256B|Zeromus|3.400|100.70|100.15|0.00|0.00| +20|2023-10-06T20:29:19.9800000-07:00|4002256C|Zeromus|8B6F|Bury|4002256C|Zeromus|2.400|91.70|86.65|0.00|0.00| +04|2023-10-06T20:29:19.4130000-07:00|40022B84|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||101.61|98.16|0.00|1.88| +20|2023-10-06T20:29:19.9800000-07:00|4002256D|Zeromus|8B6E|Bury|4002256D|Zeromus|1.400|118.70|100.15|0.00|0.00| +20|2023-10-06T20:29:19.9800000-07:00|4002256E|Zeromus|8B6D|Bury|4002256E|Zeromus|0.400|99.95|99.96|0.00|0.00| +38|2023-10-06T20:29:19.9800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4300|10000|63||97.73|109.82|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:19.9800000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:29:19.9800000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:29:19.5120000-07:00|Remove|40022B84| +37|2023-10-06T20:29:20.0250000-07:00|10FF0002|Suchichi Suchi|0001B30C|90128|90128|10000|10000|58||107.80|92.51|0.00|-1.63|1603|0|0|01|0600077D|0|41E5AE10|| +39|2023-10-06T20:29:20.0250000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9550|10000|||109.91|105.91|0.00|-2.78| +261|2023-10-06T20:29:19.6110000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:29:20.1150000-07:00|40022550|Zeromus|0001B316|7060109||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:20.1150000-07:00|10FF0005|Wuwuchu Wuchu|0001B316|90055|90055|10000|10000|58||83.58|92.05|0.00|2.52|2700|0|0|01|0C000A1C|0|42700000|| +38|2023-10-06T20:29:20.1150000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|58||107.76|92.70|-0.02|-1.40|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.1150000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:29:20.1150000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:20.1150000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|58||83.58|92.05|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:20.1580000-07:00|10FF0008|Kokosaze Lulusaze|0001B30C|79111|79111|9550|10000|64||109.91|105.91|0.00|-2.78|1B04|0|0|01|0700077D|0|41E49BA1|| +39|2023-10-06T20:29:20.1590000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4500|10000|||97.73|109.82|0.00|3.07| +21|2023-10-06T20:29:20.1590000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41712003|3F170000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|7094694|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|0001B31A|0|1| +38|2023-10-06T20:29:20.1590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|45||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:20.1590000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:29:20.1590000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:29:19.7250000-07:00|Change|10FF0008||| +38|2023-10-06T20:29:20.2490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9550|10000|64||109.91|105.91|0.00|-2.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.2490000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:29:20.2490000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:29:20.2930000-07:00|10FF0003|Gegehi Gehi|0001B30C|73085|73085|4850|10000|112||114.12|104.42|0.00|-2.72|2305|0|0|01|0400077D|0|41E38932|| +37|2023-10-06T20:29:20.3370000-07:00|40022550|Zeromus|0001B318|7040099||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:20.3370000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.02|102.31|0.00|2.57| +21|2023-10-06T20:29:20.3830000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|750003|44970000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|7040099|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9550|10000|||109.91|105.91|0.00|-2.78|0001B31B|0|1| +21|2023-10-06T20:29:20.3830000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CE40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7040099|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||85.00|91.87|0.00|2.42|0001B31C|0|1| +38|2023-10-06T20:29:20.3830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9150|10000|64||109.91|105.91|0.00|-2.78|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:20.3830000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:20.3830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|58||85.00|91.87|0.00|2.42|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.3830000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:29:20.3830000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:29:19.9580000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:29:19.9580000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:29:19.9580000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:29:19.9580000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:29:19.9580000-07:00|Change|40022568||||||||||||| +37|2023-10-06T20:29:20.4270000-07:00|10FF0007|Kehabiqo Febiqo|0001B30C|128564|128564|10000|10000|20||93.38|88.35|-0.02|2.22|1506|0|0|01|0900077D|0|41E276C3|| +261|2023-10-06T20:29:19.9580000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:29:19.9580000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:29:19.9580000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T20:29:20.5160000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|4850|10000|112||114.12|104.42|0.00|-2.72|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.5160000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:29:20.5160000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:29:20.5610000-07:00|10FF0005|Wuwuchu Wuchu|0001B30C|90055|90055|10000|10000|58||85.96|92.49|0.00|2.22|2707|0|0|01|0B00077D|0|41E16454|| +38|2023-10-06T20:29:20.5610000-07:00|40022CFF|Seraph|005A5A00|73956|77430|10000|10000|0||99.32|100.21|0.00|-1.09|0|0|0|||| +30|2023-10-06T20:29:20.5610000-07:00|7AD|Summon Order III|0.00|40022CFF|Seraph|40022CFF|Seraph|01|77430|77430| +21|2023-10-06T20:29:20.6050000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AFA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7040099|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||106.47|94.83|0.00|-1.38|0001B31D|0|1| +24|2023-10-06T20:29:20.6510000-07:00|10FF0002|Suchichi Suchi|HoT|0|9D4|90128|90128|10000|10000|||106.47|94.83|0.00|-1.38|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||106.47|94.83|0.00|-1.38| +21|2023-10-06T20:29:20.6510000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7040099|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||93.56|89.00|0.00|2.02|0001B31E|0|1| +22|2023-10-06T20:29:20.6510000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0007|Kehabiqo Febiqo|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||93.56|89.00|0.00|2.02|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B31F|0|8| +22|2023-10-06T20:29:20.6510000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0001|Sesuga Sapisuga|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B31F|1|8| +22|2023-10-06T20:29:20.6510000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0002|Suchichi Suchi|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||106.47|94.83|0.00|-1.38|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B31F|2|8| +22|2023-10-06T20:29:20.6510000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0005|Wuwuchu Wuchu|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||85.96|92.49|0.00|2.22|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B31F|3|8| +22|2023-10-06T20:29:20.6510000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0006|Wowobora Gogobora|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4660|10000|||98.04|102.28|0.00|2.83|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B31F|4|8| +22|2023-10-06T20:29:20.6510000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0008|Kokosaze Lulusaze|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9150|10000|||109.88|105.89|0.00|-2.64|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B31F|5|8| +22|2023-10-06T20:29:20.6510000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0003|Gegehi Gehi|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|4850|10000|||114.12|104.42|0.00|-2.72|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B31F|6|8| +22|2023-10-06T20:29:20.6510000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0004|Buhojaqe Zijaqe|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4500|10000|||97.75|109.79|0.00|3.01|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B31F|7|8| +38|2023-10-06T20:29:20.6510000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|58||106.47|94.83|0.00|-1.38|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:20.6510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|45||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.6510000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:29:20.6510000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +24|2023-10-06T20:29:20.6950000-07:00|10FF0003|Gegehi Gehi|HoT|0|96D|73085|73085|4850|10000|||114.12|104.42|0.00|-2.72|10FF0003|Gegehi Gehi|0|73085|73085|4850|10000|||114.12|104.42|0.00|-2.72| +21|2023-10-06T20:29:20.6950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7040099|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|0001B320|0|1| +38|2023-10-06T20:29:20.6950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5400|10000|112||114.12|104.42|0.00|-2.72|0|0|0||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:29:20.6950000-07:00|10FF0001||||| +37|2023-10-06T20:29:20.7390000-07:00|40022550|Zeromus|0001B31A|7023948||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:20.7390000-07:00|10FF0001|Sesuga Sapisuga|0001B31A|127791|127791|10000|10000|45||107.49|93.06|0.00|-2.62|1300|0|0|02|0900076E|03|41F00000|||||| +261|2023-10-06T20:29:20.2570000-07:00|Change|10FF0003||||||||| +38|2023-10-06T20:29:20.7390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|45||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:20.3540000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:29:20.8280000-07:00|10FF0007|Kehabiqo Febiqo|0001B31F|128564|128564|10000|10000|14||93.86|90.17|0.00|1.87|1500|0|0|01|09000000|0|0|| +39|2023-10-06T20:29:20.8280000-07:00|40022CF8|Carbuncle|75851|75851|10000|10000|||109.24|104.08|0.00|-0.47| +38|2023-10-06T20:29:20.8280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|14||93.86|90.17|0.00|1.87|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.8280000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:29:20.8730000-07:00|10FF0001|Sesuga Sapisuga|0001B31F|127791|127791|10000|10000|39||107.49|93.06|0.00|-2.62|1301|0|0|01|06000000|0|0|| +24|2023-10-06T20:29:20.8730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|8FA|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62| +24|2023-10-06T20:29:20.8730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|957|80739|80739|4500|10000|||97.89|109.15|0.00|3.05|40022CFF|Seraph|0|73956|77430|10000|10000|||99.32|100.21|0.00|-1.82| +38|2023-10-06T20:29:20.8730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|14||93.86|90.17|0.00|1.87|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.8730000-07:00|13D|Fey Illumination|0.00|40022B84|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|| +38|2023-10-06T20:29:20.8730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|39||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.8730000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0001|Sesuga Sapisuga|00|127791|77430| +38|2023-10-06T20:29:20.8730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5050|10000|63||97.89|109.15|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:20.9170000-07:00|10FF0002|Suchichi Suchi|0001B31F|90128|90128|10000|10000|46||104.74|95.61|0.00|-1.42|1602|0|0|01|06000000|0|0|| +37|2023-10-06T20:29:20.9170000-07:00|40022550|Zeromus|0001B31C|7020648||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:20.9170000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|46||104.74|95.61|0.00|-1.42|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.9170000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0002|Suchichi Suchi|00|90128|77430| +37|2023-10-06T20:29:20.9620000-07:00|10FF0005|Wuwuchu Wuchu|0001B31F|90055|90055|10000|10000|45||86.85|94.05|0.00|1.87|2703|0|0|01|0B000000|0|0|| +24|2023-10-06T20:29:20.9620000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|E9F|90055|90055|10000|10000|||86.85|94.05|0.00|1.87|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||86.85|94.05|0.00|1.87| +20|2023-10-06T20:29:20.9620000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|114.12|104.42|0.00|-2.72| +38|2023-10-06T20:29:20.9620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|45||86.85|94.05|0.00|1.87|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:20.9620000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +37|2023-10-06T20:29:21.0060000-07:00|10FF0006|Wowobora Gogobora|0001B31F|80739|80739|4660|10000|47||98.04|102.28|0.00|3.05|2804|0|0|01|09000000|0|0|| +39|2023-10-06T20:29:21.0060000-07:00|10FF0003|Gegehi Gehi|73085|73085|5600|10000|||114.12|104.42|0.00|-2.72| +24|2023-10-06T20:29:21.0060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|FB6|80739|80739|4660|10000|||98.04|102.28|0.00|3.05|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||93.98|90.60|-0.02|1.84| +38|2023-10-06T20:29:21.0060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5210|10000|47||98.04|102.28|0.00|3.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:21.0060000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:29:21.0060000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0006|Wowobora Gogobora|00|80739|77430| +38|2023-10-06T20:29:21.0060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|45||87.50|94.14|0.00|1.79|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.0060000-07:00|13D|Fey Illumination|0.00|40022B84|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|| +37|2023-10-06T20:29:21.0510000-07:00|10FF0008|Kokosaze Lulusaze|0001B31F|79111|79111|9150|10000|47||109.12|105.33|0.00|-2.23|1B05|0|0|01|07000000|0|0|| +21|2023-10-06T20:29:21.0510000-07:00|10FF0008|Kokosaze Lulusaze|1D88|Addle|40022550|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7020648|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9150|10000|||109.12|105.33|0.00|-2.23|0001B321|0|1| +38|2023-10-06T20:29:21.0510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9150|10000|47||109.12|105.33|0.00|-2.23|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:29:21.0510000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +261|2023-10-06T20:29:20.6580000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:29:21.0950000-07:00|10FF0003|Gegehi Gehi|0001B31F|73085|73085|5600|10000|93||114.12|104.42|0.00|-2.71|2306|0|0|01|04000000|0|0|| +38|2023-10-06T20:29:21.0950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5600|10000|93||114.12|104.42|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.0950000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0003|Gegehi Gehi|00|73085|77430| +37|2023-10-06T20:29:21.1390000-07:00|40022550|Zeromus|0001B31D|7017838||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:21.1390000-07:00|10FF0004|Buhojaqe Zijaqe|0001B31F|80739|80739|5050|10000|45||98.05|108.46|0.00|3.07|1C07|0|0|01|0B000000|0|0|| +38|2023-10-06T20:29:21.1400000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|46||103.85|96.24|0.00|-1.45|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.1400000-07:00|13D|Fey Illumination|0.00|40022B84|Ruby Carbuncle|10FF0002|Suchichi Suchi|00|90128|| +38|2023-10-06T20:29:21.1400000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5050|10000|45||98.05|108.46|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.1400000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +37|2023-10-06T20:29:21.1840000-07:00|40022550|Zeromus|0001B31E|7014954||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:21.1840000-07:00|40022550|Zeromus|0001B31B|6997395||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:21.2280000-07:00|40022550|Zeromus|0001B317|6976649||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:21.2280000-07:00|40022550|Zeromus|0001B320|6974914||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:21.2280000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||94.41|92.11|0.00|1.85| +261|2023-10-06T20:29:20.6580000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T20:29:20.6580000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:29:21.2730000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|36D50000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|7017838|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.44|96.72|0.00|-1.48|0001B322|0|1| +21|2023-10-06T20:29:21.2730000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38FC0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|7017838|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5210|10000|||98.04|102.28|0.00|3.05|0001B323|0|1| +21|2023-10-06T20:29:21.2730000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022550|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7017838|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|0001B324|0|1| +38|2023-10-06T20:29:21.2730000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|46||103.44|96.72|0.00|-1.48|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:21.2730000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:29:21.2730000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:29:21.2730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5050|10000|45||98.26|107.76|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.2730000-07:00|13D|Fey Illumination|0.00|40022B84|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|| +21|2023-10-06T20:29:21.3620000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6974914|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4810|10000|||98.04|102.28|0.00|3.05|0001B325|0|1| +38|2023-10-06T20:29:21.4060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4810|10000|47||98.04|102.28|0.00|3.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.4060000-07:00|13D|Fey Illumination|0.00|40022B84|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|80739|| +261|2023-10-06T20:29:20.8840000-07:00|Change|4002256E||||||||||||| +39|2023-10-06T20:29:21.4510000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||102.67|97.84|0.00|-2.89| +261|2023-10-06T20:29:21.0010000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T20:29:21.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|99D|128564|128564|10000|10000|||95.64|93.10|0.00|1.90|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||95.64|93.10|0.00|1.90| +24|2023-10-06T20:29:21.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|EF7|79111|79111|9150|10000|||106.52|103.48|0.00|-2.42|40022B84||0||||||||||| +38|2023-10-06T20:29:21.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|14||95.64|93.10|0.00|1.90|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:21.5400000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:21.5400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9150|10000|47||106.52|103.48|0.00|-2.42|0|0|0||||||||||||||||||| +30|2023-10-06T20:29:21.5400000-07:00|13D|Fey Illumination|0.00|40022B84|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|| +37|2023-10-06T20:29:21.6730000-07:00|40022550|Zeromus|0001B321|6974914|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004B3|0|41200000|| +26|2023-10-06T20:29:21.6730000-07:00|4B3|Addle|10.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|79111| +22|2023-10-06T20:29:21.6730000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0001|Sesuga Sapisuga|EC730005|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B326|0|8| +22|2023-10-06T20:29:21.6730000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0007|Kehabiqo Febiqo|730003|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||96.62|94.08|0.00|1.95|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B326|1|8| +22|2023-10-06T20:29:21.6730000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0005|Wuwuchu Wuchu|F1730606|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||90.18|94.34|0.00|1.56|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B326|2|8| +22|2023-10-06T20:29:21.6730000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0002|Suchichi Suchi|730603|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||101.51|98.69|0.00|-2.38|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B326|3|8| +22|2023-10-06T20:29:21.6730000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0006|Wowobora Gogobora|730603|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4810|10000|||98.04|102.28|0.00|3.05|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B326|4|8| +22|2023-10-06T20:29:21.6730000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0008|Kokosaze Lulusaze|730603|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9150|10000|||105.27|102.72|0.00|-2.26|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B326|5|8| +22|2023-10-06T20:29:21.6730000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0004|Buhojaqe Zijaqe|730603|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5050|10000|||98.34|105.99|0.00|-2.81|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B326|6|8| +22|2023-10-06T20:29:21.6730000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0003|Gegehi Gehi|730603|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5600|10000|||114.12|104.42|0.00|-2.62|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B326|7|8| +38|2023-10-06T20:29:21.6730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|39||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.6730000-07:00|13D|Fey Illumination|0.00|40022B84|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|| +261|2023-10-06T20:29:21.2040000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:29:21.2040000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:29:21.7180000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6974914|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9150|10000|||105.27|102.72|0.00|-2.26|0001B327|0|1| +261|2023-10-06T20:29:21.2040000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:29:21.8070000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|10850000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||96.86|94.70|0.00|1.99|6974914|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B328|0|1| +38|2023-10-06T20:29:21.8070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5600|10000|93||114.12|104.42|0.00|-2.62|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.8070000-07:00|13D|Fey Illumination|0.00|40022B84|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|| +261|2023-10-06T20:29:21.3040000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:29:21.8510000-07:00|10FF0001|Sesuga Sapisuga|0001B326|127791|127791|10000|10000|35||107.49|93.06|0.00|-2.62|1300|0|0|0| +37|2023-10-06T20:29:21.8960000-07:00|10FF0007|Kehabiqo Febiqo|0001B326|128564|128564|10000|10000|0||97.10|95.33|0.00|2.04|1501|0|0|01|04000000|0|0|| +37|2023-10-06T20:29:21.8960000-07:00|40022550|Zeromus|0001B325|6974856||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:21.8960000-07:00|40022550|Zeromus|0001B324|6974856|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004A9|0|41200000|| +26|2023-10-06T20:29:21.8960000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +38|2023-10-06T20:29:21.8960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||97.10|95.33|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.8960000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:29:21.9400000-07:00|40022550|Zeromus|0001B322|6960819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:21.9400000-07:00|10FF0002|Suchichi Suchi|0001B322|90128|90128|10000|10000|46||101.38|98.98|0.00|-2.15|1600|0|0|01|0747|0|41F00000|| +37|2023-10-06T20:29:21.9400000-07:00|10FF0005|Wuwuchu Wuchu|0001B326|90055|90055|10000|10000|34||90.37|94.59|0.00|1.36|2702|0|0|01|06000000|0|0|| +24|2023-10-06T20:29:21.9400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1513|128564|128564|10000|10000|||97.10|95.33|0.00|2.04|10FF0006|Wowobora Gogobora|0|80739|80739|4810|10000|||98.04|102.27|0.00|3.00| +37|2023-10-06T20:29:21.9400000-07:00|40022550|Zeromus|0001B323|6946231||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:21.9400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||97.10|95.33|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:21.9400000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|46||101.38|98.98|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:21.9400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|34||90.37|94.59|0.00|1.36|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.9400000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|90055|128564| +261|2023-10-06T20:29:21.5000000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:29:21.9850000-07:00|10FF0002|Suchichi Suchi|0001B326|90128|90128|10000|10000|33||101.33|99.08|-0.02|-2.08|1603|0|0|01|03000000|0|0|| +38|2023-10-06T20:29:21.9850000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|33||101.33|99.08|-0.02|-2.08|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:21.9850000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|90128|128564| +37|2023-10-06T20:29:22.0290000-07:00|10FF0006|Wowobora Gogobora|0001B326|80739|80739|4810|10000|31||98.06|102.24|0.00|2.83|2804|0|0|01|04000000|0|0|| +39|2023-10-06T20:29:22.0290000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62| +38|2023-10-06T20:29:22.0290000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4810|10000|31||98.06|102.24|0.00|2.83|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:22.0290000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|80739|128564| +37|2023-10-06T20:29:22.0740000-07:00|10FF0008|Kokosaze Lulusaze|0001B326|79111|79111|9150|10000|31||102.72|101.36|0.00|-2.08|1B05|0|0|01|02000000|0|0|| +38|2023-10-06T20:29:22.0740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9150|10000|31||102.72|101.36|0.00|-2.08|0|0|0||||||||||||||||||| +30|2023-10-06T20:29:22.0740000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|79111|128564| +37|2023-10-06T20:29:22.1180000-07:00|10FF0004|Buhojaqe Zijaqe|0001B326|80739|80739|5050|10000|30||98.34|105.60|0.00|2.99|1C06|0|0|01|07000000|0|0|| +38|2023-10-06T20:29:22.1180000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5050|10000|30||98.34|105.60|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:22.1180000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +261|2023-10-06T20:29:21.5970000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:29:22.1630000-07:00|10FF0003|Gegehi Gehi|0001B326|73085|73085|5600|10000|75||114.12|104.42|0.00|-2.62|2307|0|0|01|05000000|0|0|| +21|2023-10-06T20:29:22.1630000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|716003|2D6D0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|6946231|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.18|96.88|0.00|2.18|0001B329|0|1| +21|2023-10-06T20:29:22.1630000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40714003|51F10000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|6946231|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||91.79|95.26|0.00|1.24|0001B32A|0|1| +38|2023-10-06T20:29:22.1630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5600|10000|75||114.12|104.42|0.00|-2.62|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:22.1630000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73085|128564| +39|2023-10-06T20:29:22.2070000-07:00|40022CFF|Seraph|73956|77430|10000|10000|||99.31|100.17|0.00|3.13| +24|2023-10-06T20:29:22.2070000-07:00|40022550|Zeromus|DoT|0|1F30|6946231|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|6946231|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:22.2070000-07:00|40022550|Zeromus|005A5A00|6938247|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:29:22.2520000-07:00|40022550|Zeromus|0001B327|6938105||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:22.3860000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|450003|22490000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|6938105|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5400|10000|||114.12|104.42|0.00|-2.62|0001B32B|0|1| +38|2023-10-06T20:29:22.3860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5400|10000|75||114.12|104.42|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:22.3860000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:29:22.3860000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:29:21.8280000-07:00|Change|10FF0003||||||||||||||||| +39|2023-10-06T20:29:22.5200000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5015|10000|||98.64|101.25|0.00|2.68| +261|2023-10-06T20:29:22.0520000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:29:22.6080000-07:00|10FF0007|Kehabiqo Febiqo|0001B328|124335||||||99.93|97.95|0.00|2.83| +22|2023-10-06T20:29:22.6530000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0001|Sesuga Sapisuga|730003|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B32C|0|8| +22|2023-10-06T20:29:22.6530000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0007|Kehabiqo Febiqo|730003|1AD70000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|124335|128564|10000|10000|||100.44|98.05|0.00|2.79|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B32C|1|8| +22|2023-10-06T20:29:22.6530000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0006|Wowobora Gogobora|730603|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5015|10000|||99.57|99.66|0.00|2.66|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B32C|2|8| +22|2023-10-06T20:29:22.6530000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0002|Suchichi Suchi|730603|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.03|99.19|0.00|-2.65|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B32C|3|8| +22|2023-10-06T20:29:22.6530000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0005|Wuwuchu Wuchu|730603|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||92.02|96.07|0.00|2.28|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B32C|4|8| +22|2023-10-06T20:29:22.6530000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0008|Kokosaze Lulusaze|730603|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9150|10000|||100.62|100.33|0.00|-2.01|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B32C|5|8| +22|2023-10-06T20:29:22.6530000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0004|Buhojaqe Zijaqe|730603|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5050|10000|||98.48|105.09|0.00|2.92|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B32C|6|8| +22|2023-10-06T20:29:22.6530000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0003|Gegehi Gehi|730603|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5400|10000|||114.08|104.40|0.00|-2.43|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B32C|7|8| +21|2023-10-06T20:29:22.6530000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|27D70000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6938105|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|0001B32D|0|1| +38|2023-10-06T20:29:22.6530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|35||107.49|93.06|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:22.6530000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +261|2023-10-06T20:29:22.1440000-07:00|Change|4002256C||||||||||||| +37|2023-10-06T20:29:22.6970000-07:00|40022550|Zeromus|0001B329|6926476||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:22.6970000-07:00|40022550|Zeromus|0001B32A|6905499||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:22.7870000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.79|99.30|-0.02|2.63| +261|2023-10-06T20:29:22.3320000-07:00|Change|40022CF8||||||||| +37|2023-10-06T20:29:22.8310000-07:00|10FF0001|Sesuga Sapisuga|0001B32C|127791|127791|10000|10000|30||107.49|93.06|0.00|-2.62|1300|0|0|0| +37|2023-10-06T20:29:22.8760000-07:00|10FF0007|Kehabiqo Febiqo|0001B32C|117464||||||101.56|97.21|0.00|2.97| +39|2023-10-06T20:29:22.8760000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||91.60|97.18|0.00|1.51| +20|2023-10-06T20:29:22.8760000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|1.486|100.12|100.15|0.00|-1.95| +37|2023-10-06T20:29:22.9190000-07:00|10FF0006|Wowobora Gogobora|0001B32C|80739|80739|5015|10000|18||99.98|98.98|0.00|2.80|2802|0|0|0| +37|2023-10-06T20:29:22.9640000-07:00|10FF0002|Suchichi Suchi|0001B32C|90128|90128|10000|10000|22||99.78|99.20|0.00|-2.79|1603|0|0|0| +21|2023-10-06T20:29:22.9640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6905499|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||107.49|93.06|0.00|-2.62|0001B32E|0|1| +31|2023-10-06T20:29:22.9640000-07:00|10FF0001||||| +261|2023-10-06T20:29:22.4250000-07:00|Change|10FF0008||||||||||||||||||||| +37|2023-10-06T20:29:23.0080000-07:00|10FF0005|Wuwuchu Wuchu|0001B32C|90055|90055|10000|10000|23||91.45|97.53|0.00|1.34|2704|0|0|0| +37|2023-10-06T20:29:23.0530000-07:00|10FF0008|Kokosaze Lulusaze|0001B32C|79111|79111|9150|10000|16||99.96|100.09|0.00|-2.43|1B05|0|0|0| +39|2023-10-06T20:29:23.0530000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9350|10000|||99.96|100.09|0.00|-2.43| +20|2023-10-06T20:29:23.0530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|98.96|102.24|0.00|2.96| +37|2023-10-06T20:29:23.0960000-07:00|10FF0004|Buhojaqe Zijaqe|0001B32C|80739|80739|5050|10000|15||98.96|102.24|0.00|2.96|1C06|0|0|0| +261|2023-10-06T20:29:22.5220000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:29:23.1410000-07:00|10FF0003|Gegehi Gehi|0001B32C|73085|73085|5400|10000|58||112.76|103.95|0.00|-1.97|2307|0|0|0| +39|2023-10-06T20:29:23.1420000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|5250|10000|||98.96|102.24|0.00|2.96| +37|2023-10-06T20:29:23.1860000-07:00|40022550|Zeromus|0001B32B|6896722||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:22.6380000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:29:23.2340000-07:00|40022CFF|Seraph|40A4|Seraphic Veil|10FF0007|Kehabiqo Febiqo|4|14E30000|E30E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|117464|128564|10000|10000|||100.61|96.71|0.00|3.09|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B32F|0|1| +38|2023-10-06T20:29:23.2340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117464|128564|10000|10000|4||100.61|96.71|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:23.2340000-07:00|77D|Seraphic Veil|29.95|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +21|2023-10-06T20:29:23.3200000-07:00|10FF0005|Wuwuchu Wuchu|5F54|Arcane Crest|10FF0005|Wuwuchu Wuchu|F2D0F|A258000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||92.27|98.24|0.00|1.28|90055|90055|10000|10000|||92.27|98.24|0.00|1.28|0001B330|0|1| +38|2023-10-06T20:29:23.3200000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|33||92.27|98.24|0.00|1.28|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:23.3200000-07:00|A25|Crest of Time Borrowed|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:29:22.8610000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:29:23.4120000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6896722|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.78|99.20|0.00|-2.79|0001B331|0|1| +37|2023-10-06T20:29:23.4570000-07:00|10FF0005|Wuwuchu Wuchu|0001B330|90055|90055|10000|10000|33||93.01|98.52|0.00|1.28|2700|0|0|01|02000A25|0|40A00000|| +21|2023-10-06T20:29:23.4570000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|32590000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|6896722|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5400|10000|||110.55|103.21|0.00|-1.91|0001B332|0|1| +38|2023-10-06T20:29:23.4570000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5100|10000|58||110.55|103.21|0.00|-1.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:23.4570000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:29:23.4570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|33||93.01|98.52|0.00|1.28|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:22.9780000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:29:23.4990000-07:00|40022550|Zeromus|0001B32E|6894998||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:23.0930000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T20:29:23.5880000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6896722|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||93.68|98.78|-0.02|1.28|0001B333|0|1| +24|2023-10-06T20:29:23.6330000-07:00|10FF0002|Suchichi Suchi|HoT|0|98A|90128|90128|10000|10000|||99.78|99.20|0.00|-2.79|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5250|10000|||99.47|101.00|-0.01|3.12| +38|2023-10-06T20:29:23.6330000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.78|99.20|0.00|-2.79|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:23.6780000-07:00|10FF0003|Gegehi Gehi|HoT|0|FD7|73085|73085|5100|10000|||109.22|102.76|0.00|-2.63|10FF0007|Kehabiqo Febiqo|0|117464|128564|10000|10000|||99.37|97.61|0.00|1.21| +22|2023-10-06T20:29:23.6780000-07:00|4002256B|Zeromus|8B70|Bury|10FF0001|Sesuga Sapisuga|730003|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||106.30|93.07|0.00|-1.72|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B334|0|8| +22|2023-10-06T20:29:23.6780000-07:00|4002256B|Zeromus|8B70|Bury|10FF0007|Kehabiqo Febiqo|F1730006|830000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|117464|128564|10000|10000|||99.37|97.61|0.00|1.21|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B334|1|8| +22|2023-10-06T20:29:23.6780000-07:00|4002256B|Zeromus|8B70|Bury|10FF0006|Wowobora Gogobora|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5015|10000|||100.21|98.59|0.00|-3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B334|2|8| +22|2023-10-06T20:29:23.6780000-07:00|4002256B|Zeromus|8B70|Bury|10FF0002|Suchichi Suchi|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.78|99.20|0.00|-2.79|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B334|3|8| +22|2023-10-06T20:29:23.6780000-07:00|4002256B|Zeromus|8B70|Bury|10FF0005|Wuwuchu Wuchu|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||93.94|98.86|0.00|1.28|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B334|4|8| +22|2023-10-06T20:29:23.6780000-07:00|4002256B|Zeromus|8B70|Bury|10FF0008|Kokosaze Lulusaze|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9350|10000|||99.87|100.05|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B334|5|8| +22|2023-10-06T20:29:23.6780000-07:00|4002256B|Zeromus|8B70|Bury|10FF0004|Buhojaqe Zijaqe|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5250|10000|||99.47|101.00|-0.01|3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B334|6|8| +22|2023-10-06T20:29:23.6780000-07:00|4002256B|Zeromus|8B70|Bury|10FF0003|Gegehi Gehi|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5100|10000|||109.22|102.76|0.00|-2.63|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B334|7|8| +38|2023-10-06T20:29:23.6780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5650|10000|58||109.22|102.76|0.00|-2.63|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:23.0930000-07:00|Change|4002256B||||||||||||| +21|2023-10-06T20:29:23.7230000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|35D40000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|6894998|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5015|10000|||100.21|98.59|0.00|-3.13|0001B335|0|1| +21|2023-10-06T20:29:23.7670000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|726003|4DE10000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|6894998|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.78|99.20|0.00|-2.79|0001B336|0|1| +38|2023-10-06T20:29:23.7670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|22||99.78|99.20|0.00|-2.79|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:23.7670000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:29:23.8120000-07:00|40022CF8|Carbuncle|75851|75851|10000|10000|||102.27|99.64|0.00|-1.97| +37|2023-10-06T20:29:23.8570000-07:00|10FF0001|Sesuga Sapisuga|0001B334|127791|127791|10000|10000|25||105.16|93.53|0.00|-1.72|1300|0|0|0| +24|2023-10-06T20:29:23.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|911|127791|127791|10000|10000|||105.16|93.53|0.00|-1.72|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||105.16|93.53|0.00|-1.72| +24|2023-10-06T20:29:23.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|EF2|80739|80739|5250|10000|||99.47|101.00|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|117464|128564|10000|10000|||99.25|97.85|-0.02|0.63| +21|2023-10-06T20:29:23.8570000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|750003|319B0000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|6894998|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9350|10000|||99.87|100.05|0.00|3.14|0001B337|0|1| +38|2023-10-06T20:29:23.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|25||105.16|93.53|0.00|-1.72|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:23.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5800|10000|15||99.47|101.00|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:23.9010000-07:00|10FF0007|Kehabiqo Febiqo|0001B334|117333|128564|10000|10000|0||99.42|97.90|0.00|1.24|1501|0|0|01|04000000|0|0|| +38|2023-10-06T20:29:23.9010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117333|128564|10000|10000|0||99.42|97.90|0.00|1.24|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:23.9010000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:23.9010000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:29:23.9450000-07:00|40022550|Zeromus|0001B331|6892099||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:23.9450000-07:00|10FF0006|Wowobora Gogobora|0001B334|80739|80739|4615|10000|4||100.21|98.59|0.00|-3.13|2802|0|0|0| +37|2023-10-06T20:29:23.9450000-07:00|40022550|Zeromus|0001B32D|6881900||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:23.9450000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|93B|90055|90055|10000|10000|||95.69|99.26|0.00|1.34|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||95.69|99.26|0.00|1.34| +38|2023-10-06T20:29:23.9450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|33||95.69|99.26|0.00|1.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:23.4770000-07:00|Change|10FF0008||||||||||||||||||||| +37|2023-10-06T20:29:23.9890000-07:00|10FF0002|Suchichi Suchi|0001B334|90128|90128|10000|10000|11||99.78|99.20|0.00|3.13|1603|0|0|0| +39|2023-10-06T20:29:23.9890000-07:00|10FF0003|Gegehi Gehi|73085|73085|5850|10000|||106.78|101.94|0.00|-2.04| +24|2023-10-06T20:29:23.9890000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9B9|80739|80739|4615|10000|||100.21|98.59|0.00|-3.13|10FF0007|Kehabiqo Febiqo|0|117333|128564|10000|10000|||99.43|97.68|0.00|1.76| +21|2023-10-06T20:29:23.9890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30070000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6881900|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5800|10000|||99.47|101.00|0.00|3.12|0001B338|0|1| +38|2023-10-06T20:29:23.9890000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5165|10000|4||100.21|98.59|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:23.9890000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:29:24.0350000-07:00|10FF0005|Wuwuchu Wuchu|0001B334|90055|90055|10000|10000|22||96.73|99.47|0.00|1.38|2704|0|0|01|02000A26|0|41700000|| +30|2023-10-06T20:29:24.0350000-07:00|A25|Crest of Time Borrowed|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|15.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:29:24.0350000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6881900|40478540|10000|10000|||100.00|80.10|0.00|0.00|117333|128564|10000|10000|||99.43|97.68|0.00|1.76|0001B339|0|1| +38|2023-10-06T20:29:24.0350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117333|128564|10000|10000|0||99.43|97.68|0.00|1.76|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +38|2023-10-06T20:29:24.0350000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.78|99.20|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +38|2023-10-06T20:29:24.0350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9050|10000|16||99.87|100.05|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:29:24.0350000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5165|10000|4||100.21|98.59|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +38|2023-10-06T20:29:24.0350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|25||104.04|94.02|0.00|-1.72|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +38|2023-10-06T20:29:24.0350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5400|10000|15||99.47|101.00|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +38|2023-10-06T20:29:24.0350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5850|10000|58||106.78|101.94|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +38|2023-10-06T20:29:24.0350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|22||96.73|99.47|0.00|1.38|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:24.0350000-07:00|40022CF8|Carbuncle|005A5A00|75851|75851|10000|10000|0||101.88|99.52|0.00|-1.81|0|0|0||||||| +26|2023-10-06T20:29:24.0350000-07:00|30|Well Fed|1895.43|10FF0008|Kokosaze Lulusaze|40022CF8|Carbuncle|2964|75851|79111| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|40022CF8|Carbuncle|00|75851|90055| +38|2023-10-06T20:29:24.0350000-07:00|40022CFF|Seraph|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|1.54|0|0|0||||||| +26|2023-10-06T20:29:24.0350000-07:00|A26|Crest of Time Returned|14.96|10FF0005|Wuwuchu Wuchu|40022CFF|Seraph|00|77430|90055| +37|2023-10-06T20:29:24.0780000-07:00|10FF0008|Kokosaze Lulusaze|0001B334|79111|79111|9050|10000|2||99.87|100.05|0.00|3.14|1B05|0|0|0| +37|2023-10-06T20:29:24.1220000-07:00|10FF0004|Buhojaqe Zijaqe|0001B334|80739|80739|5400|10000|1||99.47|101.00|0.00|3.12|1C06|0|0|0| +37|2023-10-06T20:29:24.1220000-07:00|40022550|Zeromus|0001B333|6878521||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:24.1670000-07:00|10FF0003|Gegehi Gehi|0001B334|73085|73085|5850|10000|43||106.14|101.72|0.00|-1.98|2307|0|0|01|07000000|0|0|| +38|2023-10-06T20:29:24.1670000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5850|10000|43||106.14|101.72|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:24.1670000-07:00|77E|Catalyze|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:29:23.7080000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:29:23.7080000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:29:24.2570000-07:00|40022550|Zeromus|0001B332|6865632||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:24.2570000-07:00|10FF0007|Kehabiqo Febiqo|118618|128564|10000|10000|||99.46|97.30|0.00|3.14| +37|2023-10-06T20:29:24.3000000-07:00|10FF0007|Kehabiqo Febiqo|0001B32F|123965||||||99.46|97.30|0.00|3.14| +261|2023-10-06T20:29:23.8210000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:23.8210000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:29:24.3910000-07:00|40022550|Zeromus|0001B336|6845695||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:24.3910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1598|123965|128564|10000|10000|||99.47|97.09|-0.02|3.14|10FF0006|Wowobora Gogobora|0|80739|80739|5165|10000|||100.21|98.59|0.00|-3.13| +37|2023-10-06T20:29:24.3910000-07:00|40022550|Zeromus|0001B335|6831915||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:24.3910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.47|97.09|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:24.4350000-07:00|10FF0002|Suchichi Suchi|1D76|Bloodbath|10FF0002|Suchichi Suchi|190E|540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.77|99.20|0.00|3.14|90128|90128|10000|10000|||99.77|99.20|0.00|3.14|0001B33A|0|1| +39|2023-10-06T20:29:24.4790000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.73|99.17|0.00|-3.10| +21|2023-10-06T20:29:24.4790000-07:00|10FF0008|Kokosaze Lulusaze|1D8A|Lucid Dreaming|10FF0008|Kokosaze Lulusaze|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9050|10000|||99.87|100.05|0.00|3.14|79111|79111|9050|10000|||99.87|100.05|0.00|3.14|0001B33B|0|1| +24|2023-10-06T20:29:24.5240000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E25|128564|128564|10000|10000|||99.47|97.09|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||99.47|97.09|0.00|3.14| +24|2023-10-06T20:29:24.5240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|13B3|79111|79111|9050|10000|||99.87|100.05|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||99.47|97.09|0.00|3.14| +21|2023-10-06T20:29:24.5240000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|734003|B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6831915|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5400|10000|||99.47|101.00|0.00|3.12|0001B33C|0|1| +21|2023-10-06T20:29:24.5240000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6831915|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5850|10000|||104.62|100.28|0.00|-2.27|0001B33D|0|1| +38|2023-10-06T20:29:24.5240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.47|97.09|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:24.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9050|10000|2||99.87|100.05|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T20:29:24.5680000-07:00|40022550|Zeromus|0001B339|6828973||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:24.0530000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T20:29:24.6130000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|1F810000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|6831915|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.47|97.09|0.00|3.14|0001B33E|0|1| +21|2023-10-06T20:29:24.6130000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2C9A0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|6831915|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.14|98.83|0.00|2.21|0001B33F|0|1| +37|2023-10-06T20:29:24.6580000-07:00|40022550|Zeromus|0001B337|6816274||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:24.7910000-07:00|40022550|Zeromus|0001B338|6803979||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:24.8360000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|35FA0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.47|97.09|0.00|3.11|6816274|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B340|0|1| +39|2023-10-06T20:29:25.0140000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.77|96.73|0.00|-2.48| +37|2023-10-06T20:29:25.0590000-07:00|10FF0002|Suchichi Suchi|0001B33A|90128|90128|10000|10000|11||99.84|98.87|0.00|-3.11|1600|0|0|01|02000054|0|41A00000|| +26|2023-10-06T20:29:25.0590000-07:00|54|Bloodbath|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:25.0590000-07:00|40022550|Zeromus|0001B33C|6803796||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:25.0590000-07:00|40022550|Zeromus|0001B33D|6803795||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:25.1040000-07:00|10FF0008|Kokosaze Lulusaze|0001B33B|79111|79111|9050|10000|2||99.87|100.05|0.00|3.14|1B00|0|0|01|060004B4|0|41A80000|| +26|2023-10-06T20:29:25.1040000-07:00|4B4|Lucid Dreaming|21.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:29:25.1040000-07:00|40022550|Zeromus|0001B33F|6792377||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:25.1040000-07:00|40022CFF|Seraph|HoT|0|481|73956|77430|10000|10000|||98.71|97.61|0.00|2.97|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||99.70|98.47|0.00|2.83| +38|2023-10-06T20:29:25.1040000-07:00|40022CFF|Seraph|005A5A00|75109|77430|10000|10000|0||98.71|97.61|0.00|2.97|0|0|0||||||| +21|2023-10-06T20:29:25.1490000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6803795|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5165|10000|||100.43|96.36|-0.02|3.03|0001B341|0|1| +21|2023-10-06T20:29:25.1490000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|29850000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6803795|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.28|97.05|0.00|-2.63|0001B342|0|1| +38|2023-10-06T20:29:25.1490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|25||99.28|97.05|0.00|-2.63|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:25.1490000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +24|2023-10-06T20:29:25.1930000-07:00|40022550|Zeromus|DoT|0|2768|6792377|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|6792377|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:25.1930000-07:00|40022550|Zeromus|005A5A00|6782289|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:29:25.2380000-07:00|40022550|Zeromus|0001B33E|6774224||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:25.2380000-07:00|40022CFF|Seraph|75109|77430|10000|10000|||98.71|97.61|0.00|3.03| +38|2023-10-06T20:29:25.2380000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5165|10000|4||100.46|96.12|0.00|3.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:25.2380000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:29:25.2380000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5165|10000|||100.46|96.12|0.00|3.05|80739|80739|5165|10000|||100.46|96.12|0.00|3.05|0001B343|0|1| +21|2023-10-06T20:29:25.2380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|67A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6792377|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.28|97.05|0.00|-2.63|0001B344|0|1| +31|2023-10-06T20:29:25.2380000-07:00|10FF0001||||| +21|2023-10-06T20:29:25.3260000-07:00|10FF0008|Kokosaze Lulusaze|1D03|Summon Bahamut|40022550|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|6774224|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9050|10000|||99.87|100.05|0.00|3.14|0001B345|0|1| +261|2023-10-06T20:29:24.8220000-07:00|Change|40022CF8||||||||| +38|2023-10-06T20:29:25.3270000-07:00|40022CF8|Carbuncle|005A5A00|0|75851|0|10000|0||101.73|99.50|0.00|-1.67|0|0|0|||| +30|2023-10-06T20:29:25.3270000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|40022CF8|Carbuncle|00|75851|90055| +38|2023-10-06T20:29:25.3720000-07:00|40022D77||005A5A00|65138|68265|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:29:25.3720000-07:00|40022D77||005A5A00|65138|68265|10000|10000|0||||||0|0|0|||| +20|2023-10-06T20:29:25.4150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|99.79|99.93|0.00|2.92| +38|2023-10-06T20:29:25.4150000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5850|10000|43||103.24|98.31|0.00|-2.78|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:25.4150000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +39|2023-10-06T20:29:25.5040000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5370|10000|||100.50|95.50|0.00|3.05| +261|2023-10-06T20:29:25.0630000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:29:25.0630000-07:00|Add|40022D77||||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:29:25.0630000-07:00|40022D77|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|65138|68265|10000|10000|||101.64|101.83|0.00|3.14| +261|2023-10-06T20:29:25.0630000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:29:25.0630000-07:00|Change|40022D77||||||| +37|2023-10-06T20:29:25.6380000-07:00|10FF0007|Kehabiqo Febiqo|0001B340|114746||||||99.47|97.09|0.00|3.11| +261|2023-10-06T20:29:25.1580000-07:00|Change|4002256A||||||||||||| +22|2023-10-06T20:29:25.6380000-07:00|4002256A|Zeromus|8B71|Roar|10FF0006|Wowobora Gogobora|750603|55830000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5370|10000|||100.51|95.39|-0.02|2.94|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B346|0|8| +22|2023-10-06T20:29:25.6380000-07:00|4002256A|Zeromus|8B71|Roar|10FF0001|Sesuga Sapisuga|EC750605|0|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.28|97.05|0.00|-2.63|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B346|1|8| +22|2023-10-06T20:29:25.6380000-07:00|4002256A|Zeromus|8B71|Roar|10FF0007|Kehabiqo Febiqo|750003|3F330000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|114746|128564|10000|10000|||99.47|97.09|0.00|3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B346|2|8| +22|2023-10-06T20:29:25.6380000-07:00|4002256A|Zeromus|8B71|Roar|10FF0003|Gegehi Gehi|750603|0|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5850|10000|||102.79|98.40|0.00|-2.84|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B346|3|8| +22|2023-10-06T20:29:25.6380000-07:00|4002256A|Zeromus|8B71|Roar|10FF0002|Suchichi Suchi|750603|3AB70000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.93|98.71|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B346|4|8| +22|2023-10-06T20:29:25.6380000-07:00|4002256A|Zeromus|8B71|Roar|10FF0005|Wuwuchu Wuchu|750603|192A0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.08|98.92|0.00|3.04|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B346|5|8| +22|2023-10-06T20:29:25.6380000-07:00|4002256A|Zeromus|8B71|Roar|10FF0004|Buhojaqe Zijaqe|750603|5B6D0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5400|10000|||99.88|99.64|0.00|3.01|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B346|6|8| +22|2023-10-06T20:29:25.6380000-07:00|4002256A|Zeromus|8B71|Roar|10FF0008|Kokosaze Lulusaze|750603|5F560000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9050|10000|||99.87|100.05|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B346|7|8| +261|2023-10-06T20:29:25.1580000-07:00|Change|40022D77||| +37|2023-10-06T20:29:25.6820000-07:00|40022550|Zeromus|0001B341|6774188||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:25.7710000-07:00|40022550|Zeromus|0001B344|6772530||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:25.8170000-07:00|10FF0006|Wowobora Gogobora|0001B346|58848|80739|5370|10000|0||100.51|95.39|0.00|2.23|2800|0|0|01|07000000|0|0|| +21|2023-10-06T20:29:25.8170000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|712003|161A0000|13000E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|6774188|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.28|97.05|0.00|-2.63|0001B347|0|1| +38|2023-10-06T20:29:25.8170000-07:00|10FF0006|Wowobora Gogobora|005A5A28|58848|80739|5370|10000|0||100.51|95.39|0.00|2.23|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:25.8170000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:29:25.8620000-07:00|10FF0001|Sesuga Sapisuga|0001B346|127791|127791|10000|10000|15||99.28|97.05|0.00|-2.63|1301|0|0|01|02000000|0|0|| +39|2023-10-06T20:29:25.8620000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.11|98.95|0.00|3.07| +20|2023-10-06T20:29:25.8620000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|102.42|98.48|-0.02|-2.88| +38|2023-10-06T20:29:25.8620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|15||99.28|97.05|0.00|-2.63|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:25.8620000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +261|2023-10-06T20:29:25.3490000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T20:29:25.9060000-07:00|10FF0007|Kehabiqo Febiqo|0001B346|98567||||||99.47|97.09|0.00|3.11| +21|2023-10-06T20:29:25.9060000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6772530|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9050|10000|||99.87|100.05|0.00|3.14|0001B348|0|1| +37|2023-10-06T20:29:25.9500000-07:00|10FF0003|Gegehi Gehi|0001B346|73085|73085|5850|10000|10||102.42|98.48|-0.02|-2.88|2303|0|0|0| +37|2023-10-06T20:29:25.9950000-07:00|10FF0002|Suchichi Suchi|0001B346|75097|90128|10000|10000|0||99.93|98.71|0.00|-3.12|1604|0|0|01|09000000|0|0|| +38|2023-10-06T20:29:25.9950000-07:00|10FF0002|Suchichi Suchi|005A5A16|75097|90128|10000|10000|0||99.93|98.71|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T20:29:25.9950000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:29:26.0390000-07:00|10FF0005|Wuwuchu Wuchu|0001B346|83613|90055|10000|10000|0||100.11|98.95|0.00|3.07|2705|0|0|01|04000000|0|0|| +39|2023-10-06T20:29:26.0390000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9250|10000|||99.87|100.05|0.00|3.14| +38|2023-10-06T20:29:26.0390000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|83613|90055|10000|10000|0||100.11|98.95|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:26.0390000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:26.0840000-07:00|10FF0004|Buhojaqe Zijaqe|0001B346|57334|80739|5400|10000|0||99.96|99.38|0.00|3.14|1C06|0|0|01|09000000|0|0|| +38|2023-10-06T20:29:26.0840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57334|80739|5400|10000|0||99.96|99.38|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:26.0840000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:29:25.5440000-07:00|Change|10FF0008||| +37|2023-10-06T20:29:26.1290000-07:00|10FF0008|Kokosaze Lulusaze|0001B346|54705|79111|9250|10000|0||99.87|100.05|0.00|3.14|1B07|0|0|01|03000000|0|0|| +39|2023-10-06T20:29:26.1290000-07:00|10FF0004|Buhojaqe Zijaqe|58141|80739|5600|10000|||99.96|99.38|0.00|3.14| +38|2023-10-06T20:29:26.1290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54705|79111|9250|10000|0||99.87|100.05|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:29:26.1290000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:29:26.2190000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B440000|104|21A8000|0|0|0|0|0|0|0|0|0|0|0|0|6772530|40478540|10000|10000|||100.00|80.10|0.00|0.00|75097|90128|10000|10000|||99.90|98.71|0.00|-3.12|0001B349|0|1| +21|2023-10-06T20:29:26.2190000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|6772530|40478540|10000|10000|||100.00|80.10|0.00|0.00|58848|80739|5370|10000|||100.60|96.74|0.00|0.28|0001B34A|0|1| +38|2023-10-06T20:29:26.2190000-07:00|10FF0006|Wowobora Gogobora|005A5A28|58848|80739|4970|10000|0||100.60|96.74|0.00|0.28|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:26.2190000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:29:26.2190000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:29:26.2620000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C724003|289B0000|104|7958000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|6772530|40478540|10000|10000|||100.00|80.10|0.00|0.00|75097|90128|10000|10000|||99.90|98.71|0.00|-3.12|0001B34B|0|1| +38|2023-10-06T20:29:26.2620000-07:00|10FF0002|Suchichi Suchi|005A5A16|75097|90128|10000|10000|0||99.90|98.71|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T20:29:26.2620000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:29:26.3520000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|30220000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6772530|40478540|10000|10000|||100.00|80.10|0.00|0.00|58141|80739|5600|10000|||99.96|99.38|0.00|3.14|0001B34C|0|1| +261|2023-10-06T20:29:25.8780000-07:00|Change|40022D77||||||| +37|2023-10-06T20:29:26.4410000-07:00|40022550|Zeromus|0001B348|6772340||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:26.4410000-07:00|40022550|Zeromus|0001B342|6761711||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:26.5290000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|714003|39B10000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|6761711|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.28|97.05|0.00|3.10|0001B34D|0|1| +261|2023-10-06T20:29:25.9960000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:29:26.1180000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T20:29:26.6640000-07:00|10FF0002|Suchichi Suchi|HoT|0|E8A|75097|90128|10000|10000|||100.18|98.81|0.00|-3.13|10FF0007|Kehabiqo Febiqo|0|98567|128564|10000|10000|||99.57|97.09|0.00|3.14| +22|2023-10-06T20:29:26.6640000-07:00|40022569|Zeromus|8B72|Roar|10FF0006|Wowobora Gogobora|750003|5BE70000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|58848|80739|4970|10000|||100.60|96.93|0.00|-3.10|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B34E|0|8| +22|2023-10-06T20:29:26.6640000-07:00|40022569|Zeromus|8B72|Roar|10FF0001|Sesuga Sapisuga|750603|0|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.28|97.05|0.00|3.10|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B34E|1|8| +22|2023-10-06T20:29:26.6640000-07:00|40022569|Zeromus|8B72|Roar|10FF0007|Kehabiqo Febiqo|750003|41350000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|98567|128564|10000|10000|||99.57|97.09|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B34E|2|8| +22|2023-10-06T20:29:26.6640000-07:00|40022569|Zeromus|8B72|Roar|10FF0003|Gegehi Gehi|750603|412E0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5850|10000|||102.22|98.53|0.00|-3.02|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B34E|3|8| +22|2023-10-06T20:29:26.6640000-07:00|40022569|Zeromus|8B72|Roar|10FF0005|Wuwuchu Wuchu|750003|698A0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|83613|90055|10000|10000|||100.11|98.95|0.00|3.07|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B34E|4|8| +22|2023-10-06T20:29:26.6640000-07:00|40022569|Zeromus|8B72|Roar|10FF0002|Suchichi Suchi|750003|63E80000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|75097|90128|10000|10000|||100.18|98.81|0.00|-3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B34E|5|8| +22|2023-10-06T20:29:26.6640000-07:00|40022569|Zeromus|8B72|Roar|10FF0004|Buhojaqe Zijaqe|750003|61090000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|58141|80739|5200|10000|||99.96|99.38|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B34E|6|8| +22|2023-10-06T20:29:26.6640000-07:00|40022569|Zeromus|8B72|Roar|10FF0008|Kokosaze Lulusaze|750003|5E4A0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|54705|79111|9250|10000|||99.86|100.07|0.00|-2.68|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B34E|7|8| +38|2023-10-06T20:29:26.6640000-07:00|10FF0002|Suchichi Suchi|005A5A16|78819|90128|10000|10000|0||100.18|98.81|0.00|-3.13|0|0|0||||||||||||||||||| +38|2023-10-06T20:29:26.6640000-07:00|40022550|Zeromus|005A5A00|6761711|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:26.6640000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +261|2023-10-06T20:29:26.2080000-07:00|Change|40022569||||||||||||| +24|2023-10-06T20:29:26.7070000-07:00|10FF0003|Gegehi Gehi|HoT|0|1391|73085|73085|5850|10000|||102.22|98.53|0.00|-3.02|10FF0007|Kehabiqo Febiqo|0|98567|128564|10000|10000|||99.57|97.09|0.00|3.14| +38|2023-10-06T20:29:26.7070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5850|10000|10||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:26.7530000-07:00|40022550|Zeromus|0001B349|6758827||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:26.7530000-07:00|10FF0002|Suchichi Suchi|0001B349|79357|90128|10000|10000|0||100.32|98.86|0.00|-3.13|1600|0|0|01|04000AA0|0|C1F00000|| +21|2023-10-06T20:29:26.7970000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|C500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6761711|40478540|10000|10000|||100.00|80.10|0.00|0.00|83613|90055|10000|10000|||100.11|98.95|0.00|3.07|0001B34F|0|1| +37|2023-10-06T20:29:26.8410000-07:00|10FF0006|Wowobora Gogobora|0001B34E|35321||||||100.60|97.00|0.00|-3.10| +37|2023-10-06T20:29:26.8410000-07:00|40022550|Zeromus|0001B347|6753169|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T20:29:26.8410000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:29:26.8850000-07:00|10FF0001|Sesuga Sapisuga|0001B34E|127791|127791|10000|10000|2||99.32|97.18|0.00|3.11|1301|0|0|0| +37|2023-10-06T20:29:26.8850000-07:00|40022550|Zeromus|0001B34D|6738400||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:26.8860000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|DCC|127791|127791|10000|10000|||99.32|97.18|0.00|3.11|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||99.32|97.18|0.00|3.11| +24|2023-10-06T20:29:26.8860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1430|58141|80739|5200|10000|||99.96|99.38|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|98567|128564|10000|10000|||99.57|97.09|0.00|3.14| +38|2023-10-06T20:29:26.8860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|2||99.32|97.18|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:26.8860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63309|80739|5750|10000|0||99.96|99.38|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:26.9300000-07:00|10FF0007|Kehabiqo Febiqo|0001B34E|81874||||||99.57|97.09|0.00|3.14| +37|2023-10-06T20:29:26.9750000-07:00|10FF0003|Gegehi Gehi|0001B34E|56399|73085|5850|10000|0||102.22|98.53|0.00|-3.02|2303|0|0|01|06000000|0|0|| +24|2023-10-06T20:29:26.9750000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15DC|98567|128564|10000|10000|||99.57|97.09|0.00|3.14|10FF0006|Wowobora Gogobora|0|35321|80739|4970|10000|||100.60|97.00|0.00|-3.10| +37|2023-10-06T20:29:26.9750000-07:00|40022550|Zeromus|0001B34A|6738400|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|05000A38|0|41F00000|| +26|2023-10-06T20:29:26.9750000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +24|2023-10-06T20:29:26.9750000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|E6D|83613|90055|10000|10000|||100.11|98.95|0.00|3.07|10FF0005|Wuwuchu Wuchu|0|83613|90055|10000|10000|||100.11|98.95|0.00|3.07| +38|2023-10-06T20:29:26.9750000-07:00|40022CFF|Seraph|005A5A00|75109|77430|10000|10000|0||98.71|97.61|0.00|1.92|0|0|0|||||||||| +26|2023-10-06T20:29:26.9750000-07:00|7AD|Summon Order III|30.00|40022CFF|Seraph|40022CFF|Seraph|01|77430|77430| +21|2023-10-06T20:29:26.9750000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58141|80739|5200|10000|||99.96|99.38|0.00|3.14|58141|80739|5200|10000|||99.96|99.38|0.00|3.14|0001B350|0|1| +38|2023-10-06T20:29:26.9750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87470|128564|10000|10000|0||99.57|97.09|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:26.9750000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:29:26.4890000-07:00|Change|10FF0003||||||||||||| +38|2023-10-06T20:29:26.9750000-07:00|10FF0003|Gegehi Gehi|005A5A23|56399|73085|5850|10000|0||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:26.9750000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:26.9750000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|87306|90055|10000|10000|0||100.11|98.95|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:27.0200000-07:00|10FF0005|Wuwuchu Wuchu|0001B34E|60288||||||100.11|98.95|0.00|3.07| +21|2023-10-06T20:29:27.0200000-07:00|40022CFF|Seraph|40A4|Seraphic Veil|10FF0008|Kokosaze Lulusaze|200004|20D80000|D80E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|54705|79111|9250|10000|||99.73|100.18|0.00|-1.74|75109|77430|10000|10000|||98.71|97.61|0.00|1.92|0001B351|0|1| +39|2023-10-06T20:29:27.0200000-07:00|10FF0003|Gegehi Gehi|57129|73085|6050|10000|||102.22|98.53|0.00|-3.02| +24|2023-10-06T20:29:27.0200000-07:00|10FF0006|Wowobora Gogobora|HoT|0|13AE|35321|80739|4970|10000|||100.60|97.00|0.00|-3.10|10FF0007|Kehabiqo Febiqo|0|98567|128564|10000|10000|||99.57|97.09|0.00|3.14| +38|2023-10-06T20:29:27.0200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54705|79111|9250|10000|10||99.73|100.18|0.00|-1.74|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:29:27.0200000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +38|2023-10-06T20:29:27.0200000-07:00|10FF0006|Wowobora Gogobora|005A5A28|40359|80739|5520|10000|0||100.60|97.00|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:29:27.0640000-07:00|10FF0002|Suchichi Suchi|0001B34E|53781|90128|10000|10000|0||100.41|98.89|0.00|-3.12|1605|0|0|01|04000AA0|0|C1F00000|| +21|2023-10-06T20:29:27.0640000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F710003|32460000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|6753169|40478540|10000|10000|||100.00|80.10|0.00|0.00|98567|128564|10000|10000|||99.57|97.09|0.00|3.14|0001B352|0|1| +38|2023-10-06T20:29:27.0640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87470|128564|10000|10000|0||99.57|97.09|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:27.0640000-07:00|A75|Surging Tempest|38.09|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:29:27.1080000-07:00|10FF0004|Buhojaqe Zijaqe|0001B34E|38468||||||99.96|99.38|0.00|3.14| +21|2023-10-06T20:29:27.1080000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|714003|4C830000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|6753169|40478540|10000|10000|||100.00|80.10|0.00|0.00|83613|90055|10000|10000|||100.11|98.95|0.00|3.07|0001B353|0|1| +37|2023-10-06T20:29:27.1530000-07:00|10FF0008|Kokosaze Lulusaze|0001B34E|30567||||||99.69|100.21|0.00|-1.49| +37|2023-10-06T20:29:27.1530000-07:00|40022550|Zeromus|0001B34C|6726078||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:27.1970000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53781|90128|10000|10000|||100.36|98.86|0.00|-3.11|53781|90128|10000|10000|||100.36|98.86|0.00|-3.11|0001B354|0|1| +39|2023-10-06T20:29:27.2420000-07:00|10FF0007|Kehabiqo Febiqo|88755|128564|10000|10000|||99.57|97.09|0.00|3.12| +21|2023-10-06T20:29:27.2870000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|754003|2AE40000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|6726078|40478540|10000|10000|||100.00|80.10|0.00|0.00|57129|73085|6050|10000|||102.22|98.53|0.00|-3.02|0001B355|0|1| +38|2023-10-06T20:29:27.2870000-07:00|10FF0003|Gegehi Gehi|005A5A23|57129|73085|5850|10000|0||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:27.2870000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:29:27.3310000-07:00|40022550|Zeromus|0001B34F|6722926||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:26.8390000-07:00|Change|40022CF8||| +21|2023-10-06T20:29:27.4210000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6722926|40478540|10000|10000|||100.00|80.10|0.00|0.00|88755|128564|10000|10000|||99.57|97.09|0.00|3.12|0001B356|0|1| +39|2023-10-06T20:29:27.4660000-07:00|10FF0002|Suchichi Suchi|54682|90128|10000|10000|||100.30|98.83|-0.02|-3.11| +261|2023-10-06T20:29:26.9580000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T20:29:27.5110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6722926|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.60|97.35|0.00|3.11|0001B357|0|1| +31|2023-10-06T20:29:27.5110000-07:00|10FF0001||||| +261|2023-10-06T20:29:27.0700000-07:00|Change|10FF0006||||||| +24|2023-10-06T20:29:27.5560000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E29|88755|128564|10000|10000|||99.57|97.09|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|88755|128564|10000|10000|||99.57|97.09|0.00|3.12| +24|2023-10-06T20:29:27.5560000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|E38|30567|79111|9250|10000|||99.69|100.54|0.00|-0.42|10FF0008|Kokosaze Lulusaze|0|30567|79111|9250|10000|||99.69|100.54|0.00|-0.42| +38|2023-10-06T20:29:27.5560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92380|128564|10000|10000|0||99.57|97.09|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:27.5560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|34207|79111|9800|10000|10||99.69|100.54|0.00|-0.42|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:29:27.0700000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:29:27.1660000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:29:27.6450000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|271C0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6722926|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.60|97.35|0.00|3.12|0001B358|0|1| +38|2023-10-06T20:29:27.6450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|2||99.60|97.35|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:27.6450000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +20|2023-10-06T20:29:27.7340000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.60|97.00|0.00|-3.10| +37|2023-10-06T20:29:27.8230000-07:00|10FF0002|Suchichi Suchi|0001B354|54682|90128|10000|10000|0||100.30|98.83|0.00|-3.11|1600|0|0|02|03000748|0|41A00000|||||| +26|2023-10-06T20:29:27.8230000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:29:27.8230000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|752003|72680000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|6722926|40478540|10000|10000|||100.00|80.10|0.00|0.00|34207|79111|9800|10000|||99.69|100.67|0.00|-0.03|0001B359|0|1| +20|2023-10-06T20:29:27.8230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.00|99.12|0.00|2.89| +21|2023-10-06T20:29:27.8670000-07:00|10FF0002|Suchichi Suchi|1CE6|Dragon Sight|10FF0005|Wuwuchu Wuchu|50E|5AE0000|A0F|7768000|0|0|0|0|0|0|0|0|0|0|0|0|60288|90055|10000|10000|||100.14|99.11|0.00|3.08|54682|90128|10000|10000|||100.30|98.83|0.00|-3.11|0001B35A|0|1| +21|2023-10-06T20:29:27.8670000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|33C80000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|92380|128564|10000|10000|||99.57|97.09|0.00|3.12|6722926|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B35B|0|1| +37|2023-10-06T20:29:27.9120000-07:00|40022550|Zeromus|0001B34B|6712531||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:27.9120000-07:00|10FF0002|Suchichi Suchi|0001B34B|56623|90128|10000|10000|0||100.30|98.83|0.00|-3.11|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:29:27.9120000-07:00|10FF0002|Suchichi Suchi|005A5A16|56623|90128|10000|10000|0||100.30|98.83|0.00|-3.11|0|0|0||||||||||||||||||| +37|2023-10-06T20:29:27.9560000-07:00|40022550|Zeromus|0001B356|6709668||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:28.0010000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.60|97.35|0.00|3.12| +261|2023-10-06T20:29:27.5430000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:29:28.0440000-07:00|40022550|Zeromus|0001B357|6707874||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:28.0440000-07:00|40022550|Zeromus|0001B355|6696894||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:28.0440000-07:00|10FF0008|Kokosaze Lulusaze|0001B351|42615|79111|9500|10000|10||99.69|100.69|0.00|3.13|1B00|0|0|01|0300077D|0|41E7CABD|| +22|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|1DB70000|B70E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||99.60|97.35|0.00|3.12|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|0001B35C|0|8| +22|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|1DAC0000|AC0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|92380|128564|10000|10000|||99.57|97.09|0.00|3.12|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|0001B35C|1|8| +22|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1CF00000|F00E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|38468|80739|5750|10000|||100.02|99.02|0.00|2.80|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|0001B35C|2|8| +22|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|1CA10000|A10E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|40359|80739|5520|10000|||100.60|97.00|0.00|-3.10|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|0001B35C|3|8| +22|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0002|Suchichi Suchi|4|1DA30000|A30E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|56623|90128|10000|10000|||100.30|98.83|0.00|-2.10|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|0001B35C|4|8| +22|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0005|Wuwuchu Wuchu|4|1C410000|410E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|60288|90055|10000|10000|||99.87|99.42|0.00|3.06|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|0001B35C|5|8| +22|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|4|1CD50000|D5000014|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|34207|79111|9500|10000|||99.69|100.69|0.00|3.13|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|0001B35C|6|8| +22|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|4|1CDD0000|DD0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|57129|73085|5850|10000|||102.22|98.53|0.00|-3.02|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|0001B35C|7|8| +24|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|HoT|0|4A2|75109|77430|10000|10000|||98.71|97.61|0.00|0.31|40022CFF|Seraph|0|75109|77430|10000|10000|||98.71|97.61|0.00|0.31| +38|2023-10-06T20:29:28.0890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92380|128564|10000|10000|5||99.57|97.09|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.0890000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +38|2023-10-06T20:29:28.0890000-07:00|10FF0002|Suchichi Suchi|005A5A16|56623|90128|10000|10000|8||100.30|98.83|0.00|-2.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:29:28.0890000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0002|Suchichi Suchi|00|90128|77430| +38|2023-10-06T20:29:28.0890000-07:00|10FF0006|Wowobora Gogobora|005A5A28|40359|80739|5520|10000|9||100.60|97.00|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.0890000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0006|Wowobora Gogobora|00|80739|77430| +38|2023-10-06T20:29:28.0890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||99.60|97.35|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.0890000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0001|Sesuga Sapisuga|00|127791|77430| +38|2023-10-06T20:29:28.0890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38468|80739|5750|10000|9||100.02|99.02|0.00|2.80|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.0890000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +38|2023-10-06T20:29:28.0890000-07:00|10FF0003|Gegehi Gehi|005A5A23|57129|73085|5850|10000|10||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.0890000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0003|Gegehi Gehi|00|73085|77430| +38|2023-10-06T20:29:28.0890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60288|90055|10000|10000|8||99.87|99.42|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.0890000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +30|2023-10-06T20:29:28.0890000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +38|2023-10-06T20:29:28.0890000-07:00|40022CFF|Seraph|005A5A00|76295|77430|10000|10000|0||98.71|97.61|0.00|0.31|0|0|0|||||||||| +37|2023-10-06T20:29:28.1320000-07:00|40022550|Zeromus|0001B353|6677307||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:28.1330000-07:00|40022550|Zeromus|005A5A00|6677307|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:28.1330000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +24|2023-10-06T20:29:28.1780000-07:00|40022550|Zeromus|DoT|0|1C6E|6709668|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|6709668|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:28.1780000-07:00|40022550|Zeromus|005A5A00|6670029|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +39|2023-10-06T20:29:28.2220000-07:00|40022CFF|Seraph|76295|77430|10000|10000|||98.71|97.61|0.00|0.31| +21|2023-10-06T20:29:28.2670000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|31260000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|6670029|40478540|10000|10000|||100.00|80.10|0.00|0.00|57129|73085|5850|10000|||102.22|98.53|0.00|-3.02|0001B35D|0|1| +38|2023-10-06T20:29:28.2670000-07:00|10FF0003|Gegehi Gehi|005A5A23|57129|73085|5550|10000|10||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:28.2670000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:29:28.2670000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:29:28.4890000-07:00|40022550|Zeromus|0001B359|6640741||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:28.4890000-07:00|40022D77|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|750003|12870000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|6670029|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07|0001B35E|0|1| +39|2023-10-06T20:29:28.4890000-07:00|10FF0006|Wowobora Gogobora|41166|80739|5725|10000|||100.60|97.00|0.00|-3.10| +22|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B35F|0|8| +22|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0005|Wuwuchu Wuchu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|60288|90055|10000|10000|||99.72|99.62|0.00|3.05|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B35F|1|8| +22|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38468|80739|5750|10000|||100.02|99.02|0.00|2.80|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B35F|2|8| +22|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0002|Suchichi Suchi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56623|90128|10000|10000|||100.30|98.83|0.00|-1.28|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B35F|3|8| +22|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57129|73085|5550|10000|||102.22|98.53|0.00|-3.02|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B35F|4|8| +22|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|97.37|0.00|3.11|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B35F|5|8| +22|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|92380|128564|10000|10000|||99.57|97.09|0.00|3.12|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B35F|6|8| +22|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40359|80739|5520|10000|||100.60|97.00|0.00|-3.10|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B35F|7|8| +38|2023-10-06T20:29:28.4890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92380|128564|10000|10000|5||99.57|97.09|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.4890000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:29:28.4890000-07:00|10FF0002|Suchichi Suchi|005A5A16|56623|90128|10000|10000|8||100.30|98.83|0.00|-1.28|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:28.4890000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|90128|79111| +38|2023-10-06T20:29:28.4890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|42615|79111|9500|10000|10||99.69|100.69|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:28.4890000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:28.4890000-07:00|10FF0006|Wowobora Gogobora|005A5A28|41166|80739|5725|10000|9||100.60|97.00|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.4890000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:28.4890000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|80739|79111| +38|2023-10-06T20:29:28.4890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||100.10|97.37|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.4890000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:29:28.4890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38468|80739|5750|10000|9||100.02|99.02|0.00|2.80|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.4890000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|80739|79111| +38|2023-10-06T20:29:28.4890000-07:00|10FF0003|Gegehi Gehi|005A5A23|57129|73085|5550|10000|10||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.4890000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73085|79111| +38|2023-10-06T20:29:28.4890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|60288|90055|10000|10000|8||99.72|99.62|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.4890000-07:00|A8F|Searing Light|30.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|90055|79111| +261|2023-10-06T20:29:28.0130000-07:00|Change|10FF0003||| +37|2023-10-06T20:29:28.5320000-07:00|10FF0005|Wuwuchu Wuchu|0001B35A|60288|90055|10000|10000|8||99.72|99.62|0.00|3.05|2700|0|0|01|060005AE|0|41A00000|| +26|2023-10-06T20:29:28.5320000-07:00|5AE|Left Eye|20.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:29:28.5320000-07:00|10FF0002|Suchichi Suchi|0001B35A|56623|90128|10000|10000|8||100.30|98.83|0.00|-1.28|1600|0|0|01|08000776|0|41A00000|| +26|2023-10-06T20:29:28.5320000-07:00|776|Right Eye|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:28.1280000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T20:29:28.1280000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:29:28.6660000-07:00|10FF0007|Kehabiqo Febiqo|0001B35B|79124||||||99.57|97.09|0.00|3.12| +21|2023-10-06T20:29:28.6660000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|45290000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|6640741|40478540|10000|10000|||100.00|80.10|0.00|0.00|41166|80739|5725|10000|||100.60|97.00|0.00|-3.10|0001B360|0|1| +37|2023-10-06T20:29:28.7100000-07:00|40022550|Zeromus|0001B352|6627871||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:28.7550000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|33850000|179D0E|A9F0000|104|9A18000|F|3238000|11B|64AC8000|0|0|0|0|0|0|6640741|40478540|10000|10000|||100.00|80.10|0.00|0.00|56623|90128|10000|10000|||100.30|98.83|0.00|-1.02|0001B361|0|1| +38|2023-10-06T20:29:28.7550000-07:00|10FF0002|Suchichi Suchi|005A5A16|56623|90128|10000|10000|8||100.30|98.83|0.00|-1.02|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:28.7550000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +39|2023-10-06T20:29:28.8900000-07:00|10FF0005|Wuwuchu Wuchu|61188|90055|10000|10000|||99.69|99.65|0.00|2.92| +37|2023-10-06T20:29:28.9340000-07:00|40022550|Zeromus|0001B358|6617859||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:28.9340000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6627871|40478540|10000|10000|||100.00|80.10|0.00|0.00|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B362|0|1| +37|2023-10-06T20:29:28.9790000-07:00|10FF0001|Sesuga Sapisuga|0001B35C|127791|127791|10000|10000|8||100.10|97.37|0.00|3.11|1300|0|0|01|0200077D|0|41E8E145|| +37|2023-10-06T20:29:29.0240000-07:00|40022550|Zeromus|0001B35D|6605277||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:29.0240000-07:00|10FF0003|Gegehi Gehi|0001B35D|57129|73085|5550|10000|10||102.22|98.53|0.00|-3.02|2300|0|0|01|050004D2|0|41F00000|| +39|2023-10-06T20:29:29.0240000-07:00|10FF0008|Kokosaze Lulusaze|43406|79111|9700|10000|||99.69|100.69|0.00|3.13| +21|2023-10-06T20:29:29.0240000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|1CEC0000|104|5678000|0|0|0|0|0|0|0|0|0|0|0|0|6617859|40478540|10000|10000|||100.00|80.10|0.00|0.00|56623|90128|10000|10000|||100.44|98.83|0.00|-3.12|0001B363|0|1| +38|2023-10-06T20:29:29.0240000-07:00|10FF0003|Gegehi Gehi|005A5A23|57129|73085|5550|10000|10||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:29.0680000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6617859|40478540|10000|10000|||100.00|80.10|0.00|0.00|42615|79111|9500|10000|||99.69|100.69|0.00|3.13|0001B364|0|1| +261|2023-10-06T20:29:28.6260000-07:00|Change|10FF0008||| +37|2023-10-06T20:29:29.1130000-07:00|10FF0007|Kehabiqo Febiqo|0001B35C|86720|128564|10000|10000|5||99.57|97.09|0.00|3.12|1501|0|0|01|0500077D|0|41E7CED6|| +39|2023-10-06T20:29:29.1600000-07:00|10FF0004|Buhojaqe Zijaqe|39275|80739|5950|10000|||100.02|99.02|0.00|2.80| +21|2023-10-06T20:29:29.1600000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|720003|DD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6605277|40478540|10000|10000|||100.00|80.10|0.00|0.00|57129|73085|5550|10000|||102.22|98.53|0.00|-3.02|0001B365|0|1| +37|2023-10-06T20:29:29.2010000-07:00|40022550|Zeromus|0001B361|6592088|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|06000A9F|0|41C00000|| +26|2023-10-06T20:29:29.2010000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:29:29.2010000-07:00|10FF0002|Suchichi Suchi|0001B361|59088|90128|10000|10000|8||100.33|98.83|0.00|-3.12|1600|0|0|01|09000323|0|41F00000|| +38|2023-10-06T20:29:29.2010000-07:00|10FF0002|Suchichi Suchi|005A5A16|59088|90128|10000|10000|8||100.33|98.83|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +04|2023-10-06T20:29:28.7460000-07:00|40022CF8|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||101.73|99.50|0.00|-1.67| +261|2023-10-06T20:29:28.7460000-07:00|Remove|40022CF8| +37|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|0001B35C|46683|80739|5950|10000|9||100.02|99.02|0.00|2.80|1C02|0|0|01|0600077D|0|41E6BE73|| +22|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|18B60000|890E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|0001B366|0|8| +22|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|196C0000|AC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|56623|90128|10000|10000|||100.33|98.83|0.00|-3.12|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|0001B366|1|8| +22|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|19960000|F00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|61188|90055|10000|10000|||99.69|99.66|0.00|2.88|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|0001B366|2|8| +22|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|2A0B0000|440E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|97.37|0.00|3.11|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|0001B366|3|8| +22|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|18BB0000|910E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|43406|79111|9700|10000|||99.69|100.69|0.00|3.13|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|0001B366|4|8| +22|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|18C00000|990E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|86720|128564|10000|10000|||99.57|97.09|0.00|3.12|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|0001B366|5|8| +22|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|29980000|8C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|0001B366|6|8| +22|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|29280000|D90E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57129|73085|5550|10000|||102.22|98.53|0.00|-3.02|39275|80739|5950|10000|||100.02|99.02|0.00|2.80|0001B366|7|8| +38|2023-10-06T20:29:29.2470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86720|128564|10000|10000|13||99.57|97.09|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:29.2470000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:29:29.2470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:29.2470000-07:00|10FF0002|Suchichi Suchi|005A5A16|59088|90128|10000|10000|19||100.33|98.83|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:29.2470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:29.2470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|43406|79111|9700|10000|23||99.69|100.69|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:29.2470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:29:29.2470000-07:00|10FF0006|Wowobora Gogobora|005A5A28|41166|80739|5325|10000|30||100.60|97.00|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:29.2470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:29.2470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|19||100.10|97.37|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:29.2470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:29.2470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46683|80739|4950|10000|21||100.02|99.02|0.00|2.80|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:29.2470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:29.2470000-07:00|10FF0003|Gegehi Gehi|005A5A23|57129|73085|5550|10000|33||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:29.2470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:29.2470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61188|90055|10000|10000|19||99.69|99.66|0.00|2.88|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:29.2470000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:29.2900000-07:00|10FF0008|Kokosaze Lulusaze|0001B35F|43406|79111|9700|10000|23||99.69|100.69|0.00|3.13|1B00|0|0|01|07000A8F|0|41E9EF9B|| +22|2023-10-06T20:29:29.2900000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|32D50000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B367|0|8| +22|2023-10-06T20:29:29.2900000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|4|33920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|97.37|0.00|3.11|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B367|1|8| +22|2023-10-06T20:29:29.2900000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|4|33710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|86720|128564|10000|10000|||99.57|97.09|0.00|3.12|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B367|2|8| +22|2023-10-06T20:29:29.2900000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|4|33F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59088|90128|10000|10000|||100.24|98.83|0.00|-3.12|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B367|3|8| +22|2023-10-06T20:29:29.2900000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|327D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46683|80739|4950|10000|||100.02|99.02|0.00|2.80|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B367|4|8| +22|2023-10-06T20:29:29.2900000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|4|33E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57129|73085|5550|10000|||102.22|98.53|0.00|-3.02|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B367|5|8| +22|2023-10-06T20:29:29.2900000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|32240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61188|90055|10000|10000|||99.69|99.66|0.00|2.88|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B367|6|8| +22|2023-10-06T20:29:29.2900000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|200004|51200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43406|79111|9700|10000|||99.69|100.69|0.00|3.13|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10|0001B367|7|8| +38|2023-10-06T20:29:29.2900000-07:00|40022D77|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||101.61|101.82|0.00|-3.07|0|0|0||||||| +26|2023-10-06T20:29:29.2900000-07:00|30|Well Fed|1890.18|10FF0008|Kokosaze Lulusaze|40022D77|Demi-Bahamut|2964|68265|79111| +26|2023-10-06T20:29:29.2900000-07:00|A8F|Searing Light|29.20|10FF0008|Kokosaze Lulusaze|40022D77|Demi-Bahamut|00|68265|79111| +24|2023-10-06T20:29:29.3370000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1511|86720|128564|10000|10000|||99.57|97.09|0.00|3.12|10FF0006|Wowobora Gogobora|0|41166|80739|5325|10000|||100.60|97.00|0.00|-3.10| +37|2023-10-06T20:29:29.3370000-07:00|40022550|Zeromus|0001B360|6574383||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:29.3370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92113|128564|10000|10000|13||99.57|97.09|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:29.3820000-07:00|10FF0006|Wowobora Gogobora|0001B35C|48495|80739|5325|10000|30||100.60|97.00|0.00|-3.10|2803|0|0|01|0400077D|0|41E5A7EB|| +37|2023-10-06T20:29:29.4240000-07:00|10FF0005|Wuwuchu Wuchu|0001B35F|61188|90055|10000|10000|19||99.69|99.66|0.00|2.88|2701|0|0|01|05000A8F|0|41E8D913|| +22|2023-10-06T20:29:29.4240000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0002|Suchichi Suchi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|0001B368|0|8| +22|2023-10-06T20:29:29.4240000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0004|Buhojaqe Zijaqe|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46683|80739|4950|10000|||100.02|99.02|0.00|2.80|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|0001B368|1|8| +22|2023-10-06T20:29:29.4240000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0005|Wuwuchu Wuchu|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61188|90055|10000|10000|||99.69|99.66|0.00|2.88|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|0001B368|2|8| +22|2023-10-06T20:29:29.4240000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0001|Sesuga Sapisuga|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|97.37|0.00|3.11|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|0001B368|3|8| +22|2023-10-06T20:29:29.4240000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0007|Kehabiqo Febiqo|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|92113|128564|10000|10000|||99.57|97.09|0.00|3.12|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|0001B368|4|8| +22|2023-10-06T20:29:29.4240000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0006|Wowobora Gogobora|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48495|80739|5325|10000|||100.60|97.00|0.00|-3.10|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|0001B368|5|8| +22|2023-10-06T20:29:29.4240000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0008|Kokosaze Lulusaze|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43406|79111|9700|10000|||99.69|100.69|0.00|3.13|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|0001B368|6|8| +22|2023-10-06T20:29:29.4240000-07:00|10FF0002|Suchichi Suchi|DE5|Battle Litany|10FF0003|Gegehi Gehi|A0E|3120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57129|73085|5550|10000|||102.22|98.53|0.00|-3.02|59088|90128|10000|10000|||100.16|98.83|0.00|-3.12|0001B368|7|8| +37|2023-10-06T20:29:29.4700000-07:00|40022550|Zeromus|0001B362|6574323||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:29.4700000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6574383|40478540|10000|10000|||100.00|80.10|0.00|0.00|57129|73085|5550|10000|||102.22|98.53|0.00|-3.02|0001B369|0|1| +37|2023-10-06T20:29:29.5140000-07:00|40022550|Zeromus|0001B35E|6569580||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:29.5140000-07:00|10FF0002|Suchichi Suchi|0001B35C|66675|90128|10000|10000|19||100.16|98.83|0.00|-3.12|1604|0|0|01|0600077D|0|41E49789|| +21|2023-10-06T20:29:29.5140000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|73C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6574383|40478540|10000|10000|||100.00|80.10|0.00|0.00|92113|128564|10000|10000|||99.57|97.09|0.00|3.12|0001B36A|0|1| +37|2023-10-06T20:29:29.5590000-07:00|40022550|Zeromus|0001B363|6562176||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:29.5590000-07:00|10FF0002|Suchichi Suchi|0001B363|68058||||||100.11|98.83|-0.02|-3.12| +37|2023-10-06T20:29:29.5590000-07:00|10FF0004|Buhojaqe Zijaqe|0001B35F|46683|80739|4950|10000|21||100.02|99.02|0.00|2.80|1C02|0|0|01|07000A8F|0|41E7CABD|| +38|2023-10-06T20:29:29.5590000-07:00|40022CFF|Seraph|005A5A00|76295|77430|10000|10000|0||98.71|97.61|0.00|0.31|0|0|0||||||||||||| +26|2023-10-06T20:29:29.5590000-07:00|A8F|Searing Light|28.93|10FF0008|Kokosaze Lulusaze|40022CFF|Seraph|00|77430|79111| +261|2023-10-06T20:29:29.0860000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T20:29:29.6040000-07:00|40022550|Zeromus|0001B364|6562019||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:29.6040000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|716003|56720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6569580|40478540|10000|10000|||100.00|80.10|0.00|0.00|61188|90055|10000|10000|||99.69|99.66|0.00|2.88|0001B36B|0|1| +38|2023-10-06T20:29:29.6040000-07:00|40022550|Zeromus|005A5A00|6562019|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:29:29.6040000-07:00|A1A|Death's Design|59.09|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +37|2023-10-06T20:29:29.6490000-07:00|10FF0005|Wuwuchu Wuchu|0001B35C|68421|90055|10000|10000|19||99.69|99.66|0.00|3.13|2705|0|0|01|0400077D|0|41E3851A|| +24|2023-10-06T20:29:29.6490000-07:00|10FF0002|Suchichi Suchi|HoT|0|E29|68058|90128|10000|10000|||100.11|98.83|-0.02|-3.12|10FF0004|Buhojaqe Zijaqe|0|46683|80739|4950|10000|||100.02|99.02|0.00|2.80| +22|2023-10-06T20:29:29.6490000-07:00|40022568|Zeromus|8B73|Primal Roar|10FF0006|Wowobora Gogobora|750603|428B0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|48495|80739|5325|10000|||100.59|97.00|0.00|-2.72|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B36C|0|8| +22|2023-10-06T20:29:29.6490000-07:00|40022568|Zeromus|8B73|Primal Roar|10FF0007|Kehabiqo Febiqo|750603|2C2F0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|92113|128564|10000|10000|||99.57|97.09|0.00|3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B36C|1|8| +22|2023-10-06T20:29:29.6490000-07:00|40022568|Zeromus|8B73|Primal Roar|10FF0001|Sesuga Sapisuga|750603|14240000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|97.37|0.00|3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B36C|2|8| +22|2023-10-06T20:29:29.6490000-07:00|40022568|Zeromus|8B73|Primal Roar|10FF0003|Gegehi Gehi|750603|51B60000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|57129|73085|5550|10000|||102.22|98.53|0.00|-3.02|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B36C|3|8| +22|2023-10-06T20:29:29.6490000-07:00|40022568|Zeromus|8B73|Primal Roar|10FF0002|Suchichi Suchi|750603|79810000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|68058|90128|10000|10000|||100.11|98.83|-0.02|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B36C|4|8| +22|2023-10-06T20:29:29.6490000-07:00|40022568|Zeromus|8B73|Primal Roar|10FF0004|Buhojaqe Zijaqe|750603|615A0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|46683|80739|4950|10000|||100.02|99.02|0.00|2.80|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B36C|5|8| +22|2023-10-06T20:29:29.6490000-07:00|40022568|Zeromus|8B73|Primal Roar|10FF0005|Wuwuchu Wuchu|750603|736F0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|61188|90055|10000|10000|||99.69|99.66|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B36C|6|8| +22|2023-10-06T20:29:29.6490000-07:00|40022568|Zeromus|8B73|Primal Roar|10FF0008|Kokosaze Lulusaze|750603|6A1C0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|43406|79111|9700|10000|||99.69|100.69|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B36C|7|8| +38|2023-10-06T20:29:29.6490000-07:00|10FF0002|Suchichi Suchi|005A5A16|71683|90128|10000|10000|19||100.11|98.83|-0.02|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:29.1760000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:29:29.1760000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:29:29.6930000-07:00|10FF0002|Suchichi Suchi|0001B35F|71683|90128|10000|10000|19||100.11|98.83|-0.02|-3.12|1603|0|0|01|07000A8F|0|41E6B84E|| +24|2023-10-06T20:29:29.6930000-07:00|10FF0003|Gegehi Gehi|HoT|0|E5F|57129|73085|5550|10000|||102.22|98.53|0.00|-3.02|10FF0007|Kehabiqo Febiqo|0|92113|128564|10000|10000|||99.57|97.09|0.00|3.12| +38|2023-10-06T20:29:29.6930000-07:00|10FF0003|Gegehi Gehi|005A5A23|60808|73085|5550|10000|33||102.22|98.53|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:29.7830000-07:00|10FF0008|Kokosaze Lulusaze|0001B35C|50787||||||99.69|100.69|0.00|3.13| +21|2023-10-06T20:29:29.7830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|7140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6562019|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|97.37|0.00|3.11|0001B36D|0|1| +31|2023-10-06T20:29:29.7830000-07:00|10FF0001||||| +37|2023-10-06T20:29:29.8270000-07:00|10FF0006|Wowobora Gogobora|0001B36C|31460|80739|5325|10000|0||100.59|97.00|0.00|-2.33|2800|0|0|02|04000000|0|0|||||| +37|2023-10-06T20:29:29.8270000-07:00|10FF0003|Gegehi Gehi|0001B35F|60808|73085|5550|10000|33||102.22|98.53|-0.02|-3.02|2304|0|0|01|03000A8F|0|41E5A5DF|| +37|2023-10-06T20:29:29.8270000-07:00|40022550|Zeromus|0001B365|6558480||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:29.8270000-07:00|40022CFF|Seraph|005A5A00|76295|77430|10000|10000|0||98.71|97.61|0.00|0.35|0|0|0|||||||||||||||| +26|2023-10-06T20:29:29.8270000-07:00|77B|Summon Order|30.00|40022CFF|Seraph|40022CFF|Seraph|01|77430|77430| +21|2023-10-06T20:29:29.8270000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46683|80739|4950|10000|||100.02|99.02|0.00|2.80|46683|80739|4950|10000|||100.02|99.02|0.00|2.80|0001B36E|0|1| +38|2023-10-06T20:29:29.8270000-07:00|10FF0006|Wowobora Gogobora|005A5A28|31460|80739|5325|10000|0||100.59|97.00|0.00|-2.33|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:29.8270000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0006|Wowobora Gogobora|00|80739|77430| +30|2023-10-06T20:29:29.8270000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:29:29.8710000-07:00|10FF0007|Kehabiqo Febiqo|0001B36C|80802|128564|10000|10000|0||99.57|97.09|0.00|3.12|1501|0|0|02|05000000|0|0|||||| +24|2023-10-06T20:29:29.8710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|E91|127791|127791|10000|10000|||100.10|97.37|0.00|3.11|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||100.10|97.37|0.00|3.11| +24|2023-10-06T20:29:29.8710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|DD2|46683|80739|4950|10000|||100.02|99.02|0.00|2.80|10FF0007|Kehabiqo Febiqo|0|92113|128564|10000|10000|||99.57|97.09|0.00|3.12| +38|2023-10-06T20:29:29.8710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80802|128564|10000|10000|0||99.57|97.09|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:29.8710000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +30|2023-10-06T20:29:29.8710000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:29.8710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|19||100.10|97.37|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:29.8710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|50221|80739|5500|10000|21||100.02|99.02|0.00|2.80|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:29.9170000-07:00|10FF0001|Sesuga Sapisuga|0001B36C|122635|127791|10000|10000|0||100.10|97.37|0.00|3.11|1302|0|0|02|02000000|0|0|||||| +37|2023-10-06T20:29:29.9170000-07:00|10FF0003|Gegehi Gehi|0001B35C|68197|73085|5550|10000|33||102.22|98.53|-0.02|-3.02|2307|0|0|01|0400077D|0|41E16248|| +22|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|40A6|Angel's Whisper|10FF0007|Kehabiqo Febiqo|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|92113|128564|10000|10000|||99.57|97.09|0.00|3.12|76295|77430|10000|10000|||98.71|97.61|0.00|0.39|0001B36F|0|8| +22|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|40A6|Angel's Whisper|10FF0001|Sesuga Sapisuga|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||100.10|97.37|0.00|3.11|76295|77430|10000|10000|||98.71|97.61|0.00|0.39|0001B36F|1|8| +22|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|40A6|Angel's Whisper|10FF0006|Wowobora Gogobora|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|31460|80739|5325|10000|||100.58|97.00|0.00|-2.02|76295|77430|10000|10000|||98.71|97.61|0.00|0.39|0001B36F|2|8| +22|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|40A6|Angel's Whisper|10FF0002|Suchichi Suchi|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|71683|90128|10000|10000|||100.11|98.83|-0.02|-3.12|76295|77430|10000|10000|||98.71|97.61|0.00|0.39|0001B36F|3|8| +22|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|40A6|Angel's Whisper|10FF0004|Buhojaqe Zijaqe|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|46683|80739|4950|10000|||100.02|99.02|0.00|2.80|76295|77430|10000|10000|||98.71|97.61|0.00|0.39|0001B36F|4|8| +22|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|40A6|Angel's Whisper|10FF0005|Wuwuchu Wuchu|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|68421|90055|10000|10000|||99.69|99.66|0.00|3.06|76295|77430|10000|10000|||98.71|97.61|0.00|0.39|0001B36F|5|8| +22|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|40A6|Angel's Whisper|10FF0008|Kokosaze Lulusaze|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|50787|79111|9700|10000|||99.69|100.69|0.00|3.13|76295|77430|10000|10000|||98.71|97.61|0.00|0.39|0001B36F|6|8| +22|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|40A6|Angel's Whisper|10FF0003|Gegehi Gehi|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|60808|73085|5550|10000|||102.22|98.53|-0.02|-3.02|76295|77430|10000|10000|||98.71|97.61|0.00|0.39|0001B36F|7|8| +21|2023-10-06T20:29:29.9170000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|722003|1F250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6558480|40478540|10000|10000|||100.00|80.10|0.00|0.00|60808|73085|5550|10000|||102.22|98.53|-0.02|-3.02|0001B370|0|1| +38|2023-10-06T20:29:29.9170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122635|127791|10000|10000|0||100.10|97.37|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:29.9170000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0001|Sesuga Sapisuga|00|127791|77430| +30|2023-10-06T20:29:29.9170000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:29.9170000-07:00|40022CFF|Seraph|005A5A00|76295|77430|10000|10000|0||98.71|97.61|0.00|0.39|0|0|0|||||||||||||||| +30|2023-10-06T20:29:29.9170000-07:00|7AD|Summon Order III|0.00|40022CFF|Seraph|40022CFF|Seraph|01|77430|77430| +37|2023-10-06T20:29:29.9610000-07:00|10FF0003|Gegehi Gehi|0001B36C|47279|73085|5550|10000|0||102.22|98.53|-0.02|-3.02|2303|0|0|02|04000000|0|0|||||| +37|2023-10-06T20:29:29.9610000-07:00|10FF0001|Sesuga Sapisuga|0001B35F|122635|127791|10000|10000|0||100.10|97.37|0.00|3.11|1305|0|0|01|04000A8F|0|41E49370|| +24|2023-10-06T20:29:29.9610000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|E34|68421|90055|10000|10000|||99.69|99.66|0.00|3.01|10FF0005|Wuwuchu Wuchu|0|68421|90055|10000|10000|||99.69|99.66|0.00|3.01| +38|2023-10-06T20:29:29.9610000-07:00|10FF0003|Gegehi Gehi|005A5A23|47279|73085|5550|10000|0||102.22|98.53|-0.02|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:29.9610000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0003|Gegehi Gehi|00|73085|77430| +30|2023-10-06T20:29:29.9610000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:29.9610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|72057|90055|10000|10000|19||99.69|99.66|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:30.0050000-07:00|10FF0002|Suchichi Suchi|0001B36C|40578|90128|10000|10000|0||100.11|98.83|0.00|-3.12|1604|0|0|02|06000000|0|0|||||| +37|2023-10-06T20:29:30.0050000-07:00|40022550|Zeromus|0001B369|6558479||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:30.0050000-07:00|10FF0003|Gegehi Gehi|48009|73085|5750|10000|||102.22|98.53|-0.02|-3.02| +24|2023-10-06T20:29:30.0050000-07:00|10FF0006|Wowobora Gogobora|HoT|0|DE3|31460|80739|5325|10000|||100.45|98.31|0.00|-0.83|10FF0007|Kehabiqo Febiqo|0|80802|128564|10000|10000|||99.57|97.09|0.00|3.12| +21|2023-10-06T20:29:30.0050000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6558480|40478540|10000|10000|||100.00|80.10|0.00|0.00|72057|90055|10000|10000|||99.69|99.66|0.00|2.94|0001B371|0|1| +38|2023-10-06T20:29:30.0050000-07:00|10FF0002|Suchichi Suchi|005A5A16|40578|90128|10000|10000|0||100.11|98.83|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:30.0050000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0002|Suchichi Suchi|00|90128|77430| +30|2023-10-06T20:29:30.0050000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:30.0050000-07:00|10FF0006|Wowobora Gogobora|005A5A28|35015|80739|5875|10000|0||100.45|98.31|0.00|-0.83|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:29:30.0490000-07:00|10FF0002|Suchichi Suchi|0001B368|40578|90128|10000|10000|0||100.11|98.83|0.00|-3.12|1600|0|0|01|06000312|0|41700000|| +26|2023-10-06T20:29:30.0490000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:30.0490000-07:00|10FF0004|Buhojaqe Zijaqe|0001B36C|25299|80739|5500|10000|0||100.02|99.03|0.00|1.15|1C05|0|0|02|06000000|0|0|||||| +37|2023-10-06T20:29:30.0490000-07:00|10FF0006|Wowobora Gogobora|0001B367|48028|80739|6575|10000|0||100.45|98.31|0.00|-0.83|2800|0|0|0| +21|2023-10-06T20:29:30.0490000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|724003|56030000|104|10138000|0|0|0|0|0|0|0|0|0|0|0|0|6558480|40478540|10000|10000|||100.00|80.10|0.00|0.00|71683|90128|10000|10000|||100.11|98.83|0.00|-3.12|0001B372|0|1| +38|2023-10-06T20:29:30.0490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|25299|80739|5500|10000|0||100.02|99.03|0.00|1.15|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:30.0490000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +30|2023-10-06T20:29:30.0490000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:29:30.0940000-07:00|10FF0005|Wuwuchu Wuchu|0001B36C|42506|90055|10000|10000|0||99.69|99.66|0.00|2.94|2706|0|0|02|04000000|0|0|||||| +37|2023-10-06T20:29:30.0940000-07:00|10FF0007|Kehabiqo Febiqo|0001B35F|80802|128564|10000|10000|0||99.57|97.09|0.00|3.12|1506|0|0|01|06000A8F|0|41E3830D|| +21|2023-10-06T20:29:30.0940000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6558480|40478540|10000|10000|||100.00|80.10|0.00|0.00|50221|80739|5500|10000|||100.02|99.03|0.00|1.15|0001B373|0|1| +38|2023-10-06T20:29:30.0940000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|42506|90055|10000|10000|0||99.69|99.66|0.00|2.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:30.0940000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +30|2023-10-06T20:29:30.0940000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:30.1380000-07:00|40022550|Zeromus|0001B36A|6528845||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:30.1380000-07:00|10FF0008|Kokosaze Lulusaze|0001B36C|23623|79111|9700|10000|0||99.69|100.69|0.00|3.13|1B07|0|0|02|03000000|0|0|||||| +38|2023-10-06T20:29:30.1380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|23623|79111|9700|10000|0||99.69|100.69|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:30.1380000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +30|2023-10-06T20:29:30.1380000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:29:30.1830000-07:00|10FF0004|Buhojaqe Zijaqe|0001B368|25299|80739|5500|10000|0||100.02|99.03|0.00|1.15|1C01|0|0|01|06000312|0|41700000|| +26|2023-10-06T20:29:30.1830000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|80739|90128| +37|2023-10-06T20:29:30.1830000-07:00|10FF0001|Sesuga Sapisuga|0001B367|127791||||||100.10|97.37|0.00|-3.14| +20|2023-10-06T20:29:30.1830000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.45|98.31|0.00|-0.83| +38|2023-10-06T20:29:30.1830000-07:00|40022CFF|Seraph|005A5A00|76295|77430|10000|10000|0||98.71|97.61|0.00|0.80|0|0|0|||||||||||||||| +26|2023-10-06T20:29:30.1830000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|40022CFF|Seraph|00|77430|90128| +261|2023-10-06T20:29:29.6540000-07:00|Change|10FF0003||||| +37|2023-10-06T20:29:30.2270000-07:00|10FF0006|Wowobora Gogobora|0001B35F|48028|80739|6575|10000|0||100.43|98.46|0.00|-1.30|2807|0|0|01|05000A8F|0|41E2709E|| +39|2023-10-06T20:29:30.2270000-07:00|10FF0007|Kehabiqo Febiqo|82087|128564|10000|10000|||99.57|97.09|0.00|3.12| +21|2023-10-06T20:29:30.2270000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|14C00000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|6528845|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.10|97.37|0.00|-3.14|0001B374|0|1| +21|2023-10-06T20:29:30.2720000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|475E0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|6528845|40478540|10000|10000|||100.00|80.10|0.00|0.00|23623|79111|9700|10000|||99.69|100.69|0.00|3.13|0001B375|0|1| +37|2023-10-06T20:29:30.3160000-07:00|10FF0005|Wuwuchu Wuchu|0001B368|42506|90055|10000|10000|0||99.69|99.66|0.00|2.91|2702|0|0|01|04000312|0|41700000|| +26|2023-10-06T20:29:30.3160000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:29:30.3160000-07:00|10FF0007|Kehabiqo Febiqo|0001B367|95256||||||99.57|97.09|0.00|3.12| +37|2023-10-06T20:29:30.3160000-07:00|40022550|Zeromus|0001B36D|6527033||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:29.7710000-07:00|Change|10FF0008||| +37|2023-10-06T20:29:30.3610000-07:00|10FF0004|Buhojaqe Zijaqe|0001B366|31625||||||100.06|99.12|0.00|0.95| +37|2023-10-06T20:29:30.4500000-07:00|10FF0001|Sesuga Sapisuga|0001B368|127791|127791|10000|10000|0||100.10|97.37|0.00|-3.14|1303|0|0|01|02000312|0|41700000|| +26|2023-10-06T20:29:30.4500000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|127791|90128| +37|2023-10-06T20:29:30.4500000-07:00|10FF0002|Suchichi Suchi|0001B367|53883||||||100.13|98.87|-0.02|2.82| +39|2023-10-06T20:29:30.4500000-07:00|10FF0002|Suchichi Suchi|54784|90128|10000|10000|||100.13|98.87|-0.02|2.82| +37|2023-10-06T20:29:30.4940000-07:00|10FF0002|Suchichi Suchi|0001B366|61292||||||100.16|98.97|0.00|1.98| +37|2023-10-06T20:29:30.4940000-07:00|40022550|Zeromus|0001B370|6519060||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:30.4940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.08|99.15|0.00|0.90| +37|2023-10-06T20:29:30.5400000-07:00|40022550|Zeromus|0001B371|6514784||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:30.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E3E|95256|128564|10000|10000|||99.57|97.09|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|95256|128564|10000|10000|||99.57|97.09|0.00|3.12| +24|2023-10-06T20:29:30.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D9A|23623|79111|9400|10000|||99.69|100.69|0.00|3.13|10FF0008|Kokosaze Lulusaze|0|23623|79111|9400|10000|||99.69|100.69|0.00|3.13| +38|2023-10-06T20:29:30.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98902|128564|10000|10000|0||99.57|97.09|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:30.5400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|27105|79111|9950|10000|0||99.69|100.69|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:29:30.5840000-07:00|10FF0007|Kehabiqo Febiqo|0001B368|98902|128564|10000|10000|0||99.57|97.09|0.00|3.12|1504|0|0|01|05000312|0|41700000|| +26|2023-10-06T20:29:30.5840000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|128564|90128| +37|2023-10-06T20:29:30.5840000-07:00|10FF0004|Buhojaqe Zijaqe|0001B367|44550||||||100.09|99.17|0.00|1.11| +21|2023-10-06T20:29:30.5840000-07:00|10FF0005|Wuwuchu Wuchu|20FDD6F|item_fdd6f|10FF0005|Wuwuchu Wuchu|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42506|90055|10000|10000|||99.69|99.66|0.00|2.91|42506|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B376|0|1| +261|2023-10-06T20:29:30.1110000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:29:30.6280000-07:00|10FF0005|Wuwuchu Wuchu|0001B366|49056||||||99.69|99.66|0.00|2.91| +37|2023-10-06T20:29:30.6280000-07:00|40022550|Zeromus|0001B373|6514624||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:30.2110000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:29:30.7170000-07:00|10FF0006|Wowobora Gogobora|0001B368|48028|80739|6575|10000|0||100.36|98.86|-0.01|-2.99|2805|0|0|01|04000312|0|41700000|| +26|2023-10-06T20:29:30.7170000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|80739|90128| +37|2023-10-06T20:29:30.7170000-07:00|10FF0003|Gegehi Gehi|0001B367|61289||||||102.22|98.53|-0.02|-3.02| +20|2023-10-06T20:29:30.7170000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|102.22|98.53|-0.02|-3.02| +37|2023-10-06T20:29:30.7620000-07:00|40022550|Zeromus|0001B36B|6492494||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:30.8070000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6492494|40478540|10000|10000|||100.00|80.10|0.00|0.00|98902|128564|10000|10000|||99.57|97.09|0.00|3.12|0001B377|0|1| +37|2023-10-06T20:29:30.8510000-07:00|10FF0008|Kokosaze Lulusaze|0001B368|27105|79111|9950|10000|0||99.77|100.66|-0.02|2.41|1B06|0|0|01|03000312|0|41700000|| +26|2023-10-06T20:29:30.8510000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|79111|90128| +37|2023-10-06T20:29:30.8510000-07:00|10FF0005|Wuwuchu Wuchu|0001B367|61892||||||99.69|99.66|0.00|2.91| +37|2023-10-06T20:29:30.8510000-07:00|40022550|Zeromus|0001B374|6487182||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:30.8520000-07:00|40022D77|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||101.61|101.82|0.00|-3.07|0|0|0|||||||||| +26|2023-10-06T20:29:30.8520000-07:00|312|Battle Litany|14.96|10FF0002|Suchichi Suchi|40022D77|Demi-Bahamut|00|68265|90128| +37|2023-10-06T20:29:30.8960000-07:00|40022550|Zeromus|0001B375|6468912||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:30.8960000-07:00|10FF0008|Kokosaze Lulusaze|0001B366|33436||||||99.77|100.66|-0.02|2.41| +21|2023-10-06T20:29:30.8960000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|318C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|98902|128564|10000|10000|||99.57|97.09|0.00|3.12|6492494|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B378|0|1| +37|2023-10-06T20:29:30.9400000-07:00|10FF0007|Kehabiqo Febiqo|0001B36F|98902|128564|10000|10000|0||99.57|97.09|0.00|3.12|1500|0|0|01|07000752|0|41A80000|| +26|2023-10-06T20:29:30.9400000-07:00|752|Angel's Whisper|21.00|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +37|2023-10-06T20:29:30.9850000-07:00|10FF0003|Gegehi Gehi|0001B368|61289|73085|5750|10000|0||102.22|98.53|-0.02|-3.02|2307|0|0|01|04000312|0|41700000|| +26|2023-10-06T20:29:30.9850000-07:00|312|Battle Litany|15.00|10FF0002|Suchichi Suchi|10FF0003|Gegehi Gehi|00|73085|90128| +37|2023-10-06T20:29:30.9850000-07:00|10FF0008|Kokosaze Lulusaze|0001B367|54204||||||99.80|100.66|0.00|2.22| +37|2023-10-06T20:29:31.0280000-07:00|10FF0007|Kehabiqo Febiqo|0001B366|105238||||||99.57|97.09|0.00|3.12| +39|2023-10-06T20:29:31.0280000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.10|97.37|0.00|-3.14| +37|2023-10-06T20:29:31.0730000-07:00|10FF0001|Sesuga Sapisuga|0001B36F|127791|127791|10000|10000|0||100.10|97.37|0.00|-3.14|1301|0|0|01|06000752|0|41A80000|| +26|2023-10-06T20:29:31.0730000-07:00|752|Angel's Whisper|21.00|40022CFF|Seraph|10FF0001|Sesuga Sapisuga|00|127791|77430| +24|2023-10-06T20:29:31.0730000-07:00|40022CFF|Seraph|HoT|0|4B3|76295|77430|10000|10000|||98.71|97.61|0.00|1.24|40022CFF|Seraph|0|76295|77430|10000|10000|||98.71|97.61|0.00|1.24| +38|2023-10-06T20:29:31.0730000-07:00|40022CFF|Seraph|005A5A00|77430|77430|10000|10000|0||98.71|97.61|0.00|1.24|0|0|0|||||||||||||||| +21|2023-10-06T20:29:31.1180000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5E530000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|6468912|40478540|10000|10000|||100.00|80.10|0.00|0.00|48028|80739|6575|10000|||100.36|98.89|0.00|-3.12|0001B379|0|1| +37|2023-10-06T20:29:31.1620000-07:00|10FF0006|Wowobora Gogobora|0001B366|58676||||||100.36|98.89|0.00|-3.12| +37|2023-10-06T20:29:31.2070000-07:00|10FF0006|Wowobora Gogobora|0001B36F|58676|80739|6175|10000|0||100.36|98.89|0.00|-3.12|2802|0|0|01|06000752|0|41A80000|| +26|2023-10-06T20:29:31.2070000-07:00|752|Angel's Whisper|21.00|40022CFF|Seraph|10FF0006|Wowobora Gogobora|00|80739|77430| +39|2023-10-06T20:29:31.2070000-07:00|40022CFF|Seraph|77430|77430|10000|10000|||98.71|97.61|0.00|1.24| +24|2023-10-06T20:29:31.2070000-07:00|40022550|Zeromus|DoT|0|2765|6468912|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|6468912|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:31.2070000-07:00|40022550|Zeromus|005A5A00|6458827|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:29:30.6120000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T20:29:31.2500000-07:00|40022550|Zeromus|0001B372|6436808||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:31.2500000-07:00|10FF0002|Suchichi Suchi|0001B372|65407||||||100.23|99.15|0.00|2.87| +21|2023-10-06T20:29:31.2510000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D724003|3C500000|104|B458000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|6436808|40478540|10000|10000|||100.00|80.10|0.00|0.00|65407|90128|10000|10000|||100.23|99.16|-0.01|3.07|0001B37A|0|1| +38|2023-10-06T20:29:31.2510000-07:00|10FF0002|Suchichi Suchi|005A5A16|65407|90128|10000|10000|0||100.23|99.16|-0.01|3.07|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:31.2510000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:29:31.2510000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:31.2950000-07:00|10FF0003|Gegehi Gehi|0001B366|71825||||||102.22|98.53|-0.02|-3.02| +37|2023-10-06T20:29:31.3410000-07:00|40022550|Zeromus|0001B377|6433838||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:31.3410000-07:00|10FF0002|Suchichi Suchi|0001B36F|65407|90128|10000|10000|0||100.23|99.16|-0.01|3.07|1603|0|0|02|09000752|0|41A80000|||||| +26|2023-10-06T20:29:31.3410000-07:00|752|Angel's Whisper|21.00|40022CFF|Seraph|10FF0002|Suchichi Suchi|00|90128|77430| +39|2023-10-06T20:29:31.3410000-07:00|40022D77|Demi-Bahamut|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07| +261|2023-10-06T20:29:30.8470000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:29:31.4300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|4E2E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6433838|40478540|10000|10000|||100.00|80.10|0.00|0.00|44550|80739|5500|10000|||100.11|99.23|0.00|-3.13|0001B37B|0|1| +37|2023-10-06T20:29:31.4740000-07:00|10FF0005|Wuwuchu Wuchu|0001B376|61892|90055|10000|10000|0||99.69|99.66|0.00|2.91|2700|0|0|01|07000031|296B|41F00000|| +26|2023-10-06T20:29:31.4740000-07:00|31|Medicated|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|296B|90055|90055| +37|2023-10-06T20:29:31.4740000-07:00|10FF0004|Buhojaqe Zijaqe|0001B36F|44550|80739|5100|10000|0||100.11|99.23|0.00|-3.13|1C04|0|0|01|08000752|0|41A80000|| +26|2023-10-06T20:29:31.4740000-07:00|752|Angel's Whisper|21.00|40022CFF|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +38|2023-10-06T20:29:31.4740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|61892|90055|10000|10000|0||99.69|99.66|0.00|2.91|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:31.5180000-07:00|10FF0006|Wowobora Gogobora|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12| +37|2023-10-06T20:29:31.6070000-07:00|10FF0005|Wuwuchu Wuchu|0001B36F|61892|90055|10000|10000|0||99.69|99.66|0.00|2.91|2705|0|0|01|08000752|0|41A80000|| +26|2023-10-06T20:29:31.6070000-07:00|752|Angel's Whisper|21.00|40022CFF|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|77430| +261|2023-10-06T20:29:31.1760000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:29:31.6520000-07:00|40022D77|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|752003|20080000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|6433838|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07|0001B37C|0|1| +38|2023-10-06T20:29:31.6520000-07:00|40022550|Zeromus|005A5A00|6433838|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:31.6520000-07:00|4B3|Addle|0.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|79111| +261|2023-10-06T20:29:31.1760000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:29:31.6960000-07:00|10FF0007|Kehabiqo Febiqo|0001B378|92554||||||99.53|96.51|0.00|-3.14| +21|2023-10-06T20:29:31.6960000-07:00|40022CFF|Seraph|40A4|Seraphic Veil|10FF0008|Kokosaze Lulusaze|4|149D0000|9D0E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|54204|79111|9950|10000|||99.75|100.83|0.00|0.45|77430|77430|10000|10000|||98.71|97.61|0.00|1.08|0001B37D|0|1| +38|2023-10-06T20:29:31.6960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|54204|79111|9950|10000|6||99.75|100.83|0.00|0.45|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:29:31.6960000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +37|2023-10-06T20:29:31.7410000-07:00|10FF0008|Kokosaze Lulusaze|0001B36F|54204|79111|9950|10000|6||99.75|100.83|0.00|0.45|1B06|0|0|01|09000752|0|41A80000|| +26|2023-10-06T20:29:31.7410000-07:00|752|Angel's Whisper|21.00|40022CFF|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|77430| +22|2023-10-06T20:29:31.7410000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0006|Wowobora Gogobora|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B37E|0|8| +22|2023-10-06T20:29:31.7410000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0002|Suchichi Suchi|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|65407|90128|10000|10000|||100.34|99.04|0.00|-3.13|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B37E|1|8| +22|2023-10-06T20:29:31.7410000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0004|Buhojaqe Zijaqe|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|44550|80739|5100|10000|||100.11|99.23|0.00|-3.13|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B37E|2|8| +22|2023-10-06T20:29:31.7410000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0005|Wuwuchu Wuchu|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B37E|3|8| +22|2023-10-06T20:29:31.7410000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0001|Sesuga Sapisuga|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||102.03|97.45|0.00|3.10|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B37E|4|8| +22|2023-10-06T20:29:31.7410000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0003|Gegehi Gehi|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|71825|73085|5750|10000|||102.22|98.53|-0.02|-3.02|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B37E|5|8| +22|2023-10-06T20:29:31.7410000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0008|Kokosaze Lulusaze|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|54204|79111|9950|10000|||99.75|100.83|0.00|0.45|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B37E|6|8| +22|2023-10-06T20:29:31.7410000-07:00|10FF0006|Wowobora Gogobora|5EEE|Physis II|10FF0007|Kehabiqo Febiqo|73DD0E|A3C0000|A0E|A3D0000|0|0|0|0|0|0|0|0|0|0|0|0|105238|128564|10000|10000|||99.53|96.51|0.00|-3.14|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B37E|7|8| +24|2023-10-06T20:29:31.7850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|227E|105238|128564|10000|10000|||99.53|96.51|0.00|-3.14|10FF0006|Wowobora Gogobora|1|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12| +37|2023-10-06T20:29:31.7850000-07:00|40022550|Zeromus|0001B379|6409691||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:31.7860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101384|128564|10000|10000|0||99.53|96.51|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:31.7860000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:29:31.8300000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|DD20000|104|2948000|0|0|0|0|0|0|0|0|0|0|0|0|6409691|40478540|10000|10000|||100.00|80.10|0.00|0.00|65407|90128|10000|10000|||100.39|98.97|0.00|-3.14|0001B37F|0|1| +22|2023-10-06T20:29:31.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0005|Wuwuchu Wuchu|30E|A270000|100000E|A280000|F|B9C8000|0|0|0|0|0|0|0|0|0|0|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B380|0|8| +22|2023-10-06T20:29:31.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0004|Buhojaqe Zijaqe|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|44550|80739|5100|10000|||100.11|99.23|0.00|-3.13|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B380|1|8| +22|2023-10-06T20:29:31.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0006|Wowobora Gogobora|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B380|2|8| +22|2023-10-06T20:29:31.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0002|Suchichi Suchi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|65407|90128|10000|10000|||100.39|98.97|0.00|-3.14|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B380|3|8| +22|2023-10-06T20:29:31.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0008|Kokosaze Lulusaze|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|54204|79111|9950|10000|||99.73|100.88|0.00|0.35|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B380|4|8| +22|2023-10-06T20:29:31.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0001|Sesuga Sapisuga|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||102.26|97.46|0.00|3.10|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B380|5|8| +22|2023-10-06T20:29:31.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0003|Gegehi Gehi|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|71825|73085|5750|10000|||102.22|98.53|-0.02|-3.02|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B380|6|8| +22|2023-10-06T20:29:31.8300000-07:00|10FF0005|Wuwuchu Wuchu|5F55|Arcane Circle|10FF0007|Kehabiqo Febiqo|30E|A270000|100000E|A280000|0|0|0|0|0|0|0|0|0|0|0|0|101384|128564|10000|10000|||99.53|96.18|0.00|-3.14|61892|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B380|7|8| +37|2023-10-06T20:29:31.8750000-07:00|10FF0003|Gegehi Gehi|0001B36F|71825|73085|5750|10000|0||102.22|98.53|-0.02|-3.02|2307|0|0|01|06000752|0|41A80000|| +26|2023-10-06T20:29:31.8750000-07:00|752|Angel's Whisper|21.00|40022CFF|Seraph|10FF0003|Gegehi Gehi|00|73085|77430| +39|2023-10-06T20:29:31.8750000-07:00|10FF0005|Wuwuchu Wuchu|62792|90055|10000|10000|||99.69|99.66|0.00|2.91| +38|2023-10-06T20:29:31.8750000-07:00|40022550|Zeromus|005A5A00|6409691|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:31.8750000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +38|2023-10-06T20:29:31.8750000-07:00|40022CFF|Seraph|005A5A00|77430|77430|10000|10000|0||98.71|97.61|0.00|0.90|0|0|0||||||||||||| +30|2023-10-06T20:29:31.8750000-07:00|77B|Summon Order|0.00|40022CFF|Seraph|40022CFF|Seraph|01|77430|77430| +37|2023-10-06T20:29:31.9190000-07:00|40022550|Zeromus|0001B37A|6394251||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:31.9190000-07:00|10FF0002|Suchichi Suchi|0001B37A|68292|90128|10000|10000|0||100.39|98.97|0.00|-3.14|1600|0|0|01|0A000322|0|41F00000|| +21|2023-10-06T20:29:31.9190000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|726003|558B0000|104|FFC8000|23E|BD8000|FE3E|9E8000|0|0|0|0|0|0|0|0|6409691|40478540|10000|10000|||100.00|80.10|0.00|0.00|65407|90128|10000|10000|||100.39|98.97|0.00|-3.14|0001B381|0|1| +38|2023-10-06T20:29:31.9190000-07:00|10FF0002|Suchichi Suchi|005A5A16|68292|90128|10000|10000|0||100.39|98.97|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:31.9640000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|716003|2E7A0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|6394251|40478540|10000|10000|||100.00|80.10|0.00|0.00|101384|128564|10000|10000|||99.53|95.85|-0.02|-3.14|0001B382|0|1| +39|2023-10-06T20:29:32.0530000-07:00|10FF0008|Kokosaze Lulusaze|54995|79111|10000|10000|||99.68|101.00|0.00|0.16| +21|2023-10-06T20:29:32.0530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6394251|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||102.26|97.46|0.00|3.10|0001B383|0|1| +31|2023-10-06T20:29:32.0530000-07:00|10FF0001||||| +39|2023-10-06T20:29:32.1420000-07:00|10FF0004|Buhojaqe Zijaqe|45357|80739|5300|10000|||100.11|99.23|0.00|-3.13| +21|2023-10-06T20:29:32.1420000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|24C10000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|6394251|40478540|10000|10000|||100.00|80.10|0.00|0.00|71825|73085|5750|10000|||102.22|98.53|-0.02|-3.02|0001B384|0|1| +38|2023-10-06T20:29:32.1420000-07:00|10FF0003|Gegehi Gehi|005A5A23|71825|73085|5550|10000|0||102.22|98.53|-0.02|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:32.1420000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:29:32.1420000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:29:31.6770000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T20:29:32.2310000-07:00|40022550|Zeromus|0001B37B|6374237||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:32.2310000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6394251|40478540|10000|10000|||100.00|80.10|0.00|0.00|54995|79111|10000|10000|||99.66|101.06|-0.02|0.06|0001B385|0|1| +37|2023-10-06T20:29:32.3650000-07:00|40022550|Zeromus|0001B37F|6370699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:32.3650000-07:00|10FF0002|Suchichi Suchi|0001B37F|68952||||||100.45|98.89|0.00|-3.12| +261|2023-10-06T20:29:31.9100000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:29:32.4550000-07:00|10FF0005|Wuwuchu Wuchu|0001B380|62792|90055|10000|10000|0||99.69|99.66|0.00|2.91|2700|0|0|03|09000A27|0|41A00000|||||||||| +26|2023-10-06T20:29:32.4550000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:32.4550000-07:00|B9C|Bloodsown Circle|6.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:32.4550000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +37|2023-10-06T20:29:32.4990000-07:00|40022550|Zeromus|0001B382|6358801||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:32.5440000-07:00|40022550|Zeromus|0001B381|6336902||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:32.5440000-07:00|10FF0002|Suchichi Suchi|0001B381|73044||||||100.45|98.89|0.00|-3.12| +21|2023-10-06T20:29:32.5450000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|726003|7CCC0000|104|17538000|0|0|0|0|0|0|0|0|0|0|0|0|6336902|40478540|10000|10000|||100.00|80.10|0.00|0.00|73044|90128|10000|10000|||100.45|98.89|0.00|-3.12|0001B386|0|1| +37|2023-10-06T20:29:32.5890000-07:00|10FF0006|Wowobora Gogobora|0001B37E|59483|80739|6380|10000|0||100.36|98.89|0.00|-3.12|2800|0|0|02|07000A3C|0|41700000|||||| +26|2023-10-06T20:29:32.5890000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:32.5890000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:29:32.5890000-07:00|40022550|Zeromus|0001B383|6334749||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:32.5890000-07:00|10FF0004|Buhojaqe Zijaqe|0001B380|45357|80739|5300|10000|0||100.19|99.23|-0.02|2.16|1C01|0|0|02|09000A27|0|41A00000|||||| +26|2023-10-06T20:29:32.5890000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +26|2023-10-06T20:29:32.5890000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|80739|90055| +21|2023-10-06T20:29:32.5900000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|101384|128564|10000|10000|||99.53|95.29|0.00|3.11|101384|128564|10000|10000|||99.53|95.29|0.00|3.11|0001B387|0|1| +20|2023-10-06T20:29:32.5900000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.36|98.89|0.00|-3.12| +21|2023-10-06T20:29:32.5900000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|752003|8A3E0000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|6336902|40478540|10000|10000|||100.00|80.10|0.00|0.00|62792|90055|10000|10000|||99.69|99.66|0.00|2.91|0001B388|0|1| +38|2023-10-06T20:29:32.5900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101384|128564|10000|10000|0||99.53|95.29|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:32.5900000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:29:32.5900000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62792|90055|10000|10000|0||99.69|99.66|0.00|2.91|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:32.5900000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +38|2023-10-06T20:29:32.5900000-07:00|40022CFF|Seraph|005A5A00|77430|77430|10000|10000|0||98.71|97.61|0.00|0.27|0|0|0|||||||||||||||| +26|2023-10-06T20:29:32.5900000-07:00|A27|Arcane Circle|19.95|10FF0005|Wuwuchu Wuchu|40022CFF|Seraph|00|77430|90055| +24|2023-10-06T20:29:32.6340000-07:00|10FF0002|Suchichi Suchi|HoT|0|1DEC|73044|90128|10000|10000|||100.45|98.89|0.00|-3.12|10FF0002|Suchichi Suchi|0|73044|90128|10000|10000|||100.45|98.89|0.00|-3.12| +38|2023-10-06T20:29:32.6340000-07:00|10FF0002|Suchichi Suchi|005A5A16|80704|90128|10000|10000|0||100.45|98.89|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:32.1410000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:29:32.6790000-07:00|40022550|Zeromus|0001B37C|6326549||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:32.6790000-07:00|10FF0003|Gegehi Gehi|HoT|0|17F9|71825|73085|5550|10000|||102.22|98.53|-0.02|-3.02|10FF0007|Kehabiqo Febiqo|0|101384|128564|10000|10000|||99.53|95.29|0.00|3.11| +38|2023-10-06T20:29:32.6790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5550|10000|0||102.22|98.53|-0.02|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:32.2380000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:29:32.7230000-07:00|10FF0002|Suchichi Suchi|0001B37E|80704|90128|10000|10000|0||100.45|98.89|0.00|-3.12|1601|0|0|02|0B000A3C|0|41700000|||||| +26|2023-10-06T20:29:32.7230000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:29:32.7230000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:29:32.7230000-07:00|10FF0006|Wowobora Gogobora|0001B380|59483|80739|6380|10000|0||100.36|98.89|0.00|-3.12|2802|0|0|02|0A000A27|0|41A00000|||||| +26|2023-10-06T20:29:32.7230000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +26|2023-10-06T20:29:32.7230000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|80739|90055| +37|2023-10-06T20:29:32.7230000-07:00|10FF0005|Wuwuchu Wuchu|0001B380|62792|90055|10000|10000|0||99.69|99.66|0.00|3.13|2702|0|0|01|0E000A1B|02|C1F00000|| +37|2023-10-06T20:29:32.7230000-07:00|10FF0008|Kokosaze Lulusaze|0001B37D|60272|79111|10000|10000|6||99.66|101.06|0.00|0.06|1B00|0|0|01|0800077D|0|41E7CABD|| +21|2023-10-06T20:29:32.7230000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35712003|331A0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|6334749|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01|0001B389|0|1| +37|2023-10-06T20:29:32.7670000-07:00|40022550|Zeromus|0001B385|6326397||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:32.7670000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|477D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|6326549|40478540|10000|10000|||100.00|80.10|0.00|0.00|60272|79111|10000|10000|||99.66|101.06|0.00|0.06|0001B38A|0|1| +38|2023-10-06T20:29:32.7670000-07:00|10FF0006|Wowobora Gogobora|005A5A28|59483|80739|6380|10000|0||100.36|98.89|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:32.7670000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:29:32.7670000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:29:32.3290000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:29:32.8560000-07:00|10FF0004|Buhojaqe Zijaqe|0001B37E|45357|80739|5300|10000|0||100.26|99.23|0.00|1.95|1C02|0|0|02|0C000A3C|0|41700000|||||| +26|2023-10-06T20:29:32.8560000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:29:32.8560000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:29:32.8560000-07:00|10FF0002|Suchichi Suchi|0001B380|80704|90128|10000|10000|0||100.45|98.89|0.00|-3.12|1603|0|0|02|0D000A27|0|41A00000|||||| +26|2023-10-06T20:29:32.8560000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +26|2023-10-06T20:29:32.8560000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|90128|90055| +37|2023-10-06T20:29:32.8560000-07:00|10FF0005|Wuwuchu Wuchu|0001B380|62792|90055|10000|10000|0||99.69|99.66|0.00|3.13|2703|0|0|01|0E000A1B|02|C1F00000|| +24|2023-10-06T20:29:32.8560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1836|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01| +24|2023-10-06T20:29:32.8560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|34E5|45357|80739|5300|10000|||100.26|99.23|0.00|1.95|10FF0006|Wowobora Gogobora|0|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12| +38|2023-10-06T20:29:32.8560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||102.26|97.46|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:32.8560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58898|80739|5850|10000|0||100.29|99.23|0.00|1.86|0|0|0||||||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:29:32.9010000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.29|99.23|0.00|1.86| +37|2023-10-06T20:29:32.9450000-07:00|40022550|Zeromus|0001B384|6316988||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:32.9450000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1C8C|62792|90055|10000|10000|||99.69|99.66|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|62792|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:32.9450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:32.9900000-07:00|10FF0005|Wuwuchu Wuchu|0001B37E|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|2703|0|0|03|0E000A1B|02|C1F00000|||||||||| +26|2023-10-06T20:29:32.9900000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:29:32.9900000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:32.9900000-07:00|10FF0008|Kokosaze Lulusaze|0001B380|60272|79111|9700|10000|6||99.66|101.06|0.00|3.13|1B04|0|0|02|0A000A27|0|41A00000|||||| +26|2023-10-06T20:29:32.9900000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +26|2023-10-06T20:29:32.9900000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|79111|90055| +37|2023-10-06T20:29:32.9900000-07:00|10FF0005|Wuwuchu Wuchu|0001B380|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|2704|0|0|01|0E000A1B|02|C1F00000|| +39|2023-10-06T20:29:32.9900000-07:00|10FF0003|Gegehi Gehi|73085|73085|5750|10000|||102.22|98.53|-0.02|-3.02| +24|2023-10-06T20:29:32.9900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|28EF|59483|80739|6380|10000|||100.36|98.89|0.00|-3.12|10FF0005|Wuwuchu Wuchu|0|62792|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:32.9900000-07:00|40022D77|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||101.61|101.82|0.00|-3.07|0|0|0||||||||||||| +26|2023-10-06T20:29:32.9900000-07:00|A27|Arcane Circle|19.96|10FF0005|Wuwuchu Wuchu|40022D77|Demi-Bahamut|00|68265|90055| +38|2023-10-06T20:29:32.9900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|69962|80739|6380|10000|0||100.36|98.89|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:33.0350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101384|128564|10000|10000|0||99.53|95.29|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.0350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:29:33.0350000-07:00|10FF0002|Suchichi Suchi|005A5A16|80704|90128|10000|10000|0||100.45|98.89|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.0350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|90128|128564| +38|2023-10-06T20:29:33.0350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|60272|79111|9700|10000|6||99.66|101.06|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.0350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|79111|128564| +38|2023-10-06T20:29:33.0350000-07:00|10FF0006|Wowobora Gogobora|005A5A28|69962|80739|6380|10000|0||100.36|98.89|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.0350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|80739|128564| +38|2023-10-06T20:29:33.0350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||102.26|97.46|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.0350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +38|2023-10-06T20:29:33.0350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58898|80739|5850|10000|0||100.32|99.23|0.00|1.78|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.0350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +38|2023-10-06T20:29:33.0350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5750|10000|0||102.22|98.53|-0.02|-3.02|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:29:33.0350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73085|128564| +38|2023-10-06T20:29:33.0350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.0350000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|90055|128564| +37|2023-10-06T20:29:33.1240000-07:00|10FF0007|Kehabiqo Febiqo|0001B387|101384|128564|10000|10000|0||99.53|95.29|0.00|3.11|1500|0|0|01|09000769|0|41F00000|| +37|2023-10-06T20:29:33.1240000-07:00|10FF0001|Sesuga Sapisuga|0001B37E|127791|127791|10000|10000|0||102.26|97.46|0.00|-3.01|1304|0|0|02|05000A3C|0|41700000|||||| +26|2023-10-06T20:29:33.1240000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:29:33.1240000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:29:33.1240000-07:00|10FF0001|Sesuga Sapisuga|0001B380|127791|127791|10000|10000|0||102.26|97.46|0.00|-3.01|1305|0|0|02|08000A27|0|41A00000|||||| +26|2023-10-06T20:29:33.1240000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +26|2023-10-06T20:29:33.1240000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|127791|90055| +37|2023-10-06T20:29:33.1240000-07:00|10FF0005|Wuwuchu Wuchu|0001B380|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|2705|0|0|01|0E000A1B|02|C1F00000|| +21|2023-10-06T20:29:33.1240000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|29490000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|6316988|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5750|10000|||102.22|98.53|-0.02|-3.02|0001B38B|0|1| +38|2023-10-06T20:29:33.1240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101384|128564|10000|10000|0||99.53|95.29|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:33.1240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5450|10000|0||102.22|98.53|-0.02|-3.02|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:29:33.1240000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:29:33.2140000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|F110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6316988|40478540|10000|10000|||100.00|80.10|0.00|0.00|70100|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B38C|0|1| +261|2023-10-06T20:29:32.7520000-07:00|Change|10FF0003||| +37|2023-10-06T20:29:33.2580000-07:00|10FF0003|Gegehi Gehi|0001B37E|73085|73085|5450|10000|0||102.22|98.53|-0.02|-3.02|2305|0|0|02|05000A3C|0|41700000|||||| +26|2023-10-06T20:29:33.2580000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:29:33.2580000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:29:33.2580000-07:00|10FF0003|Gegehi Gehi|0001B380|73085|73085|5450|10000|0||102.22|98.53|-0.02|-3.02|2306|0|0|02|08000A27|0|41A00000|||||| +26|2023-10-06T20:29:33.2580000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +26|2023-10-06T20:29:33.2580000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|01|73085|90055| +37|2023-10-06T20:29:33.2580000-07:00|10FF0005|Wuwuchu Wuchu|0001B380|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|2706|0|0|01|0E000A1B|02|C1F00000|| +39|2023-10-06T20:29:33.2590000-07:00|10FF0007|Kehabiqo Febiqo|102669|128564|10000|10000|||99.53|95.29|0.00|3.11| +37|2023-10-06T20:29:33.3030000-07:00|40022550|Zeromus|0001B386|6285040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:33.3030000-07:00|10FF0002|Suchichi Suchi|0001B386|86675||||||100.45|98.89|0.00|-3.12| +38|2023-10-06T20:29:33.3470000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:33.3470000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +38|2023-10-06T20:29:33.3470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|60272|79111|9700|10000|6||99.66|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.3470000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|01|79111|90055| +37|2023-10-06T20:29:33.3920000-07:00|40022550|Zeromus|0001B38A|6266739||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:33.3920000-07:00|10FF0008|Kokosaze Lulusaze|0001B37E|60272|79111|9700|10000|6||99.66|101.06|0.00|3.13|1B06|0|0|02|05000A3C|0|41700000|||||| +26|2023-10-06T20:29:33.3920000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:29:33.3920000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:29:33.3920000-07:00|10FF0007|Kehabiqo Febiqo|0001B380|102669|128564|10000|10000|0||99.53|95.29|0.00|3.11|1507|0|0|02|08000A27|0|41A00000|||||| +26|2023-10-06T20:29:33.3920000-07:00|A27|Arcane Circle|20.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +26|2023-10-06T20:29:33.3920000-07:00|A28|Circle of Sacrifice|5.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|128564|90055| +37|2023-10-06T20:29:33.3920000-07:00|10FF0005|Wuwuchu Wuchu|0001B380|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|2707|0|0|01|0E000A1B|02|C1F00000|| +21|2023-10-06T20:29:33.3920000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01|0001B38D|0|1| +26|2023-10-06T20:29:33.3920000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:29:33.3920000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|516D0000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|6285040|40478540|10000|10000|||100.00|80.10|0.00|0.00|70100|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B38E|0|1| +38|2023-10-06T20:29:33.3920000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.3920000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:33.3920000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +38|2023-10-06T20:29:33.4360000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:33.4360000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +39|2023-10-06T20:29:33.4370000-07:00|10FF0002|Suchichi Suchi|87576|90128|10000|10000|||100.45|98.89|0.00|-3.12| +26|2023-10-06T20:29:33.4370000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:29:33.4370000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|756003|74010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6266739|40478540|10000|10000|||100.00|80.10|0.00|0.00|60272|79111|9700|10000|||99.66|101.06|0.00|3.13|0001B38F|0|1| +38|2023-10-06T20:29:33.4370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||102.26|97.46|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.4370000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|01|127791|90055| +37|2023-10-06T20:29:33.4810000-07:00|40022550|Zeromus|0001B389|6253657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:33.5260000-07:00|10FF0007|Kehabiqo Febiqo|0001B37E|102669|128564|10000|10000|0||99.53|95.29|0.00|3.11|1507|0|0|02|0C000A3C|0|41700000|||||| +26|2023-10-06T20:29:33.5260000-07:00|A3C|Physis II|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:29:33.5260000-07:00|A3D|Autophysis|10.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +24|2023-10-06T20:29:33.5260000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|201C|102669|128564|10000|10000|||99.53|95.29|0.00|3.11|10FF0006|Wowobora Gogobora|0|69962|80739|6380|10000|||100.36|98.89|0.00|-3.12| +24|2023-10-06T20:29:33.5260000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2575|60272|79111|9700|10000|||99.66|101.06|0.00|3.13|10FF0006|Wowobora Gogobora|0|69962|80739|6380|10000|||100.36|98.89|0.00|-3.12| +21|2023-10-06T20:29:33.5260000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|62260000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|6266739|40478540|10000|10000|||100.00|80.10|0.00|0.00|69962|80739|6380|10000|||100.36|98.89|0.00|-3.12|0001B390|0|1| +38|2023-10-06T20:29:33.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110889|128564|10000|10000|0||99.53|95.29|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:33.5260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69861|79111|10000|10000|6||99.66|101.06|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:33.6590000-07:00|40022550|Zeromus|0001B388|6218267||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:33.6590000-07:00|10FF0005|Wuwuchu Wuchu|0001B388|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|2700|0|0|02|0E000A1B|01|41F00000|||||| +38|2023-10-06T20:29:33.6590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:33.2020000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T20:29:33.7020000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6218267|40478540|10000|10000|||100.00|80.10|0.00|0.00|69962|80739|5980|10000|||100.36|98.89|0.00|-3.12|0001B391|0|1| +37|2023-10-06T20:29:33.7470000-07:00|40022550|Zeromus|0001B38C|6214410||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:33.7470000-07:00|10FF0005|Wuwuchu Wuchu|0001B38C|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|2700|0|0|01|11000A1D|0|C2700000|| +21|2023-10-06T20:29:33.7470000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|433B0000|104|C908000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|6218267|40478540|10000|10000|||100.00|80.10|0.00|0.00|87576|90128|10000|10000|||100.45|98.89|0.00|-3.12|0001B392|0|1| +38|2023-10-06T20:29:33.7470000-07:00|10FF0002|Suchichi Suchi|005A5A16|87576|90128|10000|10000|0||100.45|98.89|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:33.7470000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:29:33.7470000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:33.2020000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T20:29:33.8370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:33.8370000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|03|90055|90055| +38|2023-10-06T20:29:33.8370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:33.8370000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|04|90055|90055| +30|2023-10-06T20:29:33.8370000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +38|2023-10-06T20:29:33.8370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5450|10000|0||102.22|98.53|-0.02|-3.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:29:33.8370000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|01|73085|90055| +261|2023-10-06T20:29:33.2940000-07:00|Change|10FF0008||| +37|2023-10-06T20:29:33.8810000-07:00|40022550|Zeromus|0001B38B|6203841||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:33.8810000-07:00|40022550|Zeromus|0001B38E|6182996||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:33.8810000-07:00|10FF0005|Wuwuchu Wuchu|0001B38E|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|2700|0|0|01|11000A1D|0|42700000|| +38|2023-10-06T20:29:33.8810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:33.9260000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|421C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|110889|128564|10000|10000|||99.53|95.29|0.00|3.11|6214410|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B393|0|1| +37|2023-10-06T20:29:34.0150000-07:00|10FF0001|Sesuga Sapisuga|0001B38D|127791|127791|10000|10000|0||102.26|97.46|0.00|-3.01|1300|0|0|01|0900004C|0|41A00000|| +26|2023-10-06T20:29:34.0150000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +39|2023-10-06T20:29:34.0150000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01| +24|2023-10-06T20:29:34.0600000-07:00|40022CFF|Seraph|HoT|0|4AA|77430|77430|10000|10000|||98.71|97.61|0.00|3.07|10FF0005|Wuwuchu Wuchu|0|70100|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:34.0600000-07:00|40022D77|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||101.61|101.82|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T20:29:34.0600000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|40022D77|Demi-Bahamut|01|68265|40478540| +21|2023-10-06T20:29:34.0600000-07:00|10FF0008|Kokosaze Lulusaze|1D05|Enkindle Bahamut|40022550|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|6182996|40478540|10000|10000|||100.00|80.10|0.00|0.00|69861|79111|10000|10000|||99.66|101.06|0.00|3.13|0001B394|0|1| +38|2023-10-06T20:29:34.0600000-07:00|40022CFF|Seraph|005A5A00|77430|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0|||||||||||||||| +38|2023-10-06T20:29:34.1500000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|0||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.1500000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|05|90055|90055| +21|2023-10-06T20:29:34.1500000-07:00|40022D77|Demi-Bahamut|1D19|Akh Morn|40022550|Zeromus|754003|D73E0000|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|6182996|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07|0001B395|0|1| +38|2023-10-06T20:29:34.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A28|69962|80739|5980|10000|0||100.36|98.89|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:34.1500000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|01|80739|90055| +24|2023-10-06T20:29:34.1940000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1756|110889|128564|10000|10000|||99.53|95.35|0.00|1.15|10FF0006|Wowobora Gogobora|0|69962|80739|5980|10000|||100.36|98.89|0.00|-3.12| +37|2023-10-06T20:29:34.1940000-07:00|40022550|Zeromus|0001B390|6157870||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:34.1950000-07:00|40022CFF|Seraph|77430|77430|10000|10000|||98.71|97.61|0.00|3.07| +24|2023-10-06T20:29:34.1950000-07:00|40022550|Zeromus|DoT|0|2B5A|6182996|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|6182996|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:34.1950000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6182996|40478540|10000|10000|||100.00|80.10|0.00|0.00|110889|128564|10000|10000|||99.53|95.35|0.00|1.15|0001B396|0|1| +21|2023-10-06T20:29:34.1950000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|750003|2BCC0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|6182996|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01|0001B397|0|1| +38|2023-10-06T20:29:34.1950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116863|128564|10000|10000|0||99.53|95.35|0.00|1.15|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.1950000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:34.1950000-07:00|40022550|Zeromus|005A5A00|6146772|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:34.1950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|0||102.26|97.46|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.1950000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|127791|127791| +26|2023-10-06T20:29:34.1950000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:29:34.2390000-07:00|40022550|Zeromus|0001B391|6146734||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|1CA40000|D30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|0001B398|0|8| +22|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1C9F0000|CB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|69962|80739|5980|10000|||100.36|98.89|0.00|-3.12|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|0001B398|1|8| +22|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|1BD20000|830E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|87576|90128|10000|10000|||100.45|98.89|0.00|-3.12|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|0001B398|2|8| +22|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|1BCF0000|7E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|70100|90055|10000|10000|||99.69|99.66|0.00|3.13|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|0001B398|3|8| +22|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|2D260000|3C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|69861|79111|10000|10000|||99.66|101.06|0.00|3.13|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|0001B398|4|8| +22|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|1BDB0000|910E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73085|73085|5450|10000|||102.22|98.53|-0.02|-3.02|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|0001B398|5|8| +22|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|2C860000|3C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|116863|128564|10000|10000|||99.53|95.58|0.00|0.71|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|0001B398|6|8| +22|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|2C100000|800E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01|58898|80739|5850|10000|||100.36|99.23|0.00|1.65|0001B398|7|8| +38|2023-10-06T20:29:34.2850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116863|128564|10000|10000|14||99.53|95.58|0.00|0.71|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.2850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:34.2850000-07:00|10FF0002|Suchichi Suchi|005A5A16|87576|90128|10000|10000|12||100.45|98.89|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.2850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:34.2850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69861|79111|10000|10000|30||99.66|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.2850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:29:34.2850000-07:00|10FF0006|Wowobora Gogobora|005A5A28|69962|80739|5980|10000|14||100.36|98.89|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.2850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:34.2850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|14||102.26|97.46|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.2850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:34.2850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58898|80739|4850|10000|14||100.36|99.23|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.2850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:34.2850000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5450|10000|15||102.22|98.53|-0.02|-3.02|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.2850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:34.2850000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.2850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +38|2023-10-06T20:29:34.3290000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|70100|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:34.3290000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|06|90055|90055| +39|2023-10-06T20:29:34.3290000-07:00|40022D77|Demi-Bahamut|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07| +21|2023-10-06T20:29:34.3290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|EF90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6146734|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||102.26|97.46|0.00|-3.01|0001B399|0|1| +38|2023-10-06T20:29:34.3290000-07:00|10FF0002|Suchichi Suchi|005A5A16|87576|90128|10000|10000|12||100.45|98.89|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:34.3290000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|01|90128|90055| +31|2023-10-06T20:29:34.3290000-07:00|10FF0001||||| +37|2023-10-06T20:29:34.3740000-07:00|40022550|Zeromus|0001B392|6129523||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:34.3740000-07:00|10FF0002|Suchichi Suchi|0001B392|90128|90128|10000|10000|12||100.45|98.89|0.00|-3.12|1600|0|0|01|05000747|0|41F00000|| +37|2023-10-06T20:29:34.3740000-07:00|40022550|Zeromus|0001B38F|6099826||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:34.3740000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.45|98.89|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:34.4180000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|B2480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6099826|40478540|10000|10000|||100.00|80.10|0.00|0.00|116863|128564|10000|10000|||99.49|96.51|0.00|0.48|0001B39A|0|1| +21|2023-10-06T20:29:34.4180000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6099826|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5450|10000|||102.22|98.53|-0.02|-3.02|0001B39B|0|1| +38|2023-10-06T20:29:34.4180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116863|128564|10000|10000|14||99.49|96.51|0.00|0.48|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:34.4180000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +39|2023-10-06T20:29:34.5070000-07:00|10FF0006|Wowobora Gogobora|70769|80739|6185|10000|||100.36|98.89|0.00|-3.12| +21|2023-10-06T20:29:34.6410000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|1EBA0000|104|5BD8000|0|0|0|0|0|0|0|0|0|0|0|0|6099826|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.45|98.89|0.00|-3.12|0001B39C|0|1| +261|2023-10-06T20:29:34.1570000-07:00|Change|10FF0006||| +261|2023-10-06T20:29:34.2530000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:29:34.7300000-07:00|40022550|Zeromus|0001B396|6096924||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:34.7300000-07:00|10FF0007|Kehabiqo Febiqo|0001B393|99939||||||99.44|97.64|-0.02|-1.75| +21|2023-10-06T20:29:34.7750000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|33C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6099826|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5450|10000|||102.22|98.53|-0.02|-3.02|0001B39D|0|1| +37|2023-10-06T20:29:34.8200000-07:00|40022550|Zeromus|0001B397|6085712||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:34.8200000-07:00|10FF0001|Sesuga Sapisuga|0001B397|127791|127791|10000|10000|14||101.97|97.44|0.00|3.10|1300|0|0|02|0B000558|04|41F00000|||||| +38|2023-10-06T20:29:34.8210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|14||101.97|97.44|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:34.8650000-07:00|40022550|Zeromus|0001B399|6081879||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:34.8650000-07:00|10FF0005|Wuwuchu Wuchu|71000|90055|10000|10000|||99.69|99.66|0.00|3.13| +37|2023-10-06T20:29:34.9540000-07:00|40022550|Zeromus|0001B39B|6081878||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:35.0430000-07:00|40022550|Zeromus|0001B395|6026776||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:35.0430000-07:00|10FF0008|Kokosaze Lulusaze|70652|79111|10000|10000|||99.66|101.06|0.00|3.13| +20|2023-10-06T20:29:35.0440000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.36|98.89|0.00|-3.12| +38|2023-10-06T20:29:35.0440000-07:00|40022D77|Demi-Bahamut|005A5A00|65138|68265|10000|10000|0||101.61|101.82|0.00|-3.07|0|0|0||||||||||||| +30|2023-10-06T20:29:35.0440000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|40022D77|Demi-Bahamut|01|68265|40478540| +39|2023-10-06T20:29:35.1310000-07:00|10FF0004|Buhojaqe Zijaqe|59705|80739|5050|10000|||100.41|99.24|0.00|1.50| +37|2023-10-06T20:29:35.1760000-07:00|40022550|Zeromus|0001B39C|6018910||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:35.2210000-07:00|10FF0002|Suchichi Suchi|4060|Stardiver|40022550|Zeromus|126003|E3EE0000|104|2A9A8000|0|0|0|0|0|0|0|0|0|0|0|0|6026776|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.45|98.89|0.00|-3.12|0001B39E|0|1| +21|2023-10-06T20:29:35.2210000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|46950000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|6026776|40478540|10000|10000|||100.00|80.10|0.00|0.00|70652|79111|10000|10000|||99.66|101.06|0.00|3.13|0001B39F|0|1| +21|2023-10-06T20:29:35.2210000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|710003|588B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6026776|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||101.97|97.44|0.00|-3.03|0001B3A0|0|1| +261|2023-10-06T20:29:34.6730000-07:00|Change|10FF0008||| +38|2023-10-06T20:29:35.3100000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|71000|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:35.3100000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|07|90055|90055| +21|2023-10-06T20:29:35.3100000-07:00|40022CFF|Seraph|40A4|Seraphic Veil|10FF0007|Kehabiqo Febiqo|4|17930000|930E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|99939|128564|10000|10000|||99.71|98.20|0.00|-2.40|77430|77430|10000|10000|||98.71|97.61|0.00|2.63|0001B3A1|0|1| +20|2023-10-06T20:29:35.3100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.52|99.27|0.00|1.20| +38|2023-10-06T20:29:35.3100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99939|128564|10000|10000|18||99.71|98.20|0.00|-2.40|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:35.3100000-07:00|77D|Seraphic Veil|29.96|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|77430| +30|2023-10-06T20:29:35.3100000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|01|128564|90055| +37|2023-10-06T20:29:35.3550000-07:00|40022550|Zeromus|0001B39A|5973270||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:35.3550000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6018910|40478540|10000|10000|||100.00|80.10|0.00|0.00|70652|79111|9700|10000|||99.66|101.06|0.00|3.13|0001B3A2|0|1| +37|2023-10-06T20:29:35.3990000-07:00|10FF0004|Buhojaqe Zijaqe|0001B398|67037|80739|5050|10000|14||100.55|99.28|0.00|1.55|1C00|0|0|01|0A000129|0|41E76E95|| +37|2023-10-06T20:29:35.5330000-07:00|10FF0006|Wowobora Gogobora|0001B398|78096|80739|6185|10000|14||100.36|98.89|0.00|-3.12|2801|0|0|01|01000129|0|41E65E32|| +20|2023-10-06T20:29:35.5770000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|102.22|98.53|-0.02|-3.02| +261|2023-10-06T20:29:35.0230000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:29:35.6660000-07:00|10FF0002|Suchichi Suchi|0001B398|90128|90128|10000|10000|12||100.45|98.89|0.00|-3.12|1602|0|0|01|0A000129|0|41E54BC3|| +24|2023-10-06T20:29:35.6660000-07:00|10FF0002|Suchichi Suchi|HoT|0|1F13|90128|90128|10000|10000|||100.45|98.89|0.00|-3.12|10FF0005|Wuwuchu Wuchu|0|71000|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:35.6660000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.45|98.89|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:35.2300000-07:00|Change|10FF0006||||||||||||| +24|2023-10-06T20:29:35.7110000-07:00|10FF0003|Gegehi Gehi|HoT|0|1F01|73085|73085|5450|10000|||102.22|98.53|-0.02|-3.02|10FF0004|Buhojaqe Zijaqe|0|67037|80739|5050|10000|||100.60|99.29|0.00|3.00| +38|2023-10-06T20:29:35.7110000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5450|10000|15||102.22|98.53|-0.02|-3.02|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:35.7550000-07:00|40022550|Zeromus|0001B3A0|5950603||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:35.3230000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:29:35.8000000-07:00|10FF0005|Wuwuchu Wuchu|0001B398|78119|90055|10000|10000|12||99.69|99.66|0.00|3.13|2703|0|0|01|0C000129|0|41E43B60|| +37|2023-10-06T20:29:35.8450000-07:00|40022550|Zeromus|0001B39F|5932534||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:35.8900000-07:00|40022550|Zeromus|0001B3A2|5932383||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:35.8900000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|25F1|127791|127791|10000|10000|||101.97|97.44|0.00|-3.03|10FF0004|Buhojaqe Zijaqe|0|67037|80739|5050|10000|||100.60|99.29|0.00|-3.11| +24|2023-10-06T20:29:35.8900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1FCB|67037|80739|5050|10000|||100.60|99.29|0.00|-3.11|10FF0006|Wowobora Gogobora|0|78096|80739|6185|10000|||100.36|98.89|0.00|-3.12| +21|2023-10-06T20:29:35.8900000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|752003|5E6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5950603|40478540|10000|10000|||100.00|80.10|0.00|0.00|70652|79111|9700|10000|||99.66|101.06|0.00|3.13|0001B3A3|0|1| +21|2023-10-06T20:29:35.8900000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|12F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5950603|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||101.97|97.44|0.00|-3.03|0001B3A4|0|1| +38|2023-10-06T20:29:35.8900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|70652|79111|9700|10000|30||99.66|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:35.8900000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +38|2023-10-06T20:29:35.8900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|14||101.97|97.44|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:35.8900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75176|80739|5600|10000|14||100.60|99.29|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:35.9340000-07:00|10FF0008|Kokosaze Lulusaze|0001B398|79111|79111|9700|10000|30||99.66|101.06|0.00|3.13|1B04|0|0|01|0C000129|0|41E326E5|| +37|2023-10-06T20:29:35.9340000-07:00|40022550|Zeromus|0001B39D|5919135||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:35.9340000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B712003|89000000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|5932383|40478540|10000|10000|||100.00|80.10|0.00|0.00|78119|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B3A5|0|1| +38|2023-10-06T20:29:35.9340000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|78119|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:35.9340000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:29:35.9340000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +30|2023-10-06T20:29:35.9340000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:29:35.9790000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|28B4|78119|90055|10000|10000|||99.69|99.66|0.00|3.13|10FF0006|Wowobora Gogobora|0|78096|80739|6185|10000|||100.36|98.89|0.00|-3.12| +21|2023-10-06T20:29:35.9790000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5B970000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|5932383|40478540|10000|10000|||100.00|80.10|0.00|0.00|78096|80739|6185|10000|||100.36|98.89|0.00|-3.12|0001B3A6|0|1| +38|2023-10-06T20:29:35.9790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88539|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:36.0240000-07:00|10FF0003|Gegehi Gehi|73085|73085|5650|10000|||102.22|98.53|-0.02|-3.02| +24|2023-10-06T20:29:36.0240000-07:00|10FF0006|Wowobora Gogobora|HoT|0|3082|78096|80739|5785|10000|||100.36|98.89|0.00|-3.12|10FF0005|Wuwuchu Wuchu|0|88539|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:36.0240000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5785|10000|14||100.36|98.89|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:36.0240000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:29:36.0670000-07:00|10FF0003|Gegehi Gehi|0001B398|73085|73085|5650|10000|15||102.22|98.53|-0.02|-3.02|2305|0|0|01|09000129|0|41E21476|| +261|2023-10-06T20:29:35.7350000-07:00|Change|10FF0003||||| +37|2023-10-06T20:29:36.2010000-07:00|10FF0007|Kehabiqo Febiqo|0001B398|111337|128564|10000|10000|18||99.86|98.09|0.00|3.10|1506|0|0|01|0E000129|0|41E10621|| +21|2023-10-06T20:29:36.2010000-07:00|40022D77|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|754003|1A0B0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|5919135|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07|0001B3A7|0|1| +39|2023-10-06T20:29:36.2460000-07:00|10FF0007|Kehabiqo Febiqo|112622|128564|10000|10000|||99.86|98.09|0.00|3.10| +21|2023-10-06T20:29:36.2460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|35FA0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5919135|40478540|10000|10000|||100.00|80.10|0.00|0.00|75176|80739|5600|10000|||100.60|99.29|0.00|-3.11|0001B3A8|0|1| +37|2023-10-06T20:29:36.3350000-07:00|10FF0001|Sesuga Sapisuga|0001B398|127791|127791|10000|10000|14||101.97|97.44|0.00|-3.03|1307|0|0|01|0D000129|0|41DFF3B2|| +37|2023-10-06T20:29:36.3350000-07:00|10FF0007|Kehabiqo Febiqo|0001B3A1|118657|128564|10000|10000|18||99.87|98.03|-0.01|3.10|1500|0|0|01|0900077D|0|41E7CCCB|| +37|2023-10-06T20:29:36.4250000-07:00|40022550|Zeromus|0001B3A5|5884063||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:36.4250000-07:00|10FF0005|Wuwuchu Wuchu|0001B3A5|88539|90055|10000|10000|12||99.69|99.66|0.00|3.13|2700|0|0|01|0D000A1C|0|42700000|| +21|2023-10-06T20:29:36.4250000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1E790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5919135|40478540|10000|10000|||100.00|80.10|0.00|0.00|88539|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B3A9|0|1| +38|2023-10-06T20:29:36.4250000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88539|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:36.4690000-07:00|40022550|Zeromus|0001B3A4|5879206||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:36.4690000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.45|98.89|0.00|-3.12| +37|2023-10-06T20:29:36.5140000-07:00|40022550|Zeromus|0001B39E|5820856||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:36.5140000-07:00|10FF0008|Kokosaze Lulusaze|DFE|Deathflare|40022550|Zeromus|750003|52AF0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|5884063|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||99.66|101.06|0.00|3.13|0001B3AA|0|1| +24|2023-10-06T20:29:36.5590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1EDC|118657|128564|10000|10000|||99.87|97.98|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|75176|80739|5200|10000|||100.60|99.29|0.00|-3.11| +24|2023-10-06T20:29:36.5590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1FA2|79111|79111|9700|10000|||99.66|101.06|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|75176|80739|5200|10000|||100.60|99.29|0.00|-3.11| +38|2023-10-06T20:29:36.5590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126557|128564|10000|10000|18||99.87|97.98|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:36.5590000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:36.5590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|30||99.66|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:36.0840000-07:00|Change|10FF0008||| +21|2023-10-06T20:29:36.6030000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|E540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5820856|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||101.97|97.44|0.00|-3.03|0001B3AB|0|1| +21|2023-10-06T20:29:36.6030000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|1050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5820856|40478540|10000|10000|||100.00|80.10|0.00|0.00|75176|80739|5200|10000|||100.60|99.29|0.00|-3.11|0001B3AC|0|1| +31|2023-10-06T20:29:36.6030000-07:00|10FF0001||||| +24|2023-10-06T20:29:36.6480000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|17D5|126557|128564|10000|10000|||99.87|97.98|0.00|3.10|10FF0006|Wowobora Gogobora|0|80739|80739|5785|10000|||100.36|98.89|0.00|-3.12| +37|2023-10-06T20:29:36.6480000-07:00|40022550|Zeromus|0001B3A6|5797409||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:36.6480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88539|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:36.6480000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:29:36.6480000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|88539|90055|10000|10000|||99.69|99.66|0.00|3.13|88539|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B3AD|0|1| +38|2023-10-06T20:29:36.6480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|97.98|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:36.1860000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T20:29:36.7820000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|50FE0000|104|F238000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|5797409|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.46|98.89|-0.02|-3.12|0001B3AE|0|1| +38|2023-10-06T20:29:36.7820000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.46|98.89|-0.02|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:36.7820000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:36.2880000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:29:36.8270000-07:00|40022550|Zeromus|0001B3A3|5773237||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:36.8720000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|23050000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|5797409|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.87|97.98|0.00|3.10|0001B3AF|0|1| +38|2023-10-06T20:29:36.9160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75176|80739|5200|10000|14||100.61|99.29|0.00|2.60|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:36.9160000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:29:36.9620000-07:00|40022550|Zeromus|0001B3A9|5765436||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:29:36.9620000-07:00|4002254F||40022550|Zeromus|0000|0000|0109|||| +257|2023-10-06T20:29:36.9620000-07:00|80034E7C|00020001|03|00|0000| +261|2023-10-06T20:29:36.3810000-07:00|Change|4002254F||||||||| +261|2023-10-06T20:29:36.4750000-07:00|Change|4002256E||||||||| +00|2023-10-06T20:29:36.0000000-07:00|0044|Zeromus|Beyond the veil my home doth lie...| +38|2023-10-06T20:29:37.0060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88539|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:37.0060000-07:00|A20|Immortal Sacrifice|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|08|90055|90055| +39|2023-10-06T20:29:37.0060000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||100.97|98.27|0.00|-2.35| +21|2023-10-06T20:29:37.0060000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|754003|2C900000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|5765436|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5650|10000|||102.22|98.53|-0.02|-3.02|0001B3B0|0|1| +38|2023-10-06T20:29:37.0060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5450|10000|15||102.22|98.53|-0.02|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:37.0060000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:29:37.0060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75176|80739|5200|10000|14||100.62|99.29|0.00|2.18|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:37.0060000-07:00|A28|Circle of Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|01|80739|90055| +37|2023-10-06T20:29:37.0500000-07:00|40022550|Zeromus|0001B3A8|5751618||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:37.0500000-07:00|40022550|Zeromus|8CFA|Flow of the Abyss|40022550|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:37.0500000-07:00|4002256E|Zeromus|8B82|Dimensional Surge|4002256E|Zeromus|8.700|80.10|100.00|0.00|1.57| +261|2023-10-06T20:29:36.5850000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:29:36.5850000-07:00|Change|40022550||||||||||||| +24|2023-10-06T20:29:37.0940000-07:00|40022CFF|Seraph|HoT|0|4A1|77430|77430|10000|10000|||98.71|97.61|0.00|2.68|10FF0005|Wuwuchu Wuchu|0|88539|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:37.0940000-07:00|40022CFF|Seraph|005A5A00|77430|77430|10000|10000|0||98.71|97.61|0.00|2.68|0|0|0|||||||||||||||| +37|2023-10-06T20:29:37.1390000-07:00|40022550|Zeromus|0001B3AB|5747950||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:37.1390000-07:00|40022550|Zeromus|0001B3AC|5747689||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:37.1830000-07:00|40022550|Zeromus|DoT|0|2C46|5751618|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|5751618|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:37.1830000-07:00|40022550|Zeromus|005A5A00|5736355|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:29:36.6960000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T20:29:37.2280000-07:00|40022550|Zeromus|0001B3A7|5729688||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:37.2280000-07:00|40022CFF|Seraph|77430|77430|10000|10000|||98.71|97.61|0.00|2.78| +37|2023-10-06T20:29:37.3160000-07:00|40022550|Zeromus|0001B3AA|5708521||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:37.3600000-07:00|40022D77|Demi-Bahamut|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07| +37|2023-10-06T20:29:37.4060000-07:00|40022550|Zeromus|0001B3AE|5687787||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:37.4060000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|724003|557D0000|104|FFA8000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|5708521|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.27|98.53|0.00|-3.10|0001B3B1|0|1| +38|2023-10-06T20:29:37.4060000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.27|98.53|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:37.4060000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:29:37.4500000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|18860000|104|4948000|0|0|0|0|0|0|0|0|0|0|0|0|5708521|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.27|98.53|0.00|-3.10|0001B3B2|0|1| +261|2023-10-06T20:29:37.0430000-07:00|Change|4002256E||||||||||||| +37|2023-10-06T20:29:37.4950000-07:00|40022550|Zeromus|0001B3AF|5678822||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:37.4950000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5990|10000|||100.36|98.89|0.00|-3.12| +21|2023-10-06T20:29:37.4950000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|6BEC0000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|5687787|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5785|10000|||100.36|98.89|0.00|-3.12|0001B3B3|0|1| +21|2023-10-06T20:29:37.4950000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5687787|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5785|10000|||100.36|98.89|0.00|-3.12|0001B3B4|0|1| +21|2023-10-06T20:29:37.5840000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|F8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5687787|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.87|97.98|0.00|3.13|0001B3B5|0|1| +21|2023-10-06T20:29:37.6730000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|750003|47C70000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|5687787|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||99.66|101.06|0.00|3.13|0001B3B6|0|1| +261|2023-10-06T20:29:37.2530000-07:00|Change|10FF0008||| +261|2023-10-06T20:29:37.2530000-07:00|Change|10FF0006||| +20|2023-10-06T20:29:37.7170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.91|99.29|0.00|1.68| +37|2023-10-06T20:29:37.7610000-07:00|40022550|Zeromus|0001B3B0|5667414||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:37.7610000-07:00|40022D77|Demi-Bahamut|1D04|Wyrmwave|40022550|Zeromus|752003|21590000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|5678822|40478540|10000|10000|||100.00|80.10|0.00|0.00|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07|0001B3B7|0|1| +21|2023-10-06T20:29:37.7620000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|750003|78FA0000|4|28B18000|0|0|0|0|0|0|0|0|0|0|0|0|5678822|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||100.97|98.27|0.00|-3.09|0001B3B8|0|1| +38|2023-10-06T20:29:37.7620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|14||100.97|98.27|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:37.7620000-07:00|558|Requiescat|27.01|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +30|2023-10-06T20:29:37.7620000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:29:37.7620000-07:00|10FF0001||||| +261|2023-10-06T20:29:37.2530000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:37.3510000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T20:29:37.8940000-07:00|40022550|Zeromus|0001B3B1|5645529||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:37.8940000-07:00|10FF0002|Suchichi Suchi|0001B3B1|90128|90128|10000|10000|12||100.27|98.53|0.00|-3.13|1600|0|0|01|050004DB|0|41700000|| +39|2023-10-06T20:29:37.8940000-07:00|10FF0005|Wuwuchu Wuchu|89439|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:37.8940000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.27|98.53|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:37.9840000-07:00|40022550|Zeromus|0001B3B2|5639251||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:37.9840000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|352003|429E0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|5645529|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5450|10000|||102.22|98.53|-0.02|-3.02|0001B3B9|0|1| +38|2023-10-06T20:29:37.9840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|15||102.22|98.53|-0.02|-3.02|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:37.9840000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:29:37.9840000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:29:37.5410000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:29:38.0280000-07:00|40022550|Zeromus|0001B3B4|5639214||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:38.0280000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||99.66|101.06|0.00|3.13| +38|2023-10-06T20:29:38.0730000-07:00|40022CFF|Seraph|005A5A00|0|77430|0|10000|0||98.71|97.61|0.00|3.07|0|0|0|||| +30|2023-10-06T20:29:38.0730000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|40022CFF|Seraph|00|77430|90055| +30|2023-10-06T20:29:38.0730000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|40022CFF|Seraph|00|77430|90128| +30|2023-10-06T20:29:38.0730000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022CFF|Seraph|00|77430|79111| +30|2023-10-06T20:29:38.0730000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022CFF|Seraph|00|77430|90055| +38|2023-10-06T20:29:38.1180000-07:00|40022DBB||005A5A00|73956|77430|10000|10000|0||||||0|0|0||||||||||||| +37|2023-10-06T20:29:38.1180000-07:00|40022550|Zeromus|0001B3B5|5635232||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:38.1180000-07:00|40022DBB||005A5A00|73956|77430|10000|10000|0||||||0|0|0||||||||||||| +24|2023-10-06T20:29:38.1630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1774|128564|128564|10000|10000|||99.87|97.98|0.00|3.13|10FF0006|Wowobora Gogobora|0|80739|80739|5590|10000|||100.36|98.88|0.00|3.11| +261|2023-10-06T20:29:37.6370000-07:00|Change|40022CFF||||||||| +37|2023-10-06T20:29:38.1630000-07:00|40022550|Zeromus|0001B3B3|5607604||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:38.1630000-07:00|10FF0004|Buhojaqe Zijaqe|75983|80739|5400|10000|||100.91|99.29|0.00|2.64| +38|2023-10-06T20:29:38.1630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|97.98|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:37.7470000-07:00|Change|10FF0003||| +21|2023-10-06T20:29:38.2520000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|720003|2B340000|104|8138000|0|0|0|0|0|0|0|0|0|0|0|0|5607604|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.27|98.53|0.00|-3.13|0001B3BA|0|1| +37|2023-10-06T20:29:38.2960000-07:00|40022550|Zeromus|0001B3B6|5589229||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:38.3860000-07:00|40022550|Zeromus|0001B3B8|5558259||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:38.3860000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|4E0F0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|5589229|40478540|10000|10000|||100.00|80.10|0.00|0.00|89439|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B3BB|0|1| +38|2023-10-06T20:29:38.3860000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|89439|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:38.3860000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +03|2023-10-06T20:29:37.9800000-07:00|40022DBB|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||98.72|97.64|0.00|1.57| +38|2023-10-06T20:29:38.4300000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|89439|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:38.4300000-07:00|B9C|Bloodsown Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:29:37.9800000-07:00|Add|40022DBB||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:38.5180000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5558259|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||99.66|101.06|0.00|3.13|0001B3BC|0|1| +261|2023-10-06T20:29:37.9800000-07:00|Change|40022DBB||| +21|2023-10-06T20:29:38.6070000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|174D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|75983|80739|5400|10000|||100.91|99.29|0.00|-3.09|73956|77430|10000|10000|||98.72|97.64|0.00|1.57|0001B3BD|0|1| +24|2023-10-06T20:29:38.6510000-07:00|10FF0002|Suchichi Suchi|HoT|0|1E76|90128|90128|10000|10000|||100.27|98.53|0.00|-3.13|10FF0005|Wuwuchu Wuchu|0|89439|90055|10000|10000|||99.69|99.66|0.00|3.13| +21|2023-10-06T20:29:38.6510000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|58220000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5558259|40478540|10000|10000|||100.00|80.10|0.00|0.00|75983|80739|5400|10000|||100.91|99.29|0.00|-3.09|0001B3BE|0|1| +38|2023-10-06T20:29:38.6510000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.27|98.53|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:38.2000000-07:00|Change|10FF0008||| +24|2023-10-06T20:29:38.6960000-07:00|10FF0003|Gegehi Gehi|HoT|0|1F49|73085|73085|5150|10000|||102.22|98.53|-0.02|-3.02|10FF0004|Buhojaqe Zijaqe|0|75983|80739|5400|10000|||100.91|99.29|0.00|-3.09| +38|2023-10-06T20:29:38.6960000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|15||102.22|98.53|-0.02|-3.02|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:38.7400000-07:00|40022550|Zeromus|0001B3B9|5541205||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:38.7400000-07:00|10FF0003|Gegehi Gehi|0001B3B9|73085|73085|5150|10000|15||102.22|98.53|-0.02|-3.02|2300|0|0|01|0B0004D3|0|41F00000|| +38|2023-10-06T20:29:38.7400000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|15||102.22|98.53|-0.02|-3.02|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:38.7850000-07:00|40022550|Zeromus|0001B3B7|5532668||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:38.8750000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1EC2|127791|127791|9000|10000|||100.21|96.28|0.00|-3.01|10FF0004|Buhojaqe Zijaqe|0|75983|80739|5000|10000|||100.91|99.28|0.00|-3.10| +24|2023-10-06T20:29:38.8750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2A2A|75983|80739|5000|10000|||100.91|99.28|0.00|-3.10|10FF0006|Wowobora Gogobora|0|80739|80739|5590|10000|||100.47|94.93|0.00|3.10| +21|2023-10-06T20:29:38.8750000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5532668|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||100.21|96.28|0.00|-3.01|0001B3BF|0|1| +38|2023-10-06T20:29:38.8750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|14||100.21|96.28|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:38.8750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5000|10000|14||100.91|99.28|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T20:29:38.8750000-07:00|10FF0001||||| +37|2023-10-06T20:29:38.9190000-07:00|40022550|Zeromus|0001B3BB|5512685||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:38.9190000-07:00|10FF0005|Wuwuchu Wuchu|0001B3BB|89439|90055|10000|10000|12||99.69|99.66|0.00|3.13|2700|0|0|01|11000A1F|0|41F00000|| +38|2023-10-06T20:29:38.9200000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|89439|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:38.9630000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|28D9|89439|90055|10000|10000|||99.69|99.66|0.00|3.13|10FF0005|Wuwuchu Wuchu|0|89439|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:38.9630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:39.0080000-07:00|10FF0003|Gegehi Gehi|73085|73085|5350|10000|||102.22|98.53|-0.02|-3.02| +24|2023-10-06T20:29:39.0080000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1B21|80739|80739|5590|10000|||100.49|94.20|0.00|3.11|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:39.0080000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|97.98|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:39.0080000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:39.0080000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +38|2023-10-06T20:29:39.0080000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.27|98.53|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:39.0080000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +38|2023-10-06T20:29:39.0080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9900|10000|30||99.66|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:39.0080000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:29:39.0080000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5590|10000|14||100.49|94.20|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:39.0080000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:29:39.0080000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +38|2023-10-06T20:29:39.0080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|14||100.20|96.15|0.00|-3.02|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:39.0080000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +38|2023-10-06T20:29:39.0080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5000|10000|14||100.91|99.27|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:39.0080000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +38|2023-10-06T20:29:39.0080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|15||102.22|98.53|-0.02|-3.02|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:39.0080000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +38|2023-10-06T20:29:39.0080000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:39.0080000-07:00|A26|Crest of Time Returned|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:29:39.0520000-07:00|40022550|Zeromus|0001B3BA|5501625||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:39.0520000-07:00|40022550|Zeromus|0001B3BC|5501431||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:38.5880000-07:00|Change|10FF0004||||||||||||||||||||| +34|2023-10-06T20:29:39.1400000-07:00|40022DBB|Ruby Carbuncle|40022DBB|Ruby Carbuncle|01| +261|2023-10-06T20:29:38.7060000-07:00|Change|40022DBB||||||||| +39|2023-10-06T20:29:39.2290000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.87|97.98|0.00|3.13| +21|2023-10-06T20:29:39.2740000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35722003|4D950000|104|E808000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|5501431|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.27|98.53|-0.02|-3.13|0001B3C0|0|1| +261|2023-10-06T20:29:38.7060000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:29:39.3180000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|3FC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5501431|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.87|97.98|0.00|3.13|0001B3C1|0|1| +21|2023-10-06T20:29:39.3620000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022550|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5501431|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5000|10000|||100.91|97.18|0.00|-3.13|0001B3C2|0|1| +21|2023-10-06T20:29:39.3620000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5501431|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5350|10000|||102.30|98.49|0.00|-2.78|0001B3C3|0|1| +261|2023-10-06T20:29:38.9350000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:29:39.4060000-07:00|40022550|Zeromus|0001B3BF|5499205||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:39.4510000-07:00|40022550|Zeromus|0001B3BE|5476643||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:39.4510000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.27|98.53|-0.02|-3.13| +261|2023-10-06T20:29:39.0530000-07:00|Change|40022DBB||||||| +24|2023-10-06T20:29:39.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|249D|128564|128564|10000|10000|||99.87|97.98|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5000|10000|||100.91|95.81|0.00|-3.08| +24|2023-10-06T20:29:39.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1FE1|79111|79111|9900|10000|||99.65|100.97|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5000|10000|||100.91|95.81|0.00|-3.08| +38|2023-10-06T20:29:39.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|97.98|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:39.5400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|30||99.65|100.97|0.00|-3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:39.6300000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|19270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5476643|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B3C4|0|1| +261|2023-10-06T20:29:39.2480000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:39.2480000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:29:39.3420000-07:00|Change|40022DBB||||||||| +37|2023-10-06T20:29:39.8970000-07:00|40022550|Zeromus|0001B3C3|5476642||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:39.8970000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|724003|2AB50000|104|7FA8000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|5476643|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.40|98.54|0.00|2.04|0001B3C5|0|1| +21|2023-10-06T20:29:39.8970000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|51100000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|5476643|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B3C6|0|1| +38|2023-10-06T20:29:39.8970000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.40|98.54|0.00|2.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:39.8970000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:29:39.8970000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:39.8970000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:29:39.8970000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:29:39.9410000-07:00|40022550|Zeromus|0001B3C1|5460322||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:39.9410000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.58|96.51|0.00|-0.05| +261|2023-10-06T20:29:39.5430000-07:00|Change|10FF0004||||||||| +39|2023-10-06T20:29:40.0310000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9200|10000|||100.89|90.76|0.00|-3.14| +21|2023-10-06T20:29:40.0310000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.87|96.61|0.00|3.14|128564|128564|10000|10000|||99.87|96.61|0.00|3.14|0001B3C7|0|1| +38|2023-10-06T20:29:40.0310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.87|96.61|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:40.0310000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|128564|128564| +26|2023-10-06T20:29:40.0310000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:29:40.0310000-07:00|A75|Surging Tempest|35.12|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:29:40.0310000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:29:39.5430000-07:00|Change|4002256D||||||||| +37|2023-10-06T20:29:40.1660000-07:00|40022550|Zeromus|0001B3C2|5460322|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004C5|0|41700000|| +26|2023-10-06T20:29:40.1660000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:29:40.1660000-07:00|40022550|Zeromus|0001B3C4|5453883||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:40.1660000-07:00|10FF0005|Wuwuchu Wuchu|0001B3C4|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|2700|0|0|01|02000A1E|0|C1F00000|| +20|2023-10-06T20:29:40.1660000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0004|Buhojaqe Zijaqe|4.700|100.00|80.10|0.00|0.00| +27|2023-10-06T20:29:40.1660000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|003E|0000|0000|0000| +20|2023-10-06T20:29:40.1660000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|101.52|93.73|0.00|2.92| +24|2023-10-06T20:29:40.2100000-07:00|40022550|Zeromus|DoT|0|2482|5460322|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|5460322|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:40.2100000-07:00|10FF0008|Kokosaze Lulusaze|64DC|Astral Impulse|40022550|Zeromus|756003|91630000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|5460322|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||99.07|98.34|0.00|-2.93|0001B3C8|0|1| +38|2023-10-06T20:29:40.2100000-07:00|40022550|Zeromus|005A5A00|5444537|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:29:40.2550000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|17450000|104|4588000|0|0|0|0|0|0|0|0|0|0|0|0|5444537|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.45|98.57|0.00|-2.78|0001B3C9|0|1| +21|2023-10-06T20:29:40.2550000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|752003|9D920000|200004|455A8000|0|0|0|0|0|0|0|0|0|0|0|0|5444537|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||100.89|90.76|0.00|-3.14|0001B3CA|0|1| +38|2023-10-06T20:29:40.2550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|14||100.89|90.76|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:40.2550000-07:00|558|Requiescat|24.52|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +31|2023-10-06T20:29:40.2550000-07:00|10FF0001||||| +37|2023-10-06T20:29:40.2980000-07:00|40022550|Zeromus|0001B3C0|5424676||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:40.3430000-07:00|40022D77|Demi-Bahamut|65138|68265|10000|10000|||101.61|101.82|0.00|-3.07| +38|2023-10-06T20:29:40.3430000-07:00|40022D77|Demi-Bahamut|005A5A00|0|68265|0|10000|0||101.61|101.82|0.00|-3.07|0|0|0|||| +30|2023-10-06T20:29:40.3430000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022D77|Demi-Bahamut|00|68265|79111| +30|2023-10-06T20:29:40.3430000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|40022D77|Demi-Bahamut|00|68265|90128| +30|2023-10-06T20:29:40.3430000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022D77|Demi-Bahamut|00|68265|90055| +261|2023-10-06T20:29:39.7740000-07:00|Change|40022D77||||||||| +38|2023-10-06T20:29:40.3880000-07:00|40022DC6||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +38|2023-10-06T20:29:40.3880000-07:00|40022DC6||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +261|2023-10-06T20:29:39.8840000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:29:39.8840000-07:00|Change|40022DBB||||||||| +03|2023-10-06T20:29:39.9940000-07:00|40022DC6|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||98.74|95.44|0.00|-0.08| +261|2023-10-06T20:29:39.9940000-07:00|Add|40022DC6||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:39.9940000-07:00|Change|40022DC6||| +37|2023-10-06T20:29:40.5210000-07:00|40022550|Zeromus|0001B3C6|5403924||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:40.5210000-07:00|10FF0005|Wuwuchu Wuchu|0001B3C6|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|2700|0|0|01|02000A1E|0|41F00000|| +39|2023-10-06T20:29:40.5210000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5795|10000|||100.78|97.21|-0.01|-3.07| +38|2023-10-06T20:29:40.5210000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:40.5660000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.59|97.10|0.00|-2.05|90128|90128|10000|10000|||100.59|97.10|0.00|-2.05|0001B3CB|0|1| +38|2023-10-06T20:29:40.5660000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.59|97.10|0.00|-2.05|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:40.5660000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:40.1070000-07:00|Change|4002256D||||||||||||| +37|2023-10-06T20:29:40.7000000-07:00|40022550|Zeromus|0001B3C5|5392991||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:40.7000000-07:00|10FF0002|Suchichi Suchi|0001B3C5|90128|90128|10000|10000|12||100.66|96.46|0.00|-1.67|1600|0|0|01|74|0|C0A00000|| +261|2023-10-06T20:29:40.2260000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:40.2260000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:29:40.7890000-07:00|10FF0007|Kehabiqo Febiqo|0001B3C7|128564|128564|10000|10000|18||100.03|94.49|0.00|3.08|1500|0|0|03|04000499|03|41700000|||||||||| +37|2023-10-06T20:29:40.7890000-07:00|40022550|Zeromus|0001B3C9|5387034||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:40.7890000-07:00|10FF0002|Suchichi Suchi|0001B3C9|90128|90128|10000|10000|12||100.72|95.78|0.00|-1.67|1600|0|0|01|74|0|C0A00000|| +38|2023-10-06T20:29:40.7890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||100.03|94.49|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:40.8330000-07:00|40022550|Zeromus|0001B3C8|5349815||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:40.8340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|30||97.89|95.80|0.00|-2.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:40.8340000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|79111|79111| +21|2023-10-06T20:29:40.8340000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|752003|361F0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|5349815|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||97.89|95.80|0.00|-2.97|0001B3CC|0|1| +38|2023-10-06T20:29:40.8340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|30||97.89|95.80|0.00|-2.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:40.8340000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:29:40.8770000-07:00|40022550|Zeromus|0001B3CA|5309477||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:40.8770000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.69|99.66|0.00|3.13| +21|2023-10-06T20:29:40.8770000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|39200000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|5349815|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5795|10000|||100.79|97.22|0.00|-3.10|0001B3CD|0|1| +21|2023-10-06T20:29:40.9660000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|17E10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5349815|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.99|93.77|0.00|3.10|0001B3CE|0|1| +261|2023-10-06T20:29:40.5140000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:29:41.0550000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||97.47|94.99|0.00|2.89| +261|2023-10-06T20:29:40.5140000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:29:40.5140000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:29:41.1000000-07:00|10FF0002|Suchichi Suchi|0001B3CB|90128|90128|10000|10000|12||100.90|93.78|0.00|-1.67|1600|0|0|01|74|0|40A00000|| +21|2023-10-06T20:29:41.1000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|34B10000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5309477|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5000|10000|||101.52|91.75|0.00|-3.01|0001B3CF|0|1| +38|2023-10-06T20:29:41.1000000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.90|93.78|0.00|-1.67|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:40.6360000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:29:41.1450000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4800|10000|||101.52|91.75|0.00|-3.01| +21|2023-10-06T20:29:41.1450000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2E700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5309477|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.78|92.67|0.00|-3.08|0001B3D0|0|1| +21|2023-10-06T20:29:41.1450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|9350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5309477|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||100.68|90.68|0.00|-3.13|0001B3D1|0|1| +31|2023-10-06T20:29:41.1450000-07:00|10FF0001||||| +21|2023-10-06T20:29:41.2780000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5309477|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5395|10000|||100.79|97.21|0.00|3.13|0001B3D2|0|1| +261|2023-10-06T20:29:40.9840000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:29:40.9840000-07:00|Change|40022DC6||||||||| +21|2023-10-06T20:29:41.4120000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|714003|6C7D0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|5309477|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B3D3|0|1| +34|2023-10-06T20:29:41.4120000-07:00|40022DC6|Carbuncle|40022DC6|Carbuncle|01| +38|2023-10-06T20:29:41.4120000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:41.4120000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:41.4120000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:29:41.5000000-07:00|40022550|Zeromus|0001B3CE|5303364||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:41.1030000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:29:41.5450000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|17E4|128564|128564|10000|10000|||99.59|91.70|-0.01|3.11|10FF0006|Wowobora Gogobora|0|80739|80739|5395|10000|||100.79|97.19|-0.02|2.89| +37|2023-10-06T20:29:41.5450000-07:00|40022550|Zeromus|0001B3CD|5288740||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:41.5450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.59|91.70|-0.01|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:41.5450000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +24|2023-10-06T20:29:41.6340000-07:00|10FF0002|Suchichi Suchi|HoT|0|2476|90128|90128|10000|10000|||101.08|90.40|-0.01|-1.62|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:41.6340000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||101.08|90.40|-0.01|-1.62|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:41.6780000-07:00|40022550|Zeromus|0001B3D1|5286383||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:41.6780000-07:00|10FF0003|Gegehi Gehi|HoT|0|1AA9|73085|73085|5350|10000|||105.23|92.80|0.00|-2.91|10FF0003|Gegehi Gehi|0|73085|73085|5350|10000|||105.23|92.80|0.00|-2.91| +21|2023-10-06T20:29:41.6780000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5288740|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||95.23|92.24|0.00|-2.79|0001B3D4|0|1| +26|2023-10-06T20:29:41.6780000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +21|2023-10-06T20:29:41.6780000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022550|Zeromus|750003|12470000|104|6D48000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|5288740|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4800|10000|||101.52|91.75|0.00|-3.01|0001B3D5|0|1| +38|2023-10-06T20:29:41.6780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|15||105.23|92.80|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:41.7230000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5288740|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4800|10000|||101.52|91.75|0.00|-3.01|0001B3D6|0|1| +21|2023-10-06T20:29:41.7670000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F722003|9E560000|104|3B2E8000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|5286383|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||101.09|89.80|0.00|-1.61|0001B3D7|0|1| +22|2023-10-06T20:29:41.7670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|73450E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|0001B3D8|0|8| +22|2023-10-06T20:29:41.7670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|73450E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4800|10000|||101.52|91.75|-0.02|-3.06|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|0001B3D8|1|8| +22|2023-10-06T20:29:41.7670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|73450E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.57|91.59|0.00|3.08|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|0001B3D8|2|8| +22|2023-10-06T20:29:41.7670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|73450E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5350|10000|||105.67|92.08|0.00|-2.92|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|0001B3D8|3|8| +22|2023-10-06T20:29:41.7670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|73450E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||101.09|89.80|0.00|-1.61|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|0001B3D8|4|8| +22|2023-10-06T20:29:41.7670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|73450E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.69|99.66|0.00|3.13|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|0001B3D8|5|8| +22|2023-10-06T20:29:41.7670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|73450E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|8200|10000|||100.42|88.21|0.00|3.13|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|0001B3D8|6|8| +22|2023-10-06T20:29:41.7670000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|73450E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9900|10000|||94.93|91.86|0.00|-2.97|80739|80739|5395|10000|||100.52|95.55|0.00|3.11|0001B3D8|7|8| +38|2023-10-06T20:29:41.7670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||101.09|89.80|0.00|-1.61|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:41.7670000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:29:41.7670000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:41.8110000-07:00|40022550|Zeromus|0001B3D0|5274495||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:41.8110000-07:00|40022550|Zeromus|0001B3D2|5274457||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:41.8120000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|894A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5286383|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.57|91.59|0.00|3.08|0001B3D9|0|1| +38|2023-10-06T20:29:41.8120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||99.57|91.59|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:41.8120000-07:00|499|Inner Release|13.93|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|128564|128564| +38|2023-10-06T20:29:41.8120000-07:00|40022550|Zeromus|005A5A00|5274457|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:41.8120000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +24|2023-10-06T20:29:41.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|25A2|127791|127791|8200|10000|||100.42|88.02|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||101.52|91.74|0.00|3.01| +24|2023-10-06T20:29:41.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1AD9|80739|80739|4800|10000|||101.52|91.74|0.00|3.01|10FF0006|Wowobora Gogobora|0|80739|80739|5395|10000|||100.43|94.76|0.00|-3.08| +38|2023-10-06T20:29:41.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|14||100.42|88.02|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:41.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4800|10000|14||101.52|91.74|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:41.9020000-07:00|40022550|Zeromus|0001B3CC|5260602||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:41.9020000-07:00|10FF0008|Kokosaze Lulusaze|0001B3CC|79111|79111|9900|10000|30||94.80|91.65|0.00|2.86|1B00|0|0|01|04000A8D|0|42700000|| +37|2023-10-06T20:29:41.9020000-07:00|40022550|Zeromus|0001B3CF|5247113||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:41.9020000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9900|10000|30||94.80|91.65|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:41.4210000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:29:41.9460000-07:00|40022550|Zeromus|0001B3D3|5219340||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:41.9460000-07:00|10FF0005|Wuwuchu Wuchu|0001B3D3|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|2700|0|0|01|02000A1F|0|41F00000|| +24|2023-10-06T20:29:41.9460000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1ADD|90055|90055|10000|10000|||99.69|99.66|0.00|3.13|10FF0006|Wowobora Gogobora|0|80739|80739|5395|10000|||100.40|93.91|0.00|-3.08| +38|2023-10-06T20:29:41.9460000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|12||99.69|99.66|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:41.6140000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:29:41.9910000-07:00|10FF0003|Gegehi Gehi|73085|73085|5550|10000|||104.94|90.16|0.00|-2.79| +24|2023-10-06T20:29:41.9910000-07:00|10FF0006|Wowobora Gogobora|HoT|0|23B3|80739|80739|5395|10000|||100.37|93.20|0.00|-3.08|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||99.69|99.66|0.00|3.13| +38|2023-10-06T20:29:41.9910000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5395|10000|14||100.37|93.20|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:41.9910000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +04|2023-10-06T20:29:41.6140000-07:00|40022CFF|Seraph|00|5A|10FF0004|00||8227|10487|0|77430|0|10000|||98.71|97.61|0.00|3.07| +261|2023-10-06T20:29:41.6140000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:29:41.6140000-07:00|Remove|40022CFF| +261|2023-10-06T20:29:41.7280000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:29:42.2140000-07:00|40022550|Zeromus|0001B3D4|5219153||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:42.2140000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|250F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5219340|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.69|99.66|0.00|3.13|0001B3DA|0|1| +37|2023-10-06T20:29:42.2590000-07:00|40022550|Zeromus|0001B3D6|5218905||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:42.2590000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.89|89.29|0.00|3.03| +261|2023-10-06T20:29:41.9580000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:29:42.4370000-07:00|40022550|Zeromus|0001B3D9|5183759||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:42.4370000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.02|86.35|0.00|-1.82| +37|2023-10-06T20:29:42.4820000-07:00|40022550|Zeromus|0001B3D7|5143225||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:42.4820000-07:00|10FF0002|Suchichi Suchi|0001B3D7|90128|90128|10000|10000|12||100.02|86.35|0.00|-1.82|1600|0|0|01|05000322|0|41F00000|| +38|2023-10-06T20:29:42.4820000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.02|86.35|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:42.5260000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1D8E|128564|128564|10000|10000|||100.76|87.79|-0.02|-3.11|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||100.76|87.79|-0.02|-3.11| +24|2023-10-06T20:29:42.5260000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1DAE|79111|79111|9900|10000|||97.04|90.33|0.00|2.10|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.76|89.10|0.00|-3.14| +38|2023-10-06T20:29:42.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|18||100.76|87.79|-0.02|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:42.5260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|30||97.04|90.33|0.00|2.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:42.5710000-07:00|10FF0006|Wowobora Gogobora|0001B3D8|80739|80739|6095|10000|14||100.41|90.87|-0.02|-3.13|2800|0|0|02|03000A3A|0|41700000|||||| +26|2023-10-06T20:29:42.5710000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:42.5710000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:42.5710000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6095|10000|14||100.41|90.87|-0.02|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:42.5710000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:29:42.1910000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:29:42.6610000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|5143225|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||97.63|90.01|0.00|2.37|0001B3DB|0|1| +38|2023-10-06T20:29:42.6610000-07:00|40022DC6|Carbuncle|005A5A00|0|75851|0|10000|0||94.69|93.45|0.00|-2.17|0|0|0|||| +26|2023-10-06T20:29:42.6610000-07:00|30|Well Fed|1876.81|10FF0008|Kokosaze Lulusaze|40022DC6|Carbuncle|2964|75851|79111| +261|2023-10-06T20:29:42.2840000-07:00|Change|40022DC6||||||||| +38|2023-10-06T20:29:42.7050000-07:00|40022DC9||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +37|2023-10-06T20:29:42.7050000-07:00|10FF0004|Buhojaqe Zijaqe|0001B3D8|80739|80739|4800|10000|14||100.66|88.36|0.00|-3.12|1C01|0|0|02|03000A3A|0|41700000|||||| +26|2023-10-06T20:29:42.7050000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:29:42.7050000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:29:42.7050000-07:00|40022550|Zeromus|0001B3D5|5138546||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:42.7050000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73085|73085|5550|10000|||101.91|88.82|0.00|-2.76|73085|73085|5550|10000|||101.91|88.82|0.00|-2.76|0001B3DC|0|1| +38|2023-10-06T20:29:42.7050000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|12||100.13|85.99|0.00|-1.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:42.7050000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:42.7050000-07:00|40022DC9||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +38|2023-10-06T20:29:42.7050000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5550|10000|15||101.91|88.82|0.00|-2.76|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:42.7050000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73085|73085| +21|2023-10-06T20:29:42.7480000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|752003|B5EA0000|4|285B8000|0|0|0|0|0|0|0|0|0|0|0|0|5143225|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||100.48|86.85|0.00|3.10|0001B3DD|0|1| +38|2023-10-06T20:29:42.7480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7200|10000|14||100.48|86.85|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:42.7480000-07:00|558|Requiescat|22.03|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:29:42.7480000-07:00|10FF0001||||| +261|2023-10-06T20:29:42.2840000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:29:42.8390000-07:00|10FF0007|Kehabiqo Febiqo|0001B3D8|128564|128564|10000|10000|18||100.93|87.55|0.00|-2.66|1502|0|0|02|10000A3A|0|41700000|||||| +26|2023-10-06T20:29:42.8390000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:29:42.8390000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:29:42.8390000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5138546|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5550|10000|||101.86|88.72|0.00|-2.78|0001B3DE|0|1| +21|2023-10-06T20:29:42.8390000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|193C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5138546|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.19|97.22|-0.02|2.98|0001B3DF|0|1| +38|2023-10-06T20:29:42.8390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4800|10000|14||100.64|88.18|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:42.8390000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +03|2023-10-06T20:29:42.3740000-07:00|40022DC9|Topaz Titan|00|5A|10FF0008|00||10264|13507|72376|75851|10000|10000|||100.68|90.30|0.00|3.04| +261|2023-10-06T20:29:42.3740000-07:00|Add|40022DC9||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:42.9260000-07:00|40022550|Zeromus|0001B3DA|5129059||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:42.4700000-07:00|Change|40022DC9||||| +37|2023-10-06T20:29:42.9710000-07:00|10FF0003|Gegehi Gehi|0001B3D8|73085|73085|5550|10000|15||101.82|88.63|-0.01|-2.78|2303|0|0|03|010007B3|06|C1700000|||||||||| +26|2023-10-06T20:29:42.9710000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:29:42.9710000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:42.9720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|12||100.34|96.51|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:42.9720000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:29:43.0160000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7400|10000|||100.49|86.40|0.00|3.13| +21|2023-10-06T20:29:43.0160000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|714003|14EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5129059|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.94|87.51|0.00|-2.42|0001B3E0|0|1| +21|2023-10-06T20:29:43.0160000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|553C0000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|5129059|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.34|96.51|0.00|2.97|0001B3E1|0|1| +38|2023-10-06T20:29:43.0160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|12||100.34|96.51|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:43.0160000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:43.0160000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:29:43.0600000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|F4E0000|104|2DB8000|0|0|0|0|0|0|0|0|0|0|0|0|5129059|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.18|85.86|0.00|-1.60|0001B3E2|0|1| +261|2023-10-06T20:29:42.5640000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:29:43.1040000-07:00|10FF0002|Suchichi Suchi|0001B3D8|90128|90128|10000|10000|12||100.18|85.86|0.00|-1.60|1604|0|0|02|0A3A|0|41700000|||||| +26|2023-10-06T20:29:43.1040000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:29:43.1040000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:29:43.1040000-07:00|10FF0003|Gegehi Gehi|0001B3DC|73085|73085|5550|10000|15||101.79|88.56|0.00|-2.78|2300|0|0|01|010007B3|06|41700000|| +38|2023-10-06T20:29:43.1040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|14||100.49|86.28|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:43.1040000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:43.1040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5550|10000|15||101.79|88.56|0.00|-2.78|0|0|0|||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:29:43.1490000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.65|86.94|0.00|-3.11| +26|2023-10-06T20:29:43.1490000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +22|2023-10-06T20:29:43.1490000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|73200F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4800|10000|||100.60|88.06|0.00|1.23|80739|80739|4800|10000|||100.60|88.06|0.00|1.23|0001B3E3|0|1| +24|2023-10-06T20:29:43.1930000-07:00|40022550|Zeromus|DoT|0|36E9|5129059|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|5129059|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:43.1930000-07:00|40022550|Zeromus|005A5A00|5115002|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:29:43.2390000-07:00|10FF0005|Wuwuchu Wuchu|0001B3D8|90055|90055|10000|10000|12||100.60|95.33|0.00|-3.10|2705|0|0|03|02000A1E|0|C1F00000|||||||||| +26|2023-10-06T20:29:43.2390000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:29:43.2390000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +38|2023-10-06T20:29:43.2390000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5550|10000|15||101.77|88.53|0.00|-2.78|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:43.2390000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:29:43.3720000-07:00|10FF0001|Sesuga Sapisuga|0001B3D8|127791|127791|7400|10000|14||100.49|86.19|0.00|-3.11|1306|0|0|02|03000A3A|0|41700000|||||| +26|2023-10-06T20:29:43.3720000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:29:43.3720000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:29:43.3720000-07:00|40022550|Zeromus|0001B3DE|5115001||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:43.3720000-07:00|40022550|Zeromus|0001B3DF|5108541||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:43.3720000-07:00|10FF0005|Wuwuchu Wuchu|0001B3DF|90055|90055|10000|10000|12||100.57|95.42|0.00|-3.10|2700|0|0|01|02000A1E|0|C1F00000|| +38|2023-10-06T20:29:43.3720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|30||99.52|86.27|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:43.3720000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +22|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0001|Sesuga Sapisuga|EB0E|5520000|200004|3E920000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E4|0|8| +22|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0006|Wowobora Gogobora|EB0E|5520000|200004|3DF50000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|6095|10000|||100.58|86.70|0.00|-3.08|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E4|1|8| +22|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0002|Suchichi Suchi|EB0E|5520000|4|24F00000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.18|85.86|0.00|-1.60|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E4|2|8| +22|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0008|Kokosaze Lulusaze|EB0E|5520000|200004|3D020000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|10000|10000|||99.52|86.27|0.00|-3.08|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E4|3|8| +22|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0007|Kehabiqo Febiqo|EB0E|5520000|200004|43DE0000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.94|87.47|0.00|-3.12|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E4|4|8| +22|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0003|Gegehi Gehi|EB0E|5520000|4|264A0000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5550|10000|||101.72|88.39|-0.02|-2.78|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E4|5|8| +22|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0004|Buhojaqe Zijaqe|EB0E|5520000|4|24A00000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4800|10000|||100.60|88.21|0.00|-1.68|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E4|6|8| +22|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0005|Wuwuchu Wuchu|EB0E|5520000|200004|3EFF0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||100.57|95.42|0.00|-3.10|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E4|7|8| +21|2023-10-06T20:29:43.4170000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|E4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5115002|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|0001B3E5|0|1| +38|2023-10-06T20:29:43.4180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|28||100.94|87.47|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.4180000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +38|2023-10-06T20:29:43.4180000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|26||100.18|85.86|0.00|-1.60|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.4180000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|90128|127791| +38|2023-10-06T20:29:43.4180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|46||99.52|86.27|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.4180000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|79111|127791| +38|2023-10-06T20:29:43.4180000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6095|10000|30||100.58|86.70|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.4180000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|80739|127791| +38|2023-10-06T20:29:43.4180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|24||100.49|86.19|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.4180000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:29:43.4180000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4800|10000|30||100.60|88.21|0.00|-1.68|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.4180000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|80739|127791| +38|2023-10-06T20:29:43.4180000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5550|10000|33||101.72|88.39|-0.02|-2.78|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.4180000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73085|127791| +38|2023-10-06T20:29:43.4180000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|26||100.57|95.42|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.4180000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|90055|127791| +31|2023-10-06T20:29:43.4180000-07:00|10FF0001||||| +261|2023-10-06T20:29:43.0250000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:29:43.5060000-07:00|10FF0008|Kokosaze Lulusaze|0001B3D8|79111|79111|10000|10000|46||99.58|86.01|-0.01|-3.06|1B07|0|0|02|0D000A3A|0|41700000|||||| +26|2023-10-06T20:29:43.5060000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:29:43.5060000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +39|2023-10-06T20:29:43.5060000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6300|10000|||100.55|86.58|0.00|-3.07| +21|2023-10-06T20:29:43.5060000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|720003|2B6F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5108541|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5550|10000|||101.60|88.07|0.00|-2.78|0001B3E6|0|1| +38|2023-10-06T20:29:43.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|28||100.94|87.47|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:43.5060000-07:00|A3D|Autophysis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:29:43.5950000-07:00|40022550|Zeromus|0001B3E2|5104623||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:43.6400000-07:00|40022550|Zeromus|0001B3E0|5099269||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:43.6400000-07:00|40022550|Zeromus|0001B3DD|5052699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:43.6400000-07:00|40022550|Zeromus|0001B3E1|5030879||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:43.6400000-07:00|10FF0005|Wuwuchu Wuchu|0001B3E1|90055|90055|10000|10000|26||100.78|94.35|0.00|3.08|2700|0|0|01|02000A1E|0|41F00000|| +38|2023-10-06T20:29:43.6400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|26||100.78|94.35|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:43.3540000-07:00|Change|40022DC9||| +24|2023-10-06T20:29:43.7740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D74|79111|79111|10000|10000|||99.63|85.80|0.00|-3.03|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78| +261|2023-10-06T20:29:43.3540000-07:00|Change|10FF0004||||||||||||||||||| +24|2023-10-06T20:29:43.7740000-07:00|10FF0002|Suchichi Suchi|HoT|798|1577|90128|90128|10000|10000|||100.18|85.86|0.00|-1.60|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78| +24|2023-10-06T20:29:43.7740000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D6E|127791|127791|7400|10000|||100.49|86.19|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78| +24|2023-10-06T20:29:43.7740000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D1D|80739|80739|6300|10000|||100.51|86.44|-0.02|-3.06|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78| +24|2023-10-06T20:29:43.7740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1536|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78| +24|2023-10-06T20:29:43.7740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D1C|128564|128564|10000|10000|||100.67|87.44|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78| +24|2023-10-06T20:29:43.7740000-07:00|10FF0003|Gegehi Gehi|HoT|798|D36|73085|73085|5550|10000|||101.44|87.64|0.00|-2.96|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78| +24|2023-10-06T20:29:43.7740000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|CCC|90055|90055|10000|10000|||100.92|93.64|0.00|3.02|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4800|10000|||100.65|87.24|0.00|-1.78| +37|2023-10-06T20:29:43.7740000-07:00|10FF0004|Buhojaqe Zijaqe|0001B3E3|80739|80739|4800|10000|30||100.65|87.24|0.00|-1.78|1C00|0|0|02|0D000798|0|41700000|||||| +26|2023-10-06T20:29:43.7740000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:29:43.7740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +20|2023-10-06T20:29:43.7750000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.65|87.24|0.00|-1.78| +38|2023-10-06T20:29:43.7750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|28||100.67|87.44|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.7750000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:29:43.7750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:43.7750000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|26||100.18|85.86|0.00|-1.60|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.7750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:43.7750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|46||99.63|85.80|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.7750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:29:43.7750000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6300|10000|30||100.51|86.44|-0.02|-3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.7750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:43.7750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|24||100.49|86.19|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.7750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:43.7750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4800|10000|30||100.65|87.24|0.00|-1.78|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:43.7750000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5550|10000|33||101.44|87.64|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.7750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:43.7750000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|26||100.92|93.64|0.00|3.02|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:43.7750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:29:43.3540000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:29:43.8630000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||101.07|92.97|0.00|2.98| +37|2023-10-06T20:29:43.9530000-07:00|40022550|Zeromus|0001B3E5|5027217||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:43.6530000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:29:44.0430000-07:00|10FF0001|Sesuga Sapisuga|0001B3E4|127791|127791|7400|10000|24||100.49|86.19|0.00|-3.06|1300|0|0|01|0C000552|0|41EB580F|| +39|2023-10-06T20:29:44.0430000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|10000|10000|||99.63|85.80|0.00|-3.03| +21|2023-10-06T20:29:44.0430000-07:00|40022550|Zeromus|8CFA|Flow of the Abyss|40022550|Zeromus|1B|8CFA8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B3E7|0|1| +21|2023-10-06T20:29:44.0860000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|59890000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6300|10000|||100.51|86.44|0.00|-3.06|0001B3E8|0|1| +39|2023-10-06T20:29:44.1310000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|5000|10000|||100.71|86.56|0.00|-2.82| +261|2023-10-06T20:29:43.6530000-07:00|Add|40022DCB||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:43.6530000-07:00|Change|40022550||||| +04|2023-10-06T20:29:43.6530000-07:00|40022D77|Demi-Bahamut|00|5A|10FF0008|00||6566|6982|0|68265|0|10000|||101.61|101.82|0.00|-3.07| +261|2023-10-06T20:29:43.6530000-07:00|Remove|40022D77| +37|2023-10-06T20:29:44.1770000-07:00|10FF0006|Wowobora Gogobora|0001B3E4|80739|80739|5900|10000|30||100.51|86.44|0.00|-3.06|2801|0|0|01|09000552|0|41EA47AC|| +21|2023-10-06T20:29:44.1770000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|712003|20240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||100.49|86.19|0.00|-3.06|0001B3E9|0|1| +261|2023-10-06T20:29:43.8830000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:29:44.2650000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|C61A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.01|87.07|-0.01|-1.65|0001B3EA|0|1| +21|2023-10-06T20:29:44.2650000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D726003|69BF0000|104|13C38000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.06|86.03|0.00|-1.56|0001B3EB|0|1| +38|2023-10-06T20:29:44.2650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|28||100.01|87.07|-0.01|-1.65|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:44.2650000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:29:44.2650000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|26||100.06|86.03|0.00|-1.56|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:44.2650000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:29:44.2650000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:43.8830000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T20:29:44.3090000-07:00|10FF0002|Suchichi Suchi|0001B3E4|90128|90128|10000|10000|26||100.06|86.03|0.00|-1.56|1602|0|0|02|0E000552|0|41E93749|||||| +21|2023-10-06T20:29:44.3090000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|27ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||101.51|90.44|0.00|2.96|0001B3EC|0|1| +21|2023-10-06T20:29:44.3530000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.99|87.05|0.00|-3.14|0001B3ED|0|1| +37|2023-10-06T20:29:44.4420000-07:00|10FF0008|Kokosaze Lulusaze|0001B3E4|79111|79111|10000|10000|46||99.63|85.80|0.00|-3.03|1B03|0|0|01|0B000552|0|41E826E6|| +37|2023-10-06T20:29:44.5750000-07:00|10FF0007|Kehabiqo Febiqo|0001B3E4|128564|128564|10000|10000|28||99.99|87.05|0.00|-3.14|1504|0|0|01|12000552|0|41E71477|| +261|2023-10-06T20:29:44.3300000-07:00|Change|40022DC6||||||||| +37|2023-10-06T20:29:44.6640000-07:00|40022550|Zeromus|0001B3E6|5016098||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:44.6640000-07:00|10FF0002|Suchichi Suchi|HoT|0|33F5|90128|90128|10000|10000|||100.02|86.20|0.00|-2.43|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5000|10000|||100.72|86.41|0.00|-3.03| +38|2023-10-06T20:29:44.6640000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|26||100.02|86.20|0.00|-2.43|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:44.7090000-07:00|10FF0003|Gegehi Gehi|0001B3E4|73085|73085|5550|10000|33||101.27|87.21|0.00|-2.96|2305|0|0|01|07000552|0|41E60414|| +24|2023-10-06T20:29:44.7090000-07:00|10FF0003|Gegehi Gehi|HoT|0|31F0|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5000|10000|||100.72|86.41|0.00|-3.03| +21|2023-10-06T20:29:44.7090000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|52960000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5000|10000|||100.72|86.41|0.00|-3.03|0001B3EE|0|1| +38|2023-10-06T20:29:44.7090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5550|10000|33||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:44.7540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|2231|128564|128564|10000|10000|||99.99|87.05|0.00|-3.14|10FF0006|Wowobora Gogobora|1|80739|80739|5900|10000|||100.51|86.44|0.00|-3.06| +37|2023-10-06T20:29:44.7540000-07:00|40022550|Zeromus|0001B3E8|4993177||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:44.7540000-07:00|40022550|Zeromus|0001B3E9|4984949||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:44.7540000-07:00|40022DC9|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|450003|66600000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||100.68|90.30|0.00|3.04|0001B3EF|0|1| +38|2023-10-06T20:29:44.7540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|28||99.99|87.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:44.7980000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5027217|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||99.63|85.80|0.00|-3.03|0001B3F0|0|1| +37|2023-10-06T20:29:44.8430000-07:00|10FF0004|Buhojaqe Zijaqe|0001B3E4|80739|80739|4600|10000|30||100.72|86.41|0.00|-3.03|1C06|0|0|01|0B000552|0|41E4F1A5|| +37|2023-10-06T20:29:44.8870000-07:00|40022550|Zeromus|0001B3ED|4981855||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:44.8870000-07:00|40022550|Zeromus|0001B3EB|4954784||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:44.8870000-07:00|10FF0002|Suchichi Suchi|0001B3EB|90128|90128|10000|10000|26||100.02|86.24|0.00|-2.09|1600|0|0|01|10000323|0|41F00000|| +24|2023-10-06T20:29:44.8870000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|28D9|127791|127791|7400|10000|||100.49|86.19|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D76|79111|79111|10000|10000|||99.63|85.80|0.00|-3.03|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D68|127791|127791|7400|10000|||100.49|86.19|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0002|Suchichi Suchi|HoT|798|1504|90128|90128|10000|10000|||100.02|86.24|0.00|-2.09|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15C0|80739|80739|5900|10000|||100.51|86.44|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D54|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|158F|128564|128564|10000|10000|||99.99|87.05|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0003|Gegehi Gehi|HoT|798|15C3|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D18|90055|90055|10000|10000|||101.52|87.94|-0.02|-2.95|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +24|2023-10-06T20:29:44.8870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|3E26|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +21|2023-10-06T20:29:44.8870000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|726003|7C2C0000|104|17358000|0|0|0|0|0|0|0|0|0|0|0|0|4984949|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.02|86.24|0.00|-2.09|0001B3F1|0|1| +38|2023-10-06T20:29:44.8870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|28||99.99|87.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:44.8870000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|26||100.02|86.24|0.00|-2.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:44.8880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|46||99.63|85.80|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:44.8880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5900|10000|30||100.51|86.44|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:44.8880000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:44.8880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|24||100.49|86.19|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:44.8880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4600|10000|30||100.72|86.41|0.00|-3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:44.8880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5550|10000|33||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:44.8880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|26||101.52|87.94|-0.02|-2.95|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:44.9770000-07:00|10FF0005|Wuwuchu Wuchu|0001B3E4|90055|90055|10000|10000|26||101.52|87.94|0.00|-2.95|2707|0|0|01|11000552|0|41E3DF36|| +24|2023-10-06T20:29:44.9770000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|288C|90055|90055|10000|10000|||101.52|87.94|0.00|-2.95|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +38|2023-10-06T20:29:44.9770000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|26||101.52|87.94|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:45.0220000-07:00|40022550|Zeromus|0001B3EC|4944563||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|73085|73085|5750|10000|||101.27|87.21|0.00|-2.96| +24|2023-10-06T20:29:45.0220000-07:00|10FF0006|Wowobora Gogobora|HoT|0|32DC|80739|80739|5900|10000|||100.51|86.44|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03| +22|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|0001B3F2|0|8| +22|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0005|Wuwuchu Wuchu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||101.52|87.94|0.00|-2.95|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|0001B3F2|1|8| +22|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|0001B3F2|2|8| +22|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5900|10000|||100.51|86.44|0.00|-3.06|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|0001B3F2|3|8| +22|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.99|87.05|0.00|-3.14|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|0001B3F2|4|8| +22|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7400|10000|||100.49|86.19|0.00|-3.06|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|0001B3F2|5|8| +22|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0002|Suchichi Suchi|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.02|86.27|0.00|-3.14|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|0001B3F2|6|8| +22|2023-10-06T20:29:45.0220000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|10000|10000|||99.63|85.80|0.00|-3.03|73085|73085|5550|10000|||101.27|87.21|0.00|-2.96|0001B3F2|7|8| +38|2023-10-06T20:29:45.0220000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|26||100.02|86.27|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.0220000-07:00|54|Bloodbath|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:29:45.0220000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:44.6150000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T20:29:45.0220000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5900|10000|30||100.51|86.44|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:45.0660000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4954784|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5900|10000|||100.51|86.44|0.00|-3.06|0001B3F3|0|1| +20|2023-10-06T20:29:45.0660000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|101.52|87.94|0.00|-2.95| +261|2023-10-06T20:29:44.6150000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T20:29:45.1110000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|452003|57E90000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|4944563|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||99.63|85.80|0.00|-3.03|0001B3F4|0|1| +38|2023-10-06T20:29:45.1110000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|46||99.63|85.80|0.00|-3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.1110000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:29:44.7260000-07:00|Change|10FF0008||||||||||| +22|2023-10-06T20:29:45.1560000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0004|Buhojaqe Zijaqe|750603|4BB90000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B3F5|0|8| +22|2023-10-06T20:29:45.1560000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0006|Wowobora Gogobora|750603|48600000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|80739|80739|5900|10000|||100.51|86.44|0.00|-3.06|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B3F5|1|8| +22|2023-10-06T20:29:45.1560000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0001|Sesuga Sapisuga|750603|0|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|127791|127791|7400|10000|||100.49|86.19|0.00|-3.06|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B3F5|2|8| +22|2023-10-06T20:29:45.1560000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0002|Suchichi Suchi|750603|652F0000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.02|86.27|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B3F5|3|8| +22|2023-10-06T20:29:45.1560000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0003|Gegehi Gehi|750603|55D30000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|73085|73085|5750|10000|||101.27|87.21|0.00|-2.96|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B3F5|4|8| +22|2023-10-06T20:29:45.1560000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0007|Kehabiqo Febiqo|750603|0|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.99|87.05|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B3F5|5|8| +22|2023-10-06T20:29:45.1560000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0008|Kokosaze Lulusaze|750603|27F10000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|79111|79111|10000|10000|||99.63|85.80|0.00|-3.03|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B3F5|6|8| +22|2023-10-06T20:29:45.1560000-07:00|4002256D|Zeromus|8B76|Umbral Rays|10FF0005|Wuwuchu Wuchu|750603|63B50000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||101.52|87.94|0.00|-2.95|44|44|0|10000|||100.00|100.00|0.00|0.00|0001B3F5|7|8| +38|2023-10-06T20:29:45.1560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|28||99.99|87.05|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.1560000-07:00|B7D|Magic Vulnerability Up|2.00|4002256D|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|44| +38|2023-10-06T20:29:45.1560000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|26||100.02|86.27|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.1560000-07:00|B7D|Magic Vulnerability Up|2.00|4002256D|Zeromus|10FF0002|Suchichi Suchi|00|90128|44| +38|2023-10-06T20:29:45.1560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|46||99.63|85.80|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.1560000-07:00|B7D|Magic Vulnerability Up|2.00|4002256D|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|44| +261|2023-10-06T20:29:44.7260000-07:00|Change|4002256D||||||||||||| +38|2023-10-06T20:29:45.1560000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5900|10000|30||100.51|86.44|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.1560000-07:00|B7D|Magic Vulnerability Up|2.00|4002256D|Zeromus|10FF0006|Wowobora Gogobora|00|80739|44| +38|2023-10-06T20:29:45.1560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|24||100.49|86.19|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.1560000-07:00|B7D|Magic Vulnerability Up|2.00|4002256D|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|44| +38|2023-10-06T20:29:45.1560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4600|10000|30||100.72|86.41|0.00|-3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.1560000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0004|Buhojaqe Zijaqe|00|80739|90128| +26|2023-10-06T20:29:45.1560000-07:00|B7D|Magic Vulnerability Up|2.00|4002256D|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +38|2023-10-06T20:29:45.1560000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0||||||||||||| +26|2023-10-06T20:29:45.1560000-07:00|30|Well Fed|1232.13|10FF0004|Buhojaqe Zijaqe|40022DBB|Ruby Carbuncle|2968|77430|80739| +26|2023-10-06T20:29:45.1560000-07:00|A8F|Searing Light|13.33|10FF0008|Kokosaze Lulusaze|40022DBB|Ruby Carbuncle|00|77430|79111| +26|2023-10-06T20:29:45.1560000-07:00|A27|Arcane Circle|7.39|10FF0005|Wuwuchu Wuchu|40022DBB|Ruby Carbuncle|00|77430|90055| +38|2023-10-06T20:29:45.1560000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5750|10000|33||101.27|87.21|0.00|-2.96|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.1560000-07:00|B7D|Magic Vulnerability Up|2.00|4002256D|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +38|2023-10-06T20:29:45.1560000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|26||101.52|87.94|0.00|-2.95|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.1560000-07:00|B7D|Magic Vulnerability Up|2.00|4002256D|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|44| +39|2023-10-06T20:29:45.2440000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.99|87.05|0.00|-3.14| +21|2023-10-06T20:29:45.2440000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|750003|76F50000|200004|3C0A8000|0|0|0|0|0|0|0|0|0|0|0|0|4944563|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||100.49|86.19|0.00|-3.06|0001B3F6|0|1| +38|2023-10-06T20:29:45.2440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|24||100.49|86.19|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.2440000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +31|2023-10-06T20:29:45.2440000-07:00|10FF0001||||| +261|2023-10-06T20:29:44.8360000-07:00|Change|10FF0001||||| +261|2023-10-06T20:29:44.8360000-07:00|Change|10FF0005||||||||||||||||||||| +38|2023-10-06T20:29:45.2880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|26||101.52|87.94|0.00|-2.95|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.2880000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +37|2023-10-06T20:29:45.3330000-07:00|40022550|Zeromus|0001B3F0|4944378||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:44.9590000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T20:29:45.4220000-07:00|40022550|Zeromus|0001B3EA|4893664||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:45.4220000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +38|2023-10-06T20:29:45.4220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|24||100.49|86.19|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.4220000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0001|Sesuga Sapisuga|00|127791|90128| +39|2023-10-06T20:29:45.4660000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.02|86.29|-0.02|-3.14| +37|2023-10-06T20:29:45.5100000-07:00|40022550|Zeromus|0001B3EE|4872522||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:45.5100000-07:00|10FF0002|Suchichi Suchi|60|Dragonfire Dive|40022550|Zeromus|124003|41F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4944378|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.02|86.29|-0.02|-3.14|0001B3F7|0|1| +24|2023-10-06T20:29:45.5550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3B8F|128564|128564|10000|10000|||99.99|87.05|-0.02|-3.14|10FF0001|Sesuga Sapisuga|0|127791|127791|6400|10000|||100.49|86.19|0.00|-3.06| +24|2023-10-06T20:29:45.5550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2901|79111|79111|9700|10000|||99.63|85.80|0.00|3.08|4002256D|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +21|2023-10-06T20:29:45.5550000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|111D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4872522|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.99|87.05|-0.02|-3.14|0001B3F8|0|1| +21|2023-10-06T20:29:45.5550000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|69D50000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|4872522|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5900|10000|||100.51|86.44|0.00|-3.06|0001B3F9|0|1| +38|2023-10-06T20:29:45.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|28||99.99|87.05|-0.02|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.5550000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0007|Kehabiqo Febiqo|00|128564|90128| +38|2023-10-06T20:29:45.5550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|46||99.63|85.80|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:45.6000000-07:00|40022550|Zeromus|0001B3F3|4872483||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:45.6440000-07:00|40022550|Zeromus|0001B3F1|4840695||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:45.1860000-07:00|Change|10FF0008||| +37|2023-10-06T20:29:45.6900000-07:00|10FF0003|Gegehi Gehi|0001B3F2|73085|73085|5750|10000|33||101.27|87.21|0.00|-2.96|2300|0|0|01|0F0004D7|0|41A00000|| +26|2023-10-06T20:29:45.6900000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:29:45.6900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|87A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4872483|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6400|10000|||100.49|86.19|0.00|-3.06|0001B3FA|0|1| +38|2023-10-06T20:29:45.6900000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5500|10000|30||100.51|86.44|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.6900000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0006|Wowobora Gogobora|00|80739|90128| +31|2023-10-06T20:29:45.6900000-07:00|10FF0001||||| +37|2023-10-06T20:29:45.7800000-07:00|40022550|Zeromus|0001B3F4|4818190||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:45.7800000-07:00|10FF0008|Kokosaze Lulusaze|0001B3F4|79111|79111|10000|10000|46||99.63|85.80|0.00|3.08|1B00|0|0|01|10000B25|0|0|| +37|2023-10-06T20:29:45.7800000-07:00|10FF0004|Buhojaqe Zijaqe|0001B3F5|61354|80739|4600|10000|0||100.72|86.41|0.00|-3.03|1C00|0|0|03|06000B7D|0|3FB5E353|||||||||| +21|2023-10-06T20:29:45.7800000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|19720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4840695|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||99.63|85.80|0.00|3.08|0001B3FB|0|1| +38|2023-10-06T20:29:45.7800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|46||99.63|85.80|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.7800000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:45.7800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|61354|80739|4600|10000|0||100.72|86.41|0.00|-3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.7800000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:29:45.7800000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|80739|127791| +37|2023-10-06T20:29:45.8240000-07:00|10FF0006|Wowobora Gogobora|0001B3F5|62211|80739|5500|10000|0||100.51|86.44|0.00|-3.06|2801|0|0|03|01000000|0|0|||||||||| +37|2023-10-06T20:29:45.8240000-07:00|10FF0005|Wuwuchu Wuchu|0001B3F2|90055|90055|10000|10000|26||101.52|87.94|0.00|-2.95|2701|0|0|01|04000511|0|41A00000|| +26|2023-10-06T20:29:45.8240000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|90055|73085| +21|2023-10-06T20:29:45.8240000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|734003|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4840695|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4600|10000|||100.72|86.41|0.00|-3.03|0001B3FC|0|1| +21|2023-10-06T20:29:45.8240000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022550|Zeromus|752003|363F0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|4840695|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5750|10000|||101.27|87.21|0.00|-2.96|0001B3FD|0|1| +21|2023-10-06T20:29:45.8240000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|750003|B7740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4840695|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||101.52|87.94|0.00|-2.95|0001B3FE|0|1| +38|2023-10-06T20:29:45.8250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|46||99.63|85.80|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.8250000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0008|Kokosaze Lulusaze|00|79111|90128| +38|2023-10-06T20:29:45.8250000-07:00|10FF0006|Wowobora Gogobora|005A5A28|62211|80739|5500|10000|0||100.51|86.44|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.8250000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:29:45.8250000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|80739|127791| +38|2023-10-06T20:29:45.8250000-07:00|40022DC9|Topaz Titan|005A5A00|0|75851|10000|10000|0||100.68|90.30|0.00|3.04|0|0|0||||||||||||| +26|2023-10-06T20:29:45.8250000-07:00|30|Well Fed|1873.64|10FF0008|Kokosaze Lulusaze|40022DC9|Topaz Titan|2964|75851|79111| +26|2023-10-06T20:29:45.8250000-07:00|A8F|Searing Light|12.66|10FF0008|Kokosaze Lulusaze|40022DC9|Topaz Titan|00|75851|79111| +26|2023-10-06T20:29:45.8250000-07:00|A27|Arcane Circle|7.12|10FF0005|Wuwuchu Wuchu|40022DC9|Topaz Titan|00|75851|90055| +38|2023-10-06T20:29:45.8250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5750|10000|33||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:45.8250000-07:00|7B3|Manafication|12.24|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73085|73085| +38|2023-10-06T20:29:45.8250000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|26||101.52|87.94|0.00|-2.95|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.8250000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:29:45.8250000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:29:45.8690000-07:00|10FF0001|Sesuga Sapisuga|0001B3F5|127791|127791|6400|10000|1||100.49|86.19|0.00|-3.06|1302|0|0|02|0C000000|0|0|||||| +21|2023-10-06T20:29:45.8690000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|E1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4818190|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.02|86.29|0.00|-3.14|0001B3FF|0|1| +38|2023-10-06T20:29:45.8690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|1||100.49|86.19|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.8690000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:29:45.9140000-07:00|10FF0002|Suchichi Suchi|0001B3F5|64225|90128|10000|10000|0||100.02|86.29|0.00|-3.14|1603|0|0|03|02000B7D|0|3FA4BC69|||||||||| +38|2023-10-06T20:29:45.9140000-07:00|10FF0002|Suchichi Suchi|005A5A16|64225|90128|10000|10000|0||100.02|86.29|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.9140000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:29:45.9140000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0002|Suchichi Suchi|00|90128|127791| +37|2023-10-06T20:29:45.9580000-07:00|10FF0003|Gegehi Gehi|0001B3F5|51114|73085|5750|10000|0||101.27|87.21|0.00|-2.96|2304|0|0|03|07000000|0|0|||||||||| +37|2023-10-06T20:29:45.9580000-07:00|10FF0004|Buhojaqe Zijaqe|0001B3F2|61354|80739|4600|10000|0||100.72|86.41|0.00|-3.03|1C02|0|0|01|0A000511|0|41A00000|| +26|2023-10-06T20:29:45.9580000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|80739|73085| +21|2023-10-06T20:29:45.9580000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|14CB0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|62211|80739|5500|10000|||100.51|86.44|0.00|-3.06|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B400|0|1| +38|2023-10-06T20:29:45.9580000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0||||||||||||| +26|2023-10-06T20:29:45.9580000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40022DBB|Ruby Carbuncle|00|77430|73085| +38|2023-10-06T20:29:45.9580000-07:00|10FF0003|Gegehi Gehi|005A5A23|51114|73085|5750|10000|0||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:45.9580000-07:00|312|Battle Litany|0.00|10FF0002|Suchichi Suchi|10FF0003|Gegehi Gehi|00|73085|90128| +30|2023-10-06T20:29:45.9580000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73085|127791| +30|2023-10-06T20:29:45.9580000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:29:46.0020000-07:00|10FF0007|Kehabiqo Febiqo|0001B3F5|128564|128564|10000|10000|6||99.99|87.05|0.00|-3.14|1505|0|0|03|09000000|0|0|||||||||| +39|2023-10-06T20:29:46.0020000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6600|10000|||100.49|86.19|0.00|-3.06| +38|2023-10-06T20:29:46.0030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.99|87.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:46.0030000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:46.0030000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|| +30|2023-10-06T20:29:46.0030000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|128564|127791| +257|2023-10-06T20:29:46.0030000-07:00|80034E7C|00200004|03|00|0000| +37|2023-10-06T20:29:46.0470000-07:00|10FF0008|Kokosaze Lulusaze|0001B3F5|68886|79111|10000|10000|0||99.63|85.80|0.00|3.08|1B06|0|0|04|08000000|0|0|||||||||||||| +21|2023-10-06T20:29:46.0470000-07:00|4002256E|Zeromus|8B82|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|100.00|0.00|1.57|0001B401|0|0| +38|2023-10-06T20:29:46.0470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|68886|79111|10000|10000|0||99.63|85.80|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:46.0470000-07:00|77D|Seraphic Veil|0.00|40022CFF|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|| +30|2023-10-06T20:29:46.0470000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|79111|127791| +30|2023-10-06T20:29:46.0470000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:29:45.6610000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:29:45.6610000-07:00|Change|10FF0006||| +37|2023-10-06T20:29:46.0910000-07:00|10FF0005|Wuwuchu Wuchu|0001B3F5|64530|90055|10000|10000|0||101.52|87.94|0.00|-3.08|2707|0|0|03|0C000000|0|0|||||||||| +37|2023-10-06T20:29:46.0910000-07:00|10FF0006|Wowobora Gogobora|0001B3F2|62211|80739|5500|10000|0||100.51|86.44|0.00|-3.06|2803|0|0|01|01000511|0|41A00000|| +26|2023-10-06T20:29:46.0910000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|80739|73085| +38|2023-10-06T20:29:46.0910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|68886|79111|10000|10000|0||99.63|85.80|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:46.0910000-07:00|4B4|Lucid Dreaming|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:46.0910000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|64530|90055|10000|10000|0||101.52|87.94|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:46.0910000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:29:46.0910000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0005|Wuwuchu Wuchu|00|90055|127791| +37|2023-10-06T20:29:46.1360000-07:00|40022550|Zeromus|0001B3F6|4787737||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:46.1360000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|100.72|86.41|0.00|-3.03| +37|2023-10-06T20:29:46.1800000-07:00|40022550|Zeromus|0001B3F8|4783356||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:46.1800000-07:00|40022550|Zeromus|DoT|0|20AF|4818190|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|4818190|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:46.1800000-07:00|40022550|Zeromus|005A5A00|4774989|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:29:46.2250000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|220B|128564|128564|10000|10000|||99.99|87.05|0.00|-3.14|10FF0006|Wowobora Gogobora|1|62211|80739|5500|10000|||100.51|86.44|0.00|-3.06| +37|2023-10-06T20:29:46.2250000-07:00|40022550|Zeromus|0001B3F9|4747896||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:46.2250000-07:00|40022550|Zeromus|0001B3FA|4745726||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:46.2250000-07:00|10FF0007|Kehabiqo Febiqo|0001B3F2|128564|128564|10000|10000|6||99.99|87.05|0.00|-3.14|1504|0|0|01|05000511|0|41A00000|| +26|2023-10-06T20:29:46.2250000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|128564|73085| +38|2023-10-06T20:29:46.2250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.99|87.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:45.9000000-07:00|Change|10FF0001||| +37|2023-10-06T20:29:46.3140000-07:00|40022550|Zeromus|0001B3F7|4728837||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:46.3140000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4745726|40478540|10000|10000|||100.00|80.10|0.00|0.00|51114|73085|5750|10000|||101.27|87.21|0.00|-2.96|0001B402|0|1| +261|2023-10-06T20:29:45.9000000-07:00|Change|10FF0005||||||||||||||| +261|2023-10-06T20:29:45.9000000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T20:29:46.3580000-07:00|40022550|Zeromus|0001B3FC|4728643||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:46.3580000-07:00|10FF0001|Sesuga Sapisuga|0001B3F2|127791|127791|6600|10000|1||100.49|86.19|0.00|-3.06|1305|0|0|01|02000511|0|41A00000|| +26|2023-10-06T20:29:46.3580000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|127791|73085| +37|2023-10-06T20:29:46.4030000-07:00|40022550|Zeromus|0001B3FF|4725033||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:46.4480000-07:00|40022550|Zeromus|0001B3FD|4711146||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:46.4480000-07:00|40022550|Zeromus|0001B3FE|4664182||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:29:46.0210000-07:00|40022DC6|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||95.23|91.39|0.00|2.80| +261|2023-10-06T20:29:46.0210000-07:00|Remove|40022DC6| +37|2023-10-06T20:29:46.4930000-07:00|10FF0002|Suchichi Suchi|0001B3F2|64225|90128|10000|10000|0||100.02|86.29|-0.02|-3.14|1606|0|0|01|05000511|0|41A00000|| +26|2023-10-06T20:29:46.4930000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|90128|73085| +39|2023-10-06T20:29:46.4930000-07:00|10FF0006|Wowobora Gogobora|63018|80739|5705|10000|||100.51|86.44|0.00|-3.06| +37|2023-10-06T20:29:46.5380000-07:00|40022550|Zeromus|0001B3FB|4657668||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:46.6280000-07:00|10FF0008|Kokosaze Lulusaze|0001B3F2|68886|79111|10000|10000|0||99.63|85.80|0.00|3.08|1B07|0|0|01|03000511|0|41A00000|| +26|2023-10-06T20:29:46.6280000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|79111|73085| +38|2023-10-06T20:29:46.6280000-07:00|40022DC9|Topaz Titan|005A5A00|0|75851|10000|10000|0||100.68|90.30|0.00|3.04|0|0|0||||||||||||| +26|2023-10-06T20:29:46.6280000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40022DC9|Topaz Titan|00|75851|73085| +37|2023-10-06T20:29:46.7180000-07:00|40022550|Zeromus|0001B3EF|4631460||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:46.7180000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|92DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4657668|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.99|87.05|0.00|-3.14|0001B403|0|1| +38|2023-10-06T20:29:46.7180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.99|87.05|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:46.7180000-07:00|499|Inner Release|9.03|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +37|2023-10-06T20:29:46.7620000-07:00|10FF0006|Wowobora Gogobora|0001B400|68341||||||100.51|86.44|0.00|-3.06| +21|2023-10-06T20:29:46.7620000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A726003|932C0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|4631460|40478540|10000|10000|||100.00|80.10|0.00|0.00|64225|90128|10000|10000|||100.02|86.29|-0.02|-3.14|0001B404|0|1| +38|2023-10-06T20:29:46.7620000-07:00|10FF0002|Suchichi Suchi|005A5A16|64225|90128|10000|10000|0||100.02|86.29|-0.02|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:46.7620000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:29:46.7620000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:46.8520000-07:00|40022550|Zeromus|0001B402|4631459||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:46.8520000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|10770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4631460|40478540|10000|10000|||100.00|80.10|0.00|0.00|64530|90055|10000|10000|||101.30|87.92|0.00|3.05|0001B405|0|1| +39|2023-10-06T20:29:46.8950000-07:00|10FF0005|Wuwuchu Wuchu|65430|90055|10000|10000|||101.30|87.92|0.00|3.05| +39|2023-10-06T20:29:47.0280000-07:00|10FF0008|Kokosaze Lulusaze|69677|79111|10000|10000|||99.63|85.80|0.00|3.08| +21|2023-10-06T20:29:47.0730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|36050000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4631459|40478540|10000|10000|||100.00|80.10|0.00|0.00|61354|80739|4600|10000|||100.72|86.41|0.00|-3.03|0001B406|0|1| +261|2023-10-06T20:29:46.7710000-07:00|Change|10FF0006||| +39|2023-10-06T20:29:47.1630000-07:00|10FF0004|Buhojaqe Zijaqe|62161|80739|4400|10000|||100.72|86.41|0.00|-3.03| +38|2023-10-06T20:29:47.1630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.99|87.12|0.00|-0.91|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.1630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0007|Kehabiqo Febiqo|00|128564|44| +38|2023-10-06T20:29:47.1630000-07:00|10FF0002|Suchichi Suchi|005A5A16|64225|90128|10000|10000|0||100.02|86.30|0.00|-2.82|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.1630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0002|Suchichi Suchi|00|90128|44| +38|2023-10-06T20:29:47.1630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69677|79111|10000|10000|0||99.63|85.80|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.1630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0008|Kokosaze Lulusaze|00|79111|44| +38|2023-10-06T20:29:47.1630000-07:00|10FF0006|Wowobora Gogobora|005A5A28|68341|80739|5705|10000|0||100.51|86.44|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.1630000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:29:47.1630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0006|Wowobora Gogobora|00|80739|44| +38|2023-10-06T20:29:47.1630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6600|10000|1||100.49|86.19|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.1630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0001|Sesuga Sapisuga|00|127791|44| +38|2023-10-06T20:29:47.1630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62161|80739|4400|10000|0||100.72|86.41|0.00|-3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.1630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +38|2023-10-06T20:29:47.1630000-07:00|10FF0003|Gegehi Gehi|005A5A23|51114|73085|5750|10000|0||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.1630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +38|2023-10-06T20:29:47.1630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65430|90055|10000|10000|0||101.21|87.91|-0.02|3.01|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.1630000-07:00|B7D|Magic Vulnerability Up|0.00|4002256D|Zeromus|10FF0005|Wuwuchu Wuchu|00|90055|44| +21|2023-10-06T20:29:47.2960000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022550|Zeromus|37754003|35030000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|4631459|40478540|10000|10000|||100.00|80.10|0.00|0.00|51114|73085|5750|10000|||101.27|87.21|0.00|-2.96|0001B407|0|1| +38|2023-10-06T20:29:47.2960000-07:00|10FF0003|Gegehi Gehi|005A5A23|51114|73085|5750|10000|0||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.2960000-07:00|7B3|Manafication|10.76|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73085|73085| +37|2023-10-06T20:29:47.3400000-07:00|40022550|Zeromus|0001B403|4593865||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:47.0040000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T20:29:47.3850000-07:00|40022550|Zeromus|0001B405|4589650||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:47.4310000-07:00|40022550|Zeromus|0001B404|4551974||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:47.4310000-07:00|10FF0002|Suchichi Suchi|0001B404|64225|90128|10000|10000|0||100.02|86.33|0.00|-2.03|1600|0|0|01|06000747|0|41F00000|| +38|2023-10-06T20:29:47.4310000-07:00|10FF0002|Suchichi Suchi|005A5A16|64225|90128|10000|10000|0||100.02|86.33|0.00|-2.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:47.5630000-07:00|10FF0005|Wuwuchu Wuchu|5F41|Plentiful Harvest|40022550|Zeromus|710003|B2220000|323E|1018000|0|0|0|0|0|0|0|0|0|0|0|0|4551974|40478540|10000|10000|||100.00|80.10|0.00|0.00|65430|90055|10000|10000|||101.21|87.91|0.00|3.01|0001B408|0|1| +38|2023-10-06T20:29:47.5630000-07:00|10FF0006|Wowobora Gogobora|005A5A28|68341|80739|5705|10000|0||100.51|86.44|-0.02|-2.88|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.5630000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:47.5630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65430|90055|10000|10000|0||101.21|87.91|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.5630000-07:00|A20|Immortal Sacrifice|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|08|90055|90055| +21|2023-10-06T20:29:47.6080000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|456003|72590000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|4551974|40478540|10000|10000|||100.00|80.10|0.00|0.00|69677|79111|10000|10000|||99.63|85.88|0.00|1.74|0001B409|0|1| +38|2023-10-06T20:29:47.6080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69677|79111|9700|10000|0||99.63|85.88|0.00|1.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.6080000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:29:47.2400000-07:00|Change|10FF0008||||||| +24|2023-10-06T20:29:47.6520000-07:00|10FF0002|Suchichi Suchi|HoT|0|32BD|64225|90128|10000|10000|||100.10|87.71|-0.02|-1.78|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||100.72|86.42|0.00|2.30| +38|2023-10-06T20:29:47.6520000-07:00|10FF0002|Suchichi Suchi|005A5A16|77214|90128|10000|10000|0||100.10|87.71|-0.02|-1.78|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:47.6960000-07:00|10FF0003|Gegehi Gehi|HoT|0|3B1A|51114|73085|5750|10000|||101.27|87.21|0.00|-2.96|10FF0003|Gegehi Gehi|0|51114|73085|5750|10000|||101.27|87.21|0.00|-2.96| +38|2023-10-06T20:29:47.6960000-07:00|10FF0002|Suchichi Suchi|005A5A16|77214|90128|10000|10000|0||100.11|87.91|0.00|-1.70|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.6960000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:47.6960000-07:00|10FF0003|Gegehi Gehi|005A5A23|66244|73085|5750|10000|0||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:47.7420000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|14720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4551974|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.96|89.07|0.00|-0.13|0001B40A|0|1| +21|2023-10-06T20:29:47.7420000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|3E990000|200004|3E918000|0|0|0|0|0|0|0|0|0|0|0|0|4551974|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6600|10000|||100.49|86.19|0.00|-3.06|0001B40B|0|1| +38|2023-10-06T20:29:47.7420000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0|||||||||||||||| +26|2023-10-06T20:29:47.7420000-07:00|7AE|Summon Order IV|30.00|40022DBB|Ruby Carbuncle|40022DBB|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:29:47.7420000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|62161|80739|4400|10000|||100.72|86.43|0.00|1.55|62161|80739|4400|10000|||100.72|86.43|0.00|1.55|0001B40C|0|1| +38|2023-10-06T20:29:47.7420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|1||100.49|86.19|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.7420000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:29:47.4300000-07:00|Change|10FF0001||| +38|2023-10-06T20:29:47.7850000-07:00|10FF0002|Suchichi Suchi|005A5A16|77214|90128|10000|10000|0||100.12|88.09|0.00|-1.64|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.7850000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +22|2023-10-06T20:29:47.8300000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|25C00000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.96|89.19|0.00|-0.04|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B40D|0|8| +22|2023-10-06T20:29:47.8300000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0002|Suchichi Suchi|4|24ED0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|77214|90128|10000|10000|||100.12|88.09|0.00|-1.64|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B40D|1|8| +22|2023-10-06T20:29:47.8300000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|24F90000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|68341|80739|5705|10000|||100.49|86.47|0.00|-1.30|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B40D|2|8| +22|2023-10-06T20:29:47.8300000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0005|Wuwuchu Wuchu|4|261B0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|65430|90055|10000|10000|||101.21|87.91|0.00|-3.06|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B40D|3|8| +22|2023-10-06T20:29:47.8300000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|200004|3AC50000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|69677|79111|9700|10000|||99.63|85.98|-0.02|3.09|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B40D|4|8| +22|2023-10-06T20:29:47.8300000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|251D0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|62161|80739|4400|10000|||100.75|86.49|-0.02|1.07|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B40D|5|8| +22|2023-10-06T20:29:47.8300000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|24880000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|66244|73085|5750|10000|||101.27|87.21|0.00|-2.96|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B40D|6|8| +22|2023-10-06T20:29:47.8300000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|26160000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|5600|10000|||100.49|86.19|0.00|-3.06|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B40D|7|8| +38|2023-10-06T20:29:47.8300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62161|80739|4400|10000|0||100.75|86.49|-0.02|1.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.8300000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:29:47.8760000-07:00|40022550|Zeromus|0001B406|4538145||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:47.8760000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|38BC|127791|127791|5600|10000|||100.48|86.20|0.00|-1.61|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|14CB|127791|127791|5600|10000|||100.48|86.20|0.00|-1.61|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|14DE|69677|79111|9700|10000|||99.64|86.11|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0003|Gegehi Gehi|HoT|798|15CB|66244|73085|5750|10000|||101.27|87.21|0.00|-2.96|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0006|Wowobora Gogobora|HoT|798|159E|68341|80739|5705|10000|||100.49|86.86|0.00|-0.89|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D4B|62161|80739|4400|10000|||101.03|87.07|0.00|0.90|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D3E|65430|90055|10000|10000|||101.21|87.91|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0002|Suchichi Suchi|HoT|798|CEA|77214|90128|10000|10000|||100.13|88.27|0.00|-1.58|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|15E3|128564|128564|10000|10000|||99.96|89.22|0.00|-0.03|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +24|2023-10-06T20:29:47.8760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|17FD|62161|80739|4400|10000|||101.03|87.07|0.00|0.90|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +21|2023-10-06T20:29:47.8760000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4551974|40478540|10000|10000|||100.00|80.10|0.00|0.00|68341|80739|5705|10000|||100.49|86.86|0.00|-0.89|0001B40E|0|1| +38|2023-10-06T20:29:47.8760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.96|89.22|0.00|-0.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.8760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:47.8760000-07:00|10FF0002|Suchichi Suchi|005A5A16|80520|90128|10000|10000|0||100.13|88.27|0.00|-1.58|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.8760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:47.8760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75019|79111|9700|10000|0||99.64|86.11|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.8760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:29:47.8760000-07:00|10FF0006|Wowobora Gogobora|005A5A28|73875|80739|5705|10000|0||100.49|86.86|0.00|-0.89|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.8760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:47.8760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|1||100.48|86.20|0.00|-1.61|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.8760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:47.8760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71705|80739|4400|10000|0||101.03|87.07|0.00|0.90|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.8760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:47.8760000-07:00|10FF0003|Gegehi Gehi|005A5A23|71823|73085|5750|10000|0||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.8760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:47.8760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|68820|90055|10000|10000|0||101.21|87.91|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:47.8760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:47.9200000-07:00|40022550|Zeromus|0001B407|4524574||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:47.9200000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|736003|1440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4551974|40478540|10000|10000|||100.00|80.10|0.00|0.00|69677|79111|9700|10000|||99.64|86.11|0.00|3.09|0001B40F|0|1| +24|2023-10-06T20:29:47.9640000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|172D|65430|90055|10000|10000|||101.21|87.91|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|62161|80739|4400|10000|||101.03|87.07|0.00|0.90| +21|2023-10-06T20:29:47.9640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|93A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4551974|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5600|10000|||100.48|86.20|0.00|-1.61|0001B410|0|1| +38|2023-10-06T20:29:47.9640000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74753|90055|10000|10000|0||101.21|87.91|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:47.9640000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +31|2023-10-06T20:29:47.9640000-07:00|10FF0001||||| +39|2023-10-06T20:29:48.0090000-07:00|10FF0003|Gegehi Gehi|72553|73085|5950|10000|||101.27|87.21|0.00|-2.96| +24|2023-10-06T20:29:48.0090000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1FA0|73875|80739|5705|10000|||100.48|87.41|0.00|-0.08|10FF0004|Buhojaqe Zijaqe|0|71705|80739|4400|10000|||101.27|87.57|0.00|0.75| +20|2023-10-06T20:29:48.0090000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.48|87.41|0.00|-0.08| +38|2023-10-06T20:29:48.0090000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5705|10000|0||100.48|87.41|0.00|-0.08|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:47.6260000-07:00|Change|10FF0003||| +38|2023-10-06T20:29:48.0980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|1||100.40|86.37|0.00|-1.61|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:48.0980000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +261|2023-10-06T20:29:47.7460000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:29:48.2300000-07:00|40022550|Zeromus|0001B409|4495301||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:48.2300000-07:00|10FF0008|Kokosaze Lulusaze|0001B409|75019|79111|9700|10000|0||99.72|87.46|0.00|1.88|1B00|0|0|01|06000B25|0|0|| +39|2023-10-06T20:29:48.2300000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||99.96|89.22|0.00|-0.03| +38|2023-10-06T20:29:48.2300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75019|79111|9700|10000|0||99.72|87.46|0.00|1.88|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:48.2300000-07:00|10FF0003|Gegehi Gehi|005A5A23|72553|73085|5950|10000|0||101.27|87.21|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:48.2300000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:29:48.2740000-07:00|40022550|Zeromus|0001B40A|4490067||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:48.3190000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|2A310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4490067|40478540|10000|10000|||100.00|80.10|0.00|0.00|75019|79111|9700|10000|||99.77|88.22|0.00|1.11|0001B411|0|1| +38|2023-10-06T20:29:48.3190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75019|79111|9700|10000|0||99.77|88.22|0.00|1.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:48.3190000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:48.3630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|75019|79111|9700|10000|0||99.77|88.22|0.00|1.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:48.3630000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:29:48.4070000-07:00|40022550|Zeromus|0001B40E|4490006||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:48.4070000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +37|2023-10-06T20:29:48.4510000-07:00|40022550|Zeromus|0001B40F|4489682||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:48.4510000-07:00|10FF0002|Suchichi Suchi|81421|90128|10000|10000|||100.15|88.69|-0.02|-1.52| +37|2023-10-06T20:29:48.4950000-07:00|40022550|Zeromus|0001B40B|4473657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:48.4960000-07:00|40022550|Zeromus|0001B410|4471295||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:48.4960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.96|89.22|0.00|-0.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:48.4960000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:48.4960000-07:00|A3C|Physis II|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:48.4960000-07:00|10FF0002|Suchichi Suchi|005A5A16|81421|90128|10000|10000|0||100.15|88.69|-0.02|-1.52|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:48.4960000-07:00|776|Right Eye|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:29:48.4960000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|74753|90055|10000|10000|0||100.93|88.04|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:48.4960000-07:00|5AE|Left Eye|0.00|10FF0002|Suchichi Suchi|10FF0005|Wuwuchu Wuchu|00|90055|90128| +24|2023-10-06T20:29:48.5410000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2019|128564|128564|10000|10000|||99.96|89.23|0.00|-0.02|10FF0006|Wowobora Gogobora|0|80739|80739|5705|10000|||100.39|88.66|0.00|-3.08| +24|2023-10-06T20:29:48.5410000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|213A|75019|79111|9700|10000|||99.90|90.21|0.00|1.77|10FF0004|Buhojaqe Zijaqe|0|71705|80739|4400|10000|||101.83|89.39|0.00|0.11| +38|2023-10-06T20:29:48.5410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.96|89.23|0.00|-0.02|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:48.5410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||99.90|90.21|0.00|1.77|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:48.5850000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|73660E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|4471295|40478540|10000|10000|||100.00|80.10|0.00|0.00|71705|80739|4400|10000|||101.83|89.39|0.00|0.11|0001B412|0|1| +261|2023-10-06T20:29:48.2120000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:29:48.3060000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:29:48.6740000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4471295|40478540|10000|10000|||100.00|80.10|0.00|0.00|81421|90128|10000|10000|||100.18|89.84|0.00|-1.65|0001B413|0|1| +37|2023-10-06T20:29:48.7190000-07:00|40022550|Zeromus|0001B408|4425693||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:48.7640000-07:00|10FF0002|Suchichi Suchi|0001B40D|90128||||||100.16|90.05|0.00|-2.12| +38|2023-10-06T20:29:48.7640000-07:00|40022DC9|Topaz Titan|005A5A00|0|75851|0|10000|0||100.68|90.30|0.00|3.04|0|0|0|||| +30|2023-10-06T20:29:48.7640000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022DC9|Topaz Titan|00|75851|73085| +30|2023-10-06T20:29:48.7640000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022DC9|Topaz Titan|00|75851|79111| +30|2023-10-06T20:29:48.7640000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022DC9|Topaz Titan|00|75851|90055| +261|2023-10-06T20:29:48.4060000-07:00|Change|40022DC9||||| +261|2023-10-06T20:29:48.4060000-07:00|Change|40022DC9||||| +38|2023-10-06T20:29:48.8090000-07:00|40022DD3||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +38|2023-10-06T20:29:48.8090000-07:00|40022DD3||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||||||||| +03|2023-10-06T20:29:48.4970000-07:00|40022DD3|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||100.22|95.19|0.00|-3.08| +261|2023-10-06T20:29:48.4970000-07:00|Add|40022DD3||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:48.4970000-07:00|Change|40022DD3||| +21|2023-10-06T20:29:48.9420000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3B180000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|4425693|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5705|10000|||100.39|88.67|0.00|-3.09|0001B414|0|1| +21|2023-10-06T20:29:48.9870000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022550|Zeromus|4A750003|3B380000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|4425693|40478540|10000|10000|||100.00|80.10|0.00|0.00|72553|73085|5950|10000|||102.82|88.60|0.00|0.98|0001B415|0|1| +38|2023-10-06T20:29:48.9870000-07:00|10FF0003|Gegehi Gehi|005A5A23|72553|73085|5950|10000|0||102.82|88.60|0.00|0.98|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:48.9870000-07:00|7B3|Manafication|9.07|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73085|73085| +37|2023-10-06T20:29:49.0310000-07:00|10FF0005|Wuwuchu Wuchu|0001B40D|84508||||||100.82|88.27|0.00|3.08| +39|2023-10-06T20:29:49.0310000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5800|10000|||100.15|87.75|0.00|-2.10| +261|2023-10-06T20:29:48.5920000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:29:49.0750000-07:00|40022550|Zeromus|0001B411|4414892||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:49.1650000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|92450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4414892|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.96|89.69|0.00|0.00|0001B416|0|1| +38|2023-10-06T20:29:49.1650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.96|89.69|0.00|0.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:49.1650000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +261|2023-10-06T20:29:48.8260000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:29:49.2090000-07:00|40022550|Zeromus|0001B413|4411533||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:49.2090000-07:00|40022550|Zeromus|0001B412|4411533|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T20:29:49.2090000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +24|2023-10-06T20:29:49.2090000-07:00|40022550|Zeromus|DoT|0|295E|4414892|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|4414892|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:49.2090000-07:00|40022550|Zeromus|005A5A00|4400943|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:29:49.2530000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|428A0000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|4414892|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.11|90.50|0.00|-2.12|0001B417|0|1| +38|2023-10-06T20:29:49.2530000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.11|90.50|0.00|-2.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:49.2530000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:29:49.2980000-07:00|10FF0004|Buhojaqe Zijaqe|0001B40D|80739||||||101.49|92.97|0.00|-0.36| +21|2023-10-06T20:29:49.3870000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|200004|21F20000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|84508|90055|10000|10000|||100.82|88.27|0.00|3.08|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B418|0|1| +37|2023-10-06T20:29:49.4310000-07:00|10FF0003|Gegehi Gehi|0001B40D|73085||||||103.32|89.09|0.00|2.82| +39|2023-10-06T20:29:49.5210000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5510|10000|||100.40|88.68|0.00|2.37| +38|2023-10-06T20:29:49.5660000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0||||||||||||| +30|2023-10-06T20:29:49.5660000-07:00|7AE|Summon Order IV|0.00|40022DBB|Ruby Carbuncle|40022DBB|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T20:29:49.1790000-07:00|Change|10FF0004||||||||| +24|2023-10-06T20:29:49.6110000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15C7|128564|128564|10000|10000|||99.96|89.74|0.00|3.14|10FF0006|Wowobora Gogobora|0|80739|80739|5305|10000|||100.40|88.68|0.00|2.37| +37|2023-10-06T20:29:49.6110000-07:00|40022550|Zeromus|0001B414|4385815||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:49.6110000-07:00|40022550|Zeromus|0001B415|4370655||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:49.6110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:49.7440000-07:00|10FF0006|Wowobora Gogobora|5EF5|Rhizomata|10FF0006|Wowobora Gogobora|13E|1028000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5510|10000|||100.41|88.70|0.00|1.01|80739|80739|5510|10000|||100.41|88.70|0.00|1.01|0001B419|0|1| +37|2023-10-06T20:29:49.7890000-07:00|40022550|Zeromus|0001B416|4333210||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:49.7890000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.96|89.74|0.00|3.14|128564|128564|10000|10000|||99.96|89.74|0.00|3.14|0001B41A|0|1| +21|2023-10-06T20:29:49.7890000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4370655|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5950|10000|||104.00|90.04|0.00|1.22|0001B41B|0|1| +38|2023-10-06T20:29:49.7890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:49.7890000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +34|2023-10-06T20:29:49.8330000-07:00|40022DD3|Carbuncle|40022DD3|Carbuncle|01| +261|2023-10-06T20:29:49.4730000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:29:49.4730000-07:00|Change|40022DD3||| +37|2023-10-06T20:29:49.8780000-07:00|40022550|Zeromus|0001B417|4316176||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:49.8780000-07:00|10FF0005|Wuwuchu Wuchu|85408|90055|10000|10000|||100.82|88.27|0.00|3.08| +21|2023-10-06T20:29:49.8780000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|720003|411C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4333210|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.36|89.97|-0.01|1.80|0001B41C|0|1| +21|2023-10-06T20:29:49.9670000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4316176|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4000|10000|||101.38|95.90|-0.02|0.04|0001B41D|0|1| +261|2023-10-06T20:29:49.5640000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:29:50.0580000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||100.80|96.29|0.00|0.27| +21|2023-10-06T20:29:50.0580000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|454003|48F40000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|4316176|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||100.80|96.29|0.00|0.27|0001B41E|0|1| +21|2023-10-06T20:29:50.0580000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C714003|4FFC0000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|4316176|40478540|10000|10000|||100.00|80.10|0.00|0.00|85408|90055|10000|10000|||100.82|88.27|0.00|3.08|0001B41F|0|1| +21|2023-10-06T20:29:50.0580000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|12F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4316176|40478540|10000|10000|||100.00|80.10|0.00|0.00|85408|90055|10000|10000|||100.82|88.27|0.00|3.08|0001B420|0|1| +38|2023-10-06T20:29:50.0580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||100.80|96.29|0.00|0.27|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.0580000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +35|2023-10-06T20:29:50.1020000-07:00|4002254F||40022550|Zeromus|0000|0000|0109|||| +21|2023-10-06T20:29:50.1020000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|112E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.96|89.74|0.00|3.14|4316176|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B421|0|1| +261|2023-10-06T20:29:49.6630000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:29:49.6630000-07:00|Change|40022568||||||||| +261|2023-10-06T20:29:49.6630000-07:00|Change|40022569||||||||| +257|2023-10-06T20:29:50.1020000-07:00|80034E7C|00020001|03|00|0000| +261|2023-10-06T20:29:49.6630000-07:00|Change|40022566||||||||| +261|2023-10-06T20:29:49.6630000-07:00|Change|40022567||||||||| +261|2023-10-06T20:29:49.6630000-07:00|Change|40022564||||||||| +261|2023-10-06T20:29:49.6630000-07:00|Change|40022565||||||||| +00|2023-10-06T20:29:49.0000000-07:00|0044|Zeromus|All who oppose me shall be consigned to nothingness.| +261|2023-10-06T20:29:49.7790000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:29:50.1460000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4200|10000|||101.40|96.05|0.00|0.12| +37|2023-10-06T20:29:50.1910000-07:00|10FF0005|Wuwuchu Wuchu|0001B418|90055||||||100.82|88.27|0.00|-3.04| +20|2023-10-06T20:29:50.1910000-07:00|40022550|Zeromus|8B78|Chasmic Nails|40022550|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:50.1910000-07:00|40022564|Zeromus|8B7A|Chasmic Nails|40022564|Zeromus|8.100|100.00|80.10|0.00|-1.40| +20|2023-10-06T20:29:50.1910000-07:00|40022565|Zeromus|8B28|unknown_8b28|40022565|Zeromus|2.700|100.00|80.10|0.00|-1.40| +20|2023-10-06T20:29:50.1910000-07:00|40022566|Zeromus|8B7C|Chasmic Nails|40022566|Zeromus|9.500|100.00|80.10|0.00|-0.70| +20|2023-10-06T20:29:50.1910000-07:00|40022567|Zeromus|8B2A|unknown_8b2a|40022567|Zeromus|4.700|100.00|80.10|0.00|-0.70| +20|2023-10-06T20:29:50.1910000-07:00|40022568|Zeromus|8B7D|Chasmic Nails|40022568|Zeromus|10.200|100.00|80.10|0.00|1.40| +20|2023-10-06T20:29:50.1910000-07:00|40022569|Zeromus|8B2B|unknown_8b2b|40022569|Zeromus|5.700|100.00|80.10|0.00|1.40| +20|2023-10-06T20:29:50.1910000-07:00|4002256A|Zeromus|8B7B|Chasmic Nails|4002256A|Zeromus|8.800|100.00|80.10|0.00|0.70| +20|2023-10-06T20:29:50.1910000-07:00|4002256B|Zeromus|8B29|unknown_8b29|4002256B|Zeromus|3.700|100.00|80.10|0.00|0.70| +20|2023-10-06T20:29:50.1910000-07:00|4002256C|Zeromus|8B79|Chasmic Nails|4002256C|Zeromus|7.400|100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:50.1910000-07:00|4002256D|Zeromus|8B27|unknown_8b27|4002256D|Zeromus|1.200|100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:50.1910000-07:00|4002256E|Zeromus|8B82|Dimensional Surge|4002256E|Zeromus|8.700|80.10|100.00|0.00|1.57| +261|2023-10-06T20:29:49.8960000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:29:49.8960000-07:00|Change|40022550||||||| +261|2023-10-06T20:29:49.8960000-07:00|Change|4002256B||||||||||||| +21|2023-10-06T20:29:50.2350000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41712003|56FC0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|4316176|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||99.11|89.55|0.00|-3.14|0001B422|0|1| +21|2023-10-06T20:29:50.2350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|99A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4316176|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||99.11|89.55|0.00|-3.14|0001B423|0|1| +38|2023-10-06T20:29:50.2350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|1||99.11|89.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.2350000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:29:50.2350000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +31|2023-10-06T20:29:50.2350000-07:00|10FF0001||||| +261|2023-10-06T20:29:49.8960000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:29:49.8960000-07:00|Change|4002256C||||||||||||| +37|2023-10-06T20:29:50.3240000-07:00|10FF0007|Kehabiqo Febiqo|0001B41A|128564|128564|10000|10000|6||99.96|89.74|0.00|3.14|1500|0|0|01|04000769|0|41F00000|| +37|2023-10-06T20:29:50.3240000-07:00|40022550|Zeromus|0001B41B|4316175||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:50.3240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:29:50.4140000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.40|89.84|0.00|0.43| +37|2023-10-06T20:29:50.5020000-07:00|40022550|Zeromus|0001B41D|4316001||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:50.2230000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:29:50.2230000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:29:50.2230000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:29:50.2230000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:29:50.2230000-07:00|Change|40022564||||||||||||| +261|2023-10-06T20:29:50.2230000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:29:50.2230000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:29:50.2230000-07:00|Change|40022568||||||||||||| +37|2023-10-06T20:29:50.5910000-07:00|40022550|Zeromus|0001B420|4311149||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:50.6360000-07:00|40022550|Zeromus|0001B41F|4290673||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:50.6360000-07:00|10FF0002|Suchichi Suchi|HoT|0|17CA|90128|90128|10000|10000|||100.38|89.68|0.00|2.03|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.27|0.00|-0.01| +38|2023-10-06T20:29:50.6360000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.38|89.68|0.00|2.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:50.6810000-07:00|40022550|Zeromus|0001B41E|4271997||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:50.6810000-07:00|10FF0008|Kokosaze Lulusaze|0001B41E|79111|79111|9600|10000|0||100.91|96.57|0.00|-3.09|1B00|0|0|01|05000B25|0|0|| +24|2023-10-06T20:29:50.6810000-07:00|10FF0003|Gegehi Gehi|HoT|0|2613|73085|73085|5950|10000|||106.36|93.65|0.00|0.55|10FF0003|Gegehi Gehi|0|73085|73085|5950|10000|||106.36|93.65|0.00|0.55| +38|2023-10-06T20:29:50.6810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||100.91|96.57|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:50.6810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5950|10000|0||106.36|93.65|0.00|0.55|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:50.7260000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|452003|28F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4271997|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||100.91|96.57|0.00|-3.09|0001B424|0|1| +38|2023-10-06T20:29:50.7260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||100.91|96.57|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:50.7260000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:29:50.7710000-07:00|40022550|Zeromus|0001B423|4269539||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:50.7710000-07:00|10FF0001|Sesuga Sapisuga|0001B423|127791|127791|5800|10000|1||99.70|91.00|0.00|-2.94|1300|0|0|02|0500076E|03|C1F00000|||||| +37|2023-10-06T20:29:50.8150000-07:00|40022550|Zeromus|0001B422|4247271||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:50.8150000-07:00|10FF0001|Sesuga Sapisuga|0001B422|127791|127791|5800|10000|1||99.70|91.12|0.00|-2.15|1300|0|0|02|0500076E|03|41F00000|||||| +38|2023-10-06T20:29:50.8150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|1||99.70|91.12|0.00|-2.15|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:50.8600000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1732|127791|127791|5800|10000|||99.70|91.12|0.00|-2.15|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0002|Suchichi Suchi|HoT|798|1500|90128|90128|10000|10000|||100.39|89.53|-0.01|1.51|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|15AF|128564|128564|10000|10000|||99.96|89.74|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D0F|90055|90055|10000|10000|||100.60|89.83|0.00|1.74|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CD6|127791|127791|5800|10000|||99.70|91.12|0.00|-2.15|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D3A|80739|80739|5510|10000|||100.32|93.36|0.00|2.67|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0003|Gegehi Gehi|HoT|798|D80|73085|73085|5950|10000|||106.40|93.68|0.00|0.79|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D74|79111|79111|9600|10000|||100.91|96.57|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|15C6|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +24|2023-10-06T20:29:50.8600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1864|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.56|-0.02|0.19| +38|2023-10-06T20:29:50.8600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.8600000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:29:50.8600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:50.8600000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.39|89.53|-0.01|1.51|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.8600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:50.8600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||100.91|96.57|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.8600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:29:50.8600000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5510|10000|0||100.32|93.36|0.00|2.67|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.8600000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:50.8600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:50.8600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|1||99.70|91.12|0.00|-2.15|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.8600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:50.8600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4200|10000|0||101.40|96.56|-0.02|0.19|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.8600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:50.8600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5950|10000|0||106.40|93.68|0.00|0.79|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.8600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:50.8600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.60|89.83|0.00|1.74|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:50.8600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:50.9040000-07:00|10FF0007|Kehabiqo Febiqo|0001B421|124166|128564|10000|10000|0||99.96|89.74|0.00|3.14|1500|0|0|01|0E000000|0|0|| +38|2023-10-06T20:29:50.9040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124166|128564|10000|10000|0||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:50.9040000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +24|2023-10-06T20:29:50.9490000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|2394|90055|90055|10000|10000|||100.65|90.64|0.00|1.45|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.63|0.00|1.01| +38|2023-10-06T20:29:50.9490000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.65|90.64|0.00|1.45|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:50.9940000-07:00|10FF0003|Gegehi Gehi|73085|73085|6150|10000|||106.46|93.74|0.00|0.68| +24|2023-10-06T20:29:50.9940000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1748|80739|80739|5510|10000|||100.30|93.95|-0.01|3.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||101.40|96.63|0.00|1.01| +20|2023-10-06T20:29:50.9940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|101.40|96.63|0.00|1.01| +38|2023-10-06T20:29:50.9940000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5510|10000|0||100.30|93.95|-0.01|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:50.6080000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:29:50.6080000-07:00|Change|10FF0008||||||||||| +23|2023-10-06T20:29:51.0830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +37|2023-10-06T20:29:51.0830000-07:00|40022550|Zeromus|0001B41C|4230603||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:51.0830000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|10E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4247271|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||100.91|96.57|0.00|-3.09|0001B425|0|1| +21|2023-10-06T20:29:51.1270000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|146E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4247271|40478540|10000|10000|||100.00|80.10|0.00|0.00|124166|128564|10000|10000|||99.96|89.74|0.00|3.14|0001B426|0|1| +21|2023-10-06T20:29:51.1720000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022550|Zeromus|150003|46830000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|4230603|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|6150|10000|||106.54|93.81|0.00|0.55|0001B427|0|1| +38|2023-10-06T20:29:51.1720000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5750|10000|0||106.54|93.81|0.00|0.55|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:51.1720000-07:00|7B3|Manafication|6.89|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73085|73085| +26|2023-10-06T20:29:51.1720000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:29:50.8440000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:29:51.2600000-07:00|10FF0007|Kehabiqo Febiqo|125451|128564|10000|10000|||99.96|89.74|0.00|3.14| +21|2023-10-06T20:29:51.3500000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3A6B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|4230603|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5510|10000|||100.30|93.98|0.00|-3.12|0001B428|0|1| +39|2023-10-06T20:29:51.4390000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.44|89.52|0.00|1.45| +39|2023-10-06T20:29:51.4390000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +37|2023-10-06T20:29:51.4840000-07:00|40022550|Zeromus|0001B424|4220123||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:51.4840000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|F5A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4230603|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.56|89.48|-0.02|1.45|0001B429|0|1| +24|2023-10-06T20:29:51.5290000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2071|125451|128564|10000|10000|||99.96|89.74|0.00|3.14|10FF0006|Wowobora Gogobora|0|80739|80739|5110|10000|||100.30|93.98|0.00|-3.12| +24|2023-10-06T20:29:51.5290000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1794|79111|79111|9600|10000|||100.86|96.57|0.00|-2.63|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||103.24|94.97|-0.02|2.29| +38|2023-10-06T20:29:51.5290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:51.5290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|0||100.86|96.57|0.00|-2.63|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:51.6180000-07:00|40022550|Zeromus|0001B425|4219853||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:51.6180000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|BE800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4220123|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.96|89.74|0.00|3.14|0001B42A|0|1| +38|2023-10-06T20:29:51.6180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:51.6180000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:29:51.6620000-07:00|40022550|Zeromus|0001B426|4214623||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:51.6620000-07:00|4002256D|Zeromus|8B27|unknown_8b27|4002256D|Zeromus|1B|8B278000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.00|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B42B|0|1| +261|2023-10-06T20:29:51.2590000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:29:51.3490000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:51.3490000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:29:51.7960000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C726003|4A290000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|4214623|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.52|88.57|-0.02|1.81|0001B42C|0|1| +38|2023-10-06T20:29:51.7960000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.52|88.57|-0.02|1.81|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:51.7960000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:51.4440000-07:00|Change|10FF0004||||||||| +38|2023-10-06T20:29:51.9290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:51.9290000-07:00|752|Angel's Whisper|0.00|40022CFF|Seraph|10FF0007|Kehabiqo Febiqo|00|128564|| +261|2023-10-06T20:29:51.5400000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:29:52.0180000-07:00|40022550|Zeromus|0001B429|4210693||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:52.0180000-07:00|10FF0002|Suchichi Suchi|0001B429|90128|90128|10000|10000|0||103.30|88.11|0.00|-2.79|1600|0|0|01|04000AA0|0|C1F00000|| +24|2023-10-06T20:29:52.0180000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|22D4|128564|128564|10000|10000|||99.96|89.74|0.00|3.14|10FF0006|Wowobora Gogobora|1|80739|80739|5110|10000|||100.30|93.98|0.00|-3.12| +37|2023-10-06T20:29:52.0180000-07:00|40022550|Zeromus|0001B428|4195738||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:52.0180000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6000|10000|||105.01|90.97|0.00|-3.01| +38|2023-10-06T20:29:52.0180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:52.0630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.55|92.44|0.00|1.43|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:52.0630000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:29:52.0630000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||106.55|92.44|0.00|1.43|90055|90055|10000|10000|||106.55|92.44|0.00|1.43|0001B42D|0|1| +38|2023-10-06T20:29:52.0630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6000|10000|1||105.01|90.97|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.0630000-07:00|752|Angel's Whisper|0.00|40022CFF|Seraph|10FF0001|Sesuga Sapisuga|00|127791|| +261|2023-10-06T20:29:51.8420000-07:00|Change|10FF0006||||||||||||||||| +24|2023-10-06T20:29:52.1960000-07:00|40022550|Zeromus|DoT|0|29EB|4195738|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|4195738|40478540|10000|10000|||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:52.1960000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|105.82|91.52|0.00|2.58| +38|2023-10-06T20:29:52.1960000-07:00|40022550|Zeromus|005A5A00|4185007|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:52.1960000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5110|10000|0||100.30|93.98|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.1960000-07:00|752|Angel's Whisper|0.00|40022CFF|Seraph|10FF0006|Wowobora Gogobora|00|80739|| +38|2023-10-06T20:29:52.3290000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.46|88.01|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.3290000-07:00|752|Angel's Whisper|0.00|40022CFF|Seraph|10FF0002|Suchichi Suchi|00|90128|| +261|2023-10-06T20:29:51.9620000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:29:52.4190000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.66|92.30|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.4190000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +38|2023-10-06T20:29:52.4630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4200|10000|0||105.78|91.39|0.00|2.96|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.4630000-07:00|752|Angel's Whisper|0.00|40022CFF|Seraph|10FF0004|Buhojaqe Zijaqe|00|80739|| +39|2023-10-06T20:29:52.5080000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5315|10000|||100.30|93.98|0.00|-3.12| +21|2023-10-06T20:29:52.5080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|EB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4185007|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6000|10000|||105.35|90.93|0.00|-3.01|0001B42E|0|1| +31|2023-10-06T20:29:52.5080000-07:00|10FF0001||||| +04|2023-10-06T20:29:52.0770000-07:00|40022DC9|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|75851|0|10000|||100.68|90.30|0.00|3.04| +261|2023-10-06T20:29:52.0770000-07:00|Remove|40022DC9| +37|2023-10-06T20:29:52.5530000-07:00|40022550|Zeromus|0001B42A|4136239||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:52.5530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4200|10000|0||105.73|91.33|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.5530000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0004|Buhojaqe Zijaqe|00|80739|90055| +38|2023-10-06T20:29:52.5530000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0|||||||||| +30|2023-10-06T20:29:52.5530000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|40022DBB|Ruby Carbuncle|00|77430|90055| +37|2023-10-06T20:29:52.5970000-07:00|40022550|Zeromus|0001B427|4118188||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:52.5970000-07:00|10FF0003|Gegehi Gehi|0001B427|73085|73085|5750|10000|0||106.92|92.08|0.00|-2.01|2300|0|0|01|040004D2|0|41F00000|| +21|2023-10-06T20:29:52.5970000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|456003|76F40000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|4185007|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||94.98|96.93|0.00|-1.51|0001B42F|0|1| +38|2023-10-06T20:29:52.5970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|0||94.98|96.93|0.00|-1.51|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:52.5970000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:52.5970000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5750|10000|0||106.92|92.08|0.00|-2.01|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:52.5970000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.63|92.26|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.5970000-07:00|752|Angel's Whisper|0.00|40022CFF|Seraph|10FF0005|Wuwuchu Wuchu|00|90055|| +21|2023-10-06T20:29:52.6400000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|736003|4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4118188|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5315|10000|||100.30|93.98|0.00|-3.12|0001B430|0|1| +38|2023-10-06T20:29:52.6860000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5315|10000|0||100.30|93.98|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.6860000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0006|Wowobora Gogobora|00|80739|90055| +21|2023-10-06T20:29:52.7310000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|3E560000|200004|3D8D8000|0|0|0|0|0|0|0|0|0|0|0|0|4118188|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6000|10000|||105.35|90.93|0.00|-2.68|0001B431|0|1| +38|2023-10-06T20:29:52.7310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|0||94.40|97.04|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.7310000-07:00|752|Angel's Whisper|0.00|40022CFF|Seraph|10FF0008|Kokosaze Lulusaze|00|79111|| +38|2023-10-06T20:29:52.7310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5000|10000|1||105.35|90.93|0.00|-2.68|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.7310000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:29:52.2740000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:29:52.8190000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||106.60|92.21|0.00|2.16|90055|90055|10000|10000|||106.60|92.21|0.00|2.16|0001B432|0|1| +38|2023-10-06T20:29:52.8190000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.59|87.94|0.00|-2.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.8190000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0002|Suchichi Suchi|00|90128|90055| +38|2023-10-06T20:29:52.8190000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.60|92.21|0.00|2.16|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:52.8190000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:29:52.8640000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||106.58|92.19|0.00|2.74| +20|2023-10-06T20:29:52.8640000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|100.29|93.95|0.00|-3.01| +38|2023-10-06T20:29:52.8640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5750|10000|0||106.34|89.99|0.00|-1.88|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.8640000-07:00|752|Angel's Whisper|0.00|40022CFF|Seraph|10FF0003|Gegehi Gehi|00|73085|| +261|2023-10-06T20:29:52.4580000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T20:29:52.9530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|0||93.27|97.50|-0.02|-2.17|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:52.9530000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0008|Kokosaze Lulusaze|00|79111|90055| +38|2023-10-06T20:29:52.9530000-07:00|40022DD3|Carbuncle|005A5A00|72376|75851|10000|10000|0||98.86|95.28|0.00|-1.80|0|0|0|||||||||| +26|2023-10-06T20:29:52.9530000-07:00|30|Well Fed|1866.51|10FF0008|Kokosaze Lulusaze|40022DD3|Carbuncle|2964|75851|79111| +26|2023-10-06T20:29:52.9530000-07:00|511|Embolden|13.63|10FF0003|Gegehi Gehi|40022DD3|Carbuncle|00|75851|73085| +26|2023-10-06T20:29:52.9530000-07:00|A8F|Searing Light|5.53|10FF0008|Kokosaze Lulusaze|40022DD3|Carbuncle|00|75851|79111| +37|2023-10-06T20:29:53.0430000-07:00|40022550|Zeromus|0001B42E|4114423||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:53.0430000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9500|10000|||93.13|97.58|0.00|-1.92| +38|2023-10-06T20:29:53.0870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5000|10000|1||105.35|90.93|0.00|-2.68|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:53.0870000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0001|Sesuga Sapisuga|00|127791|90055| +39|2023-10-06T20:29:53.1310000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4400|10000|||105.67|91.23|0.00|-2.67| +21|2023-10-06T20:29:53.1310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|752003|57D20000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4114423|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4200|10000|||105.67|91.23|0.00|-2.67|0001B433|0|1| +37|2023-10-06T20:29:53.1770000-07:00|40022550|Zeromus|0001B430|4114345||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:53.1770000-07:00|40022565|Zeromus|8B28|unknown_8b28|40022565|Zeromus|1B|8B288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-1.40|44|44|0|10000|||100.00|80.10|0.00|-1.40|0001B434|0|1| +38|2023-10-06T20:29:53.1770000-07:00|40022550|Zeromus|005A5A00|4114345|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:53.1770000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +261|2023-10-06T20:29:52.7820000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:29:52.7820000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:29:53.2210000-07:00|40022550|Zeromus|0001B42F|4083893||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:53.2210000-07:00|10FF0008|Kokosaze Lulusaze|0001B42F|79111|79111|9500|10000|0||92.91|97.71|0.00|-1.53|1B00|0|0|01|05000B25|0|0|| +37|2023-10-06T20:29:53.2210000-07:00|10FF0005|Wuwuchu Wuchu|0001B42D|90055|90055|10000|10000|0||106.72|91.80|-0.02|2.77|2700|0|0|01|060004E2|0|C1200000|| +38|2023-10-06T20:29:53.2210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||92.91|97.71|0.00|-1.53|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:53.2210000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5750|10000|0||106.66|88.39|0.00|-1.91|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:53.2210000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0003|Gegehi Gehi|00|73085|90055| +21|2023-10-06T20:29:53.2660000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4114423|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5750|10000|||106.66|88.39|0.00|-1.91|0001B435|0|1| +21|2023-10-06T20:29:53.2660000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|F290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4114423|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||106.72|91.80|-0.02|2.77|0001B436|0|1| +21|2023-10-06T20:29:53.3100000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|1A540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4083893|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||92.81|97.78|-0.02|-1.34|0001B437|0|1| +38|2023-10-06T20:29:53.3100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||92.81|97.78|-0.02|-1.34|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:53.3100000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:29:53.3550000-07:00|10FF0005|Wuwuchu Wuchu|0001B432|90055|90055|10000|10000|0||106.73|91.29|0.00|2.98|2700|0|0|01|060004E2|0|41200000|| +38|2023-10-06T20:29:53.3550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.96|89.74|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.3550000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:53.3550000-07:00|A27|Arcane Circle|0.00|10FF0005|Wuwuchu Wuchu|10FF0007|Kehabiqo Febiqo|00|128564|90055| +38|2023-10-06T20:29:53.3550000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.73|91.29|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:52.8970000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:29:53.0160000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:29:53.4440000-07:00|40022550|Zeromus|0001B42C|4064908||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:53.4440000-07:00|10FF0002|Suchichi Suchi|0001B42C|90128|90128|10000|10000|0||103.59|87.94|0.00|-2.74|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:29:53.4440000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.59|87.94|0.00|-2.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:53.4880000-07:00|40022550|Zeromus|0001B431|4048950||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:53.1290000-07:00|Change|40022DD3||||||||| +21|2023-10-06T20:29:53.5780000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022550|Zeromus|750003|50260000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|4048950|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5750|10000|||106.74|87.91|-0.02|-1.97|0001B438|0|1| +21|2023-10-06T20:29:53.5780000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|712003|78560000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|4048950|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||106.75|90.12|0.00|-2.77|0001B439|0|1| +38|2023-10-06T20:29:53.5780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|0||106.74|87.91|-0.02|-1.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.5780000-07:00|7B3|Manafication|4.48|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73085|73085| +38|2023-10-06T20:29:53.5780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.75|90.12|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.5780000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:29:53.6670000-07:00|10FF0002|Suchichi Suchi|HoT|0|1709|90128|90128|10000|10000|||103.59|87.94|0.00|-2.74|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +38|2023-10-06T20:29:53.6670000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.59|87.94|0.00|-2.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:53.7110000-07:00|10FF0003|Gegehi Gehi|HoT|0|ED8|73085|73085|5750|10000|||106.74|87.91|-0.02|-1.97|10FF0003|Gegehi Gehi|0|73085|73085|5750|10000|||106.74|87.91|-0.02|-1.97| +38|2023-10-06T20:29:53.7110000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|0||106.74|87.91|-0.02|-1.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:53.7990000-07:00|40022550|Zeromus|0001B435|4048949||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:53.7990000-07:00|40022550|Zeromus|0001B436|4045068||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:53.7990000-07:00|10FF0005|Wuwuchu Wuchu|0001B436|90055|90055|10000|10000|0||106.76|89.71|0.00|-2.53|2700|0|0|01|08000A1F|0|C1F00000|| +21|2023-10-06T20:29:53.7990000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|612A0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|4048950|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5315|10000|||100.24|93.74|0.00|-3.12|0001B43A|0|1| +261|2023-10-06T20:29:53.5140000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T20:29:53.8880000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|DB7|127791|127791|5000|10000|||105.11|88.80|0.00|-2.75|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +24|2023-10-06T20:29:53.8880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|153C|128564|128564|10000|10000|||99.88|89.66|0.00|-2.46|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +24|2023-10-06T20:29:53.8880000-07:00|10FF0002|Suchichi Suchi|HoT|798|14D1|90128|90128|10000|10000|||103.59|87.94|0.00|-2.74|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +24|2023-10-06T20:29:53.8880000-07:00|10FF0003|Gegehi Gehi|HoT|798|14DB|73085|73085|5350|10000|||106.74|87.91|0.00|-2.43|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +24|2023-10-06T20:29:53.8880000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D20|90055|90055|10000|10000|||106.34|89.32|0.00|-2.52|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +24|2023-10-06T20:29:53.8880000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|14EF|127791|127791|5000|10000|||105.11|88.80|0.00|-2.75|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +24|2023-10-06T20:29:53.8880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D3E|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +24|2023-10-06T20:29:53.8880000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D6C|80739|80739|4915|10000|||100.24|93.74|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +24|2023-10-06T20:29:53.8880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|E60|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +38|2023-10-06T20:29:53.8880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||99.88|89.66|0.00|-2.46|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:53.8880000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.59|87.94|0.00|-2.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:53.8880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4915|10000|0||100.24|93.74|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.8880000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:53.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:53.8880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5000|10000|1||105.11|88.80|0.00|-2.75|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.8880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:53.8880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4000|10000|0||105.67|91.23|0.00|-2.67|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.8880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:53.8880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|0||106.74|87.91|0.00|-2.43|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.8880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:53.8880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.34|89.32|0.00|-2.52|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:53.8880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:29:53.9330000-07:00|40022550|Zeromus|0001B433|4022586||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:29:53.9760000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|16F5|90055|90055|10000|10000|||106.34|89.32|0.00|-2.52|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +38|2023-10-06T20:29:53.9760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5000|10000|1||105.11|88.80|0.00|-2.75|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:53.9760000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:29:53.9760000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.34|89.32|0.00|-2.52|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:54.0210000-07:00|10FF0003|Gegehi Gehi|73085|73085|5550|10000|||106.74|87.91|0.00|-2.43| +24|2023-10-06T20:29:54.0210000-07:00|10FF0006|Wowobora Gogobora|HoT|0|E96|80739|80739|4915|10000|||100.22|93.74|0.00|-2.50|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.67|91.23|0.00|-2.67| +38|2023-10-06T20:29:54.0210000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4915|10000|0||100.22|93.74|0.00|-2.50|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:54.0650000-07:00|40022550|Zeromus|0001B437|4015846||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:54.1100000-07:00|40022550|Zeromus|0001B439|3985040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:54.1100000-07:00|10FF0005|Wuwuchu Wuchu|0001B439|90055|90055|10000|10000|0||106.28|88.91|0.00|-2.50|2700|0|0|01|08000A1F|0|41F00000|| +21|2023-10-06T20:29:54.1100000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F712003|56E90000|143E|340000|200004|26698000|11B|2A8000|0|0|0|0|0|0|0|0|4022586|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.97|88.72|0.00|-2.39|0001B43B|0|1| +38|2023-10-06T20:29:54.1100000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.28|88.91|0.00|-2.50|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:54.1540000-07:00|4002256B|Zeromus|8B29|unknown_8b29|4002256B|Zeromus|1B|8B298000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.70|44|44|0|10000|||100.00|80.10|0.00|0.70|0001B43C|0|1| +261|2023-10-06T20:29:53.7180000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:29:53.7180000-07:00|Change|40022562||||||||| +261|2023-10-06T20:29:53.7180000-07:00|Change|40022563||||||||| +261|2023-10-06T20:29:53.7180000-07:00|Change|40022560||||||||| +261|2023-10-06T20:29:53.7180000-07:00|Change|4002255E||||||||| +261|2023-10-06T20:29:53.7180000-07:00|Change|4002255F||||||||| +261|2023-10-06T20:29:53.7180000-07:00|Change|40022561||||||||| +261|2023-10-06T20:29:53.7180000-07:00|Change|4002255D||||||||| +261|2023-10-06T20:29:53.7180000-07:00|Change|4002256B||||||||||| +261|2023-10-06T20:29:53.8320000-07:00|Change|10FF0006||||||||||||||||||||||| +20|2023-10-06T20:29:54.1990000-07:00|4002255D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.28|102.98|0.00|0.00| +20|2023-10-06T20:29:54.1990000-07:00|4002255E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.83|105.27|0.00|0.00| +20|2023-10-06T20:29:54.1990000-07:00|4002255F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|98.22|87.32|0.00|0.00| +20|2023-10-06T20:29:54.1990000-07:00|40022560|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.33|109.77|0.00|0.00| +20|2023-10-06T20:29:54.1990000-07:00|40022561|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.21|108.42|0.00|0.00| +20|2023-10-06T20:29:54.1990000-07:00|40022562|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.15|91.11|0.00|0.00| +20|2023-10-06T20:29:54.1990000-07:00|40022563|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.59|91.94|0.00|0.00| +20|2023-10-06T20:29:54.1990000-07:00|4002256D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.18|86.78|0.00|0.00| +21|2023-10-06T20:29:54.1990000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3985040|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4000|10000|||105.68|91.23|0.00|-3.10|0001B43D|0|1| +39|2023-10-06T20:29:54.2430000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||98.41|88.15|0.00|2.91| +21|2023-10-06T20:29:54.2880000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|2AE30000|7B9C0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|3985040|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.59|87.94|0.00|-2.74|0001B43E|0|1| +21|2023-10-06T20:29:54.2880000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|EFE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3985040|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.59|87.94|0.00|-2.74|0001B43F|0|1| +38|2023-10-06T20:29:54.2880000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.59|87.94|0.00|-2.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:54.2880000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:53.9510000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T20:29:54.4210000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +261|2023-10-06T20:29:54.0680000-07:00|Change|10FF0008||||||||| +24|2023-10-06T20:29:54.4660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|2262|128564|128564|10000|10000|||97.18|88.47|0.00|-3.04|10FF0006|Wowobora Gogobora|1|80739|80739|4915|10000|||98.82|93.51|0.00|-1.90| +37|2023-10-06T20:29:54.4660000-07:00|40022550|Zeromus|0001B43A|3960166||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:54.4660000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||103.59|87.94|0.00|-2.71| +38|2023-10-06T20:29:54.4660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||97.18|88.47|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:29:54.5110000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|CA60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3985040|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||97.18|88.47|0.00|-3.04|0001B440|0|1| +261|2023-10-06T20:29:54.1680000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:29:54.1680000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:29:54.1680000-07:00|Change|40022563||||||||||| +261|2023-10-06T20:29:54.1680000-07:00|Change|4002256D||||||||||| +261|2023-10-06T20:29:54.1680000-07:00|Change|40022560||||||||||| +261|2023-10-06T20:29:54.1680000-07:00|Change|4002255F||||||||||| +24|2023-10-06T20:29:54.5550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|15FF|128564|128564|10000|10000|||96.50|88.74|0.00|-2.84|10FF0006|Wowobora Gogobora|0|80739|80739|4915|10000|||97.98|93.37|0.00|-1.81| +24|2023-10-06T20:29:54.5550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|ED7|79111|79111|9500|10000|||90.91|102.86|0.00|-0.30|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4000|10000|||105.72|91.20|0.00|2.43| +38|2023-10-06T20:29:54.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||96.50|88.74|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:54.5550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||90.91|102.86|0.00|-0.30|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T20:29:54.5990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|105.72|91.20|0.00|2.43| +37|2023-10-06T20:29:54.7330000-07:00|40022550|Zeromus|0001B43E|3949187|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000A9F|0|41C00000|| +26|2023-10-06T20:29:54.7330000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:29:54.7330000-07:00|10FF0002|Suchichi Suchi|0001B43E|90128|90128|10000|10000|0||103.59|87.94|0.00|-2.71|1600|0|0|01|02000323|0|41F00000|| +37|2023-10-06T20:29:54.7330000-07:00|40022550|Zeromus|0001B43D|3949022||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:54.7330000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||103.59|87.94|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:54.7780000-07:00|40022DD3|Carbuncle|75851|75851|10000|10000|||91.17|98.05|0.00|-0.63| +21|2023-10-06T20:29:54.7780000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|73B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3960166|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5000|10000|||104.19|86.72|0.00|-2.46|0001B441|0|1| +31|2023-10-06T20:29:54.7780000-07:00|10FF0001||||| +261|2023-10-06T20:29:54.2700000-07:00|Change|40022DD3||||||||| +37|2023-10-06T20:29:54.8220000-07:00|40022550|Zeromus|0001B43F|3945184||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:54.8660000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|720003|35D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3949022|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||103.59|87.94|0.00|-2.71|0001B442|0|1| +261|2023-10-06T20:29:54.4680000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:29:54.4680000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:29:55.0000000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5200|10000|||104.19|86.72|0.00|-2.46| +261|2023-10-06T20:29:54.5580000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:29:55.0450000-07:00|40022550|Zeromus|0001B440|3941946||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:55.0450000-07:00|10FF0008|Kokosaze Lulusaze|64F0|Summon Garuda II|40022550|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|3945184|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||90.39|103.78|0.00|0.14|0001B443|0|1| +21|2023-10-06T20:29:55.0450000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|53980000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|3945184|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||106.52|88.61|0.00|-2.48|0001B444|0|1| +38|2023-10-06T20:29:55.0450000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||90.39|103.78|0.00|0.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:55.0450000-07:00|AA5|Garuda's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:55.0450000-07:00|40022DD3|Carbuncle|005A5A00|0|75851|0|10000|0||90.49|99.66|0.00|-0.37|0|0|0|||| +30|2023-10-06T20:29:55.0450000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022DD3|Carbuncle|00|75851|73085| +30|2023-10-06T20:29:55.0450000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022DD3|Carbuncle|00|75851|79111| +38|2023-10-06T20:29:55.0450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||106.52|88.61|0.00|-2.48|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:55.0450000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:55.0450000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +38|2023-10-06T20:29:55.0890000-07:00|40022DDB||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T20:29:55.0890000-07:00|40022DDB||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T20:29:55.1330000-07:00|40022550|Zeromus|005A5A00|3941946|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:55.1330000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +24|2023-10-06T20:29:55.1780000-07:00|40022550|Zeromus|DoT|0|31D7|3941946|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|3941946|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:55.1780000-07:00|40022567|Zeromus|8B2A|unknown_8b2a|40022567|Zeromus|1B|8B2A8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-0.70|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001B445|0|1| +38|2023-10-06T20:29:55.1780000-07:00|40022550|Zeromus|005A5A00|3929187|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:29:54.6690000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:29:54.6690000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:29:54.6690000-07:00|Change|40022561||||||||||| +261|2023-10-06T20:29:54.6690000-07:00|Change|4002255D||||||||||| +21|2023-10-06T20:29:55.2230000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|29A10000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|3941946|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5200|10000|||104.19|86.72|0.00|-2.58|0001B446|0|1| +38|2023-10-06T20:29:55.2230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5200|10000|1||104.19|86.72|0.00|-2.58|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:55.2230000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +03|2023-10-06T20:29:54.7880000-07:00|40022DDB|Emerald Garuda|00|5A|10FF0008|00||10263|13506|72376|75851|10000|10000|||91.50|106.76|0.00|2.77| +261|2023-10-06T20:29:54.7880000-07:00|Add|40022DDB||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:55.3110000-07:00|40022550|Zeromus|0001B441|3927336||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:29:55.3110000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|95.14|93.41|0.00|-1.09| +261|2023-10-06T20:29:54.9060000-07:00|Change|40022DDB||||| +37|2023-10-06T20:29:55.4000000-07:00|40022550|Zeromus|0001B438|3906818||||||100.00|80.10|0.00|0.00| +23|2023-10-06T20:29:55.4880000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +39|2023-10-06T20:29:55.4880000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5120|10000|||94.93|93.45|0.00|-1.82| +37|2023-10-06T20:29:55.6220000-07:00|40022550|Zeromus|0001B43B|3884569||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:55.6220000-07:00|40022550|Zeromus|0001B442|3870793||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:55.6670000-07:00|40022550|Zeromus|0001B444|3849393||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:55.6670000-07:00|10FF0005|Wuwuchu Wuchu|0001B444|90055|90055|10000|10000|0||105.85|87.53|0.00|-2.53|2700|0|0|01|08000A1E|0|41F00000|| +38|2023-10-06T20:29:55.6670000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||105.85|87.53|0.00|-2.53|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:55.2380000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:29:55.7550000-07:00|10FF0008|Kokosaze Lulusaze|03|Sprint|10FF0008|Kokosaze Lulusaze|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||89.72|104.93|0.00|-2.99|79111|79111|9500|10000|||89.72|104.93|0.00|-2.99|0001B447|0|1| +38|2023-10-06T20:29:55.7550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||94.23|91.27|0.00|-0.85|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:55.7550000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:55.7550000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:29:55.3360000-07:00|Change|40022DD3||||||||| +37|2023-10-06T20:29:55.8890000-07:00|10FF0008|Kokosaze Lulusaze|0001B447|79111|79111|9500|10000|0||88.55|105.86|0.00|-0.34|1B00|0|0|01|06000032|1E|41200000|| +26|2023-10-06T20:29:55.8890000-07:00|32|Sprint|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|79111|79111| +39|2023-10-06T20:29:55.8890000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||105.19|86.32|0.00|-2.54| +38|2023-10-06T20:29:55.8890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||88.55|105.86|0.00|-0.34|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:55.8890000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:29:55.4340000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:29:55.6280000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:29:55.6280000-07:00|Change|10FF0001||||||||| +39|2023-10-06T20:29:56.0230000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9700|10000|||88.28|107.03|0.00|-0.34| +21|2023-10-06T20:29:56.0230000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022550|Zeromus|754003|701A0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|3849393|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5550|10000|||109.36|88.50|0.00|1.43|0001B448|0|1| +38|2023-10-06T20:29:56.0230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|0||109.36|88.50|0.00|1.43|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:56.0230000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73085|73085| +261|2023-10-06T20:29:55.6280000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:29:56.0670000-07:00|10FF0008|Kokosaze Lulusaze|0001B443|79111|79111|9700|10000|0||88.28|107.03|0.00|-0.34|1B00|0|0|01|05000AA5|0|0|| +38|2023-10-06T20:29:56.0670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|0||88.28|107.03|0.00|-0.34|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:55.7380000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:29:55.7380000-07:00|Change|40022DDB||| +39|2023-10-06T20:29:56.1540000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4200|10000|||110.23|90.98|0.00|1.78| +21|2023-10-06T20:29:56.1540000-07:00|40022569|Zeromus|8B2B|unknown_8b2b|40022569|Zeromus|1B|8B2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|1.40|44|44|0|10000|||100.00|80.10|0.00|1.40|0001B449|0|1| +21|2023-10-06T20:29:56.2430000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|3C730000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|3849393|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5120|10000|||94.68|93.52|0.00|2.77|0001B44A|0|1| +261|2023-10-06T20:29:55.7380000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:29:55.9690000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:29:56.4660000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|712003|17460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3849393|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||104.00|84.44|0.00|-2.59|0001B44B|0|1| +37|2023-10-06T20:29:56.5550000-07:00|40022550|Zeromus|0001B446|3838736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:56.5550000-07:00|10FF0001|Sesuga Sapisuga|0001B446|127791|127791|5600|10000|1||102.08|81.86|0.00|-2.63|1300|0|0|0| +21|2023-10-06T20:29:56.5550000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|18F30000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|3849393|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||93.49|92.77|0.00|-0.43|0001B44C|0|1| +24|2023-10-06T20:29:56.6440000-07:00|10FF0002|Suchichi Suchi|HoT|0|D99|90128|90128|10000|10000|||102.12|83.02|0.00|-2.75|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.84|90.70|0.00|2.95| +38|2023-10-06T20:29:56.6440000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.12|83.02|0.00|-2.75|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T20:29:56.6890000-07:00|10FF0003|Gegehi Gehi|HoT|0|E45|73085|73085|5150|10000|||109.95|88.56|0.00|-2.09|10FF0003|Gegehi Gehi|0|73085|73085|5150|10000|||109.95|88.56|0.00|-2.09| +21|2023-10-06T20:29:56.6890000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|500E0000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|3838736|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||103.47|83.79|0.00|-2.59|0001B44D|0|1| +38|2023-10-06T20:29:56.6890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|0||109.95|88.56|0.00|-2.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:56.6890000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||103.47|83.79|0.00|-2.59|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:56.6890000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:56.6890000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:29:56.2720000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:29:56.7340000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3838736|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|5150|10000|||109.95|88.56|0.00|-2.09|0001B44E|0|1| +21|2023-10-06T20:29:56.7780000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D722003|49880000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|3838736|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.10|82.77|0.00|-2.74|0001B44F|0|1| +38|2023-10-06T20:29:56.7780000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.10|82.77|0.00|-2.74|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:56.7780000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:29:56.7780000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:29:56.8680000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|16C3|127791|127791|5600|10000|||102.03|81.77|0.00|-2.63|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +24|2023-10-06T20:29:56.8680000-07:00|10FF0002|Suchichi Suchi|HoT|798|D09|90128|90128|10000|10000|||102.07|82.64|0.00|-2.40|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +24|2023-10-06T20:29:56.8680000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1553|127791|127791|5600|10000|||102.03|81.77|0.00|-2.63|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +24|2023-10-06T20:29:56.8680000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D17|90055|90055|10000|10000|||103.34|83.69|-0.02|-2.41|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +24|2023-10-06T20:29:56.8680000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1558|128564|128564|10000|10000|||93.46|92.83|0.00|2.67|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +24|2023-10-06T20:29:56.8680000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CDE|80739|80739|4720|10000|||94.68|93.52|0.00|2.77|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +24|2023-10-06T20:29:56.8680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|155B|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +24|2023-10-06T20:29:56.8680000-07:00|10FF0003|Gegehi Gehi|HoT|798|CDF|73085|73085|5150|10000|||110.00|88.74|0.00|-1.80|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +24|2023-10-06T20:29:56.8680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|178F|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.67|90.48|-0.02|-2.94| +38|2023-10-06T20:29:56.8680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||93.46|92.83|0.00|2.67|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:56.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:29:56.8680000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.07|82.64|0.00|-2.40|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:56.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:29:56.8680000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4720|10000|0||94.68|93.52|0.00|2.77|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:56.8680000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:29:56.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:56.8680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|1||102.03|81.77|0.00|-2.63|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:56.8680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:29:56.8680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4200|10000|0||109.67|90.48|-0.02|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:56.8680000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:56.8680000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5150|10000|0||110.00|88.74|0.00|-1.80|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:56.8680000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:29:56.8680000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||103.34|83.69|-0.02|-2.41|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:56.8680000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:29:56.9120000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1538|128564|128564|10000|10000|||93.46|92.83|0.00|2.67|10FF0006|Wowobora Gogobora|0|80739|80739|4720|10000|||94.68|93.52|0.00|2.77| +37|2023-10-06T20:29:56.9120000-07:00|40022550|Zeromus|0001B44A|3823261||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:56.9120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||93.46|92.83|0.00|2.67|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:56.4720000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T20:29:56.9570000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1726|90055|90055|10000|10000|||103.30|83.65|0.00|-2.45|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.63|90.39|0.00|-2.87| +21|2023-10-06T20:29:56.9570000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|750003|27B70000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|3823261|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4200|10000|||109.63|90.39|0.00|-2.87|0001B450|0|1| +38|2023-10-06T20:29:56.9570000-07:00|40022550|Zeromus|005A5A00|3823261|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:56.9570000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +38|2023-10-06T20:29:56.9570000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||103.30|83.65|0.00|-2.45|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:57.0020000-07:00|40022550|Zeromus|0001B44B|3817303||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:57.0020000-07:00|10FF0005|Wuwuchu Wuchu|0001B44B|90055|90055|10000|10000|0||103.30|83.65|0.00|-2.45|2700|0|0|01|08000A1F|0|C1F00000|| +39|2023-10-06T20:29:57.0020000-07:00|10FF0003|Gegehi Gehi|73085|73085|5350|10000|||110.02|88.93|0.00|-1.67| +24|2023-10-06T20:29:57.0020000-07:00|10FF0006|Wowobora Gogobora|HoT|0|176D|80739|80739|4720|10000|||94.68|93.52|0.00|2.77|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4200|10000|||109.63|90.39|0.00|-2.87| +38|2023-10-06T20:29:57.0020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4720|10000|0||94.68|93.52|0.00|2.77|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:56.5840000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:29:57.0470000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|BE40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3817303|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5600|10000|||102.03|81.77|0.00|-2.63|0001B451|0|1| +31|2023-10-06T20:29:57.0470000-07:00|10FF0001||||| +37|2023-10-06T20:29:57.0910000-07:00|40022550|Zeromus|0001B44C|3810916||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:56.5840000-07:00|Change|40022DD3||| +21|2023-10-06T20:29:57.0910000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|F7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3817303|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.07|82.48|0.00|-2.43|0001B452|0|1| +261|2023-10-06T20:29:56.5840000-07:00|Change|10FF0001||||||| +21|2023-10-06T20:29:57.1350000-07:00|40022DDB|Emerald Garuda|64FE|Aerial Blast|40022550|Zeromus|350003|66360000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|3810916|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||91.50|106.76|0.00|2.77|0001B453|0|1| +21|2023-10-06T20:29:57.1800000-07:00|40022550|Zeromus|8B78|Chasmic Nails|40022550|Zeromus|1B|8B788000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3810916|40478540|10000|10000|||100.00|80.10|0.00|0.00|3810916|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B454|0|1| +261|2023-10-06T20:29:56.6990000-07:00|Change|40022550||||||||||| +261|2023-10-06T20:29:56.6990000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T20:29:57.2240000-07:00|40022550|Zeromus|0001B44D|3790422||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:57.2240000-07:00|10FF0005|Wuwuchu Wuchu|0001B44D|90055|90055|10000|10000|0||103.22|83.59|0.00|-2.53|2700|0|0|01|08000A1F|0|41F00000|| +39|2023-10-06T20:29:57.2240000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||93.46|92.85|0.00|2.67| +38|2023-10-06T20:29:57.2240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||103.22|83.59|0.00|-2.53|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:57.2670000-07:00|40022550|Zeromus|0001B44E|3790421||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:29:56.8100000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:29:57.4020000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3790421|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4720|10000|||94.68|93.53|0.00|2.30|0001B455|0|1| +37|2023-10-06T20:29:57.4470000-07:00|40022550|Zeromus|0001B44F|3771597||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:57.4470000-07:00|10FF0002|Suchichi Suchi|0001B44F|90128|90128|10000|10000|0||102.07|82.31|0.00|-2.61|1600|0|0|01|03000322|0|41F00000|| +39|2023-10-06T20:29:57.4470000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||102.07|82.31|0.00|-2.61| +39|2023-10-06T20:29:57.4470000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +38|2023-10-06T20:29:57.4470000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.07|82.31|0.00|-2.61|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:57.0350000-07:00|Change|10FF0008||||||||| +21|2023-10-06T20:29:57.4910000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|30750000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|3771597|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||85.91|117.05|0.00|0.02|0001B456|0|1| +24|2023-10-06T20:29:57.5350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E66|128564|128564|10000|10000|||93.46|92.85|0.00|2.67|10FF0006|Wowobora Gogobora|0|80739|80739|4720|10000|||94.65|93.57|0.00|1.10| +24|2023-10-06T20:29:57.5350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|EE1|79111|79111|9700|10000|||85.91|117.05|0.00|0.02|10FF0006|Wowobora Gogobora|0|80739|80739|4720|10000|||94.65|93.57|0.00|1.10| +38|2023-10-06T20:29:57.5350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||93.46|92.85|0.00|2.67|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:57.5350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||85.91|117.05|0.00|0.02|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:29:57.5360000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4720|10000|0||94.65|93.57|0.00|1.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:57.5360000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:29:57.5360000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:29:57.5800000-07:00|40022550|Zeromus|0001B451|3768553||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:57.5800000-07:00|40022550|Zeromus|0001B448|3739855||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:57.6250000-07:00|40022550|Zeromus|0001B452|3735890||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:57.6700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3800|10000|0||109.48|90.14|0.00|-2.38|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:57.6700000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:29:57.6700000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:29:57.7150000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4720|10000|0||94.65|93.59|-0.02|0.77|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:57.7150000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:29:57.7150000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4720|10000|||94.65|93.59|-0.02|0.77|80739|80739|4720|10000|||94.65|93.59|-0.02|0.77|0001B457|0|1| +21|2023-10-06T20:29:57.7150000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|714003|388A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|3735890|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5600|10000|||102.03|81.77|0.00|-2.26|0001B458|0|1| +38|2023-10-06T20:29:57.7150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5600|10000|1||102.03|81.77|0.00|-2.26|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:57.7150000-07:00|76E|Sword Oath|23.06|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +38|2023-10-06T20:29:57.8030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||93.43|92.91|-0.02|1.17|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:57.8030000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:57.8030000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:29:57.8030000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:29:57.8480000-07:00|4002256C|Zeromus|8B79|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.00|0001B459|0|0| +261|2023-10-06T20:29:57.3430000-07:00|Change|4002256C||||||||||||| +37|2023-10-06T20:29:57.8930000-07:00|40022550|Zeromus|0001B450|3725723||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:57.8930000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|C010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3735890|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||93.36|93.04|0.00|0.80|0001B45A|0|1| +37|2023-10-06T20:29:57.9370000-07:00|40022550|Zeromus|0001B455|3725685||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:57.9370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|0||110.06|89.34|0.00|-1.39|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:57.9370000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:29:57.9370000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:29:57.5290000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:29:58.0260000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|5800|10000|||102.03|81.77|0.00|-2.26| +261|2023-10-06T20:29:57.6410000-07:00|Change|10FF0001||||| +38|2023-10-06T20:29:58.0710000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.07|82.17|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.0710000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:29:58.0710000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:29:58.1150000-07:00|40022550|Zeromus|0001B456|3713280||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:58.1600000-07:00|4002255D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.28|102.98|0.00|0.00|0001B45B|0|0| +21|2023-10-06T20:29:58.1600000-07:00|4002255E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.83|105.27|0.00|0.00|0001B45C|0|0| +21|2023-10-06T20:29:58.1600000-07:00|4002255F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||98.22|87.32|0.00|0.00|0001B45D|0|0| +21|2023-10-06T20:29:58.1600000-07:00|40022560|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.33|109.77|0.00|0.00|0001B45E|0|0| +21|2023-10-06T20:29:58.1600000-07:00|40022561|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.21|108.42|0.00|0.00|0001B45F|0|0| +261|2023-10-06T20:29:57.7600000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:29:57.7600000-07:00|Change|4002255D||||||||||| +21|2023-10-06T20:29:58.1600000-07:00|40022562|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.15|91.11|0.00|0.00|0001B460|0|0| +21|2023-10-06T20:29:58.1600000-07:00|40022563|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.59|91.94|0.00|0.00|0001B461|0|0| +261|2023-10-06T20:29:57.7600000-07:00|Change|4002255F||||||||||| +21|2023-10-06T20:29:58.1600000-07:00|4002256D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.18|86.78|0.00|0.00|0001B462|0|0| +24|2023-10-06T20:29:58.2040000-07:00|40022550|Zeromus|DoT|0|179D|3725685|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|3725685|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:29:58.2040000-07:00|40022550|Zeromus|005A5A00|3707235|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:29:58.2040000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||102.36|81.93|0.00|-2.54|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.2040000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:29:58.2040000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:29:57.7600000-07:00|Change|40022561||||||||||| +261|2023-10-06T20:29:57.7600000-07:00|Change|40022560||||||||||| +261|2023-10-06T20:29:57.7600000-07:00|Change|4002256D||||||||||| +261|2023-10-06T20:29:57.7600000-07:00|Change|40022563||||||||||| +261|2023-10-06T20:29:57.7600000-07:00|Change|40022562||||||||||| +21|2023-10-06T20:29:58.2480000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3707235|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|3800|10000|||109.39|89.97|0.00|-2.85|0001B463|0|1| +38|2023-10-06T20:29:58.3370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|1||102.03|81.77|0.00|-2.26|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.3370000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:29:58.3370000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +21|2023-10-06T20:29:58.3820000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|714003|66A50000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|0|0|3707235|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||102.34|81.84|-0.01|-2.53|0001B464|0|1| +38|2023-10-06T20:29:58.3820000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||102.34|81.84|-0.01|-2.53|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.3820000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:29:58.3820000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:29:58.4270000-07:00|40022550|Zeromus|0001B45A|3704162||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:58.4270000-07:00|40022550|Zeromus|0001B453|3677996||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:58.4270000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|710003|F940000|133E0E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|3707235|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||102.03|81.77|0.00|-2.26|0001B465|0|1| +261|2023-10-06T20:29:57.9970000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:29:58.4720000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|3800|10000|||109.41|89.89|0.00|2.92|80739|80739|3800|10000|||109.41|89.89|0.00|2.92|0001B466|0|1| +38|2023-10-06T20:29:58.4720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||85.83|117.72|0.00|2.78|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:29:58.4720000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:29:58.4720000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +39|2023-10-06T20:29:58.5160000-07:00|10FF0006|Wowobora Gogobora|80739|80739|4925|10000|||94.65|93.64|0.00|-0.32| +38|2023-10-06T20:29:58.5160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||93.23|93.47|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|128564|79111| +38|2023-10-06T20:29:58.5160000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||102.04|82.11|0.00|-2.73|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0002|Suchichi Suchi|00|90128|79111| +38|2023-10-06T20:29:58.5160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9400|10000|0||85.83|117.72|0.00|2.78|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:29:58.5160000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4925|10000|0||94.65|93.64|0.00|-0.32|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|80739|79111| +38|2023-10-06T20:29:58.5160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|1||102.03|81.77|0.00|-2.26|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|127791|79111| +38|2023-10-06T20:29:58.5160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3800|10000|0||109.41|89.89|0.00|2.92|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|80739|79111| +38|2023-10-06T20:29:58.5160000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|40022DBB|Ruby Carbuncle|00|77430|79111| +38|2023-10-06T20:29:58.5160000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|5350|10000|0||110.05|89.36|0.00|-1.39|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73085|79111| +38|2023-10-06T20:29:58.5160000-07:00|40022DDB|Emerald Garuda|005A5A00|0|75851|10000|10000|0||91.50|106.76|0.00|2.77|0|0|0||||||| +26|2023-10-06T20:29:58.5160000-07:00|30|Well Fed|1860.95|10FF0008|Kokosaze Lulusaze|40022DDB|Emerald Garuda|2964|75851|79111| +26|2023-10-06T20:29:58.5160000-07:00|511|Embolden|8.07|10FF0003|Gegehi Gehi|40022DDB|Emerald Garuda|00|75851|73085| +38|2023-10-06T20:29:58.5160000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||102.34|81.83|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.5160000-07:00|A8F|Searing Light|0.00|10FF0008|Kokosaze Lulusaze|10FF0005|Wuwuchu Wuchu|00|90055|79111| +261|2023-10-06T20:29:58.1190000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:29:58.5600000-07:00|40022564|Zeromus|8B7A|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.40|0001B467|0|0| +261|2023-10-06T20:29:58.2170000-07:00|Change|40022564||||||||||||| +37|2023-10-06T20:29:58.6050000-07:00|10FF0004|Buhojaqe Zijaqe|0001B466|80739|80739|3800|10000|0||109.42|89.85|0.00|-2.25|1C00|0|0|01|03000032|1E|41200000|| +26|2023-10-06T20:29:58.6050000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +261|2023-10-06T20:29:58.3160000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:29:58.7390000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|F660E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|3677996|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4925|10000|||94.70|93.66|0.00|0.38|0001B468|0|1| +38|2023-10-06T20:29:58.7390000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4525|10000|0||94.70|93.66|0.00|0.38|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.7390000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:29:58.7390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3800|10000|0||109.09|89.97|0.00|-2.06|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:29:58.7390000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:29:58.7840000-07:00|40022550|Zeromus|0001B463|3677747||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:29:58.8730000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||102.04|81.94|0.00|-2.18| +04|2023-10-06T20:29:58.4170000-07:00|40022DD3|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||89.95|101.30|0.00|-0.27| +261|2023-10-06T20:29:58.4170000-07:00|Remove|40022DCB| +261|2023-10-06T20:29:58.4170000-07:00|Remove|40022DD3| +37|2023-10-06T20:29:59.0080000-07:00|40022550|Zeromus|0001B458|3663273||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:59.0080000-07:00|10FF0001|Sesuga Sapisuga|0001B458|127791|127791|6200|10000|1||100.14|82.95|0.00|-2.70|1300|0|0|0| +37|2023-10-06T20:29:59.0080000-07:00|40022550|Zeromus|0001B464|3636996||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:59.0080000-07:00|10FF0005|Wuwuchu Wuchu|0001B464|90055|90055|10000|10000|0||100.78|82.40|0.00|-2.26|2700|0|0|01|08000A1E|0|41F00000|| +21|2023-10-06T20:29:59.0080000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|21260000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|3677747|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.81|94.78|0.00|2.97|0001B469|0|1| +38|2023-10-06T20:29:59.0080000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||100.78|82.40|0.00|-2.26|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T20:29:59.0510000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9600|10000|||85.94|117.74|0.00|1.75| +21|2023-10-06T20:29:59.0510000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|352003|3C550000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|3677747|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||85.94|117.74|0.00|1.75|0001B46A|0|1| +39|2023-10-06T20:29:59.1410000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4000|10000|||106.27|90.53|0.00|-1.50| +21|2023-10-06T20:29:59.1410000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|714003|38D10000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|3636996|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6200|10000|||100.04|82.98|0.00|-2.85|0001B46B|0|1| +257|2023-10-06T20:29:59.1410000-07:00|80034E7C|00200004|03|00|0000| +261|2023-10-06T20:29:58.7100000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:29:58.7100000-07:00|Change|10FF0004||||||||||| +22|2023-10-06T20:29:59.1850000-07:00|4002256E|Zeromus|8B82|Dimensional Surge|10FF0006|Wowobora Gogobora|750003|C30D0000|100140E|6FD0000|1B|8B828000|0|0|0|0|0|0|0|0|0|0|80739|80739|4525|10000|||95.58|94.22|0.00|1.38|44|44|0|10000|||80.10|100.00|0.00|1.57|0001B46C|0|2| +22|2023-10-06T20:29:59.1850000-07:00|4002256E|Zeromus|8B82|Dimensional Surge|10FF0007|Kehabiqo Febiqo|750003|790B0000|100140E|6FD0000|1B|8B828000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||97.66|94.98|-0.01|3.05|44|44|0|10000|||80.10|100.00|0.00|1.57|0001B46C|1|2| +261|2023-10-06T20:29:58.7100000-07:00|Change|4002256E||||||||||||| +21|2023-10-06T20:29:59.2750000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A722003|5C0F0000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|3636996|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.61|82.60|0.00|-0.90|0001B46D|0|1| +22|2023-10-06T20:29:59.2750000-07:00|4002256A|Zeromus|8B7B|Chasmic Nails|10FF0004|Buhojaqe Zijaqe|710003|BC8D0000|100140E|6FD0000|920E|1080000|1B|8B7B8000|0|0|0|0|0|0|0|0|80739|80739|4000|10000|||105.37|90.59|-0.02|-1.51|44|44|0|10000|||100.00|80.10|0.00|0.70|0001B46E|0|2| +22|2023-10-06T20:29:59.2750000-07:00|4002256A|Zeromus|8B7B|Chasmic Nails|10FF0003|Gegehi Gehi|710003|C46C0000|100140E|6FD0000|40E|1080000|1B|8B7B8000|0|0|0|0|0|0|0|0|73085|73085|5350|10000|||107.50|91.86|0.00|-1.38|44|44|0|10000|||100.00|80.10|0.00|0.70|0001B46E|1|2| +38|2023-10-06T20:29:59.2750000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.61|82.60|0.00|-0.90|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:29:59.2750000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:29:59.2750000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:29:58.8300000-07:00|Change|4002256A||||||||||| +21|2023-10-06T20:29:59.3190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3636996|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6200|10000|||99.97|83.00|0.00|-2.86|0001B46F|0|1| +31|2023-10-06T20:29:59.3190000-07:00|10FF0001||||| +37|2023-10-06T20:29:59.3640000-07:00|10FF0006|Wowobora Gogobora|0001B46C|30806|80739|4525|10000|0||96.00|93.79|0.00|1.63|2800|0|0|01|030006FD|01|42700000|| +26|2023-10-06T20:29:59.3640000-07:00|6FD|Vulnerability Up|60.00|4002256E|Zeromus|10FF0006|Wowobora Gogobora|01|80739|44| +37|2023-10-06T20:29:59.4080000-07:00|10FF0007|Kehabiqo Febiqo|0001B46C|97577|128564|10000|10000|0||98.18|94.72|0.00|3.05|1501|0|0|01|040006FD|01|42700000|| +26|2023-10-06T20:29:59.4080000-07:00|6FD|Vulnerability Up|60.00|4002256E|Zeromus|10FF0007|Kehabiqo Febiqo|01|128564|44| +37|2023-10-06T20:29:59.4530000-07:00|40022550|Zeromus|0001B465|3633008|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T20:29:59.4530000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +24|2023-10-06T20:29:59.4980000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15C7|97577|128564|10000|10000|||98.67|94.28|0.00|3.07|10FF0006|Wowobora Gogobora|0|30806|80739|4525|10000|||96.20|93.38|0.00|2.07| +37|2023-10-06T20:29:59.4980000-07:00|40022550|Zeromus|0001B468|3633008|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000A38|0|41F00000|| +26|2023-10-06T20:29:59.4980000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:29:59.4980000-07:00|40022550|Zeromus|0001B46B|3618463||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:59.4980000-07:00|10FF0001|Sesuga Sapisuga|0001B46B|127791|127791|6700|10000|1||99.97|83.00|0.00|-2.86|1300|0|0|0| +38|2023-10-06T20:29:59.4980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103152|128564|10000|10000|0||98.67|94.28|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:59.0660000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:29:59.5430000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|14410000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|30806|80739|4525|10000|||96.20|93.38|0.00|2.07|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B470|0|1| +261|2023-10-06T20:29:59.1680000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:29:59.1680000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:29:59.6330000-07:00|40022550|Zeromus|0001B469|3609977||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:59.6330000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|25670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3618463|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.08|82.80|0.00|-2.44|0001B471|0|1| +38|2023-10-06T20:29:59.6330000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.44|83.14|0.00|-2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:29:59.1680000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:29:59.6770000-07:00|40022550|Zeromus|0001B46A|3594532||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:29:59.6770000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|EA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3609977|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.02|82.85|0.00|3.13|0001B472|0|1| +37|2023-10-06T20:29:59.8540000-07:00|40022550|Zeromus|0001B46F|3592788||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:59.8980000-07:00|40022550|Zeromus|0001B46D|3569221||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:29:59.8980000-07:00|10FF0002|Suchichi Suchi|0001B46D|90128|90128|10000|10000|0||100.29|85.38|0.00|-0.62|1600|0|0|01|0747|0|41F00000|| +37|2023-10-06T20:29:59.8980000-07:00|10FF0004|Buhojaqe Zijaqe|0001B46E|32470|80739|4000|10000|0||101.37|90.48|0.00|-1.61|1C00|0|0|02|050006FD|01|42700000|||||| +26|2023-10-06T20:29:59.8980000-07:00|6FD|Vulnerability Up|60.00|4002256A|Zeromus|10FF0004|Buhojaqe Zijaqe|01|80739|44| +26|2023-10-06T20:29:59.8980000-07:00|108|Flesh Wound|15.00|4002256A|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +21|2023-10-06T20:29:59.8980000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|F4F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3594532|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.29|85.38|0.00|-0.62|0001B473|0|1| +38|2023-10-06T20:29:59.8980000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.29|85.38|0.00|-0.62|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:29:59.9430000-07:00|10FF0003|Gegehi Gehi|0001B46E|22801|73085|5350|10000|0||103.80|91.49|0.00|-1.35|2301|0|0|02|010006FD|01|42700000|||||| +26|2023-10-06T20:29:59.9430000-07:00|6FD|Vulnerability Up|60.00|4002256A|Zeromus|10FF0003|Gegehi Gehi|01|73085|44| +26|2023-10-06T20:29:59.9430000-07:00|108|Flesh Wound|15.00|4002256A|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +261|2023-10-06T20:29:59.5530000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:29:59.6500000-07:00|Change|10FF0001||||||||||| +39|2023-10-06T20:29:59.9880000-07:00|10FF0003|Gegehi Gehi|23531|73085|5550|10000|||102.60|92.10|0.00|-1.34| +21|2023-10-06T20:29:59.9880000-07:00|40022566|Zeromus|8B7C|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.70|0001B474|0|0| +261|2023-10-06T20:29:59.6500000-07:00|Change|40022566||||||||||||| +261|2023-10-06T20:29:59.6500000-07:00|Change|10FF0004||||||||| +21|2023-10-06T20:30:00.1660000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|436E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|103152|128564|10000|10000|||100.05|90.54|0.00|1.80|3569221|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B475|0|1| +37|2023-10-06T20:30:00.2110000-07:00|40022550|Zeromus|0001B472|3565470||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:00.2120000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3569221|40478540|10000|10000|||100.00|80.10|0.00|0.00|30806|80739|4525|10000|||98.74|92.33|0.00|1.64|0001B476|0|1| +21|2023-10-06T20:30:00.2120000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3569221|40478540|10000|10000|||100.00|80.10|0.00|0.00|23531|73085|5550|10000|||101.58|91.77|0.00|-1.32|0001B477|0|1| +39|2023-10-06T20:30:00.2550000-07:00|10FF0007|Kehabiqo Febiqo|104437|128564|10000|10000|||100.05|90.54|0.00|1.80| +20|2023-10-06T20:30:00.2550000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|98.74|92.33|0.00|1.64| +21|2023-10-06T20:30:00.3000000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|2B230000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|3569221|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6700|10000|||99.97|83.00|0.00|3.13|0001B478|0|1| +38|2023-10-06T20:30:00.3000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6700|10000|1||99.97|83.00|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:00.3000000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:30:00.0110000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:30:00.3440000-07:00|10FF0006|Wowobora Gogobora|0001B470|35991||||||98.74|92.33|0.00|2.03| +37|2023-10-06T20:30:00.3440000-07:00|40022550|Zeromus|0001B471|3555895||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:00.4330000-07:00|40022550|Zeromus|0001B473|3551976||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:00.4340000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.14| +39|2023-10-06T20:30:00.4780000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.34|88.58|0.00|-0.07| +261|2023-10-06T20:30:00.1270000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:30:00.1270000-07:00|Change|10FF0006||||||||||||||||||| +20|2023-10-06T20:30:00.5220000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|2.973|94.71|119.18|0.00|1.66| +20|2023-10-06T20:30:00.5670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.13|90.99|0.00|-1.35| +21|2023-10-06T20:30:00.6110000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|262D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3551976|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.96|82.90|0.00|3.13|0001B479|0|1| +21|2023-10-06T20:30:00.6560000-07:00|40022568|Zeromus|8B7D|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.40|0001B47A|0|0| +261|2023-10-06T20:30:00.3330000-07:00|Change|40022568||||||||||||| +37|2023-10-06T20:30:00.7460000-07:00|40022550|Zeromus|0001B476|3551940||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:00.7460000-07:00|40022550|Zeromus|0001B477|3551939||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:00.7460000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|100.36|90.95|0.00|-1.97| +37|2023-10-06T20:30:00.9680000-07:00|10FF0007|Kehabiqo Febiqo|0001B475|87175||||||99.99|92.00|-0.01|0.00| +39|2023-10-06T20:30:01.0140000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6900|10000|||99.97|83.00|0.00|3.13| +261|2023-10-06T20:30:00.5170000-07:00|Change|10FF0008||||||||||||||||||||| +261|2023-10-06T20:30:00.6300000-07:00|Change|10FF0001||| +38|2023-10-06T20:30:01.1470000-07:00|40022DDB|Emerald Garuda|005A5A00|0|75851|0|10000|0||91.50|106.76|0.00|2.77|0|0|0|||| +30|2023-10-06T20:30:01.1470000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022DDB|Emerald Garuda|00|75851|73085| +261|2023-10-06T20:30:00.6300000-07:00|Change|40022DDB||||| +261|2023-10-06T20:30:00.7490000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T20:30:01.1930000-07:00|40022DE3||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||| +24|2023-10-06T20:30:01.1930000-07:00|40022550|Zeromus|DoT|0|3614|3551939|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|3551939|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:01.1930000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|5C0B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|3551939|40478540|10000|10000|||100.00|80.10|0.00|0.00|35991|80739|4525|10000|||98.74|92.33|0.00|3.04|0001B47B|0|1| +38|2023-10-06T20:30:01.1930000-07:00|40022550|Zeromus|005A5A00|3538095|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:01.1930000-07:00|40022DE3||005A5A00|72376|75851|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T20:30:01.2810000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|13000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3551939|40478540|10000|10000|||100.00|80.10|0.00|0.00|87175|128564|10000|10000|||99.99|92.03|0.00|-0.01|0001B47C|0|1| +261|2023-10-06T20:30:00.8590000-07:00|Add|40022DE3||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:30:00.8590000-07:00|40022DE3|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||95.27|117.51|0.00|-0.13| +37|2023-10-06T20:30:01.3260000-07:00|40022550|Zeromus|0001B479|3528322||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:00.8590000-07:00|Change|40022DE3||| +20|2023-10-06T20:30:01.3710000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|99.96|82.90|0.00|3.13| +261|2023-10-06T20:30:00.9740000-07:00|Change|10FF0005||||||||||||||||||| +21|2023-10-06T20:30:01.4610000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F710003|35460000|143E|340000|200004|25668000|11B|2A8000|0|0|0|0|0|0|0|0|3528322|40478540|10000|10000|||100.00|80.10|0.00|0.00|87175|128564|10000|10000|||99.99|92.03|0.00|-0.01|0001B47D|0|1| +38|2023-10-06T20:30:01.4610000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.96|82.90|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:01.4610000-07:00|31|Medicated|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|296B|90055|90055| +39|2023-10-06T20:30:01.5040000-07:00|10FF0006|Wowobora Gogobora|36798|80739|4330|10000|||98.74|92.32|0.00|3.06| +261|2023-10-06T20:30:01.1950000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:30:01.1950000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:30:01.5940000-07:00|40022550|Zeromus|0001B478|3517279||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:01.5940000-07:00|10FF0001|Sesuga Sapisuga|0001B478|127791|127791|7300|10000|1||99.97|83.00|0.00|3.13|1300|0|0|0| +21|2023-10-06T20:30:01.5940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|9230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3528322|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6900|10000|||99.97|83.00|0.00|3.13|0001B47E|0|1| +31|2023-10-06T20:30:01.5940000-07:00|10FF0001||||| +21|2023-10-06T20:30:01.7760000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|43790000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|3517279|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.36|89.77|0.00|-0.08|0001B47F|0|1| +38|2023-10-06T20:30:01.7760000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.36|89.77|0.00|-0.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:01.7760000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:30:01.8180000-07:00|40022550|Zeromus|0001B47C|3512415||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:30:01.8180000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|317D0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|36798|80739|4330|10000|||98.86|91.87|0.00|3.08|36798|80739|4330|10000|||98.86|91.87|0.00|3.08|0001B480|0|7| +22|2023-10-06T20:30:01.8180000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|33FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|36798|80739|4330|10000|||98.86|91.87|0.00|3.08|0001B480|1|7| +22|2023-10-06T20:30:01.8180000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|4|33850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23531|73085|5550|10000|||100.11|90.65|0.00|-3.13|36798|80739|4330|10000|||98.86|91.87|0.00|3.08|0001B480|2|7| +22|2023-10-06T20:30:01.8180000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|4|33DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.36|89.77|0.00|-0.08|36798|80739|4330|10000|||98.86|91.87|0.00|3.08|0001B480|3|7| +22|2023-10-06T20:30:01.8180000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|200004|519B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|87175|128564|10000|10000|||99.99|92.03|0.00|-3.14|36798|80739|4330|10000|||98.86|91.87|0.00|3.08|0001B480|4|7| +22|2023-10-06T20:30:01.8180000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|4|335C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7300|10000|||99.97|83.00|0.00|3.13|36798|80739|4330|10000|||98.86|91.87|0.00|3.08|0001B480|5|7| +22|2023-10-06T20:30:01.8180000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|333D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.96|82.90|0.00|3.13|36798|80739|4330|10000|||98.86|91.87|0.00|3.08|0001B480|6|7| +24|2023-10-06T20:30:01.8620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1600|87175|128564|10000|10000|||99.99|92.03|0.00|-3.14|10FF0006|Wowobora Gogobora|0|36798|80739|4330|10000|||99.09|91.06|0.00|3.02| +37|2023-10-06T20:30:01.8620000-07:00|40022550|Zeromus|0001B47B|3488852||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:01.8620000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.96|82.90|0.00|3.13| +38|2023-10-06T20:30:01.8620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92807|128564|10000|10000|0||99.99|92.03|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:01.8620000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:01.8620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|32470|80739|4000|10000|0||99.05|90.26|0.00|-2.67|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:01.8620000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:01.8620000-07:00|10FF0003|Gegehi Gehi|005A5A23|23531|73085|5550|10000|0||100.11|90.65|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:01.8620000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:30:01.8620000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||99.96|82.90|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:01.8620000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +38|2023-10-06T20:30:01.9080000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92807|128564|10000|10000|0||99.99|92.03|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:01.9080000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:01.9080000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|0||100.36|89.77|0.00|-3.10|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:01.9080000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:01.9080000-07:00|10FF0006|Wowobora Gogobora|005A5A28|36798|80739|4330|10000|0||99.09|91.06|0.00|3.02|0|0|0||||||||||||| +26|2023-10-06T20:30:01.9080000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:30:01.9080000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:01.9080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7300|10000|1||99.97|83.00|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:01.9080000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +22|2023-10-06T20:30:01.9540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|18B50000|880E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|0001B481|0|7| +22|2023-10-06T20:30:01.9540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19E40000|6C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|36798|80739|4330|10000|||99.29|90.33|0.00|2.95|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|0001B481|1|7| +22|2023-10-06T20:30:01.9540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|19BC0000|2C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|23531|73085|5550|10000|||100.11|90.65|0.00|-3.13|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|0001B481|2|7| +22|2023-10-06T20:30:01.9540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|200004|297A0000|5C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.36|89.77|0.00|-3.10|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|0001B481|3|7| +22|2023-10-06T20:30:01.9540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|28290000|410E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|92807|128564|10000|10000|||99.99|92.03|0.00|-3.14|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|0001B481|4|7| +22|2023-10-06T20:30:01.9540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|1A030000|9E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|7300|10000|||99.97|83.00|0.00|3.13|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|0001B481|5|7| +22|2023-10-06T20:30:01.9540000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|19570000|8B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.96|82.90|0.00|3.13|32470|80739|4000|10000|||99.05|90.26|0.00|-2.67|0001B481|6|7| +38|2023-10-06T20:30:01.9540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92807|128564|10000|10000|12||99.99|92.03|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:01.9540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:01.9540000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.36|89.77|0.00|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:01.9540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:01.9540000-07:00|10FF0006|Wowobora Gogobora|005A5A28|36798|80739|4330|10000|13||99.29|90.33|0.00|2.95|0|0|0|||||||||||||||| +26|2023-10-06T20:30:01.9540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:01.9540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7300|10000|8||99.97|83.00|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:01.9540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:01.9540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|32470|80739|3000|10000|12||99.05|90.26|0.00|-2.67|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:01.9540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:01.9540000-07:00|10FF0003|Gegehi Gehi|005A5A23|23531|73085|5550|10000|14||100.11|90.65|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:01.9540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:30:01.9540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||99.96|82.90|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:01.9540000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +39|2023-10-06T20:30:02.0400000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9500|10000|||95.05|119.22|0.00|3.02| +261|2023-10-06T20:30:01.6990000-07:00|Change|10FF0001||| +261|2023-10-06T20:30:01.6990000-07:00|Change|10FF0008||||| +37|2023-10-06T20:30:02.1300000-07:00|40022550|Zeromus|0001B47E|3486513||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:02.1300000-07:00|10FF0004|Buhojaqe Zijaqe|33277|80739|3200|10000|||99.05|90.26|0.00|-2.67| +21|2023-10-06T20:30:02.1300000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|754003|BD7B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3486513|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.96|82.90|0.00|3.13|0001B482|0|1| +38|2023-10-06T20:30:02.1300000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||99.96|82.90|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:02.1300000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:30:02.1300000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +261|2023-10-06T20:30:01.6990000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T20:30:01.6990000-07:00|Change|10FF0005||||||||||||| +21|2023-10-06T20:30:02.1740000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|23140000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|3486513|40478540|10000|10000|||100.00|80.10|0.00|0.00|23531|73085|5550|10000|||100.11|90.65|0.00|-3.13|0001B483|0|1| +38|2023-10-06T20:30:02.1740000-07:00|10FF0003|Gegehi Gehi|005A5A23|23531|73085|5350|10000|14||100.11|90.65|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:02.1740000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:30:02.1740000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +34|2023-10-06T20:30:02.2190000-07:00|40022DE3|Carbuncle|40022DE3|Carbuncle|01| +261|2023-10-06T20:30:01.8240000-07:00|Change|40022DE3||| +37|2023-10-06T20:30:02.3980000-07:00|40022550|Zeromus|0001B47F|3469240||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:02.4430000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|720003|26300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3486513|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.36|89.81|0.00|-1.70|0001B484|0|1| +37|2023-10-06T20:30:02.5760000-07:00|10FF0006|Wowobora Gogobora|0001B480|49467|80739|5030|10000|13||100.31|89.43|-0.02|1.95|2800|0|0|0| +261|2023-10-06T20:30:02.1680000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T20:30:02.1680000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:30:02.7100000-07:00|10FF0004|Buhojaqe Zijaqe|0001B480|46587||||||99.15|90.30|0.00|1.69| +24|2023-10-06T20:30:02.7100000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|23531|73085|5350|10000|||100.11|90.65|0.00|-3.13|10FF0003|Gegehi Gehi|FFFFFFFF|23531|73085|5350|10000|||100.11|90.65|0.00|-3.13| +21|2023-10-06T20:30:02.7100000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|19350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3469240|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.37|90.12|0.00|-3.10|0001B485|0|1| +38|2023-10-06T20:30:02.7100000-07:00|10FF0003|Gegehi Gehi|005A5A23|23531|73085|5350|10000|1||100.11|90.65|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:02.7550000-07:00|40022550|Zeromus|0001B482|3420733||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:02.7550000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|21E10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|33277|80739|3200|10000|||99.15|90.30|0.00|1.69|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B486|0|1| +21|2023-10-06T20:30:02.7990000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|714003|1B150000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|3469240|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7300|10000|||99.97|83.00|0.00|3.13|0001B487|0|1| +21|2023-10-06T20:30:02.7990000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3469240|40478540|10000|10000|||100.00|80.10|0.00|0.00|33277|80739|3200|10000|||99.15|90.30|0.00|1.69|0001B488|0|1| +37|2023-10-06T20:30:02.8430000-07:00|10FF0003|Gegehi Gehi|0001B480|36720||||||100.11|90.69|0.00|-2.36| +24|2023-10-06T20:30:02.8890000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|46587|80739|3200|10000|||99.23|90.32|0.00|1.28|10FF0003|Gegehi Gehi|FFFFFFFF|23531|73085|5350|10000|||100.11|90.69|0.00|-2.36| +38|2023-10-06T20:30:02.8890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46587|80739|3200|10000|1||99.23|90.32|0.00|1.28|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:02.4510000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T20:30:02.9780000-07:00|40022550|Zeromus|0001B47D|3407095||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:02.9780000-07:00|10FF0007|Kehabiqo Febiqo|0001B47D|102381||||||99.99|92.03|0.00|-3.14| +37|2023-10-06T20:30:02.9780000-07:00|40022550|Zeromus|0001B483|3398115||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:02.9780000-07:00|10FF0008|Kokosaze Lulusaze|64ED|Slipstream|40022550|Zeromus|350003|49100000|16FC0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|3420733|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||95.05|119.22|0.00|3.02|0001B489|0|1| +38|2023-10-06T20:30:02.9780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|0||95.05|119.22|0.00|3.02|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:02.9780000-07:00|AA5|Garuda's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +39|2023-10-06T20:30:03.0220000-07:00|10FF0003|Gegehi Gehi|37450|73085|5550|10000|||100.11|90.73|0.00|-1.54| +37|2023-10-06T20:30:03.0670000-07:00|40022550|Zeromus|0001B484|3388339||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:03.0670000-07:00|10FF0004|Buhojaqe Zijaqe|0001B481|52912|80739|3200|10000|1||99.39|90.35|0.00|1.36|1C00|0|0|01|07000129|0|41E772AE|| +37|2023-10-06T20:30:03.1110000-07:00|10FF0007|Kehabiqo Febiqo|0001B480|123272||||||99.99|92.03|0.00|-3.14| +261|2023-10-06T20:30:02.6680000-07:00|Change|10FF0008||||||||||||| +20|2023-10-06T20:30:03.1560000-07:00|10FF0006|Wowobora Gogobora|1D90|Esuna|10FF0003|Gegehi Gehi|0.975|100.72|90.87|0.00|0.52| +37|2023-10-06T20:30:03.2010000-07:00|10FF0006|Wowobora Gogobora|0001B481|56095|80739|5030|10000|13||100.72|90.87|0.00|0.52|2801|0|0|01|04000129|0|41E6603F|| +21|2023-10-06T20:30:03.2010000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|C210000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|123272|128564|10000|10000|||99.99|92.04|0.00|2.61|3388339|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B48A|0|1| +37|2023-10-06T20:30:03.2450000-07:00|40022550|Zeromus|0001B485|3381886||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:03.2460000-07:00|10FF0007|Kehabiqo Febiqo|124557|128564|10000|10000|||99.99|92.07|0.00|1.83| +21|2023-10-06T20:30:03.2460000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|27400000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|3381886|40478540|10000|10000|||100.00|80.10|0.00|0.00|37450|73085|5550|10000|||100.10|92.15|0.00|-0.34|0001B48B|0|1| +38|2023-10-06T20:30:03.2460000-07:00|10FF0003|Gegehi Gehi|005A5A23|37450|73085|5250|10000|1||100.10|92.15|0.00|-0.34|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:03.2460000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +20|2023-10-06T20:30:03.2900000-07:00|10FF0004|Buhojaqe Zijaqe|1D90|Esuna|10FF0004|Buhojaqe Zijaqe|0.963|99.56|90.39|0.00|1.51| +261|2023-10-06T20:30:02.8960000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:02.8960000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:30:03.3350000-07:00|40022550|Zeromus|0001B488|3381729||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:03.3350000-07:00|10FF0003|Gegehi Gehi|0001B481|44038|73085|5250|10000|1||100.09|92.97|0.00|-3.13|2302|0|0|01|05000129|0|41E54DD0|| +38|2023-10-06T20:30:03.3350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||100.50|84.15|0.00|-2.75|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:03.3350000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:30:03.4240000-07:00|40022550|Zeromus|0001B487|3374796||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:03.4240000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.01| +37|2023-10-06T20:30:03.4690000-07:00|10FF0002|Suchichi Suchi|0001B481|90128|90128|10000|10000|18||100.56|94.41|0.00|-0.15|1603|0|0|01|0129|0|41E43B61|| +39|2023-10-06T20:30:03.4690000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.56|94.41|0.00|-0.15| +37|2023-10-06T20:30:03.5580000-07:00|10FF0004|Buhojaqe Zijaqe|0001B486|61585||||||99.66|90.41|0.00|1.59| +37|2023-10-06T20:30:03.6030000-07:00|10FF0007|Kehabiqo Febiqo|0001B481|128564|128564|10000|10000|12||100.01|92.89|0.00|0.33|1504|0|0|01|06000129|0|41E328F2|| +21|2023-10-06T20:30:03.6030000-07:00|10FF0006|Wowobora Gogobora|1D90|Esuna|10FF0003|Gegehi Gehi|10|1080000|1B|1D908000|0|0|0|0|0|0|0|0|0|0|0|0|44038|73085|5250|10000|||100.11|94.18|-0.02|2.41|56095|80739|5030|10000|||100.72|90.87|0.00|-0.11|0001B48C|0|1| +261|2023-10-06T20:30:03.2200000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:30:03.6920000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1BDB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3374796|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.72|84.88|0.00|-2.84|0001B48D|0|1| +37|2023-10-06T20:30:03.7360000-07:00|10FF0001|Sesuga Sapisuga|0001B481|127791|127791|7300|10000|8||100.27|86.09|0.00|-1.43|1305|0|0|01|0D000129|0|41E2188F|| +21|2023-10-06T20:30:03.7360000-07:00|10FF0004|Buhojaqe Zijaqe|1D90|Esuna|10FF0004|Buhojaqe Zijaqe|10|1080000|1B|1D908000|0|0|0|0|0|0|0|0|0|0|0|0|61585|80739|3200|10000|||99.66|90.41|0.00|1.59|61585|80739|3200|10000|||99.66|90.41|0.00|1.59|0001B48E|0|1| +37|2023-10-06T20:30:03.8700000-07:00|10FF0005|Wuwuchu Wuchu|0001B481|90055|90055|10000|10000|11||100.80|85.15|0.00|-2.87|2706|0|0|01|05000129|0|41E1082C|| +21|2023-10-06T20:30:03.8700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3374796|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7300|10000|||100.36|86.75|0.00|-1.43|0001B48F|0|1| +31|2023-10-06T20:30:03.8700000-07:00|10FF0001||||| +21|2023-10-06T20:30:03.9130000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|265C0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|3374796|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.02|93.91|-0.02|0.13|0001B490|0|1| +261|2023-10-06T20:30:03.5010000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:30:03.9580000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|710003|43050000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|3374796|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.87|85.40|0.00|-2.87|0001B491|0|1| +261|2023-10-06T20:30:03.5950000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:30:04.0030000-07:00|10FF0007|Kehabiqo Febiqo|0001B48A|125459|128564|10000|10000|0||100.02|94.13|0.00|-3.14|1500|0|0|01|06000000|0|0|| +24|2023-10-06T20:30:04.0030000-07:00|40022550|Zeromus|DoT|A92|4CA|3374796|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9500|10000|||95.08|119.05|-0.01|2.93| +37|2023-10-06T20:30:04.0030000-07:00|40022550|Zeromus|0001B489|3354866||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:04.0030000-07:00|10FF0008|Kokosaze Lulusaze|0001B489|79111|79111|9500|10000|0||95.08|119.05|-0.01|2.93|1B00|0|0|01|05000A92|0|41700000|| +26|2023-10-06T20:30:04.0030000-07:00|A92|Slipstream|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:30:04.0030000-07:00|40022550|Zeromus|0001B48B|3344818||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:04.0030000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7500|10000|||100.63|88.64|0.00|-1.43| +21|2023-10-06T20:30:04.0030000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|356003|49660000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|3374796|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||95.08|119.05|-0.01|2.93|0001B492|0|1| +21|2023-10-06T20:30:04.0030000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|724003|3CFF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3374796|40478540|10000|10000|||100.00|80.10|0.00|0.00|44038|73085|5250|10000|||100.19|94.82|0.00|1.33|0001B493|0|1| +38|2023-10-06T20:30:04.0030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125459|128564|10000|10000|0||100.02|94.13|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:04.0030000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:04.0030000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:04.0030000-07:00|40022550|Zeromus|005A5A00|3344818|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:30:03.6850000-07:00|Add|40022E14||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:03.6850000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:30:04.1810000-07:00|40022550|Zeromus|DoT|0|2BB4|3344818|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|3344818|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:04.1810000-07:00|40022550|Zeromus|005A5A00|3333630|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:04.2250000-07:00|40022550|Zeromus|0001B48D|3326499||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:04.2700000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35726003|55280000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|3326499|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.27|95.73|0.00|-3.00|0001B494|0|1| +261|2023-10-06T20:30:03.9220000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:30:04.4020000-07:00|40022550|Zeromus|0001B48F|3324765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:04.4500000-07:00|40022550|Zeromus|0001B490|3314945||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:04.4920000-07:00|10FF0006|Wowobora Gogobora|56902|80739|4835|10000|||100.72|90.87|0.00|-0.14| +37|2023-10-06T20:30:04.6260000-07:00|40022550|Zeromus|0001B492|3296155||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:04.6700000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|BAD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3296155|40478540|10000|10000|||100.00|80.10|0.00|0.00|125459|128564|10000|10000|||100.02|94.29|0.00|-3.14|0001B495|0|1| +37|2023-10-06T20:30:04.7150000-07:00|10FF0003|Gegehi Gehi|0001B48C|44038|73085|5250|10000|1||100.40|96.55|0.00|1.17|2300|0|0|01|03000000|0|0|| +38|2023-10-06T20:30:04.7150000-07:00|10FF0003|Gegehi Gehi|005A5A23|44038|73085|5250|10000|1||100.40|96.55|0.00|1.17|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:04.7150000-07:00|108|Flesh Wound|0.00|4002256A|Zeromus|10FF0003|Gegehi Gehi|00|73085|44| +21|2023-10-06T20:30:04.7600000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|722003|16AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3296155|40478540|10000|10000|||100.00|80.10|0.00|0.00|44038|73085|5250|10000|||100.43|96.73|0.00|0.81|0001B496|0|1| +37|2023-10-06T20:30:04.8490000-07:00|10FF0004|Buhojaqe Zijaqe|0001B48E|61585|80739|2800|10000|1||99.66|90.41|0.00|0.70|1C00|0|0|01|06000000|0|0|| +38|2023-10-06T20:30:04.8490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|61585|80739|2800|10000|1||99.66|90.41|0.00|0.70|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:04.8490000-07:00|108|Flesh Wound|0.00|4002256A|Zeromus|10FF0004|Buhojaqe Zijaqe|00|80739|44| +261|2023-10-06T20:30:04.4310000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:30:04.4310000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:30:04.8930000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||100.85|87.56|0.00|-3.02| +04|2023-10-06T20:30:04.4310000-07:00|40022DDB|Emerald Garuda|00|5A|10FF0008|00||10263|13506|0|75851|0|10000|||91.50|106.76|0.00|2.77| +261|2023-10-06T20:30:04.4310000-07:00|Remove|40022DDB| +21|2023-10-06T20:30:04.9380000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.27|95.75|0.00|-3.12|90128|90128|10000|10000|||100.27|95.75|0.00|-3.12|0001B497|0|1| +38|2023-10-06T20:30:04.9380000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.27|95.75|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:04.9380000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:30:04.9820000-07:00|40022550|Zeromus|0001B491|3278998||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:04.5280000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:30:04.5280000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:30:05.0270000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9400|10000|||96.49|113.28|0.00|2.90| +37|2023-10-06T20:30:05.1600000-07:00|40022550|Zeromus|0001B493|3263383||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:05.1600000-07:00|10FF0004|Buhojaqe Zijaqe|62392|80739|3000|10000|||99.60|90.94|0.00|0.15| +21|2023-10-06T20:30:05.1600000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3278998|40478540|10000|10000|||100.00|80.10|0.00|0.00|44038|73085|5250|10000|||100.44|96.79|0.00|-3.11|0001B498|0|1| +37|2023-10-06T20:30:05.2040000-07:00|40022550|Zeromus|0001B495|3260394||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:05.2940000-07:00|40022550|Zeromus|0001B494|3238594||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:05.2940000-07:00|10FF0002|Suchichi Suchi|0001B494|90128|90128|10000|10000|18||100.27|95.75|0.00|-3.12|1600|0|0|01|02000074|0|C0A00000|| +21|2023-10-06T20:30:05.2940000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35714003|25F00000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|3263383|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7500|10000|||100.89|94.88|0.00|-1.47|0001B499|0|1| +261|2023-10-06T20:30:04.8720000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:30:05.3820000-07:00|40022550|Zeromus|0001B496|3232791||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:05.4710000-07:00|10FF0002|Suchichi Suchi|0001B497|90128|90128|10000|10000|18||100.27|95.75|0.00|-3.12|1600|0|0|01|02000074|0|40A00000|| +38|2023-10-06T20:30:05.4710000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.27|95.75|0.00|-3.12|0|0|0||||||||||||||||||| +261|2023-10-06T20:30:05.1010000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:30:05.5160000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|131A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3232791|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.27|95.75|0.00|-3.12|0001B49A|0|1| +21|2023-10-06T20:30:05.5160000-07:00|10FF0008|Kokosaze Lulusaze|64E1|Emerald Rite|40022550|Zeromus|354003|318D0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|3232791|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9400|10000|||97.67|108.93|0.00|2.88|0001B49B|0|1| +21|2023-10-06T20:30:05.5160000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|724003|18390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3232791|40478540|10000|10000|||100.00|80.10|0.00|0.00|44038|73085|5250|10000|||100.47|97.02|0.00|-2.86|0001B49C|0|1| +20|2023-10-06T20:30:05.5600000-07:00|10FF0006|Wowobora Gogobora|1D90|Esuna|10FF0004|Buhojaqe Zijaqe|0.975|100.81|91.19|0.00|0.04| +38|2023-10-06T20:30:05.6500000-07:00|10FF0003|Gegehi Gehi|005A5A23|44038|73085|5250|10000|1||100.47|97.09|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:05.6500000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:30:05.6940000-07:00|40022550|Zeromus|0001B498|3232790||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:05.6940000-07:00|10FF0004|Buhojaqe Zijaqe|1D90|Esuna|10FF0003|Gegehi Gehi|0.963|99.57|91.26|0.00|-0.08| +38|2023-10-06T20:30:05.7830000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||100.45|89.52|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:05.7830000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0005|Wuwuchu Wuchu|00|90055|73085| +261|2023-10-06T20:30:05.3800000-07:00|Change|40022DE3||||||||| +38|2023-10-06T20:30:05.8710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9100|10000|0||98.10|107.31|0.00|3.08|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:05.8710000-07:00|32|Sprint|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|79111|79111| +38|2023-10-06T20:30:05.9160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62392|80739|3000|10000|1||99.57|91.26|0.00|-0.03|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:05.9160000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|80739|73085| +38|2023-10-06T20:30:05.9160000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0|||| +30|2023-10-06T20:30:05.9160000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022DBB|Ruby Carbuncle|00|77430|73085| +261|2023-10-06T20:30:05.5690000-07:00|Change|10FF0006||||||||||||||||||| +39|2023-10-06T20:30:06.0040000-07:00|10FF0003|Gegehi Gehi|44768|73085|5450|10000|||100.48|98.03|0.00|-1.34| +21|2023-10-06T20:30:06.0040000-07:00|10FF0006|Wowobora Gogobora|1D90|Esuna|10FF0004|Buhojaqe Zijaqe|8|0|1B|1D908000|0|0|0|0|0|0|0|0|0|0|0|0|62392|80739|3000|10000|||99.57|91.26|0.00|0.05|56902|80739|4835|10000|||101.29|93.00|0.00|-2.30|0001B49D|0|1| +261|2023-10-06T20:30:05.6700000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:30:06.0500000-07:00|40022550|Zeromus|0001B49A|3227900||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:06.0500000-07:00|40022550|Zeromus|0001B499|3218188||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:06.0500000-07:00|10FF0001|Sesuga Sapisuga|0001B499|127791|127791|8500|10000|8||100.78|95.32|0.00|-1.78|1300|0|0|0| +38|2023-10-06T20:30:06.0500000-07:00|10FF0006|Wowobora Gogobora|005A5A28|56902|80739|4435|10000|13||101.29|93.00|0.00|-2.30|0|0|0|||||||||||||||| +26|2023-10-06T20:30:06.0500000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:30:06.0500000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|80739|73085| +37|2023-10-06T20:30:06.0950000-07:00|40022550|Zeromus|0001B49C|3211987||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:05.6700000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:05.6700000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:06.1390000-07:00|40022550|Zeromus|0001B49B|3199302||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:06.1390000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3211987|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8500|10000|||100.78|95.32|0.00|-1.78|0001B49E|0|1| +21|2023-10-06T20:30:06.1390000-07:00|10FF0004|Buhojaqe Zijaqe|1D90|Esuna|10FF0003|Gegehi Gehi|8|0|1B|1D908000|0|0|0|0|0|0|0|0|0|0|0|0|44768|73085|5450|10000|||100.48|98.27|0.00|-0.85|62392|80739|3000|10000|||99.57|91.26|0.00|0.08|0001B49F|0|1| +31|2023-10-06T20:30:06.1390000-07:00|10FF0001||||| +38|2023-10-06T20:30:06.1830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125459|128564|10000|10000|0||99.20|90.88|0.00|-0.69|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:06.1830000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:06.1830000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|128564|73085| +39|2023-10-06T20:30:06.2280000-07:00|10FF0007|Kehabiqo Febiqo|126744|128564|10000|10000|||99.20|90.88|0.00|-0.69| +21|2023-10-06T20:30:06.2280000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|50B60000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|125459|128564|10000|10000|||99.20|90.88|0.00|-0.69|3211987|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B4A0|0|1| +20|2023-10-06T20:30:06.2280000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|100.48|98.27|0.00|-0.85| +21|2023-10-06T20:30:06.3170000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|716003|71350000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|3199302|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.43|90.78|0.00|3.10|0001B4A1|0|1| +38|2023-10-06T20:30:06.3170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8500|10000|8||100.78|95.32|0.00|-1.78|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:06.3170000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|127791|73085| +38|2023-10-06T20:30:06.3170000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||100.43|90.78|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:06.3170000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +261|2023-10-06T20:30:05.9000000-07:00|Change|10FF0004||||| +21|2023-10-06T20:30:06.3610000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|21620000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|44768|73085|5450|10000|||100.48|98.63|0.00|-0.30|73956|77430|10000|10000|||98.71|97.61|0.00|2.52|0001B4A2|0|1| +21|2023-10-06T20:30:06.3610000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|217F0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|3199302|40478540|10000|10000|||100.00|80.10|0.00|0.00|126744|128564|10000|10000|||99.65|91.37|-0.02|-1.78|0001B4A3|0|1| +39|2023-10-06T20:30:06.4060000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|2.52| +39|2023-10-06T20:30:06.4510000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.27|95.75|0.00|-3.12| +38|2023-10-06T20:30:06.4510000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.27|95.75|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:30:06.4510000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0002|Suchichi Suchi|00|90128|73085| +261|2023-10-06T20:30:06.0200000-07:00|Change|10FF0003||||||||||||||||||||| +24|2023-10-06T20:30:06.5390000-07:00|40022550|Zeromus|DoT|A92|854|3199302|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9100|10000|||100.59|101.95|0.00|2.95| +38|2023-10-06T20:30:06.5390000-07:00|40022550|Zeromus|005A5A00|3197170|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:30:06.1400000-07:00|Change|10FF0006||||||||||||||||||||||||| +261|2023-10-06T20:30:06.1400000-07:00|Change|40022DE3||||||||| +38|2023-10-06T20:30:06.5840000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9100|10000|0||100.59|101.95|0.00|2.95|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:06.5840000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|79111|73085| +38|2023-10-06T20:30:06.5840000-07:00|40022DE3|Carbuncle|005A5A00|72376|75851|10000|10000|0||96.53|107.82|0.00|2.89|0|0|0|||| +26|2023-10-06T20:30:06.5840000-07:00|30|Well Fed|1852.88|10FF0008|Kokosaze Lulusaze|40022DE3|Carbuncle|2964|75851|79111| +37|2023-10-06T20:30:06.6720000-07:00|40022550|Zeromus|0001B49E|3194892||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:06.7620000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F722003|6F3D0000|104|14CA8000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|3194892|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.27|95.75|0.00|-3.12|0001B4A4|0|1| +38|2023-10-06T20:30:06.7620000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.27|95.75|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T20:30:06.7620000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:30:06.7620000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:30:06.8520000-07:00|40022550|Zeromus|0001B4A1|3165911||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:06.8520000-07:00|10FF0005|Wuwuchu Wuchu|0001B4A1|90055|90055|10000|10000|11||100.42|92.12|0.00|-3.12|2700|0|0|01|02000A1B|01|41F00000|| +38|2023-10-06T20:30:06.8520000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||100.42|92.12|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:30:06.8970000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3194892|40478540|10000|10000|||100.00|80.10|0.00|0.00|62392|80739|2600|10000|||99.57|91.26|-0.02|0.12|0001B4A5|0|1| +21|2023-10-06T20:30:06.8970000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3194892|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.42|92.12|0.00|-3.12|0001B4A6|0|1| +21|2023-10-06T20:30:06.9420000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|734003|2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3165911|40478540|10000|10000|||100.00|80.10|0.00|0.00|56902|80739|4435|10000|||101.30|93.03|0.00|-2.36|0001B4A7|0|1| +37|2023-10-06T20:30:06.9850000-07:00|40022550|Zeromus|0001B4A3|3157336||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:06.9860000-07:00|10FF0008|Kokosaze Lulusaze|64EE|Summon Ifrit II|40022550|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|3165911|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9100|10000|||100.19|99.92|0.00|-3.02|0001B4A8|0|1| +21|2023-10-06T20:30:06.9860000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3165911|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9100|10000|||100.19|99.92|0.00|-3.02|0001B4A9|0|1| +38|2023-10-06T20:30:06.9860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9100|10000|0||100.19|99.92|0.00|-3.02|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:06.9860000-07:00|AA4|Ifrit's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:30:07.0310000-07:00|40022E1B||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:30:07.0310000-07:00|10FF0007|Kehabiqo Febiqo|0001B4A0|106082||||||100.55|91.81|0.00|-3.10| +39|2023-10-06T20:30:07.0310000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8700|10000|||100.78|95.32|0.00|-1.78| +38|2023-10-06T20:30:07.0310000-07:00|40022E1B||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:30:06.6310000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:30:06.6310000-07:00|Change|10FF0001||| +37|2023-10-06T20:30:07.1620000-07:00|10FF0003|Gegehi Gehi|0001B4A2|53314||||||100.48|98.68|0.00|-3.11| +21|2023-10-06T20:30:07.1630000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B710003|462E0000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|3157336|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||100.46|92.96|0.00|-3.11|0001B4AA|0|1| +38|2023-10-06T20:30:07.1630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||100.46|92.96|0.00|-3.11|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:07.1630000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:30:07.1630000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:30:07.1630000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:30:07.2070000-07:00|40022550|Zeromus|DoT|0|2E6A|3157336|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|3157336|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:07.2080000-07:00|40022550|Zeromus|005A5A00|3145454|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:30:06.8660000-07:00|Add|40022E1B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:30:06.8660000-07:00|40022E1B|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|72376|75851|10000|10000|||101.80|101.27|0.00|-3.14| +261|2023-10-06T20:30:06.8660000-07:00|Change|40022E1B||||| +261|2023-10-06T20:30:06.9800000-07:00|Change|40022DE3||||||||||| +21|2023-10-06T20:30:07.3870000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|720003|34FC0000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|3145454|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.18|96.37|0.00|2.64|0001B4AB|0|1| +38|2023-10-06T20:30:07.3870000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.18|96.37|0.00|2.64|0|0|0|||||||||||||||| +26|2023-10-06T20:30:07.3870000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:30:07.4320000-07:00|40022550|Zeromus|0001B4A5|3145208||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:07.4320000-07:00|40022550|Zeromus|0001B4A6|3141930||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:07.4320000-07:00|10FF0005|Wuwuchu Wuchu|0001B4A6|90055|90055|10000|10000|11||100.48|93.31|0.00|-3.10|2700|0|0|01|02000A1D|0|C2700000|| +37|2023-10-06T20:30:07.4750000-07:00|40022550|Zeromus|0001B4A4|3113453||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:07.4750000-07:00|10FF0002|Suchichi Suchi|0001B4A4|90128|90128|10000|10000|18||100.14|96.48|0.00|-3.13|1600|0|0|02|020004DB|0|C1700000|||||| +37|2023-10-06T20:30:07.4750000-07:00|40022550|Zeromus|0001B4A7|3113407||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:07.4760000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.14|96.48|0.00|-3.13|0|0|0|||||||||||||||| +37|2023-10-06T20:30:07.5200000-07:00|40022550|Zeromus|0001B4A9|3113268||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:07.5200000-07:00|10FF0006|Wowobora Gogobora|57709|80739|4640|10000|||101.42|94.07|0.00|-1.47| +261|2023-10-06T20:30:07.0930000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:30:07.6530000-07:00|40022550|Zeromus|0001B4AA|3095302||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:07.6530000-07:00|10FF0005|Wuwuchu Wuchu|0001B4AA|90055|90055|10000|10000|11||100.54|93.29|0.00|-3.14|2700|0|0|01|02000A1D|0|42700000|| +261|2023-10-06T20:30:07.1880000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T20:30:07.6540000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|454003|2A420000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|3095302|40478540|10000|10000|||100.00|80.10|0.00|0.00|53314|73085|5250|10000|||100.48|98.68|0.00|-3.11|0001B4AC|0|1| +38|2023-10-06T20:30:07.6540000-07:00|10FF0003|Gegehi Gehi|005A5A23|53314|73085|5250|10000|1||100.48|98.68|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:07.6540000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:30:07.6540000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:30:07.6540000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||100.88|93.51|0.00|2.98|0|0|0||||||||||||||||||| +21|2023-10-06T20:30:07.7880000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|289A0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|3095302|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8700|10000|||100.78|95.32|0.00|-3.09|0001B4AD|0|1| +38|2023-10-06T20:30:07.7880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|8||100.78|95.32|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:07.7880000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:30:07.7880000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:30:07.8770000-07:00|40022550|Zeromus|0001B4AB|3081738||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:07.8770000-07:00|10FF0002|Suchichi Suchi|0001B4AB|90128|90128|10000|10000|18||100.14|96.56|0.00|-3.13|1600|0|0|01|020004DB|0|41700000|| +39|2023-10-06T20:30:07.8770000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||101.18|93.72|0.00|2.82| +38|2023-10-06T20:30:07.8770000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.14|96.56|0.00|-3.13|0|0|0|||||||||||||||| +261|2023-10-06T20:30:07.3800000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:30:08.0110000-07:00|10FF0008|Kokosaze Lulusaze|0001B4A8|79111|79111|9100|10000|0||100.20|99.50|0.00|1.98|1B00|0|0|01|03000AA4|0|0|| +20|2023-10-06T20:30:08.0110000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.52|96.63|0.00|-0.37| +38|2023-10-06T20:30:08.0110000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9100|10000|0||100.20|99.50|0.00|1.98|0|0|0||||||||||||||||||| +261|2023-10-06T20:30:07.5900000-07:00|Change|40022E1B||| +39|2023-10-06T20:30:08.0550000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9300|10000|||100.25|99.50|0.00|1.81| +21|2023-10-06T20:30:08.0550000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3081738|40478540|10000|10000|||100.00|80.10|0.00|0.00|106082|128564|10000|10000|||100.05|95.59|0.00|-0.15|0001B4AE|0|1| +261|2023-10-06T20:30:07.7030000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T20:30:08.1440000-07:00|10FF0004|Buhojaqe Zijaqe|63199|80739|2800|10000|||100.14|96.80|0.00|0.01| +20|2023-10-06T20:30:08.2330000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.15|96.95|0.00|0.01| +21|2023-10-06T20:30:08.3220000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|720003|1BE30000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|3081738|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.16|96.57|0.00|-3.13|0001B4AF|0|1| +21|2023-10-06T20:30:08.3220000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3081738|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.16|96.57|0.00|-3.13|0001B4B0|0|1| +38|2023-10-06T20:30:08.3220000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.16|96.57|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T20:30:08.3220000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +37|2023-10-06T20:30:08.3670000-07:00|40022550|Zeromus|0001B4AD|3071344||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:08.3670000-07:00|10FF0001|Sesuga Sapisuga|0001B4AD|127791|127791|8700|10000|8||100.78|95.32|0.00|-3.09|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T20:30:08.3670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8700|10000|8||100.78|95.32|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:30:08.4110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3081738|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8700|10000|||100.78|95.32|0.00|-3.09|0001B4B1|0|1| +31|2023-10-06T20:30:08.4110000-07:00|10FF0001||||| +37|2023-10-06T20:30:08.4560000-07:00|40022550|Zeromus|0001B4AC|3060526||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:08.0520000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:08.5900000-07:00|40022550|Zeromus|0001B4AE|3057792||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:08.5900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63199|80739|2800|10000|1||100.17|97.53|0.00|-0.01|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:08.5900000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|80739|80739| +261|2023-10-06T20:30:08.1660000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T20:30:08.2560000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T20:30:08.6790000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|350003|26B60000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|3057792|40478540|10000|10000|||100.00|80.10|0.00|0.00|53314|73085|5250|10000|||100.48|98.68|0.00|-3.11|0001B4B2|0|1| +38|2023-10-06T20:30:08.6790000-07:00|10FF0003|Gegehi Gehi|005A5A23|53314|73085|4950|10000|1||100.48|98.68|0.00|-3.11|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:08.6790000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:30:08.6790000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:30:08.8110000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F712003|50940000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|3057792|40478540|10000|10000|||100.00|80.10|0.00|0.00|106082|128564|10000|10000|||100.08|93.92|-0.01|3.02|0001B4B3|0|1| +38|2023-10-06T20:30:08.8110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106082|128564|10000|10000|0||100.08|93.92|-0.01|3.02|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:08.8110000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:08.8110000-07:00|A75|Surging Tempest|36.34|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:30:08.8560000-07:00|40022550|Zeromus|0001B4B0|3054920||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:08.4530000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:30:08.9450000-07:00|40022550|Zeromus|0001B4B1|3053156||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:08.9450000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|363D0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|3054920|40478540|10000|10000|||100.00|80.10|0.00|0.00|57709|80739|4640|10000|||101.52|96.97|0.00|-3.05|0001B4B4|0|1| +39|2023-10-06T20:30:08.9890000-07:00|10FF0003|Gegehi Gehi|54044|73085|5150|10000|||100.48|98.68|0.00|-3.11| +261|2023-10-06T20:30:08.6340000-07:00|Change|40022DE3||||||| +21|2023-10-06T20:30:09.0780000-07:00|40022E1B|Ruby Ifrit|64FC|Inferno|40022550|Zeromus|150003|61FE0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|3053156|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||101.80|101.27|0.00|-3.14|0001B4B5|0|1| +37|2023-10-06T20:30:09.1230000-07:00|40022550|Zeromus|0001B4AF|3046017||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:09.2570000-07:00|10FF0007|Kehabiqo Febiqo|107367|128564|10000|10000|||100.08|93.86|0.00|-3.14| +21|2023-10-06T20:30:09.2570000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D724003|314D0000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|3046017|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.05|96.97|0.00|-3.13|0001B4B6|0|1| +21|2023-10-06T20:30:09.2570000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|4A2E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|106082|128564|10000|10000|||100.08|93.86|0.00|-3.14|3046017|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B4B7|0|1| +38|2023-10-06T20:30:09.2570000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.05|96.97|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T20:30:09.2570000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:30:09.2570000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:30:08.8640000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:30:08.8640000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:30:08.8640000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:30:08.8640000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:30:08.8640000-07:00|Change|4002256B||||||||| +20|2023-10-06T20:30:09.3450000-07:00|4002256A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.15|91.11|0.00|0.00| +20|2023-10-06T20:30:09.3450000-07:00|4002256B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|113.65|109.11|0.00|0.00| +20|2023-10-06T20:30:09.3450000-07:00|4002256C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.15|100.11|0.00|0.00| +20|2023-10-06T20:30:09.3450000-07:00|4002256D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.71|96.92|0.00|0.00| +20|2023-10-06T20:30:09.3450000-07:00|4002256E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.62|98.08|0.00|0.00| +39|2023-10-06T20:30:09.4340000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +21|2023-10-06T20:30:09.4340000-07:00|10FF0008|Kokosaze Lulusaze|64EB|Crimson Cyclone|40022550|Zeromus|150003|40900000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|3046017|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||100.30|99.50|0.00|1.60|0001B4B8|0|1| +38|2023-10-06T20:30:09.4340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|0||100.30|99.50|0.00|1.60|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:09.4340000-07:00|AA4|Ifrit's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:30:09.4780000-07:00|40022550|Zeromus|0001B4B2|3036107||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:09.4780000-07:00|10FF0003|Gegehi Gehi|0001B4B2|54044|73085|5150|10000|1||100.48|98.68|0.00|-3.11|2300|0|0|01|040004D3|0|41F00000|| +39|2023-10-06T20:30:09.4780000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||100.05|96.97|0.00|-3.14| +38|2023-10-06T20:30:09.4780000-07:00|10FF0003|Gegehi Gehi|005A5A23|54044|73085|5150|10000|1||100.48|98.68|0.00|-3.11|0|0|0||||||||||||||||||| +24|2023-10-06T20:30:09.5220000-07:00|40022550|Zeromus|DoT|A92|4CC|3036107|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9300|10000|||100.30|99.50|0.00|-3.13| +38|2023-10-06T20:30:09.5220000-07:00|40022550|Zeromus|005A5A00|3034879|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:30:09.6120000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15D0|107367|128564|10000|10000|||100.08|93.81|0.00|3.11|10FF0006|Wowobora Gogobora|0|57709|80739|4240|10000|||101.52|96.97|0.00|-3.05| +37|2023-10-06T20:30:09.6120000-07:00|40022550|Zeromus|0001B4B4|3020994||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:09.6120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112951|128564|10000|10000|0||100.08|93.81|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:09.1800000-07:00|Change|10FF0006||||||||||||||||||||| +22|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19360000|560E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|0001B4B9|0|8| +22|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|18E40000|D3000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||100.05|96.97|0.00|-3.14|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|0001B4B9|1|8| +22|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|18F40000|EC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|54044|73085|5150|10000|||100.48|98.68|0.00|-3.11|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|0001B4B9|2|8| +22|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|190E0000|16000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57709|80739|4240|10000|||101.52|96.97|-0.02|-2.97|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|0001B4B9|3|8| +22|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19240000|390E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79111|79111|9300|10000|||100.30|99.50|0.00|-3.13|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|0001B4B9|4|8| +22|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|19730000|B80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||99.87|99.25|0.00|-2.97|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|0001B4B9|5|8| +22|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|197E0000|C9000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|8700|10000|||100.78|95.32|0.00|-3.09|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|0001B4B9|6|8| +22|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|19850000|D40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|112951|128564|10000|10000|||100.10|93.40|0.00|3.11|63199|80739|2800|10000|||100.18|97.70|0.00|-0.01|0001B4B9|7|8| +21|2023-10-06T20:30:09.6580000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40710003|42F70000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|3020994|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.87|99.25|0.00|-2.97|0001B4BA|0|1| +38|2023-10-06T20:30:09.6580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112951|128564|10000|10000|8||100.10|93.40|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:09.6580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:09.6580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|13||100.30|99.50|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:09.6580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:09.6580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63199|80739|1800|10000|12||100.18|97.70|0.00|-0.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:09.6580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:09.6580000-07:00|10FF0003|Gegehi Gehi|005A5A23|54044|73085|5150|10000|13||100.48|98.68|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:09.6580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:30:09.6580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||99.87|99.25|0.00|-2.97|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:09.6580000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:30:09.2700000-07:00|Change|10FF0003||| +21|2023-10-06T20:30:09.7900000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|144B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|57709|80739|4240|10000|||101.52|96.98|0.00|-2.19|73956|77430|10000|10000|||98.71|97.61|0.00|2.93|0001B4BB|0|1| +261|2023-10-06T20:30:09.3640000-07:00|Change|4002256C||||||||||| +261|2023-10-06T20:30:09.3640000-07:00|Change|4002256E||||||||||| +261|2023-10-06T20:30:09.3640000-07:00|Change|4002256D||||||||||| +261|2023-10-06T20:30:09.3640000-07:00|Change|4002256B||||||||||| +261|2023-10-06T20:30:09.3640000-07:00|Change|4002256A||||||||||| +37|2023-10-06T20:30:09.8800000-07:00|40022550|Zeromus|0001B4B6|3008373||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:09.8800000-07:00|10FF0002|Suchichi Suchi|0001B4B6|90128|90128|10000|10000|18||100.05|96.97|0.00|-3.14|1600|0|0|01|02000323|0|41F00000|| +38|2023-10-06T20:30:09.8800000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||100.05|96.97|0.00|-3.14|0|0|0|||||||||||||||| +261|2023-10-06T20:30:09.4540000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T20:30:10.0140000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8900|10000|||100.78|95.06|0.00|3.13| +37|2023-10-06T20:30:10.0590000-07:00|10FF0007|Kehabiqo Febiqo|0001B4B7|93961||||||100.72|91.80|0.00|3.11| +21|2023-10-06T20:30:10.1030000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3008373|40478540|10000|10000|||100.00|80.10|0.00|0.00|54044|73085|5150|10000|||100.48|98.68|0.00|-3.11|0001B4BC|0|1| +21|2023-10-06T20:30:10.1030000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3008373|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||99.94|99.68|0.00|-3.14|0001B4BD|0|1| +21|2023-10-06T20:30:10.1480000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3008373|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||100.30|99.50|0.00|-3.13|0001B4BE|0|1| +261|2023-10-06T20:30:09.7660000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:30:10.1910000-07:00|40022550|Zeromus|0001B4BA|2991230||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:10.1920000-07:00|40022550|Zeromus|DoT|0|3468|3008373|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|3008373|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:10.1920000-07:00|40022550|Zeromus|005A5A00|2977814|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:10.2360000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|80739|80739| +21|2023-10-06T20:30:10.2360000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63199|80739|1800|10000|||100.18|97.70|0.00|-0.01|63199|80739|1800|10000|||100.18|97.70|0.00|-0.01|0001B4BF|0|1| +37|2023-10-06T20:30:10.2810000-07:00|40022550|Zeromus|0001B4B8|2961286||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:10.3260000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|710003|13CD0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|3008373|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||100.79|94.46|0.00|3.13|0001B4C0|0|1| +261|2023-10-06T20:30:09.8760000-07:00|Change|40022568||||||||| +261|2023-10-06T20:30:09.8760000-07:00|Change|40022567||||||||| +261|2023-10-06T20:30:09.8760000-07:00|Change|40022569||||||||| +20|2023-10-06T20:30:10.3700000-07:00|40022566|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.20|82.15|0.00|0.00| +20|2023-10-06T20:30:10.3700000-07:00|40022567|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.20|104.65|0.00|0.00| +20|2023-10-06T20:30:10.3700000-07:00|40022568|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.70|86.65|0.00|0.00| +20|2023-10-06T20:30:10.3700000-07:00|40022569|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|101.35|96.07|0.00|0.00| +37|2023-10-06T20:30:10.4600000-07:00|40022550|Zeromus|0001B4B3|2940658||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:09.9950000-07:00|Change|40022566||||||||||||||||| +21|2023-10-06T20:30:10.4600000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|C30F|A788000|0|0|0|0|0|0|0|0|0|0|93961|128564|10000|10000|||100.76|91.75|0.00|3.11|93961|128564|10000|10000|||100.76|91.75|0.00|3.11|0001B4C1|0|1| +39|2023-10-06T20:30:10.5040000-07:00|10FF0006|Wowobora Gogobora|58516|80739|4445|10000|||100.97|100.58|0.00|-0.20| +261|2023-10-06T20:30:10.2140000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:30:10.5930000-07:00|10FF0006|Wowobora Gogobora|0001B4BB|63711||||||101.20|101.21|0.00|-0.01| +37|2023-10-06T20:30:10.6390000-07:00|40022550|Zeromus|0001B4BC|2940657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:10.6390000-07:00|40022550|Zeromus|0001B4BD|2937273||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:10.6820000-07:00|40022550|Zeromus|0001B4BE|2937087||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:10.6830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2937273|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||101.28|91.94|0.00|-2.19|0001B4C2|0|1| +31|2023-10-06T20:30:10.6830000-07:00|10FF0001||||| +21|2023-10-06T20:30:10.7280000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2937273|40478540|10000|10000|||100.00|80.10|0.00|0.00|63711|80739|4445|10000|||101.36|101.77|-0.02|0.09|0001B4C3|0|1| +37|2023-10-06T20:30:10.7720000-07:00|10FF0004|Buhojaqe Zijaqe|0001B4B9|69653|80739|1800|10000|12||100.19|97.70|0.00|0.71|1C00|0|0|01|07000129|0|41E76E94|| +37|2023-10-06T20:30:10.7720000-07:00|10FF0004|Buhojaqe Zijaqe|0001B4BF|69653|80739|3800|10000|12||100.19|97.70|0.00|0.71|1C00|0|0|0| +261|2023-10-06T20:30:10.3090000-07:00|Change|40022567||||||||||| +261|2023-10-06T20:30:10.3090000-07:00|Change|40022569||||||||||| +261|2023-10-06T20:30:10.3090000-07:00|Change|40022568||||||||||| +39|2023-10-06T20:30:10.8620000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||99.41|98.89|0.00|-3.14| +04|2023-10-06T20:30:10.4120000-07:00|40022DE3|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||98.19|101.98|0.00|2.86| +261|2023-10-06T20:30:10.4120000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:30:10.4120000-07:00|Remove|40022DE3| +37|2023-10-06T20:30:10.9500000-07:00|40022550|Zeromus|0001B4C0|2932018||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:10.9510000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|101.42|102.76|0.00|0.04| +37|2023-10-06T20:30:11.0400000-07:00|10FF0007|Kehabiqo Febiqo|0001B4C1|93961|128564|10000|10000|15||100.15|90.90|0.00|3.11|1500|0|0|03|06000A76|0190|41000000|||||||||| +26|2023-10-06T20:30:11.0400000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +26|2023-10-06T20:30:11.0400000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:30:11.0400000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +37|2023-10-06T20:30:11.0400000-07:00|40022550|Zeromus|0001B4B5|2906932||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:11.0400000-07:00|10FF0003|Gegehi Gehi|0001B4B9|60432|73085|5150|10000|13||103.32|98.78|0.00|3.10|2302|0|0|01|05000129|0|41E54DCF|| +39|2023-10-06T20:30:11.0400000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9500|10000|||102.22|99.73|0.00|1.65| +38|2023-10-06T20:30:11.0400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|93961|128564|10000|10000|15||100.15|90.90|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:11.0400000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +261|2023-10-06T20:30:10.5120000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T20:30:11.1290000-07:00|10FF0004|Buhojaqe Zijaqe|70460|80739|4000|10000|||102.30|97.58|-0.02|1.30| +21|2023-10-06T20:30:11.1290000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|11BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2932018|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||101.58|95.43|0.00|-3.12|0001B4C4|0|1| +37|2023-10-06T20:30:11.1710000-07:00|10FF0006|Wowobora Gogobora|0001B4B9|70125||||||101.35|103.15|0.00|-1.36| +37|2023-10-06T20:30:11.2160000-07:00|40022550|Zeromus|0001B4C2|2904691||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:11.2600000-07:00|40022550|Zeromus|0001B4C3|2904655||||||100.00|80.10|0.00|0.00| +35|2023-10-06T20:30:11.2600000-07:00|4002254F||40022550|Zeromus|0000|0000|0109|||| +21|2023-10-06T20:30:11.2600000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|712003|5FE00000|4|26458000|0|0|0|0|0|0|0|0|0|0|0|0|2906932|40478540|10000|10000|||100.00|80.10|0.00|0.00|93961|128564|10000|10000|||99.79|90.61|0.00|3.11|0001B4C5|0|1| +257|2023-10-06T20:30:11.2600000-07:00|80034E7C|00020001|03|00|0000| +261|2023-10-06T20:30:10.8550000-07:00|Change|40022565||||||||| +00|2023-10-06T20:30:10.0000000-07:00|0044|Zeromus|To the last you would deny my heart's desire...| +37|2023-10-06T20:30:11.3050000-07:00|10FF0008|Kokosaze Lulusaze|0001B4B9|79111|79111|9500|10000|13||104.21|99.35|0.00|1.66|1B04|0|0|01|03000129|0|41E32D0B|| +20|2023-10-06T20:30:11.3490000-07:00|40022550|Zeromus|8CFA|Flow of the Abyss|40022550|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:11.3490000-07:00|40022565|Zeromus|8B82|Dimensional Surge|40022565|Zeromus|8.700|80.10|100.00|0.00|1.57| +261|2023-10-06T20:30:10.8550000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:30:10.8550000-07:00|Change|40022550||||||||||||| +37|2023-10-06T20:30:11.4390000-07:00|10FF0005|Wuwuchu Wuchu|0001B4B9|90055|90055|10000|10000|11||99.65|94.89|0.00|3.11|2705|0|0|01|05000129|0|41E21A9C|| +21|2023-10-06T20:30:11.4390000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|ABB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2904655|40478540|10000|10000|||100.00|80.10|0.00|0.00|93961|128564|10000|10000|||99.71|90.55|0.00|3.11|0001B4C6|0|1| +21|2023-10-06T20:30:11.5280000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2904655|40478540|10000|10000|||100.00|80.10|0.00|0.00|70460|80739|4000|10000|||105.31|97.57|0.00|1.50|0001B4C7|0|1| +261|2023-10-06T20:30:11.1760000-07:00|Change|10FF0006||||||||||||||||||| +20|2023-10-06T20:30:11.6170000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|1.944|106.75|98.85|0.00|3.12| +261|2023-10-06T20:30:11.1760000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:30:11.6620000-07:00|40022550|Zeromus|0001B4C4|2900114||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:11.7070000-07:00|10FF0007|Kehabiqo Febiqo|0001B4B9|100494|128564|10000|10000|15||99.68|90.53|0.00|-2.86|1507|0|0|01|05000129|0|41DFF5BE|| +261|2023-10-06T20:30:11.2720000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:11.2720000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:30:11.3640000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:30:11.3640000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T20:30:11.7520000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A720003|37290000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|2900114|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||105.57|93.88|0.00|-3.01|0001B4C8|0|1| +38|2023-10-06T20:30:11.7520000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||105.57|93.88|0.00|-3.01|0|0|0|||||||||||||||| +30|2023-10-06T20:30:11.7520000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:30:11.7520000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +20|2023-10-06T20:30:11.7970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|107.35|97.52|0.00|1.58| +37|2023-10-06T20:30:11.8860000-07:00|40022550|Zeromus|0001B4C5|2875570||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:11.8860000-07:00|10FF0007|Kehabiqo Febiqo|0001B4C5|110291||||||99.65|90.53|0.00|-2.18| +21|2023-10-06T20:30:11.8860000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|710003|2E170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2900114|40478540|10000|10000|||100.00|80.10|0.00|0.00|100494|128564|10000|10000|||99.65|90.53|0.00|-2.18|0001B4C9|0|1| +21|2023-10-06T20:30:11.8860000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37910000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|2900114|40478540|10000|10000|||100.00|80.10|0.00|0.00|70125|80739|4445|10000|||101.27|103.56|0.00|-3.09|0001B4CA|0|1| +261|2023-10-06T20:30:11.4620000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:30:11.9760000-07:00|40022550|Zeromus|0001B4C6|2872823||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:11.9760000-07:00|10FF0008|Kokosaze Lulusaze|651D|Crimson Strike|40022550|Zeromus|150003|45F70000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|2875570|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||107.42|97.79|0.00|2.13|0001B4CB|0|1| +23|2023-10-06T20:30:12.0200000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +39|2023-10-06T20:30:12.0200000-07:00|10FF0003|Gegehi Gehi|61162|73085|5350|10000|||107.61|98.80|-0.01|-2.76| +37|2023-10-06T20:30:12.0650000-07:00|40022550|Zeromus|0001B4C7|2872584||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:12.1090000-07:00|10FF0005|Wuwuchu Wuchu|5F3A|Shadow of Death|40022550|Zeromus|712003|43A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2872823|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||98.30|90.88|0.00|-2.76|0001B4CC|0|1| +38|2023-10-06T20:30:12.1090000-07:00|40022550|Zeromus|005A5A00|2872584|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:12.1090000-07:00|A1A|Death's Design|46.58|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +39|2023-10-06T20:30:12.2420000-07:00|10FF0007|Kehabiqo Febiqo|111576|128564|10000|10000|||99.14|89.96|0.00|-3.04| +37|2023-10-06T20:30:12.4200000-07:00|40022550|Zeromus|0001B4C8|2858463||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:12.4200000-07:00|10FF0002|Suchichi Suchi|0001B4C8|90128|90128|10000|10000|18||106.32|93.64|0.00|-2.69|1600|0|0|01|03000747|0|41F00000|| +39|2023-10-06T20:30:12.4200000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +38|2023-10-06T20:30:12.4200000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||106.32|93.64|0.00|-2.69|0|0|0|||||||||||||||| +39|2023-10-06T20:30:12.4640000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||106.46|93.48|0.00|-2.65| +37|2023-10-06T20:30:12.5090000-07:00|40022550|Zeromus|0001B4C9|2846664||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:12.5540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|15D7|111576|128564|10000|10000|||98.76|89.52|0.00|-2.87|10FF0006|Wowobora Gogobora|0|70125|80739|4045|10000|||100.61|103.81|0.00|-1.68| +37|2023-10-06T20:30:12.5540000-07:00|40022550|Zeromus|0001B4CA|2832439||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:12.5540000-07:00|40022550|Zeromus|DoT|A92|9E9|2846664|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9500|10000|||109.69|96.12|0.00|2.67| +21|2023-10-06T20:30:12.5540000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70125|80739|4045|10000|||100.61|103.81|0.00|-1.68|70125|80739|4045|10000|||100.61|103.81|0.00|-1.68|0001B4CD|0|1| +21|2023-10-06T20:30:12.5540000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022550|Zeromus|752003|39610000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|2846664|40478540|10000|10000|||100.00|80.10|0.00|0.00|70460|80739|4000|10000|||108.33|96.34|0.00|2.78|0001B4CE|0|1| +38|2023-10-06T20:30:12.5540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117167|128564|10000|10000|15||98.76|89.52|0.00|-2.87|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:12.5540000-07:00|40022550|Zeromus|005A5A00|2829902|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:30:12.2030000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:30:12.2030000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:30:12.7310000-07:00|40022550|Zeromus|0001B4CB|2811991||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:12.8200000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|26FC0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2811991|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||101.94|90.13|0.00|-2.95|0001B4CF|0|1| +38|2023-10-06T20:30:12.8200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8900|10000|8||101.94|90.13|0.00|-2.95|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:12.8200000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +261|2023-10-06T20:30:12.3870000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T20:30:12.9550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2811991|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8900|10000|||101.94|90.13|0.00|-2.95|0001B4D0|0|1| +31|2023-10-06T20:30:12.9550000-07:00|10FF0001||||| +21|2023-10-06T20:30:12.9990000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21CE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|117167|128564|10000|10000|||98.71|89.40|0.00|-1.99|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B4D1|0|1| +39|2023-10-06T20:30:12.9990000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9100|10000|||101.94|90.13|0.00|-2.95| +261|2023-10-06T20:30:12.4770000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:12.5750000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:30:13.0440000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022550|Zeromus|452003|38220000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|2811991|40478540|10000|10000|||100.00|80.10|0.00|0.00|61162|73085|5350|10000|||107.62|98.80|0.00|-2.75|0001B4D2|0|1| +38|2023-10-06T20:30:13.0440000-07:00|10FF0003|Gegehi Gehi|005A5A23|61162|73085|5150|10000|13||107.62|98.80|0.00|-2.75|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:13.0440000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:30:13.0440000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:30:12.5750000-07:00|Change|40022E1B||||| +261|2023-10-06T20:30:12.5750000-07:00|Change|10FF0008||||||||| +38|2023-10-06T20:30:13.1330000-07:00|40022E24||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:30:13.1330000-07:00|40022E24||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:30:13.1770000-07:00|10FF0006|Wowobora Gogobora|0001B4CD|70125|80739|4045|10000|13||96.96|104.50|0.00|-1.45|2800|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T20:30:13.1770000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +24|2023-10-06T20:30:13.1770000-07:00|40022550|Zeromus|DoT|0|2507|2811991|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|2811991|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:13.1770000-07:00|40022550|Zeromus|005A5A00|2802512|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:13.2670000-07:00|40022550|Zeromus|0001B4CC|2785192||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:13.3120000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2785192|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||109.08|92.08|0.00|2.90|0001B4D3|0|1| +21|2023-10-06T20:30:13.3120000-07:00|4002256A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.15|91.11|0.00|0.00|0001B4D4|0|0| +21|2023-10-06T20:30:13.3120000-07:00|4002256B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.65|109.11|0.00|0.00|0001B4D5|0|0| +21|2023-10-06T20:30:13.3120000-07:00|4002256C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.15|100.11|0.00|0.00|0001B4D6|0|0| +21|2023-10-06T20:30:13.3120000-07:00|4002256D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.71|96.92|0.00|0.00|0001B4D7|0|0| +21|2023-10-06T20:30:13.3120000-07:00|4002256E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.62|98.08|0.00|0.00|0001B4D8|0|0| +21|2023-10-06T20:30:13.3120000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|1AC90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2785192|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||97.06|91.57|-0.02|-1.87|0001B4D9|0|1| +261|2023-10-06T20:30:12.7980000-07:00|Change|4002256A||||||||||| +261|2023-10-06T20:30:12.7980000-07:00|Change|4002256B||||||||||| +261|2023-10-06T20:30:12.7980000-07:00|Change|4002256D||||||||||| +261|2023-10-06T20:30:12.7980000-07:00|Change|4002256E||||||||||| +261|2023-10-06T20:30:12.7980000-07:00|Change|4002256C||||||||||| +03|2023-10-06T20:30:12.9170000-07:00|40022E24|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||107.62|92.05|0.00|0.43| +261|2023-10-06T20:30:12.9170000-07:00|Add|40022E24||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:12.9170000-07:00|Change|40022E24||| +38|2023-10-06T20:30:13.4000000-07:00|40022E24|Carbuncle|005A5A00|72376|75851|10000|10000|0||107.62|92.05|0.00|0.43|0|0|0||||||| +26|2023-10-06T20:30:13.4000000-07:00|30|Well Fed|1846.07|10FF0008|Kokosaze Lulusaze|40022E24|Carbuncle|2964|75851|79111| +26|2023-10-06T20:30:13.4000000-07:00|77B|Summon Order|30.00|10FF0008|Kokosaze Lulusaze|40022E24|Carbuncle|01|75851|79111| +21|2023-10-06T20:30:13.4000000-07:00|10FF0008|Kokosaze Lulusaze|64C7|Radiant Aegis|10FF0008|Kokosaze Lulusaze|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||109.08|92.08|0.00|2.90|79111|79111|9500|10000|||109.08|92.08|0.00|2.90|0001B4DA|0|1| +21|2023-10-06T20:30:13.4000000-07:00|10FF0006|Wowobora Gogobora|5EFC|Toxikon II|40022550|Zeromus|754003|44C00000|1B|5EFC8000|0|0|0|0|0|0|0|0|0|0|0|0|2785192|40478540|10000|10000|||100.00|80.10|0.00|0.00|70125|80739|4045|10000|||95.72|104.09|0.00|-1.71|0001B4DB|0|1| +261|2023-10-06T20:30:13.0370000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:30:13.4890000-07:00|40022550|Zeromus|0001B4D0|2783439||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:13.4890000-07:00|40022550|Zeromus|0001B4CE|2768750||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:13.4890000-07:00|10FF0006|Wowobora Gogobora|70932|80739|4250|10000|||95.12|103.81|0.00|2.91| +21|2023-10-06T20:30:13.7130000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|17020000|4|248B8000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|2768750|40478540|10000|10000|||100.00|80.10|0.00|0.00|117167|128564|10000|10000|||99.87|88.45|0.00|-1.99|0001B4DC|0|1| +21|2023-10-06T20:30:13.7570000-07:00|40022E24|Carbuncle|64F1|Radiant Aegis|10FF0008|Kokosaze Lulusaze|CE0E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||110.26|91.45|0.00|2.00|72376|75851|10000|10000|||107.59|92.03|0.00|0.68|0001B4DD|0|1| +38|2023-10-06T20:30:13.7570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|33||110.26|91.45|0.00|2.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:13.7570000-07:00|A8E|Radiant Aegis|29.96|40022E24|Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|75851| +37|2023-10-06T20:30:13.8010000-07:00|10FF0007|Kehabiqo Febiqo|0001B4D1|125821||||||99.93|88.40|0.00|-3.14| +37|2023-10-06T20:30:13.8460000-07:00|40022550|Zeromus|0001B4D3|2768576||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:13.8460000-07:00|40022550|Zeromus|0001B4D2|2754206||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:13.8460000-07:00|40022550|Zeromus|0001B4D9|2747349||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:13.3380000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T20:30:13.8900000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||96.81|92.44|0.00|-1.59| +21|2023-10-06T20:30:13.9350000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|16BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2747349|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.44|89.07|0.00|-1.64|0001B4DE|0|1| +39|2023-10-06T20:30:14.0250000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9700|10000|||111.95|90.67|0.00|2.00| +21|2023-10-06T20:30:14.0690000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|554003|31D80000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|2747349|40478540|10000|10000|||100.00|80.10|0.00|0.00|61162|73085|5150|10000|||107.62|98.80|0.00|-2.75|0001B4DF|0|1| +38|2023-10-06T20:30:14.0690000-07:00|10FF0003|Gegehi Gehi|005A5A23|61162|73085|4850|10000|13||107.62|98.80|0.00|-2.75|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:14.0690000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:30:14.0690000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:30:13.6320000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:13.6320000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:30:13.6320000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:14.1140000-07:00|40022550|Zeromus|0001B4CF|2737369||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:14.1140000-07:00|10FF0001|Sesuga Sapisuga|0001B4CF|127791|127791|9500|10000|8||100.98|89.63|0.00|-2.84|1300|0|0|0| +39|2023-10-06T20:30:14.1580000-07:00|10FF0004|Buhojaqe Zijaqe|71267|80739|3800|10000|||108.41|91.28|-0.02|-2.35| +34|2023-10-06T20:30:14.1580000-07:00|40022E24|Carbuncle|40022E24|Carbuncle|01| +261|2023-10-06T20:30:13.7520000-07:00|Change|40022E24||||||||| +37|2023-10-06T20:30:14.2470000-07:00|40022550|Zeromus|0001B4DC|2731479||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:14.2470000-07:00|10FF0007|Kehabiqo Febiqo|0001B4DC|128564||||||100.02|88.30|0.00|-3.14| +21|2023-10-06T20:30:14.2470000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|26880000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|2737369|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.44|89.07|0.00|-1.64|0001B4E0|0|1| +38|2023-10-06T20:30:14.2470000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||107.44|89.07|0.00|-1.64|0|0|0|||||||||||||||| +30|2023-10-06T20:30:14.2470000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:30:13.8640000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:30:14.3360000-07:00|40022566|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.20|82.15|0.00|0.00|0001B4E1|0|0| +21|2023-10-06T20:30:14.3360000-07:00|40022567|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.20|104.65|0.00|0.00|0001B4E2|0|0| +21|2023-10-06T20:30:14.3360000-07:00|40022568|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.70|86.65|0.00|0.00|0001B4E3|0|0| +21|2023-10-06T20:30:14.3360000-07:00|40022569|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.35|96.07|0.00|0.00|0001B4E4|0|0| +261|2023-10-06T20:30:13.9850000-07:00|Change|40022567||||||||||| +27|2023-10-06T20:30:14.3800000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0017|0000|0000|0000| +261|2023-10-06T20:30:13.9850000-07:00|Change|40022566||||||||||| +27|2023-10-06T20:30:14.3800000-07:00|10FF0002|Suchichi Suchi|0000|0000|0017|0000|0000|0000| +27|2023-10-06T20:30:14.3800000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0017|0000|0000|0000| +261|2023-10-06T20:30:13.9850000-07:00|Change|40022568||||||||||| +27|2023-10-06T20:30:14.3800000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0017|0000|0000|0000| +27|2023-10-06T20:30:14.3800000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0017|0000|0000|0000| +27|2023-10-06T20:30:14.3800000-07:00|10FF0003|Gegehi Gehi|0000|0000|0017|0000|0000|0000| +27|2023-10-06T20:30:14.3800000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0017|0000|0000|0000| +27|2023-10-06T20:30:14.3800000-07:00|10FF0005|Wuwuchu Wuchu|0000|0000|0017|0000|0000|0000| +20|2023-10-06T20:30:14.4260000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|113.89|90.97|0.00|1.78| +38|2023-10-06T20:30:14.4260000-07:00|40022550|Zeromus|005A5A00|2731479|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:14.4260000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:30:14.4700000-07:00|40022550|Zeromus|0001B4DE|2725656||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:13.9850000-07:00|Change|40022569||||||||||| +21|2023-10-06T20:30:14.5160000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2725656|40478540|10000|10000|||100.00|80.10|0.00|0.00|70932|80739|4250|10000|||92.54|97.90|0.00|-3.11|0001B4E5|0|1| +37|2023-10-06T20:30:14.5600000-07:00|10FF0008|Kokosaze Lulusaze|0001B4DD|79111|79111|9700|10000|33||114.16|91.03|0.00|2.46|1B00|0|0|01|06000A8E|0|41E9957F|| +38|2023-10-06T20:30:14.5600000-07:00|40022E24|Carbuncle|005A5A00|72376|75851|10000|10000|0||107.59|92.03|0.00|1.73|0|0|0|||| +30|2023-10-06T20:30:14.5600000-07:00|77B|Summon Order|0.00|10FF0008|Kokosaze Lulusaze|40022E24|Carbuncle|01|75851|79111| +24|2023-10-06T20:30:14.6040000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|22B8|128564|128564|10000|10000|||100.02|88.30|0.00|-3.14|10FF0006|Wowobora Gogobora|1|70932|80739|4250|10000|||92.54|97.90|0.00|-3.11| +37|2023-10-06T20:30:14.6040000-07:00|40022550|Zeromus|0001B4DB|2708056||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:14.6040000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|714003|33700000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|2725656|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||96.60|92.76|0.00|-1.78|0001B4E6|0|1| +38|2023-10-06T20:30:14.6040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|15||100.02|88.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:14.6040000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:14.6930000-07:00|10FF0003|Gegehi Gehi|005A5A23|61162|73085|4850|10000|13||107.62|98.80|0.00|-2.75|0|0|0||||||||||||||||||| +261|2023-10-06T20:30:14.3960000-07:00|Change|10FF0003||| +37|2023-10-06T20:30:14.8270000-07:00|40022550|Zeromus|0001B4DF|2695296||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:14.8270000-07:00|10FF0003|Gegehi Gehi|0001B4DF|61162|73085|4850|10000|13||107.62|98.80|0.00|-2.75|2300|0|0|01|040004D2|0|41F00000|| +21|2023-10-06T20:30:14.8270000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|11E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2708056|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||100.02|88.30|0.00|-3.14|0001B4E7|0|1| +38|2023-10-06T20:30:14.8270000-07:00|10FF0003|Gegehi Gehi|005A5A23|61162|73085|4850|10000|13||107.62|98.80|0.00|-2.75|0|0|0||||||||||||||||||| +37|2023-10-06T20:30:14.8710000-07:00|40022550|Zeromus|0001B4E0|2685432||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:14.9160000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|1000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2708056|40478540|10000|10000|||100.00|80.10|0.00|0.00|71267|80739|3800|10000|||107.61|90.71|0.00|-2.76|0001B4E8|0|1| +39|2023-10-06T20:30:15.0050000-07:00|10FF0003|Gegehi Gehi|61892|73085|5050|10000|||107.62|98.80|0.00|-2.75| +38|2023-10-06T20:30:15.0050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|15||100.02|88.30|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:15.0050000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:30:15.0050000-07:00|10FF0006|Wowobora Gogobora|005A5A28|70932|80739|4800|10000|13||93.21|96.00|0.00|2.87|0|0|0|||||||||||||||| +26|2023-10-06T20:30:15.0050000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:30:15.0500000-07:00|40022550|Zeromus|0001B4E5|2685394||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:15.0500000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2685432|40478540|10000|10000|||100.00|80.10|0.00|0.00|61892|73085|5050|10000|||107.62|98.80|0.00|-2.75|0001B4E9|0|1| +37|2023-10-06T20:30:15.0950000-07:00|40022550|Zeromus|0001B4E6|2672226||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:15.0950000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|724003|48590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2685432|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.21|89.06|0.00|-1.98|0001B4EA|0|1| +261|2023-10-06T20:30:14.7300000-07:00|Change|10FF0008||||||||||||||||||||| +39|2023-10-06T20:30:15.2280000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||100.01|88.27|0.00|-2.98| +21|2023-10-06T20:30:15.2280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2672226|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9500|10000|||100.98|89.63|0.00|-3.04|0001B4EB|0|1| +31|2023-10-06T20:30:15.2280000-07:00|10FF0001||||| +261|2023-10-06T20:30:14.8420000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:30:15.3180000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|295C0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2672226|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9500|10000|||100.98|89.63|0.00|-3.04|0001B4EC|0|1| +38|2023-10-06T20:30:15.3180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9500|10000|8||100.98|89.63|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:15.3180000-07:00|76E|Sword Oath|23.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:30:15.3620000-07:00|40022550|Zeromus|0001B4E7|2667641||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:14.9540000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:30:15.4060000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +37|2023-10-06T20:30:15.4500000-07:00|40022550|Zeromus|0001B4E8|2667385||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:15.4500000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||106.89|89.04|0.00|-2.49| +24|2023-10-06T20:30:15.5390000-07:00|40022550|Zeromus|DoT|A92|4C0|2667385|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9700|10000|||114.79|91.17|0.00|-2.21| +38|2023-10-06T20:30:15.5390000-07:00|40022550|Zeromus|005A5A00|2666169|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:15.5830000-07:00|40022550|Zeromus|0001B4E9|2666168||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:15.7620000-07:00|40022550|Zeromus|0001B4EB|2664527||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:15.3540000-07:00|Change|40022E24||||||||| +38|2023-10-06T20:30:15.8510000-07:00|10FF0006|Wowobora Gogobora|005A5A28|70932|80739|4800|10000|13||96.82|92.37|-0.02|2.42|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:15.8510000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:30:15.8510000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70932|80739|4800|10000|||96.82|92.37|-0.02|2.42|70932|80739|4800|10000|||96.82|92.37|-0.02|2.42|0001B4ED|0|1| +261|2023-10-06T20:30:15.4460000-07:00|Change|10FF0003||| +39|2023-10-06T20:30:16.0280000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9700|10000|||102.38|87.26|0.00|2.87| +261|2023-10-06T20:30:15.6560000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:15.6560000-07:00|Change|10FF0006||||||||| +261|2023-10-06T20:30:15.6560000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:30:16.1630000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|22240000|A3E|340000|4|25CE8000|11B|258000|0|0|0|0|0|0|0|0|2664527|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||99.51|84.31|0.00|-2.67|0001B4EE|0|1| +21|2023-10-06T20:30:16.2090000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|200004|20F10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|70932|80739|4800|10000|||98.15|89.96|0.00|2.64|73956|77430|10000|10000|||98.71|97.61|0.00|3.09|0001B4EF|0|1| +24|2023-10-06T20:30:16.2090000-07:00|40022550|Zeromus|DoT|0|2F6A|2664527|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|2664527|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:16.2090000-07:00|40022550|Zeromus|005A5A00|2652389|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:16.2970000-07:00|40022550|Zeromus|0001B4EA|2633868||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:16.4730000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|107.62|98.80|0.00|-2.75| +39|2023-10-06T20:30:16.5170000-07:00|10FF0006|Wowobora Gogobora|71739|80739|5005|10000|||99.31|88.57|0.00|2.45| +21|2023-10-06T20:30:16.5170000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|D480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2633868|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||92.25|95.26|0.00|-1.68|0001B4F0|0|1| +37|2023-10-06T20:30:16.6050000-07:00|40022550|Zeromus|0001B4EC|2623280||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:16.6050000-07:00|10FF0001|Sesuga Sapisuga|0001B4EC|127791|127791|10000|10000|8||104.13|85.51|0.00|2.84|1300|0|0|0| +21|2023-10-06T20:30:16.6950000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|154003|60CC0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|2623280|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||114.79|91.17|0.00|-2.21|0001B4F1|0|1| +21|2023-10-06T20:30:16.7400000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C724003|2C5F0000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|2623280|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.49|85.95|0.00|-1.79|0001B4F2|0|1| +21|2023-10-06T20:30:16.7400000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2623280|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||107.49|85.95|0.00|-1.79|0001B4F3|0|1| +38|2023-10-06T20:30:16.7400000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|18||107.49|85.95|0.00|-1.79|0|0|0|||||||||||||||| +26|2023-10-06T20:30:16.7400000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:30:16.3320000-07:00|Change|10FF0008||||||||||||||||| +37|2023-10-06T20:30:16.7840000-07:00|40022550|Zeromus|0001B4EE|2614540||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:30:16.8290000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|CF00000|660E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|71739|80739|5005|10000|||98.56|87.72|0.00|2.98|71739|80739|5005|10000|||98.56|87.72|0.00|2.98|0001B4F4|0|6| +22|2023-10-06T20:30:16.8290000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|200004|14F00000|E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.80|83.91|0.00|-3.07|71739|80739|5005|10000|||98.56|87.72|0.00|2.98|0001B4F4|1|6| +22|2023-10-06T20:30:16.8290000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|D090000|B60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||104.13|85.51|0.00|2.84|71739|80739|5005|10000|||98.56|87.72|0.00|2.98|0001B4F4|2|6| +22|2023-10-06T20:30:16.8290000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|CDE0000|2C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||90.97|95.28|0.00|-1.57|71739|80739|5005|10000|||98.56|87.72|0.00|2.98|0001B4F4|3|6| +22|2023-10-06T20:30:16.8290000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|CFD0000|900E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||107.81|85.17|0.00|-1.96|71739|80739|5005|10000|||98.56|87.72|0.00|2.98|0001B4F4|4|6| +22|2023-10-06T20:30:16.8290000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|C720000|D30E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|71267|80739|3800|10000|||109.17|91.53|0.00|0.83|71739|80739|5005|10000|||98.56|87.72|0.00|2.98|0001B4F4|5|6| +38|2023-10-06T20:30:16.8290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||99.80|83.91|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:16.8290000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:16.8290000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:16.8290000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:16.8290000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||107.81|85.17|0.00|-1.96|0|0|0|||||||||||||||| +30|2023-10-06T20:30:16.8290000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:30:16.8290000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:16.8290000-07:00|10FF0006|Wowobora Gogobora|005A5A28|71739|80739|4105|10000|13||98.56|87.72|0.00|2.98|0|0|0|||||||||||||||| +30|2023-10-06T20:30:16.8290000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:16.8290000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:30:16.8290000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:16.8290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||104.13|85.51|0.00|2.84|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:16.8290000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:30:16.8290000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:16.8290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71267|80739|3800|10000|12||109.17|91.53|0.00|0.83|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:16.8290000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:30:16.8290000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:16.8290000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|11||90.97|95.28|0.00|-1.57|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:16.8290000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:30:16.8290000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:30:16.4250000-07:00|Change|10FF0002||||||||| +23|2023-10-06T20:30:16.8720000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|Cancelled| +39|2023-10-06T20:30:16.8720000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||90.35|95.26|0.00|-1.59| +04|2023-10-06T20:30:16.4250000-07:00|40022E1B|Ruby Ifrit|00|5A|10FF0008|00||10262|13505|0|75851|0|10000|||101.80|101.27|0.00|-3.14| +261|2023-10-06T20:30:16.5200000-07:00|Remove|40022E1B| +261|2023-10-06T20:30:16.5200000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:17.0050000-07:00|10FF0006|Wowobora Gogobora|0001B4EF|80172||||||96.91|87.13|0.00|-2.66| +37|2023-10-06T20:30:17.0510000-07:00|40022550|Zeromus|0001B4F0|2611140||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:17.0510000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9600|10000|||114.79|91.17|0.00|-2.21| +21|2023-10-06T20:30:17.0950000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C710003|36380000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|0|0|2614540|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||89.75|95.20|0.00|-1.62|0001B4F5|0|1| +261|2023-10-06T20:30:16.6400000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:16.6400000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:30:17.1400000-07:00|10FF0004|Buhojaqe Zijaqe|72074|80739|4000|10000|||108.83|91.80|0.00|0.07| +21|2023-10-06T20:30:17.1400000-07:00|10FF0001|Sesuga Sapisuga|03|Sprint|10FF0001|Sesuga Sapisuga|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||104.28|85.56|0.00|2.71|127791|127791|10000|10000|||104.28|85.56|0.00|2.71|0001B4F6|0|1| +261|2023-10-06T20:30:16.6400000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:30:16.7550000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:30:17.2740000-07:00|40022550|Zeromus|0001B4F3|2608103||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:17.2740000-07:00|10FF0002|Suchichi Suchi|0001B4F3|90128|90128|10000|10000|11||108.39|82.44|0.00|-1.74|1600|0|0|01|04000AA0|0|C1F00000|| +37|2023-10-06T20:30:17.2740000-07:00|10FF0001|Sesuga Sapisuga|0001B4F6|127791|127791|10000|10000|8||104.34|85.64|0.00|2.16|1300|0|0|01|04000032|1E|41200000|| +26|2023-10-06T20:30:17.2740000-07:00|32|Sprint|10.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|127791|127791| +37|2023-10-06T20:30:17.3180000-07:00|40022550|Zeromus|0001B4F1|2583323||||||100.00|80.10|0.00|0.00| +33|2023-10-06T20:30:17.3180000-07:00|80034E7C|80000004|BB7|00|00|00| +21|2023-10-06T20:30:17.3180000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2611140|40478540|10000|10000|||100.00|80.10|0.00|0.00|80172|80739|4105|10000|||95.30|86.72|0.00|-2.14|0001B4F7|0|1| +261|2023-10-06T20:30:16.8730000-07:00|Change|10FF0007||||||||| +22|2023-10-06T20:30:17.4980000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|0001B4F8|0|8| +22|2023-10-06T20:30:17.4980000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||96.20|83.96|0.00|-3.09|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|0001B4F8|1|8| +22|2023-10-06T20:30:17.4980000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||87.52|94.42|-0.02|-2.50|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|0001B4F8|2|8| +22|2023-10-06T20:30:17.4980000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||104.54|85.98|0.00|1.32|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|0001B4F8|3|8| +22|2023-10-06T20:30:17.4980000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||108.64|81.98|0.00|-2.28|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|0001B4F8|4|8| +22|2023-10-06T20:30:17.4980000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|72074|80739|4000|10000|||108.52|92.02|0.00|-0.25|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|0001B4F8|5|8| +22|2023-10-06T20:30:17.4980000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|61892|73085|5050|10000|||107.80|99.39|-0.02|-0.44|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|0001B4F8|6|8| +22|2023-10-06T20:30:17.4980000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||115.48|90.99|0.00|2.25|80172|80739|4105|10000|||93.85|86.72|0.00|-1.84|0001B4F8|7|8| +21|2023-10-06T20:30:17.4980000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|86C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2583323|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||104.54|85.98|0.00|1.32|0001B4F9|0|1| +31|2023-10-06T20:30:17.4980000-07:00|10FF0001||||| +38|2023-10-06T20:30:17.6310000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||108.90|81.82|0.00|-3.01|0|0|0|||||||||||||||| +37|2023-10-06T20:30:17.6750000-07:00|40022550|Zeromus|0001B4F5|2569443||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:17.7640000-07:00|10FF0006|Wowobora Gogobora|0001B4F4|80739|80739|4105|10000|13||92.55|86.08|0.00|-2.19|2800|0|0|01|04000A31|0|41E8DD2C|| +21|2023-10-06T20:30:17.8100000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|712003|401A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2569443|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||104.66|86.17|0.00|-2.49|0001B4FA|0|1| +38|2023-10-06T20:30:17.8100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|8||104.66|86.17|0.00|-2.49|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:17.8100000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +37|2023-10-06T20:30:17.8530000-07:00|40022550|Zeromus|0001B4F7|2569408||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:17.8980000-07:00|10FF0007|Kehabiqo Febiqo|0001B4F4|128564|128564|10000|10000|20||96.52|83.11|0.00|-3.11|1501|0|0|01|05000A31|0|41E7CCC9|| +39|2023-10-06T20:30:17.9880000-07:00|10FF0003|Gegehi Gehi|62622|73085|5250|10000|||107.85|98.14|0.00|-1.67| +20|2023-10-06T20:30:17.9880000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|2.774|118.41|90.36|0.00|1.74| +38|2023-10-06T20:30:17.9880000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|4655|10000|13||92.14|85.85|0.00|-2.19|0|0|0|||||||||||||||| +26|2023-10-06T20:30:17.9880000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:30:17.4980000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:30:17.5970000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:17.5970000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:18.0330000-07:00|10FF0001|Sesuga Sapisuga|0001B4F4|127791|127791|10000|10000|8||104.67|86.40|0.00|1.59|1302|0|0|01|0D000A31|0|41E6B84E|| +37|2023-10-06T20:30:18.0330000-07:00|40022550|Zeromus|0001B4F9|2567252||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:18.0770000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2569408|40478540|10000|10000|||100.00|80.10|0.00|0.00|72074|80739|4000|10000|||108.12|92.18|0.00|-1.14|0001B4FB|0|1| +261|2023-10-06T20:30:17.6970000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:30:17.8130000-07:00|Change|10FF0008||||||||||||||||||||| +37|2023-10-06T20:30:18.1660000-07:00|10FF0005|Wuwuchu Wuchu|0001B4F4|90055|90055|10000|10000|11||85.11|92.73|0.00|-2.88|2703|0|0|01|05000A31|0|41E5A5DF|| +21|2023-10-06T20:30:18.2110000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2567252|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.64|82.70|0.00|-3.12|0001B4FC|0|1| +39|2023-10-06T20:30:18.2550000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||96.70|82.64|0.00|-3.14| +37|2023-10-06T20:30:18.3000000-07:00|10FF0006|Wowobora Gogobora|0001B4F8|80739|80739|5355|10000|13||91.39|85.04|0.00|-2.27|2800|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:30:18.3000000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:18.3000000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:30:18.3000000-07:00|10FF0002|Suchichi Suchi|0001B4F4|90128|90128|10000|10000|11||113.14|81.04|0.00|1.75|1604|0|0|02|0A31|0|41E4957C|||||| +21|2023-10-06T20:30:18.3440000-07:00|40022550|Zeromus|8CFA|Flow of the Abyss|40022550|Zeromus|1B|8CFA8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2567252|40478540|10000|10000|||100.00|80.10|0.00|0.00|2567252|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B4FD|0|1| +261|2023-10-06T20:30:17.9360000-07:00|Change|40022550||||| +37|2023-10-06T20:30:18.3900000-07:00|40022550|Zeromus|0001B4F2|2555893||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:18.3900000-07:00|10FF0002|Suchichi Suchi|0001B4F2|90128|90128|10000|10000|11||113.16|81.03|0.00|1.72|1600|0|0|01|04000AA0|0|41F00000|| +38|2023-10-06T20:30:18.3900000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||113.16|81.03|0.00|1.72|0|0|0|||||||||||||||| +37|2023-10-06T20:30:18.4340000-07:00|10FF0007|Kehabiqo Febiqo|0001B4F8|128564|128564|10000|10000|20||96.74|82.59|0.00|-3.14|1501|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:30:18.4340000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:18.4340000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:30:18.4340000-07:00|10FF0004|Buhojaqe Zijaqe|0001B4F4|75260|80739|4000|10000|12||108.04|92.15|0.00|-2.48|1C05|0|0|01|07000A31|0|41E3830D|| +39|2023-10-06T20:30:18.4340000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +39|2023-10-06T20:30:18.4780000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||113.16|81.03|0.00|1.72| +24|2023-10-06T20:30:18.5230000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|156F|128564|128564|10000|10000|||96.74|82.59|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||96.74|82.59|0.00|-3.14| +24|2023-10-06T20:30:18.5230000-07:00|40022550|Zeromus|DoT|A92|500|2567252|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|5|79111|79111|9600|10000|||118.85|90.29|0.00|-2.22| +38|2023-10-06T20:30:18.5230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||96.82|82.51|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:18.5230000-07:00|40022550|Zeromus|005A5A00|2554613|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:18.5680000-07:00|10FF0005|Wuwuchu Wuchu|0001B4F8|90055|90055|10000|10000|11||83.66|94.31|0.00|3.14|2702|0|0|02|04000A3A|0|41700000|||||| +26|2023-10-06T20:30:18.5680000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:30:18.5680000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:30:18.6120000-07:00|40022550|Zeromus|0001B4FB|2554371||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:18.6120000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F712003|52100000|143E|340000|4|24928000|4|17A88000|11B|2A8000|0|0|0|0|0|0|2555893|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.82|82.51|0.00|-3.14|0001B4FE|0|1| +37|2023-10-06T20:30:18.7010000-07:00|10FF0001|Sesuga Sapisuga|0001B4F8|127791|127791|10000|10000|8||104.26|86.20|0.00|2.30|1303|0|0|02|02000A3A|0|41700000|||||| +26|2023-10-06T20:30:18.7010000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:30:18.7010000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:18.7010000-07:00|40022550|Zeromus|005A5A00|2554371|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:18.7010000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:30:18.7450000-07:00|40022550|Zeromus|0001B4FC|2551404||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:18.8350000-07:00|10FF0002|Suchichi Suchi|0001B4F8|90128|90128|10000|10000|11||113.38|80.99|0.00|1.69|1604|0|0|02|02000A3A|0|41700000|||||| +26|2023-10-06T20:30:18.8350000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:30:18.8350000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +261|2023-10-06T20:30:18.3340000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:30:18.9250000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2551404|40478540|10000|10000|||100.00|80.10|0.00|0.00|62622|73085|5250|10000|||104.49|95.92|0.00|-1.80|0001B4FF|0|1| +37|2023-10-06T20:30:18.9700000-07:00|10FF0004|Buhojaqe Zijaqe|0001B4F8|75260|80739|4000|10000|12||108.30|92.17|0.00|1.80|1C05|0|0|02|03000A3A|0|41700000|||||| +26|2023-10-06T20:30:18.9700000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:30:18.9700000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:18.9700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|33||118.88|90.29|0.00|-2.07|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:18.9700000-07:00|A92|Slipstream|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +39|2023-10-06T20:30:19.0130000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||104.50|84.09|0.00|2.64| +38|2023-10-06T20:30:19.0130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|20||96.82|82.51|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:19.0130000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:19.0130000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|128564|128564| +261|2023-10-06T20:30:18.5250000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:30:19.1020000-07:00|10FF0003|Gegehi Gehi|0001B4F8|62622|73085|5250|10000|13||102.95|95.51|0.00|-1.78|2306|0|0|02|03000A3A|0|41700000|||||| +26|2023-10-06T20:30:19.1020000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:30:19.1020000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:30:19.1020000-07:00|40022550|Zeromus|0001B4FA|2534994||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:19.1020000-07:00|40022E24|Carbuncle|75851|75851|10000|10000|||116.61|91.33|0.00|1.39| +24|2023-10-06T20:30:19.1920000-07:00|40022550|Zeromus|DoT|0|164B|2534994|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|2534994|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:19.1920000-07:00|40022550|Zeromus|005A5A00|2529287|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:19.1920000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +37|2023-10-06T20:30:19.2370000-07:00|10FF0008|Kokosaze Lulusaze|0001B4F8|79111|79111|9600|10000|33||118.88|90.29|0.00|-2.07|1B07|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:30:19.2370000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:30:19.2370000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:30:19.2370000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42720003|29EA0000|171D0E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|2534994|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||113.94|80.92|0.00|1.73|0001B500|0|1| +38|2023-10-06T20:30:19.2370000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||113.94|80.92|0.00|1.73|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:19.2370000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +20|2023-10-06T20:30:19.2820000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|85.52|82.53|-0.02|-2.09| +261|2023-10-06T20:30:18.8770000-07:00|Remove|40022E14| +261|2023-10-06T20:30:18.9900000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:30:18.9900000-07:00|Change|40022568||||||||| +261|2023-10-06T20:30:18.9900000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:30:18.9900000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:30:18.9900000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:30:18.9900000-07:00|Change|40022567||||||||| +261|2023-10-06T20:30:18.9900000-07:00|Change|4002256B||||||||| +37|2023-10-06T20:30:19.4590000-07:00|40022550|Zeromus|0001B4FF|2529286||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:19.5050000-07:00|40022567|Zeromus|8B74|Akh Rhai|40022567|Zeromus|1B|8B748000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||83.02|96.19|0.00|2.85|44|44|0|10000|||83.02|96.19|0.00|2.85|0001B501|0|1| +21|2023-10-06T20:30:19.5050000-07:00|40022568|Zeromus|8B74|Akh Rhai|40022568|Zeromus|1B|8B748000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||96.83|82.51|0.00|2.22|44|44|0|10000|||96.83|82.51|0.00|2.22|0001B502|0|1| +21|2023-10-06T20:30:19.5050000-07:00|40022569|Zeromus|8B74|Akh Rhai|40022569|Zeromus|1B|8B748000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||101.00|94.71|0.00|-1.77|44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B503|0|1| +21|2023-10-06T20:30:19.5050000-07:00|4002256A|Zeromus|8B74|Akh Rhai|4002256A|Zeromus|1B|8B748000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||104.56|83.99|0.00|2.64|44|44|0|10000|||104.56|83.99|0.00|2.64|0001B504|0|1| +21|2023-10-06T20:30:19.5050000-07:00|4002256B|Zeromus|8B74|Akh Rhai|4002256B|Zeromus|1B|8B748000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||118.88|90.30|0.00|-2.07|44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B505|0|1| +21|2023-10-06T20:30:19.5050000-07:00|4002256C|Zeromus|8B74|Akh Rhai|4002256C|Zeromus|1B|8B748000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||84.30|82.33|0.00|1.71|44|44|0|10000|||84.30|82.33|0.00|1.71|0001B506|0|1| +21|2023-10-06T20:30:19.5050000-07:00|4002256D|Zeromus|8B74|Akh Rhai|4002256D|Zeromus|1B|8B748000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||113.97|80.94|0.00|-1.63|44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B507|0|1| +21|2023-10-06T20:30:19.5050000-07:00|4002256E|Zeromus|8B74|Akh Rhai|4002256E|Zeromus|1B|8B748000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||109.81|92.37|0.00|-1.60|44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B508|0|1| +39|2023-10-06T20:30:19.5050000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5560|10000|||84.90|82.43|0.00|2.97| +261|2023-10-06T20:30:19.1040000-07:00|Change|40022E24||||||||| +21|2023-10-06T20:30:19.5490000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|D8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2529286|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||113.94|80.92|0.00|-1.63|0001B509|0|1| +21|2023-10-06T20:30:19.5490000-07:00|10FF0005|Wuwuchu Wuchu|5F37|Infernal Slice|40022550|Zeromus|40714003|526D0000|A3E|1008000|11B|5F378000|0|0|0|0|0|0|0|0|0|0|2529286|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.00|96.17|-0.01|2.86|0001B50A|0|1| +21|2023-10-06T20:30:19.5930000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|145F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|62622|73085|5250|10000|||100.09|93.70|0.00|-1.77|73956|77430|10000|10000|||98.71|97.61|0.00|2.91|0001B50B|0|1| +261|2023-10-06T20:30:19.1990000-07:00|Change|40022566||||||||| +261|2023-10-06T20:30:19.1990000-07:00|Change|40022562||||||||| +261|2023-10-06T20:30:19.1990000-07:00|Change|4002255E||||||||| +261|2023-10-06T20:30:19.1990000-07:00|Change|40022561||||||||| +261|2023-10-06T20:30:19.1990000-07:00|Change|40022560||||||||| +261|2023-10-06T20:30:19.1990000-07:00|Change|4002255F||||||||| +37|2023-10-06T20:30:19.6820000-07:00|40022550|Zeromus|0001B500|2518556|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0A9F|0|41C00000|| +26|2023-10-06T20:30:19.6820000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:30:19.6820000-07:00|10FF0002|Suchichi Suchi|0001B500|90128|90128|10000|10000|11||113.94|80.92|0.00|-1.63|1600|0|0|01|05000323|0|41F00000|| +21|2023-10-06T20:30:19.6820000-07:00|4002255E|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750003|10D00000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|75260|80739|4000|10000|||109.75|92.31|0.00|-0.47|44|44|0|10000|||82.83|105.27|0.00|0.00|0001B50C|0|1| +21|2023-10-06T20:30:19.6820000-07:00|4002255F|Zeromus|8B75|Akh Rhai|10FF0002|Suchichi Suchi|750003|5940000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||113.94|80.92|0.00|-1.63|44|44|0|10000|||98.22|87.32|0.00|0.00|0001B50D|0|1| +21|2023-10-06T20:30:19.6820000-07:00|40022560|Zeromus|8B75|Akh Rhai|10FF0006|Wowobora Gogobora|750003|B090000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5560|10000|||84.60|82.38|0.00|2.35|44|44|0|10000|||105.33|109.77|0.00|0.00|0001B50E|0|1| +21|2023-10-06T20:30:19.6820000-07:00|40022561|Zeromus|8B75|Akh Rhai|10FF0008|Kokosaze Lulusaze|750003|0|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||118.88|90.29|0.00|-2.07|44|44|0|10000|||91.21|108.42|0.00|0.00|0001B50F|0|1| +21|2023-10-06T20:30:19.6820000-07:00|40022562|Zeromus|8B75|Akh Rhai|10FF0001|Sesuga Sapisuga|750003|0|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||104.56|83.99|0.00|2.64|44|44|0|10000|||82.15|91.11|0.00|0.00|0001B510|0|1| +21|2023-10-06T20:30:19.6820000-07:00|40022563|Zeromus|8B75|Akh Rhai|10FF0003|Gegehi Gehi|750603|11A80000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|62622|73085|5250|10000|||100.09|93.70|0.00|-1.77|44|44|0|10000|||104.59|91.94|0.00|0.00|0001B511|0|1| +21|2023-10-06T20:30:19.6820000-07:00|40022564|Zeromus|8B75|Akh Rhai|10FF0007|Kehabiqo Febiqo|750003|0|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||96.82|82.51|0.00|2.22|44|44|0|10000|||100.00|80.10|0.00|-1.40|0001B512|0|1| +21|2023-10-06T20:30:19.6820000-07:00|40022566|Zeromus|8B75|Akh Rhai|10FF0005|Wuwuchu Wuchu|750003|A3E0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||82.99|96.18|0.00|2.33|44|44|0|10000|||96.20|82.15|0.00|0.00|0001B513|0|1| +38|2023-10-06T20:30:19.6820000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||113.94|80.92|0.00|-1.63|0|0|0||||||||||||||||||| +20|2023-10-06T20:30:19.7260000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|109.68|92.30|-0.02|-0.83| +21|2023-10-06T20:30:19.7260000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2518556|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||82.99|96.18|0.00|2.33|0001B514|0|1| +261|2023-10-06T20:30:19.2950000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T20:30:19.7700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2518556|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||104.56|83.99|0.00|2.64|0001B515|0|1| +31|2023-10-06T20:30:19.7700000-07:00|10FF0001||||| +37|2023-10-06T20:30:19.8600000-07:00|10FF0004|Buhojaqe Zijaqe|0001B50C|70956|80739|4000|10000|0||109.60|92.30|0.00|-1.14|1C00|0|0|01|07000000|0|0|| +37|2023-10-06T20:30:19.8600000-07:00|10FF0002|Suchichi Suchi|0001B50D|88700|90128|10000|10000|0||113.94|80.92|0.00|-1.63|1600|0|0|01|0|0|0|| +37|2023-10-06T20:30:19.8600000-07:00|10FF0006|Wowobora Gogobora|0001B50E|77914|80739|5560|10000|0||84.28|82.32|0.00|1.71|2800|0|0|01|04000000|0|0|| +37|2023-10-06T20:30:19.8600000-07:00|10FF0008|Kokosaze Lulusaze|0001B50F|79111|79111|9600|10000|17||118.88|90.29|0.00|-2.07|1B00|0|0|0| +37|2023-10-06T20:30:19.8600000-07:00|10FF0001|Sesuga Sapisuga|0001B510|127791|127791|10000|10000|2||104.56|83.99|0.00|2.64|1300|0|0|0| +37|2023-10-06T20:30:19.8600000-07:00|10FF0003|Gegehi Gehi|0001B511|58102|73085|5250|10000|0||98.77|93.73|0.00|-1.77|2300|0|0|01|05000000|0|0|| +37|2023-10-06T20:30:19.8600000-07:00|10FF0007|Kehabiqo Febiqo|0001B512|128564|128564|10000|10000|13||96.82|82.51|0.00|2.22|1500|0|0|0| +37|2023-10-06T20:30:19.8600000-07:00|10FF0005|Wuwuchu Wuchu|0001B513|87433|90055|10000|10000|0||82.99|96.18|0.00|2.33|2700|0|0|01|05000000|0|0|| +39|2023-10-06T20:30:19.8600000-07:00|10FF0005|Wuwuchu Wuchu|88333|90055|10000|10000|||82.99|96.18|0.00|2.33| +38|2023-10-06T20:30:19.8600000-07:00|10FF0002|Suchichi Suchi|005A5A16|88700|90128|10000|10000|0||113.94|80.92|0.00|-1.63|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:19.8600000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:19.8600000-07:00|10FF0006|Wowobora Gogobora|005A5A28|77914|80739|5560|10000|0||84.28|82.32|0.00|1.71|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:19.8600000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:19.8600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|70956|80739|4000|10000|0||109.60|92.30|0.00|-1.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:19.8600000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:19.8600000-07:00|10FF0003|Gegehi Gehi|005A5A23|58102|73085|5250|10000|0||98.77|93.73|0.00|-1.77|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:19.8600000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:30:19.8600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88333|90055|10000|10000|0||82.99|96.18|0.00|2.33|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:19.8600000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:30:19.3940000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:30:19.3940000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:30:20.0370000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9800|10000|||118.88|90.29|0.00|-2.07| +261|2023-10-06T20:30:19.4900000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:20.0820000-07:00|40022550|Zeromus|0001B509|2515086||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:20.0820000-07:00|40022550|Zeromus|0001B50A|2493985||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:20.1270000-07:00|40022550|Zeromus|0001B4FE|2472977||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:20.1270000-07:00|10FF0004|Buhojaqe Zijaqe|71763|80739|4200|10000|||109.45|92.28|0.00|-1.71| +21|2023-10-06T20:30:20.2160000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|752003|54650000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|2472977|40478540|10000|10000|||100.00|80.10|0.00|0.00|77914|80739|5560|10000|||84.28|82.32|0.00|1.71|0001B516|0|1| +261|2023-10-06T20:30:19.8400000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T20:30:20.2620000-07:00|40022550|Zeromus|0001B514|2468678||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:20.2620000-07:00|4002255E|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750003|381C0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|71763|80739|4200|10000|||109.36|92.27|-0.02|-2.06|44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B517|0|1| +21|2023-10-06T20:30:20.2620000-07:00|4002255F|Zeromus|8B75|Akh Rhai|10FF0002|Suchichi Suchi|750003|2F360000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|88700|90128|10000|10000|||113.94|80.92|0.00|-1.63|44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B518|0|1| +21|2023-10-06T20:30:20.2620000-07:00|40022560|Zeromus|8B75|Akh Rhai|10FF0006|Wowobora Gogobora|750003|37C40000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|77914|80739|5160|10000|||84.28|82.32|0.00|1.71|44|44|0|10000|||84.30|82.33|0.00|1.71|0001B519|0|1| +21|2023-10-06T20:30:20.2620000-07:00|40022561|Zeromus|8B75|Akh Rhai|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9800|10000|||118.88|90.29|0.00|-2.07|44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B51A|0|1| +21|2023-10-06T20:30:20.2620000-07:00|40022562|Zeromus|8B75|Akh Rhai|10FF0001|Sesuga Sapisuga|750003|111F0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||104.56|83.99|0.00|-2.28|44|44|0|10000|||104.56|83.99|0.00|2.64|0001B51B|0|1| +21|2023-10-06T20:30:20.2620000-07:00|40022563|Zeromus|8B75|Akh Rhai|10FF0003|Gegehi Gehi|750003|37C40000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|58102|73085|5250|10000|||97.90|93.76|0.00|-1.62|44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B51C|0|1| +21|2023-10-06T20:30:20.2620000-07:00|40022564|Zeromus|8B75|Akh Rhai|10FF0007|Kehabiqo Febiqo|750003|0|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||96.82|82.51|0.00|2.22|44|44|0|10000|||96.83|82.51|0.00|2.22|0001B51D|0|1| +21|2023-10-06T20:30:20.2620000-07:00|40022566|Zeromus|8B75|Akh Rhai|10FF0005|Wuwuchu Wuchu|750003|32F20000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|88333|90055|10000|10000|||82.99|96.18|0.00|2.47|44|44|0|10000|||83.02|96.19|0.00|2.85|0001B51E|0|1| +21|2023-10-06T20:30:20.2620000-07:00|10FF0008|Kokosaze Lulusaze|64DF|Ruby Rite|40022550|Zeromus|150003|51A20000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|2472977|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9800|10000|||118.88|90.29|0.00|-2.07|0001B51F|0|1| +257|2023-10-06T20:30:20.2620000-07:00|80034E7C|00200004|03|00|0000| +37|2023-10-06T20:30:20.3070000-07:00|40022550|Zeromus|0001B515|2466955||||||100.00|80.10|0.00|0.00| +22|2023-10-06T20:30:20.3070000-07:00|40022565|Zeromus|8B82|Dimensional Surge|10FF0005|Wuwuchu Wuchu|750003|CAC80000|100140E|6FD0000|1B|8B828000|0|0|0|0|0|0|0|0|0|0|88333|90055|10000|10000|||82.99|96.18|0.00|2.47|44|44|0|10000|||80.10|100.00|0.00|1.57|0001B520|0|2| +22|2023-10-06T20:30:20.3070000-07:00|40022565|Zeromus|8B82|Dimensional Surge|10FF0003|Gegehi Gehi|750003|EB8C0000|200140E|6FD0000|1B|8B828000|0|0|0|0|0|0|0|0|0|0|58102|73085|5250|10000|||97.90|93.76|0.00|-1.62|44|44|0|10000|||80.10|100.00|0.00|1.57|0001B520|1|2| +21|2023-10-06T20:30:20.3070000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|752003|4CE70000|4|26C68000|0|0|0|0|0|0|0|0|0|0|0|0|2472977|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||104.56|83.99|0.00|-2.28|0001B521|0|1| +38|2023-10-06T20:30:20.3070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|2||104.56|83.99|0.00|-2.28|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:20.3070000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:30:19.8400000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:30:19.8400000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:30:20.3950000-07:00|10FF0003|Gegehi Gehi|0001B50B|63317||||||97.63|93.63|0.00|-1.58| +21|2023-10-06T20:30:20.3950000-07:00|10FF0005|Wuwuchu Wuchu|5F47|Unveiled Gallows|40022550|Zeromus|710003|37050000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|2466955|40478540|10000|10000|||100.00|80.10|0.00|0.00|88333|90055|10000|10000|||82.99|96.18|0.00|2.59|0001B522|0|1| +38|2023-10-06T20:30:20.3950000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|88333|90055|10000|10000|0||82.99|96.18|0.00|2.59|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:20.3950000-07:00|6FD|Vulnerability Up|59.91|40022565|Zeromus|10FF0005|Wuwuchu Wuchu|01|90055|44| +26|2023-10-06T20:30:20.3950000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +37|2023-10-06T20:30:20.4400000-07:00|10FF0004|Buhojaqe Zijaqe|0001B517|57399||||||109.36|92.27|0.00|-2.06| +37|2023-10-06T20:30:20.4400000-07:00|10FF0002|Suchichi Suchi|0001B518|76614||||||113.93|80.93|0.00|-1.60| +37|2023-10-06T20:30:20.4400000-07:00|10FF0006|Wowobora Gogobora|0001B519|63638||||||84.28|82.32|0.00|1.71| +37|2023-10-06T20:30:20.4400000-07:00|10FF0008|Kokosaze Lulusaze|0001B51A|79111|79111|9500|10000|2||118.88|90.29|0.00|-2.07|1B00|0|0|01|06000000|0|0|| +37|2023-10-06T20:30:20.4400000-07:00|10FF0001|Sesuga Sapisuga|0001B51B|123408|127791|9000|10000|0||104.56|83.99|0.00|-2.28|1300|0|0|01|0D000000|0|0|| +37|2023-10-06T20:30:20.4400000-07:00|10FF0003|Gegehi Gehi|0001B51C|49041||||||97.63|93.63|0.00|-1.58| +37|2023-10-06T20:30:20.4400000-07:00|10FF0007|Kehabiqo Febiqo|0001B51D|128564|128564|10000|10000|6||96.82|82.51|0.00|2.22|1500|0|0|01|08000000|0|0|| +37|2023-10-06T20:30:20.4400000-07:00|10FF0005|Wuwuchu Wuchu|0001B51E|75291|90055|10000|10000|0||82.99|96.18|0.00|2.59|2700|0|0|01|07000A1B|01|C1F00000|| +38|2023-10-06T20:30:20.4400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||96.82|82.51|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:20.4400000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:30:20.4400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|2||118.88|90.29|0.00|-2.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:20.4400000-07:00|A8E|Radiant Aegis|0.00|40022E24|Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|75851| +38|2023-10-06T20:30:20.4400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123408|127791|9000|10000|0||104.56|83.99|0.00|-2.28|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:20.4400000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:30:20.4840000-07:00|10FF0005|Wuwuchu Wuchu|0001B520|23379|90055|10000|10000|0||82.98|96.15|-0.02|2.31|2700|0|0|02|050006FD|01|42700000|||||| +37|2023-10-06T20:30:20.5290000-07:00|10FF0003|Gegehi Gehi|0001B520|0|73085|0|10000|0||97.40|93.52|0.00|-1.55|2301|0|0|04|01000000|0|0|||||||||||||| +38|2023-10-06T20:30:20.5290000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|73085|0|10000|0||97.40|93.52|0.00|-1.55|0|0|0|||||||||| +30|2023-10-06T20:30:20.5290000-07:00|6FD|Vulnerability Up|0.00|4002256A|Zeromus|10FF0003|Gegehi Gehi|01|73085|44| +30|2023-10-06T20:30:20.5290000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +30|2023-10-06T20:30:20.5290000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +30|2023-10-06T20:30:20.5290000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:30:20.0720000-07:00|Change|10FF0008||||||||||||||||||||||| +24|2023-10-06T20:30:20.6610000-07:00|10FF0002|Suchichi Suchi|HoT|0|D3B|76614|90128|10000|10000|||113.87|81.01|0.00|-1.50|10FF0002|Suchichi Suchi|0|76614|90128|10000|10000|||113.87|81.01|0.00|-1.50| +38|2023-10-06T20:30:20.6610000-07:00|10FF0002|Suchichi Suchi|005A5A16|80001|90128|10000|10000|0||113.87|81.01|0.00|-1.50|0|0|0||||||||||||||||||| +21|2023-10-06T20:30:20.8390000-07:00|4002255E|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750003|36B50000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|57399|80739|4200|10000|||109.36|92.27|0.00|-2.06|44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B523|0|1| +21|2023-10-06T20:30:20.8390000-07:00|4002255F|Zeromus|8B75|Akh Rhai|10FF0002|Suchichi Suchi|750003|31BF0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|80001|90128|10000|10000|||113.67|81.14|0.00|-1.44|44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B524|0|1| +21|2023-10-06T20:30:20.8390000-07:00|40022560|Zeromus|8B75|Akh Rhai|10FF0006|Wowobora Gogobora|750003|34B50000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|63638|80739|5160|10000|||84.28|82.34|0.00|1.00|44|44|0|10000|||84.30|82.33|0.00|1.71|0001B525|0|1| +21|2023-10-06T20:30:20.8390000-07:00|40022561|Zeromus|8B75|Akh Rhai|10FF0008|Kokosaze Lulusaze|750603|27530000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||118.77|90.23|0.00|-2.05|44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B526|0|1| +21|2023-10-06T20:30:20.8390000-07:00|40022562|Zeromus|8B75|Akh Rhai|10FF0001|Sesuga Sapisuga|750003|1CB00000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|123408|127791|9000|10000|||104.56|83.99|0.00|-2.28|44|44|0|10000|||104.56|83.99|0.00|2.64|0001B527|0|1| +21|2023-10-06T20:30:20.8390000-07:00|40022563|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B528|0|0| +21|2023-10-06T20:30:20.8390000-07:00|40022564|Zeromus|8B75|Akh Rhai|10FF0007|Kehabiqo Febiqo|750003|1660000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||96.82|82.51|0.00|2.22|44|44|0|10000|||96.83|82.51|0.00|2.22|0001B529|0|1| +21|2023-10-06T20:30:20.8400000-07:00|40022566|Zeromus|8B75|Akh Rhai|10FF0005|Wuwuchu Wuchu|750003|3BBA0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|23379|90055|10000|10000|||82.72|95.62|0.00|2.36|44|44|0|10000|||83.02|96.19|0.00|2.85|0001B52A|0|1| +261|2023-10-06T20:30:20.4900000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:30:20.8840000-07:00|40022550|Zeromus|0001B51F|2446057||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:20.8840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|22CC|128564|128564|10000|10000|||96.82|82.51|0.00|2.22|10FF0006|Wowobora Gogobora|1|63638|80739|5160|10000|||84.28|82.34|0.00|0.57| +37|2023-10-06T20:30:20.8840000-07:00|40022550|Zeromus|0001B516|2424452||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:20.8840000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D18|123408|127791|9000|10000|||104.56|83.99|0.00|-2.28|10FF0006|Wowobora Gogobora|0|63638|80739|5160|10000|||84.28|82.34|0.00|0.57| +24|2023-10-06T20:30:20.8840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1441|57399|80739|4200|10000|||109.36|92.27|0.00|-2.06|10FF0006|Wowobora Gogobora|0|63638|80739|5160|10000|||84.28|82.34|0.00|0.57| +38|2023-10-06T20:30:20.8840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|6||96.82|82.51|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:20.8840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126760|127791|9000|10000|0||104.56|83.99|0.00|-2.28|0|0|0||||||||||||||||||| +38|2023-10-06T20:30:20.8840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62584|80739|4200|10000|0||109.36|92.27|0.00|-2.06|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:30:20.4900000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T20:30:20.9280000-07:00|40022550|Zeromus|0001B522|2410367||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:20.9280000-07:00|10FF0005|Wuwuchu Wuchu|0001B522|23379|90055|10000|10000|0||82.39|94.92|0.00|2.49|2700|0|0|01|07000A1B|01|41F00000|| +38|2023-10-06T20:30:20.9280000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|23379|90055|10000|10000|0||82.39|94.92|0.00|2.49|0|0|0||||||||||||||||||||||||| +24|2023-10-06T20:30:20.9730000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|CFC|23379|90055|10000|10000|||82.07|94.23|0.00|2.61|10FF0005|Wuwuchu Wuchu|0|23379|90055|10000|10000|||82.07|94.23|0.00|2.61| +21|2023-10-06T20:30:20.9730000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|754003|52620000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|2410367|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||118.00|89.78|0.00|-2.07|0001B52B|0|1| +38|2023-10-06T20:30:20.9730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9100|10000|2||118.00|89.78|0.00|-2.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:20.9730000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +38|2023-10-06T20:30:20.9730000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|26703|90055|10000|10000|0||82.07|94.23|0.00|2.61|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:21.0180000-07:00|10FF0004|Buhojaqe Zijaqe|0001B523|48579||||||109.36|92.27|0.00|-2.06| +37|2023-10-06T20:30:21.0180000-07:00|10FF0002|Suchichi Suchi|0001B524|67266||||||113.60|81.25|0.00|-1.43| +37|2023-10-06T20:30:21.0180000-07:00|10FF0006|Wowobora Gogobora|0001B525|50145||||||84.51|82.68|0.00|0.44| +37|2023-10-06T20:30:21.0180000-07:00|10FF0008|Kokosaze Lulusaze|0001B526|69044|79111|9100|10000|0||118.00|89.78|0.00|-2.07|1B00|0|0|01|03000000|0|0|| +37|2023-10-06T20:30:21.0180000-07:00|10FF0001|Sesuga Sapisuga|0001B527|119416||||||104.45|83.87|0.00|-2.36| +37|2023-10-06T20:30:21.0180000-07:00|10FF0007|Kehabiqo Febiqo|0001B529|128206|128564|10000|10000|0||96.82|82.51|0.00|2.22|1500|0|0|01|05000000|0|0|| +37|2023-10-06T20:30:21.0180000-07:00|10FF0005|Wuwuchu Wuchu|0001B52A|11413||||||82.07|94.23|0.00|2.61| +24|2023-10-06T20:30:21.0180000-07:00|10FF0006|Wowobora Gogobora|HoT|0|14B4|63638|80739|5160|10000|||84.51|82.68|0.00|0.44|10FF0006|Wowobora Gogobora|0|63638|80739|5160|10000|||84.51|82.68|0.00|0.44| +38|2023-10-06T20:30:21.0180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128206|128564|10000|10000|0||96.82|82.51|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:21.0180000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:21.0180000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:21.0180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69044|79111|9100|10000|0||118.00|89.78|0.00|-2.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:21.0180000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:21.0180000-07:00|10FF0006|Wowobora Gogobora|005A5A28|55445|80739|5710|10000|0||84.51|82.68|0.00|0.44|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:21.0180000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:30:21.0620000-07:00|40022550|Zeromus|0001B521|2390680||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:21.0620000-07:00|10FF0001|Sesuga Sapisuga|0001B521|127791||||||104.45|83.87|0.00|-2.36| +21|2023-10-06T20:30:21.0620000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|36CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2410367|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.82|82.51|0.00|2.22|0001B52C|0|1| +21|2023-10-06T20:30:21.1070000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|732003|E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2390680|40478540|10000|10000|||100.00|80.10|0.00|0.00|69044|79111|9100|10000|||117.31|89.37|0.00|-2.06|0001B52D|0|1| +21|2023-10-06T20:30:21.1070000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2390680|40478540|10000|10000|||100.00|80.10|0.00|0.00|55445|80739|5710|10000|||84.96|83.34|0.00|0.51|0001B52E|0|1| +22|2023-10-06T20:30:21.1520000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|18940000|530E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|48579|80739|4200|10000|||109.36|92.27|0.00|-2.06|48579|80739|4200|10000|||109.36|92.27|0.00|-2.06|0001B52F|0|4| +22|2023-10-06T20:30:21.1520000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|18BA0000|900E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|69044|79111|9100|10000|||117.31|89.37|0.00|-2.06|48579|80739|4200|10000|||109.36|92.27|0.00|-2.06|0001B52F|1|4| +22|2023-10-06T20:30:21.1520000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|195E0000|960E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|9000|10000|||103.97|83.85|0.00|-2.31|48579|80739|4200|10000|||109.36|92.27|0.00|-2.06|0001B52F|2|4| +22|2023-10-06T20:30:21.1520000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|194C0000|790E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67266|90128|10000|10000|||113.58|81.29|0.00|-1.42|48579|80739|4200|10000|||109.36|92.27|0.00|-2.06|0001B52F|3|4| +38|2023-10-06T20:30:21.1520000-07:00|10FF0002|Suchichi Suchi|005A5A16|67266|90128|10000|10000|11||113.58|81.29|0.00|-1.42|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:21.1520000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:21.1520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|69044|79111|9100|10000|12||117.31|89.37|0.00|-2.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:21.1520000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:21.1520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|8||103.97|83.85|0.00|-2.31|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:21.1520000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:21.1520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48579|80739|3200|10000|12||109.36|92.27|0.00|-2.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:21.1520000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +39|2023-10-06T20:30:21.2410000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||96.82|82.51|0.00|2.22| +261|2023-10-06T20:30:20.8240000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T20:30:21.4200000-07:00|4002255E|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750603|DC90000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|48579|80739|3200|10000|||109.36|92.27|0.00|-2.06|44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B530|0|1| +21|2023-10-06T20:30:21.4200000-07:00|4002255F|Zeromus|8B75|Akh Rhai|10FF0002|Suchichi Suchi|750603|7960000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|67266|90128|10000|10000|||112.54|82.41|0.00|-1.47|44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B531|0|1| +21|2023-10-06T20:30:21.4200000-07:00|40022560|Zeromus|8B75|Akh Rhai|10FF0006|Wowobora Gogobora|750003|35330000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|55445|80739|5710|10000|||85.86|84.63|-0.02|0.70|44|44|0|10000|||84.30|82.33|0.00|1.71|0001B532|0|1| +21|2023-10-06T20:30:21.4200000-07:00|40022561|Zeromus|8B75|Akh Rhai|10FF0008|Kokosaze Lulusaze|750603|83B0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|69044|79111|9100|10000|||115.32|88.17|0.00|-2.08|44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B533|0|1| +21|2023-10-06T20:30:21.4200000-07:00|40022562|Zeromus|8B75|Akh Rhai|10FF0001|Sesuga Sapisuga|750603|0|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9000|10000|||101.80|84.77|0.00|-2.43|44|44|0|10000|||104.56|83.99|0.00|2.64|0001B534|0|1| +21|2023-10-06T20:30:21.4200000-07:00|40022563|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B535|0|0| +21|2023-10-06T20:30:21.4200000-07:00|40022564|Zeromus|8B75|Akh Rhai|10FF0007|Kehabiqo Febiqo|750003|25230000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||96.82|82.51|0.00|2.22|44|44|0|10000|||96.83|82.51|0.00|2.22|0001B536|0|1| +21|2023-10-06T20:30:21.4200000-07:00|40022566|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.02|96.19|0.00|2.85|0001B537|0|0| +39|2023-10-06T20:30:21.4200000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +39|2023-10-06T20:30:21.4640000-07:00|10FF0002|Suchichi Suchi|68167|90128|10000|10000|||111.93|83.05|-0.02|-1.51| +24|2023-10-06T20:30:21.5540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D29|128564|128564|10000|10000|||96.82|82.51|0.00|2.22|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||96.82|82.51|0.00|2.22| +261|2023-10-06T20:30:21.1600000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:30:21.5540000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1444|69044|79111|9100|10000|||114.89|87.89|-0.02|-2.08|10FF0006|Wowobora Gogobora|0|55445|80739|5710|10000|||86.77|85.51|0.00|0.75| +38|2023-10-06T20:30:21.5540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||96.82|82.51|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:21.5540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|74232|79111|9100|10000|12||114.89|87.89|-0.02|-2.08|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:21.5990000-07:00|10FF0004|Buhojaqe Zijaqe|0001B530|45050|80739|3200|10000|0||109.36|92.27|0.00|-2.06|1C00|0|0|01|07000000|0|0|| +37|2023-10-06T20:30:21.5990000-07:00|10FF0002|Suchichi Suchi|0001B531|66225|90128|10000|10000|0||111.42|83.52|0.00|-1.53|1600|0|0|01|0|0|0|| +37|2023-10-06T20:30:21.5990000-07:00|10FF0006|Wowobora Gogobora|0001B532|41826||||||86.77|85.51|0.00|0.75| +37|2023-10-06T20:30:21.5990000-07:00|10FF0008|Kokosaze Lulusaze|0001B533|72125|79111|9100|10000|0||114.89|87.89|-0.02|-2.08|1B00|0|0|01|03000000|0|0|| +37|2023-10-06T20:30:21.5990000-07:00|10FF0001|Sesuga Sapisuga|0001B534|127791|127791|9000|10000|2||101.16|85.09|0.00|-2.48|1300|0|0|0| +37|2023-10-06T20:30:21.5990000-07:00|10FF0007|Kehabiqo Febiqo|0001B536|119057||||||96.82|82.51|0.00|2.22| +21|2023-10-06T20:30:21.5990000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AC30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2390680|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.82|82.51|0.00|2.22|0001B538|0|1| +38|2023-10-06T20:30:21.5990000-07:00|10FF0002|Suchichi Suchi|005A5A16|66225|90128|10000|10000|0||111.42|83.52|0.00|-1.53|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:21.5990000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:21.5990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|72125|79111|9100|10000|0||114.89|87.89|-0.02|-2.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:21.5990000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:21.5990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45050|80739|3200|10000|0||109.36|92.27|0.00|-2.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:21.5990000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:30:21.6430000-07:00|40022550|Zeromus|0001B52D|2390450||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:21.6430000-07:00|40022550|Zeromus|0001B52E|2390412||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:21.6430000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48579|80739|3200|10000|||109.36|92.27|0.00|-2.06|48579|80739|3200|10000|||109.36|92.27|0.00|-2.06|0001B539|0|1| +37|2023-10-06T20:30:21.6870000-07:00|40022550|Zeromus|0001B52C|2376381||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:21.2760000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:30:21.3750000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:30:21.7770000-07:00|40022550|Zeromus|0001B52B|2355291||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:21.7770000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|2A720000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|2376381|40478540|10000|10000|||100.00|80.10|0.00|0.00|66225|90128|10000|10000|||110.24|84.38|-0.02|-1.59|0001B53A|0|1| +38|2023-10-06T20:30:21.7770000-07:00|10FF0006|Wowobora Gogobora|005A5A28|41826|80739|5710|10000|0||87.82|86.33|0.00|0.83|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:21.7770000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:30:21.7770000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41826|80739|5710|10000|||87.82|86.33|0.00|0.83|41826|80739|5710|10000|||87.82|86.33|0.00|0.83|0001B53B|0|1| +38|2023-10-06T20:30:21.7770000-07:00|10FF0002|Suchichi Suchi|005A5A16|66225|90128|10000|10000|0||110.24|84.38|-0.02|-1.59|0|0|0|||||||||||||||| +26|2023-10-06T20:30:21.7770000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:30:21.7770000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +21|2023-10-06T20:30:21.9990000-07:00|4002255E|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750003|35100000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|45050|80739|3200|10000|||109.36|92.27|0.00|-2.06|44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B53C|0|1| +21|2023-10-06T20:30:21.9990000-07:00|4002255F|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B53D|0|0| +21|2023-10-06T20:30:21.9990000-07:00|40022560|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||84.30|82.33|0.00|1.71|0001B53E|0|0| +21|2023-10-06T20:30:21.9990000-07:00|40022561|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B53F|0|0| +22|2023-10-06T20:30:21.9990000-07:00|40022562|Zeromus|8B75|Akh Rhai|10FF0002|Suchichi Suchi|750003|334D0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|66225|90128|10000|10000|||109.25|84.17|0.00|-1.92|44|44|0|10000|||104.56|83.99|0.00|2.64|0001B540|0|2| +22|2023-10-06T20:30:21.9990000-07:00|40022562|Zeromus|8B75|Akh Rhai|10FF0001|Sesuga Sapisuga|750603|13A90000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9000|10000|||98.10|85.12|0.00|-3.13|44|44|0|10000|||104.56|83.99|0.00|2.64|0001B540|1|2| +21|2023-10-06T20:30:21.9990000-07:00|40022563|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B541|0|0| +22|2023-10-06T20:30:21.9990000-07:00|40022564|Zeromus|8B75|Akh Rhai|10FF0007|Kehabiqo Febiqo|750003|249A0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|119057|128564|10000|10000|||96.91|82.55|0.00|2.49|44|44|0|10000|||96.83|82.51|0.00|2.22|0001B542|0|2| +22|2023-10-06T20:30:21.9990000-07:00|40022564|Zeromus|8B75|Akh Rhai|10FF0001|Sesuga Sapisuga|EC750605|18510000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9000|10000|||98.10|85.12|0.00|-3.13|44|44|0|10000|||96.83|82.51|0.00|2.22|0001B542|1|2| +21|2023-10-06T20:30:21.9990000-07:00|40022566|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.02|96.19|0.00|2.85|0001B543|0|0| +39|2023-10-06T20:30:22.0000000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9200|10000|||98.10|85.12|0.00|-3.13| +21|2023-10-06T20:30:22.0430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|A7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2355291|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9000|10000|||98.10|85.12|0.00|-3.13|0001B544|0|1| +31|2023-10-06T20:30:22.0430000-07:00|10FF0001||||| +21|2023-10-06T20:30:22.0880000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B710003|43000000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|2355291|40478540|10000|10000|||100.00|80.10|0.00|0.00|11413|90055|10000|10000|||82.51|89.93|0.00|2.22|0001B545|0|1| +38|2023-10-06T20:30:22.0880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|11413|90055|10000|10000|0||82.51|89.93|0.00|2.22|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:22.0880000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:30:22.0880000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:30:22.0880000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:30:22.1320000-07:00|40022550|Zeromus|0001B538|2352536||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:22.1320000-07:00|40022E24|Carbuncle|75851|75851|10000|10000|||116.02|90.37|0.00|-3.00| +37|2023-10-06T20:30:22.1770000-07:00|10FF0004|Buhojaqe Zijaqe|0001B53C|31466||||||109.36|92.27|0.00|-2.06| +37|2023-10-06T20:30:22.1770000-07:00|10FF0002|Suchichi Suchi|0001B540|53092|90128|10000|10000|0||109.02|84.11|0.00|-1.87|1600|0|0|01|0322|0|C1F00000|| +37|2023-10-06T20:30:22.1770000-07:00|10FF0007|Kehabiqo Febiqo|0001B542|109687||||||96.93|82.56|0.00|2.56| +24|2023-10-06T20:30:22.1780000-07:00|40022550|Zeromus|DoT|0|133C|2352536|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|2352536|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:22.1780000-07:00|40022550|Zeromus|005A5A00|2347612|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:22.2220000-07:00|10FF0001|Sesuga Sapisuga|0001B540|122758|127791|9200|10000|0||98.10|85.12|0.00|-3.13|1301|0|0|01|03000000|0|0|| +37|2023-10-06T20:30:22.2220000-07:00|10FF0001|Sesuga Sapisuga|0001B542|116533||||||98.10|85.12|0.00|-3.13| +38|2023-10-06T20:30:22.2230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116533|127791|9200|10000|0||98.10|85.12|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:22.2230000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:30:22.2660000-07:00|10FF0004|Buhojaqe Zijaqe|0001B52F|37758||||||109.35|92.26|0.00|-1.95| +37|2023-10-06T20:30:22.2660000-07:00|10FF0004|Buhojaqe Zijaqe|0001B539|37758|80739|3200|10000|0||109.35|92.26|0.00|-1.95|1C00|0|0|01|070004B4|0|41A80000|| +26|2023-10-06T20:30:22.2660000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:30:22.3550000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|AD60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2347612|40478540|10000|10000|||100.00|80.10|0.00|0.00|53092|90128|10000|10000|||108.74|84.01|0.00|-2.02|0001B546|0|1| +37|2023-10-06T20:30:22.3990000-07:00|10FF0008|Kokosaze Lulusaze|0001B52F|78455||||||114.89|86.99|0.00|-1.98| +37|2023-10-06T20:30:22.4440000-07:00|40022550|Zeromus|0001B53A|2336746||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:22.4440000-07:00|10FF0002|Suchichi Suchi|0001B53A|53092|90128|10000|10000|0||108.74|83.97|0.00|-2.19|1600|0|0|01|0322|0|41F00000|| +38|2023-10-06T20:30:22.4440000-07:00|10FF0002|Suchichi Suchi|005A5A16|53092|90128|10000|10000|0||108.74|83.97|0.00|-2.19|0|0|0|||||||||||||||| +39|2023-10-06T20:30:22.4890000-07:00|10FF0006|Wowobora Gogobora|42633|80739|5915|10000|||89.45|87.37|0.00|1.00| +37|2023-10-06T20:30:22.5340000-07:00|10FF0001|Sesuga Sapisuga|0001B52F|123027||||||98.28|85.31|0.00|1.99| +25|2023-10-06T20:30:22.5340000-07:00|10FF0003|Gegehi Gehi|40022565|Zeromus| +37|2023-10-06T20:30:22.5780000-07:00|40022550|Zeromus|0001B544|2334064||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:22.5780000-07:00|40022550|Zeromus|0001B545|2316912||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:22.5780000-07:00|10FF0005|Wuwuchu Wuchu|0001B545|11413|90055|10000|10000|0||85.38|89.22|0.00|2.01|2700|0|0|01|07000A1C|0|42700000|| +21|2023-10-06T20:30:22.5780000-07:00|4002255E|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750003|374C0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|37758|80739|3200|10000|||109.28|92.29|0.00|-1.74|44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B547|0|1| +21|2023-10-06T20:30:22.5780000-07:00|4002255F|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B548|0|0| +21|2023-10-06T20:30:22.5780000-07:00|40022560|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||84.30|82.33|0.00|1.71|0001B549|0|0| +21|2023-10-06T20:30:22.5780000-07:00|40022561|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B54A|0|0| +21|2023-10-06T20:30:22.5780000-07:00|40022562|Zeromus|8B75|Akh Rhai|10FF0002|Suchichi Suchi|750003|313B0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|53092|90128|10000|10000|||108.85|83.90|0.00|-2.40|44|44|0|10000|||104.56|83.99|0.00|2.64|0001B54B|0|1| +21|2023-10-06T20:30:22.5780000-07:00|40022563|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B54C|0|0| +22|2023-10-06T20:30:22.5780000-07:00|40022564|Zeromus|8B75|Akh Rhai|10FF0001|Sesuga Sapisuga|750003|1E8E0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|116533|127791|9200|10000|||98.28|85.31|0.00|1.99|44|44|0|10000|||96.83|82.51|0.00|2.22|0001B54D|0|2| +22|2023-10-06T20:30:22.5780000-07:00|40022564|Zeromus|8B75|Akh Rhai|10FF0007|Kehabiqo Febiqo|750003|25210000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|109687|128564|10000|10000|||97.29|85.57|0.00|1.84|44|44|0|10000|||96.83|82.51|0.00|2.22|0001B54D|1|2| +21|2023-10-06T20:30:22.5780000-07:00|40022566|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.02|96.19|0.00|2.85|0001B54E|0|0| +38|2023-10-06T20:30:22.5780000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|11413|90055|10000|10000|0||85.38|89.22|0.00|2.01|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:22.6660000-07:00|10FF0002|Suchichi Suchi|0001B52F|59568||||||108.96|83.84|0.00|-2.61| +21|2023-10-06T20:30:22.6670000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2316912|40478540|10000|10000|||100.00|80.10|0.00|0.00|37758|80739|3200|10000|||109.12|92.35|0.00|-1.45|0001B54F|0|1| +261|2023-10-06T20:30:22.3500000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:30:22.7560000-07:00|10FF0004|Buhojaqe Zijaqe|0001B547|23602||||||109.03|92.37|0.00|-1.25| +37|2023-10-06T20:30:22.7560000-07:00|10FF0002|Suchichi Suchi|0001B54B|46965||||||109.05|83.78|0.00|-2.79| +37|2023-10-06T20:30:22.7560000-07:00|10FF0001|Sesuga Sapisuga|0001B54D|115205||||||98.78|86.63|0.00|1.87| +261|2023-10-06T20:30:22.3500000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:30:22.8020000-07:00|10FF0007|Kehabiqo Febiqo|0001B54D|100182||||||97.40|87.02|0.00|1.69| +22|2023-10-06T20:30:22.8020000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|CDE0000|2C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|42633|80739|5915|10000|||91.43|88.51|0.00|1.04|42633|80739|5915|10000|||91.43|88.51|0.00|1.04|0001B550|0|4| +22|2023-10-06T20:30:22.8020000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|4|D040000|A60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|109687|128564|10000|10000|||97.40|87.02|0.00|1.69|42633|80739|5915|10000|||91.43|88.51|0.00|1.04|0001B550|1|4| +22|2023-10-06T20:30:22.8020000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|C840000|C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|123027|127791|9200|10000|||98.78|86.63|0.00|1.87|42633|80739|5915|10000|||91.43|88.51|0.00|1.04|0001B550|2|4| +22|2023-10-06T20:30:22.8020000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|C7F0000|FC0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|11413|90055|10000|10000|||86.73|89.87|0.00|1.71|42633|80739|5915|10000|||91.43|88.51|0.00|1.04|0001B550|3|4| +38|2023-10-06T20:30:22.8020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100182|128564|10000|10000|8||97.40|87.02|0.00|1.69|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:22.8020000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:22.8020000-07:00|10FF0006|Wowobora Gogobora|005A5A28|42633|80739|5015|10000|13||91.43|88.51|0.00|1.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:22.8020000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:22.8020000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:22.8020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|115205|127791|9200|10000|8||98.78|86.63|0.00|1.87|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:22.8020000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:22.8020000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|11413|90055|10000|10000|11||86.73|89.87|0.00|1.71|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:22.8020000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:30:22.8900000-07:00|40022550|Zeromus|0001B546|2314138||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:22.8900000-07:00|10FF0005|Wuwuchu Wuchu|12313|90055|10000|10000|||87.16|90.62|0.00|1.64| +26|2023-10-06T20:30:22.9340000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|80739|80739| +22|2023-10-06T20:30:22.9340000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F200F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|23602|80739|3200|10000|||108.96|92.38|0.00|-1.08|23602|80739|3200|10000|||108.96|92.38|0.00|-1.08|0001B551|0|1| +21|2023-10-06T20:30:22.9340000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2316912|40478540|10000|10000|||100.00|80.10|0.00|0.00|11413|90055|10000|10000|||87.16|90.62|0.00|1.64|0001B552|0|1| +21|2023-10-06T20:30:23.0230000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|200004|22670000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|12313|90055|10000|10000|||87.65|91.48|0.00|1.55|73956|77430|10000|10000|||98.71|97.61|0.00|-3.13|0001B553|0|1| +39|2023-10-06T20:30:23.0230000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9300|10000|||114.89|86.99|0.00|-1.98| +261|2023-10-06T20:30:22.5460000-07:00|Change|10FF0008||||||| +261|2023-10-06T20:30:22.6620000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:30:23.1580000-07:00|4002255E|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750003|38CA0000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|23602|80739|3200|10000|||108.76|92.41|0.00|-1.87|44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B554|0|1| +21|2023-10-06T20:30:23.1580000-07:00|4002255F|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B555|0|0| +21|2023-10-06T20:30:23.1580000-07:00|40022560|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||84.30|82.33|0.00|1.71|0001B556|0|0| +21|2023-10-06T20:30:23.1580000-07:00|40022561|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B557|0|0| +21|2023-10-06T20:30:23.1580000-07:00|40022562|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.56|83.99|0.00|2.64|0001B558|0|0| +261|2023-10-06T20:30:22.7830000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:30:23.1580000-07:00|40022563|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B559|0|0| +21|2023-10-06T20:30:23.1580000-07:00|40022564|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.83|82.51|0.00|2.22|0001B55A|0|0| +21|2023-10-06T20:30:23.1580000-07:00|40022566|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.02|96.19|0.00|2.85|0001B55B|0|0| +39|2023-10-06T20:30:23.1580000-07:00|10FF0004|Buhojaqe Zijaqe|24409|80739|3400|10000|||108.76|92.41|0.00|-1.87| +37|2023-10-06T20:30:23.2010000-07:00|40022550|Zeromus|0001B54F|2313981||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:23.2460000-07:00|10FF0005|Wuwuchu Wuchu|1D75|Second Wind|10FF0005|Wuwuchu Wuchu|4|2EEF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12313|90055|10000|10000|||89.00|91.99|0.00|1.46|12313|90055|10000|10000|||89.00|91.99|0.00|1.46|0001B55C|0|1| +37|2023-10-06T20:30:23.3360000-07:00|10FF0004|Buhojaqe Zijaqe|0001B554|9871||||||108.61|92.45|0.00|-1.11| +261|2023-10-06T20:30:23.0130000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:23.0130000-07:00|Change|40022DBB||||||||| +20|2023-10-06T20:30:23.4250000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|1.486|114.89|86.99|0.00|-1.98| +37|2023-10-06T20:30:23.4700000-07:00|40022550|Zeromus|0001B552|2309863||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:23.1310000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T20:30:23.5600000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15CE|115205|127791|9200|10000|||99.68|88.74|0.00|1.54|10FF0004|Buhojaqe Zijaqe|0|9871|80739|3400|10000|||108.36|92.51|0.00|-0.93| +24|2023-10-06T20:30:23.5600000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CD2|42633|80739|5015|10000|||95.49|91.22|-0.02|0.92|10FF0004|Buhojaqe Zijaqe|0|9871|80739|3400|10000|||108.36|92.51|0.00|-0.93| +24|2023-10-06T20:30:23.5600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D1A|9871|80739|3400|10000|||108.36|92.51|0.00|-0.93|10FF0004|Buhojaqe Zijaqe|0|9871|80739|3400|10000|||108.36|92.51|0.00|-0.93| +24|2023-10-06T20:30:23.5600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D0C|100182|128564|10000|10000|||95.54|90.77|0.00|0.85|10FF0004|Buhojaqe Zijaqe|0|9871|80739|3400|10000|||108.36|92.51|0.00|-0.93| +24|2023-10-06T20:30:23.5600000-07:00|10FF0002|Suchichi Suchi|HoT|798|CCA|46965|90128|10000|10000|||109.69|85.73|0.00|3.04|10FF0004|Buhojaqe Zijaqe|0|9871|80739|3400|10000|||108.36|92.51|0.00|-0.93| +24|2023-10-06T20:30:23.5600000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D07|12313|90055|10000|10000|||90.35|91.98|0.00|1.35|10FF0004|Buhojaqe Zijaqe|0|9871|80739|3400|10000|||108.36|92.51|0.00|-0.93| +24|2023-10-06T20:30:23.5600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|15CB|79111|79111|9300|10000|||114.89|86.99|0.00|-1.98|10FF0004|Buhojaqe Zijaqe|0|9871|80739|3400|10000|||108.36|92.51|0.00|-0.93| +37|2023-10-06T20:30:23.5600000-07:00|10FF0004|Buhojaqe Zijaqe|0001B551|13225|80739|3400|10000|0||108.36|92.51|0.00|-0.93|1C00|0|0|02|08000798|0|41700000|||||| +26|2023-10-06T20:30:23.5600000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:30:23.5600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:30:23.5600000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|716003|2D480000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|2309863|40478540|10000|10000|||100.00|80.10|0.00|0.00|100182|128564|10000|10000|||95.54|90.77|0.00|0.85|0001B55D|0|1| +38|2023-10-06T20:30:23.5600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103522|128564|10000|10000|8||95.54|90.77|0.00|0.85|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:23.5600000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:23.5600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:23.5600000-07:00|10FF0002|Suchichi Suchi|005A5A16|50239|90128|10000|10000|0||109.69|85.73|0.00|3.04|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:23.5600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:23.5600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|0||114.89|86.99|0.00|-1.98|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:23.5600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:23.5600000-07:00|10FF0006|Wowobora Gogobora|005A5A28|45915|80739|5015|10000|13||95.49|91.22|-0.02|0.92|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:23.5600000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:23.5600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:23.5600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|120787|127791|9200|10000|8||99.68|88.74|0.00|1.54|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:23.5600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:23.5600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|13225|80739|3400|10000|0||108.36|92.51|0.00|-0.93|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:23.5600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|15648|90055|10000|10000|11||90.35|91.98|0.00|1.35|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:23.5600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:30:23.6040000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +22|2023-10-06T20:30:23.6040000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|515B0000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|13225|80739|3400|10000|||108.22|92.55|0.00|-1.06|13225|80739|3400|10000|||108.22|92.55|0.00|-1.06|0001B55E|0|6| +22|2023-10-06T20:30:23.6040000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0002|Suchichi Suchi|4|326B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50239|90128|10000|10000|||109.72|85.79|-0.01|-2.79|13225|80739|3400|10000|||108.22|92.55|0.00|-1.06|0001B55E|1|6| +22|2023-10-06T20:30:23.6040000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|4|33300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|120787|127791|9200|10000|||99.68|88.74|0.00|1.54|13225|80739|3400|10000|||108.22|92.55|0.00|-1.06|0001B55E|2|6| +22|2023-10-06T20:30:23.6040000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|50120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9300|10000|||114.89|86.99|0.00|-1.99|13225|80739|3400|10000|||108.22|92.55|0.00|-1.06|0001B55E|3|6| +22|2023-10-06T20:30:23.6040000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|4|34030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45915|80739|5015|10000|||95.94|91.79|0.00|0.84|13225|80739|3400|10000|||108.22|92.55|0.00|-1.06|0001B55E|4|6| +22|2023-10-06T20:30:23.6040000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|4|32110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|103522|128564|10000|10000|||95.03|91.22|0.00|2.72|13225|80739|3400|10000|||108.22|92.55|0.00|-1.06|0001B55E|5|6| +24|2023-10-06T20:30:23.6490000-07:00|10FF0002|Suchichi Suchi|HoT|0|15ED|50239|90128|10000|10000|||109.72|85.79|-0.01|-2.79|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||108.22|92.55|0.00|-1.06| +38|2023-10-06T20:30:23.6490000-07:00|10FF0002|Suchichi Suchi|005A5A16|55852|90128|10000|10000|0||109.72|85.79|-0.01|-2.79|0|0|0||||||||||||||||||| +261|2023-10-06T20:30:23.3410000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:23.7390000-07:00|10FF0006|Wowobora Gogobora|0001B550|49209|80739|5015|10000|13||96.41|92.38|0.00|0.76|2800|0|0|01|07000A31|0|41E8DD2D|| +21|2023-10-06T20:30:23.7390000-07:00|4002255E|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750003|32020000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|13225|80739|3400|10000|||107.93|92.59|0.00|-1.17|44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B55F|0|1| +21|2023-10-06T20:30:23.7390000-07:00|4002255F|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B560|0|0| +21|2023-10-06T20:30:23.7390000-07:00|40022560|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||84.30|82.33|0.00|1.71|0001B561|0|0| +21|2023-10-06T20:30:23.7390000-07:00|40022561|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B562|0|0| +21|2023-10-06T20:30:23.7390000-07:00|40022562|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.56|83.99|0.00|2.64|0001B563|0|0| +21|2023-10-06T20:30:23.7390000-07:00|40022563|Zeromus|8B75|Akh Rhai|10FF0006|Wowobora Gogobora|750003|5620000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|45915|80739|5015|10000|||96.41|92.38|0.00|0.76|44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B564|0|1| +21|2023-10-06T20:30:23.7390000-07:00|40022564|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.83|82.51|0.00|2.22|0001B565|0|0| +21|2023-10-06T20:30:23.7390000-07:00|40022566|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.02|96.19|0.00|2.85|0001B566|0|0| +261|2023-10-06T20:30:23.3410000-07:00|Add|40022E3D||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:23.8270000-07:00|10FF0005|Wuwuchu Wuchu|0001B553|24455||||||91.30|92.19|0.00|1.33| +37|2023-10-06T20:30:23.8730000-07:00|10FF0007|Kehabiqo Febiqo|0001B550|106854|128564|10000|10000|8||94.64|91.58|0.00|2.72|1501|0|0|01|05000A31|0|41E7C8B2|| +37|2023-10-06T20:30:23.8730000-07:00|10FF0005|Wuwuchu Wuchu|0001B55C|36470||||||91.30|92.19|0.00|1.33| +24|2023-10-06T20:30:23.8730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D09|120787|127791|9200|10000|||99.68|88.74|0.00|1.54|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +24|2023-10-06T20:30:23.8730000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D32|120787|127791|9200|10000|||99.68|88.74|0.00|1.54|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +24|2023-10-06T20:30:23.8730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1591|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +24|2023-10-06T20:30:23.8730000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D7B|49209|80739|5015|10000|||96.82|93.01|0.00|0.68|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +24|2023-10-06T20:30:23.8730000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|CF4|103522|128564|10000|10000|||94.64|91.58|0.00|2.72|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +24|2023-10-06T20:30:23.8730000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|CBB|15648|90055|10000|10000|||91.30|92.19|0.00|1.33|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +24|2023-10-06T20:30:23.8730000-07:00|10FF0002|Suchichi Suchi|HoT|798|D09|55852|90128|10000|10000|||109.73|85.80|0.00|-2.70|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +24|2023-10-06T20:30:23.8730000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D47|79111|79111|9300|10000|||114.89|86.99|0.00|-2.00|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +24|2023-10-06T20:30:23.8730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D96|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26|10FF0004|Buhojaqe Zijaqe|0|13225|80739|3400|10000|||107.52|92.61|0.00|-1.26| +38|2023-10-06T20:30:23.8730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110170|128564|10000|10000|8||94.64|91.58|0.00|2.72|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:23.8730000-07:00|10FF0002|Suchichi Suchi|005A5A16|59189|90128|10000|10000|0||109.73|85.80|0.00|-2.70|0|0|0||||||||||||||||||| +38|2023-10-06T20:30:23.8730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9300|10000|0||114.89|86.99|0.00|-2.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:23.8730000-07:00|10FF0006|Wowobora Gogobora|005A5A28|52660|80739|5015|10000|13||96.82|93.01|0.00|0.68|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:23.8730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127502|127791|9200|10000|8||99.68|88.74|0.00|1.54|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:30:23.8730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|22224|80739|3950|10000|0||107.52|92.61|0.00|-1.26|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:23.8730000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|39729|90055|10000|10000|11||91.30|92.19|0.00|1.33|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:30:23.9180000-07:00|10FF0004|Buhojaqe Zijaqe|0001B55F|9422||||||107.13|92.63|0.00|-1.35| +37|2023-10-06T20:30:23.9180000-07:00|10FF0006|Wowobora Gogobora|0001B564|51282|80739|5015|10000|0||97.05|93.65|0.00|0.60|2800|0|0|01|07000000|0|0|| +21|2023-10-06T20:30:23.9180000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2309863|40478540|10000|10000|||100.00|80.10|0.00|0.00|52660|80739|5015|10000|||97.05|93.65|0.00|0.60|0001B567|0|1| +38|2023-10-06T20:30:23.9180000-07:00|10FF0006|Wowobora Gogobora|005A5A28|51282|80739|5015|10000|0||97.05|93.65|0.00|0.60|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:23.9180000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +24|2023-10-06T20:30:23.9630000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1591|39729|90055|10000|10000|||91.98|92.36|0.00|1.32|10FF0004|Buhojaqe Zijaqe|0|22224|80739|3950|10000|||107.13|92.63|0.00|-1.35| +21|2023-10-06T20:30:23.9630000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35710003|1EC20000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|2309863|40478540|10000|10000|||100.00|80.10|0.00|0.00|127502|127791|9200|10000|||99.68|88.74|0.00|3.10|0001B568|0|1| +38|2023-10-06T20:30:23.9630000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|45250|90055|10000|10000|11||91.98|92.36|0.00|1.32|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:30:23.6240000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:30:24.0060000-07:00|10FF0001|Sesuga Sapisuga|0001B550|127791|127791|9200|10000|8||99.68|88.74|0.00|3.10|1302|0|0|01|03000A31|0|41E6B643|| +24|2023-10-06T20:30:24.0060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|CD3|51282|80739|5015|10000|||97.30|94.31|0.00|0.52|10FF0006|Wowobora Gogobora|0|51282|80739|5015|10000|||97.30|94.31|0.00|0.52| +38|2023-10-06T20:30:24.0060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|54565|80739|5565|10000|0||97.30|94.31|0.00|0.52|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:30:23.7400000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:30:24.0950000-07:00|40022550|Zeromus|0001B55D|2298271||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:24.1390000-07:00|10FF0005|Wuwuchu Wuchu|0001B550|48449|90055|10000|10000|11||93.23|92.77|0.00|1.28|2703|0|0|01|02000A31|0|41E5A5E0|| +37|2023-10-06T20:30:24.2270000-07:00|10FF0004|Buhojaqe Zijaqe|0001B55E|30249||||||105.81|92.45|0.00|-1.87| +39|2023-10-06T20:30:24.2270000-07:00|10FF0007|Kehabiqo Febiqo|111455|128564|10000|10000|||94.57|91.83|0.00|2.49| +21|2023-10-06T20:30:24.2720000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A722003|5CC30000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|2298271|40478540|10000|10000|||100.00|80.10|0.00|0.00|59189|90128|10000|10000|||109.73|85.80|0.00|-2.70|0001B569|0|1| +38|2023-10-06T20:30:24.2720000-07:00|10FF0002|Suchichi Suchi|005A5A16|59189|90128|10000|10000|0||109.73|85.80|0.00|-2.70|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:24.2720000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:30:24.2720000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:30:23.9790000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:30:24.3170000-07:00|4002255E|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B56A|0|0| +21|2023-10-06T20:30:24.3170000-07:00|4002255F|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B56B|0|0| +21|2023-10-06T20:30:24.3170000-07:00|40022560|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||84.30|82.33|0.00|1.71|0001B56C|0|0| +21|2023-10-06T20:30:24.3170000-07:00|40022561|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B56D|0|0| +21|2023-10-06T20:30:24.3170000-07:00|40022562|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.56|83.99|0.00|2.64|0001B56E|0|0| +21|2023-10-06T20:30:24.3170000-07:00|40022563|Zeromus|8B75|Akh Rhai|10FF0004|Buhojaqe Zijaqe|750003|33260000|1B|8B758000|0|0|0|0|0|0|0|0|0|0|0|0|30249|80739|3950|10000|||105.28|92.35|0.00|-2.13|44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B56F|0|1| +21|2023-10-06T20:30:24.3170000-07:00|40022564|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.83|82.51|0.00|2.22|0001B570|0|0| +21|2023-10-06T20:30:24.3170000-07:00|40022566|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.02|96.19|0.00|2.85|0001B571|0|0| +21|2023-10-06T20:30:24.3170000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2298271|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||99.68|88.74|0.00|3.10|0001B572|0|1| +31|2023-10-06T20:30:24.3170000-07:00|10FF0001||||| +37|2023-10-06T20:30:24.3600000-07:00|10FF0002|Suchichi Suchi|0001B55E|72096|90128|10000|10000|0||109.73|85.80|0.00|-2.10|1601|0|0|01|06000747|0|C1F00000|| +35|2023-10-06T20:30:24.4060000-07:00|4002254F||40022550|Zeromus|0000|0000|0109|||| +21|2023-10-06T20:30:24.4060000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|129C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|111455|128564|10000|10000|||93.82|93.22|0.00|1.75|2298271|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B573|0|1| +21|2023-10-06T20:30:24.4060000-07:00|10FF0008|Kokosaze Lulusaze|DFB|Ruin III|40022550|Zeromus|754003|3D470000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|2298271|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9300|10000|||114.89|86.99|0.00|-2.00|0001B574|0|1| +261|2023-10-06T20:30:23.9790000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:30:23.9790000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:30:23.9790000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:30:23.9790000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:30:23.9790000-07:00|Change|40022569||||||||| +00|2023-10-06T20:30:23.0000000-07:00|0044|Zeromus|Oh, to look upon such splendor once more...| +257|2023-10-06T20:30:24.4060000-07:00|80034E7C|00020001|03|00|0000| +261|2023-10-06T20:30:23.9790000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:30:23.9790000-07:00|Change|40022565||||||||| +261|2023-10-06T20:30:23.9790000-07:00|Change|40022567||||||||| +261|2023-10-06T20:30:23.9790000-07:00|Change|4002255C||||||||| +261|2023-10-06T20:30:23.9790000-07:00|Change|4002255D||||||||| +37|2023-10-06T20:30:24.4490000-07:00|40022550|Zeromus|0001B567|2298213||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:24.4490000-07:00|10FF0002|Suchichi Suchi|72997|90128|10000|10000|||109.73|85.80|0.00|-2.10| +39|2023-10-06T20:30:24.4490000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|-2.45| +37|2023-10-06T20:30:24.4950000-07:00|10FF0004|Buhojaqe Zijaqe|0001B56F|17155||||||104.79|92.14|0.00|-2.55| +20|2023-10-06T20:30:24.4950000-07:00|40022550|Zeromus|8B78|Chasmic Nails|40022550|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:24.4950000-07:00|4002255C|Zeromus|8B7C|Chasmic Nails|4002255C|Zeromus|9.500|100.00|80.10|0.00|-1.40| +20|2023-10-06T20:30:24.4950000-07:00|4002255D|Zeromus|8B2A|unknown_8b2a|4002255D|Zeromus|4.700|100.00|80.10|0.00|-1.40| +20|2023-10-06T20:30:24.4950000-07:00|40022565|Zeromus|8B79|Chasmic Nails|40022565|Zeromus|7.400|100.00|80.10|0.00|-0.70| +20|2023-10-06T20:30:24.4950000-07:00|40022567|Zeromus|8B27|unknown_8b27|40022567|Zeromus|1.200|100.00|80.10|0.00|-0.70| +20|2023-10-06T20:30:24.4950000-07:00|40022568|Zeromus|8B7A|Chasmic Nails|40022568|Zeromus|8.100|100.00|80.10|0.00|1.40| +20|2023-10-06T20:30:24.4950000-07:00|40022569|Zeromus|8B28|unknown_8b28|40022569|Zeromus|2.700|100.00|80.10|0.00|1.40| +20|2023-10-06T20:30:24.4950000-07:00|4002256A|Zeromus|8B7D|Chasmic Nails|4002256A|Zeromus|10.200|100.00|80.10|0.00|0.70| +20|2023-10-06T20:30:24.4950000-07:00|4002256B|Zeromus|8B2B|unknown_8b2b|4002256B|Zeromus|5.700|100.00|80.10|0.00|0.70| +20|2023-10-06T20:30:24.4950000-07:00|4002256C|Zeromus|8B7B|Chasmic Nails|4002256C|Zeromus|8.800|100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:24.4950000-07:00|4002256D|Zeromus|8B29|unknown_8b29|4002256D|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:24.1000000-07:00|Change|40022550||||||| +20|2023-10-06T20:30:24.4950000-07:00|4002256E|Zeromus|8B82|Dimensional Surge|4002256E|Zeromus|8.700|80.10|100.00|0.00|1.57| +261|2023-10-06T20:30:24.1000000-07:00|Change|40022568||||||||||||||||||| +24|2023-10-06T20:30:24.5390000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CC5|111455|128564|10000|10000|||93.61|93.99|0.00|1.64|10FF0007|Kehabiqo Febiqo|0|111455|128564|10000|10000|||93.61|93.99|0.00|1.64| +24|2023-10-06T20:30:24.5390000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D39|79111|79111|9000|10000|||114.89|86.99|0.00|-2.00|10FF0006|Wowobora Gogobora|0|54565|80739|5565|10000|||95.69|95.06|0.00|-0.78| +38|2023-10-06T20:30:24.5390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114724|128564|10000|10000|8||93.61|93.99|0.00|1.64|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:24.5390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|0||114.89|86.99|0.00|-2.00|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:30:24.2100000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:30:24.5840000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|710003|2C9E0000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|0|0|2298213|40478540|10000|10000|||100.00|80.10|0.00|0.00|48449|90055|10000|10000|||93.16|95.20|0.00|1.25|0001B575|0|1| +37|2023-10-06T20:30:24.7180000-07:00|40022550|Zeromus|0001B568|2290339||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:24.7180000-07:00|10FF0001|Sesuga Sapisuga|0001B568|127791|127791|10000|10000|8||99.68|88.74|0.00|3.10|1300|0|0|0| +261|2023-10-06T20:30:24.4000000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:24.4000000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:24.7620000-07:00|10FF0006|Wowobora Gogobora|0001B55E|67880||||||94.02|94.85|0.00|-1.28| +37|2023-10-06T20:30:24.8510000-07:00|40022550|Zeromus|0001B572|2288691||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:24.8970000-07:00|40022550|Zeromus|0001B569|2264944||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:24.8970000-07:00|10FF0002|Suchichi Suchi|0001B569|72997|90128|10000|10000|0||109.73|85.80|0.00|-2.10|1600|0|0|01|06000747|0|41F00000|| +37|2023-10-06T20:30:24.8970000-07:00|10FF0007|Kehabiqo Febiqo|0001B55E|127541||||||93.69|97.07|0.00|1.73| +21|2023-10-06T20:30:24.8970000-07:00|4002255E|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||109.81|92.37|0.00|-1.60|0001B576|0|0| +21|2023-10-06T20:30:24.8970000-07:00|4002255F|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.97|80.94|0.00|-1.63|0001B577|0|0| +21|2023-10-06T20:30:24.8970000-07:00|40022560|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||84.30|82.33|0.00|1.71|0001B578|0|0| +21|2023-10-06T20:30:24.8970000-07:00|40022561|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.88|90.30|0.00|-2.07|0001B579|0|0| +21|2023-10-06T20:30:24.8970000-07:00|40022562|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.56|83.99|0.00|2.64|0001B57A|0|0| +21|2023-10-06T20:30:24.8970000-07:00|40022563|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.00|94.71|0.00|-1.77|0001B57B|0|0| +21|2023-10-06T20:30:24.8970000-07:00|40022564|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.83|82.51|0.00|2.22|0001B57C|0|0| +21|2023-10-06T20:30:24.8970000-07:00|40022566|Zeromus|8B75|Akh Rhai|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.02|96.19|0.00|2.85|0001B57D|0|0| +20|2023-10-06T20:30:24.8970000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|103.54|89.52|0.00|-2.68| +38|2023-10-06T20:30:24.8970000-07:00|10FF0002|Suchichi Suchi|005A5A16|72997|90128|10000|10000|0||109.73|85.80|0.00|-2.10|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|40022567||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|4002255C||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:30:24.5050000-07:00|Change|40022DBB||||||||| +21|2023-10-06T20:30:24.9860000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2264944|40478540|10000|10000|||100.00|80.10|0.00|0.00|127541|128564|10000|10000|||93.92|97.55|-0.02|1.81|0001B57E|0|1| +39|2023-10-06T20:30:25.0290000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.68|88.74|0.00|3.10| +261|2023-10-06T20:30:24.7150000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:30:24.7150000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:30:25.0730000-07:00|40022550|Zeromus|0001B575|2253522||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:25.1190000-07:00|40022E24|Carbuncle|75851|75851|10000|10000|||115.62|88.79|0.00|2.24| +21|2023-10-06T20:30:25.1630000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|E4D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2253522|40478540|10000|10000|||100.00|80.10|0.00|0.00|72997|90128|10000|10000|||109.73|85.80|0.00|-2.10|0001B57F|0|1| +261|2023-10-06T20:30:24.8280000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:30:25.2080000-07:00|10FF0007|Kehabiqo Febiqo|0001B573|122777|128564|10000|10000|0||94.88|98.79|0.00|2.23|1500|0|0|01|05000000|0|0|| +37|2023-10-06T20:30:25.2080000-07:00|40022550|Zeromus|0001B574|2237835||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:25.2080000-07:00|40022550|Zeromus|DoT|0|1C2D|2253522|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|2253522|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:25.2080000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122777|128564|10000|10000|0||94.88|98.79|0.00|2.23|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:25.2080000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:25.2080000-07:00|40022550|Zeromus|005A5A00|2230622|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:30:25.2540000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2253522|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9000|10000|||114.89|86.99|0.00|-2.00|0001B580|0|1| +21|2023-10-06T20:30:25.2980000-07:00|10FF0002|Suchichi Suchi|1D75|Second Wind|10FF0002|Suchichi Suchi|4|2DFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72997|90128|10000|10000|||109.73|85.80|0.00|-2.10|72997|90128|10000|10000|||109.73|85.80|0.00|-2.10|0001B581|0|1| +38|2023-10-06T20:30:25.2980000-07:00|10FF0006|Wowobora Gogobora|005A5A28|67880|80739|5565|10000|0||93.08|96.30|0.00|-0.39|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:25.2980000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:30:25.2980000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67880|80739|5565|10000|||93.08|96.30|0.00|-0.39|67880|80739|5565|10000|||93.08|96.30|0.00|-0.39|0001B582|0|1| +261|2023-10-06T20:30:25.0570000-07:00|Change|4002255D||||||||||||| +37|2023-10-06T20:30:25.5190000-07:00|40022550|Zeromus|0001B57E|2227704||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:25.5190000-07:00|10FF0006|Wowobora Gogobora|68687|80739|5770|10000|||93.18|96.51|0.00|-0.56| +261|2023-10-06T20:30:25.2850000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:30:25.6990000-07:00|40022550|Zeromus|0001B57F|2224043||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:25.7440000-07:00|10FF0008|Kokosaze Lulusaze|1D89|Swiftcast|10FF0008|Kokosaze Lulusaze|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9000|10000|||114.61|87.05|0.00|-1.88|79111|79111|9000|10000|||114.61|87.05|0.00|-1.88|0001B583|0|1| +38|2023-10-06T20:30:25.7440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|0||114.61|87.05|0.00|-1.88|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:25.7440000-07:00|A7|Swiftcast|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:30:25.7880000-07:00|40022550|Zeromus|0001B580|2223858||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:25.7880000-07:00|10FF0008|Kokosaze Lulusaze|0001B580|79111|79111|9000|10000|0||114.61|87.05|0.00|-1.88|1B00|0|0|01|040000A7|0|C1200000|| +37|2023-10-06T20:30:25.8790000-07:00|10FF0008|Kokosaze Lulusaze|0001B583|79111|79111|9000|10000|0||114.22|87.13|0.00|-1.39|1B00|0|0|01|040000A7|0|41200000|| +39|2023-10-06T20:30:25.8790000-07:00|10FF0005|Wuwuchu Wuchu|49349|90055|10000|10000|||96.74|97.98|0.00|2.63| +38|2023-10-06T20:30:25.8790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9000|10000|0||114.22|87.13|0.00|-1.39|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:25.9220000-07:00|10FF0002|Suchichi Suchi|0001B581|84769||||||109.73|85.80|0.00|-2.10| +21|2023-10-06T20:30:25.9670000-07:00|40022567|Zeromus|8B27|unknown_8b27|40022567|Zeromus|1B|8B278000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-0.70|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001B584|0|1| +261|2023-10-06T20:30:25.6520000-07:00|Change|40022567||||||||||||| +21|2023-10-06T20:30:26.0110000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32710003|1F920000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|2223858|40478540|10000|10000|||100.00|80.10|0.00|0.00|122777|128564|10000|10000|||96.09|100.11|0.00|2.48|0001B585|0|1| +39|2023-10-06T20:30:26.0560000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9200|10000|||113.97|87.18|0.00|-1.39| +261|2023-10-06T20:30:25.7500000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T20:30:26.1450000-07:00|10FF0004|Buhojaqe Zijaqe|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49| +21|2023-10-06T20:30:26.1450000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CDC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2223858|40478540|10000|10000|||100.00|80.10|0.00|0.00|49349|90055|10000|10000|||96.58|97.94|0.00|2.77|0001B586|0|1| +261|2023-10-06T20:30:25.8640000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:30:26.2780000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|21A70000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|73956|77430|10000|10000|||98.71|97.61|0.00|3.05|0001B587|0|1| +22|2023-10-06T20:30:26.2790000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|4|C480000|4C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|68687|80739|5770|10000|||95.98|99.29|0.00|1.02|68687|80739|5770|10000|||95.98|99.29|0.00|1.02|0001B588|0|5| +22|2023-10-06T20:30:26.2790000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0005|Wuwuchu Wuchu|4|C670000|B0000014|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|49349|90055|10000|10000|||96.33|97.87|0.00|2.96|68687|80739|5770|10000|||95.98|99.29|0.00|1.02|0001B588|1|5| +22|2023-10-06T20:30:26.2790000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|200004|15130000|700E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|122777|128564|10000|10000|||96.09|100.11|0.00|2.95|68687|80739|5770|10000|||95.98|99.29|0.00|1.02|0001B588|2|5| +22|2023-10-06T20:30:26.2790000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|4|C640000|A6000014|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||98.93|88.94|0.00|-2.74|68687|80739|5770|10000|||95.98|99.29|0.00|1.02|0001B588|3|5| +22|2023-10-06T20:30:26.2790000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|200004|14770000|7C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|68687|80739|5770|10000|||95.98|99.29|0.00|1.02|0001B588|4|5| +22|2023-10-06T20:30:26.2790000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|18A60000|700E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|0001B589|0|7| +22|2023-10-06T20:30:26.2790000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|29310000|E80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||98.93|88.94|0.00|-2.74|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|0001B589|1|7| +22|2023-10-06T20:30:26.2790000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|4|18CC0000|AC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|84769|90128|10000|10000|||109.36|85.86|0.00|-2.12|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|0001B589|2|7| +22|2023-10-06T20:30:26.2790000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|28DC0000|600E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79111|79111|9200|10000|||114.19|87.12|0.00|-1.39|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|0001B589|3|7| +22|2023-10-06T20:30:26.2790000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19C40000|390E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|68687|80739|5770|10000|||95.98|99.29|0.00|1.02|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|0001B589|4|7| +22|2023-10-06T20:30:26.2790000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0005|Wuwuchu Wuchu|4|18E80000|D90E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|49349|90055|10000|10000|||96.33|97.87|0.00|2.96|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|0001B589|5|7| +22|2023-10-06T20:30:26.2790000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|28E20000|690E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|122777|128564|10000|10000|||96.09|100.11|0.00|2.95|17962|80739|4150|10000|||103.17|89.04|0.00|-2.49|0001B589|6|7| +38|2023-10-06T20:30:26.2790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122777|128564|10000|10000|13||96.09|100.11|0.00|2.95|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.2790000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:26.2790000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:26.2790000-07:00|10FF0002|Suchichi Suchi|005A5A16|84769|90128|10000|10000|11||109.36|85.86|0.00|-2.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:26.2790000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:26.2790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9200|10000|21||114.19|87.12|0.00|-1.39|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:26.2790000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:26.2790000-07:00|10FF0006|Wowobora Gogobora|005A5A28|68687|80739|4870|10000|13||95.98|99.29|0.00|1.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.2790000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:30:26.2790000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:26.2790000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:26.2790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||98.93|88.94|0.00|-2.74|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:26.2790000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:30:26.2790000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:26.2790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|17962|80739|3150|10000|12||103.17|89.04|0.00|-2.49|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.2790000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:26.2790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|49349|90055|10000|10000|11||96.33|97.87|0.00|2.96|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:26.2790000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:30:26.2790000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:30:26.3230000-07:00|10FF0008|Kokosaze Lulusaze|AD|Resurrection|10FF0003|Gegehi Gehi|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|73085|0|10000|||97.03|95.45|0.00|-1.55|79111|79111|9200|10000|||114.19|87.12|0.00|-1.39|0001B58A|0|1| +38|2023-10-06T20:30:26.3230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|6800|10000|21||114.19|87.12|0.00|-1.39|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:26.3230000-07:00|A7|Swiftcast|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:30:26.4570000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022550|Zeromus|41710003|263D0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|2223858|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||98.93|88.94|0.00|3.02|0001B58B|0|1| +38|2023-10-06T20:30:26.4570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||98.93|88.94|0.00|3.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.4570000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +26|2023-10-06T20:30:26.4570000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +261|2023-10-06T20:30:26.2040000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:30:26.5900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2223858|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||98.93|88.94|0.00|3.02|0001B58C|0|1| +31|2023-10-06T20:30:26.5900000-07:00|10FF0001||||| +37|2023-10-06T20:30:26.6350000-07:00|40022550|Zeromus|0001B585|2215776||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:26.6350000-07:00|10FF0002|Suchichi Suchi|HoT|0|D3D|84769|90128|10000|10000|||107.05|86.55|-0.02|-2.09|10FF0002|Suchichi Suchi|0|84769|90128|10000|10000|||107.05|86.55|-0.02|-2.09| +38|2023-10-06T20:30:26.6350000-07:00|10FF0002|Suchichi Suchi|005A5A16|88158|90128|10000|10000|11||107.05|86.55|-0.02|-2.09|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:30:26.6790000-07:00|40022550|Zeromus|0001B586|2212484||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:26.7240000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2223858|40478540|10000|10000|||100.00|80.10|0.00|0.00|68687|80739|4870|10000|||96.92|96.93|0.00|2.18|0001B58D|0|1| +21|2023-10-06T20:30:26.7690000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|26210000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|2212484|40478540|10000|10000|||100.00|80.10|0.00|0.00|88158|90128|10000|10000|||106.39|86.58|0.00|-2.15|0001B58E|0|1| +38|2023-10-06T20:30:26.7690000-07:00|10FF0002|Suchichi Suchi|005A5A16|88158|90128|10000|10000|11||106.39|86.58|0.00|-2.15|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:26.7690000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:30:26.8590000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|CE6|127791|127791|10000|10000|||98.93|88.94|0.00|3.02|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +24|2023-10-06T20:30:26.8590000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D0D|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +24|2023-10-06T20:30:26.8590000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D84|127791|127791|10000|10000|||98.93|88.94|0.00|3.02|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +24|2023-10-06T20:30:26.8590000-07:00|10FF0002|Suchichi Suchi|HoT|798|14C0|88158|90128|10000|10000|||105.74|86.60|0.00|-2.41|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +24|2023-10-06T20:30:26.8590000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D71|68687|80739|4870|10000|||97.31|95.37|-0.02|2.63|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +24|2023-10-06T20:30:26.8590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|CD7|122777|128564|10000|10000|||96.38|98.38|0.00|2.96|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +24|2023-10-06T20:30:26.8590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CE1|79111|79111|6800|10000|||111.36|87.72|0.00|-1.21|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +24|2023-10-06T20:30:26.8590000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D45|49349|90055|10000|10000|||95.61|97.17|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +24|2023-10-06T20:30:26.8590000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CF6|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42|10FF0004|Buhojaqe Zijaqe|0|17962|80739|3150|10000|||102.21|89.41|0.00|-1.42| +38|2023-10-06T20:30:26.8590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126064|128564|10000|10000|13||96.38|98.38|0.00|2.96|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.8590000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:26.8590000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||105.74|86.60|0.00|-2.41|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:26.8590000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:26.8590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|6800|10000|21||111.36|87.72|0.00|-1.21|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:26.8590000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:26.8590000-07:00|10FF0006|Wowobora Gogobora|005A5A28|72128|80739|4870|10000|13||97.31|95.37|-0.02|2.63|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.8590000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:26.8590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||98.93|88.94|0.00|3.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.8590000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:26.8590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|24621|80739|3700|10000|12||102.21|89.41|0.00|-1.42|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.8590000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:26.8590000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|52746|90055|10000|10000|11||95.61|97.17|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:26.8590000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +24|2023-10-06T20:30:26.9480000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|CE0|52746|90055|10000|10000|||95.60|97.15|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|24621|80739|3700|10000|||101.47|89.69|0.00|-1.34| +38|2023-10-06T20:30:26.9480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|56042|90055|10000|10000|11||95.60|97.15|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T20:30:26.9910000-07:00|10FF0006|Wowobora Gogobora|HoT|0|CA1|72128|80739|4870|10000|||97.36|94.59|0.00|2.76|10FF0004|Buhojaqe Zijaqe|0|24621|80739|3700|10000|||101.47|89.69|0.00|-1.34| +38|2023-10-06T20:30:26.9910000-07:00|10FF0006|Wowobora Gogobora|005A5A28|75361|80739|5420|10000|13||97.36|94.59|0.00|2.76|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:30:27.0360000-07:00|40022550|Zeromus|0001B58B|2202695||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:27.0360000-07:00|10FF0001|Sesuga Sapisuga|0001B58B|127791|127791|10000|10000|13||98.93|88.94|0.00|3.02|1300|0|0|02|0700076E|03|41F00000|||||| +21|2023-10-06T20:30:27.0360000-07:00|10FF0005|Wuwuchu Wuchu|5F3C|Soul Slice|40022550|Zeromus|714003|4B020000|323E|1008000|0|0|0|0|0|0|0|0|0|0|0|0|2212484|40478540|10000|10000|||100.00|80.10|0.00|0.00|52746|90055|10000|10000|||95.60|97.15|0.00|3.12|0001B58F|0|1| +38|2023-10-06T20:30:27.0360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||98.93|88.94|0.00|3.02|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:30:26.6800000-07:00|Change|10FF0008||||||||||||||| +37|2023-10-06T20:30:27.0810000-07:00|10FF0004|Buhojaqe Zijaqe|0001B587|33236||||||100.84|89.90|-0.02|-1.29| +37|2023-10-06T20:30:27.1250000-07:00|40022550|Zeromus|0001B58C|2200909||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:26.7930000-07:00|Change|40022E24||||||||| +37|2023-10-06T20:30:27.2140000-07:00|10FF0006|Wowobora Gogobora|0001B588|78505||||||97.45|93.21|0.00|2.99| +21|2023-10-06T20:30:27.2140000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2200909|40478540|10000|10000|||100.00|80.10|0.00|0.00|33236|80739|3700|10000|||100.19|89.96|0.00|-1.34|0001B590|0|1| +37|2023-10-06T20:30:27.2590000-07:00|40022550|Zeromus|0001B58D|2200872||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:27.2590000-07:00|10FF0007|Kehabiqo Febiqo|127349|128564|10000|10000|||96.75|96.25|-0.01|2.98| +38|2023-10-06T20:30:27.2590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||98.93|88.94|0.00|3.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:27.2590000-07:00|32|Sprint|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|127791|127791| +261|2023-10-06T20:30:26.9150000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:30:27.3480000-07:00|10FF0005|Wuwuchu Wuchu|0001B588|59217||||||95.60|97.15|0.00|2.90| +261|2023-10-06T20:30:27.0260000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:30:27.3930000-07:00|40022550|Zeromus|0001B58E|2191111||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:27.3930000-07:00|10FF0004|Buhojaqe Zijaqe|0001B589|39546|80739|3700|10000|12||99.40|89.98|0.00|-1.70|1C00|0|0|01|0A000129|0|41E770A1|| +37|2023-10-06T20:30:27.4380000-07:00|10FF0003|Gegehi Gehi|0001B58A|0|73085|0|10000|0||97.03|95.45|0.00|-1.55|2300|0|0|01|01000094|08|42700000|| +26|2023-10-06T20:30:27.4380000-07:00|94|Raise|60.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|08|73085|79111| +39|2023-10-06T20:30:27.4380000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||105.02|84.68|0.00|-2.40| +39|2023-10-06T20:30:27.4380000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|2.87| +37|2023-10-06T20:30:27.4820000-07:00|10FF0007|Kehabiqo Febiqo|0001B588|128564||||||96.76|96.18|0.00|2.98| +21|2023-10-06T20:30:27.4820000-07:00|40022569|Zeromus|8B28|unknown_8b28|40022569|Zeromus|1B|8B288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|1.40|44|44|0|10000|||100.00|80.10|0.00|1.40|0001B591|0|1| +261|2023-10-06T20:30:27.1450000-07:00|Change|40022569||||||||||||| +37|2023-10-06T20:30:27.5270000-07:00|10FF0001|Sesuga Sapisuga|0001B589|127791|127791|10000|10000|13||99.01|88.75|0.00|2.75|1301|0|0|01|03000129|0|41E65E32|| +24|2023-10-06T20:30:27.5270000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D79|128564|128564|10000|10000|||96.76|96.18|0.00|2.98|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||96.76|96.18|0.00|2.98| +24|2023-10-06T20:30:27.5270000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|C5A|79111|79111|6800|10000|||107.86|91.44|0.00|-0.65|10FF0006|Wowobora Gogobora|0|78505|80739|5420|10000|||96.93|91.91|0.00|-3.00| +21|2023-10-06T20:30:27.5270000-07:00|10FF0008|Kokosaze Lulusaze|1D8A|Lucid Dreaming|10FF0008|Kokosaze Lulusaze|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|6800|10000|||107.86|91.44|0.00|-0.65|79111|79111|6800|10000|||107.86|91.44|0.00|-0.65|0001B592|0|1| +38|2023-10-06T20:30:27.5270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|13||96.76|96.18|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:27.5270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|6800|10000|21||107.86|91.44|0.00|-0.65|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:27.6610000-07:00|10FF0002|Suchichi Suchi|0001B589|90128|90128|10000|10000|11||104.86|84.52|0.00|-2.37|1602|0|0|01|0129|0|41E549B7|| +261|2023-10-06T20:30:27.3620000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:30:27.7500000-07:00|10FF0004|Buhojaqe Zijaqe|0001B588|44785||||||99.14|89.79|0.00|-2.22| +37|2023-10-06T20:30:27.7500000-07:00|40022550|Zeromus|0001B590|2190966||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:27.7960000-07:00|10FF0008|Kokosaze Lulusaze|0001B589|79111|79111|6800|10000|21||106.05|93.26|0.00|-0.77|1B03|0|0|01|06000129|0|41E43954|| +21|2023-10-06T20:30:27.7960000-07:00|10FF0002|Suchichi Suchi|55|Lance Charge|10FF0002|Suchichi Suchi|A0E|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||104.83|84.46|0.00|-2.34|90128|90128|10000|10000|||104.83|84.46|0.00|-2.34|0001B593|0|1| +37|2023-10-06T20:30:27.9290000-07:00|10FF0006|Wowobora Gogobora|0001B589|80739|80739|5420|10000|13||96.51|91.52|0.00|-2.35|2804|0|0|01|08000129|0|41E326E5|| +21|2023-10-06T20:30:27.9730000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2190966|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||104.81|84.43|0.00|-2.30|0001B594|0|1| +261|2023-10-06T20:30:27.5560000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:30:28.0180000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.48|85.10|0.00|2.98| +37|2023-10-06T20:30:28.0620000-07:00|10FF0005|Wuwuchu Wuchu|0001B589|65593|90055|10000|10000|11||95.74|95.62|0.00|2.96|2705|0|0|01|02000129|0|41E21476|| +37|2023-10-06T20:30:28.0620000-07:00|40022550|Zeromus|0001B58F|2171764||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:28.1060000-07:00|40022E24|Carbuncle|75851|75851|10000|10000|||109.56|91.24|0.00|-0.75| +37|2023-10-06T20:30:28.1510000-07:00|10FF0008|Kokosaze Lulusaze|0001B592|79111|79111|6800|10000|21||104.66|94.63|0.00|-0.78|1B00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T20:30:28.1510000-07:00|4B4|Lucid Dreaming|21.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:30:27.7530000-07:00|Change|10FF0008||||||||||||| +261|2023-10-06T20:30:27.9750000-07:00|Change|40022E24||||||||| +37|2023-10-06T20:30:28.1950000-07:00|10FF0007|Kehabiqo Febiqo|0001B589|128564|128564|10000|10000|13||96.47|96.12|0.00|2.97|1506|0|0|01|05000129|0|41E10413|| +24|2023-10-06T20:30:28.1950000-07:00|40022550|Zeromus|DoT|0|1768|2171764|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|2171764|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:28.1950000-07:00|40022550|Zeromus|005A5A00|2165772|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +20|2023-10-06T20:30:28.3290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|98.42|89.07|0.00|-1.81| +21|2023-10-06T20:30:28.3290000-07:00|10FF0005|Wuwuchu Wuchu|5F46|Unveiled Gibbet|40022550|Zeromus|714003|42100000|100000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|2171764|40478540|10000|10000|||100.00|80.10|0.00|0.00|65593|90055|10000|10000|||95.75|95.54|0.00|2.96|0001B595|0|1| +38|2023-10-06T20:30:28.3290000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65593|90055|10000|10000|11||95.75|95.54|0.00|2.96|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:28.3290000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +261|2023-10-06T20:30:27.9750000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T20:30:28.3720000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2165772|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.48|96.01|0.00|2.97|0001B596|0|1| +261|2023-10-06T20:30:28.2070000-07:00|Change|40022567||||||||||||||||||| +261|2023-10-06T20:30:28.2070000-07:00|Change|40022563||||||||||||||||||| +261|2023-10-06T20:30:28.2070000-07:00|Change|40022562||||||||||||||||||| +37|2023-10-06T20:30:28.4620000-07:00|10FF0002|Suchichi Suchi|0001B593|90128|90128|10000|10000|11||104.83|84.44|0.00|1.78|1600|0|0|01|06000748|0|41A00000|| +26|2023-10-06T20:30:28.4620000-07:00|748|Lance Charge|20.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:30:28.2070000-07:00|Change|40022566||||||||||||||||||| +21|2023-10-06T20:30:28.4630000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022550|Zeromus|3F714003|3BB40000|143E|340000|200004|26E18000|11B|2A8000|0|0|0|0|0|0|0|0|2165772|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||96.48|96.01|0.00|2.97|0001B597|0|1| +261|2023-10-06T20:30:28.2070000-07:00|Change|40022560||||||||||||||||||| +21|2023-10-06T20:30:28.4630000-07:00|4002256D|Zeromus|8B29|unknown_8b29|4002256D|Zeromus|1B|8B298000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.00|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B598|0|1| +261|2023-10-06T20:30:28.2070000-07:00|Change|40022561||||||||||||||||||| +261|2023-10-06T20:30:28.2070000-07:00|Change|4002255E||||||||||||||||||| +37|2023-10-06T20:30:28.5060000-07:00|40022550|Zeromus|0001B594|2162915||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:28.5060000-07:00|4002255E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|109.81|92.37|0.00|-1.60| +20|2023-10-06T20:30:28.5060000-07:00|4002255F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|113.97|80.94|0.00|-1.63| +20|2023-10-06T20:30:28.5060000-07:00|40022560|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|84.30|82.33|0.00|1.71| +20|2023-10-06T20:30:28.5060000-07:00|40022561|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|118.88|90.30|0.00|-2.07| +20|2023-10-06T20:30:28.5060000-07:00|40022562|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.56|83.99|0.00|2.64| +261|2023-10-06T20:30:28.2070000-07:00|Change|40022564||||||||||||||||||| +20|2023-10-06T20:30:28.5060000-07:00|40022563|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|101.00|94.71|0.00|-1.77| +20|2023-10-06T20:30:28.5060000-07:00|40022564|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.83|82.51|0.00|2.22| +20|2023-10-06T20:30:28.5060000-07:00|40022566|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|83.02|96.19|0.00|2.85| +261|2023-10-06T20:30:28.2070000-07:00|Change|4002256D||||||||||||| +20|2023-10-06T20:30:28.5060000-07:00|40022567|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|-0.70| +261|2023-10-06T20:30:28.2070000-07:00|Change|4002255F||||||||||||||||||| +39|2023-10-06T20:30:28.5060000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5625|10000|||95.61|91.17|0.00|-1.71| +261|2023-10-06T20:30:28.2070000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T20:30:28.8200000-07:00|10FF0008|Kokosaze Lulusaze|64E7|Summon Phoenix|40022550|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|2162915|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|6800|10000|||106.08|98.17|0.00|0.33|0001B599|0|1| +21|2023-10-06T20:30:28.8200000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2162915|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|6800|10000|||106.08|98.17|0.00|0.33|0001B59A|0|1| +38|2023-10-06T20:30:28.8640000-07:00|40022E47||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +37|2023-10-06T20:30:28.8640000-07:00|40022550|Zeromus|0001B595|2146003||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:28.8640000-07:00|10FF0005|Wuwuchu Wuchu|0001B595|65593|90055|10000|10000|11||95.75|95.54|0.00|2.87|2700|0|0|01|09000A1B|01|41F00000|| +39|2023-10-06T20:30:28.8650000-07:00|10FF0005|Wuwuchu Wuchu|66493|90055|10000|10000|||95.75|95.54|0.00|2.87| +21|2023-10-06T20:30:28.8650000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2162915|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|84.20|0.00|2.98|0001B59B|0|1| +38|2023-10-06T20:30:28.8650000-07:00|40022E47||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +38|2023-10-06T20:30:28.8650000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|66493|90055|10000|10000|11||95.75|95.54|0.00|2.87|0|0|0||||||||||||||||||||||||||||||| +31|2023-10-06T20:30:28.8650000-07:00|10FF0001||||| +37|2023-10-06T20:30:28.9080000-07:00|40022550|Zeromus|0001B596|2143154||||||100.00|80.10|0.00|0.00| +03|2023-10-06T20:30:28.5980000-07:00|40022E47|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|72376|75851|10000|10000|||109.09|100.94|0.00|-2.81| +261|2023-10-06T20:30:28.5980000-07:00|Add|40022E47||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:28.5980000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:30:28.5980000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:30:28.5980000-07:00|Change|40022E47||| +39|2023-10-06T20:30:29.0420000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|7000|10000|||106.62|99.34|0.00|2.34| +39|2023-10-06T20:30:29.1310000-07:00|10FF0004|Buhojaqe Zijaqe|45592|80739|3900|10000|||98.16|88.79|0.00|2.94| +21|2023-10-06T20:30:29.2650000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35720003|281C0000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|2143154|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||105.70|85.16|-0.01|0.88|0001B59C|0|1| +21|2023-10-06T20:30:29.2650000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|334E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|2143154|40478540|10000|10000|||100.00|80.10|0.00|0.00|45592|80739|3900|10000|||98.16|88.79|0.00|2.94|0001B59D|0|1| +38|2023-10-06T20:30:29.3090000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5625|10000|13||92.20|87.69|0.00|-2.40|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:29.3090000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:29.3090000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:30:29.3090000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5625|10000|||92.20|87.69|0.00|-2.40|80739|80739|5625|10000|||92.20|87.69|0.00|-2.40|0001B59E|0|1| +261|2023-10-06T20:30:28.9360000-07:00|Change|40022E24||||||||| +37|2023-10-06T20:30:29.3540000-07:00|40022550|Zeromus|0001B59A|2143008||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:29.3540000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2143154|40478540|10000|10000|||100.00|80.10|0.00|0.00|66493|90055|10000|10000|||95.75|95.54|0.00|2.87|0001B59F|0|1| +261|2023-10-06T20:30:29.0480000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T20:30:29.0480000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:30:29.3980000-07:00|40022550|Zeromus|0001B59B|2141224||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:29.4430000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022550|Zeromus|714003|19F70000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|2143008|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|84.20|0.00|3.05|0001B5A0|0|1| +21|2023-10-06T20:30:29.4870000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|144B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|45592|80739|3500|10000|||98.16|88.79|0.00|3.09|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B5A1|0|1| +21|2023-10-06T20:30:29.4870000-07:00|4002255D|Zeromus|8B2A|unknown_8b2a|4002255D|Zeromus|1B|8B2A8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-1.40|44|44|0|10000|||100.00|80.10|0.00|-1.40|0001B5A2|0|1| +38|2023-10-06T20:30:29.4870000-07:00|40022550|Zeromus|005A5A00|2141224|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:29.4870000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +261|2023-10-06T20:30:29.1640000-07:00|Change|4002255D||||||||||||| +21|2023-10-06T20:30:29.5310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2141224|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5625|10000|||91.26|86.47|0.00|-2.46|0001B5A3|0|1| +21|2023-10-06T20:30:29.6210000-07:00|10FF0005|Wuwuchu Wuchu|5F3E|Gibbet|40022550|Zeromus|B716003|8C680000|F|A1D8000|A3E|1018000|0|0|0|0|0|0|0|0|0|0|2141224|40478540|10000|10000|||100.00|80.10|0.00|0.00|66493|90055|10000|10000|||95.75|95.54|0.00|2.90|0001B5A4|0|1| +38|2023-10-06T20:30:29.6210000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|66493|90055|10000|10000|11||95.75|95.54|0.00|2.90|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:29.6210000-07:00|A1C|Enhanced Gibbet|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:30:29.6210000-07:00|A1B|Soul Reaver|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +26|2023-10-06T20:30:29.6210000-07:00|A1D|Enhanced Gallows|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +24|2023-10-06T20:30:29.6650000-07:00|10FF0002|Suchichi Suchi|HoT|0|15FD|90128|90128|10000|10000|||105.71|85.17|0.00|-2.73|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||105.71|85.17|0.00|-2.73| +38|2023-10-06T20:30:29.6650000-07:00|40022E47|Demi-Phoenix|005A5A00|72376|75851|10000|10000|0||109.09|100.94|0.00|-2.81|0|0|0||||||| +26|2023-10-06T20:30:29.6650000-07:00|30|Well Fed|1829.80|10FF0008|Kokosaze Lulusaze|40022E47|Demi-Phoenix|2964|75851|79111| +26|2023-10-06T20:30:29.6650000-07:00|7AD|Summon Order III|30.00|40022550|Zeromus|40022E47|Demi-Phoenix|01|75851|40478540| +21|2023-10-06T20:30:29.6650000-07:00|10FF0008|Kokosaze Lulusaze|4084|Enkindle Phoenix|40022550|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|2141224|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7000|10000|||108.66|103.22|0.00|0.66|0001B5A5|0|1| +38|2023-10-06T20:30:29.6650000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||105.71|85.17|0.00|-2.73|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:30:29.4740000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:30:29.8420000-07:00|40022E47|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|16770E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|7000|10000|||109.00|103.76|0.00|0.62|72376|75851|10000|10000|||109.09|100.94|0.00|-2.81|0001B5A6|0|1| +261|2023-10-06T20:30:29.5660000-07:00|Change|40022E47||| +37|2023-10-06T20:30:29.8870000-07:00|40022550|Zeromus|0001B59F|2136939||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:29.8870000-07:00|10FF0005|Wuwuchu Wuchu|0001B59F|66493|90055|10000|10000|11||95.25|95.40|0.00|2.91|2700|0|0|01|09000A1D|0|C2700000|| +24|2023-10-06T20:30:29.8870000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1426|127791|127791|10000|10000|||99.63|84.20|0.00|3.05|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||99.63|84.20|0.00|3.05| +24|2023-10-06T20:30:29.8870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D31|128564|128564|10000|10000|||97.46|91.43|0.00|2.88|10FF0004|Buhojaqe Zijaqe|0|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84| +24|2023-10-06T20:30:29.8870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D05|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84|10FF0004|Buhojaqe Zijaqe|0|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84| +24|2023-10-06T20:30:29.8870000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D79|127791|127791|10000|10000|||99.63|84.20|0.00|3.05|10FF0004|Buhojaqe Zijaqe|0|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84| +24|2023-10-06T20:30:29.8870000-07:00|10FF0002|Suchichi Suchi|HoT|798|CE0|90128|90128|10000|10000|||105.74|85.20|0.00|1.99|10FF0004|Buhojaqe Zijaqe|0|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84| +24|2023-10-06T20:30:29.8870000-07:00|10FF0005|Wuwuchu Wuchu|HoT|798|D11|66493|90055|10000|10000|||95.25|95.40|0.00|2.91|10FF0004|Buhojaqe Zijaqe|0|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84| +24|2023-10-06T20:30:29.8870000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CFA|80739|80739|5625|10000|||89.75|84.93|0.00|-2.39|10FF0004|Buhojaqe Zijaqe|0|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84| +24|2023-10-06T20:30:29.8870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1480|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84|10FF0004|Buhojaqe Zijaqe|0|45592|80739|3500|10000|||97.76|87.51|0.00|-2.84| +38|2023-10-06T20:30:29.8870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|13||97.46|91.43|0.00|2.88|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:29.8870000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:29.8870000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:29.8870000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||105.74|85.20|0.00|1.99|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:29.8870000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:29.8870000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5625|10000|13||89.75|84.93|0.00|-2.39|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:29.8870000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:29.8870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||99.63|84.20|0.00|3.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:29.8870000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:29.8870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|54173|80739|4050|10000|12||97.76|87.51|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:29.8870000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:29.8870000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|69838|90055|10000|10000|11||95.25|95.40|0.00|2.91|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:29.8870000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +261|2023-10-06T20:30:29.5660000-07:00|Change|40022E47||| +37|2023-10-06T20:30:29.9750000-07:00|40022550|Zeromus|0001B597|2121655||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:29.9750000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|C66|69838|90055|10000|10000|||94.83|95.26|0.00|2.95|10FF0004|Buhojaqe Zijaqe|0|54173|80739|4050|10000|||97.53|86.74|0.00|-2.85| +38|2023-10-06T20:30:29.9750000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|73012|90055|10000|10000|11||94.83|95.26|0.00|2.95|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:30:30.0200000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1543|80739|80739|5625|10000|||89.43|84.65|0.00|-2.36|10FF0004|Buhojaqe Zijaqe|0|54173|80739|4050|10000|||97.51|86.54|0.00|-2.93| +21|2023-10-06T20:30:30.0200000-07:00|10FF0002|Suchichi Suchi|53|Life Surge|10FF0002|Suchichi Suchi|190E|740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||106.77|85.95|0.00|1.43|90128|90128|10000|10000|||106.77|85.95|0.00|1.43|0001B5A7|0|1| +38|2023-10-06T20:30:30.0200000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||106.77|85.95|0.00|1.43|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:30.0200000-07:00|74|Life Surge|5.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:30:30.0200000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6175|10000|13||89.43|84.65|0.00|-2.36|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:30:30.0640000-07:00|40022550|Zeromus|0001B5A3|2121620||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:30.0640000-07:00|40022550|Zeromus|0001B5A0|2114973||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:30.0640000-07:00|40022550|Zeromus|0001B59D|2101839||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:30.1530000-07:00|40022550|Zeromus|0001B5A4|2065895||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:30.1530000-07:00|10FF0005|Wuwuchu Wuchu|0001B5A4|73012|90055|10000|10000|11||94.59|95.14|0.00|2.99|2700|0|0|01|09000A1D|0|42700000|| +38|2023-10-06T20:30:30.1530000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|73012|90055|10000|10000|11||94.59|95.14|0.00|2.99|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:29.8600000-07:00|Change|10FF0007||||||||| +39|2023-10-06T20:30:30.2420000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||98.12|88.73|0.00|2.90| +21|2023-10-06T20:30:30.2420000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022550|Zeromus|712003|17B00000|13000E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|2065895|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|84.20|0.00|3.05|0001B5A8|0|1| +37|2023-10-06T20:30:30.2870000-07:00|40022550|Zeromus|0001B59C|2055627||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:30.2870000-07:00|10FF0002|Suchichi Suchi|0001B59C|90128|90128|10000|10000|11||108.09|86.91|0.00|1.07|1600|0|0|01|07000074|0|C0A00000|| +37|2023-10-06T20:30:30.2870000-07:00|10FF0004|Buhojaqe Zijaqe|0001B5A1|59368||||||97.51|86.34|0.00|-3.06| +21|2023-10-06T20:30:30.3320000-07:00|10FF0006|Wowobora Gogobora|5EFA|Eukrasian Dosis III|40022550|Zeromus|FC30E|A380000|1B|5EFA8000|0|0|0|0|0|0|0|0|0|0|0|0|2065895|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6175|10000|||89.33|84.53|0.00|-2.88|0001B5A9|0|1| +38|2023-10-06T20:30:30.3320000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5775|10000|13||89.33|84.53|0.00|-2.88|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:30.3320000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +261|2023-10-06T20:30:29.9810000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:30:29.9810000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T20:30:30.4210000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|-3.05| +39|2023-10-06T20:30:30.4650000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||107.85|86.75|0.00|1.07| +21|2023-10-06T20:30:30.4650000-07:00|4002256B|Zeromus|8B2B|unknown_8b2b|4002256B|Zeromus|1B|8B2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.70|44|44|0|10000|||100.00|80.10|0.00|0.70|0001B5AA|0|1| +261|2023-10-06T20:30:30.1020000-07:00|Change|4002256B||||||||||||| +37|2023-10-06T20:30:30.5530000-07:00|10FF0002|Suchichi Suchi|0001B5A7|90128|90128|10000|10000|11||107.64|86.59|0.00|1.07|1600|0|0|01|07000074|0|40A00000|| +24|2023-10-06T20:30:30.5530000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|CC1|128564|128564|10000|10000|||98.47|87.45|0.00|2.89|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||98.47|87.45|0.00|2.89| +24|2023-10-06T20:30:30.5530000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D42|79111|79111|7000|10000|||111.12|107.56|0.00|0.42|10FF0006|Wowobora Gogobora|0|80739|80739|5775|10000|||89.54|84.27|0.00|1.92| +38|2023-10-06T20:30:30.5530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|13||98.47|87.45|0.00|2.89|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:30.5530000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||107.64|86.59|0.00|1.07|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:30.5530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|7550|10000|21||111.12|107.56|0.00|0.42|0|0|0||||||||||||||||||||||||| +261|2023-10-06T20:30:30.2990000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:30:30.3890000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:30:30.7750000-07:00|10FF0008|Kokosaze Lulusaze|0001B5A6|79111|79111|7550|10000|21||111.05|108.83|0.00|0.10|1B00|0|0|01|0800074C|0|41A80000|| +26|2023-10-06T20:30:30.7750000-07:00|74C|Everlasting Flight|21.00|40022E47|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|79111|75851| +21|2023-10-06T20:30:30.7750000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|F230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2055627|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||108.89|87.06|0.00|1.12|0001B5AB|0|1| +21|2023-10-06T20:30:30.8190000-07:00|40022E47|Demi-Phoenix|4086|Revelation|40022550|Zeromus|154003|C3320000|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|2055627|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||109.09|100.94|0.00|-2.81|0001B5AC|0|1| +21|2023-10-06T20:30:30.9080000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|712003|23CE0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|2055627|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.80|86.32|0.00|2.87|0001B5AD|0|1| +261|2023-10-06T20:30:30.4850000-07:00|Change|40022E24||||||||| +21|2023-10-06T20:30:30.9530000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022550|Zeromus|712003|464C0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|2055627|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|84.20|0.00|3.05|0001B5AE|0|1| +39|2023-10-06T20:30:30.9970000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||99.63|84.20|0.00|3.05| +24|2023-10-06T20:30:31.0880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|2235|128564|128564|10000|10000|||98.88|86.05|0.00|2.96|10FF0006|Wowobora Gogobora|1|80739|80739|5775|10000|||90.14|83.67|0.00|1.92| +37|2023-10-06T20:30:31.0880000-07:00|40022550|Zeromus|0001B5A9|2055627|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000A38|0|41F00000|| +26|2023-10-06T20:30:31.0880000-07:00|A38|Eukrasian Dosis III|30.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +21|2023-10-06T20:30:31.0880000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022550|Zeromus|F080E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|2055627|40478540|10000|10000|||100.00|80.10|0.00|0.00|59368|80739|4050|10000|||97.95|85.48|0.00|2.10|0001B5AF|0|1| +38|2023-10-06T20:30:31.0880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|13||98.88|86.05|0.00|2.96|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:30:31.1320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|6DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2055627|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|84.20|0.00|3.05|0001B5B0|0|1| +31|2023-10-06T20:30:31.1320000-07:00|10FF0001||||| +24|2023-10-06T20:30:31.1770000-07:00|40022550|Zeromus|DoT|0|136D|2055627|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|2055627|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:31.1770000-07:00|40022550|Zeromus|005A5A00|2050654|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:31.2660000-07:00|40022550|Zeromus|0001B5A8|2044590|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T20:30:31.2660000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:30:31.3100000-07:00|40022550|Zeromus|0001B5AB|2040715||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:31.3100000-07:00|40022550|Zeromus|0001B5AE|2022719||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:31.3100000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|58B40000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|2050654|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7550|10000|||112.02|109.45|0.00|1.19|0001B5B1|0|1| +21|2023-10-06T20:30:31.3550000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2050654|40478540|10000|10000|||100.00|80.10|0.00|0.00|59368|80739|3650|10000|||98.03|85.39|0.00|2.79|0001B5B2|0|1| +261|2023-10-06T20:30:31.0240000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:30:31.0240000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T20:30:31.4430000-07:00|40022550|Zeromus|0001B5AD|2013553||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:31.4880000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5980|10000|||90.14|83.67|0.00|1.92| +21|2023-10-06T20:30:31.4880000-07:00|40022550|Zeromus|8B78|Chasmic Nails|40022550|Zeromus|1B|8B788000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2013553|40478540|10000|10000|||100.00|80.10|0.00|0.00|2013553|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B5B3|0|1| +261|2023-10-06T20:30:31.1340000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:30:31.1340000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:30:31.6660000-07:00|40022550|Zeromus|0001B5B0|2011799||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:31.7100000-07:00|40022550|Zeromus|0001B5AF|2011799|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000767|0|41F00000|| +26|2023-10-06T20:30:31.7100000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +261|2023-10-06T20:30:31.3160000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:30:31.7550000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|714003|E600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2011799|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.92|85.89|0.00|2.96|0001B5B4|0|1| +21|2023-10-06T20:30:31.7550000-07:00|10FF0002|Suchichi Suchi|64AB|Heavens' Thrust|40022550|Zeromus|4F726003|8AE30000|104|19F58000|F|3228000|11B|64AB8000|0|0|0|0|0|0|0|0|2011799|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||112.95|89.36|0.00|-1.12|0001B5B5|0|1| +38|2023-10-06T20:30:31.7550000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||112.95|89.36|0.00|-1.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:31.7550000-07:00|74|Life Surge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:30:31.7550000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +20|2023-10-06T20:30:31.7990000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|90.14|83.67|0.00|1.92| +37|2023-10-06T20:30:31.8430000-07:00|40022550|Zeromus|0001B5AC|1961829||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:31.8430000-07:00|40022E47|Demi-Phoenix|005A5A00|72376|75851|10000|10000|0||109.06|100.91|0.00|-2.73|0|0|0|||| +30|2023-10-06T20:30:31.8430000-07:00|7AD|Summon Order III|0.00|40022550|Zeromus|40022E47|Demi-Phoenix|01|75851|40478540| +37|2023-10-06T20:30:31.8880000-07:00|40022550|Zeromus|0001B5B2|1961685||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:31.8880000-07:00|10FF0005|Wuwuchu Wuchu|73912|90055|10000|10000|||95.97|101.28|0.00|0.40| +38|2023-10-06T20:30:31.8880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|7250|10000|21||112.12|109.53|-0.01|1.30|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:31.8880000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +261|2023-10-06T20:30:31.5080000-07:00|Change|10FF0003||||||||| +21|2023-10-06T20:30:31.9760000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022550|Zeromus|35716003|3F950000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|2011799|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||99.63|84.20|0.00|3.05|0001B5B6|0|1| +39|2023-10-06T20:30:32.0210000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|7450|10000|||113.11|110.83|0.00|0.97| +39|2023-10-06T20:30:32.1560000-07:00|10FF0004|Buhojaqe Zijaqe|60175|80739|3850|10000|||98.07|85.34|0.00|2.79| +21|2023-10-06T20:30:32.1560000-07:00|40022565|Zeromus|8B79|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.70|0001B5B7|0|0| +261|2023-10-06T20:30:31.6950000-07:00|Change|40022565||||||||||||| +261|2023-10-06T20:30:31.8140000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:30:32.0440000-07:00|Change|10FF0004||||||| +37|2023-10-06T20:30:32.2900000-07:00|40022550|Zeromus|0001B5B4|1958005||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:32.3790000-07:00|40022550|Zeromus|0001B5B1|1935297||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:32.4690000-07:00|40022550|Zeromus|0001B5B5|1899742||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:32.4690000-07:00|10FF0002|Suchichi Suchi|0001B5B5|90128|90128|10000|10000|11||113.21|89.46|-0.02|-2.18|1600|0|0|01|08000322|0|41F00000|| +21|2023-10-06T20:30:32.4690000-07:00|4002255E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||109.55|118.21|0.00|0.00|0001B5B8|0|0| +21|2023-10-06T20:30:32.4690000-07:00|4002255F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.29|98.91|0.00|0.00|0001B5B9|0|0| +21|2023-10-06T20:30:32.4690000-07:00|40022560|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.08|87.13|0.00|0.00|0001B5BA|0|0| +21|2023-10-06T20:30:32.4690000-07:00|40022561|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.20|100.50|0.00|0.00|0001B5BB|0|0| +21|2023-10-06T20:30:32.4690000-07:00|40022562|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.39|119.79|0.00|0.00|0001B5BC|0|0| +21|2023-10-06T20:30:32.4690000-07:00|40022563|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.42|104.74|0.00|0.00|0001B5BD|0|0| +21|2023-10-06T20:30:32.4690000-07:00|40022564|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.18|91.56|0.00|0.00|0001B5BE|0|0| +21|2023-10-06T20:30:32.4690000-07:00|40022566|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.59|95.70|0.00|0.00|0001B5BF|0|0| +21|2023-10-06T20:30:32.4690000-07:00|40022567|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.21|92.42|0.00|0.00|0001B5C0|0|0| +38|2023-10-06T20:30:32.4690000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||113.21|89.46|-0.02|-2.18|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|4002255F||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|40022561||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|40022560||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|40022563||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|40022567||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Change|40022566||||||||||| +04|2023-10-06T20:30:32.1400000-07:00|40022E24|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||106.61|95.69|0.00|-0.53| +261|2023-10-06T20:30:32.1400000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:30:32.1400000-07:00|Remove|40022E24| +24|2023-10-06T20:30:32.6480000-07:00|10FF0002|Suchichi Suchi|HoT|0|148D|90128|90128|10000|10000|||113.22|89.45|0.00|-2.17|10FF0002|Suchichi Suchi|0|90128|90128|10000|10000|||113.22|89.45|0.00|-2.17| +38|2023-10-06T20:30:32.6480000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||113.22|89.45|0.00|-2.17|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:30:32.6920000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|21110000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|60175|80739|3850|10000|||97.99|85.32|-0.02|-2.57|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B5C1|0|1| +37|2023-10-06T20:30:32.7360000-07:00|40022550|Zeromus|0001B5B6|1883465||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:32.7360000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37700000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|1899742|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5980|10000|||90.14|83.67|0.00|1.92|0001B5C2|0|1| +21|2023-10-06T20:30:32.8720000-07:00|40022E47|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|12C20000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|1883465|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73|0001B5C3|0|1| +24|2023-10-06T20:30:32.8720000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|CBC|127791|127791|10000|10000|||97.95|84.26|0.00|-3.10|10FF0001|Sesuga Sapisuga|0|127791|127791|10000|10000|||97.95|84.26|0.00|-3.10| +24|2023-10-06T20:30:32.8720000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D4E|127791|127791|10000|10000|||97.95|84.26|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|60175|80739|3850|10000|||96.53|84.87|0.00|-2.22| +24|2023-10-06T20:30:32.8720000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D64|60175|80739|3850|10000|||96.53|84.87|0.00|-2.22|10FF0004|Buhojaqe Zijaqe|0|60175|80739|3850|10000|||96.53|84.87|0.00|-2.22| +24|2023-10-06T20:30:32.8720000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|15CD|128564|128564|10000|10000|||96.50|85.19|-0.02|2.87|10FF0004|Buhojaqe Zijaqe|0|60175|80739|3850|10000|||96.53|84.87|0.00|-2.22| +24|2023-10-06T20:30:32.8720000-07:00|10FF0002|Suchichi Suchi|HoT|798|14E5|90128|90128|10000|10000|||113.52|88.94|0.00|-2.13|10FF0004|Buhojaqe Zijaqe|0|60175|80739|3850|10000|||96.53|84.87|0.00|-2.22| +24|2023-10-06T20:30:32.8720000-07:00|10FF0006|Wowobora Gogobora|HoT|798|157F|80739|80739|5580|10000|||90.14|83.67|0.00|1.92|10FF0004|Buhojaqe Zijaqe|0|60175|80739|3850|10000|||96.53|84.87|0.00|-2.22| +24|2023-10-06T20:30:32.8720000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D70|60175|80739|3850|10000|||96.53|84.87|0.00|-2.22|10FF0004|Buhojaqe Zijaqe|0|60175|80739|3850|10000|||96.53|84.87|0.00|-2.22| +21|2023-10-06T20:30:32.8720000-07:00|40022568|Zeromus|8B7A|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.40|0001B5C4|0|0| +38|2023-10-06T20:30:32.8720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|13||96.50|85.19|-0.02|2.87|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:32.8720000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:32.8720000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:32.8720000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||113.52|88.94|0.00|-2.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:32.8720000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:32.8720000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5580|10000|13||90.14|83.67|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:32.8720000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:32.8720000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:32.8720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||97.95|84.26|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:32.8720000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:32.8720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|67043|80739|4400|10000|12||96.53|84.87|0.00|-2.22|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:32.8720000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:30:32.4180000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:30:32.5120000-07:00|Change|10FF0001||||||||| +24|2023-10-06T20:30:32.9600000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|149D|73912|90055|10000|10000|||93.91|106.24|0.00|-0.47|10FF0005|Wuwuchu Wuchu|0|73912|90055|10000|10000|||93.91|106.24|0.00|-0.47| +38|2023-10-06T20:30:32.9600000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79189|90055|10000|10000|11||93.25|106.50|0.00|-0.54|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:30:33.0050000-07:00|10FF0006|Wowobora Gogobora|HoT|0|14B6|80739|80739|5580|10000|||90.14|83.68|0.00|1.75|10FF0004|Buhojaqe Zijaqe|0|67043|80739|4400|10000|||95.80|84.65|-0.02|-2.06| +38|2023-10-06T20:30:33.0050000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6130|10000|13||90.14|83.68|0.00|1.75|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:30:32.7460000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:30:33.2270000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||95.99|85.25|0.00|-2.88| +21|2023-10-06T20:30:33.2720000-07:00|10FF0008|Kokosaze Lulusaze|64E6|Rekindle|10FF0008|Kokosaze Lulusaze|4|24050000|4B16A40E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|79111|79111|7450|10000|||117.25|115.61|0.00|0.81|79111|79111|7450|10000|||117.25|115.61|0.00|0.81|0001B5C5|0|1| +38|2023-10-06T20:30:33.2720000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6130|10000|13||90.17|83.72|0.00|1.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:33.2720000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:30:33.2720000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:30:33.3160000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1883465|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6130|10000|||90.57|84.08|0.00|0.92|0001B5C6|0|1| +21|2023-10-06T20:30:33.3610000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022550|Zeromus|32712003|33CB0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|1883465|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||95.85|85.27|0.00|-2.71|0001B5C7|0|1| +21|2023-10-06T20:30:33.3610000-07:00|10FF0002|Suchichi Suchi|DE3|Geirskogul|40022550|Zeromus|726003|50B60000|23E|BD8000|FE3E|9E8000|0|0|0|0|0|0|0|0|0|0|1883465|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||113.98|88.12|0.00|-2.10|0001B5C8|0|1| +24|2023-10-06T20:30:33.4060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|23AE|128564|128564|10000|10000|||95.78|85.28|0.00|2.46|10FF0006|Wowobora Gogobora|1|80739|80739|6130|10000|||91.20|84.63|0.00|0.89| +37|2023-10-06T20:30:33.4060000-07:00|40022550|Zeromus|0001B5C2|1869273||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:33.4060000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1883465|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||97.22|84.21|0.00|2.84|0001B5C9|0|1| +38|2023-10-06T20:30:33.4060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|13||95.78|85.28|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:33.4060000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:33.4060000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +31|2023-10-06T20:30:33.4060000-07:00|10FF0001||||| +257|2023-10-06T20:30:33.4060000-07:00|80034E7C|00200004|03|00|0000| +261|2023-10-06T20:30:32.9750000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T20:30:33.4510000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||114.03|88.04|0.00|-2.04| +39|2023-10-06T20:30:33.4510000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|-2.88| +21|2023-10-06T20:30:33.4510000-07:00|4002256E|Zeromus|8B82|Dimensional Surge|10FF0005|Wuwuchu Wuchu|750603|BB2D0000|200140E|6FD0000|1B|8B828000|0|0|0|0|0|0|0|0|0|0|79189|90055|10000|10000|||90.58|106.61|0.00|-0.80|44|44|0|10000|||80.10|100.00|0.00|1.57|0001B5CA|0|1| +261|2023-10-06T20:30:33.0930000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:30:33.0930000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:30:33.4950000-07:00|10FF0004|Buhojaqe Zijaqe|0001B5C1|75508||||||93.10|84.75|0.00|-1.42| +24|2023-10-06T20:30:33.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1442|79111|79111|7450|10000|||117.54|116.20|-0.02|0.59|40022E47|Demi-Phoenix|0|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73| +38|2023-10-06T20:30:33.5400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8000|10000|21||117.54|116.20|-0.02|0.59|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:30:33.5400000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|79189|90055|10000|10000|11||90.04|106.58|0.00|-0.82|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:33.5400000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +30|2023-10-06T20:30:33.5400000-07:00|6FD|Vulnerability Up|0.00|40022565|Zeromus|10FF0005|Wuwuchu Wuchu|01|90055|44| +26|2023-10-06T20:30:33.5400000-07:00|6FD|Vulnerability Up|59.91|4002256E|Zeromus|10FF0005|Wuwuchu Wuchu|02|90055|44| +30|2023-10-06T20:30:33.5400000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:30:33.5850000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|724003|F390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1869273|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.10|87.91|0.00|-2.04|0001B5CB|0|1| +261|2023-10-06T20:30:33.1910000-07:00|Change|4002256C||||||||||||| +21|2023-10-06T20:30:33.5850000-07:00|4002256C|Zeromus|8B7B|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.00|0001B5CC|0|0| +261|2023-10-06T20:30:33.1910000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:33.1910000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:33.1910000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:33.6290000-07:00|10FF0005|Wuwuchu Wuchu|0001B5CA|31272|90055|10000|10000|0||89.51|106.53|0.00|-0.83|2700|0|0|02|02000000|0|0|||||| +38|2023-10-06T20:30:33.6290000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|31272|90055|10000|10000|0||89.51|106.53|0.00|-0.83|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:33.6290000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +38|2023-10-06T20:30:33.6740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||97.22|84.21|0.00|2.84|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:33.6740000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +30|2023-10-06T20:30:33.6740000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:33.8080000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.50|87.19|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:33.8080000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +30|2023-10-06T20:30:33.8080000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:30:33.8530000-07:00|40022550|Zeromus|0001B5C6|1869237||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:33.8980000-07:00|40022550|Zeromus|0001B5C3|1864435||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:33.8980000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|570F0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|1869273|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8000|10000|||117.54|116.20|0.00|0.59|0001B5CD|0|1| +37|2023-10-06T20:30:33.9420000-07:00|40022550|Zeromus|0001B5C9|1862383||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:33.9420000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|720003|385D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1869273|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.75|86.74|0.00|-2.05|0001B5CE|0|1| +38|2023-10-06T20:30:33.9420000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75508|80739|4400|10000|12||92.65|85.73|0.00|-0.83|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:33.9420000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +30|2023-10-06T20:30:33.9420000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:30:33.9870000-07:00|40022550|Zeromus|0001B5C7|1849124||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:33.9870000-07:00|40022550|Zeromus|0001B5C8|1828462||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:34.0310000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||97.22|84.21|0.00|2.84| +37|2023-10-06T20:30:34.1210000-07:00|40022550|Zeromus|0001B5CB|1824565||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:33.7630000-07:00|Change|10FF0005||||||||| +38|2023-10-06T20:30:34.1660000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|6130|10000|13||93.97|85.98|-0.01|1.40|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:34.1660000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +24|2023-10-06T20:30:34.2100000-07:00|40022550|Zeromus|DoT|0|234A|1824565|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|1824565|40478540|10000|10000|||100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:34.2100000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|93.97|85.98|-0.01|1.40| +20|2023-10-06T20:30:34.2100000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|92.26|86.57|0.00|-0.51| +38|2023-10-06T20:30:34.2100000-07:00|40022550|Zeromus|005A5A00|1815531|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:34.2100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|7700|10000|21||117.30|116.36|0.00|-1.20|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:34.2100000-07:00|A3A|Kerachole|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +30|2023-10-06T20:30:34.2100000-07:00|B7A|Kerakeia|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +21|2023-10-06T20:30:34.2550000-07:00|4002255C|Zeromus|8B7C|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.40|0001B5CF|0|0| +37|2023-10-06T20:30:34.3000000-07:00|10FF0008|Kokosaze Lulusaze|0001B5C5|79111|79111|7700|10000|21||117.30|116.36|0.00|-1.20|1B00|0|0|01|03000A90|4B|41F00000|| +26|2023-10-06T20:30:34.3000000-07:00|A90|Rekindle|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|4B|79111|79111| +261|2023-10-06T20:30:33.8770000-07:00|Change|4002255C||||||||||||| +261|2023-10-06T20:30:33.9920000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:30:34.1050000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:30:34.4770000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|4BB0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||95.78|85.28|0.00|2.46|1815531|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B5D0|0|1| +39|2023-10-06T20:30:34.5220000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6335|10000|||93.98|85.98|0.00|2.07| +21|2023-10-06T20:30:34.6120000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|D720003|2B800000|1000F|3238000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|1815531|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.66|85.54|0.00|-2.00|0001B5D1|0|1| +21|2023-10-06T20:30:34.6120000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|26E70000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|1815531|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|0001B5D2|0|1| +38|2023-10-06T20:30:34.6120000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.66|85.54|0.00|-2.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:34.6120000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:30:34.6120000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:30:34.6120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||97.22|84.21|0.00|2.55|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:34.6120000-07:00|76E|Sword Oath|22.38|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +261|2023-10-06T20:30:34.2190000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:34.7010000-07:00|40022550|Zeromus|0001B5CE|1801102||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:34.7010000-07:00|10FF0002|Suchichi Suchi|0001B5CE|90128|90128|10000|10000|11||114.50|85.22|0.00|-1.88|1600|0|0|01|02000323|0|C1F00000|| +39|2023-10-06T20:30:34.8350000-07:00|40022E47|Demi-Phoenix|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73| +39|2023-10-06T20:30:34.8800000-07:00|10FF0005|Wuwuchu Wuchu|32172|90055|10000|10000|||85.06|111.12|0.00|0.19| +38|2023-10-06T20:30:34.8800000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|32172|90055|10000|10000|0||85.06|111.12|0.00|0.19|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:34.8800000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:30:34.9690000-07:00|40022550|Zeromus|0001B5CD|1778815||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:34.9690000-07:00|40022E47|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|154003|17E00000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|1801102|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73|0001B5D3|0|1| +21|2023-10-06T20:30:34.9690000-07:00|4002256A|Zeromus|8B7D|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.70|0001B5D4|0|0| +261|2023-10-06T20:30:34.5110000-07:00|Change|4002256A||||||||||||| +39|2023-10-06T20:30:35.0580000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|7900|10000|||113.01|118.22|0.00|-1.33| +39|2023-10-06T20:30:35.1470000-07:00|10FF0004|Buhojaqe Zijaqe|76315|80739|4600|10000|||92.21|86.72|0.00|-0.43| +21|2023-10-06T20:30:35.1470000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|16CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1778815|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||95.78|85.28|0.00|2.46|0001B5D5|0|1| +21|2023-10-06T20:30:35.1470000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|37D00000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|1778815|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6335|10000|||93.98|85.98|0.00|2.35|0001B5D6|0|1| +37|2023-10-06T20:30:35.2370000-07:00|40022550|Zeromus|0001B5D1|1767679||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:35.2370000-07:00|10FF0002|Suchichi Suchi|0001B5D1|90128|90128|10000|10000|11||114.48|84.13|0.00|-1.84|1600|0|0|01|02000323|0|41F00000|| +21|2023-10-06T20:30:35.2370000-07:00|10FF0002|Suchichi Suchi|4060|Stardiver|40022550|Zeromus|122003|98B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1778815|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.48|84.13|0.00|-1.84|0001B5D7|0|1| +38|2023-10-06T20:30:35.2370000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.48|84.13|0.00|-1.84|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:30:35.2800000-07:00|10FF0007|Kehabiqo Febiqo|0001B5D0|127353|128564|10000|10000|0||95.78|85.28|0.00|2.46|1500|0|0|01|05000000|0|0|| +38|2023-10-06T20:30:35.2800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127353|128564|10000|10000|0||95.78|85.28|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.2800000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:35.2800000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +21|2023-10-06T20:30:35.3250000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|0001B5D8|0|1| +38|2023-10-06T20:30:35.3700000-07:00|10FF0003|Gegehi Gehi|005A5A23|14617|73085|2000|10000|0||106.91|92.38|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T20:30:35.3700000-07:00|94|Raise|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|08|73085|79111| +30|2023-10-06T20:30:35.3700000-07:00|2B|Weakness|0.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +26|2023-10-06T20:30:35.3700000-07:00|2C|Brink of Death|100.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +26|2023-10-06T20:30:35.3700000-07:00|1A2|Transcendent|5.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +261|2023-10-06T20:30:34.9620000-07:00|Change|10FF0003||||| +261|2023-10-06T20:30:35.0780000-07:00|Change|10FF0004||||| +261|2023-10-06T20:30:35.0780000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:30:35.1780000-07:00|Change|10FF0006||||||||||||||||||||||| +22|2023-10-06T20:30:35.5940000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|28DA0000|5C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|76315|80739|4600|10000|||92.21|86.72|0.00|-0.43|76315|80739|4600|10000|||92.21|86.72|0.00|-0.43|0001B5D9|0|4| +22|2023-10-06T20:30:35.5940000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|189C0000|60000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|5935|10000|||93.98|85.98|0.00|2.35|76315|80739|4600|10000|||92.21|86.72|0.00|-0.43|0001B5D9|1|4| +22|2023-10-06T20:30:35.5940000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|19E30000|6B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127353|128564|10000|10000|||95.78|85.28|0.00|2.46|76315|80739|4600|10000|||92.21|86.72|0.00|-0.43|0001B5D9|2|4| +22|2023-10-06T20:30:35.5940000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|18AD0000|7B000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|76315|80739|4600|10000|||92.21|86.72|0.00|-0.43|0001B5D9|3|4| +38|2023-10-06T20:30:35.5940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127353|128564|10000|10000|8||95.78|85.28|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.5940000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:35.5940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|76315|80739|3600|10000|20||92.21|86.72|0.00|-0.43|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.5940000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:30:35.6830000-07:00|40022550|Zeromus|0001B5D5|1761841||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:35.6830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|714003|8010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1767679|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|0001B5DA|0|1| +31|2023-10-06T20:30:35.6830000-07:00|10FF0001||||| +24|2023-10-06T20:30:35.8160000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|23E8|127353|128564|10000|10000|||95.78|85.28|0.00|2.46|10FF0006|Wowobora Gogobora|1|80739|80739|5935|10000|||93.98|85.98|0.00|2.35| +37|2023-10-06T20:30:35.8160000-07:00|40022550|Zeromus|0001B5D6|1747553||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:35.8160000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022550|Zeromus|3F712003|4CFC0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|1761841|40478540|10000|10000|||100.00|80.10|0.00|0.00|127353|128564|10000|10000|||95.78|85.28|0.00|2.46|0001B5DB|0|1| +38|2023-10-06T20:30:35.8160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||95.78|85.28|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.8160000-07:00|A75|Surging Tempest|39.34|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +24|2023-10-06T20:30:35.8600000-07:00|10FF0003|Gegehi Gehi|HoT|798|CFA|14617|73085|2000|10000|||106.91|92.38|0.00|0.00|10FF0004|Buhojaqe Zijaqe|0|76315|80739|3600|10000|||92.21|86.72|0.00|-0.43| +24|2023-10-06T20:30:35.8600000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CD5|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|10FF0004|Buhojaqe Zijaqe|0|76315|80739|3600|10000|||92.21|86.72|0.00|-0.43| +24|2023-10-06T20:30:35.8600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D15|127353|128564|10000|10000|||95.78|85.28|0.00|2.46|10FF0004|Buhojaqe Zijaqe|0|76315|80739|3600|10000|||92.21|86.72|0.00|-0.43| +24|2023-10-06T20:30:35.8600000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CEF|80739|80739|5935|10000|||93.98|85.98|0.00|2.35|10FF0004|Buhojaqe Zijaqe|0|76315|80739|3600|10000|||92.21|86.72|0.00|-0.43| +24|2023-10-06T20:30:35.8600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D53|76315|80739|3600|10000|||92.21|86.72|0.00|-0.43|10FF0004|Buhojaqe Zijaqe|0|76315|80739|3600|10000|||92.21|86.72|0.00|-0.43| +38|2023-10-06T20:30:35.8600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|8||95.78|85.28|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.8600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:35.8600000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5935|10000|13||93.98|85.98|0.00|2.35|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.8600000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:35.8600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:35.8600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||97.22|84.21|0.00|2.55|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.8600000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:35.8600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79726|80739|4150|10000|20||92.21|86.72|0.00|-0.43|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.8600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:35.8600000-07:00|10FF0003|Gegehi Gehi|005A5A23|17939|73085|2000|10000|0||106.91|92.38|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T20:30:35.8600000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:30:35.9040000-07:00|40022550|Zeromus|0001B5D2|1737594||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:35.9040000-07:00|10FF0003|Gegehi Gehi|18669|73085|2200|10000|||106.91|92.38|0.00|0.00| +21|2023-10-06T20:30:35.9040000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1747553|40478540|10000|10000|||100.00|80.10|0.00|0.00|79726|80739|4150|10000|||92.21|86.72|0.00|-0.43|0001B5DC|0|1| +261|2023-10-06T20:30:35.4560000-07:00|Change|10FF0003||| +37|2023-10-06T20:30:35.9480000-07:00|10FF0001|Sesuga Sapisuga|0001B5D8|127791|127791|10000|10000|13||97.22|84.21|0.00|2.55|1300|0|0|01|0200004C|0|41A00000|| +26|2023-10-06T20:30:35.9480000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +37|2023-10-06T20:30:35.9930000-07:00|40022550|Zeromus|0001B5D3|1731482||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:35.9930000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|21650000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|79726|80739|4150|10000|||92.21|86.72|0.00|-0.43|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B5DD|0|1| +21|2023-10-06T20:30:35.9930000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022550|Zeromus|750003|29A10000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|1747553|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|0001B5DE|0|1| +38|2023-10-06T20:30:35.9930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||97.22|84.21|0.00|2.55|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:35.9930000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|127791|127791| +26|2023-10-06T20:30:35.9930000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:30:36.0380000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|32172|90055|10000|10000|0||86.05|107.31|0.00|2.69|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:36.0380000-07:00|A21|Enshrouded|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:30:36.0380000-07:00|10FF0005|Wuwuchu Wuchu|5F4A|Enshroud|10FF0005|Wuwuchu Wuchu|3E|1048000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32172|90055|10000|10000|||86.05|107.31|0.00|2.69|32172|90055|10000|10000|||86.05|107.31|0.00|2.69|0001B5DF|0|1| +37|2023-10-06T20:30:36.2160000-07:00|40022550|Zeromus|0001B5DA|1729433||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:36.2160000-07:00|10FF0001|Sesuga Sapisuga|0001B5DA|127791|127791|10000|10000|13||97.22|84.21|0.00|2.55|1300|0|0|02|04000558|04|C1F00000|||||| +39|2023-10-06T20:30:36.2610000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||95.78|85.28|0.00|2.46| +21|2023-10-06T20:30:36.3950000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|D110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1729433|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.59|83.55|0.00|-1.81|0001B5E0|0|1| +21|2023-10-06T20:30:36.3950000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|152003|83BA0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|1729433|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|7900|10000|||109.42|118.06|0.00|-1.35|0001B5E1|0|1| +37|2023-10-06T20:30:36.4400000-07:00|40022550|Zeromus|0001B5DC|1729284||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:36.4400000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||114.59|83.53|0.00|-1.81| +39|2023-10-06T20:30:36.4400000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|-2.77| +261|2023-10-06T20:30:35.9990000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:30:35.9990000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:36.5290000-07:00|40022550|Zeromus|0001B5D7|1690193||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:36.5290000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|73E|79111|79111|7600|10000|||109.42|118.06|0.00|-2.90|40022E47|Demi-Phoenix|0|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73| +38|2023-10-06T20:30:36.5290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8150|10000|21||109.42|118.06|0.00|-2.90|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:30:36.6190000-07:00|40022550|Zeromus|0001B5DE|1679536||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:36.6190000-07:00|10FF0001|Sesuga Sapisuga|0001B5DE|127791|127791|10000|10000|13||97.22|84.21|0.00|2.55|1300|0|0|02|04000558|04|41F00000|||||| +38|2023-10-06T20:30:36.6190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|10000|10000|13||97.22|84.21|0.00|2.55|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T20:30:36.7070000-07:00|10FF0004|Buhojaqe Zijaqe|0001B5D9|80739|80739|4150|10000|20||92.22|86.73|0.00|0.04|1C00|0|0|01|0A000129|0|41E770A0|| +261|2023-10-06T20:30:36.3050000-07:00|Change|10FF0006||||||||||||||||||| +20|2023-10-06T20:30:36.7970000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|93.63|86.71|0.00|0.54| +20|2023-10-06T20:30:36.7970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|92.25|86.76|-0.02|0.28| +261|2023-10-06T20:30:36.4380000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:36.9300000-07:00|40022550|Zeromus|0001B5E0|1676191||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:36.9750000-07:00|10FF0007|Kehabiqo Febiqo|0001B5D9|128564|128564|10000|10000|8||95.78|85.28|0.00|2.46|1502|0|0|01|05000129|0|41E54DCE|| +39|2023-10-06T20:30:37.0180000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|10000|10000|||97.22|84.21|0.00|2.55| +21|2023-10-06T20:30:37.1080000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|A724003|4C7C0000|F|7478000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|1676191|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.70|82.90|0.00|-1.81|0001B5E2|0|1| +21|2023-10-06T20:30:37.1080000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022550|Zeromus|712003|904A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1676191|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|0001B5E3|0|1| +38|2023-10-06T20:30:37.1080000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.70|82.90|0.00|-1.81|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:37.1080000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:30:37.1080000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:30:37.1960000-07:00|40022550|Zeromus|DoT|0|2E32|1676191|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|1676191|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:37.1970000-07:00|40022550|Zeromus|005A5A00|1664365|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +21|2023-10-06T20:30:37.2850000-07:00|10FF0005|Wuwuchu Wuchu|1D7A|True North|10FF0005|Wuwuchu Wuchu|E|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32172|90055|10000|10000|||89.25|100.46|0.00|2.54|32172|90055|10000|10000|||89.25|100.46|0.00|2.54|0001B5E4|0|1| +38|2023-10-06T20:30:37.2850000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|32172|90055|10000|10000|0||89.25|100.46|0.00|2.54|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:37.2850000-07:00|4E2|True North|10.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:30:37.4630000-07:00|40022550|Zeromus|0001B5DB|1644657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:37.4630000-07:00|40022550|Zeromus|0001B5E1|1610935||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:37.1000000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T20:30:37.1000000-07:00|Change|10FF0008||| +39|2023-10-06T20:30:37.5070000-07:00|10FF0006|Wowobora Gogobora|80739|80739|6140|10000|||92.97|87.72|0.00|2.40| +21|2023-10-06T20:30:37.5070000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|1BD70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||95.78|85.28|0.00|2.46|1610935|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B5E5|0|1| +37|2023-10-06T20:30:37.6410000-07:00|40022550|Zeromus|0001B5E3|1573997||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:37.6860000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022550|Zeromus|720003|1D560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1610935|40478540|10000|10000|||100.00|80.10|0.00|0.00|18669|73085|2200|10000|||107.38|95.92|0.00|0.16|0001B5E6|0|1| +21|2023-10-06T20:30:37.6860000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1610935|40478540|10000|10000|||100.00|80.10|0.00|0.00|18669|73085|2200|10000|||107.38|95.92|0.00|0.16|0001B5E7|0|1| +21|2023-10-06T20:30:37.6860000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|10B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1610935|40478540|10000|10000|||100.00|80.10|0.00|0.00|32172|90055|10000|10000|||90.04|99.84|0.00|2.20|0001B5E8|0|1| +38|2023-10-06T20:30:37.6860000-07:00|10FF0003|Gegehi Gehi|005A5A23|18669|73085|2200|10000|0||107.38|95.92|0.00|0.16|0|0|0|||||||||| +30|2023-10-06T20:30:37.6860000-07:00|1A2|Transcendent|0.00|E0000000||10FF0003|Gegehi Gehi|00|73085|| +21|2023-10-06T20:30:37.7310000-07:00|10FF0002|Suchichi Suchi|405E|High Jump|40022550|Zeromus|722003|62B80000|F|4DB8000|0|0|0|0|0|0|0|0|0|0|0|0|1573997|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.70|82.90|0.00|-1.76|0001B5E9|0|1| +21|2023-10-06T20:30:37.7310000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|38830000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|1573997|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|6140|10000|||92.97|87.72|0.00|2.40|0001B5EA|0|1| +21|2023-10-06T20:30:37.7310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31AE0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|1573997|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4150|10000|||92.55|87.11|0.00|2.33|0001B5EB|0|1| +38|2023-10-06T20:30:37.7310000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.70|82.90|0.00|-1.76|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:37.7310000-07:00|4DB|Dive Ready|15.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:30:37.2980000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:37.7740000-07:00|40022550|Zeromus|0001B5E2|1554417||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:37.7740000-07:00|10FF0002|Suchichi Suchi|0001B5E2|90128|90128|10000|10000|11||114.70|82.90|0.00|-1.76|1600|0|0|02|020004DB|0|C1700000|||||| +38|2023-10-06T20:30:37.7740000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.70|82.90|0.00|-1.76|0|0|0|||||||||||||||||||||| +37|2023-10-06T20:30:37.8190000-07:00|10FF0005|Wuwuchu Wuchu|0001B5E4|32172|90055|10000|10000|0||91.59|98.73|0.00|2.20|2700|0|0|01|040004E2|0|41200000|| +21|2023-10-06T20:30:37.8190000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|136C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1554417|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|0001B5EC|0|1| +38|2023-10-06T20:30:37.8190000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|32172|90055|10000|10000|0||91.59|98.73|0.00|2.20|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:37.3890000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T20:30:37.8630000-07:00|40022E47|Demi-Phoenix|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73| +39|2023-10-06T20:30:37.8630000-07:00|10FF0005|Wuwuchu Wuchu|33072|90055|10000|10000|||91.59|98.73|0.00|2.20| +38|2023-10-06T20:30:37.9080000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.70|82.90|0.00|-1.76|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:37.9080000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +21|2023-10-06T20:30:37.9530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1554417|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||97.22|84.21|0.00|2.55|0001B5ED|0|1| +31|2023-10-06T20:30:37.9530000-07:00|10FF0001||||| +39|2023-10-06T20:30:38.0420000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8350|10000|||109.42|118.06|0.00|-2.90| +21|2023-10-06T20:30:38.0860000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1554417|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5740|10000|||92.97|87.72|0.00|2.40|0001B5EE|0|1| +21|2023-10-06T20:30:38.0860000-07:00|10FF0005|Wuwuchu Wuchu|1EB7|Leg Sweep|40022550|Zeromus|37|20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1554417|40478540|10000|10000|||100.00|80.10|0.00|0.00|33072|90055|10000|10000|||93.67|97.23|0.00|2.20|0001B5EF|0|1| +21|2023-10-06T20:30:38.1300000-07:00|40022E47|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|12760000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|1554417|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73|0001B5F0|0|1| +39|2023-10-06T20:30:38.1300000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|3950|10000|||92.55|87.11|0.00|2.33| +37|2023-10-06T20:30:38.2190000-07:00|40022550|Zeromus|0001B5E9|1529145||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:38.2190000-07:00|10FF0002|Suchichi Suchi|0001B5E9|90128|90128|10000|10000|11||114.70|82.90|0.00|-1.76|1600|0|0|01|020004DB|0|41700000|| +37|2023-10-06T20:30:38.2190000-07:00|40022550|Zeromus|0001B5E7|1529144||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:38.2190000-07:00|40022550|Zeromus|0001B5E8|1524871||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:38.2190000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.70|82.90|0.00|-1.76|0|0|0|||||||||||||||||||||| +21|2023-10-06T20:30:38.2640000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|710003|37FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1554417|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||95.78|85.28|0.00|2.46|0001B5F1|0|1| +37|2023-10-06T20:30:38.3100000-07:00|10FF0007|Kehabiqo Febiqo|0001B5E5|121437|128564|10000|10000|0||95.78|85.28|0.00|2.46|1500|0|0|01|05000000|0|0|| +21|2023-10-06T20:30:38.3100000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0003|Gegehi Gehi|200004|799F0000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|18669|73085|2200|10000|||107.47|96.48|0.00|-2.71|80739|80739|3950|10000|||92.55|87.11|0.00|2.33|0001B5F2|0|1| +38|2023-10-06T20:30:38.3100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121437|128564|10000|10000|0||95.78|85.28|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:38.3100000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:38.3100000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:38.3100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3950|10000|20||92.55|87.11|0.00|2.33|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:38.3100000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|80739|80739| +24|2023-10-06T20:30:38.3990000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|14FF|121437|128564|10000|10000|||95.78|85.28|0.00|2.46|10FF0006|Wowobora Gogobora|0|80739|80739|5740|10000|||92.94|87.69|0.00|2.94| +37|2023-10-06T20:30:38.3990000-07:00|40022550|Zeromus|0001B5EA|1510404||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:38.3990000-07:00|40022550|Zeromus|0001B5EC|1505432||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:38.3990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126812|128564|10000|10000|0||95.78|85.28|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:38.4880000-07:00|40022550|Zeromus|0001B5ED|1503202||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:38.0290000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:30:38.0290000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:38.5330000-07:00|40022550|Zeromus|0001B5EB|1490484||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:38.5330000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|AE40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1503202|40478540|10000|10000|||100.00|80.10|0.00|0.00|126812|128564|10000|10000|||95.78|85.28|0.00|2.46|0001B5F3|0|1| +21|2023-10-06T20:30:38.5330000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022550|Zeromus|726003|31490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1503202|40478540|10000|10000|||100.00|80.10|0.00|0.00|18669|73085|2200|10000|||107.40|96.53|0.00|-2.57|0001B5F4|0|1| +38|2023-10-06T20:30:38.5330000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|3950|10000|20||92.56|87.11|0.00|1.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:38.5330000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:30:38.5780000-07:00|10FF0002|Suchichi Suchi|5F|Spineshatter Dive|40022550|Zeromus|720003|257D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1503202|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.70|82.90|0.00|-1.76|0001B5F5|0|1| +37|2023-10-06T20:30:38.6220000-07:00|40022550|Zeromus|0001B5EE|1490448||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:38.2610000-07:00|Remove|40022E3D| +37|2023-10-06T20:30:38.8450000-07:00|40022550|Zeromus|0001B5E6|1482938||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:38.8450000-07:00|10FF0005|Wuwuchu Wuchu|1D76|Bloodbath|10FF0005|Wuwuchu Wuchu|190E|540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33072|90055|10000|10000|||94.60|95.51|-0.01|2.81|33072|90055|10000|10000|||94.60|95.51|-0.01|2.81|0001B5F6|0|1| +37|2023-10-06T20:30:38.8900000-07:00|40022550|Zeromus|0001B5F1|1468603||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:38.8900000-07:00|10FF0003|Gegehi Gehi|19399|73085|2400|10000|||106.42|96.51|0.00|-2.65| +261|2023-10-06T20:30:38.4510000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:30:38.8900000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|154003|6A190000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|1490448|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8350|10000|||109.36|117.93|0.00|-2.69|0001B5F7|0|1| +38|2023-10-06T20:30:38.8900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4500|10000|20||93.15|87.03|0.00|1.77|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:38.9340000-07:00|10FF0003|Gegehi Gehi|0001B5F2|50534||||||105.87|96.49|0.00|-2.59| +37|2023-10-06T20:30:39.0670000-07:00|40022550|Zeromus|0001B5F3|1465815||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:39.1580000-07:00|40022550|Zeromus|0001B5F0|1461089||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:39.2010000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|18BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1465815|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.70|82.90|0.00|-1.76|0001B5F8|0|1| +39|2023-10-06T20:30:39.2460000-07:00|10FF0007|Kehabiqo Febiqo|128097|128564|10000|10000|||95.78|85.28|0.00|2.46| +261|2023-10-06T20:30:38.8590000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:30:39.3350000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022550|Zeromus|722003|D5E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1461089|40478540|10000|10000|||100.00|80.10|0.00|0.00|50534|73085|2400|10000|||104.29|95.88|0.00|-2.48|0001B5F9|0|1| +37|2023-10-06T20:30:39.3790000-07:00|40022550|Zeromus|0001B5F5|1451492||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:39.4240000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|200004|22B90000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|33072|90055|10000|10000|||94.59|95.48|0.00|2.80|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B5FA|0|1| +39|2023-10-06T20:30:39.4240000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +37|2023-10-06T20:30:39.4680000-07:00|10FF0005|Wuwuchu Wuchu|0001B5F6|33072|90055|10000|10000|0||94.59|95.48|0.00|2.80|2700|0|0|01|06000054|0|41A00000|| +26|2023-10-06T20:30:39.4680000-07:00|54|Bloodbath|20.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:30:39.4680000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||114.70|82.90|-0.02|-1.76| +261|2023-10-06T20:30:39.0830000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:30:39.0830000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T20:30:39.5580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|C32|79111|79111|8050|10000|||106.52|113.43|0.00|-2.64|40022E47|Demi-Phoenix|0|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73| +38|2023-10-06T20:30:39.5580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8600|10000|21||106.52|113.43|0.00|-2.64|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:30:39.6030000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|720003|2AA60000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|1451492|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||114.70|82.90|-0.02|-1.76|0001B5FB|0|1| +38|2023-10-06T20:30:39.6030000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||114.70|82.90|-0.02|-1.76|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:39.6030000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +20|2023-10-06T20:30:39.6480000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|88.66|85.92|0.00|-2.50| +261|2023-10-06T20:30:39.2720000-07:00|Change|10FF0006||||||||||||||||||| +21|2023-10-06T20:30:39.6480000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022550|Zeromus|750003|70FD0000|4|25DC8000|0|0|0|0|0|0|0|0|0|0|0|0|1451492|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|10000|10000|||98.49|90.71|0.00|0.10|0001B5FC|0|1| +21|2023-10-06T20:30:39.6480000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|712003|67970000|104|135C8000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|1451492|40478540|10000|10000|||100.00|80.10|0.00|0.00|33072|90055|10000|10000|||94.59|95.48|0.00|2.80|0001B5FD|0|1| +38|2023-10-06T20:30:39.6480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9000|10000|13||98.49|90.71|0.00|0.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:39.6480000-07:00|558|Requiescat|26.93|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|127791|127791| +30|2023-10-06T20:30:39.6480000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +38|2023-10-06T20:30:39.6480000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|33072|90055|10000|10000|0||94.59|95.48|0.00|2.80|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:39.6480000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +31|2023-10-06T20:30:39.6480000-07:00|10FF0001||||| +37|2023-10-06T20:30:39.6920000-07:00|40022550|Zeromus|0001B5F4|1438875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:39.7360000-07:00|40022550|Zeromus|0001B5F8|1432541||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:39.3660000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:39.3660000-07:00|Change|40022DBB||||||||| +26|2023-10-06T20:30:39.8690000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:30:39.8690000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|752003|52B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1438875|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8600|10000|||105.89|112.35|0.00|-2.62|0001B5FE|0|1| +37|2023-10-06T20:30:39.9580000-07:00|40022550|Zeromus|0001B5F7|1405380||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:39.9580000-07:00|40022550|Zeromus|0001B5F9|1401958||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:40.0030000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|9200|10000|||98.41|92.62|0.00|-0.36| +21|2023-10-06T20:30:40.0030000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|128097|128564|10000|10000|||95.78|85.28|0.00|2.46|128097|128564|10000|10000|||95.78|85.28|0.00|2.46|0001B5FF|0|1| +21|2023-10-06T20:30:40.0030000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1401958|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4500|10000|||94.18|88.65|0.00|0.22|0001B600|0|1| +38|2023-10-06T20:30:40.0030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128097|128564|10000|10000|0||95.78|85.28|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:40.0030000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|128564|128564| +26|2023-10-06T20:30:40.0030000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:30:40.0030000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:30:40.0030000-07:00|A75|Surging Tempest|45.15|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +21|2023-10-06T20:30:40.0480000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022550|Zeromus|726003|16D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1401958|40478540|10000|10000|||100.00|80.10|0.00|0.00|50534|73085|2400|10000|||104.06|95.73|0.00|-2.90|0001B601|0|1| +37|2023-10-06T20:30:40.1810000-07:00|40022550|Zeromus|0001B5FD|1375439||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:40.1810000-07:00|10FF0005|Wuwuchu Wuchu|0001B5FD|38028|90055|10000|10000|0||94.59|95.48|0.00|2.81|2700|0|0|01|07000A1F|0|41F00000|| +24|2023-10-06T20:30:40.1810000-07:00|40022550|Zeromus|DoT|0|2EB7|1401958|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|1401958|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:40.1810000-07:00|40022550|Zeromus|005A5A00|1363480|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:40.1810000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|38028|90055|10000|10000|0||94.59|95.48|0.00|2.81|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:40.2270000-07:00|40022550|Zeromus|0001B5FB|1352562||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:40.2270000-07:00|10FF0005|Wuwuchu Wuchu|0001B5FA|46917||||||94.59|95.48|0.00|2.81| +21|2023-10-06T20:30:40.2270000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|DC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1363480|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||99.19|93.45|0.00|-0.56|0001B602|0|1| +38|2023-10-06T20:30:40.2270000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|-2.05|0|0|0||||||| +26|2023-10-06T20:30:40.2270000-07:00|77B|Summon Order|30.00|40022DBB|Ruby Carbuncle|40022DBB|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:30:40.2270000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4500|10000|||94.30|88.69|0.00|0.65|80739|80739|4500|10000|||94.30|88.69|0.00|0.65|0001B603|0|1| +31|2023-10-06T20:30:40.2270000-07:00|10FF0001||||| +37|2023-10-06T20:30:40.2700000-07:00|40022550|Zeromus|0001B5FC|1323637||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:40.2700000-07:00|10FF0002|Suchichi Suchi|1CE7|Mirage Dive|40022550|Zeromus|726003|3ED30000|13E|9E8000|0|0|0|0|0|0|0|0|0|0|0|0|1363480|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||112.01|82.61|0.00|-1.76|0001B604|0|1| +38|2023-10-06T20:30:40.2700000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||112.01|82.61|0.00|-1.76|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:40.2700000-07:00|4DB|Dive Ready|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:30:39.9080000-07:00|Change|10FF0001||||||||| +22|2023-10-06T20:30:40.4930000-07:00|40022DBB|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|9200|10000|||100.13|94.14|0.00|-0.58|73956|77430|10000|10000|||98.71|97.61|0.00|-2.05|0001B605|0|6| +22|2023-10-06T20:30:40.4930000-07:00|40022DBB|Ruby Carbuncle|323|Whispering Dawn|10FF0005|Wuwuchu Wuchu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|46917|90055|10000|10000|||94.59|95.48|0.00|2.81|73956|77430|10000|10000|||98.71|97.61|0.00|-2.05|0001B605|1|6| +22|2023-10-06T20:30:40.4930000-07:00|40022DBB|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|50534|73085|2400|10000|||103.81|95.57|0.00|-2.90|73956|77430|10000|10000|||98.71|97.61|0.00|-2.05|0001B605|2|6| +22|2023-10-06T20:30:40.4930000-07:00|40022DBB|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4500|10000|||94.07|88.63|0.00|0.06|73956|77430|10000|10000|||98.71|97.61|0.00|-2.05|0001B605|3|6| +22|2023-10-06T20:30:40.4930000-07:00|40022DBB|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8600|10000|||105.11|110.85|0.00|-2.96|73956|77430|10000|10000|||98.71|97.61|0.00|-2.05|0001B605|4|6| +22|2023-10-06T20:30:40.4930000-07:00|40022DBB|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|128097|128564|10000|10000|||95.78|85.28|0.00|2.46|73956|77430|10000|10000|||98.71|97.61|0.00|-2.05|0001B605|5|6| +39|2023-10-06T20:30:40.4930000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5945|10000|||88.52|85.68|0.00|2.02| +261|2023-10-06T20:30:40.1350000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T20:30:40.1350000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:40.5360000-07:00|40022550|Zeromus|0001B600|1323485||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:40.5360000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|446A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128097|128564|10000|10000|||95.79|85.29|-0.02|2.38|1323637|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B606|0|1| +21|2023-10-06T20:30:40.5830000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|39680000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|1323637|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5945|10000|||88.52|85.68|0.00|2.02|0001B607|0|1| +37|2023-10-06T20:30:40.6260000-07:00|40022550|Zeromus|0001B601|1317636||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:40.6260000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022550|Zeromus|710003|11DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1323637|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||100.13|94.14|0.00|-0.58|0001B608|0|1| +37|2023-10-06T20:30:40.7600000-07:00|10FF0007|Kehabiqo Febiqo|0001B5FF|128097|128564|10000|10000|0||95.83|85.30|0.00|1.85|1500|0|0|03|05000499|03|41700000|||||||||| +37|2023-10-06T20:30:40.7600000-07:00|40022550|Zeromus|0001B602|1314116||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:40.7600000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|72E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1317636|40478540|10000|10000|||100.00|80.10|0.00|0.00|128097|128564|10000|10000|||95.83|85.30|0.00|1.85|0001B609|0|1| +38|2023-10-06T20:30:40.7600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128097|128564|10000|10000|0||95.83|85.30|0.00|1.85|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:40.7600000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:40.7600000-07:00|499|Inner Release|14.95|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|128564|128564| +37|2023-10-06T20:30:40.8040000-07:00|40022550|Zeromus|0001B5FE|1292941||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:40.8490000-07:00|40022E47|Demi-Phoenix|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73| +20|2023-10-06T20:30:40.8490000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|103.81|95.57|0.00|-2.90| +38|2023-10-06T20:30:40.8490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4500|10000|20||93.78|88.57|0.00|0.24|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:40.8490000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:40.8490000-07:00|10FF0003|Gegehi Gehi|005A5A23|50534|73085|2400|10000|0||103.81|95.57|0.00|-2.90|0|0|0|||||||||| +30|2023-10-06T20:30:40.8490000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +261|2023-10-06T20:30:40.4240000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:30:40.4240000-07:00|Change|10FF0002||||||||| +39|2023-10-06T20:30:40.8940000-07:00|10FF0005|Wuwuchu Wuchu|47817|90055|10000|10000|||94.59|95.48|0.00|2.81| +21|2023-10-06T20:30:40.8940000-07:00|10FF0002|Suchichi Suchi|64AD|Wyrmwind Thrust|40022550|Zeromus|724003|4CA30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1292941|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||108.87|83.93|0.00|-1.79|0001B60A|0|1| +21|2023-10-06T20:30:40.8940000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|101D0000|104|3028000|0|0|0|0|0|0|0|0|0|0|0|0|1292941|40478540|10000|10000|||100.00|80.10|0.00|0.00|46917|90055|10000|10000|||94.59|95.48|0.00|2.81|0001B60B|0|1| +38|2023-10-06T20:30:40.8940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128097|128564|10000|10000|0||95.92|85.31|0.00|2.56|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:40.8940000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:40.8940000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5545|10000|13||88.52|85.68|0.00|2.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:40.8940000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +30|2023-10-06T20:30:40.8940000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:40.8940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9200|10000|13||100.13|94.14|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:40.8940000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +39|2023-10-06T20:30:41.0270000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8800|10000|||103.32|107.43|0.00|-2.70| +20|2023-10-06T20:30:41.0270000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|93.79|88.61|-0.02|0.19| +261|2023-10-06T20:30:40.5190000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:30:41.0710000-07:00|40022550|Zeromus|0001B604|1276858||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:41.1170000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|710003|487E0000|104|D8C8000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|1292941|40478540|10000|10000|||100.00|80.10|0.00|0.00|47817|90055|10000|10000|||94.59|95.48|0.00|2.81|0001B60C|0|1| +38|2023-10-06T20:30:41.1170000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|47817|90055|10000|10000|0||94.59|95.48|0.00|2.81|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:41.1170000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:30:41.1170000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +39|2023-10-06T20:30:41.1610000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4700|10000|||93.81|88.67|0.00|0.97| +37|2023-10-06T20:30:41.2050000-07:00|40022550|Zeromus|0001B608|1272283||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:40.7510000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T20:30:41.2510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1542|128097|128564|10000|10000|||96.39|85.42|0.00|2.68|10FF0006|Wowobora Gogobora|0|80739|80739|5545|10000|||88.52|85.68|0.00|2.02| +37|2023-10-06T20:30:41.2510000-07:00|40022550|Zeromus|0001B607|1257587||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:41.2510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||96.39|85.42|0.00|2.68|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:30:41.2950000-07:00|40022E47|Demi-Phoenix|4087|Scarlet Flame|40022550|Zeromus|150003|11DE0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|1257587|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73|0001B60D|0|1| +37|2023-10-06T20:30:41.3390000-07:00|10FF0007|Kehabiqo Febiqo|0001B606|111050||||||96.56|85.67|0.00|-3.08| +21|2023-10-06T20:30:41.3390000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|50D80000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|1257587|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8800|10000|||102.23|105.37|0.00|-2.66|0001B60E|0|1| +37|2023-10-06T20:30:41.3840000-07:00|40022550|Zeromus|0001B609|1228172||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:41.3840000-07:00|10FF0001|Sesuga Sapisuga|0001B605|127791|127791|9200|10000|13||100.27|94.60|0.00|-1.23|1300|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T20:30:41.3840000-07:00|13B|Whispering Dawn|21.00|40022DBB|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|127791|77430| +37|2023-10-06T20:30:41.4280000-07:00|40022550|Zeromus|0001B60B|1224047||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:41.4280000-07:00|10FF0005|Wuwuchu Wuchu|0001B60B|48587|90055|10000|10000|0||94.59|95.48|0.00|2.80|2700|0|0|01|07000A1E|0|C1F00000|| +37|2023-10-06T20:30:41.5170000-07:00|10FF0005|Wuwuchu Wuchu|0001B605|48587|90055|10000|10000|0||94.59|95.48|0.00|2.80|2701|0|0|02|07000A1E|0|C1F00000|||||| +26|2023-10-06T20:30:41.5170000-07:00|13B|Whispering Dawn|21.00|40022DBB|Ruby Carbuncle|10FF0005|Wuwuchu Wuchu|00|90055|77430| +21|2023-10-06T20:30:41.5170000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|111050|128564|10000|10000|||96.97|86.62|0.00|-2.22|111050|128564|10000|10000|||96.97|86.62|0.00|-2.22|0001B60F|0|1| +38|2023-10-06T20:30:41.5170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111050|128564|10000|10000|0||96.97|86.62|0.00|-2.22|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:41.5170000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:30:41.1070000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T20:30:41.1980000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T20:30:41.6510000-07:00|10FF0003|Gegehi Gehi|0001B605|50534|73085|2400|10000|0||103.81|95.57|0.00|-2.90|2302|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T20:30:41.6510000-07:00|13B|Whispering Dawn|21.00|40022DBB|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73085|77430| +24|2023-10-06T20:30:41.6960000-07:00|10FF0003|Gegehi Gehi|HoT|0|92A|50534|73085|2400|10000|||103.81|95.57|0.00|-2.90|E0000000||0||||||||||| +38|2023-10-06T20:30:41.6960000-07:00|10FF0003|Gegehi Gehi|005A5A23|52880|73085|2400|10000|0||103.81|95.57|0.00|-2.90|0|0|0|||||||||| +261|2023-10-06T20:30:41.2930000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:30:41.7410000-07:00|40022550|Zeromus|0001B60C|1205489||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:41.7410000-07:00|10FF0005|Wuwuchu Wuchu|0001B60C|52055|90055|10000|10000|0||94.59|95.48|0.00|2.80|2700|0|0|01|07000A1E|0|41F00000|| +38|2023-10-06T20:30:41.7410000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|52055|90055|10000|10000|0||94.59|95.48|0.00|2.80|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:41.7850000-07:00|10FF0004|Buhojaqe Zijaqe|0001B605|80739|80739|4700|10000|20||93.83|88.73|0.00|2.52|1C03|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T20:30:41.7850000-07:00|13B|Whispering Dawn|21.00|40022DBB|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|80739|77430| +39|2023-10-06T20:30:41.8750000-07:00|10FF0003|Gegehi Gehi|53610|73085|2600|10000|||103.81|95.57|0.00|-2.90| +24|2023-10-06T20:30:41.8750000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|94E|127791|127791|9200|10000|||99.17|96.97|0.00|-2.48|10FF0001|Sesuga Sapisuga|0|127791|127791|9200|10000|||99.17|96.97|0.00|-2.48| +24|2023-10-06T20:30:41.8750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9CB|80739|80739|4700|10000|||93.83|88.73|0.00|2.52|10FF0004|Buhojaqe Zijaqe|0|80739|80739|4700|10000|||93.83|88.73|0.00|2.52| +21|2023-10-06T20:30:41.8750000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1205489|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5545|10000|||88.52|85.68|0.00|2.02|0001B610|0|1| +38|2023-10-06T20:30:41.8750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|9200|10000|13||99.17|96.97|0.00|-2.48|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:30:41.8750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5250|10000|20||93.83|88.73|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:41.3940000-07:00|Change|10FF0003||||| +37|2023-10-06T20:30:41.9190000-07:00|10FF0008|Kokosaze Lulusaze|0001B605|79111|79111|8500|10000|21||100.39|101.63|0.00|-2.78|1B04|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T20:30:41.9190000-07:00|13B|Whispering Dawn|21.00|40022DBB|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|79111|77430| +21|2023-10-06T20:30:41.9190000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1205489|40478540|10000|10000|||100.00|80.10|0.00|0.00|111050|128564|10000|10000|||97.83|89.68|0.00|-1.36|0001B611|0|1| +24|2023-10-06T20:30:41.9640000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|9C7|52055|90055|10000|10000|||94.59|95.48|0.00|2.80|10FF0005|Wuwuchu Wuchu|0|52055|90055|10000|10000|||94.59|95.48|0.00|2.80| +21|2023-10-06T20:30:41.9640000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|32990000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|1205489|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5250|10000|||93.83|88.73|0.00|2.52|0001B612|0|1| +38|2023-10-06T20:30:41.9640000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|54558|90055|10000|10000|0||94.59|95.48|0.00|2.80|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:41.5880000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:30:42.0090000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|CF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1205489|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.38|88.06|0.00|-1.76|0001B613|0|1| +21|2023-10-06T20:30:42.0090000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|752003|55EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1205489|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8500|10000|||100.08|100.98|0.00|-2.76|0001B614|0|1| +38|2023-10-06T20:30:42.0090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|8500|10000|21||100.08|100.98|0.00|-2.76|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:42.0090000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +37|2023-10-06T20:30:42.0540000-07:00|10FF0007|Kehabiqo Febiqo|0001B60F|111050|128564|10000|10000|0||97.99|90.33|0.00|-1.36|1500|0|0|01|06000769|0|41F00000|| +37|2023-10-06T20:30:42.0540000-07:00|10FF0007|Kehabiqo Febiqo|0001B605|111050|128564|10000|10000|0||97.99|90.33|0.00|-1.36|1505|0|0|01|0900013B|0|41A80000|| +26|2023-10-06T20:30:42.0540000-07:00|13B|Whispering Dawn|21.00|40022DBB|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|128564|77430| +20|2023-10-06T20:30:42.0540000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|88.32|85.60|0.00|2.94| +38|2023-10-06T20:30:42.0540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111050|128564|10000|10000|0||97.99|90.33|0.00|-1.36|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:42.0540000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|-2.05|0|0|0|||| +30|2023-10-06T20:30:42.0540000-07:00|77B|Summon Order|0.00|40022DBB|Ruby Carbuncle|40022DBB|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T20:30:42.0980000-07:00|40022550|Zeromus|0001B60A|1185870||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:42.1420000-07:00|10FF0002|Suchichi Suchi|57|Disembowel|40022550|Zeromus|2C720003|24840000|A0F|AA08000|11B|578000|0|0|0|0|0|0|0|0|0|0|1205489|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||102.38|88.06|0.00|-1.76|0001B615|0|1| +21|2023-10-06T20:30:42.1420000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022550|Zeromus|750003|573D0000|200004|3EBF8000|0|0|0|0|0|0|0|0|0|0|0|0|1205489|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|9200|10000|||99.17|96.97|0.00|3.09|0001B616|0|1| +38|2023-10-06T20:30:42.1420000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||102.38|88.06|0.00|-1.76|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:42.1420000-07:00|AA0|Power Surge|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +38|2023-10-06T20:30:42.1420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|8200|10000|13||99.17|96.97|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:42.1420000-07:00|558|Requiescat|24.43|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|127791|127791| +31|2023-10-06T20:30:42.1420000-07:00|10FF0001||||| +261|2023-10-06T20:30:41.6880000-07:00|Change|10FF0001||||||||| +21|2023-10-06T20:30:42.1870000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022550|Zeromus|712003|44D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1185870|40478540|10000|10000|||100.00|80.10|0.00|0.00|111050|128564|10000|10000|||98.27|91.56|0.00|-1.36|0001B617|0|1| +39|2023-10-06T20:30:42.2310000-07:00|10FF0007|Kehabiqo Febiqo|112335|128564|10000|10000|||98.27|91.56|0.00|-1.36| +21|2023-10-06T20:30:42.2310000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1185870|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8500|10000|||99.50|99.76|0.00|3.12|0001B618|0|1| +21|2023-10-06T20:30:42.2760000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|148B0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|1185870|40478540|10000|10000|||100.00|80.10|0.00|0.00|53610|73085|2600|10000|||103.81|95.57|0.00|-2.90|0001B619|0|1| +38|2023-10-06T20:30:42.2760000-07:00|10FF0003|Gegehi Gehi|005A5A23|53610|73085|2400|10000|0||103.81|95.57|0.00|-2.90|0|0|0||||||||||||| +26|2023-10-06T20:30:42.2760000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:30:42.3200000-07:00|40022550|Zeromus|0001B60D|1181296||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:42.4080000-07:00|40022550|Zeromus|0001B60E|1160600||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:42.4080000-07:00|40022550|Zeromus|0001B610|1160565||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:42.4080000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|-2.23| +261|2023-10-06T20:30:42.0260000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T20:30:42.4530000-07:00|40022550|Zeromus|0001B611|1157675||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:42.4530000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||99.96|89.26|0.00|-2.39| +261|2023-10-06T20:30:42.0260000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:42.1380000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T20:30:42.4980000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|716003|10C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1160565|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8200|10000|||99.17|96.97|0.00|3.09|0001B61A|0|1| +31|2023-10-06T20:30:42.4980000-07:00|10FF0001||||| +37|2023-10-06T20:30:42.5410000-07:00|40022550|Zeromus|0001B613|1154360||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:42.5410000-07:00|10FF0002|Suchichi Suchi|0001B613|90128|90128|10000|10000|11||99.96|89.26|0.00|-2.39|1600|0|0|01|04000AA0|0|C1F00000|| +24|2023-10-06T20:30:42.5420000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FA0|112335|128564|10000|10000|||98.50|92.54|0.00|3.05|10FF0007|Kehabiqo Febiqo|0|112335|128564|10000|10000|||98.50|92.54|0.00|3.05| +24|2023-10-06T20:30:42.5420000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1070|79111|79111|8500|10000|||99.08|98.54|0.00|-3.00|40022E47|Demi-Phoenix|0|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73| +38|2023-10-06T20:30:42.5420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116335|128564|10000|10000|0||98.50|92.54|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:42.5420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9050|10000|21||99.08|98.54|0.00|-3.00|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:30:42.1380000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:30:42.1380000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:30:42.1380000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:30:42.1380000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:30:42.1380000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:30:42.1380000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T20:30:42.5880000-07:00|10FF0005|Wuwuchu Wuchu|5F4B|Void Reaping|40022550|Zeromus|710003|42E00000|104|C7F8000|F|A1F8000|13E|1038000|0|0|0|0|0|0|0|0|1154360|40478540|10000|10000|||100.00|80.10|0.00|0.00|54558|90055|10000|10000|||94.59|95.48|0.00|2.80|0001B61B|0|1| +38|2023-10-06T20:30:42.5880000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|54558|90055|10000|10000|0||94.59|95.48|0.00|2.80|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:42.5880000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:30:42.5880000-07:00|A1F|Enhanced Cross Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +38|2023-10-06T20:30:42.6320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9050|10000|21||98.89|97.95|0.00|-2.92|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:42.6320000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|79111|79111| +21|2023-10-06T20:30:42.6320000-07:00|10FF0008|Kokosaze Lulusaze|407C|Energy Drain|40022550|Zeromus|750003|20970000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|1154360|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9050|10000|||98.89|97.95|0.00|-2.92|0001B61C|0|1| +21|2023-10-06T20:30:42.6320000-07:00|10FF0003|Gegehi Gehi|07|attack|40022550|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1154360|40478540|10000|10000|||100.00|80.10|0.00|0.00|53610|73085|2400|10000|||103.81|95.57|0.00|-2.90|0001B61D|0|1| +38|2023-10-06T20:30:42.6320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9050|10000|21||98.89|97.95|0.00|-2.92|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:42.6320000-07:00|A8D|Further Ruin|60.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +20|2023-10-06T20:30:42.6760000-07:00|4002256A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.44|85.62|0.00|0.00| +20|2023-10-06T20:30:42.6760000-07:00|4002256B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.24|111.98|0.00|0.00| +20|2023-10-06T20:30:42.6760000-07:00|4002256C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.20|92.97|0.00|0.00| +20|2023-10-06T20:30:42.6760000-07:00|4002256D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|101.39|95.43|0.00|0.00| +20|2023-10-06T20:30:42.6760000-07:00|4002256E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.05|96.39|0.00|0.00| +37|2023-10-06T20:30:42.7650000-07:00|40022550|Zeromus|0001B618|1154219||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:42.7650000-07:00|10FF0008|Kokosaze Lulusaze|0001B618|79111|79111|9050|10000|21||98.82|97.20|0.00|3.06|1B00|0|0|01|07000A8D|0|C2700000|| +37|2023-10-06T20:30:42.7650000-07:00|40022550|Zeromus|0001B616|1131886||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:42.7650000-07:00|40022550|Zeromus|0001B612|1118933||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:42.3330000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:30:42.4280000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T20:30:42.8100000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|200004|22280000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|54558|90055|10000|10000|||94.59|95.48|0.00|2.80|73956|77430|10000|10000|||98.71|97.61|0.00|-2.91|0001B61E|0|1| +37|2023-10-06T20:30:42.8540000-07:00|40022550|Zeromus|0001B617|1101314||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:42.9430000-07:00|40022550|Zeromus|0001B614|1079320||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:42.9430000-07:00|10FF0008|Kokosaze Lulusaze|0001B614|79111|79111|9050|10000|21||98.84|96.03|0.00|2.97|1B00|0|0|01|07000A8D|0|C2700000|| +21|2023-10-06T20:30:42.9870000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|754003|465B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|1101314|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5545|10000|||87.75|85.44|0.00|1.98|0001B61F|0|1| +37|2023-10-06T20:30:43.0310000-07:00|40022550|Zeromus|0001B61A|1075024||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:43.0310000-07:00|40022550|Zeromus|0001B619|1069765||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:43.0310000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|8400|10000|||99.17|96.97|0.00|3.09| +37|2023-10-06T20:30:43.1210000-07:00|40022550|Zeromus|0001B61B|1052645||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:43.1210000-07:00|10FF0005|Wuwuchu Wuchu|0001B61B|57757|90055|10000|10000|0||94.59|95.48|0.00|2.80|2700|0|0|01|07000A1F|0|41F00000|| +261|2023-10-06T20:30:42.6330000-07:00|Change|4002256C||||||||||| +261|2023-10-06T20:30:42.6330000-07:00|Change|4002256E||||||||||| +261|2023-10-06T20:30:42.6330000-07:00|Change|4002256D||||||||||| +261|2023-10-06T20:30:42.6330000-07:00|Change|4002256B||||||||||| +261|2023-10-06T20:30:42.6330000-07:00|Change|4002256A||||||||||| +261|2023-10-06T20:30:42.7500000-07:00|Change|10FF0001||| +38|2023-10-06T20:30:43.1220000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|57757|90055|10000|10000|0||94.59|95.48|0.00|2.80|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:43.1650000-07:00|40022550|Zeromus|0001B61D|1052644||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:43.2090000-07:00|40022550|Zeromus|DoT|0|2529|1052645|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|1052645|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:43.2090000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022550|Zeromus|716003|A5FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1052645|40478540|10000|10000|||100.00|80.10|0.00|0.00|116335|128564|10000|10000|||99.25|95.82|0.00|-2.24|0001B620|0|1| +38|2023-10-06T20:30:43.2090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116335|128564|10000|10000|0||99.25|95.82|0.00|-2.24|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:43.2090000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:43.2090000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:30:43.2090000-07:00|40022550|Zeromus|005A5A00|1043131|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:43.2530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4850|10000|20||96.21|92.22|0.00|0.66|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:43.2530000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +21|2023-10-06T20:30:43.2980000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|354003|20400000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|1043131|40478540|10000|10000|||100.00|80.10|0.00|0.00|53610|73085|2400|10000|||103.81|95.57|0.00|-2.90|0001B621|0|1| +38|2023-10-06T20:30:43.2980000-07:00|10FF0003|Gegehi Gehi|005A5A23|53610|73085|2100|10000|0||103.81|95.57|0.00|-2.90|0|0|0|||||||||| +30|2023-10-06T20:30:43.2980000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +21|2023-10-06T20:30:43.3430000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|20CF0000|104|6208000|0|0|0|0|0|0|0|0|0|0|0|0|1043131|40478540|10000|10000|||100.00|80.10|0.00|0.00|57757|90055|10000|10000|||94.59|95.48|0.00|2.80|0001B622|0|1| +261|2023-10-06T20:30:42.9840000-07:00|Change|10FF0004||||||||| +261|2023-10-06T20:30:42.9840000-07:00|Change|10FF0003||| +20|2023-10-06T20:30:43.4320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|97.02|93.28|0.00|0.66| +39|2023-10-06T20:30:43.5210000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5350|10000|||87.78|85.54|0.00|0.54| +261|2023-10-06T20:30:43.1970000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T20:30:43.5660000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|4D910000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|116335|128564|10000|10000|||99.29|96.09|0.00|3.10|1043131|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B623|0|1| +23|2023-10-06T20:30:43.6100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +37|2023-10-06T20:30:43.6100000-07:00|10FF0005|Wuwuchu Wuchu|0001B61E|66501||||||94.59|95.48|0.00|2.80| +261|2023-10-06T20:30:43.1970000-07:00|Change|40022569||||||||| +261|2023-10-06T20:30:43.1970000-07:00|Change|40022566||||||||| +261|2023-10-06T20:30:43.1970000-07:00|Change|40022568||||||||| +261|2023-10-06T20:30:43.1970000-07:00|Change|40022565||||||||| +37|2023-10-06T20:30:43.6550000-07:00|40022550|Zeromus|0001B61C|1034788||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:43.6550000-07:00|10FF0008|Kokosaze Lulusaze|0001B61C|79111|79111|9050|10000|21||99.47|95.87|0.00|0.40|1B00|0|0|01|07000A8D|0|42700000|| +24|2023-10-06T20:30:43.6550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|22B5|116335|128564|10000|10000|||99.29|96.09|0.00|3.10|10FF0006|Wowobora Gogobora|1|80739|80739|5350|10000|||88.14|86.23|0.00|0.52| +37|2023-10-06T20:30:43.6550000-07:00|40022550|Zeromus|0001B61F|1016777||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:43.6550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125220|128564|10000|10000|0||99.29|96.09|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:43.6550000-07:00|40022550|Zeromus|005A5A00|1016777|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:43.6550000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +38|2023-10-06T20:30:43.6550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9050|10000|21||99.47|95.87|0.00|0.40|0|0|0|||||||||||||||||||||||||||| +20|2023-10-06T20:30:43.7000000-07:00|40022565|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|115.05|103.99|0.00|0.00| +20|2023-10-06T20:30:43.7000000-07:00|40022566|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.60|117.81|0.00|0.00| +20|2023-10-06T20:30:43.7000000-07:00|40022567|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.06|95.17|0.00|0.00| +20|2023-10-06T20:30:43.7000000-07:00|40022568|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|94.92|94.02|0.00|0.00| +20|2023-10-06T20:30:43.7000000-07:00|40022569|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|103.88|96.29|0.00|0.00| +261|2023-10-06T20:30:43.1970000-07:00|Change|40022567||||||||||||||| +37|2023-10-06T20:30:43.7900000-07:00|40022550|Zeromus|0001B615|1007429||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:43.7900000-07:00|10FF0002|Suchichi Suchi|0001B615|90128|90128|10000|10000|11||99.66|93.71|0.00|-1.40|1600|0|0|01|04000AA0|0|41F00000|| +21|2023-10-06T20:30:43.7900000-07:00|10FF0008|Kokosaze Lulusaze|4082|Fountain of Fire|40022550|Zeromus|150003|54BF0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|1016777|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9050|10000|||99.53|96.27|0.00|0.32|0001B624|0|1| +38|2023-10-06T20:30:43.7900000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||99.66|93.71|0.00|-1.40|0|0|0|||||||||||||||||||||| +39|2023-10-06T20:30:43.8330000-07:00|40022E47|Demi-Phoenix|72376|75851|10000|10000|||109.06|100.91|0.00|-2.73| +261|2023-10-06T20:30:43.3940000-07:00|Change|40022E47||||||||| +261|2023-10-06T20:30:43.3940000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T20:30:43.8770000-07:00|40022E54||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +39|2023-10-06T20:30:43.8780000-07:00|10FF0005|Wuwuchu Wuchu|67401|90055|10000|10000|||94.59|95.48|0.00|2.80| +38|2023-10-06T20:30:43.8780000-07:00|40022E54||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +21|2023-10-06T20:30:44.0120000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|724003|42880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1007429|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||99.69|93.88|-0.02|-0.75|0001B625|0|1| +261|2023-10-06T20:30:43.7280000-07:00|Change|40022566||||||||||| +261|2023-10-06T20:30:43.7280000-07:00|Change|40022569||||||||||| +261|2023-10-06T20:30:43.7280000-07:00|Change|40022565||||||||||| +261|2023-10-06T20:30:43.7280000-07:00|Change|40022568||||||||||| +37|2023-10-06T20:30:44.0560000-07:00|40022550|Zeromus|0001B621|999173||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:44.0560000-07:00|40022550|Zeromus|0001B622|990774||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:44.0560000-07:00|10FF0005|Wuwuchu Wuchu|0001B622|68969||||||94.59|95.48|0.00|2.81| +39|2023-10-06T20:30:44.0560000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|8950|10000|||99.64|97.12|0.00|3.12| +21|2023-10-06T20:30:44.1010000-07:00|10FF0005|Wuwuchu Wuchu|5F4C|Cross Reaping|40022550|Zeromus|714003|57B40000|104|10648000|F|A1E8000|13E|1038000|0|0|0|0|0|0|0|0|1007429|40478540|10000|10000|||100.00|80.10|0.00|0.00|67401|90055|10000|10000|||94.59|95.48|0.00|2.81|0001B626|0|1| +21|2023-10-06T20:30:44.1010000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|714003|109D0000|104|31A8000|0|0|0|0|0|0|0|0|0|0|0|0|1007429|40478540|10000|10000|||100.00|80.10|0.00|0.00|67401|90055|10000|10000|||94.59|95.48|0.00|2.81|0001B627|0|1| +38|2023-10-06T20:30:44.1010000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|68969|90055|10000|10000|0||94.59|95.48|0.00|2.81|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:44.1010000-07:00|A1F|Enhanced Cross Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +26|2023-10-06T20:30:44.1010000-07:00|A1E|Enhanced Void Reaping|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +03|2023-10-06T20:30:43.7280000-07:00|40022E54|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||99.70|95.50|0.00|-0.02| +39|2023-10-06T20:30:44.1450000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|5050|10000|||96.04|94.42|0.00|-0.10| +261|2023-10-06T20:30:43.7280000-07:00|Add|40022E54||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:43.8410000-07:00|Change|40022E54||| +21|2023-10-06T20:30:44.3250000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|734003|C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|990774|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5050|10000|||95.62|95.04|0.00|-0.26|0001B628|0|1| +261|2023-10-06T20:30:43.9510000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:30:43.9510000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:30:44.3690000-07:00|40022550|Zeromus|0001B620|948279||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:44.3690000-07:00|10FF0007|Kehabiqo Febiqo|0001B623|105363||||||99.29|96.09|0.00|3.10| +21|2023-10-06T20:30:44.5470000-07:00|10FF0006|Wowobora Gogobora|5EF9|Phlegma III|40022550|Zeromus|750003|5ED30000|1B|5EF98000|0|0|0|0|0|0|0|0|0|0|0|0|948279|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5350|10000|||90.92|91.13|-0.02|0.52|0001B629|0|1| +261|2023-10-06T20:30:44.1690000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:44.1690000-07:00|Change|40022564||||||||| +261|2023-10-06T20:30:44.1690000-07:00|Change|40022563||||||||| +37|2023-10-06T20:30:44.6360000-07:00|40022550|Zeromus|0001B627|944026||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:44.6360000-07:00|10FF0005|Wuwuchu Wuchu|0001B627|69763|90055|10000|10000|0||93.66|95.55|0.00|2.81|2700|0|0|01|07000A1E|0|C1F00000|| +261|2023-10-06T20:30:44.2650000-07:00|Change|40022560||||||||| +261|2023-10-06T20:30:44.2650000-07:00|Change|40022562||||||||| +21|2023-10-06T20:30:44.6360000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022550|Zeromus|752003|A35D0000|4|26BB8000|0|0|0|0|0|0|0|0|0|0|0|0|948279|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|8400|10000|||95.52|98.49|0.00|-1.78|0001B62A|0|1| +21|2023-10-06T20:30:44.6360000-07:00|10FF0002|Suchichi Suchi|64AC|Chaotic Spring|40022550|Zeromus|42722003|492F0000|17B90E|A9F0000|F|3238000|11B|64AC8000|0|0|0|0|0|0|0|0|948279|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||98.30|94.51|0.00|-3.01|0001B62B|0|1| +38|2023-10-06T20:30:44.6360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|13||95.52|98.49|0.00|-1.78|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:44.6360000-07:00|558|Requiescat|21.94|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +38|2023-10-06T20:30:44.6360000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||98.30|94.51|0.00|-3.01|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:44.6360000-07:00|323|Wheel in Motion|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +31|2023-10-06T20:30:44.6360000-07:00|10FF0001||||| +261|2023-10-06T20:30:44.2650000-07:00|Change|40022561||||||||| +261|2023-10-06T20:30:44.2650000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:44.2650000-07:00|Change|10FF0003||||||||| +261|2023-10-06T20:30:44.2650000-07:00|Change|40022DBB||||||||| +20|2023-10-06T20:30:44.6800000-07:00|40022560|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|110.77|105.41|0.00|0.00| +20|2023-10-06T20:30:44.6800000-07:00|40022561|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|116.80|113.01|0.00|0.00| +20|2023-10-06T20:30:44.6800000-07:00|40022562|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.08|99.20|0.00|0.00| +20|2023-10-06T20:30:44.6800000-07:00|40022563|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|94.60|95.36|0.00|0.00| +20|2023-10-06T20:30:44.6800000-07:00|40022564|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.50|100.02|0.00|0.00| +24|2023-10-06T20:30:44.6800000-07:00|10FF0003|Gegehi Gehi|HoT|0|F66|53610|73085|2100|10000|||98.94|98.42|0.00|-2.51|E0000000||0||||||||||| +38|2023-10-06T20:30:44.6800000-07:00|10FF0003|Gegehi Gehi|005A5A23|57552|73085|2100|10000|0||98.94|98.42|0.00|-2.51|0|0|0|||||||||| +37|2023-10-06T20:30:44.7240000-07:00|40022550|Zeromus|0001B626|921574||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:44.7240000-07:00|10FF0005|Wuwuchu Wuchu|0001B626|73959|90055|10000|10000|0||93.59|95.55|0.00|2.81|2700|0|0|01|07000A1E|0|41F00000|| +38|2023-10-06T20:30:44.7240000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|73959|90055|10000|10000|0||93.59|95.55|0.00|2.81|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:44.7680000-07:00|40022550|Zeromus|0001B625|904542||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:44.7680000-07:00|10FF0002|Suchichi Suchi|0001B625|90128|90128|10000|10000|11||97.58|94.74|0.00|2.89|1600|0|0|01|02000323|0|C1F00000|| +21|2023-10-06T20:30:44.7680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|944026|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7400|10000|||95.39|99.08|0.00|-1.79|0001B62C|0|1| +31|2023-10-06T20:30:44.7680000-07:00|10FF0001||||| +21|2023-10-06T20:30:44.8120000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|CA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|904542|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||97.09|94.89|0.00|2.89|0001B62D|0|1| +37|2023-10-06T20:30:44.8570000-07:00|40022550|Zeromus|0001B624|882847||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:44.8570000-07:00|40022550|Zeromus|0001B628|882650||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:44.8570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9D4|127791|127791|7400|10000|||94.79|99.41|0.00|-1.99|10FF0001|Sesuga Sapisuga|0|127791|127791|7400|10000|||94.79|99.41|0.00|-1.99| +24|2023-10-06T20:30:44.8570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F4C|80739|80739|5050|10000|||94.49|98.92|0.00|-0.14|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5050|10000|||94.49|98.92|0.00|-0.14| +38|2023-10-06T20:30:44.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7400|10000|13||94.79|99.41|0.00|-1.99|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:30:44.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5050|10000|20||94.49|98.92|0.00|-0.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:44.4480000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T20:30:44.5440000-07:00|Change|40022E54||||||||| +39|2023-10-06T20:30:44.9010000-07:00|10FF0003|Gegehi Gehi|58282|73085|2300|10000|||98.46|99.03|0.00|-2.43| +34|2023-10-06T20:30:44.9010000-07:00|40022E54|Carbuncle|40022E54|Carbuncle|01| +24|2023-10-06T20:30:44.9450000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|97D|73959|90055|10000|10000|||93.53|95.56|0.00|2.84|10FF0005|Wuwuchu Wuchu|0|73959|90055|10000|10000|||93.53|95.56|0.00|2.84| +38|2023-10-06T20:30:44.9450000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|76388|90055|10000|10000|0||93.53|95.56|0.00|2.84|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:44.5440000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:30:44.6350000-07:00|Change|40022561||||||||||| +261|2023-10-06T20:30:44.6350000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:30:44.6350000-07:00|Change|40022563||||||||||| +261|2023-10-06T20:30:44.6350000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:30:44.6350000-07:00|Change|40022560||||||||||| +37|2023-10-06T20:30:45.0790000-07:00|40022550|Zeromus|0001B62B|863915|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0A9F|0|41C00000|| +26|2023-10-06T20:30:45.0790000-07:00|A9F|Chaotic Spring|24.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +37|2023-10-06T20:30:45.0790000-07:00|10FF0002|Suchichi Suchi|0001B62B|90128|90128|10000|10000|11||96.44|95.11|0.00|2.89|1600|0|0|01|02000323|0|41F00000|| +38|2023-10-06T20:30:45.0790000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||96.44|95.11|0.00|2.89|0|0|0|||||||||||||||||||||| +20|2023-10-06T20:30:45.1240000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|94.58|100.15|0.00|-0.02| +21|2023-10-06T20:30:45.1240000-07:00|10FF0005|Wuwuchu Wuchu|5F4F|Lemure's Slice|40022550|Zeromus|710003|1F4F0000|104|5D98000|0|0|0|0|0|0|0|0|0|0|0|0|882650|40478540|10000|10000|||100.00|80.10|0.00|0.00|76388|90055|10000|10000|||93.44|95.55|-0.02|2.92|0001B62E|0|1| +22|2023-10-06T20:30:45.1690000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0006|Wowobora Gogobora|4|332D0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|0001B62F|0|8| +22|2023-10-06T20:30:45.1690000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0002|Suchichi Suchi|200004|4FFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||96.44|95.11|0.00|2.89|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|0001B62F|1|8| +22|2023-10-06T20:30:45.1690000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0005|Wuwuchu Wuchu|4|336D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|76388|90055|10000|10000|||93.44|95.55|-0.02|2.92|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|0001B62F|2|8| +22|2023-10-06T20:30:45.1690000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0001|Sesuga Sapisuga|4|34090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|7400|10000|||93.51|99.72|0.00|-2.22|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|0001B62F|3|8| +22|2023-10-06T20:30:45.1690000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0007|Kehabiqo Febiqo|4|32F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|105363|128564|10000|10000|||96.47|98.84|0.00|-2.38|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|0001B62F|4|8| +22|2023-10-06T20:30:45.1690000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0004|Buhojaqe Zijaqe|4|33950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5050|10000|||94.58|100.15|0.00|-0.02|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|0001B62F|5|8| +22|2023-10-06T20:30:45.1690000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0003|Gegehi Gehi|200004|50C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58282|73085|2300|10000|||98.01|100.20|0.00|-2.23|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|0001B62F|6|8| +22|2023-10-06T20:30:45.1690000-07:00|10FF0006|Wowobora Gogobora|5EEB|Ixochole|10FF0008|Kokosaze Lulusaze|4|31360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|8950|10000|||99.94|101.40|0.00|0.13|80739|80739|4950|10000|||91.94|95.10|0.00|0.81|0001B62F|7|8| +24|2023-10-06T20:30:45.2120000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|1579|105363|128564|10000|10000|||96.13|99.27|0.00|-2.34|10FF0006|Wowobora Gogobora|0|80739|80739|4950|10000|||91.66|95.62|0.00|0.41| +37|2023-10-06T20:30:45.2120000-07:00|40022550|Zeromus|0001B629|839640||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:45.2120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110860|128564|10000|10000|0||96.13|99.27|0.00|-2.34|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:45.2120000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +39|2023-10-06T20:30:45.2570000-07:00|10FF0007|Kehabiqo Febiqo|112145|128564|10000|10000|||96.13|99.27|0.00|-2.34| +261|2023-10-06T20:30:44.8640000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T20:30:45.3020000-07:00|40022550|Zeromus|0001B62C|837523||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:45.3020000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|712003|12350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|863915|40478540|10000|10000|||100.00|80.10|0.00|0.00|105363|128564|10000|10000|||96.13|99.27|0.00|-2.34|0001B630|0|1| +37|2023-10-06T20:30:45.3450000-07:00|40022550|Zeromus|0001B62D|834284||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:45.3910000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|834284|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|8950|10000|||100.00|102.28|-0.02|0.09|0001B631|0|1| +261|2023-10-06T20:30:44.9850000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:44.9850000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:30:45.4350000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +39|2023-10-06T20:30:45.4800000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||93.88|94.96|0.00|-2.99| +261|2023-10-06T20:30:45.1010000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:45.5250000-07:00|40022550|Zeromus|0001B62A|792463||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:45.5250000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|93D|112145|128564|10000|10000|||95.49|100.37|0.00|-2.14|10FF0007|Kehabiqo Febiqo|0|112145|128564|10000|10000|||95.49|100.37|0.00|-2.14| +24|2023-10-06T20:30:45.5250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1679|79111|79111|8950|10000|||100.04|103.01|0.00|0.07|40022E47|Demi-Phoenix|0|0|75851|0|10000|||109.06|100.91|0.00|-2.73| +38|2023-10-06T20:30:45.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114510|128564|10000|10000|0||95.49|100.37|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:45.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|21||100.04|103.01|0.00|0.07|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:30:45.1980000-07:00|Change|4002255F||||||||| +261|2023-10-06T20:30:45.1980000-07:00|Change|4002255D||||||||| +261|2023-10-06T20:30:45.1980000-07:00|Change|4002255E||||||||| +261|2023-10-06T20:30:45.1980000-07:00|Change|4002255B||||||||| +261|2023-10-06T20:30:45.1980000-07:00|Change|4002255C||||||||| +261|2023-10-06T20:30:45.1980000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T20:30:45.6580000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|93EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|792463|40478540|10000|10000|||100.00|80.10|0.00|0.00|114510|128564|10000|10000|||95.22|100.47|0.00|-2.14|0001B632|0|1| +21|2023-10-06T20:30:45.6580000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|732003|3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|792463|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|4950|10000|||88.98|96.14|0.00|-1.44|0001B633|0|1| +38|2023-10-06T20:30:45.6580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114510|128564|10000|10000|0||95.22|100.47|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:45.6580000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +20|2023-10-06T20:30:45.7020000-07:00|4002255B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|86.41|86.53|0.00|0.00| +20|2023-10-06T20:30:45.7020000-07:00|4002255C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|113.39|95.57|0.00|0.00| +20|2023-10-06T20:30:45.7020000-07:00|4002255D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.83|96.27|0.00|0.00| +20|2023-10-06T20:30:45.7020000-07:00|4002255E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.06|104.44|0.00|0.00| +20|2023-10-06T20:30:45.7020000-07:00|4002255F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|94.98|90.94|0.00|0.00| +20|2023-10-06T20:30:45.7460000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|97.90|101.52|0.00|-0.24| +261|2023-10-06T20:30:45.3010000-07:00|Change|10FF0001||||||||| +23|2023-10-06T20:30:45.8340000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +37|2023-10-06T20:30:45.8340000-07:00|40022550|Zeromus|0001B630|787802||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:45.8340000-07:00|40022550|Zeromus|0001B62E|779787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:45.8340000-07:00|10FF0005|Wuwuchu Wuchu|0001B62E|77885||||||92.87|93.31|0.00|2.87| +23|2023-10-06T20:30:45.8780000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +261|2023-10-06T20:30:45.4870000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:45.9230000-07:00|40022550|Zeromus|0001B631|779636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:45.9680000-07:00|10FF0006|Wowobora Gogobora|0001B62F|80739|80739|5650|10000|13||87.72|96.82|0.00|-1.26|2800|0|0|0| +261|2023-10-06T20:30:45.6680000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:30:45.6680000-07:00|Change|4002255B||||||||||| +261|2023-10-06T20:30:45.6680000-07:00|Change|4002255C||||||||||| +261|2023-10-06T20:30:45.6680000-07:00|Change|4002255D||||||||||| +261|2023-10-06T20:30:45.6680000-07:00|Change|4002255F||||||||||| +261|2023-10-06T20:30:45.6680000-07:00|Change|40022E54||||||||| +39|2023-10-06T20:30:46.0130000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|7600|10000|||88.99|97.68|0.00|-3.12| +261|2023-10-06T20:30:45.6680000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:30:45.7870000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:30:46.1910000-07:00|40022550|Zeromus|0001B633|779575||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:46.1910000-07:00|40022550|Zeromus|DoT|0|26BF|779636|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|779636|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:46.1910000-07:00|40022550|Zeromus|005A5A00|769656|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:46.2360000-07:00|10FF0005|Wuwuchu Wuchu|0001B62F|90055||||||90.94|90.84|0.00|-2.77| +38|2023-10-06T20:30:46.2360000-07:00|40022550|Zeromus|005A5A00|769656|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:46.2360000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +21|2023-10-06T20:30:46.2800000-07:00|10FF0008|Kokosaze Lulusaze|64EF|Summon Titan II|40022550|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|779636|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||100.12|104.07|0.00|0.07|0001B634|0|1| +20|2023-10-06T20:30:46.2800000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|1.300|90.94|90.84|0.00|-2.77| +261|2023-10-06T20:30:45.9050000-07:00|Change|10FF0005||||||||||||||||||||| +38|2023-10-06T20:30:46.3250000-07:00|40022E59||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +20|2023-10-06T20:30:46.3250000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|98.57|102.82|0.00|1.81| +23|2023-10-06T20:30:46.3250000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +38|2023-10-06T20:30:46.3250000-07:00|40022E59||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:30:45.9050000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T20:30:46.5030000-07:00|10FF0007|Kehabiqo Febiqo|0001B62F|127552||||||94.14|100.75|0.00|-3.04| +39|2023-10-06T20:30:46.5030000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5855|10000|||85.74|98.11|0.00|-1.02| +37|2023-10-06T20:30:46.5920000-07:00|40022550|Zeromus|0001B632|731786||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:46.5920000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|4C8D0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|127552|128564|10000|10000|||93.28|100.86|-0.02|-2.79|769656|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B635|0|1| +261|2023-10-06T20:30:46.1520000-07:00|Change|40022559||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Change|40022558||||||||| +03|2023-10-06T20:30:46.1520000-07:00|40022E59|Topaz Titan|00|5A|10FF0008|00||10264|13507|72376|75851|10000|10000|||102.11|108.52|0.00|-3.13| +261|2023-10-06T20:30:46.1520000-07:00|Change|40022557||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Add|40022E59||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Change|40022556||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Change|4002255A||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:30:46.6360000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|14520000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|58282|73085|2300|10000|||99.17|104.53|-0.02|2.26|73956|77430|10000|10000|||98.71|97.61|0.00|1.89|0001B636|0|1| +21|2023-10-06T20:30:46.6360000-07:00|4002256A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.44|85.62|0.00|0.00|0001B637|0|0| +21|2023-10-06T20:30:46.6360000-07:00|4002256B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.24|111.98|0.00|0.00|0001B638|0|0| +21|2023-10-06T20:30:46.6360000-07:00|4002256C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.20|92.97|0.00|0.00|0001B639|0|0| +21|2023-10-06T20:30:46.6360000-07:00|4002256D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.39|95.43|0.00|0.00|0001B63A|0|0| +21|2023-10-06T20:30:46.6360000-07:00|4002256E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.05|96.39|0.00|0.00|0001B63B|0|0| +261|2023-10-06T20:30:46.1520000-07:00|Change|4002256A||||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Change|4002256B||||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Change|4002256E||||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Change|4002256C||||||||||| +261|2023-10-06T20:30:46.1520000-07:00|Change|4002256D||||||||||| +261|2023-10-06T20:30:46.2420000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T20:30:46.2420000-07:00|Change|40022E59||||| +20|2023-10-06T20:30:46.6800000-07:00|40022550|Zeromus|8B6B|Nostalgia|40022550|Zeromus|4.700|100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:46.6800000-07:00|40022556|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|109.15|82.11|0.00|0.00| +20|2023-10-06T20:30:46.6800000-07:00|40022557|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.65|113.61|0.00|0.00| +20|2023-10-06T20:30:46.6800000-07:00|40022558|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.80|90.92|0.00|0.00| +20|2023-10-06T20:30:46.6800000-07:00|40022559|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.71|96.92|0.00|0.00| +20|2023-10-06T20:30:46.6800000-07:00|4002255A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|94.88|106.31|0.00|0.00| +261|2023-10-06T20:30:46.2420000-07:00|Change|40022550||||||||||||| +37|2023-10-06T20:30:46.7690000-07:00|10FF0003|Gegehi Gehi|0001B62F|73085||||||99.26|104.83|0.00|1.74| +261|2023-10-06T20:30:46.3380000-07:00|Change|10FF0008||||||||| +39|2023-10-06T20:30:46.8580000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||89.22|89.84|-0.01|2.35| +20|2023-10-06T20:30:46.9900000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|83.81|97.80|-0.01|-1.15| +261|2023-10-06T20:30:46.5300000-07:00|Change|10FF0003||||||||| +39|2023-10-06T20:30:47.0350000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9700|10000|||100.52|109.74|0.00|0.44| +21|2023-10-06T20:30:47.0350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|8820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|731786|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7600|10000|||86.87|94.30|0.00|2.40|0001B63C|0|1| +31|2023-10-06T20:30:47.0350000-07:00|10FF0001||||| +261|2023-10-06T20:30:46.5300000-07:00|Change|10FF0002||||||||| +21|2023-10-06T20:30:47.0790000-07:00|10FF0005|Wuwuchu Wuchu|5F4E|Communio|40022550|Zeromus|750003|8EF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|731786|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||89.19|89.83|0.00|2.31|0001B63D|0|1| +38|2023-10-06T20:30:47.0790000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.19|89.83|0.00|2.31|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:47.0790000-07:00|A21|Enshrouded|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:30:47.0790000-07:00|A1E|Enhanced Void Reaping|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +21|2023-10-06T20:30:47.1240000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022550|Zeromus|756003|F18B0000|4|24D18000|0|0|0|0|0|0|0|0|0|0|0|0|731786|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7600|10000|||86.87|94.30|0.00|2.40|0001B63E|0|1| +21|2023-10-06T20:30:47.1240000-07:00|10FF0002|Suchichi Suchi|DE4|Wheeling Thrust|40022550|Zeromus|D720003|2D650000|1000F|3228000|1B|DE48000|0|0|0|0|0|0|0|0|0|0|731786|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||90.16|88.01|0.00|2.54|0001B63F|0|1| +261|2023-10-06T20:30:46.6430000-07:00|Change|40022558||||||||||| +261|2023-10-06T20:30:46.6430000-07:00|Change|40022559||||||||||| +38|2023-10-06T20:30:47.1240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6600|10000|13||86.87|94.30|0.00|2.40|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:47.1240000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:30:46.6430000-07:00|Change|4002255A||||||||||| +261|2023-10-06T20:30:46.6430000-07:00|Change|40022556||||||||||| +261|2023-10-06T20:30:46.6430000-07:00|Change|40022557||||||||||| +38|2023-10-06T20:30:47.1240000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||90.16|88.01|0.00|2.54|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:47.1240000-07:00|323|Wheel in Motion|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +26|2023-10-06T20:30:47.1240000-07:00|322|Fang and Claw Bared|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +31|2023-10-06T20:30:47.1240000-07:00|10FF0001||||| +261|2023-10-06T20:30:46.6430000-07:00|Change|40022E54||||||||| +39|2023-10-06T20:30:47.1680000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|5250|10000|||97.66|108.87|0.00|0.17| +261|2023-10-06T20:30:46.7590000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T20:30:46.7590000-07:00|Change|10FF0004||||||||||| +26|2023-10-06T20:30:47.3030000-07:00|130|Aetherflow|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +21|2023-10-06T20:30:47.3030000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|750003|33300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|731786|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||101.58|111.65|0.00|0.70|0001B640|0|1| +261|2023-10-06T20:30:46.8780000-07:00|Change|10FF0005||||||||||||||||||||| +261|2023-10-06T20:30:46.8780000-07:00|Change|10FF0007||||||||| +261|2023-10-06T20:30:46.8780000-07:00|Change|40022E59||| +37|2023-10-06T20:30:47.3910000-07:00|10FF0007|Kehabiqo Febiqo|0001B635|107955||||||87.00|99.85|0.00|-2.51| +37|2023-10-06T20:30:47.5710000-07:00|40022550|Zeromus|0001B63C|729608||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:47.6140000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|BEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|729608|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||92.54|85.44|0.00|2.38|0001B641|0|1| +261|2023-10-06T20:30:47.2090000-07:00|Change|10FF0005||||||||| +21|2023-10-06T20:30:47.6600000-07:00|40022565|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||115.05|103.99|0.00|0.00|0001B642|0|0| +21|2023-10-06T20:30:47.6600000-07:00|40022566|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.60|117.81|0.00|0.00|0001B643|0|0| +21|2023-10-06T20:30:47.6600000-07:00|40022567|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.06|95.17|0.00|0.00|0001B644|0|0| +21|2023-10-06T20:30:47.6600000-07:00|40022568|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.92|94.02|0.00|0.00|0001B645|0|0| +21|2023-10-06T20:30:47.6600000-07:00|40022569|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||103.88|96.29|0.00|0.00|0001B646|0|0| +38|2023-10-06T20:30:47.6600000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||92.54|85.44|0.00|2.38|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:30:47.2090000-07:00|Change|40022566||||||||||| +261|2023-10-06T20:30:47.2090000-07:00|Change|40022565||||||||||| +261|2023-10-06T20:30:47.2090000-07:00|Change|40022567||||||||||| +261|2023-10-06T20:30:47.2090000-07:00|Change|40022568||||||||||| +261|2023-10-06T20:30:47.2090000-07:00|Change|40022569||||||||||| +261|2023-10-06T20:30:47.2090000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:47.2090000-07:00|Change|10FF0003||||||||| +37|2023-10-06T20:30:47.7050000-07:00|40022550|Zeromus|0001B63D|693010||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:47.7050000-07:00|10FF0003|Gegehi Gehi|HoT|0|9A0|73085|73085|2300|10000|||101.18|111.07|0.00|0.37|E0000000||0||||||||||| +38|2023-10-06T20:30:47.7050000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2300|10000|0||101.18|111.07|0.00|0.37|0|0|0|||||||||| +261|2023-10-06T20:30:47.3100000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:47.7940000-07:00|40022550|Zeromus|0001B63F|681389||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:47.7940000-07:00|10FF0002|Suchichi Suchi|0001B63F|90128|90128|10000|10000|11||93.52|84.49|0.00|2.37|1600|0|0|01|03000322|0|41F00000|| +38|2023-10-06T20:30:47.7940000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||93.52|84.49|0.00|2.37|0|0|0|||||||||||||||||||||| +38|2023-10-06T20:30:47.7940000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.20|89.85|0.00|-1.80|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:47.7940000-07:00|4E2|True North|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +04|2023-10-06T20:30:47.3100000-07:00|40022E47|Demi-Phoenix|00|5A|10FF0008|00||8228|10488|0|75851|0|10000|||109.06|100.91|0.00|-2.73| +261|2023-10-06T20:30:47.4010000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:47.4010000-07:00|Remove|40022E47| +39|2023-10-06T20:30:47.8820000-07:00|10FF0003|Gegehi Gehi|73085|73085|2500|10000|||101.44|111.68|0.00|0.37| +24|2023-10-06T20:30:47.8820000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9E1|127791|127791|6600|10000|||85.40|93.53|0.00|2.84|10FF0001|Sesuga Sapisuga|0|127791|127791|6600|10000|||85.40|93.53|0.00|2.84| +24|2023-10-06T20:30:47.8820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9E0|80739|80739|5250|10000|||98.21|112.03|-0.02|-0.04|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5250|10000|||98.21|112.03|-0.02|-0.04| +38|2023-10-06T20:30:47.8820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6600|10000|13||85.40|93.53|0.00|2.84|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T20:30:47.8820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5250|10000|20||98.21|112.03|-0.02|-0.04|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T20:30:47.9260000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|34EE0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|681389|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5855|10000|||83.67|97.76|0.00|2.40|0001B647|0|1| +24|2023-10-06T20:30:47.9710000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|1057|90055|90055|10000|10000|||89.21|89.87|0.00|-1.63|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||89.21|89.87|0.00|-1.63| +38|2023-10-06T20:30:47.9710000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||89.21|89.87|0.00|-1.63|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:47.5970000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:30:48.0150000-07:00|40022550|Zeromus|0001B63E|619554||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:48.1050000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|73490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|681389|40478540|10000|10000|||100.00|80.10|0.00|0.00|107955|128564|10000|10000|||85.37|95.11|0.00|-2.78|0001B648|0|1| +38|2023-10-06T20:30:48.1050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107955|128564|10000|10000|0||85.37|95.11|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:48.1050000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:48.1050000-07:00|499|Inner Release|7.61|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +261|2023-10-06T20:30:47.7130000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T20:30:48.1490000-07:00|40022550|Zeromus|0001B641|616504||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:48.1490000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CC00000|104|2618000|0|0|0|0|0|0|0|0|0|0|0|0|619554|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||87.34|90.40|0.00|-1.45|0001B649|0|1| +20|2023-10-06T20:30:48.1930000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|1.944|99.05|112.08|0.00|2.70| +37|2023-10-06T20:30:48.2380000-07:00|40022550|Zeromus|0001B640|603400||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:48.2380000-07:00|10FF0007|Kehabiqo Febiqo|109240|128564|10000|10000|||85.32|94.82|0.00|2.32| +261|2023-10-06T20:30:47.8250000-07:00|Change|40022E54||| +21|2023-10-06T20:30:48.3700000-07:00|40022E59|Topaz Titan|64FD|Earthen Fury|40022550|Zeromus|454003|78B20000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|603400|40478540|10000|10000|||100.00|80.10|0.00|0.00|72376|75851|10000|10000|||102.11|108.52|0.00|-3.13|0001B64A|0|1| +39|2023-10-06T20:30:48.4150000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|1.17| +20|2023-10-06T20:30:48.4150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|97.86|112.44|0.00|-0.38| +261|2023-10-06T20:30:47.9420000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T20:30:48.4600000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||96.76|83.02|0.00|1.87| +38|2023-10-06T20:30:48.4600000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||96.76|83.02|0.00|1.87|0|0|0|||||||||||||||| +30|2023-10-06T20:30:48.4600000-07:00|748|Lance Charge|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:30:48.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|93F|109240|128564|10000|10000|||85.20|94.15|0.00|2.57|10FF0007|Kehabiqo Febiqo|0|109240|128564|10000|10000|||85.20|94.15|0.00|2.57| +24|2023-10-06T20:30:48.5490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|14A2|79111|79111|9700|10000|||100.46|115.02|0.00|-0.33|40022E47||0||||||||||| +38|2023-10-06T20:30:48.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111607|128564|10000|10000|0||85.20|94.15|0.00|2.57|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:48.5490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|10000|10000|21||100.46|115.02|0.00|-0.33|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T20:30:48.5940000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|239A|109240|128564|10000|10000|||85.20|94.15|0.00|2.57|10FF0006|Wowobora Gogobora|1|80739|80739|5455|10000|||84.18|96.37|0.00|2.88| +37|2023-10-06T20:30:48.5940000-07:00|40022550|Zeromus|0001B647|589850||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:48.5940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120721|128564|10000|10000|0||85.20|94.15|0.00|2.57|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T20:30:48.6390000-07:00|40022560|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.77|105.41|0.00|0.00|0001B64B|0|0| +21|2023-10-06T20:30:48.6390000-07:00|40022561|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.80|113.01|0.00|0.00|0001B64C|0|0| +21|2023-10-06T20:30:48.6390000-07:00|40022562|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.08|99.20|0.00|0.00|0001B64D|0|0| +21|2023-10-06T20:30:48.6390000-07:00|40022563|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.60|95.36|0.00|0.00|0001B64E|0|0| +21|2023-10-06T20:30:48.6390000-07:00|40022564|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.50|100.02|0.00|0.00|0001B64F|0|0| +37|2023-10-06T20:30:48.6830000-07:00|40022550|Zeromus|0001B649|586586||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:48.6830000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|710003|B6B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|589850|40478540|10000|10000|||100.00|80.10|0.00|0.00|120721|128564|10000|10000|||85.18|94.07|0.00|2.79|0001B650|0|1| +261|2023-10-06T20:30:48.2740000-07:00|Change|40022560||||||||||| +261|2023-10-06T20:30:48.2740000-07:00|Change|40022562||||||||||| +261|2023-10-06T20:30:48.2740000-07:00|Change|40022564||||||||||| +261|2023-10-06T20:30:48.2740000-07:00|Change|40022563||||||||||| +261|2023-10-06T20:30:48.2740000-07:00|Change|40022561||||||||||| +261|2023-10-06T20:30:48.2740000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T20:30:48.2740000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:48.7720000-07:00|40022550|Zeromus|0001B648|557073||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:48.7730000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|452003|55D30000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|586586|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|10000|10000|||99.06|115.46|0.00|-0.84|0001B651|0|1| +38|2023-10-06T20:30:48.7730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|21||99.06|115.46|0.00|-0.84|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:48.7730000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:30:48.8170000-07:00|10FF0005|Wuwuchu Wuchu|5F35|Slice|40022550|Zeromus|712003|474A0000|104|D528000|A3E|1008000|1B|5F358000|0|0|0|0|0|0|0|0|586586|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||83.93|90.66|0.00|-1.56|0001B652|0|1| +39|2023-10-06T20:30:48.9950000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6800|10000|||84.58|93.27|0.00|2.83| +21|2023-10-06T20:30:48.9950000-07:00|10FF0002|Suchichi Suchi|1D7D|Feint|40022550|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|557073|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||97.86|83.05|0.00|1.70|0001B653|0|1| +261|2023-10-06T20:30:48.5730000-07:00|Change|10FF0001||||||||| +38|2023-10-06T20:30:49.1290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|21||98.47|114.34|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:49.1290000-07:00|4B4|Lucid Dreaming|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +24|2023-10-06T20:30:49.1750000-07:00|40022550|Zeromus|DoT|0|1FD9|557073|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|557073|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:49.1750000-07:00|40022550|Zeromus|005A5A00|548920|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:49.2180000-07:00|40022550|Zeromus|0001B650|545997||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:49.3080000-07:00|40022550|Zeromus|0001B652|527747||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:49.3080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|89E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|548920|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6800|10000|||84.58|93.27|0.00|2.83|0001B654|0|1| +31|2023-10-06T20:30:49.3080000-07:00|10FF0001||||| +21|2023-10-06T20:30:49.3520000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|2F720000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|527747|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5250|10000|||98.16|112.87|0.00|3.09|0001B655|0|1| +37|2023-10-06T20:30:49.3970000-07:00|40022550|Zeromus|0001B651|505776||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:49.3970000-07:00|10FF0008|Kokosaze Lulusaze|0001B651|79111|79111|9700|10000|21||98.25|113.85|0.00|3.09|1B00|0|0|01|09000B25|0|0|| +21|2023-10-06T20:30:49.3970000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|1E440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|527747|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||98.25|113.85|0.00|3.09|0001B656|0|1| +20|2023-10-06T20:30:49.3970000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|85.19|94.38|0.00|2.18| +38|2023-10-06T20:30:49.3970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9700|10000|21||98.25|113.85|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:49.3970000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +261|2023-10-06T20:30:48.9230000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T20:30:49.0460000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T20:30:49.4860000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5660|10000|||85.19|94.38|0.00|2.19| +37|2023-10-06T20:30:49.5310000-07:00|40022550|Zeromus|0001B653|505776|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020004AB|0|41200000|| +26|2023-10-06T20:30:49.5310000-07:00|4AB|Feint|10.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +21|2023-10-06T20:30:49.6210000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022550|Zeromus|750003|39EA0000|4|25A18000|0|0|0|0|0|0|0|0|0|0|0|0|505776|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6800|10000|||84.58|93.27|0.00|2.28|0001B657|0|1| +21|2023-10-06T20:30:49.6210000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022550|Zeromus|750003|15AC0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|505776|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|2500|10000|||98.68|111.96|0.00|3.10|0001B658|0|1| +38|2023-10-06T20:30:49.6210000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2300|10000|0||98.68|111.96|0.00|3.10|0|0|0||||||||||||| +26|2023-10-06T20:30:49.6210000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +38|2023-10-06T20:30:49.6210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|13||84.58|93.27|0.00|2.28|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:49.6210000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +21|2023-10-06T20:30:49.6660000-07:00|10FF0002|Suchichi Suchi|DE2|Fang and Claw|40022550|Zeromus|A720003|34300000|F|7478000|1B|DE28000|0|0|0|0|0|0|0|0|0|0|505776|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||96.89|82.77|0.00|1.76|0001B659|0|1| +21|2023-10-06T20:30:49.6660000-07:00|4002255B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.41|86.53|0.00|0.00|0001B65A|0|0| +21|2023-10-06T20:30:49.6660000-07:00|4002255C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.39|95.57|0.00|0.00|0001B65B|0|0| +21|2023-10-06T20:30:49.6660000-07:00|4002255D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.83|96.27|0.00|0.00|0001B65C|0|0| +21|2023-10-06T20:30:49.6660000-07:00|4002255E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.06|104.44|0.00|0.00|0001B65D|0|0| +21|2023-10-06T20:30:49.6660000-07:00|4002255F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.98|90.94|0.00|0.00|0001B65E|0|0| +38|2023-10-06T20:30:49.6660000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||96.89|82.77|0.00|1.76|0|0|0|||||||||||||||| +26|2023-10-06T20:30:49.6660000-07:00|747|Draconian Fire|30.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +30|2023-10-06T20:30:49.6660000-07:00|322|Fang and Claw Bared|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +261|2023-10-06T20:30:49.2560000-07:00|Change|4002255C||||||||||| +261|2023-10-06T20:30:49.2560000-07:00|Change|4002255D||||||||||| +261|2023-10-06T20:30:49.2560000-07:00|Change|4002255E||||||||||| +261|2023-10-06T20:30:49.2560000-07:00|Change|4002255B||||||||||| +261|2023-10-06T20:30:49.2560000-07:00|Change|4002255F||||||||||| +261|2023-10-06T20:30:49.2560000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T20:30:49.8430000-07:00|40022550|Zeromus|0001B654|503570||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:49.8880000-07:00|10FF0005|Wuwuchu Wuchu|90055|90055|10000|10000|||80.67|88.39|0.00|-2.81| +261|2023-10-06T20:30:49.5480000-07:00|Change|10FF0005||||||||| +39|2023-10-06T20:30:50.0220000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9900|10000|||98.25|113.85|0.00|3.09| +21|2023-10-06T20:30:50.0220000-07:00|10FF0008|Kokosaze Lulusaze|B5|Fester|40022550|Zeromus|750003|34750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|503570|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9700|10000|||98.25|113.85|0.00|3.09|0001B65F|0|1| +38|2023-10-06T20:30:50.0220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9900|10000|21||98.25|113.85|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:50.0220000-07:00|130|Aetherflow|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|79111|79111| +261|2023-10-06T20:30:49.5480000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:30:49.5480000-07:00|Change|10FF0001||||| +21|2023-10-06T20:30:50.1110000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14DE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|120721|128564|10000|10000|||84.22|93.55|0.00|3.12|73956|77430|10000|10000|||98.71|97.61|0.00|-2.97|0001B660|0|1| +37|2023-10-06T20:30:50.1560000-07:00|40022550|Zeromus|0001B656|495822||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:50.1560000-07:00|40022550|Zeromus|0001B655|483676||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:50.1560000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|5050|10000|||98.18|112.87|0.00|3.01| +04|2023-10-06T20:30:49.7770000-07:00|40022E54|Carbuncle|00|5A|10FF0008|00||10261|13498|0|75851|0|10000|||101.37|102.34|0.00|0.07| +261|2023-10-06T20:30:49.7770000-07:00|Remove|40022E54| +37|2023-10-06T20:30:50.2890000-07:00|40022550|Zeromus|0001B659|470316||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:50.2890000-07:00|10FF0002|Suchichi Suchi|0001B659|90128|90128|10000|10000|11||97.67|83.51|0.00|2.18|1600|0|0|01|02000747|0|41F00000|| +38|2023-10-06T20:30:50.2890000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||97.67|83.51|0.00|2.18|0|0|0|||||||||||||||| +37|2023-10-06T20:30:50.3330000-07:00|40022550|Zeromus|0001B64A|439418||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:50.3330000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|394B0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|483676|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5660|10000|||85.19|94.38|0.00|2.34|0001B661|0|1| +37|2023-10-06T20:30:50.3780000-07:00|40022550|Zeromus|0001B657|424592||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:50.3780000-07:00|40022550|Zeromus|0001B658|419044||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:50.0070000-07:00|Change|10FF0006||||||||||||||||| +261|2023-10-06T20:30:50.0070000-07:00|Change|40022DBB||||||||| +21|2023-10-06T20:30:50.4230000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|439418|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5260|10000|||85.19|94.38|0.00|2.34|0001B662|0|1| +21|2023-10-06T20:30:50.4230000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|722003|12220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|439418|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||98.17|83.93|0.00|2.01|0001B663|0|1| +261|2023-10-06T20:30:50.0070000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:50.0070000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T20:30:50.5570000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022550|Zeromus|716003|7CCD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|419044|40478540|10000|10000|||100.00|80.10|0.00|0.00|120721|128564|10000|10000|||82.67|91.27|0.00|2.97|0001B664|0|1| +38|2023-10-06T20:30:50.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120721|128564|10000|10000|0||82.67|91.27|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:50.5570000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:50.5570000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|128564|128564| +21|2023-10-06T20:30:50.6020000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022550|Zeromus|550003|19970000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|419044|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|2300|10000|||98.68|111.96|0.00|3.10|0001B665|0|1| +38|2023-10-06T20:30:50.6020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2000|10000|0||98.68|111.96|0.00|3.10|0|0|0|||||||||||||||| +30|2023-10-06T20:30:50.6020000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:30:50.6020000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +261|2023-10-06T20:30:50.2130000-07:00|Change|10FF0007||||||||| +21|2023-10-06T20:30:50.6460000-07:00|40022556|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||109.15|82.11|0.00|0.00|0001B666|0|0| +21|2023-10-06T20:30:50.6460000-07:00|40022557|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.65|113.61|0.00|0.00|0001B667|0|0| +21|2023-10-06T20:30:50.6460000-07:00|40022558|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.80|90.92|0.00|0.00|0001B668|0|0| +21|2023-10-06T20:30:50.6460000-07:00|40022559|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.71|96.92|0.00|0.00|0001B669|0|0| +21|2023-10-06T20:30:50.6460000-07:00|4002255A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.88|106.31|0.00|0.00|0001B66A|0|0| +261|2023-10-06T20:30:50.2130000-07:00|Change|40022557||||||||||| +261|2023-10-06T20:30:50.2130000-07:00|Change|40022558||||||||||| +261|2023-10-06T20:30:50.2130000-07:00|Change|40022556||||||||||| +261|2023-10-06T20:30:50.2130000-07:00|Change|40022559||||||||||| +24|2023-10-06T20:30:50.6900000-07:00|10FF0003|Gegehi Gehi|HoT|0|943|73085|73085|2300|10000|||98.68|111.96|0.00|3.10|E0000000||0||||||||||| +261|2023-10-06T20:30:50.2130000-07:00|Change|4002255A||||||||||| +38|2023-10-06T20:30:50.6900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2000|10000|0||98.68|111.96|0.00|3.10|0|0|0|||||||||||||||| +261|2023-10-06T20:30:50.3080000-07:00|Change|10FF0003||| +20|2023-10-06T20:30:50.7790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|1.444|98.27|112.47|-0.02|2.76| +24|2023-10-06T20:30:50.8680000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A16|127791|127791|5800|10000|||84.58|93.27|0.00|2.28|10FF0001|Sesuga Sapisuga|0|127791|127791|5800|10000|||84.58|93.27|0.00|2.28| +24|2023-10-06T20:30:50.8680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F6C|80739|80739|5050|10000|||98.38|112.16|0.00|2.82|10FF0004|Buhojaqe Zijaqe|0|80739|80739|5050|10000|||98.38|112.16|0.00|2.82| +38|2023-10-06T20:30:50.8680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|5800|10000|13||84.58|93.27|0.00|2.28|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:50.8680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|5050|10000|20||98.38|112.16|0.00|2.82|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:50.9140000-07:00|10FF0007|Kehabiqo Febiqo|0001B660|126063||||||83.12|89.89|0.00|2.51| +39|2023-10-06T20:30:50.9140000-07:00|10FF0003|Gegehi Gehi|73085|73085|2200|10000|||98.68|111.96|0.00|3.10| +37|2023-10-06T20:30:50.9580000-07:00|40022550|Zeromus|0001B65F|405615||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:50.9580000-07:00|40022550|Zeromus|0001B662|405578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:50.9580000-07:00|40022550|Zeromus|0001B663|400936||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:50.9580000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|F89|90055|90055|10000|10000|||80.60|83.01|0.00|2.86|10FF0005|Wuwuchu Wuchu|0|90055|90055|10000|10000|||80.60|83.01|0.00|2.86| +38|2023-10-06T20:30:50.9580000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||80.60|83.01|0.00|2.86|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T20:30:51.0020000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|23CD|126063|128564|10000|10000|||83.41|89.21|0.00|2.71|10FF0006|Wowobora Gogobora|1|80739|80739|5260|10000|||85.20|94.38|0.00|2.02| +37|2023-10-06T20:30:51.0020000-07:00|40022550|Zeromus|0001B661|386269||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:51.0030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||83.41|89.21|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:51.1790000-07:00|40022550|Zeromus|0001B664|354320||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:51.2230000-07:00|10FF0007|Kehabiqo Febiqo|128564|128564|10000|10000|||84.01|87.99|0.00|2.71| +21|2023-10-06T20:30:51.2230000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|34F50000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|386269|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9900|10000|||98.27|113.75|0.00|2.97|0001B66B|0|1| +261|2023-10-06T20:30:50.7210000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:30:50.8420000-07:00|Change|10FF0002||||||||| +38|2023-10-06T20:30:51.2230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|21||98.45|113.14|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:51.2230000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +21|2023-10-06T20:30:51.2680000-07:00|10FF0005|Wuwuchu Wuchu|5F36|Waxing Slice|40022550|Zeromus|3C710003|35820000|104|9FF8000|A3E|1008000|11B|5F368000|0|0|0|0|0|0|0|0|354320|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||80.65|82.61|0.00|2.52|0001B66C|0|1| +37|2023-10-06T20:30:51.3570000-07:00|40022550|Zeromus|0001B665|347769||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:51.3570000-07:00|10FF0003|Gegehi Gehi|0001B665|73085|73085|2200|10000|0||98.68|111.96|0.00|3.10|2300|0|0|01|040004D2|0|41F00000|| +21|2023-10-06T20:30:51.3570000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|716003|19B40000|104|4CD8000|0|0|0|0|0|0|0|0|0|0|0|0|354320|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||80.66|82.52|0.00|1.69|0001B66D|0|1| +38|2023-10-06T20:30:51.3570000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2200|10000|0||98.68|111.96|0.00|3.10|0|0|0|||||||||||||||| +39|2023-10-06T20:30:51.4460000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||104.24|87.48|0.00|2.22| +39|2023-10-06T20:30:51.4460000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|-2.11| +261|2023-10-06T20:30:51.0650000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T20:30:51.0650000-07:00|Change|10FF0007||||||||| +24|2023-10-06T20:30:51.5360000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|96D|128564|128564|10000|10000|||86.29|86.56|0.00|2.17|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||86.29|86.56|0.00|2.17| +24|2023-10-06T20:30:51.5360000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|13D3|79111|79111|9600|10000|||99.03|111.18|0.00|3.10|40022E47||0||||||||||| +38|2023-10-06T20:30:51.5360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||86.29|86.56|0.00|2.17|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:51.5360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|21||99.03|111.18|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:30:51.5800000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|89F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|347769|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||84.58|93.27|0.00|2.28|0001B66E|0|1| +31|2023-10-06T20:30:51.5800000-07:00|10FF0001||||| +21|2023-10-06T20:30:51.6700000-07:00|40022550|Zeromus|8B6B|Nostalgia|40022550|Zeromus|1B|8B6B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|347769|40478540|10000|10000|||100.00|80.10|0.00|0.00|347769|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B66F|0|1| +261|2023-10-06T20:30:51.2490000-07:00|Change|4002256A||||||||| +261|2023-10-06T20:30:51.2490000-07:00|Change|4002256C||||||||| +261|2023-10-06T20:30:51.2490000-07:00|Change|4002256D||||||||| +261|2023-10-06T20:30:51.2490000-07:00|Change|4002256E||||||||| +261|2023-10-06T20:30:51.2490000-07:00|Change|40022568||||||||| +261|2023-10-06T20:30:51.2490000-07:00|Change|40022569||||||||| +261|2023-10-06T20:30:51.2490000-07:00|Change|40022550||||||||||||| +261|2023-10-06T20:30:51.2490000-07:00|Change|4002256B||||||||| +261|2023-10-06T20:30:51.2490000-07:00|Change|10FF0005||||||||| +261|2023-10-06T20:30:51.3500000-07:00|Change|10FF0003||| +21|2023-10-06T20:30:51.7150000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||86.85|86.35|0.00|2.02|128564|128564|10000|10000|||86.85|86.35|0.00|2.02|0001B670|0|1| +21|2023-10-06T20:30:51.7150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022550|Zeromus|750003|31B50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|347769|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5050|10000|||98.74|111.13|0.00|3.10|0001B671|0|1| +38|2023-10-06T20:30:51.7150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||86.85|86.35|0.00|2.02|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:51.7150000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +20|2023-10-06T20:30:51.7600000-07:00|40022568|Zeromus|8B73|Primal Roar|40022568|Zeromus|9.400|94.92|94.02|0.00|0.00| +20|2023-10-06T20:30:51.7600000-07:00|40022569|Zeromus|8B72|Roar|40022569|Zeromus|6.400|103.88|96.29|0.00|0.00| +20|2023-10-06T20:30:51.7600000-07:00|4002256A|Zeromus|8B71|Roar|4002256A|Zeromus|5.400|100.44|85.62|0.00|0.00| +20|2023-10-06T20:30:51.7600000-07:00|4002256B|Zeromus|8B70|Bury|4002256B|Zeromus|3.400|91.24|111.98|0.00|0.00| +20|2023-10-06T20:30:51.7600000-07:00|4002256C|Zeromus|8B6F|Bury|4002256C|Zeromus|2.400|100.20|92.97|0.00|0.00| +20|2023-10-06T20:30:51.7600000-07:00|4002256D|Zeromus|8B6E|Bury|4002256D|Zeromus|1.400|101.39|95.43|0.00|0.00| +20|2023-10-06T20:30:51.7600000-07:00|4002256E|Zeromus|8B6D|Bury|4002256E|Zeromus|0.400|104.05|96.39|0.00|0.00| +38|2023-10-06T20:30:51.7600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|21||99.00|111.28|0.00|3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:51.7600000-07:00|74C|Everlasting Flight|0.00|40022E47|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|79111|| +37|2023-10-06T20:30:51.8490000-07:00|40022550|Zeromus|0001B66B|334212||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:51.8490000-07:00|10FF0008|Kokosaze Lulusaze|0001B66B|79111|79111|9600|10000|21||99.00|111.23|0.00|3.07|1B00|0|0|01|02000B25|0|0|| +37|2023-10-06T20:30:51.8490000-07:00|40022550|Zeromus|0001B66C|320514||||||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:51.8490000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5260|10000|13||88.75|96.87|0.00|0.97|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:51.8490000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:51.8490000-07:00|A2E|Eukrasia|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +21|2023-10-06T20:30:51.8490000-07:00|10FF0006|Wowobora Gogobora|5EE2|Eukrasia|10FF0006|Wowobora Gogobora|3E|1068000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5260|10000|||88.75|96.87|0.00|0.97|80739|80739|5260|10000|||88.75|96.87|0.00|0.97|0001B672|0|1| +38|2023-10-06T20:30:51.8490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|21||99.00|111.23|0.00|3.07|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:51.8940000-07:00|40022550|Zeromus|0001B66D|313934||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:51.8940000-07:00|10FF0008|Kokosaze Lulusaze|1D88|Addle|40022550|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|347769|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||99.00|111.23|0.00|3.07|0001B673|0|1| +261|2023-10-06T20:30:51.4430000-07:00|Change|40022DBB||||||||| +39|2023-10-06T20:30:52.0270000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6000|10000|||84.58|93.27|0.00|2.28| +21|2023-10-06T20:30:52.0720000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|17690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|313934|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||89.43|86.34|0.00|1.62|0001B674|0|1| +21|2023-10-06T20:30:52.0720000-07:00|10FF0005|Wuwuchu Wuchu|5F49|Gluttony|40022550|Zeromus|752003|76000000|200000F|A1B8000|0|0|0|0|0|0|0|0|0|0|0|0|313934|40478540|10000|10000|||100.00|80.10|0.00|0.00|90055|90055|10000|10000|||80.67|82.35|0.00|1.69|0001B675|0|1| +38|2023-10-06T20:30:52.0720000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|90055|90055|10000|10000|0||80.67|82.35|0.00|1.69|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:52.0720000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|02|90055|90055| +37|2023-10-06T20:30:52.1160000-07:00|40022550|Zeromus|0001B66E|311727||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:52.1160000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|33F90000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|313934|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|5800|10000|||84.58|93.27|0.00|2.28|0001B676|0|1| +38|2023-10-06T20:30:52.1160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6000|10000|13||84.58|93.27|0.00|2.28|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:52.1160000-07:00|76E|Sword Oath|4.87|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:30:51.6390000-07:00|Change|10FF0001||| +261|2023-10-06T20:30:51.7550000-07:00|Change|4002256C||||||||||||| +261|2023-10-06T20:30:51.7550000-07:00|Change|4002256E||||||||||||| +261|2023-10-06T20:30:51.7550000-07:00|Change|40022569||||||||||||| +261|2023-10-06T20:30:51.7550000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:30:51.7550000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:30:51.7550000-07:00|Change|4002256B||||||||||||| +261|2023-10-06T20:30:51.7550000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:30:51.7550000-07:00|Change|10FF0006||||||||| +21|2023-10-06T20:30:52.1610000-07:00|10FF0002|Suchichi Suchi|405F|Raiden Thrust|40022550|Zeromus|722003|3E920000|13E|9E8000|1B|405F8000|0|0|0|0|0|0|0|0|0|0|311727|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||106.03|89.97|0.00|-2.72|0001B677|0|1| +38|2023-10-06T20:30:52.1610000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|11||106.03|89.97|0.00|-2.72|0|0|0|||||||||||||||| +30|2023-10-06T20:30:52.1610000-07:00|747|Draconian Fire|0.00|10FF0002|Suchichi Suchi|10FF0002|Suchichi Suchi|00|90128|90128| +24|2023-10-06T20:30:52.2060000-07:00|40022550|Zeromus|DoT|0|3530|311727|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|311727|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:52.2060000-07:00|40022550|Zeromus|005A5A00|298111|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:52.2510000-07:00|10FF0007|Kehabiqo Febiqo|0001B670|128564|128564|10000|10000|0||90.18|86.41|0.00|1.56|1500|0|0|01|05000769|0|41F00000|| +38|2023-10-06T20:30:52.2510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||90.18|86.41|0.00|1.56|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:51.8660000-07:00|Change|10FF0007||||||||| +38|2023-10-06T20:30:52.4290000-07:00|40022E91||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +22|2023-10-06T20:30:52.4290000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0007|Kehabiqo Febiqo|730003|20A00000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||91.17|86.50|-0.01|1.47|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B678|0|8| +22|2023-10-06T20:30:52.4290000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0002|Suchichi Suchi|730603|980000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||106.16|90.56|-0.02|-2.67|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B678|1|8| +22|2023-10-06T20:30:52.4290000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0005|Wuwuchu Wuchu|730003|374F0000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|90055|90055|10000|10000|||80.67|82.35|0.00|1.69|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B678|2|8| +22|2023-10-06T20:30:52.4290000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0006|Wowobora Gogobora|730603|10070000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5260|10000|||89.48|97.27|0.00|1.31|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B678|3|8| +22|2023-10-06T20:30:52.4290000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0001|Sesuga Sapisuga|EC730605|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|6000|10000|||84.58|93.27|0.00|2.28|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B678|4|8| +22|2023-10-06T20:30:52.4290000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0008|Kokosaze Lulusaze|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||99.67|108.73|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B678|5|8| +22|2023-10-06T20:30:52.4290000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0004|Buhojaqe Zijaqe|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4650|10000|||98.74|111.10|0.00|2.72|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B678|6|8| +22|2023-10-06T20:30:52.4290000-07:00|4002256E|Zeromus|8B6D|Bury|10FF0003|Gegehi Gehi|730003|31490000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|2200|10000|||98.68|111.96|0.00|3.10|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B678|7|8| +38|2023-10-06T20:30:52.4290000-07:00|40022E91||005A5A00|72376|75851|10000|10000|0||||||0|0|0|||| +261|2023-10-06T20:30:51.9820000-07:00|Change|40022E59||||| +261|2023-10-06T20:30:51.9820000-07:00|Change|40022E59||||| +261|2023-10-06T20:30:51.9820000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:30:52.0940000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T20:30:52.5190000-07:00|40022550|Zeromus|0001B673|298111|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004B3|0|41200000|| +26|2023-10-06T20:30:52.5190000-07:00|4B3|Addle|10.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|79111| +37|2023-10-06T20:30:52.5190000-07:00|40022550|Zeromus|0001B671|285386||||||100.00|80.10|0.00|0.00| +39|2023-10-06T20:30:52.5190000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5465|10000|||90.42|97.59|0.00|1.27| +21|2023-10-06T20:30:52.5190000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|450003|16D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|298111|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9600|10000|||99.86|107.67|0.00|3.09|0001B679|0|1| +38|2023-10-06T20:30:52.5190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|21||99.86|107.67|0.00|3.09|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:52.5190000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:30:52.6070000-07:00|40022550|Zeromus|0001B674|279393||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:52.6070000-07:00|10FF0007|Kehabiqo Febiqo|0001B678|120212||||||91.64|86.73|0.00|1.41| +261|2023-10-06T20:30:52.2050000-07:00|Add|40022E91||||||||||||||||||||||||||||||||||||| +03|2023-10-06T20:30:52.2050000-07:00|40022E91|Carbuncle|00|5A|10FF0008|00||10261|13498|72376|75851|10000|10000|||100.41|104.62|0.00|-0.16| +261|2023-10-06T20:30:52.2050000-07:00|Change|10FF0002||||||||| +261|2023-10-06T20:30:52.2990000-07:00|Change|40022E91||| +37|2023-10-06T20:30:52.6520000-07:00|10FF0002|Suchichi Suchi|0001B678|89976|90128|10000|10000|0||105.28|92.12|0.00|-2.31|1601|0|0|01|0|0|0|| +38|2023-10-06T20:30:52.6520000-07:00|10FF0002|Suchichi Suchi|005A5A16|89976|90128|10000|10000|0||105.28|92.12|0.00|-2.31|0|0|0|||||||||||||||| +30|2023-10-06T20:30:52.6520000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:30:52.6950000-07:00|10FF0005|Wuwuchu Wuchu|0001B678|75896|90055|10000|10000|0||80.67|82.35|0.00|1.42|2702|0|0|01|02000A1B|02|C1F00000|| +37|2023-10-06T20:30:52.7410000-07:00|10FF0006|Wowobora Gogobora|0001B678|76636|80739|5465|10000|0||92.16|98.19|0.00|1.20|2803|0|0|01|08000000|0|0|| +38|2023-10-06T20:30:52.7410000-07:00|10FF0006|Wowobora Gogobora|005A5A28|76636|80739|5465|10000|0||92.16|98.19|0.00|1.20|0|0|0||||||||||||| +30|2023-10-06T20:30:52.7410000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:30:52.7850000-07:00|40022550|Zeromus|0001B677|263375||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:52.7850000-07:00|10FF0001|Sesuga Sapisuga|0001B678|127791|127791|6000|10000|8||84.58|93.27|0.00|2.28|1304|0|0|0| +37|2023-10-06T20:30:52.8300000-07:00|10FF0008|Kokosaze Lulusaze|0001B678|79111|79111|9600|10000|6||100.23|105.62|0.00|-3.13|1B05|0|0|0| +22|2023-10-06T20:30:52.8310000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0006|Wowobora Gogobora|200004|14B70000|490E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|5465|10000|||92.16|98.19|0.00|1.20|80739|80739|5465|10000|||92.16|98.19|0.00|1.20|0001B67A|0|7| +22|2023-10-06T20:30:52.8310000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0008|Kokosaze Lulusaze|4|C7B0000|F00E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||100.23|105.62|0.00|-3.13|80739|80739|5465|10000|||92.16|98.19|0.00|1.20|0001B67A|1|7| +22|2023-10-06T20:30:52.8310000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0002|Suchichi Suchi|4|CCD0000|F60E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||105.28|92.12|0.00|-2.31|80739|80739|5465|10000|||92.16|98.19|0.00|1.20|0001B67A|2|7| +22|2023-10-06T20:30:52.8310000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0004|Buhojaqe Zijaqe|4|CEB0000|560E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|80739|80739|4650|10000|||99.87|108.95|0.00|2.68|80739|80739|5465|10000|||92.16|98.19|0.00|1.20|0001B67A|3|7| +22|2023-10-06T20:30:52.8310000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0007|Kehabiqo Febiqo|200004|149E0000|F90E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|120212|128564|10000|10000|||92.50|87.14|0.00|1.30|80739|80739|5465|10000|||92.16|98.19|0.00|1.20|0001B67A|4|7| +22|2023-10-06T20:30:52.8310000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0001|Sesuga Sapisuga|200004|15180000|800E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|127791|127791|6000|10000|||84.58|93.27|0.00|2.28|80739|80739|5465|10000|||92.16|98.19|0.00|1.20|0001B67A|5|7| +22|2023-10-06T20:30:52.8310000-07:00|10FF0006|Wowobora Gogobora|5EE4|Eukrasian Prognosis|10FF0003|Gegehi Gehi|4|C980000|4C0E|A310000|1B|5EE48000|0|0|0|0|0|0|0|0|0|0|73085|73085|2200|10000|||98.68|111.96|0.00|3.10|80739|80739|5465|10000|||92.16|98.19|0.00|1.20|0001B67A|6|7| +38|2023-10-06T20:30:52.8310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120212|128564|10000|10000|13||92.50|87.14|0.00|1.30|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:52.8310000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:52.8310000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:52.8310000-07:00|10FF0002|Suchichi Suchi|005A5A16|89976|90128|10000|10000|11||105.28|92.12|0.00|-2.31|0|0|0|||||||||||||||| +26|2023-10-06T20:30:52.8310000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:52.8310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9600|10000|12||100.23|105.62|0.00|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:52.8310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:30:52.8310000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:52.8310000-07:00|10FF0006|Wowobora Gogobora|005A5A28|76636|80739|4565|10000|21||92.16|98.19|0.00|1.20|0|0|0|||||||||||||||| +30|2023-10-06T20:30:52.8310000-07:00|A2E|Eukrasia|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:52.8310000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:52.8310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6000|10000|13||84.58|93.27|0.00|2.28|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:52.8310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:30:52.8310000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:52.8310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4650|10000|13||99.87|108.95|0.00|2.68|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:52.8310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:30:52.8310000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:52.8310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|2200|10000|14||98.68|111.96|0.00|3.10|0|0|0|||||||||||||||| +26|2023-10-06T20:30:52.8310000-07:00|A31|Eukrasian Prognosis|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +39|2023-10-06T20:30:52.8740000-07:00|10FF0005|Wuwuchu Wuchu|76796|90055|10000|10000|||80.67|82.35|0.00|1.20| +37|2023-10-06T20:30:52.9190000-07:00|10FF0003|Gegehi Gehi|0001B678|60468||||||98.68|111.96|0.00|3.10| +21|2023-10-06T20:30:52.9640000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022550|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|263375|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6000|10000|||84.58|93.27|0.00|2.28|0001B67B|0|1| +38|2023-10-06T20:30:52.9640000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0||||||| +26|2023-10-06T20:30:52.9640000-07:00|7AE|Summon Order IV|30.00|40022DBB|Ruby Carbuncle|40022DBB|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T20:30:52.9640000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4650|10000|||100.71|107.43|0.00|2.65|80739|80739|4650|10000|||100.71|107.43|0.00|2.65|0001B67C|0|1| +21|2023-10-06T20:30:53.0090000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022550|Zeromus|716003|936A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|263375|40478540|10000|10000|||100.00|80.10|0.00|0.00|120212|128564|10000|10000|||93.42|87.71|0.00|1.19|0001B67D|0|1| +38|2023-10-06T20:30:53.0090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120212|128564|10000|10000|13||93.42|87.71|0.00|1.19|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:53.0090000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +261|2023-10-06T20:30:52.5820000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T20:30:52.6960000-07:00|Change|10FF0008||||||||| +261|2023-10-06T20:30:52.8140000-07:00|Change|4002256E||||||||||||| +22|2023-10-06T20:30:53.0540000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|25460000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|76636|80739|4565|10000|||94.60|99.21|0.00|1.16|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B67E|0|7| +22|2023-10-06T20:30:53.0540000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|200004|3D160000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9600|10000|||100.36|103.01|0.00|3.12|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B67E|1|7| +22|2023-10-06T20:30:53.0540000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0002|Suchichi Suchi|4|24880000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|89976|90128|10000|10000|||104.06|95.26|0.00|-1.52|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B67E|2|7| +22|2023-10-06T20:30:53.0540000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|200004|3DC70000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4650|10000|||101.23|106.43|0.00|2.65|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B67E|3|7| +22|2023-10-06T20:30:53.0540000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|24DF0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|120212|128564|10000|10000|||94.67|88.58|0.00|2.02|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B67E|4|7| +22|2023-10-06T20:30:53.0540000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|25E70000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|60468|73085|2200|10000|||98.68|111.96|0.00|3.10|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B67E|5|7| +22|2023-10-06T20:30:53.0540000-07:00|40022DBB|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|24BC0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|6000|10000|||84.58|93.27|0.00|2.28|73956|77430|10000|10000|||98.71|97.61|0.00|3.07|0001B67E|6|7| +39|2023-10-06T20:30:53.0540000-07:00|10FF0008|Kokosaze Lulusaze|79111|79111|9800|10000|||100.36|103.01|0.00|3.12| +20|2023-10-06T20:30:53.0540000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|1.944|98.68|111.96|0.00|3.10| +37|2023-10-06T20:30:53.1420000-07:00|40022550|Zeromus|0001B675|233167||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:53.1420000-07:00|10FF0005|Wuwuchu Wuchu|0001B675|76796|90055|10000|10000|0||81.30|82.82|0.00|1.06|2700|0|0|01|02000A1B|02|41F00000|| +39|2023-10-06T20:30:53.1420000-07:00|10FF0004|Buhojaqe Zijaqe|80739|80739|4850|10000|||101.23|106.43|0.00|2.65| +38|2023-10-06T20:30:53.1430000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|76796|90055|10000|10000|0||81.30|82.82|0.00|1.06|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T20:30:53.2310000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|726003|18420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|263375|40478540|10000|10000|||100.00|80.10|0.00|0.00|89976|90128|10000|10000|||104.06|95.26|0.00|-1.52|0001B67F|0|1| +21|2023-10-06T20:30:53.2310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022550|Zeromus|730003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|263375|40478540|10000|10000|||100.00|80.10|0.00|0.00|76636|80739|4565|10000|||94.60|99.21|0.00|1.16|0001B680|0|1| +261|2023-10-06T20:30:52.8140000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T20:30:52.8140000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:30:52.8140000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:30:53.2760000-07:00|40022550|Zeromus|0001B679|227318||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:52.9350000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:30:53.4100000-07:00|40022550|Zeromus|0001B676|214013||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:53.4100000-07:00|10FF0001|Sesuga Sapisuga|0001B676|127791|127791|6400|10000|13||84.58|93.27|0.00|2.28|1300|0|0|0| +261|2023-10-06T20:30:53.0530000-07:00|Change|10FF0001||| +22|2023-10-06T20:30:53.4540000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0007|Kehabiqo Febiqo|730003|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|120212|128564|10000|10000|||95.47|89.15|0.00|1.65|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B681|0|8| +22|2023-10-06T20:30:53.4540000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0002|Suchichi Suchi|730003|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|89976|90128|10000|10000|||102.89|95.75|0.00|-1.48|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B681|1|8| +22|2023-10-06T20:30:53.4540000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0005|Wuwuchu Wuchu|730003|372F0000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|76796|90055|10000|10000|||81.56|83.01|0.00|1.00|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B681|2|8| +22|2023-10-06T20:30:53.4540000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0006|Wowobora Gogobora|730003|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|76636|80739|4565|10000|||95.30|99.20|0.00|1.29|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B681|3|8| +22|2023-10-06T20:30:53.4540000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0001|Sesuga Sapisuga|730003|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|6000|10000|||84.58|93.27|0.00|2.28|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B681|4|8| +22|2023-10-06T20:30:53.4540000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0008|Kokosaze Lulusaze|F1730006|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9800|10000|||100.24|101.84|0.00|-3.09|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B681|5|8| +22|2023-10-06T20:30:53.4540000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0004|Buhojaqe Zijaqe|730003|D490000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4850|10000|||101.57|105.70|0.00|2.67|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B681|6|8| +22|2023-10-06T20:30:53.4540000-07:00|4002256D|Zeromus|8B6E|Bury|10FF0003|Gegehi Gehi|730003|5DE0000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|60468|73085|2200|10000|||98.68|111.96|0.00|3.10|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B681|7|8| +34|2023-10-06T20:30:53.4540000-07:00|40022E91|Carbuncle|40022E91|Carbuncle|01| +261|2023-10-06T20:30:53.0530000-07:00|Change|4002256D||||||||||||| +261|2023-10-06T20:30:53.0530000-07:00|Change|40022E91||||||||| +22|2023-10-06T20:30:53.4990000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0006|Wowobora Gogobora|F60E|A3A0000|FF90E|B7A0000|B|2BC8000|0|0|0|0|0|0|0|0|0|0|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|0001B682|0|8| +22|2023-10-06T20:30:53.4990000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0008|Kokosaze Lulusaze|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9800|10000|||99.89|101.09|0.00|-2.89|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|0001B682|1|8| +22|2023-10-06T20:30:53.4990000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0002|Suchichi Suchi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|89976|90128|10000|10000|||102.22|95.86|0.00|-1.47|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|0001B682|2|8| +22|2023-10-06T20:30:53.4990000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0004|Buhojaqe Zijaqe|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4850|10000|||101.70|105.40|0.00|2.68|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|0001B682|3|8| +22|2023-10-06T20:30:53.4990000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0007|Kehabiqo Febiqo|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|120212|128564|10000|10000|||95.28|89.04|0.00|1.94|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|0001B682|4|8| +22|2023-10-06T20:30:53.4990000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0003|Gegehi Gehi|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|60468|73085|2200|10000|||98.68|111.96|0.00|3.10|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|0001B682|5|8| +22|2023-10-06T20:30:53.4990000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0001|Sesuga Sapisuga|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|6400|10000|||84.58|93.27|0.00|2.28|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|0001B682|6|8| +22|2023-10-06T20:30:53.4990000-07:00|10FF0006|Wowobora Gogobora|5EEA|Kerachole|10FF0005|Wuwuchu Wuchu|F60E|A3A0000|FF90E|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|76796|90055|10000|10000|||81.59|83.03|0.00|0.97|76636|80739|4565|10000|||96.17|99.09|0.00|1.41|0001B682|7|8| +37|2023-10-06T20:30:53.5870000-07:00|40022550|Zeromus|0001B67B|214013|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|060004A9|0|41200000|| +26|2023-10-06T20:30:53.5870000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +37|2023-10-06T20:30:53.6320000-07:00|10FF0007|Kehabiqo Febiqo|0001B681|120212|128564|10000|10000|6||95.81|89.46|0.00|1.90|1500|0|0|0| +21|2023-10-06T20:30:53.6320000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40022550|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|214013|40478540|10000|10000|||100.00|80.10|0.00|0.00|120212|128564|10000|10000|||95.81|89.46|0.00|1.90|0001B683|0|1| +21|2023-10-06T20:30:53.6320000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4850|10000|||101.73|104.47|0.00|2.83|80739|80739|4850|10000|||101.73|104.47|0.00|2.83|0001B684|0|1| +38|2023-10-06T20:30:53.6320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4850|10000|13||101.73|104.47|0.00|2.83|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:53.6320000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:30:53.6770000-07:00|10FF0002|Suchichi Suchi|0001B681|89976|90128|10000|10000|1||101.40|96.28|0.00|-1.45|1601|0|0|0| +24|2023-10-06T20:30:53.6770000-07:00|10FF0003|Gegehi Gehi|HoT|0|9C7|60468|73085|2200|10000|||98.68|111.96|0.00|3.10|10FF0003|Gegehi Gehi|0|60468|73085|2200|10000|||98.68|111.96|0.00|3.10| +21|2023-10-06T20:30:53.6770000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|734003|BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|214013|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9800|10000|||99.93|99.94|0.00|-3.02|0001B685|0|1| +38|2023-10-06T20:30:53.6770000-07:00|10FF0003|Gegehi Gehi|005A5A23|62971|73085|2200|10000|14||98.68|111.96|0.00|3.10|0|0|0|||||||||||||||| +37|2023-10-06T20:30:53.7210000-07:00|10FF0005|Wuwuchu Wuchu|0001B681|62669||||||81.65|83.09|0.00|0.93| +21|2023-10-06T20:30:53.7210000-07:00|10FF0008|Kokosaze Lulusaze|64E0|Topaz Rite|40022550|Zeromus|450003|36670000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|214013|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9800|10000|||99.93|99.94|0.00|-3.02|0001B686|0|1| +38|2023-10-06T20:30:53.7210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|12||99.93|99.94|0.00|-3.02|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:53.7210000-07:00|B25|Titan's Favor|9999.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:30:53.7660000-07:00|40022550|Zeromus|0001B67F|207803||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:53.7660000-07:00|10FF0006|Wowobora Gogobora|0001B681|76636|80739|4565|10000|4||98.37|98.80|0.00|1.98|2803|0|0|0| +37|2023-10-06T20:30:53.7660000-07:00|10FF0006|Wowobora Gogobora|0001B67A|80739|80739|4565|10000|4||98.37|98.80|0.00|1.98|2800|0|0|01|04000A31|0|41E8DF38|| +37|2023-10-06T20:30:53.7660000-07:00|40022550|Zeromus|0001B680|207767||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:53.7660000-07:00|10FF0004|Buhojaqe Zijaqe|0001B67C|80739|80739|4850|10000|13||101.73|104.47|0.00|2.83|1C00|0|0|01|04000768|0|C1700000|| +37|2023-10-06T20:30:53.8110000-07:00|10FF0001|Sesuga Sapisuga|0001B681|127791|127791|6400|10000|8||84.58|93.27|0.00|2.28|1304|0|0|0| +26|2023-10-06T20:30:53.8110000-07:00|A1B|Soul Reaver|30.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|01|90055|90055| +21|2023-10-06T20:30:53.8110000-07:00|10FF0005|Wuwuchu Wuchu|5F3F|Gallows|40022550|Zeromus|B710003|44970000|104|CD08000|F|A1C8000|A3E|1018000|0|0|0|0|0|0|0|0|214013|40478540|10000|10000|||100.00|80.10|0.00|0.00|76796|90055|10000|10000|||81.65|83.09|0.00|0.93|0001B687|0|1| +38|2023-10-06T20:30:53.8110000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|62669|90055|10000|10000|0||81.65|83.09|0.00|0.93|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:53.8110000-07:00|A1C|Enhanced Gibbet|60.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +30|2023-10-06T20:30:53.8110000-07:00|A1D|Enhanced Gallows|0.00|10FF0005|Wuwuchu Wuchu|10FF0005|Wuwuchu Wuchu|00|90055|90055| +37|2023-10-06T20:30:53.8550000-07:00|10FF0008|Kokosaze Lulusaze|0001B681|79111|79111|9500|10000|1||99.94|99.43|-0.02|3.14|1B05|0|0|0| +24|2023-10-06T20:30:53.8550000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|EF4|127791|127791|6400|10000|||84.58|93.27|0.00|2.28|10FF0001|Sesuga Sapisuga|0|127791|127791|6400|10000|||84.58|93.27|0.00|2.28| +24|2023-10-06T20:30:53.8550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|947|80739|80739|4850|10000|||101.61|103.93|0.00|-2.99|10FF0006|Wowobora Gogobora|0|80739|80739|4565|10000|||98.58|98.71|0.00|1.98| +21|2023-10-06T20:30:53.8550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|712003|DA30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|207767|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6400|10000|||84.58|93.27|0.00|2.28|0001B688|0|1| +38|2023-10-06T20:30:53.8550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|8||84.58|93.27|0.00|2.28|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:53.8550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4850|10000|13||101.61|103.93|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||| +31|2023-10-06T20:30:53.8550000-07:00|10FF0001||||| +37|2023-10-06T20:30:53.8980000-07:00|10FF0004|Buhojaqe Zijaqe|0001B681|77338|80739|4850|10000|0||101.61|103.93|0.00|-2.99|1C06|0|0|02|04000768|0|C1700000|||||| +37|2023-10-06T20:30:53.8980000-07:00|10FF0008|Kokosaze Lulusaze|0001B67A|79111|79111|9500|10000|1||99.94|99.43|-0.02|3.14|1B01|0|0|01|06000A31|0|41E7CED5|| +39|2023-10-06T20:30:53.8980000-07:00|10FF0003|Gegehi Gehi|63701|73085|2400|10000|||98.68|111.96|0.00|3.10| +38|2023-10-06T20:30:53.8990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77338|80739|4850|10000|0||101.61|103.93|0.00|-2.99|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:53.8990000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +37|2023-10-06T20:30:53.9440000-07:00|40022550|Zeromus|0001B67D|170029||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:53.9440000-07:00|10FF0003|Gegehi Gehi|0001B681|62199|73085|2400|10000|0||98.68|111.96|0.00|3.10|2307|0|0|01|03000000|0|0|| +24|2023-10-06T20:30:53.9440000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|A00|62669|90055|10000|10000|||81.65|83.09|0.00|1.50|40022DBB|Ruby Carbuncle|0|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +38|2023-10-06T20:30:53.9440000-07:00|10FF0003|Gegehi Gehi|005A5A23|62199|73085|2400|10000|0||98.68|111.96|0.00|3.10|0|0|0|||||||||||||||| +30|2023-10-06T20:30:53.9440000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:30:53.9440000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65229|90055|10000|10000|0||81.65|83.09|0.00|1.50|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T20:30:53.9870000-07:00|10FF0002|Suchichi Suchi|1CE8|Nastrond|40022550|Zeromus|724003|3EE10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|207767|40478540|10000|10000|||100.00|80.10|0.00|0.00|89976|90128|10000|10000|||101.34|96.85|0.00|-1.44|0001B689|0|1| +261|2023-10-06T20:30:53.6340000-07:00|Change|10FF0006||||||||| +37|2023-10-06T20:30:54.0310000-07:00|10FF0002|Suchichi Suchi|0001B67A|90128|90128|10000|10000|1||101.30|97.05|0.00|-3.06|1602|0|0|01|0A31|0|41E6BE73|| +261|2023-10-06T20:30:53.6340000-07:00|Change|10FF0008||||||||||| +37|2023-10-06T20:30:54.1640000-07:00|10FF0004|Buhojaqe Zijaqe|0001B67A|80645|80739|4850|10000|0||101.34|102.94|0.00|-2.99|1C03|0|0|01|04000768|0|C1700000|| +37|2023-10-06T20:30:54.2090000-07:00|40022550|Zeromus|0001B685|169843||||||100.00|80.10|0.00|0.00| +261|2023-10-06T20:30:53.7500000-07:00|Change|10FF0003||||| +37|2023-10-06T20:30:54.2540000-07:00|10FF0004|Buhojaqe Zijaqe|0001B684|80645|80739|4850|10000|0||101.29|102.46|0.00|-3.01|1C00|0|0|01|04000768|0|41700000|| +37|2023-10-06T20:30:54.2540000-07:00|10FF0004|Buhojaqe Zijaqe|0001B67E|80739||||||101.29|102.46|0.00|-3.01| +39|2023-10-06T20:30:54.2540000-07:00|10FF0007|Kehabiqo Febiqo|121497|128564|10000|10000|||98.04|91.24|-0.02|0.84| +38|2023-10-06T20:30:54.2540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4850|10000|0||101.29|102.46|0.00|-3.01|0|0|0||||||||||||||||||| +37|2023-10-06T20:30:54.2990000-07:00|40022550|Zeromus|0001B683|169843|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|060004A9|0|41200000|| +30|2023-10-06T20:30:54.2990000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022550|Zeromus|00|40478540|127791| +26|2023-10-06T20:30:54.2990000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40022550|Zeromus|00|40478540|128564| +37|2023-10-06T20:30:54.2990000-07:00|10FF0006|Wowobora Gogobora|0001B682|80739|80739|5265|10000|4||99.29|96.89|0.00|3.02|2800|0|0|02|01000A3A|0|41700000|||||| +26|2023-10-06T20:30:54.2990000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:54.2990000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:30:54.2990000-07:00|10FF0007|Kehabiqo Febiqo|0001B67A|126775|128564|10000|10000|6||98.04|91.24|-0.02|0.84|1504|0|0|01|06000A31|0|41E49BA1|| +37|2023-10-06T20:30:54.2990000-07:00|40022550|Zeromus|0001B687|152284||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:54.2990000-07:00|10FF0005|Wuwuchu Wuchu|0001B687|68509|90055|10000|10000|0||82.48|83.60|0.00|1.07|2700|0|0|01|04000A1C|0|42700000|| +20|2023-10-06T20:30:54.2990000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|1.462|99.29|96.89|0.00|3.02| +21|2023-10-06T20:30:54.2990000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022550|Zeromus|732003|F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|169843|40478540|10000|10000|||100.00|80.10|0.00|0.00|80645|80739|4850|10000|||101.29|102.46|0.00|-3.01|0001B68A|0|1| +38|2023-10-06T20:30:54.2990000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|68509|90055|10000|10000|0||82.48|83.60|0.00|1.07|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T20:30:53.9740000-07:00|Change|10FF0004||||||||| +37|2023-10-06T20:30:54.3880000-07:00|40022550|Zeromus|0001B686|138357||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:54.3880000-07:00|10FF0008|Kokosaze Lulusaze|0001B686|79111|79111|9500|10000|1||99.96|98.77|0.00|3.14|1B00|0|0|01|02000B25|0|0|| +37|2023-10-06T20:30:54.3880000-07:00|40022550|Zeromus|0001B688|134866||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:54.3880000-07:00|10FF0007|Kehabiqo Febiqo|0001B67E|128564||||||98.80|91.92|0.00|0.84| +22|2023-10-06T20:30:54.3890000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|54260000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4850|10000|||101.26|101.48|0.00|-3.08|80739|80739|4850|10000|||101.26|101.48|0.00|-3.08|0001B68B|0|6| +22|2023-10-06T20:30:54.3890000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|533A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||99.96|98.77|0.00|3.14|80739|80739|4850|10000|||101.26|101.48|0.00|-3.08|0001B68B|1|6| +22|2023-10-06T20:30:54.3890000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|52920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5265|10000|||99.29|96.80|0.00|-3.08|80739|80739|4850|10000|||101.26|101.48|0.00|-3.08|0001B68B|2|6| +22|2023-10-06T20:30:54.3890000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0002|Suchichi Suchi|200004|52110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||101.28|97.13|0.00|-2.53|80739|80739|4850|10000|||101.26|101.48|0.00|-3.08|0001B68B|3|6| +22|2023-10-06T20:30:54.3890000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|528C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|126775|128564|10000|10000|||98.80|91.92|0.00|0.84|80739|80739|4850|10000|||101.26|101.48|0.00|-3.08|0001B68B|4|6| +22|2023-10-06T20:30:54.3890000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|4FB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|62199|73085|2400|10000|||98.68|111.96|0.00|3.10|80739|80739|4850|10000|||101.26|101.48|0.00|-3.08|0001B68B|5|6| +38|2023-10-06T20:30:54.3890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|1||99.96|98.77|0.00|3.14|0|0|0||||||||||||||||||||||||| +38|2023-10-06T20:30:54.3890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4850|10000|0||101.26|101.48|0.00|-3.08|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:54.3890000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +261|2023-10-06T20:30:53.9740000-07:00|Change|10FF0007||||||||| +37|2023-10-06T20:30:54.4330000-07:00|10FF0008|Kokosaze Lulusaze|0001B682|79111|79111|9500|10000|1||99.96|98.77|0.00|3.14|1B01|0|0|02|04000A3A|0|41700000|||||| +26|2023-10-06T20:30:54.4330000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:30:54.4330000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:30:54.4330000-07:00|10FF0001|Sesuga Sapisuga|0001B67A|127791|127791|6400|10000|8||84.58|93.27|0.00|2.28|1305|0|0|01|03000A31|0|41E38932|| +39|2023-10-06T20:30:54.4330000-07:00|40022DBB|Ruby Carbuncle|73956|77430|10000|10000|||98.71|97.61|0.00|3.07| +22|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0007|Kehabiqo Febiqo|5540E|5B10000|1C640E|83C0000|4|1B760000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|0001B68C|0|8| +22|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0002|Suchichi Suchi|5CF0E|5B10000|1C640E|83C0000|4|1D000000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||101.27|97.15|0.00|-2.11|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|0001B68C|1|8| +22|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0004|Buhojaqe Zijaqe|54E0E|5B10000|1C640E|83C0000|200004|2E750000|0|0|0|0|0|0|0|0|0|0|80739|80739|4850|10000|||101.23|100.43|0.00|3.12|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|0001B68C|2|8| +22|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0008|Kokosaze Lulusaze|55A0E|5B10000|1C640E|83C0000|200004|2CEC0000|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||99.96|98.77|0.00|3.14|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|0001B68C|3|8| +22|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0006|Wowobora Gogobora|54E0E|5B10000|1C640E|83C0000|4|1C0E0000|0|0|0|0|0|0|0|0|0|0|80739|80739|5265|10000|||99.16|97.27|0.00|-3.11|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|0001B68C|4|8| +22|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0001|Sesuga Sapisuga|5E00E|5B10000|1C640E|83C0000|4|1C5C0000|0|0|0|0|0|0|0|0|0|0|127791|127791|6400|10000|||84.58|93.27|0.00|2.28|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|0001B68C|5|8| +22|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0003|Gegehi Gehi|5D20E|5B10000|1C640E|83C0000|4|1C460000|0|0|0|0|0|0|0|0|0|0|62199|73085|2400|10000|||98.68|111.96|0.00|3.10|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|0001B68C|6|8| +22|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0005|Wuwuchu Wuchu|5C40E|5B10000|1C640E|83C0000|4|1BE20000|0|0|0|0|0|0|0|0|0|0|68509|90055|10000|10000|||83.62|84.52|0.00|0.98|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|0001B68C|7|8| +22|2023-10-06T20:30:54.4350000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0007|Kehabiqo Febiqo|730003|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B68D|0|8| +22|2023-10-06T20:30:54.4350000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0005|Wuwuchu Wuchu|730003|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|68509|90055|10000|10000|||83.62|84.52|0.00|0.98|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B68D|1|8| +22|2023-10-06T20:30:54.4350000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0002|Suchichi Suchi|730003|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||101.27|97.15|0.00|-2.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B68D|2|8| +22|2023-10-06T20:30:54.4350000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0004|Buhojaqe Zijaqe|730003|13F0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4850|10000|||101.23|100.43|0.00|3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B68D|3|8| +22|2023-10-06T20:30:54.4350000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0006|Wowobora Gogobora|730003|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|5265|10000|||99.16|97.27|0.00|-3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B68D|4|8| +22|2023-10-06T20:30:54.4350000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0008|Kokosaze Lulusaze|730003|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||99.96|98.77|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B68D|5|8| +22|2023-10-06T20:30:54.4350000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0001|Sesuga Sapisuga|730003|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|6400|10000|||84.58|93.27|0.00|2.28|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B68D|6|8| +22|2023-10-06T20:30:54.4350000-07:00|4002256C|Zeromus|8B6F|Bury|10FF0003|Gegehi Gehi|730003|0|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|62199|73085|2400|10000|||98.68|111.96|0.00|3.10|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B68D|7|8| +38|2023-10-06T20:30:54.4350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|21||99.61|92.65|0.00|0.84|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:54.4350000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +26|2023-10-06T20:30:54.4350000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:30:54.4350000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|15||101.27|97.15|0.00|-2.11|0|0|0|||||||||||||||| +26|2023-10-06T20:30:54.4350000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|90128|128564| +26|2023-10-06T20:30:54.4350000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|90128|128564| +38|2023-10-06T20:30:54.4350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|15||99.96|98.77|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:54.4350000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|79111|128564| +26|2023-10-06T20:30:54.4350000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|79111|128564| +38|2023-10-06T20:30:54.4350000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5265|10000|19||99.16|97.27|0.00|-3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:54.4350000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:54.4350000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|80739|128564| +26|2023-10-06T20:30:54.4350000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|80739|128564| +38|2023-10-06T20:30:54.4350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|23||84.58|93.27|0.00|2.28|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:54.4350000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +26|2023-10-06T20:30:54.4350000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|127791|128564| +38|2023-10-06T20:30:54.4350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80739|80739|4850|10000|14||101.23|100.43|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:54.4350000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +26|2023-10-06T20:30:54.4350000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +261|2023-10-06T20:30:53.9740000-07:00|Change|4002256C||||||||||||| +38|2023-10-06T20:30:54.4350000-07:00|10FF0003|Gegehi Gehi|005A5A23|62199|73085|2400|10000|14||98.68|111.96|0.00|3.10|0|0|0||||||||||||||||||| +26|2023-10-06T20:30:54.4350000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73085|128564| +26|2023-10-06T20:30:54.4350000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73085|128564| +38|2023-10-06T20:30:54.4350000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|68509|90055|10000|10000|14||83.62|84.52|0.00|0.98|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:54.4350000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|90055|128564| +26|2023-10-06T20:30:54.4350000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|90055|128564| +39|2023-10-06T20:30:54.4780000-07:00|10FF0002|Suchichi Suchi|90128|90128|10000|10000|||101.27|97.15|0.00|-2.11| +21|2023-10-06T20:30:54.4780000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022550|Zeromus|150003|16C90000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|134866|40478540|10000|10000|||100.00|80.10|0.00|0.00|62199|73085|2400|10000|||98.68|111.96|0.00|3.10|0001B68E|0|1| +38|2023-10-06T20:30:54.4780000-07:00|10FF0003|Gegehi Gehi|005A5A23|62199|73085|2200|10000|14||98.68|111.96|0.00|3.10|0|0|0||||||||||||||||||| +30|2023-10-06T20:30:54.4780000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +26|2023-10-06T20:30:54.4780000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:30:54.5220000-07:00|10FF0003|Gegehi Gehi|0001B67E|71902||||||98.68|111.96|0.00|3.10| +24|2023-10-06T20:30:54.5220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|19FC|128564|128564|10000|10000|||99.61|92.65|0.00|0.84|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||99.61|92.65|0.00|0.84| +24|2023-10-06T20:30:54.5220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2739|79111|79111|9500|10000|||99.96|98.77|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|128564|128564|10000|10000|||99.61|92.65|0.00|0.84| +38|2023-10-06T20:30:54.5220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|21||99.61|92.65|0.00|0.84|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:54.5220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|15||99.96|98.77|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T20:30:54.5670000-07:00|10FF0002|Suchichi Suchi|0001B682|90128|90128|10000|10000|15||100.95|97.28|0.00|-1.84|1602|0|0|02|05000A3A|0|41700000|||||| +26|2023-10-06T20:30:54.5670000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:30:54.5670000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:30:54.5670000-07:00|10FF0003|Gegehi Gehi|0001B67A|73085||||||98.68|111.96|0.00|3.10| +21|2023-10-06T20:30:54.5670000-07:00|10FF0005|Wuwuchu Wuchu|07|attack|40022550|Zeromus|710003|CB30000|104|25E8000|0|0|0|0|0|0|0|0|0|0|0|0|134866|40478540|10000|10000|||100.00|80.10|0.00|0.00|68509|90055|10000|10000|||84.14|85.07|0.00|0.95|0001B68F|0|1| +37|2023-10-06T20:30:54.6120000-07:00|10FF0007|Kehabiqo Febiqo|0001B68D|128564|128564|10000|10000|16||100.21|93.18|-0.02|0.84|1500|0|0|0| +21|2023-10-06T20:30:54.6120000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022550|Zeromus|710003|330B0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|134866|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|6400|10000|||84.58|93.27|0.00|2.28|0001B690|0|1| +38|2023-10-06T20:30:54.6120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6400|10000|23||84.58|93.27|0.00|2.28|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:54.6120000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|127791|127791| +261|2023-10-06T20:30:54.1890000-07:00|Change|10FF0005||||||||| +37|2023-10-06T20:30:54.6570000-07:00|10FF0005|Wuwuchu Wuchu|0001B68D|68509|90055|10000|10000|1||84.57|85.52|0.00|0.93|2701|0|0|0| +21|2023-10-06T20:30:54.6570000-07:00|10FF0002|Suchichi Suchi|4E|Vorpal Thrust|40022550|Zeromus|35724003|2EA20000|11B|4E8000|0|0|0|0|0|0|0|0|0|0|0|0|134866|40478540|10000|10000|||100.00|80.10|0.00|0.00|90128|90128|10000|10000|||100.67|97.47|0.00|-1.78|0001B691|0|1| +21|2023-10-06T20:30:54.6570000-07:00|40022550|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||100.54|93.48|0.00|0.84|134866|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001B692|0|1| +38|2023-10-06T20:30:54.6570000-07:00|40022DBB|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||98.71|97.61|0.00|3.07|0|0|0|||| +30|2023-10-06T20:30:54.6570000-07:00|7AE|Summon Order IV|0.00|40022DBB|Ruby Carbuncle|40022DBB|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T20:30:54.7010000-07:00|10FF0002|Suchichi Suchi|0001B68D|90128|90128|10000|10000|5||100.67|97.47|0.00|-1.78|1602|0|0|01|0|0|0|| +37|2023-10-06T20:30:54.7010000-07:00|10FF0004|Buhojaqe Zijaqe|0001B682|80739|80739|4850|10000|14||100.77|99.40|0.00|-3.10|1C03|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:30:54.7010000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:30:54.7010000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:54.7010000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|5||100.67|97.47|0.00|-1.78|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:54.7010000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +37|2023-10-06T20:30:54.7450000-07:00|40022550|Zeromus|0001B689|118769||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:54.7450000-07:00|10FF0004|Buhojaqe Zijaqe|0001B68D|80420|80739|4850|10000|0||100.77|99.40|0.00|-3.10|1C03|0|0|01|04000000|0|0|| +38|2023-10-06T20:30:54.7450000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80420|80739|4850|10000|0||100.77|99.40|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:54.7450000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|80739|128564| +37|2023-10-06T20:30:54.7900000-07:00|10FF0006|Wowobora Gogobora|0001B68D|80739|80739|5265|10000|4||98.84|98.38|-0.01|3.08|2804|0|0|01|04000000|0|0|| +38|2023-10-06T20:30:54.7910000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5265|10000|4||98.84|98.38|-0.01|3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:54.7910000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +37|2023-10-06T20:30:54.8350000-07:00|10FF0008|Kokosaze Lulusaze|0001B68D|79111|79111|9500|10000|3||99.96|98.77|0.00|3.14|1B05|0|0|01|06000000|0|0|| +37|2023-10-06T20:30:54.8350000-07:00|10FF0007|Kehabiqo Febiqo|0001B682|128564|128564|10000|10000|16||100.87|93.78|0.00|0.84|1504|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:30:54.8350000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:54.8350000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:30:54.8350000-07:00|40022550|Zeromus|0001B68A|118525||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:54.8350000-07:00|40022DBB|Ruby Carbuncle|322|Embrace|10FF0005|Wuwuchu Wuchu|4|154B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|68509|90055|10000|10000|||84.73|85.66|0.00|1.02|73956|77430|10000|10000|||98.71|97.61|0.00|-3.14|0001B693|0|1| +38|2023-10-06T20:30:54.8350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|3||99.96|98.77|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:54.8350000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +37|2023-10-06T20:30:54.8790000-07:00|10FF0001|Sesuga Sapisuga|0001B68D|127791|127791|6400|10000|18||84.58|93.27|0.00|2.28|1306|0|0|0| +37|2023-10-06T20:30:54.9240000-07:00|10FF0003|Gegehi Gehi|0001B68D|73085|73085|2200|10000|1||98.68|111.94|-0.02|3.10|2307|0|0|0| +21|2023-10-06T20:30:54.9240000-07:00|10FF0008|Kokosaze Lulusaze|64EC|Mountain Buster|40022550|Zeromus|454003|1CF80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|118525|40478540|10000|10000|||100.00|80.10|0.00|0.00|79111|79111|9500|10000|||99.96|98.77|0.00|3.14|0001B694|0|1| +38|2023-10-06T20:30:54.9240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|79111|79111|9500|10000|3||99.96|98.77|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:54.9240000-07:00|B25|Titan's Favor|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:30:54.9690000-07:00|10FF0003|Gegehi Gehi|0001B682|73085|73085|2200|10000|1||98.68|111.94|-0.02|3.10|2305|0|0|02|06000A3A|0|41700000|||||| +26|2023-10-06T20:30:54.9690000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:30:54.9690000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:30:55.0130000-07:00|10FF0004|Buhojaqe Zijaqe|0001B68B|80739||||||100.42|98.57|0.00|3.09| +39|2023-10-06T20:30:55.0130000-07:00|10FF0001|Sesuga Sapisuga|127791|127791|6600|10000|||84.58|93.27|0.00|2.28| +261|2023-10-06T20:30:54.5630000-07:00|Change|10FF0001||| +261|2023-10-06T20:30:54.5630000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T20:30:55.1030000-07:00|10FF0001|Sesuga Sapisuga|0001B682|127791|127791|6600|10000|18||84.58|93.27|0.00|2.28|1306|0|0|02|07000A3A|0|41700000|||||| +26|2023-10-06T20:30:55.1030000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:30:55.1030000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:30:55.1030000-07:00|40022550|Zeromus|0001B68F|115274||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:55.1030000-07:00|10FF0005|Wuwuchu Wuchu|0001B68F|69115||||||84.93|85.86|0.00|1.34| +20|2023-10-06T20:30:55.1470000-07:00|10FF0005|Wuwuchu Wuchu|611A|the End|40022550|Zeromus|4.500|84.93|85.86|0.00|1.34| +24|2023-10-06T20:30:55.1920000-07:00|40022550|Zeromus|DoT|0|1EF5|118525|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022550|Zeromus|FFFFFFFF|118525|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T20:30:55.1920000-07:00|40022550|Zeromus|005A5A00|107349|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||||||||| +37|2023-10-06T20:30:55.2350000-07:00|10FF0007|Kehabiqo Febiqo|0001B68C|128564|128564|10000|10000|16||103.37|94.06|0.00|1.74|1500|0|0|02|050005B1|0|41E9EF9B|||||| +37|2023-10-06T20:30:55.2360000-07:00|10FF0005|Wuwuchu Wuchu|0001B682|69115|90055|10000|10000|1||84.93|85.90|0.00|1.47|2707|0|0|02|0A000A3A|0|41700000|||||| +26|2023-10-06T20:30:55.2360000-07:00|A3A|Kerachole|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:30:55.2360000-07:00|B7A|Kerakeia|15.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +21|2023-10-06T20:30:55.2360000-07:00|10FF0006|Wowobora Gogobora|5EF8|Dosis III|40022550|Zeromus|750003|360E0000|1B|5EF88000|0|0|0|0|0|0|0|0|0|0|0|0|107349|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5265|10000|||98.83|98.41|0.00|3.08|0001B695|0|1| +261|2023-10-06T20:30:54.7950000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T20:30:55.2810000-07:00|40022550|Zeromus|0001B68E|101516||||||100.00|80.10|0.00|0.00| +20|2023-10-06T20:30:55.2810000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.42|98.27|0.00|2.86| +37|2023-10-06T20:30:55.3700000-07:00|10FF0002|Suchichi Suchi|0001B68C|90128|90128|10000|10000|5||99.78|98.02|0.00|-2.51|1601|0|0|02|020005B1|0|41E8DF38|||||| +261|2023-10-06T20:30:54.9140000-07:00|Change|40022DBB||||||||| +261|2023-10-06T20:30:54.9140000-07:00|Change|10FF0004||||||||||||||||||||| +22|2023-10-06T20:30:55.4150000-07:00|4002256B|Zeromus|8B70|Bury|10FF0007|Kehabiqo Febiqo|730003|15D0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||102.69|92.73|0.00|2.79|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B696|0|8| +22|2023-10-06T20:30:55.4150000-07:00|4002256B|Zeromus|8B70|Bury|10FF0005|Wuwuchu Wuchu|730003|27E50000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|69115|90055|10000|10000|||84.94|85.94|0.00|1.73|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B696|1|8| +22|2023-10-06T20:30:55.4150000-07:00|4002256B|Zeromus|8B70|Bury|10FF0004|Buhojaqe Zijaqe|730003|2D3C0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4850|10000|||100.45|98.03|0.00|2.64|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B696|2|8| +22|2023-10-06T20:30:55.4150000-07:00|4002256B|Zeromus|8B70|Bury|10FF0006|Wowobora Gogobora|730003|1E4C0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|80739|80739|4865|10000|||98.83|98.41|0.00|3.08|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B696|3|8| +22|2023-10-06T20:30:55.4150000-07:00|4002256B|Zeromus|8B70|Bury|10FF0008|Kokosaze Lulusaze|730003|1AC90000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|79111|79111|9500|10000|||99.96|98.77|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B696|4|8| +22|2023-10-06T20:30:55.4150000-07:00|4002256B|Zeromus|8B70|Bury|10FF0002|Suchichi Suchi|730003|B2D0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.62|98.12|0.00|-2.44|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B696|5|8| +22|2023-10-06T20:30:55.4150000-07:00|4002256B|Zeromus|8B70|Bury|10FF0001|Sesuga Sapisuga|730003|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|127791|127791|6600|10000|||84.58|93.27|0.00|2.28|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B696|6|8| +22|2023-10-06T20:30:55.4150000-07:00|4002256B|Zeromus|8B70|Bury|10FF0003|Gegehi Gehi|730003|23330000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|73085|73085|2200|10000|||98.84|109.91|0.00|3.08|44|44|0|10000|||100.00|80.10|0.00|0.00|0001B696|7|8| +261|2023-10-06T20:30:55.0260000-07:00|Change|4002256B||||||||||||| +37|2023-10-06T20:30:55.4600000-07:00|10FF0007|Kehabiqo Febiqo|0001B692|128564|128564|10000|10000|0||102.69|92.73|0.00|2.79|1500|0|0|02|05000000|0|0|||||| +21|2023-10-06T20:30:55.4600000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022550|Zeromus|710003|16900000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|101516|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||102.69|92.73|0.00|2.79|0001B697|0|1| +21|2023-10-06T20:30:55.4600000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022550|Zeromus|716003|15E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|101516|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||102.69|92.73|0.00|2.79|0001B698|0|1| +38|2023-10-06T20:30:55.4600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|0||102.69|92.73|0.00|2.79|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:55.4600000-07:00|A2D|Kardion|60.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +30|2023-10-06T20:30:55.4600000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +30|2023-10-06T20:30:55.4600000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +37|2023-10-06T20:30:55.5030000-07:00|10FF0004|Buhojaqe Zijaqe|0001B68C|80739|80739|4850|10000|0||100.45|98.03|0.00|2.64|1C02|0|0|01|0600083C|0|415F999C|| +39|2023-10-06T20:30:55.5030000-07:00|10FF0006|Wowobora Gogobora|80739|80739|5070|10000|||98.83|98.41|0.00|3.08| +21|2023-10-06T20:30:55.5030000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022550|Zeromus|352003|28C50000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|101516|40478540|10000|10000|||100.00|80.10|0.00|0.00|73085|73085|2200|10000|||98.84|109.91|0.00|3.08|0001B699|0|1| +38|2023-10-06T20:30:55.5040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|1900|10000|1||98.84|109.91|0.00|3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:55.5040000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73085|73085| +37|2023-10-06T20:30:55.5920000-07:00|10FF0007|Kehabiqo Febiqo|0001B696|128215||||||102.17|92.36|0.00|-2.93| +37|2023-10-06T20:30:55.6370000-07:00|10FF0008|Kokosaze Lulusaze|0001B68C|79111|79111|9500|10000|3||99.96|98.77|0.00|3.14|1B03|0|0|02|090005B1|0|41E6BC66|||||| +37|2023-10-06T20:30:55.6370000-07:00|10FF0005|Wuwuchu Wuchu|0001B696|58902|90055|10000|10000|0||84.94|85.97|0.00|1.85|2701|0|0|01|07000000|0|0|| +37|2023-10-06T20:30:55.6370000-07:00|10FF0005|Wuwuchu Wuchu|0001B693|64353||||||84.94|85.97|0.00|1.85| +38|2023-10-06T20:30:55.6370000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|64353|90055|10000|10000|0||84.94|85.97|0.00|1.85|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:55.6370000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0005|Wuwuchu Wuchu|00|90055|128564| +261|2023-10-06T20:30:55.2300000-07:00|Change|10FF0005||||||||||||||||||| +37|2023-10-06T20:30:55.6820000-07:00|40022550|Zeromus|0001B691|89578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:55.6820000-07:00|40022550|Zeromus|0001B694|82162||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:55.6820000-07:00|10FF0004|Buhojaqe Zijaqe|0001B696|69159||||||100.48|97.83|-0.01|2.47| +261|2023-10-06T20:30:55.3300000-07:00|Change|10FF0002||||||||| +37|2023-10-06T20:30:55.7270000-07:00|10FF0006|Wowobora Gogobora|0001B696|72983|80739|5070|10000|0||98.83|98.41|0.00|3.08|2803|0|0|01|06000000|0|0|| +38|2023-10-06T20:30:55.7270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128215|128564|10000|10000|0||100.42|92.58|0.00|-2.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:55.7270000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|128564|128564| +38|2023-10-06T20:30:55.7270000-07:00|10FF0006|Wowobora Gogobora|005A5A28|72983|80739|5070|10000|0||98.83|98.41|0.00|3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:55.7270000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|80739|128564| +37|2023-10-06T20:30:55.7710000-07:00|10FF0006|Wowobora Gogobora|0001B68C|80165|80739|5070|10000|0||98.83|98.41|0.00|3.08|2804|0|0|01|0700083C|0|415B4FE2|| +37|2023-10-06T20:30:55.7720000-07:00|10FF0008|Kokosaze Lulusaze|0001B696|72254|79111|9500|10000|0||99.96|98.77|0.00|3.14|1B04|0|0|01|09000000|0|0|| +38|2023-10-06T20:30:55.7720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|72254|79111|9500|10000|0||99.96|98.77|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:55.7720000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|79111|128564| +37|2023-10-06T20:30:55.8160000-07:00|10FF0002|Suchichi Suchi|0001B696|87267|90128|10000|10000|0||99.01|98.57|0.00|-2.52|1605|0|0|01|02000000|0|0|| +38|2023-10-06T20:30:55.8160000-07:00|10FF0002|Suchichi Suchi|005A5A16|87267|90128|10000|10000|0||99.01|98.57|0.00|-2.52|0|0|0|||||||||||||||||||||| +30|2023-10-06T20:30:55.8160000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0002|Suchichi Suchi|00|90128|128564| +37|2023-10-06T20:30:55.8610000-07:00|10FF0001|Sesuga Sapisuga|0001B696|127791|127791|6600|10000|14||84.58|93.27|0.00|2.28|1306|0|0|01|03000000|0|0|| +39|2023-10-06T20:30:55.8610000-07:00|10FF0005|Wuwuchu Wuchu|65253|90055|10000|10000|||84.95|85.98|0.00|1.94| +38|2023-10-06T20:30:55.8610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|6600|10000|14||84.58|93.27|0.00|2.28|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:55.8610000-07:00|A31|Eukrasian Prognosis|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +37|2023-10-06T20:30:55.9060000-07:00|10FF0001|Sesuga Sapisuga|0001B68C|127791|127791|6600|10000|14||84.58|93.27|0.00|2.28|1305|0|0|02|040005B1|0|41E4957C|||||| +37|2023-10-06T20:30:55.9060000-07:00|10FF0003|Gegehi Gehi|0001B696|64074|73085|1900|10000|0||99.13|107.84|0.00|3.04|2307|0|0|01|03000000|0|0|| +24|2023-10-06T20:30:55.9060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|A2C|14E9|128215|128564|10000|10000|||99.70|92.67|0.00|-1.90|10FF0006|Wowobora Gogobora|0|80165|80739|5070|10000|||98.83|98.41|0.00|3.08| +37|2023-10-06T20:30:55.9060000-07:00|40022550|Zeromus|0001B695|68324||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:55.9060000-07:00|40022550|Zeromus|0001B690|55257||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:55.9060000-07:00|10FF0001|Sesuga Sapisuga|0001B690|127791|127791|7000|10000|14||84.58|93.27|0.00|2.28|1300|0|0|0| +22|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0006|Wowobora Gogobora|4|25BA0000|BA0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B69A|0|8| +22|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0002|Suchichi Suchi|4|25820000|820E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|87267|90128|10000|10000|||98.93|98.63|0.00|-2.54|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B69A|1|8| +22|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0008|Kokosaze Lulusaze|4|25960000|960E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|72254|79111|9500|10000|||99.96|98.77|0.00|3.14|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B69A|2|8| +22|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0004|Buhojaqe Zijaqe|200004|3E740000|740E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|69159|80739|4850|10000|||100.48|97.83|0.00|2.46|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B69A|3|8| +22|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0007|Kehabiqo Febiqo|4|26270000|270E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|128215|128564|10000|10000|||99.70|92.67|0.00|-1.90|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B69A|4|8| +22|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0003|Gegehi Gehi|4|25840000|840E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|73085|73085|1900|10000|||99.13|107.84|0.00|3.04|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B69A|5|8| +22|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0001|Sesuga Sapisuga|4|24E90000|E90E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|127791|127791|6600|10000|||84.58|93.27|0.00|2.28|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B69A|6|8| +22|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|5EF6|Holos|10FF0005|Wuwuchu Wuchu|4|25FD0000|FD0E|D250000|F60E|BBB0000|0|0|0|0|0|0|0|0|0|0|64353|90055|10000|10000|||84.95|85.98|0.00|1.94|80165|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B69A|7|8| +38|2023-10-06T20:30:55.9060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|7||99.70|92.67|0.00|-1.90|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:55.9060000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +26|2023-10-06T20:30:55.9060000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:55.9060000-07:00|10FF0002|Suchichi Suchi|005A5A16|87267|90128|10000|10000|10||98.93|98.63|0.00|-2.54|0|0|0|||||||||||||||||||||| +26|2023-10-06T20:30:55.9060000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +26|2023-10-06T20:30:55.9060000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:55.9060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|72254|79111|9500|10000|12||99.96|98.77|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:55.9060000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +26|2023-10-06T20:30:55.9060000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:55.9060000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80165|80739|5070|10000|11||98.83|98.41|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:55.9060000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:55.9060000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:55.9060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|22||84.58|93.27|0.00|2.28|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T20:30:55.9060000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|127791|127791| +26|2023-10-06T20:30:55.9060000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +26|2023-10-06T20:30:55.9060000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:55.9060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69159|80739|4850|10000|19||100.48|97.83|0.00|2.46|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:55.9060000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +26|2023-10-06T20:30:55.9060000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:55.9060000-07:00|10FF0003|Gegehi Gehi|005A5A23|64074|73085|1900|10000|13||99.13|107.84|0.00|3.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T20:30:55.9060000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73085|128564| +26|2023-10-06T20:30:55.9060000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +26|2023-10-06T20:30:55.9060000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73085|80739| +38|2023-10-06T20:30:55.9060000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|65253|90055|10000|10000|10||84.95|85.98|0.00|1.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:55.9060000-07:00|D25|Holosakos|30.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +26|2023-10-06T20:30:55.9060000-07:00|BBB|Holos|20.00|10FF0006|Wowobora Gogobora|10FF0005|Wuwuchu Wuchu|00|90055|80739| +37|2023-10-06T20:30:55.9940000-07:00|40022550|Zeromus|0001B697|49481||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:55.9940000-07:00|40022550|Zeromus|0001B698|43875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:56.0390000-07:00|10FF0003|Gegehi Gehi|0001B68C|71312|73085|1900|10000|13||99.10|107.99|0.00|3.06|2306|0|0|01|0500083C|0|41570A41|| +261|2023-10-06T20:30:55.6400000-07:00|Change|10FF0001||||||||| +261|2023-10-06T20:30:55.6400000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T20:30:56.0390000-07:00|10FF0008|Kokosaze Lulusaze|73045|79111|9700|10000|||99.96|98.77|0.00|3.14| +21|2023-10-06T20:30:56.0390000-07:00|10FF0002|Suchichi Suchi|07|attack|40022550|Zeromus|720003|B4D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43875|40478540|10000|10000|||100.00|80.10|0.00|0.00|87267|90128|10000|10000|||99.17|98.78|0.00|-1.88|0001B69B|0|1| +39|2023-10-06T20:30:56.1290000-07:00|10FF0004|Buhojaqe Zijaqe|69966|80739|5050|10000|||100.48|97.83|0.00|2.46| +21|2023-10-06T20:30:56.1290000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022550|Zeromus|710003|10900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43875|40478540|10000|10000|||100.00|80.10|0.00|0.00|128564|128564|10000|10000|||98.32|92.84|0.00|-1.61|0001B69C|0|1| +21|2023-10-06T20:30:56.1290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022550|Zeromus|710003|66D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43875|40478540|10000|10000|||100.00|80.10|0.00|0.00|127791|127791|7000|10000|||85.13|93.40|0.00|1.34|0001B69D|0|1| +31|2023-10-06T20:30:56.1290000-07:00|10FF0001||||| +261|2023-10-06T20:30:55.6400000-07:00|Change|10FF0008||||||||| +37|2023-10-06T20:30:56.1730000-07:00|10FF0005|Wuwuchu Wuchu|0001B68C|72391|90055|10000|10000|10||84.95|85.98|0.00|1.94|2707|0|0|01|0900083C|0|4154E14B|| +21|2023-10-06T20:30:56.1730000-07:00|10FF0008|Kokosaze Lulusaze|1D02|Ruin IV|40022550|Zeromus|756003|89CF0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|43875|40478540|10000|10000|||100.00|80.10|0.00|0.00|73045|79111|9700|10000|||99.96|98.77|0.00|3.14|0001B69E|0|1| +38|2023-10-06T20:30:56.1730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|73045|79111|9300|10000|12||99.96|98.77|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T20:30:56.1730000-07:00|A8D|Further Ruin|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|79111|79111| +37|2023-10-06T20:30:56.2620000-07:00|40022550|Zeromus|0001B699|33438||||||100.00|80.10|0.00|0.00| +04|2023-10-06T20:30:55.8710000-07:00|40022E59|Topaz Titan|00|5A|10FF0008|00||10264|13507|0|75851|0|10000|||102.11|108.52|0.00|-3.13| +261|2023-10-06T20:30:55.8710000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T20:30:55.8710000-07:00|Remove|40022E59| +261|2023-10-06T20:30:55.9820000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T20:30:56.1900000-07:00|Change|10FF0008||| +37|2023-10-06T20:30:56.5720000-07:00|40022550|Zeromus|0001B69B|30545||||||100.00|80.10|0.00|0.00| +37|2023-10-06T20:30:56.5720000-07:00|10FF0006|Wowobora Gogobora|0001B69A|80739|80739|5070|10000|11||98.83|98.41|0.00|3.08|2800|0|0|02|04000D25|0|41EB0416|||||| +37|2023-10-06T20:30:56.6620000-07:00|40022550|Zeromus|0001B69D|28900||||||100.00|80.10|0.00|0.00| +24|2023-10-06T20:30:56.6620000-07:00|10FF0002|Suchichi Suchi|HoT|0|1652|87267|90128|10000|10000|||100.15|98.17|0.00|-2.25|10FF0006|Wowobora Gogobora|0|80739|80739|5070|10000|||98.83|98.41|0.00|3.08| +38|2023-10-06T20:30:56.6620000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|10||100.15|98.17|0.00|-2.25|0|0|0|||||||||||||||||||||| +261|2023-10-06T20:30:56.1900000-07:00|Change|40022DBB||||||||| +37|2023-10-06T20:30:56.7060000-07:00|10FF0002|Suchichi Suchi|0001B69A|90128|90128|10000|10000|10||99.81|97.49|0.00|-2.48|1601|0|0|02|0D25|0|41E9F3B3|||||| +24|2023-10-06T20:30:56.7060000-07:00|10FF0003|Gegehi Gehi|HoT|0|2C2B|71312|73085|1900|10000|||100.09|103.58|0.00|2.92|10FF0006|Wowobora Gogobora|0|80739|80739|5070|10000|||98.83|98.41|0.00|3.08| +22|2023-10-06T20:30:56.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|18920000|500E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|69966|80739|5050|10000|||100.48|97.83|0.00|2.46|69966|80739|5050|10000|||100.48|97.83|0.00|2.46|0001B69F|0|7| +22|2023-10-06T20:30:56.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19F20000|830E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73045|79111|9300|10000|||99.96|98.77|0.00|3.14|69966|80739|5050|10000|||100.48|97.83|0.00|2.46|0001B69F|1|7| +22|2023-10-06T20:30:56.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0002|Suchichi Suchi|200004|27F80000|F30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90128|90128|10000|10000|||99.81|97.49|0.00|-2.48|69966|80739|5050|10000|||100.48|97.83|0.00|2.46|0001B69F|2|7| +22|2023-10-06T20:30:56.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19B60000|230E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80739|80739|5070|10000|||98.83|98.41|0.00|3.08|69966|80739|5050|10000|||100.48|97.83|0.00|2.46|0001B69F|3|7| +22|2023-10-06T20:30:56.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|19D50000|540E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|71312|73085|1900|10000|||100.09|103.58|0.00|2.92|69966|80739|5050|10000|||100.48|97.83|0.00|2.46|0001B69F|4|7| +22|2023-10-06T20:30:56.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|19800000|CC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|128564|128564|10000|10000|||98.14|92.56|0.00|2.99|69966|80739|5050|10000|||100.48|97.83|0.00|2.46|0001B69F|5|7| +22|2023-10-06T20:30:56.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|28080000|C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|127791|127791|7000|10000|||88.70|94.83|0.00|1.12|69966|80739|5050|10000|||100.48|97.83|0.00|2.46|0001B69F|6|7| +38|2023-10-06T20:30:56.7070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128564|128564|10000|10000|15||98.14|92.56|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:56.7070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|128564|80739| +38|2023-10-06T20:30:56.7070000-07:00|10FF0002|Suchichi Suchi|005A5A16|90128|90128|10000|10000|28||99.81|97.49|0.00|-2.48|0|0|0||||||||||||||||||||||||| +26|2023-10-06T20:30:56.7070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0002|Suchichi Suchi|00|90128|80739| +38|2023-10-06T20:30:56.7070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1B|73045|79111|9300|10000|25||99.96|98.77|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:56.7070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|79111|80739| +38|2023-10-06T20:30:56.7070000-07:00|10FF0006|Wowobora Gogobora|005A5A28|80739|80739|5070|10000|25||98.83|98.41|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:56.7070000-07:00|A2C|Kardia|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|80739|80739| +26|2023-10-06T20:30:56.7070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|80739|80739| +38|2023-10-06T20:30:56.7070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|35||88.70|94.83|0.00|1.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:56.7070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|127791|80739| +38|2023-10-06T20:30:56.7070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69966|80739|4050|10000|32||100.48|97.83|0.00|2.46|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T20:30:56.7070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|80739|80739| +38|2023-10-06T20:30:56.7070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73085|73085|1900|10000|27||100.09|103.58|0.00|2.92|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T20:30:56.7070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73085|80739| +37|2023-10-06T20:30:56.7950000-07:00|40022550|Zeromus|0001B69C|24660||||||100.00|80.10|0.00|0.00| +21|2023-10-06T20:30:56.7950000-07:00|10FF0006|Wowobora Gogobora|5EFC|Toxikon II|40022550|Zeromus|750003|36750000|1B|5EFC8000|0|0|0|0|0|0|0|0|0|0|0|0|28900|40478540|10000|10000|||100.00|80.10|0.00|0.00|80739|80739|5070|10000|||98.83|98.41|0.00|3.08|0001B6A0|0|1| +37|2023-10-06T20:30:56.8400000-07:00|10FF0008|Kokosaze Lulusaze|0001B69A|79111|79111|9300|10000|25||99.96|98.77|0.00|3.14|1B02|0|0|02|02000D25|0|41E8E144|||||| +21|2023-10-06T20:30:56.8400000-07:00|10FF0008|Kokosaze Lulusaze|07|attack|40022550|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24660|40478540|10000|10000|||100.00|80.10|0.00|0.00|73045|79111|9300|10000|||99.96|98.77|0.00|3.14|0001B6A1|0|1| +39|2023-10-06T20:30:56.8850000-07:00|10FF0003|Gegehi Gehi|73085|73085|2100|10000|||100.24|103.00|0.00|2.91| +24|2023-10-06T20:30:56.8850000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2616|127791|127791|7000|10000|||89.30|95.12|0.00|1.12|10FF0004|Buhojaqe Zijaqe|0|69966|80739|4050|10000|||100.48|97.83|0.00|2.46| +24|2023-10-06T20:30:56.8850000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1FD4|69966|80739|4050|10000|||100.48|97.83|0.00|2.46|10FF0004|Buhojaqe Zijaqe|0|69966|80739|4050|10000|||100.48|97.83|0.00|2.46| +38|2023-10-06T20:30:56.8850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127791|127791|7000|10000|35||89.30|95.12|0.00|1.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T20:30:56.8850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|78114|80739|4050|10000|32||100.48|97.83|0.00|2.46|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:56.4750000-07:00|Change|10FF0001||||||||| +37|2023-10-06T20:30:56.9730000-07:00|40022550|Zeromus|0001B69E|0|40478540|0|10000|0||100.00|80.10|0.00|0.00|0|0|0|04|0|0|0|||||||||||||| +37|2023-10-06T20:30:56.9730000-07:00|10FF0004|Buhojaqe Zijaqe|0001B69A|80739|80739|4050|10000|32||100.48|97.83|0.00|2.46|1C03|0|0|02|04000D25|0|41E7CED5|||||| +24|2023-10-06T20:30:56.9740000-07:00|10FF0005|Wuwuchu Wuchu|HoT|0|28F6|72391|90055|10000|10000|||84.95|85.98|0.00|1.94|10FF0006|Wowobora Gogobora|0|80739|80739|5070|10000|||98.83|98.41|0.00|3.08| +38|2023-10-06T20:30:56.9740000-07:00|40022550|Zeromus|005A5A00|0|40478540|0|10000|0||100.00|80.10|0.00|0.00|0|0|0| +30|2023-10-06T20:30:56.9740000-07:00|A9F|Chaotic Spring|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +30|2023-10-06T20:30:56.9740000-07:00|A38|Eukrasian Dosis III|0.00|10FF0006|Wowobora Gogobora|40022550|Zeromus|00|40478540|80739| +30|2023-10-06T20:30:56.9740000-07:00|4AB|Feint|0.00|10FF0002|Suchichi Suchi|40022550|Zeromus|00|40478540|90128| +30|2023-10-06T20:30:56.9740000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022550|Zeromus|00|40478540|80739| +30|2023-10-06T20:30:56.9740000-07:00|A1A|Death's Design|0.00|10FF0005|Wuwuchu Wuchu|40022550|Zeromus|0A|40478540|90055| +30|2023-10-06T20:30:56.9740000-07:00|4B3|Addle|0.00|10FF0008|Kokosaze Lulusaze|40022550|Zeromus|00|40478540|79111| +30|2023-10-06T20:30:56.9740000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40022550|Zeromus|00|40478540|128564| +30|2023-10-06T20:30:56.9740000-07:00|808|Unknown_808|0.00|40022550|Zeromus|40022550|Zeromus|286|40478540|40478540| +38|2023-10-06T20:30:56.9740000-07:00|10FF0005|Wuwuchu Wuchu|005A5A27|82877|90055|10000|10000|10||84.95|85.98|0.00|1.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T20:30:56.4750000-07:00|Change|40022550||| +261|2023-10-06T20:30:56.5750000-07:00|Change|10FF0001||||||| +261|2023-10-06T20:30:56.5750000-07:00|Change|10FF0003||||||||||| +23|2023-10-06T20:30:57.0180000-07:00|40022569|Zeromus|8B72|Roar|Interrupted| +23|2023-10-06T20:30:57.0180000-07:00|4002256A|Zeromus|8B71|Roar|Interrupted| +23|2023-10-06T20:30:57.0180000-07:00|40022568|Zeromus|8B73|Primal Roar|Interrupted| +261|2023-10-06T20:30:56.5750000-07:00|Change|4002256A||||||||||||| +261|2023-10-06T20:30:56.5750000-07:00|Change|40022568||||||||||||| +261|2023-10-06T20:30:56.5750000-07:00|Change|40022569||||||||||||| +41|2023-10-06T20:30:57.0240000-07:00|80034E7C|4D1|02|A05D|02| +261|2023-10-06T20:30:56.5750000-07:00|Change|40022535||| +41|2023-10-06T20:30:57.0240000-07:00|80034E7C|1082|00|00|00| +33|2023-10-06T20:30:57.0270000-07:00|80034E7C|40000003|00|00|00|00| +01|2023-10-06T21:09:40.3300000-07:00|491|The Abyssal Fracture (Extreme)| +02|2023-10-06T21:09:40.3300000-07:00|10FF0001|Sesuga Sapisuga| +03|2023-10-06T21:09:40.3300000-07:00|10FF0009|Zewo Negiwo|18|5A|0000|63|Sargatanas|0|0|73717|73717|10000|10000|||100.32|114.29|0.00|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|40022460|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022461|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022462|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022463|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022464|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022465|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022466|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022467|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022468|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022469|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022470|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022472|Zeromus|00|5A|0000|00||12586|16557|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022473|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022474|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022475|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022476|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022477|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022478|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022479|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022480|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022481|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022482|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022483|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022484|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022485|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022486|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022487|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022488|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022489|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022490|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|40022491|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||101.83|116.57|0.20|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|10FF0001|Sesuga Sapisuga|13|5A|0000|28|Jenova|0|0|122739|122739|10000|10000|||99.88|114.95|0.00|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|10FF0008|Kokosaze Lulusaze|1F|5A|0000|63|Sargatanas|0|0|85794|85794|10000|10000|||100.13|115.10|0.00|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|10FF000A|Dukaro Nezikaro|1E|5A|0000|63|Sargatanas|0|0|75824|75824|10000|10000|||99.83|114.98|0.00|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|10FF0003|Gegehi Gehi|23|5A|0000|39|Siren|0|0|70169|70169|10000|10000|||99.85|115.75|0.00|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|10FF0004|Buhojaqe Zijaqe|1C|5A|0000|3F|Gilgamesh|0|0|77532|77532|10000|10000|||100.46|115.20|0.00|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|10FF0006|Wowobora Gogobora|1B|5A|0000|4F|Cactuar|0|0|77799|77799|10000|10000|||100.07|115.89|0.00|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|10FF0007|Kehabiqo Febiqo|15|5A|0000|4D|Ultros|0|0|123477|123477|10000|10000|||99.17|115.10|0.00|-3.14| +03|2023-10-06T21:09:40.3300000-07:00|4002246D|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002246F|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002246A|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002245F|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002245C|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002245E|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002246C|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002245D|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002245B|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002246B|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002246E|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002247B|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002248E|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002248F|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002247D|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002248C|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002248B|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002247C|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002248A|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002247F|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002247A|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002247E|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:09:40.3300000-07:00|4002248D|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +11|2023-10-06T21:09:40.3300000-07:00|8|10FF0008|10FF000A|10FF0003|10FF0004|10FF0006|10FF0007|10FF0009|10FF0001| +40|2023-10-06T21:09:40.3300000-07:00|894|???|The Abyssal Fracture|| +12|2023-10-06T21:09:41.6170000-07:00|19|3472|389|3999|247|412|390|3472|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +21|2023-10-06T21:09:43.0140000-07:00|40022491|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|200004|22190000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|75824|79906|10000|10000|||99.83|114.98|0.00|-3.14|73956|77430|10000|10000|||101.82|116.56|0.00|-2.24|0001916B|0|1| +37|2023-10-06T21:09:43.8140000-07:00|10FF000A|Dukaro Nezikaro|0001916B|79906||||||99.83|114.98|0.00|-3.14| +20|2023-10-06T21:09:44.6140000-07:00|10FF0004|Buhojaqe Zijaqe|433F|Summon Eos|10FF0004|Buhojaqe Zijaqe|1.444|100.46|115.20|0.00|-3.14| +39|2023-10-06T21:09:44.7030000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.13|115.10|0.00|-3.14| +39|2023-10-06T21:09:44.7480000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||99.83|114.98|0.00|-3.14| +39|2023-10-06T21:09:44.7930000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.85|115.75|0.00|-3.14| +39|2023-10-06T21:09:44.8820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||100.46|115.20|0.00|-3.14| +39|2023-10-06T21:09:44.9260000-07:00|40022491|Ruby Carbuncle|77430|77430|10000|10000|||101.82|116.56|0.00|-2.24| +39|2023-10-06T21:09:44.9710000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.17|115.10|0.00|-3.14| +39|2023-10-06T21:09:44.9710000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.07|115.89|0.00|-3.14| +39|2023-10-06T21:09:45.0150000-07:00|10FF0009|Zewo Negiwo|77702|77702|10000|10000|||100.32|114.29|0.00|-3.14| +39|2023-10-06T21:09:45.0600000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.88|114.95|0.00|-3.14| +261|2023-10-06T21:09:44.9940000-07:00|Change|10FF0007||||| +21|2023-10-06T21:09:45.5490000-07:00|10FF0004|Buhojaqe Zijaqe|433F|Summon Eos|10FF0004|Buhojaqe Zijaqe|3E|9D8000|1B|433F8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|10000|10000|||100.46|115.20|0.00|-3.14|81541|81541|10000|10000|||100.46|115.20|0.00|-3.14|0001916C|0|1| +38|2023-10-06T21:09:45.5940000-07:00|400224F2||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:09:45.5940000-07:00|400224F2||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:09:45.7020000-07:00|Add|400224F2||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:09:45.7020000-07:00|400224F2|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||100.46|113.46|0.00|0.00| +261|2023-10-06T21:09:45.7020000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:09:46.1560000-07:00|Change|400224F2||| +261|2023-10-06T21:09:46.3660000-07:00|Change|40022491||||||||| +34|2023-10-06T21:09:46.6210000-07:00|400224F2|Ruby Carbuncle|400224F2|Ruby Carbuncle|01| +261|2023-10-06T21:09:46.5500000-07:00|Change|10FF0001||||| +261|2023-10-06T21:09:46.8490000-07:00|Change|10FF0009||||||| +261|2023-10-06T21:09:47.1870000-07:00|Change|400224F2||| +261|2023-10-06T21:09:47.3740000-07:00|Change|40022491||| +39|2023-10-06T21:09:47.7330000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.13|115.10|0.00|-3.14| +39|2023-10-06T21:09:47.7770000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||98.39|114.21|0.00|3.14| +39|2023-10-06T21:09:47.8210000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.85|115.75|0.00|-3.14| +39|2023-10-06T21:09:47.9110000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||100.42|114.70|0.00|-3.11| +39|2023-10-06T21:09:48.0000000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.17|115.10|0.00|-3.14| +39|2023-10-06T21:09:48.0000000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.07|115.89|0.00|-3.14| +39|2023-10-06T21:09:48.0890000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.88|114.95|0.00|-3.14| +28|2023-10-06T21:09:48.6220000-07:00|Add|0|10FF0001|Sesuga Sapisuga|88.83|114.80|0.00| +28|2023-10-06T21:09:48.6220000-07:00|Add|1|10FF0001|Sesuga Sapisuga|91.60|114.67|0.00| +28|2023-10-06T21:09:48.6220000-07:00|Add|2|10FF0001|Sesuga Sapisuga|94.15|114.82|0.00| +28|2023-10-06T21:09:48.6220000-07:00|Add|3|10FF0001|Sesuga Sapisuga|96.43|115.05|0.00| +28|2023-10-06T21:09:48.6220000-07:00|Add|4|10FF0001|Sesuga Sapisuga|98.68|110.95|0.00| +28|2023-10-06T21:09:48.6220000-07:00|Add|5|10FF0001|Sesuga Sapisuga|101.75|110.99|0.00| +28|2023-10-06T21:09:48.6220000-07:00|Add|6|10FF0001|Sesuga Sapisuga|102.09|114.92|0.00| +28|2023-10-06T21:09:48.6220000-07:00|Add|7|10FF0001|Sesuga Sapisuga|98.75|114.87|0.00| +20|2023-10-06T21:09:49.3340000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|1.485|100.07|115.89|0.00|-3.14| +261|2023-10-06T21:09:49.0080000-07:00|Change|10FF0006||||||||||||||| +04|2023-10-06T21:09:49.2340000-07:00|40022491|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||101.82|116.56|0.00|-2.24| +261|2023-10-06T21:09:49.2340000-07:00|Remove|40022491| +21|2023-10-06T21:09:50.3130000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|3E|9D8000|1B|64C68000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.07|115.89|0.00|-3.14|81809|81809|10000|10000|||100.07|115.89|0.00|-3.14|0001916D|0|1| +38|2023-10-06T21:09:50.3580000-07:00|40022543||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:09:50.3580000-07:00|40022543||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +33|2023-10-06T21:09:50.4460000-07:00|80034E7C|4000000C|00|00|00|00| +33|2023-10-06T21:09:50.4460000-07:00|80034E7C|40000001|E10|00|00|00| +261|2023-10-06T21:09:50.0650000-07:00|Add|40022543||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:09:50.1790000-07:00|40022543|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.07|114.14|0.00|0.00| +261|2023-10-06T21:09:50.1790000-07:00|Change|40022456||| +00|2023-10-06T21:09:50.0000000-07:00|0839||The Abyssal Fracture (Extreme) has begun.| +33|2023-10-06T21:09:50.4910000-07:00|80034E7C|80000004|E0F|00|00|00| +39|2023-10-06T21:09:50.7130000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.13|115.10|0.00|-3.14| +39|2023-10-06T21:09:50.7580000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||98.46|113.98|0.00|2.15| +39|2023-10-06T21:09:50.8030000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.85|115.75|0.00|-3.14| +39|2023-10-06T21:09:50.8920000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||100.19|113.86|0.00|1.52| +261|2023-10-06T21:09:50.5700000-07:00|Change|40022543||| +39|2023-10-06T21:09:50.9810000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.14|113.07|0.00|3.13| +39|2023-10-06T21:09:50.9810000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.07|115.89|0.00|3.14| +39|2023-10-06T21:09:51.0700000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||102.22|112.42|0.00|-3.12| +261|2023-10-06T21:09:50.7710000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:09:50.8820000-07:00|Change|10FF0006||||||||||||||||||| +34|2023-10-06T21:09:51.3830000-07:00|40022543|Carbuncle|40022543|Carbuncle|01| +39|2023-10-06T21:09:51.5610000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.46|113.46|0.00|0.00| +261|2023-10-06T21:09:51.5970000-07:00|Change|40022543||| +00|2023-10-06T21:09:52.0000000-07:00|0839||One or more party members have yet to complete this duty. A bonus of 50 Allagan tomestones of causality will be awarded upon completion.| +39|2023-10-06T21:09:53.6990000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.10|115.10|0.00|-2.85| +39|2023-10-06T21:09:53.7440000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||98.44|111.65|0.00|2.68| +39|2023-10-06T21:09:53.7880000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||102.13|115.53|0.00|3.01| +39|2023-10-06T21:09:53.8770000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.71|115.07|0.00|1.78| +39|2023-10-06T21:09:53.9660000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.77|111.38|0.00|-3.07| +39|2023-10-06T21:09:53.9660000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.06|115.86|0.00|-3.01| +39|2023-10-06T21:09:54.0550000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:09:54.5890000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.84|109.87|0.00|-3.13| +39|2023-10-06T21:09:56.3290000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.07|114.14|0.00|0.00| +39|2023-10-06T21:09:56.7310000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.32|115.59|0.00|1.57| +39|2023-10-06T21:09:56.7760000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||98.44|111.65|0.00|2.68| +39|2023-10-06T21:09:56.8200000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||101.73|115.83|0.00|-2.69| +39|2023-10-06T21:09:56.9100000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.71|115.07|0.00|1.78| +39|2023-10-06T21:09:56.9990000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.77|111.38|0.00|-3.07| +39|2023-10-06T21:09:56.9990000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.65|114.93|0.00|-1.40| +39|2023-10-06T21:09:57.0880000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:09:57.5790000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|-3.08| +261|2023-10-06T21:09:57.3120000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T21:09:59.3180000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.90|113.74|0.00|1.55| +39|2023-10-06T21:09:59.7210000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:09:59.7650000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||98.44|111.65|0.00|2.68| +39|2023-10-06T21:09:59.8100000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||101.58|115.54|0.00|-2.93| +39|2023-10-06T21:09:59.8990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.34|115.16|0.00|-1.35| +39|2023-10-06T21:09:59.9880000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.77|111.38|0.00|-3.07| +39|2023-10-06T21:09:59.9880000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.29|114.59|0.00|-0.49| +39|2023-10-06T21:10:00.0860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:00.5680000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|-3.08| +39|2023-10-06T21:10:02.3470000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.60|115.47|0.00|-0.47| +39|2023-10-06T21:10:02.7030000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:10:02.7480000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||98.44|111.65|0.00|2.68| +39|2023-10-06T21:10:02.7930000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||98.65|115.47|0.00|3.09| +39|2023-10-06T21:10:02.8830000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.43|115.25|0.00|0.84| +39|2023-10-06T21:10:02.9730000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.77|111.38|0.00|-3.07| +39|2023-10-06T21:10:02.9730000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||98.65|115.31|0.00|-0.86| +39|2023-10-06T21:10:03.0620000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:03.5540000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|-3.08| +39|2023-10-06T21:10:05.3400000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.60|115.47|0.00|-0.47| +39|2023-10-06T21:10:05.6980000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:10:05.7420000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||95.61|111.99|0.00|-1.96| +39|2023-10-06T21:10:05.8310000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.02|115.59|0.00|2.81| +39|2023-10-06T21:10:05.8770000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.43|115.25|0.00|0.84| +39|2023-10-06T21:10:05.9650000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.76|114.52|0.00|-2.84| +39|2023-10-06T21:10:05.9650000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||98.65|115.31|0.00|-0.86| +39|2023-10-06T21:10:06.0560000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:06.5910000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|-3.08| +39|2023-10-06T21:10:08.3330000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.60|115.47|0.00|-0.47| +39|2023-10-06T21:10:08.7340000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:10:08.7790000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.74|114.73|0.00|3.05| +39|2023-10-06T21:10:08.8240000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.02|115.59|0.00|2.81| +39|2023-10-06T21:10:08.9120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.43|115.25|0.00|0.84| +39|2023-10-06T21:10:09.0020000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.76|114.52|0.00|-2.84| +39|2023-10-06T21:10:09.0020000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||98.65|115.31|0.00|-0.86| +39|2023-10-06T21:10:09.0910000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:09.5830000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|-3.08| +261|2023-10-06T21:10:10.0600000-07:00|Change|10FF000A||||||||||||| +39|2023-10-06T21:10:11.3200000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.60|115.47|0.00|-0.47| +21|2023-10-06T21:10:11.5440000-07:00|10FF0009|Zewo Negiwo|20FDE04|item_fde04|10FF0009|Zewo Negiwo|6800000E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77702|77702|10000|10000|||102.43|115.80|0.00|-3.03|77702|77702|10000|10000|||102.43|115.80|0.00|-3.03|0001916E|0|1| +39|2023-10-06T21:10:11.7230000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:10:11.7670000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.74|114.73|0.00|3.05| +39|2023-10-06T21:10:11.8120000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.67|114.97|-0.01|-0.02| +39|2023-10-06T21:10:11.9000000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.43|115.25|0.00|0.84| +39|2023-10-06T21:10:11.9890000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.12|111.92|0.00|3.03| +39|2023-10-06T21:10:11.9890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||98.65|115.31|1.70|-0.86| +39|2023-10-06T21:10:12.0790000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +37|2023-10-06T21:10:12.4350000-07:00|10FF0009|Zewo Negiwo|0001916E|77702|81177|10000|10000|0||102.43|115.80|0.00|-3.03|1800|0|0|01|01000030|2968|45160000|| +26|2023-10-06T21:10:12.4350000-07:00|30|Well Fed|2400.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|2968|77702|77702| +38|2023-10-06T21:10:12.4350000-07:00|10FF0009|Zewo Negiwo|005A5A18|77702|81177|10000|10000|0||102.43|115.80|0.00|-3.03|0|0|0||||||| +39|2023-10-06T21:10:12.5690000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|-3.08| +21|2023-10-06T21:10:13.1930000-07:00|400224F2|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|4|15760000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|77702|81177|10000|10000|||102.43|115.80|0.00|-3.03|77430|77430|10000|10000|||100.39|102.65|0.00|2.18|0001916F|0|1| +37|2023-10-06T21:10:13.9950000-07:00|10FF0009|Zewo Negiwo|0001916F|81177||||||102.43|115.80|0.00|-3.03| +39|2023-10-06T21:10:14.3520000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.60|115.47|0.00|-0.47| +39|2023-10-06T21:10:14.7080000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|1.79|-3.14| +39|2023-10-06T21:10:14.7530000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||97.80|111.74|0.00|-3.09| +39|2023-10-06T21:10:14.7980000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||98.71|115.12|0.00|-1.74| +39|2023-10-06T21:10:14.8870000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.43|115.25|0.00|0.84| +39|2023-10-06T21:10:14.9770000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.34|111.92|0.00|3.03| +39|2023-10-06T21:10:14.9770000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||98.65|115.31|0.00|-0.86| +39|2023-10-06T21:10:15.0670000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:15.5580000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:16.3250000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T21:10:17.3440000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.60|115.47|0.00|-0.47| +39|2023-10-06T21:10:17.7000000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:10:17.7450000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||97.80|111.74|0.00|-3.09| +39|2023-10-06T21:10:17.7900000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.08|115.34|0.00|3.00| +39|2023-10-06T21:10:17.8800000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.43|115.25|0.00|0.84| +39|2023-10-06T21:10:17.9700000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.34|111.92|0.00|3.03| +39|2023-10-06T21:10:17.9700000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||98.77|115.55|1.70|-1.20| +39|2023-10-06T21:10:18.0580000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:18.5920000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:18.3650000-07:00|Change|10FF0007||||| +39|2023-10-06T21:10:20.3290000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.60|115.47|0.00|-0.47| +39|2023-10-06T21:10:20.7300000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:10:20.7750000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||97.80|111.74|0.00|-3.09| +39|2023-10-06T21:10:20.8190000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.08|115.34|0.00|3.00| +39|2023-10-06T21:10:20.9080000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.43|115.25|0.00|0.84| +39|2023-10-06T21:10:20.9980000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.34|111.92|0.00|3.03| +39|2023-10-06T21:10:20.9980000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||98.77|115.56|0.00|-1.22| +39|2023-10-06T21:10:21.0860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:21.5750000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +39|2023-10-06T21:10:23.3140000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.60|115.47|0.00|-0.47| +39|2023-10-06T21:10:23.7120000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:10:23.7570000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||97.80|111.74|0.00|-3.09| +39|2023-10-06T21:10:23.8020000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.21|115.36|0.00|2.98| +39|2023-10-06T21:10:23.8910000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.43|115.25|0.00|0.84| +39|2023-10-06T21:10:23.9810000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.34|111.92|0.00|3.03| +39|2023-10-06T21:10:23.9810000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.27|115.47|0.00|0.66| +39|2023-10-06T21:10:24.0700000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:24.5600000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +39|2023-10-06T21:10:26.3430000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||100.02|116.14|0.00|-0.69| +39|2023-10-06T21:10:26.7000000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.19|111.16|0.00|-3.14| +39|2023-10-06T21:10:26.7450000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||97.80|111.74|0.00|-3.09| +39|2023-10-06T21:10:26.7900000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||101.61|115.77|0.00|2.98| +39|2023-10-06T21:10:26.8790000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||102.25|115.25|0.00|-1.26| +39|2023-10-06T21:10:26.9680000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.34|111.92|0.00|3.03| +39|2023-10-06T21:10:26.9680000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||98.89|115.13|0.00|2.06| +39|2023-10-06T21:10:27.0580000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.93|111.51|0.00|-3.12| +39|2023-10-06T21:10:27.5920000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:27.7170000-07:00|Change|10FF0009||||||||||||| +39|2023-10-06T21:10:29.3310000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||99.84|116.16|0.00|-0.81| +39|2023-10-06T21:10:29.7320000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.82|112.18|0.00|-1.24| +39|2023-10-06T21:10:29.7760000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||97.80|111.74|0.00|-3.09| +39|2023-10-06T21:10:29.8200000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||101.61|115.77|0.00|2.98| +39|2023-10-06T21:10:29.9100000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||101.18|115.39|0.00|-1.38| +39|2023-10-06T21:10:29.9980000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||89.22|114.38|0.00|-3.05| +39|2023-10-06T21:10:29.9980000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.73|114.89|0.00|-1.55| +39|2023-10-06T21:10:30.0870000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||93.99|111.86|0.00|-3.10| +39|2023-10-06T21:10:30.5780000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +39|2023-10-06T21:10:32.3200000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||95.96|116.17|0.00|-2.07| +39|2023-10-06T21:10:32.7210000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.65|117.05|0.00|-0.42| +39|2023-10-06T21:10:32.7660000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.53|114.32|0.00|-1.21| +39|2023-10-06T21:10:32.8100000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||95.37|116.39|0.00|2.28| +39|2023-10-06T21:10:32.9010000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.64|115.10|0.00|-1.39| +39|2023-10-06T21:10:32.9880000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.91|114.40|0.00|-3.08| +39|2023-10-06T21:10:32.9880000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.44|114.95|0.00|-1.47| +39|2023-10-06T21:10:33.0770000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||92.53|112.72|0.00|-3.10| +39|2023-10-06T21:10:33.5670000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:33.2030000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:10:34.2250000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:10:35.3520000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||95.96|116.17|0.00|-2.07| +39|2023-10-06T21:10:35.7070000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:10:35.7530000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:10:35.7960000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:35.8850000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.64|115.10|0.00|-1.39| +39|2023-10-06T21:10:35.9730000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.91|114.40|0.00|-3.08| +39|2023-10-06T21:10:35.9730000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.44|115.04|0.00|-0.15| +39|2023-10-06T21:10:36.0610000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||91.68|114.78|0.00|0.00| +39|2023-10-06T21:10:36.5510000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +39|2023-10-06T21:10:38.3560000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||95.95|116.19|0.00|-2.02| +39|2023-10-06T21:10:38.7320000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:10:38.7760000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:10:38.8210000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:38.9090000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.54|115.22|0.00|-1.21| +39|2023-10-06T21:10:38.9980000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.91|114.40|0.00|-3.08| +39|2023-10-06T21:10:38.9980000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:10:39.0870000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||91.68|114.96|0.00|0.00| +39|2023-10-06T21:10:39.5780000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +39|2023-10-06T21:10:41.3570000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||95.90|116.26|0.00|-1.89| +39|2023-10-06T21:10:41.7130000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:10:41.7570000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:10:41.8030000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:41.8920000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.57|115.25|0.00|2.33| +39|2023-10-06T21:10:41.9810000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.91|114.40|0.00|-3.08| +39|2023-10-06T21:10:41.9810000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:10:42.0700000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||91.68|114.96|0.00|0.00| +39|2023-10-06T21:10:42.5600000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:43.2990000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:10:44.3380000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||95.90|116.26|0.00|-1.89| +39|2023-10-06T21:10:44.6950000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|1.78|-3.13| +39|2023-10-06T21:10:44.7830000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:10:44.8280000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:44.8730000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.57|115.25|0.00|2.33| +39|2023-10-06T21:10:44.9620000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.91|114.40|0.00|-3.08| +39|2023-10-06T21:10:44.9620000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:10:45.0960000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||91.68|114.96|0.00|0.00| +39|2023-10-06T21:10:45.5840000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +28|2023-10-06T21:10:46.2930000-07:00|Delete|0|10FF0001|Sesuga Sapisuga|119.14|107.46|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Add|0|10FF0001|Sesuga Sapisuga|119.14|107.46|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Delete|1|10FF0001|Sesuga Sapisuga|80.62|106.32|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Add|1|10FF0001|Sesuga Sapisuga|80.62|106.32|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Delete|2|10FF0001|Sesuga Sapisuga|80.90|91.80|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Add|2|10FF0001|Sesuga Sapisuga|80.90|91.80|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Delete|3|10FF0001|Sesuga Sapisuga|119.05|93.79|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Add|3|10FF0001|Sesuga Sapisuga|119.05|93.79|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Delete|4|10FF0001|Sesuga Sapisuga|107.21|119.34|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Add|4|10FF0001|Sesuga Sapisuga|107.21|119.34|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Delete|5|10FF0001|Sesuga Sapisuga|93.58|119.37|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Add|5|10FF0001|Sesuga Sapisuga|93.58|119.37|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Delete|6|10FF0001|Sesuga Sapisuga|90.95|81.56|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Add|6|10FF0001|Sesuga Sapisuga|90.95|81.56|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Delete|7|10FF0001|Sesuga Sapisuga|108.88|80.88|0.00| +28|2023-10-06T21:10:46.2930000-07:00|Add|7|10FF0001|Sesuga Sapisuga|108.88|80.88|0.00| +39|2023-10-06T21:10:47.3190000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||95.90|116.26|0.00|-1.89| +39|2023-10-06T21:10:47.7190000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:10:47.7630000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:10:47.8080000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:47.8970000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.57|115.25|0.00|2.33| +39|2023-10-06T21:10:47.9940000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.91|114.40|0.00|-3.08| +39|2023-10-06T21:10:47.9940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:10:48.0750000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||91.68|114.96|0.00|0.00| +39|2023-10-06T21:10:48.5650000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:49.0080000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T21:10:50.3500000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||95.90|116.26|0.00|-1.89| +39|2023-10-06T21:10:50.7080000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:10:50.7520000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:10:50.7970000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:50.8840000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.57|115.25|0.00|2.33| +39|2023-10-06T21:10:50.9740000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||92.87|116.20|1.49|1.42| +39|2023-10-06T21:10:50.9740000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:10:51.0630000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||91.68|114.96|0.00|0.00| +39|2023-10-06T21:10:51.5550000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:52.1800000-07:00|Change|10FF0004||| +20|2023-10-06T21:10:52.7170000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|1.485|94.38|115.04|0.00|-1.60| +261|2023-10-06T21:10:52.2950000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T21:10:53.3410000-07:00|40022543|Carbuncle|77698|77698|10000|10000|||95.90|116.26|0.00|-1.89| +39|2023-10-06T21:10:53.6970000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +21|2023-10-06T21:10:53.6970000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|3E|9D8000|1B|64C68000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60|00019170|0|1| +261|2023-10-06T21:10:53.2200000-07:00|Change|40022543||||||||| +38|2023-10-06T21:10:53.7420000-07:00|400226AF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +39|2023-10-06T21:10:53.7420000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +38|2023-10-06T21:10:53.7420000-07:00|400226AF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:10:53.3140000-07:00|Add|400226AF||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:10:53.3140000-07:00|400226AF|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||92.65|114.99|0.00|1.54| +39|2023-10-06T21:10:53.8290000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:53.8740000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.57|115.25|0.00|2.33| +39|2023-10-06T21:10:53.9630000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:10:53.9630000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:10:54.0530000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||92.01|114.98|0.00|3.10| +261|2023-10-06T21:10:53.8600000-07:00|Change|400226AF||| +39|2023-10-06T21:10:54.5880000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:54.1840000-07:00|Change|10FF0003||||| +34|2023-10-06T21:10:54.7670000-07:00|400226AF|Carbuncle|400226AF|Carbuncle|01| +261|2023-10-06T21:10:54.8440000-07:00|Change|400226AF||| +261|2023-10-06T21:10:55.1290000-07:00|Change|10FF0003||||| +261|2023-10-06T21:10:55.2200000-07:00|Change|40022543||| +21|2023-10-06T21:10:56.2800000-07:00|10FF0001|Sesuga Sapisuga|20FDE00|item_fde00|10FF0001|Sesuga Sapisuga|6400010E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||95.02|114.66|0.00|3.10|129071|129071|10000|10000|||95.02|114.66|0.00|3.10|00019171|0|1| +39|2023-10-06T21:10:56.7260000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:10:56.7700000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:10:56.8150000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:56.9040000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.57|115.25|0.00|2.33| +39|2023-10-06T21:10:56.9940000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:10:56.9940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:10:57.0820000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||94.46|114.63|0.00|3.10| +37|2023-10-06T21:10:57.1720000-07:00|10FF0001|Sesuga Sapisuga|00019171|129071|129071|10000|10000|0||94.48|114.64|0.00|3.10|1300|0|0|01|30|2964|450F7000|| +26|2023-10-06T21:10:57.1720000-07:00|30|Well Fed|2295.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|2964|129071|129071| +38|2023-10-06T21:10:57.1720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||94.48|114.64|0.00|3.10|0|0|0||||||| +261|2023-10-06T21:10:56.6350000-07:00|Change|10FF0006||||||||||||| +04|2023-10-06T21:10:56.7490000-07:00|40022543|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||95.90|116.26|0.00|-1.89| +261|2023-10-06T21:10:56.7490000-07:00|Remove|40022543| +39|2023-10-06T21:10:57.5730000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:10:57.2000000-07:00|Change|10FF0003||||| +261|2023-10-06T21:10:58.5060000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:10:59.7130000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:10:59.7130000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||92.65|114.99|0.00|1.54| +39|2023-10-06T21:10:59.7580000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:10:59.8020000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||96.54|115.22|0.00|-3.08| +39|2023-10-06T21:10:59.8920000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.57|115.25|0.00|2.33| +39|2023-10-06T21:10:59.9820000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:10:59.9820000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:11:00.0710000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||97.56|114.75|0.00|3.10| +39|2023-10-06T21:11:00.5620000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:11:01.0680000-07:00|Change|10FF0008||||||||||| +39|2023-10-06T21:11:02.7000000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:11:02.7000000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||92.65|114.99|0.00|1.54| +39|2023-10-06T21:11:02.7450000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:02.7880000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||97.58|115.25|0.00|3.12| +39|2023-10-06T21:11:02.8780000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||96.57|115.25|0.00|1.85| +39|2023-10-06T21:11:02.9670000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:11:02.9670000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:11:03.0560000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.25|113.99|0.00|3.11| +261|2023-10-06T21:11:02.5040000-07:00|Change|10FF0008||||| +39|2023-10-06T21:11:03.5910000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +21|2023-10-06T21:11:05.6360000-07:00|10FF0003|Gegehi Gehi|20FDE00|item_fde00|10FF0003|Gegehi Gehi|6400010E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|10000|10000|||97.58|115.25|0.00|3.12|73814|73814|10000|10000|||97.58|115.25|0.00|3.12|00019172|0|1| +39|2023-10-06T21:11:05.7260000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:11:05.7260000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||92.65|114.99|0.00|1.54| +39|2023-10-06T21:11:05.7710000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:05.8150000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||97.58|115.25|0.00|3.12| +39|2023-10-06T21:11:05.9040000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.71|114.83|-0.01|1.79| +39|2023-10-06T21:11:05.9940000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:11:05.9940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.38|115.04|0.00|-1.60| +39|2023-10-06T21:11:06.0830000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.88|112.25|0.00|3.11| +37|2023-10-06T21:11:06.5290000-07:00|10FF0003|Gegehi Gehi|00019172|73814|73814|10000|10000|0||97.58|115.25|0.00|3.12|2300|0|0|01|30|2964|45157000|| +26|2023-10-06T21:11:06.5290000-07:00|30|Well Fed|2391.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|2964|73814|73814| +38|2023-10-06T21:11:06.5290000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||97.58|115.25|0.00|3.12|0|0|0|||| +39|2023-10-06T21:11:06.5730000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +39|2023-10-06T21:11:08.7100000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:11:08.7100000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||92.65|114.99|0.00|1.54| +39|2023-10-06T21:11:08.7550000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:08.7990000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||97.58|115.25|0.00|3.12| +39|2023-10-06T21:11:08.8880000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.72|114.82|0.00|1.68| +39|2023-10-06T21:11:08.9790000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:11:08.9790000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.61|114.95|0.00|2.54| +39|2023-10-06T21:11:09.0680000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.88|112.25|0.00|3.11| +39|2023-10-06T21:11:09.5570000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +39|2023-10-06T21:11:11.7370000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.57|114.64|0.00|-3.13| +39|2023-10-06T21:11:11.7370000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||93.49|114.03|0.00|2.40| +39|2023-10-06T21:11:11.7810000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:11.8260000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||97.58|115.25|0.00|3.12| +39|2023-10-06T21:11:11.9150000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.71|114.94|0.00|-1.64| +39|2023-10-06T21:11:12.0050000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:11:12.0050000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||95.29|114.76|0.00|1.96| +39|2023-10-06T21:11:12.0940000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||98.54|111.94|0.00|3.11| +21|2023-10-06T21:11:12.4040000-07:00|10FF0006|Wowobora Gogobora|20FDE00|item_fde00|10FF0006|Wowobora Gogobora|6400020E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||95.29|114.76|0.00|1.96|81809|81809|10000|10000|||95.29|114.76|0.00|1.96|00019173|0|1| +39|2023-10-06T21:11:12.5820000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +37|2023-10-06T21:11:13.2950000-07:00|10FF0006|Wowobora Gogobora|00019173|81809|81809|10000|10000|0||95.29|114.76|0.00|1.96|1B00|0|0|01|02000030|2964|44E10000|| +26|2023-10-06T21:11:13.2950000-07:00|30|Well Fed|1800.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|2964|81809|81809| +38|2023-10-06T21:11:13.2950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||95.29|114.76|0.00|1.96|0|0|0|||||||||| +38|2023-10-06T21:11:13.2950000-07:00|400226AF|Carbuncle|005A5A00|77698|77698|10000|10000|0||93.49|114.03|0.00|2.40|0|0|0|||| +26|2023-10-06T21:11:13.2950000-07:00|30|Well Fed|1799.96|10FF0006|Wowobora Gogobora|400226AF|Carbuncle|2964|77698|81809| +39|2023-10-06T21:11:14.7220000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.48|115.07|1.75|1.56| +39|2023-10-06T21:11:14.7220000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||93.75|113.99|0.00|2.34| +39|2023-10-06T21:11:14.7660000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:14.8100000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||97.58|115.25|0.00|3.12| +39|2023-10-06T21:11:14.8990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.50|114.79|0.00|-2.43| +39|2023-10-06T21:11:14.9890000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:11:14.9890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.36|112.55|0.00|2.65| +39|2023-10-06T21:11:15.0770000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||97.33|111.90|0.00|3.11| +39|2023-10-06T21:11:15.5670000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +261|2023-10-06T21:11:15.3290000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:11:17.7040000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||104.65|114.58|0.42|1.65| +39|2023-10-06T21:11:17.7040000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.62|110.67|0.00|2.74| +39|2023-10-06T21:11:17.7480000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:17.7930000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||100.11|115.04|0.00|-3.09| +39|2023-10-06T21:11:17.8820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.50|114.79|0.00|-2.43| +39|2023-10-06T21:11:17.9710000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.37|116.29|0.00|-2.41| +39|2023-10-06T21:11:17.9710000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.99|109.39|0.00|-3.11| +39|2023-10-06T21:11:18.0600000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.92|106.55|0.00|3.11| +39|2023-10-06T21:11:18.5940000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.39|102.65|0.00|0.15| +39|2023-10-06T21:11:20.7330000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||109.46|111.94|0.00|-1.77| +39|2023-10-06T21:11:20.7330000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.62|110.67|0.00|2.74| +39|2023-10-06T21:11:20.7770000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:20.8210000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.87|114.82|0.00|-3.12| +39|2023-10-06T21:11:20.9120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.50|114.79|0.00|-2.43| +39|2023-10-06T21:11:21.0000000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||100.11|116.57|0.00|3.10| +39|2023-10-06T21:11:21.0000000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.99|109.39|0.00|-3.11| +39|2023-10-06T21:11:21.0890000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.02|103.49|0.00|3.12| +39|2023-10-06T21:11:21.5790000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.08|103.41|0.00|-0.40| +39|2023-10-06T21:11:23.7160000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||107.62|111.35|1.51|-1.56| +39|2023-10-06T21:11:23.7160000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.62|110.67|0.00|2.74| +39|2023-10-06T21:11:23.7600000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:23.8050000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.87|114.82|0.00|-3.12| +39|2023-10-06T21:11:23.8940000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.50|114.79|0.00|-2.43| +39|2023-10-06T21:11:23.9830000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||100.08|106.58|0.00|3.09| +39|2023-10-06T21:11:23.9830000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.99|109.39|0.00|-3.11| +39|2023-10-06T21:11:24.0730000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.02|103.49|0.00|3.12| +38|2023-10-06T21:11:24.4310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.08|106.58|0.00|3.09|0|0|0||||||||||||| +38|2023-10-06T21:11:24.4310000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|10000|10000|0||94.19|115.43|0.00|-3.13|0|0|0||||||| +38|2023-10-06T21:11:24.4310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||107.62|111.35|0.00|-1.56|0|0|0||||||| +38|2023-10-06T21:11:24.4310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.99|109.39|0.00|-3.11|0|0|0|||||||||| +38|2023-10-06T21:11:24.4310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.02|103.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:24.4310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.50|114.79|0.00|-2.55|0|0|0|||||||||| +38|2023-10-06T21:11:24.4310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||99.87|114.82|0.00|-3.12|0|0|0|||| +38|2023-10-06T21:11:24.4310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79906|79906|10000|10000|0||89.71|114.49|0.00|3.12|0|0|0||||||| +39|2023-10-06T21:11:24.5610000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.08|103.41|0.00|-0.40| +38|2023-10-06T21:11:25.2750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.08|106.58|0.00|3.09|0|0|0||||||||||||| +38|2023-10-06T21:11:25.2750000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|10000|10000|0||94.19|115.43|0.00|-3.13|0|0|0||||||| +38|2023-10-06T21:11:25.2750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||107.62|111.35|0.00|-1.56|0|0|0||||||| +38|2023-10-06T21:11:25.2750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.99|109.39|0.00|-3.11|0|0|0|||||||||| +38|2023-10-06T21:11:25.2750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.02|103.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:25.2750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.65|113.15|0.00|3.08|0|0|0|||||||||| +38|2023-10-06T21:11:25.2750000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||99.87|114.82|0.00|-3.12|0|0|0|||| +38|2023-10-06T21:11:25.2750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79906|79906|10000|10000|0||89.71|114.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:25.6300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.06|105.98|0.00|-3.14|0|0|0||||||||||||| +38|2023-10-06T21:11:25.6300000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|10000|10000|0||94.19|115.43|0.00|-3.13|0|0|0||||||| +38|2023-10-06T21:11:25.6300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||107.62|111.35|0.00|-1.56|0|0|0||||||| +38|2023-10-06T21:11:25.6300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.99|109.39|0.00|-3.11|0|0|0|||||||||| +38|2023-10-06T21:11:25.6300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.02|103.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:25.6300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.66|112.86|0.00|3.07|0|0|0|||||||||| +38|2023-10-06T21:11:25.6300000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||99.87|114.82|0.00|-3.12|0|0|0|||| +38|2023-10-06T21:11:25.6300000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79906|79906|10000|10000|0||89.71|114.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:25.8960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.02|104.73|0.00|-3.13|0|0|0||||||||||||| +38|2023-10-06T21:11:25.8960000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|10000|10000|0||94.19|115.43|0.00|-3.13|0|0|0||||||| +38|2023-10-06T21:11:25.8960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||107.62|111.35|0.00|-1.56|0|0|0||||||| +38|2023-10-06T21:11:25.8960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.99|109.39|0.00|-3.11|0|0|0|||||||||| +38|2023-10-06T21:11:25.8960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.02|103.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:25.8960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.66|112.84|0.00|3.07|0|0|0|||||||||| +38|2023-10-06T21:11:25.8960000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||99.87|114.82|0.00|-3.12|0|0|0|||| +38|2023-10-06T21:11:25.8960000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79906|79906|10000|10000|0||89.71|114.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:26.0290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.02|104.56|0.00|-3.14|0|0|0||||||||||||| +38|2023-10-06T21:11:26.0290000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|10000|10000|0||94.19|115.43|0.00|-3.13|0|0|0||||||| +38|2023-10-06T21:11:26.0290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||107.62|111.35|0.00|-1.56|0|0|0||||||| +38|2023-10-06T21:11:26.0290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.99|109.39|0.00|-3.11|0|0|0|||||||||| +38|2023-10-06T21:11:26.0290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.02|103.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:26.0290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.66|112.84|0.00|3.07|0|0|0|||||||||| +38|2023-10-06T21:11:26.0290000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||99.87|114.82|0.00|-3.12|0|0|0|||| +38|2023-10-06T21:11:26.0290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79906|79906|10000|10000|0||89.71|114.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:26.2520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.02|104.19|0.00|3.13|0|0|0||||||||||||| +38|2023-10-06T21:11:26.2520000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|10000|10000|0||94.19|115.43|0.00|-3.13|0|0|0||||||| +38|2023-10-06T21:11:26.2530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||107.62|111.35|0.00|-1.56|0|0|0||||||| +38|2023-10-06T21:11:26.2530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.99|109.39|0.00|-3.11|0|0|0|||||||||| +38|2023-10-06T21:11:26.2530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.02|103.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:26.2530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.66|112.84|0.00|3.07|0|0|0|||||||||| +38|2023-10-06T21:11:26.2530000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||99.87|114.82|0.00|-3.12|0|0|0|||| +38|2023-10-06T21:11:26.2530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79906|79906|10000|10000|0||89.71|114.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:26.2950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.02|104.19|0.00|3.13|0|0|0||||||||||||| +38|2023-10-06T21:11:26.2950000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|10000|10000|0||94.19|115.43|0.00|-3.13|0|0|0||||||| +38|2023-10-06T21:11:26.2950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||107.62|111.35|0.00|-1.56|0|0|0||||||| +38|2023-10-06T21:11:26.2950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.99|109.39|0.00|-3.11|0|0|0|||||||||| +38|2023-10-06T21:11:26.2950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.02|103.49|0.00|3.12|0|0|0||||||| +38|2023-10-06T21:11:26.2950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.66|112.84|0.00|3.07|0|0|0|||||||||| +38|2023-10-06T21:11:26.2950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||99.87|114.82|0.00|-3.12|0|0|0|||| +38|2023-10-06T21:11:26.2950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79906|79906|10000|10000|0||89.71|114.49|0.00|3.12|0|0|0||||||| +00|2023-10-06T21:11:25.0000000-07:00|0039||Ready check complete. Ready: 8/8 Not Ready: 0/8| +39|2023-10-06T21:11:26.6940000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||107.62|111.35|0.00|-1.56| +39|2023-10-06T21:11:26.7400000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.62|110.67|0.00|2.74| +39|2023-10-06T21:11:26.7840000-07:00|10FF000A|Dukaro Nezikaro|79906|79906|10000|10000|||89.71|114.49|0.00|3.12| +39|2023-10-06T21:11:26.8290000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.87|114.82|0.00|-3.12| +39|2023-10-06T21:11:26.8730000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.66|112.84|0.00|3.07| +39|2023-10-06T21:11:26.9620000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.99|103.47|-0.01|-3.13| +39|2023-10-06T21:11:26.9620000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.99|109.39|0.00|-3.11| +39|2023-10-06T21:11:27.0970000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.02|103.49|0.00|3.12| +39|2023-10-06T21:11:27.5870000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.08|103.41|0.00|-0.40| +21|2023-10-06T21:11:27.5870000-07:00|10FF000A|Dukaro Nezikaro|20FD7B8|item_fd7b8|10FF000A|Dukaro Nezikaro|4E00000E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79906|79906|10000|10000|||89.71|114.49|0.00|3.12|79906|79906|10000|10000|||89.71|114.49|0.00|3.12|00019174|0|1| +37|2023-10-06T21:11:28.4770000-07:00|10FF000A|Dukaro Nezikaro|00019174|79906|82773|10000|10000|0||89.71|114.49|0.00|3.12|1E00|0|0|01|02000030|294E|45160000|| +26|2023-10-06T21:11:28.4770000-07:00|30|Well Fed|2400.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|294E|79906|79906| +38|2023-10-06T21:11:28.4770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79906|82773|10000|10000|0||89.71|114.49|0.00|3.12|0|0|0|||||||||| +261|2023-10-06T21:11:28.0590000-07:00|Change|10FF0008||||||||||||| +21|2023-10-06T21:11:28.7880000-07:00|400224F2|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|200004|22550000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|79906|82773|10000|10000|||89.71|114.49|0.00|3.12|77430|77430|10000|10000|||100.08|103.41|0.00|-0.40|00019175|0|1| +37|2023-10-06T21:11:29.5860000-07:00|10FF000A|Dukaro Nezikaro|00019175|82773||||||94.87|112.35|0.00|2.76| +39|2023-10-06T21:11:29.7200000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.27|110.09|0.00|-2.46| +39|2023-10-06T21:11:29.7200000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.62|110.67|0.00|2.74| +39|2023-10-06T21:11:29.7650000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||96.25|111.77|0.00|2.76| +39|2023-10-06T21:11:29.8100000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.84|109.27|0.00|3.09| +39|2023-10-06T21:11:29.8980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.84|109.76|0.00|3.07| +39|2023-10-06T21:11:29.9880000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.99|103.47|0.00|-3.13| +39|2023-10-06T21:11:29.9880000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.99|109.39|0.00|-3.11| +39|2023-10-06T21:11:30.0770000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.02|103.49|0.00|3.12| +39|2023-10-06T21:11:30.5680000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.08|103.41|0.00|-0.37| +22|2023-10-06T21:11:31.2830000-07:00|10FF0008|Kokosaze Lulusaze|1D85|Peloton|10FF0008|Kokosaze Lulusaze|1400000E|4AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|00019176|0|8| +22|2023-10-06T21:11:31.2830000-07:00|10FF0008|Kokosaze Lulusaze|1D85|Peloton|10FF000A|Dukaro Nezikaro|1400000E|4AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.25|107.07|0.00|3.14|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|00019176|1|8| +22|2023-10-06T21:11:31.2830000-07:00|10FF0008|Kokosaze Lulusaze|1D85|Peloton|10FF0003|Gegehi Gehi|1400000E|4AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|10000|10000|||99.84|109.27|0.00|3.09|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|00019176|2|8| +22|2023-10-06T21:11:31.2830000-07:00|10FF0008|Kokosaze Lulusaze|1D85|Peloton|10FF0006|Wowobora Gogobora|1400000E|4AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||99.99|109.39|0.00|-3.11|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|00019176|3|8| +22|2023-10-06T21:11:31.2830000-07:00|10FF0008|Kokosaze Lulusaze|1D85|Peloton|10FF0004|Buhojaqe Zijaqe|1400000E|4AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|10000|10000|||99.84|109.76|0.00|3.07|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|00019176|4|8| +22|2023-10-06T21:11:31.2830000-07:00|10FF0008|Kokosaze Lulusaze|1D85|Peloton|10FF0007|Kehabiqo Febiqo|1400000E|4AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.99|103.47|0.00|-3.13|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|00019176|5|8| +22|2023-10-06T21:11:31.2830000-07:00|10FF0008|Kokosaze Lulusaze|1D85|Peloton|10FF0001|Sesuga Sapisuga|1400000E|4AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.02|103.49|0.00|3.12|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|00019176|6|8| +22|2023-10-06T21:11:31.2830000-07:00|10FF0008|Kokosaze Lulusaze|1D85|Peloton|10FF0009|Zewo Negiwo|1400000E|4AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|10000|10000|||98.07|115.13|0.00|3.10|90216|90216|10000|10000|||99.69|107.35|0.00|3.06|00019176|7|8| +37|2023-10-06T21:11:31.9050000-07:00|10FF0008|Kokosaze Lulusaze|00019176|90216|90216|10000|10000|0||99.69|107.35|0.00|3.06|1F00|0|0|01|020004AF|14|41F00000|| +26|2023-10-06T21:11:31.9050000-07:00|4AF|Peloton|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|14|90216|90216| +37|2023-10-06T21:11:32.0400000-07:00|10FF000A|Dukaro Nezikaro|00019176|82773|82773|10000|10000|0||98.18|106.34|0.00|-3.07|1E01|0|0|01|030004AF|14|41F00000|| +26|2023-10-06T21:11:32.0400000-07:00|4AF|Peloton|30.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|14|82773|90216| +37|2023-10-06T21:11:32.1730000-07:00|10FF0003|Gegehi Gehi|00019176|73814|73814|10000|10000|0||99.84|109.27|0.00|3.09|2302|0|0|01|010004AF|14|41F00000|| +26|2023-10-06T21:11:32.1730000-07:00|4AF|Peloton|30.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|14|73814|90216| +37|2023-10-06T21:11:32.3070000-07:00|10FF0006|Wowobora Gogobora|00019176|81809|81809|10000|10000|0||99.99|109.39|0.00|-3.11|1B03|0|0|01|04AF|14|41F00000|| +26|2023-10-06T21:11:32.3070000-07:00|4AF|Peloton|30.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|14|81809|90216| +37|2023-10-06T21:11:32.4400000-07:00|10FF0004|Buhojaqe Zijaqe|00019176|81541|81541|10000|10000|0||99.84|109.76|0.00|3.07|1C04|0|0|01|030004AF|14|41F00000|| +26|2023-10-06T21:11:32.4400000-07:00|4AF|Peloton|30.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|14|81541|90216| +37|2023-10-06T21:11:32.5740000-07:00|10FF0007|Kehabiqo Febiqo|00019176|129844|129844|10000|10000|0||99.99|103.47|0.00|-3.13|1505|0|0|01|010004AF|14|41F00000|| +26|2023-10-06T21:11:32.5740000-07:00|4AF|Peloton|30.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|14|129844|90216| +37|2023-10-06T21:11:32.7080000-07:00|10FF0001|Sesuga Sapisuga|00019176|129071|129071|10000|10000|0||100.02|103.49|0.00|3.12|1306|0|0|01|020004AF|14|41F00000|| +26|2023-10-06T21:11:32.7080000-07:00|4AF|Peloton|30.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|14|129071|90216| +39|2023-10-06T21:11:32.7080000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.03|106.95|0.00|2.53| +39|2023-10-06T21:11:32.7080000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.62|110.67|0.00|2.74| +39|2023-10-06T21:11:32.7530000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07| +21|2023-10-06T21:11:32.7530000-07:00|10FF0004|Buhojaqe Zijaqe|20FDE04|item_fde04|10FF0004|Buhojaqe Zijaqe|6800010E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|10000|10000|||99.84|109.76|0.00|3.07|81541|81541|10000|10000|||99.84|109.76|0.00|3.07|00019177|0|1| +261|2023-10-06T21:11:32.2940000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:11:32.7970000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.84|109.27|0.00|3.09| +37|2023-10-06T21:11:32.8420000-07:00|10FF0009|Zewo Negiwo|00019176|81177|81177|10000|10000|0||98.07|115.13|0.00|3.10|1807|0|0|01|020004AF|14|41F00000|| +26|2023-10-06T21:11:32.8420000-07:00|4AF|Peloton|30.00|10FF0008|Kokosaze Lulusaze|10FF0009|Zewo Negiwo|14|81177|90216| +39|2023-10-06T21:11:32.8860000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.84|109.76|0.00|3.07| +39|2023-10-06T21:11:32.9750000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.99|103.47|0.00|-3.13| +39|2023-10-06T21:11:32.9750000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.99|109.39|0.00|-3.11| +39|2023-10-06T21:11:33.0650000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.02|103.49|0.00|3.12| +39|2023-10-06T21:11:33.5570000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.08|103.41|0.00|-0.37| +37|2023-10-06T21:11:33.6460000-07:00|10FF0004|Buhojaqe Zijaqe|00019177|81541|81541|10000|10000|0||99.84|109.76|0.00|3.07|1C00|0|0|01|02000030|2968|45119000|| +26|2023-10-06T21:11:33.6460000-07:00|30|Well Fed|2329.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|2968|81541|81541| +38|2023-10-06T21:11:33.6460000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.84|109.76|0.00|3.07|0|0|0||||||||||||| +38|2023-10-06T21:11:33.6460000-07:00|400224F2|Ruby Carbuncle|005A5A00|77430|77430|10000|10000|0||100.08|103.41|0.00|-0.37|0|0|0|||| +26|2023-10-06T21:11:33.6460000-07:00|30|Well Fed|2328.96|10FF0004|Buhojaqe Zijaqe|400224F2|Ruby Carbuncle|2968|77430|81541| +00|2023-10-06T21:11:34.0000000-07:00|0038||end| +00|2023-10-06T21:11:34.0000000-07:00|0039||Battle commencing in 10 seconds!| +39|2023-10-06T21:11:35.6950000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13| +39|2023-10-06T21:11:35.7400000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.71|108.64|0.00|3.10| +39|2023-10-06T21:11:35.7850000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07| +39|2023-10-06T21:11:35.8290000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.84|109.27|0.00|3.09| +39|2023-10-06T21:11:35.8740000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.81|107.10|0.00|3.09| +39|2023-10-06T21:11:35.9630000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.99|103.47|0.00|-3.13| +39|2023-10-06T21:11:35.9630000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.41|108.31|0.00|0.32| +39|2023-10-06T21:11:36.0530000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.02|103.49|0.00|3.12| +38|2023-10-06T21:11:36.4550000-07:00|400226AF|Carbuncle|005A5A00|77698|77698|10000|10000|0||98.71|108.60|0.00|3.10|0|0|0||||||| +26|2023-10-06T21:11:36.4550000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|400226AF|Carbuncle|01|77698|81809| +21|2023-10-06T21:11:36.4550000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.24|107.67|0.00|2.73|81809|81809|10000|10000|||100.24|107.67|0.00|2.73|00019178|0|1| +39|2023-10-06T21:11:36.5880000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.08|103.41|0.00|-0.37| +21|2023-10-06T21:11:36.7220000-07:00|400226AF|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.21|107.56|0.00|3.12|77698|77698|10000|10000|||98.71|108.60|0.00|3.02|00019179|0|1| +38|2023-10-06T21:11:36.7220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|19||100.21|107.56|0.00|3.12|0|0|0|||||||||| +26|2023-10-06T21:11:36.7220000-07:00|A8E|Radiant Aegis|29.96|400226AF|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +261|2023-10-06T21:11:36.3250000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:11:37.5250000-07:00|10FF0006|Wowobora Gogobora|00019179|81809|81809|10000|10000|19||100.21|107.56|0.00|3.12|1B00|0|0|01|01000A8E|0|41E99372|| +38|2023-10-06T21:11:37.5250000-07:00|400226AF|Carbuncle|005A5A00|77698|77698|10000|10000|0||98.71|108.60|0.00|2.16|0|0|0|||| +30|2023-10-06T21:11:37.5250000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|400226AF|Carbuncle|01|77698|81809| +39|2023-10-06T21:11:38.7280000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13| +39|2023-10-06T21:11:38.7280000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.71|108.60|0.00|2.16| +39|2023-10-06T21:11:38.7720000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07| +39|2023-10-06T21:11:38.8170000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.84|109.27|0.00|3.09| +39|2023-10-06T21:11:38.9070000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.96|106.46|0.00|2.89| +261|2023-10-06T21:11:38.3660000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:11:38.9950000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.99|103.47|0.00|-3.13| +39|2023-10-06T21:11:38.9950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.21|107.56|0.00|3.12| +39|2023-10-06T21:11:39.0840000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.02|103.49|0.00|3.12| +39|2023-10-06T21:11:39.5760000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.08|103.41|0.00|-0.37| +00|2023-10-06T21:11:39.0000000-07:00|0039||Battle commencing in 5 seconds!| +261|2023-10-06T21:11:39.4070000-07:00|Change|10FF0009||||| +20|2023-10-06T21:11:40.2440000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|4.860|99.84|109.27|0.00|3.09| +261|2023-10-06T21:11:39.6960000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T21:11:40.6010000-07:00|10FF000A|Dukaro Nezikaro|8D7|Jin|10FF000A|Dukaro Nezikaro|300000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|0001917A|0|1| +38|2023-10-06T21:11:40.6010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T21:11:40.6010000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|82773|82773| +21|2023-10-06T21:11:41.0900000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|B00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|0001917B|0|1| +38|2023-10-06T21:11:41.0900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T21:11:41.0900000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0B|82773|82773| +21|2023-10-06T21:11:41.4920000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|0001917C|0|1| +38|2023-10-06T21:11:41.4920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.27|106.37|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T21:11:41.4920000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T21:11:41.5810000-07:00|10FF000A|Dukaro Nezikaro|4975|Ten|10FF000A|Dukaro Nezikaro|1B00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|0001917D|0|1| +38|2023-10-06T21:11:41.5810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T21:11:41.5810000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|1B|82773|82773| +39|2023-10-06T21:11:41.7150000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13| +39|2023-10-06T21:11:41.7150000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.71|108.60|0.00|2.16| +39|2023-10-06T21:11:41.7590000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07| +39|2023-10-06T21:11:41.8040000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.84|109.27|0.00|3.14| +39|2023-10-06T21:11:41.8930000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.96|106.22|0.00|3.11| +39|2023-10-06T21:11:41.9830000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.99|103.47|0.00|-3.13| +39|2023-10-06T21:11:41.9830000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.21|107.56|0.00|3.12| +261|2023-10-06T21:11:41.5020000-07:00|Change|10FF0009||||| +39|2023-10-06T21:11:42.0720000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.00|103.16|0.00|-3.11| +37|2023-10-06T21:11:42.1170000-07:00|10FF0008|Kokosaze Lulusaze|0001917C|90216|90216|10000|10000|0||100.27|106.37|0.00|-3.13|1F00|0|0|01|03000353|0|40A00000|| +21|2023-10-06T21:11:42.1170000-07:00|10FF000A|Dukaro Nezikaro|8DD|Huton|10FF000A|Dukaro Nezikaro|3E|C98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|0001917E|0|1| +38|2023-10-06T21:11:42.1170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.27|106.37|0.00|-3.13|0|0|0||||||||||||| +38|2023-10-06T21:11:42.1170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|0|0|0||||||||||||| +30|2023-10-06T21:11:42.1170000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|1B|82773|82773| +39|2023-10-06T21:11:42.5610000-07:00|400224F2|Ruby Carbuncle|77430|77430|10000|10000|||100.08|103.41|0.00|-0.37| +21|2023-10-06T21:11:42.8290000-07:00|10FF000A|Dukaro Nezikaro|8C5|Hide|10FF000A|Dukaro Nezikaro|3200000E|2660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|0001917F|0|1| +20|2023-10-06T21:11:43.1420000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|100.21|107.56|0.00|3.12| +261|2023-10-06T21:11:42.6590000-07:00|Change|10FF0006||||||||||||||||||| +20|2023-10-06T21:11:43.4080000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.96|106.22|0.00|3.11| +261|2023-10-06T21:11:42.8890000-07:00|Change|10FF0004||||||||||||||||||| +20|2023-10-06T21:11:43.4530000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|98.10|112.38|0.00|3.13| +21|2023-10-06T21:11:43.8970000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|00019180|0|1| +38|2023-10-06T21:11:43.8970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T21:11:43.8970000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:11:43.9850000-07:00|10FF000A|Dukaro Nezikaro|0001917F|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|1E00|0|0|01|05000266|32|0|| +26|2023-10-06T21:11:43.9850000-07:00|266|Hidden|9999.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|32|82773|82773| +21|2023-10-06T21:11:44.1200000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|754003|41E80000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.21|107.56|0.00|-3.13|00019181|0|1| +260|2023-10-06T21:11:43.7430000-07:00|1|0| +21|2023-10-06T21:11:44.3430000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|14620000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.99|103.47|0.00|-3.13|00019182|0|1| +21|2023-10-06T21:11:44.3430000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|10B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.99|103.47|0.00|-3.13|00019183|0|1| +21|2023-10-06T21:11:44.3430000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|31570000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|10000|10000|||99.96|106.22|0.00|3.14|00019184|0|1| +21|2023-10-06T21:11:44.3870000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|51B80000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|10000|10000|||98.10|112.38|0.00|3.08|00019185|0|1| +21|2023-10-06T21:11:44.3870000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|00019186|0|1| +38|2023-10-06T21:11:44.3870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T21:11:44.3870000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +30|2023-10-06T21:11:44.3870000-07:00|266|Hidden|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|32|82773|82773| +21|2023-10-06T21:11:44.5210000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|726003|C4460000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|00019187|0|1| +21|2023-10-06T21:11:44.5210000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|124E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|00019188|0|1| +38|2023-10-06T21:11:44.5210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.27|106.37|0.00|-3.13|0|0|0|||||||||| +30|2023-10-06T21:11:44.5210000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T21:11:44.5660000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|358B0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|10000|10000|||99.84|109.27|0.00|3.14|00019189|0|1| +38|2023-10-06T21:11:44.5660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:11:44.5660000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:11:44.5660000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:11:44.6980000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13| +39|2023-10-06T21:11:44.6980000-07:00|400226AF|Carbuncle|77698|77698|10000|10000|||98.71|108.60|0.00|2.16| +00|2023-10-06T21:11:44.0000000-07:00|0039||Engage!| +39|2023-10-06T21:11:44.7430000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07| +261|2023-10-06T21:11:44.2950000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T21:11:44.8320000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||99.84|109.27|0.00|3.14| +37|2023-10-06T21:11:44.8800000-07:00|40022472|Zeromus|00019182|40473322||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:44.8800000-07:00|10FF0007|Kehabiqo Febiqo|00019182|129844|129844|10000|10000|0||99.99|103.47|0.00|-3.14|1500|0|0|01|01000000|0|0|| +37|2023-10-06T21:11:44.8800000-07:00|40022472|Zeromus|00019183|40469042||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:44.8800000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.96|106.21|0.00|3.13| +21|2023-10-06T21:11:44.8800000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3F360000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.99|103.47|0.00|-3.14|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001918A|0|1| +21|2023-10-06T21:11:44.8800000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|20780000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.00|102.95|0.00|-3.14|0001918B|0|1| +21|2023-10-06T21:11:44.8800000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|87B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.00|102.95|0.00|-3.14|0001918C|0|1| +21|2023-10-06T21:11:44.8800000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|0001918D|0|1| +261|2023-10-06T21:11:44.3950000-07:00|Change|40022472||| +261|2023-10-06T21:11:44.3950000-07:00|Change|40022472||| +260|2023-10-06T21:11:44.5020000-07:00|1|1| +36|2023-10-06T21:11:44.8800000-07:00|00DC|3| +38|2023-10-06T21:11:44.8800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.99|103.47|0.00|-3.14|0|0|0||||||||||||| +30|2023-10-06T21:11:44.8800000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|14|129844|90216| +38|2023-10-06T21:11:44.8800000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9600|10000|0||98.10|112.38|0.00|3.08|0|0|0||||||| +30|2023-10-06T21:11:44.8800000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0009|Zewo Negiwo|14|81177|90216| +38|2023-10-06T21:11:44.8800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.27|106.37|0.00|-3.13|0|0|0||||||| +30|2023-10-06T21:11:44.8800000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|14|90216|90216| +38|2023-10-06T21:11:44.8800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|19||100.21|107.54|0.00|-3.14|0|0|0|||||||||| +30|2023-10-06T21:11:44.8800000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|14|81809|90216| +38|2023-10-06T21:11:44.8800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.00|102.95|0.00|-3.14|0|0|0||||||| +30|2023-10-06T21:11:44.8800000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|14|129071|90216| +38|2023-10-06T21:11:44.8800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|0||99.96|106.21|0.00|3.13|0|0|0|||||||||| +30|2023-10-06T21:11:44.8800000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|14|81541|90216| +38|2023-10-06T21:11:44.8800000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|10000|10000|0||99.84|109.27|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:11:44.8800000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|14|73814|90216| +261|2023-10-06T21:11:44.5020000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:11:44.5020000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:11:44.5020000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:11:44.5020000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T21:11:44.5020000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T21:11:44.5020000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:11:44.5020000-07:00|Change|10FF0009||||| +38|2023-10-06T21:11:44.8800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|0|0|0|||||||||||||||| +30|2023-10-06T21:11:44.8800000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|14|82773|90216| +26|2023-10-06T21:11:44.8800000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +31|2023-10-06T21:11:44.8800000-07:00|10FF0001||||| +261|2023-10-06T21:11:44.5020000-07:00|Change|400224F2||||||||| +261|2023-10-06T21:11:44.5020000-07:00|Change|400226AF||||||||| +37|2023-10-06T21:11:44.9220000-07:00|40022472|Zeromus|00019181|40452170||||||100.00|80.10|0.00|0.00| +00|2023-10-06T21:11:44.0000000-07:00|0044|Zeromus|Stand aside, I beseech you.| +39|2023-10-06T21:11:44.9660000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.99|103.47|0.00|-3.14| +39|2023-10-06T21:11:44.9660000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.21|107.54|0.00|-3.14| +39|2023-10-06T21:11:45.0550000-07:00|10FF0009|Zewo Negiwo|81177|81177|9821|10000|||98.10|112.38|0.00|3.08| +39|2023-10-06T21:11:45.0550000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.00|102.95|0.00|-3.14| +37|2023-10-06T21:11:45.1440000-07:00|40022472|Zeromus|00019184|40439539||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:45.1440000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|130E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40452170|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|0001918E|0|1| +261|2023-10-06T21:11:44.7080000-07:00|Change|400224F2||||||| +21|2023-10-06T21:11:45.2330000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.99|103.43|0.00|-3.12|129844|129844|10000|10000|||99.99|103.43|0.00|-3.12|0001918F|0|1| +21|2023-10-06T21:11:45.2330000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|45580000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|40439539|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|10000|10000|||99.84|109.27|0.00|3.14|00019190|0|1| +38|2023-10-06T21:11:45.2330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.99|103.43|0.00|-3.12|0|0|0||||||||||||| +26|2023-10-06T21:11:45.2330000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:11:45.2330000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:11:45.2330000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:11:45.2330000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:11:45.2770000-07:00|40022472|Zeromus|00019188|40434853||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:45.3220000-07:00|40022472|Zeromus|00019189|40421146||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:45.3220000-07:00|10FF0003|Gegehi Gehi|00019189|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|2300|0|0|02|010004D3|0|C1F00000|||||| +38|2023-10-06T21:11:45.3220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|0|0|0|||||||||| +37|2023-10-06T21:11:45.4110000-07:00|40022472|Zeromus|0001918C|40418975||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:45.4110000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|650003|36140000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|40434853|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||98.16|106.22|0.00|-3.07|00019191|0|1| +38|2023-10-06T21:11:45.4110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.16|106.22|0.00|-3.07|0|0|0||||||||||||| +26|2023-10-06T21:11:45.4110000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +30|2023-10-06T21:11:45.4110000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +37|2023-10-06T21:11:45.5010000-07:00|40022472|Zeromus|0001918B|40410663||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:45.6800000-07:00|40022472|Zeromus|00019185|40389743||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:45.6800000-07:00|40022472|Zeromus|00019187|40339497||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:45.6800000-07:00|10FF0007|Kehabiqo Febiqo|0001918A|113662|129844|10000|10000|0||99.90|101.17|0.00|-3.11|1500|0|0|01|01000769|0|C1F00000|| +21|2023-10-06T21:11:45.6800000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40022472|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|40410663|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||99.42|103.03|0.00|-3.02|00019192|0|1| +21|2023-10-06T21:11:45.6800000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|1400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40410663|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||99.42|103.03|0.00|-3.02|00019193|0|1| +38|2023-10-06T21:11:45.7230000-07:00|400227DC||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:11:45.7230000-07:00|400227DC||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:11:45.7680000-07:00|10FF0007|Kehabiqo Febiqo|0001918F|113662|129844|10000|10000|0||99.90|100.85|0.00|-3.11|1500|0|0|01|01000769|0|41F00000|| +21|2023-10-06T21:11:45.7680000-07:00|400224F2|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14E70000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|113662|129844|10000|10000|||99.90|100.85|0.00|-3.11|77430|77430|10000|10000|||100.08|103.41|0.00|-1.42|00019194|0|1| +21|2023-10-06T21:11:45.7680000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40339497|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|00019195|0|1| +38|2023-10-06T21:11:45.7680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113662|129844|10000|10000|0||99.90|100.85|0.00|-3.11|0|0|0||||||||||||| +21|2023-10-06T21:11:45.8590000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|B0D0000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|40339497|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9821|10000|||98.10|112.38|0.00|3.08|00019196|0|1| +261|2023-10-06T21:11:45.4620000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:11:45.4620000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:11:45.4620000-07:00|Change|10FF0009||| +261|2023-10-06T21:11:45.4620000-07:00|Change|400226AF||||||||| +21|2023-10-06T21:11:45.9020000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|40339497|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|10000|10000|||100.09|100.73|0.00|3.13|00019197|0|1| +37|2023-10-06T21:11:45.9470000-07:00|40022472|Zeromus|0001918E|40334619||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:45.9910000-07:00|40022472|Zeromus|00019190|40316867||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:45.9910000-07:00|10FF0003|Gegehi Gehi|00019190|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|2300|0|0|01|010004D3|0|41F00000|| +261|2023-10-06T21:11:45.5600000-07:00|Change|40022472||| +21|2023-10-06T21:11:45.9910000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9700|10000|||99.84|109.27|0.00|3.14|73814|73814|9700|10000|||99.84|109.27|0.00|3.14|00019198|0|1| +261|2023-10-06T21:11:45.5600000-07:00|Add|400227DC||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:11:45.9910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:11:45.9910000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +03|2023-10-06T21:11:45.5600000-07:00|400227DC|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||101.11|103.84|0.00|3.11| +261|2023-10-06T21:11:45.6530000-07:00|Change|400227DC||| +21|2023-10-06T21:11:46.1250000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40316867|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9600|10000|||100.06|99.54|0.00|-3.14|00019199|0|1| +21|2023-10-06T21:11:46.1700000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.34|102.71|0.00|3.09|82773|82773|10000|10000|||98.34|102.71|0.00|3.09|0001919A|0|1| +38|2023-10-06T21:11:46.1700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.34|102.71|0.00|3.09|0|0|0|||||||||||||||| +26|2023-10-06T21:11:46.1700000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:11:46.2130000-07:00|40022472|Zeromus|00019193|40316547||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:11:46.2580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.02|102.30|0.00|3.09|0|0|0|||||||||||||||| +22|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|0001919B|0|8| +22|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|113662|129844|10000|10000|||99.90|99.93|0.00|-3.11|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|0001919B|1|8| +22|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.02|102.30|0.00|3.09|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|0001919B|2|8| +22|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.00|102.90|0.00|-3.14|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|0001919B|3|8| +22|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9600|10000|||100.05|99.21|0.00|-3.13|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|0001919B|4|8| +22|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|0001919B|5|8| +22|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9700|10000|||99.84|109.27|0.00|3.14|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|0001919B|6|8| +22|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0009|Zewo Negiwo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9421|10000|||98.12|112.38|0.00|2.76|81809|81809|9900|10000|||99.35|101.53|0.00|3.09|0001919B|7|8| +38|2023-10-06T21:11:46.3040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113662|129844|10000|10000|0||99.90|99.93|0.00|-3.11|0|0|0|||||||||||||||| +26|2023-10-06T21:11:46.3040000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:11:46.3040000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9421|10000|0||98.12|112.38|0.00|2.76|0|0|0|||||||||| +26|2023-10-06T21:11:46.3040000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|00|81177|81809| +38|2023-10-06T21:11:46.3040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.27|106.37|0.00|-3.13|0|0|0|||||||||| +26|2023-10-06T21:11:46.3040000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:11:46.3040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|19||99.35|101.53|0.00|3.09|0|0|0|||||||||| +26|2023-10-06T21:11:46.3040000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:11:46.3040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.00|102.90|0.00|-3.14|0|0|0|||||||||| +26|2023-10-06T21:11:46.3040000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:11:46.3040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9600|10000|0||100.05|99.21|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T21:11:46.3040000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:11:46.3040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:11:46.3040000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:11:46.3040000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.02|102.30|0.00|3.09|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:46.3040000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|82773|81809| +37|2023-10-06T21:11:46.3930000-07:00|40022472|Zeromus|00019195|40311226||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:46.3930000-07:00|40022472|Zeromus|00019191|40297382||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:46.3930000-07:00|10FF000A|Dukaro Nezikaro|00019191|82773|82773|10000|10000|0||97.81|101.97|0.00|3.09|1E00|0|0|02|030001FB|0|41A00000|||||| +38|2023-10-06T21:11:46.3930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.81|101.97|0.00|3.09|0|0|0||||||||||||||||||| +21|2023-10-06T21:11:46.4380000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DBA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40316547|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.81|101.97|0.00|3.09|0001919C|0|1| +37|2023-10-06T21:11:46.5270000-07:00|40022472|Zeromus|00019197|40297382|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:11:46.5270000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +37|2023-10-06T21:11:46.5720000-07:00|10FF0007|Kehabiqo Febiqo|00019194|119013||||||99.90|99.93|0.00|-3.11| +37|2023-10-06T21:11:46.6610000-07:00|40022472|Zeromus|00019199|40297136||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:46.6610000-07:00|10FF0009|Zewo Negiwo|88|Presence of Mind|10FF0009|Zewo Negiwo|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9421|10000|||98.33|112.19|0.00|1.93|81177|81177|9421|10000|||98.33|112.19|0.00|1.93|0001919D|0|1| +38|2023-10-06T21:11:46.6610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9600|10000|0||100.02|98.67|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:46.6610000-07:00|317|Dissipation|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:11:46.6610000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:11:46.6610000-07:00|10FF0004|Buhojaqe Zijaqe|E03|Dissipation|10FF0004|Buhojaqe Zijaqe|140E|3170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9600|10000|||100.02|98.67|0.00|-3.13|81541|81541|9600|10000|||100.02|98.67|0.00|-3.13|0001919E|0|1| +38|2023-10-06T21:11:46.6610000-07:00|400224F2|Ruby Carbuncle|005A5A00|0|77430|0|10000|0||100.08|103.41|0.00|-3.09|0|0|0|||| +261|2023-10-06T21:11:46.2120000-07:00|Change|400224F2||||| +37|2023-10-06T21:11:46.7500000-07:00|10FF0003|Gegehi Gehi|00019198|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|2300|0|0|01|030004D6|0|41A00000|| +261|2023-10-06T21:11:46.3050000-07:00|Change|400227DC||| +21|2023-10-06T21:11:46.7510000-07:00|10FF0003|Gegehi Gehi|1D89|Swiftcast|10FF0003|Gegehi Gehi|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9700|10000|||99.84|109.27|0.00|3.14|73814|73814|9700|10000|||99.84|109.27|0.00|3.14|0001919F|0|1| +38|2023-10-06T21:11:46.7510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:46.7510000-07:00|A7|Swiftcast|10.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:11:46.7950000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|1F950000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|40297136|40478540|10000|10000|||100.00|80.10|0.00|0.00|119013|129844|10000|10000|||99.90|99.93|0.00|-3.11|000191A0|0|1| +37|2023-10-06T21:11:46.8840000-07:00|10FF0003|Gegehi Gehi|0001919F|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|2300|0|0|01|050000A7|0|41200000|| +38|2023-10-06T21:11:46.8840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||99.84|109.27|0.00|3.14|0|0|0||||||||||||||||||| +261|2023-10-06T21:11:46.4940000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:11:46.9730000-07:00|40022472|Zeromus|0001919C|40293622||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:46.9730000-07:00|10FF000A|Dukaro Nezikaro|0001919C|82773|82773|10000|10000|0||97.89|101.43|0.00|3.09|1E00|0|0|01|040001F1|0|C1700000|| +21|2023-10-06T21:11:47.0180000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18E40000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|40297136|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.09|000191A1|0|1| +21|2023-10-06T21:11:47.0620000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5B150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40297136|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|000191A2|0|1| +37|2023-10-06T21:11:47.1070000-07:00|10FF0006|Wowobora Gogobora|0001919B|81809|81809|9900|10000|19||99.35|101.27|0.00|3.09|1B00|0|0|01|0A8F|0|41E9EF9B|| +38|2023-10-06T21:11:47.1070000-07:00|400227DC|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.11|103.84|0.00|3.11|0|0|0||||||| +26|2023-10-06T21:11:47.1070000-07:00|30|Well Fed|1766.15|10FF0006|Wowobora Gogobora|400227DC|Demi-Bahamut|2964|69928|81809| +26|2023-10-06T21:11:47.1070000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|400227DC|Demi-Bahamut|00|69928|81809| +37|2023-10-06T21:11:47.1530000-07:00|40022472|Zeromus|00019196|40290793|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:11:47.1530000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:11:47.1530000-07:00|10FF000A|Dukaro Nezikaro|0001919A|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|01|040001F1|0|41700000|| +21|2023-10-06T21:11:47.1530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40293622|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.00|102.27|0.00|-3.14|000191A3|0|1| +38|2023-10-06T21:11:47.1530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||| +31|2023-10-06T21:11:47.1530000-07:00|10FF0001||||| +37|2023-10-06T21:11:47.1980000-07:00|10FF0009|Zewo Negiwo|0001919D|81177|81177|9421|10000|0||99.47|110.79|0.00|2.52|1800|0|0|01|0300009D|0|41700000|| +26|2023-10-06T21:11:47.1980000-07:00|9D|Presence of Mind|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:11:47.1980000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40290793|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|000191A4|0|1| +38|2023-10-06T21:11:47.1980000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9421|10000|0||99.47|110.79|0.00|2.52|0|0|0||||||||||||| +37|2023-10-06T21:11:47.2410000-07:00|10FF0007|Kehabiqo Febiqo|0001919B|119013|129844|10000|10000|0||99.90|99.93|0.00|3.14|1501|0|0|01|04000A8F|0|41E8DB20|| +37|2023-10-06T21:11:47.2870000-07:00|10FF0004|Buhojaqe Zijaqe|0001919E|81541|81541|9600|10000|0||100.02|98.59|0.00|-2.36|1C00|0|0|01|04000317|0|41F00000|| +38|2023-10-06T21:11:47.2870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9600|10000|0||100.02|98.59|0.00|-2.36|0|0|0||||||||||||||||||| +37|2023-10-06T21:11:47.3760000-07:00|10FF000A|Dukaro Nezikaro|0001919B|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E02|0|0|01|05000A8F|0|41E7C8B1|| +21|2023-10-06T21:11:47.3770000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1E350000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|40290793|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.00|102.27|0.00|-3.14|000191A5|0|1| +37|2023-10-06T21:11:47.4210000-07:00|40022472|Zeromus|000191A0|40282708||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:47.4210000-07:00|40022472|Zeromus|000191A1|40276336||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:47.5110000-07:00|10FF0001|Sesuga Sapisuga|0001919B|129071|129071|10000|10000|0||100.00|102.27|0.00|-3.14|1303|0|0|01|02000A8F|0|41E6B436|| +37|2023-10-06T21:11:47.6430000-07:00|10FF0004|Buhojaqe Zijaqe|0001919B|81541|81541|9600|10000|0||99.97|98.85|0.00|-0.68|1C04|0|0|01|03000A8F|0|41E5A3D3|| +261|2023-10-06T21:11:47.2690000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:11:47.6890000-07:00|40022472|Zeromus|000191A3|40273420||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:47.6890000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|000191A6|0|1| +21|2023-10-06T21:11:47.6900000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|36900000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|40276336|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9700|10000|||99.81|107.32|0.00|-3.13|000191A7|0|1| +38|2023-10-06T21:11:47.6900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.81|107.32|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:47.6900000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:11:47.6900000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:11:47.2690000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:11:47.2690000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:11:47.3620000-07:00|Change|400226AF||||||||| +39|2023-10-06T21:11:47.7340000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13| +21|2023-10-06T21:11:47.7340000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|716003|16BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40273420|40478540|10000|10000|||100.00|80.10|0.00|0.00|119013|129844|10000|10000|||99.87|99.85|0.00|-3.11|000191A8|0|1| +37|2023-10-06T21:11:47.7780000-07:00|10FF0008|Kokosaze Lulusaze|0001919B|90216|90216|10000|10000|0||100.27|106.37|0.00|-3.13|1F05|0|0|01|02000A8F|0|41E48F58|| +39|2023-10-06T21:11:47.7780000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||97.89|101.43|0.00|3.04| +24|2023-10-06T21:11:47.7780000-07:00|40022472|Zeromus|DoT|0|175D|40273420|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|9421|10000|||100.11|107.55|0.00|-3.13| +38|2023-10-06T21:11:47.7780000-07:00|40022472|Zeromus|005A5A00|40267439|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:11:47.8230000-07:00|10FF0003|Gegehi Gehi|73814|73814|9600|10000|||99.81|106.77|0.00|3.13| +36|2023-10-06T21:11:47.8680000-07:00|01B8|3| +37|2023-10-06T21:11:47.9120000-07:00|10FF0003|Gegehi Gehi|0001919B|73814|73814|9600|10000|0||99.81|106.48|0.00|3.13|2306|0|0|02|020004D2|0|C1F00000|||||| +39|2023-10-06T21:11:47.9120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9800|10000|||99.91|99.11|0.00|-0.59| +21|2023-10-06T21:11:47.9120000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3D9A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|119013|129844|10000|10000|||99.87|99.84|-0.01|-3.11|40267439|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191A9|0|1| +261|2023-10-06T21:11:47.5440000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:11:47.9570000-07:00|40022472|Zeromus|000191A4|40265046||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:47.5440000-07:00|Change|40022472||| +39|2023-10-06T21:11:48.0010000-07:00|10FF0007|Kehabiqo Febiqo|120311|129844|10000|10000|||99.87|99.84|0.00|-3.11| +39|2023-10-06T21:11:48.0010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.46|102.90|0.00|0.14| +261|2023-10-06T21:11:47.5440000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:11:48.0460000-07:00|10FF0009|Zewo Negiwo|0001919B|81177|81177|9421|10000|0||100.11|106.37|0.00|-3.10|1807|0|0|01|02000A8F|0|41E26C86|| +39|2023-10-06T21:11:48.0460000-07:00|10FF0009|Zewo Negiwo|81177|81177|9642|10000|||100.11|106.37|0.00|-3.10| +21|2023-10-06T21:11:48.0460000-07:00|10FF0007|Kehabiqo Febiqo|20FDD6F|item_fdd6f|10FF0007|Kehabiqo Febiqo|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|120311|129844|10000|10000|||99.87|99.84|0.00|-3.11|120311|129844|10000|10000|||99.87|99.84|0.00|-3.11|000191AA|0|1| +39|2023-10-06T21:11:48.0910000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.00|102.11|0.00|-3.14| +37|2023-10-06T21:11:48.1340000-07:00|40022472|Zeromus|000191A5|40257313||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:48.1800000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|4CCF0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|40265046|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.50|103.44|-0.01|0.02|000191AB|0|1| +261|2023-10-06T21:11:47.8760000-07:00|Change|10FF0003||||||| +37|2023-10-06T21:11:48.2240000-07:00|40022472|Zeromus|000191A2|40233996||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:48.2680000-07:00|40022472|Zeromus|000191A8|40228178||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:11:48.2680000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.11|106.37|0.00|-3.10| +20|2023-10-06T21:11:48.2680000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.87|99.29|0.00|-0.52| +37|2023-10-06T21:11:48.4470000-07:00|40022472|Zeromus|000191A7|40214210||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:48.4470000-07:00|10FF0003|Gegehi Gehi|000191A7|73814|73814|9600|10000|0||99.83|105.60|0.00|3.13|2300|0|0|01|020004D2|0|41F00000|| +38|2023-10-06T21:11:48.4470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9600|10000|0||99.83|105.60|0.00|3.13|0|0|0||||||||||||||||||| +261|2023-10-06T21:11:48.1040000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:11:48.5810000-07:00|10FF0001|Sesuga Sapisuga|20FDD6F|item_fdd6f|10FF0001|Sesuga Sapisuga|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.00|101.18|0.00|-3.14|129071|129071|10000|10000|||100.00|101.18|0.00|-3.14|000191AC|0|1| +21|2023-10-06T21:11:48.6250000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DFA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40214210|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191AD|0|1| +261|2023-10-06T21:11:48.3140000-07:00|Change|10FF0009||||||||||||||||||||| +261|2023-10-06T21:11:48.3140000-07:00|Change|400224F2||||| +37|2023-10-06T21:11:48.7150000-07:00|10FF0007|Kehabiqo Febiqo|000191A9|104541||||||99.87|99.84|0.00|-3.11| +37|2023-10-06T21:11:48.8050000-07:00|40022472|Zeromus|000191AB|40194547||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:48.8050000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40214210|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||99.50|103.53|0.00|3.12|000191AE|0|1| +261|2023-10-06T21:11:48.4040000-07:00|Change|400227DC||||||||| +21|2023-10-06T21:11:48.8500000-07:00|400227DC|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|754003|19FD0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|40214210|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.09|103.81|0.00|-3.10|000191AF|0|1| +21|2023-10-06T21:11:48.8940000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31CE0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|40214210|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9642|10000|||100.11|106.37|0.00|-3.14|000191B0|0|1| +37|2023-10-06T21:11:48.9390000-07:00|10FF0007|Kehabiqo Febiqo|000191AA|104541|129844|10000|10000|0||99.87|99.84|0.00|-3.11|1500|0|0|01|05000031|296B|41F00000|| +26|2023-10-06T21:11:48.9390000-07:00|31|Medicated|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|296B|129844|129844| +38|2023-10-06T21:11:48.9390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104541|129844|10000|10000|0||99.87|99.84|0.00|-3.11|0|0|0||||||||||||||||||| +261|2023-10-06T21:11:48.5980000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:11:48.5980000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:11:49.1620000-07:00|40022472|Zeromus|000191AD|40190969||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:49.2050000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4E8E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40194547|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9800|10000|||99.87|99.29|0.00|3.14|000191B1|0|1| +21|2023-10-06T21:11:49.2510000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|307B0000|A3E|340000|A0F|A758000|11B|2D8000|0|0|0|0|0|0|0|0|40190969|40478540|10000|10000|||100.00|80.10|0.00|0.00|104541|129844|10000|10000|||99.87|99.84|0.00|-3.11|000191B2|0|1| +38|2023-10-06T21:11:49.2510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104541|129844|10000|10000|0||99.87|99.84|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:11:49.2510000-07:00|A75|Surging Tempest|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:11:49.2950000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2B050000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|40190969|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191B3|0|1| +37|2023-10-06T21:11:49.3390000-07:00|40022472|Zeromus|000191AE|40190781||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:49.4280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40190781|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.98|98.01|0.00|-3.14|000191B4|0|1| +31|2023-10-06T21:11:49.4280000-07:00|10FF0001||||| +261|2023-10-06T21:11:49.0370000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:11:49.4720000-07:00|10FF0001|Sesuga Sapisuga|000191AC|129071|129071|10000|10000|0||99.98|98.01|0.00|-3.14|1300|0|0|01|03000031|296B|41F00000|| +26|2023-10-06T21:11:49.4720000-07:00|31|Medicated|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|296B|129071|129071| +38|2023-10-06T21:11:49.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104541|129844|10000|10000|0||99.87|99.84|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:11:49.4730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.98|98.01|0.00|-3.14|0|0|0||||||||||||| +12|2023-10-06T21:11:49.1470000-07:00|19|3734|389|3999|247|412|390|3734|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +21|2023-10-06T21:11:49.5620000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|20210000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|40190781|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|000191B5|0|1| +04|2023-10-06T21:11:49.1470000-07:00|400226AF|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||98.50|106.68|0.00|-3.02| +261|2023-10-06T21:11:49.2610000-07:00|Remove|400226AF| +37|2023-10-06T21:11:49.6950000-07:00|40022472|Zeromus|000191B3|40179768||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:49.3590000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:11:49.7410000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9400|10000|||99.87|99.29|0.00|3.14|81541|81541|9400|10000|||99.87|99.29|0.00|3.14|000191B6|0|1| +38|2023-10-06T21:11:49.7410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9400|10000|0||99.87|99.29|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:11:49.7410000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:11:49.8740000-07:00|10FF0004|Buhojaqe Zijaqe|000191B6|81541|81541|9400|10000|0||99.87|99.29|0.00|3.14|1C00|0|0|01|060000A7|0|41200000|| +37|2023-10-06T21:11:49.8740000-07:00|40022472|Zeromus|000191AF|40173115||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:49.8740000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|ECE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40179768|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|000191B7|0|1| +21|2023-10-06T21:11:49.8740000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|2EBE0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|40179768|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191B8|0|1| +38|2023-10-06T21:11:49.8740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:49.8740000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:11:49.8740000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:11:49.8740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9400|10000|0||99.87|99.29|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:11:49.9630000-07:00|40022472|Zeromus|000191B4|40171333||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:49.9630000-07:00|10FF0001|Sesuga Sapisuga|000191B4|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|1300|0|0|02|0400076E|03|C1F00000|||||| +261|2023-10-06T21:11:49.5540000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:11:50.0080000-07:00|40022472|Zeromus|000191B1|40151223||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:49.7810000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:11:50.0520000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40022472|Zeromus|710003|10330000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|40171333|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191B9|0|1| +38|2023-10-06T21:11:50.0520000-07:00|40022472|Zeromus|005A5A00|40151223|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T21:11:50.0520000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +21|2023-10-06T21:11:50.0970000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|554003|48AE0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|40171333|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9600|10000|||100.39|100.05|0.00|3.10|000191BA|0|1| +38|2023-10-06T21:11:50.0970000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9300|10000|0||100.39|100.05|0.00|3.10|0|0|0|||||||||||||||| +30|2023-10-06T21:11:50.0970000-07:00|A7|Swiftcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:11:50.1860000-07:00|40022472|Zeromus|000191B0|40138473|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +20|2023-10-06T21:11:50.1860000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.11|106.37|0.00|-3.14| +21|2023-10-06T21:11:50.2310000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40151223|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||99.87|99.29|0.00|3.14|000191BB|0|1| +37|2023-10-06T21:11:50.3210000-07:00|40022472|Zeromus|000191B5|40130248|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +37|2023-10-06T21:11:50.4550000-07:00|40022472|Zeromus|000191B8|40118282|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +37|2023-10-06T21:11:50.4550000-07:00|10FF0001|Sesuga Sapisuga|000191B8|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|1300|0|0|02|0400076E|03|41F00000|||||| +38|2023-10-06T21:11:50.4550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||| +04|2023-10-06T21:11:50.1220000-07:00|400224F2|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||100.08|103.41|0.00|-3.09| +261|2023-10-06T21:11:50.1220000-07:00|Remove|400224F2| +37|2023-10-06T21:11:50.5880000-07:00|40022472|Zeromus|000191B9|40114135|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|41A00000|| +38|2023-10-06T21:11:50.5880000-07:00|40022472|Zeromus|005A5A00|40114135|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:11:50.6340000-07:00|40022472|Zeromus|000191B7|40110345||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:50.6340000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|752003|79E90000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|40114135|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||99.53|103.29|0.00|2.83|000191BC|0|1| +21|2023-10-06T21:11:50.6340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|3FD50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40114135|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||99.87|99.29|0.00|3.14|000191BD|0|1| +38|2023-10-06T21:11:50.6340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||99.87|99.29|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:11:50.6340000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:11:50.3380000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:11:50.6780000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191BE|0|1| +261|2023-10-06T21:11:50.3380000-07:00|Change|10FF0009||||||||||||| +39|2023-10-06T21:11:50.7220000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13| +37|2023-10-06T21:11:50.7670000-07:00|40022472|Zeromus|000191BB|40110176||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:50.7670000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||97.89|101.43|0.00|3.04| +24|2023-10-06T21:11:50.7670000-07:00|40022472|Zeromus|DoT|0|170B|40110345|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|82773|82773|10000|10000|||97.89|101.43|0.00|3.04| +38|2023-10-06T21:11:50.7670000-07:00|40022472|Zeromus|005A5A00|40104277|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:11:50.8110000-07:00|10FF0003|Gegehi Gehi|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12| +21|2023-10-06T21:11:50.8110000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|32810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40110345|40478540|10000|10000|||100.00|80.10|0.00|0.00|104541|129844|10000|10000|||99.87|99.35|0.00|-3.14|000191BF|0|1| +21|2023-10-06T21:11:50.8110000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|36ED0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|40110345|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9242|10000|||100.11|106.37|0.00|-3.14|000191C0|0|1| +21|2023-10-06T21:11:50.8110000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191C1|0|1| +21|2023-10-06T21:11:50.8110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40110345|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191C2|0|1| +38|2023-10-06T21:11:50.8110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:11:50.8110000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|82773|82773| +26|2023-10-06T21:11:50.8110000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:11:50.8560000-07:00|400227F3||005A5A00|75608|78475|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:11:50.8560000-07:00|40022472|Zeromus|000191BA|40085671||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:11:50.8560000-07:00|0294|3| +38|2023-10-06T21:11:50.8560000-07:00|400227F3||005A5A00|75608|78475|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:11:50.9000000-07:00|40022472|Zeromus|000191B2|40073260||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:50.9000000-07:00|10FF0007|Kehabiqo Febiqo|000191B2|104541|129844|10000|10000|0||99.87|99.35|0.00|3.14|1500|0|0|01|06000A75|0|41F00000|| +39|2023-10-06T21:11:50.9000000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9200|10000|||99.87|99.29|0.00|3.14| +21|2023-10-06T21:11:50.9000000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40085671|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191C3|0|1| +38|2023-10-06T21:11:50.9000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104541|129844|10000|10000|0||99.87|99.35|0.00|3.14|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:11:50.9440000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|4A000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40085671|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191C4|0|1| +00|2023-10-06T21:11:50.0000000-07:00|0044|Zeromus|I wish but to return home.| +39|2023-10-06T21:11:50.9890000-07:00|10FF0007|Kehabiqo Febiqo|105839|129844|10000|10000|||99.87|99.35|0.00|3.14| +39|2023-10-06T21:11:50.9890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||99.53|103.29|0.00|3.12| +21|2023-10-06T21:11:50.9890000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40073260|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|000191C5|0|1| +261|2023-10-06T21:11:50.6320000-07:00|Change|10FF0004||| +20|2023-10-06T21:11:51.0330000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:51.0330000-07:00|10FF0009|Zewo Negiwo|81177|81177|9063|10000|||100.11|106.37|0.00|-3.14| +261|2023-10-06T21:11:50.6320000-07:00|Change|40022472||||||||||||| +39|2023-10-06T21:11:51.0780000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.97|96.43|0.00|3.14| +21|2023-10-06T21:11:51.1230000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|11220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40073260|40478540|10000|10000|||100.00|80.10|0.00|0.00|105839|129844|10000|10000|||99.87|99.35|0.00|3.14|000191C6|0|1| +261|2023-10-06T21:11:50.7430000-07:00|Add|400227F3||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:11:50.7430000-07:00|400227F3|Bunshin|00|5A|10FF000A|00||8313|10897|75608|78475|10000|10000|||98.08|99.65|0.00|-0.10| +261|2023-10-06T21:11:50.7430000-07:00|Change|10FF0006||||| +261|2023-10-06T21:11:50.8620000-07:00|Change|10FF0003||||| +261|2023-10-06T21:11:50.8620000-07:00|Change|400227F3||| +37|2023-10-06T21:11:51.2560000-07:00|40022472|Zeromus|000191BC|40042051||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:51.3010000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022472|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40073260|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||99.87|99.29|0.00|3.14|000191C7|0|1| +37|2023-10-06T21:11:51.3460000-07:00|10FF0001|Sesuga Sapisuga|000191BE|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|1300|0|0|01|0600004C|0|41A00000|| +26|2023-10-06T21:11:51.3460000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:11:51.3460000-07:00|40022472|Zeromus|000191C2|40039746||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:51.3460000-07:00|10FF000A|Dukaro Nezikaro|000191C2|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|02|060007A2|05|C1F00000|||||| +21|2023-10-06T21:11:51.3900000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|756003|62C70000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|40042051|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191C8|0|1| +38|2023-10-06T21:11:51.3900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:11:51.3900000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:11:51.3900000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:11:51.4340000-07:00|40022472|Zeromus|000191BF|40026817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:51.4340000-07:00|40022472|Zeromus|000191BD|40010476||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:51.4340000-07:00|40022472|Zeromus|000191C3|40010419||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:51.5690000-07:00|10FF000A|Dukaro Nezikaro|000191C1|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|02|060007A2|05|41F00000|||||| +38|2023-10-06T21:11:51.5690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:11:51.6140000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40022472|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|40010419|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191C9|0|1| +38|2023-10-06T21:11:51.6140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:11:51.6140000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:11:51.6570000-07:00|40022472|Zeromus|000191C6|40006033||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:51.7020000-07:00|400227F3|Bunshin|64AF|Phantom Kamaitachi|40022472|Zeromus|350003|40C30000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|40010419|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||97.91|101.44|0.00|3.04|000191CA|0|1| +39|2023-10-06T21:11:51.7020000-07:00|400227DC|Demi-Bahamut|66800|69928|10000|10000|||101.09|103.81|0.00|-3.09| +261|2023-10-06T21:11:51.2850000-07:00|Change|400227F3||||||||| +21|2023-10-06T21:11:51.7020000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|2A0D0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|40010419|40478540|10000|10000|||100.00|80.10|0.00|0.00|105839|129844|10000|10000|||99.87|99.35|0.00|3.14|000191CB|0|1| +21|2023-10-06T21:11:51.7020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|F540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40010419|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191CC|0|1| +31|2023-10-06T21:11:51.7020000-07:00|10FF0001||||| +261|2023-10-06T21:11:51.3840000-07:00|Change|10FF0009||||||||||||||| +22|2023-10-06T21:11:51.7460000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191CD|0|8| +22|2023-10-06T21:11:51.7460000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|105839|129844|10000|10000|||99.87|99.35|0.00|3.14|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191CD|1|8| +22|2023-10-06T21:11:51.7460000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9200|10000|||99.87|99.29|0.00|3.14|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191CD|2|8| +22|2023-10-06T21:11:51.7460000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191CD|3|8| +22|2023-10-06T21:11:51.7460000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||99.53|103.29|0.00|3.12|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191CD|4|8| +22|2023-10-06T21:11:51.7460000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191CD|5|8| +22|2023-10-06T21:11:51.7460000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0009|Zewo Negiwo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9063|10000|||100.11|106.37|0.00|-3.14|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191CD|6|8| +22|2023-10-06T21:11:51.7460000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191CD|7|8| +37|2023-10-06T21:11:51.7900000-07:00|40022472|Zeromus|000191C5|40000719||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:51.4800000-07:00|Change|400227F3||||| +21|2023-10-06T21:11:51.9680000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|10B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40000719|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||99.53|103.29|0.00|3.12|000191CE|0|1| +21|2023-10-06T21:11:52.0120000-07:00|400227DC|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|15880000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|40000719|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.09|103.81|0.00|-3.09|000191CF|0|1| +37|2023-10-06T21:11:52.0570000-07:00|40022472|Zeromus|000191C8|39975432||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:52.0570000-07:00|10FF0001|Sesuga Sapisuga|000191C8|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|1300|0|0|02|07000558|04|41F00000|||||| +21|2023-10-06T21:11:52.0570000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C726003|60A70000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|40000719|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.37|0.00|-3.13|000191D0|0|1| +38|2023-10-06T21:11:52.0570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:11:52.1010000-07:00|40022472|Zeromus|000191C0|39961371||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:52.1010000-07:00|40022472|Zeromus|000191C7|39961371|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004C5|0|41700000|| +26|2023-10-06T21:11:52.1010000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +261|2023-10-06T21:11:51.8070000-07:00|Change|40022472||||| +37|2023-10-06T21:11:52.1010000-07:00|40022472|Zeromus|000191C4|39942427||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:11:52.1460000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.11|106.37|0.00|-3.14| +37|2023-10-06T21:11:52.2350000-07:00|40022472|Zeromus|000191CB|39931662||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:52.2350000-07:00|40022472|Zeromus|000191CC|39927738||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:52.3680000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|105839|129844|10000|10000|||99.87|99.35|0.00|3.14|105839|129844|10000|10000|||99.87|99.35|0.00|3.14|000191D1|0|1| +26|2023-10-06T21:11:52.3680000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:11:52.3680000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|12240000|104|6C88000|0|0|0|0|0|0|0|0|0|0|0|0|39942427|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||99.87|99.29|0.00|3.14|000191D2|0|1| +38|2023-10-06T21:11:52.3680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105839|129844|10000|10000|0||99.87|99.35|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:11:52.3680000-07:00|A75|Surging Tempest|38.49|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:11:52.3680000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:11:52.3680000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:11:52.3680000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:11:52.4120000-07:00|10FF0003|Gegehi Gehi|000191CD|73814|73814|9500|10000|0||100.39|100.05|0.00|-3.12|2300|0|0|01|030004D7|0|41A00000|| +26|2023-10-06T21:11:52.4120000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:11:52.4120000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|710003|6C420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39927738|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191D3|0|1| +37|2023-10-06T21:11:52.5020000-07:00|40022472|Zeromus|000191CE|39927471||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:52.5020000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191D4|0|1| +38|2023-10-06T21:11:52.5020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105839|129844|10000|10000|0||99.87|99.35|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:11:52.5020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9500|10000|0||100.39|100.05|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:52.5020000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73814|73814| +37|2023-10-06T21:11:52.5470000-07:00|10FF0007|Kehabiqo Febiqo|000191CD|105839|129844|10000|10000|0||99.87|99.35|0.00|3.14|1501|0|0|04|07000499|03|C1700000|||||||||||||| +26|2023-10-06T21:11:52.5470000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +37|2023-10-06T21:11:52.5470000-07:00|10FF0003|Gegehi Gehi|000191CD|73814|73814|9500|10000|0||100.39|100.05|0.00|-3.12|2301|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T21:11:52.5470000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|FD90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39927738|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.28|0.00|-3.12|000191D5|0|1| +37|2023-10-06T21:11:52.6800000-07:00|10FF0004|Buhojaqe Zijaqe|000191CD|81541|81541|9200|10000|0||99.87|99.29|0.00|3.14|1C02|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:11:52.6800000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:11:52.6800000-07:00|10FF0003|Gegehi Gehi|000191CD|73814|73814|9500|10000|0||100.39|100.05|0.00|-3.12|2302|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T21:11:52.6800000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|1C0C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39927471|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|106.16|-0.02|-3.12|000191D6|0|1| +21|2023-10-06T21:11:52.7700000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|38460000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|39927471|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9063|10000|||100.11|106.37|0.00|-3.14|000191D7|0|1| +261|2023-10-06T21:11:52.4230000-07:00|Change|10FF0009||| +37|2023-10-06T21:11:52.8150000-07:00|10FF000A|Dukaro Nezikaro|000191CD|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E03|0|0|01|07000511|0|41A00000|| +26|2023-10-06T21:11:52.8150000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +37|2023-10-06T21:11:52.8150000-07:00|10FF0003|Gegehi Gehi|000191CD|73814|73814|9500|10000|0||100.39|100.05|0.00|-3.12|2303|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T21:11:52.8150000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19710003|31340000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|39927471|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191D8|0|1| +38|2023-10-06T21:11:52.8150000-07:00|40022472|Zeromus|005A5A00|39927471|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:11:52.8150000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:11:52.8150000-07:00|400227F3|Bunshin|005A5A00|75608|78475|10000|10000|0||97.98|100.48|0.00|3.04|0|0|0|||||||||| +26|2023-10-06T21:11:52.8150000-07:00|30|Well Fed|2375.66|10FF000A|Dukaro Nezikaro|400227F3|Bunshin|294E|78475|82773| +26|2023-10-06T21:11:52.8150000-07:00|A8F|Searing Light|23.49|10FF0006|Wowobora Gogobora|400227F3|Bunshin|00|78475|81809| +26|2023-10-06T21:11:52.8150000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|400227F3|Bunshin|00|78475|73814| +38|2023-10-06T21:11:52.8150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:11:52.8150000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:11:52.8570000-07:00|40022472|Zeromus|000191D0|39902728|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:11:52.9030000-07:00|10FF0003|Gegehi Gehi|000191D4|73814|73814|9500|10000|0||100.39|100.05|0.00|-3.12|2300|0|0|01|050007B3|06|41700000|| +38|2023-10-06T21:11:52.9030000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9500|10000|0||100.39|100.05|0.00|-3.12|0|0|0||||||||||||||||||| +37|2023-10-06T21:11:52.9470000-07:00|40022472|Zeromus|000191D3|39875014|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:11:52.9470000-07:00|10FF0006|Wowobora Gogobora|000191CD|81809|81809|9600|10000|19||99.53|103.29|0.00|3.12|1B04|0|0|01|03000511|0|41A00000|| +26|2023-10-06T21:11:52.9470000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +38|2023-10-06T21:11:52.9470000-07:00|400227DC|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.09|103.81|0.00|-3.09|0|0|0|||||||||| +26|2023-10-06T21:11:52.9470000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|400227DC|Demi-Bahamut|00|69928|73814| +21|2023-10-06T21:11:52.9910000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|714003|19EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39902728|40478540|10000|10000|||100.00|80.10|0.00|0.00|105839|129844|10000|10000|||99.87|99.35|0.00|3.14|000191D9|0|1| +21|2023-10-06T21:11:52.9910000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|CFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39902728|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191DA|0|1| +37|2023-10-06T21:11:53.0360000-07:00|40022472|Zeromus|000191CF|39869502|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +20|2023-10-06T21:11:53.0360000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.87|99.29|0.00|3.14| +261|2023-10-06T21:11:52.6130000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:11:53.0800000-07:00|10FF0001|Sesuga Sapisuga|000191CD|129071|129071|10000|10000|0||99.97|96.43|0.00|3.14|1305|0|0|01|09000511|0|41A00000|| +26|2023-10-06T21:11:53.0800000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +21|2023-10-06T21:11:53.0800000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|54A30000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|39875014|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||99.53|103.29|0.00|3.12|000191DB|0|1| +261|2023-10-06T21:11:52.7240000-07:00|Change|10FF0006||| +261|2023-10-06T21:11:52.7240000-07:00|Change|10FF0006||| +37|2023-10-06T21:11:53.1250000-07:00|10FF0007|Kehabiqo Febiqo|000191D1|105839|129844|10000|10000|0||99.87|99.35|0.00|3.14|1500|0|0|03|07000499|03|41700000|||||||||| +38|2023-10-06T21:11:53.1250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105839|129844|10000|10000|0||99.87|99.35|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:11:53.1700000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|712003|23D10000|77A20E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|39869502|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191DC|0|1| +37|2023-10-06T21:11:53.2140000-07:00|10FF0009|Zewo Negiwo|000191CD|81177|81177|8663|10000|0||100.11|106.37|0.00|-3.14|1806|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:11:53.2140000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +21|2023-10-06T21:11:53.2140000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|754003|3DFC0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|39869502|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9500|10000|||100.39|100.05|0.00|-3.12|000191DD|0|1| +38|2023-10-06T21:11:53.2140000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9500|10000|0||100.39|100.05|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:53.2140000-07:00|7B3|Manafication|14.64|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73814|73814| +37|2023-10-06T21:11:53.2590000-07:00|40022472|Zeromus|000191CA|39852923|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:11:53.3030000-07:00|40022472|Zeromus|000191D5|39848866|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:11:53.3480000-07:00|40022472|Zeromus|000191D6|39841686|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:11:53.3480000-07:00|10FF0008|Kokosaze Lulusaze|000191CD|90216|90216|10000|10000|0||100.22|103.57|0.00|-3.13|1F07|0|0|01|03000511|0|41A00000|| +26|2023-10-06T21:11:53.3480000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +21|2023-10-06T21:11:53.3480000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|15E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39841686|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.21|102.76|0.00|-3.13|000191DE|0|1| +37|2023-10-06T21:11:53.3920000-07:00|40022472|Zeromus|000191D2|39837042|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:11:53.5250000-07:00|40022472|Zeromus|000191DA|39833718|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +261|2023-10-06T21:11:53.1690000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:11:53.6140000-07:00|40022472|Zeromus|000191D9|39827080|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:11:53.6140000-07:00|40022472|Zeromus|000191D8|39814484|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|41700000|| +38|2023-10-06T21:11:53.6140000-07:00|40022472|Zeromus|005A5A00|39814484|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T21:11:53.7030000-07:00|40022472|Zeromus|000191DB|39792817||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:53.7030000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.18|100.53|0.00|-3.13| +39|2023-10-06T21:11:53.7480000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||97.89|101.43|0.00|3.04| +24|2023-10-06T21:11:53.7480000-07:00|40022472|Zeromus|DoT|0|173F|39814484|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|82773|82773|10000|10000|||97.89|101.43|0.00|3.04| +38|2023-10-06T21:11:53.7480000-07:00|40022472|Zeromus|005A5A00|39786866|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T21:11:53.7920000-07:00|10FF0003|Gegehi Gehi|73814|73814|9700|10000|||100.39|100.05|0.00|-3.12| +21|2023-10-06T21:11:53.7920000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|60250000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|39786866|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191DF|0|1| +38|2023-10-06T21:11:53.7920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:11:53.7920000-07:00|7A2|Bunshin|27.73|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|82773|82773| +261|2023-10-06T21:11:53.3650000-07:00|Change|10FF0003||| +37|2023-10-06T21:11:53.8370000-07:00|40022472|Zeromus|000191DD|39770998||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:53.8370000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|714003|56590000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|39786866|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191E0|0|1| +36|2023-10-06T21:11:53.8370000-07:00|0370|3| +21|2023-10-06T21:11:53.8820000-07:00|400227F3|Bunshin|4407|Aeolian Edge|40022472|Zeromus|716003|2A840000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|39786866|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||97.98|100.48|0.00|3.04|000191E1|0|1| +39|2023-10-06T21:11:53.8820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9400|10000|||99.87|99.29|0.00|3.14| +261|2023-10-06T21:11:53.4560000-07:00|Change|10FF0004||||| +39|2023-10-06T21:11:53.9720000-07:00|10FF0007|Kehabiqo Febiqo|107137|129844|10000|10000|||99.87|99.35|-0.02|3.14| +39|2023-10-06T21:11:53.9720000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||99.53|103.29|0.00|3.12| +21|2023-10-06T21:11:53.9720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|10C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39770998|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191E2|0|1| +21|2023-10-06T21:11:53.9720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|38A50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|39770998|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||99.87|99.29|0.00|3.14|000191E3|0|1| +31|2023-10-06T21:11:53.9720000-07:00|10FF0001||||| +39|2023-10-06T21:11:54.0160000-07:00|10FF0009|Zewo Negiwo|81177|81177|8884|10000|||100.11|106.37|0.00|-3.14| +261|2023-10-06T21:11:53.7650000-07:00|Change|10FF0006||| +37|2023-10-06T21:11:54.0600000-07:00|40022472|Zeromus|000191D7|39756592||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:53.7650000-07:00|Change|10FF0009||||||||||||||| +39|2023-10-06T21:11:54.0600000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.97|96.43|0.00|3.14| +20|2023-10-06T21:11:54.0600000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.11|106.37|0.00|-3.14| +37|2023-10-06T21:11:54.1500000-07:00|40022472|Zeromus|000191DE|39750985||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:54.1500000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|D46D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39756592|40478540|10000|10000|||100.00|80.10|0.00|0.00|107137|129844|10000|10000|||99.87|99.35|-0.02|3.14|000191E4|0|1| +38|2023-10-06T21:11:54.1500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107137|129844|10000|10000|0||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:11:54.1500000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:11:54.1930000-07:00|40022472|Zeromus|000191DC|39741816|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050000F8|0|41700000|| +26|2023-10-06T21:11:54.1930000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:11:54.1930000-07:00|40022472|Zeromus|000191E0|39719711||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:54.3270000-07:00|40022472|Zeromus|000191DF|39695098||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:54.3720000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39719711|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||99.87|99.29|0.00|3.14|000191E5|0|1| +21|2023-10-06T21:11:54.3720000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39719711|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9700|10000|||100.39|100.05|0.00|-3.12|000191E6|0|1| +37|2023-10-06T21:11:54.4160000-07:00|40022472|Zeromus|000191E1|39684214||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:54.5060000-07:00|40022472|Zeromus|000191E2|39679918||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:54.5060000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|D9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39684214|40478540|10000|10000|||100.00|80.10|0.00|0.00|107137|129844|10000|10000|||99.87|99.35|0.00|3.14|000191E7|0|1| +22|2023-10-06T21:11:54.5060000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|712003|1F8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39684214|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191E8|0|3| +22|2023-10-06T21:11:54.5060000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|712003|21FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39684214|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191E8|1|3| +22|2023-10-06T21:11:54.5060000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|19C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39684214|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191E8|2|3| +21|2023-10-06T21:11:54.5500000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|42E50000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|39684214|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.73|0.00|0.10|000191E9|0|1| +26|2023-10-06T21:11:54.5950000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:11:54.5950000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|756003|26720000|104|E5E8000|0|0|0|0|0|0|0|0|0|0|0|0|39684214|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||99.87|99.29|0.00|3.14|000191EA|0|1| +39|2023-10-06T21:11:54.6840000-07:00|400227DC|Demi-Bahamut|66800|69928|10000|10000|||101.09|103.81|0.00|-3.09| +21|2023-10-06T21:11:54.6840000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|5CF70000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|39679918|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8884|10000|||100.11|106.37|0.00|-3.14|000191EB|0|1| +21|2023-10-06T21:11:54.7290000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37752003|5A280000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|39679918|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9700|10000|||100.39|100.05|0.00|-3.12|000191EC|0|1| +38|2023-10-06T21:11:54.7290000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||100.39|100.05|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:54.7290000-07:00|7B3|Manafication|13.13|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73814|73814| +37|2023-10-06T21:11:54.7730000-07:00|40022472|Zeromus|000191E3|39665417||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:54.9070000-07:00|40022472|Zeromus|000191E5|39665252||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:54.9070000-07:00|40022472|Zeromus|000191E6|39665221||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:54.5040000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:11:54.9530000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|750003|87C00000|4|27DF8000|0|0|0|0|0|0|0|0|0|0|0|0|39665221|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.97|96.43|0.00|3.14|000191ED|0|1| +38|2023-10-06T21:11:54.9530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:11:54.9530000-07:00|558|Requiescat|27.06|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:11:54.9530000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:11:54.9530000-07:00|10FF0001||||| +261|2023-10-06T21:11:54.6010000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:11:55.0410000-07:00|40022472|Zeromus|000191E7|39661737||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:55.1310000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|000191EE|0|1| +21|2023-10-06T21:11:55.1310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39665221|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||99.45|102.35|0.00|-3.11|000191EF|0|1| +38|2023-10-06T21:11:55.1310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:11:55.1310000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:11:54.6960000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:11:55.1750000-07:00|400227DC|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|752003|23C90000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|39661737|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.09|103.81|0.00|-3.09|000191F0|0|1| +21|2023-10-06T21:11:55.1750000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|AA00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39661737|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191F1|0|1| +37|2023-10-06T21:11:55.2200000-07:00|40022472|Zeromus|000191E8|39653660||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:55.2200000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|A740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39661737|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|000191F2|0|1| +38|2023-10-06T21:11:55.2200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0|||||||||||||||| +37|2023-10-06T21:11:55.3080000-07:00|40022472|Zeromus|000191E4|39599279||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:55.3530000-07:00|40022472|Zeromus|000191E9|39582154||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:55.3530000-07:00|10FF0008|Kokosaze Lulusaze|000191E9|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|1F00|0|0|01|04000353|0|C0A00000|| +37|2023-10-06T21:11:55.3530000-07:00|40022472|Zeromus|000191EC|39559074||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:55.3530000-07:00|40022472|Zeromus|000191E8|39550373||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:55.3970000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|13D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39653660|40478540|10000|10000|||100.00|80.10|0.00|0.00|107137|129844|10000|10000|||99.87|99.35|0.00|3.14|000191F3|0|1| +20|2023-10-06T21:11:55.4420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.87|99.29|0.00|3.14| +37|2023-10-06T21:11:55.4860000-07:00|40022472|Zeromus|000191E8|39543780||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:55.5320000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|724003|4C400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39543780|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9700|10000|||100.39|100.05|0.00|-3.12|000191F4|0|1| +37|2023-10-06T21:11:55.5770000-07:00|40022472|Zeromus|000191ED|39509028||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:55.5770000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|53F00000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|39543780|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||99.38|101.76|0.00|-3.09|000191F5|0|1| +261|2023-10-06T21:11:55.1400000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:11:55.6200000-07:00|40022472|Zeromus|000191EA|39499186||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:55.6640000-07:00|40022472|Zeromus|000191EF|39498981||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:55.6640000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|16960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39509028|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||99.97|96.43|0.00|3.14|000191F6|0|1| +37|2023-10-06T21:11:55.7090000-07:00|40022472|Zeromus|000191F1|39496261||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:55.7540000-07:00|10FF0008|Kokosaze Lulusaze|000191EE|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|1F00|0|0|01|04000353|0|40A00000|| +38|2023-10-06T21:11:55.7540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0|||||||||||||||| +21|2023-10-06T21:11:55.7980000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40022472|Zeromus|6BE0E|35D0000|72000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|39496261|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|000191F7|0|1| +21|2023-10-06T21:11:55.8880000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191F8|0|1| +38|2023-10-06T21:11:55.8880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:11:55.8880000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +261|2023-10-06T21:11:55.4200000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:11:55.9780000-07:00|40022472|Zeromus|000191EB|39472462||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:55.9780000-07:00|40022472|Zeromus|000191F2|39469786||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:11:55.9780000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.11|106.37|0.00|-3.14| +261|2023-10-06T21:11:55.6080000-07:00|Change|400227F3||| +261|2023-10-06T21:11:55.7070000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:11:56.0210000-07:00|40022472|Zeromus|000191F3|39464708||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:11:56.0220000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0001|Sesuga Sapisuga|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||99.97|96.43|0.00|3.14|39469786|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191F9|0|8| +22|2023-10-06T21:11:56.0220000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0004|Buhojaqe Zijaqe|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81541|81541|9000|10000|||99.87|99.29|0.00|3.14|39469786|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191F9|1|8| +22|2023-10-06T21:11:56.0220000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0007|Kehabiqo Febiqo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|107137|129844|10000|10000|||99.87|99.35|-0.02|3.14|39469786|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191F9|2|8| +22|2023-10-06T21:11:56.0220000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0008|Kokosaze Lulusaze|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|39469786|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191F9|3|8| +22|2023-10-06T21:11:56.0220000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0003|Gegehi Gehi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|73814|73814|9700|10000|||100.39|100.05|0.00|-3.12|39469786|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191F9|4|8| +22|2023-10-06T21:11:56.0220000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF000A|Dukaro Nezikaro|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|39469786|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191F9|5|8| +22|2023-10-06T21:11:56.0220000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0006|Wowobora Gogobora|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81809|81809|9200|10000|||99.38|101.76|0.00|3.11|39469786|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191F9|6|8| +22|2023-10-06T21:11:56.0220000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0009|Zewo Negiwo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81177|81177|8484|10000|||100.11|106.37|0.00|-3.14|39469786|40478540|10000|10000|||100.00|80.10|0.00|0.00|000191F9|7|8| +261|2023-10-06T21:11:55.7070000-07:00|Change|40022472||||||||||||| +20|2023-10-06T21:11:56.1100000-07:00|40022487|Zeromus|8B42|Abyssal Echoes|40022487|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:11:56.1100000-07:00|40022488|Zeromus|8B41|unknown_8b41|40022488|Zeromus|8.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:55.7070000-07:00|Change|4002248F||||||||||||||||||||| +261|2023-10-06T21:11:55.7070000-07:00|Change|4002248C||||||||||||||||||||| +20|2023-10-06T21:11:56.1100000-07:00|40022489|Zeromus|8B42|Abyssal Echoes|40022489|Zeromus|15.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:55.7070000-07:00|Change|4002248A||||||||||||||||||||| +261|2023-10-06T21:11:55.7070000-07:00|Change|40022490||||||||||||||||||||| +20|2023-10-06T21:11:56.1100000-07:00|4002248A|Zeromus|8B41|unknown_8b41|4002248A|Zeromus|8.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:55.7070000-07:00|Change|40022488||||||||||||||||||||| +20|2023-10-06T21:11:56.1100000-07:00|4002248B|Zeromus|8B42|Abyssal Echoes|4002248B|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:11:56.1100000-07:00|4002248C|Zeromus|8B40|unknown_8b40|4002248C|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:11:56.1100000-07:00|4002248D|Zeromus|8B42|Abyssal Echoes|4002248D|Zeromus|15.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:55.7070000-07:00|Change|4002248B||||||||||||||||||||| +261|2023-10-06T21:11:55.7070000-07:00|Change|40022489||||||||||||||||||||| +20|2023-10-06T21:11:56.1100000-07:00|4002248E|Zeromus|8B40|unknown_8b40|4002248E|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:11:56.1100000-07:00|4002248F|Zeromus|8B42|Abyssal Echoes|4002248F|Zeromus|15.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:55.7070000-07:00|Change|40022487||||||||||||||||||||| +261|2023-10-06T21:11:55.7070000-07:00|Change|4002248E||||||||||||||||||||| +20|2023-10-06T21:11:56.1100000-07:00|40022490|Zeromus|8D2B|unknown_8d2b|40022490|Zeromus|8.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:55.7070000-07:00|Change|4002248D||||||||||||||||||||| +37|2023-10-06T21:11:56.1990000-07:00|40022472|Zeromus|000191F5|39443220||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:56.1990000-07:00|40022472|Zeromus|000191F0|39434059||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:56.2460000-07:00|40022472|Zeromus|000191F6|39428277||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:11:56.2460000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|19||99.38|101.76|0.00|3.11|0|0|0|||||||||||||||| +26|2023-10-06T21:11:56.2460000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:11:56.2460000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|754003|2D2B0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|39464708|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||99.38|101.76|0.00|3.11|000191FA|0|1| +21|2023-10-06T21:11:56.2460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|10230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39464708|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||99.97|96.43|0.00|3.14|000191FB|0|1| +21|2023-10-06T21:11:56.2460000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A750003|52270000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|39464708|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9700|10000|||100.39|100.05|0.00|-3.12|000191FC|0|1| +38|2023-10-06T21:11:56.2460000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|19||99.38|101.76|0.00|3.11|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:56.2460000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:11:56.2460000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||100.39|100.05|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:56.2460000-07:00|7B3|Manafication|11.61|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73814|73814| +31|2023-10-06T21:11:56.2460000-07:00|10FF0001||||| +21|2023-10-06T21:11:56.3790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|38580000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|39428277|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||99.87|99.29|0.00|3.14|000191FD|0|1| +37|2023-10-06T21:11:56.4230000-07:00|40022472|Zeromus|000191F7|39428277|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|0|41200000|| +26|2023-10-06T21:11:56.4230000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|90216| +37|2023-10-06T21:11:56.4230000-07:00|10FF0008|Kokosaze Lulusaze|000191F7|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|1F00|0|0|01|0500079A|0|41200000|| +26|2023-10-06T21:11:56.4230000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T21:11:56.4230000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|000191FE|0|1| +38|2023-10-06T21:11:56.4230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:11:56.4230000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +21|2023-10-06T21:11:56.6010000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|C9D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39428277|40478540|10000|10000|||100.00|80.10|0.00|0.00|107137|129844|10000|10000|||99.87|99.35|-0.02|3.14|000191FF|0|1| +21|2023-10-06T21:11:56.6010000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|3C640000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|39428277|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8484|10000|||100.11|106.37|0.00|-3.14|00019200|0|1| +38|2023-10-06T21:11:56.6010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107137|129844|10000|10000|0||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:11:56.6010000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:11:56.6900000-07:00|40022472|Zeromus|000191F4|39408757||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:56.7330000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13| +37|2023-10-06T21:11:56.7790000-07:00|40022472|Zeromus|000191FB|39404626||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:56.7790000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||97.89|101.43|0.00|3.04| +24|2023-10-06T21:11:56.7790000-07:00|40022472|Zeromus|DoT|0|1C50|39408757|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13| +38|2023-10-06T21:11:56.7790000-07:00|40022472|Zeromus|005A5A00|39397378|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:11:56.8230000-07:00|10FF0003|Gegehi Gehi|73814|73814|9900|10000|||100.39|100.05|0.00|-3.12| +39|2023-10-06T21:11:56.8230000-07:00|400227F3|Bunshin|75608|78475|10000|10000|||97.91|101.44|0.00|3.04| +261|2023-10-06T21:11:56.3340000-07:00|Change|10FF0003||| +38|2023-10-06T21:11:56.8680000-07:00|400227DC|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.09|103.81|0.00|-3.09|0|0|0||||||||||||| +26|2023-10-06T21:11:56.8680000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|400227DC|Demi-Bahamut|01|69928|40478540| +21|2023-10-06T21:11:56.8680000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40022472|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|39397378|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||99.38|101.76|0.00|3.11|00019201|0|1| +36|2023-10-06T21:11:56.8680000-07:00|044C|3| +37|2023-10-06T21:11:56.9130000-07:00|40022472|Zeromus|000191FC|39376347||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:56.9130000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8800|10000|||99.87|99.29|0.00|3.14| +21|2023-10-06T21:11:56.9130000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|256003|CA404001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39397378|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|00019202|0|1| +38|2023-10-06T21:11:56.9130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:11:56.9130000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +30|2023-10-06T21:11:56.9130000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:11:56.4250000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:11:56.9570000-07:00|400227DC|Demi-Bahamut|1D19|Akh Morn|40022472|Zeromus|750003|BA6E0000|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|39376347|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.09|103.81|0.00|-3.09|00019203|0|1| +21|2023-10-06T21:11:56.9570000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|756003|25830000|104|E058000|0|0|0|0|0|0|0|0|0|0|0|0|39376347|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8800|10000|||99.87|99.29|0.00|3.14|00019204|0|1| +38|2023-10-06T21:11:56.9570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||99.87|99.29|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:11:56.9570000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +39|2023-10-06T21:11:57.0010000-07:00|10FF0007|Kehabiqo Febiqo|108435|129844|10000|10000|||99.87|99.35|-0.02|3.14| +39|2023-10-06T21:11:57.0010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9400|10000|||99.38|101.76|0.00|3.11| +261|2023-10-06T21:11:56.5230000-07:00|Change|10FF0006||| +39|2023-10-06T21:11:57.0460000-07:00|10FF0009|Zewo Negiwo|81177|81177|8305|10000|||100.11|106.37|0.00|-3.14| +21|2023-10-06T21:11:57.0460000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|726003|F30A0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|39376347|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019205|0|1| +38|2023-10-06T21:11:57.0460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:11:57.0460000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T21:11:57.0890000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||99.97|96.43|0.00|3.14| +261|2023-10-06T21:11:56.6400000-07:00|Change|10FF0001||| +37|2023-10-06T21:11:57.1790000-07:00|40022472|Zeromus|000191FD|39361923||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:56.6400000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:11:57.2680000-07:00|40022472|Zeromus|000191FA|39350360||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:57.2680000-07:00|10FF0006|Wowobora Gogobora|000191FA|81809|81809|9400|10000|19||99.38|101.76|0.00|3.11|1B00|0|0|01|05000A8D|0|42700000|| +38|2023-10-06T21:11:57.2680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|19||99.38|101.76|0.00|3.11|0|0|0||||||||||||||||||| +21|2023-10-06T21:11:57.3120000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|714003|1A100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39361923|40478540|10000|10000|||100.00|80.10|0.00|0.00|108435|129844|10000|10000|||99.87|99.35|-0.02|3.14|00019206|0|1| +21|2023-10-06T21:11:57.3580000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39350360|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|00019207|0|1| +21|2023-10-06T21:11:57.4470000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|750003|6FBD0000|4|29D38000|0|0|0|0|0|0|0|0|0|0|0|0|39350360|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||99.97|96.43|0.00|3.14|00019208|0|1| +38|2023-10-06T21:11:57.4470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:11:57.4470000-07:00|558|Requiescat|24.56|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:11:57.4470000-07:00|10FF0001||||| +37|2023-10-06T21:11:57.5350000-07:00|40022472|Zeromus|000191FF|39298696||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:57.5350000-07:00|40022472|Zeromus|00019202|39181384||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:57.6690000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019209|0|1| +39|2023-10-06T21:11:57.7140000-07:00|400227DC|Demi-Bahamut|66800|69928|10000|10000|||101.09|103.81|0.00|-3.09| +22|2023-10-06T21:11:57.7590000-07:00|10FF0009|Zewo Negiwo|DF1|Asylum|10FF0009|Zewo Negiwo|FCF10F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|8305|10000|||100.10|105.78|0.00|-3.12|81177|81177|8305|10000|||100.10|105.78|0.00|-3.12|0001920A|0|1| +20|2023-10-06T21:11:57.8040000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.87|99.29|0.00|3.14| +37|2023-10-06T21:11:57.8480000-07:00|40022472|Zeromus|00019203|39133658||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:57.8480000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39181384|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9900|10000|||100.30|99.32|0.00|-3.04|0001920B|0|1| +38|2023-10-06T21:11:57.8480000-07:00|400227DC|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.09|103.81|0.00|-3.09|0|0|0|||||||||| +30|2023-10-06T21:11:57.8480000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|400227DC|Demi-Bahamut|01|69928|40478540| +37|2023-10-06T21:11:57.8930000-07:00|40022472|Zeromus|00019200|39118198||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:57.8930000-07:00|40022472|Zeromus|00019207|39115639||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:57.8930000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|17620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39133658|40478540|10000|10000|||100.00|80.10|0.00|0.00|108435|129844|10000|10000|||99.87|99.35|-0.02|3.14|0001920C|0|1| +21|2023-10-06T21:11:57.8930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|C940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39133658|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|0001920D|0|1| +37|2023-10-06T21:11:57.9380000-07:00|40022472|Zeromus|00019206|39108967||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:57.4890000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:11:57.9830000-07:00|40022472|Zeromus|00019204|39099364||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:57.6730000-07:00|Change|10FF0001||| +37|2023-10-06T21:11:58.0720000-07:00|40022472|Zeromus|00019205|39037146|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|01|4105A1CE|| +26|2023-10-06T21:11:58.0720000-07:00|35D|Wildfire|8.35|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|01|40478540|90216| +37|2023-10-06T21:11:58.0720000-07:00|40022472|Zeromus|00019208|39008541||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:58.0720000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|63C20000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|39099364|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||99.26|101.43|0.00|-3.08|0001920E|0|1| +38|2023-10-06T21:11:58.1630000-07:00|40022804||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:11:58.1630000-07:00|40022804||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||||||||| +261|2023-10-06T21:11:57.6730000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:11:58.2070000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|108435|129844|10000|10000|||99.87|99.35|-0.02|3.14|108435|129844|10000|10000|||99.87|99.35|-0.02|3.14|0001920F|0|1| +38|2023-10-06T21:11:58.2070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108435|129844|10000|10000|0||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:11:58.2070000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:11:58.2520000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|1050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39008541|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||99.26|101.43|0.00|3.11|00019210|0|1| +21|2023-10-06T21:11:58.2970000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019211|0|1| +21|2023-10-06T21:11:58.2980000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|16A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39008541|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||99.97|96.43|0.00|3.14|00019212|0|1| +38|2023-10-06T21:11:58.2980000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:58.2980000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:11:58.3860000-07:00|40022472|Zeromus|0001920B|39008512||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:57.9010000-07:00|Add|40022804||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:11:57.9010000-07:00|40022804|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.97|101.46|0.00|-3.13| +261|2023-10-06T21:11:57.9010000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:11:58.0150000-07:00|Change|40022804||| +37|2023-10-06T21:11:58.4290000-07:00|40022472|Zeromus|0001920C|39002526||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:58.4290000-07:00|10FF0007|Kehabiqo Febiqo|0001920C|108435|129844|10000|10000|0||99.87|99.35|-0.02|3.14|1500|0|0|01|01000769|0|C1F00000|| +20|2023-10-06T21:11:58.4750000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.02|104.17|0.00|-3.10| +21|2023-10-06T21:11:58.4750000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022472|Zeromus|752003|A1B00000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|39008512|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9900|10000|||100.30|99.32|0.00|-3.04|00019213|0|1| +38|2023-10-06T21:11:58.4750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108435|129844|10000|10000|0||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:11:58.4750000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9500|10000|0||100.30|99.32|0.00|-3.04|0|0|0||||||||||||||||||| +26|2023-10-06T21:11:58.4750000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:11:58.4750000-07:00|7B3|Manafication|9.38|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73814|73814| +21|2023-10-06T21:11:58.5180000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|11760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39008512|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||99.97|96.43|0.00|3.14|00019214|0|1| +261|2023-10-06T21:11:58.0150000-07:00|Change|10FF0003||||||||| +31|2023-10-06T21:11:58.5180000-07:00|10FF0001||||| +21|2023-10-06T21:11:58.5640000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|00019215|0|1| +38|2023-10-06T21:11:58.5640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:11:58.5640000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +24|2023-10-06T21:11:58.6080000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|1708|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11| +24|2023-10-06T21:11:58.6080000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E0D|108435|129844|10000|10000|||99.87|99.35|-0.02|3.14|10FF0009|Zewo Negiwo|0|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11| +24|2023-10-06T21:11:58.6080000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E6C|81541|81541|8800|10000|||99.87|99.29|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11| +24|2023-10-06T21:11:58.6080000-07:00|10FF0003|Gegehi Gehi|HoT|777|E19|73814|73814|9500|10000|||100.30|99.32|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11| +24|2023-10-06T21:11:58.6080000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E39|81809|81809|9100|10000|||99.26|101.43|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11| +24|2023-10-06T21:11:58.6080000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DE2|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|10FF0009|Zewo Negiwo|0|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11| +24|2023-10-06T21:11:58.6080000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|16CA|129071|129071|8200|10000|||99.97|96.43|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11| +24|2023-10-06T21:11:58.6080000-07:00|10FF0009|Zewo Negiwo|HoT|777|1779|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11|10FF0009|Zewo Negiwo|0|81177|81177|8305|10000|||100.02|104.17|0.00|-3.11| +37|2023-10-06T21:11:58.6080000-07:00|10FF0009|Zewo Negiwo|0001920A|81177|81177|8305|10000|0||100.02|104.17|0.00|-3.11|1800|0|0|02|05000777|0|41C00000|||||| +26|2023-10-06T21:11:58.6080000-07:00|777|Asylum|24.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:11:58.6080000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:11:58.6080000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112032|129844|10000|10000|0||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:11:58.6080000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:11:58.6080000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8305|10000|0||100.02|104.17|0.00|-3.11|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:11:58.6080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:11:58.6080000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:11:58.6080000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|19||99.26|101.43|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:11:58.6080000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:11:58.6080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:11:58.6080000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:11:58.6080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||99.87|99.29|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:11:58.6080000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:11:58.6080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9500|10000|0||100.30|99.32|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:11:58.6080000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:11:58.6080000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:11:58.6080000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:11:58.6530000-07:00|40022472|Zeromus|0001920D|38999306||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:58.6970000-07:00|40022472|Zeromus|0001920E|38973768||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:58.7420000-07:00|10FF0007|Kehabiqo Febiqo|0001920F|112032|129844|10000|10000|0||99.87|99.35|-0.02|3.14|1500|0|0|01|01000769|0|41F00000|| +21|2023-10-06T21:11:58.7420000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40022472|Zeromus|750003|580B0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|38999306|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||99.26|101.43|0.00|3.11|00019216|0|1| +21|2023-10-06T21:11:58.7420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|37A70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|38999306|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8800|10000|||99.87|99.29|0.00|3.14|00019217|0|1| +38|2023-10-06T21:11:58.7420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112032|129844|10000|10000|0||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:11:58.7870000-07:00|40022472|Zeromus|00019210|38973507||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:58.3250000-07:00|Add|40022805||||||||||||||||||||||||||||| +37|2023-10-06T21:11:58.8760000-07:00|40022472|Zeromus|00019212|38967715||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:11:58.4250000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:11:59.0100000-07:00|400227DC|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|756003|2B300000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|38967715|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.09|103.81|0.00|-3.09|00019218|0|1| +37|2023-10-06T21:11:59.0540000-07:00|40022472|Zeromus|00019214|38963245||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:59.0540000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|C7B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38967715|40478540|10000|10000|||100.00|80.10|0.00|0.00|112032|129844|10000|10000|||99.87|99.35|-0.02|3.14|00019219|0|1| +38|2023-10-06T21:11:59.0540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112032|129844|10000|10000|0||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:11:59.0540000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:11:59.0980000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|37B80000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|38963245|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8305|10000|||100.02|104.17|0.00|-3.14|0001921A|0|1| +21|2023-10-06T21:11:59.0980000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|0001921B|0|1| +38|2023-10-06T21:11:59.0980000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:11:59.0980000-07:00|1F0|Mudra|5.47|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +34|2023-10-06T21:11:59.1870000-07:00|40022804|Automaton Queen|40022804|Automaton Queen|01| +261|2023-10-06T21:11:58.7510000-07:00|Change|40022804||| +21|2023-10-06T21:11:59.2760000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|724003|18300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38963245|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9500|10000|||100.30|99.32|0.00|-3.13|0001921C|0|1| +26|2023-10-06T21:11:59.3650000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:11:59.3650000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|750003|3CD70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38963245|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||99.26|101.43|0.00|3.11|0001921D|0|1| +38|2023-10-06T21:11:59.3650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|0||99.87|99.29|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:11:59.3650000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:11:59.3650000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8400|10000|||99.87|99.29|0.00|3.14|81541|81541|8400|10000|||99.87|99.29|0.00|3.14|0001921E|0|1| +261|2023-10-06T21:11:58.9790000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:11:59.4990000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38963245|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||99.87|99.29|0.00|3.14|0001921F|0|1| +37|2023-10-06T21:11:59.5430000-07:00|40022472|Zeromus|00019216|38940706||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:59.5430000-07:00|40022472|Zeromus|00019217|38926459||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:11:59.5430000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|A6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38963245|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|00019220|0|1| +26|2023-10-06T21:11:59.5890000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:11:59.5890000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|256F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38963245|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019221|0|1| +21|2023-10-06T21:11:59.5890000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|554003|6BC60000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|38963245|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|00019222|0|1| +38|2023-10-06T21:11:59.5890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:11:59.5890000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:11:59.5890000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:11:59.7220000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13| +39|2023-10-06T21:11:59.7670000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||97.89|101.43|0.00|3.04| +24|2023-10-06T21:11:59.7670000-07:00|40022472|Zeromus|DoT|0|1C04|38926459|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13| +38|2023-10-06T21:11:59.7670000-07:00|40022472|Zeromus|005A5A00|38919287|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:11:59.8100000-07:00|10FF0003|Gegehi Gehi|73814|73814|9700|10000|||100.30|99.32|0.00|-3.13| +261|2023-10-06T21:11:59.2950000-07:00|Change|10FF0003||||| +39|2023-10-06T21:11:59.8550000-07:00|400227F3|Bunshin|75608|78475|10000|10000|||97.91|101.44|0.00|3.04| +36|2023-10-06T21:11:59.8550000-07:00|0528|3| +37|2023-10-06T21:11:59.9010000-07:00|10FF0004|Buhojaqe Zijaqe|0001921E|81541|81541|10000|10000|0||99.87|99.29|0.00|3.14|1C00|0|0|0| +37|2023-10-06T21:11:59.9010000-07:00|40022472|Zeromus|00019213|38877895||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:11:59.9010000-07:00|10FF0003|Gegehi Gehi|00019213|73814|73814|9700|10000|0||100.30|99.32|-0.02|-3.13|2300|0|0|01|010004D3|0|41F00000|| +37|2023-10-06T21:11:59.9010000-07:00|40022472|Zeromus|0001921C|38871703||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:59.9010000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.87|99.29|0.00|3.14| +38|2023-10-06T21:11:59.9010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||100.30|99.32|-0.02|-3.13|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:11:59.9450000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|750003|7DD00000|4|2E028000|0|0|0|0|0|0|0|0|0|0|0|0|38919287|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||99.97|96.43|0.00|3.14|00019223|0|1| +38|2023-10-06T21:11:59.9450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7200|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:11:59.9450000-07:00|558|Requiescat|22.07|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:11:59.9450000-07:00|10FF0001||||| +261|2023-10-06T21:11:59.4860000-07:00|Change|10FF0001||| +37|2023-10-06T21:11:59.9900000-07:00|40022472|Zeromus|00019219|38820579||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:11:59.9900000-07:00|10FF0007|Kehabiqo Febiqo|113330|129844|10000|10000|||99.87|99.35|-0.02|3.14| +39|2023-10-06T21:11:59.9900000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9300|10000|||99.26|101.43|0.00|3.11| +261|2023-10-06T21:11:59.4860000-07:00|Change|10FF0006||||| +261|2023-10-06T21:11:59.4860000-07:00|Change|10FF0004||| +37|2023-10-06T21:12:00.0340000-07:00|40022472|Zeromus|0001921F|38820288||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:00.0340000-07:00|40022472|Zeromus|00019218|38809232||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:00.0340000-07:00|10FF0009|Zewo Negiwo|81177|81177|8126|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:00.0800000-07:00|40022472|Zeromus|00019220|38806564||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:00.0800000-07:00|10FF000A|Dukaro Nezikaro|00019220|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|01|03000A82|01|C1F00000|| +39|2023-10-06T21:12:00.0800000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7400|10000|||99.97|96.43|0.00|3.14| +21|2023-10-06T21:12:00.0800000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|722003|2CF90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38820579|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9700|10000|||100.30|99.32|-0.02|-3.13|00019224|0|1| +21|2023-10-06T21:12:00.1670000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|23950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38820579|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019225|0|1| +37|2023-10-06T21:12:00.2120000-07:00|40022472|Zeromus|00019221|38796981|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|02|40C6C8B3|| +26|2023-10-06T21:12:00.2120000-07:00|35D|Wildfire|6.21|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|02|40478540|90216| +20|2023-10-06T21:12:00.2120000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.87|99.29|0.00|3.14| +37|2023-10-06T21:12:00.3010000-07:00|40022472|Zeromus|0001921D|38781406||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:00.3010000-07:00|40022472|Zeromus|00019222|38753816||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:00.3010000-07:00|10FF000A|Dukaro Nezikaro|00019222|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|01|03000A82|01|41F00000|| +21|2023-10-06T21:12:00.3010000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|00019226|0|1| +38|2023-10-06T21:12:00.3010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:00.3010000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:11:59.7900000-07:00|Change|40022472||| +261|2023-10-06T21:11:59.7900000-07:00|Change|40022804||| +37|2023-10-06T21:12:00.3900000-07:00|40022472|Zeromus|0001921A|38739552||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:00.3900000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.02|104.17|0.00|-3.14| +261|2023-10-06T21:11:59.9100000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:12:00.5700000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|10990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38739552|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019227|0|1| +21|2023-10-06T21:12:00.5700000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|65F90000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|38739552|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||99.26|101.43|0.00|3.11|00019228|0|1| +261|2023-10-06T21:12:00.0260000-07:00|Change|10FF0006||| +37|2023-10-06T21:12:00.6580000-07:00|40022472|Zeromus|00019224|38728039||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:00.7020000-07:00|10FF000A|Dukaro Nezikaro|00019226|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|01|080004A2|0|40C00000|| +39|2023-10-06T21:12:00.7020000-07:00|400227DC|Demi-Bahamut|66800|69928|10000|10000|||101.09|103.81|0.00|-3.09| +38|2023-10-06T21:12:00.7020000-07:00|400227DC|Demi-Bahamut|005A5A00|0|69928|0|10000|0||101.09|103.81|0.00|-3.09|0|0|0|||| +30|2023-10-06T21:12:00.7020000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|400227DC|Demi-Bahamut|00|69928|81809| +30|2023-10-06T21:12:00.7020000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400227DC|Demi-Bahamut|00|69928|73814| +38|2023-10-06T21:12:00.7020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:12:00.2420000-07:00|Change|400227DC||||||| +261|2023-10-06T21:12:00.2420000-07:00|Change|400227DC||||||| +38|2023-10-06T21:12:00.7450000-07:00|40022809||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:12:00.7460000-07:00|40022809||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:12:00.7910000-07:00|40022472|Zeromus|00019225|38718930||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:00.7920000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|A780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38728039|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||99.97|96.43|0.00|3.14|00019229|0|1| +31|2023-10-06T21:12:00.7920000-07:00|10FF0001||||| +261|2023-10-06T21:12:00.2420000-07:00|Add|40022809||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:12:00.3340000-07:00|40022809|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.35|99.69|0.00|-0.03| +37|2023-10-06T21:12:00.8360000-07:00|40022472|Zeromus|00019223|38686722||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:00.3340000-07:00|Change|40022809||| +21|2023-10-06T21:12:00.8810000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|880F|A788000|0|0|0|0|0|0|0|0|0|0|113330|129844|10000|10000|||99.87|99.35|-0.02|3.14|113330|129844|10000|10000|||99.87|99.35|-0.02|3.14|0001922A|0|1| +21|2023-10-06T21:12:00.8810000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|752003|BAE10000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|38718930|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9700|10000|||100.30|99.32|-0.02|-3.13|0001922B|0|1| +38|2023-10-06T21:12:00.8810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9300|10000|0||100.30|99.32|-0.02|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:00.8810000-07:00|7B3|Manafication|6.98|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +261|2023-10-06T21:12:00.3340000-07:00|Change|10FF0003||| +261|2023-10-06T21:12:00.3340000-07:00|Change|10FF0003||| +37|2023-10-06T21:12:00.9250000-07:00|10FF0001|Sesuga Sapisuga|000191F9|1|129071|7400|10000|0||99.97|96.43|0.00|3.14|1300|0|0|01|0A0006E9|0|41200000|| +26|2023-10-06T21:12:00.9250000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +261|2023-10-06T21:12:00.4250000-07:00|Change|10FF0001||| +37|2023-10-06T21:12:00.9700000-07:00|10FF0004|Buhojaqe Zijaqe|000191F9|1|81541|10000|10000|0||99.87|99.29|0.00|3.14|1C01|0|0|01|080006E9|0|41200000|| +26|2023-10-06T21:12:00.9700000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +261|2023-10-06T21:12:00.5160000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:12:01.0150000-07:00|10FF0007|Kehabiqo Febiqo|000191F9|1|129844|10000|10000|0||99.87|99.35|-0.02|3.14|1502|0|0|01|010006E9|0|41200000|| +26|2023-10-06T21:12:01.0150000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +21|2023-10-06T21:12:01.0150000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|5BFE0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|38686722|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8126|10000|||100.02|104.17|0.00|-3.14|0001922C|0|1| +37|2023-10-06T21:12:01.0590000-07:00|10FF0008|Kokosaze Lulusaze|000191F9|1|90216|10000|10000|0||100.18|99.72|0.00|-3.13|1F03|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:12:01.0590000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +26|2023-10-06T21:12:01.0590000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:12:01.0590000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|319F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38686722|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.72|0.00|-3.13|0001922D|0|1| +261|2023-10-06T21:12:00.5160000-07:00|Change|40022485||||||||| +261|2023-10-06T21:12:00.5160000-07:00|Change|4002247F||||||||| +261|2023-10-06T21:12:00.5160000-07:00|Change|40022486||||||||| +261|2023-10-06T21:12:00.5160000-07:00|Change|40022481||||||||| +261|2023-10-06T21:12:00.5160000-07:00|Change|40022482||||||||| +261|2023-10-06T21:12:00.5160000-07:00|Change|40022484||||||||| +261|2023-10-06T21:12:00.5160000-07:00|Change|40022483||||||||| +261|2023-10-06T21:12:00.5160000-07:00|Change|40022480||||||||| +37|2023-10-06T21:12:01.1030000-07:00|10FF0003|Gegehi Gehi|000191F9|1|73814|9300|10000|0||100.30|99.32|-0.02|-3.13|2304|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:12:01.1030000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +21|2023-10-06T21:12:01.1030000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40022472|Zeromus|710003|3CE50000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|38686722|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.89|101.43|0.00|3.04|0001922E|0|1| +38|2023-10-06T21:12:01.1030000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:01.1030000-07:00|4A2|Ten Chi Jin|5.55|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:12:01.1480000-07:00|10FF000A|Dukaro Nezikaro|000191F9|1|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E05|0|0|01|090006E9|0|41200000|| +26|2023-10-06T21:12:01.1480000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|40478540| +20|2023-10-06T21:12:01.1480000-07:00|4002247F|Zeromus|8B42|Abyssal Echoes|4002247F|Zeromus|15.700|83.50|83.50|0.00|0.00| +20|2023-10-06T21:12:01.1480000-07:00|40022480|Zeromus|8B41|unknown_8b41|40022480|Zeromus|8.700|100.00|100.00|0.00|-2.36| +20|2023-10-06T21:12:01.1480000-07:00|40022481|Zeromus|8B42|Abyssal Echoes|40022481|Zeromus|15.700|116.50|83.50|0.00|0.00| +20|2023-10-06T21:12:01.1480000-07:00|40022482|Zeromus|8B41|unknown_8b41|40022482|Zeromus|8.700|100.00|100.00|0.00|2.36| +20|2023-10-06T21:12:01.1480000-07:00|40022483|Zeromus|8B42|Abyssal Echoes|40022483|Zeromus|15.700|88.00|100.00|0.00|0.00| +20|2023-10-06T21:12:01.1480000-07:00|40022484|Zeromus|8B40|unknown_8b40|40022484|Zeromus|8.700|100.00|100.00|0.00|-1.57| +20|2023-10-06T21:12:01.1480000-07:00|40022485|Zeromus|8B42|Abyssal Echoes|40022485|Zeromus|15.700|100.00|112.00|0.00|0.00| +20|2023-10-06T21:12:01.1480000-07:00|40022486|Zeromus|8B40|unknown_8b40|40022486|Zeromus|8.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:12:01.1480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|3A630000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|38686722|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|81541|10000|10000|||99.87|99.29|0.00|3.14|0001922F|0|1| +37|2023-10-06T21:12:01.1930000-07:00|10FF0006|Wowobora Gogobora|000191F9|1|81809|9000|10000|19||99.26|101.43|0.00|3.11|1B06|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:12:01.1930000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +37|2023-10-06T21:12:01.1930000-07:00|40022472|Zeromus|00019228|38660617||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:01.1930000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|750003|3D120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38686722|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||99.26|101.43|0.00|3.11|00019230|0|1| +38|2023-10-06T21:12:01.1930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|1|81809|9000|10000|19||99.26|101.43|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:12:01.1930000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +37|2023-10-06T21:12:01.2370000-07:00|10FF0009|Zewo Negiwo|000191F9|1|81177|7726|10000|0||100.02|104.17|0.00|-3.14|1807|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:12:01.2370000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0009|Zewo Negiwo|00|81177|40478540| +21|2023-10-06T21:12:01.2810000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|D930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38660617|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|129844|10000|10000|||99.87|99.35|-0.02|3.14|00019231|0|1| +37|2023-10-06T21:12:01.3260000-07:00|40022472|Zeromus|00019227|38656368||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:01.3260000-07:00|40022472|Zeromus|00019229|38653688||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:01.3260000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38660617|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|73814|9300|10000|||100.30|99.32|-0.02|-3.13|00019232|0|1| +21|2023-10-06T21:12:01.4150000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38653688|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|81809|9000|10000|||99.26|101.43|0.00|3.11|00019233|0|1| +37|2023-10-06T21:12:01.4590000-07:00|10FF0007|Kehabiqo Febiqo|0001922A|1|129844|10000|10000|8||99.87|99.35|-0.02|3.14|1500|0|0|03|0B000A76|0190|41000000|||||||||| +26|2023-10-06T21:12:01.4590000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T21:12:01.4590000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:12:01.4590000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:12:01.4590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|1|129844|10000|10000|8||99.87|99.35|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:00.9760000-07:00|Change|10FF0009||||||||||||||| +24|2023-10-06T21:12:01.5490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|1694|1|90216|10000|10000|||100.18|99.72|0.00|-3.13|10FF0009|Zewo Negiwo|0|1|81177|7726|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:01.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DD9|1|129844|10000|10000|||99.87|99.35|-0.02|3.14|10FF0009|Zewo Negiwo|0|1|81177|7726|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:01.5490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DEA|1|81541|9600|10000|||99.87|99.29|0.00|3.14|10FF0009|Zewo Negiwo|0|1|81177|7726|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:01.5490000-07:00|10FF0003|Gegehi Gehi|HoT|777|1708|1|73814|9300|10000|||100.30|99.32|-0.02|-3.13|10FF0009|Zewo Negiwo|0|1|81177|7726|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:01.5490000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E6D|1|81809|9000|10000|||99.26|101.43|0.00|3.11|10FF0009|Zewo Negiwo|0|1|81177|7726|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:01.5490000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DDC|1|82773|10000|10000|||97.89|101.43|0.00|3.04|10FF0009|Zewo Negiwo|0|1|81177|7726|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:01.5490000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DE5|1|129071|7400|10000|||99.97|96.43|0.00|3.14|10FF0009|Zewo Negiwo|0|1|81177|7726|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:01.5490000-07:00|10FF0009|Zewo Negiwo|HoT|777|DFD|1|81177|7726|10000|||100.02|104.17|0.00|-3.14|10FF0009|Zewo Negiwo|0|1|81177|7726|10000|||100.02|104.17|0.00|-3.14| +21|2023-10-06T21:12:01.5490000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|9B110000|200004|44768000|0|0|0|0|0|0|0|0|0|0|0|0|38653688|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|129844|10000|10000|||99.87|99.35|-0.02|3.14|00019234|0|1| +38|2023-10-06T21:12:01.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|3546|129844|10000|10000|8||99.87|99.35|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:01.5490000-07:00|499|Inner Release|6.53|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +26|2023-10-06T21:12:01.5490000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:12:01.5490000-07:00|10FF0009|Zewo Negiwo|005A5A18|3582|81177|7726|10000|0||100.02|104.17|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:01.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:12:01.5490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|5781|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:01.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:01.5490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|3694|81809|9000|10000|19||99.26|101.43|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:01.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:01.5490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|3558|129071|7400|10000|0||99.97|96.43|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:01.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:12:01.5490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3563|81541|9600|10000|0||99.87|99.29|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:01.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:12:01.5490000-07:00|10FF0003|Gegehi Gehi|005A5A23|5897|73814|9300|10000|0||100.30|99.32|-0.02|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:01.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:12:01.5490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|3549|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:01.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +22|2023-10-06T21:12:01.5940000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0009|Zewo Negiwo|FC7A0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|00019235|0|8| +22|2023-10-06T21:12:01.5940000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|FC7A0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3694|81809|9000|10000|||99.26|101.43|0.00|3.11|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|00019235|1|8| +22|2023-10-06T21:12:01.5940000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|FC7A0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3549|82773|10000|10000|||97.89|101.43|0.00|3.04|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|00019235|2|8| +22|2023-10-06T21:12:01.5940000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|FC7A0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5781|90216|10000|10000|||100.18|99.72|0.00|-3.13|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|00019235|3|8| +22|2023-10-06T21:12:01.5940000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|FC7A0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3546|129844|10000|10000|||99.87|99.35|-0.02|3.14|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|00019235|4|8| +22|2023-10-06T21:12:01.5940000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|FC7A0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5897|73814|9300|10000|||100.30|99.32|-0.02|-3.13|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|00019235|5|8| +22|2023-10-06T21:12:01.5940000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|FC7A0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3563|81541|9600|10000|||99.87|99.29|0.00|3.14|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|00019235|6|8| +22|2023-10-06T21:12:01.5940000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|FC7A0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3558|129071|7400|10000|||99.97|96.43|0.00|3.14|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|00019235|7|8| +261|2023-10-06T21:12:01.0860000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:12:01.0860000-07:00|Change|40022485||||||||||||| +261|2023-10-06T21:12:01.0860000-07:00|Change|40022484||||||||||||| +261|2023-10-06T21:12:01.0860000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:12:01.0860000-07:00|Change|40022480||||||||||||| +261|2023-10-06T21:12:01.0860000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:12:01.0860000-07:00|Change|40022481||||||||||||| +261|2023-10-06T21:12:01.0860000-07:00|Change|40022486||||||||||||| +21|2023-10-06T21:12:01.6380000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1CE70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38653688|40478540|10000|10000|||100.00|80.10|0.00|0.00|5781|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019236|0|1| +37|2023-10-06T21:12:01.6830000-07:00|40022472|Zeromus|0001922D|38640985|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|03|4097B63D|| +26|2023-10-06T21:12:01.6830000-07:00|35D|Wildfire|4.74|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|03|40478540|90216| +21|2023-10-06T21:12:01.6830000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|13050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38653688|40478540|10000|10000|||100.00|80.10|0.00|0.00|5897|73814|9300|10000|||100.30|99.32|-0.02|-3.13|00019237|0|1| +21|2023-10-06T21:12:01.7710000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3563|81541|9600|10000|||99.87|99.29|0.00|3.14|3563|81541|9600|10000|||99.87|99.29|0.00|3.14|00019238|0|1| +34|2023-10-06T21:12:01.7710000-07:00|40022809|Carbuncle|40022809|Carbuncle|01| +38|2023-10-06T21:12:01.7710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3563|81541|9600|10000|0||99.87|99.29|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:01.7710000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:12:01.2870000-07:00|Change|40022809||| +37|2023-10-06T21:12:01.8160000-07:00|40022472|Zeromus|00019231|38637510||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:01.8600000-07:00|40022472|Zeromus|00019232|38637472||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:01.9500000-07:00|40022472|Zeromus|00019233|38637301||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:01.9500000-07:00|40022472|Zeromus|0001922F|38622354||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:01.9500000-07:00|10FF0004|Buhojaqe Zijaqe|0001922F|3563|81541|9600|10000|0||99.87|99.29|0.00|3.14|1C00|0|0|01|09000768|0|C1700000|| +37|2023-10-06T21:12:01.9940000-07:00|40022472|Zeromus|0001922E|38606765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:01.9940000-07:00|10FF000A|Dukaro Nezikaro|0001922E|3549|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|01|080004A2|01|40969FB8|| +261|2023-10-06T21:12:01.4850000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:12:02.0830000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40022472|Zeromus|554003|71C60000|900000E|4A28000|200000F|A828000|0|0|0|0|0|0|0|0|0|0|38606765|40478540|10000|10000|||100.00|80.10|0.00|0.00|3549|82773|10000|10000|||97.89|101.43|0.00|3.04|00019239|0|1| +38|2023-10-06T21:12:02.0830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|3549|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:02.0830000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +26|2023-10-06T21:12:02.0830000-07:00|4A2|Ten Chi Jin|4.57|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:12:02.1280000-07:00|40022472|Zeromus|00019230|38591131||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:02.1720000-07:00|40022472|Zeromus|00019234|38551434||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:02.1720000-07:00|10FF0007|Kehabiqo Febiqo|00019234|21072||||||99.87|99.35|-0.02|3.14| +38|2023-10-06T21:12:02.1720000-07:00|10FF0009|Zewo Negiwo|005A5A18|3582|81177|7726|10000|0||100.02|104.17|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:12:02.1720000-07:00|9D|Presence of Mind|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:12:02.3050000-07:00|40022472|Zeromus|0001922C|38527884||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:02.3050000-07:00|40022472|Zeromus|00019237|38523015||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|37590000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|0|9| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|200004|58C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3694|81809|9000|10000|||99.26|101.43|0.00|3.11|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|1|9| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|380E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3549|82773|10000|10000|||97.89|101.43|0.00|3.04|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|2|9| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|4BA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38551434|40478540|10000|10000|||100.00|80.10|0.00|0.00|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|3|9| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|200004|59870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5781|90216|10000|10000|||100.18|99.72|0.00|-3.13|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|4|9| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|35E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21072|129844|10000|10000|||99.87|99.35|-0.02|3.14|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|5|9| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|4|36840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5897|73814|9300|10000|||100.30|99.32|-0.02|-3.13|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|6|9| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|36E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3563|81541|9600|10000|||99.87|99.29|0.00|3.14|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|7|9| +22|2023-10-06T21:12:02.3050000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|4|37040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3558|129071|7400|10000|||99.97|96.43|0.00|3.14|3582|81177|7726|10000|||100.02|104.17|0.00|-3.14|0001923A|8|9| +37|2023-10-06T21:12:02.3940000-07:00|10FF0009|Zewo Negiwo|00019235|3582|81177|7726|10000|0||100.02|104.17|0.00|-3.14|1800|0|0|01|030004C3|0|41200000|| +26|2023-10-06T21:12:02.3940000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:12:02.3940000-07:00|10FF0004|Buhojaqe Zijaqe|00019238|3563|81541|9600|10000|0||99.87|99.29|0.00|3.14|1C00|0|0|01|09000768|0|41700000|| +21|2023-10-06T21:12:02.3940000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|726003|37580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38551434|40478540|10000|10000|||100.00|80.10|0.00|0.00|5897|73814|9300|10000|||100.30|99.32|-0.02|-3.13|0001923B|0|1| +38|2023-10-06T21:12:02.3940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3563|81541|9600|10000|0||99.87|99.29|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:02.4390000-07:00|40022472|Zeromus|00019236|38515616||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:02.4390000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|750003|8F7C0000|4|2C568000|0|0|0|0|0|0|0|0|0|0|0|0|38523015|40478540|10000|10000|||100.00|80.10|0.00|0.00|3558|129071|7400|10000|||99.97|96.43|0.00|3.14|0001923C|0|1| +38|2023-10-06T21:12:02.4390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|3558|129071|6400|10000|0||99.97|96.43|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:02.4390000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:12:02.4390000-07:00|10FF0001||||| +261|2023-10-06T21:12:01.9320000-07:00|Change|10FF0001||| +37|2023-10-06T21:12:02.5270000-07:00|10FF0006|Wowobora Gogobora|00019235|3694|81809|9000|10000|19||99.26|101.43|0.00|3.11|1B01|0|0|01|040004C3|0|41200000|| +26|2023-10-06T21:12:02.5270000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +26|2023-10-06T21:12:02.5270000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:12:02.5270000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|3B320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38523015|40478540|10000|10000|||100.00|80.10|0.00|0.00|5781|90216|10000|10000|||100.18|99.72|0.00|-3.13|0001923D|0|1| +20|2023-10-06T21:12:02.6160000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.87|99.29|0.00|3.14| +37|2023-10-06T21:12:02.6610000-07:00|10FF000A|Dukaro Nezikaro|00019235|3549|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E02|0|0|02|03000A82|02|C1F00000|||||| +26|2023-10-06T21:12:02.6610000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:12:02.7050000-07:00|40022472|Zeromus|0001922B|38467775||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:02.7050000-07:00|10FF0008|Kokosaze Lulusaze|6683|90216|10000|10000|||100.18|99.72|0.00|-3.13| +39|2023-10-06T21:12:02.7490000-07:00|10FF000A|Dukaro Nezikaro|4376|82773|10000|10000|||97.89|101.43|0.00|3.04| +24|2023-10-06T21:12:02.7490000-07:00|40022472|Zeromus|DoT|0|2ABD|38515616|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|5781|90216|10000|10000|||100.18|99.72|0.00|-3.13| +38|2023-10-06T21:12:02.7490000-07:00|40022472|Zeromus|005A5A00|38456834|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:02.7940000-07:00|10FF0008|Kokosaze Lulusaze|00019235|6683|90216|10000|10000|0||100.18|99.72|0.00|-3.13|1F03|0|0|01|080004C3|0|41200000|| +26|2023-10-06T21:12:02.7940000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +37|2023-10-06T21:12:02.7940000-07:00|40022472|Zeromus|00019239|38427708||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:02.7940000-07:00|10FF000A|Dukaro Nezikaro|00019239|4376|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|02|03000A82|02|41F00000|||||| +39|2023-10-06T21:12:02.7940000-07:00|10FF0003|Gegehi Gehi|6635|73814|9500|10000|||100.30|99.32|-0.02|-3.13| +38|2023-10-06T21:12:02.7940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|4376|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:02.2630000-07:00|Change|10FF0003||| +39|2023-10-06T21:12:02.8380000-07:00|400227F3|Bunshin|75608|78475|10000|10000|||97.91|101.44|0.00|3.04| +36|2023-10-06T21:12:02.8380000-07:00|0604|3| +39|2023-10-06T21:12:02.8820000-07:00|10FF0004|Buhojaqe Zijaqe|4378|81541|9800|10000|||99.87|99.29|0.00|3.14| +37|2023-10-06T21:12:02.9270000-07:00|10FF0007|Kehabiqo Febiqo|00019235|21072|129844|10000|10000|8||99.87|99.35|-0.02|3.14|1504|0|0|01|0E0004C3|0|41200000|| +26|2023-10-06T21:12:02.9270000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +36|2023-10-06T21:12:02.9720000-07:00|0730|3| +37|2023-10-06T21:12:02.9720000-07:00|10FF0009|Zewo Negiwo|0001923A|17751|81177|8226|10000|0||100.02|104.17|0.00|-3.14|1800|0|0|0| +37|2023-10-06T21:12:02.9720000-07:00|40022472|Zeromus|0001923B|38413540||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:02.9720000-07:00|10FF0007|Kehabiqo Febiqo|22370|129844|10000|10000|||99.87|99.35|-0.02|3.14| +39|2023-10-06T21:12:02.9720000-07:00|10FF0006|Wowobora Gogobora|4512|81809|9200|10000|||99.26|101.43|0.00|3.11| +20|2023-10-06T21:12:02.9720000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|100.02|104.17|0.00|-3.14| +261|2023-10-06T21:12:02.4500000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:12:02.4500000-07:00|Change|10FF0006||| +39|2023-10-06T21:12:03.0170000-07:00|10FF0009|Zewo Negiwo|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +21|2023-10-06T21:12:03.0170000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|38413540|40478540|10000|10000|||100.00|80.10|0.00|0.00|4512|81809|9200|10000|||99.26|101.43|0.00|3.11|0001923E|0|1| +38|2023-10-06T21:12:03.0170000-07:00|40022809|Carbuncle|005A5A00|0|77698|0|10000|0||99.35|99.69|0.00|-0.03|0|0|0||||||| +26|2023-10-06T21:12:03.0170000-07:00|30|Well Fed|1750.24|10FF0006|Wowobora Gogobora|40022809|Carbuncle|2964|77698|81809| +261|2023-10-06T21:12:02.5630000-07:00|Change|40022809||| +38|2023-10-06T21:12:03.0620000-07:00|4002280F||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:12:03.0620000-07:00|10FF0003|Gegehi Gehi|00019235|6635|73814|9500|10000|0||100.30|99.32|-0.02|-3.13|2305|0|0|01|080004C3|0|41200000|| +26|2023-10-06T21:12:03.0620000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +39|2023-10-06T21:12:03.0620000-07:00|10FF0001|Sesuga Sapisuga|4848|129071|6600|10000|||99.97|96.43|0.00|3.14| +21|2023-10-06T21:12:03.0620000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|11270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38413540|40478540|10000|10000|||100.00|80.10|0.00|0.00|3558|129071|6400|10000|||99.97|96.43|0.00|3.14|0001923F|0|1| +38|2023-10-06T21:12:03.0620000-07:00|4002280F||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +31|2023-10-06T21:12:03.0620000-07:00|10FF0001||||| +261|2023-10-06T21:12:02.5630000-07:00|Change|10FF0004||||||||||||||| +36|2023-10-06T21:12:03.1060000-07:00|085C|3| +37|2023-10-06T21:12:03.1060000-07:00|10FF0006|Wowobora Gogobora|0001923A|27233||||||99.26|101.43|0.00|3.11| +21|2023-10-06T21:12:03.1060000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40022472|Zeromus|656003|88630000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|38413540|40478540|10000|10000|||100.00|80.10|0.00|0.00|4376|82773|10000|10000|||97.89|101.43|0.00|3.04|00019240|0|1| +38|2023-10-06T21:12:03.1060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|4376|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:03.1060000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:12:03.1060000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:12:03.1510000-07:00|40022472|Zeromus|0001923D|38398386|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|04|405178BC|| +26|2023-10-06T21:12:03.1510000-07:00|35D|Wildfire|3.27|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|04|40478540|90216| +21|2023-10-06T21:12:03.1510000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|266B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38413540|40478540|10000|10000|||100.00|80.10|0.00|0.00|6683|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019241|0|1| +21|2023-10-06T21:12:03.1510000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13390F|A748000|0|0|0|0|0|0|0|0|0|0|4848|129071|6600|10000|||99.97|96.43|0.00|3.14|4848|129071|6600|10000|||99.97|96.43|0.00|3.14|00019242|0|1| +38|2023-10-06T21:12:03.1510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|4848|129071|6600|10000|0||99.97|96.43|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:03.1510000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:12:03.1510000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:12:03.1510000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:12:03.1510000-07:00|10FF0001||||| +37|2023-10-06T21:12:03.1950000-07:00|10FF0004|Buhojaqe Zijaqe|00019235|4378|81541|9800|10000|0||99.87|99.29|0.00|3.14|1C06|0|0|01|0A0004C3|0|41200000|| +26|2023-10-06T21:12:03.1950000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +261|2023-10-06T21:12:02.6760000-07:00|Add|4002280F||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:12:02.6760000-07:00|4002280F|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||100.99|103.26|0.00|3.11| +36|2023-10-06T21:12:03.2390000-07:00|0988|3| +37|2023-10-06T21:12:03.2390000-07:00|10FF000A|Dukaro Nezikaro|0001923A|18726|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E02|0|0|01|080001FB|0|C1A00000|| +21|2023-10-06T21:12:03.2390000-07:00|40022804|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|1EE00000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|38398386|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.97|101.46|0.00|-3.13|00019243|0|1| +21|2023-10-06T21:12:03.2390000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38398386|40478540|10000|10000|||100.00|80.10|0.00|0.00|6683|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019244|0|1| +261|2023-10-06T21:12:02.7970000-07:00|Change|4002280F||||| +37|2023-10-06T21:12:03.3280000-07:00|10FF0001|Sesuga Sapisuga|00019235|4848|129071|6600|10000|0||99.97|96.43|0.00|3.14|1307|0|0|01|0D0004C3|0|41200000|| +26|2023-10-06T21:12:03.3280000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:12:03.3280000-07:00|40022472|Zeromus|0001923C|38361654||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:03.3280000-07:00|10FF0001|Sesuga Sapisuga|0001923C|16198||||||99.97|96.43|0.00|3.14| +21|2023-10-06T21:12:03.3280000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|750003|80940000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|38398386|40478540|10000|10000|||100.00|80.10|0.00|0.00|6635|73814|9500|10000|||100.30|99.32|-0.02|-3.13|00019245|0|1| +38|2023-10-06T21:12:03.3280000-07:00|10FF0003|Gegehi Gehi|005A5A23|6635|73814|9100|10000|0||100.30|99.32|-0.02|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:03.3280000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +261|2023-10-06T21:12:02.9160000-07:00|Change|10FF0003||| +37|2023-10-06T21:12:03.3720000-07:00|40022472|Zeromus|0001923A|38342287||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:12:03.5060000-07:00|0AB4|3| +37|2023-10-06T21:12:03.5060000-07:00|10FF0008|Kokosaze Lulusaze|0001923A|29602||||||100.18|99.72|0.00|-3.13| +261|2023-10-06T21:12:03.0320000-07:00|Change|10FF0001||| +261|2023-10-06T21:12:03.0320000-07:00|Change|10FF0009||||| +21|2023-10-06T21:12:03.5510000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|5B740000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|38342287|40478540|10000|10000|||100.00|80.10|0.00|0.00|4378|81541|9800|10000|||99.87|99.29|0.00|3.14|00019246|0|1| +37|2023-10-06T21:12:03.5960000-07:00|40022472|Zeromus|0001923F|38337896||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:03.6400000-07:00|10FF0007|Kehabiqo Febiqo|0001923A|36166||||||99.87|99.35|-0.02|3.14| +36|2023-10-06T21:12:03.7740000-07:00|0BE0|3| +37|2023-10-06T21:12:03.7740000-07:00|10FF0003|Gegehi Gehi|0001923A|20591||||||100.30|99.32|-0.02|-3.13| +37|2023-10-06T21:12:03.7740000-07:00|40022472|Zeromus|00019241|38328061||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:03.7740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|10FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38337896|40478540|10000|10000|||100.00|80.10|0.00|0.00|18726|82773|10000|10000|||97.89|101.43|0.00|3.04|00019247|0|1| +21|2023-10-06T21:12:03.8640000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|18726|82773|10000|10000|||97.89|101.43|0.00|3.04|18726|82773|10000|10000|||97.89|101.43|0.00|3.04|00019248|0|1| +38|2023-10-06T21:12:03.8640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18726|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:03.8640000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +26|2023-10-06T21:12:03.8640000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +36|2023-10-06T21:12:03.9080000-07:00|0D0C|3| +37|2023-10-06T21:12:03.9080000-07:00|10FF0004|Buhojaqe Zijaqe|0001923A|18426||||||99.87|99.29|0.00|3.14| +37|2023-10-06T21:12:03.9980000-07:00|40022472|Zeromus|00019243|38320157||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:03.9980000-07:00|40022472|Zeromus|00019244|38317665||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:03.9980000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|9C910000|4|28088000|0|0|0|0|0|0|0|0|0|0|0|0|38328061|40478540|10000|10000|||100.00|80.10|0.00|0.00|36166|129844|10000|10000|||99.87|99.35|-0.02|3.14|00019249|0|1| +26|2023-10-06T21:12:03.9980000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:12:03.9980000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|271B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38328061|40478540|10000|10000|||100.00|80.10|0.00|0.00|29602|90216|10000|10000|||100.18|99.72|0.00|-3.13|0001924A|0|1| +38|2023-10-06T21:12:03.9980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|36166|129844|10000|10000|8||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:03.9980000-07:00|499|Inner Release|4.08|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T21:12:03.6230000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:12:04.0420000-07:00|10FF0001|Sesuga Sapisuga|0001923A|30282||||||99.97|96.43|0.00|3.14| +37|2023-10-06T21:12:04.0870000-07:00|40022472|Zeromus|00019240|38282750||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:04.0870000-07:00|10FF000A|Dukaro Nezikaro|00019240|18726|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|01|08000A81|0|C1F00000|| +39|2023-10-06T21:12:04.1320000-07:00|40022804|Automaton Queen|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05| +22|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|5A120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924B|0|8| +22|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|5B490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36166|129844|10000|10000|||99.87|99.35|-0.02|3.14|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924B|1|8| +22|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|5CCC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20591|73814|9100|10000|||100.30|99.32|-0.02|-3.13|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924B|2|8| +22|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|5BCC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29602|90216|10000|10000|||100.18|99.72|0.00|-3.13|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924B|3|8| +22|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|5D140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27233|81809|9200|10000|||99.26|101.37|-0.01|-3.10|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924B|4|8| +22|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|59320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16198|129071|6600|10000|||99.97|96.43|0.00|3.14|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924B|5|8| +22|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000A|Dukaro Nezikaro|200004|59680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18726|82773|10000|10000|||97.89|101.43|0.00|3.04|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924B|6|8| +22|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0009|Zewo Negiwo|200004|59A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924B|7|8| +38|2023-10-06T21:12:04.1760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|18426|81541|9400|10000|0||99.87|99.29|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:04.1760000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:12:03.7330000-07:00|Change|4002280F||| +38|2023-10-06T21:12:04.2660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18726|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:04.3100000-07:00|40022472|Zeromus|00019247|38278399||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:04.3100000-07:00|10FF000A|Dukaro Nezikaro|00019247|18726|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|01|08000A81|0|C1F00000|| +37|2023-10-06T21:12:04.3550000-07:00|40022472|Zeromus|00019246|38254987||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:12:04.4000000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|200004|373C0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|0001924C|0|8| +22|2023-10-06T21:12:04.4000000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|23030000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|18726|82773|10000|10000|||97.89|101.43|0.00|3.04|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|0001924C|1|8| +22|2023-10-06T21:12:04.4000000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|22A30000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|29602|90216|10000|10000|||100.18|99.72|0.00|-3.13|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|0001924C|2|8| +22|2023-10-06T21:12:04.4000000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|200004|380D0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|27233|81809|9200|10000|||99.20|99.94|0.00|-3.12|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|0001924C|3|8| +22|2023-10-06T21:12:04.4000000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|22150000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|36166|129844|10000|10000|||99.87|99.35|-0.02|3.14|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|0001924C|4|8| +22|2023-10-06T21:12:04.4000000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|4|22390000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|20591|73814|9100|10000|||100.30|99.32|-0.02|-3.13|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|0001924C|5|8| +22|2023-10-06T21:12:04.4000000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|23380000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|0001924C|6|8| +22|2023-10-06T21:12:04.4000000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|232C0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|30282|129071|6600|10000|||99.97|96.43|0.00|3.14|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|0001924C|7|8| +261|2023-10-06T21:12:04.0870000-07:00|Remove|400227DC| +37|2023-10-06T21:12:04.4890000-07:00|10FF000A|Dukaro Nezikaro|00019248|18726|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E00|0|0|01|08000A81|0|41F00000|| +38|2023-10-06T21:12:04.4890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18726|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:04.5340000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|DE2|29602|90216|10000|10000|||100.18|99.72|0.00|-3.13|10FF0009|Zewo Negiwo|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:04.5340000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E99|36166|129844|10000|10000|||99.87|99.35|-0.02|3.14|10FF0009|Zewo Negiwo|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:04.5340000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E35|18426|81541|9400|10000|||99.87|99.29|0.00|3.14|10FF0009|Zewo Negiwo|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:04.5340000-07:00|10FF0003|Gegehi Gehi|HoT|777|DFE|20591|73814|9100|10000|||100.30|99.32|-0.02|-3.13|10FF0009|Zewo Negiwo|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:04.5340000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DF7|27233|81809|9200|10000|||99.20|99.94|0.00|-3.12|10FF0009|Zewo Negiwo|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +04|2023-10-06T21:12:04.0870000-07:00|400227DC|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|69928|0|10000|||101.09|103.81|0.00|-3.09| +24|2023-10-06T21:12:04.5340000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|167F|18726|82773|10000|10000|||97.89|101.43|0.00|3.04|10FF0009|Zewo Negiwo|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:04.5340000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|1650|30282|129071|6600|10000|||99.97|96.43|0.00|3.14|10FF0009|Zewo Negiwo|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +24|2023-10-06T21:12:04.5340000-07:00|10FF0009|Zewo Negiwo|HoT|777|E5B|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14|10FF0009|Zewo Negiwo|0|18562|81177|8447|10000|||100.02|104.17|0.00|-3.14| +38|2023-10-06T21:12:04.5340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|39903|129844|10000|10000|8||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:04.5340000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:12:04.5340000-07:00|10FF0009|Zewo Negiwo|005A5A18|22237|81177|7447|10000|0||100.02|104.17|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:04.5340000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:12:04.5340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|33156|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:04.5340000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:04.5340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|30808|81809|9200|10000|19||99.20|99.94|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:04.5340000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:04.5340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|35994|129071|6600|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:04.5340000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:12:04.5340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|22063|81541|9400|10000|0||99.87|99.29|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:04.5340000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:12:04.5340000-07:00|10FF0003|Gegehi Gehi|005A5A23|24173|73814|9100|10000|0||100.30|99.32|-0.02|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:04.5340000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:12:04.5340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24485|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:04.5340000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:12:04.0870000-07:00|Change|10FF0009||||||||||||||| +24|2023-10-06T21:12:04.5780000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1BF8|35994|129071|6600|10000|||99.97|96.43|0.00|3.14|10FF0009|Zewo Negiwo|0|22237|81177|7447|10000|||100.02|104.17|0.00|-3.14| +21|2023-10-06T21:12:04.5780000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|1040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38254987|40478540|10000|10000|||100.00|80.10|0.00|0.00|30808|81809|9200|10000|||99.20|99.84|0.00|-3.13|0001924D|0|1| +38|2023-10-06T21:12:04.5780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|43154|129071|6600|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:04.6220000-07:00|40022472|Zeromus|00019249|38214906||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:04.6220000-07:00|10FF0007|Kehabiqo Febiqo|00019249|50151||||||99.87|99.35|-0.02|3.14| +37|2023-10-06T21:12:04.6220000-07:00|40022472|Zeromus|0001924A|38204895|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|05|3FE686F9|| +26|2023-10-06T21:12:04.6220000-07:00|35D|Wildfire|1.80|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|05|40478540|90216| +21|2023-10-06T21:12:04.6220000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38254987|40478540|10000|10000|||100.00|80.10|0.00|0.00|22063|81541|9400|10000|||99.87|99.29|0.00|3.14|0001924E|0|1| +21|2023-10-06T21:12:04.6660000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|16170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38254987|40478540|10000|10000|||100.00|80.10|0.00|0.00|39903|129844|10000|10000|||99.87|99.35|-0.02|3.14|0001924F|0|1| +21|2023-10-06T21:12:04.6660000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|15840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38254987|40478540|10000|10000|||100.00|80.10|0.00|0.00|33156|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019250|0|1| +37|2023-10-06T21:12:04.8000000-07:00|10FF0004|Buhojaqe Zijaqe|0001924B|45121||||||99.87|99.29|0.00|3.14| +21|2023-10-06T21:12:04.8000000-07:00|40022804|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|1D4F0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|38204895|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05|00019251|0|1| +21|2023-10-06T21:12:04.8000000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38204895|40478540|10000|10000|||100.00|80.10|0.00|0.00|24173|73814|9100|10000|||100.30|99.32|-0.02|-3.13|00019252|0|1| +21|2023-10-06T21:12:04.8440000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|4BE40000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|38204895|40478540|10000|10000|||100.00|80.10|0.00|0.00|24485|82773|10000|10000|||97.89|101.43|0.00|3.04|00019253|0|1| +38|2023-10-06T21:12:04.8440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24485|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:04.8440000-07:00|A82|Raiju Ready|27.90|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +26|2023-10-06T21:12:04.8440000-07:00|7A2|Bunshin|16.68|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|82773|82773| +37|2023-10-06T21:12:04.8880000-07:00|40022472|Zeromus|00019245|38171979||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:04.9330000-07:00|10FF0007|Kehabiqo Febiqo|0001924B|73520||||||99.87|99.35|-0.02|3.14| +21|2023-10-06T21:12:04.9330000-07:00|400227F3|Bunshin|6517|Fleeting Raiju|40022472|Zeromus|550003|15170000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|38204895|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||97.91|101.44|0.00|3.04|00019254|0|1| +21|2023-10-06T21:12:04.9780000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|752003|71700000|200004|48058000|0|0|0|0|0|0|0|0|0|0|0|0|38204895|40478540|10000|10000|||100.00|80.10|0.00|0.00|43154|129071|6600|10000|||99.97|96.43|0.00|3.14|00019255|0|1| +261|2023-10-06T21:12:04.4700000-07:00|Change|400227F3||| +38|2023-10-06T21:12:04.9780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|43154|129071|5600|10000|0||99.97|96.43|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:04.9780000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:12:04.4700000-07:00|Change|10FF0001||| +20|2023-10-06T21:12:05.0230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|99.87|99.29|0.00|3.14| +37|2023-10-06T21:12:05.0670000-07:00|10FF0003|Gegehi Gehi|0001924B|47929||||||100.30|99.32|-0.02|-3.13| +261|2023-10-06T21:12:04.5840000-07:00|Change|40022809||| +21|2023-10-06T21:12:05.0670000-07:00|40022488|Zeromus|8B41|unknown_8b41|40022488|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-0.79|44|44|0|10000|||100.00|100.00|0.00|-0.79|00019256|0|1| +21|2023-10-06T21:12:05.0670000-07:00|4002248A|Zeromus|8B41|unknown_8b41|4002248A|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|00019257|0|1| +21|2023-10-06T21:12:05.0670000-07:00|4002248C|Zeromus|8B40|unknown_8b40|4002248C|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|1.57|44|44|0|10000|||100.00|100.00|0.00|1.57|00019258|0|1| +21|2023-10-06T21:12:05.0670000-07:00|4002248E|Zeromus|8B40|unknown_8b40|4002248E|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|3.14|00019259|0|1| +21|2023-10-06T21:12:05.0670000-07:00|40022490|Zeromus|8D2B|unknown_8d2b|40022490|Zeromus|1B|8D2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|0001925A|0|1| +261|2023-10-06T21:12:04.5840000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:12:04.5840000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:12:04.5840000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:12:04.5840000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:12:04.5840000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:12:04.5840000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:12:05.1120000-07:00|40022472|Zeromus|0001924D|38171719||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:05.1120000-07:00|4002280F|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|450003|70C60000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|38171979|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||100.99|103.26|0.00|3.11|0001925B|0|1| +37|2023-10-06T21:12:05.1560000-07:00|40022472|Zeromus|0001924E|38171538||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:05.2010000-07:00|40022472|Zeromus|0001924F|38165883||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:05.2010000-07:00|10FF0008|Kokosaze Lulusaze|0001924B|56656||||||100.18|99.72|0.00|-3.13| +24|2023-10-06T21:12:05.2450000-07:00|10FF0009|Zewo Negiwo|HoT|4C3|1B36|22237|81177|7447|10000|||100.02|104.17|0.00|-3.14|10FF0009|Zewo Negiwo|0|22237|81177|7447|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:05.2450000-07:00|10FF0009|Zewo Negiwo|0001924C|43343|81177|7447|10000|0||100.02|104.17|0.00|-3.14|1800|0|0|01|08000096|0|41700000|| +26|2023-10-06T21:12:05.2450000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:12:05.3350000-07:00|10FF0006|Wowobora Gogobora|0001924B|54636||||||100.25|98.92|0.00|2.39| +37|2023-10-06T21:12:05.3350000-07:00|40022472|Zeromus|00019252|38165824||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:05.3350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|AC90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38165883|40478540|10000|10000|||100.00|80.10|0.00|0.00|43154|129071|5600|10000|||99.97|96.43|0.00|3.14|0001925C|0|1| +31|2023-10-06T21:12:05.3350000-07:00|10FF0001||||| +24|2023-10-06T21:12:05.3800000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1D31|24485|82773|10000|10000|||97.89|101.43|0.00|3.04|10FF0009|Zewo Negiwo|0|43343|81177|7447|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:05.3800000-07:00|10FF000A|Dukaro Nezikaro|0001924C|40921|82773|10000|10000|0||97.89|101.43|0.00|3.04|1E01|0|0|01|0B000096|0|41700000|| +26|2023-10-06T21:12:05.3800000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +20|2023-10-06T21:12:05.3800000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.02|104.17|0.00|-3.14| +38|2023-10-06T21:12:05.4240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|73520|129844|10000|10000|8||99.87|99.35|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:05.4240000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:12:05.1530000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:12:05.4680000-07:00|40022472|Zeromus|00019250|38160316||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:05.4680000-07:00|10FF0001|Sesuga Sapisuga|0001924B|65988||||||99.97|96.43|0.00|3.14| +24|2023-10-06T21:12:05.5140000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|1CA3|56656|90216|10000|10000|||100.18|99.72|0.00|-3.13|10FF0009|Zewo Negiwo|0|43343|81177|7447|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:05.5140000-07:00|10FF0008|Kokosaze Lulusaze|0001924C|72854|90216|10000|10000|0||100.18|99.72|0.00|-3.13|1F02|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:12:05.5140000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +21|2023-10-06T21:12:05.5140000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|30BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38165824|40478540|10000|10000|||100.00|80.10|0.00|0.00|56656|90216|10000|10000|||100.18|99.72|0.00|-3.13|0001925D|0|1| +21|2023-10-06T21:12:05.5140000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|3AE30000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|38165824|40478540|10000|10000|||100.00|80.10|0.00|0.00|54636|81809|9200|10000|||100.28|99.11|0.00|2.91|0001925E|0|1| +38|2023-10-06T21:12:05.5140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72854|90216|10000|10000|0||100.18|99.72|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:05.5140000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +38|2023-10-06T21:12:05.5140000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54636|81809|8900|10000|19||100.28|99.11|0.00|2.91|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:05.5140000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:12:05.1530000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:12:05.5580000-07:00|40022472|Zeromus|00019251|38152813||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:05.6030000-07:00|10FF000A|Dukaro Nezikaro|0001924B|63809||||||97.89|101.43|0.00|3.04| +37|2023-10-06T21:12:05.6030000-07:00|40022472|Zeromus|00019253|38133385||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:05.6480000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|1D07|54636|81809|8900|10000|||100.29|99.15|0.00|-3.13|10FF0009|Zewo Negiwo|0|43343|81177|7447|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:05.6480000-07:00|10FF0006|Wowobora Gogobora|0001924C|76416|81809|8900|10000|19||100.29|99.15|0.00|-3.13|1B03|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:12:05.6480000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:12:05.6920000-07:00|40022472|Zeromus|00019254|38127986||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:05.7370000-07:00|40022472|Zeromus|00019255|38098946||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:05.7370000-07:00|10FF0001|Sesuga Sapisuga|00019255|84425||||||99.97|96.43|0.00|3.14| +37|2023-10-06T21:12:05.7370000-07:00|10FF0009|Zewo Negiwo|0001924B|66293||||||100.02|104.17|0.00|-3.14| +39|2023-10-06T21:12:05.7370000-07:00|10FF0008|Kokosaze Lulusaze|73756|90216|10000|10000|||100.18|99.72|0.00|-3.13| +21|2023-10-06T21:12:05.7380000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|756003|8C270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38133385|40478540|10000|10000|||100.00|80.10|0.00|0.00|63809|82773|10000|10000|||97.89|101.43|0.00|3.04|0001925F|0|1| +38|2023-10-06T21:12:05.7380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|63809|82773|10000|10000|0||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:05.7380000-07:00|A81|Meisui|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +24|2023-10-06T21:12:05.7820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1C42|73520|129844|10000|10000|||99.87|99.35|-0.02|3.14|10FF0009|Zewo Negiwo|0|43343|81177|7447|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:05.7820000-07:00|10FF0007|Kehabiqo Febiqo|0001924C|89479|129844|10000|10000|8||99.87|99.35|-0.02|3.14|1504|0|0|01|0C000096|0|41700000|| +26|2023-10-06T21:12:05.7820000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +39|2023-10-06T21:12:05.7820000-07:00|10FF000A|Dukaro Nezikaro|64636|82773|10000|10000|||97.89|101.43|0.00|3.04| +24|2023-10-06T21:12:05.7820000-07:00|40022472|Zeromus|DoT|0|1C15|38133385|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|72854|90216|10000|10000|||100.18|99.72|0.00|-3.13| +20|2023-10-06T21:12:05.7820000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|100.30|99.32|-0.02|-3.13| +38|2023-10-06T21:12:05.7820000-07:00|40022472|Zeromus|005A5A00|38091757|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:12:05.3560000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T21:12:05.8260000-07:00|10FF0003|Gegehi Gehi|48667|73814|9300|10000|||100.30|99.32|-0.02|-3.13| +39|2023-10-06T21:12:05.8260000-07:00|400227F3|Bunshin|75608|78475|10000|10000|||97.91|101.44|0.00|3.04| +37|2023-10-06T21:12:05.8710000-07:00|40022472|Zeromus|0001925C|38088996||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:12:05.8710000-07:00|0DE8|3| +24|2023-10-06T21:12:05.9160000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1B6C|48667|73814|9300|10000|||100.30|99.32|-0.02|-3.13|10FF0009|Zewo Negiwo|0|66293|81177|7447|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:05.9160000-07:00|10FF0003|Gegehi Gehi|0001924C|64448|73814|9300|10000|0||100.30|99.32|-0.02|-3.13|2305|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:12:05.9160000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +39|2023-10-06T21:12:05.9160000-07:00|10FF0004|Buhojaqe Zijaqe|45936|81541|9600|10000|||99.87|99.29|0.00|3.14| +21|2023-10-06T21:12:05.9160000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|FFF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38088996|40478540|10000|10000|||100.00|80.10|0.00|0.00|73756|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019260|0|1| +21|2023-10-06T21:12:05.9610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|A6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38088996|40478540|10000|10000|||100.00|80.10|0.00|0.00|64636|82773|10000|10000|||97.89|101.43|0.00|3.04|00019261|0|1| +39|2023-10-06T21:12:06.0060000-07:00|10FF0007|Kehabiqo Febiqo|90777|129844|10000|10000|||99.87|99.35|-0.02|3.14| +39|2023-10-06T21:12:06.0060000-07:00|10FF0006|Wowobora Gogobora|77234|81809|9100|10000|||100.29|99.18|0.00|-3.13| +261|2023-10-06T21:12:05.5470000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:12:05.6650000-07:00|Change|10FF0004||||| +24|2023-10-06T21:12:06.0500000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|1DC3|45936|81541|9600|10000|||99.87|99.29|0.00|3.14|10FF0009|Zewo Negiwo|0|66293|81177|7447|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:06.0500000-07:00|10FF0004|Buhojaqe Zijaqe|0001924C|62571|81541|9600|10000|0||99.87|99.29|0.00|3.14|1C06|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:12:06.0500000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +39|2023-10-06T21:12:06.0500000-07:00|10FF0009|Zewo Negiwo|67104|81177|7668|10000|||100.02|104.17|0.00|-3.14| +39|2023-10-06T21:12:06.0960000-07:00|10FF0001|Sesuga Sapisuga|85715|129071|5800|10000|||99.97|96.43|0.00|3.14| +37|2023-10-06T21:12:06.1400000-07:00|40022472|Zeromus|0001925D|38076520|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|06|3E90E495|| +26|2023-10-06T21:12:06.1400000-07:00|35D|Wildfire|0.28|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|90216| +37|2023-10-06T21:12:06.1400000-07:00|40022472|Zeromus|0001925E|38061445||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:06.1400000-07:00|10FF0006|Wowobora Gogobora|0001925E|77234|81809|9100|10000|19||100.30|99.20|-0.02|-3.13|1B00|0|0|01|08000B25|0|0|| +21|2023-10-06T21:12:06.1400000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|164B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38088996|40478540|10000|10000|||100.00|80.10|0.00|0.00|73756|90216|10000|10000|||100.18|99.72|0.00|-3.13|00019262|0|1| +38|2023-10-06T21:12:06.1400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77234|81809|9100|10000|19||100.30|99.20|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:05.6650000-07:00|Change|10FF0001||| +24|2023-10-06T21:12:06.1840000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1C0E|85715|129071|5800|10000|||99.97|96.43|0.00|3.14|10FF0009|Zewo Negiwo|0|67104|81177|7668|10000|||100.02|104.17|0.00|-3.14| +37|2023-10-06T21:12:06.1840000-07:00|10FF0001|Sesuga Sapisuga|0001924C|101901|129071|5800|10000|0||99.97|96.43|0.00|3.14|1307|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:12:06.1840000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:12:06.1840000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|1BFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38061445|40478540|10000|10000|||100.00|80.10|0.00|0.00|77234|81809|9100|10000|||100.30|99.20|0.00|-3.13|00019263|0|1| +38|2023-10-06T21:12:06.1840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77234|81809|9100|10000|19||100.30|99.20|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:06.1840000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:12:06.3190000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|39160000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|38061445|40478540|10000|10000|||100.00|80.10|0.00|0.00|67104|81177|7668|10000|||100.02|104.17|0.00|-3.14|00019264|0|1| +261|2023-10-06T21:12:05.8910000-07:00|Change|10FF0003||||| +37|2023-10-06T21:12:06.3630000-07:00|40022472|Zeromus|0001925F|38025566||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:06.3630000-07:00|40022804|Automaton Queen|4078|Arm Punch|40022472|Zeromus|734003|17870000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|38061445|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05|00019265|0|1| +24|2023-10-06T21:12:06.4090000-07:00|40022472|Zeromus|DoT|35D|10448|38061445|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|73756|90216|10000|10000|||100.18|99.72|0.00|-3.13| +22|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|21DA0000|290E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|00019266|0|8| +22|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|210D0000|E10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90777|129844|10000|10000|||99.87|99.35|-0.02|3.14|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|00019266|1|8| +22|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|211D0000|FB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|64448|73814|9300|10000|||100.30|99.32|-0.02|-3.13|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|00019266|2|8| +22|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|38050000|A10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|77234|81809|9100|10000|||100.30|99.20|0.00|-3.13|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|00019266|3|8| +22|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|220C0000|790E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73756|90216|10000|10000|||100.18|99.72|0.00|-3.13|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|00019266|4|8| +22|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|36AC0000|790E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|101901|129071|5800|10000|||99.97|96.43|0.00|3.14|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|00019266|5|8| +22|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|21A80000|D90E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|64636|82773|10000|10000|||97.89|101.43|0.00|3.04|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|00019266|6|8| +22|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|4|21A60000|D60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67104|81177|7268|10000|||100.02|104.17|0.00|-3.14|62571|81541|9600|10000|||99.87|99.29|0.00|3.14|00019266|7|8| +38|2023-10-06T21:12:06.4090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90777|129844|10000|10000|19||99.87|99.35|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:06.4090000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:12:06.4090000-07:00|10FF0009|Zewo Negiwo|005A5A18|67104|81177|7268|10000|16||100.02|104.17|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:06.4090000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:12:06.4090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|73756|90216|10000|10000|15||100.18|99.72|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:06.4090000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +30|2023-10-06T21:12:06.4090000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:12:06.4090000-07:00|40022472|Zeromus|005A5A00|37958934|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:06.4090000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|90216| +38|2023-10-06T21:12:06.4090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77234|81809|9100|10000|48||100.30|99.20|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:06.4090000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:12:06.4090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101901|129071|5800|10000|17||99.97|96.43|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:06.4090000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:12:06.4090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62571|81541|8600|10000|17||99.87|99.29|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:06.4090000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:12:06.4090000-07:00|10FF0003|Gegehi Gehi|005A5A23|64448|73814|9300|10000|18||100.30|99.32|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:06.4090000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:12:06.4090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|64636|82773|10000|10000|16||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:06.4090000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +21|2023-10-06T21:12:06.4530000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|9D630000|4|29408000|0|0|0|0|0|0|0|0|0|0|0|0|38061445|40478540|10000|10000|||100.00|80.10|0.00|0.00|90777|129844|10000|10000|||99.87|99.35|-0.02|3.14|00019267|0|1| +38|2023-10-06T21:12:06.4530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90777|129844|10000|10000|19||99.87|99.35|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:06.4530000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +37|2023-10-06T21:12:06.4980000-07:00|40022472|Zeromus|00019261|37956264||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:06.1230000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:12:06.6780000-07:00|40022472|Zeromus|00019260|37952169||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:06.6780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77234|81809|9100|10000|28||100.30|99.20|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:06.6780000-07:00|A8E|Radiant Aegis|0.00|400226AF|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +37|2023-10-06T21:12:06.7660000-07:00|40022472|Zeromus|00019262|37946462||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:12:06.3170000-07:00|40022809|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.35|99.69|0.00|-0.03| +261|2023-10-06T21:12:06.4150000-07:00|Remove|40022809| +37|2023-10-06T21:12:06.9450000-07:00|40022472|Zeromus|00019263|37939298||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:07.0340000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|724003|81350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37939298|40478540|10000|10000|||100.00|80.10|0.00|0.00|73756|90216|10000|10000|||100.14|99.11|-0.02|-3.11|00019268|0|1| +21|2023-10-06T21:12:07.0340000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77234|81809|9100|10000|||100.30|99.20|0.00|-3.13|77234|81809|9100|10000|||100.30|99.20|0.00|-3.13|00019269|0|1| +261|2023-10-06T21:12:06.5950000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:12:07.0770000-07:00|40022472|Zeromus|00019267|37899007||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:07.0770000-07:00|10FF0007|Kehabiqo Febiqo|00019267|101337||||||99.88|98.81|0.00|3.13| +37|2023-10-06T21:12:07.0770000-07:00|40022472|Zeromus|0001925B|37870137||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:07.0780000-07:00|40022472|Zeromus|005A5A00|37870137|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:07.0780000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +37|2023-10-06T21:12:07.1230000-07:00|40022472|Zeromus|00019265|37864114||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:07.1230000-07:00|40022804|Automaton Queen|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05| +21|2023-10-06T21:12:07.1230000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|50530000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|37870137|40478540|10000|10000|||100.00|80.10|0.00|0.00|64636|82773|10000|10000|||97.89|101.43|0.00|3.04|0001926A|0|1| +38|2023-10-06T21:12:07.1230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|64636|82773|10000|10000|16||97.89|101.43|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:07.1230000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +26|2023-10-06T21:12:07.1230000-07:00|7A2|Bunshin|14.40|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +261|2023-10-06T21:12:06.7180000-07:00|Change|10FF0004||||||||||||||||||| +38|2023-10-06T21:12:07.1670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101901|129071|5800|10000|17||99.97|96.43|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:07.1670000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:12:07.2130000-07:00|400227F3|Bunshin|6517|Fleeting Raiju|40022472|Zeromus|554003|1A550000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|37864114|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||97.91|101.44|0.00|3.04|0001926B|0|1| +24|2023-10-06T21:12:07.2130000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|153C|73756|90216|10000|10000|||100.14|99.08|0.00|-3.13|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.02|104.17|0.00|-3.14| +21|2023-10-06T21:12:07.2130000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|452003|5C7B0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|37864114|40478540|10000|10000|||100.00|80.10|0.00|0.00|64448|73814|9300|10000|||100.30|99.32|-0.02|-3.13|0001926C|0|1| +38|2023-10-06T21:12:07.2130000-07:00|10FF0003|Gegehi Gehi|005A5A23|64448|73814|9100|10000|18||100.30|99.32|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:07.2130000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:12:07.2130000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:12:07.2130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79192|90216|10000|10000|15||100.14|99.08|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:07.2560000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|14BD|64636|82773|10000|10000|||97.88|101.43|-0.02|3.05|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.02|104.17|0.00|-3.14| +38|2023-10-06T21:12:07.2560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69945|82773|10000|10000|16||97.88|101.43|-0.02|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:07.3000000-07:00|10FF0003|Gegehi Gehi|HoT|0|1644|64448|73814|9100|10000|||100.30|99.32|-0.02|-3.13|10FF0004|Buhojaqe Zijaqe|0|62571|81541|8600|10000|||99.87|98.96|0.00|3.13| +38|2023-10-06T21:12:07.3000000-07:00|10FF0003|Gegehi Gehi|005A5A23|70148|73814|9100|10000|18||100.30|99.32|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:06.9400000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T21:12:07.3890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|15FB|62571|81541|8600|10000|||99.87|98.96|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|62571|81541|8600|10000|||99.87|98.96|0.00|3.13| +38|2023-10-06T21:12:07.3890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|68198|81541|8600|10000|17||99.87|98.96|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +20|2023-10-06T21:12:07.4330000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.87|98.88|-0.01|3.13| +24|2023-10-06T21:12:07.4780000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|14D8|101337|129844|10000|10000|||99.90|95.87|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|68198|81541|8600|10000|||99.87|98.88|-0.01|3.13| +24|2023-10-06T21:12:07.4780000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2398|77234|81809|9100|10000|||100.30|99.20|0.00|-3.13|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.02|104.17|0.00|-3.14| +21|2023-10-06T21:12:07.4780000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|3FCF0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37864114|40478540|10000|10000|||100.00|80.10|0.00|0.00|101901|129071|5800|10000|||99.95|95.37|0.00|-3.12|0001926D|0|1| +38|2023-10-06T21:12:07.4780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106673|129844|10000|10000|19||99.90|95.87|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:07.4780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|28||100.30|99.20|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:07.4780000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +38|2023-10-06T21:12:07.4780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101901|129071|5800|10000|17||99.95|95.37|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.4780000-07:00|76E|Sword Oath|12.93|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T21:12:07.5240000-07:00|10FF0004|Buhojaqe Zijaqe|00019266|76864|81541|8600|10000|17||99.87|98.86|0.00|3.13|1C00|0|0|01|0B000129|0|41E770A0|| +24|2023-10-06T21:12:07.5240000-07:00|10FF0003|Gegehi Gehi|HoT|777|DD4|70148|73814|9100|10000|||100.25|99.28|0.00|-2.87|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13| +24|2023-10-06T21:12:07.5240000-07:00|10FF0006|Wowobora Gogobora|HoT|777|1637|81809|81809|9100|10000|||100.30|99.20|0.00|-3.13|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13| +24|2023-10-06T21:12:07.5240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E49|79192|90216|10000|10000|||100.14|99.05|-0.02|-3.13|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13| +24|2023-10-06T21:12:07.5240000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DF2|68198|81541|8600|10000|||99.87|98.86|0.00|3.13|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13| +24|2023-10-06T21:12:07.5240000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E62|69945|82773|10000|10000|||97.30|101.30|0.00|3.09|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13| +24|2023-10-06T21:12:07.5240000-07:00|10FF0009|Zewo Negiwo|HoT|777|E69|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13| +24|2023-10-06T21:12:07.5240000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E0F|101901|129071|5800|10000|||99.88|94.73|0.00|-3.12|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13| +24|2023-10-06T21:12:07.5240000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E19|106673|129844|10000|10000|||99.90|95.23|0.00|3.14|10FF0009|Zewo Negiwo|0|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13| +24|2023-10-06T21:12:07.5240000-07:00|10FF0009|Zewo Negiwo|HoT|0|21F6|67104|81177|7268|10000|||100.01|103.93|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|68198|81541|8600|10000|||99.87|98.86|0.00|3.13| +38|2023-10-06T21:12:07.5240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110282|129844|10000|10000|19||99.90|95.23|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.5240000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:12:07.5240000-07:00|10FF0009|Zewo Negiwo|005A5A18|79487|81177|7268|10000|16||100.01|103.93|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:12:07.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|82849|90216|10000|10000|15||100.14|99.05|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +261|2023-10-06T21:12:07.0560000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:12:07.5240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|28||100.30|99.20|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:07.5240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105500|129071|5800|10000|17||99.88|94.73|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:12:07.5240000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80434|81541|8600|10000|17||99.87|98.86|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:12:07.5240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73688|73814|9100|10000|18||100.25|99.28|0.00|-2.87|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:12:07.5240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|73627|82773|10000|10000|16||97.30|101.30|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:07.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +24|2023-10-06T21:12:07.5680000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|338A|101901|129071|5800|10000|||99.88|94.73|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|68198|81541|8600|10000|||99.87|98.86|0.00|3.13| +38|2023-10-06T21:12:07.5680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118694|129071|5800|10000|17||99.88|94.73|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:07.6120000-07:00|40022472|Zeromus|00019264|37849500||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:07.6120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|A090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37864114|40478540|10000|10000|||100.00|80.10|0.00|0.00|101901|129071|5800|10000|||99.88|94.73|0.00|-3.12|0001926E|0|1| +31|2023-10-06T21:12:07.6130000-07:00|10FF0001||||| +37|2023-10-06T21:12:07.6570000-07:00|10FF0006|Wowobora Gogobora|00019269|81809|81809|9100|10000|28||100.30|99.18|0.00|-3.10|1B00|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T21:12:07.6570000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:12:07.6570000-07:00|10FF0007|Kehabiqo Febiqo|00019266|118743|129844|10000|10000|19||99.63|94.79|0.00|3.13|1501|0|0|01|0F000129|0|41E65E31|| +21|2023-10-06T21:12:07.7010000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37849500|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||100.30|99.18|0.00|-3.10|0001926F|0|1| +37|2023-10-06T21:12:07.7910000-07:00|10FF0003|Gegehi Gehi|00019266|73814|73814|9100|10000|18||99.77|98.92|0.00|-2.54|2302|0|0|02|07000000|0|0|||||| +21|2023-10-06T21:12:07.7910000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|BEB0000|FC7B0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|37849500|40478540|10000|10000|||100.00|80.10|0.00|0.00|79487|81177|7268|10000|||99.98|103.21|0.00|-3.11|00019270|0|1| +38|2023-10-06T21:12:07.7910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9100|10000|18||99.77|98.92|0.00|-2.54|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:07.7910000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +261|2023-10-06T21:12:07.3610000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:12:07.8790000-07:00|40022472|Zeromus|0001926A|37828937||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:07.9240000-07:00|10FF0006|Wowobora Gogobora|00019266|81809|81809|9100|10000|28||100.24|98.88|-0.02|-3.06|1B03|0|0|01|08000129|0|41E43B5F|| +21|2023-10-06T21:12:07.9240000-07:00|40022804|Automaton Queen|4078|Arm Punch|40022472|Zeromus|736003|264C0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|37849500|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05|00019271|0|1| +261|2023-10-06T21:12:07.6430000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:12:08.0130000-07:00|40022472|Zeromus|0001926C|37805262||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:08.0130000-07:00|40022472|Zeromus|0001926B|37798521||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:08.0130000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|25450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37828937|40478540|10000|10000|||100.00|80.10|0.00|0.00|82849|90216|10000|10000|||100.14|98.98|0.00|-3.11|00019272|0|1| +21|2023-10-06T21:12:08.0130000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|4E180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37828937|40478540|10000|10000|||100.00|80.10|0.00|0.00|73627|82773|10000|10000|||93.83|100.31|0.00|3.10|00019273|0|1| +37|2023-10-06T21:12:08.0580000-07:00|10FF0008|Kokosaze Lulusaze|00019266|90216|90216|10000|10000|15||100.14|98.98|0.00|-3.11|1F04|0|0|02|04000129|0|41E328F0|||||| +21|2023-10-06T21:12:08.0580000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|D550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37828937|40478540|10000|10000|||100.00|80.10|0.00|0.00|118743|129844|10000|10000|||96.68|94.44|0.00|3.02|00019274|0|1| +21|2023-10-06T21:12:08.0580000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|3AD20000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37828937|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||99.90|97.30|0.00|-3.01|00019275|0|1| +38|2023-10-06T21:12:08.0580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.14|98.98|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:08.0580000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +38|2023-10-06T21:12:08.0580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|28||99.90|97.30|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:08.0580000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:12:08.1020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118743|129844|10000|10000|19||96.68|94.44|0.00|3.02|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:08.1020000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:12:08.1480000-07:00|40022472|Zeromus|0001926E|37795952||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:07.6430000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:12:08.1480000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|11270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37828937|40478540|10000|10000|||100.00|80.10|0.00|0.00|73627|82773|10000|10000|||93.83|100.31|0.00|3.10|00019276|0|1| +261|2023-10-06T21:12:07.6430000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:12:08.1910000-07:00|40022472|Zeromus|00019268|37762875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:08.1910000-07:00|10FF0001|Sesuga Sapisuga|00019266|129071|129071|5800|10000|17||96.18|94.39|0.00|-3.12|1305|0|0|02|0A000000|0|0|||||| +38|2023-10-06T21:12:08.1910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|17||96.18|94.39|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:08.1910000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +37|2023-10-06T21:12:08.2350000-07:00|40022472|Zeromus|0001926F|37762699||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:07.8710000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:12:08.3250000-07:00|10FF000A|Dukaro Nezikaro|00019266|82243|82773|10000|10000|16||93.63|99.88|-0.02|2.86|1E06|0|0|01|08000129|0|41E1061E|| +21|2023-10-06T21:12:08.3700000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|5D450000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|37762699|40478540|10000|10000|||100.00|80.10|0.00|0.00|80434|81541|8600|10000|||99.87|98.86|0.00|3.14|00019277|0|1| +37|2023-10-06T21:12:08.4600000-07:00|10FF0009|Zewo Negiwo|00019266|81177|81177|6868|10000|16||99.31|101.64|0.00|-2.97|1807|0|0|02|07000000|0|0|||||| +38|2023-10-06T21:12:08.4600000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|6868|10000|16||99.31|101.64|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:08.4600000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0009|Zewo Negiwo|00|81177|40478540| +261|2023-10-06T21:12:08.0940000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:12:08.5920000-07:00|40022472|Zeromus|00019274|37759286||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:08.5930000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|245C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37762699|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|98.97|0.00|-3.13|00019278|0|1| +21|2023-10-06T21:12:08.5930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|10920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37762699|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|98.97|0.00|-3.13|00019279|0|1| +38|2023-10-06T21:12:08.5930000-07:00|40022472|Zeromus|005A5A00|37759286|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:08.5930000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +261|2023-10-06T21:12:08.1890000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:12:08.6370000-07:00|40022472|Zeromus|00019273|37739294||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:08.6820000-07:00|40022472|Zeromus|00019271|37729490||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:08.6820000-07:00|40022472|Zeromus|00019275|37714432||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:08.6820000-07:00|10FF0006|Wowobora Gogobora|00019275|81809|81809|8800|10000|28||99.80|95.10|0.00|-3.14|1B00|0|0|01|07000B25|0|0|| +37|2023-10-06T21:12:08.6820000-07:00|40022472|Zeromus|00019276|37710041||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:08.6820000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|1C590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37759286|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||99.80|95.10|0.00|-3.14|0001927A|0|1| +38|2023-10-06T21:12:08.6820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|28||99.80|95.10|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:08.6820000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:12:08.7260000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.08|98.20|0.00|3.12| +37|2023-10-06T21:12:08.7720000-07:00|40022472|Zeromus|0001926D|37693706||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:08.7720000-07:00|10FF0001|Sesuga Sapisuga|0001926D|129071|129071|6200|10000|17||93.52|93.03|0.00|-3.06|1300|0|0|0| +39|2023-10-06T21:12:08.7720000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||92.84|98.01|0.00|3.05| +24|2023-10-06T21:12:08.7720000-07:00|40022472|Zeromus|DoT|0|1EFE|37759286|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|5800|10000|||93.52|93.03|0.00|-3.06| +38|2023-10-06T21:12:08.7720000-07:00|40022472|Zeromus|005A5A00|37685772|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:12:08.7720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||92.84|98.01|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:08.7720000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|40478540| +37|2023-10-06T21:12:08.8150000-07:00|40022472|Zeromus|00019272|37676231||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:08.8150000-07:00|10FF0003|Gegehi Gehi|73814|73814|9300|10000|||94.29|95.54|0.00|-2.09| +39|2023-10-06T21:12:08.8150000-07:00|400227F3|Bunshin|75608|78475|10000|10000|||97.91|101.44|0.00|3.04| +36|2023-10-06T21:12:08.8590000-07:00|0EC4|3| +39|2023-10-06T21:12:08.9030000-07:00|10FF0004|Buhojaqe Zijaqe|81249|81541|8400|10000|||99.87|98.86|0.00|-3.12| +261|2023-10-06T21:12:08.4740000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:12:08.9480000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|2A3B0000|A3E|340000|4|29CA8000|11B|258000|0|0|0|0|0|0|0|0|37676231|40478540|10000|10000|||100.00|80.10|0.00|0.00|118743|129844|10000|10000|||92.02|92.89|0.00|2.81|0001927B|0|1| +261|2023-10-06T21:12:08.4740000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:12:08.9930000-07:00|10FF0007|Kehabiqo Febiqo|120041|129844|10000|10000|||92.02|92.89|0.00|2.81| +39|2023-10-06T21:12:08.9930000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9000|10000|||99.35|94.16|0.00|3.04| +261|2023-10-06T21:12:08.5670000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:12:09.0380000-07:00|10FF0009|Zewo Negiwo|81177|81177|7089|10000|||96.58|99.17|0.00|-2.34| +37|2023-10-06T21:12:09.0820000-07:00|40022472|Zeromus|00019270|37673180|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:12:09.0820000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +39|2023-10-06T21:12:09.0820000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6400|10000|||91.76|92.45|0.00|-3.06| +261|2023-10-06T21:12:08.5670000-07:00|Change|10FF0008||||||||| +38|2023-10-06T21:12:09.1260000-07:00|4002280F|Topaz Titan|005A5A00|0|77698|0|10000|0||100.99|103.26|0.00|3.11|0|0|0||||||| +26|2023-10-06T21:12:09.1260000-07:00|30|Well Fed|1744.13|10FF0006|Wowobora Gogobora|4002280F|Topaz Titan|2964|77698|81809| +261|2023-10-06T21:12:08.6840000-07:00|Change|4002280F||||| +38|2023-10-06T21:12:09.1690000-07:00|40022823||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:12:09.1710000-07:00|40022472|Zeromus|00019277|37649303||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:09.1710000-07:00|40022823||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:12:09.1710000-07:00|40022472|Zeromus|005A5A00|37649303|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:12:09.1710000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:12:08.6840000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:12:08.7940000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T21:12:09.2150000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||90.41|97.17|0.00|3.10|82773|82773|10000|10000|||90.41|97.17|0.00|3.10|0001927C|0|1| +38|2023-10-06T21:12:09.2150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||90.41|97.17|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:09.2150000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +03|2023-10-06T21:12:08.7940000-07:00|40022823|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||96.30|91.66|0.00|0.92| +261|2023-10-06T21:12:08.7940000-07:00|Add|40022823||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:08.7940000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:12:09.2590000-07:00|40022472|Zeromus|00019278|37639995||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:08.7940000-07:00|Change|40022823||| +37|2023-10-06T21:12:09.3480000-07:00|40022472|Zeromus|00019279|37635753||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:12:09.3930000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:12:09.3930000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0004|Buhojaqe Zijaqe|200004|85B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81249|81541|8400|10000|||98.26|97.44|0.00|-2.52|81249|81541|8400|10000|||98.26|97.44|0.00|-2.52|0001927D|0|1| +37|2023-10-06T21:12:09.4370000-07:00|40022472|Zeromus|0001927A|37628496||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:09.4370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120041|129844|10000|10000|19||89.64|91.89|0.00|2.72|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:09.4370000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +21|2023-10-06T21:12:09.4810000-07:00|40022804|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|1FA20000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|37628496|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05|0001927E|0|1| +37|2023-10-06T21:12:09.5710000-07:00|40022472|Zeromus|0001927B|37617685||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:09.5710000-07:00|10FF0007|Kehabiqo Febiqo|0001927B|129844|129844|10000|10000|19||89.64|91.89|0.00|2.72|1500|0|0|01|01000000|0|0|| +21|2023-10-06T21:12:09.5710000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|36510000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|37628496|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.63|94.79|0.00|-2.33|0001927F|0|1| +38|2023-10-06T21:12:09.5710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||89.64|91.89|0.00|2.72|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:09.5710000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +261|2023-10-06T21:12:09.1470000-07:00|Change|400227F3||| +261|2023-10-06T21:12:09.2400000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:12:09.2400000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:12:09.2400000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:12:09.7490000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37617685|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9300|10000|||89.62|92.66|0.00|-2.13|00019280|0|1| +21|2023-10-06T21:12:09.7490000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||89.68|97.09|-0.02|3.11|82773|82773|10000|10000|||89.68|97.09|-0.02|3.11|00019281|0|1| +38|2023-10-06T21:12:09.7490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||89.68|97.09|-0.02|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:09.7490000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +21|2023-10-06T21:12:09.8830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|10F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37617685|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6400|10000|||87.68|91.47|0.00|-3.11|00019282|0|1| +31|2023-10-06T21:12:09.8830000-07:00|10FF0001||||| +21|2023-10-06T21:12:09.9730000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|67AB0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37617685|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6400|10000|||87.18|91.00|0.00|-3.11|00019283|0|1| +38|2023-10-06T21:12:09.9730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|17||87.18|91.00|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:09.9730000-07:00|76E|Sword Oath|10.44|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:12:09.6310000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:12:10.0170000-07:00|10FF0004|Buhojaqe Zijaqe|0001927D|81541|81541|8400|10000|17||95.95|95.69|0.00|-2.23|1C00|0|0|01|08000000|0|0|| +21|2023-10-06T21:12:10.0170000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|200004|E3480000|1C820F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||87.92|90.19|0.00|2.75|129844|129844|10000|10000|||87.92|90.19|0.00|2.75|00019284|0|1| +38|2023-10-06T21:12:10.0170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|17||95.95|95.69|0.00|-2.23|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:10.0170000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +38|2023-10-06T21:12:10.1050000-07:00|40022804|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.95|101.46|0.00|-3.05|0|0|0||||||||||||| +26|2023-10-06T21:12:10.1050000-07:00|30|Well Fed|1736.09|10FF0008|Kokosaze Lulusaze|40022804|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:12:10.1050000-07:00|A8F|Searing Light|6.20|10FF0006|Wowobora Gogobora|40022804|Automaton Queen|00|85668|81809| +26|2023-10-06T21:12:10.1050000-07:00|511|Embolden|3.20|10FF0003|Gegehi Gehi|40022804|Automaton Queen|00|85668|73814| +26|2023-10-06T21:12:10.1050000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022804|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:12:10.1050000-07:00|40022480|Zeromus|8B41|unknown_8b41|40022480|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-2.36|44|44|0|10000|||100.00|100.00|0.00|-2.36|00019285|0|1| +21|2023-10-06T21:12:10.1050000-07:00|40022482|Zeromus|8B41|unknown_8b41|40022482|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|2.36|44|44|0|10000|||100.00|100.00|0.00|2.36|00019286|0|1| +21|2023-10-06T21:12:10.1050000-07:00|40022484|Zeromus|8B40|unknown_8b40|40022484|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-1.57|44|44|0|10000|||100.00|100.00|0.00|-1.57|00019287|0|1| +21|2023-10-06T21:12:10.1050000-07:00|40022486|Zeromus|8B40|unknown_8b40|40022486|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|00019288|0|1| +39|2023-10-06T21:12:10.1500000-07:00|40022804|Automaton Queen|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05| +261|2023-10-06T21:12:09.6310000-07:00|Change|40022480||||||||||||| +261|2023-10-06T21:12:09.6310000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:12:09.6310000-07:00|Change|40022484||||||||||||| +261|2023-10-06T21:12:09.6310000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:12:09.6310000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:12:09.7470000-07:00|Change|40022823||||||||| +24|2023-10-06T21:12:10.1940000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|14A3|90216|90216|10000|10000|||92.13|92.34|0.00|-2.34|10FF0009|Zewo Negiwo|0|81177|81177|7089|10000|||90.01|94.07|0.00|-2.19| +21|2023-10-06T21:12:10.1950000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37617685|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||95.60|95.41|0.00|-2.22|00019289|0|1| +34|2023-10-06T21:12:10.1950000-07:00|40022823|Carbuncle|40022823|Carbuncle|01| +38|2023-10-06T21:12:10.1950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||92.13|92.34|0.00|-2.34|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:10.2390000-07:00|40022472|Zeromus|0001927E|37609587||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:09.8630000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:12:10.2830000-07:00|40022472|Zeromus|00019280|37609549||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:10.2830000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1490|82773|82773|10000|10000|||89.68|97.06|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|7089|10000|||89.46|93.66|0.00|-2.19| +21|2023-10-06T21:12:10.2830000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|550003|4FBD0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|37609587|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||89.68|97.06|0.00|3.11|0001928A|0|1| +38|2023-10-06T21:12:10.2830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||89.68|97.06|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:10.2830000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:12:10.2830000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:12:10.3280000-07:00|40022472|Zeromus|0001927F|37595644||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:10.3280000-07:00|10FF0003|Gegehi Gehi|HoT|0|2378|73814|73814|9300|10000|||86.63|90.88|0.00|-2.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8400|10000|||95.16|95.06|0.00|-2.22| +21|2023-10-06T21:12:10.3280000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|12D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37609587|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||89.68|97.06|0.00|3.11|0001928B|0|1| +38|2023-10-06T21:12:10.3280000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9300|10000|18||86.63|90.88|0.00|-2.11|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:10.3720000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|20A7|81541|81541|8400|10000|||95.16|95.06|0.00|-2.22|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8400|10000|||95.16|95.06|0.00|-2.22| +38|2023-10-06T21:12:10.3720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|17||95.16|95.06|0.00|-2.22|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:10.4160000-07:00|40022472|Zeromus|00019282|37591300||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:10.5050000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|213A|129844|129844|10000|10000|||87.91|90.17|-0.02|2.75|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8400|10000|||94.64|94.47|0.00|-2.26| +24|2023-10-06T21:12:10.5050000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2100|81809|81809|9000|10000|||90.52|90.69|0.00|-1.83|10FF0009|Zewo Negiwo|0|81177|81177|7089|10000|||88.91|93.28|0.00|-2.19| +38|2023-10-06T21:12:10.5050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||87.91|90.17|-0.02|2.75|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:10.5050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9550|10000|28||90.52|90.69|0.00|-1.83|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:10.0920000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:12:10.0920000-07:00|Change|10FF0008||||||||| +24|2023-10-06T21:12:10.5500000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E7D|81541|81541|8400|10000|||94.64|94.47|0.00|-2.26|10FF0009|Zewo Negiwo|0|81177|81177|7089|10000|||88.91|93.28|0.00|-2.19| +24|2023-10-06T21:12:10.5500000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DFA|82773|82773|10000|10000|||89.68|97.04|0.00|2.53|10FF0009|Zewo Negiwo|0|81177|81177|7089|10000|||88.91|93.28|0.00|-2.19| +24|2023-10-06T21:12:10.5500000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|165B|90216|90216|10000|10000|||90.99|91.52|-0.02|-2.25|10FF0009|Zewo Negiwo|0|81177|81177|7089|10000|||88.91|93.28|0.00|-2.19| +24|2023-10-06T21:12:10.5500000-07:00|10FF0009|Zewo Negiwo|HoT|0|20BD|81177|81177|7089|10000|||88.91|93.28|0.00|-2.19|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8400|10000|||94.64|94.47|0.00|-2.26| +21|2023-10-06T21:12:10.5500000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|452003|5EDC0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37591300|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||90.52|90.69|0.00|-1.83|0001928C|0|1| +38|2023-10-06T21:12:10.5500000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7089|10000|16||88.91|93.28|0.00|-2.19|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:10.5500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||90.99|91.52|-0.02|-2.25|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:10.5500000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:10.5500000-07:00|40022472|Zeromus|005A5A00|37591300|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:12:10.5500000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:12:10.5500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9250|10000|28||90.52|90.69|0.00|-1.83|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:10.5500000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:12:10.5500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|17||94.64|94.47|0.00|-2.26|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:10.5500000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:12:10.5500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||89.68|97.04|0.00|2.53|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:10.5500000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:12:10.0920000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:12:10.5950000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3053|129071|129071|6400|10000|||84.78|88.54|0.00|2.67|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8400|10000|||94.15|93.91|0.00|-2.30| +38|2023-10-06T21:12:10.5950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|17||84.78|88.54|0.00|2.67|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:10.6830000-07:00|10FF0007|Kehabiqo Febiqo|00019284|129844|129844|10000|10000|19||87.87|90.15|0.00|2.75|1500|0|0|01|01000A79|0|41700000|| +26|2023-10-06T21:12:10.6830000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:12:10.1830000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:12:10.7270000-07:00|40022472|Zeromus|00019289|37591122||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:10.3760000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:12:10.8600000-07:00|40022472|Zeromus|0001928B|37586298||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:10.8600000-07:00|10FF000A|Dukaro Nezikaro|0001928B|82773|82773|10000|10000|16||89.14|96.44|0.00|2.53|1E00|0|0|01|03000A82|01|C1F00000|| +21|2023-10-06T21:12:10.8620000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|1500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37591122|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9250|10000|||88.50|89.44|0.00|2.87|0001928D|0|1| +261|2023-10-06T21:12:10.3760000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:12:10.9940000-07:00|40022472|Zeromus|0001928A|37565885||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:10.9940000-07:00|10FF000A|Dukaro Nezikaro|0001928A|82773|82773|10000|10000|16||88.11|95.32|0.00|2.68|1E00|0|0|01|03000A82|01|41F00000|| +38|2023-10-06T21:12:10.9940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||88.11|95.32|0.00|2.68|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:10.5640000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:12:11.0380000-07:00|40022804|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|730003|35340000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|37586298|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05|0001928E|0|1| +38|2023-10-06T21:12:11.1720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|17||84.82|88.47|0.00|2.67|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:11.1720000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:12:11.2180000-07:00|40022472|Zeromus|0001928C|37541601||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:11.2180000-07:00|10FF0006|Wowobora Gogobora|0001928C|81809|81809|9250|10000|28||86.61|87.34|0.00|-2.61|1B00|0|0|01|07000B25|0|0|| +21|2023-10-06T21:12:11.2180000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|1FB00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37565885|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9250|10000|||86.61|87.34|0.00|-2.61|0001928F|0|1| +38|2023-10-06T21:12:11.2180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9250|10000|28||86.61|87.34|0.00|-2.61|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:11.2180000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:12:10.8010000-07:00|Change|40022823||||||||| +21|2023-10-06T21:12:11.2610000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|10390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37565885|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.16|88.36|0.00|-2.26|00019290|0|1| +261|2023-10-06T21:12:10.8010000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:12:11.3050000-07:00|40022472|Zeromus|00019283|37515062||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:11.3050000-07:00|10FF0001|Sesuga Sapisuga|00019283|129071|129071|6800|10000|17||84.82|88.47|0.00|2.67|1300|0|0|0| +38|2023-10-06T21:12:11.3060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6800|10000|17||84.82|88.47|0.00|2.67|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:11.3060000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:12:10.9160000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:12:11.3950000-07:00|40022472|Zeromus|0001928D|37514726||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:11.3950000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|5F3B0000|143E|340000|4|1CA68000|11B|2A8000|0|0|0|0|0|0|0|0|37541601|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||86.06|87.78|0.00|-3.07|00019291|0|1| +261|2023-10-06T21:12:10.9160000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:12:11.4390000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37514726|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||86.09|87.61|-0.02|2.05|00019292|0|1| +21|2023-10-06T21:12:11.4390000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|352003|61260000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|37514726|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9300|10000|||84.82|88.03|0.00|-2.70|00019293|0|1| +38|2023-10-06T21:12:11.4390000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9000|10000|18||84.82|88.03|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:11.4390000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:12:11.4390000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:12:11.0370000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:12:11.1520000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:12:11.5730000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|40DB0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|37514726|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||89.00|90.00|0.00|-2.09|00019294|0|1| +20|2023-10-06T21:12:11.6200000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|84.37|90.31|0.00|-2.06| +39|2023-10-06T21:12:11.7070000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||85.17|86.57|0.00|-2.30| +261|2023-10-06T21:12:11.2490000-07:00|Change|10FF0009||||||||||||||||||||||||| +39|2023-10-06T21:12:11.7520000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||86.42|90.84|0.00|3.07| +24|2023-10-06T21:12:11.7520000-07:00|40022472|Zeromus|DoT|0|191D|37514726|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|7089|10000|||84.37|90.05|0.00|-2.20| +38|2023-10-06T21:12:11.7520000-07:00|40022472|Zeromus|005A5A00|37508297|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:12:11.7970000-07:00|10FF0003|Gegehi Gehi|73814|73814|9200|10000|||84.82|88.03|0.00|2.05| +21|2023-10-06T21:12:11.7970000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|554003|54C30000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|37508297|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||86.34|90.29|0.00|3.10|00019295|0|1| +38|2023-10-06T21:12:11.7970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||86.34|90.29|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:11.7970000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +26|2023-10-06T21:12:11.7970000-07:00|7A2|Bunshin|9.73|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:12:11.3450000-07:00|Change|400227F3||||||||| +261|2023-10-06T21:12:11.3450000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:12:11.8420000-07:00|400227F3|Bunshin|75608|78475|10000|10000|||97.91|101.44|0.00|3.04| +36|2023-10-06T21:12:11.8420000-07:00|0FA0|3| +21|2023-10-06T21:12:11.8860000-07:00|400227F3|Bunshin|6517|Fleeting Raiju|40022472|Zeromus|554003|169B0000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|37508297|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||86.35|90.12|0.00|2.20|00019296|0|1| +39|2023-10-06T21:12:11.8860000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8200|10000|||87.16|88.83|0.00|-2.82| +261|2023-10-06T21:12:11.4420000-07:00|Change|400227F3||| +37|2023-10-06T21:12:11.9750000-07:00|40022472|Zeromus|00019292|37505066||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:11.9750000-07:00|40022472|Zeromus|0001928F|37496954||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:11.9750000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||86.17|87.24|-0.01|2.05| +39|2023-10-06T21:12:11.9750000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9450|10000|||84.95|85.76|0.00|2.91| +37|2023-10-06T21:12:12.0200000-07:00|40022472|Zeromus|00019290|37492801||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:12.0200000-07:00|10FF0009|Zewo Negiwo|81177|81177|7310|10000|||84.37|89.45|0.00|2.17| +39|2023-10-06T21:12:12.0650000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7000|10000|||84.82|88.47|0.00|2.67| +21|2023-10-06T21:12:12.0650000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|52CB0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|37496954|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||84.05|85.51|0.00|-2.38|00019297|0|1| +21|2023-10-06T21:12:12.1090000-07:00|40022487|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|116.50|0.00|0.00|00019298|0|0| +21|2023-10-06T21:12:12.1090000-07:00|40022489|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|116.50|0.00|0.00|00019299|0|0| +21|2023-10-06T21:12:12.1090000-07:00|4002248B|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.00|100.00|0.00|0.00|0001929A|0|0| +21|2023-10-06T21:12:12.1090000-07:00|4002248D|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|88.00|0.00|0.00|0001929B|0|0| +21|2023-10-06T21:12:12.1090000-07:00|4002248F|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001929C|0|0| +21|2023-10-06T21:12:12.1540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37496954|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||84.82|88.47|0.00|2.67|0001929D|0|1| +31|2023-10-06T21:12:12.1540000-07:00|10FF0001||||| +261|2023-10-06T21:12:11.6320000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:12:11.6320000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:12:11.6320000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:12:11.6320000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:12:11.6320000-07:00|Change|4002248D||||||||||||| +37|2023-10-06T21:12:12.1980000-07:00|40022472|Zeromus|00019293|37467931||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:12.1980000-07:00|10FF0003|Gegehi Gehi|00019293|73814|73814|9200|10000|18||84.82|88.03|0.00|2.05|2300|0|0|01|070004D3|0|41F00000|| +38|2023-10-06T21:12:12.1980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9200|10000|18||84.82|88.03|0.00|2.05|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:12:12.2430000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8200|10000|||85.80|87.31|0.00|-2.58|81541|81541|8200|10000|||85.80|87.31|0.00|-2.58|0001929E|0|1| +37|2023-10-06T21:12:12.3320000-07:00|40022472|Zeromus|0001928E|37454311||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:12.3320000-07:00|40022804|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.95|101.46|0.00|-3.05|0|0|0|||||||||| +30|2023-10-06T21:12:12.3320000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022804|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:12:11.8650000-07:00|Change|40022823||||||||| +261|2023-10-06T21:12:11.8650000-07:00|Change|10FF0001||||| +38|2023-10-06T21:12:12.3780000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7310|10000|16||84.37|89.43|0.00|2.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.3780000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:12:12.3780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9200|10000|18||84.82|88.03|0.00|2.05|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.3780000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:12:12.4670000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|385B0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37454311|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||84.82|88.47|0.00|2.07|0001929F|0|1| +38|2023-10-06T21:12:12.4670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|17||84.82|88.47|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.4670000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:12:11.9760000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:12:11.9760000-07:00|Change|10FF0003||| +37|2023-10-06T21:12:12.5120000-07:00|40022472|Zeromus|00019294|37437708||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:12.5120000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|ADB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37454311|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||86.32|90.10|0.00|2.20|000192A0|0|1| +38|2023-10-06T21:12:12.5120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||86.08|87.15|0.00|2.39|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.5120000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +38|2023-10-06T21:12:12.5120000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7310|10000|16||84.37|89.43|0.00|2.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.5120000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:12:12.5120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9450|10000|28||84.21|85.19|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.5120000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +30|2023-10-06T21:12:12.5120000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:12.5120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|17||84.82|88.47|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.5120000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:12:12.5120000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9200|10000|18||84.82|88.03|0.00|2.05|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.5120000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:12:12.5570000-07:00|40022472|Zeromus|00019295|37416009||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:12.5570000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|350D0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|37454311|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|7310|10000|||84.37|89.43|0.00|2.11|000192A1|0|1| +38|2023-10-06T21:12:12.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||86.08|87.15|0.00|2.39|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.5570000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:12:12.6450000-07:00|40022472|Zeromus|00019296|37410222||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:12.6450000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|17||85.17|86.74|-0.02|-0.68|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.6450000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +38|2023-10-06T21:12:12.6450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||86.32|90.10|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.6450000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:12:12.6890000-07:00|40022472|Zeromus|0001929D|37408301||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:12.2780000-07:00|Change|10FF0009||||||||||||||||||| +38|2023-10-06T21:12:12.7790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||83.91|85.37|0.00|1.89|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.7790000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:12.7790000-07:00|400227F3|Bunshin|005A5A00|75608|78475|10000|10000|0||86.35|90.12|0.00|2.20|0|0|0||||||| +30|2023-10-06T21:12:12.7790000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400227F3|Bunshin|00|78475|73814| +38|2023-10-06T21:12:12.7790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||86.32|90.10|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.7790000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +04|2023-10-06T21:12:12.3690000-07:00|4002280F|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||100.99|103.26|0.00|3.11| +261|2023-10-06T21:12:12.3690000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:12:12.3690000-07:00|Remove|4002280F| +37|2023-10-06T21:12:12.8670000-07:00|40022472|Zeromus|00019297|37387106||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:12.8670000-07:00|10FF0004|Buhojaqe Zijaqe|0001929E|81541|81541|8200|10000|17||85.05|86.66|0.00|-0.01|1C00|0|0|01|060004B4|0|41A80000|| +26|2023-10-06T21:12:12.8670000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:12:12.9120000-07:00|40022472|Zeromus|00019291|37362727||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:12.9120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||85.33|86.33|0.00|2.94|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.9120000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:12:12.9120000-07:00|40022823|Carbuncle|005A5A00|74223|77698|10000|10000|0||86.42|86.05|0.00|-2.03|0|0|0||||||| +26|2023-10-06T21:12:12.9120000-07:00|A8F|Searing Light|3.39|10FF0006|Wowobora Gogobora|40022823|Carbuncle|00|77698|81809| +26|2023-10-06T21:12:12.9120000-07:00|30|Well Fed|1740.34|10FF0006|Wowobora Gogobora|40022823|Carbuncle|2964|77698|81809| +38|2023-10-06T21:12:12.9120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9450|10000|28||84.21|85.19|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:12.9120000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +37|2023-10-06T21:12:13.0460000-07:00|40022472|Zeromus|000192A0|37359948||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:13.0460000-07:00|40022804|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.95|101.46|0.00|-3.05|0|0|0||||||||||||| +26|2023-10-06T21:12:13.0460000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022804|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:12:13.0460000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|456003|70BB0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37362727|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9450|10000|||84.53|85.22|0.00|-2.97|000192A2|0|1| +38|2023-10-06T21:12:13.0460000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9150|10000|28||84.53|85.22|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:13.0460000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:12:13.0460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|17||84.87|88.46|0.00|1.83|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:13.0460000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +38|2023-10-06T21:12:13.0460000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9200|10000|18||84.82|88.03|0.00|2.05|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:13.0460000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +261|2023-10-06T21:12:12.5640000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:12:13.0890000-07:00|40022804|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|730003|39580000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|37359948|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05|000192A3|0|1| +39|2023-10-06T21:12:13.1350000-07:00|40022804|Automaton Queen|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05| +38|2023-10-06T21:12:13.1800000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|6910|10000|16||84.37|89.43|0.00|2.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:13.1800000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +38|2023-10-06T21:12:13.1800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|17||84.95|86.60|-0.02|0.53|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:13.1800000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +24|2023-10-06T21:12:13.2250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|156E|90216|90216|10000|10000|||84.00|85.37|0.00|1.68|10FF0009|Zewo Negiwo|0|81177|81177|6910|10000|||84.37|89.43|0.00|2.11| +21|2023-10-06T21:12:13.2250000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37359948|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9200|10000|||84.82|88.03|0.00|2.05|000192A4|0|1| +38|2023-10-06T21:12:13.2250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||84.00|85.37|0.00|1.68|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:13.2690000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|20FC|82773|82773|10000|10000|||86.74|90.12|0.00|2.98|10FF0009|Zewo Negiwo|0|81177|81177|6910|10000|||84.37|89.43|0.00|2.11| +38|2023-10-06T21:12:13.2690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||86.74|90.12|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:13.3140000-07:00|10FF0003|Gegehi Gehi|HoT|0|15C2|73814|73814|9200|10000|||84.82|88.03|0.00|2.05|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8200|10000|||84.95|86.79|0.00|0.46| +21|2023-10-06T21:12:13.3140000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37359948|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||84.95|86.79|0.00|0.46|000192A5|0|1| +38|2023-10-06T21:12:13.3140000-07:00|40022804|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.95|101.46|0.00|-3.05|0|0|0||||||||||||| +30|2023-10-06T21:12:13.3140000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022804|Automaton Queen|00|85668|73814| +38|2023-10-06T21:12:13.3140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||84.36|85.38|0.00|1.63|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:13.3140000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +38|2023-10-06T21:12:13.3140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|17||86.43|88.51|0.00|2.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:13.3140000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:12:13.3140000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9200|10000|18||84.82|88.03|0.00|2.05|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:13.4020000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|15B2|81541|81541|8200|10000|||84.96|87.01|0.00|0.39|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8200|10000|||84.96|87.01|0.00|0.39| +38|2023-10-06T21:12:13.4020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8750|10000|17||84.96|87.01|0.00|0.39|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:13.4920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|4520|129844|129844|10000|10000|||84.96|85.17|0.00|2.44|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8200|10000|||84.96|87.01|0.00|0.39| +24|2023-10-06T21:12:13.4920000-07:00|10FF0006|Wowobora Gogobora|HoT|0|220F|81809|81809|9150|10000|||86.26|85.43|-0.02|1.73|10FF0009|Zewo Negiwo|0|81177|81177|6910|10000|||84.37|89.43|0.00|2.11| +38|2023-10-06T21:12:13.4920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||84.96|85.17|0.00|2.44|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:13.4920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|28||86.26|85.43|-0.02|1.73|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:13.0280000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:12:13.5370000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DDD|82773|82773|10000|10000|||88.49|90.18|0.00|3.05|10FF0009|Zewo Negiwo|0|81177|81177|6910|10000|||84.37|89.43|0.00|2.11| +24|2023-10-06T21:12:13.5370000-07:00|10FF0009|Zewo Negiwo|HoT|0|160D|81177|81177|6910|10000|||84.37|89.43|0.00|2.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8750|10000|||84.97|87.20|0.00|0.34| +38|2023-10-06T21:12:13.5370000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|6910|10000|16||84.37|89.43|0.00|2.11|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:13.5370000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||88.49|90.18|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:13.5370000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +24|2023-10-06T21:12:13.5810000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|31A3|129071|129071|7000|10000|||87.69|88.85|0.00|2.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8750|10000|||84.97|87.20|0.00|0.34| +38|2023-10-06T21:12:13.5810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|17||87.69|88.85|0.00|2.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:13.6700000-07:00|40022472|Zeromus|000192A2|37331089||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:13.6700000-07:00|10FF0006|Wowobora Gogobora|000192A2|81809|81809|9700|10000|28||86.65|85.54|0.00|1.33|1B00|0|0|01|03000B25|0|0|| +21|2023-10-06T21:12:13.6700000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|456003|32220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37359948|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||86.65|85.54|0.00|1.33|000192A6|0|1| +38|2023-10-06T21:12:13.6700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|28||86.65|85.54|0.00|1.33|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:13.6700000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:12:13.7590000-07:00|40022472|Zeromus|0001929F|37316662||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:13.7590000-07:00|10FF0001|Sesuga Sapisuga|0001929F|129071|129071|7400|10000|17||88.96|89.14|0.00|2.22|1300|0|0|0| +37|2023-10-06T21:12:13.7590000-07:00|40022472|Zeromus|000192A4|37316625||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:13.2450000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:12:13.8480000-07:00|40022472|Zeromus|000192A1|37303044||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:13.8480000-07:00|40022472|Zeromus|000192A5|37302893||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:13.3400000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:12:13.4380000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:12:13.8930000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3DFE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37316625|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||87.67|84.92|0.00|1.77|000192A7|0|1| +21|2023-10-06T21:12:13.9370000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|92E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37302893|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.66|85.48|0.00|1.55|000192A8|0|1| +20|2023-10-06T21:12:13.9370000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|84.98|87.45|0.00|0.26| +21|2023-10-06T21:12:13.9820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37302893|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||88.34|86.21|0.00|1.50|000192A9|0|1| +261|2023-10-06T21:12:13.6280000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:12:13.6280000-07:00|Change|10FF0007||||||||| +20|2023-10-06T21:12:14.0260000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|84.37|89.43|0.00|2.11| +21|2023-10-06T21:12:14.1160000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18070000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|37302893|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||93.02|90.34|0.00|3.10|000192AA|0|1| +38|2023-10-06T21:12:14.1160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||93.02|90.34|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:14.1160000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:12:13.7480000-07:00|Change|400227F3||||||||| +261|2023-10-06T21:12:13.7480000-07:00|Change|400227F3||||||||| +261|2023-10-06T21:12:13.7480000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:12:13.7480000-07:00|Change|400227F3||| +21|2023-10-06T21:12:14.2040000-07:00|400227F3|Bunshin|4405|Spinning Edge|40022472|Zeromus|710003|10120000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|37302893|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||93.45|90.37|0.00|2.57|000192AB|0|1| +21|2023-10-06T21:12:14.3380000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||90.04|86.94|0.00|1.25|81809|81809|9700|10000|||90.04|86.94|0.00|1.25|000192AC|0|1| +38|2023-10-06T21:12:14.3380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|28||90.04|86.94|0.00|1.25|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:14.3380000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:12:13.8620000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:12:13.8620000-07:00|Change|400227F3||| +261|2023-10-06T21:12:13.9790000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:12:14.4280000-07:00|40022472|Zeromus|000192A6|37290059||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:14.4280000-07:00|10FF0006|Wowobora Gogobora|000192A6|81809|81809|9700|10000|28||91.23|87.06|0.00|1.62|1B00|0|0|01|030000A7|0|C1200000|| +21|2023-10-06T21:12:14.4280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37302893|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||93.41|89.86|0.00|2.17|000192AD|0|1| +31|2023-10-06T21:12:14.4280000-07:00|10FF0001||||| +37|2023-10-06T21:12:14.4720000-07:00|10FF0006|Wowobora Gogobora|000192AC|81809|81809|9700|10000|28||91.23|87.06|0.00|1.62|1B00|0|0|01|030000A7|0|41200000|| +38|2023-10-06T21:12:14.4720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|28||91.23|87.06|0.00|1.62|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:14.2120000-07:00|Change|10FF0001||||||||| +23|2023-10-06T21:12:14.5170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +37|2023-10-06T21:12:14.5170000-07:00|40022472|Zeromus|000192A7|37274189||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:14.5170000-07:00|40022472|Zeromus|000192A9|37273939||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:14.5170000-07:00|40022472|Zeromus|000192AA|37267788||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:14.5610000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|4DAE0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|37290059|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.72|85.57|0.00|1.55|000192AE|0|1| +37|2023-10-06T21:12:14.6050000-07:00|40022472|Zeromus|000192AB|37263674||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:14.6950000-07:00|40022472|Zeromus|000192A8|37261324||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:14.6950000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||93.20|85.58|0.00|2.07| +21|2023-10-06T21:12:14.6950000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37263674|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||94.31|90.38|0.00|2.70|000192AF|0|1| +39|2023-10-06T21:12:14.7840000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||94.31|90.38|0.00|2.70| +24|2023-10-06T21:12:14.7840000-07:00|40022472|Zeromus|DoT|0|1861|37263674|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|6910|10000|||84.37|89.43|0.00|2.11| +261|2023-10-06T21:12:14.3930000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T21:12:14.7840000-07:00|40022472|Zeromus|005A5A00|37255083|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:12:14.8290000-07:00|10FF0003|Gegehi Gehi|73814|73814|9400|10000|||89.14|87.60|0.00|1.65| +39|2023-10-06T21:12:14.8290000-07:00|400227F3|Bunshin|75608|78475|10000|10000|||93.45|90.37|0.00|2.57| +21|2023-10-06T21:12:14.8290000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|157C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37263674|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.33|85.48|0.00|1.52|000192B0|0|1| +21|2023-10-06T21:12:14.8290000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F840E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|37263674|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8750|10000|||85.76|87.37|0.00|1.59|000192B1|0|1| +261|2023-10-06T21:12:14.3930000-07:00|Change|10FF0009||||||| +23|2023-10-06T21:12:14.8730000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +39|2023-10-06T21:12:14.8730000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8550|10000|||87.34|87.25|0.00|1.96| +36|2023-10-06T21:12:14.8730000-07:00|107C|3| +37|2023-10-06T21:12:14.9630000-07:00|40022472|Zeromus|000192AD|37253225||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:14.9630000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.53|85.58|0.00|1.50| +39|2023-10-06T21:12:14.9630000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||94.35|86.82|0.00|1.61| +261|2023-10-06T21:12:14.5760000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:12:14.5760000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:12:15.0520000-07:00|40022472|Zeromus|000192A3|37238545||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:15.0520000-07:00|10FF0009|Zewo Negiwo|81177|81177|7131|10000|||84.97|89.48|0.00|1.96| +21|2023-10-06T21:12:15.0520000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|16B00000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|37253225|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||96.88|91.11|0.00|2.20|000192B2|0|1| +38|2023-10-06T21:12:15.0520000-07:00|40022804|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.95|101.46|0.00|-3.05|0|0|0||||||| +30|2023-10-06T21:12:15.0520000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022804|Automaton Queen|01|85668|40478540| +39|2023-10-06T21:12:15.0970000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7600|10000|||96.88|91.11|0.00|2.20| +39|2023-10-06T21:12:15.1400000-07:00|40022823|Carbuncle|77698|77698|10000|10000|||88.67|85.74|0.00|2.79| +261|2023-10-06T21:12:14.6760000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T21:12:15.1850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|17||97.51|91.16|0.00|2.33|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:15.1850000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:12:15.2290000-07:00|40022472|Zeromus|000192AF|37236303||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:15.2290000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||95.85|85.66|0.00|1.51|129844|129844|10000|10000|||95.85|85.66|0.00|1.51|000192B3|0|1| +38|2023-10-06T21:12:15.2290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||95.85|85.66|0.00|1.51|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:15.2290000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:12:14.7890000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:12:15.3180000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|7131|10000|||86.23|89.22|0.00|1.81|81177|81177|7131|10000|||86.23|89.22|0.00|1.81|000192B4|0|1| +37|2023-10-06T21:12:15.3630000-07:00|40022472|Zeromus|000192B0|37230803||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:15.3630000-07:00|10FF0007|Kehabiqo Febiqo|000192B0|129844|129844|10000|10000|19||96.55|85.68|0.00|1.62|1500|0|0|01|07000769|0|C1F00000|| +37|2023-10-06T21:12:15.3630000-07:00|40022472|Zeromus|000192AE|37210917||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:15.4520000-07:00|40022472|Zeromus|000192B1|37210917|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:12:15.4520000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +261|2023-10-06T21:12:15.0220000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:12:15.0220000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T21:12:15.4970000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|37210917|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||97.63|86.59|0.00|1.63|000192B5|0|1| +38|2023-10-06T21:12:15.4970000-07:00|40022823|Carbuncle|005A5A00|0|77698|0|10000|0||90.91|85.60|0.00|1.81|0|0|0||||||| +30|2023-10-06T21:12:15.4970000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022823|Carbuncle|00|77698|81809| +38|2023-10-06T21:12:15.4970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|28||97.63|86.59|0.00|1.63|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:15.4970000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:12:15.5430000-07:00|4002283D||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:12:15.1320000-07:00|Change|40022823||||||||| +38|2023-10-06T21:12:15.5430000-07:00|4002283D||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:12:15.5430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||96.47|85.67|0.00|1.56|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:15.5430000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:15.5430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8550|10000|17||90.12|87.05|0.00|1.69|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:15.5430000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +261|2023-10-06T21:12:15.1320000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:12:15.6740000-07:00|40022472|Zeromus|000192B2|37205109||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:12:15.2230000-07:00|4002283D|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||99.83|88.71|0.00|2.92| +261|2023-10-06T21:12:15.2230000-07:00|Add|4002283D||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:15.2230000-07:00|Change|4002283D||||| +261|2023-10-06T21:12:15.3150000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:12:15.7640000-07:00|10FF0007|Kehabiqo Febiqo|000192B3|129844|129844|10000|10000|19||97.10|85.71|0.00|1.62|1500|0|0|01|07000769|0|41F00000|| +38|2023-10-06T21:12:15.7640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||97.10|85.71|0.00|1.62|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:15.9420000-07:00|10FF0009|Zewo Negiwo|000192B4|81177|81177|7131|10000|16||89.33|86.79|0.00|2.10|1800|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:12:15.9420000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:12:15.6190000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:12:15.6190000-07:00|Change|400227F3||| +39|2023-10-06T21:12:16.1210000-07:00|40022804|Automaton Queen|82193|85668|10000|10000|||101.95|101.46|0.00|-3.05| +20|2023-10-06T21:12:16.1210000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|97.33|88.09|0.00|1.47| +261|2023-10-06T21:12:15.6190000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:12:16.2100000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1523|90216|90216|10000|10000|||99.90|85.94|0.00|1.50|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||91.16|85.92|0.00|2.03| +38|2023-10-06T21:12:16.2100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.90|85.94|0.00|1.50|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:16.2540000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1551|82773|82773|10000|10000|||99.84|90.59|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||91.16|85.92|0.00|2.03| +38|2023-10-06T21:12:16.2540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.84|90.59|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:16.3010000-07:00|10FF0003|Gegehi Gehi|HoT|0|1531|73814|73814|9400|10000|||97.70|88.06|0.00|1.99|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8550|10000|||95.55|87.16|0.00|1.53| +21|2023-10-06T21:12:16.3010000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32716003|4BEA0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|37205109|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.84|90.59|0.00|3.11|000192B6|0|1| +38|2023-10-06T21:12:16.3010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|18||97.70|88.06|0.00|1.99|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:12:16.3440000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|A1C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37205109|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.24|85.19|0.00|1.93|000192B7|0|1| +38|2023-10-06T21:12:16.3440000-07:00|40022804|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.95|101.46|0.00|-3.05|0|0|0|||| +30|2023-10-06T21:12:16.3440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022804|Automaton Queen|00|85668|81809| +38|2023-10-06T21:12:16.3440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||100.24|85.19|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:16.3440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +30|2023-10-06T21:12:16.3440000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:12:16.3440000-07:00|4002283D|Emerald Garuda|005A5A00|74223|77698|10000|10000|0||99.83|88.71|0.00|2.92|0|0|0||||||| +26|2023-10-06T21:12:16.3440000-07:00|30|Well Fed|1736.91|10FF0006|Wowobora Gogobora|4002283D|Emerald Garuda|2964|77698|81809| +38|2023-10-06T21:12:16.3440000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7131|10000|16||91.69|85.68|0.00|2.01|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:16.3440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|00|81177|81809| +38|2023-10-06T21:12:16.3440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.02|85.95|0.00|1.50|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:16.3440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:12:16.3450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|28||100.01|86.68|0.00|1.44|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:16.3450000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:12:16.3450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|17||100.10|91.68|0.00|2.79|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:16.3450000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:12:16.3450000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8550|10000|17||95.55|87.16|0.00|1.53|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:16.3450000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:12:16.3450000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|18||97.70|88.06|0.00|1.99|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:16.3450000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:12:16.3450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.84|90.59|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:16.3450000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|82773|81809| +24|2023-10-06T21:12:16.3880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|162E|81541|81541|8550|10000|||95.55|87.16|0.00|1.53|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8550|10000|||95.55|87.16|0.00|1.53| +38|2023-10-06T21:12:16.3880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9100|10000|17||95.55|87.16|0.00|1.53|0|0|0||||||||||||||||||||||||||||||||||||| +04|2023-10-06T21:12:15.9670000-07:00|400227F3|Bunshin|00|5A|10FF000A|00||8313|10897|75608|78475|10000|10000|||93.45|90.37|0.00|2.57| +261|2023-10-06T21:12:15.9670000-07:00|Remove|400227F3| +24|2023-10-06T21:12:16.4770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|39DB|129844|129844|10000|10000|||100.24|85.19|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9100|10000|||96.37|87.20|0.74|1.44| +24|2023-10-06T21:12:16.4770000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2361|81809|81809|9900|10000|||100.11|86.69|0.00|1.32|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||92.29|85.41|0.00|2.01| +38|2023-10-06T21:12:16.4770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||100.24|85.19|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:16.4770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||100.11|86.69|0.00|1.32|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:15.9670000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:12:16.5210000-07:00|10FF0006|Wowobora Gogobora|000192B5|81809|81809|10000|10000|28||100.11|86.69|0.00|1.32|1B00|0|0|01|04000AA5|0|0|| +24|2023-10-06T21:12:16.5220000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|172C|129071|129071|7600|10000|||100.10|91.68|0.00|2.79|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||92.93|85.11|0.00|2.01| +24|2023-10-06T21:12:16.5220000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DFB|82773|82773|10000|10000|||99.84|90.59|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||92.93|85.11|0.00|2.01| +24|2023-10-06T21:12:16.5220000-07:00|10FF0003|Gegehi Gehi|HoT|777|DFE|73814|73814|9400|10000|||98.04|88.06|0.00|2.68|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||92.93|85.11|0.00|2.01| +24|2023-10-06T21:12:16.5220000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DF3|81541|81541|9100|10000|||97.26|87.23|1.45|1.35|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||92.93|85.11|0.00|2.01| +24|2023-10-06T21:12:16.5220000-07:00|10FF0006|Wowobora Gogobora|HoT|777|1647|81809|81809|10000|10000|||100.11|86.69|0.00|1.32|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||92.93|85.11|0.00|2.01| +24|2023-10-06T21:12:16.5220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|16AD|90216|90216|10000|10000|||99.94|85.97|0.00|0.13|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||92.93|85.11|0.00|2.01| +24|2023-10-06T21:12:16.5220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E75|129844|129844|10000|10000|||100.24|85.19|0.00|-3.09|10FF0009|Zewo Negiwo|0|81177|81177|7131|10000|||92.93|85.11|0.00|2.01| +24|2023-10-06T21:12:16.5220000-07:00|10FF0009|Zewo Negiwo|HoT|0|161A|81177|81177|7131|10000|||92.93|85.11|0.00|2.01|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9100|10000|||97.26|87.23|1.45|1.35| +38|2023-10-06T21:12:16.5220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|19||100.24|85.19|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:16.5220000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:12:16.5220000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7681|10000|16||92.93|85.11|0.00|2.01|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:16.5220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.94|85.97|0.00|0.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:16.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:16.5220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||100.11|86.69|0.00|1.32|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:16.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:16.5220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|17||100.10|91.68|0.00|2.79|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:16.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:12:16.5220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9100|10000|17||97.26|87.23|1.45|1.35|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:16.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:12:16.5220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|18||98.04|88.06|0.00|2.68|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:16.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:12:16.5220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.84|90.59|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:16.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:12:16.1770000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:12:16.1770000-07:00|Change|4002283D||| +24|2023-10-06T21:12:16.5660000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|159D|129071|129071|7600|10000|||100.10|91.68|0.00|2.79|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9100|10000|||97.26|87.23|1.45|1.35| +38|2023-10-06T21:12:16.5660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|17||100.10|91.68|0.00|2.79|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:12:16.6100000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|93A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37205109|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.94|85.97|0.00|0.13|000192B8|0|1| +261|2023-10-06T21:12:16.1770000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:12:16.1770000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:12:16.6990000-07:00|40022472|Zeromus|000192B6|37185675||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:16.6990000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37205109|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||100.10|91.68|0.00|2.79|000192B9|0|1| +31|2023-10-06T21:12:16.6990000-07:00|10FF0001||||| +21|2023-10-06T21:12:16.8790000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37185675|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.84|90.59|0.00|3.13|000192BA|0|1| +21|2023-10-06T21:12:17.0130000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37185675|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9100|10000|||99.33|87.39|0.95|1.19|000192BB|0|1| +21|2023-10-06T21:12:17.0570000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|724003|25B70000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|37185675|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.78|86.11|0.00|-1.08|000192BC|0|1| +21|2023-10-06T21:12:17.1020000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.09|85.19|0.00|-3.13|37185675|40478540|10000|10000|||100.00|80.10|0.00|0.00|000192BD|0|1| +21|2023-10-06T21:12:17.1460000-07:00|4002247F|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|83.50|0.00|0.00|000192BE|0|0| +21|2023-10-06T21:12:17.1460000-07:00|40022481|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|83.50|0.00|0.00|000192BF|0|0| +21|2023-10-06T21:12:17.1460000-07:00|40022483|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.00|100.00|0.00|0.00|000192C0|0|0| +21|2023-10-06T21:12:17.1460000-07:00|40022485|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|112.00|0.00|0.00|000192C1|0|0| +21|2023-10-06T21:12:17.1460000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37185675|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.96|86.55|0.00|-2.93|000192C2|0|1| +261|2023-10-06T21:12:16.6980000-07:00|Change|40022481||||||||||||| +261|2023-10-06T21:12:16.6980000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:12:16.6980000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:12:16.6980000-07:00|Change|40022485||||||||||||| +37|2023-10-06T21:12:17.2350000-07:00|40022472|Zeromus|000192B9|37183867||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:17.2360000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.66|87.56|0.00|2.02| +37|2023-10-06T21:12:17.2800000-07:00|40022472|Zeromus|000192B7|37142450||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:17.2800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9100|10000|17||99.66|87.56|0.00|2.02|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:17.2800000-07:00|317|Dissipation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:12:17.3240000-07:00|4002284A||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:12:17.3240000-07:00|4002284A||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:12:17.3690000-07:00|40022472|Zeromus|000192B8|37140088||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:17.4130000-07:00|40022472|Zeromus|000192BA|37137415||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:16.9300000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:12:17.5470000-07:00|40022472|Zeromus|000192BB|37137258||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:17.5470000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|225A0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|37137415|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||100.10|91.68|0.00|-3.13|000192C3|0|1| +21|2023-10-06T21:12:17.5470000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|154003|3EE60000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|37137415|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||98.16|88.06|0.00|2.92|000192C4|0|1| +38|2023-10-06T21:12:17.5470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9200|10000|18||98.16|88.06|0.00|2.92|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:17.5470000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:12:17.5470000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:12:17.5910000-07:00|4002283D|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|350003|5C610000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|37137415|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||99.83|88.71|0.00|2.92|000192C5|0|1| +261|2023-10-06T21:12:17.1540000-07:00|Change|40022823||||||||| +261|2023-10-06T21:12:17.1540000-07:00|Add|4002284A||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:12:17.1540000-07:00|4002284A|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||101.25|89.07|0.00|-2.37| +261|2023-10-06T21:12:17.2450000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:12:17.6820000-07:00|40022472|Zeromus|000192C2|37137026||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:17.2450000-07:00|Change|4002284A||||| +261|2023-10-06T21:12:17.2450000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:12:17.7250000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.75|86.14|0.00|3.10| +39|2023-10-06T21:12:17.7700000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.84|90.59|0.00|3.13| +24|2023-10-06T21:12:17.7700000-07:00|40022472|Zeromus|DoT|0|1FBB|37137026|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|7681|10000|||99.32|85.35|0.00|1.63| +38|2023-10-06T21:12:17.7700000-07:00|40022472|Zeromus|005A5A00|37128903|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:12:17.8150000-07:00|40022472|Zeromus|000192BC|37119248||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:17.8150000-07:00|10FF0003|Gegehi Gehi|73814|73814|9400|10000|||98.16|88.06|0.00|2.92| +20|2023-10-06T21:12:17.8600000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.45|85.36|0.00|1.60| +36|2023-10-06T21:12:17.8600000-07:00|1158|3| +261|2023-10-06T21:12:17.4420000-07:00|Change|10FF0009||||||||||||||||||||||||| +37|2023-10-06T21:12:17.9040000-07:00|10FF0007|Kehabiqo Febiqo|000192BD|129844|129844|10000|10000|6||99.66|85.19|-0.02|-3.08|1500|0|0|01|0D000000|0|0|| +39|2023-10-06T21:12:17.9040000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9300|10000|||99.87|87.66|0.00|3.13| +38|2023-10-06T21:12:17.9040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||99.66|85.19|-0.02|-3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:17.9040000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:12:17.9490000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|350003|452B0000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|37119248|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.87|86.47|0.00|-2.37|000192C6|0|1| +38|2023-10-06T21:12:17.9490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||99.87|86.47|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:17.9490000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T21:12:17.9490000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:12:17.9930000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.66|85.21|0.00|-2.28| +39|2023-10-06T21:12:17.9930000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.87|86.47|0.00|-2.37| +39|2023-10-06T21:12:18.0370000-07:00|10FF0009|Zewo Negiwo|81177|81177|7902|10000|||99.58|85.37|0.00|2.45| +39|2023-10-06T21:12:18.0820000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7800|10000|||100.10|91.66|0.00|-3.06| +261|2023-10-06T21:12:17.6410000-07:00|Change|40022804||||||||| +261|2023-10-06T21:12:17.6410000-07:00|Change|40022804||||||||| +261|2023-10-06T21:12:17.6410000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:12:18.1730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|404D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|37119248|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9300|10000|||99.87|87.66|0.00|3.13|000192C7|0|1| +21|2023-10-06T21:12:18.1730000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37119248|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||98.16|88.06|0.00|2.92|000192C8|0|1| +21|2023-10-06T21:12:18.2170000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BCB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37119248|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.66|85.24|0.00|-0.79|000192C9|0|1| +37|2023-10-06T21:12:18.3050000-07:00|40022472|Zeromus|000192C3|37110454||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:18.3050000-07:00|10FF0001|Sesuga Sapisuga|000192C3|129071|129071|8800|10000|17||100.10|91.70|0.00|-2.99|1300|0|0|0| +261|2023-10-06T21:12:17.8690000-07:00|Change|4002284A||||||||| +37|2023-10-06T21:12:18.3500000-07:00|40022472|Zeromus|000192C4|37094352||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:12:18.3500000-07:00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01| +21|2023-10-06T21:12:18.5280000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|35640000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|37094352|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||98.20|88.27|0.00|0.99|000192CA|0|1| +38|2023-10-06T21:12:18.5280000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9100|10000|18||98.20|88.27|0.00|0.99|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:18.5280000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:12:18.5730000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|4A6F0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|37094352|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.78|92.41|0.00|-0.36|000192CB|0|1| +261|2023-10-06T21:12:18.2010000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:12:18.7070000-07:00|40022472|Zeromus|000192C8|37094318||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:18.7510000-07:00|40022472|Zeromus|000192C9|37091299||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:18.2940000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:12:18.2940000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:12:18.7970000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|18080000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|37091299|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.41|89.50|0.00|-0.09|000192CC|0|1| +21|2023-10-06T21:12:18.7970000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32110000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|37091299|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|7902|10000|||99.63|85.37|0.00|3.08|000192CD|0|1| +37|2023-10-06T21:12:18.8870000-07:00|40022472|Zeromus|000192C5|37067650||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:18.3930000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:12:18.4850000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:12:18.9310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||99.37|90.14|0.00|2.28|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:18.9310000-07:00|31|Medicated|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|296B|129844|129844| +24|2023-10-06T21:12:18.9770000-07:00|40022472|Zeromus|DoT|A92|4DD|37067650|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||99.87|89.23|0.00|-0.21| +37|2023-10-06T21:12:18.9770000-07:00|40022472|Zeromus|000192C6|37048698||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:18.9770000-07:00|10FF0006|Wowobora Gogobora|000192C6|81809|81809|10000|10000|28||99.87|89.23|0.00|-0.21|1B00|0|0|01|03000A92|0|41700000|| +26|2023-10-06T21:12:18.9770000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:12:18.9770000-07:00|40022472|Zeromus|000192C7|37032237||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:18.9770000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|BC90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37067650|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8800|10000|||100.14|92.43|0.00|-3.10|000192CE|0|1| +38|2023-10-06T21:12:18.9770000-07:00|40022472|Zeromus|005A5A00|37032237|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +31|2023-10-06T21:12:18.9770000-07:00|10FF0001||||| +21|2023-10-06T21:12:19.0650000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37032237|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.69|94.77|0.00|3.12|000192CF|0|1| +261|2023-10-06T21:12:18.5840000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:12:19.1090000-07:00|40022472|Zeromus|000192CB|37013182||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:18.6970000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:12:19.1980000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1641|90216|90216|10000|10000|||99.66|89.36|0.00|-0.12|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.63|85.37|0.00|3.08| +38|2023-10-06T21:12:19.1980000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.66|89.36|0.00|-0.12|0|0|0||||||||||||||||||||||||||||||| +04|2023-10-06T21:12:18.6970000-07:00|40022823|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||93.64|85.53|0.00|1.58| +24|2023-10-06T21:12:19.2430000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1573|82773|82773|10000|10000|||99.69|94.55|-0.02|3.04|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.63|85.37|0.00|3.08| +38|2023-10-06T21:12:19.2430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.69|94.55|-0.02|3.04|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:18.6970000-07:00|Add|4002284F||||||||||||||||||||||||||||| +261|2023-10-06T21:12:18.6970000-07:00|Remove|40022823| +261|2023-10-06T21:12:18.8170000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:12:19.2880000-07:00|40022472|Zeromus|000192CA|36999514||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:19.2880000-07:00|10FF0003|Gegehi Gehi|HoT|0|2323|73814|73814|9100|10000|||98.80|91.73|0.00|0.43|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8900|10000|||98.98|90.30|0.00|-0.45| +21|2023-10-06T21:12:19.2880000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37013182|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.66|90.51|0.00|-0.04|000192D0|0|1| +38|2023-10-06T21:12:19.2880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9100|10000|18||98.80|91.73|0.00|0.43|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:19.3330000-07:00|40022472|Zeromus|000192CC|36993362||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:19.3330000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|3FA20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37013182|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9100|10000|||98.80|91.73|0.00|0.43|000192D1|0|1| +24|2023-10-06T21:12:19.3770000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1598|81541|81541|8900|10000|||98.98|90.30|0.00|-0.45|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8900|10000|||98.98|90.30|0.00|-0.45| +38|2023-10-06T21:12:19.3770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9450|10000|17||98.98|90.30|0.00|-0.45|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:19.4660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|49C1|129844|129844|10000|10000|||99.25|92.24|0.00|0.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9450|10000|||98.97|90.44|0.00|-0.43| +24|2023-10-06T21:12:19.4660000-07:00|40022472|Zeromus|DoT|A92|4AF|36993362|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||99.89|92.48|0.00|-0.03| +24|2023-10-06T21:12:19.4660000-07:00|10FF0006|Wowobora Gogobora|HoT|0|15E4|81809|81809|10000|10000|||99.89|92.48|0.00|-0.03|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.64|85.42|0.00|1.71| +38|2023-10-06T21:12:19.4660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||99.25|92.24|0.00|0.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:19.4660000-07:00|40022472|Zeromus|005A5A00|36992163|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +38|2023-10-06T21:12:19.4660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||99.89|92.48|0.00|-0.03|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:19.4660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8800|10000|17||100.14|92.43|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:19.4660000-07:00|31|Medicated|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|296B|129071|129071| +12|2023-10-06T21:12:19.0620000-07:00|19|3472|389|3999|247|412|390|3472|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +37|2023-10-06T21:12:19.5100000-07:00|40022472|Zeromus|000192CE|36989146||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:19.5550000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DF0|82773|82773|10000|10000|||99.86|97.67|0.00|1.06|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.65|85.44|0.00|0.96| +24|2023-10-06T21:12:19.5550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DF5|129844|129844|10000|10000|||99.22|92.77|0.00|0.08|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.65|85.44|0.00|0.96| +24|2023-10-06T21:12:19.5550000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DD3|81809|81809|10000|10000|||99.89|93.15|0.00|-0.01|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.65|85.44|0.00|0.96| +24|2023-10-06T21:12:19.5550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E4C|90216|90216|10000|10000|||99.65|92.09|0.00|-0.01|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.65|85.44|0.00|0.96| +24|2023-10-06T21:12:19.5550000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|1623|129071|129071|8800|10000|||100.14|92.43|0.00|-3.10|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.65|85.44|0.00|0.96| +24|2023-10-06T21:12:19.5550000-07:00|10FF0003|Gegehi Gehi|HoT|777|DD3|73814|73814|9100|10000|||98.81|91.85|0.00|3.04|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.65|85.44|0.00|0.96| +24|2023-10-06T21:12:19.5550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E8A|81541|81541|9450|10000|||98.96|90.57|0.00|-0.42|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.65|85.44|0.00|0.96| +24|2023-10-06T21:12:19.5550000-07:00|10FF0009|Zewo Negiwo|HoT|777|E71|81177|81177|7502|10000|||99.65|85.44|0.00|0.96|10FF0009|Zewo Negiwo|0|81177|81177|7502|10000|||99.65|85.44|0.00|0.96| +24|2023-10-06T21:12:19.5550000-07:00|10FF0009|Zewo Negiwo|HoT|0|1503|81177|81177|7502|10000|||99.65|85.44|0.00|0.96|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9450|10000|||98.96|90.57|0.00|-0.42| +24|2023-10-06T21:12:19.5550000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|147D|129071|129071|8800|10000|||100.14|92.43|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9450|10000|||98.96|90.57|0.00|-0.42| +21|2023-10-06T21:12:19.5550000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|4D540000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|36992163|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.65|92.09|0.00|-0.01|000192D2|0|1| +38|2023-10-06T21:12:19.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||99.22|92.77|0.00|0.08|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:19.5550000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:12:19.5550000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8052|10000|16||99.65|85.44|0.00|0.96|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:19.5550000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:12:19.5550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.65|92.09|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:19.5550000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:19.5550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||99.89|93.15|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:19.5550000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:19.5550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8800|10000|17||100.14|92.43|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:19.5550000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:12:19.5550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9450|10000|17||98.96|90.57|0.00|-0.42|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:19.5550000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:12:19.5550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9100|10000|18||98.81|91.85|0.00|3.04|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:19.5550000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:12:19.5550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.86|97.67|0.00|1.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:19.5550000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:12:19.5990000-07:00|40022472|Zeromus|000192CF|36987091||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:19.5990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|98.96|90.57|0.00|-0.42| +261|2023-10-06T21:12:19.2610000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:12:19.3610000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:12:19.3610000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:12:19.4560000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:12:19.5490000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:12:20.0440000-07:00|40022472|Zeromus|000192D0|36984912||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:20.0440000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41712003|3F080000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|36987091|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8800|10000|||100.14|92.43|0.00|-3.13|000192D3|0|1| +38|2023-10-06T21:12:20.0440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8800|10000|17||100.14|92.43|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:20.0440000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:12:20.0440000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:12:20.0880000-07:00|40022472|Zeromus|000192CD|36972095||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:19.6390000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:12:20.1340000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|1E260000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.05|95.84|0.00|-0.04|36987091|40478540|10000|10000|||100.00|80.10|0.00|0.00|000192D4|0|1| +38|2023-10-06T21:12:20.2210000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8052|10000|16||99.22|89.37|0.00|-0.32|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:20.2210000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:12:20.3100000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36972095|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.98|97.79|0.00|0.02|000192D5|0|1| +37|2023-10-06T21:12:20.3540000-07:00|40022472|Zeromus|000192D2|36952299||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:20.3550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.96|101.30|0.00|-0.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:20.3550000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +20|2023-10-06T21:12:20.3990000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.23|89.92|0.00|-0.28| +261|2023-10-06T21:12:19.9910000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:12:20.4900000-07:00|40022472|Zeromus|000192D1|36936009||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:20.4900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.63|97.90|-0.02|0.27|0|0|0|||||||||||||||| +30|2023-10-06T21:12:20.4900000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +21|2023-10-06T21:12:20.5340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30770000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36936009|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9450|10000|||98.92|90.90|0.00|3.04|000192D6|0|1| +37|2023-10-06T21:12:20.6220000-07:00|40022472|Zeromus|000192D3|36919873||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:20.6220000-07:00|10FF0001|Sesuga Sapisuga|000192D3|129071|129071|8800|10000|17||100.14|92.43|0.00|-3.13|1300|0|0|02|0300076E|03|41F00000|||||| +38|2023-10-06T21:12:20.6220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||100.06|99.04|0.00|0.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:20.6220000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:20.6220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8800|10000|17||100.14|92.43|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:20.1090000-07:00|Change|4002284A||||||||| +21|2023-10-06T21:12:20.6660000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|17190000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|36919873|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|-0.10|000192D7|0|1| +261|2023-10-06T21:12:20.1990000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:12:20.7100000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.63|99.38|0.00|0.12| +39|2023-10-06T21:12:20.7560000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:20.7560000-07:00|40022472|Zeromus|DoT|0|195B|36919873|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|8052|10000|||99.46|90.53|0.00|-2.53| +38|2023-10-06T21:12:20.7560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||98.99|97.00|0.00|-0.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:20.7560000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:12:20.7560000-07:00|40022472|Zeromus|005A5A00|36913382|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:12:20.2940000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:12:20.7990000-07:00|10FF0003|Gegehi Gehi|73814|73814|9300|10000|||98.62|95.55|0.00|-0.03| +21|2023-10-06T21:12:20.7990000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|712003|4B920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36919873|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||98.99|97.00|0.00|-0.06|000192D8|0|1| +37|2023-10-06T21:12:20.8440000-07:00|40022472|Zeromus|000192D5|36913236||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:12:20.8450000-07:00|1234|3| +39|2023-10-06T21:12:20.8880000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9250|10000|||98.92|90.90|0.00|3.04| +38|2023-10-06T21:12:20.8880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9300|10000|18||98.62|96.28|0.00|-0.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:20.8880000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:12:20.9330000-07:00|10FF0007|Kehabiqo Febiqo|000192D4|122126|129844|10000|10000|0||98.99|97.00|0.00|3.08|1500|0|0|01|0F000000|0|0|| +38|2023-10-06T21:12:20.9330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122126|129844|10000|10000|0||98.99|97.00|0.00|3.08|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:20.9330000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +261|2023-10-06T21:12:20.4740000-07:00|Change|10FF0009||||||||||||||||||| +39|2023-10-06T21:12:20.9770000-07:00|10FF0007|Kehabiqo Febiqo|123424|129844|10000|10000|||98.99|97.00|0.00|3.08| +39|2023-10-06T21:12:20.9770000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.22|100.70|0.00|0.10| +39|2023-10-06T21:12:21.0220000-07:00|10FF0009|Zewo Negiwo|81177|81177|8273|10000|||99.50|90.65|0.00|3.09| +20|2023-10-06T21:12:21.0220000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|98.62|96.84|-0.02|0.00| +38|2023-10-06T21:12:21.0220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9250|10000|17||98.92|90.90|0.00|2.88|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:21.0220000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:12:21.0660000-07:00|40022472|Zeromus|000192D7|36907323||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:21.0660000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9000|10000|||100.15|91.85|0.00|3.13| +261|2023-10-06T21:12:20.5850000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:12:21.1110000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.56|91.10|0.00|-2.38|0|0|0||||||| +26|2023-10-06T21:12:21.1110000-07:00|30|Well Fed|2281.56|10FF0004|Buhojaqe Zijaqe|4002284A|Ruby Carbuncle|2968|77430|81541| +26|2023-10-06T21:12:21.1110000-07:00|7AC|Summon Order II|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:12:21.1110000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9250|10000|||98.92|90.90|0.00|2.14|81541|81541|9250|10000|||98.92|90.90|0.00|2.14|000192D9|0|1| +38|2023-10-06T21:12:21.1560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|17||100.15|91.85|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:21.1560000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:12:21.2450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6E50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36907323|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.15|91.85|0.00|3.13|000192DA|0|1| +21|2023-10-06T21:12:21.2450000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36907323|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000192DB|0|1| +31|2023-10-06T21:12:21.2450000-07:00|10FF0001||||| +37|2023-10-06T21:12:21.3330000-07:00|40022472|Zeromus|000192D6|36894916||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:21.3330000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|33C30000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36907323|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8273|10000|||99.50|90.65|0.00|3.09|000192DC|0|1| +21|2023-10-06T21:12:21.3780000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|363D0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|36907323|40478540|10000|10000|||100.00|80.10|0.00|0.00|123424|129844|10000|10000|||98.99|97.00|0.00|3.08|000192DD|0|1| +37|2023-10-06T21:12:21.4230000-07:00|40022472|Zeromus|000192D8|36875570||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:21.4230000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|352003|3BA60000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|36894916|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.24|100.94|0.00|0.13|000192DE|0|1| +261|2023-10-06T21:12:20.9380000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:12:21.0560000-07:00|Change|10FF0003||||||||||||||||||||||| +22|2023-10-06T21:12:21.5570000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|123424|129844|10000|10000|||98.99|97.00|0.00|3.08|73956|77430|10000|10000|||100.18|93.39|0.00|-0.94|000192DF|0|8| +22|2023-10-06T21:12:21.5570000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9300|10000|||98.71|97.74|-0.01|2.94|73956|77430|10000|10000|||100.18|93.39|0.00|-0.94|000192DF|1|8| +22|2023-10-06T21:12:21.5570000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9250|10000|||98.98|92.75|0.00|0.39|73956|77430|10000|10000|||100.18|93.39|0.00|-0.94|000192DF|2|8| +22|2023-10-06T21:12:21.5570000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||100.15|91.85|0.00|3.13|73956|77430|10000|10000|||100.18|93.39|0.00|-0.94|000192DF|3|8| +22|2023-10-06T21:12:21.5570000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.63|100.80|0.00|1.54|73956|77430|10000|10000|||100.18|93.39|0.00|-0.94|000192DF|4|8| +22|2023-10-06T21:12:21.5570000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0009|Zewo Negiwo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|7873|10000|||99.50|90.65|0.00|3.09|73956|77430|10000|10000|||100.18|93.39|0.00|-0.94|000192DF|5|8| +22|2023-10-06T21:12:21.5570000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.24|100.94|0.00|-3.13|73956|77430|10000|10000|||100.18|93.39|0.00|-0.94|000192DF|6|8| +22|2023-10-06T21:12:21.5570000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|73956|77430|10000|10000|||100.18|93.39|0.00|-0.94|000192DF|7|8| +21|2023-10-06T21:12:21.6010000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|DB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36875570|40478540|10000|10000|||100.00|80.10|0.00|0.00|123424|129844|10000|10000|||98.99|97.00|0.00|3.08|000192E0|0|1| +261|2023-10-06T21:12:21.1700000-07:00|Change|4002283D||||| +261|2023-10-06T21:12:21.1700000-07:00|Change|4002283D||||| +38|2023-10-06T21:12:21.6460000-07:00|40022853||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:12:21.6470000-07:00|40022853||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:12:21.2630000-07:00|Change|4002284A||||||||| +261|2023-10-06T21:12:21.2630000-07:00|Change|4002284A||||||||| +261|2023-10-06T21:12:21.2630000-07:00|Add|40022853||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:12:21.2630000-07:00|40022853|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.24|99.19|0.00|0.01| +261|2023-10-06T21:12:21.2630000-07:00|Change|40022853||| +37|2023-10-06T21:12:21.7800000-07:00|40022472|Zeromus|000192DA|36873805||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:21.7800000-07:00|40022472|Zeromus|000192DB|36871119||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:21.3560000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:12:21.9580000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36871119|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.63|100.63|0.00|2.73|000192E1|0|1| +261|2023-10-06T21:12:21.4500000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:12:22.0020000-07:00|40022472|Zeromus|000192DD|36857234||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:22.0020000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|98.92|94.73|0.00|0.07| +37|2023-10-06T21:12:22.0470000-07:00|40022472|Zeromus|000192DE|36841964||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:22.0470000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44726003|741A0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|36857234|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.63|100.57|-0.02|3.14|000192E2|0|1| +37|2023-10-06T21:12:22.1350000-07:00|40022472|Zeromus|000192E0|36838458||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:12:21.6610000-07:00|40022804|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||101.95|101.46|0.00|-3.05| +41|2023-10-06T21:12:22.1350000-07:00|80034E7C|2909|01|00|00| +261|2023-10-06T21:12:21.6610000-07:00|Change|40022490||||||||| +261|2023-10-06T21:12:21.6610000-07:00|Remove|40022804| +00|2023-10-06T21:12:21.0000000-07:00|0839||Zeromus drinks deep of Azdaja's soul...| +20|2023-10-06T21:12:22.2240000-07:00|40022472|Zeromus|8B38|Sable Thread|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:22.2240000-07:00|40022490|Zeromus|8AEF|unknown_8aef|10FF0009|Zewo Negiwo|1B|8AEF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|7873|10000|||100.12|93.23|0.00|0.44|44|44|0|10000|||100.00|70.00|0.00|0.00|000192E3|0|1| +261|2023-10-06T21:12:21.8860000-07:00|Change|40022472||||||||||||| +37|2023-10-06T21:12:22.3590000-07:00|10FF0007|Kehabiqo Febiqo|000192DF|123424|129844|10000|10000|0||99.12|94.63|0.00|3.08|1500|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:12:22.3590000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +21|2023-10-06T21:12:22.3590000-07:00|10FF0009|Zewo Negiwo|1D06|Thin Air|10FF0009|Zewo Negiwo|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|7873|10000|||100.27|93.83|0.00|0.33|81177|81177|7873|10000|||100.27|93.83|0.00|0.33|000192E4|0|1| +38|2023-10-06T21:12:22.3590000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7873|10000|16||100.27|93.83|0.00|0.33|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:22.3590000-07:00|4C1|Thin Air|12.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +38|2023-10-06T21:12:22.4030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9800|10000|17||98.89|95.19|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:12:22.4480000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|454003|3D580000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|36838458|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9300|10000|||98.71|97.76|0.00|3.07|000192E5|0|1| +38|2023-10-06T21:12:22.4480000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9100|10000|18||98.71|97.76|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:22.4480000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:12:22.4480000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:12:22.4920000-07:00|10FF0003|Gegehi Gehi|000192DF|73814|73814|9100|10000|18||98.71|97.76|0.00|3.07|2301|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:12:22.4920000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +24|2023-10-06T21:12:22.4920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|15CE|123424|129844|10000|10000|||99.12|94.57|0.00|3.08|10FF0007|Kehabiqo Febiqo|0|123424|129844|10000|10000|||99.12|94.57|0.00|3.08| +24|2023-10-06T21:12:22.4920000-07:00|40022472|Zeromus|DoT|A92|4BF|36838458|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9700|10000|||100.24|100.94|0.00|-3.13| +38|2023-10-06T21:12:22.4920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129006|129844|10000|10000|0||99.12|94.57|0.00|3.08|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:12:22.4920000-07:00|40022472|Zeromus|005A5A00|36837243|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +38|2023-10-06T21:12:22.4920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||100.24|100.94|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:12:21.9990000-07:00|Change|10FF0006||||| +261|2023-10-06T21:12:22.1170000-07:00|Change|10FF0003||||||||||||||||||||||| +24|2023-10-06T21:12:22.5380000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E12|90216|90216|10000|10000|||99.63|100.57|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|7873|10000|||100.41|94.41|0.00|0.24| +24|2023-10-06T21:12:22.5380000-07:00|10FF0006|Wowobora Gogobora|HoT|777|16A7|81809|81809|9700|10000|||100.24|100.94|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|7873|10000|||100.41|94.41|0.00|0.24| +24|2023-10-06T21:12:22.5380000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E66|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|7873|10000|||100.41|94.41|0.00|0.24| +24|2023-10-06T21:12:22.5380000-07:00|10FF0003|Gegehi Gehi|HoT|777|E40|73814|73814|9100|10000|||98.71|97.76|0.00|3.07|10FF0009|Zewo Negiwo|0|81177|81177|7873|10000|||100.41|94.41|0.00|0.24| +24|2023-10-06T21:12:22.5380000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|16E7|81541|81541|9800|10000|||98.89|95.26|-0.01|3.05|10FF0009|Zewo Negiwo|0|81177|81177|7873|10000|||100.41|94.41|0.00|0.24| +24|2023-10-06T21:12:22.5380000-07:00|10FF0009|Zewo Negiwo|HoT|777|E67|81177|81177|7873|10000|||100.41|94.41|0.00|0.24|10FF0009|Zewo Negiwo|0|81177|81177|7873|10000|||100.41|94.41|0.00|0.24| +24|2023-10-06T21:12:22.5380000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E73|123424|129844|10000|10000|||99.12|94.57|0.00|3.08|10FF0009|Zewo Negiwo|0|81177|81177|7873|10000|||100.41|94.41|0.00|0.24| +24|2023-10-06T21:12:22.5380000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E4C|129071|129071|9000|10000|||100.15|91.65|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|7873|10000|||100.41|94.41|0.00|0.24| +21|2023-10-06T21:12:22.5380000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|33820000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36838458|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.15|91.65|0.00|3.13|000192E6|0|1| +38|2023-10-06T21:12:22.5380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.12|94.57|0.00|3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:22.5380000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:12:22.5380000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8423|10000|16||100.41|94.41|0.00|0.24|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:22.5380000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:12:22.5380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.63|100.57|0.00|3.12|0|0|0|||||||||||||||| +26|2023-10-06T21:12:22.5380000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:22.5380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||100.24|100.94|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:22.5380000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:22.5380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|17||100.15|91.65|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:22.5380000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +26|2023-10-06T21:12:22.5380000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:12:22.5380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9800|10000|17||98.89|95.26|-0.01|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:22.5380000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:12:22.5380000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9100|10000|18||98.71|97.76|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:22.5380000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:12:22.5380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:22.5380000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:12:22.5820000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8423|10000|16||100.41|94.41|0.00|0.24|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:22.5820000-07:00|777|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:12:22.6270000-07:00|40022472|Zeromus|000192DC|36823992||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:22.6270000-07:00|10FF0009|Zewo Negiwo|000192DC|81177|81177|8423|10000|16||100.53|94.87|-0.02|0.24|1800|0|0|01|040004C1|FF9C|C1400000|| +37|2023-10-06T21:12:22.6270000-07:00|10FF0004|Buhojaqe Zijaqe|000192DF|81541|81541|9800|10000|17||98.89|95.26|0.00|3.07|1C02|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T21:12:22.6270000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +34|2023-10-06T21:12:22.6710000-07:00|40022853|Carbuncle|40022853|Carbuncle|01| +261|2023-10-06T21:12:22.2120000-07:00|Change|40022853||| +37|2023-10-06T21:12:22.7160000-07:00|40022472|Zeromus|000192E1|36820378||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:22.7600000-07:00|10FF0001|Sesuga Sapisuga|000192DF|129071|129071|9000|10000|17||100.15|91.65|0.00|3.13|1303|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:12:22.7600000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +261|2023-10-06T21:12:22.4000000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:12:22.8500000-07:00|40022472|Zeromus|000192E2|36790656||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:22.8500000-07:00|10FF0009|Zewo Negiwo|000192E3|81177|81177|8423|10000|16||100.49|94.69|0.00|0.24|1800|0|0|01|040004C1|FF9C|C1400000|| +21|2023-10-06T21:12:22.8500000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2B4D0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|36820378|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000192E7|0|1| +261|2023-10-06T21:12:22.4000000-07:00|Remove|40022805| +37|2023-10-06T21:12:22.8940000-07:00|10FF0008|Kokosaze Lulusaze|000192DF|90216|90216|10000|10000|15||99.63|100.57|0.00|3.12|1F04|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:12:22.8940000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +21|2023-10-06T21:12:22.9390000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|2F510000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|36790656|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.24|100.94|0.00|-3.13|000192E8|0|1| +21|2023-10-06T21:12:22.9390000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|756003|64D80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36790656|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9800|10000|||98.89|95.26|0.00|3.07|000192E9|0|1| +261|2023-10-06T21:12:22.4900000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:12:23.0290000-07:00|10FF0009|Zewo Negiwo|000192DF|81177|81177|8423|10000|16||100.27|95.55|0.00|-0.01|1805|0|0|02|040004C1|FF9C|C1400000|||||| +26|2023-10-06T21:12:23.0290000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +37|2023-10-06T21:12:23.1170000-07:00|10FF0009|Zewo Negiwo|000192E4|81177|81177|8423|10000|16||100.27|95.55|0.00|-0.01|1800|0|0|01|040004C1|FF9C|41400000|| +21|2023-10-06T21:12:23.1180000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36790656|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||98.89|95.26|0.00|3.07|000192EA|0|1| +21|2023-10-06T21:12:23.1180000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36790656|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9100|10000|||98.71|97.80|0.00|2.32|000192EB|0|1| +38|2023-10-06T21:12:23.1180000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8423|10000|16||100.12|96.25|0.00|-0.20|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:23.1620000-07:00|10FF0006|Wowobora Gogobora|000192DF|81809|81809|9700|10000|28||100.24|100.94|-0.02|-3.13|1B06|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T21:12:23.1620000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +21|2023-10-06T21:12:23.2070000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|EB70000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|36790656|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.15|91.65|0.00|3.13|000192EC|0|1| +37|2023-10-06T21:12:23.2520000-07:00|40022472|Zeromus|000192E5|36774952||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:23.2520000-07:00|40022472|Zeromus|000192E7|36763867||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:23.2960000-07:00|10FF000A|Dukaro Nezikaro|000192DF|82773|82773|10000|10000|16||99.96|101.30|0.00|3.14|1E07|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:12:23.2960000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +38|2023-10-06T21:12:23.2960000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.78|95.75|0.00|-0.18|0|0|0|||| +30|2023-10-06T21:12:23.2960000-07:00|7AC|Summon Order II|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:12:23.4290000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DDA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36763867|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000192ED|0|1| +21|2023-10-06T21:12:23.4740000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36763867|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.24|100.89|0.00|-3.10|000192EE|0|1| +21|2023-10-06T21:12:23.4740000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|36A00000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|36763867|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9100|10000|||98.72|98.73|0.00|0.64|000192EF|0|1| +38|2023-10-06T21:12:23.4740000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8800|10000|18||98.72|98.73|0.00|0.64|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:23.4740000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:12:23.5190000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|-0.41| +261|2023-10-06T21:12:23.0430000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:12:23.5190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36763867|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.15|91.65|0.00|3.13|000192F0|0|1| +31|2023-10-06T21:12:23.5190000-07:00|10FF0001||||| +261|2023-10-06T21:12:23.0430000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:12:23.5620000-07:00|40022472|Zeromus|000192E8|36751754||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:23.6080000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.21|99.34|0.00|0.19| +37|2023-10-06T21:12:23.6530000-07:00|40022472|Zeromus|000192EA|36751603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:23.6530000-07:00|40022472|Zeromus|000192EB|36751574||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:23.6530000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|40540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36751754|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000192F1|0|1| +39|2023-10-06T21:12:23.6970000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.63|100.57|0.00|3.12| +37|2023-10-06T21:12:23.7420000-07:00|40022472|Zeromus|000192E9|36725758||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:23.7420000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:23.7420000-07:00|40022472|Zeromus|DoT|0|195A|36751574|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|8423|10000|||100.12|99.73|0.00|0.76| +38|2023-10-06T21:12:23.7420000-07:00|40022472|Zeromus|005A5A00|36719268|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:12:23.7880000-07:00|10FF0003|Gegehi Gehi|73814|73814|9000|10000|||98.73|99.75|0.00|1.59| +26|2023-10-06T21:12:23.7880000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +22|2023-10-06T21:12:23.7880000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9400|10000|||99.50|97.10|0.00|0.47|81541|81541|9400|10000|||99.50|97.10|0.00|0.47|000192F2|0|1| +37|2023-10-06T21:12:23.8300000-07:00|40022472|Zeromus|000192E6|36706082||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:23.8300000-07:00|10FF0001|Sesuga Sapisuga|000192E6|129071|129071|9400|10000|17||100.15|91.65|0.00|3.13|1300|0|0|0| +261|2023-10-06T21:12:23.3520000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:12:23.3520000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:12:23.8750000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9600|10000|||99.54|97.29|0.00|2.40| +21|2023-10-06T21:12:23.8750000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|31C50000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|36706082|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.14|94.42|0.00|3.08|000192F3|0|1| +36|2023-10-06T21:12:23.8750000-07:00|1310|3| +38|2023-10-06T21:12:23.8750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.14|94.42|0.00|3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:23.8750000-07:00|A75|Surging Tempest|36.98|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:12:23.9190000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|2DDF0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|36706082|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||100.15|91.65|0.00|-3.13|000192F4|0|1| +261|2023-10-06T21:12:23.5390000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:12:23.9640000-07:00|40022472|Zeromus|000192ED|36702536||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:23.9640000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.14|94.36|0.00|3.08| +39|2023-10-06T21:12:23.9640000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.18|99.90|0.00|2.10| +37|2023-10-06T21:12:24.0080000-07:00|40022472|Zeromus|000192EE|36702379||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:24.0520000-07:00|40022472|Zeromus|000192F0|36700696||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:24.0520000-07:00|10FF0009|Zewo Negiwo|81177|81177|8644|10000|||99.90|100.59|0.00|2.82| +39|2023-10-06T21:12:24.0970000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9600|10000|||100.15|91.65|0.00|-3.13| +37|2023-10-06T21:12:24.2300000-07:00|40022472|Zeromus|000192EC|36696929|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T21:12:24.2300000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:12:24.2300000-07:00|40022472|Zeromus|000192EF|36682945||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:24.3190000-07:00|40022472|Zeromus|000192F4|36671202||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:24.3190000-07:00|10FF0001|Sesuga Sapisuga|000192F4|129071|129071|10000|10000|17||100.15|91.65|0.00|-3.13|1300|0|0|0| +37|2023-10-06T21:12:24.3190000-07:00|40022472|Zeromus|000192F1|36654734||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:24.4520000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|E68|129071|129071|10000|10000|||100.15|91.65|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62| +24|2023-10-06T21:12:24.4520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|17E0|129844|129844|10000|10000|||99.16|93.95|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62| +24|2023-10-06T21:12:24.4520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|EEE|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62| +24|2023-10-06T21:12:24.4520000-07:00|10FF0006|Wowobora Gogobora|HoT|798|E53|81809|81809|9900|10000|||100.18|100.20|0.00|0.93|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62| +24|2023-10-06T21:12:24.4520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|E3A|90216|90216|10000|10000|||99.93|100.57|-0.01|1.61|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62| +24|2023-10-06T21:12:24.4520000-07:00|10FF0003|Gegehi Gehi|HoT|798|E93|73814|73814|9000|10000|||99.80|100.31|0.00|2.91|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62| +24|2023-10-06T21:12:24.4520000-07:00|10FF0009|Zewo Negiwo|HoT|798|E7C|81177|81177|8644|10000|||99.87|100.72|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62| +24|2023-10-06T21:12:24.4520000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|1830|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.62|97.73|-0.02|0.62| +37|2023-10-06T21:12:24.4540000-07:00|10FF0004|Buhojaqe Zijaqe|000192F2|81541|81541|9600|10000|17||99.62|97.73|-0.02|0.62|1C00|0|0|02|05000798|0|41700000|||||| +26|2023-10-06T21:12:24.4540000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:12:24.4540000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:12:24.4540000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|26840000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.18|100.20|0.00|0.93|000192F5|0|1| +38|2023-10-06T21:12:24.4540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.16|93.95|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:24.4540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:12:24.4540000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8644|10000|16||99.87|100.72|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:24.4540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:12:24.4540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.93|100.57|-0.01|1.61|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:24.4540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:12:24.4540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|28||100.18|100.20|0.00|0.93|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:24.4540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:12:24.4540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|17||100.15|91.65|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:24.4540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:12:24.4540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9600|10000|17||99.62|97.73|-0.02|0.62|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:24.4540000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9000|10000|18||99.80|100.31|0.00|2.91|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:24.4540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:12:24.4540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:24.4540000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +20|2023-10-06T21:12:24.4980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.62|97.73|-0.02|0.62| +261|2023-10-06T21:12:24.1000000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:12:24.5420000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.19|93.34|0.00|3.08|000192F6|0|1| +21|2023-10-06T21:12:24.5420000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31E60000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8644|10000|||99.87|100.72|0.00|3.14|000192F7|0|1| +21|2023-10-06T21:12:24.5420000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|5A750000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|100.57|0.00|1.74|000192F8|0|1| +38|2023-10-06T21:12:24.5420000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8644|10000|16||99.87|100.72|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:24.5420000-07:00|4C1|Thin Air|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +261|2023-10-06T21:12:24.1000000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:12:24.6310000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|100.57|0.00|3.14|000192F9|0|1| +261|2023-10-06T21:12:24.4040000-07:00|Add|40022856||||||||||||||||||||||||||||| +261|2023-10-06T21:12:24.4040000-07:00|Change|10FF0001||| +261|2023-10-06T21:12:24.4040000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:12:24.9430000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42714003|36BA0000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000192FA|0|1| +261|2023-10-06T21:12:24.5050000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:12:24.9880000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.30|92.12|0.00|3.08|000192FB|0|1| +21|2023-10-06T21:12:25.0320000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|27700000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|91.64|0.00|3.12|000192FC|0|1| +38|2023-10-06T21:12:25.0320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|17||100.15|91.64|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:25.0320000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:12:25.0770000-07:00|40022472|Zeromus|000192F5|36644874||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:25.0770000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40022472|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36654734|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.18|100.39|0.00|-3.13|000192FD|0|1| +37|2023-10-06T21:12:25.1660000-07:00|40022472|Zeromus|000192F6|36644874|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004A9|0|41200000|| +26|2023-10-06T21:12:25.1660000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40022472|Zeromus|00|40478540|129844| +21|2023-10-06T21:12:25.2550000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9000|10000|||99.93|102.73|-0.01|0.06|73814|73814|9000|10000|||99.93|102.73|-0.01|0.06|000192FE|0|1| +38|2023-10-06T21:12:25.2550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9000|10000|18||99.93|102.73|-0.01|0.06|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:25.2550000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:12:24.8230000-07:00|Remove|4002283D| +04|2023-10-06T21:12:24.8230000-07:00|4002283D|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||99.83|88.71|0.00|2.92| +38|2023-10-06T21:12:25.2990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9000|10000|18||99.93|102.73|-0.01|0.06|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:25.3890000-07:00|40022472|Zeromus|000192F9|36642584||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:25.3890000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1846|129071|129071|10000|10000|||100.16|91.39|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +24|2023-10-06T21:12:25.3890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E4D|129844|129844|10000|10000|||99.43|92.25|-0.02|2.18|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +24|2023-10-06T21:12:25.3890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|EDB|81541|81541|9600|10000|||99.81|98.34|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +24|2023-10-06T21:12:25.3890000-07:00|10FF0006|Wowobora Gogobora|HoT|798|E99|81809|81809|9600|10000|||100.18|100.39|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +24|2023-10-06T21:12:25.3890000-07:00|10FF0009|Zewo Negiwo|HoT|798|184A|81177|81177|8644|10000|||99.87|100.72|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +24|2023-10-06T21:12:25.3890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|EA1|90216|90216|10000|10000|||99.93|100.73|0.00|1.04|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +24|2023-10-06T21:12:25.3890000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|E40|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +24|2023-10-06T21:12:25.3890000-07:00|10FF0003|Gegehi Gehi|HoT|798|E9E|73814|73814|9000|10000|||99.93|102.83|-0.02|0.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +38|2023-10-06T21:12:25.3890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.43|92.25|-0.02|2.18|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:12:25.3890000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8644|10000|16||99.87|100.72|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:25.3890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.93|100.73|0.00|1.04|0|0|0||||||||||||||||||| +38|2023-10-06T21:12:25.3890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|28||100.18|100.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:12:25.3890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|17||100.16|91.39|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:25.3890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|17||99.81|98.34|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:25.3890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9000|10000|18||99.93|102.83|-0.02|0.00|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:25.3890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:12:25.4320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33660000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36644874|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9600|10000|||99.81|98.34|0.00|3.13|000192FF|0|1| +24|2023-10-06T21:12:25.4760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|25A6|129844|129844|10000|10000|||99.43|92.25|-0.02|2.18|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9600|10000|||99.81|98.34|0.00|3.13| +24|2023-10-06T21:12:25.4760000-07:00|40022472|Zeromus|DoT|A92|4B7|36644874|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9600|10000|||100.18|100.39|0.00|-3.13| +38|2023-10-06T21:12:25.4760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.49|92.33|-0.02|1.66|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:12:25.4760000-07:00|40022472|Zeromus|005A5A00|36641377|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T21:12:25.4760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|28||100.19|100.73|0.00|2.72|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:12:25.5210000-07:00|40022472|Zeromus|000192F3|36628636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:25.5210000-07:00|40022472|Zeromus|000192FB|36625703||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:25.5210000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9194|10000|16||99.87|100.72|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:25.0630000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:12:25.6100000-07:00|40022472|Zeromus|000192FA|36611693||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:25.6100000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DA30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36625703|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|00019300|0|1| +38|2023-10-06T21:12:25.6540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.54|92.39|-0.02|1.24|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:12:25.6540000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:12:25.6980000-07:00|40022472|Zeromus|000192F8|36588536||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:25.6980000-07:00|40022472|Zeromus|000192FD|36588536|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004B3|0|41200000|| +26|2023-10-06T21:12:25.6980000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40022472|Zeromus|00|40478540|81809| +21|2023-10-06T21:12:25.7430000-07:00|10FF0001|Sesuga Sapisuga|1CD9|Passage of Arms|10FF0001|Sesuga Sapisuga|4400640F|4978000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.16|91.39|0.00|3.12|129071|129071|10000|10000|||100.16|91.39|0.00|3.12|00019301|0|1| +22|2023-10-06T21:12:25.7870000-07:00|10FF0009|Zewo Negiwo|6506|Liturgy of the Bell|10FF0009|Zewo Negiwo|500000F|A958000|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9194|10000|||99.91|100.71|0.00|2.55|81177|81177|9194|10000|||99.91|100.71|0.00|2.55|00019302|0|1| +38|2023-10-06T21:12:25.7870000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9194|10000|16||99.91|100.71|0.00|2.55|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:25.7870000-07:00|A95|Liturgy of the Bell|20.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|05|81177|81177| +38|2023-10-06T21:12:25.8320000-07:00|4002285A||005A5A00|73567|77042|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:12:25.8320000-07:00|40022472|Zeromus|000192F7|36575762||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:25.8320000-07:00|4002285A||005A5A00|73567|77042|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:12:25.4550000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:12:25.9200000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|30C90000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|36588536|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.25|101.67|0.00|0.67|00019303|0|1| +21|2023-10-06T21:12:25.9650000-07:00|10FF0008|Kokosaze Lulusaze|B47|Dismantle|40022472|Zeromus|F60E|35C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36575762|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|100.85|0.00|0.03|00019304|0|1| +261|2023-10-06T21:12:25.5450000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:12:26.0090000-07:00|10FF0003|Gegehi Gehi|000192FE|73814|73814|9000|10000|18||99.93|102.83|0.00|0.00|2300|0|0|01|040004D6|0|41A00000|| +21|2023-10-06T21:12:26.0090000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|38970000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|36575762|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9000|10000|||99.93|102.83|0.00|0.00|00019305|0|1| +38|2023-10-06T21:12:26.0090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8700|10000|18||99.93|102.83|0.00|0.00|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:26.0090000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:12:26.0090000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:12:25.5450000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:12:26.0980000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.78|95.75|0.00|3.13|0|0|0||||||| +26|2023-10-06T21:12:26.0980000-07:00|77B|Summon Order|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:12:26.0980000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9600|10000|||99.81|98.37|-0.01|-0.39|81541|81541|9600|10000|||99.81|98.37|-0.01|-0.39|00019306|0|1| +37|2023-10-06T21:12:26.1420000-07:00|40022472|Zeromus|00019300|36572271||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:12:26.1870000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.69|92.58|-0.02|-0.06|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|00019307|0|8| +22|2023-10-06T21:12:26.1870000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9600|10000|||99.81|98.37|-0.01|-0.39|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|00019307|1|8| +22|2023-10-06T21:12:26.1870000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.16|91.39|0.00|3.12|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|00019307|2|8| +22|2023-10-06T21:12:26.1870000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.93|100.85|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|00019307|3|8| +22|2023-10-06T21:12:26.1870000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|00019307|4|8| +22|2023-10-06T21:12:26.1870000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.27|101.92|0.00|-3.13|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|00019307|5|8| +22|2023-10-06T21:12:26.1870000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0009|Zewo Negiwo|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9194|10000|||100.27|101.53|0.00|-1.35|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|00019307|6|8| +22|2023-10-06T21:12:26.1870000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8700|10000|||99.93|102.83|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|00019307|7|8| +37|2023-10-06T21:12:26.2330000-07:00|40022472|Zeromus|000192FF|36559113||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:12:25.7680000-07:00|4002285A|Liturgic Bell|00|5A|10FF0009|00||10349|13961|73567|77042|10000|10000|||96.53|98.14|0.00|0.81| +261|2023-10-06T21:12:25.7680000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:12:25.7680000-07:00|Add|4002285A||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:25.8810000-07:00|Change|4002285A||| +37|2023-10-06T21:12:26.3210000-07:00|40022472|Zeromus|000192FC|36549017||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:26.3210000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|17410000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|36559113|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.69|92.58|0.00|-0.06|00019308|0|1| +38|2023-10-06T21:12:26.4100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9600|10000|17||99.86|98.73|0.00|0.05|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:26.4100000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +38|2023-10-06T21:12:26.4100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.69|92.58|0.00|-0.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:26.4100000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +38|2023-10-06T21:12:26.4100000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.78|95.75|0.00|3.13|0|0|0|||||||||| +26|2023-10-06T21:12:26.4100000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|4002284A|Ruby Carbuncle|00|77430|129071| +37|2023-10-06T21:12:26.4100000-07:00|10FF0001|Sesuga Sapisuga|00019301|129071|129071|10000|10000|17||100.16|91.39|0.00|3.12|1300|0|0|01|07000497|1444|41900000|| +26|2023-10-06T21:12:26.4100000-07:00|497|Passage of Arms|18.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|129071|129071| +20|2023-10-06T21:12:26.4550000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.59|102.16|0.00|-0.28| +261|2023-10-06T21:12:26.1170000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:12:26.5450000-07:00|40022472|Zeromus|00019303|36536528||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:26.5450000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +21|2023-10-06T21:12:26.5450000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|132F0F|A748000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.16|91.39|0.00|3.12|129071|129071|10000|10000|||100.16|91.39|0.00|3.12|00019309|0|1| +38|2023-10-06T21:12:26.5450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|17||100.16|91.39|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:26.5450000-07:00|497|Passage of Arms|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|129071|129071| +26|2023-10-06T21:12:26.5450000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:12:26.5450000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:12:26.5450000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:12:26.5450000-07:00|10FF0001||||| +37|2023-10-06T21:12:26.5890000-07:00|40022472|Zeromus|00019304|36536528|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035C|0|41200000|| +26|2023-10-06T21:12:26.5890000-07:00|35C|Dismantled|10.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|90216| +21|2023-10-06T21:12:26.5890000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36549017|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8700|10000|||99.93|102.83|0.00|3.14|0001930A|0|1| +38|2023-10-06T21:12:26.6330000-07:00|40022853|Carbuncle|005A5A00|74223|77698|10000|10000|0||100.05|99.73|0.00|-0.24|0|0|0||||||| +26|2023-10-06T21:12:26.6330000-07:00|30|Well Fed|1726.62|10FF0006|Wowobora Gogobora|40022853|Carbuncle|2964|77698|81809| +26|2023-10-06T21:12:26.6330000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022853|Carbuncle|01|77698|81809| +21|2023-10-06T21:12:26.6330000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.27|101.95|0.00|-3.13|81809|81809|9700|10000|||100.27|101.95|0.00|-3.13|0001930B|0|1| +21|2023-10-06T21:12:26.6330000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36536528|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.27|101.95|0.00|-3.13|0001930C|0|1| +39|2023-10-06T21:12:26.7210000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.93|100.85|0.00|3.14| +37|2023-10-06T21:12:26.7650000-07:00|40022472|Zeromus|00019305|36522041||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:26.7650000-07:00|10FF0003|Gegehi Gehi|00019305|73814|73814|8700|10000|18||99.93|102.83|0.00|3.14|2300|0|0|01|050004D2|0|41F00000|| +21|2023-10-06T21:12:26.7650000-07:00|40022853|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.27|101.95|0.00|-3.13|74223|77698|10000|10000|||100.05|99.73|0.00|-0.24|0001930D|0|1| +39|2023-10-06T21:12:26.7650000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:26.7650000-07:00|40022472|Zeromus|DoT|0|24E3|36536528|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||99.93|100.85|0.00|3.14| +38|2023-10-06T21:12:26.7650000-07:00|40022472|Zeromus|005A5A00|36512598|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:12:26.7650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|48||100.27|101.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:26.7650000-07:00|A8E|Radiant Aegis|29.96|40022853|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +38|2023-10-06T21:12:26.7650000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8700|10000|18||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T21:12:26.8100000-07:00|10FF0003|Gegehi Gehi|73814|73814|8900|10000|||99.93|102.83|0.00|3.14| +37|2023-10-06T21:12:26.8540000-07:00|40022472|Zeromus|00019308|36506645||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:12:26.8540000-07:00|13EC|3| +39|2023-10-06T21:12:26.8990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9800|10000|||99.92|99.37|0.00|0.17| +21|2023-10-06T21:12:26.8990000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|65700000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.69|92.58|0.00|3.12|129844|129844|10000|10000|||99.69|92.58|0.00|3.12|0001930E|0|1| +20|2023-10-06T21:12:26.8990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.92|99.37|0.00|0.17| +261|2023-10-06T21:12:26.4060000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:12:26.9870000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.69|92.58|0.00|3.12| +39|2023-10-06T21:12:26.9870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.27|101.95|0.00|-3.13| +39|2023-10-06T21:12:27.0320000-07:00|10FF0009|Zewo Negiwo|81177|81177|9415|10000|||100.72|102.43|0.00|-3.11| +261|2023-10-06T21:12:26.5970000-07:00|Change|10FF0003||| +37|2023-10-06T21:12:27.0770000-07:00|10FF0007|Kehabiqo Febiqo|00019307|129844|129844|10000|10000|0||99.69|92.58|0.00|3.12|1500|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T21:12:27.0770000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +39|2023-10-06T21:12:27.0770000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.16|91.39|0.00|3.12| +21|2023-10-06T21:12:27.0770000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5F520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36506645|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|100.85|0.00|3.14|0001930F|0|1| +261|2023-10-06T21:12:26.5970000-07:00|Change|10FF0009||||||||||||||||||||||||||| +37|2023-10-06T21:12:27.1220000-07:00|40022472|Zeromus|0001930A|36506608||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:27.1660000-07:00|40022472|Zeromus|0001930C|36506419||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:27.2110000-07:00|10FF0004|Buhojaqe Zijaqe|00019307|81541|81541|9800|10000|17||99.97|100.05|0.00|2.14|1C01|0|0|01|0A00013B|0|41A80000|| +26|2023-10-06T21:12:27.2110000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +21|2023-10-06T21:12:27.2110000-07:00|40022472|Zeromus|8B38|Sable Thread|40022472|Zeromus|49|48000|1B|8B388000|0|0|0|0|0|0|0|0|0|0|0|0|36506608|40478540|10000|10000|||100.00|80.10|0.00|0.00|36506608|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019310|0|1| +21|2023-10-06T21:12:27.2110000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1E240000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|36506608|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|00019311|0|1| +261|2023-10-06T21:12:26.7150000-07:00|Change|40022472||||||||||||| +00|2023-10-06T21:12:26.0000000-07:00|0044|Zeromus|Your flesh shall melt and seethe!| +21|2023-10-06T21:12:27.3000000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36506419|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|100.85|0.00|3.14|00019312|0|1| +37|2023-10-06T21:12:27.3450000-07:00|10FF0001|Sesuga Sapisuga|00019307|129071|129071|10000|10000|17||100.16|91.39|0.00|-3.13|1302|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:12:27.3450000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +21|2023-10-06T21:12:27.3890000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|308D0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36506419|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9415|10000|||100.72|102.43|0.00|-3.11|00019313|0|1| +21|2023-10-06T21:12:27.3890000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|69A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36506419|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.16|91.39|0.00|-3.13|00019314|0|1| +31|2023-10-06T21:12:27.3890000-07:00|10FF0001||||| +21|2023-10-06T21:12:27.4330000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|36506419|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.27|101.95|0.00|-3.13|00019315|0|1| +38|2023-10-06T21:12:27.4330000-07:00|40022853|Carbuncle|005A5A00|0|77698|0|10000|0||99.93|100.11|0.00|0.18|0|0|0|||| +30|2023-10-06T21:12:27.4330000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40022853|Carbuncle|01|77698|81809| +38|2023-10-06T21:12:27.4330000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|48||100.27|101.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:27.4330000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:12:27.4780000-07:00|4002286E||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:12:27.4780000-07:00|10FF0008|Kokosaze Lulusaze|00019307|90216|90216|10000|10000|15||99.93|100.85|0.00|3.14|1F03|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:12:27.4780000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:12:27.4780000-07:00|4002286E||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:12:27.0610000-07:00|Change|40022853||||||||| +37|2023-10-06T21:12:27.5230000-07:00|10FF0007|Kehabiqo Febiqo|0001930E|155812|155812|10000|10000|0||99.69|92.58|0.00|3.12|1500|0|0|01|09000057|0|41200000|| +26|2023-10-06T21:12:27.5230000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:12:27.5230000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|31AB0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36506419|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.16|91.39|0.00|-3.13|00019316|0|1| +38|2023-10-06T21:12:27.5230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:27.5230000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9015|10000|16||100.72|102.43|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:27.5230000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:12:27.5230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.93|100.85|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:27.5230000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:12:27.5230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|48||100.27|101.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:27.5230000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:12:27.5230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|17||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:27.5230000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +30|2023-10-06T21:12:27.5230000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:12:27.5230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9800|10000|17||99.99|100.33|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:27.5230000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:12:27.5230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8900|10000|18||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:27.5230000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:12:27.5230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:27.5230000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:12:27.5670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:27.5670000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +261|2023-10-06T21:12:27.1780000-07:00|Change|10FF0006||| +37|2023-10-06T21:12:27.6110000-07:00|10FF000A|Dukaro Nezikaro|00019307|82773|82773|10000|10000|16||99.96|101.30|0.00|3.14|1E04|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:12:27.6110000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:12:27.6110000-07:00|40022472|Zeromus|00019311|36498703||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:12:27.2740000-07:00|4002286E|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||102.07|103.70|0.00|-3.13| +261|2023-10-06T21:12:27.2740000-07:00|Add|4002286E||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:27.7450000-07:00|10FF0006|Wowobora Gogobora|00019307|81809|81809|9900|10000|48||100.27|101.95|0.00|-3.13|1B05|0|0|01|013B|0|41A80000|| +26|2023-10-06T21:12:27.7450000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +261|2023-10-06T21:12:27.3640000-07:00|Change|4002286E||||| +21|2023-10-06T21:12:27.7890000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|117E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36498703|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|00019317|0|1| +21|2023-10-06T21:12:27.8350000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|316A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36498703|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9800|10000|||99.99|100.33|0.00|-3.14|00019318|0|1| +37|2023-10-06T21:12:27.8780000-07:00|10FF0009|Zewo Negiwo|00019307|81177|81177|9015|10000|16||100.72|102.43|0.00|-3.11|1806|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:12:27.8780000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +22|2023-10-06T21:12:27.8780000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|22B0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.16|91.39|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.02|00019319|0|8| +22|2023-10-06T21:12:27.8780000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|6B1F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.69|92.58|0.00|3.12|44|44|0|10000|||100.00|70.00|0.00|0.02|00019319|1|8| +22|2023-10-06T21:12:27.8780000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|3860000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9400|10000|||99.99|100.33|0.00|-3.14|44|44|0|10000|||100.00|70.00|0.00|0.02|00019319|2|8| +22|2023-10-06T21:12:27.8780000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|D150000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.93|100.85|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.02|00019319|3|8| +22|2023-10-06T21:12:27.8780000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750603|113E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.02|00019319|4|8| +22|2023-10-06T21:12:27.8780000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9900|10000|||100.27|101.95|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.02|00019319|5|8| +22|2023-10-06T21:12:27.8780000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750603|B300000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9015|10000|||100.72|102.43|0.00|-3.11|44|44|0|10000|||100.00|70.00|0.00|0.02|00019319|6|8| +22|2023-10-06T21:12:27.8780000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|B020000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8900|10000|||99.93|102.83|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.02|00019319|7|8| +261|2023-10-06T21:12:27.4600000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:12:27.9220000-07:00|40022472|Zeromus|00019314|36497013||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:28.0190000-07:00|10FF0003|Gegehi Gehi|00019307|73814|73814|8900|10000|18||99.93|102.83|0.00|3.14|2307|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T21:12:28.0190000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:12:28.0190000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.78|95.75|0.00|3.13|0|0|0|||||||||| +30|2023-10-06T21:12:28.0190000-07:00|77B|Summon Order|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T21:12:28.0560000-07:00|40022472|Zeromus|00019312|36494719||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:27.6740000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:12:28.1900000-07:00|10FF0001|Sesuga Sapisuga|00019319|128516|129071|10000|10000|0||100.16|91.39|0.00|-3.13|1300|0|0|01|0E000000|0|0|| +21|2023-10-06T21:12:28.1900000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|20CD0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.69|92.58|0.00|3.12|36494719|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001931A|0|1| +38|2023-10-06T21:12:28.1900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128516|129071|10000|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:28.1900000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T21:12:28.2350000-07:00|40022472|Zeromus|0001930F|36470317||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:28.2350000-07:00|10FF0007|Kehabiqo Febiqo|00019319|128389||||||99.69|92.58|0.00|3.12| +24|2023-10-06T21:12:28.2350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|11F5|90216|90216|10000|10000|||99.93|100.85|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +21|2023-10-06T21:12:28.2350000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36494719|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||99.99|100.33|0.00|-3.14|0001931B|0|1| +38|2023-10-06T21:12:28.2350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.93|100.85|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:28.2790000-07:00|10FF0004|Buhojaqe Zijaqe|00019319|80639|81541|9400|10000|0||99.99|100.33|0.00|-3.14|1C02|0|0|01|0B000000|0|0|| +21|2023-10-06T21:12:28.2790000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|18F10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.69|92.58|0.00|3.12|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|0001931C|0|1| +24|2023-10-06T21:12:28.2790000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|AC9|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9400|10000|||99.99|100.33|0.00|-3.14| +38|2023-10-06T21:12:28.2790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80639|81541|9400|10000|0||99.99|100.33|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:28.2790000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:12:28.2790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|16||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:12:28.3230000-07:00|10FF0008|Kokosaze Lulusaze|00019319|86867|90216|10000|10000|0||99.93|100.85|0.00|3.14|1F03|0|0|01|04000000|0|0|| +37|2023-10-06T21:12:28.3230000-07:00|40022472|Zeromus|00019317|36465839||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:28.3230000-07:00|10FF0003|Gegehi Gehi|HoT|0|A21|73814|73814|8900|10000|||99.93|102.83|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +38|2023-10-06T21:12:28.3230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|86867|90216|10000|10000|0||99.93|100.85|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:28.3230000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:12:28.3230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8900|10000|18||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:28.3680000-07:00|10FF000A|Dukaro Nezikaro|00019319|78359|82773|10000|10000|0||99.96|101.30|0.00|3.14|1E04|0|0|01|08000000|0|0|| +21|2023-10-06T21:12:28.3690000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36470317|40478540|10000|10000|||100.00|80.10|0.00|0.00|128389|155812|10000|10000|||99.69|92.58|0.00|3.12|0001931D|0|1| +38|2023-10-06T21:12:28.3690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78359|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:28.3690000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:12:28.4130000-07:00|10FF0006|Wowobora Gogobora|00019319|81809|81809|9900|10000|26||100.27|101.95|0.00|-3.13|1B05|0|0|01|07000000|0|0|| +24|2023-10-06T21:12:28.4130000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D66|128516|129071|10000|10000|||100.16|91.39|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +24|2023-10-06T21:12:28.4130000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|104B|128389|155812|10000|10000|||99.69|92.58|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +24|2023-10-06T21:12:28.4130000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|CF8|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +24|2023-10-06T21:12:28.4140000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1536|86867|90216|10000|10000|||99.93|100.83|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +24|2023-10-06T21:12:28.4140000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CDD|78359|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +24|2023-10-06T21:12:28.4140000-07:00|10FF0006|Wowobora Gogobora|HoT|798|14DB|81809|81809|9900|10000|||100.27|101.95|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +24|2023-10-06T21:12:28.4140000-07:00|10FF0009|Zewo Negiwo|HoT|798|CFF|81177|81177|9015|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +24|2023-10-06T21:12:28.4140000-07:00|10FF0003|Gegehi Gehi|HoT|798|1611|73814|73814|8900|10000|||99.93|102.83|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14| +24|2023-10-06T21:12:28.4140000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A65|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|-3.14| +38|2023-10-06T21:12:28.4140000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|132560|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:28.4140000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:12:28.4140000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9015|10000|16||100.72|102.43|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:28.4140000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:12:28.4140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.93|100.83|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:28.4140000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:12:28.4140000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|26||100.27|101.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:28.4140000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +30|2023-10-06T21:12:28.4140000-07:00|A8E|Radiant Aegis|0.00|40022853|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +38|2023-10-06T21:12:28.4140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:28.4140000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:12:28.4140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9950|10000|0||99.99|100.33|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:28.4140000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:12:28.4140000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8900|10000|18||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:28.4140000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:12:28.4140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81652|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:28.4140000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:12:28.4580000-07:00|10FF0009|Zewo Negiwo|00019319|78313|81177|9015|10000|0||100.72|102.43|0.00|-3.11|1806|0|0|02|04000A95|04|418AFBDE|||||| +26|2023-10-06T21:12:28.4580000-07:00|A95|Liturgy of the Bell|17.37|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|04|81177|81177| +37|2023-10-06T21:12:28.4580000-07:00|10FF0006|Wowobora Gogobora|00019315|81809|81809|9900|10000|26||100.27|101.95|0.00|-3.13|1B00|0|0|01|09000AA4|0|0|| +20|2023-10-06T21:12:28.4580000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|99.93|102.83|0.00|3.14| +38|2023-10-06T21:12:28.4590000-07:00|10FF0009|Zewo Negiwo|005A5A18|78313|81177|9015|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:28.4590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:12:28.4590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|26||100.27|101.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:28.0100000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:12:28.5020000-07:00|10FF0003|Gegehi Gehi|00019319|70996|73814|8900|10000|0||99.93|102.83|0.00|3.14|2307|0|0|01|09000000|0|0|| +22|2023-10-06T21:12:28.5020000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|31190000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|80639|81541|9400|10000|||99.99|100.33|0.00|-3.14|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001931E|0|8| +22|2023-10-06T21:12:28.5020000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|31470000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|86867|90216|10000|10000|||99.93|100.83|0.00|3.14|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001931E|1|8| +22|2023-10-06T21:12:28.5020000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|30030000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|78359|82773|10000|10000|||99.96|101.30|0.00|3.14|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001931E|2|8| +22|2023-10-06T21:12:28.5020000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|2FA40000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9900|10000|||100.27|101.95|0.00|-3.13|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001931E|3|8| +22|2023-10-06T21:12:28.5020000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|200004|4BC70000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8900|10000|||99.93|102.83|0.00|3.14|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001931E|4|8| +22|2023-10-06T21:12:28.5020000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0009|Zewo Negiwo|4|31250000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9015|10000|||100.72|102.43|0.00|-3.11|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001931E|5|8| +22|2023-10-06T21:12:28.5020000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|39930000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|128389|155812|10000|10000|||99.69|92.58|0.00|3.12|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001931E|6|8| +22|2023-10-06T21:12:28.5020000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|304A0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|128516|129071|10000|10000|||100.16|91.39|0.00|-3.13|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001931E|7|8| +24|2023-10-06T21:12:28.5020000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|AE8|128389|155812|10000|10000|||99.69|92.58|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|128389|155812|10000|10000|||99.69|92.58|0.00|3.12| +24|2023-10-06T21:12:28.5020000-07:00|40022472|Zeromus|DoT|A92|60E|36465839|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9900|10000|||100.27|101.95|0.00|-3.13| +24|2023-10-06T21:12:28.5020000-07:00|10FF0006|Wowobora Gogobora|HoT|0|AD7|81809|81809|9900|10000|||100.27|101.95|0.00|-3.13|10FF0006|Wowobora Gogobora|0|81809|81809|9900|10000|||100.27|101.95|0.00|-3.13| +38|2023-10-06T21:12:28.5020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|135352|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:28.5020000-07:00|40022472|Zeromus|005A5A00|36464289|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:12:28.5020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|26||100.27|101.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:28.5020000-07:00|10FF0003|Gegehi Gehi|005A5A23|70996|73814|8900|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:28.5020000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +261|2023-10-06T21:12:28.1240000-07:00|Change|4002286E||| +24|2023-10-06T21:12:28.5470000-07:00|10FF0009|Zewo Negiwo|HoT|0|B1A|78313|81177|9015|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9950|10000|||99.99|100.33|0.00|-3.14| +38|2023-10-06T21:12:28.5470000-07:00|10FF0009|Zewo Negiwo|005A5A18|81155|81177|9565|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:12:28.2140000-07:00|Change|10FF0006||| +24|2023-10-06T21:12:28.5910000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|35B7|129071|129071|10000|10000|||100.16|91.39|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||100.16|91.39|0.00|-3.13| +38|2023-10-06T21:12:28.5910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:28.6350000-07:00|40022472|Zeromus|00019318|36451639||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:28.6350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|26||100.27|101.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:28.6350000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:12:28.6800000-07:00|40022472|Zeromus|00019313|36439210||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:28.7690000-07:00|40022472|Zeromus|0001931B|36439051||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:28.7690000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20190000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|36439210|40478540|10000|10000|||100.00|80.10|0.00|0.00|135352|155812|10000|10000|||99.69|92.58|0.00|3.12|0001931F|0|1| +21|2023-10-06T21:12:28.7690000-07:00|10FF000A|Dukaro Nezikaro|1D7D|Feint|40022472|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36439210|40478540|10000|10000|||100.00|80.10|0.00|0.00|81652|82773|10000|10000|||99.96|101.30|0.00|3.14|00019320|0|1| +37|2023-10-06T21:12:28.8120000-07:00|40022472|Zeromus|00019316|36426336||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:28.8120000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36439210|40478540|10000|10000|||100.00|80.10|0.00|0.00|36439210|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019321|0|1| +20|2023-10-06T21:12:28.8580000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +37|2023-10-06T21:12:28.9010000-07:00|40022472|Zeromus|0001931D|36421672||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:28.4900000-07:00|Change|10FF0004||| +37|2023-10-06T21:12:28.9910000-07:00|10FF0007|Kehabiqo Febiqo|0001931A|126955||||||99.69|92.58|0.00|3.12| +37|2023-10-06T21:12:29.0790000-07:00|10FF0007|Kehabiqo Febiqo|0001931C|133340||||||99.69|92.58|0.00|3.12| +261|2023-10-06T21:12:28.6970000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:12:29.2150000-07:00|10FF000A|Dukaro Nezikaro|0001931E|82773||||||99.96|101.30|0.00|3.14| +37|2023-10-06T21:12:29.3050000-07:00|40022472|Zeromus|00019320|36421672|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|060004AB|0|41200000|| +26|2023-10-06T21:12:29.3050000-07:00|4AB|Feint|10.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +20|2023-10-06T21:12:29.3050000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.99|100.33|0.00|-3.14| +37|2023-10-06T21:12:29.3940000-07:00|40022472|Zeromus|0001931F|36413455||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:29.4830000-07:00|10FF0003|Gegehi Gehi|0001931E|73814||||||99.93|102.83|0.00|3.14| +22|2023-10-06T21:12:29.4830000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|587D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.16|91.39|0.00|-3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|00019322|0|8| +22|2023-10-06T21:12:29.4830000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|6D440000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|133340|155812|10000|10000|||99.69|92.58|0.00|3.12|44|44|0|10000|||100.00|100.00|0.00|0.00|00019322|1|8| +22|2023-10-06T21:12:29.4830000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|42CF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.93|100.30|0.00|-3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|00019322|2|8| +22|2023-10-06T21:12:29.4830000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|34AF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9950|10000|||99.99|100.33|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00019322|3|8| +22|2023-10-06T21:12:29.4830000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|45BE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00019322|4|8| +22|2023-10-06T21:12:29.4830000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.24|101.77|0.00|-3.05|44|44|0|10000|||100.00|100.00|0.00|0.00|00019322|5|8| +22|2023-10-06T21:12:29.4830000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|3EDC0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81155|81177|9565|10000|||100.72|102.43|0.00|-3.11|44|44|0|10000|||100.00|100.00|0.00|0.00|00019322|6|8| +22|2023-10-06T21:12:29.4830000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|40C70000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|70996|73814|8900|10000|||99.93|102.83|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00019322|7|8| +261|2023-10-06T21:12:29.0430000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:12:29.0430000-07:00|Change|40022853||| +21|2023-10-06T21:12:29.5270000-07:00|4002286E|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|154003|7AC60000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|36413455|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.07|103.70|0.00|-3.13|00019323|0|1| +39|2023-10-06T21:12:29.5270000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|-3.12| +21|2023-10-06T21:12:29.5720000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32716003|49E10000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|36413455|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|00019324|0|1| +37|2023-10-06T21:12:29.6160000-07:00|10FF0009|Zewo Negiwo|0001931E|81177||||||100.72|102.43|0.00|-3.11| +21|2023-10-06T21:12:29.6160000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|33CB0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|36413455|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|100.30|0.00|-3.14|00019325|0|1| +21|2023-10-06T21:12:29.6610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36413455|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.16|91.39|0.00|-3.13|00019326|0|1| +31|2023-10-06T21:12:29.6610000-07:00|10FF0001||||| +39|2023-10-06T21:12:29.7060000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.93|100.30|0.00|-3.14| +37|2023-10-06T21:12:29.7500000-07:00|10FF0007|Kehabiqo Febiqo|0001931E|148079||||||99.69|92.58|0.00|3.12| +39|2023-10-06T21:12:29.7500000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:29.7500000-07:00|40022472|Zeromus|DoT|0|23ED|36413455|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +38|2023-10-06T21:12:29.7500000-07:00|40022472|Zeromus|005A5A00|36404258|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:29.7960000-07:00|10FF0001|Sesuga Sapisuga|00019322|106418||||||100.16|91.39|0.00|-3.13| +39|2023-10-06T21:12:29.7960000-07:00|10FF0003|Gegehi Gehi|73814|73814|9100|10000|||99.93|102.83|0.00|3.14| +21|2023-10-06T21:12:29.7960000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|314B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36404258|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9565|10000|||100.72|102.43|0.00|-3.11|00019327|0|1| +21|2023-10-06T21:12:29.7960000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36404258|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.18|101.46|0.00|-2.90|00019328|0|1| +37|2023-10-06T21:12:29.8390000-07:00|10FF0007|Kehabiqo Febiqo|00019322|120107||||||99.69|92.58|0.00|3.12| +36|2023-10-06T21:12:29.8390000-07:00|14C8|3| +261|2023-10-06T21:12:29.4000000-07:00|Change|10FF0003||||| +37|2023-10-06T21:12:29.8840000-07:00|10FF0001|Sesuga Sapisuga|0001931E|118780||||||100.16|91.39|0.00|-3.13| +37|2023-10-06T21:12:29.8840000-07:00|10FF0008|Kokosaze Lulusaze|00019322|73113||||||99.93|100.30|0.00|3.14| +39|2023-10-06T21:12:29.8840000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||99.99|100.33|0.00|-3.14| +21|2023-10-06T21:12:29.8840000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|154003|3BFE0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|36404258|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8900|10000|||99.93|102.83|0.00|3.14|00019329|0|1| +38|2023-10-06T21:12:29.8840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8900|10000|0||99.93|102.83|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:12:29.8840000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:12:29.8840000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:12:29.4900000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:12:29.4900000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T21:12:29.9280000-07:00|10FF0004|Buhojaqe Zijaqe|00019322|68054||||||99.99|100.33|0.00|-3.14| +20|2023-10-06T21:12:29.9280000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|100.18|101.46|0.00|-2.90| +37|2023-10-06T21:12:29.9730000-07:00|10FF000A|Dukaro Nezikaro|00019322|64919||||||99.96|101.30|0.00|3.14| +37|2023-10-06T21:12:29.9730000-07:00|40022472|Zeromus|00019324|36385345||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:29.9730000-07:00|10FF0007|Kehabiqo Febiqo|121665|155812|10000|10000|||99.69|92.58|0.00|3.12| +39|2023-10-06T21:12:29.9730000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.18|101.46|0.00|-2.90| +21|2023-10-06T21:12:29.9740000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36385345|40478540|10000|10000|||100.00|80.10|0.00|0.00|73113|90216|10000|10000|||99.93|100.30|0.00|3.14|0001932A|0|1| +21|2023-10-06T21:12:29.9740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A0A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36385345|40478540|10000|10000|||100.00|80.10|0.00|0.00|64919|82773|10000|10000|||99.96|101.30|0.00|3.14|0001932B|0|1| +37|2023-10-06T21:12:30.0190000-07:00|10FF0006|Wowobora Gogobora|00019322|81809|81809|10000|10000|6||100.18|101.46|0.00|-2.95|1B05|0|0|0| +39|2023-10-06T21:12:30.0200000-07:00|10FF0009|Zewo Negiwo|81177|81177|9386|10000|||100.72|102.43|0.00|-3.11| +21|2023-10-06T21:12:30.0200000-07:00|10FF0007|Kehabiqo Febiqo|1D6B|Rampart|10FF0007|Kehabiqo Febiqo|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|121665|155812|10000|10000|||99.69|92.58|0.00|3.12|121665|155812|10000|10000|||99.69|92.58|0.00|3.12|0001932C|0|1| +21|2023-10-06T21:12:30.0200000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|2C950000|4|2AFE8000|0|0|0|0|0|0|0|0|0|0|0|0|36385345|40478540|10000|10000|||100.00|80.10|0.00|0.00|118780|129071|10000|10000|||100.16|91.39|0.00|-3.13|0001932D|0|1| +38|2023-10-06T21:12:30.0200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118780|129071|9000|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:30.0200000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:12:29.5810000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:12:29.6930000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:12:30.0640000-07:00|10FF0009|Zewo Negiwo|00019322|65085|81177|9386|10000|0||100.72|102.43|0.00|-3.11|1806|0|0|01|04000A95|03|417C458E|| +26|2023-10-06T21:12:30.0640000-07:00|A95|Liturgy of the Bell|15.77|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|03|81177|81177| +39|2023-10-06T21:12:30.0640000-07:00|10FF0001|Sesuga Sapisuga|120070|129071|9200|10000|||100.16|91.39|0.00|-3.13| +38|2023-10-06T21:12:30.0640000-07:00|10FF0009|Zewo Negiwo|005A5A18|65085|81177|9386|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:30.1080000-07:00|10FF0003|Gegehi Gehi|00019322|57231||||||99.93|102.83|0.00|3.14| +22|2023-10-06T21:12:30.1080000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|2F420000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73113|90216|10000|10000|||99.93|100.30|0.00|3.14|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001932E|0|8| +22|2023-10-06T21:12:30.1080000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|2FD00000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|68054|81541|10000|10000|||99.99|100.33|0.00|-3.14|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001932E|1|8| +22|2023-10-06T21:12:30.1080000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|2F5D0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|64919|82773|10000|10000|||99.96|101.30|0.00|3.14|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001932E|2|8| +22|2023-10-06T21:12:30.1080000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|2F4D0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.18|101.46|0.00|-2.95|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001932E|3|8| +22|2023-10-06T21:12:30.1080000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|31AD0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8900|10000|||99.93|102.83|0.00|3.14|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001932E|4|8| +22|2023-10-06T21:12:30.1080000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0009|Zewo Negiwo|4|2F6F0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9165|10000|||100.72|102.43|0.00|-3.11|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001932E|5|8| +22|2023-10-06T21:12:30.1080000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|200004|5D9C0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|121665|155812|10000|10000|||99.69|92.58|0.00|3.12|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001932E|6|8| +22|2023-10-06T21:12:30.1080000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|200004|4D220000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|118780|129071|10000|10000|||100.16|91.39|0.00|-3.13|73567|77042|10000|10000|||96.53|98.14|0.00|0.81|0001932E|7|8| +37|2023-10-06T21:12:30.1960000-07:00|40022472|Zeromus|00019326|36382465||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:30.1960000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36385345|40478540|10000|10000|||100.00|80.10|0.00|0.00|36385345|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001932F|0|1| +21|2023-10-06T21:12:30.2420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|31420000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36385345|40478540|10000|10000|||100.00|80.10|0.00|0.00|68054|81541|10000|10000|||99.99|100.33|0.00|-3.14|00019330|0|1| +37|2023-10-06T21:12:30.3300000-07:00|40022472|Zeromus|00019328|36382168||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:30.3760000-07:00|40022472|Zeromus|00019325|36368909||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:30.5100000-07:00|40022472|Zeromus|0001932B|36366339||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:30.5560000-07:00|10FF0008|Kokosaze Lulusaze|0001932E|85211||||||99.93|100.30|0.00|3.14| +38|2023-10-06T21:12:30.5560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|120070|129071|9200|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:30.5560000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:12:30.6430000-07:00|10FF0007|Kehabiqo Febiqo|0001932C|121665|155812|10000|10000|0||99.69|92.58|0.00|3.12|1500|0|0|01|040004A7|0|41A00000|| +26|2023-10-06T21:12:30.6430000-07:00|4A7|Rampart|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +37|2023-10-06T21:12:30.6880000-07:00|10FF0004|Buhojaqe Zijaqe|0001932E|80294||||||100.00|100.33|0.00|2.59| +37|2023-10-06T21:12:30.6880000-07:00|40022472|Zeromus|00019329|36350981||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:30.7310000-07:00|40022472|Zeromus|0001932A|36348043||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:30.7760000-07:00|40022472|Zeromus|0001932D|36336630||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:30.7760000-07:00|10FF0001|Sesuga Sapisuga|0001932D|129071||||||100.16|91.39|0.00|-3.13| +21|2023-10-06T21:12:30.7760000-07:00|10FF0001|Sesuga Sapisuga|1D6B|Rampart|10FF0001|Sesuga Sapisuga|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|120070|129071|9200|10000|||100.16|91.39|0.00|-3.13|120070|129071|9200|10000|||100.16|91.39|0.00|-3.13|00019331|0|1| +21|2023-10-06T21:12:30.7760000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|10430000|104|6138000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|36366339|40478540|10000|10000|||100.00|80.10|0.00|0.00|68054|81541|9600|10000|||100.00|100.33|0.00|2.59|00019332|0|1| +38|2023-10-06T21:12:30.7760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80294|81541|9600|10000|0||100.00|100.33|0.00|2.59|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:30.7760000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +37|2023-10-06T21:12:30.8210000-07:00|10FF000A|Dukaro Nezikaro|0001932E|77044||||||99.96|101.30|0.00|3.14| +261|2023-10-06T21:12:30.4440000-07:00|Change|10FF0003||||||||||||||| +22|2023-10-06T21:12:30.8650000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750005|53CF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||100.16|91.39|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.02|00019333|0|8| +22|2023-10-06T21:12:30.8650000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|56E10000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|121665|155812|10000|10000|||99.69|92.58|0.00|3.12|44|44|0|10000|||100.00|70.00|0.00|0.02|00019333|1|8| +22|2023-10-06T21:12:30.8650000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|347D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80294|81541|9600|10000|||100.01|100.33|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.02|00019333|2|8| +22|2023-10-06T21:12:30.8650000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|428E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|85211|90216|10000|10000|||99.93|100.30|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.02|00019333|3|8| +22|2023-10-06T21:12:30.8650000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|42ED0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|64919|82773|10000|10000|||99.96|101.30|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.02|00019333|4|8| +22|2023-10-06T21:12:30.8650000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|2AE50000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.18|101.46|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.02|00019333|5|8| +22|2023-10-06T21:12:30.8650000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|3C740000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|65085|81177|9386|10000|||100.72|102.43|0.00|-3.11|44|44|0|10000|||100.00|70.00|0.00|0.02|00019333|6|8| +22|2023-10-06T21:12:30.8650000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|3F6C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|57231|73814|8900|10000|||99.93|102.83|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.02|00019333|7|8| +21|2023-10-06T21:12:30.9100000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|33500000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|36336630|40478540|10000|10000|||100.00|80.10|0.00|0.00|57231|73814|8900|10000|||99.93|102.83|0.00|3.14|00019334|0|1| +38|2023-10-06T21:12:30.9100000-07:00|10FF0003|Gegehi Gehi|005A5A23|57231|73814|8600|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:30.9100000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:12:30.9100000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:12:30.5340000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:12:31.0430000-07:00|40022472|Zeromus|00019330|36324020||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:30.6310000-07:00|Change|10FF0001||| +37|2023-10-06T21:12:31.0880000-07:00|40022472|Zeromus|00019327|36311401||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:31.0880000-07:00|10FF0003|Gegehi Gehi|0001932E|69948|73814|8600|10000|0||99.93|102.83|0.00|3.14|2304|0|0|01|050004D2|0|C1F00000|| +37|2023-10-06T21:12:31.1760000-07:00|10FF0001|Sesuga Sapisuga|00019333|107616||||||100.16|91.39|0.00|-3.13| +37|2023-10-06T21:12:31.2210000-07:00|10FF0009|Zewo Negiwo|0001932E|77228||||||100.72|102.43|0.00|-3.11| +37|2023-10-06T21:12:31.2210000-07:00|10FF0007|Kehabiqo Febiqo|00019333|99424||||||99.69|92.58|0.00|3.12| +24|2023-10-06T21:12:31.2210000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|110A|85211|90216|10000|10000|||99.93|100.30|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +21|2023-10-06T21:12:31.2210000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|31A50000|143E|340000|4|1D328000|11B|2A8000|0|0|0|0|0|0|0|0|36311401|40478540|10000|10000|||100.00|80.10|0.00|0.00|121665|155812|10000|10000|||99.69|92.58|0.00|3.12|00019335|0|1| +21|2023-10-06T21:12:31.2210000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1A470000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|121665|155812|10000|10000|||99.69|92.58|0.00|3.12|36311401|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019336|0|1| +38|2023-10-06T21:12:31.2210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|89573|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:31.2660000-07:00|10FF0004|Buhojaqe Zijaqe|00019333|66857||||||100.14|100.24|-0.01|-3.13| +24|2023-10-06T21:12:31.2660000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|ACC|77044|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|80294|81541|9600|10000|||100.14|100.24|-0.01|-3.13| +20|2023-10-06T21:12:31.2660000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +38|2023-10-06T21:12:31.2660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79808|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:12:31.3100000-07:00|10FF0008|Kokosaze Lulusaze|00019333|72535||||||99.93|100.30|0.00|3.14| +24|2023-10-06T21:12:31.3100000-07:00|10FF0003|Gegehi Gehi|HoT|0|104C|69948|73814|8600|10000|||99.93|102.83|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +38|2023-10-06T21:12:31.3100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8600|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||| +04|2023-10-06T21:12:30.8530000-07:00|40022853|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.93|100.11|0.00|0.18| +261|2023-10-06T21:12:30.8530000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:12:30.8530000-07:00|Remove|40022853| +37|2023-10-06T21:12:31.3540000-07:00|10FF0007|Kehabiqo Febiqo|0001932E|123388||||||99.69|92.58|0.00|3.12| +37|2023-10-06T21:12:31.3540000-07:00|10FF000A|Dukaro Nezikaro|00019333|62675||||||99.96|101.30|0.00|3.14| +37|2023-10-06T21:12:31.3990000-07:00|10FF0006|Wowobora Gogobora|00019333|70828|81809|10000|10000|0||100.18|101.46|0.00|-3.13|1B05|0|0|01|08000000|0|0|| +24|2023-10-06T21:12:31.3990000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|152C|107616|129071|9200|10000|||100.16|91.39|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:31.3990000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1A67|99424|155812|10000|10000|||99.69|92.58|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:31.3990000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1575|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:31.3990000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D57|72535|90216|10000|10000|||99.93|100.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:31.3990000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D74|79808|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:31.3990000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15CB|81809|81809|10000|10000|||100.18|101.46|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:31.3990000-07:00|10FF0009|Zewo Negiwo|HoT|798|15A2|77228|81177|9386|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:31.3990000-07:00|10FF0003|Gegehi Gehi|HoT|798|15DD|73814|73814|8600|10000|||99.93|102.83|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:31.3990000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|AEE|66857|81541|9600|10000|||100.14|100.24|0.00|-3.13|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +38|2023-10-06T21:12:31.3990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|130147|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:31.3990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|155812|129071| +26|2023-10-06T21:12:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:12:31.3990000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9386|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:12:31.3990000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.78|95.75|0.00|3.13|0|0|0|||| +30|2023-10-06T21:12:31.3990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|4002284A|Ruby Carbuncle|00|77430|129071| +38|2023-10-06T21:12:31.3990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|75950|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:12:31.3990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76407|81809|10000|10000|0||100.18|101.46|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +30|2023-10-06T21:12:31.3990000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:12:31.3990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113036|129071|9200|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:12:31.3990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75148|81541|10000|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:31.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +30|2023-10-06T21:12:31.3990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +38|2023-10-06T21:12:31.3990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8600|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:31.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:12:31.3990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|66119|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:31.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:12:31.4440000-07:00|10FF0009|Zewo Negiwo|00019333|65701||||||100.72|102.43|0.00|-3.11| +37|2023-10-06T21:12:31.4440000-07:00|10FF0001|Sesuga Sapisuga|00019331|113036|129071|9200|10000|0||100.16|91.39|0.00|-3.13|1300|0|0|01|020004A7|0|41A00000|| +26|2023-10-06T21:12:31.4440000-07:00|4A7|Rampart|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:12:31.4890000-07:00|10FF0001|Sesuga Sapisuga|0001932E|129071||||||100.16|91.39|0.00|-3.13| +37|2023-10-06T21:12:31.4890000-07:00|10FF0003|Gegehi Gehi|00019333|57578|73814|8600|10000|0||99.93|102.83|0.00|3.14|2307|0|0|01|050004D2|0|C1F00000|| +37|2023-10-06T21:12:31.4890000-07:00|40022472|Zeromus|00019323|36279971||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:31.4890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|ACE|130147|155812|10000|10000|||99.69|92.58|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|130147|155812|10000|10000|||99.69|92.58|0.00|3.12| +24|2023-10-06T21:12:31.4890000-07:00|40022472|Zeromus|DoT|A92|815|36311401|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|76407|81809|10000|10000|||100.18|101.46|0.00|-3.13| +24|2023-10-06T21:12:31.4890000-07:00|10FF0006|Wowobora Gogobora|HoT|0|ADC|76407|81809|10000|10000|||100.18|101.46|0.00|-3.13|10FF0006|Wowobora Gogobora|0|76407|81809|10000|10000|||100.18|101.46|0.00|-3.13| +38|2023-10-06T21:12:31.4890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|132913|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:31.4890000-07:00|40022472|Zeromus|005A5A00|36277902|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:12:31.4890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|79187|81809|10000|10000|0||100.18|101.46|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:31.5330000-07:00|10FF0009|Zewo Negiwo|HoT|0|A8D|68402|81177|9936|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|75148|81541|10000|10000|||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:31.5330000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36277902|40478540|10000|10000|||100.00|80.10|0.00|0.00|57578|73814|8600|10000|||99.93|102.83|0.00|3.14|00019337|0|1| +38|2023-10-06T21:12:31.5330000-07:00|10FF0009|Zewo Negiwo|005A5A18|68402|81177|9936|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:12:31.5770000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36277902|40478540|10000|10000|||100.00|80.10|0.00|0.00|36277902|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019338|0|1| +24|2023-10-06T21:12:31.5770000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3620|129071|129071|9200|10000|||100.16|91.39|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|9200|10000|||100.16|91.39|0.00|-3.13| +38|2023-10-06T21:12:31.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:12:31.6220000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|722003|592E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36277902|40478540|10000|10000|||100.00|80.10|0.00|0.00|57578|73814|8600|10000|||99.93|102.83|0.00|3.14|00019339|0|1| +37|2023-10-06T21:12:31.6660000-07:00|40022472|Zeromus|00019334|36264766||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:31.6660000-07:00|10FF0003|Gegehi Gehi|00019334|57578|73814|8600|10000|0||99.93|102.83|0.00|3.14|2300|0|0|01|050004D2|0|41F00000|| +38|2023-10-06T21:12:31.6660000-07:00|10FF0003|Gegehi Gehi|005A5A23|57578|73814|8600|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||| +20|2023-10-06T21:12:31.7110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:31.7550000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36264766|40478540|10000|10000|||100.00|80.10|0.00|0.00|132913|155812|10000|10000|||99.69|92.58|0.00|3.12|0001933A|0|1| +37|2023-10-06T21:12:31.7990000-07:00|40022472|Zeromus|00019332|36260603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:31.7990000-07:00|10FF0004|Buhojaqe Zijaqe|00019332|76703||||||100.14|100.24|0.00|-3.13| +39|2023-10-06T21:12:31.7990000-07:00|4002285A|Liturgic Bell|77042|77042|10000|10000|||96.53|98.14|0.00|0.81| +21|2023-10-06T21:12:31.8440000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44716003|64EE0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|36264766|40478540|10000|10000|||100.00|80.10|0.00|0.00|66119|82773|10000|10000|||99.96|101.30|0.00|3.14|0001933B|0|1| +261|2023-10-06T21:12:31.4780000-07:00|Change|10FF0003||| +21|2023-10-06T21:12:31.9340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36260603|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.16|91.39|0.00|-3.13|0001933C|0|1| +31|2023-10-06T21:12:31.9340000-07:00|10FF0001||||| +261|2023-10-06T21:12:31.5730000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:12:32.0220000-07:00|10FF0007|Kehabiqo Febiqo|00019336|126186||||||99.69|92.58|0.00|3.12| +37|2023-10-06T21:12:32.0680000-07:00|40022472|Zeromus|00019337|36260569||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:32.1120000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|4C230000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|36260603|40478540|10000|10000|||100.00|80.10|0.00|0.00|75950|90216|10000|10000|||99.93|100.30|0.00|3.14|0001933D|0|1| +21|2023-10-06T21:12:32.1570000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|15360000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|66119|82773|10000|10000|||99.96|101.30|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|1.48|0001933E|0|1| +21|2023-10-06T21:12:32.1570000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DD90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36260569|40478540|10000|10000|||100.00|80.10|0.00|0.00|66119|82773|10000|10000|||99.96|101.30|0.00|3.14|0001933F|0|1| +21|2023-10-06T21:12:32.2010000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|557B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36260569|40478540|10000|10000|||100.00|80.10|0.00|0.00|68402|81177|9936|10000|||100.72|102.43|0.00|-3.11|00019340|0|1| +21|2023-10-06T21:12:32.2010000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|154003|6C590000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|36260569|40478540|10000|10000|||100.00|80.10|0.00|0.00|79187|81809|10000|10000|||100.18|101.46|0.00|-3.13|00019341|0|1| +261|2023-10-06T21:12:31.8120000-07:00|Change|10FF0006||||||||||||||||| +22|2023-10-06T21:12:32.2460000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|57020000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||100.16|91.39|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.02|00019342|0|8| +22|2023-10-06T21:12:32.2460000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|65290000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|126186|155812|10000|10000|||99.69|92.58|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|0.02|00019342|1|8| +22|2023-10-06T21:12:32.2460000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|3E180000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|76703|81541|10000|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.02|00019342|2|8| +22|2023-10-06T21:12:32.2460000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|41E40000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|75950|90216|10000|10000|||99.93|100.30|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.02|00019342|3|8| +22|2023-10-06T21:12:32.2460000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|45830000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|66119|82773|10000|10000|||99.96|101.30|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.02|00019342|4|8| +22|2023-10-06T21:12:32.2460000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|3D1D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79187|81809|9700|10000|||100.18|101.46|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.02|00019342|5|8| +22|2023-10-06T21:12:32.2460000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|41390000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|68402|81177|9536|10000|||100.72|102.43|0.00|-3.11|44|44|0|10000|||100.00|65.00|0.00|0.02|00019342|6|8| +22|2023-10-06T21:12:32.2460000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|3D960000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|57578|73814|8600|10000|||99.93|102.83|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.02|00019342|7|8| +37|2023-10-06T21:12:32.2900000-07:00|40022472|Zeromus|0001933A|36257679||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:31.9320000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:12:32.3800000-07:00|40022472|Zeromus|0001933B|36231841||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:32.4690000-07:00|40022472|Zeromus|0001933C|36230116||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:32.5130000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|0.45| +21|2023-10-06T21:12:32.5130000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|13A10000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|36231841|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.16|91.39|0.00|-3.13|00019343|0|1| +37|2023-10-06T21:12:32.5570000-07:00|10FF0001|Sesuga Sapisuga|00019342|106797||||||100.16|91.39|0.00|-3.13| +37|2023-10-06T21:12:32.6010000-07:00|10FF0007|Kehabiqo Febiqo|00019342|100289||||||99.69|92.58|0.00|3.12| +37|2023-10-06T21:12:32.6470000-07:00|10FF0004|Buhojaqe Zijaqe|00019342|60807||||||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:32.6470000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|BB70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36230116|40478540|10000|10000|||100.00|80.10|0.00|0.00|75950|90216|10000|10000|||99.93|100.30|0.00|3.14|00019344|0|1| +21|2023-10-06T21:12:32.6470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4EED0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36230116|40478540|10000|10000|||100.00|80.10|0.00|0.00|76703|81541|10000|10000|||100.14|100.24|0.00|-3.13|00019345|0|1| +37|2023-10-06T21:12:32.6900000-07:00|10FF0008|Kokosaze Lulusaze|00019342|59082||||||99.93|100.30|0.00|3.14| +37|2023-10-06T21:12:32.6900000-07:00|40022472|Zeromus|0001933F|36226571||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:32.7360000-07:00|40022472|Zeromus|00019335|36213862||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:32.7360000-07:00|10FF0007|Kehabiqo Febiqo|00019335|107763||||||99.69|92.58|0.00|3.12| +37|2023-10-06T21:12:32.7360000-07:00|10FF000A|Dukaro Nezikaro|00019342|48324||||||99.96|101.30|0.00|3.14| +39|2023-10-06T21:12:32.7360000-07:00|10FF0008|Kokosaze Lulusaze|59984|90216|10000|10000|||99.93|100.30|0.00|3.14| +37|2023-10-06T21:12:32.7800000-07:00|10FF0006|Wowobora Gogobora|00019342|63542||||||100.18|101.46|0.00|-3.13| +37|2023-10-06T21:12:32.7800000-07:00|40022472|Zeromus|00019339|36191032||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:32.7800000-07:00|10FF000A|Dukaro Nezikaro|49151|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:32.7800000-07:00|40022472|Zeromus|DoT|0|1B2D|36230116|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|66119|82773|10000|10000|||99.96|101.30|0.00|3.14| +38|2023-10-06T21:12:32.7800000-07:00|40022472|Zeromus|005A5A00|36184075|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:32.8250000-07:00|10FF0009|Zewo Negiwo|00019342|51705|81177|9536|10000|0||100.72|102.43|0.00|-3.11|1806|0|0|01|04000A95|02|41501888|| +26|2023-10-06T21:12:32.8250000-07:00|A95|Liturgy of the Bell|13.01|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|02|81177|81177| +37|2023-10-06T21:12:32.8250000-07:00|40022472|Zeromus|00019341|36156338||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:32.8250000-07:00|10FF0003|Gegehi Gehi|58316|73814|8800|10000|||99.93|102.83|0.00|3.14| +38|2023-10-06T21:12:32.8250000-07:00|10FF0009|Zewo Negiwo|005A5A18|51705|81177|9536|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:32.8700000-07:00|10FF0003|Gegehi Gehi|00019342|42550||||||99.93|102.83|0.00|3.14| +22|2023-10-06T21:12:32.8700000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|2F800000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|59984|90216|10000|10000|||99.93|100.30|0.00|3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|00019346|0|8| +22|2023-10-06T21:12:32.8700000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|301F0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|60807|81541|9600|10000|||100.14|100.24|0.00|-3.13|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|00019346|1|8| +22|2023-10-06T21:12:32.8700000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|30B40000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|49151|82773|10000|10000|||99.96|101.30|0.00|3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|00019346|2|8| +22|2023-10-06T21:12:32.8700000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|200004|4DF70000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|63542|81809|9700|10000|||100.18|101.46|0.00|-3.13|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|00019346|3|8| +22|2023-10-06T21:12:32.8700000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|2FCA0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|58316|73814|8800|10000|||99.93|102.83|0.00|3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|00019346|4|8| +22|2023-10-06T21:12:32.8700000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0009|Zewo Negiwo|4|2FB00000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|51705|81177|9536|10000|||100.72|102.43|0.00|-3.11|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|00019346|5|8| +22|2023-10-06T21:12:32.8700000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|39430000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|107763|155812|10000|10000|||99.69|92.58|0.00|3.12|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|00019346|6|8| +22|2023-10-06T21:12:32.8700000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|2FB50000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|106797|129071|9200|10000|||100.16|91.39|0.00|-3.13|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|00019346|7|8| +36|2023-10-06T21:12:32.8700000-07:00|15A4|3| +261|2023-10-06T21:12:32.4330000-07:00|Change|10FF0003||| +37|2023-10-06T21:12:32.9140000-07:00|40022472|Zeromus|0001933D|36136847||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:32.9140000-07:00|10FF0004|Buhojaqe Zijaqe|61622|81541|9800|10000|||100.14|100.24|0.00|-3.13| +20|2023-10-06T21:12:32.9140000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|100.18|101.46|0.00|-3.13| +261|2023-10-06T21:12:32.5340000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T21:12:32.9590000-07:00|10FF000A|Dukaro Nezikaro|0001933E|54581||||||99.96|101.30|0.00|3.14| +21|2023-10-06T21:12:32.9590000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36136847|40478540|10000|10000|||100.00|80.10|0.00|0.00|36136847|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019347|0|1| +261|2023-10-06T21:12:32.5340000-07:00|Change|10FF0004||||||||||||||||| +39|2023-10-06T21:12:33.0030000-07:00|10FF0007|Kehabiqo Febiqo|109321|155812|10000|10000|||99.69|92.58|0.00|3.12| +39|2023-10-06T21:12:33.0030000-07:00|10FF0006|Wowobora Gogobora|64360|81809|9900|10000|||100.18|101.46|0.00|-3.13| +39|2023-10-06T21:12:33.0470000-07:00|10FF0009|Zewo Negiwo|52516|81177|9757|10000|||100.72|102.43|0.00|-3.11| +39|2023-10-06T21:12:33.0930000-07:00|10FF0001|Sesuga Sapisuga|108087|129071|9400|10000|||100.16|91.39|0.00|-3.13| +261|2023-10-06T21:12:32.6300000-07:00|Change|10FF0001||| +37|2023-10-06T21:12:33.1380000-07:00|40022472|Zeromus|00019343|36131822||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:33.1820000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.78|95.75|0.00|0.03|0|0|0||||||| +26|2023-10-06T21:12:33.1820000-07:00|7AE|Summon Order IV|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:12:33.1820000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61622|81541|9800|10000|||100.14|100.24|0.00|-3.13|61622|81541|9800|10000|||100.14|100.24|0.00|-3.13|00019348|0|1| +22|2023-10-06T21:12:33.2710000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|200004|4A1C0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|109321|155812|10000|10000|||99.69|92.58|0.00|3.12|73956|77430|10000|10000|||99.78|95.75|0.00|0.03|00019349|0|8| +22|2023-10-06T21:12:33.2710000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|25780000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|108087|129071|9400|10000|||100.16|91.39|0.00|-3.13|73956|77430|10000|10000|||99.78|95.75|0.00|0.03|00019349|1|8| +22|2023-10-06T21:12:33.2710000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|260D0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|61622|81541|9800|10000|||100.14|100.24|0.00|-3.13|73956|77430|10000|10000|||99.78|95.75|0.00|0.03|00019349|2|8| +22|2023-10-06T21:12:33.2710000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|25680000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|59984|90216|10000|10000|||99.93|100.30|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|0.03|00019349|3|8| +22|2023-10-06T21:12:33.2710000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|200004|3B4D0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|54581|82773|10000|10000|||99.96|101.30|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|0.03|00019349|4|8| +22|2023-10-06T21:12:33.2710000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|24780000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|64360|81809|9900|10000|||100.18|101.46|0.00|-3.13|73956|77430|10000|10000|||99.78|95.75|0.00|0.03|00019349|5|8| +22|2023-10-06T21:12:33.2710000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0009|Zewo Negiwo|4|24C20000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|52516|81177|9757|10000|||100.72|102.43|0.00|-3.11|73956|77430|10000|10000|||99.78|95.75|0.00|0.03|00019349|6|8| +22|2023-10-06T21:12:33.2710000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|255A0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|42550|73814|8800|10000|||99.93|102.83|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|0.03|00019349|7|8| +37|2023-10-06T21:12:33.3150000-07:00|10FF0008|Kokosaze Lulusaze|00019346|72144||||||99.93|100.30|0.00|3.14| +20|2023-10-06T21:12:33.3150000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|99.93|102.83|0.00|3.14| +21|2023-10-06T21:12:33.3590000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|736003|1390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36131822|40478540|10000|10000|||100.00|80.10|0.00|0.00|61622|81541|9800|10000|||100.14|100.24|0.00|-3.13|0001934A|0|1| +261|2023-10-06T21:12:32.9730000-07:00|Change|10FF0009||| +37|2023-10-06T21:12:33.4040000-07:00|40022472|Zeromus|00019344|36128823||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:33.4490000-07:00|10FF0004|Buhojaqe Zijaqe|00019346|73941||||||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:12:33.4490000-07:00|40022472|Zeromus|00019345|36108618||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:33.4930000-07:00|40022472|Zeromus|00019340|36086735||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:33.0900000-07:00|Change|4002286E||||| +38|2023-10-06T21:12:33.5830000-07:00|4002287B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:12:33.5830000-07:00|10FF000A|Dukaro Nezikaro|00019346|67049||||||99.96|101.30|0.00|3.14| +38|2023-10-06T21:12:33.5830000-07:00|4002287B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +22|2023-10-06T21:12:33.6270000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750005|42140000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|108087|129071|9400|10000|||100.16|91.39|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.02|0001934B|0|8| +22|2023-10-06T21:12:33.6270000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|66980000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|109321|155812|10000|10000|||99.69|92.58|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|0.02|0001934B|1|8| +22|2023-10-06T21:12:33.6270000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|3CFF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73941|81541|9800|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.02|0001934B|2|8| +22|2023-10-06T21:12:33.6270000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|43430000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|72144|90216|10000|10000|||99.93|100.30|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.02|0001934B|3|8| +22|2023-10-06T21:12:33.6270000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|42E60000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|67049|82773|10000|10000|||99.96|101.30|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.02|0001934B|4|8| +22|2023-10-06T21:12:33.6270000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|3F750000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|64360|81809|9900|10000|||100.18|101.46|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.02|0001934B|5|8| +22|2023-10-06T21:12:33.6270000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|3D8C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|52516|81177|9757|10000|||100.72|102.43|0.00|-3.11|44|44|0|10000|||100.00|65.00|0.00|0.02|0001934B|6|8| +22|2023-10-06T21:12:33.6270000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|3C8F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|42550|73814|8800|10000|||99.93|102.83|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.02|0001934B|7|8| +21|2023-10-06T21:12:33.6720000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|714003|1D280000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|36086735|40478540|10000|10000|||100.00|80.10|0.00|0.00|109321|155812|10000|10000|||99.69|92.58|0.00|3.12|0001934C|0|1| +03|2023-10-06T21:12:33.2980000-07:00|4002287B|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.17|99.72|0.00|0.01| +261|2023-10-06T21:12:33.2980000-07:00|Add|4002287B||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:33.7160000-07:00|10FF0006|Wowobora Gogobora|00019346|81809||||||100.18|101.46|0.00|-3.13| +20|2023-10-06T21:12:33.7160000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +261|2023-10-06T21:12:33.2980000-07:00|Change|4002287B||| +37|2023-10-06T21:12:33.8500000-07:00|10FF0003|Gegehi Gehi|00019346|54784||||||99.93|102.83|0.00|3.14| +38|2023-10-06T21:12:33.8510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73941|81541|9800|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:33.8510000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:12:33.4930000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:12:33.8940000-07:00|40022472|Zeromus|0001934A|36086422||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:33.9400000-07:00|10FF0001|Sesuga Sapisuga|0001934B|91171||||||100.16|91.39|0.00|-3.13| +38|2023-10-06T21:12:33.9400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.18|101.46|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:33.9400000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:12:33.5920000-07:00|Change|10FF0006||||| +37|2023-10-06T21:12:33.9850000-07:00|10FF0009|Zewo Negiwo|00019346|64724||||||100.72|102.43|0.00|-3.11| +37|2023-10-06T21:12:33.9850000-07:00|10FF0007|Kehabiqo Febiqo|0001934B|83057||||||99.69|92.58|0.00|3.12| +37|2023-10-06T21:12:34.0280000-07:00|10FF0004|Buhojaqe Zijaqe|0001934B|58326||||||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:12:34.0740000-07:00|10FF0007|Kehabiqo Febiqo|00019349|102029||||||99.69|92.58|0.00|3.12| +37|2023-10-06T21:12:34.0740000-07:00|10FF0008|Kokosaze Lulusaze|0001934B|54925||||||99.93|100.30|0.00|3.14| +21|2023-10-06T21:12:34.0740000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|712003|26100000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|36086422|40478540|10000|10000|||100.00|80.10|0.00|0.00|67049|82773|10000|10000|||99.96|101.30|0.00|3.14|0001934D|0|1| +261|2023-10-06T21:12:33.6880000-07:00|Remove|4002284F| +37|2023-10-06T21:12:34.1180000-07:00|10FF0007|Kehabiqo Febiqo|00019346|116688||||||99.69|92.58|0.00|3.12| +37|2023-10-06T21:12:34.1180000-07:00|10FF000A|Dukaro Nezikaro|0001934B|49923||||||99.96|101.30|0.00|3.14| +20|2023-10-06T21:12:34.1180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.14|100.24|0.00|-3.13| +37|2023-10-06T21:12:34.1620000-07:00|10FF0006|Wowobora Gogobora|0001934B|65564||||||100.18|101.46|0.00|-3.13| +261|2023-10-06T21:12:33.8000000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:12:34.2070000-07:00|40022472|Zeromus|0001934C|36078958||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:34.2070000-07:00|10FF0001|Sesuga Sapisuga|00019349|100763||||||100.16|91.39|0.00|-3.13| +37|2023-10-06T21:12:34.2070000-07:00|10FF0009|Zewo Negiwo|0001934B|48968||||||100.72|102.43|0.00|-3.11| +24|2023-10-06T21:12:34.2070000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|10C2|54925|90216|10000|10000|||99.93|100.30|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.03| +21|2023-10-06T21:12:34.2070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|DED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36086422|40478540|10000|10000|||100.00|80.10|0.00|0.00|91171|129071|9400|10000|||100.16|91.39|0.00|-3.13|0001934E|0|1| +38|2023-10-06T21:12:34.2070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|59215|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +31|2023-10-06T21:12:34.2070000-07:00|10FF0001||||| +37|2023-10-06T21:12:34.2510000-07:00|10FF0001|Sesuga Sapisuga|00019346|112976||||||100.16|91.39|0.00|-3.13| +37|2023-10-06T21:12:34.2510000-07:00|10FF0003|Gegehi Gehi|0001934B|39281||||||99.93|102.83|0.00|3.14| +24|2023-10-06T21:12:34.2510000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|B00|67049|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|58326|81541|9800|10000|||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:34.2510000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1E740000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|102029|155812|10000|10000|||99.69|92.58|0.00|3.12|36086422|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001934F|0|1| +38|2023-10-06T21:12:34.2510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52739|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||| +24|2023-10-06T21:12:34.2960000-07:00|10FF0003|Gegehi Gehi|HoT|0|A33|39281|73814|8800|10000|||99.93|102.83|0.00|3.14|10FF0003|Gegehi Gehi|0|39281|73814|8800|10000|||99.93|102.83|0.00|3.14| +38|2023-10-06T21:12:34.2960000-07:00|10FF0003|Gegehi Gehi|005A5A23|41892|73814|8800|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:12:34.3410000-07:00|10FF0004|Buhojaqe Zijaqe|00019349|68067||||||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:34.3410000-07:00|40022472|Zeromus|8B3A|Sable Thread|40022472|Zeromus|49|8000|1B|8B3A8000|0|0|0|0|0|0|0|0|0|0|0|0|36078958|40478540|10000|10000|||100.00|80.10|0.00|0.00|36078958|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019350|0|1| +21|2023-10-06T21:12:34.3410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36078958|40478540|10000|10000|||100.00|80.10|0.00|0.00|52739|82773|10000|10000|||99.96|101.30|0.00|3.14|00019351|0|1| +24|2023-10-06T21:12:34.3850000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15AC|112976|129071|9400|10000|||100.16|91.39|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:34.3850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|192B|116688|155812|10000|10000|||99.69|92.58|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:34.3850000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|DA5|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:34.3850000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D45|59215|90216|10000|10000|||99.93|100.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:34.3850000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D6F|52739|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:34.3850000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D29|65564|81809|9900|10000|||100.18|101.46|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:34.3850000-07:00|10FF0009|Zewo Negiwo|HoT|798|CE1|48968|81177|9757|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:34.3850000-07:00|10FF0003|Gegehi Gehi|HoT|798|15AB|41892|73814|8800|10000|||99.93|102.83|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:34.3850000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1149|68067|81541|9800|10000|||100.14|100.24|0.00|-3.13|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.03| +38|2023-10-06T21:12:34.3850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123131|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:34.3850000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:12:34.3850000-07:00|10FF0009|Zewo Negiwo|005A5A18|52265|81177|9757|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:34.3850000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:12:34.3850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62612|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:34.3850000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:12:34.3850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|68933|81809|9900|10000|0||100.18|101.46|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:34.3850000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:12:34.3850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118524|129071|9400|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:34.3850000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:12:34.3850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75985|81541|9800|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:34.3850000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:12:34.3850000-07:00|10FF0003|Gegehi Gehi|005A5A23|47439|73814|8800|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:34.3850000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:12:34.3850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56178|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:34.3850000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:12:33.9220000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:12:34.4740000-07:00|10FF0008|Kokosaze Lulusaze|00019349|72188||||||99.93|100.30|0.00|3.14| +37|2023-10-06T21:12:34.4740000-07:00|40022472|Zeromus|0001934D|36069214||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:34.4740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A1D|116688|155812|10000|10000|||99.69|92.58|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|116688|155812|10000|10000|||99.69|92.58|0.00|3.12| +24|2023-10-06T21:12:34.4740000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1120|65564|81809|9900|10000|||100.18|101.46|0.00|-3.13|10FF0006|Wowobora Gogobora|0|65564|81809|9900|10000|||100.18|101.46|0.00|-3.13| +38|2023-10-06T21:12:34.4740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125720|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:34.4740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|73317|81809|9900|10000|0||100.18|101.46|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:34.5180000-07:00|10FF0009|Zewo Negiwo|HoT|0|A65|52265|81177|9757|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|75985|81541|9800|10000|||100.14|100.24|0.00|-3.13| +38|2023-10-06T21:12:34.5180000-07:00|10FF0009|Zewo Negiwo|005A5A18|54926|81177|10000|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:12:34.5630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2495|118524|129071|9400|10000|||100.16|91.39|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|118524|129071|9400|10000|||100.16|91.39|0.00|-3.13| +38|2023-10-06T21:12:34.5630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127889|129071|9400|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:34.5630000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:12:34.6080000-07:00|10FF000A|Dukaro Nezikaro|00019349|71359||||||99.96|101.30|0.00|3.14| +21|2023-10-06T21:12:34.6080000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44722003|5ACF0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|36069214|40478540|10000|10000|||100.00|80.10|0.00|0.00|72188|90216|10000|10000|||99.93|100.30|0.00|3.14|00019352|0|1| +34|2023-10-06T21:12:34.6080000-07:00|4002287B|Carbuncle|4002287B|Carbuncle|01| +261|2023-10-06T21:12:34.2490000-07:00|Change|4002287B||| +21|2023-10-06T21:12:34.6530000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31310000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36069214|40478540|10000|10000|||100.00|80.10|0.00|0.00|54926|81177|10000|10000|||100.72|102.43|0.00|-3.11|00019353|0|1| +37|2023-10-06T21:12:34.7420000-07:00|10FF0006|Wowobora Gogobora|00019349|81809||||||100.18|101.46|0.00|-3.13| +37|2023-10-06T21:12:34.7420000-07:00|40022472|Zeromus|0001934E|36065649||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:34.7420000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|154003|3E900000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|36069214|40478540|10000|10000|||100.00|80.10|0.00|0.00|47439|73814|8800|10000|||99.93|102.83|0.00|3.14|00019354|0|1| +38|2023-10-06T21:12:34.7420000-07:00|10FF0003|Gegehi Gehi|005A5A23|47439|73814|8600|10000|0||99.93|102.83|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:12:34.7420000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:12:34.7420000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:12:34.8300000-07:00|4002285A|Liturgic Bell|77042|77042|10000|10000|||96.53|98.14|0.00|0.81| +37|2023-10-06T21:12:34.8750000-07:00|10FF0009|Zewo Negiwo|00019349|64336||||||100.72|102.43|0.00|-3.11| +37|2023-10-06T21:12:34.8750000-07:00|40022472|Zeromus|00019351|36063585||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:34.9210000-07:00|10FF0007|Kehabiqo Febiqo|2C|Vengeance|10FF0007|Kehabiqo Febiqo|6400E20E|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|125720|155812|10000|10000|||99.69|92.58|0.00|3.12|125720|155812|10000|10000|||99.69|92.58|0.00|3.12|00019355|0|1| +261|2023-10-06T21:12:34.5330000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:12:35.0090000-07:00|10FF0003|Gegehi Gehi|00019349|57001||||||99.93|102.83|0.00|3.14| +21|2023-10-06T21:12:35.0090000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35712003|31020000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|36063585|40478540|10000|10000|||100.00|80.10|0.00|0.00|127889|129071|9400|10000|||100.16|91.39|0.00|-3.13|00019356|0|1| +38|2023-10-06T21:12:35.0090000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.78|95.75|0.00|0.18|0|0|0|||| +30|2023-10-06T21:12:35.0090000-07:00|7AE|Summon Order IV|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T21:12:35.0530000-07:00|10FF0007|Kehabiqo Febiqo|0001934F|117924||||||99.69|92.58|0.00|3.12| +21|2023-10-06T21:12:35.0530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|31B40000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36063585|40478540|10000|10000|||100.00|80.10|0.00|0.00|75985|81541|9800|10000|||100.14|100.24|0.00|-3.13|00019357|0|1| +21|2023-10-06T21:12:35.1420000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|E160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36063585|40478540|10000|10000|||100.00|80.10|0.00|0.00|117924|155812|10000|10000|||99.69|92.58|0.00|3.12|00019358|0|1| +38|2023-10-06T21:12:35.1420000-07:00|40022472|Zeromus|005A5A00|36063585|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:35.1420000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40022472|Zeromus|00|40478540|155812| +261|2023-10-06T21:12:34.7640000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:12:35.1870000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|52270000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|36063585|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.18|101.46|0.00|-3.13|00019359|0|1| +261|2023-10-06T21:12:34.8820000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T21:12:35.3210000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36063585|40478540|10000|10000|||100.00|80.10|0.00|0.00|72188|90216|10000|10000|||99.93|100.30|0.00|3.14|0001935A|0|1| +261|2023-10-06T21:12:34.8820000-07:00|Change|4002248F||||||||| +22|2023-10-06T21:12:35.3650000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750005|5C4D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|127889|129071|9400|10000|||100.16|91.39|0.00|-3.13|44|44|0|10000|||100.00|72.50|0.00|0.02|0001935B|0|8| +22|2023-10-06T21:12:35.3650000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|68AE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|117924|155812|10000|10000|||99.69|92.58|0.00|3.12|44|44|0|10000|||100.00|72.50|0.00|0.02|0001935B|1|8| +22|2023-10-06T21:12:35.3650000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|44C60000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|75985|81541|9400|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|72.50|0.00|0.02|0001935B|2|8| +22|2023-10-06T21:12:35.3650000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|498A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|72188|90216|10000|10000|||99.93|100.30|0.00|3.14|44|44|0|10000|||100.00|72.50|0.00|0.02|0001935B|3|8| +22|2023-10-06T21:12:35.3650000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|4B810000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|71359|82773|10000|10000|||99.96|101.30|0.00|3.14|44|44|0|10000|||100.00|72.50|0.00|0.02|0001935B|4|8| +22|2023-10-06T21:12:35.3650000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|42450000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||100.18|101.46|0.00|-3.13|44|44|0|10000|||100.00|72.50|0.00|0.02|0001935B|5|8| +22|2023-10-06T21:12:35.3650000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|46360000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|64336|81177|9600|10000|||100.72|102.43|0.00|-3.11|44|44|0|10000|||100.00|72.50|0.00|0.02|0001935B|6|8| +22|2023-10-06T21:12:35.3650000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|42D60000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|57001|73814|8600|10000|||99.93|102.83|0.00|3.14|44|44|0|10000|||100.00|72.50|0.00|0.02|0001935B|7|8| +261|2023-10-06T21:12:35.0020000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:12:35.4090000-07:00|40022472|Zeromus|00019352|36040338||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:35.5430000-07:00|10FF0007|Kehabiqo Febiqo|00019355|117924|155812|10000|10000|0||99.69|92.58|0.00|3.12|1500|0|0|01|01000059|64|41700000|| +26|2023-10-06T21:12:35.5430000-07:00|59|Vengeance|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|155812|155812| +37|2023-10-06T21:12:35.5430000-07:00|40022472|Zeromus|00019354|36024322||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:35.5430000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|1.11| +37|2023-10-06T21:12:35.6770000-07:00|40022472|Zeromus|00019358|36020716||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:35.6770000-07:00|10FF0001|Sesuga Sapisuga|0001935B|104260||||||100.16|91.39|0.00|-3.13| +38|2023-10-06T21:12:35.6770000-07:00|40022472|Zeromus|005A5A00|36020716|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:35.6770000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40022472|Zeromus|00|40478540|81809| +37|2023-10-06T21:12:35.7220000-07:00|10FF0007|Kehabiqo Febiqo|0001935B|91126||||||99.69|92.58|0.00|3.12| +39|2023-10-06T21:12:35.7220000-07:00|10FF0008|Kokosaze Lulusaze|73090|90216|10000|10000|||99.93|100.30|0.00|3.14| +37|2023-10-06T21:12:35.7670000-07:00|10FF0004|Buhojaqe Zijaqe|0001935B|58379||||||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:12:35.7670000-07:00|40022472|Zeromus|00019356|36008170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:35.7670000-07:00|10FF0001|Sesuga Sapisuga|00019356|104260|129071|10000|10000|0||100.16|91.39|0.00|-3.13|1300|0|0|0| +39|2023-10-06T21:12:35.7670000-07:00|10FF000A|Dukaro Nezikaro|72186|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:35.7670000-07:00|40022472|Zeromus|DoT|0|2576|36024322|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|71359|82773|10000|10000|||99.96|101.30|0.00|3.14| +21|2023-10-06T21:12:35.7670000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|356003|67D10000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|36024322|40478540|10000|10000|||100.00|80.10|0.00|0.00|57001|73814|8600|10000|||99.93|102.83|0.00|3.14|0001935C|0|1| +38|2023-10-06T21:12:35.7670000-07:00|40022472|Zeromus|005A5A00|35998580|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:12:35.7670000-07:00|10FF0003|Gegehi Gehi|005A5A23|57001|73814|8300|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:12:35.7670000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:12:35.4140000-07:00|Change|10FF0001||| +37|2023-10-06T21:12:35.8110000-07:00|10FF0008|Kokosaze Lulusaze|0001935B|54264||||||99.93|100.30|0.00|3.14| +37|2023-10-06T21:12:35.8110000-07:00|40022472|Zeromus|00019359|35977549||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:35.8110000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14720000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|72186|82773|10000|10000|||99.96|101.30|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|1.15|0001935D|0|1| +39|2023-10-06T21:12:35.8110000-07:00|10FF0003|Gegehi Gehi|57739|73814|8500|10000|||99.93|102.83|0.00|3.14| +37|2023-10-06T21:12:35.8550000-07:00|10FF000A|Dukaro Nezikaro|0001935B|52857||||||99.96|101.30|0.00|3.14| +37|2023-10-06T21:12:35.8550000-07:00|40022472|Zeromus|00019357|35964825||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:12:35.8550000-07:00|1680|3| +37|2023-10-06T21:12:35.9000000-07:00|10FF0006|Wowobora Gogobora|0001935B|64844||||||100.18|101.46|0.00|-3.13| +39|2023-10-06T21:12:35.9000000-07:00|10FF0004|Buhojaqe Zijaqe|59194|81541|9600|10000|||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:35.9000000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|156003|8B590000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|35964825|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.18|101.46|0.00|-3.13|0001935E|0|1| +38|2023-10-06T21:12:35.9000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|64844|81809|9600|10000|0||100.18|101.46|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:35.9000000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:12:35.9450000-07:00|40022472|Zeromus|00019353|35952232||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:35.9450000-07:00|10FF0009|Zewo Negiwo|0001935B|46362|81177|9600|10000|0||100.72|102.43|0.00|-3.11|1806|0|0|01|04000A95|01|411E2D0D|| +26|2023-10-06T21:12:35.9450000-07:00|A95|Liturgy of the Bell|9.89|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|01|81177|81177| +38|2023-10-06T21:12:35.9450000-07:00|10FF0009|Zewo Negiwo|005A5A18|46362|81177|9600|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:12:35.5160000-07:00|Change|10FF0003||| +37|2023-10-06T21:12:35.9900000-07:00|10FF0003|Gegehi Gehi|0001935B|40629||||||99.93|102.83|0.00|3.14| +22|2023-10-06T21:12:35.9900000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|31350000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|54264|90216|10000|10000|||99.93|100.30|0.00|3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|0001935F|0|8| +22|2023-10-06T21:12:35.9900000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|319B0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|58379|81541|9400|10000|||100.14|100.24|0.00|-3.13|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|0001935F|1|8| +22|2023-10-06T21:12:35.9900000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|31270000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|52857|82773|10000|10000|||99.96|101.30|0.00|3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|0001935F|2|8| +22|2023-10-06T21:12:35.9900000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|200004|4CD40000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||100.18|101.46|0.00|-3.13|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|0001935F|3|8| +22|2023-10-06T21:12:35.9900000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|200004|4EFE0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|57739|73814|8500|10000|||99.93|102.83|0.00|3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|0001935F|4|8| +22|2023-10-06T21:12:35.9900000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0009|Zewo Negiwo|4|302F0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|64336|81177|9600|10000|||100.72|102.43|0.00|-3.11|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|0001935F|5|8| +22|2023-10-06T21:12:35.9900000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|396E0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|91126|155812|10000|10000|||99.69|92.58|0.00|3.12|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|0001935F|6|8| +22|2023-10-06T21:12:35.9900000-07:00|4002285A|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|300F0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|104260|129071|10000|10000|||100.16|91.39|0.00|-3.13|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|0001935F|7|8| +39|2023-10-06T21:12:35.9900000-07:00|10FF0007|Kehabiqo Febiqo|92684|155812|10000|10000|||99.69|92.58|0.00|3.12| +39|2023-10-06T21:12:35.9900000-07:00|10FF0006|Wowobora Gogobora|65662|81809|9800|10000|||100.18|101.46|0.00|-3.13| +39|2023-10-06T21:12:36.0350000-07:00|10FF0009|Zewo Negiwo|47173|81177|9821|10000|||100.72|102.43|0.00|-3.11| +37|2023-10-06T21:12:36.0790000-07:00|40022472|Zeromus|0001935A|35948368||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:36.0790000-07:00|10FF0001|Sesuga Sapisuga|105550|129071|10000|10000|||100.16|91.39|0.00|-3.13| +21|2023-10-06T21:12:36.1240000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32714003|28F60000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|35948368|40478540|10000|10000|||100.00|80.10|0.00|0.00|92684|155812|10000|10000|||99.69|92.58|0.00|3.12|00019360|0|1| +21|2023-10-06T21:12:36.1240000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|A5A0000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|35948368|40478540|10000|10000|||100.00|80.10|0.00|0.00|47173|81177|9821|10000|||100.72|102.43|0.00|-3.11|00019361|0|1| +21|2023-10-06T21:12:36.2140000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52857|82773|10000|10000|||99.96|101.30|0.00|3.14|52857|82773|10000|10000|||99.96|101.30|0.00|3.14|00019362|0|1| +38|2023-10-06T21:12:36.2140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52857|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:36.2140000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:12:35.8400000-07:00|Change|10FF0004||| +261|2023-10-06T21:12:35.9500000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:12:36.0690000-07:00|Change|10FF0009||| +37|2023-10-06T21:12:36.4360000-07:00|10FF0008|Kokosaze Lulusaze|0001935F|66861||||||99.93|100.30|0.00|3.14| +21|2023-10-06T21:12:36.4810000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35948368|40478540|10000|10000|||100.00|80.10|0.00|0.00|105550|129071|10000|10000|||100.16|91.39|0.00|-3.13|00019363|0|1| +20|2023-10-06T21:12:36.4810000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:36.4810000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35948368|40478540|10000|10000|||100.00|80.10|0.00|0.00|40629|73814|8500|10000|||99.93|102.83|0.00|3.14|00019364|0|1| +31|2023-10-06T21:12:36.4810000-07:00|10FF0001||||| +37|2023-10-06T21:12:36.5250000-07:00|40022472|Zeromus|0001935C|35921791||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:36.5250000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|10300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35948368|40478540|10000|10000|||100.00|80.10|0.00|0.00|52857|82773|10000|10000|||99.96|101.30|0.00|3.14|00019365|0|1| +37|2023-10-06T21:12:36.5700000-07:00|10FF0004|Buhojaqe Zijaqe|0001935F|71893||||||100.14|100.24|0.00|-3.13| +38|2023-10-06T21:12:36.5700000-07:00|40022472|Zeromus|005A5A00|35921791|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:36.5700000-07:00|35C|Dismantled|0.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|90216| +37|2023-10-06T21:12:36.6150000-07:00|10FF000A|Dukaro Nezikaro|0001935D|58091||||||99.96|101.30|0.00|3.14| +37|2023-10-06T21:12:36.7030000-07:00|10FF000A|Dukaro Nezikaro|0001935F|70674||||||99.96|101.30|0.00|3.14| +21|2023-10-06T21:12:36.7030000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58091|82773|10000|10000|||99.96|101.30|0.00|3.14|58091|82773|10000|10000|||99.96|101.30|0.00|3.14|00019366|0|1| +38|2023-10-06T21:12:36.7040000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|70674|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:36.7040000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:12:36.7480000-07:00|40022472|Zeromus|00019360|35911305||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:36.7480000-07:00|40022472|Zeromus|0001935E|35875632||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:36.8370000-07:00|10FF0006|Wowobora Gogobora|0001935F|81809||||||100.17|100.57|-0.02|-3.13| +38|2023-10-06T21:12:36.9260000-07:00|10FF0009|Zewo Negiwo|005A5A18|47173|81177|9421|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:36.9260000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:12:36.9720000-07:00|10FF0003|Gegehi Gehi|0001935F|60851||||||99.93|102.83|0.00|3.14| +37|2023-10-06T21:12:37.0160000-07:00|40022472|Zeromus|00019363|35873838||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:37.0160000-07:00|40022472|Zeromus|00019364|35873810||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:37.0610000-07:00|40022472|Zeromus|00019365|35869666||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:37.1050000-07:00|10FF0009|Zewo Negiwo|0001935F|59508||||||100.72|102.43|0.00|-3.11| +21|2023-10-06T21:12:37.1050000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1D4E0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|35869666|40478540|10000|10000|||100.00|80.10|0.00|0.00|66861|90216|10000|10000|||99.93|100.30|0.00|3.14|00019367|0|1| +24|2023-10-06T21:12:37.1940000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|11BF|66861|90216|10000|10000|||99.93|100.30|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.31| +21|2023-10-06T21:12:37.1940000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70674|82773|10000|10000|||99.96|101.30|0.00|3.14|70674|82773|10000|10000|||99.96|101.30|0.00|3.14|00019368|0|1| +38|2023-10-06T21:12:37.1940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|71404|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:12:37.1940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|70674|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:37.1940000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +37|2023-10-06T21:12:37.2390000-07:00|10FF0007|Kehabiqo Febiqo|0001935F|107386||||||99.69|92.58|0.00|3.12| +261|2023-10-06T21:12:36.9060000-07:00|Change|10FF0004||||||||||||| +24|2023-10-06T21:12:37.2840000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A83|70674|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF000A|Dukaro Nezikaro|0|70674|82773|10000|10000|||99.96|101.30|0.00|3.14| +21|2023-10-06T21:12:37.2840000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1C720000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|92684|155812|10000|10000|||99.69|92.58|0.00|3.12|35869666|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019369|0|1| +38|2023-10-06T21:12:37.2840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|73365|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +04|2023-10-06T21:12:36.9060000-07:00|4002286E|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||102.07|103.70|0.00|-3.13| +261|2023-10-06T21:12:36.9060000-07:00|Remove|4002286E| +24|2023-10-06T21:12:37.3280000-07:00|10FF0003|Gegehi Gehi|HoT|0|A85|60851|73814|8500|10000|||99.93|102.83|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.54| +38|2023-10-06T21:12:37.3280000-07:00|10FF0003|Gegehi Gehi|005A5A23|63544|73814|8500|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||| +37|2023-10-06T21:12:37.3720000-07:00|10FF0001|Sesuga Sapisuga|0001935F|117853||||||100.16|91.39|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1514|105550|129071|10000|10000|||100.16|91.39|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|FCA|107386|155812|10000|10000|||99.69|92.58|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D0E|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D6A|71404|90216|10000|10000|||99.93|100.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D55|81809|81809|9800|10000|||100.18|100.57|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D2F|73365|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF0009|Zewo Negiwo|HoT|798|D3F|59508|81177|9421|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF0003|Gegehi Gehi|HoT|798|D8A|60851|73814|8500|10000|||99.93|102.83|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:37.3730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|108D|71893|81541|9600|10000|||100.14|100.24|0.00|-3.13|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.54| +38|2023-10-06T21:12:37.3730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111428|155812|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:37.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:12:37.3730000-07:00|10FF0009|Zewo Negiwo|005A5A18|62899|81177|9421|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:37.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:12:37.3730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|74838|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:37.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:12:37.3730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9800|10000|0||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:37.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:12:37.3730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123249|129071|10000|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:37.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:12:37.3730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79472|81541|9600|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:37.3730000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:12:37.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|67010|73814|8500|10000|0||99.93|102.83|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:12:37.3730000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:12:37.3730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76740|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:37.3730000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:12:37.4170000-07:00|40022472|Zeromus|00019361|35867016|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:12:37.4170000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +21|2023-10-06T21:12:37.4170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32B90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35869666|40478540|10000|10000|||100.00|80.10|0.00|0.00|79472|81541|9600|10000|||100.14|100.24|0.00|-3.13|0001936A|0|1| +24|2023-10-06T21:12:37.5060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|113C|111428|155812|10000|10000|||99.69|92.58|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|111428|155812|10000|10000|||99.69|92.58|0.00|3.12| +24|2023-10-06T21:12:37.5060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A74|81809|81809|9800|10000|||100.18|100.57|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|79472|81541|9600|10000|||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:37.5060000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41712003|415C0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|35869666|40478540|10000|10000|||100.00|80.10|0.00|0.00|123249|129071|10000|10000|||100.16|91.39|0.00|-3.13|0001936B|0|1| +38|2023-10-06T21:12:37.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115840|129844|10000|10000|0||99.69|92.58|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:37.5060000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +38|2023-10-06T21:12:37.5060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9800|10000|0||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:12:37.5060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123249|129071|10000|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:37.5060000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:12:37.5060000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +24|2023-10-06T21:12:37.5500000-07:00|10FF0009|Zewo Negiwo|HoT|0|A2A|62899|81177|9421|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|79472|81541|9200|10000|||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:37.5500000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35867016|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9800|10000|||100.18|100.57|0.00|-3.13|0001936C|0|1| +38|2023-10-06T21:12:37.5500000-07:00|10FF0009|Zewo Negiwo|005A5A18|65501|81177|9421|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:12:37.5930000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|246B|123249|129071|10000|10000|||100.16|91.39|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|123249|129071|10000|10000|||100.16|91.39|0.00|-3.13| +38|2023-10-06T21:12:37.5930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:12:37.6840000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|12FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35867016|40478540|10000|10000|||100.00|80.10|0.00|0.00|67010|73814|8500|10000|||99.93|102.83|0.00|3.14|0001936D|0|1| +21|2023-10-06T21:12:37.7290000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|650003|37FE0000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|35867016|40478540|10000|10000|||100.00|80.10|0.00|0.00|76740|82773|10000|10000|||99.96|101.30|0.00|3.14|0001936E|0|1| +38|2023-10-06T21:12:37.7290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76740|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:37.7290000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +26|2023-10-06T21:12:37.7290000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +39|2023-10-06T21:12:37.8170000-07:00|4002285A|Liturgic Bell|77042|77042|10000|10000|||96.53|98.14|0.00|0.81| +37|2023-10-06T21:12:37.8630000-07:00|40022472|Zeromus|00019367|35859514||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:37.9970000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35859514|40478540|10000|10000|||100.00|80.10|0.00|0.00|74838|90216|10000|10000|||99.93|100.30|0.00|3.14|0001936F|0|1| +21|2023-10-06T21:12:37.9970000-07:00|10FF0004|Buhojaqe Zijaqe|650B|Protraction|10FF0007|Kehabiqo Febiqo|A0A0E|A960000|4|32B80000|0|0|0|0|0|0|0|0|0|0|0|0|115840|129844|10000|10000|||99.61|92.58|0.00|3.09|79472|81541|9200|10000|||100.14|100.24|0.00|-3.13|00019370|0|1| +37|2023-10-06T21:12:38.0850000-07:00|10FF0007|Kehabiqo Febiqo|00019369|108558||||||98.60|91.44|0.00|3.09| +37|2023-10-06T21:12:38.0850000-07:00|40022472|Zeromus|0001936C|35859361||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:38.0850000-07:00|40022472|Zeromus|0001936B|35842629||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:38.0850000-07:00|10FF0001|Sesuga Sapisuga|0001936B|129071|129071|10000|10000|0||100.16|91.39|0.00|-3.13|1300|0|0|02|0300076E|03|41F00000|||||| +38|2023-10-06T21:12:38.0860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.16|91.39|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:38.2200000-07:00|40022472|Zeromus|0001936A|35829644||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:37.8250000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:12:38.3090000-07:00|40022472|Zeromus|0001936D|35824786||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:38.3530000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|150003|48350000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|35824786|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9800|10000|||100.18|100.57|0.00|-3.13|00019371|0|1| +21|2023-10-06T21:12:38.3990000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|724003|1F4F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35824786|40478540|10000|10000|||100.00|80.10|0.00|0.00|67010|73814|8500|10000|||99.93|100.57|0.00|3.14|00019372|0|1| +261|2023-10-06T21:12:38.0560000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:12:38.4420000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35824786|40478540|10000|10000|||100.00|80.10|0.00|0.00|79472|81541|9200|10000|||100.14|100.24|0.00|-3.08|00019373|0|1| +39|2023-10-06T21:12:38.5330000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +21|2023-10-06T21:12:38.5330000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|DFE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35824786|40478540|10000|10000|||100.00|80.10|0.00|0.00|108558|129844|10000|10000|||97.37|90.71|0.00|3.08|00019374|0|1| +20|2023-10-06T21:12:38.5330000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +21|2023-10-06T21:12:38.5770000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|310C0000|143E|340000|4|18168000|11B|2A8000|0|0|0|0|0|0|0|0|35824786|40478540|10000|10000|||100.00|80.10|0.00|0.00|108558|129844|10000|10000|||97.37|90.71|0.00|3.08|00019375|0|1| +38|2023-10-06T21:12:38.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.28|91.39|0.00|2.34|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:12:38.5770000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:12:38.1680000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:12:38.7110000-07:00|40022472|Zeromus|0001936E|35810452||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:38.7110000-07:00|10FF000A|Dukaro Nezikaro|0001936E|76740|82773|10000|10000|0||99.96|101.30|0.00|3.14|1E00|0|0|01|060001FB|0|41A00000|| +39|2023-10-06T21:12:38.7110000-07:00|10FF0008|Kokosaze Lulusaze|75740|90216|10000|10000|||99.93|100.30|0.00|3.14| +21|2023-10-06T21:12:38.7110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35824786|40478540|10000|10000|||100.00|80.10|0.00|0.00|76740|82773|10000|10000|||99.96|101.30|0.00|3.14|00019376|0|1| +38|2023-10-06T21:12:38.7110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76740|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:38.7560000-07:00|40022472|Zeromus|0001936F|35807481||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:38.7560000-07:00|10FF0007|Kehabiqo Febiqo|00019370|121542|142828|10000|10000|0||96.71|90.77|-0.02|2.83|1500|0|0|01|09000A96|0|41200000|| +26|2023-10-06T21:12:38.7560000-07:00|A96|Protraction|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +39|2023-10-06T21:12:38.7560000-07:00|10FF000A|Dukaro Nezikaro|77567|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:38.7560000-07:00|40022472|Zeromus|DoT|0|2107|35824786|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|76740|82773|10000|10000|||99.96|101.30|0.00|3.14| +21|2023-10-06T21:12:38.7560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35824786|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.27|91.80|0.00|2.34|00019377|0|1| +38|2023-10-06T21:12:38.7560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121542|142828|10000|10000|0||96.71|90.77|-0.02|2.83|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:38.7560000-07:00|40022472|Zeromus|005A5A00|35799026|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +31|2023-10-06T21:12:38.7560000-07:00|10FF0001||||| +39|2023-10-06T21:12:38.7990000-07:00|10FF0003|Gegehi Gehi|67748|73814|8700|10000|||99.93|100.57|0.00|3.14| +261|2023-10-06T21:12:38.3610000-07:00|Change|10FF0003||||| +36|2023-10-06T21:12:38.8450000-07:00|175C|3| +39|2023-10-06T21:12:38.8890000-07:00|10FF0004|Buhojaqe Zijaqe|80287|81541|9400|10000|||100.14|100.24|0.00|-2.94| +37|2023-10-06T21:12:38.9770000-07:00|40022472|Zeromus|00019373|35798789||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:38.9770000-07:00|40022472|Zeromus|00019372|35790774||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:38.9780000-07:00|10FF0007|Kehabiqo Febiqo|122970|142828|10000|10000|||96.66|90.76|-0.02|2.85| +39|2023-10-06T21:12:38.9780000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.14|100.54|0.00|-3.06| +261|2023-10-06T21:12:38.5600000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:12:39.0220000-07:00|10FF0009|Zewo Negiwo|66312|81177|9642|10000|||100.72|102.43|0.00|-3.11| +261|2023-10-06T21:12:38.6730000-07:00|Change|10FF0009||||| +37|2023-10-06T21:12:39.0660000-07:00|40022472|Zeromus|00019374|35787192||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:39.0660000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||102.72|93.00|0.00|1.91| +37|2023-10-06T21:12:39.1110000-07:00|40022472|Zeromus|00019371|35768707||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:39.1550000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|99.93|100.57|0.00|3.14| +38|2023-10-06T21:12:39.1990000-07:00|40022472|Zeromus|005A5A00|35768707|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:39.1990000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:12:39.2440000-07:00|40022472|Zeromus|00019376|35766461||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:38.9120000-07:00|Change|10FF0004||||| +37|2023-10-06T21:12:39.2890000-07:00|40022472|Zeromus|00019377|35763532||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:39.2890000-07:00|40022472|Zeromus|005A5A00|35763532|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:12:39.2890000-07:00|4AB|Feint|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +261|2023-10-06T21:12:38.9120000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T21:12:39.3790000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|23E40000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|35763532|40478540|10000|10000|||100.00|80.10|0.00|0.00|77567|82773|10000|10000|||99.96|101.30|0.00|3.14|00019378|0|1| +261|2023-10-06T21:12:39.0310000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:12:39.4220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80287|81541|9400|10000|0||100.14|100.24|0.00|-2.83|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:39.4220000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:12:39.4670000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|53260000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35763532|40478540|10000|10000|||100.00|80.10|0.00|0.00|66312|81177|9642|10000|||100.72|102.43|0.00|-3.11|00019379|0|1| +39|2023-10-06T21:12:39.5570000-07:00|4002287B|Carbuncle|77698|77698|10000|10000|||100.17|99.72|0.00|0.01| +21|2023-10-06T21:12:39.6010000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|3A870000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|35763532|40478540|10000|10000|||100.00|80.10|0.00|0.00|75740|90216|10000|10000|||99.93|100.30|0.00|3.14|0001937A|0|1| +21|2023-10-06T21:12:39.6890000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14CF0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|77567|82773|10000|10000|||99.96|101.30|0.00|3.14|73956|77430|10000|10000|||99.78|95.75|0.00|1.76|0001937B|0|1| +261|2023-10-06T21:12:39.3330000-07:00|Remove|40022856| +37|2023-10-06T21:12:39.7790000-07:00|40022472|Zeromus|00019378|35754344||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:39.4240000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T21:12:39.7000000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:12:40.0900000-07:00|40022472|Zeromus|00019375|35741788||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:40.0900000-07:00|10FF0007|Kehabiqo Febiqo|00019375|129136||||||93.57|86.31|0.00|3.08| +21|2023-10-06T21:12:40.0900000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|44DA0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35754344|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||108.77|91.64|0.00|2.20|0001937C|0|1| +38|2023-10-06T21:12:40.0900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||108.77|91.64|0.00|2.20|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:40.0900000-07:00|76E|Sword Oath|27.95|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:12:39.8190000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:12:40.2240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A99|75740|90216|10000|10000|||99.93|100.30|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.03| +21|2023-10-06T21:12:40.2240000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|754003|30600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35741788|40478540|10000|10000|||100.00|80.10|0.00|0.00|77567|82773|10000|10000|||99.96|101.30|0.00|3.14|0001937D|0|1| +38|2023-10-06T21:12:40.2240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|78453|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:12:40.2690000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|AA3|77567|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF000A|Dukaro Nezikaro|0|77567|82773|10000|10000|||99.96|101.30|0.00|3.14| +38|2023-10-06T21:12:40.2690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|80290|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:12:40.3130000-07:00|10FF0003|Gegehi Gehi|HoT|0|B04|67748|73814|8700|10000|||99.93|100.57|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.03| +21|2023-10-06T21:12:40.3130000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|203B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129136|142828|10000|10000|||93.35|85.82|0.00|3.08|35741788|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001937E|0|1| +38|2023-10-06T21:12:40.3130000-07:00|10FF0003|Gegehi Gehi|005A5A23|70568|73814|8700|10000|0||99.93|100.57|0.00|3.14|0|0|0||||||||||||| +20|2023-10-06T21:12:40.3580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.14|100.24|0.00|-2.72| +261|2023-10-06T21:12:39.9340000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:12:40.4020000-07:00|40022472|Zeromus|0001937A|35726805||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:40.4020000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|10BD|80287|81541|9400|10000|||100.14|100.24|0.00|-2.78|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.03| +38|2023-10-06T21:12:40.4020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9400|10000|0||100.14|100.24|0.00|-2.78|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:40.4920000-07:00|10FF000A|Dukaro Nezikaro|0001937B|82773||||||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:40.4920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|AFD|129136|142828|10000|10000|||93.28|85.65|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9400|10000|||100.14|100.24|0.00|-2.89| +24|2023-10-06T21:12:40.4920000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A5A|81809|81809|10000|10000|||99.57|97.25|0.00|2.02|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9400|10000|||100.14|100.24|0.00|-2.89| +38|2023-10-06T21:12:40.4920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|131949|142828|10000|10000|0||93.28|85.65|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:40.4920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.57|97.25|0.00|2.02|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:12:40.5370000-07:00|10FF0009|Zewo Negiwo|HoT|0|A7C|66312|81177|9242|10000|||100.72|102.43|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9400|10000|||100.14|100.24|0.00|-2.89| +38|2023-10-06T21:12:40.5370000-07:00|10FF0009|Zewo Negiwo|005A5A18|68996|81177|9242|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:12:40.5810000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|AFD|129071|129071|10000|10000|||110.77|90.02|0.00|2.34|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|0.03| +21|2023-10-06T21:12:40.5810000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|2F580000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|35726805|40478540|10000|10000|||100.00|80.10|0.00|0.00|70568|73814|8700|10000|||99.93|100.57|0.00|3.14|0001937F|0|1| +38|2023-10-06T21:12:40.5810000-07:00|10FF0003|Gegehi Gehi|005A5A23|70568|73814|8500|10000|0||99.93|100.57|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:12:40.5810000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:12:40.5810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||110.77|90.02|0.00|2.34|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:12:40.2550000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:12:40.6710000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35726805|40478540|10000|10000|||100.00|80.10|0.00|0.00|78453|90216|10000|10000|||99.93|100.30|0.00|3.14|00019380|0|1| +21|2023-10-06T21:12:40.6710000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35726805|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.60|97.34|0.00|1.58|00019381|0|1| +37|2023-10-06T21:12:40.7590000-07:00|40022472|Zeromus|00019379|35705519||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:40.8040000-07:00|4002285A|Liturgic Bell|77042|77042|10000|10000|||96.53|98.14|0.00|0.81| +37|2023-10-06T21:12:40.8480000-07:00|40022472|Zeromus|0001937D|35693135||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:40.8480000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|78453|90216|10000|10000|||99.93|100.30|0.00|3.14|78453|90216|10000|10000|||99.93|100.30|0.00|3.14|00019382|0|1| +20|2023-10-06T21:12:40.8480000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|99.63|97.43|0.00|0.23| +261|2023-10-06T21:12:40.4500000-07:00|Change|10FF0006||||||||||||||||||| +21|2023-10-06T21:12:40.8940000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35693135|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|00019383|0|1| +20|2023-10-06T21:12:40.9370000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +21|2023-10-06T21:12:40.9820000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||112.35|88.00|0.00|2.77|129071|129071|10000|10000|||112.35|88.00|0.00|2.77|00019384|0|1| +21|2023-10-06T21:12:41.0270000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15AE0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|35693135|40478540|10000|10000|||100.00|80.10|0.00|0.00|131949|142828|10000|10000|||93.28|85.65|0.00|3.08|00019385|0|1| +21|2023-10-06T21:12:41.0270000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35693135|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||112.35|88.00|0.00|2.77|00019386|0|1| +31|2023-10-06T21:12:41.0270000-07:00|10FF0001||||| +37|2023-10-06T21:12:41.1140000-07:00|10FF0007|Kehabiqo Febiqo|0001937E|123698||||||93.28|85.65|0.00|2.26| +261|2023-10-06T21:12:40.6600000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:12:40.7710000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:12:41.2050000-07:00|40022472|Zeromus|00019381|35692949||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:41.2940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33A10000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35693135|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||100.14|100.24|0.00|-3.13|00019387|0|1| +38|2023-10-06T21:12:41.3380000-07:00|40022892||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:12:41.3380000-07:00|40022472|Zeromus|0001937F|35680829||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:41.3390000-07:00|40022892||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:12:41.3830000-07:00|40022472|Zeromus|0001937C|35663203||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:41.0000000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:12:41.4280000-07:00|40022472|Zeromus|00019380|35660255||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:41.4280000-07:00|40022472|Zeromus|00019383|35657652||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:41.4280000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35663203|40478540|10000|10000|||100.00|80.10|0.00|0.00|70568|73814|8500|10000|||99.93|100.57|0.00|3.14|00019388|0|1| +37|2023-10-06T21:12:41.5160000-07:00|10FF0001|Sesuga Sapisuga|00019384|129071|129071|10000|10000|0||112.72|86.80|0.00|-3.13|1300|0|0|01|0800004A|0|41700000|| +26|2023-10-06T21:12:41.5160000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T21:12:41.5160000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|1.70| +37|2023-10-06T21:12:41.5610000-07:00|40022472|Zeromus|00019385|35652102||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:41.5610000-07:00|40022472|Zeromus|00019386|35650317||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:41.5610000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|37F40000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|35657652|40478540|10000|10000|||100.00|80.10|0.00|0.00|70568|73814|8500|10000|||99.93|100.57|0.00|3.14|00019389|0|1| +38|2023-10-06T21:12:41.5610000-07:00|10FF0003|Gegehi Gehi|005A5A23|70568|73814|8200|10000|0||99.93|100.57|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:12:41.5610000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:12:41.6050000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|303C0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|35657652|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|0001938A|0|1| +261|2023-10-06T21:12:41.3110000-07:00|Change|10FF0003||| +39|2023-10-06T21:12:41.6940000-07:00|10FF0008|Kokosaze Lulusaze|79355|90216|10000|10000|||99.93|100.30|0.00|3.14| +03|2023-10-06T21:12:41.3110000-07:00|40022892|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.69|102.09|0.00|3.14| +261|2023-10-06T21:12:41.3110000-07:00|Add|40022892||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:41.4020000-07:00|Change|40022892||| +39|2023-10-06T21:12:41.7830000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:41.7830000-07:00|40022472|Zeromus|DoT|0|17FD|35650317|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|68996|81177|9242|10000|||100.72|102.43|0.00|-3.11| +38|2023-10-06T21:12:41.7830000-07:00|40022472|Zeromus|005A5A00|35644176|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:12:41.8280000-07:00|10FF0003|Gegehi Gehi|71306|73814|8400|10000|||99.93|100.57|0.00|3.14| +21|2023-10-06T21:12:41.8280000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|750003|31420000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|35650317|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.69|97.61|0.00|3.12|0001938B|0|1| +261|2023-10-06T21:12:41.4020000-07:00|Change|10FF0006||||||||||||||||||||| +39|2023-10-06T21:12:41.8720000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9200|10000|||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:41.8720000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|30700000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35644176|40478540|10000|10000|||100.00|80.10|0.00|0.00|68996|81177|9242|10000|||100.72|102.43|0.00|-3.11|0001938C|0|1| +36|2023-10-06T21:12:41.8720000-07:00|1838|3| +21|2023-10-06T21:12:41.9160000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35644176|40478540|10000|10000|||100.00|80.10|0.00|0.00|123698|142828|10000|10000|||93.34|85.65|0.00|2.83|0001938D|0|1| +37|2023-10-06T21:12:41.9600000-07:00|40022472|Zeromus|00019388|35644142||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:42.0050000-07:00|10FF0007|Kehabiqo Febiqo|125126|142828|10000|10000|||93.60|85.45|0.00|3.08| +39|2023-10-06T21:12:42.0050000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||99.69|97.61|0.00|3.12| +39|2023-10-06T21:12:42.0490000-07:00|10FF0009|Zewo Negiwo|69807|81177|9063|10000|||100.72|102.43|0.00|-3.11| +37|2023-10-06T21:12:42.0950000-07:00|40022472|Zeromus|00019387|35630925||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:42.0950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||112.99|86.69|0.00|-3.13| +21|2023-10-06T21:12:42.0950000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44722003|604B0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|35644142|40478540|10000|10000|||100.00|80.10|0.00|0.00|79355|90216|10000|10000|||99.93|100.30|0.00|3.14|0001938E|0|1| +37|2023-10-06T21:12:42.1390000-07:00|40022472|Zeromus|0001938A|35618577||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:41.7070000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:12:42.3160000-07:00|40022472|Zeromus|00019389|35604253||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:42.3160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125126|142828|10000|10000|0||94.71|84.61|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:42.3160000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|142828|77430| +34|2023-10-06T21:12:42.3610000-07:00|40022892|Automaton Queen|40022892|Automaton Queen|01| +38|2023-10-06T21:12:42.3610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9200|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:42.3610000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:12:42.3610000-07:00|10FF0003|Gegehi Gehi|005A5A23|71306|73814|8400|10000|0||99.93|100.57|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:12:42.3610000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:12:42.3610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:42.3610000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:12:41.9350000-07:00|Change|40022892||||| +38|2023-10-06T21:12:42.4050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125126|142828|10000|10000|0||94.77|84.61|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:42.4050000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|142828|81541| +38|2023-10-06T21:12:42.4050000-07:00|10FF0009|Zewo Negiwo|005A5A18|69807|81177|9063|10000|0||100.72|102.43|0.00|-3.11|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:42.4050000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:12:42.4050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79355|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:42.4050000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:12:42.4050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||99.68|97.58|0.00|-3.08|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:42.4050000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:12:42.4050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||112.99|86.59|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:42.4050000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T21:12:42.0540000-07:00|Change|10FF0004||| +37|2023-10-06T21:12:42.4500000-07:00|40022472|Zeromus|0001938D|35601456||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:42.4500000-07:00|10FF0003|Gegehi Gehi|005A5A23|71306|73814|8400|10000|0||99.93|100.57|0.00|3.14|0|0|0||||||| +30|2023-10-06T21:12:42.4500000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +39|2023-10-06T21:12:42.5390000-07:00|4002287B|Carbuncle|77698|77698|10000|10000|||100.85|98.44|0.00|2.64| +21|2023-10-06T21:12:42.5830000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2A710000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35601456|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|0001938F|0|1| +21|2023-10-06T21:12:42.5830000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35601456|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||100.14|100.24|0.00|-3.13|00019390|0|1| +38|2023-10-06T21:12:42.5830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||112.99|86.59|0.00|-2.03|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:42.5830000-07:00|76E|Sword Oath|25.46|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:12:42.5830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9200|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:42.5830000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:12:42.6270000-07:00|40022472|Zeromus|0001938B|35588846||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:42.2560000-07:00|Change|10FF0003||| +27|2023-10-06T21:12:42.7160000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +27|2023-10-06T21:12:42.7160000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +00|2023-10-06T21:12:42.0000000-07:00|0044|Zeromus|In endless Dark embrace your end.| +38|2023-10-06T21:12:42.7170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||112.99|86.59|0.00|-2.03|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:42.7170000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +20|2023-10-06T21:12:42.7620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.14|100.24|0.00|-3.13| +20|2023-10-06T21:12:42.8060000-07:00|40022472|Zeromus|8B83|Dark Matter|40022472|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:42.4480000-07:00|Change|40022472||||||||||||| +261|2023-10-06T21:12:42.4480000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:12:42.8510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79355|90216|10000|10000|0||99.93|100.30|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:42.8510000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:12:42.8950000-07:00|40022472|Zeromus|0001938E|35564195||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:42.9840000-07:00|10FF0009|Zewo Negiwo|005A5A18|69807|81177|9063|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||| +30|2023-10-06T21:12:42.9840000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +21|2023-10-06T21:12:43.0300000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|71306|73814|8400|10000|||99.93|100.57|0.00|3.14|71306|73814|8400|10000|||99.93|100.57|0.00|3.14|00019391|0|1| +38|2023-10-06T21:12:43.0300000-07:00|10FF0003|Gegehi Gehi|005A5A23|71306|73814|8400|10000|0||99.93|100.57|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:12:43.0300000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:12:43.0740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AD40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35564195|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|00019392|0|1| +37|2023-10-06T21:12:43.1180000-07:00|40022472|Zeromus|00019390|35563952||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:43.1180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||99.85|95.09|0.00|3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:43.1180000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:12:43.1620000-07:00|40022472|Zeromus|0001938C|35551552||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:43.2070000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A22|79355|90216|10000|10000|||99.91|100.21|0.00|-3.10|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|2.84| +38|2023-10-06T21:12:43.2070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81949|90216|10000|10000|0||99.91|100.21|0.00|-3.10|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:12:43.2520000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A6E|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +38|2023-10-06T21:12:43.2520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:43.2520000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +24|2023-10-06T21:12:43.2980000-07:00|10FF0003|Gegehi Gehi|HoT|0|A70|71306|73814|8400|10000|||99.93|100.57|0.00|3.14|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|2.65| +21|2023-10-06T21:12:43.2980000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35551552|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|00019393|0|1| +38|2023-10-06T21:12:43.2980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8400|10000|0||99.93|100.57|0.00|3.14|0|0|0|||||||||| +31|2023-10-06T21:12:43.2980000-07:00|10FF0001||||| +20|2023-10-06T21:12:43.3420000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +21|2023-10-06T21:12:43.3420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35551552|40478540|10000|10000|||100.00|80.10|0.00|0.00|81949|90216|10000|10000|||99.87|98.80|0.00|-3.11|00019394|0|1| +21|2023-10-06T21:12:43.3420000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|750003|487F0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|35551552|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||99.87|94.77|0.00|3.07|00019395|0|1| +38|2023-10-06T21:12:43.3420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|0||99.87|94.77|0.00|3.07|0|0|0|||||||||| +30|2023-10-06T21:12:43.3420000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:12:42.9840000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:12:42.9840000-07:00|Change|10FF0004||||||||||||| +24|2023-10-06T21:12:43.3870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|AA2|81541|81541|9200|10000|||100.14|100.24|0.00|-3.13|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|2.35| +38|2023-10-06T21:12:43.3870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9200|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:43.4750000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A7D|125126|142828|10000|10000|||94.87|84.61|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9200|10000|||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:12:43.4750000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A71|81809|81809|9500|10000|||99.87|94.77|0.00|3.13|10FF0006|Wowobora Gogobora|0|81809|81809|9500|10000|||99.87|94.77|0.00|3.13| +21|2023-10-06T21:12:43.4750000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32714003|2AB20000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|35551552|40478540|10000|10000|||100.00|80.10|0.00|0.00|125126|142828|10000|10000|||94.87|84.61|0.00|3.08|00019396|0|1| +38|2023-10-06T21:12:43.4750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127811|142828|10000|10000|0||94.87|84.61|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:43.4750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|0||99.87|94.77|0.00|3.13|0|0|0|||||||||| +24|2023-10-06T21:12:43.5200000-07:00|10FF0009|Zewo Negiwo|HoT|0|B00|69807|81177|9063|10000|||100.72|102.43|0.00|-3.11|10FF0009|Zewo Negiwo|0|69807|81177|9063|10000|||100.72|102.43|0.00|-3.11| +38|2023-10-06T21:12:43.5200000-07:00|10FF0009|Zewo Negiwo|005A5A18|72623|81177|9063|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||||||||| +21|2023-10-06T21:12:43.5640000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|22620000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|81949|90216|10000|10000|||99.83|97.16|0.00|-3.13|73956|77430|10000|10000|||99.78|95.75|0.00|1.58|00019397|0|1| +24|2023-10-06T21:12:43.5640000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A8E|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03| +38|2023-10-06T21:12:43.5640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||112.99|86.59|0.00|-2.03|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:12:43.6090000-07:00|40022472|Zeromus|00019392|35548780||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:43.6990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2FEB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35548780|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||100.14|100.24|0.00|-3.13|00019398|0|1| +37|2023-10-06T21:12:43.7900000-07:00|10FF0003|Gegehi Gehi|00019391|73814|73814|8400|10000|0||99.93|100.57|0.00|3.14|2300|0|0|01|020004D6|0|41A00000|| +39|2023-10-06T21:12:43.7900000-07:00|4002285A|Liturgic Bell|77042|77042|10000|10000|||96.53|98.14|0.00|0.81| +38|2023-10-06T21:12:43.7900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8400|10000|0||99.93|100.57|0.00|3.14|0|0|0|||||||||| +37|2023-10-06T21:12:43.8350000-07:00|40022472|Zeromus|00019393|35546989||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:43.4940000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:12:43.8780000-07:00|40022472|Zeromus|0001938F|35536124||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:43.8780000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18D20000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|35548780|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|00019399|0|1| +261|2023-10-06T21:12:43.5900000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:12:44.0570000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|556003|6FB50000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|35536124|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8400|10000|||99.93|100.57|0.00|3.14|0001939A|0|1| +38|2023-10-06T21:12:44.0570000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8100|10000|0||99.93|100.57|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:12:44.0570000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:12:44.0570000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:12:44.1030000-07:00|40022472|Zeromus|00019396|35525194||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:44.1030000-07:00|40022472|Zeromus|00019394|35522983||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:44.1460000-07:00|40022472|Zeromus|00019395|35504424||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:43.7890000-07:00|Change|10FF0003||| +37|2023-10-06T21:12:44.2810000-07:00|40022472|Zeromus|00019399|35498070||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:44.2810000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|51760000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35504424|40478540|10000|10000|||100.00|80.10|0.00|0.00|72623|81177|9063|10000|||100.72|102.43|0.00|-3.11|0001939B|0|1| +37|2023-10-06T21:12:44.3690000-07:00|10FF0008|Kokosaze Lulusaze|00019397|90216||||||99.96|92.60|0.00|3.11| +261|2023-10-06T21:12:44.0140000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:12:44.0140000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:12:44.5030000-07:00|40022472|Zeromus|00019398|35485803||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:44.5030000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|0.79| +21|2023-10-06T21:12:44.5920000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|724003|25930000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|35485803|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.98|92.15|0.00|3.11|0001939C|0|1| +39|2023-10-06T21:12:44.7250000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.98|92.10|0.00|3.14| +39|2023-10-06T21:12:44.7700000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:44.7700000-07:00|40022472|Zeromus|DoT|0|1708|35485803|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11| +38|2023-10-06T21:12:44.7700000-07:00|40022472|Zeromus|005A5A00|35479907|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:12:44.8160000-07:00|40022472|Zeromus|0001939A|35451310||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:44.8160000-07:00|10FF0003|Gegehi Gehi|0001939A|73814|73814|8100|10000|0||99.93|100.57|0.00|3.14|2300|0|0|01|030004D2|0|41F00000|| +39|2023-10-06T21:12:44.8160000-07:00|10FF0003|Gegehi Gehi|73814|73814|8300|10000|||99.93|100.57|0.00|3.14| +21|2023-10-06T21:12:44.8160000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35485803|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||99.87|94.77|0.00|3.13|0001939D|0|1| +38|2023-10-06T21:12:44.8160000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8300|10000|0||99.93|100.57|0.00|3.14|0|0|0||||||||||||| +36|2023-10-06T21:12:44.8600000-07:00|1914|3| +39|2023-10-06T21:12:44.9050000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9000|10000|||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:12:44.9050000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35451310|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8300|10000|||99.93|100.57|0.00|3.14|0001939E|0|1| +39|2023-10-06T21:12:44.9940000-07:00|10FF0007|Kehabiqo Febiqo|129239|142828|10000|10000|||91.93|83.88|0.00|3.08| +39|2023-10-06T21:12:44.9940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9700|10000|||99.87|94.77|0.00|3.13| +261|2023-10-06T21:12:44.5930000-07:00|Change|10FF0006||| +39|2023-10-06T21:12:45.0400000-07:00|10FF0009|Zewo Negiwo|73434|81177|8884|10000|||100.72|102.43|0.00|-3.11| +21|2023-10-06T21:12:45.0400000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|326C0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35451310|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|0001939F|0|1| +38|2023-10-06T21:12:45.0400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||112.99|86.59|0.00|-2.03|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:45.0400000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +39|2023-10-06T21:12:45.0830000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03| +22|2023-10-06T21:12:45.1280000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|31FD0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11|000193A0|0|7| +22|2023-10-06T21:12:45.1280000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|322E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11|000193A0|1|7| +22|2023-10-06T21:12:45.1280000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|4|31650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8300|10000|||99.93|100.57|0.00|3.14|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11|000193A0|2|7| +22|2023-10-06T21:12:45.1280000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|52230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9000|10000|||100.14|100.24|0.00|-3.13|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11|000193A0|3|7| +22|2023-10-06T21:12:45.1280000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|42320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35451310|40478540|10000|10000|||100.00|80.10|0.00|0.00|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11|000193A0|4|7| +22|2023-10-06T21:12:45.1280000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|4|32200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||99.87|94.77|0.00|3.13|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11|000193A0|5|7| +22|2023-10-06T21:12:45.1280000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|31E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.99|91.97|-0.02|3.14|72623|81177|8663|10000|||100.72|102.43|0.00|-3.11|000193A0|6|7| +21|2023-10-06T21:12:45.1280000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|35451310|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||100.14|100.24|0.00|-3.13|000193A1|0|1| +21|2023-10-06T21:12:45.1710000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|722003|648E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35451310|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8300|10000|||99.93|100.57|0.00|3.14|000193A2|0|1| +21|2023-10-06T21:12:45.2170000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.99|91.96|-0.02|3.14|90216|90216|10000|10000|||99.99|91.96|-0.02|3.14|000193A3|0|1| +38|2023-10-06T21:12:45.2170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.99|91.96|-0.02|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:45.2170000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:12:44.8250000-07:00|Change|10FF0003||| +21|2023-10-06T21:12:45.2610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|10740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35451310|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000193A4|0|1| +21|2023-10-06T21:12:45.3060000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AF20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35451310|40478540|10000|10000|||100.00|80.10|0.00|0.00|129239|142828|10000|10000|||91.60|83.70|0.00|3.08|000193A5|0|1| +37|2023-10-06T21:12:45.3510000-07:00|40022472|Zeromus|0001939C|35441691||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:45.3510000-07:00|10FF0008|Kokosaze Lulusaze|0001939C|90216|90216|10000|10000|0||99.99|91.92|0.00|3.12|1F00|0|0|01|02000353|0|C0A00000|| +37|2023-10-06T21:12:45.3510000-07:00|40022472|Zeromus|0001939D|35441512||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:45.4390000-07:00|40022472|Zeromus|0001939E|35441453||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:45.4390000-07:00|40022472|Zeromus|005A5A00|35441453|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:12:45.4390000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +261|2023-10-06T21:12:45.0480000-07:00|Change|10FF0009||| +261|2023-10-06T21:12:45.0480000-07:00|Change|10FF0004||| +37|2023-10-06T21:12:45.5730000-07:00|40022472|Zeromus|0001939B|35420599||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:45.5730000-07:00|4002287B|Carbuncle|77698|77698|10000|10000|||101.15|96.24|0.00|3.01| +21|2023-10-06T21:12:45.5730000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35441453|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|000193A6|0|1| +31|2023-10-06T21:12:45.5730000-07:00|10FF0001||||| +261|2023-10-06T21:12:45.3520000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:12:45.7510000-07:00|40022472|Zeromus|000193A1|35420599|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:12:45.7510000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +37|2023-10-06T21:12:45.7970000-07:00|10FF0009|Zewo Negiwo|000193A0|81177|81177|9384|10000|0||100.72|102.43|0.00|-3.11|1800|0|0|0| +37|2023-10-06T21:12:45.7970000-07:00|40022472|Zeromus|000193A4|35416387||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:45.7970000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +38|2023-10-06T21:12:45.7970000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9384|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||| +30|2023-10-06T21:12:45.7970000-07:00|A95|Liturgy of the Bell|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|01|81177|81177| +37|2023-10-06T21:12:45.8410000-07:00|40022472|Zeromus|000193A5|35413585||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:45.8410000-07:00|10FF0008|Kokosaze Lulusaze|000193A3|90216|90216|10000|10000|0||100.03|89.89|0.00|3.12|1F00|0|0|01|02000353|0|40A00000|| +21|2023-10-06T21:12:45.8410000-07:00|10FF0006|Wowobora Gogobora|64E7|Summon Phoenix|40022472|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|35420599|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||99.96|92.91|0.00|3.01|000193A7|0|1| +38|2023-10-06T21:12:45.8410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.03|89.89|0.00|3.12|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:12:45.4430000-07:00|Change|4002287B||||||||| +38|2023-10-06T21:12:45.8860000-07:00|400228A0||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +22|2023-10-06T21:12:45.8860000-07:00|4002285A|Liturgic Bell|6508|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|177D0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8600|10000|||100.14|100.24|0.00|-3.13|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|000193A8|0|7| +22|2023-10-06T21:12:45.8860000-07:00|4002285A|Liturgic Bell|6508|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|18950000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8300|10000|||99.93|100.57|0.00|3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|000193A8|1|7| +22|2023-10-06T21:12:45.8860000-07:00|4002285A|Liturgic Bell|6508|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|188C0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|000193A8|2|7| +22|2023-10-06T21:12:45.8860000-07:00|4002285A|Liturgic Bell|6508|Liturgy of the Bell|10FF0009|Zewo Negiwo|4|17C90000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9384|10000|||100.72|102.43|0.00|-3.11|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|000193A8|3|7| +22|2023-10-06T21:12:45.8860000-07:00|4002285A|Liturgic Bell|6508|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|179D0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||99.98|92.71|0.00|-3.14|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|000193A8|4|7| +22|2023-10-06T21:12:45.8860000-07:00|4002285A|Liturgic Bell|6508|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|17CA0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.04|89.13|0.00|3.12|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|000193A8|5|7| +22|2023-10-06T21:12:45.8860000-07:00|4002285A|Liturgic Bell|6508|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|200004|2A090000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|129239|142828|10000|10000|||91.01|83.67|0.00|3.08|77042|77042|10000|10000|||96.53|98.14|0.00|0.81|000193A8|6|7| +38|2023-10-06T21:12:45.8860000-07:00|400228A0||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:12:45.9290000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|712003|5BFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35413585|40478540|10000|10000|||100.00|80.10|0.00|0.00|129239|142828|10000|10000|||91.01|83.67|0.00|3.08|000193A9|0|1| +21|2023-10-06T21:12:46.0190000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35413585|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.07|87.19|0.00|3.13|000193AA|0|1| +21|2023-10-06T21:12:46.0190000-07:00|10FF0001|Sesuga Sapisuga|1CD6|Intervention|10FF0007|Kehabiqo Febiqo|EC0E|4960000|F60E|A730000|132F0E|A740000|0|0|0|0|0|0|0|0|0|0|129239|142828|10000|10000|||90.99|83.67|0.00|1.95|129071|129071|10000|10000|||112.99|86.59|0.00|-1.70|000193AB|0|1| +31|2023-10-06T21:12:46.0190000-07:00|10FF0001||||| +21|2023-10-06T21:12:46.0640000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32712003|38460000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|35413585|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000193AC|0|1| +37|2023-10-06T21:12:46.1090000-07:00|40022472|Zeromus|000193A6|35410661||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:46.1980000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|AA2|90216|90216|10000|10000|||100.07|87.19|0.00|3.13|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +38|2023-10-06T21:12:46.1980000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.07|87.19|0.00|3.13|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:12:45.7200000-07:00|Add|400228A0||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:12:45.7200000-07:00|400228A0|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14| +261|2023-10-06T21:12:45.8350000-07:00|Change|400228A0||| +24|2023-10-06T21:12:46.2420000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A3A|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +38|2023-10-06T21:12:46.2430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:46.3320000-07:00|40022472|Zeromus|000193A0|35393715||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:46.3320000-07:00|40022472|Zeromus|0001939F|35380807||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:46.3320000-07:00|40022472|Zeromus|000193A2|35355065||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:46.3320000-07:00|10FF0003|Gegehi Gehi|HoT|0|119C|73814|73814|8300|10000|||99.93|100.57|0.00|3.14|10FF0003|Gegehi Gehi|0|73814|73814|8300|10000|||99.93|100.57|0.00|3.14| +38|2023-10-06T21:12:46.3320000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8300|10000|0||99.93|100.57|0.00|3.14|0|0|0||||||||||||| +24|2023-10-06T21:12:46.3750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|10A3|81541|81541|8600|10000|||100.14|100.21|0.00|3.12|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +38|2023-10-06T21:12:46.3750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8600|10000|0||100.14|100.21|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:12:46.0560000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:12:46.4200000-07:00|40022892|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|10B60000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|35355065|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.69|102.09|0.00|3.14|000193AD|0|1| +37|2023-10-06T21:12:46.4660000-07:00|40022472|Zeromus|000193AC|35340659||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:46.4660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|119D|129239|142828|10000|10000|||90.99|83.67|0.00|1.95|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8600|10000|||100.15|100.14|0.00|3.07| +24|2023-10-06T21:12:46.4660000-07:00|10FF0006|Wowobora Gogobora|HoT|0|AC2|81809|81809|9700|10000|||100.05|92.06|0.00|-3.14|10FF0006|Wowobora Gogobora|0|81809|81809|9700|10000|||100.05|92.06|0.00|-3.14| +20|2023-10-06T21:12:46.4660000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|99.93|100.57|0.00|3.14| +38|2023-10-06T21:12:46.4660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|133748|142828|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:46.4660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||100.05|92.06|0.00|-3.14|0|0|0|||||||||| +261|2023-10-06T21:12:46.0560000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:12:46.5530000-07:00|40022472|Zeromus|000193A9|35317110||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:46.5530000-07:00|10FF0009|Zewo Negiwo|HoT|0|ADA|81177|81177|9384|10000|||100.72|102.43|0.00|-3.11|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +24|2023-10-06T21:12:46.5530000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A6F|129071|129071|10000|10000|||112.99|86.59|0.00|-1.70|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||112.99|86.59|0.00|-1.70| +38|2023-10-06T21:12:46.5530000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9384|10000|0||100.72|102.43|0.00|-3.11|0|0|0|||||||||| +38|2023-10-06T21:12:46.5530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||112.99|86.59|0.00|-1.70|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:12:46.6880000-07:00|10FF0006|Wowobora Gogobora|64E6|Rekindle|10FF0007|Kehabiqo Febiqo|4|2AD00000|4B102F0E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|133748|142828|10000|10000|||90.99|83.67|0.00|1.95|81809|81809|9700|10000|||100.05|92.06|0.00|-3.14|000193AE|0|1| +21|2023-10-06T21:12:46.6880000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35317110|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||100.17|100.00|0.00|2.95|000193AF|0|1| +21|2023-10-06T21:12:46.7320000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|335D0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35317110|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9384|10000|||100.72|102.43|0.00|-3.11|000193B0|0|1| +37|2023-10-06T21:12:46.7760000-07:00|40022472|Zeromus|000193AA|35313571||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:46.7760000-07:00|40022472|Zeromus|8B83|Dark Matter|40022472|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35317110|40478540|10000|10000|||100.00|80.10|0.00|0.00|35317110|40478540|10000|10000|||100.00|80.10|0.00|0.00|000193B1|0|1| +261|2023-10-06T21:12:46.3680000-07:00|Change|40022472||||| +37|2023-10-06T21:12:46.8210000-07:00|10FF0007|Kehabiqo Febiqo|000193AB|133748|142828|10000|10000|0||90.99|83.67|0.00|1.95|1500|0|0|03|05000496|0|41000000|||||||||| +26|2023-10-06T21:12:46.8210000-07:00|496|Intervention|8.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|142828|129071| +26|2023-10-06T21:12:46.8210000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|142828|129071| +26|2023-10-06T21:12:46.8210000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|142828|129071| +39|2023-10-06T21:12:46.8210000-07:00|4002285A|Liturgic Bell|77042|77042|10000|10000|||96.53|98.14|0.00|0.81| +21|2023-10-06T21:12:46.8210000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000193B2|0|1| +38|2023-10-06T21:12:46.8210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:46.8210000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +21|2023-10-06T21:12:46.8670000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|17220000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|133748|142828|10000|10000|||90.99|83.67|0.00|1.95|73956|77430|10000|10000|||99.78|95.75|0.00|-3.13|000193B3|0|1| +22|2023-10-06T21:12:46.8670000-07:00|400228A0|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.05|92.06|0.00|-2.94|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14|000193B4|0|8| +22|2023-10-06T21:12:46.8670000-07:00|400228A0|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8600|10000|||100.17|99.91|-0.01|2.87|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14|000193B4|1|8| +22|2023-10-06T21:12:46.8670000-07:00|400228A0|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8300|10000|||99.93|100.57|0.00|3.14|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14|000193B4|2|8| +22|2023-10-06T21:12:46.8670000-07:00|400228A0|Demi-Phoenix|4085|Everlasting Flight|10FF000A|Dukaro Nezikaro|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14|000193B4|3|8| +22|2023-10-06T21:12:46.8670000-07:00|400228A0|Demi-Phoenix|4085|Everlasting Flight|10FF0009|Zewo Negiwo|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|8984|10000|||100.72|102.43|0.00|-3.11|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14|000193B4|4|8| +22|2023-10-06T21:12:46.8670000-07:00|400228A0|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.11|84.88|0.00|3.13|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14|000193B4|5|8| +22|2023-10-06T21:12:46.8670000-07:00|400228A0|Demi-Phoenix|4085|Everlasting Flight|10FF0001|Sesuga Sapisuga|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||112.99|86.59|0.00|-1.70|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14|000193B4|6|8| +22|2023-10-06T21:12:46.8670000-07:00|400228A0|Demi-Phoenix|4085|Everlasting Flight|10FF0007|Kehabiqo Febiqo|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|133748|142828|10000|10000|||90.99|83.67|0.00|1.95|74223|77698|10000|10000|||101.83|93.82|0.00|-3.14|000193B4|7|8| +261|2023-10-06T21:12:46.4620000-07:00|Change|400228A0||| +261|2023-10-06T21:12:46.4620000-07:00|Change|4002285A||| +21|2023-10-06T21:12:47.0890000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|726003|CFD50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35313571|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|-0.02|3.13|000193B5|0|1| +38|2023-10-06T21:12:47.0890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.11|84.73|-0.02|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:47.0890000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:12:47.1320000-07:00|10FF0007|Kehabiqo Febiqo|000193A8|142828||||||90.99|83.67|0.00|1.95| +37|2023-10-06T21:12:47.1770000-07:00|40022472|Zeromus|000193AD|35309293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:47.2220000-07:00|40022472|Zeromus|000193AF|35309036||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:47.3120000-07:00|40022892|Automaton Queen|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06| +21|2023-10-06T21:12:47.4450000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35309036|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000193B6|0|1| +261|2023-10-06T21:12:47.0170000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:12:47.4890000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0001|Sesuga Sapisuga|6400F60E|7420000|F60E|A770000|CB0E|A780000|90A3000F|7418000|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|142828|142828|10000|10000|||90.99|83.67|0.00|1.95|000193B7|0|1| +21|2023-10-06T21:12:47.4890000-07:00|10FF0009|Zewo Negiwo|1D08|Divine Benison|10FF0001|Sesuga Sapisuga|E90E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|81177|81177|8984|10000|||100.72|102.43|0.00|-3.11|000193B8|0|1| +39|2023-10-06T21:12:47.5340000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|-2.54| +21|2023-10-06T21:12:47.5340000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|716003|29890000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|35309036|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|000193B9|0|1| +20|2023-10-06T21:12:47.5340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.18|99.90|0.00|2.87| +261|2023-10-06T21:12:47.1340000-07:00|Change|40022490||||||||| +261|2023-10-06T21:12:47.1340000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:12:47.1340000-07:00|Change|4002248F||||||||| +21|2023-10-06T21:12:47.5790000-07:00|4002248F|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750003|71180000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||112.99|86.59|0.00|-2.03|44|44|0|10000|||100.00|100.00|0.00|0.00|000193BA|0|1| +21|2023-10-06T21:12:47.5790000-07:00|40022490|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|4EAE0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|142828|142828|10000|10000|||90.99|83.67|0.00|1.84|44|44|0|10000|||100.00|100.00|0.00|0.00|000193BB|0|1| +261|2023-10-06T21:12:47.1340000-07:00|Change|10FF0009||||||| +21|2023-10-06T21:12:47.6240000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193BC|0|1| +38|2023-10-06T21:12:47.6240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.11|84.73|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:12:47.6240000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +261|2023-10-06T21:12:47.2330000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:12:47.7130000-07:00|10FF0007|Kehabiqo Febiqo|000193AE|142828|142828|10000|10000|0||90.99|83.67|0.00|1.71|1500|0|0|01|0B000A90|4B|41F00000|| +26|2023-10-06T21:12:47.7130000-07:00|A90|Rekindle|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|4B|142828|81809| +39|2023-10-06T21:12:47.7130000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12| +39|2023-10-06T21:12:47.7570000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T21:12:47.7570000-07:00|40022472|Zeromus|DoT|0|202D|35309036|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|8984|10000|||100.72|102.43|0.00|2.92| +38|2023-10-06T21:12:47.7570000-07:00|40022472|Zeromus|005A5A00|35300799|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:12:47.8010000-07:00|10FF0006|Wowobora Gogobora|000193B4|81809|81809|9700|10000|0||100.45|88.71|0.00|3.07|1B00|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T21:12:47.8010000-07:00|74C|Everlasting Flight|21.00|400228A0|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T21:12:47.8010000-07:00|10FF000A|Dukaro Nezikaro|000193B2|82773|82773|10000|10000|0||99.96|101.30|0.00|3.14|1E00|0|0|01|030001F1|0|41700000|| +39|2023-10-06T21:12:47.8010000-07:00|10FF0003|Gegehi Gehi|73814|73814|8500|10000|||99.93|100.57|0.00|3.14| +38|2023-10-06T21:12:47.8010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:12:47.4200000-07:00|Change|10FF0003||||| +21|2023-10-06T21:12:47.8460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35300799|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||112.96|86.54|0.00|-2.53|000193BD|0|1| +36|2023-10-06T21:12:47.8460000-07:00|19F0|3| +31|2023-10-06T21:12:47.8460000-07:00|10FF0001||||| +261|2023-10-06T21:12:47.4200000-07:00|Change|4002287B||||||||| +39|2023-10-06T21:12:47.8910000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8800|10000|||100.18|99.90|0.00|3.08| +21|2023-10-06T21:12:47.8910000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|152003|51430000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|35300799|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8500|10000|||99.93|100.57|0.00|3.14|000193BE|0|1| +38|2023-10-06T21:12:47.8910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8300|10000|0||99.93|100.57|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:12:47.8910000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:12:47.8910000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:12:47.9340000-07:00|10FF0004|Buhojaqe Zijaqe|000193B4|81541|81541|8800|10000|0||100.18|99.90|0.00|3.08|1C01|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T21:12:47.9340000-07:00|74C|Everlasting Flight|21.00|400228A0|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|77698| +37|2023-10-06T21:12:47.9790000-07:00|40022472|Zeromus|000193B6|35298619||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:47.9790000-07:00|40022892|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|103E0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|35300799|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06|000193BF|0|1| +39|2023-10-06T21:12:47.9790000-07:00|10FF0007|Kehabiqo Febiqo|142828|142828|10000|10000|||90.99|83.67|0.00|1.48| +39|2023-10-06T21:12:47.9790000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.57|88.01|0.00|3.04| +21|2023-10-06T21:12:47.9790000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|1350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35300799|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.57|88.01|0.00|3.04|000193C0|0|1| +261|2023-10-06T21:12:47.6130000-07:00|Change|10FF0004||||||| +37|2023-10-06T21:12:48.0230000-07:00|40022472|Zeromus|000193B0|35285470||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:48.0230000-07:00|10FF0009|Zewo Negiwo|81177|81177|9205|10000|||100.72|102.43|0.00|2.49| +37|2023-10-06T21:12:48.0680000-07:00|10FF0003|Gegehi Gehi|000193B4|73814|73814|8300|10000|0||99.93|100.57|0.00|3.14|2302|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T21:12:48.0680000-07:00|74C|Everlasting Flight|21.00|400228A0|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73814|77698| +39|2023-10-06T21:12:48.0680000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||112.14|85.32|0.00|-2.57| +38|2023-10-06T21:12:48.0680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|0||90.99|83.67|0.00|1.44|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:48.0680000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|142828|77430| +37|2023-10-06T21:12:48.1130000-07:00|10FF0001|Sesuga Sapisuga|000193B7|129071|129071|10000|10000|12||112.14|85.32|0.00|-2.57|1300|0|0|03|03000742|64|41000000|||||||||| +26|2023-10-06T21:12:48.1130000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|129071|142828| +26|2023-10-06T21:12:48.1130000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|142828| +26|2023-10-06T21:12:48.1130000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|142828| +37|2023-10-06T21:12:48.1130000-07:00|10FF0007|Kehabiqo Febiqo|000193B7|142828|142828|10000|10000|0||90.99|83.67|0.00|1.44|1500|0|0|01|08000741|0190|41000000|| +26|2023-10-06T21:12:48.1130000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|142828|142828| +38|2023-10-06T21:12:48.1130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|12||112.14|85.32|0.00|-2.57|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:12:48.1570000-07:00|40022472|Zeromus|000193B9|35274837||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:48.2020000-07:00|10FF0001|Sesuga Sapisuga|000193BA|100119||||||112.04|85.11|0.00|-2.67| +37|2023-10-06T21:12:48.2020000-07:00|10FF0007|Kehabiqo Febiqo|000193BB|122686||||||90.99|83.67|0.00|1.44| +37|2023-10-06T21:12:48.2020000-07:00|10FF000A|Dukaro Nezikaro|000193B4|82773|82773|10000|10000|0||99.96|101.30|0.00|3.14|1E03|0|0|01|0500074C|0|41A80000|| +26|2023-10-06T21:12:48.2020000-07:00|74C|Everlasting Flight|21.00|400228A0|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|82773|77698| +20|2023-10-06T21:12:48.2020000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|2.49| +38|2023-10-06T21:12:48.2020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||100.18|99.90|0.00|-3.13|0|0|0||||||||||||| +30|2023-10-06T21:12:48.2020000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:12:48.2460000-07:00|40022472|Zeromus|000193B5|35221632||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:48.2900000-07:00|10FF0001|Sesuga Sapisuga|000193B8|100119|129071|10000|10000|25||112.04|85.11|0.00|-2.67|1300|0|0|01|090004C2|0|41700000|| +26|2023-10-06T21:12:48.2900000-07:00|4C2|Divine Benison|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:12:48.2900000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35274837|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193C1|0|1| +38|2023-10-06T21:12:48.2900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|100119|129071|10000|10000|25||112.04|85.11|0.00|-2.67|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:48.3350000-07:00|10FF0009|Zewo Negiwo|000193B4|81177|81177|9205|10000|0||100.72|102.43|0.00|2.49|1804|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T21:12:48.3350000-07:00|74C|Everlasting Flight|21.00|400228A0|Demi-Phoenix|10FF0009|Zewo Negiwo|00|81177|77698| +21|2023-10-06T21:12:48.3350000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|53F40000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|35274837|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.82|85.71|0.00|3.03|000193C2|0|1| +21|2023-10-06T21:12:48.3350000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|2E400000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|35274837|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.96|101.30|0.00|3.14|000193C3|0|1| +38|2023-10-06T21:12:48.3350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|100119|129071|10000|10000|25||112.04|85.11|0.00|-2.67|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:48.3350000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:12:48.3790000-07:00|40022472|Zeromus|000193BD|35218863||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:48.3790000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F714003|3B5B0000|143E|340000|204|26E88000|4|1A2C8000|11B|2A8000|0|0|0|0|0|0|35221632|40478540|10000|10000|||100.00|80.10|0.00|0.00|122686|142828|10000|10000|||90.99|83.67|0.00|1.44|000193C4|0|1| +37|2023-10-06T21:12:48.4690000-07:00|10FF0008|Kokosaze Lulusaze|000193B4|90216|90216|10000|10000|0||100.11|84.73|0.00|-3.12|1F05|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T21:12:48.4690000-07:00|74C|Everlasting Flight|21.00|400228A0|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|77698| +21|2023-10-06T21:12:48.4690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32560000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35221632|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8800|10000|||100.18|99.90|0.00|-3.13|000193C5|0|1| +38|2023-10-06T21:12:48.4690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.11|84.73|0.00|-3.12|0|0|0||||||||||||| +30|2023-10-06T21:12:48.4690000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:12:48.5130000-07:00|40022472|Zeromus|000193C0|35218554||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:48.0660000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:12:48.1860000-07:00|Change|10FF0009||||||||||||||||| +37|2023-10-06T21:12:48.6020000-07:00|10FF0001|Sesuga Sapisuga|000193B4|100119|129071|10000|10000|25||111.83|84.69|0.00|-2.71|1306|0|0|01|0700074C|0|41A80000|| +26|2023-10-06T21:12:48.6020000-07:00|74C|Everlasting Flight|21.00|400228A0|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|77698| +38|2023-10-06T21:12:48.6020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.96|101.30|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:12:48.6020000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +261|2023-10-06T21:12:48.2810000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:12:48.6910000-07:00|40022472|Zeromus|000193BE|35197751||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:48.6910000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BD60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35218554|40478540|10000|10000|||100.00|80.10|0.00|0.00|122686|142828|10000|10000|||90.99|83.67|0.00|1.95|000193C6|0|1| +21|2023-10-06T21:12:48.6910000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35218554|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193C7|0|1| +37|2023-10-06T21:12:48.7370000-07:00|40022472|Zeromus|000193BF|35193593||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:48.7370000-07:00|10FF0007|Kehabiqo Febiqo|000193B4|122686|142828|10000|10000|0||90.99|83.67|0.00|1.95|1507|0|0|01|0C00074C|0|41A80000|| +26|2023-10-06T21:12:48.7370000-07:00|74C|Everlasting Flight|21.00|400228A0|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|142828|77698| +38|2023-10-06T21:12:48.7370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122686|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:48.7370000-07:00|A96|Protraction|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|142828|81541| +38|2023-10-06T21:12:48.7370000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|0||100.39|83.81|0.00|-2.98|0|0|0|||||||||| +30|2023-10-06T21:12:48.7370000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +261|2023-10-06T21:12:48.3720000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:12:48.8700000-07:00|40022472|Zeromus|000193C3|35181753||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:48.8710000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9205|10000|0||100.72|102.43|0.00|-3.11|0|0|0||||||||||||| +30|2023-10-06T21:12:48.8710000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +21|2023-10-06T21:12:48.9150000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|366B0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|35193593|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8300|10000|||99.89|97.98|0.00|-3.12|000193C8|0|1| +38|2023-10-06T21:12:48.9150000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8000|10000|0||99.89|97.98|0.00|-3.12|0|0|0||||||||||||| +30|2023-10-06T21:12:48.9150000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:12:48.9600000-07:00|400228A0|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|150003|13E40000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|35193593|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.24|90.90|0.00|-3.02|000193C9|0|1| +261|2023-10-06T21:12:48.4620000-07:00|Change|400228A0||||||||| +261|2023-10-06T21:12:48.5580000-07:00|Change|10FF0004||||||||||||||| +38|2023-10-06T21:12:49.0040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8000|10000|0||99.87|97.87|0.00|3.13|0|0|0||||||||||||| +30|2023-10-06T21:12:49.0040000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T21:12:49.0920000-07:00|40022472|Zeromus|000193C1|35176580||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:49.1380000-07:00|4002248F|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|0|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|100119|129071|10000|10000|||111.83|84.69|0.00|-2.71|44|44|0|10000|||100.00|100.00|0.00|0.00|000193CA|0|1| +21|2023-10-06T21:12:49.1380000-07:00|40022490|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|50280000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|122686|129844|10000|10000|||90.99|83.67|0.00|1.95|44|44|0|10000|||100.00|100.00|0.00|0.00|000193CB|0|1| +21|2023-10-06T21:12:49.1380000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|34190000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35181753|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9205|10000|||100.72|102.43|0.00|-3.11|000193CC|0|1| +261|2023-10-06T21:12:48.8840000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:12:49.2280000-07:00|40022472|Zeromus|000193C6|35173550||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:49.2280000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|796|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:49.2280000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.11|84.73|0.00|-3.12|0|0|0||||||||||||| +37|2023-10-06T21:12:49.2720000-07:00|40022472|Zeromus|000193C5|35160664||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:49.2720000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|75C|82773|82773|10000|10000|||99.96|101.26|0.00|-3.13|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||99.96|101.26|0.00|-3.13| +38|2023-10-06T21:12:49.2720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.96|101.26|0.00|-3.13|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:12:49.3170000-07:00|10FF0003|Gegehi Gehi|HoT|0|7AE|73814|73814|8000|10000|||99.87|97.65|0.00|3.13|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:49.3170000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8000|10000|0||99.87|97.65|0.00|3.13|0|0|0||||||||||||| +37|2023-10-06T21:12:49.4060000-07:00|40022472|Zeromus|000193C2|35139172||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:49.4070000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7B1|81541|81541|8400|10000|||100.14|98.86|0.00|-3.13|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:49.4070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|0||100.14|98.86|0.00|-3.13|0|0|0||||||||||||| +37|2023-10-06T21:12:49.4500000-07:00|40022472|Zeromus|000193C7|35135503||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:49.4950000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|215A|122686|129844|10000|10000|||90.99|83.67|0.00|1.95|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +24|2023-10-06T21:12:49.4950000-07:00|10FF0006|Wowobora Gogobora|HoT|0|79E|81809|81809|9600|10000|||100.27|83.45|0.00|-3.01|10FF0006|Wowobora Gogobora|0|81809|81809|9600|10000|||100.27|83.45|0.00|-3.01| +38|2023-10-06T21:12:49.4950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:49.4950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|0||100.27|83.45|0.00|-3.01|0|0|0|||||||||| +21|2023-10-06T21:12:49.5400000-07:00|40022892|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|10590000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|35160664|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06|000193CD|0|1| +24|2023-10-06T21:12:49.5400000-07:00|10FF0009|Zewo Negiwo|HoT|0|771|81177|81177|8805|10000|||100.72|102.43|0.00|-3.11|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:49.5400000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8805|10000|0||100.72|102.43|0.00|-3.11|0|0|0||||||||||||| +24|2023-10-06T21:12:49.5850000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|773|100119|129071|10000|10000|||111.83|84.69|0.00|-2.71|10FF0009|Zewo Negiwo|0|81177|81177|8805|10000|||100.72|102.43|0.00|-3.11| +38|2023-10-06T21:12:49.5850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102026|129071|10000|10000|25||111.83|84.69|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:49.6300000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:12:49.6300000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35135503|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193CE|0|1| +21|2023-10-06T21:12:49.6300000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35135503|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.92|99.13|0.00|-3.13|000193CF|0|1| +37|2023-10-06T21:12:49.6730000-07:00|40022472|Zeromus|000193C8|35121572||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:49.2200000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:12:49.7630000-07:00|10FF0001|Sesuga Sapisuga|000193CA|102026|129071|10000|10000|7||111.83|84.69|0.00|-2.71|1300|0|0|01|06000000|0|0|| +37|2023-10-06T21:12:49.7630000-07:00|10FF0007|Kehabiqo Febiqo|000193CB|109324||||||90.99|83.67|0.00|1.95| +21|2023-10-06T21:12:49.7640000-07:00|10FF0009|Zewo Negiwo|6505|Aquaveil|10FF0007|Kehabiqo Febiqo|F10E|A940000|1B|65058000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.99|83.67|0.00|1.95|81177|81177|8805|10000|||100.72|102.43|0.00|-3.11|000193D0|0|1| +38|2023-10-06T21:12:49.7640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102026|129071|10000|10000|7||111.83|84.69|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:49.7640000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +04|2023-10-06T21:12:49.3190000-07:00|4002287B|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||101.18|94.77|0.00|3.11| +261|2023-10-06T21:12:49.3190000-07:00|Remove|4002287B| +21|2023-10-06T21:12:49.8530000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35121572|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8000|10000|||99.80|94.84|0.00|-3.12|000193D1|0|1| +261|2023-10-06T21:12:49.4100000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:12:49.8980000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|26E8|102026|129071|10000|10000|||111.83|84.69|0.00|-2.71|10FF0007|Kehabiqo Febiqo|0|109324|129844|10000|10000|||90.99|83.67|0.00|1.95| +37|2023-10-06T21:12:49.8980000-07:00|40022472|Zeromus|000193C4|35106377||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:49.8980000-07:00|10FF0007|Kehabiqo Febiqo|000193C4|125984||||||90.99|83.67|0.00|1.95| +20|2023-10-06T21:12:49.8980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.14|98.36|0.00|3.06| +38|2023-10-06T21:12:49.8980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111986|129071|10000|10000|7||111.83|84.69|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:49.9860000-07:00|40022472|Zeromus|000193C9|35101285||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:50.0310000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35714003|26F30000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|35101285|40478540|10000|10000|||100.00|80.10|0.00|0.00|111986|129071|10000|10000|||111.83|84.69|0.00|-1.94|000193D2|0|1| +21|2023-10-06T21:12:50.1200000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|67D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35101285|40478540|10000|10000|||100.00|80.10|0.00|0.00|111986|129071|10000|10000|||111.83|84.69|0.00|-1.94|000193D3|0|1| +31|2023-10-06T21:12:50.1200000-07:00|10FF0001||||| +37|2023-10-06T21:12:50.1640000-07:00|40022472|Zeromus|000193CF|35098639||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:50.1640000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21F10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|125984|129844|10000|10000|||90.99|83.67|0.00|1.95|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|000193D4|0|1| +21|2023-10-06T21:12:50.1640000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|204F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35101285|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193D5|0|1| +261|2023-10-06T21:12:49.7060000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:12:50.2530000-07:00|40022472|Zeromus|000193CE|35089928||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:50.2970000-07:00|40022472|Zeromus|000193CD|35085743||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:50.2970000-07:00|40022892|Automaton Queen|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06| +261|2023-10-06T21:12:49.9310000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:12:50.3850000-07:00|10FF0007|Kehabiqo Febiqo|000193D0|125984|129844|10000|10000|0||90.99|83.67|0.00|1.95|1500|0|0|01|09000A94|0|41000000|| +26|2023-10-06T21:12:50.3850000-07:00|A94|Aquaveil|8.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:12:50.3850000-07:00|40022472|Zeromus|000193D1|35085706||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:50.4310000-07:00|40022472|Zeromus|000193CC|35072369||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:50.5200000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|-2.72| +04|2023-10-06T21:12:50.0470000-07:00|4002285A|Liturgic Bell|00|5A|10FF0009|00||10349|13961|0|77042|0|10000|||96.53|98.14|0.00|0.81| +38|2023-10-06T21:12:50.5200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125984|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:50.5200000-07:00|59|Vengeance|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|129844|129844| +261|2023-10-06T21:12:50.0470000-07:00|Remove|4002285A| +261|2023-10-06T21:12:50.1570000-07:00|Change|10FF0003||||||||| +20|2023-10-06T21:12:50.6090000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-2.66| +21|2023-10-06T21:12:50.6090000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1DAE0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|35072369|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.68|92.71|0.00|-3.13|000193D6|0|1| +38|2023-10-06T21:12:50.6090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125984|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:50.6090000-07:00|4A7|Rampart|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:12:50.6540000-07:00|40022472|Zeromus|000193D3|35070708||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:50.2570000-07:00|Change|10FF0009||||||||||||||||||| +21|2023-10-06T21:12:50.6970000-07:00|4002248F|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|3C2E0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|111986|129071|10000|10000|||111.83|84.69|0.00|-1.94|44|44|0|10000|||100.00|100.00|0.00|0.00|000193D7|0|1| +21|2023-10-06T21:12:50.6980000-07:00|40022490|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|7F480000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|125984|129844|10000|10000|||90.99|83.67|0.00|1.95|44|44|0|10000|||100.00|100.00|0.00|0.00|000193D8|0|1| +39|2023-10-06T21:12:50.6980000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12| +39|2023-10-06T21:12:50.7430000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.81|91.39|0.00|-3.11| +24|2023-10-06T21:12:50.7430000-07:00|40022472|Zeromus|DoT|0|1F4F|35070708|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|8805|10000|||100.72|102.43|0.00|-2.74| +38|2023-10-06T21:12:50.7430000-07:00|40022472|Zeromus|005A5A00|35062693|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:12:50.7880000-07:00|40022472|Zeromus|000193D5|35054422||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:50.7880000-07:00|40022472|Zeromus|000193D2|35044451||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:50.7880000-07:00|10FF0003|Gegehi Gehi|73814|73814|8200|10000|||99.63|89.12|0.00|-3.11| +21|2023-10-06T21:12:50.7880000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|152003|8F500000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|35070708|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.27|83.45|0.00|-3.01|000193D9|0|1| +21|2023-10-06T21:12:50.7880000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|111986|129071|10000|10000|||111.83|84.69|0.00|-1.94|111986|129071|10000|10000|||111.83|84.69|0.00|-1.94|000193DA|0|1| +38|2023-10-06T21:12:50.7880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125984|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:50.7880000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +261|2023-10-06T21:12:50.3550000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:12:50.8310000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|396C0000|204|269A8000|0|0|0|0|0|0|0|0|0|0|0|0|35044451|40478540|10000|10000|||100.00|80.10|0.00|0.00|125984|129844|10000|10000|||90.99|83.67|0.00|1.95|000193DB|0|1| +21|2023-10-06T21:12:50.8310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33BF0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35044451|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||100.14|98.10|0.00|-3.13|000193DC|0|1| +39|2023-10-06T21:12:50.8770000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8200|10000|||100.14|98.10|0.00|-3.13| +36|2023-10-06T21:12:50.8770000-07:00|1ACC|3| +37|2023-10-06T21:12:50.9660000-07:00|10FF0007|Kehabiqo Febiqo|000193D4|129844||||||90.99|83.67|0.00|1.95| +39|2023-10-06T21:12:50.9660000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||90.99|83.67|0.00|1.95| +39|2023-10-06T21:12:50.9660000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||100.27|83.45|0.00|-3.06| +37|2023-10-06T21:12:51.0100000-07:00|40022472|Zeromus|000193D6|35036853||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:51.0540000-07:00|10FF0009|Zewo Negiwo|81177|81177|9026|10000|||100.72|102.43|0.00|-3.06| +39|2023-10-06T21:12:51.0540000-07:00|10FF0001|Sesuga Sapisuga|113276|129071|10000|10000|||111.83|84.69|0.00|-1.94| +21|2023-10-06T21:12:51.0990000-07:00|40022892|Automaton Queen|4078|Arm Punch|40022472|Zeromus|734003|14980000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|35036853|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06|000193DD|0|1| +26|2023-10-06T21:12:51.0990000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:12:51.0990000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|286F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35036853|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193DE|0|1| +21|2023-10-06T21:12:51.0990000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35036853|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||100.27|83.45|0.00|-3.06|000193DF|0|1| +37|2023-10-06T21:12:51.3220000-07:00|10FF0001|Sesuga Sapisuga|000193D7|97870|129071|10000|10000|0||111.83|84.69|0.00|-1.94|1300|0|0|01|09000000|0|0|| +37|2023-10-06T21:12:51.3220000-07:00|10FF0007|Kehabiqo Febiqo|000193D8|97260|129844|10000|10000|0||90.99|83.67|0.00|1.95|1500|0|0|01|0B000A90|4B|0|| +20|2023-10-06T21:12:51.3220000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|99.60|88.15|0.00|-3.11| +38|2023-10-06T21:12:51.3220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|97260|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:51.3220000-07:00|A91|Undying Flame|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +30|2023-10-06T21:12:51.3220000-07:00|A90|Rekindle|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|4B|129844|81809| +38|2023-10-06T21:12:51.3220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|97870|129071|10000|10000|0||111.83|84.69|0.00|-1.94|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:51.3220000-07:00|4C2|Divine Benison|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +261|2023-10-06T21:12:50.8930000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:12:50.8930000-07:00|Change|10FF0006||| +21|2023-10-06T21:12:51.3670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35036853|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193E0|0|1| +37|2023-10-06T21:12:51.4120000-07:00|10FF0001|Sesuga Sapisuga|000193DA|97870|129071|10000|10000|0||111.83|84.69|0.00|-1.94|1300|0|0|01|0600004C|0|41A00000|| +26|2023-10-06T21:12:51.4120000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:12:51.4120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|97870|129071|10000|10000|0||111.83|84.69|0.00|-1.94|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:51.4120000-07:00|4A7|Rampart|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:12:51.0060000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T21:12:51.4580000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|269A|97870|129071|10000|10000|||111.83|84.69|0.00|-1.94|10FF0007|Kehabiqo Febiqo|0|97260|129844|10000|10000|||90.99|83.67|0.00|1.95| +37|2023-10-06T21:12:51.4580000-07:00|40022472|Zeromus|000193DB|35022153||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:51.4580000-07:00|10FF0007|Kehabiqo Febiqo|000193DB|107142||||||90.99|83.67|0.00|1.95| +21|2023-10-06T21:12:51.4580000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2C9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35036853|40478540|10000|10000|||100.00|80.10|0.00|0.00|97260|129844|10000|10000|||90.99|83.67|0.00|1.95|000193E1|0|1| +21|2023-10-06T21:12:51.4580000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|750003|28330000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|35036853|40478540|10000|10000|||100.00|80.10|0.00|0.00|97870|129071|10000|10000|||111.83|84.69|0.00|-1.94|000193E2|0|1| +38|2023-10-06T21:12:51.4580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|107752|129071|10000|10000|0||111.83|84.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:51.4580000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:12:51.4580000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:12:51.1200000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T21:12:51.5460000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|30690000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35022153|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9026|10000|||100.72|102.43|0.00|-3.11|000193E3|0|1| +37|2023-10-06T21:12:51.6340000-07:00|40022472|Zeromus|000193DF|35021960||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:51.6340000-07:00|40022472|Zeromus|000193DC|35008713||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:51.6340000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|17BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35022153|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193E4|0|1| +261|2023-10-06T21:12:51.2150000-07:00|Change|10FF0009||||||||||||||||| +37|2023-10-06T21:12:51.7230000-07:00|40022472|Zeromus|000193DE|34998362||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:51.7670000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35008713|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||100.12|95.73|0.00|-3.14|000193E5|0|1| +21|2023-10-06T21:12:51.8110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|83F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34998362|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.22|86.04|0.00|-3.07|000193E6|0|1| +37|2023-10-06T21:12:51.8560000-07:00|40022472|Zeromus|000193DD|34993090||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:51.8560000-07:00|40022472|Zeromus|000193D9|34956402||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:51.8560000-07:00|400228A0|Demi-Phoenix|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:12:52.0790000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34956402|40478540|10000|10000|||100.00|80.10|0.00|0.00|107142|129844|10000|10000|||90.99|83.67|0.00|1.95|000193E7|0|1| +38|2023-10-06T21:12:52.0790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|107752|129071|10000|10000|0||111.83|84.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:52.0790000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +37|2023-10-06T21:12:52.1240000-07:00|40022472|Zeromus|000193E1|34944983||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:52.1240000-07:00|40022472|Zeromus|000193E0|34941097||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:52.1240000-07:00|40022472|Zeromus|000193E2|34930806||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:52.1240000-07:00|10FF0001|Sesuga Sapisuga|000193E2|107752|129071|10000|10000|0||111.83|84.69|0.00|-1.94|1300|0|0|02|02000558|04|41F00000|||||| +21|2023-10-06T21:12:52.1240000-07:00|400228A0|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|154003|181B0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34956402|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93|000193E8|0|1| +38|2023-10-06T21:12:52.1240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|107752|129071|10000|10000|0||111.83|84.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:12:52.2120000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|76A|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:52.2120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.11|84.73|0.00|-3.12|0|0|0||||||||||||| +24|2023-10-06T21:12:52.2580000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|C08|82773|82773|10000|10000|||100.02|84.43|0.00|-3.00|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||100.02|84.43|0.00|-3.00| +38|2023-10-06T21:12:52.2580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:12:52.3020000-07:00|40022472|Zeromus|000193E5|34930651||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:52.3020000-07:00|10FF0003|Gegehi Gehi|HoT|0|BC7|73814|73814|8200|10000|||99.60|88.15|0.00|3.09|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +20|2023-10-06T21:12:52.3020000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.11|93.89|0.00|3.14| +38|2023-10-06T21:12:52.3020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8200|10000|0||99.60|88.15|0.00|3.09|0|0|0||||||||||||| +37|2023-10-06T21:12:52.3470000-07:00|40022472|Zeromus|000193E6|34928540||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:52.3900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|C5F|81541|81541|8200|10000|||100.11|93.75|-0.02|3.13|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:12:52.3900000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|107142|129844|10000|10000|||90.99|83.67|0.00|1.95|107142|129844|10000|10000|||90.99|83.67|0.00|1.95|000193E9|0|1| +21|2023-10-06T21:12:52.3900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|DB60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34930651|40478540|10000|10000|||100.00|80.10|0.00|0.00|107752|129071|10000|10000|||111.83|84.69|0.00|-1.94|000193EA|0|1| +38|2023-10-06T21:12:52.3900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107142|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:52.3900000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:12:52.3900000-07:00|A75|Surging Tempest|18.47|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:12:52.3900000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:12:52.3900000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:12:52.3900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|0||100.11|93.75|-0.02|3.13|0|0|0||||||||||||| +31|2023-10-06T21:12:52.3900000-07:00|10FF0001||||| +261|2023-10-06T21:12:51.9330000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:12:52.4360000-07:00|40022472|Zeromus|000193E4|34922462||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:52.4790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3704|107142|129844|10000|10000|||90.99|83.67|0.00|1.95|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +24|2023-10-06T21:12:52.4790000-07:00|10FF0006|Wowobora Gogobora|HoT|0|BD1|81809|81809|9500|10000|||100.26|83.46|0.00|-2.31|10FF0006|Wowobora Gogobora|0|81809|81809|9500|10000|||100.26|83.46|0.00|-2.31| +38|2023-10-06T21:12:52.4790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121226|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:52.4790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|0||100.26|83.46|0.00|-2.31|0|0|0|||||||||| +24|2023-10-06T21:12:52.5240000-07:00|10FF0009|Zewo Negiwo|HoT|0|CDB|81177|81177|8626|10000|||100.72|102.43|0.00|-3.11|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:12:52.5240000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|714003|69550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34928540|40478540|10000|10000|||100.00|80.10|0.00|0.00|107752|129071|10000|10000|||111.83|84.69|0.00|-1.94|000193EB|0|1| +38|2023-10-06T21:12:52.5240000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8626|10000|0||100.72|102.43|0.00|-3.11|0|0|0||||||||||||| +24|2023-10-06T21:12:52.5690000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7E7|107752|129071|10000|10000|||111.83|84.69|0.00|-1.94|10FF0001|Sesuga Sapisuga|0|107752|129071|10000|10000|||111.83|84.69|0.00|-1.94| +26|2023-10-06T21:12:52.5690000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:12:52.5690000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|36D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34922462|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193EC|0|1| +38|2023-10-06T21:12:52.5690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109775|129071|10000|10000|0||111.83|84.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:52.6130000-07:00|40022472|Zeromus|000193E7|34919597||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:52.6130000-07:00|10FF0007|Kehabiqo Febiqo|000193E7|121226|129844|10000|10000|0||90.99|83.67|0.00|1.95|1500|0|0|03|04000499|03|C1700000|||||||||| +21|2023-10-06T21:12:52.6590000-07:00|40022892|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|1BE00000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|34922462|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06|000193ED|0|1| +21|2023-10-06T21:12:52.7470000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|2C830000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|34919597|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8200|10000|||99.60|88.15|0.00|3.09|000193EE|0|1| +38|2023-10-06T21:12:52.7470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8000|10000|0||99.60|88.15|0.00|3.09|0|0|0||||||||||||| +26|2023-10-06T21:12:52.7470000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:12:52.2470000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T21:12:52.8360000-07:00|40022472|Zeromus|000193E3|34907204||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:52.8360000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2D410000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|121226|129844|10000|10000|||90.99|83.67|0.00|1.95|34919597|40478540|10000|10000|||100.00|80.10|0.00|0.00|000193EF|0|1| +21|2023-10-06T21:12:52.8360000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32716003|47630000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|34919597|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|84.43|0.00|-3.00|000193F0|0|1| +37|2023-10-06T21:12:52.9260000-07:00|40022472|Zeromus|000193EA|34903694||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:53.0140000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +261|2023-10-06T21:12:52.5350000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:12:53.0590000-07:00|40022472|Zeromus|000193EB|34876729||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:53.1490000-07:00|10FF0007|Kehabiqo Febiqo|000193E9|121226|129844|10000|10000|0||90.99|83.67|0.00|1.95|1500|0|0|03|04000499|03|41700000|||||||||| +37|2023-10-06T21:12:53.1490000-07:00|40022472|Zeromus|000193E8|34870558||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:53.1490000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34876729|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193F1|0|1| +38|2023-10-06T21:12:53.1490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121226|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:12:53.1920000-07:00|40022472|Zeromus|000193EC|34856524||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:53.2380000-07:00|40022472|Zeromus|000193F0|34838249||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:53.2380000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|712003|1BD60000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|34856524|40478540|10000|10000|||100.00|80.10|0.00|0.00|109775|129071|10000|10000|||111.83|84.69|0.00|-1.94|000193F2|0|1| +21|2023-10-06T21:12:53.2380000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|537F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34856524|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||100.11|93.68|0.00|-3.13|000193F3|0|1| +38|2023-10-06T21:12:53.2820000-07:00|40022892|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.67|102.07|0.00|-3.06|0|0|0||||||| +26|2023-10-06T21:12:53.2820000-07:00|30|Well Fed|1692.96|10FF0008|Kokosaze Lulusaze|40022892|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:12:53.2820000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022892|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:12:53.2820000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7BBC0000|200204|3C478000|0|0|0|0|0|0|0|0|0|0|0|0|34856524|40478540|10000|10000|||100.00|80.10|0.00|0.00|121226|129844|10000|10000|||90.99|83.67|0.00|1.95|000193F4|0|1| +261|2023-10-06T21:12:52.7700000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:12:53.2820000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|57DE0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34856524|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||100.11|83.73|-0.01|-0.16|000193F5|0|1| +38|2023-10-06T21:12:53.2820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121226|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:53.2820000-07:00|499|Inner Release|14.82|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +39|2023-10-06T21:12:53.3270000-07:00|40022892|Automaton Queen|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06| +37|2023-10-06T21:12:53.4160000-07:00|40022472|Zeromus|000193ED|34831113||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:53.4590000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21A80000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|121226|129844|10000|10000|||90.99|83.67|0.00|1.95|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|000193F6|0|1| +261|2023-10-06T21:12:53.0110000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:12:53.5060000-07:00|40022472|Zeromus|000193EE|34819718||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:53.5060000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +21|2023-10-06T21:12:53.5950000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19714003|352F0000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|34819718|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|000193F7|0|1| +38|2023-10-06T21:12:53.5950000-07:00|40022472|Zeromus|005A5A00|34819718|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T21:12:53.5950000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:12:53.5950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:53.5950000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:12:53.6390000-07:00|10FF0007|Kehabiqo Febiqo|000193EF|109641||||||90.99|83.67|0.00|1.95| +37|2023-10-06T21:12:53.6390000-07:00|40022472|Zeromus|000193EF|34819718|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +39|2023-10-06T21:12:53.7280000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12| +37|2023-10-06T21:12:53.7740000-07:00|40022472|Zeromus|000193F1|34814430|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +39|2023-10-06T21:12:53.7740000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13| +24|2023-10-06T21:12:53.7740000-07:00|40022472|Zeromus|DoT|0|171D|34819718|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|8626|10000|||100.72|102.43|0.00|-3.11| +261|2023-10-06T21:12:53.3150000-07:00|Change|10FF0003||| +21|2023-10-06T21:12:53.7740000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|45350000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|34819718|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8000|10000|||99.60|88.15|0.00|3.09|000193F8|0|1| +38|2023-10-06T21:12:53.7740000-07:00|40022472|Zeromus|005A5A00|34808513|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:12:53.7740000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7700|10000|0||99.60|88.15|0.00|3.09|0|0|0||||||||||||| +30|2023-10-06T21:12:53.7740000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:12:53.7740000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:12:53.8170000-07:00|10FF0003|Gegehi Gehi|73814|73814|7900|10000|||99.60|88.15|0.00|3.09| +36|2023-10-06T21:12:53.8620000-07:00|1BA8|3| +24|2023-10-06T21:12:53.9080000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|3C47|109775|129071|10000|10000|||111.83|84.69|0.00|-1.94|10FF0007|Kehabiqo Febiqo|0|109641|129844|10000|10000|||90.99|83.67|0.00|1.95| +37|2023-10-06T21:12:53.9080000-07:00|40022472|Zeromus|000193F4|34776837|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +37|2023-10-06T21:12:53.9080000-07:00|10FF0007|Kehabiqo Febiqo|000193F4|125072||||||90.99|83.67|0.00|1.95| +39|2023-10-06T21:12:53.9080000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8000|10000|||100.08|92.91|0.00|-3.14| +21|2023-10-06T21:12:53.9080000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|712003|1B8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34808513|40478540|10000|10000|||100.00|80.10|0.00|0.00|109641|129844|10000|10000|||90.99|83.67|0.00|1.95|000193F9|0|1| +21|2023-10-06T21:12:53.9080000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|716003|73C00000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|34808513|40478540|10000|10000|||100.00|80.10|0.00|0.00|109775|129071|10000|10000|||111.83|84.69|0.00|-1.94|000193FA|0|1| +38|2023-10-06T21:12:53.9080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125206|129071|10000|10000|0||111.83|84.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:12:53.9510000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|33310000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|34808513|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8626|10000|||100.72|102.43|0.00|-3.11|000193FB|0|1| +261|2023-10-06T21:12:53.5980000-07:00|Change|10FF0009||||||||||||||| +39|2023-10-06T21:12:53.9960000-07:00|10FF0007|Kehabiqo Febiqo|126370|129844|10000|10000|||90.99|83.67|0.00|1.95| +39|2023-10-06T21:12:53.9960000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9400|10000|||100.11|83.73|0.00|-3.11| +21|2023-10-06T21:12:53.9960000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|98A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34776837|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|000193FC|0|1| +37|2023-10-06T21:12:54.0410000-07:00|40022472|Zeromus|000193F3|34755462|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +39|2023-10-06T21:12:54.0410000-07:00|10FF0009|Zewo Negiwo|81177|81177|8447|10000|||100.72|102.43|0.00|-3.11| +26|2023-10-06T21:12:54.0410000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:12:54.0410000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|726003|45920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34776837|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193FD|0|1| +21|2023-10-06T21:12:54.0410000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EAC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34776837|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|000193FE|0|1| +39|2023-10-06T21:12:54.0850000-07:00|10FF0001|Sesuga Sapisuga|126496|129071|10000|10000|||111.83|84.69|0.00|-1.94| +261|2023-10-06T21:12:53.6890000-07:00|Change|10FF0006||||| +21|2023-10-06T21:12:54.2180000-07:00|40022892|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|736003|643B0000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|34755462|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06|000193FF|0|1| +37|2023-10-06T21:12:54.2630000-07:00|10FF0007|Kehabiqo Febiqo|000193F6|129844||||||90.99|83.67|0.00|1.95| +37|2023-10-06T21:12:54.2630000-07:00|40022472|Zeromus|000193F2|34748336|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|02000CB6|0|C1700000|||||| +26|2023-10-06T21:12:54.2630000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:12:54.2630000-07:00|40022472|Zeromus|000193FA|34718704|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +21|2023-10-06T21:12:54.2630000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34755462|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||100.11|83.73|0.00|-3.11|00019400|0|1| +37|2023-10-06T21:12:54.3520000-07:00|40022472|Zeromus|000193F5|34696210|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +261|2023-10-06T21:12:54.0350000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:12:54.3970000-07:00|40022472|Zeromus|000193F7|34682595|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|41700000|| +38|2023-10-06T21:12:54.3970000-07:00|40022472|Zeromus|005A5A00|34682595|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:12:54.5310000-07:00|40022472|Zeromus|000193F8|34664878||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:54.5310000-07:00|10FF0003|Gegehi Gehi|000193F8|73814|73814|7900|10000|0||99.60|88.15|0.00|3.09|2300|0|0|01|020004D3|0|41F00000|| +37|2023-10-06T21:12:54.5310000-07:00|40022472|Zeromus|000193FC|34662436||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:54.5310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||99.60|88.15|0.00|3.09|0|0|0||||||||||||| +37|2023-10-06T21:12:54.5750000-07:00|40022472|Zeromus|000193F9|34655383||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:54.6640000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|13940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34662436|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|00019401|0|1| +21|2023-10-06T21:12:54.6640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34662436|40478540|10000|10000|||100.00|80.10|0.00|0.00|126496|129071|10000|10000|||111.83|84.69|0.00|-1.94|00019402|0|1| +31|2023-10-06T21:12:54.6640000-07:00|10FF0001||||| +37|2023-10-06T21:12:54.7090000-07:00|40022472|Zeromus|000193FD|34637573||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:54.7090000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.97|90.25|0.00|-3.14| +261|2023-10-06T21:12:54.3400000-07:00|Change|10FF0003||| +37|2023-10-06T21:12:54.7980000-07:00|40022472|Zeromus|000193FE|34633817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:54.7980000-07:00|40022472|Zeromus|00019400|34633664||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:54.7980000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34637573|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7900|10000|||99.60|88.15|0.00|3.09|00019403|0|1| +38|2023-10-06T21:12:54.7980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.99|83.67|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:54.7980000-07:00|496|Intervention|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +39|2023-10-06T21:12:54.8420000-07:00|400228A0|Demi-Phoenix|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:12:54.9760000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|00019404|0|1| +38|2023-10-06T21:12:54.9760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:54.9760000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +261|2023-10-06T21:12:54.5270000-07:00|Change|10FF0009||| +21|2023-10-06T21:12:55.1090000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|750003|7A1F0000|4|26758000|0|0|0|0|0|0|0|0|0|0|0|0|34633664|40478540|10000|10000|||100.00|80.10|0.00|0.00|126496|129071|10000|10000|||111.83|84.69|0.00|-1.94|00019405|0|1| +38|2023-10-06T21:12:55.1100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126496|129071|9000|10000|0||111.83|84.69|0.00|-1.94|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:12:55.1100000-07:00|558|Requiescat|26.97|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:12:55.1100000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:12:55.1100000-07:00|10FF0001||||| +261|2023-10-06T21:12:54.6450000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:12:55.1990000-07:00|40022472|Zeromus|00019402|34631429||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:55.1990000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7C5|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:55.1990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.11|84.73|0.00|-3.12|0|0|0||||||||||||| +37|2023-10-06T21:12:55.2440000-07:00|40022472|Zeromus|000193FB|34618324||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:55.2440000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|CF3|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:55.2440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.13|0|0|0||||||||||||||||||| +21|2023-10-06T21:12:55.2890000-07:00|400228A0|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|152003|1EF00000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34618324|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93|00019406|0|1| +24|2023-10-06T21:12:55.2890000-07:00|10FF0003|Gegehi Gehi|HoT|0|78F|73814|73814|7900|10000|||99.60|88.15|0.00|3.09|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:55.2890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||99.60|88.15|0.00|3.09|0|0|0||||||||||||| +37|2023-10-06T21:12:55.3330000-07:00|40022472|Zeromus|00019403|34618295||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:55.3780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7A4|81541|81541|8000|10000|||99.96|90.35|0.00|3.14|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:55.3780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8000|10000|0||99.96|90.35|0.00|3.14|0|0|0||||||||||||| +20|2023-10-06T21:12:55.4220000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +37|2023-10-06T21:12:55.4680000-07:00|40022472|Zeromus|00019401|34613283||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:55.4680000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|35AE|129844|129844|10000|10000|||93.21|83.79|0.00|2.86|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +24|2023-10-06T21:12:55.4680000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7C8|81809|81809|9400|10000|||100.03|84.00|0.00|-1.00|10FF0006|Wowobora Gogobora|0|81809|81809|9400|10000|||100.03|84.00|0.00|-1.00| +21|2023-10-06T21:12:55.4680000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34618295|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.21|83.79|0.00|2.86|00019407|0|1| +21|2023-10-06T21:12:55.4680000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|00019408|0|1| +38|2023-10-06T21:12:55.4680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.21|83.79|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:55.4680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|0||100.03|84.00|0.00|-1.00|0|0|0|||||||||| +38|2023-10-06T21:12:55.4680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:55.4680000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +261|2023-10-06T21:12:54.9920000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:12:55.5120000-07:00|40022472|Zeromus|000193FF|34587624||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:55.5120000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|28E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34613283|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|00019409|0|1| +38|2023-10-06T21:12:55.5120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.11|84.73|0.00|-3.12|0|0|0||||||||||||| +30|2023-10-06T21:12:55.5120000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +38|2023-10-06T21:12:55.5120000-07:00|40022892|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.67|102.07|0.00|-3.06|0|0|0|||| +30|2023-10-06T21:12:55.5120000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022892|Automaton Queen|01|85668|40478540| +24|2023-10-06T21:12:55.5570000-07:00|10FF0009|Zewo Negiwo|HoT|0|76D|81177|81177|8447|10000|||100.72|102.43|0.00|-3.11|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +24|2023-10-06T21:12:55.5570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7F0|126496|129071|9000|10000|||111.83|84.69|0.00|-1.94|10FF0001|Sesuga Sapisuga|0|126496|129071|9000|10000|||111.83|84.69|0.00|-1.94| +38|2023-10-06T21:12:55.5570000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8447|10000|0||100.72|102.43|0.00|-3.11|0|0|0||||||||||||| +38|2023-10-06T21:12:55.5570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128528|129071|9000|10000|0||111.83|84.69|0.00|-1.94|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:12:55.6460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30820000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34587624|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||99.96|90.35|0.00|3.14|0001940A|0|1| +37|2023-10-06T21:12:55.7370000-07:00|40022472|Zeromus|00019405|34556361||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:55.7370000-07:00|10FF0001|Sesuga Sapisuga|00019405|129071||||||111.83|84.69|0.00|-1.94| +21|2023-10-06T21:12:55.7370000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|ABE40000|200204|3F258000|0|0|0|0|0|0|0|0|0|0|0|0|34587624|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.92|83.82|-0.02|3.08|0001940B|0|1| +38|2023-10-06T21:12:55.7370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.92|83.82|-0.02|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:55.7370000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:12:55.7790000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|156003|B3920000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34587624|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||99.99|84.12|-0.02|-0.32|0001940C|0|1| +21|2023-10-06T21:12:55.7790000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|12EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34587624|40478540|10000|10000|||100.00|80.10|0.00|0.00|128528|129071|9000|10000|||111.83|84.69|0.00|-1.94|0001940D|0|1| +261|2023-10-06T21:12:55.2980000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:12:55.3910000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:12:55.3910000-07:00|Change|40022490||||||||| +00|2023-10-06T21:12:55.0000000-07:00|0044|Zeromus|Ah, the Darkness! It riseth!| +21|2023-10-06T21:12:55.8700000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|35470000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.92|83.82|0.00|2.12|34556361|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001940E|0|1| +20|2023-10-06T21:12:55.9580000-07:00|40022472|Zeromus|8B43|Visceral Whirl|40022472|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:12:55.9580000-07:00|4002248F|Zeromus|8B44|Visceral Whirl|4002248F|Zeromus|8.500|80.10|80.10|0.00|0.79| +20|2023-10-06T21:12:55.9580000-07:00|40022490|Zeromus|8B45|Visceral Whirl|40022490|Zeromus|8.500|119.90|80.10|0.00|-0.79| +21|2023-10-06T21:12:55.9580000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|250003|D2B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34556361|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|0001940F|0|1| +38|2023-10-06T21:12:55.9580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:55.9580000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +30|2023-10-06T21:12:55.9580000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +261|2023-10-06T21:12:55.4870000-07:00|Change|40022472||||||||| +37|2023-10-06T21:12:56.0020000-07:00|40022472|Zeromus|00019407|34553364||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:55.6000000-07:00|Change|10FF0009||||||||||||| +38|2023-10-06T21:12:56.0920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.92|83.82|0.00|2.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:56.0920000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T21:12:56.0920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||111.83|84.69|0.00|-1.94|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:12:56.0920000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|129071|129844| +37|2023-10-06T21:12:56.1360000-07:00|40022472|Zeromus|00019409|34542894||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:56.1810000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|12F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34542894|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|00019410|0|1| +20|2023-10-06T21:12:56.1810000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|99.60|88.15|0.00|3.09| +21|2023-10-06T21:12:56.1810000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34542894|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|00019411|0|1| +38|2023-10-06T21:12:56.2240000-07:00|40022892|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.67|102.07|0.00|-3.06|0|0|0||||||| +26|2023-10-06T21:12:56.2240000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022892|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:12:55.8360000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T21:12:56.2700000-07:00|40022892|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|730003|33E50000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|34542894|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06|00019412|0|1| +37|2023-10-06T21:12:56.3140000-07:00|40022472|Zeromus|00019406|34534974||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:56.3140000-07:00|40022892|Automaton Queen|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06| +37|2023-10-06T21:12:56.3590000-07:00|40022472|Zeromus|0001940D|34530132||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:56.3590000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32530000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|34534974|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8447|10000|||100.72|102.43|0.00|-3.11|00019413|0|1| +38|2023-10-06T21:12:56.4040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||99.99|84.12|0.00|-3.14|0|0|0|||||||||| +26|2023-10-06T21:12:56.4040000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:12:56.4040000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|756003|42290000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|34534974|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||99.99|84.12|0.00|-3.14|00019414|0|1| +38|2023-10-06T21:12:56.4040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||99.99|84.12|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T21:12:56.4040000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:12:55.9520000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:12:55.9520000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:12:56.4470000-07:00|40022472|Zeromus|0001940A|34517714||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:56.4920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||111.71|84.71|0.00|-1.44|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:12:56.4920000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:12:56.0700000-07:00|Change|10FF0004||||||||||||||||| +39|2023-10-06T21:12:56.5370000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +37|2023-10-06T21:12:56.5820000-07:00|40022472|Zeromus|0001940F|34463777||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:56.6700000-07:00|10FF0007|Kehabiqo Febiqo|0001940E|116205||||||93.92|83.82|0.00|2.12| +37|2023-10-06T21:12:56.7150000-07:00|40022472|Zeromus|00019411|34461295||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:56.7150000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12| +21|2023-10-06T21:12:56.7150000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|91A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34463777|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|00019415|0|1| +39|2023-10-06T21:12:56.7590000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13| +24|2023-10-06T21:12:56.7590000-07:00|40022472|Zeromus|DoT|0|2201|34463777|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||110.82|85.32|0.00|-1.56| +38|2023-10-06T21:12:56.7590000-07:00|40022472|Zeromus|005A5A00|34452590|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:12:56.8030000-07:00|40022472|Zeromus|00019410|34447735||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:56.8030000-07:00|10FF0003|Gegehi Gehi|73814|73814|8100|10000|||99.60|88.15|0.00|3.09| +37|2023-10-06T21:12:56.8480000-07:00|40022472|Zeromus|0001940C|34401765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:56.8480000-07:00|10FF0006|Wowobora Gogobora|0001940C|81809|81809|9100|10000|0||99.99|84.12|0.00|-3.14|1B00|0|0|01|03000A8D|0|C2700000|| +36|2023-10-06T21:12:56.8480000-07:00|1C84|3| +37|2023-10-06T21:12:56.8920000-07:00|40022472|Zeromus|0001940B|34357761||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:56.8920000-07:00|10FF0007|Kehabiqo Febiqo|0001940B|129844||||||93.92|83.82|-0.02|2.12| +39|2023-10-06T21:12:56.8920000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7800|10000|||99.96|90.35|0.00|3.14| +21|2023-10-06T21:12:56.8920000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|736003|1460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34401765|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7600|10000|||99.96|90.35|0.00|3.14|00019416|0|1| +21|2023-10-06T21:12:56.9380000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|11040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34401765|40478540|10000|10000|||100.00|80.10|0.00|0.00|116205|129844|10000|10000|||93.92|83.82|-0.02|2.12|00019417|0|1| +21|2023-10-06T21:12:56.9380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|84B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34401765|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||109.77|86.01|0.00|-2.04|00019418|0|1| +31|2023-10-06T21:12:56.9380000-07:00|10FF0001||||| +39|2023-10-06T21:12:56.9810000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.92|83.82|-0.02|2.12| +39|2023-10-06T21:12:56.9810000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9300|10000|||99.99|84.12|0.00|-3.14| +261|2023-10-06T21:12:56.4510000-07:00|Change|10FF0006||||| +39|2023-10-06T21:12:57.0260000-07:00|10FF0009|Zewo Negiwo|81177|81177|8268|10000|||100.72|102.43|0.00|-3.11| +21|2023-10-06T21:12:57.0260000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|720003|5D840000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|34357761|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|00019419|0|1| +39|2023-10-06T21:12:57.0710000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||109.12|86.09|0.00|-2.33| +261|2023-10-06T21:12:56.5420000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:12:57.0720000-07:00|400228A0|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||102.28|90.62|0.00|-2.93|0|0|0||||||| +26|2023-10-06T21:12:57.0720000-07:00|30|Well Fed|1696.19|10FF0006|Wowobora Gogobora|400228A0|Demi-Phoenix|2964|77698|81809| +26|2023-10-06T21:12:57.0720000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|400228A0|Demi-Phoenix|01|77698|40478540| +21|2023-10-06T21:12:57.0720000-07:00|10FF0006|Wowobora Gogobora|4084|Enkindle Phoenix|40022472|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|34357761|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||99.99|84.12|0.00|-3.14|0001941A|0|1| +261|2023-10-06T21:12:56.6600000-07:00|Change|10FF0009||||||||||||||| +20|2023-10-06T21:12:57.1160000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.96|90.35|0.00|3.14| +21|2023-10-06T21:12:57.1600000-07:00|400228A0|Demi-Phoenix|4086|Revelation|40022472|Zeromus|156003|5EA64001|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|34357761|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93|0001941B|0|1| +261|2023-10-06T21:12:56.7790000-07:00|Change|10FF0003||||| +37|2023-10-06T21:12:57.4280000-07:00|40022472|Zeromus|00019414|34340824||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:57.4280000-07:00|10FF0006|Wowobora Gogobora|00019414|81809|81809|9300|10000|0||99.99|84.12|0.00|-3.14|1B00|0|0|01|03000A8D|0|42700000|| +37|2023-10-06T21:12:57.4280000-07:00|40022472|Zeromus|00019416|34340498||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:57.4280000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34357761|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||99.99|84.12|0.00|-3.14|0001941C|0|1| +38|2023-10-06T21:12:57.4280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|0||99.99|84.12|0.00|-3.14|0|0|0||||||||||||| +37|2023-10-06T21:12:57.4710000-07:00|40022472|Zeromus|00019415|34338168||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:57.4710000-07:00|40022472|Zeromus|00019418|34336045||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:57.1320000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:12:57.5610000-07:00|40022472|Zeromus|00019417|34331689||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:57.5610000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|0001941D|0|1| +38|2023-10-06T21:12:57.5610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:57.5610000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:12:57.6070000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|750003|5BA50000|200004|3D7A8000|0|0|0|0|0|0|0|0|0|0|0|0|34336045|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||108.43|83.03|0.00|-2.90|0001941E|0|1| +21|2023-10-06T21:12:57.6070000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|450003|2EC40000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|34336045|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8100|10000|||99.60|88.15|0.00|3.09|0001941F|0|1| +38|2023-10-06T21:12:57.6070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||99.60|88.15|0.00|3.09|0|0|0||||||||||||| +26|2023-10-06T21:12:57.6070000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:12:57.6070000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:12:57.6070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||108.43|83.03|0.00|-2.90|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:12:57.6070000-07:00|558|Requiescat|24.47|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:12:57.6080000-07:00|10FF0001||||| +37|2023-10-06T21:12:57.6500000-07:00|40022472|Zeromus|00019413|34318806||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:57.6500000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|139E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34331689|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|00019420|0|1| +20|2023-10-06T21:12:57.8290000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.72|102.43|0.00|-3.11| +39|2023-10-06T21:12:57.8730000-07:00|400228A0|Demi-Phoenix|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +37|2023-10-06T21:12:57.9620000-07:00|40022472|Zeromus|0001941C|34318612||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:57.6140000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:12:57.6140000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:12:58.0520000-07:00|40022472|Zeromus|00019419|34294672||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:58.0520000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4E4C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34318612|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||99.96|90.35|0.00|3.14|00019421|0|1| +21|2023-10-06T21:12:58.0970000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|00019422|0|1| +38|2023-10-06T21:12:58.0970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:12:58.0970000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +23|2023-10-06T21:12:58.1410000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +37|2023-10-06T21:12:58.1860000-07:00|40022472|Zeromus|0001941B|34204906||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:12:58.1860000-07:00|400228A0|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||102.28|90.62|0.00|-2.93|0|0|0|||| +30|2023-10-06T21:12:58.1860000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|400228A0|Demi-Phoenix|01|77698|40478540| +261|2023-10-06T21:12:57.8280000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:12:57.9450000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T21:12:58.2300000-07:00|40022472|Zeromus|00019412|34191621||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:58.2310000-07:00|40022472|Zeromus|0001941E|34168160||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:58.2310000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7AA|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:12:58.2310000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7C930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34204906|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||97.35|84.03|0.00|2.98|00019423|0|1| +21|2023-10-06T21:12:58.2310000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|5C2E0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34204906|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||99.99|84.12|0.00|-3.14|00019424|0|1| +38|2023-10-06T21:12:58.2310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||97.35|84.03|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:12:58.2310000-07:00|499|Inner Release|9.87|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +38|2023-10-06T21:12:58.2310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.11|84.73|0.00|-3.12|0|0|0||||||||||||| +38|2023-10-06T21:12:58.2310000-07:00|40022892|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.67|102.07|0.00|-3.06|0|0|0|||| +30|2023-10-06T21:12:58.2310000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022892|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:12:57.9450000-07:00|Change|10FF0006||| +24|2023-10-06T21:12:58.2750000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|7CB|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:58.2750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.02|84.43|0.00|-3.13|0|0|0||||||||||||||||||| +24|2023-10-06T21:12:58.3190000-07:00|10FF0003|Gegehi Gehi|HoT|0|75C|73814|73814|7900|10000|||99.60|88.15|0.00|3.09|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:12:58.3190000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34204906|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|84.73|0.00|-3.12|00019425|0|1| +38|2023-10-06T21:12:58.3190000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||99.60|88.15|0.00|3.09|0|0|0||||||||||||| +21|2023-10-06T21:12:58.3640000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34204906|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|84.43|0.00|-3.13|00019426|0|1| +38|2023-10-06T21:12:58.3640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||97.35|84.03|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:58.3640000-07:00|A94|Aquaveil|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:12:58.4080000-07:00|40022472|Zeromus|0001941F|34156188||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:12:58.4080000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7BA|81541|81541|7400|10000|||99.96|90.35|0.00|3.14|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:58.4080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7400|10000|0||99.96|90.35|0.00|3.14|0|0|0||||||||||||| +37|2023-10-06T21:12:58.4520000-07:00|40022472|Zeromus|00019420|34151166||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:58.4520000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|714003|17700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34168160|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||107.76|81.98|0.00|-1.81|00019427|0|1| +24|2023-10-06T21:12:58.4970000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|484F|129844|129844|10000|10000|||98.52|84.09|0.00|2.59|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +24|2023-10-06T21:12:58.4970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C18|81809|81809|9000|10000|||99.99|84.12|0.00|-3.14|10FF0006|Wowobora Gogobora|0|81809|81809|9000|10000|||99.99|84.12|0.00|-3.14| +38|2023-10-06T21:12:58.4970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||98.52|84.09|0.00|2.59|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:12:58.4970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|0||99.99|84.12|0.00|-3.14|0|0|0||||||||||||| +24|2023-10-06T21:12:58.5410000-07:00|10FF0009|Zewo Negiwo|HoT|0|74F|81177|81177|8268|10000|||100.72|102.37|0.00|-3.08|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:12:58.5410000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8268|10000|0||100.72|102.37|0.00|-3.08|0|0|0||||||||||||| +261|2023-10-06T21:12:58.0600000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T21:12:58.5860000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|803|129071|129071|8200|10000|||107.76|81.98|0.00|-1.81|400228A0|Demi-Phoenix|0|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:12:58.5860000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|554003|63B50000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|34151166|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.03|84.42|0.00|-3.08|00019428|0|1| +38|2023-10-06T21:12:58.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||107.76|81.98|0.00|-1.81|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:12:58.5860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.03|84.42|0.00|-3.08|0|0|0||||||||||||||||||| +30|2023-10-06T21:12:58.5860000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:12:58.5860000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:12:58.6760000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|554003|412D0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|34151166|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7900|10000|||99.60|88.05|0.00|-3.13|00019429|0|1| +38|2023-10-06T21:12:58.6760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7600|10000|0||99.60|88.05|0.00|-3.13|0|0|0||||||||||||| +30|2023-10-06T21:12:58.6760000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:12:58.6760000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:12:58.8090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||98.14|84.07|0.00|2.59|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:12:58.8090000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +37|2023-10-06T21:12:58.8530000-07:00|40022472|Zeromus|00019423|34119275||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:58.8530000-07:00|40022472|Zeromus|00019421|34099231||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:58.8530000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BB70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34151166|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||98.21|84.07|0.00|2.63|0001942A|0|1| +37|2023-10-06T21:12:58.8980000-07:00|40022472|Zeromus|00019426|34096982||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:58.8980000-07:00|10FF000A|Dukaro Nezikaro|00019426|82773|82773|10000|10000|0||100.05|84.41|0.00|-3.12|1E00|0|0|01|03000A82|01|C1F00000|| +37|2023-10-06T21:12:58.9430000-07:00|40022472|Zeromus|00019425|34091759||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:58.4520000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:12:59.0320000-07:00|40022472|Zeromus|00019427|34085759||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:12:58.4520000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:12:58.6860000-07:00|Change|10FF0009||||||||||||||||||||| +21|2023-10-06T21:12:59.2110000-07:00|400228A0|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|150003|13670000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34085759|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93|0001942B|0|1| +21|2023-10-06T21:12:59.2110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|DA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34085759|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||106.17|81.72|0.00|-1.72|0001942C|0|1| +31|2023-10-06T21:12:59.2110000-07:00|10FF0001||||| +37|2023-10-06T21:12:59.3000000-07:00|40022472|Zeromus|00019424|34062161||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:59.3000000-07:00|40022472|Zeromus|00019428|34036636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:59.3000000-07:00|10FF000A|Dukaro Nezikaro|00019428|82773|82773|10000|10000|0||102.90|83.58|0.00|-3.05|1E00|0|0|01|03000A82|01|41F00000|| +39|2023-10-06T21:12:59.3000000-07:00|40022892|Automaton Queen|82193|85668|10000|10000|||101.67|102.07|0.00|-3.06| +38|2023-10-06T21:12:59.3000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||102.90|83.58|0.00|-3.05|0|0|0||||||||||||||||||| +261|2023-10-06T21:12:58.9090000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:12:59.3450000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|42F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34085759|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||102.90|83.58|0.00|-3.05|0001942D|0|1| +37|2023-10-06T21:12:59.3900000-07:00|40022472|Zeromus|0001942A|34033637||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:12:59.3900000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34085759|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.83|83.09|0.00|2.52|0001942E|0|1| +37|2023-10-06T21:12:59.4350000-07:00|40022472|Zeromus|00019429|34016952||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:12:59.4350000-07:00|10FF0003|Gegehi Gehi|00019429|73814|73814|7600|10000|0||101.25|85.85|0.00|2.81|2300|0|0|01|020004D2|0|41F00000|| +38|2023-10-06T21:12:59.4350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7600|10000|0||101.25|85.85|0.00|2.81|0|0|0||||||||||||| +261|2023-10-06T21:12:59.0280000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:12:59.5240000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +21|2023-10-06T21:12:59.5700000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|4AE80000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|34016952|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.57|82.31|0.00|2.45|0001942F|0|1| +20|2023-10-06T21:12:59.6140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|103.44|87.18|-0.02|2.30| +261|2023-10-06T21:12:59.1320000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:12:59.7030000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.69|82.17|0.00|-2.08| +37|2023-10-06T21:12:59.7480000-07:00|40022472|Zeromus|0001942C|34013457||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:59.7480000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||103.82|83.27|0.00|-2.26| +24|2023-10-06T21:12:59.7480000-07:00|40022472|Zeromus|DoT|0|1B8B|34016952|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8200|10000|||103.24|81.65|0.00|-1.39| +21|2023-10-06T21:12:59.7480000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34016952|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7600|10000|||102.97|84.12|-0.02|2.49|00019430|0|1| +38|2023-10-06T21:12:59.7480000-07:00|40022472|Zeromus|005A5A00|34006406|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T21:12:59.7910000-07:00|10FF0003|Gegehi Gehi|73814|73814|7800|10000|||102.97|84.12|-0.02|2.49| +36|2023-10-06T21:12:59.8380000-07:00|1D60|3| +39|2023-10-06T21:12:59.8810000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7600|10000|||103.61|87.01|0.00|2.84| +21|2023-10-06T21:12:59.9250000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|A2D0000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|34006406|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8268|10000|||103.38|94.67|0.00|2.64|00019431|0|1| +37|2023-10-06T21:12:59.9700000-07:00|40022472|Zeromus|0001942D|33989262||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:12:59.9700000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||105.64|84.51|0.00|3.08| +39|2023-10-06T21:12:59.9700000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9200|10000|||104.25|82.98|0.00|2.37| +261|2023-10-06T21:12:59.5080000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:12:59.5080000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:12:59.5990000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:13:00.0150000-07:00|10FF0009|Zewo Negiwo|81177|81177|8089|10000|||104.04|93.53|0.00|-2.85| +39|2023-10-06T21:13:00.0590000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8400|10000|||103.24|81.65|0.00|-2.02| +261|2023-10-06T21:12:59.5990000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:13:00.1490000-07:00|40022472|Zeromus|0001942E|33986450||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:00.1490000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|752003|A41C0000|200004|3EF28000|0|0|0|0|0|0|0|0|0|0|0|0|33989262|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||103.24|81.65|0.00|-2.02|00019432|0|1| +22|2023-10-06T21:13:00.1490000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|17390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33989262|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019433|0|3| +22|2023-10-06T21:13:00.1490000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|17860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33989262|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019433|1|3| +22|2023-10-06T21:13:00.1490000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|16FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33989262|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019433|2|3| +38|2023-10-06T21:13:00.1490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7400|10000|0||103.24|81.65|0.00|-2.02|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:00.1490000-07:00|558|Requiescat|21.93|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:13:00.1490000-07:00|10FF0001||||| +37|2023-10-06T21:13:00.2370000-07:00|40022472|Zeromus|0001942B|33981483||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:00.2820000-07:00|40022472|Zeromus|00019430|33981447||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:00.3710000-07:00|40022472|Zeromus|0001942F|33962271||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:00.5490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|756003|65FB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33962271|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7600|10000|||103.81|86.81|0.00|-2.63|00019434|0|1| +21|2023-10-06T21:13:00.5490000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|F730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33962271|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019435|0|1| +21|2023-10-06T21:13:00.5940000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33962271|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||104.54|82.51|0.00|2.49|00019436|0|1| +261|2023-10-06T21:13:00.1510000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:13:00.6830000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7D9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33962271|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.40|84.55|0.00|3.08|00019437|0|1| +38|2023-10-06T21:13:00.6830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||106.40|84.55|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:00.6830000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +21|2023-10-06T21:13:00.7270000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|154003|6B200000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|33962271|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||104.54|82.51|0.00|2.49|00019438|0|1| +261|2023-10-06T21:13:00.2480000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:13:00.8610000-07:00|40022472|Zeromus|00019433|33956326||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:00.8610000-07:00|400228A0|Demi-Phoenix|74223|77698|10000|10000|||102.28|90.62|0.00|-2.93| +261|2023-10-06T21:13:00.3410000-07:00|Change|400228A0||||||| +38|2023-10-06T21:13:00.9050000-07:00|400228C6||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:13:00.9050000-07:00|400228C6||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +03|2023-10-06T21:13:00.4360000-07:00|400228C6|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||103.02|81.71|0.00|1.08| +261|2023-10-06T21:13:00.4360000-07:00|Add|400228C6||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:13:00.9930000-07:00|40022472|Zeromus|00019433|33950304||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:00.5280000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:13:00.5280000-07:00|Change|400228C6||| +37|2023-10-06T21:13:01.0380000-07:00|40022472|Zeromus|00019432|33908292||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:01.0380000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|552003|6A520000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|33950304|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019439|0|1| +38|2023-10-06T21:13:01.0380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||103.99|83.27|0.00|-2.24|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:01.0380000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:13:01.0820000-07:00|40022472|Zeromus|00019435|33904337||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:01.0820000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|104.72|82.35|0.00|2.50| +261|2023-10-06T21:13:00.5280000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:13:01.1270000-07:00|40022472|Zeromus|00019436|33904183||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:01.1270000-07:00|40022472|Zeromus|00019433|33898298||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:00.6460000-07:00|Change|10FF0001||| +37|2023-10-06T21:13:01.2160000-07:00|40022472|Zeromus|00019431|33895693|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:13:01.2160000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +24|2023-10-06T21:13:01.2160000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7C1|90216|90216|10000|10000|||103.04|81.77|0.00|-2.08|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:01.2160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||103.04|81.77|0.00|-2.08|0|0|0||||||||||||| +24|2023-10-06T21:13:01.2600000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|7E0|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:01.2600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7200|10000|0||104.22|85.43|0.00|2.89|0|0|0|||||||||||||||| +26|2023-10-06T21:13:01.2600000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:13:01.2600000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7200|10000|||104.22|85.43|0.00|2.89|81541|81541|7200|10000|||104.22|85.43|0.00|2.89|0001943A|0|1| +38|2023-10-06T21:13:01.2610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||103.99|83.27|0.00|-2.24|0|0|0||||||||||||||||||| +24|2023-10-06T21:13:01.3050000-07:00|10FF0003|Gegehi Gehi|HoT|0|BF7|73814|73814|7800|10000|||104.72|82.35|0.00|2.95|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:01.3050000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7800|10000|0||104.72|82.35|0.00|2.95|0|0|0||||||||||||| +261|2023-10-06T21:13:00.7630000-07:00|Change|40022892||||||||| +261|2023-10-06T21:13:00.7630000-07:00|Change|40022892||||||||| +37|2023-10-06T21:13:01.3490000-07:00|40022472|Zeromus|00019437|33863538||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:01.3490000-07:00|40022472|Zeromus|00019434|33837431||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:00.8820000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:13:01.3940000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|758|81541|81541|7200|10000|||104.45|84.68|0.00|2.85|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7200|10000|||104.45|84.68|0.00|2.85| +21|2023-10-06T21:13:01.3940000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||106.40|84.55|0.00|-2.18|129844|129844|10000|10000|||106.40|84.55|0.00|-2.18|0001943B|0|1| +38|2023-10-06T21:13:01.3940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||106.40|84.55|0.00|-2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:13:01.3940000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:13:01.3940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7200|10000|0||104.45|84.68|0.00|2.85|0|0|0|||||||||||||||| +24|2023-10-06T21:13:01.4840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1E48|129844|129844|10000|10000|||106.40|84.55|0.00|-2.18|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +24|2023-10-06T21:13:01.4840000-07:00|10FF0006|Wowobora Gogobora|HoT|0|77B|81809|81809|8900|10000|||104.54|82.51|0.00|-2.06|10FF0006|Wowobora Gogobora|0|81809|81809|8900|10000|||104.54|82.51|0.00|-2.06| +21|2023-10-06T21:13:01.4840000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|D640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33837431|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||103.24|81.65|0.00|-2.02|0001943C|0|1| +38|2023-10-06T21:13:01.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||106.40|84.55|0.00|-2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:13:01.4840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|0||104.54|82.51|0.00|-2.06|0|0|0||||||||||||| +31|2023-10-06T21:13:01.4840000-07:00|10FF0001||||| +24|2023-10-06T21:13:01.5290000-07:00|10FF0009|Zewo Negiwo|HoT|0|759|81177|81177|8089|10000|||108.55|89.03|0.00|1.94|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:01.5290000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8089|10000|0||108.55|89.03|0.00|1.94|0|0|0||||||||||||| +24|2023-10-06T21:13:01.5730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|77E|129071|129071|7400|10000|||103.24|81.65|0.00|-2.02|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:01.5730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7400|10000|0||103.24|81.65|0.00|-2.02|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:13:01.7970000-07:00|40022472|Zeromus|00019438|33810007||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:01.7970000-07:00|10FF0004|Buhojaqe Zijaqe|0001943A|81541|81541|9200|10000|0||104.13|84.17|0.00|3.08|1C00|0|0|0| +37|2023-10-06T21:13:01.7970000-07:00|40022472|Zeromus|00019439|33782789||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:01.3050000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:13:01.9310000-07:00|10FF0007|Kehabiqo Febiqo|0001943B|129844|129844|10000|10000|0||106.40|84.55|0.00|-2.18|1500|0|0|01|04000769|0|41F00000|| +34|2023-10-06T21:13:01.9310000-07:00|400228C6|Carbuncle|400228C6|Carbuncle|01| +38|2023-10-06T21:13:01.9310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||106.40|84.55|0.00|-2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:01.4020000-07:00|Change|400228C6||| +21|2023-10-06T21:13:01.9760000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33782789|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||103.60|83.15|0.00|-2.75|0001943D|0|1| +37|2023-10-06T21:13:02.0200000-07:00|40022472|Zeromus|0001943C|33779361||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:02.0200000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|103.26|82.47|-0.02|-2.46| +21|2023-10-06T21:13:02.0650000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3AA80000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|33782789|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.04|81.77|0.00|-2.08|0001943E|0|1| +21|2023-10-06T21:13:02.0650000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|90B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33782789|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.04|81.77|0.00|-2.08|0001943F|0|1| +21|2023-10-06T21:13:02.2430000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33779361|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.40|84.55|0.00|-2.18|00019440|0|1| +20|2023-10-06T21:13:02.3330000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|109.73|88.64|0.00|1.72| +261|2023-10-06T21:13:01.9040000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:13:02.5110000-07:00|40022472|Zeromus|0001943D|33779204||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:02.5120000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +21|2023-10-06T21:13:02.5120000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|32760000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|33779361|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7800|10000|||104.72|82.35|0.00|-2.02|00019441|0|1| +38|2023-10-06T21:13:02.5120000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7600|10000|0||104.72|82.35|0.00|-2.02|0|0|0||||||||||||| +26|2023-10-06T21:13:02.5120000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:13:02.5120000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:13:02.1340000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T21:13:02.6450000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|754003|97A40000|4|25538000|0|0|0|0|0|0|0|0|0|0|0|0|33779204|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||103.24|81.65|0.00|-2.02|00019442|0|1| +38|2023-10-06T21:13:02.6450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|0||103.24|81.65|0.00|-2.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:13:02.6450000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:13:02.6450000-07:00|10FF0001||||| +261|2023-10-06T21:13:02.1340000-07:00|Change|10FF0001||| +261|2023-10-06T21:13:02.2320000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:13:02.7330000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||103.04|81.77|0.00|-2.08| +21|2023-10-06T21:13:02.7330000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33779204|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019443|0|1| +37|2023-10-06T21:13:02.7780000-07:00|40022472|Zeromus|00019440|33776154||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:02.7780000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24| +24|2023-10-06T21:13:02.7780000-07:00|40022472|Zeromus|DoT|0|1EA3|33779204|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6400|10000|||103.24|81.65|0.00|-2.02| +38|2023-10-06T21:13:02.7780000-07:00|40022472|Zeromus|005A5A00|33768311|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:13:02.8230000-07:00|40022472|Zeromus|0001943F|33765996||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:02.8230000-07:00|10FF0003|Gegehi Gehi|73814|73814|7800|10000|||104.72|82.35|0.00|-2.02| +261|2023-10-06T21:13:02.3310000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:13:02.8670000-07:00|40022472|Zeromus|0001943E|33750980||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:13:02.8670000-07:00|1E3C|3| +39|2023-10-06T21:13:02.9120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9400|10000|||103.26|82.47|0.00|-2.21| +21|2023-10-06T21:13:02.9570000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32D70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33765996|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||103.26|82.47|0.00|-2.21|00019444|0|1| +39|2023-10-06T21:13:03.0010000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||106.40|84.55|0.00|-2.18| +39|2023-10-06T21:13:03.0010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9100|10000|||104.54|82.51|0.00|-2.06| +261|2023-10-06T21:13:02.4240000-07:00|Change|10FF0006||| +39|2023-10-06T21:13:03.0460000-07:00|10FF0009|Zewo Negiwo|81177|81177|8310|10000|||109.73|88.64|0.00|-2.29| +39|2023-10-06T21:13:03.0910000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6600|10000|||103.24|81.65|0.00|-2.02| +21|2023-10-06T21:13:03.1350000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|9FDC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33750980|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.40|84.55|0.00|-2.18|00019445|0|1| +21|2023-10-06T21:13:03.1350000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42712003|519C0000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|33750980|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019446|0|1| +38|2023-10-06T21:13:03.1350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||106.40|84.55|0.00|-2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:03.1350000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:13:03.2260000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|33750980|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||104.54|82.51|0.00|-2.06|00019447|0|1| +38|2023-10-06T21:13:03.2260000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||104.54|82.51|0.00|-2.06|0|0|0|||||||||||||||| +26|2023-10-06T21:13:03.2260000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:13:02.7700000-07:00|Change|400228C6||| +38|2023-10-06T21:13:03.2700000-07:00|400228C9||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:13:03.2700000-07:00|40022472|Zeromus|00019443|33748654||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:03.2700000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|52F90000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|33750980|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8310|10000|||109.73|88.64|0.00|-2.29|00019448|0|1| +38|2023-10-06T21:13:03.2700000-07:00|400228C9||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:13:03.3150000-07:00|40022472|Zeromus|00019441|33735736||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:13:02.8890000-07:00|400228C9|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||106.94|81.81|0.00|-2.06| +261|2023-10-06T21:13:02.8890000-07:00|Add|400228C9||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:02.8890000-07:00|Change|400228C9||||| +21|2023-10-06T21:13:03.4930000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|44D70000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|33735736|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7800|10000|||104.72|82.35|0.00|-2.02|00019449|0|1| +38|2023-10-06T21:13:03.4940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7500|10000|0||104.72|82.35|0.00|-2.02|0|0|0||||||||||||| +30|2023-10-06T21:13:03.4940000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:13:03.4940000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:13:03.5380000-07:00|40022472|Zeromus|00019442|33696916||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:03.1220000-07:00|Change|10FF0003||| +261|2023-10-06T21:13:03.2130000-07:00|Change|10FF0001||| +21|2023-10-06T21:13:03.7170000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33696916|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||104.54|82.51|0.00|-2.06|0001944A|0|1| +261|2023-10-06T21:13:03.2130000-07:00|Change|10FF0009||||||||||||||||| +37|2023-10-06T21:13:03.7610000-07:00|40022472|Zeromus|00019444|33683901||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:03.7610000-07:00|40022472|Zeromus|00019446|33663009||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:03.7610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|D3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33696916|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6600|10000|||103.24|81.65|0.00|-2.02|0001944B|0|1| +31|2023-10-06T21:13:03.7610000-07:00|10FF0001||||| +261|2023-10-06T21:13:03.3980000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:13:03.9370000-07:00|40022472|Zeromus|8B43|Visceral Whirl|40022472|Zeromus|1B|8B438000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33663009|40478540|10000|10000|||100.00|80.10|0.00|0.00|33663009|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001944C|0|1| +261|2023-10-06T21:13:03.3980000-07:00|Change|40022472||||| +37|2023-10-06T21:13:04.0710000-07:00|40022472|Zeromus|00019445|33622085||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:04.2080000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7AE|90216|90216|10000|10000|||103.04|81.77|0.00|-2.08|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:04.2080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||103.04|81.77|0.00|-2.08|0|0|0||||||||||||| +37|2023-10-06T21:13:04.2510000-07:00|10FF0006|Wowobora Gogobora|00019447|81809|81809|9100|10000|0||104.54|82.51|0.00|-2.06|1B00|0|0|01|04000AA4|0|0|| +37|2023-10-06T21:13:04.2510000-07:00|40022472|Zeromus|0001944A|33621941||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:04.2510000-07:00|40022472|Zeromus|00019449|33604318||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:04.2510000-07:00|10FF0003|Gegehi Gehi|00019449|73814|73814|7500|10000|0||104.72|82.35|0.00|-2.02|2300|0|0|01|020004D3|0|41F00000|| +24|2023-10-06T21:13:04.2510000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|7DB|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:04.2510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||104.54|82.51|0.00|-2.06|0|0|0|||||||||||||||| +38|2023-10-06T21:13:04.2510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7500|10000|0||104.72|82.35|0.00|-2.02|0|0|0||||||||||||| +38|2023-10-06T21:13:04.2510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||103.99|83.27|0.00|-2.24|0|0|0||||||||||||||||||| +37|2023-10-06T21:13:04.2950000-07:00|40022472|Zeromus|0001944B|33600927||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:04.2950000-07:00|10FF0003|Gegehi Gehi|HoT|0|7F1|73814|73814|7500|10000|||104.72|82.35|0.00|-2.02|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:04.2950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7500|10000|0||104.72|82.35|0.00|-2.02|0|0|0||||||||||||| +261|2023-10-06T21:13:03.9420000-07:00|Change|400228C9||| +24|2023-10-06T21:13:04.3840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7D9|81541|81541|9000|10000|||103.35|81.99|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||103.35|81.99|0.00|-3.06| +20|2023-10-06T21:13:04.3840000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|103.35|81.99|0.00|-3.06| +38|2023-10-06T21:13:04.3840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||103.35|81.99|0.00|-3.06|0|0|0|||||||||||||||| +24|2023-10-06T21:13:04.4730000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1E02|129844|129844|10000|10000|||106.40|84.55|0.00|-2.18|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +24|2023-10-06T21:13:04.4730000-07:00|10FF0006|Wowobora Gogobora|HoT|0|777|81809|81809|9100|10000|||104.54|82.51|0.00|-2.06|10FF0006|Wowobora Gogobora|0|81809|81809|9100|10000|||104.54|82.51|0.00|-2.06| +38|2023-10-06T21:13:04.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||106.40|84.55|0.00|-2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:13:04.4730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||104.54|82.51|0.00|-2.06|0|0|0|||||||||||||||| +24|2023-10-06T21:13:04.5170000-07:00|10FF0009|Zewo Negiwo|HoT|0|7AF|81177|81177|7910|10000|||109.73|88.64|0.00|-2.29|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +38|2023-10-06T21:13:04.5170000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7910|10000|0||109.73|88.64|0.00|-2.29|0|0|0||||||||||||| +37|2023-10-06T21:13:04.5630000-07:00|40022472|Zeromus|00019448|33579686||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:04.5630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A5A|129071|129071|6600|10000|||103.24|81.65|0.00|-2.02|400228A0|Demi-Phoenix|0|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:13:04.5630000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|722003|8E510000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|33600927|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.04|81.77|0.00|-2.08|0001944D|0|1| +38|2023-10-06T21:13:04.5630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|0||103.24|81.65|0.00|-2.02|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:13:04.0600000-07:00|Remove|400228A0| +04|2023-10-06T21:13:04.1560000-07:00|400228A0|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|0|77698|0|10000|||102.28|90.62|0.00|-2.93| +21|2023-10-06T21:13:04.6950000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33579686|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7500|10000|||104.72|82.35|0.00|-2.02|0001944E|0|1| +20|2023-10-06T21:13:04.7400000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|109.73|88.64|0.00|-2.29| +21|2023-10-06T21:13:04.7400000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33579686|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.04|81.77|0.00|-2.08|0001944F|0|1| +21|2023-10-06T21:13:04.7400000-07:00|4002248F|Zeromus|8B44|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|00019450|0|0| +21|2023-10-06T21:13:04.7400000-07:00|40022490|Zeromus|8B45|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|00019451|0|0| +261|2023-10-06T21:13:04.2520000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:13:04.2520000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:13:04.2520000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:13:04.3420000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:13:04.9190000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33579686|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019452|0|1| +261|2023-10-06T21:13:04.4430000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:13:04.4430000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:13:04.4430000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:13:04.4430000-07:00|Change|40022489||||||||| +04|2023-10-06T21:13:04.4430000-07:00|40022892|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||101.67|102.07|0.00|-3.06| +261|2023-10-06T21:13:04.4430000-07:00|Remove|40022892| +20|2023-10-06T21:13:05.0520000-07:00|40022489|Zeromus|8B49|Miasmic Blast|40022489|Zeromus|7.700|114.00|100.00|0.00|0.79| +20|2023-10-06T21:13:05.0520000-07:00|4002248A|Zeromus|8CF8|unknown_8cf8|4002248A|Zeromus|7.700|114.00|100.00|0.00|0.79| +20|2023-10-06T21:13:05.0520000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|4002248B|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:13:05.0520000-07:00|4002248C|Zeromus|8CF8|unknown_8cf8|4002248C|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:13:05.0520000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|4002248D|Zeromus|7.700|100.00|86.00|0.00|0.79| +20|2023-10-06T21:13:05.0520000-07:00|4002248E|Zeromus|8CF8|unknown_8cf8|4002248E|Zeromus|7.700|100.00|86.00|0.00|0.79| +21|2023-10-06T21:13:05.1420000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|3B520000|4|27388000|0|0|0|0|0|0|0|0|0|0|0|0|33579686|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6600|10000|||103.24|81.65|0.00|-2.02|00019453|0|1| +38|2023-10-06T21:13:05.1420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5600|10000|0||103.24|81.65|0.00|-2.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:13:05.1420000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:13:04.6520000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:13:04.6520000-07:00|Change|4002248D||||||||||||||| +261|2023-10-06T21:13:04.6520000-07:00|Change|10FF0001||| +261|2023-10-06T21:13:04.7700000-07:00|Change|400228C6||| +23|2023-10-06T21:13:05.2310000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +37|2023-10-06T21:13:05.2310000-07:00|40022472|Zeromus|0001944E|33579638||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:05.2760000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24|00019454|0|1| +38|2023-10-06T21:13:05.2760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||103.99|83.27|0.00|-2.24|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:05.2760000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:13:05.3200000-07:00|400228C9|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|154003|73770000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|33579686|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||106.94|81.81|0.00|-2.06|00019455|0|1| +21|2023-10-06T21:13:05.3200000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33100000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33579686|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||103.35|81.99|0.00|-2.09|00019456|0|1| +37|2023-10-06T21:13:05.4550000-07:00|40022472|Zeromus|00019452|33576675||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:05.4990000-07:00|40022472|Zeromus|0001944F|33574410||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:04.9920000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:13:04.9920000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:13:04.9920000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:13:04.9920000-07:00|Change|4002248A||||||||||||| +39|2023-10-06T21:13:05.5440000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +21|2023-10-06T21:13:05.5880000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16A00000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|33574410|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||103.48|85.11|0.00|-1.39|00019457|0|1| +21|2023-10-06T21:13:05.5880000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|756003|15CB0000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|33574410|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|7910|10000|||109.67|88.64|0.00|-1.94|00019458|0|1| +21|2023-10-06T21:13:05.6320000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33574410|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||103.48|85.11|0.00|-1.39|00019459|0|1| +37|2023-10-06T21:13:05.7230000-07:00|40022472|Zeromus|0001944D|33537977||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:05.7230000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||103.01|81.78|0.00|-1.90| +21|2023-10-06T21:13:05.7230000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|152003|73500000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|33574410|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||102.04|83.22|0.00|-1.36|0001945A|0|1| +38|2023-10-06T21:13:05.7230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||102.04|83.22|0.00|-1.36|0|0|0||||||||||||| +30|2023-10-06T21:13:05.7230000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:13:05.7670000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||103.99|83.27|0.00|-2.24| +24|2023-10-06T21:13:05.7670000-07:00|40022472|Zeromus|DoT|0|1AE4|33574410|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|5600|10000|||101.09|82.40|0.00|-0.65| +38|2023-10-06T21:13:05.7670000-07:00|40022472|Zeromus|005A5A00|33531093|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T21:13:05.8110000-07:00|10FF0003|Gegehi Gehi|73814|73814|7700|10000|||104.72|82.35|0.00|-2.02| +261|2023-10-06T21:13:05.2980000-07:00|Change|10FF0003||| +21|2023-10-06T21:13:05.8110000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||103.99|83.27|-0.02|-2.22|82773|82773|10000|10000|||103.99|83.27|-0.02|-2.22|0001945B|0|1| +38|2023-10-06T21:13:05.8110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||103.99|83.27|-0.02|-2.22|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:05.8110000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +261|2023-10-06T21:13:05.2980000-07:00|Change|10FF0009||||||||||||||||||| +36|2023-10-06T21:13:05.8560000-07:00|1F18|3| +37|2023-10-06T21:13:05.9000000-07:00|40022472|Zeromus|00019453|33515907||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:05.9000000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8800|10000|||102.85|82.14|0.00|-1.47| +261|2023-10-06T21:13:05.4020000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:13:05.9890000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||101.18|85.95|0.00|-2.05| +39|2023-10-06T21:13:05.9890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9300|10000|||100.80|83.61|0.00|-2.85| +21|2023-10-06T21:13:05.9890000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|754003|335C0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|33515907|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7700|10000|||104.70|82.36|0.00|-1.91|0001945C|0|1| +261|2023-10-06T21:13:05.4940000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:13:06.0350000-07:00|10FF0009|Zewo Negiwo|81177|81177|7731|10000|||108.71|88.72|0.00|-2.23| +21|2023-10-06T21:13:06.0350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33515907|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5600|10000|||98.60|82.57|0.00|-0.30|0001945D|0|1| +31|2023-10-06T21:13:06.0350000-07:00|10FF0001||||| +39|2023-10-06T21:13:06.0800000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5800|10000|||98.60|82.57|0.00|-0.30| +37|2023-10-06T21:13:06.1240000-07:00|40022472|Zeromus|00019457|33510115||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:06.1240000-07:00|40022472|Zeromus|00019456|33497043||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:05.7070000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:13:06.1680000-07:00|40022472|Zeromus|00019459|33494175||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:06.3020000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|554003|637A0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|33494175|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.19|83.53|0.00|-2.17|0001945E|0|1| +38|2023-10-06T21:13:06.3020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||103.19|83.53|0.00|-2.17|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:06.3020000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:13:06.3020000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +38|2023-10-06T21:13:06.3460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.07|87.44|0.00|-1.28|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:06.3460000-07:00|A91|Undying Flame|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +261|2023-10-06T21:13:05.8280000-07:00|Change|10FF0007||||||||| +22|2023-10-06T21:13:06.4800000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0009|Zewo Negiwo|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|0001945F|0|8| +22|2023-10-06T21:13:06.4800000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||101.53|84.17|0.00|-2.73|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|0001945F|1|8| +22|2023-10-06T21:13:06.4800000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|7700|10000|||104.60|82.41|0.00|-2.04|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|0001945F|2|8| +22|2023-10-06T21:13:06.4800000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9300|10000|||100.45|83.74|0.00|-2.85|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|0001945F|3|8| +22|2023-10-06T21:13:06.4800000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||98.62|87.93|0.00|-1.31|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|0001945F|4|8| +22|2023-10-06T21:13:06.4800000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||98.93|82.68|0.00|-1.37|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|0001945F|5|8| +22|2023-10-06T21:13:06.4800000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8800|10000|||98.89|83.18|0.00|-1.32|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|0001945F|6|8| +22|2023-10-06T21:13:06.4800000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|5800|10000|||96.78|82.83|0.00|-0.08|81177|81177|7731|10000|||106.78|87.34|0.00|-2.32|0001945F|7|8| +37|2023-10-06T21:13:06.5690000-07:00|40022472|Zeromus|0001945A|33464655||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:06.5690000-07:00|40022472|Zeromus|0001945D|33462387||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:06.6150000-07:00|40022472|Zeromus|0001945C|33449239||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:06.1570000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:13:06.2510000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:13:06.8820000-07:00|40022472|Zeromus|00019458|33443660|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:13:06.8820000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +21|2023-10-06T21:13:06.8820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33449239|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||98.80|84.98|0.00|-1.82|00019460|0|1| +21|2023-10-06T21:13:06.8820000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|26320000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|33449239|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8800|10000|||96.39|84.44|0.00|-1.13|00019461|0|1| +21|2023-10-06T21:13:06.9260000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E780000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||96.59|89.91|0.00|-1.50|33449239|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019462|0|1| +04|2023-10-06T21:13:06.4420000-07:00|400228C6|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||103.02|81.71|0.00|1.08| +261|2023-10-06T21:13:06.4420000-07:00|Remove|400228C6| +37|2023-10-06T21:13:07.0160000-07:00|40022472|Zeromus|0001945E|33418194||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:07.0160000-07:00|10FF000A|Dukaro Nezikaro|0001945E|82773|82773|10000|10000|0||97.80|84.82|0.00|-2.36|1E00|0|0|01|03000A82|01|41F00000|| +38|2023-10-06T21:13:07.0160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.80|84.82|0.00|-2.36|0|0|0||||||||||||||||||| +261|2023-10-06T21:13:06.5580000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:06.5580000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:13:07.0610000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33443660|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||95.75|84.85|0.00|2.44|00019463|0|1| +21|2023-10-06T21:13:07.1050000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|57CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33418194|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.03|83.50|0.00|-1.38|00019464|0|1| +21|2023-10-06T21:13:07.1050000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|13930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33418194|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.15|84.76|0.00|-2.43|00019465|0|1| +261|2023-10-06T21:13:06.6820000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:13:06.6820000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:13:07.2380000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|B0C|90216|90216|10000|10000|||94.39|83.61|0.00|2.23|400228A0||0||||||||||| +38|2023-10-06T21:13:07.2380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||94.39|83.61|0.00|2.23|0|0|0||||||||||||| +261|2023-10-06T21:13:06.7930000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:13:07.2830000-07:00|10FF0009|Zewo Negiwo|0001945F|81177|81177|7731|10000|0||100.87|87.30|0.00|-1.62|1800|0|0|01|020004C3|0|41200000|| +26|2023-10-06T21:13:07.2830000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:13:07.2830000-07:00|40022472|Zeromus|00019455|33388635||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:07.2830000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|790|82773|82773|10000|10000|||96.44|84.79|0.00|-2.62|400228A0||0||||||||||| +38|2023-10-06T21:13:07.2830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||96.44|84.79|0.00|-2.62|0|0|0||||||||||||||||||| +261|2023-10-06T21:13:06.7930000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:13:07.3280000-07:00|10FF0003|Gegehi Gehi|HoT|0|756|73814|73814|7700|10000|||99.35|84.97|0.00|-1.15|400228A0||0||||||||||| +38|2023-10-06T21:13:07.3280000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7700|10000|0||99.35|84.97|0.00|-1.15|0|0|0||||||||||||| +24|2023-10-06T21:13:07.3730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|AF2|81541|81541|8400|10000|||95.96|84.73|0.00|2.44|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8400|10000|||95.96|84.73|0.00|2.44| +38|2023-10-06T21:13:07.3730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|0||95.96|84.73|0.00|2.44|0|0|0|||||||||||||||| +37|2023-10-06T21:13:07.4160000-07:00|10FF000A|Dukaro Nezikaro|0001945F|82773|82773|10000|10000|0||95.09|84.83|0.00|-2.99|1E01|0|0|01|040004C3|0|41200000|| +26|2023-10-06T21:13:07.4160000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:13:07.4160000-07:00|40022472|Zeromus|00019460|33388489||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:07.4160000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33388635|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||93.05|83.81|0.00|-2.70|00019466|0|1| +24|2023-10-06T21:13:07.4620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|B7C|129844|129844|10000|10000|||93.81|90.97|0.00|-1.53|400228A0||0||||||||||| +24|2023-10-06T21:13:07.4620000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7D1|81809|81809|9300|10000|||95.98|86.92|0.00|-0.98|10FF0006|Wowobora Gogobora|0|81809|81809|9300|10000|||95.98|86.92|0.00|-0.98| +21|2023-10-06T21:13:07.4620000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37754003|3DC40000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|33388635|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7700|10000|||98.80|85.24|0.00|-1.14|00019467|0|1| +38|2023-10-06T21:13:07.4620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.81|90.97|0.00|-1.53|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:13:07.4620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|0||95.98|86.92|0.00|-0.98|0|0|0||||||||||||| +261|2023-10-06T21:13:07.0180000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:13:07.5510000-07:00|10FF0003|Gegehi Gehi|0001945F|73814|73814|7700|10000|0||98.12|85.55|0.00|2.63|2302|0|0|01|010004C3|0|41200000|| +26|2023-10-06T21:13:07.5510000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +24|2023-10-06T21:13:07.5510000-07:00|10FF0009|Zewo Negiwo|HoT|0|793|81177|81177|7731|10000|||98.98|87.49|0.00|-1.50|400228A0||0||||||||||| +38|2023-10-06T21:13:07.5510000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7731|10000|0||98.98|87.49|0.00|-1.50|0|0|0||||||||||||| +37|2023-10-06T21:13:07.5950000-07:00|40022472|Zeromus|00019463|33388343||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:07.5950000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|AB3|129071|129071|5800|10000|||90.65|83.94|0.00|0.36|400228A0||0||||||||||| +38|2023-10-06T21:13:07.5950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||90.65|83.94|0.00|0.36|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:13:07.6390000-07:00|40022472|Zeromus|00019465|33383332||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:07.6390000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|33100000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|33388343|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||90.05|84.17|0.00|0.36|00019468|0|1| +38|2023-10-06T21:13:07.6390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||90.05|84.17|0.00|0.36|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:07.6390000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:13:07.6390000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:13:07.6830000-07:00|10FF0006|Wowobora Gogobora|0001945F|81809|81809|9300|10000|0||94.85|87.54|0.00|-1.04|1B03|0|0|01|040004C3|0|41200000|| +26|2023-10-06T21:13:07.6830000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:13:07.7280000-07:00|10FF0007|Kehabiqo Febiqo|00019462|113852||||||91.81|91.28|0.00|-1.44| +261|2023-10-06T21:13:07.3180000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:13:07.8170000-07:00|10FF0007|Kehabiqo Febiqo|0001945F|113852|129844|10000|10000|0||91.81|91.28|0.00|-1.44|1504|0|0|01|010004C3|0|41200000|| +26|2023-10-06T21:13:07.8170000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:13:07.8170000-07:00|40022472|Zeromus|00019461|33373554||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:07.8170000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|44BC0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|33383332|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||93.96|86.13|0.00|-1.38|00019469|0|1| +38|2023-10-06T21:13:07.8180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||93.96|86.13|0.00|-1.38|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:07.8180000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:13:07.4080000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:07.4080000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:07.9510000-07:00|10FF0008|Kokosaze Lulusaze|0001945F|90216|90216|10000|10000|0||90.72|84.85|0.00|-1.34|1F05|0|0|01|020004C3|0|41200000|| +26|2023-10-06T21:13:07.9510000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +261|2023-10-06T21:13:07.4980000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:13:07.4980000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:13:08.0410000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20470000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|33373554|40478540|10000|10000|||100.00|80.10|0.00|0.00|113852|129844|10000|10000|||90.58|91.46|0.00|-1.44|0001946A|0|1| +37|2023-10-06T21:13:08.0850000-07:00|10FF0004|Buhojaqe Zijaqe|0001945F|81541|81541|8400|10000|0||91.58|87.37|0.00|-1.21|1C06|0|0|01|050004C3|0|41200000|| +26|2023-10-06T21:13:08.0850000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:13:08.0850000-07:00|40022472|Zeromus|00019467|33357742||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:08.1310000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14C30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|113852|129844|10000|10000|||89.27|91.53|0.00|3.09|73956|77430|10000|10000|||99.78|95.75|0.00|-2.85|0001946B|0|1| +38|2023-10-06T21:13:08.1310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113852|129844|10000|10000|0||89.27|91.53|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:08.1310000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:13:07.7270000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:13:08.1760000-07:00|40022472|Zeromus|00019466|33354850||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:08.1760000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|152003|71740000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|33357742|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||91.69|88.52|0.00|-1.26|0001946C|0|1| +21|2023-10-06T21:13:08.1760000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33357742|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7700|10000|||94.27|86.78|0.00|-1.81|0001946D|0|1| +37|2023-10-06T21:13:08.2200000-07:00|10FF0001|Sesuga Sapisuga|0001945F|129071|129071|5800|10000|0||87.06|85.30|0.00|0.36|1307|0|0|03|0200076E|03|C1F00000|||||||||| +26|2023-10-06T21:13:08.2200000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:13:08.2200000-07:00|40022472|Zeromus|00019468|33341778||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:08.2200000-07:00|10FF0001|Sesuga Sapisuga|00019468|129071|129071|5800|10000|0||87.06|85.30|0.00|0.36|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T21:13:08.2200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||87.06|85.30|0.00|0.36|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:13:07.8440000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:07.8440000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:13:08.2630000-07:00|40022472|Zeromus|00019464|33319299||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:08.3080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33341778|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||86.40|85.55|0.00|0.36|0001946E|0|1| +31|2023-10-06T21:13:08.3080000-07:00|10FF0001||||| +39|2023-10-06T21:13:08.5310000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|-2.30| +261|2023-10-06T21:13:08.0680000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:13:08.5760000-07:00|40022472|Zeromus|00019469|33301703||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:08.6650000-07:00|40022472|Zeromus|0001946A|33293440||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:08.7100000-07:00|40022472|Zeromus|0001946D|33293406||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:08.7100000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||87.11|87.31|0.00|-0.98| +261|2023-10-06T21:13:08.2650000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:13:08.7550000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||90.21|89.17|0.00|1.30| +24|2023-10-06T21:13:08.7550000-07:00|40022472|Zeromus|DoT|0|236D|33293406|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|5800|10000|||84.84|87.50|0.00|0.31| +38|2023-10-06T21:13:08.7550000-07:00|40022472|Zeromus|005A5A00|33284337|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:13:08.2650000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:13:08.7990000-07:00|10FF0003|Gegehi Gehi|73814|73814|7900|10000|||90.90|88.07|0.00|-1.25| +38|2023-10-06T21:13:08.7990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|0||88.35|89.12|0.00|-1.92|0|0|0|||||||||||||||| +30|2023-10-06T21:13:08.7990000-07:00|74C|Everlasting Flight|0.00|400228A0|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T21:13:08.3660000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:13:08.8440000-07:00|40022472|Zeromus|0001946E|33282184||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:13:08.8440000-07:00|1FF4|3| +39|2023-10-06T21:13:08.8880000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8600|10000|||87.08|89.78|0.00|-1.07| +37|2023-10-06T21:13:08.9330000-07:00|10FF0007|Kehabiqo Febiqo|0001946B|119167||||||87.35|91.59|0.00|-2.62| +37|2023-10-06T21:13:08.9330000-07:00|40022472|Zeromus|0001946C|33253140||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:08.9330000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9300|10000|||87.68|89.30|0.00|-1.74|81809|81809|9300|10000|||87.68|89.30|0.00|-1.74|0001946F|0|1| +38|2023-10-06T21:13:08.9330000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8600|10000|0||87.08|89.78|0.00|-1.07|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:08.9330000-07:00|74C|Everlasting Flight|0.00|400228A0|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|| +39|2023-10-06T21:13:08.9780000-07:00|10FF0007|Kehabiqo Febiqo|120465|129844|10000|10000|||86.46|91.63|0.00|-2.13| +39|2023-10-06T21:13:08.9780000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||87.04|89.47|0.00|-1.28| +21|2023-10-06T21:13:08.9780000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A752003|72F60000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|33253140|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7900|10000|||89.57|88.62|0.00|-1.21|00019470|0|1| +261|2023-10-06T21:13:08.5510000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:13:09.0220000-07:00|10FF0009|Zewo Negiwo|81177|81177|7952|10000|||90.59|91.13|0.00|-1.15| +21|2023-10-06T21:13:09.0220000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33253140|40478540|10000|10000|||100.00|80.10|0.00|0.00|119167|129844|10000|10000|||86.46|91.63|0.00|-2.13|00019471|0|1| +261|2023-10-06T21:13:08.5510000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:13:09.0670000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6000|10000|||83.92|89.25|0.00|0.30| +38|2023-10-06T21:13:09.0670000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||88.90|88.90|0.00|2.76|0|0|0|||||||||| +30|2023-10-06T21:13:09.0670000-07:00|74C|Everlasting Flight|0.00|400228A0|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T21:13:08.6610000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:08.6610000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:13:09.2010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||88.04|90.94|0.00|0.81|0|0|0|||||||||||||||| +30|2023-10-06T21:13:09.2010000-07:00|74C|Everlasting Flight|0.00|400228A0|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|82773|| +38|2023-10-06T21:13:09.2460000-07:00|40022472|Zeromus|005A5A00|33253140|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:13:09.2460000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +21|2023-10-06T21:13:09.2900000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|12260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33253140|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||87.46|91.41|0.00|0.78|00019472|0|1| +261|2023-10-06T21:13:08.8880000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T21:13:09.3360000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7952|10000|0||88.68|91.98|0.00|-1.15|0|0|0|||||||||| +30|2023-10-06T21:13:09.3360000-07:00|74C|Everlasting Flight|0.00|400228A0|Demi-Phoenix|10FF0009|Zewo Negiwo|00|81177|| +261|2023-10-06T21:13:08.8880000-07:00|Change|400228C9||||| +261|2023-10-06T21:13:08.8880000-07:00|Change|400228C9||||| +38|2023-10-06T21:13:09.3800000-07:00|400228CE||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +20|2023-10-06T21:13:09.3800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|84.21|91.48|0.00|-1.04| +38|2023-10-06T21:13:09.3800000-07:00|40022472|Zeromus|005A5A00|33253140|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:13:09.3800000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:13:09.3800000-07:00|400228CE||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:13:08.8880000-07:00|Add|400228CE||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:13:08.8880000-07:00|400228CE|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||84.12|90.33|0.00|1.85| +261|2023-10-06T21:13:09.0020000-07:00|Change|400228CE||| +38|2023-10-06T21:13:09.4250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||83.35|90.27|0.00|-0.88|0|0|0|||||||||| +30|2023-10-06T21:13:09.4250000-07:00|74C|Everlasting Flight|0.00|400228A0|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|| +37|2023-10-06T21:13:09.5570000-07:00|40022472|Zeromus|00019471|33250195||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:09.5570000-07:00|10FF0006|Wowobora Gogobora|0001946F|81809|81809|9500|10000|0||83.98|90.32|0.00|-1.29|1B00|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T21:13:09.5570000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:13:09.6030000-07:00|40022472|Zeromus|00019470|33220765||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:09.6030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6000|10000|0||81.86|91.40|0.00|0.35|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:09.6030000-07:00|74C|Everlasting Flight|0.00|400228A0|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|| +261|2023-10-06T21:13:09.1210000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:13:09.2120000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:13:09.6470000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1DA30000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|33250195|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||82.41|91.12|0.00|-0.86|00019473|0|1| +38|2023-10-06T21:13:09.6920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120465|129844|10000|10000|0||82.93|92.41|-0.01|-1.54|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:09.6920000-07:00|74C|Everlasting Flight|0.00|400228A0|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|| +261|2023-10-06T21:13:09.2120000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:13:09.8250000-07:00|40022472|Zeromus|00019472|33216119||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:09.8250000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|720003|33710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33220765|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7900|10000|||85.85|90.15|0.00|-1.32|00019474|0|1| +261|2023-10-06T21:13:09.4160000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:13:09.4160000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:13:09.9590000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40BC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|120465|129844|10000|10000|||82.72|92.48|0.00|-1.51|33216119|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019475|0|1| +21|2023-10-06T21:13:10.0040000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33216119|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||81.73|91.31|0.00|-1.16|00019476|0|1| +21|2023-10-06T21:13:10.0930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33216119|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.84|91.61|0.00|2.13|00019477|0|1| +21|2023-10-06T21:13:10.1380000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|175B0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|33216119|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||84.39|92.14|0.00|0.60|00019478|0|1| +21|2023-10-06T21:13:10.1830000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|3AD90000|200004|3F8A8000|0|0|0|0|0|0|0|0|0|0|0|0|33216119|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||81.46|92.28|0.00|2.15|00019479|0|1| +38|2023-10-06T21:13:10.1830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5000|10000|0||81.46|92.28|0.00|2.15|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:10.1830000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +20|2023-10-06T21:13:10.2290000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|83.26|91.67|0.00|-1.76| +261|2023-10-06T21:13:09.8580000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:13:10.3160000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33C80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33216119|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||83.36|92.00|0.00|2.19|0001947A|0|1| +37|2023-10-06T21:13:10.4050000-07:00|40022472|Zeromus|00019473|33208532||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:13:10.4050000-07:00|400228CE|Carbuncle|400228CE|Carbuncle|01| +261|2023-10-06T21:13:09.9730000-07:00|Change|400228CE||||||||| +21|2023-10-06T21:13:10.4940000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F716003|60640000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|33208532|40478540|10000|10000|||100.00|80.10|0.00|0.00|120465|129844|10000|10000|||82.72|92.48|0.00|-1.51|0001947B|0|1| +38|2023-10-06T21:13:10.4940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120465|129844|10000|10000|0||82.72|92.48|0.00|-1.51|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:10.4940000-07:00|A75|Surging Tempest|30.36|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:13:10.4940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||81.10|92.01|0.00|-0.93|0|0|0|||||||||||||||| +37|2023-10-06T21:13:10.5390000-07:00|40022472|Zeromus|00019476|33208374||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:10.5390000-07:00|40022472|Zeromus|00019478|33202395||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:10.5830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33202395|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5000|10000|||81.46|92.28|0.00|2.15|0001947C|0|1| +31|2023-10-06T21:13:10.5830000-07:00|10FF0001||||| +20|2023-10-06T21:13:10.6720000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|81.03|92.09|0.00|-0.90| +261|2023-10-06T21:13:10.2820000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:13:10.7620000-07:00|10FF0007|Kehabiqo Febiqo|00019475|103893||||||82.72|92.48|0.00|2.19| +37|2023-10-06T21:13:10.8520000-07:00|40022472|Zeromus|00019477|33200053||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:10.3760000-07:00|Change|10FF0009||||||||||||||||||||| +261|2023-10-06T21:13:10.4680000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T21:13:10.9400000-07:00|40022472|Zeromus|00019479|33184988||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:10.9850000-07:00|40022472|Zeromus|00019474|33171819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:11.1180000-07:00|40022472|Zeromus|0001947C|33169689||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:11.1180000-07:00|40022472|Zeromus|0001947A|33156433||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:11.1620000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31050000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|33171819|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|7952|10000|||83.09|91.08|0.00|2.15|0001947D|0|1| +21|2023-10-06T21:13:11.1620000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|734003|C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33171819|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||82.91|92.32|0.00|-1.28|0001947E|0|1| +261|2023-10-06T21:13:10.6870000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:13:10.8050000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:10.9150000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:13:11.3850000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022472|Zeromus|154003|66070000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|33156433|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7900|10000|||82.05|91.81|0.00|-1.16|0001947F|0|1| +38|2023-10-06T21:13:11.3850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5000|10000|0||81.27|92.77|0.00|0.92|0|0|0|||||||||||||||| +30|2023-10-06T21:13:11.3850000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:13:11.3850000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7500|10000|0||82.05|91.81|0.00|-1.16|0|0|0||||||||||||| +26|2023-10-06T21:13:11.3850000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:13:10.9150000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:13:11.4740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33156433|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.13|91.98|0.00|-1.76|00019480|0|1| +39|2023-10-06T21:13:11.5170000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|-3.08| +21|2023-10-06T21:13:11.6070000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14730000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|103893|129844|10000|10000|||82.72|92.48|0.00|2.19|73956|77430|10000|10000|||99.78|95.75|0.00|-2.93|00019481|0|1| +21|2023-10-06T21:13:11.6520000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33156433|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7500|10000|||82.05|91.81|0.00|2.15|00019482|0|1| +37|2023-10-06T21:13:11.6970000-07:00|40022472|Zeromus|0001947E|33156240||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:11.6970000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||81.74|91.69|0.00|2.13| +39|2023-10-06T21:13:11.7420000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||83.05|91.97|0.00|-1.70| +24|2023-10-06T21:13:11.7420000-07:00|40022472|Zeromus|DoT|0|1D9B|33156433|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|7552|10000|||83.09|91.08|0.00|2.15| +38|2023-10-06T21:13:11.7420000-07:00|40022472|Zeromus|005A5A00|33148661|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +20|2023-10-06T21:13:11.7860000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|81.90|92.69|0.00|-1.32| +39|2023-10-06T21:13:11.8310000-07:00|10FF0003|Gegehi Gehi|73814|73814|7700|10000|||82.05|91.81|0.00|2.15| +261|2023-10-06T21:13:11.4260000-07:00|Change|10FF0009||||||||||||||| +39|2023-10-06T21:13:11.8750000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8400|10000|||81.90|92.69|0.00|-2.09| +36|2023-10-06T21:13:11.8750000-07:00|20D0|3| +261|2023-10-06T21:13:11.4260000-07:00|Change|10FF0003||| +39|2023-10-06T21:13:11.9640000-07:00|10FF0007|Kehabiqo Febiqo|105191|129844|10000|10000|||82.72|92.48|0.00|2.19| +39|2023-10-06T21:13:11.9640000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||81.01|92.12|0.00|2.14| +37|2023-10-06T21:13:12.0090000-07:00|40022472|Zeromus|00019480|33146083||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:12.0520000-07:00|10FF0009|Zewo Negiwo|81177|81177|7773|10000|||83.09|91.08|0.00|2.15| +39|2023-10-06T21:13:12.0990000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5200|10000|||81.27|92.77|0.00|0.92| +37|2023-10-06T21:13:12.1420000-07:00|40022472|Zeromus|0001947B|33121407||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:12.1420000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2E4D0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|33148661|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.74|91.69|0.00|2.13|00019483|0|1| +261|2023-10-06T21:13:11.6120000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:13:12.1860000-07:00|40022472|Zeromus|00019482|33121379||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:12.1860000-07:00|10FF0003|Gegehi Gehi|00019482|73814|73814|7700|10000|0||82.05|91.81|0.00|2.15|2300|0|0|01|030004D2|0|C1F00000|| +21|2023-10-06T21:13:12.3210000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2C620000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|33121379|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.05|91.97|0.00|-1.70|00019484|0|1| +261|2023-10-06T21:13:11.9530000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:13:12.4090000-07:00|10FF0007|Kehabiqo Febiqo|00019481|110426||||||82.72|92.48|0.00|2.19| +21|2023-10-06T21:13:12.4090000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33121379|40478540|10000|10000|||100.00|80.10|0.00|0.00|105191|129844|10000|10000|||82.72|92.48|0.00|2.19|00019485|0|1| +21|2023-10-06T21:13:12.4090000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|722003|66AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33121379|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7700|10000|||82.05|91.81|0.00|2.15|00019486|0|1| +37|2023-10-06T21:13:12.4540000-07:00|40022472|Zeromus|0001947D|33108830||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:12.0690000-07:00|Change|10FF0001||||||||| +20|2023-10-06T21:13:12.6330000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|83.09|91.08|0.00|2.15| +21|2023-10-06T21:13:12.6770000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|3E980000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|33108830|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5200|10000|||81.27|92.77|0.00|2.17|00019487|0|1| +38|2023-10-06T21:13:12.6770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5200|10000|0||81.27|92.77|0.00|2.17|0|0|0|||||||||||||||| +26|2023-10-06T21:13:12.6770000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T21:13:12.7220000-07:00|40022472|Zeromus|00019484|33097468||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:12.7230000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|53CB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33097468|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||81.90|92.70|0.00|2.18|00019488|0|1| +21|2023-10-06T21:13:12.7670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33097468|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.74|91.69|0.00|2.14|00019489|0|1| +37|2023-10-06T21:13:12.8130000-07:00|40022472|Zeromus|0001947F|33071349||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:12.8130000-07:00|10FF0003|Gegehi Gehi|0001947F|73814|73814|7700|10000|0||82.05|91.81|0.00|2.15|2300|0|0|01|030004D2|0|41F00000|| +38|2023-10-06T21:13:12.8130000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7700|10000|0||82.05|91.81|0.00|2.15|0|0|0||||||||||||| +21|2023-10-06T21:13:12.8560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33071349|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5200|10000|||81.27|92.77|0.00|2.17|0001948A|0|1| +31|2023-10-06T21:13:12.8560000-07:00|10FF0001||||| +261|2023-10-06T21:13:12.4650000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:13:12.9440000-07:00|40022472|Zeromus|00019485|33066716||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:12.9440000-07:00|40022472|Zeromus|00019483|33054863||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:12.9440000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|714003|1B400000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|33071349|40478540|10000|10000|||100.00|80.10|0.00|0.00|110426|129844|10000|10000|||82.72|92.48|0.00|2.19|0001948B|0|1| +21|2023-10-06T21:13:12.9440000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|56150000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|33071349|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||81.01|92.12|0.00|2.14|0001948C|0|1| +261|2023-10-06T21:13:12.4650000-07:00|Change|10FF0006||||||||||||||||| +261|2023-10-06T21:13:12.4650000-07:00|Change|10FF0006||||||||||||||||| +21|2023-10-06T21:13:12.9890000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3EF60000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|110426|129844|10000|10000|||82.72|92.48|0.00|2.19|33071349|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001948D|0|1| +261|2023-10-06T21:13:12.5600000-07:00|Remove|400228C9| +04|2023-10-06T21:13:12.5600000-07:00|400228C9|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||106.94|81.81|0.00|-2.06| +21|2023-10-06T21:13:13.0340000-07:00|40022489|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||114.00|100.00|0.00|0.79|0001948E|0|0| +21|2023-10-06T21:13:13.0340000-07:00|4002248A|Zeromus|8CF8|unknown_8cf8|4002248A|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||114.00|100.00|0.00|0.79|44|44|0|10000|||114.00|100.00|0.00|0.79|0001948F|0|1| +21|2023-10-06T21:13:13.0340000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.79|00019490|0|0| +21|2023-10-06T21:13:13.0340000-07:00|4002248C|Zeromus|8CF8|unknown_8cf8|4002248C|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|00019491|0|1| +21|2023-10-06T21:13:13.0340000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|86.00|0.00|0.79|00019492|0|0| +21|2023-10-06T21:13:13.0340000-07:00|4002248E|Zeromus|8CF8|unknown_8cf8|4002248E|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|86.00|0.00|0.79|44|44|0|10000|||100.00|86.00|0.00|0.79|00019493|0|1| +261|2023-10-06T21:13:12.5600000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:13:12.5600000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:13:12.5600000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:13:12.5600000-07:00|Change|4002248C||||||||||| +261|2023-10-06T21:13:12.5600000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:13:12.5600000-07:00|Change|4002248E||||||||||||| +21|2023-10-06T21:13:13.2110000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8000|10000|||81.90|92.70|0.00|2.18|81541|81541|8000|10000|||81.90|92.70|0.00|2.18|00019494|0|1| +37|2023-10-06T21:13:13.3870000-07:00|40022472|Zeromus|0001948A|33053213||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:13.0250000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:13:13.4770000-07:00|40022472|Zeromus|0001948B|33046237||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:13.4770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||81.01|92.12|0.00|2.14|0|0|0|||||||||||||||| +261|2023-10-06T21:13:13.0250000-07:00|Change|10FF0006||| +37|2023-10-06T21:13:13.5210000-07:00|40022472|Zeromus|00019489|33043926||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:13.5210000-07:00|40022472|Zeromus|00019488|33022475||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:13.5660000-07:00|40022472|Zeromus|00019486|32996192||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:13.5660000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|311D0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|33046237|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|7773|10000|||83.09|91.08|0.00|2.15|00019495|0|1| +37|2023-10-06T21:13:13.6090000-07:00|40022472|Zeromus|0001948C|32974155||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:13.6550000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|81.01|92.12|0.00|2.14| +21|2023-10-06T21:13:13.6550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32974155|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.06|91.97|-0.02|2.17|00019496|0|1| +37|2023-10-06T21:13:13.7870000-07:00|10FF0007|Kehabiqo Febiqo|0001948D|94308||||||85.55|92.43|-0.02|1.62| +21|2023-10-06T21:13:13.7880000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|750003|5D8A0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|32974155|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7700|10000|||82.05|91.81|0.00|2.15|00019497|0|1| +37|2023-10-06T21:13:13.8320000-07:00|10FF0004|Buhojaqe Zijaqe|00019494|81541|81541|8000|10000|0||81.90|92.72|0.00|0.58|1C00|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:13:13.8320000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:13:13.3530000-07:00|Change|10FF0003||| +261|2023-10-06T21:13:13.4570000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:13:13.9670000-07:00|40022472|Zeromus|00019487|32958131||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:13.9670000-07:00|10FF0001|Sesuga Sapisuga|00019487|129071|129071|5600|10000|0||81.27|92.77|0.00|2.17|1300|0|0|0| +261|2023-10-06T21:13:13.5570000-07:00|Change|10FF0001||| +37|2023-10-06T21:13:14.1910000-07:00|40022472|Zeromus|00019496|32955895||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:14.1910000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|32958131|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||83.22|93.91|0.00|0.68|00019498|0|1| +261|2023-10-06T21:13:14.0230000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:13:14.1350000-07:00|Change|10FF0006||||||||||||| +39|2023-10-06T21:13:14.5470000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +261|2023-10-06T21:13:14.1350000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:13:14.5930000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|12A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32955895|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7300|10000|||82.10|91.81|0.00|1.91|00019499|0|1| +21|2023-10-06T21:13:14.5930000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|308B0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|32955895|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||87.77|94.01|0.00|1.08|0001949A|0|1| +21|2023-10-06T21:13:14.6370000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3CD50000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|32955895|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.74|91.69|0.00|2.14|0001949B|0|1| +39|2023-10-06T21:13:14.7260000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||81.74|91.69|0.00|2.14| +261|2023-10-06T21:13:14.3330000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:13:14.7710000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||88.28|94.17|0.00|2.22| +24|2023-10-06T21:13:14.7710000-07:00|40022472|Zeromus|DoT|0|1DF8|32955895|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|7373|10000|||84.60|92.28|0.00|1.28| +38|2023-10-06T21:13:14.7710000-07:00|40022472|Zeromus|005A5A00|32948223|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:13:14.8140000-07:00|40022472|Zeromus|00019498|32948223|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:13:14.8140000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +39|2023-10-06T21:13:14.8140000-07:00|10FF0003|Gegehi Gehi|73814|73814|7500|10000|||82.11|91.81|0.00|2.15| +37|2023-10-06T21:13:14.8590000-07:00|40022472|Zeromus|00019495|32935650||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:13:14.8590000-07:00|21AC|3| +261|2023-10-06T21:13:14.4320000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:13:14.5310000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:13:14.9040000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7800|10000|||84.86|94.65|-0.02|2.00| +39|2023-10-06T21:13:14.9930000-07:00|10FF0007|Kehabiqo Febiqo|95606|129844|10000|10000|||92.14|92.41|0.00|2.18| +39|2023-10-06T21:13:14.9930000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||81.01|92.12|0.00|2.14| +21|2023-10-06T21:13:15.0380000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15360000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|95606|129844|10000|10000|||93.00|92.30|0.00|2.40|73956|77430|10000|10000|||99.78|95.75|0.00|-2.97|0001949C|0|1| +39|2023-10-06T21:13:15.0390000-07:00|10FF0009|Zewo Negiwo|81177|81177|7594|10000|||85.66|93.30|0.00|1.01| +261|2023-10-06T21:13:14.6380000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:13:15.0820000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5800|10000|||86.30|94.07|0.00|1.69| +37|2023-10-06T21:13:15.1270000-07:00|40022472|Zeromus|0001949A|32923223||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:15.1270000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32935650|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||86.89|93.99|0.00|1.70|0001949D|0|1| +21|2023-10-06T21:13:15.1270000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32935650|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7500|10000|||82.49|91.57|0.00|2.15|0001949E|0|1| +31|2023-10-06T21:13:15.1270000-07:00|10FF0001||||| +21|2023-10-06T21:13:15.1720000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32935650|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.83|91.69|0.00|1.85|0001949F|0|1| +21|2023-10-06T21:13:15.1720000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|716003|50550000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32935650|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||86.89|93.99|0.00|1.70|000194A0|0|1| +38|2023-10-06T21:13:15.1720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||86.89|93.99|0.00|1.70|0|0|0|||||||||||||||| +26|2023-10-06T21:13:15.1720000-07:00|76E|Sword Oath|23.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:13:15.2150000-07:00|40022472|Zeromus|00019499|32918455||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:15.2600000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|86.47|94.15|-0.02|0.95| +21|2023-10-06T21:13:15.3050000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32918455|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||87.40|95.20|0.00|1.58|000194A1|0|1| +39|2023-10-06T21:13:15.3500000-07:00|400228CE|Carbuncle|77698|77698|10000|10000|||82.96|92.27|0.00|-0.55| +21|2023-10-06T21:13:15.3500000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|754003|2FEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32918455|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||90.58|94.47|0.00|1.69|000194A2|0|1| +261|2023-10-06T21:13:14.8690000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:13:15.4380000-07:00|40022472|Zeromus|0001949B|32902882||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:15.4380000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|38C80000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|32918455|40478540|10000|10000|||100.00|80.10|0.00|0.00|95606|129844|10000|10000|||94.96|93.11|0.00|2.78|000194A3|0|1| +21|2023-10-06T21:13:15.4380000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32918455|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.59|91.58|0.00|2.19|000194A4|0|1| +261|2023-10-06T21:13:14.9860000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:13:15.6160000-07:00|40022472|Zeromus|00019497|32878936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:15.6610000-07:00|40022472|Zeromus|0001949D|32876080||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:15.6610000-07:00|40022472|Zeromus|0001949E|32876052||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:15.7950000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32876052|40478540|10000|10000|||100.00|80.10|0.00|0.00|95606|129844|10000|10000|||97.30|92.99|0.00|2.91|000194A5|0|1| +37|2023-10-06T21:13:15.8400000-07:00|10FF0007|Kehabiqo Febiqo|0001949C|101036||||||97.30|92.99|0.00|2.91| +37|2023-10-06T21:13:15.8400000-07:00|40022472|Zeromus|000194A1|32875894||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:15.8400000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|131A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32876052|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||86.50|91.40|0.00|1.76|000194A6|0|1| +21|2023-10-06T21:13:15.8400000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DD60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32876052|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.33|94.52|0.00|2.61|000194A7|0|1| +261|2023-10-06T21:13:15.4850000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:13:15.9280000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|50AA0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|32875894|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||81.01|92.12|0.00|2.14|000194A8|0|1| +261|2023-10-06T21:13:15.4850000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:13:15.4850000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T21:13:15.9730000-07:00|40022472|Zeromus|0001949F|32870600||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:15.5750000-07:00|Change|10FF0009||||||||||||||||||| +37|2023-10-06T21:13:16.0180000-07:00|40022472|Zeromus|000194A2|32858333||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:16.0180000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E170000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|101036|129844|10000|10000|||97.84|91.40|0.00|3.11|32870600|40478540|10000|10000|||100.00|80.10|0.00|0.00|000194A9|0|1| +37|2023-10-06T21:13:16.0630000-07:00|40022472|Zeromus|000194A3|32843797||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:15.7910000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:13:16.1970000-07:00|40022472|Zeromus|000194A4|32840839||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:16.1970000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|33A70000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32843797|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|7594|10000|||87.02|94.77|0.00|2.42|000194AA|0|1| +21|2023-10-06T21:13:16.2420000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|752003|ABB30000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|32843797|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7500|10000|||84.62|94.33|0.00|1.38|000194AB|0|1| +261|2023-10-06T21:13:15.7910000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:13:16.3300000-07:00|40022472|Zeromus|000194A5|32837997||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:16.3750000-07:00|40022472|Zeromus|000194A7|32834455||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:16.3750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8350|10000|0||94.33|97.37|0.00|1.21|0|0|0||||||||||||||||||| +37|2023-10-06T21:13:16.4650000-07:00|40022472|Zeromus|000194A6|32829565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:16.4650000-07:00|40022472|Zeromus|000194A0|32809000||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:16.4650000-07:00|10FF0001|Sesuga Sapisuga|000194A0|129071|129071|6200|10000|0||90.20|87.76|0.00|1.47|1300|0|0|0| +38|2023-10-06T21:13:16.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||81.01|92.12|0.00|2.14|0|0|0|||||||||||||||| +37|2023-10-06T21:13:16.5540000-07:00|40022472|Zeromus|000194A8|32788350||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:16.5540000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|95.38|97.80|0.00|1.14| +21|2023-10-06T21:13:16.6880000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|32788350|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||81.03|92.12|0.00|1.95|000194AC|0|1| +38|2023-10-06T21:13:16.6880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||81.03|92.12|0.00|1.95|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:16.6880000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:13:16.2410000-07:00|Change|400228CE||||||||| +38|2023-10-06T21:13:16.7320000-07:00|400228F1||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:13:16.7330000-07:00|400228F1||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:13:16.7760000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1E980000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|32788350|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.35|91.28|0.00|3.08|000194AD|0|1| +37|2023-10-06T21:13:16.8210000-07:00|10FF0007|Kehabiqo Febiqo|000194A9|85141||||||94.44|89.22|0.00|3.13| +21|2023-10-06T21:13:16.8660000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|7194|10000|||87.07|94.74|0.00|2.12|81177|81177|7194|10000|||87.07|94.74|0.00|2.12|000194AE|0|1| +261|2023-10-06T21:13:16.4310000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:16.4310000-07:00|Change|10FF0007||||||||| +03|2023-10-06T21:13:16.5220000-07:00|400228F1|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||81.16|94.69|0.00|2.16| +261|2023-10-06T21:13:16.5220000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:16.5220000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:13:16.5220000-07:00|Add|400228F1||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:16.5220000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:13:16.5220000-07:00|Change|400228F1||||| +261|2023-10-06T21:13:16.6400000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:13:17.1330000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|726003|3BE10000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|32788350|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||91.55|94.29|0.00|0.98|000194AF|0|1| +261|2023-10-06T21:13:16.6400000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:13:17.1770000-07:00|40022472|Zeromus|000194AD|32780518||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:17.2670000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7194|10000|0||87.53|95.02|0.00|1.04|0|0|0||||||| +30|2023-10-06T21:13:17.2670000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:13:16.7590000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:13:17.4000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32780518|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6200|10000|||90.76|87.24|0.00|1.45|000194B0|0|1| +38|2023-10-06T21:13:17.4000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||91.27|88.77|0.00|2.70|0|0|0|||||||||| +30|2023-10-06T21:13:17.4000000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +31|2023-10-06T21:13:17.4000000-07:00|10FF0001||||| +37|2023-10-06T21:13:17.4890000-07:00|40022472|Zeromus|000194AA|32767295||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:17.4890000-07:00|10FF0009|Zewo Negiwo|000194AE|81177|81177|7194|10000|0||88.49|95.62|0.00|1.02|1800|0|0|01|020004B4|0|41A80000|| +26|2023-10-06T21:13:17.4890000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:13:17.4890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30630000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32780518|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8350|10000|||96.67|98.34|0.00|2.96|000194B1|0|1| +39|2023-10-06T21:13:17.5340000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +38|2023-10-06T21:13:17.5340000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7100|10000|0||90.85|99.05|0.00|1.17|0|0|0||||||||||||| +30|2023-10-06T21:13:17.5340000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +21|2023-10-06T21:13:17.6680000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|352D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32767295|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6200|10000|||90.76|87.24|0.00|2.23|000194B2|0|1| +38|2023-10-06T21:13:17.6680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||86.34|93.60|0.00|1.29|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:17.6680000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:17.6680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6200|10000|0||90.76|87.24|0.00|2.23|0|0|0|||||||||||||||| +30|2023-10-06T21:13:17.6680000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:13:17.7110000-07:00|10FF0006|Wowobora Gogobora|000194AC|81809|81809|10000|10000|0||86.94|93.83|0.00|1.27|1B00|0|0|01|05000AA5|0|0|| +39|2023-10-06T21:13:17.7110000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||94.05|96.49|0.00|2.45| +38|2023-10-06T21:13:17.7110000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||86.94|93.83|0.00|1.27|0|0|0||||||||||||||||||| +39|2023-10-06T21:13:17.7560000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||91.19|86.64|0.00|3.09| +24|2023-10-06T21:13:17.7560000-07:00|40022472|Zeromus|DoT|0|1DC3|32767295|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|7194|10000|||90.19|96.83|0.00|0.97| +21|2023-10-06T21:13:17.7560000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|720003|1A0D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32767295|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7100|10000|||91.85|99.91|0.00|1.03|000194B3|0|1| +38|2023-10-06T21:13:17.7560000-07:00|40022472|Zeromus|005A5A00|32759676|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:13:17.2970000-07:00|Change|400228F1||| +37|2023-10-06T21:13:17.8020000-07:00|40022472|Zeromus|000194AB|32715721||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:17.8020000-07:00|10FF0003|Gegehi Gehi|73814|73814|7300|10000|||91.85|99.91|0.00|1.03| +21|2023-10-06T21:13:17.8020000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32767295|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||86.94|93.83|0.00|1.27|000194B4|0|1| +38|2023-10-06T21:13:17.8020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85141|129844|10000|10000|0||91.91|86.81|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:17.8020000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +261|2023-10-06T21:13:17.3950000-07:00|Change|10FF0006||||||||| +36|2023-10-06T21:13:17.8450000-07:00|2288|3| +37|2023-10-06T21:13:17.8890000-07:00|40022472|Zeromus|000194AF|32700392||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:17.8890000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8150|10000|||96.67|98.37|0.00|1.15| +21|2023-10-06T21:13:17.8900000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|2EE10000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|32715721|40478540|10000|10000|||100.00|80.10|0.00|0.00|85141|129844|10000|10000|||91.91|86.81|0.00|3.12|000194B5|0|1| +38|2023-10-06T21:13:17.8900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85141|129844|10000|10000|0||91.91|86.81|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:17.8900000-07:00|A75|Surging Tempest|52.97|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:13:17.3950000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:17.9350000-07:00|40022472|Zeromus|000194B0|32698738||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:17.4940000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T21:13:17.9350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||95.54|97.80|0.00|1.50|0|0|0||||||| +30|2023-10-06T21:13:17.9350000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +39|2023-10-06T21:13:17.9790000-07:00|10FF0007|Kehabiqo Febiqo|86439|129844|10000|10000|||91.91|86.81|0.00|2.26| +39|2023-10-06T21:13:17.9790000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||88.17|94.33|0.00|1.17| +261|2023-10-06T21:13:17.4940000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:13:18.0240000-07:00|10FF0009|Zewo Negiwo|81177|81177|7415|10000|||91.74|98.00|0.00|1.02| +21|2023-10-06T21:13:18.0240000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32698738|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|-3.10|000194B6|0|1| +39|2023-10-06T21:13:18.0680000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6400|10000|||90.76|87.24|0.00|2.23| +38|2023-10-06T21:13:18.0680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8150|10000|0||97.77|98.97|0.00|1.04|0|0|0|||||||||||||||| +30|2023-10-06T21:13:18.0680000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +21|2023-10-06T21:13:18.1120000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32698738|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.13|98.33|0.00|1.30|000194B7|0|1| +261|2023-10-06T21:13:17.6810000-07:00|Change|10FF0001||||| +20|2023-10-06T21:13:18.1560000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|92.26|98.27|0.00|1.16| +38|2023-10-06T21:13:18.2020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|0||90.76|87.24|0.00|2.23|0|0|0||||||| +30|2023-10-06T21:13:18.2020000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:13:18.2900000-07:00|40022472|Zeromus|000194B1|32686351||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:17.8000000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:13:18.3350000-07:00|40022472|Zeromus|000194B4|32686170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:18.3350000-07:00|40022472|Zeromus|000194B3|32679501||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:18.3350000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|213D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|86439|129844|10000|10000|||91.91|86.81|0.00|2.26|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|000194B8|0|1| +37|2023-10-06T21:13:18.5570000-07:00|40022472|Zeromus|000194B6|32677248||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:18.1420000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:13:18.2400000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:13:18.2400000-07:00|Change|400228CE||| +261|2023-10-06T21:13:18.3330000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:13:18.7790000-07:00|400228F1|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|356003|CD840000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|32677248|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||81.16|94.69|0.00|2.16|000194B9|0|1| +37|2023-10-06T21:13:18.8670000-07:00|40022472|Zeromus|000194B7|32673709||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:18.9580000-07:00|40022472|Zeromus|000194B2|32660096||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:18.9580000-07:00|10FF0001|Sesuga Sapisuga|000194B2|129071|129071|6800|10000|0||90.76|87.24|0.00|2.23|1300|0|0|0| +20|2023-10-06T21:13:18.9580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.95|101.65|-0.02|0.85| +21|2023-10-06T21:13:18.9580000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|23FE0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|32673709|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|-3.10|000194BA|0|1| +21|2023-10-06T21:13:19.0450000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40F80000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|86439|129844|10000|10000|||91.91|86.81|0.00|2.26|32660096|40478540|10000|10000|||100.00|80.10|0.00|0.00|000194BB|0|1| +20|2023-10-06T21:13:19.0450000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|97.64|105.11|-0.02|0.86| +261|2023-10-06T21:13:18.5220000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:13:19.0900000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|754003|3CFB0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32660096|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|7415|10000|||93.46|98.89|0.00|2.81|000194BC|0|1| +37|2023-10-06T21:13:19.1340000-07:00|10FF0007|Kehabiqo Febiqo|000194B8|94948||||||91.91|86.81|0.00|2.26| +261|2023-10-06T21:13:18.6380000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:13:19.1790000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|11DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32660096|40478540|10000|10000|||100.00|80.10|0.00|0.00|86439|129844|10000|10000|||91.91|86.81|0.00|2.26|000194BD|0|1| +20|2023-10-06T21:13:19.1790000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|93.99|96.82|0.00|1.19| +261|2023-10-06T21:13:18.8660000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:13:19.3580000-07:00|40022472|Zeromus|000194BA|32650882||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:19.4030000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|E40F|A788000|0|0|0|0|0|0|0|0|0|0|94948|129844|10000|10000|||91.91|86.81|0.00|2.26|94948|129844|10000|10000|||91.91|86.81|0.00|2.26|000194BE|0|1| +38|2023-10-06T21:13:19.4030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8700|10000|0||102.09|102.13|-0.01|3.12|0|0|0|||||||||||||||| +261|2023-10-06T21:13:18.9790000-07:00|Change|10FF0008||||||||| +38|2023-10-06T21:13:19.4910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||94.17|96.82|0.00|2.01|0|0|0||||||||||||||||||| +37|2023-10-06T21:13:19.5360000-07:00|40022472|Zeromus|000194B5|32638881||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:19.5360000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7565|10000|0||93.46|98.89|0.00|2.81|0|0|0|||||||||| +21|2023-10-06T21:13:19.6250000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2C5B0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|32638881|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.70|104.82|-0.02|0.90|000194BF|0|1| +21|2023-10-06T21:13:19.6710000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32638881|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||90.73|87.34|0.00|1.34|000194C0|0|1| +31|2023-10-06T21:13:19.6710000-07:00|10FF0001||||| +261|2023-10-06T21:13:19.2740000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:13:19.7140000-07:00|40022472|Zeromus|000194BD|32634311||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:19.2740000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T21:13:19.8480000-07:00|10FF0007|Kehabiqo Febiqo|000194BB|78316||||||91.91|86.81|0.00|2.26| +21|2023-10-06T21:13:19.8930000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32430000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32634311|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8700|10000|||102.10|102.16|0.00|-3.05|000194C1|0|1| +37|2023-10-06T21:13:19.9820000-07:00|10FF0007|Kehabiqo Febiqo|000194BE|78316|129844|10000|10000|7||91.91|86.81|0.00|2.26|1500|0|0|03|01000A76|0190|41000000|||||||||| +26|2023-10-06T21:13:19.9820000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T21:13:19.9820000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:13:19.9820000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:13:19.9820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|78316|129844|10000|10000|7||91.91|86.81|0.00|2.26|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:13:19.5500000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:19.5500000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:13:20.0720000-07:00|40022472|Zeromus|000194B9|32581699||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:20.1170000-07:00|40022472|Zeromus|8B5D|Flare|40022472|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:20.1170000-07:00|4002248F|Zeromus|8B60|Flare|4002248F|Zeromus|7.700|80.10|80.10|0.00|0.79| +20|2023-10-06T21:13:20.1170000-07:00|40022490|Zeromus|8B60|Flare|40022490|Zeromus|7.700|119.90|80.10|0.00|-0.79| +261|2023-10-06T21:13:19.6430000-07:00|Change|40022472||||||||| +261|2023-10-06T21:13:19.6430000-07:00|Change|4002248F||||||||||||||||||||| +261|2023-10-06T21:13:19.6430000-07:00|Change|40022490||||||||||||||||||||| +00|2023-10-06T21:13:19.0000000-07:00|0044|Zeromus|Begone, contemptible Light!| +261|2023-10-06T21:13:19.7540000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:20.2060000-07:00|40022472|Zeromus|000194C0|32579968||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:20.2060000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32581699|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|000194C2|0|1| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228F9||||||||||||||||||||||||||||||||| +21|2023-10-06T21:13:20.2500000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|21DA0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|32581699|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||90.73|87.34|0.00|2.23|000194C3|0|1| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228FC||||||||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228F6||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228F8||||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228FE||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228FF||||||||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228FB||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228F7||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228FA||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Add|400228FD||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228FF||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228FC||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228FB||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228FE||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228FD||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228FA||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228F6||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228F8||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228F7||| +261|2023-10-06T21:13:19.8650000-07:00|Change|400228F9||| +21|2023-10-06T21:13:20.3400000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15A50000|4|26E98000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|32581699|40478540|10000|10000|||100.00|80.10|0.00|0.00|78316|129844|10000|10000|||91.91|86.81|0.00|2.26|000194C4|0|1| +37|2023-10-06T21:13:20.3830000-07:00|40022472|Zeromus|000194BC|32564357||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:20.4280000-07:00|40022472|Zeromus|000194BF|32553002||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:20.4280000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32564357|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8300|10000|||102.10|102.16|-0.02|3.11|000194C5|0|1| +21|2023-10-06T21:13:20.4730000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|452003|4C490000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|32564357|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7300|10000|||98.10|105.52|0.00|3.07|000194C6|0|1| +38|2023-10-06T21:13:20.4730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7100|10000|0||98.10|105.52|0.00|3.07|0|0|0||||||||||||| +26|2023-10-06T21:13:20.4730000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:13:20.4730000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:13:20.5170000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.78|95.75|0.00|3.13| +04|2023-10-06T21:13:20.0920000-07:00|400228CE|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||82.96|92.27|0.00|-0.55| +261|2023-10-06T21:13:20.0920000-07:00|Remove|400228CE| +37|2023-10-06T21:13:20.6960000-07:00|40022472|Zeromus|000194C1|32540135||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:20.6960000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||108.27|109.07|0.00|0.83| +37|2023-10-06T21:13:20.7400000-07:00|40022472|Zeromus|000194C2|32537442||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:20.7840000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||91.17|86.14|0.00|2.17| +24|2023-10-06T21:13:20.7840000-07:00|40022472|Zeromus|DoT|0|177F|32537442|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|7565|10000|||97.97|102.23|0.00|1.01| +20|2023-10-06T21:13:20.7840000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|97.97|102.23|0.00|1.01| +21|2023-10-06T21:13:20.7840000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32537442|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||108.94|109.45|0.00|0.88|000194C7|0|1| +38|2023-10-06T21:13:20.7840000-07:00|40022472|Zeromus|005A5A00|32531427|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:13:20.2810000-07:00|Change|10FF0003||||||||||||||||||||||| +39|2023-10-06T21:13:20.8270000-07:00|10FF0003|Gegehi Gehi|73814|73814|7300|10000|||98.13|105.54|0.00|2.62| +37|2023-10-06T21:13:20.8720000-07:00|40022472|Zeromus|000194C4|32525886||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:20.8720000-07:00|10FF0007|Kehabiqo Febiqo|000194C4|88277||||||91.91|86.81|0.00|2.26| +37|2023-10-06T21:13:20.8720000-07:00|40022472|Zeromus|000194C3|32517220||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:20.8720000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8500|10000|||102.99|102.74|0.00|1.43| +36|2023-10-06T21:13:20.8720000-07:00|2364|3| +37|2023-10-06T21:13:20.9610000-07:00|40022472|Zeromus|000194C5|32516972||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:21.0060000-07:00|10FF0007|Kehabiqo Febiqo|89575|129844|10000|10000|||91.91|86.81|0.00|2.26| +39|2023-10-06T21:13:21.0060000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||94.25|96.82|0.00|2.81| +39|2023-10-06T21:13:21.0510000-07:00|10FF0009|Zewo Negiwo|81177|81177|7786|10000|||98.31|102.35|0.00|1.70| +261|2023-10-06T21:13:20.5870000-07:00|Change|10FF0009||||||||||||||||||||||| +39|2023-10-06T21:13:21.0950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7000|10000|||90.73|87.34|0.00|2.23| +21|2023-10-06T21:13:21.0950000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42714003|37860000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|32516972|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|000194C8|0|1| +261|2023-10-06T21:13:20.5870000-07:00|Change|10FF0001||| +37|2023-10-06T21:13:21.2740000-07:00|40022472|Zeromus|000194C6|32497443||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:20.9400000-07:00|Change|10FF0004||||||||| +20|2023-10-06T21:13:21.3630000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|105.15|104.48|0.00|0.92| +21|2023-10-06T21:13:21.4520000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|41C50000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|32497443|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7300|10000|||101.00|107.64|0.00|1.00|000194C9|0|1| +38|2023-10-06T21:13:21.4520000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7000|10000|0||101.00|107.64|0.00|1.00|0|0|0||||||||||||| +30|2023-10-06T21:13:21.4520000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:13:21.4520000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:13:21.5440000-07:00|40022472|Zeromus|000194C7|32495053||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:21.6300000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|352003|763F0000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|32495053|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||94.25|96.82|0.00|2.81|000194CA|0|1| +38|2023-10-06T21:13:21.6300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||94.25|96.82|0.00|2.81|0|0|0||||||||||||| +30|2023-10-06T21:13:21.6300000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:13:21.1540000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T21:13:21.1540000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T21:13:21.6730000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|148C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|89575|129844|10000|10000|||91.08|86.20|0.00|2.91|73956|77430|10000|10000|||99.78|95.75|0.00|3.13|000194CB|0|1| +37|2023-10-06T21:13:21.7180000-07:00|40022472|Zeromus|000194C8|32480839||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:21.7180000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2B2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32495053|40478540|10000|10000|||100.00|80.10|0.00|0.00|89575|129844|10000|10000|||90.99|86.18|0.00|3.03|000194CC|0|1| +21|2023-10-06T21:13:21.7180000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32730000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32495053|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|7786|10000|||98.68|102.49|0.00|3.08|000194CD|0|1| +261|2023-10-06T21:13:21.3490000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:13:21.9410000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32480839|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||90.78|87.89|0.00|1.31|000194CE|0|1| +31|2023-10-06T21:13:21.9410000-07:00|10FF0001||||| +261|2023-10-06T21:13:21.5340000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:13:22.1180000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44722003|601F0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|32480839|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||109.17|110.74|0.00|-1.25|000194CF|0|1| +37|2023-10-06T21:13:22.2070000-07:00|40022472|Zeromus|000194C9|32464002||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:22.2070000-07:00|10FF0003|Gegehi Gehi|000194C9|73814|73814|7000|10000|0||102.69|109.09|0.00|2.03|2300|0|0|01|020004D3|0|41F00000|| +38|2023-10-06T21:13:22.2070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7000|10000|0||102.69|109.09|0.00|2.03|0|0|0||||||||||||| +21|2023-10-06T21:13:22.2950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2F9D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32464002|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8500|10000|||105.49|104.81|0.00|-2.92|000194D0|0|1| +261|2023-10-06T21:13:21.8840000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:13:22.3840000-07:00|40022472|Zeromus|000194CC|32452950||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:22.3840000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|114B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32464002|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|000194D1|0|1| +38|2023-10-06T21:13:22.3840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8650|10000|0||105.49|104.81|0.00|-2.92|0|0|0|||||||||||||||| +37|2023-10-06T21:13:22.4730000-07:00|10FF0007|Kehabiqo Febiqo|000194CB|94835||||||90.93|86.17|0.00|2.16| +37|2023-10-06T21:13:22.4730000-07:00|40022472|Zeromus|000194CE|32451179||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:22.4730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||94.33|96.82|-0.02|1.60|0|0|0||||||||||||| +38|2023-10-06T21:13:22.5180000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|7936|10000|0||100.29|103.27|0.00|1.29|0|0|0|||||||||| +21|2023-10-06T21:13:22.5630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|11FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32451179|40478540|10000|10000|||100.00|80.10|0.00|0.00|94835|129844|10000|10000|||90.93|86.17|0.00|2.16|000194D2|0|1| +261|2023-10-06T21:13:22.2110000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:13:22.6530000-07:00|40022472|Zeromus|DoT|A92|5F7|32451179|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||94.91|96.46|0.00|1.80| +37|2023-10-06T21:13:22.6530000-07:00|40022472|Zeromus|000194CA|32419381||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:22.6530000-07:00|10FF0006|Wowobora Gogobora|000194CA|81809|81809|10000|10000|0||94.91|96.46|0.00|1.80|1B00|0|0|01|04000A92|0|41700000|| +26|2023-10-06T21:13:22.6530000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:13:22.6530000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|352003|3A9B0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32451179|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||94.91|96.46|0.00|1.80|000194D3|0|1| +38|2023-10-06T21:13:22.6530000-07:00|40022472|Zeromus|005A5A00|32419381|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +21|2023-10-06T21:13:22.6970000-07:00|10FF0008|Kokosaze Lulusaze|03|Sprint|10FF0008|Kokosaze Lulusaze|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||108.61|110.45|0.00|-2.79|90216|90216|10000|10000|||108.61|110.45|0.00|-2.79|000194D4|0|1| +21|2023-10-06T21:13:22.7410000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1D260000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|32419381|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||90.78|87.89|0.00|2.27|000194D5|0|1| +261|2023-10-06T21:13:22.3050000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:13:22.3050000-07:00|Change|400228F1||||| +21|2023-10-06T21:13:22.7850000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20F60000|A3E|340000|200004|3CF78000|11B|258000|0|0|0|0|0|0|0|0|32419381|40478540|10000|10000|||100.00|80.10|0.00|0.00|94835|129844|10000|10000|||90.93|86.17|0.00|2.16|000194D6|0|1| +38|2023-10-06T21:13:22.8300000-07:00|40022908||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:13:22.8300000-07:00|10FF0008|Kokosaze Lulusaze|000194D4|90216|90216|10000|10000|0||108.08|109.83|0.00|-2.46|1F00|0|0|01|02000032|1E|41200000|| +26|2023-10-06T21:13:22.8300000-07:00|32|Sprint|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|90216|90216| +38|2023-10-06T21:13:22.8300000-07:00|40022908||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:13:22.9190000-07:00|40022472|Zeromus|000194CF|32394774||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:22.9190000-07:00|40022472|Zeromus|000194D1|32390347||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:22.5000000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:13:23.0080000-07:00|40022472|Zeromus|000194CD|32377432||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:22.5000000-07:00|Add|40022908||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:22.5000000-07:00|Add|40022905||||||||||||||||||||||||||||||||| +03|2023-10-06T21:13:22.5000000-07:00|40022908|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||95.14|93.10|0.00|0.12| +261|2023-10-06T21:13:22.5000000-07:00|Change|40022908||| +37|2023-10-06T21:13:23.0960000-07:00|40022472|Zeromus|000194D2|32372828||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:23.0960000-07:00|40022472|Zeromus|000194D0|32360639||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:23.3200000-07:00|40022472|Zeromus|000194D3|32345636||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:23.3200000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|19180000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|32360639|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|000194D7|0|1| +261|2023-10-06T21:13:22.9550000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:13:23.4100000-07:00|40022472|Zeromus|000194D6|32337198||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:23.4100000-07:00|10FF0007|Kehabiqo Febiqo|000194D6|110442||||||90.93|86.17|0.00|2.16| +21|2023-10-06T21:13:23.4540000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|90D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32337198|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.35|106.52|0.00|-2.47|000194D8|0|1| +21|2023-10-06T21:13:23.4540000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32337198|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||94.55|93.64|0.00|-2.78|000194D9|0|1| +37|2023-10-06T21:13:23.4990000-07:00|40022472|Zeromus|000194D5|32329736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:23.4990000-07:00|10FF0001|Sesuga Sapisuga|000194D5|129071|129071|8000|10000|0||90.78|87.89|0.00|2.27|1300|0|0|0| +261|2023-10-06T21:13:23.0710000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:13:23.5440000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.47|98.24|0.00|-0.80| +37|2023-10-06T21:13:23.7220000-07:00|40022472|Zeromus|000194D7|32323312||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:23.7220000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||104.12|104.86|0.00|-2.49| +261|2023-10-06T21:13:23.2590000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:13:23.2590000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:13:23.7660000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||91.17|86.14|0.00|2.17| +24|2023-10-06T21:13:23.7660000-07:00|40022472|Zeromus|DoT|0|1F79|32323312|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|7936|10000|||106.32|109.31|0.00|0.80| +38|2023-10-06T21:13:23.7660000-07:00|40022472|Zeromus|005A5A00|32315255|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:13:23.8110000-07:00|10FF0003|Gegehi Gehi|73814|73814|7200|10000|||108.48|114.34|0.00|1.13| +261|2023-10-06T21:13:23.3490000-07:00|Change|10FF0003||||||||||| +20|2023-10-06T21:13:23.8570000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|107.75|110.12|0.00|0.72| +34|2023-10-06T21:13:23.8570000-07:00|40022908|Carbuncle|40022908|Carbuncle|01| +36|2023-10-06T21:13:23.8570000-07:00|2440|3| +261|2023-10-06T21:13:23.3490000-07:00|Change|40022908||| +261|2023-10-06T21:13:23.4410000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:13:23.9010000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8850|10000|||108.09|110.48|0.00|0.92| +20|2023-10-06T21:13:23.9010000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|108.48|114.34|0.00|1.13| +38|2023-10-06T21:13:23.9450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110442|129844|10000|10000|7||90.93|86.17|0.00|2.16|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:23.9450000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:13:23.6260000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:13:23.9890000-07:00|40022472|Zeromus|000194D9|32315104||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:23.9890000-07:00|10FF0007|Kehabiqo Febiqo|111740|129844|10000|10000|||90.93|86.17|0.00|2.16| +39|2023-10-06T21:13:23.9890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||92.73|90.08|0.00|-2.66| +39|2023-10-06T21:13:24.0330000-07:00|10FF0009|Zewo Negiwo|81177|81177|8157|10000|||107.81|110.76|0.00|0.80| +39|2023-10-06T21:13:24.0770000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8200|10000|||90.78|87.89|0.00|2.27| +21|2023-10-06T21:13:24.1670000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|24BA0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32315255|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||92.73|90.08|0.00|-2.66|000194DA|0|1| +37|2023-10-06T21:13:24.2120000-07:00|40022472|Zeromus|000194D8|32312787||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:24.2130000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32315104|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||90.78|87.89|0.00|2.27|000194DB|0|1| +31|2023-10-06T21:13:24.2130000-07:00|10FF0001||||| +20|2023-10-06T21:13:24.3010000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|108.69|111.61|0.00|0.80| +261|2023-10-06T21:13:23.8560000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:13:23.8560000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:13:23.9670000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:13:24.0770000-07:00|Change|10FF0001||| +21|2023-10-06T21:13:24.5680000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DD40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32312787|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|000194DC|0|1| +21|2023-10-06T21:13:24.6130000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1D950000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|32312787|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.92|98.93|0.00|-2.53|000194DD|0|1| +37|2023-10-06T21:13:24.7470000-07:00|40022472|Zeromus|000194DB|32310999||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:24.7910000-07:00|40022472|Zeromus|000194DA|32301597||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:24.7910000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4E420000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32312787|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8850|10000|||108.26|110.61|0.00|-2.88|000194DE|0|1| +261|2023-10-06T21:13:24.2710000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:13:24.3750000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:13:25.1030000-07:00|40022472|Zeromus|000194DC|32298057||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:25.1470000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15300000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|111740|129844|10000|10000|||90.93|86.17|0.00|2.16|73956|77430|10000|10000|||99.47|98.44|0.00|3.11|000194DF|0|1| +21|2023-10-06T21:13:25.2360000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|32690000|143E|340000|4|26CA8000|4|176B8000|11B|2A8000|0|0|0|0|0|0|32298057|40478540|10000|10000|||100.00|80.10|0.00|0.00|111740|129844|10000|10000|||90.93|86.17|0.00|2.16|000194E0|0|1| +21|2023-10-06T21:13:25.2360000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|330E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32298057|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8157|10000|||108.78|111.71|0.00|-2.87|000194E1|0|1| +21|2023-10-06T21:13:25.2360000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41712003|3F840000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|32298057|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||90.78|87.89|0.00|2.27|000194E2|0|1| +38|2023-10-06T21:13:25.2360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||90.78|87.89|0.00|2.27|0|0|0||||||||||||| +26|2023-10-06T21:13:25.2360000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:13:25.2360000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:13:25.3250000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|31E10000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|32298057|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7200|10000|||108.48|114.34|0.00|-2.90|000194E3|0|1| +38|2023-10-06T21:13:25.3250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7000|10000|0||108.48|114.34|0.00|-2.90|0|0|0|||||||||| +26|2023-10-06T21:13:25.3250000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:13:25.3250000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:13:25.3690000-07:00|40022472|Zeromus|000194DD|32290484||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:24.9120000-07:00|Change|10FF0003||||||||||||||||| +38|2023-10-06T21:13:25.4150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||108.26|110.62|0.00|-2.48|0|0|0|||||||||||||||| +261|2023-10-06T21:13:24.9120000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:13:25.5020000-07:00|40022472|Zeromus|DoT|A92|4F0|32290484|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9600|10000|||95.30|92.79|0.00|0.80| +38|2023-10-06T21:13:25.5020000-07:00|40022472|Zeromus|005A5A00|32289220|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +38|2023-10-06T21:13:25.5020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||95.30|92.79|0.00|0.80|0|0|0|||||||||||||||| +38|2023-10-06T21:13:25.5480000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8307|10000|0||108.78|111.71|0.00|-2.87|0|0|0|||||||||| +37|2023-10-06T21:13:25.5920000-07:00|40022472|Zeromus|000194DE|32269186||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:25.5920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||90.78|87.89|0.00|2.27|0|0|0||||||||||||| +21|2023-10-06T21:13:25.6360000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|21C90000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|32269186|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|000194E4|0|1| +21|2023-10-06T21:13:25.6810000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|26EF0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32269186|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||95.20|92.82|0.00|0.36|000194E5|0|1| +261|2023-10-06T21:13:25.3370000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:13:25.8150000-07:00|40022472|Zeromus|000194E2|32252926||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:25.8150000-07:00|10FF0001|Sesuga Sapisuga|000194E2|129071|129071|8200|10000|0||90.78|87.89|0.00|2.27|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T21:13:25.8150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||90.78|87.89|0.00|2.27|0|0|0||||||||||||| +261|2023-10-06T21:13:25.4310000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:13:25.9470000-07:00|10FF0007|Kehabiqo Febiqo|000194DF|117164||||||90.93|86.17|0.00|2.16| +21|2023-10-06T21:13:25.9480000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BB90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32252926|40478540|10000|10000|||100.00|80.10|0.00|0.00|111740|129844|10000|10000|||90.93|86.17|0.00|2.16|000194E6|0|1| +261|2023-10-06T21:13:25.5310000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:26.0360000-07:00|40022472|Zeromus|000194E4|32244277||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:26.1250000-07:00|40022472|Zeromus|000194E3|32231508||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:26.1250000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32252926|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||104.46|104.99|0.00|0.66|000194E7|0|1| +20|2023-10-06T21:13:26.2580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|108.18|111.41|0.00|-0.02| +37|2023-10-06T21:13:26.3040000-07:00|40022472|Zeromus|000194E5|32221541||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:26.3040000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|554003|41890000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|32231508|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7000|10000|||108.48|114.34|0.00|-2.90|000194E8|0|1| +38|2023-10-06T21:13:26.3040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6700|10000|0||108.48|114.34|0.00|-2.90|0|0|0||||||||||||| +30|2023-10-06T21:13:26.3040000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:13:26.3040000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:13:25.8610000-07:00|Change|10FF0003||| +261|2023-10-06T21:13:25.9770000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:13:26.4820000-07:00|40022472|Zeromus|000194E6|32218540||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:26.4820000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AAF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32221541|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||90.78|87.89|0.00|2.27|000194E9|0|1| +31|2023-10-06T21:13:26.4820000-07:00|10FF0001||||| +37|2023-10-06T21:13:26.5260000-07:00|40022472|Zeromus|000194E1|32205470||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:26.5260000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.47|98.44|0.00|-2.68| +261|2023-10-06T21:13:26.1890000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:13:26.6150000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|1280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32205470|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||92.01|88.52|0.00|-2.57|000194EA|0|1| +39|2023-10-06T21:13:26.7050000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||106.60|107.83|1.73|0.64| +20|2023-10-06T21:13:26.7050000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|108.78|111.71|0.00|-2.87| +04|2023-10-06T21:13:26.1890000-07:00|400228F1|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||81.16|94.69|0.00|2.16| +261|2023-10-06T21:13:26.1890000-07:00|Remove|400228F1| +261|2023-10-06T21:13:26.2880000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:13:26.7500000-07:00|40022472|Zeromus|000194E0|32192565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:26.7500000-07:00|10FF0007|Kehabiqo Febiqo|000194E0|129844||||||90.93|86.17|0.00|2.16| +39|2023-10-06T21:13:26.7500000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||91.17|86.14|0.00|2.17| +24|2023-10-06T21:13:26.7500000-07:00|40022472|Zeromus|DoT|0|1DCF|32205470|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|8307|10000|||108.78|111.71|0.00|-2.87| +21|2023-10-06T21:13:26.7500000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32205470|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|000194EB|0|1| +38|2023-10-06T21:13:26.7500000-07:00|40022472|Zeromus|005A5A00|32184934|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:13:26.7940000-07:00|10FF0003|Gegehi Gehi|73814|73814|6900|10000|||108.48|114.34|0.00|-2.90| +36|2023-10-06T21:13:26.8380000-07:00|251C|3| +37|2023-10-06T21:13:26.8820000-07:00|40022472|Zeromus|000194E7|32181045||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:26.8820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9200|10000|||108.17|111.47|0.00|-2.89| +39|2023-10-06T21:13:26.9710000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||90.93|86.17|0.00|2.16| +39|2023-10-06T21:13:26.9710000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||91.64|88.09|0.00|-2.37| +261|2023-10-06T21:13:26.4780000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:13:27.0160000-07:00|40022472|Zeromus|000194E9|32178310||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:27.0160000-07:00|10FF0009|Zewo Negiwo|81177|81177|8528|10000|||108.78|111.71|0.00|-2.87| +21|2023-10-06T21:13:27.0160000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13CE0F|A748000|0|0|0|0|0|0|0|0|0|0|129071|129071|8200|10000|||90.78|87.89|0.00|2.27|129071|129071|8200|10000|||90.78|87.89|0.00|2.27|000194EC|0|1| +38|2023-10-06T21:13:27.0160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||90.78|87.89|0.00|2.27|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:27.0160000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:13:27.0160000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:13:27.0160000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:13:27.0160000-07:00|10FF0001||||| +37|2023-10-06T21:13:27.0610000-07:00|40022472|Zeromus|000194E8|32161533||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:27.0610000-07:00|10FF0003|Gegehi Gehi|000194E8|73814|73814|6900|10000|0||108.48|114.34|0.00|-2.90|2300|0|0|01|030004D2|0|41F00000|| +39|2023-10-06T21:13:27.0610000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8400|10000|||90.78|87.89|0.00|2.27| +261|2023-10-06T21:13:26.5910000-07:00|Change|10FF0001||| +38|2023-10-06T21:13:27.0620000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6900|10000|0||108.48|114.34|0.00|-2.90|0|0|0||||||||||||| +21|2023-10-06T21:13:27.1060000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|724003|735C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32161533|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||108.45|110.31|0.00|0.64|000194ED|0|1| +21|2023-10-06T21:13:27.1060000-07:00|40022472|Zeromus|8B5D|Flare|40022472|Zeromus|1B|8B5D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32161533|40478540|10000|10000|||100.00|80.10|0.00|0.00|32161533|40478540|10000|10000|||100.00|80.10|0.00|0.00|000194EE|0|1| +261|2023-10-06T21:13:26.5910000-07:00|Change|40022472||||| +37|2023-10-06T21:13:27.1510000-07:00|40022472|Zeromus|000194EA|32161237||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:27.1510000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|273C0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32161533|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||91.35|87.75|0.00|-2.24|000194EF|0|1| +21|2023-10-06T21:13:27.1950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|500D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32161533|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||108.17|111.47|0.00|-2.89|000194F0|0|1| +37|2023-10-06T21:13:27.2840000-07:00|40022472|Zeromus|000194EB|32157903||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:26.9330000-07:00|Change|10FF0003||| +261|2023-10-06T21:13:26.9330000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:13:27.0470000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:13:27.6400000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32C00000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32157903|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8528|10000|||108.78|111.71|0.00|-2.87|000194F1|0|1| +21|2023-10-06T21:13:27.6850000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3A940000|4|260F8000|0|0|0|0|0|0|0|0|0|0|0|0|32157903|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.93|86.17|0.00|2.16|000194F2|0|1| +37|2023-10-06T21:13:27.7750000-07:00|40022472|Zeromus|000194EF|32147859||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:27.7750000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|268E0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32157903|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||90.78|87.89|0.00|2.27|000194F3|0|1| +38|2023-10-06T21:13:27.7750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8400|10000|0||90.78|87.89|0.00|2.27|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:27.7750000-07:00|76E|Sword Oath|27.99|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:13:27.3300000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:13:27.8640000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44716003|650F0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|32157903|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|000194F4|0|1| +38|2023-10-06T21:13:27.9530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|7||90.93|86.17|0.00|2.16|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:27.9530000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +37|2023-10-06T21:13:27.9970000-07:00|40022472|Zeromus|000194F0|32127366||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:27.5190000-07:00|Change|10FF0006||||||||||| +22|2023-10-06T21:13:28.0870000-07:00|4002248F|Zeromus|8B60|Flare|10FF0003|Gegehi Gehi|150003|DEE20000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6900|10000|||108.48|114.34|0.00|-2.90|44|44|0|10000|||110.00|115.00|0.00|0.00|000194F5|0|4| +22|2023-10-06T21:13:28.0870000-07:00|4002248F|Zeromus|8B60|Flare|10FF0008|Kokosaze Lulusaze|150003|5054001|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||110.06|112.35|0.00|0.69|44|44|0|10000|||110.00|115.00|0.00|0.00|000194F5|1|4| +22|2023-10-06T21:13:28.0870000-07:00|4002248F|Zeromus|8B60|Flare|10FF0009|Zewo Negiwo|150003|E4F80000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|8128|10000|||108.78|111.71|0.00|-2.87|44|44|0|10000|||110.00|115.00|0.00|0.00|000194F5|2|4| +22|2023-10-06T21:13:28.0870000-07:00|4002248F|Zeromus|8B60|Flare|10FF0004|Buhojaqe Zijaqe|150003|DAC70000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8800|10000|||108.17|111.47|0.00|-2.89|44|44|0|10000|||110.00|115.00|0.00|0.00|000194F5|3|4| +22|2023-10-06T21:13:28.0870000-07:00|40022490|Zeromus|8B60|Flare|10FF0007|Kehabiqo Febiqo|150003|6BBB0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.93|86.17|0.00|2.16|44|44|0|10000|||90.00|85.00|0.00|0.00|000194F6|0|4| +22|2023-10-06T21:13:28.0870000-07:00|40022490|Zeromus|8B60|Flare|10FF000A|Dukaro Nezikaro|150003|F9EC0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||91.17|86.14|0.00|2.17|44|44|0|10000|||90.00|85.00|0.00|0.00|000194F6|1|4| +22|2023-10-06T21:13:28.0870000-07:00|40022490|Zeromus|8B60|Flare|10FF0001|Sesuga Sapisuga|150203|6D610000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8400|10000|||90.78|87.89|0.00|2.27|44|44|0|10000|||90.00|85.00|0.00|0.00|000194F6|2|4| +22|2023-10-06T21:13:28.0870000-07:00|40022490|Zeromus|8B60|Flare|10FF0006|Wowobora Gogobora|150003|DFB00000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||91.29|87.69|0.00|2.29|44|44|0|10000|||90.00|85.00|0.00|0.00|000194F6|3|4| +261|2023-10-06T21:13:27.6100000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:13:27.6100000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:13:28.2650000-07:00|40022472|Zeromus|000194ED|32097834||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:28.2650000-07:00|10FF0003|Gegehi Gehi|000194F5|16756||||||108.48|114.34|0.00|-2.90| +37|2023-10-06T21:13:28.2650000-07:00|10FF0007|Kehabiqo Febiqo|000194F6|102265|129844|10000|10000|0||90.93|86.17|0.00|2.16|1500|0|0|01|05000000|0|0|| +38|2023-10-06T21:13:28.2650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102265|129844|10000|10000|0||90.93|86.17|0.00|2.16|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:28.2650000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:13:28.3100000-07:00|40022472|Zeromus|000194F2|32082838||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:28.3100000-07:00|10FF0007|Kehabiqo Febiqo|000194F2|112008||||||90.93|86.17|0.00|2.16| +37|2023-10-06T21:13:28.3100000-07:00|10FF0008|Kokosaze Lulusaze|000194F5|23395||||||110.06|112.35|0.00|0.69| +37|2023-10-06T21:13:28.3100000-07:00|10FF000A|Dukaro Nezikaro|000194F6|18793||||||91.17|86.14|0.00|2.17| +37|2023-10-06T21:13:28.3540000-07:00|10FF0009|Zewo Negiwo|000194F5|22561||||||108.78|111.71|0.00|-2.87| +37|2023-10-06T21:13:28.3540000-07:00|10FF0001|Sesuga Sapisuga|000194F6|101070||||||90.78|87.89|0.00|2.27| +37|2023-10-06T21:13:28.3990000-07:00|10FF0004|Buhojaqe Zijaqe|000194F5|25534||||||108.17|111.47|0.00|-2.89| +37|2023-10-06T21:13:28.3990000-07:00|10FF0006|Wowobora Gogobora|000194F6|24545||||||91.29|87.69|0.00|2.29| +37|2023-10-06T21:13:28.3990000-07:00|40022472|Zeromus|000194F4|32056967||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:28.3990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|25534|81541|9350|10000|0||108.17|111.47|0.00|-2.89|0|0|0|||||||||||||||| +21|2023-10-06T21:13:28.4440000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14600000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|18793|82773|10000|10000|||91.17|86.14|0.00|2.17|73956|77430|10000|10000|||99.47|98.44|0.00|3.11|000194F7|0|1| +21|2023-10-06T21:13:28.4440000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|D900000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|32082838|40478540|10000|10000|||100.00|80.10|0.00|0.00|101070|129071|8400|10000|||90.78|87.89|0.00|2.27|000194F8|0|1| +261|2023-10-06T21:13:27.9650000-07:00|Change|10FF0004||| +24|2023-10-06T21:13:28.4890000-07:00|40022472|Zeromus|DoT|A92|520|32082838|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9600|10000|||91.29|87.69|0.00|2.29| +38|2023-10-06T21:13:28.4890000-07:00|40022472|Zeromus|005A5A00|32055655|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +38|2023-10-06T21:13:28.4890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|24545|81809|10000|10000|0||91.29|87.69|0.00|2.29|0|0|0|||||||||||||||| +38|2023-10-06T21:13:28.5330000-07:00|10FF0009|Zewo Negiwo|005A5A18|22561|81177|8678|10000|0||108.78|111.69|0.00|-2.95|0|0|0|||||||||| +24|2023-10-06T21:13:28.5780000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1799|101070|129071|8400|10000|||90.78|87.89|0.00|2.27|10FF0001|Sesuga Sapisuga|0|101070|129071|8400|10000|||90.78|87.89|0.00|2.27| +38|2023-10-06T21:13:28.5780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|107111|129071|8400|10000|0||90.78|87.89|0.00|2.27|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:13:28.6220000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|32055655|40478540|10000|10000|||100.00|80.10|0.00|0.00|24545|81809|10000|10000|||91.29|87.69|0.00|2.29|000194F9|0|1| +261|2023-10-06T21:13:28.0830000-07:00|Change|40022908||||||||| +38|2023-10-06T21:13:28.6670000-07:00|40022912||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +20|2023-10-06T21:13:28.6670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|108.17|111.47|0.00|-2.89| +38|2023-10-06T21:13:28.6670000-07:00|40022912||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +22|2023-10-06T21:13:28.7120000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|200004|523F0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|22561|81177|8678|10000|||108.78|111.66|0.00|-3.06|22561|81177|8678|10000|||108.78|111.66|0.00|-3.06|000194FA|0|5| +22|2023-10-06T21:13:28.7120000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|31AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25534|81541|9350|10000|||108.17|111.47|0.00|-2.89|22561|81177|8678|10000|||108.78|111.66|0.00|-3.06|000194FA|1|5| +22|2023-10-06T21:13:28.7120000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|31DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23395|90216|10000|10000|||110.06|112.35|0.00|0.69|22561|81177|8678|10000|||108.78|111.66|0.00|-3.06|000194FA|2|5| +22|2023-10-06T21:13:28.7120000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|4|32EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16756|73814|6900|10000|||108.48|114.34|0.00|-2.90|22561|81177|8678|10000|||108.78|111.66|0.00|-3.06|000194FA|3|5| +22|2023-10-06T21:13:28.7120000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|752003|66AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32055655|40478540|10000|10000|||100.00|80.10|0.00|0.00|22561|81177|8678|10000|||108.78|111.66|0.00|-3.06|000194FA|4|5| +21|2023-10-06T21:13:28.7570000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32055655|40478540|10000|10000|||100.00|80.10|0.00|0.00|107111|129071|8400|10000|||90.78|87.89|0.00|1.26|000194FB|0|1| +20|2023-10-06T21:13:28.7570000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|108.48|114.34|0.00|-2.90| +31|2023-10-06T21:13:28.7570000-07:00|10FF0001||||| +261|2023-10-06T21:13:28.2740000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T21:13:28.8010000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AFB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32055655|40478540|10000|10000|||100.00|80.10|0.00|0.00|23395|90216|10000|10000|||110.06|112.35|0.00|0.69|000194FC|0|1| +261|2023-10-06T21:13:28.3670000-07:00|Change|10FF0009||||||| +21|2023-10-06T21:13:28.8900000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|18793|82773|10000|10000|||91.18|86.14|0.00|2.17|18793|82773|10000|10000|||91.18|86.14|0.00|2.17|000194FD|0|1| +38|2023-10-06T21:13:28.8900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18793|82773|10000|10000|0||91.18|86.14|0.00|2.17|0|0|0|||||||||||||||| +26|2023-10-06T21:13:28.8900000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|82773|82773| +26|2023-10-06T21:13:28.8900000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:13:28.9340000-07:00|40022913||005A5A00|75608|78475|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:13:28.9340000-07:00|40022472|Zeromus|000194F1|32042663||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:28.9340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|9FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32055655|40478540|10000|10000|||100.00|80.10|0.00|0.00|18793|82773|10000|10000|||91.18|86.14|0.00|2.17|000194FE|0|1| +38|2023-10-06T21:13:28.9340000-07:00|40022913||005A5A00|75608|78475|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:13:28.4680000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:13:28.4680000-07:00|Add|40022913||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:28.4680000-07:00|Add|40022912||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:13:28.4680000-07:00|40022912|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||91.15|90.18|0.00|2.29| +03|2023-10-06T21:13:28.4680000-07:00|40022913|Bunshin|00|5A|10FF000A|00||8313|10897|75608|78475|10000|10000|||92.86|85.41|0.00|-0.98| +37|2023-10-06T21:13:29.0670000-07:00|40022472|Zeromus|000194F3|32032793||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:29.0670000-07:00|10FF0001|Sesuga Sapisuga|000194F3|107111|129071|8800|10000|0||91.33|89.19|0.00|0.86|1300|0|0|0| +261|2023-10-06T21:13:28.5820000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:28.5820000-07:00|Change|40022913||| +21|2023-10-06T21:13:29.1120000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3EBC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|112008|129844|10000|10000|||91.45|86.97|0.00|2.15|32042663|40478540|10000|10000|||100.00|80.10|0.00|0.00|000194FF|0|1| +21|2023-10-06T21:13:29.1120000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|2B900000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|32042663|40478540|10000|10000|||100.00|80.10|0.00|0.00|107111|129071|8400|10000|||91.33|89.19|0.00|0.86|00019500|0|1| +261|2023-10-06T21:13:28.5820000-07:00|Change|40022912||||| +37|2023-10-06T21:13:29.2450000-07:00|10FF000A|Dukaro Nezikaro|000194F7|24009|82773|10000|10000|0||91.24|86.23|0.00|2.16|1E00|0|0|02|030007A2|05|C1F00000|||||| +37|2023-10-06T21:13:29.2900000-07:00|40022472|Zeromus|000194FB|32031029||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:29.3350000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32032793|40478540|10000|10000|||100.00|80.10|0.00|0.00|112008|129844|10000|10000|||92.35|88.33|0.00|2.15|00019501|0|1| +37|2023-10-06T21:13:29.3790000-07:00|10FF0009|Zewo Negiwo|000194FA|43616|81177|9178|10000|0||107.60|110.17|0.00|-2.57|1800|0|0|0| +261|2023-10-06T21:13:29.0320000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:13:29.4690000-07:00|40022472|Zeromus|00019500|32019877||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:29.4690000-07:00|10FF0001|Sesuga Sapisuga|00019500|107111|129071|9300|10000|0||92.45|91.50|0.00|0.40|1300|0|0|0| +37|2023-10-06T21:13:29.4690000-07:00|40022472|Zeromus|000194F8|32016405|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T21:13:29.4690000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:13:29.4690000-07:00|40022472|Zeromus|000194FE|32013847||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:29.4690000-07:00|10FF000A|Dukaro Nezikaro|000194FE|24009|82773|10000|10000|0||91.87|87.01|0.00|2.19|1E00|0|0|02|030007A2|05|C1F00000|||||| +37|2023-10-06T21:13:29.5150000-07:00|10FF0004|Buhojaqe Zijaqe|000194FA|38252||||||108.17|111.44|0.00|-2.67| +39|2023-10-06T21:13:29.5150000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.47|98.44|0.00|-2.55| +37|2023-10-06T21:13:29.5590000-07:00|40022472|Zeromus|000194FC|32011036||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:29.6030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|756003|60560000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32013847|40478540|10000|10000|||100.00|80.10|0.00|0.00|38252|81541|9350|10000|||108.17|111.44|0.00|-2.55|00019502|0|1| +37|2023-10-06T21:13:29.6480000-07:00|10FF0008|Kokosaze Lulusaze|000194FA|36162||||||107.50|109.43|0.19|-1.98| +37|2023-10-06T21:13:29.6480000-07:00|10FF000A|Dukaro Nezikaro|000194FD|24009|82773|10000|10000|0||92.39|87.64|0.00|2.22|1E00|0|0|02|030007A2|05|41F00000|||||| +21|2023-10-06T21:13:29.6480000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2C6C0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|32013847|40478540|10000|10000|||100.00|80.10|0.00|0.00|23395|90216|10000|10000|||107.50|109.43|0.19|-1.98|00019503|0|1| +38|2023-10-06T21:13:29.6480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24009|82773|10000|10000|0||92.39|87.64|0.00|2.22|0|0|0|||||||||||||||| +261|2023-10-06T21:13:29.2440000-07:00|Change|40022912||| +39|2023-10-06T21:13:29.7360000-07:00|10FF0008|Kokosaze Lulusaze|37064|90216|10000|10000|||107.05|108.91|1.08|-2.87| +21|2023-10-06T21:13:29.7360000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32011036|40478540|10000|10000|||100.00|80.10|0.00|0.00|24545|81809|10000|10000|||93.24|90.98|0.00|0.56|00019504|0|1| +261|2023-10-06T21:13:29.2440000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:13:29.7820000-07:00|10FF0003|Gegehi Gehi|000194FA|29795||||||108.48|114.34|0.00|-2.90| +39|2023-10-06T21:13:29.7820000-07:00|10FF000A|Dukaro Nezikaro|24836|82773|10000|10000|||92.94|88.25|-0.02|2.26| +24|2023-10-06T21:13:29.7820000-07:00|40022472|Zeromus|DoT|0|1A5B|32011036|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|107111|129071|9300|10000|||92.96|92.70|0.00|0.43| +38|2023-10-06T21:13:29.7820000-07:00|40022472|Zeromus|005A5A00|32004289|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:13:29.8250000-07:00|10FF0003|Gegehi Gehi|30533|73814|7100|10000|||108.48|114.34|0.00|-2.90| +261|2023-10-06T21:13:29.3460000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:13:29.3460000-07:00|Change|10FF0003||||| +37|2023-10-06T21:13:29.8700000-07:00|40022472|Zeromus|00019501|32001442||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:13:29.8700000-07:00|25F8|3| +261|2023-10-06T21:13:29.3460000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:13:29.9160000-07:00|40022472|Zeromus|000194FA|31975157||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:29.9160000-07:00|10FF0007|Kehabiqo Febiqo|000194FF|95948||||||94.16|91.16|0.00|2.14| +261|2023-10-06T21:13:29.4430000-07:00|Change|10FF0001||||||||||| +39|2023-10-06T21:13:29.9180000-07:00|10FF0004|Buhojaqe Zijaqe|39067|81541|9150|10000|||106.46|110.74|0.00|-2.31| +261|2023-10-06T21:13:29.4430000-07:00|Change|40022913||||| +39|2023-10-06T21:13:30.0030000-07:00|10FF0007|Kehabiqo Febiqo|97246|129844|10000|10000|||94.82|92.19|0.00|2.14| +39|2023-10-06T21:13:30.0030000-07:00|10FF0006|Wowobora Gogobora|25363|81809|10000|10000|||94.28|92.90|0.00|0.52| +39|2023-10-06T21:13:30.0480000-07:00|10FF0009|Zewo Negiwo|44427|81177|9399|10000|||104.67|105.97|0.00|-2.59| +39|2023-10-06T21:13:30.0930000-07:00|10FF0001|Sesuga Sapisuga|108401|129071|9500|10000|||94.10|94.34|0.00|0.68| +261|2023-10-06T21:13:29.6330000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:13:29.6330000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:13:29.6330000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:13:30.1390000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|151F0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|31975157|40478540|10000|10000|||100.00|80.10|0.00|0.00|97246|129844|10000|10000|||95.15|92.71|0.00|2.14|00019505|0|1| +21|2023-10-06T21:13:30.1390000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40022472|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|31975157|40478540|10000|10000|||100.00|80.10|0.00|0.00|24836|82773|10000|10000|||95.39|90.34|0.00|2.40|00019506|0|1| +261|2023-10-06T21:13:29.7490000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:13:29.7490000-07:00|Change|4002248A||||||||||||||||||||| +38|2023-10-06T21:13:30.1390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24836|82773|10000|10000|0||95.39|90.34|0.00|2.40|0|0|0||||||||||||| +30|2023-10-06T21:13:30.1390000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +21|2023-10-06T21:13:30.1830000-07:00|4002248D|Zeromus|8BB6|Scald|10FF0003|Gegehi Gehi|150003|33ED0000|100140E|6FD0000|1B|8BB68000|0|0|0|0|0|0|0|0|0|0|30533|73814|6900|10000|||108.47|114.33|-0.02|-2.89|44|44|0|10000|||110.00|115.00|0.00|0.00|00019507|0|1| +261|2023-10-06T21:13:29.7490000-07:00|Change|40022487||||||||||||||||||||| +21|2023-10-06T21:13:30.1830000-07:00|4002248E|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|00019508|0|0| +261|2023-10-06T21:13:29.7490000-07:00|Change|40022489||||||||||||||||||||| +20|2023-10-06T21:13:30.1830000-07:00|4002248F|Zeromus|8B62|Flare|4002248F|Zeromus|4.700|110.00|115.00|0.00|0.00| +20|2023-10-06T21:13:30.1830000-07:00|40022490|Zeromus|8B62|Flare|40022490|Zeromus|4.700|90.00|85.00|0.00|0.00| +21|2023-10-06T21:13:30.1830000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|450003|2EDB0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|31975157|40478540|10000|10000|||100.00|80.10|0.00|0.00|30533|73814|6900|10000|||108.47|114.33|-0.02|-2.89|00019509|0|1| +38|2023-10-06T21:13:30.1830000-07:00|10FF0003|Gegehi Gehi|005A5A23|30533|73814|6900|10000|0||108.47|114.33|-0.02|-2.89|0|0|0||||||||||||| +26|2023-10-06T21:13:30.1830000-07:00|6FD|Vulnerability Up|59.96|4002248D|Zeromus|10FF0003|Gegehi Gehi|01|73814|44| +30|2023-10-06T21:13:30.1830000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:13:30.1830000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:13:30.2280000-07:00|40022913|Bunshin|64AF|Phantom Kamaitachi|40022472|Zeromus|354003|4A090000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|31975157|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||97.23|92.07|0.00|2.91|0001950A|0|1| +20|2023-10-06T21:13:30.2280000-07:00|40022485|Zeromus|8B63|Prominence Spine|40022485|Zeromus|4.700|90.00|85.00|0.00|0.35| +20|2023-10-06T21:13:30.2280000-07:00|40022486|Zeromus|8B63|Prominence Spine|40022486|Zeromus|4.700|90.00|85.00|0.00|0.00| +20|2023-10-06T21:13:30.2280000-07:00|40022487|Zeromus|8B63|Prominence Spine|40022487|Zeromus|4.700|90.00|85.00|0.00|1.57| +20|2023-10-06T21:13:30.2280000-07:00|40022488|Zeromus|8B63|Prominence Spine|40022488|Zeromus|4.700|90.00|85.00|0.00|-1.57| +261|2023-10-06T21:13:29.7490000-07:00|Change|40022490||||||||||||| +20|2023-10-06T21:13:30.2280000-07:00|40022489|Zeromus|8B63|Prominence Spine|40022489|Zeromus|4.700|110.00|115.00|0.00|-2.79| +20|2023-10-06T21:13:30.2280000-07:00|4002248A|Zeromus|8B63|Prominence Spine|4002248A|Zeromus|4.700|110.00|115.00|0.00|3.14| +20|2023-10-06T21:13:30.2280000-07:00|4002248B|Zeromus|8B63|Prominence Spine|4002248B|Zeromus|4.700|110.00|115.00|0.00|1.57| +20|2023-10-06T21:13:30.2280000-07:00|4002248C|Zeromus|8B63|Prominence Spine|4002248C|Zeromus|4.700|110.00|115.00|0.00|-1.57| +261|2023-10-06T21:13:29.7490000-07:00|Change|40022485||||||||||||||||||||| +261|2023-10-06T21:13:29.7490000-07:00|Change|4002248C||||||||||||||||||||| +261|2023-10-06T21:13:29.7490000-07:00|Change|40022488||||||||||||||||||||| +261|2023-10-06T21:13:29.7490000-07:00|Change|40022486||||||||||||||||||||| +261|2023-10-06T21:13:29.7490000-07:00|Change|40022486||||||||||||||||||||| +261|2023-10-06T21:13:29.7490000-07:00|Change|4002248B||||||||||||||||||||| +261|2023-10-06T21:13:29.7490000-07:00|Change|40022913||||||||||| +261|2023-10-06T21:13:29.8720000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:13:30.2720000-07:00|40022472|Zeromus|00019504|31975010||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:13:30.2720000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|32820000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|0001950B|0|8| +22|2023-10-06T21:13:30.2720000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|309D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|37064|90216|10000|10000|||103.69|105.04|0.00|-2.48|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|0001950B|1|8| +22|2023-10-06T21:13:30.2720000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|200004|511F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|39067|81541|9150|10000|||104.16|108.99|0.00|-2.27|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|0001950B|2|8| +22|2023-10-06T21:13:30.2720000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|32700000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|97246|129844|10000|10000|||95.90|93.87|-0.02|2.80|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|0001950B|3|8| +22|2023-10-06T21:13:30.2720000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|323D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|25363|81809|10000|10000|||95.34|94.35|0.00|0.62|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|0001950B|4|8| +22|2023-10-06T21:13:30.2720000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|30CA0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|108401|129071|9500|10000|||95.31|95.90|0.00|0.70|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|0001950B|5|8| +22|2023-10-06T21:13:30.2720000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|200004|52680000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|24836|82773|10000|10000|||96.61|91.40|0.00|2.91|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|0001950B|6|8| +22|2023-10-06T21:13:30.2720000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|334B0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|30533|73814|6900|10000|||108.45|114.30|0.00|-2.76|44427|81177|9399|10000|||103.74|104.01|0.00|-2.67|0001950B|7|8| +261|2023-10-06T21:13:29.8720000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:13:30.3610000-07:00|10FF0003|Gegehi Gehi|00019507|17240|73814|6900|10000|0||108.45|114.30|0.00|-2.76|2300|0|0|01|010006FD|01|42700000|| +37|2023-10-06T21:13:30.4070000-07:00|40022472|Zeromus|00019502|31950348||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:30.4070000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|3F650000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|31975010|40478540|10000|10000|||100.00|80.10|0.00|0.00|108401|129071|9500|10000|||95.31|95.90|0.00|0.70|0001950C|0|1| +38|2023-10-06T21:13:30.4070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108401|129071|9500|10000|0||95.31|95.90|0.00|0.70|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:30.4070000-07:00|76E|Sword Oath|25.36|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:13:30.4500000-07:00|40022472|Zeromus|00019503|31938976||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:29.9900000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:13:29.9900000-07:00|Change|10FF0009||||||||||| +38|2023-10-06T21:13:30.5400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|25363|81809|10000|10000|0||95.75|94.66|0.00|0.70|0|0|0|||||||||||||||| +30|2023-10-06T21:13:30.5400000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:13:30.2060000-07:00|Change|40022908||| +37|2023-10-06T21:13:30.6730000-07:00|40022472|Zeromus|00019505|31933569||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:30.7170000-07:00|40022912|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|450003|5BEB0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|31933569|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||91.15|90.18|0.00|2.29|0001950D|0|1| +261|2023-10-06T21:13:30.3030000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:13:30.8510000-07:00|10FF0009|Zewo Negiwo|0001950B|57357||||||102.98|102.02|0.00|-2.46| +261|2023-10-06T21:13:30.3030000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:13:30.3950000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:13:30.9850000-07:00|10FF0008|Kokosaze Lulusaze|0001950B|49509||||||101.36|101.97|0.00|-2.52| +37|2023-10-06T21:13:30.9850000-07:00|40022472|Zeromus|00019509|31921574||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:30.9850000-07:00|10FF0009|Zewo Negiwo|4098|Temperance|10FF0009|Zewo Negiwo|140F|7508000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57357|81177|9399|10000|||102.77|101.44|0.00|-2.24|57357|81177|9399|10000|||102.77|101.44|0.00|-2.24|0001950E|0|1| +21|2023-10-06T21:13:31.0290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31933569|40478540|10000|10000|||100.00|80.10|0.00|0.00|108401|129071|9500|10000|||95.86|98.56|0.00|0.70|0001950F|0|1| +38|2023-10-06T21:13:31.0300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108401|129071|9500|10000|0||95.86|98.56|0.00|0.70|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:31.0300000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:13:31.0300000-07:00|10FF0001||||| +261|2023-10-06T21:13:30.6020000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:13:31.1170000-07:00|10FF0004|Buhojaqe Zijaqe|0001950B|59834||||||102.39|105.38|0.00|-2.61| +21|2023-10-06T21:13:31.1170000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31933569|40478540|10000|10000|||100.00|80.10|0.00|0.00|24836|82773|10000|10000|||99.19|94.84|0.00|2.39|00019510|0|1| +21|2023-10-06T21:13:31.1620000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|456003|6BA20000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|31921574|40478540|10000|10000|||100.00|80.10|0.00|0.00|25363|81809|10000|10000|||98.61|97.77|-0.02|0.62|00019511|0|1| +38|2023-10-06T21:13:31.1620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|25363|81809|9700|10000|0||98.61|97.77|-0.02|0.62|0|0|0|||||||||||||||| +26|2023-10-06T21:13:31.1620000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:13:31.2520000-07:00|10FF0007|Kehabiqo Febiqo|0001950B|110158||||||97.66|96.73|0.00|1.67| +21|2023-10-06T21:13:31.2520000-07:00|4002248D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|00019512|0|0| +21|2023-10-06T21:13:31.2520000-07:00|4002248E|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|00019513|0|0| +21|2023-10-06T21:13:31.2520000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|46C30000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|31921574|40478540|10000|10000|||100.00|80.10|0.00|0.00|17240|73814|6900|10000|||105.29|110.81|-0.02|-2.41|00019514|0|1| +38|2023-10-06T21:13:31.2520000-07:00|10FF0003|Gegehi Gehi|005A5A23|17240|73814|6600|10000|0||105.29|110.81|-0.02|-2.41|0|0|0|||||||||||||||| +30|2023-10-06T21:13:31.2520000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:13:31.2520000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:13:30.8290000-07:00|Change|10FF0004||||||||| +38|2023-10-06T21:13:31.2960000-07:00|10FF0003|Gegehi Gehi|005A5A23|17240|73814|6600|10000|0||105.29|110.81|-0.02|-2.41|0|0|0|||||||||||||||| +37|2023-10-06T21:13:31.3860000-07:00|10FF0006|Wowobora Gogobora|0001950B|38224||||||98.84|98.17|0.00|3.09| +38|2023-10-06T21:13:31.3860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|59834|81541|9700|10000|0||101.04|104.07|0.00|-2.41|0|0|0|||||||||||||||| +261|2023-10-06T21:13:30.9420000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:13:31.4750000-07:00|40022472|Zeromus|DoT|A92|513|31921574|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|38224|81809|9700|10000|||99.04|98.38|0.00|3.00| +21|2023-10-06T21:13:31.4750000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8E50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31921574|40478540|10000|10000|||100.00|80.10|0.00|0.00|49509|90216|10000|10000|||100.88|101.28|0.00|-2.64|00019515|0|1| +38|2023-10-06T21:13:31.4750000-07:00|40022472|Zeromus|005A5A00|31920275|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:13:31.4750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|38224|81809|9700|10000|0||99.04|98.38|0.00|3.00|0|0|0|||||||||||||||| +37|2023-10-06T21:13:31.5200000-07:00|10FF0001|Sesuga Sapisuga|0001950B|120891||||||96.67|98.71|0.00|0.67| +21|2023-10-06T21:13:31.5200000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|25C00000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|31921574|40478540|10000|10000|||100.00|80.10|0.00|0.00|59834|81541|9700|10000|||100.43|103.63|0.00|-2.35|00019516|0|1| +38|2023-10-06T21:13:31.5200000-07:00|10FF0009|Zewo Negiwo|005A5A18|57357|81177|9949|10000|0||102.64|102.02|0.00|-0.73|0|0|0|||||||||| +261|2023-10-06T21:13:31.0520000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:13:31.5650000-07:00|40022472|Zeromus|0001950F|31918480||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:31.5650000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|177C|120891|129071|9500|10000|||97.17|98.31|0.00|0.67|10FF0001|Sesuga Sapisuga|0|120891|129071|9500|10000|||97.17|98.31|0.00|0.67| +38|2023-10-06T21:13:31.5650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126903|129071|9500|10000|0||97.17|98.31|0.00|0.67|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:31.6100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|49509|90216|10000|10000|0||100.88|101.24|0.00|-2.58|0|0|0||||||||||||| +26|2023-10-06T21:13:31.6100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:13:31.6100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24836|82773|10000|10000|0||100.60|96.57|-0.02|2.49|0|0|0|||||||||||||||| +26|2023-10-06T21:13:31.6100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:13:31.6100000-07:00|10FF0003|Gegehi Gehi|005A5A23|17240|73814|6600|10000|0||104.19|109.59|0.00|-2.99|0|0|0|||||||||||||||| +26|2023-10-06T21:13:31.6100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:13:31.6100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|59834|81541|9300|10000|0||99.86|103.20|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:31.6100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:13:31.6100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|38224|81809|9700|10000|0||99.54|98.60|0.00|2.52|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:31.6100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:31.6100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110158|129844|10000|10000|0||99.87|96.89|0.00|2.75|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:31.6100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:13:31.6100000-07:00|10FF0009|Zewo Negiwo|005A5A18|57357|81177|9949|10000|0||102.60|102.56|0.00|-0.54|0|0|0|||||||||||||||| +26|2023-10-06T21:13:31.6100000-07:00|750|Temperance|20.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:13:31.6100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:13:31.6100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126903|129071|9500|10000|0||97.17|98.31|0.00|0.67|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:31.6100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:13:31.6100000-07:00|10FF0009|Zewo Negiwo|0001950E|57357|81177|9949|10000|0||102.60|102.56|0.00|-0.54|1800|0|0|02|03000750|0|41A00000|||||| +21|2023-10-06T21:13:31.6100000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31920275|40478540|10000|10000|||100.00|80.10|0.00|0.00|59834|81541|9300|10000|||99.86|103.20|0.00|3.12|00019517|0|1| +37|2023-10-06T21:13:31.6530000-07:00|10FF000A|Dukaro Nezikaro|0001950B|45932||||||100.60|96.57|0.00|2.49| +37|2023-10-06T21:13:31.6530000-07:00|40022472|Zeromus|00019510|31916252||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:31.6980000-07:00|40022472|Zeromus|0001950C|31900023||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:31.6980000-07:00|10FF0001|Sesuga Sapisuga|0001950C|126903|129071|9900|10000|0||97.23|98.30|0.00|-0.20|1300|0|0|0| +261|2023-10-06T21:13:31.2530000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:13:31.7860000-07:00|40022472|Zeromus|0001950A|31881070||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:31.7860000-07:00|10FF0003|Gegehi Gehi|0001950B|30371|73814|6600|10000|0||104.43|109.85|0.00|-2.99|2307|0|0|01|040004D3|0|C1F00000|| +37|2023-10-06T21:13:31.7860000-07:00|40022472|Zeromus|00019511|31853516||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:31.7860000-07:00|10FF0006|Wowobora Gogobora|00019511|38224|81809|9700|10000|0||100.52|98.76|0.00|1.77|1B00|0|0|01|01000B25|0|0|| +38|2023-10-06T21:13:31.7860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|38224|81809|9700|10000|0||100.52|98.76|0.00|1.77|0|0|0||||||||||||||||||| +21|2023-10-06T21:13:31.8310000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|15140000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|38224|81809|9700|10000|||100.52|98.76|0.00|1.77|73956|77430|10000|10000|||99.47|98.44|0.00|3.02|00019518|0|1| +21|2023-10-06T21:13:31.8310000-07:00|10FF0009|Zewo Negiwo|03|Sprint|10FF0009|Zewo Negiwo|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57357|81177|9949|10000|||102.42|103.13|0.00|-0.38|57357|81177|9949|10000|||102.42|103.13|0.00|-0.38|00019519|0|1| +21|2023-10-06T21:13:31.8310000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|456003|300C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31900023|40478540|10000|10000|||100.00|80.10|0.00|0.00|38224|81809|9700|10000|||100.52|98.76|0.00|1.77|0001951A|0|1| +38|2023-10-06T21:13:31.8310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|38224|81809|9700|10000|0||100.52|98.76|0.00|1.77|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:31.8310000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:13:31.3550000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:31.4450000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:13:31.9640000-07:00|10FF0009|Zewo Negiwo|00019519|57357|81177|9949|10000|0||102.46|103.01|0.00|0.83|1800|0|0|01|05000032|1E|41200000|| +26|2023-10-06T21:13:31.9640000-07:00|32|Sprint|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|1E|81177|81177| +261|2023-10-06T21:13:31.4450000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:32.0080000-07:00|40022472|Zeromus|00019514|31835401||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:32.0080000-07:00|10FF0003|Gegehi Gehi|00019514|30371|73814|6600|10000|0||103.62|108.97|0.00|-2.77|2300|0|0|01|040004D3|0|41F00000|| +38|2023-10-06T21:13:32.0080000-07:00|10FF0003|Gegehi Gehi|005A5A23|30371|73814|6600|10000|0||103.62|108.97|0.00|-2.77|0|0|0|||||||||||||||| +37|2023-10-06T21:13:32.1410000-07:00|40022472|Zeromus|00019517|31835242||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:32.1410000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44722003|61360000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|31835401|40478540|10000|10000|||100.00|80.10|0.00|0.00|49509|90216|10000|10000|||102.76|98.45|-0.02|2.75|0001951B|0|1| +21|2023-10-06T21:13:32.1410000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|39A20000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|110158|129844|10000|10000|||103.11|96.90|0.00|3.12|31835401|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001951C|0|1| +37|2023-10-06T21:13:32.2310000-07:00|40022472|Zeromus|00019515|31832965||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:32.2310000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.47|98.44|0.00|2.50|0|0|0||||||| +26|2023-10-06T21:13:32.2310000-07:00|77B|Summon Order|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:13:32.2310000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59834|81541|9300|10000|||97.78|102.36|0.00|-2.33|59834|81541|9300|10000|||97.78|102.36|0.00|-2.33|0001951D|0|1| +261|2023-10-06T21:13:31.7740000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:13:31.7740000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:13:32.3210000-07:00|4002248D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|0001951E|0|0| +21|2023-10-06T21:13:32.3210000-07:00|4002248E|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001951F|0|0| +37|2023-10-06T21:13:32.4550000-07:00|40022472|Zeromus|00019516|31823301||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:32.4550000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|710003|11B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31832965|40478540|10000|10000|||100.00|80.10|0.00|0.00|45932|82773|10000|10000|||102.98|96.05|0.00|-3.05|00019520|0|1| +38|2023-10-06T21:13:32.4550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|45932|82773|10000|10000|0||102.98|96.05|0.00|-3.05|0|0|0|||||||||||||||| +26|2023-10-06T21:13:32.4550000-07:00|7A2|Bunshin|27.15|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|82773|82773| +261|2023-10-06T21:13:32.0030000-07:00|Change|40022913||||||||| +261|2023-10-06T21:13:32.1210000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:13:32.5430000-07:00|40022913|Bunshin|4406|Gust Slash|40022472|Zeromus|710003|FE30000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|31823301|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||104.30|95.79|0.00|-2.90|00019521|0|1| +39|2023-10-06T21:13:32.5430000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.47|98.44|0.00|2.32| +37|2023-10-06T21:13:32.5890000-07:00|40022472|Zeromus|0001951A|31811001||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:32.5890000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|33CC0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|31823301|40478540|10000|10000|||100.00|80.10|0.00|0.00|110158|129844|10000|10000|||105.85|96.87|0.00|-3.13|00019522|0|1| +261|2023-10-06T21:13:32.1210000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:13:32.6340000-07:00|10FF0006|Wowobora Gogobora|00019518|43620||||||104.45|94.32|0.00|2.41| +04|2023-10-06T21:13:32.2130000-07:00|40022908|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||91.57|89.62|0.00|-2.74| +261|2023-10-06T21:13:32.2130000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:32.2130000-07:00|Remove|40022908| +37|2023-10-06T21:13:32.6800000-07:00|40022472|Zeromus|0001950D|31787470||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:32.6800000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|ABD0000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|31811001|40478540|10000|10000|||100.00|80.10|0.00|0.00|57357|81177|9949|10000|||103.62|98.86|0.00|2.46|00019523|0|1| +261|2023-10-06T21:13:32.2130000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:13:32.7240000-07:00|10FF0008|Kokosaze Lulusaze|50411|90216|10000|10000|||103.70|97.05|0.00|-3.02| +21|2023-10-06T21:13:32.7240000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31787470|40478540|10000|10000|||100.00|80.10|0.00|0.00|110158|129844|10000|10000|||106.58|96.85|0.00|-2.75|00019524|0|1| +39|2023-10-06T21:13:32.7690000-07:00|10FF000A|Dukaro Nezikaro|46759|82773|10000|10000|||105.26|95.54|0.00|-2.91| +24|2023-10-06T21:13:32.7690000-07:00|40022472|Zeromus|DoT|0|209B|31787470|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|126903|129071|9900|10000|||91.90|100.13|0.00|-2.02| +38|2023-10-06T21:13:32.7690000-07:00|40022472|Zeromus|005A5A00|31779123|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:13:32.3140000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:13:32.8130000-07:00|10FF0003|Gegehi Gehi|31109|73814|6800|10000|||99.89|104.52|0.00|-2.51| +38|2023-10-06T21:13:32.8130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50411|90216|10000|10000|0||104.22|96.02|0.00|3.12|0|0|0||||||||||||| +30|2023-10-06T21:13:32.8130000-07:00|32|Sprint|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|90216|90216| +37|2023-10-06T21:13:32.8590000-07:00|40022472|Zeromus|00019520|31774592||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:32.8590000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31779123|40478540|10000|10000|||100.00|80.10|0.00|0.00|43620|81809|9700|10000|||105.58|93.76|0.00|2.21|00019525|0|1| +36|2023-10-06T21:13:32.8590000-07:00|26D4|3| +22|2023-10-06T21:13:32.9020000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|30371|73814|6600|10000|||99.89|104.52|0.00|-2.51|73956|77430|10000|10000|||99.47|98.44|0.00|2.25|00019526|0|8| +22|2023-10-06T21:13:32.9020000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0009|Zewo Negiwo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57357|81177|9549|10000|||104.08|97.31|0.00|-3.07|73956|77430|10000|10000|||99.47|98.44|0.00|2.25|00019526|1|8| +22|2023-10-06T21:13:32.9020000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|59834|81541|9300|10000|||93.96|100.35|0.00|-2.05|73956|77430|10000|10000|||99.47|98.44|0.00|2.25|00019526|2|8| +22|2023-10-06T21:13:32.9020000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|126903|129071|9900|10000|||91.32|100.33|0.00|-2.01|73956|77430|10000|10000|||99.47|98.44|0.00|2.25|00019526|3|8| +22|2023-10-06T21:13:32.9020000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|46759|82773|10000|10000|||105.44|95.50|0.00|-2.91|73956|77430|10000|10000|||99.47|98.44|0.00|2.25|00019526|4|8| +22|2023-10-06T21:13:32.9020000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|110158|129844|10000|10000|||106.65|96.85|0.00|-2.75|73956|77430|10000|10000|||99.47|98.44|0.00|2.25|00019526|5|8| +22|2023-10-06T21:13:32.9020000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|50411|90216|10000|10000|||104.22|96.02|0.00|3.12|73956|77430|10000|10000|||99.47|98.44|0.00|2.25|00019526|6|8| +22|2023-10-06T21:13:32.9020000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|43620|81809|9700|10000|||105.58|93.76|0.00|2.21|73956|77430|10000|10000|||99.47|98.44|0.00|2.25|00019526|7|8| +39|2023-10-06T21:13:32.9020000-07:00|10FF0004|Buhojaqe Zijaqe|60649|81541|9500|10000|||93.96|100.35|0.00|-2.05| +21|2023-10-06T21:13:32.9020000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|26970000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|31779123|40478540|10000|10000|||100.00|80.10|0.00|0.00|126903|129071|9900|10000|||91.32|100.33|0.00|-2.01|00019527|0|1| +38|2023-10-06T21:13:32.9020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126903|129071|9900|10000|0||91.32|100.33|0.00|-2.01|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:32.9020000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:13:32.4990000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:32.9470000-07:00|40022472|Zeromus|00019521|31770525||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:32.9470000-07:00|40022472|Zeromus|0001951B|31745639||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:32.9470000-07:00|10FF0007|Kehabiqo Febiqo|0001951C|95404||||||106.72|96.85|0.00|-2.75| +39|2023-10-06T21:13:32.9900000-07:00|10FF0007|Kehabiqo Febiqo|96702|129844|10000|10000|||106.72|96.85|0.00|-2.75| +39|2023-10-06T21:13:32.9900000-07:00|10FF0006|Wowobora Gogobora|44438|81809|9900|10000|||106.24|93.51|0.00|1.78| +39|2023-10-06T21:13:33.0360000-07:00|10FF0009|Zewo Negiwo|58168|81177|9770|10000|||104.72|96.93|0.00|2.86| +39|2023-10-06T21:13:33.0820000-07:00|10FF0001|Sesuga Sapisuga|128193|129071|10000|10000|||90.05|100.74|0.00|-2.12| +261|2023-10-06T21:13:32.7330000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:13:33.2140000-07:00|40022472|Zeromus|00019522|31732379||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:33.2580000-07:00|40022472|Zeromus|00019524|31729595||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:33.2590000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31729595|40478540|10000|10000|||100.00|80.10|0.00|0.00|31109|73814|6800|10000|||99.39|101.94|0.00|-2.87|00019528|0|1| +21|2023-10-06T21:13:33.3040000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31729595|40478540|10000|10000|||100.00|80.10|0.00|0.00|128193|129071|10000|10000|||88.76|100.97|0.00|-2.22|00019529|0|1| +21|2023-10-06T21:13:33.3040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31729595|40478540|10000|10000|||100.00|80.10|0.00|0.00|46759|82773|10000|10000|||106.03|95.38|0.00|-2.91|0001952A|0|1| +31|2023-10-06T21:13:33.3040000-07:00|10FF0001||||| +261|2023-10-06T21:13:32.8470000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:13:32.9620000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:13:32.9620000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:13:33.3920000-07:00|40022472|Zeromus|00019525|31729445||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:33.3920000-07:00|4002248D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|0001952B|0|0| +21|2023-10-06T21:13:33.3920000-07:00|4002248E|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001952C|0|0| +261|2023-10-06T21:13:33.0760000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:13:33.1920000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:13:33.6590000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|454003|41D20000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|31729445|40478540|10000|10000|||100.00|80.10|0.00|0.00|44438|81809|9900|10000|||110.39|93.19|0.00|1.61|0001952D|0|1| +261|2023-10-06T21:13:33.1920000-07:00|Change|10FF0001||||||||||| +38|2023-10-06T21:13:33.6600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|44438|81809|9600|10000|0||110.39|93.19|0.00|1.61|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:33.6600000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +20|2023-10-06T21:13:33.7040000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|4.860|99.81|100.21|0.00|3.03| +261|2023-10-06T21:13:33.2830000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:13:33.7940000-07:00|10FF0003|Gegehi Gehi|00019526|31109|73814|6800|10000|0||100.28|99.72|0.00|2.99|2300|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T21:13:33.7940000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T21:13:33.7940000-07:00|40022472|Zeromus|00019528|31729417||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:33.8380000-07:00|40022472|Zeromus|00019529|31726614||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:33.8380000-07:00|40022472|Zeromus|0001952A|31724421||||||100.00|80.10|0.00|0.00| +23|2023-10-06T21:13:33.8810000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|Cancelled| +37|2023-10-06T21:13:33.9270000-07:00|10FF0009|Zewo Negiwo|00019526|58168|81177|9770|10000|0||112.27|95.39|0.00|1.68|1801|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:13:33.9270000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +261|2023-10-06T21:13:33.4780000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:13:33.9720000-07:00|40022472|Zeromus|00019523|31721672|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:13:33.9720000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:13:34.0620000-07:00|10FF0004|Buhojaqe Zijaqe|00019526|60649|81541|9500|10000|0||86.35|100.08|0.00|-1.67|1C02|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:13:34.0620000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T21:13:33.5790000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:13:33.5790000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:13:33.7010000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:13:34.1510000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|91B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31721672|40478540|10000|10000|||100.00|80.10|0.00|0.00|50411|90216|10000|10000|||113.37|94.56|1.72|1.25|0001952E|0|1| +261|2023-10-06T21:13:33.8120000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:34.1960000-07:00|10FF0001|Sesuga Sapisuga|00019526|128193|129071|10000|10000|0||83.66|100.28|0.00|-2.70|1303|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:13:34.1960000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:13:34.1960000-07:00|40022472|Zeromus|00019527|31711793||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:34.2860000-07:00|40022472|Zeromus|0001952D|31694943||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:34.2860000-07:00|10FF0006|Wowobora Gogobora|0001952D|44438|81809|9600|10000|0||114.54|94.20|-0.02|2.01|1B00|0|0|01|01000B25|0|0|| +21|2023-10-06T21:13:34.2860000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|19780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31711793|40478540|10000|10000|||100.00|80.10|0.00|0.00|44438|81809|9600|10000|||114.54|94.20|-0.02|2.01|0001952F|0|1| +38|2023-10-06T21:13:34.2860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|44438|81809|9600|10000|0||114.54|94.20|-0.02|2.01|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:34.2860000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:13:34.3310000-07:00|10FF000A|Dukaro Nezikaro|00019526|46759|82773|10000|10000|0||113.50|94.92|0.00|-3.13|1E04|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T21:13:34.3310000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +24|2023-10-06T21:13:34.3310000-07:00|10FF0003|Gegehi Gehi|HoT|0|9C7|31109|73814|6800|10000|||103.55|98.53|0.00|2.36|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.47|98.44|0.00|2.14| +38|2023-10-06T21:13:34.3310000-07:00|10FF0003|Gegehi Gehi|005A5A23|33612|73814|6800|10000|0||103.55|98.53|0.00|2.36|0|0|0||||||||||||||||||| +261|2023-10-06T21:13:33.9220000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:13:34.3760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F3F|60649|81541|9500|10000|||84.86|99.19|0.00|-1.88|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.47|98.44|0.00|2.14| +20|2023-10-06T21:13:34.3760000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|84.86|99.19|0.00|-1.88| +38|2023-10-06T21:13:34.3760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64552|81541|10000|10000|0||84.86|99.19|0.00|-1.88|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:13:34.4640000-07:00|10FF0007|Kehabiqo Febiqo|00019526|96702|129844|10000|10000|0||115.21|97.28|0.00|3.08|1505|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:13:34.4640000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +21|2023-10-06T21:13:34.4640000-07:00|4002248D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|00019530|0|0| +261|2023-10-06T21:13:34.0390000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:34.0390000-07:00|Change|40022913||| +21|2023-10-06T21:13:34.4650000-07:00|4002248E|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|00019531|0|0| +24|2023-10-06T21:13:34.4650000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|F4A|96702|129844|10000|10000|||115.74|97.31|0.00|3.08|10FF0007|Kehabiqo Febiqo|0|96702|129844|10000|10000|||115.74|97.31|0.00|3.08| +24|2023-10-06T21:13:34.4650000-07:00|40022472|Zeromus|DoT|A92|500|31694943|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|44438|81809|9600|10000|||115.91|94.44|0.00|-2.31| +38|2023-10-06T21:13:34.4650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100616|129844|10000|10000|0||115.74|97.31|0.00|3.08|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:34.4650000-07:00|40022472|Zeromus|005A5A00|31693663|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:13:34.5550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50411|90216|10000|10000|0||115.29|95.50|1.11|1.21|0|0|0||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:13:34.5550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46759|82773|10000|10000|0||114.97|94.82|0.00|-3.05|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:13:34.5550000-07:00|10FF0003|Gegehi Gehi|005A5A23|33612|73814|6800|10000|0||104.85|98.72|0.00|2.32|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:13:34.5550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64552|81541|10000|10000|0||84.60|99.04|0.00|-2.37|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:13:34.5550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|44438|81809|9600|10000|0||115.91|94.44|0.00|-2.31|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:34.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100616|129844|10000|10000|0||115.74|97.31|0.00|3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:13:34.5550000-07:00|10FF0009|Zewo Negiwo|005A5A18|58168|81177|9770|10000|0||116.16|94.35|0.00|1.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:13:34.5550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128193|129071|10000|10000|0||82.42|99.29|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:13:34.5550000-07:00|10FF0009|Zewo Negiwo|HoT|0|9FA|58168|81177|9770|10000|||116.16|94.35|0.00|1.90|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||99.47|98.44|0.00|2.14| +24|2023-10-06T21:13:34.5550000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|20FA|128193|129071|10000|10000|||82.42|99.29|0.00|3.12|10FF0001|Sesuga Sapisuga|0|128193|129071|10000|10000|||82.42|99.29|0.00|3.12| +21|2023-10-06T21:13:34.5550000-07:00|10FF0003|Gegehi Gehi|03|Sprint|10FF0003|Gegehi Gehi|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33612|73814|6800|10000|||104.85|98.72|0.00|2.32|33612|73814|6800|10000|||104.85|98.72|0.00|2.32|00019532|0|1| +21|2023-10-06T21:13:34.5550000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|1E712003|221B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31694943|40478540|10000|10000|||100.00|80.10|0.00|0.00|46759|82773|10000|10000|||114.97|94.82|0.00|-3.05|00019533|0|1| +38|2023-10-06T21:13:34.5550000-07:00|10FF0009|Zewo Negiwo|005A5A18|60722|81177|10000|10000|0||116.16|94.35|0.00|1.90|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:34.5550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||82.42|99.29|0.00|3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:34.5550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46759|82773|10000|10000|0||114.97|94.82|0.00|-3.05|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:34.5550000-07:00|7A2|Bunshin|25.05|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|82773|82773| +37|2023-10-06T21:13:34.5980000-07:00|10FF0008|Kokosaze Lulusaze|00019526|50411|90216|10000|10000|0||115.88|95.75|0.00|1.25|1F06|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:13:34.5980000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +21|2023-10-06T21:13:34.5980000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1ED30000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|31693663|40478540|10000|10000|||100.00|80.10|0.00|0.00|50411|90216|10000|10000|||115.88|95.75|0.00|1.25|00019534|0|1| +21|2023-10-06T21:13:34.6430000-07:00|40022913|Bunshin|4407|Aeolian Edge|40022472|Zeromus|716003|1FAA0000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|31693663|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||117.12|94.39|0.00|-2.27|00019535|0|1| +261|2023-10-06T21:13:34.2430000-07:00|Change|40022913||||||||| +37|2023-10-06T21:13:34.6880000-07:00|10FF0003|Gegehi Gehi|00019532|33612|73814|6800|10000|0||106.02|98.85|0.00|2.29|2300|0|0|01|06000032|1E|41200000|| +26|2023-10-06T21:13:34.6880000-07:00|32|Sprint|10.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|1E|73814|73814| +37|2023-10-06T21:13:34.7320000-07:00|10FF0006|Wowobora Gogobora|00019526|44438|81809|9600|10000|0||116.86|94.41|0.00|-2.89|1B07|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T21:13:34.7320000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +261|2023-10-06T21:13:34.3330000-07:00|Change|40022912||||| +38|2023-10-06T21:13:34.7330000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.47|98.44|0.00|2.32|0|0|0|||| +30|2023-10-06T21:13:34.7330000-07:00|77B|Summon Order|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T21:13:34.7770000-07:00|4002291E||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:13:34.7770000-07:00|4002291E||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:13:34.8220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64552|81541|10000|10000|0||83.88|98.62|-0.01|2.54|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:34.8220000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:13:34.9100000-07:00|40022472|Zeromus|0001952E|31691332||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:34.9100000-07:00|40022913|Bunshin|75608|78475|10000|10000|||117.12|94.39|0.00|-2.27| +261|2023-10-06T21:13:34.5140000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:13:35.0000000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|4E130000|143E|340000|4|170C8000|11B|2A8000|0|0|0|0|0|0|0|0|31693663|40478540|10000|10000|||100.00|80.10|0.00|0.00|100616|129844|10000|10000|||116.48|96.65|0.00|3.08|00019536|0|1| +37|2023-10-06T21:13:35.0440000-07:00|40022472|Zeromus|0001952F|31684812||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:35.0440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||82.42|99.29|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:35.0440000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:13:34.6050000-07:00|Add|4002291E||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:13:34.6050000-07:00|4002291E|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||119.12|93.45|0.00|-1.07| +261|2023-10-06T21:13:34.6050000-07:00|Change|4002291E||| +37|2023-10-06T21:13:35.0890000-07:00|40022472|Zeromus|00019533|31676081||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:35.0890000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|117.26|94.77|-0.01|1.86| +261|2023-10-06T21:13:34.6050000-07:00|Change|4002291E||| +261|2023-10-06T21:13:34.6050000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:13:35.1790000-07:00|40022472|Zeromus|00019535|31667975||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:35.1790000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|38A40000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|100616|129844|10000|10000|||116.57|96.11|0.00|-2.31|31676081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019537|0|1| +21|2023-10-06T21:13:35.1790000-07:00|4002248F|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|00019538|0|0| +21|2023-10-06T21:13:35.1790000-07:00|40022490|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|00019539|0|0| +261|2023-10-06T21:13:34.7220000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:13:35.2240000-07:00|40022485|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.35|0001953A|0|0| +21|2023-10-06T21:13:35.2240000-07:00|40022486|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|0001953B|0|0| +21|2023-10-06T21:13:35.2240000-07:00|40022487|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|1.57|0001953C|0|0| +21|2023-10-06T21:13:35.2240000-07:00|40022488|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|-1.57|0001953D|0|0| +21|2023-10-06T21:13:35.2240000-07:00|40022489|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|-2.79|0001953E|0|0| +21|2023-10-06T21:13:35.2240000-07:00|4002248A|Zeromus|8B63|Prominence Spine|10FF0003|Gegehi Gehi|150003|E4E20000|200140E|6FD0000|1B|8B638000|0|0|0|0|0|0|0|0|0|0|33612|73814|6800|10000|||108.53|99.05|0.00|2.29|44|44|0|10000|||110.00|115.00|0.00|3.14|0001953F|0|1| +21|2023-10-06T21:13:35.2240000-07:00|4002248B|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|1.57|00019540|0|0| +21|2023-10-06T21:13:35.2240000-07:00|4002248C|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|-1.57|00019541|0|0| +261|2023-10-06T21:13:34.7220000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|40022485||||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:13:34.7220000-07:00|Change|4002248A||||||||||||| +21|2023-10-06T21:13:35.3120000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|147F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|33612|73814|6800|10000|||109.69|99.12|0.00|2.29|73956|77430|10000|10000|||99.47|98.44|0.00|2.84|00019542|0|1| +21|2023-10-06T21:13:35.3120000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32410000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31667975|40478540|10000|10000|||100.00|80.10|0.00|0.00|64552|81541|10000|10000|||83.82|98.59|0.00|2.42|00019543|0|1| +37|2023-10-06T21:13:35.3560000-07:00|40022472|Zeromus|00019534|31660084||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:35.4010000-07:00|10FF0003|Gegehi Gehi|0001953F|0|73814|0|10000|0||110.77|99.20|0.00|2.29|2300|0|0|04|01000000|0|0|||||||||||||| +21|2023-10-06T21:13:35.4010000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|2FAE0000|200004|3D168000|0|0|0|0|0|0|0|0|0|0|0|0|31667975|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||82.42|99.29|0.00|2.40|00019544|0|1| +38|2023-10-06T21:13:35.4010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||82.42|99.29|0.00|2.40|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:35.4010000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:13:35.4010000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|73814|0|10000|0||110.77|99.20|0.00|2.29|0|0|0|||| +30|2023-10-06T21:13:35.4010000-07:00|6FD|Vulnerability Up|0.00|4002248D|Zeromus|10FF0003|Gegehi Gehi|01|73814|44| +30|2023-10-06T21:13:35.4010000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +30|2023-10-06T21:13:35.4010000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:13:35.4010000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:13:35.4010000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +30|2023-10-06T21:13:35.4010000-07:00|32|Sprint|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|1E|73814|73814| +261|2023-10-06T21:13:34.9580000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:34.9580000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:13:35.4900000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31660084|40478540|10000|10000|||100.00|80.10|0.00|0.00|46759|82773|10000|10000|||117.11|94.38|0.00|-2.27|00019545|0|1| +39|2023-10-06T21:13:35.5340000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.47|98.44|0.00|2.35| +39|2023-10-06T21:13:35.7130000-07:00|10FF0008|Kokosaze Lulusaze|51313|90216|10000|10000|||118.15|95.66|0.00|1.56| +39|2023-10-06T21:13:35.7570000-07:00|10FF000A|Dukaro Nezikaro|47586|82773|10000|10000|||117.11|94.38|0.00|-2.27| +24|2023-10-06T21:13:35.7570000-07:00|40022472|Zeromus|DoT|0|20E1|31660084|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||82.42|99.29|0.00|2.40| +38|2023-10-06T21:13:35.7570000-07:00|40022472|Zeromus|005A5A00|31651667|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +34|2023-10-06T21:13:35.8010000-07:00|4002291E|Carbuncle|4002291E|Carbuncle|01| +261|2023-10-06T21:13:35.3780000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T21:13:35.3780000-07:00|Change|4002291E||| +36|2023-10-06T21:13:35.8460000-07:00|27B0|3| +39|2023-10-06T21:13:35.8900000-07:00|10FF0004|Buhojaqe Zijaqe|65367|81541|9800|10000|||83.82|98.59|0.00|2.42| +37|2023-10-06T21:13:35.9800000-07:00|10FF0007|Kehabiqo Febiqo|00019537|86116||||||116.68|95.41|0.00|-2.40| +39|2023-10-06T21:13:35.9800000-07:00|10FF0007|Kehabiqo Febiqo|87414|129844|10000|10000|||116.68|95.41|0.00|-2.40| +261|2023-10-06T21:13:35.5690000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T21:13:35.9800000-07:00|10FF0006|Wowobora Gogobora|45256|81809|9800|10000|||117.57|94.30|0.00|0.83| +261|2023-10-06T21:13:35.6670000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:13:35.9800000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31651667|40478540|10000|10000|||100.00|80.10|0.00|0.00|44438|81809|9600|10000|||117.57|94.30|0.00|0.83|00019546|0|1| +37|2023-10-06T21:13:36.0250000-07:00|40022472|Zeromus|00019545|31649581||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:36.0250000-07:00|10FF0009|Zewo Negiwo|61533|81177|10000|10000|||117.27|94.77|0.00|-2.28| +21|2023-10-06T21:13:36.0250000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31D00000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31651667|40478540|10000|10000|||100.00|80.10|0.00|0.00|60722|81177|10000|10000|||117.27|94.77|0.00|-2.28|00019547|0|1| +38|2023-10-06T21:13:36.0250000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.28|98.11|0.00|1.83|0|0|0||||||| +26|2023-10-06T21:13:36.0250000-07:00|7AE|Summon Order IV|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:13:36.0250000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65367|81541|9800|10000|||83.82|98.59|0.00|2.42|65367|81541|9800|10000|||83.82|98.59|0.00|2.42|00019548|0|1| +39|2023-10-06T21:13:36.0690000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||82.42|99.29|0.00|2.40| +37|2023-10-06T21:13:36.1140000-07:00|40022472|Zeromus|00019543|31636716||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:36.1140000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|ACB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31651667|40478540|10000|10000|||100.00|80.10|0.00|0.00|87414|129844|10000|10000|||116.65|95.38|0.00|-2.81|00019549|0|1| +21|2023-10-06T21:13:36.1140000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|34870000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|31651667|40478540|10000|10000|||100.00|80.10|0.00|0.00|44438|81809|9600|10000|||117.57|94.30|0.00|0.83|0001954A|0|1| +38|2023-10-06T21:13:36.1140000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45256|81809|9500|10000|0||117.57|94.30|0.00|0.83|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:36.1140000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:13:36.1590000-07:00|40022472|Zeromus|00019544|31624510||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:13:36.3370000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|200004|3ADB0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|65367|81541|9800|10000|||83.82|98.59|0.00|2.42|73956|77430|10000|10000|||98.85|97.38|0.00|2.38|0001954B|0|6| +22|2023-10-06T21:13:36.3370000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|258E0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||82.42|99.29|0.00|2.40|73956|77430|10000|10000|||98.85|97.38|0.00|2.38|0001954B|1|6| +22|2023-10-06T21:13:36.3370000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|200004|3D600000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|87414|129844|10000|10000|||115.99|95.24|0.00|-2.93|73956|77430|10000|10000|||98.85|97.38|0.00|2.38|0001954B|2|6| +22|2023-10-06T21:13:36.3370000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|4|25F40000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|47586|82773|10000|10000|||117.09|94.35|0.00|-2.24|73956|77430|10000|10000|||98.85|97.38|0.00|2.38|0001954B|3|6| +22|2023-10-06T21:13:36.3370000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|24E10000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|45256|81809|9500|10000|||117.29|94.88|0.00|-1.95|73956|77430|10000|10000|||98.85|97.38|0.00|2.38|0001954B|4|6| +22|2023-10-06T21:13:36.3370000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0009|Zewo Negiwo|4|24830000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|61533|81177|9600|10000|||117.27|94.77|0.00|-2.28|73956|77430|10000|10000|||98.85|97.38|0.00|2.38|0001954B|5|6| +261|2023-10-06T21:13:35.8950000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:35.8950000-07:00|Change|10FF0009||||||||||||||||| +37|2023-10-06T21:13:36.5150000-07:00|40022472|Zeromus|00019536|31604523||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:36.5150000-07:00|10FF0007|Kehabiqo Febiqo|00019536|93314||||||115.18|95.08|0.00|-2.78| +37|2023-10-06T21:13:36.5150000-07:00|40022472|Zeromus|00019546|31604281||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:36.1300000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:13:36.6050000-07:00|10FF0009|Zewo Negiwo|1D06|Thin Air|10FF0009|Zewo Negiwo|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61533|81177|9600|10000|||117.27|94.77|0.00|-2.28|61533|81177|9600|10000|||117.27|94.77|0.00|-2.28|0001954C|0|1| +38|2023-10-06T21:13:36.6050000-07:00|10FF0009|Zewo Negiwo|005A5A18|61533|81177|9600|10000|0||117.27|94.77|0.00|-2.28|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:36.6050000-07:00|4C1|Thin Air|12.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +37|2023-10-06T21:13:36.6490000-07:00|40022472|Zeromus|00019549|31601518||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:36.7370000-07:00|40022472|Zeromus|0001954A|31588071||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:36.7370000-07:00|10FF0006|Wowobora Gogobora|0001954A|45256|81809|9500|10000|0||116.08|96.59|0.00|-1.19|1B00|0|0|01|06000B25|0|0|| +21|2023-10-06T21:13:36.7370000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|456003|336F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31604281|40478540|10000|10000|||100.00|80.10|0.00|0.00|45256|81809|9500|10000|||116.08|96.59|0.00|-1.19|0001954D|0|1| +38|2023-10-06T21:13:36.7370000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45256|81809|9500|10000|0||116.08|96.59|0.00|-1.19|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:36.7370000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +20|2023-10-06T21:13:36.7820000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|83.82|98.59|0.00|2.42| +21|2023-10-06T21:13:36.8260000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|11CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31588071|40478540|10000|10000|||100.00|80.10|0.00|0.00|51313|90216|10000|10000|||118.15|95.66|-0.02|1.48|0001954E|0|1| +261|2023-10-06T21:13:36.4120000-07:00|Change|40022913||| +21|2023-10-06T21:13:36.9610000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|716003|32670000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|31588071|40478540|10000|10000|||100.00|80.10|0.00|0.00|47586|82773|10000|10000|||112.58|93.12|0.00|-1.84|0001954F|0|1| +38|2023-10-06T21:13:36.9610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|47586|82773|10000|10000|0||112.58|93.12|0.00|-1.84|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:36.9610000-07:00|7A2|Bunshin|22.64|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +261|2023-10-06T21:13:36.5030000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T21:13:37.0500000-07:00|40022913|Bunshin|4405|Spinning Edge|40022472|Zeromus|712003|194D0000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|31588071|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||112.13|93.22|0.00|-2.40|00019550|0|1| +261|2023-10-06T21:13:36.6250000-07:00|Change|40022913||||||||| +21|2023-10-06T21:13:37.0940000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2EA70000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|31588071|40478540|10000|10000|||100.00|80.10|0.00|0.00|51313|90216|10000|10000|||118.01|95.68|0.00|-1.44|00019551|0|1| +37|2023-10-06T21:13:37.1380000-07:00|10FF0004|Buhojaqe Zijaqe|0001954B|80434||||||83.82|98.59|0.00|2.42| +24|2023-10-06T21:13:37.2270000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|EF3|51313|90216|10000|10000|||117.36|95.83|0.00|-2.32|10FF0009|Zewo Negiwo|0|61533|81177|9600|10000|||116.69|95.00|0.00|-1.39| +38|2023-10-06T21:13:37.2270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|55140|90216|10000|10000|0||117.36|95.83|0.00|-2.32|0|0|0||||||||||||| +24|2023-10-06T21:13:37.2720000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9C8|47586|82773|10000|10000|||111.17|93.04|0.00|-2.12|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|-2.61| +38|2023-10-06T21:13:37.2720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50090|82773|10000|10000|0||111.17|93.04|0.00|-2.12|0|0|0||||||||||||||||||| +37|2023-10-06T21:13:37.3170000-07:00|40022472|Zeromus|00019547|31575319||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:37.3170000-07:00|10FF0009|Zewo Negiwo|00019547|61533|81177|9600|10000|0||115.73|95.39|0.00|-1.32|1800|0|0|01|070004C1|FF9C|C1400000|| +21|2023-10-06T21:13:37.3170000-07:00|10FF0009|Zewo Negiwo|1D89|Swiftcast|10FF0009|Zewo Negiwo|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61533|81177|9600|10000|||115.73|95.39|0.00|-1.32|61533|81177|9600|10000|||115.73|95.39|0.00|-1.32|00019552|0|1| +38|2023-10-06T21:13:37.3170000-07:00|10FF0009|Zewo Negiwo|005A5A18|61533|81177|9600|10000|0||115.73|95.39|0.00|-1.32|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:13:37.3170000-07:00|A7|Swiftcast|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:13:36.8500000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:36.9620000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:13:37.3620000-07:00|10FF0009|Zewo Negiwo|0001954C|61533|81177|9600|10000|0||115.73|95.39|0.00|-1.32|1800|0|0|02|070004C1|FF9C|41400000|||||| +37|2023-10-06T21:13:37.3620000-07:00|40022472|Zeromus|0001954F|31562416||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:37.3620000-07:00|10FF0009|Zewo Negiwo|005A5A18|61533|81177|9600|10000|0||115.73|95.39|0.00|-1.32|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:13:36.9620000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:13:37.4060000-07:00|10FF0007|Kehabiqo Febiqo|0001954B|109026||||||109.17|95.99|0.00|-1.66| +25|2023-10-06T21:13:37.4070000-07:00|10FF0003|Gegehi Gehi|4002248A|Zeromus| +24|2023-10-06T21:13:37.4070000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A08|80434|81541|9800|10000|||83.82|98.59|0.00|2.42|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|-2.61| +38|2023-10-06T21:13:37.4070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9800|10000|0||83.82|98.59|0.00|2.42|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:13:37.4510000-07:00|40022472|Zeromus|00019550|31555939||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:37.4510000-07:00|10FF0009|Zewo Negiwo|00019552|61533|81177|9600|10000|0||114.83|95.76|0.00|-1.03|1800|0|0|01|080000A7|0|41200000|| +38|2023-10-06T21:13:37.4510000-07:00|10FF0009|Zewo Negiwo|005A5A18|61533|81177|9600|10000|0||114.83|95.76|0.00|-1.03|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:13:37.4960000-07:00|40022472|Zeromus|0001954D|31542772||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:37.4960000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A13|93314|129844|10000|10000|||109.17|95.99|0.00|-1.66|10FF0007|Kehabiqo Febiqo|0|93314|129844|10000|10000|||109.17|95.99|0.00|-1.66| +24|2023-10-06T21:13:37.4960000-07:00|40022472|Zeromus|DoT|A92|512|31562416|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|45256|81809|9500|10000|||115.36|97.20|0.00|-1.04| +24|2023-10-06T21:13:37.4960000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9FF|45256|81809|9500|10000|||115.36|97.20|0.00|-1.04|10FF0009|Zewo Negiwo|0|61533|81177|9600|10000|||114.83|95.76|0.00|-1.03| +21|2023-10-06T21:13:37.4960000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|714003|1A940000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|31562416|40478540|10000|10000|||100.00|80.10|0.00|0.00|93314|129844|10000|10000|||109.17|95.99|0.00|-1.66|00019553|0|1| +38|2023-10-06T21:13:37.4960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111605|129844|10000|10000|0||109.17|95.99|0.00|-1.66|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:37.4960000-07:00|40022472|Zeromus|005A5A00|31541474|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:13:37.4960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|47815|81809|9500|10000|0||115.36|97.20|0.00|-1.04|0|0|0||||||||||||||||||| +37|2023-10-06T21:13:37.5410000-07:00|10FF000A|Dukaro Nezikaro|0001954B|59806||||||109.00|93.01|0.00|-1.76| +38|2023-10-06T21:13:37.5410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|55140|90216|10000|10000|0||116.43|96.03|0.00|-2.32|0|0|0||||||||||||| +26|2023-10-06T21:13:37.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:13:37.5410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59806|82773|10000|10000|0||109.00|93.01|0.00|-1.76|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:37.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:13:37.5410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9800|10000|0||83.82|98.59|0.00|2.42|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:37.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:13:37.5410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|47815|81809|9500|10000|0||114.84|97.69|0.00|-0.94|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:37.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:37.5410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111605|129844|10000|10000|0||108.45|96.13|0.00|-2.69|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:37.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:13:37.5410000-07:00|10FF0009|Zewo Negiwo|005A5A18|61533|81177|9600|10000|0||113.96|96.30|0.00|-1.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:13:37.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:13:37.5410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||88.29|98.27|0.00|2.05|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:37.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:13:37.5410000-07:00|10FF0009|Zewo Negiwo|HoT|0|936|61533|81177|9600|10000|||113.96|96.30|0.00|-1.02|10FF0009|Zewo Negiwo|0|61533|81177|9600|10000|||113.96|96.30|0.00|-1.02| +38|2023-10-06T21:13:37.5410000-07:00|10FF0009|Zewo Negiwo|005A5A18|63891|81177|10000|10000|0||113.96|96.30|0.00|-1.02|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:13:37.0730000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:13:37.5860000-07:00|40022472|Zeromus|0001954E|31536920||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:37.5860000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|28E4|129071|129071|9200|10000|||88.29|98.27|0.00|2.05|10FF0001|Sesuga Sapisuga|0|129071|129071|9200|10000|||88.29|98.27|0.00|2.05| +38|2023-10-06T21:13:37.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||88.29|98.27|0.00|2.05|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:13:37.6300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31536920|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||88.82|97.99|0.00|2.06|00019554|0|1| +38|2023-10-06T21:13:37.6300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|47815|81809|9500|10000|0||114.28|98.22|0.00|-0.90|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:37.6300000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +31|2023-10-06T21:13:37.6300000-07:00|10FF0001||||| +37|2023-10-06T21:13:37.6760000-07:00|10FF0006|Wowobora Gogobora|0001954B|57256||||||114.28|98.22|0.00|-0.90| +21|2023-10-06T21:13:37.6760000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31536920|40478540|10000|10000|||100.00|80.10|0.00|0.00|59806|82773|10000|10000|||108.31|92.99|0.00|-1.71|00019555|0|1| +21|2023-10-06T21:13:37.7200000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2FB90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31536920|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||83.82|98.59|0.00|2.42|00019556|0|1| +37|2023-10-06T21:13:37.8100000-07:00|10FF0009|Zewo Negiwo|0001954B|73238||||||112.42|97.33|0.00|-0.98| +38|2023-10-06T21:13:37.8100000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.89|95.75|0.00|-2.61|0|0|0|||| +30|2023-10-06T21:13:37.8100000-07:00|7AE|Summon Order IV|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T21:13:37.3800000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:13:37.4740000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:13:37.4740000-07:00|Remove|40022905| +37|2023-10-06T21:13:37.8990000-07:00|40022472|Zeromus|00019551|31524977||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:37.8990000-07:00|40022913|Bunshin|75608|78475|10000|10000|||112.13|93.22|0.00|-2.40| +21|2023-10-06T21:13:37.8990000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|1F9B0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|31536920|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||89.99|97.35|0.00|2.08|00019557|0|1| +261|2023-10-06T21:13:37.5680000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:13:37.6690000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:13:38.0320000-07:00|40022472|Zeromus|00019553|31518173||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:38.0320000-07:00|10FF0009|Zewo Negiwo|7D|Raise|10FF0003|Gegehi Gehi|814000E|940000|1B|7D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|0|10000|||114.67|99.44|0.00|2.29|73238|81177|10000|10000|||109.79|97.50|0.00|-1.39|00019558|0|1| +38|2023-10-06T21:13:38.0320000-07:00|10FF0009|Zewo Negiwo|005A5A18|73238|81177|10000|10000|0||109.79|97.50|0.00|-1.39|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:38.0320000-07:00|4C1|Thin Air|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +30|2023-10-06T21:13:38.0320000-07:00|A7|Swiftcast|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:13:37.7860000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:37.7860000-07:00|Change|4002291E||||||||| +261|2023-10-06T21:13:37.7860000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:13:38.1660000-07:00|40022472|Zeromus|00019554|31516404||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:38.2110000-07:00|40022472|Zeromus|00019555|31514177||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:38.2110000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3A770000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|111605|129844|10000|10000|||104.62|97.10|0.00|-1.42|31518173|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019559|0|1| +21|2023-10-06T21:13:38.4800000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|10800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31514177|40478540|10000|10000|||100.00|80.10|0.00|0.00|111605|129844|10000|10000|||103.51|97.50|0.00|-1.66|0001955A|0|1| +38|2023-10-06T21:13:38.4800000-07:00|10FF0009|Zewo Negiwo|005A5A18|73238|81177|10000|10000|0||107.50|97.81|0.00|-1.46|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:38.4800000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:13:38.0180000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:13:38.5240000-07:00|40022472|Zeromus|00019557|31506086||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:38.5240000-07:00|40022472|Zeromus|00019556|31493869||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:38.5240000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|-3.09| +21|2023-10-06T21:13:38.5680000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|200004|22990000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|59806|82773|10000|10000|||103.17|92.72|0.00|-1.64|73956|77430|10000|10000|||97.89|95.75|0.00|-3.09|0001955B|0|1| +261|2023-10-06T21:13:38.1290000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:13:38.6140000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|454003|40CC0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|31493869|40478540|10000|10000|||100.00|80.10|0.00|0.00|57256|81809|9500|10000|||108.85|100.34|0.00|-1.47|0001955C|0|1| +38|2023-10-06T21:13:38.6140000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57256|81809|9200|10000|0||108.85|100.34|0.00|-1.47|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:38.6140000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +04|2023-10-06T21:13:38.2290000-07:00|40022912|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||91.15|90.18|0.00|2.29| +261|2023-10-06T21:13:38.2290000-07:00|Remove|40022912| +39|2023-10-06T21:13:38.7020000-07:00|10FF0008|Kokosaze Lulusaze|56042|90216|10000|10000|||109.34|97.84|0.00|-1.34| +39|2023-10-06T21:13:38.7470000-07:00|10FF000A|Dukaro Nezikaro|60633|82773|10000|10000|||102.47|92.67|0.00|-1.72| +24|2023-10-06T21:13:38.7470000-07:00|40022472|Zeromus|DoT|0|1C20|31493869|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9200|10000|||94.10|97.73|0.00|2.10| +21|2023-10-06T21:13:38.7470000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31493869|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||87.95|98.17|0.00|1.66|0001955D|0|1| +38|2023-10-06T21:13:38.7470000-07:00|40022472|Zeromus|005A5A00|31486669|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +36|2023-10-06T21:13:38.8360000-07:00|288C|3| +261|2023-10-06T21:13:38.4180000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:13:38.8800000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9600|10000|||88.58|98.16|0.00|1.64| +261|2023-10-06T21:13:38.4180000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:13:38.9700000-07:00|10FF0007|Kehabiqo Febiqo|112903|129844|10000|10000|||102.99|97.78|0.00|-2.99| +39|2023-10-06T21:13:38.9700000-07:00|10FF0006|Wowobora Gogobora|58074|81809|9400|10000|||107.95|100.14|0.00|-2.76| +261|2023-10-06T21:13:38.5160000-07:00|Change|40022913||| +37|2023-10-06T21:13:39.0150000-07:00|10FF0007|Kehabiqo Febiqo|00019559|97936||||||102.99|97.78|0.00|-2.99| +39|2023-10-06T21:13:39.0150000-07:00|10FF0009|Zewo Negiwo|74049|81177|10000|10000|||103.35|98.24|0.00|-1.58| +39|2023-10-06T21:13:39.0600000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9400|10000|||95.47|98.85|0.00|2.13| +21|2023-10-06T21:13:39.0600000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|60633|82773|10000|10000|||101.98|92.64|0.00|-1.77|60633|82773|10000|10000|||101.98|92.64|0.00|-1.77|0001955E|0|1| +38|2023-10-06T21:13:39.0600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|0||95.47|98.85|0.00|2.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:39.0600000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:13:39.0600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|60633|82773|10000|10000|0||101.98|92.64|0.00|-1.77|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:39.0600000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:13:39.1030000-07:00|40022472|Zeromus|0001955A|31482445||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:39.1040000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31486669|40478540|10000|10000|||100.00|80.10|0.00|0.00|58074|81809|9400|10000|||107.89|100.11|0.00|-2.73|0001955F|0|1| +261|2023-10-06T21:13:38.7540000-07:00|Change|10FF0001||||||||||| +20|2023-10-06T21:13:39.1480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|90.70|98.14|0.00|1.60| +37|2023-10-06T21:13:39.1930000-07:00|10FF0003|Gegehi Gehi|00019558|0|73814|0|10000|0||114.67|99.44|0.00|2.29|2300|0|0|01|01000094|08|42700000|| +26|2023-10-06T21:13:39.1930000-07:00|94|Raise|60.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|08|73814|81177| +261|2023-10-06T21:13:38.7540000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:13:39.2380000-07:00|40022472|Zeromus|0001955C|31465857||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:39.2380000-07:00|10FF0006|Wowobora Gogobora|0001955C|58074|81809|9400|10000|0||107.17|99.91|0.00|-2.48|1B00|0|0|01|04000B25|0|0|| +38|2023-10-06T21:13:39.2380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|58074|81809|9400|10000|0||107.17|99.91|0.00|-2.48|0|0|0||||||||||||||||||| +261|2023-10-06T21:13:38.7540000-07:00|Change|4002291E||||||||| +37|2023-10-06T21:13:39.2820000-07:00|40022472|Zeromus|0001955D|31465711||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:39.2820000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|18760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31465857|40478540|10000|10000|||100.00|80.10|0.00|0.00|58074|81809|9400|10000|||106.53|99.74|0.00|-2.26|00019560|0|1| +38|2023-10-06T21:13:39.2820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|58074|81809|9400|10000|0||106.53|99.74|0.00|-2.26|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:39.2820000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:13:39.3700000-07:00|10FF000A|Dukaro Nezikaro|0001955B|69490||||||101.98|92.64|0.00|-1.77| +261|2023-10-06T21:13:38.9810000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:13:39.5060000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|13170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31465711|40478540|10000|10000|||100.00|80.10|0.00|0.00|97936|129844|10000|10000|||101.27|98.19|0.00|-3.05|00019561|0|1| +21|2023-10-06T21:13:39.5060000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31465711|40478540|10000|10000|||100.00|80.10|0.00|0.00|56042|90216|10000|10000|||104.52|99.12|0.00|-1.30|00019562|0|1| +21|2023-10-06T21:13:39.5060000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69490|82773|10000|10000|||101.98|92.64|0.00|-1.77|69490|82773|10000|10000|||101.98|92.64|0.00|-1.77|00019563|0|1| +38|2023-10-06T21:13:39.5060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69490|82773|10000|10000|0||101.98|92.64|0.00|-1.77|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:39.5060000-07:00|1F0|Mudra|5.55|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +21|2023-10-06T21:13:39.5510000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|39450000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|31465711|40478540|10000|10000|||100.00|80.10|0.00|0.00|56042|90216|10000|10000|||103.88|99.30|0.00|-1.24|00019564|0|1| +37|2023-10-06T21:13:39.6380000-07:00|40022472|Zeromus|0001955F|31465473||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:39.2930000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:13:39.8610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31465473|40478540|10000|10000|||100.00|80.10|0.00|0.00|69490|82773|10000|10000|||101.98|92.64|0.00|-1.77|00019565|0|1| +261|2023-10-06T21:13:39.3880000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:13:39.4800000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:13:39.4800000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:13:39.9050000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31465473|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||99.60|99.67|0.00|2.66|00019566|0|1| +31|2023-10-06T21:13:39.9050000-07:00|10FF0001||||| +21|2023-10-06T21:13:39.9500000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|21C90000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|31465473|40478540|10000|10000|||100.00|80.10|0.00|0.00|97936|129844|10000|10000|||98.38|98.35|0.00|-3.13|00019567|0|1| +261|2023-10-06T21:13:39.6720000-07:00|Change|4002291E||||||||| +261|2023-10-06T21:13:39.6720000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:40.0390000-07:00|40022472|Zeromus|00019561|31460586||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:40.0390000-07:00|40022472|Zeromus|00019560|31454324||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:40.0390000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69490|82773|10000|10000|||101.98|92.64|0.00|-1.77|69490|82773|10000|10000|||101.98|92.64|0.00|-1.77|00019568|0|1| +38|2023-10-06T21:13:40.0390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69490|82773|10000|10000|0||101.98|92.64|0.00|-1.77|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:40.0390000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +21|2023-10-06T21:13:40.0830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|50FA0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31465473|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9600|10000|||91.20|98.13|0.00|2.69|00019569|0|1| +00|2023-10-06T21:13:39.0000000-07:00|0044|Zeromus|All are as one in Darkness.| +24|2023-10-06T21:13:40.2180000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1028|56042|90216|10000|10000|||100.13|100.58|0.00|-1.44|10FF0009|Zewo Negiwo|0|74049|81177|10000|10000|||101.15|101.95|0.00|0.31| +38|2023-10-06T21:13:40.2180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60178|90216|10000|10000|0||100.13|100.58|0.00|-1.44|0|0|0||||||||||||| +37|2023-10-06T21:13:40.2620000-07:00|40022472|Zeromus|00019562|31452043||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:40.2620000-07:00|40022472|Zeromus|8B66|Void Bio|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:40.2620000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9C6|69490|82773|10000|10000|||101.98|92.64|0.00|-1.77|10FF000A|Dukaro Nezikaro|0|69490|82773|10000|10000|||101.98|92.64|0.00|-1.77| +38|2023-10-06T21:13:40.2620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71992|82773|10000|10000|0||101.98|92.64|0.00|-1.77|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:13:39.8990000-07:00|Change|40022472||||||||| +261|2023-10-06T21:13:39.8990000-07:00|Change|40022472||||||||| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228F6| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228F7| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228F8| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228F9| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228FA| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228FB| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228FC| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228FD| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228FE| +261|2023-10-06T21:13:39.8990000-07:00|Remove|400228FF| +37|2023-10-06T21:13:40.3510000-07:00|40022472|Zeromus|00019564|31437382||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:40.3950000-07:00|40022472|Zeromus|00019565|31435330||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:40.3950000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|98C|81541|81541|9200|10000|||91.21|98.13|0.00|2.31|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|2.89| +21|2023-10-06T21:13:40.3960000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1FE50000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|31452043|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||99.60|99.67|0.00|3.12|0001956A|0|1| +38|2023-10-06T21:13:40.3960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9200|10000|0||91.21|98.13|0.00|2.31|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:13:40.4400000-07:00|40022472|Zeromus|00019566|31432535||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:40.4400000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|101.15|101.95|0.00|0.31| +24|2023-10-06T21:13:40.4840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A05|97936|129844|10000|10000|||97.26|98.35|0.00|3.10|10FF0007|Kehabiqo Febiqo|0|97936|129844|10000|10000|||97.26|98.35|0.00|3.10| +24|2023-10-06T21:13:40.4840000-07:00|10FF0006|Wowobora Gogobora|HoT|0|FB7|58074|81809|9400|10000|||99.93|100.68|0.00|-1.22|10FF0009|Zewo Negiwo|0|74049|81177|10000|10000|||101.15|101.95|0.00|0.31| +38|2023-10-06T21:13:40.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100501|129844|10000|10000|0||97.26|98.35|0.00|3.10|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:40.4840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62097|81809|9400|10000|0||99.93|100.68|0.00|-1.22|0|0|0||||||||||||||||||| +38|2023-10-06T21:13:40.5300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60178|90216|10000|10000|0||99.51|100.67|0.00|-1.62|0|0|0||||||||||||| +26|2023-10-06T21:13:40.5300000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:13:40.5300000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71992|82773|10000|10000|0||101.98|92.64|0.00|-1.77|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:40.5300000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:13:40.5300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9200|10000|0||91.61|98.22|0.00|1.88|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:40.5300000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:13:40.5300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62097|81809|9400|10000|0||99.72|100.79|0.00|-1.38|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:40.5300000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:40.5300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100501|129844|10000|10000|0||97.75|98.36|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:40.5300000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:13:40.5300000-07:00|10FF0009|Zewo Negiwo|005A5A18|74049|81177|10000|10000|0||101.15|101.95|0.00|0.68|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:40.5300000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:13:40.5300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|0||99.60|99.67|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:40.5300000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:13:40.5300000-07:00|10FF0009|Zewo Negiwo|HoT|0|952|74049|81177|10000|10000|||101.15|101.95|0.00|0.68|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|3.01| +38|2023-10-06T21:13:40.5300000-07:00|10FF0009|Zewo Negiwo|005A5A18|76435|81177|10000|10000|0||101.15|101.95|0.00|0.68|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:13:40.5740000-07:00|40022472|Zeromus|00019567|31423886||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:40.5740000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|95D|129071|129071|9400|10000|||99.60|99.67|0.00|3.12|10FF0009|Zewo Negiwo|0|74049|81177|10000|10000|||101.15|101.95|0.00|0.68| +21|2023-10-06T21:13:40.5740000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|650003|36720000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|31432535|40478540|10000|10000|||100.00|80.10|0.00|0.00|71992|82773|10000|10000|||101.98|92.64|0.00|-1.77|0001956B|0|1| +38|2023-10-06T21:13:40.5740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|0||99.60|99.67|0.00|3.12|0|0|0||||||||||||||||||| +38|2023-10-06T21:13:40.5740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71992|82773|10000|10000|0||101.98|92.64|0.00|-1.77|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:40.5740000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +26|2023-10-06T21:13:40.5740000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +39|2023-10-06T21:13:40.7520000-07:00|4002291E|Carbuncle|77698|77698|10000|10000|||103.64|100.79|0.00|-1.28| +261|2023-10-06T21:13:40.4120000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:13:40.8850000-07:00|40022472|Zeromus|00019569|31403156||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:40.4120000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:13:40.9300000-07:00|40022913|Bunshin|75608|78475|10000|10000|||112.13|93.22|0.00|-2.40| +20|2023-10-06T21:13:41.0640000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|99.48|100.47|0.00|-2.81| +261|2023-10-06T21:13:40.6260000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:13:41.1550000-07:00|40022472|Zeromus|0001956A|31394991||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:41.1550000-07:00|10FF0001|Sesuga Sapisuga|0001956A|129071|129071|10000|10000|0||99.60|99.67|0.00|3.12|1300|0|0|0| +261|2023-10-06T21:13:40.7420000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:40.7420000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:40.7420000-07:00|Change|4002291E||||||||| +261|2023-10-06T21:13:40.8540000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:13:41.3770000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31400000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31394991|40478540|10000|10000|||100.00|80.10|0.00|0.00|76435|81177|10000|10000|||101.15|101.95|0.00|-3.09|0001956C|0|1| +39|2023-10-06T21:13:41.5100000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|3.01| +37|2023-10-06T21:13:41.5560000-07:00|40022472|Zeromus|0001956B|31381053||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:41.5560000-07:00|10FF000A|Dukaro Nezikaro|0001956B|71992|82773|10000|10000|0||100.59|96.22|0.00|-0.82|1E00|0|0|01|060001FB|0|41A00000|| +38|2023-10-06T21:13:41.5560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71992|82773|10000|10000|0||100.59|96.22|0.00|-0.82|0|0|0|||||||||||||||||||||| +20|2023-10-06T21:13:41.6000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|97.53|99.91|0.00|1.40| +39|2023-10-06T21:13:41.7330000-07:00|10FF0008|Kokosaze Lulusaze|61080|90216|10000|10000|||99.90|100.57|0.00|1.74| +39|2023-10-06T21:13:41.7780000-07:00|10FF000A|Dukaro Nezikaro|72819|82773|10000|10000|||100.67|96.84|0.00|-0.34| +24|2023-10-06T21:13:41.7780000-07:00|40022472|Zeromus|DoT|0|1A23|31381053|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||99.77|99.72|0.00|2.84| +38|2023-10-06T21:13:41.7780000-07:00|40022472|Zeromus|005A5A00|31374362|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +36|2023-10-06T21:13:41.8670000-07:00|2968|3| +261|2023-10-06T21:13:41.4590000-07:00|Change|10FF0009||||||||||||||||| +39|2023-10-06T21:13:41.9110000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9400|10000|||97.77|99.94|0.00|2.21| +261|2023-10-06T21:13:41.4590000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T21:13:41.9560000-07:00|10FF0009|Zewo Negiwo|005A5A18|76435|81177|9600|10000|0||101.15|101.95|0.00|-3.09|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:41.9560000-07:00|32|Sprint|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|1E|81177|81177| +39|2023-10-06T21:13:42.0000000-07:00|10FF0007|Kehabiqo Febiqo|101799|129844|10000|10000|||98.80|97.43|0.00|-0.12| +39|2023-10-06T21:13:42.0000000-07:00|10FF0006|Wowobora Gogobora|62915|81809|9600|10000|||99.41|100.02|0.00|3.11| +261|2023-10-06T21:13:41.6430000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:13:42.0450000-07:00|10FF0009|Zewo Negiwo|77246|81177|9821|10000|||101.15|101.95|0.00|-3.09| +21|2023-10-06T21:13:42.0460000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|726003|3D0C0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|61080|90216|10000|10000|||99.90|100.57|0.00|1.74|0001956D|0|1| +21|2023-10-06T21:13:42.0460000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|750003|323A0000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|62915|81809|9600|10000|||99.41|100.02|0.00|3.11|0001956E|0|1| +21|2023-10-06T21:13:42.0460000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|72819|82773|10000|10000|||100.72|97.22|0.00|-0.05|0001956F|0|1| +39|2023-10-06T21:13:42.0890000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.77|99.72|0.00|2.84| +21|2023-10-06T21:13:42.1340000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|21E70000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|72819|82773|10000|10000|||100.72|97.22|0.00|-0.05|00019570|0|1| +38|2023-10-06T21:13:42.1340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|72819|82773|10000|10000|0||100.72|97.22|0.00|-0.05|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:42.1340000-07:00|7A2|Bunshin|17.47|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:13:42.1780000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EDE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|61080|90216|10000|10000|||99.90|100.57|0.00|1.74|00019571|0|1| +21|2023-10-06T21:13:42.1780000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|2.84|00019572|0|1| +31|2023-10-06T21:13:42.1780000-07:00|10FF0001||||| +261|2023-10-06T21:13:41.7360000-07:00|Change|40022913||||||||| +21|2023-10-06T21:13:42.2220000-07:00|40022913|Bunshin|4406|Gust Slash|40022472|Zeromus|716003|1F1C0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||100.73|97.22|0.00|-3.10|00019573|0|1| +261|2023-10-06T21:13:41.8540000-07:00|Change|40022913||| +21|2023-10-06T21:13:42.3560000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|144E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|62915|81809|9300|10000|||99.41|100.02|0.00|3.11|73956|77430|10000|10000|||97.89|95.75|0.00|1.80|00019574|0|1| +21|2023-10-06T21:13:42.4010000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|2EE90000|143E|340000|4|18608000|11B|2A8000|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|101799|129844|10000|10000|||98.74|98.99|0.00|-0.04|00019575|0|1| +37|2023-10-06T21:13:42.5350000-07:00|40022472|Zeromus|00019570|31365683||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:42.5350000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|314E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31374362|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||98.01|99.96|0.00|3.04|00019576|0|1| +37|2023-10-06T21:13:42.5800000-07:00|40022472|Zeromus|0001956F|31362887||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:42.6240000-07:00|40022472|Zeromus|00019573|31354923||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:42.6680000-07:00|40022472|Zeromus|0001956C|31342315||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:42.7130000-07:00|40022472|Zeromus|00019572|31340516||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:42.8020000-07:00|40022472|Zeromus|0001956D|31324888||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:42.8460000-07:00|40022472|Zeromus|0001956E|31312030||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:42.8460000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|101.15|101.95|0.00|-3.09| +21|2023-10-06T21:13:42.8910000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|121B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31324888|40478540|10000|10000|||100.00|80.10|0.00|0.00|101799|129844|10000|10000|||98.77|99.01|0.00|3.10|00019577|0|1| +21|2023-10-06T21:13:42.8910000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41714003|33D20000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|31324888|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|00019578|0|1| +38|2023-10-06T21:13:42.8910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:42.8910000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:13:42.8910000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:13:42.4590000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:13:42.9350000-07:00|40022472|Zeromus|00019571|31308224||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:42.4590000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:13:42.6730000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T21:13:43.1570000-07:00|10FF0006|Wowobora Gogobora|00019574|68113||||||99.62|100.55|0.00|0.90| +24|2023-10-06T21:13:43.2030000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9AA|61080|90216|10000|10000|||99.90|100.57|0.00|3.14|10FF0009|Zewo Negiwo|0|77246|81177|9821|10000|||101.15|101.95|0.00|-3.09| +38|2023-10-06T21:13:43.2030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63554|90216|10000|10000|0||99.90|100.57|0.00|3.14|0|0|0||||||||||||| +24|2023-10-06T21:13:43.2490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|FB5|72819|82773|10000|10000|||100.28|98.06|0.00|-2.01|10FF000A|Dukaro Nezikaro|0|72819|82773|10000|10000|||100.28|98.06|0.00|-2.01| +21|2023-10-06T21:13:43.2490000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31308224|40478540|10000|10000|||100.00|80.10|0.00|0.00|68113|81809|9300|10000|||99.93|101.28|0.00|0.76|00019579|0|1| +38|2023-10-06T21:13:43.2490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76840|82773|10000|10000|0||100.28|98.06|0.00|-2.01|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:13:43.3360000-07:00|40022472|Zeromus|00019576|31295602||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:43.3360000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63554|90216|10000|10000|||99.90|100.57|0.00|3.14|63554|90216|10000|10000|||99.90|100.57|0.00|3.14|0001957A|0|1| +24|2023-10-06T21:13:43.3810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9D3|81541|81541|9000|10000|||98.42|100.09|0.00|1.74|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|0.34| +38|2023-10-06T21:13:43.3810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||98.42|100.09|0.00|1.74|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:13:43.4250000-07:00|40022472|Zeromus|00019577|31290967||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:43.4710000-07:00|40022472|Zeromus|00019578|31277701||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:43.4710000-07:00|10FF0001|Sesuga Sapisuga|00019578|129071|129071|10000|10000|0||99.77|99.72|0.00|3.13|1300|0|0|02|0300076E|03|41F00000|||||| +24|2023-10-06T21:13:43.4710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|95D|101799|129844|10000|10000|||99.59|99.02|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|101799|129844|10000|10000|||99.59|99.02|0.00|3.13| +24|2023-10-06T21:13:43.4710000-07:00|10FF0006|Wowobora Gogobora|HoT|0|F59|68113|81809|9300|10000|||100.02|101.60|0.00|0.60|10FF0009|Zewo Negiwo|0|77246|81177|9821|10000|||101.15|101.95|0.00|-3.09| +38|2023-10-06T21:13:43.4710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104196|129844|10000|10000|0||99.59|99.02|0.00|3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:43.4710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72042|81809|9300|10000|0||100.02|101.60|0.00|0.60|0|0|0||||||||||||||||||| +38|2023-10-06T21:13:43.4710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||| +38|2023-10-06T21:13:43.5150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63554|90216|10000|10000|0||99.90|100.57|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:13:43.5150000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:13:43.5150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76840|82773|10000|10000|0||99.71|98.52|0.00|-2.87|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:43.5150000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:13:43.5150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||99.78|100.53|0.00|1.45|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:43.5150000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:13:43.5150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72042|81809|9300|10000|0||100.07|101.73|0.00|0.60|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:43.5150000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:43.5150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104196|129844|10000|10000|0||99.68|99.02|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:43.5150000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:13:43.5150000-07:00|10FF0009|Zewo Negiwo|005A5A18|77246|81177|9821|10000|0||101.15|101.95|0.00|-3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:43.5150000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:13:43.5150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:43.5150000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:13:43.5150000-07:00|10FF0009|Zewo Negiwo|HoT|0|A0C|77246|81177|9821|10000|||101.15|101.95|0.00|-3.09|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|0.43| +38|2023-10-06T21:13:43.5150000-07:00|10FF0009|Zewo Negiwo|005A5A18|79818|81177|9821|10000|0||101.15|101.95|0.00|-3.09|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:13:43.5590000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|987|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|10FF0009|Zewo Negiwo|0|77246|81177|9821|10000|||101.15|101.95|0.00|-3.09| +38|2023-10-06T21:13:43.5590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||| +21|2023-10-06T21:13:43.6040000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|754003|56C60000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|31277701|40478540|10000|10000|||100.00|80.10|0.00|0.00|72042|81809|9300|10000|||100.07|101.73|0.00|0.60|0001957B|0|1| +38|2023-10-06T21:13:43.6040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72042|81809|8900|10000|0||100.07|101.73|0.00|0.60|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:43.6040000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:13:43.7370000-07:00|4002291E|Carbuncle|77698|77698|10000|10000|||100.14|101.82|0.00|-1.28| +37|2023-10-06T21:13:43.7830000-07:00|40022472|Zeromus|00019579|31277554||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:43.7830000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31DB0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31277701|40478540|10000|10000|||100.00|80.10|0.00|0.00|79818|81177|9821|10000|||101.15|101.95|0.00|-3.09|0001957C|0|1| +38|2023-10-06T21:13:43.8270000-07:00|40022930||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:13:43.8270000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31277554|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||100.16|100.70|0.00|1.37|0001957D|0|1| +38|2023-10-06T21:13:43.8270000-07:00|40022930||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +03|2023-10-06T21:13:43.4190000-07:00|40022930|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.68|102.35|0.00|3.14| +261|2023-10-06T21:13:43.4190000-07:00|Add|40022930||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:13:43.9160000-07:00|40022472|Zeromus|00019575|31265545||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:43.9160000-07:00|10FF0007|Kehabiqo Febiqo|00019575|110436||||||99.96|99.02|-0.01|3.13| +39|2023-10-06T21:13:43.9160000-07:00|40022913|Bunshin|75608|78475|10000|10000|||100.73|97.22|0.00|-3.10| +261|2023-10-06T21:13:43.4190000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:13:43.4190000-07:00|Change|40022930||| +261|2023-10-06T21:13:43.6090000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:13:44.0050000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|31265545|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||100.24|100.82|-0.02|1.34|0001957E|0|1| +261|2023-10-06T21:13:43.7010000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:13:43.8170000-07:00|Change|40022913||| +21|2023-10-06T21:13:44.2290000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31265545|40478540|10000|10000|||100.00|80.10|0.00|0.00|76840|82773|10000|10000|||99.66|98.65|0.00|2.95|0001957F|0|1| +37|2023-10-06T21:13:44.3610000-07:00|40022472|Zeromus|0001957D|31265388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:44.4060000-07:00|40022472|Zeromus|0001957B|31243174||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:44.4510000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31265545|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|00019580|0|1| +21|2023-10-06T21:13:44.4510000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|50AA0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|31265545|40478540|10000|10000|||100.00|80.10|0.00|0.00|76840|82773|10000|10000|||99.66|98.65|0.00|2.95|00019581|0|1| +38|2023-10-06T21:13:44.4510000-07:00|40022472|Zeromus|005A5A00|31243174|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:13:44.4510000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +38|2023-10-06T21:13:44.4510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76840|82773|10000|10000|0||99.66|98.65|0.00|2.95|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:44.4510000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +31|2023-10-06T21:13:44.4510000-07:00|10FF0001||||| +21|2023-10-06T21:13:44.5410000-07:00|40022913|Bunshin|4407|Aeolian Edge|40022472|Zeromus|716003|21EF0000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|31243174|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||99.68|98.66|0.00|3.12|00019582|0|1| +39|2023-10-06T21:13:44.5410000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|2.81| +21|2023-10-06T21:13:44.5410000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|5E090000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|31243174|40478540|10000|10000|||100.00|80.10|0.00|0.00|63554|90216|10000|10000|||99.90|100.57|0.00|3.14|00019583|0|1| +261|2023-10-06T21:13:44.0490000-07:00|Change|40022913||||||||| +37|2023-10-06T21:13:44.6290000-07:00|40022472|Zeromus|0001957E|31243174|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:13:44.6290000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +39|2023-10-06T21:13:44.7180000-07:00|10FF0008|Kokosaze Lulusaze|64456|90216|10000|10000|||99.90|100.57|0.00|3.14| +38|2023-10-06T21:13:44.7180000-07:00|10FF0003|Gegehi Gehi|005A5A23|14762|73814|2000|10000|0||102.30|99.95|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:13:44.7180000-07:00|94|Raise|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|08|73814|81177| +26|2023-10-06T21:13:44.7180000-07:00|2B|Weakness|100.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +26|2023-10-06T21:13:44.7180000-07:00|1A2|Transcendent|5.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T21:13:44.2450000-07:00|Change|10FF0003||||| +261|2023-10-06T21:13:44.2450000-07:00|Change|10FF0003||||| +37|2023-10-06T21:13:44.7620000-07:00|40022472|Zeromus|0001957F|31240611||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:44.7620000-07:00|10FF000A|Dukaro Nezikaro|77667|82773|10000|10000|||99.66|98.65|0.00|3.12| +24|2023-10-06T21:13:44.7620000-07:00|40022472|Zeromus|DoT|0|1FFA|31243174|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|79818|81177|9421|10000|||101.15|101.95|0.00|-3.09| +38|2023-10-06T21:13:44.7620000-07:00|40022472|Zeromus|005A5A00|31232425|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:13:44.3400000-07:00|Change|40022930||| +21|2023-10-06T21:13:44.8510000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|39BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31232425|40478540|10000|10000|||100.00|80.10|0.00|0.00|110436|129844|10000|10000|||99.99|99.02|0.00|3.13|00019584|0|1| +21|2023-10-06T21:13:44.8510000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|90B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31232425|40478540|10000|10000|||100.00|80.10|0.00|0.00|64456|90216|10000|10000|||99.90|100.57|0.00|3.14|00019585|0|1| +34|2023-10-06T21:13:44.8510000-07:00|40022930|Automaton Queen|40022930|Automaton Queen|01| +36|2023-10-06T21:13:44.8510000-07:00|2A44|3| +39|2023-10-06T21:13:44.8950000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8800|10000|||100.24|100.82|0.00|-3.13| +261|2023-10-06T21:13:44.3400000-07:00|Change|40022930||| +37|2023-10-06T21:13:44.9840000-07:00|40022472|Zeromus|00019580|31229513||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:44.9840000-07:00|40022472|Zeromus|00019581|31208863||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:44.9840000-07:00|10FF0007|Kehabiqo Febiqo|111734|129844|10000|10000|||99.99|99.02|0.00|3.13| +39|2023-10-06T21:13:44.9840000-07:00|10FF0006|Wowobora Gogobora|72860|81809|9100|10000|||100.39|100.54|0.00|3.10| +39|2023-10-06T21:13:45.0280000-07:00|10FF0009|Zewo Negiwo|80629|81177|9642|10000|||101.15|101.95|0.00|-3.09| +261|2023-10-06T21:13:44.5550000-07:00|Change|10FF0009||| +37|2023-10-06T21:13:45.0730000-07:00|40022472|Zeromus|00019582|31200176||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:45.0730000-07:00|40022472|Zeromus|0001957C|31187413||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:45.0730000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.77|99.72|0.00|3.13| +261|2023-10-06T21:13:44.6710000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:13:44.6710000-07:00|Change|10FF0004||| +39|2023-10-06T21:13:45.1610000-07:00|10FF0003|Gegehi Gehi|15500|73814|2200|10000|||102.30|99.95|0.00|0.00| +21|2023-10-06T21:13:45.1610000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31187413|40478540|10000|10000|||100.00|80.10|0.00|0.00|64456|90216|10000|10000|||99.90|100.57|0.00|3.14|00019586|0|1| +261|2023-10-06T21:13:44.7870000-07:00|Change|10FF0003||| +20|2023-10-06T21:13:45.2500000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|101.15|101.95|0.00|-3.09| +21|2023-10-06T21:13:45.2500000-07:00|40022472|Zeromus|8B66|Void Bio|40022472|Zeromus|1B|8B668000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31187413|40478540|10000|10000|||100.00|80.10|0.00|0.00|31187413|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019587|0|1| +21|2023-10-06T21:13:45.2500000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15500|73814|2200|10000|||102.30|99.95|0.00|0.00|15500|73814|2200|10000|||102.30|99.95|0.00|0.00|00019588|0|1| +21|2023-10-06T21:13:45.2500000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|260F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31187413|40478540|10000|10000|||100.00|80.10|0.00|0.00|77667|82773|10000|10000|||99.66|98.65|0.00|3.12|00019589|0|1| +38|2023-10-06T21:13:45.2500000-07:00|10FF0003|Gegehi Gehi|005A5A23|15500|73814|2200|10000|0||102.30|99.95|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:13:45.2500000-07:00|1A2|Transcendent|0.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T21:13:44.9020000-07:00|Change|40022472||||||||||| +21|2023-10-06T21:13:45.3840000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|201D0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|31187413|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|0001958A|0|1| +37|2023-10-06T21:13:45.5180000-07:00|40022472|Zeromus|00019584|31172635||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:45.6070000-07:00|40022472|Zeromus|00019585|31170320||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:45.6960000-07:00|40022472|Zeromus|00019583|31146247||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:45.8300000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31146247|40478540|10000|10000|||100.00|80.10|0.00|0.00|64456|90216|10000|10000|||99.90|100.57|0.00|3.14|0001958B|0|1| +37|2023-10-06T21:13:45.8750000-07:00|10FF0003|Gegehi Gehi|00019588|15500|73814|2200|10000|0||102.28|100.01|0.00|-0.03|2300|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T21:13:45.8750000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:13:45.8760000-07:00|40022472|Zeromus|00019589|31136504||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:45.9630000-07:00|40022472|Zeromus|00019586|31131382||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:46.0090000-07:00|40022472|Zeromus|0001958A|31123161||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:45.5130000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:13:46.0530000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|145D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|15500|73814|2200|10000|||102.23|100.74|0.00|-0.05|73956|77430|10000|10000|||97.89|95.75|0.00|1.79|0001958C|0|1| +21|2023-10-06T21:13:46.0530000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40022472|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|31123161|40478540|10000|10000|||100.00|80.10|0.00|0.00|72860|81809|9100|10000|||100.22|98.22|0.00|-3.10|0001958D|0|1| +261|2023-10-06T21:13:45.7400000-07:00|Change|4002291E||||||||| +38|2023-10-06T21:13:46.0970000-07:00|40022936||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:13:46.0970000-07:00|40022936||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:13:46.1860000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|34A70000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31123161|40478540|10000|10000|||100.00|80.10|0.00|0.00|80629|81177|9642|10000|||101.15|101.95|0.00|-3.09|0001958E|0|1| +24|2023-10-06T21:13:46.2320000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A16|64456|90216|10000|10000|||99.90|100.57|0.00|3.14|10FF0009|Zewo Negiwo|0|80629|81177|9242|10000|||101.15|101.95|0.00|-3.09| +38|2023-10-06T21:13:46.2320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67038|90216|10000|10000|0||99.90|100.57|0.00|3.14|0|0|0||||||||||||| +24|2023-10-06T21:13:46.2760000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9CB|77667|82773|10000|10000|||99.66|98.65|0.00|3.12|10FF000A|Dukaro Nezikaro|0|77667|82773|10000|10000|||99.66|98.65|0.00|3.12| +21|2023-10-06T21:13:46.2760000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BE50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31123161|40478540|10000|10000|||100.00|80.10|0.00|0.00|111734|129844|10000|10000|||99.63|99.02|0.00|3.14|0001958F|0|1| +21|2023-10-06T21:13:46.2760000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3BFF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|111734|129844|10000|10000|||99.63|99.02|0.00|3.14|31123161|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019590|0|1| +38|2023-10-06T21:13:46.2760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|80174|82773|10000|10000|0||99.66|98.65|0.00|3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:46.3200000-07:00|10FF0003|Gegehi Gehi|005A5A23|15500|73814|2750|10000|0||102.21|101.04|0.00|-0.06|0|0|0|||||||||| +03|2023-10-06T21:13:45.8600000-07:00|40022936|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||102.01|99.79|0.00|-3.13| +03|2023-10-06T21:13:45.8600000-07:00|40022938|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||82.00|80.30|0.00|0.00| +261|2023-10-06T21:13:45.8600000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:13:45.8600000-07:00|Add|40022936||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:45.8600000-07:00|Add|40022938||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:45.8600000-07:00|Change|40022938||| +261|2023-10-06T21:13:45.9700000-07:00|Change|40022936||| +24|2023-10-06T21:13:46.4100000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F78|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|1.23| +21|2023-10-06T21:13:46.4100000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31123161|40478540|10000|10000|||100.00|80.10|0.00|0.00|72860|81809|9100|10000|||100.20|97.79|0.00|-3.10|00019591|0|1| +20|2023-10-06T21:13:46.4100000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.48|100.27|0.00|2.66| +21|2023-10-06T21:13:46.4100000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31123161|40478540|10000|10000|||100.00|80.10|0.00|0.00|80174|82773|10000|10000|||99.66|98.65|0.00|3.12|00019592|0|1| +38|2023-10-06T21:13:46.4100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||100.48|100.27|0.00|2.66|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:13:46.4540000-07:00|40022472|Zeromus|0001958B|31117830||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:45.9700000-07:00|Change|10FF0004||||||||||||||||||| +24|2023-10-06T21:13:46.4990000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FB2|111734|129844|10000|10000|||99.57|99.02|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|111734|129844|10000|10000|||99.57|99.02|0.00|3.14| +24|2023-10-06T21:13:46.4990000-07:00|10FF0006|Wowobora Gogobora|HoT|0|992|72860|81809|9100|10000|||100.18|97.63|0.00|-2.92|10FF0009|Zewo Negiwo|0|80629|81177|9242|10000|||101.15|101.95|0.00|-3.09| +38|2023-10-06T21:13:46.4990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115752|129844|10000|10000|0||99.57|99.02|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:46.4990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|75310|81809|9100|10000|0||100.18|97.63|0.00|-2.92|0|0|0||||||||||||||||||| +38|2023-10-06T21:13:46.5430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67038|90216|10000|10000|0||99.90|100.57|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:13:46.5430000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:13:46.5430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|80174|82773|10000|10000|0||99.66|98.65|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.5430000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:13:46.5430000-07:00|10FF0003|Gegehi Gehi|005A5A23|15500|73814|2750|10000|0||102.19|101.40|0.00|-0.06|0|0|0||||||||||||| +26|2023-10-06T21:13:46.5430000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:13:46.5430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||100.48|100.27|0.00|2.66|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.5430000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:13:46.5430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|75310|81809|9100|10000|0||100.18|97.63|0.00|-2.92|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:46.5430000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:46.5430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115752|129844|10000|10000|0||99.57|99.02|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.5430000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:13:46.5430000-07:00|10FF0009|Zewo Negiwo|005A5A18|80629|81177|9242|10000|0||101.15|101.95|0.00|-3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.5430000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:13:46.5430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:46.5430000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:13:46.5430000-07:00|10FF0009|Zewo Negiwo|HoT|0|97A|80629|81177|9242|10000|||101.15|101.95|0.00|-3.09|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|0.97| +38|2023-10-06T21:13:46.5430000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9242|10000|0||101.15|101.95|0.00|-3.09|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:13:46.5880000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|F8E|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|9242|10000|||101.15|101.95|0.00|-3.09| +38|2023-10-06T21:13:46.5880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||| +21|2023-10-06T21:13:46.6770000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1EFE0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|31117830|40478540|10000|10000|||100.00|80.10|0.00|0.00|80174|82773|10000|10000|||99.66|98.65|0.00|3.12|00019593|0|1| +03|2023-10-06T21:13:46.1790000-07:00|4002293A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||86.00|80.30|0.00|0.00| +03|2023-10-06T21:13:46.1790000-07:00|4002293B|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||90.00|80.30|0.00|0.00| +261|2023-10-06T21:13:46.1790000-07:00|Add|4002293A||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:46.1790000-07:00|Add|4002293B||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:13:46.7220000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|70D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31117830|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|00019594|0|1| +31|2023-10-06T21:13:46.7220000-07:00|10FF0001||||| +261|2023-10-06T21:13:46.2790000-07:00|Change|4002293A||| +261|2023-10-06T21:13:46.2790000-07:00|Change|4002293B||| +261|2023-10-06T21:13:46.2790000-07:00|Change|40022913||| +37|2023-10-06T21:13:46.8120000-07:00|40022472|Zeromus|0001958F|31114785||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:46.8560000-07:00|10FF0003|Gegehi Gehi|0001958C|20713||||||102.19|101.40|0.00|-0.06| +37|2023-10-06T21:13:46.9440000-07:00|40022472|Zeromus|00019591|31114597||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:46.9440000-07:00|40022472|Zeromus|00019592|31112418||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:13:46.9880000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|00019595|0|8| +22|2023-10-06T21:13:46.9880000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|00019595|1|8| +22|2023-10-06T21:13:46.9880000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|00019595|2|8| +22|2023-10-06T21:13:46.9880000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67038|90216|10000|10000|||99.90|100.57|0.00|3.14|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|00019595|3|8| +22|2023-10-06T21:13:46.9880000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|115752|129844|10000|10000|||99.57|99.02|0.00|3.14|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|00019595|4|8| +22|2023-10-06T21:13:46.9880000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80174|82773|10000|10000|||99.66|98.65|0.00|3.12|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|00019595|5|8| +22|2023-10-06T21:13:46.9880000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0009|Zewo Negiwo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9242|10000|||101.15|101.95|0.00|-3.09|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|00019595|6|8| +22|2023-10-06T21:13:46.9880000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20713|73814|2750|10000|||102.19|101.40|0.00|-0.06|75310|81809|9100|10000|||100.20|98.84|0.00|-0.73|00019595|7|8| +38|2023-10-06T21:13:46.9890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115752|129844|10000|10000|0||99.57|99.02|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.9890000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:13:46.9890000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9242|10000|0||101.15|101.95|0.00|-3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.9890000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|00|81177|81809| +38|2023-10-06T21:13:46.9890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67038|90216|10000|10000|0||99.90|100.57|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:13:46.9890000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:13:46.9890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|75310|81809|9100|10000|0||100.20|98.84|0.00|-0.73|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:46.9890000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:13:46.9890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.77|99.72|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.9890000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:13:46.9890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||100.48|100.27|0.00|2.66|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.9890000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:13:46.9890000-07:00|10FF0003|Gegehi Gehi|005A5A23|20713|73814|2750|10000|0||102.19|101.40|0.00|-0.06|0|0|0|||||||||||||||| +26|2023-10-06T21:13:46.9890000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:13:46.9890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|80174|82773|10000|10000|0||99.66|98.65|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:46.9890000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|82773|81809| +261|2023-10-06T21:13:46.5560000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:13:47.0780000-07:00|10FF0007|Kehabiqo Febiqo|00019590|100393||||||99.57|99.02|0.00|3.14| +37|2023-10-06T21:13:47.0780000-07:00|40022472|Zeromus|00019593|31104484||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:47.0780000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|726003|BB2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31112418|40478540|10000|10000|||100.00|80.10|0.00|0.00|67038|90216|10000|10000|||99.90|100.57|0.00|3.14|00019596|0|1| +261|2023-10-06T21:13:46.5560000-07:00|Add|4002293C||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:46.5560000-07:00|Remove|40022913| +261|2023-10-06T21:13:46.6700000-07:00|Change|40022936||||||| +261|2023-10-06T21:13:46.6700000-07:00|Change|4002293C||| +03|2023-10-06T21:13:46.6700000-07:00|4002293C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||94.00|80.30|0.00|0.00| +21|2023-10-06T21:13:47.2120000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|31410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31104484|40478540|10000|10000|||100.00|80.10|0.00|0.00|20713|73814|2750|10000|||102.19|101.40|0.00|-0.06|00019597|0|1| +21|2023-10-06T21:13:47.2120000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31104484|40478540|10000|10000|||100.00|80.10|0.00|0.00|20713|73814|2750|10000|||102.19|101.40|0.00|-0.06|00019598|0|1| +37|2023-10-06T21:13:47.2550000-07:00|40022472|Zeromus|00019594|31102679||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:47.3000000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|714003|1D5C0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|31104484|40478540|10000|10000|||100.00|80.10|0.00|0.00|100393|129844|10000|10000|||99.57|99.02|0.00|3.14|00019599|0|1| +37|2023-10-06T21:13:47.4780000-07:00|40022472|Zeromus|0001958E|31089200||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:47.0160000-07:00|Add|4002293D||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:47.0160000-07:00|Add|4002293E||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:13:47.0160000-07:00|4002293D|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||98.00|80.30|0.00|0.00| +03|2023-10-06T21:13:47.0160000-07:00|4002293E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||102.00|80.30|0.00|0.00| +39|2023-10-06T21:13:47.5220000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|0.95| +21|2023-10-06T21:13:47.5220000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31102679|40478540|10000|10000|||100.00|80.10|0.00|0.00|67038|90216|10000|10000|||99.90|100.57|0.00|3.14|0001959A|0|1| +261|2023-10-06T21:13:47.0160000-07:00|Change|4002293D||| +261|2023-10-06T21:13:47.0160000-07:00|Change|4002293E||| +21|2023-10-06T21:13:47.6560000-07:00|10FF0009|Zewo Negiwo|4093|Afflatus Solace|10FF0003|Gegehi Gehi|200004|C1E30000|13E|EE8000|1B|40938000|0|0|0|0|0|0|0|0|0|0|20713|73814|2750|10000|||102.19|101.40|0.00|-3.04|81177|81177|9242|10000|||101.15|101.95|0.00|-3.09|0001959B|0|1| +39|2023-10-06T21:13:47.7000000-07:00|10FF0008|Kokosaze Lulusaze|67940|90216|10000|10000|||99.90|100.57|0.00|3.14| +21|2023-10-06T21:13:47.7000000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67038|90216|10000|10000|||99.90|100.57|0.00|3.14|67038|90216|10000|10000|||99.90|100.57|0.00|3.14|0001959C|0|1| +38|2023-10-06T21:13:47.7000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67940|90216|10000|10000|0||99.90|100.57|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:47.7000000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +261|2023-10-06T21:13:47.2400000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:13:47.7450000-07:00|40022472|Zeromus|00019598|31089199||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:47.7450000-07:00|10FF000A|Dukaro Nezikaro|81001|82773|10000|10000|||99.66|98.65|0.00|3.12| +24|2023-10-06T21:13:47.7450000-07:00|40022472|Zeromus|DoT|0|1F23|31089200|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|9242|10000|||101.15|101.95|0.00|-3.12| +38|2023-10-06T21:13:47.7450000-07:00|40022472|Zeromus|005A5A00|31081228|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:13:47.7890000-07:00|10FF0006|Wowobora Gogobora|00019595|75310|81809|9100|10000|0||100.29|99.75|0.00|0.08|1B00|0|0|01|03000A8F|0|41E9F3B4|| +38|2023-10-06T21:13:47.7890000-07:00|40022936|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||102.01|99.79|0.00|-3.13|0|0|0||||||| +26|2023-10-06T21:13:47.7890000-07:00|30|Well Fed|1645.47|10FF0006|Wowobora Gogobora|40022936|Demi-Bahamut|2964|69928|81809| +26|2023-10-06T21:13:47.7890000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|40022936|Demi-Bahamut|00|69928|81809| +37|2023-10-06T21:13:47.8350000-07:00|40022472|Zeromus|00019599|31073712||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19F60000|890E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|0001959D|0|8| +22|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1A020000|9C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|75310|81809|9100|10000|||100.28|99.77|0.00|-0.09|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|0001959D|1|8| +22|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19D70000|580E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67940|90216|10000|10000|||99.90|100.57|0.00|3.14|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|0001959D|2|8| +22|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|1A490000|E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|0001959D|3|8| +22|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|29C00000|CC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|100393|129844|10000|10000|||99.57|99.02|0.00|3.12|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|0001959D|4|8| +22|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|200004|28810000|CE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81177|81177|9242|10000|||101.15|101.95|0.00|2.90|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|0001959D|5|8| +22|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|287F0000|CB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81001|82773|10000|10000|||99.66|98.65|0.00|3.12|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|0001959D|6|8| +22|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|18E20000|D00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|20713|73814|2750|10000|||102.19|101.40|0.00|-3.04|81541|81541|8800|10000|||100.48|100.27|0.00|2.66|0001959D|7|8| +38|2023-10-06T21:13:47.8350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100393|129844|10000|10000|13||99.57|99.02|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:47.8350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:13:47.8350000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9242|10000|20||101.15|101.95|0.00|2.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:47.8350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:13:47.8350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67940|90216|10000|10000|11||99.90|100.57|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:47.8350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:13:47.8350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|75310|81809|9100|10000|13||100.28|99.77|0.00|-0.09|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:47.8350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:13:47.8350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:47.8350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:13:47.8350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7800|10000|13||100.48|100.27|0.00|2.66|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:47.8350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:13:47.8350000-07:00|10FF0003|Gegehi Gehi|005A5A23|20713|73814|2750|10000|13||102.19|101.40|0.00|-3.04|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:47.8350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:13:47.8350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81001|82773|10000|10000|20||99.66|98.65|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:47.8350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:13:47.3340000-07:00|Change|10FF0004||||||||||||||| +03|2023-10-06T21:13:47.4320000-07:00|4002293F|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||106.00|80.30|0.00|-0.28| +39|2023-10-06T21:13:47.8790000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8000|10000|||100.48|100.27|0.00|2.66| +21|2023-10-06T21:13:47.8790000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2AED0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|31081228|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|0001959E|0|1| +36|2023-10-06T21:13:47.8790000-07:00|2B20|3| +38|2023-10-06T21:13:47.8790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:47.8790000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:13:47.4320000-07:00|Add|4002293F||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:47.4320000-07:00|Change|4002293C||||||||| +261|2023-10-06T21:13:47.4320000-07:00|Change|4002293F||| +37|2023-10-06T21:13:47.9230000-07:00|10FF0001|Sesuga Sapisuga|00019595|129071|129071|10000|10000|8||99.77|99.72|0.00|3.13|1301|0|0|01|06000A8F|0|41E8E145|| +261|2023-10-06T21:13:47.4320000-07:00|Change|4002293F||| +39|2023-10-06T21:13:47.9670000-07:00|10FF0007|Kehabiqo Febiqo|101691|129844|10000|10000|||99.57|99.02|0.00|3.12| +39|2023-10-06T21:13:47.9670000-07:00|10FF0006|Wowobora Gogobora|76128|81809|9300|10000|||100.26|99.78|0.00|-0.27| +261|2023-10-06T21:13:47.5240000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:13:48.0110000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|720003|2A310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31073712|40478540|10000|10000|||100.00|80.10|0.00|0.00|20713|73814|2750|10000|||102.12|101.37|0.00|-3.11|0001959F|0|1| +37|2023-10-06T21:13:48.0560000-07:00|10FF0004|Buhojaqe Zijaqe|00019595|81541|81541|8000|10000|13||100.48|100.27|0.00|2.66|1C02|0|0|01|03000A8F|0|41E7D0E2|| +39|2023-10-06T21:13:48.0560000-07:00|10FF0009|Zewo Negiwo|81177|81177|9463|10000|||101.15|101.95|0.00|2.13| +261|2023-10-06T21:13:47.7120000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:13:48.0560000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.77|99.72|0.00|3.13| +38|2023-10-06T21:13:48.0560000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.89|95.75|0.00|2.86|0|0|0||||||| +26|2023-10-06T21:13:48.0560000-07:00|A8F|Searing Light|28.93|10FF0006|Wowobora Gogobora|4002284A|Ruby Carbuncle|00|77430|81809| +37|2023-10-06T21:13:48.1900000-07:00|10FF0003|Gegehi Gehi|0001959B|70348||||||102.12|101.37|0.00|-3.11| +37|2023-10-06T21:13:48.1900000-07:00|10FF0008|Kokosaze Lulusaze|00019595|67940|90216|10000|10000|11||99.90|100.57|0.00|3.14|1F03|0|0|01|04000A8F|0|41E6BE74|| +39|2023-10-06T21:13:48.1900000-07:00|10FF0003|Gegehi Gehi|71086|73814|2950|10000|||102.12|101.37|0.00|-3.11| +261|2023-10-06T21:13:47.7120000-07:00|Change|40022938||||||||| +38|2023-10-06T21:13:48.1900000-07:00|40022930|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.68|102.35|0.00|3.14|0|0|0||||||| +26|2023-10-06T21:13:48.1900000-07:00|30|Well Fed|1638.01|10FF0008|Kokosaze Lulusaze|40022930|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:13:48.1900000-07:00|A8F|Searing Light|28.80|10FF0006|Wowobora Gogobora|40022930|Automaton Queen|00|85668|81809| +261|2023-10-06T21:13:47.7120000-07:00|Change|4002293D||||||||| +261|2023-10-06T21:13:47.7120000-07:00|Change|4002291E||||||||| +37|2023-10-06T21:13:48.2330000-07:00|40022472|Zeromus|00019596|31025797||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:48.2780000-07:00|40022472|Zeromus|0001959A|31023439||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:48.3230000-07:00|10FF0007|Kehabiqo Febiqo|00019595|101691|129844|10000|10000|13||99.57|99.02|0.00|3.12|1504|0|0|01|05000A8F|0|41E5AE12|| +03|2023-10-06T21:13:47.8250000-07:00|40022940|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||110.00|80.30|0.00|0.00| +261|2023-10-06T21:13:47.8250000-07:00|Add|40022940||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:13:47.8250000-07:00|40022941|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||114.00|80.30|0.00|0.00| +21|2023-10-06T21:13:48.3230000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67940|90216|10000|10000|||99.90|100.57|0.00|3.14|67940|90216|10000|10000|||99.90|100.57|0.00|3.14|000195A0|0|1| +261|2023-10-06T21:13:47.8250000-07:00|Add|40022941||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:47.9450000-07:00|Change|40022940||| +261|2023-10-06T21:13:47.9450000-07:00|Change|40022941||| +37|2023-10-06T21:13:48.3670000-07:00|40022472|Zeromus|00019597|31010830||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:48.3670000-07:00|10FF0009|Zewo Negiwo|1D08|Divine Benison|10FF0003|Gegehi Gehi|FD0E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|71086|73814|2950|10000|||101.88|101.37|0.00|-3.14|81177|81177|9463|10000|||101.15|101.95|0.00|2.10|000195A1|0|1| +37|2023-10-06T21:13:48.4560000-07:00|10FF000A|Dukaro Nezikaro|00019595|81001|82773|10000|10000|20||99.66|98.65|0.00|3.12|1E05|0|0|01|03000A8F|0|41E49DAF|| +21|2023-10-06T21:13:48.4560000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31023439|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||100.48|100.27|0.00|2.41|000195A2|0|1| +261|2023-10-06T21:13:48.0630000-07:00|Change|4002293A||||||||| +261|2023-10-06T21:13:48.0630000-07:00|Change|4002293E||||||||| +21|2023-10-06T21:13:48.5460000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|479C0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|31010830|40478540|10000|10000|||100.00|80.10|0.00|0.00|76128|81809|9300|10000|||99.76|100.71|0.00|0.27|000195A3|0|1| +37|2023-10-06T21:13:48.5910000-07:00|10FF0009|Zewo Negiwo|00019595|81177|81177|9463|10000|20||101.04|101.83|0.00|2.25|1806|0|0|01|02000A8F|0|41E38934|| +21|2023-10-06T21:13:48.5910000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D6D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31010830|40478540|10000|10000|||100.00|80.10|0.00|0.00|81001|82773|10000|10000|||99.66|98.65|0.00|3.12|000195A4|0|1| +261|2023-10-06T21:13:48.1580000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:13:48.1580000-07:00|Change|4002293F||||||||| +261|2023-10-06T21:13:48.1580000-07:00|Change|4002293B||||||||| +261|2023-10-06T21:13:48.1580000-07:00|Add|40022942||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:13:48.1580000-07:00|40022942|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|80.30|0.00|0.00| +37|2023-10-06T21:13:48.7250000-07:00|10FF0003|Gegehi Gehi|00019595|71086|73814|2950|10000|13||101.74|101.37|-0.01|3.08|2307|0|0|01|04000A8F|0|41E276C5|| +261|2023-10-06T21:13:48.2570000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:13:48.2570000-07:00|Change|40022942||| +20|2023-10-06T21:13:48.8150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.57|100.27|0.00|1.92| +261|2023-10-06T21:13:48.3560000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:13:48.9030000-07:00|40022930|Automaton Queen|4078|Arm Punch|40022472|Zeromus|734003|2A5D0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|31010830|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.68|102.35|0.00|3.14|000195A5|0|1| +261|2023-10-06T21:13:48.3560000-07:00|Change|4002293C||||| +37|2023-10-06T21:13:48.9480000-07:00|10FF0004|Buhojaqe Zijaqe|0001959D|81541|81541|8000|10000|13||100.60|100.27|0.00|2.10|1C00|0|0|01|07000129|0|41E772AE|| +21|2023-10-06T21:13:48.9480000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|250B0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|31010830|40478540|10000|10000|||100.00|80.10|0.00|0.00|81001|82773|10000|10000|||99.66|98.65|0.00|3.12|000195A6|0|1| +37|2023-10-06T21:13:48.9930000-07:00|40022472|Zeromus|000195A2|31010674||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:48.9930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31010830|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|000195A7|0|1| +31|2023-10-06T21:13:48.9930000-07:00|10FF0001||||| +37|2023-10-06T21:13:49.0820000-07:00|10FF0006|Wowobora Gogobora|0001959D|81809|81809|9000|10000|13||99.72|100.62|0.00|3.13|1B01|0|0|01|04000129|0|41E65E33|| +261|2023-10-06T21:13:48.5430000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:13:49.1270000-07:00|40022472|Zeromus|000195A4|31007237||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:49.1720000-07:00|10FF0003|Gegehi Gehi|000195A1|71086|73814|2950|10000|35||101.73|101.37|0.00|3.08|2300|0|0|01|060004C2|0|41700000|| +26|2023-10-06T21:13:49.1720000-07:00|4C2|Divine Benison|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:13:49.1720000-07:00|40022472|Zeromus|000195A3|30988905||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:49.1720000-07:00|40022472|Zeromus|0001959E|30977916||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:49.1720000-07:00|40022472|Zeromus|0001959F|30967115||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:49.1720000-07:00|10FF0003|Gegehi Gehi|005A5A23|71086|73814|2950|10000|35||101.73|101.37|0.00|3.08|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:13:48.6550000-07:00|Change|4002293D||||| +37|2023-10-06T21:13:49.2160000-07:00|10FF0008|Kokosaze Lulusaze|0001959D|74555|90216|10000|10000|11||99.90|100.57|0.00|3.14|1F02|0|0|01|06000129|0|41E54BC4|| +21|2023-10-06T21:13:49.2160000-07:00|40022936|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|14230000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|30967115|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04|000195A8|0|1| +24|2023-10-06T21:13:49.2160000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9F6|67940|90216|10000|10000|||99.90|100.57|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8000|10000|||100.66|100.27|-0.01|3.05| +38|2023-10-06T21:13:49.2160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77105|90216|10000|10000|11||99.90|100.57|0.00|3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:13:49.2610000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|FE9|81001|82773|10000|10000|||99.66|98.65|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8000|10000|||100.66|100.27|-0.01|3.05| +20|2023-10-06T21:13:49.2610000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|101.73|101.37|0.00|3.08| +38|2023-10-06T21:13:49.2610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||99.66|98.65|0.00|3.12|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:13:48.7650000-07:00|Change|10FF0003||||||||||||||||||| +21|2023-10-06T21:13:49.3050000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|101691|129844|10000|10000|||99.20|98.71|-0.01|3.13|30967115|40478540|10000|10000|||100.00|80.10|0.00|0.00|000195A9|0|1| +38|2023-10-06T21:13:49.3050000-07:00|10FF0003|Gegehi Gehi|005A5A23|71086|73814|3500|10000|35||101.73|101.37|0.00|3.08|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:13:49.3490000-07:00|10FF0001|Sesuga Sapisuga|0001959D|129071|129071|10000|10000|8||99.77|99.72|0.00|3.13|1303|0|0|01|07000129|0|41E43B62|| +37|2023-10-06T21:13:49.3490000-07:00|40022472|Zeromus|000195A6|30957632||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:49.3940000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|99A|81541|81541|8000|10000|||100.66|100.27|-0.02|-3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8000|10000|||100.66|100.27|-0.02|-3.11| +38|2023-10-06T21:13:49.3940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8000|10000|13||100.66|100.27|-0.02|-3.11|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:13:49.4840000-07:00|10FF0007|Kehabiqo Febiqo|0001959D|112379|129844|10000|10000|13||99.20|98.71|0.00|3.13|1504|0|0|01|07000129|0|41E32AFF|| +24|2023-10-06T21:13:49.4840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FE4|101691|129844|10000|10000|||99.20|98.71|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8000|10000|||100.66|100.27|0.00|-3.11| +24|2023-10-06T21:13:49.4840000-07:00|10FF0006|Wowobora Gogobora|HoT|0|965|81809|81809|9000|10000|||99.72|100.60|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|9463|10000|||100.24|101.00|0.00|-2.95| +38|2023-10-06T21:13:49.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116447|129844|10000|10000|13||99.20|98.71|0.00|3.13|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:13:49.4840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|13||99.72|100.60|0.00|3.13|0|0|0||||||||||||||||||| +37|2023-10-06T21:13:49.5270000-07:00|40022472|Zeromus|000195A7|30955876||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:49.5280000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77105|90216|10000|10000|11||99.90|100.57|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:49.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:13:49.5280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||99.66|98.65|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:49.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:13:49.5280000-07:00|10FF0003|Gegehi Gehi|005A5A23|71086|73814|3500|10000|35||101.73|101.37|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:49.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:13:49.5280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8000|10000|13||100.66|100.27|0.00|-3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:49.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:13:49.5280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|13||99.72|100.60|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:13:49.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:49.5280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116447|129844|10000|10000|2||99.20|98.71|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:49.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:13:49.5280000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9463|10000|20||100.24|101.00|0.00|-2.95|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:49.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:13:49.5280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:49.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:13:49.5280000-07:00|10FF0009|Zewo Negiwo|HoT|0|9CC|81177|81177|9463|10000|||100.24|101.00|0.00|-2.95|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|2.67| +38|2023-10-06T21:13:49.5280000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9463|10000|20||100.24|101.00|0.00|-2.95|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:13:49.5720000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|FFD|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8000|10000|||100.66|100.27|0.00|-3.11| +21|2023-10-06T21:13:49.5730000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30955876|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||99.72|100.60|0.00|3.13|000195AA|0|1| +38|2023-10-06T21:13:49.5730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||99.77|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:13:49.6170000-07:00|10FF0009|Zewo Negiwo|0001959D|81177|81177|9463|10000|20||100.24|101.00|0.00|-2.95|1805|0|0|01|05000129|0|41E21891|| +26|2023-10-06T21:13:49.6170000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:13:49.6170000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|24640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30955876|40478540|10000|10000|||100.00|80.10|0.00|0.00|77105|90216|10000|10000|||99.90|100.57|0.00|3.14|000195AB|0|1| +37|2023-10-06T21:13:49.6620000-07:00|40022472|Zeromus|000195A5|30945031||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:49.6620000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30955876|40478540|10000|10000|||100.00|80.10|0.00|0.00|116447|129844|10000|10000|||99.20|98.71|0.00|3.13|000195AC|0|1| +261|2023-10-06T21:13:49.2060000-07:00|Change|4002293F||||| +21|2023-10-06T21:13:49.7070000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.66|98.65|0.00|3.12|82773|82773|10000|10000|||99.66|98.65|0.00|3.12|000195AD|0|1| +38|2023-10-06T21:13:49.7070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||99.66|98.65|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:13:49.7070000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:13:49.2060000-07:00|Change|4002293B||||| +37|2023-10-06T21:13:49.7520000-07:00|10FF000A|Dukaro Nezikaro|0001959D|82773|82773|10000|10000|20||99.66|98.65|0.00|3.12|1E06|0|0|02|07000129|0|41E10416|||||| +21|2023-10-06T21:13:49.7520000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|37BB0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|30945031|40478540|10000|10000|||100.00|80.10|0.00|0.00|116447|129844|10000|10000|||99.20|98.71|0.00|3.13|000195AE|0|1| +21|2023-10-06T21:13:49.7520000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32200000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|30945031|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||100.66|100.27|0.00|-3.11|000195AF|0|1| +261|2023-10-06T21:13:49.3020000-07:00|Change|10FF0003||||||| +21|2023-10-06T21:13:49.7960000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|154A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|116447|129844|10000|10000|||99.20|98.71|0.00|3.13|73956|77430|10000|10000|||97.89|95.75|0.00|2.13|000195B0|0|1| +39|2023-10-06T21:13:49.7960000-07:00|40022930|Automaton Queen|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07| +261|2023-10-06T21:13:49.4010000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:13:49.8860000-07:00|10FF0003|Gegehi Gehi|0001959D|73814|73814|3500|10000|35||101.73|101.37|0.00|-3.06|2307|0|0|01|05000129|0|41DFF3B3|| +04|2023-10-06T21:13:49.4010000-07:00|4002291E|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.11|101.76|0.00|-1.46| +261|2023-10-06T21:13:49.4010000-07:00|Remove|4002291E| +261|2023-10-06T21:13:49.4010000-07:00|Change|4002293C||||| +20|2023-10-06T21:13:50.0640000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.24|101.00|0.00|-2.95| +37|2023-10-06T21:13:50.1090000-07:00|40022472|Zeromus|000195AA|30944834||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:50.1990000-07:00|40022472|Zeromus|000195AC|30941690||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:50.1990000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B6B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30945031|40478540|10000|10000|||100.00|80.10|0.00|0.00|77105|90216|10000|10000|||99.90|100.57|0.00|3.14|000195B1|0|1| +261|2023-10-06T21:13:49.7290000-07:00|Change|10FF0009||||||||||||||||||||| +261|2023-10-06T21:13:49.7290000-07:00|Change|4002293D||||||| +37|2023-10-06T21:13:50.2430000-07:00|40022472|Zeromus|000195A8|30936535||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:50.2430000-07:00|40022472|Zeromus|000195AB|30927219||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:50.3760000-07:00|40022472|Zeromus|000195AE|30912952||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:49.9680000-07:00|Change|40022938||||| +21|2023-10-06T21:13:50.4660000-07:00|40022930|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|21C60000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30912952|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07|000195B2|0|1| +21|2023-10-06T21:13:50.4660000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1E310000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|30912952|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|000195B3|0|1| +39|2023-10-06T21:13:50.5100000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|0.42| +37|2023-10-06T21:13:50.5550000-07:00|40022472|Zeromus|000195AF|30900120||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:50.0810000-07:00|Change|4002293A||||| +261|2023-10-06T21:13:50.0810000-07:00|Change|4002293E||||| +37|2023-10-06T21:13:50.6000000-07:00|10FF0007|Kehabiqo Febiqo|000195B0|121897||||||99.20|98.71|0.00|3.10| +37|2023-10-06T21:13:50.6900000-07:00|10FF000A|Dukaro Nezikaro|000195AD|82773|82773|10000|10000|20||99.66|98.65|0.00|3.12|1E00|0|0|01|080001F1|0|41700000|| +21|2023-10-06T21:13:50.6900000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|754003|28AF0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|30900120|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3500|10000|||101.73|101.37|0.00|-3.06|000195B4|0|1| +38|2023-10-06T21:13:50.6910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3300|10000|35||101.73|101.37|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:13:50.6910000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:13:50.6910000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||99.66|98.65|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:13:50.7350000-07:00|10FF0008|Kokosaze Lulusaze|78007|90216|10000|10000|||99.90|100.57|0.00|3.14| +39|2023-10-06T21:13:50.7790000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.66|98.65|0.00|3.12| +24|2023-10-06T21:13:50.7790000-07:00|40022472|Zeromus|DoT|0|1E81|30900120|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|9463|10000|||100.24|101.00|0.00|-3.13| +21|2023-10-06T21:13:50.7790000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30900120|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.66|98.65|0.00|3.12|000195B5|0|1| +38|2023-10-06T21:13:50.7790000-07:00|40022472|Zeromus|005A5A00|30892311|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:13:50.3630000-07:00|Change|10FF0003||||||||||||||||| +36|2023-10-06T21:13:50.8680000-07:00|2BFC|3| +39|2023-10-06T21:13:50.9130000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7800|10000|||100.66|100.27|0.00|-3.11| +261|2023-10-06T21:13:50.4560000-07:00|Change|10FF0004||| +37|2023-10-06T21:13:50.9580000-07:00|40022472|Zeromus|000195B1|30889388||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:50.4560000-07:00|Change|40022940||||||||| +39|2023-10-06T21:13:51.0020000-07:00|10FF0007|Kehabiqo Febiqo|123195|129844|10000|10000|||99.20|98.53|0.00|3.13| +39|2023-10-06T21:13:51.0020000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9200|10000|||99.31|99.57|0.00|3.05| +21|2023-10-06T21:13:51.0020000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|53A00000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|30892311|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9463|10000|||100.24|101.00|0.00|-3.13|000195B6|0|1| +21|2023-10-06T21:13:51.0020000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|752003|7B900000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30892311|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||99.31|99.57|0.00|3.05|000195B7|0|1| +261|2023-10-06T21:13:50.4560000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:13:51.0460000-07:00|10FF0009|Zewo Negiwo|81177|81177|9284|10000|||100.24|101.00|0.00|-3.13| +39|2023-10-06T21:13:51.0920000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.77|99.72|0.00|3.13| +26|2023-10-06T21:13:51.0920000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:13:51.0920000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2BE90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30889388|40478540|10000|10000|||100.00|80.10|0.00|0.00|78007|90216|10000|10000|||99.90|100.57|0.00|3.14|000195B8|0|1| +39|2023-10-06T21:13:51.1800000-07:00|10FF0003|Gegehi Gehi|73814|73814|3500|10000|||101.73|101.37|0.00|-3.06| +261|2023-10-06T21:13:50.6860000-07:00|Change|40022941||||||||| +37|2023-10-06T21:13:51.2250000-07:00|40022472|Zeromus|000195B2|30880742||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:51.2250000-07:00|40022472|Zeromus|000195B3|30873013||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:51.2250000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|000195B9|0|1| +20|2023-10-06T21:13:51.2250000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.66|100.27|0.00|-3.11| +21|2023-10-06T21:13:51.2700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30889388|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|000195BA|0|1| +31|2023-10-06T21:13:51.2700000-07:00|10FF0001||||| +261|2023-10-06T21:13:50.8070000-07:00|Change|10FF0009||||||||||||||||| +37|2023-10-06T21:13:51.3140000-07:00|40022472|Zeromus|000195B5|30870804||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:50.8070000-07:00|Change|40022490||||||||| +261|2023-10-06T21:13:50.8070000-07:00|Change|4002248F||||||||| +20|2023-10-06T21:13:51.4020000-07:00|40022472|Zeromus|8B43|Visceral Whirl|40022472|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:13:51.4020000-07:00|4002248F|Zeromus|8B44|Visceral Whirl|4002248F|Zeromus|8.500|80.10|80.10|0.00|0.79| +20|2023-10-06T21:13:51.4020000-07:00|40022490|Zeromus|8B45|Visceral Whirl|40022490|Zeromus|8.500|119.90|80.10|0.00|-0.79| +21|2023-10-06T21:13:51.4020000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40022472|Zeromus|712003|1AF00000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|30870804|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.66|98.65|0.00|3.12|000195BB|0|1| +38|2023-10-06T21:13:51.4020000-07:00|40022472|Zeromus|005A5A00|30870804|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T21:13:51.4020000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +261|2023-10-06T21:13:50.9200000-07:00|Change|40022472||||||||||||| +37|2023-10-06T21:13:51.4470000-07:00|40022472|Zeromus|000195B4|30860389|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +261|2023-10-06T21:13:51.0370000-07:00|Change|40022942||||||||| +38|2023-10-06T21:13:51.5800000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9284|10000|20||100.24|101.00|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:51.5800000-07:00|750|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:13:51.6240000-07:00|40022472|Zeromus|000195B7|30828757|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +21|2023-10-06T21:13:51.7130000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2F4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30828757|40478540|10000|10000|||100.00|80.10|0.00|0.00|123195|129844|10000|10000|||99.20|98.19|0.00|-3.12|000195BC|0|1| +21|2023-10-06T21:13:51.7130000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30828757|40478540|10000|10000|||100.00|80.10|0.00|0.00|78007|90216|10000|10000|||99.93|100.49|0.00|2.96|000195BD|0|1| +21|2023-10-06T21:13:51.7130000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|552003|41540000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|30828757|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3500|10000|||101.73|101.37|0.00|-3.06|000195BE|0|1| +38|2023-10-06T21:13:51.7130000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3200|10000|35||101.73|101.37|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:13:51.7130000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:13:51.7130000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:13:51.7580000-07:00|40022472|Zeromus|000195B8|30817516|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +37|2023-10-06T21:13:51.8020000-07:00|40022472|Zeromus|000195BA|30815746|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +261|2023-10-06T21:13:51.4120000-07:00|Change|10FF0003||| +261|2023-10-06T21:13:51.4120000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:13:51.8930000-07:00|10FF0001|Sesuga Sapisuga|000195B9|129071|129071|10000|10000|8||99.77|99.72|0.00|3.13|1300|0|0|01|0800004C|0|41A00000|| +26|2023-10-06T21:13:51.8930000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:13:51.8930000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|750003|29B80000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|30817516|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|99.72|0.00|3.13|000195BF|0|1| +38|2023-10-06T21:13:51.8930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||99.77|99.72|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:13:51.8930000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:13:51.8930000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:13:51.4120000-07:00|Change|4002293D||||||||| +37|2023-10-06T21:13:51.9360000-07:00|40022472|Zeromus|000195BB|30808850|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|41A00000|| +38|2023-10-06T21:13:51.9360000-07:00|40022472|Zeromus|005A5A00|30808850|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:13:51.5090000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T21:13:51.5090000-07:00|Change|40022940||||| +21|2023-10-06T21:13:52.0260000-07:00|40022930|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|22B60000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30808850|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07|000195C0|0|1| +39|2023-10-06T21:13:52.0700000-07:00|40022936|Demi-Bahamut|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04| +21|2023-10-06T21:13:52.1600000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|364A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|30808850|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||100.66|100.27|0.00|-3.11|000195C1|0|1| +21|2023-10-06T21:13:52.1600000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30808850|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3200|10000|||101.73|101.37|0.00|-3.06|000195C2|0|1| +261|2023-10-06T21:13:51.7290000-07:00|Change|4002293F||||||||| +261|2023-10-06T21:13:51.8430000-07:00|Change|4002248F||||||||||||| +24|2023-10-06T21:13:52.2050000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|930|78007|90216|10000|10000|||100.39|99.32|0.00|2.78|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7400|10000|||100.66|100.27|0.00|-3.11| +21|2023-10-06T21:13:52.2050000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|756003|52D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30808850|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.66|98.65|0.00|3.12|000195C3|0|1| +38|2023-10-06T21:13:52.2050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80359|90216|10000|10000|11||100.39|99.32|0.00|2.78|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:13:52.2500000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|FE9|82773|82773|10000|10000|||99.66|98.65|0.00|3.12|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||99.66|98.65|0.00|3.12| +38|2023-10-06T21:13:52.2500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||99.66|98.65|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:13:52.2940000-07:00|40022472|Zeromus|000195B6|30787442||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:52.2940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3750|10000|35||101.73|101.37|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:13:51.8430000-07:00|Change|40022941||||||| +37|2023-10-06T21:13:52.3380000-07:00|40022472|Zeromus|000195BC|30775334||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:52.3830000-07:00|40022936|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|754003|19660000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|30775334|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04|000195C4|0|1| +24|2023-10-06T21:13:52.3830000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|969|81541|81541|7400|10000|||100.66|100.27|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7400|10000|||100.66|100.27|0.00|-3.11| +21|2023-10-06T21:13:52.3830000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|712003|69640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30775334|40478540|10000|10000|||100.00|80.10|0.00|0.00|123195|129844|10000|10000|||98.43|98.20|0.00|3.13|000195C5|0|1| +38|2023-10-06T21:13:52.3830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7400|10000|13||100.66|100.27|0.00|-3.11|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:13:52.4720000-07:00|40022472|Zeromus|000195BE|30758610||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:52.4720000-07:00|10FF0003|Gegehi Gehi|000195BE|73814|73814|3750|10000|35||101.73|101.37|0.00|-3.06|2300|0|0|01|080004D2|0|41F00000|| +24|2023-10-06T21:13:52.4720000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|98F|123195|129844|10000|10000|||98.43|98.20|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7400|10000|||100.66|100.27|0.00|-3.11| +24|2023-10-06T21:13:52.4720000-07:00|10FF0006|Wowobora Gogobora|HoT|0|FA0|81809|81809|8900|10000|||99.29|99.50|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|9284|10000|||97.97|101.10|0.00|-1.58| +38|2023-10-06T21:13:52.4720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125642|129844|10000|10000|2||98.43|98.20|0.00|3.13|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:13:52.4720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|13||99.29|99.50|0.00|3.11|0|0|0||||||||||||||||||| +38|2023-10-06T21:13:52.4720000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3750|10000|35||101.73|101.37|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:13:52.5170000-07:00|40022472|Zeromus|000195BD|30753279||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:52.5170000-07:00|40022472|Zeromus|000195BF|30742599||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:52.5170000-07:00|10FF0001|Sesuga Sapisuga|000195BF|129071|129071|10000|10000|8||101.20|99.36|0.00|2.23|1300|0|0|02|09000558|04|41F00000|||||| +24|2023-10-06T21:13:52.5170000-07:00|10FF0009|Zewo Negiwo|HoT|0|9E9|81177|81177|9284|10000|||97.97|101.10|0.00|-1.58|4002284A|Ruby Carbuncle|0|73956|77430|10000|10000|||97.89|95.75|0.00|3.01| +38|2023-10-06T21:13:52.5170000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9284|10000|20||97.97|101.10|0.00|-1.58|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:13:52.5170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||101.20|99.36|0.00|2.23|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:13:52.0750000-07:00|Change|40022942||||||| +24|2023-10-06T21:13:52.5610000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|923|129071|129071|10000|10000|||101.73|98.98|0.00|2.14|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||101.73|98.98|0.00|2.14| +26|2023-10-06T21:13:52.5610000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:13:52.5610000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|246C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30742599|40478540|10000|10000|||100.00|80.10|0.00|0.00|80359|90216|10000|10000|||100.52|99.35|0.00|2.14|000195C6|0|1| +38|2023-10-06T21:13:52.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||101.73|98.98|0.00|2.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:13:52.6960000-07:00|40022472|Zeromus|000195C2|30742598||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:52.6960000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30742599|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||99.29|99.50|0.00|3.11|000195C7|0|1| +37|2023-10-06T21:13:52.7850000-07:00|40022472|Zeromus|000195C0|30733712||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:52.7850000-07:00|40022930|Automaton Queen|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07| +21|2023-10-06T21:13:52.7850000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022472|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30742598|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7400|10000|||100.66|100.27|0.00|-3.11|000195C8|0|1| +37|2023-10-06T21:13:52.8300000-07:00|40022472|Zeromus|000195C3|30712506||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:52.8740000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30742598|40478540|10000|10000|||100.00|80.10|0.00|0.00|80359|90216|10000|10000|||100.80|99.41|0.00|-3.08|000195C9|0|1| +261|2023-10-06T21:13:52.3730000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:13:52.9180000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44714003|41480000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|30712506|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.66|98.65|0.00|3.12|000195CA|0|1| +37|2023-10-06T21:13:52.9620000-07:00|40022472|Zeromus|000195C1|30698608||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:52.4730000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:13:52.9630000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|B190000|FCE30E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|30712506|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9284|10000|||95.92|99.40|0.00|-2.13|000195CB|0|1| +21|2023-10-06T21:13:52.9630000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|710003|61BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30712506|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||103.38|97.94|0.00|2.21|000195CC|0|1| +21|2023-10-06T21:13:52.9630000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30712506|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.66|98.65|0.00|3.12|000195CD|0|1| +261|2023-10-06T21:13:52.4730000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:13:53.0070000-07:00|40022472|Zeromus|000195C5|30671628||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:53.0510000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BE70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30671628|40478540|10000|10000|||100.00|80.10|0.00|0.00|125642|129844|10000|10000|||95.08|98.27|0.00|3.08|000195CE|0|1| +261|2023-10-06T21:13:52.5840000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:13:53.1860000-07:00|40022472|Zeromus|000195C6|30662304||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:53.1860000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|23290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30671628|40478540|10000|10000|||100.00|80.10|0.00|0.00|80359|90216|10000|10000|||101.06|99.42|0.00|-3.13|000195CF|0|1| +37|2023-10-06T21:13:53.2310000-07:00|40022472|Zeromus|000195C7|30662092||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:52.8050000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:13:53.4100000-07:00|40022472|Zeromus|000195C4|30655590||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:53.4100000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|15280000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|80359|90216|10000|10000|||101.17|98.85|0.00|-3.14|73956|77430|10000|10000|||97.89|95.75|0.00|2.06|000195D0|0|1| +21|2023-10-06T21:13:53.4100000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|125642|129844|10000|10000|||94.24|97.02|0.00|-3.13|125642|129844|10000|10000|||94.24|97.02|0.00|-3.13|000195D1|0|1| +38|2023-10-06T21:13:53.4100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125642|129844|10000|10000|2||94.24|97.02|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:13:53.4100000-07:00|A75|Surging Tempest|27.45|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:13:53.4100000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:13:53.4100000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:13:53.4100000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:13:53.4540000-07:00|40022472|Zeromus|000195CA|30638878||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:53.4990000-07:00|40022472|Zeromus|000195CC|30613855||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:53.4990000-07:00|40022472|Zeromus|000195CD|30611011||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:53.4990000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|4CE80000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30662092|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||97.68|101.45|0.00|-1.10|000195D2|0|1| +39|2023-10-06T21:13:53.5430000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|2.06| +21|2023-10-06T21:13:53.5430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|EFF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30662092|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||106.97|98.35|0.00|2.72|000195D3|0|1| +21|2023-10-06T21:13:53.5430000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30662092|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7400|10000|||97.80|99.85|-0.01|-1.85|000195D4|0|1| +31|2023-10-06T21:13:53.5430000-07:00|10FF0001||||| +37|2023-10-06T21:13:53.5870000-07:00|40022472|Zeromus|000195CE|30607964||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:53.5870000-07:00|10FF0007|Kehabiqo Febiqo|000195CE|125642|129844|10000|10000|2||94.24|97.02|0.00|-3.13|1500|0|0|03|08000499|03|C1700000|||||||||| +37|2023-10-06T21:13:53.5870000-07:00|40022472|Zeromus|000195C8|30607964|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004C5|0|41700000|| +26|2023-10-06T21:13:53.5870000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +21|2023-10-06T21:13:53.5870000-07:00|40022930|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|234A0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30662092|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07|000195D5|0|1| +261|2023-10-06T21:13:53.1470000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:13:53.1470000-07:00|Change|4002293D||||||||| +37|2023-10-06T21:13:53.6310000-07:00|40022472|Zeromus|000195C9|30605409||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:53.7200000-07:00|10FF0008|Kokosaze Lulusaze|81261|90216|10000|10000|||101.25|98.18|0.00|3.06| +39|2023-10-06T21:13:53.7670000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.66|98.65|0.00|3.12| +24|2023-10-06T21:13:53.7670000-07:00|40022472|Zeromus|DoT|0|1FCF|30607964|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|7400|10000|||96.92|99.22|0.00|-1.93| +38|2023-10-06T21:13:53.7670000-07:00|40022472|Zeromus|005A5A00|30597266|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:13:53.4330000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:13:53.8090000-07:00|40022472|Zeromus|000195CF|30588265||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:13:53.8540000-07:00|2CD8|3| +39|2023-10-06T21:13:53.8980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7600|10000|||96.52|98.88|0.00|-2.01| +261|2023-10-06T21:13:53.5240000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:13:53.5240000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:13:53.5240000-07:00|Change|40022941||||||||| +261|2023-10-06T21:13:53.5240000-07:00|Change|4002293F||||||||| +39|2023-10-06T21:13:53.9870000-07:00|10FF0007|Kehabiqo Febiqo|126940|129844|10000|10000|||94.09|93.56|0.00|-3.12| +39|2023-10-06T21:13:53.9870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8800|10000|||97.23|101.24|0.00|-2.60| +39|2023-10-06T21:13:54.0310000-07:00|10FF0009|Zewo Negiwo|81177|81177|9105|10000|||92.02|96.17|0.00|-2.48| +37|2023-10-06T21:13:54.0760000-07:00|40022472|Zeromus|000195D3|30584426||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:54.0760000-07:00|40022472|Zeromus|000195D4|30584145||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:54.0760000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||109.46|97.77|0.00|2.88| +26|2023-10-06T21:13:54.0760000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:13:54.0760000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|24A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30588265|40478540|10000|10000|||100.00|80.10|0.00|0.00|81261|90216|10000|10000|||101.28|97.90|0.00|3.03|000195D6|0|1| +261|2023-10-06T21:13:53.6190000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:13:53.6190000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:13:53.7420000-07:00|Change|40022942||||||||| +37|2023-10-06T21:13:54.1660000-07:00|10FF0007|Kehabiqo Febiqo|000195D1|126940|129844|10000|10000|2||94.07|92.98|0.00|-3.12|1500|0|0|03|08000499|03|41700000|||||||||| +37|2023-10-06T21:13:54.1660000-07:00|40022472|Zeromus|000195D2|30564457||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:54.1660000-07:00|10FF0003|Gegehi Gehi|73814|73814|3950|10000|||101.95|101.76|0.00|-3.13| +26|2023-10-06T21:13:54.1660000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:13:54.1660000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|752003|5EB00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30584145|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||96.56|101.08|0.00|-2.40|000195D7|0|1| +38|2023-10-06T21:13:54.1660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126940|129844|10000|10000|2||94.07|92.98|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:13:54.2090000-07:00|10FF0008|Kokosaze Lulusaze|000195D0|86677||||||101.29|97.86|0.00|-3.07| +37|2023-10-06T21:13:54.2540000-07:00|40022472|Zeromus|000195CB|30561616|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:13:54.2540000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +261|2023-10-06T21:13:53.7420000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:13:54.3430000-07:00|40022472|Zeromus|000195D5|30552582||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:54.0820000-07:00|Change|10FF0008||||||||| +20|2023-10-06T21:13:54.4340000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|101.61|101.72|0.00|-3.13| +23|2023-10-06T21:13:54.4770000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|Cancelled| +38|2023-10-06T21:13:54.5230000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9105|10000|20||92.64|93.29|0.00|3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:54.5230000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:13:54.5230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|86677|90216|10000|10000|11||101.55|95.79|0.00|3.08|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:54.5230000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:13:54.5230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|13||95.11|100.67|0.00|2.93|0|0|0|||||||||||||||| +30|2023-10-06T21:13:54.5230000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:13:54.5230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||109.78|95.19|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:54.5230000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:13:54.5230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7600|10000|13||94.25|95.75|0.00|-2.51|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:13:54.5230000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:13:54.5230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|35||101.61|101.72|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:13:54.5230000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:13:54.5230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||100.72|98.05|0.00|2.91|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:13:54.5230000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:13:54.5680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126940|129844|10000|10000|2||94.46|91.02|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:54.5680000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +21|2023-10-06T21:13:54.6560000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|754003|2FFE0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|30552582|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7600|10000|||93.98|95.18|0.00|-2.58|000195D8|0|1| +37|2023-10-06T21:13:54.7010000-07:00|40022472|Zeromus|000195D6|30543198||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:54.7010000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1B220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30552582|40478540|10000|10000|||100.00|80.10|0.00|0.00|86677|90216|10000|10000|||101.72|95.12|0.00|3.02|000195D9|0|1| +261|2023-10-06T21:13:54.2760000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:13:54.2760000-07:00|Change|4002293B||||||||| +261|2023-10-06T21:13:54.2760000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:13:54.8350000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|890D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30543198|40478540|10000|10000|||100.00|80.10|0.00|0.00|126940|129844|10000|10000|||95.93|89.61|0.00|2.50|000195DA|0|1| +38|2023-10-06T21:13:54.8350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126940|129844|10000|10000|2||95.93|89.61|0.00|2.50|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:13:54.8350000-07:00|499|Inner Release|14.29|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +38|2023-10-06T21:13:54.9230000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9105|10000|20||93.99|90.79|0.00|2.65|0|0|0||||||||||||||||||| +30|2023-10-06T21:13:54.9230000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +261|2023-10-06T21:13:54.4740000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:13:54.4740000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:13:55.0570000-07:00|40022936|Demi-Bahamut|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04| +38|2023-10-06T21:13:55.0570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7200|10000|13||93.58|94.13|0.00|2.72|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:13:55.0570000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:13:55.1010000-07:00|40022472|Zeromus|000195D7|30518958||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:55.1460000-07:00|40022930|Automaton Queen|4078|Arm Punch|40022472|Zeromus|736003|45E80000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30543198|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07|000195DB|0|1| +21|2023-10-06T21:13:55.1460000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|BCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30543198|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||101.70|94.18|-0.02|2.93|000195DC|0|1| +21|2023-10-06T21:13:55.1900000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|750003|3D480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30518958|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||93.83|97.65|0.00|-2.89|000195DD|0|1| +38|2023-10-06T21:13:55.1900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|13||93.83|97.65|0.00|-2.89|0|0|0|||||||||||||||| +30|2023-10-06T21:13:55.1900000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +38|2023-10-06T21:13:55.1900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||109.87|91.33|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:55.1900000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +261|2023-10-06T21:13:54.7030000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:13:55.2360000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|F7E|86677|90216|10000|10000|||102.17|93.73|0.00|-2.99|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7200|10000|||93.73|93.57|0.00|2.73| +21|2023-10-06T21:13:55.2360000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18F30000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|30518958|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||102.06|93.24|0.00|2.73|000195DE|0|1| +38|2023-10-06T21:13:55.2360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||102.17|93.73|0.00|-2.99|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:13:55.2790000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1013|82773|82773|10000|10000|||102.42|92.35|0.00|-2.91|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||102.42|92.35|0.00|-2.91| +38|2023-10-06T21:13:55.2790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||102.42|92.35|0.00|-2.91|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:13:54.8220000-07:00|Change|4002293D||||||||| +38|2023-10-06T21:13:55.3240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4500|10000|35||101.74|100.14|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:13:55.3240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||102.42|92.35|0.00|-2.91|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:13:55.3240000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +261|2023-10-06T21:13:54.8220000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:13:55.4580000-07:00|40022472|Zeromus|000195DA|30483873||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:55.4580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126940|129844|10000|10000|2||99.70|89.19|0.00|2.31|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:55.4580000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +261|2023-10-06T21:13:55.0530000-07:00|Change|40022938||||||||| +37|2023-10-06T21:13:55.5030000-07:00|40022472|Zeromus|000195D9|30476927||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:13:55.5030000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9E3|81809|81809|8800|10000|||93.69|96.11|0.00|2.75|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7200|10000|||94.59|91.50|0.00|2.69| +261|2023-10-06T21:13:55.0530000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:13:55.5040000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|756003|FDCA0000|4|26C08000|0|0|0|0|0|0|0|0|0|0|0|0|30483873|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.25|89.66|0.00|-3.03|000195DF|0|1| +38|2023-10-06T21:13:55.5040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|13||93.69|96.11|0.00|2.75|0|0|0|||||||||||||||| +38|2023-10-06T21:13:55.5040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|8||109.25|89.66|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:13:55.5040000-07:00|558|Requiescat|26.97|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:13:55.5040000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:13:55.5040000-07:00|10FF0001||||| +21|2023-10-06T21:13:55.5470000-07:00|40022936|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|15CA0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|30483873|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04|000195E0|0|1| +21|2023-10-06T21:13:55.5470000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|39290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30483873|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.35|91.80|0.00|2.75|000195E1|0|1| +21|2023-10-06T21:13:55.5470000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30483873|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.35|91.80|0.00|2.75|000195E2|0|1| +38|2023-10-06T21:13:55.5470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||103.35|91.80|0.00|2.75|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:55.5470000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +261|2023-10-06T21:13:55.1520000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:55.1520000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:13:55.5910000-07:00|40022472|Zeromus|000195D8|30464641||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:13:55.5910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||103.85|91.25|0.00|-2.66|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:55.5910000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:13:55.6350000-07:00|40022472|Zeromus|000195DE|30458254||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:55.1520000-07:00|Change|4002293F||||||||| +261|2023-10-06T21:13:55.2420000-07:00|Change|40022941||||||||| +37|2023-10-06T21:13:55.6800000-07:00|40022472|Zeromus|000195DC|30455232||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:13:55.6800000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:13:55.6800000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|12630000|104|6DE8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|30476927|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7200|10000|||95.14|91.00|0.00|2.58|000195E3|0|1| +21|2023-10-06T21:13:55.6800000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30476927|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4500|10000|||102.15|98.01|0.00|3.08|000195E4|0|1| +38|2023-10-06T21:13:55.7240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|13||93.97|95.05|0.00|2.73|0|0|0|||||||||||||||| +30|2023-10-06T21:13:55.7240000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +261|2023-10-06T21:13:55.2420000-07:00|Change|10FF0001||||||||||| +38|2023-10-06T21:13:55.7690000-07:00|40022930|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.67|102.34|0.00|-3.07|0|0|0|||||||||| +26|2023-10-06T21:13:55.7690000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022930|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:13:55.3330000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:13:55.8130000-07:00|40022930|Automaton Queen|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07| +21|2023-10-06T21:13:55.8130000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|93B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30455232|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||108.45|88.71|0.00|-3.02|000195E5|0|1| +31|2023-10-06T21:13:55.8130000-07:00|10FF0001||||| +21|2023-10-06T21:13:55.8570000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30455232|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||94.29|94.21|0.00|2.71|000195E6|0|1| +261|2023-10-06T21:13:55.3330000-07:00|Change|40022942||||||||| +37|2023-10-06T21:13:55.9020000-07:00|40022472|Zeromus|000195DB|30437336||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:55.9920000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|756003|98A40000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30437336|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||94.63|93.31|0.00|2.68|000195E7|0|1| +261|2023-10-06T21:13:55.5260000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:13:55.5260000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:13:55.6250000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:13:56.1260000-07:00|40022472|Zeromus|000195DD|30421648||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:56.1260000-07:00|40022472|Zeromus|000195DF|30356678||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:56.1710000-07:00|40022472|Zeromus|000195E1|30342045||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:56.2150000-07:00|40022472|Zeromus|000195E4|30342044||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:56.2150000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||105.89|87.74|0.00|2.90|90216|90216|10000|10000|||105.89|87.74|0.00|2.90|000195E8|0|1| +38|2023-10-06T21:13:56.2150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||105.89|87.74|0.00|2.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:56.2150000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:13:55.7450000-07:00|Change|4002293A||||||||| +261|2023-10-06T21:13:55.8600000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:13:56.3040000-07:00|40022472|Zeromus|000195E2|30338049||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:56.3040000-07:00|10FF0008|Kokosaze Lulusaze|000195E2|90216|90216|10000|10000|11||105.89|87.74|0.00|2.90|1F00|0|0|01|02000353|0|C0A00000|| +37|2023-10-06T21:13:56.3480000-07:00|40022472|Zeromus|000195E5|30335686||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:55.8600000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:13:55.8600000-07:00|Change|4002293B||||||||| +37|2023-10-06T21:13:56.3920000-07:00|40022472|Zeromus|000195E6|30335525||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:56.4370000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|141A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30335686|40478540|10000|10000|||100.00|80.10|0.00|0.00|126940|129844|10000|10000|||104.85|87.18|0.00|2.37|000195E9|0|1| +21|2023-10-06T21:13:56.4370000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|714003|18960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30335686|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||105.93|87.15|0.00|-2.44|000195EA|0|1| +261|2023-10-06T21:13:55.9700000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:13:56.5260000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|3.01| +37|2023-10-06T21:13:56.5710000-07:00|40022472|Zeromus|000195E0|30329947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:56.6150000-07:00|40022472|Zeromus|000195E7|30290871||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:56.1900000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:13:56.6600000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15580000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|126940|129844|10000|10000|||105.50|85.45|0.00|2.70|73956|77430|10000|10000|||97.89|95.75|0.00|3.01|000195EB|0|1| +38|2023-10-06T21:13:56.6600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|13||98.77|90.38|0.00|2.29|0|0|0|||||||||||||||| +26|2023-10-06T21:13:56.6600000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:13:56.6600000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|756003|47F30000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|30290871|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||98.77|90.38|0.00|2.29|000195EC|0|1| +38|2023-10-06T21:13:56.6600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|13||98.77|90.38|0.00|2.29|0|0|0|||||||||||||||| +26|2023-10-06T21:13:56.6600000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:13:56.7060000-07:00|40022472|Zeromus|000195E3|30286164||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:56.7060000-07:00|40022930|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|730003|6B060000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|30290871|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07|000195ED|0|1| +39|2023-10-06T21:13:56.7060000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||105.78|85.06|0.00|3.07| +21|2023-10-06T21:13:56.7060000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30290871|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7200|10000|||101.56|89.20|0.00|2.20|000195EE|0|1| +261|2023-10-06T21:13:56.2920000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:13:56.7490000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||105.41|84.37|0.00|2.86| +24|2023-10-06T21:13:56.7490000-07:00|40022472|Zeromus|DoT|0|180B|30290871|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|7200|10000|||101.56|89.20|0.00|2.20| +38|2023-10-06T21:13:56.7490000-07:00|40022472|Zeromus|005A5A00|30280009|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:13:56.7940000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19714003|3B6A0000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|30280009|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||105.47|84.13|0.00|2.87|000195EF|0|1| +38|2023-10-06T21:13:56.7940000-07:00|40022472|Zeromus|005A5A00|30280009|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:13:56.7940000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:13:56.7940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||105.47|84.13|0.00|2.87|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:13:56.7940000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:13:56.3970000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:13:56.8380000-07:00|10FF0008|Kokosaze Lulusaze|000195E8|90216|90216|10000|10000|11||105.86|84.68|0.00|3.11|1F00|0|0|01|02000353|0|40A00000|| +36|2023-10-06T21:13:56.8380000-07:00|2DB4|3| +38|2023-10-06T21:13:56.8380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||105.86|84.68|0.00|3.11|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:13:56.8820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7400|10000|||102.13|88.69|0.00|2.26| +261|2023-10-06T21:13:56.4900000-07:00|Change|4002293D||||||||| +37|2023-10-06T21:13:56.9730000-07:00|40022472|Zeromus|000195E9|30274863|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +39|2023-10-06T21:13:56.9730000-07:00|10FF0007|Kehabiqo Febiqo|128238|129844|10000|10000|||105.66|84.36|0.00|2.82| +39|2023-10-06T21:13:56.9730000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8700|10000|||100.06|89.56|0.00|3.10| +37|2023-10-06T21:13:57.0170000-07:00|40022472|Zeromus|000195EA|30268569|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +39|2023-10-06T21:13:57.0170000-07:00|10FF0009|Zewo Negiwo|81177|81177|9326|10000|||105.55|85.37|-0.02|2.48| +21|2023-10-06T21:13:57.0170000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|726003|E55F0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|30274863|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.02|84.01|0.00|-3.11|000195F0|0|1| +38|2023-10-06T21:13:57.0170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||106.02|84.01|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:13:57.0170000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:13:56.4900000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:13:57.0600000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||105.93|87.06|0.00|-3.13| +20|2023-10-06T21:13:57.0600000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|105.55|85.37|-0.02|2.48| +261|2023-10-06T21:13:56.6090000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:56.6090000-07:00|Change|4002293C||||||||| +261|2023-10-06T21:13:56.7220000-07:00|Change|40022938||||||||| +39|2023-10-06T21:13:57.1500000-07:00|10FF0003|Gegehi Gehi|73814|73814|4700|10000|||106.31|90.63|0.00|2.27| +37|2023-10-06T21:13:57.2380000-07:00|40022472|Zeromus|000195EE|30268307|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T21:13:57.2830000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|8CDF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30268569|40478540|10000|10000|||100.00|80.10|0.00|0.00|128238|129844|10000|10000|||105.69|83.91|0.00|2.90|000195F1|0|1| +38|2023-10-06T21:13:57.2830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128238|129844|10000|10000|2||105.69|83.91|0.00|2.90|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:13:57.2830000-07:00|499|Inner Release|11.84|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T21:13:56.8410000-07:00|Change|4002293F||||||||| +261|2023-10-06T21:13:56.8410000-07:00|Change|10FF0009||||||||||||||||||||||| +38|2023-10-06T21:13:57.3270000-07:00|40022936|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||102.01|99.78|0.00|-3.04|0|0|0|||||||||| +26|2023-10-06T21:13:57.3270000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022936|Demi-Bahamut|01|69928|40478540| +21|2023-10-06T21:13:57.3270000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40022472|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|30268307|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||102.49|88.26|0.00|2.24|000195F2|0|1| +21|2023-10-06T21:13:57.3270000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30268307|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||105.55|83.85|-0.02|-2.16|000195F3|0|1| +261|2023-10-06T21:13:56.9570000-07:00|Change|40022941||||||||| +21|2023-10-06T21:13:57.4160000-07:00|40022936|Demi-Bahamut|1D19|Akh Morn|40022472|Zeromus|756003|76DD4001|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|30268307|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04|000195F4|0|1| +37|2023-10-06T21:13:57.4610000-07:00|10FF0007|Kehabiqo Febiqo|000195EB|129844||||||105.70|83.85|-0.02|-2.15| +21|2023-10-06T21:13:57.5060000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|000195F5|0|1| +38|2023-10-06T21:13:57.5060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||105.55|83.85|0.00|-2.16|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:13:57.5060000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +261|2023-10-06T21:13:57.0730000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:13:57.0730000-07:00|Change|40022942||||||||| +37|2023-10-06T21:13:57.5950000-07:00|40022472|Zeromus|000195EF|30253097|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|41700000|| +38|2023-10-06T21:13:57.5950000-07:00|40022472|Zeromus|005A5A00|30253097|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:13:57.1680000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:13:57.6830000-07:00|40022472|Zeromus|000195EC|30234678||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:57.6830000-07:00|10FF0006|Wowobora Gogobora|000195EC|81809|81809|8700|10000|13||104.51|87.67|0.00|2.91|1B00|0|0|01|01000A8D|0|42700000|| +21|2023-10-06T21:13:57.6840000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12|000195F6|0|1| +20|2023-10-06T21:13:57.6840000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|105.17|84.21|0.00|2.61| +38|2023-10-06T21:13:57.6840000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||106.07|83.82|0.00|-2.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:13:57.6840000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +38|2023-10-06T21:13:57.6840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|13||104.51|87.67|0.00|2.91|0|0|0|||||||||||||||| +37|2023-10-06T21:13:57.8620000-07:00|40022472|Zeromus|000195F3|30231568||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:57.3510000-07:00|Change|4002293E||||||||| +37|2023-10-06T21:13:57.9070000-07:00|40022472|Zeromus|000195F1|30195505||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:57.4440000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:13:57.4440000-07:00|Change|4002293A||||||||| +37|2023-10-06T21:13:57.9960000-07:00|40022472|Zeromus|000195ED|30168107||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:57.9960000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|344E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|30195505|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9326|10000|||105.85|84.67|0.00|-2.23|000195F7|0|1| +21|2023-10-06T21:13:57.9960000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|750003|64190000|4|24F48000|0|0|0|0|0|0|0|0|0|0|0|0|30195505|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||105.71|83.67|0.00|-2.13|000195F8|0|1| +21|2023-10-06T21:13:57.9960000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|000195F9|0|1| +38|2023-10-06T21:13:57.9960000-07:00|40022930|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.67|102.34|0.00|-3.07|0|0|0||||||| +30|2023-10-06T21:13:57.9960000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022930|Automaton Queen|01|85668|40478540| +38|2023-10-06T21:13:57.9960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|8||105.71|83.67|0.00|-2.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:13:57.9960000-07:00|558|Requiescat|24.48|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:13:57.9960000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||105.55|83.85|0.00|-2.16|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:13:57.9960000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +31|2023-10-06T21:13:57.9960000-07:00|10FF0001||||| +261|2023-10-06T21:13:57.5380000-07:00|Change|4002293B||||||||| +37|2023-10-06T21:13:58.0410000-07:00|40022472|Zeromus|000195F0|30109388||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:58.0840000-07:00|40022936|Demi-Bahamut|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04| +21|2023-10-06T21:13:58.0840000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|E560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30168107|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||105.71|83.67|0.00|-2.13|000195FA|0|1| +31|2023-10-06T21:13:58.0840000-07:00|10FF0001||||| +261|2023-10-06T21:13:57.6350000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:13:58.2200000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|712003|1D030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30109388|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.13|83.60|0.00|3.00|000195FB|0|1| +21|2023-10-06T21:13:58.2200000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30109388|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12|000195FC|0|1| +37|2023-10-06T21:13:58.3090000-07:00|40022472|Zeromus|000195F4|30013423||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:58.3090000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40022472|Zeromus|6C20E|35D0000|72000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|30109388|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12|000195FD|0|1| +38|2023-10-06T21:13:58.3090000-07:00|40022936|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||102.01|99.78|0.00|-3.04|0|0|0||||||| +30|2023-10-06T21:13:58.3090000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022936|Demi-Bahamut|01|69928|40478540| +38|2023-10-06T21:13:58.3090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5250|10000|35||112.23|87.55|-0.02|2.27|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:13:57.8620000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:13:58.4850000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|60470000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30013423|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||105.50|84.21|0.00|-2.90|000195FE|0|1| +21|2023-10-06T21:13:58.5300000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|256003|AD144001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30013423|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|000195FF|0|1| +38|2023-10-06T21:13:58.5300000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||105.55|83.85|0.00|-2.16|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:13:58.5300000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +30|2023-10-06T21:13:58.5300000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:13:58.0930000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:13:58.6190000-07:00|40022472|Zeromus|000195F8|29987798||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:58.6190000-07:00|40022472|Zeromus|000195FA|29984128||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:58.6190000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|57F40000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|29984128|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7400|10000|||106.03|83.57|0.00|-2.09|00019600|0|1| +261|2023-10-06T21:13:58.1880000-07:00|Change|4002293D||||||||| +21|2023-10-06T21:13:58.6630000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|13DA0000|77160E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|29984128|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||105.71|83.67|0.00|-2.13|00019601|0|1| +261|2023-10-06T21:13:58.1880000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:13:58.1880000-07:00|Change|40022940||||||||| +38|2023-10-06T21:13:58.7070000-07:00|40022930|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.67|102.34|0.00|-3.07|0|0|0|||||||||| +26|2023-10-06T21:13:58.7070000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022930|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:13:58.7530000-07:00|40022930|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|734003|8F9A0000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|29984128|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07|00019602|0|1| +261|2023-10-06T21:13:58.2780000-07:00|Change|4002293C||||||||| +39|2023-10-06T21:13:58.7970000-07:00|40022930|Automaton Queen|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07| +261|2023-10-06T21:13:58.2780000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:13:58.2780000-07:00|Change|40022938||||||||| +37|2023-10-06T21:13:58.8860000-07:00|40022472|Zeromus|000195FB|29976701||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:58.9750000-07:00|40022472|Zeromus|000195FC|29972786||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:58.9750000-07:00|40022472|Zeromus|000195FD|29972786|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|0|41200000|| +26|2023-10-06T21:13:58.9750000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|90216| +37|2023-10-06T21:13:58.9750000-07:00|10FF0008|Kokosaze Lulusaze|000195FD|90216|90216|10000|10000|11||106.07|83.82|0.00|-2.12|1F00|0|0|01|0300079A|0|41200000|| +26|2023-10-06T21:13:58.9750000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:13:58.4690000-07:00|Change|4002293F||||||||| +21|2023-10-06T21:13:59.0190000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|14E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29976701|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||104.39|82.43|0.00|-2.83|00019603|0|1| +261|2023-10-06T21:13:58.4690000-07:00|Change|40022941||||||||| +37|2023-10-06T21:13:59.1090000-07:00|40022472|Zeromus|000195FE|29948139||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:59.1090000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40022472|Zeromus|756003|AE000000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|29972786|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||104.39|82.29|0.00|-3.08|00019604|0|1| +37|2023-10-06T21:13:59.1540000-07:00|40022472|Zeromus|000195FF|29838295||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:13:59.1540000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:13:59.1540000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|752003|1DE10000|104|B2A8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|29972786|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7000|10000|||106.03|83.57|0.00|-2.09|00019605|0|1| +21|2023-10-06T21:13:59.1540000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29972786|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5250|10000|||114.67|83.68|0.00|2.73|00019606|0|1| +20|2023-10-06T21:13:59.1980000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|114.66|83.09|-0.02|-2.94| +261|2023-10-06T21:13:58.6970000-07:00|Change|40022942||||||||| +37|2023-10-06T21:13:59.2880000-07:00|40022472|Zeromus|000195F7|29824905||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:59.3320000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|714003|4AA60000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|29824905|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||105.71|83.67|0.00|-2.13|00019607|0|1| +21|2023-10-06T21:13:59.3770000-07:00|40022472|Zeromus|8B43|Visceral Whirl|40022472|Zeromus|1B|8B438000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29824905|40478540|10000|10000|||100.00|80.10|0.00|0.00|29824905|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019608|0|1| +261|2023-10-06T21:13:58.9270000-07:00|Change|40022472||||| +37|2023-10-06T21:13:59.4210000-07:00|40022472|Zeromus|00019600|29802389||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:13:59.4660000-07:00|40022936|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|756003|2B950000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|29824905|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04|00019609|0|1| +20|2023-10-06T21:13:59.4660000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|105.85|84.67|0.00|-2.23| +261|2023-10-06T21:13:59.0390000-07:00|Change|10FF0009||||||||||||| +39|2023-10-06T21:13:59.5110000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|3.01| +21|2023-10-06T21:13:59.5110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29802389|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|0001960A|0|1| +37|2023-10-06T21:13:59.5550000-07:00|40022472|Zeromus|00019603|29802055||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:13:59.5550000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:13:59.5550000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2BCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29802389|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12|0001960B|0|1| +261|2023-10-06T21:13:59.1310000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:13:59.1310000-07:00|Change|4002293E||||||||| +261|2023-10-06T21:13:59.1310000-07:00|Change|4002293A||||||||| +37|2023-10-06T21:13:59.6880000-07:00|40022472|Zeromus|00019601|29796973|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|060000F8|0|41700000|| +26|2023-10-06T21:13:59.6880000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:13:59.6880000-07:00|40022472|Zeromus|00019607|29777863||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:13:59.6880000-07:00|10FF0001|Sesuga Sapisuga|00019607|129071|129071|8700|10000|8||105.49|83.43|0.00|-2.37|1300|0|0|0| +37|2023-10-06T21:13:59.6880000-07:00|40022472|Zeromus|00019606|29777862||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:13:59.2300000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:13:59.2300000-07:00|Change|4002293B||||||||| +39|2023-10-06T21:13:59.7340000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12| +21|2023-10-06T21:13:59.7340000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|8BF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29777862|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.13|83.60|-0.02|-2.09|0001960C|0|1| +26|2023-10-06T21:13:59.7340000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:13:59.7340000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|754003|4C960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29777862|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||104.39|82.20|0.00|-2.02|0001960D|0|1| +38|2023-10-06T21:13:59.7340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|2||106.13|83.60|-0.02|-2.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:13:59.7340000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +39|2023-10-06T21:13:59.7780000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16| +24|2023-10-06T21:13:59.7780000-07:00|40022472|Zeromus|DoT|0|25C7|29777862|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8700|10000|||105.06|83.01|0.00|-2.32| +38|2023-10-06T21:13:59.7780000-07:00|40022472|Zeromus|005A5A00|29768191|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:13:59.8220000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|15010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29777862|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.13|83.60|-0.02|-2.09|0001960E|0|1| +261|2023-10-06T21:13:59.3200000-07:00|Change|10FF0003||||||||||||||||||||| +36|2023-10-06T21:13:59.8670000-07:00|2E90|3| +37|2023-10-06T21:13:59.9120000-07:00|40022472|Zeromus|00019604|29723647||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:13:59.9120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7200|10000|||106.22|83.38|0.00|2.68| +39|2023-10-06T21:14:00.0010000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||106.13|83.60|-0.02|-2.09| +39|2023-10-06T21:14:00.0010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8600|10000|||104.39|82.20|0.00|-2.02| +261|2023-10-06T21:13:59.5140000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:14:00.0460000-07:00|40022472|Zeromus|0001960A|29721133||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:00.0460000-07:00|10FF0009|Zewo Negiwo|81177|81177|9147|10000|||105.85|84.67|0.00|-2.23| +20|2023-10-06T21:14:00.0460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|106.40|83.18|0.00|2.33| +39|2023-10-06T21:14:00.0890000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8900|10000|||104.14|82.27|0.00|-2.20| +37|2023-10-06T21:14:00.1800000-07:00|40022472|Zeromus|0001960B|29709919|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|01|410CBC6D|| +26|2023-10-06T21:14:00.1800000-07:00|35D|Wildfire|8.80|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|01|40478540|90216| +37|2023-10-06T21:14:00.1800000-07:00|40022472|Zeromus|00019605|29702270||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:00.1800000-07:00|10FF0003|Gegehi Gehi|73814|73814|5450|10000|||114.52|82.75|0.00|-1.75| +21|2023-10-06T21:14:00.1800000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29723647|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12|0001960F|0|1| +21|2023-10-06T21:14:00.1800000-07:00|4002248F|Zeromus|8B44|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|00019610|0|0| +21|2023-10-06T21:14:00.1800000-07:00|40022490|Zeromus|8B45|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|00019611|0|0| +21|2023-10-06T21:14:00.1800000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|00019612|0|1| +38|2023-10-06T21:14:00.1800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||105.55|83.85|0.00|-2.16|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:00.1800000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:13:59.7440000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:13:59.7440000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:13:59.8600000-07:00|Change|4002293D||||||||| +37|2023-10-06T21:14:00.3590000-07:00|40022472|Zeromus|0001960C|29666442||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:00.3590000-07:00|40022472|Zeromus|0001960E|29661065||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:00.3590000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|35EE0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||106.13|83.60|-0.02|-2.09|29702270|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019613|0|1| +21|2023-10-06T21:14:00.3590000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|E7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29702270|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||104.14|82.27|0.00|-2.05|00019614|0|1| +31|2023-10-06T21:14:00.3590000-07:00|10FF0001||||| +261|2023-10-06T21:13:59.8600000-07:00|Change|40022940||||||||| +261|2023-10-06T21:13:59.9790000-07:00|Change|4002293C||||||||| +261|2023-10-06T21:13:59.9790000-07:00|Change|10FF0009||||| +261|2023-10-06T21:14:00.0960000-07:00|Change|40022938||||||||| +21|2023-10-06T21:14:00.4030000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|36EE0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|29661065|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9147|10000|||105.85|84.67|0.00|-2.23|00019615|0|1| +261|2023-10-06T21:14:00.0960000-07:00|Change|4002248D||||||||||||||||||| +37|2023-10-06T21:14:00.4910000-07:00|40022472|Zeromus|00019609|29649908||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:00.4910000-07:00|40022489|Zeromus|8B49|Miasmic Blast|40022489|Zeromus|7.700|110.00|115.00|0.00|-2.79| +261|2023-10-06T21:14:00.0960000-07:00|Change|4002248A||||||||||||||||||| +261|2023-10-06T21:14:00.0960000-07:00|Change|4002248C||||||||||||||||||| +20|2023-10-06T21:14:00.4910000-07:00|4002248A|Zeromus|8CF8|unknown_8cf8|4002248A|Zeromus|7.700|110.00|115.00|0.00|3.14| +20|2023-10-06T21:14:00.4910000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|4002248B|Zeromus|7.700|110.00|115.00|0.00|1.57| +20|2023-10-06T21:14:00.4910000-07:00|4002248C|Zeromus|8CF8|unknown_8cf8|4002248C|Zeromus|7.700|110.00|115.00|0.00|-1.57| +261|2023-10-06T21:14:00.0960000-07:00|Change|4002248E||||||||||||||||||| +20|2023-10-06T21:14:00.4910000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|4002248D|Zeromus|7.700|110.00|115.00|0.00|0.00| +20|2023-10-06T21:14:00.4910000-07:00|4002248E|Zeromus|8CF8|unknown_8cf8|4002248E|Zeromus|7.700|90.00|85.00|0.00|0.00| +261|2023-10-06T21:14:00.0960000-07:00|Change|40022489||||||||||||||||||| +21|2023-10-06T21:14:00.4920000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|750003|6CBB0000|4|26368000|0|0|0|0|0|0|0|0|0|0|0|0|29661065|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||104.14|82.27|0.00|-2.05|00019616|0|1| +38|2023-10-06T21:14:00.4920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|8||104.14|82.27|0.00|-2.05|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:00.4920000-07:00|558|Requiescat|21.98|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:14:00.0960000-07:00|Change|4002248B||||||||||||||||||||| +31|2023-10-06T21:14:00.4920000-07:00|10FF0001||||| +261|2023-10-06T21:14:00.0960000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:14:00.6250000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|24740000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|29649908|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5450|10000|||114.52|82.75|0.00|-1.75|00019617|0|1| +38|2023-10-06T21:14:00.6250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5250|10000|35||114.52|82.75|0.00|-1.75|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:00.6250000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:14:00.6250000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:14:00.6690000-07:00|40022472|Zeromus|0001960D|29630302||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:00.1940000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:00.1940000-07:00|Change|4002293F||||||||| +261|2023-10-06T21:14:00.2920000-07:00|Change|40022941||||||||| +37|2023-10-06T21:14:00.7160000-07:00|40022472|Zeromus|00019602|29593540||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:00.7160000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|82773|82773|10000|10000|||105.55|83.85|0.00|-2.16|00019618|0|1| +38|2023-10-06T21:14:00.7160000-07:00|40022930|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.67|102.34|0.00|-3.07|0|0|0||||||| +30|2023-10-06T21:14:00.7160000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022930|Automaton Queen|01|85668|40478540| +38|2023-10-06T21:14:00.7160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||105.55|83.85|0.00|-2.16|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:00.7160000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:14:00.8030000-07:00|40022472|Zeromus|0001960F|29588219||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:00.3870000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T21:14:00.4790000-07:00|Change|40022942||||||||| +37|2023-10-06T21:14:00.8920000-07:00|40022472|Zeromus|00019614|29584513||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:00.8920000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|149F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29588219|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12|00019619|0|1| +21|2023-10-06T21:14:00.9360000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||106.13|83.60|-0.02|-2.09|129844|129844|10000|10000|||106.13|83.60|-0.02|-2.09|0001961A|0|1| +21|2023-10-06T21:14:00.9360000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|4FAE0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|29588219|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||104.39|82.20|0.00|-2.02|0001961B|0|1| +38|2023-10-06T21:14:00.9360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|2||106.13|83.60|-0.02|-2.09|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:00.9360000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:14:00.9810000-07:00|10FF0009|Zewo Negiwo|88|Presence of Mind|10FF0009|Zewo Negiwo|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|8747|10000|||105.85|84.67|0.00|-2.23|81177|81177|8747|10000|||105.85|84.67|0.00|-2.23|0001961C|0|1| +21|2023-10-06T21:14:00.9810000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|40890000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|29588219|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7200|10000|||106.43|83.15|0.00|-2.01|0001961D|0|1| +261|2023-10-06T21:14:00.4790000-07:00|Change|10FF0006||| +26|2023-10-06T21:14:01.0290000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:14:01.0290000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|3D7F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29584513|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.07|83.82|0.00|-2.12|0001961E|0|1| +39|2023-10-06T21:14:01.0730000-07:00|40022936|Demi-Bahamut|66800|69928|10000|10000|||102.01|99.78|0.00|-3.04| +38|2023-10-06T21:14:01.0730000-07:00|40022936|Demi-Bahamut|005A5A00|0|69928|0|10000|0||102.01|99.78|0.00|-3.04|0|0|0|||| +30|2023-10-06T21:14:01.0730000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022936|Demi-Bahamut|00|69928|81809| +261|2023-10-06T21:14:00.5710000-07:00|Change|40022936||||||||||| +38|2023-10-06T21:14:01.1170000-07:00|4002299C||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:14:01.1170000-07:00|4002299C||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:14:01.1610000-07:00|10FF0007|Kehabiqo Febiqo|00019613|116038|129844|10000|10000|0||106.13|83.60|-0.02|-2.09|1500|0|0|02|01000769|0|C1F00000|||||| +261|2023-10-06T21:14:00.6870000-07:00|Add|4002299C||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:01.1610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116038|129844|10000|10000|0||106.13|83.60|-0.02|-2.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:01.1610000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +261|2023-10-06T21:14:00.6870000-07:00|Remove|4002299C| +03|2023-10-06T21:14:00.6870000-07:00|4002299C|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||102.83|81.47|0.00|1.12| +261|2023-10-06T21:14:00.6870000-07:00|Add|4002299C||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:00.6870000-07:00|Change|4002299C||| +21|2023-10-06T21:14:01.2500000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|712003|204E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29584513|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||104.14|82.27|0.00|-2.05|0001961F|0|1| +21|2023-10-06T21:14:01.2500000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|556003|B0840000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|29584513|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||104.89|83.77|0.00|-1.95|00019620|0|1| +38|2023-10-06T21:14:01.2500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||104.89|83.77|0.00|-1.95|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:01.2500000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:14:01.2500000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +38|2023-10-06T21:14:01.2940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5800|10000|35||113.91|82.58|0.00|-1.76|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:14:00.8070000-07:00|Change|4002293E||||||||| +261|2023-10-06T21:14:00.9230000-07:00|Change|4002293A||||||||| +37|2023-10-06T21:14:01.3840000-07:00|40022472|Zeromus|00019616|29556678||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:01.4280000-07:00|40022472|Zeromus|00019617|29547346||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:00.9230000-07:00|Change|4002293B||||||||| +261|2023-10-06T21:14:01.0370000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:14:01.4730000-07:00|10FF0007|Kehabiqo Febiqo|0001961A|116038|129844|10000|10000|0||105.63|83.87|0.00|-1.45|1500|0|0|01|01000769|0|41F00000|| +38|2023-10-06T21:14:01.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116038|129844|10000|10000|0||105.63|83.87|0.00|-1.45|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:01.5180000-07:00|10FF0009|Zewo Negiwo|0001961C|81177|81177|8747|10000|20||105.85|84.67|0.00|-2.23|1800|0|0|01|0300009D|0|41700000|| +26|2023-10-06T21:14:01.5180000-07:00|9D|Presence of Mind|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:14:01.5180000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21BF0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|116038|129844|10000|10000|||105.63|83.87|0.00|-1.45|73956|77430|10000|10000|||97.89|95.75|0.00|3.01|00019621|0|1| +38|2023-10-06T21:14:01.5180000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8747|10000|20||105.85|84.67|0.00|-2.23|0|0|0||||||||||||||||||| +37|2023-10-06T21:14:01.5620000-07:00|40022472|Zeromus|0001961B|29526948||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:01.6070000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|750003|3A4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29547346|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8300|10000|||102.88|82.32|0.00|-1.68|00019622|0|1| +21|2023-10-06T21:14:01.6070000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|126C0000|104|6E28000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|29547346|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|6800|10000|||106.43|83.15|-0.02|-1.98|00019623|0|1| +38|2023-10-06T21:14:01.6070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|13||102.88|82.32|0.00|-1.68|0|0|0|||||||||||||||| +30|2023-10-06T21:14:01.6070000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +38|2023-10-06T21:14:01.6070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|6800|10000|13||106.43|83.15|-0.02|-1.98|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:01.6070000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +261|2023-10-06T21:14:01.1580000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:14:01.6530000-07:00|40022472|Zeromus|00019619|29521669||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:01.6530000-07:00|40022472|Zeromus|0001961E|29505926|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|02|40EA666B|| +26|2023-10-06T21:14:01.6530000-07:00|35D|Wildfire|7.33|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|02|40478540|90216| +21|2023-10-06T21:14:01.6530000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|164D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29547346|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.15|83.94|0.00|-1.81|00019624|0|1| +21|2023-10-06T21:14:01.6530000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|2B720000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|29547346|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5800|10000|||111.69|81.99|-0.02|-1.80|00019625|0|1| +38|2023-10-06T21:14:01.6530000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|35||111.69|81.99|-0.02|-1.80|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:01.6530000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:14:01.6530000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:14:01.6970000-07:00|40022472|Zeromus|00019615|29491864||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:01.6970000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29505926|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||101.67|83.83|0.00|-2.22|00019626|0|1| +261|2023-10-06T21:14:01.2530000-07:00|Change|40022942||||| +37|2023-10-06T21:14:01.7850000-07:00|40022472|Zeromus|0001961D|29475343||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:01.7850000-07:00|40022930|Automaton Queen|82193|85668|10000|10000|||101.67|102.34|0.00|-3.07| +21|2023-10-06T21:14:01.7850000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29505926|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|6800|10000|||106.42|83.15|0.00|-2.01|00019627|0|1| +37|2023-10-06T21:14:01.8300000-07:00|40022472|Zeromus|0001961F|29467073||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:01.3520000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:14:01.9660000-07:00|40022472|Zeromus|00019620|29421885||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:01.9660000-07:00|10FF000A|Dukaro Nezikaro|00019620|82773|82773|10000|10000|20||100.57|84.38|0.00|-2.04|1E00|0|0|01|04000A82|01|41F00000|| +38|2023-10-06T21:14:01.9660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||100.57|84.38|0.00|-2.04|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:14:01.4560000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:14:01.5710000-07:00|Change|4002293D||||||||| +261|2023-10-06T21:14:01.5710000-07:00|Change|40022940||||||||| +261|2023-10-06T21:14:01.6820000-07:00|Change|4002293C||||||||| +261|2023-10-06T21:14:01.6820000-07:00|Change|4002299C||| +21|2023-10-06T21:14:02.1410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|1000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29421885|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8300|10000|||100.86|82.68|0.00|-2.16|00019628|0|1| +34|2023-10-06T21:14:02.1410000-07:00|4002299C|Carbuncle|4002299C|Carbuncle|01| +261|2023-10-06T21:14:01.6820000-07:00|Change|40022938||||||||| +261|2023-10-06T21:14:01.6820000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:14:02.2300000-07:00|40022472|Zeromus|00019626|29418796||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:02.2300000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|C0000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29421885|40478540|10000|10000|||100.00|80.10|0.00|0.00|116038|129844|10000|10000|||102.99|87.12|-0.02|-1.09|00019629|0|1| +38|2023-10-06T21:14:02.2300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116038|129844|10000|10000|0||102.99|87.12|-0.02|-1.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:02.2300000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:14:01.7960000-07:00|Change|40022940||||| +22|2023-10-06T21:14:02.2740000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|17D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29421885|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||98.62|85.30|-0.02|-1.91|0001962A|0|3| +22|2023-10-06T21:14:02.2740000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|716003|27F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29421885|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||98.62|85.30|-0.02|-1.91|0001962A|1|3| +22|2023-10-06T21:14:02.2740000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|710003|140B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29421885|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||98.62|85.30|-0.02|-1.91|0001962A|2|3| +37|2023-10-06T21:14:02.3190000-07:00|10FF0007|Kehabiqo Febiqo|00019621|124677||||||102.99|87.12|-0.02|-1.09| +37|2023-10-06T21:14:02.3200000-07:00|40022472|Zeromus|00019627|29418623||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:01.9150000-07:00|Change|4002293F||||||||| +37|2023-10-06T21:14:02.4080000-07:00|40022472|Zeromus|00019625|29407501||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:02.4080000-07:00|10FF0003|Gegehi Gehi|00019625|73814|73814|5500|10000|35||107.11|82.93|0.00|-1.48|2300|0|0|01|070004D3|0|41F00000|| +38|2023-10-06T21:14:02.4080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|35||107.11|82.93|0.00|-1.48|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:14:01.9150000-07:00|Change|40022941||||||||| +37|2023-10-06T21:14:02.4530000-07:00|40022472|Zeromus|00019624|29401792||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:14:02.4530000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|0001962B|0|8| +22|2023-10-06T21:14:02.4530000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|6800|10000|||102.92|85.10|0.00|-1.15|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|0001962B|1|8| +22|2023-10-06T21:14:02.4530000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7900|10000|||100.74|83.58|0.00|-0.98|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|0001962B|2|8| +22|2023-10-06T21:14:02.4530000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0009|Zewo Negiwo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|8747|10000|||102.32|86.32|0.00|-1.26|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|0001962B|3|8| +22|2023-10-06T21:14:02.4530000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8300|10000|||100.51|82.19|0.00|-2.56|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|0001962B|4|8| +22|2023-10-06T21:14:02.4530000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|124677|129844|10000|10000|||102.90|87.16|0.00|-2.82|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|0001962B|5|8| +22|2023-10-06T21:14:02.4530000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.38|85.37|0.00|-1.38|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|0001962B|6|8| +22|2023-10-06T21:14:02.4530000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.35|84.95|0.00|2.74|73814|73814|5500|10000|||106.49|83.02|0.00|-1.46|0001962B|7|8| +261|2023-10-06T21:14:02.0360000-07:00|Change|40022941||||| +37|2023-10-06T21:14:02.5420000-07:00|40022472|Zeromus|00019622|29386870||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:02.5420000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|2.56| +26|2023-10-06T21:14:02.5420000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:14:02.5430000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|232F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29386870|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.69|85.54|0.00|-1.37|0001962C|0|1| +21|2023-10-06T21:14:02.5860000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|754003|E570000|60E30E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|29386870|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8747|10000|||101.79|86.46|0.00|-1.27|0001962D|0|1| +261|2023-10-06T21:14:02.1530000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:14:02.1530000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:14:02.6310000-07:00|40022472|Zeromus|00019623|29382154||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:02.6310000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|E620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29386870|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||100.13|83.62|0.00|-0.77|0001962E|0|1| +31|2023-10-06T21:14:02.6310000-07:00|10FF0001||||| +37|2023-10-06T21:14:02.6760000-07:00|40022472|Zeromus|00019628|29381898||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:02.7200000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||98.05|85.71|0.00|2.82| +261|2023-10-06T21:14:02.2430000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:14:02.2430000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:14:02.7650000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||95.59|86.02|0.00|-2.91| +24|2023-10-06T21:14:02.7650000-07:00|40022472|Zeromus|DoT|0|1BE2|29381898|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7900|10000|||99.01|83.19|0.00|-0.44| +21|2023-10-06T21:14:02.7650000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|40B90000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|29381898|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|6800|10000|||101.14|85.74|0.00|-1.20|0001962F|0|1| +38|2023-10-06T21:14:02.7660000-07:00|40022472|Zeromus|005A5A00|29374760|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:14:02.3330000-07:00|Change|10FF000A||||||||| +36|2023-10-06T21:14:02.8530000-07:00|2F6C|3| +39|2023-10-06T21:14:02.8980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|6600|10000|||100.50|85.94|0.00|-2.89| +261|2023-10-06T21:14:02.4310000-07:00|Change|4002293E||||||||| +37|2023-10-06T21:14:02.9870000-07:00|40022472|Zeromus|0001962A|29368657||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:02.9870000-07:00|10FF0007|Kehabiqo Febiqo|125975|129844|10000|10000|||102.90|87.16|0.00|-2.82| +39|2023-10-06T21:14:02.9870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8500|10000|||101.43|83.72|0.00|0.75| +261|2023-10-06T21:14:02.5270000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:14:02.5270000-07:00|Change|4002293A||||||||| +39|2023-10-06T21:14:03.0310000-07:00|10FF0009|Zewo Negiwo|81177|81177|8568|10000|||99.31|87.05|0.00|-2.44| +39|2023-10-06T21:14:03.0760000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||97.27|83.53|0.00|-0.11| +261|2023-10-06T21:14:02.6460000-07:00|Change|4002293B||||||||| +37|2023-10-06T21:14:03.1200000-07:00|10FF0003|Gegehi Gehi|0001962B|73814|73814|5500|10000|35||102.58|83.52|0.00|-1.45|2300|0|0|01|030004D7|0|41A00000|| +26|2023-10-06T21:14:03.1200000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:14:03.1200000-07:00|40022472|Zeromus|0001962A|29358426||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:03.1650000-07:00|40022472|Zeromus|0001962C|29349419|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|03|40B9F3B3|| +26|2023-10-06T21:14:03.1650000-07:00|35D|Wildfire|5.81|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|03|40478540|90216| +37|2023-10-06T21:14:03.1650000-07:00|40022472|Zeromus|0001962E|29345737||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:03.1650000-07:00|10FF0003|Gegehi Gehi|73814|73814|5700|10000|||102.58|83.52|0.00|-1.45| +21|2023-10-06T21:14:03.2100000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|14A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29345737|40478540|10000|10000|||100.00|80.10|0.00|0.00|125975|129844|10000|10000|||102.90|87.16|0.00|-2.82|00019630|0|1| +21|2023-10-06T21:14:03.2100000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|19F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29345737|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.84|86.05|0.00|-2.67|00019631|0|1| +21|2023-10-06T21:14:03.2100000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73814|73814|5700|10000|||102.05|83.59|-0.02|-1.45|73814|73814|5700|10000|||102.05|83.59|-0.02|-1.45|00019632|0|1| +38|2023-10-06T21:14:03.2100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5700|10000|35||102.05|83.59|-0.02|-1.45|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:03.2100000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73814|73814| +37|2023-10-06T21:14:03.2550000-07:00|10FF0004|Buhojaqe Zijaqe|0001962B|81541|81541|6600|10000|13||98.54|86.42|0.00|-1.68|1C01|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:14:03.2550000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:14:03.2550000-07:00|10FF0003|Gegehi Gehi|0001962B|73814|73814|5700|10000|35||102.05|83.59|-0.02|-1.45|2301|0|0|01|080007B3|06|C1700000|| +37|2023-10-06T21:14:03.2550000-07:00|40022472|Zeromus|0001962A|29340606||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:03.2550000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|497A0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|29345737|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.91|86.22|0.00|-3.02|00019633|0|1| +38|2023-10-06T21:14:03.2550000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.89|95.75|0.00|3.01|0|0|0|||||||||| +26|2023-10-06T21:14:03.2550000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002284A|Ruby Carbuncle|00|77430|73814| +38|2023-10-06T21:14:03.2550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||92.91|86.22|0.00|-3.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:03.2550000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:14:02.8760000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:14:02.8760000-07:00|Change|40022942||||||||| +37|2023-10-06T21:14:03.3870000-07:00|40022472|Zeromus|00019629|29291454||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:03.3870000-07:00|10FF0001|Sesuga Sapisuga|0001962B|129071|129071|8100|10000|8||96.10|84.00|0.00|-0.11|1302|0|0|01|02000511|0|41A00000|| +26|2023-10-06T21:14:03.3870000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +37|2023-10-06T21:14:03.3870000-07:00|10FF0003|Gegehi Gehi|0001962B|73814|73814|5700|10000|35||101.85|83.61|0.00|-1.45|2302|0|0|01|080007B3|06|C1700000|| +21|2023-10-06T21:14:03.3870000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|417E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|125975|129844|10000|10000|||102.90|87.16|0.00|-2.82|29340606|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019634|0|1| +261|2023-10-06T21:14:02.9980000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:14:02.9980000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:14:03.4770000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|29291454|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||98.65|85.11|0.00|-0.75|00019635|0|1| +38|2023-10-06T21:14:03.4770000-07:00|4002299C|Carbuncle|005A5A00|0|77698|0|10000|0||102.09|81.79|0.00|-0.05|0|0|0|||| +26|2023-10-06T21:14:03.4770000-07:00|30|Well Fed|1629.78|10FF0006|Wowobora Gogobora|4002299C|Carbuncle|2964|77698|81809| +261|2023-10-06T21:14:03.1130000-07:00|Change|4002299C||||||||| +38|2023-10-06T21:14:03.5230000-07:00|4002299D||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:14:03.5230000-07:00|10FF0009|Zewo Negiwo|0001962B|81177|81177|8568|10000|20||96.11|87.31|0.00|-1.54|1803|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:14:03.5230000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +37|2023-10-06T21:14:03.5230000-07:00|10FF0003|Gegehi Gehi|0001962B|73814|73814|5700|10000|35||101.21|83.67|0.00|-1.46|2303|0|0|01|080007B3|06|C1700000|| +261|2023-10-06T21:14:03.1130000-07:00|Add|4002299D||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:14:03.1130000-07:00|4002299D|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||97.23|88.36|0.00|2.61| +21|2023-10-06T21:14:03.5240000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|752003|D97C0000|200004|3C2D8000|0|0|0|0|0|0|0|0|0|0|0|0|29291454|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||95.87|84.25|0.00|2.36|00019636|0|1| +38|2023-10-06T21:14:03.5240000-07:00|4002299D|Topaz Titan|005A5A00|74223|77698|10000|10000|0||97.23|88.36|0.00|2.61|0|0|0||||||| +26|2023-10-06T21:14:03.5240000-07:00|30|Well Fed|1629.74|10FF0006|Wowobora Gogobora|4002299D|Topaz Titan|2964|77698|81809| +26|2023-10-06T21:14:03.5240000-07:00|A8F|Searing Light|13.46|10FF0006|Wowobora Gogobora|4002299D|Topaz Titan|00|77698|81809| +38|2023-10-06T21:14:03.5240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|8||95.87|84.25|0.00|2.36|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:03.5240000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:14:03.5240000-07:00|10FF0001||||| +21|2023-10-06T21:14:03.5670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|C080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29291454|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.19|86.57|0.00|2.45|00019637|0|1| +38|2023-10-06T21:14:03.5670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|6600|10000|13||96.72|87.03|0.00|-1.34|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:03.5670000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:14:03.5670000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|6600|10000|||96.72|87.03|0.00|-1.34|81541|81541|6600|10000|||96.72|87.03|0.00|-1.34|00019638|0|1| +261|2023-10-06T21:14:03.2130000-07:00|Change|4002299D||||| +37|2023-10-06T21:14:03.6120000-07:00|10FF0003|Gegehi Gehi|00019632|73814|73814|5700|10000|35||101.21|83.67|0.00|-1.46|2300|0|0|01|080007B3|06|41700000|| +21|2023-10-06T21:14:03.6120000-07:00|10FF0007|Kehabiqo Febiqo|03|Sprint|10FF0007|Kehabiqo Febiqo|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|125975|129844|10000|10000|||102.64|87.29|0.00|-2.82|125975|129844|10000|10000|||102.64|87.29|0.00|-2.82|00019639|0|1| +38|2023-10-06T21:14:03.6120000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5700|10000|35||101.21|83.67|0.00|-1.46|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:14:03.2130000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:14:03.6560000-07:00|10FF0006|Wowobora Gogobora|0001962B|81809|81809|8500|10000|13||97.56|85.58|0.00|2.61|1B04|0|0|01|0511|0|41A00000|| +26|2023-10-06T21:14:03.6560000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +38|2023-10-06T21:14:03.6560000-07:00|4002299D|Topaz Titan|005A5A00|74223|77698|10000|10000|0||97.23|88.36|0.00|2.61|0|0|0|||||||||| +26|2023-10-06T21:14:03.6560000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002299D|Topaz Titan|00|77698|73814| +37|2023-10-06T21:14:03.7000000-07:00|40022472|Zeromus|0001962F|29274885||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:03.7450000-07:00|10FF0007|Kehabiqo Febiqo|00019639|125975|129844|10000|10000|0||102.43|87.39|0.00|-1.23|1500|0|0|01|04000032|1E|41200000|| +26|2023-10-06T21:14:03.7450000-07:00|32|Sprint|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|1E|129844|129844| +37|2023-10-06T21:14:03.7450000-07:00|40022472|Zeromus|00019630|29269601||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:03.3040000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:14:03.7900000-07:00|10FF0007|Kehabiqo Febiqo|0001962B|125975|129844|10000|10000|0||102.43|87.39|0.00|-1.23|1505|0|0|01|07000511|0|41A00000|| +26|2023-10-06T21:14:03.7900000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +38|2023-10-06T21:14:03.7900000-07:00|40022930|Automaton Queen|005A5A00|0|85668|0|10000|0||101.67|102.34|0.00|-3.07|0|0|0|||| +30|2023-10-06T21:14:03.7900000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022930|Automaton Queen|00|85668|81809| +261|2023-10-06T21:14:03.3040000-07:00|Change|40022930||||||||| +261|2023-10-06T21:14:03.3980000-07:00|Change|4002293C||||||||| +37|2023-10-06T21:14:03.8350000-07:00|40022472|Zeromus|00019631|29262956||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:03.3980000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:14:03.3980000-07:00|Change|40022938||||||||| +37|2023-10-06T21:14:03.8790000-07:00|40022472|Zeromus|0001962D|29259285|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:14:03.8790000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +21|2023-10-06T21:14:03.8790000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|CEF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29262956|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.05|87.12|0.00|2.21|0001963A|0|1| +37|2023-10-06T21:14:03.9250000-07:00|10FF0008|Kokosaze Lulusaze|0001962B|90216|90216|10000|10000|11||93.25|87.27|0.00|-2.84|1F06|0|0|01|05000511|0|41A00000|| +26|2023-10-06T21:14:03.9250000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +04|2023-10-06T21:14:03.4980000-07:00|4002293D|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||97.98|119.67|0.00|2.99| +261|2023-10-06T21:14:03.4980000-07:00|Change|40022940||||||||| +261|2023-10-06T21:14:03.4980000-07:00|Remove|4002293D| +37|2023-10-06T21:14:04.0130000-07:00|40022472|Zeromus|00019633|29240475||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:04.0130000-07:00|10FF0009|Zewo Negiwo|1D06|Thin Air|10FF0009|Zewo Negiwo|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|8568|10000|||92.77|87.67|0.00|-1.47|81177|81177|8568|10000|||92.77|87.67|0.00|-1.47|0001963B|0|1| +38|2023-10-06T21:14:04.0130000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8568|10000|20||92.77|87.67|0.00|-1.47|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:04.0130000-07:00|4C1|Thin Air|12.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +37|2023-10-06T21:14:04.0580000-07:00|10FF000A|Dukaro Nezikaro|0001962B|82773|82773|10000|10000|20||91.09|87.74|0.00|1.91|1E07|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:14:04.0580000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +26|2023-10-06T21:14:04.0580000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:14:04.0580000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|726003|4F610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29259285|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||91.57|87.89|0.00|-1.94|0001963C|0|1| +261|2023-10-06T21:14:03.5890000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:14:03.5890000-07:00|Change|40022941||||||||| +37|2023-10-06T21:14:04.1010000-07:00|10FF0004|Buhojaqe Zijaqe|00019638|81541|81541|8600|10000|13||95.46|87.47|0.00|-1.26|1C00|0|0|0| +21|2023-10-06T21:14:04.1010000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|750003|23E70000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|29259285|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5700|10000|||96.78|83.97|0.00|-1.52|0001963D|0|1| +21|2023-10-06T21:14:04.1020000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29259285|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5700|10000|||96.78|83.97|0.00|-1.52|0001963E|0|1| +38|2023-10-06T21:14:04.1020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5700|10000|35||96.78|83.97|0.00|-1.52|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:04.1020000-07:00|7B3|Manafication|14.47|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73814|73814| +38|2023-10-06T21:14:04.1460000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5700|10000|13||96.78|83.97|0.00|-1.52|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:04.1460000-07:00|4C2|Divine Benison|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:14:04.1900000-07:00|10FF0007|Kehabiqo Febiqo|00019634|109209||||||101.35|87.78|0.00|-1.23| +261|2023-10-06T21:14:03.7060000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:14:03.7060000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:14:04.3240000-07:00|40022472|Zeromus|00019637|29237395||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:04.3240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6250|10000|13||95.34|83.95|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:14:04.4120000-07:00|40022472|Zeromus|00019636|29181719||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:04.4120000-07:00|40022472|Zeromus|0001963A|29178408||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:03.9500000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:14:04.0600000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:14:04.0600000-07:00|Change|10FF0006||||||||| +38|2023-10-06T21:14:04.5460000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8568|10000|20||92.03|87.74|0.00|-1.46|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:14:04.1700000-07:00|Change|4002299D||| +261|2023-10-06T21:14:04.1700000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:04.1700000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:14:04.1700000-07:00|Change|4002293E||||||||| +37|2023-10-06T21:14:04.6340000-07:00|40022472|Zeromus|0001963E|29178407||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:04.6800000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|B4280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29178408|40478540|10000|10000|||100.00|80.10|0.00|0.00|109209|129844|10000|10000|||97.31|89.12|0.00|-1.26|0001963F|0|1| +38|2023-10-06T21:14:04.6800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109209|129844|10000|10000|0||97.31|89.12|0.00|-1.26|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:04.6800000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:14:04.2670000-07:00|Change|4002293A||||||||| +37|2023-10-06T21:14:04.7250000-07:00|40022472|Zeromus|0001963C|29158086|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|04|40881057|| +26|2023-10-06T21:14:04.7250000-07:00|35D|Wildfire|4.25|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|04|40478540|90216| +37|2023-10-06T21:14:04.7250000-07:00|40022472|Zeromus|0001963D|29148895||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:04.7250000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|16CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29178407|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.13|89.65|0.00|-1.72|00019640|0|1| +261|2023-10-06T21:14:04.2670000-07:00|Remove|40022936| +04|2023-10-06T21:14:04.2670000-07:00|40022936|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|69928|0|10000|||102.01|99.78|0.00|-3.04| +04|2023-10-06T21:14:04.2670000-07:00|4002293F|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||105.97|119.68|0.00|-2.78| +261|2023-10-06T21:14:04.2670000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:14:04.2670000-07:00|Change|4002293B||||||||| +261|2023-10-06T21:14:04.2670000-07:00|Remove|4002293F| +37|2023-10-06T21:14:04.7680000-07:00|10FF0009|Zewo Negiwo|0001963B|81177|81177|8568|10000|20||90.55|87.91|0.00|-1.46|1800|0|0|01|060004C1|FF9C|41400000|| +38|2023-10-06T21:14:04.7680000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8568|10000|20||90.55|87.91|0.00|-1.46|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:14:04.3640000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:14:04.8580000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22550000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|109209|129844|10000|10000|||95.26|89.74|-0.02|2.57|73956|77430|10000|10000|||97.89|95.75|0.00|3.09|00019641|0|1| +21|2023-10-06T21:14:04.9020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|F0F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29148895|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||89.58|86.52|0.00|0.39|00019642|0|1| +31|2023-10-06T21:14:04.9020000-07:00|10FF0001||||| +21|2023-10-06T21:14:04.9460000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|10B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29148895|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||89.90|88.56|0.00|-1.32|00019643|0|1| +261|2023-10-06T21:14:04.6800000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:14:05.1700000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|754003|355E0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|29148895|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||88.34|89.04|0.00|-1.25|00019644|0|1| +261|2023-10-06T21:14:04.6800000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:14:05.3020000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29148895|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||87.84|84.25|0.00|-1.85|00019645|0|1| +261|2023-10-06T21:14:04.9130000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:14:05.0240000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:14:05.4350000-07:00|40022472|Zeromus|00019642|29145040||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:05.0240000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:05.0240000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:14:05.0240000-07:00|Change|4002293C||||||||| +37|2023-10-06T21:14:05.4800000-07:00|40022472|Zeromus|00019643|29144773||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:05.1390000-07:00|Change|4002299C||||||||| +261|2023-10-06T21:14:05.1390000-07:00|Change|40022938||||||||| +37|2023-10-06T21:14:05.5250000-07:00|40022472|Zeromus|00019640|29138934||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:05.5250000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|-2.36| +21|2023-10-06T21:14:05.5250000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2E060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29145040|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||82.76|91.54|0.00|-1.53|00019646|0|1| +38|2023-10-06T21:14:05.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||82.76|91.54|0.00|-1.53|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:05.5250000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:14:05.5700000-07:00|4002299D|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|450003|6BB70000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|29145040|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||97.23|88.36|0.00|2.61|00019647|0|1| +04|2023-10-06T21:14:05.1390000-07:00|40022942|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|119.68|0.00|-2.46| +261|2023-10-06T21:14:05.1390000-07:00|Remove|40022942| +37|2023-10-06T21:14:05.6150000-07:00|40022472|Zeromus|0001963F|29092814||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:05.6150000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37754003|33790000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|29138934|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6250|10000|||89.54|87.16|0.00|-1.24|00019648|0|1| +38|2023-10-06T21:14:05.6150000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6250|10000|13||89.54|87.16|0.00|-1.24|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:05.6150000-07:00|7B3|Manafication|12.95|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73814|73814| +261|2023-10-06T21:14:05.1390000-07:00|Change|40022940||||||||| +37|2023-10-06T21:14:05.6590000-07:00|10FF0007|Kehabiqo Febiqo|00019641|117998||||||90.29|91.88|0.00|-1.88| +39|2023-10-06T21:14:05.7050000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||82.43|91.65|0.00|2.15| +21|2023-10-06T21:14:05.7050000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|117998|129844|10000|10000|||89.23|91.75|0.00|-1.74|117998|129844|10000|10000|||89.23|91.75|0.00|-1.74|00019649|0|1| +38|2023-10-06T21:14:05.7050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117998|129844|10000|10000|0||89.23|91.75|0.00|-1.74|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:05.7050000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:14:05.7490000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||84.26|91.54|0.00|0.09| +24|2023-10-06T21:14:05.7490000-07:00|40022472|Zeromus|DoT|0|1CA6|29092814|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7100|10000|||84.81|88.47|0.00|0.35| +38|2023-10-06T21:14:05.7490000-07:00|40022472|Zeromus|005A5A00|29085480|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:14:05.8370000-07:00|40022472|Zeromus|00019645|29085318||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:14:05.8370000-07:00|3048|3| +39|2023-10-06T21:14:05.8840000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8400|10000|||84.56|90.79|0.00|-1.71| +261|2023-10-06T21:14:05.5240000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:14:05.9720000-07:00|10FF0007|Kehabiqo Febiqo|119296|129844|10000|10000|||87.82|91.65|0.00|-1.52| +39|2023-10-06T21:14:05.9720000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8700|10000|||84.72|86.69|0.00|-0.86| +21|2023-10-06T21:14:05.9720000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|3C810000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|29085318|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||84.72|86.69|0.00|-0.86|0001964A|0|1| +38|2023-10-06T21:14:05.9720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|13||84.72|86.69|0.00|-0.86|0|0|0||||||||||||||||||| +26|2023-10-06T21:14:05.9720000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:14:06.0150000-07:00|10FF0009|Zewo Negiwo|81177|81177|8789|10000|||86.42|87.89|-0.01|-0.60| +39|2023-10-06T21:14:06.0610000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7300|10000|||82.86|90.09|0.00|0.06| +21|2023-10-06T21:14:06.0610000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|752003|65CF0000|4|27148000|0|0|0|0|0|0|0|0|0|0|0|0|29085318|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||82.86|90.09|0.00|0.06|0001964B|0|1| +21|2023-10-06T21:14:06.0610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|D4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29085318|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.37|91.60|0.00|-0.58|0001964C|0|1| +38|2023-10-06T21:14:06.0610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|8||82.86|90.09|0.00|0.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:06.0610000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:14:06.1040000-07:00|40022472|Zeromus|00019644|29071656||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:06.1490000-07:00|40022472|Zeromus|00019646|29059874|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|05|4034ED7A|| +26|2023-10-06T21:14:06.1490000-07:00|35D|Wildfire|2.83|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|05|40478540|90216| +261|2023-10-06T21:14:05.7460000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:14:05.7460000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:14:05.7460000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:14:06.1490000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|16AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29059874|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||82.02|91.78|0.00|2.15|0001964D|0|1| +39|2023-10-06T21:14:06.1940000-07:00|10FF0003|Gegehi Gehi|73814|73814|6450|10000|||87.91|87.77|0.00|2.84| +37|2023-10-06T21:14:06.2390000-07:00|10FF0007|Kehabiqo Febiqo|00019649|119296|129844|10000|10000|0||85.95|91.62|0.00|-1.52|1500|0|0|01|01000769|0|41F00000|| +37|2023-10-06T21:14:06.2390000-07:00|40022472|Zeromus|00019648|29046697||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:06.2390000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|A250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29059874|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||82.02|91.78|0.00|2.15|0001964E|0|1| +38|2023-10-06T21:14:06.2390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119296|129844|10000|10000|0||85.95|91.62|0.00|-1.52|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:05.8630000-07:00|Change|4002293E||||||||| +261|2023-10-06T21:14:05.8630000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:14:05.9810000-07:00|Change|4002293A||||||||| +04|2023-10-06T21:14:05.9810000-07:00|40022941|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||113.97|119.67|0.00|-2.30| +261|2023-10-06T21:14:05.9810000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:14:05.9810000-07:00|Remove|40022941| +21|2023-10-06T21:14:06.4170000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42640000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|119296|129844|10000|10000|||84.44|91.70|0.00|-1.50|29046697|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001964F|0|1| +37|2023-10-06T21:14:06.5960000-07:00|40022472|Zeromus|0001964A|29031208||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:06.5960000-07:00|10FF0006|Wowobora Gogobora|0001964A|81809|81809|8400|10000|13||83.14|89.89|0.00|0.01|1B00|0|0|01|05000B25|0|0|| +37|2023-10-06T21:14:06.5960000-07:00|40022472|Zeromus|0001964C|29027806||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:06.5960000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|CE50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29046697|40478540|10000|10000|||100.00|80.10|0.00|0.00|119296|129844|10000|10000|||84.14|91.74|0.00|-1.49|00019650|0|1| +38|2023-10-06T21:14:06.5960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|13||83.14|89.89|0.00|0.01|0|0|0||||||||||||||||||| +21|2023-10-06T21:14:06.6410000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|1B980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29046697|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||83.14|89.89|0.00|0.01|00019651|0|1| +38|2023-10-06T21:14:06.6410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|13||83.14|89.89|0.00|0.01|0|0|0|||||||||||||||| +30|2023-10-06T21:14:06.6410000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:14:06.7740000-07:00|40022472|Zeromus|0001964D|29022000||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:06.8180000-07:00|40022472|Zeromus|0001964B|28995937||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:06.8630000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||82.87|91.60|0.00|-1.71|82773|82773|10000|10000|||82.87|91.60|0.00|-1.71|00019652|0|1| +38|2023-10-06T21:14:06.8630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6450|10000|13||84.15|90.20|0.00|-1.38|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:06.8630000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:14:06.8630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|-1.71|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:06.8630000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +20|2023-10-06T21:14:06.9510000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|82.72|90.35|0.00|-0.97| +37|2023-10-06T21:14:06.9950000-07:00|40022472|Zeromus|0001964E|28993340||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:07.0400000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|724003|86880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28995937|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.91|91.92|0.00|-0.44|00019653|0|1| +37|2023-10-06T21:14:07.1300000-07:00|40022472|Zeromus|00019650|28990039||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:07.1300000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|C3850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28993340|40478540|10000|10000|||100.00|80.10|0.00|0.00|119296|129844|10000|10000|||82.81|92.29|-0.01|-1.52|00019654|0|1| +21|2023-10-06T21:14:07.1300000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A750003|3F2E0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|28993340|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6450|10000|||83.18|91.09|-0.02|-1.34|00019655|0|1| +38|2023-10-06T21:14:07.1300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119296|129844|10000|10000|0||82.81|92.29|-0.01|-1.52|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:07.1300000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:14:07.1300000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6450|10000|13||83.18|91.09|-0.02|-1.34|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:07.1300000-07:00|7B3|Manafication|11.44|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73814|73814| +261|2023-10-06T21:14:06.5840000-07:00|Remove|4002299C| +04|2023-10-06T21:14:06.6940000-07:00|4002299C|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.05|82.66|0.00|-1.10| +04|2023-10-06T21:14:06.6940000-07:00|4002293B|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||89.98|119.68|0.00|-2.80| +261|2023-10-06T21:14:06.6940000-07:00|Remove|4002293B| +261|2023-10-06T21:14:06.6940000-07:00|Change|10FF0009||||||||||||||||||||| +21|2023-10-06T21:14:07.1740000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|C900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28993340|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||81.42|91.61|0.00|0.65|00019656|0|1| +31|2023-10-06T21:14:07.1740000-07:00|10FF0001||||| +261|2023-10-06T21:14:06.6940000-07:00|Change|4002293C||||||||| +37|2023-10-06T21:14:07.2180000-07:00|10FF0007|Kehabiqo Febiqo|0001964F|102300||||||82.75|92.31|0.00|2.19| +261|2023-10-06T21:14:06.8060000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:14:06.8060000-07:00|Change|40022940||||||||| +21|2023-10-06T21:14:07.3520000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||82.87|91.60|0.00|-1.71|82773|82773|10000|10000|||82.87|91.60|0.00|-1.71|00019657|0|1| +38|2023-10-06T21:14:07.3530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|-1.71|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:07.3530000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:14:07.3970000-07:00|40022472|Zeromus|00019651|28982975||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:07.5320000-07:00|40022472|Zeromus|00019647|28955400||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:07.5320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|81.83|92.86|0.00|0.28| +04|2023-10-06T21:14:07.1490000-07:00|40022930|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||101.67|102.34|0.00|-3.07| +261|2023-10-06T21:14:07.1490000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:14:07.1490000-07:00|Remove|40022930| +21|2023-10-06T21:14:07.5760000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|37D70000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|28982975|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|8789|10000|||81.68|91.26|0.00|2.12|00019658|0|1| +21|2023-10-06T21:14:07.5760000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28982975|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6450|10000|||81.34|91.53|0.00|2.12|00019659|0|1| +38|2023-10-06T21:14:07.5760000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8789|10000|20||81.68|91.26|0.00|2.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:14:07.5760000-07:00|4C1|Thin Air|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +21|2023-10-06T21:14:07.6650000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1B600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28955400|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.90|91.94|0.00|2.15|0001965A|0|1| +37|2023-10-06T21:14:07.7090000-07:00|40022472|Zeromus|00019656|28952184||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:07.7540000-07:00|40022472|Zeromus|00019655|28936010||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:07.8870000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|550003|56C80000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|28936010|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||82.87|91.60|0.00|-1.71|0001965B|0|1| +38|2023-10-06T21:14:07.8870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|-1.71|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:07.8870000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:14:07.8870000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:14:07.5290000-07:00|Change|4002293E||||||||| +04|2023-10-06T21:14:07.5290000-07:00|40022938|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||81.99|119.68|0.00|-3.12| +261|2023-10-06T21:14:07.5290000-07:00|Remove|40022938| +261|2023-10-06T21:14:07.7230000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:14:08.0650000-07:00|40022472|Zeromus|00019654|28885957||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:08.1080000-07:00|40022472|Zeromus|00019659|28885956||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:08.1970000-07:00|40022472|Zeromus|00019653|28851516|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|06|3F46E91B|| +26|2023-10-06T21:14:08.1970000-07:00|35D|Wildfire|0.78|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|90216| +21|2023-10-06T21:14:08.2420000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|D160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28885956|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|0001965C|0|1| +21|2023-10-06T21:14:08.3320000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15530000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|102300|129844|10000|10000|||82.72|92.33|0.00|2.19|73956|77430|10000|10000|||97.89|95.75|0.00|-3.03|0001965D|0|1| +21|2023-10-06T21:14:08.3320000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|1B6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28851516|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.90|91.94|0.00|2.15|0001965E|0|1| +261|2023-10-06T21:14:08.0750000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:14:08.4210000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|452003|67100000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28851516|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||81.51|92.10|0.00|0.67|0001965F|0|1| +38|2023-10-06T21:14:08.4210000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8100|10000|13||81.51|92.10|0.00|0.67|0|0|0||||||||||||||||||| +26|2023-10-06T21:14:08.4210000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:14:08.4660000-07:00|40022472|Zeromus|0001965A|28844508||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:08.4660000-07:00|40022489|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||114.00|100.00|0.00|0.79|00019660|0|0| +21|2023-10-06T21:14:08.4660000-07:00|4002248A|Zeromus|8CF8|unknown_8cf8|4002248A|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||114.00|100.00|0.00|0.79|44|44|0|10000|||114.00|100.00|0.00|0.79|00019661|0|1| +21|2023-10-06T21:14:08.4660000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.79|00019662|0|0| +21|2023-10-06T21:14:08.4670000-07:00|4002248C|Zeromus|8CF8|unknown_8cf8|4002248C|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|00019663|0|1| +21|2023-10-06T21:14:08.4670000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|86.00|0.00|0.79|00019664|0|0| +21|2023-10-06T21:14:08.4670000-07:00|4002248E|Zeromus|8CF8|unknown_8cf8|4002248E|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|86.00|0.00|0.79|44|44|0|10000|||100.00|86.00|0.00|0.79|00019665|0|1| +21|2023-10-06T21:14:08.4670000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28851516|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||81.51|92.10|0.00|0.67|00019666|0|1| +21|2023-10-06T21:14:08.4670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|35B60000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|28851516|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||81.77|92.97|0.00|2.19|00019667|0|1| +261|2023-10-06T21:14:08.0750000-07:00|Change|4002248A||||||||||| +261|2023-10-06T21:14:08.0750000-07:00|Change|4002248C||||||||||| +261|2023-10-06T21:14:08.0750000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:14:08.0750000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:14:08.0750000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:14:08.0750000-07:00|Change|4002248E||||||||||| +261|2023-10-06T21:14:08.0750000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:14:08.5100000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||97.89|95.75|0.00|-2.80| +38|2023-10-06T21:14:08.5540000-07:00|40022472|Zeromus|005A5A00|28844508|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:08.5540000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +37|2023-10-06T21:14:08.6000000-07:00|40022472|Zeromus|0001965B|28822292||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:08.6000000-07:00|10FF000A|Dukaro Nezikaro|0001965B|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|1E00|0|0|01|05000A82|01|41F00000|| +21|2023-10-06T21:14:08.6000000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|3BDA0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|28844508|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||81.55|91.75|0.00|2.13|00019668|0|1| +38|2023-10-06T21:14:08.6000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|8||81.55|91.75|0.00|2.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:08.6000000-07:00|76E|Sword Oath|4.83|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:14:08.6000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:14:08.6450000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|00019669|0|1| +38|2023-10-06T21:14:08.6450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:08.6450000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +39|2023-10-06T21:14:08.7340000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||81.90|91.94|0.00|2.15| +04|2023-10-06T21:14:08.2870000-07:00|4002293A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||85.98|119.68|0.00|-2.76| +261|2023-10-06T21:14:08.2870000-07:00|Remove|4002293A| +37|2023-10-06T21:14:08.7780000-07:00|40022472|Zeromus|0001965C|28818942||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:08.7780000-07:00|10FF000A|Dukaro Nezikaro|0001965C|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|1E00|0|0|01|060004A2|0|C0C00000|| +39|2023-10-06T21:14:08.7790000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||82.87|91.60|0.00|2.16| +24|2023-10-06T21:14:08.7790000-07:00|40022472|Zeromus|DoT|0|2AB5|28822292|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6300|10000|||81.55|91.75|0.00|2.13| +38|2023-10-06T21:14:08.7790000-07:00|40022472|Zeromus|005A5A00|28808009|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:14:08.8680000-07:00|40022472|Zeromus|00019658|28793714||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:14:08.8680000-07:00|3124|3| +39|2023-10-06T21:14:08.9120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8200|10000|||81.77|92.97|0.00|2.19| +21|2023-10-06T21:14:08.9120000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|10800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28808009|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.90|91.94|0.00|2.15|0001966A|0|1| +37|2023-10-06T21:14:08.9570000-07:00|40022472|Zeromus|0001965E|28786692||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:08.9570000-07:00|40022472|Zeromus|DoT|35D|E8C2|28793714|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||81.90|91.94|0.00|2.15| +38|2023-10-06T21:14:08.9570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||81.90|91.94|0.00|2.15|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:08.9570000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:14:08.9570000-07:00|40022472|Zeromus|005A5A00|28727106|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:08.9570000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|90216| +37|2023-10-06T21:14:09.0010000-07:00|40022472|Zeromus|00019666|28726937||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:09.0010000-07:00|10FF0007|Kehabiqo Febiqo|103598|129844|10000|10000|||82.73|92.33|-0.02|2.13| +39|2023-10-06T21:14:09.0010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8300|10000|||82.05|92.29|-0.01|2.17| +261|2023-10-06T21:14:08.4800000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:14:08.4800000-07:00|Change|40022940||||||||| +37|2023-10-06T21:14:09.0460000-07:00|40022472|Zeromus|0001965F|28700553||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:09.0460000-07:00|10FF0006|Wowobora Gogobora|0001965F|81809|81809|8300|10000|13||82.05|92.29|-0.01|2.17|1B00|0|0|01|05000B25|0|0|| +37|2023-10-06T21:14:09.0460000-07:00|10FF000A|Dukaro Nezikaro|00019669|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|1E00|0|0|01|060004A2|0|40C00000|| +39|2023-10-06T21:14:09.0460000-07:00|10FF0009|Zewo Negiwo|81177|81177|9010|10000|||81.69|91.29|0.00|1.75| +21|2023-10-06T21:14:09.0460000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|24150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28793714|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8100|10000|||82.05|92.29|-0.01|2.17|0001966B|0|1| +21|2023-10-06T21:14:09.0460000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28793714|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||81.77|92.97|0.00|2.19|0001966C|0|1| +38|2023-10-06T21:14:09.0460000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|13||82.05|92.29|-0.01|2.17|0|0|0|||||||||||||||| +30|2023-10-06T21:14:09.0460000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:14:09.0460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:14:09.0900000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||81.55|91.75|0.00|2.13| +261|2023-10-06T21:14:08.5960000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:14:09.1350000-07:00|10FF0007|Kehabiqo Febiqo|0001965D|109057||||||82.75|92.34|0.00|1.95| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|32AE0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|0|9| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|332E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|1|9| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|31B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||81.90|91.94|0.00|2.15|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|2|9| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|4|31370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8300|10000|||82.08|92.30|0.00|2.17|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|3|9| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|32CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|103598|129844|10000|10000|||82.75|92.34|0.00|1.95|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|4|9| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|4|331A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6300|10000|||81.55|91.75|0.00|2.13|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|5|9| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|4B3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28700553|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|6|9| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|4|31740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6450|10000|||81.16|91.57|0.00|2.12|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|7|9| +22|2023-10-06T21:14:09.1350000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|4E090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8200|10000|||81.78|92.98|-0.02|2.15|81177|81177|9010|10000|||81.70|91.32|0.00|1.33|0001966D|8|9| +38|2023-10-06T21:14:09.1350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109057|129844|10000|10000|0||82.75|92.34|0.00|1.95|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:09.1350000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:14:09.1790000-07:00|10FF0003|Gegehi Gehi|73814|73814|6650|10000|||81.16|91.57|0.00|2.12| +261|2023-10-06T21:14:08.7150000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:14:08.7150000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:14:09.2690000-07:00|40022472|Zeromus|00019667|28686803||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:09.3130000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022472|Zeromus|750003|49240000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|28686803|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6650|10000|||81.16|91.57|0.00|2.12|0001966E|0|1| +38|2023-10-06T21:14:09.3130000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6250|10000|13||81.16|91.57|0.00|2.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:09.3130000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:14:09.3130000-07:00|7B3|Manafication|9.25|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73814|73814| +21|2023-10-06T21:14:09.4010000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40022472|Zeromus|716003|81FF0000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|28686803|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|0001966F|0|1| +38|2023-10-06T21:14:09.4010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:09.4010000-07:00|4A2|Ten Chi Jin|5.60|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:14:09.4460000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3D9D0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|109057|129844|10000|10000|||83.99|92.51|0.00|1.55|28686803|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019670|0|1| +21|2023-10-06T21:14:09.4460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|9C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28686803|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||81.55|91.75|0.00|2.13|00019671|0|1| +31|2023-10-06T21:14:09.4460000-07:00|10FF0001||||| +04|2023-10-06T21:14:09.0710000-07:00|4002293C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||93.98|119.68|0.00|-2.71| +261|2023-10-06T21:14:09.0710000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:14:09.0710000-07:00|Remove|4002293C| +37|2023-10-06T21:14:09.5800000-07:00|40022472|Zeromus|0001966C|28686638||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:09.5800000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|35800000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|28686638|40478540|10000|10000|||100.00|80.10|0.00|0.00|109057|129844|10000|10000|||85.95|92.77|-0.02|2.31|00019672|0|1| +261|2023-10-06T21:14:09.1840000-07:00|Change|4002299D||||| +21|2023-10-06T21:14:09.5800000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|348D0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|28686638|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.93|91.94|0.00|2.15|00019673|0|1| +38|2023-10-06T21:14:09.5800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109057|129844|10000|10000|0||85.95|92.77|-0.02|2.31|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:09.5800000-07:00|A75|Surging Tempest|41.28|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:14:09.5800000-07:00|4002299D|Topaz Titan|005A5A00|0|77698|0|10000|0||97.23|88.36|0.00|2.61|0|0|0|||| +30|2023-10-06T21:14:09.5800000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002299D|Topaz Titan|00|77698|81809| +30|2023-10-06T21:14:09.5800000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002299D|Topaz Titan|00|77698|73814| +38|2023-10-06T21:14:09.6230000-07:00|400229A3||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:14:09.6250000-07:00|400229A3||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:14:09.6680000-07:00|40022472|Zeromus|0001966A|28682414||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:09.2810000-07:00|Change|10FF0003||| +21|2023-10-06T21:14:09.7130000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8300|10000|||82.08|92.30|0.00|2.17|81809|81809|8300|10000|||82.08|92.30|0.00|2.17|00019674|0|1| +37|2023-10-06T21:14:09.8010000-07:00|10FF0009|Zewo Negiwo|0001966D|81177|81177|9510|10000|20||84.55|92.73|0.00|1.09|1800|0|0|0| +37|2023-10-06T21:14:09.8010000-07:00|40022472|Zeromus|0001966B|28673177||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:09.8900000-07:00|40022472|Zeromus|00019668|28657855||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:09.8900000-07:00|10FF0001|Sesuga Sapisuga|00019668|129071|129071|6900|10000|8||81.55|91.75|0.00|2.13|1300|0|0|0| +37|2023-10-06T21:14:09.9820000-07:00|40022472|Zeromus|00019671|28655350||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:09.9820000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|D5F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28657855|40478540|10000|10000|||100.00|80.10|0.00|0.00|109057|129844|10000|10000|||88.10|93.00|0.00|1.87|00019675|0|1| +03|2023-10-06T21:14:09.5740000-07:00|400229A3|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||83.53|91.34|0.00|-0.97| +261|2023-10-06T21:14:09.5740000-07:00|Add|400229A3||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:09.6740000-07:00|Change|10FF0001||| +261|2023-10-06T21:14:09.6740000-07:00|Change|400229A3||| +261|2023-10-06T21:14:09.7680000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:14:10.0690000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|724003|12D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28655350|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6250|10000|||81.16|91.57|0.00|2.12|00019676|0|1| +21|2023-10-06T21:14:10.2040000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|2B2E0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|28655350|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||82.81|93.61|0.00|0.55|00019677|0|1| +37|2023-10-06T21:14:10.2470000-07:00|10FF0007|Kehabiqo Febiqo|00019670|93284||||||88.72|93.00|0.00|1.99| +37|2023-10-06T21:14:10.2920000-07:00|40022472|Zeromus|0001966F|28622071||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:10.2920000-07:00|10FF000A|Dukaro Nezikaro|0001966F|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|1E00|0|0|01|060004A2|01|409820BE|| +38|2023-10-06T21:14:10.2920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6250|10000|13||81.16|91.57|0.00|2.12|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:14:10.3360000-07:00|10FF0007|Kehabiqo Febiqo|0001966D|106287||||||88.72|93.00|0.00|1.99| +37|2023-10-06T21:14:10.3360000-07:00|10FF0006|Wowobora Gogobora|00019674|81809|81809|8300|10000|13||82.84|92.84|0.00|1.13|1B00|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T21:14:10.3360000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:14:10.3800000-07:00|40022472|Zeromus|00019673|28608618||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:10.3800000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40022472|Zeromus|550003|5C840000|900000E|4A28000|200000F|A828000|0|0|0|0|0|0|0|0|0|0|28655350|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|00019678|0|1| +38|2023-10-06T21:14:10.3800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:10.3800000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +26|2023-10-06T21:14:10.3800000-07:00|4A2|Ten Chi Jin|4.62|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +04|2023-10-06T21:14:09.8790000-07:00|4002293E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||101.98|119.68|0.00|-2.51| +261|2023-10-06T21:14:09.8790000-07:00|Remove|4002293E| +38|2023-10-06T21:14:10.4690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|13||83.52|93.30|0.00|1.09|0|0|0||||||||||||||||||| +261|2023-10-06T21:14:09.9970000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:14:10.5140000-07:00|40022472|Zeromus|00019675|28605195||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:10.1160000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:14:10.1160000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:14:10.6030000-07:00|40022472|Zeromus|0001966D|28585933||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:14:10.6480000-07:00|400229A3|Carbuncle|400229A3|Carbuncle|01| +261|2023-10-06T21:14:10.2130000-07:00|Change|400229A3||| +37|2023-10-06T21:14:10.6920000-07:00|40022472|Zeromus|00019676|28581117||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:10.6920000-07:00|10FF0003|Gegehi Gehi|00019676|73814|73814|6250|10000|13||82.33|90.86|0.00|2.12|2300|0|0|01|070004D3|0|C1F00000|| +37|2023-10-06T21:14:10.7370000-07:00|10FF0003|Gegehi Gehi|0001966D|73814|73814|6250|10000|13||82.33|90.86|0.00|2.12|2307|0|0|01|070004D3|0|C1F00000|| +37|2023-10-06T21:14:10.7370000-07:00|40022472|Zeromus|0001966E|28562393||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:10.7380000-07:00|10FF0003|Gegehi Gehi|0001966E|73814|73814|6250|10000|13||82.33|90.86|0.00|2.12|2300|0|0|01|070004D3|0|41F00000|| +38|2023-10-06T21:14:10.7380000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6250|10000|13||82.33|90.86|0.00|2.12|0|0|0|||||||||||||||||||||||||||| +22|2023-10-06T21:14:10.7820000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0009|Zewo Negiwo|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|00019679|0|8| +22|2023-10-06T21:14:10.7820000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7800|10000|||86.47|95.30|0.00|1.41|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|00019679|1|8| +22|2023-10-06T21:14:10.7820000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||88.13|93.27|0.00|1.36|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|00019679|2|8| +22|2023-10-06T21:14:10.7820000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|106287|129844|10000|10000|||93.23|93.25|0.00|1.60|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|00019679|3|8| +22|2023-10-06T21:14:10.7820000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8850|10000|||85.92|94.18|0.00|1.24|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|00019679|4|8| +22|2023-10-06T21:14:10.7820000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|00019679|5|8| +22|2023-10-06T21:14:10.7820000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6250|10000|||82.49|90.76|0.00|2.12|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|00019679|6|8| +22|2023-10-06T21:14:10.7820000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6900|10000|||81.55|91.75|0.00|2.13|81177|81177|9510|10000|||89.12|95.41|-0.02|1.34|00019679|7|8| +21|2023-10-06T21:14:10.9150000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|3C2A0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28562393|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8850|10000|||86.69|94.29|0.00|1.31|0001967A|0|1| +38|2023-10-06T21:14:10.9150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8550|10000|13||86.69|94.29|0.00|1.31|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:10.9150000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:14:10.5120000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:14:11.0470000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||89.37|93.68|0.00|1.29|90216|90216|10000|10000|||89.37|93.68|0.00|1.29|0001967B|0|1| +21|2023-10-06T21:14:11.0470000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28562393|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6250|10000|||82.54|90.83|0.00|2.16|0001967C|0|1| +38|2023-10-06T21:14:11.0470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||89.37|93.68|0.00|1.29|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:11.0470000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +261|2023-10-06T21:14:10.5120000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:14:11.0910000-07:00|40022472|Zeromus|00019678|28538709||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:11.0910000-07:00|10FF000A|Dukaro Nezikaro|00019678|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|1E00|0|0|02|05000A82|02|41F00000|||||| +261|2023-10-06T21:14:10.6230000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:14:11.0910000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|37CA0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|28538709|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||82.50|91.86|0.00|1.47|0001967D|0|1| +38|2023-10-06T21:14:11.0910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|8||82.50|91.86|0.00|1.47|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:11.0910000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:14:11.0910000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:14:11.1360000-07:00|40022472|Zeromus|00019677|28527655||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:14:10.6230000-07:00|40022940|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||109.97|119.68|0.00|-2.56| +261|2023-10-06T21:14:10.6230000-07:00|Remove|40022940| +22|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0004|Buhojaqe Zijaqe|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|0001967E|0|8| +22|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0009|Zewo Negiwo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|9510|10000|||91.28|96.15|0.00|1.31|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|0001967E|1|8| +22|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0008|Kokosaze Lulusaze|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||90.03|93.92|0.00|0.99|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|0001967E|2|8| +22|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0006|Wowobora Gogobora|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8550|10000|||88.09|94.36|0.00|2.42|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|0001967E|3|8| +22|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0003|Gegehi Gehi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6250|10000|||82.57|90.87|0.00|2.20|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|0001967E|4|8| +22|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0007|Kehabiqo Febiqo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|106287|129844|10000|10000|||96.24|93.40|0.00|1.54|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|0001967E|5|8| +22|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF000A|Dukaro Nezikaro|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|0001967E|6|8| +22|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0001|Sesuga Sapisuga|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6900|10000|||82.50|91.86|0.00|1.47|81541|81541|7800|10000|||88.61|95.92|0.00|1.33|0001967E|7|8| +38|2023-10-06T21:14:11.1820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106287|129844|10000|10000|0||96.24|93.40|0.00|1.54|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:11.1820000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +26|2023-10-06T21:14:11.1820000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +38|2023-10-06T21:14:11.1820000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9510|10000|20||91.28|96.15|0.00|1.31|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:11.1820000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +26|2023-10-06T21:14:11.1820000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|1E|81177|81541| +38|2023-10-06T21:14:11.1820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||90.03|93.92|0.00|0.99|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:11.1820000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +26|2023-10-06T21:14:11.1820000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +38|2023-10-06T21:14:11.1820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8550|10000|13||88.09|94.36|0.00|2.42|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:11.1820000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +26|2023-10-06T21:14:11.1820000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +38|2023-10-06T21:14:11.1820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|8||82.50|91.86|0.00|1.47|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:11.1820000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +26|2023-10-06T21:14:11.1820000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +38|2023-10-06T21:14:11.1820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7800|10000|13||88.61|95.92|0.00|1.33|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:11.1820000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:14:11.1820000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +38|2023-10-06T21:14:11.1820000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6250|10000|13||82.57|90.87|0.00|2.20|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:11.1820000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +26|2023-10-06T21:14:11.1820000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +38|2023-10-06T21:14:11.1820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:11.1820000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +26|2023-10-06T21:14:11.1820000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|82773|81541| +37|2023-10-06T21:14:11.2260000-07:00|40022472|Zeromus|00019672|28513959||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:11.2260000-07:00|10FF0007|Kehabiqo Febiqo|00019672|106287|129844|10000|10000|0||96.24|93.40|0.00|1.54|1500|0|0|02|01000A97|0|C1A00000|||||| +261|2023-10-06T21:14:10.7360000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:14:10.8460000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:14:11.4040000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40022472|Zeromus|650003|44550000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|28513959|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|0001967F|0|1| +38|2023-10-06T21:14:11.4040000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:11.4040000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:14:11.4040000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +21|2023-10-06T21:14:11.4480000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22970000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|106287|129844|10000|10000|||98.93|93.53|0.00|1.53|73956|77430|10000|10000|||96.06|94.93|0.00|2.71|00019680|0|1| +21|2023-10-06T21:14:11.4480000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|AC70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28513959|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||82.87|91.60|0.00|2.16|00019681|0|1| +39|2023-10-06T21:14:11.5370000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||96.06|94.93|0.00|2.71| +21|2023-10-06T21:14:11.5370000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|456003|37390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28513959|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8550|10000|||90.81|94.75|0.00|2.64|00019682|0|1| +38|2023-10-06T21:14:11.5370000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8550|10000|13||90.81|94.75|0.00|2.64|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:11.5370000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:14:11.5800000-07:00|10FF0009|Zewo Negiwo|00019679|81177|81177|9510|10000|20||93.93|97.30|0.00|1.26|1800|0|0|03|06000A97|0|C1A00000|||||||||| +26|2023-10-06T21:14:11.5800000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:14:11.5800000-07:00|40022472|Zeromus|0001967A|28498557||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:11.5800000-07:00|10FF0006|Wowobora Gogobora|0001967A|81809|81809|8550|10000|13||90.81|94.75|0.00|2.64|1B00|0|0|02|07000A97|0|C1A00000|||||| +37|2023-10-06T21:14:11.5800000-07:00|40022472|Zeromus|0001967C|28498556||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:11.5810000-07:00|10FF0003|Gegehi Gehi|0001967C|73814|73814|6250|10000|13||83.99|92.78|0.00|2.20|2300|0|0|02|01000A97|0|C1A00000|||||| +21|2023-10-06T21:14:11.5810000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|101F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28513959|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.10|95.54|0.00|0.87|00019683|0|1| +21|2023-10-06T21:14:11.6260000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28513959|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8550|10000|||90.81|94.75|0.00|2.64|00019684|0|1| +261|2023-10-06T21:14:11.1910000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:14:11.6700000-07:00|10FF0008|Kokosaze Lulusaze|0001967B|90216|90216|10000|10000|11||92.53|96.03|0.00|0.86|1F00|0|0|02|03000A97|0|C1A00000|||||| +261|2023-10-06T21:14:11.2820000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:14:11.7150000-07:00|10FF0004|Buhojaqe Zijaqe|00019679|81541|81541|7800|10000|13||92.10|96.86|0.00|1.30|1C01|0|0|03|06000A97|0|C1A00000|||||||||| +26|2023-10-06T21:14:11.7150000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:14:11.7150000-07:00|10FF0009|Zewo Negiwo|00019679|81177|81177|9510|10000|20||94.60|97.58|0.00|1.29|1801|0|0|02|06000A97|0|C1A00000|||||| +39|2023-10-06T21:14:11.7150000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||92.53|96.03|0.00|0.86| +21|2023-10-06T21:14:11.7150000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|9500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28498556|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||86.56|92.28|0.00|1.47|00019685|0|1| +31|2023-10-06T21:14:11.7150000-07:00|10FF0001||||| +39|2023-10-06T21:14:11.7600000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||82.87|91.60|0.00|2.16| +24|2023-10-06T21:14:11.7600000-07:00|40022472|Zeromus|DoT|0|1B56|28498556|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6900|10000|||87.45|92.38|0.00|1.47| +38|2023-10-06T21:14:11.7600000-07:00|40022472|Zeromus|005A5A00|28491558|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:14:11.8030000-07:00|10FF0004|Buhojaqe Zijaqe|0001967E|81541|81541|7800|10000|13||92.86|97.08|0.00|1.29|1C00|0|0|02|06000A97|0|41A00000|||||| +21|2023-10-06T21:14:11.8040000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|750003|55430000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|28498556|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6250|10000|||84.39|93.20|0.00|2.20|00019686|0|1| +38|2023-10-06T21:14:11.8040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7800|10000|13||92.86|97.08|0.00|1.29|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:11.8040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5850|10000|13||84.39|93.20|0.00|2.20|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:11.8040000-07:00|7B3|Manafication|6.76|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +261|2023-10-06T21:14:11.3780000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:14:11.3780000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:14:11.8480000-07:00|10FF0008|Kokosaze Lulusaze|00019679|90216|90216|10000|10000|11||93.01|96.28|0.00|1.45|1F02|0|0|03|03000A97|0|C1A00000|||||||||| +26|2023-10-06T21:14:11.8480000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +37|2023-10-06T21:14:11.8480000-07:00|10FF0009|Zewo Negiwo|00019679|81177|81177|9510|10000|20||96.24|98.30|0.00|1.24|1802|0|0|02|06000A97|0|C1A00000|||||| +36|2023-10-06T21:14:11.8480000-07:00|3200|3| +38|2023-10-06T21:14:11.8480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|8||88.27|92.46|0.00|1.47|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:11.8480000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:14:11.4760000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:14:11.8930000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8000|10000|||93.75|97.33|0.00|1.29| +38|2023-10-06T21:14:11.8930000-07:00|40022472|Zeromus|005A5A00|28491558|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:11.8930000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +37|2023-10-06T21:14:11.9370000-07:00|10FF0009|Zewo Negiwo|0001967E|81177|81177|9510|10000|20||96.24|98.30|0.00|1.24|1801|0|0|02|06000A97|0|41A00000|||||| +38|2023-10-06T21:14:11.9370000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9510|10000|20||96.24|98.30|0.00|1.24|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:14:11.4760000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:14:11.9820000-07:00|10FF0007|Kehabiqo Febiqo|00019679|106287|129844|10000|10000|0||101.30|93.25|0.00|2.83|1503|0|0|03|01000A97|0|C1A00000|||||||||| +26|2023-10-06T21:14:11.9820000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:14:11.9820000-07:00|40022472|Zeromus|00019681|28488799||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:11.9820000-07:00|10FF000A|Dukaro Nezikaro|00019681|82773|82773|10000|10000|20||82.87|91.60|0.00|2.16|1E00|0|0|03|060001FB|0|C1A00000|||||||||| +39|2023-10-06T21:14:11.9820000-07:00|10FF0007|Kehabiqo Febiqo|107585|129844|10000|10000|||101.30|93.25|0.00|2.83| +39|2023-10-06T21:14:11.9820000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8750|10000|||92.60|95.45|0.00|2.64| +39|2023-10-06T21:14:12.0270000-07:00|10FF0009|Zewo Negiwo|81177|81177|9731|10000|||97.81|100.38|0.00|0.76| +21|2023-10-06T21:14:12.0270000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16DC0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|28488799|40478540|10000|10000|||100.00|80.10|0.00|0.00|107585|129844|10000|10000|||101.30|93.25|0.00|3.03|00019687|0|1| +37|2023-10-06T21:14:12.0710000-07:00|10FF0008|Kokosaze Lulusaze|0001967E|90216|90216|10000|10000|11||93.39|96.09|0.00|2.64|1F02|0|0|02|03000A97|0|41A00000|||||| +39|2023-10-06T21:14:12.0710000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7100|10000|||90.77|92.56|0.00|1.57| +26|2023-10-06T21:14:12.0720000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:14:12.0720000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28488799|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||93.39|96.09|0.00|2.64|00019688|0|1| +38|2023-10-06T21:14:12.0720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||93.39|96.09|0.00|2.64|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:14:12.1160000-07:00|10FF0006|Wowobora Gogobora|00019679|81809|81809|8750|10000|13||91.95|95.23|0.00|2.64|1B04|0|0|03|060004C3|0|41200000|||||||||| +26|2023-10-06T21:14:12.1160000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:14:12.1600000-07:00|40022472|Zeromus|00019684|28488622||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:12.1600000-07:00|10FF0006|Wowobora Gogobora|00019684|81809|81809|8750|10000|13||91.95|95.23|0.00|2.64|1B00|0|0|02|07000A97|0|C1A00000|||||| +39|2023-10-06T21:14:12.1600000-07:00|10FF0003|Gegehi Gehi|73814|73814|6050|10000|||84.65|93.29|0.00|2.31| +261|2023-10-06T21:14:11.7850000-07:00|Change|400229A3||||||||| +261|2023-10-06T21:14:11.7850000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:14:11.9030000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:14:11.9030000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:14:11.9030000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:14:12.2060000-07:00|10FF0006|Wowobora Gogobora|0001967E|81809|81809|8750|10000|13||93.05|95.32|0.00|2.37|1B03|0|0|02|07000A97|0|41A00000|||||| +21|2023-10-06T21:14:12.2060000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28488622|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||96.70|98.26|0.00|1.26|00019689|0|1| +38|2023-10-06T21:14:12.2060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8750|10000|13||93.05|95.32|0.00|2.37|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:14:12.2500000-07:00|10FF000A|Dukaro Nezikaro|00019679|82773|82773|10000|10000|20||82.87|91.58|0.00|1.98|1E05|0|0|04|060001FB|0|C1A00000|||||||||||||| +26|2023-10-06T21:14:12.2500000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:14:12.2500000-07:00|10FF0007|Kehabiqo Febiqo|00019680|116440|129844|10000|10000|0||101.30|93.25|0.00|-3.04|1500|0|0|02|01000A97|0|C1A00000|||||| +37|2023-10-06T21:14:12.2500000-07:00|40022472|Zeromus|00019685|28486238||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:12.2500000-07:00|10FF0001|Sesuga Sapisuga|00019685|129071|129071|7100|10000|8||91.61|92.56|0.00|1.57|1300|0|0|02|03000A97|0|C1A00000|||||| +21|2023-10-06T21:14:12.2500000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||82.87|91.58|0.00|1.98|82773|82773|10000|10000|||82.87|91.58|0.00|1.98|0001968A|0|1| +38|2023-10-06T21:14:12.2500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.87|91.58|0.00|1.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:12.2500000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +26|2023-10-06T21:14:12.2500000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:14:12.2940000-07:00|40022472|Zeromus|00019682|28472101||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:12.3390000-07:00|40022472|Zeromus|00019683|28467974||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:12.3400000-07:00|10FF0003|Gegehi Gehi|0001967E|73814|73814|6050|10000|13||85.55|93.52|0.00|2.20|2304|0|0|02|01000A97|0|41A00000|||||| +38|2023-10-06T21:14:12.3400000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6050|10000|13||85.55|93.52|0.00|2.20|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:14:12.3840000-07:00|10FF0003|Gegehi Gehi|00019679|73814|73814|6050|10000|13||86.45|93.75|0.00|2.08|2306|0|0|01|090004C3|0|41200000|| +26|2023-10-06T21:14:12.3840000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:14:12.3840000-07:00|40022472|Zeromus|0001967D|28453692||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:12.3840000-07:00|10FF0001|Sesuga Sapisuga|0001967D|129071|129071|7500|10000|8||92.46|92.56|0.00|1.58|1300|0|0|02|03000A97|0|C1A00000|||||| +37|2023-10-06T21:14:12.3840000-07:00|40022472|Zeromus|0001967F|28436199||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:12.3840000-07:00|10FF000A|Dukaro Nezikaro|0001967F|82773|82773|10000|10000|20||82.87|91.57|0.00|1.43|1E00|0|0|03|06000A81|0|C1F00000|||||||||| +20|2023-10-06T21:14:12.3840000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|98.43|101.65|0.00|0.53| +37|2023-10-06T21:14:12.4730000-07:00|10FF0007|Kehabiqo Febiqo|0001967E|116440|129844|10000|10000|0||101.30|93.24|-0.02|-3.05|1505|0|0|02|01000A97|0|41A00000|||||| +21|2023-10-06T21:14:12.4730000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|38880000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|116440|129844|10000|10000|||101.30|93.24|-0.02|-3.05|28467974|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001968B|0|1| +38|2023-10-06T21:14:12.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116440|129844|10000|10000|0||101.30|93.24|-0.02|-3.05|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:12.5160000-07:00|10FF0001|Sesuga Sapisuga|00019679|129071|129071|7500|10000|8||93.31|92.55|0.00|1.58|1307|0|0|03|03000A97|0|C1A00000|||||||||| +26|2023-10-06T21:14:12.5160000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:14:12.5610000-07:00|40022472|Zeromus|00019687|28430347||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:12.5610000-07:00|40022472|Zeromus|005A5A00|28430347|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:12.5610000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +37|2023-10-06T21:14:12.6060000-07:00|10FF000A|Dukaro Nezikaro|0001967E|82773|82773|10000|10000|20||82.91|91.28|-0.02|1.43|1E06|0|0|03|06000A81|0|C1F00000|||||||||| +38|2023-10-06T21:14:12.6060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||82.91|91.28|-0.02|1.43|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:12.2470000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:14:12.6520000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F240E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|28430347|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||99.12|99.73|0.00|1.05|0001968C|0|1| +37|2023-10-06T21:14:12.6940000-07:00|40022472|Zeromus|00019688|28421455||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:12.6950000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|223C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28430347|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.23|95.09|0.00|2.67|0001968D|0|1| +37|2023-10-06T21:14:12.7400000-07:00|10FF0001|Sesuga Sapisuga|0001967E|129071|129071|7500|10000|8||94.92|92.53|0.00|1.58|1307|0|0|02|03000A97|0|41A00000|||||| +37|2023-10-06T21:14:12.7400000-07:00|40022472|Zeromus|00019689|28421177||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:12.7400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|8||94.92|92.53|0.00|1.58|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:14:12.3430000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:14:12.3430000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:14:12.8730000-07:00|10FF000A|Dukaro Nezikaro|0001968A|82773|82773|10000|10000|20||83.42|88.46|-0.02|1.43|1E00|0|0|01|06000A81|0|41F00000|| +38|2023-10-06T21:14:12.8730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||83.42|88.46|-0.02|1.43|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:12.4450000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:14:12.4450000-07:00|Change|400229A3||||||||| +21|2023-10-06T21:14:13.0070000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|359A0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|28421177|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9731|10000|||99.21|101.46|-0.01|3.04|0001968E|0|1| +21|2023-10-06T21:14:13.0070000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|42730000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|28421177|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.59|88.18|0.00|1.43|0001968F|0|1| +38|2023-10-06T21:14:13.0070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||83.59|88.18|0.00|1.43|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:13.0070000-07:00|A82|Raiju Ready|28.04|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:14:12.5350000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:14:12.7740000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:14:13.2730000-07:00|10FF0007|Kehabiqo Febiqo|0001968B|101968||||||98.92|94.61|0.00|-1.32| +37|2023-10-06T21:14:13.3170000-07:00|40022472|Zeromus|0001968C|28421177|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:14:13.3170000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +21|2023-10-06T21:14:13.3620000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|FF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28421177|40478540|10000|10000|||100.00|80.10|0.00|0.00|101968|129844|10000|10000|||98.98|95.42|-0.02|-0.70|00019690|0|1| +21|2023-10-06T21:14:13.3620000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|3A4E0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28421177|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8750|10000|||99.30|95.80|0.00|2.49|00019691|0|1| +38|2023-10-06T21:14:13.3620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8450|10000|13||99.30|95.80|0.00|2.49|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:13.3620000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:14:12.8940000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:14:12.8940000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:14:13.4950000-07:00|40022472|Zeromus|0001968D|28412413||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:13.4950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|13||99.42|95.66|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:13.0120000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:14:13.0120000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:14:13.0120000-07:00|Change|40022490||||||||| +00|2023-10-06T21:14:13.0000000-07:00|0044|Zeromus|O stifled Darkness in moon abiding...| +04|2023-10-06T21:14:13.1290000-07:00|4002299D|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||97.23|88.36|0.00|2.61| +26|2023-10-06T21:14:13.5400000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:14:13.5400000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|726003|49720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28412413|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.72|91.06|0.00|2.13|00019692|0|1| +21|2023-10-06T21:14:13.5400000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7600|10000|||105.01|104.95|0.00|1.07|81541|81541|7600|10000|||105.01|104.95|0.00|1.07|00019693|0|1| +261|2023-10-06T21:14:13.1290000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:14:13.1290000-07:00|Remove|4002299D| +261|2023-10-06T21:14:13.1290000-07:00|Change|10FF0007||||||||| +20|2023-10-06T21:14:13.5850000-07:00|40022472|Zeromus|8B4C|Big Bang|40022472|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:13.5850000-07:00|4002248E|Zeromus|8BDE|Big Bang|10FF0004|Buhojaqe Zijaqe|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:14:13.5850000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:14:13.5850000-07:00|4002248F|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:14:13.5850000-07:00|40022490|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:14:13.1290000-07:00|Change|40022472||||||||| +21|2023-10-06T21:14:13.5860000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|2A560000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|28412413|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||101.66|91.27|0.00|1.90|00019694|0|1| +38|2023-10-06T21:14:13.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|8||101.66|91.27|0.00|1.90|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:13.5860000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:14:13.5860000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:14:13.6300000-07:00|40022472|Zeromus|00019686|28390586||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:13.6300000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28412413|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||84.09|87.36|0.00|2.00|00019695|0|1| +261|2023-10-06T21:14:13.2390000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:14:13.2390000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:13.3350000-07:00|Change|400229A3||||||||| +20|2023-10-06T21:14:13.7180000-07:00|4002248B|Zeromus|8BDE|Big Bang|10FF0007|Kehabiqo Febiqo|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:14:13.7180000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:14:13.7180000-07:00|4002248C|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:14:13.7180000-07:00|4002248D|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T21:14:13.7180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101968|129844|10000|10000|0||99.46|96.71|0.00|0.96|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:13.7180000-07:00|32|Sprint|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|1E|129844|129844| +261|2023-10-06T21:14:13.3350000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:14:13.3350000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:14:13.3350000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:14:13.3350000-07:00|Change|40022488||||||||| +261|2023-10-06T21:14:13.3350000-07:00|Change|40022489||||||||| +37|2023-10-06T21:14:13.7620000-07:00|40022472|Zeromus|0001968F|28373575||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:13.4320000-07:00|Change|10FF0006||||||||||| +20|2023-10-06T21:14:13.8070000-07:00|40022488|Zeromus|8BDE|Big Bang|10FF000A|Dukaro Nezikaro|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:14:13.8070000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:14:13.8070000-07:00|40022489|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:14:13.8070000-07:00|4002248A|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:14:13.4320000-07:00|Change|40022485||||||||| +261|2023-10-06T21:14:13.4320000-07:00|Change|40022486||||||||| +261|2023-10-06T21:14:13.4320000-07:00|Change|40022487||||||||| +37|2023-10-06T21:14:13.8970000-07:00|40022472|Zeromus|00019690|28369491||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:13.8970000-07:00|40022485|Zeromus|8BDE|Big Bang|10FF0001|Sesuga Sapisuga|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:14:13.8970000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:14:13.8970000-07:00|40022486|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:14:13.8970000-07:00|40022487|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:14:13.8970000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|62440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28373575|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||84.09|87.36|0.00|2.00|00019696|0|1| +38|2023-10-06T21:14:13.8970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||84.09|87.36|0.00|2.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:13.8970000-07:00|A81|Meisui|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:14:13.5310000-07:00|Change|40022484||||||||| +261|2023-10-06T21:14:13.5310000-07:00|Change|40022483||||||||| +37|2023-10-06T21:14:13.9850000-07:00|40022472|Zeromus|00019691|28354565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:13.9850000-07:00|10FF0006|Wowobora Gogobora|00019691|81809|81809|9000|10000|13||99.75|95.29|0.00|3.13|1B00|0|0|01|09000B25|0|0|| +20|2023-10-06T21:14:13.9850000-07:00|40022482|Zeromus|8BDE|Big Bang|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|2.36| +27|2023-10-06T21:14:13.9850000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:14:13.9850000-07:00|40022483|Zeromus|8B4E|Big Bang|E0000000||5.700|88.00|100.00|0.00|0.00| +20|2023-10-06T21:14:13.9850000-07:00|40022484|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|-1.57| +21|2023-10-06T21:14:13.9850000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28373575|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||103.99|90.36|0.00|2.10|00019697|0|1| +38|2023-10-06T21:14:13.9850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|13||99.75|95.29|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +31|2023-10-06T21:14:13.9850000-07:00|10FF0001||||| +261|2023-10-06T21:14:13.5310000-07:00|Change|40022482||||||||||||||| +261|2023-10-06T21:14:13.5310000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:14:13.6210000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:14:13.6210000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:14:13.6210000-07:00|Change|40022490||||||||||| +21|2023-10-06T21:14:14.0310000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|452003|2BFA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28354565|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||99.75|95.29|0.00|3.13|00019698|0|1| +38|2023-10-06T21:14:14.0310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|13||99.75|95.29|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:14.0310000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:14:13.6210000-07:00|Change|40022480||||||||||||||||||| +261|2023-10-06T21:14:13.6210000-07:00|Change|40022481||||||||||||||||||| +20|2023-10-06T21:14:14.1190000-07:00|4002247F|Zeromus|8BDE|Big Bang|10FF0006|Wowobora Gogobora|4.700|83.50|83.50|0.00|0.00| +27|2023-10-06T21:14:14.1190000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:14:14.1190000-07:00|40022480|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|-2.36| +20|2023-10-06T21:14:14.1190000-07:00|40022481|Zeromus|8B4E|Big Bang|E0000000||5.700|116.50|83.50|0.00|0.00| +261|2023-10-06T21:14:13.6210000-07:00|Change|4002247F||||||||||||||||||||| +261|2023-10-06T21:14:13.6210000-07:00|Change|4002247D||||||||| +261|2023-10-06T21:14:13.6210000-07:00|Change|4002247E||||||||| +261|2023-10-06T21:14:13.6210000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:14:14.1630000-07:00|40022472|Zeromus|00019692|28335763||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:14.1630000-07:00|40022472|Zeromus|00019694|28324925||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:14.1630000-07:00|10FF0001|Sesuga Sapisuga|00019694|129071|129071|7500|10000|8||105.48|89.94|0.00|2.33|1300|0|0|02|0800076E|03|41F00000|||||| +37|2023-10-06T21:14:14.1630000-07:00|10FF0004|Buhojaqe Zijaqe|00019693|81541|81541|7600|10000|13||107.25|106.34|0.00|1.07|1C00|0|0|01|0A0004B4|0|41A80000|| +26|2023-10-06T21:14:14.1630000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:14:14.1630000-07:00|40022472|Zeromus|00019695|28322613||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:13.7410000-07:00|Change|4002248D||||||||||| +38|2023-10-06T21:14:14.1630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|8||105.48|89.94|0.00|2.33|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:13.8590000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:14:13.8590000-07:00|Change|4002248A||||||||||| +261|2023-10-06T21:14:13.8590000-07:00|Change|40022488||||||||||||| +20|2023-10-06T21:14:14.2080000-07:00|4002247D|Zeromus|8BDE|Big Bang|10FF0009|Zewo Negiwo|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:14:14.2080000-07:00|10FF0009|Zewo Negiwo|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:14:14.2080000-07:00|4002247E|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:14:14.2080000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|24440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28322613|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.34|89.29|0.00|1.96|00019699|0|1| +21|2023-10-06T21:14:14.2080000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|750003|55960000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|28322613|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6050|10000|||98.96|101.10|0.00|1.36|0001969A|0|1| +261|2023-10-06T21:14:13.8590000-07:00|Change|4002247C||||||||| +38|2023-10-06T21:14:14.2080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5650|10000|13||98.96|101.10|0.00|1.36|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:14.2080000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +21|2023-10-06T21:14:14.2520000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28322613|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.34|89.29|0.00|1.96|0001969B|0|1| +261|2023-10-06T21:14:13.8590000-07:00|Change|4002247B||||||||| +37|2023-10-06T21:14:14.2960000-07:00|40022472|Zeromus|0001968E|28308891||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:14.2960000-07:00|4002247B|Zeromus|8BDE|Big Bang|10FF0003|Gegehi Gehi|4.700|100.00|80.10|0.00|0.00| +27|2023-10-06T21:14:14.2960000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:14:14.2960000-07:00|4002247C|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:13.8590000-07:00|Change|4002247A||||||||| +261|2023-10-06T21:14:13.8590000-07:00|Change|40022485||||||||||||| +261|2023-10-06T21:14:13.8590000-07:00|Change|40022487||||||||||| +261|2023-10-06T21:14:13.8590000-07:00|Change|40022486||||||||||| +261|2023-10-06T21:14:13.9760000-07:00|Change|10FF0001||||||||| +20|2023-10-06T21:14:14.3850000-07:00|4002247A|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:14:14.3850000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.28|102.16|-0.02|1.64| +261|2023-10-06T21:14:13.9760000-07:00|Change|10FF0009||||||||||||||||||||| +261|2023-10-06T21:14:13.9760000-07:00|Change|40022484||||||||||| +261|2023-10-06T21:14:13.9760000-07:00|Change|40022483||||||||||| +261|2023-10-06T21:14:13.9760000-07:00|Change|40022479||||||||| +261|2023-10-06T21:14:14.0870000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:14:14.4730000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|23020000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|28308891|40478540|10000|10000|||100.00|80.10|0.00|0.00|101968|129844|10000|10000|||100.42|94.53|0.00|3.13|0001969C|0|1| +37|2023-10-06T21:14:14.5180000-07:00|40022472|Zeromus|00019697|28306639||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:14.5180000-07:00|40022479|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +39|2023-10-06T21:14:14.5180000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||96.06|94.93|0.00|2.88| +21|2023-10-06T21:14:14.5180000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28308891|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5650|10000|||99.28|101.32|0.00|3.12|0001969D|0|1| +261|2023-10-06T21:14:14.0870000-07:00|Change|40022478||||||||| +37|2023-10-06T21:14:14.5620000-07:00|40022472|Zeromus|00019696|28281483||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:14.6070000-07:00|40022478|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:14:14.2050000-07:00|Change|40022477||||||||| +38|2023-10-06T21:14:14.6520000-07:00|40022472|Zeromus|005A5A00|28281483|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:14:14.6520000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:14:14.2990000-07:00|Change|4002247D||||||||||||| +261|2023-10-06T21:14:14.2990000-07:00|Change|4002247E||||||||||| +20|2023-10-06T21:14:14.6960000-07:00|40022477|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +39|2023-10-06T21:14:14.6960000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||106.18|89.03|0.00|-2.52| +39|2023-10-06T21:14:14.7410000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||84.09|87.36|0.00|2.00| +24|2023-10-06T21:14:14.7410000-07:00|40022472|Zeromus|DoT|0|1D3D|28281483|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|9331|10000|||100.65|102.52|0.00|2.39| +38|2023-10-06T21:14:14.7410000-07:00|40022472|Zeromus|005A5A00|28273998|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:14:14.2990000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:14:14.2990000-07:00|Change|4002247B||||||||||||| +261|2023-10-06T21:14:14.2990000-07:00|Change|4002247C||||||||||| +37|2023-10-06T21:14:14.7850000-07:00|40022472|Zeromus|00019698|28262740||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:14.7850000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28281483|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||99.75|95.29|0.00|3.13|0001969E|0|1| +261|2023-10-06T21:14:14.3980000-07:00|Change|4002247A||||||||||| +37|2023-10-06T21:14:14.8730000-07:00|40022472|Zeromus|00019699|28253456||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:14.8730000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14780000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|101968|129844|10000|10000|||100.41|94.53|0.00|-3.12|73956|77430|10000|10000|||96.06|94.93|0.00|2.86|0001969F|0|1| +39|2023-10-06T21:14:14.8740000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7800|10000|||112.11|108.90|0.00|1.06| +36|2023-10-06T21:14:14.8740000-07:00|32DC|3| +39|2023-10-06T21:14:14.9620000-07:00|10FF0007|Kehabiqo Febiqo|103266|129844|10000|10000|||100.40|94.53|0.00|-3.13| +39|2023-10-06T21:14:14.9620000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9200|10000|||99.75|95.29|0.00|3.13| +261|2023-10-06T21:14:14.5920000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:14:14.5920000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:14:14.5920000-07:00|Change|40022479||||||||||| +37|2023-10-06T21:14:15.0070000-07:00|40022472|Zeromus|0001969B|28250904||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:15.0070000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|56260000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|28253456|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9331|10000|||100.84|102.70|-0.01|3.14|000196A0|0|1| +21|2023-10-06T21:14:15.0070000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|722003|50DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28253456|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5650|10000|||99.57|101.52|0.00|3.12|000196A1|0|1| +37|2023-10-06T21:14:15.0510000-07:00|40022472|Zeromus|0001969D|28250903||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:14.5920000-07:00|Change|40022478||||||||||| +39|2023-10-06T21:14:15.0510000-07:00|10FF0009|Zewo Negiwo|81177|81177|9152|10000|||100.85|102.71|0.00|-3.10| +26|2023-10-06T21:14:15.0510000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:14:15.0510000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|230A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28250904|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||108.85|88.19|0.00|2.77|000196A2|0|1| +20|2023-10-06T21:14:15.0510000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|113.44|109.92|0.00|1.29| +37|2023-10-06T21:14:15.0950000-07:00|40022472|Zeromus|0001969C|28241941||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:15.0950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7700|10000|||106.45|87.35|0.00|-2.97| +261|2023-10-06T21:14:14.7020000-07:00|Change|40022477||||||||||| +21|2023-10-06T21:14:15.1400000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|554003|511A0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|28250903|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||84.09|87.36|0.00|2.00|000196A3|0|1| +38|2023-10-06T21:14:15.1400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||84.09|87.36|0.00|2.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:15.1400000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:14:15.1850000-07:00|10FF0003|Gegehi Gehi|73814|73814|5850|10000|||99.57|101.52|0.00|3.12| +37|2023-10-06T21:14:15.3180000-07:00|40022472|Zeromus|0001969E|28241778||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:14.9270000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:14.9270000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:14:15.0420000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:14:15.0420000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:14:15.5850000-07:00|400229A3|Carbuncle|77698|77698|10000|10000|||98.37|96.64|0.00|2.76| +261|2023-10-06T21:14:15.1560000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:14:15.6740000-07:00|10FF0007|Kehabiqo Febiqo|0001969F|108506||||||96.82|91.16|0.00|3.13| +37|2023-10-06T21:14:15.6740000-07:00|40022472|Zeromus|000196A2|28232808||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:15.6740000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|154E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28241778|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||113.90|86.16|0.00|3.14|000196A4|0|1| +37|2023-10-06T21:14:15.7630000-07:00|40022472|Zeromus|0001969A|28210898||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:15.3360000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:14:15.8080000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B5B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28210898|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||84.09|87.36|0.00|2.00|000196A5|0|1| +21|2023-10-06T21:14:15.8540000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|28210898|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||96.11|97.73|0.00|-1.08|000196A6|0|1| +38|2023-10-06T21:14:15.8540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|13||96.11|97.73|0.00|-1.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:15.8540000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:14:15.8540000-07:00|400229A3|Carbuncle|005A5A00|0|77698|0|10000|0||98.37|96.64|0.00|2.76|0|0|0||||||| +26|2023-10-06T21:14:15.8540000-07:00|30|Well Fed|1617.41|10FF0006|Wowobora Gogobora|400229A3|Carbuncle|2964|77698|81809| +261|2023-10-06T21:14:15.4310000-07:00|Change|400229A3||||||||| +261|2023-10-06T21:14:15.4310000-07:00|Change|10FF0006||||||||| +38|2023-10-06T21:14:15.8980000-07:00|400229F3||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:14:15.8980000-07:00|40022472|Zeromus|000196A3|28190136||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:15.8980000-07:00|400229F3||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +03|2023-10-06T21:14:15.5310000-07:00|400229F3|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||96.48|101.23|0.00|2.89| +261|2023-10-06T21:14:15.5310000-07:00|Add|400229F3||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:14:15.9870000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|57740000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|28190136|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||115.22|111.35|0.00|-2.69|000196A7|0|1| +261|2023-10-06T21:14:15.5310000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:14:15.5310000-07:00|Change|400229F3||||| +37|2023-10-06T21:14:16.1640000-07:00|40022472|Zeromus|000196A1|28169436||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:16.1640000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2C420000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|28190136|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||105.52|85.91|0.00|-2.38|000196A8|0|1| +38|2023-10-06T21:14:16.1640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|8||105.52|85.91|0.00|-2.38|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:16.1640000-07:00|76E|Sword Oath|27.95|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +21|2023-10-06T21:14:16.2530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28190136|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||105.52|85.91|0.00|-2.38|000196A9|0|1| +31|2023-10-06T21:14:16.2530000-07:00|10FF0001||||| +261|2023-10-06T21:14:15.8320000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:14:16.2970000-07:00|40022472|Zeromus|000196A0|28147382||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:16.2970000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|100.85|102.71|0.00|-3.10| +37|2023-10-06T21:14:16.3410000-07:00|40022472|Zeromus|000196A5|28144475||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:16.3860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7950|10000|13||115.22|111.35|0.00|-2.69|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:16.0670000-07:00|Change|10FF0009||||||||||||| +23|2023-10-06T21:14:16.4760000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +37|2023-10-06T21:14:16.4760000-07:00|40022472|Zeromus|000196A4|28139021||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:16.4760000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9152|10000|20||100.85|102.71|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:16.4760000-07:00|9D|Presence of Mind|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:14:16.4760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9750|10000|13||94.08|100.43|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:16.0670000-07:00|Change|4002284A||||||||||| +26|2023-10-06T21:14:16.5200000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:14:16.5200000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|23310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28144475|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||115.98|84.86|0.00|-1.86|000196AA|0|1| +261|2023-10-06T21:14:16.2830000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:14:16.3790000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:14:16.7440000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28139021|40478540|10000|10000|||100.00|80.10|0.00|0.00|108506|129844|10000|10000|||93.89|84.31|0.00|-3.05|000196AB|0|1| +37|2023-10-06T21:14:16.7880000-07:00|40022472|Zeromus|000196A9|28137081||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:16.7880000-07:00|40022472|Zeromus|000196A7|28114693||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:16.7880000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|BAB0000|FCE30E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|28139021|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|9152|10000|||100.85|102.75|0.00|1.70|000196AC|0|1| +261|2023-10-06T21:14:16.3790000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:14:16.8780000-07:00|10FF0006|Wowobora Gogobora|000196A6|81809|81809|9750|10000|13||92.14|102.04|0.00|-1.20|1B00|0|0|01|09000AA4|0|0|| +38|2023-10-06T21:14:16.8780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9750|10000|13||92.14|102.04|0.00|-1.20|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:14:16.9220000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|35CA0000|143E|340000|4|18408000|11B|2A8000|0|0|0|0|0|0|0|0|28114693|40478540|10000|10000|||100.00|80.10|0.00|0.00|108506|129844|10000|10000|||93.84|83.57|-0.02|2.94|000196AD|0|1| +21|2023-10-06T21:14:16.9220000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28114693|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||115.98|84.86|0.00|-1.86|000196AE|0|1| +21|2023-10-06T21:14:16.9670000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28114693|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||105.35|85.19|0.00|-2.98|000196AF|0|1| +261|2023-10-06T21:14:16.4730000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:14:16.4730000-07:00|Change|400229F3||| +38|2023-10-06T21:14:17.0120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108506|129844|10000|10000|0||93.92|83.41|0.00|2.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:14:17.0120000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8752|10000|20||100.99|103.79|0.00|2.28|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|00|81177|81809| +38|2023-10-06T21:14:17.0120000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||97.08|95.65|0.00|2.06|0|0|0|||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002284A|Ruby Carbuncle|00|77430|81809| +38|2023-10-06T21:14:17.0120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||115.98|84.86|0.00|-1.86|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:14:17.0120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9750|10000|13||91.24|102.31|0.00|-1.19|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:14:17.0120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|8||105.35|85.19|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:14:17.0120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7950|10000|13||115.48|112.03|0.00|-1.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:14:17.0120000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5850|10000|13||91.17|107.03|0.00|-1.07|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:14:17.0120000-07:00|400229F3|Ruby Ifrit|005A5A00|74223|77698|10000|10000|0||96.48|101.23|0.00|2.89|0|0|0||||||| +26|2023-10-06T21:14:17.0120000-07:00|511|Embolden|6.60|10FF0003|Gegehi Gehi|400229F3|Ruby Ifrit|00|77698|73814| +26|2023-10-06T21:14:17.0120000-07:00|30|Well Fed|1616.25|10FF0006|Wowobora Gogobora|400229F3|Ruby Ifrit|2964|77698|81809| +38|2023-10-06T21:14:17.0120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|20||84.09|87.36|0.00|2.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.0120000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|82773|81809| +37|2023-10-06T21:14:17.1440000-07:00|40022472|Zeromus|000196AA|28105684||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:17.1900000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|23380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28105684|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||115.98|84.86|0.00|-1.86|000196B0|0|1| +37|2023-10-06T21:14:17.2780000-07:00|40022472|Zeromus|000196AB|28102529||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:17.0310000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:14:17.3670000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2FBA0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|28102529|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||84.09|87.41|0.00|1.49|000196B1|0|1| +261|2023-10-06T21:14:17.0310000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:14:17.4560000-07:00|40022472|Zeromus|000196A8|28091199||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:17.4560000-07:00|10FF0001|Sesuga Sapisuga|000196A8|129071|129071|8100|10000|8||104.16|83.24|0.00|-2.80|1300|0|0|0| +261|2023-10-06T21:14:17.0310000-07:00|Change|4002284A||||||||||| +261|2023-10-06T21:14:17.0310000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:14:17.5450000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||99.63|97.45|0.00|1.06| +37|2023-10-06T21:14:17.5890000-07:00|40022472|Zeromus|000196AF|28091199|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020004A9|0|41200000|| +26|2023-10-06T21:14:17.5890000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:14:17.2430000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:14:17.6780000-07:00|40022472|Zeromus|000196AE|28088247||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:17.7220000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||115.98|84.86|0.00|-1.86| +21|2023-10-06T21:14:17.7220000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|8752|10000|||100.88|107.83|0.00|0.16|81177|81177|8752|10000|||100.88|107.83|0.00|0.16|000196B2|0|1| +37|2023-10-06T21:14:17.7660000-07:00|40022472|Zeromus|000196B1|28076029||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:17.7660000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||83.98|87.70|0.00|2.06| +24|2023-10-06T21:14:17.7660000-07:00|40022472|Zeromus|DoT|0|19B6|28088247|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8100|10000|||103.83|82.53|0.00|-2.80| +38|2023-10-06T21:14:17.7670000-07:00|40022472|Zeromus|005A5A00|28069447|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:14:17.8570000-07:00|40022472|Zeromus|000196B0|28060431||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:14:17.8570000-07:00|33B8|3| +38|2023-10-06T21:14:17.8570000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8752|10000|0||100.81|108.40|0.00|0.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.8570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:14:17.8570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||115.98|84.86|0.00|-1.86|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.8570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:14:17.8570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9750|10000|0||84.43|104.68|0.00|-1.24|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.8570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:14:17.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||103.83|82.53|0.00|-2.80|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.8570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:14:17.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7950|10000|0||117.89|116.29|0.00|0.36|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.8570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:14:17.8570000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5850|10000|0||91.98|110.77|0.00|2.87|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.8570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:14:17.8570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||83.83|88.10|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:17.8570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:14:17.4300000-07:00|Change|400229A3||||||||| +39|2023-10-06T21:14:17.9000000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8150|10000|||117.89|116.29|0.00|0.36| +20|2023-10-06T21:14:17.9000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|117.89|116.29|0.00|0.36| +21|2023-10-06T21:14:17.9450000-07:00|400229F3|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|150003|657B0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|28060431|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||96.48|101.23|0.00|2.89|000196B3|0|1| +39|2023-10-06T21:14:17.9900000-07:00|10FF0007|Kehabiqo Febiqo|109804|129844|10000|10000|||94.28|82.42|-0.01|2.87| +261|2023-10-06T21:14:17.6190000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:14:17.6190000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:14:17.9900000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9950|10000|||82.59|104.84|0.00|-1.36| +21|2023-10-06T21:14:17.9900000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28060431|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.64|89.92|0.00|1.81|000196B4|0|1| +39|2023-10-06T21:14:18.0340000-07:00|10FF0009|Zewo Negiwo|81177|81177|8973|10000|||100.70|109.44|0.00|0.14| +21|2023-10-06T21:14:18.0340000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28060431|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||115.98|84.86|0.00|-1.86|000196B5|0|1| +38|2023-10-06T21:14:18.0340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||115.98|84.86|0.00|-1.86|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:18.0340000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +37|2023-10-06T21:14:18.0780000-07:00|40022472|Zeromus|000196AC|28057444|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:14:18.0780000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +39|2023-10-06T21:14:18.0780000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8300|10000|||103.83|82.53|0.00|-2.80| +39|2023-10-06T21:14:18.1680000-07:00|10FF0003|Gegehi Gehi|73814|73814|6050|10000|||92.12|112.51|0.00|-2.14| +21|2023-10-06T21:14:18.2570000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|28B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28057444|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.47|91.74|0.00|1.53|000196B6|0|1| +37|2023-10-06T21:14:18.3460000-07:00|10FF0009|Zewo Negiwo|000196B2|81177|81177|8973|10000|0||100.69|109.45|0.00|0.14|1800|0|0|01|020004B4|0|41A80000|| +26|2023-10-06T21:14:18.3460000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +20|2023-10-06T21:14:18.3460000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|81.57|104.63|0.00|-0.70| +37|2023-10-06T21:14:18.4340000-07:00|40022472|Zeromus|000196AD|28043674||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:18.4340000-07:00|10FF0007|Kehabiqo Febiqo|000196AD|116012||||||94.29|82.41|0.00|2.87| +261|2023-10-06T21:14:18.0770000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:14:18.0770000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:14:18.5230000-07:00|40022472|Zeromus|000196B4|28041422||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:18.5230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28043674|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||103.83|82.53|0.00|-2.80|000196B7|0|1| +20|2023-10-06T21:14:18.5230000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|90.96|114.51|0.00|-0.90| +31|2023-10-06T21:14:18.5230000-07:00|10FF0001||||| +21|2023-10-06T21:14:18.5670000-07:00|4002248E|Zeromus|8BDE|Big Bang|10FF0004|Buhojaqe Zijaqe|550003|657E0000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|81541|81541|8150|10000|||118.43|117.20|0.00|-2.68|44|44|0|10000|||100.00|100.00|0.00|0.00|000196B8|0|1| +38|2023-10-06T21:14:18.5670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8150|10000|0||118.43|117.20|0.00|-2.68|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:18.5670000-07:00|B7D|Magic Vulnerability Up|2.00|4002248E|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +261|2023-10-06T21:14:18.1900000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:14:18.1900000-07:00|Change|4002284A||||||||| +261|2023-10-06T21:14:18.2900000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:14:18.6570000-07:00|40022472|Zeromus|000196B5|28032586||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:18.6570000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14780000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|116012|129844|10000|10000|||94.29|82.41|0.00|2.87|73956|77430|10000|10000|||103.85|100.40|0.00|2.14|000196B9|0|1| +21|2023-10-06T21:14:18.6570000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|150A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28041422|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.43|84.64|0.00|2.78|000196BA|0|1| +21|2023-10-06T21:14:18.6570000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2B8B0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|28041422|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||103.83|82.53|0.00|-2.14|000196BB|0|1| +38|2023-10-06T21:14:18.6570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|0||103.83|82.53|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:18.6570000-07:00|76E|Sword Oath|25.46|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:14:18.7010000-07:00|4002248B|Zeromus|8BDE|Big Bang|10FF0007|Kehabiqo Febiqo|550003|46540000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|116012|129844|10000|10000|||94.29|82.41|0.00|2.87|44|44|0|10000|||100.00|100.00|0.00|0.00|000196BC|0|1| +38|2023-10-06T21:14:18.7010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116012|129844|10000|10000|0||94.29|82.41|0.00|2.87|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:18.7010000-07:00|B7D|Magic Vulnerability Up|2.00|4002248B|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +261|2023-10-06T21:14:18.2900000-07:00|Change|4002248B||||||||||| +21|2023-10-06T21:14:18.7900000-07:00|40022488|Zeromus|8BDE|Big Bang|10FF000A|Dukaro Nezikaro|550003|75ED0000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||83.36|92.97|0.00|2.23|44|44|0|10000|||100.00|100.00|0.00|0.00|000196BD|0|1| +261|2023-10-06T21:14:18.3830000-07:00|Change|40022488||||||||||||| +38|2023-10-06T21:14:18.7900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||83.36|92.97|0.00|2.23|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:18.7900000-07:00|B7D|Magic Vulnerability Up|2.00|40022488|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +21|2023-10-06T21:14:18.8340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|339B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|28032586|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8150|10000|||118.43|117.20|0.00|-2.68|000196BE|0|1| +21|2023-10-06T21:14:18.8780000-07:00|40022485|Zeromus|8BDE|Big Bang|10FF0001|Sesuga Sapisuga|550003|43D30000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|129071|129071|8300|10000|||103.83|82.53|0.00|-2.14|44|44|0|10000|||100.00|100.00|0.00|0.00|000196BF|0|1| +38|2023-10-06T21:14:18.8780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|0||103.83|82.53|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:18.8780000-07:00|B7D|Magic Vulnerability Up|2.00|40022485|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +261|2023-10-06T21:14:18.4820000-07:00|Change|40022485||||||||||||| +37|2023-10-06T21:14:18.9230000-07:00|40022472|Zeromus|000196B6|28022164||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:18.9670000-07:00|40022482|Zeromus|8BDE|Big Bang|10FF0008|Kokosaze Lulusaze|550003|76360000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||116.63|84.56|0.00|-1.83|44|44|0|10000|||100.00|100.00|0.00|0.00|000196C0|0|1| +38|2023-10-06T21:14:18.9670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||116.63|84.56|0.00|-1.83|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:18.9670000-07:00|B7D|Magic Vulnerability Up|2.00|40022482|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +261|2023-10-06T21:14:18.4820000-07:00|Change|40022482||||||||||||| +37|2023-10-06T21:14:19.0570000-07:00|40022472|Zeromus|000196B7|28020424||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:18.5720000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T21:14:18.5720000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T21:14:19.1020000-07:00|4002247F|Zeromus|8BDE|Big Bang|10FF0006|Wowobora Gogobora|550003|66F90000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|81809|81809|9950|10000|||80.80|104.05|0.00|2.47|44|44|0|10000|||100.00|100.00|0.00|0.00|000196C1|0|1| +38|2023-10-06T21:14:19.1020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9950|10000|0||80.80|104.05|0.00|2.47|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:19.1020000-07:00|B7D|Magic Vulnerability Up|2.00|4002247F|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +261|2023-10-06T21:14:18.6920000-07:00|Change|4002247F||||||||||||| +37|2023-10-06T21:14:19.1920000-07:00|10FF0004|Buhojaqe Zijaqe|000196B8|55559|81541|7750|10000|0||118.43|117.20|0.00|-2.68|1C00|0|0|01|03000B7D|0|3FB5C290|| +20|2023-10-06T21:14:19.1920000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.69|109.45|0.00|0.14| +21|2023-10-06T21:14:19.1920000-07:00|4002247D|Zeromus|8BDE|Big Bang|10FF0009|Zewo Negiwo|550003|69780000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|81177|81177|8973|10000|||100.69|109.45|0.00|0.14|44|44|0|10000|||100.00|100.00|0.00|0.00|000196C2|0|1| +38|2023-10-06T21:14:19.1920000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|8973|10000|0||100.69|109.45|0.00|0.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:19.1920000-07:00|B7D|Magic Vulnerability Up|2.00|4002247D|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +261|2023-10-06T21:14:18.8020000-07:00|Change|4002247D||||||||||||| +21|2023-10-06T21:14:19.2800000-07:00|4002247B|Zeromus|8BDE|Big Bang|10FF0003|Gegehi Gehi|550003|69EF0000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|73814|73814|6050|10000|||90.35|115.65|0.00|2.88|44|44|0|10000|||100.00|100.00|0.00|0.00|000196C3|0|1| +38|2023-10-06T21:14:19.2800000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6050|10000|0||90.35|115.65|0.00|2.88|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:19.2800000-07:00|B7D|Magic Vulnerability Up|2.00|4002247B|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +261|2023-10-06T21:14:18.8020000-07:00|Change|4002247B||||||||||||| +261|2023-10-06T21:14:18.9120000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:14:19.3250000-07:00|10FF0007|Kehabiqo Febiqo|000196BC|98008|129844|10000|10000|0||94.29|82.41|0.00|2.87|1500|0|0|01|04000B7D|0|3FB5E354|| +21|2023-10-06T21:14:19.3700000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16400000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|28020424|40478540|10000|10000|||100.00|80.10|0.00|0.00|98008|129844|10000|10000|||94.29|82.41|0.00|2.87|000196C4|0|1| +37|2023-10-06T21:14:19.4140000-07:00|10FF000A|Dukaro Nezikaro|000196BD|52584|82773|10000|10000|0||83.36|92.97|0.00|2.23|1E00|0|0|01|03000B7D|0|3FB5A1CB|| +38|2023-10-06T21:14:19.4140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55559|81541|8300|10000|0||118.43|117.17|0.00|-2.73|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:19.4600000-07:00|10FF0007|Kehabiqo Febiqo|000196B9|103248||||||94.29|82.41|0.00|1.96| +37|2023-10-06T21:14:19.4600000-07:00|40022472|Zeromus|000196BA|28015038||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:19.4600000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42710003|30C60000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|28020424|40478540|10000|10000|||100.00|80.10|0.00|0.00|52584|82773|10000|10000|||83.36|92.97|0.00|2.23|000196C5|0|1| +37|2023-10-06T21:14:19.5040000-07:00|10FF0001|Sesuga Sapisuga|000196BF|111708|129071|8300|10000|0||103.83|82.53|0.00|-2.14|1300|0|0|01|06000B7D|0|3FB58106|| +21|2023-10-06T21:14:19.5040000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|4DEC0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|28020424|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.78|84.49|0.00|-1.83|000196C6|0|1| +38|2023-10-06T21:14:19.5040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||80.80|104.05|0.00|2.47|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:19.1480000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:14:19.5480000-07:00|4002248F|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196C7|0|0| +21|2023-10-06T21:14:19.5480000-07:00|40022490|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196C8|0|0| +38|2023-10-06T21:14:19.5480000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|9523|10000|0||100.69|109.45|0.00|2.70|0|0|0|||||||||||||||||||||||||||| +04|2023-10-06T21:14:19.1480000-07:00|400229A3|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||98.34|96.91|0.00|2.20| +261|2023-10-06T21:14:19.1480000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:14:19.1480000-07:00|Change|40022490||||||||||| +261|2023-10-06T21:14:19.2400000-07:00|Remove|400229A3| +37|2023-10-06T21:14:19.5920000-07:00|10FF0008|Kokosaze Lulusaze|000196C0|59954|90216|10000|10000|0||116.78|84.49|0.00|-1.83|1F00|0|0|01|02000B7D|0|3FB5A1CB|| +21|2023-10-06T21:14:19.5920000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|12EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28015038|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.78|84.49|0.00|-1.83|000196C9|0|1| +37|2023-10-06T21:14:19.6360000-07:00|40022472|Zeromus|000196BE|28001827||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:19.6810000-07:00|4002248C|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196CA|0|0| +21|2023-10-06T21:14:19.6810000-07:00|4002248D|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196CB|0|0| +261|2023-10-06T21:14:19.2400000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:14:19.2400000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:14:19.2400000-07:00|Change|4002248C||||||||||| +37|2023-10-06T21:14:19.7250000-07:00|10FF0006|Wowobora Gogobora|000196C1|55448|81809|10000|10000|0||80.80|104.05|0.00|2.47|1B00|0|0|01|03000B7D|0|3FB5E354|| +21|2023-10-06T21:14:19.7700000-07:00|40022489|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196CC|0|0| +21|2023-10-06T21:14:19.7700000-07:00|4002248A|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196CD|0|0| +261|2023-10-06T21:14:19.3380000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:14:19.3380000-07:00|Change|4002248A||||||||||| +37|2023-10-06T21:14:19.8140000-07:00|10FF0009|Zewo Negiwo|000196C2|54177|81177|9523|10000|0||100.69|109.45|0.00|-3.12|1800|0|0|01|03000B7D|0|3FB5E354|| +21|2023-10-06T21:14:19.8580000-07:00|40022486|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196CE|0|0| +21|2023-10-06T21:14:19.8580000-07:00|40022487|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196CF|0|0| +261|2023-10-06T21:14:19.4320000-07:00|Change|40022486||||||||||| +261|2023-10-06T21:14:19.4320000-07:00|Change|40022487||||||||||| +37|2023-10-06T21:14:19.9030000-07:00|40022472|Zeromus|000196C4|27996131||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:19.9030000-07:00|10FF0003|Gegehi Gehi|000196C3|46695|73814|6050|10000|0||90.35|115.65|0.00|2.88|2300|0|0|01|04000B7D|0|3FB60418|| +37|2023-10-06T21:14:19.9030000-07:00|40022472|Zeromus|000196B3|27970152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:19.9480000-07:00|40022472|Zeromus|000196BB|27959005||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:19.9480000-07:00|10FF0001|Sesuga Sapisuga|000196BB|111708|129071|8700|10000|0||103.83|82.53|0.00|-2.14|1300|0|0|0| +21|2023-10-06T21:14:19.9480000-07:00|40022483|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196D0|0|0| +21|2023-10-06T21:14:19.9480000-07:00|40022484|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196D1|0|0| +21|2023-10-06T21:14:19.9480000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|230F0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|28001827|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6050|10000|||90.35|115.65|0.00|2.88|000196D2|0|1| +38|2023-10-06T21:14:19.9480000-07:00|10FF0003|Gegehi Gehi|005A5A23|46695|73814|5850|10000|0||90.35|115.65|0.00|2.88|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:19.9480000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:14:19.5260000-07:00|Change|40022484||||||||||| +261|2023-10-06T21:14:19.5260000-07:00|Change|40022483||||||||||| +261|2023-10-06T21:14:19.5260000-07:00|Change|10FF0001||| +261|2023-10-06T21:14:19.6190000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T21:14:19.6190000-07:00|Change|10FF0006||||| +21|2023-10-06T21:14:20.0810000-07:00|40022480|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196D3|0|0| +21|2023-10-06T21:14:20.0810000-07:00|40022481|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196D4|0|0| +261|2023-10-06T21:14:19.6190000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:14:19.6190000-07:00|Change|40022481||||||||||| +37|2023-10-06T21:14:20.1260000-07:00|40022472|Zeromus|000196C5|27946519||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:20.1260000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27959005|40478540|10000|10000|||100.00|80.10|0.00|0.00|103248|129844|10000|10000|||94.29|82.41|0.00|1.96|000196D5|0|1| +21|2023-10-06T21:14:20.1260000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|380A0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|27959005|40478540|10000|10000|||100.00|80.10|0.00|0.00|54177|81177|9523|10000|||100.69|109.45|0.00|-3.12|000196D6|0|1| +21|2023-10-06T21:14:20.1710000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|19680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27959005|40478540|10000|10000|||100.00|80.10|0.00|0.00|59954|90216|10000|10000|||116.78|84.49|0.00|-1.83|000196D7|0|1| +21|2023-10-06T21:14:20.1710000-07:00|4002247E|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196D8|0|0| +21|2023-10-06T21:14:20.1710000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27959005|40478540|10000|10000|||100.00|80.10|0.00|0.00|52584|82773|10000|10000|||83.36|92.97|0.00|2.23|000196D9|0|1| +261|2023-10-06T21:14:19.8540000-07:00|Change|4002247E||||||||||| +21|2023-10-06T21:14:20.2600000-07:00|4002247C|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196DA|0|0| +37|2023-10-06T21:14:20.3040000-07:00|40022472|Zeromus|000196C6|27926571||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:20.3490000-07:00|40022472|Zeromus|000196C9|27921729||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:20.3490000-07:00|4002247A|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196DB|0|0| +261|2023-10-06T21:14:19.9730000-07:00|Change|4002247C||||||||||| +261|2023-10-06T21:14:19.9730000-07:00|Change|4002247A||||||||||| +20|2023-10-06T21:14:20.4370000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|118.61|116.89|0.00|1.55| +21|2023-10-06T21:14:20.4810000-07:00|40022479|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196DC|0|0| +39|2023-10-06T21:14:20.5260000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||104.05|100.54|0.00|-2.94| +261|2023-10-06T21:14:20.0850000-07:00|Change|40022479||||||||||| +261|2023-10-06T21:14:20.2050000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:14:20.5710000-07:00|40022478|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196DD|0|0| +38|2023-10-06T21:14:20.5710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55559|81541|8300|10000|0||118.58|116.87|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:20.5710000-07:00|B7D|Magic Vulnerability Up|0.00|4002248E|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +21|2023-10-06T21:14:20.6150000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|154003|6B540000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|27921729|40478540|10000|10000|||100.00|80.10|0.00|0.00|55448|81809|10000|10000|||80.80|104.05|0.00|2.47|000196DE|0|1| +37|2023-10-06T21:14:20.6600000-07:00|40022472|Zeromus|000196D5|27918702||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:20.2050000-07:00|Change|40022478||||||||||| +21|2023-10-06T21:14:20.6600000-07:00|40022477|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000196DF|0|0| +261|2023-10-06T21:14:20.2050000-07:00|Change|40022477||||||||||| +261|2023-10-06T21:14:20.3020000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:14:20.7040000-07:00|40022472|Zeromus|000196D2|27909727||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:20.7040000-07:00|40022472|Zeromus|000196D9|27907444||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:20.7040000-07:00|10FF0008|Kokosaze Lulusaze|60856|90216|10000|10000|||116.78|84.49|0.00|-1.83| +38|2023-10-06T21:14:20.7040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103248|129844|10000|10000|0||94.29|82.41|0.00|1.96|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:20.7040000-07:00|B7D|Magic Vulnerability Up|0.00|4002248B|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +39|2023-10-06T21:14:20.7490000-07:00|10FF000A|Dukaro Nezikaro|53411|82773|10000|10000|||83.36|92.97|0.00|2.23| +24|2023-10-06T21:14:20.7490000-07:00|40022472|Zeromus|DoT|0|218F|27907444|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|111708|129071|8700|10000|||103.83|82.53|0.00|-2.14| +38|2023-10-06T21:14:20.7490000-07:00|40022472|Zeromus|005A5A00|27898853|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T21:14:20.7920000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27907444|40478540|10000|10000|||100.00|80.10|0.00|0.00|111708|129071|8700|10000|||103.83|82.53|0.00|-2.14|000196E0|0|1| +38|2023-10-06T21:14:20.7920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53411|82773|10000|10000|0||83.36|92.97|0.00|2.23|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:20.7920000-07:00|B7D|Magic Vulnerability Up|0.00|40022488|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +31|2023-10-06T21:14:20.7920000-07:00|10FF0001||||| +37|2023-10-06T21:14:20.8360000-07:00|40022472|Zeromus|000196D7|27892349||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:14:20.8360000-07:00|3494|3| +39|2023-10-06T21:14:20.8810000-07:00|10FF0004|Buhojaqe Zijaqe|56374|81541|8500|10000|||118.58|116.87|0.00|3.04| +38|2023-10-06T21:14:20.8810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111708|129071|8700|10000|0||103.83|82.53|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:20.8810000-07:00|B7D|Magic Vulnerability Up|0.00|40022485|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +39|2023-10-06T21:14:20.9690000-07:00|10FF0007|Kehabiqo Febiqo|104546|129844|10000|10000|||94.29|82.41|0.00|1.96| +39|2023-10-06T21:14:20.9690000-07:00|10FF0006|Wowobora Gogobora|56266|81809|9900|10000|||80.80|104.05|0.00|2.47| +38|2023-10-06T21:14:20.9690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60856|90216|10000|10000|0||116.78|84.49|0.00|-1.83|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:20.9690000-07:00|B7D|Magic Vulnerability Up|0.00|40022482|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +261|2023-10-06T21:14:20.5910000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T21:14:21.0130000-07:00|10FF0009|Zewo Negiwo|54988|81177|9344|10000|||100.69|109.45|0.00|-3.12| +39|2023-10-06T21:14:21.0580000-07:00|10FF0001|Sesuga Sapisuga|112998|129071|8900|10000|||103.83|82.53|0.00|-2.14| +261|2023-10-06T21:14:20.7030000-07:00|Change|10FF0001||| +38|2023-10-06T21:14:21.1020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56266|81809|9900|10000|0||80.80|104.05|0.00|2.47|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.1020000-07:00|B7D|Magic Vulnerability Up|0.00|4002247F|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +261|2023-10-06T21:14:20.7030000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T21:14:21.1480000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|752003|4F4E0000|200004|3EEF8000|0|0|0|0|0|0|0|0|0|0|0|0|27892349|40478540|10000|10000|||100.00|80.10|0.00|0.00|112998|129071|8900|10000|||103.83|82.53|0.00|-2.14|000196E1|0|1| +21|2023-10-06T21:14:21.1480000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|456003|4ACC0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|27892349|40478540|10000|10000|||100.00|80.10|0.00|0.00|46695|73814|5850|10000|||90.35|115.65|0.00|2.88|000196E2|0|1| +38|2023-10-06T21:14:21.1480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|112998|129071|7900|10000|0||103.83|82.53|0.00|-2.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.1480000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:14:21.1480000-07:00|10FF0003|Gegehi Gehi|005A5A23|46695|73814|5650|10000|0||90.35|115.65|0.00|2.88|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.1480000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:14:21.1480000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:14:20.7030000-07:00|Change|10FF0003||| +39|2023-10-06T21:14:21.1920000-07:00|10FF0003|Gegehi Gehi|47433|73814|5850|10000|||90.35|115.65|0.00|2.88| +38|2023-10-06T21:14:21.1920000-07:00|10FF0009|Zewo Negiwo|005A5A18|54988|81177|9344|10000|0||100.69|109.45|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.1920000-07:00|B7D|Magic Vulnerability Up|0.00|4002247D|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +37|2023-10-06T21:14:21.2800000-07:00|40022472|Zeromus|000196DE|27864873||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:21.2800000-07:00|10FF0003|Gegehi Gehi|005A5A23|47433|73814|5850|10000|0||90.35|115.65|0.00|2.88|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.2800000-07:00|B7D|Magic Vulnerability Up|0.00|4002247B|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +37|2023-10-06T21:14:21.3250000-07:00|40022472|Zeromus|000196E0|27862641||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:21.3250000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|154003|59710000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|27864873|40478540|10000|10000|||100.00|80.10|0.00|0.00|56266|81809|9900|10000|||80.80|104.05|0.00|2.47|000196E3|0|1| +38|2023-10-06T21:14:21.3250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56266|81809|9900|10000|0||80.80|104.05|0.00|2.47|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.3250000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:14:21.3690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|52650000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27864873|40478540|10000|10000|||100.00|80.10|0.00|0.00|56374|81541|8500|10000|||118.58|116.87|0.00|-2.67|000196E4|0|1| +22|2023-10-06T21:14:21.4130000-07:00|10FF0009|Zewo Negiwo|DF1|Asylum|10FF0009|Zewo Negiwo|FCF10F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|54988|81177|9344|10000|||100.69|109.45|0.00|-3.12|54988|81177|9344|10000|||100.69|109.45|0.00|-3.12|000196E5|0|1| +261|2023-10-06T21:14:21.0520000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:14:21.4570000-07:00|40022472|Zeromus|000196D6|27848295||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:21.5470000-07:00|10FF0009|Zewo Negiwo|005A5A18|54988|81177|9344|10000|0||100.69|109.45|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:21.5470000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:14:21.6800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56374|81541|8100|10000|0||118.50|116.78|-0.02|-2.66|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.6800000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +21|2023-10-06T21:14:21.7240000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|1A770000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|27848295|40478540|10000|10000|||100.00|80.10|0.00|0.00|53411|82773|10000|10000|||85.81|93.52|0.00|1.45|000196E6|0|1| +261|2023-10-06T21:14:21.3630000-07:00|Change|10FF0006||||||||| +38|2023-10-06T21:14:21.7690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56374|81541|8100|10000|0||117.70|115.91|0.00|-2.53|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.7690000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +38|2023-10-06T21:14:21.8130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60856|90216|10000|10000|0||116.78|84.49|0.00|-1.83|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:21.8130000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +21|2023-10-06T21:14:21.8580000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32714003|2A260000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|27848295|40478540|10000|10000|||100.00|80.10|0.00|0.00|104546|129844|10000|10000|||94.29|82.43|0.00|1.64|000196E7|0|1| +261|2023-10-06T21:14:21.4530000-07:00|Change|10FF0009||||| +37|2023-10-06T21:14:21.9030000-07:00|40022472|Zeromus|000196E1|27827993||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:21.9030000-07:00|10FF0001|Sesuga Sapisuga|000196E1|129071||||||103.74|83.03|0.00|-1.37| +38|2023-10-06T21:14:21.9030000-07:00|10FF0009|Zewo Negiwo|005A5A18|54988|81177|9344|10000|0||100.69|109.45|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:21.9030000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|1E|81177|81541| +37|2023-10-06T21:14:21.9480000-07:00|40022472|Zeromus|000196E2|27808845||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:21.9480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104546|129844|10000|10000|0||94.29|82.45|0.00|1.97|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:21.9480000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:14:21.9480000-07:00|400229F3|Ruby Ifrit|005A5A00|0|77698|0|10000|0||96.48|101.23|0.00|2.89|0|0|0||||||| +30|2023-10-06T21:14:21.9480000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400229F3|Ruby Ifrit|00|77698|73814| +38|2023-10-06T21:14:21.9920000-07:00|400229F9||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:14:21.9920000-07:00|400229F9||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:14:21.5450000-07:00|Change|400229F3||||| +261|2023-10-06T21:14:21.5450000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:14:22.0370000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|217F0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|27808845|40478540|10000|10000|||100.00|80.10|0.00|0.00|60856|90216|10000|10000|||116.78|84.49|0.00|-1.83|000196E8|0|1| +38|2023-10-06T21:14:22.0370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60856|90216|10000|10000|0||116.78|84.49|0.00|-1.83|0|0|0||||||||||||||||||| +30|2023-10-06T21:14:22.0370000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +261|2023-10-06T21:14:21.6400000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:14:22.0820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56266|81809|9900|10000|0||87.18|96.09|0.00|2.47|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:22.0820000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:14:22.1250000-07:00|40022472|Zeromus|000196E6|27802070||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:22.1710000-07:00|40022472|Zeromus|000196E3|27779173||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:22.1710000-07:00|40022472|Zeromus|000196E4|27758080||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:22.1710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56266|81809|9900|10000|0||87.18|96.09|0.00|2.47|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:22.1710000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +261|2023-10-06T21:14:21.7530000-07:00|Change|10FF0003||| +38|2023-10-06T21:14:22.2150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53411|82773|10000|10000|0||86.92|94.31|0.00|2.30|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:22.2150000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +24|2023-10-06T21:14:22.2600000-07:00|10FF0009|Zewo Negiwo|HoT|777|EA8|54988|81177|9344|10000|||100.69|109.45|0.00|3.13|10FF0009|Zewo Negiwo|0|54988|81177|9344|10000|||100.69|109.45|0.00|3.13| +24|2023-10-06T21:14:22.2600000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E5C|53411|82773|10000|10000|||87.42|94.88|0.00|2.12|10FF0009|Zewo Negiwo|0|54988|81177|9344|10000|||100.69|109.45|0.00|3.13| +24|2023-10-06T21:14:22.2600000-07:00|10FF0006|Wowobora Gogobora|HoT|777|1637|56266|81809|9900|10000|||87.17|96.09|0.00|2.47|10FF0009|Zewo Negiwo|0|54988|81177|9344|10000|||100.69|109.45|0.00|3.13| +37|2023-10-06T21:14:22.2600000-07:00|10FF0009|Zewo Negiwo|000196E5|58740|81177|9344|10000|0||100.69|109.45|0.00|3.13|1800|0|0|02|03000777|0|41C00000|||||| +26|2023-10-06T21:14:22.2600000-07:00|777|Asylum|24.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:14:22.2600000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:14:22.2600000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|FCC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27758080|40478540|10000|10000|||100.00|80.10|0.00|0.00|60856|90216|10000|10000|||116.78|84.49|0.00|-1.83|000196E9|0|1| +38|2023-10-06T21:14:22.2600000-07:00|10FF0009|Zewo Negiwo|005A5A18|58740|81177|9344|10000|0||100.69|109.45|0.00|3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:14:22.2600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|61953|81809|9900|10000|0||87.17|96.09|0.00|2.47|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:22.2600000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:14:22.2600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57087|82773|10000|10000|0||87.42|94.88|0.00|2.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:22.2600000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +21|2023-10-06T21:14:22.3050000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27758080|40478540|10000|10000|||100.00|80.10|0.00|0.00|56266|81809|9900|10000|||87.17|96.09|0.00|2.47|000196EA|0|1| +38|2023-10-06T21:14:22.3050000-07:00|10FF0003|Gegehi Gehi|005A5A23|47433|73814|5850|10000|0||90.35|115.65|0.00|2.88|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:22.3050000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +21|2023-10-06T21:14:22.3490000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27758080|40478540|10000|10000|||100.00|80.10|0.00|0.00|53411|82773|10000|10000|||87.42|94.88|0.00|2.12|000196EB|0|1| +38|2023-10-06T21:14:22.3490000-07:00|10FF0003|Gegehi Gehi|005A5A23|47433|73814|5850|10000|0||90.35|115.65|0.00|2.88|0|0|0||||||||||||| +30|2023-10-06T21:14:22.3490000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +261|2023-10-06T21:14:21.9850000-07:00|Add|400229FA||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:21.9850000-07:00|Add|400229F9||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:14:21.9850000-07:00|400229F9|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||87.90|95.23|0.00|-0.67| +21|2023-10-06T21:14:22.3940000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|4|16C30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|58740|81177|9344|10000|||100.70|109.45|0.00|2.93|73956|77430|10000|10000|||104.05|100.54|0.00|-2.06|000196EC|0|1| +38|2023-10-06T21:14:22.3940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56374|81541|8650|10000|0||114.95|113.52|0.00|-2.32|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:21.9850000-07:00|Change|400229F9||| +38|2023-10-06T21:14:22.4380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104546|129844|10000|10000|0||94.29|82.60|0.00|1.92|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:22.4380000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +261|2023-10-06T21:14:22.1010000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:14:22.4830000-07:00|40022472|Zeromus|000196E7|27747290||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:22.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|61953|81809|10000|10000|0||87.18|96.09|0.00|2.33|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:14:22.4830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||104.56|87.16|0.00|-1.39|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:22.4830000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:14:22.5280000-07:00|10FF0009|Zewo Negiwo|HoT|777|E26|58740|81177|9344|10000|||100.72|109.45|0.00|2.54|10FF0009|Zewo Negiwo|0|58740|81177|9344|10000|||100.72|109.45|0.00|2.54| +24|2023-10-06T21:14:22.5280000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E69|57087|82773|10000|10000|||88.78|95.86|0.00|1.92|10FF0009|Zewo Negiwo|0|58740|81177|9344|10000|||100.72|109.45|0.00|2.54| +24|2023-10-06T21:14:22.5280000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E7D|61953|81809|9900|10000|||87.18|96.09|0.00|2.33|10FF0009|Zewo Negiwo|0|58740|81177|9344|10000|||100.72|109.45|0.00|2.54| +24|2023-10-06T21:14:22.5280000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E91|129071|129071|7900|10000|||104.56|87.16|0.00|-1.39|10FF0009|Zewo Negiwo|0|58740|81177|9344|10000|||100.72|109.45|0.00|2.54| +38|2023-10-06T21:14:22.5280000-07:00|10FF0009|Zewo Negiwo|005A5A18|62362|81177|9894|10000|0||100.72|109.45|0.00|2.54|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:14:22.5280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65662|81809|10000|10000|0||87.18|96.09|0.00|2.33|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:14:22.5280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||104.56|87.16|0.00|-1.39|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:22.5280000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:14:22.5280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|60776|82773|10000|10000|0||88.78|95.86|0.00|1.92|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:14:22.5720000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|714003|3C760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27758080|40478540|10000|10000|||100.00|80.10|0.00|0.00|104546|129844|10000|10000|||94.33|83.70|0.00|1.40|000196ED|0|1| +38|2023-10-06T21:14:22.5720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|60776|82773|10000|10000|0||88.78|95.86|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:22.5720000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|82773|81541| +20|2023-10-06T21:14:22.7080000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.73|109.22|0.00|2.08| +38|2023-10-06T21:14:22.7080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||104.86|88.81|0.00|-1.39|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:22.7080000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +261|2023-10-06T21:14:22.2970000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:22.2970000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:14:22.7950000-07:00|40022472|Zeromus|000196E8|27738715||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:22.3970000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:14:22.8390000-07:00|40022472|Zeromus|000196EA|27738562||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:22.8840000-07:00|40022472|Zeromus|000196EB|27735724||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:22.4880000-07:00|Change|10FF0009||||||||||||||||||||||||||| +38|2023-10-06T21:14:22.9290000-07:00|400229F9|Carbuncle|005A5A00|74223|77698|10000|10000|0||87.90|95.23|0.00|-0.67|0|0|0|||||||||| +26|2023-10-06T21:14:22.9290000-07:00|511|Embolden|0.68|10FF0003|Gegehi Gehi|400229F9|Carbuncle|00|77698|73814| +26|2023-10-06T21:14:22.9290000-07:00|30|Well Fed|1610.33|10FF0006|Wowobora Gogobora|400229F9|Carbuncle|2964|77698|81809| +26|2023-10-06T21:14:22.9290000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|400229F9|Carbuncle|01|77698|81809| +21|2023-10-06T21:14:22.9290000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65662|81809|10000|10000|||88.31|96.70|0.00|1.37|65662|81809|10000|10000|||88.31|96.70|0.00|1.37|000196EE|0|1| +37|2023-10-06T21:14:23.0170000-07:00|40022472|Zeromus|000196E9|27731680||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:22.5790000-07:00|Change|400229F9||| +34|2023-10-06T21:14:23.0180000-07:00|400229F9|Carbuncle|400229F9|Carbuncle|01| +21|2023-10-06T21:14:23.0620000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27735724|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||105.21|90.73|0.00|-1.39|000196EF|0|1| +31|2023-10-06T21:14:23.0620000-07:00|10FF0001||||| +261|2023-10-06T21:14:22.6900000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:14:23.1070000-07:00|10FF0003|Gegehi Gehi|005A5A23|47433|73814|5850|10000|0||90.41|115.57|0.00|2.68|0|0|0|||||||||| +30|2023-10-06T21:14:23.1070000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:14:23.1960000-07:00|40022472|Zeromus|000196ED|27716202||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:23.1960000-07:00|10FF0009|Zewo Negiwo|000196EC|68189||||||100.75|108.13|-0.01|3.09| +261|2023-10-06T21:14:22.8020000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:14:23.2410000-07:00|4002284A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||104.05|100.54|0.00|-0.45|0|0|0|||| +30|2023-10-06T21:14:23.2410000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002284A|Ruby Carbuncle|00|77430|73814| +38|2023-10-06T21:14:23.2410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56374|81541|8650|10000|0||111.34|109.83|0.00|-2.42|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:23.2410000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +26|2023-10-06T21:14:23.2850000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +22|2023-10-06T21:14:23.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|56374|81541|8650|10000|||111.34|109.83|0.00|-2.42|56374|81541|8650|10000|||111.34|109.83|0.00|-2.42|000196F0|0|1| +21|2023-10-06T21:14:23.3740000-07:00|400229F9|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|65662|81809|10000|10000|||90.02|97.33|0.00|1.34|74223|77698|10000|10000|||87.88|95.20|0.00|-0.25|000196F1|0|1| +38|2023-10-06T21:14:23.3740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65662|81809|10000|10000|19||90.02|97.33|0.00|1.34|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:23.3740000-07:00|A8E|Radiant Aegis|29.96|400229F9|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +38|2023-10-06T21:14:23.3740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||105.56|92.63|0.00|-1.39|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:23.3740000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +39|2023-10-06T21:14:23.5070000-07:00|4002284A|Ruby Carbuncle|73956|77430|10000|10000|||104.05|100.54|0.00|-0.41| +21|2023-10-06T21:14:23.5070000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|716003|17A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|104546|129844|10000|10000|||95.35|91.02|0.00|0.64|000196F2|0|1| +38|2023-10-06T21:14:23.5070000-07:00|10FF0009|Zewo Negiwo|005A5A18|68189|81177|9894|10000|0||100.76|108.05|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:23.5070000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +22|2023-10-06T21:14:23.5520000-07:00|40022472|Zeromus|8B4C|Big Bang|10FF0007|Kehabiqo Febiqo|750003|62480000|300E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|104546|129844|10000|10000|||95.52|91.78|0.00|0.48|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|000196F3|0|8| +22|2023-10-06T21:14:23.5520000-07:00|40022472|Zeromus|8B4C|Big Bang|10FF0001|Sesuga Sapisuga|750003|5F340000|300E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|129071|129071|7900|10000|||105.32|93.81|0.00|-1.40|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|000196F3|1|8| +22|2023-10-06T21:14:23.5520000-07:00|40022472|Zeromus|8B4C|Big Bang|10FF0008|Kokosaze Lulusaze|750003|9C5E0000|BC0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|60856|90216|10000|10000|||113.70|86.47|0.00|-0.99|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|000196F3|2|8| +22|2023-10-06T21:14:23.5520000-07:00|40022472|Zeromus|8B4C|Big Bang|10FF0006|Wowobora Gogobora|750003|57880000|730E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|65662|81809|10000|10000|||91.72|97.63|0.00|1.37|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|000196F3|3|8| +22|2023-10-06T21:14:23.5520000-07:00|40022472|Zeromus|8B4C|Big Bang|10FF000A|Dukaro Nezikaro|750003|A0120000|1E0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|60776|82773|10000|10000|||96.65|98.39|0.00|2.13|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|000196F3|4|8| +22|2023-10-06T21:14:23.5520000-07:00|40022472|Zeromus|8B4C|Big Bang|10FF0009|Zewo Negiwo|750003|8BBF0000|730E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|68189|81177|9894|10000|||100.76|108.05|0.00|-3.11|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|000196F3|5|8| +22|2023-10-06T21:14:23.5520000-07:00|40022472|Zeromus|8B4C|Big Bang|10FF0004|Buhojaqe Zijaqe|750003|924A0000|730E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|56374|81541|8650|10000|||110.11|108.62|0.00|-2.30|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|000196F3|6|8| +22|2023-10-06T21:14:23.5520000-07:00|40022472|Zeromus|8B4C|Big Bang|10FF0003|Gegehi Gehi|750003|91FF0000|D40E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|47433|73814|5850|10000|||92.19|112.85|0.00|2.57|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|000196F3|7|8| +261|2023-10-06T21:14:23.1530000-07:00|Change|40022472||||||||||||| +00|2023-10-06T21:14:23.0000000-07:00|0044|Zeromus|Coalesce and consume creation!| +37|2023-10-06T21:14:23.5970000-07:00|40022472|Zeromus|000196EF|27714473||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:23.5970000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|4.860|92.19|112.85|0.00|2.57| +261|2023-10-06T21:14:23.2460000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T21:14:23.6420000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|308B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|68189|81177|9894|10000|||100.76|108.05|0.00|-3.11|000196F4|0|1| +21|2023-10-06T21:14:23.6420000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|40ED0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27716202|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||105.32|93.81|0.00|-1.40|000196F5|0|1| +38|2023-10-06T21:14:23.6420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65662|81809|10000|10000|19||91.72|97.63|0.00|1.37|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:23.6420000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +38|2023-10-06T21:14:23.6420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||105.32|93.81|0.00|-1.40|0|0|0||||||||||||||||||| +30|2023-10-06T21:14:23.6420000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:14:23.6420000-07:00|400229F9|Carbuncle|005A5A00|74223|77698|10000|10000|0||87.88|95.20|0.00|1.06|0|0|0|||||||||| +30|2023-10-06T21:14:23.6420000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400229F9|Carbuncle|00|77698|73814| +261|2023-10-06T21:14:23.2460000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:23.2460000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:14:23.2460000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:14:23.7310000-07:00|10FF0008|Kokosaze Lulusaze|61758|90216|10000|10000|||113.16|86.98|0.00|-0.92| +23|2023-10-06T21:14:23.7750000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|Cancelled| +39|2023-10-06T21:14:23.7750000-07:00|10FF000A|Dukaro Nezikaro|61603|82773|10000|10000|||98.05|98.98|0.00|2.23| +24|2023-10-06T21:14:23.7750000-07:00|40022472|Zeromus|DoT|0|1981|27714473|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7900|10000|||104.57|94.87|0.00|-1.41| +38|2023-10-06T21:14:23.7750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104546|129844|10000|10000|0||95.89|93.24|0.00|0.36|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:14:23.7750000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +38|2023-10-06T21:14:23.7750000-07:00|40022472|Zeromus|005A5A00|27707944|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:14:23.3420000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:14:23.8630000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|150003|42970000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|27714473|40478540|10000|10000|||100.00|80.10|0.00|0.00|65662|81809|10000|10000|||93.58|97.82|0.00|1.41|000196F6|0|1| +36|2023-10-06T21:14:23.8630000-07:00|3570|3| +24|2023-10-06T21:14:23.9070000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|E26|61603|82773|10000|10000|||98.59|99.26|0.00|2.29|10FF0004|Buhojaqe Zijaqe|0|56374|81541|8650|10000|||109.43|107.98|0.00|-2.32| +24|2023-10-06T21:14:23.9070000-07:00|10FF0009|Zewo Negiwo|HoT|798|E67|68189|81177|9494|10000|||100.76|108.05|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|56374|81541|8650|10000|||109.43|107.98|0.00|-2.32| +24|2023-10-06T21:14:23.9070000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|EBE|129071|129071|7900|10000|||103.99|95.11|0.00|-1.41|10FF0004|Buhojaqe Zijaqe|0|56374|81541|8650|10000|||109.43|107.98|0.00|-2.32| +24|2023-10-06T21:14:23.9070000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D69|56374|81541|8650|10000|||109.43|107.98|0.00|-2.32|10FF0004|Buhojaqe Zijaqe|0|56374|81541|8650|10000|||109.43|107.98|0.00|-2.32| +24|2023-10-06T21:14:23.9070000-07:00|10FF0006|Wowobora Gogobora|HoT|798|EA3|65662|81809|10000|10000|||94.43|97.77|0.00|2.92|10FF0004|Buhojaqe Zijaqe|0|56374|81541|8650|10000|||109.43|107.98|0.00|-2.32| +24|2023-10-06T21:14:23.9070000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|CDD|104546|129844|10000|10000|||95.96|93.65|0.00|0.21|10FF0004|Buhojaqe Zijaqe|0|56374|81541|8650|10000|||109.43|107.98|0.00|-2.32| +261|2023-10-06T21:14:23.5280000-07:00|Change|10FF0009||||||||||||||||||||||| +24|2023-10-06T21:14:23.9080000-07:00|10FF0003|Gegehi Gehi|HoT|798|D65|47433|73814|5850|10000|||92.82|111.88|0.00|2.69|10FF0004|Buhojaqe Zijaqe|0|56374|81541|8650|10000|||109.43|107.98|0.00|-2.32| +37|2023-10-06T21:14:23.9080000-07:00|10FF0004|Buhojaqe Zijaqe|000196F0|59807|81541|8650|10000|0||109.43|107.98|0.00|-2.32|1C00|0|0|02|03000798|0|41700000|||||| +26|2023-10-06T21:14:23.9080000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:14:23.9080000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +39|2023-10-06T21:14:23.9080000-07:00|10FF0004|Buhojaqe Zijaqe|60622|81541|8850|10000|||109.43|107.98|0.00|-2.32| +38|2023-10-06T21:14:23.9080000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107839|129844|10000|10000|0||95.96|93.65|0.00|0.21|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:23.9080000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:14:23.9080000-07:00|10FF0009|Zewo Negiwo|005A5A18|71876|81177|9494|10000|0||100.76|108.05|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:23.9080000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:14:23.9080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61758|90216|10000|10000|0||112.18|87.88|0.00|-0.86|0|0|0||||||||||||| +30|2023-10-06T21:14:23.9080000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +38|2023-10-06T21:14:23.9080000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69409|81809|10000|10000|19||94.43|97.77|0.00|2.92|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:23.9080000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:14:23.9080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||103.99|95.11|0.00|-1.41|0|0|0||||||||||||||||||| +26|2023-10-06T21:14:23.9080000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:14:23.9080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|60622|81541|8850|10000|0||109.43|107.98|0.00|-2.32|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:23.9080000-07:00|10FF0003|Gegehi Gehi|005A5A23|50862|73814|5850|10000|0||92.82|111.88|0.00|2.69|0|0|0||||||||||||| +26|2023-10-06T21:14:23.9080000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:14:23.9080000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65225|82773|10000|10000|0||98.59|99.26|0.00|2.29|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:23.9080000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:14:23.5280000-07:00|Add|40022A0C||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:23.6200000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:14:23.9970000-07:00|10FF0007|Kehabiqo Febiqo|109137|129844|10000|10000|||96.08|94.32|0.00|-0.06| +39|2023-10-06T21:14:23.9970000-07:00|10FF0006|Wowobora Gogobora|70227|81809|10000|10000|||96.04|97.68|-0.01|2.92| +37|2023-10-06T21:14:24.0420000-07:00|40022472|Zeromus|000196F2|27701895||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:24.0420000-07:00|10FF0009|Zewo Negiwo|72687|81177|9715|10000|||100.76|108.05|0.00|-3.11| +21|2023-10-06T21:14:24.0420000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2C930000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|27707944|40478540|10000|10000|||100.00|80.10|0.00|0.00|65225|82773|10000|10000|||99.39|99.57|0.00|2.43|000196F7|0|1| +38|2023-10-06T21:14:24.0420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65225|82773|10000|10000|0||99.39|99.57|0.00|2.43|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:24.0420000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +39|2023-10-06T21:14:24.0860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||103.86|95.62|0.00|-1.61| +37|2023-10-06T21:14:24.1750000-07:00|10FF0006|Wowobora Gogobora|000196F1|70227|81809|10000|10000|19||96.21|97.71|0.00|2.92|1B00|0|0|01|04000A8E|0|41E9957E|| +39|2023-10-06T21:14:24.1760000-07:00|10FF0003|Gegehi Gehi|51600|73814|6050|10000|||93.07|111.49|0.00|2.83| +38|2023-10-06T21:14:24.1760000-07:00|400229F9|Carbuncle|005A5A00|74223|77698|10000|10000|0||88.09|95.32|0.00|1.15|0|0|0||||||| +30|2023-10-06T21:14:24.1760000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|400229F9|Carbuncle|01|77698|81809| +21|2023-10-06T21:14:24.3090000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|30920000|143E|340000|4|17788000|11B|2A8000|0|0|0|0|0|0|0|0|27701895|40478540|10000|10000|||100.00|80.10|0.00|0.00|109137|129844|10000|10000|||96.15|94.50|0.00|0.22|000196F8|0|1| +20|2023-10-06T21:14:24.3090000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|108.34|107.02|0.00|-2.31| +23|2023-10-06T21:14:24.3090000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +38|2023-10-06T21:14:24.3980000-07:00|40022472|Zeromus|005A5A00|27701895|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:24.3980000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:14:24.3980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8100|10000|0||103.14|96.61|0.00|-1.96|0|0|0||||||||||||||||||| +26|2023-10-06T21:14:24.3980000-07:00|441|HP Penalty|9999.00|E0000000||10FF0001|Sesuga Sapisuga|00|129071|| +38|2023-10-06T21:14:24.3980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8100|10000|0||103.14|96.61|0.00|-1.96|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:24.3980000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0001|Sesuga Sapisuga|00|129071|| +38|2023-10-06T21:14:24.3980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8100|10000|0||103.14|96.61|0.00|-1.96|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:24.3980000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0001|Sesuga Sapisuga|00|129071|| +38|2023-10-06T21:14:24.3980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||96.23|94.60|0.00|3.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:24.3980000-07:00|441|HP Penalty|9999.00|E0000000||10FF0007|Kehabiqo Febiqo|00|129844|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||96.49|95.01|0.00|3.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||96.49|95.01|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8850|10000|0||107.47|106.17|0.00|-2.49|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|441|HP Penalty|9999.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|81541|| +38|2023-10-06T21:14:24.4000000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||104.05|100.54|0.00|-2.43|0|0|0||||||| +26|2023-10-06T21:14:24.4000000-07:00|441|HP Penalty|9999.00|E0000000||4002284A|Ruby Carbuncle|00|77430|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8850|10000|0||107.47|106.17|0.00|-2.49|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|81541|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8850|10000|0||107.47|106.17|0.00|-2.49|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|81541|| +38|2023-10-06T21:14:24.4000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||99.85|99.75|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|441|HP Penalty|9999.00|E0000000||10FF000A|Dukaro Nezikaro|00|82773|| +38|2023-10-06T21:14:24.4000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||99.85|99.75|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF000A|Dukaro Nezikaro|00|82773|| +38|2023-10-06T21:14:24.4000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||99.85|99.75|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF000A|Dukaro Nezikaro|00|82773|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|51600|51669|6050|10000|0||93.98|110.11|0.00|2.69|0|0|0|||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|441|HP Penalty|9999.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|51600|51669|6050|10000|0||93.98|110.11|0.00|2.69|0|0|0||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|51600|51669|6050|10000|0||93.98|110.11|0.00|2.69|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||97.17|98.52|0.00|2.26|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|441|HP Penalty|9999.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T21:14:24.4000000-07:00|400229F9|Carbuncle|005A5A00|54388|54388|10000|10000|0||88.77|95.69|0.00|1.10|0|0|0||||||| +26|2023-10-06T21:14:24.4000000-07:00|441|HP Penalty|9999.00|E0000000||400229F9|Carbuncle|00|77698|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||97.17|98.52|0.00|2.26|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||97.17|98.52|0.00|2.26|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61758|63151|10000|10000|0||110.01|89.94|0.00|-0.81|0|0|0||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|441|HP Penalty|9999.00|E0000000||10FF0008|Kokosaze Lulusaze|00|90216|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61758|63151|10000|10000|0||110.01|89.94|0.00|-0.81|0|0|0|||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0008|Kokosaze Lulusaze|00|90216|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61758|63151|10000|10000|0||110.01|89.94|0.00|-0.81|0|0|0||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0008|Kokosaze Lulusaze|00|90216|| +261|2023-10-06T21:14:24.0560000-07:00|Change|10FF0008||||||||||| +38|2023-10-06T21:14:24.4000000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9715|10000|0||100.80|108.03|0.00|2.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|441|HP Penalty|9999.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9715|10000|0||100.80|108.03|0.00|2.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9715|10000|0||100.80|108.03|0.00|2.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9715|10000|0||100.80|108.03|0.00|2.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|ED2|Beckoning Dark|76.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|51600|51669|6050|10000|0||93.98|110.11|0.00|2.69|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|ED7|Forked Lightning|76.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T21:14:24.4000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||97.17|98.52|0.00|2.26|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:24.4000000-07:00|ED7|Forked Lightning|76.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +37|2023-10-06T21:14:24.4420000-07:00|10FF0007|Kehabiqo Febiqo|000196F3|65730|90890|10000|10000|0||96.49|95.01|0.00|3.00|1500|0|0|01|09000EB1|0|41700000|| +26|2023-10-06T21:14:24.4420000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|40478540| +37|2023-10-06T21:14:24.4420000-07:00|40022472|Zeromus|000196F7|27690484||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:24.0560000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:14:24.4870000-07:00|10FF0001|Sesuga Sapisuga|000196F3|65977|90349|8100|10000|0||102.83|97.24|0.00|-2.07|1301|0|0|01|08000EB1|0|41700000|| +26|2023-10-06T21:14:24.4870000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|40478540| +37|2023-10-06T21:14:24.5320000-07:00|10FF0008|Kokosaze Lulusaze|000196F3|21728|63151|10000|10000|0||109.57|90.40|0.00|-0.80|1F02|0|0|01|06000EB1|0|41700000|| +26|2023-10-06T21:14:24.5320000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|40478540| +21|2023-10-06T21:14:24.5320000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27690484|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||99.94|99.79|-0.01|-3.14|000196F9|0|1| +37|2023-10-06T21:14:24.5770000-07:00|10FF0006|Wowobora Gogobora|000196F3|34858|57266|10000|10000|0||97.89|99.12|0.00|1.74|1B03|0|0|01|04000EB1|0|41700000|| +30|2023-10-06T21:14:24.5770000-07:00|A8E|Radiant Aegis|0.00|400229F9|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +26|2023-10-06T21:14:24.5770000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|57266|40478540| +21|2023-10-06T21:14:24.5770000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|5C9E0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|27690484|40478540|10000|10000|||100.00|80.10|0.00|0.00|61758|63151|10000|10000|||109.57|90.40|0.00|-0.80|000196FA|0|1| +20|2023-10-06T21:14:24.5770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|107.15|105.86|0.00|-2.62| +38|2023-10-06T21:14:24.5770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34858|57266|10000|10000|0||97.89|99.12|0.00|1.74|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:24.6210000-07:00|10FF000A|Dukaro Nezikaro|000196F3|16963|57941|10000|10000|0||99.94|99.79|-0.01|-3.14|1E04|0|0|01|09000EB1|0|41700000|| +26|2023-10-06T21:14:24.6210000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|57941|40478540| +37|2023-10-06T21:14:24.6210000-07:00|40022472|Zeromus|000196F6|27673437||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:24.1670000-07:00|Change|10FF0003||||||||||||||||||||||||| +37|2023-10-06T21:14:24.6660000-07:00|10FF0009|Zewo Negiwo|000196F3|21048|56823|9715|10000|0||102.05|108.97|0.00|1.54|1805|0|0|01|0B000EB1|0|41700000|| +26|2023-10-06T21:14:24.6660000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0009|Zewo Negiwo|00|56823|40478540| +261|2023-10-06T21:14:24.2610000-07:00|Change|10FF0001||||||||||||| +261|2023-10-06T21:14:24.2610000-07:00|Change|10FF0004||||||||||||||||||||||||| +37|2023-10-06T21:14:24.7100000-07:00|10FF0004|Buhojaqe Zijaqe|000196F3|19628|57078|8850|10000|0||106.87|105.59|-0.02|-2.74|1C06|0|0|01|0B000EB1|0|41700000|| +26|2023-10-06T21:14:24.7100000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|40478540| +21|2023-10-06T21:14:24.7100000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|726003|4D080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27673437|40478540|10000|10000|||100.00|80.10|0.00|0.00|51600|51669|6050|10000|||94.87|108.72|0.00|2.62|000196FB|0|1| +37|2023-10-06T21:14:24.7550000-07:00|10FF0003|Gegehi Gehi|000196F3|14225|51669|6050|10000|0||95.31|108.05|0.00|3.00|2307|0|0|01|08000EB1|0|41700000|| +26|2023-10-06T21:14:24.7550000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|51669|40478540| +261|2023-10-06T21:14:24.4890000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:14:24.9330000-07:00|40022472|Zeromus|000196F4|27661010||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:24.9330000-07:00|40022472|Zeromus|000196F5|27644389||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:24.9330000-07:00|10FF0001|Sesuga Sapisuga|000196F5|65977|90349|8500|10000|0||101.55|99.44|0.00|-2.30|1300|0|0|0| +21|2023-10-06T21:14:24.9330000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27673437|40478540|10000|10000|||100.00|80.10|0.00|0.00|21728|63151|10000|10000|||108.11|91.92|0.00|-1.88|000196FC|0|1| +261|2023-10-06T21:14:24.4890000-07:00|Change|400229F9||||||||||| +261|2023-10-06T21:14:24.5860000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T21:14:25.0670000-07:00|40022472|Zeromus|000196F9|27642189||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:25.1120000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|104.89|108.94|0.00|1.62| +24|2023-10-06T21:14:25.2010000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|1C72|21728|63151|10000|10000|||106.69|93.38|0.00|-0.99|40022472|Zeromus|FFFFFFFF|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:25.2010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|14446|63151|10000|10000|0||106.69|93.38|0.00|-0.99|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:14:24.8300000-07:00|Change|10FF0008||||||||| +24|2023-10-06T21:14:25.2450000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1F0B|16963|57941|10000|10000|||99.96|100.40|0.00|-0.71|40022472|Zeromus|FFFFFFFF|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:25.2450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|9016|57941|10000|10000|0||99.96|100.40|0.00|-0.71|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:25.2900000-07:00|10FF0003|Gegehi Gehi|DoT|0|1A9C|14225|51669|6050|10000|||97.21|105.05|0.00|2.71|40022472|Zeromus|FFFFFFFF|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:25.2900000-07:00|10FF0003|Gegehi Gehi|005A5A23|7413|51669|6050|10000|0||97.21|105.05|0.00|2.71|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:14:25.3340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00|65977|90349|8500|10000|||99.45|100.78|0.00|-2.85|000196FD|0|1| +31|2023-10-06T21:14:25.3340000-07:00|10FF0001||||| +24|2023-10-06T21:14:25.3790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D9A|69212|90890|10000|10000|||99.83|100.32|0.00|1.57|10FF0004|Buhojaqe Zijaqe|0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89| +24|2023-10-06T21:14:25.3790000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|174E|14982|57941|10000|10000|||99.96|100.70|0.00|-0.33|10FF0004|Buhojaqe Zijaqe|0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89| +24|2023-10-06T21:14:25.3790000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|E4C|69637|90349|8500|10000|||99.35|100.34|0.00|-3.02|10FF0004|Buhojaqe Zijaqe|0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89| +24|2023-10-06T21:14:25.3790000-07:00|10FF0006|Wowobora Gogobora|HoT|798|182C|41046|57266|10000|10000|||99.90|100.69|0.00|1.55|10FF0004|Buhojaqe Zijaqe|0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89| +24|2023-10-06T21:14:25.3790000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|14E0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89|10FF0004|Buhojaqe Zijaqe|0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89| +24|2023-10-06T21:14:25.3790000-07:00|10FF0003|Gegehi Gehi|HoT|798|D8D|10882|51669|6050|10000|||97.44|104.68|0.00|2.66|10FF0004|Buhojaqe Zijaqe|0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89| +24|2023-10-06T21:14:25.3790000-07:00|10FF0009|Zewo Negiwo|HoT|798|1748|27008|56823|9715|10000|||105.23|108.90|0.00|2.63|10FF0004|Buhojaqe Zijaqe|0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89| +24|2023-10-06T21:14:25.3790000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|15C9|20023|63151|10000|10000|||105.84|94.26|0.00|-0.85|10FF0004|Buhojaqe Zijaqe|0|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89| +24|2023-10-06T21:14:25.3790000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1AEE|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89|40022472|Zeromus|FFFFFFFF|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:25.3790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69212|90890|10000|10000|0||99.83|100.32|0.00|1.57|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:25.3790000-07:00|10FF0009|Zewo Negiwo|005A5A18|27008|56823|9715|10000|0||105.23|108.90|0.00|2.63|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:25.3790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|20023|63151|10000|10000|0||105.84|94.26|0.00|-0.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:14:25.3790000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:14:25.3790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41046|57266|10000|10000|0||99.90|100.69|0.00|1.55|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:25.3790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69637|90349|8500|10000|0||99.35|100.34|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:14:25.3790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|18078|57078|9400|10000|0||106.52|105.24|0.00|-2.89|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:25.3790000-07:00|10FF0003|Gegehi Gehi|005A5A23|10882|51669|6050|10000|0||97.44|104.68|0.00|2.66|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:14:25.3790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|14982|57941|10000|10000|0||99.96|100.70|0.00|-0.33|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:25.0640000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:14:25.4680000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|11C9|69212|90890|10000|10000|||99.83|100.32|0.00|1.57|40022472|Zeromus|FFFFFFFF|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:25.4680000-07:00|10FF0006|Wowobora Gogobora|DoT|0|1A55|41046|57266|10000|10000|||99.90|100.69|0.00|1.55|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:14:25.4680000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00|41046|57266|10000|10000|||99.90|100.69|0.00|1.55|000196FE|0|1| +38|2023-10-06T21:14:25.4680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|64659|90890|10000|10000|0||99.83|100.32|0.00|1.57|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:25.4680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34305|57266|10000|10000|0||99.90|100.69|0.00|1.55|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:25.5130000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E19|14982|57941|10000|10000|||99.96|100.81|0.00|-0.18|10FF0009|Zewo Negiwo|0|27008|56823|9715|10000|||105.31|108.89|0.00|2.96| +24|2023-10-06T21:14:25.5130000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|1670|64659|90890|10000|10000|||99.91|100.71|0.00|1.65|10FF0009|Zewo Negiwo|0|27008|56823|9715|10000|||105.31|108.89|0.00|2.96| +24|2023-10-06T21:14:25.5130000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DCE|34305|57266|10000|10000|||99.90|100.69|-0.02|1.60|10FF0009|Zewo Negiwo|0|27008|56823|9715|10000|||105.31|108.89|0.00|2.96| +24|2023-10-06T21:14:25.5130000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DF1|69637|90349|8500|10000|||99.35|100.34|0.00|-3.02|10FF0009|Zewo Negiwo|0|27008|56823|9715|10000|||105.31|108.89|0.00|2.96| +24|2023-10-06T21:14:25.5130000-07:00|10FF0003|Gegehi Gehi|HoT|777|175D|10882|51669|6050|10000|||97.66|104.34|0.00|2.63|10FF0009|Zewo Negiwo|0|27008|56823|9715|10000|||105.31|108.89|0.00|2.96| +24|2023-10-06T21:14:25.5130000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E24|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89|10FF0009|Zewo Negiwo|0|27008|56823|9715|10000|||105.31|108.89|0.00|2.96| +24|2023-10-06T21:14:25.5130000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|EA3|20023|63151|10000|10000|||105.46|94.65|-0.02|-0.80|10FF0009|Zewo Negiwo|0|27008|56823|9715|10000|||105.31|108.89|0.00|2.96| +24|2023-10-06T21:14:25.5130000-07:00|10FF0009|Zewo Negiwo|HoT|777|E29|27008|56823|9715|10000|||105.31|108.89|0.00|2.96|10FF0009|Zewo Negiwo|0|27008|56823|9715|10000|||105.31|108.89|0.00|2.96| +24|2023-10-06T21:14:25.5130000-07:00|10FF0009|Zewo Negiwo|DoT|0|1B73|27008|56823|9715|10000|||105.31|108.89|0.00|2.96|40022472|Zeromus|FFFFFFFF|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:25.5130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|52E70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00|18078|57078|9400|10000|||106.52|105.24|0.00|-2.89|000196FF|0|1| +38|2023-10-06T21:14:25.5130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70403|90890|10000|10000|0||99.91|100.71|0.00|1.65|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5130000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +38|2023-10-06T21:14:25.5130000-07:00|10FF0009|Zewo Negiwo|005A5A18|23606|56823|10000|10000|0||105.31|108.89|0.00|2.96|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5130000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:25.5130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|23770|63151|10000|10000|0||105.46|94.65|-0.02|-0.80|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5130000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +38|2023-10-06T21:14:25.5130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|37839|57266|10000|10000|0||99.90|100.69|-0.02|1.60|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5130000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +38|2023-10-06T21:14:25.5130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|73206|90349|8500|10000|0||99.35|100.34|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5130000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +38|2023-10-06T21:14:25.5130000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|21698|57078|9000|10000|0||106.52|105.24|0.00|-2.89|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5130000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +38|2023-10-06T21:14:25.5130000-07:00|10FF0003|Gegehi Gehi|005A5A23|16863|51669|6050|10000|0||97.66|104.34|0.00|2.63|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5130000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +38|2023-10-06T21:14:25.5130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18591|57941|10000|10000|0||99.96|100.81|0.00|-0.18|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5130000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +24|2023-10-06T21:14:25.5580000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|12D4|73206|90349|8500|10000|||99.35|100.34|0.00|-3.02|40022472|Zeromus|FFFFFFFF|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:25.5580000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16863|51669|6050|10000|||97.91|103.93|0.00|2.61|16863|51669|6050|10000|||97.91|103.93|0.00|2.61|00019700|0|1| +38|2023-10-06T21:14:25.5580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|68386|90349|8500|10000|0||99.35|100.34|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:14:25.5580000-07:00|10FF0003|Gegehi Gehi|005A5A23|16863|51669|6050|10000|0||97.91|103.93|0.00|2.61|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:25.5580000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +21|2023-10-06T21:14:25.6470000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|24490000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|23770|63151|10000|10000|||105.02|95.09|0.00|-0.80|54201|54201|10000|10000|||104.05|100.54|0.00|-2.95|00019701|0|1| +261|2023-10-06T21:14:25.2570000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:25.2570000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:14:25.6920000-07:00|40022472|Zeromus|000196FC|27639914||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:25.7370000-07:00|40022472|Zeromus|000196FA|27616204||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:25.7820000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27642189|40478540|10000|10000|||100.00|80.10|0.00|0.00|16863|51669|6050|10000|||98.11|103.63|0.00|2.58|00019702|0|1| +261|2023-10-06T21:14:25.3480000-07:00|Change|400229F9||||||||| +261|2023-10-06T21:14:25.4470000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:14:25.8270000-07:00|40022472|Zeromus|000196F8|27603770||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:25.8270000-07:00|10FF0007|Kehabiqo Febiqo|000196F8|76411||||||100.05|101.31|0.00|2.08| +37|2023-10-06T21:14:25.8700000-07:00|40022472|Zeromus|000196FD|27600986||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:25.8700000-07:00|40022472|Zeromus|000196FB|27581266||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:25.8700000-07:00|10FF0003|Gegehi Gehi|000196FB|16863|51669|6050|10000|0||98.22|103.44|-0.02|2.58|2300|0|0|01|0A0004D6|0|C1A00000|| +04|2023-10-06T21:14:25.5430000-07:00|400229F3|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||96.48|101.23|0.00|2.89| +261|2023-10-06T21:14:25.5430000-07:00|Remove|400229F3| +261|2023-10-06T21:14:25.5430000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:14:26.0040000-07:00|40022472|Zeromus|000196FE|27581119||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:26.0490000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|33AA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|27581266|40478540|10000|10000|||100.00|80.10|0.00|0.00|23606|56823|10000|10000|||105.39|108.87|0.00|-2.96|00019703|0|1| +261|2023-10-06T21:14:25.6410000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:14:26.1820000-07:00|10FF0008|Kokosaze Lulusaze|1D75|Second Wind|10FF0008|Kokosaze Lulusaze|4|34240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23770|63151|10000|10000|||102.37|97.80|0.00|-0.78|23770|63151|10000|10000|||102.37|97.80|0.00|-0.78|00019704|0|1| +21|2023-10-06T21:14:26.2270000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|1FD60000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|27581119|40478540|10000|10000|||100.00|80.10|0.00|0.00|68386|90349|8500|10000|||99.35|100.34|0.00|3.11|00019705|0|1| +21|2023-10-06T21:14:26.2270000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|326D0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|27581119|40478540|10000|10000|||100.00|80.10|0.00|0.00|18591|57941|10000|10000|||99.96|100.94|0.00|-0.02|00019706|0|1| +37|2023-10-06T21:14:26.3160000-07:00|40022472|Zeromus|000196FF|27559896||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:26.3160000-07:00|10FF0003|Gegehi Gehi|00019700|16863|51669|6050|10000|0||98.36|103.52|0.00|2.55|2300|0|0|01|0A0004D6|0|41A00000|| +37|2023-10-06T21:14:26.3160000-07:00|40022472|Zeromus|00019702|27559895||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:26.3160000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|99.87|100.27|0.00|2.92| +38|2023-10-06T21:14:26.3160000-07:00|10FF0003|Gegehi Gehi|005A5A23|16863|51669|6050|10000|0||98.36|103.52|0.00|2.55|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:25.8670000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:14:26.4490000-07:00|10FF0008|Kokosaze Lulusaze|00019701|33059||||||101.87|98.31|0.00|-0.78| +39|2023-10-06T21:14:26.5400000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||104.05|100.54|0.00|-2.79| +21|2023-10-06T21:14:26.5400000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|26B80000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|27559895|40478540|10000|10000|||100.00|80.10|0.00|0.00|16863|51669|6050|10000|||98.61|103.69|0.00|2.55|00019707|0|1| +38|2023-10-06T21:14:26.5400000-07:00|10FF0003|Gegehi Gehi|005A5A23|16863|51669|5750|10000|0||98.61|103.69|0.00|2.55|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:26.5400000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:14:26.5400000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:14:26.1040000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:14:26.7170000-07:00|10FF0008|Kokosaze Lulusaze|33690|63151|10000|10000|||100.88|99.31|0.00|-0.83| +21|2023-10-06T21:14:26.7170000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27559895|40478540|10000|10000|||100.00|80.10|0.00|0.00|18591|57941|10000|10000|||99.96|100.94|0.00|3.14|00019708|0|1| +37|2023-10-06T21:14:26.7620000-07:00|40022472|Zeromus|00019706|27546986||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:26.7620000-07:00|10FF000A|Dukaro Nezikaro|19170|57941|10000|10000|||99.96|100.94|0.00|3.14| +24|2023-10-06T21:14:26.7620000-07:00|40022472|Zeromus|DoT|0|1935|27559895|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:14:26.7620000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16940000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|27559895|40478540|10000|10000|||100.00|80.10|0.00|0.00|76411|90890|10000|10000|||100.14|101.34|0.00|2.97|00019709|0|1| +38|2023-10-06T21:14:26.7620000-07:00|40022472|Zeromus|005A5A00|27540533|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:26.7620000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:14:26.8060000-07:00|10FF0008|Kokosaze Lulusaze|00019704|47038||||||100.73|99.44|0.00|-0.86| +37|2023-10-06T21:14:26.8500000-07:00|40022472|Zeromus|00019705|27532383||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:14:26.8500000-07:00|364C|3| +39|2023-10-06T21:14:26.8950000-07:00|10FF0004|Buhojaqe Zijaqe|22268|57078|9200|10000|||102.89|104.49|0.00|-1.53| +21|2023-10-06T21:14:26.8950000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|E8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27540533|40478540|10000|10000|||100.00|80.10|0.00|0.00|76411|90890|10000|10000|||100.14|101.34|0.00|-3.13|0001970A|0|1| +261|2023-10-06T21:14:26.3910000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:14:26.4840000-07:00|Change|10FF0009||||||||||||||||||||||| +39|2023-10-06T21:14:26.9840000-07:00|10FF0007|Kehabiqo Febiqo|77319|90890|10000|10000|||100.14|101.34|0.00|-3.13| +39|2023-10-06T21:14:26.9840000-07:00|10FF0006|Wowobora Gogobora|38411|57266|10000|10000|||99.87|100.27|0.00|3.14| +20|2023-10-06T21:14:26.9840000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|102.75|104.50|0.00|-1.37| +39|2023-10-06T21:14:27.0280000-07:00|10FF0009|Zewo Negiwo|24174|56823|9821|10000|||105.42|108.87|0.00|3.07| +39|2023-10-06T21:14:27.0730000-07:00|10FF0001|Sesuga Sapisuga|69289|90349|8700|10000|||99.31|100.85|0.00|-1.29| +261|2023-10-06T21:14:26.6090000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:14:27.1170000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|724003|6D750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27532383|40478540|10000|10000|||100.00|80.10|0.00|0.00|47038|63151|10000|10000|||100.51|99.66|0.00|-1.08|0001970B|0|1| +39|2023-10-06T21:14:27.1620000-07:00|10FF0003|Gegehi Gehi|17379|51669|5950|10000|||99.50|104.30|0.00|3.12| +37|2023-10-06T21:14:27.2510000-07:00|40022472|Zeromus|00019708|27530127||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:27.2960000-07:00|40022472|Zeromus|00019709|27524347||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:27.2960000-07:00|40022472|Zeromus|00019707|27514435||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:27.2960000-07:00|10FF0003|Gegehi Gehi|00019707|17379|51669|5950|10000|0||99.50|104.30|0.00|3.12|2300|0|0|01|0B0004D2|0|41F00000|| +38|2023-10-06T21:14:27.2960000-07:00|10FF0003|Gegehi Gehi|005A5A23|17379|51669|5950|10000|0||99.50|104.30|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:27.3410000-07:00|40022472|Zeromus|00019703|27501209||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:27.4290000-07:00|40022472|Zeromus|0001970A|27497484||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:14:27.5650000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|200004|55FD0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|0001970C|0|8| +22|2023-10-06T21:14:27.5650000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|36D90000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|22268|57078|9200|10000|||102.56|104.51|0.00|-3.04|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|0001970C|1|8| +22|2023-10-06T21:14:27.5650000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|35C40000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|17379|51669|5950|10000|||99.50|104.30|0.00|3.12|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|0001970C|2|8| +22|2023-10-06T21:14:27.5650000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|36A10000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|77319|90890|10000|10000|||100.14|101.34|0.00|-3.13|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|0001970C|3|8| +22|2023-10-06T21:14:27.5650000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|37820000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|19170|57941|10000|10000|||99.96|100.94|0.00|3.14|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|0001970C|4|8| +22|2023-10-06T21:14:27.5650000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|200004|56300000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|69289|90349|8700|10000|||99.44|100.86|0.00|3.06|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|0001970C|5|8| +22|2023-10-06T21:14:27.5650000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|379D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|38411|57266|10000|10000|||99.87|100.27|0.00|3.14|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|0001970C|6|8| +22|2023-10-06T21:14:27.5650000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|36B40000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|47038|63151|10000|10000|||100.51|99.66|0.00|-3.11|24174|56823|9821|10000|||105.67|108.47|0.00|3.00|0001970C|7|8| +38|2023-10-06T21:14:27.5650000-07:00|40022472|Zeromus|005A5A00|27497484|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:14:27.5650000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +261|2023-10-06T21:14:27.1840000-07:00|Change|10FF0003||||||| +21|2023-10-06T21:14:27.6080000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B0D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27497484|40478540|10000|10000|||100.00|80.10|0.00|0.00|47038|63151|10000|10000|||100.51|99.66|0.00|-3.11|0001970D|0|1| +21|2023-10-06T21:14:27.6080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27497484|40478540|10000|10000|||100.00|80.10|0.00|0.00|69289|90349|8700|10000|||99.44|100.86|0.00|3.06|0001970E|0|1| +31|2023-10-06T21:14:27.6080000-07:00|10FF0001||||| +261|2023-10-06T21:14:27.4660000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:14:27.9190000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33720000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27497484|40478540|10000|10000|||100.00|80.10|0.00|0.00|22268|57078|9200|10000|||102.56|104.51|0.00|-3.04|0001970F|0|1| +39|2023-10-06T21:14:27.9640000-07:00|400229F9|Carbuncle|54388|54388|10000|10000|||98.25|99.26|0.00|1.48| +261|2023-10-06T21:14:27.5620000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:14:28.0100000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|E010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27497484|40478540|10000|10000|||100.00|80.10|0.00|0.00|17379|51669|5950|10000|||99.50|104.30|0.00|3.12|00019710|0|1| +37|2023-10-06T21:14:28.1420000-07:00|10FF0009|Zewo Negiwo|0001970C|46187||||||105.76|108.29|0.00|-3.00| +37|2023-10-06T21:14:28.1420000-07:00|40022472|Zeromus|0001970E|27495685||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:28.2310000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|1DAF|47038|63151|10000|10000|||100.51|99.66|0.00|-3.11|10FF0009|Zewo Negiwo|FFFFFFFF|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +38|2023-10-06T21:14:28.2310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|39439|63151|10000|10000|0||100.51|99.66|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:14:28.2760000-07:00|10FF0004|Buhojaqe Zijaqe|0001970C|36309||||||102.56|104.51|0.00|-3.04| +37|2023-10-06T21:14:28.2760000-07:00|40022472|Zeromus|0001970B|27467664||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:28.2760000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1E5E|11396|57941|10000|10000|||99.96|100.94|0.00|3.14|40022472|Zeromus|FFFFFFFF|27464835|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:28.2760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|11396|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:28.3200000-07:00|10FF0003|Gegehi Gehi|DoT|0|1A75|10606|51669|5950|10000|||99.54|102.30|0.00|3.12|10FF0003|Gegehi Gehi|FFFFFFFF|10606|51669|5950|10000|||99.54|102.30|0.00|3.12| +38|2023-10-06T21:14:28.3200000-07:00|10FF0003|Gegehi Gehi|005A5A23|10606|51669|5950|10000|0||99.54|102.30|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:28.3650000-07:00|40022472|Zeromus|0001970D|27464835||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:28.3650000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18690000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|27464835|40478540|10000|10000|||100.00|80.10|0.00|0.00|11396|57941|10000|10000|||99.96|100.94|0.00|3.14|00019711|0|1| +37|2023-10-06T21:14:28.4100000-07:00|10FF0003|Gegehi Gehi|0001970C|24370||||||99.58|100.60|0.00|3.12| +24|2023-10-06T21:14:28.4100000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|E54|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04|10FF0004|Buhojaqe Zijaqe|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04| +24|2023-10-06T21:14:28.4100000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E66|77319|90890|10000|10000|||99.99|101.34|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04| +24|2023-10-06T21:14:28.4100000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|EDE|11396|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04| +24|2023-10-06T21:14:28.4100000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|E3C|39439|63151|10000|10000|||100.51|99.66|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04| +24|2023-10-06T21:14:28.4100000-07:00|10FF0006|Wowobora Gogobora|HoT|798|EC8|38411|57266|10000|10000|||99.87|100.27|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04| +24|2023-10-06T21:14:28.4100000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|17EA|69289|90349|8700|10000|||99.44|100.86|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04| +24|2023-10-06T21:14:28.4100000-07:00|10FF0003|Gegehi Gehi|HoT|798|1757|10606|51669|5950|10000|||99.58|100.60|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04| +24|2023-10-06T21:14:28.4100000-07:00|10FF0009|Zewo Negiwo|HoT|798|170E|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00|10FF0004|Buhojaqe Zijaqe|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04| +24|2023-10-06T21:14:28.4100000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1C2B|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04|10FF0009|Zewo Negiwo|FFFFFFFF|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +38|2023-10-06T21:14:28.4100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81005|90890|10000|10000|0||99.99|101.34|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:14:28.4100000-07:00|10FF0009|Zewo Negiwo|005A5A18|52089|56823|9821|10000|0||105.76|108.29|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +38|2023-10-06T21:14:28.4100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|43083|63151|10000|10000|0||100.51|99.66|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:14:28.4100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42195|57266|10000|10000|0||99.87|100.27|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:14:28.4100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|75411|90349|8700|10000|0||99.44|100.86|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:14:28.4100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|32766|57078|9350|10000|0||102.56|104.51|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.4100000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:14:28.4100000-07:00|10FF0003|Gegehi Gehi|005A5A23|30345|51669|5950|10000|0||99.58|100.60|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.4100000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:14:28.4100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|15202|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.4100000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +24|2023-10-06T21:14:28.4990000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|118A|77319|90890|10000|10000|||99.99|101.34|0.00|3.12|10FF0009|Zewo Negiwo|FFFFFFFF|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.4990000-07:00|10FF0006|Wowobora Gogobora|DoT|0|1B95|38411|57266|10000|10000|||99.87|100.27|0.00|3.14|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:14:28.4990000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||102.51|100.31|0.00|-2.09|0|0|0|||||||||| +26|2023-10-06T21:14:28.4990000-07:00|7AC|Summon Order II|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:14:28.4990000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04|00019712|0|1| +38|2023-10-06T21:14:28.4990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|76515|90890|10000|10000|0||99.99|101.34|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:28.4990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|35134|57266|10000|10000|0||99.87|100.27|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:28.5440000-07:00|10FF0007|Kehabiqo Febiqo|0001970C|90500||||||99.99|101.34|0.00|3.12| +24|2023-10-06T21:14:28.5440000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E98|11396|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0009|Zewo Negiwo|0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.5440000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E14|77319|90890|10000|10000|||99.99|101.34|0.00|3.12|10FF0009|Zewo Negiwo|0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.5440000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E33|38411|57266|10000|10000|||99.87|100.27|0.00|3.14|10FF0009|Zewo Negiwo|0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.5440000-07:00|10FF0003|Gegehi Gehi|HoT|777|E5F|10606|51669|5950|10000|||99.58|100.60|0.00|3.12|10FF0009|Zewo Negiwo|0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.5440000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|1727|39439|63151|10000|10000|||100.51|99.66|0.00|-3.11|10FF0009|Zewo Negiwo|0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.5440000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DE2|69289|90349|8700|10000|||99.44|100.86|0.00|3.11|10FF0009|Zewo Negiwo|0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.5440000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E15|36309|57078|8800|10000|||102.56|104.51|0.00|-3.04|10FF0009|Zewo Negiwo|0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.5440000-07:00|10FF0009|Zewo Negiwo|HoT|777|DD0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00|10FF0009|Zewo Negiwo|0|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00| +24|2023-10-06T21:14:28.5440000-07:00|10FF0009|Zewo Negiwo|DoT|0|1B7F|46187|56823|9821|10000|||105.76|108.29|0.00|-3.00|40022472|Zeromus|FFFFFFFF|27464835|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:28.5440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||99.99|101.34|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.5440000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +38|2023-10-06T21:14:28.5440000-07:00|10FF0009|Zewo Negiwo|005A5A18|48586|56823|10000|10000|0||105.76|108.29|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.5440000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:28.5440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|49010|63151|10000|10000|0||100.51|99.66|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.5440000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +38|2023-10-06T21:14:28.5440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|38769|57266|10000|10000|0||99.87|100.27|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.5440000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +38|2023-10-06T21:14:28.5440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|78965|90349|8700|10000|0||99.44|100.86|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.5440000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +38|2023-10-06T21:14:28.5440000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|36371|57078|9350|10000|0||102.56|104.51|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.5440000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +38|2023-10-06T21:14:28.5440000-07:00|10FF0003|Gegehi Gehi|005A5A23|34024|51669|5950|10000|0||99.58|100.60|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.5440000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +38|2023-10-06T21:14:28.5440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18938|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:28.5440000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +24|2023-10-06T21:14:28.5880000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|12E7|78965|90349|8700|10000|||99.44|100.86|0.00|3.11|40022472|Zeromus|FFFFFFFF|27464835|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:28.5880000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|152003|82B00000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|27464835|40478540|10000|10000|||100.00|80.10|0.00|0.00|38769|57266|10000|10000|||99.87|100.27|0.00|3.14|00019713|0|1| +38|2023-10-06T21:14:28.5880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|74126|90349|8700|10000|0||99.44|100.86|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +22|2023-10-06T21:14:28.6320000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|38769|57266|10000|10000|||99.87|100.27|0.00|3.14|54201|54201|10000|10000|||101.63|100.16|0.00|-1.86|00019714|0|8| +22|2023-10-06T21:14:28.6320000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|34024|51669|5950|10000|||99.59|100.57|0.00|3.12|54201|54201|10000|10000|||101.63|100.16|0.00|-1.86|00019714|1|8| +22|2023-10-06T21:14:28.6320000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|49010|63151|10000|10000|||100.51|99.66|0.00|-3.11|54201|54201|10000|10000|||101.63|100.16|0.00|-1.86|00019714|2|8| +22|2023-10-06T21:14:28.6320000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|78965|90349|8700|10000|||99.44|100.86|0.00|3.11|54201|54201|10000|10000|||101.63|100.16|0.00|-1.86|00019714|3|8| +22|2023-10-06T21:14:28.6320000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|18938|57941|10000|10000|||99.96|100.94|0.00|3.14|54201|54201|10000|10000|||101.63|100.16|0.00|-1.86|00019714|4|8| +22|2023-10-06T21:14:28.6320000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||99.99|101.34|0.00|3.12|54201|54201|10000|10000|||101.63|100.16|0.00|-1.86|00019714|5|8| +22|2023-10-06T21:14:28.6320000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|36371|57078|9350|10000|||102.56|104.51|0.00|-3.04|54201|54201|10000|10000|||101.63|100.16|0.00|-1.86|00019714|6|8| +22|2023-10-06T21:14:28.6320000-07:00|4002284A|Ruby Carbuncle|325|Fey Illumination|10FF0009|Zewo Negiwo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|48586|56823|10000|10000|||105.76|108.29|0.00|-3.00|54201|54201|10000|10000|||101.63|100.16|0.00|-1.86|00019714|7|8| +41|2023-10-06T21:14:28.6320000-07:00|80034E7C|290A|01|00|00| +21|2023-10-06T21:14:28.6320000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|33000000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||99.99|101.34|0.00|3.12|27464835|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019715|0|1| +37|2023-10-06T21:14:28.6770000-07:00|10FF000A|Dukaro Nezikaro|0001970C|33148||||||99.96|100.94|0.00|3.14| +37|2023-10-06T21:14:28.6770000-07:00|40022472|Zeromus|00019710|27461250||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:28.7210000-07:00|40022472|Zeromus|0001970F|27448080||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:28.7210000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1D1F0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|27464835|40478540|10000|10000|||100.00|80.10|0.00|0.00|78965|90349|8700|10000|||99.44|100.86|0.00|3.11|00019716|0|1| +261|2023-10-06T21:14:28.3320000-07:00|Change|10FF0006||||||||||||||||| +00|2023-10-06T21:14:28.0000000-07:00|0839||Zeromus expands its domain...| +37|2023-10-06T21:14:28.7660000-07:00|40022472|Zeromus|00019711|27441831||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:28.7660000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|726003|23C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27448080|40478540|10000|10000|||100.00|80.10|0.00|0.00|34024|51669|5950|10000|||99.59|100.57|0.00|3.12|00019717|0|1| +37|2023-10-06T21:14:28.8090000-07:00|10FF0001|Sesuga Sapisuga|0001970C|90349||||||99.44|100.86|0.00|3.11| +21|2023-10-06T21:14:28.8990000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27448080|40478540|10000|10000|||100.00|80.10|0.00|0.00|33148|57941|10000|10000|||99.96|100.94|0.00|3.14|00019718|0|1| +261|2023-10-06T21:14:28.4330000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:14:28.9440000-07:00|10FF0006|Wowobora Gogobora|0001970C|53006||||||99.87|100.27|0.00|3.14| +261|2023-10-06T21:14:28.5370000-07:00|Change|10FF0009||| +37|2023-10-06T21:14:29.0780000-07:00|10FF0008|Kokosaze Lulusaze|0001970C|63014||||||100.42|99.84|-0.02|-1.53| +37|2023-10-06T21:14:29.2110000-07:00|40022472|Zeromus|00019713|27408375||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:29.2110000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20530000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|27441831|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.99|101.34|0.00|3.12|00019719|0|1| +21|2023-10-06T21:14:29.2550000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27441831|40478540|10000|10000|||100.00|80.10|0.00|0.00|34024|51669|5950|10000|||99.60|100.57|-0.02|3.12|0001971A|0|1| +21|2023-10-06T21:14:29.3000000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|27408375|40478540|10000|10000|||100.00|80.10|0.00|0.00|53006|57266|9700|10000|||99.87|100.27|0.00|3.14|0001971B|0|1| +261|2023-10-06T21:14:28.8870000-07:00|Change|400229F9||||||||| +38|2023-10-06T21:14:29.3000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53006|57266|9700|10000|0||99.87|100.27|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:29.3000000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:14:29.3450000-07:00|40022A17||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:14:29.3450000-07:00|40022A17||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:14:29.3450000-07:00|40022472|Zeromus|00019717|27399222||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:29.3890000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|716003|1BAF0000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|27399222|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8700|10000|||99.44|100.86|0.00|3.11|0001971C|0|1| +20|2023-10-06T21:14:29.3890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.98|103.78|0.00|-2.35| +37|2023-10-06T21:14:29.4330000-07:00|10FF0006|Wowobora Gogobora|00019714|53006|57266|9700|10000|0||99.87|100.27|0.00|3.14|1B00|0|0|01|0C00013D|0|41A00000|| +26|2023-10-06T21:14:29.4330000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +37|2023-10-06T21:14:29.4330000-07:00|10FF0007|Kehabiqo Febiqo|00019715|77834||||||99.99|101.34|0.00|3.14| +37|2023-10-06T21:14:29.4330000-07:00|40022472|Zeromus|00019718|27396990||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:29.4770000-07:00|40022472|Zeromus|00019716|27389535||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:29.4770000-07:00|10FF0001|Sesuga Sapisuga|00019716|90349|90349|9700|10000|0||99.44|100.86|0.00|3.11|1300|0|0|0| +261|2023-10-06T21:14:29.1080000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:14:29.5210000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||99.53|99.81|0.00|-1.73| +37|2023-10-06T21:14:29.5670000-07:00|10FF0003|Gegehi Gehi|00019714|34024|51669|5950|10000|0||99.60|100.57|0.00|3.12|2301|0|0|01|0A00013D|0|41A00000|| +26|2023-10-06T21:14:29.5670000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51669|54201| +20|2023-10-06T21:14:29.5670000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|99.60|100.57|0.00|3.12| +261|2023-10-06T21:14:29.1080000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:14:29.1080000-07:00|Add|40022A17||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:14:29.2070000-07:00|40022A17|Emerald Garuda|00|5A|10FF0006|00||10263|13506|54388|54388|10000|10000|||101.62|102.04|0.00|3.14| +261|2023-10-06T21:14:29.2070000-07:00|Change|40022A17||||| +21|2023-10-06T21:14:29.6560000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2FCE0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|27389535|40478540|10000|10000|||100.00|80.10|0.00|0.00|63014|63151|10000|10000|||100.33|100.14|0.00|0.81|0001971D|0|1| +37|2023-10-06T21:14:29.7010000-07:00|10FF0008|Kokosaze Lulusaze|00019714|63014|63151|10000|10000|0||100.33|100.14|0.00|-3.12|1F02|0|0|01|0900013D|0|41A00000|| +26|2023-10-06T21:14:29.7010000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|54201| +39|2023-10-06T21:14:29.7010000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||100.33|100.14|0.00|-3.12| +39|2023-10-06T21:14:29.7460000-07:00|10FF000A|Dukaro Nezikaro|33727|57941|10000|10000|||99.96|100.94|0.00|3.14| +24|2023-10-06T21:14:29.7460000-07:00|40022472|Zeromus|DoT|0|2130|27389535|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:14:29.7460000-07:00|40022472|Zeromus|005A5A00|27381039|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:29.7460000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:14:29.7900000-07:00|40022472|Zeromus|0001971A|27381038||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:29.8340000-07:00|40022472|Zeromus|00019719|27372763||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:29.8340000-07:00|10FF0001|Sesuga Sapisuga|00019714|90349|90349|9700|10000|0||99.44|100.86|0.00|3.11|1303|0|0|01|0900013D|0|41A00000|| +26|2023-10-06T21:14:29.8340000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|54201| +36|2023-10-06T21:14:29.8350000-07:00|3728|3| +39|2023-10-06T21:14:29.8790000-07:00|10FF0004|Buhojaqe Zijaqe|36941|57078|9550|10000|||101.95|103.75|0.00|-3.01| +21|2023-10-06T21:14:29.8800000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|A900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27381039|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9700|10000|||99.44|100.86|0.00|3.11|0001971E|0|1| +31|2023-10-06T21:14:29.8800000-07:00|10FF0001||||| +261|2023-10-06T21:14:29.4790000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:14:29.9690000-07:00|10FF000A|Dukaro Nezikaro|00019714|33727|57941|10000|10000|0||99.96|100.94|0.00|3.14|1E04|0|0|01|0A00013D|0|41A00000|| +26|2023-10-06T21:14:29.9690000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|57941|54201| +39|2023-10-06T21:14:29.9690000-07:00|10FF0007|Kehabiqo Febiqo|78742|90890|10000|10000|||99.99|101.24|0.00|3.14| +39|2023-10-06T21:14:29.9690000-07:00|10FF0006|Wowobora Gogobora|53578|57266|9900|10000|||99.87|100.27|0.00|3.14| +20|2023-10-06T21:14:29.9690000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|105.76|108.29|0.00|-3.00| +261|2023-10-06T21:14:29.5690000-07:00|Change|10FF0006||| +261|2023-10-06T21:14:29.5690000-07:00|Change|10FF0009||||||||||||||| +39|2023-10-06T21:14:30.0130000-07:00|10FF0009|Zewo Negiwo|49154|56823|10000|10000|||105.76|108.29|0.00|-2.99| +39|2023-10-06T21:14:30.0580000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9900|10000|||99.44|100.86|0.00|3.11| +21|2023-10-06T21:14:30.0580000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|2E6D0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|27372763|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9700|10000|||99.44|100.86|0.00|3.11|0001971F|0|1| +37|2023-10-06T21:14:30.1020000-07:00|10FF0007|Kehabiqo Febiqo|00019714|78742|90890|10000|10000|0||99.99|101.21|0.00|3.14|1505|0|0|01|0B00013D|0|41A00000|| +26|2023-10-06T21:14:30.1020000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|54201| +39|2023-10-06T21:14:30.1910000-07:00|10FF0003|Gegehi Gehi|34540|51669|6150|10000|||99.60|100.57|0.00|3.12| +261|2023-10-06T21:14:29.7990000-07:00|Change|10FF0003||||| +37|2023-10-06T21:14:30.2350000-07:00|10FF0004|Buhojaqe Zijaqe|00019714|36941|57078|9550|10000|0||101.95|103.75|0.00|-3.06|1C06|0|0|01|0D00013D|0|41A00000|| +26|2023-10-06T21:14:30.2350000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +21|2023-10-06T21:14:30.2800000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27372763|40478540|10000|10000|||100.00|80.10|0.00|0.00|78742|90890|10000|10000|||99.99|101.18|0.00|3.14|00019720|0|1| +21|2023-10-06T21:14:30.2800000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27372763|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.33|100.14|0.00|-3.12|00019721|0|1| +37|2023-10-06T21:14:30.3240000-07:00|10FF0006|Wowobora Gogobora|0001971B|53578|57266|9900|10000|0||99.87|100.27|0.00|3.14|1B00|0|0|01|0B000AA5|0|0|| +21|2023-10-06T21:14:30.3250000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|333E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27372763|40478540|10000|10000|||100.00|80.10|0.00|0.00|36941|57078|9550|10000|||101.95|103.75|0.00|-3.06|00019722|0|1| +38|2023-10-06T21:14:30.3250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53578|57266|9900|10000|0||99.87|100.27|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:30.3690000-07:00|10FF0009|Zewo Negiwo|00019714|49154|56823|10000|10000|0||105.76|108.29|0.00|-2.95|1807|0|0|01|0C00013D|0|41A00000|| +26|2023-10-06T21:14:30.3690000-07:00|13D|Fey Illumination|20.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|56823|54201| +21|2023-10-06T21:14:30.3690000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27372763|40478540|10000|10000|||100.00|80.10|0.00|0.00|78742|90890|10000|10000|||99.99|101.18|0.00|3.14|00019723|0|1| +38|2023-10-06T21:14:30.3690000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.53|99.81|0.00|-1.63|0|0|0||||||| +30|2023-10-06T21:14:30.3690000-07:00|7AC|Summon Order II|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +261|2023-10-06T21:14:29.9200000-07:00|Change|40022A17||| +37|2023-10-06T21:14:30.4130000-07:00|40022472|Zeromus|0001971E|27370059||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:30.4130000-07:00|40022472|Zeromus|0001971C|27362972|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T21:14:30.4130000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +37|2023-10-06T21:14:30.4130000-07:00|40022472|Zeromus|0001971F|27351087||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:30.4130000-07:00|10FF0001|Sesuga Sapisuga|0001971F|90349|90349|10000|10000|0||99.44|100.86|0.00|3.11|1300|0|0|0| +37|2023-10-06T21:14:30.4570000-07:00|40022472|Zeromus|0001971D|27338849||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:30.0350000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:14:30.6350000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2D820000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|27338849|40478540|10000|10000|||100.00|80.10|0.00|0.00|33727|57941|10000|10000|||99.96|100.94|0.00|3.14|00019724|0|1| +21|2023-10-06T21:14:30.6790000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|17610000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|33727|57941|10000|10000|||99.96|100.94|0.00|3.14|54201|54201|10000|10000|||99.53|99.81|0.00|-1.04|00019725|0|1| +37|2023-10-06T21:14:30.8130000-07:00|40022472|Zeromus|00019720|27336053||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:30.9030000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|4F4B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|27336053|40478540|10000|10000|||100.00|80.10|0.00|0.00|49154|56823|10000|10000|||105.76|108.29|0.00|-2.94|00019726|0|1| +21|2023-10-06T21:14:30.9030000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27336053|40478540|10000|10000|||100.00|80.10|0.00|0.00|53578|57266|9900|10000|||99.87|100.27|-0.02|-2.93|00019727|0|1| +261|2023-10-06T21:14:30.5370000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:14:30.9910000-07:00|40022472|Zeromus|00019723|27336053|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004A9|0|41200000|| +26|2023-10-06T21:14:30.9910000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40022472|Zeromus|00|40478540|90890| +261|2023-10-06T21:14:30.5370000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:14:30.9920000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|152003|3AA00000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|27336053|40478540|10000|10000|||100.00|80.10|0.00|0.00|34540|51669|6150|10000|||99.60|100.57|0.00|3.12|00019728|0|1| +38|2023-10-06T21:14:30.9920000-07:00|10FF0003|Gegehi Gehi|005A5A23|34540|51669|5950|10000|0||99.60|100.57|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:30.9920000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:14:30.9920000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:14:31.0360000-07:00|40022472|Zeromus|00019721|27333752||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:31.0360000-07:00|40022472|Zeromus|00019724|27322102||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:31.0810000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27322102|40478540|10000|10000|||100.00|80.10|0.00|0.00|33727|57941|10000|10000|||99.96|100.94|0.00|3.14|00019729|0|1| +37|2023-10-06T21:14:31.1250000-07:00|40022472|Zeromus|00019722|27308984||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:30.7490000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T21:14:31.2140000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|1D53|63151|63151|10000|10000|||100.23|100.29|0.00|0.53|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||99.53|99.81|0.00|0.20| +21|2023-10-06T21:14:31.2140000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41712003|43520000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|27308984|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||99.01|100.82|0.00|3.09|0001972A|0|1| +38|2023-10-06T21:14:31.2140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|55644|63151|10000|10000|0||100.23|100.29|0.00|0.53|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:31.2140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||99.01|100.82|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.2140000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:14:31.2140000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +24|2023-10-06T21:14:31.2580000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1F28|33727|57941|10000|10000|||99.96|100.94|0.00|3.14|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||99.53|99.81|0.00|0.20| +38|2023-10-06T21:14:31.2580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|25751|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:31.3030000-07:00|10FF0003|Gegehi Gehi|DoT|0|1B0E|34540|51669|5950|10000|||99.60|100.57|0.00|3.12|10FF0003|Gegehi Gehi|FFFFFFFF|34540|51669|5950|10000|||99.60|100.57|0.00|3.12| +38|2023-10-06T21:14:31.3030000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53578|57266|9900|10000|0||99.85|100.29|0.01|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:31.3030000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:14:31.3030000-07:00|10FF0003|Gegehi Gehi|005A5A23|27614|51669|5950|10000|0||99.60|100.57|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:30.9750000-07:00|Change|400229F9||| +21|2023-10-06T21:14:31.3910000-07:00|40022A17|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|350003|62C80000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|27308984|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||101.62|102.04|0.00|3.14|0001972B|0|1| +24|2023-10-06T21:14:31.3910000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|17CB|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47|10FF0004|Buhojaqe Zijaqe|0|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47| +24|2023-10-06T21:14:31.3910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E98|78742|90890|10000|10000|||99.99|101.18|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47| +24|2023-10-06T21:14:31.3910000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|E52|25751|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47| +24|2023-10-06T21:14:31.3910000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|EB8|55644|63151|10000|10000|||100.20|100.34|0.00|-0.22|10FF0004|Buhojaqe Zijaqe|0|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47| +24|2023-10-06T21:14:31.3910000-07:00|10FF0006|Wowobora Gogobora|HoT|798|E6E|53578|57266|9900|10000|||99.63|100.73|0.00|2.03|10FF0004|Buhojaqe Zijaqe|0|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47| +24|2023-10-06T21:14:31.3910000-07:00|10FF0003|Gegehi Gehi|HoT|798|17DD|27614|51669|5950|10000|||99.60|100.57|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47| +24|2023-10-06T21:14:31.3910000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|E60|90349|90349|10000|10000|||99.01|100.82|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47| +24|2023-10-06T21:14:31.3910000-07:00|10FF0009|Zewo Negiwo|HoT|798|ECE|49154|56823|9600|10000|||105.76|108.29|0.00|-2.94|10FF0004|Buhojaqe Zijaqe|0|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47| +24|2023-10-06T21:14:31.3910000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1ABC|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||99.53|99.81|0.00|0.37| +38|2023-10-06T21:14:31.3910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82478|90890|10000|10000|0||99.99|101.18|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.3910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:14:31.3910000-07:00|10FF0009|Zewo Negiwo|005A5A18|52944|56823|9600|10000|0||105.76|108.29|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.3910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +38|2023-10-06T21:14:31.3910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|59412|63151|10000|10000|0||100.20|100.34|0.00|-0.22|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.3910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:14:31.3910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9900|10000|0||99.63|100.73|0.00|2.03|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.3910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:14:31.3910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||99.01|100.82|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.3910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:14:31.3910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|36188|57078|9700|10000|0||100.66|102.19|0.00|-2.47|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.3910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:14:31.3910000-07:00|10FF0003|Gegehi Gehi|005A5A23|33723|51669|5950|10000|0||99.60|100.57|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.3910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:14:31.3910000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|29417|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.3910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +37|2023-10-06T21:14:31.4350000-07:00|40022472|Zeromus|00019727|27308736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:31.4800000-07:00|10FF000A|Dukaro Nezikaro|00019725|35402||||||99.96|100.94|0.00|3.14| +24|2023-10-06T21:14:31.4800000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|1261|78742|90890|10000|10000|||99.99|101.18|0.00|3.14|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||99.53|99.81|0.00|0.37| +24|2023-10-06T21:14:31.4800000-07:00|10FF0006|Wowobora Gogobora|DoT|0|1C12|53578|57266|9900|10000|||99.63|100.73|0.00|2.03|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||99.53|99.81|0.00|0.37| +21|2023-10-06T21:14:31.4800000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27308984|40478540|10000|10000|||100.00|80.10|0.00|0.00|36941|57078|9150|10000|||100.66|102.19|0.00|-2.47|0001972C|0|1| +38|2023-10-06T21:14:31.4800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77773|90890|10000|10000|0||99.99|101.18|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:31.4800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50080|57266|9900|10000|0||99.63|100.73|0.00|2.03|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:31.5250000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E77|35402|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0009|Zewo Negiwo|0|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94| +24|2023-10-06T21:14:31.5250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E26|59412|63151|10000|10000|||100.18|100.35|-0.01|-0.51|10FF0009|Zewo Negiwo|0|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94| +24|2023-10-06T21:14:31.5250000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E29|77773|90890|10000|10000|||99.99|101.18|0.00|3.14|10FF0009|Zewo Negiwo|0|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94| +24|2023-10-06T21:14:31.5250000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E6B|36188|57078|9700|10000|||100.59|102.11|0.00|-2.50|10FF0009|Zewo Negiwo|0|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94| +24|2023-10-06T21:14:31.5250000-07:00|10FF0003|Gegehi Gehi|HoT|777|E10|33723|51669|5950|10000|||99.60|100.57|0.00|3.12|10FF0009|Zewo Negiwo|0|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94| +24|2023-10-06T21:14:31.5250000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E48|50080|57266|9900|10000|||99.55|100.91|0.00|1.57|10FF0009|Zewo Negiwo|0|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94| +24|2023-10-06T21:14:31.5250000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E80|90349|90349|10000|10000|||99.01|100.82|0.00|3.09|10FF0009|Zewo Negiwo|0|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94| +24|2023-10-06T21:14:31.5250000-07:00|10FF0009|Zewo Negiwo|HoT|777|E81|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94|10FF0009|Zewo Negiwo|0|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94| +24|2023-10-06T21:14:31.5250000-07:00|10FF0009|Zewo Negiwo|DoT|0|1C09|52944|56823|9600|10000|||105.76|108.29|0.00|-2.94|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||99.53|99.81|0.00|0.37| +21|2023-10-06T21:14:31.5250000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|41100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27308736|40478540|10000|10000|||100.00|80.10|0.00|0.00|35402|57941|10000|10000|||99.96|100.94|0.00|3.14|0001972D|0|1| +38|2023-10-06T21:14:31.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81398|90890|10000|10000|0||99.99|101.18|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.5250000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +38|2023-10-06T21:14:31.5250000-07:00|10FF0009|Zewo Negiwo|005A5A18|49480|56823|10000|10000|0||105.76|108.29|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:31.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63034|63151|10000|10000|0||100.18|100.35|-0.01|-0.51|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +38|2023-10-06T21:14:31.5250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53736|57266|9900|10000|0||99.55|100.91|0.00|1.57|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +38|2023-10-06T21:14:31.5250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||99.01|100.82|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +38|2023-10-06T21:14:31.5250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39879|57078|9700|10000|0||100.59|102.11|0.00|-2.50|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +38|2023-10-06T21:14:31.5250000-07:00|10FF0003|Gegehi Gehi|005A5A23|37323|51669|5950|10000|0||99.60|100.57|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +38|2023-10-06T21:14:31.5250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39105|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:31.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +24|2023-10-06T21:14:31.5690000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|12EA|90349|90349|10000|10000|||99.01|100.82|0.00|3.09|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||99.53|99.81|0.00|0.37| +38|2023-10-06T21:14:31.5690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|85507|90349|10000|10000|0||99.01|100.82|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:31.6140000-07:00|40022472|Zeromus|00019729|27306528||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:31.6590000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|502A0000|143E|340000|4|198E8000|11B|2A8000|0|0|0|0|0|0|0|0|27306528|40478540|10000|10000|||100.00|80.10|0.00|0.00|81398|90890|10000|10000|||99.99|101.18|0.00|3.14|0001972E|0|1| +21|2023-10-06T21:14:31.6590000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2B440000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|81398|90890|10000|10000|||99.99|101.18|0.00|3.14|27306528|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001972F|0|1| +20|2023-10-06T21:14:31.7470000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|99.35|101.32|0.00|0.52| +261|2023-10-06T21:14:31.2780000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T21:14:31.7920000-07:00|40022472|Zeromus|0001972A|27289294||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:31.7920000-07:00|10FF0001|Sesuga Sapisuga|0001972A|85507|90349|10000|10000|0||99.01|100.82|0.00|3.09|1300|0|0|02|0A00076E|03|41F00000|||||| +37|2023-10-06T21:14:31.7920000-07:00|40022472|Zeromus|00019728|27274286||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:31.7920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.46|101.96|-0.01|-2.55| +38|2023-10-06T21:14:31.7920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|85507|90349|10000|10000|0||99.01|100.82|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:31.7920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39879|57078|9700|10000|0||100.46|101.96|-0.01|-2.55|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:31.7920000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:14:31.9260000-07:00|10FF0009|Zewo Negiwo|005A5A18|49480|56823|10000|10000|0||105.76|108.29|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:31.9260000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +261|2023-10-06T21:14:31.5610000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:14:31.9710000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|277C0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|27274286|40478540|10000|10000|||100.00|80.10|0.00|0.00|37323|51669|5950|10000|||99.60|100.57|0.00|3.12|00019730|0|1| +38|2023-10-06T21:14:31.9710000-07:00|10FF0003|Gegehi Gehi|005A5A23|37323|51669|5650|10000|0||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:31.9710000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:14:31.5610000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:14:32.0150000-07:00|40022472|Zeromus|0001972C|27274030||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:32.0590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63034|63151|10000|10000|0||100.18|100.36|0.00|-0.63|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:32.0590000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +37|2023-10-06T21:14:32.1490000-07:00|40022472|Zeromus|0001972D|27257374||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:32.1490000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3A340000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|27274030|40478540|10000|10000|||100.00|80.10|0.00|0.00|63034|63151|10000|10000|||100.18|100.36|0.00|-1.22|00019731|0|1| +21|2023-10-06T21:14:32.1490000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|ADE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27274030|40478540|10000|10000|||100.00|80.10|0.00|0.00|85507|90349|10000|10000|||98.98|100.82|0.00|3.03|00019732|0|1| +31|2023-10-06T21:14:32.1490000-07:00|10FF0001||||| +261|2023-10-06T21:14:31.7630000-07:00|Change|10FF0003||| +37|2023-10-06T21:14:32.1930000-07:00|40022472|Zeromus|00019726|27237075||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:32.1930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53736|57266|9900|10000|0||99.29|101.46|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:32.1930000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:14:32.3270000-07:00|10FF0003|Gegehi Gehi|005A5A23|37323|51669|5650|10000|0||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:32.3270000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +21|2023-10-06T21:14:32.4160000-07:00|10FF0009|Zewo Negiwo|4097|Afflatus Misery|40022472|Zeromus|750003|C7710000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|27237075|40478540|10000|10000|||100.00|80.10|0.00|0.00|49480|56823|10000|10000|||105.29|107.55|0.00|-2.63|00019733|0|1| +37|2023-10-06T21:14:32.4600000-07:00|10FF0007|Kehabiqo Febiqo|0001972F|70322||||||99.99|101.18|0.00|-3.14| +38|2023-10-06T21:14:32.4600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70322|90890|10000|10000|0||99.99|101.18|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:32.4600000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +39|2023-10-06T21:14:32.5050000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||99.53|99.81|0.00|1.86| +38|2023-10-06T21:14:32.5940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39105|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:32.5940000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +37|2023-10-06T21:14:32.6820000-07:00|40022472|Zeromus|0001972B|27211787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:32.6820000-07:00|40022472|Zeromus|00019732|27209005||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:32.7260000-07:00|40022472|Zeromus|00019730|27198897||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:32.7260000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||100.18|100.36|0.00|-3.13| +38|2023-10-06T21:14:32.7260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|85507|90349|10000|10000|0||98.40|100.76|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:32.7260000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +39|2023-10-06T21:14:32.7710000-07:00|10FF000A|Dukaro Nezikaro|39684|57941|10000|10000|||99.96|100.94|0.00|3.14| +24|2023-10-06T21:14:32.7710000-07:00|40022472|Zeromus|DoT|0|1C0C|27209005|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|70322|90890|10000|10000|||99.99|101.18|0.00|-3.14| +38|2023-10-06T21:14:32.7710000-07:00|40022472|Zeromus|005A5A00|27191717|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:14:32.7710000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +21|2023-10-06T21:14:32.8580000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|30900000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|27191717|40478540|10000|10000|||100.00|80.10|0.00|0.00|39684|57941|10000|10000|||99.96|100.94|0.00|3.14|00019734|0|1| +36|2023-10-06T21:14:32.8580000-07:00|3804|3| +39|2023-10-06T21:14:32.9040000-07:00|10FF0004|Buhojaqe Zijaqe|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55| +37|2023-10-06T21:14:32.9480000-07:00|40022472|Zeromus|00019731|27176817||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:32.9480000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27191717|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.18|100.36|0.00|-3.13|00019735|0|1| +37|2023-10-06T21:14:32.9930000-07:00|40022472|Zeromus|00019733|27125760||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:32.4750000-07:00|Change|10FF0004||||| +39|2023-10-06T21:14:32.9930000-07:00|10FF0007|Kehabiqo Febiqo|71230|90890|10000|10000|||99.99|101.18|0.00|-3.14| +39|2023-10-06T21:14:32.9930000-07:00|10FF0006|Wowobora Gogobora|54308|57266|10000|10000|||99.29|101.46|0.00|3.11| +261|2023-10-06T21:14:32.5720000-07:00|Change|10FF0006||||||||||||| +39|2023-10-06T21:14:33.0370000-07:00|10FF0009|Zewo Negiwo|50048|56823|10000|10000|||104.63|106.49|0.00|-2.97| +39|2023-10-06T21:14:33.0820000-07:00|10FF0001|Sesuga Sapisuga|86410|90349|10000|10000|||98.40|100.76|0.00|3.03| +37|2023-10-06T21:14:33.1710000-07:00|40022472|Zeromus|0001972E|27105238||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:33.1710000-07:00|10FF0007|Kehabiqo Febiqo|0001972E|77772||||||99.99|101.18|0.00|-3.14| +39|2023-10-06T21:14:33.1710000-07:00|10FF0003|Gegehi Gehi|37839|51669|5850|10000|||99.60|100.57|0.00|3.12| +04|2023-10-06T21:14:32.6840000-07:00|400229F9|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||98.25|99.26|0.00|1.48| +261|2023-10-06T21:14:32.6840000-07:00|Remove|400229F9| +22|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|1E670000|A40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|00019736|0|8| +22|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|1E7D0000|C80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|71230|90890|10000|10000|||99.99|101.18|0.00|-3.14|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|00019736|1|8| +22|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|32E70000|710E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|39684|57941|10000|10000|||99.96|100.94|0.00|3.14|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|00019736|2|8| +22|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1E5F0000|980E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|54308|57266|10000|10000|||99.29|101.46|0.00|3.11|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|00019736|3|8| +22|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|1E900000|E60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.18|100.36|0.00|-3.13|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|00019736|4|8| +22|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|1F150000|BB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|37323|51669|5650|10000|||99.60|100.57|0.00|3.12|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|00019736|5|8| +22|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|31960000|560E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|86410|90349|10000|10000|||98.40|100.76|0.00|3.03|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|00019736|6|8| +22|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|200004|310F0000|7E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|50048|56823|10000|10000|||104.63|106.49|0.00|-2.97|40449|57078|9900|10000|||100.45|101.95|0.00|-2.55|00019736|7|8| +38|2023-10-06T21:14:33.2160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77772|90890|10000|10000|13||99.99|101.18|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.2160000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:14:33.2160000-07:00|10FF0009|Zewo Negiwo|005A5A18|50048|56823|10000|10000|35||104.63|106.49|0.00|-2.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.2160000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +38|2023-10-06T21:14:33.2160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|19||100.18|100.36|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.2160000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:14:33.2160000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54308|57266|10000|10000|21||99.29|101.46|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.2160000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:14:33.2160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|86410|90349|10000|10000|22||98.40|100.76|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.2160000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:14:33.2160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40449|57078|8900|10000|21||100.45|101.95|0.00|-2.55|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.2160000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:14:33.2160000-07:00|10FF0003|Gegehi Gehi|005A5A23|37839|51669|5850|10000|24||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.2160000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:14:33.2160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39684|57941|10000|10000|35||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.2160000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +261|2023-10-06T21:14:32.8060000-07:00|Change|10FF0003||| +21|2023-10-06T21:14:33.2590000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27105238|40478540|10000|10000|||100.00|80.10|0.00|0.00|39684|57941|10000|10000|||99.96|100.94|0.00|3.14|00019737|0|1| +37|2023-10-06T21:14:33.3930000-07:00|40022472|Zeromus|00019734|27092806||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022466||||||||| +21|2023-10-06T21:14:33.6610000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27092806|40478540|10000|10000|||100.00|80.10|0.00|0.00|77772|90890|10000|10000|||99.70|101.19|0.00|-3.11|00019738|0|1| +261|2023-10-06T21:14:33.2660000-07:00|Change|4002245F||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022465||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022461||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022468||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022463||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|4002245E||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|4002245D||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022467||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022464||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022460||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|4002245C||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|4002245B||||||||| +37|2023-10-06T21:14:33.7060000-07:00|40022472|Zeromus|00019735|27089904||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:33.7060000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|28CE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27092806|40478540|10000|10000|||100.00|80.10|0.00|0.00|86410|90349|10000|10000|||98.40|100.76|0.00|3.06|00019739|0|1| +38|2023-10-06T21:14:33.7060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|86410|90349|10000|10000|22||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:33.7060000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +20|2023-10-06T21:14:33.7500000-07:00|4002245B|Comet|8B5C|Meteor Impact|4002245B|Comet|5.700|103.20|91.40|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|4002245C|Comet|8B5C|Meteor Impact|4002245C|Comet|5.700|86.20|97.20|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|4002245D|Comet|8B5C|Meteor Impact|4002245D|Comet|5.700|118.00|83.00|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|4002245E|Comet|8B5C|Meteor Impact|4002245E|Comet|5.700|113.80|89.20|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|4002245F|Comet|8B5C|Meteor Impact|4002245F|Comet|5.700|110.60|84.00|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022460|Comet|8B5C|Meteor Impact|40022460|Comet|5.700|105.00|82.40|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022461|Comet|8B5C|Meteor Impact|40022461|Comet|5.700|100.00|85.60|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022462|Comet|8B5C|Meteor Impact|40022462|Comet|5.700|95.00|82.40|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022463|Comet|8B5C|Meteor Impact|40022463|Comet|5.700|89.40|84.00|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022464|Comet|8B5C|Meteor Impact|40022464|Comet|5.700|86.20|89.20|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022465|Comet|8B5C|Meteor Impact|40022465|Comet|5.700|82.00|83.00|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022466|Comet|8B5C|Meteor Impact|40022466|Comet|5.700|118.00|102.00|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022467|Comet|8B5C|Meteor Impact|40022467|Comet|5.700|82.00|102.00|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022468|Comet|8B5C|Meteor Impact|40022468|Comet|5.700|100.00|117.60|0.00|0.00| +20|2023-10-06T21:14:33.7500000-07:00|40022472|Zeromus|8B57|Void Meteor|40022472|Zeromus|4.500|100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022462||||||||||||||||| +261|2023-10-06T21:14:33.2660000-07:00|Change|40022472||||||||||||| +37|2023-10-06T21:14:33.7940000-07:00|40022472|Zeromus|00019737|27087648||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:33.5440000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:14:34.1060000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|714003|48810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27087648|40478540|10000|10000|||100.00|80.10|0.00|0.00|77772|90890|10000|10000|||98.95|101.21|-0.02|-3.10|0001973A|0|1| +261|2023-10-06T21:14:33.7590000-07:00|Change|40022464||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|40022461||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|4002245F||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|4002245C||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|40022463||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|40022467||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|4002245E||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|40022465||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|40022460||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|4002245D||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|40022468||||||||||||| +261|2023-10-06T21:14:33.7590000-07:00|Change|40022466||||||||||||| +37|2023-10-06T21:14:34.1960000-07:00|40022472|Zeromus|00019738|27082807||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:34.1960000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|63151|63151|10000|10000|||100.18|100.36|0.00|-3.13|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-2.80| +21|2023-10-06T21:14:34.1960000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|350003|43160000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|27087648|40478540|10000|10000|||100.00|80.10|0.00|0.00|54308|57266|10000|10000|||99.29|101.46|0.00|3.11|0001973B|0|1| +20|2023-10-06T21:14:34.1960000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.67|102.01|0.00|1.93| +21|2023-10-06T21:14:34.1960000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27087648|40478540|10000|10000|||100.00|80.10|0.00|0.00|37839|51669|5850|10000|||99.60|100.57|0.00|3.12|0001973C|0|1| +38|2023-10-06T21:14:34.1960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|8||100.18|100.36|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:34.1960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54308|57266|10000|10000|21||99.29|101.46|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:34.1960000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:14:33.7590000-07:00|Change|10FF0006||||||||||||| +24|2023-10-06T21:14:34.2850000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|0|39684|57941|10000|10000|||99.96|100.94|0.00|3.14|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-2.56| +38|2023-10-06T21:14:34.2850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39684|57941|10000|10000|22||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:34.3300000-07:00|10FF0004|Buhojaqe Zijaqe|00019736|48232|57078|8900|10000|21||101.73|102.01|0.00|2.16|1C00|0|0|01|06000129|0|41E770A0|| +24|2023-10-06T21:14:34.3300000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|37839|51669|5850|10000|||99.60|100.57|0.00|3.12|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-2.56| +38|2023-10-06T21:14:34.3300000-07:00|10FF0003|Gegehi Gehi|005A5A23|37839|51669|5850|10000|10||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:34.3740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1702|40449|57078|8900|10000|||101.73|102.01|0.00|2.16|10FF0004|Buhojaqe Zijaqe|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16| +24|2023-10-06T21:14:34.3740000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|E74|39684|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16| +24|2023-10-06T21:14:34.3740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|E4B|63151|63151|10000|10000|||100.18|100.36|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16| +24|2023-10-06T21:14:34.3740000-07:00|10FF0006|Wowobora Gogobora|HoT|798|E89|54308|57266|10000|10000|||99.29|101.46|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16| +24|2023-10-06T21:14:34.3740000-07:00|10FF0003|Gegehi Gehi|HoT|798|E50|37839|51669|5850|10000|||99.60|100.57|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16| +24|2023-10-06T21:14:34.3740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E42|77772|90890|10000|10000|||98.95|101.21|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16| +24|2023-10-06T21:14:34.3740000-07:00|10FF0009|Zewo Negiwo|HoT|798|F01|50048|56823|10000|10000|||104.63|106.49|0.00|-2.97|10FF0004|Buhojaqe Zijaqe|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16| +24|2023-10-06T21:14:34.3740000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|E49|86410|90349|10000|10000|||98.40|100.76|0.00|3.06|10FF0004|Buhojaqe Zijaqe|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16| +24|2023-10-06T21:14:34.3740000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|40449|57078|8900|10000|||101.73|102.01|0.00|2.16|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-2.56| +38|2023-10-06T21:14:34.3750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81422|90890|10000|10000|13||98.95|101.21|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.3750000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:14:34.3750000-07:00|10FF0009|Zewo Negiwo|005A5A18|53889|56823|10000|10000|35||104.63|106.49|0.00|-2.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.3750000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +38|2023-10-06T21:14:34.3750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|8||100.18|100.36|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.3750000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:14:34.3750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|21||99.29|101.46|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.3750000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:14:34.3750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90067|90349|10000|10000|22||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.3750000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:14:34.3750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|54122|57078|9450|10000|9||101.73|102.01|0.00|2.16|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.3750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:14:34.3750000-07:00|10FF0003|Gegehi Gehi|005A5A23|41503|51669|5850|10000|10||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.3750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:14:34.3750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43384|57941|10000|10000|22||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.3750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +21|2023-10-06T21:14:34.4190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27082807|40478540|10000|10000|||100.00|80.10|0.00|0.00|90067|90349|10000|10000|||98.40|100.76|0.00|3.06|0001973D|0|1| +31|2023-10-06T21:14:34.4190000-07:00|10FF0001||||| +37|2023-10-06T21:14:34.4640000-07:00|10FF0007|Kehabiqo Febiqo|00019736|89227|90890|10000|10000|13||98.95|101.21|0.00|3.09|1501|0|0|01|01000129|0|41E65E31|| +24|2023-10-06T21:14:34.4640000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|81422|90890|10000|10000|||98.95|101.21|0.00|3.09|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-2.21| +24|2023-10-06T21:14:34.4640000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|57266|57266|10000|10000|||99.29|101.46|0.00|3.11|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-2.21| +38|2023-10-06T21:14:34.4640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89227|90890|10000|10000|8||98.95|101.21|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:34.4640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|8||99.29|101.46|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:14:34.5080000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|179B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|43384|57941|10000|10000|||99.96|100.94|0.00|3.14|54201|54201|10000|10000|||100.36|97.55|0.00|-2.21|0001973E|0|1| +24|2023-10-06T21:14:34.5530000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E75|43384|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0009|Zewo Negiwo|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97| +24|2023-10-06T21:14:34.5530000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E40|63151|63151|10000|10000|||100.18|100.36|0.00|-3.13|10FF0009|Zewo Negiwo|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97| +24|2023-10-06T21:14:34.5530000-07:00|10FF0003|Gegehi Gehi|HoT|777|DF3|41503|51669|5850|10000|||99.60|100.57|0.00|3.12|10FF0009|Zewo Negiwo|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97| +24|2023-10-06T21:14:34.5530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|1761|54122|57078|9450|10000|||101.81|102.01|0.00|2.83|10FF0009|Zewo Negiwo|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97| +24|2023-10-06T21:14:34.5530000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E09|57266|57266|10000|10000|||99.29|101.46|0.00|3.11|10FF0009|Zewo Negiwo|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97| +24|2023-10-06T21:14:34.5530000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E0A|89227|90890|10000|10000|||98.95|101.21|0.00|3.09|10FF0009|Zewo Negiwo|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97| +24|2023-10-06T21:14:34.5530000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|163D|90067|90349|10000|10000|||98.40|100.76|0.00|3.06|10FF0009|Zewo Negiwo|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97| +24|2023-10-06T21:14:34.5530000-07:00|10FF0009|Zewo Negiwo|HoT|777|E53|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97|10FF0009|Zewo Negiwo|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97| +24|2023-10-06T21:14:34.5530000-07:00|10FF0009|Zewo Negiwo|DoT|0|0|53889|56823|10000|10000|||104.63|106.49|0.00|-2.97|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-1.82| +38|2023-10-06T21:14:34.5530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|8||98.95|101.21|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.5530000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +38|2023-10-06T21:14:34.5530000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|10000|10000|23||104.63|106.49|0.00|-2.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.5530000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:34.5530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|8||100.18|100.36|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.5530000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +38|2023-10-06T21:14:34.5530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|8||99.29|101.46|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.5530000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +38|2023-10-06T21:14:34.5530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|22||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.5530000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +38|2023-10-06T21:14:34.5530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|9450|10000|9||101.81|102.01|0.00|2.83|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.5530000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +38|2023-10-06T21:14:34.5530000-07:00|10FF0003|Gegehi Gehi|005A5A23|45074|51669|5850|10000|10||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.5530000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +38|2023-10-06T21:14:34.5530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|47085|57941|10000|10000|22||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:34.5530000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +37|2023-10-06T21:14:34.5970000-07:00|10FF000A|Dukaro Nezikaro|00019736|57941|57941|10000|10000|22||99.96|100.94|0.00|3.14|1E02|0|0|01|08000129|0|41E54DCE|| +24|2023-10-06T21:14:34.5970000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|90067|90349|10000|10000|||98.40|100.76|0.00|3.06|10FF0001|Sesuga Sapisuga|FFFFFFFF|90067|90349|10000|10000|||98.40|100.76|0.00|3.06| +38|2023-10-06T21:14:34.5970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|17||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:14:34.6410000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1E330000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|27082807|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.18|100.36|0.00|-3.13|0001973F|0|1| +261|2023-10-06T21:14:34.2030000-07:00|Change|4002245B||||||||||||| +37|2023-10-06T21:14:34.7310000-07:00|40022472|Zeromus|0001973A|27064246||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:34.7310000-07:00|10FF0006|Wowobora Gogobora|00019736|57266|57266|10000|10000|8||99.29|101.46|0.00|3.11|1B03|0|0|01|05000129|0|41E43B5F|| +37|2023-10-06T21:14:34.7310000-07:00|40022472|Zeromus|0001973C|27064245||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:34.7310000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|99.60|100.57|0.00|3.12| +261|2023-10-06T21:14:34.2940000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:14:34.8630000-07:00|10FF0008|Kokosaze Lulusaze|00019736|63151|63151|10000|10000|8||100.18|100.36|0.00|-3.13|1F04|0|0|01|03000129|0|41E32AFC|| +20|2023-10-06T21:14:34.8630000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|104.63|106.49|0.00|-2.97| +261|2023-10-06T21:14:34.3920000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:14:34.9530000-07:00|40022472|Zeromus|0001973D|27062533||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:34.9970000-07:00|40022472|Zeromus|00019739|27052087||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:34.9970000-07:00|10FF0003|Gegehi Gehi|00019736|51669|51669|5850|10000|10||99.60|100.57|0.00|3.12|2305|0|0|01|01000129|0|41E2188D|| +261|2023-10-06T21:14:34.5930000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:14:35.0410000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1F5C0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|27062533|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|00019740|0|1| +21|2023-10-06T21:14:35.0850000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|10490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27052087|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||98.95|101.21|0.00|3.09|00019741|0|1| +37|2023-10-06T21:14:35.1300000-07:00|10FF0001|Sesuga Sapisuga|00019736|90349|90349|10000|10000|17||98.40|100.76|0.00|3.06|1306|0|0|01|03000129|0|41E10A36|| +21|2023-10-06T21:14:35.1300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|3AF70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27052087|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|9450|10000|||101.85|102.01|0.00|-3.06|00019742|0|1| +38|2023-10-06T21:14:35.1300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|9050|10000|9||101.85|102.01|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:35.1300000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +24|2023-10-06T21:14:35.2200000-07:00|40022472|Zeromus|DoT|A92|4B1|27052087|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|10000|10000|||99.30|101.44|0.00|2.90| +37|2023-10-06T21:14:35.2200000-07:00|40022472|Zeromus|0001973B|27033712||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:35.2200000-07:00|10FF0006|Wowobora Gogobora|0001973B|57266|57266|10000|10000|8||99.30|101.44|0.00|2.90|1B00|0|0|01|07000A92|0|41700000|| +26|2023-10-06T21:14:35.2200000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +21|2023-10-06T21:14:35.2200000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|26920000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|27052087|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|10000|10000|||99.30|101.44|0.00|2.90|00019743|0|1| +38|2023-10-06T21:14:35.2200000-07:00|40022472|Zeromus|005A5A00|27033712|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:14:35.2200000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:14:34.7120000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:14:35.2640000-07:00|10FF0009|Zewo Negiwo|00019736|56823|56823|10000|10000|23||104.63|106.49|0.00|-2.97|1807|0|0|01|06000129|0|41DFF5BB|| +37|2023-10-06T21:14:35.3970000-07:00|40022472|Zeromus|0001973F|27025981||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:34.9370000-07:00|Change|40022A17||||| +38|2023-10-06T21:14:35.4420000-07:00|40022A2F||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:14:35.4420000-07:00|40022A2F||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:14:35.4420000-07:00|40022472|Zeromus|00019740|27017953||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:35.4420000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|11760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27025981|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|00019744|0|1| +39|2023-10-06T21:14:35.5300000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-0.11| +21|2023-10-06T21:14:35.6190000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27017953|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.20|100.51|-0.02|0.60|00019745|0|1| +261|2023-10-06T21:14:35.1570000-07:00|Add|40022A2F||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:35.1570000-07:00|Add|40022A2E||||||||||||||||||||||||| +03|2023-10-06T21:14:35.1570000-07:00|40022A2F|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||99.66|99.29|0.00|-0.02| +261|2023-10-06T21:14:35.2510000-07:00|Change|40022A2F||| +37|2023-10-06T21:14:35.7080000-07:00|40022472|Zeromus|00019741|27013784||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:35.7080000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||100.23|100.72|-0.02|0.48| +23|2023-10-06T21:14:35.7530000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +39|2023-10-06T21:14:35.7530000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|10000|10000|||99.96|100.94|0.00|3.14| +24|2023-10-06T21:14:35.7530000-07:00|40022472|Zeromus|DoT|0|2264|27013784|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|90890|90890|10000|10000|||98.99|100.57|0.00|3.09| +38|2023-10-06T21:14:35.7530000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-0.11|0|0|0|||||||||| +26|2023-10-06T21:14:35.7530000-07:00|77B|Summon Order|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:14:35.7530000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||101.84|102.01|0.00|-2.30|57078|57078|9050|10000|||101.84|102.01|0.00|-2.30|00019746|0|1| +38|2023-10-06T21:14:35.7530000-07:00|40022472|Zeromus|005A5A00|27004980|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:14:35.3470000-07:00|Change|10FF0009||||||||||||||||||||| +22|2023-10-06T21:14:35.8420000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5850|10000|||99.60|100.57|0.00|3.12|54201|54201|10000|10000|||100.36|97.55|0.00|-0.21|00019747|0|8| +22|2023-10-06T21:14:35.8420000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|54201|54201|10000|10000|||100.36|97.55|0.00|-0.21|00019747|1|8| +22|2023-10-06T21:14:35.8420000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|54201|54201|10000|10000|||100.36|97.55|0.00|-0.21|00019747|2|8| +22|2023-10-06T21:14:35.8420000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9700|10000|||99.63|101.03|0.00|3.12|54201|54201|10000|10000|||100.36|97.55|0.00|-0.21|00019747|3|8| +22|2023-10-06T21:14:35.8420000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|54201|54201|10000|10000|||100.36|97.55|0.00|-0.21|00019747|4|8| +22|2023-10-06T21:14:35.8420000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.28|101.08|0.00|0.30|54201|54201|10000|10000|||100.36|97.55|0.00|-0.21|00019747|5|8| +22|2023-10-06T21:14:35.8420000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||101.77|102.00|0.00|-2.07|54201|54201|10000|10000|||100.36|97.55|0.00|-0.21|00019747|6|8| +22|2023-10-06T21:14:35.8420000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0009|Zewo Negiwo|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|10000|10000|||104.62|106.49|0.00|-2.90|54201|54201|10000|10000|||100.36|97.55|0.00|-0.21|00019747|7|8| +36|2023-10-06T21:14:35.8420000-07:00|38E0|3| +37|2023-10-06T21:14:35.8860000-07:00|40022472|Zeromus|00019743|26995106||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:35.8860000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|9250|10000|||101.77|102.00|0.00|-2.07| +37|2023-10-06T21:14:35.9310000-07:00|40022472|Zeromus|00019742|26980011||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:35.9750000-07:00|40022472|Zeromus|00019744|26975541||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:35.9750000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||98.99|100.57|0.00|3.09| +39|2023-10-06T21:14:35.9750000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9900|10000|||99.63|101.03|0.00|3.12| +261|2023-10-06T21:14:35.5330000-07:00|Change|10FF0006||||||| +261|2023-10-06T21:14:35.5330000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:14:36.0650000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||98.40|100.76|0.00|3.06| +39|2023-10-06T21:14:36.1530000-07:00|10FF0003|Gegehi Gehi|51669|51669|6050|10000|||99.60|100.57|0.00|3.12| +21|2023-10-06T21:14:36.1530000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|204A0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|26975541|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5850|10000|||99.60|100.57|0.00|3.12|00019748|0|1| +38|2023-10-06T21:14:36.1530000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5850|10000|10||99.60|100.57|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.1530000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +21|2023-10-06T21:14:36.1980000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|26F50000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|26975541|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|00019749|0|1| +38|2023-10-06T21:14:36.1980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|17||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.1980000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +261|2023-10-06T21:14:35.7440000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:14:36.3770000-07:00|40022472|Zeromus|00019745|26971831||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:14:36.4650000-07:00|40022A2F|Carbuncle|40022A2F|Carbuncle|01| +261|2023-10-06T21:14:36.0880000-07:00|Change|40022A2F||| +21|2023-10-06T21:14:36.5550000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|712003|619B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26971831|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|0001974A|0|1| +21|2023-10-06T21:14:36.5550000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26971831|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9900|10000|||99.63|101.03|0.00|3.12|0001974B|0|1| +20|2023-10-06T21:14:36.6000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.10|101.28|0.00|-2.54| +21|2023-10-06T21:14:36.6900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26971831|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974C|0|1| +31|2023-10-06T21:14:36.6900000-07:00|10FF0001||||| +37|2023-10-06T21:14:36.7340000-07:00|10FF0003|Gegehi Gehi|00019747|51669|51669|5850|10000|10||99.60|100.57|0.00|3.12|2300|0|0|01|0C00013B|0|41A80000|| +26|2023-10-06T21:14:36.7340000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51669|54201| +21|2023-10-06T21:14:36.7340000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|2D580000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26971831|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9900|10000|||99.63|101.03|0.00|3.12|0001974D|0|1| +20|2023-10-06T21:14:36.7780000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|101.80|103.64|0.00|-2.38| +261|2023-10-06T21:14:36.3790000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:14:36.8660000-07:00|10FF0007|Kehabiqo Febiqo|00019747|90890|90890|10000|10000|8||98.99|100.57|0.00|3.09|1501|0|0|01|0C00013B|0|41A80000|| +26|2023-10-06T21:14:36.8660000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|54201| +22|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0001|Sesuga Sapisuga|4A0E|5520000|4|2A970000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974E|0|8| +22|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0007|Kehabiqo Febiqo|4A0E|5520000|4|29620000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974E|1|8| +22|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0003|Gegehi Gehi|4A0E|5520000|4|2AFF0000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5850|10000|||99.60|100.57|0.00|3.12|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974E|2|8| +22|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0006|Wowobora Gogobora|4A0E|5520000|4|29DB0000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9600|10000|||99.63|101.03|0.00|3.12|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974E|3|8| +22|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0004|Buhojaqe Zijaqe|4A0E|5520000|4|2A5B0000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9250|10000|||99.90|101.11|0.00|-2.84|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974E|4|8| +22|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF000A|Dukaro Nezikaro|4A0E|5520000|4|2A6B0000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974E|5|8| +22|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0008|Kokosaze Lulusaze|4A0E|5520000|4|28E80000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|0.13|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974E|6|8| +22|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0009|Zewo Negiwo|4A0E|5520000|200004|42650000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|10000|10000|||101.54|103.37|0.00|-2.37|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001974E|7|8| +38|2023-10-06T21:14:36.8670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|18||98.99|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.8670000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +38|2023-10-06T21:14:36.8670000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|10000|10000|39||101.54|103.37|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.8670000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0009|Zewo Negiwo|00|56823|90349| +38|2023-10-06T21:14:36.8670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|22||100.33|101.40|0.00|0.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.8670000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|63151|90349| +38|2023-10-06T21:14:36.8670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9600|10000|24||99.63|101.03|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.8670000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|57266|90349| +38|2023-10-06T21:14:36.8670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|27||98.40|100.76|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.8670000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:14:36.8670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|9250|10000|25||99.90|101.11|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.8670000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|57078|90349| +38|2023-10-06T21:14:36.8670000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5850|10000|27||99.60|100.57|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.8670000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|51669|90349| +38|2023-10-06T21:14:36.8670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|38||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:36.8670000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|57941|90349| +37|2023-10-06T21:14:36.9110000-07:00|40022472|Zeromus|00019748|26963565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:37.0010000-07:00|10FF000A|Dukaro Nezikaro|00019747|57941|57941|10000|10000|38||99.96|100.94|0.00|3.14|1E02|0|0|01|0C00013B|0|41A80000|| +26|2023-10-06T21:14:37.0010000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|57941|54201| +261|2023-10-06T21:14:36.5910000-07:00|Change|10FF0006||| +21|2023-10-06T21:14:37.0460000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26963565|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|0001974F|0|1| +261|2023-10-06T21:14:36.5910000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:14:37.0900000-07:00|40022472|Zeromus|0001974B|26963416||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:37.1340000-07:00|10FF0006|Wowobora Gogobora|00019747|57266|57266|9600|10000|24||99.63|101.03|0.00|3.12|1B03|0|0|01|0D00013B|0|41A80000|| +26|2023-10-06T21:14:37.1340000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +21|2023-10-06T21:14:37.1340000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2CED0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|26963565|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.33|101.40|0.00|0.13|00019750|0|1| +37|2023-10-06T21:14:37.1790000-07:00|40022472|Zeromus|0001974A|26938429||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:37.1810000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|27440000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|26963416|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5850|10000|||99.60|100.57|0.00|3.12|00019751|0|1| +38|2023-10-06T21:14:37.1810000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|27||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:37.1810000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:14:37.1810000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:14:37.2240000-07:00|40022472|Zeromus|0001974C|26936726||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:37.2240000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|10000|10000|||98.40|100.76|0.00|3.06| +38|2023-10-06T21:14:37.2240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|10||100.33|101.40|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:36.8290000-07:00|Change|10FF0003||| +37|2023-10-06T21:14:37.2690000-07:00|10FF0001|Sesuga Sapisuga|00019747|90349|90349|10000|10000|27||98.40|100.76|0.00|3.06|1304|0|0|01|0D00013B|0|41A80000|| +26|2023-10-06T21:14:37.2690000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|54201| +24|2023-10-06T21:14:37.2690000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-1.05| +24|2023-10-06T21:14:37.2690000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|10BC|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-1.05| +21|2023-10-06T21:14:37.2690000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|24310000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|26936726|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|00019752|0|1| +38|2023-10-06T21:14:37.2690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|25||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:37.3140000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|51669|51669|5550|10000|||99.60|100.57|0.00|3.12|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|10000|10000|||98.40|100.76|0.00|3.06| +24|2023-10-06T21:14:37.3140000-07:00|10FF0003|Gegehi Gehi|HoT|0|11C6|51669|51669|5550|10000|||99.60|100.57|0.00|3.12|10FF0001|Sesuga Sapisuga|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06| +38|2023-10-06T21:14:37.3140000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|14||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:37.3580000-07:00|40022472|Zeromus|0001974D|26925118||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:37.4030000-07:00|10FF0008|Kokosaze Lulusaze|00019747|63151|63151|10000|10000|10||100.33|101.40|0.00|-3.13|1F05|0|0|01|0B00013B|0|41A80000|| +26|2023-10-06T21:14:37.4030000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|54201| +24|2023-10-06T21:14:37.4030000-07:00|10FF0009|Zewo Negiwo|HoT|798|1731|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13| +24|2023-10-06T21:14:37.4030000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|E35|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13| +24|2023-10-06T21:14:37.4030000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|E89|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13| +24|2023-10-06T21:14:37.4030000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|EFB|57078|57078|9250|10000|||99.69|100.94|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13| +24|2023-10-06T21:14:37.4030000-07:00|10FF0006|Wowobora Gogobora|HoT|798|E7B|57266|57266|9600|10000|||99.63|101.03|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13| +24|2023-10-06T21:14:37.4030000-07:00|10FF0003|Gegehi Gehi|HoT|798|176F|51669|51669|5550|10000|||99.60|100.57|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13| +24|2023-10-06T21:14:37.4030000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E65|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13| +24|2023-10-06T21:14:37.4030000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|E78|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13| +24|2023-10-06T21:14:37.4030000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|57078|57078|9250|10000|||99.69|100.94|0.00|3.13|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-1.05| +38|2023-10-06T21:14:37.4040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|18||98.99|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.4040000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:14:37.4040000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|10000|10000|39||100.94|102.74|0.00|-2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.4040000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +38|2023-10-06T21:14:37.4040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|10||100.33|101.40|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.4040000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:14:37.4040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9600|10000|24||99.63|101.03|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.4040000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:14:37.4040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|27||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.4040000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:14:37.4040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|9250|10000|13||99.69|100.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.4040000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:14:37.4040000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|14||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.4040000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:14:37.4040000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|25||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.4040000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +37|2023-10-06T21:14:37.4920000-07:00|40022472|Zeromus|00019749|26915145||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:37.4920000-07:00|10FF0001|Sesuga Sapisuga|0001974E|90349|90349|10000|10000|27||98.40|100.76|0.00|3.06|1300|0|0|01|0C000552|0|41EB5A1B|| +24|2023-10-06T21:14:37.4920000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|10000|10000|||98.40|100.76|0.00|3.06| +24|2023-10-06T21:14:37.4920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|11C2|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|10FF0001|Sesuga Sapisuga|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06| +24|2023-10-06T21:14:37.4920000-07:00|40022472|Zeromus|DoT|A92|4C9|26925118|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|9600|10000|||99.63|101.03|0.00|3.12| +24|2023-10-06T21:14:37.4920000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|57266|57266|9600|10000|||99.63|101.03|0.00|3.12|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-1.06| +24|2023-10-06T21:14:37.4920000-07:00|10FF0006|Wowobora Gogobora|HoT|0|AE2|57266|57266|9600|10000|||99.63|101.03|0.00|3.12|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-1.06| +38|2023-10-06T21:14:37.4920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|13||98.99|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:37.4920000-07:00|40022472|Zeromus|005A5A00|26913920|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:14:37.4920000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:14:37.4920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9600|10000|12||99.63|101.03|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:37.5380000-07:00|10FF0004|Buhojaqe Zijaqe|00019747|57078|57078|9250|10000|13||99.69|100.94|0.00|3.13|1C06|0|0|01|0E00013B|0|41A80000|| +26|2023-10-06T21:14:37.5380000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +24|2023-10-06T21:14:37.5380000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E13|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|10FF0009|Zewo Negiwo|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36| +24|2023-10-06T21:14:37.5380000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E4C|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0009|Zewo Negiwo|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36| +24|2023-10-06T21:14:37.5380000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|1633|57078|57078|9250|10000|||99.69|100.94|0.00|3.13|10FF0009|Zewo Negiwo|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36| +24|2023-10-06T21:14:37.5380000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E0A|57266|57266|9600|10000|||99.63|101.03|0.00|3.12|10FF0009|Zewo Negiwo|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36| +24|2023-10-06T21:14:37.5380000-07:00|10FF0003|Gegehi Gehi|HoT|777|E81|51669|51669|5550|10000|||99.60|100.57|0.00|3.12|10FF0009|Zewo Negiwo|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36| +24|2023-10-06T21:14:37.5380000-07:00|10FF0009|Zewo Negiwo|HoT|777|16F2|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|10FF0009|Zewo Negiwo|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36| +24|2023-10-06T21:14:37.5380000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E86|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|10FF0009|Zewo Negiwo|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36| +24|2023-10-06T21:14:37.5380000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E47|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|10FF0009|Zewo Negiwo|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36| +24|2023-10-06T21:14:37.5380000-07:00|10FF0009|Zewo Negiwo|DoT|0|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|10000|10000|||98.40|100.76|0.00|3.06| +21|2023-10-06T21:14:37.5380000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2F860000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26925118|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|9250|10000|||99.69|100.94|0.00|3.13|00019753|0|1| +38|2023-10-06T21:14:37.5380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|13||98.99|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.5380000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +38|2023-10-06T21:14:37.5380000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|10000|10000|27||100.94|102.74|0.00|-2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.5380000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:37.5380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|10||100.33|101.40|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.5380000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +38|2023-10-06T21:14:37.5380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9600|10000|12||99.63|101.03|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.5380000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +38|2023-10-06T21:14:37.5380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|27||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.5380000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +38|2023-10-06T21:14:37.5380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8850|10000|13||99.69|100.94|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.5380000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +38|2023-10-06T21:14:37.5380000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|14||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.5380000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +38|2023-10-06T21:14:37.5380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|25||99.96|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:37.5380000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +37|2023-10-06T21:14:37.5800000-07:00|40022472|Zeromus|0001974F|26911002||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:37.5810000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|4002284A|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||100.36|97.55|0.00|-1.11| +24|2023-10-06T21:14:37.5810000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1178|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-1.11| +38|2023-10-06T21:14:37.5810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|21||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:37.6260000-07:00|10FF0007|Kehabiqo Febiqo|0001974E|90890|90890|10000|10000|13||98.99|100.57|0.00|3.09|1501|0|0|01|0D000552|0|41EA47AC|| +21|2023-10-06T21:14:37.6260000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|80D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26911002|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|00019754|0|1| +37|2023-10-06T21:14:37.6700000-07:00|10FF0009|Zewo Negiwo|00019747|56823|56823|10000|10000|27||100.94|102.74|0.00|-2.36|1807|0|0|01|0E00013B|0|41A80000|| +26|2023-10-06T21:14:37.6700000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|56823|54201| +37|2023-10-06T21:14:37.6700000-07:00|40022472|Zeromus|00019752|26901737||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:37.6700000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-1.11|0|0|0||||||| +30|2023-10-06T21:14:37.6700000-07:00|77B|Summon Order|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +37|2023-10-06T21:14:37.7590000-07:00|10FF0003|Gegehi Gehi|0001974E|51669|51669|5550|10000|14||99.60|100.57|0.00|3.12|2302|0|0|02|0D000552|0|41E93749|||||| +37|2023-10-06T21:14:37.8930000-07:00|10FF0006|Wowobora Gogobora|0001974E|57266|57266|9600|10000|12||99.63|101.02|0.00|2.83|1B03|0|0|01|0B000552|0|41E822CE|| +37|2023-10-06T21:14:37.9380000-07:00|40022472|Zeromus|00019750|26890236||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:37.9380000-07:00|40022472|Zeromus|00019751|26880184||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:37.9380000-07:00|10FF0003|Gegehi Gehi|00019751|51669|51669|5550|10000|14||99.60|100.57|0.00|3.12|2300|0|0|01|0E0004D2|0|41F00000|| +38|2023-10-06T21:14:37.9380000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|14||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:37.6280000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:14:38.0270000-07:00|10FF0004|Buhojaqe Zijaqe|0001974E|57078|57078|8850|10000|13||99.69|100.94|0.00|3.13|1C04|0|0|01|0A000552|0|41E7126B|| +26|2023-10-06T21:14:38.0720000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|57078|57078| +21|2023-10-06T21:14:38.0720000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|10EF0000|104|6538000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|26880184|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8850|10000|||99.69|100.94|0.00|3.13|00019755|0|1| +21|2023-10-06T21:14:38.0720000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|736003|1440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26880184|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8850|10000|||99.69|100.94|0.00|3.13|00019756|0|1| +37|2023-10-06T21:14:38.1610000-07:00|10FF000A|Dukaro Nezikaro|0001974E|57941|57941|10000|10000|25||99.96|100.94|0.00|3.14|1E05|0|0|01|0B000552|0|41E5FFFC|| +37|2023-10-06T21:14:38.1610000-07:00|40022472|Zeromus|00019754|26878123||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:14:38.2050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|25BC0000|FC7A0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|00019757|0|8| +22|2023-10-06T21:14:38.2050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|200004|3D5F0000|FC7A0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|00019757|1|8| +22|2023-10-06T21:14:38.2050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|25BB0000|FC7A0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|00019757|2|8| +22|2023-10-06T21:14:38.2050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|200004|3E5A0000|FC7A0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|57266|57266|9600|10000|||99.76|100.96|0.00|2.21|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|00019757|3|8| +22|2023-10-06T21:14:38.2050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|24D10000|FC7A0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|57078|57078|8850|10000|||99.69|100.94|0.00|3.13|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|00019757|4|8| +22|2023-10-06T21:14:38.2050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|4|26F30000|FC7A0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|51669|51669|5550|10000|||99.60|100.57|0.00|3.12|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|00019757|5|8| +22|2023-10-06T21:14:38.2050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|25E40000|FC7A0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|00019757|6|8| +22|2023-10-06T21:14:38.2050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|26360000|FC7A0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|56823|56823|10000|10000|||100.94|102.74|0.00|-2.36|00019757|7|8| +21|2023-10-06T21:14:38.2490000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|26F30000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26878123|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9600|10000|||99.76|100.96|0.00|2.21|00019758|0|1| +261|2023-10-06T21:14:37.7420000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:14:37.7420000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:14:38.2930000-07:00|10FF0008|Kokosaze Lulusaze|0001974E|63151|63151|10000|10000|10||100.33|101.40|0.00|-3.13|1F06|0|0|01|0A000552|0|41E4EF99|| +21|2023-10-06T21:14:38.2930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26878123|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|00019759|0|1| +37|2023-10-06T21:14:38.3380000-07:00|40022472|Zeromus|00019753|26865957||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:38.4280000-07:00|10FF0009|Zewo Negiwo|0001974E|56823|56823|9000|10000|27||100.94|102.74|0.00|-2.36|1807|0|0|01|0D000552|0|41E3DF36|| +39|2023-10-06T21:14:38.5160000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-2.95| +21|2023-10-06T21:14:38.5170000-07:00|40022472|Zeromus|8B57|Void Meteor|40022472|Zeromus|1B|8B578000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26865957|40478540|10000|10000|||100.00|80.10|0.00|0.00|26865957|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001975A|0|1| +21|2023-10-06T21:14:38.5170000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|726003|25120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26865957|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5550|10000|||99.60|100.57|0.00|3.12|0001975B|0|1| +261|2023-10-06T21:14:38.0800000-07:00|Change|40022472||||| +37|2023-10-06T21:14:38.6050000-07:00|40022472|Zeromus|00019756|26865633||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:38.6490000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|0001975C|0|1| +39|2023-10-06T21:14:38.6950000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13| +21|2023-10-06T21:14:38.6950000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2A110000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|26865633|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001975D|0|1| +38|2023-10-06T21:14:38.6950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|21||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:38.6950000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +39|2023-10-06T21:14:38.7840000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|10000|10000|||99.96|100.94|0.00|3.14| +24|2023-10-06T21:14:38.7840000-07:00|40022472|Zeromus|DoT|0|263B|26865633|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|90890|90890|10000|10000|||98.99|100.57|0.00|3.09| +38|2023-10-06T21:14:38.7840000-07:00|40022472|Zeromus|005A5A00|26855846|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T21:14:38.8720000-07:00|40022472|Zeromus|00019758|26845875||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:38.8720000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|9050|10000|||99.61|100.91|0.00|-2.04| +36|2023-10-06T21:14:38.8720000-07:00|39BC|3| +38|2023-10-06T21:14:38.8720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|9050|10000|13||99.61|100.91|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:38.8720000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:14:38.9160000-07:00|40022A2F|Carbuncle|005A5A00|54388|54388|10000|10000|0||99.66|99.29|0.00|-0.02|0|0|0|||||||||| +26|2023-10-06T21:14:38.9160000-07:00|30|Well Fed|1594.35|10FF0006|Wowobora Gogobora|40022A2F|Carbuncle|2964|54388|57266| +26|2023-10-06T21:14:38.9160000-07:00|441|HP Penalty|9999.00|E0000000||40022A2F|Carbuncle|00|54388|| +26|2023-10-06T21:14:38.9160000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022A2F|Carbuncle|01|54388|57266| +21|2023-10-06T21:14:38.9160000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9300|10000|||99.81|100.94|0.00|3.13|57266|57266|9300|10000|||99.81|100.94|0.00|3.13|0001975E|0|1| +21|2023-10-06T21:14:38.9610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26845875|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|0001975F|0|1| +31|2023-10-06T21:14:38.9610000-07:00|10FF0001||||| +21|2023-10-06T21:14:39.0050000-07:00|40022A2F|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|BD0E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9300|10000|||99.81|100.94|0.00|3.13|54388|54388|10000|10000|||99.66|99.29|0.00|-0.02|00019760|0|1| +39|2023-10-06T21:14:39.0050000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||98.99|100.57|0.00|3.09| +39|2023-10-06T21:14:39.0050000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9500|10000|||99.81|100.94|0.00|3.13| +21|2023-10-06T21:14:39.0050000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|233A0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|26845875|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|00019761|0|1| +20|2023-10-06T21:14:39.0050000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.57|100.91|0.00|-1.86| +38|2023-10-06T21:14:39.0050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9500|10000|32||99.81|100.94|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:39.0050000-07:00|A8E|Radiant Aegis|29.96|40022A2F|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +37|2023-10-06T21:14:39.0500000-07:00|10FF0009|Zewo Negiwo|00019757|56823|56823|9000|10000|27||100.94|102.74|0.00|-2.36|1800|0|0|01|0F000096|0|41700000|| +26|2023-10-06T21:14:39.0500000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +37|2023-10-06T21:14:39.0500000-07:00|40022472|Zeromus|00019759|26842097||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:39.0500000-07:00|10FF0009|Zewo Negiwo|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36| +37|2023-10-06T21:14:39.0940000-07:00|40022472|Zeromus|0001975B|26832607||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:39.0940000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||98.40|100.76|0.00|3.06| +261|2023-10-06T21:14:38.5550000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T21:14:39.1380000-07:00|40022A3F||005A5A00|59967|59967|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:14:39.1390000-07:00|40022A3F||005A5A00|59967|59967|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:14:39.1390000-07:00|40022472|Zeromus|00019755|26828272||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:39.1390000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26842097|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5550|10000|||99.60|100.57|0.00|3.12|00019762|0|1| +37|2023-10-06T21:14:39.1830000-07:00|10FF0008|Kokosaze Lulusaze|00019757|63151|63151|10000|10000|10||100.33|101.40|0.00|-3.13|1F01|0|0|01|0C000096|0|41700000|| +26|2023-10-06T21:14:39.1830000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +39|2023-10-06T21:14:39.1830000-07:00|10FF0003|Gegehi Gehi|51669|51669|5750|10000|||99.60|100.57|0.00|3.12| +261|2023-10-06T21:14:38.6660000-07:00|Add|40022A3F||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:38.6660000-07:00|Change|10FF0003||| +03|2023-10-06T21:14:38.6660000-07:00|40022A3F|Automaton Queen|00|5A|10FF0008|00||8230|10490|59967|59967|10000|10000|||102.13|103.13|0.00|-3.13| +261|2023-10-06T21:14:38.6660000-07:00|Remove|40022A0C| +261|2023-10-06T21:14:38.6660000-07:00|Remove|40022A17| +261|2023-10-06T21:14:38.7800000-07:00|Change|40022A3F||| +261|2023-10-06T21:14:38.7800000-07:00|Change|10FF0006||||| +261|2023-10-06T21:14:38.7800000-07:00|Change|10FF0009||| +37|2023-10-06T21:14:39.3170000-07:00|10FF000A|Dukaro Nezikaro|00019757|57941|57941|10000|10000|25||99.96|100.94|0.00|3.14|1E02|0|0|01|0D000096|0|41700000|| +26|2023-10-06T21:14:39.3170000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +38|2023-10-06T21:14:39.3170000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9221|10000|27||100.94|102.74|0.00|-2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.3170000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +21|2023-10-06T21:14:39.4060000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42716003|5DC00000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|26828272|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|00019763|0|1| +38|2023-10-06T21:14:39.4060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|13||98.99|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.4060000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|40478540| +261|2023-10-06T21:14:39.0050000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:14:39.4510000-07:00|10FF0006|Wowobora Gogobora|00019757|57266|57266|9500|10000|32||99.81|100.94|0.00|3.13|1B03|0|0|01|0F000096|0|41700000|| +26|2023-10-06T21:14:39.4510000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +38|2023-10-06T21:14:39.4510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|21||98.40|100.76|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.4510000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|40478540| +37|2023-10-06T21:14:39.4960000-07:00|40022472|Zeromus|0001975F|26826589||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:39.4960000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|1100000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|26828272|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019764|0|1| +38|2023-10-06T21:14:39.4960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|10||100.33|101.40|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.4960000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|40478540| +37|2023-10-06T21:14:39.5400000-07:00|40022472|Zeromus|00019761|26817571||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:39.5400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9500|10000|32||99.81|100.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.5400000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|57266|40478540| +37|2023-10-06T21:14:39.5840000-07:00|10FF0004|Buhojaqe Zijaqe|00019757|57078|57078|9050|10000|13||99.57|100.91|0.00|3.12|1C04|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:14:39.5840000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +20|2023-10-06T21:14:39.5840000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|99.60|100.57|0.00|3.12| +38|2023-10-06T21:14:39.5840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|25||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.5840000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|57941|40478540| +21|2023-10-06T21:14:39.6280000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44722003|5F510000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|26817571|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|00019765|0|1| +38|2023-10-06T21:14:39.6280000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9221|10000|27||100.94|102.74|0.00|-2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.6280000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0009|Zewo Negiwo|00|56823|40478540| +37|2023-10-06T21:14:39.6730000-07:00|40022472|Zeromus|00019762|26817570||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:14:39.6730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|9050|10000|13||99.57|100.91|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.6730000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|40478540| +37|2023-10-06T21:14:39.7200000-07:00|10FF0003|Gegehi Gehi|00019757|51669|51669|5750|10000|14||99.60|100.57|0.00|3.12|2305|0|0|01|0B000096|0|41700000|| +26|2023-10-06T21:14:39.7200000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +22|2023-10-06T21:14:39.7200000-07:00|4002245B|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|8F40000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00019766|0|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245B|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00019766|1|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245B|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|13110000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00019766|2|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245B|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00019766|3|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245B|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00019766|4|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245B|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00019766|5|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245B|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00019766|6|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245B|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00019766|7|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245C|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00019767|0|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245C|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3320000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00019767|1|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245C|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4D30000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00019767|2|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245C|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|1DB0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00019767|3|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245C|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00019767|4|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245C|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00019767|5|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245C|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00019767|6|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245C|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00019767|7|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245D|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00019768|0|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245D|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4D40000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00019768|1|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|10FF0003||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245D|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5040000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00019768|2|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245D|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00019768|3|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245D|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4B60000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00019768|4|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245D|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3220000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00019768|5|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245D|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00019768|6|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245D|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00019768|7|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245E|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00019769|0|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|4002245C||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245E|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5330000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00019769|1|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245E|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|51D0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00019769|2|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022464||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245E|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00019769|3|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|4002245B||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245E|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5030000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00019769|4|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022461||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245E|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3450000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00019769|5|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|4002245F||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245E|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00019769|6|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022463||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245E|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00019769|7|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|4002245E||||||||||||| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022465||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245F|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4EE0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001976A|0|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245F|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001976A|1|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022460||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245F|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750003|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001976A|2|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245F|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5350000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001976A|3|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245F|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5730000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001976A|4|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|4002245D||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245F|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|36C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001976A|5|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|4002245D||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|4002245F|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001976A|6|8| +22|2023-10-06T21:14:39.7200000-07:00|4002245F|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001976A|7|8| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022462||||||||||||| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022466||||||||||||| +22|2023-10-06T21:14:39.7200000-07:00|40022460|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5300000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001976B|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022460|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3440000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001976B|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022460|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|3A0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001976B|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022460|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001976B|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022460|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|50C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001976B|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022460|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001976B|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022460|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5540000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001976B|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022460|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001976B|7|8| +22|2023-10-06T21:14:39.7200000-07:00|40022461|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4D70000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001976C|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022461|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|35F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001976C|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022461|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001976C|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022461|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4F10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001976C|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022461|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001976C|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022461|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5A70000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001976C|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022461|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|54C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001976C|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022461|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001976C|7|8| +22|2023-10-06T21:14:39.7200000-07:00|40022462|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|35B0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001976D|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022462|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001976D|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022462|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4F90000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001976D|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022462|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4F20000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001976D|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022462|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001976D|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022462|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|53E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001976D|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022462|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5930000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001976D|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022462|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001976D|7|8| +22|2023-10-06T21:14:39.7200000-07:00|40022463|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001976E|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022463|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3440000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001976E|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022463|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5140000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001976E|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022463|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4CE0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001976E|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022463|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001976E|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022463|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5A60000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001976E|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022463|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5510000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001976E|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022463|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001976E|7|8| +22|2023-10-06T21:14:39.7200000-07:00|40022464|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001976F|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022464|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3390000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001976F|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022464|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|51D0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001976F|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022464|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4C90000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001976F|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022464|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|C90000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001976F|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022464|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5820000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001976F|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022464|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|51F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001976F|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022464|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001976F|7|8| +22|2023-10-06T21:14:39.7200000-07:00|40022465|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019770|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022465|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3570000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019770|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022465|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5100000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019770|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022465|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5320000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019770|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022465|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5000000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019770|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022465|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5600000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019770|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022465|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5810000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019770|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022465|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019770|7|8| +22|2023-10-06T21:14:39.7200000-07:00|40022466|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019771|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022466|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|58C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019771|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022466|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5950000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019771|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022466|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|52E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019771|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022466|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4F30000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019771|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022466|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5320000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019771|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022466|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3200000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019771|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022466|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019771|7|8| +22|2023-10-06T21:14:39.7200000-07:00|40022467|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019772|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022467|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3290000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019772|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022467|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|4FF0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019772|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022467|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|4FF0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019772|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022467|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|4E10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019772|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022467|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5AF0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019772|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022467|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5330000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019772|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022467|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|3B00000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019772|7|8| +22|2023-10-06T21:14:39.7200000-07:00|40022468|Comet|8B5C|Meteor Impact|10FF0009|Zewo Negiwo|750603|4CB0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.36|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019773|0|8| +22|2023-10-06T21:14:39.7200000-07:00|40022468|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|55E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019773|1|8| +22|2023-10-06T21:14:39.7200000-07:00|40022468|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5680000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019773|2|8| +22|2023-10-06T21:14:39.7200000-07:00|40022468|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|50F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019773|3|8| +22|2023-10-06T21:14:39.7200000-07:00|40022468|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5180000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019773|4|8| +22|2023-10-06T21:14:39.7200000-07:00|40022468|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||98.40|100.76|0.00|3.06|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019773|5|8| +22|2023-10-06T21:14:39.7200000-07:00|40022468|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5360000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019773|6|8| +22|2023-10-06T21:14:39.7200000-07:00|40022468|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3640000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.99|100.57|0.00|3.09|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019773|7|8| +21|2023-10-06T21:14:39.7200000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26817571|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|00019774|0|1| +38|2023-10-06T21:14:39.7200000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5750|10000|14||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:39.7200000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|51669|40478540| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022467||||||||||||| +261|2023-10-06T21:14:39.2160000-07:00|Change|40022468||||||||||||| +21|2023-10-06T21:14:39.7620000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|26A40000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26817570|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9500|10000|||99.81|100.94|0.00|3.13|00019775|0|1| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022464||| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022461||| +261|2023-10-06T21:14:39.3130000-07:00|Change|4002245F||| +261|2023-10-06T21:14:39.3130000-07:00|Change|4002245C||| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022463||| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022467||| +261|2023-10-06T21:14:39.3130000-07:00|Change|4002245E||| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022465||| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022460||| +261|2023-10-06T21:14:39.3130000-07:00|Change|4002245D||| +261|2023-10-06T21:14:39.3130000-07:00|Change|4002245B||| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022468||| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022462||| +261|2023-10-06T21:14:39.3130000-07:00|Change|40022466||| +37|2023-10-06T21:14:39.8060000-07:00|10FF0006|Wowobora Gogobora|00019760|57266|57266|9200|10000|32||99.81|100.94|0.00|3.13|1B00|0|0|01|0E000A8E|0|41E9978A|| +21|2023-10-06T21:14:39.8060000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AF80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26817570|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|00019776|0|1| +38|2023-10-06T21:14:39.8060000-07:00|40022A2F|Carbuncle|005A5A00|54388|54388|10000|10000|0||99.66|99.26|0.00|0.10|0|0|0||||||| +30|2023-10-06T21:14:39.8060000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40022A2F|Carbuncle|01|54388|57266| +37|2023-10-06T21:14:39.8510000-07:00|10FF0007|Kehabiqo Febiqo|00019757|90890|90890|10000|10000|13||98.99|100.57|0.00|3.09|1506|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:14:39.8510000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +20|2023-10-06T21:14:39.9420000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.94|102.74|0.00|-2.36| +21|2023-10-06T21:14:39.9420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|50210000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26817570|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|9050|10000|||99.57|100.91|0.00|3.12|00019777|0|1| +37|2023-10-06T21:14:39.9850000-07:00|10FF0001|Sesuga Sapisuga|00019757|90349|90349|10000|10000|21||98.40|100.76|0.00|3.06|1307|0|0|01|08000096|0|41700000|| +26|2023-10-06T21:14:39.9850000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +37|2023-10-06T21:14:39.9850000-07:00|40022472|Zeromus|0001975D|26806801||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:40.0300000-07:00|40022472|Zeromus|00019763|26782801||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:14:40.1630000-07:00|40022A3F|Automaton Queen|40022A3F|Automaton Queen|01| +261|2023-10-06T21:14:39.7040000-07:00|Change|40022A3F||| +261|2023-10-06T21:14:39.7040000-07:00|Change|40022A3F||| +24|2023-10-06T21:14:40.2080000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2166|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|10FF0009|Zewo Negiwo|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.68| +38|2023-10-06T21:14:40.2080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|10||100.33|101.40|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:40.2520000-07:00|40022472|Zeromus|00019774|26782564||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:40.2520000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|27CC|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0009|Zewo Negiwo|0|56823|56823|9221|10000|||100.94|102.74|0.00|-2.68| +38|2023-10-06T21:14:40.2520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|25||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:39.8180000-07:00|Change|10FF0006||| +261|2023-10-06T21:14:39.8180000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:14:40.2970000-07:00|10FF0007|Kehabiqo Febiqo|00019764|90618|90890|10000|10000|0||98.99|100.57|0.00|3.09|1500|0|0|02|01000000|0|0|||||| +24|2023-10-06T21:14:40.2970000-07:00|10FF0003|Gegehi Gehi|HoT|0|2FF5|51669|51669|5750|10000|||99.60|100.57|0.00|3.12|10FF0003|Gegehi Gehi|0|51669|51669|5750|10000|||99.60|100.57|0.00|3.12| +38|2023-10-06T21:14:40.2970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90618|90890|10000|10000|0||98.99|100.57|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:40.2970000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +30|2023-10-06T21:14:40.2970000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +38|2023-10-06T21:14:40.2970000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5750|10000|14||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:40.3410000-07:00|40022472|Zeromus|00019776|26779756||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:40.3860000-07:00|40022472|Zeromus|00019775|26769864||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:40.3860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|209F|57078|57078|8650|10000|||99.57|100.91|0.00|3.12|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +38|2023-10-06T21:14:40.3860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8650|10000|13||99.57|100.91|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:40.4310000-07:00|10FF0003|Gegehi Gehi|00019766|49377|51669|5750|10000|0||99.60|100.57|0.00|3.12|2300|0|0|02|01000000|0|0|||||| +37|2023-10-06T21:14:40.4310000-07:00|10FF0001|Sesuga Sapisuga|00019767|90349|90349|10000|10000|7||97.88|100.50|0.00|3.03|1300|0|0|01|0C000000|0|0|| +37|2023-10-06T21:14:40.4310000-07:00|10FF000A|Dukaro Nezikaro|00019768|57941|57941|10000|10000|0||99.96|100.94|0.00|3.14|1E00|0|0|02|08000000|0|0|||||| +37|2023-10-06T21:14:40.4310000-07:00|10FF0003|Gegehi Gehi|0001976A|48115||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.4310000-07:00|10FF0003|Gegehi Gehi|0001976B|46787||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.4310000-07:00|10FF0003|Gegehi Gehi|0001976C|45548||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.4310000-07:00|10FF0007|Kehabiqo Febiqo|0001976D|89759||||||98.99|100.57|0.00|3.09| +261|2023-10-06T21:14:39.9420000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:14:40.4310000-07:00|10FF0009|Zewo Negiwo|00019771|56823|56823|9221|10000|0||100.94|102.74|0.00|-3.04|1800|0|0|02|06000000|0|0|||||| +37|2023-10-06T21:14:40.4310000-07:00|10FF0009|Zewo Negiwo|00019773|55596||||||100.94|102.74|0.00|-3.04| +37|2023-10-06T21:14:40.4310000-07:00|40022472|Zeromus|00019765|26745463||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:40.4310000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|716003|175B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26782564|40478540|10000|10000|||100.00|80.10|0.00|0.00|90618|90890|10000|10000|||98.99|100.57|0.00|3.09|00019778|0|1| +38|2023-10-06T21:14:40.4310000-07:00|10FF0009|Zewo Negiwo|005A5A18|55596|56823|9221|10000|0||100.94|102.74|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:40.4310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +30|2023-10-06T21:14:40.4310000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0009|Zewo Negiwo|00|56823|90349| +38|2023-10-06T21:14:40.4310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||97.88|100.50|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:40.4310000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:14:40.4310000-07:00|10FF0003|Gegehi Gehi|005A5A23|45548|51669|5750|10000|0||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:40.4310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +30|2023-10-06T21:14:40.4310000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|51669|90349| +38|2023-10-06T21:14:40.4310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:40.4310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +30|2023-10-06T21:14:40.4310000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|57941|90349| +37|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|00019767|88941||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.4760000-07:00|10FF0003|Gegehi Gehi|00019768|44312||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.4760000-07:00|10FF0008|Kokosaze Lulusaze|00019769|61820|63151|10000|10000|0||100.33|101.40|0.00|-3.13|1F01|0|0|02|03000000|0|0|||||| +37|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|0001976B|88105||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|0001976C|87242||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|0001976E|86406||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|0001976F|85581||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|00019770|84726||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.4760000-07:00|10FF0008|Kokosaze Lulusaze|00019771|60400||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|00019772|83917||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.4760000-07:00|10FF0008|Kokosaze Lulusaze|00019773|59026||||||100.33|101.40|0.00|-3.13| +24|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|21A1|89759|90890|10000|10000|||98.99|100.57|0.00|3.09|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +24|2023-10-06T21:14:40.4760000-07:00|40022472|Zeromus|DoT|A92|7B9|26745463|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|9200|10000|||99.81|100.94|0.00|3.13| +24|2023-10-06T21:14:40.4760000-07:00|10FF0006|Wowobora Gogobora|HoT|0|22AE|57266|57266|9200|10000|||99.81|100.94|0.00|3.13|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +21|2023-10-06T21:14:40.4760000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|752003|1A1D0000|104|9C28000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|26745463|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8650|10000|||99.57|100.91|0.00|3.12|00019779|0|1| +38|2023-10-06T21:14:40.4760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||98.99|100.57|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:40.4760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|59026|63151|10000|10000|0||100.33|101.40|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:40.4760000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +30|2023-10-06T21:14:40.4760000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|63151|90349| +38|2023-10-06T21:14:40.4760000-07:00|40022472|Zeromus|005A5A00|26743486|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:14:40.4760000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:14:40.4760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9200|10000|32||99.81|100.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:40.4760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8650|10000|13||99.57|100.91|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:40.4760000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|57078|57078| +37|2023-10-06T21:14:40.5210000-07:00|10FF0007|Kehabiqo Febiqo|00019766|86009||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.5210000-07:00|10FF0003|Gegehi Gehi|00019767|43077||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.5210000-07:00|10FF0008|Kokosaze Lulusaze|00019768|57742||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.5210000-07:00|10FF0003|Gegehi Gehi|00019769|41768||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.5210000-07:00|10FF0006|Wowobora Gogobora|0001976A|57266|57266|9200|10000|0||99.81|100.94|0.00|3.13|1B02|0|0|03|05000000|0|0|||||||||| +37|2023-10-06T21:14:40.5210000-07:00|10FF000A|Dukaro Nezikaro|0001976B|57883||||||99.96|100.94|0.00|3.14| +37|2023-10-06T21:14:40.5210000-07:00|10FF0003|Gegehi Gehi|0001976D|40495||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.5210000-07:00|10FF0003|Gegehi Gehi|0001976E|39195||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.5210000-07:00|10FF0003|Gegehi Gehi|0001976F|37886||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.5210000-07:00|10FF0003|Gegehi Gehi|00019770|36590||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.5210000-07:00|10FF000A|Dukaro Nezikaro|00019771|56454||||||99.96|100.94|0.00|3.14| +37|2023-10-06T21:14:40.5210000-07:00|10FF0004|Buhojaqe Zijaqe|00019772|55799|57078|8650|10000|0||99.57|100.91|0.00|3.12|1C02|0|0|02|06000000|0|0|||||| +37|2023-10-06T21:14:40.5210000-07:00|10FF000A|Dukaro Nezikaro|00019773|55070||||||99.96|100.94|0.00|3.14| +24|2023-10-06T21:14:40.5210000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E81|63151|63151|10000|10000|||100.33|101.40|0.00|-3.13|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +24|2023-10-06T21:14:40.5210000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DF0|57941|57941|10000|10000|||99.96|100.94|0.00|3.14|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +24|2023-10-06T21:14:40.5210000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E48|57266|57266|9200|10000|||99.81|100.94|0.00|3.13|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +24|2023-10-06T21:14:40.5210000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E60|57078|57078|8650|10000|||99.57|100.91|0.00|3.12|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +24|2023-10-06T21:14:40.5210000-07:00|10FF0003|Gegehi Gehi|HoT|777|168A|45548|51669|5750|10000|||99.60|100.57|0.00|3.12|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +24|2023-10-06T21:14:40.5210000-07:00|10FF0009|Zewo Negiwo|HoT|777|E95|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +24|2023-10-06T21:14:40.5210000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E50|89759|90890|10000|10000|||98.99|100.57|0.00|3.09|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +24|2023-10-06T21:14:40.5210000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|165F|90349|90349|10000|10000|||97.86|100.50|0.00|3.03|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +24|2023-10-06T21:14:40.5210000-07:00|10FF0009|Zewo Negiwo|HoT|0|282B|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10|10FF0009|Zewo Negiwo|0|55596|56823|9221|10000|||100.94|102.74|0.00|-3.10| +38|2023-10-06T21:14:40.5210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89673|90890|10000|10000|0||98.99|100.57|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:40.5210000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +38|2023-10-06T21:14:40.5210000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9221|10000|0||100.94|102.74|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:40.5210000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:40.5210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61455|63151|10000|10000|0||100.33|101.40|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:40.5210000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +38|2023-10-06T21:14:40.5210000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9200|10000|0||99.81|100.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:40.5210000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +30|2023-10-06T21:14:40.5210000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +30|2023-10-06T21:14:40.5210000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|57266|90349| +30|2023-10-06T21:14:40.5210000-07:00|A8E|Radiant Aegis|0.00|40022A2F|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +38|2023-10-06T21:14:40.5210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||97.86|100.50|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:40.5210000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +38|2023-10-06T21:14:40.5210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8650|10000|0||99.57|100.91|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:40.5210000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +30|2023-10-06T21:14:40.5210000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|57078|90349| +26|2023-10-06T21:14:40.5210000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +38|2023-10-06T21:14:40.5210000-07:00|10FF0003|Gegehi Gehi|005A5A23|42360|51669|5750|10000|0||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:40.5210000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +38|2023-10-06T21:14:40.5210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:40.5210000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +37|2023-10-06T21:14:40.5650000-07:00|10FF0004|Buhojaqe Zijaqe|00019767|56603||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.5650000-07:00|10FF0004|Buhojaqe Zijaqe|0001976A|55270||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.5650000-07:00|10FF0004|Buhojaqe Zijaqe|0001976C|54005||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.5650000-07:00|10FF0004|Buhojaqe Zijaqe|0001976D|52739||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.5650000-07:00|10FF0004|Buhojaqe Zijaqe|0001976E|51509||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.5650000-07:00|10FF0004|Buhojaqe Zijaqe|0001976F|50284||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.5650000-07:00|10FF0004|Buhojaqe Zijaqe|00019770|48954||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.5650000-07:00|10FF0006|Wowobora Gogobora|00019771|55940||||||99.81|100.94|0.00|3.13| +37|2023-10-06T21:14:40.5650000-07:00|10FF0003|Gegehi Gehi|00019772|41081||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.5650000-07:00|10FF0006|Wowobora Gogobora|00019773|54645||||||99.81|100.94|0.00|3.13| +24|2023-10-06T21:14:40.5650000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|289C|90349|90349|10000|10000|||97.86|100.50|0.00|3.03|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +38|2023-10-06T21:14:40.5650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||97.86|100.50|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:40.0630000-07:00|Change|4002246F||||||||| +257|2023-10-06T21:14:40.5650000-07:00|80034E7C|00020001|01|00|0000| +261|2023-10-06T21:14:40.0630000-07:00|Change|40022470||||||||| +261|2023-10-06T21:14:40.1580000-07:00|Change|4002246E||||||||| +261|2023-10-06T21:14:40.1580000-07:00|Change|4002246B||||||||| +261|2023-10-06T21:14:40.1580000-07:00|Change|4002246A||||||||| +261|2023-10-06T21:14:40.1580000-07:00|Change|4002246D||||||||| +261|2023-10-06T21:14:40.1580000-07:00|Change|4002246C||||||||| +261|2023-10-06T21:14:40.1580000-07:00|Change|40022469||||||||| +37|2023-10-06T21:14:40.6090000-07:00|10FF0004|Buhojaqe Zijaqe|00019768|47748||||||99.57|100.91|0.00|3.12| +00|2023-10-06T21:14:40.0000000-07:00|0044|Zeromus|In my memory the stars yet shine, attending the moon...| +37|2023-10-06T21:14:40.6090000-07:00|10FF0004|Buhojaqe Zijaqe|00019769|46465||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.6090000-07:00|10FF0008|Kokosaze Lulusaze|0001976A|60060||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.6090000-07:00|10FF0004|Buhojaqe Zijaqe|0001976B|45173||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.6090000-07:00|10FF0006|Wowobora Gogobora|0001976F|54444||||||99.81|100.94|0.00|3.13| +37|2023-10-06T21:14:40.6090000-07:00|10FF0006|Wowobora Gogobora|00019770|53164||||||99.81|100.94|0.00|3.13| +37|2023-10-06T21:14:40.6090000-07:00|10FF0004|Buhojaqe Zijaqe|00019771|43906||||||99.57|100.91|0.00|3.12| +37|2023-10-06T21:14:40.6090000-07:00|10FF0006|Wowobora Gogobora|00019772|51915||||||99.81|100.94|0.00|3.13| +37|2023-10-06T21:14:40.6090000-07:00|10FF0004|Buhojaqe Zijaqe|00019773|42602||||||99.57|100.91|0.00|3.12| +35|2023-10-06T21:14:40.6090000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:40.6090000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:40.6090000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:40.6090000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:40.6530000-07:00|10FF0007|Kehabiqo Febiqo|00019768|88871||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.6530000-07:00|10FF0007|Kehabiqo Febiqo|00019769|88034||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.6530000-07:00|10FF0007|Kehabiqo Febiqo|0001976A|87158||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.6530000-07:00|10FF000A|Dukaro Nezikaro|0001976C|56494||||||99.96|100.94|0.00|3.14| +37|2023-10-06T21:14:40.6530000-07:00|10FF000A|Dukaro Nezikaro|0001976D|55152||||||99.96|100.94|0.00|3.14| +37|2023-10-06T21:14:40.6530000-07:00|10FF000A|Dukaro Nezikaro|0001976E|53706||||||99.96|100.94|0.00|3.14| +37|2023-10-06T21:14:40.6530000-07:00|10FF000A|Dukaro Nezikaro|0001976F|52296||||||99.96|100.94|0.00|3.14| +37|2023-10-06T21:14:40.6530000-07:00|10FF000A|Dukaro Nezikaro|00019770|50920||||||99.96|100.94|0.00|3.14| +37|2023-10-06T21:14:40.6530000-07:00|10FF0003|Gegehi Gehi|00019771|39751||||||99.60|100.57|0.00|3.12| +37|2023-10-06T21:14:40.6530000-07:00|10FF000A|Dukaro Nezikaro|00019772|49465||||||99.96|100.94|0.00|3.14| +20|2023-10-06T21:14:40.6530000-07:00|40022472|Zeromus|8B56|Meteor Impact|40022472|Zeromus|10.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:40.1580000-07:00|Change|40022472||||||||| +37|2023-10-06T21:14:40.6980000-07:00|10FF0008|Kokosaze Lulusaze|0001976B|58696||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.6980000-07:00|10FF0008|Kokosaze Lulusaze|0001976C|57340||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.6980000-07:00|10FF0008|Kokosaze Lulusaze|0001976D|55913||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.6980000-07:00|10FF0008|Kokosaze Lulusaze|0001976E|54552||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.6980000-07:00|10FF0008|Kokosaze Lulusaze|0001976F|53241||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.6980000-07:00|10FF0008|Kokosaze Lulusaze|00019770|51832||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.6980000-07:00|10FF0007|Kehabiqo Febiqo|00019771|86358||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.6980000-07:00|10FF0008|Kokosaze Lulusaze|00019772|50501||||||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:40.6980000-07:00|10FF0003|Gegehi Gehi|00019773|38417||||||99.60|100.57|0.00|3.12| +35|2023-10-06T21:14:40.6980000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:40.6980000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:40.6980000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:40.6980000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:40.7420000-07:00|10FF0009|Zewo Negiwo|00019772|55879||||||100.94|102.74|0.00|-3.10| +37|2023-10-06T21:14:40.7420000-07:00|10FF0007|Kehabiqo Febiqo|00019773|85490||||||98.99|100.57|0.00|3.09| +37|2023-10-06T21:14:40.7420000-07:00|40022472|Zeromus|00019777|26722973||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:40.7860000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:40.7860000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:40.7860000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:40.7860000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:14:40.8750000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:40.8750000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:40.8750000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:40.8750000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:40.8750000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|33690000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|26722973|40478540|10000|10000|||100.00|80.10|0.00|0.00|55879|56823|9221|10000|||100.94|102.74|0.00|-3.10|0001977A|0|1| +37|2023-10-06T21:14:40.9650000-07:00|40022472|Zeromus|00019778|26716994||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:40.9650000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:40.9650000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:40.9650000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:40.9650000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:40.9650000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|94E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26722973|40478540|10000|10000|||100.00|80.10|0.00|0.00|50501|63151|10000|10000|||100.33|101.40|0.00|-3.13|0001977B|0|1| +38|2023-10-06T21:14:40.9650000-07:00|40022472|Zeromus|005A5A00|26716994|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:14:40.9650000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40022472|Zeromus|00|40478540|90890| +21|2023-10-06T21:14:41.0090000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|1F7D0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|26722973|40478540|10000|10000|||100.00|80.10|0.00|0.00|38417|51669|5750|10000|||99.60|100.57|0.00|3.12|0001977C|0|1| +38|2023-10-06T21:14:41.0090000-07:00|10FF0003|Gegehi Gehi|005A5A23|38417|51669|5550|10000|0||99.60|100.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:41.0090000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:14:40.5770000-07:00|Change|10FF0003||||||||||||||| +35|2023-10-06T21:14:41.0540000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.0540000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.0540000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.0540000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:14:41.1420000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.1420000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.1420000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.1420000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:41.1870000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|2DC60000|4|2DF28000|0|0|0|0|0|0|0|0|0|0|0|0|26716994|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||97.40|100.45|0.00|3.01|0001977D|0|1| +38|2023-10-06T21:14:41.1870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9000|10000|7||97.40|100.45|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:41.1870000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:14:40.6910000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:14:41.2320000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|16B00000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|51915|57266|9200|10000|||99.82|101.00|-0.02|1.65|54201|54201|10000|10000|||100.36|97.55|0.00|-2.05|0001977E|0|1| +35|2023-10-06T21:14:41.2320000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.2320000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.2320000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.2320000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:41.2320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|DB40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26716994|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||97.40|100.45|0.00|3.01|0001977F|0|1| +31|2023-10-06T21:14:41.2320000-07:00|10FF0001||||| +20|2023-10-06T21:14:41.2750000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|99.82|101.00|-0.02|1.65| +35|2023-10-06T21:14:41.3190000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.3190000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.3190000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.3190000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:40.8120000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T21:14:40.8120000-07:00|Change|10FF0009||||||||||||||||| +39|2023-10-06T21:14:41.4090000-07:00|40022A2F|Carbuncle|54388|54388|10000|10000|||99.66|99.26|0.00|0.10| +35|2023-10-06T21:14:41.4090000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.4090000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.4090000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.4090000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:41.4090000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|26716994|40478540|10000|10000|||100.00|80.10|0.00|0.00|42602|57078|8650|10000|||101.44|101.43|0.00|1.42|00019780|0|1| +261|2023-10-06T21:14:41.0440000-07:00|Change|10FF0004||||||||| +35|2023-10-06T21:14:41.4980000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.4980000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.4980000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.4980000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:41.4980000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|35D10000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|26716994|40478540|10000|10000|||100.00|80.10|0.00|0.00|85490|90890|10000|10000|||97.45|99.66|0.00|-3.03|00019781|0|1| +21|2023-10-06T21:14:41.4980000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|49465|57941|10000|10000|||99.96|100.94|0.00|3.14|49465|57941|10000|10000|||99.96|100.94|0.00|3.14|00019782|0|1| +38|2023-10-06T21:14:41.4980000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|49465|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:41.4980000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|57941|57941| +37|2023-10-06T21:14:41.5430000-07:00|40022472|Zeromus|00019779|26710309||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:41.5430000-07:00|10FF0004|Buhojaqe Zijaqe|00019779|45100||||||101.77|101.43|0.00|2.89| +39|2023-10-06T21:14:41.5430000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-0.81| +35|2023-10-06T21:14:41.5880000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.5880000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.5880000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.5880000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:14:41.6770000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.6770000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.6770000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.6770000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:41.7210000-07:00|40022472|Zeromus|0001977B|26707927||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:41.7210000-07:00|10FF0008|Kokosaze Lulusaze|51132|63151|10000|10000|||100.33|101.40|0.00|-3.13| +37|2023-10-06T21:14:41.7660000-07:00|40022472|Zeromus|0001977F|26704419||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:41.7660000-07:00|40022472|Zeromus|0001977C|26696358||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:41.7660000-07:00|10FF000A|Dukaro Nezikaro|50044|57941|10000|10000|||99.96|100.94|0.00|3.14| +24|2023-10-06T21:14:41.7660000-07:00|40022472|Zeromus|DoT|0|20BC|26710309|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T21:14:41.7660000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.7660000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.7660000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.7660000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +38|2023-10-06T21:14:41.7660000-07:00|40022472|Zeromus|005A5A00|26687978|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +35|2023-10-06T21:14:41.8540000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.8540000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.8540000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.8540000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +36|2023-10-06T21:14:41.8540000-07:00|3A98|3| +39|2023-10-06T21:14:41.8990000-07:00|10FF0004|Buhojaqe Zijaqe|45670|57078|8450|10000|||103.11|101.52|0.00|1.72| +37|2023-10-06T21:14:41.9440000-07:00|40022472|Zeromus|0001977D|26676260||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:41.9440000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:41.9440000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:41.9440000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:41.9440000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:41.6870000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:14:41.9890000-07:00|10FF0007|Kehabiqo Febiqo|86398|90890|10000|10000|||96.86|98.10|0.00|-3.07| +39|2023-10-06T21:14:41.9890000-07:00|10FF0006|Wowobora Gogobora|52487|57266|9400|10000|||99.84|101.15|0.00|3.13| +21|2023-10-06T21:14:41.9890000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26676260|40478540|10000|10000|||100.00|80.10|0.00|0.00|50044|57941|10000|10000|||99.96|100.94|0.00|3.14|00019783|0|1| +37|2023-10-06T21:14:42.0340000-07:00|10FF0006|Wowobora Gogobora|0001977E|57266||||||99.84|101.15|0.00|3.13| +37|2023-10-06T21:14:42.0340000-07:00|40022472|Zeromus|00019780|26676260|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:14:42.0340000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +39|2023-10-06T21:14:42.0340000-07:00|10FF0009|Zewo Negiwo|56447|56823|9042|10000|||101.00|102.74|0.00|2.13| +35|2023-10-06T21:14:42.0340000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.0340000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.0340000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.0340000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:42.0340000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50044|57941|10000|10000|||99.96|100.94|0.00|3.14|50044|57941|10000|10000|||99.96|100.94|0.00|3.14|00019784|0|1| +38|2023-10-06T21:14:42.0340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50044|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:42.0340000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|57941|57941| +39|2023-10-06T21:14:42.0780000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9200|10000|||92.75|99.77|0.00|3.03| +21|2023-10-06T21:14:42.0780000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|27320000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|26676260|40478540|10000|10000|||100.00|80.10|0.00|0.00|38417|51669|5550|10000|||101.27|100.86|0.00|1.51|00019785|0|1| +38|2023-10-06T21:14:42.0780000-07:00|10FF0003|Gegehi Gehi|005A5A23|38417|51669|5250|10000|0||101.27|100.86|0.00|1.51|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.0780000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:14:42.1220000-07:00|40022472|Zeromus|00019781|26662483||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:42.1220000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.1220000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.1220000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.1220000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:42.1220000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|724003|26B80000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|26676260|40478540|10000|10000|||100.00|80.10|0.00|0.00|51132|63151|10000|10000|||100.42|101.37|0.00|2.43|00019786|0|1| +37|2023-10-06T21:14:42.1670000-07:00|40022472|Zeromus|0001977A|26649322||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:42.1670000-07:00|10FF0003|Gegehi Gehi|38933|51669|5450|10000|||101.27|100.86|0.00|1.51| +261|2023-10-06T21:14:41.6870000-07:00|Change|10FF0003||||||||||| +35|2023-10-06T21:14:42.2110000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.2110000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.2110000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.2110000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:42.2110000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26649322|40478540|10000|10000|||100.00|80.10|0.00|0.00|45670|57078|8450|10000|||104.00|101.30|0.00|2.50|00019787|0|1| +21|2023-10-06T21:14:42.2570000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|754003|3D650000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|26649322|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9400|10000|||99.84|101.15|0.00|3.13|00019788|0|1| +35|2023-10-06T21:14:42.3010000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.3010000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.3010000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.3010000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:41.8080000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T21:14:41.8080000-07:00|Change|10FF0009||||||||||| +35|2023-10-06T21:14:42.3900000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.3900000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.3900000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.3900000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +38|2023-10-06T21:14:42.3900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45670|57078|8450|10000|0||104.13|101.25|0.00|2.69|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.3900000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:14:42.3900000-07:00|10FF0003|Gegehi Gehi|005A5A23|38933|51669|5450|10000|0||102.73|100.53|0.00|2.87|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.3900000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:14:42.3900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50044|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.3900000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +38|2023-10-06T21:14:42.4340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86398|90890|10000|10000|0||95.35|97.79|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.4340000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:14:42.4340000-07:00|10FF0009|Zewo Negiwo|005A5A18|56447|56823|9042|10000|0||102.82|102.46|0.00|1.78|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.4340000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +38|2023-10-06T21:14:42.4340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|51132|63151|10000|10000|0||101.87|101.18|0.00|2.35|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.4340000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:14:42.4340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9100|10000|0||99.84|101.15|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.4340000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:14:42.4340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|7||91.95|99.68|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:42.4340000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +35|2023-10-06T21:14:42.4790000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.4790000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.4790000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +261|2023-10-06T21:14:42.0450000-07:00|Change|10FF0004||||||||| +35|2023-10-06T21:14:42.4790000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +38|2023-10-06T21:14:42.4790000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-0.14|0|0|0|||||||||| +26|2023-10-06T21:14:42.4790000-07:00|7AE|Summon Order IV|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:14:42.4790000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45670|57078|8450|10000|||103.92|101.19|-0.02|-3.09|45670|57078|8450|10000|||103.92|101.19|-0.02|-3.09|00019789|0|1| +37|2023-10-06T21:14:42.5250000-07:00|40022472|Zeromus|00019783|26647249||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:14:42.5690000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|200004|43820000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|50044|57941|10000|10000|||99.96|100.94|0.00|3.14|54201|54201|10000|10000|||100.36|97.55|0.00|-0.24|0001978A|0|8| +22|2023-10-06T21:14:42.5690000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|28270000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9100|10000|||99.84|101.15|0.00|3.13|54201|54201|10000|10000|||100.36|97.55|0.00|-0.24|0001978A|1|8| +22|2023-10-06T21:14:42.5690000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|200004|425A0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|38933|51669|5450|10000|||104.00|99.89|0.00|2.35|54201|54201|10000|10000|||100.36|97.55|0.00|-0.24|0001978A|2|8| +22|2023-10-06T21:14:42.5690000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|27FE0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|45670|57078|8450|10000|||103.85|101.16|0.00|-2.62|54201|54201|10000|10000|||100.36|97.55|0.00|-0.24|0001978A|3|8| +22|2023-10-06T21:14:42.5690000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|29440000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|51132|63151|10000|10000|||102.37|101.11|0.00|2.10|54201|54201|10000|10000|||100.36|97.55|0.00|-0.24|0001978A|4|8| +22|2023-10-06T21:14:42.5690000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|27990000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|86398|90890|10000|10000|||94.60|97.85|0.00|-3.00|54201|54201|10000|10000|||100.36|97.55|0.00|-0.24|0001978A|5|8| +22|2023-10-06T21:14:42.5690000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0009|Zewo Negiwo|4|280D0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|56447|56823|9042|10000|||103.45|102.17|0.00|1.84|54201|54201|10000|10000|||100.36|97.55|0.00|-0.24|0001978A|6|8| +22|2023-10-06T21:14:42.5690000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|27960000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|9200|10000|||91.31|99.61|0.00|3.02|54201|54201|10000|10000|||100.36|97.55|0.00|-0.24|0001978A|7|8| +35|2023-10-06T21:14:42.5690000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.5690000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.5690000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.5690000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:42.5690000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50044|57941|10000|10000|||99.96|100.94|0.00|3.14|50044|57941|10000|10000|||99.96|100.94|0.00|3.14|0001978B|0|1| +38|2023-10-06T21:14:42.5690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50044|57941|10000|10000|0||99.96|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:42.5690000-07:00|1F0|Mudra|4.93|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|57941|57941| +261|2023-10-06T21:14:42.1620000-07:00|Change|10FF0007||||||||| +35|2023-10-06T21:14:42.6580000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.6580000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.6580000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.6580000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:42.7470000-07:00|40022472|Zeromus|00019787|26647061||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:42.7470000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.7470000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.7470000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.7470000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:42.8350000-07:00|40022472|Zeromus|00019785|26637027||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:42.8350000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.8350000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.8350000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.8350000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:42.8790000-07:00|40022472|Zeromus|00019786|26627115||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:42.9240000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:42.9240000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:42.9240000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:42.9240000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:42.4580000-07:00|Change|10FF0003||||||||| +35|2023-10-06T21:14:43.0130000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.0130000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.0130000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.0130000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:43.0570000-07:00|40022472|Zeromus|00019788|26611398||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:43.0570000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|656003|6F840000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|26627115|40478540|10000|10000|||100.00|80.10|0.00|0.00|50044|57941|10000|10000|||98.99|100.84|0.00|-2.85|0001978C|0|1| +38|2023-10-06T21:14:43.0580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50044|57941|10000|10000|0||98.04|100.78|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.0580000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +30|2023-10-06T21:14:43.0580000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|57941|57941| +35|2023-10-06T21:14:43.1010000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.1010000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.1010000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.1010000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:42.6680000-07:00|Change|10FF0001||||||||| +35|2023-10-06T21:14:43.1900000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.1900000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.1900000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.1900000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +24|2023-10-06T21:14:43.2350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|21ED|51132|63151|10000|10000|||102.85|99.84|0.00|-2.68|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||105.37|100.55|0.00|1.88| +38|2023-10-06T21:14:43.2350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|59817|63151|10000|10000|0||102.85|99.84|0.00|-2.68|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:43.2800000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2179|50044|57941|10000|10000|||97.44|100.73|0.00|3.01|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||105.37|100.55|0.00|1.88| +35|2023-10-06T21:14:43.2800000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.2800000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.2800000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.2800000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +38|2023-10-06T21:14:43.2800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||97.44|100.73|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:43.3250000-07:00|10FF0003|Gegehi Gehi|HoT|0|22C1|38933|51669|5450|10000|||108.17|97.82|0.00|2.04|10FF0003|Gegehi Gehi|0|38933|51669|5450|10000|||108.17|97.82|0.00|2.04| +38|2023-10-06T21:14:43.3250000-07:00|10FF0003|Gegehi Gehi|005A5A23|47830|51669|5450|10000|0||108.17|97.82|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:43.3690000-07:00|10FF000A|Dukaro Nezikaro|0001978A|57941|57941|10000|10000|0||97.42|100.70|0.00|3.01|1E00|0|0|01|050001FB|0|C1A00000|| +35|2023-10-06T21:14:43.3690000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.3690000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.3690000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.3690000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +24|2023-10-06T21:14:43.4140000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|227F|45670|57078|8450|10000|||102.81|100.77|0.00|-2.05|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-1.08| +38|2023-10-06T21:14:43.4140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|54501|57078|8450|10000|0||102.81|100.77|0.00|-2.05|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:43.0110000-07:00|Change|10FF0007||||||||| +35|2023-10-06T21:14:43.4590000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.4590000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.4590000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.4590000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:43.0110000-07:00|Change|10FF0009||||||||| +24|2023-10-06T21:14:43.5040000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|21F0|86398|90890|10000|10000|||88.72|98.60|0.00|-2.98|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-1.08| +24|2023-10-06T21:14:43.5040000-07:00|40022472|Zeromus|DoT|A92|651|26611398|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|9100|10000|||100.35|98.72|0.00|2.84| +24|2023-10-06T21:14:43.5040000-07:00|10FF0006|Wowobora Gogobora|HoT|0|225B|57266|57266|9100|10000|||100.35|98.72|0.00|2.84|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +21|2023-10-06T21:14:43.5040000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26611398|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||89.30|98.10|0.00|2.54|0001978D|0|1| +38|2023-10-06T21:14:43.5040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||88.72|98.60|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:43.5040000-07:00|40022472|Zeromus|005A5A00|26609781|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:43.5040000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:14:43.5040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9100|10000|0||100.35|98.72|0.00|2.84|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T21:14:43.5040000-07:00|10FF0001||||| +24|2023-10-06T21:14:43.5490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E5B|54501|57078|8450|10000|||102.59|100.71|0.00|-2.56|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +24|2023-10-06T21:14:43.5490000-07:00|10FF0006|Wowobora Gogobora|HoT|777|1682|57266|57266|9100|10000|||100.35|98.72|0.00|2.84|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +24|2023-10-06T21:14:43.5490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E73|59817|63151|10000|10000|||102.83|99.75|-0.01|-1.45|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +24|2023-10-06T21:14:43.5490000-07:00|10FF0009|Zewo Negiwo|HoT|777|1739|56447|56823|9042|10000|||106.29|99.16|0.00|2.35|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +24|2023-10-06T21:14:43.5490000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|16CD|57941|57941|10000|10000|||97.09|100.44|0.00|-3.14|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +24|2023-10-06T21:14:43.5490000-07:00|10FF0003|Gegehi Gehi|HoT|777|DD3|47830|51669|5450|10000|||109.26|97.26|0.00|2.04|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +24|2023-10-06T21:14:43.5490000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E34|90349|90349|9200|10000|||89.30|98.10|0.00|2.54|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +24|2023-10-06T21:14:43.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E1B|86398|90890|10000|10000|||88.72|98.60|0.00|-2.98|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +24|2023-10-06T21:14:43.5490000-07:00|10FF0009|Zewo Negiwo|HoT|0|3013|56447|56823|9042|10000|||106.29|99.16|0.00|2.35|10FF0009|Zewo Negiwo|0|56447|56823|9042|10000|||106.29|99.16|0.00|2.35| +35|2023-10-06T21:14:43.5490000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.5490000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.5490000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.5490000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +38|2023-10-06T21:14:43.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||88.72|98.60|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.5490000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +38|2023-10-06T21:14:43.5490000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9042|10000|0||106.29|99.16|0.00|2.35|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:43.5490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||102.83|99.75|-0.01|-1.45|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +38|2023-10-06T21:14:43.5490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9100|10000|0||100.35|98.72|0.00|2.84|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +38|2023-10-06T21:14:43.5490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|7||89.30|98.10|0.00|2.54|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +38|2023-10-06T21:14:43.5490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8450|10000|0||102.59|100.71|0.00|-2.56|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +38|2023-10-06T21:14:43.5490000-07:00|10FF0003|Gegehi Gehi|005A5A23|51369|51669|5450|10000|0||109.26|97.26|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +38|2023-10-06T21:14:43.5490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||97.09|100.44|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.5490000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +24|2023-10-06T21:14:43.5940000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2186|90349|90349|9200|10000|||89.30|98.10|0.00|2.54|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-1.08| +38|2023-10-06T21:14:43.5940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|7||89.30|98.10|0.00|2.54|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:43.6380000-07:00|10FF0003|Gegehi Gehi|0001978A|51669||||||109.79|97.12|0.00|2.12| +35|2023-10-06T21:14:43.6380000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.6380000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.6380000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.6380000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:43.6390000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|92D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26609781|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||102.83|99.75|0.00|-1.41|0001978E|0|1| +21|2023-10-06T21:14:43.6830000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|13630000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|26609781|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||89.30|98.10|0.00|2.61|0001978F|0|1| +35|2023-10-06T21:14:43.7270000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.7270000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.7270000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.7270000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:43.7720000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|754003|57A20000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|26609781|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9100|10000|||101.27|97.86|0.00|2.54|00019790|0|1| +38|2023-10-06T21:14:43.7720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|0||101.27|97.86|0.00|2.54|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:43.7720000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:14:43.3180000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:14:43.8160000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.8160000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.8160000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.8160000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:43.8160000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26609781|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||88.14|98.56|0.00|-2.86|00019791|0|1| +261|2023-10-06T21:14:43.4150000-07:00|Change|10FF0003||||||||| +35|2023-10-06T21:14:43.9050000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.9050000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.9050000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.9050000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:43.9050000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26609781|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8700|10000|||101.72|97.44|0.00|-3.03|00019792|0|1| +21|2023-10-06T21:14:43.9500000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F712003|50890000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|26609781|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||87.96|98.50|0.00|-2.77|00019793|0|1| +38|2023-10-06T21:14:43.9500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||87.96|98.50|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:43.9500000-07:00|A75|Surging Tempest|36.91|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +35|2023-10-06T21:14:43.9940000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:43.9940000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:43.9940000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:43.9940000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:44.0400000-07:00|40022472|Zeromus|0001978D|26608100||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:44.0400000-07:00|40022472|Zeromus|0001978C|26579552||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:44.0400000-07:00|10FF000A|Dukaro Nezikaro|0001978C|57941|57941|10000|10000|0||94.21|98.39|0.00|-2.31|1E00|0|0|01|050001FB|0|41A00000|| +38|2023-10-06T21:14:44.0400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||94.21|98.39|0.00|-2.31|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:14:44.0830000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.0830000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:44.0830000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.0830000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:44.0830000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26609781|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5450|10000|||112.02|96.00|0.00|2.33|00019794|0|1| +35|2023-10-06T21:14:44.1730000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.1730000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:44.1730000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.1730000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:44.1730000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26579552|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||93.73|98.06|-0.02|-2.26|00019795|0|1| +261|2023-10-06T21:14:43.7220000-07:00|Change|10FF000A||||||||||| +21|2023-10-06T21:14:44.2160000-07:00|40022A3F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1B940000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|26579552|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||102.13|103.13|0.00|-3.13|00019796|0|1| +35|2023-10-06T21:14:44.2600000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.2600000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:44.2600000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.2600000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:44.3060000-07:00|40022472|Zeromus|0001978F|26574589||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:14:44.3070000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.74|100.74|0.00|-1.60| +38|2023-10-06T21:14:44.3070000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-1.13|0|0|0||||||| +30|2023-10-06T21:14:44.3070000-07:00|7AE|Summon Order IV|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +261|2023-10-06T21:14:43.8380000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:14:44.3510000-07:00|40022472|Zeromus|00019791|26571723||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:44.3510000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.3510000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:44.3510000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.3510000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:44.3960000-07:00|40022472|Zeromus|0001978E|26569374||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:44.4400000-07:00|40022472|Zeromus|00019792|26569221||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:44.4400000-07:00|40022A2F|Carbuncle|54388|54388|10000|10000|||100.00|99.11|0.00|0.64| +35|2023-10-06T21:14:44.4400000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.4400000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:14:44.4400000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.4400000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +39|2023-10-06T21:14:44.5280000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-1.32| +35|2023-10-06T21:14:44.5280000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.5280000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:44.5280000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.5280000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:44.5730000-07:00|40022472|Zeromus|00019790|26546787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:44.6180000-07:00|40022472|Zeromus|00019794|26546786||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:44.6180000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.6180000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:44.6180000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.6180000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:44.6180000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|37C90000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|26546787|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.91|99.01|0.00|-1.97|00019797|0|1| +21|2023-10-06T21:14:44.6180000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18260000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|26546787|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||90.87|97.39|0.00|-2.22|00019798|0|1| +37|2023-10-06T21:14:44.7060000-07:00|40022472|Zeromus|00019795|26544123||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:44.7060000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||100.27|98.86|0.00|-2.88| +35|2023-10-06T21:14:44.7060000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.7060000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:44.7060000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.7060000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +39|2023-10-06T21:14:44.7510000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|10000|10000|||90.04|97.41|0.00|2.52| +24|2023-10-06T21:14:44.7510000-07:00|40022472|Zeromus|DoT|0|25E7|26546786|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:14:44.7510000-07:00|40022472|Zeromus|005A5A00|26534420|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:14:44.2630000-07:00|Change|10FF0003||||||||| +35|2023-10-06T21:14:44.7950000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:14:44.7950000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:44.7950000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.7950000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:44.3570000-07:00|Change|10FF0009||||||||| +36|2023-10-06T21:14:44.8400000-07:00|3B74|3| +39|2023-10-06T21:14:44.8850000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|8650|10000|||99.29|100.18|0.00|3.12| +35|2023-10-06T21:14:44.8850000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:44.8850000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:44.8850000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.8850000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:44.4550000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T21:14:44.4550000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:14:44.9730000-07:00|40022472|Zeromus|00019796|26527360||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:44.9730000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||84.55|96.94|0.00|2.68| +39|2023-10-06T21:14:44.9730000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8900|10000|||106.24|94.19|0.00|2.26| +35|2023-10-06T21:14:44.9730000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:44.9730000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:44.9730000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:44.9730000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:45.0170000-07:00|40022472|Zeromus|00019798|26521178||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:45.0170000-07:00|10FF0009|Zewo Negiwo|56823|56823|9263|10000|||107.64|93.08|0.00|2.96| +261|2023-10-06T21:14:44.5540000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:14:45.0620000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9400|10000|||86.57|94.42|0.00|2.22| +35|2023-10-06T21:14:45.0620000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.0620000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.0620000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:45.0620000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:44.5540000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:14:44.6690000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:14:45.1070000-07:00|40022A3F|Automaton Queen|59967|59967|10000|10000|||102.10|103.11|0.00|-3.05| +39|2023-10-06T21:14:45.1520000-07:00|10FF0003|Gegehi Gehi|51669|51669|5650|10000|||116.93|92.27|0.00|2.36| +35|2023-10-06T21:14:45.1520000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.1520000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.1520000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:45.1520000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:14:45.2410000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.2410000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:45.2410000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:14:45.2410000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:45.2410000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||98.17|98.51|0.00|-1.83|63151|63151|10000|10000|||98.17|98.51|0.00|-1.83|00019799|0|1| +21|2023-10-06T21:14:45.2410000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2FE80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26521178|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8650|10000|||99.29|100.18|0.00|3.11|0001979A|0|1| +38|2023-10-06T21:14:45.2410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||98.17|98.51|0.00|-1.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:45.2410000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +261|2023-10-06T21:14:44.7860000-07:00|Change|10FF0008||||||||| +35|2023-10-06T21:14:45.3300000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.3300000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.3300000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:45.3300000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +38|2023-10-06T21:14:45.3750000-07:00|40022472|Zeromus|005A5A00|26521178|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:14:45.3750000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +37|2023-10-06T21:14:45.4190000-07:00|40022472|Zeromus|00019797|26506897||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:45.4190000-07:00|10FF0008|Kokosaze Lulusaze|00019797|63151|63151|10000|10000|0||97.68|98.10|0.00|-2.34|1F00|0|0|01|03000353|0|C0A00000|| +35|2023-10-06T21:14:45.4190000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.4190000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.4190000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:45.4190000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:45.0120000-07:00|Change|40022A2F||||||||| +35|2023-10-06T21:14:45.5070000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.5070000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.5070000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:45.5070000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +37|2023-10-06T21:14:45.5970000-07:00|40022472|Zeromus|00019793|26486280||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:45.5970000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.5970000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.5970000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:45.5970000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:14:45.6870000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.6870000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.6870000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:45.6870000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:45.3140000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:14:45.3140000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:14:45.3140000-07:00|Change|10FF0009||||||||||| +35|2023-10-06T21:14:45.7750000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:45.7750000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.7750000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:45.7750000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +21|2023-10-06T21:14:45.7750000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26486280|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9400|10000|||85.19|93.05|0.00|0.58|0001979B|0|1| +31|2023-10-06T21:14:45.7750000-07:00|10FF0001||||| +261|2023-10-06T21:14:45.4050000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:14:45.8650000-07:00|10FF0008|Kokosaze Lulusaze|00019799|63151|63151|10000|10000|0||95.22|95.30|0.00|-2.49|1F00|0|0|01|03000353|0|40A00000|| +21|2023-10-06T21:14:45.8650000-07:00|40022A3F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|736003|35280000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|26486280|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||102.10|103.11|0.00|-3.05|0001979C|0|1| +35|2023-10-06T21:14:45.8650000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:45.8650000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.8650000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:45.8650000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +38|2023-10-06T21:14:45.8650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.22|95.30|0.00|-2.49|0|0|0|||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:14:45.9540000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:45.9540000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:45.9540000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:45.9540000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +261|2023-10-06T21:14:45.6020000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:14:46.0430000-07:00|40022472|Zeromus|0001979A|26474016||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:46.0430000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.0430000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.0430000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.0430000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:46.1330000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.1330000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.1330000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.1330000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:45.6970000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:14:45.8090000-07:00|Change|40022A2F||||||||| +24|2023-10-06T21:14:46.2230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|215D|63151|63151|10000|10000|||95.02|93.46|0.00|-2.83|10FF0009|Zewo Negiwo|0|56823|56823|9263|10000|||108.08|88.15|0.00|-3.14| +35|2023-10-06T21:14:46.2230000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.2230000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.2230000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.2230000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:46.2230000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9263|10000|0||108.08|88.15|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:46.2230000-07:00|777|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:46.2230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.02|93.46|0.00|-2.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:46.2670000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|226C|57941|57941|10000|10000|||87.97|93.05|0.00|-0.88|10FF0009|Zewo Negiwo|0|56823|56823|9263|10000|||108.08|88.15|0.00|-3.14| +21|2023-10-06T21:14:46.2670000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35712003|2F080000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|26474016|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9400|10000|||85.19|93.05|0.00|2.29|0001979D|0|1| +38|2023-10-06T21:14:46.2670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||87.97|93.05|0.00|-0.88|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:46.3110000-07:00|40022472|Zeromus|0001979B|26471092||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:46.3110000-07:00|10FF0003|Gegehi Gehi|HoT|0|21C7|51669|51669|5650|10000|||117.61|88.66|0.00|2.99|10FF0003|Gegehi Gehi|0|51669|51669|5650|10000|||117.61|88.66|0.00|2.99| +35|2023-10-06T21:14:46.3110000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.3110000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:46.3110000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.3110000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:46.3110000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26474016|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.02|93.46|0.00|-2.83|0001979E|0|1| +21|2023-10-06T21:14:46.3110000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26474016|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8250|10000|||101.29|100.42|0.00|1.59|0001979F|0|1| +38|2023-10-06T21:14:46.3110000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5650|10000|0||117.61|88.66|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:14:46.3550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26474016|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||87.97|93.05|0.00|-0.88|000197A0|0|1| +24|2023-10-06T21:14:46.4000000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|27EC|57078|57078|8250|10000|||101.54|100.47|0.00|1.61|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:46.4000000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.4000000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:46.4000000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.4000000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:46.4000000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|22BA0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|26471092|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||84.23|94.09|0.00|2.22|000197A1|0|1| +38|2023-10-06T21:14:46.4000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8250|10000|0||101.54|100.47|0.00|1.61|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:46.0380000-07:00|Remove|400229FA| +24|2023-10-06T21:14:46.4900000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|27A0|90890|90890|10000|10000|||84.23|94.09|0.00|2.22|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +24|2023-10-06T21:14:46.4900000-07:00|40022472|Zeromus|DoT|A92|4F3|26471092|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|8900|10000|||108.48|88.94|0.00|-2.94| +24|2023-10-06T21:14:46.4900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|22BA|57266|57266|8900|10000|||108.48|88.94|0.00|-2.94|10FF0009|Zewo Negiwo|0|56823|56823|9263|10000|||107.58|87.81|0.00|-2.88| +35|2023-10-06T21:14:46.4900000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.4900000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.4900000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.4900000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +20|2023-10-06T21:14:46.4900000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|107.58|87.81|0.00|-2.88| +38|2023-10-06T21:14:46.4900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||84.23|94.09|0.00|2.22|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:46.4900000-07:00|40022472|Zeromus|005A5A00|26469825|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:46.4900000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:14:46.4900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8900|10000|0||108.48|88.94|0.00|-2.94|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:46.5350000-07:00|10FF0009|Zewo Negiwo|HoT|0|28F4|56823|56823|9263|10000|||107.06|87.59|0.00|-2.55|10FF0009|Zewo Negiwo|0|56823|56823|9263|10000|||107.06|87.59|0.00|-2.55| +38|2023-10-06T21:14:46.5350000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9263|10000|0||107.06|87.59|0.00|-2.55|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:46.5790000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|365C|90349|90349|9400|10000|||85.19|93.05|0.00|2.29|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:46.5790000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.5790000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.5790000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.5790000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:46.5790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9400|10000|7||85.19|93.05|0.00|2.29|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:46.6220000-07:00|40022472|Zeromus|0001979C|26456217||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:46.6670000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.6670000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.6670000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.6670000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:46.7120000-07:00|10FF0006|Wowobora Gogobora|64E7|Summon Phoenix|40022472|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|26456217|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8900|10000|||108.43|88.52|0.00|3.08|000197A2|0|1| +20|2023-10-06T21:14:46.7120000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|102.02|100.57|-0.02|1.69| +38|2023-10-06T21:14:46.7550000-07:00|40022A52||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:14:46.7560000-07:00|40022A52||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +35|2023-10-06T21:14:46.7560000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.7560000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.7560000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.7560000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:46.3390000-07:00|Add|40022A52||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:14:46.3390000-07:00|40022A52|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|54388|54388|10000|10000|||110.91|88.00|0.00|-2.33| +37|2023-10-06T21:14:46.8450000-07:00|40022472|Zeromus|0001979F|26456064||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:46.8450000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.8450000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.8450000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.8450000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:46.3390000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:14:46.8900000-07:00|40022472|Zeromus|000197A0|26453845||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:46.4300000-07:00|Change|40022A52||| +37|2023-10-06T21:14:46.9340000-07:00|40022472|Zeromus|000197A1|26444955||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:46.9340000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:46.9340000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:46.9340000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:46.9340000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:46.4300000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:14:46.5280000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:14:47.0230000-07:00|40022472|Zeromus|0001979D|26432915||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:47.0230000-07:00|10FF0001|Sesuga Sapisuga|0001979D|90349|90349|10000|10000|7||84.68|92.46|0.00|1.53|1300|0|0|0| +35|2023-10-06T21:14:47.0230000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:47.0230000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.0230000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.0230000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:47.0680000-07:00|40022472|Zeromus|0001979E|26430588||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:47.0680000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26444955|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8900|10000|||108.42|88.13|0.00|-2.33|000197A3|0|1| +261|2023-10-06T21:14:46.6480000-07:00|Change|10FF0001||||||||| +35|2023-10-06T21:14:47.1130000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:47.1130000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.1130000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.1130000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:47.1130000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|726003|C1970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26444955|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||94.45|88.97|0.00|-2.84|000197A4|0|1| +38|2023-10-06T21:14:47.1130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||94.45|88.97|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:47.1130000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +35|2023-10-06T21:14:47.2020000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:47.2020000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.2020000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.2020000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:47.2020000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|716003|17AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26430588|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||84.25|94.50|0.00|2.31|000197A5|0|1| +35|2023-10-06T21:14:47.2900000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:14:47.2900000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.2900000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.2900000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:46.8800000-07:00|Change|40022A2F||||||||| +35|2023-10-06T21:14:47.3790000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:47.3790000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.3790000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.3790000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:47.4230000-07:00|40022A3F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1BAB0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|26430588|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05|000197A6|0|1| +21|2023-10-06T21:14:47.4230000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32D60000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|26430588|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|9263|10000|||105.85|87.05|0.00|-2.44|000197A7|0|1| +35|2023-10-06T21:14:47.4670000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:47.4670000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.4670000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.4670000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +39|2023-10-06T21:14:47.5120000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:47.5570000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:47.5570000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.5570000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.5570000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:47.5570000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26430588|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5650|10000|||118.27|88.75|0.00|-1.87|000197A8|0|1| +37|2023-10-06T21:14:47.6010000-07:00|40022472|Zeromus|000197A3|26430430||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:47.6010000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:47.6010000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:47.6010000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:47.6010000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +257|2023-10-06T21:14:47.6010000-07:00|80034E7C|00020001|00|00|0000| +35|2023-10-06T21:14:47.6460000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:47.6460000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.6460000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.6460000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:47.6460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|306D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26430430|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7850|10000|||102.83|100.76|0.00|-3.01|000197A9|0|1| +35|2023-10-06T21:14:47.6900000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:47.6900000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:47.6900000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:47.6900000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:47.6900000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||94.04|87.94|0.00|-2.98|63151|63151|10000|10000|||94.04|87.94|0.00|-2.98|000197AA|0|1| +38|2023-10-06T21:14:47.6900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||94.04|87.94|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:47.6900000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|63151|63151| +37|2023-10-06T21:14:47.7330000-07:00|40022472|Zeromus|000197A5|26424367||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:47.7350000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||94.04|87.94|0.00|-2.98| +35|2023-10-06T21:14:47.7350000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:47.7350000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.7350000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.7350000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +22|2023-10-06T21:14:47.7350000-07:00|40022A52|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8900|10000|||108.41|88.07|0.00|-1.77|54388|54388|10000|10000|||110.91|88.00|0.00|-2.33|000197AB|0|3| +22|2023-10-06T21:14:47.7350000-07:00|40022A52|Demi-Phoenix|4085|Everlasting Flight|10FF0009|Zewo Negiwo|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|8863|10000|||105.85|87.05|0.00|-2.44|54388|54388|10000|10000|||110.91|88.00|0.00|-2.33|000197AB|1|3| +22|2023-10-06T21:14:47.7350000-07:00|40022A52|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5650|10000|||118.39|88.92|0.00|2.76|54388|54388|10000|10000|||110.91|88.00|0.00|-2.33|000197AB|2|3| +39|2023-10-06T21:14:47.7790000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|10000|10000|||87.98|92.27|0.00|-1.14| +24|2023-10-06T21:14:47.7790000-07:00|40022472|Zeromus|DoT|0|1736|26424367|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T21:14:47.7790000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:47.7790000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:47.7790000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:47.7790000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:47.7800000-07:00|40022472|Zeromus|005A5A00|26418425|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:14:47.3090000-07:00|Change|40022A52||||| +261|2023-10-06T21:14:47.4010000-07:00|Change|10FF0009||||||||||||||||||||||| +35|2023-10-06T21:14:47.8240000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:47.8240000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.8240000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.8240000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:47.8690000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:47.8690000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:47.8690000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:47.8690000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +36|2023-10-06T21:14:47.8690000-07:00|3C50|3| +39|2023-10-06T21:14:47.9130000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|8050|10000|||102.83|100.76|0.00|3.06| +35|2023-10-06T21:14:47.9130000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:47.9130000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:47.9130000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:47.9130000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:47.4920000-07:00|Change|10FF0004||||||||||||||||||||||| +35|2023-10-06T21:14:47.9580000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:47.9580000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:47.9580000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:47.9580000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +39|2023-10-06T21:14:48.0010000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||84.09|94.96|0.00|1.17| +39|2023-10-06T21:14:48.0010000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9100|10000|||108.44|88.42|0.00|-0.26| +261|2023-10-06T21:14:47.6770000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:14:48.0020000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.0020000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.0020000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.0020000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +39|2023-10-06T21:14:48.0470000-07:00|10FF0009|Zewo Negiwo|56823|56823|9084|10000|||105.85|87.05|0.00|-2.44| +35|2023-10-06T21:14:48.0470000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.0470000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.0470000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.0470000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:48.0480000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26418425|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||84.52|92.62|0.00|0.82|000197AC|0|1| +38|2023-10-06T21:14:48.0480000-07:00|40022472|Zeromus|005A5A00|26418425|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:14:48.0480000-07:00|74F|Dia|0.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|56823| +31|2023-10-06T21:14:48.0480000-07:00|10FF0001||||| +37|2023-10-06T21:14:48.0910000-07:00|40022472|Zeromus|000197A8|26418424||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:48.0910000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||84.52|92.62|0.00|0.82| +35|2023-10-06T21:14:48.0910000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.0910000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.0910000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.0910000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +39|2023-10-06T21:14:48.1360000-07:00|40022A3F|Automaton Queen|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05| +35|2023-10-06T21:14:48.1360000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.1360000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.1360000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.1360000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:48.1810000-07:00|40022472|Zeromus|000197A6|26411341||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:48.1810000-07:00|10FF0003|Gegehi Gehi|51669|51669|5850|10000|||118.48|89.00|0.00|2.77| +35|2023-10-06T21:14:48.1810000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.1810000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.1810000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.1810000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:48.2240000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.2240000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.2240000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.2240000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:47.7920000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:14:48.2690000-07:00|40022472|Zeromus|000197A4|26361782||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:48.2690000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.2690000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.2690000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.2690000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:48.3130000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.3130000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.3130000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.3130000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:48.3130000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|13630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26361782|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|-2.70|000197AD|0|1| +35|2023-10-06T21:14:48.3580000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.3580000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.3580000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.3580000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:48.4030000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.4030000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.4030000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.4030000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:48.4470000-07:00|40022472|Zeromus|000197A9|26349385||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:48.4470000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.4470000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.4470000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.4470000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:48.4920000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.4920000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.4920000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.4920000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:48.5360000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.5360000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.5360000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.5360000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:48.5360000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26361782|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||88.08|92.41|0.00|0.20|000197AE|0|1| +38|2023-10-06T21:14:48.5360000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9084|10000|0||105.85|87.05|0.00|-2.44|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:48.5360000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +38|2023-10-06T21:14:48.5360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:48.5360000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +38|2023-10-06T21:14:48.5360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9100|10000|0||108.53|88.73|0.00|0.23|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:48.5360000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +38|2023-10-06T21:14:48.5360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||84.35|92.83|0.00|0.87|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:48.5360000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +38|2023-10-06T21:14:48.5360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8050|10000|0||103.26|100.53|-0.02|2.38|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:48.5360000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +38|2023-10-06T21:14:48.5360000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5850|10000|0||118.49|89.01|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:48.5360000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +38|2023-10-06T21:14:48.5360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||88.15|92.43|0.00|0.41|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:48.5360000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +37|2023-10-06T21:14:48.5810000-07:00|40022472|Zeromus|000197AC|26347628||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:48.5810000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.5810000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.5810000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.5810000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:48.5810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||84.09|94.96|0.00|1.17|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:48.5810000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +35|2023-10-06T21:14:48.6240000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.6240000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.6240000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.6240000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:48.6690000-07:00|10FF0006|Wowobora Gogobora|000197AB|57266|57266|9100|10000|0||108.59|88.86|0.00|0.30|1B00|0|0|01|074C|0|41A80000|| +26|2023-10-06T21:14:48.6690000-07:00|74C|Everlasting Flight|21.00|40022A52|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|57266|54388| +35|2023-10-06T21:14:48.6690000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.6690000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.6690000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.6690000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:48.2340000-07:00|Change|40022A2F||| +37|2023-10-06T21:14:48.7140000-07:00|40022472|Zeromus|000197A7|26334614||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:48.7140000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.7140000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.7140000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.7140000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:48.7580000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.7580000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.7580000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.7580000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:48.7580000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|29410000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|26347628|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||84.20|93.00|0.00|0.87|000197AF|0|1| +38|2023-10-06T21:14:48.7580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||84.20|93.00|0.00|0.87|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:48.7580000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:14:48.7580000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:14:48.8030000-07:00|10FF0009|Zewo Negiwo|000197AB|56823|56823|9084|10000|0||105.85|87.05|0.00|-2.44|1801|0|0|01|0200074C|0|41A80000|| +26|2023-10-06T21:14:48.8030000-07:00|74C|Everlasting Flight|21.00|40022A52|Demi-Phoenix|10FF0009|Zewo Negiwo|00|56823|54388| +35|2023-10-06T21:14:48.8030000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.8030000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.8030000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.8030000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:48.8480000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.8480000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.8480000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.8480000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:48.8480000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|207A0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|26347628|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||84.09|94.96|0.00|1.17|000197B0|0|1| +261|2023-10-06T21:14:48.3300000-07:00|Change|10FF0009||| +35|2023-10-06T21:14:48.8910000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.8910000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.8910000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.8910000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:48.8910000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|A9C0000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|26334614|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|9084|10000|||105.85|87.05|0.00|-2.44|000197B1|0|1| +37|2023-10-06T21:14:48.9360000-07:00|10FF0003|Gegehi Gehi|000197AB|51669|51669|5850|10000|0||118.49|89.01|0.00|2.77|2302|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T21:14:48.9360000-07:00|74C|Everlasting Flight|21.00|40022A52|Demi-Phoenix|10FF0003|Gegehi Gehi|00|51669|54388| +35|2023-10-06T21:14:48.9360000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:48.9360000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:48.9360000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:48.9360000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:48.9810000-07:00|40022A3F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1AFF0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|26334614|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05|000197B2|0|1| +35|2023-10-06T21:14:48.9810000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:48.9810000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:48.9810000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:48.9810000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:48.9810000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|89A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26334614|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197B3|0|1| +35|2023-10-06T21:14:49.0250000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.0250000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.0250000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.0250000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:49.0690000-07:00|40022472|Zeromus|000197AE|26331845||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:49.0690000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.0690000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:49.0690000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.0690000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:49.1150000-07:00|40022472|Zeromus|000197AD|26326882||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:49.1150000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.1150000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.1150000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.1150000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +20|2023-10-06T21:14:49.1150000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|118.49|89.01|0.00|2.77| +261|2023-10-06T21:14:48.6370000-07:00|Change|10FF0003||||||||||||||||||| +35|2023-10-06T21:14:49.1590000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.1590000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:49.1590000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.1590000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +24|2023-10-06T21:14:49.2040000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|22A5|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|10FF0009|Zewo Negiwo|0|56823|56823|8684|10000|||105.85|87.05|0.00|-2.44| +35|2023-10-06T21:14:49.2040000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.2040000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.2040000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +261|2023-10-06T21:14:48.7570000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:14:49.2040000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:49.2040000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|56CB0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|26326882|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9100|10000|||108.77|89.18|0.00|0.61|000197B4|0|1| +38|2023-10-06T21:14:49.2040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:49.2490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|280A|57941|57941|10000|10000|||88.35|92.38|0.00|-0.74|10FF0009|Zewo Negiwo|0|56823|56823|8684|10000|||105.85|87.05|0.00|-2.44| +35|2023-10-06T21:14:49.2490000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.2490000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:49.2490000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.2490000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +20|2023-10-06T21:14:49.2490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|103.79|100.43|0.00|2.09| +38|2023-10-06T21:14:49.2490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||88.35|92.38|0.00|-0.74|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:48.7570000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:14:49.2920000-07:00|10FF0003|Gegehi Gehi|HoT|0|3063|51669|51669|5850|10000|||118.49|89.01|0.00|-2.91|10FF0003|Gegehi Gehi|0|51669|51669|5850|10000|||118.49|89.01|0.00|-2.91| +35|2023-10-06T21:14:49.2920000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.2920000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.2920000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.2920000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:49.2920000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5850|10000|0||118.49|89.01|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:49.3370000-07:00|40022472|Zeromus|000197AF|26316321||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:49.3370000-07:00|10FF0001|Sesuga Sapisuga|000197AF|90349|90349|10000|10000|7||83.98|93.26|0.00|0.87|1300|0|0|02|0200076E|03|41F00000|||||| +35|2023-10-06T21:14:49.3370000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.3370000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:49.3370000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.3370000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:49.3370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||83.98|93.26|0.00|0.87|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:49.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|22CD|57078|57078|8050|10000|||103.89|100.41|0.00|1.91|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:49.3820000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.3820000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.3820000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.3820000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:49.3820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8050|10000|0||103.89|100.41|0.00|1.91|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:48.8730000-07:00|Change|10FF0003||||||||||| +35|2023-10-06T21:14:49.4270000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.4270000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:49.4270000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.4270000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:49.4270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8800|10000|0||108.88|89.26|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:49.4270000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +37|2023-10-06T21:14:49.4710000-07:00|40022472|Zeromus|000197B0|26308007||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:49.4710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2247|90890|90890|10000|10000|||84.09|94.96|0.00|2.32|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +24|2023-10-06T21:14:49.4710000-07:00|40022472|Zeromus|DoT|A92|5D5|26316321|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|8800|10000|||108.88|89.26|0.00|-2.37| +24|2023-10-06T21:14:49.4710000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2AC9|57266|57266|8800|10000|||108.88|89.26|0.00|-2.37|10FF0009|Zewo Negiwo|0|56823|56823|8684|10000|||105.85|87.05|0.00|-2.44| +35|2023-10-06T21:14:49.4710000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.4710000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.4710000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.4710000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:49.4710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||84.09|94.96|0.00|2.32|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:49.4710000-07:00|40022472|Zeromus|005A5A00|26306514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:49.4710000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:14:49.4710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8800|10000|0||108.93|89.30|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:49.5160000-07:00|10FF0009|Zewo Negiwo|HoT|0|290E|56823|56823|8684|10000|||105.85|87.05|0.00|-2.44|10FF0009|Zewo Negiwo|0|56823|56823|8684|10000|||105.85|87.05|0.00|-2.44| +35|2023-10-06T21:14:49.5160000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.5160000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:49.5160000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.5160000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:49.5160000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|8684|10000|0||105.85|87.05|0.00|-2.44|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:49.5610000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2152|90349|90349|10000|10000|||83.88|93.38|0.00|0.87|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:49.5610000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.5610000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.5610000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.5610000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:49.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||83.88|93.38|0.00|0.87|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:49.5610000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5850|10000|0||118.49|89.01|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:49.5610000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51669|54201| +35|2023-10-06T21:14:49.6050000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.6050000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:14:49.6050000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.6050000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:49.6500000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.6500000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.6500000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.6500000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +26|2023-10-06T21:14:49.6500000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|63151|63151| +21|2023-10-06T21:14:49.6500000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|28FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26306514|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197B5|0|1| +35|2023-10-06T21:14:49.6940000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.6940000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:49.6940000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.6940000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:49.6940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:49.6940000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|54201| +37|2023-10-06T21:14:49.7380000-07:00|40022472|Zeromus|000197B2|26299603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:49.7380000-07:00|40022472|Zeromus|000197B3|26297401||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:49.7390000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.7390000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.7390000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.7390000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:49.7840000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.7840000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:49.7840000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.7840000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:49.8300000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.8300000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.8300000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.8300000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:49.8300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||83.88|93.38|0.00|0.87|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:49.8300000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|54201| +35|2023-10-06T21:14:49.8730000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.8730000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:49.8730000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.8730000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:49.4060000-07:00|Change|10FF0009||||||||||| +35|2023-10-06T21:14:49.9180000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:49.9180000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:49.9180000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:49.9180000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:49.9630000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:49.9630000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:49.9630000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:49.9630000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:49.9630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||88.61|92.26|0.00|0.41|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:49.9630000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|57941|54201| +35|2023-10-06T21:14:50.0070000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.0070000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.0070000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.0070000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:50.0520000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.0520000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.0520000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.0520000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:50.0960000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.0970000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.0970000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.0970000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:50.0970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||83.81|95.38|0.00|1.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:50.0970000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|54201| +35|2023-10-06T21:14:50.1420000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.1420000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.1420000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.1420000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:50.1870000-07:00|40022472|Zeromus|000197B1|26294685|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:14:50.1870000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|56823| +35|2023-10-06T21:14:50.1870000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.1870000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.1870000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.1870000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:50.1870000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|18490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26297401|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197B6|0|1| +21|2023-10-06T21:14:50.1870000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33CC0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26297401|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8050|10000|||104.14|100.36|0.00|-2.94|000197B7|0|1| +38|2023-10-06T21:14:50.1870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8800|10000|0||108.92|89.28|0.00|-2.85|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:50.1870000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:14:49.8410000-07:00|Change|10FF0004||||||||||||||||||||||| +35|2023-10-06T21:14:50.2310000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.2310000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.2310000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.2310000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:50.2310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26294685|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8800|10000|||108.91|89.26|0.00|-2.95|000197B8|0|1| +38|2023-10-06T21:14:50.2310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7650|10000|0||104.14|100.36|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:50.2310000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +37|2023-10-06T21:14:50.2750000-07:00|40022472|Zeromus|000197B5|26284195||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:50.2750000-07:00|40022472|Zeromus|000197B4|26261976||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:50.2750000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.2750000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.2750000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.2750000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:50.3210000-07:00|40022A52|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|150003|12FA0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|26294685|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20|000197B9|0|1| +35|2023-10-06T21:14:50.3210000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.3210000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.3210000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.3210000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:50.3210000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26294685|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||83.88|93.38|0.00|0.87|000197BA|0|1| +31|2023-10-06T21:14:50.3210000-07:00|10FF0001||||| +35|2023-10-06T21:14:50.3640000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.3640000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.3650000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.3650000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:50.3650000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|8684|10000|0||105.67|87.51|-0.01|-0.40|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:50.3650000-07:00|13D|Fey Illumination|0.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|56823|54201| +35|2023-10-06T21:14:50.4090000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.4090000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.4090000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.4090000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +33|2023-10-06T21:14:50.4530000-07:00|80034E7C|40000007|00|01|00|00| +35|2023-10-06T21:14:50.4530000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.4530000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.4530000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.4530000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +04|2023-10-06T21:14:49.9580000-07:00|40022A2F|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||107.96|91.23|0.00|1.65| +261|2023-10-06T21:14:49.9580000-07:00|Remove|40022A2E| +261|2023-10-06T21:14:49.9580000-07:00|Remove|40022A2F| +35|2023-10-06T21:14:50.4980000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.4980000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.4980000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.4980000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:50.5410000-07:00|40022A3F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1A3A0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|26261976|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05|000197BB|0|1| +39|2023-10-06T21:14:50.5420000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:50.5420000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.5420000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.5420000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.5420000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:50.5420000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|22520000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|26261976|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5850|10000|||118.49|89.01|0.00|-2.02|000197BC|0|1| +38|2023-10-06T21:14:50.5420000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5650|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:50.5420000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +30|2023-10-06T21:14:50.5420000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:14:50.0760000-07:00|Change|10FF0003||||||||||||||||| +35|2023-10-06T21:14:50.5870000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.5870000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.5870000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.5870000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:50.5870000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26261976|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||83.79|95.41|0.00|0.98|000197BD|0|1| +35|2023-10-06T21:14:50.6320000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.6320000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.6320000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.6320000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:50.6770000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.6770000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.6770000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.6770000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +39|2023-10-06T21:14:50.7210000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||93.64|87.05|0.00|2.40| +35|2023-10-06T21:14:50.7210000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.7210000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.7210000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.7210000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:50.7210000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|80C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26261976|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||88.73|92.30|0.00|0.52|000197BE|0|1| +37|2023-10-06T21:14:50.7650000-07:00|40022472|Zeromus|000197B8|26261798||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:50.7650000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|10000|10000|||88.73|92.30|0.00|0.52| +24|2023-10-06T21:14:50.7650000-07:00|40022472|Zeromus|DoT|0|1FAF|26261976|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T21:14:50.7650000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.7650000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.7650000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.7650000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:50.7650000-07:00|40022472|Zeromus|005A5A00|26253687|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:14:50.8100000-07:00|40022472|Zeromus|000197B6|26247470||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:50.8100000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.8100000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.8100000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.8100000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:50.8540000-07:00|40022472|Zeromus|000197BA|26244573||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:50.8540000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.8540000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.8540000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.8540000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:50.8540000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18AC0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|26247470|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||88.73|92.30|-0.02|0.53|000197BF|0|1| +36|2023-10-06T21:14:50.8540000-07:00|3D2C|3| +39|2023-10-06T21:14:50.8990000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|7850|10000|||104.20|100.36|-0.02|2.24| +33|2023-10-06T21:14:50.8990000-07:00|80034E7C|80000004|CE3|00|00|00| +35|2023-10-06T21:14:50.8990000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.8990000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.8990000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.8990000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:50.9430000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:50.9430000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:50.9430000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:50.9430000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:50.9880000-07:00|40022472|Zeromus|000197B7|26231313||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:50.9880000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||83.79|95.41|0.00|0.98| +39|2023-10-06T21:14:50.9880000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9000|10000|||108.87|89.19|0.00|-2.91| +35|2023-10-06T21:14:50.9880000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:50.9880000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:50.9880000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:50.9880000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:50.4560000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:14:51.0330000-07:00|10FF0009|Zewo Negiwo|56823|56823|8905|10000|||105.67|87.51|0.00|-0.39| +35|2023-10-06T21:14:51.0330000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.0330000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.0330000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.0330000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:50.5570000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:14:51.0780000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||83.88|93.38|0.00|2.26| +38|2023-10-06T21:14:51.0780000-07:00|40022A3F|Automaton Queen|005A5A00|59967|59967|10000|10000|0||102.10|103.01|0.00|-3.05|0|0|0|||||||||| +26|2023-10-06T21:14:51.0780000-07:00|30|Well Fed|1575.12|10FF0008|Kokosaze Lulusaze|40022A3F|Automaton Queen|2964|59967|63151| +26|2023-10-06T21:14:51.0780000-07:00|441|HP Penalty|9999.00|E0000000||40022A3F|Automaton Queen|00|59967|| +26|2023-10-06T21:14:51.0780000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022A3F|Automaton Queen|01|59967|40478540| +35|2023-10-06T21:14:51.0780000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.0780000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.0780000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.0780000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:51.1230000-07:00|40022472|Zeromus|000197BD|26226537||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:51.1230000-07:00|40022A3F|Automaton Queen|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05| +35|2023-10-06T21:14:51.1230000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.1230000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.1230000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.1230000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +26|2023-10-06T21:14:51.1230000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|63151|63151| +21|2023-10-06T21:14:51.1230000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26231313|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197C0|0|1| +39|2023-10-06T21:14:51.1670000-07:00|10FF0003|Gegehi Gehi|51669|51669|5850|10000|||118.49|89.01|0.00|-2.02| +35|2023-10-06T21:14:51.1670000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.1670000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.1670000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.1670000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:51.2110000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.2110000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.2110000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.2110000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:51.2560000-07:00|40022472|Zeromus|000197BE|26224477||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:51.2560000-07:00|40022472|Zeromus|000197BF|26218161||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:51.2560000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.2560000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.2560000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.2560000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:51.2560000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|13CB0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|26226537|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||83.88|93.38|0.00|2.26|000197C1|0|1| +37|2023-10-06T21:14:51.3000000-07:00|40022472|Zeromus|000197BB|26211447||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:51.3000000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.3000000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.3000000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.3000000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:51.3000000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|31130000|143E|340000|4|17D68000|11B|2A8000|0|0|0|0|0|0|0|0|26226537|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||83.79|95.41|0.00|0.98|000197C2|0|1| +261|2023-10-06T21:14:50.8990000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:14:51.3450000-07:00|40022472|Zeromus|000197B9|26206589||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:51.3450000-07:00|40022472|Zeromus|000197BC|26197803||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:51.3450000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.3450000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.3450000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.3450000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:51.3890000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.3890000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.3890000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.3890000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:51.4330000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.4330000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.4330000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.4330000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:51.4330000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26211447|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7850|10000|||104.34|100.31|0.00|2.03|000197C3|0|1| +35|2023-10-06T21:14:51.4780000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.4780000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.4780000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.4780000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:51.5230000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.5230000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.5230000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.5230000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:51.1360000-07:00|Change|10FF0003||| +35|2023-10-06T21:14:51.5680000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.5680000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.5680000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.5680000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:51.5680000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|27520000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|26197803|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5850|10000|||118.49|89.01|0.00|-2.02|000197C4|0|1| +38|2023-10-06T21:14:51.5680000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:51.5680000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +35|2023-10-06T21:14:51.6130000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.6130000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.6130000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.6130000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:51.6130000-07:00|40022472|Zeromus|8B56|Meteor Impact|40022472|Zeromus|1B|8B568000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26197803|40478540|10000|10000|||100.00|80.10|0.00|0.00|26197803|40478540|10000|10000|||100.00|80.10|0.00|0.00|000197C5|0|1| +20|2023-10-06T21:14:51.6130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|104.40|100.27|0.00|2.08| +261|2023-10-06T21:14:51.1360000-07:00|Change|40022472||||| +00|2023-10-06T21:14:51.0000000-07:00|0044|Zeromus|Bright as stars in the night.| +35|2023-10-06T21:14:51.6580000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.6580000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.6580000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.6580000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:51.6580000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B0D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26197803|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197C6|0|1| +21|2023-10-06T21:14:51.6580000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|53EC0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|26197803|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9000|10000|||108.80|89.03|0.00|-2.95|000197C7|0|1| +261|2023-10-06T21:14:51.2370000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:14:51.7010000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.7010000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.7010000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.7010000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:51.7010000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|20380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26197803|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197C8|0|1| +37|2023-10-06T21:14:51.7460000-07:00|40022472|Zeromus|000197C0|26188904||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:51.7460000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.7460000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.7460000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.7460000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:51.7900000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.7900000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.7900000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.7900000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:51.8340000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.8340000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.8340000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.8340000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:51.8790000-07:00|40022472|Zeromus|000197C1|26183837||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:51.8790000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.8790000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.8790000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.8790000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:51.9240000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:51.9240000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:51.9240000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:51.9240000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:51.9680000-07:00|40022472|Zeromus|000197C3|26183686||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:51.9680000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:51.9680000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:51.9680000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:51.9680000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:51.9680000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||83.88|93.38|0.00|2.26|90349|90349|10000|10000|||83.88|93.38|0.00|2.26|000197C9|0|1| +35|2023-10-06T21:14:52.0130000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.0130000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.0130000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.0130000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:52.0580000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.0580000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.0580000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.0580000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:52.1030000-07:00|40022A3F|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|734003|628F0000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|26183686|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05|000197CA|0|1| +35|2023-10-06T21:14:52.1030000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.1030000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.1030000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.1030000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:52.1470000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.1470000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.1470000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.1470000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:51.7350000-07:00|Change|10FF0009||||||||| +35|2023-10-06T21:14:52.1920000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.1920000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.1920000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.1920000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +24|2023-10-06T21:14:52.2370000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|22FD|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|10FF0009|Zewo Negiwo|0|56823|56823|8905|10000|||100.85|89.27|0.00|-1.18| +35|2023-10-06T21:14:52.2370000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.2370000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.2370000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.2370000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:52.2370000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|3E170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26183686|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||88.73|92.30|0.00|2.40|000197CB|0|1| +38|2023-10-06T21:14:52.2370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:52.2810000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2361|57941|57941|10000|10000|||88.73|92.30|0.00|2.40|10FF0009|Zewo Negiwo|0|56823|56823|8905|10000|||100.85|89.27|0.00|-1.18| +35|2023-10-06T21:14:52.2810000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.2810000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.2810000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.2810000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +38|2023-10-06T21:14:52.2810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||88.73|92.30|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:51.8450000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:14:52.3250000-07:00|40022472|Zeromus|000197C4|26173620||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:52.3250000-07:00|10FF0003|Gegehi Gehi|HoT|0|29CB|51669|51669|5550|10000|||118.49|89.01|0.00|-2.02|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:52.3250000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.3250000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.3250000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.3250000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:52.3250000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:14:52.3700000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.3700000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.3700000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.3700000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:52.4140000-07:00|40022472|Zeromus|000197C6|26170791||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:52.4150000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|3243|57078|57078|7850|10000|||104.42|100.27|0.00|-2.93|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:52.4150000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.4150000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.4150000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.4150000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:52.4150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7850|10000|0||104.42|100.27|0.00|-2.93|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:14:52.4590000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.4590000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.4590000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.4590000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:14:52.0820000-07:00|Change|10FF0003||| +37|2023-10-06T21:14:52.5040000-07:00|40022472|Zeromus|000197C8|26162543||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:52.5040000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3195|90890|90890|10000|10000|||83.79|95.41|0.00|2.33|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +24|2023-10-06T21:14:52.5040000-07:00|10FF0006|Wowobora Gogobora|HoT|0|39D1|57266|57266|8700|10000|||108.78|88.98|0.00|-2.36|10FF0009|Zewo Negiwo|0|56823|56823|8905|10000|||100.77|91.42|0.00|-0.53| +35|2023-10-06T21:14:52.5040000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.5040000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.5040000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.5040000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:52.5040000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26170791|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5550|10000|||118.49|89.01|0.00|-2.02|000197CC|0|1| +38|2023-10-06T21:14:52.5040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||83.79|95.41|0.00|2.33|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:52.5040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|0||108.78|88.98|0.00|-2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:52.5490000-07:00|10FF0009|Zewo Negiwo|HoT|0|2A76|56823|56823|8905|10000|||100.77|91.42|0.00|-0.53|10FF0009|Zewo Negiwo|0|56823|56823|8905|10000|||100.77|91.42|0.00|-0.53| +35|2023-10-06T21:14:52.5490000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.5490000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.5490000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.5490000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:52.5490000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2D500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26170791|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||83.79|95.41|0.00|2.33|000197CD|0|1| +21|2023-10-06T21:14:52.5490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2F7B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26170791|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7850|10000|||104.42|100.27|0.00|-2.93|000197CE|0|1| +38|2023-10-06T21:14:52.5490000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|8905|10000|0||100.77|91.42|0.00|-0.53|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:52.5940000-07:00|10FF0001|Sesuga Sapisuga|000197C9|90349|90349|10000|10000|7||83.88|93.38|0.00|2.26|1300|0|0|01|0900004C|0|41A00000|| +26|2023-10-06T21:14:52.5940000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +24|2023-10-06T21:14:52.5940000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|21D8|90349|90349|10000|10000|||83.88|93.38|0.00|2.26|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:52.5940000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.5940000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.5940000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.5940000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:52.5940000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:52.5940000-07:00|9D6|Bind|3.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:14:52.5940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||88.73|92.30|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:52.5940000-07:00|9D6|Bind|3.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +38|2023-10-06T21:14:52.5940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|0||108.78|88.98|0.00|-2.36|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:52.5940000-07:00|9D6|Bind|3.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:14:52.5940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:52.5940000-07:00|9D6|Bind|3.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +26|2023-10-06T21:14:52.5940000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|63151|63151| +21|2023-10-06T21:14:52.5940000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26170791|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197CF|0|1| +21|2023-10-06T21:14:52.5940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|E150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26170791|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||83.88|93.38|0.00|2.26|000197D0|0|1| +38|2023-10-06T21:14:52.5940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||83.88|93.38|0.00|2.26|0|0|0||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T21:14:52.5940000-07:00|10FF0001||||| +35|2023-10-06T21:14:52.6380000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.6380000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.6380000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.6380000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:52.6830000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.6830000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.6830000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.6830000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:52.6830000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|750003|2A0E0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|26162543|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||83.88|93.38|0.00|2.26|000197D1|0|1| +38|2023-10-06T21:14:52.6830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||83.88|93.38|0.00|2.26|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:52.6830000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|90349|90349| +26|2023-10-06T21:14:52.6830000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:14:52.7260000-07:00|40022472|Zeromus|000197C7|26141059||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:52.7260000-07:00|40022A52|Demi-Phoenix|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20| +35|2023-10-06T21:14:52.7260000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.7260000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.7260000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.7260000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:52.7710000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.7710000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.7710000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:52.7710000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:52.8160000-07:00|40022472|Zeromus|000197C2|26128496||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:52.8160000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.8160000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.8160000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.8160000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:52.8600000-07:00|40022472|Zeromus|000197CB|26112601||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:52.8600000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.8600000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.8600000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:52.8600000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:52.9040000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.9040000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.9040000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.9040000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:52.9040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26112601|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||88.73|92.30|0.00|2.40|000197D2|0|1| +21|2023-10-06T21:14:52.9490000-07:00|40022A52|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|154003|18FF0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|26112601|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20|000197D3|0|1| +35|2023-10-06T21:14:52.9490000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:52.9490000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:52.9490000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:52.9490000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:52.9930000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:52.9930000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:52.9930000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:52.9930000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:53.0380000-07:00|40022472|Zeromus|000197CC|26112600||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:53.0380000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.0380000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.0380000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.0380000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:53.0380000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32716003|48600000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|26112601|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||88.73|92.30|0.00|2.40|000197D4|0|1| +261|2023-10-06T21:14:52.5600000-07:00|Change|10FF0009||||||||| +35|2023-10-06T21:14:53.0820000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:53.0820000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:53.0820000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.0820000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:53.1260000-07:00|40022472|Zeromus|000197D0|26108995||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:53.1260000-07:00|10FF0001|Sesuga Sapisuga|000197D0|90349|90349|10000|10000|7||83.88|93.38|0.00|2.26|1300|0|0|02|0A000558|04|C1F00000|||||| +35|2023-10-06T21:14:53.1260000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.1260000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.1260000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.1260000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.1710000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:53.1710000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:53.1710000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.1710000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:53.1710000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|19760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26112600|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197D5|0|1| +37|2023-10-06T21:14:53.2160000-07:00|40022472|Zeromus|000197CD|26097395||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:53.2160000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.2160000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.2160000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.2160000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +20|2023-10-06T21:14:53.2160000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|102.21|94.55|0.00|0.46| +37|2023-10-06T21:14:53.2610000-07:00|40022472|Zeromus|000197CF|26088578||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:53.2610000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:53.2610000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:53.2610000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.2610000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:53.2610000-07:00|10FF0006|Wowobora Gogobora|64E6|Rekindle|10FF0007|Kehabiqo Febiqo|4|26BC0000|4B10420E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||83.79|95.41|0.00|2.33|57266|57266|8700|10000|||108.78|88.98|0.00|-2.36|000197D6|0|1| +37|2023-10-06T21:14:53.3060000-07:00|40022472|Zeromus|000197D1|26077812||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:53.3060000-07:00|10FF0001|Sesuga Sapisuga|000197D1|90349|90349|10000|10000|7||83.88|93.38|0.00|2.26|1300|0|0|02|0A000558|04|41F00000|||||| +35|2023-10-06T21:14:53.3060000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.3060000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.3060000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.3060000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:53.3060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|7||83.88|93.38|0.00|2.26|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:52.9010000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:14:53.3500000-07:00|40022472|Zeromus|000197CE|26065657||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:53.3500000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:53.3500000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:53.3500000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.3500000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +37|2023-10-06T21:14:53.3950000-07:00|40022472|Zeromus|000197CA|26040426||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:53.3950000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.3950000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.3950000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.3950000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:53.3950000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26088578|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8700|10000|||108.78|88.98|0.00|-2.33|000197D7|0|1| +38|2023-10-06T21:14:53.3950000-07:00|40022A3F|Automaton Queen|005A5A00|59967|59967|10000|10000|0||102.10|103.01|0.00|-3.05|0|0|0||||||| +30|2023-10-06T21:14:53.3950000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022A3F|Automaton Queen|01|59967|40478540| +37|2023-10-06T21:14:53.4390000-07:00|40022472|Zeromus|000197D2|26038216||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:53.4390000-07:00|40022472|Zeromus|000197D4|26019688||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:53.4390000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:53.4390000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:53.4390000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.4390000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:53.4830000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.4830000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.4830000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.4830000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +39|2023-10-06T21:14:53.5280000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:53.5280000-07:00|40022470|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:14:53.5280000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:53.5280000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.5280000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +21|2023-10-06T21:14:53.5280000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|43370000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||83.79|95.41|0.00|2.33|26019688|40478540|10000|10000|||100.00|80.10|0.00|0.00|000197D8|0|1| +35|2023-10-06T21:14:53.5720000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.5720000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.5720000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.5720000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.6170000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:53.6170000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +261|2023-10-06T21:14:53.2360000-07:00|Change|40022470||||||||| +35|2023-10-06T21:14:53.6170000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:53.6170000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.6610000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.6610000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.6610000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +22|2023-10-06T21:14:53.7060000-07:00|40022470|Comet|8B58|Meteor Impact|10FF0003|Gegehi Gehi|730003|2B2D0000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|51669|51669|5550|10000|||118.49|89.01|0.00|-2.02|69200|69200|10000|10000|||106.00|118.00|0.00|2.73|000197D9|0|1| +39|2023-10-06T21:14:53.7060000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||93.64|87.05|0.00|2.40| +35|2023-10-06T21:14:53.7060000-07:00|4002246F|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:14:53.7060000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.7060000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:53.7060000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +38|2023-10-06T21:14:53.7060000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:53.7060000-07:00|8C8|Blunt Resistance Down|9.96|40022470|Comet|10FF0003|Gegehi Gehi|00|51669|69200| +261|2023-10-06T21:14:53.3300000-07:00|Change|40022470||| +39|2023-10-06T21:14:53.7510000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|10000|10000|||88.73|92.30|0.00|2.40| +24|2023-10-06T21:14:53.7510000-07:00|40022472|Zeromus|DoT|0|1FCA|26019688|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T21:14:53.7510000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.7510000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.7510000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:53.7510000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|712003|5A330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26019688|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||83.79|95.41|0.00|2.33|000197DA|0|1| +21|2023-10-06T21:14:53.7510000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|750003|75600000|4|26158000|0|0|0|0|0|0|0|0|0|0|0|0|26019688|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||83.88|93.38|0.00|2.26|000197DB|0|1| +38|2023-10-06T21:14:53.7510000-07:00|40022472|Zeromus|005A5A00|26011550|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:53.7510000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:14:53.7510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9000|10000|7||83.88|93.38|0.00|2.26|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:53.7510000-07:00|558|Requiescat|29.51|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +30|2023-10-06T21:14:53.7510000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +31|2023-10-06T21:14:53.7510000-07:00|10FF0001||||| +261|2023-10-06T21:14:53.3300000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:14:53.7950000-07:00|40022472|Zeromus|000197D5|26005032||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:53.7950000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.7950000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:53.7950000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.7950000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:53.8390000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.8390000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +36|2023-10-06T21:14:53.8390000-07:00|3E08|3| +22|2023-10-06T21:14:53.8840000-07:00|4002246F|Comet|8B58|Meteor Impact|10FF000A|Dukaro Nezikaro|730003|26540000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||88.73|92.30|0.00|2.40|69200|69200|10000|10000|||106.00|118.00|0.00|-2.55|000197DC|0|1| +39|2023-10-06T21:14:53.8840000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|7650|10000|||104.42|100.27|0.00|-2.93| +35|2023-10-06T21:14:53.8840000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.8840000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:53.8840000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.8840000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:14:53.8840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||88.73|92.30|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:53.8840000-07:00|8C8|Blunt Resistance Down|9.96|4002246F|Comet|10FF000A|Dukaro Nezikaro|00|57941|69200| +261|2023-10-06T21:14:53.4310000-07:00|Change|4002246F||||| +37|2023-10-06T21:14:53.9290000-07:00|40022472|Zeromus|000197D7|26004887||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:53.9290000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:53.9290000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:53.5230000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:14:53.9730000-07:00|40022472|Zeromus|000197D3|25998488||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:53.9730000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||83.79|95.41|0.00|2.33| +39|2023-10-06T21:14:53.9730000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8900|10000|||108.78|88.98|0.00|-2.02| +35|2023-10-06T21:14:53.9730000-07:00|4002246E|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:14:53.9730000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:53.9730000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:53.9730000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:14:53.9730000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B5F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26004887|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||83.79|95.41|0.00|2.33|000197DD|0|1| +39|2023-10-06T21:14:54.0190000-07:00|10FF0009|Zewo Negiwo|56823|56823|9126|10000|||102.71|95.14|0.00|-2.96| +35|2023-10-06T21:14:54.0190000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.0190000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:54.0190000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9126|10000|0||102.71|95.14|0.00|-2.96|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:54.0190000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +261|2023-10-06T21:14:53.5230000-07:00|Change|4002246E||||||||| +261|2023-10-06T21:14:53.6390000-07:00|Change|10FF0009||||||||||||||||||||||| +39|2023-10-06T21:14:54.0630000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9200|10000|||83.88|93.38|0.00|2.26| +35|2023-10-06T21:14:54.0630000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:54.0630000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.0630000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.0630000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +26|2023-10-06T21:14:54.0630000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +21|2023-10-06T21:14:54.0630000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|282A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25998488|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|1.18|000197DE|0|1| +38|2023-10-06T21:14:54.1060000-07:00|40022A3F|Automaton Queen|005A5A00|59967|59967|10000|10000|0||102.10|103.01|0.00|-3.05|0|0|0|||||||||| +26|2023-10-06T21:14:54.1060000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022A3F|Automaton Queen|01|59967|40478540| +22|2023-10-06T21:14:54.1060000-07:00|4002246E|Comet|8B58|Meteor Impact|10FF0006|Wowobora Gogobora|730003|2C5F0000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|57266|57266|8900|10000|||108.78|88.98|0.00|-2.13|69200|69200|10000|10000|||106.00|118.00|0.00|3.05|000197DF|0|1| +39|2023-10-06T21:14:54.1060000-07:00|40022A3F|Automaton Queen|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05| +35|2023-10-06T21:14:54.1060000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:54.1060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8900|10000|0||108.78|88.98|0.00|-2.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:54.1060000-07:00|8C8|Blunt Resistance Down|9.96|4002246E|Comet|10FF0006|Wowobora Gogobora|00|57266|69200| +261|2023-10-06T21:14:53.6390000-07:00|Change|4002246E||| +21|2023-10-06T21:14:54.1520000-07:00|40022A3F|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|730003|59C10000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|25998488|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05|000197E0|0|1| +39|2023-10-06T21:14:54.1520000-07:00|10FF0003|Gegehi Gehi|51669|51669|5750|10000|||118.49|89.01|0.00|-2.02| +35|2023-10-06T21:14:54.1520000-07:00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:14:54.1520000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.1520000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.1520000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +21|2023-10-06T21:14:54.1520000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|519C0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25998488|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|9126|10000|||102.71|95.14|0.00|-2.96|000197E1|0|1| +21|2023-10-06T21:14:54.1520000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|54D70000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25998488|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8900|10000|||108.78|88.98|0.00|-2.15|000197E2|0|1| +38|2023-10-06T21:14:54.1520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:54.1520000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|63151|56823| +35|2023-10-06T21:14:54.1960000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:53.7580000-07:00|Change|10FF0003||| +35|2023-10-06T21:14:54.2420000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.2420000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.2420000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.2420000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:54.2850000-07:00|10FF0007|Kehabiqo Febiqo|000197D6|90890|90890|10000|10000|0||83.79|95.41|0.00|2.33|1500|0|0|01|01000A90|4B|41F00000|| +26|2023-10-06T21:14:54.2850000-07:00|A90|Rekindle|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|4B|90890|57266| +22|2023-10-06T21:14:54.2860000-07:00|4002246D|Comet|8B58|Meteor Impact|10FF0008|Kokosaze Lulusaze|F1730006|22190000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|69200|69200|10000|10000|||106.00|118.00|0.00|-2.76|000197E3|0|1| +35|2023-10-06T21:14:54.2860000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.2860000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.2860000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.2860000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:54.2860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:54.2860000-07:00|8C8|Blunt Resistance Down|9.96|4002246D|Comet|10FF0008|Kokosaze Lulusaze|00|63151|69200| +38|2023-10-06T21:14:54.2860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||88.73|92.30|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:54.2860000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|57941|56823| +37|2023-10-06T21:14:54.3300000-07:00|10FF0003|Gegehi Gehi|000197D9|40616|51669|5750|10000|0||118.49|89.01|0.00|-2.02|2300|0|0|01|080008C8|0|4116041A|| +37|2023-10-06T21:14:54.3300000-07:00|10FF0007|Kehabiqo Febiqo|000197D8|73683||||||83.79|95.41|0.00|2.33| +35|2023-10-06T21:14:54.3300000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.3300000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.3300000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.3300000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:54.3300000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DF50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25998488|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197E4|0|1| +261|2023-10-06T21:14:53.8780000-07:00|Change|4002246D||||| +261|2023-10-06T21:14:53.8780000-07:00|Change|40022470||||||||| +261|2023-10-06T21:14:53.8780000-07:00|Change|10FF0004||| +37|2023-10-06T21:14:54.3740000-07:00|40022472|Zeromus|000197DA|25975397||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:54.3740000-07:00|40022472|Zeromus|000197DB|25945349||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:54.3740000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.3740000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.3740000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.3740000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.4200000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.4200000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.4200000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.4200000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:54.4200000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|73683|90890|10000|10000|||83.79|95.41|0.00|2.33|73683|90890|10000|10000|||83.79|95.41|0.00|2.33|000197E5|0|1| +20|2023-10-06T21:14:54.4200000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|118.49|89.01|0.00|-2.02| +38|2023-10-06T21:14:54.4200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|73683|90890|10000|10000|0||83.79|95.41|0.00|2.33|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:54.4200000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|90890|90890| +26|2023-10-06T21:14:54.4200000-07:00|A75|Surging Tempest|36.44|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +26|2023-10-06T21:14:54.4200000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +26|2023-10-06T21:14:54.4200000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +38|2023-10-06T21:14:54.4200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8600|10000|0||108.78|88.98|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:54.4200000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|57266|56823| +261|2023-10-06T21:14:53.9940000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:14:54.4640000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.4640000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.4640000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.4640000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:53.9940000-07:00|Change|4002246F||||||||| +37|2023-10-06T21:14:54.5090000-07:00|40022472|Zeromus|000197DD|25942438||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:54.5090000-07:00|10FF0007|Kehabiqo Febiqo|000197DD|73683|90890|10000|10000|0||83.79|95.41|0.00|2.33|1500|0|0|03|04000499|03|C1700000|||||||||| +37|2023-10-06T21:14:54.5090000-07:00|10FF000A|Dukaro Nezikaro|000197DC|48129|57941|10000|10000|0||88.73|92.30|0.00|2.40|1E00|0|0|01|080008C8|0|41160002|| +35|2023-10-06T21:14:54.5090000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.5090000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.5090000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.5090000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.5540000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.5540000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.5540000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.5540000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:54.5540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7650|10000|0||104.42|100.27|0.00|-2.93|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:54.5540000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|57078|56823| +35|2023-10-06T21:14:54.5980000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.5980000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.5980000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.5980000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:54.1090000-07:00|Change|40022470||||||||| +35|2023-10-06T21:14:54.6420000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.6420000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.6420000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.6420000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:54.6420000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|25D20000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|25942438|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7650|10000|||104.42|100.27|0.00|-2.93|000197E6|0|1| +37|2023-10-06T21:14:54.6870000-07:00|40022472|Zeromus|000197DE|25932156||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:54.6870000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.6870000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.6870000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.6870000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:54.6870000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|726003|29430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25942438|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|000197E7|0|1| +38|2023-10-06T21:14:54.6870000-07:00|10FF0003|Gegehi Gehi|005A5A23|40616|51669|5750|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:54.6870000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|51669|56823| +261|2023-10-06T21:14:54.2080000-07:00|Change|40022490||||||||| +261|2023-10-06T21:14:54.2080000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:14:54.7310000-07:00|10FF0006|Wowobora Gogobora|000197DF|45907|57266|8600|10000|0||108.78|88.98|0.00|2.29|1B00|0|0|01|030008C8|0|4116041B|| +35|2023-10-06T21:14:54.7310000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.7310000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.7310000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.7310000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:54.3030000-07:00|Change|4002246F||||||||| +261|2023-10-06T21:14:54.3030000-07:00|Change|4002246E||||||||| +21|2023-10-06T21:14:54.7760000-07:00|40022490|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|2.73|000197E8|0|0| +35|2023-10-06T21:14:54.7760000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.7760000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.7760000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.7760000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:54.3030000-07:00|Change|10FF0004||||||||||| +35|2023-10-06T21:14:54.8200000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.8200000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.8200000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.8200000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +22|2023-10-06T21:14:54.8200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|413D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25932156|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|8726|10000|||102.71|95.14|-0.02|-3.09|000197E9|0|6| +22|2023-10-06T21:14:54.8200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|33030000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|8726|10000|||102.71|95.14|-0.02|-3.09|56823|56823|8726|10000|||102.71|95.14|-0.02|-3.09|000197E9|1|6| +22|2023-10-06T21:14:54.8200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|32720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|7250|10000|||104.42|100.27|0.00|-2.93|56823|56823|8726|10000|||102.71|95.14|-0.02|-3.09|000197E9|2|6| +22|2023-10-06T21:14:54.8200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|4|30900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8600|10000|||108.78|88.98|0.00|2.29|56823|56823|8726|10000|||102.71|95.14|-0.02|-3.09|000197E9|3|6| +22|2023-10-06T21:14:54.8200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|32D10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||93.64|87.05|0.00|2.40|56823|56823|8726|10000|||102.71|95.14|-0.02|-3.09|000197E9|4|6| +22|2023-10-06T21:14:54.8200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|321B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48129|57941|10000|10000|||88.73|92.30|0.00|2.40|56823|56823|8726|10000|||102.71|95.14|-0.02|-3.09|000197E9|5|6| +38|2023-10-06T21:14:54.8200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|73683|90890|10000|10000|0||83.79|95.41|0.00|2.33|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:54.8200000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|90890|56823| +261|2023-10-06T21:14:54.3970000-07:00|Change|10FF0001||| +35|2023-10-06T21:14:54.8640000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.8640000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.8640000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.8640000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:54.8640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|89D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25932156|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||83.88|93.38|0.00|2.26|000197EA|0|1| +31|2023-10-06T21:14:54.8640000-07:00|10FF0001||||| +261|2023-10-06T21:14:54.3970000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:14:54.3970000-07:00|Change|4002246D||||||||| +37|2023-10-06T21:14:54.9080000-07:00|10FF0008|Kokosaze Lulusaze|000197E3|54422|63151|10000|10000|0||93.64|87.05|0.00|2.40|1F00|0|0|01|070008C8|0|41160833|| +35|2023-10-06T21:14:54.9080000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.9080000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.9080000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.9080000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:54.9530000-07:00|4002248F|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|-2.55|000197EB|0|0| +35|2023-10-06T21:14:54.9530000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.9530000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.9530000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.9530000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:54.9530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|7||83.88|93.38|0.00|2.26|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:54.9530000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|90349|56823| +35|2023-10-06T21:14:54.9970000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:54.9970000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:54.9970000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:54.9970000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:55.0420000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|14CC0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|40616|51669|5750|10000|||118.49|89.01|0.00|-2.02|54201|54201|10000|10000|||100.36|97.55|0.00|3.05|000197EC|0|1| +35|2023-10-06T21:14:55.0420000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +261|2023-10-06T21:14:54.5820000-07:00|Change|4002246E||||||||| +35|2023-10-06T21:14:55.0420000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.0420000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.0420000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:55.0870000-07:00|40022472|Zeromus|000197E4|25928583||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:55.0870000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.0870000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.0870000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.0870000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:55.0870000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25932156|40478540|10000|10000|||100.00|80.10|0.00|0.00|48129|57941|10000|10000|||88.73|92.30|0.00|2.40|000197ED|0|1| +261|2023-10-06T21:14:54.5820000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:14:54.5820000-07:00|Change|10FF0009||||||||||||||||||||||| +35|2023-10-06T21:14:55.1310000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.1310000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.1310000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.1310000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:54.7000000-07:00|Change|4002246D||||||||| +37|2023-10-06T21:14:55.1750000-07:00|10FF0007|Kehabiqo Febiqo|000197E5|73683|90890|10000|10000|0||83.84|95.43|0.00|1.88|1500|0|0|03|04000499|03|41700000|||||||||| +21|2023-10-06T21:14:55.1750000-07:00|4002248E|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|3.05|000197EE|0|0| +35|2023-10-06T21:14:55.1750000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.1750000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.1750000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.1750000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:55.1750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|73683|90890|10000|10000|0||83.84|95.43|0.00|1.88|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:55.2200000-07:00|40022472|Zeromus|000197E2|25906864||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:55.2200000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|AB4|54422|63151|10000|10000|||93.64|87.05|0.00|2.40|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.78| +35|2023-10-06T21:14:55.2200000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.2200000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.2200000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.2200000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:55.2200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|57162|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:55.2640000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A56|48129|57941|10000|10000|||88.73|92.30|0.00|2.40|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.63| +35|2023-10-06T21:14:55.2640000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.2640000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.2640000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.2640000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:55.2640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50775|57941|10000|10000|0||88.73|92.30|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:54.8150000-07:00|Change|4002248D||||||||| +24|2023-10-06T21:14:55.3100000-07:00|10FF0003|Gegehi Gehi|HoT|0|1869|40616|51669|5750|10000|||118.49|89.01|0.00|-2.02|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.63| +35|2023-10-06T21:14:55.3100000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.3100000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.3100000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.3100000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:55.3100000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|4D620000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|25906864|40478540|10000|10000|||100.00|80.10|0.00|0.00|48129|57941|10000|10000|||88.73|92.30|0.00|2.40|000197EF|0|1| +38|2023-10-06T21:14:55.3100000-07:00|10FF0003|Gegehi Gehi|005A5A23|46865|51669|5750|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:14:55.3540000-07:00|4002248D|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|-2.76|000197F0|0|0| +35|2023-10-06T21:14:55.3540000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.3540000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.3540000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:55.3540000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:55.3980000-07:00|40022472|Zeromus|000197EA|25904659||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:55.3980000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1188|57078|57078|7250|10000|||106.32|99.14|0.00|2.13|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.44| +35|2023-10-06T21:14:55.3980000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.3980000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.3980000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:55.3980000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:55.3980000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7250|10000|0||106.32|99.14|0.00|2.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:55.4430000-07:00|40022472|Zeromus|000197E1|25883767||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:55.4430000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.4430000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.4430000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:55.4430000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:55.4870000-07:00|40022472|Zeromus|000197E9|25867066||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:55.4870000-07:00|40022472|Zeromus|000197E7|25856503||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:55.4870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A0F|73683|90890|10000|10000|||84.92|95.60|0.00|1.48|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.25| +24|2023-10-06T21:14:55.4870000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1772|45907|57266|8600|10000|||108.78|88.98|0.00|1.47|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.25| +35|2023-10-06T21:14:55.4870000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.4870000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.4870000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:55.4870000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:55.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|76258|90890|10000|10000|0||84.92|95.60|0.00|1.48|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:55.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51909|57266|8600|10000|0||108.78|88.98|0.00|1.47|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:55.5320000-07:00|10FF0009|Zewo Negiwo|HoT|0|132A|56823|56823|8726|10000|||103.78|95.22|0.00|2.27|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.25| +35|2023-10-06T21:14:55.5320000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.5320000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.5320000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:55.5320000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:55.5320000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|370D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25904659|40478540|10000|10000|||100.00|80.10|0.00|0.00|57162|63151|10000|10000|||93.64|87.05|0.00|1.20|000197F1|0|1| +38|2023-10-06T21:14:55.5320000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|8726|10000|0||103.78|95.22|0.00|2.27|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:55.5320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|57162|63151|10000|10000|0||93.64|87.05|0.00|1.20|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:55.5320000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +37|2023-10-06T21:14:55.5780000-07:00|40022472|Zeromus|000197E6|25846821||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:14:55.5780000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|107D|90349|90349|9200|10000|||84.66|93.64|0.00|0.66|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.10| +35|2023-10-06T21:14:55.5780000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.5780000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.5780000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:55.5780000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:55.5780000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25856503|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7250|10000|||107.48|98.57|0.00|2.08|000197F2|0|1| +38|2023-10-06T21:14:55.5780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|7||84.66|93.64|0.00|0.66|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:14:55.6210000-07:00|10FF0009|Zewo Negiwo|000197E9|56823|56823|9226|10000|0||104.51|95.30|0.00|1.91|1801|0|0|0| +37|2023-10-06T21:14:55.6210000-07:00|40022472|Zeromus|000197ED|25844766||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:55.6220000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.6220000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.6220000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:55.6220000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:55.6220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|57162|63151|10000|10000|0||93.64|87.05|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:55.6220000-07:00|9D6|Bind|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +38|2023-10-06T21:14:55.6220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51909|57266|8600|10000|0||108.78|88.98|0.00|1.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:55.6220000-07:00|9D6|Bind|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:14:55.6220000-07:00|10FF0003|Gegehi Gehi|005A5A23|46865|51669|5750|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:55.6220000-07:00|9D6|Bind|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:14:55.6220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50775|57941|10000|10000|0||88.73|92.30|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:55.6220000-07:00|9D6|Bind|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +35|2023-10-06T21:14:55.6660000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.6660000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.6660000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:55.6660000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +39|2023-10-06T21:14:55.7110000-07:00|40022A52|Demi-Phoenix|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20| +35|2023-10-06T21:14:55.7110000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:14:55.7110000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.7110000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:55.7110000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.7550000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:55.7550000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.7550000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:55.7550000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:55.3460000-07:00|Change|10FF0004||||||||| +35|2023-10-06T21:14:55.8000000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:55.8000000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.8000000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:55.8000000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:55.8450000-07:00|10FF0003|Gegehi Gehi|000197EC|51669||||||118.49|89.01|0.00|-2.02| +37|2023-10-06T21:14:55.8450000-07:00|40022472|Zeromus|000197EF|25824956||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:55.8450000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:55.8450000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.8450000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:55.8450000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +21|2023-10-06T21:14:55.8450000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|756003|40330000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|25844766|40478540|10000|10000|||100.00|80.10|0.00|0.00|46865|51669|5750|10000|||118.49|89.01|0.00|-2.02|000197F3|0|1| +38|2023-10-06T21:14:55.8450000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5550|10000|0||118.49|89.01|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:55.8450000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:14:55.4420000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:14:55.8890000-07:00|10FF0006|Wowobora Gogobora|000197E9|57266||||||108.78|88.98|0.00|0.33| +35|2023-10-06T21:14:55.8900000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:55.8900000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.8900000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:55.8900000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.9340000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:55.9340000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.9340000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:55.9340000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:55.9790000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:55.9790000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:14:55.9790000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:55.9790000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +37|2023-10-06T21:14:56.0230000-07:00|10FF0008|Kokosaze Lulusaze|000197E9|63151||||||93.65|87.09|0.00|0.61| +35|2023-10-06T21:14:56.0230000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.0230000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.0230000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.0230000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:56.0680000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.0680000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.0680000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.0680000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +261|2023-10-06T21:14:55.6590000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:14:55.6590000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:14:56.1110000-07:00|40022472|Zeromus|000197E0|25801979||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:56.1110000-07:00|40022472|Zeromus|000197F2|25801833||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:14:56.1110000-07:00|40022A52|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|154003|191E0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|25824956|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20|000197F4|0|1| +35|2023-10-06T21:14:56.1120000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.1120000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.1120000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.1120000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +38|2023-10-06T21:14:56.1120000-07:00|40022A3F|Automaton Queen|005A5A00|59967|59967|10000|10000|0||102.10|103.01|0.00|-3.05|0|0|0||||||| +30|2023-10-06T21:14:56.1120000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022A3F|Automaton Queen|01|59967|40478540| +37|2023-10-06T21:14:56.1560000-07:00|10FF000A|Dukaro Nezikaro|000197E9|57941||||||88.73|92.30|0.00|2.40| +37|2023-10-06T21:14:56.1560000-07:00|40022472|Zeromus|000197F1|25787740||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:56.1560000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.1560000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.1560000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.1560000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FC|||| +35|2023-10-06T21:14:56.2010000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.2010000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.2010000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.2010000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:56.2010000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7C480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25787740|40478540|10000|10000|||100.00|80.10|0.00|0.00|76258|90890|10000|10000|||89.61|96.21|0.00|1.46|000197F5|0|1| +38|2023-10-06T21:14:56.2010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|76258|90890|10000|10000|0||89.61|96.21|0.00|1.46|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:56.2010000-07:00|499|Inner Release|13.93|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|90890|90890| +35|2023-10-06T21:14:56.2460000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.2460000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.2460000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.2460000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:56.2460000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|13730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25787740|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.67|87.16|0.00|0.30|000197F6|0|1| +21|2023-10-06T21:14:56.2460000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|710003|54600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25787740|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||87.04|96.50|0.00|0.48|000197F7|0|1| +261|2023-10-06T21:14:55.8870000-07:00|Change|10FF0001||||||||| +35|2023-10-06T21:14:56.2910000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.2910000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.2910000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.2910000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:56.3350000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.3350000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.3350000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.3350000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:56.3790000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.3790000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.3790000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.3790000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:56.4240000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.4240000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.4240000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.4240000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:56.4690000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.4690000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.4690000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.4690000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +39|2023-10-06T21:14:56.5130000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|2.42| +35|2023-10-06T21:14:56.5130000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.5130000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.5130000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.5130000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:56.5580000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.5580000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.5580000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.5580000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:56.5580000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E6C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|76258|90890|10000|10000|||91.58|96.36|0.00|2.18|25787740|40478540|10000|10000|||100.00|80.10|0.00|0.00|000197F8|0|1| +21|2023-10-06T21:14:56.5580000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25787740|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8600|10000|||107.77|92.14|0.00|-0.25|000197F9|0|1| +37|2023-10-06T21:14:56.6020000-07:00|40022472|Zeromus|000197F3|25771305||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:56.6020000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.6020000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.6020000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.6020000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:56.6460000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.6460000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.6460000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.6460000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:56.6910000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.6910000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.6910000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.6910000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:56.6910000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|154003|71A50000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25787740|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8600|10000|||107.55|92.82|0.00|-0.33|000197FA|0|1| +261|2023-10-06T21:14:56.2120000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:14:56.2120000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:14:56.7360000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||93.75|87.84|0.00|1.53| +35|2023-10-06T21:14:56.7360000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.7360000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.7360000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.7360000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +37|2023-10-06T21:14:56.7800000-07:00|40022472|Zeromus|000197F7|25749705||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:56.7800000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|10000|10000|||88.73|92.30|0.00|2.40| +24|2023-10-06T21:14:56.7800000-07:00|40022472|Zeromus|DoT|0|1E9F|25771305|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T21:14:56.7800000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.7800000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.7800000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.7800000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +38|2023-10-06T21:14:56.7800000-07:00|40022472|Zeromus|005A5A00|25741866|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:56.7800000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:14:56.8250000-07:00|40022472|Zeromus|000197F5|25710050||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:56.8250000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.8250000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.8250000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.8250000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +37|2023-10-06T21:14:56.8700000-07:00|40022472|Zeromus|000197F6|25705071||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:56.8700000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.8700000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.8700000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.8700000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:56.8700000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|25E80000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|25741866|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5550|10000|||117.05|92.42|0.00|-0.41|000197FB|0|1| +36|2023-10-06T21:14:56.8700000-07:00|3EE4|3| +38|2023-10-06T21:14:56.8700000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5250|10000|0||117.05|92.42|0.00|-0.41|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:56.8700000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:14:56.8700000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:14:56.4020000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:14:56.9140000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|7450|10000|||114.51|95.07|0.00|2.14| +35|2023-10-06T21:14:56.9140000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.9140000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.9140000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.9140000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:56.9590000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:56.9590000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:56.9590000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:56.9590000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +39|2023-10-06T21:14:57.0030000-07:00|10FF0007|Kehabiqo Febiqo|77166|90890|10000|10000|||94.26|95.65|0.00|1.90| +39|2023-10-06T21:14:57.0030000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8500|10000|||106.25|94.12|0.00|-1.42| +35|2023-10-06T21:14:57.0030000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:57.0030000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.0030000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FE|||| +35|2023-10-06T21:14:57.0030000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:57.0030000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25705071|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.92|89.12|0.00|1.60|000197FC|0|1| +261|2023-10-06T21:14:56.6240000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:14:57.0480000-07:00|10FF0009|Zewo Negiwo|56823|56823|9447|10000|||108.13|91.66|0.00|-0.26| +35|2023-10-06T21:14:57.0480000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FC|||| +35|2023-10-06T21:14:57.0480000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.0480000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.0480000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +37|2023-10-06T21:14:57.0930000-07:00|40022472|Zeromus|000197F9|25704921||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:57.0930000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9400|10000|||90.51|97.37|0.00|0.30| +35|2023-10-06T21:14:57.0930000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.0930000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.0940000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.0940000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:57.0940000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|726003|B74B0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|25705071|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||94.06|90.15|0.00|1.14|000197FD|0|1| +261|2023-10-06T21:14:56.6240000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:14:57.1380000-07:00|40022472|Zeromus|000197F4|25698491||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:57.1390000-07:00|40022A3F|Automaton Queen|59967|59967|10000|10000|||102.10|103.01|0.00|-3.05| +35|2023-10-06T21:14:57.1390000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.1390000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.1390000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.1390000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:57.1390000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|10680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25705071|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||90.51|97.37|0.00|0.30|000197FE|0|1| +31|2023-10-06T21:14:57.1390000-07:00|10FF0001||||| +39|2023-10-06T21:14:57.1820000-07:00|10FF0003|Gegehi Gehi|51669|51669|5450|10000|||116.79|93.21|0.00|-2.24| +35|2023-10-06T21:14:57.1820000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.1820000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.1820000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.1820000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:57.2270000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.2270000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.2270000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.2270000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +261|2023-10-06T21:14:56.8570000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:14:57.2710000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.2710000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.2710000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.2710000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:57.2710000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25698491|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||88.57|92.20|0.00|-3.10|000197FF|0|1| +35|2023-10-06T21:14:57.3150000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.3150000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.3150000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.3150000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +261|2023-10-06T21:14:56.8570000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:14:57.3610000-07:00|10FF0007|Kehabiqo Febiqo|000197F8|61186|90890|10000|10000|0||95.97|94.63|0.00|2.04|1500|0|0|01|01000A90|4B|0|| +35|2023-10-06T21:14:57.3610000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.3610000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.3610000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.3610000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:57.3610000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B7B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25698491|40478540|10000|10000|||100.00|80.10|0.00|0.00|77166|90890|10000|10000|||95.97|94.63|0.00|2.04|00019800|0|1| +38|2023-10-06T21:14:57.3610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|0||105.55|94.62|0.00|-1.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:57.3610000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|57266|57266| +21|2023-10-06T21:14:57.3610000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|754003|296E0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|25698491|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||105.55|94.62|0.00|-1.04|00019801|0|1| +38|2023-10-06T21:14:57.3610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|61186|90890|10000|10000|0||95.97|94.63|0.00|2.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:57.3610000-07:00|A90|Rekindle|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|4B|90890|57266| +26|2023-10-06T21:14:57.3610000-07:00|A91|Undying Flame|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|90890|57266| +38|2023-10-06T21:14:57.3610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|0||105.55|94.62|0.00|-1.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:57.3610000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +35|2023-10-06T21:14:57.4050000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.4050000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.4050000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.4050000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:57.4490000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.4490000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.4490000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.4490000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +21|2023-10-06T21:14:57.4490000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25698491|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5450|10000|||116.50|94.32|0.00|-1.45|00019802|0|1| +35|2023-10-06T21:14:57.4930000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.4930000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.4930000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.4930000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:57.5380000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.5380000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.5380000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.5380000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +35|2023-10-06T21:14:57.5810000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.5810000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.5810000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.5810000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +37|2023-10-06T21:14:57.6270000-07:00|40022472|Zeromus|000197FB|25688787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:57.6270000-07:00|10FF0003|Gegehi Gehi|000197FB|51669|51669|5450|10000|0||116.13|95.71|0.00|-0.76|2300|0|0|01|090004D3|0|41F00000|| +35|2023-10-06T21:14:57.6270000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.6270000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.6270000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.6270000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +38|2023-10-06T21:14:57.6270000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5450|10000|0||116.13|95.71|0.00|-0.76|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:14:57.1870000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:14:57.6710000-07:00|40022472|Zeromus|000197FE|25684587||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:57.6710000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.6710000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.6710000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.6710000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FD|||| +261|2023-10-06T21:14:57.2820000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:14:57.2820000-07:00|Change|10FF0004||||||||| +35|2023-10-06T21:14:57.7150000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.7150000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.7150000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.7150000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +20|2023-10-06T21:14:57.7150000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|107.99|93.32|0.00|-0.49| +20|2023-10-06T21:14:57.7150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|116.00|93.30|0.00|2.38| +38|2023-10-06T21:14:57.7150000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5450|10000|0||116.13|95.71|0.00|-0.76|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:57.7150000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51669|54201| +37|2023-10-06T21:14:57.7600000-07:00|40022472|Zeromus|000197FC|25681792||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:57.7600000-07:00|40022472|Zeromus|000197FA|25652699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:57.7600000-07:00|10FF0006|Wowobora Gogobora|000197FA|57266|57266|8500|10000|0||103.26|95.43|0.00|-2.36|1B00|0|0|01|04000A8D|0|C2700000|| +35|2023-10-06T21:14:57.7600000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.7600000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.7600000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.7600000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:57.8040000-07:00|40022472|Zeromus|000197FF|25649983||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:57.8040000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.8040000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.8040000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.8040000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.8490000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.8490000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.8490000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.8490000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:57.8490000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25684587|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||94.19|94.68|0.00|0.59|00019803|0|1| +38|2023-10-06T21:14:57.8490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|61186|90890|10000|10000|0||97.61|92.61|0.00|2.43|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:57.8490000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|54201| +37|2023-10-06T21:14:57.8940000-07:00|40022472|Zeromus|00019800|25647044||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:57.8940000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.8940000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.8940000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.8940000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:14:57.4750000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:14:57.4750000-07:00|Change|10FF0003||||||||||| +35|2023-10-06T21:14:57.9390000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.9390000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.9390000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.9390000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:57.9830000-07:00|40022472|Zeromus|00019802|25647043||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:14:57.5660000-07:00|Change|10FF0004||||||||||||||||||||| +35|2023-10-06T21:14:57.9840000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:57.9840000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:57.9840000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:57.9840000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:57.9840000-07:00|40022A52|Demi-Phoenix|005A5A00|54388|54388|10000|10000|0||110.89|88.00|0.00|-2.20|0|0|0|||||||||| +26|2023-10-06T21:14:57.9840000-07:00|30|Well Fed|1575.28|10FF0006|Wowobora Gogobora|40022A52|Demi-Phoenix|2964|54388|57266| +26|2023-10-06T21:14:57.9840000-07:00|441|HP Penalty|9999.00|E0000000||40022A52|Demi-Phoenix|00|54388|| +26|2023-10-06T21:14:57.9840000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022A52|Demi-Phoenix|01|54388|40478540| +21|2023-10-06T21:14:57.9840000-07:00|10FF0006|Wowobora Gogobora|4084|Enkindle Phoenix|40022472|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|25647043|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||101.82|96.23|0.00|-1.99|00019804|0|1| +38|2023-10-06T21:14:57.9840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||89.40|88.00|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:57.9840000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|57941|54201| +35|2023-10-06T21:14:58.0280000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.0280000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.0280000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.0280000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:58.0730000-07:00|40022A52|Demi-Phoenix|4086|Revelation|40022472|Zeromus|150003|A2110000|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|25647043|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20|00019805|0|1| +35|2023-10-06T21:14:58.0730000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.0730000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.0730000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.0730000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:58.1180000-07:00|40022472|Zeromus|000197FD|25600120||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:58.1180000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.1180000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.1180000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.1180000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:58.1180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|0||101.82|96.23|0.00|-1.99|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:58.1180000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +261|2023-10-06T21:14:57.6560000-07:00|Change|10FF0009||||||||||||||||||||| +35|2023-10-06T21:14:58.1620000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.1620000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.1620000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.1620000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +24|2023-10-06T21:14:58.2060000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|11CF|63151|63151|10000|10000|||93.21|96.35|0.00|1.22|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +35|2023-10-06T21:14:58.2060000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.2060000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.2060000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.2060000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:58.2060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.21|96.35|0.00|1.22|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:14:58.2510000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|151C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|61186|90890|10000|10000|||98.09|91.27|0.00|2.64|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019806|0|1| +35|2023-10-06T21:14:58.2510000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.2510000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.2510000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.2510000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:58.2510000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19712003|46C30000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|25600120|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||89.49|87.60|0.00|1.78|00019807|0|1| +38|2023-10-06T21:14:58.2510000-07:00|40022472|Zeromus|005A5A00|25600120|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:58.2510000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|57941| +38|2023-10-06T21:14:58.2510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9400|10000|7||90.49|96.34|0.00|-2.86|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:58.2510000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|54201| +38|2023-10-06T21:14:58.2510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||89.49|87.60|0.00|1.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:14:58.2510000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +24|2023-10-06T21:14:58.2960000-07:00|10FF0003|Gegehi Gehi|HoT|0|899|51669|51669|5450|10000|||115.01|99.73|0.00|-0.30|10FF0003|Gegehi Gehi|0|51669|51669|5450|10000|||115.01|99.73|0.00|-0.30| +35|2023-10-06T21:14:58.2960000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.2960000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.2960000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.2960000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:58.2960000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5450|10000|0||115.01|99.73|0.00|-0.30|0|0|0||||||||||||||||||||||||||||||| +35|2023-10-06T21:14:58.3410000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.3410000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.3410000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.3410000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:58.3850000-07:00|40022472|Zeromus|00019801|25589514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +37|2023-10-06T21:14:58.3850000-07:00|10FF0006|Wowobora Gogobora|00019801|57266|57266|8500|10000|0||101.10|96.44|0.00|-2.66|1B00|0|0|01|04000A8D|0|42700000|| +24|2023-10-06T21:14:58.3850000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|AB9|57078|57078|7450|10000|||116.01|93.28|0.00|-2.26|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.09| +35|2023-10-06T21:14:58.3850000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.3850000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.3850000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.3850000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:58.3850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.12|96.59|0.00|0.52|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:14:58.3850000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|54201| +38|2023-10-06T21:14:58.3850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|0||101.10|96.44|0.00|-2.66|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:58.3850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7450|10000|0||116.01|93.28|0.00|-2.26|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:14:58.4300000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.4300000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.4300000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.4300000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:14:58.0110000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:14:58.4770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|13D3|61186|90890|10000|10000|||98.14|91.08|0.00|2.69|10FF0007|Kehabiqo Febiqo|0|61186|90890|10000|10000|||98.14|91.08|0.00|2.69| +24|2023-10-06T21:14:58.4770000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D8B|57266|57266|8500|10000|||101.10|96.44|0.00|-2.66|E0000000||0||||||||||| +35|2023-10-06T21:14:58.4770000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.4770000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.4770000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.4770000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:58.4770000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25589514|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.18|96.57|0.00|2.76|00019808|0|1| +38|2023-10-06T21:14:58.4770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|66261|90890|10000|10000|0||98.13|90.93|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:58.4770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|0||100.98|96.47|0.00|-2.88|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:14:58.5200000-07:00|10FF0009|Zewo Negiwo|HoT|0|1FCE|56823|56823|9447|10000|||107.99|93.64|0.00|-2.61|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.01| +35|2023-10-06T21:14:58.5200000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.5200000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.5200000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.5200000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:58.5200000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9447|10000|0||107.99|93.64|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:14:58.5200000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7450|10000|0||116.01|93.28|0.00|-2.26|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:58.5200000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +35|2023-10-06T21:14:58.5650000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.5650000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.5650000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.5650000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:58.6080000-07:00|40022472|Zeromus|00019804|25589514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +35|2023-10-06T21:14:58.6080000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.6080000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.6080000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.6080000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:58.6530000-07:00|40022472|Zeromus|00019803|25584322|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +35|2023-10-06T21:14:58.6530000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.6530000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.6530000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.6530000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:58.6530000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|74D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25589514|40478540|10000|10000|||100.00|80.10|0.00|0.00|66261|90890|10000|10000|||98.13|90.78|0.00|2.72|00019809|0|1| +21|2023-10-06T21:14:58.6530000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32C20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25589514|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|9447|10000|||107.99|93.64|0.00|-2.61|0001980A|0|1| +21|2023-10-06T21:14:58.6530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|323C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25589514|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7450|10000|||116.01|93.28|0.00|-2.26|0001980B|0|1| +38|2023-10-06T21:14:58.6530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|66261|90890|10000|10000|0||98.13|90.78|0.00|2.72|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:58.6530000-07:00|499|Inner Release|11.48|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|90890|90890| +38|2023-10-06T21:14:58.6530000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9047|10000|0||107.99|93.64|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:14:58.6530000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|56823|54201| +35|2023-10-06T21:14:58.6970000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.6970000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.6970000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.6970000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +39|2023-10-06T21:14:58.7420000-07:00|40022A52|Demi-Phoenix|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20| +35|2023-10-06T21:14:58.7420000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.7420000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.7420000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.7420000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:14:58.3100000-07:00|Change|10FF0003||||||||| +35|2023-10-06T21:14:58.7860000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.7860000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.7860000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.7860000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:58.7860000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|750003|59010000|200004|3DFF8000|0|0|0|0|0|0|0|0|0|0|0|0|25584322|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9400|10000|||90.48|96.30|0.00|2.61|0001980C|0|1| +261|2023-10-06T21:14:58.3100000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:14:58.7860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8400|10000|7||90.48|96.30|0.00|2.61|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:58.7860000-07:00|558|Requiescat|24.47|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +31|2023-10-06T21:14:58.7860000-07:00|10FF0001||||| +35|2023-10-06T21:14:58.8310000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.8310000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.8310000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.8310000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.8750000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.8750000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.8750000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.8750000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.9190000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.9190000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.9190000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.9190000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.9650000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:58.9650000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:58.9650000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:58.9650000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:58.9650000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||89.59|87.39|0.00|2.18|57941|57941|10000|10000|||89.59|87.39|0.00|2.18|0001980D|0|1| +38|2023-10-06T21:14:58.9650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||89.59|87.39|0.00|2.18|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:58.9650000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +35|2023-10-06T21:14:59.0090000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.0090000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.0090000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.0090000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:14:58.4910000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:14:59.0540000-07:00|10FF0007|Kehabiqo Febiqo|00019806|71665||||||98.13|90.53|-0.01|2.97| +37|2023-10-06T21:14:59.0540000-07:00|40022472|Zeromus|00019807|25566207|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|41700000|| +37|2023-10-06T21:14:59.0540000-07:00|10FF000A|Dukaro Nezikaro|00019807|57941|57941|10000|10000|0||89.59|87.39|0.00|2.18|1E00|0|0|01|030001F1|0|C1700000|| +35|2023-10-06T21:14:59.0540000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.0540000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.0540000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.0540000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:59.0540000-07:00|40022472|Zeromus|005A5A00|25566207|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:14:59.0540000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:14:59.0980000-07:00|40022472|Zeromus|00019805|25524718||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:59.0980000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.0980000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.0980000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.0980000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:59.0980000-07:00|40022A52|Demi-Phoenix|005A5A00|54388|54388|10000|10000|0||110.89|88.00|0.00|-2.20|0|0|0||||||| +30|2023-10-06T21:14:59.0980000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022A52|Demi-Phoenix|01|54388|40478540| +37|2023-10-06T21:14:59.1430000-07:00|40022472|Zeromus|00019808|25519387||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:59.1430000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.1430000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.1430000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.1430000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:59.1430000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|58FF0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25584322|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||100.86|96.37|0.00|3.03|0001980E|0|1| +261|2023-10-06T21:14:58.7150000-07:00|Change|10FF0009||||||||||||||||||| +35|2023-10-06T21:14:59.1880000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.1880000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.1880000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.1880000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:14:58.7150000-07:00|Change|40022A3F||||||||| +35|2023-10-06T21:14:59.2320000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.2320000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.2320000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.2320000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:59.2760000-07:00|40022472|Zeromus|00019809|25489477||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:59.2760000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.2760000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.2760000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.2760000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +20|2023-10-06T21:14:59.2760000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|113.24|104.35|-0.01|-0.45| +35|2023-10-06T21:14:59.3190000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.3190000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.3190000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.3190000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.3640000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.3640000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.3640000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.3640000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:59.4090000-07:00|40022472|Zeromus|0001980C|25466692||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:59.4090000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.4090000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.4090000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.4090000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:59.4090000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8D50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25489477|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8400|10000|||90.48|96.30|0.00|2.61|0001980F|0|1| +31|2023-10-06T21:14:59.4090000-07:00|10FF0001||||| +37|2023-10-06T21:14:59.4530000-07:00|40022472|Zeromus|0001980B|25453832||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:14:59.4530000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.4530000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.4530000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.4530000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:59.4530000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|11B70000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|25489477|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8400|10000|||90.48|96.30|0.00|2.61|00019810|0|1| +21|2023-10-06T21:14:59.4530000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25489477|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||89.59|87.39|0.00|2.03|00019811|0|1| +35|2023-10-06T21:14:59.4970000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.4970000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.4970000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.4970000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:14:59.0590000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:14:59.5420000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-2.89| +35|2023-10-06T21:14:59.5420000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.5420000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.5420000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.5420000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.5870000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.5870000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.5870000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.5870000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:59.5870000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41F10000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|71665|90890|10000|10000|||98.13|90.50|0.00|2.97|25453832|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019812|0|1| +35|2023-10-06T21:14:59.6320000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.6320000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.6320000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.6320000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:59.6320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8400|10000|7||90.48|96.30|0.00|2.61|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:59.6320000-07:00|9D6|Bind|3.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:14:59.6320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7050|10000|0||116.01|93.28|0.00|-2.26|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:59.6320000-07:00|9D6|Bind|3.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:14:59.6320000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9047|10000|0||107.99|93.64|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:59.6320000-07:00|9D6|Bind|3.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +38|2023-10-06T21:14:59.6320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|71665|90890|10000|10000|0||98.13|90.50|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:14:59.6320000-07:00|9D6|Bind|3.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +21|2023-10-06T21:14:59.6320000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|463B0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|25453832|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.67|95.16|-0.02|3.05|00019813|0|1| +35|2023-10-06T21:14:59.6760000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.6760000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.6760000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.6760000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:59.6760000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25453832|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.67|95.16|-0.02|3.05|00019814|0|1| +39|2023-10-06T21:14:59.7210000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||93.69|94.74|0.00|2.71| +35|2023-10-06T21:14:59.7210000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.7210000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.7210000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.7210000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:14:59.7210000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25453832|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8200|10000|||100.85|96.36|0.00|-3.09|00019815|0|1| +21|2023-10-06T21:14:59.7210000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25453832|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7050|10000|||116.01|93.28|0.00|-2.26|00019816|0|1| +21|2023-10-06T21:14:59.7210000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||89.75|87.34|0.00|1.39|57941|57941|10000|10000|||89.75|87.34|0.00|1.39|00019817|0|1| +38|2023-10-06T21:14:59.7210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||89.75|87.34|0.00|1.39|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:14:59.7210000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|57941|57941| +39|2023-10-06T21:14:59.7650000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|10000|10000|||89.75|87.34|0.00|1.39| +24|2023-10-06T21:14:59.7650000-07:00|40022472|Zeromus|DoT|0|16BD|25453832|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +35|2023-10-06T21:14:59.7650000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +261|2023-10-06T21:14:59.3330000-07:00|Change|10FF0003||||||||||||||||||||| +35|2023-10-06T21:14:59.7650000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.7650000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.7650000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:59.7650000-07:00|40022472|Zeromus|005A5A00|25448011|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +35|2023-10-06T21:14:59.8080000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.8080000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.8080000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.8080000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:59.8540000-07:00|10FF000A|Dukaro Nezikaro|00019817|57941|57941|10000|10000|0||89.88|87.27|0.00|1.07|1E00|0|0|01|030001F1|0|C1700000|| +35|2023-10-06T21:14:59.8540000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.8540000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.8540000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.8540000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +36|2023-10-06T21:14:59.8540000-07:00|3FC0|3| +39|2023-10-06T21:14:59.8990000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|7250|10000|||116.01|93.28|0.00|-2.26| +35|2023-10-06T21:14:59.8990000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.8990000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.8990000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.8990000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:14:59.9430000-07:00|40022472|Zeromus|0001980A|25435017||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:59.9430000-07:00|40022472|Zeromus|0001980F|25432756||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:14:59.9430000-07:00|10FF000A|Dukaro Nezikaro|0001980D|57941|57941|10000|10000|0||90.02|87.20|0.00|1.07|1E00|0|0|01|030001F1|0|41700000|| +35|2023-10-06T21:14:59.9430000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.9430000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.9430000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.9430000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:14:59.9430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||90.02|87.20|0.00|1.07|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:14:59.9870000-07:00|40022472|Zeromus|00019811|25429870||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:14:59.9870000-07:00|10FF0007|Kehabiqo Febiqo|72573|90890|10000|10000|||98.13|90.50|0.00|2.97| +39|2023-10-06T21:14:59.9870000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8400|10000|||100.85|96.36|0.00|-3.09| +35|2023-10-06T21:14:59.9870000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:14:59.9870000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:14:59.9870000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:14:59.9870000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:14:59.5190000-07:00|Change|10FF0004||| +39|2023-10-06T21:15:00.0330000-07:00|10FF0009|Zewo Negiwo|56823|56823|9268|10000|||107.99|93.64|0.00|-2.61| +35|2023-10-06T21:15:00.0330000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.0330000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.0330000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.0330000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +39|2023-10-06T21:15:00.0770000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8600|10000|||90.48|96.30|0.00|2.61| +35|2023-10-06T21:15:00.0770000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.0770000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.0770000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.0770000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:00.1220000-07:00|40022A52|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|150003|14200000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|25429870|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20|00019818|0|1| +35|2023-10-06T21:15:00.1220000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.1220000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.1220000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.1220000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +20|2023-10-06T21:15:00.1220000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|107.99|93.64|0.00|-2.61| +20|2023-10-06T21:15:00.1220000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|116.01|93.28|0.00|-2.26| +39|2023-10-06T21:15:00.1670000-07:00|10FF0003|Gegehi Gehi|51669|51669|5650|10000|||113.24|104.36|0.00|-2.64| +35|2023-10-06T21:15:00.1670000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.1670000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.1670000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.1670000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:14:59.7060000-07:00|Change|10FF0001||| +261|2023-10-06T21:14:59.7060000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:15:00.2120000-07:00|40022472|Zeromus|0001980E|25407087||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:15:00.2120000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.2120000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.2120000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.2120000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:00.2120000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||90.14|87.14|0.00|1.07|57941|57941|10000|10000|||90.14|87.14|0.00|1.07|00019819|0|1| +38|2023-10-06T21:15:00.2120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||90.14|87.14|0.00|1.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:00.2120000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|57941|57941| +37|2023-10-06T21:15:00.2550000-07:00|40022472|Zeromus|00019815|25406936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:00.2550000-07:00|40022472|Zeromus|00019816|25406786||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:15:00.2550000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.2550000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.2550000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.2550000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:00.2550000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|38C80000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|25429870|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8600|10000|||90.48|96.30|0.00|2.61|0001981A|0|1| +35|2023-10-06T21:15:00.3000000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.3000000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.3000000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.3000000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:00.3000000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|5D0F|A788000|0|0|0|0|0|0|0|0|0|0|72573|90890|10000|10000|||98.13|90.50|0.00|2.97|72573|90890|10000|10000|||98.13|90.50|0.00|2.97|0001981B|0|1| +35|2023-10-06T21:15:00.3440000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.3440000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.3440000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.3440000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:15:00.3890000-07:00|10FF0007|Kehabiqo Febiqo|00019812|55692||||||98.13|90.50|0.00|2.97| +35|2023-10-06T21:15:00.3890000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.3890000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.3890000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.3890000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:15:00.4340000-07:00|40022472|Zeromus|00019813|25388807||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:00.4340000-07:00|40022472|Zeromus|00019814|25386454||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:15:00.4340000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.4340000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.4340000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.4340000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:15:00.4790000-07:00|40022472|Zeromus|00019810|25381919|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T21:15:00.4790000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +35|2023-10-06T21:15:00.4790000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.4790000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.4790000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.4790000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:15:00.0590000-07:00|Change|10FF0006||| +35|2023-10-06T21:15:00.5220000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.5220000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.5220000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.5220000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.5680000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.5680000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.5680000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.5680000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:15:00.6120000-07:00|40022472|Zeromus|0001981A|25367383||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:00.6120000-07:00|10FF0001|Sesuga Sapisuga|0001981A|90349|90349|9100|10000|7||90.48|96.30|0.00|2.61|1300|0|0|0| +35|2023-10-06T21:15:00.6120000-07:00|4002246C|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FD|||| +35|2023-10-06T21:15:00.6120000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.6120000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.6120000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.6570000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.6570000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.6570000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.7000000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.7000000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.7000000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:00.7000000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|450003|24A30000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|25367383|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5650|10000|||113.24|104.36|0.00|-2.64|0001981C|0|1| +38|2023-10-06T21:15:00.7000000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5450|10000|0||113.24|104.36|0.00|-2.64|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:00.7000000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +30|2023-10-06T21:15:00.7000000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +22|2023-10-06T21:15:00.7470000-07:00|4002246C|Comet|8B58|Meteor Impact|10FF0001|Sesuga Sapisuga|730603|78AA4004|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|90349|90349|9100|10000|||90.48|96.30|0.00|2.61|69200|69200|10000|10000|||94.00|118.00|0.00|-2.98|0001981D|0|1| +35|2023-10-06T21:15:00.7470000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.7470000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.7470000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:00.7470000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BB60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25367383|40478540|10000|10000|||100.00|80.10|0.00|0.00|55692|90890|10000|10000|||98.13|90.50|0.00|2.97|0001981E|0|1| +38|2023-10-06T21:15:00.7470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9100|10000|0||90.48|96.30|0.00|2.61|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:00.7470000-07:00|8C8|Blunt Resistance Down|9.95|4002246C|Comet|10FF0001|Sesuga Sapisuga|00|90349|69200| +35|2023-10-06T21:15:00.7900000-07:00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:15:00.7900000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.7900000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:00.7900000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|250003|CFA80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25367383|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||90.16|87.10|0.00|1.07|0001981F|0|1| +38|2023-10-06T21:15:00.7900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||90.16|87.10|0.00|1.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:00.7900000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +30|2023-10-06T21:15:00.7900000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|57941|57941| +261|2023-10-06T21:15:00.2450000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:15:00.2450000-07:00|Change|4002246C||||| +35|2023-10-06T21:15:00.8340000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.8340000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:15:00.3450000-07:00|Change|4002246B||||||||| +37|2023-10-06T21:15:00.8780000-07:00|10FF0007|Kehabiqo Febiqo|0001981B|55692|90890|10000|10000|17||98.13|90.50|0.00|2.97|1500|0|0|03|0C000A76|0190|41000000|||||||||| +26|2023-10-06T21:15:00.8780000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|90890|90890| +26|2023-10-06T21:15:00.8780000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +26|2023-10-06T21:15:00.8780000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +35|2023-10-06T21:15:00.8800000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.8800000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:15:00.8800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|55692|90890|10000|10000|17||98.13|90.50|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +22|2023-10-06T21:15:00.9230000-07:00|4002246B|Comet|8B58|Meteor Impact|10FF0004|Buhojaqe Zijaqe|730003|2BA60000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|57078|57078|7250|10000|||116.01|93.28|0.00|-2.26|69200|69200|10000|10000|||94.00|118.00|0.00|2.41|00019820|0|1| +35|2023-10-06T21:15:00.9230000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.9230000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:15:00.9230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7250|10000|0||116.01|93.28|0.00|-2.26|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:00.9230000-07:00|8C8|Blunt Resistance Down|9.96|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|00|57078|69200| +261|2023-10-06T21:15:00.4360000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:00.4360000-07:00|Change|4002246B||| +35|2023-10-06T21:15:00.9680000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:00.9680000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:15:01.0130000-07:00|4002246A|Comet|10FF0009|Zewo Negiwo|0000|0000|00FF|||| +35|2023-10-06T21:15:01.0130000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +261|2023-10-06T21:15:00.5330000-07:00|Change|10FF0004||||||||||||| +35|2023-10-06T21:15:01.0580000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:01.0580000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32130000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25367383|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|9268|10000|||107.99|93.64|0.00|-2.61|00019821|0|1| +21|2023-10-06T21:15:01.0580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2F8D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25367383|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7250|10000|||116.01|93.28|0.00|-2.26|00019822|0|1| +261|2023-10-06T21:15:00.5330000-07:00|Change|4002246A||||||||| +35|2023-10-06T21:15:01.1020000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +21|2023-10-06T21:15:01.1020000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|77DC0000|4|25898000|0|0|0|0|0|0|0|0|0|0|0|0|25367383|40478540|10000|10000|||100.00|80.10|0.00|0.00|55692|90890|10000|10000|||98.13|90.50|0.00|2.97|00019823|0|1| +38|2023-10-06T21:15:01.1020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|55692|90890|10000|10000|17||98.13|90.50|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:01.1020000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|90890|90890| +37|2023-10-06T21:15:01.1470000-07:00|40022472|Zeromus|00019818|25362231||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:15:01.1470000-07:00|4002246A|Comet|8B58|Meteor Impact|10FF0009|Zewo Negiwo|730003|29620000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|56823|56823|8868|10000|||107.99|93.64|0.00|-2.61|69200|69200|10000|10000|||94.00|118.00|0.00|2.62|00019824|0|1| +35|2023-10-06T21:15:01.1470000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +38|2023-10-06T21:15:01.1470000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|8868|10000|0||107.99|93.64|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:01.1470000-07:00|8C8|Blunt Resistance Down|9.96|4002246A|Comet|10FF0009|Zewo Negiwo|00|56823|69200| +261|2023-10-06T21:15:00.7670000-07:00|Change|10FF0001||| +261|2023-10-06T21:15:00.7670000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:15:00.7670000-07:00|Change|4002246A||| +35|2023-10-06T21:15:01.1900000-07:00|40022469|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +37|2023-10-06T21:15:01.2810000-07:00|40022472|Zeromus|0001981E|25359233||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:01.2810000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|754003|7D160000|200004|3DAC8000|0|0|0|0|0|0|0|0|0|0|0|0|25362231|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9100|10000|||90.48|96.30|0.00|2.61|00019825|0|1| +38|2023-10-06T21:15:01.2810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8100|10000|0||90.48|96.30|0.00|2.61|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:01.2810000-07:00|558|Requiescat|21.98|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +31|2023-10-06T21:15:01.2810000-07:00|10FF0001||||| +261|2023-10-06T21:15:00.8860000-07:00|Change|40022469||||||||| +22|2023-10-06T21:15:01.3270000-07:00|40022469|Comet|8B58|Meteor Impact|10FF0007|Kehabiqo Febiqo|730303|0|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|55692|90890|10000|10000|||98.13|90.50|0.00|2.97|69200|69200|10000|10000|||94.00|118.00|0.00|0.00|00019826|0|1| +24|2023-10-06T21:15:01.3270000-07:00|10FF0003|Gegehi Gehi|HoT|0|807|51669|51669|5450|10000|||113.24|104.36|0.00|-2.64|40022470|Comet|0|69200|69200|10000|10000|||118.49|89.01|0.00|2.73| +38|2023-10-06T21:15:01.3270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|55692|90890|10000|10000|12||98.13|90.50|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:01.3270000-07:00|8C8|Blunt Resistance Down|9.95|40022469|Comet|10FF0007|Kehabiqo Febiqo|00|90890|69200| +38|2023-10-06T21:15:01.3270000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5450|10000|0||113.24|104.36|0.00|-2.64|0|0|0|||||||||||||||||||||||||||| +31|2023-10-06T21:15:01.3700000-07:00|10FF0001||||| +37|2023-10-06T21:15:01.3700000-07:00|10FF0001|Sesuga Sapisuga|0001981D|0|90349|0|10000|0||90.48|96.30|0.00|2.61|1300|0|0|04|02000000|0|0|||||||||||||| +38|2023-10-06T21:15:01.3700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|0|90349|0|10000|0||90.48|96.30|0.00|2.61|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:01.3700000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +30|2023-10-06T21:15:01.3700000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +30|2023-10-06T21:15:01.3700000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +30|2023-10-06T21:15:01.3700000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +30|2023-10-06T21:15:01.3700000-07:00|9D6|Bind|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +30|2023-10-06T21:15:01.3700000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +30|2023-10-06T21:15:01.3700000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +30|2023-10-06T21:15:01.3700000-07:00|8C8|Blunt Resistance Down|0.00|4002246C|Comet|10FF0001|Sesuga Sapisuga|00|90349|69200| +261|2023-10-06T21:15:00.8860000-07:00|Change|10FF0001||||| +261|2023-10-06T21:15:00.8860000-07:00|Change|4002246C||||||||| +261|2023-10-06T21:15:00.9990000-07:00|Change|40022469||| +37|2023-10-06T21:15:01.4130000-07:00|40022472|Zeromus|0001981F|25306073||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:01.4580000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|215C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|55692|90890|10000|10000|||98.13|90.50|0.00|2.97|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019827|0|1| +37|2023-10-06T21:15:01.5030000-07:00|40022472|Zeromus|0001981C|25296694||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:15:01.5030000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1ECC|55692|90890|10000|10000|||98.13|90.50|0.00|2.97|10FF0007|Kehabiqo Febiqo|0|55692|90890|10000|10000|||98.13|90.50|0.00|2.97| +24|2023-10-06T21:15:01.5030000-07:00|10FF0006|Wowobora Gogobora|HoT|0|DE6|57266|57266|8400|10000|||100.85|96.36|0.00|-3.09|E0000000||0||||||||||| +38|2023-10-06T21:15:01.5030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|63576|90890|10000|10000|12||98.13|90.50|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:15:01.5030000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8400|10000|0||100.85|96.36|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:01.1100000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:15:01.1100000-07:00|Change|4002246B||||||||| +261|2023-10-06T21:15:01.2230000-07:00|Change|4002246C||||||||| +37|2023-10-06T21:15:01.5480000-07:00|10FF0004|Buhojaqe Zijaqe|00019820|45904|57078|6850|10000|0||116.01|93.28|0.00|-2.26|1C00|0|0|01|040008C8|0|4116041B|| +24|2023-10-06T21:15:01.5480000-07:00|10FF0009|Zewo Negiwo|HoT|0|813|56823|56823|8868|10000|||107.99|93.64|0.00|-2.61|E0000000||0||||||||||| +38|2023-10-06T21:15:01.5480000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|8868|10000|0||107.99|93.64|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:15:01.5920000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|152003|91400000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25296694|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8400|10000|||100.85|96.36|0.00|-3.09|00019828|0|1| +21|2023-10-06T21:15:01.6360000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|13490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25296694|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|10000|10000|||93.55|86.52|0.00|1.13|00019829|0|1| +21|2023-10-06T21:15:01.6810000-07:00|10FF0009|Zewo Negiwo|1D06|Thin Air|10FF0009|Zewo Negiwo|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|8868|10000|||107.99|93.64|0.00|-2.61|56823|56823|8868|10000|||107.99|93.64|0.00|-2.61|0001982A|0|1| +21|2023-10-06T21:15:01.6810000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|26FB0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|25296694|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5450|10000|||113.24|104.36|0.00|-2.64|0001982B|0|1| +38|2023-10-06T21:15:01.6810000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|8868|10000|0||107.99|93.64|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:01.6810000-07:00|4C1|Thin Air|12.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|56823|56823| +38|2023-10-06T21:15:01.6810000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5150|10000|0||113.24|104.36|0.00|-2.64|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:01.6810000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:15:01.6810000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:15:01.2230000-07:00|Change|10FF0006||| +261|2023-10-06T21:15:01.3170000-07:00|Change|4002246A||||||||| +261|2023-10-06T21:15:01.3170000-07:00|Change|10FF0003||| +261|2023-10-06T21:15:01.3170000-07:00|Change|4002246B||||||||| +37|2023-10-06T21:15:01.7260000-07:00|40022472|Zeromus|00019823|25266010||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:01.7260000-07:00|10FF0007|Kehabiqo Febiqo|00019823|73185||||||98.13|90.50|0.00|2.97| +39|2023-10-06T21:15:01.7260000-07:00|40022A52|Demi-Phoenix|54388|54388|10000|10000|||110.89|88.00|0.00|-2.20| +38|2023-10-06T21:15:01.7710000-07:00|40022A88||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:15:01.7710000-07:00|40022A88||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:15:01.7710000-07:00|10FF0009|Zewo Negiwo|00019824|46229|56823|8868|10000|0||107.99|93.64|0.00|-2.61|1800|0|0|02|040008C8|0|4116041A|||||| +261|2023-10-06T21:15:01.4120000-07:00|Change|40022A52||||||||| +21|2023-10-06T21:15:01.8160000-07:00|40022490|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|2.73|0001982C|0|0| +37|2023-10-06T21:15:01.8600000-07:00|40022472|Zeromus|00019822|25253837||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:01.4120000-07:00|Change|40022490||||||||| +261|2023-10-06T21:15:01.4120000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:15:01.4120000-07:00|Change|4002248F||||||||| +37|2023-10-06T21:15:01.9930000-07:00|10FF0007|Kehabiqo Febiqo|00019826|73185|90890|10000|10000|12||98.13|90.50|0.00|2.97|1500|0|0|01|040008C8|0|41154BC7|| +21|2023-10-06T21:15:01.9930000-07:00|4002248F|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.00|118.00|0.00|2.41|0001982D|0|0| +261|2023-10-06T21:15:01.5110000-07:00|Change|40022469||||||||| +261|2023-10-06T21:15:01.5110000-07:00|Change|4002246A||||||||| +261|2023-10-06T21:15:01.6110000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:15:02.1280000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|33E00000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|25253837|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||89.86|87.82|0.00|-2.73|0001982E|0|1| +37|2023-10-06T21:15:02.1720000-07:00|40022472|Zeromus|00019829|25248900||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:01.7130000-07:00|Change|4002248E||||||||| +03|2023-10-06T21:15:01.7130000-07:00|40022A88|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||100.78|94.62|0.00|0.05| +261|2023-10-06T21:15:01.7130000-07:00|Add|40022A88||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:01.7130000-07:00|Change|40022A88||| +261|2023-10-06T21:15:01.7130000-07:00|Change|40022469||||||||| +21|2023-10-06T21:15:02.2170000-07:00|4002248E|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.00|118.00|0.00|2.62|0001982F|0|0| +37|2023-10-06T21:15:02.2610000-07:00|10FF0007|Kehabiqo Febiqo|00019827|81725||||||98.13|90.50|0.00|2.97| +261|2023-10-06T21:15:01.8330000-07:00|Change|4002248D||||||||| +37|2023-10-06T21:15:02.3520000-07:00|40022472|Zeromus|00019821|25236081||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:02.3520000-07:00|10FF0009|Zewo Negiwo|00019821|46229|56823|8868|10000|0||107.99|93.64|0.00|-2.61|1800|0|0|01|050004C1|FF9C|C1400000|| +257|2023-10-06T21:15:02.3520000-07:00|80034E7C|00080004|01|00|0000| +257|2023-10-06T21:15:02.3520000-07:00|80034E7C|00080004|00|00|0000| +21|2023-10-06T21:15:02.3520000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|73185|90890|10000|10000|||98.13|90.50|0.00|2.97|73185|90890|10000|10000|||98.13|90.50|0.00|2.97|00019830|0|1| +21|2023-10-06T21:15:02.3520000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25248900|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||89.86|87.82|0.00|2.22|00019831|0|1| +38|2023-10-06T21:15:02.3520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81725|90890|10000|10000|12||98.13|90.50|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:02.3520000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +22|2023-10-06T21:15:02.3960000-07:00|4002248D|Zeromus|8CB9|Meteor Impact|10FF000A|Dukaro Nezikaro|730003|3E624008|780E|8C80000|1B|8CB98000|0|0|0|0|0|0|0|0|0|0|57941|57941|10000|10000|||96.61|87.87|0.00|-0.06|44|44|0|10000|||106.00|118.00|0.00|-2.76|00019832|0|1| +38|2023-10-06T21:15:02.3960000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|10000|10000|0||96.72|88.04|-0.02|-0.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:02.3960000-07:00|8C8|Blunt Resistance Down|0.00|4002246F|Comet|10FF000A|Dukaro Nezikaro|00|57941|69200| +26|2023-10-06T21:15:02.3960000-07:00|8C8|Blunt Resistance Down|9.96|4002248D|Zeromus|10FF000A|Dukaro Nezikaro|00|57941|44| +37|2023-10-06T21:15:02.4410000-07:00|10FF0009|Zewo Negiwo|0001982A|46229|56823|8868|10000|0||107.99|93.64|0.00|-2.22|1800|0|0|01|050004C1|FF9C|41400000|| +37|2023-10-06T21:15:02.4410000-07:00|40022472|Zeromus|0001982B|25226102||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:02.4410000-07:00|10FF0003|Gegehi Gehi|0001982B|51669|51669|5150|10000|0||113.16|104.33|0.00|-2.16|2300|0|0|01|090004D2|0|41F00000|| +38|2023-10-06T21:15:02.4410000-07:00|10FF0009|Zewo Negiwo|005A5A18|46229|56823|8868|10000|0||107.99|93.64|0.00|-2.22|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:15:02.4410000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5150|10000|0||113.16|104.33|0.00|-2.16|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:02.0580000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:15:02.5300000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-2.84| +20|2023-10-06T21:15:02.5300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|116.01|93.28|0.00|-2.26| +37|2023-10-06T21:15:02.5750000-07:00|10FF000A|Dukaro Nezikaro|00019832|0|57941|0|10000|0||96.85|88.90|0.00|-0.05|1E00|0|0|02|06000000|0|0|||||| +38|2023-10-06T21:15:02.5750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|0|57941|0|10000|0||96.85|88.90|0.00|-0.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:02.5750000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +30|2023-10-06T21:15:02.5750000-07:00|8C8|Blunt Resistance Down|0.00|4002248D|Zeromus|10FF000A|Dukaro Nezikaro|00|57941|44| +261|2023-10-06T21:15:02.0580000-07:00|Change|10FF000A||||||||||| +22|2023-10-06T21:15:02.6200000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|30D20000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|46229|56823|8868|10000|||107.99|93.64|0.00|-1.49|46229|56823|8868|10000|||107.99|93.64|0.00|-1.49|00019833|0|6| +22|2023-10-06T21:15:02.6200000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|31100000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8100|10000|||100.85|96.36|0.00|-3.09|46229|56823|8868|10000|||107.99|93.64|0.00|-1.49|00019833|1|6| +22|2023-10-06T21:15:02.6200000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|200004|51800000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|45904|57078|6850|10000|||116.01|93.28|0.00|-2.26|46229|56823|8868|10000|||107.99|93.64|0.00|-1.49|00019833|2|6| +22|2023-10-06T21:15:02.6200000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|337C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81725|90890|10000|10000|||98.13|90.50|0.00|2.97|46229|56823|8868|10000|||107.99|93.64|0.00|-1.49|00019833|3|6| +22|2023-10-06T21:15:02.6200000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|508F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5150|10000|||111.89|104.22|0.00|-1.89|46229|56823|8868|10000|||107.99|93.64|0.00|-1.49|00019833|4|6| +22|2023-10-06T21:15:02.6200000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|309F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||89.88|87.90|0.00|1.14|46229|56823|8868|10000|||107.99|93.64|0.00|-1.49|00019833|5|6| +21|2023-10-06T21:15:02.6200000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|9FC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|81725|90890|10000|10000|||98.13|90.50|0.00|2.97|25226102|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019834|0|1| +37|2023-10-06T21:15:02.6650000-07:00|40022472|Zeromus|00019828|25188918||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:02.6650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81725|90890|10000|10000|12||98.13|90.50|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:02.6650000-07:00|9D6|Bind|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:15:02.6650000-07:00|10FF0009|Zewo Negiwo|005A5A18|46229|56823|8868|10000|0||107.99|93.64|0.00|-1.49|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:02.6650000-07:00|9D6|Bind|0.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +38|2023-10-06T21:15:02.6650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45904|57078|6850|10000|0||116.01|93.28|0.00|-2.26|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:02.6650000-07:00|9D6|Bind|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +39|2023-10-06T21:15:02.7080000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||89.88|87.90|0.00|1.14| +24|2023-10-06T21:15:02.7550000-07:00|40022472|Zeromus|DoT|0|1D5A|25188918|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|0|90349|0|10000|||90.48|96.30|0.00|2.61| +38|2023-10-06T21:15:02.7550000-07:00|40022472|Zeromus|005A5A00|25181404|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:15:02.7550000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:15:02.2720000-07:00|Change|40022A88||| +34|2023-10-06T21:15:02.7980000-07:00|40022A88|Carbuncle|40022A88|Carbuncle|01| +261|2023-10-06T21:15:02.3690000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:15:02.8430000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25181404|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8100|10000|||100.85|96.36|0.00|-3.09|00019835|0|1| +36|2023-10-06T21:15:02.8430000-07:00|409C|3| +37|2023-10-06T21:15:02.8880000-07:00|10FF0007|Kehabiqo Febiqo|00019830|81725|90890|10000|10000|12||98.13|90.50|0.00|2.97|1500|0|0|01|0F000769|0|41F00000|| +04|2023-10-06T21:15:02.3690000-07:00|40022A3F|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|59967|0|10000|||102.10|103.01|0.00|-3.05| +37|2023-10-06T21:15:02.8880000-07:00|40022472|Zeromus|0001982E|25168124||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:02.8880000-07:00|10FF0004|Buhojaqe Zijaqe|46474|57078|7050|10000|||116.01|93.28|0.00|-2.26| +38|2023-10-06T21:15:02.8880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81725|90890|10000|10000|12||98.13|90.50|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:02.4650000-07:00|Remove|40022A3F| +261|2023-10-06T21:15:02.4650000-07:00|Change|10FF000A||||||||||| +39|2023-10-06T21:15:02.9770000-07:00|10FF0007|Kehabiqo Febiqo|82633|90890|10000|10000|||98.13|90.51|-0.02|-3.06| +39|2023-10-06T21:15:02.9770000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8300|10000|||100.85|96.36|0.00|-3.09| +261|2023-10-06T21:15:02.4650000-07:00|Change|10FF0006||| +39|2023-10-06T21:15:03.0210000-07:00|10FF0009|Zewo Negiwo|46797|56823|9089|10000|||107.99|93.64|0.00|-0.61| +37|2023-10-06T21:15:03.1100000-07:00|40022472|Zeromus|00019831|25165882||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:02.5550000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T21:15:03.1540000-07:00|10FF0003|Gegehi Gehi|51669|51669|5350|10000|||109.12|103.98|0.00|-1.69| +261|2023-10-06T21:15:02.6650000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:15:03.1980000-07:00|10FF0009|Zewo Negiwo|00019833|56823||||||107.39|94.01|0.00|-0.78| +37|2023-10-06T21:15:03.3770000-07:00|40022472|Zeromus|00019835|25165733||||||100.00|80.10|0.00|0.00| +25|2023-10-06T21:15:03.3770000-07:00|10FF0001|Sesuga Sapisuga|4002246C|Comet| +37|2023-10-06T21:15:03.4220000-07:00|10FF0007|Kehabiqo Febiqo|00019834|80077|90890|10000|10000|0||97.80|92.20|0.00|-0.84|1500|0|0|01|0E000000|0|0|| +38|2023-10-06T21:15:03.4220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80077|90890|10000|10000|0||97.80|92.20|0.00|-0.84|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:03.4220000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:15:03.4670000-07:00|10FF0004|Buhojaqe Zijaqe|00019833|57078||||||116.01|93.28|0.00|-2.04| +20|2023-10-06T21:15:03.4670000-07:00|4002245B|Comet|8D34|Explosion|4002245B|Comet|4.700|103.20|91.40|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|4002245C|Comet|8D34|Explosion|4002245C|Comet|4.700|86.20|97.20|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|4002245D|Comet|8D34|Explosion|4002245D|Comet|4.700|118.00|83.00|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|4002245E|Comet|8D34|Explosion|4002245E|Comet|4.700|113.80|89.20|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|4002245F|Comet|8D34|Explosion|4002245F|Comet|4.700|110.60|84.00|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022460|Comet|8D34|Explosion|40022460|Comet|4.700|105.00|82.40|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022461|Comet|8D34|Explosion|40022461|Comet|4.700|100.00|85.60|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022462|Comet|8D34|Explosion|40022462|Comet|4.700|95.00|82.40|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022463|Comet|8D34|Explosion|40022463|Comet|4.700|89.40|84.00|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022464|Comet|8D34|Explosion|40022464|Comet|4.700|86.20|89.20|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022465|Comet|8D34|Explosion|40022465|Comet|4.700|82.00|83.00|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022466|Comet|8D34|Explosion|40022466|Comet|4.700|118.00|102.00|0.00|0.00| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002245B||||||||||| +20|2023-10-06T21:15:03.4670000-07:00|40022467|Comet|8D34|Explosion|40022467|Comet|4.700|82.00|102.00|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022468|Comet|8D34|Explosion|40022468|Comet|4.700|100.00|117.60|0.00|0.00| +20|2023-10-06T21:15:03.4670000-07:00|40022469|Comet|8D34|Explosion|40022469|Comet|4.700|98.13|90.50|0.00|2.99| +20|2023-10-06T21:15:03.4670000-07:00|4002246A|Comet|8D34|Explosion|4002246A|Comet|4.700|107.99|93.64|0.00|2.62| +20|2023-10-06T21:15:03.4670000-07:00|4002246B|Comet|8D34|Explosion|4002246B|Comet|4.700|116.01|93.28|0.00|2.41| +20|2023-10-06T21:15:03.4670000-07:00|4002246C|Comet|8D34|Explosion|4002246C|Comet|4.700|90.47|96.27|0.00|-2.98| +20|2023-10-06T21:15:03.4670000-07:00|4002246D|Comet|8D34|Explosion|4002246D|Comet|4.700|93.64|87.05|0.00|-2.76| +20|2023-10-06T21:15:03.4670000-07:00|4002246E|Comet|8D34|Explosion|4002246E|Comet|4.700|108.78|88.98|0.00|3.05| +20|2023-10-06T21:15:03.4670000-07:00|4002246F|Comet|8D34|Explosion|4002246F|Comet|4.700|88.73|92.30|0.00|-2.55| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002245E||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022460||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002245F||||||||||||| +20|2023-10-06T21:15:03.4670000-07:00|40022470|Comet|8D34|Explosion|40022470|Comet|4.700|118.49|89.01|0.00|2.73| +21|2023-10-06T21:15:03.4670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|3B8B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25165882|40478540|10000|10000|||100.00|80.10|0.00|0.00|46474|57078|7050|10000|||116.01|93.28|0.00|-2.04|00019836|0|1| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022464||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002245C||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022461||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002245D||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022463||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022466||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022465||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022467||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022468||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022462||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002246B||||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002246C||||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002246E||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002246D||||||||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002246F||||||||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022470||||||||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|4002246A||||||||||||||| +261|2023-10-06T21:15:03.0160000-07:00|Change|40022469||||||||||||||| +21|2023-10-06T21:15:03.5550000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|9CDB0000|200004|3E538000|0|0|0|0|0|0|0|0|0|0|0|0|25165733|40478540|10000|10000|||100.00|80.10|0.00|0.00|80077|90890|10000|10000|||97.65|92.97|0.00|-0.52|00019837|0|1| +38|2023-10-06T21:15:03.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80077|90890|10000|10000|0||97.65|92.97|0.00|-0.52|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:03.5550000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:15:03.6000000-07:00|10FF0007|Kehabiqo Febiqo|00019833|90890||||||97.58|93.47|0.00|2.97| +38|2023-10-06T21:15:03.6900000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5350|10000|0||106.11|105.04|0.00|-1.70|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:03.6900000-07:00|8C8|Blunt Resistance Down|0.00|40022470|Comet|10FF0003|Gegehi Gehi|00|51669|69200| +261|2023-10-06T21:15:03.3330000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:15:03.5160000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:03.5160000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:15:04.0920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|0||100.75|97.57|0.00|0.41|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:04.0920000-07:00|8C8|Blunt Resistance Down|0.00|4002246E|Comet|10FF0006|Wowobora Gogobora|00|57266|69200| +261|2023-10-06T21:15:03.6340000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:15:04.1360000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25165733|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||97.58|93.47|0.00|2.97|00019838|0|1| +21|2023-10-06T21:15:04.1360000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|25165733|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8300|10000|||100.67|98.39|0.00|0.21|00019839|0|1| +20|2023-10-06T21:15:04.1360000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|103.06|104.30|-0.02|-1.76| +38|2023-10-06T21:15:04.1360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|0||100.67|98.39|0.00|0.21|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:04.1360000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:15:04.1800000-07:00|40022A8C||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:15:04.1800000-07:00|40022A8C||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:15:03.7570000-07:00|Change|40022A88||||||||| +37|2023-10-06T21:15:04.2690000-07:00|40022472|Zeromus|00019836|25150490||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:04.2690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||94.56|95.70|0.00|0.77|0|0|0||||||||||||||||||| +30|2023-10-06T21:15:04.2690000-07:00|8C8|Blunt Resistance Down|0.00|4002246D|Comet|10FF0008|Kokosaze Lulusaze|00|63151|69200| +24|2023-10-06T21:15:04.3130000-07:00|10FF0003|Gegehi Gehi|HoT|0|8AD|51669|51669|5350|10000|||102.97|104.28|0.00|-1.93|10FF0003|Gegehi Gehi|0|51669|51669|5350|10000|||102.97|104.28|0.00|-1.93| +38|2023-10-06T21:15:04.3130000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5350|10000|0||102.97|104.28|0.00|-1.93|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:03.9870000-07:00|Add|40022A8C||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:15:03.9870000-07:00|40022A8C|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|54388|54388|10000|10000|||102.42|100.98|0.00|-3.11| +261|2023-10-06T21:15:04.0980000-07:00|Change|40022A8C||||| +24|2023-10-06T21:15:04.4910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|127C|90890|90890|10000|10000|||97.58|93.47|0.00|2.97|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||97.58|93.47|0.00|2.97| +24|2023-10-06T21:15:04.4910000-07:00|10FF0006|Wowobora Gogobora|HoT|0|812|57266|57266|8300|10000|||100.52|100.17|0.00|-1.26|E0000000||0||||||||||| +38|2023-10-06T21:15:04.4910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||97.58|93.47|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:15:04.4910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|0||100.52|100.17|0.00|-1.26|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:15:04.5350000-07:00|10FF0009|Zewo Negiwo|HoT|0|899|56823|56823|9089|10000|||105.18|101.35|0.00|-0.27|E0000000||0||||||||||| +38|2023-10-06T21:15:04.5350000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9089|10000|0||105.18|101.35|0.00|-0.27|0|0|0|||||||||||||||||||||||||||||||||| +25|2023-10-06T21:15:04.5800000-07:00|10FF000A|Dukaro Nezikaro|4002248D|Zeromus| +21|2023-10-06T21:15:04.6250000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|5CC60000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|25150490|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||96.50|97.71|0.00|0.77|0001983A|0|1| +37|2023-10-06T21:15:04.6690000-07:00|40022472|Zeromus|00019838|25147619||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:04.2920000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:15:04.2920000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:04.2920000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:15:04.7150000-07:00|40022472|Zeromus|00019837|25107464||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:04.8480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||97.56|93.59|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:04.8480000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +261|2023-10-06T21:15:04.5860000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:15:04.5860000-07:00|Change|10FF0004||||||||| +20|2023-10-06T21:15:05.0260000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|103.57|103.99|0.00|-0.74| +21|2023-10-06T21:15:05.0260000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25107464|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||96.88|98.12|0.00|2.95|0001983B|0|1| +21|2023-10-06T21:15:05.0700000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|26960000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|25107464|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6650|10000|||112.41|100.47|0.00|-0.77|0001983C|0|1| +37|2023-10-06T21:15:05.1600000-07:00|10FF0006|Wowobora Gogobora|00019839|57266|57266|8300|10000|0||100.23|103.09|0.00|-0.01|1B00|0|0|01|03000AA4|0|0|| +38|2023-10-06T21:15:05.1600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|0||100.23|103.09|0.00|-0.01|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:04.8170000-07:00|Change|40022A8C||| +261|2023-10-06T21:15:04.8170000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:15:05.5150000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +21|2023-10-06T21:15:05.5610000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|754003|2A710000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|25107464|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5350|10000|||102.68|104.20|0.00|-3.03|0001983D|0|1| +38|2023-10-06T21:15:05.5610000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5150|10000|0||102.68|104.20|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:05.5610000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +21|2023-10-06T21:15:05.6050000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8300|10000|||100.18|103.50|0.00|0.03|57266|57266|8300|10000|||100.18|103.50|0.00|0.03|0001983E|0|1| +38|2023-10-06T21:15:05.6050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|0||100.18|103.50|0.00|0.03|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:05.6050000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +04|2023-10-06T21:15:05.1670000-07:00|40022A52|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|0|54388|0|10000|||110.89|88.00|0.00|-2.20| +21|2023-10-06T21:15:05.6500000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|38D50000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||98.76|98.43|0.00|0.49|25107464|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001983F|0|1| +261|2023-10-06T21:15:05.2570000-07:00|Remove|40022A52| +39|2023-10-06T21:15:05.6950000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.15|100.48|0.00|1.02| +37|2023-10-06T21:15:05.7390000-07:00|10FF0006|Wowobora Gogobora|0001983E|57266|57266|8300|10000|0||100.18|103.50|0.00|0.03|1B00|0|0|01|050000A7|0|41200000|| +38|2023-10-06T21:15:05.7390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|0||100.18|103.50|0.00|0.03|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:05.7840000-07:00|40022472|Zeromus|0001983A|25083714||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:05.7840000-07:00|40022472|Zeromus|0001983B|25080744||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:15:05.7840000-07:00|40022472|Zeromus|DoT|0|1C3F|25107464|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|0|90349|0|10000|||90.48|96.30|0.00|2.61| +38|2023-10-06T21:15:05.7840000-07:00|40022472|Zeromus|005A5A00|25073513|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:15:05.7840000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:15:05.3550000-07:00|Change|10FF0009||||||||||||||||||||| +39|2023-10-06T21:15:05.8720000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6450|10000|||110.04|102.44|0.00|-1.49| +36|2023-10-06T21:15:05.8720000-07:00|4178|3| +261|2023-10-06T21:15:05.4530000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:15:05.9630000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||98.95|99.95|0.00|0.33| +39|2023-10-06T21:15:05.9630000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8500|10000|||100.18|103.50|0.00|0.03| +21|2023-10-06T21:15:05.9630000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|30CF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25073513|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|9089|10000|||103.26|103.99|0.00|-3.01|00019840|0|1| +38|2023-10-06T21:15:05.9630000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9089|10000|0||103.26|103.99|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:05.9630000-07:00|4C1|Thin Air|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|56823|56823| +261|2023-10-06T21:15:05.4530000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:15:06.0070000-07:00|40022472|Zeromus|0001983C|25063635||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:06.0070000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25073513|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||100.18|103.50|0.00|0.03|00019841|0|1| +261|2023-10-06T21:15:05.6620000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:15:05.6620000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:15:05.6620000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:15:06.0520000-07:00|10FF0009|Zewo Negiwo|56823|56823|9310|10000|||103.26|103.99|0.00|-3.01| +21|2023-10-06T21:15:06.0520000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|9B170000|200004|3E798000|0|0|0|0|0|0|0|0|0|0|0|0|25063635|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.43|101.91|0.00|0.26|00019842|0|1| +38|2023-10-06T21:15:06.0520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||99.43|101.91|0.00|0.26|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:06.0520000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +39|2023-10-06T21:15:06.1840000-07:00|10FF0003|Gegehi Gehi|51669|51669|5350|10000|||102.68|104.20|0.00|-3.03| +38|2023-10-06T21:15:06.1840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6450|10000|0||108.31|104.21|0.00|-0.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:06.1840000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|57078|57078| +21|2023-10-06T21:15:06.1840000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|6450|10000|||108.31|104.21|0.00|-0.94|57078|57078|6450|10000|||108.31|104.21|0.00|-0.94|00019843|0|1| +261|2023-10-06T21:15:05.7820000-07:00|Change|40022A88||||||||| +21|2023-10-06T21:15:06.2290000-07:00|40022A8C|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|150003|62BA0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|25063635|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||102.42|100.98|0.00|-3.11|00019844|0|1| +37|2023-10-06T21:15:06.3180000-07:00|40022472|Zeromus|0001983D|25052770||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:06.4530000-07:00|10FF0007|Kehabiqo Febiqo|0001983F|76341||||||99.84|103.15|0.00|2.26| +37|2023-10-06T21:15:06.5410000-07:00|40022472|Zeromus|00019841|25052623||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:06.5860000-07:00|10FF0006|Wowobora Gogobora|AD|Resurrection|10FF0001|Sesuga Sapisuga|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|0|10000|||90.48|96.30|0.00|2.61|57266|57266|8500|10000|||100.18|103.50|0.00|0.03|00019845|0|1| +21|2023-10-06T21:15:06.5860000-07:00|10FF0003|Gegehi Gehi|1D63|Verraise|10FF0001|Sesuga Sapisuga|814000E|940000|1B|1D638000|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|0|10000|||90.48|96.30|0.00|2.61|51669|51669|5350|10000|||102.68|104.20|0.00|-3.03|00019846|0|1| +38|2023-10-06T21:15:06.5860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6100|10000|0||100.18|103.50|0.00|0.03|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:06.5860000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:15:06.5860000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2950|10000|0||102.68|104.20|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:06.5860000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:15:06.7200000-07:00|10FF0004|Buhojaqe Zijaqe|00019843|57078|57078|8450|10000|0||107.15|105.34|0.00|-0.83|1C00|0|0|0| +261|2023-10-06T21:15:06.3200000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:15:06.3200000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:15:06.4150000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:15:06.9860000-07:00|40022472|Zeromus|00019842|25012920||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:06.9860000-07:00|10FF0007|Kehabiqo Febiqo|00019842|90890||||||99.92|103.39|0.00|0.47| +261|2023-10-06T21:15:06.6050000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:15:07.1640000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5E7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25012920|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||101.49|104.05|0.00|-0.73|00019847|0|1| +37|2023-10-06T21:15:07.2530000-07:00|40022472|Zeromus|00019840|25000425||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:15:07.2980000-07:00|10FF0003|Gegehi Gehi|HoT|0|800|51669|51669|2950|10000|||102.68|104.20|0.00|-2.15|10FF0003|Gegehi Gehi|0|51669|51669|2950|10000|||102.68|104.20|0.00|-2.15| +38|2023-10-06T21:15:07.2980000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2950|10000|0||102.68|104.20|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:07.3870000-07:00|10FF0001|Sesuga Sapisuga|00019846|0|90349|0|10000|0||90.48|96.30|0.00|2.61|1300|0|0|01|02000094|08|42700000|| +26|2023-10-06T21:15:07.3870000-07:00|94|Raise|60.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|08|90349|51669| +20|2023-10-06T21:15:07.4320000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|103.26|103.99|0.00|-3.01| +21|2023-10-06T21:15:07.4760000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14DA0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||99.93|103.41|0.00|0.30|54201|54201|10000|10000|||100.36|97.55|0.00|-1.98|00019848|0|1| +24|2023-10-06T21:15:07.4760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1394|90890|90890|10000|10000|||99.93|103.41|0.00|0.30|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||99.93|103.41|0.00|0.30| +24|2023-10-06T21:15:07.4760000-07:00|10FF0006|Wowobora Gogobora|HoT|0|B76|57266|57266|6100|10000|||100.18|103.50|0.00|-2.21|E0000000||0||||||||||| +38|2023-10-06T21:15:07.4760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||99.93|103.41|0.00|0.30|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:15:07.4760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6100|10000|0||100.18|103.50|0.00|-2.21|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:15:07.5210000-07:00|10FF0009|Zewo Negiwo|HoT|0|84F|56823|56823|9310|10000|||103.26|103.99|0.00|-3.01|E0000000||0||||||||||| +21|2023-10-06T21:15:07.5210000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25000425|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.93|103.41|0.00|0.30|00019849|0|1| +38|2023-10-06T21:15:07.5210000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9310|10000|0||103.26|103.99|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:07.6990000-07:00|10FF0001|Sesuga Sapisuga|00019845|0|90349|0|10000|0||90.48|96.30|0.00|2.61|1300|0|0|01|02000094|08|42700000|| +30|2023-10-06T21:15:07.6990000-07:00|94|Raise|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|08|90349|51669| +26|2023-10-06T21:15:07.6990000-07:00|94|Raise|60.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|08|90349|57266| +21|2023-10-06T21:15:07.6990000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25000425|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||101.39|104.03|0.00|-2.41|0001984A|0|1| +261|2023-10-06T21:15:07.3720000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:15:07.4710000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T21:15:07.4710000-07:00|Change|10FF0006||||||| +37|2023-10-06T21:15:08.0550000-07:00|40022472|Zeromus|00019849|24997415||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:15:07.5670000-07:00|40022A88|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||100.51|94.96|0.00|-0.63| +261|2023-10-06T21:15:07.5670000-07:00|Remove|40022A88| +37|2023-10-06T21:15:08.1890000-07:00|40022472|Zeromus|00019844|24972141||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:08.3230000-07:00|40022472|Zeromus|00019847|24947951||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:08.3670000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32120000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|24972141|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|9310|10000|||103.26|103.99|0.00|-3.01|0001984B|0|1| +37|2023-10-06T21:15:08.4580000-07:00|40022472|Zeromus|0001984A|24944981||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:08.4580000-07:00|4002245B|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||103.20|91.40|0.00|0.00|0001984C|0|0| +21|2023-10-06T21:15:08.4580000-07:00|4002245C|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||86.20|97.20|0.00|0.00|0001984D|0|0| +21|2023-10-06T21:15:08.4580000-07:00|4002245D|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||118.00|83.00|0.00|0.00|0001984E|0|0| +21|2023-10-06T21:15:08.4580000-07:00|4002245E|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001984F|0|0| +21|2023-10-06T21:15:08.4580000-07:00|4002245F|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00019850|0|0| +21|2023-10-06T21:15:08.4580000-07:00|40022460|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00019851|0|0| +21|2023-10-06T21:15:08.4580000-07:00|40022461|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||100.00|85.60|0.00|0.00|00019852|0|0| +21|2023-10-06T21:15:08.4580000-07:00|40022462|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||95.00|82.40|0.00|0.00|00019853|0|0| +21|2023-10-06T21:15:08.4580000-07:00|40022463|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||89.40|84.00|0.00|0.00|00019854|0|0| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002245C||||||||||||| +21|2023-10-06T21:15:08.4580000-07:00|40022464|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||86.20|89.20|0.00|0.00|00019855|0|0| +21|2023-10-06T21:15:08.4580000-07:00|40022465|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00019856|0|0| +21|2023-10-06T21:15:08.4580000-07:00|40022466|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00019857|0|0| +21|2023-10-06T21:15:08.4580000-07:00|40022467|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00019858|0|0| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002245D||||||||||| +21|2023-10-06T21:15:08.4580000-07:00|40022468|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00019859|0|0| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002245B||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002245E||||||||||||| +21|2023-10-06T21:15:08.4580000-07:00|40022469|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||98.13|90.50|0.00|2.99|0001985A|0|0| +21|2023-10-06T21:15:08.4580000-07:00|4002246A|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||107.99|93.64|0.00|2.62|0001985B|0|0| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002245F||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022461||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022464||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022466||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022467||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022468||||||||||||| +21|2023-10-06T21:15:08.4580000-07:00|4002246B|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||116.01|93.28|0.00|2.41|0001985C|0|0| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002246A||||||||||||| +21|2023-10-06T21:15:08.4580000-07:00|4002246C|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||90.47|96.27|0.00|-2.98|0001985D|0|0| +21|2023-10-06T21:15:08.4580000-07:00|4002246D|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||93.64|87.05|0.00|-2.76|0001985E|0|0| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022460||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022463||||||||||||| +21|2023-10-06T21:15:08.4580000-07:00|4002246E|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||108.78|88.98|0.00|3.05|0001985F|0|0| +21|2023-10-06T21:15:08.4580000-07:00|4002246F|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||88.73|92.30|0.00|-2.55|00019860|0|0| +21|2023-10-06T21:15:08.4580000-07:00|40022470|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||118.49|89.01|0.00|2.73|00019861|0|0| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022462||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002246B||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002246C||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002246D||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022470||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002246F||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022469||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022465||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|4002246E||||||||||||| +261|2023-10-06T21:15:08.0190000-07:00|Change|40022465||||||||||||| +21|2023-10-06T21:15:08.5010000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|714003|1A860000|4|26718000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|24944981|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.93|103.41|0.00|0.30|00019862|0|1| +39|2023-10-06T21:15:08.5450000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-0.07| +21|2023-10-06T21:15:08.6780000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|377A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||99.93|103.41|0.00|3.14|24944981|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019863|0|1| +39|2023-10-06T21:15:08.7230000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||101.24|103.96|0.00|-2.10| +21|2023-10-06T21:15:08.7230000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8450|10000|||104.39|106.00|0.00|1.46|57078|57078|8450|10000|||104.39|106.00|0.00|1.46|00019864|0|1| +38|2023-10-06T21:15:08.7230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8450|10000|0||104.39|106.00|0.00|1.46|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:08.7230000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +24|2023-10-06T21:15:08.7670000-07:00|40022472|Zeromus|DoT|0|1E24|24944981|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|0|90349|0|10000|||90.48|96.30|0.00|2.61| +38|2023-10-06T21:15:08.7670000-07:00|40022472|Zeromus|005A5A00|24937265|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:15:08.7670000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:15:08.8570000-07:00|10FF0004|Buhojaqe Zijaqe|00019864|57078|57078|8450|10000|0||104.39|106.00|0.00|1.46|1C00|0|0|01|050000A7|0|41200000|| +36|2023-10-06T21:15:08.8570000-07:00|4254|3| +38|2023-10-06T21:15:08.8570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||99.93|103.41|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:08.8570000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|90890|90890| +38|2023-10-06T21:15:08.8570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8450|10000|0||104.39|106.00|0.00|1.46|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:08.4150000-07:00|Change|10FF0009||||||||||||||| +39|2023-10-06T21:15:08.9020000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|8650|10000|||104.39|106.00|0.00|1.46| +261|2023-10-06T21:15:08.4150000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T21:15:08.9900000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||99.93|103.41|0.00|3.14| +39|2023-10-06T21:15:08.9900000-07:00|10FF0006|Wowobora Gogobora|57266|57266|6300|10000|||100.18|103.50|0.00|-2.21| +261|2023-10-06T21:15:08.5090000-07:00|Change|10FF0006||| +37|2023-10-06T21:15:09.0350000-07:00|40022472|Zeromus|00019862|24930475||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:09.0350000-07:00|10FF0009|Zewo Negiwo|56823|56823|9131|10000|||103.26|103.99|0.00|-3.01| +20|2023-10-06T21:15:09.0790000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|100.18|103.50|0.00|-2.21| +39|2023-10-06T21:15:09.1670000-07:00|10FF0003|Gegehi Gehi|51669|51669|3150|10000|||101.46|105.70|0.00|-2.63| +261|2023-10-06T21:15:08.7380000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:15:09.4790000-07:00|10FF0007|Kehabiqo Febiqo|00019863|76688||||||99.93|103.41|0.00|3.14| +21|2023-10-06T21:15:09.4790000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF000A|Dukaro Nezikaro|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|0|10000|||97.46|91.84|0.00|0.29|57078|57078|8650|10000|||104.36|106.03|-0.02|-0.23|00019865|0|1| +38|2023-10-06T21:15:09.4790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6250|10000|0||104.36|106.03|-0.02|-0.23|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:09.4790000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +21|2023-10-06T21:15:09.5230000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|716003|220B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24930475|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.93|103.41|0.00|3.14|00019866|0|1| +37|2023-10-06T21:15:09.6570000-07:00|40022472|Zeromus|0001984B|24917657||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:09.6580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6300|10000|0||100.18|103.50|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:09.6580000-07:00|74C|Everlasting Flight|0.00|40022A52|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|57266|| +27|2023-10-06T21:15:09.7020000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:15:09.7020000-07:00|10FF0003|Gegehi Gehi|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:15:09.7020000-07:00|10FF0009|Zewo Negiwo|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:15:09.7020000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:15:09.7020000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:15:09.7020000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0146|0000|0000|0000| +21|2023-10-06T21:15:09.7020000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2F210000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|24930475|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||101.24|103.96|0.00|-2.19|00019867|0|1| +38|2023-10-06T21:15:09.7910000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9131|10000|0||103.26|103.99|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:09.7910000-07:00|74C|Everlasting Flight|0.00|40022A52|Demi-Phoenix|10FF0009|Zewo Negiwo|00|56823|| +261|2023-10-06T21:15:09.3710000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:09.3710000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:15:09.4610000-07:00|Change|10FF0003||||| +38|2023-10-06T21:15:09.9230000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3150|10000|0||101.46|105.70|0.00|-2.63|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:09.9230000-07:00|74C|Everlasting Flight|0.00|40022A52|Demi-Phoenix|10FF0003|Gegehi Gehi|00|51669|| +261|2023-10-06T21:15:09.4610000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:15:10.0130000-07:00|10FF0009|Zewo Negiwo|1D89|Swiftcast|10FF0009|Zewo Negiwo|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|9131|10000|||103.20|103.99|-0.02|-2.32|56823|56823|9131|10000|||103.20|103.99|-0.02|-2.32|00019868|0|1| +38|2023-10-06T21:15:10.0130000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9131|10000|0||103.20|103.99|-0.02|-2.32|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:10.0130000-07:00|A7|Swiftcast|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +261|2023-10-06T21:15:09.5570000-07:00|Change|10FF0006||||||||||||||| +42|2023-10-06T21:15:10.1470000-07:00|10FF0001|Sesuga Sapisuga||||||||||||||||||||||||| +37|2023-10-06T21:15:10.1470000-07:00|40022472|Zeromus|00019866|24908942||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:10.1470000-07:00|10FF0009|Zewo Negiwo|00019868|56823|56823|9131|10000|0||103.05|103.95|-0.02|-1.67|1800|0|0|01|020000A7|0|41200000|| +20|2023-10-06T21:15:10.1470000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|101.46|105.70|0.00|-2.63| +38|2023-10-06T21:15:10.1470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|76688|90890|10000|10000|0||99.94|100.60|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:10.1470000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +38|2023-10-06T21:15:10.1470000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|9131|10000|0||103.05|103.95|-0.02|-1.67|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:09.7870000-07:00|Change|40022A8C||||| +38|2023-10-06T21:15:10.2810000-07:00|40022A91||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:15:10.2810000-07:00|40022A91||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:15:10.3700000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24908942|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||101.21|103.88|0.00|-3.01|00019869|0|1| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002246D||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022470||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002246F||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002246A||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022464||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022461||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002245F||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002245C||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022463||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022467||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022469||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002245E||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022465||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002246C||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022460||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002245D||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002245B||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002246B||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022468||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022462||| +261|2023-10-06T21:15:10.0180000-07:00|Change|4002246E||| +261|2023-10-06T21:15:10.0180000-07:00|Change|40022466||| +261|2023-10-06T21:15:10.0180000-07:00|Add|40022A91||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:15:10.0180000-07:00|40022A91|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||100.19|101.78|0.00|0.01| +37|2023-10-06T21:15:10.5030000-07:00|40022472|Zeromus|00019867|24896877||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:15:10.5030000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|12BF|76688|90890|10000|10000|||99.93|100.57|0.00|3.14|E0000000||0||||||||||| +38|2023-10-06T21:15:10.5030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81487|90890|10000|10000|0||99.93|100.57|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:15:10.1340000-07:00|Change|40022A91||| +37|2023-10-06T21:15:10.5920000-07:00|10FF000A|Dukaro Nezikaro|00019865|0|57941|0|10000|0||97.46|91.84|0.00|0.29|1E00|0|0|01|03000094|08|42700000|| +26|2023-10-06T21:15:10.5920000-07:00|94|Raise|60.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|08|57941|57078| +21|2023-10-06T21:15:10.9040000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BA80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24896877|40478540|10000|10000|||100.00|80.10|0.00|0.00|81487|90890|10000|10000|||99.93|100.57|0.00|3.14|0001986A|0|1| +38|2023-10-06T21:15:10.9040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6250|10000|0||100.88|104.39|0.00|-2.36|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:10.9040000-07:00|8C8|Blunt Resistance Down|0.00|4002246B|Comet|10FF0004|Buhojaqe Zijaqe|00|57078|69200| +261|2023-10-06T21:15:10.4180000-07:00|Change|10FF0003||||||||||||||||||| +21|2023-10-06T21:15:10.9480000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20250000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|24896877|40478540|10000|10000|||100.00|80.10|0.00|0.00|81487|90890|10000|10000|||99.93|100.57|0.00|3.14|0001986B|0|1| +261|2023-10-06T21:15:10.5080000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T21:15:11.0370000-07:00|10FF0009|Zewo Negiwo|7D|Raise|10FF000A|Dukaro Nezikaro|814000E|940000|1B|7D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|0|10000|||97.46|91.84|0.00|0.29|56823|56823|9131|10000|||102.56|103.81|0.00|-1.53|0001986C|0|1| +38|2023-10-06T21:15:11.0370000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|6731|10000|0||102.56|103.81|0.00|-1.53|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:11.0370000-07:00|A7|Swiftcast|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +261|2023-10-06T21:15:10.6060000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:15:11.1260000-07:00|40022472|Zeromus|00019869|24894584||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:11.1260000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|6731|10000|0||102.56|103.81|0.00|-1.53|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:11.1260000-07:00|8C8|Blunt Resistance Down|0.00|4002246A|Comet|10FF0009|Zewo Negiwo|00|56823|69200| +261|2023-10-06T21:15:10.8380000-07:00|Change|40022A91||| +34|2023-10-06T21:15:11.3050000-07:00|40022A91|Carbuncle|40022A91|Carbuncle|01| +38|2023-10-06T21:15:11.3050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81487|90890|10000|10000|0||99.93|100.57|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:11.3050000-07:00|8C8|Blunt Resistance Down|0.00|40022469|Comet|10FF0007|Kehabiqo Febiqo|00|90890|69200| +21|2023-10-06T21:15:11.3490000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14710000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|81487|90890|10000|10000|||99.93|100.57|0.00|3.14|54201|54201|10000|10000|||100.36|97.55|0.00|-1.95|0001986D|0|1| +21|2023-10-06T21:15:11.3490000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|154003|64B20000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|24894584|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6300|10000|||100.18|103.50|0.00|-3.13|0001986E|0|1| +261|2023-10-06T21:15:10.9490000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T21:15:11.4380000-07:00|40022472|Zeromus|0001986A|24891600||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:11.4820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24894584|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6000|10000|||100.18|103.50|0.00|-3.13|0001986F|0|1| +39|2023-10-06T21:15:11.5270000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-1.28| +37|2023-10-06T21:15:11.5720000-07:00|40022472|Zeromus|0001986B|24883371||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:11.5720000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|752003|35290000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|24891600|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3150|10000|||101.46|105.70|0.00|-3.08|00019870|0|1| +38|2023-10-06T21:15:11.5720000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2950|10000|0||101.46|105.70|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:11.5720000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +39|2023-10-06T21:15:11.7050000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.78|100.02|-0.02|-1.41| +21|2023-10-06T21:15:11.7050000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42000000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|81487|90890|10000|10000|||99.93|100.57|0.00|3.14|24891600|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019871|0|1| +24|2023-10-06T21:15:11.7490000-07:00|40022472|Zeromus|DoT|0|26FC|24883371|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|0|90349|0|10000|||100.20|103.53|0.00|0.00| +38|2023-10-06T21:15:11.7490000-07:00|40022472|Zeromus|005A5A00|24873391|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:15:11.7490000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +36|2023-10-06T21:15:11.8390000-07:00|4330|3| +261|2023-10-06T21:15:11.4320000-07:00|Change|10FF0003||||||||||||||||| +39|2023-10-06T21:15:11.8830000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6450|10000|||100.84|102.76|0.00|-2.98| +21|2023-10-06T21:15:11.8830000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|24873391|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6250|10000|||100.84|102.76|0.00|-2.98|00019872|0|1| +39|2023-10-06T21:15:11.9710000-07:00|10FF0007|Kehabiqo Febiqo|82395|90890|10000|10000|||99.80|100.54|0.00|3.06| +39|2023-10-06T21:15:11.9710000-07:00|10FF0006|Wowobora Gogobora|57266|57266|6200|10000|||100.18|103.50|0.00|-3.13| +37|2023-10-06T21:15:12.0170000-07:00|40022472|Zeromus|0001986E|24847613||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:12.0170000-07:00|40022472|Zeromus|0001986F|24847382||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:12.0170000-07:00|10FF0009|Zewo Negiwo|56823|56823|6952|10000|||101.14|103.03|0.00|-1.70| +38|2023-10-06T21:15:12.0170000-07:00|40022472|Zeromus|005A5A00|24847382|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:15:12.0170000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +261|2023-10-06T21:15:11.5250000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:15:11.6410000-07:00|Change|10FF0009||||||||||| +20|2023-10-06T21:15:12.0610000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|100.18|103.50|0.00|-3.13| +37|2023-10-06T21:15:12.1500000-07:00|10FF0007|Kehabiqo Febiqo|0001986D|87628||||||99.74|100.54|0.00|3.05| +39|2023-10-06T21:15:12.1500000-07:00|10FF0003|Gegehi Gehi|51669|51669|3150|10000|||101.46|105.70|0.00|-3.08| +37|2023-10-06T21:15:12.1950000-07:00|10FF000A|Dukaro Nezikaro|0001986C|0|57941|0|10000|0||97.46|91.84|0.00|0.29|1E00|0|0|01|03000094|08|42700000|| +30|2023-10-06T21:15:12.1950000-07:00|94|Raise|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|08|57941|57078| +26|2023-10-06T21:15:12.1950000-07:00|94|Raise|60.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|08|57941|56823| +21|2023-10-06T21:15:12.1950000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3A860000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|24847382|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.78|100.02|0.00|-1.41|00019873|0|1| +37|2023-10-06T21:15:12.3300000-07:00|40022472|Zeromus|00019870|24833773||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:11.8750000-07:00|Change|10FF0006||||||||||||||| +38|2023-10-06T21:15:12.3750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87628|90890|10000|10000|0||99.63|100.54|-0.01|3.01|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:12.3750000-07:00|A91|Undying Flame|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|90890|57266| +37|2023-10-06T21:15:12.5090000-07:00|10FF0007|Kehabiqo Febiqo|00019871|70732||||||99.63|100.54|0.00|3.01| +37|2023-10-06T21:15:12.5090000-07:00|40022472|Zeromus|00019872|24833773|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:15:12.5090000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +261|2023-10-06T21:15:12.1970000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:15:12.2910000-07:00|Change|40022490||||||||| +261|2023-10-06T21:15:12.2910000-07:00|Change|4002248F||||||||| +21|2023-10-06T21:15:12.7750000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|28590000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|24833773|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3150|10000|||101.43|105.57|0.00|-2.92|00019874|0|1| +38|2023-10-06T21:15:12.7750000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2850|10000|0||101.43|105.57|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:12.7750000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +20|2023-10-06T21:15:12.8190000-07:00|40022472|Zeromus|8B46|Visceral Whirl|40022472|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:15:12.8190000-07:00|4002248F|Zeromus|8B47|Visceral Whirl|4002248F|Zeromus|8.500|119.90|80.10|0.00|-0.79| +20|2023-10-06T21:15:12.8190000-07:00|40022490|Zeromus|8B48|Visceral Whirl|40022490|Zeromus|8.500|80.10|80.10|0.00|0.79| +261|2023-10-06T21:15:12.3890000-07:00|Change|40022472||||||||| +261|2023-10-06T21:15:12.4790000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:15:12.9970000-07:00|40022472|Zeromus|00019873|24818791||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:13.0420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24833773|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.78|100.02|0.00|3.13|00019875|0|1| +261|2023-10-06T21:15:12.5700000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:15:13.1320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|18069|90349|2000|10000|0||100.20|103.53|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:13.1320000-07:00|94|Raise|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|08|90349|57266| +26|2023-10-06T21:15:13.1320000-07:00|2B|Weakness|100.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +26|2023-10-06T21:15:13.1320000-07:00|1A2|Transcendent|5.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +12|2023-10-06T21:15:12.6810000-07:00|19|2579|289|3999|184|306|390|2579|976|2540|184|306|2182|400|400|0|529|4000174A6D2E55| +261|2023-10-06T21:15:12.6810000-07:00|Change|10FF0001||| +261|2023-10-06T21:15:12.6810000-07:00|Change|10FF0001||| +261|2023-10-06T21:15:12.6810000-07:00|Change|10FF0009||||| +261|2023-10-06T21:15:12.7960000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:15:12.7960000-07:00|Change|40022490||||||||||||| +21|2023-10-06T21:15:13.3540000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|189C0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|24818791|40478540|10000|10000|||100.00|80.10|0.00|0.00|18069|90349|2000|10000|||100.20|103.53|0.00|-3.13|00019876|0|1| +21|2023-10-06T21:15:13.3540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|52F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24818791|40478540|10000|10000|||100.00|80.10|0.00|0.00|18069|90349|2000|10000|||100.20|103.53|0.00|-3.13|00019877|0|1| +38|2023-10-06T21:15:13.3540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|18069|90349|2000|10000|0||100.20|103.53|0.00|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:13.3540000-07:00|1A2|Transcendent|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +31|2023-10-06T21:15:13.3540000-07:00|10FF0001||||| +21|2023-10-06T21:15:13.3990000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|504F0000|143E|340000|4|17908000|11B|2A8000|0|0|0|0|0|0|0|0|24818791|40478540|10000|10000|||100.00|80.10|0.00|0.00|70732|90890|10000|10000|||99.63|100.54|0.00|3.01|00019878|0|1| +20|2023-10-06T21:15:13.4430000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.36|102.95|0.00|-1.39| +37|2023-10-06T21:15:13.5330000-07:00|40022472|Zeromus|00019874|24808462||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:13.5330000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|2FEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24818791|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2850|10000|||100.73|102.80|0.00|-2.93|00019879|0|1| +21|2023-10-06T21:15:13.5330000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24818791|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2850|10000|||100.73|102.80|0.00|-2.93|0001987A|0|1| +37|2023-10-06T21:15:13.8000000-07:00|40022472|Zeromus|00019875|24805583||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:13.8880000-07:00|40022472|Zeromus|00019877|24804256||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:13.9760000-07:00|40022472|Zeromus|00019876|24797956||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:14.0210000-07:00|40022472|Zeromus|005A5A00|24797956|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:15:14.0210000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|57941| +26|2023-10-06T21:15:14.0210000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:15:14.0660000-07:00|40022472|Zeromus|0001987A|24797955||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:15:13.6280000-07:00|40022A8C|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|54388|0|10000|||102.42|100.98|0.00|-3.11| +261|2023-10-06T21:15:13.6280000-07:00|Remove|40022A8C| +261|2023-10-06T21:15:13.7460000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:15:14.2890000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|E2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24797955|40478540|10000|10000|||100.00|80.10|0.00|0.00|70732|90890|10000|10000|||99.63|100.54|0.00|3.12|0001987B|0|1| +20|2023-10-06T21:15:14.2890000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.82|102.07|0.00|-0.81| +261|2023-10-06T21:15:13.8560000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:15:14.3330000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|154003|6CF30000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|24797955|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6200|10000|||100.18|103.50|0.00|-3.13|0001987C|0|1| +21|2023-10-06T21:15:14.3330000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|720003|28120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24797955|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2850|10000|||100.73|102.65|0.00|-3.12|0001987D|0|1| +261|2023-10-06T21:15:13.8560000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T21:15:14.3780000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|316B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|24797955|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|6952|10000|||100.36|102.95|0.00|-3.13|0001987E|0|1| +21|2023-10-06T21:15:14.4670000-07:00|10FF0007|Kehabiqo Febiqo|03|Sprint|10FF0007|Kehabiqo Febiqo|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70732|90890|10000|10000|||99.63|100.54|0.00|3.12|70732|90890|10000|10000|||99.63|100.54|0.00|3.12|0001987F|0|1| +39|2023-10-06T21:15:14.5120000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +21|2023-10-06T21:15:14.5560000-07:00|10FF0001|Sesuga Sapisuga|1D6D|Provoke|40022472|Zeromus|18|7C480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24797955|40478540|10000|10000|||100.00|80.10|0.00|0.00|18069|90349|2000|10000|||100.59|101.49|0.00|-3.11|00019880|0|1| +37|2023-10-06T21:15:14.6000000-07:00|10FF0007|Kehabiqo Febiqo|0001987F|70732|90890|10000|10000|0||99.63|100.54|0.00|3.12|1500|0|0|01|01000032|1E|41200000|| +26|2023-10-06T21:15:14.6000000-07:00|32|Sprint|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|1E|90890|90890| +37|2023-10-06T21:15:14.6900000-07:00|40022472|Zeromus|00019879|24785689||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:14.6900000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|33800000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|24797955|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.78|100.02|0.00|3.13|00019881|0|1| +39|2023-10-06T21:15:14.7350000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.78|100.02|0.00|3.13| +38|2023-10-06T21:15:14.7360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70732|90890|10000|10000|0||99.63|100.54|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:14.7360000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:15:14.7360000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2850|10000|0||100.85|102.65|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:14.7360000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +35|2023-10-06T21:15:14.7360000-07:00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|0000|0000|00A3|||| +38|2023-10-06T21:15:14.7360000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|6552|10000|0||100.36|102.95|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:14.7360000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +38|2023-10-06T21:15:14.7360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.78|100.02|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:15:14.7360000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +35|2023-10-06T21:15:14.7360000-07:00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|0000|0000|00A3|||| +38|2023-10-06T21:15:14.7360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6050|10000|0||100.82|102.07|0.00|-0.81|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:14.7360000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:15:14.7360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|5900|10000|0||100.18|103.50|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:14.7360000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +35|2023-10-06T21:15:14.7360000-07:00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|0000|0000|00A3|||| +24|2023-10-06T21:15:14.7790000-07:00|40022472|Zeromus|DoT|0|284C|24785689|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|18069|90349|2000|10000|||100.59|101.49|0.00|-3.11| +38|2023-10-06T21:15:14.7790000-07:00|40022472|Zeromus|005A5A00|24775373|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T21:15:14.8240000-07:00|40022472|Zeromus|0001987B|24771743||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:14.8700000-07:00|10FF0001|Sesuga Sapisuga|18972|90349|2200|10000|||100.59|101.49|0.00|-3.11| +36|2023-10-06T21:15:14.8700000-07:00|440C|3| +261|2023-10-06T21:15:14.3700000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:15:14.9140000-07:00|40022472|Zeromus|00019878|24751184||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:14.9140000-07:00|10FF0007|Kehabiqo Febiqo|00019878|76764||||||99.63|100.54|0.00|3.12| +39|2023-10-06T21:15:14.9140000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6250|10000|||100.82|102.07|0.00|-0.81| +261|2023-10-06T21:15:14.4690000-07:00|Change|10FF0004||||| +37|2023-10-06T21:15:14.9580000-07:00|40022472|Zeromus|0001987C|24723293||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:15.0040000-07:00|10FF0007|Kehabiqo Febiqo|77672|90890|10000|10000|||99.63|100.54|0.00|3.12| +39|2023-10-06T21:15:15.0040000-07:00|10FF0006|Wowobora Gogobora|57266|57266|6100|10000|||100.18|103.50|0.00|-3.13| +261|2023-10-06T21:15:14.5810000-07:00|Change|10FF0006||| +39|2023-10-06T21:15:15.0480000-07:00|10FF0009|Zewo Negiwo|56823|56823|6773|10000|||100.36|102.95|0.00|-3.13| +21|2023-10-06T21:15:15.0480000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|156003|95230000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|24723293|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6100|10000|||100.18|103.50|0.00|-3.13|00019882|0|1| +38|2023-10-06T21:15:15.0480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6100|10000|0||100.18|103.50|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:15.0480000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +39|2023-10-06T21:15:15.1800000-07:00|10FF0003|Gegehi Gehi|51669|51669|3050|10000|||103.10|102.48|0.00|-3.13| +261|2023-10-06T21:15:14.6930000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:15:15.2250000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|200004|21620000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|18972|90349|2200|10000|||100.59|101.49|0.00|-3.11|54201|54201|10000|10000|||100.36|97.55|0.00|2.01|00019883|0|1| +21|2023-10-06T21:15:15.2250000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|B710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24723293|40478540|10000|10000|||100.00|80.10|0.00|0.00|18972|90349|2200|10000|||100.59|101.49|0.00|-3.11|00019884|0|1| +261|2023-10-06T21:15:14.8130000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:15:15.4480000-07:00|40022472|Zeromus|00019881|24710109||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:15.4480000-07:00|40022472|Zeromus|005A5A00|24710109|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:15:15.4480000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +37|2023-10-06T21:15:15.4930000-07:00|40022472|Zeromus|0001987D|24699851||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:15:15.5380000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|104.42|101.56|0.00|-3.13| +21|2023-10-06T21:15:15.6300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24699851|40478540|10000|10000|||100.00|80.10|0.00|0.00|18972|90349|2200|10000|||100.57|100.59|0.00|-3.11|00019885|0|1| +31|2023-10-06T21:15:15.6300000-07:00|10FF0001||||| +37|2023-10-06T21:15:15.6720000-07:00|40022472|Zeromus|0001987E|24687200||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:15.6720000-07:00|10FF0009|Zewo Negiwo|03|Sprint|10FF0009|Zewo Negiwo|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|6773|10000|||100.73|104.50|0.00|0.79|56823|56823|6773|10000|||100.73|104.50|0.00|0.79|00019886|0|1| +22|2023-10-06T21:15:15.6720000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19CD0000|480E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57078|57078|6250|10000|||100.82|102.07|0.00|-0.64|57078|57078|6250|10000|||100.82|102.07|0.00|-0.64|00019887|0|7| +22|2023-10-06T21:15:15.6720000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|194A0000|760E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57266|57266|6100|10000|||100.16|100.98|0.00|-3.13|57078|57078|6250|10000|||100.82|102.07|0.00|-0.64|00019887|1|7| +22|2023-10-06T21:15:15.6720000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|18F90000|F40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|18972|90349|2200|10000|||100.57|100.59|0.00|-3.11|57078|57078|6250|10000|||100.82|102.07|0.00|-0.64|00019887|2|7| +22|2023-10-06T21:15:15.6720000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|19790000|C10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|77672|90890|10000|10000|||99.63|100.54|0.00|3.12|57078|57078|6250|10000|||100.82|102.07|0.00|-0.64|00019887|3|7| +22|2023-10-06T21:15:15.6720000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19970000|F10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.78|100.02|0.00|3.13|57078|57078|6250|10000|||100.82|102.07|0.00|-0.64|00019887|4|7| +22|2023-10-06T21:15:15.6720000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|200004|290E0000|B00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|56823|56823|6773|10000|||100.73|104.50|0.00|0.79|57078|57078|6250|10000|||100.82|102.07|0.00|-0.64|00019887|5|7| +22|2023-10-06T21:15:15.6720000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|1A340000|EC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|51669|51669|3050|10000|||104.59|101.44|0.00|-3.11|57078|57078|6250|10000|||100.82|102.07|0.00|-0.64|00019887|6|7| +38|2023-10-06T21:15:15.6720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77672|90890|10000|10000|11||99.63|100.54|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:15.6720000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:15:15.6720000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|6773|10000|29||100.73|104.50|0.00|0.79|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:15.6720000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +38|2023-10-06T21:15:15.6720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||99.78|100.02|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:15:15.6720000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:15:15.6720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6100|10000|18||100.16|100.98|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:15.6720000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:15:15.6720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|18972|90349|2200|10000|11||100.57|100.59|0.00|-3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:15:15.6720000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:15:15.6720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5250|10000|18||100.82|102.07|0.00|-0.64|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:15.6720000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:15:15.6720000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3050|10000|20||104.59|101.44|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:15.6720000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +23|2023-10-06T21:15:15.7160000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|Cancelled| +21|2023-10-06T21:15:15.7160000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24687200|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.76|99.98|0.00|-3.09|00019888|0|1| +37|2023-10-06T21:15:15.8040000-07:00|10FF0009|Zewo Negiwo|00019886|56823|56823|6773|10000|29||101.58|105.48|0.00|0.93|1800|0|0|01|04000032|1E|41200000|| +26|2023-10-06T21:15:15.8040000-07:00|32|Sprint|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|1E|56823|56823| +37|2023-10-06T21:15:15.8040000-07:00|40022472|Zeromus|00019884|24684271||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:15.8500000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|25C30000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|24687200|40478540|10000|10000|||100.00|80.10|0.00|0.00|77672|90890|10000|10000|||99.63|100.54|0.00|3.12|00019889|0|1| +37|2023-10-06T21:15:15.8940000-07:00|40022472|Zeromus|00019882|24646092||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:15.4230000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:15:15.5240000-07:00|Change|40022472||||| +37|2023-10-06T21:15:16.0280000-07:00|10FF0001|Sesuga Sapisuga|00019883|27518||||||101.44|101.02|0.00|1.90| +21|2023-10-06T21:15:16.0280000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|6100|10000|||100.14|100.57|0.00|-3.13|57266|57266|6100|10000|||100.14|100.57|0.00|-3.13|0001988A|0|1| +21|2023-10-06T21:15:16.0280000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|17250000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|24646092|40478540|10000|10000|||100.00|80.10|0.00|0.00|18972|90349|2200|10000|||101.44|101.02|0.00|1.90|0001988B|0|1| +37|2023-10-06T21:15:16.1610000-07:00|40022472|Zeromus|00019885|24644853||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:15.8230000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:15:16.2510000-07:00|40022A91|Carbuncle|54388|54388|10000|10000|||100.19|101.78|0.00|0.01| +21|2023-10-06T21:15:16.2510000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|5250|10000|||102.53|103.76|0.00|0.79|57078|57078|5250|10000|||102.53|103.76|0.00|0.79|0001988C|0|1| +38|2023-10-06T21:15:16.2510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|11588|57941|2000|10000|0||100.37|102.95|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:16.2510000-07:00|94|Raise|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|08|57941|56823| +26|2023-10-06T21:15:16.2510000-07:00|2B|Weakness|100.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +26|2023-10-06T21:15:16.2510000-07:00|1A2|Transcendent|5.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +261|2023-10-06T21:15:15.8230000-07:00|Change|10FF000A||||| +37|2023-10-06T21:15:16.3840000-07:00|40022472|Zeromus|00019889|24635186||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:15.9380000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:15:16.4740000-07:00|40022472|Zeromus|00019888|24632834||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:16.4740000-07:00|10FF000A|Dukaro Nezikaro|12167|57941|2200|10000|||100.37|102.95|0.00|0.00| +261|2023-10-06T21:15:16.1500000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:15:16.6520000-07:00|10FF0006|Wowobora Gogobora|0001988A|57266|57266|6100|10000|18||98.56|98.30|0.00|-2.59|1B00|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T21:15:16.6520000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:15:16.2490000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:15:16.3490000-07:00|Change|10FF000A||| +261|2023-10-06T21:15:16.3490000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:15:16.7860000-07:00|40022472|Zeromus|0001988B|24626909||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:16.7860000-07:00|10FF0001|Sesuga Sapisuga|0001988B|27518|90349|3200|10000|11||105.12|101.71|0.00|1.71|1300|0|0|0| +37|2023-10-06T21:15:16.7860000-07:00|10FF0004|Buhojaqe Zijaqe|00019887|57078|57078|5250|10000|18||104.04|104.67|0.00|0.99|1C00|0|0|01|05000129|0|41E76E94|| +261|2023-10-06T21:15:16.3490000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:15:16.8760000-07:00|10FF0004|Buhojaqe Zijaqe|0001988C|57078|57078|5250|10000|18||104.44|104.89|0.00|0.98|1C00|0|0|01|060004B4|0|41A80000|| +26|2023-10-06T21:15:16.8760000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +37|2023-10-06T21:15:16.9200000-07:00|10FF0006|Wowobora Gogobora|00019887|57266|57266|6100|10000|18||97.76|97.07|-0.02|-2.59|1B01|0|0|01|03000129|0|41E65C25|| +21|2023-10-06T21:15:16.9200000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24626909|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6100|10000|||97.76|97.07|-0.02|-2.59|0001988D|0|1| +261|2023-10-06T21:15:16.5440000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:15:17.0090000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|25100000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|24626909|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|5250|10000|||104.89|105.35|0.00|0.93|0001988E|0|1| +37|2023-10-06T21:15:17.0540000-07:00|10FF0001|Sesuga Sapisuga|00019887|33911|90349|3200|10000|11||106.16|102.29|0.00|1.69|1302|0|0|01|02000129|0|41E54BC2|| +261|2023-10-06T21:15:16.6560000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:16.6560000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:15:17.1870000-07:00|10FF0007|Kehabiqo Febiqo|00019887|84193|90890|10000|10000|11||106.76|98.40|0.00|1.45|1503|0|0|01|09000129|0|41E43953|| +21|2023-10-06T21:15:17.1870000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|3AAD0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|24626909|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||96.58|92.65|0.00|-2.69|0001988F|0|1| +21|2023-10-06T21:15:17.1870000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24626909|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3050|10000|||101.03|95.64|0.00|-2.39|00019890|0|1| +37|2023-10-06T21:15:17.3200000-07:00|10FF0008|Kokosaze Lulusaze|00019887|63151|63151|10000|10000|16||96.50|92.49|0.00|2.86|1F04|0|0|01|06000129|0|41E328F0|| +21|2023-10-06T21:15:17.3200000-07:00|10FF0001|Sesuga Sapisuga|03|Sprint|10FF0001|Sesuga Sapisuga|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33911|90349|3200|10000|||107.71|103.52|0.00|1.69|33911|90349|3200|10000|||107.71|103.52|0.00|1.69|00019891|0|1| +261|2023-10-06T21:15:16.8890000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:15:16.8890000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:15:17.4540000-07:00|40022472|Zeromus|0001988D|24626758||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:17.4540000-07:00|10FF0001|Sesuga Sapisuga|00019891|33911|90349|3200|10000|11||108.23|103.92|0.00|1.68|1300|0|0|01|05000032|1E|41200000|| +26|2023-10-06T21:15:17.4540000-07:00|32|Sprint|10.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|90349|90349| +37|2023-10-06T21:15:17.4540000-07:00|10FF0009|Zewo Negiwo|00019887|56823|56823|6773|10000|29||110.38|110.41|0.00|1.04|1805|0|0|01|03000129|0|41E21681|| +39|2023-10-06T21:15:17.5440000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|3.12| +21|2023-10-06T21:15:17.5440000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|150003|44D30000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|24626758|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6100|10000|||95.24|93.61|0.00|-2.54|00019892|0|1| +22|2023-10-06T21:15:17.5440000-07:00|10FF000A|Dukaro Nezikaro|8D6|Shukuchi|10FF000A|Dukaro Nezikaro|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12167|57941|2200|10000|||98.94|99.68|0.00|-2.45|12167|57941|2200|10000|||98.94|99.68|0.00|-2.45|00019893|0|1| +38|2023-10-06T21:15:17.5440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|12167|57941|2200|10000|0||98.94|99.68|0.00|-2.45|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:17.5440000-07:00|1A2|Transcendent|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +261|2023-10-06T21:15:17.0080000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:15:17.5880000-07:00|10FF0003|Gegehi Gehi|00019887|51669|51669|3050|10000|20||99.20|94.22|0.00|-2.25|2306|0|0|01|03000129|0|41E10412|| +38|2023-10-06T21:15:17.6330000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|6773|10000|29||112.18|111.24|0.00|1.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:17.6330000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +38|2023-10-06T21:15:17.6330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||96.14|91.78|0.00|3.03|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:17.6330000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +261|2023-10-06T21:15:17.2270000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:15:17.6780000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B5A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24626758|40478540|10000|10000|||100.00|80.10|0.00|0.00|84193|90890|10000|10000|||109.29|96.91|0.00|1.40|00019894|0|1| +261|2023-10-06T21:15:17.2270000-07:00|Change|40022A91||||||||| +37|2023-10-06T21:15:17.7220000-07:00|40022472|Zeromus|00019890|24626757||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:17.7220000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||95.79|91.09|0.00|-3.07| +261|2023-10-06T21:15:17.3190000-07:00|Change|10FF0009||||||||| +24|2023-10-06T21:15:17.7670000-07:00|40022472|Zeromus|DoT|0|2179|24626758|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:15:17.7670000-07:00|40022472|Zeromus|005A5A00|24618188|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:17.7670000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +27|2023-10-06T21:15:17.8560000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:15:17.8560000-07:00|10FF0009|Zewo Negiwo|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:15:17.8560000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:15:17.8560000-07:00|10FF0006|Wowobora Gogobora|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:15:17.8560000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:15:17.8560000-07:00|10FF0003|Gegehi Gehi|0000|0000|010B|0000|0000|0000| +36|2023-10-06T21:15:17.8560000-07:00|44E8|3| +261|2023-10-06T21:15:17.3190000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:15:17.9000000-07:00|10FF0001|Sesuga Sapisuga|34814|90349|3400|10000|||110.82|105.92|0.00|1.74| +39|2023-10-06T21:15:17.9000000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|5050|10000|||109.43|108.20|0.00|1.35| +37|2023-10-06T21:15:17.9450000-07:00|40022472|Zeromus|0001988E|24608700||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:17.9890000-07:00|40022472|Zeromus|0001988F|24593679||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:17.9890000-07:00|10FF0007|Kehabiqo Febiqo|85101|90890|10000|10000|||109.86|97.15|0.00|1.31| +39|2023-10-06T21:15:17.9890000-07:00|10FF0006|Wowobora Gogobora|57266|57266|6300|10000|||94.17|92.20|-0.02|2.70| +261|2023-10-06T21:15:17.5110000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:15:18.0330000-07:00|10FF0009|Zewo Negiwo|56823|56823|6994|10000|||113.93|111.38|0.00|1.61| +39|2023-10-06T21:15:18.1670000-07:00|10FF0003|Gegehi Gehi|51669|51669|3250|10000|||96.81|91.28|0.00|-2.47| +261|2023-10-06T21:15:17.7180000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:15:18.2120000-07:00|40022472|Zeromus|00019894|24590773||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:18.2120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6300|10000|18||92.70|90.62|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:18.2120000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:15:18.2120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5050|10000|18||110.94|109.58|0.00|1.00|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:18.2120000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +261|2023-10-06T21:15:17.7180000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:17.8330000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:15:18.3010000-07:00|40022472|Zeromus|00019892|24573154||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:18.3010000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|37790000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|24590773|40478540|10000|10000|||100.00|80.10|0.00|0.00|85101|90890|10000|10000|||110.62|97.89|0.00|1.05|00019895|0|1| +261|2023-10-06T21:15:17.8330000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T21:15:18.3900000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24590773|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.92|88.52|0.00|-2.56|00019896|0|1| +261|2023-10-06T21:15:17.9450000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:15:18.4800000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|149F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|12167|57941|2200|10000|||89.37|80.37|0.00|-2.68|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019897|0|1| +261|2023-10-06T21:15:18.0560000-07:00|Change|40022A91||||||||| +20|2023-10-06T21:15:18.5700000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|116.55|113.05|0.00|0.88| +20|2023-10-06T21:15:18.5700000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|1.500|114.49|107.38|0.00|-2.65| +261|2023-10-06T21:15:18.1560000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:15:18.3380000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:15:18.3380000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:15:18.9270000-07:00|40022472|Zeromus|00019895|24558953||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:18.4300000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:15:19.1500000-07:00|40022472|Zeromus|00019896|24556147||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:18.6610000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:18.6610000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:15:19.2400000-07:00|40022A91|Carbuncle|54388|54388|10000|10000|||91.49|91.24|0.00|-2.42| +37|2023-10-06T21:15:19.2850000-07:00|10FF000A|Dukaro Nezikaro|00019897|17446||||||90.74|82.79|0.00|-1.36| +38|2023-10-06T21:15:19.3300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85101|90890|10000|10000|11||114.06|103.22|0.00|0.04|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:19.3300000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:15:19.3300000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3250|10000|20||92.96|85.70|0.00|-2.56|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:19.3300000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:15:19.3740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5600|10000|18||114.74|111.97|0.00|0.67|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:18.8910000-07:00|Change|10FF0001||||||||||||||||||| +261|2023-10-06T21:15:18.8910000-07:00|Change|40022A91||||||||| +39|2023-10-06T21:15:19.4640000-07:00|10FF000A|Dukaro Nezikaro|18025|57941|2400|10000|||91.13|83.08|0.00|-2.15| +38|2023-10-06T21:15:19.4640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6850|10000|18||89.23|85.08|0.00|-2.50|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:19.0070000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:15:19.0070000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:15:19.5090000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|4F260000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|24556147|40478540|10000|10000|||100.00|80.10|0.00|0.00|56823|56823|6994|10000|||117.60|114.18|0.00|-2.66|00019898|0|1| +21|2023-10-06T21:15:19.5530000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|1A380000|4|1C0A8000|0|0|0|0|0|0|0|0|0|0|0|0|24556147|40478540|10000|10000|||100.00|80.10|0.00|0.00|34814|90349|3400|10000|||114.49|107.38|0.00|-2.65|00019899|0|1| +21|2023-10-06T21:15:19.6870000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|39D40000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|24556147|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||90.23|84.03|0.00|-2.42|0001989A|0|1| +261|2023-10-06T21:15:19.2130000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:15:19.3100000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:15:19.4070000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:15:20.0000000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|24556147|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6850|10000|||89.61|85.01|0.00|1.60|0001989B|0|1| +38|2023-10-06T21:15:20.0000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6850|10000|18||89.61|85.01|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:20.0000000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:15:20.0430000-07:00|40022AD2||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:15:20.0450000-07:00|40022AD2||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:15:20.0450000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24556147|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6850|10000|||89.74|85.01|-0.02|2.02|0001989C|0|1| +21|2023-10-06T21:15:20.1340000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|6594|10000|||117.60|114.18|0.00|-2.66|56823|56823|6594|10000|||117.60|114.18|0.00|-2.66|0001989D|0|1| +261|2023-10-06T21:15:19.5990000-07:00|Add|40022AD2||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:15:19.5990000-07:00|40022AD2|Emerald Garuda|00|5A|10FF0006|00||10263|13506|54388|54388|10000|10000|||88.91|87.38|0.00|2.02| +38|2023-10-06T21:15:20.1780000-07:00|40022472|Zeromus|005A5A00|24556147|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:15:20.1780000-07:00|74F|Dia|0.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|56823| +26|2023-10-06T21:15:20.1780000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:15:19.7160000-07:00|Change|40022AD2||||| +37|2023-10-06T21:15:20.3120000-07:00|40022472|Zeromus|00019899|24549435||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:20.3120000-07:00|10FF0001|Sesuga Sapisuga|00019899|41992||||||114.49|107.38|0.00|-2.65| +261|2023-10-06T21:15:19.9390000-07:00|Change|10FF0001||||||||||||||| +261|2023-10-06T21:15:19.9390000-07:00|Change|40022A91||||||||| +37|2023-10-06T21:15:20.4910000-07:00|40022472|Zeromus|0001989A|24534631||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:20.5350000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +37|2023-10-06T21:15:20.5800000-07:00|40022472|Zeromus|0001989C|24534481||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:20.6690000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24534481|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3250|10000|||92.12|83.85|0.00|-2.73|0001989E|0|1| +39|2023-10-06T21:15:20.7130000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||90.23|84.03|0.00|1.95| +37|2023-10-06T21:15:20.7570000-07:00|10FF0009|Zewo Negiwo|0001989D|56823|56823|6594|10000|29||117.60|114.18|0.00|-2.66|1800|0|0|01|020004B4|0|41A80000|| +26|2023-10-06T21:15:20.7570000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +24|2023-10-06T21:15:20.7570000-07:00|40022472|Zeromus|DoT|0|C7C|24534481|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:15:20.7570000-07:00|40022472|Zeromus|005A5A00|24531285|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:15:20.8020000-07:00|40022472|Zeromus|00019898|24511023||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:20.8020000-07:00|40022472|Zeromus|8B46|Visceral Whirl|40022472|Zeromus|1B|8B468000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24531285|40478540|10000|10000|||100.00|80.10|0.00|0.00|24531285|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001989F|0|1| +261|2023-10-06T21:15:20.2530000-07:00|Change|40022472||||| +21|2023-10-06T21:15:20.8020000-07:00|10FF000A|Dukaro Nezikaro|6514|Huraijin|40022472|Zeromus|712003|1A340000|3E|C98000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|24531285|40478540|10000|10000|||100.00|80.10|0.00|0.00|18025|57941|2400|10000|||92.24|83.54|0.00|-3.09|000198A0|0|1| +21|2023-10-06T21:15:20.8020000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|7C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24531285|40478540|10000|10000|||100.00|80.10|0.00|0.00|18025|57941|2400|10000|||92.24|83.54|0.00|-3.09|000198A1|0|1| +38|2023-10-06T21:15:20.8020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18025|57941|2400|10000|0||92.24|83.54|0.00|-3.09|0|0|0||||||||||||||||||||||||| +36|2023-10-06T21:15:20.8460000-07:00|45C4|3| +39|2023-10-06T21:15:20.8900000-07:00|10FF0001|Sesuga Sapisuga|42895|90349|2600|10000|||114.49|107.38|0.00|-2.65| +39|2023-10-06T21:15:20.8900000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|5800|10000|||115.01|112.23|0.00|-2.47| +261|2023-10-06T21:15:20.3510000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:15:20.9790000-07:00|10FF0007|Kehabiqo Febiqo|86009|90890|10000|10000|||115.71|106.22|0.00|0.50| +39|2023-10-06T21:15:20.9790000-07:00|10FF0006|Wowobora Gogobora|57266|57266|7050|10000|||89.74|85.01|0.00|2.02| +20|2023-10-06T21:15:20.9790000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|117.60|114.18|0.00|-2.66| +261|2023-10-06T21:15:20.4440000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:15:20.4440000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:15:21.0240000-07:00|10FF0006|Wowobora Gogobora|0001989B|57266|57266|7050|10000|18||89.74|85.01|0.00|2.02|1B00|0|0|01|0AA5|0|0|| +39|2023-10-06T21:15:21.0240000-07:00|10FF0009|Zewo Negiwo|56823|56823|6815|10000|||117.60|114.18|0.00|-2.66| +38|2023-10-06T21:15:21.0240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|7050|10000|18||89.74|85.01|0.00|2.02|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:20.5570000-07:00|Change|10FF000A||||||||||||| +261|2023-10-06T21:15:20.5570000-07:00|Change|40022AD2||| +39|2023-10-06T21:15:21.1580000-07:00|10FF0003|Gegehi Gehi|51669|51669|3450|10000|||92.12|83.85|0.00|-2.73| +261|2023-10-06T21:15:20.6760000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:15:21.2030000-07:00|40022472|Zeromus|0001989E|24511022||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:21.3360000-07:00|40022472|Zeromus|000198A1|24509031||||||100.00|80.10|0.00|0.00| +23|2023-10-06T21:15:21.3800000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Interrupted| +21|2023-10-06T21:15:21.3810000-07:00|10FF0009|Zewo Negiwo|8B4F|Acceleration Bomb|10FF0009|Zewo Negiwo|603|64C90000|100140E|6FD0000|0|0|0|0|0|0|0|0|0|0|0|0|56823|56823|6815|10000|||117.60|114.18|0.00|-2.66|56823|56823|6815|10000|||117.60|114.18|0.00|-2.66|000198A2|0|1| +38|2023-10-06T21:15:21.3810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86009|90890|10000|10000|11||115.71|106.22|0.00|0.50|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:21.3810000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:15:21.3810000-07:00|10FF0009|Zewo Negiwo|005A5A18|56823|56823|6815|10000|29||117.60|114.18|0.00|-2.66|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:21.3810000-07:00|6FD|Vulnerability Up|60.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|01|56823|56823| +30|2023-10-06T21:15:21.3810000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +38|2023-10-06T21:15:21.3810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||90.23|84.03|0.00|1.95|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:21.3810000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +38|2023-10-06T21:15:21.3810000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|7050|10000|18||89.74|85.01|0.00|2.02|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:21.3810000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:15:21.3810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5800|10000|18||115.01|112.23|0.00|-2.47|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:21.3810000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:15:21.3810000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3450|10000|20||92.12|83.85|0.00|-2.73|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:21.3810000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +261|2023-10-06T21:15:20.9090000-07:00|Change|10FF0001||| +37|2023-10-06T21:15:21.6020000-07:00|40022472|Zeromus|000198A0|24502323||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:15:21.6020000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|117.60|114.18|0.00|-2.66| +21|2023-10-06T21:15:21.6020000-07:00|4002248F|Zeromus|8B47|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|000198A3|0|0| +21|2023-10-06T21:15:21.6020000-07:00|40022490|Zeromus|8B48|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|000198A4|0|0| +261|2023-10-06T21:15:21.1360000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:15:21.1360000-07:00|Change|4002248F||||||||||||| +21|2023-10-06T21:15:21.7360000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14F90000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|18025|57941|2400|10000|||92.24|83.54|0.00|1.99|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|000198A5|0|1| +21|2023-10-06T21:15:21.8250000-07:00|10FF000A|Dukaro Nezikaro|1D75|Second Wind|10FF000A|Dukaro Nezikaro|4|1E690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18025|57941|2400|10000|||92.24|83.54|0.00|1.99|18025|57941|2400|10000|||92.24|83.54|0.00|1.99|000198A6|0|1| +261|2023-10-06T21:15:21.3290000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:15:21.3290000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:15:21.3290000-07:00|Change|4002248C||||||||| +261|2023-10-06T21:15:21.3290000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:15:21.3290000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:15:21.3290000-07:00|Change|40022489||||||||| +20|2023-10-06T21:15:21.9130000-07:00|40022489|Zeromus|8B49|Miasmic Blast|40022489|Zeromus|7.700|100.00|114.00|0.00|0.79| +20|2023-10-06T21:15:21.9130000-07:00|4002248A|Zeromus|8CF8|unknown_8cf8|4002248A|Zeromus|7.700|100.00|114.00|0.00|0.79| +20|2023-10-06T21:15:21.9130000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|4002248B|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:15:21.9130000-07:00|4002248C|Zeromus|8CF8|unknown_8cf8|4002248C|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:15:21.9130000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|4002248D|Zeromus|7.700|107.00|93.00|0.00|0.79| +20|2023-10-06T21:15:21.9130000-07:00|4002248E|Zeromus|8CF8|unknown_8cf8|4002248E|Zeromus|7.700|107.00|93.00|0.00|0.79| +37|2023-10-06T21:15:22.0030000-07:00|10FF0009|Zewo Negiwo|000198A2|31022|56823|6815|10000|0||117.60|114.18|0.00|-2.66|1800|0|0|02|03000000|0|0|||||| +261|2023-10-06T21:15:21.5200000-07:00|Change|10FF0009||||| +261|2023-10-06T21:15:21.5200000-07:00|Change|40022A91||||||| +38|2023-10-06T21:15:22.0030000-07:00|10FF0009|Zewo Negiwo|005A5A18|31022|56823|6815|10000|0||117.60|114.18|0.00|-2.66|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:22.0030000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|56823|57078| +21|2023-10-06T21:15:22.0480000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24502323|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||90.23|84.03|0.00|1.95|000198A7|0|1| +21|2023-10-06T21:15:22.0480000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|712003|12DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24502323|40478540|10000|10000|||100.00|80.10|0.00|0.00|42895|90349|2600|10000|||114.49|107.38|0.00|-2.65|000198A8|0|1| +21|2023-10-06T21:15:22.0920000-07:00|40022AD2|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|350003|65160000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|24502323|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||88.91|87.38|0.00|2.02|000198A9|0|1| +21|2023-10-06T21:15:22.1800000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|315F0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|24502323|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||90.23|84.03|0.00|1.95|000198AA|0|1| +261|2023-10-06T21:15:21.8630000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:21.8630000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:15:21.8630000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:15:21.8630000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:15:21.8630000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:15:21.8630000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:15:21.8630000-07:00|Change|4002248D||||||||||||| +23|2023-10-06T21:15:22.3590000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +261|2023-10-06T21:15:21.9780000-07:00|Change|10FF0004||| +38|2023-10-06T21:15:22.4040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6350|10000|18||115.01|112.23|0.00|-2.47|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:22.4490000-07:00|10FF000A|Dukaro Nezikaro|000198A6|25810||||||92.24|83.54|0.00|1.99| +261|2023-10-06T21:15:22.1030000-07:00|Change|10FF000A||| +20|2023-10-06T21:15:22.4490000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|92.12|83.85|0.00|-2.73| +261|2023-10-06T21:15:22.1030000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:15:22.1030000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T21:15:22.4930000-07:00|10FF000A|Dukaro Nezikaro|26389|57941|2600|10000|||92.24|83.54|0.00|1.99| +20|2023-10-06T21:15:22.4930000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|89.74|85.01|0.00|2.02| +38|2023-10-06T21:15:22.4930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|7600|10000|18||89.74|85.01|0.00|2.02|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:22.5380000-07:00|10FF000A|Dukaro Nezikaro|000198A5|31758||||||92.24|83.54|0.00|1.99| +38|2023-10-06T21:15:22.5380000-07:00|10FF0009|Zewo Negiwo|005A5A18|31022|56823|7365|10000|0||117.58|114.20|0.00|-2.23|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:22.6260000-07:00|40022472|Zeromus|000198A8|24497492||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:22.7600000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750605|9B40000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|42895|90349|2600|10000|||109.75|97.60|0.00|-2.80|24502323|40478540|10000|10000|||100.00|80.10|0.00|0.00|000198AB|0|1| +37|2023-10-06T21:15:22.8040000-07:00|40022472|Zeromus|000198A7|24495200||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:22.3950000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:15:22.8940000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|1EC60000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|24495200|40478540|10000|10000|||100.00|80.10|0.00|0.00|42895|90349|2600|10000|||110.12|96.81|0.00|-2.77|000198AC|0|1| +38|2023-10-06T21:15:22.8940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42895|90349|2600|10000|11||110.12|96.81|0.00|-2.77|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:22.8940000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:15:22.8940000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:15:22.9380000-07:00|40022472|Zeromus|000198AA|24482561||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:22.9830000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|A190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24482561|40478540|10000|10000|||100.00|80.10|0.00|0.00|31758|57941|2600|10000|||92.27|83.54|0.00|2.41|000198AD|0|1| +261|2023-10-06T21:15:22.4930000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:22.4930000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:15:23.0720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|50A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24482561|40478540|10000|10000|||100.00|80.10|0.00|0.00|42895|90349|2600|10000|||110.82|95.28|0.00|-2.75|000198AE|0|1| +31|2023-10-06T21:15:23.0720000-07:00|10FF0001||||| +21|2023-10-06T21:15:23.2500000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|30280000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|24482561|40478540|10000|10000|||100.00|80.10|0.00|0.00|86009|90890|10000|10000|||111.78|101.55|0.00|-2.40|000198AF|0|1| +21|2023-10-06T21:15:23.2500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24482561|40478540|10000|10000|||100.00|80.10|0.00|0.00|86009|90890|10000|10000|||111.78|101.55|0.00|-2.40|000198B0|0|1| +38|2023-10-06T21:15:23.2500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86009|90890|10000|10000|11||111.78|101.55|0.00|-2.40|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:23.2500000-07:00|A75|Surging Tempest|37.61|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +261|2023-10-06T21:15:22.7170000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:15:23.3390000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|6350|10000|||115.01|112.22|0.00|-2.52|57078|57078|6350|10000|||115.01|112.22|0.00|-2.52|000198B1|0|1| +37|2023-10-06T21:15:23.3830000-07:00|40022472|Zeromus|000198A9|24456683||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:22.9440000-07:00|Change|10FF0004||||||| +37|2023-10-06T21:15:23.4710000-07:00|40022472|Zeromus|000198AC|24448805||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:23.4710000-07:00|10FF0001|Sesuga Sapisuga|000198AC|42895|90349|2600|10000|11||113.14|94.32|0.00|-2.75|1300|0|0|02|0600076E|03|41F00000|||||| +37|2023-10-06T21:15:23.4710000-07:00|10FF0004|Buhojaqe Zijaqe|000198B1|57078|57078|6350|10000|18||115.01|112.21|0.00|-2.67|1C00|0|0|01|04000032|1E|41200000|| +26|2023-10-06T21:15:23.4710000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|57078|57078| +38|2023-10-06T21:15:23.4710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42895|90349|2600|10000|11||113.14|94.32|0.00|-2.75|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:15:23.5160000-07:00|40022472|Zeromus|000198AD|24446220||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:23.5160000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +37|2023-10-06T21:15:23.5600000-07:00|10FF0001|Sesuga Sapisuga|000198AB|40411|90349|2600|10000|0||113.87|94.02|0.00|-2.75|1300|0|0|01|02000000|0|0|| +21|2023-10-06T21:15:23.5600000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|11340000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|24448805|40478540|10000|10000|||100.00|80.10|0.00|0.00|31758|57941|2600|10000|||95.95|84.61|0.00|2.13|000198B2|0|1| +38|2023-10-06T21:15:23.5600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|40411|90349|2600|10000|0||113.87|94.02|0.00|-2.75|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:23.5600000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +37|2023-10-06T21:15:23.6040000-07:00|40022472|Zeromus|000198AE|24444930||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:23.6960000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||90.08|84.83|0.00|0.18| +22|2023-10-06T21:15:23.6960000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|32A60000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|31022|56823|7365|10000|||111.64|110.48|0.00|-2.87|31022|56823|7365|10000|||111.64|110.48|0.00|-2.87|000198B3|0|4| +22|2023-10-06T21:15:23.6960000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|31CE0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|6350|10000|||114.58|110.95|0.00|-2.73|31022|56823|7365|10000|||111.64|110.48|0.00|-2.87|000198B3|1|4| +22|2023-10-06T21:15:23.6960000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|200004|51D50000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|86009|90890|10000|10000|||110.18|99.71|0.00|-2.66|31022|56823|7365|10000|||111.64|110.48|0.00|-2.87|000198B3|2|4| +22|2023-10-06T21:15:23.6960000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|200004|4F6B0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|40411|90349|2600|10000|||114.64|93.19|0.00|-1.70|31022|56823|7365|10000|||111.64|110.48|0.00|-2.87|000198B3|3|4| +04|2023-10-06T21:15:23.2580000-07:00|40022A91|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||88.73|86.93|0.00|-2.60| +261|2023-10-06T21:15:23.2580000-07:00|Remove|40022A91| +37|2023-10-06T21:15:23.7830000-07:00|40022472|Zeromus|000198B0|24442127||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:15:23.7830000-07:00|40022472|Zeromus|DoT|0|C7F|24444930|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:15:23.7830000-07:00|40022472|Zeromus|005A5A00|24438928|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:23.7830000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:15:23.3580000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:15:23.8720000-07:00|10FF0001|Sesuga Sapisuga|41314|90349|2800|10000|||114.72|93.07|0.00|-1.70| +39|2023-10-06T21:15:23.8720000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6550|10000|||114.35|110.30|0.00|-2.75| +21|2023-10-06T21:15:23.8720000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2BC70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24438928|40478540|10000|10000|||100.00|80.10|0.00|0.00|86009|90890|10000|10000|||110.37|99.94|0.00|-2.66|000198B4|0|1| +21|2023-10-06T21:15:23.8720000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|24AB0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|24438928|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3450|10000|||92.12|83.85|0.00|2.01|000198B5|0|1| +38|2023-10-06T21:15:23.8720000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3250|10000|20||92.12|83.85|0.00|2.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:15:23.8720000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +30|2023-10-06T21:15:23.8720000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +36|2023-10-06T21:15:23.8720000-07:00|46A0|3| +261|2023-10-06T21:15:23.4500000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T21:15:23.9610000-07:00|40022472|Zeromus|000198B2|24434524||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:24.0050000-07:00|10FF0007|Kehabiqo Febiqo|86917|90890|10000|10000|||109.82|99.29|0.00|-2.72| +39|2023-10-06T21:15:24.0050000-07:00|10FF0006|Wowobora Gogobora|57266|57266|7800|10000|||89.74|85.01|0.00|2.02| +261|2023-10-06T21:15:23.5450000-07:00|Change|10FF0006||||| +261|2023-10-06T21:15:23.5450000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:23.5450000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:15:24.0490000-07:00|10FF0009|Zewo Negiwo|31590|56823|7586|10000|||111.41|110.01|0.00|-3.03| +261|2023-10-06T21:15:23.6580000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:15:24.1830000-07:00|10FF0003|Gegehi Gehi|51669|51669|3450|10000|||92.17|83.86|0.00|1.71| +261|2023-10-06T21:15:23.7760000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:15:24.2740000-07:00|10FF0009|Zewo Negiwo|000198B3|44556||||||111.06|109.88|0.00|-2.91| +21|2023-10-06T21:15:24.4510000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|26970000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|24434524|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6550|10000|||112.86|105.17|0.00|-2.94|000198B6|0|1| +37|2023-10-06T21:15:24.4960000-07:00|40022472|Zeromus|000198B4|24423317||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:24.5400000-07:00|10FF0007|Kehabiqo Febiqo|000198B3|90890||||||107.47|96.55|0.00|-2.72| +38|2023-10-06T21:15:24.5850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|11||106.14|96.18|0.00|-2.65|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:24.5850000-07:00|32|Sprint|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|1E|90890|90890| +261|2023-10-06T21:15:24.2110000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:15:24.6750000-07:00|10FF0001|Sesuga Sapisuga|000198B3|61645||||||115.69|93.30|0.00|-1.00| +37|2023-10-06T21:15:24.6750000-07:00|40022472|Zeromus|000198B5|24413930||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:24.6750000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2C710000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|24423317|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||92.01|87.46|0.00|0.56|000198B7|0|1| +261|2023-10-06T21:15:24.3010000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:15:24.7180000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24413930|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||92.34|88.04|-0.01|2.40|000198B8|0|1| +38|2023-10-06T21:15:24.7640000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3450|10000|20||95.43|85.08|0.00|1.24|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:24.7640000-07:00|2B|Weakness|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +21|2023-10-06T21:15:24.8530000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|41430000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|24413930|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3450|10000|||95.43|85.08|0.00|1.24|000198B9|0|1| +38|2023-10-06T21:15:24.8530000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3150|10000|20||95.43|85.08|0.00|1.24|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:24.8530000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:15:24.8530000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:15:24.4090000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:15:24.8980000-07:00|40022472|Zeromus|000198AF|24401602||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:24.5050000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:15:24.5050000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:15:24.9420000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|146A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|31758|57941|2600|10000|||103.24|85.36|-0.02|1.38|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|000198BA|0|1| +21|2023-10-06T21:15:24.9420000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|356003|89E50000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|24413930|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|7800|10000|||89.74|85.01|0.00|2.02|000198BB|0|1| +38|2023-10-06T21:15:24.9420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|7800|10000|18||89.74|85.01|0.00|2.02|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:24.9420000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:15:24.5050000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:15:24.5980000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:15:25.1650000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|6260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24401602|40478540|10000|10000|||100.00|80.10|0.00|0.00|31758|57941|2600|10000|||105.23|86.67|0.00|1.10|000198BC|0|1| +38|2023-10-06T21:15:25.2990000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3150|10000|20||97.95|86.02|0.00|1.76|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:15:25.3430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24401602|40478540|10000|10000|||100.00|80.10|0.00|0.00|61645|90349|2800|10000|||118.09|94.14|0.00|0.13|000198BD|0|1| +31|2023-10-06T21:15:25.3430000-07:00|10FF0001||||| +261|2023-10-06T21:15:24.9380000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:15:25.3880000-07:00|40022472|Zeromus|000198B6|24391723||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:25.3880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6700|10000|18||112.15|100.70|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:24.9380000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:15:25.4770000-07:00|40022472|Zeromus|000198B7|24380346||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:25.4770000-07:00|40022472|Zeromus|000198B8|24378091||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:25.4770000-07:00|10FF000A|Dukaro Nezikaro|32337|57941|2800|10000|||106.35|87.62|0.00|0.31| +38|2023-10-06T21:15:25.4770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8350|10000|18||89.75|85.02|0.00|1.61|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:25.0580000-07:00|Change|10FF0004||||||||||||| +38|2023-10-06T21:15:25.5220000-07:00|10FF0009|Zewo Negiwo|005A5A18|44556|56823|8136|10000|0||113.10|98.30|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:15:25.5660000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|F0E0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|24378091|40478540|10000|10000|||100.00|80.10|0.00|0.00|61645|90349|2800|10000|||118.15|94.04|0.00|-1.06|000198BE|0|1| +37|2023-10-06T21:15:25.6110000-07:00|40022472|Zeromus|000198B9|24361384||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:25.6110000-07:00|10FF0003|Gegehi Gehi|000198B9|51669|51669|3150|10000|20||100.27|86.86|0.00|1.29|2300|0|0|01|020004D3|0|41F00000|| +21|2023-10-06T21:15:25.6110000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24378091|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3150|10000|||100.27|86.86|0.00|1.29|000198BF|0|1| +38|2023-10-06T21:15:25.6110000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3150|10000|20||100.27|86.86|0.00|1.29|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:15:25.7000000-07:00|40022472|Zeromus|000198BC|24359810||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:25.7000000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|37A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24359810|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||103.11|93.11|0.00|-2.97|000198C0|0|1| +21|2023-10-06T21:15:25.7000000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24359810|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8350|10000|||90.81|85.91|0.00|1.16|000198C1|0|1| +37|2023-10-06T21:15:25.7430000-07:00|10FF000A|Dukaro Nezikaro|000198BA|37563||||||107.89|87.87|0.00|0.02| +21|2023-10-06T21:15:25.7890000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750003|3E1E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|61645|90349|2800|10000|||118.15|94.04|0.00|-1.06|24359810|40478540|10000|10000|||100.00|80.10|0.00|0.00|000198C2|0|1| +38|2023-10-06T21:15:25.7890000-07:00|10FF0009|Zewo Negiwo|005A5A18|44556|56823|8136|10000|0||114.60|97.80|0.00|2.27|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:25.7890000-07:00|32|Sprint|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|1E|56823|56823| +261|2023-10-06T21:15:25.3410000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:15:25.8780000-07:00|40022472|Zeromus|000198BD|24358512||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:15:25.9670000-07:00|40022472|Zeromus|DoT|A92|4E4|24358512|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|8350|10000|||92.01|87.00|0.00|0.96| +37|2023-10-06T21:15:25.9670000-07:00|40022472|Zeromus|000198BB|24321959||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:25.9670000-07:00|10FF0006|Wowobora Gogobora|000198BB|57266|57266|8350|10000|18||92.01|87.00|0.00|0.96|1B00|0|0|01|0A92|0|41700000|| +26|2023-10-06T21:15:25.9670000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:15:25.9670000-07:00|40022472|Zeromus|005A5A00|24321959|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:25.9670000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +21|2023-10-06T21:15:26.0110000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|352003|3B3B0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|24358512|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8350|10000|||92.01|87.00|0.00|0.96|000198C3|0|1| +261|2023-10-06T21:15:25.5290000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:15:25.5290000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:25.5290000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:15:26.1000000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|1A210000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|24321959|40478540|10000|10000|||100.00|80.10|0.00|0.00|37563|57941|2800|10000|||108.54|87.94|0.00|-0.32|000198C4|0|1| +261|2023-10-06T21:15:25.6440000-07:00|Add|40022AE3||||||||||||||||||||||||| +261|2023-10-06T21:15:25.6440000-07:00|Change|40022AD2||||| +261|2023-10-06T21:15:25.6440000-07:00|Change|40022AD2||||| +261|2023-10-06T21:15:25.6440000-07:00|Change|10FF0004||||||||| +38|2023-10-06T21:15:26.1440000-07:00|40022AE4||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:15:26.1440000-07:00|40022AE4||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:15:26.1440000-07:00|40022472|Zeromus|000198BF|24321931||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:26.1890000-07:00|40022472|Zeromus|000198BE|24318077||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:26.2330000-07:00|40022472|Zeromus|000198C1|24317896||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:26.3220000-07:00|40022472|Zeromus|000198C0|24303655||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:25.9860000-07:00|Change|10FF000A||||||||||| +37|2023-10-06T21:15:26.5010000-07:00|40022472|Zeromus|000198C4|24296966||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:15:26.0990000-07:00|40022AE4|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||93.88|86.40|0.00|-0.77| +261|2023-10-06T21:15:26.0990000-07:00|Add|40022AE4||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:15:26.5470000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|2.96| +261|2023-10-06T21:15:26.0990000-07:00|Change|40022AE4||| +37|2023-10-06T21:15:26.5910000-07:00|10FF0001|Sesuga Sapisuga|000198C2|45743||||||115.70|90.61|0.00|-1.60| +37|2023-10-06T21:15:26.6360000-07:00|40022472|Zeromus|000198C3|24281803||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:26.6360000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24296966|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||106.21|93.61|0.00|3.08|000198C5|0|1| +39|2023-10-06T21:15:26.7250000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.98|91.93|0.00|1.90| +261|2023-10-06T21:15:26.2880000-07:00|Change|10FF0004||||||||| +24|2023-10-06T21:15:26.7690000-07:00|40022472|Zeromus|DoT|0|C5D|24281803|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +20|2023-10-06T21:15:26.7690000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|118.26|94.72|0.00|2.85| +38|2023-10-06T21:15:26.7690000-07:00|40022472|Zeromus|005A5A00|24278638|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T21:15:26.8590000-07:00|10FF0001|Sesuga Sapisuga|46646|90349|3000|10000|||115.12|89.20|0.00|-1.60| +36|2023-10-06T21:15:26.8590000-07:00|477C|3| +261|2023-10-06T21:15:26.3860000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:26.3860000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:15:26.9030000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6900|10000|||109.31|88.37|0.00|-2.91| +261|2023-10-06T21:15:26.3860000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:15:26.4890000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:15:26.9910000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||108.32|94.16|0.00|2.63| +39|2023-10-06T21:15:26.9910000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8250|10000|||94.92|90.22|0.00|1.03| +39|2023-10-06T21:15:27.0370000-07:00|10FF0009|Zewo Negiwo|45124|56823|8357|10000|||118.38|94.30|0.00|-2.58| +261|2023-10-06T21:15:26.5830000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:15:26.5830000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:15:26.6990000-07:00|Change|40022AE4||||||||| +37|2023-10-06T21:15:27.1710000-07:00|40022472|Zeromus|000198C5|24274013||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:27.1720000-07:00|10FF0003|Gegehi Gehi|51669|51669|3350|10000|||107.23|88.38|0.00|1.76| +21|2023-10-06T21:15:27.1720000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|722003|9AF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24278638|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||102.57|90.95|0.00|1.96|000198C6|0|1| +34|2023-10-06T21:15:27.1720000-07:00|40022AE4|Carbuncle|40022AE4|Carbuncle|01| +261|2023-10-06T21:15:26.9240000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:15:26.9240000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:15:27.3040000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|24274013|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6900|10000|||107.98|83.97|0.00|-2.86|000198C7|0|1| +21|2023-10-06T21:15:27.3490000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|6150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24274013|40478540|10000|10000|||100.00|80.10|0.00|0.00|37563|57941|2800|10000|||113.82|90.88|0.00|-0.69|000198C8|0|1| +21|2023-10-06T21:15:27.3930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24274013|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||103.68|90.51|0.00|-2.90|000198C9|0|1| +38|2023-10-06T21:15:27.4370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|46646|90349|3000|10000|0||112.95|85.06|0.00|-1.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:27.4370000-07:00|32|Sprint|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|90349|90349| +21|2023-10-06T21:15:27.5270000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|24E10000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|24274013|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8250|10000|||98.09|92.45|0.00|1.13|000198CA|0|1| +261|2023-10-06T21:15:27.1430000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:15:27.6160000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|4E10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24274013|40478540|10000|10000|||100.00|80.10|0.00|0.00|46646|90349|3000|10000|||112.47|84.65|0.00|-1.10|000198CB|0|1| +31|2023-10-06T21:15:27.6160000-07:00|10FF0001||||| +21|2023-10-06T21:15:27.7060000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32030000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|24274013|40478540|10000|10000|||100.00|80.10|0.00|0.00|45124|56823|8357|10000|||118.43|94.13|0.00|-2.22|000198CC|0|1| +261|2023-10-06T21:15:27.3350000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:15:27.8830000-07:00|40022472|Zeromus|000198C8|24272456||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:27.4270000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:15:27.9270000-07:00|40022472|Zeromus|000198C7|24272456|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:15:27.9270000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +261|2023-10-06T21:15:27.4270000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:15:27.6130000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:27.6130000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:15:28.1490000-07:00|40022472|Zeromus|000198C9|24270127||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:28.1490000-07:00|40022472|Zeromus|000198CB|24268878||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:28.1490000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15660000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|24272456|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||112.85|89.48|0.00|3.02|000198CD|0|1| +37|2023-10-06T21:15:28.1930000-07:00|40022472|Zeromus|000198CA|24259437||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:28.1930000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|15740000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|24272456|40478540|10000|10000|||100.00|80.10|0.00|0.00|46646|90349|3000|10000|||109.46|82.56|0.00|-1.03|000198CE|0|1| +21|2023-10-06T21:15:28.2380000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|14CE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|46646|90349|3000|10000|||109.46|82.56|0.00|-1.03|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|000198CF|0|1| +261|2023-10-06T21:15:27.8570000-07:00|Change|40022AE4||||||||| +261|2023-10-06T21:15:27.8570000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:15:28.3260000-07:00|40022472|Zeromus|000198C6|24219770||||||100.00|80.10|0.00|0.00| +27|2023-10-06T21:15:28.3710000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:15:28.3710000-07:00|10FF0009|Zewo Negiwo|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:15:28.3710000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:15:28.3710000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:15:28.3710000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:15:28.3710000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:15:28.3710000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:15:28.3710000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|0178|0000|0000|0000| +38|2023-10-06T21:15:28.4160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7050|10000|18||107.68|82.84|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T21:15:28.5060000-07:00|10FF000A|Dukaro Nezikaro|38142|57941|3000|10000|||116.21|91.57|0.00|0.11| +24|2023-10-06T21:15:28.5060000-07:00|40022472|Zeromus|DoT|A92|4BC|24219770|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|7950|10000|||103.70|91.16|0.00|1.77| +38|2023-10-06T21:15:28.5060000-07:00|40022472|Zeromus|005A5A00|24218558|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:28.5060000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:15:28.5060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|18||103.70|91.16|0.00|1.77|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:15:28.5500000-07:00|10FF0009|Zewo Negiwo|005A5A18|45124|56823|8507|10000|0||118.47|94.10|0.00|2.53|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:28.0810000-07:00|Change|10FF000A||||||||||| +37|2023-10-06T21:15:28.6830000-07:00|40022472|Zeromus|000198CD|24213080||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:28.1830000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:28.2830000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:15:28.8160000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750005|33990000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|46646|90349|3000|10000|||107.98|81.88|0.00|-1.00|24213080|40478540|10000|10000|||100.00|80.10|0.00|0.00|000198D0|0|1| +21|2023-10-06T21:15:28.8610000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24213080|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||105.74|90.75|0.00|1.88|000198D1|0|1| +261|2023-10-06T21:15:28.3810000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:15:28.9500000-07:00|40022472|Zeromus|000198CE|24207588||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:28.9500000-07:00|10FF0001|Sesuga Sapisuga|000198CE|46646|90349|4000|10000|0||107.94|81.82|0.00|-1.00|1300|0|0|0| +21|2023-10-06T21:15:28.9950000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|2D270000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|24213080|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||106.23|90.32|0.00|2.50|000198D2|0|1| +37|2023-10-06T21:15:29.0400000-07:00|40022472|Zeromus|000198CC|24194785||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:29.0400000-07:00|10FF0001|Sesuga Sapisuga|000198CF|51972||||||107.93|81.80|0.00|-1.00| +21|2023-10-06T21:15:29.0840000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24207588|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3350|10000|||114.22|90.63|0.00|1.98|000198D3|0|1| +261|2023-10-06T21:15:28.6000000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:15:28.8330000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:15:28.8330000-07:00|Change|40022AE4||||||||| +37|2023-10-06T21:15:29.3950000-07:00|40022472|Zeromus|000198D1|24194551||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:28.9440000-07:00|Change|10FF0004||| +39|2023-10-06T21:15:29.5280000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|2.70| +21|2023-10-06T21:15:29.5280000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|A530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24194551|40478540|10000|10000|||100.00|80.10|0.00|0.00|38142|57941|3000|10000|||115.44|90.33|0.00|0.09|000198D4|0|1| +261|2023-10-06T21:15:29.1560000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:15:29.6170000-07:00|10FF0001|Sesuga Sapisuga|000198D0|38763||||||107.93|81.80|0.00|-1.00| +37|2023-10-06T21:15:29.6170000-07:00|40022472|Zeromus|000198D3|24194515||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:29.6620000-07:00|40022472|Zeromus|000198D2|24182956||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:29.2530000-07:00|Change|10FF0001||||||| +39|2023-10-06T21:15:29.7070000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||107.90|82.11|0.00|-3.12| +21|2023-10-06T21:15:29.7070000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3B630000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|24194515|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||107.90|82.11|0.00|-3.12|000198D5|0|1| +24|2023-10-06T21:15:29.7520000-07:00|40022472|Zeromus|DoT|0|C1F|24194515|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:15:29.7520000-07:00|40022472|Zeromus|005A5A00|24179853|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:15:29.8410000-07:00|10FF000A|Dukaro Nezikaro|03|Sprint|10FF000A|Dukaro Nezikaro|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38142|57941|3000|10000|||115.11|89.42|0.00|-1.92|38142|57941|3000|10000|||115.11|89.42|0.00|-1.92|000198D6|0|1| +36|2023-10-06T21:15:29.8410000-07:00|4858|3| +39|2023-10-06T21:15:29.8870000-07:00|10FF0001|Sesuga Sapisuga|39666|90349|4200|10000|||107.93|81.80|0.00|-1.00| +39|2023-10-06T21:15:29.8870000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|7250|10000|||107.68|82.84|0.00|-1.92| +22|2023-10-06T21:15:29.8870000-07:00|40022489|Zeromus|8B49|Miasmic Blast|10FF0007|Kehabiqo Febiqo|750603|67F80000|100140E|6FD0000|1B|8B498000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||117.52|92.43|0.00|2.42|44|44|0|10000|||100.00|114.00|0.00|0.79|000198D7|0|2| +22|2023-10-06T21:15:29.8870000-07:00|40022489|Zeromus|8B49|Miasmic Blast|10FF0009|Zewo Negiwo|750003|17E4001|200140E|6FD0000|1B|8B498000|0|0|0|0|0|0|0|0|0|0|45124|56823|8507|10000|||117.72|92.84|0.00|0.04|44|44|0|10000|||100.00|114.00|0.00|0.79|000198D7|1|2| +21|2023-10-06T21:15:29.8870000-07:00|4002248A|Zeromus|8CF8|unknown_8cf8|4002248A|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|114.00|0.00|0.79|44|44|0|10000|||100.00|114.00|0.00|0.79|000198D8|0|1| +36|2023-10-06T21:15:29.8870000-07:00|4984|3| +22|2023-10-06T21:15:29.8870000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|10FF0003|Gegehi Gehi|750603|A3530000|100140E|6FD0000|1B|8B498000|0|0|0|0|0|0|0|0|0|0|51669|51669|3350|10000|||111.99|89.52|0.00|2.71|44|44|0|10000|||100.00|100.00|0.00|0.79|000198D9|0|2| +22|2023-10-06T21:15:29.8870000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|10FF000A|Dukaro Nezikaro|750003|E0250000|100140E|6FD0000|1B|8B498000|0|0|0|0|0|0|0|0|0|0|38142|57941|3000|10000|||114.65|89.02|0.00|-2.22|44|44|0|10000|||100.00|100.00|0.00|0.79|000198D9|1|2| +21|2023-10-06T21:15:29.8870000-07:00|4002248C|Zeromus|8CF8|unknown_8cf8|4002248C|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|000198DA|0|1| +22|2023-10-06T21:15:29.8870000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|10FF0003|Gegehi Gehi|750603|C3E4001|200140E|6FD0000|1B|8B498000|0|0|0|0|0|0|0|0|0|0|51669|51669|3350|10000|||111.99|89.52|0.00|2.71|44|44|0|10000|||107.00|93.00|0.00|0.79|000198DB|0|2| +22|2023-10-06T21:15:29.8870000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|10FF000A|Dukaro Nezikaro|750003|FE14001|200140E|6FD0000|1B|8B498000|0|0|0|0|0|0|0|0|0|0|38142|57941|3000|10000|||114.65|89.02|0.00|-2.22|44|44|0|10000|||107.00|93.00|0.00|0.79|000198DB|1|2| +261|2023-10-06T21:15:29.3480000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:15:29.3480000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:15:29.3480000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:15:29.3480000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:15:29.3480000-07:00|Change|4002248C||||||||||||| +21|2023-10-06T21:15:29.8870000-07:00|4002248E|Zeromus|8CF8|unknown_8cf8|4002248E|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||107.00|93.00|0.00|0.79|44|44|0|10000|||107.00|93.00|0.00|0.79|000198DC|0|1| +21|2023-10-06T21:15:29.8870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|9D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24179853|40478540|10000|10000|||100.00|80.10|0.00|0.00|38763|90349|4000|10000|||107.93|81.80|0.00|-1.00|000198DD|0|1| +31|2023-10-06T21:15:29.8870000-07:00|10FF0001||||| +261|2023-10-06T21:15:29.4410000-07:00|Change|4002248E||||||||||||| +37|2023-10-06T21:15:29.9740000-07:00|10FF000A|Dukaro Nezikaro|000198D6|38142|57941|3000|10000|0||114.65|89.02|0.00|-2.22|1E00|0|0|01|06000032|1E|41200000|| +26|2023-10-06T21:15:29.9740000-07:00|32|Sprint|10.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|1E|57941|57941| +39|2023-10-06T21:15:29.9740000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||117.52|92.43|0.00|2.42| +39|2023-10-06T21:15:29.9740000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8400|10000|||106.75|84.43|0.00|-3.12| +261|2023-10-06T21:15:29.5310000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:15:29.5310000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:15:30.0200000-07:00|10FF0009|Zewo Negiwo|45692|56823|8728|10000|||117.72|94.07|0.00|-0.10| +21|2023-10-06T21:15:30.0200000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BE20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24179853|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||117.51|92.81|0.00|1.19|000198DE|0|1| +37|2023-10-06T21:15:30.0640000-07:00|40022472|Zeromus|000198D4|24177210||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:30.0640000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EBC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24179853|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||107.88|82.11|0.00|-1.82|000198DF|0|1| +261|2023-10-06T21:15:29.6520000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:15:30.1530000-07:00|10FF0003|Gegehi Gehi|51669|51669|3550|10000|||110.46|88.38|0.00|-3.06| +04|2023-10-06T21:15:29.7650000-07:00|40022AD2|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|54388|0|10000|||88.91|87.38|0.00|2.02| +261|2023-10-06T21:15:29.7650000-07:00|Remove|40022AD2| +261|2023-10-06T21:15:29.7650000-07:00|Change|10FF000A||||||||| +22|2023-10-06T21:15:30.3310000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|312D0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|000198E0|0|8| +22|2023-10-06T21:15:30.3310000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|30B90000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||117.38|93.05|0.00|-2.47|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|000198E0|1|8| +22|2023-10-06T21:15:30.3310000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|200004|51D30000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|38142|57941|3000|10000|||112.32|87.35|0.00|-2.22|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|000198E0|2|8| +22|2023-10-06T21:15:30.3310000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|4F1C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|3550|10000|||110.06|87.89|0.00|-2.95|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|000198E0|3|8| +22|2023-10-06T21:15:30.3310000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|200004|4F4D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|7250|10000|||107.68|82.84|0.00|-1.92|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|000198E0|4|8| +22|2023-10-06T21:15:30.3310000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|328F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8400|10000|||106.77|83.63|0.00|3.14|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|000198E0|5|8| +22|2023-10-06T21:15:30.3310000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|320A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|39666|90349|4200|10000|||107.93|81.80|0.00|-1.00|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|000198E0|6|8| +22|2023-10-06T21:15:30.3310000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|32190000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||107.07|82.11|0.00|-1.78|45692|56823|8728|10000|||117.84|95.11|0.00|-0.15|000198E0|7|8| +261|2023-10-06T21:15:29.8760000-07:00|Change|10FF0004||| +37|2023-10-06T21:15:30.4200000-07:00|40022472|Zeromus|000198DD|24174689||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:30.5090000-07:00|40022472|Zeromus|000198D5|24159486||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:30.5090000-07:00|10FF0007|Kehabiqo Febiqo|000198D7|64274|90890|10000|10000|0||117.24|93.20|0.00|-1.85|1500|0|0|02|010006FD|01|42700000|||||| +26|2023-10-06T21:15:30.5090000-07:00|6FD|Vulnerability Up|60.00|40022489|Zeromus|10FF0007|Kehabiqo Febiqo|01|90890|44| +37|2023-10-06T21:15:30.5090000-07:00|10FF0003|Gegehi Gehi|000198D9|9858|51669|3550|10000|0||109.38|86.89|0.00|-2.81|2300|0|0|02|010006FD|02|426DB025|||||| +26|2023-10-06T21:15:30.5090000-07:00|6FD|Vulnerability Up|59.42|4002248D|Zeromus|10FF0003|Gegehi Gehi|02|51669|44| +37|2023-10-06T21:15:30.5090000-07:00|10FF0003|Gegehi Gehi|000198DB|0|51669|0|10000|0||109.38|86.89|0.00|-2.81|2300|0|0|02|01000000|0|0|||||| +38|2023-10-06T21:15:30.5100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|64274|90890|10000|10000|0||117.24|93.20|0.00|-1.85|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:30.5100000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:15:30.5100000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|51669|0|10000|0||109.38|86.89|0.00|-2.81|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:30.5100000-07:00|6FD|Vulnerability Up|0.00|4002248D|Zeromus|10FF0003|Gegehi Gehi|02|51669|44| +30|2023-10-06T21:15:30.5100000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +30|2023-10-06T21:15:30.5100000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +37|2023-10-06T21:15:30.5540000-07:00|40022472|Zeromus|000198DE|24156444||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:30.5540000-07:00|10FF0009|Zewo Negiwo|000198D7|0|56823|0|10000|0||118.04|95.90|0.00|-0.17|1801|0|0|02|02000000|0|0|||||| +37|2023-10-06T21:15:30.5540000-07:00|10FF000A|Dukaro Nezikaro|000198D9|0|57941|0|10000|0||111.33|86.43|0.00|-2.19|1E01|0|0|03|03000000|0|0|||||||||| +21|2023-10-06T21:15:30.5550000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|2E4D0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|24174689|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8400|10000|||106.66|83.65|-0.02|-2.99|000198E1|0|1| +38|2023-10-06T21:15:30.5550000-07:00|10FF0009|Zewo Negiwo|005A5A18|0|56823|0|10000|0||118.04|95.90|0.00|-0.17|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:30.5550000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|56823|56823| +30|2023-10-06T21:15:30.5550000-07:00|6FD|Vulnerability Up|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|01|56823|56823| +38|2023-10-06T21:15:30.5550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|0|57941|0|10000|0||111.33|86.43|0.00|-2.19|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:30.5550000-07:00|32|Sprint|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|1E|57941|57941| +261|2023-10-06T21:15:30.1190000-07:00|Change|10FF0009||||||||||||| +21|2023-10-06T21:15:30.5990000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|224E0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|24174689|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||117.24|93.20|0.00|-1.85|000198E2|0|1| +261|2023-10-06T21:15:30.1190000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:15:30.6880000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|24100000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|24156444|40478540|10000|10000|||100.00|80.10|0.00|0.00|39666|90349|4200|10000|||107.93|81.80|0.00|-1.78|000198E3|0|1| +38|2023-10-06T21:15:30.6880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|39666|90349|4200|10000|0||107.93|81.80|0.00|-1.78|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:30.6880000-07:00|76E|Sword Oath|22.74|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +261|2023-10-06T21:15:30.2190000-07:00|Change|10FF0001||||| +37|2023-10-06T21:15:30.8210000-07:00|40022472|Zeromus|000198DF|24152672||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:30.4190000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:30.5110000-07:00|Change|10FF000A||||||||||||| +261|2023-10-06T21:15:30.5110000-07:00|Change|10FF0003||||||||||| +26|2023-10-06T21:15:31.0000000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|57078|57078| +22|2023-10-06T21:15:31.0000000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|4|32120000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|7250|10000|||107.68|82.85|0.00|-1.48|57078|57078|7250|10000|||107.68|82.85|0.00|-1.48|000198E4|0|5| +22|2023-10-06T21:15:31.0000000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|4|33E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39666|90349|4200|10000|||107.93|81.80|0.00|-1.78|57078|57078|7250|10000|||107.68|82.85|0.00|-1.48|000198E4|1|5| +22|2023-10-06T21:15:31.0000000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|4|33320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8100|10000|||105.98|84.14|0.00|-2.14|57078|57078|7250|10000|||107.68|82.85|0.00|-1.48|000198E4|2|5| +22|2023-10-06T21:15:31.0000000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|521F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||102.18|82.00|0.00|-1.63|57078|57078|7250|10000|||107.68|82.85|0.00|-1.48|000198E4|3|5| +22|2023-10-06T21:15:31.0000000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|54740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|64274|90890|10000|10000|||115.32|94.39|-0.02|-1.35|57078|57078|7250|10000|||107.68|82.85|0.00|-1.48|000198E4|4|5| +37|2023-10-06T21:15:31.1780000-07:00|40022472|Zeromus|000198E1|24140819||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:31.1780000-07:00|40022AE4|Carbuncle|005A5A00|54388|54388|10000|10000|0||105.42|85.68|0.00|-3.10|0|0|0|||||||||| +26|2023-10-06T21:15:31.1780000-07:00|30|Well Fed|1542.09|10FF0006|Wowobora Gogobora|40022AE4|Carbuncle|2964|54388|57266| +26|2023-10-06T21:15:31.1780000-07:00|441|HP Penalty|9999.00|E0000000||40022AE4|Carbuncle|00|54388|| +26|2023-10-06T21:15:31.1780000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022AE4|Carbuncle|01|54388|57266| +21|2023-10-06T21:15:31.1780000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8100|10000|||105.41|84.60|0.00|-1.84|57266|57266|8100|10000|||105.41|84.60|0.00|-1.84|000198E5|0|1| +37|2023-10-06T21:15:31.2220000-07:00|40022472|Zeromus|000198E2|24132037||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:31.4000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7800|10000|18||107.65|82.90|0.00|-1.01|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:30.9900000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:15:31.4450000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24132037|40478540|10000|10000|||100.00|80.10|0.00|0.00|39666|90349|4200|10000|||108.33|82.10|0.00|1.64|000198E6|0|1| +21|2023-10-06T21:15:31.4900000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|15300000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|39666|90349|4200|10000|||108.85|82.47|0.00|1.62|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|000198E7|0|1| +24|2023-10-06T21:15:31.4900000-07:00|40022472|Zeromus|DoT|A92|661|24132037|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|8100|10000|||103.86|85.83|0.00|-1.16| +38|2023-10-06T21:15:31.4900000-07:00|40022472|Zeromus|005A5A00|24130404|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:31.4900000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:15:31.4900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8650|10000|18||103.86|85.83|0.00|-1.16|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:31.1100000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:15:31.5790000-07:00|40022AE4|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|BD0E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8100|10000|||103.86|85.83|0.00|-1.16|54388|54388|10000|10000|||105.38|85.73|0.00|-2.84|000198E8|0|1| +38|2023-10-06T21:15:31.5790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8650|10000|38||103.86|85.83|0.00|-1.16|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:31.5790000-07:00|A8E|Radiant Aegis|29.96|40022AE4|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +261|2023-10-06T21:15:31.2060000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:31.2060000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:15:31.7570000-07:00|10FF0001|Sesuga Sapisuga|000198E4|52948||||||110.13|82.44|0.00|1.56| +21|2023-10-06T21:15:31.8460000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750003|41B20000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|52948|90349|4200|10000|||110.79|82.45|0.00|1.56|24130404|40478540|10000|10000|||100.00|80.10|0.00|0.00|000198E9|0|1| +37|2023-10-06T21:15:31.9800000-07:00|40022472|Zeromus|000198E3|24121172||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:31.9800000-07:00|10FF0001|Sesuga Sapisuga|000198E3|52948|90349|4600|10000|0||111.46|82.46|0.00|1.56|1300|0|0|0| +261|2023-10-06T21:15:31.4900000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:15:32.0250000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|24121172|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8650|10000|||101.12|88.77|0.00|-0.75|000198EA|0|1| +21|2023-10-06T21:15:32.0250000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24121172|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8650|10000|||101.12|88.77|0.00|-0.75|000198EB|0|1| +38|2023-10-06T21:15:32.0250000-07:00|40022AE4|Carbuncle|005A5A00|0|54388|0|10000|0||105.30|85.79|0.00|-1.06|0|0|0||||||| +30|2023-10-06T21:15:32.0250000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40022AE4|Carbuncle|01|54388|57266| +261|2023-10-06T21:15:31.5890000-07:00|Change|40022AE4||||||||| +261|2023-10-06T21:15:31.5890000-07:00|Change|10FF0004||||||||| +38|2023-10-06T21:15:32.0690000-07:00|40022AED||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +03|2023-10-06T21:15:31.5890000-07:00|40022AED|Topaz Titan|00|5A|10FF0006|00||10264|13507|54388|54388|10000|10000|||101.54|92.23|0.00|3.12| +38|2023-10-06T21:15:32.0690000-07:00|40022AED|Topaz Titan|005A5A00|54388|54388|10000|10000|0||101.54|92.23|0.00|3.12|0|0|0||||||| +26|2023-10-06T21:15:32.0690000-07:00|30|Well Fed|1541.24|10FF0006|Wowobora Gogobora|40022AED|Topaz Titan|2964|54388|57266| +26|2023-10-06T21:15:32.0690000-07:00|441|HP Penalty|9999.00|E0000000||40022AED|Topaz Titan|00|54388|| +37|2023-10-06T21:15:32.0690000-07:00|40022472|Zeromus|000198E6|24121172|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004A9|0|41200000|| +26|2023-10-06T21:15:32.0690000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +261|2023-10-06T21:15:31.5890000-07:00|Add|40022AED||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:32.1590000-07:00|10FF0007|Kehabiqo Febiqo|000198E4|85894||||||109.50|97.11|0.00|-1.18| +21|2023-10-06T21:15:32.1590000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24121172|40478540|10000|10000|||100.00|80.10|0.00|0.00|52948|90349|4600|10000|||112.69|82.48|0.00|1.55|000198EC|0|1| +31|2023-10-06T21:15:32.1590000-07:00|10FF0001||||| +21|2023-10-06T21:15:32.2040000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|2F610000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|24121172|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||94.71|83.47|-0.02|-1.34|000198ED|0|1| +21|2023-10-06T21:15:32.2040000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|A680000|13370E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|24121172|40478540|10000|10000|||100.00|80.10|0.00|0.00|52948|90349|4600|10000|||112.69|82.48|0.00|1.55|000198EE|0|1| +261|2023-10-06T21:15:31.7090000-07:00|Change|40022AED||||| +261|2023-10-06T21:15:31.8220000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:15:32.2920000-07:00|10FF0001|Sesuga Sapisuga|000198E7|58372||||||113.39|82.50|0.00|1.55| +261|2023-10-06T21:15:31.8220000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:15:32.5150000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|2.53| +25|2023-10-06T21:15:32.5150000-07:00|10FF0003|Gegehi Gehi|4002248D|Zeromus| +37|2023-10-06T21:15:32.5590000-07:00|40022472|Zeromus|000198EB|24120981||||||100.00|80.10|0.00|0.00| +25|2023-10-06T21:15:32.5590000-07:00|10FF0009|Zewo Negiwo|40022489|Zeromus| +25|2023-10-06T21:15:32.5590000-07:00|10FF000A|Dukaro Nezikaro|4002248B|Zeromus| +37|2023-10-06T21:15:32.6490000-07:00|10FF0001|Sesuga Sapisuga|000198E9|41554||||||115.29|82.70|0.00|1.62| +37|2023-10-06T21:15:32.6930000-07:00|40022472|Zeromus|000198EC|24119669||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:32.6930000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||94.36|83.53|0.00|2.12| +21|2023-10-06T21:15:32.7380000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B6D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24120981|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||94.36|83.53|0.00|2.12|000198EF|0|1| +24|2023-10-06T21:15:32.7820000-07:00|40022472|Zeromus|DoT|0|C61|24120981|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:15:32.7820000-07:00|40022472|Zeromus|005A5A00|24116500|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T21:15:32.8720000-07:00|10FF0001|Sesuga Sapisuga|42457|90349|4800|10000|||116.47|82.81|0.00|1.69| +39|2023-10-06T21:15:32.8720000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|8000|10000|||109.81|91.14|0.00|0.83| +36|2023-10-06T21:15:32.8720000-07:00|4A60|3| +261|2023-10-06T21:15:32.3590000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:15:32.3590000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:15:32.9610000-07:00|40022472|Zeromus|000198ED|24104371||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:33.0040000-07:00|10FF0007|Kehabiqo Febiqo|86802|90890|10000|10000|||106.29|99.36|0.00|-1.19| +39|2023-10-06T21:15:33.0040000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8850|10000|||97.20|93.05|0.00|-0.99| +21|2023-10-06T21:15:33.0490000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|4F430000|143E|340000|4|17508000|11B|2A8000|0|0|0|0|0|0|0|0|24104371|40478540|10000|10000|||100.00|80.10|0.00|0.00|86802|90890|10000|10000|||106.07|99.42|0.00|-1.19|000198F0|0|1| +261|2023-10-06T21:15:32.5690000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:15:32.5690000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:15:32.6830000-07:00|Change|40022AED||| +21|2023-10-06T21:15:33.1820000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|1C8E0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|24104371|40478540|10000|10000|||100.00|80.10|0.00|0.00|42457|90349|4800|10000|||116.92|83.23|0.00|1.78|000198F1|0|1| +38|2023-10-06T21:15:33.1820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42457|90349|4800|10000|0||116.92|83.23|0.00|1.78|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:33.1820000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:15:33.1820000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:15:33.2260000-07:00|40022472|Zeromus|000198EE|24101707|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T21:15:33.2260000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +37|2023-10-06T21:15:33.2260000-07:00|10FF0001|Sesuga Sapisuga|000198EE|42457|90349|4800|10000|0||116.92|83.23|0.00|-1.75|1300|0|0|02|0600076E|03|C1F00000|||||| +20|2023-10-06T21:15:33.3160000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|110.52|91.76|0.00|-0.23| +38|2023-10-06T21:15:33.3600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86802|90890|10000|10000|0||105.12|100.10|0.00|-2.47|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:33.3600000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:15:33.3600000-07:00|10FF0009|Zewo Negiwo|005A5A18|0|56823|0|10000|0||116.75|97.18|0.00|-0.71|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:33.3600000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +261|2023-10-06T21:15:32.9080000-07:00|Change|40022490||||||||| +261|2023-10-06T21:15:32.9080000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:15:32.9080000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:15:32.9080000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:15:32.9080000-07:00|Change|4002248A||||||||| +38|2023-10-06T21:15:33.3600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||89.12|84.30|-0.02|-1.64|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:33.3600000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +38|2023-10-06T21:15:33.3600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8850|10000|38||95.92|95.56|0.00|-0.65|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:33.3600000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +261|2023-10-06T21:15:32.9080000-07:00|Change|40022489||||||||| +38|2023-10-06T21:15:33.3600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42457|90349|4800|10000|0||116.92|83.23|0.00|-1.75|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:33.3600000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:15:33.3600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8000|10000|18||110.50|91.86|-0.02|-0.42|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:33.3600000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:15:33.3600000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|51669|0|10000|0||108.02|84.98|0.00|-2.50|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:33.3600000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:15:33.3600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|0|57941|0|10000|0||109.61|83.60|0.00|-1.42|0|0|0||||||||||||||||||| +30|2023-10-06T21:15:33.3600000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +21|2023-10-06T21:15:33.4040000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24101707|40478540|10000|10000|||100.00|80.10|0.00|0.00|86802|90890|10000|10000|||105.12|100.10|0.00|-2.47|000198F2|0|1| +21|2023-10-06T21:15:33.4500000-07:00|40022489|Zeromus|8B52|the Dark Divides|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000198F3|0|0| +21|2023-10-06T21:15:33.4500000-07:00|4002248A|Zeromus|8B52|the Dark Divides|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000198F4|0|0| +21|2023-10-06T21:15:33.4500000-07:00|4002248B|Zeromus|8B52|the Dark Divides|10FF0004|Buhojaqe Zijaqe|750603|49240000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|57078|57078|8000|10000|||110.47|91.93|0.00|-0.48|44|44|0|10000|||100.00|100.00|0.00|0.00|000198F5|0|1| +21|2023-10-06T21:15:33.4500000-07:00|4002248C|Zeromus|8B52|the Dark Divides|10FF0001|Sesuga Sapisuga|750003|49300000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|42457|90349|4800|10000|||116.92|83.23|0.00|-1.75|44|44|0|10000|||100.00|100.00|0.00|0.00|000198F6|0|1| +21|2023-10-06T21:15:33.4500000-07:00|4002248D|Zeromus|8B52|the Dark Divides|10FF0006|Wowobora Gogobora|750603|18FA0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|57266|57266|8850|10000|||95.55|96.13|0.00|-0.63|44|44|0|10000|||100.00|100.00|0.00|0.00|000198F7|0|1| +21|2023-10-06T21:15:33.4500000-07:00|4002248E|Zeromus|8B52|the Dark Divides|10FF0008|Kokosaze Lulusaze|750603|55B60000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||88.43|84.38|0.00|-1.59|44|44|0|10000|||100.00|100.00|0.00|0.00|000198F8|0|1| +21|2023-10-06T21:15:33.4500000-07:00|4002248F|Zeromus|8B52|the Dark Divides|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000198F9|0|0| +21|2023-10-06T21:15:33.4500000-07:00|40022490|Zeromus|8B52|the Dark Divides|10FF0007|Kehabiqo Febiqo|750003|59F00000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|86802|90890|10000|10000|||104.83|100.29|0.00|-2.37|44|44|0|10000|||100.00|100.00|0.00|0.00|000198FA|0|1| +38|2023-10-06T21:15:33.4500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86802|90890|10000|10000|0||104.83|100.29|0.00|-2.37|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:15:33.4500000-07:00|B7D|Magic Vulnerability Up|1.96|40022490|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|44| +38|2023-10-06T21:15:33.4500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||88.43|84.38|0.00|-1.59|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:15:33.4500000-07:00|B7D|Magic Vulnerability Up|1.96|4002248E|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:15:33.4500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8850|10000|38||95.55|96.13|0.00|-0.63|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:33.4500000-07:00|B7D|Magic Vulnerability Up|1.96|4002248D|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +38|2023-10-06T21:15:33.4500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42457|90349|4800|10000|0||116.92|83.23|0.00|-1.75|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:33.4500000-07:00|B7D|Magic Vulnerability Up|1.96|4002248C|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +38|2023-10-06T21:15:33.4500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8000|10000|18||110.47|91.93|0.00|-0.48|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:33.4500000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|57078|57078| +26|2023-10-06T21:15:33.4500000-07:00|B7D|Magic Vulnerability Up|1.96|4002248B|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +37|2023-10-06T21:15:33.4930000-07:00|40022472|Zeromus|000198EF|24098782||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:33.1470000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:15:33.1470000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:15:33.7610000-07:00|40022472|Zeromus|000198F1|24091472||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:33.7610000-07:00|10FF0001|Sesuga Sapisuga|000198F1|42457|90349|4800|10000|0||117.00|83.09|0.00|2.80|1300|0|0|02|0600076E|03|41F00000|||||| +38|2023-10-06T21:15:33.7610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42457|90349|4800|10000|0||117.00|83.09|0.00|2.80|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:15:33.4350000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:15:33.9380000-07:00|40022472|Zeromus|000198F2|24088685||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:34.0720000-07:00|10FF0004|Buhojaqe Zijaqe|000198F5|38354|57078|8000|10000|0||110.37|92.15|0.00|-0.68|1C00|0|0|02|05000000|0|0|||||| +37|2023-10-06T21:15:34.0720000-07:00|10FF0001|Sesuga Sapisuga|000198F6|23721|90349|4800|10000|0||117.00|83.09|0.00|2.80|1300|0|0|01|02000B7D|0|3FB0418A|| +37|2023-10-06T21:15:34.0720000-07:00|10FF0006|Wowobora Gogobora|000198F7|50872|57266|8850|10000|0||93.08|98.63|0.00|-0.85|1B00|0|0|03|03000000|0|0|||||||||| +37|2023-10-06T21:15:34.0720000-07:00|10FF0008|Kokosaze Lulusaze|000198F8|41209|63151|10000|10000|0||84.86|84.64|-0.02|-1.51|1F00|0|0|02|03000B7D|0|3FB0418A|||||| +37|2023-10-06T21:15:34.0720000-07:00|10FF0007|Kehabiqo Febiqo|000198FA|63778|90890|10000|10000|0||103.96|100.78|-0.02|-2.19|1500|0|0|01|04000B7D|0|3FB0418A|| +38|2023-10-06T21:15:34.0720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|41209|63151|10000|10000|0||84.86|84.64|-0.02|-1.51|0|0|0||||||||||||| +30|2023-10-06T21:15:34.0720000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:15:34.0720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50872|57266|8850|10000|0||93.08|98.63|0.00|-0.85|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:34.0720000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +30|2023-10-06T21:15:34.0720000-07:00|A8E|Radiant Aegis|0.00|40022AE4|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +38|2023-10-06T21:15:34.0720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38354|57078|8000|10000|0||110.37|92.15|0.00|-0.68|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:34.0720000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +261|2023-10-06T21:15:33.6280000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:15:33.6280000-07:00|Change|40022AE4||||||| +21|2023-10-06T21:15:34.1160000-07:00|40022AED|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|454003|7DA10000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|24088685|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||101.54|92.23|0.00|3.12|000198FB|0|1| +38|2023-10-06T21:15:34.3830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38354|57078|8550|10000|0||110.37|92.15|0.00|-0.68|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:15:34.4270000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|83C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24088685|40478540|10000|10000|||100.00|80.10|0.00|0.00|23721|90349|4800|10000|||117.00|83.09|0.00|2.80|000198FC|0|1| +31|2023-10-06T21:15:34.4270000-07:00|10FF0001||||| +24|2023-10-06T21:15:34.4720000-07:00|40022472|Zeromus|DoT|A92|A71|24088685|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|50872|57266|8850|10000|||92.37|100.76|0.00|-0.19| +38|2023-10-06T21:15:34.4720000-07:00|40022472|Zeromus|005A5A00|24086012|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:34.4720000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:15:34.4720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50872|57266|9400|10000|0||92.37|100.76|0.00|-0.19|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:15:34.5170000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|454003|41D50000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|24088685|40478540|10000|10000|||100.00|80.10|0.00|0.00|50872|57266|8850|10000|||92.37|100.76|0.00|-0.19|000198FD|0|1| +38|2023-10-06T21:15:34.5170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50872|57266|9100|10000|0||92.37|100.76|0.00|-0.19|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:34.5170000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:15:34.5610000-07:00|40022472|Zeromus|000198F0|24065721||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:34.5610000-07:00|10FF0007|Kehabiqo Febiqo|000198F0|69746||||||102.41|99.50|0.00|-2.95| +21|2023-10-06T21:15:34.6940000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2F3E0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|24065721|40478540|10000|10000|||100.00|80.10|0.00|0.00|41209|63151|10000|10000|||83.12|84.64|0.00|-2.22|000198FE|0|1| +22|2023-10-06T21:15:34.7390000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19C40000|390E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|38354|57078|8550|10000|||110.37|92.15|0.00|-0.68|38354|57078|8550|10000|||110.37|92.15|0.00|-0.68|000198FF|0|3| +22|2023-10-06T21:15:34.7390000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|19900000|E60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|69746|90890|10000|10000|||101.35|98.62|0.00|-3.02|38354|57078|8550|10000|||110.37|92.15|0.00|-0.68|000198FF|1|3| +22|2023-10-06T21:15:34.7390000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|1A0E0000|B00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|23721|90349|4800|10000|||116.86|83.06|0.00|-1.80|38354|57078|8550|10000|||110.37|92.15|0.00|-0.68|000198FF|2|3| +38|2023-10-06T21:15:34.7390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69746|90890|10000|10000|11||101.35|98.62|0.00|-3.02|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:15:34.7390000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:15:34.7390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|23721|90349|4800|10000|11||116.86|83.06|0.00|-1.80|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:34.7390000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:15:34.7390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38354|57078|7550|10000|18||110.37|92.15|0.00|-0.68|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:34.7390000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +261|2023-10-06T21:15:34.3740000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:15:34.9630000-07:00|40022472|Zeromus|000198FC|24063613||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:34.4710000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:15:34.6960000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:15:35.1390000-07:00|40022472|Zeromus|000198FD|24046760||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:35.1390000-07:00|10FF0006|Wowobora Gogobora|000198FD|50872|57266|9100|10000|0||94.13|99.52|0.00|2.84|1B00|0|0|01|03000B25|0|0|| +38|2023-10-06T21:15:35.1390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50872|57266|9100|10000|0||94.13|99.52|0.00|2.84|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:15:35.1830000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|452003|29A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24046760|40478540|10000|10000|||100.00|80.10|0.00|0.00|50872|57266|9100|10000|||94.79|99.16|0.00|2.66|00019900|0|1| +21|2023-10-06T21:15:35.1830000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24046760|40478540|10000|10000|||100.00|80.10|0.00|0.00|50872|57266|9100|10000|||94.79|99.16|0.00|2.66|00019901|0|1| +38|2023-10-06T21:15:35.1830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50872|57266|9100|10000|0||94.79|99.16|0.00|2.66|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:35.1830000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +27|2023-10-06T21:15:35.3620000-07:00|10FF0009|Zewo Negiwo|0000|0000|003E|0000|0000|0000| +21|2023-10-06T21:15:35.4060000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21920000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|69746|90890|10000|10000|||99.68|95.49|0.00|-3.05|54201|54201|10000|10000|||100.36|97.55|0.00|2.31|00019902|0|1| +21|2023-10-06T21:15:35.4060000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24046760|40478540|10000|10000|||100.00|80.10|0.00|0.00|41209|63151|10000|10000|||83.20|84.66|0.00|1.40|00019903|0|1| +38|2023-10-06T21:15:35.4060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69746|90890|10000|10000|11||99.68|95.49|0.00|-3.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:35.4060000-07:00|B7D|Magic Vulnerability Up|0.00|40022490|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|44| +38|2023-10-06T21:15:35.4060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|41209|63151|10000|10000|0||83.20|84.66|0.00|1.40|0|0|0|||||||||| +30|2023-10-06T21:15:35.4060000-07:00|B7D|Magic Vulnerability Up|0.00|4002248E|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:15:35.4060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50872|57266|9100|10000|0||96.33|98.34|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:35.4060000-07:00|B7D|Magic Vulnerability Up|0.00|4002248D|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +38|2023-10-06T21:15:35.4060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|23721|90349|4800|10000|11||115.91|83.26|0.00|-1.58|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:35.4060000-07:00|B7D|Magic Vulnerability Up|0.00|4002248C|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +38|2023-10-06T21:15:35.4060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38354|57078|7550|10000|18||110.08|92.35|0.00|-1.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:35.4060000-07:00|B7D|Magic Vulnerability Up|0.00|4002248B|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +37|2023-10-06T21:15:35.4960000-07:00|40022472|Zeromus|000198FE|24034666||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:35.4960000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16190000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|24046760|40478540|10000|10000|||100.00|80.10|0.00|0.00|69746|90890|10000|10000|||99.68|95.49|0.00|-3.05|00019904|0|1| +39|2023-10-06T21:15:35.5410000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|2.53| +37|2023-10-06T21:15:35.7200000-07:00|40022472|Zeromus|00019901|24034413||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:35.7200000-07:00|10FF0008|Kokosaze Lulusaze|41840|63151|10000|10000|||84.18|86.83|0.00|0.71| +21|2023-10-06T21:15:35.7200000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|1E380000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|24034666|40478540|10000|10000|||100.00|80.10|0.00|0.00|23721|90349|4800|10000|||114.40|84.21|0.00|-1.54|00019905|0|1| +38|2023-10-06T21:15:35.7200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|23721|90349|4800|10000|11||114.40|84.21|0.00|-1.54|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:35.7200000-07:00|76E|Sword Oath|28.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +04|2023-10-06T21:15:35.2540000-07:00|40022AE4|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||105.30|85.80|0.00|-0.87| +261|2023-10-06T21:15:35.2540000-07:00|Remove|40022AE4| +24|2023-10-06T21:15:35.7640000-07:00|40022472|Zeromus|DoT|0|DFA|24034666|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:15:35.7640000-07:00|40022472|Zeromus|005A5A00|24030835|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +27|2023-10-06T21:15:35.8080000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +27|2023-10-06T21:15:35.8080000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +37|2023-10-06T21:15:35.8530000-07:00|10FF0004|Buhojaqe Zijaqe|000198FF|44950|57078|7550|10000|18||108.74|93.19|0.00|-1.04|1C00|0|0|01|04000129|0|41E772AE|| +36|2023-10-06T21:15:35.8530000-07:00|4B3C|3| +20|2023-10-06T21:15:35.8980000-07:00|40022472|Zeromus|8B83|Dark Matter|40022472|Zeromus|3.700|100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:35.8980000-07:00|10FF0001|Sesuga Sapisuga|24624|90349|5000|10000|||113.96|84.68|0.00|-1.54| +39|2023-10-06T21:15:35.8980000-07:00|10FF0004|Buhojaqe Zijaqe|45520|57078|7750|10000|||108.74|93.19|0.00|-1.04| +261|2023-10-06T21:15:35.4390000-07:00|Change|40022472||||||||| +261|2023-10-06T21:15:35.4390000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:15:35.9420000-07:00|40022472|Zeromus|00019900|24020174||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:35.9870000-07:00|10FF0007|Kehabiqo Febiqo|000198FF|76290|90890|10000|10000|11||99.47|94.23|0.00|3.11|1501|0|0|01|07000129|0|41E6603F|| +39|2023-10-06T21:15:35.9870000-07:00|10FF0007|Kehabiqo Febiqo|77198|90890|10000|10000|||99.47|94.23|0.00|3.11| +39|2023-10-06T21:15:35.9870000-07:00|10FF0006|Wowobora Gogobora|51444|57266|9300|10000|||98.74|97.48|0.00|2.32| +261|2023-10-06T21:15:35.5310000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:15:36.0310000-07:00|40022472|Zeromus|00019904|24014517||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:36.0750000-07:00|40022472|Zeromus|000198FB|23982356||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:15:36.0750000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0001|Sesuga Sapisuga|1.926|108.60|93.26|0.00|-1.06| +37|2023-10-06T21:15:36.1200000-07:00|10FF0001|Sesuga Sapisuga|000198FF|31294|90349|5000|10000|11||112.94|85.29|0.00|-1.53|1302|0|0|01|05000129|0|41E54FDC|| +261|2023-10-06T21:15:35.6210000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:35.6210000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:15:35.7310000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:15:36.1640000-07:00|40022472|Zeromus|00019903|23978689||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:36.2090000-07:00|10FF0007|Kehabiqo Febiqo|00019902|85792||||||99.34|92.87|0.00|-3.12| +21|2023-10-06T21:15:36.3870000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|201A0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|23978689|40478540|10000|10000|||100.00|80.10|0.00|0.00|31294|90349|5000|10000|||112.13|85.40|0.00|-1.30|00019906|0|1| +21|2023-10-06T21:15:36.6980000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|82D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23978689|40478540|10000|10000|||100.00|80.10|0.00|0.00|31294|90349|5000|10000|||111.05|86.20|0.00|-1.32|00019907|0|1| +31|2023-10-06T21:15:36.6980000-07:00|10FF0001||||| +37|2023-10-06T21:15:36.7430000-07:00|40022472|Zeromus|00019906|23970471||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:36.7430000-07:00|10FF0001|Sesuga Sapisuga|00019906|31294|90349|5500|10000|11||111.05|86.20|0.00|-1.32|1300|0|0|0| +21|2023-10-06T21:15:36.7880000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AE70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23970471|40478540|10000|10000|||100.00|80.10|0.00|0.00|85792|90890|10000|10000|||99.49|91.22|0.00|-3.08|00019908|0|1| +261|2023-10-06T21:15:36.4620000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:36.5600000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:15:37.0110000-07:00|40022472|Zeromus|00019905|23962735||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:37.0110000-07:00|10FF0001|Sesuga Sapisuga|00019905|31294|90349|5900|10000|11||111.06|86.18|0.00|-1.80|1300|0|0|0| +21|2023-10-06T21:15:37.1890000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44722003|5C020000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|23962735|40478540|10000|10000|||100.00|80.10|0.00|0.00|41840|63151|10000|10000|||90.03|92.02|0.00|1.18|00019909|0|1| +37|2023-10-06T21:15:37.2340000-07:00|40022472|Zeromus|00019907|23960642||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:37.3220000-07:00|40022472|Zeromus|00019908|23957851||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:37.4120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45520|57078|8300|10000|18||108.57|93.28|0.00|2.83|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:15:37.0220000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:15:37.5010000-07:00|40022472|Zeromus|DoT|A92|665|23957851|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|51444|57266|9300|10000|||100.76|97.70|0.00|0.41| +21|2023-10-06T21:15:37.5010000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0001|Sesuga Sapisuga|4|26720000|330E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|31294|90349|5900|10000|||111.06|86.18|0.00|-1.80|45520|57078|8300|10000|||108.57|93.28|0.00|2.82|0001990A|0|1| +38|2023-10-06T21:15:37.5010000-07:00|40022472|Zeromus|005A5A00|23956214|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:37.5010000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:15:37.1360000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:15:37.5010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51444|57266|9850|10000|0||100.76|97.70|0.00|0.41|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:15:37.5010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|31294|90349|5900|10000|19||111.06|86.18|0.00|-1.80|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:37.5010000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +261|2023-10-06T21:15:37.2260000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T21:15:37.6360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51444|57266|9850|10000|0||100.76|97.70|0.00|0.41|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:37.6360000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:15:37.2260000-07:00|Change|10FF0006||||| +22|2023-10-06T21:15:37.7250000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0008|Kokosaze Lulusaze|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41840|63151|10000|10000|||91.09|92.53|0.00|2.47|41840|63151|10000|10000|||91.09|92.53|0.00|2.47|0001990B|0|5| +22|2023-10-06T21:15:37.7250000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0007|Kehabiqo Febiqo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|85792|90890|10000|10000|||97.20|88.56|0.00|3.01|41840|63151|10000|10000|||91.09|92.53|0.00|2.47|0001990B|1|5| +22|2023-10-06T21:15:37.7250000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0006|Wowobora Gogobora|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51444|57266|9850|10000|||100.76|97.70|0.00|0.41|41840|63151|10000|10000|||91.09|92.53|0.00|2.47|0001990B|2|5| +22|2023-10-06T21:15:37.7250000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0004|Buhojaqe Zijaqe|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45520|57078|7300|10000|||108.57|93.28|0.00|2.81|41840|63151|10000|10000|||91.09|92.53|0.00|2.47|0001990B|3|5| +22|2023-10-06T21:15:37.7250000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0001|Sesuga Sapisuga|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31294|90349|5900|10000|||111.06|86.18|0.00|-1.80|41840|63151|10000|10000|||91.09|92.53|0.00|2.47|0001990B|4|5| +261|2023-10-06T21:15:37.3190000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:15:37.8580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45520|57078|7300|10000|18||108.57|93.28|0.00|2.81|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:37.8580000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +21|2023-10-06T21:15:37.9480000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|22220000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|23956214|40478540|10000|10000|||100.00|80.10|0.00|0.00|85792|90890|10000|10000|||96.11|87.82|0.00|2.80|0001990C|0|1| +261|2023-10-06T21:15:37.5080000-07:00|Change|10FF0001||| +37|2023-10-06T21:15:37.9920000-07:00|40022472|Zeromus|00019909|23932660||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:37.6070000-07:00|Change|10FF0008||||||||| +20|2023-10-06T21:15:38.0360000-07:00|10FF0006|Wowobora Gogobora|AD|Resurrection|10FF000A|Dukaro Nezikaro|7.952|100.76|97.70|0.00|0.41| +21|2023-10-06T21:15:38.0800000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AF20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23932660|40478540|10000|10000|||100.00|80.10|0.00|0.00|41840|63151|10000|10000|||92.05|96.28|0.00|0.83|0001990D|0|1| +38|2023-10-06T21:15:38.1690000-07:00|40022AF2||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:15:38.1690000-07:00|40022AF2||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:15:37.7240000-07:00|Change|40022AED||||| +21|2023-10-06T21:15:38.2140000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|26DF0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23932660|40478540|10000|10000|||100.00|80.10|0.00|0.00|31294|90349|5900|10000|||111.06|86.18|0.00|-2.07|0001990E|0|1| +38|2023-10-06T21:15:38.2140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|31294|90349|5900|10000|19||111.06|86.18|0.00|-2.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:38.2140000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +261|2023-10-06T21:15:37.8430000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:15:38.3470000-07:00|10FF0008|Kokosaze Lulusaze|0001990B|41840|63151|10000|10000|0||92.32|96.99|0.00|0.65|1F00|0|0|01|0300079F|0|41700000|| +26|2023-10-06T21:15:38.3470000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +21|2023-10-06T21:15:38.3920000-07:00|10FF0008|Kokosaze Lulusaze|B47|Dismantle|40022472|Zeromus|F60E|35C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23932660|40478540|10000|10000|||100.00|80.10|0.00|0.00|41840|63151|10000|10000|||92.32|96.99|0.00|0.65|0001990F|0|1| +37|2023-10-06T21:15:38.4820000-07:00|10FF0007|Kehabiqo Febiqo|0001990B|85792|90890|10000|10000|11||92.89|86.33|0.00|2.69|1501|0|0|01|0400079F|0|41700000|| +26|2023-10-06T21:15:38.4820000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|90890|63151| +37|2023-10-06T21:15:38.4820000-07:00|10FF0001|Sesuga Sapisuga|0001990A|41136|90349|5900|10000|19||111.06|86.18|0.00|-2.07|1300|0|0|01|05000129|0|41E8830F|| +22|2023-10-06T21:15:38.4820000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0001|Sesuga Sapisuga|9|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31294|90349|5900|10000|||111.06|86.18|0.00|-2.07|45520|57078|7300|10000|||107.86|93.92|0.00|-0.84|00019910|0|5| +22|2023-10-06T21:15:38.4820000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0004|Buhojaqe Zijaqe|330E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45520|57078|7300|10000|||107.86|93.92|0.00|-0.84|45520|57078|7300|10000|||107.86|93.92|0.00|-0.84|00019910|1|5| +22|2023-10-06T21:15:38.4820000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0006|Wowobora Gogobora|330E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51444|57266|9850|10000|||100.76|97.70|0.00|1.96|45520|57078|7300|10000|||107.86|93.92|0.00|-0.84|00019910|2|5| +22|2023-10-06T21:15:38.4820000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0007|Kehabiqo Febiqo|330E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|85792|90890|10000|10000|||92.89|86.33|0.00|2.69|45520|57078|7300|10000|||107.86|93.92|0.00|-0.84|00019910|3|5| +22|2023-10-06T21:15:38.4820000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0008|Kokosaze Lulusaze|330E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41840|63151|10000|10000|||92.76|97.32|0.00|2.82|45520|57078|7300|10000|||107.86|93.92|0.00|-0.84|00019910|4|5| +39|2023-10-06T21:15:38.5270000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +03|2023-10-06T21:15:38.0810000-07:00|40022AF2|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||101.69|96.24|0.00|-0.56| +261|2023-10-06T21:15:38.0810000-07:00|Add|40022AF2||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:38.1720000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:15:38.1720000-07:00|Change|40022AF2||| +37|2023-10-06T21:15:38.5710000-07:00|40022472|Zeromus|0001990C|23923922||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:38.6160000-07:00|10FF0006|Wowobora Gogobora|0001990B|51444|57266|9850|10000|0||100.76|97.70|0.00|2.38|1B02|0|0|01|0300079F|0|41700000|| +26|2023-10-06T21:15:38.6160000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|57266|63151| +261|2023-10-06T21:15:38.1720000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:15:38.1720000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:15:38.7040000-07:00|10FF0008|Kokosaze Lulusaze|42471|63151|10000|10000|||93.93|98.02|0.00|2.82| +37|2023-10-06T21:15:38.7500000-07:00|10FF0004|Buhojaqe Zijaqe|0001990B|45520|57078|7300|10000|18||107.23|95.04|0.00|-0.67|1C03|0|0|01|0500079F|0|41700000|| +26|2023-10-06T21:15:38.7500000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|57078|63151| +24|2023-10-06T21:15:38.7500000-07:00|40022472|Zeromus|DoT|0|10C0|23923922|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:15:38.7500000-07:00|40022472|Zeromus|005A5A00|23919634|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:15:38.8370000-07:00|40022472|Zeromus|0001990D|23916832||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:15:38.8370000-07:00|4C18|3| +37|2023-10-06T21:15:38.8810000-07:00|10FF0001|Sesuga Sapisuga|0001990B|41136|90349|5900|10000|19||111.06|86.18|0.00|-2.07|1304|0|0|01|0200079F|0|41700000|| +26|2023-10-06T21:15:38.8810000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|90349|63151| +39|2023-10-06T21:15:38.8810000-07:00|10FF0001|Sesuga Sapisuga|42039|90349|6100|10000|||111.06|86.18|0.00|-2.07| +39|2023-10-06T21:15:38.8820000-07:00|10FF0004|Buhojaqe Zijaqe|46090|57078|7500|10000|||107.71|96.49|0.00|-0.07| +22|2023-10-06T21:15:38.8820000-07:00|10FF0007|Kehabiqo Febiqo|C5|Shield Wall|10FF0007|Kehabiqo Febiqo|EC0E|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|85792|90890|10000|10000|||92.16|85.55|0.00|2.81|85792|90890|10000|10000|||92.16|85.55|0.00|2.81|00019911|0|5| +22|2023-10-06T21:15:38.8820000-07:00|10FF0007|Kehabiqo Febiqo|C5|Shield Wall|10FF0008|Kokosaze Lulusaze|EC0E|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42471|63151|10000|10000|||95.16|98.54|0.00|2.04|85792|90890|10000|10000|||92.16|85.55|0.00|2.81|00019911|1|5| +22|2023-10-06T21:15:38.8820000-07:00|10FF0007|Kehabiqo Febiqo|C5|Shield Wall|10FF0006|Wowobora Gogobora|EC0E|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51444|57266|9850|10000|||100.76|97.70|0.00|2.58|85792|90890|10000|10000|||92.16|85.55|0.00|2.81|00019911|2|5| +22|2023-10-06T21:15:38.8820000-07:00|10FF0007|Kehabiqo Febiqo|C5|Shield Wall|10FF0004|Buhojaqe Zijaqe|EC0E|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45520|57078|7300|10000|||107.71|96.49|0.00|-0.07|85792|90890|10000|10000|||92.16|85.55|0.00|2.81|00019911|3|5| +22|2023-10-06T21:15:38.8820000-07:00|10FF0007|Kehabiqo Febiqo|C5|Shield Wall|10FF0001|Sesuga Sapisuga|EC0E|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41136|90349|5900|10000|||111.06|86.18|0.00|-2.07|85792|90890|10000|10000|||92.16|85.55|0.00|2.81|00019911|4|5| +36|2023-10-06T21:15:38.8820000-07:00|0000|3| +21|2023-10-06T21:15:38.8820000-07:00|10FF0001|Sesuga Sapisuga|1D6B|Rampart|10FF0001|Sesuga Sapisuga|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41136|90349|5900|10000|||111.06|86.18|0.00|-2.07|41136|90349|5900|10000|||111.06|86.18|0.00|-2.07|00019912|0|1| +261|2023-10-06T21:15:38.4720000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:15:38.4720000-07:00|Change|10FF0001||||| +39|2023-10-06T21:15:38.9700000-07:00|10FF0007|Kehabiqo Febiqo|86700|90890|10000|10000|||92.09|85.44|-0.02|2.82| +39|2023-10-06T21:15:38.9700000-07:00|10FF0006|Wowobora Gogobora|52016|57266|10000|10000|||100.76|97.70|0.00|2.58| +21|2023-10-06T21:15:38.9700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|4E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23916832|40478540|10000|10000|||100.00|80.10|0.00|0.00|42039|90349|6100|10000|||111.06|86.18|0.00|-2.07|00019913|0|1| +31|2023-10-06T21:15:38.9700000-07:00|10FF0001||||| +261|2023-10-06T21:15:38.5670000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:15:39.0140000-07:00|40022472|Zeromus|0001990F|23916832|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0400035C|0|41200000|| +26|2023-10-06T21:15:39.0140000-07:00|35C|Dismantled|10.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|63151| +21|2023-10-06T21:15:39.0140000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|15010000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|42471|63151|10000|10000|||95.73|98.78|0.00|1.65|54201|54201|10000|10000|||100.36|97.55|0.00|-2.81|00019914|0|1| +261|2023-10-06T21:15:38.6820000-07:00|Change|40022AF2||| +34|2023-10-06T21:15:39.1920000-07:00|40022AF2|Carbuncle|40022AF2|Carbuncle|01| +37|2023-10-06T21:15:39.3260000-07:00|10FF0007|Kehabiqo Febiqo|00019911|86700|90890|10000|10000|11||92.09|85.44|-0.02|2.82|1500|0|0|01|080000C2|0|41200000|| +26|2023-10-06T21:15:39.3260000-07:00|C2|Shield Wall|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:15:39.3710000-07:00|10FF0004|Buhojaqe Zijaqe|00019910|46090|57078|7500|10000|31||109.05|98.61|0.00|0.47|1C01|0|0|01|04000129|0|41E80000|| +26|2023-10-06T21:15:39.3710000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:15:39.3710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46090|57078|7500|10000|31||109.05|98.61|0.00|0.47|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:15:39.4600000-07:00|10FF0008|Kokosaze Lulusaze|00019911|42471|63151|10000|10000|0||98.09|100.00|0.00|1.16|1F01|0|0|01|040000C2|0|41200000|| +26|2023-10-06T21:15:39.4600000-07:00|C2|Shield Wall|10.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|63151|90890| +37|2023-10-06T21:15:39.5050000-07:00|40022472|Zeromus|0001990E|23906881||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:39.5050000-07:00|10FF0001|Sesuga Sapisuga|0001990E|42039|90349|6500|10000|19||111.52|85.90|0.00|-2.22|1300|0|0|0| +37|2023-10-06T21:15:39.5050000-07:00|10FF0001|Sesuga Sapisuga|00019912|42039|90349|6500|10000|19||111.52|85.90|0.00|-2.22|1300|0|0|01|070004A7|0|41A00000|| +26|2023-10-06T21:15:39.5050000-07:00|4A7|Rampart|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:15:39.5050000-07:00|40022472|Zeromus|00019913|23905631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:39.5050000-07:00|10FF0006|Wowobora Gogobora|00019910|52016|57266|10000|10000|30||100.76|97.70|0.00|2.58|1B02|0|0|01|05000129|0|41E80000|| +26|2023-10-06T21:15:39.5050000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:15:39.5050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52016|57266|10000|10000|30||100.76|97.70|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:39.5940000-07:00|10FF0006|Wowobora Gogobora|00019911|52016|57266|10000|10000|30||100.76|97.70|0.00|2.58|1B02|0|0|01|070000C2|0|41200000|| +26|2023-10-06T21:15:39.5940000-07:00|C2|Shield Wall|10.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|57266|90890| +21|2023-10-06T21:15:39.5950000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42039|90349|6500|10000|||111.57|85.83|0.00|-2.22|42039|90349|6500|10000|||111.57|85.83|0.00|-2.22|00019915|0|1| +37|2023-10-06T21:15:39.6380000-07:00|10FF0007|Kehabiqo Febiqo|00019910|86700|90890|10000|10000|19||92.09|85.44|0.00|2.82|1503|0|0|01|07000129|0|41E80000|| +26|2023-10-06T21:15:39.6380000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:15:39.6380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86700|90890|10000|10000|19||92.09|85.44|0.00|2.82|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:15:39.6820000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1E3D0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|23905631|40478540|10000|10000|||100.00|80.10|0.00|0.00|42471|63151|10000|10000|||99.20|100.87|-0.02|0.92|00019916|0|1| +261|2023-10-06T21:15:39.2520000-07:00|Change|10FF0006||||| +37|2023-10-06T21:15:39.7280000-07:00|10FF0004|Buhojaqe Zijaqe|00019911|46090|57078|7500|10000|31||111.15|99.05|0.00|1.08|1C03|0|0|01|060000C2|0|41200000|| +26|2023-10-06T21:15:39.7280000-07:00|C2|Shield Wall|10.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|57078|90890| +37|2023-10-06T21:15:39.7720000-07:00|10FF0008|Kokosaze Lulusaze|00019910|42471|63151|10000|10000|28||100.04|101.02|0.00|-3.11|1F04|0|0|01|05000129|0|41E80000|| +26|2023-10-06T21:15:39.7720000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:15:39.7720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|42471|63151|10000|10000|28||100.04|101.02|0.00|-3.11|0|0|0||||||||||||||||||| +37|2023-10-06T21:15:39.8160000-07:00|10FF0008|Kokosaze Lulusaze|00019914|47848||||||100.59|100.99|0.00|3.01| +37|2023-10-06T21:15:39.8600000-07:00|10FF0001|Sesuga Sapisuga|00019911|42039|90349|6500|10000|19||111.60|85.79|0.00|-2.22|1304|0|0|01|090000C2|0|41200000|| +26|2023-10-06T21:15:39.8600000-07:00|C2|Shield Wall|10.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +21|2023-10-06T21:15:39.8600000-07:00|40022472|Zeromus|8B83|Dark Matter|40022472|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23905631|40478540|10000|10000|||100.00|80.10|0.00|0.00|23905631|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019917|0|1| +261|2023-10-06T21:15:39.3500000-07:00|Change|40022472||||| +261|2023-10-06T21:15:39.4470000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:15:39.5450000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:15:40.1280000-07:00|10FF0001|Sesuga Sapisuga|00019915|42039|90349|6500|10000|19||111.60|85.79|0.00|-2.22|1300|0|0|01|0A00004A|0|41700000|| +26|2023-10-06T21:15:40.1280000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +21|2023-10-06T21:15:40.1730000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|135E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23905631|40478540|10000|10000|||100.00|80.10|0.00|0.00|86700|90890|10000|10000|||92.09|85.44|0.00|2.82|00019918|0|1| +21|2023-10-06T21:15:40.2180000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|1EF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23905631|40478540|10000|10000|||100.00|80.10|0.00|0.00|47848|63151|10000|10000|||101.35|100.65|0.00|2.41|00019919|0|1| +38|2023-10-06T21:15:40.3960000-07:00|10FF0009|Zewo Negiwo|005A5A18|0|56823|0|10000|0||116.75|97.18|0.00|-0.71|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:40.3960000-07:00|ED2|Beckoning Dark|0.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +38|2023-10-06T21:15:40.3960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52016|57266|10000|10000|30||100.76|97.70|0.00|2.58|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:40.3960000-07:00|ED7|Forked Lightning|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:15:40.3960000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|51669|0|10000|0||108.02|84.98|0.00|-2.50|0|0|0|||||||||||||||| +30|2023-10-06T21:15:40.3960000-07:00|ED7|Forked Lightning|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +261|2023-10-06T21:15:39.9850000-07:00|Change|4002248E||||||||| +37|2023-10-06T21:15:40.4400000-07:00|40022472|Zeromus|00019916|23897890||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:40.4850000-07:00|4002248E|Zeromus|8B54|Forked Lightning|10FF0001|Sesuga Sapisuga|EC550605|0|5A0E|D870000|1B|8B548000|0|0|0|0|0|0|0|0|0|0|42039|90349|6500|10000|||111.60|85.79|0.00|-2.22|44|44|0|10000|||108.04|85.00|0.00|-2.50|0001991A|0|1| +21|2023-10-06T21:15:40.4850000-07:00|4002248F|Zeromus|8B54|Forked Lightning|10FF0008|Kokosaze Lulusaze|550603|28690000|5A0E|D870000|1B|8B548000|0|0|0|0|0|0|0|0|0|0|47848|63151|10000|10000|||101.29|100.76|-0.02|-1.83|44|44|0|10000|||100.77|97.72|0.00|2.58|0001991B|0|1| +21|2023-10-06T21:15:40.4850000-07:00|40022490|Zeromus|8D3A|the Dark Beckons|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001991C|0|0| +24|2023-10-06T21:15:40.4850000-07:00|40022472|Zeromus|DoT|A92|5F2|23897890|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|52016|57266|10000|10000|||100.76|97.70|0.00|2.58| +38|2023-10-06T21:15:40.4850000-07:00|40022472|Zeromus|005A5A00|23896368|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:15:40.4850000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:15:40.2000000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:15:40.6630000-07:00|4002248C|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750603|481A0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|86700|90890|10000|10000|||92.09|85.44|0.00|2.82|44|44|0|10000|||100.00|100.00|0.00|0.00|0001991D|0|1| +21|2023-10-06T21:15:40.6630000-07:00|4002248D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|EC750605|B690000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|42039|90349|6500|10000|||111.60|85.79|0.00|-2.22|44|44|0|10000|||100.00|100.00|0.00|0.00|0001991E|0|1| +37|2023-10-06T21:15:40.7070000-07:00|40022472|Zeromus|00019918|23891410||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:40.7070000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|20810000|4|1B358000|0|0|0|0|0|0|0|0|0|0|0|0|23896368|40478540|10000|10000|||100.00|80.10|0.00|0.00|42039|90349|6500|10000|||111.60|85.79|0.00|-2.03|0001991F|0|1| +38|2023-10-06T21:15:40.7070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42039|90349|5500|10000|19||111.60|85.79|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:40.7070000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +21|2023-10-06T21:15:40.7510000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|119A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23896368|40478540|10000|10000|||100.00|80.10|0.00|0.00|47848|63151|10000|10000|||101.07|100.92|0.00|-1.22|00019920|0|1| +37|2023-10-06T21:15:40.7960000-07:00|10FF0001|Sesuga Sapisuga|0001991A|42039|90349|5500|10000|0||111.60|85.79|0.00|-2.03|1300|0|0|01|05000D87|0|41200000|| +30|2023-10-06T21:15:40.7960000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +26|2023-10-06T21:15:40.7960000-07:00|D87|Paralysis|10.00|4002248E|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +37|2023-10-06T21:15:40.7960000-07:00|10FF0008|Kokosaze Lulusaze|0001991B|37503|63151|10000|10000|0||101.07|100.92|0.00|-1.22|1F00|0|0|01|05000D87|0|41200000|| +30|2023-10-06T21:15:40.7960000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +26|2023-10-06T21:15:40.7960000-07:00|D87|Paralysis|10.00|4002248F|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:15:40.7960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|37503|63151|10000|10000|0||101.07|100.92|0.00|-1.22|0|0|0||||||||||||||||||| +38|2023-10-06T21:15:40.7960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42039|90349|5500|10000|0||111.60|85.79|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:15:40.9310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52016|57266|10000|10000|30||100.76|97.70|0.00|2.58|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:40.9310000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +21|2023-10-06T21:15:40.9740000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|32A60000|143E|340000|4|17238000|11B|2A8000|0|0|0|0|0|0|0|0|23891410|40478540|10000|10000|||100.00|80.10|0.00|0.00|86700|90890|10000|10000|||92.09|85.44|0.00|2.82|00019921|0|1| +261|2023-10-06T21:15:40.5790000-07:00|Change|10FF0001||||| +37|2023-10-06T21:15:41.0180000-07:00|40022472|Zeromus|00019919|23883486||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:41.2870000-07:00|10FF0007|Kehabiqo Febiqo|0001991D|68242|90890|10000|10000|0||92.09|85.44|0.00|2.17|1500|0|0|01|07000000|0|0|| +37|2023-10-06T21:15:41.2870000-07:00|10FF0001|Sesuga Sapisuga|0001991E|39118||||||111.60|85.79|0.00|-2.03| +38|2023-10-06T21:15:41.2870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|68242|90890|10000|10000|0||92.09|85.44|0.00|2.17|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:41.2870000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +261|2023-10-06T21:15:40.9270000-07:00|Remove|40022AE3| +21|2023-10-06T21:15:41.4210000-07:00|10FF0001|Sesuga Sapisuga|1CD6|Intervention|10FF0007|Kehabiqo Febiqo|EC0E|4960000|F60E|A730000|13720E|A740000|0|0|0|0|0|0|0|0|0|0|68242|90890|10000|10000|||92.09|85.44|0.00|2.17|39118|90349|5500|10000|||111.60|85.79|0.00|-1.59|00019922|0|1| +31|2023-10-06T21:15:41.4210000-07:00|10FF0001||||| +37|2023-10-06T21:15:41.4650000-07:00|40022472|Zeromus|0001991F|23875165||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:41.4650000-07:00|10FF0001|Sesuga Sapisuga|0001991F|46083||||||111.60|85.79|0.00|-1.59| +37|2023-10-06T21:15:41.5090000-07:00|40022472|Zeromus|00019920|23870659||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:41.5090000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +261|2023-10-06T21:15:41.0390000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:15:41.5970000-07:00|10FF0007|Kehabiqo Febiqo|1D6B|Rampart|10FF0007|Kehabiqo Febiqo|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|68242|90890|10000|10000|||92.09|85.44|0.00|2.17|68242|90890|10000|10000|||92.09|85.44|0.00|2.17|00019923|0|1| +39|2023-10-06T21:15:41.7320000-07:00|10FF0008|Kokosaze Lulusaze|38134|63151|10000|10000|||100.76|101.15|0.00|-0.35| +24|2023-10-06T21:15:41.7760000-07:00|40022472|Zeromus|DoT|0|F6B|23870659|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|38134|63151|10000|10000|||100.76|101.15|0.00|-0.35| +38|2023-10-06T21:15:41.7760000-07:00|40022472|Zeromus|005A5A00|23866712|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T21:15:41.8650000-07:00|10FF0001|Sesuga Sapisuga|46986|90349|5700|10000|||111.60|85.79|0.00|-1.59| +36|2023-10-06T21:15:41.8650000-07:00|00DC|3| +39|2023-10-06T21:15:41.9090000-07:00|10FF0004|Buhojaqe Zijaqe|46660|57078|7700|10000|||103.09|104.52|0.00|-1.60| +39|2023-10-06T21:15:41.9980000-07:00|10FF0007|Kehabiqo Febiqo|69150|90890|10000|10000|||92.09|85.44|0.00|2.17| +39|2023-10-06T21:15:41.9980000-07:00|10FF0006|Wowobora Gogobora|52588|57266|10000|10000|||100.76|97.70|0.00|2.58| +20|2023-10-06T21:15:41.9980000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0001|Sesuga Sapisuga|1.926|103.09|104.52|0.00|-1.60| +261|2023-10-06T21:15:41.5380000-07:00|Change|10FF0001||||| +38|2023-10-06T21:15:42.0440000-07:00|40022472|Zeromus|005A5A00|23866712|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:15:42.0440000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +21|2023-10-06T21:15:42.1770000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C726003|590C0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|23866712|40478540|10000|10000|||100.00|80.10|0.00|0.00|38134|63151|10000|10000|||100.76|101.15|0.00|-0.35|00019924|0|1| +04|2023-10-06T21:15:41.7480000-07:00|40022AED|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|54388|0|10000|||101.54|92.23|0.00|3.12| +261|2023-10-06T21:15:41.7480000-07:00|Remove|40022AED| +37|2023-10-06T21:15:42.2230000-07:00|10FF0007|Kehabiqo Febiqo|00019923|69150|90890|10000|10000|0||92.09|85.44|0.00|2.17|1500|0|0|01|070004A7|0|41A00000|| +26|2023-10-06T21:15:42.2230000-07:00|4A7|Rampart|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:15:42.2230000-07:00|10FF0007|Kehabiqo Febiqo|00019922|69150|90890|10000|10000|0||92.09|85.44|0.00|2.17|1500|0|0|03|09000496|0|41000000|||||||||| +26|2023-10-06T21:15:42.2230000-07:00|496|Intervention|8.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +26|2023-10-06T21:15:42.2230000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +26|2023-10-06T21:15:42.2230000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +21|2023-10-06T21:15:42.2230000-07:00|4002248C|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|586C0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|69150|90890|10000|10000|||92.09|85.44|0.00|2.17|44|44|0|10000|||100.00|100.00|0.00|0.00|00019925|0|1| +21|2023-10-06T21:15:42.2230000-07:00|4002248D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750003|47D70000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|46986|90349|5700|10000|||111.60|85.79|0.00|-1.59|44|44|0|10000|||100.00|100.00|0.00|0.00|00019926|0|1| +21|2023-10-06T21:15:42.3550000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|148F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|46986|90349|5700|10000|||111.60|85.79|0.00|-1.59|54201|54201|10000|10000|||100.36|97.55|0.00|3.12|00019927|0|1| +37|2023-10-06T21:15:42.4880000-07:00|40022472|Zeromus|00019921|23853746||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:42.4880000-07:00|10FF0007|Kehabiqo Febiqo|00019921|75073||||||92.09|85.44|0.00|2.17| +261|2023-10-06T21:15:42.1010000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:15:42.7110000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|18600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23853746|40478540|10000|10000|||100.00|80.10|0.00|0.00|38134|63151|10000|10000|||100.76|101.15|0.00|-3.10|00019928|0|1| +37|2023-10-06T21:15:42.8890000-07:00|10FF0007|Kehabiqo Febiqo|00019925|52437||||||92.09|85.41|0.00|2.38| +37|2023-10-06T21:15:42.8890000-07:00|10FF0001|Sesuga Sapisuga|00019926|28595||||||111.60|85.79|0.00|-1.59| +37|2023-10-06T21:15:42.9770000-07:00|40022472|Zeromus|00019924|23830950||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:43.1580000-07:00|10FF0001|Sesuga Sapisuga|00019927|33858||||||111.60|85.79|0.00|-1.60| +21|2023-10-06T21:15:43.2440000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|1D770000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23830950|40478540|10000|10000|||100.00|80.10|0.00|0.00|33858|90349|5700|10000|||111.60|85.79|0.00|-2.03|00019929|0|1| +38|2023-10-06T21:15:43.2440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|33858|90349|5700|10000|0||111.60|85.79|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:43.2440000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +37|2023-10-06T21:15:43.3340000-07:00|40022472|Zeromus|00019928|23824710||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:43.4230000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16750000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|23824710|40478540|10000|10000|||100.00|80.10|0.00|0.00|52437|90890|10000|10000|||92.26|84.89|0.00|2.80|0001992A|0|1| +21|2023-10-06T21:15:43.4230000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0001|Sesuga Sapisuga|4|26800000|4C0E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|33858|90349|5700|10000|||111.60|85.79|0.00|-2.03|46660|57078|7700|10000|||102.80|104.54|0.00|2.70|0001992B|0|1| +38|2023-10-06T21:15:43.4230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|33858|90349|5700|10000|19||111.60|85.79|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:43.4230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +24|2023-10-06T21:15:43.4680000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|115A|52437|90890|10000|10000|||92.26|84.89|0.00|2.80|10FF0001|Sesuga Sapisuga|0|33858|90349|5700|10000|||111.60|85.79|0.00|-2.03| +38|2023-10-06T21:15:43.4680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|56879|90890|10000|10000|0||92.26|84.89|0.00|2.80|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:43.1290000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T21:15:43.5560000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AFB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23824710|40478540|10000|10000|||100.00|80.10|0.00|0.00|56879|90890|10000|10000|||92.26|84.88|0.00|2.12|0001992C|0|1| +261|2023-10-06T21:15:43.3260000-07:00|Change|10FF0004||||| +21|2023-10-06T21:15:43.7780000-07:00|4002248C|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|588F0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|56879|90890|10000|10000|||92.28|84.82|0.00|2.20|44|44|0|10000|||100.00|100.00|0.00|0.00|0001992D|0|1| +36|2023-10-06T21:15:43.7780000-07:00|0208|3| +21|2023-10-06T21:15:43.7780000-07:00|4002248D|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750603|5F20000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|33858|90349|5700|10000|||111.60|85.79|0.00|-2.03|44|44|0|10000|||100.00|100.00|0.00|0.00|0001992E|0|1| +37|2023-10-06T21:15:43.9560000-07:00|40022472|Zeromus|0001992A|23818961||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:44.0900000-07:00|40022472|Zeromus|0001992C|23816150||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:44.1370000-07:00|40022AF2|Carbuncle|54388|54388|10000|10000|||101.69|96.24|0.00|-0.56| +21|2023-10-06T21:15:44.1370000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0001|Sesuga Sapisuga|6400F60E|7420000|F60E|A770000|930E|A780000|90A3000F|7418000|0|0|0|0|0|0|0|0|33858|90349|5700|10000|||111.60|85.79|0.00|-2.03|56879|90890|10000|10000|||92.38|84.54|0.00|2.71|0001992F|0|1| +37|2023-10-06T21:15:44.4020000-07:00|10FF0007|Kehabiqo Febiqo|0001992D|34208||||||92.39|84.49|0.00|2.27| +37|2023-10-06T21:15:44.4020000-07:00|10FF0001|Sesuga Sapisuga|0001992E|32336|90349|5700|10000|0||111.60|85.79|0.00|-2.03|1300|0|0|01|06000000|0|0|| +37|2023-10-06T21:15:44.4020000-07:00|10FF0001|Sesuga Sapisuga|0001992B|42192||||||111.60|85.79|0.00|-2.03| +38|2023-10-06T21:15:44.4020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42192|90349|5700|10000|0||111.60|85.79|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:44.4020000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +37|2023-10-06T21:15:44.5360000-07:00|40022472|Zeromus|00019929|23808607||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:44.5360000-07:00|10FF0001|Sesuga Sapisuga|00019929|42192|90349|6100|10000|0||111.60|85.79|0.00|-2.03|1300|0|0|0| +39|2023-10-06T21:15:44.5360000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +261|2023-10-06T21:15:44.0870000-07:00|Change|10FF0001||||| +21|2023-10-06T21:15:44.6700000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|5B2E0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|23808607|40478540|10000|10000|||100.00|80.10|0.00|0.00|38134|63151|10000|10000|||100.76|101.15|0.00|-3.10|00019930|0|1| +39|2023-10-06T21:15:44.7130000-07:00|10FF0008|Kokosaze Lulusaze|38765|63151|10000|10000|||100.76|101.15|0.00|-3.10| +24|2023-10-06T21:15:44.7590000-07:00|40022472|Zeromus|DoT|0|E56|23808607|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|38134|63151|10000|10000|||100.76|101.15|0.00|-3.10| +38|2023-10-06T21:15:44.7590000-07:00|40022472|Zeromus|005A5A00|23804937|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:15:44.7590000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:15:44.8030000-07:00|10FF0001|Sesuga Sapisuga|0001992F|42192|90349|6100|10000|10||111.60|85.79|0.00|-2.03|1300|0|0|03|06000742|64|41000000|||||||||| +26|2023-10-06T21:15:44.8030000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|90349|90890| +26|2023-10-06T21:15:44.8030000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +26|2023-10-06T21:15:44.8030000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +37|2023-10-06T21:15:44.8030000-07:00|10FF0007|Kehabiqo Febiqo|0001992F|34208|90890|10000|10000|0||92.39|84.49|-0.02|1.51|1500|0|0|01|0C000741|0190|41000000|| +26|2023-10-06T21:15:44.8030000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|90890|90890| +21|2023-10-06T21:15:44.8030000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|712003|1BC50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23808607|40478540|10000|10000|||100.00|80.10|0.00|0.00|34208|90890|10000|10000|||92.39|84.49|-0.02|1.51|00019931|0|1| +38|2023-10-06T21:15:44.8030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|42192|90349|6100|10000|10||111.60|85.79|0.00|-2.03|0|0|0||||||||||||||||||||||||||||||||||||| +36|2023-10-06T21:15:44.8470000-07:00|02E4|3| +39|2023-10-06T21:15:44.8920000-07:00|10FF0001|Sesuga Sapisuga|43095|90349|6300|10000|||111.60|85.79|0.00|-2.03| +39|2023-10-06T21:15:44.8920000-07:00|10FF0004|Buhojaqe Zijaqe|47230|57078|6900|10000|||102.80|104.54|0.00|2.70| +261|2023-10-06T21:15:44.4600000-07:00|Change|10FF0004||| +39|2023-10-06T21:15:44.9800000-07:00|10FF0007|Kehabiqo Febiqo|35116|90890|10000|10000|||92.39|84.49|0.00|2.10| +39|2023-10-06T21:15:44.9800000-07:00|10FF0006|Wowobora Gogobora|53160|57266|10000|10000|||100.76|97.70|0.00|2.58| +21|2023-10-06T21:15:45.2490000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|18E50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23804937|40478540|10000|10000|||100.00|80.10|0.00|0.00|38765|63151|10000|10000|||100.76|101.15|0.00|-3.10|00019932|0|1| +37|2023-10-06T21:15:45.4260000-07:00|40022472|Zeromus|00019931|23797828||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:45.4700000-07:00|10FF0006|Wowobora Gogobora|AD|Resurrection|10FF000A|Dukaro Nezikaro|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|0|10000|||109.61|83.60|0.00|-1.42|53160|57266|10000|10000|||100.76|97.70|0.00|2.58|00019933|0|1| +261|2023-10-06T21:15:44.9710000-07:00|Change|10FF0006||||||||||||||| +26|2023-10-06T21:15:45.5150000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|57078|57078| +21|2023-10-06T21:15:45.5150000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0007|Kehabiqo Febiqo|4|4EF30000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|35116|90890|10000|10000|||92.39|84.49|-0.02|2.10|47230|57078|6900|10000|||102.80|104.54|0.00|2.70|00019934|0|1| +261|2023-10-06T21:15:45.0860000-07:00|Change|10FF0001||| +21|2023-10-06T21:15:45.7370000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|F650000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|23797828|40478540|10000|10000|||100.00|80.10|0.00|0.00|43095|90349|6300|10000|||111.60|85.79|0.00|-2.03|00019935|0|1| +261|2023-10-06T21:15:45.2730000-07:00|Change|10FF0004||||||| +37|2023-10-06T21:15:45.8250000-07:00|40022472|Zeromus|00019930|23774486||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:45.8700000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|39D90000|204|25608000|0|0|0|0|0|0|0|0|0|0|0|0|23797828|40478540|10000|10000|||100.00|80.10|0.00|0.00|35116|90890|10000|10000|||92.39|84.49|-0.02|2.10|00019936|0|1| +21|2023-10-06T21:15:45.9150000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|726003|26810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23774486|40478540|10000|10000|||100.00|80.10|0.00|0.00|38765|63151|10000|10000|||100.76|101.15|0.00|-3.10|00019937|0|1| +21|2023-10-06T21:15:45.9150000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750305|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|43095|90349|6300|10000|||111.60|85.79|0.00|-2.03|23774486|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019938|0|1| +261|2023-10-06T21:15:45.5800000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:15:46.0470000-07:00|40022472|Zeromus|00019932|23768113||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:46.1800000-07:00|10FF0007|Kehabiqo Febiqo|00019934|55327||||||92.39|84.49|-0.02|2.10| +38|2023-10-06T21:15:46.1800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|55327|90890|10000|10000|0||92.39|84.49|-0.02|2.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:46.1800000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +21|2023-10-06T21:15:46.2240000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|21940000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|38765|63151|10000|10000|||100.76|101.15|0.00|-3.10|54201|54201|10000|10000|||100.36|97.55|0.00|1.31|00019939|0|1| +21|2023-10-06T21:15:46.3140000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23768113|40478540|10000|10000|||100.00|80.10|0.00|0.00|53160|57266|7600|10000|||100.76|97.70|0.00|2.58|0001993A|0|1| +20|2023-10-06T21:15:46.3140000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0007|Kehabiqo Febiqo|1.926|102.85|103.81|0.00|3.10| +37|2023-10-06T21:15:46.3580000-07:00|40022472|Zeromus|00019935|23764172||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:46.3580000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|756003|92FA0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|23768113|40478540|10000|10000|||100.00|80.10|0.00|0.00|53160|57266|7600|10000|||100.76|97.70|0.00|2.58|0001993B|0|1| +38|2023-10-06T21:15:46.3580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53160|57266|7200|10000|30||100.76|97.70|0.00|2.58|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:15:46.3580000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +24|2023-10-06T21:15:46.4920000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|2560|43095|90349|6300|10000|||111.60|85.79|0.00|-2.03|10FF0007|Kehabiqo Febiqo|0|55327|90890|10000|10000|||92.39|84.49|-0.02|2.10| +37|2023-10-06T21:15:46.4920000-07:00|40022472|Zeromus|00019936|23749363||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:46.4920000-07:00|10FF0007|Kehabiqo Febiqo|00019936|64895||||||92.39|84.49|-0.02|2.10| +24|2023-10-06T21:15:46.4920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|117D|55327|90890|10000|10000|||92.39|84.49|-0.02|2.10|10FF0007|Kehabiqo Febiqo|0|55327|90890|10000|10000|||92.39|84.49|-0.02|2.10| +38|2023-10-06T21:15:46.4920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69372|90890|10000|10000|0||92.39|84.49|-0.02|2.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:15:46.4920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|52663|90349|6300|10000|10||111.60|85.79|0.00|-2.03|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:46.0310000-07:00|Change|10FF0006||||| +37|2023-10-06T21:15:46.5810000-07:00|40022472|Zeromus|00019937|23739506||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:46.5810000-07:00|10FF000A|Dukaro Nezikaro|00019933|0|57941|0|10000|0||109.61|83.60|0.00|-1.42|1E00|0|0|01|03000094|08|42700000|| +26|2023-10-06T21:15:46.5810000-07:00|94|Raise|60.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|08|57941|57266| +37|2023-10-06T21:15:46.7150000-07:00|10FF0001|Sesuga Sapisuga|00019938|52663|90349|6300|10000|6||111.47|85.81|0.00|-1.42|1300|0|0|0| +37|2023-10-06T21:15:46.8490000-07:00|40022472|Zeromus|0001993A|23739321||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:46.3420000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:15:46.9380000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23739321|40478540|10000|10000|||100.00|80.10|0.00|0.00|69372|90890|10000|10000|||93.81|85.19|0.00|2.04|0001993C|0|1| +37|2023-10-06T21:15:47.0270000-07:00|10FF0008|Kokosaze Lulusaze|00019939|47361||||||99.92|101.15|-0.01|-1.60| +261|2023-10-06T21:15:46.6430000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:15:47.1610000-07:00|40022472|Zeromus|0001993B|23701695||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:47.1610000-07:00|40022AF2|Carbuncle|54388|54388|10000|10000|||101.69|96.24|0.00|-0.56| +37|2023-10-06T21:15:47.4750000-07:00|40022472|Zeromus|0001993C|23698751||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:46.9820000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:15:47.5190000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-0.16| +21|2023-10-06T21:15:47.5190000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5AF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23701695|40478540|10000|10000|||100.00|80.10|0.00|0.00|47361|63151|10000|10000|||99.90|101.15|0.00|-1.57|0001993D|0|1| +39|2023-10-06T21:15:47.6990000-07:00|10FF0008|Kokosaze Lulusaze|47992|63151|10000|10000|||99.90|101.15|0.00|3.14| +21|2023-10-06T21:15:47.6990000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0007|Kehabiqo Febiqo|4|27020000|360E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|69372|90890|10000|10000|||98.63|87.57|0.00|1.90|47230|57078|6900|10000|||102.95|102.22|0.00|-2.73|0001993E|0|1| +38|2023-10-06T21:15:47.6990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69372|90890|10000|10000|19||98.63|87.57|0.00|1.90|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:47.6990000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +24|2023-10-06T21:15:47.7420000-07:00|40022472|Zeromus|DoT|0|15A5|23698751|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|47361|63151|10000|10000|||99.90|101.15|0.00|3.14| +38|2023-10-06T21:15:47.7420000-07:00|40022472|Zeromus|005A5A00|23693210|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:15:47.7420000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:15:47.3840000-07:00|Change|10FF0004||||||||||||||||||||||||||| +261|2023-10-06T21:15:47.3840000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:15:47.8770000-07:00|10FF0001|Sesuga Sapisuga|53566|90349|6500|10000|||110.82|86.84|0.00|-1.31| +39|2023-10-06T21:15:47.8770000-07:00|10FF0004|Buhojaqe Zijaqe|47800|57078|6100|10000|||102.95|102.22|0.00|-2.75| +36|2023-10-06T21:15:47.8770000-07:00|03C0|3| +261|2023-10-06T21:15:47.3840000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:15:47.9650000-07:00|10FF0007|Kehabiqo Febiqo|70280|90890|10000|10000|||99.27|88.51|0.00|1.97| +39|2023-10-06T21:15:47.9650000-07:00|10FF0006|Wowobora Gogobora|53732|57266|7400|10000|||99.96|92.34|0.00|-3.08| +38|2023-10-06T21:15:48.1890000-07:00|40022472|Zeromus|005A5A00|23693210|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:15:48.1890000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +21|2023-10-06T21:15:48.2330000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47992|63151|10000|10000|||99.90|101.15|0.00|3.14|47992|63151|10000|10000|||99.90|101.15|0.00|3.14|0001993F|0|1| +38|2023-10-06T21:15:48.2330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|47992|63151|10000|10000|0||99.90|101.15|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:15:48.2330000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|63151|63151| +21|2023-10-06T21:15:48.3230000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|21A30000|A3E|340000|200204|3D698000|11B|258000|0|0|0|0|0|0|0|0|23693210|40478540|10000|10000|||100.00|80.10|0.00|0.00|70280|90890|10000|10000|||100.14|89.22|0.00|2.34|00019940|0|1| +21|2023-10-06T21:15:48.3230000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|15DB0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|23693210|40478540|10000|10000|||100.00|80.10|0.00|0.00|53566|90349|6500|10000|||109.48|89.08|0.00|-1.36|00019941|0|1| +37|2023-10-06T21:15:48.6770000-07:00|40022472|Zeromus|0001993D|23669926||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:48.6770000-07:00|10FF0007|Kehabiqo Febiqo|0001993E|80266|90890|10000|10000|19||100.68|89.16|0.00|-3.04|1500|0|0|01|0A000129|0|41E8830F|| +38|2023-10-06T21:15:48.7670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|53566|90349|6500|10000|6||108.15|91.12|0.00|-1.60|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:48.7670000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +261|2023-10-06T21:15:48.3440000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:48.3440000-07:00|Change|40022AF2||||||||| +21|2023-10-06T21:15:48.8110000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40022472|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|23669926|40478540|10000|10000|||100.00|80.10|0.00|0.00|53732|57266|7400|10000|||99.98|91.97|0.00|2.12|00019942|0|1| +261|2023-10-06T21:15:48.3440000-07:00|Change|10FF0004||||| +261|2023-10-06T21:15:48.3440000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:15:48.8570000-07:00|40022B0F||005A5A00|48949|48949|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:15:48.8570000-07:00|40022B0F||005A5A00|48949|48949|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:15:48.8570000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47992|63151|10000|10000|||99.90|101.15|0.00|3.14|47992|63151|10000|10000|||99.90|101.15|0.00|3.14|00019943|0|1| +24|2023-10-06T21:15:48.9450000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|3D69|53566|90349|6500|10000|||107.45|92.05|0.00|-1.73|10FF0007|Kehabiqo Febiqo|0|80266|90890|10000|10000|||100.94|89.13|0.00|-3.04| +37|2023-10-06T21:15:48.9450000-07:00|40022472|Zeromus|00019940|23661315||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:48.9450000-07:00|10FF0007|Kehabiqo Febiqo|00019940|90890||||||100.94|89.13|0.00|-3.04| +21|2023-10-06T21:15:48.9450000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750005|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|53566|90349|6500|10000|||107.45|92.05|0.00|-1.73|23669926|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019944|0|1| +38|2023-10-06T21:15:48.9450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69287|90349|6500|10000|6||107.45|92.05|0.00|-1.73|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:48.4400000-07:00|Add|40022B0F||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:15:48.5320000-07:00|40022B0F|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|48949|48949|10000|10000|||102.42|93.91|0.00|-3.09| +00|2023-10-06T21:15:48.0000000-07:00|0044|Zeromus|My Darkness shall devour all Light.| +38|2023-10-06T21:15:48.9900000-07:00|40022472|Zeromus|005A5A00|23661315|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:15:48.9900000-07:00|35C|Dismantled|0.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|63151| +20|2023-10-06T21:15:49.0340000-07:00|40022472|Zeromus|8B69|Black Hole|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:48.5320000-07:00|Change|40022472||||||||| +261|2023-10-06T21:15:48.5320000-07:00|Change|40022B0F||| +37|2023-10-06T21:15:49.0790000-07:00|40022472|Zeromus|00019941|23655720||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:49.0790000-07:00|10FF0001|Sesuga Sapisuga|00019941|69287|90349|7500|10000|6||107.23|92.59|0.00|-1.81|1300|0|0|0| +38|2023-10-06T21:15:49.3010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||100.94|89.13|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:49.3010000-07:00|C2|Shield Wall|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +20|2023-10-06T21:15:49.3460000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0003|Gegehi Gehi|7.704|102.95|102.22|0.00|-2.99| +22|2023-10-06T21:15:49.4350000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53732|57266|7400|10000|||100.54|92.95|0.00|-1.19|53732|57266|7400|10000|||100.54|92.95|0.00|-1.19|00019945|0|5| +22|2023-10-06T21:15:49.4350000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.93|89.13|-0.02|-3.05|53732|57266|7400|10000|||100.54|92.95|0.00|-1.19|00019945|1|5| +22|2023-10-06T21:15:49.4350000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69287|90349|7500|10000|||105.80|93.70|0.00|-2.02|53732|57266|7400|10000|||100.54|92.95|0.00|-1.19|00019945|2|5| +22|2023-10-06T21:15:49.4350000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47992|63151|10000|10000|||99.90|101.15|0.00|3.14|53732|57266|7400|10000|||100.54|92.95|0.00|-1.19|00019945|3|5| +22|2023-10-06T21:15:49.4350000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47800|57078|6100|10000|||102.95|102.22|0.00|-2.99|53732|57266|7400|10000|||100.54|92.95|0.00|-1.19|00019945|4|5| +38|2023-10-06T21:15:49.4350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||100.93|89.13|-0.02|-3.05|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:49.4350000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|90890|57266| +38|2023-10-06T21:15:49.4350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|47992|63151|10000|10000|0||99.90|101.15|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:49.4350000-07:00|C2|Shield Wall|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|63151|90890| +26|2023-10-06T21:15:49.4350000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|63151|57266| +38|2023-10-06T21:15:49.4350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53732|57266|7400|10000|30||100.54|92.95|0.00|-1.19|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:15:49.4350000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:15:49.4350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69287|90349|7500|10000|6||105.80|93.70|0.00|-2.02|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:49.4350000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|90349|57266| +38|2023-10-06T21:15:49.4350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47800|57078|6100|10000|31||102.95|102.22|0.00|-2.99|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:15:49.4350000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|57078|57266| +24|2023-10-06T21:15:49.4790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1C67|90890|90890|10000|10000|||100.91|89.13|0.00|-3.08|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||100.91|89.13|0.00|-3.08| +21|2023-10-06T21:15:49.4790000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23655720|40478540|10000|10000|||100.00|80.10|0.00|0.00|53732|57266|7400|10000|||100.63|93.04|0.00|-0.88|00019946|0|1| +38|2023-10-06T21:15:49.4790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||100.91|89.13|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:49.1140000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T21:15:49.5680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53732|57266|7400|10000|30||100.73|93.15|0.00|-0.54|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:49.5680000-07:00|C2|Shield Wall|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|57266|90890| +38|2023-10-06T21:15:49.7020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47800|57078|6100|10000|31||102.95|102.22|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:49.7020000-07:00|C2|Shield Wall|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|57078|90890| +37|2023-10-06T21:15:49.7460000-07:00|10FF0001|Sesuga Sapisuga|00019944|69287|90349|7500|10000|1||105.07|94.71|0.00|-2.09|1300|0|0|0| +261|2023-10-06T21:15:49.3040000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:15:49.8360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69287|90349|7500|10000|1||105.07|94.71|0.00|-2.09|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:49.8360000-07:00|C2|Shield Wall|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +261|2023-10-06T21:15:49.4000000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:15:49.4000000-07:00|Change|40022B0F||||||| +37|2023-10-06T21:15:50.0140000-07:00|40022472|Zeromus|00019946|23655560||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:50.1020000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|22330000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|47992|63151|10000|10000|||99.90|101.15|0.00|3.14|54201|54201|10000|10000|||100.36|97.55|0.00|-1.98|00019947|0|1| +38|2023-10-06T21:15:50.1920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||99.15|89.95|0.00|-1.39|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:50.1920000-07:00|496|Intervention|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +37|2023-10-06T21:15:50.2370000-07:00|10FF0006|Wowobora Gogobora|00019945|53732|57266|7400|10000|30||100.85|93.28|0.00|-0.14|1B00|0|0|01|0A8F|0|41E9EF9B|| +38|2023-10-06T21:15:50.2370000-07:00|40022B0F|Demi-Bahamut|005A5A00|48949|48949|10000|10000|0||102.42|93.91|0.00|-3.09|0|0|0|||||||||| +26|2023-10-06T21:15:50.2370000-07:00|30|Well Fed|1523.03|10FF0006|Wowobora Gogobora|40022B0F|Demi-Bahamut|2964|48949|57266| +26|2023-10-06T21:15:50.2370000-07:00|441|HP Penalty|9999.00|E0000000||40022B0F|Demi-Bahamut|00|48949|| +26|2023-10-06T21:15:50.2370000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|40022B0F|Demi-Bahamut|00|48949|57266| +21|2023-10-06T21:15:50.3250000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23655560|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.23|90.18|0.00|-0.93|00019948|0|1| +37|2023-10-06T21:15:50.3690000-07:00|10FF0007|Kehabiqo Febiqo|00019945|90890|90890|10000|10000|19||99.23|90.18|0.00|-0.93|1501|0|0|01|08000A8F|0|41E8DF38|| +37|2023-10-06T21:15:50.5020000-07:00|10FF0001|Sesuga Sapisuga|00019945|69287|90349|7500|10000|1||105.07|94.71|0.00|-2.09|1302|0|0|01|08000A8F|0|41E7CCC9|| +39|2023-10-06T21:15:50.5480000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-0.20| +26|2023-10-06T21:15:50.5480000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|63151|63151| +21|2023-10-06T21:15:50.5480000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|726003|497F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23655560|40478540|10000|10000|||100.00|80.10|0.00|0.00|47992|63151|10000|10000|||99.90|101.15|0.00|3.14|00019949|0|1| +37|2023-10-06T21:15:50.6360000-07:00|10FF0008|Kokosaze Lulusaze|00019945|47992|63151|10000|10000|0||99.90|101.15|0.00|3.14|1F03|0|0|01|04000A8F|0|41E6BE74|| +39|2023-10-06T21:15:50.7250000-07:00|10FF0008|Kokosaze Lulusaze|48623|63151|10000|10000|||99.90|101.15|0.00|3.14| +261|2023-10-06T21:15:50.2580000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:15:50.7700000-07:00|10FF0004|Buhojaqe Zijaqe|00019945|47800|57078|6100|10000|31||102.95|102.22|0.00|2.86|1C04|0|0|01|08000A8F|0|41E5AC05|| +24|2023-10-06T21:15:50.7700000-07:00|40022472|Zeromus|DoT|0|12CE|23655560|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:15:50.7700000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F712003|55F50000|A3E|340000|204|252D8000|11B|2D8000|0|0|0|0|0|0|0|0|23655560|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.38|90.62|-0.02|-0.03|0001994A|0|1| +38|2023-10-06T21:15:50.7700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||99.38|90.62|-0.02|-0.03|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:50.7700000-07:00|A75|Surging Tempest|40.09|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +38|2023-10-06T21:15:50.7700000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-0.14|0|0|0|||||||||| +26|2023-10-06T21:15:50.7700000-07:00|A8F|Searing Light|28.66|10FF0006|Wowobora Gogobora|4002284A|Ruby Carbuncle|00|54201|57266| +38|2023-10-06T21:15:50.7700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|48623|63151|10000|10000|0||99.90|101.15|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:50.7700000-07:00|D87|Paralysis|0.00|4002248F|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:15:50.7700000-07:00|40022472|Zeromus|005A5A00|23650746|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:50.7700000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:15:50.7700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69287|90349|7500|10000|1||104.45|95.09|0.00|-2.53|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:50.7700000-07:00|D87|Paralysis|0.00|4002248E|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +21|2023-10-06T21:15:50.8140000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|1D1C0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|23655560|40478540|10000|10000|||100.00|80.10|0.00|0.00|69287|90349|7500|10000|||104.45|95.09|0.00|-2.53|0001994B|0|1| +38|2023-10-06T21:15:50.8140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69287|90349|7500|10000|1||104.45|95.09|0.00|-2.53|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:50.8140000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:15:50.8140000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:15:50.3510000-07:00|Change|40022AF2||||||||| +37|2023-10-06T21:15:50.8590000-07:00|40022472|Zeromus|00019948|23647709||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:50.8590000-07:00|10FF0001|Sesuga Sapisuga|70190|90349|7700|10000|||104.45|95.09|0.00|-2.53| +36|2023-10-06T21:15:50.8590000-07:00|049C|3| +261|2023-10-06T21:15:50.4440000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:15:50.9030000-07:00|10FF0008|Kokosaze Lulusaze|00019947|57378||||||99.90|101.15|0.00|3.14| +39|2023-10-06T21:15:50.9030000-07:00|10FF0004|Buhojaqe Zijaqe|48370|57078|6300|10000|||102.95|102.22|0.00|2.86| +261|2023-10-06T21:15:50.4440000-07:00|Change|10FF0004||||| +39|2023-10-06T21:15:50.9940000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||99.38|90.62|0.00|3.09| +39|2023-10-06T21:15:50.9940000-07:00|10FF0006|Wowobora Gogobora|54304|57266|7600|10000|||100.05|95.31|0.00|-0.64| +261|2023-10-06T21:15:50.5370000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:15:51.1720000-07:00|40022472|Zeromus|00019949|23628894||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:51.3050000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|61010000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|23628894|40478540|10000|10000|||100.00|80.10|0.00|0.00|54304|57266|7600|10000|||99.78|95.72|0.00|-1.04|0001994C|0|1| +37|2023-10-06T21:15:51.3930000-07:00|40022472|Zeromus|0001994B|23621442||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:51.3930000-07:00|10FF0001|Sesuga Sapisuga|0001994B|70190|90349|7700|10000|1||101.43|95.31|0.00|-2.78|1300|0|0|02|0500076E|03|41F00000|||||| +38|2023-10-06T21:15:51.3940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|70190|90349|7700|10000|1||100.88|95.35|0.00|-2.87|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:15:51.4380000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|BDE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23621442|40478540|10000|10000|||100.00|80.10|0.00|0.00|57378|63151|10000|10000|||99.90|100.55|0.00|3.14|0001994D|0|1| +261|2023-10-06T21:15:51.1110000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:15:51.9290000-07:00|40022472|Zeromus|0001994C|23596609||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:51.5310000-07:00|Change|10FF0004||||||| +21|2023-10-06T21:15:51.9730000-07:00|40022B0F|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|752003|1F640000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|23596609|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97|0001994E|0|1| +26|2023-10-06T21:15:52.0180000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|63151|63151| +21|2023-10-06T21:15:52.0180000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23596609|40478540|10000|10000|||100.00|80.10|0.00|0.00|57378|63151|10000|10000|||99.90|99.72|0.00|3.14|0001994F|0|1| +21|2023-10-06T21:15:52.0180000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70190|90349|7700|10000|||100.74|94.86|0.00|-2.87|70190|90349|7700|10000|||100.74|94.86|0.00|-2.87|00019950|0|1| +37|2023-10-06T21:15:52.1940000-07:00|40022472|Zeromus|0001994D|23593571||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:51.9510000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:15:52.4180000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|252D|70190|90349|7700|10000|||100.74|94.86|0.00|-2.87|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||98.28|91.99|0.00|1.89| +37|2023-10-06T21:15:52.4180000-07:00|40022472|Zeromus|0001994A|23571566||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:52.4180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|79707|90349|7700|10000|1||100.74|94.86|0.00|-2.87|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:15:52.4620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1B93|90890|90890|10000|10000|||98.15|92.57|0.00|1.30|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||98.15|92.57|0.00|1.30| +38|2023-10-06T21:15:52.4620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||98.15|92.57|0.00|1.30|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:15:52.1810000-07:00|Remove|40022AF2| +04|2023-10-06T21:15:52.1810000-07:00|40022AF2|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||101.43|93.19|0.00|-3.06| +21|2023-10-06T21:15:52.5960000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23571566|40478540|10000|10000|||100.00|80.10|0.00|0.00|79707|90349|7700|10000|||100.74|94.86|0.00|-2.87|00019951|0|1| +31|2023-10-06T21:15:52.5960000-07:00|10FF0001||||| +37|2023-10-06T21:15:52.6400000-07:00|40022472|Zeromus|0001994F|23562652||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:52.6400000-07:00|10FF0001|Sesuga Sapisuga|00019950|79707|90349|7700|10000|1||100.74|94.86|0.00|-2.87|1300|0|0|01|0C00004C|0|41A00000|| +26|2023-10-06T21:15:52.6400000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +21|2023-10-06T21:15:52.6400000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23571566|40478540|10000|10000|||100.00|80.10|0.00|0.00|54304|57266|7300|10000|||99.78|95.72|0.00|3.13|00019952|0|1| +21|2023-10-06T21:15:52.6850000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|13B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23562652|40478540|10000|10000|||100.00|80.10|0.00|0.00|57378|63151|10000|10000|||99.90|99.72|0.00|3.14|00019953|0|1| +38|2023-10-06T21:15:52.7740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||98.93|93.24|0.00|1.32|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:52.7740000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|90890|90890| +38|2023-10-06T21:15:52.7740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|79707|90349|7700|10000|1||100.74|94.86|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:52.7740000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|90349|90890| +21|2023-10-06T21:15:52.8640000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|750003|1D570000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|23562652|40478540|10000|10000|||100.00|80.10|0.00|0.00|79707|90349|7700|10000|||100.74|94.86|0.00|-3.09|00019954|0|1| +38|2023-10-06T21:15:52.8640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|79707|90349|7700|10000|1||100.74|94.86|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:52.8640000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|90349|90349| +26|2023-10-06T21:15:52.8640000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:15:52.3760000-07:00|Change|40022472||||| +37|2023-10-06T21:15:52.9980000-07:00|40022472|Zeromus|0001994E|23554616||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:53.1300000-07:00|40022472|Zeromus|00019951|23553332||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:53.1300000-07:00|10FF0001|Sesuga Sapisuga|00019951|79707|90349|7700|10000|1||100.74|94.86|0.00|-3.09|1300|0|0|02|06000558|04|C1F00000|||||| +37|2023-10-06T21:15:53.1750000-07:00|40022472|Zeromus|00019952|23553138||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:53.2200000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15D70000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|23553332|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.38|92.89|0.00|2.64|00019955|0|1| +38|2023-10-06T21:15:53.3090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|57378|63151|10000|10000|0||99.90|99.72|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:53.3090000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +38|2023-10-06T21:15:53.4420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||99.47|92.79|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:53.4420000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|90890|63151| +37|2023-10-06T21:15:53.4870000-07:00|40022472|Zeromus|00019953|23548095||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:53.4870000-07:00|40022472|Zeromus|00019954|23540584||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:53.4870000-07:00|10FF0001|Sesuga Sapisuga|00019954|79707|90349|7700|10000|1||100.74|94.86|0.00|-3.09|1300|0|0|02|06000558|04|41F00000|||||| +38|2023-10-06T21:15:53.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|79707|90349|7700|10000|1||100.74|94.86|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:15:53.5320000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.01| +26|2023-10-06T21:15:53.5320000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|63151|63151| +21|2023-10-06T21:15:53.5320000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23553138|40478540|10000|10000|||100.00|80.10|0.00|0.00|57378|63151|10000|10000|||99.90|99.72|0.00|3.14|00019956|0|1| +21|2023-10-06T21:15:53.5320000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|756003|B6CE0000|4|1C438000|0|0|0|0|0|0|0|0|0|0|0|0|23553138|40478540|10000|10000|||100.00|80.10|0.00|0.00|79707|90349|7700|10000|||100.74|94.86|0.00|-3.09|00019957|0|1| +38|2023-10-06T21:15:53.5320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|79707|90349|6700|10000|1||100.74|94.86|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:53.5320000-07:00|558|Requiescat|29.91|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +30|2023-10-06T21:15:53.5320000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +31|2023-10-06T21:15:53.5320000-07:00|10FF0001||||| +261|2023-10-06T21:15:53.1120000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:15:53.5760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54304|57266|7300|10000|30||99.47|95.67|0.00|-2.68|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:53.5760000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|57266|63151| +39|2023-10-06T21:15:53.7090000-07:00|10FF0008|Kokosaze Lulusaze|58009|63151|10000|10000|||99.90|99.72|0.00|3.14| +21|2023-10-06T21:15:53.7100000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23540584|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.49|92.74|0.00|3.11|00019958|0|1| +38|2023-10-06T21:15:53.7100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48370|57078|6300|10000|31||102.95|102.22|0.00|2.86|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:53.7100000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|57078|63151| +37|2023-10-06T21:15:53.7550000-07:00|40022472|Zeromus|00019955|23534993||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:15:53.7550000-07:00|40022472|Zeromus|DoT|0|C06|23540584|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:15:53.7550000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|5B3C0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|23540584|40478540|10000|10000|||100.00|80.10|0.00|0.00|54304|57266|7300|10000|||99.39|95.66|0.00|-3.03|00019959|0|1| +38|2023-10-06T21:15:53.7550000-07:00|40022472|Zeromus|005A5A00|23531915|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:53.7550000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:15:53.3190000-07:00|Change|10FF0006||||||||| +36|2023-10-06T21:15:53.8430000-07:00|0578|3| +38|2023-10-06T21:15:53.8430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|79707|90349|6700|10000|1||100.74|94.86|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:53.8430000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|90349|63151| +39|2023-10-06T21:15:53.8880000-07:00|10FF0001|Sesuga Sapisuga|80610|90349|6900|10000|||100.74|94.86|0.00|-3.09| +39|2023-10-06T21:15:53.8880000-07:00|10FF0004|Buhojaqe Zijaqe|48940|57078|6500|10000|||102.95|102.22|0.00|2.86| +21|2023-10-06T21:15:53.8880000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|712003|47940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23531915|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.50|92.67|0.00|3.11|0001995A|0|1| +261|2023-10-06T21:15:53.4090000-07:00|Change|10FF0004||||| +21|2023-10-06T21:15:53.9320000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|14CB0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|58009|63151|10000|10000|||99.90|99.72|0.00|3.14|54201|54201|10000|10000|||100.36|97.55|0.00|-2.10|0001995B|0|1| +39|2023-10-06T21:15:53.9770000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||99.51|92.50|0.00|3.10| +39|2023-10-06T21:15:53.9770000-07:00|10FF0006|Wowobora Gogobora|54876|57266|7200|10000|||99.48|96.14|0.00|3.12| +21|2023-10-06T21:15:54.0210000-07:00|40022472|Zeromus|8B69|Black Hole|40022472|Zeromus|1B|8B698000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23531915|40478540|10000|10000|||100.00|80.10|0.00|0.00|23531915|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001995C|0|1| +38|2023-10-06T21:15:54.0210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|11588|57941|2000|10000|0||100.77|97.72|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:54.0210000-07:00|94|Raise|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|08|57941|57266| +30|2023-10-06T21:15:54.0210000-07:00|2B|Weakness|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +26|2023-10-06T21:15:54.0210000-07:00|2C|Brink of Death|100.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +26|2023-10-06T21:15:54.0210000-07:00|1A2|Transcendent|5.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +261|2023-10-06T21:15:53.6990000-07:00|Change|10FF000A||| +21|2023-10-06T21:15:54.1110000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23531915|40478540|10000|10000|||100.00|80.10|0.00|0.00|58009|63151|10000|10000|||99.90|99.72|0.00|3.14|0001995D|0|1| +37|2023-10-06T21:15:54.1550000-07:00|40022472|Zeromus|00019956|23523035||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:54.1550000-07:00|40022472|Zeromus|00019957|23476237||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:54.1550000-07:00|10FF0001|Sesuga Sapisuga|00019957|87845||||||100.74|94.86|0.00|-3.09| +21|2023-10-06T21:15:54.2000000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|19470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23531915|40478540|10000|10000|||100.00|80.10|0.00|0.00|58009|63151|10000|10000|||99.90|99.72|0.00|3.14|0001995E|0|1| +38|2023-10-06T21:15:54.2000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||99.52|92.27|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:54.2000000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +261|2023-10-06T21:15:53.6990000-07:00|Change|40022472||||||||||||| +261|2023-10-06T21:15:53.6990000-07:00|Change|10FF000A||| +261|2023-10-06T21:15:53.8120000-07:00|Change|10FF0006||||||| +37|2023-10-06T21:15:54.2440000-07:00|40022472|Zeromus|00019958|23473118||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:54.2890000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|714003|12980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23476237|40478540|10000|10000|||100.00|80.10|0.00|0.00|87845|90349|6900|10000|||100.74|94.86|0.00|-3.09|0001995F|0|1| +37|2023-10-06T21:15:54.3780000-07:00|40022472|Zeromus|00019959|23449762||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:54.5120000-07:00|40022472|Zeromus|0001995A|23431438||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:54.5570000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||99.53|92.03|0.00|3.10|90890|90890|10000|10000|||99.53|92.03|0.00|3.10|00019960|0|1| +38|2023-10-06T21:15:54.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||99.53|92.03|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:54.5570000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|90890|90890| +26|2023-10-06T21:15:54.5570000-07:00|A75|Surging Tempest|46.30|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +26|2023-10-06T21:15:54.5570000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +26|2023-10-06T21:15:54.5570000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +261|2023-10-06T21:15:54.1560000-07:00|Change|10FF0001||| +37|2023-10-06T21:15:54.7360000-07:00|10FF0008|Kokosaze Lulusaze|0001995B|63151||||||99.90|99.72|0.00|3.14| +27|2023-10-06T21:15:54.7800000-07:00|10FF0006|Wowobora Gogobora|0000|0000|014A|0000|0000|0000| +37|2023-10-06T21:15:54.8250000-07:00|40022472|Zeromus|0001995E|23424967||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:54.8250000-07:00|40022B0F|Demi-Bahamut|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97| +37|2023-10-06T21:15:54.8700000-07:00|40022472|Zeromus|0001995D|23422625||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:54.8700000-07:00|40022472|Zeromus|0001995F|23417865||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:54.8700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|65F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23424967|40478540|10000|10000|||100.00|80.10|0.00|0.00|87845|90349|6900|10000|||100.74|94.86|0.00|-3.09|00019961|0|1| +31|2023-10-06T21:15:54.8700000-07:00|10FF0001||||| +261|2023-10-06T21:15:54.4570000-07:00|Change|40022472||| +39|2023-10-06T21:15:55.0040000-07:00|10FF000A|Dukaro Nezikaro|12167|57941|2200|10000|||100.65|97.72|0.00|-2.37| +26|2023-10-06T21:15:55.0480000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +21|2023-10-06T21:15:55.0480000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|395B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23417865|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.90|99.73|-0.02|2.97|00019962|0|1| +38|2023-10-06T21:15:55.0920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87845|90349|6900|10000|1||100.61|94.77|0.00|-2.88|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:55.0920000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +21|2023-10-06T21:15:55.1370000-07:00|40022B0F|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|752003|1F350000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|23417865|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97|00019963|0|1| +261|2023-10-06T21:15:54.7820000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:15:55.3160000-07:00|10FF0007|Kehabiqo Febiqo|00019960|90890|90890|10000|10000|19||99.53|92.03|0.00|3.10|1500|0|0|03|04000499|03|41700000|||||||||| +38|2023-10-06T21:15:55.3160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||99.53|92.03|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:15:55.4060000-07:00|40022472|Zeromus|00019961|23416234||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:55.6740000-07:00|40022472|Zeromus|00019962|23401551||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:55.6740000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7A9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23416234|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.53|92.03|0.00|3.10|00019964|0|1| +21|2023-10-06T21:15:55.6740000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|18A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23416234|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.90|100.53|0.00|-1.63|00019965|0|1| +38|2023-10-06T21:15:55.6740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||99.53|92.03|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:55.6740000-07:00|499|Inner Release|14.60|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|90890|90890| +21|2023-10-06T21:15:55.7640000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23401551|40478540|10000|10000|||100.00|80.10|0.00|0.00|54876|57266|7200|10000|||99.66|96.92|-0.02|3.11|00019966|0|1| +261|2023-10-06T21:15:55.6270000-07:00|Change|40022490||||||||| +00|2023-10-06T21:15:55.0000000-07:00|0044|Zeromus|Your souls are mine!| +261|2023-10-06T21:15:55.6270000-07:00|Change|10FF0004||||||| +37|2023-10-06T21:15:56.1630000-07:00|40022472|Zeromus|00019963|23393562||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:15:56.1630000-07:00|40022472|Zeromus|8B3C|Fractured Eventide|40022472|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:15:56.1630000-07:00|40022490|Zeromus|8B3E|Fractured Eventide|40022490|Zeromus|10.200|100.00|80.10|0.00|0.79| +261|2023-10-06T21:15:55.8480000-07:00|Change|40022472||||||||||||| +21|2023-10-06T21:15:56.2520000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|47AC0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|23393562|40478540|10000|10000|||100.00|80.10|0.00|0.00|54876|57266|7200|10000|||99.47|95.75|-0.01|2.89|00019967|0|1| +37|2023-10-06T21:15:56.2970000-07:00|40022472|Zeromus|00019966|23393404||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:55.8480000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:15:56.3410000-07:00|40022472|Zeromus|00019964|23362016||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:56.3860000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|710003|40F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23393404|40478540|10000|10000|||100.00|80.10|0.00|0.00|87845|90349|6900|10000|||97.06|94.62|0.00|2.94|00019968|0|1| +37|2023-10-06T21:15:56.4750000-07:00|40022472|Zeromus|00019965|23355708||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:56.5200000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +21|2023-10-06T21:15:56.5200000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|29DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23362016|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.90|101.27|0.00|3.14|00019969|0|1| +21|2023-10-06T21:15:56.5200000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0003|Gegehi Gehi|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|0|10000|||108.02|84.98|0.00|-2.50|48940|57078|6500|10000|||102.95|102.22|0.00|2.86|0001996A|0|1| +38|2023-10-06T21:15:56.5200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.90|101.27|0.00|3.14|0|0|0|||||||||||||||| +30|2023-10-06T21:15:56.5200000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +261|2023-10-06T21:15:56.2020000-07:00|Change|40022490||||||||||||| +39|2023-10-06T21:15:56.6980000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.90|101.27|0.00|3.14| +24|2023-10-06T21:15:56.7420000-07:00|40022472|Zeromus|DoT|0|C2F|23355708|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:15:56.7420000-07:00|40022472|Zeromus|005A5A00|23352589|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:15:56.7420000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +21|2023-10-06T21:15:56.7860000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|11880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23355708|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||98.74|91.63|0.00|-3.08|0001996B|0|1| +21|2023-10-06T21:15:56.7860000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B5E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23355708|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.90|101.27|0.00|3.14|0001996C|0|1| +39|2023-10-06T21:15:56.8750000-07:00|10FF0001|Sesuga Sapisuga|88748|90349|7100|10000|||97.06|94.62|0.00|2.94| +39|2023-10-06T21:15:56.8750000-07:00|10FF0004|Buhojaqe Zijaqe|49510|57078|4300|10000|||102.95|102.22|0.00|2.86| +36|2023-10-06T21:15:56.8750000-07:00|0654|3| +261|2023-10-06T21:15:56.4850000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:15:56.9190000-07:00|40022472|Zeromus|00019967|23334241||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:56.9190000-07:00|40022472|Zeromus|00019968|23317608||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:15:56.9640000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||98.74|91.63|0.00|3.03| +39|2023-10-06T21:15:56.9640000-07:00|10FF0006|Wowobora Gogobora|55448|57266|7100|10000|||100.20|96.18|0.00|-0.32| +26|2023-10-06T21:15:56.9640000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|57266|57266| +21|2023-10-06T21:15:56.9640000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|756003|6EDC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23352589|40478540|10000|10000|||100.00|80.10|0.00|0.00|54876|57266|6900|10000|||100.20|96.18|0.00|-0.32|0001996D|0|1| +261|2023-10-06T21:15:56.5850000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:15:56.5850000-07:00|Change|40022472||||| +21|2023-10-06T21:15:57.0980000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23317608|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||98.74|91.63|0.00|3.03|0001996E|0|1| +21|2023-10-06T21:15:57.0980000-07:00|10FF000A|Dukaro Nezikaro|6514|Huraijin|40022472|Zeromus|712003|11020000|3E|C98000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|23317608|40478540|10000|10000|||100.00|80.10|0.00|0.00|12167|57941|2200|10000|||100.60|97.73|0.00|-3.05|0001996F|0|1| +21|2023-10-06T21:15:57.0980000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|6760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23317608|40478540|10000|10000|||100.00|80.10|0.00|0.00|12167|57941|2200|10000|||100.60|97.73|0.00|-3.05|00019970|0|1| +38|2023-10-06T21:15:57.0990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|12167|57941|2200|10000|0||100.60|97.73|0.00|-3.05|0|0|0||||||||||||||||||| +30|2023-10-06T21:15:57.0990000-07:00|1A2|Transcendent|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +261|2023-10-06T21:15:56.7020000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:15:57.1420000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23317608|40478540|10000|10000|||100.00|80.10|0.00|0.00|88748|90349|7100|10000|||97.06|94.62|0.00|2.94|00019971|0|1| +31|2023-10-06T21:15:57.1420000-07:00|10FF0001||||| +37|2023-10-06T21:15:57.1870000-07:00|40022472|Zeromus|00019969|23306892||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:57.1870000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.90|101.27|0.00|3.14|63151|63151|10000|10000|||99.90|101.27|0.00|3.14|00019972|0|1| +38|2023-10-06T21:15:57.1870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.90|101.27|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:15:57.1870000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +37|2023-10-06T21:15:57.4080000-07:00|40022472|Zeromus|0001996B|23302404||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:57.5410000-07:00|40022472|Zeromus|0001996C|23299494||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:57.5410000-07:00|10FF0008|Kokosaze Lulusaze|0001996C|63151|63151|10000|10000|0||99.90|101.20|0.00|-3.13|1F00|0|0|01|03000353|0|C0A00000|| +21|2023-10-06T21:15:57.5840000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|200004|21B80000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|12167|57941|2200|10000|||100.60|97.72|0.00|3.14|54201|54201|10000|10000|||100.36|97.55|0.00|2.49|00019973|0|1| +37|2023-10-06T21:15:57.6300000-07:00|40022472|Zeromus|0001996E|23296633||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:57.6300000-07:00|10FF0003|Gegehi Gehi|0001996A|0|51669|0|10000|0||108.02|84.98|0.00|-2.50|2300|0|0|01|01000094|08|42700000|| +26|2023-10-06T21:15:57.6300000-07:00|94|Raise|60.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|08|51669|57078| +37|2023-10-06T21:15:57.6300000-07:00|40022472|Zeromus|00019970|23294979||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:57.6740000-07:00|40022472|Zeromus|00019971|23292926||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:57.8520000-07:00|10FF0008|Kokosaze Lulusaze|00019972|63151|63151|10000|10000|0||99.88|101.04|0.00|-3.11|1F00|0|0|01|03000353|0|40A00000|| +39|2023-10-06T21:15:57.8520000-07:00|40022B0F|Demi-Bahamut|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97| +38|2023-10-06T21:15:57.8520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.88|101.04|0.00|-3.11|0|0|0|||||||||||||||| +37|2023-10-06T21:15:57.8970000-07:00|40022472|Zeromus|0001996D|23264546||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:57.8970000-07:00|40022472|Zeromus|0001996F|23260192||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:57.8970000-07:00|40022472|Zeromus|005A5A00|23260192|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:15:57.8970000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +21|2023-10-06T21:15:57.9410000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|754003|44710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23292926|40478540|10000|10000|||100.00|80.10|0.00|0.00|55448|57266|7100|10000|||99.30|92.13|0.00|2.86|00019974|0|1| +38|2023-10-06T21:15:57.9410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|55448|57266|7100|10000|30||99.30|92.13|0.00|2.86|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:15:57.9410000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|57266|57266| +39|2023-10-06T21:15:57.9850000-07:00|10FF000A|Dukaro Nezikaro|12746|57941|2400|10000|||101.03|97.33|0.00|3.03| +261|2023-10-06T21:15:57.5330000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:15:57.7260000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:15:57.7260000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:15:58.0300000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|726003|CC710000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|23260192|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.87|100.97|0.00|-3.10|00019975|0|1| +38|2023-10-06T21:15:58.0300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.87|100.97|0.00|-3.10|0|0|0|||||||||||||||| +30|2023-10-06T21:15:58.0300000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +21|2023-10-06T21:15:58.1190000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7F120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23260192|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.96|91.69|0.00|3.09|00019976|0|1| +38|2023-10-06T21:15:58.1190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||99.96|91.69|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:58.1190000-07:00|499|Inner Release|12.15|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|90890|90890| +21|2023-10-06T21:15:58.2980000-07:00|40022B0F|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|14690000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|23260192|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97|00019977|0|1| +37|2023-10-06T21:15:58.3870000-07:00|10FF000A|Dukaro Nezikaro|00019973|21378||||||103.90|94.50|0.00|3.11| +261|2023-10-06T21:15:58.2010000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:15:58.2960000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:15:58.7000000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.87|100.97|0.00|3.14|63151|63151|10000|10000|||99.87|100.97|0.00|3.14|00019978|0|1| +38|2023-10-06T21:15:58.7000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.87|100.97|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:15:58.7000000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|63151|63151| +37|2023-10-06T21:15:58.7420000-07:00|40022472|Zeromus|00019976|23227662||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:58.7430000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|756003|9C3D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|23260192|40478540|10000|10000|||100.00|80.10|0.00|0.00|55448|57266|7100|10000|||104.04|90.40|0.00|1.86|00019979|0|1| +37|2023-10-06T21:15:58.8770000-07:00|40022472|Zeromus|00019974|23210141||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:58.9210000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|1010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23227662|40478540|10000|10000|||100.00|80.10|0.00|0.00|55448|57266|6800|10000|||104.70|90.36|0.00|-2.68|0001997A|0|1| +261|2023-10-06T21:15:58.4820000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:15:58.9660000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|754003|58320000|200004|2E4E8000|0|0|0|0|0|0|0|0|0|0|0|0|23210141|40478540|10000|10000|||100.00|80.10|0.00|0.00|88748|90349|7100|10000|||106.83|92.21|0.00|1.94|0001997B|0|1| +38|2023-10-06T21:15:58.9660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|88748|90349|6100|10000|1||106.83|92.21|0.00|1.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:58.9660000-07:00|558|Requiescat|24.48|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +31|2023-10-06T21:15:58.9660000-07:00|10FF0001||||| +37|2023-10-06T21:15:59.0550000-07:00|40022472|Zeromus|00019975|23157804||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:15:59.1450000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|49510|57078|4300|10000|||107.68|95.56|0.00|2.39|49510|57078|4300|10000|||107.68|95.56|0.00|2.39|0001997C|0|1| +38|2023-10-06T21:15:59.1450000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49510|57078|4300|10000|31||107.68|95.56|0.00|2.39|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:15:59.1450000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|57078|57078| +261|2023-10-06T21:15:58.6880000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:15:58.7990000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:15:59.2810000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23157804|40478540|10000|10000|||100.00|80.10|0.00|0.00|21378|57941|2400|10000|||104.93|90.29|0.00|-3.13|0001997D|0|1| +37|2023-10-06T21:15:59.3230000-07:00|40022472|Zeromus|00019977|23152579||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:15:59.3230000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40022472|Zeromus|6DE0E|35D0000|72000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|23157804|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.87|100.97|0.00|3.14|0001997E|0|1| +37|2023-10-06T21:15:59.3680000-07:00|40022472|Zeromus|00019979|23112582||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:15:59.3680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|55448|57266|6800|10000|30||105.95|90.58|0.00|3.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:15:59.3680000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|57266|57266| +21|2023-10-06T21:15:59.3680000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|750003|23180000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|23157804|40478540|10000|10000|||100.00|80.10|0.00|0.00|55448|57266|6800|10000|||105.95|90.58|0.00|3.00|0001997F|0|1| +38|2023-10-06T21:15:59.3680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|55448|57266|6800|10000|30||105.95|90.58|0.00|3.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:15:59.3680000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +21|2023-10-06T21:15:59.4120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|67F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23112582|40478540|10000|10000|||100.00|80.10|0.00|0.00|88748|90349|6100|10000|||109.18|91.19|0.00|2.07|00019980|0|1| +31|2023-10-06T21:15:59.4130000-07:00|10FF0001||||| +37|2023-10-06T21:15:59.4570000-07:00|40022472|Zeromus|0001997A|23112325||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:59.4570000-07:00|10FF0006|Wowobora Gogobora|0001997A|55448|57266|6800|10000|30||106.64|90.76|0.00|-2.48|1B00|0|0|01|03000A8D|0|C2700000|| +21|2023-10-06T21:15:59.4570000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23112582|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.87|100.97|0.00|3.14|00019981|0|1| +38|2023-10-06T21:15:59.5020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|88748|90349|6100|10000|1||109.18|91.19|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:15:59.5020000-07:00|4A7|Rampart|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +39|2023-10-06T21:15:59.5460000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.14| +37|2023-10-06T21:15:59.5910000-07:00|40022472|Zeromus|0001997B|23089747||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:15:59.5910000-07:00|10FF0001|Sesuga Sapisuga|0001997B|90349||||||109.71|90.85|0.00|2.25| +39|2023-10-06T21:15:59.7250000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.87|100.97|0.00|3.14| +24|2023-10-06T21:15:59.7700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D21|90890|90890|10000|10000|||106.64|89.60|0.00|2.63|10FF0004|Buhojaqe Zijaqe|0|49510|57078|4300|10000|||109.08|94.83|-0.02|-2.96| +24|2023-10-06T21:15:59.7700000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|1507|21378|57941|2400|10000|||105.89|88.87|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|49510|57078|4300|10000|||109.08|94.83|-0.02|-2.96| +24|2023-10-06T21:15:59.7700000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1500|90349|90349|6100|10000|||110.54|89.80|0.00|2.85|10FF0004|Buhojaqe Zijaqe|0|49510|57078|4300|10000|||109.08|94.83|-0.02|-2.96| +24|2023-10-06T21:15:59.7700000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1556|55448|57266|6800|10000|||108.19|91.28|0.00|-2.48|10FF0004|Buhojaqe Zijaqe|0|49510|57078|4300|10000|||109.08|94.83|-0.02|-2.96| +24|2023-10-06T21:15:59.7700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|DA3|49510|57078|4300|10000|||109.08|94.83|-0.02|-2.96|10FF0004|Buhojaqe Zijaqe|0|49510|57078|4300|10000|||109.08|94.83|-0.02|-2.96| +24|2023-10-06T21:15:59.7700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D62|63151|63151|10000|10000|||99.90|100.97|0.00|2.89|10FF0004|Buhojaqe Zijaqe|0|49510|57078|4300|10000|||109.08|94.83|-0.02|-2.96| +37|2023-10-06T21:15:59.7700000-07:00|10FF0004|Buhojaqe Zijaqe|0001997C|53001|57078|4300|10000|31||109.08|94.83|-0.02|-2.96|1C00|0|0|02|03000798|0|41700000|||||| +26|2023-10-06T21:15:59.7700000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +26|2023-10-06T21:15:59.7700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:15:59.7700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||106.64|89.60|0.00|2.63|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:59.7700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:15:59.7700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.90|100.97|0.00|2.89|0|0|0||||||||||||||||||| +26|2023-10-06T21:15:59.7700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:15:59.7700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6800|10000|30||108.19|91.28|0.00|-2.48|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:15:59.7700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:15:59.7700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6100|10000|1||110.54|89.80|0.00|2.85|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:15:59.7700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:15:59.7700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|53001|57078|4300|10000|31||109.08|94.83|-0.02|-2.96|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:15:59.7700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|26761|57941|2400|10000|0||105.89|88.87|0.00|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T21:15:59.7700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +261|2023-10-06T21:15:59.3260000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:15:59.8140000-07:00|40022472|Zeromus|0001997D|23088544||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:59.4240000-07:00|Change|10FF0001||||||||||| +39|2023-10-06T21:15:59.8580000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|6300|10000|||111.02|89.46|0.00|3.07| +36|2023-10-06T21:15:59.8580000-07:00|0730|3| +39|2023-10-06T21:15:59.9030000-07:00|10FF0004|Buhojaqe Zijaqe|53571|57078|4500|10000|||109.79|94.39|0.00|3.04| +37|2023-10-06T21:15:59.9480000-07:00|40022472|Zeromus|0001997E|23088544|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|0|41200000|| +26|2023-10-06T21:15:59.9480000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|63151| +37|2023-10-06T21:15:59.9480000-07:00|10FF0008|Kokosaze Lulusaze|0001997E|63151|63151|10000|10000|0||99.94|100.97|0.00|2.54|1F00|0|0|01|0600079A|0|41200000|| +26|2023-10-06T21:15:59.9480000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +37|2023-10-06T21:15:59.9480000-07:00|40022472|Zeromus|00019980|23086881||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:15:59.5260000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:15:59.5260000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:15:59.9920000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||108.06|89.18|-0.02|2.63| +39|2023-10-06T21:15:59.9920000-07:00|10FF0006|Wowobora Gogobora|57266|57266|7000|10000|||109.53|91.93|0.00|2.88| +261|2023-10-06T21:15:59.5260000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:16:00.0810000-07:00|40022B0F|Demi-Bahamut|005A5A00|48949|48949|10000|10000|0||102.40|93.89|0.00|-2.97|0|0|0||||||||||||| +26|2023-10-06T21:16:00.0810000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022B0F|Demi-Bahamut|01|48949|40478540| +21|2023-10-06T21:16:00.0810000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40022472|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|23086881|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|7000|10000|||110.26|92.30|0.00|2.24|00019982|0|1| +21|2023-10-06T21:16:00.1260000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|E890000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|23086881|40478540|10000|10000|||100.00|80.10|0.00|0.00|26761|57941|2400|10000|||106.72|87.15|0.00|-2.83|00019983|0|1| +21|2023-10-06T21:16:00.1710000-07:00|40022B0F|Demi-Bahamut|1D19|Akh Morn|40022472|Zeromus|756003|4EC74001|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|23086881|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97|00019984|0|1| +261|2023-10-06T21:15:59.8200000-07:00|Add|40022B19||||||||||||||||||||||||||| +38|2023-10-06T21:16:00.1710000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-3.12|0|0|0||||||||||||| +26|2023-10-06T21:16:00.1710000-07:00|77B|Summon Order|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:16:00.1710000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53571|57078|4500|10000|||111.86|93.00|0.00|2.29|53571|57078|4500|10000|||111.86|93.00|0.00|2.29|00019985|0|1| +37|2023-10-06T21:16:00.2160000-07:00|40022472|Zeromus|00019981|23083949||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:16:00.2610000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||102.16|100.87|0.00|1.75|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019986|0|6| +22|2023-10-06T21:16:00.2610000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|6300|10000|||112.99|87.87|0.00|-2.70|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019986|1|6| +22|2023-10-06T21:16:00.2610000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|7000|10000|||111.30|92.74|0.00|-2.38|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019986|2|6| +22|2023-10-06T21:16:00.2610000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|26761|57941|2400|10000|||107.35|85.69|0.00|-2.27|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019986|3|6| +22|2023-10-06T21:16:00.2610000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||110.08|88.59|0.00|2.64|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019986|4|6| +22|2023-10-06T21:16:00.2610000-07:00|4002284A|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|53571|57078|4500|10000|||112.14|92.51|0.00|2.37|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019986|5|6| +37|2023-10-06T21:16:00.3950000-07:00|40022472|Zeromus|0001997F|23074965||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:00.3950000-07:00|10FF0006|Wowobora Gogobora|0001997F|57266|57266|7000|10000|30||111.75|92.89|0.00|-2.38|1B00|0|0|01|03000A8D|0|42700000|| +38|2023-10-06T21:16:00.3950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|7000|10000|30||111.75|92.89|0.00|-2.38|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:16:00.4840000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23074965|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||111.31|88.25|0.00|2.64|00019987|0|1| +37|2023-10-06T21:16:00.5290000-07:00|40022472|Zeromus|00019983|23071244||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:16:00.5300000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|63151|63151| +21|2023-10-06T21:16:00.5300000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|726003|484B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23074965|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||103.25|100.26|0.00|1.81|00019988|0|1| +21|2023-10-06T21:16:00.6190000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|81810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23071244|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||111.91|88.07|-0.02|2.64|00019989|0|1| +38|2023-10-06T21:16:00.6190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||111.91|88.07|-0.02|2.64|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:00.6190000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|90890|90890| +261|2023-10-06T21:16:00.2720000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:16:00.2720000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:16:00.3670000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:16:00.3670000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:16:00.8420000-07:00|40022B0F|Demi-Bahamut|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97| +261|2023-10-06T21:16:00.3670000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:16:00.4600000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:16:00.9760000-07:00|10FF000A|Dukaro Nezikaro|27340|57941|2600|10000|||111.95|84.17|0.00|-2.68| +37|2023-10-06T21:16:01.0220000-07:00|40022472|Zeromus|00019987|23068219||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:01.0680000-07:00|40022472|Zeromus|00019984|22982516||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:01.0680000-07:00|40022B0F|Demi-Bahamut|005A5A00|48949|48949|10000|10000|0||102.40|93.89|0.00|-2.97|0|0|0|||||||||| +30|2023-10-06T21:16:01.0680000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022B0F|Demi-Bahamut|01|48949|40478540| +37|2023-10-06T21:16:01.1570000-07:00|10FF0008|Kokosaze Lulusaze|00019986|63151|63151|10000|10000|0||106.37|97.86|0.00|2.24|1F00|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:16:01.1570000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|54201| +37|2023-10-06T21:16:01.1570000-07:00|40022472|Zeromus|00019988|22964009|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|01|410CAC0B|| +26|2023-10-06T21:16:01.1570000-07:00|35D|Wildfire|8.79|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|01|40478540|63151| +21|2023-10-06T21:16:01.1570000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|726003|2AD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22982516|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||106.37|97.86|0.00|2.24|0001998A|0|1| +24|2023-10-06T21:16:01.2000000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9B3|63151|63151|10000|10000|||106.37|97.86|0.00|2.24|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +38|2023-10-06T21:16:01.2000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||106.37|97.86|0.00|2.24|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:16:01.2450000-07:00|40022472|Zeromus|00019989|22930856||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:01.2450000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|58AD0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|22982516|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|7000|10000|||117.08|94.16|0.00|1.58|0001998B|0|1| +37|2023-10-06T21:16:01.2890000-07:00|10FF0001|Sesuga Sapisuga|00019986|90349|90349|6300|10000|1||114.42|83.53|0.00|3.01|1301|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:16:01.2890000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|54201| +261|2023-10-06T21:16:00.9120000-07:00|Change|10FF0004||||||||| +24|2023-10-06T21:16:01.3800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1521|63151|63151|10000|10000|||107.18|96.81|0.00|-2.75|10FF0004|Buhojaqe Zijaqe|0|53571|57078|4500|10000|||113.81|85.71|0.00|3.04| +24|2023-10-06T21:16:01.3800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D75|53571|57078|4500|10000|||113.81|85.71|0.00|3.04|10FF0004|Buhojaqe Zijaqe|0|53571|57078|4500|10000|||113.81|85.71|0.00|3.04| +24|2023-10-06T21:16:01.3800000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D1A|27340|57941|2600|10000|||113.38|83.31|0.00|-2.38|10FF0004|Buhojaqe Zijaqe|0|53571|57078|4500|10000|||113.81|85.71|0.00|3.04| +24|2023-10-06T21:16:01.3800000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D50|90349|90349|6300|10000|||114.42|83.53|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|53571|57078|4500|10000|||113.81|85.71|0.00|3.04| +24|2023-10-06T21:16:01.3800000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|15FC|90890|90890|10000|10000|||113.88|86.56|0.00|-2.58|10FF0004|Buhojaqe Zijaqe|0|53571|57078|4500|10000|||113.81|85.71|0.00|3.04| +24|2023-10-06T21:16:01.3800000-07:00|10FF0006|Wowobora Gogobora|HoT|798|160A|57266|57266|6700|10000|||117.84|94.39|0.00|-2.23|10FF0004|Buhojaqe Zijaqe|0|53571|57078|4500|10000|||113.81|85.71|0.00|3.04| +38|2023-10-06T21:16:01.3800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||113.88|86.56|0.00|-2.58|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:01.3800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||107.18|96.81|0.00|-2.75|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:16:01.3800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6700|10000|30||118.20|94.50|0.00|-2.23|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:16:01.3800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6300|10000|1||114.62|83.44|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:01.3800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57016|57078|4500|10000|31||113.74|84.94|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:16:01.3800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|30694|57941|2600|10000|0||113.51|83.18|0.00|-2.36|0|0|0||||||||||||||||||| +37|2023-10-06T21:16:01.4230000-07:00|10FF0006|Wowobora Gogobora|00019986|57266|57266|6700|10000|30||118.20|94.50|0.00|-2.23|1B02|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:16:01.4230000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +21|2023-10-06T21:16:01.4230000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|754003|5FD00000|4|1BC78000|0|0|0|0|0|0|0|0|0|0|0|0|22930856|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|5300|10000|||114.62|83.44|0.00|-3.01|0001998C|0|1| +38|2023-10-06T21:16:01.4230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|5300|10000|1||114.62|83.44|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:01.4230000-07:00|558|Requiescat|22.02|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +31|2023-10-06T21:16:01.4230000-07:00|10FF0001||||| +24|2023-10-06T21:16:01.4670000-07:00|10FF0006|Wowobora Gogobora|HoT|0|EF3|57266|57266|6700|10000|||118.20|94.50|0.00|-2.23|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +21|2023-10-06T21:16:01.4670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22930856|40478540|10000|10000|||100.00|80.10|0.00|0.00|30694|57941|2600|10000|||113.51|83.18|0.00|-2.36|0001998D|0|1| +38|2023-10-06T21:16:01.4670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6700|10000|30||118.20|94.50|0.00|-2.23|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:16:01.5120000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||114.46|85.86|0.00|-2.93|90890|90890|10000|10000|||114.46|85.86|0.00|-2.93|0001998E|0|1| +38|2023-10-06T21:16:01.5120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||114.46|85.86|0.00|-2.93|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:01.5120000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:16:01.5570000-07:00|10FF000A|Dukaro Nezikaro|00019986|30694|57941|2600|10000|0||113.51|83.18|0.00|-2.36|1E03|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:16:01.5570000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|57941|54201| +24|2023-10-06T21:16:01.5570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|F3F|90349|90349|5300|10000|||114.62|83.44|0.00|-3.01|10FF0001|Sesuga Sapisuga|0|90349|90349|5300|10000|||114.62|83.44|0.00|-3.01| +38|2023-10-06T21:16:01.5570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|5300|10000|1||114.62|83.44|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +20|2023-10-06T21:16:01.6020000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|113.67|84.26|0.00|-3.04| +37|2023-10-06T21:16:01.6930000-07:00|10FF0007|Kehabiqo Febiqo|00019986|90890|90890|10000|10000|19||115.16|84.79|0.00|-2.91|1504|0|0|02|04000769|0|C1F00000|||||| +26|2023-10-06T21:16:01.6930000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|54201| +21|2023-10-06T21:16:01.6930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22930856|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|5300|10000|||115.60|82.96|0.00|-2.87|0001998F|0|1| +31|2023-10-06T21:16:01.6930000-07:00|10FF0001||||| +261|2023-10-06T21:16:01.3470000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:16:01.3470000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:01.7820000-07:00|40022472|Zeromus|0001998A|22919893||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:01.3470000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:16:01.8260000-07:00|10FF0004|Buhojaqe Zijaqe|00019986|57016|57078|4500|10000|31||113.82|83.57|0.00|-3.10|1C05|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:16:01.8260000-07:00|13B|Whispering Dawn|21.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +38|2023-10-06T21:16:01.8260000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-3.12|0|0|0|||||||||| +30|2023-10-06T21:16:01.8260000-07:00|77B|Summon Order|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +261|2023-10-06T21:16:01.4480000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:16:01.8700000-07:00|40022472|Zeromus|0001998B|22897192||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:01.8700000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40022472|Zeromus|750003|57BB0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|22919893|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6700|10000|||119.10|94.00|0.00|2.91|00019990|0|1| +37|2023-10-06T21:16:02.0040000-07:00|40022472|Zeromus|0001998D|22896222||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:02.0040000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|200004|210B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|30694|57941|2600|10000|||115.82|83.19|0.00|1.95|54201|54201|10000|10000|||100.36|97.55|0.00|3.09|00019991|0|1| +261|2023-10-06T21:16:01.6520000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:16:02.0480000-07:00|10FF0007|Kehabiqo Febiqo|0001998E|90890|90890|10000|10000|19||115.71|83.72|0.00|-2.77|1500|0|0|01|04000769|0|41F00000|| +38|2023-10-06T21:16:02.0480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||115.71|83.72|0.00|-2.77|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:02.0930000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|63151|63151| +21|2023-10-06T21:16:02.0930000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|3A730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22896222|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||110.35|93.40|0.00|2.40|00019992|0|1| +21|2023-10-06T21:16:02.1370000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EA60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22896222|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||110.35|93.40|0.00|2.40|00019993|0|1| +38|2023-10-06T21:16:02.1820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||115.84|83.47|0.00|-2.68|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:02.1820000-07:00|4A7|Rampart|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:16:02.2260000-07:00|40022472|Zeromus|0001998F|22894552||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:02.2260000-07:00|40022B0F|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|131C0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|22896222|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97|00019994|0|1| +21|2023-10-06T21:16:02.2260000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|DAC0000|13DA0E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|22896222|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|5300|10000|||115.68|82.72|0.00|-2.62|00019995|0|1| +21|2023-10-06T21:16:02.2710000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|FAF0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|22896222|40478540|10000|10000|||100.00|80.10|0.00|0.00|30694|57941|2600|10000|||116.79|83.12|0.00|1.68|00019996|0|1| +37|2023-10-06T21:16:02.3150000-07:00|40022472|Zeromus|0001998C|22870024||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:01.9980000-07:00|Change|10FF0004||||||||||||||||||||| +26|2023-10-06T21:16:02.4920000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|57266|57266| +21|2023-10-06T21:16:02.4920000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|750003|36630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22870024|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6700|10000|||119.31|93.83|0.00|-2.19|00019997|0|1| +39|2023-10-06T21:16:02.5370000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|2.52| +261|2023-10-06T21:16:02.2380000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:02.6710000-07:00|40022472|Zeromus|00019990|22847565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:02.6710000-07:00|40022472|Zeromus|00019996|22843550||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:02.7160000-07:00|40022472|Zeromus|00019992|22828587|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|02|40E76C91|| +26|2023-10-06T21:16:02.7160000-07:00|35D|Wildfire|7.23|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|02|40478540|63151| +39|2023-10-06T21:16:02.7160000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||112.32|90.80|0.00|2.93| +21|2023-10-06T21:16:02.7160000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|15450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22870024|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||112.32|90.80|0.00|2.93|00019998|0|1| +37|2023-10-06T21:16:02.8030000-07:00|10FF000A|Dukaro Nezikaro|00019991|39153||||||116.87|83.12|0.00|-1.75| +36|2023-10-06T21:16:02.8480000-07:00|080C|3| +37|2023-10-06T21:16:02.8920000-07:00|40022472|Zeromus|00019993|22824837||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:02.8920000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|5500|10000|||115.68|82.72|0.00|-2.62| +39|2023-10-06T21:16:02.8920000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|4700|10000|||114.00|82.87|0.00|3.11| +261|2023-10-06T21:16:02.5300000-07:00|Change|10FF0001||||||| +39|2023-10-06T21:16:02.9810000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||116.26|82.60|0.00|-2.01| +39|2023-10-06T21:16:02.9810000-07:00|10FF0006|Wowobora Gogobora|57266|57266|6900|10000|||119.31|93.83|0.00|-2.19| +261|2023-10-06T21:16:02.5300000-07:00|Change|10FF0006||||||||||| +22|2023-10-06T21:16:03.0260000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19AD0000|14000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57078|57078|4700|10000|||114.00|82.87|0.00|3.11|57078|57078|4700|10000|||114.00|82.87|0.00|3.11|00019999|0|6| +22|2023-10-06T21:16:03.0260000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|2A9A0000|290E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90349|90349|5500|10000|||115.68|82.72|0.00|-2.62|57078|57078|4700|10000|||114.00|82.87|0.00|3.11|00019999|1|6| +22|2023-10-06T21:16:03.0260000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|18F40000|EC000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||116.26|82.60|0.00|-2.01|57078|57078|4700|10000|||114.00|82.87|0.00|3.11|00019999|2|6| +22|2023-10-06T21:16:03.0260000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|19EF0000|7E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|39153|57941|2600|10000|||116.87|83.12|0.00|-1.75|57078|57078|4700|10000|||114.00|82.87|0.00|3.11|00019999|3|6| +22|2023-10-06T21:16:03.0260000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19840000|D30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||112.76|90.16|0.00|-2.23|57078|57078|4700|10000|||114.00|82.87|0.00|3.11|00019999|4|6| +22|2023-10-06T21:16:03.0260000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19570000|8B000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57266|57266|6700|10000|||119.31|93.83|0.00|-2.19|57078|57078|4700|10000|||114.00|82.87|0.00|3.11|00019999|5|6| +38|2023-10-06T21:16:03.0260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||112.76|90.16|0.00|-2.23|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:03.0260000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:16:03.0260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|5500|10000|21||115.68|82.72|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:03.0260000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:16:03.0260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39153|57941|2600|10000|18||116.87|83.12|0.00|-1.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:03.0260000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +21|2023-10-06T21:16:03.0710000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|ADDA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22824837|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||116.26|82.60|0.00|-2.01|0001999A|0|1| +38|2023-10-06T21:16:03.0710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||116.26|82.60|0.00|-2.01|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:03.0710000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:16:03.2480000-07:00|40022472|Zeromus|00019995|22821337|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T21:16:03.2480000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +37|2023-10-06T21:16:03.2930000-07:00|40022472|Zeromus|00019994|22816445||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:02.9750000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:16:03.4260000-07:00|40022472|Zeromus|00019997|22802522||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:03.5140000-07:00|40022472|Zeromus|00019998|22797077||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:16:03.5590000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|63151|63151| +21|2023-10-06T21:16:03.5590000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|233D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22797077|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||114.13|87.65|0.00|-2.89|0001999B|0|1| +21|2023-10-06T21:16:03.6470000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|69B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22797077|40478540|10000|10000|||100.00|80.10|0.00|0.00|39153|57941|2600|10000|||116.87|83.12|0.00|-1.75|0001999C|0|1| +21|2023-10-06T21:16:03.6930000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|484C0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|22797077|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6900|10000|||119.31|93.83|0.00|-2.19|0001999D|0|1| +261|2023-10-06T21:16:03.2990000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:16:03.3980000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:16:03.8260000-07:00|40022B0F|Demi-Bahamut|48949|48949|10000|10000|||102.40|93.89|0.00|-2.97| +38|2023-10-06T21:16:03.8260000-07:00|40022B0F|Demi-Bahamut|005A5A00|0|48949|0|10000|0||102.40|93.89|0.00|-2.97|0|0|0||||||| +30|2023-10-06T21:16:03.8260000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022B0F|Demi-Bahamut|00|48949|57266| +261|2023-10-06T21:16:03.3980000-07:00|Change|40022B0F||||||||||| +261|2023-10-06T21:16:03.3980000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:16:03.8710000-07:00|40022B23||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:16:03.8710000-07:00|40022B23||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T21:16:03.8710000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|131E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22797077|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||116.26|82.60|0.00|-1.72|0001999E|0|1| +21|2023-10-06T21:16:03.9160000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|752003|886F0000|4|1BA78000|0|0|0|0|0|0|0|0|0|0|0|0|22797077|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|5500|10000|||115.68|82.72|0.00|-1.74|0001999F|0|1| +38|2023-10-06T21:16:03.9160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|4500|10000|21||115.68|82.72|0.00|-1.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:03.9160000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +31|2023-10-06T21:16:03.9160000-07:00|10FF0001||||| +21|2023-10-06T21:16:03.9600000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22797077|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|4500|10000|||115.68|82.72|0.00|-1.74|000199A0|0|1| +31|2023-10-06T21:16:03.9600000-07:00|10FF0001||||| +261|2023-10-06T21:16:03.5880000-07:00|Change|10FF0006||| +39|2023-10-06T21:16:04.0030000-07:00|10FF000A|Dukaro Nezikaro|39732|57941|2800|10000|||116.87|83.12|0.00|-1.75| +261|2023-10-06T21:16:03.6860000-07:00|Change|10FF000A||||||||||| +37|2023-10-06T21:16:04.1840000-07:00|40022472|Zeromus|0001999B|22788056|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|03|40B87ADF|| +26|2023-10-06T21:16:04.1840000-07:00|35D|Wildfire|5.76|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|03|40478540|63151| +37|2023-10-06T21:16:04.1840000-07:00|40022472|Zeromus|0001999C|22786365||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:04.1840000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|1A0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22797077|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.85|83.92|0.00|-2.89|000199A1|0|1| +261|2023-10-06T21:16:03.8030000-07:00|Add|40022B23||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:03.8030000-07:00|Add|40022B22||||||||||||||||||||||||||||||||| +03|2023-10-06T21:16:03.8030000-07:00|40022B23|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||117.90|92.83|0.00|0.95| +37|2023-10-06T21:16:04.2260000-07:00|40022472|Zeromus|0001999A|22741859||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:04.2260000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9B5|63151|63151|10000|10000|||115.85|83.92|0.00|-2.89|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||114.49|82.74|0.00|1.93| +261|2023-10-06T21:16:03.8030000-07:00|Change|40022B23||| +261|2023-10-06T21:16:03.8030000-07:00|Change|40022B22||| +38|2023-10-06T21:16:04.2270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||115.85|83.92|0.00|-2.89|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:16:03.8030000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:16:04.2720000-07:00|10FF0001|Sesuga Sapisuga|00019999|90349|90349|4500|10000|21||115.68|82.72|0.00|-1.74|1301|0|0|01|0A000129|0|41E66663|| +24|2023-10-06T21:16:04.2720000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|959|39732|57941|2800|10000|||116.87|83.12|0.00|-1.75|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||114.49|82.74|0.00|1.93| +38|2023-10-06T21:16:04.2720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|42125|57941|2800|10000|18||116.87|83.12|0.00|-1.75|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:16:04.3160000-07:00|40022472|Zeromus|0001999D|22723351||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:04.4060000-07:00|40022472|Zeromus|0001999E|22718457||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:04.4060000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D13|57078|57078|3700|10000|||114.56|82.65|0.00|2.34|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||114.56|82.65|0.00|2.34| +24|2023-10-06T21:16:04.4060000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D8F|90349|90349|4500|10000|||115.68|82.72|0.00|-1.74|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||114.56|82.65|0.00|2.34| +24|2023-10-06T21:16:04.4060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D13|90890|90890|10000|10000|||116.26|82.60|-0.02|-1.72|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||114.56|82.65|0.00|2.34| +24|2023-10-06T21:16:04.4060000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D01|63151|63151|10000|10000|||115.85|82.86|0.00|-1.90|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||114.56|82.65|0.00|2.34| +24|2023-10-06T21:16:04.4060000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|15C3|42125|57941|2800|10000|||116.87|83.12|0.00|-1.75|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||114.56|82.65|0.00|2.34| +24|2023-10-06T21:16:04.4060000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D8B|57266|57266|6600|10000|||119.31|93.83|0.00|-2.19|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||114.56|82.65|0.00|2.34| +24|2023-10-06T21:16:04.4060000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|943|57078|57078|3700|10000|||114.56|82.65|0.00|2.34|10FF0006|Wowobora Gogobora|0|57266|57266|6600|10000|||119.31|93.83|0.00|-2.19| +38|2023-10-06T21:16:04.4060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||116.26|82.60|-0.02|-1.72|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:04.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:16:04.4060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||115.85|82.86|0.00|-1.90|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:04.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:16:04.4060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6600|10000|30||119.31|93.83|0.00|-2.19|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:04.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:16:04.4060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|4500|10000|21||115.68|82.72|0.00|-1.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:04.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:16:04.4060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3700|10000|31||114.56|82.65|0.00|2.34|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:04.4060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:16:04.4060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|47696|57941|2800|10000|18||116.87|83.12|0.00|-1.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:04.4060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +21|2023-10-06T21:16:04.4500000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|754003|47330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22718457|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6600|10000|||119.31|93.83|0.00|-2.19|000199A2|0|1| +38|2023-10-06T21:16:04.4500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6600|10000|30||119.31|93.83|0.00|-2.19|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:04.4500000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|57266|57266| +37|2023-10-06T21:16:04.4940000-07:00|40022472|Zeromus|000199A0|22716817||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:04.4940000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FCC|90890|90890|10000|10000|||116.26|82.60|-0.02|-1.72|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +24|2023-10-06T21:16:04.4940000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A14|57266|57266|6600|10000|||119.31|93.83|0.00|-2.19|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +38|2023-10-06T21:16:04.4940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||116.26|82.60|-0.02|-1.72|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:04.4940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6600|10000|30||119.31|93.83|0.00|-2.19|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:16:04.5380000-07:00|10FF000A|Dukaro Nezikaro|00019999|54335|57941|2800|10000|18||116.87|83.12|0.00|-1.75|1E03|0|0|01|07000129|0|41E44185|| +24|2023-10-06T21:16:04.5840000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|F2A|90349|90349|4500|10000|||115.68|82.72|0.00|-1.74|10FF0001|Sesuga Sapisuga|0|90349|90349|4500|10000|||115.68|82.72|0.00|-1.74| +21|2023-10-06T21:16:04.5840000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F840E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|22718457|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3700|10000|||114.59|82.60|0.00|2.51|000199A3|0|1| +38|2023-10-06T21:16:04.5840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|4500|10000|21||115.68|82.72|0.00|-1.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:04.6720000-07:00|10FF0008|Kokosaze Lulusaze|00019999|63151|63151|10000|10000|16||115.69|82.19|0.00|-2.21|1F04|0|0|01|08000129|0|41E33123|| +261|2023-10-06T21:16:04.3570000-07:00|Change|10FF0008||||||||| +38|2023-10-06T21:16:04.7610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|4500|10000|19||115.68|82.72|0.00|-1.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:04.7610000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +261|2023-10-06T21:16:04.3570000-07:00|Change|10FF0001||| +37|2023-10-06T21:16:04.8060000-07:00|40022472|Zeromus|0001999F|22681890||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:04.8060000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22716817|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.62|81.90|0.00|-2.35|000199A4|0|1| +37|2023-10-06T21:16:04.8500000-07:00|40022472|Zeromus|000199A1|22675223||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:04.4560000-07:00|Change|40022B23||| +34|2023-10-06T21:16:04.8940000-07:00|40022B23|Carbuncle|40022B23|Carbuncle|01| +26|2023-10-06T21:16:05.0280000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +21|2023-10-06T21:16:05.0280000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2B6A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22675223|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.50|81.35|0.00|-1.65|000199A5|0|1| +37|2023-10-06T21:16:05.2060000-07:00|40022472|Zeromus|000199A3|22675223|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:16:05.2060000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +261|2023-10-06T21:16:04.8820000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:16:05.3400000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14510000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|54335|57941|2800|10000|||116.87|83.12|0.00|-1.75|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|000199A6|0|1| +37|2023-10-06T21:16:05.3860000-07:00|40022472|Zeromus|000199A2|22656996||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:05.5190000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|2.85| +21|2023-10-06T21:16:05.5190000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|A71A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22656996|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||116.26|82.60|-0.02|-1.72|000199A7|0|1| +38|2023-10-06T21:16:05.5190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||116.26|82.60|-0.02|-1.72|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:05.5190000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:16:05.5630000-07:00|40022472|Zeromus|000199A4|22654745||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:05.6530000-07:00|40022472|Zeromus|000199A5|22643631|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|04|4089709B|| +26|2023-10-06T21:16:05.6530000-07:00|35D|Wildfire|4.29|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|04|40478540|63151| +39|2023-10-06T21:16:05.6990000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||115.50|81.35|0.00|-1.65| +21|2023-10-06T21:16:05.6990000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|156D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22643631|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.50|81.35|0.00|-1.65|000199A8|0|1| +24|2023-10-06T21:16:05.7440000-07:00|40022472|Zeromus|DoT|0|17A5|22643631|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:16:05.7440000-07:00|40022472|Zeromus|005A5A00|22637578|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:05.7440000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +21|2023-10-06T21:16:05.8330000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22637578|40478540|10000|10000|||100.00|80.10|0.00|0.00|54335|57941|2800|10000|||116.87|83.12|0.00|-1.75|000199A9|0|1| +39|2023-10-06T21:16:05.8770000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|4700|10000|||115.21|82.67|0.00|-1.65| +39|2023-10-06T21:16:05.8770000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|3500|10000|||114.67|82.47|0.00|-1.73| +21|2023-10-06T21:16:05.8770000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|B1C0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|22637578|40478540|10000|10000|||100.00|80.10|0.00|0.00|54335|57941|2800|10000|||116.87|83.12|0.00|-1.75|000199AA|0|1| +36|2023-10-06T21:16:05.8770000-07:00|08E8|3| +261|2023-10-06T21:16:05.5190000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:16:05.9660000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||116.26|82.60|-0.02|-1.72| +39|2023-10-06T21:16:05.9660000-07:00|10FF0006|Wowobora Gogobora|57266|57266|6800|10000|||117.68|93.87|0.00|-1.58| +261|2023-10-06T21:16:05.6110000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:16:06.1460000-07:00|10FF000A|Dukaro Nezikaro|000199A6|57941||||||116.87|83.12|0.00|-1.75| +21|2023-10-06T21:16:06.1460000-07:00|40022472|Zeromus|8B3C|Fractured Eventide|40022472|Zeromus|1B|8B3C8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22637578|40478540|10000|10000|||100.00|80.10|0.00|0.00|22637578|40478540|10000|10000|||100.00|80.10|0.00|0.00|000199AB|0|1| +21|2023-10-06T21:16:06.1460000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22637578|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6800|10000|||115.59|94.08|0.00|-1.52|000199AC|0|1| +21|2023-10-06T21:16:06.1930000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|22637578|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6800|10000|||115.59|94.08|0.00|-1.52|000199AD|0|1| +38|2023-10-06T21:16:06.1930000-07:00|40022B23|Carbuncle|005A5A00|0|54388|0|10000|0||117.90|92.83|0.00|0.95|0|0|0|||||||||| +26|2023-10-06T21:16:06.1930000-07:00|30|Well Fed|1507.08|10FF0006|Wowobora Gogobora|40022B23|Carbuncle|2964|54388|57266| +261|2023-10-06T21:16:05.8440000-07:00|Change|40022472||||||||||||| +26|2023-10-06T21:16:06.1930000-07:00|441|HP Penalty|9999.00|E0000000||40022B23|Carbuncle|00|54388|| +38|2023-10-06T21:16:06.2360000-07:00|40022B26||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:16:06.2360000-07:00|40022B26||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T21:16:06.2360000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|80E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22637578|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|4700|10000|||114.95|82.65|0.00|-1.64|000199AE|0|1| +31|2023-10-06T21:16:06.2360000-07:00|10FF0001||||| +261|2023-10-06T21:16:05.8440000-07:00|Change|40022B23||| +261|2023-10-06T21:16:05.9630000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:16:06.2800000-07:00|40022472|Zeromus|000199AA|22634734||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:06.2800000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||116.26|82.60|-0.02|-1.72|90890|90890|10000|10000|||116.26|82.60|-0.02|-1.72|000199AF|0|1| +38|2023-10-06T21:16:06.2800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||116.26|82.60|-0.02|-1.72|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:06.2800000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:16:06.3690000-07:00|40022472|Zeromus|000199A9|22633547||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:06.4590000-07:00|40022472|Zeromus|000199A7|22590769||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:06.4590000-07:00|10FF0007|Kehabiqo Febiqo|000199A7|90890|90890|10000|10000|19||116.26|82.60|-0.02|-1.72|1500|0|0|01|04000769|0|C1F00000|| +21|2023-10-06T21:16:06.4590000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|2BCA0000|4|1BCA8000|0|0|0|0|0|0|0|0|0|0|0|0|22633547|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|4700|10000|||114.66|82.62|0.00|-1.68|000199B0|0|1| +38|2023-10-06T21:16:06.4590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|3700|10000|19||114.66|82.62|0.00|-1.68|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:06.4590000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:16:06.5030000-07:00|40022472|Zeromus|000199A8|22585284||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:06.5480000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|24240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22633547|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.50|81.35|0.00|-1.65|000199B1|0|1| +38|2023-10-06T21:16:06.5480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||115.50|81.35|0.00|-1.65|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:06.5480000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +03|2023-10-06T21:16:06.2880000-07:00|40022B26|Topaz Titan|00|5A|10FF0006|00||10264|13507|54388|54388|10000|10000|||117.51|94.16|0.00|-2.33| +21|2023-10-06T21:16:06.6380000-07:00|40022490|Zeromus|8B3E|Fractured Eventide|10FF0006|Wowobora Gogobora|750603|0|100140E|6FD0000|1B|8B3E8000|0|0|0|0|0|0|0|0|0|0|57266|57266|6800|10000|||113.86|93.82|0.00|-2.30|44|44|0|10000|||100.00|80.10|0.00|0.79|000199B2|0|1| +261|2023-10-06T21:16:06.2880000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:16:06.2880000-07:00|Add|40022B26||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:06.6810000-07:00|40022472|Zeromus|000199AC|22585135||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:06.3870000-07:00|Change|40022B26||||| +37|2023-10-06T21:16:06.7710000-07:00|40022472|Zeromus|000199AE|22583073||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:06.8160000-07:00|10FF0007|Kehabiqo Febiqo|000199AF|90890|90890|10000|10000|19||116.26|82.60|-0.02|-1.72|1500|0|0|01|04000769|0|41F00000|| +37|2023-10-06T21:16:06.8160000-07:00|10FF0006|Wowobora Gogobora|000199B2|57266|57266|6800|10000|5||112.88|93.21|0.00|-2.27|1B00|0|0|01|010006FD|01|42700000|| +26|2023-10-06T21:16:06.8160000-07:00|6FD|Vulnerability Up|60.00|40022490|Zeromus|10FF0006|Wowobora Gogobora|01|57266|44| +38|2023-10-06T21:16:06.8160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||116.26|82.60|-0.02|-1.72|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:06.4790000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:16:06.9050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3500|10000|31||114.67|82.41|0.00|-2.86|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:06.9050000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|57078|57078| +21|2023-10-06T21:16:06.9050000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|3500|10000|||114.67|82.41|0.00|-2.86|57078|57078|3500|10000|||114.67|82.41|0.00|-2.86|000199B3|0|1| +39|2023-10-06T21:16:06.9950000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|3000|10000|||116.87|83.12|0.00|-1.75| +261|2023-10-06T21:16:06.5760000-07:00|Change|10FF000A||| +261|2023-10-06T21:16:06.6670000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:16:07.1270000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|10FF0006|Wowobora Gogobora|750603|588A0000|200140E|6FD0000|1B|8BB28000|0|0|0|0|0|0|0|0|0|0|57266|57266|6800|10000|||112.85|91.03|0.00|-2.74|44|44|0|10000|||100.00|80.10|0.00|0.66|000199B4|0|1| +37|2023-10-06T21:16:07.1730000-07:00|40022472|Zeromus|000199B1|22573821|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|05|4031A9E8|| +26|2023-10-06T21:16:07.1730000-07:00|35D|Wildfire|2.78|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|05|40478540|63151| +21|2023-10-06T21:16:07.1730000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|21690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22583073|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.50|81.35|0.00|-1.65|000199B5|0|1| +37|2023-10-06T21:16:07.2160000-07:00|40022472|Zeromus|000199B0|22562611||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:07.2170000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|929|63151|63151|10000|10000|||115.50|81.35|0.00|-1.65|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +38|2023-10-06T21:16:07.2170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||115.50|81.35|0.00|-1.65|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:16:07.2610000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|988|57941|57941|3000|10000|||116.87|83.12|0.00|-1.75|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +21|2023-10-06T21:16:07.2610000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22573821|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||116.24|82.61|0.00|-1.53|000199B6|0|1| +38|2023-10-06T21:16:07.2610000-07:00|10FF0003|Gegehi Gehi|005A5A23|10333|51669|2000|10000|0||102.97|102.23|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:16:07.2610000-07:00|94|Raise|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|08|51669|57078| +26|2023-10-06T21:16:07.2610000-07:00|2B|Weakness|100.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +26|2023-10-06T21:16:07.2610000-07:00|1A2|Transcendent|5.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:16:07.2610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3000|10000|18||116.87|83.12|0.00|-1.75|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:16:06.8930000-07:00|Change|10FF0003||||| +261|2023-10-06T21:16:06.8930000-07:00|Change|40022B26||| +37|2023-10-06T21:16:07.3060000-07:00|10FF0006|Wowobora Gogobora|000199B4|34600|57266|6800|10000|0||112.81|90.26|0.00|-2.83|1B00|0|0|02|010006FD|02|42700000|||||| +26|2023-10-06T21:16:07.3060000-07:00|6FD|Vulnerability Up|60.00|40022490|Zeromus|10FF0006|Wowobora Gogobora|02|57266|44| +38|2023-10-06T21:16:07.3060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34600|57266|6800|10000|0||112.81|90.26|0.00|-2.83|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:07.3060000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +24|2023-10-06T21:16:07.3950000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D87|34600|57266|6800|10000|||112.77|89.50|0.00|-2.91|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +24|2023-10-06T21:16:07.3950000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1587|90349|90349|3700|10000|||111.92|82.44|0.00|-1.61|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +24|2023-10-06T21:16:07.3950000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D61|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +24|2023-10-06T21:16:07.3950000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D27|90890|90890|10000|10000|||116.23|82.61|0.00|-1.37|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +24|2023-10-06T21:16:07.3950000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D53|63151|63151|10000|10000|||115.50|81.35|0.00|-1.65|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +24|2023-10-06T21:16:07.3950000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|DA6|57941|57941|3000|10000|||116.87|83.12|0.00|-1.75|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +24|2023-10-06T21:16:07.3950000-07:00|10FF0003|Gegehi Gehi|HoT|798|D3E|10333|51669|2000|10000|||102.97|102.23|0.00|0.00|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +24|2023-10-06T21:16:07.3950000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A15|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3500|10000|||114.67|82.38|-0.02|-3.12| +38|2023-10-06T21:16:07.3950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||116.23|82.61|0.00|-1.37|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:07.3950000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:16:07.3950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||115.50|81.35|0.00|-1.65|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:07.3950000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:16:07.3950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|38063|57266|6800|10000|0||112.77|89.50|0.00|-2.91|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:07.3950000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:16:07.3950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|3700|10000|19||111.92|82.44|0.00|-1.61|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:07.3950000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:16:07.3950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3500|10000|31||114.67|82.38|-0.02|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:07.3950000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:16:07.3950000-07:00|10FF0003|Gegehi Gehi|005A5A23|13723|51669|2000|10000|0||102.97|102.23|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:16:07.3950000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:16:07.3950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3000|10000|18||116.87|83.12|0.00|-1.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:07.3950000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +37|2023-10-06T21:16:07.4390000-07:00|10FF0004|Buhojaqe Zijaqe|000199B3|57078|57078|5500|10000|31||114.67|82.38|0.00|-3.12|1C00|0|0|0| +261|2023-10-06T21:16:07.1290000-07:00|Change|10FF0004||||||||| +24|2023-10-06T21:16:07.4850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|935|90890|90890|10000|10000|||116.21|82.62|0.00|-1.23|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +24|2023-10-06T21:16:07.4850000-07:00|10FF0006|Wowobora Gogobora|HoT|0|FF4|38063|57266|6800|10000|||112.71|88.90|-0.02|-2.96|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +21|2023-10-06T21:16:07.4850000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22562611|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.50|81.35|0.00|-1.65|000199B7|0|1| +38|2023-10-06T21:16:07.4850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||116.21|82.62|0.00|-1.23|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:07.4850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42147|57266|6800|10000|0||112.71|88.90|-0.02|-2.96|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:16:07.5740000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.66|000199B8|0|0| +24|2023-10-06T21:16:07.5740000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9AD|90349|90349|3700|10000|||111.92|82.44|0.00|-1.61|10FF0001|Sesuga Sapisuga|0|90349|90349|3700|10000|||111.92|82.44|0.00|-1.61| +38|2023-10-06T21:16:07.5740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|3700|10000|19||111.92|82.44|0.00|-1.61|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:07.7080000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|712003|43230000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|22562611|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|3700|10000|||111.92|82.44|0.00|-1.61|000199B9|0|1| +21|2023-10-06T21:16:07.7080000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|24550000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|22562611|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|5500|10000|||114.66|82.38|0.00|-2.56|000199BA|0|1| +37|2023-10-06T21:16:07.7970000-07:00|40022472|Zeromus|000199B6|22559699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:07.7970000-07:00|40022472|Zeromus|000199B5|22551146||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:16:07.4440000-07:00|40022B0F|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|48949|0|10000|||102.40|93.89|0.00|-2.97| +261|2023-10-06T21:16:07.4440000-07:00|Remove|40022B0F| +261|2023-10-06T21:16:07.5490000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:16:07.9760000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|9AF80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22551146|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||113.19|84.72|0.00|-0.97|000199BB|0|1| +38|2023-10-06T21:16:07.9760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||113.19|84.72|0.00|-0.97|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:07.9760000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +21|2023-10-06T21:16:08.0200000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22551146|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3000|10000|||114.93|83.28|0.00|-1.51|000199BC|0|1| +37|2023-10-06T21:16:08.0640000-07:00|40022472|Zeromus|000199B9|22533959||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:08.0640000-07:00|10FF0001|Sesuga Sapisuga|000199B9|90349|90349|4200|10000|19||111.29|82.64|0.00|-1.53|1300|0|0|0| +21|2023-10-06T21:16:08.0640000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.54|000199BD|0|0| +21|2023-10-06T21:16:08.0640000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5A270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22551146|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.46|81.35|0.00|-1.55|000199BE|0|1| +261|2023-10-06T21:16:07.7380000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:16:08.1530000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|B7F0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|22533959|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3000|10000|||114.07|83.36|0.00|-1.48|000199BF|0|1| +37|2023-10-06T21:16:08.2420000-07:00|40022472|Zeromus|000199B7|22531707||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:07.8530000-07:00|Change|40022B23||| +21|2023-10-06T21:16:08.2860000-07:00|40022B26|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|450003|5FF70000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|22531707|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||117.51|94.16|0.00|-2.33|000199C0|0|1| +38|2023-10-06T21:16:08.3310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5100|10000|0||114.11|82.44|0.00|-1.67|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:08.3310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +261|2023-10-06T21:16:08.0820000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:16:08.5100000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|10FF0003|Gegehi Gehi|750103|0|114|6FD0000|1B|8BB28000|0|0|0|0|0|0|0|0|0|0|13723|51669|2000|10000|||103.71|100.65|0.00|2.88|44|44|0|10000|||100.00|80.10|0.00|0.42|000199C1|0|1| +39|2023-10-06T21:16:08.5100000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +21|2023-10-06T21:16:08.5100000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|64F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22531707|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|4200|10000|||109.53|84.49|0.00|-1.55|000199C2|0|1| +31|2023-10-06T21:16:08.5100000-07:00|10FF0001||||| +37|2023-10-06T21:16:08.5540000-07:00|40022472|Zeromus|000199BC|22530510||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:08.5540000-07:00|40022472|Zeromus|000199BF|22527567||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:08.2960000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:16:08.6430000-07:00|40022472|Zeromus|000199BA|22518266||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:08.2960000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:16:08.7330000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||115.08|81.47|0.00|-1.61| +21|2023-10-06T21:16:08.7330000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1A640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22518266|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||115.08|81.47|0.00|-1.61|000199C3|0|1| +21|2023-10-06T21:16:08.7330000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|454003|45380000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|22518266|40478540|10000|10000|||100.00|80.10|0.00|0.00|42147|57266|6800|10000|||109.54|85.67|0.00|-2.72|000199C4|0|1| +38|2023-10-06T21:16:08.7330000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42147|57266|6500|10000|0||109.54|85.67|0.00|-2.72|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:08.7330000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +24|2023-10-06T21:16:08.7770000-07:00|40022472|Zeromus|DoT|0|166A|22518266|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:16:08.7770000-07:00|40022472|Zeromus|005A5A00|22512528|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:08.7770000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +21|2023-10-06T21:16:08.8650000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|148E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|13723|51669|2000|10000|||104.62|98.59|0.00|2.82|54201|54201|10000|10000|||100.36|97.55|0.00|2.99|000199C5|0|1| +39|2023-10-06T21:16:08.8650000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|4400|10000|||107.59|84.58|0.00|-1.54| +36|2023-10-06T21:16:08.8650000-07:00|09C4|3| +37|2023-10-06T21:16:08.9100000-07:00|40022472|Zeromus|000199BB|22472856||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:08.9100000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|5300|10000|||111.94|83.01|0.00|-1.28| +261|2023-10-06T21:16:08.5710000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:16:08.9540000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|25BF0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22472856|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|4400|10000|||107.04|84.61|0.00|-1.52|000199C6|0|1| +38|2023-10-06T21:16:08.9540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|4400|10000|19||107.04|84.61|0.00|-1.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:08.9540000-07:00|76E|Sword Oath|12.39|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +261|2023-10-06T21:16:08.5710000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:16:08.9990000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|10FF0003|Gegehi Gehi|750103|0|114|6FD0000|1B|8BB28000|0|0|0|0|0|0|0|0|0|0|13723|51669|2000|10000|||104.86|97.84|0.00|2.83|44|44|0|10000|||100.00|80.10|0.00|0.30|000199C7|0|1| +39|2023-10-06T21:16:08.9990000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||110.06|86.34|0.00|-0.76| +39|2023-10-06T21:16:08.9990000-07:00|10FF0006|Wowobora Gogobora|42719|57266|6700|10000|||108.98|85.69|0.00|-2.12| +37|2023-10-06T21:16:09.0430000-07:00|40022472|Zeromus|000199C2|22471241||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:08.7820000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:16:09.2220000-07:00|40022472|Zeromus|000199BE|22448162|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|06|3F39DAD2|| +26|2023-10-06T21:16:09.2220000-07:00|35D|Wildfire|0.73|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|63151| +21|2023-10-06T21:16:09.2660000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22448162|40478540|10000|10000|||100.00|80.10|0.00|0.00|42719|57266|6700|10000|||107.66|84.76|0.00|-2.05|000199C8|0|1| +37|2023-10-06T21:16:09.3560000-07:00|40022472|Zeromus|000199C4|22430442||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:09.3560000-07:00|10FF0006|Wowobora Gogobora|000199C4|42719|57266|6700|10000|0||107.66|84.76|0.00|-2.05|1B00|0|0|01|05000B25|0|0|| +21|2023-10-06T21:16:09.3560000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|198C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22448162|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||112.21|82.49|0.00|-1.72|000199C9|0|1| +261|2023-10-06T21:16:09.0090000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T21:16:09.3570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42719|57266|6700|10000|0||107.31|84.52|0.00|-1.85|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:16:09.0090000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:16:09.0090000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T21:16:09.4010000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|190B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22430442|40478540|10000|10000|||100.00|80.10|0.00|0.00|42719|57266|6700|10000|||107.31|84.52|0.00|-1.85|000199CA|0|1| +38|2023-10-06T21:16:09.4010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42719|57266|6700|10000|0||107.31|84.52|0.00|-1.85|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:09.4010000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:16:09.1190000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:16:09.4450000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.17|000199CB|0|0| +37|2023-10-06T21:16:09.5340000-07:00|40022472|Zeromus|000199C3|22423686||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:09.6680000-07:00|10FF0003|Gegehi Gehi|000199C5|18985||||||104.91|93.58|0.00|-3.05| +261|2023-10-06T21:16:09.3210000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:16:09.4200000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:16:09.8020000-07:00|40022472|Zeromus|000199C8|22423531||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:09.8470000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|5300|10000|||106.73|85.96|0.00|-0.91|57078|57078|5300|10000|||106.73|85.96|0.00|-0.91|000199CC|0|1| +38|2023-10-06T21:16:09.8470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5300|10000|0||106.73|85.96|0.00|-0.91|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:09.8470000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +21|2023-10-06T21:16:09.8900000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.07|000199CD|0|0| +24|2023-10-06T21:16:09.9360000-07:00|40022472|Zeromus|DoT|35D|DA9B|22423531|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|63151|63151|10000|10000|||107.52|85.40|-0.02|-1.08| +38|2023-10-06T21:16:09.9360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||107.52|85.40|-0.02|-1.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:09.9360000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +38|2023-10-06T21:16:09.9360000-07:00|40022472|Zeromus|005A5A00|22367568|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:16:09.9360000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|63151| +261|2023-10-06T21:16:09.5130000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:16:09.9800000-07:00|40022472|Zeromus|000199C9|22361028||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:09.9800000-07:00|10FF0004|Buhojaqe Zijaqe|000199CC|57078|57078|5300|10000|0||106.34|86.56|0.00|-0.43|1C00|0|0|01|040000A7|0|41200000|| +39|2023-10-06T21:16:09.9800000-07:00|10FF0003|Gegehi Gehi|19501|51669|2200|10000|||105.69|91.91|0.00|-3.00| +39|2023-10-06T21:16:09.9800000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|3200|10000|||106.74|85.03|0.00|-1.20| +38|2023-10-06T21:16:09.9800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5300|10000|0||106.34|86.56|0.00|-0.43|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:09.7100000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:10.1600000-07:00|40022472|Zeromus|000199CA|22354617||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:10.1600000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22361028|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||106.61|86.41|0.00|-0.89|000199CE|0|1| +24|2023-10-06T21:16:10.2040000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A0D|63151|63151|10000|10000|||106.61|86.41|0.00|-0.89|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.29|86.75|0.00|-0.43| +21|2023-10-06T21:16:10.2040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22361028|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3200|10000|||106.53|85.15|0.00|-1.14|000199CF|0|1| +38|2023-10-06T21:16:10.2040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||106.61|86.41|0.00|-0.89|0|0|0|||||||||||||||||||||||||||| +04|2023-10-06T21:16:09.8330000-07:00|40022B23|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||117.90|92.83|0.00|0.95| +261|2023-10-06T21:16:09.8330000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:16:09.8330000-07:00|Remove|40022B23| +37|2023-10-06T21:16:10.2490000-07:00|40022472|Zeromus|000199C6|22344954||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:10.2490000-07:00|10FF0001|Sesuga Sapisuga|000199C6|90349|90349|4800|10000|19||105.05|86.59|0.00|-1.58|1300|0|0|0| +37|2023-10-06T21:16:10.2490000-07:00|40022472|Zeromus|000199C0|22320387||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:10.2490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1035|57941|57941|3200|10000|||105.88|85.69|0.00|-0.88|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.34|86.75|0.00|-0.43| +38|2023-10-06T21:16:10.2490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3200|10000|18||105.88|85.69|0.00|-0.88|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:16:09.8330000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:16:10.2930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||106.78|94.40|0.00|-0.48|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:10.2930000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +21|2023-10-06T21:16:10.3380000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.19|000199D0|0|0| +21|2023-10-06T21:16:10.3380000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32712003|19120000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|22320387|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3200|10000|||105.12|86.32|0.00|-0.88|000199D1|0|1| +24|2023-10-06T21:16:10.3820000-07:00|10FF0003|Gegehi Gehi|HoT|798|D69|19501|51669|2200|10000|||106.35|90.39|0.00|-2.83|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50| +24|2023-10-06T21:16:10.3820000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CE8|42719|57266|6700|10000|||105.25|88.80|0.00|-0.37|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50| +24|2023-10-06T21:16:10.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|15ED|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50| +24|2023-10-06T21:16:10.3820000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|15FA|63151|63151|10000|10000|||105.74|87.56|0.00|-0.77|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50| +24|2023-10-06T21:16:10.3820000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D8C|90349|90349|4800|10000|||104.76|86.91|0.00|-1.51|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50| +24|2023-10-06T21:16:10.3820000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|1534|57941|57941|3200|10000|||105.12|86.32|0.00|-0.88|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50| +24|2023-10-06T21:16:10.3820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1584|90890|90890|10000|10000|||106.34|94.93|0.00|-0.54|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50| +24|2023-10-06T21:16:10.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|94A|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||106.00|87.17|0.00|-0.50| +38|2023-10-06T21:16:10.3820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||106.34|94.93|0.00|-0.54|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:10.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:16:10.3820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||105.74|87.56|0.00|-0.77|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:10.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:16:10.3820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|46023|57266|6700|10000|0||105.25|88.80|0.00|-0.37|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:10.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:16:10.3820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|4800|10000|19||104.76|86.91|0.00|-1.51|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:10.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:16:10.3820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5300|10000|0||106.00|87.17|0.00|-0.50|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:10.3820000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:16:10.3820000-07:00|10FF0003|Gegehi Gehi|005A5A23|22934|51669|2200|10000|0||106.35|90.39|0.00|-2.83|0|0|0|||||||||||||||| +26|2023-10-06T21:16:10.3820000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:16:10.3820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3200|10000|18||105.12|86.32|0.00|-0.88|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:10.3820000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +21|2023-10-06T21:16:10.4260000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|23130000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|22320387|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||106.34|94.93|0.00|-0.54|000199D2|0|1| +24|2023-10-06T21:16:10.4710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|103C|90890|90890|10000|10000|||105.88|95.43|0.00|-2.85|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.74| +24|2023-10-06T21:16:10.4710000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9A9|46023|57266|6700|10000|||105.06|89.47|0.00|-0.37|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|2.74| +38|2023-10-06T21:16:10.4710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||105.88|95.43|0.00|-2.85|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:10.4710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|48496|57266|6700|10000|0||105.06|89.47|0.00|-0.37|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:16:10.1800000-07:00|Change|10FF0004||||||||| +24|2023-10-06T21:16:10.5590000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9CD|90349|90349|4800|10000|||103.92|87.85|0.00|-1.51|10FF0001|Sesuga Sapisuga|0|90349|90349|4800|10000|||103.92|87.85|0.00|-1.51| +38|2023-10-06T21:16:10.5590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|4800|10000|19||103.92|87.85|0.00|-1.51|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:10.6040000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3A890000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|22320387|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||104.92|88.71|0.00|-0.68|000199D3|0|1| +21|2023-10-06T21:16:10.6480000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|13520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22320387|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||104.83|96.42|0.00|-2.41|000199D4|0|1| +21|2023-10-06T21:16:10.6480000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0009|Zewo Negiwo|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|56823|0|10000|||116.75|97.18|0.00|-0.71|57078|57078|5300|10000|||104.92|88.91|0.00|-0.57|000199D5|0|1| +38|2023-10-06T21:16:10.6480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2900|10000|0||104.92|88.91|0.00|-0.57|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:10.6480000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +37|2023-10-06T21:16:10.7380000-07:00|40022472|Zeromus|000199CF|22319144||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:10.7380000-07:00|40022472|Zeromus|000199D1|22312726||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:10.3740000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:16:10.3740000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:16:10.7830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|66E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22312726|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|4800|10000|||103.06|88.84|0.00|-1.49|000199D6|0|1| +31|2023-10-06T21:16:10.7830000-07:00|10FF0001||||| +261|2023-10-06T21:16:10.3740000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:16:10.8260000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.19|000199D7|0|0| +261|2023-10-06T21:16:10.4660000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:10.9160000-07:00|40022472|Zeromus|000199CE|22310487||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:10.5700000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:16:11.0500000-07:00|40022472|Zeromus|000199D2|22301508||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:10.6670000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:16:11.1840000-07:00|40022472|Zeromus|000199D4|22296562||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:11.2290000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|39180000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|22296562|40478540|10000|10000|||100.00|80.10|0.00|0.00|48496|57266|6700|10000|||101.62|92.80|0.00|-0.68|000199D8|0|1| +38|2023-10-06T21:16:11.2290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|48496|57266|6400|10000|0||101.62|92.80|0.00|-0.68|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:11.2290000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +21|2023-10-06T21:16:11.2730000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.31|000199D9|0|0| +261|2023-10-06T21:16:10.8980000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:16:10.8980000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:16:11.3180000-07:00|40022472|Zeromus|000199D6|22294916||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:11.4070000-07:00|40022472|Zeromus|000199D3|22279931||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:11.4520000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|256E0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22279931|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|4800|10000|||101.06|92.05|0.00|-0.84|000199DA|0|1| +38|2023-10-06T21:16:11.4520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|4800|10000|19||101.06|92.05|0.00|-0.84|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:11.4520000-07:00|76E|Sword Oath|9.90|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +39|2023-10-06T21:16:11.5410000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +261|2023-10-06T21:16:11.1290000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:16:11.2350000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:16:11.3420000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:16:11.7210000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.44|000199DB|0|0| +39|2023-10-06T21:16:11.7210000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||101.06|94.55|0.00|-0.68| +37|2023-10-06T21:16:11.7650000-07:00|10FF0009|Zewo Negiwo|000199D5|0|56823|0|10000|0||116.75|97.18|0.00|-0.71|1800|0|0|01|02000094|08|42700000|| +26|2023-10-06T21:16:11.7650000-07:00|94|Raise|60.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|08|56823|57078| +24|2023-10-06T21:16:11.7650000-07:00|40022472|Zeromus|DoT|0|17FF|22279931|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:16:11.7650000-07:00|40022472|Zeromus|005A5A00|22273788|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:11.7650000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:16:11.4360000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:16:11.8540000-07:00|40022472|Zeromus|000199D8|22259172||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:11.8540000-07:00|10FF0006|Wowobora Gogobora|000199D8|48496|57266|6400|10000|0||98.94|95.81|0.00|-1.46|1B00|0|0|01|05000B25|0|0|| +21|2023-10-06T21:16:11.8540000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|183A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22273788|40478540|10000|10000|||100.00|80.10|0.00|0.00|48496|57266|6400|10000|||98.94|95.81|0.00|-1.46|000199DC|0|1| +36|2023-10-06T21:16:11.8540000-07:00|0AA0|3| +38|2023-10-06T21:16:11.8540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|48496|57266|6400|10000|0||98.94|95.81|0.00|-1.46|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:11.8540000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +39|2023-10-06T21:16:11.8980000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|5000|10000|||99.18|93.85|0.00|-0.84| +39|2023-10-06T21:16:11.8980000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|3100|10000|||101.93|95.92|0.00|-0.39| +39|2023-10-06T21:16:11.9880000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||97.84|100.90|0.00|-1.58| +39|2023-10-06T21:16:11.9880000-07:00|10FF0006|Wowobora Gogobora|49068|57266|6600|10000|||98.77|95.95|0.00|3.03| +261|2023-10-06T21:16:11.6280000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:16:11.6280000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:16:12.0770000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|21C30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|22934|51669|2200|10000|||100.38|95.07|0.00|-1.40|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|000199DD|0|1| +261|2023-10-06T21:16:11.7250000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:16:12.1660000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.56|000199DE|0|0| +38|2023-10-06T21:16:12.3000000-07:00|40022B26|Topaz Titan|005A5A00|0|54388|0|10000|0||117.51|94.16|0.00|-2.33|0|0|0|||||||||| +26|2023-10-06T21:16:12.3000000-07:00|30|Well Fed|1500.97|10FF0006|Wowobora Gogobora|40022B26|Topaz Titan|2964|54388|57266| +26|2023-10-06T21:16:12.3000000-07:00|441|HP Penalty|9999.00|E0000000||40022B26|Topaz Titan|00|54388|| +38|2023-10-06T21:16:12.3000000-07:00|10FF0003|Gegehi Gehi|005A5A23|22934|51669|2200|10000|0||99.54|96.58|0.00|-1.32|0|0|0|||||||||||||||| +30|2023-10-06T21:16:12.3000000-07:00|1A2|Transcendent|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:16:12.3450000-07:00|40022B28||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:16:12.3450000-07:00|40022B28||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T21:16:12.3450000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||97.61|97.68|0.00|-0.86|63151|63151|10000|10000|||97.61|97.68|0.00|-0.86|000199DF|0|1| +261|2023-10-06T21:16:11.9470000-07:00|Change|40022B26||||| +21|2023-10-06T21:16:12.3890000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22259172|40478540|10000|10000|||100.00|80.10|0.00|0.00|49068|57266|6600|10000|||97.64|96.65|0.00|3.03|000199E0|0|1| +21|2023-10-06T21:16:12.3890000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22259172|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3200|10000|||96.34|97.32|0.00|-1.13|000199E1|0|1| +21|2023-10-06T21:16:12.5220000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|23380000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|22259172|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3200|10000|||95.73|97.55|0.00|-1.19|000199E2|0|1| +261|2023-10-06T21:16:12.1760000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:16:12.1760000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:16:12.6130000-07:00|40022472|Zeromus|000199DC|22252970||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:12.6130000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.68|000199E3|0|0| +38|2023-10-06T21:16:12.6130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|5000|10000|19||95.40|96.25|0.00|-1.16|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:12.6130000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +03|2023-10-06T21:16:12.2690000-07:00|40022B28|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||94.71|97.90|0.00|2.02| +261|2023-10-06T21:16:12.2690000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:16:12.2690000-07:00|Add|40022B28||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:12.2690000-07:00|Change|40022B28||| +261|2023-10-06T21:16:12.3650000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:12.7460000-07:00|40022472|Zeromus|000199DA|22243388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:12.7460000-07:00|10FF0001|Sesuga Sapisuga|000199DA|90349|90349|5400|10000|19||94.80|96.49|0.00|-1.23|1300|0|0|0| +261|2023-10-06T21:16:12.3650000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:16:12.8340000-07:00|40022B29||005A5A00|59967|59967|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:16:12.8350000-07:00|40022B29||005A5A00|59967|59967|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T21:16:12.8350000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22243388|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||96.57|98.23|0.00|-1.06|000199E4|0|1| +261|2023-10-06T21:16:12.4590000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:16:12.8800000-07:00|10FF0003|Gegehi Gehi|000199DD|31577||||||97.29|97.59|0.00|-1.37| +21|2023-10-06T21:16:12.8800000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|30CA0000|143E|340000|4|17758000|11B|2A8000|0|0|0|0|0|0|0|0|22243388|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||92.79|100.22|0.00|-1.76|000199E5|0|1| +261|2023-10-06T21:16:12.5550000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:16:12.9240000-07:00|40022472|Zeromus|000199E0|22243141||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:12.9240000-07:00|40022472|Zeromus|000199E1|22241909||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:12.9680000-07:00|10FF0003|Gegehi Gehi|32093|51669|2400|10000|||96.66|97.68|-0.02|-1.39| +39|2023-10-06T21:16:13.0140000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|3400|10000|||92.77|97.88|0.00|-2.20| +261|2023-10-06T21:16:12.5550000-07:00|Add|40022B29||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:16:12.5550000-07:00|40022B29|Automaton Queen|00|5A|10FF0008|00||8230|10490|59967|59967|10000|10000|||94.22|97.04|0.00|-1.36| +37|2023-10-06T21:16:13.0590000-07:00|40022472|Zeromus|000199E2|22232893||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:13.0590000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.93|000199E6|0|0| +21|2023-10-06T21:16:13.0590000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22241909|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|5400|10000|||92.89|96.81|0.00|-1.58|000199E7|0|1| +31|2023-10-06T21:16:13.0590000-07:00|10FF0001||||| +261|2023-10-06T21:16:12.6730000-07:00|Change|40022B29||| +21|2023-10-06T21:16:13.1030000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1F580000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|22241909|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.43|98.73|-0.02|-1.36|000199E8|0|1| +24|2023-10-06T21:16:13.2370000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|95E|63151|63151|10000|10000|||94.13|98.92|0.00|2.78|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3100|10000|||94.31|100.09|0.00|-1.29| +38|2023-10-06T21:16:13.2370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||94.13|98.92|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:16:13.2810000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|EE7|57941|57941|3400|10000|||90.34|97.91|0.00|-1.73|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3100|10000|||94.31|100.09|0.00|-1.29| +38|2023-10-06T21:16:13.2810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3400|10000|18||90.34|97.91|0.00|-1.73|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:16:13.0150000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:16:13.0150000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:16:13.0150000-07:00|Change|40022B28||||||||| +34|2023-10-06T21:16:13.3700000-07:00|40022B28|Carbuncle|40022B28|Carbuncle|01| +24|2023-10-06T21:16:13.4160000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|97B|57078|57078|3100|10000|||93.58|100.36|0.00|-1.27|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3100|10000|||93.58|100.36|0.00|-1.27| +38|2023-10-06T21:16:13.4160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3100|10000|0||93.58|100.36|0.00|-1.27|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:13.1290000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:16:13.1290000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:16:13.5040000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.93|000199E9|0|0| +24|2023-10-06T21:16:13.5040000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|924|90890|90890|10000|10000|||89.00|99.11|0.00|-2.37|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-1.87| +24|2023-10-06T21:16:13.5040000-07:00|10FF0006|Wowobora Gogobora|HoT|0|982|49068|57266|6600|10000|||91.20|98.43|0.00|-1.64|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-1.87| +38|2023-10-06T21:16:13.5040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||89.00|99.11|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:13.5040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51502|57266|6600|10000|0||91.20|98.43|0.00|-1.64|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:16:13.5930000-07:00|40022472|Zeromus|000199E4|22230634||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:13.5930000-07:00|40022472|Zeromus|000199E7|22229274||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:13.5930000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|FAA|90349|90349|5400|10000|||89.68|96.27|0.00|-1.99|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3100|10000|||92.11|100.46|0.00|-1.33| +38|2023-10-06T21:16:13.5930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|5400|10000|19||89.68|96.27|0.00|-1.99|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:13.3400000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:16:13.6810000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|35180000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|22229274|40478540|10000|10000|||100.00|80.10|0.00|0.00|51502|57266|6600|10000|||89.80|98.11|0.00|-1.75|000199EA|0|1| +38|2023-10-06T21:16:13.6820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51502|57266|6300|10000|0||89.80|98.11|0.00|-1.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:13.6820000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:16:13.3400000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:16:13.3400000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:13.8600000-07:00|40022472|Zeromus|000199E8|22221250||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:16:13.8600000-07:00|40022B29|Automaton Queen|40022B29|Automaton Queen|01| +261|2023-10-06T21:16:13.5320000-07:00|Change|40022B29||| +21|2023-10-06T21:16:13.9500000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.05|000199EB|0|0| +21|2023-10-06T21:16:13.9500000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|1FCC0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22221250|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|5400|10000|||87.97|95.36|0.00|-2.11|000199EC|0|1| +38|2023-10-06T21:16:13.9500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|5400|10000|19||87.97|95.36|0.00|-2.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:13.9500000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +21|2023-10-06T21:16:14.0380000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22221250|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||85.91|97.91|0.00|-2.01|000199ED|0|1| +261|2023-10-06T21:16:13.7440000-07:00|Change|10FF0006||||||||||| +22|2023-10-06T21:16:14.2170000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32093|51669|2400|10000|||88.93|98.00|0.00|-2.18|32093|51669|2400|10000|||88.93|98.00|0.00|-2.18|000199EE|0|7| +22|2023-10-06T21:16:14.2170000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|3400|10000|||87.13|95.46|0.00|-2.39|32093|51669|2400|10000|||88.93|98.00|0.00|-2.18|000199EE|1|7| +22|2023-10-06T21:16:14.2170000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|5400|10000|||86.37|94.26|0.00|-2.25|32093|51669|2400|10000|||88.93|98.00|0.00|-2.18|000199EE|2|7| +22|2023-10-06T21:16:14.2170000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||88.17|98.25|0.00|-2.10|32093|51669|2400|10000|||88.93|98.00|0.00|-2.18|000199EE|3|7| +22|2023-10-06T21:16:14.2170000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51502|57266|6300|10000|||86.28|96.99|0.00|-2.16|32093|51669|2400|10000|||88.93|98.00|0.00|-2.18|000199EE|4|7| +22|2023-10-06T21:16:14.2170000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|3100|10000|||88.19|100.45|0.00|-1.66|32093|51669|2400|10000|||88.93|98.00|0.00|-2.18|000199EE|5|7| +22|2023-10-06T21:16:14.2170000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||84.78|97.32|-0.01|-2.06|32093|51669|2400|10000|||88.93|98.00|0.00|-2.18|000199EE|6|7| +261|2023-10-06T21:16:13.8550000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:16:14.3060000-07:00|40022472|Zeromus|000199EA|22207658||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:14.3060000-07:00|10FF0006|Wowobora Gogobora|000199EA|51502|57266|6300|10000|0||86.28|96.99|0.00|-2.16|1B00|0|0|01|05000B25|0|0|| +38|2023-10-06T21:16:14.3060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51502|57266|6300|10000|0||86.28|96.99|0.00|-2.16|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:16:13.9710000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:16:14.3510000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|452003|2A820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22207658|40478540|10000|10000|||100.00|80.10|0.00|0.00|51502|57266|6300|10000|||85.72|96.86|-0.02|-1.99|000199EF|0|1| +38|2023-10-06T21:16:14.3510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51502|57266|6300|10000|0||85.72|96.86|-0.02|-1.99|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:14.3510000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:16:13.9710000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:14.3970000-07:00|40022472|Zeromus|000199E5|22195168||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:14.3970000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.17|000199F0|0|0| +21|2023-10-06T21:16:14.4410000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|27870000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|22195168|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3100|10000|||86.96|99.99|0.00|-1.84|000199F1|0|1| +261|2023-10-06T21:16:14.2020000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:16:14.5310000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +261|2023-10-06T21:16:14.2020000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:16:14.2020000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:16:14.5750000-07:00|40022472|Zeromus|000199ED|22190471||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:14.5750000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22195168|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3400|10000|||85.94|93.98|0.00|-2.44|000199F2|0|1| +39|2023-10-06T21:16:14.7090000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||85.70|96.66|-0.02|-2.19| +21|2023-10-06T21:16:14.7090000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|B9C0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|22190471|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3400|10000|||85.72|93.70|0.00|-2.47|000199F3|0|1| +24|2023-10-06T21:16:14.7540000-07:00|40022472|Zeromus|DoT|0|F8F|22190471|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:16:14.7540000-07:00|40022472|Zeromus|005A5A00|22186488|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:14.7540000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:16:14.7540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2700|10000|0||85.35|98.92|0.00|2.71|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:14.7540000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +261|2023-10-06T21:16:14.3910000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:16:14.3910000-07:00|Change|40022B28||||||||| +21|2023-10-06T21:16:14.8420000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.29|000199F4|0|0| +36|2023-10-06T21:16:14.8430000-07:00|0B7C|3| +37|2023-10-06T21:16:14.8870000-07:00|10FF0003|Gegehi Gehi|000199EE|32093|51669|2400|10000|0||88.32|96.88|0.00|-2.38|2300|0|0|01|030004D7|0|41A00000|| +26|2023-10-06T21:16:14.8870000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +39|2023-10-06T21:16:14.8870000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|5600|10000|||83.21|92.16|0.00|-3.11| +39|2023-10-06T21:16:14.8870000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|2900|10000|||84.93|98.42|0.00|3.06| +261|2023-10-06T21:16:14.4930000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:16:14.9760000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||82.63|93.63|0.00|-2.62| +39|2023-10-06T21:16:14.9760000-07:00|10FF0006|Wowobora Gogobora|52074|57266|6500|10000|||82.27|95.63|0.00|-2.89| +37|2023-10-06T21:16:15.0210000-07:00|10FF000A|Dukaro Nezikaro|000199EE|57941|57941|3400|10000|18||85.36|93.24|0.00|2.29|1E01|0|0|01|08000511|0|41A00000|| +26|2023-10-06T21:16:15.0210000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|57941|51669| +261|2023-10-06T21:16:14.5880000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:16:14.5880000-07:00|Remove|40022B19| +21|2023-10-06T21:16:15.0650000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|32093|51669|2400|10000|||87.22|95.13|0.00|-2.42|32093|51669|2400|10000|||87.22|95.13|0.00|-2.42|000199F5|0|1| +38|2023-10-06T21:16:15.0650000-07:00|10FF0003|Gegehi Gehi|005A5A23|32093|51669|2400|10000|0||87.22|95.13|0.00|-2.42|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:15.0650000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|51669|51669| +37|2023-10-06T21:16:15.1090000-07:00|40022472|Zeromus|000199EF|22175606||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:15.1090000-07:00|40022472|Zeromus|000199F2|22174338||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:15.1090000-07:00|40022472|Zeromus|000199F3|22171366||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:15.1540000-07:00|10FF0001|Sesuga Sapisuga|000199EE|90349|90349|5600|10000|19||82.99|91.04|0.00|2.96|1302|0|0|01|05000511|0|41A00000|| +26|2023-10-06T21:16:15.1540000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|90349|51669| +37|2023-10-06T21:16:15.1540000-07:00|10FF0003|Gegehi Gehi|000199EE|32093|51669|2400|10000|0||87.22|95.13|0.00|-2.42|2302|0|0|01|050007B3|06|C1700000|| +261|2023-10-06T21:16:14.8150000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:16:14.8150000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:16:15.2430000-07:00|40022472|Zeromus|000199EC|22163226||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:15.2430000-07:00|10FF0001|Sesuga Sapisuga|000199EC|90349|90349|6000|10000|19||83.11|90.39|0.00|2.96|1300|0|0|0| +37|2023-10-06T21:16:15.2880000-07:00|10FF0008|Kokosaze Lulusaze|000199EE|63151|63151|10000|10000|16||82.88|93.53|0.00|-2.43|1F03|0|0|01|03000511|0|41A00000|| +26|2023-10-06T21:16:15.2880000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|63151|51669| +37|2023-10-06T21:16:15.2880000-07:00|10FF0003|Gegehi Gehi|000199EE|32093|51669|2400|10000|0||86.25|94.24|0.00|-2.22|2303|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T21:16:15.2880000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.54|000199F6|0|0| +38|2023-10-06T21:16:15.2880000-07:00|40022B29|Automaton Queen|005A5A00|59967|59967|10000|10000|0||94.22|97.04|0.00|-1.36|0|0|0||||||||||||| +26|2023-10-06T21:16:15.2880000-07:00|30|Well Fed|1490.92|10FF0008|Kokosaze Lulusaze|40022B29|Automaton Queen|2964|59967|63151| +26|2023-10-06T21:16:15.2880000-07:00|441|HP Penalty|9999.00|E0000000||40022B29|Automaton Queen|00|59967|| +26|2023-10-06T21:16:15.2880000-07:00|A8F|Searing Light|4.15|10FF0006|Wowobora Gogobora|40022B29|Automaton Queen|00|59967|57266| +26|2023-10-06T21:16:15.2880000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40022B29|Automaton Queen|00|59967|51669| +21|2023-10-06T21:16:15.3320000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16730000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|22163226|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||82.22|91.63|0.00|-2.83|000199F7|0|1| +21|2023-10-06T21:16:15.3320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22163226|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|6000|10000|||83.14|90.25|0.00|2.96|000199F8|0|1| +31|2023-10-06T21:16:15.3320000-07:00|10FF0001||||| +37|2023-10-06T21:16:15.3770000-07:00|40022472|Zeromus|000199F1|22153107||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:15.3770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2900|10000|0||84.40|98.07|-0.02|-2.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:15.3770000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:16:15.3770000-07:00|10FF0003|Gegehi Gehi|005A5A23|32093|51669|2400|10000|0||86.25|94.24|0.00|-2.22|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:15.3770000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:16:15.3770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3400|10000|18||85.22|93.06|-0.02|2.29|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:15.3770000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +261|2023-10-06T21:16:15.0390000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:16:15.4220000-07:00|10FF0006|Wowobora Gogobora|000199EE|52074|57266|6500|10000|0||81.95|95.12|0.00|-2.93|1B04|0|0|01|05000511|0|41A00000|| +26|2023-10-06T21:16:15.4220000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|57266|51669| +37|2023-10-06T21:16:15.4220000-07:00|10FF0003|Gegehi Gehi|000199EE|32093|51669|2400|10000|0||85.77|93.94|0.00|-2.22|2304|0|0|01|050007B3|06|C1700000|| +38|2023-10-06T21:16:15.4220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||82.11|90.95|0.00|2.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:15.4220000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:16:15.4220000-07:00|40022B28|Carbuncle|005A5A00|54388|54388|10000|10000|0||86.27|95.87|0.00|-1.61|0|0|0||||||||||||| +26|2023-10-06T21:16:15.4220000-07:00|A8F|Searing Light|4.01|10FF0006|Wowobora Gogobora|40022B28|Carbuncle|00|54388|57266| +26|2023-10-06T21:16:15.4220000-07:00|30|Well Fed|1497.85|10FF0006|Wowobora Gogobora|40022B28|Carbuncle|2964|54388|57266| +26|2023-10-06T21:16:15.4220000-07:00|441|HP Penalty|9999.00|E0000000||40022B28|Carbuncle|00|54388|| +26|2023-10-06T21:16:15.4220000-07:00|511|Embolden|19.95|10FF0003|Gegehi Gehi|40022B28|Carbuncle|00|54388|51669| +38|2023-10-06T21:16:15.4220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||82.46|92.93|0.00|-2.47|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:15.4220000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:16:15.4220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52074|57266|6500|10000|0||81.95|95.12|0.00|-2.93|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:15.4220000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:16:15.4220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6000|10000|19||83.09|90.03|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:15.4220000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +37|2023-10-06T21:16:15.4650000-07:00|10FF0003|Gegehi Gehi|000199F5|32093|51669|2400|10000|0||85.77|93.94|0.00|-2.22|2300|0|0|01|050007B3|06|41700000|| +38|2023-10-06T21:16:15.4650000-07:00|10FF0003|Gegehi Gehi|005A5A23|32093|51669|2400|10000|0||85.77|93.94|0.00|-2.22|0|0|0||||||||||||||||||| +21|2023-10-06T21:16:15.5090000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|20D90000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|32093|51669|2400|10000|||85.36|93.48|0.00|-2.39|54201|54201|10000|10000|||100.36|97.55|0.00|-2.90|000199F9|0|1| +21|2023-10-06T21:16:15.5090000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22153107|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||82.06|92.36|0.00|-2.51|000199FA|0|1| +37|2023-10-06T21:16:15.5540000-07:00|10FF0004|Buhojaqe Zijaqe|000199EE|57078|57078|2900|10000|0||84.16|98.09|0.00|-1.86|1C05|0|0|01|03000511|0|41A00000|| +26|2023-10-06T21:16:15.5540000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|57078|51669| +21|2023-10-06T21:16:15.5540000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|1140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22153107|40478540|10000|10000|||100.00|80.10|0.00|0.00|52074|57266|6500|10000|||81.93|94.75|0.00|-2.94|000199FB|0|1| +38|2023-10-06T21:16:15.5540000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-2.90|0|0|0||||||||||||| +26|2023-10-06T21:16:15.5540000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002284A|Ruby Carbuncle|00|54201|51669| +261|2023-10-06T21:16:15.2450000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:16:15.2450000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:16:15.6430000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|315C0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|22153107|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.86|91.66|0.00|-2.92|000199FC|0|1| +37|2023-10-06T21:16:15.6870000-07:00|10FF0007|Kehabiqo Febiqo|000199EE|90890|90890|10000|10000|19||81.90|89.59|0.00|2.42|1506|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:16:15.6870000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|90890|51669| +21|2023-10-06T21:16:15.6870000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22153107|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|2900|10000|||84.02|98.01|0.00|-1.93|000199FD|0|1| +21|2023-10-06T21:16:15.7750000-07:00|40022490|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.54|000199FE|0|0| +261|2023-10-06T21:16:15.5240000-07:00|Change|40022B28||||||||| +37|2023-10-06T21:16:15.8650000-07:00|40022472|Zeromus|000199F7|22147360||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:15.8650000-07:00|40022472|Zeromus|000199F8|22145966||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:15.9540000-07:00|10FF0003|Gegehi Gehi|32609|51669|2600|10000|||84.23|92.24|0.00|-2.95| +39|2023-10-06T21:16:15.9980000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|3600|10000|||84.05|91.04|0.00|2.86| +261|2023-10-06T21:16:15.6140000-07:00|Change|10FF000A||||||||||| +21|2023-10-06T21:16:16.0420000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022472|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22145966|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|2900|10000|||83.41|96.39|0.00|-2.96|000199FF|0|1| +261|2023-10-06T21:16:15.7100000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:16:16.0870000-07:00|40022472|Zeromus|000199FB|22145690||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:16.0870000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|57941|57941|3600|10000|||83.51|90.84|0.00|3.00|57941|57941|3600|10000|||83.51|90.84|0.00|3.00|00019A00|0|1| +38|2023-10-06T21:16:16.0870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3600|10000|18||83.51|90.84|0.00|3.00|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:16.0870000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|57941|57941| +26|2023-10-06T21:16:16.0870000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +38|2023-10-06T21:16:16.1310000-07:00|40022B2B||005A5A00|54932|54932|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:16:16.1320000-07:00|40022B2B||005A5A00|54932|54932|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T21:16:16.1770000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|376C0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|22145966|40478540|10000|10000|||100.00|80.10|0.00|0.00|52074|57266|6500|10000|||82.09|90.16|0.00|3.06|00019A01|0|1| +38|2023-10-06T21:16:16.1770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52074|57266|6200|10000|0||82.09|90.16|0.00|3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:16.1770000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:16:16.2230000-07:00|40022472|Zeromus|000199FD|22145531||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:16.2230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|998|63151|63151|10000|10000|||81.73|90.62|0.00|2.29|10FF0004|Buhojaqe Zijaqe|0|57078|57078|2900|10000|||83.24|95.60|0.00|2.30| +38|2023-10-06T21:16:16.2230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||81.73|90.62|0.00|2.29|0|0|0|||||||||||||||||||||||||||| +03|2023-10-06T21:16:15.8320000-07:00|40022B2B|Bunshin|00|5A|10FF000A|00||8313|10897|54932|54932|10000|10000|||82.95|88.92|0.00|0.02| +261|2023-10-06T21:16:15.8320000-07:00|Add|40022B2B||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:15.8320000-07:00|Remove|40022B26| +37|2023-10-06T21:16:16.2660000-07:00|40022472|Zeromus|000199FA|22142993||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:16.2660000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9AB|57941|57941|3600|10000|||83.25|90.78|0.00|-3.12|10FF0003|Gegehi Gehi|0|32609|51669|2600|10000|||83.40|90.27|0.00|-3.08| +38|2023-10-06T21:16:16.2660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3600|10000|18||83.25|90.78|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:15.9460000-07:00|Change|40022B2B||| +37|2023-10-06T21:16:16.3090000-07:00|10FF0003|Gegehi Gehi|000199F9|41018||||||83.40|90.27|0.00|-3.08| +261|2023-10-06T21:16:16.0590000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:16:16.4020000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|ECF|57078|57078|2900|10000|||83.25|94.76|0.00|2.68|10FF0004|Buhojaqe Zijaqe|0|57078|57078|2900|10000|||83.25|94.76|0.00|2.68| +38|2023-10-06T21:16:16.4020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2900|10000|0||83.25|94.76|0.00|2.68|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:16.4430000-07:00|40022472|Zeromus|000199FC|22130357||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:16.4440000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|F7D0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|22130357|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|6000|10000|||82.09|86.38|0.00|2.99|00019A02|0|1| +24|2023-10-06T21:16:16.4890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9EC|90890|90890|10000|10000|||81.56|87.15|0.00|-3.06|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-2.01| +24|2023-10-06T21:16:16.4890000-07:00|10FF0006|Wowobora Gogobora|HoT|0|EF9|52074|57266|6200|10000|||82.10|89.46|0.00|2.04|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-2.01| +38|2023-10-06T21:16:16.4890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|19||81.56|87.15|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:16.4890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|55907|57266|6200|10000|0||82.10|89.46|0.00|2.04|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:16:16.1700000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:16:16.5770000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|94E|90349|90349|6000|10000|||82.09|86.38|0.00|2.99|10FF0004|Buhojaqe Zijaqe|0|57078|57078|2900|10000|||83.30|94.41|0.00|2.92| +38|2023-10-06T21:16:16.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6000|10000|19||82.09|86.38|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:16.4050000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:16:16.7550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|6AC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22130357|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3600|10000|||82.87|90.69|0.00|3.06|00019A03|0|1| +21|2023-10-06T21:16:16.7990000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|452003|297E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22130357|40478540|10000|10000|||100.00|80.10|0.00|0.00|55907|57266|6200|10000|||82.11|89.26|-0.01|2.04|00019A04|0|1| +38|2023-10-06T21:16:16.7990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|55907|57266|6200|10000|0||82.11|89.26|-0.01|2.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:16.7990000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:16:16.8440000-07:00|40022472|Zeromus|00019A01|22116169||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:16.8440000-07:00|40022472|Zeromus|000199FF|22116169|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04C5|0|41700000|| +26|2023-10-06T21:16:16.8440000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +37|2023-10-06T21:16:16.8440000-07:00|10FF000A|Dukaro Nezikaro|00019A00|57941|57941|3600|10000|18||82.67|90.66|-0.02|3.03|1E00|0|0|02|030007A2|05|41F00000|||||| +38|2023-10-06T21:16:16.8440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3600|10000|18||82.67|90.66|-0.02|3.03|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:17.0660000-07:00|40022472|Zeromus|00019A02|22112204||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:16.7230000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:16:17.1550000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40022472|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|22112204|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3600|10000|||82.42|90.63|0.00|3.02|00019A05|0|1| +38|2023-10-06T21:16:17.1550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3600|10000|18||82.42|90.63|0.00|3.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:17.1550000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +261|2023-10-06T21:16:16.7230000-07:00|Change|40022B2B||||||||||| +21|2023-10-06T21:16:17.2440000-07:00|40022B2B|Bunshin|64AF|Phantom Kamaitachi|40022472|Zeromus|350003|3D970000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|22112204|40478540|10000|10000|||100.00|80.10|0.00|0.00|54932|54932|10000|10000|||82.18|90.61|0.00|2.10|00019A06|0|1| +261|2023-10-06T21:16:16.8420000-07:00|Change|40022B2B||| +37|2023-10-06T21:16:17.2890000-07:00|40022472|Zeromus|00019A03|22110496||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:16:17.3790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|82.29|89.42|0.00|-3.07| +261|2023-10-06T21:16:17.0650000-07:00|Change|40022B28||||||||| +21|2023-10-06T21:16:17.4230000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22110496|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||80.98|82.53|0.00|-2.97|00019A07|0|1| +21|2023-10-06T21:16:17.4670000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55907|57266|6200|10000|||81.95|88.99|0.00|0.84|55907|57266|6200|10000|||81.95|88.99|0.00|0.84|00019A08|0|1| +39|2023-10-06T21:16:17.5100000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12| +37|2023-10-06T21:16:17.5560000-07:00|40022472|Zeromus|00019A04|22099874||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:17.6000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|9130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22099874|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|6000|10000|||82.09|86.38|0.00|2.99|00019A09|0|1| +31|2023-10-06T21:16:17.6000000-07:00|10FF0001||||| +261|2023-10-06T21:16:17.3690000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:16:17.7340000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||81.71|90.44|0.00|2.09| +38|2023-10-06T21:16:17.7340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||80.95|82.38|0.00|-2.95|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:17.7340000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +24|2023-10-06T21:16:17.7790000-07:00|40022472|Zeromus|DoT|0|EE9|22099874|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:16:17.7790000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|3C900000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|22099874|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||80.95|82.38|0.00|-2.95|00019A0A|0|1| +38|2023-10-06T21:16:17.7790000-07:00|40022472|Zeromus|005A5A00|22096057|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:17.7790000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +39|2023-10-06T21:16:17.8680000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|6200|10000|||82.09|86.38|0.00|2.99| +36|2023-10-06T21:16:17.8680000-07:00|0C58|3| +261|2023-10-06T21:16:17.4670000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:16:17.9120000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|3100|10000|||82.44|87.85|0.00|1.99| +37|2023-10-06T21:16:17.9580000-07:00|40022472|Zeromus|00019A07|22092979||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:17.9580000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|756003|412B0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|22096057|40478540|10000|10000|||100.00|80.10|0.00|0.00|41018|51669|2600|10000|||83.27|85.06|0.00|2.73|00019A0B|0|1| +21|2023-10-06T21:16:17.9580000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22096057|40478540|10000|10000|||100.00|80.10|0.00|0.00|41018|51669|2600|10000|||83.27|85.06|0.00|2.73|00019A0C|0|1| +38|2023-10-06T21:16:17.9580000-07:00|10FF0003|Gegehi Gehi|005A5A23|41018|51669|2600|10000|0||83.27|85.06|0.00|2.73|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:17.9580000-07:00|7B3|Manafication|12.47|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|51669|51669| +39|2023-10-06T21:16:18.0020000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||80.95|82.38|0.00|1.69| +39|2023-10-06T21:16:18.0020000-07:00|10FF0006|Wowobora Gogobora|56479|57266|6400|10000|||81.46|87.66|0.00|-2.04| +261|2023-10-06T21:16:17.8020000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:16:18.0460000-07:00|10FF0009|Zewo Negiwo|005A5A18|11364|56823|2000|10000|0||101.28|96.47|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:18.0460000-07:00|94|Raise|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|08|56823|57078| +26|2023-10-06T21:16:18.0460000-07:00|2B|Weakness|100.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +26|2023-10-06T21:16:18.0460000-07:00|1A2|Transcendent|5.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +37|2023-10-06T21:16:18.0910000-07:00|10FF0006|Wowobora Gogobora|00019A08|56479|57266|6400|10000|0||81.64|87.23|0.00|-2.53|1B00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:16:18.0910000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:16:17.8020000-07:00|Change|10FF0009||||| +37|2023-10-06T21:16:18.1350000-07:00|40022472|Zeromus|00019A09|22090656||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:18.1350000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|40380000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|22092979|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.71|90.44|0.00|2.09|00019A0D|0|1| +21|2023-10-06T21:16:18.1800000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|C830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22092979|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.71|90.44|0.00|2.09|00019A0E|0|1| +261|2023-10-06T21:16:17.9200000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:16:18.2250000-07:00|40022472|Zeromus|005A5A00|22090656|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:16:18.2250000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +39|2023-10-06T21:16:18.3140000-07:00|40022B28|Carbuncle|54388|54388|10000|10000|||81.23|90.63|0.00|-2.61| +21|2023-10-06T21:16:18.3140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|532E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|22090656|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3100|10000|||82.44|87.85|0.00|1.99|00019A0F|0|1| +21|2023-10-06T21:16:18.3580000-07:00|40022B29|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|22A20000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|22090656|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||94.19|97.03|0.00|-1.90|00019A10|0|1| +261|2023-10-06T21:16:18.0350000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:16:18.1470000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:18.4030000-07:00|40022472|Zeromus|00019A0A|22075152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:18.4920000-07:00|40022472|Zeromus|00019A0C|22075151||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:18.2430000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:16:18.5810000-07:00|40022472|Zeromus|00019A0B|22058468||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:18.6260000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|22075151|40478540|10000|10000|||100.00|80.10|0.00|0.00|56479|57266|6400|10000|||81.99|86.38|0.00|2.76|00019A11|0|1| +38|2023-10-06T21:16:18.6260000-07:00|40022B28|Carbuncle|005A5A00|0|54388|0|10000|0||81.36|90.41|0.00|-2.78|0|0|0|||||||||| +30|2023-10-06T21:16:18.6260000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022B28|Carbuncle|00|54388|57266| +30|2023-10-06T21:16:18.6260000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022B28|Carbuncle|00|54388|51669| +38|2023-10-06T21:16:18.6260000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56479|57266|6400|10000|0||81.99|86.38|0.00|2.76|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:18.6260000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:16:18.6710000-07:00|40022B34||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||||||||| +38|2023-10-06T21:16:18.6710000-07:00|40022B34||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||||||||| +261|2023-10-06T21:16:18.3350000-07:00|Change|40022B28||||||||| +261|2023-10-06T21:16:18.3350000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:16:18.7150000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|1050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22058468|40478540|10000|10000|||100.00|80.10|0.00|0.00|56479|57266|6400|10000|||81.99|86.38|0.00|1.91|00019A12|0|1| +37|2023-10-06T21:16:18.8030000-07:00|40022472|Zeromus|00019A06|22042701||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:18.8030000-07:00|40022B29|Automaton Queen|59967|59967|10000|10000|||94.19|97.03|0.00|2.85| +21|2023-10-06T21:16:18.8470000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|15620000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|41018|51669|2600|10000|||82.38|84.21|0.00|2.75|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019A13|0|1| +37|2023-10-06T21:16:18.9370000-07:00|40022472|Zeromus|00019A0D|22026261||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:18.9370000-07:00|40022472|Zeromus|00019A0E|22023058||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:18.9370000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|178D0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|22042701|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|6200|10000|||82.08|85.11|0.00|1.84|00019A14|0|1| +21|2023-10-06T21:16:18.9370000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|51A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22042701|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3600|10000|||80.94|85.22|0.00|-3.07|00019A15|0|1| +39|2023-10-06T21:16:18.9810000-07:00|10FF0003|Gegehi Gehi|41534|51669|2800|10000|||82.38|84.21|0.00|2.75| +39|2023-10-06T21:16:18.9810000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|3800|10000|||80.99|85.10|-0.02|2.60| +21|2023-10-06T21:16:18.9810000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|2700|10000|||82.09|87.07|0.00|-2.88|57078|57078|2700|10000|||82.09|87.07|0.00|-2.88|00019A16|0|1| +03|2023-10-06T21:16:18.6300000-07:00|40022B34|Emerald Garuda|00|5A|10FF0006|00||10263|13506|54388|54388|10000|10000|||80.91|88.65|0.00|1.91| +261|2023-10-06T21:16:18.6300000-07:00|Add|40022B34||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:19.1140000-07:00|40022472|Zeromus|00019A10|22014192||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:19.1140000-07:00|40022472|Zeromus|00019A0F|21992898||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:18.7400000-07:00|Change|40022B34||||| +24|2023-10-06T21:16:19.2040000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9E0|63151|63151|10000|10000|||81.28|86.06|0.00|2.88|10FF0004|Buhojaqe Zijaqe|0|57078|57078|2700|10000|||81.54|85.77|0.00|-3.07| +21|2023-10-06T21:16:19.2040000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|4AD40000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||81.15|81.96|0.00|1.77|21992898|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019A17|0|1| +38|2023-10-06T21:16:19.2040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||81.28|86.06|0.00|2.88|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:19.2480000-07:00|40022472|Zeromus|00019A12|21992637||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:19.2480000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|963|57941|57941|3800|10000|||81.05|85.13|-0.02|2.58|10FF0003|Gegehi Gehi|0|41534|51669|2800|10000|||82.38|84.21|0.00|2.75| +38|2023-10-06T21:16:19.2480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3800|10000|18||81.05|85.13|-0.02|2.58|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:16:18.9680000-07:00|Change|10FF000A||||||||||| +24|2023-10-06T21:16:19.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9CC|57078|57078|2700|10000|||81.61|85.75|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|57078|57078|2700|10000|||81.61|85.75|0.00|-3.14| +21|2023-10-06T21:16:19.3820000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|10FB0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|21992637|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3800|10000|||81.17|85.24|0.00|2.53|00019A18|0|1| +38|2023-10-06T21:16:19.3820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2700|10000|0||81.61|85.75|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:19.3820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3800|10000|18||81.17|85.24|0.00|2.53|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:19.3820000-07:00|7A2|Bunshin|27.42|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|57941|57941| +261|2023-10-06T21:16:18.9680000-07:00|Change|40022B2B||||||||| +21|2023-10-06T21:16:19.4270000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37750003|26FA0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|21992637|40478540|10000|10000|||100.00|80.10|0.00|0.00|41534|51669|2800|10000|||82.38|84.21|0.00|2.75|00019A19|0|1| +38|2023-10-06T21:16:19.4270000-07:00|10FF0003|Gegehi Gehi|005A5A23|41534|51669|2800|10000|0||82.38|84.21|0.00|2.75|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:19.4270000-07:00|7B3|Manafication|11.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|51669|51669| +37|2023-10-06T21:16:19.4710000-07:00|40022472|Zeromus|00019A15|21991331||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:19.4710000-07:00|40022B2B|Bunshin|4406|Gust Slash|40022472|Zeromus|710003|10620000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|21992637|40478540|10000|10000|||100.00|80.10|0.00|0.00|54932|54932|10000|10000|||81.50|85.53|0.00|1.86|00019A1A|0|1| +24|2023-10-06T21:16:19.4720000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1032|90890|90890|10000|10000|||81.16|81.93|0.00|1.77|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-2.34| +24|2023-10-06T21:16:19.4720000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9B5|56479|57266|6400|10000|||81.99|86.38|0.00|1.91|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-2.34| +38|2023-10-06T21:16:19.4720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||81.16|81.93|0.00|1.77|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:19.4720000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|90890|57266| +38|2023-10-06T21:16:19.4720000-07:00|40022B29|Automaton Queen|005A5A00|59967|59967|10000|10000|0||94.19|97.03|0.00|2.81|0|0|0||||||||||||| +30|2023-10-06T21:16:19.4720000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022B29|Automaton Queen|00|59967|57266| +38|2023-10-06T21:16:19.4720000-07:00|40022B34|Emerald Garuda|005A5A00|54388|54388|10000|10000|0||80.91|88.65|0.00|1.91|0|0|0||||||||||||| +26|2023-10-06T21:16:19.4720000-07:00|30|Well Fed|1493.80|10FF0006|Wowobora Gogobora|40022B34|Emerald Garuda|2964|54388|57266| +26|2023-10-06T21:16:19.4720000-07:00|511|Embolden|15.90|10FF0003|Gegehi Gehi|40022B34|Emerald Garuda|00|54388|51669| +26|2023-10-06T21:16:19.4720000-07:00|441|HP Penalty|9999.00|E0000000||40022B34|Emerald Garuda|00|54388|| +38|2023-10-06T21:16:19.4720000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.36|97.55|0.00|-2.34|0|0|0||||||||||||| +30|2023-10-06T21:16:19.4720000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002284A|Ruby Carbuncle|00|54201|57266| +38|2023-10-06T21:16:19.4720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||81.58|85.70|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:19.4720000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|63151|57266| +38|2023-10-06T21:16:19.4720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6950|10000|0||81.99|86.38|0.00|1.91|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:19.4720000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:16:19.4720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6200|10000|19||82.08|85.11|0.00|1.84|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:19.4720000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|90349|57266| +38|2023-10-06T21:16:19.4720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2700|10000|0||81.68|85.74|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:19.4720000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|57078|57266| +261|2023-10-06T21:16:19.0840000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:16:19.5610000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9E3|90349|90349|6200|10000|||82.08|85.11|0.00|1.84|10FF0004|Buhojaqe Zijaqe|0|57078|57078|2700|10000|||81.75|85.72|0.00|3.02| +38|2023-10-06T21:16:19.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6200|10000|19||82.08|85.11|0.00|1.84|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:19.2070000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:16:19.6050000-07:00|10FF0004|Buhojaqe Zijaqe|00019A16|57078|57078|2700|10000|0||81.75|85.72|0.00|3.02|1C00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:16:19.6050000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +261|2023-10-06T21:16:19.3070000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:16:19.6500000-07:00|10FF0003|Gegehi Gehi|00019A13|47008||||||82.38|84.21|0.00|1.80| +37|2023-10-06T21:16:19.6500000-07:00|10FF0006|Wowobora Gogobora|00019A11|57266|57266|6950|10000|0||81.99|86.38|0.00|1.91|1B00|0|0|01|08000AA5|0|0|| +38|2023-10-06T21:16:19.6500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6950|10000|0||81.99|86.38|0.00|1.91|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:19.6950000-07:00|40022472|Zeromus|00019A14|21985302||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:19.6950000-07:00|10FF0001|Sesuga Sapisuga|00019A14|90349|90349|7200|10000|19||82.08|85.11|0.00|1.84|1300|0|0|0| +261|2023-10-06T21:16:19.3970000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:16:19.3970000-07:00|Change|40022B34||| +37|2023-10-06T21:16:19.7840000-07:00|40022472|Zeromus|00019A18|21980955||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:19.8290000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21985302|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|2700|10000|||81.80|85.71|0.00|2.97|00019A1B|0|1| +37|2023-10-06T21:16:19.8730000-07:00|40022472|Zeromus|00019A1A|21976761||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:19.8730000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21980955|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7200|10000|||82.08|85.11|0.00|1.84|00019A1C|0|1| +31|2023-10-06T21:16:19.8730000-07:00|10FF0001||||| +21|2023-10-06T21:16:19.9160000-07:00|40022B29|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|3AD30000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|21980955|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||94.19|97.03|0.00|2.81|00019A1D|0|1| +20|2023-10-06T21:16:19.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|81.80|85.71|0.00|2.97| +261|2023-10-06T21:16:19.5870000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:16:20.0050000-07:00|10FF0007|Kehabiqo Febiqo|00019A17|71734||||||81.16|81.93|0.00|1.77| +37|2023-10-06T21:16:20.0500000-07:00|40022472|Zeromus|00019A19|21966783||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:19.8180000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:16:20.2290000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|321A0000|143E|340000|4|17828000|11B|2A8000|0|0|0|0|0|0|0|0|21966783|40478540|10000|10000|||100.00|80.10|0.00|0.00|71734|90890|10000|10000|||81.16|81.93|0.00|1.77|00019A1E|0|1| +37|2023-10-06T21:16:20.3630000-07:00|40022472|Zeromus|00019A1B|21966617||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:20.4070000-07:00|40022472|Zeromus|00019A1C|21965239||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:20.5410000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-2.75| +39|2023-10-06T21:16:20.5860000-07:00|10FF0009|Zewo Negiwo|11932|56823|2221|10000|||114.26|94.57|0.32|0.00| +21|2023-10-06T21:16:20.6310000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|359D0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|21965239|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.62|85.65|0.00|3.02|00019A1F|0|1| +37|2023-10-06T21:16:20.6760000-07:00|40022472|Zeromus|00019A1D|21950180||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:20.7200000-07:00|40022B34|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|350003|64FC0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|21950180|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||80.91|88.65|0.00|1.91|00019A20|0|1| +39|2023-10-06T21:16:20.7200000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||81.62|85.65|0.00|1.87| +261|2023-10-06T21:16:20.3530000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:16:20.3530000-07:00|Change|40022B28||||||||| +24|2023-10-06T21:16:20.7650000-07:00|40022472|Zeromus|DoT|0|137B|21950180|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:16:20.7650000-07:00|40022472|Zeromus|005A5A00|21945193|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:20.7650000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +21|2023-10-06T21:16:20.8090000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21945193|40478540|10000|10000|||100.00|80.10|0.00|0.00|71734|90890|10000|10000|||81.16|81.93|0.00|1.67|00019A21|0|1| +21|2023-10-06T21:16:20.8540000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|BB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21945193|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.62|85.65|0.00|1.87|00019A22|0|1| +36|2023-10-06T21:16:20.8540000-07:00|0D34|3| +39|2023-10-06T21:16:20.8980000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|7400|10000|||82.08|85.11|0.00|1.84| +39|2023-10-06T21:16:20.8980000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|2900|10000|||81.80|85.71|0.00|2.97| +261|2023-10-06T21:16:20.5410000-07:00|Change|10FF0001||| +21|2023-10-06T21:16:20.9430000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A750003|3B560000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|21945193|40478540|10000|10000|||100.00|80.10|0.00|0.00|47008|51669|2800|10000|||82.38|84.21|0.00|1.80|00019A23|0|1| +38|2023-10-06T21:16:20.9430000-07:00|10FF0003|Gegehi Gehi|005A5A23|47008|51669|2800|10000|0||82.38|84.21|0.00|1.80|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:20.9430000-07:00|7B3|Manafication|9.48|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|51669|51669| +39|2023-10-06T21:16:20.9870000-07:00|10FF0007|Kehabiqo Febiqo|72642|90890|10000|10000|||81.16|81.93|0.00|1.67| +39|2023-10-06T21:16:20.9870000-07:00|10FF0006|Wowobora Gogobora|57266|57266|7150|10000|||81.99|86.38|0.00|1.91| +261|2023-10-06T21:16:20.6360000-07:00|Change|10FF0006||| +261|2023-10-06T21:16:20.6360000-07:00|Change|10FF0004||||| +21|2023-10-06T21:16:21.1210000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|26930000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|21945193|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|7150|10000|||81.99|86.38|0.00|1.91|00019A24|0|1| +21|2023-10-06T21:16:21.1210000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|4130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21945193|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|3800|10000|||81.70|85.92|0.00|2.10|00019A25|0|1| +38|2023-10-06T21:16:21.1660000-07:00|10FF0009|Zewo Negiwo|005A5A18|0|56823|0|10000|0||119.28|93.83|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:21.1660000-07:00|1A2|Transcendent|0.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +37|2023-10-06T21:16:21.3430000-07:00|40022472|Zeromus|00019A21|21942069||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:21.3870000-07:00|40022472|Zeromus|00019A1F|21928344||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:16:21.3880000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19330000|510E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57078|57078|2900|10000|||81.80|85.71|0.00|2.97|57078|57078|2900|10000|||81.80|85.71|0.00|2.97|00019A26|0|7| +22|2023-10-06T21:16:21.3880000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19C20000|360E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||81.62|85.65|0.00|1.87|57078|57078|2900|10000|||81.80|85.71|0.00|2.97|00019A26|1|7| +22|2023-10-06T21:16:21.3880000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|29AB0000|AB000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90349|90349|7400|10000|||82.08|85.11|0.00|1.84|57078|57078|2900|10000|||81.80|85.71|0.00|2.97|00019A26|2|7| +22|2023-10-06T21:16:21.3880000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19640000|A00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57266|57266|6850|10000|||81.99|86.39|0.00|1.51|57078|57078|2900|10000|||81.80|85.71|0.00|2.97|00019A26|3|7| +22|2023-10-06T21:16:21.3880000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|18F80000|F3000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57941|57941|3800|10000|||82.48|87.49|0.00|2.06|57078|57078|2900|10000|||81.80|85.71|0.00|2.97|00019A26|4|7| +22|2023-10-06T21:16:21.3880000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|29D50000|EE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|47008|51669|2800|10000|||82.38|84.21|0.00|1.80|57078|57078|2900|10000|||81.80|85.71|0.00|2.97|00019A26|5|7| +22|2023-10-06T21:16:21.3880000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|18F50000|EE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|72642|90890|10000|10000|||81.16|81.93|0.00|1.67|57078|57078|2900|10000|||81.80|85.71|0.00|2.97|00019A26|6|7| +38|2023-10-06T21:16:21.3880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|72642|90890|10000|10000|11||81.16|81.93|0.00|1.67|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:21.3880000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:16:21.3880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||81.62|85.65|0.00|1.87|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:21.3880000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:16:21.3880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6850|10000|18||81.99|86.39|0.00|1.51|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:21.3880000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:16:21.3880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|1900|10000|18||81.80|85.71|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:21.3880000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:16:21.3880000-07:00|10FF0003|Gegehi Gehi|005A5A23|47008|51669|2800|10000|33||82.38|84.21|0.00|1.80|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:21.3880000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +261|2023-10-06T21:16:21.0680000-07:00|Change|40022B2B||| +21|2023-10-06T21:16:21.4320000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|1FFC0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|21945193|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7400|10000|||82.08|85.11|0.00|1.84|00019A27|0|1| +21|2023-10-06T21:16:21.4320000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21945193|40478540|10000|10000|||100.00|80.10|0.00|0.00|47008|51669|2800|10000|||82.38|84.21|0.00|1.80|00019A28|0|1| +38|2023-10-06T21:16:21.4320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7400|10000|19||82.08|85.11|0.00|1.84|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:21.4320000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:16:21.4320000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +21|2023-10-06T21:16:21.4760000-07:00|40022B29|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|227E0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|21928344|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||94.19|97.03|0.00|2.81|00019A29|0|1| +261|2023-10-06T21:16:21.1880000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:16:21.6100000-07:00|40022472|Zeromus|00019A22|21925347||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:21.6100000-07:00|40022472|Zeromus|00019A23|21910157||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:21.6550000-07:00|40022472|Zeromus|00019A25|21909114||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:21.6550000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|302A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21928344|40478540|10000|10000|||100.00|80.10|0.00|0.00|47008|51669|2800|10000|||82.38|84.21|0.00|1.80|00019A2A|0|1| +37|2023-10-06T21:16:21.7440000-07:00|40022472|Zeromus|00019A1E|21896288||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:21.7440000-07:00|10FF0007|Kehabiqo Febiqo|00019A1E|78660||||||81.21|81.93|0.00|1.59| +261|2023-10-06T21:16:21.3950000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:16:21.7880000-07:00|40022472|Zeromus|00019A24|21886413||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:21.8330000-07:00|40022B29|Automaton Queen|59967|59967|10000|10000|||94.19|97.03|0.00|2.81| +21|2023-10-06T21:16:21.8330000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|3800|10000|||84.18|89.03|0.00|2.37|57941|57941|3800|10000|||84.18|89.03|0.00|2.37|00019A2B|0|1| +38|2023-10-06T21:16:21.8330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|3800|10000|18||84.18|89.03|0.00|2.37|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:21.8330000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|57941|57941| +21|2023-10-06T21:16:21.8770000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21886413|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|6850|10000|||83.28|88.25|0.00|0.74|00019A2C|0|1| +261|2023-10-06T21:16:21.5830000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:16:21.9660000-07:00|40022472|Zeromus|00019A28|21886412||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:21.9660000-07:00|10FF0003|Gegehi Gehi|47524|51669|3000|10000|||82.37|84.29|0.00|1.63| +261|2023-10-06T21:16:21.5830000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:16:21.6770000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:16:22.0110000-07:00|40022472|Zeromus|00019A20|21860560||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:22.0110000-07:00|40022472|Zeromus|00019A27|21852372||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:22.0110000-07:00|10FF0001|Sesuga Sapisuga|00019A27|90349|90349|7400|10000|19||82.08|85.11|0.00|1.84|1300|0|0|02|0200076E|03|41F00000|||||| +39|2023-10-06T21:16:22.0110000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|4000|10000|||84.67|89.25|-0.02|2.58| +38|2023-10-06T21:16:22.0110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7400|10000|19||82.08|85.11|0.00|1.84|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T21:16:22.1000000-07:00|40022B2B|Bunshin|54932|54932|10000|10000|||81.50|85.53|0.00|1.86| +21|2023-10-06T21:16:22.1440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|8C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21886412|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7400|10000|||82.08|85.11|0.00|1.84|00019A2D|0|1| +38|2023-10-06T21:16:22.1440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||83.25|87.68|0.00|0.88|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:22.1440000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|54201| +31|2023-10-06T21:16:22.1440000-07:00|10FF0001||||| +37|2023-10-06T21:16:22.2340000-07:00|40022472|Zeromus|00019A29|21843542||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:22.2340000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|14400000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|47524|51669|3000|10000|||82.43|84.61|0.00|1.41|54201|54201|10000|10000|||100.36|97.55|0.00|-3.11|00019A2E|0|1| +21|2023-10-06T21:16:22.2340000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|25780000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|78660|90890|10000|10000|||83.54|84.20|0.00|1.52|21852372|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019A2F|0|1| +24|2023-10-06T21:16:22.2780000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9F6|57941|57941|4000|10000|||84.67|89.25|-0.02|2.58|10FF000A|Dukaro Nezikaro|0|57941|57941|4000|10000|||84.67|89.25|-0.02|2.58| +38|2023-10-06T21:16:22.2780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7400|10000|19||82.08|85.11|0.00|1.84|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:22.2780000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|54201| +38|2023-10-06T21:16:22.2780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4000|10000|18||84.67|89.25|-0.02|2.58|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:22.3210000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|4000|10000|||84.67|89.25|-0.02|2.58|57941|57941|4000|10000|||84.67|89.25|-0.02|2.58|00019A30|0|1| +38|2023-10-06T21:16:22.3210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4000|10000|18||84.67|89.25|-0.02|2.58|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:22.3210000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|57941|57941| +261|2023-10-06T21:16:21.9940000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:16:22.4120000-07:00|40022472|Zeromus|00019A2C|21843385||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:22.4120000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F2D|57078|57078|1900|10000|||84.07|88.53|0.00|0.72|10FF0004|Buhojaqe Zijaqe|0|57078|57078|1900|10000|||84.07|88.53|0.00|0.72| +38|2023-10-06T21:16:22.4120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|6850|10000|18||84.70|91.04|0.00|0.44|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:22.4120000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +38|2023-10-06T21:16:22.4120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2450|10000|18||84.07|88.53|0.00|0.72|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:22.5010000-07:00|10FF0004|Buhojaqe Zijaqe|00019A26|57078|57078|2450|10000|18||84.47|88.95|0.00|0.74|1C00|0|0|01|05000129|0|41E772AD|| +24|2023-10-06T21:16:22.5010000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1005|78660|90890|10000|10000|||84.33|85.08|0.00|1.52|4002284A|Ruby Carbuncle|0|54201|54201|10000|10000|||100.36|97.55|0.00|-2.81| +38|2023-10-06T21:16:22.5010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82761|90890|10000|10000|11||84.33|85.08|0.00|1.52|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:22.5010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|7400|10000|18||84.93|91.71|0.00|0.38|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:16:22.5450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4000|10000|18||84.67|89.25|-0.02|2.58|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:22.5450000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|57941|54201| +37|2023-10-06T21:16:22.6340000-07:00|10FF0008|Kokosaze Lulusaze|00019A26|63151|63151|10000|10000|16||85.04|89.59|0.00|0.78|1F01|0|0|01|08000129|0|41E6624A|| +04|2023-10-06T21:16:22.2970000-07:00|40022B28|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||82.14|89.16|0.00|2.59| +21|2023-10-06T21:16:22.6340000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|3ECD0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|21843385|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|2450|10000|||85.00|89.47|0.00|0.76|00019A31|0|1| +261|2023-10-06T21:16:22.2970000-07:00|Remove|40022B28| +37|2023-10-06T21:16:22.6780000-07:00|40022472|Zeromus|00019A2D|21841137||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:22.6780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82761|90890|10000|10000|11||85.35|86.21|0.00|1.52|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:22.6780000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|54201| +261|2023-10-06T21:16:22.2970000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:16:22.7230000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3D650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21843385|40478540|10000|10000|||100.00|80.10|0.00|0.00|82761|90890|10000|10000|||85.35|86.21|0.00|1.52|00019A32|0|1| +37|2023-10-06T21:16:22.8130000-07:00|40022472|Zeromus|00019A2A|21828807||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:16:22.8130000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|85.26|93.53|0.00|0.25| +38|2023-10-06T21:16:22.8130000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2050|10000|18||86.04|90.48|0.00|2.21|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:22.8130000-07:00|13B|Whispering Dawn|0.00|4002284A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +261|2023-10-06T21:16:22.4770000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:16:22.8570000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|4000|10000|||84.67|89.25|-0.02|2.58|57941|57941|4000|10000|||84.67|89.25|-0.02|2.58|00019A33|0|1| +38|2023-10-06T21:16:22.8570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4000|10000|18||84.67|89.25|-0.02|2.58|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:22.8570000-07:00|1F0|Mudra|4.98|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|57941|57941| +261|2023-10-06T21:16:22.4770000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:16:22.4770000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:16:22.9020000-07:00|10FF0006|Wowobora Gogobora|00019A26|57266|57266|7400|10000|18||85.31|93.67|-0.02|0.30|1B03|0|0|01|0129|0|41E43D6C|| +261|2023-10-06T21:16:22.5760000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:16:22.5760000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:16:23.0360000-07:00|10FF0003|Gegehi Gehi|00019A2E|51669||||||85.43|89.47|0.00|0.84| +37|2023-10-06T21:16:23.0360000-07:00|10FF0007|Kehabiqo Febiqo|00019A2F|73169|90890|10000|10000|0||86.53|87.52|0.00|1.72|1500|0|0|01|07000000|0|0|| +21|2023-10-06T21:16:23.0360000-07:00|40022B29|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|3BA60000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|21828807|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||94.19|97.03|0.00|2.81|00019A34|0|1| +38|2023-10-06T21:16:23.0360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|73169|90890|10000|10000|0||86.53|87.52|0.00|1.72|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:16:23.0360000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +21|2023-10-06T21:16:23.1250000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|315C0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|21828807|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||87.75|91.44|0.00|0.96|00019A35|0|1| +261|2023-10-06T21:16:22.7850000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:16:23.1700000-07:00|10FF0003|Gegehi Gehi|00019A26|51669|51669|3000|10000|33||85.85|89.94|-0.02|0.82|2305|0|0|01|01000129|0|41E2188E|| +25|2023-10-06T21:16:23.1700000-07:00|10FF0009|Zewo Negiwo|E0000000|| +21|2023-10-06T21:16:23.1700000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022472|Zeromus|754003|52180000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|21828807|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3000|10000|||85.85|89.94|-0.02|0.82|00019A36|0|1| +38|2023-10-06T21:16:23.1700000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2600|10000|33||85.85|89.94|-0.02|0.82|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:23.1700000-07:00|7B3|Manafication|7.25|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|51669|51669| +26|2023-10-06T21:16:23.1700000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:16:23.3020000-07:00|10FF0007|Kehabiqo Febiqo|00019A26|79558||||||87.21|88.28|0.00|1.57| +21|2023-10-06T21:16:23.3020000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21828807|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4000|10000|||85.03|89.48|0.00|2.58|00019A37|0|1| +37|2023-10-06T21:16:23.3470000-07:00|40022472|Zeromus|00019A32|21813090||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:23.0140000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T21:16:23.3920000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|654003|21970000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|21828807|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4000|10000|||85.03|89.48|0.00|2.58|00019A38|0|1| +38|2023-10-06T21:16:23.3920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4000|10000|18||85.03|89.48|0.00|2.58|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:23.3920000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +30|2023-10-06T21:16:23.3920000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|57941|57941| +39|2023-10-06T21:16:23.5240000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-2.06| +21|2023-10-06T21:16:23.5240000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21813090|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||89.54|92.53|0.00|1.33|00019A39|0|1| +37|2023-10-06T21:16:23.5700000-07:00|40022472|Zeromus|00019A31|21797013||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:23.2180000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:16:23.3110000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:16:23.7040000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||89.78|92.67|0.00|1.23| +24|2023-10-06T21:16:23.7480000-07:00|40022472|Zeromus|DoT|0|C62|21797013|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:16:23.7490000-07:00|40022472|Zeromus|005A5A00|21793843|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:23.7490000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:16:23.7930000-07:00|40022472|Zeromus|00019A34|21778573||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:23.4120000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:23.8370000-07:00|40022472|Zeromus|00019A37|21777578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:23.8370000-07:00|10FF000A|Dukaro Nezikaro|00019A37|57941|57941|4000|10000|18||86.54|90.42|0.00|2.22|1E00|0|0|01|060001FB|0|C1A00000|| +39|2023-10-06T21:16:23.8820000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|7600|10000|||87.60|92.08|0.00|1.01| +39|2023-10-06T21:16:23.8820000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|2250|10000|||91.46|94.28|0.00|0.96| +21|2023-10-06T21:16:23.8820000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|724003|2EB60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21778573|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2600|10000|||88.51|92.60|0.00|1.02|00019A3A|0|1| +36|2023-10-06T21:16:23.8820000-07:00|0E10|3| +37|2023-10-06T21:16:23.9260000-07:00|40022472|Zeromus|00019A35|21764942||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:23.9260000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|712003|4EB10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21777578|40478540|10000|10000|||100.00|80.10|0.00|0.00|79558|90890|10000|10000|||89.67|91.01|0.00|1.52|00019A3B|0|1| +21|2023-10-06T21:16:23.9260000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|26940000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|21777578|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7600|10000|||88.12|92.41|0.00|1.01|00019A3C|0|1| +38|2023-10-06T21:16:23.9260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7600|10000|19||88.12|92.41|0.00|1.01|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:23.9260000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +39|2023-10-06T21:16:23.9710000-07:00|10FF0007|Kehabiqo Febiqo|80466|90890|10000|10000|||89.67|91.01|0.00|1.52| +39|2023-10-06T21:16:23.9710000-07:00|10FF0006|Wowobora Gogobora|57266|57266|7600|10000|||85.47|94.13|0.00|2.34| +261|2023-10-06T21:16:23.6000000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:16:23.6000000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:16:24.1940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|F1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21764942|40478540|10000|10000|||100.00|80.10|0.00|0.00|80466|90890|10000|10000|||90.62|91.00|0.00|2.48|00019A3D|0|1| +261|2023-10-06T21:16:23.9200000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:16:24.2830000-07:00|40022472|Zeromus|00019A39|21762458||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:23.9200000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:16:23.9200000-07:00|Change|40022490||||||||| +37|2023-10-06T21:16:24.3720000-07:00|40022472|Zeromus|00019A38|21753859||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:24.3720000-07:00|10FF000A|Dukaro Nezikaro|00019A38|57941|57941|4000|10000|18||89.73|92.15|0.00|2.58|1E00|0|0|01|060001FB|0|41A00000|| +20|2023-10-06T21:16:24.3720000-07:00|40022472|Zeromus|8B4D|Big Crunch|40022472|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:16:24.3720000-07:00|4002248E|Zeromus|8D32|Big Crunch|10FF0004|Buhojaqe Zijaqe|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:16:24.3720000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:16:24.3720000-07:00|4002248F|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:16:23.9200000-07:00|Change|40022472||||||||||| +20|2023-10-06T21:16:24.3720000-07:00|40022490|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T21:16:24.3720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4000|10000|18||89.73|92.15|0.00|2.58|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:16:23.9200000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:16:24.0360000-07:00|Change|10FF0006||||| +21|2023-10-06T21:16:24.4160000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21762458|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7600|10000|||90.36|93.80|0.00|1.01|00019A3E|0|1| +31|2023-10-06T21:16:24.4160000-07:00|10FF0001||||| +21|2023-10-06T21:16:24.4610000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21762458|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|2250|10000|||93.94|96.20|0.00|0.91|00019A3F|0|1| +20|2023-10-06T21:16:24.5050000-07:00|4002248B|Zeromus|8D32|Big Crunch|10FF0001|Sesuga Sapisuga|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:16:24.5050000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:16:24.5050000-07:00|4002248C|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:16:24.5050000-07:00|4002248D|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:16:24.1470000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:16:24.1470000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:16:24.1470000-07:00|Change|4002248B||||||||||||||| +37|2023-10-06T21:16:24.5490000-07:00|40022472|Zeromus|00019A3B|21733714||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:24.5950000-07:00|40022472|Zeromus|00019A36|21712698||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:24.5950000-07:00|10FF0003|Gegehi Gehi|00019A36|51669|51669|2600|10000|33||88.70|92.82|0.00|1.50|2300|0|0|01|060004D3|0|41F00000|| +21|2023-10-06T21:16:24.5950000-07:00|40022B29|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|3BAC0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|21753859|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||94.19|97.03|0.00|2.81|00019A40|0|1| +20|2023-10-06T21:16:24.5950000-07:00|40022488|Zeromus|8D32|Big Crunch|10FF0006|Wowobora Gogobora|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:16:24.5950000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:16:24.5950000-07:00|40022489|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:16:24.5950000-07:00|4002248A|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T21:16:24.5950000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2600|10000|33||88.70|92.82|0.00|1.50|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:16:24.1470000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:16:24.1470000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:16:24.1470000-07:00|Change|4002248A||||||||||| +261|2023-10-06T21:16:24.2400000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:16:24.2400000-07:00|Change|10FF0004||||||||||| +20|2023-10-06T21:16:24.6830000-07:00|40022485|Zeromus|8D32|Big Crunch|10FF0007|Kehabiqo Febiqo|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:16:24.6830000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:16:24.6830000-07:00|40022486|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:16:24.6830000-07:00|40022487|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:16:24.2400000-07:00|Change|40022486||||||||||| +261|2023-10-06T21:16:24.2400000-07:00|Change|40022485||||||||||||| +261|2023-10-06T21:16:24.2400000-07:00|Change|40022487||||||||||| +37|2023-10-06T21:16:24.7270000-07:00|40022472|Zeromus|00019A3D|21708829||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:24.7280000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57941|57941|4000|10000|||91.92|92.93|0.00|2.71|57941|57941|4000|10000|||91.92|92.93|0.00|2.71|00019A41|0|1| +38|2023-10-06T21:16:24.7280000-07:00|40022B34|Emerald Garuda|005A5A00|0|54388|0|10000|0||80.91|88.65|0.00|1.91|0|0|0||||||||||||| +30|2023-10-06T21:16:24.7280000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022B34|Emerald Garuda|00|54388|51669| +38|2023-10-06T21:16:24.7280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4000|10000|18||91.92|92.93|0.00|2.71|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:24.7280000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +261|2023-10-06T21:16:24.3320000-07:00|Change|40022B34||||| +261|2023-10-06T21:16:24.3320000-07:00|Change|40022B34||||| +38|2023-10-06T21:16:24.7730000-07:00|40022B3B||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:16:24.7730000-07:00|40022B3B||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +20|2023-10-06T21:16:24.7730000-07:00|40022482|Zeromus|8D32|Big Crunch|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:16:24.7730000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:16:24.7730000-07:00|40022483|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:16:24.7730000-07:00|40022484|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T21:16:24.7730000-07:00|40022B29|Automaton Queen|005A5A00|59967|59967|10000|10000|0||94.19|97.03|0.00|2.81|0|0|0||||||||||||| +26|2023-10-06T21:16:24.7730000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022B29|Automaton Queen|01|59967|40478540| +261|2023-10-06T21:16:24.3320000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:16:24.4290000-07:00|Change|40022484||||||||||| +261|2023-10-06T21:16:24.4290000-07:00|Change|40022483||||||||||| +39|2023-10-06T21:16:24.8170000-07:00|40022B29|Automaton Queen|59967|59967|10000|10000|||94.19|97.03|0.00|2.81| +261|2023-10-06T21:16:24.4290000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:16:24.4290000-07:00|Change|40022490||||||||||| +261|2023-10-06T21:16:24.4290000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:16:24.4290000-07:00|Change|10FF0007||||||||| +20|2023-10-06T21:16:24.9080000-07:00|4002247F|Zeromus|8D32|Big Crunch|10FF000A|Dukaro Nezikaro|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:16:24.9080000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|0178|0000|0000|0000| +261|2023-10-06T21:16:24.4290000-07:00|Change|4002247F||||||||||||| +20|2023-10-06T21:16:24.9080000-07:00|40022480|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:16:24.9080000-07:00|40022481|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:16:24.9080000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21708829|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2600|10000|||89.81|94.79|-0.01|1.48|00019A42|0|1| +261|2023-10-06T21:16:24.4290000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:16:24.4290000-07:00|Change|40022481||||||||||| +37|2023-10-06T21:16:24.9520000-07:00|40022472|Zeromus|00019A3E|21707447||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:24.9520000-07:00|10FF0003|Gegehi Gehi|51669|51669|2800|10000|||90.27|95.43|0.00|1.66| +261|2023-10-06T21:16:24.5370000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:16:24.9970000-07:00|40022472|Zeromus|00019A3F|21707281||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:16:24.9970000-07:00|4002247D|Zeromus|8D32|Big Crunch|10FF0003|Gegehi Gehi|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:16:24.9970000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:16:24.9970000-07:00|4002247E|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +39|2023-10-06T21:16:24.9970000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|4200|10000|||93.05|93.34|0.00|2.78| +261|2023-10-06T21:16:24.5370000-07:00|Change|4002247E||||||||||| +261|2023-10-06T21:16:24.5370000-07:00|Change|4002247D||||||||||||| +37|2023-10-06T21:16:25.0420000-07:00|40022472|Zeromus|00019A3A|21695323||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:24.6280000-07:00|Add|40022B3B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:16:24.6280000-07:00|40022B3B|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||86.74|92.94|0.00|-0.80| +261|2023-10-06T21:16:24.6280000-07:00|Change|40022B3B||| +20|2023-10-06T21:16:25.0860000-07:00|4002247C|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:16:24.6280000-07:00|Change|4002247C||||||||||| +39|2023-10-06T21:16:25.1300000-07:00|40022B2B|Bunshin|54932|54932|10000|10000|||81.50|85.53|0.00|1.86| +20|2023-10-06T21:16:25.1750000-07:00|4002247B|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:16:25.1750000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|17820000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|21695323|40478540|10000|10000|||100.00|80.10|0.00|0.00|80466|90890|10000|10000|||96.28|93.93|0.00|2.10|00019A43|0|1| +261|2023-10-06T21:16:24.7470000-07:00|Change|4002247B||||||||| +37|2023-10-06T21:16:25.2190000-07:00|40022472|Zeromus|00019A3C|21685447||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:25.2190000-07:00|10FF0001|Sesuga Sapisuga|00019A3C|90349|90349|8000|10000|19||94.26|96.23|0.00|1.01|1300|0|0|0| +21|2023-10-06T21:16:25.2640000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|350003|46C60000|10280F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|21695323|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|7600|10000|||85.47|94.13|0.00|2.34|00019A44|0|1| +38|2023-10-06T21:16:25.2640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|7600|10000|18||85.47|94.13|0.00|2.34|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:16:25.2640000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:16:25.2640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4200|10000|18||93.48|93.49|0.00|2.78|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:24.8570000-07:00|Change|10FF000A||||||||||| +20|2023-10-06T21:16:25.3080000-07:00|4002247A|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:16:24.8570000-07:00|Change|4002247A||||||||||| +37|2023-10-06T21:16:25.3530000-07:00|40022472|Zeromus|00019A40|21670171||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:16:25.3970000-07:00|40022479|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T21:16:25.3970000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|2800|10000|18||98.31|100.19|0.00|0.73|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:24.9670000-07:00|Change|40022479||||||||||| +261|2023-10-06T21:16:24.9670000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T21:16:25.0840000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:16:25.4420000-07:00|40022472|Zeromus|00019A42|21670170||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:25.4420000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|150C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|80466|90890|10000|10000|||96.96|94.32|0.00|2.98|54201|54201|10000|10000|||100.36|97.55|0.00|-3.12|00019A45|0|1| +20|2023-10-06T21:16:25.4880000-07:00|40022478|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:16:25.4880000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|69E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21670170|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4200|10000|||94.70|94.45|0.00|2.56|00019A46|0|1| +38|2023-10-06T21:16:25.4880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8150|10000|18||85.48|94.14|0.00|1.83|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:16:25.0840000-07:00|Change|40022478||||||||||| +21|2023-10-06T21:16:25.5760000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|750003|50670000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|21670170|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2800|10000|||92.68|98.03|-0.02|2.26|00019A47|0|1| +38|2023-10-06T21:16:25.5760000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2400|10000|33||92.68|98.03|-0.02|2.26|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:25.5760000-07:00|7B3|Manafication|4.85|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|51669|51669| +21|2023-10-06T21:16:25.6210000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|724003|75A80000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|21670170|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||98.21|99.56|0.00|1.12|00019A48|0|1| +21|2023-10-06T21:16:25.6210000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|714003|A280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21670170|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4200|10000|||94.92|94.60|0.00|2.49|00019A49|0|1| +38|2023-10-06T21:16:25.6210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4200|10000|18||94.92|94.60|0.00|2.49|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:25.6210000-07:00|7A2|Bunshin|21.18|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|57941|57941| +261|2023-10-06T21:16:25.2000000-07:00|Change|40022B2B||||||||| +261|2023-10-06T21:16:25.2980000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:16:25.7100000-07:00|40022472|Zeromus|00019A43|21664152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:25.7100000-07:00|10FF000A|Dukaro Nezikaro|00019A41|57941|57941|4200|10000|18||95.03|94.68|0.00|2.83|1E00|0|0|01|090001F1|0|41700000|| +21|2023-10-06T21:16:25.7100000-07:00|40022B2B|Bunshin|4406|Gust Slash|40022472|Zeromus|712003|1C900000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|21670170|40478540|10000|10000|||100.00|80.10|0.00|0.00|54932|54932|10000|10000|||95.31|94.87|0.00|2.83|00019A4A|0|1| +38|2023-10-06T21:16:25.7100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4200|10000|18||95.03|94.68|0.00|2.83|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:25.2980000-07:00|Change|40022B2B||| +261|2023-10-06T21:16:25.3960000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:16:25.3960000-07:00|Change|10FF0003||||||||||| +34|2023-10-06T21:16:25.7990000-07:00|40022B3B|Carbuncle|40022B3B|Carbuncle|01| +261|2023-10-06T21:16:25.3960000-07:00|Change|40022B3B||| +37|2023-10-06T21:16:26.0220000-07:00|40022472|Zeromus|00019A46|21662458||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:26.0220000-07:00|40022472|Zeromus|00019A49|21659858||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:26.1110000-07:00|40022472|Zeromus|00019A4A|21652546||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:26.1560000-07:00|40022B29|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|730003|5E7E0000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|21652546|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||94.19|97.03|0.00|2.81|00019A4B|0|1| +21|2023-10-06T21:16:26.2000000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|FCD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21652546|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.17|99.75|0.00|2.08|00019A4C|0|1| +37|2023-10-06T21:16:26.2460000-07:00|10FF0007|Kehabiqo Febiqo|00019A45|85854||||||97.76|91.41|0.00|3.03| +21|2023-10-06T21:16:26.2460000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|22200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21652546|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.26|100.06|0.00|1.71|00019A4D|0|1| +21|2023-10-06T21:16:26.2460000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|40CE0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|21652546|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|2800|10000|||102.05|103.54|-0.02|0.68|00019A4E|0|1| +24|2023-10-06T21:16:26.2900000-07:00|40022472|Zeromus|DoT|A92|556|21652546|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|8150|10000|||88.68|96.65|0.00|0.90| +37|2023-10-06T21:16:26.2900000-07:00|40022472|Zeromus|00019A44|21633062||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:26.2900000-07:00|10FF0006|Wowobora Gogobora|00019A44|57266|57266|8150|10000|18||88.68|96.65|0.00|0.90|1B00|0|0|01|07000A92|0|41700000|| +26|2023-10-06T21:16:26.2900000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:16:26.2900000-07:00|40022472|Zeromus|005A5A00|21633062|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:26.2900000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:16:25.9020000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:16:26.3800000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|314B0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|21633062|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8150|10000|||89.07|97.02|0.00|0.85|00019A4F|0|1| +21|2023-10-06T21:16:26.4240000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|1DFE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|21633062|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8000|10000|||99.81|94.05|0.00|2.44|00019A50|0|1| +38|2023-10-06T21:16:26.4240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8000|10000|19||99.81|94.05|0.00|2.44|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:26.4240000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +261|2023-10-06T21:16:26.0160000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:16:26.5130000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.36|97.55|0.00|-2.78| +21|2023-10-06T21:16:26.6030000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21633062|40478540|10000|10000|||100.00|80.10|0.00|0.00|85854|90890|10000|10000|||96.30|89.84|0.00|3.07|00019A51|0|1| +261|2023-10-06T21:16:26.2220000-07:00|Add|40022B3E||||||||||||||||||||||||| +21|2023-10-06T21:16:26.6930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21633062|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8000|10000|||101.59|93.62|0.00|2.44|00019A52|0|1| +31|2023-10-06T21:16:26.6930000-07:00|10FF0001||||| +261|2023-10-06T21:16:26.3160000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:16:26.7370000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.37|103.33|0.00|-1.65| +37|2023-10-06T21:16:26.7810000-07:00|40022472|Zeromus|00019A48|21602942||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:26.7810000-07:00|40022472|Zeromus|DoT|0|C4E|21633062|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +38|2023-10-06T21:16:26.7810000-07:00|40022472|Zeromus|005A5A00|21599792|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:16:26.4080000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:16:26.8700000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8200|10000|||102.26|93.57|0.00|2.44| +36|2023-10-06T21:16:26.8700000-07:00|0EEC|3| +261|2023-10-06T21:16:26.4080000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:16:26.9150000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|2600|10000|||104.92|106.17|0.00|1.31| +21|2023-10-06T21:16:26.9150000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|19CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21599792|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.38|104.78|0.00|-0.68|00019A53|0|1| +37|2023-10-06T21:16:26.9590000-07:00|40022472|Zeromus|00019A4C|21595747||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:26.9590000-07:00|40022B3B|Carbuncle|005A5A00|54388|54388|10000|10000|0||88.01|94.58|0.00|0.33|0|0|0||||||||||||| +26|2023-10-06T21:16:26.9590000-07:00|30|Well Fed|1486.31|10FF0006|Wowobora Gogobora|40022B3B|Carbuncle|2964|54388|57266| +26|2023-10-06T21:16:26.9590000-07:00|511|Embolden|8.42|10FF0003|Gegehi Gehi|40022B3B|Carbuncle|00|54388|51669| +26|2023-10-06T21:16:26.9590000-07:00|441|HP Penalty|9999.00|E0000000||40022B3B|Carbuncle|00|54388|| +26|2023-10-06T21:16:26.9590000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022B3B|Carbuncle|01|54388|57266| +21|2023-10-06T21:16:26.9590000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|7850|10000|||89.76|98.15|0.00|0.58|57266|57266|7850|10000|||89.76|98.15|0.00|0.58|00019A54|0|1| +261|2023-10-06T21:16:26.5970000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:16:27.0030000-07:00|40022472|Zeromus|00019A4F|21583128||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:27.0030000-07:00|10FF0007|Kehabiqo Febiqo|86762|90890|10000|10000|||94.19|87.80|0.00|-3.09| +39|2023-10-06T21:16:27.0030000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8050|10000|||89.76|98.15|0.00|0.58| +37|2023-10-06T21:16:27.0480000-07:00|40022472|Zeromus|00019A4D|21574392||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:27.0920000-07:00|40022B3B|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|BD0E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8050|10000|||89.82|98.26|0.00|0.35|54388|54388|10000|10000|||88.12|95.01|0.00|0.56|00019A55|0|1| +38|2023-10-06T21:16:27.0920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8050|10000|38||89.82|98.26|0.00|0.35|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:27.0920000-07:00|A8E|Radiant Aegis|29.96|40022B3B|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +37|2023-10-06T21:16:27.1800000-07:00|40022472|Zeromus|00019A4E|21557802||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:26.7100000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:16:27.2250000-07:00|40022472|Zeromus|00019A52|21556502||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:27.2690000-07:00|40022472|Zeromus|00019A51|21556502|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004A9|0|41200000|| +26|2023-10-06T21:16:27.2690000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40022472|Zeromus|00|40478540|90890| +37|2023-10-06T21:16:27.4030000-07:00|40022472|Zeromus|00019A47|21535919||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:27.0480000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:16:27.0480000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:16:27.4490000-07:00|40022472|Zeromus|00019A4B|21511729||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:27.4490000-07:00|40022B29|Automaton Queen|005A5A00|59967|59967|10000|10000|0||94.19|97.03|0.00|2.81|0|0|0||||||||||||| +30|2023-10-06T21:16:27.4490000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022B29|Automaton Queen|01|59967|40478540| +37|2023-10-06T21:16:27.5370000-07:00|40022472|Zeromus|00019A53|21505123||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:27.5370000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21511729|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8050|10000|||89.30|98.77|0.00|-0.22|00019A56|0|1| +21|2023-10-06T21:16:27.5820000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21511729|40478540|10000|10000|||100.00|80.10|0.00|0.00|86762|90890|10000|10000|||93.79|85.12|0.00|3.12|00019A57|0|1| +261|2023-10-06T21:16:27.1590000-07:00|Change|4002284A||||||||||| +261|2023-10-06T21:16:27.1590000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T21:16:27.6260000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|24400000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|21511729|40478540|10000|10000|||100.00|80.10|0.00|0.00|86762|90890|10000|10000|||93.79|85.12|0.00|3.12|00019A58|0|1| +261|2023-10-06T21:16:27.2520000-07:00|Change|40022B2B||| +21|2023-10-06T21:16:27.6700000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|8820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21505123|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4200|10000|||88.02|92.04|0.00|-2.92|00019A59|0|1| +261|2023-10-06T21:16:27.2520000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:16:27.7150000-07:00|40022472|Zeromus|00019A50|21497445||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:27.7150000-07:00|10FF0001|Sesuga Sapisuga|00019A50|90349|90349|8600|10000|19||106.58|91.37|0.00|2.30|1300|0|0|0| +39|2023-10-06T21:16:27.8030000-07:00|40022B29|Automaton Queen|59967|59967|10000|10000|||94.19|97.03|0.00|2.81| +21|2023-10-06T21:16:27.8480000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|27540000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|21497445|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8050|10000|||87.91|99.72|0.00|-0.66|00019A5A|0|1| +37|2023-10-06T21:16:27.8930000-07:00|10FF0006|Wowobora Gogobora|00019A55|57266|57266|7750|10000|38||87.36|100.27|0.00|2.58|1B00|0|0|01|08000A8E|0|41E99996|| +38|2023-10-06T21:16:27.8930000-07:00|40022B3B|Carbuncle|005A5A00|54388|54388|10000|10000|0||88.27|96.13|0.00|0.12|0|0|0|||||||||| +30|2023-10-06T21:16:27.8930000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40022B3B|Carbuncle|01|54388|57266| +39|2023-10-06T21:16:27.9820000-07:00|10FF0003|Gegehi Gehi|51669|51669|2600|10000|||90.00|109.97|0.00|-0.62| +39|2023-10-06T21:16:27.9820000-07:00|10FF000A|Dukaro Nezikaro|57941|57941|4400|10000|||86.02|92.30|0.00|-2.78| +261|2023-10-06T21:16:27.6290000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:16:28.0710000-07:00|40022472|Zeromus|00019A56|21497290||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:28.1160000-07:00|40022472|Zeromus|00019A57|21494175||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:28.1160000-07:00|40022B2B|Bunshin|54932|54932|10000|10000|||95.31|94.87|0.00|2.83| +261|2023-10-06T21:16:27.7410000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:16:28.1610000-07:00|40022B29|Automaton Queen|005A5A00|59967|59967|10000|10000|0||94.19|97.03|0.00|2.81|0|0|0||||||||||||| +26|2023-10-06T21:16:28.1610000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022B29|Automaton Queen|01|59967|40478540| +21|2023-10-06T21:16:28.1610000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|724003|7A1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21494175|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.44|106.19|0.00|0.76|00019A5B|0|1| +37|2023-10-06T21:16:28.2050000-07:00|40022472|Zeromus|00019A59|21491997||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:28.2050000-07:00|40022B29|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|732003|C1770000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|21494175|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||94.19|97.03|0.00|2.81|00019A5C|0|1| +21|2023-10-06T21:16:28.2050000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|752003|840A0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|21494175|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2600|10000|||89.17|110.92|0.00|-0.67|00019A5D|0|1| +38|2023-10-06T21:16:28.2050000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2200|10000|33||89.17|110.92|0.00|-0.67|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:16:28.2050000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|51669|51669| +37|2023-10-06T21:16:28.2500000-07:00|40022472|Zeromus|00019A58|21482717||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:27.8520000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:16:27.8520000-07:00|Remove|40022B22| +38|2023-10-06T21:16:28.3830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3150|10000|18||113.05|107.50|0.00|1.51|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:27.9740000-07:00|Change|40022B3B||||||||| +261|2023-10-06T21:16:28.0930000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:16:28.4730000-07:00|40022472|Zeromus|00019A5A|21472649||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:28.4730000-07:00|40022472|Zeromus|DoT|A92|63D|21482717|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57266|57266|7750|10000|||84.69|102.07|0.00|-2.15| +21|2023-10-06T21:16:28.4730000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|1E710003|A9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21482717|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4400|10000|||83.61|90.69|0.00|-2.57|00019A5E|0|1| +38|2023-10-06T21:16:28.4730000-07:00|40022472|Zeromus|005A5A00|21471052|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:28.4730000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +38|2023-10-06T21:16:28.4730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|38||84.69|102.07|0.00|-2.15|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:16:28.4730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4400|10000|18||83.61|90.69|0.00|-2.57|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:28.4730000-07:00|7A2|Bunshin|18.33|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|57941|57941| +261|2023-10-06T21:16:28.0930000-07:00|Change|40022B2B||||||||| +21|2023-10-06T21:16:28.5630000-07:00|40022B2B|Bunshin|4407|Aeolian Edge|40022472|Zeromus|712003|1B660000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|21471052|40478540|10000|10000|||100.00|80.10|0.00|0.00|54932|54932|10000|10000|||82.91|90.08|0.00|2.10|00019A5F|0|1| +261|2023-10-06T21:16:28.1940000-07:00|Change|40022B2B||| +20|2023-10-06T21:16:28.6510000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|114.20|108.10|0.00|1.43| +04|2023-10-06T21:16:28.1940000-07:00|40022B34|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|54388|0|10000|||80.91|88.65|0.00|1.91| +261|2023-10-06T21:16:28.1940000-07:00|Remove|40022B34| +21|2023-10-06T21:16:28.6960000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8300|10000|||83.46|101.33|0.00|-2.18|57266|57266|8300|10000|||83.46|101.33|0.00|-2.18|00019A60|0|1| +38|2023-10-06T21:16:28.6960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|38||83.46|101.33|0.00|-2.18|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:28.6960000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:16:28.2900000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:16:28.8290000-07:00|10FF0006|Wowobora Gogobora|00019A60|57266|57266|8300|10000|38||82.97|101.05|0.00|-2.85|1B00|0|0|01|090000A7|0|41200000|| +21|2023-10-06T21:16:28.8290000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22020000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|86762|90890|10000|10000|||95.08|85.74|0.00|2.76|54201|54201|10000|10000|||100.54|99.60|0.00|2.00|00019A61|0|1| +38|2023-10-06T21:16:28.8290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|38||82.97|101.05|0.00|-2.85|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:28.8730000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21471052|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.28|105.87|0.00|-1.87|00019A62|0|1| +21|2023-10-06T21:16:28.9170000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|33BB0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|21471052|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8600|10000|||110.44|87.77|0.00|-2.20|00019A63|0|1| +38|2023-10-06T21:16:28.9170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8600|10000|19||110.44|87.77|0.00|-2.20|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:28.9170000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +21|2023-10-06T21:16:28.9620000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|8960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21471052|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8600|10000|||110.81|87.35|0.00|2.46|00019A64|0|1| +31|2023-10-06T21:16:28.9620000-07:00|10FF0001||||| +37|2023-10-06T21:16:29.0060000-07:00|40022472|Zeromus|00019A5E|21468334||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:28.5780000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:16:29.0960000-07:00|40022472|Zeromus|00019A5F|21461320||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:28.6910000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:16:29.1850000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19712003|22890000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|21461320|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4400|10000|||82.09|89.23|0.00|-2.55|00019A65|0|1| +38|2023-10-06T21:16:29.1850000-07:00|40022472|Zeromus|005A5A00|21461320|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:16:29.1850000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|57941| +38|2023-10-06T21:16:29.1850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4400|10000|18||82.09|89.23|0.00|-2.55|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:29.1850000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +37|2023-10-06T21:16:29.3190000-07:00|40022472|Zeromus|00019A5B|21430062|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T21:16:29.3640000-07:00|4002248E|Zeromus|8D32|Big Crunch|10FF0004|Buhojaqe Zijaqe|550603|4A840000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|57078|57078|3150|10000|||114.58|108.51|0.00|-2.67|44|44|0|10000|||100.00|100.00|0.00|0.00|00019A66|0|1| +38|2023-10-06T21:16:29.3640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3150|10000|18||114.58|108.51|0.00|-2.67|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:29.3640000-07:00|B7D|Magic Vulnerability Up|2.00|4002248E|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +261|2023-10-06T21:16:28.9200000-07:00|Change|4002248E||||||||||||| +37|2023-10-06T21:16:29.4970000-07:00|40022472|Zeromus|00019A64|21427864|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T21:16:29.4970000-07:00|4002248B|Zeromus|8D32|Big Crunch|10FF0001|Sesuga Sapisuga|EC550605|0|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|90349|90349|8600|10000|||111.94|85.95|0.00|2.46|44|44|0|10000|||100.00|100.00|0.00|0.00|00019A67|0|1| +38|2023-10-06T21:16:29.4970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8600|10000|19||111.94|85.95|0.00|2.46|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:29.4970000-07:00|B7D|Magic Vulnerability Up|2.00|4002248B|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +261|2023-10-06T21:16:29.0390000-07:00|Change|4002248B||||||||||||| +39|2023-10-06T21:16:29.5410000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.54|99.60|0.00|-2.84| +21|2023-10-06T21:16:29.5870000-07:00|40022488|Zeromus|8D32|Big Crunch|10FF0006|Wowobora Gogobora|550603|4D160000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|57266|57266|8300|10000|||82.26|100.63|0.00|-2.87|44|44|0|10000|||100.00|100.00|0.00|0.00|00019A68|0|1| +21|2023-10-06T21:16:29.5870000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|358D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|21427864|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3150|10000|||114.58|108.51|0.00|-2.67|00019A69|0|1| +38|2023-10-06T21:16:29.5870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8300|10000|38||82.26|100.63|0.00|-2.87|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:29.5870000-07:00|B7D|Magic Vulnerability Up|2.00|40022488|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +261|2023-10-06T21:16:29.1510000-07:00|Change|40022488||||||||||||| +37|2023-10-06T21:16:29.6310000-07:00|10FF0007|Kehabiqo Febiqo|00019A61|90890||||||95.32|85.74|0.00|2.85| +37|2023-10-06T21:16:29.6310000-07:00|40022472|Zeromus|00019A62|21423967|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T21:16:29.6750000-07:00|40022485|Zeromus|8D32|Big Crunch|10FF0007|Kehabiqo Febiqo|550003|5EF40000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|86762|90890|10000|10000|||95.32|85.74|0.00|2.85|44|44|0|10000|||100.00|100.00|0.00|0.00|00019A6A|0|1| +21|2023-10-06T21:16:29.6750000-07:00|10FF0006|Wowobora Gogobora|AD|Resurrection|10FF0009|Zewo Negiwo|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|56823|0|10000|||100.18|115.14|0.00|-3.14|57266|57266|8300|10000|||82.26|100.63|0.00|-2.87|00019A6B|0|1| +38|2023-10-06T21:16:29.6750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||95.32|85.74|0.00|2.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:29.6750000-07:00|B7D|Magic Vulnerability Up|2.00|40022485|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|44| +38|2023-10-06T21:16:29.6750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|5900|10000|38||82.26|100.63|0.00|-2.87|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:29.6750000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:16:29.2510000-07:00|Change|40022485||||||||||||| +39|2023-10-06T21:16:29.7190000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.08|103.26|0.00|-3.09| +37|2023-10-06T21:16:29.7640000-07:00|40022472|Zeromus|00019A5D|21390165|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +24|2023-10-06T21:16:29.7640000-07:00|40022472|Zeromus|DoT|0|CB2|21423967|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:16:29.7640000-07:00|40022482|Zeromus|8D32|Big Crunch|10FF0008|Kokosaze Lulusaze|550603|55470000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.08|103.26|0.00|-3.09|44|44|0|10000|||100.00|100.00|0.00|0.00|00019A6C|0|1| +38|2023-10-06T21:16:29.7640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|16||99.08|103.26|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:29.7640000-07:00|B7D|Magic Vulnerability Up|2.00|40022482|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:16:29.7640000-07:00|40022472|Zeromus|005A5A00|21386915|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:16:29.3480000-07:00|Change|40022482||||||||||||| +21|2023-10-06T21:16:29.8520000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|7520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21386915|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4400|10000|||82.02|89.16|0.00|2.04|00019A6D|0|1| +36|2023-10-06T21:16:29.8520000-07:00|0FC8|3| +39|2023-10-06T21:16:29.8970000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8800|10000|||111.94|85.95|0.00|2.46| +39|2023-10-06T21:16:29.8970000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|2950|10000|||114.58|108.51|0.00|-2.67| +21|2023-10-06T21:16:29.8970000-07:00|4002247F|Zeromus|8D32|Big Crunch|10FF000A|Dukaro Nezikaro|550603|58730000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|57941|57941|4400|10000|||82.02|89.16|0.00|2.04|44|44|0|10000|||100.00|100.00|0.00|0.00|00019A6E|0|1| +38|2023-10-06T21:16:29.8970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57941|57941|4400|10000|18||82.02|89.16|0.00|2.04|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:29.8970000-07:00|B7D|Magic Vulnerability Up|2.00|4002247F|Zeromus|10FF000A|Dukaro Nezikaro|00|57941|44| +261|2023-10-06T21:16:29.4430000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:16:29.4430000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:16:29.9420000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40022472|Zeromus|712003|EB20000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|21386915|40478540|10000|10000|||100.00|80.10|0.00|0.00|57941|57941|4400|10000|||82.02|89.16|0.00|2.04|00019A6F|0|1| +38|2023-10-06T21:16:29.9420000-07:00|40022472|Zeromus|005A5A00|21386915|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:29.9420000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|57941| +37|2023-10-06T21:16:29.9860000-07:00|40022472|Zeromus|00019A65|21378074|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|04000CB6|0|41700000|||||| +39|2023-10-06T21:16:29.9860000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||95.32|85.74|0.00|2.85| +39|2023-10-06T21:16:29.9860000-07:00|10FF0006|Wowobora Gogobora|57266|57266|6100|10000|||82.26|100.63|0.00|2.47| +21|2023-10-06T21:16:29.9860000-07:00|4002247D|Zeromus|8D32|Big Crunch|10FF0003|Gegehi Gehi|550603|394A0000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|51669|51669|2200|10000|||89.19|112.09|0.00|-1.40|44|44|0|10000|||100.00|100.00|0.00|0.00|00019A70|0|1| +38|2023-10-06T21:16:29.9860000-07:00|40022472|Zeromus|005A5A00|21378074|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:16:29.9860000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2200|10000|33||89.19|112.09|0.00|-1.40|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:29.9860000-07:00|B7D|Magic Vulnerability Up|2.00|4002247D|Zeromus|10FF0003|Gegehi Gehi|00|51669|44| +261|2023-10-06T21:16:29.5350000-07:00|Change|4002247D||||||||||||| +261|2023-10-06T21:16:29.6260000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:16:30.0310000-07:00|10FF0004|Buhojaqe Zijaqe|00019A66|38002|57078|2950|10000|0||114.58|108.51|0.00|-2.67|1C00|0|0|02|05000000|0|0|||||| +38|2023-10-06T21:16:30.0310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38002|57078|2950|10000|0||114.58|108.51|0.00|-2.67|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:30.0310000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +21|2023-10-06T21:16:30.0750000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F712003|5C380000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|21378074|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||95.32|85.74|0.00|2.85|00019A71|0|1| +38|2023-10-06T21:16:30.0750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||95.32|85.74|0.00|2.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:30.0750000-07:00|A75|Surging Tempest|40.78|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +261|2023-10-06T21:16:29.7160000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:16:30.1640000-07:00|40022472|Zeromus|00019A5C|21328547|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500027E|0|C1A00000|| +37|2023-10-06T21:16:30.1640000-07:00|10FF0001|Sesuga Sapisuga|00019A67|90349|90349|8800|10000|1||111.94|85.95|0.00|2.46|1300|0|0|01|02000B7D|0|3FB0624E|| +38|2023-10-06T21:16:30.1640000-07:00|40022B29|Automaton Queen|005A5A00|59967|59967|10000|10000|0||94.19|97.03|0.00|2.81|0|0|0||||||||||||| +30|2023-10-06T21:16:30.1640000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022B29|Automaton Queen|01|59967|40478540| +37|2023-10-06T21:16:30.2090000-07:00|40022472|Zeromus|00019A63|21315304|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500027E|0|C1A00000|| +37|2023-10-06T21:16:30.2090000-07:00|10FF0001|Sesuga Sapisuga|00019A63|90349|90349|9200|10000|1||111.94|85.95|0.00|2.46|1300|0|0|0| +37|2023-10-06T21:16:30.2540000-07:00|10FF0006|Wowobora Gogobora|00019A68|37532|57266|6100|10000|0||82.26|100.63|0.00|0.90|1B00|0|0|03|0|0|0|||||||||| +38|2023-10-06T21:16:30.2540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|37532|57266|6100|10000|0||82.26|100.63|0.00|0.90|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:30.2540000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +30|2023-10-06T21:16:30.2540000-07:00|A8E|Radiant Aegis|0.00|40022B3B|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +37|2023-10-06T21:16:30.2980000-07:00|10FF0007|Kehabiqo Febiqo|00019A6A|66582|90890|10000|10000|0||95.32|85.74|0.00|2.45|1500|0|0|01|07000B7D|0|3FB5E355|| +21|2023-10-06T21:16:30.3410000-07:00|4002248F|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A72|0|0| +21|2023-10-06T21:16:30.3410000-07:00|40022490|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A73|0|0| +261|2023-10-06T21:16:29.9430000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:16:29.9430000-07:00|Change|40022490||||||||||| +37|2023-10-06T21:16:30.3860000-07:00|10FF0008|Kokosaze Lulusaze|00019A6C|41320|63151|10000|10000|0||99.08|103.26|0.00|-3.09|1F00|0|0|02|04000B7D|0|3FB624DE|||||| +37|2023-10-06T21:16:30.3860000-07:00|40022472|Zeromus|00019A69|21301595|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500027E|0|C1A00000|| +37|2023-10-06T21:16:30.3860000-07:00|40022472|Zeromus|00019A6D|21299721|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500027E|0|C1A00000|| +38|2023-10-06T21:16:30.3870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|41320|63151|10000|10000|0||99.08|103.26|0.00|-3.09|0|0|0|||||||||||||||| +30|2023-10-06T21:16:30.3870000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +37|2023-10-06T21:16:30.4760000-07:00|40022472|Zeromus|00019A6F|21295959|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500027E|0|41A00000|| +21|2023-10-06T21:16:30.4760000-07:00|4002248C|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A74|0|0| +21|2023-10-06T21:16:30.4760000-07:00|4002248D|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A75|0|0| +38|2023-10-06T21:16:30.4760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|66582|90890|10000|10000|0||95.32|85.74|0.00|2.45|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:30.4760000-07:00|6FD|Vulnerability Up|0.00|40022489|Zeromus|10FF0007|Kehabiqo Febiqo|01|90890|44| +38|2023-10-06T21:16:30.4760000-07:00|40022472|Zeromus|005A5A00|21295959|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:30.4760000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +261|2023-10-06T21:16:30.0670000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:16:30.0670000-07:00|Change|4002248C||||||||||| +37|2023-10-06T21:16:30.5200000-07:00|10FF000A|Dukaro Nezikaro|00019A6E|35298|57941|4400|10000|0||82.02|89.16|0.00|2.04|1E00|0|0|02|06000B7D|0|3FB60419|||||| +38|2023-10-06T21:16:30.5200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35298|57941|4400|10000|0||82.02|89.16|0.00|2.04|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:30.5200000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +21|2023-10-06T21:16:30.5640000-07:00|40022489|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A76|0|0| +21|2023-10-06T21:16:30.5640000-07:00|4002248A|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A77|0|0| +261|2023-10-06T21:16:30.1780000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:16:30.1780000-07:00|Change|4002248A||||||||||| +37|2023-10-06T21:16:30.6090000-07:00|10FF0003|Gegehi Gehi|00019A70|37003|51669|2200|10000|0||89.16|112.20|0.00|-0.75|2300|0|0|02|01000000|0|0|||||| +20|2023-10-06T21:16:30.6090000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|89.16|112.20|0.00|-0.75| +38|2023-10-06T21:16:30.6090000-07:00|10FF0003|Gegehi Gehi|005A5A23|37003|51669|2200|10000|0||89.16|112.20|0.00|-0.75|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:16:30.6090000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +261|2023-10-06T21:16:30.1780000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T21:16:30.6540000-07:00|40022486|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A78|0|0| +21|2023-10-06T21:16:30.6540000-07:00|40022487|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A79|0|0| +21|2023-10-06T21:16:30.6540000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35298|57941|4400|10000|||82.02|89.16|0.00|2.04|35298|57941|4400|10000|||82.02|89.16|0.00|2.04|00019A7A|0|1| +38|2023-10-06T21:16:30.6540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35298|57941|4400|10000|0||82.02|89.16|0.00|2.04|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:30.6540000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|57941|57941| +261|2023-10-06T21:16:30.1780000-07:00|Change|40022487||||||||||| +261|2023-10-06T21:16:30.1780000-07:00|Change|4002284A||||||||| +261|2023-10-06T21:16:30.1780000-07:00|Change|40022486||||||||||| +21|2023-10-06T21:16:30.6980000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3FAB0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|21295959|40478540|10000|10000|||100.00|80.10|0.00|0.00|41320|63151|10000|10000|||99.08|103.26|0.00|-3.09|00019A7B|0|1| +261|2023-10-06T21:16:30.2780000-07:00|Change|40022B2B||| +39|2023-10-06T21:16:30.7430000-07:00|40022B3B|Carbuncle|54388|54388|10000|10000|||83.85|99.57|0.00|-1.76| +21|2023-10-06T21:16:30.7430000-07:00|40022483|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A7C|0|0| +21|2023-10-06T21:16:30.7430000-07:00|40022484|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A7D|0|0| +261|2023-10-06T21:16:30.2780000-07:00|Change|40022483||||||||||| +261|2023-10-06T21:16:30.2780000-07:00|Change|40022484||||||||||| +37|2023-10-06T21:16:30.7870000-07:00|10FF0009|Zewo Negiwo|00019A6B|0|56823|0|10000|0||100.18|115.14|0.00|-3.14|1800|0|0|01|02000094|08|42700000|| +26|2023-10-06T21:16:30.7870000-07:00|94|Raise|60.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|08|56823|57266| +39|2023-10-06T21:16:30.8310000-07:00|40022B29|Automaton Queen|59967|59967|10000|10000|||94.19|97.03|0.00|2.81| +21|2023-10-06T21:16:30.8760000-07:00|40022480|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A7E|0|0| +21|2023-10-06T21:16:30.8760000-07:00|40022481|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A7F|0|0| +261|2023-10-06T21:16:30.4690000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:16:30.4690000-07:00|Change|40022481||||||||||| +261|2023-10-06T21:16:30.4690000-07:00|Change|10FF0001||| +39|2023-10-06T21:16:30.9650000-07:00|10FF0003|Gegehi Gehi|37519|51669|2400|10000|||89.16|112.20|0.00|-2.19| +21|2023-10-06T21:16:30.9650000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|CED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21295959|40478540|10000|10000|||100.00|80.10|0.00|0.00|66582|90890|10000|10000|||95.32|85.74|0.00|2.45|00019A80|0|1| +21|2023-10-06T21:16:30.9650000-07:00|4002247E|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A81|0|0| +261|2023-10-06T21:16:30.4690000-07:00|Change|4002247E||||||||||| +39|2023-10-06T21:16:31.0110000-07:00|10FF000A|Dukaro Nezikaro|35877|57941|4600|10000|||82.02|89.16|0.00|2.04| +261|2023-10-06T21:16:30.5670000-07:00|Change|10FF000A||||||||||| +21|2023-10-06T21:16:31.0550000-07:00|4002247C|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A82|0|0| +21|2023-10-06T21:16:31.0550000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|42610000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|21295959|40478540|10000|10000|||100.00|80.10|0.00|0.00|38002|57078|2950|10000|||114.50|108.43|0.00|-2.44|00019A83|0|1| +261|2023-10-06T21:16:30.5670000-07:00|Change|4002247C||||||||||| +261|2023-10-06T21:16:30.5670000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T21:16:31.0990000-07:00|40022B2B|Bunshin|54932|54932|10000|10000|||82.91|90.08|0.00|2.10| +261|2023-10-06T21:16:30.6800000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:16:31.1430000-07:00|4002247B|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A84|0|0| +21|2023-10-06T21:16:31.1430000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35877|57941|4600|10000|||82.02|89.16|0.00|2.04|35877|57941|4600|10000|||82.02|89.16|0.00|2.04|00019A85|0|1| +38|2023-10-06T21:16:31.1430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35877|57941|4600|10000|0||82.02|89.16|0.00|2.04|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:31.1430000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|57941|57941| +261|2023-10-06T21:16:30.6800000-07:00|Change|4002247B||||||||| +21|2023-10-06T21:16:31.2320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21295959|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||111.94|85.95|0.00|2.46|00019A86|0|1| +31|2023-10-06T21:16:31.2320000-07:00|10FF0001||||| +21|2023-10-06T21:16:31.2760000-07:00|4002247A|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A87|0|0| +261|2023-10-06T21:16:30.7910000-07:00|Change|4002247A||||||||||| +261|2023-10-06T21:16:30.9060000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:16:31.3650000-07:00|40022479|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A88|0|0| +38|2023-10-06T21:16:31.3650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38002|57078|2550|10000|0||114.49|108.42|0.00|-2.67|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:31.3650000-07:00|B7D|Magic Vulnerability Up|0.00|4002248E|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +261|2023-10-06T21:16:30.9060000-07:00|Change|40022479||||||||||| +21|2023-10-06T21:16:31.4100000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|754003|2F420000|4|1BBE8000|0|0|0|0|0|0|0|0|0|0|0|0|21295959|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||111.94|85.95|0.00|2.46|00019A89|0|1| +38|2023-10-06T21:16:31.4100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8200|10000|1||111.94|85.95|0.00|2.46|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:31.4100000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:16:31.4100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38002|57078|3100|10000|0||114.49|108.42|0.00|-2.67|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:31.4550000-07:00|40022478|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019A8A|0|0| +261|2023-10-06T21:16:31.0200000-07:00|Change|40022478||||||||||| +37|2023-10-06T21:16:31.4990000-07:00|40022472|Zeromus|00019A80|21292650||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:31.4990000-07:00|40022472|Zeromus|00019A7B|21276351||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:31.4990000-07:00|40022472|Zeromus|DoT|A92|8F2|21295959|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|37532|57266|6100|10000|||82.26|100.63|0.00|0.89| +38|2023-10-06T21:16:31.4990000-07:00|40022472|Zeromus|005A5A00|21274061|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:16:31.4990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|37532|57266|6650|10000|0||82.26|100.63|0.00|0.89|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:31.4990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8200|10000|1||111.94|85.95|0.00|-2.03|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:31.4990000-07:00|B7D|Magic Vulnerability Up|0.00|4002248B|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +261|2023-10-06T21:16:31.1360000-07:00|Change|10FF0006||||| +21|2023-10-06T21:16:31.5420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|C900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21274061|40478540|10000|10000|||100.00|80.10|0.00|0.00|41320|63151|10000|10000|||99.08|103.26|0.00|3.10|00019A8B|0|1| +38|2023-10-06T21:16:31.5870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|37532|57266|6650|10000|0||82.26|100.63|0.00|0.89|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:31.5870000-07:00|B7D|Magic Vulnerability Up|0.00|40022488|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +38|2023-10-06T21:16:31.6760000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.54|99.60|0.00|-3.11|0|0|0||||||||||||| +26|2023-10-06T21:16:31.6760000-07:00|7AE|Summon Order IV|30.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:16:31.6760000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38002|57078|3100|10000|||114.49|108.42|0.00|-2.67|38002|57078|3100|10000|||114.49|108.42|0.00|-2.67|00019A8C|0|1| +21|2023-10-06T21:16:31.6770000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|250003|67960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21274061|40478540|10000|10000|||100.00|80.10|0.00|0.00|35877|57941|4600|10000|||82.02|89.16|0.00|2.04|00019A8D|0|1| +38|2023-10-06T21:16:31.6770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|66582|90890|10000|10000|0||95.32|85.74|0.00|2.45|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:16:31.6770000-07:00|B7D|Magic Vulnerability Up|0.00|40022485|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|44| +38|2023-10-06T21:16:31.6770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35877|57941|4600|10000|0||82.02|89.16|0.00|2.04|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:31.6770000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|57941|57941| +30|2023-10-06T21:16:31.6770000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|57941|57941| +37|2023-10-06T21:16:31.7200000-07:00|40022472|Zeromus|00019A71|21250453||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:31.7640000-07:00|40022472|Zeromus|00019A86|21249000||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:16:31.7640000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|244C0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|41320|63151|10000|10000|||99.08|103.26|0.00|3.10|54201|54201|10000|10000|||100.54|99.60|0.00|-3.11|00019A8E|0|6| +22|2023-10-06T21:16:31.7640000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|25200000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|66582|90890|10000|10000|||95.32|85.74|0.00|2.45|54201|54201|10000|10000|||100.54|99.60|0.00|-3.11|00019A8E|1|6| +22|2023-10-06T21:16:31.7640000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|24350000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|38002|57078|3100|10000|||114.49|108.42|0.00|-2.67|54201|54201|10000|10000|||100.54|99.60|0.00|-3.11|00019A8E|2|6| +22|2023-10-06T21:16:31.7640000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|200004|3CF00000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|37519|51669|2400|10000|||89.16|112.20|0.00|2.82|54201|54201|10000|10000|||100.54|99.60|0.00|-3.11|00019A8E|3|6| +22|2023-10-06T21:16:31.7640000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|24830000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|8200|10000|||111.94|85.95|0.00|-2.03|54201|54201|10000|10000|||100.54|99.60|0.00|-3.11|00019A8E|4|6| +22|2023-10-06T21:16:31.7640000-07:00|4002284A|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|252F0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|37532|57266|6650|10000|||82.26|100.63|0.00|0.89|54201|54201|10000|10000|||100.54|99.60|0.00|-3.11|00019A8E|5|6| +38|2023-10-06T21:16:31.8090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|41320|63151|10000|10000|0||99.08|103.26|0.00|3.10|0|0|0||||||||||||| +30|2023-10-06T21:16:31.8090000-07:00|B7D|Magic Vulnerability Up|0.00|40022482|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:16:31.8090000-07:00|40022472|Zeromus|005A5A00|21249000|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:31.8090000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +38|2023-10-06T21:16:31.9000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35877|57941|4600|10000|0||82.05|89.17|0.00|2.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:31.9000000-07:00|B7D|Magic Vulnerability Up|0.00|4002247F|Zeromus|10FF000A|Dukaro Nezikaro|00|57941|44| +37|2023-10-06T21:16:31.9890000-07:00|40022472|Zeromus|00019A83|21232007||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:31.9890000-07:00|10FF0003|Gegehi Gehi|005A5A23|37519|51669|2400|10000|0||89.16|112.20|0.00|2.82|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:16:31.9890000-07:00|B7D|Magic Vulnerability Up|0.00|4002247D|Zeromus|10FF0003|Gegehi Gehi|00|51669|44| +21|2023-10-06T21:16:32.0340000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|454003|32880000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|21232007|40478540|10000|10000|||100.00|80.10|0.00|0.00|37519|51669|2400|10000|||89.16|112.20|0.00|2.82|00019A8F|0|1| +38|2023-10-06T21:16:32.0340000-07:00|10FF0003|Gegehi Gehi|005A5A23|37519|51669|2200|10000|0||89.16|112.20|0.00|2.82|0|0|0|||||||||||||||| +26|2023-10-06T21:16:32.0340000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +30|2023-10-06T21:16:32.0340000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +21|2023-10-06T21:16:32.0340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|5A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21232007|40478540|10000|10000|||100.00|80.10|0.00|0.00|35877|57941|4600|10000|||83.19|90.08|0.00|2.22|00019A90|0|1| +261|2023-10-06T21:16:31.6100000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T21:16:31.7290000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:16:32.1230000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|28910000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|21232007|40478540|10000|10000|||100.00|80.10|0.00|0.00|37532|57266|6650|10000|||82.26|100.63|0.00|0.89|00019A91|0|1| +37|2023-10-06T21:16:32.1680000-07:00|40022472|Zeromus|00019A89|21219909||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:31.7290000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:16:31.9560000-07:00|Change|10FF0001||| +37|2023-10-06T21:16:32.3010000-07:00|40022472|Zeromus|00019A8B|21216693||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:32.3010000-07:00|40022472|Zeromus|00019A8D|21190175||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:32.3010000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|712003|12040000|13700E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|21219909|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8200|10000|||111.94|85.95|0.00|-2.03|00019A92|0|1| +39|2023-10-06T21:16:32.5230000-07:00|4002284A|Ruby Carbuncle|54201|54201|10000|10000|||100.54|99.60|0.00|-3.11| +21|2023-10-06T21:16:32.5230000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|26380000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|21190175|40478540|10000|10000|||100.00|80.10|0.00|0.00|66582|90890|10000|10000|||95.32|85.74|0.00|2.45|00019A93|0|1| +37|2023-10-06T21:16:32.5670000-07:00|10FF0008|Kokosaze Lulusaze|00019A8E|50612||||||99.08|103.26|0.00|3.10| +37|2023-10-06T21:16:32.5670000-07:00|40022472|Zeromus|00019A90|21188726||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:32.1700000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:16:32.7000000-07:00|10FF0007|Kehabiqo Febiqo|00019A8E|76086||||||95.32|85.74|0.00|2.45| +39|2023-10-06T21:16:32.7010000-07:00|10FF0008|Kokosaze Lulusaze|51243|63151|10000|10000|||99.08|103.26|0.00|3.10| +24|2023-10-06T21:16:32.7450000-07:00|40022472|Zeromus|DoT|0|CCD|21188726|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|35877|57941|4600|10000|||86.69|92.85|0.00|2.46| +38|2023-10-06T21:16:32.7450000-07:00|40022472|Zeromus|005A5A00|21185449|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:32.7450000-07:00|EB0|Big Bang|30.00|E0000000||40022472|Zeromus|00|40478540|| +37|2023-10-06T21:16:32.7890000-07:00|40022472|Zeromus|00019A91|21175064||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:32.8330000-07:00|10FF0004|Buhojaqe Zijaqe|00019A8E|47271||||||114.07|107.93|0.00|-2.59| +37|2023-10-06T21:16:32.8330000-07:00|40022472|Zeromus|00019A8F|21162128||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:32.8790000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8400|10000|||111.93|85.94|0.00|-1.81| +39|2023-10-06T21:16:32.8790000-07:00|10FF0004|Buhojaqe Zijaqe|47841|57078|3300|10000|||113.79|107.76|0.00|-2.55| +36|2023-10-06T21:16:32.8790000-07:00|10A4|3| +261|2023-10-06T21:16:32.4490000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:16:32.9680000-07:00|10FF0003|Gegehi Gehi|00019A8E|51669||||||90.17|111.64|0.00|2.23| +39|2023-10-06T21:16:32.9680000-07:00|10FF0007|Kehabiqo Febiqo|76994|90890|10000|10000|||95.32|85.74|0.00|2.45| +39|2023-10-06T21:16:32.9680000-07:00|10FF0006|Wowobora Gogobora|38104|57266|6550|10000|||83.33|100.48|0.00|1.61| +37|2023-10-06T21:16:33.0570000-07:00|40022472|Zeromus|00019A93|21152344||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:16:33.0570000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|57078|57078| +22|2023-10-06T21:16:33.0570000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|47841|57078|3300|10000|||112.31|107.06|0.00|-2.25|47841|57078|3300|10000|||112.31|107.06|0.00|-2.25|00019A94|0|1| +21|2023-10-06T21:16:33.0570000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|2B3B0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|21162128|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2200|10000|||90.90|111.23|0.00|2.17|00019A95|0|1| +38|2023-10-06T21:16:33.0570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8400|10000|0||111.44|86.53|0.00|-1.82|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:33.0570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:16:33.0570000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|1900|10000|0||90.90|111.23|0.00|2.17|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:33.0570000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:16:33.0570000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:16:32.6570000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:16:32.6570000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:16:33.1910000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|724003|2A540000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|21152344|40478540|10000|10000|||100.00|80.10|0.00|0.00|51243|63151|10000|10000|||99.08|103.26|0.00|3.10|00019A96|0|1| +261|2023-10-06T21:16:32.7770000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:16:33.2350000-07:00|10FF0006|Wowobora Gogobora|00019A8E|47623||||||84.91|100.23|0.00|1.68| +38|2023-10-06T21:16:33.2350000-07:00|40022B29|Automaton Queen|005A5A00|0|59967|0|10000|0||94.19|97.03|0.00|2.81|0|0|0||||||| +30|2023-10-06T21:16:33.2350000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022B29|Automaton Queen|00|59967|51669| +38|2023-10-06T21:16:33.2350000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||100.54|99.60|0.00|-3.11|0|0|0||||||||||||| +30|2023-10-06T21:16:33.2350000-07:00|7AE|Summon Order IV|0.00|4002284A|Ruby Carbuncle|4002284A|Ruby Carbuncle|01|54201|54201| +261|2023-10-06T21:16:32.7770000-07:00|Change|40022B29||||||||| +37|2023-10-06T21:16:33.3230000-07:00|40022472|Zeromus|00019A92|21147732|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|F8|0|41700000|| +26|2023-10-06T21:16:33.3230000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|90349| +261|2023-10-06T21:16:32.8900000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:16:32.8900000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:16:33.5000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|71A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21147732|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8400|10000|||110.05|88.44|0.00|-1.85|00019A97|0|1| +31|2023-10-06T21:16:33.5000000-07:00|10FF0001||||| +21|2023-10-06T21:16:33.5880000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14F20000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|35877|57941|4600|10000|||91.28|96.10|0.00|2.57|54201|54201|10000|10000|||100.54|99.60|0.00|-2.88|00019A98|0|1| +21|2023-10-06T21:16:33.6790000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|21147732|40478540|10000|10000|||100.00|80.10|0.00|0.00|47623|57266|6550|10000|||87.72|99.81|0.00|1.72|00019A99|0|1| +21|2023-10-06T21:16:33.6790000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35877|57941|4600|10000|||91.28|96.10|0.00|2.57|35877|57941|4600|10000|||91.28|96.10|0.00|2.57|00019A9A|0|1| +261|2023-10-06T21:16:33.2100000-07:00|Change|40022B3B||||||||| +261|2023-10-06T21:16:33.2100000-07:00|Change|40022B3B||||||||| +38|2023-10-06T21:16:33.6790000-07:00|40022B3B|Carbuncle|005A5A00|0|54388|0|10000|0||83.92|99.44|0.00|-2.05|0|0|0|||||||||| +30|2023-10-06T21:16:33.6790000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022B3B|Carbuncle|00|54388|51669| +38|2023-10-06T21:16:33.6790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|47623|57266|6550|10000|0||87.72|99.81|0.00|1.72|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:33.6790000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:16:33.6790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35877|57941|4600|10000|0||91.28|96.10|0.00|2.57|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:33.6790000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|57941|57941| +38|2023-10-06T21:16:33.7230000-07:00|40022B57||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:16:33.7230000-07:00|40022B57||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +24|2023-10-06T21:16:33.7230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D9B|51243|63151|10000|10000|||99.08|103.26|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|47841|57078|3300|10000|||108.50|105.37|0.00|-2.11| +24|2023-10-06T21:16:33.7230000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D70|47841|57078|3300|10000|||108.50|105.37|0.00|-2.11|10FF0004|Buhojaqe Zijaqe|0|47841|57078|3300|10000|||108.50|105.37|0.00|-2.11| +24|2023-10-06T21:16:33.7230000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D11|35877|57941|4600|10000|||91.44|96.19|0.00|2.61|10FF0004|Buhojaqe Zijaqe|0|47841|57078|3300|10000|||108.50|105.37|0.00|-2.11| +24|2023-10-06T21:16:33.7230000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D9B|76994|90890|10000|10000|||96.25|88.03|-0.02|0.43|10FF0004|Buhojaqe Zijaqe|0|47841|57078|3300|10000|||108.50|105.37|0.00|-2.11| +24|2023-10-06T21:16:33.7230000-07:00|10FF0003|Gegehi Gehi|HoT|798|D60|51669|51669|1900|10000|||92.72|109.95|0.00|2.55|10FF0004|Buhojaqe Zijaqe|0|47841|57078|3300|10000|||108.50|105.37|0.00|-2.11| +24|2023-10-06T21:16:33.7230000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D41|47623|57266|6550|10000|||88.34|99.76|0.00|2.63|10FF0004|Buhojaqe Zijaqe|0|47841|57078|3300|10000|||108.50|105.37|0.00|-2.11| +24|2023-10-06T21:16:33.7230000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D46|90349|90349|8400|10000|||109.62|89.59|0.00|-1.86|10FF0004|Buhojaqe Zijaqe|0|47841|57078|3300|10000|||108.50|105.37|0.00|-2.11| +37|2023-10-06T21:16:33.7230000-07:00|10FF0004|Buhojaqe Zijaqe|00019A94|51281|57078|3300|10000|0||108.50|105.37|0.00|-2.11|1C00|0|0|02|05000798|0|41700000|||||| +26|2023-10-06T21:16:33.7230000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +26|2023-10-06T21:16:33.7230000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:16:33.7230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80477|90890|10000|10000|0||96.25|88.03|-0.02|0.43|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:33.7230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:16:33.7230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54726|63151|10000|10000|0||99.08|103.26|0.00|3.10|0|0|0|||||||||||||||| +26|2023-10-06T21:16:33.7230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:16:33.7230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51016|57266|6550|10000|0||88.34|99.76|0.00|2.63|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:33.7230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:16:33.7230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8400|10000|0||109.62|89.59|0.00|-1.86|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:33.7230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:16:33.7230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|51281|57078|3300|10000|0||108.50|105.37|0.00|-2.11|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:33.7230000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|1900|10000|0||92.72|109.95|0.00|2.55|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:33.7230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:16:33.7230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39222|57941|4600|10000|0||91.44|96.19|0.00|2.61|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:33.7230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|57941|57078| +21|2023-10-06T21:16:33.7670000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21147732|40478540|10000|10000|||100.00|80.10|0.00|0.00|47623|57266|6550|10000|||88.34|99.76|0.00|2.63|00019A9B|0|1| +37|2023-10-06T21:16:33.8110000-07:00|40022472|Zeromus|00019A95|21136665||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:33.8110000-07:00|10FF0003|Gegehi Gehi|00019A95|51669|51669|1900|10000|0||93.11|109.46|0.00|2.53|2300|0|0|01|050004D2|0|41F00000|| +38|2023-10-06T21:16:33.8110000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|1900|10000|0||93.11|109.46|0.00|2.53|0|0|0||||||||||||||||||| +261|2023-10-06T21:16:33.4010000-07:00|Add|40022B58||||||||||||||||||||||||||||||||| +03|2023-10-06T21:16:33.4010000-07:00|40022B57|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|54388|54388|10000|10000|||89.52|102.18|0.00|2.63| +261|2023-10-06T21:16:33.4010000-07:00|Add|40022B57||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:33.4010000-07:00|Change|40022B57||||| +21|2023-10-06T21:16:33.9440000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|716003|21010000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|21136665|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8400|10000|||108.67|90.41|0.00|-1.86|00019A9C|0|1| +261|2023-10-06T21:16:33.4920000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:16:33.4920000-07:00|Change|4002284A||||||||| +37|2023-10-06T21:16:33.9910000-07:00|40022472|Zeromus|00019A96|21125829||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:33.9910000-07:00|10FF0003|Gegehi Gehi|51669|51669|2100|10000|||93.40|109.10|0.00|2.52| +39|2023-10-06T21:16:33.9910000-07:00|10FF000A|Dukaro Nezikaro|39801|57941|4800|10000|||91.80|96.39|0.00|2.61| +261|2023-10-06T21:16:33.5850000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:16:34.0330000-07:00|40022472|Zeromus|00019A97|21124011||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:16:34.0330000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|106.77|104.10|0.00|-2.17| +261|2023-10-06T21:16:33.6970000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:16:34.1220000-07:00|40022B2B|Bunshin|54932|54932|10000|10000|||82.91|90.08|0.00|2.10| +21|2023-10-06T21:16:34.1670000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39801|57941|4800|10000|||91.97|96.48|-0.02|2.61|39801|57941|4800|10000|||91.97|96.48|-0.02|2.61|00019A9D|0|1| +38|2023-10-06T21:16:34.1670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39801|57941|4800|10000|0||91.97|96.48|-0.02|2.61|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:34.1670000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|57941|57941| +21|2023-10-06T21:16:34.2110000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|54726|63151|10000|10000|||99.08|103.26|0.00|3.10|00019A9E|0|1| +21|2023-10-06T21:16:34.2110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|5EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|39801|57941|4800|10000|||91.97|96.48|0.00|2.61|00019A9F|0|1| +261|2023-10-06T21:16:33.8170000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:16:34.3000000-07:00|40022472|Zeromus|00019A9B|21123838||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:34.3000000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|D750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2100|10000|||93.77|108.63|0.00|2.51|00019AA0|0|1| +261|2023-10-06T21:16:33.8170000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:16:34.3450000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C6F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|80477|90890|10000|10000|||97.22|91.30|0.00|0.30|00019AA1|0|1| +22|2023-10-06T21:16:34.3450000-07:00|40022472|Zeromus|8B4D|Big Crunch|10FF0007|Kehabiqo Febiqo|750003|627F0000|300E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|80477|90890|10000|10000|||97.22|91.30|0.00|0.30|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019AA2|0|7| +22|2023-10-06T21:16:34.3450000-07:00|40022472|Zeromus|8B4D|Big Crunch|10FF0001|Sesuga Sapisuga|EC750005|4CD60000|300E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|90349|90349|8400|10000|||107.44|91.81|0.00|-1.88|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019AA2|1|7| +22|2023-10-06T21:16:34.3450000-07:00|40022472|Zeromus|8B4D|Big Crunch|10FF000A|Dukaro Nezikaro|750003|A0B10000|1E0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|39801|57941|4800|10000|||91.97|96.48|0.00|2.61|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019AA2|2|7| +22|2023-10-06T21:16:34.3450000-07:00|40022472|Zeromus|8B4D|Big Crunch|10FF0006|Wowobora Gogobora|750003|C7A30000|6D0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|51016|57266|6550|10000|||91.60|99.73|0.00|1.60|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019AA2|3|7| +22|2023-10-06T21:16:34.3450000-07:00|40022472|Zeromus|8B4D|Big Crunch|10FF0008|Kokosaze Lulusaze|750003|9A400000|BC0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|54726|63151|10000|10000|||99.08|103.26|0.00|3.10|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019AA2|4|7| +22|2023-10-06T21:16:34.3450000-07:00|40022472|Zeromus|8B4D|Big Crunch|10FF0004|Buhojaqe Zijaqe|750003|95A00000|730E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|51281|57078|3300|10000|||106.13|103.58|0.00|-2.43|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019AA2|5|7| +22|2023-10-06T21:16:34.3450000-07:00|40022472|Zeromus|8B4D|Big Crunch|10FF0003|Gegehi Gehi|750003|8D970000|D40E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|51669|51669|2100|10000|||93.77|108.63|0.00|2.51|21124011|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019AA2|6|7| +261|2023-10-06T21:16:33.9340000-07:00|Change|40022472||||||||||| +37|2023-10-06T21:16:34.3900000-07:00|10FF000A|Dukaro Nezikaro|00019A98|45163||||||91.98|96.49|0.00|2.61| +24|2023-10-06T21:16:34.3900000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D04|54726|63151|10000|10000|||99.08|103.26|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|51281|57078|3300|10000|||105.87|103.38|0.00|-2.61| +24|2023-10-06T21:16:34.3900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|156B|51281|57078|3300|10000|||105.87|103.38|0.00|-2.61|10FF0004|Buhojaqe Zijaqe|0|51281|57078|3300|10000|||105.87|103.38|0.00|-2.61| +24|2023-10-06T21:16:34.3900000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|DA0|80477|90890|10000|10000|||97.33|91.83|0.00|0.24|10FF0004|Buhojaqe Zijaqe|0|51281|57078|3300|10000|||105.87|103.38|0.00|-2.61| +24|2023-10-06T21:16:34.3900000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15B8|51016|57266|6550|10000|||92.14|99.69|0.00|1.61|10FF0004|Buhojaqe Zijaqe|0|51281|57078|3300|10000|||105.87|103.38|0.00|-2.61| +24|2023-10-06T21:16:34.3900000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D09|90349|90349|8400|10000|||107.24|92.43|0.00|-1.88|10FF0004|Buhojaqe Zijaqe|0|51281|57078|3300|10000|||105.87|103.38|0.00|-2.61| +24|2023-10-06T21:16:34.3900000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D6F|39801|57941|4800|10000|||91.98|96.49|0.00|2.61|10FF0004|Buhojaqe Zijaqe|0|51281|57078|3300|10000|||105.87|103.38|0.00|-2.61| +24|2023-10-06T21:16:34.3900000-07:00|10FF0003|Gegehi Gehi|HoT|798|D21|51669|51669|2100|10000|||93.77|108.63|0.00|2.93|10FF0004|Buhojaqe Zijaqe|0|51281|57078|3300|10000|||105.87|103.38|0.00|-2.61| +38|2023-10-06T21:16:34.3900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|83965|90890|10000|10000|0||97.33|91.83|0.00|0.24|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:16:34.3900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58058|63151|10000|10000|0||99.08|103.26|0.00|3.10|0|0|0|||||||||||||||| +38|2023-10-06T21:16:34.3900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56576|57266|6550|10000|0||92.14|99.69|0.00|1.61|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:16:34.3900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8400|10000|0||107.24|92.43|0.00|-1.88|0|0|0||||||||||||||||||| +38|2023-10-06T21:16:34.3900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56764|57078|3850|10000|0||105.87|103.38|0.00|-2.61|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:34.3900000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2100|10000|0||93.77|108.63|0.00|2.93|0|0|0||||||||||||||||||| +38|2023-10-06T21:16:34.3900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48602|57941|4800|10000|0||91.98|96.49|0.00|2.61|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:16:33.9340000-07:00|Change|10FF000A||||||||||| +24|2023-10-06T21:16:34.4780000-07:00|40022472|Zeromus|DoT|A92|543|21123838|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|56576|57266|6550|10000|||92.71|99.67|-0.02|1.61| +38|2023-10-06T21:16:34.4780000-07:00|40022472|Zeromus|005A5A00|21122491|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:16:34.4780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56576|57266|7100|10000|0||92.71|99.67|-0.02|1.61|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:34.5680000-07:00|40022472|Zeromus|00019A9C|21114042||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:34.5680000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40022472|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21123838|40478540|10000|10000|||100.00|80.10|0.00|0.00|56576|57266|6550|10000|||92.71|99.67|-0.02|1.61|00019AA3|0|1| +37|2023-10-06T21:16:34.7010000-07:00|10FF0006|Wowobora Gogobora|00019A99|56576|57266|7100|10000|0||94.25|99.68|0.00|2.86|1B00|0|0|01|0AA4|0|0|| +21|2023-10-06T21:16:34.7010000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|554003|30540000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|21114042|40478540|10000|10000|||100.00|80.10|0.00|0.00|48602|57941|4800|10000|||93.02|97.10|0.00|2.61|00019AA4|0|1| +38|2023-10-06T21:16:34.7010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56576|57266|7100|10000|0||94.25|99.68|0.00|2.86|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:16:34.7010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48602|57941|4800|10000|0||93.02|97.10|0.00|2.61|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:34.7010000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|57941|57941| +26|2023-10-06T21:16:34.7010000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|57941|57941| +261|2023-10-06T21:16:34.2480000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:16:34.7460000-07:00|40022472|Zeromus|00019A9F|21112524||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:34.7460000-07:00|10FF000A|Dukaro Nezikaro|00019A9F|48602|57941|4800|10000|0||93.02|97.10|0.00|2.61|1E00|0|0|01|06000A82|01|C1F00000|| +261|2023-10-06T21:16:34.3430000-07:00|Change|40022B57||| +37|2023-10-06T21:16:34.8790000-07:00|40022472|Zeromus|00019AA1|21109341||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:34.8790000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2100|10000|0||95.62|100.13|0.00|2.93|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:34.8790000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:16:34.9230000-07:00|40022472|Zeromus|00019AA0|21105896||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:34.4370000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:16:34.9690000-07:00|40022472|Zeromus|00019A9E|21103371||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:34.9690000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|26560000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|21109341|40478540|10000|10000|||100.00|80.10|0.00|0.00|83965|90890|10000|10000|||97.79|95.16|0.00|0.14|00019AA5|0|1| +21|2023-10-06T21:16:34.9690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|756003|6B520000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|21109341|40478540|10000|10000|||100.00|80.10|0.00|0.00|56764|57078|3850|10000|||105.46|103.04|0.00|-2.91|00019AA6|0|1| +21|2023-10-06T21:16:34.9690000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21109341|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2100|10000|||95.63|100.12|0.00|2.93|00019AA7|0|1| +21|2023-10-06T21:16:35.0120000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|720003|136B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21103371|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2100|10000|||95.63|100.12|0.00|2.93|00019AA8|0|1| +38|2023-10-06T21:16:35.0120000-07:00|40022B2B|Bunshin|005A5A00|54932|54932|10000|10000|0||82.91|90.08|0.00|2.10|0|0|0||||||| +26|2023-10-06T21:16:35.0120000-07:00|30|Well Fed|2093.88|10FF000A|Dukaro Nezikaro|40022B2B|Bunshin|294E|54932|57941| +26|2023-10-06T21:16:35.0120000-07:00|441|HP Penalty|9999.00|E0000000||40022B2B|Bunshin|00|54932|| +38|2023-10-06T21:16:35.0120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48602|57941|4800|10000|0||94.10|97.73|0.00|2.81|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:35.0120000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|57941|51669| +261|2023-10-06T21:16:34.5320000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:16:35.1460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8400|10000|0||104.91|95.97|0.00|-1.89|0|0|0|||||||||||||||| +30|2023-10-06T21:16:35.1460000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|90349|51669| +37|2023-10-06T21:16:35.1920000-07:00|40022472|Zeromus|00019AA3|21103371|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004B3|0|41200000|| +30|2023-10-06T21:16:35.1920000-07:00|EB0|Big Bang|0.00|E0000000||40022472|Zeromus|00|40478540|| +26|2023-10-06T21:16:35.1920000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40022472|Zeromus|00|40478540|57266| +38|2023-10-06T21:16:35.1920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|83965|129844|10000|10000|0||97.86|96.01|0.00|3.01|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:16:35.1920000-07:00|40022B2B|Bunshin|005A5A00|54932|78475|10000|10000|0||82.91|90.08|0.00|2.10|0|0|0|||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||40022B2B|Bunshin|00|54932|| +38|2023-10-06T21:16:35.1920000-07:00|10FF0009|Zewo Negiwo|005A5A18|0|81177|0|10000|0||82.28|100.65|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||10FF0009|Zewo Negiwo|00|56823|| +38|2023-10-06T21:16:35.1920000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.54|99.60|0.00|-2.48|0|0|0||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||4002284A|Ruby Carbuncle|00|54201|| +38|2023-10-06T21:16:35.1920000-07:00|40022B57|Ruby Ifrit|005A5A00|54388|77698|10000|10000|0||89.52|102.18|0.00|2.63|0|0|0||||||| +26|2023-10-06T21:16:35.1920000-07:00|30|Well Fed|1478.08|10FF0006|Wowobora Gogobora|40022B57|Ruby Ifrit|2964|54388|57266| +26|2023-10-06T21:16:35.1920000-07:00|511|Embolden|0.18|10FF0003|Gegehi Gehi|40022B57|Ruby Ifrit|00|54388|51669| +38|2023-10-06T21:16:35.1920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58058|90216|10000|10000|0||99.08|103.26|0.00|3.10|0|0|0|||||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +38|2023-10-06T21:16:35.1920000-07:00|40022472|Zeromus|005A5A00|21103371|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|57078| +38|2023-10-06T21:16:35.1920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56576|81809|7100|10000|0||94.94|99.67|0.00|2.68|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:16:35.1920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|129071|8400|10000|0||104.91|95.97|0.00|-1.89|0|0|0||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:16:35.1920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56764|81541|3450|10000|0||105.46|103.04|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:16:35.1920000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|73814|2100|10000|0||95.63|100.12|0.00|2.93|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:16:35.1920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48602|82773|4800|10000|0||94.06|97.71|0.00|2.81|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:35.1920000-07:00|441|HP Penalty|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|57941|| +261|2023-10-06T21:16:34.7680000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:16:35.2340000-07:00|10FF0007|Kehabiqo Febiqo|00019AA2|58750|129844|10000|10000|0||97.87|96.10|0.00|3.01|1500|0|0|01|05000EB1|0|41700000|| +26|2023-10-06T21:16:35.2340000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +37|2023-10-06T21:16:35.2790000-07:00|10FF0001|Sesuga Sapisuga|00019AA2|70679|129071|8400|10000|0||104.72|96.55|0.00|-1.89|1301|0|0|01|04000EB1|0|41700000|| +26|2023-10-06T21:16:35.2790000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +38|2023-10-06T21:16:35.2790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58058|90216|10000|10000|0||99.08|103.26|0.00|3.10|0|0|0|||||||||||||||| +30|2023-10-06T21:16:35.2790000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +37|2023-10-06T21:16:35.3240000-07:00|10FF000A|Dukaro Nezikaro|00019AA2|7465|82773|4800|10000|0||95.27|98.42|0.00|2.73|1E02|0|0|02|04000EB1|0|41700000|||||| +26|2023-10-06T21:16:35.3240000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|40478540| +37|2023-10-06T21:16:35.3690000-07:00|10FF0006|Wowobora Gogobora|00019AA2|5469|81809|7100|10000|0||96.44|99.61|0.00|2.08|1B03|0|0|01|06000EB1|0|41700000|| +26|2023-10-06T21:16:35.3690000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +261|2023-10-06T21:16:34.8890000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T21:16:35.4140000-07:00|10FF0008|Kokosaze Lulusaze|00019AA2|18570|90216|10000|10000|0||99.08|103.26|0.00|3.10|1F04|0|0|01|02000EB1|0|41700000|| +26|2023-10-06T21:16:35.4140000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +37|2023-10-06T21:16:35.4140000-07:00|40022472|Zeromus|00019AA4|21090999||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:35.4140000-07:00|10FF000A|Dukaro Nezikaro|00019AA4|7465|82773|4800|10000|0||95.97|98.83|0.00|2.68|1E00|0|0|01|06000A82|01|41F00000|| +38|2023-10-06T21:16:35.4140000-07:00|40022B57|Ruby Ifrit|005A5A00|54388|77698|10000|10000|0||89.52|102.18|0.00|2.63|0|0|0|||| +30|2023-10-06T21:16:35.4140000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022B57|Ruby Ifrit|00|77698|73814| +38|2023-10-06T21:16:35.4140000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|5469|81809|7100|10000|0||97.04|99.70|-0.02|1.91|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:35.4140000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +38|2023-10-06T21:16:35.4140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|7465|82773|4800|10000|0||95.97|98.83|0.00|2.68|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:16:35.4580000-07:00|10FF0004|Buhojaqe Zijaqe|00019AA2|18460|81541|3450|10000|0||105.44|103.04|0.00|-2.39|1C05|0|0|01|07000EB1|0|41700000|| +26|2023-10-06T21:16:35.4580000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +261|2023-10-06T21:16:35.0080000-07:00|Change|10FF000A||||||||||| +37|2023-10-06T21:16:35.5030000-07:00|10FF0003|Gegehi Gehi|00019AA2|15422|73814|2100|10000|0||95.58|100.16|0.00|-2.28|2306|0|0|01|03000EB1|0|41700000|| +26|2023-10-06T21:16:35.5030000-07:00|EB1|Big Bounce|15.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +37|2023-10-06T21:16:35.5030000-07:00|40022472|Zeromus|00019AA7|21090998||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:35.5030000-07:00|4002284A|Ruby Carbuncle|54201|77430|10000|10000|||100.54|99.60|0.00|-3.04| +21|2023-10-06T21:16:35.5480000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|754003|1A4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21090999|40478540|10000|10000|||100.00|80.10|0.00|0.00|7465|82773|4800|10000|||96.57|99.18|0.00|2.65|00019AA9|0|1| +38|2023-10-06T21:16:35.5480000-07:00|4002284A|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.54|99.60|0.00|-3.04|0|0|0|||| +30|2023-10-06T21:16:35.5480000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002284A|Ruby Carbuncle|00|77430|73814| +38|2023-10-06T21:16:35.5480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|18460|81541|3450|10000|0||105.43|103.04|0.00|-2.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:35.5480000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:16:35.5920000-07:00|40022472|Zeromus|00019AA5|21081184||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:35.5920000-07:00|40022472|Zeromus|00019AA8|21076213||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:35.6810000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|4E9B0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|21076213|40478540|10000|10000|||100.00|80.10|0.00|0.00|18570|90216|10000|10000|||99.08|103.26|0.00|3.10|00019AAA|0|1| +26|2023-10-06T21:16:35.6810000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:16:35.6810000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|752003|1C080000|104|A7A8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|21076213|40478540|10000|10000|||100.00|80.10|0.00|0.00|18460|81541|3450|10000|||105.02|102.88|0.00|-2.04|00019AAB|0|1| +21|2023-10-06T21:16:35.6810000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|734003|CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21076213|40478540|10000|10000|||100.00|80.10|0.00|0.00|18460|81541|3450|10000|||105.02|102.88|0.00|-2.04|00019AAC|0|1| +38|2023-10-06T21:16:35.6810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|58750|129844|10000|10000|0||98.06|98.05|0.00|0.89|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:16:35.6810000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +261|2023-10-06T21:16:35.2250000-07:00|Change|40022B3B||||||||| +39|2023-10-06T21:16:35.7240000-07:00|10FF0008|Kokosaze Lulusaze|19472|90216|10000|10000|||99.08|103.26|0.00|3.10| +20|2023-10-06T21:16:35.7240000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|95.51|100.25|-0.02|-1.79| +261|2023-10-06T21:16:35.3150000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:16:35.7690000-07:00|40022472|Zeromus|00019AA6|21048739||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:35.7690000-07:00|40022B57|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|154003|7A940000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|21076213|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|77698|10000|10000|||89.52|102.18|0.00|2.63|00019AAD|0|1| +24|2023-10-06T21:16:35.7690000-07:00|40022472|Zeromus|DoT|0|283|21076213|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|7465|82773|4800|10000|||97.83|99.92|0.00|2.99| +21|2023-10-06T21:16:35.7690000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21076213|40478540|10000|10000|||100.00|80.10|0.00|0.00|70679|129071|8400|10000|||103.69|99.65|0.00|-1.89|00019AAE|0|1| +38|2023-10-06T21:16:35.7690000-07:00|40022472|Zeromus|005A5A00|21048096|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +31|2023-10-06T21:16:35.7690000-07:00|10FF0001||||| +39|2023-10-06T21:16:35.8580000-07:00|10FF0001|Sesuga Sapisuga|71969|129071|8600|10000|||103.69|99.65|0.00|-1.89| +36|2023-10-06T21:16:35.8580000-07:00|1180|3| +39|2023-10-06T21:16:35.9030000-07:00|10FF0004|Buhojaqe Zijaqe|19275|81541|3650|10000|||103.61|102.32|-0.02|-2.96| +261|2023-10-06T21:16:35.5090000-07:00|Change|10FF0004||||||||||||||||||||||||| +39|2023-10-06T21:16:35.9920000-07:00|10FF0007|Kehabiqo Febiqo|60048|129844|10000|10000|||98.68|98.59|0.00|2.36| +39|2023-10-06T21:16:35.9920000-07:00|10FF0006|Wowobora Gogobora|6287|81809|7300|10000|||99.41|100.27|0.00|1.65| +261|2023-10-06T21:16:35.6090000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:16:35.6090000-07:00|Change|10FF0006||||||||||| +20|2023-10-06T21:16:36.1250000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|99.41|100.27|0.00|1.65| +38|2023-10-06T21:16:36.1700000-07:00|10FF0009|Zewo Negiwo|005A5A18|16235|81177|2000|10000|0||82.28|100.65|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:16:36.1700000-07:00|94|Raise|0.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|08|81177|81809| +30|2023-10-06T21:16:36.1700000-07:00|2B|Weakness|0.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +26|2023-10-06T21:16:36.1700000-07:00|2C|Brink of Death|100.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +26|2023-10-06T21:16:36.1700000-07:00|1A2|Transcendent|5.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +261|2023-10-06T21:16:35.7230000-07:00|Change|10FF0009||||| +37|2023-10-06T21:16:36.2140000-07:00|40022472|Zeromus|00019AAC|21047894||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:36.2140000-07:00|40022472|Zeromus|00019AA9|21041163||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:36.3040000-07:00|40022472|Zeromus|00019AAE|21039860||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:36.3930000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|7460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21039860|40478540|10000|10000|||100.00|80.10|0.00|0.00|7465|82773|4800|10000|||99.57|100.94|0.00|2.61|00019AAF|0|1| +261|2023-10-06T21:16:35.9640000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:16:36.4820000-07:00|40022472|Zeromus|00019AAA|21019737||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:36.4820000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|17880000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|21039860|40478540|10000|10000|||100.00|80.10|0.00|0.00|71969|129071|8600|10000|||101.15|101.79|0.00|-2.66|00019AB0|0|1| +21|2023-10-06T21:16:36.4820000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|FC20E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|21039860|40478540|10000|10000|||100.00|80.10|0.00|0.00|19275|81541|3650|10000|||101.97|101.72|0.00|-2.41|00019AB1|0|1| +21|2023-10-06T21:16:36.5700000-07:00|10FF000A|Dukaro Nezikaro|8C1|Shade Shift|10FF000A|Dukaro Nezikaro|AA0E|1E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7465|82773|4800|10000|||99.57|100.94|0.00|2.61|7465|82773|4800|10000|||99.57|100.94|0.00|2.61|00019AB2|0|1| +37|2023-10-06T21:16:36.7040000-07:00|40022472|Zeromus|00019AAB|21012561||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:36.7040000-07:00|10FF0004|Buhojaqe Zijaqe|00019AAB|21957||||||101.20|101.42|0.00|-3.12| +21|2023-10-06T21:16:36.8830000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|BF70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21012561|40478540|10000|10000|||100.00|80.10|0.00|0.00|19472|90216|10000|10000|||99.23|103.01|0.00|2.91|00019AB3|0|1| +37|2023-10-06T21:16:36.9270000-07:00|40022472|Zeromus|00019AAF|21010699||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:36.9270000-07:00|10FF0009|Zewo Negiwo|8C|Benediction|10FF0009|Zewo Negiwo|4|3D194001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16235|81177|2000|10000|||82.29|100.68|0.00|0.47|16235|81177|2000|10000|||82.29|100.68|0.00|0.47|00019AB4|0|1| +38|2023-10-06T21:16:36.9270000-07:00|10FF0009|Zewo Negiwo|005A5A18|16235|81177|2000|10000|0||82.29|100.68|0.00|0.47|0|0|0||||||||||||| +30|2023-10-06T21:16:36.9270000-07:00|1A2|Transcendent|0.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +37|2023-10-06T21:16:36.9730000-07:00|10FF000A|Dukaro Nezikaro|00019AB2|7465|82773|4800|10000|19||99.57|100.94|0.00|2.61|1E00|0|0|01|080001E8|0|41A00000|| +26|2023-10-06T21:16:36.9730000-07:00|1E8|Shade Shift|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +39|2023-10-06T21:16:36.9730000-07:00|10FF0003|Gegehi Gehi|16160|73814|2300|10000|||95.14|100.69|0.00|2.91| +39|2023-10-06T21:16:36.9730000-07:00|10FF000A|Dukaro Nezikaro|8292|82773|5000|10000|||99.57|100.94|0.00|2.61| +38|2023-10-06T21:16:36.9730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|8292|82773|5000|10000|19||99.57|100.94|0.00|2.61|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:16:36.4610000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:16:36.4610000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T21:16:36.4610000-07:00|Change|10FF0004||||||||||| +04|2023-10-06T21:16:36.5580000-07:00|40022B29|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|59967|0|10000|||94.19|97.03|0.00|2.81| +261|2023-10-06T21:16:36.5580000-07:00|Remove|40022B29| +37|2023-10-06T21:16:37.1050000-07:00|40022472|Zeromus|00019AB1|21010699|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:16:37.1050000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +39|2023-10-06T21:16:37.1050000-07:00|40022B2B|Bunshin|54932|78475|10000|10000|||82.91|90.08|0.00|2.10| +21|2023-10-06T21:16:37.1510000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|11740000|104|6868000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|21010699|40478540|10000|10000|||100.00|80.10|0.00|0.00|21957|81541|3250|10000|||100.87|101.02|0.00|2.86|00019AB5|0|1| +21|2023-10-06T21:16:37.1510000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|154003|2D630000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|21010699|40478540|10000|10000|||100.00|80.10|0.00|0.00|16160|73814|2300|10000|||95.14|100.69|0.00|2.91|00019AB6|0|1| +38|2023-10-06T21:16:37.1510000-07:00|10FF0003|Gegehi Gehi|005A5A23|16160|73814|2100|10000|0||95.14|100.69|0.00|2.91|0|0|0|||||||||||||||| +26|2023-10-06T21:16:37.1510000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:16:37.1510000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:16:37.1510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|21957|81541|3250|10000|0||100.87|101.02|0.00|2.86|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:37.1510000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +24|2023-10-06T21:16:37.1940000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|1D4E|19472|90216|10000|10000|||99.23|103.01|0.00|2.91|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|21957|81541|3250|10000|||100.89|100.86|0.00|-3.10| +38|2023-10-06T21:16:37.1940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|11970|90216|10000|10000|0||99.23|103.01|0.00|2.91|0|0|0|||||||||||||||| +37|2023-10-06T21:16:37.2390000-07:00|40022472|Zeromus|00019AB0|21004675||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:37.2390000-07:00|10FF0001|Sesuga Sapisuga|00019AB0|71969|129071|9600|10000|0||100.29|101.27|0.00|3.14|1300|0|0|0| +38|2023-10-06T21:16:37.2390000-07:00|40022472|Zeromus|005A5A00|21004675|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:37.2390000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40022472|Zeromus|00|40478540|129844| +261|2023-10-06T21:16:36.7820000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:16:37.2830000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|0|8292|82773|5000|10000|||99.57|100.94|0.00|2.61|10FF000A|Dukaro Nezikaro|FFFFFFFF|8292|82773|5000|10000|||99.57|100.94|0.00|2.61| +38|2023-10-06T21:16:37.2830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|8292|82773|5000|10000|10||99.57|100.94|0.00|2.61|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:16:37.3280000-07:00|10FF0003|Gegehi Gehi|DoT|0|1BD9|16160|73814|2100|10000|||95.14|100.69|0.00|2.91|10FF0003|Gegehi Gehi|FFFFFFFF|16160|73814|2100|10000|||95.14|100.69|0.00|2.91| +21|2023-10-06T21:16:37.3280000-07:00|10FF000A|Dukaro Nezikaro|1D7D|Feint|40022472|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21004675|40478540|10000|10000|||100.00|80.10|0.00|0.00|8292|82773|5000|10000|||99.57|100.94|0.00|2.61|00019AB7|0|1| +38|2023-10-06T21:16:37.3280000-07:00|10FF0003|Gegehi Gehi|005A5A23|9031|73814|2100|10000|0||95.14|100.69|0.00|2.91|0|0|0|||||||||||||||| +21|2023-10-06T21:16:37.3740000-07:00|4002284A|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|22550000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|11970|90216|10000|10000|||99.23|103.01|0.00|2.91|54201|77430|10000|10000|||100.54|99.60|0.00|-1.93|00019AB8|0|1| +24|2023-10-06T21:16:37.3740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D06|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10| +24|2023-10-06T21:16:37.3740000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1546|71969|129071|9600|10000|||100.29|101.27|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10| +24|2023-10-06T21:16:37.3740000-07:00|10FF0006|Wowobora Gogobora|HoT|798|DA6|6287|81809|7300|10000|||99.41|100.27|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10| +24|2023-10-06T21:16:37.3740000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D21|8292|82773|5000|10000|||99.57|100.94|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10| +24|2023-10-06T21:16:37.3740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D6B|60048|129844|10000|10000|||98.80|98.62|0.00|-3.04|10FF0004|Buhojaqe Zijaqe|0|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10| +24|2023-10-06T21:16:37.3740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|14DE|11970|90216|10000|10000|||99.23|103.01|0.00|2.91|10FF0004|Buhojaqe Zijaqe|0|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10| +24|2023-10-06T21:16:37.3740000-07:00|10FF0003|Gegehi Gehi|HoT|798|D11|9031|73814|2100|10000|||95.14|100.69|0.00|2.91|10FF0004|Buhojaqe Zijaqe|0|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10| +24|2023-10-06T21:16:37.3740000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1A4C|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10|40022472|Zeromus|FFFFFFFF|21004675|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:37.3740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|63483|129844|10000|10000|0||98.80|98.62|0.00|-3.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:37.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:16:37.3740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|17312|90216|10000|10000|0||99.23|103.01|0.00|2.91|0|0|0|||||||||||||||| +26|2023-10-06T21:16:37.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:16:37.3740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|9781|81809|7300|10000|0||99.41|100.27|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:37.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:16:37.3740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|77415|129071|9600|10000|0||100.29|101.27|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:16:37.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:16:37.3740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|18559|81541|3800|10000|0||100.91|100.72|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:37.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:16:37.3740000-07:00|10FF0003|Gegehi Gehi|005A5A23|12376|73814|2100|10000|0||95.14|100.69|0.00|2.91|0|0|0|||||||||||||||| +26|2023-10-06T21:16:37.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:16:37.3740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|11653|82773|5000|10000|10||99.57|100.94|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:37.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +21|2023-10-06T21:16:37.4180000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|54430000|143E|340000|4|173C8000|11B|2A8000|0|0|0|0|0|0|0|0|21004675|40478540|10000|10000|||100.00|80.10|0.00|0.00|60048|129844|10000|10000|||98.80|98.62|0.00|-3.04|00019AB9|0|1| +24|2023-10-06T21:16:37.4630000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|1251|60048|129844|10000|10000|||98.80|98.62|0.00|-3.04|10FF0007|Kehabiqo Febiqo|FFFFFFFF|60048|129844|10000|10000|||98.80|98.62|0.00|-3.04| +24|2023-10-06T21:16:37.4630000-07:00|40022472|Zeromus|DoT|A92|6A0|21004675|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|6287|81809|7300|10000|||99.41|100.27|0.00|3.11| +23|2023-10-06T21:16:37.4630000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|Interrupted| +24|2023-10-06T21:16:37.4630000-07:00|10FF0006|Wowobora Gogobora|DoT|0|2724|6287|81809|7300|10000|||99.41|100.27|0.00|3.11|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|21957|81541|3250|10000|||100.91|100.72|0.00|-3.10| +38|2023-10-06T21:16:37.4630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|58794|129844|10000|10000|0||98.80|98.62|0.00|-3.04|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:16:37.4630000-07:00|40022472|Zeromus|005A5A00|21002979|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:16:37.4630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|0|81809|0|10000|0||99.41|100.27|0.00|3.11|0|0|0|||||||||| +30|2023-10-06T21:16:37.4630000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T21:16:37.4630000-07:00|6FD|Vulnerability Up|0.00|40022490|Zeromus|10FF0006|Wowobora Gogobora|02|81809|44| +30|2023-10-06T21:16:37.4630000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T21:16:37.4630000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T21:16:37.4630000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +30|2023-10-06T21:16:37.4630000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T21:16:37.4630000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +261|2023-10-06T21:16:37.0060000-07:00|Change|40022B57||||||| +04|2023-10-06T21:16:37.0060000-07:00|40022B3B|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||83.97|99.32|0.00|-2.32| +261|2023-10-06T21:16:37.0060000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T21:16:37.0060000-07:00|Remove|40022B3B| +261|2023-10-06T21:16:37.1250000-07:00|Change|4002284A||||||||||| +37|2023-10-06T21:16:37.5500000-07:00|10FF0009|Zewo Negiwo|00019AB4|81177||||||84.89|101.07|0.00|1.30| +24|2023-10-06T21:16:37.5950000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|1246|77415|129071|9600|10000|||100.29|101.27|0.00|3.14|40022472|Zeromus|FFFFFFFF|21002979|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:37.5950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|72737|129071|9600|10000|0||100.29|101.27|0.00|3.14|0|0|0|||||||||||||||| +37|2023-10-06T21:16:37.6400000-07:00|40022472|Zeromus|00019AB3|20999916||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:16:37.6400000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|188B0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|00019ABA|0|8| +22|2023-10-06T21:16:37.6400000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|21980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21002979|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|00019ABA|1|8| +22|2023-10-06T21:16:37.6400000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|200004|25CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12376|73814|2100|10000|||95.14|100.69|0.00|2.91|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|00019ABA|2|8| +22|2023-10-06T21:16:37.6400000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0007|Kehabiqo Febiqo|200004|25E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58794|129844|10000|10000|||98.80|98.62|0.00|3.08|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|00019ABA|3|8| +22|2023-10-06T21:16:37.6400000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|179F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17312|90216|10000|10000|||99.23|103.01|0.00|2.91|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|00019ABA|4|8| +22|2023-10-06T21:16:37.6400000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|178B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11653|82773|5000|10000|||99.57|100.94|0.00|3.12|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|00019ABA|5|8| +22|2023-10-06T21:16:37.6400000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|200004|26890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77415|129071|9600|10000|||100.29|101.27|0.00|3.14|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|00019ABA|6|8| +22|2023-10-06T21:16:37.6400000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|17270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18559|81541|3800|10000|||100.93|100.61|0.00|-3.10|81177|81177|2000|10000|||85.38|101.14|0.00|1.35|00019ABA|7|8| +21|2023-10-06T21:16:37.7280000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BC60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20999916|40478540|10000|10000|||100.00|80.10|0.00|0.00|58794|129844|10000|10000|||98.80|98.61|-0.02|3.09|00019ABB|0|1| +21|2023-10-06T21:16:37.7720000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|244B0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|20999916|40478540|10000|10000|||100.00|80.10|0.00|0.00|72737|129071|9600|10000|||100.29|101.27|0.00|3.14|00019ABC|0|1| +38|2023-10-06T21:16:37.8170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|18559|81541|3800|10000|0||100.94|100.58|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:37.8170000-07:00|317|Dissipation|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:16:37.8170000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:16:37.8170000-07:00|10FF0004|Buhojaqe Zijaqe|E03|Dissipation|10FF0004|Buhojaqe Zijaqe|140E|3170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18559|81541|3800|10000|||100.94|100.58|0.00|-3.10|18559|81541|3800|10000|||100.94|100.58|0.00|-3.10|00019ABD|0|1| +261|2023-10-06T21:16:37.3100000-07:00|Change|4002284A||||||||||||| +37|2023-10-06T21:16:37.8610000-07:00|40022472|Zeromus|00019AB7|20999916|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004AB|0|41200000|| +26|2023-10-06T21:16:37.8610000-07:00|4AB|Feint|10.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +261|2023-10-06T21:16:37.4030000-07:00|Remove|40022B3E| +37|2023-10-06T21:16:37.9490000-07:00|40022472|Zeromus|00019AB6|20988297||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:37.5020000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T21:16:37.5020000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:16:37.6020000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:16:38.0390000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|11580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20988297|40478540|10000|10000|||100.00|80.10|0.00|0.00|58794|129844|10000|10000|||98.72|97.48|0.00|-3.09|00019ABE|0|1| +21|2023-10-06T21:16:38.0390000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|8A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20988297|40478540|10000|10000|||100.00|80.10|0.00|0.00|72737|129071|9600|10000|||100.28|100.32|0.00|-3.13|00019ABF|0|1| +31|2023-10-06T21:16:38.0390000-07:00|10FF0001||||| +37|2023-10-06T21:16:38.1730000-07:00|40022472|Zeromus|00019ABC|20979006||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:38.1730000-07:00|10FF0001|Sesuga Sapisuga|00019ABC|72737|129071|10000|10000|0||100.28|100.32|0.00|-3.13|1300|0|0|0| +21|2023-10-06T21:16:38.1730000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44722003|63580000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|20988297|40478540|10000|10000|||100.00|80.10|0.00|0.00|17312|90216|10000|10000|||99.23|103.01|0.00|2.91|00019AC0|0|1| +21|2023-10-06T21:16:38.1730000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|29980000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|20988297|40478540|10000|10000|||100.00|80.10|0.00|0.00|12376|73814|2100|10000|||95.14|100.69|0.00|2.91|00019AC1|0|1| +38|2023-10-06T21:16:38.1730000-07:00|10FF0003|Gegehi Gehi|005A5A23|12376|73814|1800|10000|0||95.14|100.69|0.00|2.91|0|0|0||||||||||||| +30|2023-10-06T21:16:38.1730000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:16:38.2170000-07:00|40022472|Zeromus|00019AB5|20974538||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:38.2170000-07:00|10FF0004|Buhojaqe Zijaqe|00019AB5|20229|81541|3800|10000|0||100.94|100.57|0.00|-3.10|1C00|0|0|01|03000317|0|C1F00000|| +37|2023-10-06T21:16:38.2620000-07:00|40022472|Zeromus|00019ABB|20971524||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:38.2620000-07:00|10FF000A|Dukaro Nezikaro|1D76|Bloodbath|10FF000A|Dukaro Nezikaro|190E|540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11653|82773|5000|10000|||99.57|100.94|0.00|3.12|11653|82773|5000|10000|||99.57|100.94|0.00|3.12|00019AC2|0|1| +261|2023-10-06T21:16:37.8410000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:16:38.3060000-07:00|10FF0009|Zewo Negiwo|00019ABA|81177|81177|2500|10000|0||88.20|101.53|0.00|1.43|1800|0|0|0| +37|2023-10-06T21:16:38.4410000-07:00|40022472|Zeromus|00019ABA|20962924||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:38.4410000-07:00|10FF0004|Buhojaqe Zijaqe|00019ABD|20229|81541|3800|10000|0||100.94|100.57|0.00|-3.10|1C00|0|0|01|03000317|0|41F00000|| +38|2023-10-06T21:16:38.4410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|20229|81541|3800|10000|0||100.94|100.57|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:38.5750000-07:00|10FF0003|Gegehi Gehi|00019ABA|22055||||||95.14|100.69|0.00|2.91| +37|2023-10-06T21:16:38.5750000-07:00|40022472|Zeromus|00019ABF|20960711||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:38.5750000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|7190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20962924|40478540|10000|10000|||100.00|80.10|0.00|0.00|11653|82773|5000|10000|||99.57|100.94|0.00|3.12|00019AC3|0|1| +39|2023-10-06T21:16:38.6190000-07:00|10FF0009|Zewo Negiwo|81177|81177|2721|10000|||90.89|102.11|0.00|1.38| +37|2023-10-06T21:16:38.6640000-07:00|40022472|Zeromus|00019ABE|20956271||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:38.7080000-07:00|10FF0007|Kehabiqo Febiqo|00019ABA|68499||||||98.72|97.41|0.00|3.06| +39|2023-10-06T21:16:38.7080000-07:00|10FF0008|Kokosaze Lulusaze|18214|90216|10000|10000|||99.23|103.01|0.00|3.11| +24|2023-10-06T21:16:38.7520000-07:00|40022472|Zeromus|DoT|0|EC0|20956271|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|11653|82773|5000|10000|||99.57|100.94|0.00|3.12| +38|2023-10-06T21:16:38.7520000-07:00|40022472|Zeromus|005A5A00|20952495|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T21:16:38.2570000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:16:38.8410000-07:00|10FF0008|Kokosaze Lulusaze|00019ABA|24261||||||99.23|103.01|0.00|3.11| +21|2023-10-06T21:16:38.8410000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20952495|40478540|10000|10000|||100.00|80.10|0.00|0.00|20229|81541|3800|10000|||100.94|100.57|0.00|-3.10|00019AC4|0|1| +36|2023-10-06T21:16:38.8410000-07:00|125C|3| +37|2023-10-06T21:16:38.8850000-07:00|10FF000A|Dukaro Nezikaro|00019AC2|11653|82773|5000|10000|10||99.57|100.94|0.00|3.12|1E00|0|0|01|09000054|0|41A00000|| +26|2023-10-06T21:16:38.8850000-07:00|54|Bloodbath|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +39|2023-10-06T21:16:38.8850000-07:00|10FF0001|Sesuga Sapisuga|74027|129071|10000|10000|||100.26|99.57|0.00|-3.13| +39|2023-10-06T21:16:38.8850000-07:00|10FF0004|Buhojaqe Zijaqe|21044|81541|4000|10000|||100.94|100.54|0.00|-3.06| +37|2023-10-06T21:16:38.9290000-07:00|40022472|Zeromus|00019AB9|20930924||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:38.9290000-07:00|10FF0007|Kehabiqo Febiqo|00019AB9|74447||||||98.70|97.19|0.00|3.06| +37|2023-10-06T21:16:38.9290000-07:00|40022472|Zeromus|00019AC1|20920276||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:38.9740000-07:00|10FF000A|Dukaro Nezikaro|00019ABA|17680||||||99.57|100.94|0.00|3.12| +37|2023-10-06T21:16:38.9740000-07:00|40022472|Zeromus|00019AC0|20894844||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:38.9740000-07:00|10FF0007|Kehabiqo Febiqo|75745|129844|10000|10000|||98.69|97.07|0.00|3.06| +21|2023-10-06T21:16:38.9740000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41712003|32F50000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|20920276|40478540|10000|10000|||100.00|80.10|0.00|0.00|74027|129071|10000|10000|||100.26|99.57|0.00|-3.13|00019AC5|0|1| +38|2023-10-06T21:16:38.9740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|74027|129071|10000|10000|0||100.26|99.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:38.9740000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:16:38.9740000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:16:38.5340000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:16:38.5340000-07:00|Change|10FF0004||||||| +37|2023-10-06T21:16:39.1060000-07:00|10FF0001|Sesuga Sapisuga|00019ABA|83892|129071|10000|10000|0||100.26|99.57|0.00|-3.13|1306|0|0|02|0500076E|03|C1F00000|||||| +37|2023-10-06T21:16:39.1060000-07:00|40022472|Zeromus|00019AC3|20893027||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:39.1070000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|20500000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|20893027|40478540|10000|10000|||100.00|80.10|0.00|0.00|17680|82773|5000|10000|||99.57|100.94|0.00|3.12|00019AC6|0|1| +38|2023-10-06T21:16:39.1070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|17680|82773|5000|10000|10||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:39.1070000-07:00|7A2|Bunshin|7.69|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +30|2023-10-06T21:16:39.1070000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:16:38.6450000-07:00|Change|40022B2B||||||||||| +21|2023-10-06T21:16:39.1960000-07:00|40022B2B|Bunshin|6517|Fleeting Raiju|40022472|Zeromus|550003|12860000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|20893027|40478540|10000|10000|||100.00|80.10|0.00|0.00|54932|78475|10000|10000|||99.59|100.95|0.00|3.12|00019AC7|0|1| +37|2023-10-06T21:16:39.2400000-07:00|10FF0004|Buhojaqe Zijaqe|00019ABA|26971||||||100.93|100.53|0.00|-2.95| +20|2023-10-06T21:16:39.2400000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.93|100.53|0.00|-2.95| +261|2023-10-06T21:16:38.8710000-07:00|Change|40022B2B||| +37|2023-10-06T21:16:39.3730000-07:00|40022472|Zeromus|00019AC4|20892769||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:39.4180000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|32210000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|75745|129844|10000|10000|||98.68|96.97|0.00|0.83|20893027|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019AC8|0|1| +261|2023-10-06T21:16:39.1010000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:16:39.4630000-07:00|10FF0009|Zewo Negiwo|4098|Temperance|10FF0009|Zewo Negiwo|140F|7508000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2721|10000|||96.77|103.20|0.00|1.60|81177|81177|2721|10000|||96.77|103.20|0.00|1.60|00019AC9|0|1| +25|2023-10-06T21:16:39.5070000-07:00|10FF0006|Wowobora Gogobora|E0000000|| +37|2023-10-06T21:16:39.5520000-07:00|40022472|Zeromus|00019AC5|20879724||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:39.5520000-07:00|10FF0001|Sesuga Sapisuga|00019AC5|83892|129071|10000|10000|0||100.26|99.57|0.00|-3.13|1300|0|0|02|0500076E|03|41F00000|||||| +21|2023-10-06T21:16:39.5520000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|C200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20892769|40478540|10000|10000|||100.00|80.10|0.00|0.00|24261|90216|10000|10000|||99.23|103.01|0.00|3.11|00019ACA|0|1| +38|2023-10-06T21:16:39.5520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|83892|129071|10000|10000|0||100.26|99.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:16:39.3870000-07:00|Change|4002284A||||| +37|2023-10-06T21:16:39.8640000-07:00|40022472|Zeromus|00019AC6|20871452||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:39.8640000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3E4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20879724|40478540|10000|10000|||100.00|80.10|0.00|0.00|75745|129844|10000|10000|||98.71|97.57|0.00|0.06|00019ACB|0|1| +22|2023-10-06T21:16:39.8640000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|710003|8950000|104|19A8000|0|0|0|0|0|0|0|0|0|0|0|0|20879724|40478540|10000|10000|||100.00|80.10|0.00|0.00|17680|82773|5000|10000|||99.57|100.94|0.00|3.12|00019ACC|0|3| +22|2023-10-06T21:16:39.8640000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|712003|EB70000|104|2BE8000|0|0|0|0|0|0|0|0|0|0|0|0|20879724|40478540|10000|10000|||100.00|80.10|0.00|0.00|17680|82773|5000|10000|||99.57|100.94|0.00|3.12|00019ACC|1|3| +22|2023-10-06T21:16:39.8640000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|710003|86F0000|104|1928000|0|0|0|0|0|0|0|0|0|0|0|0|20879724|40478540|10000|10000|||100.00|80.10|0.00|0.00|17680|82773|5000|10000|||99.57|100.94|0.00|3.12|00019ACC|2|3| +21|2023-10-06T21:16:39.9090000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20871452|40478540|10000|10000|||100.00|80.10|0.00|0.00|22055|73814|1800|10000|||97.92|101.05|0.00|2.54|00019ACD|0|1| +37|2023-10-06T21:16:39.9530000-07:00|40022472|Zeromus|00019AC7|20866710||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:39.9530000-07:00|10FF0003|Gegehi Gehi|22793|73814|2000|10000|||97.92|101.05|0.00|2.54| +39|2023-10-06T21:16:39.9980000-07:00|10FF000A|Dukaro Nezikaro|18507|82773|5200|10000|||99.57|100.94|0.00|3.12| +261|2023-10-06T21:16:39.4830000-07:00|Change|10FF000A||||| +261|2023-10-06T21:16:39.5750000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:16:39.5750000-07:00|Change|10FF0004||||||||||||||||||| +38|2023-10-06T21:16:40.0870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|24261|90216|10000|10000|0||99.23|103.01|0.00|3.11|0|0|0|||||||||||||||| +26|2023-10-06T21:16:40.0870000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:40.0870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18507|82773|5200|10000|10||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:40.0870000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:16:40.0870000-07:00|10FF0003|Gegehi Gehi|005A5A23|22793|73814|2000|10000|0||98.58|101.15|0.00|2.56|0|0|0|||||||||||||||| +26|2023-10-06T21:16:40.0870000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:40.0870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|26971|81541|4000|10000|0||99.84|100.88|0.00|-1.02|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:40.0870000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:40.0870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|75745|129844|10000|10000|0||98.75|98.35|0.00|3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:40.0870000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:16:40.0870000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2721|10000|0||97.51|103.50|0.00|1.58|0|0|0|||||||||||||||| +26|2023-10-06T21:16:40.0870000-07:00|750|Temperance|20.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:16:40.0870000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:40.0870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|83892|129071|10000|10000|0||99.59|98.75|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:40.0870000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:16:40.0870000-07:00|10FF0009|Zewo Negiwo|00019AC9|81177|81177|2721|10000|0||97.51|103.50|0.00|1.58|1800|0|0|02|02000750|0|41A00000|||||| +39|2023-10-06T21:16:40.1310000-07:00|40022B2B|Bunshin|54932|78475|10000|10000|||99.59|100.95|0.00|3.12| +37|2023-10-06T21:16:40.2200000-07:00|10FF0007|Kehabiqo Febiqo|00019AC8|62912||||||98.76|98.51|0.00|3.08| +24|2023-10-06T21:16:40.2200000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|1E36|24261|90216|10000|10000|||99.23|103.01|0.00|3.11|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02| +21|2023-10-06T21:16:40.2200000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|724003|10CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20866710|40478540|10000|10000|||100.00|80.10|0.00|0.00|22793|73814|2000|10000|||98.91|101.20|-0.01|2.56|00019ACE|0|1| +38|2023-10-06T21:16:40.2200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|16527|90216|10000|10000|0||99.23|103.01|0.00|3.11|0|0|0|||||||||||||||| +24|2023-10-06T21:16:40.2650000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|0|18507|82773|5200|10000|||99.57|100.94|0.00|3.12|10FF000A|Dukaro Nezikaro|FFFFFFFF|18507|82773|5200|10000|||99.57|100.94|0.00|3.12| +38|2023-10-06T21:16:40.2650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18507|82773|5200|10000|1||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:40.3100000-07:00|40022472|Zeromus|00019ACA|20863606||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:40.3100000-07:00|10FF0003|Gegehi Gehi|DoT|0|1BFF|22793|73814|2000|10000|||98.99|101.21|0.00|3.09|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|2721|10000|||97.76|103.55|0.00|1.57| +22|2023-10-06T21:16:40.3100000-07:00|10FF0009|Zewo Negiwo|DF1|Asylum|10FF0009|Zewo Negiwo|FC280F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2721|10000|||97.76|103.55|0.00|1.57|81177|81177|2721|10000|||97.76|103.55|0.00|1.57|00019ACF|0|1| +21|2023-10-06T21:16:40.3100000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|4FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20866710|40478540|10000|10000|||100.00|80.10|0.00|0.00|83892|129071|10000|10000|||99.59|98.75|0.00|3.12|00019AD0|0|1| +38|2023-10-06T21:16:40.3100000-07:00|10FF0003|Gegehi Gehi|005A5A23|15626|73814|2000|10000|0||98.99|101.21|0.00|3.09|0|0|0|||||||||||||||| +31|2023-10-06T21:16:40.3100000-07:00|10FF0001||||| +24|2023-10-06T21:16:40.3990000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CF5|83892|129071|10000|10000|||99.59|98.75|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02| +24|2023-10-06T21:16:40.3990000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D3A|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02|10FF0004|Buhojaqe Zijaqe|0|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02| +24|2023-10-06T21:16:40.3990000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|160A|18507|82773|5200|10000|||99.57|100.94|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02| +24|2023-10-06T21:16:40.3990000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D4B|62912|129844|10000|10000|||98.77|98.65|-0.01|3.08|10FF0004|Buhojaqe Zijaqe|0|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02| +24|2023-10-06T21:16:40.3990000-07:00|10FF0003|Gegehi Gehi|HoT|798|D5B|22793|73814|2000|10000|||98.99|101.21|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02| +24|2023-10-06T21:16:40.3990000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|15E5|16527|90216|10000|10000|||99.23|103.01|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02| +24|2023-10-06T21:16:40.3990000-07:00|10FF0009|Zewo Negiwo|HoT|798|D85|81177|81177|2721|10000|||97.76|103.55|0.00|1.57|10FF0004|Buhojaqe Zijaqe|0|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02| +24|2023-10-06T21:16:40.3990000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1BDB|26971|81541|4000|10000|||99.84|100.88|0.00|-1.02|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|2721|10000|||97.76|103.55|0.00|1.57| +38|2023-10-06T21:16:40.3990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|66315|129844|10000|10000|0||98.77|98.65|-0.01|3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:40.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:16:40.3990000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2721|10000|0||97.76|103.55|0.00|1.57|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:40.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:16:40.3990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|22132|90216|10000|10000|0||99.23|103.01|0.00|3.11|0|0|0|||||||||||||||| +26|2023-10-06T21:16:40.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:16:40.3990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87209|129071|10000|10000|0||99.59|98.75|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:40.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:16:40.3990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|23226|81541|4550|10000|0||99.84|100.88|0.00|-1.02|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:40.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:16:40.3990000-07:00|10FF0003|Gegehi Gehi|005A5A23|19045|73814|2000|10000|0||98.99|101.21|0.00|3.09|0|0|0|||||||||||||||| +26|2023-10-06T21:16:40.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:16:40.3990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24149|82773|5200|10000|1||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:40.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:16:40.4430000-07:00|40022472|Zeromus|00019ACD|20863605||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:40.4890000-07:00|40022472|Zeromus|00019ACB|20847658||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:40.4890000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|1232|66315|129844|10000|10000|||98.78|98.68|-0.02|3.08|10FF0007|Kehabiqo Febiqo|FFFFFFFF|66315|129844|10000|10000|||98.78|98.68|-0.02|3.08| +38|2023-10-06T21:16:40.4890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|61657|129844|10000|10000|0||98.78|98.68|-0.02|3.08|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:16:40.5330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|22132|90216|10000|10000|0||99.23|103.01|0.00|3.11|0|0|0|||||||||||||||| +38|2023-10-06T21:16:40.5330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24149|82773|5200|10000|1||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:40.5330000-07:00|10FF0003|Gegehi Gehi|005A5A23|19045|73814|2000|10000|0||98.99|101.13|0.00|3.09|0|0|0|||||||||||||||| +38|2023-10-06T21:16:40.5330000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|23226|81541|4550|10000|0||99.84|100.88|0.00|-1.02|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:40.5330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|61657|129844|10000|10000|0||98.80|98.68|0.00|3.10|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:16:40.5330000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2721|10000|0||98.02|103.57|0.00|2.49|0|0|0||||||||||||||||||| +38|2023-10-06T21:16:40.5330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87209|129071|10000|10000|0||99.73|98.75|0.00|3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:16:40.5780000-07:00|40022472|Zeromus|00019ACC|20845461||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:40.5780000-07:00|10FF000A|Dukaro Nezikaro|00019ACC|24559||||||99.57|100.94|0.00|3.12| +24|2023-10-06T21:16:40.5780000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|116B|87209|129071|10000|10000|||99.73|98.75|0.00|3.12|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|2721|10000|||98.02|103.57|0.00|2.49| +38|2023-10-06T21:16:40.5780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82750|129071|10000|10000|0||99.73|98.75|0.00|3.12|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:16:40.5780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|23226|81541|4550|10000|0||99.84|100.88|0.00|-1.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:40.5780000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +22|2023-10-06T21:16:40.6220000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|1EF70000|8B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|00019AD1|0|7| +22|2023-10-06T21:16:40.6220000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|1F880000|730E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|24559|82773|5200|10000|||99.57|100.94|0.00|3.12|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|00019AD1|1|7| +22|2023-10-06T21:16:40.6220000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|1DE90000|DB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|19045|73814|2000|10000|||99.00|100.82|0.00|3.09|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|00019AD1|2|7| +22|2023-10-06T21:16:40.6220000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|30E20000|360E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|82750|129071|10000|10000|||99.80|98.75|0.00|3.12|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|00019AD1|3|7| +22|2023-10-06T21:16:40.6220000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|31510000|E80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|22132|90216|10000|10000|||99.23|103.01|0.00|3.11|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|00019AD1|4|7| +22|2023-10-06T21:16:40.6220000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|315F0000|FE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|61657|129844|10000|10000|||98.83|98.68|-0.02|3.13|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|00019AD1|5|7| +22|2023-10-06T21:16:40.6220000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|200004|326D0000|AE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81177|81177|2721|10000|||98.14|103.58|0.00|2.49|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|00019AD1|6|7| +38|2023-10-06T21:16:40.6220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|61657|129844|10000|10000|15||98.83|98.68|-0.02|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:40.6220000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:16:40.6220000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2721|10000|25||98.14|103.58|0.00|2.49|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:40.6220000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:16:40.6220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|22132|90216|10000|10000|22||99.23|103.01|0.00|3.11|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:40.6220000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:16:40.6220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82750|129071|10000|10000|15||99.80|98.75|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:40.6220000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:16:40.6220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|23226|81541|3550|10000|15||99.84|100.88|0.00|-1.02|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:40.6220000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:16:40.6220000-07:00|10FF0003|Gegehi Gehi|005A5A23|19045|73814|2000|10000|16||99.00|100.82|0.00|3.09|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:40.6220000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:16:40.6220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24559|82773|5200|10000|16||99.57|100.94|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:40.6220000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +21|2023-10-06T21:16:40.6660000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|724003|29720000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|20845461|40478540|10000|10000|||100.00|80.10|0.00|0.00|22132|90216|10000|10000|||99.23|103.01|0.00|3.11|00019AD2|0|1| +37|2023-10-06T21:16:40.7110000-07:00|40022472|Zeromus|00019ACC|20841694||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:40.7110000-07:00|10FF000A|Dukaro Nezikaro|00019ACC|25261||||||99.57|100.94|0.00|3.12| +21|2023-10-06T21:16:40.7550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|58F0000|104|1088000|0|0|0|0|0|0|0|0|0|0|0|0|20845461|40478540|10000|10000|||100.00|80.10|0.00|0.00|24559|82773|5200|10000|||99.57|100.94|0.00|3.12|00019AD3|0|1| +37|2023-10-06T21:16:40.8430000-07:00|40022472|Zeromus|00019AD0|20840420||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:40.8430000-07:00|40022472|Zeromus|00019ACE|20836117||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:40.8430000-07:00|40022472|Zeromus|00019ACC|20833958||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:40.8430000-07:00|10FF000A|Dukaro Nezikaro|00019ACC|25663||||||99.57|100.94|0.00|3.12| +20|2023-10-06T21:16:40.9330000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|99.02|100.57|0.00|3.09| +261|2023-10-06T21:16:40.5820000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:16:40.5820000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:16:41.1110000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C4F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20833958|40478540|10000|10000|||100.00|80.10|0.00|0.00|61657|129844|10000|10000|||99.16|98.38|0.00|-3.12|00019AD4|0|1| +261|2023-10-06T21:16:40.5820000-07:00|Change|10FF0004||||| +24|2023-10-06T21:16:41.1560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|6B5|23226|81541|3550|10000|||99.84|100.88|0.00|-1.02|10FF0009|Zewo Negiwo|0|81177|81177|2721|10000|||98.28|103.59|0.00|2.49| +24|2023-10-06T21:16:41.1560000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|6A3|25663|82773|5200|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|2721|10000|||98.28|103.59|0.00|2.49| +24|2023-10-06T21:16:41.1560000-07:00|10FF0003|Gegehi Gehi|HoT|777|6B9|19045|73814|2000|10000|||99.02|100.57|0.00|3.09|10FF0009|Zewo Negiwo|0|81177|81177|2721|10000|||98.28|103.59|0.00|2.49| +24|2023-10-06T21:16:41.1560000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|6E9|82750|129071|10000|10000|||99.80|98.75|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|2721|10000|||98.28|103.59|0.00|2.49| +24|2023-10-06T21:16:41.1560000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|6EB|22132|90216|10000|10000|||99.23|102.95|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|2721|10000|||98.28|103.59|0.00|2.49| +24|2023-10-06T21:16:41.1560000-07:00|10FF0009|Zewo Negiwo|HoT|777|AC5|81177|81177|2721|10000|||98.28|103.59|0.00|2.49|10FF0009|Zewo Negiwo|0|81177|81177|2721|10000|||98.28|103.59|0.00|2.49| +24|2023-10-06T21:16:41.1560000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|6D8|61657|129844|10000|10000|||99.20|98.16|0.00|-3.12|10FF0009|Zewo Negiwo|0|81177|81177|2721|10000|||98.28|103.59|0.00|2.49| +37|2023-10-06T21:16:41.1560000-07:00|10FF0009|Zewo Negiwo|00019ACF|81177|81177|2721|10000|25||98.28|103.59|0.00|2.49|1800|0|0|02|07000777|0|41C00000|||||| +26|2023-10-06T21:16:41.1560000-07:00|777|Asylum|24.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:16:41.1560000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:16:41.1560000-07:00|10FF0009|Zewo Negiwo|1D89|Swiftcast|10FF0009|Zewo Negiwo|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2721|10000|||98.28|103.59|0.00|2.49|81177|81177|2721|10000|||98.28|103.59|0.00|2.49|00019AD5|0|1| +38|2023-10-06T21:16:41.1560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|63409|129844|10000|10000|15||99.20|98.16|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:41.1560000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:16:41.1560000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2721|10000|25||98.28|103.59|0.00|2.49|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:41.1560000-07:00|A7|Swiftcast|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:41.1560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|23903|90216|10000|10000|22||99.23|102.95|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:41.1560000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:41.1560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84519|129071|10000|10000|15||99.80|98.75|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:41.1560000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:16:41.1560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|24943|81541|3550|10000|15||99.84|100.88|0.00|-1.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:41.1560000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:41.1560000-07:00|10FF0003|Gegehi Gehi|005A5A23|20766|73814|2000|10000|16||99.02|100.57|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:41.1560000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:41.1560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|27362|82773|5200|10000|16||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:41.1560000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:16:40.6920000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:16:41.2880000-07:00|10FF0009|Zewo Negiwo|00019AD5|81177|81177|2721|10000|25||98.28|103.59|0.00|2.49|1800|0|0|01|090000A7|0|41200000|| +37|2023-10-06T21:16:41.2880000-07:00|40022472|Zeromus|00019AD3|20832535||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:41.2880000-07:00|10FF000A|Dukaro Nezikaro|00019AD3|27626||||||99.57|100.94|0.00|3.12| +38|2023-10-06T21:16:41.2880000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2721|10000|25||98.28|103.59|0.00|2.49|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:41.4210000-07:00|40022472|Zeromus|00019AD2|20821925||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:41.4670000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|1EE80000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20832535|40478540|10000|10000|||100.00|80.10|0.00|0.00|84519|129071|10000|10000|||99.80|98.75|0.00|3.13|00019AD6|0|1| +38|2023-10-06T21:16:41.4670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84519|129071|10000|10000|15||99.80|98.75|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:41.4670000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:16:40.9280000-07:00|Add|40022B66||||||||||||||||||||||||| +04|2023-10-06T21:16:40.9280000-07:00|4002284A|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||100.54|99.60|0.00|-0.37| +04|2023-10-06T21:16:40.9280000-07:00|40022B57|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||89.52|102.18|0.00|2.63| +261|2023-10-06T21:16:40.9280000-07:00|Change|4002284A||| +261|2023-10-06T21:16:40.9280000-07:00|Change|40022B57||| +261|2023-10-06T21:16:40.9280000-07:00|Remove|40022B66| +261|2023-10-06T21:16:41.0400000-07:00|Remove|4002284A| +261|2023-10-06T21:16:41.0400000-07:00|Add|40022B66||||||||||||||||||||||||| +261|2023-10-06T21:16:41.0400000-07:00|Remove|40022B57| +261|2023-10-06T21:16:41.0400000-07:00|Change|40022B2B||| +39|2023-10-06T21:16:41.6000000-07:00|10FF0009|Zewo Negiwo|81177|81177|2942|10000|||98.28|103.59|0.00|2.49| +37|2023-10-06T21:16:41.6450000-07:00|40022472|Zeromus|00019AD4|20818774||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:16:41.6450000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0006|Wowobora Gogobora|7.704|99.80|101.05|0.00|-0.65| +37|2023-10-06T21:16:41.7340000-07:00|10FF0004|Buhojaqe Zijaqe|00019AD1|32870|81541|3550|10000|15||99.78|101.13|0.00|-1.02|1C00|0|0|01|04000129|0|41E774BA|| +39|2023-10-06T21:16:41.7340000-07:00|10FF0008|Kokosaze Lulusaze|24805|90216|10000|10000|||99.19|101.31|0.00|-3.13| +24|2023-10-06T21:16:41.7780000-07:00|40022472|Zeromus|DoT|0|1218|20818774|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|27626|82773|5200|10000|||99.57|100.94|0.00|3.12| +38|2023-10-06T21:16:41.7780000-07:00|40022472|Zeromus|005A5A00|20814142|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:16:41.8680000-07:00|10FF000A|Dukaro Nezikaro|00019AD1|35698|82773|5200|10000|16||99.57|100.94|0.00|3.12|1E01|0|0|01|0A000129|0|41E66457|| +39|2023-10-06T21:16:41.8680000-07:00|10FF0001|Sesuga Sapisuga|85809|129071|10000|10000|||99.80|98.75|0.00|3.13| +21|2023-10-06T21:16:41.8680000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|716003|1B570000|104|51B8000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|20814142|40478540|10000|10000|||100.00|80.10|0.00|0.00|27626|82773|5200|10000|||99.57|100.94|0.00|3.12|00019AD7|0|1| +36|2023-10-06T21:16:41.8680000-07:00|1338|3| +38|2023-10-06T21:16:41.8680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35698|82773|5200|10000|16||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:41.8680000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:16:41.9120000-07:00|10FF0004|Buhojaqe Zijaqe|33685|81541|3750|10000|||99.74|101.28|0.00|-2.16| +21|2023-10-06T21:16:41.9570000-07:00|40022B2B|Bunshin|4405|Spinning Edge|40022472|Zeromus|710003|12370000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|20814142|40478540|10000|10000|||100.00|80.10|0.00|0.00|54932|78475|10000|10000|||99.59|100.95|0.00|3.12|00019AD8|0|1| +261|2023-10-06T21:16:41.4320000-07:00|Change|40022B2B||| +261|2023-10-06T21:16:41.6260000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:16:42.0020000-07:00|10FF0003|Gegehi Gehi|00019AD1|28423|73814|2000|10000|16||99.02|100.57|0.00|3.09|2302|0|0|01|05000129|0|41E551E8|| +39|2023-10-06T21:16:42.0020000-07:00|10FF0007|Kehabiqo Febiqo|64707|129844|10000|10000|||99.08|96.74|0.00|-1.46| +37|2023-10-06T21:16:42.1360000-07:00|10FF0001|Sesuga Sapisuga|00019AD1|98323|129071|10000|10000|15||99.80|98.75|0.00|3.13|1303|0|0|01|08000129|0|41E43F79|| +261|2023-10-06T21:16:41.7480000-07:00|Change|10FF0009||| +21|2023-10-06T21:16:42.2240000-07:00|10FF0009|Zewo Negiwo|7D|Raise|10FF0006|Wowobora Gogobora|814000E|940000|1B|7D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|0|10000|||99.41|100.27|0.00|3.11|81177|81177|2942|10000|||98.28|103.59|0.00|2.49|00019AD9|0|1| +21|2023-10-06T21:16:42.2240000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|13D10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20814142|40478540|10000|10000|||100.00|80.10|0.00|0.00|24805|90216|10000|10000|||99.17|100.86|0.00|-3.12|00019ADA|0|1| +38|2023-10-06T21:16:42.2240000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|542|10000|25||98.28|103.59|0.00|2.49|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:42.2240000-07:00|A7|Swiftcast|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:16:42.2690000-07:00|10FF0008|Kokosaze Lulusaze|00019AD1|37430|90216|10000|10000|22||99.17|100.86|0.00|-3.12|1F04|0|0|01|05000129|0|41E32F16|| +37|2023-10-06T21:16:42.2690000-07:00|40022472|Zeromus|00019AD7|20807143||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:42.2690000-07:00|10FF000A|Dukaro Nezikaro|00019AD7|37005||||||99.57|100.94|0.00|3.12| +261|2023-10-06T21:16:41.7480000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:16:42.3140000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|716003|2E050000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|20807143|40478540|10000|10000|||100.00|80.10|0.00|0.00|64707|129844|10000|10000|||99.13|97.04|0.00|-0.75|00019ADB|0|1| +37|2023-10-06T21:16:42.3580000-07:00|40022472|Zeromus|00019AD8|20802480||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:42.3580000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|23290000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|20807143|40478540|10000|10000|||100.00|80.10|0.00|0.00|28423|73814|2000|10000|||99.02|100.57|0.00|3.09|00019ADC|0|1| +38|2023-10-06T21:16:42.3580000-07:00|10FF0003|Gegehi Gehi|005A5A23|28423|73814|1800|10000|16||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:42.3580000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:16:42.4030000-07:00|10FF0007|Kehabiqo Febiqo|00019AD1|77346|129844|10000|10000|15||99.13|97.04|0.00|-0.75|1505|0|0|01|07000129|0|41E21EB4|| +261|2023-10-06T21:16:41.8630000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:16:42.4470000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|77346|129844|10000|10000|||99.14|97.13|0.00|3.09|20802480|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019ADD|0|1| +37|2023-10-06T21:16:42.5360000-07:00|10FF0009|Zewo Negiwo|00019AD1|81177|81177|542|10000|25||98.28|103.59|0.00|2.62|1806|0|0|01|06000129|0|41E10C45|| +21|2023-10-06T21:16:42.5820000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|52E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20802480|40478540|10000|10000|||100.00|80.10|0.00|0.00|98323|129071|10000|10000|||99.86|97.20|0.00|3.10|00019ADE|0|1| +31|2023-10-06T21:16:42.5820000-07:00|10FF0001||||| +37|2023-10-06T21:16:42.7580000-07:00|40022472|Zeromus|00019AD6|20794568||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:42.8480000-07:00|40022472|Zeromus|00019ADB|20782787||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:42.8920000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|542|10000|||98.28|103.59|0.00|2.82|81177|81177|542|10000|||98.28|103.59|0.00|2.82|00019ADF|0|1| +21|2023-10-06T21:16:42.9360000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|4980000|104|DB8000|0|0|0|0|0|0|0|0|0|0|0|0|20782787|40478540|10000|10000|||100.00|80.10|0.00|0.00|37005|82773|5200|10000|||99.57|100.94|0.00|3.12|00019AE0|0|1| +37|2023-10-06T21:16:42.9800000-07:00|40022472|Zeromus|00019ADA|20777714||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:42.9800000-07:00|10FF0003|Gegehi Gehi|29161|73814|2000|10000|||99.02|100.57|0.00|3.09| +39|2023-10-06T21:16:42.9800000-07:00|10FF000A|Dukaro Nezikaro|37832|82773|5400|10000|||99.57|100.94|0.00|3.12| +261|2023-10-06T21:16:42.4790000-07:00|Change|10FF000A||| +37|2023-10-06T21:16:43.1140000-07:00|40022472|Zeromus|00019ADE|20776388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:43.1140000-07:00|40022472|Zeromus|00019ADC|20767387||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:43.1140000-07:00|40022B2B|Bunshin|54932|78475|10000|10000|||99.59|100.95|0.00|3.12| +21|2023-10-06T21:16:43.1590000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|3C3B0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|20777714|40478540|10000|10000|||100.00|80.10|0.00|0.00|37430|90216|10000|10000|||99.29|100.54|0.00|-3.12|00019AE1|0|1| +261|2023-10-06T21:16:42.6900000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:16:43.2050000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|37430|90216|10000|10000|||99.29|100.54|0.00|3.11|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +38|2023-10-06T21:16:43.2050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|37430|90216|10000|10000|14||99.29|100.54|0.00|3.11|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:16:43.2490000-07:00|10FF0007|Kehabiqo Febiqo|00019ADD|77346|129844|10000|10000|6||99.17|97.41|0.00|-0.56|1500|0|0|0| +24|2023-10-06T21:16:43.2490000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|0|37832|82773|5400|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +38|2023-10-06T21:16:43.2490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|37832|82773|5400|10000|7||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:43.2490000-07:00|1E8|Shade Shift|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +24|2023-10-06T21:16:43.2920000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|29161|73814|2000|10000|||99.02|100.57|0.00|3.09|10FF0003|Gegehi Gehi|FFFFFFFF|29161|73814|2000|10000|||99.02|100.57|0.00|3.09| +38|2023-10-06T21:16:43.2920000-07:00|10FF0003|Gegehi Gehi|005A5A23|29161|73814|2000|10000|6||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:16:43.3820000-07:00|10FF0006|Wowobora Gogobora|00019AD9|0|81809|0|10000|0||99.41|100.27|0.00|3.11|1B00|0|0|01|94|08|42700000|| +26|2023-10-06T21:16:43.3820000-07:00|94|Raise|60.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|08|81809|81177| +24|2023-10-06T21:16:43.3820000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|EF7|37832|82773|5400|10000|||99.57|100.94|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:43.3820000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1736|37430|90216|10000|10000|||99.29|100.54|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:43.3820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E71|77346|129844|10000|10000|||99.26|97.82|0.00|-0.99|10FF0004|Buhojaqe Zijaqe|0|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:43.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|E97|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86|10FF0004|Buhojaqe Zijaqe|0|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:43.3820000-07:00|10FF0003|Gegehi Gehi|HoT|798|E75|29161|73814|2000|10000|||99.02|100.57|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:43.3820000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|16FF|98323|129071|10000|10000|||99.86|97.20|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:43.3820000-07:00|10FF0009|Zewo Negiwo|HoT|798|1779|81177|81177|542|10000|||98.28|103.59|0.00|2.82|10FF0004|Buhojaqe Zijaqe|0|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:43.3820000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|33685|81541|3750|10000|||99.72|101.37|0.00|-2.86|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +21|2023-10-06T21:16:43.3820000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|2A380000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|20767387|40478540|10000|10000|||100.00|80.10|0.00|0.00|29161|73814|2000|10000|||99.02|100.57|0.00|3.09|00019AE2|0|1| +38|2023-10-06T21:16:43.3820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81043|129844|10000|10000|6||99.26|97.82|0.00|-0.99|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:16:43.3820000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|542|10000|25||98.28|103.59|0.00|2.82|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:16:43.3820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|43372|90216|10000|10000|14||99.29|100.54|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:43.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:16:43.3820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104210|129071|10000|10000|15||99.86|97.20|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:16:43.3820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|37420|81541|3750|10000|6||99.72|101.37|0.00|-2.86|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.3820000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:16:43.3820000-07:00|10FF0003|Gegehi Gehi|005A5A23|32862|73814|1700|10000|6||99.02|100.57|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:43.3820000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +30|2023-10-06T21:16:43.3820000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:16:43.3820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|41663|82773|5400|10000|7||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.3820000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:16:42.9150000-07:00|Change|10FF0003||| +37|2023-10-06T21:16:43.4710000-07:00|40022472|Zeromus|00019AE0|20766211||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:43.4710000-07:00|10FF000A|Dukaro Nezikaro|00019AE0|41882||||||99.57|100.94|0.00|3.12| +24|2023-10-06T21:16:43.4710000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|81043|129844|10000|10000|||99.38|98.30|0.00|-1.68|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +38|2023-10-06T21:16:43.4710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81043|129844|10000|10000|3||99.38|98.30|0.00|-1.68|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:43.5160000-07:00|10FF0009|Zewo Negiwo|00019ADF|81177|81177|542|10000|25||98.28|103.59|0.00|2.82|1800|0|0|01|090004B4|0|41A80000|| +26|2023-10-06T21:16:43.5160000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|43372|90216|10000|10000|14||99.29|100.54|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|41882|82773|5400|10000|7||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0003|Gegehi Gehi|005A5A23|32862|73814|1700|10000|6||99.02|100.57|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|37420|81541|3750|10000|6||99.72|101.37|0.00|-2.86|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81043|129844|10000|10000|3||99.38|98.30|0.00|-1.68|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|542|10000|25||98.28|103.59|0.00|2.82|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104210|129071|10000|10000|15||99.86|97.20|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:16:43.5160000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|6C4|41663|82773|5400|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +24|2023-10-06T21:16:43.5160000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|6D0|37420|81541|3750|10000|||99.72|101.37|0.00|-2.86|10FF0009|Zewo Negiwo|0|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +24|2023-10-06T21:16:43.5160000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|AD1|43372|90216|10000|10000|||99.29|100.54|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +24|2023-10-06T21:16:43.5160000-07:00|10FF0003|Gegehi Gehi|HoT|777|6B2|32862|73814|1700|10000|||99.02|100.57|0.00|3.09|10FF0009|Zewo Negiwo|0|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +24|2023-10-06T21:16:43.5160000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|6DC|81043|129844|10000|10000|||99.38|98.30|0.00|-1.68|10FF0009|Zewo Negiwo|0|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +24|2023-10-06T21:16:43.5160000-07:00|10FF0009|Zewo Negiwo|HoT|777|6B1|81177|81177|542|10000|||98.28|103.59|0.00|2.82|10FF0009|Zewo Negiwo|0|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +24|2023-10-06T21:16:43.5160000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|6C7|104210|129071|10000|10000|||99.86|97.20|0.00|3.10|10FF0009|Zewo Negiwo|0|81177|81177|542|10000|||98.28|103.59|0.00|2.82| +38|2023-10-06T21:16:43.5160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82799|129844|10000|10000|3||99.38|98.30|0.00|-1.68|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|1092|10000|25||98.28|103.59|0.00|2.82|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|46141|90216|10000|10000|14||99.29|100.54|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105945|129071|10000|10000|15||99.86|97.20|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39164|81541|3750|10000|6||99.72|101.37|0.00|-2.86|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF0003|Gegehi Gehi|005A5A23|34576|73814|1700|10000|6||99.02|100.57|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:43.5160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43614|82773|5400|10000|7||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.5160000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:16:43.0270000-07:00|Change|10FF0009||||| +24|2023-10-06T21:16:43.5610000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|105945|129071|10000|10000|||99.86|97.20|0.00|3.10|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|1092|10000|||98.28|103.59|0.00|2.82| +22|2023-10-06T21:16:43.5610000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0009|Zewo Negiwo|FC900E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|1092|10000|||98.28|103.59|0.00|2.82|81177|81177|1092|10000|||98.28|103.59|0.00|2.82|00019AE3|0|7| +22|2023-10-06T21:16:43.5610000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|FC900E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39164|81541|3750|10000|||99.72|101.37|0.00|-2.86|81177|81177|1092|10000|||98.28|103.59|0.00|2.82|00019AE3|1|7| +22|2023-10-06T21:16:43.5610000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|FC900E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43614|82773|5400|10000|||99.57|100.94|0.00|3.12|81177|81177|1092|10000|||98.28|103.59|0.00|2.82|00019AE3|2|7| +22|2023-10-06T21:16:43.5610000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|FC900E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34576|73814|1700|10000|||99.02|100.57|0.00|3.09|81177|81177|1092|10000|||98.28|103.59|0.00|2.82|00019AE3|3|7| +22|2023-10-06T21:16:43.5610000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|FC900E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46141|90216|10000|10000|||99.29|100.54|0.00|3.11|81177|81177|1092|10000|||98.28|103.59|0.00|2.82|00019AE3|4|7| +22|2023-10-06T21:16:43.5610000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|FC900E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82799|129844|10000|10000|||99.47|98.54|0.00|-2.11|81177|81177|1092|10000|||98.28|103.59|0.00|2.82|00019AE3|5|7| +22|2023-10-06T21:16:43.5610000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|FC900E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|105945|129071|10000|10000|||99.86|97.20|0.00|3.10|81177|81177|1092|10000|||98.28|103.59|0.00|2.82|00019AE3|6|7| +38|2023-10-06T21:16:43.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105945|129071|10000|10000|11||99.86|97.20|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:43.3600000-07:00|Change|40022B2B||| +37|2023-10-06T21:16:43.9620000-07:00|40022472|Zeromus|00019AE1|20750792||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:43.9630000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|20AD0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20750792|40478540|10000|10000|||100.00|80.10|0.00|0.00|105945|129071|10000|10000|||99.86|97.20|0.00|3.13|00019AE4|0|1| +38|2023-10-06T21:16:43.9630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105945|129071|10000|10000|11||99.86|97.20|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:43.9630000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:16:44.0970000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34576|73814|1700|10000|||99.02|100.57|0.00|3.09|34576|73814|1700|10000|||99.02|100.57|0.00|3.09|00019AE5|0|1| +21|2023-10-06T21:16:44.0970000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|12430000|104|3688000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|20750792|40478540|10000|10000|||100.00|80.10|0.00|0.00|43614|82773|5400|10000|||99.57|100.94|0.00|3.12|00019AE6|0|1| +38|2023-10-06T21:16:44.0970000-07:00|10FF0003|Gegehi Gehi|005A5A23|34576|73814|1700|10000|6||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:44.0970000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:16:44.1420000-07:00|40022472|Zeromus|00019AE2|20739984||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:44.1420000-07:00|10FF0003|Gegehi Gehi|00019AE2|34576|73814|1700|10000|6||99.02|100.57|0.00|3.09|2300|0|0|01|070004D6|0|C1A00000|| +04|2023-10-06T21:16:43.8690000-07:00|40022B2B|Bunshin|00|5A|10FF000A|00||8313|10897|54932|78475|10000|10000|||99.59|100.95|0.00|3.12| +261|2023-10-06T21:16:43.8690000-07:00|Remove|40022B2B| +37|2023-10-06T21:16:44.3630000-07:00|10FF0009|Zewo Negiwo|00019AE3|81177|81177|1092|10000|25||98.28|103.59|0.00|2.82|1800|0|0|01|0A0004C3|0|41200000|| +26|2023-10-06T21:16:44.3630000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:16:44.4960000-07:00|10FF0004|Buhojaqe Zijaqe|00019AE3|39164|81541|3750|10000|6||99.72|101.37|0.00|-2.86|1C01|0|0|01|0B0004C3|0|41200000|| +26|2023-10-06T21:16:44.4960000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:16:44.4960000-07:00|40022472|Zeromus|00019AE6|20735309||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:44.4960000-07:00|10FF000A|Dukaro Nezikaro|00019AE6|44486||||||99.57|100.94|0.00|3.12| +21|2023-10-06T21:16:44.4960000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BAC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20739984|40478540|10000|10000|||100.00|80.10|0.00|0.00|82799|129844|10000|10000|||99.49|98.18|0.00|3.14|00019AE7|0|1| +00|2023-10-06T21:16:43.0000000-07:00|0044|Zeromus|In Darkness be steeped.| +20|2023-10-06T21:16:44.5850000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:44.1000000-07:00|Change|40022472||||||||||||| +37|2023-10-06T21:16:44.6300000-07:00|10FF000A|Dukaro Nezikaro|00019AE3|44486|82773|5400|10000|7||99.57|100.94|0.00|3.12|1E02|0|0|01|030004C3|0|41200000|| +26|2023-10-06T21:16:44.6300000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +39|2023-10-06T21:16:44.6300000-07:00|10FF0009|Zewo Negiwo|81177|81177|1313|10000|||98.28|103.59|0.00|2.82| +261|2023-10-06T21:16:44.1000000-07:00|Change|10FF0009||| +39|2023-10-06T21:16:44.7190000-07:00|10FF0008|Kokosaze Lulusaze|47043|90216|10000|10000|||99.29|100.54|0.00|3.11| +37|2023-10-06T21:16:44.7640000-07:00|10FF0003|Gegehi Gehi|00019AE3|34576|73814|1700|10000|6||99.02|100.57|0.00|3.09|2303|0|0|02|070004D6|0|C1A00000|||||| +26|2023-10-06T21:16:44.7640000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +24|2023-10-06T21:16:44.7640000-07:00|40022472|Zeromus|DoT|0|17C9|20735309|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|44486|82773|5400|10000|||99.57|100.94|0.00|3.12| +21|2023-10-06T21:16:44.7640000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|21970000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|20735309|40478540|10000|10000|||100.00|80.10|0.00|0.00|82799|129844|10000|10000|||99.63|98.04|-0.02|3.09|00019AE8|0|1| +38|2023-10-06T21:16:44.7640000-07:00|40022472|Zeromus|005A5A00|20729220|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:16:44.8530000-07:00|10FF0003|Gegehi Gehi|00019AE5|34576|73814|1700|10000|6||99.02|100.57|0.00|3.09|2300|0|0|01|070004D6|0|41A00000|| +21|2023-10-06T21:16:44.8530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|AC80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20729220|40478540|10000|10000|||100.00|80.10|0.00|0.00|105945|129071|10000|10000|||99.86|97.20|0.00|3.13|00019AE9|0|1| +21|2023-10-06T21:16:44.8530000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20729220|40478540|10000|10000|||100.00|80.10|0.00|0.00|34576|73814|1700|10000|||99.02|100.57|0.00|3.09|00019AEA|0|1| +36|2023-10-06T21:16:44.8530000-07:00|1414|3| +38|2023-10-06T21:16:44.8530000-07:00|10FF0003|Gegehi Gehi|005A5A23|34576|73814|1700|10000|6||99.02|100.57|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +31|2023-10-06T21:16:44.8530000-07:00|10FF0001||||| +37|2023-10-06T21:16:44.8970000-07:00|10FF0008|Kokosaze Lulusaze|00019AE3|47043|90216|10000|10000|14||99.29|100.54|0.00|3.11|1F04|0|0|01|070004C3|0|41200000|| +26|2023-10-06T21:16:44.8970000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +39|2023-10-06T21:16:44.8970000-07:00|10FF0001|Sesuga Sapisuga|107235|129071|10000|10000|||99.86|97.20|0.00|3.13| +261|2023-10-06T21:16:44.3890000-07:00|Change|10FF0004||||| +39|2023-10-06T21:16:44.8970000-07:00|10FF0004|Buhojaqe Zijaqe|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86| +21|2023-10-06T21:16:44.8970000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20729220|40478540|10000|10000|||100.00|80.10|0.00|0.00|47043|90216|10000|10000|||99.29|100.54|0.00|3.11|00019AEB|0|1| +39|2023-10-06T21:16:44.9860000-07:00|10FF0007|Kehabiqo Febiqo|84097|129844|10000|10000|||99.63|98.04|0.00|3.12| +38|2023-10-06T21:16:44.9860000-07:00|40022472|Zeromus|005A5A00|20729220|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:44.9860000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +37|2023-10-06T21:16:45.0310000-07:00|40022472|Zeromus|00019AE7|20726232||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:45.0310000-07:00|10FF0007|Kehabiqo Febiqo|00019AE3|84097|129844|10000|10000|3||99.63|98.04|0.00|3.12|1505|0|0|01|090004C3|0|41200000|| +26|2023-10-06T21:16:45.0310000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +21|2023-10-06T21:16:45.1220000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|55B0000|104|FE8000|0|0|0|0|0|0|0|0|0|0|0|0|20726232|40478540|10000|10000|||100.00|80.10|0.00|0.00|44486|82773|5400|10000|||99.57|100.94|0.00|3.12|00019AEC|0|1| +37|2023-10-06T21:16:45.1650000-07:00|10FF0001|Sesuga Sapisuga|00019AE3|107235|129071|10000|10000|11||99.86|97.20|0.00|3.13|1306|0|0|01|0A0004C3|0|41200000|| +26|2023-10-06T21:16:45.1650000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:16:45.1650000-07:00|40022472|Zeromus|005A5A00|20726232|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:45.1650000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40022472|Zeromus|00|40478540|81809| +37|2023-10-06T21:16:45.2540000-07:00|40022472|Zeromus|00019AE4|20717867||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:16:45.2540000-07:00|10FF0009|Zewo Negiwo|6506|Liturgy of the Bell|10FF0009|Zewo Negiwo|500000F|A958000|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|1313|10000|||98.30|103.57|0.00|2.68|81177|81177|1313|10000|||98.30|103.57|0.00|2.68|00019AED|0|1| +38|2023-10-06T21:16:45.2540000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|1313|10000|25||98.30|103.57|0.00|2.68|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:45.2540000-07:00|A95|Liturgy of the Bell|20.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|05|81177|81177| +38|2023-10-06T21:16:45.2990000-07:00|40022B6E||005A5A00|73567|77042|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:16:45.2990000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44486|82773|5400|10000|||99.57|100.94|0.00|3.12|44486|82773|5400|10000|||99.57|100.94|0.00|3.12|00019AEE|0|1| +38|2023-10-06T21:16:45.2990000-07:00|40022B6E||005A5A00|73567|77042|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:16:45.2990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|44486|82773|5400|10000|7||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:45.2990000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:16:44.8220000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:16:45.3870000-07:00|40022472|Zeromus|00019AE8|20709268||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:45.3870000-07:00|40022472|Zeromus|00019AE9|20706508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:45.3870000-07:00|40022472|Zeromus|00019AEA|20706507||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:16:45.0480000-07:00|40022B6E|Liturgic Bell|00|5A|10FF0009|00||10349|13961|73567|77042|10000|10000|||96.22|98.70|0.00|0.48| +261|2023-10-06T21:16:45.0480000-07:00|Add|40022B6E||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:45.0480000-07:00|Change|40022B6E||| +37|2023-10-06T21:16:45.6550000-07:00|40022472|Zeromus|00019AEB|20702587||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:45.6550000-07:00|40022472|Zeromus|00019AEC|20701216||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:45.6550000-07:00|10FF000A|Dukaro Nezikaro|00019AEC|44740|82773|5400|10000|7||99.57|100.94|0.00|3.12|1E00|0|0|01|080004A2|0|C0C00000|| +21|2023-10-06T21:16:45.6550000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3F0A0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|20706507|40478540|10000|10000|||100.00|80.10|0.00|0.00|47043|90216|10000|10000|||99.29|100.54|0.00|3.11|00019AEF|0|1| +37|2023-10-06T21:16:45.6980000-07:00|10FF000A|Dukaro Nezikaro|00019AEE|44740|82773|5400|10000|7||99.57|100.94|0.00|3.12|1E00|0|0|01|080004A2|0|40C00000|| +38|2023-10-06T21:16:45.6980000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|44740|82773|5400|10000|7||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:45.8320000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|27E80000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|20701216|40478540|10000|10000|||100.00|80.10|0.00|0.00|34576|73814|1700|10000|||99.02|100.57|0.00|3.09|00019AF0|0|1| +38|2023-10-06T21:16:45.8320000-07:00|10FF0003|Gegehi Gehi|005A5A23|34576|73814|1400|10000|6||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:45.8320000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:16:45.8320000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:16:45.3280000-07:00|Change|10FF0003||| +39|2023-10-06T21:16:45.9660000-07:00|10FF0003|Gegehi Gehi|35314|73814|1600|10000|||99.02|100.57|0.00|3.09| +39|2023-10-06T21:16:46.0090000-07:00|10FF000A|Dukaro Nezikaro|45567|82773|5600|10000|||99.57|100.94|0.00|3.12| +261|2023-10-06T21:16:45.5190000-07:00|Change|10FF000A||| +24|2023-10-06T21:16:46.2320000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|47043|90216|10000|10000|||99.29|100.54|0.00|3.11|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +21|2023-10-06T21:16:46.2320000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40022472|Zeromus|710003|17350000|104|4568000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|20701216|40478540|10000|10000|||100.00|80.10|0.00|0.00|45567|82773|5600|10000|||99.57|100.94|0.00|3.12|00019AF1|0|1| +38|2023-10-06T21:16:46.2320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|47043|90216|10000|10000|5||99.29|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:16:46.2320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|45567|82773|5600|10000|7||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.2320000-07:00|4A2|Ten Chi Jin|5.42|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +24|2023-10-06T21:16:46.2770000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|599|45567|82773|5600|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +38|2023-10-06T21:16:46.2770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|44134|82773|5600|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:46.2770000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +24|2023-10-06T21:16:46.3220000-07:00|10FF0003|Gegehi Gehi|DoT|0|7B9|35314|73814|1600|10000|||99.02|100.57|0.00|3.09|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +38|2023-10-06T21:16:46.3220000-07:00|10FF0003|Gegehi Gehi|005A5A23|33337|73814|1600|10000|0||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:46.3220000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +261|2023-10-06T21:16:45.8610000-07:00|Change|10FF0003||| +261|2023-10-06T21:16:45.8610000-07:00|Change|10FF0009||||||||||||| +24|2023-10-06T21:16:46.4120000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|EC5|44134|82773|5600|10000|||99.57|100.94|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:46.4120000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|EE2|84097|129844|10000|10000|||99.63|98.04|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:46.4120000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|E32|47043|90216|10000|10000|||99.29|100.54|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:46.4120000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|ECE|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86|10FF0004|Buhojaqe Zijaqe|0|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:46.4120000-07:00|10FF0003|Gegehi Gehi|HoT|798|1717|33337|73814|1600|10000|||99.02|100.57|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:46.4120000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|E2C|107235|129071|10000|10000|||99.90|96.33|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:46.4120000-07:00|10FF0009|Zewo Negiwo|HoT|798|E9D|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66|10FF0004|Buhojaqe Zijaqe|0|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86| +24|2023-10-06T21:16:46.4120000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|671|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +38|2023-10-06T21:16:46.4120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87907|129844|10000|10000|3||99.63|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.4120000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:16:46.4120000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|1313|10000|25||98.44|102.89|0.00|-2.66|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.4120000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:16:46.4120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50677|90216|10000|10000|5||99.29|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:46.4120000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:16:46.4120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110863|129071|10000|10000|11||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.4120000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:16:46.4120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|42120|81541|3950|10000|0||99.72|101.37|0.00|-2.86|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:46.4120000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:16:46.4120000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:16:46.4120000-07:00|10FF0003|Gegehi Gehi|005A5A23|39248|73814|1600|10000|0||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.4120000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:16:46.4120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|47915|82773|5600|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.4120000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:16:46.4550000-07:00|40022472|Zeromus|00019AEF|20685078||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:46.5010000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|1E0|84097|129844|10000|10000|||99.63|98.04|0.00|3.12|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +38|2023-10-06T21:16:46.5010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87427|129844|10000|10000|0||99.63|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:46.5010000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:16:46.5460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50677|90216|10000|10000|5||99.29|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5460000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:46.5460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|47915|82773|5600|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5460000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:16:46.5460000-07:00|10FF0003|Gegehi Gehi|005A5A23|39248|73814|1600|10000|0||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5460000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:46.5460000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|42120|81541|3950|10000|0||99.72|101.37|0.00|-2.86|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5460000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:46.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87427|129844|10000|10000|0||99.63|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5460000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:16:46.5460000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|1313|10000|25||98.44|102.89|0.00|-2.66|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5460000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:46.5460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110863|129071|10000|10000|11||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5460000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:16:46.5460000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|6BC|44134|82773|5600|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +24|2023-10-06T21:16:46.5460000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|6C8|39979|81541|3950|10000|||99.72|101.37|0.00|-2.86|10FF0009|Zewo Negiwo|0|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +24|2023-10-06T21:16:46.5460000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|AAD|47043|90216|10000|10000|||99.29|100.54|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +24|2023-10-06T21:16:46.5460000-07:00|10FF0003|Gegehi Gehi|HoT|777|B10|33337|73814|1600|10000|||99.02|100.57|0.00|3.09|10FF0009|Zewo Negiwo|0|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +24|2023-10-06T21:16:46.5460000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|6E5|84097|129844|10000|10000|||99.63|98.04|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +24|2023-10-06T21:16:46.5460000-07:00|10FF0009|Zewo Negiwo|HoT|777|6A7|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66|10FF0009|Zewo Negiwo|0|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +24|2023-10-06T21:16:46.5460000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|6F0|107235|129071|10000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +38|2023-10-06T21:16:46.5470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89192|129844|10000|10000|0||99.62|98.04|-0.02|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5470000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:16:46.5470000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|1863|10000|25||98.44|102.89|0.00|-2.66|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5470000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:46.5470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53410|90216|10000|10000|5||99.29|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5470000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:46.5470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|112639|129071|10000|10000|11||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5470000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:16:46.5470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|43856|81541|3950|10000|0||99.72|101.37|0.00|-2.86|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5470000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:46.5470000-07:00|10FF0003|Gegehi Gehi|005A5A23|42080|73814|1600|10000|0||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5470000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:46.5470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|49639|82773|5600|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.5470000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:16:46.5890000-07:00|40022472|Zeromus|00019AF0|20674862||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:46.5890000-07:00|10FF0003|Gegehi Gehi|00019AF0|42080|73814|1600|10000|0||99.02|100.57|0.00|3.09|2300|0|0|01|090004D2|0|41F00000|| +24|2023-10-06T21:16:46.5890000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|110863|129071|10000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|1313|10000|||98.44|102.89|0.00|-2.66| +21|2023-10-06T21:16:46.5890000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|282A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20685078|40478540|10000|10000|||100.00|80.10|0.00|0.00|110863|129071|10000|10000|||99.90|96.33|0.00|3.14|00019AF2|0|1| +38|2023-10-06T21:16:46.5890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|112639|129071|10000|10000|8||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:46.5890000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:16:46.5890000-07:00|10FF0003|Gegehi Gehi|005A5A23|42080|73814|1600|10000|0||99.02|100.57|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:46.9450000-07:00|10FF0009|Zewo Negiwo|1D06|Thin Air|10FF0009|Zewo Negiwo|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|1863|10000|||98.44|102.89|0.00|-2.66|81177|81177|1863|10000|||98.44|102.89|0.00|-2.66|00019AF3|0|1| +38|2023-10-06T21:16:46.9450000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|1863|10000|25||98.44|102.89|0.00|-2.66|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:46.9450000-07:00|4C1|Thin Air|12.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +37|2023-10-06T21:16:47.1230000-07:00|40022472|Zeromus|00019AF1|20668921||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:47.1230000-07:00|10FF000A|Dukaro Nezikaro|00019AF1|50749|82773|5600|10000|0||99.57|100.94|0.00|3.12|1E00|0|0|01|080004A2|01|40926E90|| +21|2023-10-06T21:16:47.1230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|8890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20674862|40478540|10000|10000|||100.00|80.10|0.00|0.00|112639|129071|10000|10000|||99.90|96.33|0.00|3.14|00019AF4|0|1| +31|2023-10-06T21:16:47.1240000-07:00|10FF0001||||| +21|2023-10-06T21:16:47.2120000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|34E60000|143E|340000|4|1A5C8000|11B|2A8000|0|0|0|0|0|0|0|0|20674862|40478540|10000|10000|||100.00|80.10|0.00|0.00|89192|129844|10000|10000|||99.42|98.04|0.00|3.09|00019AF5|0|1| +21|2023-10-06T21:16:47.2570000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40022472|Zeromus|552003|35DA0000|900000E|4A28000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|20668921|40478540|10000|10000|||100.00|80.10|0.00|0.00|50749|82773|5600|10000|||99.57|100.94|0.00|3.12|00019AF6|0|1| +38|2023-10-06T21:16:47.2570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50749|82773|5600|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:47.2570000-07:00|4A2|Ten Chi Jin|4.40|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:16:47.2570000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:16:46.9270000-07:00|Change|10FF0009||||| +21|2023-10-06T21:16:47.5680000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20668921|40478540|10000|10000|||100.00|80.10|0.00|0.00|53410|90216|10000|10000|||99.29|100.54|0.00|3.11|00019AF7|0|1| +39|2023-10-06T21:16:47.6130000-07:00|10FF0009|Zewo Negiwo|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +21|2023-10-06T21:16:47.6130000-07:00|10FF0009|Zewo Negiwo|88|Presence of Mind|10FF0009|Zewo Negiwo|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|1863|10000|||98.44|102.89|0.00|-3.11|81177|81177|1863|10000|||98.44|102.89|0.00|-3.11|00019AF8|0|1| +37|2023-10-06T21:16:47.6580000-07:00|40022472|Zeromus|00019AF4|20666736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:47.7020000-07:00|10FF0009|Zewo Negiwo|00019AF3|81177|81177|2084|10000|25||98.44|102.89|0.00|-3.11|1800|0|0|01|0C0004C1|FF9C|41400000|| +39|2023-10-06T21:16:47.7020000-07:00|10FF0008|Kokosaze Lulusaze|54312|90216|10000|10000|||99.29|100.54|0.00|3.11| +38|2023-10-06T21:16:47.7020000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2084|10000|25||98.44|102.89|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:16:47.7460000-07:00|40022472|Zeromus|DoT|0|EAF|20666736|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|50749|82773|5600|10000|||99.57|100.94|0.00|3.12| +21|2023-10-06T21:16:47.7460000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|716003|17E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20666736|40478540|10000|10000|||100.00|80.10|0.00|0.00|112639|129071|10000|10000|||99.90|96.33|0.00|3.14|00019AF9|0|1| +38|2023-10-06T21:16:47.7460000-07:00|40022472|Zeromus|005A5A00|20662977|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +21|2023-10-06T21:16:47.7910000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|65700000|0|0|0|0|0|0|0|0|0|0|0|0|89192|129844|10000|10000|||99.38|98.04|0.00|3.11|89192|129844|10000|10000|||99.38|98.04|0.00|3.11|00019AFA|0|1| +38|2023-10-06T21:16:47.8360000-07:00|40022472|Zeromus|005A5A00|20662977|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:47.8360000-07:00|4AB|Feint|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +37|2023-10-06T21:16:47.8810000-07:00|40022472|Zeromus|00019AF2|20652695||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:47.8810000-07:00|10FF0001|Sesuga Sapisuga|113929|129071|10000|10000|||99.90|96.33|0.00|3.14| +39|2023-10-06T21:16:47.8810000-07:00|10FF0004|Buhojaqe Zijaqe|44671|81541|4150|10000|||99.72|101.37|0.00|-2.86| +21|2023-10-06T21:16:47.8810000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B5B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20662977|40478540|10000|10000|||100.00|80.10|0.00|0.00|89192|129844|10000|10000|||99.38|98.04|0.00|3.11|00019AFB|0|1| +36|2023-10-06T21:16:47.8810000-07:00|14F0|3| +261|2023-10-06T21:16:47.4220000-07:00|Change|10FF0004||||| +37|2023-10-06T21:16:47.9690000-07:00|40022472|Zeromus|00019AF6|20638909||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:47.9690000-07:00|10FF000A|Dukaro Nezikaro|00019AF6|50749|82773|5600|10000|0||99.57|100.94|0.00|3.12|1E00|0|0|02|080004A2|09|406EB83D|||||| +39|2023-10-06T21:16:47.9690000-07:00|10FF0007|Kehabiqo Febiqo|90490|129844|10000|10000|||99.38|98.04|0.00|3.11| +21|2023-10-06T21:16:47.9690000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|722003|4D570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20662977|40478540|10000|10000|||100.00|80.10|0.00|0.00|42080|73814|1600|10000|||100.05|101.00|0.00|2.83|00019AFC|0|1| +38|2023-10-06T21:16:47.9690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50749|82773|5600|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:48.1480000-07:00|10FF0009|Zewo Negiwo|00019AF8|81177|81177|2084|10000|25||98.44|102.89|0.00|-3.11|1800|0|0|01|0D00009D|0|41700000|| +26|2023-10-06T21:16:48.1480000-07:00|9D|Presence of Mind|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:16:48.1480000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5BE40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20638909|40478540|10000|10000|||100.00|80.10|0.00|0.00|54312|90216|10000|10000|||99.29|100.54|0.00|3.11|00019AFD|0|1| +38|2023-10-06T21:16:48.1480000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2084|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:48.2370000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40022472|Zeromus|654003|22AF0000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|20638909|40478540|10000|10000|||100.00|80.10|0.00|0.00|50749|82773|5600|10000|||99.57|100.94|0.00|3.12|00019AFE|0|1| +38|2023-10-06T21:16:48.2370000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50749|82773|5600|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:48.2370000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:16:48.2370000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:16:48.2820000-07:00|40022472|Zeromus|005A5A00|20638909|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:48.2820000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:16:48.3260000-07:00|40022472|Zeromus|00019AF7|20636607||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:48.3260000-07:00|40022472|Zeromus|00019AF9|20630489||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:48.3260000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20638909|40478540|10000|10000|||100.00|80.10|0.00|0.00|42080|73814|1600|10000|||100.05|101.00|0.00|-3.14|00019AFF|0|1| +21|2023-10-06T21:16:48.3260000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|5230000|104|F48000|0|0|0|0|0|0|0|0|0|0|0|0|20638909|40478540|10000|10000|||100.00|80.10|0.00|0.00|50749|82773|5600|10000|||99.57|100.94|0.00|3.12|00019B00|0|1| +261|2023-10-06T21:16:47.8720000-07:00|Change|10FF0009||| +37|2023-10-06T21:16:48.4160000-07:00|10FF0007|Kehabiqo Febiqo|00019AFA|116458|155812|10000|10000|0||99.38|98.04|0.00|3.11|1500|0|0|01|07000057|0|41200000|| +26|2023-10-06T21:16:48.4160000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:16:48.4160000-07:00|40022472|Zeromus|00019AFB|20627582||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:48.4160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116458|155812|10000|10000|0||99.38|98.04|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +20|2023-10-06T21:16:48.6830000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|100.05|101.00|0.00|-3.14| +38|2023-10-06T21:16:48.6830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44671|81541|4150|10000|0||99.71|101.37|0.00|-2.68|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:48.6830000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:16:48.1920000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T21:16:48.7270000-07:00|40022472|Zeromus|00019AF5|20614040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:48.7270000-07:00|10FF0007|Kehabiqo Febiqo|00019AF5|123206||||||99.38|98.05|0.00|-2.86| +21|2023-10-06T21:16:48.8160000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0006|Wowobora Gogobora|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|0|10000|||98.31|103.60|0.00|0.00|44671|81541|4150|10000|||99.71|101.38|0.00|-2.20|00019B01|0|1| +261|2023-10-06T21:16:48.3790000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:16:48.8600000-07:00|40022472|Zeromus|00019AFF|20614039||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:48.8600000-07:00|40022472|Zeromus|00019B00|20612724||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:48.8600000-07:00|10FF000A|Dukaro Nezikaro|00019B00|50993|82773|5600|10000|0||99.57|100.94|0.00|3.12|1E00|0|0|01|080001FB|0|C1A00000|| +20|2023-10-06T21:16:48.9050000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.544|98.44|102.89|0.00|-3.11| +39|2023-10-06T21:16:48.9480000-07:00|10FF0003|Gegehi Gehi|42818|73814|1800|10000|||100.05|101.00|0.00|-3.14| +39|2023-10-06T21:16:48.9930000-07:00|10FF000A|Dukaro Nezikaro|51820|82773|5800|10000|||99.57|100.94|0.00|3.12| +261|2023-10-06T21:16:48.4710000-07:00|Change|10FF000A||| +21|2023-10-06T21:16:49.0830000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|FC00000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|20612724|40478540|10000|10000|||100.00|80.10|0.00|0.00|113929|129071|10000|10000|||99.90|96.33|0.00|3.14|00019B02|0|1| +21|2023-10-06T21:16:49.0830000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|51820|82773|5800|10000|||99.57|100.94|0.00|3.12|51820|82773|5800|10000|||99.57|100.94|0.00|3.12|00019B03|0|1| +38|2023-10-06T21:16:49.0830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|51820|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:49.0830000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +26|2023-10-06T21:16:49.0830000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:16:48.5620000-07:00|Remove|40022B58| +37|2023-10-06T21:16:49.1270000-07:00|40022472|Zeromus|00019AFC|20592925||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:49.2170000-07:00|40022472|Zeromus|00019AFE|20584046||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:49.2170000-07:00|10FF000A|Dukaro Nezikaro|00019AFE|51820|82773|5800|10000|0||99.57|100.94|0.00|3.12|1E00|0|0|01|08000A81|0|C1F00000|| +24|2023-10-06T21:16:49.2170000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|933|54312|90216|10000|10000|||99.32|100.54|0.00|2.79|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:49.2170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|51957|90216|10000|10000|0||99.32|100.54|0.00|2.79|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:49.2170000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +261|2023-10-06T21:16:48.7910000-07:00|Change|10FF0003||||| +24|2023-10-06T21:16:49.2620000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1E02|51820|82773|5800|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:49.2620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|44138|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:49.3070000-07:00|40022472|Zeromus|00019AFD|20560522||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:49.3070000-07:00|10FF0003|Gegehi Gehi|DoT|0|1C54|42818|73814|1800|10000|||100.05|101.00|0.00|-3.14|10FF0003|Gegehi Gehi|FFFFFFFF|42818|73814|1800|10000|||100.05|101.00|0.00|-3.14| +38|2023-10-06T21:16:49.3070000-07:00|10FF0003|Gegehi Gehi|005A5A23|35566|73814|1800|10000|0||100.05|101.00|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:48.9050000-07:00|Change|10FF0009||||||||||||| +24|2023-10-06T21:16:49.3960000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1C1E|44671|81541|1750|10000|||99.55|103.45|0.00|-1.07|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +21|2023-10-06T21:16:49.3960000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|5350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|113929|129071|10000|10000|||99.90|96.33|0.00|3.14|00019B04|0|1| +38|2023-10-06T21:16:49.3960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|37473|81541|1750|10000|0||99.55|103.45|0.00|-1.07|0|0|0||||||||||||||||||||||||||||||||||||| +31|2023-10-06T21:16:49.3960000-07:00|10FF0001||||| +24|2023-10-06T21:16:49.4850000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|116D|123206|155812|10000|10000|||99.34|98.77|0.00|-0.97|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:49.4850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118745|155812|10000|10000|0||99.34|98.77|0.00|-0.97|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:49.4850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|16361|81809|2000|10000|0||98.31|103.60|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:16:49.4850000-07:00|94|Raise|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|08|81809|81177| +26|2023-10-06T21:16:49.4850000-07:00|2B|Weakness|100.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +26|2023-10-06T21:16:49.4850000-07:00|1A2|Transcendent|5.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T21:16:49.0200000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:16:49.0200000-07:00|Change|10FF0006||| +38|2023-10-06T21:16:49.5310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|51957|90216|10000|10000|0||99.35|100.54|0.00|2.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|44138|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0003|Gegehi Gehi|005A5A23|35566|73814|1800|10000|0||100.05|101.00|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|37473|81541|1750|10000|0||99.71|103.40|0.00|-1.83|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|16361|81809|2000|10000|0||98.31|103.60|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118745|155812|10000|10000|0||99.34|98.69|0.00|-1.48|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2084|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113929|129071|10000|10000|8||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:16:49.5310000-07:00|10FF0003|Gegehi Gehi|HoT|777|6C0|35566|73814|1800|10000|||100.05|101.00|0.00|-3.14|10FF0009|Zewo Negiwo|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:49.5310000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|6B1|44138|82773|5800|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:49.5310000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|6C7|51957|90216|10000|10000|||99.35|100.54|0.00|2.11|10FF0009|Zewo Negiwo|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:49.5310000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|857|118745|155812|10000|10000|||99.34|98.69|0.00|-1.48|10FF0009|Zewo Negiwo|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:49.5310000-07:00|10FF0009|Zewo Negiwo|HoT|777|690|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11|10FF0009|Zewo Negiwo|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:49.5310000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|6CC|37473|81541|1750|10000|||99.71|103.40|0.00|-1.83|10FF0009|Zewo Negiwo|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:49.5310000-07:00|10FF0006|Wowobora Gogobora|HoT|777|6CC|16361|81809|2000|10000|||98.31|103.60|0.00|0.00|10FF0009|Zewo Negiwo|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:49.5310000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|AC3|113929|129071|10000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:49.5310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120880|155812|10000|10000|0||99.34|98.69|0.00|-1.48|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2634|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53692|90216|10000|10000|0||99.35|100.54|0.00|2.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|18101|81809|2000|10000|0||98.31|103.60|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116684|129071|10000|10000|8||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39213|81541|1750|10000|0||99.71|103.40|0.00|-1.83|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF0003|Gegehi Gehi|005A5A23|37294|73814|1800|10000|0||100.05|101.00|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:49.5310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|45851|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:49.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +24|2023-10-06T21:16:49.5750000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|113929|129071|10000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|FFFFFFFF|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11| +22|2023-10-06T21:16:49.5750000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0001|Sesuga Sapisuga|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|113929|129071|10000|10000|||99.90|96.33|0.00|3.14|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019B05|0|8| +22|2023-10-06T21:16:49.5750000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0007|Kehabiqo Febiqo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|118745|155812|10000|10000|||99.34|98.69|0.00|-1.48|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019B05|1|8| +22|2023-10-06T21:16:49.5750000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0008|Kokosaze Lulusaze|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|51957|90216|10000|10000|||99.35|100.54|0.00|2.11|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019B05|2|8| +22|2023-10-06T21:16:49.5750000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF000A|Dukaro Nezikaro|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|44138|82773|5800|10000|||99.57|100.94|0.00|3.12|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019B05|3|8| +22|2023-10-06T21:16:49.5750000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0003|Gegehi Gehi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|35566|73814|1800|10000|||100.05|101.00|0.00|-3.14|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019B05|4|8| +22|2023-10-06T21:16:49.5750000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0009|Zewo Negiwo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81177|81177|2084|10000|||98.44|102.89|0.00|-3.11|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019B05|5|8| +22|2023-10-06T21:16:49.5750000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0006|Wowobora Gogobora|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|16361|81809|2000|10000|||98.31|103.60|0.00|0.00|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019B05|6|8| +22|2023-10-06T21:16:49.5750000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0004|Buhojaqe Zijaqe|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|37473|81541|1750|10000|||99.71|103.40|0.00|-1.83|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019B05|7|8| +38|2023-10-06T21:16:49.5750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116684|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:49.1380000-07:00|Change|40022472||||||||||||| +261|2023-10-06T21:16:49.1380000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:16:49.1380000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:16:49.1380000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:16:49.1380000-07:00|Change|40022489||||||||| +261|2023-10-06T21:16:49.1380000-07:00|Change|40022487||||||||| +20|2023-10-06T21:16:49.6630000-07:00|40022487|Zeromus|8B42|Abyssal Echoes|40022487|Zeromus|15.700|83.50|83.50|0.00|0.00| +20|2023-10-06T21:16:49.6630000-07:00|40022488|Zeromus|8B41|unknown_8b41|40022488|Zeromus|8.700|100.00|100.00|0.00|-2.36| +20|2023-10-06T21:16:49.6630000-07:00|40022489|Zeromus|8B42|Abyssal Echoes|40022489|Zeromus|15.700|116.50|83.50|0.00|0.00| +20|2023-10-06T21:16:49.6630000-07:00|4002248A|Zeromus|8B41|unknown_8b41|4002248A|Zeromus|8.700|100.00|100.00|0.00|2.36| +261|2023-10-06T21:16:49.1380000-07:00|Change|40022488||||||||||||||| +20|2023-10-06T21:16:49.6640000-07:00|4002248B|Zeromus|8B42|Abyssal Echoes|4002248B|Zeromus|15.700|88.00|100.00|0.00|0.00| +20|2023-10-06T21:16:49.6640000-07:00|4002248C|Zeromus|8B40|unknown_8b40|4002248C|Zeromus|8.700|100.00|100.00|0.00|-1.57| +20|2023-10-06T21:16:49.6640000-07:00|4002248D|Zeromus|8B42|Abyssal Echoes|4002248D|Zeromus|15.700|100.00|112.00|0.00|0.00| +20|2023-10-06T21:16:49.6640000-07:00|4002248E|Zeromus|8B40|unknown_8b40|4002248E|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:16:49.6640000-07:00|4002248F|Zeromus|8B42|Abyssal Echoes|4002248F|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:16:49.6640000-07:00|40022490|Zeromus|8D2B|unknown_8d2b|40022490|Zeromus|8.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:16:49.6640000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|714003|4CCF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20560522|40478540|10000|10000|||100.00|80.10|0.00|0.00|120880|155812|10000|10000|||99.35|98.61|0.00|-1.98|00019B06|0|1| +261|2023-10-06T21:16:49.2350000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:16:49.2350000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:16:49.2350000-07:00|Change|4002248C||||||||||||||| +261|2023-10-06T21:16:49.2350000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:16:49.7080000-07:00|40022472|Zeromus|00019B02|20556490||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:49.7080000-07:00|10FF000A|Dukaro Nezikaro|00019B03|45851|82773|5800|10000|0||99.57|100.94|0.00|3.12|1E00|0|0|01|08000A81|0|41F00000|| +38|2023-10-06T21:16:49.7080000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|45851|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:49.8870000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53692|90216|10000|10000|||99.38|100.54|0.00|1.62|53692|90216|10000|10000|||99.38|100.54|0.00|1.62|00019B07|0|1| +38|2023-10-06T21:16:49.8870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53692|90216|10000|10000|0||99.38|100.54|0.00|1.62|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:49.8870000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:16:49.9310000-07:00|40022472|Zeromus|00019B04|20555157||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|14030000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|00019B08|0|8| +22|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|4|13920000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|18101|81809|2000|10000|||98.31|103.60|0.00|0.00|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|00019B08|1|8| +22|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|200004|20420000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|45851|82773|5800|10000|||99.57|100.94|0.00|3.12|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|00019B08|2|8| +22|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|14290000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|39213|81541|1750|10000|||100.03|101.85|0.00|-2.95|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|00019B08|3|8| +22|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|200004|200E0000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|37294|73814|1800|10000|||100.05|101.00|0.00|-3.14|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|00019B08|4|8| +22|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|13E10000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|53692|90216|10000|10000|||99.38|100.54|-0.02|1.58|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|00019B08|5|8| +22|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|18070000|FCA50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|120880|155812|10000|10000|||99.35|98.46|0.00|3.11|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|00019B08|6|8| +22|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|13ED0000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|116684|129071|10000|10000|||99.90|96.33|0.00|3.14|81177|81177|2634|10000|||98.44|102.89|0.00|-3.11|00019B08|7|8| +38|2023-10-06T21:16:49.9310000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2634|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:49.9310000-07:00|4C1|Thin Air|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +21|2023-10-06T21:16:49.9750000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|1CBE0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|20556490|40478540|10000|10000|||100.00|80.10|0.00|0.00|45851|82773|5800|10000|||99.57|100.94|0.00|3.12|00019B09|0|1| +38|2023-10-06T21:16:49.9750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|45851|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:49.9750000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:16:49.6220000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:16:49.6220000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:16:49.6220000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:16:49.6220000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:16:49.6220000-07:00|Change|4002248D||||||||||||| +21|2023-10-06T21:16:50.1090000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|23E50000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|20555157|40478540|10000|10000|||100.00|80.10|0.00|0.00|37294|73814|1800|10000|||100.05|101.00|0.00|-3.14|00019B0A|0|1| +38|2023-10-06T21:16:50.1090000-07:00|10FF0003|Gegehi Gehi|005A5A23|37294|73814|1600|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:50.1090000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:16:50.1090000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:16:50.1970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120880|155812|10000|10000|0||99.35|98.41|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:50.1970000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|155812|40478540| +261|2023-10-06T21:16:49.7380000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:16:50.2420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20555157|40478540|10000|10000|||100.00|80.10|0.00|0.00|53692|90216|10000|10000|||99.38|100.54|-0.02|1.58|00019B0B|0|1| +38|2023-10-06T21:16:50.2420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116684|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:50.2420000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +37|2023-10-06T21:16:50.2870000-07:00|40022472|Zeromus|00019B06|20535494||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:50.2870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|45851|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:50.2870000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|40478540| +38|2023-10-06T21:16:50.3770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53692|90216|10000|10000|0||99.38|100.54|-0.02|1.58|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:50.3770000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +38|2023-10-06T21:16:50.4210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39213|81541|1750|10000|0||100.08|101.34|-0.02|-2.74|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:50.4210000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +261|2023-10-06T21:16:49.9650000-07:00|Change|10FF0009||||||||||||||| +38|2023-10-06T21:16:50.4660000-07:00|40022472|Zeromus|005A5A00|20535494|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:16:50.4660000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:16:50.4660000-07:00|10FF0003|Gegehi Gehi|005A5A23|37294|73814|1600|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:50.4660000-07:00|EB1|Big Bounce|0.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +21|2023-10-06T21:16:50.5100000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3DD0000|104|B78000|0|0|0|0|0|0|0|0|0|0|0|0|20535494|40478540|10000|10000|||100.00|80.10|0.00|0.00|45851|82773|5800|10000|||99.57|100.94|0.00|3.12|00019B0C|0|1| +39|2023-10-06T21:16:50.5990000-07:00|10FF0009|Zewo Negiwo|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +26|2023-10-06T21:16:50.6890000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:16:50.6890000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2C170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20535494|40478540|10000|10000|||100.00|80.10|0.00|0.00|53692|90216|10000|10000|||99.38|100.54|0.00|1.58|00019B0D|0|1| +37|2023-10-06T21:16:50.7330000-07:00|40022472|Zeromus|00019B09|20528136||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:50.7330000-07:00|10FF0008|Kokosaze Lulusaze|54594|90216|10000|10000|||99.38|100.54|0.00|3.11| +24|2023-10-06T21:16:50.7780000-07:00|10FF0009|Zewo Negiwo|HoT|4C3|D94|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:50.7780000-07:00|10FF0009|Zewo Negiwo|00019B08|81177|81177|2855|10000|25||98.44|102.89|0.00|-3.11|1800|0|0|01|0C000096|0|41700000|| +26|2023-10-06T21:16:50.7780000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +24|2023-10-06T21:16:50.7780000-07:00|40022472|Zeromus|DoT|0|13ED|20535494|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|39213|81541|1750|10000|||99.98|101.15|0.00|-2.49| +21|2023-10-06T21:16:50.7780000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|29B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20535494|40478540|10000|10000|||100.00|80.10|0.00|0.00|45851|82773|5800|10000|||99.57|100.94|0.00|3.12|00019B0E|0|1| +38|2023-10-06T21:16:50.7780000-07:00|40022472|Zeromus|005A5A00|20523035|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:16:50.7780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|45851|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:50.7780000-07:00|A81|Meisui|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +39|2023-10-06T21:16:50.8680000-07:00|10FF0001|Sesuga Sapisuga|117974|129071|10000|10000|||99.90|96.33|0.00|3.14| +36|2023-10-06T21:16:50.8680000-07:00|15CC|3| +37|2023-10-06T21:16:50.9140000-07:00|10FF0006|Wowobora Gogobora|00019B08|23111|81809|2000|10000|0||98.28|103.59|0.00|3.07|1B01|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:16:50.9140000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:16:50.9140000-07:00|40022472|Zeromus|00019B0A|20513846||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:50.9140000-07:00|10FF0004|Buhojaqe Zijaqe|40028|81541|1950|10000|||99.95|101.10|0.00|-2.75| +261|2023-10-06T21:16:50.3740000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:16:51.0020000-07:00|40022472|Zeromus|00019B0B|20510006||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:51.0020000-07:00|10FF0007|Kehabiqo Febiqo|122438|155812|10000|10000|||99.35|98.41|0.00|3.11| +39|2023-10-06T21:16:51.0020000-07:00|10FF0006|Wowobora Gogobora|23929|81809|2200|10000|||98.28|103.59|0.00|3.07| +261|2023-10-06T21:16:50.4750000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:16:51.0460000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|DED|45851|82773|5800|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:51.0460000-07:00|10FF000A|Dukaro Nezikaro|00019B08|57674|82773|5800|10000|0||99.57|100.94|0.00|3.12|1E02|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:16:51.0460000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:16:51.0460000-07:00|40022472|Zeromus|00019B0C|20509017||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:51.0460000-07:00|10FF000A|Dukaro Nezikaro|00019B0C|57857||||||99.57|100.94|0.00|3.12| +21|2023-10-06T21:16:51.0920000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40028|81541|1950|10000|||99.93|101.03|0.00|-2.92|40028|81541|1950|10000|||99.93|101.03|0.00|-2.92|00019B0F|0|1| +21|2023-10-06T21:16:51.0920000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|26680000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|20509017|40478540|10000|10000|||100.00|80.10|0.00|0.00|37294|73814|1600|10000|||100.05|101.00|0.00|-3.14|00019B10|0|1| +38|2023-10-06T21:16:51.0920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40028|81541|1950|10000|0||99.93|101.03|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:51.0920000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:16:51.0920000-07:00|10FF0003|Gegehi Gehi|005A5A23|37294|73814|1300|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:51.0920000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +24|2023-10-06T21:16:51.1800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|D01|40028|81541|1950|10000|||99.93|101.03|0.00|-2.92|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:51.1800000-07:00|10FF0004|Buhojaqe Zijaqe|00019B08|48518|81541|1950|10000|0||99.93|101.03|0.00|-2.92|1C03|0|0|02|04000768|0|C1700000|||||| +26|2023-10-06T21:16:51.1800000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +21|2023-10-06T21:16:51.2250000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|930F|A788000|0|0|0|0|0|0|0|0|0|0|122438|155812|10000|10000|||99.35|98.41|0.00|3.11|122438|155812|10000|10000|||99.35|98.41|0.00|3.11|00019B11|0|1| +39|2023-10-06T21:16:51.2700000-07:00|40022B6E|Liturgic Bell|77042|77042|10000|10000|||96.22|98.70|0.00|0.48| +21|2023-10-06T21:16:51.2700000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20509017|40478540|10000|10000|||100.00|80.10|0.00|0.00|122438|155812|10000|10000|||99.35|98.41|0.00|3.11|00019B12|0|1| +21|2023-10-06T21:16:51.2700000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|1F500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20509017|40478540|10000|10000|||100.00|80.10|0.00|0.00|54594|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B13|0|1| +261|2023-10-06T21:16:50.8130000-07:00|Change|10FF0003||| +24|2023-10-06T21:16:51.3140000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|15FB|37294|73814|1300|10000|||100.05|101.00|0.00|-3.14|10FF0009|Zewo Negiwo|1|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:51.3140000-07:00|10FF0003|Gegehi Gehi|00019B08|51127|73814|1300|10000|0||100.05|101.00|0.00|-3.14|2304|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:16:51.3140000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:16:51.3140000-07:00|40022472|Zeromus|00019B0D|20497730||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:51.4050000-07:00|40022472|Zeromus|00019B0E|20487054||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:51.4050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48518|81541|1950|10000|0||99.93|100.98|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:51.4050000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:16:51.4050000-07:00|10FF0003|Gegehi Gehi|005A5A23|51127|73814|1300|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:51.4050000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:16:51.4050000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57857|82773|5800|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:51.4050000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +24|2023-10-06T21:16:51.4490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|E07|54594|90216|10000|10000|||99.38|100.54|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:51.4490000-07:00|10FF0008|Kokosaze Lulusaze|00019B08|63274|90216|10000|10000|0||99.38|100.54|0.00|3.11|1F05|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:16:51.4490000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:51.4490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122438|155812|10000|10000|0||99.35|98.41|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:51.4490000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:16:51.4490000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2855|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:51.4490000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:16:51.4490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63274|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:51.4490000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:16:51.4490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|117974|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:51.4490000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T21:16:51.0460000-07:00|Change|10FF0009||| +24|2023-10-06T21:16:51.5820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|E08|122438|155812|10000|10000|||99.35|98.41|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:51.5820000-07:00|10FF0007|Kehabiqo Febiqo|00019B08|132181|155812|10000|10000|0||99.35|98.41|0.00|3.11|1506|0|0|01|01000096|0|41700000|| +26|2023-10-06T21:16:51.5820000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +21|2023-10-06T21:16:51.5820000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35712003|25AF0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|20487054|40478540|10000|10000|||100.00|80.10|0.00|0.00|117974|129071|10000|10000|||99.90|96.33|0.00|3.14|00019B14|0|1| +21|2023-10-06T21:16:51.6720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|4CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20487054|40478540|10000|10000|||100.00|80.10|0.00|0.00|117974|129071|10000|10000|||99.90|96.33|0.00|3.14|00019B15|0|1| +31|2023-10-06T21:16:51.6720000-07:00|10FF0001||||| +24|2023-10-06T21:16:51.7160000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|D8C|117974|129071|10000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:51.7160000-07:00|10FF0001|Sesuga Sapisuga|00019B08|126543|129071|10000|10000|4||99.90|96.33|0.00|3.14|1307|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:16:51.7160000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:16:51.7160000-07:00|10FF0004|Buhojaqe Zijaqe|00019B0F|48518|81541|1950|10000|0||99.93|100.96|0.00|-2.19|1C00|0|0|01|04000768|0|41700000|| +38|2023-10-06T21:16:51.7170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48518|81541|1950|10000|0||99.93|100.96|0.00|-2.19|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:51.8050000-07:00|10FF0007|Kehabiqo Febiqo|00019B11|132181|155812|10000|10000|8||99.35|98.41|0.00|3.11|1500|0|0|03|05000A76|0190|41000000|||||||||| +26|2023-10-06T21:16:51.8050000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|155812|155812| +26|2023-10-06T21:16:51.8050000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +26|2023-10-06T21:16:51.8050000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +37|2023-10-06T21:16:51.8050000-07:00|40022472|Zeromus|00019B12|20484103||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:51.8050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|132181|155812|10000|10000|8||99.35|98.41|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:51.8500000-07:00|40022472|Zeromus|00019B10|20474271||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:51.8950000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51127|73814|1300|10000|||100.05|101.00|0.00|-3.14|51127|73814|1300|10000|||100.05|101.00|0.00|-3.14|00019B16|0|1| +21|2023-10-06T21:16:51.9390000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|11880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20474271|40478540|10000|10000|||100.00|80.10|0.00|0.00|57857|82773|5800|10000|||99.57|100.94|0.00|3.12|00019B17|0|1| +39|2023-10-06T21:16:51.9840000-07:00|10FF0003|Gegehi Gehi|51865|73814|1500|10000|||100.05|101.00|0.00|-3.14| +39|2023-10-06T21:16:51.9840000-07:00|10FF000A|Dukaro Nezikaro|58684|82773|6000|10000|||99.57|100.94|0.00|3.12| +261|2023-10-06T21:16:51.5140000-07:00|Change|10FF000A||| +37|2023-10-06T21:16:52.0730000-07:00|40022472|Zeromus|00019B13|20466255||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:52.1180000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16280000|4|26F68000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|20474271|40478540|10000|10000|||100.00|80.10|0.00|0.00|132181|155812|10000|10000|||99.35|98.41|0.00|3.11|00019B18|0|1| +26|2023-10-06T21:16:52.1620000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:16:52.1620000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|36CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20474271|40478540|10000|10000|||100.00|80.10|0.00|0.00|63274|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B19|0|1| +261|2023-10-06T21:16:51.8420000-07:00|Change|10FF0003||| +37|2023-10-06T21:16:52.2070000-07:00|40022472|Zeromus|00019B15|20465024||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:52.2070000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1336|63274|90216|10000|10000|||99.38|100.54|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:52.2070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|68192|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:16:52.2510000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|12B4|58684|82773|6000|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:52.2510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|63472|82773|6000|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:16:52.2960000-07:00|10FF0003|Gegehi Gehi|HoT|0|C7D|51865|73814|1500|10000|||100.05|101.00|0.00|-3.14|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +20|2023-10-06T21:16:52.2960000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.544|98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:52.2960000-07:00|10FF0003|Gegehi Gehi|005A5A23|55062|73814|1500|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:52.3410000-07:00|40022472|Zeromus|00019B14|20455377||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:16:52.3410000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|1.491|98.28|103.59|0.00|3.07| +38|2023-10-06T21:16:52.3410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|23929|81809|2200|10000|0||98.28|103.59|0.00|3.07|0|0|0||||||||||||||||||| +30|2023-10-06T21:16:52.3410000-07:00|1A2|Transcendent|0.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T21:16:51.8420000-07:00|Change|10FF0006||||||||||||| +24|2023-10-06T21:16:52.3850000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|13B1|48518|81541|1950|10000|||99.94|101.58|0.00|-0.85|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +21|2023-10-06T21:16:52.3850000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|126543|129071|10000|10000|||99.90|96.33|0.00|3.14|126543|129071|10000|10000|||99.90|96.33|0.00|3.14|00019B1A|0|1| +38|2023-10-06T21:16:52.3850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|53559|81541|1950|10000|0||99.94|101.58|0.00|-0.85|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:51.9610000-07:00|Change|10FF0009||||||||||||| +24|2023-10-06T21:16:52.4740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|EE2|132181|155812|10000|10000|||99.35|98.41|0.00|3.11|10FF0007|Kehabiqo Febiqo|0|132181|155812|10000|10000|||99.35|98.41|0.00|3.11| +24|2023-10-06T21:16:52.4740000-07:00|10FF0006|Wowobora Gogobora|HoT|0|BB7|23929|81809|2200|10000|||98.28|103.59|0.00|3.07|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:52.4740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|135991|155812|10000|10000|8||99.35|98.41|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:52.4740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|26928|81809|2200|10000|0||98.28|103.59|0.00|3.07|0|0|0||||||||||||||||||| +37|2023-10-06T21:16:52.5200000-07:00|10FF0003|Gegehi Gehi|00019B16|55062|73814|1500|10000|0||100.05|101.00|0.00|-3.14|2300|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T21:16:52.5200000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:16:52.5200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|68192|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|63472|82773|6000|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0003|Gegehi Gehi|005A5A23|55062|73814|1500|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|53559|81541|1950|10000|0||99.94|101.59|-0.02|-1.40|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|26928|81809|2200|10000|0||98.28|103.59|0.00|3.07|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|135991|155812|10000|10000|8||99.35|98.41|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2855|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126543|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:16:52.5200000-07:00|10FF0003|Gegehi Gehi|HoT|777|6D0|55062|73814|1500|10000|||100.05|101.00|0.00|-3.14|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:52.5200000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|699|63472|82773|6000|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:52.5200000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|6E8|53559|81541|1950|10000|||99.94|101.59|-0.02|-1.40|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:52.5200000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|696|68192|90216|10000|10000|||99.38|100.54|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:52.5200000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|814|135991|155812|10000|10000|||99.35|98.41|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:52.5200000-07:00|10FF0009|Zewo Negiwo|HoT|777|697|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:52.5200000-07:00|10FF0006|Wowobora Gogobora|HoT|777|6BD|26928|81809|2200|10000|||98.28|103.59|0.00|3.07|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:52.5200000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|6F2|126543|129071|10000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +24|2023-10-06T21:16:52.5200000-07:00|10FF0009|Zewo Negiwo|HoT|0|BE9|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:52.5200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|138059|155812|10000|10000|8||99.35|98.41|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3405|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|69878|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|28653|81809|2200|10000|0||98.28|103.59|0.00|3.07|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128321|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55327|81541|1950|10000|0||99.94|101.59|-0.02|-1.40|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF0003|Gegehi Gehi|005A5A23|56806|73814|1500|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:52.5200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65161|82773|6000|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:52.5200000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:16:52.5630000-07:00|40022472|Zeromus|00019B17|20450889||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:52.5630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|C82|126543|129071|10000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|2855|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:52.5630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:52.6530000-07:00|40022472|Zeromus|00019B18|20445217||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:52.6530000-07:00|10FF0007|Kehabiqo Febiqo|00019B18|148033||||||99.35|98.41|0.00|3.11| +21|2023-10-06T21:16:52.6970000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4D80000|104|E78000|0|0|0|0|0|0|0|0|0|0|0|0|20450889|40478540|10000|10000|||100.00|80.10|0.00|0.00|65161|82773|6000|10000|||99.57|100.94|0.00|3.12|00019B1B|0|1| +21|2023-10-06T21:16:52.7410000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|13840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20450889|40478540|10000|10000|||100.00|80.10|0.00|0.00|69878|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B1C|0|1| +37|2023-10-06T21:16:52.7850000-07:00|40022472|Zeromus|00019B19|20431191||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:52.9180000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|90B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20431191|40478540|10000|10000|||100.00|80.10|0.00|0.00|69878|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B1D|0|1| +21|2023-10-06T21:16:52.9180000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42716003|2B690000|104|81C8000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|20431191|40478540|10000|10000|||100.00|80.10|0.00|0.00|65161|82773|6000|10000|||99.57|100.94|0.00|3.12|00019B1E|0|1| +37|2023-10-06T21:16:53.0510000-07:00|10FF0001|Sesuga Sapisuga|00019B1A|129071|129071|10000|10000|4||99.90|96.33|0.00|3.14|1300|0|0|01|0400004C|0|41A00000|| +26|2023-10-06T21:16:53.0510000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:16:53.1410000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|750003|2A670000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|20431191|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.90|96.33|0.00|3.14|00019B1F|0|1| +38|2023-10-06T21:16:53.1410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:53.1410000-07:00|2B|Weakness|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|129071|| +26|2023-10-06T21:16:53.1410000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:16:53.1410000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +12|2023-10-06T21:16:52.6910000-07:00|19|3472|389|3999|247|412|390|3472|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +37|2023-10-06T21:16:53.2300000-07:00|40022472|Zeromus|00019B1B|20429951||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:53.2300000-07:00|10FF000A|Dukaro Nezikaro|00019B1B|65392||||||99.57|100.94|0.00|3.12| +21|2023-10-06T21:16:53.2750000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20429951|40478540|10000|10000|||100.00|80.10|0.00|0.00|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B20|0|1| +22|2023-10-06T21:16:53.3180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|13610000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|00019B21|0|8| +22|2023-10-06T21:16:53.3180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|4|134D0000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|28653|81809|2200|10000|||98.28|103.59|0.00|3.07|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|00019B21|1|8| +22|2023-10-06T21:16:53.3180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|13EB0000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|55327|81541|1950|10000|||100.01|101.34|0.00|1.33|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|00019B21|2|8| +22|2023-10-06T21:16:53.3180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|13D70000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|65392|82773|6000|10000|||99.57|100.94|0.00|3.12|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|00019B21|3|8| +22|2023-10-06T21:16:53.3180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|4|13BD0000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|00019B21|4|8| +22|2023-10-06T21:16:53.3180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|132C0000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|69878|90216|10000|10000|||99.38|100.54|0.00|3.11|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|00019B21|5|8| +22|2023-10-06T21:16:53.3180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|18240000|FCA50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|148033|155812|10000|10000|||99.53|98.06|0.00|3.09|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|00019B21|6|8| +22|2023-10-06T21:16:53.3180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|200004|1EF80000|FC350E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.90|96.33|0.00|3.14|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|00019B21|7|8| +21|2023-10-06T21:16:53.3180000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|3E|9D8000|1B|64C68000|0|0|0|0|0|0|0|0|0|0|0|0|28653|81809|2200|10000|||98.28|103.59|0.00|3.07|28653|81809|2200|10000|||98.28|103.59|0.00|3.07|00019B22|0|1| +261|2023-10-06T21:16:52.9230000-07:00|Change|10FF0006||||||||||||||||| +38|2023-10-06T21:16:53.3630000-07:00|40022B76||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:16:53.3630000-07:00|40022472|Zeromus|00019B1C|20424955||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|6501|Magick Barrier|10FF0003|Gegehi Gehi|5F60E|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B23|0|8| +22|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|6501|Magick Barrier|10FF0004|Buhojaqe Zijaqe|5F60E|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55327|81541|1950|10000|||100.01|101.34|0.00|1.33|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B23|1|8| +22|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|6501|Magick Barrier|10FF000A|Dukaro Nezikaro|5F60E|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65392|82773|6000|10000|||99.57|100.94|0.00|3.12|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B23|2|8| +22|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|6501|Magick Barrier|10FF0008|Kokosaze Lulusaze|5F60E|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69878|90216|10000|10000|||99.38|100.54|0.00|3.11|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B23|3|8| +22|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|6501|Magick Barrier|10FF0009|Zewo Negiwo|5F60E|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3405|10000|||98.44|102.89|0.00|-3.11|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B23|4|8| +22|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|6501|Magick Barrier|10FF0007|Kehabiqo Febiqo|5F60E|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|148033|155812|10000|10000|||99.53|98.06|0.00|3.09|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B23|5|8| +22|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|6501|Magick Barrier|10FF0006|Wowobora Gogobora|5F60E|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28653|81809|2200|10000|||98.28|103.59|0.00|3.07|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B23|6|8| +22|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|6501|Magick Barrier|10FF0001|Sesuga Sapisuga|5F60E|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.90|96.33|0.00|3.14|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|00019B23|7|8| +38|2023-10-06T21:16:53.3640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|148033|155812|10000|10000|8||99.53|98.06|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:53.3640000-07:00|A93|Magick Barrier|10.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|155812|73814| +38|2023-10-06T21:16:53.3640000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2405|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:53.3640000-07:00|A93|Magick Barrier|10.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +38|2023-10-06T21:16:53.3640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|69878|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:53.3640000-07:00|A93|Magick Barrier|10.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +38|2023-10-06T21:16:53.3640000-07:00|40022B76||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:16:53.3640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|28653|81809|1800|10000|0||98.28|103.59|0.00|3.07|0|0|0||||||||||||||||||| +26|2023-10-06T21:16:53.3640000-07:00|A93|Magick Barrier|10.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +38|2023-10-06T21:16:53.3640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:53.3640000-07:00|A93|Magick Barrier|10.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +38|2023-10-06T21:16:53.3640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55327|81541|1950|10000|0||100.01|101.34|0.00|1.33|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:53.3640000-07:00|A93|Magick Barrier|10.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +38|2023-10-06T21:16:53.3640000-07:00|10FF0003|Gegehi Gehi|005A5A23|56806|73814|1500|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:53.3640000-07:00|A93|Magick Barrier|10.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:16:53.3640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65392|82773|6000|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:53.3640000-07:00|A93|Magick Barrier|10.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +03|2023-10-06T21:16:53.0420000-07:00|40022B76|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||98.44|101.85|0.00|-0.07| +261|2023-10-06T21:16:53.0420000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:16:53.0420000-07:00|Add|40022B76||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:53.5410000-07:00|40022472|Zeromus|00019B1E|20413842||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:53.5410000-07:00|10FF000A|Dukaro Nezikaro|00019B1E|67468|82773|6000|10000|0||99.57|100.94|0.00|3.12|1E00|0|0|01|07000A93|0|C1200000|| +261|2023-10-06T21:16:53.0420000-07:00|Change|40022B76||| +39|2023-10-06T21:16:53.6310000-07:00|10FF0009|Zewo Negiwo|81177|81177|2626|10000|||98.44|102.89|0.00|-3.11| +26|2023-10-06T21:16:53.6310000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:16:53.6310000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|35CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20413842|40478540|10000|10000|||100.00|80.10|0.00|0.00|69878|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B24|0|1| +21|2023-10-06T21:16:53.6310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20413842|40478540|10000|10000|||100.00|80.10|0.00|0.00|28653|81809|1800|10000|||98.28|103.59|0.00|3.07|00019B25|0|1| +37|2023-10-06T21:16:53.6750000-07:00|40022472|Zeromus|00019B1D|20411527||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:53.6750000-07:00|10FF0008|Kokosaze Lulusaze|00019B1D|69878|90216|10000|10000|0||99.38|100.54|0.00|3.11|1F00|0|0|01|04000A93|0|C1200000|| +39|2023-10-06T21:16:53.7200000-07:00|10FF0008|Kokosaze Lulusaze|70780|90216|10000|10000|||99.38|100.54|0.00|3.11| +37|2023-10-06T21:16:53.7650000-07:00|40022472|Zeromus|00019B1F|20400672||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:53.7650000-07:00|10FF0001|Sesuga Sapisuga|00019B1F|129071|129071|10000|10000|4||99.90|96.33|0.00|3.14|1300|0|0|03|03000558|04|41F00000|||||||||| +24|2023-10-06T21:16:53.7650000-07:00|40022472|Zeromus|DoT|0|CB1|20411527|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|55327|81541|1950|10000|||100.09|101.43|0.00|0.72| +38|2023-10-06T21:16:53.7650000-07:00|40022472|Zeromus|005A5A00|20397423|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:16:53.7650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:53.8090000-07:00|40022472|Zeromus|00019B20|20397422||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:53.8090000-07:00|10FF0003|Gegehi Gehi|00019B20|56806|73814|1500|10000|0||100.05|101.00|0.00|-3.14|2300|0|0|01|05000A93|0|C1200000|| +36|2023-10-06T21:16:53.8540000-07:00|16A8|3| +39|2023-10-06T21:16:53.8990000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.90|96.33|0.00|3.14| +39|2023-10-06T21:16:53.8990000-07:00|10FF0004|Buhojaqe Zijaqe|56142|81541|2150|10000|||100.11|101.45|0.00|0.61| +261|2023-10-06T21:16:53.3400000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:16:53.9450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|D9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20397422|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.90|96.33|0.00|3.14|00019B26|0|1| +31|2023-10-06T21:16:53.9450000-07:00|10FF0001||||| +37|2023-10-06T21:16:53.9890000-07:00|10FF0003|Gegehi Gehi|00019B23|56806|73814|1500|10000|0||100.05|101.00|0.00|-3.14|2300|0|0|01|05000A93|0|41200000|| +39|2023-10-06T21:16:53.9890000-07:00|10FF0007|Kehabiqo Febiqo|149591|155812|10000|10000|||99.53|98.04|0.00|3.09| +39|2023-10-06T21:16:53.9890000-07:00|10FF0006|Wowobora Gogobora|29471|81809|2000|10000|||98.28|103.59|0.00|3.07| +38|2023-10-06T21:16:53.9890000-07:00|10FF0003|Gegehi Gehi|005A5A23|56806|73814|1500|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:16:54.0790000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|750003|793E0000|200004|46888000|0|0|0|0|0|0|0|0|0|0|0|0|20397422|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.90|96.33|0.00|3.14|00019B27|0|1| +38|2023-10-06T21:16:54.0790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:54.0790000-07:00|558|Requiescat|29.64|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:16:54.0790000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:16:54.0790000-07:00|10FF0001||||| +37|2023-10-06T21:16:54.1230000-07:00|10FF0004|Buhojaqe Zijaqe|00019B23|56142|81541|2150|10000|0||100.11|101.46|0.00|0.57|1C01|0|0|01|06000A93|0|41200000|| +20|2023-10-06T21:16:54.1230000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|100.05|101.00|0.00|-3.14| +38|2023-10-06T21:16:54.1230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56142|81541|2150|10000|0||100.11|101.46|0.00|0.57|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:53.6230000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:16:54.1670000-07:00|10FF0009|Zewo Negiwo|HoT|4C3|D7A|81177|81177|2626|10000|||98.44|102.89|0.00|-3.11|10FF0009|Zewo Negiwo|0|81177|81177|2626|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:54.1670000-07:00|10FF0009|Zewo Negiwo|00019B21|81177|81177|2626|10000|25||98.44|102.89|0.00|-3.11|1800|0|0|02|05000A93|0|C1200000|||||| +26|2023-10-06T21:16:54.1670000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:16:54.1670000-07:00|40022472|Zeromus|00019B25|20397339||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:54.1670000-07:00|10FF0006|Wowobora Gogobora|00019B25|29471|81809|2000|10000|0||98.28|103.59|0.00|3.07|1B00|0|0|01|03000A93|0|C1200000|| +261|2023-10-06T21:16:53.6230000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:16:54.2570000-07:00|40022472|Zeromus|00019B24|20383565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:54.2570000-07:00|10FF0008|Kokosaze Lulusaze|00019B24|70780|90216|10000|10000|0||99.38|100.54|0.00|3.11|1F00|0|0|01|04000A93|0|C1200000|| +37|2023-10-06T21:16:54.2570000-07:00|10FF000A|Dukaro Nezikaro|00019B23|67468|82773|6000|10000|0||99.57|100.94|0.00|3.12|1E02|0|0|01|07000A93|0|41200000|| +39|2023-10-06T21:16:54.2570000-07:00|40022B6E|Liturgic Bell|77042|77042|10000|10000|||96.22|98.70|0.00|0.48| +21|2023-10-06T21:16:54.2570000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|205F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20397339|40478540|10000|10000|||100.00|80.10|0.00|0.00|70780|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B28|0|1| +38|2023-10-06T21:16:54.2570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67468|82773|6000|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:54.3020000-07:00|10FF0006|Wowobora Gogobora|00019B21|34412|81809|2000|10000|0||98.28|103.59|0.00|3.07|1B01|0|0|02|03000A93|0|C1200000|||||| +26|2023-10-06T21:16:54.3020000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:16:54.3020000-07:00|10FF0009|Zewo Negiwo|00019B21|81177|81177|2626|10000|25||98.44|102.89|0.00|-3.11|1801|0|0|01|05000A93|0|C1200000|| +261|2023-10-06T21:16:53.8520000-07:00|Change|10FF0006||| +37|2023-10-06T21:16:54.3460000-07:00|10FF0006|Wowobora Gogobora|00019B22|34412|81809|2000|10000|0||98.28|103.59|0.00|3.07|1B00|0|0|01|03000A93|0|C1200000|| +38|2023-10-06T21:16:54.3460000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2626|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:54.3460000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:16:54.3890000-07:00|10FF0008|Kokosaze Lulusaze|00019B23|70780|90216|10000|10000|0||99.38|100.54|0.00|3.11|1F03|0|0|01|04000A93|0|41200000|| +34|2023-10-06T21:16:54.3890000-07:00|40022B76|Carbuncle|40022B76|Carbuncle|01| +38|2023-10-06T21:16:54.3890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|70780|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:16:54.4340000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|D00|56142|81541|2150|10000|||100.11|101.46|0.00|0.57|10FF0009|Zewo Negiwo|0|81177|81177|2626|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:54.4340000-07:00|10FF0004|Buhojaqe Zijaqe|00019B21|64569|81541|2150|10000|0||100.11|101.46|0.00|0.57|1C02|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:16:54.4340000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:16:54.4340000-07:00|10FF0009|Zewo Negiwo|00019B21|81177|81177|2626|10000|25||98.44|102.89|0.00|-3.11|1802|0|0|01|05000A93|0|C1200000|| +261|2023-10-06T21:16:53.9670000-07:00|Change|40022B76||| +37|2023-10-06T21:16:54.4790000-07:00|10FF0001|Sesuga Sapisuga|00019B05|1|129071|9000|10000|4||99.90|96.33|0.00|3.14|1300|0|0|02|050006E9|0|41200000|||||| +26|2023-10-06T21:16:54.4790000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +37|2023-10-06T21:16:54.4790000-07:00|40022472|Zeromus|00019B26|20380080||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:54.4790000-07:00|10FF0001|Sesuga Sapisuga|00019B26|1|129071|9000|10000|4||99.90|96.33|0.00|3.14|1300|0|0|01|0B000A93|0|C1200000|| +38|2023-10-06T21:16:54.4790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64569|81541|2150|10000|0||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:54.4790000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:16:54.5250000-07:00|10FF0007|Kehabiqo Febiqo|00019B05|1|155812|10000|10000|8||99.53|98.04|0.00|3.09|1501|0|0|02|0C000A93|0|C1200000|||||| +26|2023-10-06T21:16:54.5250000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|155812|40478540| +37|2023-10-06T21:16:54.5250000-07:00|10FF0009|Zewo Negiwo|00019B23|81177|81177|2626|10000|25||98.44|102.89|0.00|-3.11|1804|0|0|01|05000A93|0|41200000|| +38|2023-10-06T21:16:54.5250000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2626|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:54.0790000-07:00|Change|10FF0009||| +24|2023-10-06T21:16:54.5680000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|CE6|67468|82773|6000|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|2626|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:54.5680000-07:00|10FF000A|Dukaro Nezikaro|00019B21|75849|82773|6000|10000|0||99.57|100.94|0.00|3.12|1E03|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:16:54.5680000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:16:54.5680000-07:00|10FF0008|Kokosaze Lulusaze|00019B05|1|90216|10000|10000|0||99.38|100.54|0.00|3.11|1F02|0|0|01|080006E9|0|41200000|| +26|2023-10-06T21:16:54.5680000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +21|2023-10-06T21:16:54.5680000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|35FB0000|A3E|340000|4|260F8000|11B|258000|0|0|0|0|0|0|0|0|20380080|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|155812|10000|10000|||99.53|98.04|0.00|3.09|00019B29|0|1| +37|2023-10-06T21:16:54.6130000-07:00|10FF000A|Dukaro Nezikaro|00019B05|1|82773|6000|10000|0||99.57|100.94|0.00|3.12|1E03|0|0|01|080006E9|0|41200000|| +26|2023-10-06T21:16:54.6130000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|40478540| +38|2023-10-06T21:16:54.6140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|1|82773|6000|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:54.6140000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:16:54.1750000-07:00|Change|40022482||||||||| +261|2023-10-06T21:16:54.1750000-07:00|Change|40022485||||||||| +261|2023-10-06T21:16:54.1750000-07:00|Change|40022484||||||||| +261|2023-10-06T21:16:54.1750000-07:00|Change|40022483||||||||| +261|2023-10-06T21:16:54.1750000-07:00|Change|4002247F||||||||| +261|2023-10-06T21:16:54.1750000-07:00|Change|40022481||||||||| +261|2023-10-06T21:16:54.1750000-07:00|Change|40022486||||||||| +261|2023-10-06T21:16:54.1750000-07:00|Change|40022486||||||||| +37|2023-10-06T21:16:54.6580000-07:00|10FF0003|Gegehi Gehi|00019B05|1|73814|1500|10000|0||100.05|101.00|0.00|-3.14|2304|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:16:54.6580000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +37|2023-10-06T21:16:54.6580000-07:00|10FF0007|Kehabiqo Febiqo|00019B23|1|155812|10000|10000|8||99.53|98.04|0.00|3.12|1505|0|0|01|0C000A93|0|41200000|| +21|2023-10-06T21:16:54.6580000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20380080|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|155812|10000|10000|||99.53|98.04|0.00|3.12|00019B2A|0|1| +38|2023-10-06T21:16:54.6580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|1|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +36|2023-10-06T21:16:54.7030000-07:00|17D4|3| +24|2023-10-06T21:16:54.7030000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|D4D|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|10FF0009|Zewo Negiwo|0|81177|81177|2626|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:54.7030000-07:00|10FF0003|Gegehi Gehi|00019B21|8459|73814|1500|10000|0||100.05|101.00|0.00|-3.14|2304|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:16:54.7030000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:16:54.7030000-07:00|10FF0009|Zewo Negiwo|00019B05|1|81177|2626|10000|25||98.44|102.89|0.00|-3.11|1805|0|0|02|0A0006E9|0|41200000|||||| +26|2023-10-06T21:16:54.7030000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0009|Zewo Negiwo|00|81177|40478540| +26|2023-10-06T21:16:54.7030000-07:00|A95|Liturgy of the Bell|10.60|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|04|81177|81177| +37|2023-10-06T21:16:54.7030000-07:00|40022472|Zeromus|00019B27|20349042||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:54.7030000-07:00|10FF0001|Sesuga Sapisuga|00019B27|18057|129071|9000|10000|4||99.90|96.33|0.00|3.14|1300|0|0|01|0B000A93|0|C1200000|| +20|2023-10-06T21:16:54.7030000-07:00|4002247F|Zeromus|8B42|Abyssal Echoes|4002247F|Zeromus|15.700|83.50|116.50|0.00|0.00| +20|2023-10-06T21:16:54.7030000-07:00|40022480|Zeromus|8B41|unknown_8b41|40022480|Zeromus|8.700|100.00|100.00|0.00|-0.79| +20|2023-10-06T21:16:54.7030000-07:00|40022481|Zeromus|8B42|Abyssal Echoes|40022481|Zeromus|15.700|116.50|116.50|0.00|0.00| +20|2023-10-06T21:16:54.7030000-07:00|40022482|Zeromus|8B41|unknown_8b41|40022482|Zeromus|8.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:16:54.7030000-07:00|40022483|Zeromus|8B42|Abyssal Echoes|40022483|Zeromus|15.700|112.00|100.00|0.00|0.00| +20|2023-10-06T21:16:54.7030000-07:00|40022484|Zeromus|8B40|unknown_8b40|40022484|Zeromus|8.700|100.00|100.00|0.00|1.57| +20|2023-10-06T21:16:54.7030000-07:00|40022485|Zeromus|8B42|Abyssal Echoes|40022485|Zeromus|15.700|100.00|88.00|0.00|0.00| +20|2023-10-06T21:16:54.7030000-07:00|40022486|Zeromus|8B40|unknown_8b40|40022486|Zeromus|8.700|100.00|100.00|0.00|3.14| +38|2023-10-06T21:16:54.7030000-07:00|10FF0009|Zewo Negiwo|005A5A18|1|81177|2626|10000|25||98.44|102.89|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:54.1750000-07:00|Change|40022480||||||||||||||| +37|2023-10-06T21:16:54.7480000-07:00|10FF0006|Wowobora Gogobora|00019B05|1|81809|2000|10000|0||98.28|103.59|0.00|3.07|1B06|0|0|02|03000A93|0|C1200000|||||| +26|2023-10-06T21:16:54.7480000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +22|2023-10-06T21:16:54.7480000-07:00|40022B6E|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|200004|6BB30000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|1|155812|10000|10000|||99.53|98.04|0.00|3.12|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B2B|0|8| +22|2023-10-06T21:16:54.7480000-07:00|40022B6E|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|38740000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|1|90216|10000|10000|||99.38|100.54|0.00|3.11|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B2B|1|8| +22|2023-10-06T21:16:54.7480000-07:00|40022B6E|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|36100000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|1|82773|6000|10000|||99.57|100.94|0.00|3.12|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B2B|2|8| +22|2023-10-06T21:16:54.7480000-07:00|40022B6E|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|36B20000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|1|129071|9000|10000|||99.90|96.33|0.00|3.14|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B2B|3|8| +22|2023-10-06T21:16:54.7480000-07:00|40022B6E|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|38450000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|56806|73814|1500|10000|||100.05|101.00|0.00|-3.14|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B2B|4|8| +22|2023-10-06T21:16:54.7480000-07:00|40022B6E|Liturgic Bell|6507|Liturgy of the Bell|10FF0009|Zewo Negiwo|4|37810000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2626|10000|||98.44|102.89|0.00|-3.11|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B2B|5|8| +22|2023-10-06T21:16:54.7480000-07:00|40022B6E|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|200004|56D40000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|64569|81541|2150|10000|||100.11|101.46|0.00|0.57|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B2B|6|8| +22|2023-10-06T21:16:54.7480000-07:00|40022B6E|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|200004|56C50000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|34412|81809|2000|10000|||98.28|103.59|0.00|3.07|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B2B|7|8| +38|2023-10-06T21:16:54.7480000-07:00|10FF0003|Gegehi Gehi|005A5A23|8459|73814|1500|10000|0||100.05|101.00|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:54.7480000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:16:54.7920000-07:00|10FF0004|Buhojaqe Zijaqe|00019B05|1|81541|2150|10000|0||100.11|101.46|0.00|0.57|1C07|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:16:54.7920000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +37|2023-10-06T21:16:54.7920000-07:00|10FF0006|Wowobora Gogobora|00019B23|1|81809|2000|10000|0||98.28|103.59|0.00|3.07|1B06|0|0|01|03000A93|0|41200000|| +21|2023-10-06T21:16:54.7920000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40022472|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|20349042|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|81809|2000|10000|||98.28|103.59|0.00|3.07|00019B2C|0|1| +38|2023-10-06T21:16:54.7920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|1|81809|2000|10000|0||98.28|103.59|0.00|3.07|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:16:54.8360000-07:00|40022B78||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +36|2023-10-06T21:16:54.8360000-07:00|1900|3| +24|2023-10-06T21:16:54.8360000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|D9B|1|90216|10000|10000|||99.38|100.54|0.00|3.11|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:54.8360000-07:00|10FF0008|Kokosaze Lulusaze|00019B21|8392|90216|10000|10000|0||99.38|100.54|0.00|3.11|1F05|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:16:54.8360000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:54.8370000-07:00|40022B78||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:16:54.8810000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|6430000|104|12A8000|0|0|0|0|0|0|0|0|0|0|0|0|20349042|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|82773|6000|10000|||99.57|100.94|0.00|3.12|00019B2D|0|1| +38|2023-10-06T21:16:54.8810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|8392|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:54.8810000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +37|2023-10-06T21:16:54.9250000-07:00|10FF0001|Sesuga Sapisuga|00019B23|18057|129071|9000|10000|4||99.90|96.33|0.00|3.14|1307|0|0|01|0B000A93|0|41200000|| +38|2023-10-06T21:16:54.9250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|18057|129071|9000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +36|2023-10-06T21:16:54.9700000-07:00|1A2C|3| +24|2023-10-06T21:16:54.9700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|156A|1|155812|10000|10000|||99.53|98.04|0.00|3.12|10FF0009|Zewo Negiwo|1|1|81177|2626|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:54.9700000-07:00|10FF0007|Kehabiqo Febiqo|00019B21|11663|155812|10000|10000|8||99.53|98.04|0.00|3.12|1506|0|0|01|01000096|0|41700000|| +26|2023-10-06T21:16:54.9700000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +39|2023-10-06T21:16:54.9700000-07:00|10FF0003|Gegehi Gehi|9197|73814|1700|10000|||100.05|101.00|0.00|-3.14| +261|2023-10-06T21:16:54.4700000-07:00|Change|10FF0003||||| +39|2023-10-06T21:16:55.0150000-07:00|10FF000A|Dukaro Nezikaro|828|82773|6200|10000|||99.57|100.94|0.00|3.12| +38|2023-10-06T21:16:55.0150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|11663|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:55.0150000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +261|2023-10-06T21:16:54.4700000-07:00|Change|10FF000A||| +37|2023-10-06T21:16:55.0590000-07:00|40022472|Zeromus|00019B28|20340755||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:55.1040000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|15F0|18057|129071|9000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|1|1|81177|2626|10000|||98.44|102.89|0.00|-3.11| +37|2023-10-06T21:16:55.1040000-07:00|10FF0001|Sesuga Sapisuga|00019B21|31601|129071|9000|10000|4||99.90|96.33|0.00|3.14|1307|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:16:55.1040000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +26|2023-10-06T21:16:55.1050000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:16:55.1050000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|211E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20340755|40478540|10000|10000|||100.00|80.10|0.00|0.00|8392|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B2E|0|1| +03|2023-10-06T21:16:54.5900000-07:00|40022B78|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||99.94|105.48|0.00|3.07| +261|2023-10-06T21:16:54.5900000-07:00|Change|40022485||||||||||||| +261|2023-10-06T21:16:54.5900000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:16:54.5900000-07:00|Add|40022B78||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:55.1500000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|AB10000|104|1FE8000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|20340755|40478540|10000|10000|||100.00|80.10|0.00|0.00|828|82773|6200|10000|||99.57|100.94|0.00|3.12|00019B2F|0|1| +38|2023-10-06T21:16:55.1500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|31601|129071|9000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:55.1500000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +261|2023-10-06T21:16:54.7010000-07:00|Change|40022B78||| +37|2023-10-06T21:16:55.1930000-07:00|40022472|Zeromus|00019B29|20326936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:55.1930000-07:00|10FF0007|Kehabiqo Febiqo|00019B29|21406||||||99.53|98.04|0.00|3.12| +37|2023-10-06T21:16:55.1930000-07:00|40022472|Zeromus|00019B2A|20324056||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:55.1930000-07:00|10FF0007|Kehabiqo Febiqo|00019B2B|48977||||||99.53|98.04|0.00|3.12| +24|2023-10-06T21:16:55.2390000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1381|8392|90216|10000|10000|||99.38|100.54|0.00|3.11|40022472|Zeromus|0|20340755|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:55.2390000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|714003|3A230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20340755|40478540|10000|10000|||100.00|80.10|0.00|0.00|11663|155812|10000|10000|||99.53|98.04|0.00|3.12|00019B30|0|1| +38|2023-10-06T21:16:55.2390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|13385|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:16:55.2830000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|BFE|828|82773|6200|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:55.2830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|3898|82773|6200|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:55.3260000-07:00|10FF0008|Kokosaze Lulusaze|00019B2B|27837||||||99.38|100.54|0.00|3.11| +24|2023-10-06T21:16:55.3270000-07:00|10FF0003|Gegehi Gehi|HoT|0|C6A|9197|73814|1700|10000|||100.05|101.00|0.00|-3.14|40022472|Zeromus|0|20324056|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:55.3270000-07:00|10FF0003|Gegehi Gehi|005A5A23|12375|73814|2250|10000|0||100.05|101.00|0.00|-3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:16:55.4160000-07:00|40022472|Zeromus|00019B2D|20322453||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:55.4160000-07:00|10FF000A|Dukaro Nezikaro|00019B2D|4196||||||99.57|100.94|0.00|3.12| +24|2023-10-06T21:16:55.4160000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CC9|1|81541|2150|10000|||100.11|101.46|0.00|0.57|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.44|102.89|0.00|-3.11| +38|2023-10-06T21:16:55.4160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3274|81541|2150|10000|0||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:55.4600000-07:00|10FF000A|Dukaro Nezikaro|00019B2B|18036||||||99.57|100.94|0.00|3.12| +24|2023-10-06T21:16:55.5060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|17AC|48977|155812|10000|10000|||99.53|98.04|0.00|3.12|40022472|Zeromus|0|20322453|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:55.5060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C2A|1|81809|2000|10000|||98.28|103.59|0.00|3.07|40022472|Zeromus|0|20322453|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:55.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|55037|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:55.5060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|3115|81809|2000|10000|0||98.28|103.59|0.00|3.07|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:16:55.0540000-07:00|Change|40022B76||| +37|2023-10-06T21:16:55.5520000-07:00|40022472|Zeromus|00019B2F|20319716||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:55.5520000-07:00|10FF000A|Dukaro Nezikaro|00019B2F|18546||||||99.57|100.94|0.00|3.12| +38|2023-10-06T21:16:55.5520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|27837|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18546|82773|6200|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0003|Gegehi Gehi|005A5A23|12375|73814|2250|10000|0||100.05|101.00|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3274|81541|2150|10000|0||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|3115|81809|2000|10000|0||98.28|103.59|0.00|3.07|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|55037|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0009|Zewo Negiwo|005A5A18|1|81177|2626|10000|25||98.48|102.89|0.00|2.39|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|31601|129071|9000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:16:55.5520000-07:00|10FF0003|Gegehi Gehi|HoT|777|750|12375|73814|2250|10000|||100.05|101.00|0.00|-3.14|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +24|2023-10-06T21:16:55.5520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|6F4|3274|81541|2150|10000|||100.11|101.46|0.00|0.57|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +24|2023-10-06T21:16:55.5520000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|B38|18036|82773|6200|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +24|2023-10-06T21:16:55.5520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|B46|27837|90216|10000|10000|||99.38|100.54|0.00|3.11|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +24|2023-10-06T21:16:55.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|8A3|55037|155812|10000|10000|||99.53|98.04|0.00|3.12|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +24|2023-10-06T21:16:55.5520000-07:00|10FF0009|Zewo Negiwo|HoT|777|724|1|81177|2626|10000|||98.48|102.89|0.00|2.39|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +24|2023-10-06T21:16:55.5520000-07:00|10FF0006|Wowobora Gogobora|HoT|777|743|3115|81809|2000|10000|||98.28|103.59|0.00|3.07|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +24|2023-10-06T21:16:55.5520000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|730|31601|129071|9000|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +24|2023-10-06T21:16:55.5520000-07:00|10FF0009|Zewo Negiwo|HoT|0|C7D|1|81177|2626|10000|||98.48|102.89|0.00|2.39|10FF0009|Zewo Negiwo|0|1|81177|2626|10000|||98.48|102.89|0.00|2.39| +21|2023-10-06T21:16:55.5520000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|756003|41DA0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|20322453|40478540|10000|10000|||100.00|80.10|0.00|0.00|12375|73814|2250|10000|||100.05|101.00|0.00|-3.14|00019B31|0|1| +38|2023-10-06T21:16:55.5520000-07:00|10FF0003|Gegehi Gehi|005A5A23|14247|73814|2050|10000|0||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +26|2023-10-06T21:16:55.5520000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:16:55.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|57248|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0009|Zewo Negiwo|005A5A18|5026|81177|3176|10000|25||98.48|102.89|0.00|2.39|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|30723|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|4974|81809|2000|10000|0||98.28|103.59|0.00|3.07|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|33441|129071|9000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|5054|81541|2150|10000|0||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:55.5520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|21418|82773|6200|10000|0||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:55.5520000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:16:55.0540000-07:00|Change|10FF0009||||||| +37|2023-10-06T21:16:55.5940000-07:00|10FF0001|Sesuga Sapisuga|00019B2B|47443||||||99.90|96.33|0.00|3.14| +24|2023-10-06T21:16:55.5940000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|141C|31601|129071|9000|10000|||99.90|96.33|0.00|3.14|10FF0003|Gegehi Gehi|0|12375|73814|2250|10000|||100.05|101.00|0.00|-3.14| +21|2023-10-06T21:16:55.5940000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20322453|40478540|10000|10000|||100.00|80.10|0.00|0.00|27837|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B32|0|1| +38|2023-10-06T21:16:55.5950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|52591|129071|9000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:16:55.1570000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:16:55.1570000-07:00|Change|40022484||||||||||||| +261|2023-10-06T21:16:55.1570000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:16:55.1570000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:16:55.1570000-07:00|Change|40022481||||||||||||| +37|2023-10-06T21:16:55.7280000-07:00|40022472|Zeromus|00019B2E|20311238||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:55.7280000-07:00|10FF0003|Gegehi Gehi|00019B2B|28652||||||100.05|101.00|0.00|-3.14| +22|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|62A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|00019B33|0|8| +22|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|620A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14247|73814|2050|10000|||100.05|101.00|0.00|-3.14|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|00019B33|1|8| +22|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000A|Dukaro Nezikaro|200004|5F8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21418|82773|6200|10000|||99.57|100.94|0.00|3.12|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|00019B33|2|8| +22|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|5FC50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30723|90216|10000|10000|||99.38|100.54|0.00|3.11|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|00019B33|3|8| +22|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0009|Zewo Negiwo|200004|60C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5026|81177|3176|10000|||98.50|102.89|0.00|2.05|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|00019B33|4|8| +22|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|607C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4974|81809|2000|10000|||98.28|103.59|0.00|3.07|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|00019B33|5|8| +22|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|72210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57248|155812|10000|10000|||99.53|98.04|0.00|3.12|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|00019B33|6|8| +22|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|61090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52591|129071|9000|10000|||99.90|96.33|0.00|3.14|5054|81541|2150|10000|||100.11|101.46|0.00|0.57|00019B33|7|8| +38|2023-10-06T21:16:55.7280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|5054|81541|2150|10000|0||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:55.7280000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:16:55.7730000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|145B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20311238|40478540|10000|10000|||100.00|80.10|0.00|0.00|30723|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B34|0|1| +38|2023-10-06T21:16:55.7730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|57248|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:55.7730000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +37|2023-10-06T21:16:55.8610000-07:00|40022472|Zeromus|00019B30|20296355||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:55.8610000-07:00|10FF0009|Zewo Negiwo|00019B2B|19235||||||99.05|102.38|0.00|2.46| +21|2023-10-06T21:16:55.8610000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|4|9B680000|1C4F0F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|57248|155812|10000|10000|||99.53|98.04|0.00|3.12|57248|155812|10000|10000|||99.53|98.04|0.00|3.12|00019B35|0|1| +261|2023-10-06T21:16:55.3380000-07:00|Change|40022B78||| +37|2023-10-06T21:16:55.9940000-07:00|10FF0004|Buhojaqe Zijaqe|00019B2B|27282||||||100.11|101.46|0.00|0.57| +261|2023-10-06T21:16:55.5320000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:16:56.1270000-07:00|10FF0006|Wowobora Gogobora|00019B2B|27187||||||98.28|103.59|0.00|3.07| +21|2023-10-06T21:16:56.2170000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|D4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20296355|40478540|10000|10000|||100.00|80.10|0.00|0.00|52591|129071|9000|10000|||99.90|96.33|0.00|3.14|00019B36|0|1| +31|2023-10-06T21:16:56.2170000-07:00|10FF0001||||| +37|2023-10-06T21:16:56.3510000-07:00|40022472|Zeromus|00019B32|20293985||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:56.3510000-07:00|10FF0004|Buhojaqe Zijaqe|00019B33|52539||||||100.11|101.46|0.00|0.57| +37|2023-10-06T21:16:56.3510000-07:00|40022472|Zeromus|00019B31|20277127||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:16:56.3510000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|20770000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|00019B37|0|8| +22|2023-10-06T21:16:56.3510000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|21BB0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|27282|81541|2150|10000|||100.11|101.46|0.00|0.57|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|00019B37|1|8| +22|2023-10-06T21:16:56.3510000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|200F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|28652|73814|2050|10000|||100.05|101.00|0.00|-3.14|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|00019B37|2|8| +22|2023-10-06T21:16:56.3510000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|21700000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|21418|82773|6200|10000|||99.57|100.94|0.00|3.12|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|00019B37|3|8| +22|2023-10-06T21:16:56.3510000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|21B40000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|30723|90216|10000|10000|||99.38|100.54|0.00|3.11|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|00019B37|4|8| +22|2023-10-06T21:16:56.3510000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|35820000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|27187|81809|2000|10000|||98.28|103.59|0.00|3.07|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|00019B37|5|8| +22|2023-10-06T21:16:56.3510000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|28CF0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|57248|155812|10000|10000|||99.53|98.04|0.00|3.12|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|00019B37|6|8| +22|2023-10-06T21:16:56.3510000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|200004|35A40000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|52591|129071|9000|10000|||99.90|96.33|0.00|3.14|19235|81177|3176|10000|||99.73|102.13|0.00|3.04|00019B37|7|8| +20|2023-10-06T21:16:56.3510000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.11|101.46|0.00|0.57| +261|2023-10-06T21:16:55.8570000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:16:56.4400000-07:00|40022472|Zeromus|00019B34|20271916||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:56.4850000-07:00|10FF0003|Gegehi Gehi|00019B33|53750||||||100.05|101.00|0.00|-3.14| +21|2023-10-06T21:16:56.4850000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|57248|155812|10000|10000|||99.53|98.04|0.00|3.12|57248|155812|10000|10000|||99.53|98.04|0.00|3.12|00019B38|0|1| +38|2023-10-06T21:16:56.4850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|57248|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:56.4850000-07:00|A75|Surging Tempest|24.37|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +26|2023-10-06T21:16:56.4850000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|155812|155812| +26|2023-10-06T21:16:56.4850000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +26|2023-10-06T21:16:56.4850000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +37|2023-10-06T21:16:56.5300000-07:00|10FF0007|Kehabiqo Febiqo|00019B35|97032|155812|10000|10000|8||99.53|98.04|0.00|3.12|1500|0|0|04|09000499|03|C1700000|||||||||||||| +26|2023-10-06T21:16:56.5300000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +21|2023-10-06T21:16:56.5300000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|556003|4D1D0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|20271916|40478540|10000|10000|||100.00|80.10|0.00|0.00|53750|73814|2050|10000|||100.05|101.00|0.00|-3.14|00019B39|0|1| +38|2023-10-06T21:16:56.5300000-07:00|10FF0003|Gegehi Gehi|005A5A23|53750|73814|1750|10000|0||100.05|101.00|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:56.5300000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:16:56.5740000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|752003|9A9E0000|4|2C5B8000|0|0|0|0|0|0|0|0|0|0|0|0|20271916|40478540|10000|10000|||100.00|80.10|0.00|0.00|52591|129071|9000|10000|||99.90|96.33|0.00|3.14|00019B3A|0|1| +38|2023-10-06T21:16:56.5740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|52591|129071|8000|10000|4||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:56.5740000-07:00|558|Requiescat|27.15|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:16:56.5740000-07:00|10FF0001||||| +261|2023-10-06T21:16:56.0920000-07:00|Change|10FF0001||| +261|2023-10-06T21:16:56.0920000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:16:56.6180000-07:00|10FF000A|Dukaro Nezikaro|00019B33|45877||||||99.57|100.94|0.00|3.12| +39|2023-10-06T21:16:56.6180000-07:00|10FF0009|Zewo Negiwo|20046|81177|3397|10000|||99.81|102.10|0.00|3.11| +21|2023-10-06T21:16:56.6180000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20271916|40478540|10000|10000|||100.00|80.10|0.00|0.00|30723|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B3B|0|1| +38|2023-10-06T21:16:56.6180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|30723|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:56.6180000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +39|2023-10-06T21:16:56.7080000-07:00|10FF0008|Kokosaze Lulusaze|31625|90216|10000|10000|||99.38|100.54|0.00|3.11| +37|2023-10-06T21:16:56.7530000-07:00|40022472|Zeromus|00019B36|20268510||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:56.7530000-07:00|10FF0008|Kokosaze Lulusaze|00019B33|56142||||||99.38|100.54|0.00|3.11| +24|2023-10-06T21:16:56.7530000-07:00|40022472|Zeromus|DoT|0|D4A|20271916|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|52539|81541|2150|10000|||100.11|101.46|0.00|0.57| +21|2023-10-06T21:16:56.7530000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20271916|40478540|10000|10000|||100.00|80.10|0.00|0.00|27187|81809|2000|10000|||98.26|103.56|0.00|-2.54|00019B3C|0|1| +38|2023-10-06T21:16:56.7530000-07:00|40022472|Zeromus|005A5A00|20265108|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +36|2023-10-06T21:16:56.8420000-07:00|1B08|3| +261|2023-10-06T21:16:56.2890000-07:00|Change|40022B76||| +37|2023-10-06T21:16:56.8860000-07:00|10FF0009|Zewo Negiwo|00019B33|44816||||||99.81|102.10|0.00|3.11| +39|2023-10-06T21:16:56.8860000-07:00|10FF0001|Sesuga Sapisuga|53881|129071|8200|10000|||99.90|96.33|0.00|3.14| +39|2023-10-06T21:16:56.8860000-07:00|10FF0004|Buhojaqe Zijaqe|53354|81541|2350|10000|||100.11|101.46|0.00|0.57| +261|2023-10-06T21:16:56.3890000-07:00|Change|10FF0004||||| +261|2023-10-06T21:16:56.3890000-07:00|Change|40022B78||||||||||| +37|2023-10-06T21:16:56.9300000-07:00|10FF0009|Zewo Negiwo|00019B37|53127||||||99.81|102.10|0.00|3.11| +39|2023-10-06T21:16:56.9750000-07:00|10FF0007|Kehabiqo Febiqo|98590|155812|10000|10000|||99.53|98.04|0.00|3.12| +37|2023-10-06T21:16:57.0190000-07:00|10FF0006|Wowobora Gogobora|00019B33|51887||||||98.07|102.46|0.00|-2.77| +39|2023-10-06T21:16:57.0190000-07:00|10FF0006|Wowobora Gogobora|52705|81809|2200|10000|||98.07|102.46|0.00|-2.77| +261|2023-10-06T21:16:56.4800000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:16:56.4800000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:16:56.4800000-07:00|Change|10FF0003||| +37|2023-10-06T21:16:57.0640000-07:00|10FF0004|Buhojaqe Zijaqe|00019B37|61989||||||100.11|101.46|0.00|0.57| +21|2023-10-06T21:16:57.0640000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7DEA0000|4|26CA8000|0|0|0|0|0|0|0|0|0|0|0|0|20265108|40478540|10000|10000|||100.00|80.10|0.00|0.00|97032|155812|10000|10000|||99.53|98.04|0.00|3.12|00019B3D|0|1| +21|2023-10-06T21:16:57.0640000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3BE0000|104|B28000|0|0|0|0|0|0|0|0|0|0|0|0|20265108|40478540|10000|10000|||100.00|80.10|0.00|0.00|45877|82773|6200|10000|||99.57|100.94|0.00|3.12|00019B3E|0|1| +38|2023-10-06T21:16:57.0640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98590|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:57.0640000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|155812|155812| +37|2023-10-06T21:16:57.1530000-07:00|10FF0007|Kehabiqo Febiqo|00019B33|127807|155812|10000|10000|8||99.53|98.04|0.00|3.12|1506|0|0|03|09000499|02|C1700000|||||||||| +37|2023-10-06T21:16:57.1970000-07:00|10FF0003|Gegehi Gehi|00019B37|61957||||||100.05|101.00|0.00|-3.14| +37|2023-10-06T21:16:57.1970000-07:00|40022472|Zeromus|00019B3A|20225526||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:57.1970000-07:00|10FF0001|Sesuga Sapisuga|00019B3A|65236||||||99.90|96.33|0.00|3.14| +37|2023-10-06T21:16:57.2420000-07:00|10FF0007|Kehabiqo Febiqo|00019B38|127807|155812|10000|10000|8||99.53|98.04|0.00|3.12|1500|0|0|03|09000499|02|41700000|||||||||| +37|2023-10-06T21:16:57.2420000-07:00|40022472|Zeromus|00019B3B|20216585||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:57.2420000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56142|90216|10000|10000|||99.38|100.54|0.00|3.11|56142|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B3F|0|1| +21|2023-10-06T21:16:57.2420000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|124A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20265108|40478540|10000|10000|||100.00|80.10|0.00|0.00|53881|129071|8200|10000|||99.90|96.33|0.00|3.14|00019B40|0|1| +38|2023-10-06T21:16:57.2420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127807|155812|10000|10000|8||99.53|98.04|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:57.2420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|56142|90216|10000|10000|0||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:57.2420000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:16:57.2870000-07:00|40022472|Zeromus|00019B3C|20216518||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:57.2870000-07:00|10FF0001|Sesuga Sapisuga|00019B33|90077||||||99.90|96.33|0.00|3.14| +37|2023-10-06T21:16:57.2870000-07:00|40022472|Zeromus|00019B39|20196777||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:57.2870000-07:00|40022B6E|Liturgic Bell|77042|77042|10000|10000|||96.22|98.70|0.00|0.48| +21|2023-10-06T21:16:57.2870000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|752003|573B0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|20216585|40478540|10000|10000|||100.00|80.10|0.00|0.00|52705|81809|2200|10000|||97.96|101.89|-0.01|-3.06|00019B41|0|1| +21|2023-10-06T21:16:57.2870000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|720003|12130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20216585|40478540|10000|10000|||100.00|80.10|0.00|0.00|61957|73814|1750|10000|||100.05|101.00|0.00|-3.14|00019B42|0|1| +37|2023-10-06T21:16:57.3300000-07:00|10FF000A|Dukaro Nezikaro|00019B37|54437||||||99.57|100.94|0.00|3.12| +21|2023-10-06T21:16:57.3300000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|FD20000|104|2F48000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|20216585|40478540|10000|10000|||100.00|80.10|0.00|0.00|45877|82773|6200|10000|||99.57|100.94|0.00|3.12|00019B43|0|1| +21|2023-10-06T21:16:57.4190000-07:00|10FF0009|Zewo Negiwo|6F5D|Liturgy of the Bell|10FF0009|Zewo Negiwo|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11|53127|81177|3397|10000|||99.81|102.10|0.00|3.11|00019B44|0|1| +37|2023-10-06T21:16:57.4650000-07:00|10FF0008|Kokosaze Lulusaze|00019B37|64770|90216|10000|10000|0||99.38|100.54|0.00|3.11|1F04|0|0|01|05000353|0|C0A00000|| +38|2023-10-06T21:16:57.4650000-07:00|10FF0009|Zewo Negiwo|005A5A18|53127|81177|3397|10000|25||99.81|102.10|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:57.4650000-07:00|A95|Liturgy of the Bell|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|04|81177|81177| +22|2023-10-06T21:16:57.5530000-07:00|40022B6E|Liturgic Bell|6508|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|86DF0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|127807|155812|10000|10000|||99.53|98.04|0.00|3.12|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B45|0|8| +22|2023-10-06T21:16:57.5530000-07:00|40022B6E|Liturgic Bell|6508|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|6FB50000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|52705|81809|1900|10000|||97.95|101.82|0.00|3.05|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B45|1|8| +22|2023-10-06T21:16:57.5530000-07:00|40022B6E|Liturgic Bell|6508|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|6C3B0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|64770|90216|10000|10000|||99.38|100.54|0.00|3.11|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B45|2|8| +22|2023-10-06T21:16:57.5530000-07:00|40022B6E|Liturgic Bell|6508|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|710B0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|54437|82773|6200|10000|||99.57|100.94|0.00|3.12|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B45|3|8| +22|2023-10-06T21:16:57.5530000-07:00|40022B6E|Liturgic Bell|6508|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|71760000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|90077|129071|8200|10000|||99.90|96.33|0.00|3.14|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B45|4|8| +22|2023-10-06T21:16:57.5530000-07:00|40022B6E|Liturgic Bell|6508|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|6E500000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|61957|73814|1750|10000|||100.05|101.00|0.00|-3.14|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B45|5|8| +22|2023-10-06T21:16:57.5530000-07:00|40022B6E|Liturgic Bell|6508|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|71A70000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B45|6|8| +22|2023-10-06T21:16:57.5530000-07:00|40022B6E|Liturgic Bell|6508|Liturgy of the Bell|10FF0009|Zewo Negiwo|4|6BE80000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11|77042|77042|10000|10000|||96.22|98.70|0.00|0.48|00019B45|7|8| +261|2023-10-06T21:16:57.0540000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:16:57.1490000-07:00|Change|10FF0001||| +261|2023-10-06T21:16:57.1490000-07:00|Change|10FF0009||||| +37|2023-10-06T21:16:57.5970000-07:00|10FF0006|Wowobora Gogobora|00019B37|66403||||||97.95|101.82|0.00|3.05| +37|2023-10-06T21:16:57.5970000-07:00|40022472|Zeromus|00019B3E|20195819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:57.5970000-07:00|10FF000A|Dukaro Nezikaro|00019B3E|54615||||||99.57|100.94|0.00|3.12| +37|2023-10-06T21:16:57.6870000-07:00|40022472|Zeromus|00019B3D|20163585||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:57.6870000-07:00|10FF0007|Kehabiqo Febiqo|00019B3D|137737||||||99.53|98.04|0.00|3.12| +21|2023-10-06T21:16:57.6870000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|102B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20196777|40478540|10000|10000|||100.00|80.10|0.00|0.00|127807|155812|10000|10000|||99.53|98.04|0.00|3.12|00019B46|0|1| +37|2023-10-06T21:16:57.7310000-07:00|10FF0007|Kehabiqo Febiqo|00019B37|148184||||||99.53|98.04|0.00|3.12| +37|2023-10-06T21:16:57.7310000-07:00|40022472|Zeromus|00019B43|20159535||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:57.7310000-07:00|10FF000A|Dukaro Nezikaro|00019B43|55371||||||99.57|100.94|0.00|3.12| +22|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|38860000|700E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|00019B47|0|8| +22|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|3B0B0000|780E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|61957|73814|1750|10000|||100.05|101.00|0.00|-3.14|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|00019B47|1|8| +22|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|4|23450000|6E000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|00019B47|2|8| +22|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|232C0000|460E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|54615|82773|6200|10000|||99.57|100.94|0.00|3.12|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|00019B47|3|8| +22|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|23FD0000|940E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|64770|90216|10000|10000|||99.38|100.54|0.00|3.11|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|00019B47|4|8| +22|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|3AB00000|E60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|66403|81809|1900|10000|||97.95|101.82|0.00|3.05|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|00019B47|5|8| +22|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|2A330000|840E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|137737|155812|10000|10000|||99.53|98.04|0.00|3.12|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|00019B47|6|8| +22|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|23A00000|E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90077|129071|8200|10000|||99.90|96.33|0.00|3.14|61989|81541|2350|10000|||100.11|101.46|0.00|0.57|00019B47|7|8| +38|2023-10-06T21:16:57.7770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|148184|155812|10000|10000|19||99.53|98.04|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:57.7770000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:16:57.7770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|64770|90216|10000|10000|16||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:57.7770000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:16:57.7770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66403|81809|1900|10000|29||97.95|101.82|0.00|3.05|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:57.7770000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:16:57.7770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90077|129071|8200|10000|11||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:57.7770000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:16:57.7770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|61989|81541|1350|10000|28||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:57.7770000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:16:57.7770000-07:00|10FF0003|Gegehi Gehi|005A5A23|61957|73814|1750|10000|32||100.05|101.00|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:57.7770000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:16:57.7770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|55371|82773|6200|10000|17||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:57.7770000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:16:57.8210000-07:00|40022472|Zeromus|00019B40|20154853||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:57.8660000-07:00|10FF0001|Sesuga Sapisuga|00019B37|103809||||||99.90|96.33|0.00|3.14| +37|2023-10-06T21:16:57.8660000-07:00|10FF0008|Kokosaze Lulusaze|00019B3F|64770|90216|10000|10000|16||99.38|100.54|0.00|3.11|1F00|0|0|01|05000353|0|40A00000|| +37|2023-10-06T21:16:57.8660000-07:00|40022472|Zeromus|00019B42|20150226||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:16:57.8660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|64770|90216|10000|10000|16||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:57.9120000-07:00|40022472|Zeromus|00019B41|20127895||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:16:57.4380000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:16:57.9550000-07:00|40022B78|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|133E0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|20127895|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||99.93|105.46|0.00|3.14|00019B48|0|1| +39|2023-10-06T21:16:57.9550000-07:00|10FF0003|Gegehi Gehi|62695|73814|1950|10000|||100.06|100.99|-0.02|3.14| +37|2023-10-06T21:16:57.9990000-07:00|10FF0007|Kehabiqo Febiqo|00019B45|155812|155812|10000|10000|19||99.53|98.04|0.00|3.12|1500|0|0|01|0D000000|0|0|| +39|2023-10-06T21:16:57.9990000-07:00|10FF000A|Dukaro Nezikaro|56198|82773|6400|10000|||99.57|100.94|0.00|3.12| +38|2023-10-06T21:16:57.9990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|19||99.53|98.04|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:57.9990000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|155812|40478540| +261|2023-10-06T21:16:57.4380000-07:00|Change|10FF000A||| +261|2023-10-06T21:16:57.5320000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:16:58.0450000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20127895|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||99.53|98.04|0.00|3.12|00019B49|0|1| +21|2023-10-06T21:16:58.0890000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|726003|C5770000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|20127895|40478540|10000|10000|||100.00|80.10|0.00|0.00|64770|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B4A|0|1| +38|2023-10-06T21:16:58.0890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|64770|90216|10000|10000|16||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:16:58.0890000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:16:58.1340000-07:00|10FF0006|Wowobora Gogobora|00019B45|81809|81809|1900|10000|29||97.95|101.82|0.00|3.05|1B01|0|0|01|06000000|0|0|| +38|2023-10-06T21:16:58.1340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1900|10000|29||97.95|101.82|0.00|3.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:58.1340000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +24|2023-10-06T21:16:58.2230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|BCB|64770|90216|10000|10000|||99.38|100.54|0.00|3.11|40022472|Zeromus|0|20127895|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:58.2230000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20127895|40478540|10000|10000|||100.00|80.10|0.00|0.00|62695|73814|1950|10000|||100.08|100.85|0.00|2.99|00019B4B|0|1| +38|2023-10-06T21:16:58.2230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67789|90216|10000|10000|16||99.38|100.54|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:58.2680000-07:00|10FF0008|Kokosaze Lulusaze|00019B45|90216|90216|10000|10000|16||99.38|100.54|0.00|3.11|1F02|0|0|01|08000000|0|0|| +24|2023-10-06T21:16:58.2680000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1364|56198|82773|6400|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +20|2023-10-06T21:16:58.2680000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|99.81|102.10|0.00|3.11| +21|2023-10-06T21:16:58.2680000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20127895|40478540|10000|10000|||100.00|80.10|0.00|0.00|64770|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B4C|0|1| +38|2023-10-06T21:16:58.2680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:16:58.2680000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +38|2023-10-06T21:16:58.2680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|61162|82773|6400|10000|17||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:16:58.3120000-07:00|40022472|Zeromus|00019B46|20123756||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:58.3120000-07:00|10FF0003|Gegehi Gehi|HoT|0|C0E|62695|73814|1950|10000|||100.08|100.85|0.00|2.99|10FF0004|Buhojaqe Zijaqe|0|61989|81541|1350|10000|||100.11|101.46|0.00|0.57| +38|2023-10-06T21:16:58.3120000-07:00|10FF0003|Gegehi Gehi|005A5A23|65781|73814|2500|10000|32||100.08|100.85|0.00|2.99|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:16:58.4010000-07:00|10FF000A|Dukaro Nezikaro|00019B45|82773|82773|6400|10000|17||99.57|100.94|0.00|3.12|1E03|0|0|01|08000000|0|0|| +24|2023-10-06T21:16:58.4010000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1428|61989|81541|1350|10000|||100.11|101.46|0.00|0.57|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +38|2023-10-06T21:16:58.4010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.53|98.04|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:58.4010000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +38|2023-10-06T21:16:58.4010000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|67149|81541|1350|10000|28||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:58.4010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6400|10000|17||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:58.4010000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|40478540| +24|2023-10-06T21:16:58.4900000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|397A|155812|155812|10000|10000|||99.53|98.04|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|61989|81541|1350|10000|||100.11|101.46|0.00|0.57| +24|2023-10-06T21:16:58.4900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|13A6|81809|81809|1900|10000|||97.95|101.79|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|61989|81541|1350|10000|||100.11|101.46|0.00|0.57| +21|2023-10-06T21:16:58.4900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20123756|40478540|10000|10000|||100.00|80.10|0.00|0.00|103809|129071|8200|10000|||99.90|96.33|0.00|3.14|00019B4D|0|1| +38|2023-10-06T21:16:58.4900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.53|98.04|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:16:58.4900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1900|10000|29||97.95|101.79|0.00|3.07|0|0|0||||||||||||||||||||||||| +31|2023-10-06T21:16:58.4900000-07:00|10FF0001||||| +37|2023-10-06T21:16:58.5360000-07:00|10FF0001|Sesuga Sapisuga|00019B45|129071|129071|8200|10000|11||99.90|96.33|0.00|3.14|1304|0|0|01|05000000|0|0|| +38|2023-10-06T21:16:58.5360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6400|10000|17||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0003|Gegehi Gehi|005A5A23|65781|73814|2500|10000|32||100.19|100.16|0.00|2.99|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|67149|81541|1350|10000|28||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1900|10000|29||97.95|101.79|0.00|3.07|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.53|98.04|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0009|Zewo Negiwo|005A5A18|53127|81177|3397|10000|25||99.81|102.10|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|11||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:58.5360000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +26|2023-10-06T21:16:58.5360000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:16:58.5360000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|6FF|61989|81541|1350|10000|||100.11|101.46|0.00|0.57|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +24|2023-10-06T21:16:58.5360000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|6ED|61162|82773|6400|10000|||99.57|100.94|0.00|3.12|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +24|2023-10-06T21:16:58.5360000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|72D|90216|90216|10000|10000|||99.38|100.54|0.00|3.11|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +24|2023-10-06T21:16:58.5360000-07:00|10FF0009|Zewo Negiwo|HoT|777|BAA|53127|81177|3397|10000|||99.81|102.10|0.00|3.11|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +24|2023-10-06T21:16:58.5360000-07:00|10FF0003|Gegehi Gehi|HoT|777|72A|65781|73814|2500|10000|||100.19|100.16|0.00|2.99|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +24|2023-10-06T21:16:58.5360000-07:00|10FF0006|Wowobora Gogobora|HoT|777|B98|81809|81809|1900|10000|||97.95|101.79|0.00|3.07|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +24|2023-10-06T21:16:58.5360000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|731|155812|155812|10000|10000|||99.53|98.04|0.00|3.12|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +24|2023-10-06T21:16:58.5360000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|732|103809|129071|8200|10000|||99.90|96.33|0.00|3.14|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +24|2023-10-06T21:16:58.5360000-07:00|10FF0009|Zewo Negiwo|HoT|0|140E|53127|81177|3397|10000|||99.81|102.10|0.00|3.11|10FF0009|Zewo Negiwo|0|53127|81177|3397|10000|||99.81|102.10|0.00|3.11| +21|2023-10-06T21:16:58.5360000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65781|73814|2500|10000|||100.19|100.16|0.00|2.99|65781|73814|2500|10000|||100.19|100.16|0.00|2.99|00019B4E|0|1| +38|2023-10-06T21:16:58.5360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.53|98.04|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0009|Zewo Negiwo|005A5A18|61247|81177|3947|10000|25||99.81|102.10|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.38|100.54|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1900|10000|29||97.95|101.79|0.00|3.07|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|11||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|68940|81541|1350|10000|28||100.11|101.46|0.00|0.57|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:16:58.5360000-07:00|10FF0003|Gegehi Gehi|005A5A23|67615|73814|2500|10000|32||100.19|100.16|0.00|2.99|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +26|2023-10-06T21:16:58.5360000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:16:58.5360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6400|10000|17||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:58.5360000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:16:58.0800000-07:00|Change|10FF0009||||||||||||||||| +37|2023-10-06T21:16:58.5800000-07:00|40022472|Zeromus|00019B49|20118945||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:58.5800000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|C3E|129071|129071|8200|10000|||99.90|96.33|0.00|3.14|10FF0003|Gegehi Gehi|0|67615|73814|2500|10000|||100.28|99.62|0.00|2.99| +38|2023-10-06T21:16:58.5800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|11||99.90|96.33|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:16:58.6230000-07:00|40022488|Zeromus|8B41|unknown_8b41|40022488|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-2.36|44|44|0|10000|||100.00|100.00|0.00|-2.36|00019B4F|0|1| +21|2023-10-06T21:16:58.6230000-07:00|4002248A|Zeromus|8B41|unknown_8b41|4002248A|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|2.36|44|44|0|10000|||100.00|100.00|0.00|2.36|00019B50|0|1| +21|2023-10-06T21:16:58.6230000-07:00|4002248C|Zeromus|8B40|unknown_8b40|4002248C|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-1.57|44|44|0|10000|||100.00|100.00|0.00|-1.57|00019B51|0|1| +261|2023-10-06T21:16:58.0800000-07:00|Change|40022B6E||| +261|2023-10-06T21:16:58.0800000-07:00|Change|40022B6E||| +21|2023-10-06T21:16:58.6230000-07:00|4002248E|Zeromus|8B40|unknown_8b40|4002248E|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|00019B52|0|1| +21|2023-10-06T21:16:58.6230000-07:00|40022490|Zeromus|8D2B|unknown_8d2b|40022490|Zeromus|1B|8D2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|00019B53|0|1| +261|2023-10-06T21:16:58.0800000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:16:58.0800000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:16:58.0800000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:16:58.0800000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:16:58.0800000-07:00|Change|4002248C||||||||||||| +37|2023-10-06T21:16:58.6690000-07:00|10FF0003|Gegehi Gehi|00019B45|73814|73814|2500|10000|32||100.33|99.31|0.00|2.99|2305|0|0|02|07000000|0|0|||||| +38|2023-10-06T21:16:58.6690000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|2500|10000|32||100.33|99.31|0.00|2.99|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:58.6690000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +04|2023-10-06T21:16:58.1760000-07:00|40022B76|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||98.44|101.85|0.00|-0.07| +261|2023-10-06T21:16:58.1760000-07:00|Remove|40022B76| +37|2023-10-06T21:16:58.7570000-07:00|40022472|Zeromus|00019B4B|20118944||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:58.7570000-07:00|10FF0003|Gegehi Gehi|00019B4B|73814|73814|2500|10000|32||100.33|99.31|0.00|2.99|2300|0|0|01|090004D6|0|C1A00000|| +21|2023-10-06T21:16:58.7570000-07:00|10FF0008|Kokosaze Lulusaze|1D75|Second Wind|10FF0008|Kokosaze Lulusaze|200004|59A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.38|100.54|0.00|3.11|90216|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B54|0|1| +37|2023-10-06T21:16:58.8020000-07:00|10FF0004|Buhojaqe Zijaqe|00019B45|81541|81541|1350|10000|28||100.11|101.42|0.00|1.97|1C06|0|0|01|07000000|0|0|| +38|2023-10-06T21:16:58.8020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|28||100.11|101.42|0.00|1.97|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:58.8020000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +20|2023-10-06T21:16:58.8460000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.11|101.42|0.00|1.97| +38|2023-10-06T21:16:58.8460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6400|10000|17||99.57|100.94|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:58.8460000-07:00|54|Bloodbath|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:16:58.8920000-07:00|10FF0004|Buhojaqe Zijaqe|00019B47|81541|81541|1350|10000|28||100.11|101.39|0.00|2.25|1C00|0|0|01|04000129|0|41E770A3|| +21|2023-10-06T21:16:58.8920000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|17AE0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|20118944|40478540|10000|10000|||100.00|80.10|0.00|0.00|61247|81177|3947|10000|||99.81|102.10|0.00|3.13|00019B55|0|1| +37|2023-10-06T21:16:58.9350000-07:00|10FF0009|Zewo Negiwo|00019B45|81177|81177|3547|10000|25||99.81|102.10|0.00|3.13|1807|0|0|01|0A000000|0|0|| +38|2023-10-06T21:16:58.9360000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3547|10000|25||99.81|102.10|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:58.9360000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0009|Zewo Negiwo|00|81177|40478540| +261|2023-10-06T21:16:58.3680000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:16:58.9810000-07:00|40022472|Zeromus|00019B48|20114018||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:59.0260000-07:00|40022472|Zeromus|00019B4C|20110469||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:59.0260000-07:00|40022472|Zeromus|00019B4D|20108401||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:16:59.0260000-07:00|10FF0003|Gegehi Gehi|00019B47|73814|73814|2500|10000|32||100.45|98.59|0.00|2.99|2301|0|0|02|08000129|0|41E65C28|||||| +21|2023-10-06T21:16:59.0700000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|710003|59720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20114018|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||99.90|96.33|0.00|3.14|00019B56|0|1| +261|2023-10-06T21:16:58.4690000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:16:59.1150000-07:00|40022472|Zeromus|00019B4A|20057850||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:16:59.2480000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|64C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20057850|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6400|10000|||99.57|100.94|0.00|3.12|00019B57|0|1| +37|2023-10-06T21:16:59.2930000-07:00|10FF000A|Dukaro Nezikaro|00019B47|82773|82773|6400|10000|17||99.57|100.94|0.00|3.12|1E03|0|0|01|03000129|0|41E43956|| +37|2023-10-06T21:16:59.2930000-07:00|10FF0003|Gegehi Gehi|00019B4E|73814|73814|2500|10000|32||100.45|98.59|0.00|2.99|2300|0|0|01|090004D6|0|41A00000|| +21|2023-10-06T21:16:59.2930000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|352003|41A50000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|20057850|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|2500|10000|||100.45|98.59|0.00|2.99|00019B58|0|1| +38|2023-10-06T21:16:59.2930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|2200|10000|32||100.45|98.59|0.00|2.99|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:16:59.2930000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:16:59.2930000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:16:59.3820000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20057850|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.38|100.54|0.00|3.11|00019B59|0|1| +37|2023-10-06T21:16:59.4260000-07:00|10FF0008|Kokosaze Lulusaze|00019B47|90216|90216|10000|10000|16||99.38|100.54|0.00|3.11|1F04|0|0|01|07000129|0|41E326E7|| +21|2023-10-06T21:16:59.4710000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44716003|2E470000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|20057850|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6400|10000|||99.57|100.94|0.00|3.12|00019B5A|0|1| +37|2023-10-06T21:16:59.5600000-07:00|10FF0006|Wowobora Gogobora|00019B47|81809|81809|1900|10000|29||98.12|100.77|0.00|0.87|1B05|0|0|01|07000129|0|41E21684|| +21|2023-10-06T21:16:59.5600000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7E0A0000|4|27098000|0|0|0|0|0|0|0|0|0|0|0|0|20057850|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.40|96.00|0.00|3.09|00019B5B|0|1| +38|2023-10-06T21:16:59.5600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.40|96.00|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:59.5600000-07:00|499|Inner Release|12.64|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +37|2023-10-06T21:16:59.6040000-07:00|40022472|Zeromus|00019B56|20034952||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:16:59.6040000-07:00|10FF0009|Zewo Negiwo|81177|81177|3768|10000|||99.81|102.10|0.00|3.13| +261|2023-10-06T21:16:59.1530000-07:00|Change|10FF0009||||||||||||||||| +37|2023-10-06T21:16:59.6940000-07:00|10FF0007|Kehabiqo Febiqo|00019B47|129844|129844|10000|10000|23||99.36|95.66|0.00|3.10|1506|0|0|01|10000129|0|41E10415|| +39|2023-10-06T21:16:59.6940000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.38|100.54|0.00|3.11| +21|2023-10-06T21:16:59.7380000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|137E0F|A748000|0|0|0|0|0|0|0|0|0|0|129071|129071|8200|10000|||99.90|96.33|0.00|3.14|129071|129071|8200|10000|||99.90|96.33|0.00|3.14|00019B5C|0|1| +38|2023-10-06T21:16:59.7380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|11||99.90|96.33|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:16:59.7380000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:16:59.7380000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:16:59.7380000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:16:59.7380000-07:00|10FF0001||||| +37|2023-10-06T21:16:59.7830000-07:00|40022472|Zeromus|00019B57|20033340||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:16:59.7830000-07:00|40022472|Zeromus|DoT|0|CB7|20034952|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1350|10000|||100.11|101.30|0.00|3.12| +21|2023-10-06T21:16:59.7830000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|34650000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|20034952|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1900|10000|||98.13|100.72|0.00|0.43|00019B5D|0|1| +38|2023-10-06T21:16:59.7830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.34|95.54|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:16:59.7830000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T21:16:59.7830000-07:00|40022472|Zeromus|005A5A00|20030085|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:16:59.2450000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:16:59.8280000-07:00|10FF0001|Sesuga Sapisuga|00019B47|129071|129071|8200|10000|11||99.90|96.33|0.00|3.14|1307|0|0|01|08000129|0|41DFF1A6|| +39|2023-10-06T21:16:59.8710000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8400|10000|||99.90|96.33|0.00|3.14| +36|2023-10-06T21:16:59.8710000-07:00|1BE4|3| +261|2023-10-06T21:16:59.3450000-07:00|Change|10FF0001||| +39|2023-10-06T21:16:59.9170000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1550|10000|||100.11|101.30|0.00|3.12| +21|2023-10-06T21:16:59.9170000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20030085|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1600|10000|||98.13|100.72|0.00|3.05|00019B5E|0|1| +261|2023-10-06T21:16:59.4420000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:17:00.0050000-07:00|40022472|Zeromus|00019B5A|20018238||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:00.0050000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.32|95.03|0.00|3.09| +39|2023-10-06T21:17:00.0050000-07:00|10FF0006|Wowobora Gogobora|81809|81809|1800|10000|||98.13|100.72|0.00|3.05| +261|2023-10-06T21:16:59.5520000-07:00|Change|10FF0003||||| +37|2023-10-06T21:17:00.0500000-07:00|40022472|Zeromus|00019B58|20001433||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:00.0500000-07:00|10FF0003|Gegehi Gehi|00019B58|73814|73814|2200|10000|32||100.45|98.59|0.00|-3.12|2300|0|0|01|070004D3|0|41F00000|| +38|2023-10-06T21:17:00.0500000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3768|10000|25||99.81|102.10|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:00.0500000-07:00|750|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:17:00.0500000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|2200|10000|32||100.45|98.59|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +23|2023-10-06T21:17:00.0940000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|Cancelled| +37|2023-10-06T21:17:00.1830000-07:00|40022472|Zeromus|00019B5B|19969167||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:00.1830000-07:00|40022472|Zeromus|00019B55|19963105||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:00.1830000-07:00|40022472|Zeromus|00019B59|19957952||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:17:00.2280000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|99.81|102.10|0.00|3.13| +261|2023-10-06T21:16:59.7790000-07:00|Change|10FF0006||| +37|2023-10-06T21:17:00.4070000-07:00|40022472|Zeromus|00019B5D|19944539||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:00.4520000-07:00|40022472|Zeromus|00019B5E|19944469||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:00.4520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1800|10000|29||98.13|100.72|0.00|3.05|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:17:00.4520000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:17:00.4520000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|752003|26570000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|19944539|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1800|10000|||98.13|100.72|0.00|3.05|00019B5F|0|1| +38|2023-10-06T21:17:00.4520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1800|10000|29||98.13|100.72|0.00|3.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:00.4520000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:17:00.0170000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:17:00.6290000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1F9C0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|19944469|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.38|100.49|0.00|3.12|00019B60|0|1| +261|2023-10-06T21:17:00.2230000-07:00|Change|10FF0009||||||||||||| +21|2023-10-06T21:17:00.7630000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19944469|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||99.96|93.96|0.00|3.12|00019B61|0|1| +31|2023-10-06T21:17:00.7630000-07:00|10FF0001||||| +39|2023-10-06T21:17:00.8080000-07:00|40022B78|Demi-Bahamut|66800|69928|10000|10000|||99.93|105.46|0.00|3.14| +261|2023-10-06T21:17:00.3140000-07:00|Change|10FF0008||||||||||| +21|2023-10-06T21:17:00.8540000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|17ED0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|19944469|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|3768|10000|||99.81|102.10|0.00|3.13|00019B62|0|1| +21|2023-10-06T21:17:00.9410000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DE20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19944469|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.41|99.28|0.00|3.11|00019B63|0|1| +39|2023-10-06T21:17:00.9850000-07:00|10FF0003|Gegehi Gehi|73814|73814|2400|10000|||100.27|96.16|0.00|-3.08| +39|2023-10-06T21:17:00.9850000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|6600|10000|||99.57|100.63|0.00|3.13| +261|2023-10-06T21:17:00.4960000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:17:00.4960000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:17:00.6090000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:17:01.1190000-07:00|40022B78|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|754003|174C0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|19944469|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||99.93|105.46|0.00|3.14|00019B64|0|1| +38|2023-10-06T21:17:01.1190000-07:00|40022B78|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||99.93|105.46|0.00|3.14|0|0|0||||||| +26|2023-10-06T21:17:01.1190000-07:00|30|Well Fed|1452.15|10FF0006|Wowobora Gogobora|40022B78|Demi-Bahamut|2964|69928|81809| +26|2023-10-06T21:17:01.1190000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022B78|Demi-Bahamut|01|69928|40478540| +21|2023-10-06T21:17:01.1190000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40022472|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|19944469|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1800|10000|||98.13|100.72|0.00|3.05|00019B65|0|1| +261|2023-10-06T21:17:00.7200000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:17:01.2090000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|C23|90216|90216|10000|10000|||99.48|97.01|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||100.14|95.96|0.00|3.13| +38|2023-10-06T21:17:01.2090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.48|97.01|0.00|3.11|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:17:01.2530000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|C38|82773|82773|6600|10000|||99.58|98.88|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.83|102.01|0.00|3.12| +38|2023-10-06T21:17:01.2530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6600|10000|17||99.58|98.88|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:01.2980000-07:00|40022472|Zeromus|00019B61|19942333||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:01.2980000-07:00|10FF0003|Gegehi Gehi|HoT|0|B9D|73814|73814|2400|10000|||100.36|94.31|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||100.15|95.36|0.00|3.13| +21|2023-10-06T21:17:01.2980000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|12FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19944469|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.50|96.36|0.00|3.11|00019B66|0|1| +38|2023-10-06T21:17:01.2980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|2950|10000|32||100.36|94.31|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:17:01.3430000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|390C0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|19944469|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1550|10000|||100.15|95.36|0.00|3.13|00019B67|0|1| +37|2023-10-06T21:17:01.3870000-07:00|40022472|Zeromus|00019B60|19934241||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:01.3870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|12EE|81541|81541|1150|10000|||100.16|94.72|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|100.79|0.00|3.12| +38|2023-10-06T21:17:01.3870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|28||100.16|94.72|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:17:01.4310000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|131C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19942333|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.96|87.22|0.00|3.09|00019B68|0|1| +21|2023-10-06T21:17:01.4310000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19942333|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6600|10000|||99.60|97.19|0.00|3.13|00019B69|0|1| +37|2023-10-06T21:17:01.4760000-07:00|40022472|Zeromus|00019B5F|19924426||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:01.4760000-07:00|10FF0006|Wowobora Gogobora|00019B5F|81809|81809|1800|10000|29||98.13|100.70|0.00|3.05|1B00|0|0|01|08000A8D|0|42700000|| +24|2023-10-06T21:17:01.4760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3815|129844|129844|10000|10000|||99.96|87.22|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1150|10000|||100.16|94.72|0.00|-3.13| +24|2023-10-06T21:17:01.4760000-07:00|10FF0006|Wowobora Gogobora|HoT|0|CC3|81809|81809|1800|10000|||98.13|100.70|0.00|3.05|10FF0006|Wowobora Gogobora|0|81809|81809|1800|10000|||98.13|100.70|0.00|3.05| +38|2023-10-06T21:17:01.4760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.96|87.22|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:01.4760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1800|10000|29||98.13|100.70|0.00|3.05|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:17:01.5220000-07:00|10FF0009|Zewo Negiwo|HoT|777|71D|81177|81177|3368|10000|||99.84|99.98|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +24|2023-10-06T21:17:01.5220000-07:00|10FF0006|Wowobora Gogobora|HoT|777|6E6|81809|81809|1800|10000|||98.25|99.91|0.00|3.03|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +24|2023-10-06T21:17:01.5220000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|70D|82773|82773|6600|10000|||99.61|96.39|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +24|2023-10-06T21:17:01.5220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|70A|90216|90216|10000|10000|||99.52|95.71|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +24|2023-10-06T21:17:01.5220000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|72F|81541|81541|1150|10000|||100.17|94.08|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +24|2023-10-06T21:17:01.5220000-07:00|10FF0003|Gegehi Gehi|HoT|777|725|73814|73814|2950|10000|||100.39|92.94|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +24|2023-10-06T21:17:01.5220000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|6F4|129071|129071|8400|10000|||99.85|89.43|0.00|-3.09|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +24|2023-10-06T21:17:01.5220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|B65|129844|129844|10000|10000|||99.93|86.94|0.00|3.09|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +24|2023-10-06T21:17:01.5220000-07:00|10FF0009|Zewo Negiwo|HoT|0|13C1|81177|81177|3368|10000|||99.84|99.98|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|3368|10000|||99.84|99.98|0.00|3.13| +38|2023-10-06T21:17:01.5220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.93|86.94|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:01.5220000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:17:01.5220000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3918|10000|25||99.84|99.98|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:01.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:17:01.5220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.52|95.71|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:17:01.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:17:01.5220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1800|10000|29||98.25|99.91|0.00|3.03|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:01.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:17:01.5220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8400|10000|11||99.85|89.43|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:01.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:17:01.5220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|28||100.17|94.08|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:01.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:17:01.5220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|2950|10000|32||100.39|92.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:01.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:17:01.5220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6600|10000|17||99.61|96.39|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:01.5220000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:17:01.0650000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:17:01.5650000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3921|129071|129071|8400|10000|||99.85|89.43|0.00|-3.09|10FF0001|Sesuga Sapisuga|0|129071|129071|8400|10000|||99.85|89.43|0.00|-3.09| +38|2023-10-06T21:17:01.5660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8400|10000|11||99.85|89.43|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:01.1840000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:17:01.6100000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|750003|66F80000|200004|46AA8000|0|0|0|0|0|0|0|0|0|0|0|0|19924426|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||99.82|88.79|0.00|-3.09|00019B6A|0|1| +38|2023-10-06T21:17:01.6100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7400|10000|11||99.82|88.79|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:01.6100000-07:00|558|Requiescat|22.11|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:17:01.6100000-07:00|10FF0001||||| +261|2023-10-06T21:17:01.2750000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:17:01.7000000-07:00|40022472|Zeromus|00019B63|19920872||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:01.7000000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19924426|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|2950|10000|||100.39|92.25|0.00|-3.14|00019B6B|0|1| +21|2023-10-06T21:17:01.7000000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|B920000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|19924426|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6600|10000|||99.62|95.59|0.00|3.13|00019B6C|0|1| +261|2023-10-06T21:17:01.3700000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:17:01.3700000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:17:01.9230000-07:00|40022472|Zeromus|00019B66|19916012||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:01.4720000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:17:01.9670000-07:00|40022472|Zeromus|00019B68|19911120||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:01.9670000-07:00|40022472|Zeromus|00019B69|19909842||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:02.0120000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|A0440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19909842|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.81|85.88|0.00|3.09|00019B6D|0|1| +38|2023-10-06T21:17:02.0120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.81|85.88|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:02.0120000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:17:02.1000000-07:00|40022472|Zeromus|00019B6C|19906880||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:01.6900000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:17:01.6900000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:17:02.1450000-07:00|40022472|Zeromus|00019B62|19900755||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:02.1450000-07:00|40022472|Zeromus|00019B64|19894791||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:02.1900000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|4E20000|FC200E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|19906880|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|3918|10000|||99.52|96.00|0.00|-3.04|00019B6E|0|1| +37|2023-10-06T21:17:02.2340000-07:00|40022472|Zeromus|00019B6B|19894790||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:02.2800000-07:00|40022472|Zeromus|00019B67|19880186||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:02.2800000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|3E190000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|19894790|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1800|10000|||99.19|95.22|0.00|2.93|00019B6F|0|1| +26|2023-10-06T21:17:02.2800000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:17:02.2800000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|752003|1BF60000|104|A738000|0|0|0|0|0|0|0|0|0|0|0|0|19894790|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||100.16|89.62|0.00|-3.13|00019B70|0|1| +04|2023-10-06T21:17:01.9160000-07:00|40022B6E|Liturgic Bell|00|5A|10FF0009|00||10349|13961|0|77042|0|10000|||96.22|98.70|0.00|0.48| +261|2023-10-06T21:17:01.9160000-07:00|Remove|40022B6E| +261|2023-10-06T21:17:02.0360000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:17:02.5010000-07:00|40022472|Zeromus|00019B6A|19853826||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:02.5900000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|110F0000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|19853826|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||99.75|87.48|0.00|-3.09|00019B71|0|1| +20|2023-10-06T21:17:02.5900000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|100.37|87.11|0.00|-3.13| +39|2023-10-06T21:17:02.6350000-07:00|10FF0009|Zewo Negiwo|81177|81177|3739|10000|||99.43|95.03|0.00|3.11| +21|2023-10-06T21:17:02.6800000-07:00|40022B78|Demi-Bahamut|1D19|Akh Morn|40022472|Zeromus|756003|58034001|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|19853826|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||99.93|105.46|0.00|3.14|00019B72|0|1| +261|2023-10-06T21:17:02.2680000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:17:02.7250000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.71|89.44|0.00|3.11| +261|2023-10-06T21:17:02.2680000-07:00|Change|10FF0009||||||||||| +24|2023-10-06T21:17:02.7690000-07:00|40022472|Zeromus|DoT|0|D4A|19853826|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1150|10000|||100.08|88.76|0.00|-3.13| +21|2023-10-06T21:17:02.7690000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19853826|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||100.08|88.76|0.00|-3.13|00019B73|0|1| +38|2023-10-06T21:17:02.7690000-07:00|40022472|Zeromus|005A5A00|19850424|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:17:02.8580000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7600|10000|||99.75|87.48|0.00|-3.09| +36|2023-10-06T21:17:02.8580000-07:00|1CC0|3| +39|2023-10-06T21:17:02.9020000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1350|10000|||100.24|88.21|0.00|3.05| +261|2023-10-06T21:17:02.4560000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:17:02.9470000-07:00|40022472|Zeromus|00019B6F|19834527||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:02.9470000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40022472|Zeromus|752003|5D7E0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|19850424|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1500|10000|||99.37|92.73|0.00|3.13|00019B74|0|1| +261|2023-10-06T21:17:02.4560000-07:00|Change|10FF0003||||||||||||||||||| +39|2023-10-06T21:17:02.9920000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.78|85.71|0.00|3.10| +39|2023-10-06T21:17:02.9920000-07:00|10FF0006|Wowobora Gogobora|81809|81809|1700|10000|||99.37|92.73|0.00|3.13| +21|2023-10-06T21:17:03.0360000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|85E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19834527|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||99.75|87.48|0.00|-3.09|00019B75|0|1| +31|2023-10-06T21:17:03.0360000-07:00|10FF0001||||| +21|2023-10-06T21:17:03.0810000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19834527|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1700|10000|||99.36|92.13|0.00|3.07|00019B76|0|1| +21|2023-10-06T21:17:03.1260000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|4E530000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|19834527|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.75|86.43|0.00|3.14|00019B77|0|1| +38|2023-10-06T21:17:03.1260000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3739|10000|25||99.43|91.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.1260000-07:00|9D|Presence of Mind|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:17:03.1710000-07:00|40022472|Zeromus|00019B6D|19793499||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:02.7740000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:17:02.7740000-07:00|Change|10FF0001||| +37|2023-10-06T21:17:03.3040000-07:00|40022472|Zeromus|00019B70|19786341||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:03.3040000-07:00|40022472|Zeromus|00019B73|19786189||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:03.4820000-07:00|40022472|Zeromus|00019B6E|19784939|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|074F|0|41F00000|| +26|2023-10-06T21:17:03.4820000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +261|2023-10-06T21:17:03.1310000-07:00|Change|10FF0009||||||||| +38|2023-10-06T21:17:03.5270000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3739|10000|25||99.52|88.84|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.5270000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:17:03.5270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.69|84.46|0.00|3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:17:03.5270000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:17:03.5270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1700|10000|29||99.41|88.79|0.00|3.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.5270000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:17:03.5270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|11||99.75|87.48|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.5270000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:17:03.5270000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|28||100.13|85.13|0.00|-3.05|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.5270000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:17:03.5270000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|2950|10000|32||100.30|86.14|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.5270000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:17:03.5270000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6600|10000|17||99.79|87.12|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.5270000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:17:03.5710000-07:00|40022472|Zeromus|00019B72|19696872||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:03.5710000-07:00|40022472|Zeromus|00019B75|19694730||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:03.5710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.76|85.56|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.5710000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:17:03.5710000-07:00|40022B78|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||99.93|105.46|0.00|3.14|0|0|0|||| +30|2023-10-06T21:17:03.5710000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022B78|Demi-Bahamut|01|69928|40478540| +261|2023-10-06T21:17:03.1310000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:17:03.6150000-07:00|40022472|Zeromus|00019B76|19694662||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:03.6150000-07:00|40022472|Zeromus|00019B71|19690295|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T21:17:03.6150000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +21|2023-10-06T21:17:03.6150000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19784939|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.69|84.46|0.00|3.12|00019B78|0|1| +21|2023-10-06T21:17:03.6150000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|7BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19784939|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6600|10000|||99.79|87.12|0.00|-3.04|00019B79|0|1| +21|2023-10-06T21:17:03.6600000-07:00|40022480|Zeromus|8B41|unknown_8b41|40022480|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-0.79|44|44|0|10000|||100.00|100.00|0.00|-0.79|00019B7A|0|1| +21|2023-10-06T21:17:03.6600000-07:00|40022482|Zeromus|8B41|unknown_8b41|40022482|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|00019B7B|0|1| +21|2023-10-06T21:17:03.6600000-07:00|40022484|Zeromus|8B40|unknown_8b40|40022484|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|1.57|44|44|0|10000|||100.00|100.00|0.00|1.57|00019B7C|0|1| +21|2023-10-06T21:17:03.6600000-07:00|40022486|Zeromus|8B40|unknown_8b40|40022486|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|3.14|00019B7D|0|1| +261|2023-10-06T21:17:03.2450000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:17:03.2450000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:17:03.2450000-07:00|Change|40022480||||||||||||| +261|2023-10-06T21:17:03.2450000-07:00|Change|40022484||||||||||||| +20|2023-10-06T21:17:03.7050000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.09|84.93|0.00|-3.02| +37|2023-10-06T21:17:03.7490000-07:00|40022472|Zeromus|00019B74|19666361||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:03.7500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|11||99.75|87.48|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.7500000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T21:17:03.7940000-07:00|40022B78|Demi-Bahamut|66800|69928|10000|10000|||99.93|105.46|0.00|3.14| +21|2023-10-06T21:17:03.8390000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|14490000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|19666361|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6600|10000|||99.84|87.05|0.00|-2.99|00019B7E|0|1| +37|2023-10-06T21:17:03.9290000-07:00|40022472|Zeromus|00019B77|19646310||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:03.5190000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:17:03.5190000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:17:03.9730000-07:00|10FF0003|Gegehi Gehi|73814|73814|3150|10000|||100.30|86.14|0.00|-3.09| +39|2023-10-06T21:17:03.9730000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|6800|10000|||99.84|87.05|-0.02|3.12| +38|2023-10-06T21:17:03.9730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3150|10000|32||100.30|86.14|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:03.9730000-07:00|A93|Magick Barrier|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:17:03.5190000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:17:03.5190000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:17:03.5190000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:17:04.0180000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|450003|23140000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|19646310|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3150|10000|||100.30|86.14|0.00|-3.09|00019B7F|0|1| +38|2023-10-06T21:17:04.0180000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|2950|10000|32||100.30|86.14|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:04.0180000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:17:04.0180000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +20|2023-10-06T21:17:04.1070000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.91|85.92|0.00|3.13| +38|2023-10-06T21:17:04.1070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|28||100.05|84.77|-0.01|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.1070000-07:00|A93|Magick Barrier|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:17:04.1510000-07:00|40022472|Zeromus|00019B79|19644332||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:04.1970000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|12C7|90216|90216|10000|10000|||99.66|83.30|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||100.05|84.76|-0.02|-3.13| +21|2023-10-06T21:17:04.1970000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|752003|B7E00000|4|2C988000|0|0|0|0|0|0|0|0|0|0|0|0|19646310|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||99.75|87.48|0.00|3.11|00019B80|0|1| +38|2023-10-06T21:17:04.1970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.66|83.30|0.00|-3.10|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:17:04.1970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|11||99.75|87.48|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.1970000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:17:04.1970000-07:00|10FF0001||||| +37|2023-10-06T21:17:04.2410000-07:00|40022472|Zeromus|00019B7E|19639139||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:04.2410000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|C27|82773|82773|6800|10000|||99.84|87.05|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|3739|10000|||100.00|85.62|0.00|-3.14| +38|2023-10-06T21:17:04.2410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6800|10000|17||99.84|87.05|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.2410000-07:00|A93|Magick Barrier|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +24|2023-10-06T21:17:04.3300000-07:00|10FF0003|Gegehi Gehi|HoT|0|C23|73814|73814|2950|10000|||100.30|86.14|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||100.05|84.76|0.00|-3.13| +38|2023-10-06T21:17:04.3300000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3500|10000|32||100.30|86.14|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:17:04.3740000-07:00|40022472|Zeromus|00019B78|19636778||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:04.3740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|12FF|81541|81541|1350|10000|||100.05|84.76|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|3739|10000|||100.04|85.43|0.00|-3.13| +38|2023-10-06T21:17:04.3740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.66|83.30|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:17:04.3740000-07:00|A93|Magick Barrier|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +38|2023-10-06T21:17:04.3740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|28||100.05|84.76|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:04.4630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3377|129844|129844|10000|10000|||99.74|85.06|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||100.05|84.76|0.00|-3.13| +24|2023-10-06T21:17:04.4630000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C45|81809|81809|1700|10000|||99.75|84.43|0.00|3.09|10FF0006|Wowobora Gogobora|0|81809|81809|1700|10000|||99.75|84.43|0.00|3.09| +21|2023-10-06T21:17:04.4630000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|798A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19636778|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.74|85.06|0.00|-3.13|00019B81|0|1| +38|2023-10-06T21:17:04.4630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.74|85.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.4630000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +38|2023-10-06T21:17:04.4630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1700|10000|29||99.75|84.43|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:17:04.0500000-07:00|Change|10FF0009||||||||||||||||||||| +38|2023-10-06T21:17:04.5070000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3739|10000|25||100.15|85.06|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.5070000-07:00|A93|Magick Barrier|0.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +30|2023-10-06T21:17:04.5070000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +24|2023-10-06T21:17:04.5520000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|703|129071|129071|6600|10000|||99.75|87.48|0.00|3.11|10FF0009|Zewo Negiwo|0|81177|81177|3739|10000|||100.15|85.06|0.00|-3.11| +24|2023-10-06T21:17:04.5520000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|6DB|82773|82773|6800|10000|||99.84|87.05|0.00|3.12|10FF0009|Zewo Negiwo|0|81177|81177|3739|10000|||100.15|85.06|0.00|-3.11| +24|2023-10-06T21:17:04.5520000-07:00|10FF0003|Gegehi Gehi|HoT|777|A96|73814|73814|3500|10000|||100.30|86.14|0.00|-3.09|10FF0009|Zewo Negiwo|0|81177|81177|3739|10000|||100.15|85.06|0.00|-3.11| +24|2023-10-06T21:17:04.5520000-07:00|10FF0009|Zewo Negiwo|HoT|0|CB2|81177|81177|3739|10000|||100.15|85.06|0.00|-3.11|10FF0009|Zewo Negiwo|0|81177|81177|3739|10000|||100.15|85.06|0.00|-3.11| +38|2023-10-06T21:17:04.5520000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3739|10000|25||100.15|85.06|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:04.5520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|11||99.75|87.48|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:04.5520000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:17:04.5520000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3500|10000|32||100.30|86.14|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:04.5520000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:17:04.5520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|6800|10000|17||99.84|87.05|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:04.5520000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +24|2023-10-06T21:17:04.5960000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|311D|129071|129071|6600|10000|||99.75|87.48|0.00|3.11|10FF0001|Sesuga Sapisuga|0|129071|129071|6600|10000|||99.75|87.48|0.00|3.11| +38|2023-10-06T21:17:04.5960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|11||99.75|87.48|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:17:04.6410000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32990000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19636778|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1350|10000|||100.05|84.76|0.00|-3.13|00019B82|0|1| +38|2023-10-06T21:17:04.6410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.72|84.77|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.6410000-07:00|A93|Magick Barrier|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +21|2023-10-06T21:17:04.7300000-07:00|40022B78|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|754003|18AD0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|19636778|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||99.93|105.46|0.00|3.14|00019B83|0|1| +21|2023-10-06T21:17:04.7300000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|3F400000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|19636778|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1700|10000|||99.75|84.43|0.00|3.09|00019B84|0|1| +21|2023-10-06T21:17:04.7300000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|12480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19636778|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6800|10000|||99.84|87.05|0.00|3.12|00019B85|0|1| +38|2023-10-06T21:17:04.7740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1400|10000|29||99.75|84.43|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.7740000-07:00|A93|Magick Barrier|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +37|2023-10-06T21:17:04.8190000-07:00|40022472|Zeromus|00019B7F|19627798||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:04.8190000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|11EC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19636778|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.72|84.67|0.00|3.08|00019B86|0|1| +21|2023-10-06T21:17:04.9070000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.66|83.30|0.00|-3.10|90216|90216|10000|10000|||99.66|83.30|0.00|-3.10|00019B87|0|1| +38|2023-10-06T21:17:04.9070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|11||99.75|87.48|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.9070000-07:00|A93|Magick Barrier|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +261|2023-10-06T21:17:04.4770000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:17:04.4770000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:17:04.9960000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|27FC0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|19627798|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3500|10000|||100.30|86.14|0.00|-3.09|00019B88|0|1| +38|2023-10-06T21:17:04.9960000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3200|10000|32||100.30|86.14|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:04.9960000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:17:04.9960000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:17:04.5720000-07:00|Change|10FF0001||| +261|2023-10-06T21:17:04.5720000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:17:05.0410000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|25620000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|19627798|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|3739|10000|||100.18|84.95|0.00|-3.10|00019B89|0|1| +37|2023-10-06T21:17:05.0850000-07:00|40022472|Zeromus|00019B81|19596684||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:05.1300000-07:00|40022472|Zeromus|00019B80|19549612||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:05.1300000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.72|84.52|0.00|3.08|129844|129844|10000|10000|||99.72|84.52|0.00|3.08|00019B8A|0|1| +38|2023-10-06T21:17:05.1300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.72|84.52|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:05.1300000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:17:05.1300000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3339|10000|25||100.18|84.95|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:05.1300000-07:00|777|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:17:05.2640000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:17:05.2640000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|10280000|104|6098000|0|0|0|0|0|0|0|0|0|0|0|0|19549612|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|950|10000|||100.05|84.76|0.00|-3.06|00019B8B|0|1| +21|2023-10-06T21:17:05.3070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|85A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19549612|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6600|10000|||99.75|87.48|0.00|3.11|00019B8C|0|1| +31|2023-10-06T21:17:05.3070000-07:00|10FF0001||||| +37|2023-10-06T21:17:05.3520000-07:00|40022472|Zeromus|00019B86|19545024||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:05.3520000-07:00|10FF0007|Kehabiqo Febiqo|00019B86|129844|129844|10000|10000|23||99.72|84.52|0.00|3.08|1500|0|0|01|04000769|0|C1F00000|| +37|2023-10-06T21:17:05.3520000-07:00|40022472|Zeromus|00019B84|19528832||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:05.3520000-07:00|40022472|Zeromus|00019B85|19524152||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:05.3980000-07:00|40022B87||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:17:05.3980000-07:00|40022B87||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:05.4410000-07:00|40022472|Zeromus|00019B82|19511199||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:17:05.1390000-07:00|40022B87|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.49|85.01|0.00|-3.10| +261|2023-10-06T21:17:05.1390000-07:00|Add|40022B87||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:05.1390000-07:00|Remove|40022B66| +261|2023-10-06T21:17:05.1390000-07:00|Change|10FF0009||||||||||||||||||||||| +39|2023-10-06T21:17:05.6200000-07:00|10FF0009|Zewo Negiwo|81177|81177|3560|10000|||100.18|84.95|0.00|-3.10| +21|2023-10-06T21:17:05.6200000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|5E3A0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|19511199|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.66|83.30|0.00|-3.10|00019B8D|0|1| +21|2023-10-06T21:17:05.6200000-07:00|40022487|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|83.50|0.00|0.00|00019B8E|0|0| +21|2023-10-06T21:17:05.6200000-07:00|40022489|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|83.50|0.00|0.00|00019B8F|0|0| +21|2023-10-06T21:17:05.6200000-07:00|4002248B|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.00|100.00|0.00|0.00|00019B90|0|0| +21|2023-10-06T21:17:05.6200000-07:00|4002248D|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|112.00|0.00|0.00|00019B91|0|0| +21|2023-10-06T21:17:05.6200000-07:00|4002248F|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00019B92|0|0| +261|2023-10-06T21:17:05.2510000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:17:05.2510000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:17:05.2510000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:17:05.2510000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:17:05.2510000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:17:05.2510000-07:00|Change|40022B87||| +37|2023-10-06T21:17:05.6650000-07:00|10FF0007|Kehabiqo Febiqo|00019B8A|129844|129844|10000|10000|23||99.72|84.52|0.00|3.08|1500|0|0|01|04000769|0|41F00000|| +38|2023-10-06T21:17:05.6650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.72|84.52|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:17:05.7100000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.66|83.30|0.00|3.04| +21|2023-10-06T21:17:05.7100000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|722003|3D540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19511199|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3200|10000|||100.30|86.14|0.00|-3.09|00019B93|0|1| +37|2023-10-06T21:17:05.7530000-07:00|40022472|Zeromus|00019B83|19504882||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:05.7530000-07:00|40022472|Zeromus|00019B88|19494646||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:05.7530000-07:00|10FF0003|Gegehi Gehi|00019B88|73814|73814|3200|10000|32||100.30|86.14|0.00|-3.09|2300|0|0|01|050004D2|0|41F00000|| +24|2023-10-06T21:17:05.7530000-07:00|40022472|Zeromus|DoT|0|1621|19511199|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|950|10000|||99.98|84.58|0.00|-2.87| +38|2023-10-06T21:17:05.7530000-07:00|40022472|Zeromus|005A5A00|19488981|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:17:05.7530000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3200|10000|32||100.30|86.14|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:17:05.7980000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19488981|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6800|10000|||99.84|87.05|0.00|3.12|00019B94|0|1| +37|2023-10-06T21:17:05.8430000-07:00|40022472|Zeromus|00019B8C|19486843||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:17:05.8430000-07:00|1D9C|3| +39|2023-10-06T21:17:05.8880000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6800|10000|||99.75|87.48|0.00|3.11| +39|2023-10-06T21:17:05.8880000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1150|10000|||99.97|84.54|0.00|-2.81| +261|2023-10-06T21:17:05.5420000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:17:05.9760000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.72|84.52|0.00|3.08| +261|2023-10-06T21:17:05.6330000-07:00|Change|10FF0001||| +39|2023-10-06T21:17:06.0210000-07:00|10FF0006|Wowobora Gogobora|81809|81809|1600|10000|||99.75|84.43|0.00|3.09| +21|2023-10-06T21:17:06.1100000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|19486843|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||99.96|84.52|0.00|-2.78|00019B95|0|1| +21|2023-10-06T21:17:06.1100000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44716003|2D220000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|19486843|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|6800|10000|||99.84|87.05|0.00|3.12|00019B96|0|1| +261|2023-10-06T21:17:05.7310000-07:00|Change|10FF0006||| +261|2023-10-06T21:17:05.8480000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:17:06.2430000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14AC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19486843|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.66|83.30|0.00|3.04|00019B97|0|1| +21|2023-10-06T21:17:06.2430000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|6B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19486843|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1600|10000|||99.75|84.43|0.00|3.09|00019B98|0|1| +37|2023-10-06T21:17:06.2880000-07:00|40022472|Zeromus|00019B8B|19482707||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:06.2880000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19486843|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.66|83.30|0.00|3.04|00019B99|0|1| +37|2023-10-06T21:17:06.3320000-07:00|40022472|Zeromus|00019B89|19473137||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:06.3320000-07:00|40022472|Zeromus|00019B94|19472127||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:05.9600000-07:00|Change|40022B87||| +34|2023-10-06T21:17:06.4200000-07:00|40022B87|Automaton Queen|40022B87|Automaton Queen|01| +261|2023-10-06T21:17:06.0740000-07:00|Change|40022B87||| +261|2023-10-06T21:17:06.1940000-07:00|Change|10FF0009||| +20|2023-10-06T21:17:06.5100000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.18|84.95|0.00|-3.10| +38|2023-10-06T21:17:06.5100000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3560|10000|25||100.18|84.95|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:06.5100000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:17:06.5100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||99.66|83.30|0.00|3.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:17:06.5100000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:17:06.5100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1600|10000|29||99.75|84.44|0.00|1.67|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:06.5100000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:17:06.5100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|750|10000|28||99.96|84.52|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:06.5100000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:17:06.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||98.82|84.49|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:06.5550000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:17:06.6430000-07:00|40022472|Zeromus|00019B96|19460573||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:06.6430000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19472127|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3200|10000|||99.37|86.06|0.00|-1.95|00019B9A|0|1| +21|2023-10-06T21:17:06.6880000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|36350000|4|2AC78000|0|0|0|0|0|0|0|0|0|0|0|0|19460573|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||98.00|87.33|0.00|-3.12|00019B9B|0|1| +38|2023-10-06T21:17:06.6880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|11||98.00|87.33|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:06.6880000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:17:06.7330000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|10D60000|104|64A8000|0|0|0|0|0|0|0|0|0|0|0|0|19460573|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|750|10000|||99.96|84.52|0.00|3.13|00019B9C|0|1| +38|2023-10-06T21:17:06.7330000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|750|10000|28||99.96|84.52|0.00|3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:06.7330000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +37|2023-10-06T21:17:06.7780000-07:00|40022472|Zeromus|00019B8D|19436451||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:06.7780000-07:00|40022472|Zeromus|00019B98|19436344||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:06.7780000-07:00|40022472|Zeromus|00019B95|19436344|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:17:06.7780000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +39|2023-10-06T21:17:06.8210000-07:00|40022B78|Demi-Bahamut|66800|69928|10000|10000|||99.93|105.46|0.00|3.14| +37|2023-10-06T21:17:06.8670000-07:00|40022472|Zeromus|00019B93|19420644||||||100.00|80.10|0.00|0.00| +23|2023-10-06T21:17:06.9100000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +21|2023-10-06T21:17:06.9140000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|9DFA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19436344|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||96.59|84.40|0.00|3.10|00019B9D|0|1| +21|2023-10-06T21:17:06.9140000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|19FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19436344|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.35|83.32|0.00|-2.95|00019B9E|0|1| +21|2023-10-06T21:17:06.9140000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19436344|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|750|10000|||99.96|84.52|0.00|3.13|00019B9F|0|1| +38|2023-10-06T21:17:06.9140000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||96.59|84.40|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:06.9140000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:17:06.9560000-07:00|10FF0003|Gegehi Gehi|73814|73814|3400|10000|||96.47|85.79|0.00|-1.71| +261|2023-10-06T21:17:06.5720000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:17:06.5720000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:17:07.0020000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|7000|10000|||99.71|87.00|-0.02|-2.80| +261|2023-10-06T21:17:06.5720000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:17:06.6900000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:17:07.0460000-07:00|40022472|Zeromus|00019B97|19415352||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:07.0460000-07:00|40022472|Zeromus|00019B99|19413059||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:07.1790000-07:00|40022472|Zeromus|00019B9A|19413058||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:07.2250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|C2F|90216|90216|10000|10000|||97.51|83.44|0.00|-2.83|10FF0004|Buhojaqe Zijaqe|0|81541|81541|750|10000|||99.95|84.52|0.00|-2.27| +21|2023-10-06T21:17:07.2250000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|367E0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|19413058|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1600|10000|||98.71|86.91|0.00|-0.45|00019BA0|0|1| +38|2023-10-06T21:17:07.2250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||97.51|83.44|0.00|-2.83|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:17:06.8080000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:17:07.2690000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|BE9|82773|82773|7000|10000|||98.01|86.68|0.00|-2.21|10FF0009|Zewo Negiwo|0|81177|81177|3560|10000|||100.18|85.00|0.00|-1.45| +38|2023-10-06T21:17:07.2690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|7000|10000|17||98.01|86.68|0.00|-2.21|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:07.3130000-07:00|10FF0003|Gegehi Gehi|HoT|0|BB5|73814|73814|3400|10000|||95.11|85.62|0.00|-1.69|10FF0004|Buhojaqe Zijaqe|0|81541|81541|750|10000|||99.95|84.52|0.00|-2.27| +38|2023-10-06T21:17:07.3130000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|32||95.11|85.62|0.00|-1.69|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:17:07.3580000-07:00|40022B78|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|143C0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|19413058|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||99.93|105.46|0.00|3.14|00019BA1|0|1| +24|2023-10-06T21:17:07.4030000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|BEB|81541|81541|750|10000|||99.69|84.50|0.00|-1.97|10FF0009|Zewo Negiwo|0|81177|81177|3560|10000|||99.47|85.18|0.00|-1.46| +38|2023-10-06T21:17:07.4030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|750|10000|28||99.69|84.50|0.00|-1.97|0|0|0||||||||||||||||||| +37|2023-10-06T21:17:07.4470000-07:00|40022472|Zeromus|00019B9B|19399181||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:07.4470000-07:00|40022472|Zeromus|00019B9F|19399032||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:07.4910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2927|129844|129844|10000|10000|||93.15|84.27|0.00|2.89|10FF0004|Buhojaqe Zijaqe|0|81541|81541|750|10000|||98.92|84.45|0.00|-1.87| +24|2023-10-06T21:17:07.4910000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C58|81809|81809|1300|10000|||97.38|87.38|0.00|-3.05|10FF0006|Wowobora Gogobora|0|81809|81809|1300|10000|||97.38|87.38|0.00|-3.05| +38|2023-10-06T21:17:07.4910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||93.15|84.27|0.00|2.89|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:07.4910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1300|10000|29||97.38|87.38|0.00|-3.05|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:17:07.5360000-07:00|40022472|Zeromus|00019B9E|19392379||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:07.5360000-07:00|10FF0009|Zewo Negiwo|HoT|0|1464|81177|81177|3560|10000|||98.11|85.53|0.00|-1.47|10FF0009|Zewo Negiwo|0|81177|81177|3560|10000|||98.11|85.53|0.00|-1.47| +38|2023-10-06T21:17:07.5360000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3560|10000|25||98.11|85.53|0.00|-1.47|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:07.5800000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2859|129071|129071|5800|10000|||93.47|87.42|0.00|-3.12|10FF0001|Sesuga Sapisuga|0|129071|129071|5800|10000|||93.47|87.42|0.00|-3.12| +21|2023-10-06T21:17:07.5800000-07:00|10FF0009|Zewo Negiwo|1D06|Thin Air|10FF0009|Zewo Negiwo|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3560|10000|||98.11|85.53|0.00|-1.47|81177|81177|3560|10000|||98.11|85.53|0.00|-1.47|00019BA2|0|1| +21|2023-10-06T21:17:07.5810000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19399032|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||93.47|87.42|0.00|-3.12|00019BA3|0|1| +38|2023-10-06T21:17:07.5810000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3560|10000|25||98.11|85.53|0.00|-1.47|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:07.5810000-07:00|4C1|Thin Air|12.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +38|2023-10-06T21:17:07.5810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|11||93.47|87.42|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T21:17:07.5810000-07:00|10FF0001||||| +261|2023-10-06T21:17:07.2650000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:17:07.3560000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:17:07.7130000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|750|10000|28||97.04|84.31|0.00|-1.64|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:17:07.7130000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:17:07.7130000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|750|10000|||97.04|84.31|0.00|-1.64|81541|81541|750|10000|||97.04|84.31|0.00|-1.64|00019BA4|0|1| +37|2023-10-06T21:17:07.7580000-07:00|40022472|Zeromus|00019B9C|19388069||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:07.7580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|11||92.17|87.46|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:07.7580000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:17:07.4490000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:17:07.8460000-07:00|40022472|Zeromus|00019B9D|19347627||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:07.8460000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|3B0B0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|19392379|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||92.17|87.46|0.00|-3.01|00019BA5|0|1| +261|2023-10-06T21:17:07.5420000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:17:07.5420000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:17:07.8900000-07:00|40022472|Zeromus|00019BA0|19333677||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:07.9800000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19333677|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7000|10000|||92.97|86.23|0.00|-1.60|00019BA6|0|1| +37|2023-10-06T21:17:08.1140000-07:00|40022472|Zeromus|00019BA3|19331477||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:07.7490000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:17:08.1580000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5F770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19331477|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||91.68|83.81|0.00|-1.52|00019BA7|0|1| +37|2023-10-06T21:17:08.2020000-07:00|40022472|Zeromus|00019BA5|19316362||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:08.2020000-07:00|10FF0001|Sesuga Sapisuga|00019BA5|129071|129071|6300|10000|11||89.80|87.84|0.00|-2.74|1300|0|0|0| +21|2023-10-06T21:17:08.2020000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|E8A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19331477|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||88.96|84.11|0.00|3.10|00019BA8|0|1| +37|2023-10-06T21:17:08.2460000-07:00|10FF0004|Buhojaqe Zijaqe|00019BA4|81541|81541|2750|10000|28||96.68|84.29|0.00|-1.54|1C00|0|0|0| +261|2023-10-06T21:17:07.8600000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:17:07.8600000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:17:08.2910000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|4BE0000|FC200E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|19316362|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|3560|10000|||95.34|86.39|0.00|-1.33|00019BA9|0|1| +38|2023-10-06T21:17:08.2910000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3560|10000|25||95.34|86.39|0.00|-1.33|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:08.2910000-07:00|4C1|Thin Air|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +37|2023-10-06T21:17:08.4250000-07:00|40022472|Zeromus|00019BA1|19311182||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:08.4250000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|E080000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|19316362|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7000|10000|||90.12|86.36|0.00|-1.52|00019BAA|0|1| +38|2023-10-06T21:17:08.4250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2750|10000|28||95.14|84.10|0.00|-1.63|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:08.4250000-07:00|317|Dissipation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:17:08.0940000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:17:08.0940000-07:00|Change|10FF0008||||||||| +38|2023-10-06T21:17:08.4690000-07:00|40022B8A||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:17:08.4710000-07:00|40022B8A||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:08.5140000-07:00|40022472|Zeromus|00019BA6|19310207||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:08.6030000-07:00|10FF0009|Zewo Negiwo|81177|81177|3781|10000|||93.94|86.88|0.00|2.34| +39|2023-10-06T21:17:08.6940000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||88.96|83.99|0.00|-2.96| +21|2023-10-06T21:17:08.6940000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|25600000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|19310207|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2750|10000|||93.39|83.93|0.00|-1.69|00019BAB|0|1| +261|2023-10-06T21:17:08.3000000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:17:08.7370000-07:00|40022472|Zeromus|00019BA8|19306485||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:08.3970000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:17:08.3970000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:17:08.7830000-07:00|40022472|Zeromus|DoT|0|1AAC|19310207|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|2350|10000|||92.67|83.99|0.00|1.97| +20|2023-10-06T21:17:08.7830000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|86.42|85.50|0.00|-1.59| +38|2023-10-06T21:17:08.7830000-07:00|40022472|Zeromus|005A5A00|19299657|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:17:08.3970000-07:00|Add|40022B8A||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:17:08.3970000-07:00|40022B8A|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||92.51|82.34|0.00|-1.55| +261|2023-10-06T21:17:08.3970000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:17:08.8270000-07:00|40022472|Zeromus|00019BAA|19296065||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:08.4930000-07:00|Change|40022B8A||||| +39|2023-10-06T21:17:08.8710000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||86.28|87.48|0.00|-2.96| +36|2023-10-06T21:17:08.8710000-07:00|1E78|3| +39|2023-10-06T21:17:08.9150000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2550|10000|||91.95|84.04|0.00|1.97| +261|2023-10-06T21:17:08.5940000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:17:08.9600000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|89C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19296065|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.00|84.11|0.00|-1.77|00019BAC|0|1| +39|2023-10-06T21:17:09.0050000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||84.48|83.94|0.00|3.10| +39|2023-10-06T21:17:09.0050000-07:00|10FF0006|Wowobora Gogobora|81809|81809|1500|10000|||88.59|86.85|0.00|-1.60| +38|2023-10-06T21:17:09.1400000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3781|10000|25||91.25|86.82|0.00|-2.36|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:09.1400000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:17:08.8230000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:17:09.1840000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41712003|4EE10000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|19296065|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||84.87|86.60|0.00|3.09|00019BAD|0|1| +38|2023-10-06T21:17:09.1840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|11||84.87|86.60|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:09.1840000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:17:09.1840000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:17:09.2720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1500|10000|29||87.39|86.60|0.00|-1.70|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:09.2720000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:17:09.3170000-07:00|40022472|Zeromus|00019BA7|19271626||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:08.9360000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:17:09.3620000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F712003|4DA00000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|19296065|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||83.99|83.92|0.00|3.10|00019BAE|0|1| +38|2023-10-06T21:17:09.3620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||83.99|83.92|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:09.3620000-07:00|A75|Surging Tempest|41.50|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:17:09.4070000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19271626|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1500|10000|||86.25|85.91|0.00|-1.94|00019BAF|0|1| +38|2023-10-06T21:17:09.4070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2550|10000|28||88.32|84.06|0.00|-2.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:09.4070000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +34|2023-10-06T21:17:09.4950000-07:00|40022B8A|Ruby Carbuncle|40022B8A|Ruby Carbuncle|01| +261|2023-10-06T21:17:09.1650000-07:00|Change|40022B8A||||||||| +38|2023-10-06T21:17:09.5410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|11||84.87|86.60|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:09.5410000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:17:09.5410000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|32||85.31|85.50|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:09.5410000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:17:09.5410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|7000|10000|17||86.78|86.20|0.00|-1.24|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:09.5410000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +30|2023-10-06T21:17:09.5410000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:17:09.1650000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:17:09.5850000-07:00|40022472|Zeromus|00019BA9|19270412|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|074F|0|41F00000|| +26|2023-10-06T21:17:09.5850000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:17:09.6290000-07:00|40022472|Zeromus|00019BAB|19260844||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:09.6740000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|32||85.31|85.50|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:09.6740000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:17:09.7180000-07:00|40022472|Zeromus|00019BAC|19258640||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:09.3790000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:17:09.7630000-07:00|40022472|Zeromus|00019BAD|19238447||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:09.7630000-07:00|10FF0001|Sesuga Sapisuga|00019BAD|129071|129071|6500|10000|11||84.87|86.60|0.00|3.09|1300|0|0|02|0300076E|03|41F00000|||||| +21|2023-10-06T21:17:09.7640000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|752003|58B90000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|19260844|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1500|10000|||84.62|84.70|0.00|-2.17|00019BB0|0|1| +38|2023-10-06T21:17:09.7640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|11||84.87|86.60|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:17:09.8080000-07:00|40022B78|Demi-Bahamut|66800|69928|10000|10000|||99.93|105.46|0.00|3.14| +38|2023-10-06T21:17:09.8080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|16||82.35|84.42|0.00|-1.52|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:17:09.8080000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +261|2023-10-06T21:17:09.4690000-07:00|Change|40022B78||||| +261|2023-10-06T21:17:09.4690000-07:00|Change|40022B78||||| +261|2023-10-06T21:17:09.4690000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:17:09.8540000-07:00|40022B8C||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:17:09.8540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19238447|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||84.87|86.60|0.00|3.09|00019BB1|0|1| +38|2023-10-06T21:17:09.8540000-07:00|40022B8C||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +31|2023-10-06T21:17:09.8540000-07:00|10FF0001||||| +261|2023-10-06T21:17:09.5620000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:17:09.9420000-07:00|40022472|Zeromus|00019BAF|19238380||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:09.9420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||83.85|83.91|0.00|1.80|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:09.9420000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +261|2023-10-06T21:17:09.5620000-07:00|Add|40022B8C||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:17:09.5620000-07:00|40022B8C|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||85.14|82.95|0.00|-1.00| +261|2023-10-06T21:17:09.5620000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:17:09.5620000-07:00|Change|40022B8C||| +39|2023-10-06T21:17:09.9860000-07:00|10FF0003|Gegehi Gehi|73814|73814|4150|10000|||85.31|85.50|0.00|1.92| +39|2023-10-06T21:17:09.9860000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|7200|10000|||86.78|86.20|0.00|-1.24| +261|2023-10-06T21:17:09.6560000-07:00|Change|10FF000A||||||||||| +21|2023-10-06T21:17:10.0760000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19238380|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2550|10000|||84.76|85.19|0.00|-1.25|00019BB2|0|1| +38|2023-10-06T21:17:10.0760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|11||84.87|86.60|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:10.0760000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:17:10.1650000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|6730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19238380|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7200|10000|||86.78|86.20|0.00|-1.24|00019BB3|0|1| +21|2023-10-06T21:17:10.2090000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|24720000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|19238380|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4150|10000|||85.31|85.50|0.00|1.92|00019BB4|0|1| +38|2023-10-06T21:17:10.2090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|32||85.31|85.50|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:10.2090000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:17:10.2090000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:17:10.2980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4500|10000|32||85.31|85.50|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:17:10.3880000-07:00|40022472|Zeromus|00019BB0|19215667||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:10.3880000-07:00|40022472|Zeromus|00019BB1|19213470||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:10.4770000-07:00|40022B87|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1A390000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|19213470|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.49|85.01|0.00|-3.10|00019BB5|0|1| +24|2023-10-06T21:17:10.4770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1905|129844|129844|10000|10000|||83.85|83.91|0.00|1.80|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||83.75|85.61|0.00|-0.83| +38|2023-10-06T21:17:10.4770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||83.85|83.91|0.00|1.80|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:10.5650000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1C1D|129071|129071|6500|10000|||84.87|86.60|0.00|3.09|10FF0001|Sesuga Sapisuga|0|129071|129071|6500|10000|||84.87|86.60|0.00|3.09| +38|2023-10-06T21:17:10.5650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|11||84.87|86.60|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:10.2330000-07:00|Change|40022B8A||||||||| +37|2023-10-06T21:17:10.6090000-07:00|40022472|Zeromus|00019BB2|19213317||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:10.6530000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||83.85|83.91|0.00|1.80|19213470|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019BB6|0|1| +21|2023-10-06T21:17:10.6540000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32716003|1F720000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|19213470|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7200|10000|||86.78|86.20|0.00|-1.24|00019BB7|0|1| +38|2023-10-06T21:17:10.6540000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3781|10000|0||84.52|86.05|0.00|-2.95|0|0|0||||||||||||| +30|2023-10-06T21:17:10.6540000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +261|2023-10-06T21:17:10.3310000-07:00|Change|40022490||||||||| +261|2023-10-06T21:17:10.3310000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:17:10.6980000-07:00|40022472|Zeromus|00019BB3|19211666||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:17:10.6990000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|84.52|86.05|0.00|-2.95| +21|2023-10-06T21:17:10.6990000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3B6A0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|19213317|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.13|84.49|0.00|-1.92|00019BB8|0|1| +21|2023-10-06T21:17:10.6990000-07:00|4002247F|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|116.50|0.00|0.00|00019BB9|0|0| +21|2023-10-06T21:17:10.6990000-07:00|40022481|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|116.50|0.00|0.00|00019BBA|0|0| +21|2023-10-06T21:17:10.6990000-07:00|40022483|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.00|100.00|0.00|0.00|00019BBB|0|0| +21|2023-10-06T21:17:10.6990000-07:00|40022485|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|88.00|0.00|0.00|00019BBC|0|0| +261|2023-10-06T21:17:10.3310000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:17:10.3310000-07:00|Change|40022481||||||||||||| +261|2023-10-06T21:17:10.3310000-07:00|Change|40022485||||||||||||| +261|2023-10-06T21:17:10.3310000-07:00|Change|40022483||||||||||||| +20|2023-10-06T21:17:10.7420000-07:00|40022472|Zeromus|8B38|Sable Thread|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:10.3310000-07:00|Change|40022472||||||||||| +21|2023-10-06T21:17:10.7420000-07:00|40022490|Zeromus|8AEF|unknown_8aef|10FF0004|Buhojaqe Zijaqe|1B|8AEF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2550|10000|||83.61|85.74|0.00|-0.31|44|44|0|10000|||100.00|70.00|0.00|0.00|00019BBD|0|1| +261|2023-10-06T21:17:10.4280000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:17:10.5280000-07:00|Change|40022B8C||| +34|2023-10-06T21:17:10.8750000-07:00|40022B8C|Carbuncle|40022B8C|Carbuncle|01| +261|2023-10-06T21:17:10.5280000-07:00|Change|10FF0009||||||||||||||||||| +37|2023-10-06T21:17:11.0090000-07:00|40022472|Zeromus|00019BAE|19191794||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:11.0090000-07:00|40022472|Zeromus|00019BB4|19182464||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:11.0530000-07:00|40022472|Zeromus|00019BB7|19174414||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:11.1860000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|306A0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|19174414|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4500|10000|||85.31|85.50|0.00|1.92|00019BBE|0|1| +38|2023-10-06T21:17:11.1860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4200|10000|32||85.31|85.50|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:11.1860000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:17:11.1860000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:17:11.2750000-07:00|40022472|Zeromus|00019BB5|19167701||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:11.3640000-07:00|40022B87|Automaton Queen|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85| +37|2023-10-06T21:17:11.4530000-07:00|10FF0007|Kehabiqo Febiqo|00019BB6|129844|129844|10000|10000|11||83.86|83.92|0.00|1.65|1500|0|0|01|0B000000|0|0|| +38|2023-10-06T21:17:11.4530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|11||83.86|83.92|0.00|1.65|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:11.4530000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:17:11.4970000-07:00|40022472|Zeromus|00019BB8|19152491||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:11.1890000-07:00|Change|10FF0004||||||||||||||||||| +20|2023-10-06T21:17:11.4970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|83.38|85.90|-0.02|-0.55| +38|2023-10-06T21:17:11.4970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|11||83.86|83.92|0.00|1.65|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:11.4970000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:17:11.5860000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BD50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19152491|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||83.87|83.93|0.00|1.38|00019BBF|0|1| +21|2023-10-06T21:17:11.5860000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19152491|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4200|10000|||85.31|85.50|0.00|1.92|00019BC0|0|1| +39|2023-10-06T21:17:11.6310000-07:00|10FF0009|Zewo Negiwo|81177|81177|4002|10000|||84.52|86.05|0.00|1.94| +21|2023-10-06T21:17:11.6310000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|181D0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|19152491|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|3781|10000|||84.52|86.05|0.00|1.94|00019BC1|0|1| +21|2023-10-06T21:17:11.6310000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19152491|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.15|84.51|0.00|1.56|00019BC2|0|1| +21|2023-10-06T21:17:11.6760000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|754003|46BF0000|200004|3DCF8000|0|0|0|0|0|0|0|0|0|0|0|0|19152491|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||84.87|86.60|0.00|1.98|00019BC3|0|1| +38|2023-10-06T21:17:11.6760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5500|10000|11||84.87|86.60|0.00|1.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:11.6760000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:17:11.3770000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:17:11.7200000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||81.17|84.54|0.00|1.26| +261|2023-10-06T21:17:11.4720000-07:00|Change|10FF0003||| +24|2023-10-06T21:17:11.7640000-07:00|40022472|Zeromus|DoT|0|19BE|19152491|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|2550|10000|||83.35|85.92|0.00|0.96| +38|2023-10-06T21:17:11.7640000-07:00|40022472|Zeromus|005A5A00|19145901|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:17:11.7640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5500|10000|11||85.01|86.70|0.00|1.68|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:11.7640000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:17:11.8530000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15A10000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|19145901|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||84.42|84.77|0.00|1.43|00019BC4|0|1| +36|2023-10-06T21:17:11.8530000-07:00|1F54|3| +39|2023-10-06T21:17:11.8970000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5700|10000|||85.45|87.04|0.00|1.68| +39|2023-10-06T21:17:11.8970000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2750|10000|||83.34|85.92|0.00|1.54| +261|2023-10-06T21:17:11.5650000-07:00|Change|10FF0009||||||||||||||||| +37|2023-10-06T21:17:11.9870000-07:00|40022472|Zeromus|00019BBE|19133507||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:11.9870000-07:00|10FF0003|Gegehi Gehi|00019BBE|73814|73814|4200|10000|32||85.31|85.50|0.00|1.92|2300|0|0|01|040004D3|0|41F00000|| +39|2023-10-06T21:17:11.9870000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||84.87|85.48|0.00|1.93| +39|2023-10-06T21:17:11.9870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|1400|10000|||81.72|84.81|0.00|0.17| +38|2023-10-06T21:17:11.9870000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4200|10000|32||85.31|85.50|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:17:11.6550000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:17:11.6550000-07:00|Change|40022B8A||||||||| +261|2023-10-06T21:17:11.6550000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T21:17:12.0300000-07:00|40022B87|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|2C9D0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|19133507|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85|00019BC5|0|1| +37|2023-10-06T21:17:12.1200000-07:00|40022472|Zeromus|00019BBF|19130478||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:12.1200000-07:00|40022472|Zeromus|00019BC0|19130477||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:12.1200000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19133507|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5700|10000|||86.44|87.85|0.00|1.68|00019BC6|0|1| +21|2023-10-06T21:17:12.1200000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|726003|1BBD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19133507|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4200|10000|||85.31|85.50|0.00|1.92|00019BC7|0|1| +31|2023-10-06T21:17:12.1200000-07:00|10FF0001||||| +21|2023-10-06T21:17:12.2090000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|19130477|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1400|10000|||82.76|86.02|0.00|0.57|00019BC8|0|1| +38|2023-10-06T21:17:12.2090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|11||85.70|86.80|-0.02|1.82|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:12.2090000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:17:12.2090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1400|10000|29||82.76|86.02|0.00|0.57|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:12.2090000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:17:12.2530000-07:00|40022B8F||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:17:12.2530000-07:00|40022B8F||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:17:11.8590000-07:00|Change|40022B8C||||||||| +21|2023-10-06T21:17:12.3420000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|50B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19130477|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7200|10000|||87.89|88.03|0.00|-2.93|00019BC9|0|1| +37|2023-10-06T21:17:12.3860000-07:00|40022472|Zeromus|00019BC4|19124940||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:12.3860000-07:00|40022472|Zeromus|00019BC2|19121385||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:17:12.0920000-07:00|40022B8F|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||82.71|89.21|0.00|1.97| +261|2023-10-06T21:17:12.0920000-07:00|Add|40022B8F||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:12.4310000-07:00|40022472|Zeromus|00019BC3|19103274||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:12.4310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4E000000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19121385|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2750|10000|||83.33|85.92|0.00|1.86|00019BCA|0|1| +261|2023-10-06T21:17:12.0920000-07:00|Change|40022B8F||||| +21|2023-10-06T21:17:12.5650000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19103274|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1400|10000|||84.15|87.33|0.00|1.30|00019BCB|0|1| +261|2023-10-06T21:17:12.1930000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:17:12.2860000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:17:12.6540000-07:00|40022472|Zeromus|00019BC6|19101178||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:12.2860000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:17:12.3780000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:17:12.7450000-07:00|40022472|Zeromus|00019BC7|19094077||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:12.7890000-07:00|40022472|Zeromus|00019BC5|19082656||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:12.4730000-07:00|Change|40022B8A||||||||| +37|2023-10-06T21:17:12.8770000-07:00|40022472|Zeromus|00019BC9|19081365||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:12.9220000-07:00|40022472|Zeromus|00019BC1|19075192||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:12.9660000-07:00|10FF0003|Gegehi Gehi|73814|73814|4400|10000|||85.32|85.57|-0.02|1.89| +21|2023-10-06T21:17:12.9660000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42716003|2B480000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|19075192|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7200|10000|||85.49|89.87|0.00|-0.80|00019BCC|0|1| +261|2023-10-06T21:17:12.5720000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:17:13.0110000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|7400|10000|||85.49|89.87|0.00|-0.80| +38|2023-10-06T21:17:13.0110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5700|10000|11||91.06|90.06|0.00|1.18|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:13.0110000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:17:12.6910000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:17:12.6910000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:13.1010000-07:00|40022472|Zeromus|00019BCB|19075074||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:13.1010000-07:00|40022B8A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||94.62|93.65|0.00|0.84|0|0|0||||||| +26|2023-10-06T21:17:13.1010000-07:00|30|Well Fed|1989.93|10FF0004|Buhojaqe Zijaqe|40022B8A|Ruby Carbuncle|2968|77430|81541| +26|2023-10-06T21:17:13.1010000-07:00|7AC|Summon Order II|30.00|40022B8A|Ruby Carbuncle|40022B8A|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:17:13.1010000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2350|10000|||85.21|86.83|0.00|1.36|81541|81541|2350|10000|||85.21|86.83|0.00|1.36|00019BCD|0|1| +21|2023-10-06T21:17:13.1900000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|30CB0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|19075074|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||86.69|91.33|0.00|0.82|00019BCE|0|1| +37|2023-10-06T21:17:13.2350000-07:00|10FF0006|Wowobora Gogobora|00019BC8|81809|81809|1400|10000|29||87.43|90.34|0.00|0.83|1B00|0|0|01|0AA4|0|0|| +37|2023-10-06T21:17:13.2350000-07:00|40022472|Zeromus|00019BCA|19055106||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:17:13.2350000-07:00|40022B8A|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|5700|10000|||92.26|90.56|0.00|1.18|73956|77430|10000|10000|||95.07|94.05|0.00|0.84|00019BCF|0|8| +22|2023-10-06T21:17:13.2350000-07:00|40022B8A|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.05|91.07|0.00|0.94|73956|77430|10000|10000|||95.07|94.05|0.00|0.84|00019BCF|1|8| +22|2023-10-06T21:17:13.2350000-07:00|40022B8A|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|1400|10000|||87.43|90.34|0.00|0.83|73956|77430|10000|10000|||95.07|94.05|0.00|0.84|00019BCF|2|8| +22|2023-10-06T21:17:13.2350000-07:00|40022B8A|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||86.69|91.33|0.00|0.82|73956|77430|10000|10000|||95.07|94.05|0.00|0.84|00019BCF|3|8| +22|2023-10-06T21:17:13.2350000-07:00|40022B8A|Ruby Carbuncle|325|Fey Illumination|10FF0009|Zewo Negiwo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3602|10000|||85.20|88.69|0.00|0.34|73956|77430|10000|10000|||95.07|94.05|0.00|0.84|00019BCF|4|8| +22|2023-10-06T21:17:13.2350000-07:00|40022B8A|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|7400|10000|||85.34|89.93|0.00|2.16|73956|77430|10000|10000|||95.07|94.05|0.00|0.84|00019BCF|5|8| +22|2023-10-06T21:17:13.2350000-07:00|40022B8A|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2350|10000|||85.70|87.18|0.00|1.25|73956|77430|10000|10000|||95.07|94.05|0.00|0.84|00019BCF|6|8| +22|2023-10-06T21:17:13.2350000-07:00|40022B8A|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4400|10000|||85.38|86.86|0.00|1.33|73956|77430|10000|10000|||95.07|94.05|0.00|0.84|00019BCF|7|8| +38|2023-10-06T21:17:13.2350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1400|10000|29||87.43|90.34|0.00|0.83|0|0|0|||||||||||||||||||||||||||| +22|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0007|Kehabiqo Febiqo|5140E|5B10000|1C7E0E|83C0000|4|1CE60000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|00019BD0|0|8| +22|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0001|Sesuga Sapisuga|5A00E|5B10000|1C7E0E|83C0000|4|1C190000|0|0|0|0|0|0|0|0|0|0|129071|129071|5700|10000|||92.83|90.79|0.00|1.17|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|00019BD0|1|8| +22|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0006|Wowobora Gogobora|5EF0E|5B10000|1C7E0E|83C0000|200004|2E6D0000|0|0|0|0|0|0|0|0|0|0|81809|81809|1400|10000|||87.93|90.70|0.00|0.86|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|00019BD0|2|8| +22|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0008|Kokosaze Lulusaze|5DC0E|5B10000|1C7E0E|83C0000|4|1C1D0000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||86.86|91.49|0.00|2.31|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|00019BD0|3|8| +22|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0009|Zewo Negiwo|5900E|5B10000|1C7E0E|83C0000|4|1D490000|0|0|0|0|0|0|0|0|0|0|81177|81177|3602|10000|||85.76|89.07|0.00|0.49|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|00019BD0|4|8| +22|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF000A|Dukaro Nezikaro|57F0E|5B10000|1C7E0E|83C0000|200004|2ED60000|0|0|0|0|0|0|0|0|0|0|82773|82773|7400|10000|||85.26|89.95|0.00|2.16|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|00019BD0|5|8| +22|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0004|Buhojaqe Zijaqe|5C70E|5B10000|1C7E0E|83C0000|4|1D2C0000|0|0|0|0|0|0|0|0|0|0|81541|81541|2350|10000|||86.19|87.55|0.00|1.16|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|00019BD0|6|8| +22|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0003|Gegehi Gehi|5400E|5B10000|1C7E0E|83C0000|4|1D000000|0|0|0|0|0|0|0|0|0|0|73814|73814|4400|10000|||85.42|87.50|0.00|1.15|129844|129844|10000|10000|||90.58|91.21|0.00|1.03|00019BD0|7|8| +38|2023-10-06T21:17:13.2800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|26||90.58|91.21|0.00|1.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:13.2800000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:17:13.2800000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:17:13.2800000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3602|10000|14||85.76|89.07|0.00|0.49|0|0|0|||||||||||||||| +26|2023-10-06T21:17:13.2800000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0009|Zewo Negiwo|00|81177|129844| +26|2023-10-06T21:17:13.2800000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0009|Zewo Negiwo|00|81177|129844| +38|2023-10-06T21:17:13.2800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|31||86.86|91.49|0.00|2.31|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:17:13.2800000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +26|2023-10-06T21:17:13.2800000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T21:17:13.2800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1400|10000|44||87.93|90.70|0.00|0.86|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:13.2800000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +26|2023-10-06T21:17:13.2800000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +38|2023-10-06T21:17:13.2810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5700|10000|26||92.83|90.79|0.00|1.17|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:13.2810000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +26|2023-10-06T21:17:13.2810000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +38|2023-10-06T21:17:13.2810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|43||86.19|87.55|0.00|1.16|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:17:13.2810000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +26|2023-10-06T21:17:13.2810000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +38|2023-10-06T21:17:13.2810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4400|10000|47||85.42|87.50|0.00|1.15|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:13.2810000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +26|2023-10-06T21:17:13.2810000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +38|2023-10-06T21:17:13.2810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|7400|10000|32||85.26|89.95|0.00|2.16|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:17:13.2810000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|82773|129844| +26|2023-10-06T21:17:13.2810000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|82773|129844| +261|2023-10-06T21:17:12.9260000-07:00|Change|40022B8F||| +24|2023-10-06T21:17:13.3240000-07:00|10FF0003|Gegehi Gehi|HoT|0|991|73814|73814|4400|10000|||85.42|87.50|0.00|1.15|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||86.19|87.55|0.00|1.16| +38|2023-10-06T21:17:13.3240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|47||85.42|87.50|0.00|1.15|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:17:13.4130000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|FB6|81541|81541|2350|10000|||86.58|87.84|-0.02|1.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||86.58|87.84|-0.02|1.06| +38|2023-10-06T21:17:13.4130000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|43||86.58|87.84|-0.02|1.06|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:17:13.0490000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:17:13.0490000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:17:13.5020000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9D8|129844|129844|10000|10000|||91.24|91.30|-0.02|1.56|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||86.58|87.84|-0.02|1.06| +24|2023-10-06T21:17:13.5020000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9E0|81809|81809|1400|10000|||88.50|91.09|0.00|0.89|10FF0006|Wowobora Gogobora|0|81809|81809|1400|10000|||88.50|91.09|0.00|0.89| +38|2023-10-06T21:17:13.5020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|26||91.24|91.30|-0.02|1.56|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:13.5020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1400|10000|44||88.50|91.09|0.00|0.89|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:17:13.5020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|47||85.48|88.26|0.00|1.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:13.5020000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:17:13.1650000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:17:13.5470000-07:00|10FF0009|Zewo Negiwo|HoT|0|998|81177|81177|3602|10000|||86.88|89.87|-0.02|0.78|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||91.94|91.24|0.00|1.57| +38|2023-10-06T21:17:13.5470000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3602|10000|14||86.88|89.87|-0.02|0.78|0|0|0|||||||||||||||| +04|2023-10-06T21:17:13.1650000-07:00|40022B78|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|69928|0|10000|||99.93|105.46|0.00|3.14| +261|2023-10-06T21:17:13.2610000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:17:13.2610000-07:00|Remove|40022B78| +37|2023-10-06T21:17:13.5910000-07:00|40022472|Zeromus|00019BCC|19044026||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:13.5910000-07:00|40022B87|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1BBE0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|19055106|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85|00019BD1|0|1| +24|2023-10-06T21:17:13.5910000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9E5|129071|129071|5700|10000|||94.54|91.73|0.00|0.97|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||86.38|87.68|0.00|0.99| +38|2023-10-06T21:17:13.5910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5700|10000|26||94.54|91.73|0.00|0.97|0|0|0|||||||||||||||||||||||||||| +22|2023-10-06T21:17:13.8590000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0008|Kokosaze Lulusaze|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|00019BD2|0|8| +22|2023-10-06T21:17:13.8590000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0006|Wowobora Gogobora|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|1400|10000|||90.68|92.68|0.00|0.95|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|00019BD2|1|8| +22|2023-10-06T21:17:13.8590000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0009|Zewo Negiwo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3602|10000|||88.28|91.22|0.00|0.80|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|00019BD2|2|8| +22|2023-10-06T21:17:13.8590000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0004|Buhojaqe Zijaqe|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2350|10000|||86.90|88.23|0.00|0.91|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|00019BD2|3|8| +22|2023-10-06T21:17:13.8590000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0001|Sesuga Sapisuga|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|5700|10000|||95.65|92.49|0.00|0.97|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|00019BD2|4|8| +22|2023-10-06T21:17:13.8590000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0007|Kehabiqo Febiqo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.81|90.64|0.00|1.77|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|00019BD2|5|8| +22|2023-10-06T21:17:13.8590000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000A|Dukaro Nezikaro|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|7400|10000|||85.78|90.64|0.00|2.23|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|00019BD2|6|8| +22|2023-10-06T21:17:13.8590000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0003|Gegehi Gehi|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4950|10000|||86.79|90.13|0.00|0.91|90216|90216|10000|10000|||88.05|92.37|0.00|1.99|00019BD2|7|8| +261|2023-10-06T21:17:13.4420000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:17:13.5360000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:17:13.9480000-07:00|40022472|Zeromus|00019BCE|19031535||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:13.9930000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|3A390000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|19044026|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2350|10000|||87.56|88.90|0.00|0.86|00019BD3|0|1| +20|2023-10-06T21:17:13.9930000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|87.51|90.41|0.00|0.91| +261|2023-10-06T21:17:13.6330000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:17:14.0380000-07:00|10FF0001|Sesuga Sapisuga|00019BCF|129071|129071|5700|10000|26||96.73|93.21|0.00|1.00|1300|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:17:14.0380000-07:00|13D|Fey Illumination|20.00|40022B8A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:17:14.0830000-07:00|10FF0007|Kehabiqo Febiqo|00019BD0|129844|129844|10000|10000|26||94.74|89.69|0.00|2.10|1500|0|0|02|010005B1|0|41E9ED8F|||||| +37|2023-10-06T21:17:14.1720000-07:00|10FF0007|Kehabiqo Febiqo|00019BCF|129844|129844|10000|10000|26||95.17|89.18|0.00|2.22|1501|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:17:14.1720000-07:00|13D|Fey Illumination|20.00|40022B8A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +21|2023-10-06T21:17:14.1720000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|26810000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|19031535|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5700|10000|||97.29|93.55|0.00|1.05|00019BD4|0|1| +38|2023-10-06T21:17:14.1720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5700|10000|26||97.29|93.55|0.00|1.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:14.1720000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T21:17:14.2160000-07:00|10FF0001|Sesuga Sapisuga|00019BD0|129071|129071|5700|10000|26||97.29|93.55|0.00|1.05|1301|0|0|02|020005B1|0|41E8DB20|||||| +21|2023-10-06T21:17:14.2160000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19031535|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1950|10000|||89.24|90.18|0.00|1.83|00019BD5|0|1| +37|2023-10-06T21:17:14.3050000-07:00|10FF0006|Wowobora Gogobora|00019BCF|81809|81809|1400|10000|44||92.85|93.91|0.00|1.03|1B02|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:17:14.3050000-07:00|13D|Fey Illumination|20.00|40022B8A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +21|2023-10-06T21:17:14.3050000-07:00|40022B8F|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|152003|A2460000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|19031535|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||82.71|89.21|0.00|1.97|00019BD6|0|1| +261|2023-10-06T21:17:13.8680000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:17:13.8680000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:17:13.8680000-07:00|Change|40022B8C||||||||| +21|2023-10-06T21:17:14.3060000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20BC0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|19031535|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||95.53|88.68|0.00|2.28|00019BD7|0|1| +21|2023-10-06T21:17:14.3060000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19031535|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||90.25|93.95|0.00|1.12|00019BD8|0|1| +37|2023-10-06T21:17:14.3500000-07:00|10FF0006|Wowobora Gogobora|00019BD0|81809|81809|1400|10000|44||93.36|94.25|0.00|1.02|1B02|0|0|02|030005B1|0|41E7CABD|||||| +37|2023-10-06T21:17:14.3500000-07:00|40022472|Zeromus|00019BD1|19024433||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:13.9910000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:17:14.3950000-07:00|40022B87|Automaton Queen|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85| +21|2023-10-06T21:17:14.3950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19031535|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5700|10000|||98.40|94.12|0.00|1.17|00019BD9|0|1| +31|2023-10-06T21:17:14.3950000-07:00|10FF0001||||| +37|2023-10-06T21:17:14.4390000-07:00|10FF0008|Kokosaze Lulusaze|00019BCF|90216|90216|10000|10000|31||90.44|94.07|0.00|1.08|1F03|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T21:17:14.4390000-07:00|13D|Fey Illumination|20.00|40022B8A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +261|2023-10-06T21:17:14.1040000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:17:14.4830000-07:00|10FF0008|Kokosaze Lulusaze|00019BD0|90216|90216|10000|10000|31||91.26|94.59|0.00|1.06|1F03|0|0|02|020005B1|0|41E6B84E|||||| +37|2023-10-06T21:17:14.4830000-07:00|10FF0008|Kokosaze Lulusaze|00019BD2|90216|90216|10000|10000|31||91.26|94.59|0.00|1.06|1F00|0|0|01|0500079F|0|41700000|| +26|2023-10-06T21:17:14.4830000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T21:17:14.5270000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19024433|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7400|10000|||86.73|91.34|0.00|2.48|00019BDA|0|1| +37|2023-10-06T21:17:14.5720000-07:00|10FF0009|Zewo Negiwo|00019BCF|81177|81177|3602|10000|14||91.07|93.96|0.00|0.85|1804|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:17:14.5720000-07:00|13D|Fey Illumination|20.00|40022B8A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +37|2023-10-06T21:17:14.6170000-07:00|10FF0009|Zewo Negiwo|00019BD0|81177|81177|3602|10000|14||91.54|94.33|0.00|0.87|1804|0|0|02|020005B1|0|41E5A7EB|||||| +37|2023-10-06T21:17:14.6170000-07:00|10FF0006|Wowobora Gogobora|00019BD2|81809|81809|1400|10000|44||94.36|94.99|0.00|0.97|1B01|0|0|01|0900079F|0|41700000|| +26|2023-10-06T21:17:14.6170000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +39|2023-10-06T21:17:14.6170000-07:00|10FF0009|Zewo Negiwo|81177|81177|3823|10000|||91.54|94.33|0.00|0.87| +261|2023-10-06T21:17:14.2040000-07:00|Change|10FF0008||||||||| +20|2023-10-06T21:17:14.6610000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|94.36|94.99|0.00|0.97| +37|2023-10-06T21:17:14.7050000-07:00|10FF000A|Dukaro Nezikaro|00019BCF|82773|82773|7400|10000|32||88.14|92.39|0.00|2.50|1E05|0|0|01|0700013D|0|41A00000|| +26|2023-10-06T21:17:14.7050000-07:00|13D|Fey Illumination|20.00|40022B8A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +39|2023-10-06T21:17:14.7050000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||92.93|95.64|0.00|1.03| +37|2023-10-06T21:17:14.7490000-07:00|10FF000A|Dukaro Nezikaro|00019BD0|82773|82773|7400|10000|32||88.14|92.39|0.00|2.50|1E05|0|0|02|040005B1|0|41E49788|||||| +37|2023-10-06T21:17:14.7490000-07:00|10FF0009|Zewo Negiwo|00019BD2|81177|81177|3823|10000|14||92.04|94.71|0.00|0.89|1802|0|0|01|0600079F|0|41700000|| +26|2023-10-06T21:17:14.7490000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0009|Zewo Negiwo|00|81177|90216| +37|2023-10-06T21:17:14.7490000-07:00|40022472|Zeromus|00019BD5|19024273||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:14.7500000-07:00|40022472|Zeromus|DoT|0|1BE9|19024433|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1950|10000|||92.33|92.06|0.00|1.17| +38|2023-10-06T21:17:14.7500000-07:00|40022472|Zeromus|005A5A00|19017128|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:17:14.7940000-07:00|40022B8A|Ruby Carbuncle|73956|77430|10000|10000|||96.82|95.60|0.00|0.84| +261|2023-10-06T21:17:14.3940000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:17:14.8380000-07:00|10FF0004|Buhojaqe Zijaqe|00019BCF|81541|81541|1950|10000|43||93.01|92.29|0.00|1.22|1C06|0|0|01|0700013D|0|41A00000|| +26|2023-10-06T21:17:14.8380000-07:00|13D|Fey Illumination|20.00|40022B8A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +21|2023-10-06T21:17:14.8380000-07:00|10FF0001|Sesuga Sapisuga|1D6B|Rampart|10FF0001|Sesuga Sapisuga|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|5700|10000|||99.91|94.42|0.00|1.83|129071|129071|5700|10000|||99.91|94.42|0.00|1.83|00019BDB|0|1| +36|2023-10-06T21:17:14.8380000-07:00|2030|3| +261|2023-10-06T21:17:14.3940000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:17:14.8830000-07:00|10FF0004|Buhojaqe Zijaqe|00019BD0|81541|81541|1950|10000|43||93.01|92.29|0.00|1.22|1C06|0|0|02|030005B1|0|41E38725|||||| +37|2023-10-06T21:17:14.8830000-07:00|10FF0004|Buhojaqe Zijaqe|00019BD2|81541|81541|1950|10000|43||93.01|92.29|0.00|1.22|1C03|0|0|01|0800079F|0|41700000|| +26|2023-10-06T21:17:14.8830000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +39|2023-10-06T21:17:14.8830000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5900|10000|||99.91|94.42|0.00|1.83| +39|2023-10-06T21:17:14.8830000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2150|10000|||93.01|92.29|0.00|1.22| +37|2023-10-06T21:17:14.9280000-07:00|40022472|Zeromus|00019BD7|19008748||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:14.9280000-07:00|40022472|Zeromus|00019BD9|19007016||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:14.9280000-07:00|40022472|Zeromus|00019BD3|18992111||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:14.4950000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T21:17:14.9720000-07:00|10FF0003|Gegehi Gehi|00019BCF|73814|73814|4950|10000|47||88.67|90.75|0.00|2.33|2307|0|0|01|0100013D|0|41A00000|| +26|2023-10-06T21:17:14.9720000-07:00|13D|Fey Illumination|20.00|40022B8A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +39|2023-10-06T21:17:14.9720000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||97.04|86.69|0.00|2.55| +21|2023-10-06T21:17:14.9720000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|716003|16E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19017128|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||97.04|86.69|0.00|2.55|00019BDC|0|1| +38|2023-10-06T21:17:14.9720000-07:00|40022B8A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||96.82|95.60|0.00|0.84|0|0|0||||||| +30|2023-10-06T21:17:14.9720000-07:00|7AC|Summon Order II|0.00|40022B8A|Ruby Carbuncle|40022B8A|Ruby Carbuncle|01|77430|77430| +26|2023-10-06T21:17:14.9720000-07:00|77B|Summon Order|30.00|40022B8A|Ruby Carbuncle|40022B8A|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:17:14.9720000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2150|10000|||93.62|92.51|0.00|1.26|81541|81541|2150|10000|||93.62|92.51|0.00|1.26|00019BDD|0|1| +37|2023-10-06T21:17:15.0160000-07:00|10FF0003|Gegehi Gehi|00019BD0|73814|73814|4950|10000|47||88.67|90.75|0.00|2.33|2307|0|0|02|030005B1|0|41E274B6|||||| +37|2023-10-06T21:17:15.0160000-07:00|10FF0001|Sesuga Sapisuga|00019BD2|129071|129071|5900|10000|26||99.91|94.41|0.00|2.87|1304|0|0|01|0600079F|0|41700000|| +26|2023-10-06T21:17:15.0160000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +39|2023-10-06T21:17:15.0160000-07:00|10FF0006|Wowobora Gogobora|81809|81809|1600|10000|||94.90|95.51|0.00|2.47| +37|2023-10-06T21:17:15.0610000-07:00|40022472|Zeromus|00019BD8|18988430||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:15.0610000-07:00|40022472|Zeromus|00019BDA|18987469||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:17:15.0610000-07:00|40022B8A|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|1400|10000|||94.90|95.51|0.00|2.47|73956|77430|10000|10000|||96.82|95.60|0.00|0.95|00019BDE|0|8| +22|2023-10-06T21:17:15.0610000-07:00|40022B8A|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2150|10000|||94.24|92.82|0.00|1.20|73956|77430|10000|10000|||96.82|95.60|0.00|0.95|00019BDE|1|8| +22|2023-10-06T21:17:15.0610000-07:00|40022B8A|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||95.11|97.01|0.00|1.02|73956|77430|10000|10000|||96.82|95.60|0.00|0.95|00019BDE|2|8| +22|2023-10-06T21:17:15.0610000-07:00|40022B8A|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|5900|10000|||99.91|94.41|0.00|2.87|73956|77430|10000|10000|||96.82|95.60|0.00|0.95|00019BDE|3|8| +22|2023-10-06T21:17:15.0610000-07:00|40022B8A|Ruby Carbuncle|323|Whispering Dawn|10FF0009|Zewo Negiwo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3823|10000|||93.56|95.88|0.00|0.90|73956|77430|10000|10000|||96.82|95.60|0.00|0.95|00019BDE|4|8| +22|2023-10-06T21:17:15.0610000-07:00|40022B8A|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|7400|10000|||90.21|93.93|0.00|2.50|73956|77430|10000|10000|||96.82|95.60|0.00|0.95|00019BDE|5|8| +22|2023-10-06T21:17:15.0610000-07:00|40022B8A|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||97.51|86.35|0.00|2.58|73956|77430|10000|10000|||96.82|95.60|0.00|0.95|00019BDE|6|8| +22|2023-10-06T21:17:15.0610000-07:00|40022B8A|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4950|10000|||88.67|90.75|0.00|2.33|73956|77430|10000|10000|||96.82|95.60|0.00|0.95|00019BDE|7|8| +37|2023-10-06T21:17:15.1500000-07:00|10FF0007|Kehabiqo Febiqo|00019BD2|129844|129844|10000|10000|26||98.00|86.20|0.00|2.68|1505|0|0|01|0700079F|0|41700000|| +26|2023-10-06T21:17:15.1500000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +21|2023-10-06T21:17:15.1500000-07:00|40022B87|Automaton Queen|4078|Arm Punch|40022472|Zeromus|734003|1FA20000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|18987469|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85|00019BDF|0|1| +21|2023-10-06T21:17:15.1500000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|716003|16C70000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|18987469|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7400|10000|||90.82|94.38|0.00|2.50|00019BE0|0|1| +37|2023-10-06T21:17:15.2830000-07:00|10FF000A|Dukaro Nezikaro|00019BD2|82773|82773|7400|10000|32||91.42|94.83|0.00|2.64|1E06|0|0|01|0800079F|0|41700000|| +26|2023-10-06T21:17:15.2830000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|82773|90216| +261|2023-10-06T21:17:14.9370000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:17:14.9370000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:17:14.9370000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:17:15.4180000-07:00|10FF0003|Gegehi Gehi|00019BD2|73814|73814|4950|10000|47||88.67|90.75|0.00|2.33|2307|0|0|01|0600079F|0|41700000|| +26|2023-10-06T21:17:15.4180000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +21|2023-10-06T21:17:15.4180000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|450003|23760000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|18987469|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4950|10000|||88.67|90.75|0.00|2.33|00019BE1|0|1| +38|2023-10-06T21:17:15.4180000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|47||88.67|90.75|0.00|2.33|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:15.4180000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:17:15.4180000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:17:15.0550000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:17:15.4620000-07:00|40022472|Zeromus|00019BD4|18977612||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:15.4620000-07:00|10FF0001|Sesuga Sapisuga|00019BD4|129071|129071|6300|10000|26||99.98|92.28|0.00|-3.09|1300|0|0|0| +37|2023-10-06T21:17:15.4620000-07:00|10FF0001|Sesuga Sapisuga|00019BDB|129071|129071|6300|10000|26||99.98|92.28|0.00|-3.09|1300|0|0|01|070004A7|0|41A00000|| +26|2023-10-06T21:17:15.4620000-07:00|4A7|Rampart|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:17:15.5060000-07:00|40022472|Zeromus|00019BDC|18971748||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:15.5510000-07:00|40022472|Zeromus|00019BE0|18965917||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:15.1660000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:17:15.5950000-07:00|10FF0001|Sesuga Sapisuga|1CD9|Passage of Arms|10FF0001|Sesuga Sapisuga|4400640F|4978000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6300|10000|||99.98|92.28|0.00|-3.09|129071|129071|6300|10000|||99.98|92.28|0.00|-3.09|00019BE2|0|1| +261|2023-10-06T21:17:15.2600000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:17:15.6840000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|38D90000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|18965917|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.38|98.96|0.00|1.47|00019BE3|0|1| +21|2023-10-06T21:17:15.7280000-07:00|40022472|Zeromus|8B38|Sable Thread|40022472|Zeromus|49|48000|1B|8B388000|0|0|0|0|0|0|0|0|0|0|0|0|18965917|40478540|10000|10000|||100.00|80.10|0.00|0.00|18965917|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019BE4|0|1| +261|2023-10-06T21:17:15.3510000-07:00|Change|40022472||||||||||| +261|2023-10-06T21:17:15.3510000-07:00|Change|40022472||||||||||| +37|2023-10-06T21:17:15.9060000-07:00|40022472|Zeromus|00019BDF|18957819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:15.9520000-07:00|10FF0006|Wowobora Gogobora|00019BDE|81809|81809|1600|10000|44||94.99|95.60|0.00|2.83|1B00|0|0|01|0A00013B|0|41A80000|| +26|2023-10-06T21:17:15.9520000-07:00|13B|Whispering Dawn|21.00|40022B8A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +39|2023-10-06T21:17:15.9520000-07:00|10FF0003|Gegehi Gehi|73814|73814|4950|10000|||88.76|90.81|0.00|1.31| +261|2023-10-06T21:17:15.5500000-07:00|Remove|40022B8C| +04|2023-10-06T21:17:15.5500000-07:00|40022B8C|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||82.90|82.69|0.00|-1.68| +261|2023-10-06T21:17:15.5500000-07:00|Change|10FF0003||||||||||||||||||||| +39|2023-10-06T21:17:15.9970000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|7600|10000|||96.39|97.57|0.00|2.66| +26|2023-10-06T21:17:15.9970000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +22|2023-10-06T21:17:15.9970000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2150|10000|||97.90|95.99|0.00|1.01|81541|81541|2150|10000|||97.90|95.99|0.00|1.01|00019BE5|0|1| +37|2023-10-06T21:17:16.0860000-07:00|10FF0004|Buhojaqe Zijaqe|00019BDE|81541|81541|2150|10000|43||97.90|95.99|0.00|1.01|1C01|0|0|01|0900013B|0|41A80000|| +26|2023-10-06T21:17:16.0860000-07:00|13B|Whispering Dawn|21.00|40022B8A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T21:17:15.7630000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:17:16.2200000-07:00|10FF0008|Kokosaze Lulusaze|00019BDE|90216|90216|10000|10000|31||99.26|99.35|0.00|3.10|1F02|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:17:16.2200000-07:00|13B|Whispering Dawn|21.00|40022B8A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:17:16.2210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|31||99.26|99.35|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.2210000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|90216|129071| +38|2023-10-06T21:17:16.2210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|7600|10000|32||96.93|97.86|0.00|2.66|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.2210000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|82773|129071| +38|2023-10-06T21:17:16.2210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|43||98.01|96.08|0.00|2.46|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.2210000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +38|2023-10-06T21:17:16.2210000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1600|10000|44||94.99|95.60|0.00|2.83|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.2210000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +38|2023-10-06T21:17:16.2210000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3823|10000|14||99.36|99.69|0.00|1.16|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:17:16.2210000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0009|Zewo Negiwo|00|81177|129071| +38|2023-10-06T21:17:16.2210000-07:00|40022B8A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||96.82|95.60|0.00|1.77|0|0|0|||||||||| +26|2023-10-06T21:17:16.2210000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|40022B8A|Ruby Carbuncle|00|77430|129071| +37|2023-10-06T21:17:16.2210000-07:00|10FF0001|Sesuga Sapisuga|00019BE2|129071|129071|6300|10000|26||99.98|92.28|0.00|-3.09|1300|0|0|01|09000497|1444|41900000|| +26|2023-10-06T21:17:16.2210000-07:00|497|Passage of Arms|18.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|129071|129071| +37|2023-10-06T21:17:16.2210000-07:00|40022472|Zeromus|00019BE1|18948741||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:16.2210000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|18FC|90216|90216|10000|10000|||99.26|99.35|0.00|3.10|10FF0001|Sesuga Sapisuga|0|129071|129071|6300|10000|||99.98|92.28|0.00|-3.09| +38|2023-10-06T21:17:16.2210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|31||99.26|99.35|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:17:16.2670000-07:00|40022472|Zeromus|00019BD6|18907199||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:16.2670000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|95B|82773|82773|7600|10000|||96.93|97.86|0.00|2.66|10FF0001|Sesuga Sapisuga|0|129071|129071|6300|10000|||99.98|92.28|0.00|-3.09| +38|2023-10-06T21:17:16.2670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|7600|10000|32||96.93|97.86|0.00|2.66|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:15.9890000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:17:16.3090000-07:00|10FF0003|Gegehi Gehi|HoT|0|F09|73814|73814|4950|10000|||90.95|92.21|0.00|1.02|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.10|96.17|0.00|2.08| +38|2023-10-06T21:17:16.3090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|47||90.95|92.21|0.00|1.02|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:17:16.3540000-07:00|10FF0001|Sesuga Sapisuga|00019BDE|129071|129071|6300|10000|26||99.98|92.28|0.00|-3.09|1303|0|0|01|0A00013B|0|41A80000|| +26|2023-10-06T21:17:16.3540000-07:00|13B|Whispering Dawn|21.00|40022B8A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +22|2023-10-06T21:17:16.3990000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750603|48990000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||98.95|87.60|0.00|3.11|44|44|0|10000|||100.00|70.00|0.00|-0.05|00019BE6|0|7| +22|2023-10-06T21:17:16.3990000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750605|3760000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6300|10000|||99.98|92.28|0.00|-3.09|44|44|0|10000|||100.00|70.00|0.00|-0.05|00019BE6|1|7| +22|2023-10-06T21:17:16.3990000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|1600|10000|||94.99|95.60|0.00|2.83|44|44|0|10000|||100.00|70.00|0.00|-0.05|00019BE6|2|7| +22|2023-10-06T21:17:16.3990000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2150|10000|||98.20|96.28|0.00|1.82|44|44|0|10000|||100.00|70.00|0.00|-0.05|00019BE6|3|7| +22|2023-10-06T21:17:16.3990000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|7600|10000|||97.47|98.11|0.00|2.72|44|44|0|10000|||100.00|70.00|0.00|-0.05|00019BE6|4|7| +22|2023-10-06T21:17:16.3990000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.26|99.37|0.00|2.73|44|44|0|10000|||100.00|70.00|0.00|-0.05|00019BE6|5|7| +22|2023-10-06T21:17:16.3990000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|272A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3823|10000|||99.81|99.78|0.00|1.19|44|44|0|10000|||100.00|70.00|0.00|-0.05|00019BE6|6|7| +24|2023-10-06T21:17:16.3990000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|12AB|81541|81541|2150|10000|||98.20|96.28|0.00|1.82|10FF0001|Sesuga Sapisuga|0|129071|129071|6300|10000|||99.98|92.28|0.00|-3.09| +38|2023-10-06T21:17:16.3990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|43||98.20|96.28|0.00|1.82|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:16.4870000-07:00|40022472|Zeromus|00019BE3|18892646||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:16.4870000-07:00|10FF0009|Zewo Negiwo|00019BDE|81177|81177|3823|10000|14||99.81|99.78|0.00|1.19|1804|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T21:17:16.4870000-07:00|13B|Whispering Dawn|21.00|40022B8A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +24|2023-10-06T21:17:16.4870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9B4|129844|129844|10000|10000|||98.95|87.60|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.20|96.28|0.00|1.82| +24|2023-10-06T21:17:16.4870000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1F29|81809|81809|1600|10000|||94.99|95.60|0.00|2.83|10FF0001|Sesuga Sapisuga|0|129071|129071|6300|10000|||99.98|92.28|0.00|-3.09| +38|2023-10-06T21:17:16.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|26||98.95|87.60|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1600|10000|44||94.99|95.60|0.00|2.83|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:16.5330000-07:00|10FF0009|Zewo Negiwo|HoT|0|129F|81177|81177|3823|10000|||99.87|99.84|0.00|1.15|40022B8A|Ruby Carbuncle|0|73956|77430|10000|10000|||96.82|95.60|0.00|1.77| +21|2023-10-06T21:17:16.5330000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4950|10000|||92.15|92.96|0.00|1.02|00019BE7|0|1| +38|2023-10-06T21:17:16.5330000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3823|10000|14||99.87|99.84|0.00|1.15|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.5760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|31||99.28|99.41|-0.02|2.04|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.5760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|7600|10000|32||97.59|98.15|0.00|2.77|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.5760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|43||98.33|96.44|0.00|1.52|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.5760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1600|10000|44||94.99|95.60|0.00|2.83|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.5760000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3823|10000|14||99.87|99.84|0.00|1.15|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.5760000-07:00|40022B8A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||96.82|95.60|0.00|1.77|0|0|0|||||||||| +24|2023-10-06T21:17:16.5760000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1390|129071|129071|6300|10000|||99.98|92.28|0.00|3.14|40022B8A|Ruby Carbuncle|0|73956|77430|10000|10000|||96.82|95.60|0.00|1.77| +38|2023-10-06T21:17:16.5760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|26||99.98|92.28|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:16.2010000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:17:16.2010000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:17:16.6220000-07:00|10FF000A|Dukaro Nezikaro|00019BDE|82773|82773|7600|10000|32||97.71|98.19|0.00|2.81|1E05|0|0|01|0A00013B|0|41A80000|| +26|2023-10-06T21:17:16.6220000-07:00|13B|Whispering Dawn|21.00|40022B8A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +24|2023-10-06T21:17:16.6220000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15D8|129071|129071|6300|10000|||99.98|92.28|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.46|96.62|0.00|1.20| +24|2023-10-06T21:17:16.6220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D43|129844|129844|10000|10000|||98.95|87.60|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.46|96.62|0.00|1.20| +24|2023-10-06T21:17:16.6220000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1527|81541|81541|2150|10000|||98.46|96.62|0.00|1.20|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.46|96.62|0.00|1.20| +24|2023-10-06T21:17:16.6220000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15D0|81809|81809|1600|10000|||94.99|95.60|0.00|2.83|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.46|96.62|0.00|1.20| +24|2023-10-06T21:17:16.6220000-07:00|10FF0003|Gegehi Gehi|HoT|798|D35|73814|73814|4950|10000|||92.80|93.37|0.00|1.02|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.46|96.62|0.00|1.20| +24|2023-10-06T21:17:16.6220000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D97|82773|82773|7600|10000|||97.71|98.19|0.00|2.81|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.46|96.62|0.00|1.20| +24|2023-10-06T21:17:16.6220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D34|90216|90216|10000|10000|||99.36|99.46|0.00|1.79|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.46|96.62|0.00|1.20| +24|2023-10-06T21:17:16.6220000-07:00|10FF0009|Zewo Negiwo|HoT|798|D74|81177|81177|3823|10000|||99.89|99.87|0.00|1.69|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2150|10000|||98.46|96.62|0.00|1.20| +37|2023-10-06T21:17:16.6220000-07:00|10FF0004|Buhojaqe Zijaqe|00019BE5|81541|81541|2150|10000|43||98.46|96.62|0.00|1.20|1C00|0|0|02|0B000798|0|41700000|||||| +26|2023-10-06T21:17:16.6220000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:17:16.6220000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:16.6220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|26||98.95|87.60|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.6220000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:16.6220000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3823|10000|14||99.89|99.87|0.00|1.69|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.6220000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:17:16.6220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|31||99.36|99.46|0.00|1.79|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.6220000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:16.6220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1600|10000|44||94.99|95.60|0.00|2.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.6220000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:16.6220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|26||99.98|92.28|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.6220000-07:00|497|Passage of Arms|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|129071|129071| +26|2023-10-06T21:17:16.6220000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:17:16.6220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|43||98.46|96.62|0.00|1.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.6220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|47||92.80|93.37|0.00|1.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.6220000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:17:16.6220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|7600|10000|32||97.71|98.19|0.00|2.81|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.6220000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +20|2023-10-06T21:17:16.6660000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|99.89|99.87|0.00|1.69| +21|2023-10-06T21:17:16.6660000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|26970000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||99.98|92.28|0.00|3.14|00019BE8|0|1| +21|2023-10-06T21:17:16.6660000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||99.98|92.28|0.00|3.14|00019BE9|0|1| +38|2023-10-06T21:17:16.6660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|26||99.98|92.28|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:16.6660000-07:00|76E|Sword Oath|23.05|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:17:16.6660000-07:00|10FF0001||||| +261|2023-10-06T21:17:16.2990000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:17:16.7120000-07:00|10FF0007|Kehabiqo Febiqo|00019BE6|111259|129844|10000|10000|0||98.95|87.60|0.00|3.11|1500|0|0|02|01000000|0|0|||||| +21|2023-10-06T21:17:16.7120000-07:00|40022B87|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1A190000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85|00019BEA|0|1| +21|2023-10-06T21:17:16.7120000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7600|10000|||97.71|98.19|0.00|2.81|00019BEB|0|1| +38|2023-10-06T21:17:16.7120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111259|129844|10000|10000|0||98.95|87.60|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.7120000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +30|2023-10-06T21:17:16.7120000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T21:17:16.7560000-07:00|10FF0001|Sesuga Sapisuga|00019BE6|128185|129071|6300|10000|0||99.98|92.28|0.00|3.14|1301|0|0|02|02000000|0|0|||||| +37|2023-10-06T21:17:16.7560000-07:00|10FF0007|Kehabiqo Febiqo|00019BDE|111259|129844|10000|10000|0||98.95|87.60|0.00|3.10|1506|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T21:17:16.7560000-07:00|13B|Whispering Dawn|21.00|40022B8A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +21|2023-10-06T21:17:16.7560000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|31FF0000|143E|340000|4|17B98000|11B|2A8000|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|111259|129844|10000|10000|||98.95|87.60|0.00|3.10|00019BEC|0|1| +261|2023-10-06T21:17:16.2990000-07:00|Add|40022BA3||||||||||||||||||||||||||| +38|2023-10-06T21:17:16.7560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128185|129071|6300|10000|0||99.98|92.28|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.7560000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +30|2023-10-06T21:17:16.7560000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T21:17:16.8000000-07:00|10FF0006|Wowobora Gogobora|00019BE6|81809|81809|1600|10000|18||94.99|95.60|0.00|2.83|1B02|0|0|01|03000000|0|0|| +38|2023-10-06T21:17:16.8000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1600|10000|18||94.99|95.60|0.00|2.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.8000000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +37|2023-10-06T21:17:16.8450000-07:00|10FF0004|Buhojaqe Zijaqe|00019BE6|81541|81541|2150|10000|15||98.52|96.67|0.00|1.14|1C03|0|0|01|03000000|0|0|| +38|2023-10-06T21:17:16.8450000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|15||98.52|96.67|0.00|1.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.8450000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +37|2023-10-06T21:17:16.8900000-07:00|10FF000A|Dukaro Nezikaro|00019BE6|82773|82773|7600|10000|2||97.80|98.22|0.00|2.84|1E04|0|0|01|04000000|0|0|| +37|2023-10-06T21:17:16.8900000-07:00|10FF0003|Gegehi Gehi|00019BDE|73814|73814|4950|10000|47||94.02|94.13|0.00|1.01|2307|0|0|01|0900013B|0|41A80000|| +26|2023-10-06T21:17:16.8900000-07:00|13B|Whispering Dawn|21.00|40022B8A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +20|2023-10-06T21:17:16.8900000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|98.82|96.91|-0.02|0.94| +38|2023-10-06T21:17:16.8900000-07:00|40022B8A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||96.82|95.60|0.00|1.86|0|0|0|||||||||| +30|2023-10-06T21:17:16.8900000-07:00|77B|Summon Order|0.00|40022B8A|Ruby Carbuncle|40022B8A|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T21:17:16.8900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|7600|10000|2||97.80|98.22|0.00|2.84|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.8900000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|82773|129844| +261|2023-10-06T21:17:16.4950000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:16.9350000-07:00|10FF0008|Kokosaze Lulusaze|00019BE6|90216|90216|10000|10000|4||99.50|99.54|0.00|1.38|1F05|0|0|01|02000000|0|0|| +21|2023-10-06T21:17:16.9350000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|3BCB0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1600|10000|||94.99|95.60|0.00|2.83|00019BED|0|1| +21|2023-10-06T21:17:16.9350000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|556003|503F0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4950|10000|||94.02|94.13|0.00|1.01|00019BEE|0|1| +38|2023-10-06T21:17:16.9350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|4||99.50|99.54|0.00|1.38|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.9350000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T21:17:16.9350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|47||94.02|94.13|0.00|1.01|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.9350000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:17:16.4950000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T21:17:16.9790000-07:00|10FF0009|Zewo Negiwo|00019BE6|71151|81177|3823|10000|0||99.91|99.90|0.00|3.09|1806|0|0|01|02000000|0|0|| +21|2023-10-06T21:17:16.9790000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E4D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18892646|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.55|99.58|0.00|1.20|00019BEF|0|1| +38|2023-10-06T21:17:16.9790000-07:00|10FF0009|Zewo Negiwo|005A5A18|71151|81177|3823|10000|0||99.91|99.90|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:16.9790000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0009|Zewo Negiwo|00|81177|129844| +37|2023-10-06T21:17:17.0670000-07:00|40022472|Zeromus|00019BE7|18892645||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:17.2010000-07:00|40022472|Zeromus|00019BE9|18890888||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:16.8090000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:17:17.2450000-07:00|40022472|Zeromus|00019BEB|18889932||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:17.2900000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|110C0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|18889932|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|7600|10000|||97.80|98.22|0.00|2.84|00019BF0|0|1| +21|2023-10-06T21:17:17.3350000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18889932|40478540|10000|10000|||100.00|80.10|0.00|0.00|18889932|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019BF1|0|1| +38|2023-10-06T21:17:17.3350000-07:00|40022B87|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.49|85.01|0.00|-2.85|0|0|0||||||| +26|2023-10-06T21:17:17.3350000-07:00|30|Well Fed|1428.92|10FF0008|Kokosaze Lulusaze|40022B87|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:17:17.3350000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022B87|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:17:17.3350000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13CE0F|A748000|0|0|0|0|0|0|0|0|0|0|128185|129071|6300|10000|||99.98|92.28|0.00|3.14|128185|129071|6300|10000|||99.98|92.28|0.00|3.14|00019BF2|0|1| +38|2023-10-06T21:17:17.3350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128185|129071|6300|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:17.3350000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:17:17.3350000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:17:17.3350000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:17:17.3350000-07:00|10FF0001||||| +39|2023-10-06T21:17:17.3790000-07:00|40022B87|Automaton Queen|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85| +21|2023-10-06T21:17:17.3790000-07:00|10FF0007|Kehabiqo Febiqo|1D6B|Rampart|10FF0007|Kehabiqo Febiqo|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|111259|129844|10000|10000|||99.15|87.62|0.00|3.07|111259|129844|10000|10000|||99.15|87.62|0.00|3.07|00019BF3|0|1| +37|2023-10-06T21:17:17.4690000-07:00|40022472|Zeromus|00019BEA|18883251||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:17.5580000-07:00|40022472|Zeromus|00019BED|18867944||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:17.6020000-07:00|10FF0009|Zewo Negiwo|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05| +21|2023-10-06T21:17:17.6460000-07:00|40022B8A|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|4|14790000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|71151|81177|3823|10000|||99.93|99.93|0.00|-2.05|73956|77430|10000|10000|||96.82|95.60|0.00|2.09|00019BF4|0|1| +37|2023-10-06T21:17:17.6920000-07:00|40022472|Zeromus|00019BEE|18847401||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:17.6920000-07:00|40022472|Zeromus|00019BF0|18843037||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:17.6920000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|154003|3DB80000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|18867944|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1300|10000|||95.72|96.10|0.00|1.10|00019BF5|0|1| +38|2023-10-06T21:17:17.6920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1300|10000|18||95.72|96.10|0.00|1.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:17.6920000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:17:17.3410000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:17:17.7350000-07:00|40022472|Zeromus|00019BEF|18839376||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:17.7350000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.63|99.63|0.00|0.97| +24|2023-10-06T21:17:17.7810000-07:00|40022472|Zeromus|DoT|0|1533|18843037|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|2150|10000|||99.69|97.61|0.00|3.13| +38|2023-10-06T21:17:17.7810000-07:00|40022472|Zeromus|005A5A00|18833949|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:17:17.8240000-07:00|40022B8A|Ruby Carbuncle|73956|77430|10000|10000|||96.82|95.60|0.00|1.40| +21|2023-10-06T21:17:17.8240000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4D270000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18833949|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2150|10000|||99.69|97.61|0.00|3.13|00019BF6|0|1| +39|2023-10-06T21:17:17.8700000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||99.98|92.28|0.00|3.14| +36|2023-10-06T21:17:17.8700000-07:00|210C|3| +261|2023-10-06T21:17:17.5290000-07:00|Change|10FF0001||| +261|2023-10-06T21:17:17.5290000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:17:17.9140000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1950|10000|||99.69|97.61|0.00|3.13| +37|2023-10-06T21:17:17.9590000-07:00|40022472|Zeromus|00019BE8|18824070||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:17.9590000-07:00|10FF0001|Sesuga Sapisuga|00019BE8|129071|129071|6900|10000|0||99.98|92.28|0.00|3.14|1300|0|0|0| +37|2023-10-06T21:17:18.0040000-07:00|10FF0007|Kehabiqo Febiqo|00019BF3|111259|129844|10000|10000|0||99.34|87.67|0.00|-2.98|1500|0|0|01|090004A7|0|41A00000|| +26|2023-10-06T21:17:18.0040000-07:00|4A7|Rampart|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:17:17.6410000-07:00|Change|10FF0006||||||||||| +22|2023-10-06T21:17:18.0040000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|7F6F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|111259|129844|10000|10000|||99.34|87.67|0.00|-2.98|44|44|0|10000|||100.00|100.00|0.00|0.00|00019BF7|0|8| +22|2023-10-06T21:17:18.0040000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750205|47040000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6500|10000|||99.98|92.28|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00019BF7|1|8| +22|2023-10-06T21:17:18.0040000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|11140000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1750|10000|||99.69|97.61|0.00|3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|00019BF7|2|8| +22|2023-10-06T21:17:18.0040000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|BB00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|1300|10000|||97.71|97.44|-0.01|2.97|44|44|0|10000|||100.00|100.00|0.00|0.00|00019BF7|3|8| +22|2023-10-06T21:17:18.0040000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750603|3F820000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|7600|10000|||97.80|98.22|0.00|3.02|44|44|0|10000|||100.00|100.00|0.00|0.00|00019BF7|4|8| +22|2023-10-06T21:17:18.0040000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|3DC00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.63|99.63|0.00|0.97|44|44|0|10000|||100.00|100.00|0.00|0.00|00019BF7|5|8| +22|2023-10-06T21:17:18.0040000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|444C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|44|44|0|10000|||100.00|100.00|0.00|0.00|00019BF7|6|8| +22|2023-10-06T21:17:18.0040000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4650|10000|||95.41|98.53|-0.02|0.50|44|44|0|10000|||100.00|100.00|0.00|0.00|00019BF7|7|8| +261|2023-10-06T21:17:17.6410000-07:00|Change|4002248F||||||||| +39|2023-10-06T21:17:18.0040000-07:00|10FF0007|Kehabiqo Febiqo|112557|129844|10000|10000|||99.34|87.67|0.00|-2.98| +39|2023-10-06T21:17:18.0040000-07:00|10FF0006|Wowobora Gogobora|81809|81809|1500|10000|||97.71|97.44|-0.01|2.97| +21|2023-10-06T21:17:18.0040000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18833949|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1300|10000|||97.71|97.44|-0.01|2.97|00019BF8|0|1| +22|2023-10-06T21:17:18.0920000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|100A0000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|00019BF9|0|8| +22|2023-10-06T21:17:18.0920000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|10070000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.63|99.63|0.00|0.97|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|00019BF9|1|8| +22|2023-10-06T21:17:18.0920000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|10880000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81541|81541|1950|10000|||99.69|97.61|0.00|3.13|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|00019BF9|2|8| +22|2023-10-06T21:17:18.0920000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|4|10620000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|73814|73814|4650|10000|||96.53|99.26|0.00|0.68|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|00019BF9|3|8| +22|2023-10-06T21:17:18.0920000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|10C90000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|82773|82773|7600|10000|||97.80|98.22|0.00|3.02|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|00019BF9|4|8| +22|2023-10-06T21:17:18.0920000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|4|FEE0000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81809|81809|1500|10000|||97.71|97.44|0.00|2.97|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|00019BF9|5|8| +22|2023-10-06T21:17:18.0920000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|10A40000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129071|129071|6900|10000|||99.98|92.28|0.00|3.14|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|00019BF9|6|8| +22|2023-10-06T21:17:18.0920000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|10520000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|112557|129844|10000|10000|||99.42|87.95|0.00|-1.63|71962|81177|4044|10000|||99.93|99.93|0.00|-2.05|00019BF9|7|8| +261|2023-10-06T21:17:17.8770000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:17:18.2700000-07:00|40022472|Zeromus|00019BEC|18811271||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:18.2700000-07:00|10FF0007|Kehabiqo Febiqo|00019BEC|118630||||||99.44|88.04|0.00|-1.17| +21|2023-10-06T21:17:18.2700000-07:00|40022B87|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|730003|490B0000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|18824070|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85|00019BFA|0|1| +37|2023-10-06T21:17:18.3150000-07:00|10FF0007|Kehabiqo Febiqo|00019BF7|86007||||||99.44|88.04|0.00|-1.17| +21|2023-10-06T21:17:18.3150000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18824070|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1950|10000|||99.69|97.61|0.00|3.13|00019BFB|0|1| +261|2023-10-06T21:17:17.9880000-07:00|Change|40022B8F||||| +261|2023-10-06T21:17:17.9880000-07:00|Change|40022B8F||||| +38|2023-10-06T21:17:18.3590000-07:00|40022BA5||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:18.3590000-07:00|10FF0001|Sesuga Sapisuga|00019BF7|110891||||||99.98|92.28|0.00|3.14| +21|2023-10-06T21:17:18.3590000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18811271|40478540|10000|10000|||100.00|80.10|0.00|0.00|86007|129844|10000|10000|||99.46|88.11|0.00|-0.83|00019BFC|0|1| +38|2023-10-06T21:17:18.3590000-07:00|40022BA5||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:18.4040000-07:00|10FF0004|Buhojaqe Zijaqe|00019BF7|77169|81541|1950|10000|0||99.69|97.61|0.00|3.13|1C02|0|0|01|04000000|0|0|| +261|2023-10-06T21:17:18.1020000-07:00|Add|40022BA5||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:18.4040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77169|81541|1950|10000|0||99.69|97.61|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:18.4040000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:17:18.4470000-07:00|10FF0006|Wowobora Gogobora|00019BF7|78817|81809|1500|10000|0||97.71|97.44|0.00|2.97|1B03|0|0|01|07000000|0|0|| +37|2023-10-06T21:17:18.4470000-07:00|10FF0009|Zewo Negiwo|00019BF4|77203||||||99.93|99.93|0.00|-2.05| +21|2023-10-06T21:17:18.4480000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44726003|73D90000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|18811271|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.63|99.55|0.00|1.94|00019BFD|0|1| +38|2023-10-06T21:17:18.4480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|78817|81809|1500|10000|0||97.71|97.44|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:18.4480000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +03|2023-10-06T21:17:18.1020000-07:00|40022BA5|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||98.21|95.92|0.00|-0.18| +261|2023-10-06T21:17:18.1020000-07:00|Change|40022BA5||| +37|2023-10-06T21:17:18.4920000-07:00|10FF000A|Dukaro Nezikaro|00019BF7|66515|82773|7600|10000|0||97.80|98.23|-0.02|2.84|1E04|0|0|01|03000000|0|0|| +38|2023-10-06T21:17:18.4920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|66515|82773|7600|10000|0||97.80|98.23|-0.02|2.84|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:18.4920000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:17:18.5370000-07:00|10FF0008|Kokosaze Lulusaze|00019BF7|74408|90216|10000|10000|0||99.62|99.35|0.00|3.12|1F05|0|0|01|07000000|0|0|| +37|2023-10-06T21:17:18.5370000-07:00|40022472|Zeromus|00019BF5|18795471||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:18.5370000-07:00|40022472|Zeromus|00019BF8|18795401||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:18.5370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|74408|90216|10000|10000|0||99.62|99.35|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:18.5370000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +261|2023-10-06T21:17:18.1980000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:17:18.5810000-07:00|10FF0009|Zewo Negiwo|00019BF7|59719||||||99.93|99.93|0.00|-2.05| +38|2023-10-06T21:17:18.5810000-07:00|40022472|Zeromus|005A5A00|18795401|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:17:18.5810000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:17:18.6260000-07:00|10FF0003|Gegehi Gehi|00019BF7|73814|73814|4650|10000|18||98.14|101.44|0.00|1.49|2307|0|0|01|03000000|0|0|| +37|2023-10-06T21:17:18.6260000-07:00|40022472|Zeromus|00019BF6|18775650||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:18.6260000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|18||98.14|101.44|0.00|1.49|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:18.6260000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|1D960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18795401|40478540|10000|10000|||100.00|80.10|0.00|0.00|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|0|9| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|180E0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|1|9| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|4|175B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4650|10000|||98.14|101.44|0.00|1.49|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|2|9| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|4|17260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|78817|81809|1500|10000|||97.80|97.55|0.00|2.97|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|3|9| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|17B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|74408|90216|10000|10000|||99.59|98.81|0.00|3.14|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|4|9| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|27000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77169|81541|1950|10000|||99.69|97.61|0.00|3.13|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|5|9| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|174F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|66515|82773|7600|10000|||97.79|98.27|0.00|2.07|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|6|9| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|4|17900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|110891|129071|6900|10000|||99.98|92.28|0.00|3.14|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|7|9| +22|2023-10-06T21:17:18.6700000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|172E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|86007|129844|10000|10000|||99.50|88.26|0.00|-0.04|77203|81177|3044|10000|||99.93|99.93|0.00|-2.05|00019BFE|8|9| +21|2023-10-06T21:17:18.7150000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18775650|40478540|10000|10000|||100.00|80.10|0.00|0.00|18775650|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019BFF|0|1| +21|2023-10-06T21:17:18.7150000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|293B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|86007|129844|10000|10000|||99.50|88.27|-0.02|-0.04|18775650|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C00|0|1| +37|2023-10-06T21:17:18.8480000-07:00|40022472|Zeromus|00019BFB|18775498||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:18.8930000-07:00|40022472|Zeromus|00019BFC|18772728||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:18.8930000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|7B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18775650|40478540|10000|10000|||100.00|80.10|0.00|0.00|66515|82773|7600|10000|||97.76|98.38|0.00|1.17|00019C01|0|1| +37|2023-10-06T21:17:18.9370000-07:00|10FF0009|Zewo Negiwo|00019BF9|63825|81177|3044|10000|0||99.93|99.93|0.00|-2.05|1800|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:17:18.9370000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:17:18.9370000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18772728|40478540|10000|10000|||100.00|80.10|0.00|0.00|110891|129071|6900|10000|||99.98|92.28|0.00|3.14|00019C02|0|1| +261|2023-10-06T21:17:18.4800000-07:00|Change|10FF0001||| +261|2023-10-06T21:17:18.4800000-07:00|Change|10FF0004||||||||||| +31|2023-10-06T21:17:18.9370000-07:00|10FF0001||||| +39|2023-10-06T21:17:18.9810000-07:00|10FF0003|Gegehi Gehi|73814|73814|4850|10000|||99.64|102.01|0.00|2.69| +39|2023-10-06T21:17:18.9810000-07:00|10FF000A|Dukaro Nezikaro|67342|82773|7800|10000|||97.76|98.42|0.00|0.78| +261|2023-10-06T21:17:18.5780000-07:00|Change|10FF000A||||||||||| +37|2023-10-06T21:17:19.0710000-07:00|10FF0008|Kokosaze Lulusaze|00019BF9|78511|90216|10000|10000|0||99.53|97.77|-0.01|-3.11|1F01|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:17:19.0710000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +21|2023-10-06T21:17:19.1610000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|29EE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|18772728|40478540|10000|10000|||100.00|80.10|0.00|0.00|110891|129071|6900|10000|||99.98|92.28|0.00|3.14|00019C03|0|1| +21|2023-10-06T21:17:19.1610000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|724003|3D9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18772728|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||99.93|102.13|0.00|2.93|00019C04|0|1| +38|2023-10-06T21:17:19.1610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110891|129071|6900|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:19.1610000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:17:19.2050000-07:00|10FF0004|Buhojaqe Zijaqe|00019BF9|81401|81541|1950|10000|0||99.73|97.63|0.00|2.10|1C02|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:17:19.2050000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +24|2023-10-06T21:17:19.2050000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|22D1|78511|90216|10000|10000|||99.53|97.76|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|77169|81541|1950|10000|||99.73|97.63|0.00|2.10| +21|2023-10-06T21:17:19.2050000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|154D0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|18772728|40478540|10000|10000|||100.00|80.10|0.00|0.00|86007|129844|10000|10000|||99.50|88.27|0.00|0.33|00019C05|0|1| +38|2023-10-06T21:17:19.2050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|87424|90216|10000|10000|0||99.53|97.76|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:19.2500000-07:00|40022472|Zeromus|00019BFD|18743071||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:19.2500000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|12FF|67342|82773|7800|10000|||97.76|98.53|-0.01|-0.11|10FF0004|Buhojaqe Zijaqe|0|77169|81541|1950|10000|||99.73|97.63|0.00|2.10| +38|2023-10-06T21:17:19.2500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|72205|82773|7800|10000|0||97.76|98.53|-0.01|-0.11|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:19.2950000-07:00|10FF0003|Gegehi Gehi|HoT|0|1380|73814|73814|4850|10000|||99.93|102.13|0.00|3.14|40022B8A|Ruby Carbuncle|0|73956|77430|10000|10000|||96.82|95.60|0.00|1.34| +38|2023-10-06T21:17:19.2950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4850|10000|18||99.93|102.13|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:19.3380000-07:00|40022472|Zeromus|00019BFE|18735497||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:19.3380000-07:00|10FF0003|Gegehi Gehi|00019BF9|73814|73814|4850|10000|18||99.93|102.13|0.00|3.14|2303|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:17:19.3380000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +20|2023-10-06T21:17:19.3380000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.74|97.63|-0.02|1.97| +22|2023-10-06T21:17:19.3840000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|80190000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|86007|129844|10000|10000|||99.50|88.27|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C06|0|8| +22|2023-10-06T21:17:19.3840000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|5B8A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|110891|129071|6900|10000|||99.98|92.28|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C06|1|8| +22|2023-10-06T21:17:19.3840000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|414B0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C06|2|8| +22|2023-10-06T21:17:19.3840000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|4A190000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|87424|90216|10000|10000|||99.53|97.76|0.00|-3.11|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C06|3|8| +22|2023-10-06T21:17:19.3840000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|45E10000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|78817|81809|1500|10000|||99.52|98.04|0.00|0.76|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C06|4|8| +22|2023-10-06T21:17:19.3840000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|48CD0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|72205|82773|7800|10000|||97.76|98.53|0.00|-0.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C06|5|8| +22|2023-10-06T21:17:19.3840000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|44520000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|63825|81177|3044|10000|||99.93|99.93|0.00|-2.05|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C06|6|8| +22|2023-10-06T21:17:19.3840000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|21360000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4850|10000|||99.93|102.13|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C06|7|8| +24|2023-10-06T21:17:19.3840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D02|86007|129844|10000|10000|||99.50|88.27|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +24|2023-10-06T21:17:19.3840000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|14F7|110891|129071|6900|10000|||99.98|92.28|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +24|2023-10-06T21:17:19.3840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|159F|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +24|2023-10-06T21:17:19.3840000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D3C|87424|90216|10000|10000|||99.53|97.76|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +24|2023-10-06T21:17:19.3840000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D20|78817|81809|1500|10000|||99.52|98.04|0.00|0.76|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +24|2023-10-06T21:17:19.3840000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|1505|72205|82773|7800|10000|||97.76|98.53|0.00|-0.12|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +24|2023-10-06T21:17:19.3840000-07:00|10FF0009|Zewo Negiwo|HoT|798|D18|63825|81177|3044|10000|||99.93|99.93|0.00|-2.05|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +24|2023-10-06T21:17:19.3840000-07:00|10FF0003|Gegehi Gehi|HoT|798|CEF|73814|73814|4850|10000|||99.93|102.13|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +24|2023-10-06T21:17:19.3840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1CFE|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97|10FF0004|Buhojaqe Zijaqe|0|81401|81541|1950|10000|||99.74|97.63|-0.02|1.97| +20|2023-10-06T21:17:19.3840000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.93|99.93|0.00|-2.05| +34|2023-10-06T21:17:19.3840000-07:00|40022BA5|Carbuncle|40022BA5|Carbuncle|01| +38|2023-10-06T21:17:19.3840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89337|129844|10000|10000|0||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.3840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:19.3840000-07:00|10FF0009|Zewo Negiwo|005A5A18|67177|81177|3044|10000|0||99.93|99.93|0.00|-2.05|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.3840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:17:19.3840000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.53|97.76|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.3840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:19.3840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1500|10000|0||99.52|98.04|0.00|0.76|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.3840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:19.3840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116258|129071|6900|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.3840000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:17:19.3840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1950|10000|0||99.74|97.63|-0.02|1.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.3840000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:19.3840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4850|10000|18||99.93|102.13|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.3840000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:17:19.3840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77586|82773|7800|10000|0||97.76|98.53|0.00|-0.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.3840000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:17:19.0430000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:17:19.0430000-07:00|Change|40022BA5||||||||| +37|2023-10-06T21:17:19.4280000-07:00|40022472|Zeromus|00019C01|18733526||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:19.4280000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72205|82773|7800|10000|||97.76|98.53|0.00|-0.12|72205|82773|7800|10000|||97.76|98.53|0.00|-0.12|00019C07|0|1| +38|2023-10-06T21:17:19.4280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77586|82773|7800|10000|0||97.76|98.53|0.00|-0.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.4280000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:17:19.4720000-07:00|10FF0009|Zewo Negiwo|00019BFE|73335|81177|3544|10000|0||99.93|99.93|0.00|-2.22|1801|0|0|0| +37|2023-10-06T21:17:19.4720000-07:00|10FF000A|Dukaro Nezikaro|00019BF9|81883|82773|7800|10000|0||97.76|98.53|0.00|-0.12|1E04|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:17:19.4720000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:17:19.4720000-07:00|40022472|Zeromus|00019C02|18731281||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:19.4720000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|17F8|89337|129844|10000|10000|||99.50|88.27|0.00|3.08|10FF0007|Kehabiqo Febiqo|0|89337|129844|10000|10000|||99.50|88.27|0.00|3.08| +24|2023-10-06T21:17:19.4720000-07:00|10FF0006|Wowobora Gogobora|HoT|0|18B5|81809|81809|1500|10000|||99.59|98.06|0.00|0.41|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1950|10000|||99.75|97.64|0.00|2.26| +38|2023-10-06T21:17:19.4720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95473|129844|10000|10000|0||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:19.4720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1500|10000|0||99.59|98.06|0.00|0.41|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:19.5160000-07:00|10FF0007|Kehabiqo Febiqo|00019C00|84918||||||99.50|88.27|0.00|3.08| +24|2023-10-06T21:17:19.5160000-07:00|10FF0009|Zewo Negiwo|HoT|0|1CBE|67177|81177|3044|10000|||99.93|99.93|0.00|-2.22|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1950|10000|||99.75|97.64|0.00|2.26| +38|2023-10-06T21:17:19.5160000-07:00|10FF0009|Zewo Negiwo|005A5A18|80693|81177|3544|10000|0||99.93|99.93|0.00|-2.22|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:19.5610000-07:00|40022472|Zeromus|00019BFA|18712582||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:19.5610000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|303C|116258|129071|6900|10000|||99.98|92.28|0.00|3.14|10FF0001|Sesuga Sapisuga|0|116258|129071|6900|10000|||99.98|92.28|0.00|3.14| +38|2023-10-06T21:17:19.5610000-07:00|40022B87|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.49|85.01|0.00|-2.85|0|0|0|||| +30|2023-10-06T21:17:19.5610000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022B87|Automaton Queen|01|85668|40478540| +38|2023-10-06T21:17:19.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128606|129071|6900|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:19.1640000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:17:19.6060000-07:00|10FF0006|Wowobora Gogobora|00019BF9|81809|81809|1500|10000|0||99.55|98.25|-0.02|0.34|1B05|0|0|01|96|0|41700000|| +26|2023-10-06T21:17:19.6060000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +21|2023-10-06T21:17:19.6490000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18712582|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.53|97.76|0.00|-3.11|00019C08|0|1| +37|2023-10-06T21:17:19.6940000-07:00|10FF0007|Kehabiqo Febiqo|00019C06|52125||||||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:19.7390000-07:00|40022472|Zeromus|00019C05|18707129||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:19.7390000-07:00|10FF0001|Sesuga Sapisuga|00019BF9|129071|129071|6900|10000|0||99.98|92.28|0.00|3.14|1306|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:17:19.7390000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:17:19.7390000-07:00|10FF0001|Sesuga Sapisuga|00019C06|105637||||||99.98|92.28|0.00|3.14| +37|2023-10-06T21:17:19.7830000-07:00|10FF0004|Buhojaqe Zijaqe|00019C06|64826||||||99.77|97.64|0.00|2.82| +37|2023-10-06T21:17:19.8280000-07:00|10FF0008|Kokosaze Lulusaze|00019C06|71247||||||99.53|97.76|0.00|-3.11| +21|2023-10-06T21:17:19.8280000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|980F|A788000|0|0|0|0|0|0|0|0|0|0|52125|129844|10000|10000|||99.50|88.27|0.00|3.08|52125|129844|10000|10000|||99.50|88.27|0.00|3.08|00019C09|0|1| +37|2023-10-06T21:17:19.8720000-07:00|10FF0008|Kokosaze Lulusaze|00019BFE|77312||||||99.53|97.76|0.00|-3.11| +37|2023-10-06T21:17:19.8720000-07:00|10FF0007|Kehabiqo Febiqo|00019BF9|56303|129844|10000|10000|0||99.50|88.27|0.00|3.08|1507|0|0|01|0A000096|0|41700000|| +26|2023-10-06T21:17:19.8720000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:17:19.8720000-07:00|10FF0006|Wowobora Gogobora|00019C06|63920||||||99.46|98.63|0.00|0.28| +261|2023-10-06T21:17:19.4560000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:17:19.9170000-07:00|10FF000A|Dukaro Nezikaro|00019C06|63246||||||97.76|98.53|0.00|-0.12| +21|2023-10-06T21:17:19.9170000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81883|82773|7800|10000|||97.76|98.53|0.00|-0.12|81883|82773|7800|10000|||97.76|98.53|0.00|-0.12|00019C0A|0|1| +38|2023-10-06T21:17:19.9170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|63246|82773|7800|10000|0||97.76|98.53|0.00|-0.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:19.9170000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +261|2023-10-06T21:17:19.5520000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:19.9620000-07:00|10FF0009|Zewo Negiwo|00019C06|63203||||||99.93|99.93|0.00|3.14| +37|2023-10-06T21:17:20.0060000-07:00|10FF0004|Buhojaqe Zijaqe|00019BFE|74810||||||99.78|97.64|0.00|3.13| +37|2023-10-06T21:17:20.0060000-07:00|10FF0003|Gegehi Gehi|00019C06|65312|73814|4850|10000|0||99.97|102.27|0.00|1.12|2307|0|0|01|08000000|0|0|| +21|2023-10-06T21:17:20.0060000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18707129|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||99.97|102.27|0.00|1.12|00019C0B|0|1| +38|2023-10-06T21:17:20.0060000-07:00|10FF0003|Gegehi Gehi|005A5A23|65312|73814|4850|10000|0||99.97|102.27|0.00|1.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:20.0060000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +21|2023-10-06T21:17:20.0950000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18707129|40478540|10000|10000|||100.00|80.10|0.00|0.00|18707129|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C0C|0|1| +37|2023-10-06T21:17:20.1400000-07:00|10FF000A|Dukaro Nezikaro|00019BFE|69213||||||97.76|98.53|0.00|-0.12| +20|2023-10-06T21:17:20.1410000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|99.98|102.29|0.00|0.91| +21|2023-10-06T21:17:20.1850000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|152003|53C50000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|18707129|40478540|10000|10000|||100.00|80.10|0.00|0.00|63920|81809|1500|10000|||99.38|98.95|0.00|0.23|00019C0D|0|1| +37|2023-10-06T21:17:20.2730000-07:00|10FF0001|Sesuga Sapisuga|00019BFE|111669||||||99.98|92.28|0.00|3.14| +38|2023-10-06T21:17:20.2730000-07:00|40022B87|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.49|85.01|0.00|-2.85|0|0|0||||||| +26|2023-10-06T21:17:20.2730000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022B87|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:17:20.2730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33B90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18707129|40478540|10000|10000|||100.00|80.10|0.00|0.00|74810|81541|1950|10000|||99.78|97.64|0.00|3.13|00019C0E|0|1| +37|2023-10-06T21:17:20.3180000-07:00|40022472|Zeromus|00019C04|18691356||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:20.3180000-07:00|40022B87|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|732003|86AB0000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|18707129|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85|00019C0F|0|1| +21|2023-10-06T21:17:20.3180000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|25940000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|18707129|40478540|10000|10000|||100.00|80.10|0.00|0.00|63203|81177|3544|10000|||99.93|99.93|0.00|3.14|00019C10|0|1| +39|2023-10-06T21:17:20.3630000-07:00|40022B87|Automaton Queen|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85| +37|2023-10-06T21:17:20.4070000-07:00|10FF0007|Kehabiqo Febiqo|00019C09|56303|129844|10000|10000|7||99.50|88.27|0.00|3.08|1500|0|0|03|0B000A76|0190|41000000|||||||||| +26|2023-10-06T21:17:20.4070000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T21:17:20.4070000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:17:20.4070000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:17:20.4070000-07:00|10FF0007|Kehabiqo Febiqo|00019BFE|62237||||||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:20.4070000-07:00|40022472|Zeromus|00019C08|18689018||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:20.4070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|62237|129844|10000|10000|7||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:20.4510000-07:00|40022472|Zeromus|00019C03|18678284||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:20.4510000-07:00|10FF0001|Sesuga Sapisuga|00019C03|111669|129071|7300|10000|0||99.98|92.28|0.00|3.14|1300|0|0|0| +21|2023-10-06T21:17:20.4510000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69213|82773|7800|10000|||97.76|98.53|0.00|-0.12|69213|82773|7800|10000|||97.76|98.53|0.00|-0.12|00019C11|0|1| +38|2023-10-06T21:17:20.4510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69213|82773|7800|10000|0||97.76|98.53|0.00|-0.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:20.4510000-07:00|1F0|Mudra|4.98|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +261|2023-10-06T21:17:20.0950000-07:00|Change|10FF0001||| +37|2023-10-06T21:17:20.5400000-07:00|40022472|Zeromus|00019C0B|18678283||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:20.1920000-07:00|Change|10FF0003||||||||||||||||||| +39|2023-10-06T21:17:20.6280000-07:00|10FF0009|Zewo Negiwo|64014|81177|3365|10000|||99.93|99.93|0.00|3.14| +39|2023-10-06T21:17:20.7170000-07:00|10FF0008|Kokosaze Lulusaze|78214|90216|10000|10000|||99.56|98.67|0.00|-0.33| +22|2023-10-06T21:17:20.7620000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750303|42B40000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|62237|129844|10000|10000|||99.50|88.27|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C12|0|8| +22|2023-10-06T21:17:20.7620000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|5E4F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|111669|129071|7300|10000|||99.98|92.28|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C12|1|8| +22|2023-10-06T21:17:20.7620000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|423E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|74810|81541|1550|10000|||99.78|97.64|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C12|2|8| +22|2023-10-06T21:17:20.7620000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|492A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|69213|82773|7800|10000|||97.76|98.53|0.00|-0.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C12|3|8| +22|2023-10-06T21:17:20.7620000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|4BAF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|78214|90216|10000|10000|||99.56|98.71|-0.01|-0.01|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C12|4|8| +22|2023-10-06T21:17:20.7620000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|46BA0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|63920|81809|1500|10000|||99.38|98.95|0.00|3.11|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C12|5|8| +22|2023-10-06T21:17:20.7620000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|46A90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|64014|81177|3365|10000|||99.93|99.93|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C12|6|8| +22|2023-10-06T21:17:20.7620000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|515A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|65312|73814|4850|10000|||99.99|102.34|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C12|7|8| +24|2023-10-06T21:17:20.7620000-07:00|40022472|Zeromus|DoT|0|16E7|18678283|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|74810|81541|1550|10000|||99.78|97.64|0.00|3.13| +38|2023-10-06T21:17:20.7620000-07:00|40022472|Zeromus|005A5A00|18672420|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:17:20.8060000-07:00|40022B8A|Ruby Carbuncle|73956|77430|10000|10000|||96.82|95.60|0.00|2.94| +21|2023-10-06T21:17:20.8060000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63920|81809|1500|10000|||99.38|98.95|0.00|3.11|63920|81809|1500|10000|||99.38|98.95|0.00|3.11|00019C13|0|1| +21|2023-10-06T21:17:20.8510000-07:00|40022B8A|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14E80000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|62237|129844|10000|10000|||99.50|88.27|0.00|3.08|73956|77430|10000|10000|||96.82|95.60|0.00|2.94|00019C14|0|1| +36|2023-10-06T21:17:20.8510000-07:00|21E8|3| +39|2023-10-06T21:17:20.8950000-07:00|10FF0001|Sesuga Sapisuga|112959|129071|7500|10000|||99.98|92.28|0.00|3.14| +39|2023-10-06T21:17:20.8950000-07:00|10FF0004|Buhojaqe Zijaqe|75625|81541|1750|10000|||99.78|97.64|0.00|3.13| +261|2023-10-06T21:17:20.4730000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:17:20.9400000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|308D0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|18672420|40478540|10000|10000|||100.00|80.10|0.00|0.00|78214|90216|10000|10000|||99.57|98.71|0.00|0.03|00019C15|0|1| +21|2023-10-06T21:17:20.9400000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|654003|1FDF0000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|18672420|40478540|10000|10000|||100.00|80.10|0.00|0.00|69213|82773|7800|10000|||97.76|98.53|0.00|-0.12|00019C16|0|1| +38|2023-10-06T21:17:20.9400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69213|82773|7800|10000|0||97.76|98.53|0.00|-0.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:20.9400000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +26|2023-10-06T21:17:20.9400000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:17:20.9850000-07:00|40022472|Zeromus|00019C0D|18650975||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:20.9850000-07:00|10FF0007|Kehabiqo Febiqo|63535|129844|10000|10000|||99.50|88.27|0.00|3.08| +39|2023-10-06T21:17:20.9850000-07:00|10FF0006|Wowobora Gogobora|64738|81809|1700|10000|||99.38|98.95|0.00|3.11| +261|2023-10-06T21:17:20.5710000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:17:20.5710000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:17:21.0740000-07:00|10FF0007|Kehabiqo Febiqo|00019C12|46459|129844|10000|10000|0||99.50|88.27|0.00|3.08|1500|0|0|01|0D000000|0|0|| +37|2023-10-06T21:17:21.0740000-07:00|40022472|Zeromus|00019C0E|18637734||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:21.0740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|3BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18672420|40478540|10000|10000|||100.00|80.10|0.00|0.00|69213|82773|7800|10000|||97.76|98.53|0.00|3.02|00019C17|0|1| +38|2023-10-06T21:17:21.0740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|46459|129844|10000|10000|0||99.50|88.27|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:21.0740000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:17:21.1180000-07:00|10FF0001|Sesuga Sapisuga|00019C12|88816||||||99.98|92.28|0.00|3.14| +37|2023-10-06T21:17:21.1630000-07:00|10FF0004|Buhojaqe Zijaqe|00019C12|58667||||||99.78|97.64|0.00|3.13| +21|2023-10-06T21:17:21.1630000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18637734|40478540|10000|10000|||100.00|80.10|0.00|0.00|64738|81809|1700|10000|||99.38|98.95|0.00|3.11|00019C18|0|1| +37|2023-10-06T21:17:21.2070000-07:00|10FF000A|Dukaro Nezikaro|00019C12|50483|82773|7800|10000|0||97.78|98.59|-0.02|3.02|1E03|0|0|01|030001FB|0|C1A00000|| +21|2023-10-06T21:17:21.2070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18637734|40478540|10000|10000|||100.00|80.10|0.00|0.00|88816|129071|7500|10000|||99.98|92.28|0.00|3.14|00019C19|0|1| +31|2023-10-06T21:17:21.2070000-07:00|10FF0001||||| +37|2023-10-06T21:17:21.2510000-07:00|10FF0008|Kokosaze Lulusaze|00019C12|58839||||||99.57|98.71|0.00|3.12| +37|2023-10-06T21:17:21.2960000-07:00|10FF0006|Wowobora Gogobora|00019C12|46632||||||99.38|98.95|0.00|3.11| +37|2023-10-06T21:17:21.3410000-07:00|10FF0009|Zewo Negiwo|00019C12|45925||||||99.93|99.93|0.00|3.14| +38|2023-10-06T21:17:21.3410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|88816|129071|7500|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:21.3410000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:17:21.3860000-07:00|10FF0003|Gegehi Gehi|00019C12|44486||||||99.99|102.34|0.00|3.14| +261|2023-10-06T21:17:21.1370000-07:00|Change|10FF0001||| +37|2023-10-06T21:17:21.4310000-07:00|10FF0006|Wowobora Gogobora|00019C13|46632|81809|1700|10000|0||99.38|98.95|0.00|3.11|1B00|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:17:21.4310000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +26|2023-10-06T21:17:21.4310000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:17:21.4310000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0007|Kehabiqo Febiqo|4|4E610000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|46459|129844|10000|10000|||99.50|88.27|0.00|3.08|58667|81541|1750|10000|||99.78|97.64|0.00|3.13|00019C1A|0|1| +21|2023-10-06T21:17:21.4750000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18637734|40478540|10000|10000|||100.00|80.10|0.00|0.00|18637734|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C1B|0|1| +21|2023-10-06T21:17:21.5650000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|21310000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|18637734|40478540|10000|10000|||100.00|80.10|0.00|0.00|44486|73814|4850|10000|||99.99|102.34|0.00|3.14|00019C1C|0|1| +38|2023-10-06T21:17:21.5650000-07:00|10FF0003|Gegehi Gehi|005A5A23|44486|73814|4650|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:21.5650000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:17:21.5650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58667|81541|1750|10000|0||99.78|97.64|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:21.5650000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +38|2023-10-06T21:17:21.5650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50483|82773|7800|10000|0||97.91|99.09|0.00|3.02|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:21.5650000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|82773|129071| +37|2023-10-06T21:17:21.6090000-07:00|40022472|Zeromus|00019C10|18628114||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:21.6090000-07:00|40022472|Zeromus|00019C17|18627159||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:21.6090000-07:00|10FF000A|Dukaro Nezikaro|00019C17|50483|82773|7800|10000|0||97.91|99.09|0.00|3.02|1E00|0|0|01|030001FB|0|C1A00000|| +38|2023-10-06T21:17:21.6090000-07:00|10FF0009|Zewo Negiwo|005A5A18|45925|81177|3365|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:21.6090000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0009|Zewo Negiwo|00|81177|129071| +38|2023-10-06T21:17:21.6090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58839|90216|10000|10000|0||99.57|98.71|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:21.6090000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|90216|129071| +38|2023-10-06T21:17:21.6090000-07:00|40022B8A|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||96.82|95.60|0.00|2.79|0|0|0|||| +30|2023-10-06T21:17:21.6090000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|40022B8A|Ruby Carbuncle|00|77430|129071| +38|2023-10-06T21:17:21.6090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|46632|81809|1700|10000|0||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:21.6090000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +37|2023-10-06T21:17:21.6530000-07:00|10FF0007|Kehabiqo Febiqo|00019C14|51811||||||99.50|88.27|0.00|3.08| +21|2023-10-06T21:17:21.6530000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32714003|2A560000|A3E|340000|200004|3D578000|11B|258000|0|0|0|0|0|0|0|0|18637734|40478540|10000|10000|||100.00|80.10|0.00|0.00|46459|129844|10000|10000|||99.50|88.27|0.00|3.08|00019C1D|0|1| +261|2023-10-06T21:17:21.2290000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:17:21.6980000-07:00|40022472|Zeromus|00019C15|18614730||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:21.6980000-07:00|40022472|Zeromus|00019C18|18614657||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:21.6980000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|141C0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|18627159|40478540|10000|10000|||100.00|80.10|0.00|0.00|88816|129071|7500|10000|||99.98|92.28|0.00|3.14|00019C1E|0|1| +37|2023-10-06T21:17:21.7420000-07:00|40022472|Zeromus|00019C19|18612857||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:21.7420000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18627159|40478540|10000|10000|||100.00|80.10|0.00|0.00|51811|129844|10000|10000|||99.50|88.27|0.00|3.08|00019C1F|0|1| +21|2023-10-06T21:17:21.7420000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|1F260000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|51811|129844|10000|10000|||99.50|88.27|0.00|3.08|18627159|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C20|0|1| +21|2023-10-06T21:17:21.8310000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|11590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18612857|40478540|10000|10000|||100.00|80.10|0.00|0.00|50483|82773|7800|10000|||97.92|99.11|0.00|3.02|00019C21|0|1| +37|2023-10-06T21:17:21.9210000-07:00|40022472|Zeromus|00019C16|18604698||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:21.9210000-07:00|10FF000A|Dukaro Nezikaro|00019C16|50483|82773|7800|10000|0||97.92|99.11|0.00|3.02|1E00|0|0|01|030001FB|0|41A00000|| +22|2023-10-06T21:17:21.9210000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|200004|2B040000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|00019C22|0|8| +22|2023-10-06T21:17:21.9210000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|1A0E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|46632|81809|1700|10000|||99.38|98.95|0.00|3.11|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|00019C22|1|8| +22|2023-10-06T21:17:21.9210000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|200004|29170000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|58839|90216|10000|10000|||99.57|98.71|0.00|3.12|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|00019C22|2|8| +22|2023-10-06T21:17:21.9210000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|19F80000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|58667|81541|1750|10000|||99.78|97.64|-0.02|-3.05|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|00019C22|3|8| +22|2023-10-06T21:17:21.9210000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|19D60000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|50483|82773|7800|10000|||97.92|99.11|0.00|3.02|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|00019C22|4|8| +22|2023-10-06T21:17:21.9210000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|2AF20000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|44486|73814|4650|10000|||99.99|102.34|0.00|3.14|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|00019C22|5|8| +22|2023-10-06T21:17:21.9210000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|1A900000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|88816|129071|7500|10000|||99.98|92.28|0.00|3.14|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|00019C22|6|8| +22|2023-10-06T21:17:21.9210000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|19F10000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|51811|129844|10000|10000|||99.50|88.27|0.00|3.08|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|00019C22|7|8| +38|2023-10-06T21:17:21.9210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50483|82773|7800|10000|0||97.92|99.11|0.00|3.02|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:17:21.9650000-07:00|10FF0003|Gegehi Gehi|45224|73814|4850|10000|||99.99|102.34|0.00|3.14| +261|2023-10-06T21:17:21.5120000-07:00|Remove|40022B8F| +04|2023-10-06T21:17:21.5120000-07:00|40022B8F|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||82.71|89.21|0.00|1.97| +39|2023-10-06T21:17:22.0090000-07:00|10FF000A|Dukaro Nezikaro|51310|82773|8000|10000|||97.92|99.11|0.00|3.03| +261|2023-10-06T21:17:21.6020000-07:00|Change|10FF000A||||||||||| +37|2023-10-06T21:17:22.0530000-07:00|10FF0007|Kehabiqo Febiqo|00019C1A|71876||||||99.50|88.27|0.00|3.08| +22|2023-10-06T21:17:22.1430000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750303|6D3D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|71876|129844|10000|10000|||99.50|88.27|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C23|0|8| +22|2023-10-06T21:17:22.1430000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|6B460000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|88816|129071|7500|10000|||99.98|92.28|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C23|1|8| +22|2023-10-06T21:17:22.1430000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|50D50000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|58667|81541|1750|10000|||99.81|97.77|0.00|-1.18|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C23|2|8| +22|2023-10-06T21:17:22.1430000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|56F90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|58839|90216|10000|10000|||99.57|98.71|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C23|3|8| +22|2023-10-06T21:17:22.1430000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|4D390000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|46632|81809|1700|10000|||99.38|98.95|0.00|3.11|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C23|4|8| +22|2023-10-06T21:17:22.1430000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|5B5E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|51310|82773|8000|10000|||97.92|99.11|0.00|3.03|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C23|5|8| +22|2023-10-06T21:17:22.1430000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|54BD0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C23|6|8| +22|2023-10-06T21:17:22.1430000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|53AE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|45224|73814|4850|10000|||99.99|102.34|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C23|7|8| +20|2023-10-06T21:17:22.1430000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|99.81|97.77|0.00|-1.18| +24|2023-10-06T21:17:22.2320000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|22BB|58839|90216|10000|10000|||99.57|98.71|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.81|97.77|0.00|-1.18| +38|2023-10-06T21:17:22.2320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67730|90216|10000|10000|0||99.57|98.71|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:21.8310000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:22.2750000-07:00|40022472|Zeromus|00019C1D|18593860||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:22.2750000-07:00|10FF0007|Kehabiqo Febiqo|00019C1D|87579||||||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:22.2750000-07:00|40022472|Zeromus|00019C1F|18590980||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:22.2750000-07:00|40022472|Zeromus|00019C0F|18556505||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:22.2760000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|232E|51310|82773|8000|10000|||97.92|99.11|0.00|3.03|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.82|97.80|0.00|-0.80| +38|2023-10-06T21:17:22.2760000-07:00|40022B87|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.49|85.01|0.00|-2.85|0|0|0|||| +30|2023-10-06T21:17:22.2760000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022B87|Automaton Queen|01|85668|40478540| +38|2023-10-06T21:17:22.2760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|60316|82773|8000|10000|0||97.92|99.11|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:22.3200000-07:00|40022472|Zeromus|00019C1E|18551357||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:22.3200000-07:00|40022472|Zeromus|00019C1C|18542860||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:22.3200000-07:00|10FF0003|Gegehi Gehi|HoT|0|1DB8|45224|73814|4850|10000|||99.99|102.34|0.00|3.14|40022B8A|Ruby Carbuncle|0|73956|77430|10000|10000|||96.82|95.60|0.00|2.84| +21|2023-10-06T21:17:22.3210000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18604698|40478540|10000|10000|||100.00|80.10|0.00|0.00|67730|90216|10000|10000|||99.57|98.71|0.00|3.12|00019C24|0|1| +38|2023-10-06T21:17:22.3210000-07:00|10FF0003|Gegehi Gehi|005A5A23|52832|73814|4850|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:22.4100000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D24|87579|129844|10000|10000|||99.50|88.27|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +24|2023-10-06T21:17:22.4100000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D90|88816|129071|7500|10000|||99.98|92.28|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +24|2023-10-06T21:17:22.4100000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D4C|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +24|2023-10-06T21:17:22.4100000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D1E|67730|90216|10000|10000|||99.57|98.71|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +24|2023-10-06T21:17:22.4100000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D6B|46632|81809|1700|10000|||99.38|98.95|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +24|2023-10-06T21:17:22.4100000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D23|60316|82773|8000|10000|||97.92|99.11|0.00|3.03|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +24|2023-10-06T21:17:22.4100000-07:00|10FF0009|Zewo Negiwo|HoT|798|D66|45925|81177|3365|10000|||99.93|99.93|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +24|2023-10-06T21:17:22.4100000-07:00|10FF0003|Gegehi Gehi|HoT|798|D35|52832|73814|4850|10000|||99.99|102.34|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +24|2023-10-06T21:17:22.4100000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1DEB|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43|10FF0004|Buhojaqe Zijaqe|0|58667|81541|1750|10000|||99.83|97.83|0.00|-0.43| +38|2023-10-06T21:17:22.4100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90943|129844|10000|10000|0||99.50|88.27|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:22.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:22.4100000-07:00|10FF0009|Zewo Negiwo|005A5A18|49355|81177|3365|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:22.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:17:22.4100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|71088|90216|10000|10000|0||99.57|98.71|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:22.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:22.4100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50067|81809|1700|10000|0||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:22.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:22.4100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|92288|129071|7500|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:22.4100000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:17:22.4100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69730|81541|1750|10000|0||99.83|97.83|0.00|-0.43|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:22.4100000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:22.4100000-07:00|10FF0003|Gegehi Gehi|005A5A23|56213|73814|4850|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:22.4100000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:17:22.4100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|63679|82773|8000|10000|0||97.92|99.11|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:22.4100000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:17:22.4540000-07:00|10FF0007|Kehabiqo Febiqo|00019C23|62978||||||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:22.4990000-07:00|10FF0009|Zewo Negiwo|00019C22|60367||||||99.93|99.93|0.00|3.14| +37|2023-10-06T21:17:22.4990000-07:00|10FF0001|Sesuga Sapisuga|00019C23|64826||||||99.98|92.28|0.00|3.14| +37|2023-10-06T21:17:22.4990000-07:00|40022472|Zeromus|00019C21|18538419||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:22.4990000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|249B|62978|129844|10000|10000|||99.50|88.27|0.00|3.08|10FF0007|Kehabiqo Febiqo|0|62978|129844|10000|10000|||99.50|88.27|0.00|3.08| +24|2023-10-06T21:17:22.4990000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1E7E|50067|81809|1700|10000|||99.38|98.95|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|69730|81541|1750|10000|||99.83|97.86|0.00|-0.08| +38|2023-10-06T21:17:22.4990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|72349|129844|10000|10000|0||99.50|88.27|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:22.4990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57873|81809|2250|10000|0||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:22.0650000-07:00|Change|10FF0006||| +37|2023-10-06T21:17:22.5440000-07:00|10FF0007|Kehabiqo Febiqo|00019C20|64375||||||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:22.5440000-07:00|10FF0004|Buhojaqe Zijaqe|00019C23|49037||||||99.83|97.86|0.00|-0.08| +24|2023-10-06T21:17:22.5440000-07:00|10FF0009|Zewo Negiwo|HoT|0|240A|49355|81177|3365|10000|||99.93|99.93|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|69730|81541|1750|10000|||99.83|97.86|0.00|-0.08| +21|2023-10-06T21:17:22.5440000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|263D0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|18542860|40478540|10000|10000|||100.00|80.10|0.00|0.00|56213|73814|4850|10000|||99.99|102.34|0.00|3.14|00019C25|0|1| +38|2023-10-06T21:17:22.5440000-07:00|10FF0009|Zewo Negiwo|005A5A18|69593|81177|3365|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:22.5440000-07:00|10FF0003|Gegehi Gehi|005A5A23|56213|73814|4550|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:22.5440000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:17:22.5440000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:17:22.5880000-07:00|10FF0008|Kokosaze Lulusaze|00019C23|48823||||||99.57|98.71|0.00|3.12| +24|2023-10-06T21:17:22.5880000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|4042|64826|129071|7500|10000|||99.98|92.28|0.00|3.14|10FF0001|Sesuga Sapisuga|0|64826|129071|7500|10000|||99.98|92.28|0.00|3.14| +21|2023-10-06T21:17:22.5880000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|16D00000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|18538419|40478540|10000|10000|||100.00|80.10|0.00|0.00|63679|82773|8000|10000|||97.92|99.11|0.00|3.03|00019C26|0|1| +38|2023-10-06T21:17:22.5880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|81276|129071|7500|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:22.6320000-07:00|10FF0006|Wowobora Gogobora|00019C22|64543||||||99.38|98.95|0.00|3.11| +37|2023-10-06T21:17:22.6320000-07:00|10FF0006|Wowobora Gogobora|00019C23|44774||||||99.38|98.95|0.00|3.11| +20|2023-10-06T21:17:22.6320000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|99.38|98.95|0.00|3.11| +37|2023-10-06T21:17:22.6770000-07:00|10FF000A|Dukaro Nezikaro|00019C23|40289||||||97.92|99.11|0.00|3.03| +261|2023-10-06T21:17:22.2580000-07:00|Change|10FF0003||| +37|2023-10-06T21:17:22.7210000-07:00|10FF0009|Zewo Negiwo|00019C23|47900||||||99.93|99.93|0.00|3.14| +37|2023-10-06T21:17:22.7660000-07:00|10FF0008|Kokosaze Lulusaze|00019C22|59342||||||99.57|98.71|0.00|3.12| +37|2023-10-06T21:17:22.7660000-07:00|10FF0003|Gegehi Gehi|00019C23|34791|73814|4550|10000|0||99.99|102.34|0.00|3.14|2307|0|0|01|080004D3|0|C1F00000|| +21|2023-10-06T21:17:22.8550000-07:00|40022472|Zeromus|8B39|Sable Thread|40022472|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18538419|40478540|10000|10000|||100.00|80.10|0.00|0.00|18538419|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C27|0|1| +37|2023-10-06T21:17:22.8990000-07:00|10FF0004|Buhojaqe Zijaqe|00019C22|55685||||||99.84|97.89|0.00|0.21| +37|2023-10-06T21:17:23.0330000-07:00|10FF000A|Dukaro Nezikaro|00019C22|46903||||||97.92|99.11|0.00|3.03| +261|2023-10-06T21:17:22.6550000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T21:17:23.0770000-07:00|40022472|Zeromus|00019C24|18536152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:23.1210000-07:00|40022472|Zeromus|00019C26|18530312||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:23.1670000-07:00|10FF0003|Gegehi Gehi|00019C22|45785|73814|4550|10000|0||99.99|102.34|0.00|3.14|2305|0|0|01|080004D3|0|C1F00000|| +21|2023-10-06T21:17:23.2550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18530312|40478540|10000|10000|||100.00|80.10|0.00|0.00|46903|82773|8000|10000|||97.92|99.11|0.00|3.03|00019C28|0|1| +37|2023-10-06T21:17:23.3000000-07:00|10FF0001|Sesuga Sapisuga|00019C22|88076||||||99.98|92.28|0.00|3.14| +37|2023-10-06T21:17:23.3000000-07:00|40022472|Zeromus|00019C25|18520523||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:23.3000000-07:00|10FF0003|Gegehi Gehi|00019C25|45785|73814|4550|10000|0||99.99|102.34|0.00|3.14|2300|0|0|01|080004D3|0|41F00000|| +38|2023-10-06T21:17:23.3000000-07:00|10FF0003|Gegehi Gehi|005A5A23|45785|73814|4550|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T21:17:23.3890000-07:00|40022B87|Automaton Queen|82193|85668|10000|10000|||101.49|85.01|0.00|-2.85| +37|2023-10-06T21:17:23.4340000-07:00|10FF0007|Kehabiqo Febiqo|00019C22|71016||||||99.50|88.27|0.00|3.08| +21|2023-10-06T21:17:23.4350000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2D230000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|18520523|40478540|10000|10000|||100.00|80.10|0.00|0.00|59342|90216|10000|10000|||99.57|98.71|0.00|3.12|00019C29|0|1| +21|2023-10-06T21:17:23.4800000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18520523|40478540|10000|10000|||100.00|80.10|0.00|0.00|88076|129071|7500|10000|||99.98|92.28|0.00|3.14|00019C2A|0|1| +31|2023-10-06T21:17:23.4800000-07:00|10FF0001||||| +22|2023-10-06T21:17:23.5230000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750303|6BCF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|71016|129844|10000|10000|||99.50|88.27|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C2B|0|8| +22|2023-10-06T21:17:23.5230000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|6F6A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|88076|129071|7500|10000|||99.98|92.28|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C2B|1|8| +22|2023-10-06T21:17:23.5230000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|4D0E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C2B|2|8| +22|2023-10-06T21:17:23.5230000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|55570000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|59342|90216|10000|10000|||99.57|98.71|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C2B|3|8| +22|2023-10-06T21:17:23.5230000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|4D910000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|44774|81809|2250|10000|||99.38|98.95|0.00|3.11|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C2B|4|8| +22|2023-10-06T21:17:23.5230000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|59B90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|46903|82773|8000|10000|||97.92|99.11|0.00|3.03|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C2B|5|8| +22|2023-10-06T21:17:23.5230000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750003|4FC30000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|47900|81177|3365|10000|||99.93|99.93|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C2B|6|8| +22|2023-10-06T21:17:23.5230000-07:00|4002248F|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|514B0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|45785|73814|4550|10000|||99.99|102.34|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00019C2B|7|8| +22|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|1CA10000|CE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|00019C2C|0|8| +22|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|1C910000|B40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|59342|90216|10000|10000|||99.57|98.71|0.00|3.12|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|00019C2C|1|8| +22|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1CA00000|CC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|44774|81809|2250|10000|||99.38|98.95|0.00|3.11|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|00019C2C|2|8| +22|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|4|1C560000|560E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|47900|81177|3365|10000|||99.93|99.93|0.00|3.14|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|00019C2C|3|8| +22|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|1CA10000|CE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|46903|82773|8000|10000|||97.92|99.11|0.00|3.03|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|00019C2C|4|8| +22|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|2CBF0000|980E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|45785|73814|4550|10000|||99.99|102.34|0.00|3.14|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|00019C2C|5|8| +22|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|2CA80000|730E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|88076|129071|7500|10000|||99.98|92.28|0.00|3.14|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|00019C2C|6|8| +22|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|1CF00000|4C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|71016|129844|10000|10000|||99.50|88.27|0.00|3.08|55685|81541|1750|10000|||99.84|97.89|0.00|0.21|00019C2C|7|8| +38|2023-10-06T21:17:23.5690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|71016|129844|10000|10000|9||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:23.5690000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:23.5690000-07:00|10FF0009|Zewo Negiwo|005A5A18|47900|81177|3365|10000|14||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:23.5690000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:17:23.5690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|59342|90216|10000|10000|12||99.57|98.71|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:23.5690000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:23.5690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|44774|81809|2250|10000|14||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:23.5690000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:23.5690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|88076|129071|7500|10000|14||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:23.5690000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:17:23.5690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55685|81541|750|10000|14||99.84|97.89|0.00|0.21|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:23.5690000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:23.5690000-07:00|10FF0003|Gegehi Gehi|005A5A23|45785|73814|4550|10000|24||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:23.5690000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:17:23.5690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46903|82773|8000|10000|14||97.92|99.11|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:23.5690000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:17:23.2140000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:17:23.6120000-07:00|10FF0009|Zewo Negiwo|48711|81177|3586|10000|||99.93|99.93|0.00|3.14| +261|2023-10-06T21:17:23.3050000-07:00|Change|10FF0009||| +39|2023-10-06T21:17:23.7020000-07:00|10FF0008|Kokosaze Lulusaze|60244|90216|10000|10000|||99.57|98.71|0.00|3.12| +24|2023-10-06T21:17:23.7460000-07:00|40022472|Zeromus|DoT|0|1155|18520523|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|55685|81541|750|10000|||99.84|97.89|0.00|0.21| +38|2023-10-06T21:17:23.7460000-07:00|40022472|Zeromus|005A5A00|18516086|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:17:23.7900000-07:00|40022472|Zeromus|00019C28|18514830||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:23.7900000-07:00|40022B8A|Ruby Carbuncle|73956|77430|10000|10000|||96.82|95.60|0.00|2.94| +37|2023-10-06T21:17:23.8340000-07:00|10FF0007|Kehabiqo Febiqo|00019C2B|43417||||||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:23.8790000-07:00|10FF0001|Sesuga Sapisuga|00019C2B|59554||||||99.98|92.28|0.00|3.14| +39|2023-10-06T21:17:23.8790000-07:00|10FF0001|Sesuga Sapisuga|60844|129071|7700|10000|||99.98|92.28|0.00|3.14| +39|2023-10-06T21:17:23.8790000-07:00|10FF0004|Buhojaqe Zijaqe|56500|81541|950|10000|||99.84|97.89|0.00|0.21| +36|2023-10-06T21:17:23.8790000-07:00|22C4|3| +261|2023-10-06T21:17:23.4860000-07:00|Change|10FF0001||| +37|2023-10-06T21:17:23.9230000-07:00|10FF0004|Buhojaqe Zijaqe|00019C2B|36774||||||99.84|97.89|0.00|0.21| +21|2023-10-06T21:17:23.9230000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18514830|40478540|10000|10000|||100.00|80.10|0.00|0.00|56500|81541|950|10000|||99.84|97.89|0.00|0.21|00019C2D|0|1| +37|2023-10-06T21:17:23.9690000-07:00|10FF0008|Kokosaze Lulusaze|00019C2B|38397||||||99.57|98.71|0.00|3.12| +39|2023-10-06T21:17:23.9690000-07:00|10FF0007|Kehabiqo Febiqo|44715|129844|10000|10000|||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:24.0130000-07:00|10FF0006|Wowobora Gogobora|00019C2B|24917||||||99.38|98.95|0.00|3.11| +37|2023-10-06T21:17:24.0130000-07:00|40022472|Zeromus|00019C2A|18513031||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:24.0130000-07:00|10FF0006|Wowobora Gogobora|25735|81809|2450|10000|||99.38|98.95|0.00|3.11| +37|2023-10-06T21:17:24.0570000-07:00|10FF000A|Dukaro Nezikaro|00019C2B|23934||||||99.12|99.86|0.00|2.79| +261|2023-10-06T21:17:23.6750000-07:00|Change|10FF0006||||| +37|2023-10-06T21:17:24.1020000-07:00|10FF0009|Zewo Negiwo|00019C2B|28292||||||99.93|99.93|0.00|3.14| +21|2023-10-06T21:17:24.1020000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|2EC50000|A3E|340000|200004|3C768000|11B|2D8000|0|0|0|0|0|0|0|0|18513031|40478540|10000|10000|||100.00|80.10|0.00|0.00|44715|129844|10000|10000|||99.50|88.27|0.00|3.08|00019C2E|0|1| +38|2023-10-06T21:17:24.1020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|44715|129844|10000|10000|9||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:24.1020000-07:00|A75|Surging Tempest|56.76|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:17:24.1460000-07:00|10FF0003|Gegehi Gehi|00019C2B|24974||||||99.99|102.34|0.00|3.14| +21|2023-10-06T21:17:24.1910000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35714003|27040000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|18513031|40478540|10000|10000|||100.00|80.10|0.00|0.00|60844|129071|7700|10000|||99.98|92.28|0.00|3.14|00019C2F|0|1| +37|2023-10-06T21:17:24.2350000-07:00|40022472|Zeromus|00019C29|18501476||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:24.2350000-07:00|40022472|Zeromus|8B3A|Sable Thread|40022472|Zeromus|49|8000|1B|8B3A8000|0|0|0|0|0|0|0|0|0|0|0|0|18513031|40478540|10000|10000|||100.00|80.10|0.00|0.00|18513031|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C30|0|1| +39|2023-10-06T21:17:24.3240000-07:00|40022BA5|Carbuncle|77698|77698|10000|10000|||100.42|97.31|0.00|0.77| +20|2023-10-06T21:17:24.3240000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.93|99.93|0.00|3.14| +38|2023-10-06T21:17:24.3680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|44715|129844|10000|10000|9||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:24.3680000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:17:23.9170000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:17:24.4570000-07:00|40022472|Zeromus|00019C2D|18501317||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:24.5460000-07:00|40022B8A|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|200004|223B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|28292|81177|3586|10000|||99.93|99.93|0.00|3.14|73956|77430|10000|10000|||96.82|95.60|0.00|2.11|00019C31|0|1| +261|2023-10-06T21:17:24.2380000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:17:24.6810000-07:00|10FF0004|Buhojaqe Zijaqe|00019C2C|44103|81541|950|10000|14||99.84|97.82|-0.02|1.68|1C00|0|0|01|04000129|0|41E774B8|| +21|2023-10-06T21:17:24.7260000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|DC80000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|18501317|40478540|10000|10000|||100.00|80.10|0.00|0.00|23934|82773|8000|10000|||99.53|100.11|0.00|2.68|00019C32|0|1| +21|2023-10-06T21:17:24.7690000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|44715|129844|10000|10000|||99.50|88.27|0.00|3.08|18501317|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C33|0|1| +37|2023-10-06T21:17:24.8140000-07:00|10FF0008|Kokosaze Lulusaze|00019C2C|45710|90216|10000|10000|12||99.57|98.71|0.00|3.12|1F01|0|0|01|07000129|0|41E66455|| +21|2023-10-06T21:17:24.9030000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|39CA0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|18501317|40478540|10000|10000|||100.00|80.10|0.00|0.00|25735|81809|2450|10000|||99.38|98.95|0.00|3.11|00019C34|0|1| +37|2023-10-06T21:17:24.9480000-07:00|40022472|Zeromus|00019C2F|18491329||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:24.9480000-07:00|10FF0001|Sesuga Sapisuga|00019C2F|60844|129071|8700|10000|14||99.98|92.28|0.00|3.14|1300|0|0|0| +37|2023-10-06T21:17:24.9480000-07:00|10FF0006|Wowobora Gogobora|00019C2C|33063|81809|2150|10000|14||99.38|98.95|0.00|3.11|1B02|0|0|01|07000129|0|41E551E6|| +39|2023-10-06T21:17:24.9480000-07:00|10FF0003|Gegehi Gehi|25712|73814|4750|10000|||99.99|102.34|0.00|3.14| +21|2023-10-06T21:17:24.9480000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18501317|40478540|10000|10000|||100.00|80.10|0.00|0.00|24974|73814|4550|10000|||99.99|102.34|0.00|3.14|00019C35|0|1| +261|2023-10-06T21:17:24.5320000-07:00|Change|10FF0003||| +261|2023-10-06T21:17:24.5320000-07:00|Change|10FF0001||| +39|2023-10-06T21:17:24.9930000-07:00|10FF000A|Dukaro Nezikaro|24761|82773|8200|10000|||99.53|100.11|0.00|3.12| +261|2023-10-06T21:17:24.5320000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:17:24.9930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18491329|40478540|10000|10000|||100.00|80.10|0.00|0.00|45710|90216|10000|10000|||99.57|98.71|0.00|3.12|00019C36|0|1| +20|2023-10-06T21:17:24.9930000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|99.99|102.34|0.00|3.14| +37|2023-10-06T21:17:25.0820000-07:00|10FF0009|Zewo Negiwo|00019C2C|35546|81177|3586|10000|14||99.93|99.93|0.00|3.14|1803|0|0|01|07000129|0|41E43F77|| +37|2023-10-06T21:17:25.1260000-07:00|40022472|Zeromus|00019C32|18487801||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:24.6230000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T21:17:25.1260000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18491329|40478540|10000|10000|||100.00|80.10|0.00|0.00|44715|129844|10000|10000|||99.50|88.27|0.00|3.08|00019C37|0|1| +37|2023-10-06T21:17:25.2150000-07:00|10FF000A|Dukaro Nezikaro|00019C2C|32090|82773|8200|10000|14||99.53|100.11|0.00|3.12|1E04|0|0|01|09000129|0|41E32D08|| +24|2023-10-06T21:17:25.2150000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2965|45710|90216|10000|10000|||99.57|98.71|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|44103|81541|950|10000|||99.84|97.74|-0.01|3.01| +38|2023-10-06T21:17:25.2150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|56307|90216|10000|10000|12||99.57|98.71|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +36|2023-10-06T21:17:25.2600000-07:00|23F0|3| +36|2023-10-06T21:17:25.2600000-07:00|251C|3| +22|2023-10-06T21:17:25.2600000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750603|69170000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|44715|129844|10000|10000|||99.50|88.27|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C38|0|8| +22|2023-10-06T21:17:25.2600000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750603|26E20000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|60844|129071|8700|10000|||99.98|92.28|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C38|1|8| +22|2023-10-06T21:17:25.2600000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|22E50000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|44103|81541|950|10000|||99.84|97.74|-0.01|3.01|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C38|2|8| +22|2023-10-06T21:17:25.2600000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|2B5C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|45710|90216|10000|10000|||99.57|98.71|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C38|3|8| +22|2023-10-06T21:17:25.2600000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|20DD0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|33063|81809|2150|10000|||99.38|98.95|0.00|3.11|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C38|4|8| +22|2023-10-06T21:17:25.2600000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0009|Zewo Negiwo|750603|20E10000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|35546|81177|3586|10000|||99.93|99.93|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C38|5|8| +22|2023-10-06T21:17:25.2600000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750603|29250000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|24761|82773|8200|10000|||99.53|100.11|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C38|6|8| +22|2023-10-06T21:17:25.2600000-07:00|40022490|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|7AB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|25712|73814|4750|10000|||99.99|102.34|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.00|00019C38|7|8| +24|2023-10-06T21:17:25.2600000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1D83|24761|82773|8200|10000|||99.53|100.11|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|44103|81541|950|10000|||99.84|97.74|-0.01|3.01| +21|2023-10-06T21:17:25.2600000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|18980000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|18487801|40478540|10000|10000|||100.00|80.10|0.00|0.00|35546|81177|3586|10000|||99.93|99.93|0.00|3.14|00019C39|0|1| +38|2023-10-06T21:17:25.2600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39645|82773|8200|10000|14||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:25.3040000-07:00|10FF0003|Gegehi Gehi|HoT|0|1D4A|25712|73814|4750|10000|||99.99|102.34|0.00|3.14|40022B8A|Ruby Carbuncle|0|73956|77430|10000|10000|||96.82|95.60|0.00|0.64| +21|2023-10-06T21:17:25.3040000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2AF20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18487801|40478540|10000|10000|||100.00|80.10|0.00|0.00|44715|129844|10000|10000|||99.50|88.27|0.00|3.08|00019C3A|0|1| +38|2023-10-06T21:17:25.3040000-07:00|10FF0003|Gegehi Gehi|005A5A23|33210|73814|4750|10000|24||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:25.3480000-07:00|10FF0009|Zewo Negiwo|00019C31|44309||||||99.93|99.93|0.00|3.14| +37|2023-10-06T21:17:25.3480000-07:00|10FF0003|Gegehi Gehi|00019C2C|44665|73814|4750|10000|24||99.99|102.34|0.00|3.14|2305|0|0|01|04000129|0|41E21CA5|| +38|2023-10-06T21:17:25.3480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|60844|129071|8700|10000|14||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.3480000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:17:24.8570000-07:00|Change|40022B87||||||||| +261|2023-10-06T21:17:24.8570000-07:00|Change|40022B87||||||||| +24|2023-10-06T21:17:25.3930000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D4A|44715|129844|10000|10000|||99.50|88.27|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|44103|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.3930000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|152F|60844|129071|8700|10000|||99.98|92.28|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|44103|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.3930000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|CE8|44103|81541|950|10000|||99.84|97.73|0.00|3.01|10FF0004|Buhojaqe Zijaqe|0|44103|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.3930000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1577|56307|90216|10000|10000|||99.57|98.71|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|44103|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.3930000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D29|33063|81809|2150|10000|||99.38|98.95|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|44103|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.3930000-07:00|10FF0009|Zewo Negiwo|HoT|798|D9D|47794|81177|3186|10000|||99.93|99.93|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|55110|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.3930000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|DA3|43136|82773|8200|10000|||99.53|100.11|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|55110|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.3930000-07:00|10FF0003|Gegehi Gehi|HoT|798|1543|50108|73814|4750|10000|||99.99|102.34|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|55110|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.3930000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1E17|55110|81541|950|10000|||99.84|97.73|0.00|3.01|10FF0004|Buhojaqe Zijaqe|0|55110|81541|950|10000|||99.84|97.73|0.00|3.01| +38|2023-10-06T21:17:25.3930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|48117|129844|10000|10000|9||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:25.3930000-07:00|10FF0009|Zewo Negiwo|005A5A18|47794|81177|3186|10000|14||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:17:25.3930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61802|90216|10000|10000|12||99.57|98.71|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:25.3930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|36432|81809|2150|10000|14||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:25.3930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|66267|129071|8700|10000|14||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:17:25.3930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55110|81541|950|10000|14||99.84|97.73|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.3930000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:25.3930000-07:00|10FF0003|Gegehi Gehi|005A5A23|50108|73814|4750|10000|24||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.3930000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:17:25.3930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43136|82773|8200|10000|14||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.3930000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:17:24.9710000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:17:25.4370000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|6940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18487801|40478540|10000|10000|||100.00|80.10|0.00|0.00|43136|82773|8200|10000|||99.53|100.11|0.00|3.12|00019C3B|0|1| +37|2023-10-06T21:17:25.4820000-07:00|10FF0001|Sesuga Sapisuga|00019C2C|77699|129071|8700|10000|14||99.98|92.28|0.00|3.14|1306|0|0|01|08000129|0|41E10C42|| +37|2023-10-06T21:17:25.4820000-07:00|40022472|Zeromus|00019C35|18487800||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:25.4820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1D50|48117|129844|10000|10000|||99.50|88.27|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|55110|81541|950|10000|||99.84|97.73|0.00|3.01| +24|2023-10-06T21:17:25.4820000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1D98|36432|81809|2150|10000|||99.38|98.95|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|55110|81541|950|10000|||99.84|97.73|0.00|3.01| +38|2023-10-06T21:17:25.4820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|55621|129844|10000|10000|9||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:25.4820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|44008|81809|2700|10000|14||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:25.0810000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:17:25.5260000-07:00|40022472|Zeromus|00019C34|18473006||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:25.5260000-07:00|10FF0009|Zewo Negiwo|HoT|0|1DE1|47794|81177|3186|10000|||99.93|99.93|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|55110|81541|950|10000|||99.84|97.73|0.00|3.01| +38|2023-10-06T21:17:25.5260000-07:00|10FF0009|Zewo Negiwo|005A5A18|55443|81177|3186|10000|14||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:25.5710000-07:00|10FF0007|Kehabiqo Febiqo|00019C33|55621|129844|10000|10000|0||99.50|88.27|0.00|3.08|1500|0|0|01|0D000000|0|0|| +37|2023-10-06T21:17:25.5710000-07:00|10FF0007|Kehabiqo Febiqo|00019C38|28718||||||99.50|88.27|0.00|3.08| +24|2023-10-06T21:17:25.5710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|4871|77699|129071|8700|10000|||99.98|92.28|0.00|3.14|10FF0001|Sesuga Sapisuga|0|77699|129071|8700|10000|||99.98|92.28|0.00|3.14| +38|2023-10-06T21:17:25.5710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|28718|129844|10000|10000|0||99.50|88.27|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.5710000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:25.5710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|96244|129071|8700|10000|14||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:25.6150000-07:00|10FF0001|Sesuga Sapisuga|00019C38|86290|129071|8700|10000|0||99.98|92.28|0.00|3.14|1301|0|0|01|08000000|0|0|| +37|2023-10-06T21:17:25.6150000-07:00|10FF0007|Kehabiqo Febiqo|00019C2C|36126||||||99.50|88.27|0.00|3.08| +21|2023-10-06T21:17:25.6150000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|18473006|40478540|10000|10000|||100.00|80.10|0.00|0.00|44008|81809|2700|10000|||99.38|98.95|0.00|3.11|00019C3C|0|1| +38|2023-10-06T21:17:25.6150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|44008|81809|2700|10000|14||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:25.6150000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:17:25.6150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|86290|129071|8700|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.6150000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T21:17:25.1760000-07:00|Change|40022BA5||||||||| +38|2023-10-06T21:17:25.6600000-07:00|40022BAA||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:25.6600000-07:00|40022472|Zeromus|00019C37|18470055||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:25.6600000-07:00|10FF0004|Buhojaqe Zijaqe|00019C38|46177|81541|950|10000|0||99.84|97.73|0.00|3.01|1C02|0|0|01|04000000|0|0|| +38|2023-10-06T21:17:25.6600000-07:00|40022BAA||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:17:25.6600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46177|81541|950|10000|0||99.84|97.73|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.6600000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:17:25.7040000-07:00|10FF0008|Kokosaze Lulusaze|00019C38|50702|90216|10000|10000|0||99.57|98.71|0.00|3.12|1F03|0|0|01|07000000|0|0|| +38|2023-10-06T21:17:25.7040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50702|90216|10000|10000|0||99.57|98.71|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.7040000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +37|2023-10-06T21:17:25.7490000-07:00|40022472|Zeromus|00019C2E|18458082||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:25.7490000-07:00|10FF0007|Kehabiqo Febiqo|00019C2E|51604||||||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:25.7490000-07:00|40022472|Zeromus|00019C36|18455276||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:25.7490000-07:00|10FF0006|Wowobora Gogobora|00019C38|35595|81809|2700|10000|0||99.38|98.95|0.00|3.11|1B04|0|0|01|07000000|0|0|| +21|2023-10-06T21:17:25.7490000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18470055|40478540|10000|10000|||100.00|80.10|0.00|0.00|86290|129071|8700|10000|||99.98|92.28|0.00|3.14|00019C3D|0|1| +38|2023-10-06T21:17:25.7490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|35595|81809|2700|10000|0||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.7490000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +31|2023-10-06T21:17:25.7490000-07:00|10FF0001||||| +37|2023-10-06T21:17:25.7930000-07:00|10FF0009|Zewo Negiwo|00019C38|47026|81177|3186|10000|0||99.93|99.93|0.00|3.14|1805|0|0|01|07000000|0|0|| +38|2023-10-06T21:17:25.7930000-07:00|10FF0009|Zewo Negiwo|005A5A18|47026|81177|3186|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.7930000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +37|2023-10-06T21:17:25.8380000-07:00|10FF000A|Dukaro Nezikaro|00019C38|32603|82773|8200|10000|0||99.53|100.11|0.00|3.12|1E06|0|0|01|09000000|0|0|| +38|2023-10-06T21:17:25.8380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|32603|82773|8200|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.8380000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:17:25.8830000-07:00|10FF0003|Gegehi Gehi|00019C38|48145|73814|4750|10000|0||99.99|102.34|0.00|3.14|2307|0|0|01|04000000|0|0|| +38|2023-10-06T21:17:25.8830000-07:00|10FF0003|Gegehi Gehi|005A5A23|48145|73814|4750|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:25.8830000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +37|2023-10-06T21:17:25.9280000-07:00|40022472|Zeromus|00019C3A|18444282||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:25.9280000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|45CA0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|18455276|40478540|10000|10000|||100.00|80.10|0.00|0.00|50702|90216|10000|10000|||99.57|98.71|0.00|3.12|00019C3E|0|1| +37|2023-10-06T21:17:25.9720000-07:00|40022472|Zeromus|00019C3B|18442598||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:25.4720000-07:00|Add|40022BAA||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:17:25.4720000-07:00|40022BAA|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||101.10|100.78|0.00|3.11| +261|2023-10-06T21:17:25.5660000-07:00|Change|40022BAA||||| +261|2023-10-06T21:17:25.6560000-07:00|Change|10FF0006||| +37|2023-10-06T21:17:26.2830000-07:00|40022472|Zeromus|00019C3D|18440843||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:26.4170000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|452003|399D0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|18440843|40478540|10000|10000|||100.00|80.10|0.00|0.00|48145|73814|4750|10000|||99.99|102.34|0.00|3.14|00019C3F|0|1| +38|2023-10-06T21:17:26.4170000-07:00|10FF0003|Gegehi Gehi|005A5A23|48145|73814|4550|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:26.4170000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:17:26.4170000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:17:26.1200000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:17:26.5510000-07:00|40022472|Zeromus|00019C39|18434547||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:26.5510000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|38CA0000|200004|3FC48000|0|0|0|0|0|0|0|0|0|0|0|0|18440843|40478540|10000|10000|||100.00|80.10|0.00|0.00|51604|129844|10000|10000|||99.50|88.27|0.00|3.08|00019C40|0|1| +37|2023-10-06T21:17:26.6410000-07:00|10FF0006|Wowobora Gogobora|00019C3C|35595|81809|2700|10000|0||99.38|98.95|0.00|3.11|1B00|0|0|01|0B000AA5|0|0|| +39|2023-10-06T21:17:26.6410000-07:00|10FF0009|Zewo Negiwo|47837|81177|3407|10000|||99.93|99.93|0.00|3.14| +21|2023-10-06T21:17:26.6410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18434547|40478540|10000|10000|||100.00|80.10|0.00|0.00|35595|81809|2700|10000|||99.38|98.95|0.00|3.11|00019C41|0|1| +38|2023-10-06T21:17:26.6410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|35595|81809|2700|10000|0||99.38|98.95|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:26.2140000-07:00|Change|10FF0009||| +261|2023-10-06T21:17:26.3140000-07:00|Change|40022BAA||| +21|2023-10-06T21:17:26.6850000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41714003|32E50000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|18434547|40478540|10000|10000|||100.00|80.10|0.00|0.00|86290|129071|8700|10000|||99.98|92.28|0.00|3.14|00019C42|0|1| +38|2023-10-06T21:17:26.6850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|86290|129071|8700|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:26.6850000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:17:26.6850000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:17:26.7290000-07:00|40022472|Zeromus|00019C3E|18416681||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:26.7290000-07:00|10FF0008|Kokosaze Lulusaze|51604|90216|10000|10000|||99.57|98.71|0.00|3.12| +20|2023-10-06T21:17:26.7290000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|99.93|99.93|0.00|3.14| +24|2023-10-06T21:17:26.7740000-07:00|40022472|Zeromus|DoT|0|10D6|18434547|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|46177|81541|950|10000|||99.81|97.75|0.00|-1.87| +38|2023-10-06T21:17:26.7740000-07:00|40022472|Zeromus|005A5A00|18412371|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:17:26.8180000-07:00|40022B8A|Ruby Carbuncle|73956|77430|10000|10000|||96.82|95.60|0.00|2.88| +39|2023-10-06T21:17:26.8630000-07:00|10FF0001|Sesuga Sapisuga|87580|129071|8900|10000|||99.98|92.28|0.00|3.14| +36|2023-10-06T21:17:26.8630000-07:00|25F8|3| +261|2023-10-06T21:17:26.4120000-07:00|Change|10FF0001||| +39|2023-10-06T21:17:26.9080000-07:00|10FF0004|Buhojaqe Zijaqe|46992|81541|1150|10000|||99.81|97.76|0.00|-1.63| +21|2023-10-06T21:17:26.9520000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0007|Kehabiqo Febiqo|4|4C710000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|51604|129844|10000|10000|||99.50|88.27|0.00|3.08|46177|81541|950|10000|||99.81|97.76|0.00|-1.63|00019C43|0|1| +21|2023-10-06T21:17:26.9520000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|13C30000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|18412371|40478540|10000|10000|||100.00|80.10|0.00|0.00|32603|82773|8200|10000|||99.53|100.11|0.00|3.12|00019C44|0|1| +38|2023-10-06T21:17:26.9520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46992|81541|1150|10000|0||99.81|97.76|0.00|-1.63|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:26.9520000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +261|2023-10-06T21:17:26.5020000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:17:26.5020000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:17:26.9970000-07:00|10FF0007|Kehabiqo Febiqo|52902|129844|10000|10000|||99.50|88.27|0.00|3.08| +39|2023-10-06T21:17:26.9970000-07:00|10FF0006|Wowobora Gogobora|36413|81809|2900|10000|||99.38|98.95|0.00|3.11| +21|2023-10-06T21:17:27.0850000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18412371|40478540|10000|10000|||100.00|80.10|0.00|0.00|46992|81541|1150|10000|||99.81|97.76|0.00|-1.87|00019C45|0|1| +37|2023-10-06T21:17:27.1760000-07:00|40022472|Zeromus|00019C40|18397833||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:27.1760000-07:00|10FF0007|Kehabiqo Febiqo|00019C40|69226||||||99.50|88.27|0.00|3.08| +37|2023-10-06T21:17:27.1760000-07:00|40022472|Zeromus|00019C41|18397700||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:26.7110000-07:00|Change|10FF0006||| +37|2023-10-06T21:17:27.2190000-07:00|40022472|Zeromus|00019C3F|18382951||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:27.2630000-07:00|40022472|Zeromus|00019C42|18369922||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:27.2630000-07:00|10FF0001|Sesuga Sapisuga|00019C42|87580|129071|8900|10000|0||99.98|92.28|0.00|3.14|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T21:17:27.2630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87580|129071|8900|10000|0||99.98|92.28|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:27.3520000-07:00|40022472|Zeromus|00019C44|18364863||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:27.4410000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|27720000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|18364863|40478540|10000|10000|||100.00|80.10|0.00|0.00|48145|73814|4550|10000|||99.99|102.34|0.00|3.14|00019C46|0|1| +38|2023-10-06T21:17:27.4410000-07:00|10FF0003|Gegehi Gehi|005A5A23|48145|73814|4250|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:27.4410000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:17:27.4410000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:17:27.0560000-07:00|Change|10FF0003||| +37|2023-10-06T21:17:27.6200000-07:00|10FF0007|Kehabiqo Febiqo|00019C43|88795||||||99.50|88.36|0.00|-0.89| +37|2023-10-06T21:17:27.6200000-07:00|40022472|Zeromus|00019C45|18364624||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:27.6200000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|4F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18364863|40478540|10000|10000|||100.00|80.10|0.00|0.00|32603|82773|8200|10000|||99.53|100.11|0.00|3.12|00019C47|0|1| +261|2023-10-06T21:17:27.1550000-07:00|Change|40022BA5||| +21|2023-10-06T21:17:27.6660000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18364863|40478540|10000|10000|||100.00|80.10|0.00|0.00|51604|90216|10000|10000|||99.67|98.88|0.00|1.44|00019C48|0|1| +21|2023-10-06T21:17:27.7070000-07:00|40022BAA|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|354003|7C9A0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|18364624|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.10|100.78|0.00|3.11|00019C49|0|1| +21|2023-10-06T21:17:27.7070000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32603|82773|8200|10000|||99.53|100.11|0.00|3.12|32603|82773|8200|10000|||99.53|100.11|0.00|3.12|00019C4A|0|1| +38|2023-10-06T21:17:27.7070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|32603|82773|8200|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:27.7070000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:17:27.2470000-07:00|Change|10FF0009||||||||||||| +21|2023-10-06T21:17:27.7960000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|22AA0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|88795|129844|10000|10000|||99.44|89.12|0.00|-0.70|18364624|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C4B|0|1| +20|2023-10-06T21:17:27.9290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.92|97.73|0.00|2.15| +261|2023-10-06T21:17:27.4310000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:17:27.9750000-07:00|10FF0003|Gegehi Gehi|48883|73814|4450|10000|||99.99|102.34|0.00|3.14| +39|2023-10-06T21:17:27.9750000-07:00|10FF000A|Dukaro Nezikaro|33430|82773|8400|10000|||99.53|100.11|0.00|3.12| +21|2023-10-06T21:17:28.0190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18364624|40478540|10000|10000|||100.00|80.10|0.00|0.00|87580|129071|8900|10000|||101.71|95.96|0.00|0.89|00019C4C|0|1| +31|2023-10-06T21:17:28.0190000-07:00|10FF0001||||| +20|2023-10-06T21:17:28.1080000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|99.56|99.47|0.00|0.55| +37|2023-10-06T21:17:28.1520000-07:00|40022472|Zeromus|00019C47|18363358||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:28.1520000-07:00|10FF000A|Dukaro Nezikaro|00019C47|33430|82773|8400|10000|0||99.53|100.11|0.00|3.12|1E00|0|0|01|090001F1|0|C1700000|| +261|2023-10-06T21:17:27.6200000-07:00|Change|10FF000A||||| +22|2023-10-06T21:17:28.1520000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|104B0000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|00019C4D|0|8| +22|2023-10-06T21:17:28.1520000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|10800000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|32603|82773|8200|10000|||99.53|100.11|0.00|3.12|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|00019C4D|1|8| +22|2023-10-06T21:17:28.1520000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|4|104D0000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|36413|81809|2900|10000|||99.56|99.47|0.00|0.55|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|00019C4D|2|8| +22|2023-10-06T21:17:28.1520000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|108B0000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|51604|90216|10000|10000|||99.93|99.17|0.00|0.03|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|00019C4D|3|8| +22|2023-10-06T21:17:28.1520000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|10180000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.48|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|00019C4D|4|8| +22|2023-10-06T21:17:28.1520000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|4|10890000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|48145|73814|4250|10000|||99.99|102.34|0.00|3.14|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|00019C4D|5|8| +22|2023-10-06T21:17:28.1520000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|10A80000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|87580|129071|8900|10000|||101.71|95.96|0.00|0.89|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|00019C4D|6|8| +22|2023-10-06T21:17:28.1520000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|10470000|FC2C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|88795|129844|10000|10000|||98.57|91.89|0.00|-0.41|47837|81177|3407|10000|||99.93|99.93|0.00|3.14|00019C4D|7|8| +261|2023-10-06T21:17:27.6200000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T21:17:28.1960000-07:00|40022472|Zeromus|00019C46|18353260||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:28.1960000-07:00|10FF0003|Gegehi Gehi|00019C46|48883|73814|4450|10000|0||99.99|102.34|0.00|3.14|2300|0|0|01|080004D2|0|41F00000|| +24|2023-10-06T21:17:28.1960000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1D1A|51604|90216|10000|10000|||99.96|99.20|-0.01|0.02|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.74| +21|2023-10-06T21:17:28.1960000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|720003|11B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18363358|40478540|10000|10000|||100.00|80.10|0.00|0.00|48883|73814|4450|10000|||99.99|102.34|0.00|3.14|00019C4E|0|1| +38|2023-10-06T21:17:28.1970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|59054|90216|10000|10000|0||99.96|99.20|-0.01|0.02|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:28.1970000-07:00|10FF0003|Gegehi Gehi|005A5A23|48883|73814|4450|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:17:28.2410000-07:00|40022B8A|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|4|14720000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|47837|81177|2407|10000|||99.93|99.93|0.00|3.14|73956|77430|10000|10000|||96.82|95.60|0.00|2.17|00019C4F|0|1| +24|2023-10-06T21:17:28.2410000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|23EF|33430|82773|8400|10000|||99.53|100.11|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.74| +38|2023-10-06T21:17:28.2410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|42629|82773|8400|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:27.7360000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:17:28.2850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88795|129844|10000|10000|0||98.18|92.48|0.00|-0.48|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:28.2850000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:17:28.2850000-07:00|10FF0009|Zewo Negiwo|005A5A18|47837|81177|2407|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:28.2850000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0009|Zewo Negiwo|00|81177|129844| +38|2023-10-06T21:17:28.2850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|59054|90216|10000|10000|0||99.96|99.20|-0.01|0.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:28.2850000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T21:17:28.2850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|36413|81809|2900|10000|0||99.57|99.47|0.00|0.91|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:28.2850000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +38|2023-10-06T21:17:28.2850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87580|129071|8900|10000|0||102.17|96.41|0.00|0.74|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:28.2850000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +38|2023-10-06T21:17:28.2850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46992|81541|1150|10000|0||99.90|97.73|0.00|2.74|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:28.2850000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +38|2023-10-06T21:17:28.2850000-07:00|10FF0003|Gegehi Gehi|005A5A23|48883|73814|4450|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:28.2850000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +38|2023-10-06T21:17:28.2850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|42629|82773|8400|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:28.2850000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|82773|129844| +24|2023-10-06T21:17:28.3290000-07:00|10FF0003|Gegehi Gehi|HoT|0|1A64|48883|73814|4450|10000|||99.99|102.34|0.00|3.14|40022B8A|Ruby Carbuncle|0|73956|77430|10000|10000|||96.82|95.60|0.00|1.80| +38|2023-10-06T21:17:28.3290000-07:00|10FF0003|Gegehi Gehi|005A5A23|55639|73814|4450|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:27.8470000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:17:28.3740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D45|88795|129844|10000|10000|||97.86|92.96|-0.02|-0.52|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +24|2023-10-06T21:17:28.3740000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D1F|87580|129071|8900|10000|||102.61|96.89|0.00|0.74|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +24|2023-10-06T21:17:28.3740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D1D|46992|81541|1150|10000|||99.90|97.73|0.00|2.98|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +24|2023-10-06T21:17:28.3740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D18|59054|90216|10000|10000|||99.96|99.20|0.00|0.02|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +24|2023-10-06T21:17:28.3740000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D6D|36413|81809|2900|10000|||99.57|99.47|0.00|1.56|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +24|2023-10-06T21:17:28.3740000-07:00|10FF0009|Zewo Negiwo|HoT|798|D4A|47837|81177|2407|10000|||99.93|99.93|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +24|2023-10-06T21:17:28.3740000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D3C|42629|82773|8400|10000|||99.53|100.11|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +24|2023-10-06T21:17:28.3740000-07:00|10FF0003|Gegehi Gehi|HoT|798|D6B|48883|73814|4450|10000|||99.99|102.34|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +24|2023-10-06T21:17:28.3740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|19C5|46992|81541|1150|10000|||99.90|97.73|0.00|2.98|10FF0004|Buhojaqe Zijaqe|0|46992|81541|1150|10000|||99.90|97.73|0.00|2.98| +38|2023-10-06T21:17:28.3740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92192|129844|10000|10000|0||97.86|92.96|-0.02|-0.52|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:28.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +30|2023-10-06T21:17:28.3740000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T21:17:28.3740000-07:00|10FF0009|Zewo Negiwo|005A5A18|51239|81177|2407|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:28.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:17:28.3740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62406|90216|10000|10000|0||99.96|99.20|0.00|0.02|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:28.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:28.3740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|39850|81809|2900|10000|0||99.57|99.47|0.00|1.56|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:28.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:28.3740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90939|129071|8900|10000|0||102.61|96.89|0.00|0.74|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:28.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:17:28.3740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56946|81541|1150|10000|0||99.90|97.73|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:28.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:28.3740000-07:00|10FF0003|Gegehi Gehi|005A5A23|59074|73814|4450|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:28.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:17:28.3740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46017|82773|8400|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:28.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:17:28.4180000-07:00|40022472|Zeromus|00019C48|18350522||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:28.4180000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|60640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18353260|40478540|10000|10000|||100.00|80.10|0.00|0.00|59054|90216|10000|10000|||99.96|99.20|0.00|0.02|00019C50|0|1| +261|2023-10-06T21:17:27.9610000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:17:28.4620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1987|92192|129844|10000|10000|||97.53|93.49|0.00|-0.53|10FF0009|Zewo Negiwo|0|51239|81177|2407|10000|||99.93|99.93|0.00|3.14| +24|2023-10-06T21:17:28.4620000-07:00|10FF0006|Wowobora Gogobora|HoT|0|18F9|39850|81809|2900|10000|||99.57|99.47|0.00|2.22|10FF0004|Buhojaqe Zijaqe|0|56946|81541|1150|10000|||99.90|97.73|0.00|3.13| +38|2023-10-06T21:17:28.4620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98727|129844|10000|10000|0||97.53|93.49|0.00|-0.53|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:28.4620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|46243|81809|3450|10000|0||99.57|99.47|0.00|2.22|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:17:28.5080000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BA00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18350522|40478540|10000|10000|||100.00|80.10|0.00|0.00|98727|129844|10000|10000|||97.20|93.99|0.00|-0.54|00019C51|0|1| +261|2023-10-06T21:17:28.0760000-07:00|Change|10FF0003||| +37|2023-10-06T21:17:28.5530000-07:00|40022472|Zeromus|00019C4C|18348275||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:28.5530000-07:00|10FF0009|Zewo Negiwo|HoT|0|19E9|51239|81177|2407|10000|||99.93|99.93|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|56946|81541|1150|10000|||99.90|97.73|0.00|3.14| +24|2023-10-06T21:17:28.5530000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3B09|90939|129071|8900|10000|||103.51|97.81|0.00|0.90|10FF0001|Sesuga Sapisuga|0|90939|129071|8900|10000|||103.51|97.81|0.00|0.90| +38|2023-10-06T21:17:28.5530000-07:00|10FF0009|Zewo Negiwo|005A5A18|57872|81177|2407|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:28.5530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106052|129071|8900|10000|0||103.51|97.81|0.00|0.90|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:28.5970000-07:00|10FF0007|Kehabiqo Febiqo|00019C4B|89853||||||97.20|93.99|0.00|-0.54| +37|2023-10-06T21:17:28.6850000-07:00|10FF000A|Dukaro Nezikaro|00019C4A|46017|82773|8400|10000|0||99.53|100.11|0.00|3.12|1E00|0|0|01|090001F1|0|41700000|| +38|2023-10-06T21:17:28.6860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46017|82773|8400|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:28.2750000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:17:28.7740000-07:00|40022472|Zeromus|00019C4E|18343740||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:28.8640000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|315D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18348275|40478540|10000|10000|||100.00|80.10|0.00|0.00|56946|81541|1150|10000|||99.90|97.73|0.00|3.14|00019C52|0|1| +261|2023-10-06T21:17:28.4660000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:28.9960000-07:00|10FF0009|Zewo Negiwo|00019C4D|62043|81177|2407|10000|0||99.93|99.93|0.00|3.14|1800|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:17:28.9960000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:17:28.9960000-07:00|40022472|Zeromus|00019C49|18311842||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:28.9960000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15F10000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|18343740|40478540|10000|10000|||100.00|80.10|0.00|0.00|89853|129844|10000|10000|||96.08|96.39|0.00|-0.44|00019C53|0|1| +37|2023-10-06T21:17:29.0410000-07:00|40022472|Zeromus|00019C51|18308866||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:29.0410000-07:00|10FF0009|Zewo Negiwo|00019C4F|67277||||||99.93|99.93|0.00|3.14| +261|2023-10-06T21:17:28.4660000-07:00|Change|10FF0008||||||||||||| +37|2023-10-06T21:17:29.1300000-07:00|10FF000A|Dukaro Nezikaro|00019C4D|50241|82773|8400|10000|0||99.53|100.11|0.00|3.12|1E01|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:17:29.1300000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +20|2023-10-06T21:17:29.1300000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.93|99.93|0.00|3.14| +21|2023-10-06T21:17:29.1740000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|41750000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|18308866|40478540|10000|10000|||100.00|80.10|0.00|0.00|106052|129071|8900|10000|||105.67|98.63|0.00|-2.84|00019C54|0|1| +38|2023-10-06T21:17:29.1740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106052|129071|8900|10000|0||105.67|98.63|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:29.1740000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +04|2023-10-06T21:17:28.6970000-07:00|40022B87|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||101.49|85.01|0.00|-2.85| +261|2023-10-06T21:17:28.6970000-07:00|Remove|40022B87| +21|2023-10-06T21:17:29.2180000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|16ED0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|18308866|40478540|10000|10000|||100.00|80.10|0.00|0.00|50241|82773|8400|10000|||99.53|100.11|0.00|3.12|00019C55|0|1| +37|2023-10-06T21:17:29.2630000-07:00|10FF0006|Wowobora Gogobora|00019C4D|50416|81809|3450|10000|0||99.57|99.47|0.00|3.12|1B02|0|0|01|96|0|41700000|| +26|2023-10-06T21:17:29.2630000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +261|2023-10-06T21:17:28.9210000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:17:29.3520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106052|129071|8900|10000|0||105.67|98.63|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:29.3520000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:17:29.3950000-07:00|10FF0008|Kokosaze Lulusaze|00019C4D|66641|90216|10000|10000|0||99.96|99.20|0.00|3.14|1F03|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:17:29.3950000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +21|2023-10-06T21:17:29.4400000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56946|81541|750|10000|||99.90|97.73|0.00|3.14|56946|81541|750|10000|||99.90|97.73|0.00|3.14|00019C56|0|1| +38|2023-10-06T21:17:29.4400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|66641|90216|10000|10000|0||99.96|99.20|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:29.4400000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:17:29.0340000-07:00|Change|10FF0006||||||| +37|2023-10-06T21:17:29.5300000-07:00|40022472|Zeromus|00019C53|18303249||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:29.5300000-07:00|10FF0004|Buhojaqe Zijaqe|00019C4D|61066|81541|750|10000|0||99.90|97.73|0.00|3.14|1C04|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:17:29.5300000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:17:29.5740000-07:00|40022472|Zeromus|00019C50|18278573||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:29.5740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50416|81809|3450|10000|0||99.57|99.47|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:29.5740000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +04|2023-10-06T21:17:29.1410000-07:00|40022BA5|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.42|97.31|0.00|0.77| +261|2023-10-06T21:17:29.1410000-07:00|Remove|40022BA5| +39|2023-10-06T21:17:29.6180000-07:00|10FF0009|Zewo Negiwo|68088|81177|2628|10000|||99.93|99.93|0.00|3.14| +37|2023-10-06T21:17:29.6630000-07:00|10FF0003|Gegehi Gehi|00019C4D|63307|73814|4450|10000|0||99.99|102.34|0.00|3.14|2305|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:17:29.6630000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:17:29.6630000-07:00|40022472|Zeromus|00019C52|18265936||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:29.7080000-07:00|10FF0008|Kokosaze Lulusaze|67543|90216|10000|10000|||100.03|99.20|0.00|2.42| +38|2023-10-06T21:17:29.7080000-07:00|10FF0009|Zewo Negiwo|005A5A18|68088|81177|2628|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:29.7080000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0009|Zewo Negiwo|00|81177|90216| +37|2023-10-06T21:17:29.7520000-07:00|40022472|Zeromus|00019C55|18260067||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:29.7520000-07:00|40022472|Zeromus|DoT|0|1A9C|18265936|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|61066|81541|750|10000|||99.90|97.74|0.00|-2.82| +38|2023-10-06T21:17:29.7520000-07:00|40022472|Zeromus|005A5A00|18253255|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:17:29.2380000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:17:29.7960000-07:00|10FF0001|Sesuga Sapisuga|00019C4D|110316|129071|8900|10000|0||105.67|98.63|0.00|-2.84|1306|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:17:29.7960000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +39|2023-10-06T21:17:29.7960000-07:00|40022B8A|Ruby Carbuncle|73956|77430|10000|10000|||96.82|95.60|0.00|1.13| +20|2023-10-06T21:17:29.8410000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|99.99|102.34|0.00|3.14| +21|2023-10-06T21:17:29.8410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|7F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18253255|40478540|10000|10000|||100.00|80.10|0.00|0.00|50241|82773|8400|10000|||99.53|100.11|0.00|3.12|00019C57|0|1| +36|2023-10-06T21:17:29.8410000-07:00|26D4|3| +38|2023-10-06T21:17:29.8410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|61066|81541|750|10000|0||99.90|97.74|0.00|-2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:29.8410000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +261|2023-10-06T21:17:29.3300000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T21:17:29.8850000-07:00|10FF0001|Sesuga Sapisuga|111606|129071|9100|10000|||105.67|98.63|0.00|-2.84| +39|2023-10-06T21:17:29.8850000-07:00|10FF0004|Buhojaqe Zijaqe|61881|81541|950|10000|||99.90|97.74|0.00|-2.06| +261|2023-10-06T21:17:29.4270000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:17:29.9300000-07:00|10FF0007|Kehabiqo Febiqo|00019C4D|94020|129844|10000|10000|0||95.76|98.02|0.00|0.03|1507|0|0|01|0A000096|0|41700000|| +26|2023-10-06T21:17:29.9300000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +261|2023-10-06T21:17:29.4270000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:17:29.9760000-07:00|10FF0007|Kehabiqo Febiqo|95318|129844|10000|10000|||95.75|98.07|-0.02|-0.14| +21|2023-10-06T21:17:29.9760000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19710003|153A0000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|18253255|40478540|10000|10000|||100.00|80.10|0.00|0.00|50241|82773|8400|10000|||99.53|100.11|0.00|3.12|00019C58|0|1| +38|2023-10-06T21:17:29.9760000-07:00|40022472|Zeromus|005A5A00|18253255|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T21:17:29.9760000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:17:29.9760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111606|129071|9100|10000|0||105.67|98.63|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:29.9760000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +38|2023-10-06T21:17:29.9760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50241|82773|8400|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:29.9760000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +39|2023-10-06T21:17:30.0200000-07:00|10FF0006|Wowobora Gogobora|51234|81809|3650|10000|||99.57|99.47|0.00|3.12| +37|2023-10-06T21:17:30.0640000-07:00|10FF0004|Buhojaqe Zijaqe|00019C56|61881|81541|950|10000|0||99.90|97.76|0.00|-0.59|1C00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:17:30.0640000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:17:30.0640000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|16D20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|18253255|40478540|10000|10000|||100.00|80.10|0.00|0.00|68088|81177|2628|10000|||99.93|99.93|0.00|3.14|00019C59|0|1| +38|2023-10-06T21:17:30.1090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95318|129844|10000|10000|0||95.75|98.07|0.00|-0.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:30.1090000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +261|2023-10-06T21:17:29.6200000-07:00|Change|10FF0008||||||||||||| +38|2023-10-06T21:17:30.2430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50241|82773|8400|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:30.2430000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|82773|90216| +21|2023-10-06T21:17:30.2880000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AB70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18253255|40478540|10000|10000|||100.00|80.10|0.00|0.00|111606|129071|9100|10000|||105.67|98.63|0.00|-2.84|00019C5A|0|1| +31|2023-10-06T21:17:30.2880000-07:00|10FF0001||||| +37|2023-10-06T21:17:30.3770000-07:00|40022472|Zeromus|00019C57|18251221|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000CB6|0|C1700000|| +20|2023-10-06T21:17:30.3770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.87|99.26|0.00|-0.11| +38|2023-10-06T21:17:30.3770000-07:00|10FF0003|Gegehi Gehi|005A5A23|63307|73814|4450|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:30.3770000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +37|2023-10-06T21:17:30.4650000-07:00|40022472|Zeromus|00019C54|18234464|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000CB6|0|C1700000|| +37|2023-10-06T21:17:30.4650000-07:00|10FF0001|Sesuga Sapisuga|00019C54|111606|129071|9500|10000|0||105.67|98.63|0.00|-2.84|1300|0|0|0| +261|2023-10-06T21:17:29.9780000-07:00|Change|10FF0006||||| +21|2023-10-06T21:17:30.5540000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|350003|34980000|10940F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|18234464|40478540|10000|10000|||100.00|80.10|0.00|0.00|51234|81809|3650|10000|||99.57|99.47|0.00|3.12|00019C5B|0|1| +38|2023-10-06T21:17:30.5540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51234|81809|3650|10000|0||99.57|99.47|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:30.5540000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:17:30.2930000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:17:30.7750000-07:00|40022472|Zeromus|00019C58|18229030|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|01000CB6|0|41700000|| +38|2023-10-06T21:17:30.7750000-07:00|40022472|Zeromus|005A5A00|18229030|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:17:30.8200000-07:00|40022472|Zeromus|00019C5A|18226287||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:30.8200000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2A3B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|95318|129844|10000|10000|||95.47|98.55|-0.02|-0.71|18229030|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019C5C|0|1| +21|2023-10-06T21:17:30.9100000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E6A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18229030|40478540|10000|10000|||100.00|80.10|0.00|0.00|67543|90216|10000|10000|||102.40|99.02|0.00|1.65|00019C5D|0|1| +261|2023-10-06T21:17:30.3830000-07:00|Change|10FF0001||| +39|2023-10-06T21:17:30.9540000-07:00|10FF0003|Gegehi Gehi|64045|73814|4650|10000|||99.99|102.34|0.00|3.14| +21|2023-10-06T21:17:30.9540000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1F6C0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|18226287|40478540|10000|10000|||100.00|80.10|0.00|0.00|67543|90216|10000|10000|||102.40|99.02|0.00|1.65|00019C5E|0|1| +261|2023-10-06T21:17:30.4730000-07:00|Change|10FF0003||||| +261|2023-10-06T21:17:30.4730000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:17:30.9990000-07:00|10FF000A|Dukaro Nezikaro|51068|82773|8600|10000|||99.53|100.11|0.00|3.12| +261|2023-10-06T21:17:30.4730000-07:00|Change|10FF000A||| +24|2023-10-06T21:17:31.2210000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|13E5|67543|90216|10000|10000|||102.40|99.02|0.00|-3.01|10FF0004|Buhojaqe Zijaqe|0|61881|81541|950|10000|||99.87|100.11|0.00|3.14| +38|2023-10-06T21:17:31.2210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72636|90216|10000|10000|0||102.40|99.02|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:31.2660000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1446|51068|82773|8600|10000|||99.53|100.11|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|61881|81541|950|10000|||99.87|100.11|0.00|3.14| +21|2023-10-06T21:17:31.2660000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|152003|37C20000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|18226287|40478540|10000|10000|||100.00|80.10|0.00|0.00|64045|73814|4650|10000|||99.99|102.34|0.00|3.14|00019C5F|0|1| +38|2023-10-06T21:17:31.2660000-07:00|10FF0003|Gegehi Gehi|005A5A23|64045|73814|4450|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.2660000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:17:31.2660000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:17:31.2660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56258|82773|8600|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:31.3100000-07:00|10FF0003|Gegehi Gehi|HoT|0|1951|64045|73814|4650|10000|||99.99|102.34|0.00|3.14|40022B8A|Ruby Carbuncle|0|73956|77430|10000|10000|||96.82|95.60|0.00|2.94| +21|2023-10-06T21:17:31.3100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30F70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18226287|40478540|10000|10000|||100.00|80.10|0.00|0.00|61881|81541|950|10000|||99.87|100.11|0.00|3.14|00019C60|0|1| +21|2023-10-06T21:17:31.3100000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51068|82773|8600|10000|||99.53|100.11|0.00|3.12|51068|82773|8600|10000|||99.53|100.11|0.00|3.12|00019C61|0|1| +38|2023-10-06T21:17:31.3100000-07:00|10FF0003|Gegehi Gehi|005A5A23|70526|73814|4450|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:31.3100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56258|82773|8600|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3100000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +37|2023-10-06T21:17:31.3540000-07:00|40022472|Zeromus|00019C59|18220445||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:31.3540000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18226287|40478540|10000|10000|||100.00|80.10|0.00|0.00|64045|73814|4650|10000|||99.99|102.34|0.00|3.14|00019C62|0|1| +24|2023-10-06T21:17:31.3990000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|14D9|72636|90216|10000|10000|||102.40|99.02|0.00|-3.01|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +24|2023-10-06T21:17:31.3990000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D80|51234|81809|3650|10000|||99.57|99.47|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +24|2023-10-06T21:17:31.3990000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CF0|111606|129071|9500|10000|||105.67|98.63|0.00|-2.84|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +24|2023-10-06T21:17:31.3990000-07:00|10FF0009|Zewo Negiwo|HoT|798|D8B|68088|81177|2228|10000|||99.93|99.93|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +24|2023-10-06T21:17:31.3990000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1609|61881|81541|550|10000|||99.87|100.11|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +24|2023-10-06T21:17:31.3990000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D0F|56258|82773|8600|10000|||99.53|100.11|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +24|2023-10-06T21:17:31.3990000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|CDE|95318|129844|10000|10000|||95.26|98.95|0.00|-0.01|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +24|2023-10-06T21:17:31.3990000-07:00|10FF0003|Gegehi Gehi|HoT|798|15E5|70526|73814|4450|10000|||99.99|102.34|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +24|2023-10-06T21:17:31.3990000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1A91|61881|81541|550|10000|||99.87|100.11|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|61881|81541|550|10000|||99.87|100.11|0.00|3.14| +38|2023-10-06T21:17:31.3990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98612|129844|10000|10000|0||95.26|98.95|0.00|-0.01|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:31.3990000-07:00|10FF0009|Zewo Negiwo|005A5A18|71555|81177|2228|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:17:31.3990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77973|90216|10000|10000|0||102.40|99.02|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:31.3990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54690|81809|3650|10000|0||99.57|99.47|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:31.3990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|114918|129071|9500|10000|0||105.67|98.63|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3990000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:17:31.3990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74323|81541|1100|10000|0||99.87|100.11|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:31.3990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4450|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:17:31.3990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59601|82773|8600|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.3990000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +21|2023-10-06T21:17:31.4430000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|34DA0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|18220445|40478540|10000|10000|||100.00|80.10|0.00|0.00|95318|129844|10000|10000|||95.26|98.95|0.00|-0.01|00019C63|0|1| +24|2023-10-06T21:17:31.4870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1AE5|98612|129844|10000|10000|||95.26|98.95|0.00|2.90|10FF0009|Zewo Negiwo|0|71555|81177|2228|10000|||99.93|99.93|0.00|3.14| +24|2023-10-06T21:17:31.4870000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1984|54690|81809|3650|10000|||99.57|99.47|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|74323|81541|1100|10000|||99.87|100.11|0.00|3.14| +261|2023-10-06T21:17:31.0050000-07:00|Change|10FF0006||||||||||||||| +38|2023-10-06T21:17:31.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105497|129844|10000|10000|0||95.26|98.95|0.00|2.90|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:31.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|61222|81809|4200|10000|0||99.57|99.47|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:31.5310000-07:00|10FF0009|Zewo Negiwo|HoT|0|14A0|71555|81177|2228|10000|||99.93|99.93|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|74323|81541|1100|10000|||99.87|100.11|0.00|3.14| +20|2023-10-06T21:17:31.5310000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.93|99.93|0.00|3.14| +38|2023-10-06T21:17:31.5310000-07:00|10FF0009|Zewo Negiwo|005A5A18|76835|81177|2228|10000|0||99.93|99.93|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:31.5760000-07:00|40022472|Zeromus|DoT|A92|394|18220445|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|61222|81809|4200|10000|||99.57|99.47|0.00|3.12| +37|2023-10-06T21:17:31.5760000-07:00|40022472|Zeromus|00019C5B|18206065||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:31.5760000-07:00|10FF0006|Wowobora Gogobora|00019C5B|61222|81809|4200|10000|0||99.57|99.47|0.00|3.12|1B00|0|0|01|04000A92|0|41700000|| +26|2023-10-06T21:17:31.5760000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T21:17:31.5760000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|19D8|114918|129071|9500|10000|||105.67|98.63|0.00|-2.84|40022B8A|Ruby Carbuncle|0|73956|77430|10000|10000|||96.82|95.60|0.00|2.81| +21|2023-10-06T21:17:31.5760000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|356003|35FA0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|18220445|40478540|10000|10000|||100.00|80.10|0.00|0.00|61222|81809|4200|10000|||99.57|99.47|0.00|3.12|00019C64|0|1| +38|2023-10-06T21:17:31.5760000-07:00|40022472|Zeromus|005A5A00|18206065|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:17:31.5760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121534|129071|9500|10000|0||105.67|98.63|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:31.6210000-07:00|10FF0007|Kehabiqo Febiqo|00019C5C|94686||||||95.26|98.95|0.00|2.90| +38|2023-10-06T21:17:31.6210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74323|81541|1100|10000|0||99.87|100.11|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:31.6210000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:17:31.6650000-07:00|40022472|Zeromus|00019C5D|18202375||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:31.6650000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|273D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|18206065|40478540|10000|10000|||100.00|80.10|0.00|0.00|121534|129071|9500|10000|||105.67|98.63|0.00|-2.84|00019C65|0|1| +38|2023-10-06T21:17:31.6650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121534|129071|9500|10000|0||105.67|98.63|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.6650000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:17:31.7530000-07:00|40022472|Zeromus|00019C5E|18194331||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:31.2960000-07:00|Change|40022BAA||||| +261|2023-10-06T21:17:31.2960000-07:00|Change|10FF0009||||||||||||| +38|2023-10-06T21:17:31.7980000-07:00|40022BEB||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:17:31.7980000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18194331|40478540|10000|10000|||100.00|80.10|0.00|0.00|77973|90216|10000|10000|||102.51|99.00|-0.02|2.42|00019C66|0|1| +38|2023-10-06T21:17:31.7980000-07:00|40022BEB||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:17:31.8420000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59601|82773|8600|10000|||99.53|100.11|0.00|3.12|59601|82773|8600|10000|||99.53|100.11|0.00|3.12|00019C67|0|1| +38|2023-10-06T21:17:31.8420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59601|82773|8600|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:31.8420000-07:00|1F0|Mudra|5.47|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +37|2023-10-06T21:17:31.8870000-07:00|40022472|Zeromus|00019C62|18194330||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:31.8870000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18194331|40478540|10000|10000|||100.00|80.10|0.00|0.00|94686|129844|10000|10000|||95.26|98.95|0.00|2.90|00019C68|0|1| +21|2023-10-06T21:17:31.9310000-07:00|40022B8A|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|14F70000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|61222|81809|3900|10000|||99.57|99.47|0.00|3.12|73956|77430|10000|10000|||96.82|95.60|0.00|2.21|00019C69|0|1| +261|2023-10-06T21:17:31.4900000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:17:31.9770000-07:00|10FF0004|Buhojaqe Zijaqe|40A1|Summon Seraph|10FF0004|Buhojaqe Zijaqe|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|74323|81541|1100|10000|||99.87|100.11|0.00|3.14|74323|81541|1100|10000|||99.87|100.11|0.00|3.14|00019C6A|0|1| +261|2023-10-06T21:17:31.4900000-07:00|Add|40022BE9||||||||||||||||||||||||| +261|2023-10-06T21:17:31.4900000-07:00|Change|40022B8A||||||||| +261|2023-10-06T21:17:31.4900000-07:00|Change|40022B8A||||||||| +03|2023-10-06T21:17:31.4900000-07:00|40022BEB|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.62|97.75|0.00|-0.02| +261|2023-10-06T21:17:31.4900000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:17:31.4900000-07:00|Add|40022BEB||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:31.4900000-07:00|Remove|40022BA3| +261|2023-10-06T21:17:31.4900000-07:00|Change|40022BEB||| +38|2023-10-06T21:17:32.0210000-07:00|40022BEC||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:17:32.0210000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|51B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18194330|40478540|10000|10000|||100.00|80.10|0.00|0.00|59601|82773|8600|10000|||99.53|100.11|0.00|3.12|00019C6B|0|1| +38|2023-10-06T21:17:32.0210000-07:00|40022BEC||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:32.0650000-07:00|40022472|Zeromus|00019C63|18180800||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:32.0650000-07:00|40022472|Zeromus|00019C5F|18166526||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:32.1110000-07:00|40022472|Zeromus|00019C60|18153991||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:32.1990000-07:00|40022472|Zeromus|00019C64|18140173||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:32.1990000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18153991|40478540|10000|10000|||100.00|80.10|0.00|0.00|74323|81541|1100|10000|||99.87|100.11|0.00|3.14|00019C6C|0|1| +21|2023-10-06T21:17:32.2880000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18153991|40478540|10000|10000|||100.00|80.10|0.00|0.00|61222|81809|3900|10000|||99.57|99.47|0.00|3.12|00019C6D|0|1| +21|2023-10-06T21:17:32.2880000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|352003|41270000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|18153991|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4450|10000|||99.99|102.34|0.00|3.14|00019C6E|0|1| +38|2023-10-06T21:17:32.2880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|0||99.99|102.34|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:32.2880000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:17:32.3330000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|250003|5FF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18140173|40478540|10000|10000|||100.00|80.10|0.00|0.00|59601|82773|8600|10000|||99.53|100.11|0.00|3.12|00019C6F|0|1| +38|2023-10-06T21:17:32.3330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59601|82773|8600|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:32.3330000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +30|2023-10-06T21:17:32.3330000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:17:32.4210000-07:00|40022472|Zeromus|00019C68|18137269||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:32.4210000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77973|90216|10000|10000|||102.77|98.95|0.00|-2.99|77973|90216|10000|10000|||102.77|98.95|0.00|-2.99|00019C70|0|1| +261|2023-10-06T21:17:31.9280000-07:00|Add|40022BEC||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:32.4210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77973|90216|10000|10000|0||102.77|98.95|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:32.4210000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +03|2023-10-06T21:17:31.9280000-07:00|40022BEC|Seraph|00|5A|10FF0004|00||8227|10487|73956|77430|10000|10000|||96.83|95.63|0.00|3.14| +21|2023-10-06T21:17:32.4650000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|26520000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|18137269|40478540|10000|10000|||100.00|80.10|0.00|0.00|76835|81177|2228|10000|||99.93|99.93|0.00|3.14|00019C71|0|1| +261|2023-10-06T21:17:32.0460000-07:00|Change|40022BEC||| +261|2023-10-06T21:17:32.0460000-07:00|Change|10FF0006||| +37|2023-10-06T21:17:32.5550000-07:00|40022472|Zeromus|00019C6B|18135962||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:32.5550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|A910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18137269|40478540|10000|10000|||100.00|80.10|0.00|0.00|121534|129071|9500|10000|||105.67|98.63|0.00|-2.84|00019C72|0|1| +31|2023-10-06T21:17:32.5550000-07:00|10FF0001||||| +37|2023-10-06T21:17:32.5990000-07:00|40022472|Zeromus|00019C66|18130654||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:32.5990000-07:00|10FF0009|Zewo Negiwo|77646|81177|2049|10000|||99.93|99.93|0.00|3.14| +21|2023-10-06T21:17:32.5990000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|712003|180E0000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|18137269|40478540|10000|10000|||100.00|80.10|0.00|0.00|121534|129071|9500|10000|||105.67|98.63|0.00|-2.84|00019C73|0|1| +261|2023-10-06T21:17:32.1440000-07:00|Change|40022490||||||||| +261|2023-10-06T21:17:32.1440000-07:00|Change|4002248F||||||||| +20|2023-10-06T21:17:32.6870000-07:00|40022472|Zeromus|8B5E|Sparking Flare|40022472|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:17:32.6870000-07:00|4002248F|Zeromus|8B60|Flare|4002248F|Zeromus|7.700|105.00|100.00|0.00|0.00| +20|2023-10-06T21:17:32.6870000-07:00|40022490|Zeromus|8B60|Flare|40022490|Zeromus|7.700|95.00|100.00|0.00|0.00| +261|2023-10-06T21:17:32.1440000-07:00|Change|40022472||||||||||||| +37|2023-10-06T21:17:32.7320000-07:00|40022472|Zeromus|00019C6C|18130493||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:32.7320000-07:00|10FF0008|Kokosaze Lulusaze|78875|90216|10000|10000|||102.77|98.95|0.00|-2.99| +24|2023-10-06T21:17:32.7780000-07:00|40022472|Zeromus|DoT|0|11CD|18130493|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|74323|81541|1100|10000|||100.33|100.04|0.00|2.06| +20|2023-10-06T21:17:32.7780000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.33|100.04|0.00|2.06| +38|2023-10-06T21:17:32.7780000-07:00|40022472|Zeromus|005A5A00|18125936|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BEF||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BEE||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BED||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BF1||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BF2||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BF3||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BF0||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BF4||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BF5||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Add|40022BF6||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BF4||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BF5||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BF0||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BF2||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BF6||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BEF||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BF1||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BED||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BEE||| +261|2023-10-06T21:17:32.2440000-07:00|Change|40022BF3||| +37|2023-10-06T21:17:32.8220000-07:00|40022472|Zeromus|00019C6D|18125863||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:17:32.8220000-07:00|40022BEB|Carbuncle|40022BEB|Carbuncle|01| +261|2023-10-06T21:17:32.3350000-07:00|Change|40022BEB||| +39|2023-10-06T21:17:32.8670000-07:00|10FF0001|Sesuga Sapisuga|122824|129071|9700|10000|||105.67|98.63|0.00|-2.84| +261|2023-10-06T21:17:32.3350000-07:00|Change|10FF0001||| +36|2023-10-06T21:17:32.8670000-07:00|27B0|3| +39|2023-10-06T21:17:32.9120000-07:00|10FF0004|Buhojaqe Zijaqe|75138|81541|1300|10000|||100.44|100.02|0.00|2.33| +37|2023-10-06T21:17:32.9560000-07:00|40022472|Zeromus|00019C65|18115818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:32.9560000-07:00|10FF0001|Sesuga Sapisuga|00019C65|122824|129071|10000|10000|0||105.67|98.63|0.00|-2.84|1300|0|0|0| +37|2023-10-06T21:17:32.9560000-07:00|40022472|Zeromus|00019C6F|18091255||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:33.0010000-07:00|10FF0007|Kehabiqo Febiqo|95984|129844|10000|10000|||95.26|98.95|0.00|2.90| +39|2023-10-06T21:17:33.0010000-07:00|10FF0006|Wowobora Gogobora|62040|81809|4100|10000|||99.57|99.47|0.00|3.12| +261|2023-10-06T21:17:32.4300000-07:00|Change|10FF0003||| +261|2023-10-06T21:17:32.5400000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:33.0470000-07:00|40022472|Zeromus|00019C6E|18074576||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:17:33.0470000-07:00|40022BEC|Seraph|40022BEC|Seraph|01| +261|2023-10-06T21:17:32.5400000-07:00|Change|40022BEC||| +37|2023-10-06T21:17:33.0910000-07:00|40022472|Zeromus|00019C72|18071871||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:33.0910000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|1AC50000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|18091255|40478540|10000|10000|||100.00|80.10|0.00|0.00|61222|81809|3900|10000|||99.57|99.47|0.00|3.12|00019C74|0|1| +261|2023-10-06T21:17:32.6510000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:17:32.6510000-07:00|Change|40022490||||||||||||| +26|2023-10-06T21:17:33.4480000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:17:33.4480000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|205B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18071871|40478540|10000|10000|||100.00|80.10|0.00|0.00|78875|90216|10000|10000|||102.77|98.95|0.00|-2.99|00019C75|0|1| +261|2023-10-06T21:17:33.1140000-07:00|Change|10FF0006||| +21|2023-10-06T21:17:33.5820000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18071871|40478540|10000|10000|||100.00|80.10|0.00|0.00|78875|90216|10000|10000|||102.77|98.95|0.00|-2.99|00019C76|0|1| +37|2023-10-06T21:17:33.6270000-07:00|40022472|Zeromus|00019C73|18065713|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T21:17:33.6270000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:17:33.7160000-07:00|40022472|Zeromus|00019C74|18058860||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:33.7160000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32230000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18065713|40478540|10000|10000|||100.00|80.10|0.00|0.00|75138|81541|1300|10000|||100.79|99.96|0.00|-3.10|00019C77|0|1| +37|2023-10-06T21:17:33.7600000-07:00|40022472|Zeromus|00019C71|18049050||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:33.8930000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|31900000|143E|340000|4|18418000|11B|2A8000|0|0|0|0|0|0|0|0|18049050|40478540|10000|10000|||100.00|80.10|0.00|0.00|95984|129844|10000|10000|||95.26|98.95|0.00|2.90|00019C78|0|1| +261|2023-10-06T21:17:33.4080000-07:00|Change|10FF0001||| +39|2023-10-06T21:17:33.9820000-07:00|10FF0003|Gegehi Gehi|73814|73814|4350|10000|||99.99|102.34|0.00|3.14| +39|2023-10-06T21:17:33.9820000-07:00|10FF000A|Dukaro Nezikaro|60428|82773|8800|10000|||99.53|100.11|0.00|3.12| +261|2023-10-06T21:17:33.4080000-07:00|Change|10FF000A||| +261|2023-10-06T21:17:33.5060000-07:00|Change|10FF0003||| +261|2023-10-06T21:17:33.5060000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:17:33.5060000-07:00|Change|40022B8A||||||| +21|2023-10-06T21:17:34.0270000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|135A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18049050|40478540|10000|10000|||100.00|80.10|0.00|0.00|78875|90216|10000|10000|||102.77|98.95|0.00|-2.99|00019C79|0|1| +38|2023-10-06T21:17:34.0270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122824|129071|10000|10000|0||105.67|98.63|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.0270000-07:00|13D|Fey Illumination|0.00|40022B8A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T21:17:34.0270000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|60428|82773|8800|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.0270000-07:00|2C|Brink of Death|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|82773|| +37|2023-10-06T21:17:34.0720000-07:00|40022472|Zeromus|00019C75|18040767||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:34.1610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95984|129844|10000|10000|0||95.26|98.95|0.00|2.90|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.1610000-07:00|13D|Fey Illumination|0.00|40022B8A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +24|2023-10-06T21:17:34.2060000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|19E0|78875|90216|10000|10000|||102.77|98.95|0.00|-2.99|10FF0004|Buhojaqe Zijaqe|0|75138|81541|900|10000|||100.79|99.96|0.00|-3.10| +21|2023-10-06T21:17:34.2060000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18049050|40478540|10000|10000|||100.00|80.10|0.00|0.00|60428|82773|8800|10000|||99.53|100.11|0.00|3.12|00019C7A|0|1| +38|2023-10-06T21:17:34.2060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|85499|90216|10000|10000|0||102.77|98.95|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:33.6900000-07:00|Change|40022BEC||||||||| +24|2023-10-06T21:17:34.2500000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1448|60428|82773|8800|10000|||99.53|100.11|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|75138|81541|900|10000|||100.79|99.97|0.00|2.77| +38|2023-10-06T21:17:34.2500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65620|82773|8800|10000|0||99.53|100.11|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:34.2950000-07:00|10FF0003|Gegehi Gehi|HoT|0|13B4|73814|73814|4350|10000|||99.99|102.31|0.00|-3.14|40022B8A|Ruby Carbuncle|0|0|77430|0|10000|||96.82|95.60|0.00|0.62| +21|2023-10-06T21:17:34.2950000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|28D40000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|18040767|40478540|10000|10000|||100.00|80.10|0.00|0.00|122824|129071|10000|10000|||105.67|98.63|0.00|-2.84|00019C7B|0|1| +38|2023-10-06T21:17:34.2950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62040|81809|3800|10000|0||99.35|99.55|0.00|-1.53|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.2950000-07:00|13D|Fey Illumination|0.00|40022B8A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T21:17:34.2950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122824|129071|10000|10000|0||105.67|98.63|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.2950000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:17:34.2950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|0||99.99|102.31|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:34.3380000-07:00|40022472|Zeromus|00019C76|18038589||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:34.3390000-07:00|40022BEC|Seraph|005A5A00|73956|77430|10000|10000|0||96.88|95.61|0.00|3.10|0|0|0||||||| +26|2023-10-06T21:17:34.3390000-07:00|30|Well Fed|1968.69|10FF0004|Buhojaqe Zijaqe|40022BEC|Seraph|2968|77430|81541| +26|2023-10-06T21:17:34.3390000-07:00|7AD|Summon Order III|30.00|40022BEC|Seraph|40022BEC|Seraph|01|77430|77430| +21|2023-10-06T21:17:34.3390000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75138|81541|900|10000|||100.79|99.97|0.00|2.77|75138|81541|900|10000|||100.79|99.97|0.00|2.77|00019C7C|0|1| +24|2023-10-06T21:17:34.3840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1300|75138|81541|900|10000|||100.79|99.98|0.00|1.75|10FF0004|Buhojaqe Zijaqe|0|75138|81541|900|10000|||100.79|99.98|0.00|1.75| +38|2023-10-06T21:17:34.3840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80002|81541|1450|10000|0||100.79|99.98|0.00|1.75|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:34.4280000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|85499|90216|10000|10000|0||102.77|98.95|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.4280000-07:00|13D|Fey Illumination|0.00|40022B8A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +24|2023-10-06T21:17:34.4720000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|194A|95984|129844|10000|10000|||95.20|98.93|0.00|3.04|10FF0009|Zewo Negiwo|0|77646|81177|2049|10000|||102.75|99.42|0.00|1.70| +24|2023-10-06T21:17:34.4720000-07:00|40022472|Zeromus|DoT|A92|756|18038589|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|62040|81809|3800|10000|||99.01|99.66|0.00|-1.34| +24|2023-10-06T21:17:34.4720000-07:00|10FF0006|Wowobora Gogobora|HoT|0|18B7|62040|81809|3800|10000|||99.01|99.66|0.00|-1.34|10FF0004|Buhojaqe Zijaqe|0|75138|81541|900|10000|||100.79|99.98|0.00|1.75| +38|2023-10-06T21:17:34.4720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102458|129844|10000|10000|0||95.20|98.93|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:34.4720000-07:00|40022472|Zeromus|005A5A00|18036711|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T21:17:34.4720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|68367|81809|4350|10000|0||99.01|99.66|0.00|-1.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:34.0420000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:17:34.5170000-07:00|40022472|Zeromus|00019C77|18023876||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:17:34.5170000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|1D1D0000|1D0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|62040|81809|3800|10000|||99.01|99.66|0.00|-1.34|73956|77430|10000|10000|||96.99|95.56|0.00|3.00|00019C7D|0|8| +22|2023-10-06T21:17:34.5170000-07:00|40022BEC|Seraph|40A3|Consolation|10FF000A|Dukaro Nezikaro|4|1C8B0000|8B0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|65620|82773|8800|10000|||99.52|100.11|0.00|3.14|73956|77430|10000|10000|||96.99|95.56|0.00|3.00|00019C7D|1|8| +22|2023-10-06T21:17:34.5170000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|200004|2E020000|20E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|85499|90216|10000|10000|||102.77|98.95|0.00|-2.99|73956|77430|10000|10000|||96.99|95.56|0.00|3.00|00019C7D|2|8| +22|2023-10-06T21:17:34.5170000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0009|Zewo Negiwo|4|1DC20000|C20E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|77646|81177|2049|10000|||102.75|99.42|0.00|1.70|73956|77430|10000|10000|||96.99|95.56|0.00|3.00|00019C7D|3|8| +22|2023-10-06T21:17:34.5170000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1D030000|30E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|75138|81541|900|10000|||100.79|99.98|0.00|1.75|73956|77430|10000|10000|||96.99|95.56|0.00|3.00|00019C7D|4|8| +22|2023-10-06T21:17:34.5170000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|4|1D5A0000|5A0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|73814|73814|4350|10000|||99.97|102.24|0.00|-3.14|73956|77430|10000|10000|||96.99|95.56|0.00|3.00|00019C7D|5|8| +22|2023-10-06T21:17:34.5170000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|200004|30080000|80E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|95984|129844|10000|10000|||95.20|98.93|0.00|3.04|73956|77430|10000|10000|||96.99|95.56|0.00|3.00|00019C7D|6|8| +22|2023-10-06T21:17:34.5170000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|1C380000|380E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|122824|129071|10000|10000|||105.74|98.61|0.00|-2.91|73956|77430|10000|10000|||96.99|95.56|0.00|3.00|00019C7D|7|8| +24|2023-10-06T21:17:34.5170000-07:00|10FF0009|Zewo Negiwo|HoT|0|1A1D|77646|81177|2049|10000|||102.75|99.42|0.00|1.70|10FF0004|Buhojaqe Zijaqe|0|75138|81541|900|10000|||100.79|99.98|0.00|1.75| +38|2023-10-06T21:17:34.5170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102458|129844|10000|10000|9||95.20|98.93|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.5170000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:17:34.5170000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2049|10000|9||102.75|99.42|0.00|1.70|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.5170000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:17:34.5170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|85499|90216|10000|10000|13||102.77|98.95|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.5170000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:17:34.5170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|68367|81809|4350|10000|9||99.01|99.66|0.00|-1.34|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.5170000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T21:17:34.5170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122824|129071|10000|10000|5||105.74|98.61|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.5170000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T21:17:34.5170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80002|81541|1450|10000|9||100.79|99.98|0.00|1.75|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.5170000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T21:17:34.5170000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|10||99.97|102.24|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.5170000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:17:34.5170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65620|82773|8800|10000|8||99.52|100.11|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.5170000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +261|2023-10-06T21:17:34.0420000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:17:34.5610000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1955|122824|129071|10000|10000|||106.12|98.52|0.00|-2.91|40022B8A|Ruby Carbuncle|0|0|77430|0|10000|||96.82|95.60|0.00|0.62| +38|2023-10-06T21:17:34.5610000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2049|10000|9||103.00|99.39|0.00|1.64|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.5610000-07:00|13D|Fey Illumination|0.00|40022B8A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:17:34.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||106.12|98.52|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:17:34.6060000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|1BC80000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|18023876|40478540|10000|10000|||100.00|80.10|0.00|0.00|68367|81809|4350|10000|||98.87|99.70|0.00|-1.27|00019C7E|0|1| +37|2023-10-06T21:17:34.6500000-07:00|40022472|Zeromus|00019C79|18018922||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:34.6950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65620|82773|8800|10000|8||99.50|100.11|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.6950000-07:00|13D|Fey Illumination|0.00|40022B8A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:17:34.7390000-07:00|40022472|Zeromus|00019C7A|18015819||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:34.7390000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|752003|2DE30000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|18018922|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4350|10000|||100.92|100.98|0.00|2.81|00019C7F|0|1| +21|2023-10-06T21:17:34.8290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|70A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18015819|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||106.35|98.47|0.00|-2.91|00019C80|0|1| +21|2023-10-06T21:17:34.8290000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18015819|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4350|10000|||101.62|100.53|0.00|-3.02|00019C81|0|1| +38|2023-10-06T21:17:34.8290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80002|81541|1450|10000|9||102.90|100.62|0.00|1.44|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.8290000-07:00|13D|Fey Illumination|0.00|40022B8A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +31|2023-10-06T21:17:34.8290000-07:00|10FF0001||||| +26|2023-10-06T21:17:34.9180000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:17:34.9180000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18015819|40478540|10000|10000|||100.00|80.10|0.00|0.00|85499|90216|10000|10000|||102.81|98.95|0.00|2.88|00019C82|0|1| +21|2023-10-06T21:17:34.9620000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65620|82773|8800|10000|||98.13|99.17|0.00|-3.11|65620|82773|8800|10000|||98.13|99.17|0.00|-3.11|00019C83|0|1| +38|2023-10-06T21:17:34.9620000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|10||102.46|99.98|0.00|-3.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:34.9620000-07:00|13D|Fey Illumination|0.00|40022B8A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:17:34.9620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65620|82773|8800|10000|8||98.13|99.17|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:34.9620000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:17:34.5220000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:17:35.1410000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|18015819|40478540|10000|10000|||100.00|80.10|0.00|0.00|80002|81541|1450|10000|||104.01|100.63|0.00|1.55|00019C84|0|1| +261|2023-10-06T21:17:34.6390000-07:00|Change|40022BEC||||||||| +37|2023-10-06T21:17:35.2310000-07:00|40022472|Zeromus|00019C7E|18008707||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:35.2740000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|ACC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18015819|40478540|10000|10000|||100.00|80.10|0.00|0.00|102458|129844|10000|10000|||92.47|98.92|-0.01|3.14|00019C85|0|1| +261|2023-10-06T21:17:34.8650000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:17:35.3640000-07:00|40022472|Zeromus|00019C80|18006905||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:35.3640000-07:00|40022472|Zeromus|00019C7F|17995158||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:35.3640000-07:00|40022472|Zeromus|00019C81|17995157||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:35.4090000-07:00|40022472|Zeromus|00019C78|17982469||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:35.4090000-07:00|10FF0007|Kehabiqo Febiqo|00019C78|108667||||||92.45|98.92|0.00|3.14| +37|2023-10-06T21:17:35.4090000-07:00|10FF0006|Wowobora Gogobora|00019C7D|75820|81809|4050|10000|9||98.62|99.78|0.00|3.07|1B00|0|0|01|0500077D|0|41E8DD2C|| +21|2023-10-06T21:17:35.4090000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18008707|40478540|10000|10000|||100.00|80.10|0.00|0.00|68367|81809|4050|10000|||98.62|99.78|0.00|3.07|00019C86|0|1| +38|2023-10-06T21:17:35.4540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||107.06|98.30|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:35.4540000-07:00|4A7|Rampart|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:17:35.4990000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65620|82773|8800|10000|||96.54|99.29|-0.02|-3.10|65620|82773|8800|10000|||96.54|99.29|-0.02|-3.10|00019C87|0|1| +38|2023-10-06T21:17:35.4990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65620|82773|8800|10000|8||96.54|99.29|-0.02|-3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:35.4990000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:17:35.5440000-07:00|40022472|Zeromus|00019C82|17973576||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:35.5440000-07:00|10FF000A|Dukaro Nezikaro|00019C7D|72927|82773|8800|10000|8||96.54|99.29|-0.02|-3.10|1E01|0|0|01|0300077D|0|41E7C8B1|| +21|2023-10-06T21:17:35.5440000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17982469|40478540|10000|10000|||100.00|80.10|0.00|0.00|85499|90216|10000|10000|||106.16|97.96|0.00|2.08|00019C88|0|1| +37|2023-10-06T21:17:35.5890000-07:00|40022472|Zeromus|00019C7B|17963124||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:17:35.0890000-07:00|40022BAA|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||101.10|100.78|0.00|3.11| +261|2023-10-06T21:17:35.0890000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:17:35.0890000-07:00|Remove|40022BAA| +39|2023-10-06T21:17:35.6340000-07:00|10FF0009|Zewo Negiwo|81177|81177|2270|10000|||103.18|101.31|0.00|0.14| +261|2023-10-06T21:17:35.0890000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:17:35.6780000-07:00|10FF0008|Kokosaze Lulusaze|00019C7D|90216|90216|10000|10000|13||106.59|97.77|0.00|-2.76|1F02|0|0|01|0400077D|0|41E6B436|| +39|2023-10-06T21:17:35.7230000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||106.59|97.77|0.00|-2.76| +37|2023-10-06T21:17:35.7670000-07:00|40022472|Zeromus|00019C84|17963124|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:17:35.7670000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +24|2023-10-06T21:17:35.7670000-07:00|40022472|Zeromus|DoT|0|1493|17963124|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||107.16|98.27|0.00|-2.90| +38|2023-10-06T21:17:35.7670000-07:00|40022472|Zeromus|005A5A00|17957857|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:17:35.2760000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:17:35.8120000-07:00|40022472|Zeromus|00019C85|17955093||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:35.8120000-07:00|10FF0009|Zewo Negiwo|00019C7D|81177|81177|2270|10000|9||103.20|101.56|0.00|0.04|1803|0|0|01|0400077D|0|41E5A3D3|| +36|2023-10-06T21:17:35.8570000-07:00|288C|3| +39|2023-10-06T21:17:35.9020000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||107.16|98.27|0.00|-2.90| +39|2023-10-06T21:17:35.9020000-07:00|10FF0004|Buhojaqe Zijaqe|80817|81541|1250|10000|||104.30|100.57|0.00|-2.93| +37|2023-10-06T21:17:35.9470000-07:00|40022472|Zeromus|00019C86|17955021||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:35.9470000-07:00|10FF0004|Buhojaqe Zijaqe|00019C7D|81541|81541|1250|10000|9||104.30|100.57|0.00|-2.93|1C04|0|0|01|0500077D|0|41E48F58|| +39|2023-10-06T21:17:35.9930000-07:00|10FF0007|Kehabiqo Febiqo|109965|129844|10000|10000|||92.41|98.92|0.00|3.14| +39|2023-10-06T21:17:35.9930000-07:00|10FF0006|Wowobora Gogobora|76638|81809|4250|10000|||97.49|100.12|0.00|-1.77| +21|2023-10-06T21:17:35.9930000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|554003|5EEE0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|17955093|40478540|10000|10000|||100.00|80.10|0.00|0.00|72927|82773|8800|10000|||96.10|99.22|0.00|-3.10|00019C89|0|1| +38|2023-10-06T21:17:35.9930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|72927|82773|8800|10000|8||96.10|99.22|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:35.9930000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:17:35.9930000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +04|2023-10-06T21:17:35.4780000-07:00|40022B8A|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||96.82|95.60|0.00|0.62| +261|2023-10-06T21:17:35.4780000-07:00|Remove|40022B8A| +261|2023-10-06T21:17:35.4780000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:17:36.0820000-07:00|10FF0003|Gegehi Gehi|00019C7D|73814|73814|4350|10000|10||105.87|99.63|0.00|2.65|2305|0|0|01|0400077D|0|41E37ADD|| +21|2023-10-06T21:17:36.0820000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|356003|39A10000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|17955021|40478540|10000|10000|||100.00|80.10|0.00|0.00|76638|81809|4250|10000|||96.32|100.49|0.00|-1.48|00019C8A|0|1| +37|2023-10-06T21:17:36.2140000-07:00|10FF0007|Kehabiqo Febiqo|00019C7D|122261|129844|10000|10000|9||92.34|98.92|-0.01|3.14|1506|0|0|01|0400077D|0|41E26A7A|| +21|2023-10-06T21:17:36.2140000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37750003|224C0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|17955021|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4350|10000|||106.09|99.48|-0.01|2.78|00019C8B|0|1| +21|2023-10-06T21:17:36.2590000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17955021|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.06|97.55|0.00|2.66|00019C8C|0|1| +21|2023-10-06T21:17:36.3030000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|734003|C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17955021|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1250|10000|||104.30|100.57|0.00|2.94|00019C8D|0|1| +37|2023-10-06T21:17:36.3490000-07:00|40022472|Zeromus|00019C88|17949718||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:36.3490000-07:00|10FF0001|Sesuga Sapisuga|00019C7D|129071|129071|10000|10000|5||107.16|98.27|0.00|-2.90|1307|0|0|01|0200077D|0|41E15A17|| +21|2023-10-06T21:17:36.3490000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|716003|2CDF0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|17955021|40478540|10000|10000|||100.00|80.10|0.00|0.00|122261|129844|10000|10000|||92.33|98.92|0.00|3.14|00019C8E|0|1| +38|2023-10-06T21:17:36.3490000-07:00|40022BEC|Seraph|005A5A00|73956|77430|10000|10000|0||99.23|94.99|0.00|1.65|0|0|0|||| +30|2023-10-06T21:17:36.3490000-07:00|7AD|Summon Order III|0.00|40022BEC|Seraph|40022BEC|Seraph|01|77430|77430| +26|2023-10-06T21:17:36.3930000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:17:36.3930000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|222C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17955021|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.11|97.53|-0.02|2.49|00019C8F|0|1| +21|2023-10-06T21:17:36.3930000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|12BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17955021|40478540|10000|10000|||100.00|80.10|0.00|0.00|72927|82773|8800|10000|||94.90|98.67|0.00|2.87|00019C90|0|1| +38|2023-10-06T21:17:36.3930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1250|10000|9||104.31|100.57|-0.02|2.60|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:36.3930000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:36.3930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|10||106.10|99.47|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:36.3930000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:17:36.3930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|72927|82773|8800|10000|8||94.90|98.67|0.00|2.87|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:36.3930000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +38|2023-10-06T21:17:36.4370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122261|129844|10000|10000|9||92.33|98.92|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:36.4370000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:36.4370000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2270|10000|9||103.20|101.58|0.00|0.03|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:36.4370000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:17:36.4370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||107.14|97.51|0.00|-2.74|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:36.4370000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:36.4370000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76638|81809|3950|10000|9||95.88|100.64|0.00|2.94|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:36.4370000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:36.4370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||107.16|98.27|0.00|-2.90|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:36.4370000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T21:17:35.9350000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:17:36.0530000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:17:36.6160000-07:00|40022BEC|Seraph|40A4|Seraphic Veil|10FF0006|Wowobora Gogobora|4|15690000|69000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|76638|81809|3950|10000|||95.76|100.68|-0.01|2.94|73956|77430|10000|10000|||99.23|94.99|0.00|1.19|00019C91|0|1| +261|2023-10-06T21:17:36.1520000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:17:36.7050000-07:00|40022472|Zeromus|00019C8A|17934965||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:36.7050000-07:00|40022472|Zeromus|00019C89|17910663||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:36.7050000-07:00|10FF000A|Dukaro Nezikaro|00019C89|72927|82773|8800|10000|8||94.74|98.56|0.00|2.87|1E00|0|0|01|05000A82|01|41F00000|| +38|2023-10-06T21:17:36.7050000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|72927|82773|8800|10000|8||94.74|98.56|0.00|2.87|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:36.7490000-07:00|40022BEB|Carbuncle|005A5A00|74223|77698|10000|10000|0||98.38|98.57|0.00|-0.71|0|0|0||||||| +26|2023-10-06T21:17:36.7490000-07:00|30|Well Fed|1416.53|10FF0006|Wowobora Gogobora|40022BEB|Carbuncle|2964|77698|81809| +26|2023-10-06T21:17:36.7490000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022BEB|Carbuncle|01|77698|81809| +21|2023-10-06T21:17:36.7490000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|76638|81809|3950|10000|||95.72|100.69|0.00|2.94|76638|81809|3950|10000|||95.72|100.69|0.00|2.94|00019C92|0|1| +21|2023-10-06T21:17:36.7940000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|756003|59E70000|4|26AE8000|0|0|0|0|0|0|0|0|0|0|0|0|17910663|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.16|98.27|0.00|-2.77|00019C93|0|1| +38|2023-10-06T21:17:36.7940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|5||107.16|98.27|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:36.7940000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:17:36.2530000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:17:36.8380000-07:00|40022472|Zeromus|00019C8D|17910470||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:36.8380000-07:00|40022472|Zeromus|00019C8B|17901690||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:36.8820000-07:00|40022472|Zeromus|00019C8E|17890203||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:36.9280000-07:00|40022472|Zeromus|00019C90|17885409||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:36.9280000-07:00|40022BEB|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|76638|81809|3950|10000|||95.72|100.69|0.00|2.94|74223|77698|10000|10000|||98.13|98.97|0.00|-0.53|00019C94|0|1| +38|2023-10-06T21:17:36.9280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76638|81809|3950|10000|29||95.72|100.69|0.00|2.94|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:36.9280000-07:00|A8E|Radiant Aegis|29.96|40022BEB|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +30|2023-10-06T21:17:36.9280000-07:00|13B|Whispering Dawn|0.00|40022B8A|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +39|2023-10-06T21:17:36.9720000-07:00|10FF0003|Gegehi Gehi|73814|73814|4550|10000|||106.10|99.47|0.00|-2.84| +261|2023-10-06T21:17:36.4440000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:17:37.0170000-07:00|40022472|Zeromus|00019C8F|17876661||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:37.0170000-07:00|40022472|Zeromus|00019C8C|17873098||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:37.0170000-07:00|10FF000A|Dukaro Nezikaro|73754|82773|9000|10000|||94.74|98.56|0.00|2.87| +21|2023-10-06T21:17:37.0170000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|18C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17885409|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.26|97.46|0.00|-2.74|00019C95|0|1| +38|2023-10-06T21:17:37.0610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1250|10000|9||104.94|100.27|0.00|2.07|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:37.0610000-07:00|13B|Whispering Dawn|0.00|40022B8A|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|| +21|2023-10-06T21:17:37.1070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17873098|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||107.16|98.27|0.00|-2.77|00019C96|0|1| +31|2023-10-06T21:17:37.1070000-07:00|10FF0001||||| +24|2023-10-06T21:17:37.1950000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|F91|90216|90216|10000|10000|||107.26|97.46|0.00|-2.74|40022B8A||0||||||||||| +38|2023-10-06T21:17:37.1950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||107.26|97.46|0.00|-2.74|0|0|0|||||||||||||||| +30|2023-10-06T21:17:37.1950000-07:00|13B|Whispering Dawn|0.00|40022B8A|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|| +24|2023-10-06T21:17:37.2840000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1D9E|73754|82773|9000|10000|||94.74|98.56|0.00|2.87|40022B8A||0||||||||||| +38|2023-10-06T21:17:37.2840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81336|82773|9000|10000|8||94.74|98.56|0.00|2.87|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:37.3280000-07:00|10FF0003|Gegehi Gehi|HoT|0|178B|73814|73814|4550|10000|||106.10|99.47|0.00|-2.84|40022B8A||0||||||||||| +38|2023-10-06T21:17:37.3280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|5||107.16|98.27|0.00|-2.77|0|0|0||||||||||||| +30|2023-10-06T21:17:37.3280000-07:00|13B|Whispering Dawn|0.00|40022B8A|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|| +38|2023-10-06T21:17:37.3280000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4550|10000|10||106.10|99.47|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:17:37.3730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A93|81541|81541|1250|10000|||105.29|100.08|0.00|1.95|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|-0.55| +38|2023-10-06T21:17:37.3730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1800|10000|9||105.29|100.08|0.00|1.95|0|0|0||||||||||||||||||| +261|2023-10-06T21:17:36.9110000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T21:17:37.4610000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2270|10000|9||102.27|101.04|0.00|-2.27|0|0|0|||||||||||||||| +30|2023-10-06T21:17:37.4610000-07:00|13B|Whispering Dawn|0.00|40022B8A|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|| +261|2023-10-06T21:17:36.9110000-07:00|Change|10FF000A||||||||| +24|2023-10-06T21:17:37.5050000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|19E8|122261|129844|10000|10000|||92.33|98.92|0.00|2.76|10FF0009|Zewo Negiwo|0|81177|81177|2270|10000|||102.27|101.04|0.00|-2.27| +24|2023-10-06T21:17:37.5050000-07:00|40022472|Zeromus|DoT|A92|754|17873098|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|76638|81809|3950|10000|||95.72|100.69|0.00|2.94| +24|2023-10-06T21:17:37.5050000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1028|76638|81809|3950|10000|||95.72|100.69|0.00|2.94|10FF0006|Wowobora Gogobora|0|76638|81809|3950|10000|||95.72|100.69|0.00|2.94| +20|2023-10-06T21:17:37.5050000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|105.55|99.93|0.00|1.99| +38|2023-10-06T21:17:37.5050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128893|129844|10000|10000|9||92.33|98.92|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:37.5050000-07:00|40022472|Zeromus|005A5A00|17871222|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T21:17:37.5050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|80774|81809|4500|10000|29||95.72|100.69|0.00|2.94|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:17:37.5490000-07:00|40022472|Zeromus|00019C93|17848207||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:37.5490000-07:00|10FF0009|Zewo Negiwo|HoT|0|9E0|81177|81177|2270|10000|||102.23|100.85|0.00|-2.63|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|-0.55| +21|2023-10-06T21:17:37.5500000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|427D0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|17871222|40478540|10000|10000|||100.00|80.10|0.00|0.00|81336|82773|9000|10000|||94.74|98.56|0.00|2.87|00019C97|0|1| +38|2023-10-06T21:17:37.5500000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2270|10000|9||102.23|100.85|0.00|-2.63|0|0|0|||||||||||||||| +38|2023-10-06T21:17:37.5500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81336|82773|9000|10000|8||94.74|98.56|0.00|2.87|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:37.5500000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +24|2023-10-06T21:17:37.5950000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A81|129071|129071|9000|10000|||107.16|98.27|0.00|-2.77|10FF0009|Zewo Negiwo|0|81177|81177|2270|10000|||102.23|100.85|0.00|-2.63| +21|2023-10-06T21:17:37.5950000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|17871222|40478540|10000|10000|||100.00|80.10|0.00|0.00|80774|81809|4500|10000|||95.72|100.69|0.00|2.94|00019C98|0|1| +38|2023-10-06T21:17:37.5950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|5||107.16|98.27|0.00|-2.77|0|0|0||||||||||||| +38|2023-10-06T21:17:37.5950000-07:00|40022BEB|Carbuncle|005A5A00|0|77698|0|10000|0||97.82|99.51|0.00|-1.05|0|0|0|||| +30|2023-10-06T21:17:37.5950000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40022BEB|Carbuncle|01|77698|81809| +38|2023-10-06T21:17:37.5950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81336|82773|9000|10000|8||94.74|98.56|0.00|2.87|0|0|0|||||||||||||||| +30|2023-10-06T21:17:37.5950000-07:00|13B|Whispering Dawn|0.00|40022B8A|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|| +261|2023-10-06T21:17:37.1470000-07:00|Change|40022BEB||||||||| +261|2023-10-06T21:17:37.1470000-07:00|Change|40022BEB||||||||| +38|2023-10-06T21:17:37.6390000-07:00|40022BFA||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:37.6400000-07:00|40022472|Zeromus|00019C96|17845281||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:37.6400000-07:00|40022BFA||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:17:37.1470000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:17:37.1470000-07:00|Change|40022489||||||||| +261|2023-10-06T21:17:37.1470000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:17:37.1470000-07:00|Change|40022487||||||||| +261|2023-10-06T21:17:37.1470000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:17:37.6840000-07:00|40022472|Zeromus|00019C95|17838941||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:37.6840000-07:00|10FF0006|Wowobora Gogobora|00019C91|81809||||||95.72|100.69|0.00|2.94| +20|2023-10-06T21:17:37.7290000-07:00|40022487|Zeromus|8B64|Sparking Flare|10FF0008|Kokosaze Lulusaze|9.700|83.50|83.50|0.00|0.00| +20|2023-10-06T21:17:37.7290000-07:00|40022488|Zeromus|8B64|Sparking Flare|10FF0007|Kehabiqo Febiqo|9.700|100.00|100.00|0.00|-2.36| +20|2023-10-06T21:17:37.7290000-07:00|40022489|Zeromus|8B64|Sparking Flare|10FF0004|Buhojaqe Zijaqe|9.700|116.50|83.50|0.00|0.00| +20|2023-10-06T21:17:37.7290000-07:00|4002248A|Zeromus|8B64|Sparking Flare|10FF0009|Zewo Negiwo|9.700|100.00|100.00|0.00|2.36| +20|2023-10-06T21:17:37.7290000-07:00|4002248B|Zeromus|8B64|Sparking Flare|10FF0006|Wowobora Gogobora|9.700|88.00|100.00|0.00|0.00| +20|2023-10-06T21:17:37.7290000-07:00|4002248C|Zeromus|8B64|Sparking Flare|10FF000A|Dukaro Nezikaro|9.700|100.00|100.00|0.00|-1.57| +20|2023-10-06T21:17:37.7290000-07:00|4002248D|Zeromus|8B64|Sparking Flare|10FF0003|Gegehi Gehi|9.700|100.00|112.00|0.00|0.00| +20|2023-10-06T21:17:37.7290000-07:00|4002248E|Zeromus|8B64|Sparking Flare|10FF0001|Sesuga Sapisuga|9.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:17:37.7290000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A750003|31DB0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|17848207|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4550|10000|||106.10|99.47|0.00|-2.84|00019C99|0|1| +38|2023-10-06T21:17:37.7290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128893|129844|10000|10000|9||92.33|98.92|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:37.7290000-07:00|13B|Whispering Dawn|0.00|40022B8A|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|| +261|2023-10-06T21:17:37.2470000-07:00|Change|40022488||||||||||||||||| +261|2023-10-06T21:17:37.2470000-07:00|Change|4002248A||||||||||||||||| +261|2023-10-06T21:17:37.2470000-07:00|Change|4002248C||||||||||||||||| +261|2023-10-06T21:17:37.2470000-07:00|Change|4002248E||||||||||||||| +38|2023-10-06T21:17:37.8620000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4550|10000|10||106.10|99.47|0.00|-2.84|0|0|0|||||||||||||||| +30|2023-10-06T21:17:37.8620000-07:00|13B|Whispering Dawn|0.00|40022B8A|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|| +26|2023-10-06T21:17:37.9060000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:17:37.9060000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|21EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17838941|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.26|97.46|0.00|-2.74|00019C9A|0|1| +38|2023-10-06T21:17:37.9950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128893|129844|10000|10000|9||92.33|98.92|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:37.9950000-07:00|4A7|Rampart|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:17:38.0850000-07:00|40022BEC|Seraph|73956|77430|10000|10000|||99.23|94.99|0.00|-0.84| +261|2023-10-06T21:17:37.5310000-07:00|Add|40022BFA||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:17:37.6470000-07:00|40022BFA|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||97.10|102.78|0.00|2.94| +261|2023-10-06T21:17:37.6470000-07:00|Change|40022BFA||||| +261|2023-10-06T21:17:37.6470000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:17:37.6470000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:17:37.6470000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:17:37.6470000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:17:37.7590000-07:00|Change|40022BEC||||||||| +37|2023-10-06T21:17:38.3090000-07:00|40022472|Zeromus|00019C97|17821920||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:38.3090000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17838941|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4550|10000|||106.10|99.47|0.00|-2.84|00019C9B|0|1| +261|2023-10-06T21:17:37.8750000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:38.3530000-07:00|40022472|Zeromus|00019C99|17809157||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:38.3530000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17821920|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||107.16|98.27|0.00|-2.77|00019C9C|0|1| +21|2023-10-06T21:17:38.4410000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33850000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|17821920|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1800|10000|||106.07|99.63|0.00|-2.84|00019C9D|0|1| +37|2023-10-06T21:17:38.5300000-07:00|40022472|Zeromus|00019C9A|17800471||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:38.5300000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17809157|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4500|10000|||95.72|100.69|1.72|2.94|00019C9E|0|1| +21|2023-10-06T21:17:38.5740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|98B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17809157|40478540|10000|10000|||100.00|80.10|0.00|0.00|81336|82773|9000|10000|||94.74|98.56|0.00|2.87|00019C9F|0|1| +39|2023-10-06T21:17:38.6200000-07:00|10FF0009|Zewo Negiwo|81177|81177|2491|10000|||98.78|100.61|0.00|-1.44| +261|2023-10-06T21:17:38.1040000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:17:38.6640000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BE80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17800471|40478540|10000|10000|||100.00|80.10|0.00|0.00|128893|129844|10000|10000|||92.33|98.92|0.00|2.76|00019CA0|0|1| +261|2023-10-06T21:17:38.1940000-07:00|Change|40022BFA||| +39|2023-10-06T21:17:38.7090000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||107.26|97.46|0.00|-2.74| +24|2023-10-06T21:17:38.7530000-07:00|40022472|Zeromus|DoT|0|1778|17800471|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||107.16|98.27|0.00|-2.77| +38|2023-10-06T21:17:38.7530000-07:00|40022472|Zeromus|005A5A00|17794463|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:17:38.7970000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20570000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|17800471|40478540|10000|10000|||100.00|80.10|0.00|0.00|128893|129844|10000|10000|||92.33|98.92|0.00|2.76|00019CA1|0|1| +21|2023-10-06T21:17:38.7970000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17800471|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.26|97.46|0.00|-2.74|00019CA2|0|1| +37|2023-10-06T21:17:38.8420000-07:00|40022472|Zeromus|00019C9B|17794462||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:17:38.8420000-07:00|2968|3| +39|2023-10-06T21:17:38.8860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||107.16|98.27|0.00|-2.77| +39|2023-10-06T21:17:38.8860000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1600|10000|||106.07|99.63|0.00|-2.84| +261|2023-10-06T21:17:38.3870000-07:00|Change|10FF0001||| +261|2023-10-06T21:17:38.3870000-07:00|Change|40022BEC||||||||| +21|2023-10-06T21:17:38.9300000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17794462|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.26|97.46|0.00|-2.74|00019CA3|0|1| +37|2023-10-06T21:17:38.9740000-07:00|40022472|Zeromus|00019C9C|17794462|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004A9|0|41200000|| +26|2023-10-06T21:17:38.9740000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +39|2023-10-06T21:17:38.9740000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||92.33|98.92|0.00|2.76| +39|2023-10-06T21:17:39.0180000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4700|10000|||95.72|100.69|0.00|2.94| +261|2023-10-06T21:17:38.4770000-07:00|Change|10FF0006||| +37|2023-10-06T21:17:39.0630000-07:00|40022472|Zeromus|00019C9E|17794375||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:39.1080000-07:00|40022472|Zeromus|00019C9F|17791932||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:39.1980000-07:00|40022472|Zeromus|00019CA0|17788884||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:39.2420000-07:00|40022472|Zeromus|00019C9D|17775695||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:39.2870000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|144A0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|17775695|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||107.16|98.27|0.00|-2.77|00019CA4|0|1| +261|2023-10-06T21:17:38.9350000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:17:39.3760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17775695|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||107.16|98.27|0.00|-2.77|00019CA5|0|1| +31|2023-10-06T21:17:39.3760000-07:00|10FF0001||||| +37|2023-10-06T21:17:39.4200000-07:00|40022472|Zeromus|00019CA1|17767416||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:39.4650000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|210A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17767416|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.26|97.46|0.00|-2.74|00019CA6|0|1| +38|2023-10-06T21:17:39.4650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|9||92.33|98.92|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:39.4650000-07:00|43C|Squadron Rationing Manual|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:17:39.4650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||107.26|97.46|0.00|-2.74|0|0|0|||||||||||||||| +30|2023-10-06T21:17:39.4650000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +38|2023-10-06T21:17:39.5530000-07:00|40022472|Zeromus|005A5A00|17767416|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:17:39.5530000-07:00|74F|Dia|0.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:17:39.5980000-07:00|40022472|Zeromus|00019CA2|17762072||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:39.1420000-07:00|Change|40022BEB||||||||| +21|2023-10-06T21:17:39.6430000-07:00|40022472|Zeromus|8B5E|Sparking Flare|40022472|Zeromus|1B|8B5E8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17767416|40478540|10000|10000|||100.00|80.10|0.00|0.00|17767416|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019CA7|0|1| +261|2023-10-06T21:17:39.1420000-07:00|Change|40022472||||| +37|2023-10-06T21:17:39.6880000-07:00|40022472|Zeromus|00019CA3|17759877||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:39.6880000-07:00|40022BFA|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|450003|60F60000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|17762072|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||97.10|102.78|0.00|2.94|00019CA8|0|1| +21|2023-10-06T21:17:39.7770000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|20F50000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|17762072|40478540|10000|10000|||100.00|80.10|0.00|0.00|81336|82773|9000|10000|||94.74|98.56|0.00|2.87|00019CA9|0|1| +37|2023-10-06T21:17:39.9110000-07:00|40022472|Zeromus|00019CA4|17754683||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:39.9110000-07:00|40022472|Zeromus|00019CA5|17751759||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:17:39.9110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|105.95|99.71|-0.02|-1.44| +39|2023-10-06T21:17:39.9550000-07:00|10FF0003|Gegehi Gehi|73814|73814|4750|10000|||106.10|99.47|0.00|-2.84| +21|2023-10-06T21:17:39.9550000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022472|Zeromus|154003|4CCA0000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|17759877|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4550|10000|||106.10|99.47|0.00|-2.84|00019CAA|0|1| +38|2023-10-06T21:17:39.9550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|10||106.10|99.47|0.00|-2.84|0|0|0|||||||||||||||| +26|2023-10-06T21:17:39.9550000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:17:39.4380000-07:00|Change|10FF0003||||| +261|2023-10-06T21:17:39.4380000-07:00|Change|10FF0003||||| +39|2023-10-06T21:17:40.0000000-07:00|10FF000A|Dukaro Nezikaro|82163|82773|9200|10000|||94.74|98.56|0.00|2.87| +37|2023-10-06T21:17:40.0890000-07:00|40022472|Zeromus|00019CA6|17743301||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:39.6200000-07:00|Change|10FF000A||| +21|2023-10-06T21:17:40.0890000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17751759|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.47|97.27|0.00|2.66|00019CAB|0|1| +261|2023-10-06T21:17:39.6200000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:17:40.0890000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|269C0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|17743301|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4400|10000|||94.61|100.75|0.00|2.84|00019CAC|0|1| +38|2023-10-06T21:17:40.0890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4400|10000|29||94.61|100.75|0.00|2.84|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:40.0890000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:17:40.1340000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|712003|46F50000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|17743301|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||107.16|98.27|0.00|-2.77|00019CAD|0|1| +37|2023-10-06T21:17:40.1780000-07:00|40022472|Zeromus|00019CA9|17734864||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:40.2230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1093|90216|90216|10000|10000|||107.56|97.15|0.00|-2.72|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|-2.68| +38|2023-10-06T21:17:40.2230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||107.56|97.15|0.00|-2.72|0|0|0|||||||||||||||| +24|2023-10-06T21:17:40.2680000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A45|82163|82773|9200|10000|||94.74|98.56|0.00|2.87|10FF0009|Zewo Negiwo|0|81177|81177|2491|10000|||93.61|100.60|0.00|-1.45| +38|2023-10-06T21:17:40.2680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|9200|10000|8||94.74|98.56|0.00|2.87|0|0|0|||||||||||||||| +21|2023-10-06T21:17:40.3120000-07:00|40022BEC|Seraph|40A4|Seraphic Veil|10FF000A|Dukaro Nezikaro|4|151D0000|1D000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|82163|82773|9200|10000|||94.74|98.56|0.00|2.87|73956|77430|10000|10000|||99.23|94.99|0.00|-2.68|00019CAE|0|1| +24|2023-10-06T21:17:40.3120000-07:00|10FF0003|Gegehi Gehi|HoT|0|A0F|73814|73814|4350|10000|||106.10|99.47|0.00|-2.84|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|-2.68| +38|2023-10-06T21:17:40.3120000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|10||106.10|99.47|0.00|-2.84|0|0|0|||||||||||||||| +261|2023-10-06T21:17:39.8460000-07:00|Change|40022BEC||||||||| +24|2023-10-06T21:17:40.4020000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9B1|81541|81541|1600|10000|||105.83|99.80|-0.01|-2.70|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|-2.36| +38|2023-10-06T21:17:40.4020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|9||105.83|99.80|-0.01|-2.70|0|0|0||||||||||||||||||| +261|2023-10-06T21:17:39.9560000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:40.4900000-07:00|40022472|Zeromus|00019CAD|17716699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:40.4900000-07:00|10FF0001|Sesuga Sapisuga|00019CAD|129071|129071|9700|10000|5||107.16|98.27|0.00|-2.77|1300|0|0|0| +24|2023-10-06T21:17:40.4900000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FAE|129844|129844|10000|10000|||92.33|98.92|0.00|2.76|10FF0009|Zewo Negiwo|0|81177|81177|2491|10000|||93.61|100.60|0.00|-1.45| +24|2023-10-06T21:17:40.4900000-07:00|40022472|Zeromus|DoT|A92|391|17734864|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|4400|10000|||93.24|101.05|0.00|-2.38| +24|2023-10-06T21:17:40.4900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|FBB|81809|81809|4400|10000|||93.24|101.05|0.00|-2.38|10FF0006|Wowobora Gogobora|0|81809|81809|4400|10000|||93.24|101.05|0.00|-2.38| +38|2023-10-06T21:17:40.4900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|9||92.33|98.92|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:40.4900000-07:00|40022472|Zeromus|005A5A00|17715786|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:17:40.4900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4950|10000|29||93.24|101.05|0.00|-2.38|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:40.0710000-07:00|Change|10FF0001||| +24|2023-10-06T21:17:40.5350000-07:00|10FF0009|Zewo Negiwo|HoT|0|A21|81177|81177|2491|10000|||93.61|100.60|0.00|-1.45|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|-1.71| +38|2023-10-06T21:17:40.5350000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2491|10000|9||93.61|100.60|0.00|-1.45|0|0|0|||||||||||||||| +24|2023-10-06T21:17:40.5790000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A45|129071|129071|9700|10000|||107.16|98.27|0.00|-2.77|10FF0009|Zewo Negiwo|0|81177|81177|2491|10000|||93.61|100.60|0.00|-1.45| +21|2023-10-06T21:17:40.5790000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|2B8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17715786|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|9200|10000|||94.74|98.56|0.00|2.87|00019CAF|0|1| +38|2023-10-06T21:17:40.5790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|5||107.16|98.27|0.00|-2.77|0|0|0||||||||||||| +261|2023-10-06T21:17:40.1650000-07:00|Change|40022BEC||||||||| +22|2023-10-06T21:17:40.6700000-07:00|4002248F|Zeromus|8B60|Flare|10FF0004|Buhojaqe Zijaqe|150003|B0E80000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2150|10000|||105.82|99.81|0.00|-2.85|44|44|0|10000|||105.00|100.00|0.00|0.00|00019CB0|0|4| +22|2023-10-06T21:17:40.6700000-07:00|4002248F|Zeromus|8B60|Flare|10FF0003|Gegehi Gehi|150003|ACB50000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4350|10000|||106.10|99.47|0.00|-2.84|44|44|0|10000|||105.00|100.00|0.00|0.00|00019CB0|1|4| +22|2023-10-06T21:17:40.6700000-07:00|4002248F|Zeromus|8B60|Flare|10FF0001|Sesuga Sapisuga|150003|72600000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9700|10000|||107.16|98.27|0.00|-2.77|44|44|0|10000|||105.00|100.00|0.00|0.00|00019CB0|2|4| +22|2023-10-06T21:17:40.6700000-07:00|4002248F|Zeromus|8B60|Flare|10FF0008|Kokosaze Lulusaze|150003|B8410000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||107.68|97.03|0.00|3.01|44|44|0|10000|||105.00|100.00|0.00|0.00|00019CB0|3|4| +22|2023-10-06T21:17:40.6700000-07:00|40022490|Zeromus|8B60|Flare|10FF000A|Dukaro Nezikaro|150003|C42A0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|9200|10000|||94.74|98.56|0.00|2.87|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CB1|0|4| +22|2023-10-06T21:17:40.6700000-07:00|40022490|Zeromus|8B60|Flare|10FF0009|Zewo Negiwo|150003|B3D80000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2491|10000|||93.61|100.60|0.00|-1.45|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CB1|1|4| +22|2023-10-06T21:17:40.6700000-07:00|40022490|Zeromus|8B60|Flare|10FF0006|Wowobora Gogobora|150003|74400000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|4950|10000|||92.99|101.28|0.00|-1.45|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CB1|2|4| +22|2023-10-06T21:17:40.6700000-07:00|40022490|Zeromus|8B60|Flare|10FF0007|Kehabiqo Febiqo|150003|56E10000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||92.33|98.92|0.00|2.76|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CB1|3|4| +261|2023-10-06T21:17:40.1650000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:17:40.1650000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:17:40.7120000-07:00|40022472|Zeromus|00019CAB|17710649||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:40.7120000-07:00|40022472|Zeromus|00019CAC|17700765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:40.7120000-07:00|10FF0006|Wowobora Gogobora|00019CAC|81809|81809|4950|10000|29||92.99|101.28|0.00|-1.45|1B00|0|0|01|09000B25|0|0|| +21|2023-10-06T21:17:40.7120000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|12710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17715786|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4950|10000|||92.99|101.28|0.00|-1.45|00019CB2|0|1| +38|2023-10-06T21:17:40.7120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4950|10000|29||92.99|101.28|0.00|-1.45|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:40.7120000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:17:40.7570000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17715786|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|9200|10000|||94.74|98.56|0.00|2.87|00019CB3|0|1| +37|2023-10-06T21:17:40.8480000-07:00|10FF0004|Buhojaqe Zijaqe|00019CB0|36253|81541|2150|10000|0||105.82|99.81|0.00|-2.85|1C00|0|0|01|05000000|0|0|| +37|2023-10-06T21:17:40.8480000-07:00|10FF000A|Dukaro Nezikaro|00019CB1|32555|82773|9200|10000|0||94.74|98.56|0.00|2.87|1E00|0|0|01|03000000|0|0|| +21|2023-10-06T21:17:40.8480000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|39840000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||92.33|98.92|0.00|2.76|17700765|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019CB4|0|1| +21|2023-10-06T21:17:40.8480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30330000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|17700765|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2150|10000|||105.82|99.81|0.00|-2.85|00019CB5|0|1| +38|2023-10-06T21:17:40.8480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|36253|81541|1750|10000|0||105.82|99.81|0.00|-2.85|0|0|0|||||||||||||||| +30|2023-10-06T21:17:40.8480000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T21:17:40.8480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|32555|82773|9200|10000|0||94.74|98.56|0.00|2.87|0|0|0|||||||||||||||| +30|2023-10-06T21:17:40.8480000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:17:40.8910000-07:00|10FF0003|Gegehi Gehi|00019CB0|29601|73814|4350|10000|0||106.10|99.47|0.00|-2.84|2301|0|0|02|010004D2|0|C1F00000|||||| +37|2023-10-06T21:17:40.8910000-07:00|10FF0009|Zewo Negiwo|00019CB1|35137|81177|2491|10000|0||93.61|100.60|0.00|-1.45|1801|0|0|01|04000000|0|0|| +38|2023-10-06T21:17:40.8910000-07:00|10FF0009|Zewo Negiwo|005A5A18|35137|81177|2491|10000|0||93.61|100.60|0.00|-1.45|0|0|0||||||||||||| +30|2023-10-06T21:17:40.8910000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:17:40.8910000-07:00|10FF0003|Gegehi Gehi|005A5A23|29601|73814|4350|10000|0||106.10|99.47|0.00|-2.84|0|0|0||||||||||||| +30|2023-10-06T21:17:40.8910000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T21:17:40.9360000-07:00|10FF0001|Sesuga Sapisuga|00019CB0|99791|129071|9700|10000|0||107.16|98.27|0.00|-2.77|1302|0|0|01|02000000|0|0|| +37|2023-10-06T21:17:40.9360000-07:00|10FF0006|Wowobora Gogobora|00019CB1|52049|81809|4950|10000|0||92.83|101.42|0.00|2.81|1B02|0|0|02|05000000|0|0|||||| +21|2023-10-06T21:17:40.9360000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|397F0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|17700765|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.77|96.89|0.00|2.77|00019CB6|0|1| +38|2023-10-06T21:17:40.9360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52049|81809|4950|10000|0||92.83|101.42|0.00|2.81|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:40.9360000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +30|2023-10-06T21:17:40.9360000-07:00|A8E|Radiant Aegis|0.00|40022BEB|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +38|2023-10-06T21:17:40.9360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|99791|129071|9700|10000|0||107.16|98.27|0.00|-2.77|0|0|0||||||||||||| +30|2023-10-06T21:17:40.9360000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:17:40.9820000-07:00|10FF0008|Kokosaze Lulusaze|00019CB0|43047|90216|10000|10000|0||107.77|96.89|0.00|2.77|1F03|0|0|01|04000000|0|0|| +37|2023-10-06T21:17:40.9820000-07:00|10FF0007|Kehabiqo Febiqo|00019CB1|107603|129844|10000|10000|0||92.33|98.92|0.00|2.76|1503|0|0|01|04000000|0|0|| +38|2023-10-06T21:17:40.9820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107603|129844|10000|10000|0||92.33|98.92|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:40.9820000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:17:40.9820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|43047|90216|10000|10000|0||107.77|96.89|0.00|2.77|0|0|0|||||||||| +30|2023-10-06T21:17:40.9820000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +39|2023-10-06T21:17:41.0690000-07:00|40022BEC|Seraph|73956|77430|10000|10000|||99.23|94.99|0.00|-0.90| +261|2023-10-06T21:17:40.5490000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:17:41.2030000-07:00|40022472|Zeromus|00019CAF|17689616||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:41.2910000-07:00|40022472|Zeromus|00019CB3|17687228||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:41.2910000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|316C0000|143E|340000|4|18228000|11B|2A8000|0|0|0|0|0|0|0|0|17689616|40478540|10000|10000|||100.00|80.10|0.00|0.00|107603|129844|10000|10000|||92.33|98.92|0.00|2.76|00019CB7|0|1| +37|2023-10-06T21:17:41.3360000-07:00|10FF000A|Dukaro Nezikaro|00019CAE|37960||||||94.74|98.53|0.00|3.11| +37|2023-10-06T21:17:41.3800000-07:00|40022472|Zeromus|00019CAA|17667570||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:41.3800000-07:00|10FF0003|Gegehi Gehi|00019CAA|29601|73814|4350|10000|0||106.11|99.49|0.00|2.95|2300|0|0|01|010004D2|0|41F00000|| +38|2023-10-06T21:17:41.3810000-07:00|10FF0003|Gegehi Gehi|005A5A23|29601|73814|4350|10000|0||106.11|99.49|0.00|2.95|0|0|0||||||||||||| +21|2023-10-06T21:17:41.4250000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17667570|40478540|10000|10000|||100.00|80.10|0.00|0.00|36253|81541|1750|10000|||105.82|99.83|0.00|-1.34|00019CB8|0|1| +261|2023-10-06T21:17:40.8980000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:41.4700000-07:00|40022472|Zeromus|00019CB2|17662849||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:41.6020000-07:00|10FF0009|Zewo Negiwo|35948|81177|2712|10000|||93.61|100.63|0.00|-0.90| +21|2023-10-06T21:17:41.6020000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17662849|40478540|10000|10000|||100.00|80.10|0.00|0.00|43047|90216|10000|10000|||107.90|96.69|0.00|3.08|00019CB9|0|1| +04|2023-10-06T21:17:41.1240000-07:00|40022BEB|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||97.73|99.75|0.00|-0.50| +37|2023-10-06T21:17:41.6480000-07:00|10FF0007|Kehabiqo Febiqo|00019CB4|92879||||||92.31|98.60|0.00|2.80| +261|2023-10-06T21:17:41.1240000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:17:41.6480000-07:00|40022472|Zeromus|00019CB5|17650510||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:41.6480000-07:00|40022472|Zeromus|00019CA8|17625688||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:41.6480000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|86E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17662849|40478540|10000|10000|||100.00|80.10|0.00|0.00|99791|129071|9700|10000|||106.96|96.47|0.00|-3.03|00019CBA|0|1| +31|2023-10-06T21:17:41.6480000-07:00|10FF0001||||| +261|2023-10-06T21:17:41.2170000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:17:41.2170000-07:00|Remove|40022BEB| +27|2023-10-06T21:17:41.6930000-07:00|10FF0003|Gegehi Gehi|0000|0000|00C5|0000|0000|0000| +27|2023-10-06T21:17:41.6930000-07:00|10FF0009|Zewo Negiwo|0000|0000|00C5|0000|0000|0000| +21|2023-10-06T21:17:41.6930000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17662849|40478540|10000|10000|||100.00|80.10|0.00|0.00|52049|81809|4950|10000|||92.70|101.55|0.00|2.81|00019CBB|0|1| +37|2023-10-06T21:17:41.7360000-07:00|40022472|Zeromus|00019CB6|17610969||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:41.7360000-07:00|10FF0008|Kokosaze Lulusaze|43949|90216|10000|10000|||107.91|96.66|0.00|2.88| +20|2023-10-06T21:17:41.7810000-07:00|40022472|Zeromus|8D28|Nox|40022472|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:41.2170000-07:00|Change|40022472||||||||| +24|2023-10-06T21:17:41.7820000-07:00|40022472|Zeromus|DoT|0|FA1|17625688|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|99791|129071|9700|10000|||106.90|95.83|0.00|-3.04| +21|2023-10-06T21:17:41.7820000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35712003|2FC20000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|17625688|40478540|10000|10000|||100.00|80.10|0.00|0.00|99791|129071|9700|10000|||106.90|95.83|0.00|-3.04|00019CBC|0|1| +21|2023-10-06T21:17:41.7820000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17625688|40478540|10000|10000|||100.00|80.10|0.00|0.00|29601|73814|4350|10000|||106.57|100.19|0.00|0.81|00019CBD|0|1| +38|2023-10-06T21:17:41.7820000-07:00|40022472|Zeromus|005A5A00|17606968|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T21:17:41.8710000-07:00|10FF0001|Sesuga Sapisuga|101081|129071|9900|10000|||106.84|95.19|0.00|-3.06| +36|2023-10-06T21:17:41.8710000-07:00|2A44|3| +39|2023-10-06T21:17:41.9140000-07:00|10FF0004|Buhojaqe Zijaqe|37068|81541|1950|10000|||105.91|100.52|0.00|-0.25| +261|2023-10-06T21:17:41.4120000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:17:41.9580000-07:00|40022472|Zeromus|00019CB8|17606821||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:42.0020000-07:00|10FF0007|Kehabiqo Febiqo|94177|129844|10000|10000|||92.05|96.26|0.00|-3.12| +39|2023-10-06T21:17:42.0020000-07:00|10FF0006|Wowobora Gogobora|52867|81809|5150|10000|||92.70|101.55|0.00|2.81| +21|2023-10-06T21:17:42.0470000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|E110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17606821|40478540|10000|10000|||100.00|80.10|0.00|0.00|92879|129844|10000|10000|||92.05|96.26|0.00|-3.12|00019CBE|0|1| +21|2023-10-06T21:17:42.0470000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|280A0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|17606821|40478540|10000|10000|||100.00|80.10|0.00|0.00|37960|82773|9200|10000|||93.43|95.16|0.00|-2.75|00019CBF|0|1| +261|2023-10-06T21:17:41.6080000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:17:41.7230000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:17:42.1820000-07:00|40022472|Zeromus|00019CBA|17604663||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:42.2250000-07:00|40022472|Zeromus|00019CBB|17604595||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:41.8370000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:17:41.8370000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:17:42.3140000-07:00|40022472|Zeromus|00019CBD|17604594||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:42.3590000-07:00|40022472|Zeromus|00019CB9|17602271||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:42.4040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52867|81809|5150|10000|0||92.69|101.56|0.00|-2.70|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:42.4040000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:17:42.4480000-07:00|40022472|Zeromus|00019CBF|17592021||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:42.4480000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|750003|446A0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|17602271|40478540|10000|10000|||100.00|80.10|0.00|0.00|29601|73814|4350|10000|||109.07|104.06|0.00|0.57|00019CC0|0|1| +261|2023-10-06T21:17:41.9540000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:17:41.9540000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:17:42.5380000-07:00|40022472|Zeromus|00019CBC|17579795||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:42.5380000-07:00|10FF0001|Sesuga Sapisuga|00019CBC|101081|129071|10000|10000|0||106.76|91.31|0.00|3.14|1300|0|0|0| +261|2023-10-06T21:17:42.0660000-07:00|Change|40022BEC||||||||| +37|2023-10-06T21:17:42.5820000-07:00|40022472|Zeromus|00019CBE|17576194||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:42.1630000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:17:42.6260000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|26FF0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|17579795|40478540|10000|10000|||100.00|80.10|0.00|0.00|52867|81809|5150|10000|||92.68|101.57|0.00|-1.39|00019CC1|0|1| +38|2023-10-06T21:17:42.6260000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52867|81809|4850|10000|0||92.68|101.57|0.00|-1.39|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:42.6260000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:17:42.1630000-07:00|Change|40022485||||||||| +261|2023-10-06T21:17:42.1630000-07:00|Change|40022483||||||||| +261|2023-10-06T21:17:42.1630000-07:00|Change|40022481||||||||| +261|2023-10-06T21:17:42.1630000-07:00|Change|4002247F||||||||| +21|2023-10-06T21:17:42.7600000-07:00|40022485|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019CC2|0|0| +21|2023-10-06T21:17:42.7600000-07:00|40022486|Zeromus|8BB6|Scald|10FF0006|Wowobora Gogobora|150003|31650000|100140E|6FD0000|1B|8BB68000|0|0|0|0|0|0|0|0|0|0|52867|81809|4850|10000|||92.67|101.57|0.00|2.80|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CC3|0|1| +20|2023-10-06T21:17:42.7600000-07:00|4002248F|Zeromus|8B62|Flare|4002248F|Zeromus|4.700|105.00|100.00|0.00|0.00| +20|2023-10-06T21:17:42.7600000-07:00|40022490|Zeromus|8B62|Flare|40022490|Zeromus|4.700|95.00|100.00|0.00|0.00| +261|2023-10-06T21:17:42.2660000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:17:42.2660000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:17:42.2660000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:17:42.8050000-07:00|40022472|Zeromus|00019CB7|17563542||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:42.8050000-07:00|10FF0007|Kehabiqo Febiqo|00019CB7|100355||||||89.96|93.09|0.00|-3.06| +20|2023-10-06T21:17:42.8050000-07:00|4002247D|Zeromus|8B63|Prominence Spine|4002247D|Zeromus|4.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:17:42.8050000-07:00|4002247E|Zeromus|8B63|Prominence Spine|4002247E|Zeromus|4.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:17:42.8050000-07:00|4002247F|Zeromus|8B63|Prominence Spine|4002247F|Zeromus|4.700|83.50|116.50|0.00|0.00| +20|2023-10-06T21:17:42.8050000-07:00|40022480|Zeromus|8B63|Prominence Spine|40022480|Zeromus|4.700|100.00|100.00|0.00|-0.79| +20|2023-10-06T21:17:42.8050000-07:00|40022481|Zeromus|8B63|Prominence Spine|40022481|Zeromus|4.700|116.50|116.50|0.00|0.00| +20|2023-10-06T21:17:42.8050000-07:00|40022482|Zeromus|8B63|Prominence Spine|40022482|Zeromus|4.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:17:42.8050000-07:00|40022483|Zeromus|8B63|Prominence Spine|40022483|Zeromus|4.700|112.00|100.00|0.00|0.00| +20|2023-10-06T21:17:42.8050000-07:00|40022484|Zeromus|8B63|Prominence Spine|40022484|Zeromus|4.700|100.00|100.00|0.00|1.57| +261|2023-10-06T21:17:42.2660000-07:00|Change|4002247D||||||||||||||||| +261|2023-10-06T21:17:42.2660000-07:00|Change|40022484||||||||||||||||| +261|2023-10-06T21:17:42.2660000-07:00|Change|40022480||||||||||||||||| +261|2023-10-06T21:17:42.2660000-07:00|Change|40022482||||||||||||||||| +261|2023-10-06T21:17:42.2660000-07:00|Change|4002247E||||||||||||||| +37|2023-10-06T21:17:42.9380000-07:00|10FF0006|Wowobora Gogobora|00019CC3|40222|81809|4850|10000|0||92.65|101.58|0.00|2.80|1B00|0|0|01|050006FD|01|42700000|| +26|2023-10-06T21:17:42.9380000-07:00|6FD|Vulnerability Up|60.00|40022486|Zeromus|10FF0006|Wowobora Gogobora|01|81809|44| +38|2023-10-06T21:17:42.9390000-07:00|40022BEC|Seraph|005A5A00|73956|77430|10000|10000|0||99.23|94.99|0.00|3.09|0|0|0||||||| +26|2023-10-06T21:17:42.9390000-07:00|7AD|Summon Order III|30.00|40022BEC|Seraph|40022BEC|Seraph|01|77430|77430| +21|2023-10-06T21:17:42.9390000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37068|81541|1950|10000|||107.64|106.14|0.00|0.36|37068|81541|1950|10000|||107.64|106.14|0.00|0.36|00019CC4|0|1| +21|2023-10-06T21:17:42.9390000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|12550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17563542|40478540|10000|10000|||100.00|80.10|0.00|0.00|37960|82773|9200|10000|||91.44|90.82|0.00|-2.72|00019CC5|0|1| +39|2023-10-06T21:17:42.9830000-07:00|10FF0003|Gegehi Gehi|30339|73814|4150|10000|||110.79|106.71|0.00|1.44| +39|2023-10-06T21:17:42.9830000-07:00|10FF000A|Dukaro Nezikaro|38787|82773|9400|10000|||91.44|90.82|0.00|-2.72| +22|2023-10-06T21:17:43.0280000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|1C2B0000|2B0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|101081|129071|10000|10000|||106.37|88.30|0.00|3.13|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CC6|0|8| +22|2023-10-06T21:17:43.0280000-07:00|40022BEC|Seraph|40A3|Consolation|10FF000A|Dukaro Nezikaro|4|1D680000|680E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|38787|82773|9400|10000|||91.52|90.07|0.00|-2.69|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CC6|1|8| +22|2023-10-06T21:17:43.0280000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|1C250000|250E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|40222|81809|4850|10000|||92.22|102.12|0.00|-2.87|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CC6|2|8| +22|2023-10-06T21:17:43.0280000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|1CFF0000|FF0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|100355|129844|10000|10000|||88.23|91.55|0.00|-3.06|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CC6|3|8| +22|2023-10-06T21:17:43.0280000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0009|Zewo Negiwo|4|1D790000|790E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|35948|81177|2712|10000|||92.62|107.62|0.00|0.25|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CC6|4|8| +22|2023-10-06T21:17:43.0280000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|200004|2F7C0000|7C0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|43949|90216|10000|10000|||114.33|91.39|0.00|2.34|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CC6|5|8| +22|2023-10-06T21:17:43.0280000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1C430000|430E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|37068|81541|1950|10000|||107.88|106.70|0.00|0.38|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CC6|6|8| +22|2023-10-06T21:17:43.0280000-07:00|40022BEC|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|4|1D7E0000|7E0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|30339|73814|4150|10000|||111.10|107.17|0.00|1.09|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CC6|7|8| +21|2023-10-06T21:17:43.0280000-07:00|10FF0009|Zewo Negiwo|03|Sprint|10FF0009|Zewo Negiwo|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35948|81177|2712|10000|||92.62|107.62|0.00|0.25|35948|81177|2712|10000|||92.62|107.62|0.00|0.25|00019CC7|0|1| +38|2023-10-06T21:17:43.0280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100355|129844|10000|10000|5||88.23|91.55|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:43.0280000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:17:43.0280000-07:00|10FF0009|Zewo Negiwo|005A5A18|35948|81177|2712|10000|9||92.62|107.62|0.00|0.25|0|0|0|||||||||||||||| +26|2023-10-06T21:17:43.0280000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:17:43.0280000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|43949|90216|10000|10000|13||114.33|91.39|0.00|2.34|0|0|0||||||||||||| +26|2023-10-06T21:17:43.0280000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:17:43.0280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|40222|81809|4850|10000|8||92.22|102.12|0.00|-2.87|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:43.0280000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T21:17:43.0280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101081|129071|10000|10000|5||106.37|88.30|0.00|3.13|0|0|0||||||||||||| +26|2023-10-06T21:17:43.0280000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T21:17:43.0280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|37068|81541|1950|10000|8||107.88|106.70|0.00|0.38|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:43.0280000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T21:17:43.0280000-07:00|10FF0003|Gegehi Gehi|005A5A23|30339|73814|4150|10000|10||111.10|107.17|0.00|1.09|0|0|0|||||||||||||||| +26|2023-10-06T21:17:43.0280000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:17:43.0280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|38787|82773|9400|10000|9||91.52|90.07|0.00|-2.69|0|0|0|||||||||||||||| +26|2023-10-06T21:17:43.0280000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +261|2023-10-06T21:17:42.5800000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:17:42.5800000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:17:43.1610000-07:00|10FF0009|Zewo Negiwo|00019CC7|35948|81177|2712|10000|9||92.82|108.07|-0.02|-0.14|1800|0|0|01|05000032|1E|41200000|| +26|2023-10-06T21:17:43.1610000-07:00|32|Sprint|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|1E|81177|81177| +261|2023-10-06T21:17:42.6970000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:17:42.6970000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:17:43.2070000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A2A|43949|90216|10000|10000|||114.63|90.85|0.00|2.41|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|3.09| +38|2023-10-06T21:17:43.2070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|46551|90216|10000|10000|13||114.63|90.85|0.00|2.41|0|0|0||||||||||||| +37|2023-10-06T21:17:43.2520000-07:00|40022472|Zeromus|00019CC1|17553559||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:43.2520000-07:00|10FF0006|Wowobora Gogobora|00019CC1|40222|81809|4850|10000|8||91.22|103.39|0.00|-1.62|1B00|0|0|01|03000B25|0|0|| +24|2023-10-06T21:17:43.2520000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A4B|38787|82773|9400|10000|||91.50|89.57|0.00|-2.67|10FF0009|Zewo Negiwo|0|35948|81177|2712|10000|||92.68|108.01|0.00|-0.14| +38|2023-10-06T21:17:43.2520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|40222|81809|4850|10000|8||91.22|103.39|0.00|-1.62|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:17:43.2520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|41422|82773|9400|10000|9||91.50|89.57|0.00|-2.67|0|0|0|||||||||||||||| +261|2023-10-06T21:17:42.6970000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:17:42.6970000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:17:42.6970000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:17:42.6970000-07:00|Change|40022481||||||||||||| +24|2023-10-06T21:17:43.2960000-07:00|10FF0003|Gegehi Gehi|HoT|0|A13|30339|73814|4150|10000|||111.80|108.23|0.00|0.79|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|3.09| +21|2023-10-06T21:17:43.2960000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|110B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17563542|40478540|10000|10000|||100.00|80.10|0.00|0.00|40222|81809|4850|10000|||91.22|103.39|0.00|-1.62|00019CC8|0|1| +38|2023-10-06T21:17:43.2960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|40222|81809|4850|10000|8||91.22|103.39|0.00|-1.62|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:43.2960000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:17:43.2960000-07:00|10FF0003|Gegehi Gehi|005A5A23|32918|73814|4150|10000|10||111.80|108.23|0.00|0.79|0|0|0|||||||||||||||| +24|2023-10-06T21:17:43.3860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A4F|37068|81541|1950|10000|||108.73|108.76|0.00|0.39|40022BEC|Seraph|0|73956|77430|10000|10000|||99.23|94.99|0.00|3.09| +38|2023-10-06T21:17:43.3860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39707|81541|2500|10000|8||108.73|108.76|0.00|0.39|0|0|0||||||||||||||||||| +21|2023-10-06T21:17:43.4310000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|46BA0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|17553559|40478540|10000|10000|||100.00|80.10|0.00|0.00|46551|90216|10000|10000|||114.82|90.41|0.00|2.61|00019CC9|0|1| +37|2023-10-06T21:17:43.4760000-07:00|40022472|Zeromus|00019CC5|17548866||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:43.4760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A60|100355|129844|10000|10000|||86.27|89.55|0.00|-3.06|10FF0009|Zewo Negiwo|0|35948|81177|2712|10000|||92.30|108.14|0.00|-0.18| +24|2023-10-06T21:17:43.4760000-07:00|40022472|Zeromus|DoT|A92|38A|17553559|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|40222|81809|4850|10000|||90.20|104.71|0.00|2.75| +24|2023-10-06T21:17:43.4760000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A4E|40222|81809|4850|10000|||90.20|104.71|0.00|2.75|10FF0006|Wowobora Gogobora|0|40222|81809|4850|10000|||90.20|104.71|0.00|2.75| +38|2023-10-06T21:17:43.4760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103011|129844|10000|10000|5||86.27|89.55|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:43.4760000-07:00|40022472|Zeromus|005A5A00|17547960|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:17:43.4760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42860|81809|4850|10000|8||90.20|104.71|0.00|2.75|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:17:42.9320000-07:00|Change|10FF000A||||||||||| +24|2023-10-06T21:17:43.5200000-07:00|10FF0009|Zewo Negiwo|HoT|0|9A9|35948|81177|2712|10000|||92.30|108.14|0.00|-0.18|10FF0009|Zewo Negiwo|0|35948|81177|2712|10000|||92.30|108.14|0.00|-0.18| +38|2023-10-06T21:17:43.5200000-07:00|10FF0009|Zewo Negiwo|005A5A18|38421|81177|2712|10000|9||92.30|108.14|0.00|-0.18|0|0|0||||||||||||||||||| +24|2023-10-06T21:17:43.5650000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A7F|101081|129071|10000|10000|||106.39|87.44|0.00|3.12|10FF0009|Zewo Negiwo|0|35948|81177|2712|10000|||92.30|108.14|0.00|-0.18| +38|2023-10-06T21:17:43.5650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103768|129071|10000|10000|5||106.39|87.44|0.00|3.12|0|0|0||||||||||||| +261|2023-10-06T21:17:43.1440000-07:00|Change|40022BFA||||| +38|2023-10-06T21:17:43.7440000-07:00|40022C10||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:17:43.7440000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|712003|61840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17547960|40478540|10000|10000|||100.00|80.10|0.00|0.00|103011|129844|10000|10000|||86.40|88.03|0.00|-3.06|00019CCA|0|1| +38|2023-10-06T21:17:43.7440000-07:00|40022C10||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:17:43.8330000-07:00|40022485|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019CCB|0|0| +21|2023-10-06T21:17:43.8330000-07:00|40022486|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019CCC|0|0| +261|2023-10-06T21:17:43.3300000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:17:43.9220000-07:00|10FF0001|Sesuga Sapisuga|00019CC6|110979|129071|10000|10000|5||108.15|87.60|0.00|1.99|1300|0|0|01|0200077D|0|41E8D914|| +21|2023-10-06T21:17:43.9220000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17547960|40478540|10000|10000|||100.00|80.10|0.00|0.00|103768|129071|10000|10000|||108.15|87.60|0.00|1.99|00019CCD|0|1| +31|2023-10-06T21:17:43.9220000-07:00|10FF0001||||| +38|2023-10-06T21:17:43.9660000-07:00|10FF0009|Zewo Negiwo|005A5A18|38421|81177|2712|10000|9||90.44|110.63|0.00|-0.52|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:43.9660000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:17:43.4240000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:17:43.4240000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:17:44.0560000-07:00|40022472|Zeromus|00019CC8|17543597||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:44.0560000-07:00|10FF000A|Dukaro Nezikaro|00019CC6|48950|82773|9400|10000|9||89.42|86.12|0.00|-2.91|1E01|0|0|01|0300077D|0|41E7C6A5|| +39|2023-10-06T21:17:44.1010000-07:00|40022BEC|Seraph|73956|77430|10000|10000|||99.23|94.99|0.00|3.09| +38|2023-10-06T21:17:44.1010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48950|82773|9400|10000|9||89.42|86.12|0.00|-2.91|0|0|0||||||||||||| +30|2023-10-06T21:17:44.1010000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +03|2023-10-06T21:17:43.6610000-07:00|40022C10|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||87.00|105.79|0.00|0.73| +261|2023-10-06T21:17:43.6610000-07:00|Add|40022C10||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:44.1890000-07:00|10FF0006|Wowobora Gogobora|00019CC6|50065|81809|4850|10000|8||88.53|106.67|0.00|-2.68|1B02|0|0|01|0700077D|0|41E6B643|| +261|2023-10-06T21:17:43.6610000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:17:43.6610000-07:00|Change|40022C10||| +37|2023-10-06T21:17:44.2340000-07:00|40022472|Zeromus|00019CC9|17525491||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:44.2340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50065|81809|4850|10000|8||88.28|106.93|0.00|-2.51|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:44.2340000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +261|2023-10-06T21:17:43.7820000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:17:44.2780000-07:00|40022472|Zeromus|00019CC0|17507977||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:44.2780000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17543597|40478540|10000|10000|||100.00|80.10|0.00|0.00|46551|90216|10000|10000|||115.93|90.06|0.00|1.68|00019CCE|0|1| +21|2023-10-06T21:17:44.2790000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|28450000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|17543597|40478540|10000|10000|||100.00|80.10|0.00|0.00|110979|129071|10000|10000|||109.80|88.66|0.00|1.74|00019CCF|0|1| +38|2023-10-06T21:17:44.2790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110979|129071|10000|10000|5||109.80|88.66|0.00|1.74|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:44.2790000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:17:44.2790000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:17:44.3230000-07:00|10FF0007|Kehabiqo Febiqo|00019CC6|110434|129844|10000|10000|5||83.43|87.29|0.00|3.06|1503|0|0|01|0100077D|0|41E5A3D4|| +37|2023-10-06T21:17:44.3680000-07:00|40022472|Zeromus|00019CCA|17483013||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:44.3680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|46551|90216|10000|10000|13||116.72|90.06|0.00|1.64|0|0|0||||||||||||| +30|2023-10-06T21:17:44.3680000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +37|2023-10-06T21:17:44.4570000-07:00|40022472|Zeromus|00019CCD|17480207||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:44.4570000-07:00|10FF0001|Sesuga Sapisuga|00019CCD|110979|129071|10000|10000|5||110.04|89.92|0.00|1.52|1300|0|0|02|0400076E|03|C1F00000|||||| +37|2023-10-06T21:17:44.4570000-07:00|10FF0009|Zewo Negiwo|00019CC6|45966|81177|2712|10000|9||88.25|112.85|0.00|-1.07|1804|0|0|01|0400077D|0|41E49165|| +38|2023-10-06T21:17:44.5010000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39707|81541|2500|10000|8||110.46|110.49|0.00|1.98|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:44.5010000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:17:44.5900000-07:00|10FF0008|Kokosaze Lulusaze|00019CC6|58707|90216|10000|10000|13||117.57|89.86|0.00|1.73|1F05|0|0|01|0300077D|0|41E37EF6|| +39|2023-10-06T21:17:44.6340000-07:00|10FF0009|Zewo Negiwo|46777|81177|2933|10000|||87.91|113.40|0.00|-0.44| +38|2023-10-06T21:17:44.6340000-07:00|10FF0003|Gegehi Gehi|005A5A23|32918|73814|4150|10000|10||116.22|115.53|0.00|0.54|0|0|0|||||||||||||||| +30|2023-10-06T21:17:44.6340000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +20|2023-10-06T21:17:44.6790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|110.56|110.30|0.00|1.97| +37|2023-10-06T21:17:44.7240000-07:00|10FF0004|Buhojaqe Zijaqe|00019CC6|46942|81541|2500|10000|8||110.56|110.30|0.00|1.97|1C06|0|0|01|0500077D|0|41E26E93|| +39|2023-10-06T21:17:44.7240000-07:00|10FF0008|Kokosaze Lulusaze|59609|90216|10000|10000|||117.77|89.75|0.00|1.78| +261|2023-10-06T21:17:44.3320000-07:00|Change|40022C10||| +261|2023-10-06T21:17:44.3320000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:17:44.3320000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:17:44.7680000-07:00|40022472|Zeromus|DoT|0|F75|17480207|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|110979|129071|10000|10000|||111.42|91.32|0.00|1.28| +34|2023-10-06T21:17:44.7690000-07:00|40022C10|Carbuncle|40022C10|Carbuncle|01| +38|2023-10-06T21:17:44.7690000-07:00|40022472|Zeromus|005A5A00|17476250|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:17:44.7690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110979|129071|10000|10000|5||111.42|91.32|0.00|1.28|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:44.7690000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:17:44.8130000-07:00|40022BEC|Seraph|40A4|Seraphic Veil|10FF000A|Dukaro Nezikaro|200004|21180000|180E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|48950|82773|9400|10000|||88.37|87.00|0.00|-1.33|73956|77430|10000|10000|||99.23|94.99|0.00|3.09|00019CD0|0|1| +38|2023-10-06T21:17:44.8130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48950|82773|9400|10000|10||88.37|87.00|0.00|-1.33|0|0|0||||||||||||| +37|2023-10-06T21:17:44.8580000-07:00|40022472|Zeromus|00019CCF|17465941||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:44.8580000-07:00|10FF0001|Sesuga Sapisuga|00019CCF|110979|129071|10000|10000|5||111.42|91.32|0.00|1.28|1300|0|0|02|0400076E|03|41F00000|||||| +37|2023-10-06T21:17:44.8580000-07:00|10FF0003|Gegehi Gehi|00019CC6|40468|73814|4150|10000|10||116.92|116.72|0.00|0.54|2307|0|0|01|0400077D|0|41E15E30|| +39|2023-10-06T21:17:44.8580000-07:00|10FF0001|Sesuga Sapisuga|112269|129071|10000|10000|||111.42|91.32|0.00|1.28| +36|2023-10-06T21:17:44.8580000-07:00|2B20|3| +38|2023-10-06T21:17:44.8580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|112269|129071|10000|10000|5||111.42|91.32|0.00|1.28|0|0|0||||||||||||||||||| +38|2023-10-06T21:17:44.8580000-07:00|40022BEC|Seraph|005A5A00|73956|77430|10000|10000|0||99.23|94.99|0.00|3.09|0|0|0|||| +30|2023-10-06T21:17:44.8580000-07:00|7AD|Summon Order III|0.00|40022BEC|Seraph|40022BEC|Seraph|01|77430|77430| +21|2023-10-06T21:17:44.9020000-07:00|40022485|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019CD1|0|0| +21|2023-10-06T21:17:44.9020000-07:00|40022486|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019CD2|0|0| +39|2023-10-06T21:17:44.9020000-07:00|10FF0004|Buhojaqe Zijaqe|47757|81541|2700|10000|||110.69|109.96|0.00|2.59| +38|2023-10-06T21:17:44.9020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110434|129844|10000|10000|5||82.58|89.57|0.00|-1.49|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:44.9020000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +261|2023-10-06T21:17:44.5220000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:17:44.9910000-07:00|10FF0007|Kehabiqo Febiqo|111732|129844|10000|10000|||82.37|89.52|0.00|-2.11| +39|2023-10-06T21:17:44.9910000-07:00|10FF0006|Wowobora Gogobora|50883|81809|5050|10000|||88.73|107.21|0.00|1.56| +37|2023-10-06T21:17:45.0350000-07:00|40022472|Zeromus|00019CCE|17463718||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:45.0790000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|273A0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|17463718|40478540|10000|10000|||100.00|80.10|0.00|0.00|50883|81809|5050|10000|||88.82|107.24|-0.02|1.42|00019CD3|0|1| +38|2023-10-06T21:17:45.0790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50883|81809|4750|10000|8||88.82|107.24|-0.02|1.42|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:45.0790000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:17:45.1250000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17463718|40478540|10000|10000|||100.00|80.10|0.00|0.00|48950|82773|9400|10000|||89.09|86.05|0.00|-2.64|00019CD4|0|1| +261|2023-10-06T21:17:44.7560000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:17:44.8690000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:17:44.8690000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:17:45.4360000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17463718|40478540|10000|10000|||100.00|80.10|0.00|0.00|111732|129844|10000|10000|||82.13|90.43|0.00|-1.07|00019CD5|0|1| +261|2023-10-06T21:17:44.9840000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:17:45.5690000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|750003|4E930000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|17463718|40478540|10000|10000|||100.00|80.10|0.00|0.00|40468|73814|4150|10000|||118.35|118.49|0.00|0.68|00019CD6|0|1| +21|2023-10-06T21:17:45.6140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30A50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|17463718|40478540|10000|10000|||100.00|80.10|0.00|0.00|47757|81541|2700|10000|||110.83|109.58|0.00|-2.79|00019CD7|0|1| +37|2023-10-06T21:17:45.6580000-07:00|40022472|Zeromus|00019CD4|17461413||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:45.7020000-07:00|40022472|Zeromus|00019CD3|17451371||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:45.7020000-07:00|10FF0006|Wowobora Gogobora|00019CD3|50883|81809|4750|10000|8||88.60|107.74|0.00|-1.89|1B00|0|0|01|0B25|0|0|| +21|2023-10-06T21:17:45.7030000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|456003|258B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17463718|40478540|10000|10000|||100.00|80.10|0.00|0.00|50883|81809|4750|10000|||88.60|107.74|0.00|-1.89|00019CD8|0|1| +21|2023-10-06T21:17:45.7030000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|590F0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|17463718|40478540|10000|10000|||100.00|80.10|0.00|0.00|48950|82773|9400|10000|||88.69|82.61|0.00|-3.08|00019CD9|0|1| +38|2023-10-06T21:17:45.7030000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50883|81809|4750|10000|8||88.60|107.74|0.00|-1.89|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:45.7030000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:17:45.7470000-07:00|40022472|Zeromus|8D28|Nox|40022472|Zeromus|1B|8D288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17451371|40478540|10000|10000|||100.00|80.10|0.00|0.00|17451371|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019CDA|0|1| +38|2023-10-06T21:17:45.7470000-07:00|40022472|Zeromus|005A5A00|17451371|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:17:45.7470000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +261|2023-10-06T21:17:45.2860000-07:00|Change|40022472||||| +37|2023-10-06T21:17:45.8360000-07:00|10FF000A|Dukaro Nezikaro|00019CD0|57422|82773|9400|10000|10||88.66|82.38|0.00|1.71|1E00|0|0|01|0300077D|0|41E7CED6|| +261|2023-10-06T21:17:45.3760000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:17:45.9250000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|5E270000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|17451371|40478540|10000|10000|||100.00|80.10|0.00|0.00|59609|90216|10000|10000|||118.60|88.83|0.00|2.99|00019CDB|0|1| +37|2023-10-06T21:17:45.9690000-07:00|40022472|Zeromus|00019CD5|17448601||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:45.9690000-07:00|40022485|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019CDC|0|0| +21|2023-10-06T21:17:45.9700000-07:00|40022486|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019CDD|0|0| +39|2023-10-06T21:17:45.9700000-07:00|10FF0003|Gegehi Gehi|41206|73814|3950|10000|||118.63|118.81|0.00|-2.69| +39|2023-10-06T21:17:46.0140000-07:00|10FF000A|Dukaro Nezikaro|58249|82773|9600|10000|||88.60|81.81|0.00|1.71| +21|2023-10-06T21:17:46.1930000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16690000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|17448601|40478540|10000|10000|||100.00|80.10|0.00|0.00|111732|129844|10000|10000|||81.90|90.75|0.00|2.95|00019CDE|0|1| +21|2023-10-06T21:17:46.1930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AFF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17448601|40478540|10000|10000|||100.00|80.10|0.00|0.00|112269|129071|10000|10000|||111.64|91.39|0.00|1.24|00019CDF|0|1| +31|2023-10-06T21:17:46.1930000-07:00|10FF0001||||| +37|2023-10-06T21:17:46.2370000-07:00|40022472|Zeromus|00019CD9|17425802||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:45.7890000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:17:45.9050000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:17:46.4160000-07:00|40022472|Zeromus|00019CD7|17413349||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:17:46.4160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47757|81541|2850|10000|8||110.86|109.55|-0.02|-3.01|0|0|0||||||||||||||||||| +37|2023-10-06T21:17:46.4590000-07:00|40022472|Zeromus|00019CD8|17403738||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:46.5040000-07:00|40022472|Zeromus|DoT|A92|374|17403738|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|50883|81809|4750|10000|||88.49|107.96|0.00|2.75| +38|2023-10-06T21:17:46.5040000-07:00|40022472|Zeromus|005A5A00|17402854|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:17:46.5480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50883|81809|4750|10000|8||88.49|107.96|0.00|2.75|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:46.5480000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:17:46.2200000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:17:46.7260000-07:00|40022472|Zeromus|00019CDE|17397117||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:46.7260000-07:00|40022472|Zeromus|00019CDF|17394302||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:46.3180000-07:00|Change|4002247B||||||||| +261|2023-10-06T21:17:46.3180000-07:00|Change|4002247C||||||||| +21|2023-10-06T21:17:46.7710000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2A150000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|17402854|40478540|10000|10000|||100.00|80.10|0.00|0.00|112269|129071|10000|10000|||111.64|91.39|0.00|-2.34|00019CE0|0|1| +38|2023-10-06T21:17:46.7710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|112269|129071|10000|10000|5||111.64|91.39|0.00|-2.34|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:46.7710000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:17:46.3180000-07:00|Change|10FF0009||||||||||||| +20|2023-10-06T21:17:46.8160000-07:00|4002247B|Zeromus|8D2A|Nox|4002247B|Zeromus|4.700|81.54|118.62|0.00|0.00| +20|2023-10-06T21:17:46.8160000-07:00|4002247C|Zeromus|8D2A|Nox|4002247C|Zeromus|4.700|118.81|118.95|0.00|0.00| +261|2023-10-06T21:17:46.4160000-07:00|Remove|40022BE9| +261|2023-10-06T21:17:46.4160000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:17:46.9480000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46777|81177|2933|10000|||81.53|118.61|0.00|-1.64|46777|81177|2933|10000|||81.53|118.61|0.00|-1.64|00019CE1|0|1| +21|2023-10-06T21:17:46.9480000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17394302|40478540|10000|10000|||100.00|80.10|0.00|0.00|59609|90216|10000|10000|||118.76|85.96|0.00|-2.97|00019CE2|0|1| +21|2023-10-06T21:17:47.0370000-07:00|40022485|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019CE3|0|0| +21|2023-10-06T21:17:47.0370000-07:00|40022486|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019CE4|0|0| +37|2023-10-06T21:17:47.0820000-07:00|40022472|Zeromus|00019CDB|17370199||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:47.0820000-07:00|40022BEC|Seraph|73956|77430|10000|10000|||100.47|98.56|0.00|0.94| +20|2023-10-06T21:17:47.0820000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|110.96|109.44|-0.02|2.23| +37|2023-10-06T21:17:47.1270000-07:00|40022472|Zeromus|00019CD6|17350084||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:47.2600000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|2F2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17350084|40478540|10000|10000|||100.00|80.10|0.00|0.00|41206|73814|3950|10000|||118.79|118.94|0.00|1.10|00019CE5|0|1| +261|2023-10-06T21:17:46.7330000-07:00|Change|40022BEC||||||||| +261|2023-10-06T21:17:46.8450000-07:00|Change|4002247B||||||||||||| +261|2023-10-06T21:17:46.8450000-07:00|Change|4002247C||||||||||||| +21|2023-10-06T21:17:47.3040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17350084|40478540|10000|10000|||100.00|80.10|0.00|0.00|58249|82773|9600|10000|||88.58|81.65|0.00|1.71|00019CE6|0|1| +38|2023-10-06T21:17:47.3040000-07:00|10FF0003|Gegehi Gehi|005A5A23|41206|73814|3950|10000|10||118.79|118.94|0.00|1.10|0|0|0|||||||||||||||| +30|2023-10-06T21:17:47.3040000-07:00|2B|Weakness|0.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T21:17:46.8450000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:17:46.9650000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:17:47.5270000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|27B30000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|17350084|40478540|10000|10000|||100.00|80.10|0.00|0.00|50883|81809|4750|10000|||88.39|108.25|0.00|0.02|00019CE7|0|1| +38|2023-10-06T21:17:47.5270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50883|81809|4450|10000|8||88.39|108.25|0.00|0.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:47.5270000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:17:47.0800000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:17:47.5710000-07:00|10FF0009|Zewo Negiwo|00019CE1|46777|81177|2933|10000|9||81.53|118.61|0.00|-1.64|1800|0|0|01|020004B4|0|41A80000|| +26|2023-10-06T21:17:47.5710000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +39|2023-10-06T21:17:47.6150000-07:00|10FF0009|Zewo Negiwo|47588|81177|3154|10000|||81.54|118.45|-0.02|-1.72| +04|2023-10-06T21:17:47.1700000-07:00|40022BFA|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||97.10|102.78|0.00|2.94| +261|2023-10-06T21:17:47.1700000-07:00|Remove|40022BFA| +37|2023-10-06T21:17:47.7040000-07:00|40022472|Zeromus|00019CE2|17347278||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:47.7040000-07:00|10FF0008|Kokosaze Lulusaze|60511|90216|10000|10000|||118.76|82.75|0.00|-3.05| +21|2023-10-06T21:17:47.7040000-07:00|40022487|Zeromus|8B64|Sparking Flare|10FF0008|Kokosaze Lulusaze|150003|96BA0000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|59609|90216|10000|10000|||118.76|82.75|0.00|-3.05|44|44|0|10000|||105.00|100.00|0.00|0.00|00019CE8|0|1| +21|2023-10-06T21:17:47.7040000-07:00|40022488|Zeromus|8B64|Sparking Flare|10FF0007|Kehabiqo Febiqo|150003|5E7F0000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|111732|129844|10000|10000|||81.90|90.75|0.00|2.10|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CE9|0|1| +21|2023-10-06T21:17:47.7040000-07:00|40022489|Zeromus|8B64|Sparking Flare|10FF0004|Buhojaqe Zijaqe|150003|95960000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|47757|81541|2850|10000|||111.04|109.21|0.00|-2.78|44|44|0|10000|||105.00|100.00|0.00|0.00|00019CEA|0|1| +21|2023-10-06T21:17:47.7040000-07:00|4002248A|Zeromus|8B64|Sparking Flare|10FF0009|Zewo Negiwo|150003|9A230000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|47588|81177|3154|10000|||81.62|117.63|0.00|-2.11|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CEB|0|1| +21|2023-10-06T21:17:47.7040000-07:00|4002248B|Zeromus|8B64|Sparking Flare|10FF0006|Wowobora Gogobora|150003|B86F0000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|50883|81809|4450|10000|||88.36|108.29|0.00|2.75|44|44|0|10000|||105.00|100.00|0.00|0.00|00019CEC|0|1| +21|2023-10-06T21:17:47.7040000-07:00|4002248C|Zeromus|8B64|Sparking Flare|10FF000A|Dukaro Nezikaro|150003|9F240000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|58249|82773|9600|10000|||88.58|81.65|0.00|1.71|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CED|0|1| +36|2023-10-06T21:17:47.7040000-07:00|2C4C|3| +21|2023-10-06T21:17:47.7040000-07:00|4002248D|Zeromus|8B64|Sparking Flare|10FF0003|Gegehi Gehi|150003|97F60000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|41206|73814|3950|10000|||118.79|118.94|0.00|-2.69|44|44|0|10000|||105.00|100.00|0.00|0.00|00019CEE|0|1| +261|2023-10-06T21:17:47.2650000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:17:47.2650000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:17:47.2650000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:17:47.2650000-07:00|Change|4002248A||||||||||||| +21|2023-10-06T21:17:47.7040000-07:00|4002248E|Zeromus|8B64|Sparking Flare|10FF0001|Sesuga Sapisuga|150003|5ECA0000|180E|8320000|1B|8B648000|0|0|0|0|0|0|0|0|0|0|112269|129071|10000|10000|||111.64|91.39|0.00|-2.34|44|44|0|10000|||95.00|100.00|0.00|0.00|00019CEF|0|1| +261|2023-10-06T21:17:47.2650000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:17:47.2650000-07:00|Change|4002248C||||||||||||| +38|2023-10-06T21:17:47.7040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111732|129844|10000|10000|0||81.90|90.75|0.00|2.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:17:47.7040000-07:00|832|Fire Resistance Down II|2.00|40022488|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:17:47.7040000-07:00|10FF0009|Zewo Negiwo|005A5A18|47588|81177|3154|10000|0||81.62|117.63|0.00|-2.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:17:47.7040000-07:00|832|Fire Resistance Down II|2.00|4002248A|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +38|2023-10-06T21:17:47.7040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60511|90216|10000|10000|0||118.76|82.75|0.00|-3.05|0|0|0||||||||||||| +26|2023-10-06T21:17:47.7040000-07:00|832|Fire Resistance Down II|2.00|40022487|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T21:17:47.7040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50883|81809|4450|10000|0||88.36|108.29|0.00|2.75|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:47.7040000-07:00|832|Fire Resistance Down II|2.00|4002248B|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T21:17:47.7040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|112269|129071|10000|10000|0||111.64|91.39|0.00|-2.34|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:47.7040000-07:00|832|Fire Resistance Down II|2.00|4002248E|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +261|2023-10-06T21:17:47.2650000-07:00|Change|4002248E||||||||||||| +38|2023-10-06T21:17:47.7040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47757|81541|2850|10000|0||111.04|109.21|0.00|-2.78|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:47.7040000-07:00|832|Fire Resistance Down II|2.00|40022489|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +261|2023-10-06T21:17:47.2650000-07:00|Change|4002248D||||||||||||| +38|2023-10-06T21:17:47.7040000-07:00|10FF0003|Gegehi Gehi|005A5A23|41206|73814|3950|10000|0||118.79|118.94|0.00|-2.69|0|0|0|||||||||||||||| +26|2023-10-06T21:17:47.7040000-07:00|832|Fire Resistance Down II|2.00|4002248D|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T21:17:47.7040000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58249|82773|9600|10000|0||88.58|81.65|0.00|1.71|0|0|0|||||||||||||||| +26|2023-10-06T21:17:47.7040000-07:00|832|Fire Resistance Down II|2.00|4002248C|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +24|2023-10-06T21:17:47.7480000-07:00|40022472|Zeromus|DoT|0|EE3|17347278|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|112269|129071|10000|10000|||111.64|91.39|0.00|-2.34| +21|2023-10-06T21:17:47.7480000-07:00|4002248F|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019CF0|0|0| +21|2023-10-06T21:17:47.7480000-07:00|40022490|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019CF1|0|0| +261|2023-10-06T21:17:47.3570000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|4002247D||||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|40022484||||||||||||| +38|2023-10-06T21:17:47.7490000-07:00|40022472|Zeromus|005A5A00|17343467|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|40022480||||||||||||| +21|2023-10-06T21:17:47.7930000-07:00|4002247D|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|1.57|00019CF2|0|0| +21|2023-10-06T21:17:47.7930000-07:00|4002247E|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019CF3|0|0| +21|2023-10-06T21:17:47.7930000-07:00|4002247F|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|-1.57|00019CF4|0|0| +21|2023-10-06T21:17:47.7930000-07:00|40022480|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|3.14|00019CF5|0|0| +21|2023-10-06T21:17:47.7940000-07:00|40022481|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|1.57|00019CF6|0|0| +21|2023-10-06T21:17:47.7940000-07:00|40022482|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019CF7|0|0| +21|2023-10-06T21:17:47.7940000-07:00|40022483|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|-1.57|00019CF8|0|0| +21|2023-10-06T21:17:47.7940000-07:00|40022484|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|3.14|00019CF9|0|0| +261|2023-10-06T21:17:47.3570000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|4002247E||||||||||||| +261|2023-10-06T21:17:47.3570000-07:00|Change|40022481||||||||||||| +37|2023-10-06T21:17:47.8360000-07:00|40022472|Zeromus|00019CE6|17339918||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:47.8360000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|716003|2F6B0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|17343467|40478540|10000|10000|||100.00|80.10|0.00|0.00|58249|82773|9600|10000|||88.58|81.65|0.00|1.71|00019CFA|0|1| +39|2023-10-06T21:17:47.8810000-07:00|10FF0001|Sesuga Sapisuga|113559|129071|10000|10000|||111.64|91.39|0.00|-2.34| +39|2023-10-06T21:17:47.8810000-07:00|10FF0004|Buhojaqe Zijaqe|48572|81541|3050|10000|||111.04|109.21|0.00|-2.78| +21|2023-10-06T21:17:47.8810000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|38A70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|111732|129844|10000|10000|||81.90|90.75|0.00|2.10|17343467|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019CFB|0|1| +36|2023-10-06T21:17:47.8810000-07:00|2D28|3| +39|2023-10-06T21:17:47.9700000-07:00|10FF0007|Kehabiqo Febiqo|113030|129844|10000|10000|||81.90|90.75|0.00|2.10| +39|2023-10-06T21:17:48.0160000-07:00|10FF0006|Wowobora Gogobora|51701|81809|4650|10000|||88.49|108.29|0.00|2.30| +21|2023-10-06T21:17:48.0160000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30310000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|17339918|40478540|10000|10000|||100.00|80.10|0.00|0.00|48572|81541|3050|10000|||111.04|109.21|0.00|-2.78|00019CFC|0|1| +261|2023-10-06T21:17:47.5470000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:17:48.0590000-07:00|40022472|Zeromus|00019CE0|17329145||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:48.1920000-07:00|40022472|Zeromus|00019CE7|17318982||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:48.1920000-07:00|10FF0006|Wowobora Gogobora|00019CE7|51701|81809|4650|10000|0||88.70|108.23|0.00|2.02|1B00|0|0|01|0B25|0|0|| +21|2023-10-06T21:17:48.1920000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|16CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17339918|40478540|10000|10000|||100.00|80.10|0.00|0.00|51701|81809|4650|10000|||88.70|108.23|0.00|2.02|00019CFD|0|1| +38|2023-10-06T21:17:48.1920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51701|81809|4650|10000|0||88.70|108.23|0.00|2.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:48.1920000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:17:48.2370000-07:00|40022472|Zeromus|00019CFA|17306843||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:48.3250000-07:00|40022BEC|Seraph|40A4|Seraphic Veil|10FF0004|Buhojaqe Zijaqe|200004|214E0000|4E0E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|48572|81541|2650|10000|||111.04|109.21|0.00|-2.78|73956|77430|10000|10000|||101.93|102.84|0.00|1.82|00019CFE|0|1| +38|2023-10-06T21:17:48.3250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48572|81541|2650|10000|10||111.04|109.21|0.00|-2.78|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:48.3250000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T21:17:47.8890000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:17:48.3710000-07:00|10FF0008|Kokosaze Lulusaze|00019CE8|21925|90216|10000|10000|0||118.76|82.75|0.00|-3.05|1F00|0|0|02|02000832|0|3FB0624F|||||| +37|2023-10-06T21:17:48.3710000-07:00|10FF0007|Kehabiqo Febiqo|00019CE9|88839|129844|10000|10000|0||81.90|90.75|0.00|2.10|1500|0|0|02|01000000|0|0|||||| +37|2023-10-06T21:17:48.3710000-07:00|10FF0004|Buhojaqe Zijaqe|00019CEA|10278|81541|2650|10000|10||111.04|109.21|0.00|-2.78|1C00|0|0|01|03000832|0|3FB0624F|| +37|2023-10-06T21:17:48.3710000-07:00|10FF0009|Zewo Negiwo|00019CEB|8129|81177|3154|10000|0||81.91|112.91|0.00|3.11|1800|0|0|02|04000000|0|0|||||| +37|2023-10-06T21:17:48.3710000-07:00|10FF0006|Wowobora Gogobora|00019CEC|4486|81809|4650|10000|0||88.81|108.21|-0.01|2.76|1B00|0|0|02|03000832|0|3FB0624F|||||| +37|2023-10-06T21:17:48.3710000-07:00|10FF000A|Dukaro Nezikaro|00019CED|17509|82773|9600|10000|0||88.58|81.65|0.00|1.71|1E00|0|0|02|03000000|0|0|||||| +37|2023-10-06T21:17:48.3710000-07:00|10FF0003|Gegehi Gehi|00019CEE|2304|73814|3950|10000|0||118.65|118.89|0.00|-1.86|2300|0|0|02|02000832|0|3FB0624F|||||| +37|2023-10-06T21:17:48.3710000-07:00|10FF0001|Sesuga Sapisuga|00019CEF|89293|129071|10000|10000|0||111.64|91.39|0.00|-2.34|1300|0|0|02|02000000|0|0|||||| +38|2023-10-06T21:17:48.3710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88839|129844|10000|10000|0||81.90|90.75|0.00|2.10|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:48.3710000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:17:48.3710000-07:00|10FF0009|Zewo Negiwo|005A5A18|8129|81177|3154|10000|0||81.91|112.91|0.00|3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:48.3710000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:17:48.3710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|21925|90216|10000|10000|0||118.76|82.75|0.00|-3.05|0|0|0|||||||||| +30|2023-10-06T21:17:48.3710000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:17:48.3710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|4486|81809|4650|10000|0||88.81|108.21|-0.01|2.76|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:48.3710000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T21:17:48.3710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89293|129071|10000|10000|0||111.64|91.39|0.00|-2.34|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:48.3710000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T21:17:48.3710000-07:00|10FF0003|Gegehi Gehi|005A5A23|2304|73814|3950|10000|0||118.65|118.89|0.00|-1.86|0|0|0|||||||||| +30|2023-10-06T21:17:48.3710000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:17:48.3710000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|17509|82773|9600|10000|0||88.58|81.65|0.00|1.71|0|0|0|||||||||||||||| +30|2023-10-06T21:17:48.3710000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:17:48.4150000-07:00|40022472|Zeromus|00019CE5|17294766||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:48.4600000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5CE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17294766|40478540|10000|10000|||100.00|80.10|0.00|0.00|21925|90216|10000|10000|||118.76|82.75|0.00|-3.05|00019CFF|0|1| +21|2023-10-06T21:17:48.4600000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17294766|40478540|10000|10000|||100.00|80.10|0.00|0.00|89293|129071|10000|10000|||111.64|91.39|0.00|-2.34|00019D00|0|1| +31|2023-10-06T21:17:48.4600000-07:00|10FF0001||||| +261|2023-10-06T21:17:48.1180000-07:00|Change|10FF0009||||||||| +38|2023-10-06T21:17:48.5940000-07:00|40022472|Zeromus|005A5A00|17294766|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:17:48.5940000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +21|2023-10-06T21:17:48.6380000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|37B00000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|17294766|40478540|10000|10000|||100.00|80.10|0.00|0.00|88839|129844|10000|10000|||81.90|90.75|0.00|2.10|00019D01|0|1| +37|2023-10-06T21:17:48.6830000-07:00|10FF0007|Kehabiqo Febiqo|00019CFB|74336||||||81.90|90.75|0.00|2.10| +37|2023-10-06T21:17:48.8170000-07:00|40022472|Zeromus|00019CFC|17282429||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:48.8170000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|11E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17294766|40478540|10000|10000|||100.00|80.10|0.00|0.00|74336|129844|10000|10000|||81.90|90.75|0.00|2.10|00019D02|0|1| +37|2023-10-06T21:17:48.9500000-07:00|40022472|Zeromus|00019CFD|17276594||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:48.9500000-07:00|10FF0003|Gegehi Gehi|3042|73814|4150|10000|||114.70|118.82|0.00|-1.52| +38|2023-10-06T21:17:48.9500000-07:00|40022472|Zeromus|005A5A00|17276594|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:17:48.9500000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:17:48.5000000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:17:48.9940000-07:00|40022472|Zeromus|00019D00|17274810||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:48.9940000-07:00|10FF000A|Dukaro Nezikaro|18336|82773|9800|10000|||88.67|82.22|0.00|0.77| +261|2023-10-06T21:17:48.5000000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:17:48.5920000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:17:49.2620000-07:00|40022472|Zeromus|00019D01|17260554||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:49.2620000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|28CA0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|17274810|40478540|10000|10000|||100.00|80.10|0.00|0.00|89293|129071|10000|10000|||111.64|91.39|0.00|-2.34|00019D03|0|1| +38|2023-10-06T21:17:49.2620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89293|129071|10000|10000|0||111.64|91.39|0.00|-2.34|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:49.2620000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:17:49.3510000-07:00|40022472|Zeromus|00019D02|17255969||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:49.3510000-07:00|10FF0004|Buhojaqe Zijaqe|00019CFE|18804|81541|2650|10000|10||111.01|108.12|0.00|-3.09|1C00|0|0|01|0500077D|0|41E7CCC9|| +38|2023-10-06T21:17:49.3950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|18804|81541|3200|10000|10||111.01|107.95|0.00|-3.11|0|0|0||||||||||||||||||| +261|2023-10-06T21:17:48.9380000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:17:49.4840000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|3D240000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|17255969|40478540|10000|10000|||100.00|80.10|0.00|0.00|18804|81541|2650|10000|||111.01|107.95|0.00|-3.11|00019D04|0|1| +21|2023-10-06T21:17:49.4840000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AC90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17255969|40478540|10000|10000|||100.00|80.10|0.00|0.00|18336|82773|9800|10000|||89.12|85.39|0.00|0.28|00019D05|0|1| +38|2023-10-06T21:17:49.5290000-07:00|10FF0009|Zewo Negiwo|005A5A18|8129|81177|3704|10000|0||81.96|103.47|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:17:49.6200000-07:00|40022472|Zeromus|00019CFF|17232193||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:49.6200000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17255969|40478540|10000|10000|||100.00|80.10|0.00|0.00|21925|90216|10000|10000|||115.72|85.65|0.00|-0.84|00019D06|0|1| +39|2023-10-06T21:17:49.7090000-07:00|40022C10|Carbuncle|77698|77698|10000|10000|||89.71|106.95|0.00|0.75| +38|2023-10-06T21:17:49.7090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|74336|129844|10000|10000|0||85.71|90.97|0.00|1.52|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:49.7090000-07:00|832|Fire Resistance Down II|0.00|40022488|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:17:49.7090000-07:00|10FF0009|Zewo Negiwo|005A5A18|8129|81177|3704|10000|0||81.96|102.68|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:49.7090000-07:00|832|Fire Resistance Down II|0.00|4002248A|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +38|2023-10-06T21:17:49.7090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|21925|90216|10000|10000|0||115.72|85.65|0.00|-0.84|0|0|0||||||| +30|2023-10-06T21:17:49.7090000-07:00|832|Fire Resistance Down II|0.00|40022487|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T21:17:49.7090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|4486|81809|4650|10000|0||90.12|107.98|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:49.7090000-07:00|832|Fire Resistance Down II|0.00|4002248B|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T21:17:49.7090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|89293|129071|10000|10000|0||111.64|91.39|0.00|-2.34|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:49.7090000-07:00|832|Fire Resistance Down II|0.00|4002248E|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:17:49.7090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|18804|81541|2800|10000|10||110.71|107.48|0.00|-2.79|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:49.7090000-07:00|832|Fire Resistance Down II|0.00|40022489|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T21:17:49.7090000-07:00|10FF0003|Gegehi Gehi|005A5A23|3042|73814|4150|10000|0||109.83|118.55|0.00|-1.55|0|0|0||||||| +30|2023-10-06T21:17:49.7090000-07:00|832|Fire Resistance Down II|0.00|4002248D|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T21:17:49.7090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|18336|82773|9800|10000|0||89.30|86.78|0.00|0.19|0|0|0|||||||||| +30|2023-10-06T21:17:49.7090000-07:00|832|Fire Resistance Down II|0.00|4002248C|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +261|2023-10-06T21:17:49.2460000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:17:49.2460000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:17:49.3410000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:17:49.3410000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:17:49.9750000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|244A0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|17232193|40478540|10000|10000|||100.00|80.10|0.00|0.00|18336|82773|9800|10000|||89.82|88.83|-0.02|0.25|00019D07|0|1| +261|2023-10-06T21:17:49.5320000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:17:50.0210000-07:00|40022472|Zeromus|00019D05|17229432||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:50.0210000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|750003|31FC0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|17232193|40478540|10000|10000|||100.00|80.10|0.00|0.00|4486|81809|4650|10000|||89.39|108.37|0.00|-2.07|00019D08|0|1| +38|2023-10-06T21:17:50.0210000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|4486|81809|4250|10000|0||89.39|108.37|0.00|-2.07|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:17:50.0210000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:17:50.0650000-07:00|40022BEC|Seraph|73956|77430|10000|10000|||101.95|102.89|0.00|2.22| +261|2023-10-06T21:17:49.5320000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:17:50.1980000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|F530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17229432|40478540|10000|10000|||100.00|80.10|0.00|0.00|89293|129071|10000|10000|||110.79|91.54|0.00|-2.38|00019D09|0|1| +261|2023-10-06T21:17:49.8780000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:17:50.3760000-07:00|40022472|Zeromus|00019D06|17227080||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:50.3760000-07:00|40022472|Zeromus|00019D07|17217790||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:50.4210000-07:00|40022472|Zeromus|00019D04|17202138||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:49.9920000-07:00|Change|10FF000A||||||||| +22|2023-10-06T21:17:50.5110000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|200004|26300000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|8129|81177|3704|10000|||81.93|96.84|0.00|-3.14|8129|81177|3704|10000|||81.93|96.84|0.00|-3.14|00019D0A|0|4| +22|2023-10-06T21:17:50.5110000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|200004|269D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|18336|82773|9800|10000|||91.49|92.10|0.00|1.31|8129|81177|3704|10000|||81.93|96.84|0.00|-3.14|00019D0A|1|4| +22|2023-10-06T21:17:50.5110000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|200004|25150000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|74336|129844|10000|10000|||90.81|91.60|-0.02|1.42|8129|81177|3704|10000|||81.93|96.84|0.00|-3.14|00019D0A|2|4| +22|2023-10-06T21:17:50.5110000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|17710000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|4486|81809|4250|10000|||90.04|107.55|0.00|2.63|8129|81177|3704|10000|||81.93|96.84|0.00|-3.14|00019D0A|3|4| +37|2023-10-06T21:17:50.5550000-07:00|40022472|Zeromus|00019D03|17191696||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:50.1090000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:17:50.1090000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:17:50.6000000-07:00|10FF0009|Zewo Negiwo|8940|81177|3925|10000|||81.93|96.84|0.00|-3.14| +261|2023-10-06T21:17:50.1090000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:17:50.7330000-07:00|10FF0008|Kokosaze Lulusaze|22827|90216|10000|10000|||110.25|90.26|0.00|-0.90| +21|2023-10-06T21:17:50.7330000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17191696|40478540|10000|10000|||100.00|80.10|0.00|0.00|89293|129071|10000|10000|||110.67|91.54|0.00|-2.31|00019D0B|0|1| +21|2023-10-06T21:17:50.7330000-07:00|10FF000A|Dukaro Nezikaro|1D75|Second Wind|10FF000A|Dukaro Nezikaro|200004|43D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18336|82773|9800|10000|||92.09|93.32|0.00|0.80|18336|82773|9800|10000|||92.09|93.32|0.00|0.80|00019D0C|0|1| +31|2023-10-06T21:17:50.7330000-07:00|10FF0001||||| +37|2023-10-06T21:17:50.7780000-07:00|40022472|Zeromus|00019D09|17187773||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:50.7780000-07:00|40022472|Zeromus|DoT|0|C18|17191696|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|18804|81541|2800|10000|||104.79|103.74|0.00|-2.26| +38|2023-10-06T21:17:50.7780000-07:00|40022472|Zeromus|005A5A00|17184677|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:17:50.8220000-07:00|40022472|Zeromus|00019D08|17171881||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:50.8660000-07:00|10FF0001|Sesuga Sapisuga|90583|129071|10000|10000|||110.22|91.65|0.00|-2.32| +261|2023-10-06T21:17:50.3930000-07:00|Change|10FF0007||||||||| +36|2023-10-06T21:17:50.8660000-07:00|2E04|3| +39|2023-10-06T21:17:50.9100000-07:00|10FF0004|Buhojaqe Zijaqe|19619|81541|3000|10000|||104.14|103.30|0.00|-2.25| +21|2023-10-06T21:17:50.9100000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40060000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|74336|129844|10000|10000|||92.70|92.18|0.00|1.32|17171881|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019D0D|0|1| +39|2023-10-06T21:17:50.9990000-07:00|10FF0007|Kehabiqo Febiqo|75634|129844|10000|10000|||93.35|92.46|0.00|1.27| +39|2023-10-06T21:17:50.9990000-07:00|10FF0006|Wowobora Gogobora|5304|81809|4450|10000|||92.32|105.40|-0.02|2.36| +21|2023-10-06T21:17:50.9990000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|726003|3C890000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|17171881|40478540|10000|10000|||100.00|80.10|0.00|0.00|22827|90216|10000|10000|||109.08|91.12|0.00|-0.92|00019D0E|0|1| +261|2023-10-06T21:17:50.4880000-07:00|Change|10FF0006||||||||| +38|2023-10-06T21:17:51.0440000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|19619|81541|3000|10000|10||102.82|102.58|0.00|-2.15|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:51.0440000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:17:51.0890000-07:00|10FF0009|Zewo Negiwo|00019D0A|18716||||||81.92|95.12|0.00|-3.14| +261|2023-10-06T21:17:50.6080000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:17:51.1330000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3A310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17171881|40478540|10000|10000|||100.00|80.10|0.00|0.00|75634|129844|10000|10000|||94.04|92.76|0.00|1.23|00019D0F|0|1| +22|2023-10-06T21:17:51.1770000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0009|Zewo Negiwo|FC550E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18716|81177|3925|10000|||81.92|94.75|0.00|-3.14|18716|81177|3925|10000|||81.92|94.75|0.00|-3.14|00019D10|0|4| +22|2023-10-06T21:17:51.1770000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|FC550E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18336|82773|9800|10000|||93.67|95.83|0.00|0.59|18716|81177|3925|10000|||81.92|94.75|0.00|-3.14|00019D10|1|4| +22|2023-10-06T21:17:51.1770000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|FC550E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75634|129844|10000|10000|||94.39|92.91|0.00|2.78|18716|81177|3925|10000|||81.92|94.75|0.00|-3.14|00019D10|2|4| +22|2023-10-06T21:17:51.1770000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|FC550E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5304|81809|4450|10000|||93.49|104.49|0.00|2.29|18716|81177|3925|10000|||81.92|94.75|0.00|-3.14|00019D10|3|4| +37|2023-10-06T21:17:51.2220000-07:00|10FF000A|Dukaro Nezikaro|00019D0A|28221||||||93.67|95.83|0.00|0.59| +261|2023-10-06T21:17:50.8450000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:17:51.2670000-07:00|40022472|Zeromus|00019D0B|17168953||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:51.3550000-07:00|10FF0007|Kehabiqo Febiqo|00019D0A|85127||||||94.59|93.00|0.00|2.78| +261|2023-10-06T21:17:50.9620000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:17:51.3990000-07:00|10FF000A|Dukaro Nezikaro|00019D0C|45589||||||94.53|96.88|0.00|0.68| +261|2023-10-06T21:17:50.9620000-07:00|Change|10FF0003||||||||| +36|2023-10-06T21:17:51.4880000-07:00|2F30|3| +37|2023-10-06T21:17:51.4880000-07:00|10FF0006|Wowobora Gogobora|00019D0A|11305||||||95.20|103.32|0.00|2.20| +261|2023-10-06T21:17:51.0740000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:17:51.6230000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17168953|40478540|10000|10000|||100.00|80.10|0.00|0.00|19619|81541|3000|10000|||100.98|101.12|0.00|-2.13|00019D11|0|1| +21|2023-10-06T21:17:51.6670000-07:00|40022BEC|Seraph|40A4|Seraphic Veil|10FF000A|Dukaro Nezikaro|200004|22CA0000|CA0E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|45589|82773|9800|10000|||95.46|97.94|0.00|0.71|73956|77430|10000|10000|||101.95|102.89|0.00|-3.06|00019D12|0|1| +21|2023-10-06T21:17:51.6670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17168953|40478540|10000|10000|||100.00|80.10|0.00|0.00|45589|82773|9800|10000|||95.46|97.94|0.00|0.71|00019D13|0|1| +38|2023-10-06T21:17:51.6670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|45589|82773|9800|10000|10||95.46|97.94|0.00|0.71|0|0|0||||||||||||| +26|2023-10-06T21:17:51.6670000-07:00|77D|Seraphic Veil|29.96|40022BEC|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:17:51.7110000-07:00|10FF0007|Kehabiqo Febiqo|00019D0D|68737||||||95.12|93.23|0.00|2.78| +21|2023-10-06T21:17:51.7110000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|724003|46AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17168953|40478540|10000|10000|||100.00|80.10|0.00|0.00|3042|73814|4150|10000|||97.40|118.36|0.00|-1.63|00019D14|0|1| +37|2023-10-06T21:17:51.7560000-07:00|40022472|Zeromus|00019D0F|17154056||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:51.7560000-07:00|40022472|Zeromus|00019D0E|17138559||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:51.7560000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|28ED0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|17168953|40478540|10000|10000|||100.00|80.10|0.00|0.00|90583|129071|10000|10000|||105.74|93.39|0.00|-2.33|00019D15|0|1| +38|2023-10-06T21:17:51.7560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90583|129071|10000|10000|0||105.74|93.39|0.00|-2.33|0|0|0||||||||||||||||||| +30|2023-10-06T21:17:51.7560000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:17:51.3830000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:17:51.8000000-07:00|4002247B|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.54|118.62|0.00|0.00|00019D16|0|0| +21|2023-10-06T21:17:51.8000000-07:00|4002247C|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.81|118.95|0.00|0.00|00019D17|0|0| +261|2023-10-06T21:17:51.3830000-07:00|Change|4002247B||||||||||||| +261|2023-10-06T21:17:51.3830000-07:00|Change|4002247C||||||||||||| +20|2023-10-06T21:17:51.8900000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.72|100.91|-0.02|-2.08| +261|2023-10-06T21:17:51.4810000-07:00|Change|40022C10||||||||| +37|2023-10-06T21:17:51.9780000-07:00|10FF0009|Zewo Negiwo|00019D10|18716|81177|3925|10000|0||81.93|93.61|0.00|-3.14|1800|0|0|01|040004C3|0|41200000|| +26|2023-10-06T21:17:51.9780000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +39|2023-10-06T21:17:51.9780000-07:00|10FF0003|Gegehi Gehi|3780|73814|4350|10000|||96.47|118.30|0.00|3.05| +39|2023-10-06T21:17:51.9780000-07:00|10FF000A|Dukaro Nezikaro|46416|82773|10000|10000|||97.27|99.24|0.00|0.86| +21|2023-10-06T21:17:51.9780000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17138559|40478540|10000|10000|||100.00|80.10|0.00|0.00|11305|81809|4450|10000|||97.21|101.25|0.00|2.37|00019D18|0|1| +261|2023-10-06T21:17:51.5720000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T21:17:51.5720000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:17:51.6700000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:52.1120000-07:00|10FF000A|Dukaro Nezikaro|00019D10|46416|82773|10000|10000|10||98.58|99.83|0.00|0.98|1E01|0|0|01|040004C3|0|41200000|| +26|2023-10-06T21:17:52.1120000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:17:51.6700000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:17:51.7900000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:17:52.1560000-07:00|40022472|Zeromus|00019D11|17138402||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:52.2010000-07:00|40022472|Zeromus|00019D13|17135596||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:52.2010000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|ADC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17138559|40478540|10000|10000|||100.00|80.10|0.00|0.00|68737|129844|10000|10000|||97.56|96.37|0.00|1.26|00019D19|0|1| +37|2023-10-06T21:17:52.2450000-07:00|10FF0007|Kehabiqo Febiqo|00019D10|68737|129844|10000|10000|0||97.56|96.37|0.00|1.26|1502|0|0|01|010004C3|0|41200000|| +26|2023-10-06T21:17:52.2450000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +21|2023-10-06T21:17:52.2450000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44714003|3C110000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|17138559|40478540|10000|10000|||100.00|80.10|0.00|0.00|46416|82773|10000|10000|||99.23|100.10|0.00|1.04|00019D1A|0|1| +21|2023-10-06T21:17:52.2900000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17135596|40478540|10000|10000|||100.00|80.10|0.00|0.00|22827|90216|10000|10000|||102.28|96.30|0.00|-0.93|00019D1B|0|1| +261|2023-10-06T21:17:51.9000000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:17:52.3780000-07:00|10FF0006|Wowobora Gogobora|00019D10|11305|81809|4450|10000|0||98.77|99.17|0.00|2.50|1B03|0|0|01|04C3|0|41200000|| +26|2023-10-06T21:17:52.3780000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +261|2023-10-06T21:17:52.0140000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:17:52.5110000-07:00|40022472|Zeromus|00019D18|17135529||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:17:52.5110000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|99.01|98.90|0.00|2.45| +38|2023-10-06T21:17:52.5560000-07:00|10FF0009|Zewo Negiwo|005A5A18|18716|81177|4475|10000|0||81.06|88.92|0.00|-2.97|0|0|0||||||||||||||||||| +21|2023-10-06T21:17:52.6450000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|6F0F|A788000|0|0|0|0|0|0|0|0|0|0|68737|129844|10000|10000|||98.63|97.80|0.00|1.59|68737|129844|10000|10000|||98.63|97.80|0.00|1.59|00019D1C|0|1| +37|2023-10-06T21:17:52.7330000-07:00|40022472|Zeromus|00019D19|17132749||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:52.7330000-07:00|10FF000A|Dukaro Nezikaro|00019D12|55322|82773|10000|10000|10||100.19|100.53|0.00|1.85|1E00|0|0|01|0300077D|0|41E776C5|| +39|2023-10-06T21:17:52.7330000-07:00|40022C10|Carbuncle|77698|77698|10000|10000|||94.99|101.53|0.00|2.42| +37|2023-10-06T21:17:52.7780000-07:00|40022472|Zeromus|00019D1A|17117372||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:52.3290000-07:00|Change|40022C10||||||||| +261|2023-10-06T21:17:52.3290000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BED| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BEE| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BEF| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BF0| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BF1| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BF2| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BF3| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BF4| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BF5| +261|2023-10-06T21:17:52.3290000-07:00|Remove|40022BF6| +37|2023-10-06T21:17:52.8670000-07:00|40022472|Zeromus|00019D14|17099277||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:53.0000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17099277|40478540|10000|10000|||100.00|80.10|0.00|0.00|90583|129071|10000|10000|||101.00|96.99|0.00|-1.68|00019D1D|0|1| +31|2023-10-06T21:17:53.0000000-07:00|10FF0001||||| +37|2023-10-06T21:17:53.0440000-07:00|40022472|Zeromus|00019D1B|17095417||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:53.0440000-07:00|40022472|Zeromus|00019D15|17084940||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:53.0890000-07:00|40022BEC|Seraph|73956|77430|10000|10000|||101.95|102.89|0.00|-2.66| +20|2023-10-06T21:17:53.0890000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|82.65|87.39|0.00|2.65| +261|2023-10-06T21:17:52.6220000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:17:53.1340000-07:00|10FF0009|Zewo Negiwo|005A5A18|18716|81177|4475|10000|0||82.82|87.26|0.00|2.65|0|0|0|||||||||||||||| +30|2023-10-06T21:17:53.1340000-07:00|32|Sprint|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|1E|81177|81177| +261|2023-10-06T21:17:52.7360000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:17:53.2240000-07:00|10FF0007|Kehabiqo Febiqo|00019D1C|68737|129844|10000|10000|7||99.38|98.92|0.00|2.12|1500|0|0|03|02000A76|0190|41000000|||||||||| +26|2023-10-06T21:17:53.2240000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T21:17:53.2240000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:17:53.2240000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:17:53.2240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|68737|129844|10000|10000|7||99.38|98.92|0.00|2.12|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:17:52.8470000-07:00|Change|10FF0008||||||||| +22|2023-10-06T21:17:53.3130000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|28730000|B80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|19619|81541|3000|10000|||100.72|100.91|0.00|-2.08|19619|81541|3000|10000|||100.72|100.91|0.00|-2.08|00019D1E|0|6| +22|2023-10-06T21:17:53.3130000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|19860000|D60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55322|82773|10000|10000|||100.51|100.66|0.00|1.11|19619|81541|3000|10000|||100.72|100.91|0.00|-2.08|00019D1E|1|6| +22|2023-10-06T21:17:53.3130000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|18FB0000|F80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|22827|90216|10000|10000|||100.32|100.42|0.00|-0.81|19619|81541|3000|10000|||100.72|100.91|0.00|-2.08|00019D1E|2|6| +22|2023-10-06T21:17:53.3130000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|19910000|E80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|68737|129844|10000|10000|||99.38|98.92|0.00|2.12|19619|81541|3000|10000|||100.72|100.91|0.00|-2.08|00019D1E|3|6| +22|2023-10-06T21:17:53.3130000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|18EC0000|E00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|11305|81809|4450|10000|||99.50|98.34|0.00|3.12|19619|81541|3000|10000|||100.72|100.91|0.00|-2.08|00019D1E|4|6| +22|2023-10-06T21:17:53.3130000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|19E10000|680E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90583|129071|10000|10000|||100.01|98.32|0.00|-1.63|19619|81541|3000|10000|||100.72|100.91|0.00|-2.08|00019D1E|5|6| +38|2023-10-06T21:17:53.3130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|68737|129844|10000|10000|15||99.38|98.92|0.00|2.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:17:53.3130000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:17:53.3130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|22827|90216|10000|10000|11||100.32|100.42|0.00|-0.81|0|0|0|||||||||| +26|2023-10-06T21:17:53.3130000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:17:53.3130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|11305|81809|4450|10000|12||99.50|98.34|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:17:53.3130000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:17:53.3130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90583|129071|10000|10000|8||100.01|98.32|0.00|-1.63|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:53.3130000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:17:53.3130000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|19619|81541|2000|10000|30||100.72|100.91|0.00|-2.08|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:53.3130000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:17:53.3130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|55322|82773|10000|10000|23||100.51|100.66|0.00|1.11|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:53.3130000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:17:52.8470000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:17:52.8470000-07:00|Change|4002247B||||||||| +261|2023-10-06T21:17:52.8470000-07:00|Change|4002247C||||||||| +21|2023-10-06T21:17:53.4010000-07:00|4002247B|Zeromus|8D24|Nox|10FF0003|Gegehi Gehi|750003|D3450000|100140E|6FD0000|1B|8D248000|0|0|0|0|0|0|0|0|0|0|3780|73814|4350|10000|||89.03|118.17|0.00|-1.59|44|44|0|10000|||81.54|118.62|0.00|0.00|00019D1F|0|1| +21|2023-10-06T21:17:53.4010000-07:00|4002247C|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.81|118.95|0.00|0.00|00019D20|0|0| +21|2023-10-06T21:17:53.4900000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C726003|5BAA0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|17084940|40478540|10000|10000|||100.00|80.10|0.00|0.00|22827|90216|10000|10000|||100.22|100.56|0.00|-0.83|00019D21|0|1| +21|2023-10-06T21:17:53.4900000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|752003|3C970000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|17084940|40478540|10000|10000|||100.00|80.10|0.00|0.00|11305|81809|4450|10000|||99.50|98.34|0.00|3.12|00019D22|0|1| +37|2023-10-06T21:17:53.5350000-07:00|40022472|Zeromus|00019D1D|17083199||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:53.5790000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F712003|50F90000|A3E|340000|4|25AC8000|11B|2D8000|0|0|0|0|0|0|0|0|17084940|40478540|10000|10000|||100.00|80.10|0.00|0.00|68737|129844|10000|10000|||99.38|98.92|0.00|2.12|00019D23|0|1| +38|2023-10-06T21:17:53.5790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|68737|129844|10000|10000|15||99.38|98.92|0.00|2.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:17:53.5790000-07:00|A75|Surging Tempest|57.28|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:17:53.6240000-07:00|10FF0009|Zewo Negiwo|19527|81177|4696|10000|||83.36|86.84|-0.01|2.63| +39|2023-10-06T21:17:53.7120000-07:00|10FF0008|Kokosaze Lulusaze|23729|90216|10000|10000|||100.16|100.65|0.00|-3.14| +24|2023-10-06T21:17:53.7570000-07:00|40022472|Zeromus|DoT|0|12F5|17083199|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|19619|81541|2000|10000|||100.72|100.91|0.00|-2.08| +38|2023-10-06T21:17:53.7570000-07:00|40022472|Zeromus|005A5A00|17078346|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:17:53.3730000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T21:17:53.8460000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17083199|40478540|10000|10000|||100.00|80.10|0.00|0.00|55322|82773|10000|10000|||100.51|100.66|0.00|1.11|00019D24|0|1| +36|2023-10-06T21:17:53.8460000-07:00|300C|3| +39|2023-10-06T21:17:53.8900000-07:00|10FF0001|Sesuga Sapisuga|91873|129071|10000|10000|||100.01|98.32|0.00|-1.63| +39|2023-10-06T21:17:53.8900000-07:00|10FF0004|Buhojaqe Zijaqe|20434|81541|2200|10000|||100.72|100.91|-0.02|-2.07| +261|2023-10-06T21:17:53.4680000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:17:53.9340000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|68737|129844|10000|10000|||99.38|98.90|0.00|3.11|17078346|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019D25|0|1| +39|2023-10-06T21:17:53.9780000-07:00|10FF0007|Kehabiqo Febiqo|70035|129844|10000|10000|||99.38|98.90|0.00|3.11| +261|2023-10-06T21:17:53.4680000-07:00|Change|40022BEC||||||||| +38|2023-10-06T21:17:54.0230000-07:00|40022C1B||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +39|2023-10-06T21:17:54.0230000-07:00|10FF0006|Wowobora Gogobora|12123|81809|4350|10000|||99.50|98.34|0.00|3.12| +38|2023-10-06T21:17:54.0230000-07:00|40022C1B||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:17:53.6590000-07:00|Add|40022C1B||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:54.0660000-07:00|10FF0003|Gegehi Gehi|00019D1F|0|73814|0|10000|0||84.28|119.56|-0.01|-1.58|2300|0|0|02|01000000|0|0|||||| +38|2023-10-06T21:17:54.0670000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|73814|0|10000|0||84.28|119.56|-0.01|-1.58|0|0|0|||| +30|2023-10-06T21:17:54.0670000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:17:54.1110000-07:00|40022C1B||322|Embrace|10FF0006|Wowobora Gogobora|200004|21DE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|11305|81809|4150|10000|||99.50|98.34|0.00|3.12|||||||||||00019D26|0|1| +03|2023-10-06T21:17:53.6590000-07:00|40022C1B|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||101.96|102.90|0.00|-2.87| +261|2023-10-06T21:17:53.7760000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:17:53.7760000-07:00|Change|40022C1B||| +37|2023-10-06T21:17:54.2910000-07:00|40022472|Zeromus|00019D21|17054880||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:54.2910000-07:00|40022472|Zeromus|00019D22|17039369||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:54.2910000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|752003|4C540000|4|268A8000|0|0|0|0|0|0|0|0|0|0|0|0|17078346|40478540|10000|10000|||100.00|80.10|0.00|0.00|91873|129071|10000|10000|||100.01|98.32|0.00|-3.14|00019D27|0|1| +38|2023-10-06T21:17:54.2910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|91873|129071|9000|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||| +30|2023-10-06T21:17:54.2910000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:17:53.8930000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:17:53.8930000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:17:54.3800000-07:00|40022472|Zeromus|00019D24|17036658||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:17:54.3800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.24|100.99|0.00|-1.48| +37|2023-10-06T21:17:54.4250000-07:00|10FF0004|Buhojaqe Zijaqe|00019D1E|30789|81541|2200|10000|30||100.24|100.99|0.00|-1.48|1C00|0|0|01|03000129|0|41E774B8|| +21|2023-10-06T21:17:54.4250000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1D000000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|17039369|40478540|10000|10000|||100.00|80.10|0.00|0.00|55322|82773|10000|10000|||100.51|100.66|0.00|1.11|00019D28|0|1| +261|2023-10-06T21:17:53.8930000-07:00|Change|40022C1B||||||||||| +22|2023-10-06T21:17:54.5130000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|EBE0000|FC400E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|19527|81177|4696|10000|||83.36|86.84|0.00|2.63|19527|81177|4696|10000|||83.36|86.84|0.00|2.63|00019D29|0|3| +22|2023-10-06T21:17:54.5130000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|200004|179D0000|FC400E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|70035|129844|10000|10000|||99.19|98.57|0.00|3.10|19527|81177|4696|10000|||83.36|86.84|0.00|2.63|00019D29|1|3| +22|2023-10-06T21:17:54.5130000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|200004|17910000|FC400E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|12123|81809|4350|10000|||99.51|98.34|0.00|2.90|19527|81177|4696|10000|||83.36|86.84|0.00|2.63|00019D29|2|3| +37|2023-10-06T21:17:54.5570000-07:00|10FF000A|Dukaro Nezikaro|00019D1E|61856|82773|10000|10000|23||100.51|100.66|0.00|-3.12|1E01|0|0|01|05000129|0|41E66455|| +261|2023-10-06T21:17:54.1230000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:17:54.6900000-07:00|10FF0008|Kokosaze Lulusaze|00019D1E|30124|90216|10000|10000|11||100.11|100.72|0.00|-3.14|1F02|0|0|01|02000129|0|41E553F2|| +37|2023-10-06T21:17:54.7350000-07:00|10FF0007|Kehabiqo Febiqo|00019D25|70035|129844|10000|10000|5||99.14|98.53|0.00|-2.64|1500|0|0|01|05000000|0|0|| +38|2023-10-06T21:17:54.7350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70035|129844|10000|10000|5||99.14|98.53|0.00|-2.64|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:17:54.7350000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:17:54.8250000-07:00|10FF0007|Kehabiqo Febiqo|00019D1E|76580|129844|10000|10000|5||99.14|98.53|0.00|-2.64|1503|0|0|01|07000129|0|41E4438F|| +37|2023-10-06T21:17:54.8250000-07:00|40022472|Zeromus|00019D28|17029234||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:54.4100000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:17:54.9120000-07:00|10FF0006|Wowobora Gogobora|00019D26|20793||||||99.77|97.89|0.00|2.47| +261|2023-10-06T21:17:54.4100000-07:00|Change|4002247B||||||||| +37|2023-10-06T21:17:54.9570000-07:00|10FF0006|Wowobora Gogobora|00019D1E|27173|81809|4350|10000|12||99.77|97.89|0.00|2.47|1B04|0|0|01|03000129|0|41E33121|| +21|2023-10-06T21:17:54.9570000-07:00|4002247B|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.86|113.13|0.00|0.00|00019D2A|0|0| +21|2023-10-06T21:17:54.9570000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|ED70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17029234|40478540|10000|10000|||100.00|80.10|0.00|0.00|30124|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D2B|0|1| +39|2023-10-06T21:17:55.0010000-07:00|10FF000A|Dukaro Nezikaro|62683|82773|10000|10000|||100.51|100.66|0.00|-3.12| +21|2023-10-06T21:17:55.0010000-07:00|10FF0006|Wowobora Gogobora|64E7|Summon Phoenix|40022472|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|17029234|40478540|10000|10000|||100.00|80.10|0.00|0.00|12123|81809|4350|10000|||99.77|97.89|0.00|2.47|00019D2C|0|1| +261|2023-10-06T21:17:54.5000000-07:00|Change|40022C10||||||||| +261|2023-10-06T21:17:54.5000000-07:00|Change|10FF0009||||||||||||||||||| +38|2023-10-06T21:17:55.0470000-07:00|40022C1D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:55.0470000-07:00|40022472|Zeromus|00019D27|17009694||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:55.0470000-07:00|10FF0001|Sesuga Sapisuga|00019D27|101739||||||100.01|98.32|0.00|-3.14| +34|2023-10-06T21:17:55.0470000-07:00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01| +38|2023-10-06T21:17:55.0470000-07:00|40022C1D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:17:54.6130000-07:00|Change|40022C1B||||| +37|2023-10-06T21:17:55.0900000-07:00|10FF0001|Sesuga Sapisuga|00019D1E|108364|129071|9000|10000|8||100.01|98.32|0.00|-3.14|1305|0|0|01|02000129|0|41E21EB2|| +21|2023-10-06T21:17:55.1350000-07:00|10FF0007|Kehabiqo Febiqo|20FDD6F|item_fdd6f|10FF0007|Kehabiqo Febiqo|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|76580|129844|10000|10000|||99.14|98.60|0.00|-1.15|76580|129844|10000|10000|||99.14|98.60|0.00|-1.15|00019D2D|0|1| +21|2023-10-06T21:17:55.1800000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|108364|129071|9000|10000|||100.01|98.32|0.00|-3.14|108364|129071|9000|10000|||100.01|98.32|0.00|-3.14|00019D2E|0|1| +21|2023-10-06T21:17:55.1800000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|62683|82773|10000|10000|||100.51|100.66|0.00|-3.12|62683|82773|10000|10000|||100.51|100.66|0.00|-3.12|00019D2F|0|1| +38|2023-10-06T21:17:55.1800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62683|82773|10000|10000|23||100.51|100.66|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:17:55.1800000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|82773|82773| +26|2023-10-06T21:17:55.1800000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:17:55.2230000-07:00|40022C1E||005A5A00|75608|78475|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:17:55.2250000-07:00|40022472|Zeromus|00019D23|16988965||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:55.2250000-07:00|10FF0007|Kehabiqo Febiqo|00019D23|86224||||||99.14|98.61|0.00|-0.04| +38|2023-10-06T21:17:55.2250000-07:00|40022C1E||005A5A00|75608|78475|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:17:54.7260000-07:00|Add|40022C1D||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:17:54.7260000-07:00|Add|40022C1E||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:17:54.8400000-07:00|40022C1D|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|74223|77698|10000|10000|||101.98|98.93|0.00|-3.13| +03|2023-10-06T21:17:54.8400000-07:00|40022C1E|Bunshin|00|5A|10FF000A|00||8313|10897|75608|78475|10000|10000|||100.47|98.87|0.00|0.03| +21|2023-10-06T21:17:55.2680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|67F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16988965|40478540|10000|10000|||100.00|80.10|0.00|0.00|108364|129071|9000|10000|||100.01|98.32|0.00|-3.14|00019D30|0|1| +38|2023-10-06T21:17:55.2680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62683|82773|10000|10000|23||100.51|100.66|0.00|-3.12|0|0|0||||||||||||||||||||||||| +31|2023-10-06T21:17:55.2680000-07:00|10FF0001||||| +261|2023-10-06T21:17:54.8400000-07:00|Change|40022C1D||| +261|2023-10-06T21:17:54.8400000-07:00|Change|40022C1E||| +21|2023-10-06T21:17:55.3120000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33A00000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16988965|40478540|10000|10000|||100.00|80.10|0.00|0.00|30789|81541|2200|10000|||100.02|101.00|0.00|-3.14|00019D31|0|1| +261|2023-10-06T21:17:54.9570000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:17:55.3580000-07:00|10FF0009|Zewo Negiwo|HoT|4C3|C29|19527|81177|3696|10000|||83.69|86.96|0.00|2.40|10FF0009|Zewo Negiwo|0|19527|81177|3696|10000|||83.69|86.96|0.00|2.40| +37|2023-10-06T21:17:55.3580000-07:00|10FF0009|Zewo Negiwo|00019D29|26414|81177|3696|10000|0||83.69|86.96|0.00|2.40|1800|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:17:55.3580000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +24|2023-10-06T21:17:55.4910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|14AD|86224|129844|10000|10000|||99.14|98.65|0.00|-0.04|10FF0009|Zewo Negiwo|1|26414|81177|3696|10000|||84.23|87.17|0.00|2.04| +37|2023-10-06T21:17:55.4910000-07:00|10FF0007|Kehabiqo Febiqo|00019D29|97562|129844|10000|10000|5||99.14|98.65|0.00|-0.04|1501|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:17:55.4910000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +24|2023-10-06T21:17:55.4910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|941|86224|129844|10000|10000|||99.14|98.65|0.00|-0.04|10FF0004|Buhojaqe Zijaqe|0|30789|81541|1800|10000|||100.02|101.00|0.00|-3.14| +38|2023-10-06T21:17:55.4910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99931|129844|10000|10000|5||99.14|98.65|0.00|-0.04|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:17:55.5360000-07:00|10FF0009|Zewo Negiwo|HoT|0|ED9|26414|81177|3696|10000|||84.23|87.17|0.00|2.04|10FF0009|Zewo Negiwo|0|26414|81177|3696|10000|||84.23|87.17|0.00|2.04| +21|2023-10-06T21:17:55.5360000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|752003|7C90000|FC200E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|16988965|40478540|10000|10000|||100.00|80.10|0.00|0.00|26414|81177|3696|10000|||84.23|87.17|0.00|2.04|00019D32|0|1| +38|2023-10-06T21:17:55.5360000-07:00|10FF0009|Zewo Negiwo|005A5A18|30215|81177|3846|10000|0||84.23|87.17|0.00|2.04|0|0|0||||||||||||||||||| +21|2023-10-06T21:17:55.5800000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16988965|40478540|10000|10000|||100.00|80.10|0.00|0.00|99931|129844|10000|10000|||99.14|98.65|-0.02|-0.04|00019D33|0|1| +24|2023-10-06T21:17:55.6230000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|BC4|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|10FF0009|Zewo Negiwo|0|30215|81177|3846|10000|||84.77|87.37|0.00|2.02| +37|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|00019D29|36218|81809|4350|10000|12||100.18|97.18|0.00|-3.13|1B02|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:17:55.6250000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +22|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D34|0|7| +22|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|108364|129071|9000|10000|||100.01|98.32|0.00|-3.14|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D34|1|7| +22|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|99931|129844|10000|10000|||99.14|98.65|-0.02|-0.04|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D34|2|7| +22|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|62683|82773|10000|10000|||100.51|100.66|0.00|-3.12|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D34|3|7| +22|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30124|90216|10000|10000|||100.11|100.72|0.00|-3.14|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D34|4|7| +22|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30789|81541|1800|10000|||100.02|101.00|0.00|-3.14|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D34|5|7| +22|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0009|Zewo Negiwo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30215|81177|3846|10000|||84.77|87.37|0.00|2.02|27173|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D34|6|7| +38|2023-10-06T21:17:55.6250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99931|129844|10000|10000|5||99.14|98.65|-0.02|-0.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:55.6250000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:17:55.6250000-07:00|10FF0009|Zewo Negiwo|005A5A18|30215|81177|3846|10000|0||84.77|87.37|0.00|2.02|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:17:55.6250000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|00|81177|81809| +38|2023-10-06T21:17:55.6250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|30124|90216|10000|10000|11||100.11|100.72|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T21:17:55.6250000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:17:55.6250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|36218|81809|4350|10000|12||100.18|97.18|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:17:55.6250000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:17:55.6250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108364|129071|9000|10000|8||100.01|98.32|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T21:17:55.6250000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:17:55.6250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|30789|81541|1800|10000|30||100.02|101.00|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:55.6250000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:17:55.6250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62683|82773|10000|10000|23||100.51|100.66|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:55.6250000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|82773|81809| +37|2023-10-06T21:17:55.7130000-07:00|40022472|Zeromus|00019D2B|16985166||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:55.8010000-07:00|10FF0001|Sesuga Sapisuga|00019D2E|108364|129071|9000|10000|8||100.01|98.32|0.00|-3.14|1300|0|0|01|0400004C|0|41A00000|| +26|2023-10-06T21:17:55.8010000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:17:55.8010000-07:00|40022472|Zeromus|00019D30|16983503||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:55.8910000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|750003|2A0D0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|16985166|40478540|10000|10000|||100.00|80.10|0.00|0.00|108364|129071|9000|10000|||100.01|98.32|0.00|-3.14|00019D35|0|1| +38|2023-10-06T21:17:55.8910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108364|129071|9000|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:17:55.8910000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:17:55.8910000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:17:55.9350000-07:00|10FF000A|Dukaro Nezikaro|00019D2F|62683|82773|10000|10000|23||100.51|100.66|0.00|-3.12|1E00|0|0|02|060007A2|05|41F00000|||||| +38|2023-10-06T21:17:55.9350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62683|82773|10000|10000|23||100.51|100.66|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:17:55.9800000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|48E30000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|16983503|40478540|10000|10000|||100.00|80.10|0.00|0.00|30124|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D36|0|1| +261|2023-10-06T21:17:55.5720000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:17:56.0250000-07:00|10FF0007|Kehabiqo Febiqo|00019D2D|99931|129844|10000|10000|5||99.14|98.65|0.00|-0.04|1500|0|0|01|09000031|296B|41F00000|| +26|2023-10-06T21:17:56.0250000-07:00|31|Medicated|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|296B|129844|129844| +21|2023-10-06T21:17:56.0250000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|11390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16983503|40478540|10000|10000|||100.00|80.10|0.00|0.00|62683|82773|10000|10000|||100.51|100.66|0.00|-3.12|00019D37|0|1| +22|2023-10-06T21:17:56.0250000-07:00|40022C1D|Demi-Phoenix|4085|Everlasting Flight|10FF0001|Sesuga Sapisuga|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|108364|129071|9000|10000|||100.01|98.32|0.00|-3.14|74223|77698|10000|10000|||101.98|98.93|0.00|-3.13|00019D38|0|6| +22|2023-10-06T21:17:56.0250000-07:00|40022C1D|Demi-Phoenix|4085|Everlasting Flight|10FF000A|Dukaro Nezikaro|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|62683|82773|10000|10000|||100.51|100.66|0.00|-3.12|74223|77698|10000|10000|||101.98|98.93|0.00|-3.13|00019D38|1|6| +22|2023-10-06T21:17:56.0250000-07:00|40022C1D|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|36218|81809|4350|10000|||100.18|97.18|0.00|-3.13|74223|77698|10000|10000|||101.98|98.93|0.00|-3.13|00019D38|2|6| +22|2023-10-06T21:17:56.0250000-07:00|40022C1D|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|30124|90216|10000|10000|||100.11|100.72|0.00|-3.14|74223|77698|10000|10000|||101.98|98.93|0.00|-3.13|00019D38|3|6| +22|2023-10-06T21:17:56.0250000-07:00|40022C1D|Demi-Phoenix|4085|Everlasting Flight|10FF0007|Kehabiqo Febiqo|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|99931|129844|10000|10000|||99.14|98.65|0.00|-0.04|74223|77698|10000|10000|||101.98|98.93|0.00|-3.13|00019D38|4|6| +22|2023-10-06T21:17:56.0250000-07:00|40022C1D|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|30789|81541|1800|10000|||100.02|101.00|0.00|-3.14|74223|77698|10000|10000|||101.98|98.93|0.00|-3.13|00019D38|5|6| +38|2023-10-06T21:17:56.0250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99931|129844|10000|10000|5||99.14|98.65|0.00|-0.04|0|0|0||||||||||||||||||||||||||||||| +25|2023-10-06T21:17:56.0700000-07:00|10FF0003|Gegehi Gehi|4002247B|Zeromus| +37|2023-10-06T21:17:56.1140000-07:00|40022472|Zeromus|00019D33|16980452||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:56.1140000-07:00|40022472|Zeromus|00019D31|16967236||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:56.1580000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16983503|40478540|10000|10000|||100.00|80.10|0.00|0.00|36218|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D39|0|1| +261|2023-10-06T21:17:55.7920000-07:00|Change|40022C1D||| +21|2023-10-06T21:17:56.2480000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|27740000|4|29668000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|16967236|40478540|10000|10000|||100.00|80.10|0.00|0.00|99931|129844|10000|10000|||99.14|98.65|0.00|-0.04|00019D3A|0|1| +21|2023-10-06T21:17:56.2920000-07:00|10FF0006|Wowobora Gogobora|64E6|Rekindle|10FF0006|Wowobora Gogobora|4|1C090000|4B101E0E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|36218|81809|4350|10000|||100.18|97.18|0.00|-3.13|36218|81809|4350|10000|||100.18|97.18|0.00|-3.13|00019D3B|0|1| +261|2023-10-06T21:17:55.9100000-07:00|Change|40022C1E||||| +37|2023-10-06T21:17:56.4270000-07:00|10FF0006|Wowobora Gogobora|00019D34|36218|81809|4350|10000|12||100.18|97.18|0.00|-3.13|1B00|0|0|01|07000A8F|0|41E9EF9B|| +38|2023-10-06T21:17:56.4280000-07:00|40022C1D|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||101.98|98.93|0.00|-3.13|0|0|0||||||| +26|2023-10-06T21:17:56.4280000-07:00|30|Well Fed|1396.85|10FF0006|Wowobora Gogobora|40022C1D|Demi-Phoenix|2964|77698|81809| +26|2023-10-06T21:17:56.4280000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|40022C1D|Demi-Phoenix|00|77698|81809| +261|2023-10-06T21:17:56.0260000-07:00|Change|4002247B||||||||| +37|2023-10-06T21:17:56.5160000-07:00|40022472|Zeromus|00019D35|16956471||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:56.5160000-07:00|10FF0001|Sesuga Sapisuga|00019D35|108364|129071|9000|10000|8||100.01|98.32|0.00|-3.14|1300|0|0|02|05000558|04|41F00000|||||| +21|2023-10-06T21:17:56.5160000-07:00|4002247B|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.33|102.26|0.00|0.00|00019D3C|0|0| +38|2023-10-06T21:17:56.5160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108364|129071|9000|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:17:56.5600000-07:00|10FF0001|Sesuga Sapisuga|00019D34|108364|129071|9000|10000|8||100.01|98.32|0.00|-3.14|1301|0|0|01|03000A8F|0|41E8DD2C|| +37|2023-10-06T21:17:56.5600000-07:00|40022472|Zeromus|00019D37|16952062||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:56.6050000-07:00|10FF0009|Zewo Negiwo|31026|81177|4067|10000|||87.46|87.58|0.00|2.47| +21|2023-10-06T21:17:56.6050000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30124|90216|10000|10000|||100.11|100.72|0.00|-3.14|30124|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D3D|0|1| +21|2023-10-06T21:17:56.6500000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40022472|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|16952062|40478540|10000|10000|||100.00|80.10|0.00|0.00|62683|82773|10000|10000|||100.51|100.66|0.00|-3.12|00019D3E|0|1| +38|2023-10-06T21:17:56.6500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62683|82773|10000|10000|23||100.51|100.66|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:17:56.6500000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:17:56.6930000-07:00|40022472|Zeromus|00019D39|16951950||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:56.6930000-07:00|10FF0007|Kehabiqo Febiqo|00019D34|99931|129844|10000|10000|5||99.14|98.65|0.00|3.10|1502|0|0|01|08000A8F|0|41E7CABD|| +21|2023-10-06T21:17:56.7380000-07:00|40022C1E|Bunshin|64AF|Phantom Kamaitachi|40022472|Zeromus|350003|3B780000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|16952062|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||100.47|98.87|0.00|0.03|00019D3F|0|1| +39|2023-10-06T21:17:56.7380000-07:00|10FF0008|Kokosaze Lulusaze|31026|90216|10000|10000|||100.11|100.72|0.00|-3.14| +261|2023-10-06T21:17:56.3350000-07:00|Change|40022C1E||||||||| +37|2023-10-06T21:17:56.7830000-07:00|40022472|Zeromus|00019D3A|16941850||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:56.7830000-07:00|10FF0007|Kehabiqo Febiqo|00019D3A|110529||||||99.14|98.65|0.00|3.10| +37|2023-10-06T21:17:56.7830000-07:00|40022472|Zeromus|00019D36|16923191||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:56.7830000-07:00|40022472|Zeromus|DoT|0|C86|16951950|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|30789|81541|1800|10000|||101.27|99.46|0.00|2.60| +21|2023-10-06T21:17:56.7830000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|754003|91690000|4|263F8000|0|0|0|0|0|0|0|0|0|0|0|0|16951950|40478540|10000|10000|||100.00|80.10|0.00|0.00|108364|129071|9000|10000|||100.01|98.32|0.00|-3.14|00019D40|0|1| +20|2023-10-06T21:17:56.7830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.27|99.46|0.00|2.60| +38|2023-10-06T21:17:56.7830000-07:00|40022472|Zeromus|005A5A00|16919985|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:17:56.7830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|108364|129071|8000|10000|8||100.01|98.32|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:56.7830000-07:00|558|Requiescat|29.69|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:17:56.7830000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:17:56.7830000-07:00|10FF0001||||| +261|2023-10-06T21:17:56.3350000-07:00|Change|10FF0001||| +261|2023-10-06T21:17:56.3350000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:17:56.8280000-07:00|40022472|Zeromus|00019D32|16917992|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|074F|0|41F00000|| +26|2023-10-06T21:17:56.8280000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:17:56.8280000-07:00|10FF000A|Dukaro Nezikaro|00019D34|62683|82773|10000|10000|23||100.51|100.66|0.00|-3.12|1E03|0|0|01|08000A8F|0|41E6BA5B|| +38|2023-10-06T21:17:56.8280000-07:00|40022C1E|Bunshin|005A5A00|75608|78475|10000|10000|0||100.52|100.67|0.00|-3.12|0|0|0||||||| +26|2023-10-06T21:17:56.8280000-07:00|30|Well Fed|2012.14|10FF000A|Dukaro Nezikaro|40022C1E|Bunshin|294E|78475|82773| +26|2023-10-06T21:17:56.8280000-07:00|A8F|Searing Light|28.80|10FF0006|Wowobora Gogobora|40022C1E|Bunshin|00|78475|81809| +39|2023-10-06T21:17:56.8720000-07:00|10FF0001|Sesuga Sapisuga|109654|129071|8200|10000|||100.01|98.32|0.00|-3.14| +39|2023-10-06T21:17:56.8720000-07:00|10FF0004|Buhojaqe Zijaqe|31604|81541|2000|10000|||101.27|99.46|0.00|2.60| +21|2023-10-06T21:17:56.8720000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2FA30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16951950|40478540|10000|10000|||100.00|80.10|0.00|0.00|99931|129844|10000|10000|||99.14|98.65|0.00|3.10|00019D41|0|1| +36|2023-10-06T21:17:56.8720000-07:00|30E8|3| +37|2023-10-06T21:17:56.9610000-07:00|10FF0001|Sesuga Sapisuga|00019D38|109654|129071|8200|10000|8||100.01|98.32|0.00|-3.14|1300|0|0|01|0600074C|0|41A80000|| +26|2023-10-06T21:17:56.9610000-07:00|74C|Everlasting Flight|21.00|40022C1D|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|77698| +37|2023-10-06T21:17:56.9610000-07:00|10FF0008|Kokosaze Lulusaze|00019D34|31026|90216|10000|10000|11||100.11|100.72|0.00|-3.14|1F04|0|0|01|03000A8F|0|41E5A9F8|| +21|2023-10-06T21:17:56.9610000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|16D30000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|110529|129844|10000|10000|||99.14|98.65|0.00|3.10|16917992|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019D42|0|1| +39|2023-10-06T21:17:57.0060000-07:00|10FF0007|Kehabiqo Febiqo|111827|129844|10000|10000|||99.14|98.65|0.00|3.10| +39|2023-10-06T21:17:57.0060000-07:00|10FF0006|Wowobora Gogobora|37036|81809|4550|10000|||100.20|97.22|0.00|2.15| +261|2023-10-06T21:17:56.5260000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:17:56.5260000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:17:56.5260000-07:00|Change|40022C10||||||||| +38|2023-10-06T21:17:57.0960000-07:00|40022C1F||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:17:57.0960000-07:00|10FF000A|Dukaro Nezikaro|00019D38|62683|82773|10000|10000|23||100.51|100.66|0.00|-3.12|1E01|0|0|01|0700074C|0|41A80000|| +26|2023-10-06T21:17:57.0960000-07:00|74C|Everlasting Flight|21.00|40022C1D|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|82773|77698| +37|2023-10-06T21:17:57.0960000-07:00|10FF0004|Buhojaqe Zijaqe|00019D34|31604|81541|2000|10000|30||101.51|99.07|0.00|2.91|1C05|0|0|01|04000A8F|0|41E49789|| +38|2023-10-06T21:17:57.0960000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||101.95|102.89|0.00|-3.06|0|0|0||||||| +26|2023-10-06T21:17:57.0960000-07:00|30|Well Fed|1945.93|10FF0004|Buhojaqe Zijaqe|40022C1B|Ruby Carbuncle|2968|77430|81541| +26|2023-10-06T21:17:57.0960000-07:00|A8F|Searing Light|28.53|10FF0006|Wowobora Gogobora|40022C1B|Ruby Carbuncle|00|77430|81809| +38|2023-10-06T21:17:57.0960000-07:00|40022C1F||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:17:56.6400000-07:00|Change|40022C1D||||||||| +38|2023-10-06T21:17:57.1840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111827|129844|10000|10000|5||99.14|98.65|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:57.1840000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:17:57.2290000-07:00|10FF0006|Wowobora Gogobora|00019D38|37036|81809|4550|10000|12||100.08|97.80|0.00|0.95|1B02|0|0|01|0800074C|0|41A80000|| +26|2023-10-06T21:17:57.2290000-07:00|74C|Everlasting Flight|21.00|40022C1D|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T21:17:57.2290000-07:00|10FF0009|Zewo Negiwo|00019D34|31026|81177|4067|10000|0||85.18|84.15|-0.01|-2.62|1806|0|0|01|06000A8F|0|41E3851A|| +261|2023-10-06T21:17:56.7510000-07:00|Add|40022C1F||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:17:56.7510000-07:00|40022C1F|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.89|102.48|0.00|-3.14| +21|2023-10-06T21:17:57.2730000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|21FC0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|31026|90216|10000|10000|||100.11|100.72|0.00|-3.14|73956|77430|10000|10000|||101.95|102.89|0.00|-3.02|00019D43|0|1| +261|2023-10-06T21:17:56.8640000-07:00|Change|40022C1F||| +37|2023-10-06T21:17:57.3180000-07:00|10FF0006|Wowobora Gogobora|00019D3B|44213|81809|4550|10000|12||99.88|98.57|0.00|0.56|1B00|0|0|01|09000A90|4B|0|| +26|2023-10-06T21:17:57.3180000-07:00|A90|Rekindle|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|4B|81809|81809| +38|2023-10-06T21:17:57.3180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|44213|81809|4550|10000|12||99.88|98.57|0.00|0.56|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:57.3180000-07:00|A90|Rekindle|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|4B|81809|81809| +26|2023-10-06T21:17:57.3180000-07:00|A91|Undying Flame|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:17:57.3630000-07:00|10FF0008|Kokosaze Lulusaze|00019D38|31026|90216|10000|10000|11||100.11|100.72|0.00|-3.14|1F03|0|0|01|0400074C|0|41A80000|| +26|2023-10-06T21:17:57.3630000-07:00|74C|Everlasting Flight|21.00|40022C1D|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|77698| +37|2023-10-06T21:17:57.4080000-07:00|40022472|Zeromus|00019D40|16880767||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:57.4080000-07:00|10FF0001|Sesuga Sapisuga|00019D40|119445||||||100.01|98.32|0.00|-3.14| +37|2023-10-06T21:17:57.4980000-07:00|40022472|Zeromus|00019D41|16868572||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:57.4980000-07:00|10FF0007|Kehabiqo Febiqo|00019D38|111827|129844|10000|10000|5||99.14|98.65|0.00|3.10|1504|0|0|01|0400074C|0|41A80000|| +26|2023-10-06T21:17:57.4980000-07:00|74C|Everlasting Flight|21.00|40022C1D|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|77698| +21|2023-10-06T21:17:57.4980000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|111827|129844|10000|10000|||99.14|98.65|0.00|3.10|111827|129844|10000|10000|||99.14|98.65|0.00|3.10|00019D44|0|1| +21|2023-10-06T21:17:57.4980000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|3F770000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16880767|40478540|10000|10000|||100.00|80.10|0.00|0.00|44213|81809|4550|10000|||99.75|99.07|0.00|0.26|00019D45|0|1| +38|2023-10-06T21:17:57.4980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111827|129844|10000|10000|5||99.14|98.65|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:57.4980000-07:00|A75|Surging Tempest|60.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:17:57.4980000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:17:57.4980000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:17:57.4980000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:17:57.5420000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16868572|40478540|10000|10000|||100.00|80.10|0.00|0.00|119445|129071|8200|10000|||100.01|98.32|0.00|-3.14|00019D46|0|1| +31|2023-10-06T21:17:57.5420000-07:00|10FF0001||||| +261|2023-10-06T21:17:57.0960000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:17:57.6310000-07:00|10FF0004|Buhojaqe Zijaqe|00019D38|31604|81541|2000|10000|30||101.61|98.89|0.00|-3.06|1C05|0|0|01|0600074C|0|41A80000|| +26|2023-10-06T21:17:57.6310000-07:00|74C|Everlasting Flight|21.00|40022C1D|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|77698| +21|2023-10-06T21:17:57.6310000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16868572|40478540|10000|10000|||100.00|80.10|0.00|0.00|31026|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D47|0|1| +04|2023-10-06T21:17:57.2130000-07:00|40022BEC|Seraph|00|5A|10FF0004|00||8227|10487|0|77430|0|10000|||101.95|102.89|0.00|-3.06| +261|2023-10-06T21:17:57.2130000-07:00|Remove|40022BEC| +21|2023-10-06T21:17:57.7210000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|345D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16868572|40478540|10000|10000|||100.00|80.10|0.00|0.00|31604|81541|2000|10000|||101.61|98.89|0.00|-3.06|00019D48|0|1| +37|2023-10-06T21:17:57.7650000-07:00|10FF0007|Kehabiqo Febiqo|00019D42|105984|129844|10000|10000|0||99.14|98.65|0.00|3.10|1500|0|0|04|07000000|0|0|||||||||||||| +38|2023-10-06T21:17:57.7650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105984|129844|10000|10000|0||99.14|98.65|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:57.7650000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +261|2023-10-06T21:17:57.4100000-07:00|Change|10FF0001||| +261|2023-10-06T21:17:57.4100000-07:00|Change|10FF0004||||||||||||||||||||||| +20|2023-10-06T21:17:57.9420000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|84.81|83.16|0.00|3.03| +39|2023-10-06T21:17:57.9860000-07:00|10FF000A|Dukaro Nezikaro|63510|82773|10000|10000|||100.51|100.66|0.00|-3.12| +261|2023-10-06T21:17:57.6320000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:17:58.0750000-07:00|10FF0008|Kokosaze Lulusaze|00019D43|39726||||||100.11|100.72|0.00|-3.14| +37|2023-10-06T21:17:58.0750000-07:00|40022472|Zeromus|00019D46|16866277||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:17:57.7230000-07:00|Change|4002247B||||||||| +21|2023-10-06T21:17:58.0750000-07:00|4002247B|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.33|102.26|0.00|0.00|00019D49|0|0| +34|2023-10-06T21:17:58.1200000-07:00|40022C1F|Automaton Queen|40022C1F|Automaton Queen|01| +21|2023-10-06T21:17:58.1650000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|105984|129844|10000|10000|||99.14|98.65|0.00|3.10|105984|129844|10000|10000|||99.14|98.65|0.00|3.10|00019D4A|0|1| +261|2023-10-06T21:17:57.7230000-07:00|Change|40022C1F||| +38|2023-10-06T21:17:58.1650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105984|129844|10000|10000|0||99.14|98.65|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:17:58.1650000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:17:57.8340000-07:00|Change|40022C1F||| +23|2023-10-06T21:17:58.2090000-07:00|10FF0009|Zewo Negiwo|85|Medica II|Cancelled| +24|2023-10-06T21:17:58.2090000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7A0|39726|90216|10000|10000|||100.11|100.72|0.00|-3.14|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +21|2023-10-06T21:17:58.2090000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16866277|40478540|10000|10000|||100.00|80.10|0.00|0.00|31604|81541|1600|10000|||101.61|98.89|0.00|-3.06|00019D4B|0|1| +21|2023-10-06T21:17:58.2090000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|ACA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16866277|40478540|10000|10000|||100.00|80.10|0.00|0.00|63510|82773|10000|10000|||100.51|100.66|0.00|-3.12|00019D4C|0|1| +38|2023-10-06T21:17:58.2090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|41678|90216|10000|10000|11||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||| +37|2023-10-06T21:17:58.2530000-07:00|10FF0007|Kehabiqo Febiqo|00019D44|105984|129844|10000|10000|0||99.14|98.65|0.00|3.10|1500|0|0|04|07000769|0|C1F00000|||||||||||||| +24|2023-10-06T21:17:58.2540000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|751|63510|82773|10000|10000|||100.51|100.66|0.00|-3.12|10FF0006|Wowobora Gogobora|0|44213|81809|4250|10000|||99.63|99.63|0.00|3.12| +38|2023-10-06T21:17:58.2540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105984|129844|10000|10000|0||99.14|98.65|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:58.2540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65383|82773|10000|10000|23||100.51|100.66|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:17:58.2980000-07:00|40022472|Zeromus|00019D3F|16851053||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:58.3880000-07:00|40022472|Zeromus|00019D47|16848218||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:58.3880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7FC|31604|81541|1600|10000|||101.61|98.89|0.00|-3.06|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +38|2023-10-06T21:17:58.3880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|33648|81541|1600|10000|30||101.61|98.89|0.00|-3.06|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:17:58.4780000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1098|105984|129844|10000|10000|||99.14|98.65|0.00|3.10|10FF0007|Kehabiqo Febiqo|0|105984|129844|10000|10000|||99.14|98.65|0.00|3.10| +24|2023-10-06T21:17:58.4780000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1F7A|44213|81809|4250|10000|||99.63|99.63|0.00|3.12|10FF0006|Wowobora Gogobora|0|44213|81809|4250|10000|||99.63|99.63|0.00|3.12| +21|2023-10-06T21:17:58.4780000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|722003|9D5F0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|16851053|40478540|10000|10000|||100.00|80.10|0.00|0.00|41678|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D4D|0|1| +38|2023-10-06T21:17:58.4780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110232|129844|10000|10000|0||99.14|98.65|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:17:58.4780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52271|81809|4250|10000|12||99.63|99.63|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:58.5220000-07:00|40022472|Zeromus|00019D48|16834813||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:58.5220000-07:00|10FF0009|Zewo Negiwo|HoT|0|F4C|31026|81177|4067|10000|||84.76|82.92|0.00|-3.13|10FF0006|Wowobora Gogobora|0|44213|81809|4250|10000|||99.63|99.63|0.00|3.12| +38|2023-10-06T21:17:58.5220000-07:00|10FF0009|Zewo Negiwo|005A5A18|34942|81177|4617|10000|0||84.76|82.92|0.00|-3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:17:58.5670000-07:00|40022472|Zeromus|00019D45|16818566||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:17:58.5670000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7F6|119445|129071|8200|10000|||100.01|98.32|0.00|-3.14|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +38|2023-10-06T21:17:58.5670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121483|129071|8200|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:17:58.6110000-07:00|40022C1D|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|152003|1F1A0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|16818566|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04|00019D4E|0|1| +37|2023-10-06T21:17:58.6990000-07:00|10FF0007|Kehabiqo Febiqo|00019D4A|110232|129844|10000|10000|0||99.11|98.77|0.00|1.83|1500|0|0|01|07000769|0|41F00000|| +38|2023-10-06T21:17:58.6990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110232|129844|10000|10000|0||99.11|98.77|0.00|1.83|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:17:58.7440000-07:00|40022472|Zeromus|00019D4B|16818414||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:58.7440000-07:00|40022472|Zeromus|00019D4C|16815652||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:17:58.7440000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|754003|27640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16818566|40478540|10000|10000|||100.00|80.10|0.00|0.00|34942|81177|4617|10000|||86.26|83.30|0.00|2.26|00019D4F|0|2| +22|2023-10-06T21:17:58.7440000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|200004|25920000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|34942|81177|4617|10000|||86.26|83.30|0.00|2.26|34942|81177|4617|10000|||86.26|83.30|0.00|2.26|00019D4F|1|2| +21|2023-10-06T21:17:58.8320000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|B5A00000|200004|42E68000|0|0|0|0|0|0|0|0|0|0|0|0|16815652|40478540|10000|10000|||100.00|80.10|0.00|0.00|110232|129844|10000|10000|||99.11|98.84|0.00|1.39|00019D50|0|1| +38|2023-10-06T21:17:58.8320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110232|129844|10000|10000|0||99.11|98.84|0.00|1.39|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:17:58.8320000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +04|2023-10-06T21:17:58.3750000-07:00|40022C10|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||98.13|99.32|0.00|1.50| +261|2023-10-06T21:17:58.3750000-07:00|Remove|40022C10| +21|2023-10-06T21:17:58.9210000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2F250000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|16815652|40478540|10000|10000|||100.00|80.10|0.00|0.00|65383|82773|10000|10000|||100.51|100.66|0.00|-3.12|00019D51|0|1| +261|2023-10-06T21:17:58.5630000-07:00|Change|40022C1E||||| +38|2023-10-06T21:17:58.9210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65383|82773|10000|10000|23||100.51|100.66|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:17:58.9210000-07:00|7A2|Bunshin|26.97|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|82773|82773| +21|2023-10-06T21:17:58.9650000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|148A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16815652|40478540|10000|10000|||100.00|80.10|0.00|0.00|110232|129844|10000|10000|||99.11|98.87|0.00|3.10|00019D52|0|1| +21|2023-10-06T21:17:59.0100000-07:00|40022C1E|Bunshin|4406|Gust Slash|40022472|Zeromus|710003|FEE0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|16815652|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||100.52|100.67|0.00|-3.12|00019D53|0|1| +261|2023-10-06T21:17:58.5630000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:17:58.5630000-07:00|Change|40022C1E||| +20|2023-10-06T21:17:59.1880000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.61|98.89|0.00|-3.06| +261|2023-10-06T21:17:58.7890000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T21:17:59.2770000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|710003|570F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16815652|40478540|10000|10000|||100.00|80.10|0.00|0.00|121483|129071|8200|10000|||100.01|98.32|0.00|-3.14|00019D54|0|1| +37|2023-10-06T21:17:59.3200000-07:00|40022472|Zeromus|00019D51|16803583||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:59.3200000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16815652|40478540|10000|10000|||100.00|80.10|0.00|0.00|52271|81809|4250|10000|||99.63|99.63|0.00|3.12|00019D55|0|1| +37|2023-10-06T21:17:59.4100000-07:00|40022472|Zeromus|00019D53|16799505||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:59.4100000-07:00|40022472|Zeromus|00019D4F|16789421||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:59.4540000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41678|90216|10000|10000|||100.11|100.72|0.00|-3.14|41678|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D56|0|1| +38|2023-10-06T21:17:59.4540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|41678|90216|10000|10000|11||100.11|100.72|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:17:59.4540000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:17:59.4990000-07:00|40022472|Zeromus|00019D52|16784163||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:59.5440000-07:00|10FF0009|Zewo Negiwo|00019D4F|44560|81177|5117|10000|0||90.95|85.30|0.00|1.16|1801|0|0|0| +37|2023-10-06T21:17:59.5440000-07:00|40022472|Zeromus|00019D4D|16743876||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:59.6330000-07:00|10FF0009|Zewo Negiwo|45371|81177|5338|10000|||91.59|85.68|0.00|1.11| +37|2023-10-06T21:17:59.6780000-07:00|40022472|Zeromus|00019D4E|16735914||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:17:59.7220000-07:00|10FF0008|Kokosaze Lulusaze|42580|90216|10000|10000|||100.11|100.72|0.00|-3.14| +261|2023-10-06T21:17:59.3260000-07:00|Change|10FF0009||||||||||| +24|2023-10-06T21:17:59.7680000-07:00|40022472|Zeromus|DoT|0|184C|16735914|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|33648|81541|1600|10000|||101.61|98.89|0.00|-3.06| +38|2023-10-06T21:17:59.7680000-07:00|40022472|Zeromus|005A5A00|16729694|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:17:59.8120000-07:00|40022472|Zeromus|00019D54|16707407||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:17:59.8120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|D7F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16729694|40478540|10000|10000|||100.00|80.10|0.00|0.00|121483|129071|8200|10000|||100.01|98.32|0.00|-3.14|00019D57|0|1| +31|2023-10-06T21:17:59.8120000-07:00|10FF0001||||| +37|2023-10-06T21:17:59.8560000-07:00|40022472|Zeromus|00019D55|16707318||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:17:59.8560000-07:00|31C4|3| +39|2023-10-06T21:17:59.9000000-07:00|10FF0001|Sesuga Sapisuga|122773|129071|8400|10000|||100.01|98.32|0.00|-3.14| +39|2023-10-06T21:17:59.9000000-07:00|10FF0004|Buhojaqe Zijaqe|34463|81541|1800|10000|||101.61|98.89|0.00|-3.06| +261|2023-10-06T21:17:59.5110000-07:00|Change|10FF0001||| +21|2023-10-06T21:17:59.9450000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|43BD0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16707318|40478540|10000|10000|||100.00|80.10|0.00|0.00|52271|81809|4250|10000|||99.76|99.68|0.00|1.82|00019D58|0|1| +261|2023-10-06T21:17:59.5110000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:17:59.9900000-07:00|40022472|Zeromus|00019D50|16660822||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:17:59.9900000-07:00|10FF0007|Kehabiqo Febiqo|00019D50|127358||||||99.11|98.91|0.00|3.10| +39|2023-10-06T21:17:59.9900000-07:00|10FF0007|Kehabiqo Febiqo|128656|129844|10000|10000|||99.11|98.91|0.00|3.10| +39|2023-10-06T21:17:59.9900000-07:00|10FF0006|Wowobora Gogobora|53089|81809|4150|10000|||99.81|99.70|0.00|3.14| +21|2023-10-06T21:17:59.9900000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3ADD0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|110232|129844|10000|10000|||99.11|98.91|0.00|3.10|16707318|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019D59|0|1| +21|2023-10-06T21:18:00.0800000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|12FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16707318|40478540|10000|10000|||100.00|80.10|0.00|0.00|110232|129844|10000|10000|||99.11|98.91|0.00|3.10|00019D5A|0|1| +21|2023-10-06T21:18:00.0800000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40022472|Zeromus|6DE0E|35D0000|72000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|16707318|40478540|10000|10000|||100.00|80.10|0.00|0.00|42580|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D5B|0|1| +21|2023-10-06T21:18:00.1230000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32AD0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16660822|40478540|10000|10000|||100.00|80.10|0.00|0.00|34463|81541|1800|10000|||101.61|98.89|0.00|-3.06|00019D5C|0|1| +261|2023-10-06T21:17:59.7220000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:18:00.3020000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B8C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16660822|40478540|10000|10000|||100.00|80.10|0.00|0.00|42580|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D5D|0|1| +21|2023-10-06T21:18:00.3020000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|712003|1FB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16660822|40478540|10000|10000|||100.00|80.10|0.00|0.00|122773|129071|8400|10000|||100.01|98.32|0.00|-3.14|00019D5E|0|1| +37|2023-10-06T21:18:00.3460000-07:00|40022472|Zeromus|00019D57|16657367||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:00.3910000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||101.95|102.89|0.00|-3.06| +21|2023-10-06T21:18:00.3910000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16660822|40478540|10000|10000|||100.00|80.10|0.00|0.00|65383|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D5F|0|1| +261|2023-10-06T21:18:00.0640000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:18:00.0640000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:18:00.5710000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|14740000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|42580|90216|10000|10000|||100.11|100.72|0.00|-3.14|73956|77430|10000|10000|||101.95|102.89|0.00|-3.06|00019D60|0|1| +37|2023-10-06T21:18:00.7030000-07:00|40022472|Zeromus|00019D5A|16652509||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:00.7030000-07:00|40022472|Zeromus|00019D5B|16652509|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|0|41200000|| +26|2023-10-06T21:18:00.7030000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|90216| +37|2023-10-06T21:18:00.7030000-07:00|10FF0008|Kokosaze Lulusaze|00019D5B|42580|90216|10000|10000|11||100.11|100.72|0.00|-3.14|1F00|0|0|01|0600079A|0|41200000|| +26|2023-10-06T21:18:00.7030000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:18:00.7920000-07:00|10FF0007|Kehabiqo Febiqo|00019D59|113587||||||99.11|99.01|0.00|3.10| +37|2023-10-06T21:18:00.8820000-07:00|40022472|Zeromus|00019D5E|16644392||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:00.8820000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||101.95|102.89|0.00|-2.66|0|0|0|||||||||| +26|2023-10-06T21:18:00.8820000-07:00|7AE|Summon Order IV|30.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:18:00.8820000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34463|81541|1400|10000|||101.61|98.89|0.00|-3.06|34463|81541|1400|10000|||101.61|98.89|0.00|-3.06|00019D61|0|1| +37|2023-10-06T21:18:00.9260000-07:00|40022472|Zeromus|00019D5C|16631419||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:00.9260000-07:00|40022472|Zeromus|00019D5F|16629290||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:00.9260000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|98.11|90.53|0.00|0.58| +261|2023-10-06T21:18:00.4680000-07:00|Change|40022C1E||| +37|2023-10-06T21:18:01.0160000-07:00|40022472|Zeromus|00019D58|16611949||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:01.0160000-07:00|40022C1D|Demi-Phoenix|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +39|2023-10-06T21:18:01.0160000-07:00|10FF000A|Dukaro Nezikaro|66210|82773|10000|10000|||100.18|100.51|0.00|-3.13| +26|2023-10-06T21:18:01.0160000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:18:01.0160000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|37A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16629290|40478540|10000|10000|||100.00|80.10|0.00|0.00|42580|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D62|0|1| +37|2023-10-06T21:18:01.0600000-07:00|40022472|Zeromus|00019D5D|16608993||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:01.0600000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42716003|629E0000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|16629290|40478540|10000|10000|||100.00|80.10|0.00|0.00|65383|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D63|0|1| +38|2023-10-06T21:18:01.0600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|66210|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:01.0600000-07:00|7A2|Bunshin|24.83|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|82773|82773| +21|2023-10-06T21:18:01.1500000-07:00|40022C1E|Bunshin|4409|Armor Crush|40022472|Zeromus|714003|15A90000|53E|9F8000|1B|44098000|0|0|0|0|0|0|0|0|0|0|16608993|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||100.20|100.54|0.00|-3.13|00019D64|0|1| +261|2023-10-06T21:18:00.6860000-07:00|Change|40022C1E||||||||| +39|2023-10-06T21:18:01.1950000-07:00|40022C1E|Bunshin|75608|78475|10000|10000|||100.20|100.54|0.00|-3.13| +24|2023-10-06T21:18:01.1950000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|74A|42580|90216|10000|10000|||100.11|100.72|0.00|-3.14|10FF0008|Kokosaze Lulusaze|0|42580|90216|10000|10000|||100.11|100.72|0.00|-3.14| +26|2023-10-06T21:18:01.1950000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:18:01.1950000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|752003|46750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16608993|40478540|10000|10000|||100.00|80.10|0.00|0.00|53089|81809|4150|10000|||99.93|99.75|0.00|3.14|00019D65|0|1| +38|2023-10-06T21:18:01.1950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113587|129844|10000|10000|0||99.31|98.81|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:01.1950000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T21:18:01.1950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|44446|90216|10000|10000|11||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:18:01.2390000-07:00|40022C1D|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|154003|19E60000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|16608993|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04|00019D66|0|1| +24|2023-10-06T21:18:01.2850000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|CF3|66210|82773|10000|10000|||100.18|100.51|0.00|-3.13|10FF0006|Wowobora Gogobora|0|53089|81809|4150|10000|||99.93|99.75|0.00|3.14| +21|2023-10-06T21:18:01.2850000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|AB4F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16608993|40478540|10000|10000|||100.00|80.10|0.00|0.00|113587|129844|10000|10000|||99.36|98.76|-0.01|3.10|00019D67|0|1| +38|2023-10-06T21:18:01.2850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113587|129844|10000|10000|0||99.36|98.76|-0.01|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:01.2850000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:18:01.2850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69525|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:18:01.3730000-07:00|10FF0008|Kokosaze Lulusaze|00019D60|49682||||||100.11|100.72|0.00|-3.14| +24|2023-10-06T21:18:01.3730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|79F|34463|81541|1400|10000|||101.61|98.89|0.00|-3.06|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +38|2023-10-06T21:18:01.3730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|36414|81541|1400|10000|30||101.61|98.89|0.00|-3.06|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:18:01.5060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|10A2|113587|129844|10000|10000|||99.38|98.74|0.00|3.11|10FF0007|Kehabiqo Febiqo|0|113587|129844|10000|10000|||99.38|98.74|0.00|3.11| +24|2023-10-06T21:18:01.5060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2424|53089|81809|4150|10000|||99.93|99.75|0.00|3.14|10FF0006|Wowobora Gogobora|0|53089|81809|4150|10000|||99.93|99.75|0.00|3.14| +38|2023-10-06T21:18:01.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117845|129844|10000|10000|0||99.38|98.74|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:01.5060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62341|81809|4150|10000|12||99.93|99.75|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:01.1450000-07:00|Change|10FF0009||||||||||||||||||||| +24|2023-10-06T21:18:01.5510000-07:00|10FF0009|Zewo Negiwo|HoT|0|957|45371|81177|5338|10000|||98.53|91.48|0.00|3.01|10FF0006|Wowobora Gogobora|0|62341|81809|4150|10000|||99.93|99.75|0.00|3.14| +38|2023-10-06T21:18:01.5510000-07:00|10FF0009|Zewo Negiwo|005A5A18|47762|81177|5888|10000|0||98.53|91.48|0.00|3.01|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:18:01.5950000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|793|122773|129071|8400|10000|||100.01|98.32|0.00|-3.14|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +21|2023-10-06T21:18:01.5960000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|726003|27E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16608993|40478540|10000|10000|||100.00|80.10|0.00|0.00|49682|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D68|0|1| +20|2023-10-06T21:18:01.5960000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.61|98.89|0.00|-3.06| +38|2023-10-06T21:18:01.5960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|124712|129071|8400|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:01.2450000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:18:01.6410000-07:00|40022472|Zeromus|00019D62|16594751|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|01|41110628|| +26|2023-10-06T21:18:01.6410000-07:00|35D|Wildfire|9.06|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|01|40478540|90216| +22|2023-10-06T21:18:01.6410000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|25470000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|49682|90216|10000|10000|||100.11|100.72|0.00|-3.14|73956|77430|10000|10000|||101.95|102.89|0.00|-2.44|00019D69|0|7| +22|2023-10-06T21:18:01.6410000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|4|24550000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|69525|82773|10000|10000|||100.18|100.51|0.00|-3.13|73956|77430|10000|10000|||101.95|102.89|0.00|-2.44|00019D69|1|7| +22|2023-10-06T21:18:01.6410000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|256B0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|62341|81809|4150|10000|||99.93|99.75|0.00|3.14|73956|77430|10000|10000|||101.95|102.89|0.00|-2.44|00019D69|2|7| +22|2023-10-06T21:18:01.6410000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|25A80000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|36414|81541|1400|10000|||101.61|98.89|0.00|-3.06|73956|77430|10000|10000|||101.95|102.89|0.00|-2.44|00019D69|3|7| +22|2023-10-06T21:18:01.6410000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|26290000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|117845|129844|10000|10000|||99.39|98.74|-0.02|3.11|73956|77430|10000|10000|||101.95|102.89|0.00|-2.44|00019D69|4|7| +22|2023-10-06T21:18:01.6410000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|200004|3AF50000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|124712|129071|8400|10000|||100.01|98.32|0.00|-3.14|73956|77430|10000|10000|||101.95|102.89|0.00|-2.44|00019D69|5|7| +22|2023-10-06T21:18:01.6410000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0009|Zewo Negiwo|4|24490000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|47762|81177|5888|10000|||98.53|91.48|0.00|3.01|73956|77430|10000|10000|||101.95|102.89|0.00|-2.44|00019D69|6|7| +37|2023-10-06T21:18:01.6850000-07:00|40022472|Zeromus|00019D63|16569505||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:01.7740000-07:00|40022472|Zeromus|00019D64|16563960||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:01.8180000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|750003|5B070000|4|25208000|0|0|0|0|0|0|0|0|0|0|0|0|16569505|40478540|10000|10000|||100.00|80.10|0.00|0.00|124712|129071|8400|10000|||100.01|98.32|0.00|-3.14|00019D6A|0|1| +38|2023-10-06T21:18:01.8180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|124712|129071|7400|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:01.8180000-07:00|558|Requiescat|24.65|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:18:01.8180000-07:00|10FF0001||||| +261|2023-10-06T21:18:01.4360000-07:00|Change|10FF0001||| +21|2023-10-06T21:18:01.8630000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|189C0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|16563960|40478540|10000|10000|||100.00|80.10|0.00|0.00|47762|81177|5888|10000|||98.53|91.48|0.00|3.01|00019D6B|0|1| +20|2023-10-06T21:18:01.9070000-07:00|40022472|Zeromus|8B66|Void Bio|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:01.4360000-07:00|Change|40022472||||||||| +38|2023-10-06T21:18:01.9510000-07:00|10FF0009|Zewo Negiwo|005A5A18|47762|81177|5488|10000|0||98.53|91.48|0.00|3.01|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:01.9510000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:18:01.9960000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|716003|26C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16563960|40478540|10000|10000|||100.00|80.10|0.00|0.00|117845|129844|10000|10000|||99.51|98.74|0.00|3.10|00019D6C|0|1| +21|2023-10-06T21:18:02.0850000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|A620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16563960|40478540|10000|10000|||100.00|80.10|0.00|0.00|124712|129071|7400|10000|||100.01|98.32|0.00|-3.14|00019D6D|0|1| +38|2023-10-06T21:18:02.0850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69525|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:02.0850000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +31|2023-10-06T21:18:02.0850000-07:00|10FF0001||||| +37|2023-10-06T21:18:02.1290000-07:00|40022472|Zeromus|00019D65|16545923||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:02.1750000-07:00|40022C1F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1E7A0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|16545923|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.89|102.48|0.00|-3.14|00019D6E|0|1| +21|2023-10-06T21:18:02.1750000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|750003|2B1A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16545923|40478540|10000|10000|||100.00|80.10|0.00|0.00|62341|81809|4150|10000|||99.93|99.75|0.00|3.14|00019D6F|0|1| +38|2023-10-06T21:18:02.1750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62341|81809|4150|10000|12||99.93|99.75|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:02.1750000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +37|2023-10-06T21:18:02.2190000-07:00|40022472|Zeromus|00019D67|16502068||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:02.2190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117845|129844|10000|10000|0||99.53|98.74|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:02.2190000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:18:02.2630000-07:00|40022472|Zeromus|00019D66|16495438||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:02.3520000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|15580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16502068|40478540|10000|10000|||100.00|80.10|0.00|0.00|117845|129844|10000|10000|||99.53|98.74|0.00|3.12|00019D70|0|1| +38|2023-10-06T21:18:02.3520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62341|81809|4150|10000|12||99.93|99.75|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:02.3520000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:18:02.3970000-07:00|40022472|Zeromus|00019D68|16485224||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:02.4410000-07:00|10FF0008|Kokosaze Lulusaze|00019D69|59225||||||100.11|100.72|0.00|-3.14| +37|2023-10-06T21:18:02.4410000-07:00|40022472|Zeromus|00019D6A|16461921||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:02.4410000-07:00|10FF0001|Sesuga Sapisuga|00019D6A|129071||||||100.01|98.32|0.00|-3.14| +21|2023-10-06T21:18:02.4410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16495438|40478540|10000|10000|||100.00|80.10|0.00|0.00|62341|81809|4150|10000|||99.93|99.75|0.00|3.14|00019D71|0|1| +261|2023-10-06T21:18:02.1020000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:18:02.4860000-07:00|10FF0009|Zewo Negiwo|1D89|Swiftcast|10FF0009|Zewo Negiwo|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47762|81177|5488|10000|||98.53|91.48|0.00|3.01|47762|81177|5488|10000|||98.53|91.48|0.00|3.01|00019D72|0|1| +26|2023-10-06T21:18:02.4860000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:18:02.4860000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2ABF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16461921|40478540|10000|10000|||100.00|80.10|0.00|0.00|59225|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D73|0|1| +38|2023-10-06T21:18:02.4860000-07:00|10FF0009|Zewo Negiwo|005A5A18|47762|81177|5488|10000|0||98.53|91.48|0.00|3.01|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:02.4860000-07:00|A7|Swiftcast|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:18:02.5300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|34800000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16461921|40478540|10000|10000|||100.00|80.10|0.00|0.00|36414|81541|1400|10000|||101.61|98.89|0.00|-3.06|00019D74|0|1| +37|2023-10-06T21:18:02.5750000-07:00|10FF000A|Dukaro Nezikaro|00019D69|78826||||||100.18|100.51|0.00|-3.13| +21|2023-10-06T21:18:02.5750000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B0C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16461921|40478540|10000|10000|||100.00|80.10|0.00|0.00|69525|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D75|0|1| +261|2023-10-06T21:18:02.1920000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:18:02.6190000-07:00|10FF0009|Zewo Negiwo|00019D72|47762|81177|5488|10000|0||98.53|91.49|-0.02|2.78|1800|0|0|01|040000A7|0|41200000|| +37|2023-10-06T21:18:02.6190000-07:00|40022472|Zeromus|00019D6D|16459263||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:02.6190000-07:00|10FF0009|Zewo Negiwo|48573|81177|5709|10000|||98.53|91.49|-0.02|2.78| +38|2023-10-06T21:18:02.6190000-07:00|10FF0009|Zewo Negiwo|005A5A18|48573|81177|5709|10000|0||98.53|91.49|-0.02|2.78|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:02.6640000-07:00|40022472|Zeromus|00019D6C|16449340||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:02.6640000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|116D0000|13E50E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|16461921|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||100.01|98.32|0.00|-3.14|00019D76|0|1| +37|2023-10-06T21:18:02.7080000-07:00|10FF0006|Wowobora Gogobora|00019D69|71920||||||99.93|99.75|0.00|3.14| +39|2023-10-06T21:18:02.7080000-07:00|10FF0008|Kokosaze Lulusaze|60127|90216|10000|10000|||100.11|100.72|0.00|-3.14| +24|2023-10-06T21:18:02.7530000-07:00|40022472|Zeromus|DoT|0|140B|16449340|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|36414|81541|1000|10000|||101.61|98.89|0.00|-3.06| +38|2023-10-06T21:18:02.7530000-07:00|40022472|Zeromus|005A5A00|16444209|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T21:18:02.7970000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|154003|50740000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16449340|40478540|10000|10000|||100.00|80.10|0.00|0.00|71920|81809|4150|10000|||99.93|99.75|0.00|3.14|00019D77|0|1| +261|2023-10-06T21:18:02.3810000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:18:02.3810000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:18:02.8420000-07:00|10FF0004|Buhojaqe Zijaqe|00019D69|46054||||||101.61|98.89|0.00|-3.06| +36|2023-10-06T21:18:02.8420000-07:00|32A0|3| +37|2023-10-06T21:18:02.8860000-07:00|40022472|Zeromus|00019D70|16438745||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:02.8860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7600|10000|||100.01|98.32|0.00|-3.14| +39|2023-10-06T21:18:02.8860000-07:00|10FF0004|Buhojaqe Zijaqe|46869|81541|1200|10000|||101.61|98.89|0.00|-3.06| +261|2023-10-06T21:18:02.4740000-07:00|Change|10FF0001||| +37|2023-10-06T21:18:02.9310000-07:00|40022472|Zeromus|00019D6E|16430943||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:02.9740000-07:00|10FF0007|Kehabiqo Febiqo|00019D69|127614||||||99.58|98.74|0.00|3.11| +37|2023-10-06T21:18:02.9740000-07:00|40022472|Zeromus|00019D71|16430854||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:02.9750000-07:00|10FF0007|Kehabiqo Febiqo|128912|129844|10000|10000|||99.62|98.74|0.00|3.11| +21|2023-10-06T21:18:02.9750000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|13710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16430854|40478540|10000|10000|||100.00|80.10|0.00|0.00|60127|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D78|0|1| +39|2023-10-06T21:18:03.0200000-07:00|10FF0006|Wowobora Gogobora|72738|81809|4050|10000|||99.93|99.75|0.00|3.14| +39|2023-10-06T21:18:03.0640000-07:00|40022C1F|Automaton Queen|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06| +37|2023-10-06T21:18:03.1090000-07:00|40022472|Zeromus|00019D73|16419911|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|02|40F30A49|| +26|2023-10-06T21:18:03.1090000-07:00|35D|Wildfire|7.60|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|02|40478540|90216| +37|2023-10-06T21:18:03.1090000-07:00|40022472|Zeromus|00019D6F|16408877||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:03.1090000-07:00|40022472|Zeromus|00019D75|16406049||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:03.1090000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|22500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16430854|40478540|10000|10000|||100.00|80.10|0.00|0.00|60127|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D79|0|1| +37|2023-10-06T21:18:03.1530000-07:00|40022472|Zeromus|00019D6B|16399749||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:03.1970000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18FA0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|16406049|40478540|10000|10000|||100.00|80.10|0.00|0.00|78826|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D7A|0|1| +38|2023-10-06T21:18:03.1970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78826|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:03.1970000-07:00|7A2|Bunshin|22.69|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +37|2023-10-06T21:18:03.2420000-07:00|10FF0009|Zewo Negiwo|00019D69|57862||||||98.96|93.23|0.00|0.50| +38|2023-10-06T21:18:03.2420000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||101.95|102.89|0.00|-2.44|0|0|0||||||| +30|2023-10-06T21:18:03.2420000-07:00|7AE|Summon Order IV|0.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:18:03.2860000-07:00|40022C1E|Bunshin|4405|Spinning Edge|40022472|Zeromus|710003|10520000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|16399749|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||100.20|100.54|0.00|-3.13|00019D7B|0|1| +37|2023-10-06T21:18:03.3300000-07:00|40022472|Zeromus|00019D74|16386309||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:03.3300000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16399749|40478540|10000|10000|||100.00|80.10|0.00|0.00|46869|81541|1200|10000|||101.61|98.89|0.00|-3.06|00019D7C|0|1| +261|2023-10-06T21:18:02.9250000-07:00|Change|10FF0006||| +39|2023-10-06T21:18:03.4200000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||101.95|102.89|0.00|-2.44| +38|2023-10-06T21:18:03.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72738|81809|4050|10000|12||99.93|99.75|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:03.4650000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:18:03.4650000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|750003|17F90000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|16386309|40478540|10000|10000|||100.00|80.10|0.00|0.00|72738|81809|4050|10000|||99.93|99.75|0.00|3.14|00019D7D|0|1| +38|2023-10-06T21:18:03.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72738|81809|4050|10000|12||99.93|99.75|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:03.4650000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:18:03.1480000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:18:03.5980000-07:00|40022472|Zeromus|00019D7A|16379915||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:03.2400000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:18:03.6880000-07:00|40022472|Zeromus|00019D7B|16375737||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:03.6880000-07:00|40022472|Zeromus|00019D76|16371276|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T21:18:03.6880000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +21|2023-10-06T21:18:03.6880000-07:00|10FF0009|Zewo Negiwo|7D|Raise|10FF0003|Gegehi Gehi|814000E|940000|1B|7D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|0|10000|||82.02|118.82|0.00|-1.51|57862|81177|5709|10000|||99.59|95.87|0.00|0.27|00019D7E|0|1| +38|2023-10-06T21:18:03.6880000-07:00|10FF0009|Zewo Negiwo|005A5A18|57862|81177|3309|10000|0||99.59|95.87|0.00|0.27|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:03.6880000-07:00|A7|Swiftcast|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:18:03.7320000-07:00|40022472|Zeromus|00019D79|16362492||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:03.7320000-07:00|40022472|Zeromus|00019D78|16357515||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:03.7320000-07:00|40022C1F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1D680000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|16371276|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06|00019D7F|0|1| +21|2023-10-06T21:18:03.7320000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|8DDC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16371276|40478540|10000|10000|||100.00|80.10|0.00|0.00|128912|129844|10000|10000|||99.72|98.44|0.00|3.10|00019D80|0|1| +38|2023-10-06T21:18:03.7320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128912|129844|10000|10000|0||99.72|98.44|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:03.7320000-07:00|499|Inner Release|9.48|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +21|2023-10-06T21:18:03.8210000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|15610000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|60127|90216|10000|10000|||100.11|100.72|0.00|-3.14|73956|77430|10000|10000|||101.95|102.89|0.00|-2.87|00019D81|0|1| +37|2023-10-06T21:18:03.8660000-07:00|40022472|Zeromus|00019D77|16336919||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:03.8660000-07:00|10FF0006|Wowobora Gogobora|00019D77|72738|81809|4050|10000|12||99.93|99.75|0.00|3.14|1B00|0|0|01|06000A8D|0|C2700000|| +37|2023-10-06T21:18:03.8660000-07:00|40022472|Zeromus|00019D7C|16336662||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:18:03.9560000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:18:03.9560000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|24630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16336662|40478540|10000|10000|||100.00|80.10|0.00|0.00|60127|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D82|0|1| +39|2023-10-06T21:18:04.0000000-07:00|10FF000A|Dukaro Nezikaro|79653|82773|10000|10000|||100.18|100.51|0.00|-3.13| +39|2023-10-06T21:18:04.0450000-07:00|40022C1D|Demi-Phoenix|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +21|2023-10-06T21:18:04.0450000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F840E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|16336662|40478540|10000|10000|||100.00|80.10|0.00|0.00|46869|81541|1200|10000|||100.84|101.35|0.00|-0.38|00019D83|0|1| +38|2023-10-06T21:18:04.0890000-07:00|40022C1D|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||101.98|98.92|0.00|-3.04|0|0|0|||||||||| +26|2023-10-06T21:18:04.0890000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022C1D|Demi-Phoenix|01|77698|40478540| +21|2023-10-06T21:18:04.0890000-07:00|10FF0006|Wowobora Gogobora|4084|Enkindle Phoenix|40022472|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|16336662|40478540|10000|10000|||100.00|80.10|0.00|0.00|72738|81809|4050|10000|||99.93|99.75|0.00|3.14|00019D84|0|1| +21|2023-10-06T21:18:04.1770000-07:00|40022C1D|Demi-Phoenix|4086|Revelation|40022472|Zeromus|150003|AC4B0000|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|16336662|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04|00019D85|0|1| +39|2023-10-06T21:18:04.2220000-07:00|40022C1E|Bunshin|75608|78475|10000|10000|||100.20|100.54|0.00|-3.13| +24|2023-10-06T21:18:04.2220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|782|60127|90216|10000|10000|||100.11|100.72|0.00|-3.14|10FF0008|Kokosaze Lulusaze|0|60127|90216|10000|10000|||100.11|100.72|0.00|-3.14| +38|2023-10-06T21:18:04.2220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62049|90216|10000|10000|11||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:18:04.2670000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|C83|79653|82773|10000|10000|||100.18|100.51|0.00|-3.13|10FF0006|Wowobora Gogobora|0|72738|81809|4050|10000|||99.93|99.75|0.00|3.14| +38|2023-10-06T21:18:04.2670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:18:04.3120000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|750003|6F1A0000|4|253F8000|0|0|0|0|0|0|0|0|0|0|0|0|16336662|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||100.01|98.32|0.00|-3.14|00019D86|0|1| +21|2023-10-06T21:18:04.3120000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|27FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16336662|40478540|10000|10000|||100.00|80.10|0.00|0.00|79653|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D87|0|1| +38|2023-10-06T21:18:04.3120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:04.3120000-07:00|558|Requiescat|22.16|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:18:04.3120000-07:00|10FF0001||||| +261|2023-10-06T21:18:03.9400000-07:00|Change|10FF0001||| +261|2023-10-06T21:18:03.9400000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:18:04.3560000-07:00|40022472|Zeromus|00019D80|16300346||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:04.3560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16336662|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6600|10000|||100.01|98.32|0.00|-3.14|00019D88|0|1| +31|2023-10-06T21:18:04.3560000-07:00|10FF0001||||| +24|2023-10-06T21:18:04.4000000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CEB|46869|81541|800|10000|||100.78|101.53|0.00|-1.69|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +38|2023-10-06T21:18:04.4000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|50176|81541|800|10000|30||100.78|101.53|0.00|-1.69|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:04.4890000-07:00|40022472|Zeromus|00019D7F|16292818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:04.4890000-07:00|40022472|Zeromus|00019D7D|16286681||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:04.4890000-07:00|10FF0006|Wowobora Gogobora|00019D7D|72738|81809|4050|10000|12||99.92|99.74|0.00|-2.97|1B00|0|0|01|06000A8D|0|42700000|| +24|2023-10-06T21:18:04.4890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|10C4|128912|129844|10000|10000|||99.72|98.44|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|128912|129844|10000|10000|||99.72|98.44|0.00|3.13| +24|2023-10-06T21:18:04.4890000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2CC6|72738|81809|4050|10000|||99.92|99.74|0.00|-2.97|10FF0006|Wowobora Gogobora|0|72738|81809|4050|10000|||99.92|99.74|0.00|-2.97| +38|2023-10-06T21:18:04.4890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:04.4890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4050|10000|12||99.92|99.74|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:18:04.5330000-07:00|10FF0009|Zewo Negiwo|HoT|0|E31|57862|81177|3309|10000|||100.42|99.65|0.00|0.06|10FF0006|Wowobora Gogobora|0|72738|81809|4050|10000|||99.92|99.74|0.00|-2.97| +38|2023-10-06T21:18:04.5330000-07:00|10FF0009|Zewo Negiwo|005A5A18|61495|81177|3859|10000|0||100.42|99.65|0.00|0.06|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:18:04.5770000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|747|129071|129071|6600|10000|||100.01|98.32|0.00|-3.14|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +21|2023-10-06T21:18:04.5770000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16300346|40478540|10000|10000|||100.00|80.10|0.00|0.00|62049|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D89|0|1| +38|2023-10-06T21:18:04.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:04.6220000-07:00|10FF0008|Kokosaze Lulusaze|00019D81|67522||||||100.11|100.72|0.00|-3.14| +37|2023-10-06T21:18:04.6220000-07:00|40022472|Zeromus|00019D82|16277366|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|03|40C29FC2|| +26|2023-10-06T21:18:04.6220000-07:00|35D|Wildfire|6.08|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|03|40478540|90216| +261|2023-10-06T21:18:04.2480000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:18:04.7110000-07:00|40022472|Zeromus|00019D83|16277366|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:18:04.7110000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +21|2023-10-06T21:18:04.7550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16277366|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D8A|0|1| +37|2023-10-06T21:18:04.8450000-07:00|10FF0003|Gegehi Gehi|00019D7E|0|73814|0|10000|0||82.02|118.82|0.00|-1.51|2300|0|0|01|01000094|08|42700000|| +26|2023-10-06T21:18:04.8450000-07:00|94|Raise|60.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|08|73814|81177| +37|2023-10-06T21:18:04.8890000-07:00|40022472|Zeromus|00019D88|16275181||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:04.9340000-07:00|40022472|Zeromus|00019D87|16264947||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:04.7550000-07:00|Change|40022C1E||| +37|2023-10-06T21:18:05.2440000-07:00|40022472|Zeromus|00019D85|16220840||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:05.2440000-07:00|40022472|Zeromus|00019D86|16192398||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:05.2440000-07:00|40022C1D|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||101.98|98.92|0.00|-3.04|0|0|0||||||| +30|2023-10-06T21:18:05.2440000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022C1D|Demi-Phoenix|01|77698|40478540| +37|2023-10-06T21:18:05.2890000-07:00|40022472|Zeromus|00019D8A|16189677||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:05.2890000-07:00|40022C1F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1E4C0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|16264947|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06|00019D8B|0|1| +21|2023-10-06T21:18:05.2890000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|435E0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16264947|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4050|10000|||99.35|99.09|0.00|-2.78|00019D8C|0|1| +261|2023-10-06T21:18:04.7550000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:18:05.3330000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.72|98.44|0.00|3.13|129844|129844|10000|10000|||99.72|98.44|0.00|3.13|00019D8D|0|1| +21|2023-10-06T21:18:05.3330000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32712003|37EF0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|16189677|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D8E|0|1| +38|2023-10-06T21:18:05.3330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:05.3330000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:18:05.3330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:05.3330000-07:00|7A2|Bunshin|20.56|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:18:04.8750000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:18:05.3770000-07:00|40022472|Zeromus|00019D89|16184409||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:05.4210000-07:00|40022C1E|Bunshin|4406|Gust Slash|40022472|Zeromus|716003|220A0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|16184409|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||100.20|100.54|0.00|-3.13|00019D8F|0|1| +261|2023-10-06T21:18:04.9940000-07:00|Change|40022C1E||| +26|2023-10-06T21:18:05.4660000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:18:05.4660000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|726003|45E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16184409|40478540|10000|10000|||100.00|80.10|0.00|0.00|67522|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D90|0|1| +39|2023-10-06T21:18:05.5980000-07:00|10FF0009|Zewo Negiwo|62306|81177|4080|10000|||100.48|99.93|0.00|0.10| +21|2023-10-06T21:18:05.5980000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16184409|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3750|10000|||99.26|98.99|0.00|3.10|00019D91|0|1| +21|2023-10-06T21:18:05.6430000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16184409|40478540|10000|10000|||100.00|80.10|0.00|0.00|67522|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D92|0|1| +37|2023-10-06T21:18:05.7310000-07:00|40022472|Zeromus|00019D8E|16170090||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:05.2080000-07:00|Change|40022C1B||||||||| +39|2023-10-06T21:18:05.7320000-07:00|10FF0008|Kokosaze Lulusaze|68424|90216|10000|10000|||100.11|100.72|0.00|-3.14| +21|2023-10-06T21:18:05.7320000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|10420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16170090|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.72|98.44|0.00|3.13|00019D93|0|1| +24|2023-10-06T21:18:05.7770000-07:00|40022472|Zeromus|DoT|0|1574|16170090|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6600|10000|||100.01|98.32|0.00|-3.14| +38|2023-10-06T21:18:05.7770000-07:00|40022472|Zeromus|005A5A00|16164598|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:18:05.8210000-07:00|40022472|Zeromus|00019D8F|16155884||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:05.8650000-07:00|10FF0007|Kehabiqo Febiqo|00019D8D|129844|129844|10000|10000|0||99.72|98.44|0.00|3.13|1500|0|0|01|01000769|0|41F00000|| +39|2023-10-06T21:18:05.8650000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6800|10000|||100.01|98.32|0.00|-3.14| +36|2023-10-06T21:18:05.8650000-07:00|337C|3| +38|2023-10-06T21:18:05.8650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:05.3900000-07:00|Change|10FF0001||| +39|2023-10-06T21:18:05.9090000-07:00|10FF0004|Buhojaqe Zijaqe|50991|81541|1000|10000|||100.87|100.71|0.00|2.89| +261|2023-10-06T21:18:05.4800000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:18:05.9980000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.72|98.44|0.00|3.13| +39|2023-10-06T21:18:05.9980000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3950|10000|||99.26|98.99|0.00|3.10| +261|2023-10-06T21:18:05.4800000-07:00|Change|10FF0006||||||| +37|2023-10-06T21:18:06.0870000-07:00|40022472|Zeromus|00019D8B|16148128||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:06.0870000-07:00|40022C1F|Automaton Queen|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06| +20|2023-10-06T21:18:06.0870000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.97|100.34|0.00|-1.24| +21|2023-10-06T21:18:06.0870000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|726003|27BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16155884|40478540|10000|10000|||100.00|80.10|0.00|0.00|68424|90216|10000|10000|||100.11|100.72|0.00|-3.14|00019D94|0|1| +37|2023-10-06T21:18:06.1320000-07:00|40022472|Zeromus|00019D90|16130233|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|04|40924DCE|| +26|2023-10-06T21:18:06.1320000-07:00|35D|Wildfire|4.57|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|04|40478540|90216| +37|2023-10-06T21:18:06.1320000-07:00|40022472|Zeromus|00019D91|16130162||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:06.1760000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|AFD00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16155884|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.72|98.44|0.00|3.13|00019D95|0|1| +38|2023-10-06T21:18:06.1760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:06.1760000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:18:06.2650000-07:00|40022472|Zeromus|00019D93|16126000||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:06.2650000-07:00|40022C1D|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|150003|14060000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|16130162|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04|00019D96|0|1| +37|2023-10-06T21:18:06.3540000-07:00|40022472|Zeromus|00019D8C|16108754||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:05.9030000-07:00|Change|10FF0009||||||||||||||||||||||||||| +37|2023-10-06T21:18:06.3970000-07:00|40022472|Zeromus|00019D92|16104832||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:06.3970000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.06|98.23|0.00|-3.13| +21|2023-10-06T21:18:06.4880000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|10A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16104832|40478540|10000|10000|||100.00|80.10|0.00|0.00|50991|81541|1000|10000|||100.85|99.23|0.00|-3.13|00019D97|0|1| +21|2023-10-06T21:18:06.6220000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16104832|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||100.01|98.32|0.00|-3.14|00019D98|0|1| +31|2023-10-06T21:18:06.6220000-07:00|10FF0001||||| +37|2023-10-06T21:18:06.7100000-07:00|40022472|Zeromus|00019D94|16094660||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:06.2250000-07:00|Change|40022C1B||||||||| +21|2023-10-06T21:18:06.8000000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|750003|749D0000|4|26828000|0|0|0|0|0|0|0|0|0|0|0|0|16104832|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||100.01|98.32|0.00|-3.14|00019D99|0|1| +38|2023-10-06T21:18:06.8000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:06.8000000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:18:06.8000000-07:00|10FF0001||||| +21|2023-10-06T21:18:06.8440000-07:00|40022C1F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|32A20000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|16094660|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06|00019D9A|0|1| +261|2023-10-06T21:18:06.4160000-07:00|Change|10FF0001||| +21|2023-10-06T21:18:06.8900000-07:00|40022472|Zeromus|8B66|Void Bio|40022472|Zeromus|1B|8B668000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16094660|40478540|10000|10000|||100.00|80.10|0.00|0.00|16094660|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019D9B|0|1| +261|2023-10-06T21:18:06.4160000-07:00|Change|40022472||||||||||||| +261|2023-10-06T21:18:06.4160000-07:00|Change|40022C1B||||||||| +21|2023-10-06T21:18:06.9340000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|229A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16094660|40478540|10000|10000|||100.00|80.10|0.00|0.00|68424|90216|10000|10000|||100.08|100.55|0.00|-3.11|00019D9C|0|1| +21|2023-10-06T21:18:06.9340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AD50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16094660|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D9D|0|1| +38|2023-10-06T21:18:06.9340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|68424|90216|10000|10000|11||100.08|100.55|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:06.9340000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +39|2023-10-06T21:18:06.9790000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13| +37|2023-10-06T21:18:07.0230000-07:00|40022472|Zeromus|00019D97|16094394||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:07.0230000-07:00|40022C1D|Demi-Phoenix|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +21|2023-10-06T21:18:07.0230000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|19010000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|16094660|40478540|10000|10000|||100.00|80.10|0.00|0.00|62306|81177|4080|10000|||99.87|100.42|0.00|3.14|00019D9E|0|1| +37|2023-10-06T21:18:07.1130000-07:00|40022472|Zeromus|00019D95|16049386||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:07.1560000-07:00|40022472|Zeromus|00019D98|16047136||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:07.2010000-07:00|40022C1E|Bunshin|75608|78475|10000|10000|||100.20|100.54|0.00|-3.13| +24|2023-10-06T21:18:07.2010000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7E5|68424|90216|10000|10000|||100.08|100.54|0.00|-3.14|10FF0008|Kokosaze Lulusaze|0|68424|90216|10000|10000|||100.08|100.54|0.00|-3.14| +38|2023-10-06T21:18:07.2010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|70445|90216|10000|10000|11||100.08|100.54|0.00|-3.14|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:06.7350000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:18:07.2460000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|7B5|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|10FF0006|Wowobora Gogobora|0|81809|81809|3950|10000|||99.26|98.99|0.00|3.10| +38|2023-10-06T21:18:07.2460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:18:07.2900000-07:00|40022472|Zeromus|00019D96|16042010||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:07.3800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7E4|50991|81541|1000|10000|||100.85|99.29|0.00|-3.10|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +38|2023-10-06T21:18:07.3800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|53011|81541|1000|10000|30||100.85|99.29|0.00|-3.10|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:06.9680000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:18:06.9680000-07:00|Change|40022C1E||| +37|2023-10-06T21:18:07.4690000-07:00|40022472|Zeromus|00019D9D|16039237||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:07.4690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|166D|129844|129844|10000|10000|||99.72|98.44|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.72|98.44|0.00|3.13| +24|2023-10-06T21:18:07.4690000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2CF9|81809|81809|3950|10000|||99.26|98.99|0.00|3.10|10FF0006|Wowobora Gogobora|0|81809|81809|3950|10000|||99.26|98.99|0.00|3.10| +38|2023-10-06T21:18:07.4690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:07.4690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3950|10000|12||99.26|98.99|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:18:07.5140000-07:00|10FF0009|Zewo Negiwo|HoT|0|911|62306|81177|3680|10000|||99.87|100.42|0.00|3.14|10FF0006|Wowobora Gogobora|0|81809|81809|3950|10000|||99.26|98.99|0.00|3.10| +38|2023-10-06T21:18:07.5140000-07:00|10FF0009|Zewo Negiwo|005A5A18|64627|81177|4230|10000|0||99.87|100.42|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:07.5580000-07:00|40022472|Zeromus|00019D9C|16030379|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|05|40495803|| +26|2023-10-06T21:18:07.5580000-07:00|35D|Wildfire|3.15|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|05|40478540|90216| +24|2023-10-06T21:18:07.5580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7C3|129071|129071|5800|10000|||100.01|98.32|0.00|-3.14|40022C1D|Demi-Phoenix|0|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +21|2023-10-06T21:18:07.5580000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|31910000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|16042010|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019D9F|0|1| +38|2023-10-06T21:18:07.5580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:07.5580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:07.5580000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:18:07.6030000-07:00|40022472|Zeromus|00019D9A|16017417||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:07.6030000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|22200000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|70445|90216|10000|10000|||100.08|100.54|0.00|-3.14|73956|77430|10000|10000|||100.05|98.22|0.00|1.85|00019DA0|0|1| +21|2023-10-06T21:18:07.6030000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70445|90216|10000|10000|||100.08|100.54|0.00|-3.14|70445|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DA1|0|1| +38|2023-10-06T21:18:07.6030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|70445|90216|10000|10000|11||100.08|100.54|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:07.6030000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T21:18:07.6470000-07:00|40022C1E|Bunshin|4407|Aeolian Edge|40022472|Zeromus|714003|155D0000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|16030379|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||100.20|100.54|0.00|-3.13|00019DA2|0|1| +261|2023-10-06T21:18:07.1770000-07:00|Change|40022C1E||| +37|2023-10-06T21:18:07.6910000-07:00|40022472|Zeromus|00019D99|15987564||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:07.6910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|53011|81541|1000|10000|30||100.85|99.29|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:07.6910000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:18:07.6910000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53011|81541|1000|10000|||100.85|99.29|0.00|-3.10|53011|81541|1000|10000|||100.85|99.29|0.00|-3.10|00019DA3|0|1| +21|2023-10-06T21:18:07.7800000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|156003|864A0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16017417|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3950|10000|||99.26|98.99|0.00|3.10|00019DA4|0|1| +261|2023-10-06T21:18:07.2670000-07:00|Change|10FF0006||| +21|2023-10-06T21:18:07.8250000-07:00|40022C1D|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|152003|21430000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|15987564|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04|00019DA5|0|1| +21|2023-10-06T21:18:08.0480000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E4D0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.72|98.44|0.00|3.13|15987564|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019DA6|0|1| +03|2023-10-06T21:18:07.5520000-07:00|40022C37|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||82.00|80.30|0.00|0.00| +03|2023-10-06T21:18:07.5520000-07:00|40022C39|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||86.00|80.30|0.00|0.00| +261|2023-10-06T21:18:07.5520000-07:00|Add|40022C37||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:07.5520000-07:00|Add|40022C39||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:07.5520000-07:00|Change|40022C37||| +261|2023-10-06T21:18:07.5520000-07:00|Change|40022C39||| +37|2023-10-06T21:18:08.0920000-07:00|40022472|Zeromus|00019D9F|15974875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:08.1810000-07:00|40022472|Zeromus|00019DA2|15969406||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:08.2260000-07:00|10FF0008|Kokosaze Lulusaze|00019DA1|70445|90216|10000|10000|11||100.08|100.54|0.00|-3.14|1F00|0|0|01|05000353|0|40A00000|| +37|2023-10-06T21:18:08.2260000-07:00|10FF0004|Buhojaqe Zijaqe|00019DA3|53011|81541|3000|10000|30||100.85|99.29|0.00|-3.10|1C00|0|0|0| +38|2023-10-06T21:18:08.2260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|70445|90216|10000|10000|11||100.08|100.54|0.00|-3.14|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:07.7850000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:18:07.8950000-07:00|Change|10FF0009||| +20|2023-10-06T21:18:08.2700000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.85|99.29|0.00|-3.10| +37|2023-10-06T21:18:08.3150000-07:00|40022472|Zeromus|00019D9E|15963005||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:08.3150000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|135A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15969406|40478540|10000|10000|||100.00|80.10|0.00|0.00|70445|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DA7|0|1| +37|2023-10-06T21:18:08.4040000-07:00|10FF0008|Kokosaze Lulusaze|00019DA0|79181||||||100.08|100.54|0.00|-3.14| +21|2023-10-06T21:18:08.4040000-07:00|40022C1F|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|32390000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|15969406|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06|00019DA8|0|1| +21|2023-10-06T21:18:08.4500000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|726003|C7FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15969406|40478540|10000|10000|||100.00|80.10|0.00|0.00|70445|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DA9|0|1| +26|2023-10-06T21:18:08.4500000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:18:08.4500000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|752003|46C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15969406|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3650|10000|||99.26|98.99|0.00|3.10|00019DAA|0|1| +38|2023-10-06T21:18:08.4500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79181|90216|10000|10000|11||100.08|100.54|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:08.4500000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:18:08.0150000-07:00|Add|40022C3A||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:18:08.0150000-07:00|40022C3A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||90.00|80.30|0.00|0.00| +261|2023-10-06T21:18:08.0150000-07:00|Change|40022C3A||| +21|2023-10-06T21:18:08.4940000-07:00|10FF0009|Zewo Negiwo|4097|Afflatus Misery|40022472|Zeromus|750003|60DF0000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|15963005|40478540|10000|10000|||100.00|80.10|0.00|0.00|64627|81177|4230|10000|||99.87|100.42|0.00|3.14|00019DAB|0|1| +38|2023-10-06T21:18:08.5380000-07:00|10FF0009|Zewo Negiwo|005A5A18|64627|81177|4230|10000|0||99.87|100.42|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:08.5380000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +39|2023-10-06T21:18:08.6270000-07:00|10FF0009|Zewo Negiwo|65438|81177|4451|10000|||99.87|100.42|0.00|3.14| +21|2023-10-06T21:18:08.6270000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|82E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15963005|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.72|98.44|0.00|3.13|00019DAC|0|1| +38|2023-10-06T21:18:08.6270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:08.6270000-07:00|499|Inner Release|4.58|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +39|2023-10-06T21:18:08.7160000-07:00|10FF0008|Kokosaze Lulusaze|80083|90216|10000|10000|||100.08|100.54|0.00|-3.14| +261|2023-10-06T21:18:08.3210000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T21:18:08.7610000-07:00|40022472|Zeromus|DoT|0|1672|15963005|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|5800|10000|||100.01|98.32|0.00|-3.14| +21|2023-10-06T21:18:08.7610000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15963005|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3650|10000|||99.26|98.99|0.00|3.10|00019DAD|0|1| +38|2023-10-06T21:18:08.7610000-07:00|40022472|Zeromus|005A5A00|15957259|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:18:08.3210000-07:00|Change|40022C37||| +37|2023-10-06T21:18:08.8510000-07:00|40022472|Zeromus|00019DA5|15948744||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:08.8510000-07:00|10FF0007|Kehabiqo Febiqo|00019DA6|113895||||||99.72|98.44|0.00|3.13| +37|2023-10-06T21:18:08.8510000-07:00|40022472|Zeromus|00019DA4|15914366||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:18:08.8510000-07:00|3458|3| +261|2023-10-06T21:18:08.3210000-07:00|Add|40022C3B||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:08.3210000-07:00|Add|40022C3C||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:18:08.4150000-07:00|40022C3B|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||94.00|80.30|0.00|0.31| +03|2023-10-06T21:18:08.4150000-07:00|40022C3C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||98.00|80.30|0.00|0.00| +39|2023-10-06T21:18:08.8960000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6000|10000|||100.01|98.32|0.00|-3.14| +39|2023-10-06T21:18:08.8960000-07:00|10FF0004|Buhojaqe Zijaqe|53826|81541|3200|10000|||100.85|99.29|0.00|-3.10| +21|2023-10-06T21:18:08.8960000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|89B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15914366|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||100.01|98.32|0.00|-3.14|00019DAE|0|1| +31|2023-10-06T21:18:08.8960000-07:00|10FF0001||||| +261|2023-10-06T21:18:08.4150000-07:00|Change|10FF0001||| +261|2023-10-06T21:18:08.4150000-07:00|Change|40022C3B||| +261|2023-10-06T21:18:08.4150000-07:00|Change|40022C3C||| +39|2023-10-06T21:18:08.9840000-07:00|10FF0007|Kehabiqo Febiqo|115193|129844|10000|10000|||99.72|98.44|0.00|3.13| +39|2023-10-06T21:18:08.9840000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3850|10000|||99.26|98.99|0.00|3.10| +261|2023-10-06T21:18:08.5090000-07:00|Change|10FF0006||| +38|2023-10-06T21:18:09.0300000-07:00|40022C1F|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.88|102.46|0.00|-3.06|0|0|0|||||||||| +26|2023-10-06T21:18:09.0300000-07:00|30|Well Fed|1377.19|10FF0008|Kokosaze Lulusaze|40022C1F|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:18:09.0300000-07:00|A8F|Searing Light|16.59|10FF0006|Wowobora Gogobora|40022C1F|Automaton Queen|00|85668|81809| +26|2023-10-06T21:18:09.0300000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022C1F|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:18:08.5090000-07:00|Change|40022C39||||||||| +37|2023-10-06T21:18:09.0750000-07:00|40022472|Zeromus|00019DAB|15889567||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:09.0750000-07:00|40022472|Zeromus|00019DA7|15884613||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:09.0750000-07:00|40022C1F|Automaton Queen|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06| +21|2023-10-06T21:18:09.0750000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80083|90216|10000|10000|||100.08|100.54|0.00|-3.14|80083|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DAF|0|1| +21|2023-10-06T21:18:09.1200000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|13FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15884613|40478540|10000|10000|||100.00|80.10|0.00|0.00|115193|129844|10000|10000|||99.72|98.44|0.00|3.13|00019DB0|0|1| +21|2023-10-06T21:18:09.1200000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15884613|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019DB1|0|1| +37|2023-10-06T21:18:09.1640000-07:00|40022472|Zeromus|00019DA8|15871756||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:09.2090000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33AE0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|15871756|40478540|10000|10000|||100.00|80.10|0.00|0.00|53826|81541|3200|10000|||100.85|99.29|0.00|-3.10|00019DB2|0|1| +37|2023-10-06T21:18:09.2540000-07:00|40022472|Zeromus|00019DAC|15838248||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:09.2990000-07:00|40022472|Zeromus|00019DAD|15838161||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:09.2990000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|18E30000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|15871756|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||100.01|98.32|0.00|-3.14|00019DB3|0|1| +261|2023-10-06T21:18:08.8570000-07:00|Add|40022C3D||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:18:08.8570000-07:00|40022C3D|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||102.00|80.30|0.00|0.00| +261|2023-10-06T21:18:08.8570000-07:00|Change|40022C3A||||||||| +261|2023-10-06T21:18:08.8570000-07:00|Change|40022C3D||| +37|2023-10-06T21:18:09.3870000-07:00|40022472|Zeromus|00019DAA|15820044||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:09.3870000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|1.23| +261|2023-10-06T21:18:08.9790000-07:00|Change|10FF0009||| +37|2023-10-06T21:18:09.4310000-07:00|40022472|Zeromus|00019DAE|15817841||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:09.4310000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|754003|32310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15820044|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3850|10000|||99.26|98.99|0.00|3.10|00019DB4|0|1| +38|2023-10-06T21:18:09.4310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3850|10000|12||99.26|98.99|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:09.4310000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +37|2023-10-06T21:18:09.6080000-07:00|40022472|Zeromus|00019DA9|15766645|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|06|3F8C28DD|| +26|2023-10-06T21:18:09.6080000-07:00|35D|Wildfire|1.09|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|90216| +37|2023-10-06T21:18:09.6540000-07:00|40022472|Zeromus|00019DB0|15761528||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:09.6540000-07:00|40022472|Zeromus|00019DB1|15759243||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:09.1840000-07:00|Add|40022C3E||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:09.1840000-07:00|Add|40022C3F||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:18:09.1840000-07:00|40022C3F|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||110.00|80.30|0.00|0.00| +03|2023-10-06T21:18:09.1840000-07:00|40022C3E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||106.00|80.30|0.00|0.00| +21|2023-10-06T21:18:09.6980000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|712003|289D0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|15766645|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019DB5|0|1| +261|2023-10-06T21:18:09.2760000-07:00|Change|40022C3F||| +261|2023-10-06T21:18:09.2760000-07:00|Change|40022C3E||| +21|2023-10-06T21:18:09.7420000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1ACB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15759243|40478540|10000|10000|||100.00|80.10|0.00|0.00|80083|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DB6|0|1| +261|2023-10-06T21:18:09.2760000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T21:18:09.3770000-07:00|Change|40022C37||||||||| +261|2023-10-06T21:18:09.3770000-07:00|Change|40022C1E||| +37|2023-10-06T21:18:09.9210000-07:00|40022472|Zeromus|00019DB3|15752872||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:09.9660000-07:00|40022C1F|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|734003|6AC60000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|15752872|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06|00019DB7|0|1| +37|2023-10-06T21:18:10.0110000-07:00|40022472|Zeromus|00019DB2|15739642||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:10.0110000-07:00|40022C1D|Demi-Phoenix|74223|77698|10000|10000|||101.98|98.92|0.00|-3.04| +39|2023-10-06T21:18:10.0110000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13| +38|2023-10-06T21:18:10.0110000-07:00|40022C1D|Demi-Phoenix|005A5A00|0|77698|0|10000|0||101.98|98.92|0.00|-3.04|0|0|0|||| +30|2023-10-06T21:18:10.0110000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022C1D|Demi-Phoenix|00|77698|81809| +261|2023-10-06T21:18:09.5790000-07:00|Change|40022C1D||||| +38|2023-10-06T21:18:10.0560000-07:00|40022C42||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:18:10.0560000-07:00|40022C42||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:18:10.1000000-07:00|40022472|Zeromus|00019DB5|15729245||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:09.6890000-07:00|Add|40022C42||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:09.6890000-07:00|Add|40022C41||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:09.6890000-07:00|Add|40022C40||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:18:09.6890000-07:00|40022C41|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|80.30|0.00|0.00| +03|2023-10-06T21:18:09.6890000-07:00|40022C40|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||114.00|80.30|0.00|0.00| +261|2023-10-06T21:18:09.8050000-07:00|Change|40022C39||||| +261|2023-10-06T21:18:09.8050000-07:00|Remove|40022C1E| +261|2023-10-06T21:18:09.8050000-07:00|Change|40022C41||| +261|2023-10-06T21:18:09.8050000-07:00|Change|40022C40||| +261|2023-10-06T21:18:09.8050000-07:00|Change|40022C42||| +03|2023-10-06T21:18:09.8050000-07:00|40022C42|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.34|97.24|0.00|-0.04| +24|2023-10-06T21:18:10.2340000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|756|80083|90216|10000|10000|||100.08|100.54|0.00|-3.14|10FF0008|Kokosaze Lulusaze|0|80083|90216|10000|10000|||100.08|100.54|0.00|-3.14| +38|2023-10-06T21:18:10.2340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81961|90216|10000|10000|11||100.08|100.54|0.00|-3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:18:10.2790000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|CA3|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|10FF0006|Wowobora Gogobora|0|81809|81809|3850|10000|||99.26|98.99|0.00|3.10| +20|2023-10-06T21:18:10.2790000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|99.26|98.99|0.00|3.10| +21|2023-10-06T21:18:10.2790000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|714003|4C4B0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|15729245|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||100.01|98.32|0.00|-3.14|00019DB8|0|1| +38|2023-10-06T21:18:10.2790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:18:10.3220000-07:00|10FF0009|Zewo Negiwo|005A5A18|65438|81177|4451|10000|0||99.53|100.44|0.00|-1.81|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:10.3220000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:18:09.9150000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:18:09.9150000-07:00|Change|40022C3A||||| +37|2023-10-06T21:18:10.3670000-07:00|40022472|Zeromus|00019DB4|15716396||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:10.4120000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7A5|53826|81541|2800|10000|||100.74|99.33|0.00|-1.56|10FF0004|Buhojaqe Zijaqe|0|53826|81541|2800|10000|||100.74|99.33|0.00|-1.56| +38|2023-10-06T21:18:10.4120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55783|81541|2800|10000|30||100.74|99.33|0.00|-1.56|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:18:10.4560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115193|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:10.4560000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +24|2023-10-06T21:18:10.5010000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|7B9|115193|129844|10000|10000|||99.72|98.44|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|115193|129844|10000|10000|||99.72|98.44|0.00|3.13| +24|2023-10-06T21:18:10.5010000-07:00|10FF0006|Wowobora Gogobora|HoT|0|275B|81809|81809|3850|10000|||99.26|98.99|0.00|3.10|10FF0006|Wowobora Gogobora|0|81809|81809|3850|10000|||99.26|98.99|0.00|3.10| +38|2023-10-06T21:18:10.5010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117170|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:10.5010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3850|10000|12||99.26|98.99|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:18:10.5450000-07:00|40022472|Zeromus|00019DB6|15709537||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:10.1520000-07:00|Change|40022C3B||||||| +24|2023-10-06T21:18:10.5900000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|754|129071|129071|6000|10000|||100.01|98.32|0.00|-3.14|40022C1D|Demi-Phoenix|0|0|77698|0|10000|||101.98|98.92|0.00|-3.04| +38|2023-10-06T21:18:10.5900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3850|10000|12||99.26|98.99|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:10.5900000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:18:10.5900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6000|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:10.5900000-07:00|10FF0003|Gegehi Gehi|005A5A23|14762|73814|2000|10000|0||100.49|99.94|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:18:10.5900000-07:00|94|Raise|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|08|73814|81177| +26|2023-10-06T21:18:10.5900000-07:00|2B|Weakness|100.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +26|2023-10-06T21:18:10.5900000-07:00|1A2|Transcendent|5.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T21:18:10.1520000-07:00|Change|10FF0003||||| +261|2023-10-06T21:18:10.1520000-07:00|Change|10FF0003||||| +37|2023-10-06T21:18:10.6340000-07:00|40022472|Zeromus|00019DB8|15690006||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:10.6340000-07:00|10FF0001|Sesuga Sapisuga|00019DB8|129071|129071|6500|10000|8||100.01|98.32|0.00|-3.14|1300|0|0|0| +21|2023-10-06T21:18:10.6340000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15709537|40478540|10000|10000|||100.00|80.10|0.00|0.00|55783|81541|2800|10000|||100.70|99.35|-0.01|-1.27|00019DB9|0|1| +261|2023-10-06T21:18:10.2420000-07:00|Change|10FF0001||| +24|2023-10-06T21:18:10.6790000-07:00|40022472|Zeromus|DoT|35D|DAC6|15709537|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|81961|90216|10000|10000|||100.08|100.54|0.00|-3.14| +20|2023-10-06T21:18:10.6790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.70|99.35|-0.01|-1.27| +38|2023-10-06T21:18:10.6790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81961|90216|10000|10000|11||100.08|100.54|0.00|-3.14|0|0|0|||||||||||||||| +30|2023-10-06T21:18:10.6790000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:18:10.6790000-07:00|40022472|Zeromus|005A5A00|15634000|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:18:10.6790000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|90216| +261|2023-10-06T21:18:10.3350000-07:00|Change|10FF0004||||||||||||||||||| +20|2023-10-06T21:18:10.9010000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.32|100.45|0.00|-1.48| +261|2023-10-06T21:18:10.4310000-07:00|Change|10FF0009||||||||||||||||||| +21|2023-10-06T21:18:10.9910000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|726003|42630000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|15634000|40478540|10000|10000|||100.00|80.10|0.00|0.00|81961|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DBA|0|1| +21|2023-10-06T21:18:10.9910000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15634000|40478540|10000|10000|||100.00|80.10|0.00|0.00|81961|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DBB|0|1| +21|2023-10-06T21:18:11.0800000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|85030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15634000|40478540|10000|10000|||100.00|80.10|0.00|0.00|117170|129844|10000|10000|||99.72|98.44|0.00|3.13|00019DBC|0|1| +21|2023-10-06T21:18:11.0800000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3F870000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|117170|129844|10000|10000|||99.72|98.44|0.00|3.13|15634000|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019DBD|0|1| +34|2023-10-06T21:18:11.0800000-07:00|40022C42|Carbuncle|40022C42|Carbuncle|01| +38|2023-10-06T21:18:11.0800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117170|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:11.0800000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T21:18:10.6370000-07:00|Change|40022C42||| +37|2023-10-06T21:18:11.1680000-07:00|40022472|Zeromus|00019DB9|15633837||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:11.1680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|AB10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15634000|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||100.01|98.32|0.00|-3.14|00019DBE|0|1| +31|2023-10-06T21:18:11.1680000-07:00|10FF0001||||| +37|2023-10-06T21:18:11.2560000-07:00|40022472|Zeromus|00019DB7|15606503||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:11.2560000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15180000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|117170|129844|10000|10000|||99.72|98.44|0.00|3.13|73956|77430|10000|10000|||100.05|98.22|0.00|-2.43|00019DBF|0|1| +261|2023-10-06T21:18:10.8690000-07:00|Change|40022C1B||||||||| +21|2023-10-06T21:18:11.2570000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|756003|4CE10000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|15633837|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3850|10000|||99.26|98.99|0.00|3.10|00019DC0|0|1| +38|2023-10-06T21:18:11.2570000-07:00|40022C1F|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.88|102.46|0.00|-3.06|0|0|0||||||| +30|2023-10-06T21:18:11.2570000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022C1F|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:18:10.8690000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T21:18:11.3010000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|85F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15633837|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019DC1|0|1| +261|2023-10-06T21:18:10.9880000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:18:11.5230000-07:00|10FF0003|Gegehi Gehi|15500|73814|2200|10000|||100.49|99.94|0.00|0.00| +261|2023-10-06T21:18:11.1060000-07:00|Change|10FF0003||| +261|2023-10-06T21:18:11.2020000-07:00|Change|40022C1B||||||||| +39|2023-10-06T21:18:11.6130000-07:00|10FF0009|Zewo Negiwo|66249|81177|4672|10000|||99.32|100.45|0.00|3.11| +21|2023-10-06T21:18:11.6130000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|18970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15606503|40478540|10000|10000|||100.00|80.10|0.00|0.00|81961|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DC2|0|1| +21|2023-10-06T21:18:11.6130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|756003|6BC20000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|15606503|40478540|10000|10000|||100.00|80.10|0.00|0.00|55783|81541|2800|10000|||100.69|99.35|0.00|-3.11|00019DC3|0|1| +37|2023-10-06T21:18:11.7020000-07:00|40022472|Zeromus|00019DBE|15603766||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:11.7020000-07:00|10FF0008|Kokosaze Lulusaze|82863|90216|10000|10000|||100.08|100.54|0.00|-3.14| +37|2023-10-06T21:18:11.7470000-07:00|40022472|Zeromus|00019DBC|15569715||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:11.7470000-07:00|40022472|Zeromus|00019DBA|15552720||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:11.7470000-07:00|40022472|Zeromus|00019DBB|15550399||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:11.7470000-07:00|40022472|Zeromus|DoT|0|1AE1|15606503|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6500|10000|||100.01|98.32|0.00|-3.14| +38|2023-10-06T21:18:11.7470000-07:00|40022472|Zeromus|005A5A00|15543518|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:18:11.7920000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|27130000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|15543518|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||100.01|98.32|0.00|-3.14|00019DC4|0|1| +37|2023-10-06T21:18:11.8360000-07:00|40022472|Zeromus|00019DC1|15541375||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:11.8360000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|17360000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|15543518|40478540|10000|10000|||100.00|80.10|0.00|0.00|66249|81177|4672|10000|||99.32|100.45|0.00|3.11|00019DC5|0|1| +261|2023-10-06T21:18:11.4010000-07:00|Change|40022C40||||||||| +261|2023-10-06T21:18:11.4010000-07:00|Change|40022C3C||| +261|2023-10-06T21:18:11.4010000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:18:11.8810000-07:00|10FF0007|Kehabiqo Febiqo|00019DBD|100907||||||99.72|98.44|0.00|3.13| +39|2023-10-06T21:18:11.8810000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6700|10000|||100.01|98.32|0.00|-3.14| +39|2023-10-06T21:18:11.8810000-07:00|10FF0004|Buhojaqe Zijaqe|56598|81541|2600|10000|||100.69|99.35|0.00|-3.11| +21|2023-10-06T21:18:11.8810000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2C180000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|15543518|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019DC6|0|1| +36|2023-10-06T21:18:11.8810000-07:00|3534|3| +261|2023-10-06T21:18:11.4010000-07:00|Change|10FF0001||| +38|2023-10-06T21:18:11.9700000-07:00|40022C1F|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.88|102.46|0.00|-3.06|0|0|0|||||||||| +26|2023-10-06T21:18:11.9700000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022C1F|Automaton Queen|01|85668|40478540| +39|2023-10-06T21:18:11.9700000-07:00|10FF0007|Kehabiqo Febiqo|102205|129844|10000|10000|||99.72|98.44|0.00|3.13| +21|2023-10-06T21:18:12.0150000-07:00|40022C1F|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|730003|62660000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|15541375|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06|00019DC7|0|1| +39|2023-10-06T21:18:12.0150000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3750|10000|||99.26|98.99|0.00|3.10| +37|2023-10-06T21:18:12.0610000-07:00|10FF0007|Kehabiqo Febiqo|00019DBF|107605||||||99.72|98.44|0.00|3.13| +37|2023-10-06T21:18:12.0610000-07:00|40022472|Zeromus|00019DC0|15521694||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:12.0610000-07:00|40022C1F|Automaton Queen|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06| +21|2023-10-06T21:18:12.1040000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|D020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15541375|40478540|10000|10000|||100.00|80.10|0.00|0.00|15500|73814|2200|10000|||100.49|99.94|0.00|0.00|00019DC8|0|1| +21|2023-10-06T21:18:12.1040000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15541375|40478540|10000|10000|||100.00|80.10|0.00|0.00|15500|73814|2200|10000|||100.49|99.94|0.00|0.00|00019DC9|0|1| +261|2023-10-06T21:18:11.6890000-07:00|Change|40022C41||||||||| +38|2023-10-06T21:18:12.1040000-07:00|10FF0003|Gegehi Gehi|005A5A23|15500|73814|2200|10000|0||100.49|99.94|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:18:12.1040000-07:00|1A2|Transcendent|0.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T21:18:11.6890000-07:00|Change|40022C3D||||||||| +261|2023-10-06T21:18:11.9150000-07:00|Change|10FF0006||| +37|2023-10-06T21:18:12.2380000-07:00|40022472|Zeromus|00019DC2|15515399||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:12.2380000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82863|90216|10000|10000|||100.08|100.54|0.00|-3.14|82863|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DCA|0|1| +38|2023-10-06T21:18:12.2380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|82863|90216|10000|10000|11||100.08|100.54|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:18:12.2380000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:18:12.2820000-07:00|40022472|Zeromus|00019DC6|15504111||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:12.3260000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3750|10000|12||99.26|98.99|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:12.3260000-07:00|A91|Undying Flame|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:18:11.9150000-07:00|Change|40022C3E||||||||| +261|2023-10-06T21:18:11.9150000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:18:12.4150000-07:00|40022472|Zeromus|00019DC3|15476525||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:12.4150000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-1.01| +21|2023-10-06T21:18:12.5040000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|D360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15476525|40478540|10000|10000|||100.00|80.10|0.00|0.00|107605|129844|10000|10000|||99.72|98.44|0.00|3.13|00019DCB|0|1| +37|2023-10-06T21:18:12.5480000-07:00|40022472|Zeromus|00019DC4|15466522||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:12.5480000-07:00|10FF0001|Sesuga Sapisuga|00019DC4|129071|129071|7700|10000|8||100.01|98.32|0.00|-3.14|1300|0|0|0| +261|2023-10-06T21:18:12.1520000-07:00|Change|40022C3F||||||||| +37|2023-10-06T21:18:12.6380000-07:00|40022472|Zeromus|00019DC9|15466521||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:12.7270000-07:00|40022472|Zeromus|00019DC8|15463191||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:12.7720000-07:00|10FF0009|Zewo Negiwo|1D08|Divine Benison|10FF0003|Gegehi Gehi|6A0E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|15500|73814|2200|10000|||100.48|99.93|-0.02|-3.12|66249|81177|4272|10000|||99.32|100.45|0.00|3.11|00019DCC|0|1| +21|2023-10-06T21:18:12.7720000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|15463191|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3750|10000|||99.26|98.99|0.00|3.10|00019DCD|0|1| +38|2023-10-06T21:18:12.7720000-07:00|40022C42|Carbuncle|005A5A00|0|77698|0|10000|0||99.34|97.24|0.00|-0.04|0|0|0|||| +26|2023-10-06T21:18:12.7720000-07:00|30|Well Fed|1380.51|10FF0006|Wowobora Gogobora|40022C42|Carbuncle|2964|77698|81809| +261|2023-10-06T21:18:12.3490000-07:00|Change|40022C42||| +261|2023-10-06T21:18:12.3490000-07:00|Change|40022C42||| +38|2023-10-06T21:18:12.8170000-07:00|40022C45||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:18:12.8170000-07:00|40022C45||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:18:12.8610000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|722003|1DEE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15463191|40478540|10000|10000|||100.00|80.10|0.00|0.00|15500|73814|2200|10000|||100.48|99.93|-0.02|-3.12|00019DCE|0|1| +03|2023-10-06T21:18:12.3490000-07:00|40022C45|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||100.96|100.81|0.00|3.10| +261|2023-10-06T21:18:12.3490000-07:00|Change|40022C3C||||||||| +261|2023-10-06T21:18:12.3490000-07:00|Change|10FF0004||||||| +261|2023-10-06T21:18:12.3490000-07:00|Add|40022C45||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:18:12.9050000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15463191|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3750|10000|||99.26|98.99|0.00|3.10|00019DCF|0|1| +261|2023-10-06T21:18:12.4510000-07:00|Change|10FF0001||| +261|2023-10-06T21:18:12.4510000-07:00|Change|40022C45||||| +261|2023-10-06T21:18:12.4510000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:18:12.4510000-07:00|Change|40022490||||||||| +39|2023-10-06T21:18:12.9950000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13| +37|2023-10-06T21:18:13.0390000-07:00|40022472|Zeromus|00019DCB|15459809||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:13.0390000-07:00|40022472|Zeromus|8B46|Visceral Whirl|40022472|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:13.0390000-07:00|4002248F|Zeromus|8B47|Visceral Whirl|4002248F|Zeromus|8.500|119.90|80.10|0.00|-0.79| +20|2023-10-06T21:18:13.0390000-07:00|40022490|Zeromus|8B48|Visceral Whirl|40022490|Zeromus|8.500|80.10|80.10|0.00|0.79| +261|2023-10-06T21:18:12.5480000-07:00|Change|40022472||||||||||||| +261|2023-10-06T21:18:12.5480000-07:00|Change|40022C41||||| +261|2023-10-06T21:18:12.6590000-07:00|Change|40022C39||||||||| +37|2023-10-06T21:18:13.1280000-07:00|40022472|Zeromus|00019DC5|15453867||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:12.6590000-07:00|Change|40022C3D||||||| +24|2023-10-06T21:18:13.2180000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7DA|82863|90216|10000|10000|||100.08|100.54|0.00|-3.14|10FF0008|Kokosaze Lulusaze|0|82863|90216|10000|10000|||100.08|100.54|0.00|-3.14| +20|2023-10-06T21:18:13.2180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.69|99.14|0.00|-3.13| +38|2023-10-06T21:18:13.2180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107605|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:13.2180000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:18:13.2180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|84873|90216|10000|10000|11||100.08|100.54|0.00|-3.14|0|0|0||||||||||||||||||| +24|2023-10-06T21:18:13.2630000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|7B8|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|10FF0006|Wowobora Gogobora|0|81809|81809|3750|10000|||99.26|98.99|0.00|3.10| +38|2023-10-06T21:18:13.2630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||100.18|100.51|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:12.8830000-07:00|Change|40022C3E||||| +24|2023-10-06T21:18:13.3980000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|750|56598|81541|2600|10000|||100.69|99.14|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|56598|81541|2600|10000|||100.69|99.14|0.00|-3.13| +38|2023-10-06T21:18:13.3980000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58470|81541|2600|10000|30||100.69|99.14|0.00|-3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:18:13.4430000-07:00|40022472|Zeromus|00019DCF|15453746||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:13.4430000-07:00|40022472|Zeromus|00019DCE|15446084||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:13.4430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15453867|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||100.01|98.32|0.00|-3.14|00019DD0|0|1| +31|2023-10-06T21:18:13.4430000-07:00|10FF0001||||| +24|2023-10-06T21:18:13.4870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|C5E|107605|129844|10000|10000|||99.72|98.44|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|107605|129844|10000|10000|||99.72|98.44|0.00|3.13| +24|2023-10-06T21:18:13.4870000-07:00|10FF0006|Wowobora Gogobora|HoT|0|762|81809|81809|3750|10000|||99.26|98.99|0.00|3.10|40022C1D|Demi-Phoenix|0|0|77698|0|10000|||101.98|98.92|0.00|-3.04| +21|2023-10-06T21:18:13.4870000-07:00|10FF0009|Zewo Negiwo|4093|Afflatus Solace|10FF0003|Gegehi Gehi|200004|4CFB0000|13E|EE8000|1B|40938000|0|0|0|0|0|0|0|0|0|0|15500|73814|2200|10000|||100.48|99.93|-0.02|-3.12|66249|81177|4272|10000|||99.32|100.45|0.00|2.00|00019DD1|0|1| +26|2023-10-06T21:18:13.4870000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:18:13.4870000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|372A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15453867|40478540|10000|10000|||100.00|80.10|0.00|0.00|84873|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DD2|0|1| +21|2023-10-06T21:18:13.4870000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15453867|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019DD3|0|1| +38|2023-10-06T21:18:13.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110771|129844|10000|10000|0||99.72|98.44|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:13.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3750|10000|12||99.26|98.99|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:13.1090000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:18:13.1090000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:18:13.5760000-07:00|10FF0003|Gegehi Gehi|00019DCC|15500|73814|2200|10000|10||100.48|99.93|-0.02|-3.12|2300|0|0|01|010004C2|0|41700000|| +26|2023-10-06T21:18:13.5760000-07:00|4C2|Divine Benison|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +24|2023-10-06T21:18:13.5760000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|76D|129071|129071|7700|10000|||100.01|98.32|0.00|-3.14|40022C1D|Demi-Phoenix|0|0|77698|0|10000|||101.98|98.92|0.00|-3.04| +21|2023-10-06T21:18:13.5760000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|3AF90000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|15446084|40478540|10000|10000|||100.00|80.10|0.00|0.00|110771|129844|10000|10000|||99.72|98.44|0.00|3.13|00019DD4|0|1| +38|2023-10-06T21:18:13.5760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|8||100.01|98.32|0.00|-3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:13.5760000-07:00|10FF0003|Gegehi Gehi|005A5A23|15500|73814|2200|10000|10||100.48|99.93|-0.02|-3.12|0|0|0|||||||||| +261|2023-10-06T21:18:13.2020000-07:00|Change|40022C3F||||| +21|2023-10-06T21:18:13.6650000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15446084|40478540|10000|10000|||100.00|80.10|0.00|0.00|84873|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DD5|0|1| +21|2023-10-06T21:18:13.6650000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|724003|3C3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15446084|40478540|10000|10000|||100.00|80.10|0.00|0.00|15500|73814|2200|10000|||100.48|99.94|-0.02|-2.95|00019DD6|0|1| +261|2023-10-06T21:18:13.2020000-07:00|Remove|40022C1D| +04|2023-10-06T21:18:13.2020000-07:00|40022C1D|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|0|77698|0|10000|||101.98|98.92|0.00|-3.04| +261|2023-10-06T21:18:13.3930000-07:00|Change|40022C40||||||| +261|2023-10-06T21:18:13.3930000-07:00|Change|40022C45||| +261|2023-10-06T21:18:13.3930000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:18:13.9780000-07:00|40022472|Zeromus|00019DC7|15420894||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:13.9780000-07:00|40022472|Zeromus|00019DD0|15418731||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:13.9780000-07:00|40022C1F|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.88|102.46|0.00|-3.06|0|0|0||||||| +30|2023-10-06T21:18:13.9780000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022C1F|Automaton Queen|01|85668|40478540| +37|2023-10-06T21:18:14.0220000-07:00|10FF0003|Gegehi Gehi|00019DD1|35207||||||100.46|100.81|0.00|-2.38| +37|2023-10-06T21:18:14.0220000-07:00|40022472|Zeromus|00019DD3|15416421||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:14.0220000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44716003|68940000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|15418731|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019DD7|0|1| +261|2023-10-06T21:18:13.6810000-07:00|Change|40022C41||||| +21|2023-10-06T21:18:14.0670000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|20C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15418731|40478540|10000|10000|||100.00|80.10|0.00|0.00|84873|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DD8|0|1| +37|2023-10-06T21:18:14.1110000-07:00|40022472|Zeromus|00019DD2|15402299||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:14.1560000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|41BB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|15402299|40478540|10000|10000|||100.00|80.10|0.00|0.00|58470|81541|2600|10000|||100.69|99.14|0.00|-3.11|00019DD9|0|1| +37|2023-10-06T21:18:14.2000000-07:00|40022472|Zeromus|00019DD4|15387202||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:13.8010000-07:00|Change|40022C3D||||||| +261|2023-10-06T21:18:13.9120000-07:00|Change|40022C39||||| +21|2023-10-06T21:18:14.3780000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41716003|67810000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|15387202|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||96.12|96.29|0.00|-2.97|00019DDA|0|1| +38|2023-10-06T21:18:14.3780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|8||96.12|96.29|0.00|-2.97|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:14.3780000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:18:14.3780000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:18:14.4220000-07:00|40022472|Zeromus|00019DD5|15384795||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:14.0220000-07:00|Change|40022C3E||||| +261|2023-10-06T21:18:14.0220000-07:00|Change|40022C3A||||||| +261|2023-10-06T21:18:14.1400000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:18:14.5550000-07:00|40022472|Zeromus|00019DD7|15358023||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:14.5550000-07:00|10FF0003|Gegehi Gehi|35945|73814|2400|10000|||100.42|101.87|-0.01|-0.08| +39|2023-10-06T21:18:14.5990000-07:00|10FF0009|Zewo Negiwo|67060|81177|4493|10000|||98.91|98.99|0.00|-3.10| +261|2023-10-06T21:18:14.2530000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:18:14.2530000-07:00|Change|40022C1B||||||||| +261|2023-10-06T21:18:14.2530000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:18:14.2530000-07:00|Change|40022C3B||||| +261|2023-10-06T21:18:14.2530000-07:00|Change|40022C3F||||| +39|2023-10-06T21:18:14.7330000-07:00|10FF0008|Kokosaze Lulusaze|85775|90216|10000|10000|||100.08|100.54|0.00|-3.14| +24|2023-10-06T21:18:14.7780000-07:00|40022472|Zeromus|DoT|0|16E1|15358023|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7700|10000|||94.26|96.28|0.00|-2.97| +21|2023-10-06T21:18:14.7780000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35945|73814|2400|10000|||100.42|101.88|0.00|-0.03|35945|73814|2400|10000|||100.42|101.88|0.00|-0.03|00019DDB|0|1| +21|2023-10-06T21:18:14.7780000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|3F620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15358023|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.51|0.00|-3.13|00019DDC|0|1| +38|2023-10-06T21:18:14.7780000-07:00|40022472|Zeromus|005A5A00|15352166|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:18:14.8220000-07:00|40022472|Zeromus|00019DD6|15336744||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:14.3490000-07:00|Change|40022C42||| +261|2023-10-06T21:18:14.4490000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:18:14.8670000-07:00|40022472|Zeromus|00019DD8|15328351||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:14.8670000-07:00|40022C45|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|454003|7C480000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|15336744|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||100.96|100.81|0.00|3.10|00019DDD|0|1| +39|2023-10-06T21:18:14.8680000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7900|10000|||93.76|95.93|0.00|-2.98| +36|2023-10-06T21:18:14.8680000-07:00|3610|3| +39|2023-10-06T21:18:14.9120000-07:00|10FF0004|Buhojaqe Zijaqe|59285|81541|2400|10000|||100.69|99.14|0.00|-3.11| +261|2023-10-06T21:18:14.4490000-07:00|Change|40022C40||||| +261|2023-10-06T21:18:14.4490000-07:00|Change|40022C3C||||||| +37|2023-10-06T21:18:14.9560000-07:00|40022472|Zeromus|00019DDA|15301854||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:14.9560000-07:00|10FF0001|Sesuga Sapisuga|00019DDA|129071|129071|7900|10000|8||93.27|95.57|0.00|-2.99|1300|0|0|02|0500076E|03|41F00000|||||| +37|2023-10-06T21:18:14.9560000-07:00|40022472|Zeromus|00019DD9|15285027||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:18:14.9560000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:18:14.9560000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|299C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15328351|40478540|10000|10000|||100.00|80.10|0.00|0.00|85775|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DDE|0|1| +38|2023-10-06T21:18:14.9560000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|2.16|0|0|0|||||||||| +26|2023-10-06T21:18:14.9560000-07:00|77B|Summon Order|30.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:18:14.9560000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59285|81541|2400|10000|||100.69|99.14|0.00|-3.11|59285|81541|2400|10000|||100.69|99.14|0.00|-3.11|00019DDF|0|1| +38|2023-10-06T21:18:14.9560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|8||93.27|95.57|0.00|-2.99|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:18:15.0010000-07:00|10FF0007|Kehabiqo Febiqo|112069|129844|10000|10000|||99.50|98.44|0.00|-3.13| +39|2023-10-06T21:18:15.0010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3950|10000|||99.25|98.98|0.00|-2.86| +261|2023-10-06T21:18:14.5440000-07:00|Change|40022C37||||| +261|2023-10-06T21:18:14.5440000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:18:15.0900000-07:00|40022C1F|Automaton Queen|82193|85668|10000|10000|||101.88|102.46|0.00|-3.06| +21|2023-10-06T21:18:15.1340000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|145A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|35945|73814|2400|10000|||100.42|101.88|0.00|-0.03|73956|77430|10000|10000|||100.05|98.22|0.00|1.78|00019DE0|0|1| +21|2023-10-06T21:18:15.2680000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|27D30000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|15285027|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3950|10000|||99.22|98.96|0.00|-2.17|00019DE1|0|1| +38|2023-10-06T21:18:15.2680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3650|10000|12||99.22|98.96|0.00|-2.17|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:15.2680000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:18:15.4020000-07:00|10FF0003|Gegehi Gehi|00019DDB|35945|73814|2400|10000|10||100.42|101.88|0.00|-0.03|2300|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:18:15.4020000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:18:15.4020000-07:00|40022472|Zeromus|00019DDC|15268801||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:15.4020000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|0.94| +261|2023-10-06T21:18:15.1280000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:18:15.1280000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:18:15.5790000-07:00|40022472|Zeromus|00019DDE|15258149||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:15.5790000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15268801|40478540|10000|10000|||100.00|80.10|0.00|0.00|85775|90216|10000|10000|||100.08|100.54|0.00|-3.14|00019DE2|0|1| +21|2023-10-06T21:18:15.5790000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15268801|40478540|10000|10000|||100.00|80.10|0.00|0.00|35945|73814|2400|10000|||101.19|101.93|0.00|0.87|00019DE3|0|1| +21|2023-10-06T21:18:15.6680000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15268801|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|100.46|-0.01|-3.13|00019DE4|0|1| +21|2023-10-06T21:18:15.7130000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|9030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15258149|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||89.89|94.08|0.00|-3.04|00019DE5|0|1| +31|2023-10-06T21:18:15.7130000-07:00|10FF0001||||| +21|2023-10-06T21:18:15.7570000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15258149|40478540|10000|10000|||100.00|80.10|0.00|0.00|59285|81541|2400|10000|||100.54|98.38|0.00|2.83|00019DE6|0|1| +38|2023-10-06T21:18:15.8020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|8||89.38|93.66|0.00|-3.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:15.8020000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:18:15.8910000-07:00|40022472|Zeromus|00019DE1|15247954||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:15.8910000-07:00|10FF0006|Wowobora Gogobora|00019DE1|81809|81809|3650|10000|12||97.93|95.54|0.00|-2.96|1B00|0|0|01|0B25|0|0|| +21|2023-10-06T21:18:15.8910000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|147A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15258149|40478540|10000|10000|||100.00|80.10|0.00|0.00|112069|129844|10000|10000|||98.27|96.30|0.00|-2.61|00019DE7|0|1| +22|2023-10-06T21:18:15.8910000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|00019DE8|0|8| +22|2023-10-06T21:18:15.8910000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|85775|90216|10000|10000|||100.05|100.49|0.00|-3.00|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|00019DE8|1|8| +22|2023-10-06T21:18:15.8910000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||101.02|99.04|0.00|-3.13|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|00019DE8|2|8| +22|2023-10-06T21:18:15.8910000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59285|81541|2400|10000|||100.38|97.62|0.00|3.05|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|00019DE8|3|8| +22|2023-10-06T21:18:15.8910000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|112069|129844|10000|10000|||98.27|96.30|0.00|-2.61|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|00019DE8|4|8| +22|2023-10-06T21:18:15.8910000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|3650|10000|||97.93|95.54|0.00|-2.96|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|00019DE8|5|8| +22|2023-10-06T21:18:15.8910000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0009|Zewo Negiwo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67060|81177|4493|10000|||96.98|95.43|0.00|2.94|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|00019DE8|6|8| +22|2023-10-06T21:18:15.8910000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7900|10000|||89.38|93.66|0.00|-3.05|35945|73814|2400|10000|||101.95|101.77|0.00|2.05|00019DE8|7|8| +38|2023-10-06T21:18:15.8910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3650|10000|12||97.93|95.54|0.00|-2.96|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:15.5070000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:18:15.9360000-07:00|10FF0003|Gegehi Gehi|00019DE0|41155||||||101.97|101.55|0.00|3.08| +21|2023-10-06T21:18:15.9360000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|11CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15247954|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3650|10000|||97.78|94.81|-0.02|-2.96|00019DE9|0|1| +38|2023-10-06T21:18:15.9360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3650|10000|12||97.78|94.81|-0.02|-2.96|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:15.9360000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:18:15.9800000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.76|98.33|0.00|-3.13| +261|2023-10-06T21:18:15.5070000-07:00|Change|40022C39||||||||| +261|2023-10-06T21:18:15.6050000-07:00|Change|40022C3D||||||||| +21|2023-10-06T21:18:16.0700000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|376C0000|143E|340000|4|19178000|11B|2A8000|0|0|0|0|0|0|0|0|15247954|40478540|10000|10000|||100.00|80.10|0.00|0.00|112069|129844|10000|10000|||97.45|95.02|0.00|-2.44|00019DEA|0|1| +21|2023-10-06T21:18:16.0700000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15247954|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3650|10000|||97.63|94.11|0.00|2.97|00019DEB|0|1| +261|2023-10-06T21:18:15.6050000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:18:15.7200000-07:00|Change|40022C3A||||||||| +37|2023-10-06T21:18:16.1140000-07:00|40022472|Zeromus|00019DE3|15247953||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:16.2040000-07:00|40022472|Zeromus|00019DE2|15242717||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:16.2040000-07:00|40022472|Zeromus|00019DE4|15239849||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:18:16.2040000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|85775|90216|10000|10000|||99.36|99.59|0.00|-2.63|73956|77430|10000|10000|||100.05|98.22|0.00|0.59|00019DEC|0|8| +22|2023-10-06T21:18:16.2040000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|59285|81541|2400|10000|||98.27|95.86|0.00|-2.35|73956|77430|10000|10000|||100.05|98.22|0.00|0.59|00019DEC|1|8| +22|2023-10-06T21:18:16.2040000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.55|96.29|0.00|-3.13|73956|77430|10000|10000|||100.05|98.22|0.00|0.59|00019DEC|2|8| +22|2023-10-06T21:18:16.2040000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|41155|73814|2400|10000|||102.01|101.09|0.00|3.08|73956|77430|10000|10000|||100.05|98.22|0.00|0.59|00019DEC|3|8| +22|2023-10-06T21:18:16.2040000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|3650|10000|||97.39|93.01|0.00|2.97|73956|77430|10000|10000|||100.05|98.22|0.00|0.59|00019DEC|4|8| +22|2023-10-06T21:18:16.2040000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|112069|129844|10000|10000|||96.49|93.88|-0.02|2.95|73956|77430|10000|10000|||100.05|98.22|0.00|0.59|00019DEC|5|8| +22|2023-10-06T21:18:16.2040000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0009|Zewo Negiwo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|67060|81177|4493|10000|||95.57|93.80|0.00|-2.59|73956|77430|10000|10000|||100.05|98.22|0.00|0.59|00019DEC|6|8| +22|2023-10-06T21:18:16.2040000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7900|10000|||87.89|91.71|0.00|-3.06|73956|77430|10000|10000|||100.05|98.22|0.00|0.59|00019DEC|7|8| +24|2023-10-06T21:18:16.2040000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|756|85775|90216|10000|10000|||99.36|99.59|0.00|-2.63|10FF0008|Kokosaze Lulusaze|0|85775|90216|10000|10000|||99.36|99.59|0.00|-2.63| +21|2023-10-06T21:18:16.2040000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|25510000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|15247953|40478540|10000|10000|||100.00|80.10|0.00|0.00|59285|81541|2400|10000|||98.27|95.86|0.00|-2.35|00019DED|0|1| +38|2023-10-06T21:18:16.2040000-07:00|10FF0009|Zewo Negiwo|005A5A18|67060|81177|4493|10000|0||95.57|93.80|0.00|-2.59|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:16.2040000-07:00|2C|Brink of Death|0.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +38|2023-10-06T21:18:16.2040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|87653|90216|10000|10000|11||99.36|99.59|0.00|-2.63|0|0|0||||||||||||||||||| +37|2023-10-06T21:18:16.2480000-07:00|40022472|Zeromus|00019DE5|15237542||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:16.2480000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|747|82773|82773|10000|10000|||98.55|96.29|0.00|-3.13|10FF0006|Wowobora Gogobora|0|81809|81809|3650|10000|||97.39|93.01|0.00|2.97| +38|2023-10-06T21:18:16.2480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||98.55|96.29|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:18:16.2920000-07:00|40022472|Zeromus|00019DE6|15237388||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:16.2920000-07:00|10FF0003|Gegehi Gehi|005A5A23|41155|73814|2950|10000|10||102.01|101.09|0.00|3.08|0|0|0||||||||||||| +261|2023-10-06T21:18:15.8300000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:18:16.3360000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15237388|40478540|10000|10000|||100.00|80.10|0.00|0.00|87653|90216|10000|10000|||98.86|99.02|0.00|-2.57|00019DEE|0|1| +24|2023-10-06T21:18:16.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|78B|59285|81541|2000|10000|||97.87|95.61|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|59285|81541|2000|10000|||97.87|95.61|0.00|-3.06| +38|2023-10-06T21:18:16.3820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|61216|81541|2000|10000|30||97.87|95.61|0.00|-3.06|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:18:15.9500000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:18:16.4260000-07:00|40022472|Zeromus|00019DE7|15232146||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:18:16.4260000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:18:16.4260000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|235D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15237388|40478540|10000|10000|||100.00|80.10|0.00|0.00|87653|90216|10000|10000|||98.86|99.02|0.00|-2.57|00019DEF|0|1| +24|2023-10-06T21:18:16.4710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|75D|112069|129844|10000|10000|||95.26|93.45|0.00|-3.05|10FF0007|Kehabiqo Febiqo|0|112069|129844|10000|10000|||95.26|93.45|0.00|-3.05| +24|2023-10-06T21:18:16.4710000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7DA|81809|81809|3650|10000|||97.48|93.36|0.00|2.97|40022C1D||0||||||||||| +38|2023-10-06T21:18:16.4710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113954|129844|10000|10000|0||95.26|93.45|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:16.4710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3650|10000|12||97.48|93.36|0.00|2.97|0|0|0|||||||||||||||||||||||||||| +04|2023-10-06T21:18:16.0640000-07:00|40022C42|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.34|97.24|0.00|-0.04| +261|2023-10-06T21:18:16.0640000-07:00|Remove|40022C42| +37|2023-10-06T21:18:16.5600000-07:00|10FF0003|Gegehi Gehi|00019DE8|41155|73814|2950|10000|10||102.01|101.09|0.00|3.08|2300|0|0|01|040004D7|0|41A00000|| +26|2023-10-06T21:18:16.5600000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:18:16.1640000-07:00|Change|40022C40||||||||| +24|2023-10-06T21:18:16.5600000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|770|129071|129071|7900|10000|||86.39|90.47|0.00|-3.05|10FF0001|Sesuga Sapisuga|0|129071|129071|7900|10000|||86.39|90.47|0.00|-3.05| +38|2023-10-06T21:18:16.5600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|8||86.39|90.47|0.00|-3.05|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:18:16.6040000-07:00|40022472|Zeromus|00019DEB|15232074||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:16.1640000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:18:16.1640000-07:00|Change|40022C3C||||||||| +21|2023-10-06T21:18:16.6480000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|41155|73814|2950|10000|||102.00|101.09|-0.02|3.10|41155|73814|2950|10000|||102.00|101.09|-0.02|3.10|00019DF0|0|1| +38|2023-10-06T21:18:16.6480000-07:00|10FF0003|Gegehi Gehi|005A5A23|41155|73814|2950|10000|10||102.00|101.09|-0.02|3.10|0|0|0||||||||||||||||||| +26|2023-10-06T21:18:16.6480000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73814|73814| +37|2023-10-06T21:18:16.6930000-07:00|40022472|Zeromus|00019DE9|15227515||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:16.6930000-07:00|10FF0008|Kokosaze Lulusaze|00019DE8|87653|90216|10000|10000|11||97.23|97.12|0.00|3.00|1F01|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:18:16.6930000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +37|2023-10-06T21:18:16.6930000-07:00|10FF0003|Gegehi Gehi|00019DE8|41155|73814|2950|10000|10||101.98|101.05|-0.02|-2.83|2301|0|0|01|050007B3|06|C1700000|| +38|2023-10-06T21:18:16.6930000-07:00|40022C1F|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.88|102.46|0.00|-3.06|0|0|0|||||||||| +26|2023-10-06T21:18:16.6930000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40022C1F|Automaton Queen|00|85668|73814| +261|2023-10-06T21:18:16.2600000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:18:16.8260000-07:00|40022472|Zeromus|00019DDD|15195699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:16.8260000-07:00|10FF000A|Dukaro Nezikaro|00019DE8|82773|82773|10000|10000|23||96.23|93.93|0.00|-2.82|1E02|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:18:16.8260000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +37|2023-10-06T21:18:16.8260000-07:00|10FF0003|Gegehi Gehi|00019DE8|41155|73814|2950|10000|10||101.97|101.03|0.00|-2.75|2302|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T21:18:16.8260000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|19630000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|15227515|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||96.23|93.93|0.00|-2.82|00019DF1|0|1| +261|2023-10-06T21:18:16.3510000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:18:16.8710000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2AF10000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|15195699|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||86.02|88.74|0.00|3.01|00019DF2|0|1| +38|2023-10-06T21:18:16.8710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|8||86.02|88.74|0.00|3.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:16.8710000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:18:16.4510000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:18:16.4510000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:18:16.9610000-07:00|10FF0004|Buhojaqe Zijaqe|00019DE8|61216|81541|2000|10000|30||96.08|94.68|0.00|-2.18|1C03|0|0|01|08000511|0|41A00000|| +26|2023-10-06T21:18:16.9610000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:18:16.9610000-07:00|10FF0003|Gegehi Gehi|00019DE8|41155|73814|2950|10000|10||101.96|101.01|0.00|-2.67|2303|0|0|01|050007B3|06|C1700000|| +38|2023-10-06T21:18:16.9610000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|0.60|0|0|0||||||||||||| +26|2023-10-06T21:18:16.9610000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40022C1B|Ruby Carbuncle|00|77430|73814| +261|2023-10-06T21:18:16.5470000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:18:17.0490000-07:00|40022472|Zeromus|00019DEF|15186646||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:17.0490000-07:00|10FF0003|Gegehi Gehi|00019DF0|41155|73814|2950|10000|10||101.53|100.95|0.00|-2.62|2300|0|0|01|050007B3|06|41700000|| +261|2023-10-06T21:18:16.5470000-07:00|Change|40022C1F||||||||| +38|2023-10-06T21:18:17.0500000-07:00|40022C1F|Automaton Queen|005A5A00|0|85668|0|10000|0||101.88|102.46|0.00|-3.06|0|0|0|||| +30|2023-10-06T21:18:17.0500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022C1F|Automaton Queen|00|85668|81809| +30|2023-10-06T21:18:17.0500000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022C1F|Automaton Queen|00|85668|73814| +38|2023-10-06T21:18:17.0500000-07:00|10FF0003|Gegehi Gehi|005A5A23|41155|73814|2950|10000|10||101.53|100.95|0.00|-2.62|0|0|0||||||||||||||||||| +261|2023-10-06T21:18:16.6680000-07:00|Change|40022C37||||||||| +37|2023-10-06T21:18:17.0930000-07:00|10FF0008|Kokosaze Lulusaze|00019DEC|87653|90216|10000|10000|11||95.40|95.14|0.00|-2.51|1F00|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:18:17.0930000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:18:17.0930000-07:00|40022472|Zeromus|00019DEE|15184341||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:17.0930000-07:00|10FF0007|Kehabiqo Febiqo|00019DE8|113954|129844|10000|10000|0||93.10|90.18|0.00|-2.92|1504|0|0|01|01000511|0|41A00000|| +26|2023-10-06T21:18:17.0930000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +37|2023-10-06T21:18:17.1370000-07:00|40022472|Zeromus|00019DED|15174788||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:17.1370000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|15440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15186646|40478540|10000|10000|||100.00|80.10|0.00|0.00|87653|90216|10000|10000|||95.40|95.14|0.00|-2.51|00019DF3|0|1| +37|2023-10-06T21:18:17.2260000-07:00|10FF0004|Buhojaqe Zijaqe|00019DEC|61216|81541|2000|10000|30||95.19|93.00|0.00|-2.46|1C01|0|0|01|0900013B|0|41A80000|| +26|2023-10-06T21:18:17.2260000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:18:17.2260000-07:00|10FF0006|Wowobora Gogobora|00019DE8|81809|81809|3650|10000|12||93.78|94.60|0.00|-1.76|1B05|0|0|01|0511|0|41A00000|| +26|2023-10-06T21:18:17.2260000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +37|2023-10-06T21:18:17.2260000-07:00|40022472|Zeromus|00019DF1|15168289||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:17.2270000-07:00|40022C45|Topaz Titan|005A5A00|0|77698|10000|10000|0||100.96|100.81|0.00|3.10|0|0|0|||||||||| +26|2023-10-06T21:18:17.2270000-07:00|30|Well Fed|1376.05|10FF0006|Wowobora Gogobora|40022C45|Topaz Titan|2964|77698|81809| +26|2023-10-06T21:18:17.2270000-07:00|A8F|Searing Light|8.40|10FF0006|Wowobora Gogobora|40022C45|Topaz Titan|00|77698|81809| +26|2023-10-06T21:18:17.2270000-07:00|511|Embolden|19.95|10FF0003|Gegehi Gehi|40022C45|Topaz Titan|00|77698|73814| +37|2023-10-06T21:18:17.3600000-07:00|10FF000A|Dukaro Nezikaro|00019DEC|82773|82773|10000|10000|23||94.22|90.92|0.00|-2.70|1E02|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:18:17.3600000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:18:17.3600000-07:00|10FF0009|Zewo Negiwo|00019DE8|67060|81177|4493|10000|0||92.49|87.96|0.00|-2.50|1806|0|0|01|02000511|0|41A00000|| +26|2023-10-06T21:18:17.3600000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +261|2023-10-06T21:18:16.8940000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:17.0040000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:18:17.4930000-07:00|10FF0003|Gegehi Gehi|00019DEC|41155|73814|2950|10000|10||99.02|100.04|0.00|-2.44|2303|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:18:17.4930000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T21:18:17.4930000-07:00|10FF0001|Sesuga Sapisuga|00019DE8|129071|129071|7900|10000|8||87.29|85.78|0.00|2.19|1307|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:18:17.4930000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +39|2023-10-06T21:18:17.5380000-07:00|10FF0003|Gegehi Gehi|41893|73814|3150|10000|||98.55|99.68|0.00|-2.40| +261|2023-10-06T21:18:17.1220000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:18:17.5830000-07:00|40022472|Zeromus|00019DEA|15154101||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:17.5830000-07:00|10FF0007|Kehabiqo Febiqo|00019DEA|120377||||||92.48|87.78|-0.02|-2.92| +261|2023-10-06T21:18:17.1220000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:18:17.6270000-07:00|10FF0006|Wowobora Gogobora|00019DEC|81809|81809|3650|10000|12||94.67|93.92|0.00|2.95|1B04|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:18:17.6270000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +39|2023-10-06T21:18:17.6270000-07:00|10FF0009|Zewo Negiwo|67871|81177|4714|10000|||92.19|86.75|0.00|-2.52| +261|2023-10-06T21:18:17.2190000-07:00|Change|40022C39||||||||| +261|2023-10-06T21:18:17.2190000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:18:17.7170000-07:00|10FF0008|Kokosaze Lulusaze|88555|90216|10000|10000|||93.30|92.59|0.00|-2.85| +261|2023-10-06T21:18:17.2190000-07:00|Change|40022C3D||||||||| +261|2023-10-06T21:18:17.3120000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:18:17.7610000-07:00|10FF0007|Kehabiqo Febiqo|00019DEC|120377|129844|10000|10000|0||91.42|86.90|0.00|-3.00|1505|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:18:17.7610000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +24|2023-10-06T21:18:17.7610000-07:00|40022472|Zeromus|DoT|0|1DDA|15154101|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7900|10000|||88.59|85.20|0.00|1.86| +21|2023-10-06T21:18:17.7610000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|2AE30000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|15154101|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3650|10000|||94.30|92.30|0.00|3.11|00019DF4|0|1| +38|2023-10-06T21:18:17.7610000-07:00|40022472|Zeromus|005A5A00|15146459|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T21:18:17.7610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3350|10000|12||94.30|92.30|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:17.7610000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:18:17.4040000-07:00|Change|40022C3A||||||||| +21|2023-10-06T21:18:17.8510000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|96C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15154101|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.59|88.56|0.00|-2.57|00019DF5|0|1| +36|2023-10-06T21:18:17.8510000-07:00|36EC|3| +37|2023-10-06T21:18:17.8950000-07:00|10FF0009|Zewo Negiwo|00019DEC|67871|81177|4714|10000|0||90.35|86.29|-0.02|-1.96|1806|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T21:18:17.8950000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +39|2023-10-06T21:18:17.8950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||88.51|84.84|0.00|1.69| +39|2023-10-06T21:18:17.8950000-07:00|10FF0004|Buhojaqe Zijaqe|62031|81541|2200|10000|||93.57|89.13|0.00|-2.64| +261|2023-10-06T21:18:17.4040000-07:00|Change|40022C41||||||||| +261|2023-10-06T21:18:17.4040000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:18:17.9400000-07:00|40022472|Zeromus|00019DF3|15141015||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:17.9400000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|752003|34C70000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|15146459|40478540|10000|10000|||100.00|80.10|0.00|0.00|41893|73814|3150|10000|||97.47|97.91|-0.02|-2.55|00019DF6|0|1| +38|2023-10-06T21:18:17.9400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|8||88.51|84.84|0.00|1.69|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:17.9400000-07:00|74C|Everlasting Flight|0.00|40022C1D|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|| +38|2023-10-06T21:18:17.9400000-07:00|10FF0003|Gegehi Gehi|005A5A23|41893|73814|3150|10000|10||97.47|97.91|-0.02|-2.55|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:17.9400000-07:00|7B3|Manafication|14.07|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73814|73814| +39|2023-10-06T21:18:17.9840000-07:00|10FF0007|Kehabiqo Febiqo|121675|129844|10000|10000|||90.49|85.91|0.00|-3.08| +26|2023-10-06T21:18:17.9840000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:18:17.9840000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|23DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15141015|40478540|10000|10000|||100.00|80.10|0.00|0.00|88555|90216|10000|10000|||92.16|91.02|0.00|-2.60|00019DF7|0|1| +21|2023-10-06T21:18:17.9840000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15141015|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||88.73|84.30|0.00|1.58|00019DF8|0|1| +31|2023-10-06T21:18:17.9840000-07:00|10FF0001||||| +261|2023-10-06T21:18:17.6030000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:18.0280000-07:00|10FF0001|Sesuga Sapisuga|00019DEC|129071|129071|8100|10000|8||88.81|83.72|0.00|1.45|1307|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:18:18.0280000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +39|2023-10-06T21:18:18.0280000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3550|10000|||93.72|89.62|0.00|3.05| +38|2023-10-06T21:18:18.0280000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|0.89|0|0|0||||||||||||| +30|2023-10-06T21:18:18.0280000-07:00|77B|Summon Order|0.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T21:18:18.0730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||91.14|87.12|0.00|-2.72|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:18.0730000-07:00|74C|Everlasting Flight|0.00|40022C1D|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|82773|| +21|2023-10-06T21:18:18.1170000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022472|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15141015|40478540|10000|10000|||100.00|80.10|0.00|0.00|62031|81541|2200|10000|||92.90|87.93|0.00|-2.62|00019DF9|0|1| +261|2023-10-06T21:18:17.7220000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:18:18.1610000-07:00|40022472|Zeromus|00019DF2|15130022||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:18.1610000-07:00|10FF0001|Sesuga Sapisuga|00019DF2|129071|129071|8500|10000|8||88.92|83.06|0.00|1.35|1300|0|0|0| +38|2023-10-06T21:18:18.2060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3550|10000|12||93.59|88.96|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:18.2060000-07:00|74C|Everlasting Flight|0.00|40022C1D|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T21:18:17.8410000-07:00|Change|40022C40||||||||| +261|2023-10-06T21:18:17.8410000-07:00|Change|40022C3C||||||||| +38|2023-10-06T21:18:18.2950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62031|81541|2200|10000|20||92.47|87.28|0.00|2.26|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:18.2950000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|| +38|2023-10-06T21:18:18.3390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88555|90216|10000|10000|11||91.08|89.61|0.00|2.93|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:18.3390000-07:00|74C|Everlasting Flight|0.00|40022C1D|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|| +37|2023-10-06T21:18:18.3840000-07:00|40022472|Zeromus|00019DF4|15119043||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:18.3840000-07:00|10FF0006|Wowobora Gogobora|00019DF4|81809|81809|3550|10000|12||93.54|88.54|0.00|-3.12|1B00|0|0|01|09000B25|0|0|| +37|2023-10-06T21:18:18.3840000-07:00|40022472|Zeromus|00019DF5|15116631||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:18.3840000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|1.22| +38|2023-10-06T21:18:18.3840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3550|10000|12||93.54|88.54|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:17.9570000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:18:18.4280000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|12B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15116631|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3550|10000|||93.41|88.10|0.00|-3.07|00019DFA|0|1| +38|2023-10-06T21:18:18.4280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3550|10000|12||93.41|88.10|0.00|-3.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:18.4280000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:18:18.0740000-07:00|Change|10FF0008||||||||| +38|2023-10-06T21:18:18.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121675|129844|10000|10000|0||88.89|84.68|0.00|3.06|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:18.4730000-07:00|74C|Everlasting Flight|0.00|40022C1D|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|| +37|2023-10-06T21:18:18.5170000-07:00|40022472|Zeromus|00019DF8|15114814||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:18.5170000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|45F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15116631|40478540|10000|10000|||100.00|80.10|0.00|0.00|121675|129844|10000|10000|||88.74|84.69|0.00|3.00|00019DFB|0|1| +37|2023-10-06T21:18:18.5610000-07:00|40022472|Zeromus|00019DF6|15101303||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:18.5610000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|21CE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|41893|73814|3150|10000|||96.07|96.90|-0.02|2.96|73956|77430|10000|10000|||100.05|98.22|0.00|1.92|00019DFC|0|1| +38|2023-10-06T21:18:18.6060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62031|81541|2200|10000|20||92.12|86.85|0.00|3.00|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:18.6060000-07:00|74C|Everlasting Flight|0.00|40022C1D|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|| +37|2023-10-06T21:18:18.6510000-07:00|40022472|Zeromus|00019DF7|15092124||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:18.6510000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|16490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15101303|40478540|10000|10000|||100.00|80.10|0.00|0.00|88555|90216|10000|10000|||89.82|88.01|0.00|-2.75|00019DFD|0|1| +38|2023-10-06T21:18:18.6510000-07:00|40022472|Zeromus|005A5A00|15092124|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:18:18.6510000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:18:18.2670000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:18:18.2670000-07:00|Change|40022C3E||||||||| +261|2023-10-06T21:18:18.2670000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:18:18.3680000-07:00|Change|40022C37||||||||| +38|2023-10-06T21:18:18.8740000-07:00|40022C45|Topaz Titan|005A5A00|0|77698|0|10000|0||100.96|100.81|0.00|3.10|0|0|0|||| +30|2023-10-06T21:18:18.8740000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022C45|Topaz Titan|00|77698|81809| +30|2023-10-06T21:18:18.8740000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022C45|Topaz Titan|00|77698|73814| +261|2023-10-06T21:18:18.3680000-07:00|Change|40022C45||||| +38|2023-10-06T21:18:18.9180000-07:00|40022C4D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:18:18.9180000-07:00|40022472|Zeromus|00019DF9|15092124|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004C5|0|41700000|| +26|2023-10-06T21:18:18.9180000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +21|2023-10-06T21:18:18.9180000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15092124|40478540|10000|10000|||100.00|80.10|0.00|0.00|62031|81541|2200|10000|||91.44|86.46|0.00|-2.72|00019DFE|0|1| +21|2023-10-06T21:18:18.9180000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||89.06|85.57|0.00|3.11|82773|82773|10000|10000|||89.06|85.57|0.00|3.11|00019DFF|0|1| +38|2023-10-06T21:18:18.9180000-07:00|40022C4D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:18:18.9180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||89.06|85.57|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:18.9180000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:18:19.0080000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||89.04|85.56|0.00|3.10| +21|2023-10-06T21:18:19.0080000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|10320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15092124|40478540|10000|10000|||100.00|80.10|0.00|0.00|88555|90216|10000|10000|||89.31|87.32|0.00|2.17|00019E00|0|1| +261|2023-10-06T21:18:18.5570000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:18:19.0520000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15092124|40478540|10000|10000|||100.00|80.10|0.00|0.00|41893|73814|3150|10000|||94.33|93.71|0.00|-2.74|00019E01|0|1| +37|2023-10-06T21:18:19.1410000-07:00|40022472|Zeromus|00019DFB|15074212||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:19.1860000-07:00|40022472|Zeromus|00019DFA|15069427||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:19.2300000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1016|88555|90216|10000|10000|||88.86|86.55|0.00|2.69|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.45| +21|2023-10-06T21:18:19.2300000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15092124|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3550|10000|||89.43|85.87|0.00|-2.67|00019E02|0|1| +38|2023-10-06T21:18:19.2300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||88.86|86.55|0.00|2.69|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:18:19.2750000-07:00|40022472|Zeromus|00019DFD|15063722||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:19.2750000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|FDA|82773|82773|10000|10000|||89.04|85.56|0.00|3.10|10FF0006|Wowobora Gogobora|0|81809|81809|3550|10000|||89.15|85.20|0.00|-2.84| +21|2023-10-06T21:18:19.2750000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|CCB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15069427|40478540|10000|10000|||100.00|80.10|0.00|0.00|121675|129844|10000|10000|||88.36|84.73|0.00|1.95|00019E03|0|1| +38|2023-10-06T21:18:19.2750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||89.04|85.56|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:18.7850000-07:00|Add|40022C4D||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:18:18.7850000-07:00|40022C4D|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||89.68|85.46|0.00|0.53| +24|2023-10-06T21:18:19.3200000-07:00|10FF0003|Gegehi Gehi|HoT|0|9F9|41893|73814|3150|10000|||93.68|92.40|0.00|-2.68|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.41| +38|2023-10-06T21:18:19.3200000-07:00|10FF0003|Gegehi Gehi|005A5A23|44446|73814|3700|10000|10||93.68|92.40|0.00|-2.68|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:18.9010000-07:00|Change|40022C4D||| +37|2023-10-06T21:18:19.3640000-07:00|10FF0003|Gegehi Gehi|00019DFC|53100||||||93.68|92.40|0.00|-2.68| +21|2023-10-06T21:18:19.3640000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2D3C0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|15069427|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8500|10000|||89.41|82.63|0.00|1.80|00019E04|0|1| +20|2023-10-06T21:18:19.3640000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|88.55|85.16|0.00|-2.15| +38|2023-10-06T21:18:19.3640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|8||89.41|82.63|0.00|1.80|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:19.3640000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:18:18.9010000-07:00|Change|40022C1B||||||||| +261|2023-10-06T21:18:18.9010000-07:00|Change|40022C39||||||||| +24|2023-10-06T21:18:19.4080000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|937|62031|81541|2200|10000|||88.06|84.90|-0.02|-2.19|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.37| +261|2023-10-06T21:18:18.9010000-07:00|Change|40022C3D||||||||| +21|2023-10-06T21:18:19.4090000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||89.04|85.56|0.00|3.10|82773|82773|10000|10000|||89.04|85.56|0.00|3.10|00019E05|0|1| +38|2023-10-06T21:18:19.4090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64390|81541|2200|10000|20||88.06|84.90|-0.02|-2.19|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:19.4090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||89.04|85.56|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:19.4090000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:18:19.4530000-07:00|40022472|Zeromus|00019DFE|15063554||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:19.4530000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|259D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15063722|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.26|85.45|0.00|-3.02|00019E06|0|1| +21|2023-10-06T21:18:19.4530000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37752003|3EE00000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|15063722|40478540|10000|10000|||100.00|80.10|0.00|0.00|53100|73814|3700|10000|||93.37|91.76|0.00|-2.68|00019E07|0|1| +38|2023-10-06T21:18:19.4530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||88.26|85.45|0.00|-3.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:19.4530000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +38|2023-10-06T21:18:19.4530000-07:00|10FF0003|Gegehi Gehi|005A5A23|53100|73814|3700|10000|10||93.37|91.76|0.00|-2.68|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:19.4530000-07:00|7B3|Manafication|12.55|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73814|73814| +24|2023-10-06T21:18:19.4970000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|F9A|121675|129844|10000|10000|||88.39|84.70|0.00|2.22|10FF0007|Kehabiqo Febiqo|0|121675|129844|10000|10000|||88.39|84.70|0.00|2.22| +24|2023-10-06T21:18:19.4970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|98C|81809|81809|3550|10000|||88.34|84.30|0.00|-2.64|10FF0006|Wowobora Gogobora|0|81809|81809|3550|10000|||88.34|84.30|0.00|-2.64| +38|2023-10-06T21:18:19.4970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125669|129844|10000|10000|0||88.39|84.70|0.00|2.22|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:19.4970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3550|10000|12||88.34|84.30|0.00|-2.64|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:18:19.0200000-07:00|Change|40022C3B||||||||| +261|2023-10-06T21:18:19.1330000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:18:19.1330000-07:00|Change|40022C3A||||||||| +24|2023-10-06T21:18:19.5420000-07:00|10FF0009|Zewo Negiwo|HoT|0|9DA|67871|81177|4714|10000|||88.98|85.92|0.00|-2.72|10FF0006|Wowobora Gogobora|0|81809|81809|3550|10000|||88.34|84.30|0.00|-2.64| +38|2023-10-06T21:18:19.5420000-07:00|10FF0009|Zewo Negiwo|005A5A18|70393|81177|4714|10000|0||88.98|85.92|0.00|-2.72|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:19.1330000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:18:19.1330000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:18:19.1330000-07:00|Change|40022C41||||||||| +37|2023-10-06T21:18:19.5860000-07:00|40022472|Zeromus|00019E01|15063553||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:19.5860000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9CD|129071|129071|8500|10000|||89.41|82.63|0.00|1.80|10FF0001|Sesuga Sapisuga|0|129071|129071|8500|10000|||89.41|82.63|0.00|1.80| +38|2023-10-06T21:18:19.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|8||89.41|82.63|0.00|1.80|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:18:19.3310000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:18:19.7640000-07:00|40022472|Zeromus|00019E00|15059407||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:19.7640000-07:00|40022472|Zeromus|00019E02|15059256||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:19.8090000-07:00|40022472|Zeromus|00019E03|15055981||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:19.8540000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|88.98|85.92|0.00|-2.72| +21|2023-10-06T21:18:19.8980000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||89.04|85.56|0.00|3.10|82773|82773|10000|10000|||89.04|85.56|0.00|3.10|00019E08|0|1| +38|2023-10-06T21:18:19.8980000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||89.04|85.56|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:19.8980000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +261|2023-10-06T21:18:19.4280000-07:00|Change|40022C40||||||||| +34|2023-10-06T21:18:19.9420000-07:00|40022C4D|Carbuncle|40022C4D|Carbuncle|01| +261|2023-10-06T21:18:19.5210000-07:00|Change|40022C3C||||||||| +261|2023-10-06T21:18:19.5210000-07:00|Change|40022C4D||||||||| +261|2023-10-06T21:18:19.5210000-07:00|Change|10FF0009||||||||||||||||||||| +21|2023-10-06T21:18:20.0320000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15055981|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||89.04|85.56|0.00|3.10|00019E09|0|1| +37|2023-10-06T21:18:20.0770000-07:00|40022472|Zeromus|00019E06|15046352||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:20.0770000-07:00|40022472|Zeromus|00019E07|15030256||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:20.0770000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1C0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15055981|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.66|82.81|0.00|1.79|00019E0A|0|1| +21|2023-10-06T21:18:20.2100000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|454003|37370000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|15030256|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3550|10000|||87.42|83.63|0.00|-2.16|00019E0B|0|1| +38|2023-10-06T21:18:20.2100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3250|10000|12||87.42|83.63|0.00|-2.16|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:20.2100000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:18:19.7410000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:18:20.2540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|9700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15030256|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8500|10000|||92.15|83.12|0.00|0.46|00019E0C|0|1| +31|2023-10-06T21:18:20.2540000-07:00|10FF0001||||| +21|2023-10-06T21:18:20.2990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|574D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|15030256|40478540|10000|10000|||100.00|80.10|0.00|0.00|64390|81541|2200|10000|||87.39|84.25|0.00|1.89|00019E0D|0|1| +261|2023-10-06T21:18:19.8570000-07:00|Change|40022C3F||||||||| +261|2023-10-06T21:18:19.9730000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:18:19.9730000-07:00|Change|40022C3E||||||||| +21|2023-10-06T21:18:20.4330000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|656003|72D50000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|15030256|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||89.04|85.56|0.00|3.10|00019E0E|0|1| +38|2023-10-06T21:18:20.4330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||89.04|85.56|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:20.4330000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +26|2023-10-06T21:18:20.4330000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:18:19.9730000-07:00|Change|40022C37||||||||| +39|2023-10-06T21:18:20.5220000-07:00|10FF0003|Gegehi Gehi|53838|73814|3900|10000|||88.11|87.21|0.00|-2.65| +37|2023-10-06T21:18:20.5660000-07:00|40022472|Zeromus|00019E09|15027285||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:20.5660000-07:00|10FF000A|Dukaro Nezikaro|00019E09|82773|82773|10000|10000|23||89.04|85.56|0.00|2.03|1E00|0|0|01|070001FB|0|C1A00000|| +39|2023-10-06T21:18:20.6110000-07:00|10FF0009|Zewo Negiwo|71204|81177|4935|10000|||88.98|85.92|0.00|2.06| +37|2023-10-06T21:18:20.6560000-07:00|40022472|Zeromus|00019E04|15015705||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:20.6560000-07:00|10FF0001|Sesuga Sapisuga|00019E04|129071|129071|8900|10000|8||93.98|83.11|0.00|0.33|1300|0|0|0| +261|2023-10-06T21:18:20.2800000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:18:20.7000000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||87.66|82.81|0.00|1.79| +261|2023-10-06T21:18:20.2800000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T21:18:20.7450000-07:00|40022472|Zeromus|DoT|0|1433|15015705|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|64390|81541|1800|10000|||87.39|84.25|0.00|1.84| +38|2023-10-06T21:18:20.7450000-07:00|40022472|Zeromus|005A5A00|15010534|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:18:20.7890000-07:00|40022472|Zeromus|00019E0C|15008118||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:20.7890000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|399A0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|15015705|40478540|10000|10000|||100.00|80.10|0.00|0.00|71204|81177|4935|10000|||88.98|85.92|0.00|2.06|00019E0F|0|1| +37|2023-10-06T21:18:20.8340000-07:00|40022472|Zeromus|00019E0B|14993983||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:20.8340000-07:00|10FF0006|Wowobora Gogobora|00019E0B|81809|81809|3250|10000|12||87.42|83.63|0.00|1.85|1B00|0|0|01|08000B25|0|0|| +21|2023-10-06T21:18:20.8340000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|456003|26D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15015705|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3250|10000|||87.42|83.63|0.00|1.85|00019E10|0|1| +38|2023-10-06T21:18:20.8340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3250|10000|12||87.42|83.63|0.00|1.85|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:20.8340000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:18:20.8790000-07:00|40022472|Zeromus|00019E0A|14986804||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:20.8790000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9100|10000|||94.41|82.97|0.00|0.31| +39|2023-10-06T21:18:20.8790000-07:00|10FF0004|Buhojaqe Zijaqe|65205|81541|2000|10000|||87.40|84.25|0.00|1.77| +36|2023-10-06T21:18:20.8790000-07:00|37C8|3| +21|2023-10-06T21:18:20.9230000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A750003|38D30000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|14993983|40478540|10000|10000|||100.00|80.10|0.00|0.00|53838|73814|3900|10000|||87.87|85.06|0.00|-2.92|00019E11|0|1| +38|2023-10-06T21:18:20.9230000-07:00|10FF0003|Gegehi Gehi|005A5A23|53838|73814|3900|10000|10||87.87|85.06|0.00|-2.92|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:20.9230000-07:00|7B3|Manafication|11.08|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73814|73814| +04|2023-10-06T21:18:20.4760000-07:00|40022C1F|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||101.88|102.46|0.00|-3.06| +261|2023-10-06T21:18:20.4760000-07:00|Remove|40022C1F| +39|2023-10-06T21:18:20.9670000-07:00|10FF0007|Kehabiqo Febiqo|126967|129844|10000|10000|||88.55|84.40|0.00|2.68| +21|2023-10-06T21:18:20.9670000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|19060000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|14986804|40478540|10000|10000|||100.00|80.10|0.00|0.00|125669|129844|10000|10000|||88.55|84.40|0.00|2.68|00019E12|0|1| +21|2023-10-06T21:18:20.9670000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|4D820000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|14986804|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.66|82.81|0.00|1.79|00019E13|0|1| +261|2023-10-06T21:18:20.4760000-07:00|Change|10FF0009||||||||||||||||| +261|2023-10-06T21:18:20.5760000-07:00|Change|40022C39||||||||| +39|2023-10-06T21:18:21.0120000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3450|10000|||87.42|83.63|0.00|1.85| +21|2023-10-06T21:18:21.0120000-07:00|40022472|Zeromus|8B46|Visceral Whirl|40022472|Zeromus|1B|8B468000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14986804|40478540|10000|10000|||100.00|80.10|0.00|0.00|14986804|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019E14|0|1| +26|2023-10-06T21:18:21.0120000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:18:21.0120000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|11B00000|104|69C8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|14986804|40478540|10000|10000|||100.00|80.10|0.00|0.00|65205|81541|2000|10000|||87.41|84.25|0.00|1.70|00019E15|0|1| +261|2023-10-06T21:18:20.5760000-07:00|Change|40022472||||| +261|2023-10-06T21:18:20.5760000-07:00|Change|40022C3D||||||||| +37|2023-10-06T21:18:21.1010000-07:00|40022472|Zeromus|00019E0D|14964455||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:20.6900000-07:00|Change|40022C3B||||||||| +261|2023-10-06T21:18:20.8030000-07:00|Change|40022C3A||||||||| +261|2023-10-06T21:18:20.8030000-07:00|Change|10FF0006||| +261|2023-10-06T21:18:20.8030000-07:00|Change|40022C41||||||||| +37|2023-10-06T21:18:21.4140000-07:00|40022472|Zeromus|00019E0E|14935058||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:21.4140000-07:00|10FF000A|Dukaro Nezikaro|00019E0E|82773|82773|10000|10000|23||89.04|85.56|0.00|2.03|1E00|0|0|01|070001FB|0|41A00000|| +39|2023-10-06T21:18:21.4140000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:21.4140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|23||89.04|85.56|0.00|2.03|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:21.0280000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:18:21.5020000-07:00|40022472|Zeromus|00019E12|14928652||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:21.5020000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|3450|10000|||87.42|83.63|0.00|1.85|81809|81809|3450|10000|||87.42|83.63|0.00|1.85|00019E16|0|1| +37|2023-10-06T21:18:21.5470000-07:00|40022472|Zeromus|00019E11|14914105||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:21.5920000-07:00|40022472|Zeromus|00019E10|14904160||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:21.5920000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|1A1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14928652|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.66|82.81|0.00|1.79|00019E17|0|1| +261|2023-10-06T21:18:21.1400000-07:00|Change|40022C40||||||||| +38|2023-10-06T21:18:21.6360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||89.04|85.56|0.00|2.03|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:21.6360000-07:00|77D|Seraphic Veil|0.00|40022BEC|Seraph|10FF000A|Dukaro Nezikaro|00|82773|| +261|2023-10-06T21:18:21.2300000-07:00|Change|40022C3C||||||||| +21|2023-10-06T21:18:21.6810000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EEE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14904160|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.66|82.81|0.00|1.79|00019E18|0|1| +261|2023-10-06T21:18:21.2300000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:18:21.7700000-07:00|40022472|Zeromus|00019E13|14884318||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:21.3250000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:18:21.8140000-07:00|4002248F|Zeromus|8B47|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|00019E19|0|0| +21|2023-10-06T21:18:21.8140000-07:00|40022490|Zeromus|8B48|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|00019E1A|0|0| +20|2023-10-06T21:18:21.8140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|90.52|82.65|0.00|2.03| +261|2023-10-06T21:18:21.3250000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:18:21.3250000-07:00|Change|40022490||||||||||||| +21|2023-10-06T21:18:21.8580000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|200004|22570000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|71204|81177|4535|10000|||88.98|85.92|0.00|2.06|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019E1B|0|1| +21|2023-10-06T21:18:21.8580000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|752003|52170000|4|26AD8000|0|0|0|0|0|0|0|0|0|0|0|0|14884318|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9100|10000|||94.41|82.97|0.00|2.05|00019E1C|0|1| +38|2023-10-06T21:18:21.8580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|8||94.41|82.97|0.00|2.05|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:21.8580000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T21:18:21.9920000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||89.06|85.56|0.00|1.89| +261|2023-10-06T21:18:21.5220000-07:00|Change|40022C3F||||||||| +261|2023-10-06T21:18:21.6160000-07:00|Change|40022C3E||||||||| +261|2023-10-06T21:18:21.6160000-07:00|Change|40022C37||||||||| +37|2023-10-06T21:18:22.0380000-07:00|40022472|Zeromus|00019E15|14879790||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:22.0380000-07:00|10FF0004|Buhojaqe Zijaqe|00019E15|66897||||||91.58|82.49|0.00|1.97| +21|2023-10-06T21:18:22.0380000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|D7F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14884318|40478540|10000|10000|||100.00|80.10|0.00|0.00|53838|73814|3900|10000|||90.26|83.42|0.00|1.89|00019E1D|0|1| +37|2023-10-06T21:18:22.0820000-07:00|40022472|Zeromus|00019E0F|14865044||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:21.6160000-07:00|Change|4002248D||||||||||||||||||||| +261|2023-10-06T21:18:21.6160000-07:00|Change|4002248C||||||||||||||||||||| +261|2023-10-06T21:18:21.6160000-07:00|Change|4002248A||||||||||||||||||||| +261|2023-10-06T21:18:21.6160000-07:00|Change|4002248E||||||||||||||||||||| +21|2023-10-06T21:18:22.0820000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|25CE0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|14884318|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||89.07|85.56|0.00|1.79|00019E1E|0|1| +37|2023-10-06T21:18:22.1270000-07:00|10FF0006|Wowobora Gogobora|00019E16|81809|81809|3450|10000|12||87.43|83.63|0.00|1.92|1B00|0|0|01|080004B4|0|41A80000|| +26|2023-10-06T21:18:22.1270000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:18:21.6160000-07:00|Change|40022489||||||||||||||||||||| +20|2023-10-06T21:18:22.1270000-07:00|40022489|Zeromus|8B49|Miasmic Blast|40022489|Zeromus|7.700|105.00|100.00|0.00|0.00| +261|2023-10-06T21:18:21.6160000-07:00|Change|4002248B||||||||||||||||||||| +20|2023-10-06T21:18:22.1270000-07:00|4002248A|Zeromus|8CF8|unknown_8cf8|4002248A|Zeromus|7.700|95.00|100.00|0.00|0.00| +20|2023-10-06T21:18:22.1270000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|4002248B|Zeromus|7.700|105.00|100.00|0.00|0.00| +20|2023-10-06T21:18:22.1270000-07:00|4002248C|Zeromus|8CF8|unknown_8cf8|4002248C|Zeromus|7.700|95.00|100.00|0.00|0.00| +20|2023-10-06T21:18:22.1270000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|4002248D|Zeromus|7.700|105.00|100.00|0.00|0.00| +20|2023-10-06T21:18:22.1270000-07:00|4002248E|Zeromus|8CF8|unknown_8cf8|4002248E|Zeromus|7.700|95.00|100.00|0.00|0.00| +21|2023-10-06T21:18:22.1270000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E090000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|126967|129844|10000|10000|||88.55|84.40|0.00|1.93|14884318|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019E1F|0|1| +37|2023-10-06T21:18:22.2160000-07:00|40022472|Zeromus|00019E17|14858357||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:22.2160000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|930|90216|90216|10000|10000|||87.66|82.81|0.00|1.79|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.71| +21|2023-10-06T21:18:22.2160000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|15270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14865044|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.66|82.81|0.00|1.79|00019E20|0|1| +21|2023-10-06T21:18:22.2160000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14865044|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||89.11|85.56|-0.02|2.07|00019E21|0|1| +38|2023-10-06T21:18:22.2160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||87.66|82.81|0.00|1.79|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:18:22.2610000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|F25|82773|82773|10000|10000|||89.31|85.55|0.00|2.07|10FF0006|Wowobora Gogobora|0|81809|81809|3450|10000|||87.44|83.63|0.00|2.01| +21|2023-10-06T21:18:22.2610000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|B030000|60E30E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|14858357|40478540|10000|10000|||100.00|80.10|0.00|0.00|71204|81177|4535|10000|||88.99|85.95|0.00|1.62|00019E22|0|1| +38|2023-10-06T21:18:22.2610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||89.31|85.55|0.00|2.07|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:18:22.3050000-07:00|10FF0003|Gegehi Gehi|HoT|0|102A|53838|73814|3900|10000|||90.26|83.42|0.00|1.90|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.55| +261|2023-10-06T21:18:21.8600000-07:00|Change|10FF0009||||||||||| +38|2023-10-06T21:18:22.3060000-07:00|10FF0003|Gegehi Gehi|005A5A23|57976|73814|4450|10000|10||90.26|83.42|0.00|1.90|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:18:22.3500000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|7C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14858357|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3450|10000|||88.05|83.39|0.00|2.01|00019E23|0|1| +24|2023-10-06T21:18:22.3960000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|97F|66897|81541|2000|10000|||92.24|82.38|-0.02|1.86|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.42| +38|2023-10-06T21:18:22.3960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69328|81541|2000|10000|20||92.24|82.38|-0.02|1.86|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:18:22.4400000-07:00|40022472|Zeromus|00019E18|14854535||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:21.9780000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:18:22.4840000-07:00|40022472|Zeromus|00019E1E|14844857||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:22.4840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|F05|126967|129844|10000|10000|||88.55|84.40|0.00|1.93|10FF0007|Kehabiqo Febiqo|0|126967|129844|10000|10000|||88.55|84.40|0.00|1.93| +24|2023-10-06T21:18:22.4840000-07:00|10FF0006|Wowobora Gogobora|HoT|0|EF1|81809|81809|3450|10000|||88.86|83.07|0.00|1.99|10FF0006|Wowobora Gogobora|0|81809|81809|3450|10000|||88.86|83.07|0.00|1.99| +38|2023-10-06T21:18:22.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||88.55|84.40|0.00|1.93|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:22.4840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4000|10000|12||88.86|83.07|0.00|1.99|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:22.0910000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:18:22.5290000-07:00|10FF0009|Zewo Negiwo|HoT|0|95F|71204|81177|4135|10000|||89.29|86.18|0.00|2.00|10FF0006|Wowobora Gogobora|0|81809|81809|3450|10000|||88.86|83.07|0.00|1.99| +21|2023-10-06T21:18:22.5290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|73D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14854535|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||94.41|82.97|0.00|2.05|00019E24|0|1| +21|2023-10-06T21:18:22.5290000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14854535|40478540|10000|10000|||100.00|80.10|0.00|0.00|57976|73814|4450|10000|||90.26|83.42|0.00|1.90|00019E25|0|1| +38|2023-10-06T21:18:22.5290000-07:00|10FF0009|Zewo Negiwo|005A5A18|73603|81177|4135|10000|0||89.29|86.18|0.00|2.00|0|0|0|||||||||||||||||||||| +31|2023-10-06T21:18:22.5290000-07:00|10FF0001||||| +24|2023-10-06T21:18:22.5730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|976|129071|129071|8100|10000|||94.45|83.08|0.00|0.34|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.41| +38|2023-10-06T21:18:22.5730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|8||94.45|83.08|0.00|0.34|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:22.6180000-07:00|40022472|Zeromus|00019E1C|14823842||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:22.6630000-07:00|10FF0009|Zewo Negiwo|00019E1B|81177||||||89.89|86.59|0.00|1.78| +37|2023-10-06T21:18:22.6630000-07:00|40022472|Zeromus|00019E1D|14820387||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:22.6630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|15910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14844857|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||88.55|84.40|0.00|1.93|00019E26|0|1| +261|2023-10-06T21:18:22.2810000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:22.2810000-07:00|Change|40022C3D||||||||| +261|2023-10-06T21:18:22.2810000-07:00|Change|40022C39||||||||| +37|2023-10-06T21:18:22.7530000-07:00|40022472|Zeromus|00019E21|14817449||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:22.7530000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|29E90000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|14820387|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4000|10000|||90.28|82.86|0.00|1.83|00019E27|0|1| +21|2023-10-06T21:18:22.7530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|45690000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14820387|40478540|10000|10000|||100.00|80.10|0.00|0.00|69328|81541|2000|10000|||92.24|82.38|0.00|1.86|00019E28|0|1| +38|2023-10-06T21:18:22.7530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3700|10000|12||90.28|82.86|0.00|1.83|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:22.7530000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:18:22.2810000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:18:22.7970000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|722003|1DCB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14817449|40478540|10000|10000|||100.00|80.10|0.00|0.00|57976|73814|4450|10000|||90.26|83.42|-0.02|1.90|00019E29|0|1| +261|2023-10-06T21:18:22.3810000-07:00|Change|40022C3B||||||||| +37|2023-10-06T21:18:22.8860000-07:00|40022472|Zeromus|00019E23|14817325||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:18:22.3810000-07:00|40022C45|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||100.96|100.81|0.00|3.10| +37|2023-10-06T21:18:22.9300000-07:00|10FF0007|Kehabiqo Febiqo|00019E1F|113963||||||88.66|84.46|-0.02|1.93| +261|2023-10-06T21:18:22.4750000-07:00|Remove|40022C45| +261|2023-10-06T21:18:22.4750000-07:00|Change|40022C3A||||||||| +261|2023-10-06T21:18:22.4750000-07:00|Change|40022C41||||||||| +37|2023-10-06T21:18:23.0190000-07:00|40022472|Zeromus|00019E20|14811910||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:23.0640000-07:00|40022472|Zeromus|00019E24|14810057||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:23.0640000-07:00|40022472|Zeromus|00019E25|14810056||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:23.1970000-07:00|40022472|Zeromus|00019E26|14804535||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:22.8290000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:18:22.8290000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:18:22.8290000-07:00|Change|40022C40||||||||| +261|2023-10-06T21:18:22.9440000-07:00|Change|40022C3C||||||||| +38|2023-10-06T21:18:23.3320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||88.65|82.88|0.00|1.63|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:23.3320000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:18:23.3320000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3700|10000|0||92.53|83.04|0.00|1.75|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:23.3320000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:18:23.3320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||98.42|83.73|0.00|0.02|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:23.3320000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:18:23.3320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69328|81541|1600|10000|0||94.17|82.68|0.00|1.59|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:23.3320000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:18:23.3320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||95.80|85.32|0.00|1.62|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:23.3320000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:18:23.3760000-07:00|40022472|Zeromus|00019E27|14793806||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:23.3760000-07:00|10FF0006|Wowobora Gogobora|00019E27|81809|81809|3700|10000|0||92.53|83.04|0.00|1.75|1B00|0|0|01|09000B25|0|0|| +37|2023-10-06T21:18:23.3760000-07:00|40022472|Zeromus|00019E29|14786179||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:23.3760000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|12A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14804535|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3700|10000|||92.53|83.04|0.00|1.75|00019E2A|0|1| +38|2023-10-06T21:18:23.3760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3700|10000|0||92.53|83.04|0.00|1.75|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:23.3760000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:18:23.4210000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|42AE0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|14786179|40478540|10000|10000|||100.00|80.10|0.00|0.00|113963|129844|10000|10000|||92.20|85.26|0.00|1.40|00019E2B|0|1| +26|2023-10-06T21:18:23.4210000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:18:23.4210000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|12230000|104|6C78000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|14786179|40478540|10000|10000|||100.00|80.10|0.00|0.00|69328|81541|1600|10000|||94.85|82.76|0.00|1.54|00019E2C|0|1| +21|2023-10-06T21:18:23.4650000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|4F220000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|14786179|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.87|82.92|0.00|1.62|00019E2D|0|1| +261|2023-10-06T21:18:23.0670000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:23.5540000-07:00|40022472|Zeromus|00019E22|14783360|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|074F|0|41F00000|| +26|2023-10-06T21:18:23.5540000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:18:23.5540000-07:00|40022472|Zeromus|00019E28|14765591||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:23.5540000-07:00|10FF0003|Gegehi Gehi|58714|73814|4650|10000|||90.35|83.42|0.00|1.73| +21|2023-10-06T21:18:23.5540000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022472|Zeromus|152003|705E0000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|0|0|14786179|40478540|10000|10000|||100.00|80.10|0.00|0.00|57976|73814|4450|10000|||90.35|83.42|0.00|1.73|00019E2E|0|1| +38|2023-10-06T21:18:23.5540000-07:00|10FF0003|Gegehi Gehi|005A5A23|58714|73814|4250|10000|10||90.35|83.42|0.00|1.73|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:23.5540000-07:00|7B3|Manafication|8.45|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73814|73814| +261|2023-10-06T21:18:23.0670000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:18:23.5980000-07:00|10FF0009|Zewo Negiwo|81177|81177|4356|10000|||95.14|88.55|0.00|1.36| +261|2023-10-06T21:18:23.1670000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:23.2570000-07:00|Change|40022C3F||||||||| +39|2023-10-06T21:18:23.7310000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||89.14|82.97|0.00|1.84| +24|2023-10-06T21:18:23.7760000-07:00|40022472|Zeromus|DoT|0|20B5|14765591|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|69328|81541|1600|10000|||96.40|82.95|0.00|1.93| +38|2023-10-06T21:18:23.7760000-07:00|40022472|Zeromus|005A5A00|14757218|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:18:23.3500000-07:00|Change|40022C37||||||||| +261|2023-10-06T21:18:23.3500000-07:00|Change|40022C3E||||||||| +39|2023-10-06T21:18:23.8640000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8300|10000|||100.80|84.32|0.00|-0.22| +36|2023-10-06T21:18:23.8640000-07:00|38A4|3| +39|2023-10-06T21:18:23.9090000-07:00|10FF0004|Buhojaqe Zijaqe|70143|81541|1800|10000|||96.75|83.01|0.00|1.76| +261|2023-10-06T21:18:23.4440000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:18:23.9980000-07:00|10FF0007|Kehabiqo Febiqo|115261|129844|10000|10000|||95.57|86.02|0.00|1.50| +39|2023-10-06T21:18:23.9980000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3900|10000|||94.76|83.20|0.00|1.93| +261|2023-10-06T21:18:23.5390000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:18:23.6310000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:18:24.0430000-07:00|40022472|Zeromus|00019E2B|14740148||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:24.0430000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14757218|40478540|10000|10000|||100.00|80.10|0.00|0.00|70143|81541|1800|10000|||97.57|83.36|0.00|1.48|00019E2F|0|1| +37|2023-10-06T21:18:24.1320000-07:00|40022472|Zeromus|00019E2A|14735380||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:24.1320000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|164D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14757218|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.50|83.02|0.00|1.63|00019E30|0|1| +261|2023-10-06T21:18:23.6310000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:18:24.2220000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|56AA0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|14735380|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||101.87|85.87|0.00|1.09|00019E31|0|1| +37|2023-10-06T21:18:24.2650000-07:00|40022472|Zeromus|00019E2D|14715122||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:24.2650000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|276E0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|14735380|40478540|10000|10000|||100.00|80.10|0.00|0.00|70143|81541|1800|10000|||98.55|83.95|0.00|1.24|00019E32|0|1| +21|2023-10-06T21:18:24.3550000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|A150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14735380|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.97|84.17|0.00|1.27|00019E33|0|1| +21|2023-10-06T21:18:24.3550000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2D050000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|14735380|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||103.92|85.13|0.00|-0.29|00019E34|0|1| +38|2023-10-06T21:18:24.3550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|0||103.92|85.13|0.00|-0.29|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:24.3550000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +39|2023-10-06T21:18:24.4000000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:24.4000000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|11AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14735380|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||102.63|85.60|0.00|-2.56|00019E35|0|1| +37|2023-10-06T21:18:24.4450000-07:00|40022472|Zeromus|00019E2C|14710479||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:24.4450000-07:00|10FF0004|Buhojaqe Zijaqe|00019E2C|71878||||||98.90|84.13|0.00|3.11| +261|2023-10-06T21:18:23.9780000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:18:23.9780000-07:00|Change|40022C3D||||||||| +261|2023-10-06T21:18:23.9780000-07:00|Change|40022C39||||||||| +261|2023-10-06T21:18:24.0970000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:18:24.0970000-07:00|Change|40022C3B||||||||| +37|2023-10-06T21:18:24.5780000-07:00|40022472|Zeromus|00019E2F|14710311||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:24.1880000-07:00|Change|40022C3A||||||||| +261|2023-10-06T21:18:24.1880000-07:00|Change|40022C41||||||||| +37|2023-10-06T21:18:24.7570000-07:00|40022472|Zeromus|00019E30|14704602||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:24.7570000-07:00|40022472|Zeromus|00019E31|14682416||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:24.2850000-07:00|Change|40022C4D||||||||| +261|2023-10-06T21:18:24.2850000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:18:24.8020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14710311|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||106.02|86.34|0.00|-0.36|00019E36|0|1| +31|2023-10-06T21:18:24.8020000-07:00|10FF0001||||| +261|2023-10-06T21:18:24.3830000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:18:24.3830000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:18:24.3830000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:18:24.8910000-07:00|40022C4D|Carbuncle|77698|77698|10000|10000|||94.47|84.27|0.00|1.70| +37|2023-10-06T21:18:24.9360000-07:00|40022472|Zeromus|00019E35|14677893||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:24.4800000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:18:24.4800000-07:00|Change|40022C40||||||||| +37|2023-10-06T21:18:24.9800000-07:00|40022472|Zeromus|00019E2E|14649127||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:24.9800000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||106.52|87.38|0.00|1.78| +261|2023-10-06T21:18:24.4800000-07:00|Change|40022C3C||||||||| +21|2023-10-06T21:18:25.0710000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|153D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|58714|73814|4250|10000|||96.63|84.17|0.00|1.39|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019E37|0|1| +261|2023-10-06T21:18:24.5990000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:18:25.1150000-07:00|40022472|Zeromus|00019E33|14646546||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:25.1590000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41960000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|115261|129844|10000|10000|||101.17|88.53|0.00|1.71|14649127|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019E38|0|1| +37|2023-10-06T21:18:25.2030000-07:00|40022472|Zeromus|00019E32|14636452||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:25.2030000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|932|90216|90216|10000|10000|||91.76|89.36|0.00|0.42|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.11| +21|2023-10-06T21:18:25.2030000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|14649127|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3900|10000|||102.08|83.27|0.00|1.53|00019E39|0|1| +38|2023-10-06T21:18:25.2030000-07:00|40022C4D|Carbuncle|005A5A00|0|77698|0|10000|0||95.73|84.36|0.00|1.55|0|0|0||||||| +26|2023-10-06T21:18:25.2030000-07:00|30|Well Fed|1368.08|10FF0006|Wowobora Gogobora|40022C4D|Carbuncle|2964|77698|81809| +38|2023-10-06T21:18:25.2030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||91.76|89.36|0.00|0.42|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:18:25.2030000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3900|10000|0||102.08|83.27|0.00|1.53|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:25.2030000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:18:25.2480000-07:00|40022C5D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +24|2023-10-06T21:18:25.2480000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9FF|82773|82773|10000|10000|||108.27|88.33|0.00|1.32|10FF0006|Wowobora Gogobora|0|81809|81809|3900|10000|||102.77|83.08|0.00|-2.27| +38|2023-10-06T21:18:25.2480000-07:00|40022C5D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:18:25.2480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||108.27|88.33|0.00|1.32|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:18:25.2920000-07:00|10FF0003|Gegehi Gehi|HoT|0|9F2|58714|73814|4250|10000|||97.95|84.41|0.00|1.39|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.04| +38|2023-10-06T21:18:25.2920000-07:00|10FF0003|Gegehi Gehi|005A5A23|61260|73814|4800|10000|10||97.95|84.41|0.00|1.39|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:24.8260000-07:00|Add|40022C5D||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:24.8260000-07:00|Remove|40022C39| +03|2023-10-06T21:18:24.8260000-07:00|40022C5D|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||105.77|82.66|0.00|-2.27| +37|2023-10-06T21:18:25.3360000-07:00|40022472|Zeromus|00019E36|14634508||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:24.8260000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:24.8260000-07:00|Change|40022C3F||||||||| +21|2023-10-06T21:18:25.3370000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|754003|16B10000|104|87A8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|14636452|40478540|10000|10000|||100.00|80.10|0.00|0.00|71878|81541|1400|10000|||104.36|86.57|0.00|1.26|00019E3A|0|1| +38|2023-10-06T21:18:25.3370000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71878|81541|1400|10000|0||104.36|86.57|0.00|1.26|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:25.3370000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +24|2023-10-06T21:18:25.3810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9C3|71878|81541|1400|10000|||104.36|86.57|0.00|1.26|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.97| +38|2023-10-06T21:18:25.3810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74377|81541|1400|10000|0||104.36|86.57|0.00|1.26|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:24.9420000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:18:24.9420000-07:00|Change|40022C5D||||| +261|2023-10-06T21:18:24.9420000-07:00|Change|40022C3E||||||||| +24|2023-10-06T21:18:25.4700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FD6|115261|129844|10000|10000|||103.08|88.50|0.00|1.70|10FF0007|Kehabiqo Febiqo|0|115261|129844|10000|10000|||103.08|88.50|0.00|1.70| +24|2023-10-06T21:18:25.4700000-07:00|10FF0006|Wowobora Gogobora|HoT|0|987|81809|81809|3900|10000|||104.01|82.79|0.00|-2.60|10FF0006|Wowobora Gogobora|0|81809|81809|3900|10000|||104.01|82.79|0.00|-2.60| +21|2023-10-06T21:18:25.4700000-07:00|10FF0009|Zewo Negiwo|1D06|Thin Air|10FF0009|Zewo Negiwo|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|4356|10000|||106.39|87.68|0.00|1.58|81177|81177|4356|10000|||106.39|87.68|0.00|1.58|00019E3B|0|1| +21|2023-10-06T21:18:25.4700000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14634508|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3900|10000|||104.01|82.79|0.00|-2.60|00019E3C|0|1| +38|2023-10-06T21:18:25.4700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119315|129844|10000|10000|0||103.08|88.50|0.00|1.70|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:25.4700000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4356|10000|0||106.39|87.68|0.00|1.58|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:25.4700000-07:00|4C1|Thin Air|12.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +38|2023-10-06T21:18:25.4700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4450|10000|0||104.01|82.79|0.00|-2.60|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:25.0610000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:18:25.0610000-07:00|Change|40022C37||||||||| +24|2023-10-06T21:18:25.5140000-07:00|10FF0009|Zewo Negiwo|HoT|0|9D9|81177|81177|4356|10000|||106.39|87.68|0.00|1.58|10FF0006|Wowobora Gogobora|0|81809|81809|3900|10000|||104.01|82.79|0.00|-2.60| +38|2023-10-06T21:18:25.5140000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4356|10000|0||106.39|87.68|0.00|1.58|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:18:25.5600000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1015|129071|129071|8300|10000|||110.48|88.02|0.00|-0.36|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-2.96| +38|2023-10-06T21:18:25.5600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|0||110.48|88.02|0.00|-0.36|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:25.1520000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:18:25.6500000-07:00|40022472|Zeromus|00019E34|14622983||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:25.6500000-07:00|10FF0001|Sesuga Sapisuga|00019E34|129071|129071|8700|10000|0||111.09|88.26|0.00|-0.36|1300|0|0|0| +38|2023-10-06T21:18:25.6500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119315|129844|10000|10000|0||104.33|88.37|0.00|1.70|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:25.6500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:18:25.6500000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|-2.97|0|0|0||||||||||||| +30|2023-10-06T21:18:25.6500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022C1B|Ruby Carbuncle|00|77430|81809| +38|2023-10-06T21:18:25.6500000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4356|10000|0||107.73|87.97|0.00|1.35|0|0|0|||||||||||||||| +30|2023-10-06T21:18:25.6500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|00|81177|81809| +38|2023-10-06T21:18:25.6500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||94.65|91.47|0.00|0.89|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:25.6500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:18:25.6500000-07:00|40022C5D|Emerald Garuda|005A5A00|74223|77698|10000|10000|0||105.77|82.66|0.00|-2.27|0|0|0||||||| +26|2023-10-06T21:18:25.6500000-07:00|511|Embolden|11.53|10FF0003|Gegehi Gehi|40022C5D|Emerald Garuda|00|77698|73814| +26|2023-10-06T21:18:25.6500000-07:00|30|Well Fed|1367.63|10FF0006|Wowobora Gogobora|40022C5D|Emerald Garuda|2964|77698|81809| +38|2023-10-06T21:18:25.6500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4450|10000|0||105.25|82.59|0.00|3.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:25.6500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:18:25.6500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|0||111.09|88.26|0.00|-0.36|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:25.6500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:18:25.6500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74377|81541|1400|10000|0||106.36|87.46|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:25.6500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:18:25.6500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||111.06|89.59|0.00|1.19|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:25.6500000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|82773|81809| +261|2023-10-06T21:18:25.1520000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:18:25.2560000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:18:25.3500000-07:00|Change|40022C4D||||||||| +261|2023-10-06T21:18:25.3500000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:18:25.8720000-07:00|10FF0003|Gegehi Gehi|00019E37|66697||||||101.67|85.30|0.00|1.32| +21|2023-10-06T21:18:25.8720000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|5D370000|143E|340000|4|19CB8000|11B|2A8000|0|0|0|0|0|0|0|0|14622983|40478540|10000|10000|||100.00|80.10|0.00|0.00|119315|129844|10000|10000|||105.47|87.81|0.00|1.97|00019E3D|0|1| +37|2023-10-06T21:18:25.9610000-07:00|10FF0007|Kehabiqo Febiqo|00019E38|102525||||||105.47|87.81|0.00|1.97| +21|2023-10-06T21:18:25.9610000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|750003|51170000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|14622983|40478540|10000|10000|||100.00|80.10|0.00|0.00|61260|73814|4800|10000|||101.67|85.30|0.00|1.32|00019E3E|0|1| +38|2023-10-06T21:18:25.9610000-07:00|10FF0003|Gegehi Gehi|005A5A23|66697|73814|4400|10000|10||101.67|85.30|0.00|1.32|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:25.9610000-07:00|7B3|Manafication|6.04|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +261|2023-10-06T21:18:25.4510000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:18:26.0060000-07:00|40022472|Zeromus|00019E3C|14622910||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:26.0060000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|650C0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|14622983|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.49|90.99|0.00|2.20|00019E3F|0|1| +21|2023-10-06T21:18:26.0060000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14622983|40478540|10000|10000|||100.00|80.10|0.00|0.00|66697|73814|4400|10000|||102.32|85.47|0.00|-2.66|00019E40|0|1| +38|2023-10-06T21:18:26.0060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102525|129844|10000|10000|0||106.04|87.51|0.00|-2.54|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:26.0060000-07:00|31|Medicated|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|296B|129844|129844| +261|2023-10-06T21:18:25.5630000-07:00|Change|40022C1B||||||||| +21|2023-10-06T21:18:26.0500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|13DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14622910|40478540|10000|10000|||100.00|80.10|0.00|0.00|102525|129844|10000|10000|||106.49|87.25|0.00|-2.62|00019E41|0|1| +04|2023-10-06T21:18:25.6800000-07:00|40022C40|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||113.97|119.66|0.00|-2.50| +261|2023-10-06T21:18:25.6800000-07:00|Remove|40022C40| +261|2023-10-06T21:18:25.7980000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:18:25.7980000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:18:25.7980000-07:00|Change|40022C3B||||||||| +37|2023-10-06T21:18:26.2290000-07:00|10FF0009|Zewo Negiwo|00019E3B|81177|81177|4356|10000|0||109.99|85.95|0.00|2.29|1800|0|0|01|040004C1|FF9C|41400000|| +37|2023-10-06T21:18:26.2290000-07:00|10FF0006|Wowobora Gogobora|00019E39|81809|81809|4450|10000|0||107.93|83.90|-0.02|1.08|1B00|0|0|01|03000AA5|0|0|| +38|2023-10-06T21:18:26.2290000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4356|10000|0||109.99|85.95|0.00|2.29|0|0|0|||||||||||||||| +38|2023-10-06T21:18:26.2290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4450|10000|0||107.93|83.90|-0.02|1.08|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:25.7980000-07:00|Change|40022C3A||||||||| +261|2023-10-06T21:18:25.7980000-07:00|Change|40022C5D||| +261|2023-10-06T21:18:25.9150000-07:00|Change|40022C41||||||||| +261|2023-10-06T21:18:25.9150000-07:00|Change|40022C3D||||||||| +261|2023-10-06T21:18:25.9150000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:26.3620000-07:00|40022472|Zeromus|00019E3A|14617101||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:26.3620000-07:00|10FF0004|Buhojaqe Zijaqe|00019E3A|76547||||||110.23|89.88|0.00|1.03| +261|2023-10-06T21:18:26.0280000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:18:26.1420000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:18:26.5410000-07:00|40022472|Zeromus|00019E40|14617100||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:26.5410000-07:00|10FF0003|Gegehi Gehi|67435|73814|4600|10000|||105.19|86.25|0.00|1.95| +37|2023-10-06T21:18:26.5850000-07:00|40022472|Zeromus|00019E41|14612014||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:26.5850000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14617101|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||115.39|92.53|0.00|1.39|00019E42|0|1| +39|2023-10-06T21:18:26.6300000-07:00|10FF0009|Zewo Negiwo|81177|81177|4577|10000|||112.32|85.97|0.00|1.93| +261|2023-10-06T21:18:26.2400000-07:00|Change|40022C3C||||||||| +39|2023-10-06T21:18:26.7190000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||98.64|90.70|0.00|2.71| +24|2023-10-06T21:18:26.7650000-07:00|40022472|Zeromus|DoT|0|177C|14612014|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|76547|81541|1400|10000|||112.13|90.84|0.00|1.08| +38|2023-10-06T21:18:26.7650000-07:00|40022472|Zeromus|005A5A00|14606002|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T21:18:26.8080000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|712003|292A0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|14606002|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||117.02|92.73|0.00|1.50|00019E43|0|1| +261|2023-10-06T21:18:26.4320000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:18:26.4320000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:18:26.8530000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|21F80000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|14606002|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||116.92|91.86|0.00|-0.66|00019E44|0|1| +36|2023-10-06T21:18:26.8530000-07:00|3980|3| +39|2023-10-06T21:18:26.8980000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8900|10000|||117.12|92.42|0.00|-0.69| +39|2023-10-06T21:18:26.8980000-07:00|10FF0004|Buhojaqe Zijaqe|77362|81541|1600|10000|||113.42|91.47|0.00|1.11| +04|2023-10-06T21:18:26.4320000-07:00|40022C3D|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||101.98|119.66|0.00|2.53| +261|2023-10-06T21:18:26.5300000-07:00|Remove|40022C3D| +39|2023-10-06T21:18:26.9860000-07:00|10FF0007|Kehabiqo Febiqo|103823|129844|10000|10000|||107.79|89.22|0.00|1.99| +39|2023-10-06T21:18:26.9860000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4650|10000|||111.85|86.59|0.00|1.01| +21|2023-10-06T21:18:27.0310000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14606002|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.44|90.56|0.00|2.47|00019E45|0|1| +261|2023-10-06T21:18:26.6430000-07:00|Change|40022C3F||||||||| +21|2023-10-06T21:18:27.0750000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14606002|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||117.49|92.89|0.00|-0.80|00019E46|0|1| +31|2023-10-06T21:18:27.0750000-07:00|10FF0001||||| +37|2023-10-06T21:18:27.1190000-07:00|40022472|Zeromus|00019E42|14603136||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:26.6430000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:18:26.6430000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:27.1640000-07:00|40022472|Zeromus|00019E3F|14577268||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:27.1640000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|10F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14603136|40478540|10000|10000|||100.00|80.10|0.00|0.00|77362|81541|1600|10000|||114.74|92.13|0.00|1.11|00019E47|0|1| +261|2023-10-06T21:18:26.6430000-07:00|Change|40022C3E||||||||| +261|2023-10-06T21:18:26.7570000-07:00|Change|40022C37||||||||| +37|2023-10-06T21:18:27.2090000-07:00|40022472|Zeromus|00019E43|14566730||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:26.7570000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:18:26.8750000-07:00|Change|40022C4D||||||||| +21|2023-10-06T21:18:27.2990000-07:00|40022C5D|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|354003|7A1C0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|14566730|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||105.77|82.66|0.00|-2.27|00019E48|0|1| +37|2023-10-06T21:18:27.3880000-07:00|40022472|Zeromus|00019E3D|14542867||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:27.3880000-07:00|10FF0007|Kehabiqo Febiqo|00019E3D|110426||||||108.02|87.59|0.00|-3.09| +39|2023-10-06T21:18:27.3880000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +261|2023-10-06T21:18:26.9890000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:18:27.4770000-07:00|40022472|Zeromus|00019E44|14534171||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:27.4770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|116.48|93.04|0.00|1.11| +37|2023-10-06T21:18:27.6100000-07:00|40022472|Zeromus|00019E46|14532313||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:27.2040000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:18:27.6540000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|23930000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|14534171|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4650|10000|||114.97|88.92|0.00|0.90|00019E49|0|1| +37|2023-10-06T21:18:27.6980000-07:00|40022472|Zeromus|00019E47|14532042||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:18:27.3010000-07:00|40022C3A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||89.98|119.66|0.00|2.06| +261|2023-10-06T21:18:27.3010000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:18:27.3010000-07:00|Remove|40022C3A| +37|2023-10-06T21:18:27.7870000-07:00|40022472|Zeromus|00019E45|14529697||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:27.7870000-07:00|40022472|Zeromus|00019E3E|14508938||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:27.3990000-07:00|Change|40022C3B||||||||| +261|2023-10-06T21:18:27.5880000-07:00|Change|40022C41||||||||| +261|2023-10-06T21:18:27.5880000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:18:28.0100000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20| +20|2023-10-06T21:18:28.0100000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|117.18|92.72|0.00|0.25| +261|2023-10-06T21:18:27.6800000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:18:27.7970000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:18:28.1880000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42D70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|110426|129844|10000|10000|||111.06|89.38|0.00|2.32|14508938|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019E4A|0|1| +24|2023-10-06T21:18:28.2330000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9BE|90216|90216|10000|10000|||108.67|91.42|-0.01|1.72|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:28.2330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||108.67|91.42|-0.01|1.72|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:18:28.2780000-07:00|40022472|Zeromus|00019E49|14499831||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:28.2780000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9B3|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20| +38|2023-10-06T21:18:28.2780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:18:28.3220000-07:00|10FF0003|Gegehi Gehi|HoT|0|92B|67435|73814|4600|10000|||114.05|90.62|0.00|1.32|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:28.3220000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|18380000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|14508938|40478540|10000|10000|||100.00|80.10|0.00|0.00|110426|129844|10000|10000|||111.06|89.38|0.00|2.32|00019E4B|0|1| +38|2023-10-06T21:18:28.3220000-07:00|10FF0003|Gegehi Gehi|005A5A23|69782|73814|5150|10000|10||114.05|90.62|0.00|1.32|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:27.9160000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:18:28.4120000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F27|77362|81541|1600|10000|||117.27|93.25|0.00|-2.22|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:28.4120000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|325B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14499831|40478540|10000|10000|||100.00|80.10|0.00|0.00|77362|81541|1600|10000|||117.27|93.25|0.00|-2.22|00019E4C|0|1| +38|2023-10-06T21:18:28.4120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81241|81541|1200|10000|0||117.27|93.25|0.00|-2.22|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:18:28.4560000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14A40000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|110426|129844|10000|10000|||111.39|89.96|0.00|-2.31|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019E4D|0|1| +24|2023-10-06T21:18:28.5020000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|94A|110426|129844|10000|10000|||111.54|90.28|0.00|-2.31|10FF0007|Kehabiqo Febiqo|0|110426|129844|10000|10000|||111.54|90.28|0.00|-2.31| +24|2023-10-06T21:18:28.5020000-07:00|10FF0006|Wowobora Gogobora|HoT|0|EDC|81809|81809|4350|10000|||117.74|92.72|0.00|0.57|10FF0006|Wowobora Gogobora|0|81809|81809|4350|10000|||117.74|92.72|0.00|0.57| +38|2023-10-06T21:18:28.5020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112804|129844|10000|10000|0||111.54|90.28|0.00|-2.31|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:28.5020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4900|10000|0||117.74|92.72|0.00|0.57|0|0|0|||||||||||||||||||||||||||| +04|2023-10-06T21:18:28.0340000-07:00|40022C3C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||97.98|119.67|0.00|2.20| +261|2023-10-06T21:18:28.0340000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:18:28.0340000-07:00|Remove|40022C3C| +24|2023-10-06T21:18:28.5460000-07:00|10FF0009|Zewo Negiwo|HoT|0|953|81177|81177|4577|10000|||117.47|92.77|0.00|-1.55|10FF0009|Zewo Negiwo|0|81177|81177|4577|10000|||117.47|92.77|0.00|-1.55| +21|2023-10-06T21:18:28.5460000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|724003|7CDF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14499831|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||109.75|91.42|-0.02|1.66|00019E4E|0|1| +38|2023-10-06T21:18:28.5460000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4577|10000|0||117.47|92.77|0.00|-1.55|0|0|0|||||||||||||||| +38|2023-10-06T21:18:28.5460000-07:00|10FF0003|Gegehi Gehi|005A5A23|69782|73814|5150|10000|0||115.15|91.18|-0.02|1.18|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:28.5460000-07:00|4C2|Divine Benison|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:18:28.5900000-07:00|40022472|Zeromus|00019E48|14468571||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:28.5900000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|932|129071|129071|8900|10000|||117.91|93.45|0.00|-0.95|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|2.79| +21|2023-10-06T21:18:28.5900000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14499831|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4900|10000|||117.90|92.93|0.00|0.53|00019E4F|0|1| +38|2023-10-06T21:18:28.5900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||117.91|93.45|0.00|-0.95|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:18:28.7260000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|00019E50|0|1| +38|2023-10-06T21:18:28.7260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:28.7260000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:18:28.2460000-07:00|Change|10FF0009||||||||||||||||||||| +261|2023-10-06T21:18:28.2460000-07:00|Change|40022C3F||||||||| +21|2023-10-06T21:18:28.7680000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8E10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14468571|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|00019E51|0|1| +261|2023-10-06T21:18:28.3420000-07:00|Change|40022C3E||||||||| +37|2023-10-06T21:18:28.8570000-07:00|40022472|Zeromus|00019E4B|14462371||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:28.9040000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|756003|A7680000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|14462371|40478540|10000|10000|||100.00|80.10|0.00|0.00|69782|73814|5150|10000|||117.41|92.58|0.00|1.04|00019E52|0|1| +38|2023-10-06T21:18:28.9040000-07:00|10FF0003|Gegehi Gehi|005A5A23|69782|73814|4750|10000|0||117.41|92.58|0.00|1.04|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:28.9040000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +04|2023-10-06T21:18:28.4320000-07:00|40022C4D|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||98.62|84.46|0.00|1.57| +261|2023-10-06T21:18:28.4320000-07:00|Remove|40022C4D| +21|2023-10-06T21:18:28.9460000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|35DF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|14462371|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4577|10000|||117.57|92.79|0.00|-2.20|00019E53|0|1| +38|2023-10-06T21:18:28.9460000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4577|10000|0||117.57|92.79|0.00|-2.20|0|0|0||||||||||||| +30|2023-10-06T21:18:28.9460000-07:00|4C1|Thin Air|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +37|2023-10-06T21:18:28.9900000-07:00|10FF0007|Kehabiqo Febiqo|00019E4A|95693||||||112.98|91.13|0.00|2.27| +21|2023-10-06T21:18:28.9900000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2E2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14462371|40478540|10000|10000|||100.00|80.10|0.00|0.00|112804|129844|10000|10000|||112.98|91.13|0.00|2.27|00019E54|0|1| +261|2023-10-06T21:18:28.5280000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:29.1240000-07:00|40022472|Zeromus|00019E4F|14462253||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:29.1700000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|118.30|93.43|0.00|0.42| +261|2023-10-06T21:18:28.7640000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:18:29.2140000-07:00|40022472|Zeromus|00019E4C|14449362||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:28.7640000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:18:29.2570000-07:00|10FF0007|Kehabiqo Febiqo|00019E4D|100977||||||113.98|91.48|0.00|-2.23| +37|2023-10-06T21:18:29.3020000-07:00|40022472|Zeromus|00019E51|14447089||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:29.3020000-07:00|10FF000A|Dukaro Nezikaro|00019E51|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|1E00|0|0|01|030001F1|0|C1700000|| +04|2023-10-06T21:18:28.8850000-07:00|40022C37|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||81.99|119.68|0.00|2.21| +261|2023-10-06T21:18:28.8850000-07:00|Remove|40022C37| +261|2023-10-06T21:18:28.8850000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:18:29.3470000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1EDA0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|14449362|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||117.91|93.45|0.00|-2.21|00019E55|0|1| +21|2023-10-06T21:18:29.3470000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14449362|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||117.91|93.45|0.00|-2.21|00019E56|0|1| +31|2023-10-06T21:18:29.3470000-07:00|10FF0001||||| +261|2023-10-06T21:18:28.9970000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:18:29.4350000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14447089|40478540|10000|10000|||100.00|80.10|0.00|0.00|100977|129844|10000|10000|||115.08|91.84|0.00|-3.10|00019E57|0|1| +21|2023-10-06T21:18:29.4800000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14447089|40478540|10000|10000|||100.00|80.10|0.00|0.00|69782|73814|4750|10000|||117.91|93.05|0.00|0.03|00019E58|0|1| +39|2023-10-06T21:18:29.5230000-07:00|10FF0003|Gegehi Gehi|70520|73814|4950|10000|||117.97|93.10|0.00|0.31| +21|2023-10-06T21:18:29.5240000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32712003|3CDC0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|14447089|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|00019E59|0|1| +38|2023-10-06T21:18:29.5240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4900|10000|0||118.30|93.43|0.00|-1.47|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:29.5240000-07:00|2B|Weakness|0.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T21:18:29.1140000-07:00|Change|40022C3B||||||||| +37|2023-10-06T21:18:29.6130000-07:00|40022472|Zeromus|00019E54|14435269||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:29.6130000-07:00|10FF0009|Zewo Negiwo|81177|81177|4798|10000|||117.57|92.79|0.00|-2.20| +21|2023-10-06T21:18:29.6570000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|722003|3F7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14435269|40478540|10000|10000|||100.00|80.10|0.00|0.00|70520|73814|4950|10000|||118.02|93.15|0.00|0.56|00019E5A|0|1| +37|2023-10-06T21:18:29.7020000-07:00|40022472|Zeromus|00019E4E|14403302||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:29.7020000-07:00|10FF000A|Dukaro Nezikaro|00019E50|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|1E00|0|0|01|030001F1|0|41700000|| +39|2023-10-06T21:18:29.7020000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||117.63|92.15|0.00|1.52| +21|2023-10-06T21:18:29.7020000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|12BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14435269|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.63|92.15|0.00|1.52|00019E5B|0|1| +38|2023-10-06T21:18:29.7020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:18:29.3060000-07:00|Change|10FF0009||||||||||||||| +24|2023-10-06T21:18:29.7460000-07:00|40022472|Zeromus|DoT|0|279E|14403302|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81241|81541|1200|10000|||117.81|94.50|0.00|0.79| +38|2023-10-06T21:18:29.7460000-07:00|40022472|Zeromus|005A5A00|14393160|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:18:29.8790000-07:00|40022472|Zeromus|00019E56|14391431||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:29.8790000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9100|10000|||117.91|93.45|0.00|-2.21| +39|2023-10-06T21:18:29.8790000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1400|10000|||117.81|94.50|0.00|0.79| +20|2023-10-06T21:18:29.8790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|117.81|94.50|0.00|0.79| +36|2023-10-06T21:18:29.8790000-07:00|3A5C|3| +261|2023-10-06T21:18:29.4000000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:18:29.9230000-07:00|40022472|Zeromus|00019E59|14375851||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:29.9690000-07:00|40022472|Zeromus|00019E57|14372657||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:29.9690000-07:00|10FF0007|Kehabiqo Febiqo|102275|129844|10000|10000|||116.87|92.42|0.00|1.24| +37|2023-10-06T21:18:30.0120000-07:00|40022472|Zeromus|00019E58|14372656||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:30.0120000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5100|10000|||118.30|93.43|0.00|-2.20| +261|2023-10-06T21:18:29.5950000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T21:18:30.1020000-07:00|40022472|Zeromus|00019E55|14364758||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:18:29.8250000-07:00|40022C41|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|119.67|0.00|-2.81| +37|2023-10-06T21:18:30.1020000-07:00|10FF0001|Sesuga Sapisuga|00019E55|129071|129071|10000|10000|0||117.91|93.45|0.00|-2.21|1300|0|0|0| +261|2023-10-06T21:18:29.8250000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:18:29.8250000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:18:29.8250000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:18:29.8250000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:18:29.8250000-07:00|Change|4002248A||||||||||||| +21|2023-10-06T21:18:30.1040000-07:00|40022489|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.00|100.00|0.00|0.79|00019E5C|0|0| +261|2023-10-06T21:18:29.8250000-07:00|Change|4002248D||||||||||||| +21|2023-10-06T21:18:30.1040000-07:00|4002248A|Zeromus|8CF8|unknown_8cf8|4002248A|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||86.00|100.00|0.00|0.79|44|44|0|10000|||86.00|100.00|0.00|0.79|00019E5D|0|1| +21|2023-10-06T21:18:30.1040000-07:00|4002248B|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||107.00|93.00|0.00|0.79|00019E5E|0|0| +261|2023-10-06T21:18:29.8250000-07:00|Remove|40022C41| +21|2023-10-06T21:18:30.1040000-07:00|4002248C|Zeromus|8CF8|unknown_8cf8|4002248C|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||107.00|93.00|0.00|0.79|44|44|0|10000|||107.00|93.00|0.00|0.79|00019E5F|0|1| +21|2023-10-06T21:18:30.1040000-07:00|4002248D|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||93.00|93.00|0.00|0.79|00019E60|0|0| +21|2023-10-06T21:18:30.1040000-07:00|4002248E|Zeromus|8CF8|unknown_8cf8|4002248E|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||93.00|93.00|0.00|0.79|44|44|0|10000|||93.00|93.00|0.00|0.79|00019E61|0|1| +37|2023-10-06T21:18:30.2360000-07:00|40022472|Zeromus|00019E53|14350967||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:29.8250000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:18:29.9390000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:18:30.2810000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40022472|Zeromus|716003|24910000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|14350967|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|00019E62|0|1| +38|2023-10-06T21:18:30.2810000-07:00|40022472|Zeromus|005A5A00|14350967|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:18:30.2810000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +39|2023-10-06T21:18:30.4150000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|3.03| +261|2023-10-06T21:18:30.0490000-07:00|Change|40022C3F||||||||| +37|2023-10-06T21:18:30.4590000-07:00|40022472|Zeromus|00019E5B|14346169|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300027E|0|C1A00000|| +37|2023-10-06T21:18:30.4590000-07:00|40022472|Zeromus|00019E52|14303313|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300027E|0|C1A00000|| +20|2023-10-06T21:18:30.4590000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|117.57|92.79|0.00|-2.20| +21|2023-10-06T21:18:30.7740000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|25BA0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|14303313|40478540|10000|10000|||100.00|80.10|0.00|0.00|102275|129844|10000|10000|||116.38|92.35|0.00|-0.54|00019E63|0|1| +21|2023-10-06T21:18:30.7740000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70520|73814|4950|10000|||118.06|93.19|0.00|-2.20|70520|73814|4950|10000|||118.06|93.19|0.00|-2.20|00019E64|0|1| +38|2023-10-06T21:18:30.7740000-07:00|10FF0003|Gegehi Gehi|005A5A23|70520|73814|4950|10000|0||118.06|93.19|0.00|-2.20|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:30.7740000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:18:30.3330000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:18:30.8180000-07:00|40022472|Zeromus|00019E5A|14287060|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300027E|0|C1A00000|| +37|2023-10-06T21:18:30.8180000-07:00|10FF0003|Gegehi Gehi|00019E5A|70520|73814|4950|10000|0||118.06|93.19|0.00|-2.20|2300|0|0|01|010004D6|0|C1A00000|| +37|2023-10-06T21:18:30.8180000-07:00|40022472|Zeromus|00019E62|14277699|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300027E|0|41A00000|| +21|2023-10-06T21:18:30.8180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|34B30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14303313|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1400|10000|||117.81|94.50|0.00|-2.25|00019E65|0|1| +38|2023-10-06T21:18:30.8180000-07:00|40022472|Zeromus|005A5A00|14277699|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +04|2023-10-06T21:18:30.4280000-07:00|40022C3E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||105.97|119.66|0.00|2.01| +261|2023-10-06T21:18:30.4280000-07:00|Change|10FF0001||| +261|2023-10-06T21:18:30.4280000-07:00|Remove|40022C3E| +21|2023-10-06T21:18:30.9520000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|11FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14277699|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|00019E66|0|1| +39|2023-10-06T21:18:30.9960000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20| +21|2023-10-06T21:18:31.0410000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19712003|4B320000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|14277699|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|00019E67|0|1| +38|2023-10-06T21:18:31.0410000-07:00|40022472|Zeromus|005A5A00|14277699|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:18:31.0410000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:18:31.0410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:31.0410000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +21|2023-10-06T21:18:31.0840000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|726003|47830000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|14277699|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||118.58|92.30|0.00|1.75|00019E68|0|1| +24|2023-10-06T21:18:31.2170000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|939|90216|90216|10000|10000|||118.58|92.30|0.00|-2.15|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:31.2170000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40660000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|102275|129844|10000|10000|||113.33|92.05|0.00|-2.01|14277699|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019E69|0|1| +38|2023-10-06T21:18:31.2170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||118.58|92.30|0.00|-2.15|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:18:31.2610000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|EE6|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:31.2610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:30.7680000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:18:31.3060000-07:00|10FF0003|Gegehi Gehi|HoT|0|9AD|70520|73814|4950|10000|||118.06|93.19|0.00|-2.20|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:31.3060000-07:00|40022C5D|Emerald Garuda|005A5A00|0|77698|0|10000|0||105.77|82.66|0.00|-2.27|0|0|0||||||| +30|2023-10-06T21:18:31.3060000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022C5D|Emerald Garuda|00|77698|73814| +38|2023-10-06T21:18:31.3060000-07:00|10FF0003|Gegehi Gehi|005A5A23|72997|73814|5500|10000|0||118.06|93.19|0.00|-2.20|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:30.7680000-07:00|Change|40022C5D||||| +38|2023-10-06T21:18:31.3500000-07:00|40022C6F||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:18:31.3510000-07:00|40022C6F||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:18:31.3950000-07:00|40022472|Zeromus|00019E63|14268041|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +24|2023-10-06T21:18:31.3950000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|993|81541|81541|1000|10000|||117.80|94.50|0.00|-1.85|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:31.3950000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|39010000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|14277699|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4798|10000|||117.57|92.79|0.00|-2.20|00019E6A|0|1| +21|2023-10-06T21:18:31.3950000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1000|10000|||117.80|94.50|0.00|-1.85|81541|81541|1000|10000|||117.80|94.50|0.00|-1.85|00019E6B|0|1| +38|2023-10-06T21:18:31.3950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1000|10000|0||117.80|94.50|0.00|-1.85|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:30.9990000-07:00|Change|10FF0003||| +37|2023-10-06T21:18:31.4850000-07:00|40022472|Zeromus|00019E66|14263436|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +24|2023-10-06T21:18:31.4850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FE9|102275|129844|10000|10000|||111.99|92.03|0.00|-1.69|10FF0007|Kehabiqo Febiqo|0|102275|129844|10000|10000|||111.99|92.03|0.00|-1.69| +24|2023-10-06T21:18:31.4850000-07:00|10FF0006|Wowobora Gogobora|HoT|0|ED1|81809|81809|5100|10000|||118.30|93.43|0.00|-2.20|10FF0006|Wowobora Gogobora|0|81809|81809|5100|10000|||118.30|93.43|0.00|-2.20| +38|2023-10-06T21:18:31.4850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106348|129844|10000|10000|0||111.99|92.03|0.00|-1.69|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:31.4850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5650|10000|0||118.30|93.43|0.00|-2.20|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:30.9990000-07:00|Change|10FF0006||||| +37|2023-10-06T21:18:31.5290000-07:00|10FF0003|Gegehi Gehi|00019E64|72997|73814|5500|10000|0||118.06|93.19|0.00|-2.20|2300|0|0|01|010004D6|0|41A00000|| +24|2023-10-06T21:18:31.5290000-07:00|10FF0009|Zewo Negiwo|HoT|0|9C7|81177|81177|4398|10000|||117.57|92.79|0.00|-2.20|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:31.5290000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|554003|37D30000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|14263436|40478540|10000|10000|||100.00|80.10|0.00|0.00|72997|73814|5500|10000|||118.06|93.19|0.00|-2.20|00019E6C|0|1| +38|2023-10-06T21:18:31.5290000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4398|10000|0||117.57|92.79|0.00|-2.20|0|0|0||||||||||||| +38|2023-10-06T21:18:31.5290000-07:00|10FF0003|Gegehi Gehi|005A5A23|72997|73814|5200|10000|0||118.06|93.19|0.00|-2.20|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:31.5290000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:18:31.5290000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +24|2023-10-06T21:18:31.5740000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|99E|129071|129071|10000|10000|||117.91|93.45|0.00|-2.21|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:31.5740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||117.91|93.45|0.00|-2.21|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:31.6190000-07:00|40022472|Zeromus|00019E65|14249945|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T21:18:31.6190000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|350003|4EDB0000|10280F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|14263436|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5650|10000|||118.30|93.43|0.00|-2.20|00019E6D|0|1| +21|2023-10-06T21:18:31.6190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|9030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14263436|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||117.91|93.45|0.00|-2.21|00019E6E|0|1| +38|2023-10-06T21:18:31.6190000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5650|10000|0||118.30|93.43|0.00|-2.20|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:31.6190000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +31|2023-10-06T21:18:31.6190000-07:00|10FF0001||||| +261|2023-10-06T21:18:31.3160000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:18:31.3160000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:18:31.8410000-07:00|40022472|Zeromus|00019E68|14231638|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:18:31.8410000-07:00|40022472|Zeromus|00019E67|14212388|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|41700000|| +21|2023-10-06T21:18:31.8410000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14470000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|106348|129844|10000|10000|||109.71|92.00|0.00|-1.60|73956|77430|10000|10000|||100.05|98.22|0.00|3.08|00019E6F|0|1| +38|2023-10-06T21:18:31.8410000-07:00|40022472|Zeromus|005A5A00|14212388|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:18:31.4130000-07:00|Add|40022C6F||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:31.4130000-07:00|Remove|40022C3B| +03|2023-10-06T21:18:31.4130000-07:00|40022C6F|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||116.90|92.42|0.00|0.94| +261|2023-10-06T21:18:31.4130000-07:00|Change|40022C6F||| +21|2023-10-06T21:18:31.8860000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|2D9F0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|14212388|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||116.85|93.44|0.00|-1.58|00019E70|0|1| +21|2023-10-06T21:18:31.8860000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|00019E71|0|1| +38|2023-10-06T21:18:31.8860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||116.85|93.44|0.00|-1.58|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:31.8860000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:18:31.8860000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:18:31.8860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:31.8860000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +37|2023-10-06T21:18:32.0210000-07:00|10FF0007|Kehabiqo Febiqo|00019E69|89862||||||108.69|91.97|0.00|-1.59| +37|2023-10-06T21:18:32.0210000-07:00|10FF0004|Buhojaqe Zijaqe|00019E6B|81541|81541|1000|10000|0||116.41|94.60|0.00|-1.61|1C00|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:18:32.0210000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:18:32.1540000-07:00|40022472|Zeromus|00019E6E|14210081||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:32.1540000-07:00|10FF0001|Sesuga Sapisuga|00019E6E|129071|129071|10000|10000|0||116.20|93.43|0.00|-1.57|1300|0|0|02|0200076E|03|C1F00000|||||| +37|2023-10-06T21:18:32.2890000-07:00|40022472|Zeromus|00019E6C|14195790||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:32.2890000-07:00|10FF0003|Gegehi Gehi|00019E6C|72997|73814|5200|10000|0||117.86|93.45|0.00|-1.80|2300|0|0|01|050004D2|0|41F00000|| +21|2023-10-06T21:18:32.2890000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14210081|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1000|10000|||115.05|94.67|0.00|-1.55|00019E72|0|1| +38|2023-10-06T21:18:32.2890000-07:00|10FF0003|Gegehi Gehi|005A5A23|72997|73814|5200|10000|0||117.86|93.45|0.00|-1.80|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:18:32.3330000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|73650E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|14195790|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1000|10000|||114.39|94.62|0.00|-1.57|00019E73|0|1| +261|2023-10-06T21:18:31.9840000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:18:32.3780000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|C570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14195790|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||118.58|92.30|0.00|-2.15|00019E74|0|1| +21|2023-10-06T21:18:32.3780000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20|00019E75|0|1| +34|2023-10-06T21:18:32.3780000-07:00|40022C6F|Carbuncle|40022C6F|Carbuncle|01| +38|2023-10-06T21:18:32.3780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||117.60|92.88|0.00|-2.20|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:32.3780000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +261|2023-10-06T21:18:31.9840000-07:00|Change|40022C6F||| +261|2023-10-06T21:18:31.9840000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:18:32.4670000-07:00|40022472|Zeromus|00019E70|14184111||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:32.4670000-07:00|10FF0001|Sesuga Sapisuga|00019E70|129071|129071|10000|10000|0||114.30|93.43|0.00|-1.57|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T21:18:32.4670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||114.30|93.43|0.00|-1.57|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:32.1000000-07:00|Change|10FF0006||||||||||||||||||| +04|2023-10-06T21:18:32.1000000-07:00|40022C3F|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||109.97|119.66|0.00|2.21| +261|2023-10-06T21:18:32.1000000-07:00|Remove|40022C3F| +39|2023-10-06T21:18:32.5560000-07:00|10FF0003|Gegehi Gehi|73735|73814|5400|10000|||115.91|95.00|0.00|-1.72| +261|2023-10-06T21:18:32.1970000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:18:32.6010000-07:00|10FF0009|Zewo Negiwo|81177|81177|4619|10000|||117.57|92.79|0.00|-2.20| +37|2023-10-06T21:18:32.6450000-07:00|10FF0007|Kehabiqo Febiqo|00019E6F|95053||||||104.89|91.90|0.00|-1.59| +24|2023-10-06T21:18:32.6450000-07:00|40022472|Zeromus|DoT|A92|689|14184111|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|5650|10000|||115.90|94.35|0.00|-1.41| +37|2023-10-06T21:18:32.6450000-07:00|40022472|Zeromus|00019E6D|14162251||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:32.6450000-07:00|10FF0006|Wowobora Gogobora|00019E6D|81809|81809|5650|10000|0||115.90|94.35|0.00|-1.41|1B00|0|0|01|01000A92|0|41700000|| +26|2023-10-06T21:18:32.6450000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:18:32.6450000-07:00|40022472|Zeromus|005A5A00|14162251|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:18:32.2870000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:18:32.6900000-07:00|40022472|Zeromus|00019E6A|14147658||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:32.6900000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|352003|44FE0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|14162251|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5650|10000|||115.27|94.49|0.00|-1.39|00019E76|0|1| +39|2023-10-06T21:18:32.7350000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||118.58|92.30|0.00|-2.15| +21|2023-10-06T21:18:32.7350000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|F0A0000|77550E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|14162251|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||113.01|93.38|0.00|-1.63|00019E77|0|1| +24|2023-10-06T21:18:32.7790000-07:00|40022472|Zeromus|DoT|0|2006|14162251|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|82773|82773|10000|10000|||117.60|92.88|0.00|-2.20| +38|2023-10-06T21:18:32.7790000-07:00|40022472|Zeromus|005A5A00|14139460|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:18:32.3860000-07:00|Change|10FF0009||| +37|2023-10-06T21:18:32.8240000-07:00|40022472|Zeromus|00019E72|14139289||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:32.8240000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|CF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14139460|40478540|10000|10000|||100.00|80.10|0.00|0.00|95053|129844|10000|10000|||103.53|91.87|0.00|-1.59|00019E78|0|1| +39|2023-10-06T21:18:32.8690000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||112.32|93.34|0.00|-1.66| +20|2023-10-06T21:18:32.8690000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|117.57|92.79|0.00|-2.20| +36|2023-10-06T21:18:32.8690000-07:00|3B38|3| +39|2023-10-06T21:18:32.9140000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|800|10000|||111.77|95.13|0.00|-2.13| +21|2023-10-06T21:18:32.9140000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|250003|D53E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14139289|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||117.59|92.88|0.00|-2.12|00019E79|0|1| +38|2023-10-06T21:18:32.9140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||117.59|92.88|0.00|-2.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:32.9140000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +30|2023-10-06T21:18:32.9140000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +261|2023-10-06T21:18:32.4840000-07:00|Add|40022C71||||||||||||||||||||||||||||||||| +37|2023-10-06T21:18:32.9580000-07:00|40022472|Zeromus|00019E73|14139289|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:18:32.9580000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +21|2023-10-06T21:18:32.9580000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14139289|40478540|10000|10000|||100.00|80.10|0.00|0.00|73735|73814|5400|10000|||113.95|96.23|0.00|-1.79|00019E7A|0|1| +39|2023-10-06T21:18:33.0020000-07:00|10FF0007|Kehabiqo Febiqo|96351|129844|10000|10000|||102.22|91.83|0.00|-1.61| +39|2023-10-06T21:18:33.0020000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5550|10000|||114.20|94.71|0.00|-2.36| +37|2023-10-06T21:18:33.1350000-07:00|40022472|Zeromus|00019E74|14136130||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:33.1350000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14139289|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||117.56|92.88|0.00|-2.20|00019E7B|0|1| +261|2023-10-06T21:18:32.7110000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:18:32.7110000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:18:33.2250000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|35710000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|14136130|40478540|10000|10000|||100.00|80.10|0.00|0.00|96351|129844|10000|10000|||100.91|91.66|0.00|-1.66|00019E7C|0|1| +38|2023-10-06T21:18:33.2250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96351|129844|10000|10000|0||100.91|91.66|0.00|-1.66|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:33.2250000-07:00|A75|Surging Tempest|54.27|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:18:33.3130000-07:00|40022472|Zeromus|00019E76|14118468||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:33.3590000-07:00|40022472|Zeromus|00019E78|14115156||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:33.4030000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|2.79| +261|2023-10-06T21:18:33.0630000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:18:33.4920000-07:00|40022472|Zeromus|00019E7A|14115155||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:33.0630000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:33.5360000-07:00|40022472|Zeromus|00019E79|14060565||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:33.5800000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|34D10000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|14115155|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||115.21|93.65|0.00|-1.22|00019E7D|0|1| +37|2023-10-06T21:18:33.6700000-07:00|40022472|Zeromus|00019E7B|14057381||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:33.7590000-07:00|40022472|Zeromus|00019E77|14053531|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050000F8|0|41700000|| +26|2023-10-06T21:18:33.7590000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +21|2023-10-06T21:18:33.8040000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|359E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|14057381|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4619|10000|||117.57|92.79|0.00|-2.20|00019E7E|0|1| +261|2023-10-06T21:18:33.3460000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:33.3460000-07:00|Change|10FF0009||| +21|2023-10-06T21:18:33.8940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|75D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14053531|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.64|93.08|0.00|-2.01|00019E7F|0|1| +38|2023-10-06T21:18:33.8940000-07:00|40022472|Zeromus|005A5A00|14053531|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:18:33.8940000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +31|2023-10-06T21:18:33.8940000-07:00|10FF0001||||| +261|2023-10-06T21:18:33.5300000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:18:33.9820000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||113.57|91.13|0.00|-1.75| +261|2023-10-06T21:18:33.8360000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:18:33.8360000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:18:33.8360000-07:00|Change|40022C6F||||||||| +24|2023-10-06T21:18:34.2050000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|93D|90216|90216|10000|10000|||111.24|95.25|0.00|-1.21|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:34.2050000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|2B0C0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|14053531|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5550|10000|||107.12|96.71|0.00|-1.27|00019E80|0|1| +21|2023-10-06T21:18:34.2050000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14053531|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5550|10000|||107.12|96.71|0.00|-1.27|00019E81|0|1| +38|2023-10-06T21:18:34.2050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||111.24|95.25|0.00|-1.21|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:18:34.2500000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9A5|82773|82773|10000|10000|||113.30|88.48|0.00|-1.73|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:34.2500000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3D3F0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|96351|129844|10000|10000|||98.15|88.69|0.00|2.89|14053531|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019E82|0|1| +38|2023-10-06T21:18:34.2500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||113.30|88.48|0.00|-1.73|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:18:34.2940000-07:00|10FF0003|Gegehi Gehi|HoT|0|FFE|73735|73814|5400|10000|||111.19|100.73|0.00|-2.72|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:34.2940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5950|10000|0||111.19|100.73|0.00|-2.72|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:33.8360000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:18:34.3830000-07:00|40022472|Zeromus|00019E7D|14040010||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:34.3830000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|99E|81541|81541|800|10000|||101.99|97.55|0.00|-1.41|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:34.3830000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2C1E0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|14053531|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||106.88|93.25|0.00|-2.66|00019E83|0|1| +38|2023-10-06T21:18:34.3830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||106.88|93.25|0.00|-2.66|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:34.3830000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:18:34.3830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|0||101.99|97.55|0.00|-1.41|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:18:34.4280000-07:00|40022472|Zeromus|00019E7F|14038125||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:34.4730000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|92D|96351|129844|10000|10000|||99.25|89.13|0.00|2.79|10FF0007|Kehabiqo Febiqo|0|96351|129844|10000|10000|||99.25|89.13|0.00|2.79| +24|2023-10-06T21:18:34.4730000-07:00|40022472|Zeromus|DoT|A92|87F|14053531|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|5250|10000|||106.51|96.92|0.00|-2.81| +24|2023-10-06T21:18:34.4730000-07:00|10FF0006|Wowobora Gogobora|HoT|0|98C|81809|81809|5250|10000|||106.51|96.92|0.00|-2.81|10FF0006|Wowobora Gogobora|0|81809|81809|5250|10000|||106.51|96.92|0.00|-2.81| +38|2023-10-06T21:18:34.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98700|129844|10000|10000|0||99.25|89.13|0.00|2.79|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:34.4730000-07:00|40022472|Zeromus|005A5A00|14035950|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:18:34.4730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5800|10000|0||106.51|96.92|0.00|-2.81|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:34.0630000-07:00|Change|10FF000A||||||||| +24|2023-10-06T21:18:34.5170000-07:00|10FF0009|Zewo Negiwo|HoT|0|9AC|81177|81177|4219|10000|||117.52|92.81|0.00|-1.66|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:34.5170000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4219|10000|0||117.52|92.81|0.00|-1.66|0|0|0||||||||||||| +24|2023-10-06T21:18:34.5620000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1051|129071|129071|10000|10000|||106.88|93.25|0.00|-2.66|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:34.5620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||106.88|93.25|0.00|-2.66|0|0|0|||||||||||||||||||||| +20|2023-10-06T21:18:34.6510000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|110.00|101.31|-0.02|-2.97| +21|2023-10-06T21:18:34.6950000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||112.76|87.36|0.00|-1.73|82773|82773|10000|10000|||112.76|87.36|0.00|-1.73|00019E84|0|1| +38|2023-10-06T21:18:34.6950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||112.76|87.36|0.00|-1.73|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:34.6950000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:18:34.7400000-07:00|40022472|Zeromus|00019E81|14035781||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:34.7400000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.83|97.95|0.00|-1.57| +37|2023-10-06T21:18:34.8300000-07:00|40022472|Zeromus|00019E80|14024761||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:34.8730000-07:00|40022472|Zeromus|00019E7C|14011080||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:34.4400000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:18:34.5390000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:35.0510000-07:00|10FF0007|Kehabiqo Febiqo|00019E82|83021||||||100.33|92.26|0.00|0.03| +21|2023-10-06T21:18:35.0510000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14CF0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|98700|129844|10000|10000|||100.33|92.26|0.00|0.03|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019E85|0|1| +21|2023-10-06T21:18:35.0510000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|A260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14011080|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.14|96.95|0.00|-1.18|00019E86|0|1| +37|2023-10-06T21:18:35.0950000-07:00|40022472|Zeromus|00019E7E|13997354||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:34.6540000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:18:35.1840000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||112.66|86.90|-0.02|-1.73|82773|82773|10000|10000|||112.66|86.90|-0.02|-1.73|00019E87|0|1| +38|2023-10-06T21:18:35.1840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||112.66|86.90|-0.02|-1.73|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:35.1840000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +261|2023-10-06T21:18:34.6540000-07:00|Change|40022C6F||||||||| +20|2023-10-06T21:18:35.3190000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|114.46|94.51|0.00|-1.21| +21|2023-10-06T21:18:35.3190000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13997354|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||112.66|86.90|-0.02|-1.73|00019E88|0|1| +261|2023-10-06T21:18:34.8850000-07:00|Change|10FF0009||||||||||||||||| +261|2023-10-06T21:18:34.8850000-07:00|Change|10FF0009||||||||||||||||||| +04|2023-10-06T21:18:34.8850000-07:00|40022C5D|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||105.77|82.66|0.00|-2.27| +261|2023-10-06T21:18:34.8850000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:18:34.8850000-07:00|Remove|40022C5D| +39|2023-10-06T21:18:35.5420000-07:00|10FF0003|Gegehi Gehi|73814|73814|6150|10000|||109.54|101.82|0.00|-2.73| +39|2023-10-06T21:18:35.6310000-07:00|10FF0009|Zewo Negiwo|81177|81177|4440|10000|||113.92|94.87|0.00|-1.90| +37|2023-10-06T21:18:35.6760000-07:00|40022472|Zeromus|00019E83|13986060||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:35.6760000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3FF90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13997354|40478540|10000|10000|||100.00|80.10|0.00|0.00|83021|129844|10000|10000|||98.74|94.40|0.00|1.25|00019E89|0|1| +21|2023-10-06T21:18:35.6760000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|35E30000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|13997354|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5800|10000|||99.94|99.09|0.00|-1.07|00019E8A|0|1| +21|2023-10-06T21:18:35.6760000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|58CB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13997354|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1350|10000|||100.33|98.16|0.00|-3.12|00019E8B|0|1| +21|2023-10-06T21:18:35.6760000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|550003|53C80000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|13997354|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||112.66|86.90|0.00|-1.73|00019E8C|0|1| +38|2023-10-06T21:18:35.6760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||112.66|86.90|0.00|-1.73|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:35.6760000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:18:35.6760000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:18:35.7200000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||103.20|98.61|0.00|-1.16| +24|2023-10-06T21:18:35.7650000-07:00|40022472|Zeromus|DoT|0|2EDD|13986060|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||106.88|93.25|0.00|-2.66| +38|2023-10-06T21:18:35.7650000-07:00|40022472|Zeromus|005A5A00|13974063|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:18:35.8090000-07:00|40022472|Zeromus|00019E86|13971465||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:35.8540000-07:00|10FF0007|Kehabiqo Febiqo|00019E85|88348||||||97.47|93.76|0.00|2.97| +37|2023-10-06T21:18:35.8540000-07:00|40022472|Zeromus|00019E88|13968242||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:35.8540000-07:00|10FF000A|Dukaro Nezikaro|00019E88|82773|82773|10000|10000|0||112.66|86.90|0.00|-2.06|1E00|0|0|01|03000A82|01|C1F00000|| +261|2023-10-06T21:18:35.3980000-07:00|Change|10FF0009||||||||||||| +36|2023-10-06T21:18:35.8540000-07:00|3C14|3| +39|2023-10-06T21:18:35.8980000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||106.90|93.17|0.00|-2.71| +39|2023-10-06T21:18:35.8980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1150|10000|||100.33|98.16|0.00|-3.12| +39|2023-10-06T21:18:35.9870000-07:00|10FF0007|Kehabiqo Febiqo|89646|129844|10000|10000|||97.02|93.26|0.00|2.98| +39|2023-10-06T21:18:35.9870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5700|10000|||99.55|99.23|0.00|3.12| +261|2023-10-06T21:18:35.4910000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:18:35.5890000-07:00|Change|40022C6F||||||||| +261|2023-10-06T21:18:35.5890000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:18:36.0760000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|431A0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|13968242|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.40|99.06|0.00|-1.77|00019E8D|0|1| +21|2023-10-06T21:18:36.0760000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|154003|2E8D0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|13968242|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6150|10000|||109.54|101.82|0.00|-2.73|00019E8E|0|1| +38|2023-10-06T21:18:36.0760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5950|10000|0||109.54|101.82|0.00|-2.73|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:36.0760000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:18:36.0760000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:18:36.1650000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|71E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13968242|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.34|92.19|0.00|-2.78|00019E8F|0|1| +31|2023-10-06T21:18:36.1650000-07:00|10FF0001||||| +21|2023-10-06T21:18:36.2100000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|D220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13968242|40478540|10000|10000|||100.00|80.10|0.00|0.00|89646|129844|10000|10000|||96.26|91.88|0.00|3.00|00019E90|0|1| +21|2023-10-06T21:18:36.2540000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|5DFC0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|13968242|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4440|10000|||113.60|95.08|0.00|-2.40|00019E91|0|1| +37|2023-10-06T21:18:36.2990000-07:00|40022472|Zeromus|00019E89|13951865||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:36.2990000-07:00|40022472|Zeromus|00019E8A|13938070||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:35.8060000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:18:36.3890000-07:00|40022472|Zeromus|00019E8C|13916622||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:36.3890000-07:00|10FF000A|Dukaro Nezikaro|00019E8C|82773|82773|10000|10000|0||112.66|86.90|0.00|-2.06|1E00|0|0|01|03000A82|01|41F00000|| +39|2023-10-06T21:18:36.3890000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-2.76| +21|2023-10-06T21:18:36.3890000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13938070|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||100.33|98.16|0.00|-3.12|00019E92|0|1| +38|2023-10-06T21:18:36.3890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5950|10000|0||109.54|101.82|0.00|-2.73|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:36.3890000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:18:36.3890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||112.66|86.90|0.00|-2.06|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:36.4770000-07:00|40022472|Zeromus|00019E8B|13893891||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:36.5220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5950|10000|0||109.54|101.83|-0.02|-2.72|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:36.5220000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:18:36.5660000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|756003|60A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13893891|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||112.66|86.90|0.00|-2.06|00019E93|0|1| +38|2023-10-06T21:18:36.6550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||102.22|99.17|-0.02|-3.03|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:36.6550000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +37|2023-10-06T21:18:36.6990000-07:00|40022472|Zeromus|00019E8F|13892069||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:36.7440000-07:00|40022472|Zeromus|00019E90|13888707||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:36.7890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||112.66|86.90|0.00|-2.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:36.7890000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +37|2023-10-06T21:18:36.8790000-07:00|40022472|Zeromus|00019E8D|13871529||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:36.8790000-07:00|40022472|Zeromus|00019E8E|13859612||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:36.8790000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|752003|52CA0000|4|26AD8000|0|0|0|0|0|0|0|0|0|0|0|0|13888707|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||108.09|88.66|0.00|-2.87|00019E94|0|1| +38|2023-10-06T21:18:36.8790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||108.09|88.66|0.00|-2.87|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:36.8790000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:18:36.4260000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:18:36.4260000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:18:36.9240000-07:00|40022472|Zeromus|00019E92|13859435||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:36.9240000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|-3.14|0|0|0|||| +30|2023-10-06T21:18:36.9240000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022C1B|Ruby Carbuncle|00|77430|73814| +38|2023-10-06T21:18:36.9240000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|0||100.33|98.17|0.00|-1.72|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:36.9240000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +39|2023-10-06T21:18:37.0130000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||112.66|86.90|0.00|-2.06| +38|2023-10-06T21:18:37.0570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89646|129844|10000|10000|0||100.62|91.78|0.00|3.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:37.0570000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +27|2023-10-06T21:18:37.1020000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +27|2023-10-06T21:18:37.1020000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +21|2023-10-06T21:18:37.1470000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|13859435|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5700|10000|||100.11|101.92|0.00|0.28|00019E95|0|1| +20|2023-10-06T21:18:37.1470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.33|98.28|0.00|-0.75| +21|2023-10-06T21:18:37.1470000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|27BF0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|13859435|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5950|10000|||107.31|101.24|0.00|-2.68|00019E96|0|1| +38|2023-10-06T21:18:37.1470000-07:00|40022C6F|Carbuncle|005A5A00|0|77698|0|10000|0||101.73|99.23|0.00|-0.70|0|0|0||||||| +26|2023-10-06T21:18:37.1470000-07:00|30|Well Fed|1356.13|10FF0006|Wowobora Gogobora|40022C6F|Carbuncle|2964|77698|81809| +38|2023-10-06T21:18:37.1470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5700|10000|0||100.11|101.92|0.00|0.28|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:37.1470000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:18:37.1470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5650|10000|0||107.31|101.24|0.00|-2.68|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:37.1470000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:18:36.7290000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:18:36.7290000-07:00|Change|40022C6F||||||||| +38|2023-10-06T21:18:37.1910000-07:00|40022C75||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:18:37.1910000-07:00|40022472|Zeromus|00019E93|13834699||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:37.1910000-07:00|40022472|Zeromus|8B83|Dark Matter|40022472|Zeromus|3.700|100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:37.1910000-07:00|40022C75||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:18:37.1910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5700|10000|0||100.02|102.06|-0.01|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:37.1910000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +24|2023-10-06T21:18:37.2360000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|996|90216|90216|10000|10000|||102.22|99.17|0.00|-3.03|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:37.2360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||102.22|99.17|0.00|-3.03|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:18:36.7290000-07:00|Change|40022472||||||||| +24|2023-10-06T21:18:37.2800000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9D0|82773|82773|10000|10000|||112.66|86.90|0.00|-2.06|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:37.2800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||112.66|86.90|0.00|-2.06|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:18:36.8440000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:18:37.3250000-07:00|10FF0003|Gegehi Gehi|HoT|0|950|73814|73814|5650|10000|||106.26|101.49|-0.02|-2.80|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +21|2023-10-06T21:18:37.3250000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13834699|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5700|10000|||99.99|102.10|0.00|-3.14|00019E97|0|1| +38|2023-10-06T21:18:37.3250000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4040|10000|0||112.41|95.02|0.00|-1.74|0|0|0||||||||||||| +30|2023-10-06T21:18:37.3250000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +38|2023-10-06T21:18:37.3250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5650|10000|0||106.26|101.49|-0.02|-2.80|0|0|0|||||||||||||||||||||| +03|2023-10-06T21:18:36.8440000-07:00|40022C75|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||101.78|103.86|0.00|-3.14| +261|2023-10-06T21:18:36.9580000-07:00|Add|40022C75||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:36.9580000-07:00|Change|40022C75||||| +24|2023-10-06T21:18:37.4140000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|EDA|81541|81541|1150|10000|||100.33|98.43|0.00|-2.17|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:37.4140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1700|10000|0||100.33|98.43|0.00|-2.17|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:18:37.4590000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|554003|58010000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|13834699|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||112.66|86.90|0.00|-2.06|00019E98|0|1| +38|2023-10-06T21:18:37.4590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||107.10|85.00|0.00|-3.03|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:37.4590000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +38|2023-10-06T21:18:37.4590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||112.66|86.90|0.00|-2.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:37.4590000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +24|2023-10-06T21:18:37.5030000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9D3|89646|129844|10000|10000|||99.65|90.23|0.00|3.00|10FF0007|Kehabiqo Febiqo|0|89646|129844|10000|10000|||99.65|90.23|0.00|3.00| +24|2023-10-06T21:18:37.5030000-07:00|40022472|Zeromus|DoT|A92|576|13834699|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|5700|10000|||99.99|102.10|0.00|-3.14| +24|2023-10-06T21:18:37.5030000-07:00|10FF0006|Wowobora Gogobora|HoT|0|928|81809|81809|5700|10000|||99.99|102.10|0.00|-3.14|10FF0006|Wowobora Gogobora|0|81809|81809|5700|10000|||99.99|102.10|0.00|-3.14| +21|2023-10-06T21:18:37.5030000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13834699|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||112.66|86.90|0.00|-2.06|00019E99|0|1| +38|2023-10-06T21:18:37.5030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92161|129844|10000|10000|0||99.65|90.23|0.00|3.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:37.5030000-07:00|40022472|Zeromus|005A5A00|13833301|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:18:37.5030000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6250|10000|0||99.99|102.10|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:18:36.9580000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:37.5480000-07:00|40022472|Zeromus|00019E91|13809241||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:37.5480000-07:00|10FF0009|Zewo Negiwo|HoT|0|ED7|81177|81177|4040|10000|||111.01|95.40|0.00|-1.48|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:37.5480000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4040|10000|0||111.01|95.40|0.00|-1.48|0|0|0||||||||||||| +24|2023-10-06T21:18:37.5930000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|950|129071|129071|9000|10000|||107.03|84.39|0.00|-3.03|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:37.5930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||107.03|84.39|0.00|-3.03|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:37.6370000-07:00|40022472|Zeromus|00019E94|13788047||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:37.7270000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13788047|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.22|99.17|0.00|-3.03|00019E9A|0|1| +37|2023-10-06T21:18:37.8590000-07:00|40022472|Zeromus|00019E97|13787892||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:37.8590000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|109.95|96.59|0.00|-1.13| +261|2023-10-06T21:18:37.3630000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:18:37.9040000-07:00|40022472|Zeromus|00019E96|13777717||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:37.9040000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13788047|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5650|10000|||105.73|101.85|0.00|-2.71|00019E9B|0|1| +37|2023-10-06T21:18:38.0380000-07:00|40022472|Zeromus|00019E99|13774642||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:38.0830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|41B50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13774642|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1700|10000|||100.33|98.50|0.00|-3.12|00019E9C|0|1| +38|2023-10-06T21:18:38.0830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||102.22|99.17|0.00|-3.03|0|0|0||||||| +30|2023-10-06T21:18:38.0830000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +21|2023-10-06T21:18:38.1280000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|24820000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|13774642|40478540|10000|10000|||100.00|80.10|0.00|0.00|92161|129844|10000|10000|||99.64|90.17|0.00|3.00|00019E9D|0|1| +37|2023-10-06T21:18:38.1730000-07:00|10FF0006|Wowobora Gogobora|00019E95|81809|81809|6250|10000|0||99.99|102.10|0.00|-3.14|1B00|0|0|01|03000AA4|0|0|| +38|2023-10-06T21:18:38.1730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6250|10000|0||99.99|102.10|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:18:38.2170000-07:00|40022472|Zeromus|00019E98|13752113||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:38.2170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|0||100.33|98.50|0.00|-3.12|0|0|0||||||||||||| +30|2023-10-06T21:18:38.2170000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T21:18:37.6890000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:18:38.2620000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14430000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|92161|129844|10000|10000|||99.76|90.16|0.00|-3.13|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019E9E|0|1| +261|2023-10-06T21:18:37.8050000-07:00|Change|40022C75||| +38|2023-10-06T21:18:38.3510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||112.54|88.04|0.00|2.85|0|0|0|||||||||| +30|2023-10-06T21:18:38.3510000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:18:38.4400000-07:00|40022472|Zeromus|00019E9B|13752112||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:38.4400000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|75F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13752113|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||107.44|83.43|0.00|-3.10|00019E9F|0|1| +22|2023-10-06T21:18:38.4400000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|710003|12F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13752113|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||112.45|88.82|0.00|-2.80|00019EA0|0|3| +22|2023-10-06T21:18:38.4400000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|710003|12A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13752113|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||112.45|88.82|0.00|-2.80|00019EA0|1|3| +22|2023-10-06T21:18:38.4400000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|710003|125D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13752113|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||112.45|88.82|0.00|-2.80|00019EA0|2|3| +31|2023-10-06T21:18:38.4400000-07:00|10FF0001||||| +37|2023-10-06T21:18:38.4850000-07:00|40022472|Zeromus|00019E9A|13749721||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:38.4850000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||107.44|83.43|0.00|-3.10|129071|129071|9000|10000|||107.44|83.43|0.00|-3.10|00019EA1|0|1| +38|2023-10-06T21:18:38.4850000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5650|10000|0||105.73|101.85|0.00|-2.71|0|0|0|||||||||| +30|2023-10-06T21:18:38.4850000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +39|2023-10-06T21:18:38.5300000-07:00|10FF0003|Gegehi Gehi|73814|73814|5850|10000|||105.73|101.85|0.00|-2.71| +261|2023-10-06T21:18:38.0410000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:18:38.5740000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|215D0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|13749721|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.22|99.17|0.00|-3.03|00019EA2|0|1| +39|2023-10-06T21:18:38.6180000-07:00|10FF0009|Zewo Negiwo|81177|81177|4261|10000|||109.54|96.91|0.00|-2.63| +38|2023-10-06T21:18:38.6180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6250|10000|0||99.99|102.10|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:38.6180000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:18:38.6630000-07:00|40022472|Zeromus|00019E9D|13740375||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:38.7070000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.22|99.17|0.00|-3.03| +24|2023-10-06T21:18:38.7530000-07:00|40022472|Zeromus|DoT|0|1C42|13740375|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||107.48|83.43|0.00|-3.11| +38|2023-10-06T21:18:38.7530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92161|129844|10000|10000|0||98.01|88.98|0.00|3.03|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:38.7530000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:18:38.7530000-07:00|40022472|Zeromus|005A5A00|13733141|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +21|2023-10-06T21:18:38.7970000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|33DF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|13740375|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4261|10000|||109.54|96.91|0.00|-2.63|00019EA3|0|1| +36|2023-10-06T21:18:38.8410000-07:00|3CF0|3| +37|2023-10-06T21:18:38.8860000-07:00|40022472|Zeromus|00019E9C|13716320||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:38.8860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||107.58|83.42|0.00|-3.11| +39|2023-10-06T21:18:38.8860000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1500|10000|||100.37|99.15|0.00|-0.50| +38|2023-10-06T21:18:38.8860000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3861|10000|0||109.54|96.91|0.00|-2.63|0|0|0||||||| +30|2023-10-06T21:18:38.8860000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +261|2023-10-06T21:18:38.4320000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:38.4320000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:18:38.9760000-07:00|40022472|Zeromus|00019E9F|13714433||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:38.9760000-07:00|10FF0007|Kehabiqo Febiqo|93459|129844|10000|10000|||96.78|88.64|0.00|3.01| +37|2023-10-06T21:18:39.0200000-07:00|10FF0001|Sesuga Sapisuga|00019EA1|129071|129071|9200|10000|0||107.58|83.42|0.00|-3.11|1300|0|0|01|0300004A|0|41700000|| +26|2023-10-06T21:18:39.0200000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T21:18:39.0200000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6450|10000|||99.99|102.10|0.00|-3.14| +38|2023-10-06T21:18:39.0200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||107.58|83.42|0.00|-3.11|0|0|0||||||||||||| +30|2023-10-06T21:18:39.0200000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +261|2023-10-06T21:18:38.5300000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:18:39.0640000-07:00|10FF0007|Kehabiqo Febiqo|00019E9E|98646||||||96.10|88.50|0.00|3.01| +261|2023-10-06T21:18:38.6470000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:18:39.1530000-07:00|40022472|Zeromus|00019EA0|13709576||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:38.6470000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:38.6470000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:18:38.7620000-07:00|Change|40022C6F||||||||| +261|2023-10-06T21:18:38.7620000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:18:39.2420000-07:00|40022C75|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|154003|7E6C0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|13709576|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.78|103.86|0.00|-3.14|00019EA4|0|1| +37|2023-10-06T21:18:39.2870000-07:00|40022472|Zeromus|00019EA0|13704800||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:39.3320000-07:00|40022472|Zeromus|00019EA2|13696259||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:39.3320000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|726003|65180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13709576|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5850|10000|||104.18|102.48|0.00|-2.76|00019EA5|0|1| +21|2023-10-06T21:18:39.3770000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|336D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|13696259|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||107.58|83.42|0.00|-1.98|00019EA6|0|1| +38|2023-10-06T21:18:39.3770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||107.58|83.42|0.00|-1.98|0|0|0||||||||||||| +26|2023-10-06T21:18:39.3770000-07:00|76E|Sword Oath|23.05|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:18:39.4200000-07:00|40022472|Zeromus|00019EA0|13691558||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:39.4200000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-2.82| +22|2023-10-06T21:18:39.4200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|33130000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|00019EA7|0|8| +22|2023-10-06T21:18:39.4200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|47B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13696259|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|00019EA7|1|8| +22|2023-10-06T21:18:39.4200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|32350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||111.71|93.76|0.00|-1.75|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|00019EA7|2|8| +22|2023-10-06T21:18:39.4200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|200004|4EC10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||102.22|99.17|0.00|-3.03|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|00019EA7|3|8| +22|2023-10-06T21:18:39.4200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|200004|52560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5850|10000|||103.88|102.59|0.00|-2.99|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|00019EA7|4|8| +22|2023-10-06T21:18:39.4200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|334A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1500|10000|||100.50|100.78|0.00|0.07|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|00019EA7|5|8| +22|2023-10-06T21:18:39.4200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|4|327B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6450|10000|||100.08|102.35|0.00|1.17|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|00019EA7|6|8| +22|2023-10-06T21:18:39.4200000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|200004|4F4F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||107.58|83.42|0.00|-1.98|81177|81177|3861|10000|||109.54|96.95|0.00|-0.87|00019EA7|7|8| +21|2023-10-06T21:18:39.5980000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13691558|40478540|10000|10000|||100.00|80.10|0.00|0.00|98646|129844|10000|10000|||93.34|86.94|0.00|3.00|00019EA8|0|1| +20|2023-10-06T21:18:39.6430000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|100.16|102.56|0.00|0.80| +261|2023-10-06T21:18:39.2110000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T21:18:39.6880000-07:00|10FF0004|Buhojaqe Zijaqe|20FDD73|item_fdd73|10FF0004|Buhojaqe Zijaqe|6F00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1500|10000|||100.51|100.88|0.00|0.14|81541|81541|1500|10000|||100.51|100.88|0.00|0.14|00019EA9|0|1| +21|2023-10-06T21:18:39.6880000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13691558|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||110.79|94.86|0.00|-1.74|00019EAA|0|1| +261|2023-10-06T21:18:39.4930000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:18:39.4930000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:18:39.9990000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||109.14|96.36|0.00|-1.73| +261|2023-10-06T21:18:39.4930000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:18:40.0880000-07:00|40022472|Zeromus|00019EA3|13678279||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:40.0880000-07:00|10FF0009|Zewo Negiwo|00019EA7|81177|81177|4361|10000|0||107.35|98.92|0.00|-1.07|1800|0|0|0| +20|2023-10-06T21:18:40.0890000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|103.44|102.77|0.00|-2.99| +37|2023-10-06T21:18:40.1340000-07:00|40022472|Zeromus|00019EA8|13675227||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:39.6910000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T21:18:39.6910000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:18:40.2230000-07:00|40022472|Zeromus|00019EA7|13656870||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:40.2230000-07:00|40022472|Zeromus|00019EAA|13653685||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:40.4030000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B4F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13653685|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.20|99.50|0.00|-1.39|00019EAB|0|1| +21|2023-10-06T21:18:40.4030000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||106.89|98.06|0.00|-1.77|82773|82773|10000|10000|||106.89|98.06|0.00|-1.77|00019EAC|0|1| +38|2023-10-06T21:18:40.4030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2050|10000|0||100.51|100.88|0.00|0.14|0|0|0||||||||||||| +38|2023-10-06T21:18:40.4030000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||106.89|98.06|0.00|-1.77|0|0|0||||||||||||| +26|2023-10-06T21:18:40.4030000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:18:39.9200000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:18:40.4920000-07:00|40022472|Zeromus|00019EA5|13627805||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:40.4920000-07:00|40022472|Zeromus|DoT|A92|B25|13653685|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|6450|10000|||100.24|102.77|0.00|-3.13| +21|2023-10-06T21:18:40.4920000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13653685|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2050|10000|||100.51|100.88|0.00|0.14|00019EAD|0|1| +38|2023-10-06T21:18:40.4920000-07:00|40022472|Zeromus|005A5A00|13624952|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:18:40.4920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7000|10000|0||100.24|102.77|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:18:40.5380000-07:00|10FF0001|Sesuga Sapisuga|1CD6|Intervention|10FF0007|Kehabiqo Febiqo|EC0E|4960000|F60E|A730000|13CE0E|A740000|0|0|0|0|0|0|0|0|0|0|98646|129844|10000|10000|||90.37|85.50|0.00|2.81|129071|129071|9200|10000|||107.92|83.24|0.00|-1.44|00019EAE|0|1| +31|2023-10-06T21:18:40.5380000-07:00|10FF0001||||| +37|2023-10-06T21:18:40.5820000-07:00|10FF0004|Buhojaqe Zijaqe|00019EA9|81541|81541|2050|10000|0||100.51|100.88|0.00|0.14|1C00|0|0|01|04000031|296F|41F00000|| +26|2023-10-06T21:18:40.5820000-07:00|31|Medicated|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|296F|81541|81541| +21|2023-10-06T21:18:40.5820000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|234C0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|13624952|40478540|10000|10000|||100.00|80.10|0.00|0.00|98646|129844|10000|10000|||90.33|85.41|0.00|2.79|00019EAF|0|1| +38|2023-10-06T21:18:40.5820000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|-3.14|0|0|0||||||| +26|2023-10-06T21:18:40.5820000-07:00|31|Medicated|29.96|10FF0004|Buhojaqe Zijaqe|40022C1B|Ruby Carbuncle|296F|77430|81541| +38|2023-10-06T21:18:40.5820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2050|10000|0||100.51|100.88|0.00|0.14|0|0|0|||||||||||||||| +37|2023-10-06T21:18:40.6720000-07:00|40022472|Zeromus|00019EA6|13611787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:40.6720000-07:00|10FF0001|Sesuga Sapisuga|00019EA6|129071|129071|9600|10000|0||107.92|83.24|0.00|-1.45|1300|0|0|0| +261|2023-10-06T21:18:40.2390000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:40.2390000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:18:40.7150000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13611787|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9600|10000|||107.92|83.24|0.00|-1.45|00019EB0|0|1| +31|2023-10-06T21:18:40.7150000-07:00|10FF0001||||| +20|2023-10-06T21:18:40.8040000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0007|Kehabiqo Febiqo|1.926|100.51|100.88|0.00|0.14| +261|2023-10-06T21:18:40.4320000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:18:40.9380000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||105.55|98.89|-0.02|-2.10|82773|82773|10000|10000|||105.55|98.89|-0.02|-2.10|00019EB1|0|1| +38|2023-10-06T21:18:40.9380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||105.55|98.89|-0.02|-2.10|0|0|0||||||||||||| +26|2023-10-06T21:18:40.9380000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +04|2023-10-06T21:18:40.4320000-07:00|40022C6F|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||101.43|99.78|0.00|-0.47| +261|2023-10-06T21:18:40.4320000-07:00|Remove|40022C6F| +37|2023-10-06T21:18:41.0270000-07:00|40022472|Zeromus|00019EAD|13611634||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:41.0720000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2DE60000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|13611787|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.36|99.78|0.00|-1.54|00019EB2|0|1| +37|2023-10-06T21:18:41.1620000-07:00|40022472|Zeromus|00019EAB|13608739||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:41.1620000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|102.97|102.53|0.00|-0.94| +261|2023-10-06T21:18:40.6480000-07:00|Change|40022472||||| +21|2023-10-06T21:18:41.1620000-07:00|40022472|Zeromus|8B83|Dark Matter|40022472|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13611634|40478540|10000|10000|||100.00|80.10|0.00|0.00|13611634|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019EB3|0|1| +37|2023-10-06T21:18:41.2060000-07:00|40022472|Zeromus|00019EAF|13599703||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:41.2060000-07:00|40022472|Zeromus|00019EA4|13567339||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:41.2500000-07:00|40022472|Zeromus|00019EB0|13565611||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:41.3390000-07:00|10FF0007|Kehabiqo Febiqo|00019EAE|98646|129844|10000|10000|0||90.32|85.37|0.00|2.07|1500|0|0|03|01000496|0|41000000|||||||||| +26|2023-10-06T21:18:41.3390000-07:00|496|Intervention|8.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +26|2023-10-06T21:18:41.3390000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +26|2023-10-06T21:18:41.3390000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +21|2023-10-06T21:18:41.3390000-07:00|10FF0007|Kehabiqo Febiqo|2C|Vengeance|10FF0007|Kehabiqo Febiqo|6400E20E|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|98646|129844|10000|10000|||90.32|85.37|0.00|2.07|98646|129844|10000|10000|||90.32|85.37|0.00|2.07|00019EB4|0|1| +261|2023-10-06T21:18:41.0000000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:18:41.0000000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:18:41.4730000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|550003|54EE0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|13565611|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||104.34|99.27|0.00|-2.10|00019EB5|0|1| +38|2023-10-06T21:18:41.4730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||104.34|99.27|0.00|-2.10|0|0|0||||||||||||| +30|2023-10-06T21:18:41.4730000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:18:41.4730000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:18:41.5180000-07:00|10FF0003|Gegehi Gehi|73814|73814|6050|10000|||103.44|102.77|0.00|-2.99| +21|2023-10-06T21:18:41.5180000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|22010000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|13565611|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5850|10000|||103.44|102.77|0.00|-2.99|00019EB6|0|1| +38|2023-10-06T21:18:41.5180000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5850|10000|0||103.44|102.77|0.00|-2.99|0|0|0|||||||||| +26|2023-10-06T21:18:41.5180000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:18:41.0000000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T21:18:41.5620000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|23F10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|98646|129844|10000|10000|||90.32|85.37|0.00|2.07|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019EB7|0|1| +39|2023-10-06T21:18:41.6070000-07:00|10FF0009|Zewo Negiwo|81177|81177|4582|10000|||101.47|102.18|0.00|-2.81| +39|2023-10-06T21:18:41.6960000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.36|99.78|0.00|-3.12| +24|2023-10-06T21:18:41.7850000-07:00|40022472|Zeromus|DoT|0|1DA7|13565611|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9600|10000|||107.92|83.24|0.00|-1.95| +38|2023-10-06T21:18:41.7850000-07:00|40022472|Zeromus|005A5A00|13558020|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:18:41.8750000-07:00|40022472|Zeromus|00019EB2|13546270||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:41.8750000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9800|10000|||107.92|83.24|0.00|-1.95| +39|2023-10-06T21:18:41.8750000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2250|10000|||100.51|100.88|0.00|-2.56| +21|2023-10-06T21:18:41.8750000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|46AE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|13558020|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9600|10000|||107.92|83.24|0.00|-1.95|00019EB8|0|1| +21|2023-10-06T21:18:41.8750000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|BCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13558020|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.12|99.61|0.00|-2.99|00019EB9|0|1| +36|2023-10-06T21:18:41.8750000-07:00|3DCC|3| +38|2023-10-06T21:18:41.8750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9800|10000|0||107.92|83.24|0.00|-1.95|0|0|0||||||||||||| +30|2023-10-06T21:18:41.8750000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:18:41.3990000-07:00|Change|10FF0001||||| +261|2023-10-06T21:18:41.3990000-07:00|Change|40022490||||||||| +261|2023-10-06T21:18:41.3990000-07:00|Change|4002248F||||||||| +21|2023-10-06T21:18:41.9190000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|58080000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|13558020|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7000|10000|||100.24|102.77|0.00|-3.13|00019EBA|0|1| +261|2023-10-06T21:18:41.4930000-07:00|Change|10FF0006||||||||||||||||| +261|2023-10-06T21:18:41.4930000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:18:41.9630000-07:00|10FF0007|Kehabiqo Febiqo|00019EB4|98646|129844|10000|10000|0||90.32|85.36|0.00|2.24|1500|0|0|01|05000059|64|41700000|| +26|2023-10-06T21:18:41.9630000-07:00|59|Vengeance|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|129844|129844| +21|2023-10-06T21:18:41.9640000-07:00|4002248F|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750003|8DE60000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9800|10000|||107.92|83.24|0.00|-1.95|44|44|0|10000|||100.00|100.00|0.00|0.00|00019EBB|0|1| +21|2023-10-06T21:18:41.9640000-07:00|40022490|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|69070000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|98646|129844|10000|10000|||90.32|85.36|0.00|2.24|44|44|0|10000|||100.00|100.00|0.00|0.00|00019EBC|0|1| +39|2023-10-06T21:18:41.9640000-07:00|10FF0007|Kehabiqo Febiqo|99944|129844|10000|10000|||90.32|85.36|0.00|2.24| +39|2023-10-06T21:18:42.0070000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6900|10000|||100.24|102.77|0.00|-3.13| +21|2023-10-06T21:18:42.0980000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|36CA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|13546270|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4582|10000|||101.27|102.13|0.00|-3.08|00019EBD|0|1| +37|2023-10-06T21:18:42.1880000-07:00|40022472|Zeromus|00019EB5|13524528||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:42.1880000-07:00|10FF000A|Dukaro Nezikaro|00019EB5|82773|82773|10000|10000|0||101.20|100.46|0.00|-2.97|1E00|0|0|01|03000A82|01|41F00000|| +21|2023-10-06T21:18:42.1880000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0007|Kehabiqo Febiqo|200004|43380000|FE0E|1290000|FE0E|77E0000|1B|B98000|0|0|0|0|0|0|0|0|99944|129844|10000|10000|||90.32|85.31|0.00|2.75|81541|81541|2250|10000|||100.51|100.88|0.00|-2.56|00019EBE|0|1| +38|2023-10-06T21:18:42.1880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99944|129844|10000|10000|47||90.32|85.31|0.00|2.75|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:18:42.1880000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +26|2023-10-06T21:18:42.1880000-07:00|77E|Catalyze|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:18:42.1880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||101.20|100.46|0.00|-2.97|0|0|0||||||||||||| +261|2023-10-06T21:18:41.6870000-07:00|Change|10FF0009||||||||||||||||||| +37|2023-10-06T21:18:42.2770000-07:00|40022472|Zeromus|00019EB6|13515823||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:42.3650000-07:00|10FF0007|Kehabiqo Febiqo|00019EB7|109145||||||90.33|85.20|0.00|2.83| +37|2023-10-06T21:18:42.4100000-07:00|40022472|Zeromus|00019EB9|13512801||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:42.4100000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-2.50| +261|2023-10-06T21:18:41.9100000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T21:18:42.4980000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|28B00000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|13515823|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5850|10000|||101.92|102.01|0.00|-2.84|00019EBF|0|1| +38|2023-10-06T21:18:42.4980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5550|10000|0||101.92|102.01|0.00|-2.84|0|0|0|||||||||| +30|2023-10-06T21:18:42.4980000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:18:42.5440000-07:00|40022472|Zeromus|00019EBA|13490265||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:42.5440000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|31C80000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|13512801|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9800|10000|||108.27|83.23|0.00|-1.93|00019EC0|0|1| +261|2023-10-06T21:18:42.0210000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:18:42.5870000-07:00|10FF0001|Sesuga Sapisuga|00019EBB|92745||||||108.27|83.23|0.00|-1.93| +37|2023-10-06T21:18:42.5870000-07:00|10FF0007|Kehabiqo Febiqo|00019EBC|82258||||||90.34|84.96|0.00|3.00| +20|2023-10-06T21:18:42.6320000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|100.24|102.77|0.00|-3.13| +21|2023-10-06T21:18:42.7660000-07:00|10FF0009|Zewo Negiwo|1D08|Divine Benison|10FF0007|Kehabiqo Febiqo|AC0E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|82258|129844|10000|10000|||90.35|84.82|0.00|3.09|81177|81177|4182|10000|||101.27|102.13|0.00|-3.08|00019EC1|0|1| +21|2023-10-06T21:18:42.8560000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13490265|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5550|10000|||101.63|101.44|0.00|-3.07|00019EC2|0|1| +37|2023-10-06T21:18:42.9000000-07:00|40022472|Zeromus|00019EC0|13477521||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:42.9000000-07:00|10FF0001|Sesuga Sapisuga|00019EC0|92745|129071|10000|10000|0||108.27|83.23|0.00|-1.93|1300|0|0|0| +38|2023-10-06T21:18:42.9000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6900|10000|0||100.24|102.77|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:18:42.9000000-07:00|6FD|Vulnerability Up|0.00|40022486|Zeromus|10FF0006|Wowobora Gogobora|01|81809|44| +261|2023-10-06T21:18:42.4280000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:18:42.9460000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|556003|89440000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|13477521|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|0.07|00019EC3|0|1| +38|2023-10-06T21:18:42.9460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|0.07|0|0|0|||||||||| +30|2023-10-06T21:18:42.9460000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:18:42.4280000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T21:18:42.9900000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.93|101.06|0.00|0.07| +21|2023-10-06T21:18:42.9900000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|14000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13477521|40478540|10000|10000|||100.00|80.10|0.00|0.00|82258|129844|10000|10000|||90.35|84.82|0.00|3.09|00019EC4|0|1| +21|2023-10-06T21:18:42.9900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|C070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13477521|40478540|10000|10000|||100.00|80.10|0.00|0.00|92745|129071|10000|10000|||108.27|83.23|0.00|-1.93|00019EC5|0|1| +31|2023-10-06T21:18:42.9900000-07:00|10FF0001||||| +21|2023-10-06T21:18:43.0350000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|31690000|143E|340000|4|17568000|11B|2A8000|0|0|0|0|0|0|0|0|13477521|40478540|10000|10000|||100.00|80.10|0.00|0.00|82258|129844|10000|10000|||90.35|84.82|0.00|3.09|00019EC6|0|1| +21|2023-10-06T21:18:43.0780000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13477521|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.64|100.39|0.00|1.68|00019EC7|0|1| +38|2023-10-06T21:18:43.1230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6900|10000|0||100.24|102.77|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:43.1230000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:18:43.1680000-07:00|40022472|Zeromus|00019EB8|13459427||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:43.1680000-07:00|10FF0007|Kehabiqo Febiqo|00019EBE|99466|129844|10000|10000|47||90.35|84.82|0.00|2.03|1500|0|0|02|07000129|0|41E88310|||||| +37|2023-10-06T21:18:43.2580000-07:00|40022472|Zeromus|00019EBF|13449011||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:42.7530000-07:00|Change|40022C75||||| +38|2023-10-06T21:18:43.3020000-07:00|40022C7D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:18:43.3030000-07:00|40022C7D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:18:42.8720000-07:00|Add|40022C7D||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:18:42.8720000-07:00|40022C7D|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.22|101.03|0.00|0.01| +261|2023-10-06T21:18:42.9860000-07:00|Change|40022C7D||| +37|2023-10-06T21:18:43.3920000-07:00|40022472|Zeromus|00019EBD|13434985||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:43.3920000-07:00|40022472|Zeromus|00019EC2|13434984||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:43.3920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1800|10000|0||100.49|100.42|0.00|-2.94|0|0|0|||||||||||||||| +261|2023-10-06T21:18:42.9860000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:18:43.4810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|18E1|99466|129844|10000|10000|||90.35|84.78|0.00|2.33|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1800|10000|||100.48|99.99|0.00|-3.01| +24|2023-10-06T21:18:43.4810000-07:00|40022472|Zeromus|DoT|A92|533|13434984|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|6900|10000|||100.24|102.77|0.00|-3.13| +38|2023-10-06T21:18:43.4810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105835|129844|10000|10000|47||90.35|84.78|0.00|2.33|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:18:43.4810000-07:00|40022472|Zeromus|005A5A00|13433653|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:18:43.5250000-07:00|40022472|Zeromus|00019EC4|13428533||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:43.5250000-07:00|40022472|Zeromus|00019EC5|13425454||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:43.5250000-07:00|4002248F|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750003|90030000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|92745|129071|10000|10000|||108.27|83.23|0.00|-1.93|44|44|0|10000|||100.00|100.00|0.00|0.00|00019EC8|0|1| +21|2023-10-06T21:18:43.5250000-07:00|40022490|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|0|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|99466|129844|10000|10000|||90.35|84.78|0.00|2.33|44|44|0|10000|||100.00|100.00|0.00|0.00|00019EC9|0|1| +37|2023-10-06T21:18:43.5700000-07:00|10FF0007|Kehabiqo Febiqo|00019EC1|105835|129844|10000|10000|39||90.36|84.75|0.00|2.45|1500|0|0|01|090004C2|0|41700000|| +26|2023-10-06T21:18:43.5700000-07:00|4C2|Divine Benison|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +21|2023-10-06T21:18:43.5700000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3EA90000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|13425454|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.64|100.39|0.00|2.17|00019ECA|0|1| +38|2023-10-06T21:18:43.5700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105835|129844|10000|10000|39||90.36|84.75|0.00|2.45|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:18:43.7030000-07:00|40022472|Zeromus|00019EC3|13390314||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:43.8360000-07:00|40022472|Zeromus|00019EC7|13387946||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:43.9710000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0001|Sesuga Sapisuga|6400F60E|7420000|F60E|A770000|3B0E|A780000|90A3000F|7418000|0|0|0|0|0|0|0|0|92745|129071|10000|10000|||108.27|83.23|0.00|-1.93|105835|129844|10000|10000|||90.37|84.67|0.00|2.77|00019ECB|0|1| +21|2023-10-06T21:18:44.0600000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|94F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13387946|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019ECC|0|1| +37|2023-10-06T21:18:44.1490000-07:00|10FF0001|Sesuga Sapisuga|00019EC8|55878||||||108.27|83.23|0.00|-1.93| +261|2023-10-06T21:18:43.6910000-07:00|Change|10FF0009||||||| +21|2023-10-06T21:18:44.2830000-07:00|10FF0009|Zewo Negiwo|6505|Aquaveil|10FF0001|Sesuga Sapisuga|F10E|A940000|1B|65058000|0|0|0|0|0|0|0|0|0|0|0|0|55878|129071|10000|10000|||108.27|83.23|0.00|-1.93|81177|81177|4182|10000|||101.27|102.13|0.00|-2.58|00019ECD|0|1| +261|2023-10-06T21:18:43.8070000-07:00|Change|40022C7D||| +34|2023-10-06T21:18:44.3270000-07:00|40022C7D|Carbuncle|40022C7D|Carbuncle|01| +37|2023-10-06T21:18:44.3720000-07:00|40022472|Zeromus|00019ECA|13371905||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:44.3720000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|230D0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|13387946|40478540|10000|10000|||100.00|80.10|0.00|0.00|55878|129071|10000|10000|||108.27|83.23|0.00|-1.93|00019ECE|0|1| +20|2023-10-06T21:18:44.3720000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0001|Sesuga Sapisuga|1.926|100.31|99.53|0.00|-0.86| +261|2023-10-06T21:18:44.0350000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:18:44.5490000-07:00|40022472|Zeromus|00019EC6|13359256||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:44.5490000-07:00|10FF0007|Kehabiqo Febiqo|00019EC6|111809||||||90.38|84.64|0.00|1.85| +39|2023-10-06T21:18:44.5490000-07:00|10FF0003|Gegehi Gehi|73814|73814|5750|10000|||101.58|101.30|0.00|-3.07| +21|2023-10-06T21:18:44.5490000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5550|10000|||101.58|101.30|0.00|-3.07|73814|73814|5550|10000|||101.58|101.30|0.00|-3.07|00019ECF|0|1| +38|2023-10-06T21:18:44.5490000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5750|10000|0||101.58|101.30|0.00|-3.07|0|0|0|||||||||| +26|2023-10-06T21:18:44.5490000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:18:44.0350000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:18:44.1490000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:18:44.5940000-07:00|40022472|Zeromus|00019ECC|13356873||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:44.5940000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|712003|1C4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13359256|40478540|10000|10000|||100.00|80.10|0.00|0.00|111809|129844|10000|10000|||90.38|84.64|0.00|1.67|00019ED0|0|1| +37|2023-10-06T21:18:44.6390000-07:00|10FF0001|Sesuga Sapisuga|00019ECB|55878|129071|10000|10000|12||108.27|83.23|0.00|-1.93|1300|0|0|03|02000742|64|41000000|||||||||| +26|2023-10-06T21:18:44.6390000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|129071|129844| +26|2023-10-06T21:18:44.6390000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +26|2023-10-06T21:18:44.6390000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +37|2023-10-06T21:18:44.6390000-07:00|10FF0007|Kehabiqo Febiqo|00019ECB|111809|129844|10000|10000|39||90.38|84.64|0.00|1.67|1500|0|0|01|0A000741|0190|41000000|| +26|2023-10-06T21:18:44.6390000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +39|2023-10-06T21:18:44.6390000-07:00|10FF0009|Zewo Negiwo|81177|81177|4403|10000|||101.27|102.13|0.00|3.14| +38|2023-10-06T21:18:44.6390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|55878|129071|10000|10000|12||108.27|83.23|0.00|-1.93|0|0|0||||||||||||||||||| +39|2023-10-06T21:18:44.7280000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.64|100.39|0.00|-3.06| +24|2023-10-06T21:18:44.7720000-07:00|40022472|Zeromus|DoT|0|26D7|13356873|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|55878|129071|10000|10000|||108.27|83.23|0.00|-1.93| +38|2023-10-06T21:18:44.7720000-07:00|40022472|Zeromus|005A5A00|13346930|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T21:18:44.3420000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:18:44.8610000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|25900000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|111809|129844|10000|10000|||90.38|84.64|0.00|2.01|73956|77430|10000|10000|||100.05|98.22|0.00|-3.08|00019ED1|0|1| +39|2023-10-06T21:18:44.8610000-07:00|10FF0001|Sesuga Sapisuga|57168|129071|10000|10000|||108.27|83.23|0.00|-1.93| +36|2023-10-06T21:18:44.8610000-07:00|3EA8|3| +37|2023-10-06T21:18:44.9050000-07:00|10FF0001|Sesuga Sapisuga|00019ECD|57168|129071|10000|10000|12||108.27|83.23|0.00|-1.93|1300|0|0|01|06000A94|0|41000000|| +26|2023-10-06T21:18:44.9050000-07:00|A94|Aquaveil|8.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +39|2023-10-06T21:18:44.9060000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2000|10000|||100.30|99.53|0.00|2.71| +21|2023-10-06T21:18:44.9060000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|156003|AE2C0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|13346930|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6900|10000|||100.24|102.77|0.00|-3.13|00019ED2|0|1| +261|2023-10-06T21:18:44.4330000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T21:18:44.9950000-07:00|40022472|Zeromus|00019ECE|13337957||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:44.9950000-07:00|10FF0007|Kehabiqo Febiqo|113107|129844|10000|10000|||90.38|84.64|0.00|2.01| +39|2023-10-06T21:18:44.9950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6800|10000|||100.24|102.77|0.00|-3.13| +21|2023-10-06T21:18:45.0400000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42710003|36C30000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|13346930|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019ED3|0|1| +21|2023-10-06T21:18:45.0850000-07:00|4002248F|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|21990000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|57168|129071|10000|10000|||108.27|83.23|0.00|-1.93|44|44|0|10000|||100.00|100.00|0.00|0.00|00019ED4|0|1| +21|2023-10-06T21:18:45.0850000-07:00|40022490|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|0|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|113107|129844|10000|10000|||90.38|84.64|0.00|2.01|44|44|0|10000|||100.00|100.00|0.00|0.00|00019ED5|0|1| +21|2023-10-06T21:18:45.0850000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|10BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13337957|40478540|10000|10000|||100.00|80.10|0.00|0.00|57168|129071|10000|10000|||108.27|83.23|0.00|-1.93|00019ED6|0|1| +21|2023-10-06T21:18:45.1290000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|22DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13337957|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.64|100.39|0.00|-3.06|00019ED7|0|1| +21|2023-10-06T21:18:45.1290000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13337957|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6800|10000|||100.24|102.77|0.00|-3.13|00019ED8|0|1| +37|2023-10-06T21:18:45.2190000-07:00|40022472|Zeromus|00019ED0|13330714||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:45.2190000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|28800000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|13337957|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5750|10000|||101.58|101.30|0.00|-3.07|00019ED9|0|1| +38|2023-10-06T21:18:45.2190000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5450|10000|0||101.58|101.30|0.00|-3.07|0|0|0||||||||||||| +30|2023-10-06T21:18:45.2190000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:18:45.2190000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:18:44.7650000-07:00|Change|10FF0003||| +21|2023-10-06T21:18:45.2640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13337957|40478540|10000|10000|||100.00|80.10|0.00|0.00|57168|129071|10000|10000|||108.27|83.23|0.00|-1.93|00019EDA|0|1| +31|2023-10-06T21:18:45.2640000-07:00|10FF0001||||| +37|2023-10-06T21:18:45.3090000-07:00|10FF0003|Gegehi Gehi|00019ECF|73814|73814|5450|10000|0||101.58|101.30|0.00|-3.07|2300|0|0|01|030004D3|0|C1F00000|| +20|2023-10-06T21:18:45.3090000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|101.27|102.13|0.00|2.79| +38|2023-10-06T21:18:45.3090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113107|129844|10000|10000|39||90.38|84.64|-0.02|2.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:45.3090000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +39|2023-10-06T21:18:45.3970000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-2.66| +261|2023-10-06T21:18:45.0040000-07:00|Change|10FF0006||| +21|2023-10-06T21:18:45.4870000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16350000|200204|3FCD8000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|13330714|40478540|10000|10000|||100.00|80.10|0.00|0.00|113107|129844|10000|10000|||90.38|84.64|-0.02|2.01|00019EDB|0|1| +37|2023-10-06T21:18:45.5310000-07:00|40022472|Zeromus|00019ED2|13286126||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:45.1190000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:18:45.6220000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|156003|9BE40000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|13286126|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6800|10000|||100.24|102.77|0.00|-3.13|00019EDC|0|1| +38|2023-10-06T21:18:45.6220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6800|10000|0||100.24|102.77|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:45.6220000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:18:45.6660000-07:00|10FF0007|Kehabiqo Febiqo|00019ED1|122723||||||90.38|84.64|-0.02|2.01| +37|2023-10-06T21:18:45.6660000-07:00|40022472|Zeromus|00019ED8|13285969||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:45.6660000-07:00|40022472|Zeromus|00019ED6|13281684||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:45.6660000-07:00|40022472|Zeromus|00019ED3|13267665||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:45.7110000-07:00|10FF0001|Sesuga Sapisuga|00019ED4|48567|129071|10000|10000|0||108.27|83.23|0.00|-1.93|1300|0|0|01|05000000|0|0|| +37|2023-10-06T21:18:45.7110000-07:00|10FF0007|Kehabiqo Febiqo|00019ED5|122723|129844|10000|10000|20||90.38|84.64|-0.02|2.01|1500|0|0|02|08000000|0|0|||||| +38|2023-10-06T21:18:45.7110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122723|129844|10000|10000|20||90.38|84.64|-0.02|2.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:45.7110000-07:00|77E|Catalyze|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +30|2023-10-06T21:18:45.7110000-07:00|4C2|Divine Benison|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:18:45.7110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|48567|129071|10000|10000|0||108.27|83.23|0.00|-1.93|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:45.7110000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +21|2023-10-06T21:18:45.7550000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|ED60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13286126|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.64|100.39|0.00|-3.06|00019EDD|0|1| +21|2023-10-06T21:18:45.7550000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0001|Sesuga Sapisuga|4|294E0000|590E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|57168|129071|10000|10000|||108.27|83.23|0.00|-1.93|81541|81541|2000|10000|||100.30|99.53|0.00|2.69|00019EDE|0|1| +38|2023-10-06T21:18:45.7550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|48567|129071|10000|10000|14||108.27|83.23|0.00|-1.93|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:45.7550000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T21:18:45.7980000-07:00|40022472|Zeromus|00019EDA|13264780||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:45.3050000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T21:18:45.8430000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019EDF|0|1| +38|2023-10-06T21:18:45.8430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:18:45.8430000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:18:45.9320000-07:00|40022472|Zeromus|00019ED7|13255853||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:45.9780000-07:00|40022472|Zeromus|00019ED9|13245485||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:45.9780000-07:00|10FF0003|Gegehi Gehi|00019ED9|73814|73814|5450|10000|0||101.58|101.30|0.00|-3.07|2300|0|0|01|030004D3|0|41F00000|| +39|2023-10-06T21:18:45.9780000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.93|101.06|0.00|3.14| +38|2023-10-06T21:18:45.9780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5450|10000|0||101.58|101.30|0.00|-3.07|0|0|0||||||||||||| +24|2023-10-06T21:18:46.0230000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|3FCD|48567|129071|10000|10000|||108.27|83.23|0.00|-1.93|10FF0007|Kehabiqo Febiqo|0|122723|129844|10000|10000|||90.38|84.64|-0.02|2.01| +37|2023-10-06T21:18:46.0230000-07:00|40022472|Zeromus|00019EDB|13239800||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:46.0230000-07:00|10FF0007|Kehabiqo Febiqo|00019EDB|129844||||||90.38|84.64|-0.02|2.01| +38|2023-10-06T21:18:46.0230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|64900|129071|10000|10000|14||108.27|83.23|0.00|-1.93|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:18:46.0670000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|20EF0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|13245485|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.64|100.39|0.00|-3.06|00019EE0|0|1| +21|2023-10-06T21:18:46.1570000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13CE0F|A748000|0|0|0|0|0|0|0|0|0|0|48567|129071|10000|10000|||108.27|83.23|0.00|-1.93|48567|129071|10000|10000|||108.27|83.23|0.00|-1.93|00019EE1|0|1| +38|2023-10-06T21:18:46.1570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|64900|129071|10000|10000|14||108.27|83.23|0.00|-1.93|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:46.1570000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:18:46.1570000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:18:46.1570000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:18:46.1570000-07:00|10FF0001||||| +37|2023-10-06T21:18:46.2450000-07:00|10FF000A|Dukaro Nezikaro|00019EDF|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|1E00|0|0|01|030004A2|0|40C00000|| +261|2023-10-06T21:18:45.7020000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:18:46.2450000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|754003|42780000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|13239800|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4403|10000|||101.27|102.13|0.00|-3.08|00019EE2|0|1| +38|2023-10-06T21:18:46.2450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0||||||||||||| +21|2023-10-06T21:18:46.3340000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13239800|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5450|10000|||101.55|101.31|0.00|-3.02|00019EE3|0|1| +21|2023-10-06T21:18:46.3790000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13239800|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.38|84.64|-0.02|2.01|00019EE4|0|1| +38|2023-10-06T21:18:46.3790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|0||100.30|99.53|0.00|2.69|0|0|0|||||||||||||||| +37|2023-10-06T21:18:46.4690000-07:00|40022472|Zeromus|00019EDC|13199892||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:46.4690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|17E0|129844|129844|10000|10000|||90.38|84.64|-0.02|2.01|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||90.38|84.64|-0.02|2.01| +24|2023-10-06T21:18:46.4690000-07:00|40022472|Zeromus|DoT|A92|6B4|13239800|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|6800|10000|||100.21|100.60|0.00|-3.13| +21|2023-10-06T21:18:46.4690000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|10B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13239800|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1550|10000|||100.30|99.53|0.00|2.69|00019EE5|0|1| +38|2023-10-06T21:18:46.4690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|20||90.38|84.64|-0.02|2.01|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:46.4690000-07:00|40022472|Zeromus|005A5A00|13198176|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:18:46.5120000-07:00|40022472|Zeromus|00019EDD|13194378||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:46.5570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1794|64900|129071|10000|10000|||108.27|83.23|0.00|-1.93|10FF0001|Sesuga Sapisuga|0|64900|129071|10000|10000|||108.27|83.23|0.00|-1.93| +38|2023-10-06T21:18:46.5570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|70936|129071|10000|10000|14||108.27|83.23|0.00|-1.93|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:18:46.6020000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||101.64|100.39|0.00|-3.06|90216|90216|10000|10000|||101.64|100.39|0.00|-3.06|00019EE6|0|1| +38|2023-10-06T21:18:46.6020000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||101.64|100.39|0.00|-3.06|0|0|0|||||||||| +26|2023-10-06T21:18:46.6020000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:18:46.7350000-07:00|10FF0001|Sesuga Sapisuga|00019EDE|81510|129071|10000|10000|14||108.27|83.23|0.00|-1.93|1300|0|0|01|05000129|0|41E8830F|| +37|2023-10-06T21:18:46.8250000-07:00|40022472|Zeromus|00019EE0|13185947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:46.8250000-07:00|10FF0008|Kokosaze Lulusaze|00019EE0|90216|90216|10000|10000|0||101.64|100.39|0.00|-3.06|1F00|0|0|01|02000353|0|C0A00000|| +38|2023-10-06T21:18:46.8250000-07:00|40022472|Zeromus|005A5A00|13185947|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:18:46.8250000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +261|2023-10-06T21:18:46.3320000-07:00|Change|10FF0004||| +37|2023-10-06T21:18:46.8700000-07:00|40022472|Zeromus|00019EE3|13185946||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:46.8700000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|20930000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|13185947|40478540|10000|10000|||100.00|80.10|0.00|0.00|81510|129071|10000|10000|||108.27|83.23|0.00|-1.93|00019EE7|0|1| +37|2023-10-06T21:18:46.9130000-07:00|40022472|Zeromus|00019EE4|13183042||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:18:46.4290000-07:00|40022C75|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||101.78|103.86|0.00|-3.14| +261|2023-10-06T21:18:46.4290000-07:00|Remove|40022C75| +37|2023-10-06T21:18:47.0030000-07:00|40022472|Zeromus|00019EE5|13182775||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:47.0030000-07:00|10FF0009|Zewo Negiwo|DF2|Tetragrammaton|10FF0001|Sesuga Sapisuga|4|59C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81510|129071|10000|10000|||108.27|83.23|0.00|-1.93|81177|81177|4003|10000|||101.27|102.13|0.00|-3.08|00019EE8|0|1| +261|2023-10-06T21:18:46.5400000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:18:47.1800000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40022472|Zeromus|714003|3DB60000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|13182775|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019EE9|0|1| +38|2023-10-06T21:18:47.1800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:18:47.1800000-07:00|4A2|Ten Chi Jin|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:18:47.2260000-07:00|10FF0008|Kokosaze Lulusaze|00019EE6|90216|90216|10000|10000|0||101.64|100.39|0.00|-3.06|1F00|0|0|01|02000353|0|40A00000|| +21|2023-10-06T21:18:47.2260000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13182775|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.64|100.39|0.00|-3.06|00019EEA|0|1| +21|2023-10-06T21:18:47.2260000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.38|84.64|-0.02|2.01|13182775|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019EEB|0|1| +38|2023-10-06T21:18:47.2260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||101.64|100.39|0.00|-3.06|0|0|0|||||||||| +261|2023-10-06T21:18:46.7720000-07:00|Change|10FF0009||||||| +20|2023-10-06T21:18:47.4920000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.30|99.51|0.00|2.81| +37|2023-10-06T21:18:47.5360000-07:00|40022472|Zeromus|00019EE2|13165759||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:47.5360000-07:00|10FF0001|Sesuga Sapisuga|00019EE8|104491||||||108.27|83.23|0.00|-1.93| +39|2023-10-06T21:18:47.5360000-07:00|10FF0003|Gegehi Gehi|73814|73814|5650|10000|||99.90|100.36|0.00|-2.92| +21|2023-10-06T21:18:47.5360000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13182775|40478540|10000|10000|||100.00|80.10|0.00|0.00|81510|129071|10000|10000|||108.27|83.23|0.00|-1.93|00019EEC|0|1| +31|2023-10-06T21:18:47.5360000-07:00|10FF0001||||| +261|2023-10-06T21:18:47.1100000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:18:47.6260000-07:00|40022472|Zeromus|00019EE7|13157420||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:47.6260000-07:00|10FF0009|Zewo Negiwo|81177|81177|4224|10000|||101.27|102.13|0.00|2.79| +38|2023-10-06T21:18:47.6260000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6800|10000|0||100.21|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:18:47.6260000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +20|2023-10-06T21:18:47.6700000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|99.90|100.36|0.00|-2.92| +39|2023-10-06T21:18:47.7150000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.60|100.25|0.00|-3.05| +20|2023-10-06T21:18:47.7150000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|101.27|102.13|0.00|2.79| +24|2023-10-06T21:18:47.7600000-07:00|40022472|Zeromus|DoT|0|1F25|13157420|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|104491|129071|10000|10000|||108.27|83.23|0.00|-1.93| +38|2023-10-06T21:18:47.7600000-07:00|40022472|Zeromus|005A5A00|13149447|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T21:18:47.2910000-07:00|Remove|40022C71| +37|2023-10-06T21:18:47.8490000-07:00|40022472|Zeromus|00019EEA|13144226||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:18:47.8490000-07:00|3F84|3| +261|2023-10-06T21:18:47.3820000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T21:18:47.8930000-07:00|10FF0001|Sesuga Sapisuga|105781|129071|10000|10000|||108.09|83.29|0.00|-1.67| +39|2023-10-06T21:18:47.8930000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1750|10000|||100.30|99.41|0.00|3.09| +21|2023-10-06T21:18:47.9380000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|23020000|A3E|340000|200204|3EA48000|11B|258000|0|0|0|0|0|0|0|0|13144226|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.38|84.64|-0.02|2.01|00019EED|0|1| +39|2023-10-06T21:18:47.9820000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||90.38|84.64|-0.02|2.01| +261|2023-10-06T21:18:47.5680000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:18:48.0270000-07:00|10FF0007|Kehabiqo Febiqo|00019EEB|129844|129844|10000|10000|13||90.41|84.67|0.00|2.13|1500|0|0|0| +39|2023-10-06T21:18:48.0270000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7000|10000|||100.21|100.57|0.00|-3.13| +37|2023-10-06T21:18:48.0710000-07:00|40022472|Zeromus|00019EEC|13141312||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:48.0710000-07:00|40022472|Zeromus|00019EE9|13125514||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:48.0710000-07:00|10FF000A|Dukaro Nezikaro|00019EE9|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|1E00|0|0|01|030004A2|01|4085915F|| +21|2023-10-06T21:18:48.0720000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|156003|9A510000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|13144226|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6800|10000|||100.21|100.57|0.00|-3.13|00019EEE|0|1| +21|2023-10-06T21:18:48.1160000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|167C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|105781|129071|10000|10000|||107.88|85.16|0.00|-1.67|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019EEF|0|1| +261|2023-10-06T21:18:47.6650000-07:00|Change|10FF0006||||||| +261|2023-10-06T21:18:47.7840000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:18:48.2060000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40022472|Zeromus|554003|5FFC0000|900000E|4A28000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|13125514|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019EF0|0|1| +38|2023-10-06T21:18:48.2060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:18:48.2060000-07:00|4A2|Ten Chi Jin|3.99|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:18:48.2060000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:18:48.2510000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13125514|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7000|10000|||100.21|100.57|0.00|-3.13|00019EF1|0|1| +261|2023-10-06T21:18:47.7840000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:18:47.9030000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:18:48.3850000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|3.07| +21|2023-10-06T21:18:48.4300000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13125514|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.58|100.02|0.00|-3.03|00019EF2|0|1| +21|2023-10-06T21:18:48.4300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|38050000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13125514|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1750|10000|||100.30|99.38|0.00|-3.12|00019EF3|0|1| +261|2023-10-06T21:18:48.1380000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:18:48.5640000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|3EA4|105781|129071|10000|10000|||107.56|88.35|0.00|-1.67|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||90.87|85.42|0.00|2.09| +37|2023-10-06T21:18:48.5640000-07:00|40022472|Zeromus|00019EED|13116552||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:48.5640000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|726003|CA920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13125514|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.58|100.02|0.00|-3.04|00019EF4|0|1| +38|2023-10-06T21:18:48.5640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||101.58|100.02|0.00|-3.04|0|0|0||||||| +30|2023-10-06T21:18:48.5640000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:18:48.5640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121817|129071|10000|10000|14||107.56|88.35|0.00|-1.67|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:48.6080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121817|129071|10000|10000|14||107.56|88.35|0.00|-1.67|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:48.6080000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +21|2023-10-06T21:18:48.6530000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|56230000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|13125514|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4224|10000|||101.27|102.13|0.00|-3.08|00019EF5|0|1| +38|2023-10-06T21:18:48.7420000-07:00|40022472|Zeromus|005A5A00|13116552|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:18:48.7420000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:18:48.7860000-07:00|40022472|Zeromus|00019EF1|13116389||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:48.8310000-07:00|40022472|Zeromus|00019EEE|13076884||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:48.3440000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:18:48.9200000-07:00|10FF0001|Sesuga Sapisuga|00019EEF|127573||||||107.43|89.66|0.00|-1.67| +37|2023-10-06T21:18:48.9200000-07:00|40022472|Zeromus|00019EF0|13052312||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:48.9200000-07:00|10FF000A|Dukaro Nezikaro|00019EF0|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|1E00|0|0|02|030004A2|09|4054DD1A|||||| +38|2023-10-06T21:18:48.9200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0|||||||||||||||| +39|2023-10-06T21:18:49.0090000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.93|101.06|0.00|3.14| +21|2023-10-06T21:18:49.0970000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||101.58|100.02|0.00|-3.06|90216|90216|10000|10000|||101.58|100.02|0.00|-3.06|00019EF6|0|1| +21|2023-10-06T21:18:49.0980000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|450003|23F70000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|13052312|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5650|10000|||99.90|100.36|0.00|3.14|00019EF7|0|1| +38|2023-10-06T21:18:49.0980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5450|10000|0||99.90|100.36|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:18:49.0980000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:18:49.0980000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:18:49.0980000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||101.58|100.02|0.00|-3.06|0|0|0|||||||||| +26|2023-10-06T21:18:49.0980000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:18:49.1870000-07:00|40022472|Zeromus|00019EF2|13048329||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:49.1870000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40022472|Zeromus|656003|79060000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|13052312|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019EF8|0|1| +38|2023-10-06T21:18:49.1870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0|||||||||||||||| +30|2023-10-06T21:18:49.1870000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:18:49.1870000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:18:49.2310000-07:00|40022472|Zeromus|00019EF3|13033988||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:49.2760000-07:00|40022C7D|Carbuncle|77698|77698|10000|10000|||100.22|101.03|0.00|0.01| +21|2023-10-06T21:18:49.2760000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3824|10000|||101.27|102.13|0.00|-3.08|81177|81177|3824|10000|||101.27|102.13|0.00|-3.08|00019EF9|0|1| +38|2023-10-06T21:18:49.2760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0|||||||||||||||| +261|2023-10-06T21:18:48.8770000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:18:49.3200000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13048329|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019EFA|0|1| +38|2023-10-06T21:18:49.3200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|13||91.64|86.68|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:49.3200000-07:00|496|Intervention|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +21|2023-10-06T21:18:49.3650000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|2AB60000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|13033988|40478540|10000|10000|||100.00|80.10|0.00|0.00|127573|129071|10000|10000|||107.18|92.20|0.00|-1.67|00019EFB|0|1| +38|2023-10-06T21:18:49.3650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127573|129071|10000|10000|14||107.18|92.20|0.00|-1.67|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:49.3650000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:18:49.3650000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:18:48.8770000-07:00|Change|10FF0003||||||||||||||||| +38|2023-10-06T21:18:49.4090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1900|10000|0||100.30|99.64|0.00|-0.86|0|0|0|||||||||||||||| +24|2023-10-06T21:18:49.4980000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|18FA|129844|129844|10000|10000|||92.19|87.70|0.00|2.07|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||92.19|87.70|0.00|2.07| +38|2023-10-06T21:18:49.4980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|13||92.19|87.70|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:48.9930000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:18:49.5880000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2838|127573|129071|10000|10000|||107.06|93.47|0.00|-1.67|10FF0001|Sesuga Sapisuga|0|127573|129071|10000|10000|||107.06|93.47|0.00|-1.67| +38|2023-10-06T21:18:49.5880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||107.06|93.47|0.00|-1.67|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:18:49.7210000-07:00|40022472|Zeromus|00019EF4|12982130||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:49.7670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12982130|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.25|89.66|0.00|2.07|00019EFC|0|1| +21|2023-10-06T21:18:49.8110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12982130|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||106.93|94.78|0.00|-1.68|00019EFD|0|1| +31|2023-10-06T21:18:49.8110000-07:00|10FF0001||||| +37|2023-10-06T21:18:49.8560000-07:00|40022472|Zeromus|00019EFA|12979961||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:49.8560000-07:00|10FF000A|Dukaro Nezikaro|00019EFA|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|1E00|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:18:49.9000000-07:00|10FF0009|Zewo Negiwo|00019EF9|81177|81177|3824|10000|0||101.27|102.13|0.00|-3.08|1800|0|0|01|020004B4|0|41A80000|| +26|2023-10-06T21:18:49.9000000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:18:49.9000000-07:00|40022472|Zeromus|00019EF7|12970754||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:49.9000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.33|100.26|-0.01|-0.05| +261|2023-10-06T21:18:49.3930000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:18:49.4850000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:18:49.9450000-07:00|40022472|Zeromus|00019EF5|12948703||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:49.9450000-07:00|40022472|Zeromus|00019EFB|12937769||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:49.9450000-07:00|10FF0001|Sesuga Sapisuga|00019EFB|129071|129071|10000|10000|14||106.84|95.40|0.00|-1.78|1300|0|0|02|0400076E|03|41F00000|||||| +21|2023-10-06T21:18:49.9450000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|27100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12979961|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019EFE|0|1| +38|2023-10-06T21:18:49.9450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||106.84|95.40|0.00|-1.78|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:18:50.0330000-07:00|10FF0009|Zewo Negiwo|88|Presence of Mind|10FF0009|Zewo Negiwo|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3824|10000|||101.27|102.13|0.00|-3.08|81177|81177|3824|10000|||101.27|102.13|0.00|-3.08|00019EFF|0|1| +21|2023-10-06T21:18:50.1220000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|554003|32CC0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|12937769|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5450|10000|||99.90|100.36|0.00|3.14|00019F00|0|1| +38|2023-10-06T21:18:50.1220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5150|10000|0||99.90|100.36|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:18:50.1220000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:18:50.1220000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:18:50.1670000-07:00|40022472|Zeromus|00019EF8|12906787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:50.1670000-07:00|10FF000A|Dukaro Nezikaro|00019EF8|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|1E00|0|0|01|030001FB|0|41A00000|| +38|2023-10-06T21:18:50.1670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||106.15|97.21|0.00|-2.20|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:50.1670000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:18:50.1670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0|||||||||||||||| +21|2023-10-06T21:18:50.2560000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.90|90.88|0.00|2.07|12937769|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019F01|0|1| +37|2023-10-06T21:18:50.3010000-07:00|40022472|Zeromus|00019EFC|12903883||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:50.3450000-07:00|40022472|Zeromus|00019EFD|12902127||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:50.3450000-07:00|40022472|Zeromus|8B5F|Branding Flare|40022472|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:50.3450000-07:00|4002248F|Zeromus|8B60|Flare|4002248F|Zeromus|7.700|105.00|100.00|0.00|0.00| +20|2023-10-06T21:18:50.3450000-07:00|40022490|Zeromus|8B60|Flare|40022490|Zeromus|7.700|95.00|100.00|0.00|0.00| +261|2023-10-06T21:18:49.8090000-07:00|Change|40022472||||||||| +261|2023-10-06T21:18:49.8090000-07:00|Change|4002248F||||||||||||||| +261|2023-10-06T21:18:49.8090000-07:00|Change|40022490||||||||||||||| +261|2023-10-06T21:18:49.9300000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:49.9300000-07:00|Change|10FF0003||| +21|2023-10-06T21:18:50.3900000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|344B0000|143E|340000|204|26148000|200004|274E8000|11B|2A8000|0|0|0|0|0|0|12902127|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.00|91.06|0.00|2.16|00019F02|0|1| +39|2023-10-06T21:18:50.5230000-07:00|10FF0003|Gegehi Gehi|73814|73814|5350|10000|||99.90|100.36|0.00|3.14| +37|2023-10-06T21:18:50.5690000-07:00|10FF0009|Zewo Negiwo|00019EFF|81177|81177|3824|10000|0||101.27|102.13|0.00|-3.08|1800|0|0|01|0300009D|0|41700000|| +26|2023-10-06T21:18:50.5690000-07:00|9D|Presence of Mind|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:18:50.5690000-07:00|40022472|Zeromus|00019EFE|12892127||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:50.5690000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|100.21|100.57|0.00|-3.13| +38|2023-10-06T21:18:50.5690000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3824|10000|0||101.27|102.13|0.00|-3.08|0|0|0||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C85||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C83||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C82||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C86||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C84||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C88||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C89||||||||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C81||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C8A||||||||||||||||||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:18:50.1380000-07:00|Add|40022C87||||||||||||||||||||||||||||||| +39|2023-10-06T21:18:50.6120000-07:00|10FF0009|Zewo Negiwo|81177|81177|4045|10000|||101.27|102.13|0.00|-3.08| +261|2023-10-06T21:18:50.1380000-07:00|Change|10FF0009||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C8A||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C89||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C85||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C88||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C87||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C83||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C81||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C82||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C84||| +261|2023-10-06T21:18:50.1380000-07:00|Change|40022C86||| +39|2023-10-06T21:18:50.7010000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.58|100.02|0.00|-3.06| +20|2023-10-06T21:18:50.7010000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|101.27|102.13|0.00|-3.08| +24|2023-10-06T21:18:50.7460000-07:00|40022472|Zeromus|DoT|0|199B|12892127|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|82773|82773|10000|10000|||99.93|101.06|0.00|3.14| +38|2023-10-06T21:18:50.7460000-07:00|40022472|Zeromus|005A5A00|12885572|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T21:18:50.7910000-07:00|40022472|Zeromus|005A5A00|12885572|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:18:50.7910000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +21|2023-10-06T21:18:50.8350000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|590D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|12892127|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1900|10000|||100.33|100.27|0.00|-3.12|00019F03|0|1| +37|2023-10-06T21:18:50.8810000-07:00|40022472|Zeromus|00019F00|12872568||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:50.8810000-07:00|10FF0003|Gegehi Gehi|00019F00|73814|73814|5350|10000|0||99.90|100.36|0.00|3.14|2300|0|0|01|030004D2|0|41F00000|| +39|2023-10-06T21:18:50.8810000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||105.04|99.26|0.00|-1.30| +39|2023-10-06T21:18:50.8810000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1700|10000|||100.33|100.27|0.00|-3.12| +21|2023-10-06T21:18:50.8810000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|552003|67AE0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|12885572|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.06|0.00|3.14|00019F04|0|1| +36|2023-10-06T21:18:50.8810000-07:00|4060|3| +38|2023-10-06T21:18:50.8810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|0||99.90|100.36|0.00|3.14|0|0|0||||||||||||| +38|2023-10-06T21:18:50.8810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.93|101.06|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:18:50.8810000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:18:50.4240000-07:00|Change|10FF0004||||||||||||||||| +39|2023-10-06T21:18:50.9690000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.06|91.15|0.00|2.20| +39|2023-10-06T21:18:51.0140000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7200|10000|||100.21|100.57|0.00|-3.13| +37|2023-10-06T21:18:51.0580000-07:00|10FF0007|Kehabiqo Febiqo|00019F01|129844|129844|10000|10000|4||94.42|91.82|0.00|2.17|1500|0|0|0| +261|2023-10-06T21:18:50.6370000-07:00|Change|10FF0006||||| +26|2023-10-06T21:18:51.1030000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:18:51.1030000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12872568|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.58|100.02|0.00|-3.06|00019F05|0|1| +21|2023-10-06T21:18:51.1030000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12872568|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.58|100.02|0.00|-3.06|00019F06|0|1| +21|2023-10-06T21:18:51.2820000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12872568|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5350|10000|||99.90|100.36|0.00|3.14|00019F07|0|1| +21|2023-10-06T21:18:51.3260000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|33030000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|12872568|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4045|10000|||101.27|102.13|0.00|-3.08|00019F08|0|1| +39|2023-10-06T21:18:51.4140000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +261|2023-10-06T21:18:50.9810000-07:00|Change|10FF0003||||||| +21|2023-10-06T21:18:51.5050000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|E200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12872568|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.93|101.03|0.00|-3.13|00019F09|0|1| +261|2023-10-06T21:18:51.0910000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:18:51.5480000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|752003|54F60000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|12872568|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7200|10000|||100.21|100.57|0.00|-3.13|00019F0A|0|1| +21|2023-10-06T21:18:51.5920000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12872568|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1700|10000|||100.35|100.27|0.00|1.87|00019F0B|0|1| +261|2023-10-06T21:18:51.1890000-07:00|Change|10FF0009||| +37|2023-10-06T21:18:51.6370000-07:00|40022472|Zeromus|00019F03|12849771||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:51.6370000-07:00|40022472|Zeromus|00019F04|12823229||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:51.6820000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.92|101.03|0.00|-3.11|82773|82773|10000|10000|||99.92|101.03|0.00|-3.11|00019F0C|0|1| +38|2023-10-06T21:18:51.6820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.92|101.03|0.00|-3.11|0|0|0||||||||||||| +30|2023-10-06T21:18:51.6820000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +26|2023-10-06T21:18:51.6820000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:18:51.7260000-07:00|40022472|Zeromus|00019F05|12814423||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:51.8160000-07:00|40022472|Zeromus|00019F07|12814422||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:51.8590000-07:00|40022472|Zeromus|00019F06|12812152||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:51.9040000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|2614|129071|129071|10000|10000|||106.50|98.55|0.00|-2.91|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||96.58|96.04|0.00|2.35| +37|2023-10-06T21:18:51.9040000-07:00|40022472|Zeromus|00019F02|12798765||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:51.9040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||106.50|98.55|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:18:51.9490000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|14C90000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|12798765|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||106.75|98.49|0.00|-2.91|00019F0D|0|1| +39|2023-10-06T21:18:51.9930000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.64|100.80|0.00|-3.07| +261|2023-10-06T21:18:51.4670000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:18:52.0380000-07:00|40022472|Zeromus|00019F09|12795149||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:52.0380000-07:00|10FF000A|Dukaro Nezikaro|00019F09|82773|82773|10000|10000|0||99.40|100.58|0.00|-3.07|1E00|0|0|01|03000A81|0|C1F00000|| +21|2023-10-06T21:18:52.0820000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|DDA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12798765|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||106.75|98.49|0.00|-2.91|00019F0E|0|1| +31|2023-10-06T21:18:52.0820000-07:00|10FF0001||||| +37|2023-10-06T21:18:52.1270000-07:00|40022472|Zeromus|00019F0B|12794896||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:51.6800000-07:00|Change|10FF0006||||||||||||||||||| +39|2023-10-06T21:18:52.2600000-07:00|40022C7D|Carbuncle|77698|77698|10000|10000|||100.22|101.03|0.00|0.01| +38|2023-10-06T21:18:52.2600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||98.68|100.62|0.00|-3.07|0|0|0||||||||||||| +261|2023-10-06T21:18:51.9120000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:18:52.3040000-07:00|10FF000A|Dukaro Nezikaro|00019F0C|82773|82773|10000|10000|0||97.95|100.65|0.00|-3.07|1E00|0|0|01|03000A81|0|41F00000|| +38|2023-10-06T21:18:52.3050000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.95|100.65|0.00|-3.07|0|0|0||||||||||||| +37|2023-10-06T21:18:52.3480000-07:00|40022472|Zeromus|00019F0A|12773146||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:52.3940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2250|10000|0||105.00|100.10|0.00|1.75|0|0|0|||||||||||||||| +261|2023-10-06T21:18:51.9120000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:18:52.4380000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12773146|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6900|10000|||100.03|100.51|0.00|-1.84|00019F0F|0|1| +24|2023-10-06T21:18:52.4820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|16CB|129844|129844|10000|10000|||95.06|99.07|0.00|-1.34|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||95.06|99.07|0.00|-1.34| +21|2023-10-06T21:18:52.4820000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|754003|47A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12773146|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.30|100.62|0.00|-3.07|00019F10|0|1| +38|2023-10-06T21:18:52.4820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||95.06|99.07|0.00|-1.34|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:52.4820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||97.30|100.62|0.00|-3.07|0|0|0|||||||||| +30|2023-10-06T21:18:52.4820000-07:00|A81|Meisui|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:18:52.5270000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4195|10000|0||100.03|102.39|0.00|-1.51|0|0|0||||||||||||| +37|2023-10-06T21:18:52.5720000-07:00|40022472|Zeromus|00019F0D|12767825||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:52.5720000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|176D|129071|129071|10000|10000|||106.75|98.49|0.00|-2.91|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||106.75|98.49|0.00|-2.91| +26|2023-10-06T21:18:52.5730000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:18:52.5730000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2BAA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12773146|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.74|98.31|0.00|2.03|00019F11|0|1| +20|2023-10-06T21:18:52.5730000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|105.50|100.05|0.00|-3.09| +38|2023-10-06T21:18:52.5730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||106.75|98.49|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:18:52.6160000-07:00|40022472|Zeromus|00019F08|12754766||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:52.6160000-07:00|40022472|Zeromus|00019F0E|12751220||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:52.6160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||94.91|99.15|-0.02|-2.01|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:52.6160000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T21:18:52.6160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||106.75|98.49|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:52.6160000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|129071|129844| +261|2023-10-06T21:18:52.1480000-07:00|Change|10FF0009||||||||||| +20|2023-10-06T21:18:52.6610000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|104.81|100.15|0.00|1.61| +21|2023-10-06T21:18:52.8400000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3A500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12751220|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.58|99.22|0.00|-2.62|00019F12|0|1| +38|2023-10-06T21:18:52.8840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||106.75|98.49|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:52.8840000-07:00|A94|Aquaveil|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +261|2023-10-06T21:18:52.4270000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:18:52.9730000-07:00|40022472|Zeromus|00019F0F|12751074||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:53.0170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2250|10000|0||104.60|100.22|0.00|1.46|0|0|0|||||||||||||||| +30|2023-10-06T21:18:53.0170000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:18:53.0620000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|756003|947E0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|12751074|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6900|10000|||98.91|100.07|-0.02|2.75|00019F13|0|1| +38|2023-10-06T21:18:53.0620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6500|10000|0||98.91|100.07|-0.02|2.75|0|0|0|||||||||| +30|2023-10-06T21:18:53.0620000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:18:53.1060000-07:00|40022472|Zeromus|00019F10|12732729||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:53.1060000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|13040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12751074|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.57|97.84|0.00|2.40|00019F14|0|1| +21|2023-10-06T21:18:53.1510000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12732729|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.39|99.27|0.00|2.85|00019F15|0|1| +261|2023-10-06T21:18:52.6350000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:53.1950000-07:00|40022472|Zeromus|00019F11|12721551||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:53.2840000-07:00|10FF0009|Zewo Negiwo|4098|Temperance|10FF0009|Zewo Negiwo|140F|7508000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|4195|10000|||95.74|101.90|0.00|-1.51|81177|81177|4195|10000|||95.74|101.90|0.00|-1.51|00019F16|0|1| +38|2023-10-06T21:18:53.3290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||94.32|99.30|0.00|2.24|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:53.3290000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +261|2023-10-06T21:18:52.9810000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:18:53.4630000-07:00|40022472|Zeromus|00019F12|12706623||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:53.5520000-07:00|10FF0003|Gegehi Gehi|73814|73814|5550|10000|||105.82|100.05|0.00|-2.86| +38|2023-10-06T21:18:53.5520000-07:00|40022472|Zeromus|005A5A00|12706623|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:18:53.5520000-07:00|74F|Dia|0.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +39|2023-10-06T21:18:53.5980000-07:00|10FF0009|Zewo Negiwo|81177|81177|4416|10000|||95.38|101.82|-0.02|-1.46| +261|2023-10-06T21:18:53.1890000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:18:53.1890000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:18:53.6860000-07:00|40022472|Zeromus|00019F15|12703718||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:53.6860000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A5A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12706623|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|00019F17|0|1| +39|2023-10-06T21:18:53.7300000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||106.80|97.67|-0.02|-2.77| +24|2023-10-06T21:18:53.7750000-07:00|40022472|Zeromus|DoT|0|CE8|12703718|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|2250|10000|||104.54|100.24|0.00|1.42| +21|2023-10-06T21:18:53.7750000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12703718|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F18|0|1| +38|2023-10-06T21:18:53.7750000-07:00|40022472|Zeromus|005A5A00|12700414|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:18:53.8640000-07:00|40022472|Zeromus|00019F13|12662400||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:53.8640000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||107.05|98.42|0.00|-2.91| +36|2023-10-06T21:18:53.8640000-07:00|413C|3| +38|2023-10-06T21:18:53.9100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||106.80|97.67|0.00|-2.77|0|0|0||||||||||||| +26|2023-10-06T21:18:53.9100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:18:53.9100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||95.05|99.44|0.00|2.89|0|0|0||||||||||||| +26|2023-10-06T21:18:53.9100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:18:53.9100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5550|10000|0||105.82|100.05|0.00|-2.86|0|0|0||||||||||||| +26|2023-10-06T21:18:53.9100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:18:53.9100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2250|10000|0||104.54|100.24|0.00|1.42|0|0|0|||||||||||||||| +26|2023-10-06T21:18:53.9100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:18:53.9100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6500|10000|0||98.56|99.96|0.00|3.07|0|0|0|||||||||| +26|2023-10-06T21:18:53.9100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:18:53.9100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||94.29|99.84|0.00|0.39|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:53.9100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:18:53.9100000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4416|10000|0||95.38|101.82|0.00|-1.46|0|0|0||||||||||||||||||| +26|2023-10-06T21:18:53.9100000-07:00|750|Temperance|20.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:18:53.9100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:18:53.9100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:53.9100000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:18:53.9100000-07:00|10FF0009|Zewo Negiwo|00019F16|81177|81177|4416|10000|0||95.38|101.82|0.00|-1.46|1800|0|0|02|04000750|0|41A00000|||||| +37|2023-10-06T21:18:53.9100000-07:00|40022472|Zeromus|00019F14|12657532||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:53.9100000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2450|10000|||104.54|100.24|0.00|1.42| +20|2023-10-06T21:18:53.9540000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|95.38|101.82|0.00|-1.46| +261|2023-10-06T21:18:53.4770000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T21:18:53.9990000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.29|99.95|0.00|0.20| +39|2023-10-06T21:18:53.9990000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6700|10000|||98.56|99.96|0.00|3.07| +21|2023-10-06T21:18:53.9990000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||94.29|99.95|0.00|0.20|129844|129844|10000|10000|||94.29|99.95|0.00|0.20|00019F19|0|1| +21|2023-10-06T21:18:53.9990000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|156003|44AC0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|12657532|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5550|10000|||105.82|100.05|0.00|-2.86|00019F1A|0|1| +38|2023-10-06T21:18:53.9990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|0||105.82|100.05|0.00|-2.86|0|0|0||||||||||||| +30|2023-10-06T21:18:53.9990000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:18:53.9990000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:18:53.9990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||94.29|99.95|0.00|0.20|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:53.9990000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:18:53.9990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:53.9990000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:18:54.0440000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:18:54.0440000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12657532|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F1B|0|1| +22|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|1B4F0000|B10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|00019F1C|0|8| +22|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|1B350000|880E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73814|73814|5350|10000|||105.82|100.05|0.00|-2.86|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|00019F1C|1|8| +22|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|1B030000|38000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||107.05|98.42|0.00|-2.91|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|00019F1C|2|8| +22|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|1BC40000|6C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|00019F1C|3|8| +22|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|2BB10000|E80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81809|81809|6700|10000|||98.56|99.96|0.00|3.07|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|00019F1C|4|8| +22|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|200004|2C1C0000|930E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81177|81177|4416|10000|||95.38|101.82|0.00|-2.06|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|00019F1C|5|8| +22|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|2D6F0000|B10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|00019F1C|6|8| +22|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|1AC50000|D40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||94.29|100.05|-0.01|-0.05|81541|81541|2450|10000|||104.54|100.24|0.00|1.42|00019F1C|7|8| +38|2023-10-06T21:18:54.0440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||94.29|100.05|-0.01|-0.05|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:54.0440000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:18:54.0440000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4416|10000|22||95.38|101.82|0.00|-2.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:54.0440000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:18:54.0440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|12||106.80|97.67|0.00|-2.77|0|0|0|||||||||||||||| +26|2023-10-06T21:18:54.0440000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:18:54.0440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6700|10000|21||98.56|99.96|0.00|3.07|0|0|0|||||||||| +26|2023-10-06T21:18:54.0440000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:18:54.0440000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1450|10000|13||104.54|100.24|0.00|1.42|0|0|0||||||||||||||||||| +26|2023-10-06T21:18:54.0440000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:18:54.0440000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|15||105.82|100.05|0.00|-2.86|0|0|0|||||||||||||||| +26|2023-10-06T21:18:54.0440000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:18:54.0440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||95.05|99.44|0.00|2.89|0|0|0|||||||||||||||| +26|2023-10-06T21:18:54.0440000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +38|2023-10-06T21:18:54.1760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:54.1760000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:18:53.6710000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:18:54.2200000-07:00|40022472|Zeromus|00019F17|12654882||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:53.7890000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:18:54.3540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12654882|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.05|98.42|0.00|-2.91|00019F1D|0|1| +31|2023-10-06T21:18:54.3540000-07:00|10FF0001||||| +39|2023-10-06T21:18:54.3990000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:18:54.3990000-07:00|40022C7D|Carbuncle|005A5A00|77698|77698|10000|10000|0||100.11|101.06|0.00|-0.18|0|0|0||||||| +26|2023-10-06T21:18:54.3990000-07:00|30|Well Fed|1338.88|10FF0006|Wowobora Gogobora|40022C7D|Carbuncle|2964|77698|81809| +26|2023-10-06T21:18:54.3990000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022C7D|Carbuncle|01|77698|81809| +21|2023-10-06T21:18:54.3990000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6700|10000|||98.56|99.96|0.00|3.07|81809|81809|6700|10000|||98.56|99.96|0.00|3.07|00019F1E|0|1| +21|2023-10-06T21:18:54.3990000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|712003|25900000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|12654882|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|00019F1F|0|1| +261|2023-10-06T21:18:53.9040000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:18:54.4440000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1E9F0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|12654882|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77|00019F20|0|1| +37|2023-10-06T21:18:54.5330000-07:00|10FF0007|Kehabiqo Febiqo|00019F19|129844|129844|10000|10000|8||94.29|100.08|0.00|-0.05|1500|0|0|01|02000769|0|41F00000|| +37|2023-10-06T21:18:54.5330000-07:00|40022472|Zeromus|00019F18|12651983||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:54.5330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||94.29|100.08|0.00|-0.05|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:18:54.5770000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31000000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|12654882|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4416|10000|||95.38|101.82|0.00|2.93|00019F21|0|1| +21|2023-10-06T21:18:54.6220000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|198E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12651983|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F22|0|1| +261|2023-10-06T21:18:54.2290000-07:00|Change|10FF0009||||||| +37|2023-10-06T21:18:54.7100000-07:00|40022472|Zeromus|00019F1B|12643042||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:54.7990000-07:00|40022472|Zeromus|00019F1A|12625462||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:54.7990000-07:00|40022472|Zeromus|00019F1F|12615846||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:54.8880000-07:00|40022472|Zeromus|00019F1D|12614063||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:54.8880000-07:00|40022C7D|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6700|10000|||98.56|99.96|0.00|3.07|77698|77698|10000|10000|||100.11|101.06|0.00|-0.63|00019F23|0|1| +38|2023-10-06T21:18:54.8880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6700|10000|41||98.56|99.96|0.00|3.07|0|0|0||||||||||||| +26|2023-10-06T21:18:54.8880000-07:00|A8E|Radiant Aegis|29.96|40022C7D|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +39|2023-10-06T21:18:54.9770000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||95.05|99.44|0.00|2.89| +21|2023-10-06T21:18:54.9770000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|32920000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|12614063|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5350|10000|||105.82|100.05|0.00|-2.86|00019F24|0|1| +38|2023-10-06T21:18:54.9770000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5050|10000|15||105.82|100.05|0.00|-2.86|0|0|0||||||||||||||||||| +30|2023-10-06T21:18:54.9770000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:18:54.9770000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +20|2023-10-06T21:18:55.0660000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|1.926|104.95|100.18|0.00|1.74| +37|2023-10-06T21:18:55.1550000-07:00|10FF0004|Buhojaqe Zijaqe|00019F1C|81541|81541|1450|10000|13||104.95|100.18|0.00|1.74|1C00|0|0|01|05000129|0|41E774B8|| +21|2023-10-06T21:18:55.1550000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77|00019F25|0|1| +37|2023-10-06T21:18:55.1990000-07:00|40022472|Zeromus|00019F20|12606224||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:55.2440000-07:00|40022472|Zeromus|00019F22|12599682||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:55.2890000-07:00|10FF0003|Gegehi Gehi|00019F1C|73814|73814|5050|10000|15||105.82|100.05|0.00|-2.86|2301|0|0|02|04000129|0|41E66455|||||| +39|2023-10-06T21:18:55.2890000-07:00|40022C7D|Carbuncle|77698|77698|10000|10000|||100.11|101.06|0.00|-2.14| +21|2023-10-06T21:18:55.2890000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15A90000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|12599682|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.25|100.42|0.00|-0.05|00019F26|0|1| +38|2023-10-06T21:18:55.2890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5050|10000|15||105.82|100.05|0.00|-2.86|0|0|0||||||||||||||||||| +261|2023-10-06T21:18:54.8630000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:18:54.8630000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:18:54.8630000-07:00|Change|4002248C||||||||| +261|2023-10-06T21:18:54.8630000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:18:54.8630000-07:00|Change|10FF0004||||||||||||||||||| +20|2023-10-06T21:18:55.3770000-07:00|4002248B|Zeromus|8B65|Branding Flare|10FF0008|Kokosaze Lulusaze|9.700|107.00|93.00|0.00|0.79| +20|2023-10-06T21:18:55.3770000-07:00|4002248C|Zeromus|8B65|Branding Flare|10FF000A|Dukaro Nezikaro|9.700|107.00|93.00|0.00|0.79| +20|2023-10-06T21:18:55.3770000-07:00|4002248D|Zeromus|8B65|Branding Flare|10FF0003|Gegehi Gehi|9.700|93.00|93.00|0.00|0.79| +20|2023-10-06T21:18:55.3770000-07:00|4002248E|Zeromus|8B65|Branding Flare|10FF0006|Wowobora Gogobora|9.700|93.00|93.00|0.00|0.79| +261|2023-10-06T21:18:54.9810000-07:00|Change|10FF0003||| +26|2023-10-06T21:18:55.5110000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:18:55.5110000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|29290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12599682|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F27|0|1| +37|2023-10-06T21:18:55.5570000-07:00|10FF0008|Kokosaze Lulusaze|00019F1C|90216|90216|10000|10000|12||106.80|97.67|0.00|-2.77|1F03|0|0|01|04000129|0|41E44183|| +38|2023-10-06T21:18:55.5570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|12||106.80|97.67|0.00|-2.77|0|0|0|||||||||||||||| +38|2023-10-06T21:18:55.5570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||95.05|99.44|0.00|2.89|0|0|0|||||||||||||||| +38|2023-10-06T21:18:55.5570000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5050|10000|15||105.82|100.05|0.00|-2.86|0|0|0||||||||||||||||||| +38|2023-10-06T21:18:55.5570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1450|10000|13||105.00|100.18|0.00|1.77|0|0|0||||||||||||||||||| +38|2023-10-06T21:18:55.5570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6700|10000|41||96.32|100.70|0.00|-1.46|0|0|0||||||||||||| +38|2023-10-06T21:18:55.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||94.25|100.42|0.00|2.87|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:18:55.5570000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4016|10000|22||95.38|101.82|0.00|2.93|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:55.5570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:18:55.5570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|18FA|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77| +21|2023-10-06T21:18:55.5570000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40022472|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|12599682|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6700|10000|||96.32|100.70|0.00|-1.46|00019F28|0|1| +38|2023-10-06T21:18:55.5570000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4566|10000|22||95.38|101.82|0.00|2.93|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:18:55.5570000-07:00|40022C7D|Carbuncle|005A5A00|0|77698|0|10000|0||100.11|101.06|0.00|-2.04|0|0|0|||| +30|2023-10-06T21:18:55.5570000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40022C7D|Carbuncle|01|77698|81809| +38|2023-10-06T21:18:55.5570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:18:55.0970000-07:00|Change|40022C7D||||||||| +261|2023-10-06T21:18:55.0970000-07:00|Change|40022C7D||||||||| +38|2023-10-06T21:18:55.6010000-07:00|40022C94||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:18:55.6010000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12599682|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6700|10000|||95.69|100.89|0.00|3.14|00019F29|0|1| +38|2023-10-06T21:18:55.6010000-07:00|40022C94||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:18:55.6900000-07:00|10FF0006|Wowobora Gogobora|00019F1C|81809|81809|6700|10000|41||95.69|100.89|0.00|3.14|1B04|0|0|01|01000129|0|41E32F14|| +261|2023-10-06T21:18:55.1920000-07:00|Change|10FF0009||| +37|2023-10-06T21:18:55.7340000-07:00|40022472|Zeromus|00019F24|12586736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:55.7340000-07:00|10FF0003|Gegehi Gehi|00019F24|73814|73814|5050|10000|15||105.82|100.05|0.00|-2.86|2300|0|0|01|050004D3|0|41F00000|| +38|2023-10-06T21:18:55.7340000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5050|10000|15||105.82|100.05|0.00|-2.86|0|0|0||||||||||||||||||| +37|2023-10-06T21:18:55.7790000-07:00|10FF0001|Sesuga Sapisuga|00019F25|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.77|1300|0|0|01|0300004C|0|41A00000|| +26|2023-10-06T21:18:55.7790000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:18:55.2830000-07:00|Add|40022C94||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:18:55.2830000-07:00|40022C94|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||96.53|103.17|0.00|2.92| +261|2023-10-06T21:18:55.3780000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:18:55.3780000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:18:55.3780000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:18:55.3780000-07:00|Change|4002248D||||||||||||| +37|2023-10-06T21:18:55.8230000-07:00|40022472|Zeromus|00019F26|12581191||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:55.8230000-07:00|10FF0009|Zewo Negiwo|00019F1C|81177|81177|4566|10000|22||95.38|101.82|0.00|2.93|1805|0|0|01|06000129|0|41E21CA5|| +261|2023-10-06T21:18:55.3780000-07:00|Change|40022C94||||| +37|2023-10-06T21:18:55.8680000-07:00|40022472|Zeromus|00019F21|12568647||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:55.8680000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|95.38|101.82|0.00|2.93| +21|2023-10-06T21:18:55.8680000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|752003|43030000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|12586736|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77|00019F2A|0|1| +21|2023-10-06T21:18:55.8680000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12586736|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|00019F2B|0|1| +38|2023-10-06T21:18:55.8680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:55.8680000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:18:55.8680000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:18:55.9560000-07:00|10FF000A|Dukaro Nezikaro|00019F1C|82773|82773|10000|10000|22||95.05|99.44|0.00|2.89|1E06|0|0|01|04000129|0|41E10C42|| +37|2023-10-06T21:18:56.0920000-07:00|10FF0007|Kehabiqo Febiqo|00019F1C|129844|129844|10000|10000|8||94.19|100.42|0.00|3.02|1507|0|0|01|07000129|0|41DFF9D3|| +37|2023-10-06T21:18:56.1360000-07:00|40022472|Zeromus|00019F27|12558110||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:56.1360000-07:00|40022472|Zeromus|00019F29|12557952||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:56.1360000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|184F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12568647|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F2C|0|1| +21|2023-10-06T21:18:56.2250000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12557952|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5050|10000|||105.82|100.05|0.00|-2.86|00019F2D|0|1| +37|2023-10-06T21:18:56.4030000-07:00|40022472|Zeromus|00019F2B|12555872||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:56.4470000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DE20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12555872|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F2E|0|1| +37|2023-10-06T21:18:56.4930000-07:00|40022472|Zeromus|00019F2A|12538717||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:56.4930000-07:00|10FF0001|Sesuga Sapisuga|00019F2A|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.77|1300|0|0|02|06000558|04|41F00000|||||| +21|2023-10-06T21:18:56.4930000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|30FA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|12555872|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4566|10000|||95.38|101.82|0.00|2.93|00019F2F|0|1| +21|2023-10-06T21:18:56.4930000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|4|29230000|B0E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|81541|81541|1450|10000|||105.00|100.18|0.00|1.77|81541|81541|1450|10000|||105.00|100.18|0.00|1.77|00019F30|0|1| +38|2023-10-06T21:18:56.4930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|14||107.05|98.42|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:18:56.4930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|450|10000|23||105.00|100.18|0.00|1.77|0|0|0||||||||||||||||||| +26|2023-10-06T21:18:56.4930000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:18:56.0220000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T21:18:56.5360000-07:00|10FF0003|Gegehi Gehi|73814|73814|5250|10000|||105.82|100.05|0.00|-2.86| +21|2023-10-06T21:18:56.5360000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12538717|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.96|100.42|0.00|3.08|00019F31|0|1| +21|2023-10-06T21:18:56.5360000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|218E0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|12538717|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|00019F32|0|1| +261|2023-10-06T21:18:56.1420000-07:00|Change|10FF0003||| +39|2023-10-06T21:18:56.6260000-07:00|10FF0009|Zewo Negiwo|81177|81177|4387|10000|||95.38|101.82|0.00|2.93| +21|2023-10-06T21:18:56.6260000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12538717|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77|00019F33|0|1| +31|2023-10-06T21:18:56.6260000-07:00|10FF0001||||| +261|2023-10-06T21:18:56.1420000-07:00|Change|40022C94||| +39|2023-10-06T21:18:56.7140000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77| +261|2023-10-06T21:18:56.2330000-07:00|Change|10FF0009||| +37|2023-10-06T21:18:56.7590000-07:00|40022472|Zeromus|00019F2D|12538716||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:18:56.7590000-07:00|40022472|Zeromus|DoT|0|CC5|12538717|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|450|10000|||105.00|100.18|0.00|1.77| +38|2023-10-06T21:18:56.7590000-07:00|40022472|Zeromus|005A5A00|12535447|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +36|2023-10-06T21:18:56.8480000-07:00|4218|3| +39|2023-10-06T21:18:56.8920000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77| +39|2023-10-06T21:18:56.8920000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|650|10000|||105.00|100.18|0.00|1.77| +37|2023-10-06T21:18:56.9370000-07:00|40022472|Zeromus|00019F2C|12529224||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:56.9370000-07:00|40022472|Zeromus|00019F32|12520634||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:56.9370000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|752003|BAB60000|200004|3DD48000|0|0|0|0|0|0|0|0|0|0|0|0|12535447|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.05|98.42|0.00|-2.77|00019F34|0|1| +38|2023-10-06T21:18:56.9370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||93.92|100.42|-0.02|3.09|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:56.9370000-07:00|59|Vengeance|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|129844|129844| +38|2023-10-06T21:18:56.9370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|14||107.05|98.42|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:56.9370000-07:00|558|Requiescat|29.51|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:18:56.9370000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:18:56.9370000-07:00|10FF0001||||| +39|2023-10-06T21:18:56.9810000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.92|100.42|-0.02|3.09| +21|2023-10-06T21:18:56.9810000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|21460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12535447|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F35|0|1| +38|2023-10-06T21:18:56.9810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|12||106.80|97.67|0.00|-2.77|0|0|0|||||||||||||||| +30|2023-10-06T21:18:56.9810000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +261|2023-10-06T21:18:56.5280000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:18:57.0260000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6900|10000|||94.22|101.03|0.00|1.58| +37|2023-10-06T21:18:57.0690000-07:00|40022472|Zeromus|00019F31|12515812||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:56.5280000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:18:57.1590000-07:00|40022472|Zeromus|00019F33|12513572||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:57.2030000-07:00|40022472|Zeromus|00019F2E|12510018||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:57.2930000-07:00|10FF000A|Dukaro Nezikaro|8C1|Shade Shift|10FF000A|Dukaro Nezikaro|AA0E|1E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|00019F36|0|1| +21|2023-10-06T21:18:57.3380000-07:00|40022472|Zeromus|8B5F|Branding Flare|40022472|Zeromus|1B|8B5F8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12510018|40478540|10000|10000|||100.00|80.10|0.00|0.00|12510018|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019F37|0|1| +261|2023-10-06T21:18:56.8840000-07:00|Change|40022472||||| +39|2023-10-06T21:18:57.3830000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +22|2023-10-06T21:18:57.3830000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0004|Buhojaqe Zijaqe|9|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|00019F38|0|8| +22|2023-10-06T21:18:57.3830000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0003|Gegehi Gehi|B0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5250|10000|||105.82|100.05|0.00|-2.86|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|00019F38|1|8| +22|2023-10-06T21:18:57.3830000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0001|Sesuga Sapisuga|B000014|1290000|8|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||107.05|98.42|0.00|-2.77|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|00019F38|2|8| +22|2023-10-06T21:18:57.3830000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0008|Kokosaze Lulusaze|B0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|00019F38|3|8| +22|2023-10-06T21:18:57.3830000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0009|Zewo Negiwo|B0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|4387|10000|||95.38|101.82|0.00|2.93|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|00019F38|4|8| +22|2023-10-06T21:18:57.3830000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF000A|Dukaro Nezikaro|B0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|00019F38|5|8| +22|2023-10-06T21:18:57.3830000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0006|Wowobora Gogobora|B0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6900|10000|||94.22|101.03|-0.02|1.43|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|00019F38|6|8| +22|2023-10-06T21:18:57.3830000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0007|Kehabiqo Febiqo|B0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.92|100.42|0.00|3.09|81541|81541|650|10000|||104.98|100.19|-0.02|0.41|00019F38|7|8| +20|2023-10-06T21:18:57.3830000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|105.82|100.05|0.00|-2.86| +37|2023-10-06T21:18:57.4710000-07:00|10FF0004|Buhojaqe Zijaqe|00019F30|81541|81541|650|10000|23||104.94|100.22|0.00|0.06|1C00|0|0|01|05000129|0|41E88728|| +261|2023-10-06T21:18:57.0030000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:18:57.5610000-07:00|40022472|Zeromus|00019F34|12462220||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:57.6060000-07:00|40022472|Zeromus|00019F35|12453702||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:57.6060000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|13A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12510018|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F39|0|1| +261|2023-10-06T21:18:57.1180000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T21:18:57.1180000-07:00|Change|40022C7D||||||||| +37|2023-10-06T21:18:57.6950000-07:00|10FF000A|Dukaro Nezikaro|00019F36|82773|82773|10000|10000|42||95.05|99.44|0.00|2.89|1E00|0|0|01|050001E8|0|41A00000|| +26|2023-10-06T21:18:57.6950000-07:00|1E8|Shade Shift|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +21|2023-10-06T21:18:57.6950000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12453702|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||107.05|98.42|0.00|-2.77|00019F3A|0|1| +38|2023-10-06T21:18:57.6950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|42||95.05|99.44|0.00|2.89|0|0|0||||||||||||||||||| +21|2023-10-06T21:18:57.7410000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|A1FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12453702|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.92|100.42|0.00|3.09|00019F3B|0|1| +38|2023-10-06T21:18:57.7410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||93.92|100.42|0.00|3.09|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:18:57.7410000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:18:57.7850000-07:00|40022472|Zeromus|00019F2F|12441164||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:57.7850000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|A790000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|12453702|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4387|10000|||95.38|101.82|0.00|2.93|00019F3C|0|1| +261|2023-10-06T21:18:57.3120000-07:00|Change|10FF0009||| +39|2023-10-06T21:18:58.0060000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||95.05|99.44|0.00|2.89| +21|2023-10-06T21:18:58.0510000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|56200000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|12441164|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6900|10000|||93.59|101.92|0.00|-1.08|00019F3D|0|1| +21|2023-10-06T21:18:58.0510000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|85D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12441164|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|00019F3E|0|1| +261|2023-10-06T21:18:57.6230000-07:00|Change|10FF0006||||||||| +20|2023-10-06T21:18:58.1400000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|104.92|100.49|0.00|-0.40| +38|2023-10-06T21:18:58.1840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|14||107.05|98.42|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:58.1840000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:18:58.2280000-07:00|40022472|Zeromus|00019F39|12436137||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:58.2730000-07:00|10FF0003|Gegehi Gehi|00019F38|73814|73814|5250|10000|25||105.82|100.05|0.00|-2.86|2301|0|0|01|04000129|0|41E80000|| +26|2023-10-06T21:18:58.2730000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:18:58.2730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5250|10000|25||105.82|100.05|0.00|-2.86|0|0|0||||||||||||||||||| +37|2023-10-06T21:18:58.3180000-07:00|40022472|Zeromus|00019F3A|12436137|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04A9|0|41200000|| +26|2023-10-06T21:18:58.3180000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +22|2023-10-06T21:18:58.3180000-07:00|4002248F|Zeromus|8B60|Flare|10FF0003|Gegehi Gehi|150603|78920000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5250|10000|||105.82|100.05|0.00|-2.86|44|44|0|10000|||105.00|100.00|0.00|0.00|00019F3F|0|4| +22|2023-10-06T21:18:58.3180000-07:00|4002248F|Zeromus|8B60|Flare|10FF0004|Buhojaqe Zijaqe|150603|67560000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|650|10000|||105.06|100.72|0.00|-1.16|44|44|0|10000|||105.00|100.00|0.00|0.00|00019F3F|1|4| +22|2023-10-06T21:18:58.3180000-07:00|4002248F|Zeromus|8B60|Flare|10FF0001|Sesuga Sapisuga|EC150605|1A5A0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||107.05|98.42|0.00|-2.77|44|44|0|10000|||105.00|100.00|0.00|0.00|00019F3F|2|4| +22|2023-10-06T21:18:58.3180000-07:00|4002248F|Zeromus|8B60|Flare|10FF0008|Kokosaze Lulusaze|150603|986F0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|44|44|0|10000|||105.00|100.00|0.00|0.00|00019F3F|3|4| +22|2023-10-06T21:18:58.3190000-07:00|40022490|Zeromus|8B60|Flare|10FF000A|Dukaro Nezikaro|150603|3A7D0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||95.05|99.44|0.00|2.89|44|44|0|10000|||95.00|100.00|0.00|0.00|00019F40|0|4| +22|2023-10-06T21:18:58.3190000-07:00|40022490|Zeromus|8B60|Flare|10FF0007|Kehabiqo Febiqo|150603|4FC70000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.92|100.42|0.00|2.85|44|44|0|10000|||95.00|100.00|0.00|0.00|00019F40|1|4| +22|2023-10-06T21:18:58.3190000-07:00|40022490|Zeromus|8B60|Flare|10FF0009|Zewo Negiwo|150603|7A060000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3987|10000|||95.38|101.82|0.00|2.93|44|44|0|10000|||95.00|100.00|0.00|0.00|00019F40|2|4| +22|2023-10-06T21:18:58.3190000-07:00|40022490|Zeromus|8B60|Flare|10FF0006|Wowobora Gogobora|150603|30680000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6600|10000|||93.50|102.05|0.00|3.01|44|44|0|10000|||95.00|100.00|0.00|0.00|00019F40|3|4| +261|2023-10-06T21:18:57.8540000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:18:57.8540000-07:00|Change|40022490||||||||||||| +21|2023-10-06T21:18:58.3630000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.92|100.42|0.00|2.85|129844|129844|10000|10000|||93.92|100.42|0.00|2.85|00019F41|0|1| +38|2023-10-06T21:18:58.3630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||93.92|100.42|0.00|2.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:18:58.3630000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:18:58.3630000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:18:58.3630000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:18:58.3630000-07:00|A75|Surging Tempest|39.14|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:18:57.9730000-07:00|Change|10FF0004||||||||||||||||||||||||| +21|2023-10-06T21:18:58.4510000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|724003|77230000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|12436137|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F42|0|1| +37|2023-10-06T21:18:58.4960000-07:00|10FF0003|Gegehi Gehi|00019F3F|42948|73814|5250|10000|0||105.82|100.05|0.00|-2.86|2300|0|0|01|04000000|0|0|| +37|2023-10-06T21:18:58.4960000-07:00|10FF000A|Dukaro Nezikaro|00019F40|67800|82773|10000|10000|0||95.05|99.44|0.00|2.89|1E00|0|0|02|04000000|0|0|||||| +38|2023-10-06T21:18:58.4960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||93.92|100.42|0.00|2.85|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:18:58.4960000-07:00|10FF0003|Gegehi Gehi|005A5A23|42948|73814|5250|10000|0||105.82|100.05|0.00|-2.86|0|0|0||||||||||||||||||| +30|2023-10-06T21:18:58.4960000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:18:58.4960000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67800|82773|10000|10000|0||95.05|99.44|0.00|2.89|0|0|0||||||||||||| +30|2023-10-06T21:18:58.4960000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +30|2023-10-06T21:18:58.4960000-07:00|1E8|Shade Shift|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:18:58.5420000-07:00|10FF0004|Buhojaqe Zijaqe|00019F3F|55087|81541|650|10000|0||105.17|100.90|0.00|-2.41|1C01|0|0|01|05000000|0|0|| +37|2023-10-06T21:18:58.5420000-07:00|10FF0007|Kehabiqo Febiqo|00019F40|109421|129844|10000|10000|0||93.92|100.42|0.00|2.85|1501|0|0|04|02000499|03|C1700000|||||||||||||| +37|2023-10-06T21:18:58.5420000-07:00|10FF0008|Kokosaze Lulusaze|00019F38|90216|90216|10000|10000|21||106.80|97.67|0.00|-2.77|1F03|0|0|01|04000129|0|41E80000|| +26|2023-10-06T21:18:58.5420000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:18:58.5420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|21||106.80|97.67|0.00|-2.77|0|0|0|||||||||||||||| +26|2023-10-06T21:18:58.5420000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:18:58.5420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67800|82773|10000|10000|0||95.05|99.44|0.00|2.89|0|0|0||||||||||||| +26|2023-10-06T21:18:58.5420000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:18:58.5420000-07:00|10FF0003|Gegehi Gehi|005A5A23|42948|73814|5250|10000|0||105.82|100.05|0.00|-2.86|0|0|0||||||||||||||||||| +26|2023-10-06T21:18:58.5420000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:18:58.5420000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55087|81541|650|10000|0||105.17|100.90|0.00|-2.41|0|0|0|||||||||||||||| +26|2023-10-06T21:18:58.5420000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +30|2023-10-06T21:18:58.5420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:18:58.5420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6600|10000|0||93.33|102.29|0.00|-2.20|0|0|0||||||||||||| +26|2023-10-06T21:18:58.5420000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:18:58.5420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109421|129844|10000|10000|0||93.92|100.42|0.00|2.85|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:58.5420000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +30|2023-10-06T21:18:58.5420000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:18:58.5420000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3987|10000|0||95.38|101.82|0.00|2.93|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:18:58.5420000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:18:58.5420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||107.05|98.42|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:58.5420000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:18:58.5420000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4537|10000|0||95.38|101.82|0.00|2.93|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:18:58.5860000-07:00|10FF0001|Sesuga Sapisuga|00019F3F|122325|129071|9000|10000|0||107.05|98.42|0.00|-2.77|1302|0|0|01|05000000|0|0|| +37|2023-10-06T21:18:58.5860000-07:00|10FF0009|Zewo Negiwo|00019F40|49939|81177|4537|10000|0||95.38|101.82|0.00|2.93|1802|0|0|01|06000000|0|0|| +37|2023-10-06T21:18:58.5860000-07:00|40022472|Zeromus|00019F3E|12433996||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:18:58.5860000-07:00|10FF0009|Zewo Negiwo|005A5A18|49939|81177|4537|10000|0||95.38|101.82|0.00|2.93|0|0|0||||||||||||||||||| +30|2023-10-06T21:18:58.5860000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:18:58.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122325|129071|9000|10000|0||107.05|98.42|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:18:58.5860000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T21:18:58.6300000-07:00|10FF0008|Kokosaze Lulusaze|00019F3F|51193||||||106.80|97.67|0.00|-2.77| +37|2023-10-06T21:18:58.6300000-07:00|10FF0006|Wowobora Gogobora|00019F40|69417|81809|6600|10000|0||93.27|102.37|0.00|-1.81|1B03|0|0|02|01000000|0|0|||||| +38|2023-10-06T21:18:58.6300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69417|81809|6600|10000|0||93.27|102.37|0.00|-1.81|0|0|0|||||||||| +30|2023-10-06T21:18:58.6300000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +30|2023-10-06T21:18:58.6300000-07:00|A8E|Radiant Aegis|0.00|40022C7D|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T21:18:58.6740000-07:00|40022472|Zeromus|00019F3B|12392528||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:58.6740000-07:00|10FF0007|Kehabiqo Febiqo|00019F3B|109421|129844|10000|10000|0||93.92|100.40|0.00|2.94|1500|0|0|03|02000499|03|C1700000|||||||||| +37|2023-10-06T21:18:58.6740000-07:00|40022472|Zeromus|00019F3D|12370480||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:58.6740000-07:00|10FF0009|Zewo Negiwo|00019F38|49939|81177|4537|10000|23||95.38|101.82|0.00|2.93|1804|0|0|01|06000129|0|41E80000|| +26|2023-10-06T21:18:58.6740000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +21|2023-10-06T21:18:58.6740000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42710003|2C6F0000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|12433996|40478540|10000|10000|||100.00|80.10|0.00|0.00|67800|82773|10000|10000|||95.05|99.44|0.00|2.89|00019F43|0|1| +38|2023-10-06T21:18:58.6740000-07:00|10FF0009|Zewo Negiwo|005A5A18|49939|81177|4537|10000|23||95.38|101.82|0.00|2.93|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:18:58.7190000-07:00|40022C94|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|13CD0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|12370480|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||96.51|103.17|0.00|2.99|00019F44|0|1| +22|2023-10-06T21:18:58.7630000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0009|Zewo Negiwo|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|00019F45|0|8| +22|2023-10-06T21:18:58.7630000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|109421|129844|10000|10000|||93.91|100.36|0.00|3.05|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|00019F45|1|8| +22|2023-10-06T21:18:58.7630000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67800|82773|10000|10000|||95.05|99.44|0.00|2.89|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|00019F45|2|8| +22|2023-10-06T21:18:58.7630000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69417|81809|6600|10000|||93.20|102.46|0.00|-1.40|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|00019F45|3|8| +22|2023-10-06T21:18:58.7630000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55087|81541|650|10000|||105.21|100.97|0.00|-2.90|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|00019F45|4|8| +22|2023-10-06T21:18:58.7630000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42948|73814|5250|10000|||105.82|100.05|0.00|-2.86|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|00019F45|5|8| +22|2023-10-06T21:18:58.7630000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|122325|129071|9000|10000|||107.05|98.42|0.00|-2.77|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|00019F45|6|8| +22|2023-10-06T21:18:58.7630000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51193|90216|10000|10000|||106.80|97.67|0.00|-2.77|49939|81177|4537|10000|||95.38|101.82|0.00|2.93|00019F45|7|8| +21|2023-10-06T21:18:58.7630000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12370480|40478540|10000|10000|||100.00|80.10|0.00|0.00|69417|81809|6600|10000|||93.20|102.46|0.00|-1.40|00019F46|0|1| +261|2023-10-06T21:18:58.2930000-07:00|Change|10FF0009||| +37|2023-10-06T21:18:58.8080000-07:00|10FF000A|Dukaro Nezikaro|00019F38|67800|82773|10000|10000|22||95.05|99.44|0.00|2.89|1E05|0|0|01|04000129|0|41E80000|| +26|2023-10-06T21:18:58.8080000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +21|2023-10-06T21:18:58.8090000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|454003|2B670000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|12370480|40478540|10000|10000|||100.00|80.10|0.00|0.00|42948|73814|5250|10000|||105.82|100.05|0.00|-2.86|00019F47|0|1| +38|2023-10-06T21:18:58.8090000-07:00|10FF0003|Gegehi Gehi|005A5A23|42948|73814|5050|10000|0||105.82|100.05|0.00|-2.86|0|0|0||||||||||||| +26|2023-10-06T21:18:58.8090000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:18:58.8090000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:18:58.8090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67800|82773|10000|10000|22||95.05|99.44|0.00|2.89|0|0|0|||||||||||||||| +261|2023-10-06T21:18:58.3840000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:18:58.8970000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|10840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12370480|40478540|10000|10000|||100.00|80.10|0.00|0.00|122325|129071|9000|10000|||107.05|98.42|0.00|-2.77|00019F48|0|1| +31|2023-10-06T21:18:58.8970000-07:00|10FF0001||||| +37|2023-10-06T21:18:58.9420000-07:00|10FF0006|Wowobora Gogobora|00019F38|69417|81809|6600|10000|23||93.10|102.60|0.00|-0.65|1B06|0|0|01|01000129|0|41E80000|| +26|2023-10-06T21:18:58.9420000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:18:58.9420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69417|81809|6600|10000|23||93.10|102.60|0.00|-0.65|0|0|0|||||||||| +21|2023-10-06T21:18:59.0310000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|714003|35BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12370480|40478540|10000|10000|||100.00|80.10|0.00|0.00|109421|129844|10000|10000|||93.88|100.23|0.00|-3.04|00019F49|0|1| +37|2023-10-06T21:18:59.0750000-07:00|40022472|Zeromus|00019F3C|12367799|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:18:59.0750000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:18:59.0750000-07:00|10FF0007|Kehabiqo Febiqo|00019F38|109421|129844|10000|10000|14||93.86|100.13|0.00|2.83|1507|0|0|04|02000499|03|C1700000|||||||||||||| +26|2023-10-06T21:18:59.0750000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +21|2023-10-06T21:18:59.0750000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|35A90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|12370480|40478540|10000|10000|||100.00|80.10|0.00|0.00|55087|81541|650|10000|||105.21|100.97|0.00|-2.90|00019F4A|0|1| +38|2023-10-06T21:18:59.0750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109421|129844|10000|10000|14||93.86|100.13|0.00|2.83|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:18:59.1200000-07:00|10FF0007|Kehabiqo Febiqo|00019F41|109421|129844|10000|10000|14||93.86|100.13|0.00|2.83|1500|0|0|03|02000499|03|41700000|||||||||| +21|2023-10-06T21:18:59.1200000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|12780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12370480|40478540|10000|10000|||100.00|80.10|0.00|0.00|51193|90216|10000|10000|||106.80|97.67|0.00|-2.77|00019F4B|0|1| +38|2023-10-06T21:18:59.1200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109421|129844|10000|10000|14||93.86|100.13|0.00|2.83|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:18:59.2080000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|170D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|42948|73814|5050|10000|||105.87|100.10|0.00|2.42|73956|77430|10000|10000|||100.05|98.22|0.00|2.78|00019F4C|0|1| +261|2023-10-06T21:18:58.8420000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:18:59.2960000-07:00|40022472|Zeromus|00019F46|12367655||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:59.2960000-07:00|40022472|Zeromus|00019F43|12356280||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:58.8420000-07:00|Change|10FF000A||||||||| +27|2023-10-06T21:18:59.3860000-07:00|10FF0003|Gegehi Gehi|0000|0000|00C5|0000|0000|0000| +27|2023-10-06T21:18:59.3860000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|00C5|0000|0000|0000| +04|2023-10-06T21:18:58.9610000-07:00|40022C7D|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.87|101.15|0.00|-1.24| +261|2023-10-06T21:18:58.9610000-07:00|Remove|40022C7D| +37|2023-10-06T21:18:59.4300000-07:00|40022472|Zeromus|00019F48|12352052||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:18:59.4300000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|752003|91C40000|4|25378000|0|0|0|0|0|0|0|0|0|0|0|0|12356280|40478540|10000|10000|||100.00|80.10|0.00|0.00|122325|129071|9000|10000|||107.26|97.77|0.00|2.84|00019F4D|0|1| +38|2023-10-06T21:18:59.4300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122325|129071|8000|10000|0||107.26|97.77|0.00|2.84|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:18:59.4300000-07:00|558|Requiescat|27.02|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:18:59.4300000-07:00|10FF0001||||| +261|2023-10-06T21:18:58.9610000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:18:58.9610000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:18:59.4730000-07:00|40022472|Zeromus|00019F42|12321553||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:18:59.4730000-07:00|40022472|Zeromus|8D28|Nox|40022472|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:18:59.0730000-07:00|Change|40022472||||||||| +39|2023-10-06T21:18:59.5180000-07:00|10FF0003|Gegehi Gehi|43686|73814|5250|10000|||107.24|101.45|0.00|1.24| +37|2023-10-06T21:18:59.5620000-07:00|10FF0009|Zewo Negiwo|00019F45|49939|81177|4537|10000|23||94.91|102.46|0.00|-1.62|1800|0|0|01|070004C3|0|41200000|| +26|2023-10-06T21:18:59.5620000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:18:59.6070000-07:00|40022472|Zeromus|00019F47|12310442||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:59.6070000-07:00|10FF0009|Zewo Negiwo|50750|81177|4758|10000|||94.91|102.46|0.00|-1.62| +37|2023-10-06T21:18:59.6960000-07:00|40022472|Zeromus|00019F49|12296687||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:59.6960000-07:00|10FF0007|Kehabiqo Febiqo|00019F45|109421|129844|10000|10000|14||92.35|97.14|0.00|-2.81|1501|0|0|01|080004C3|0|41200000|| +26|2023-10-06T21:18:59.6960000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +39|2023-10-06T21:18:59.6960000-07:00|10FF0008|Kokosaze Lulusaze|52095|90216|10000|10000|||108.15|95.91|0.00|2.57| +24|2023-10-06T21:18:59.7410000-07:00|40022472|Zeromus|DoT|0|214A|12310442|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|55087|81541|250|10000|||105.62|101.98|0.00|0.03| +22|2023-10-06T21:18:59.7410000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|3A3E0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|00019F4E|0|8| +22|2023-10-06T21:18:59.7410000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|3C180000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|69417|81809|6600|10000|||90.86|105.53|0.00|-0.63|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|00019F4E|1|8| +22|2023-10-06T21:18:59.7410000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|3CFD0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|109421|129844|10000|10000|||92.35|97.14|0.00|-2.81|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|00019F4E|2|8| +22|2023-10-06T21:18:59.7410000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|3C2B0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|67800|82773|10000|10000|||93.54|96.31|0.00|-2.72|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|00019F4E|3|8| +22|2023-10-06T21:18:59.7410000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|3B890000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|55087|81541|250|10000|||105.62|101.98|0.00|0.03|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|00019F4E|4|8| +22|2023-10-06T21:18:59.7410000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|3AB10000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|43686|73814|5250|10000|||108.17|102.38|0.00|0.88|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|00019F4E|5|8| +22|2023-10-06T21:18:59.7410000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|3ADA0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|122325|129071|8000|10000|||108.69|96.61|0.00|2.91|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|00019F4E|6|8| +22|2023-10-06T21:18:59.7410000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|3C7C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|51193|90216|10000|10000|||108.15|95.91|0.00|2.57|50750|81177|4758|10000|||94.46|103.14|0.00|-1.28|00019F4E|7|8| +38|2023-10-06T21:18:59.7410000-07:00|40022472|Zeromus|005A5A00|12288165|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:18:59.3620000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:18:59.3620000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:18:59.3620000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:18:59.7860000-07:00|40022472|Zeromus|00019F44|12283096||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:59.8310000-07:00|10FF000A|Dukaro Nezikaro|00019F45|67800|82773|10000|10000|22||93.24|95.69|0.00|-2.71|1E02|0|0|01|050004C3|0|41200000|| +26|2023-10-06T21:18:59.8310000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:18:59.8750000-07:00|40022472|Zeromus|00019F4B|12278368||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:18:59.8750000-07:00|40022472|Zeromus|00019F4A|12264631||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:18:59.8750000-07:00|10FF0001|Sesuga Sapisuga|123615|129071|8200|10000|||108.93|96.00|0.00|2.89| +39|2023-10-06T21:18:59.8750000-07:00|10FF0004|Buhojaqe Zijaqe|55902|81541|450|10000|||105.94|102.74|0.00|0.17| +21|2023-10-06T21:18:59.8750000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|554003|2F3D0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|12288165|40478540|10000|10000|||100.00|80.10|0.00|0.00|43686|73814|5250|10000|||108.60|102.82|0.00|0.85|00019F4F|0|1| +36|2023-10-06T21:18:59.8750000-07:00|42F4|3| +38|2023-10-06T21:18:59.8750000-07:00|10FF0003|Gegehi Gehi|005A5A23|43686|73814|4950|10000|0||108.60|102.82|0.00|0.85|0|0|0|||||||||||||||| +30|2023-10-06T21:18:59.8750000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:18:59.8750000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:18:59.9190000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|128D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12264631|40478540|10000|10000|||100.00|80.10|0.00|0.00|109421|129844|10000|10000|||91.17|96.70|0.00|-2.79|00019F50|0|1| +37|2023-10-06T21:18:59.9640000-07:00|10FF0006|Wowobora Gogobora|00019F45|69417|81809|6600|10000|23||90.22|106.48|-0.02|-0.61|1B03|0|0|01|030004C3|0|41200000|| +26|2023-10-06T21:18:59.9640000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +39|2023-10-06T21:18:59.9640000-07:00|10FF0007|Kehabiqo Febiqo|110719|129844|10000|10000|||91.17|96.70|0.00|-2.79| +37|2023-10-06T21:19:00.0080000-07:00|10FF0003|Gegehi Gehi|00019F4C|49587|73814|4950|10000|0||109.00|103.22|0.00|-2.76|2300|0|0|01|040004D2|0|C1F00000|| +39|2023-10-06T21:19:00.0080000-07:00|10FF0006|Wowobora Gogobora|70235|81809|6800|10000|||90.22|106.48|-0.02|-0.61| +261|2023-10-06T21:18:59.5780000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:18:59.5780000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:19:00.0530000-07:00|40022472|Zeromus|00019F4D|12227315||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:00.0530000-07:00|10FF0001|Sesuga Sapisuga|00019F4D|129071||||||109.49|94.12|0.00|2.85| +37|2023-10-06T21:19:00.0980000-07:00|10FF0004|Buhojaqe Zijaqe|00019F45|55902|81541|450|10000|0||106.56|104.73|0.00|0.28|1C04|0|0|01|050004C3|0|41200000|| +26|2023-10-06T21:19:00.0980000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +21|2023-10-06T21:19:00.1870000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|13E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12264631|40478540|10000|10000|||100.00|80.10|0.00|0.00|52095|90216|10000|10000|||109.61|94.00|0.00|2.49|00019F51|0|1| +261|2023-10-06T21:18:59.8100000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:19:00.2300000-07:00|10FF0003|Gegehi Gehi|00019F45|49587|73814|4950|10000|0||110.28|104.56|0.00|1.93|2305|0|0|02|030004C3|0|41200000|||||| +26|2023-10-06T21:19:00.2300000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +21|2023-10-06T21:19:00.2310000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|766C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12227315|40478540|10000|10000|||100.00|80.10|0.00|0.00|110719|129844|10000|10000|||90.37|94.82|-0.02|-2.76|00019F52|0|1| +21|2023-10-06T21:19:00.2310000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12227315|40478540|10000|10000|||100.00|80.10|0.00|0.00|67800|82773|10000|10000|||92.09|93.32|0.00|-2.70|00019F53|0|1| +38|2023-10-06T21:19:00.2310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110719|129844|10000|10000|14||90.37|94.82|-0.02|-2.76|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:00.2310000-07:00|499|Inner Release|13.85|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +261|2023-10-06T21:18:59.9320000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:19:00.3200000-07:00|10FF0009|Zewo Negiwo|HoT|4C3|2A6B|50750|81177|4758|10000|||93.72|104.78|0.00|-0.58|10FF0009|Zewo Negiwo|1|50750|81177|4758|10000|||93.72|104.78|0.00|-0.58| +37|2023-10-06T21:19:00.3200000-07:00|10FF0009|Zewo Negiwo|00019F4E|76519||||||93.72|104.78|0.00|-0.58| +261|2023-10-06T21:18:59.9320000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:18:59.9320000-07:00|Change|40022489||||||||| +261|2023-10-06T21:18:59.9320000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:19:00.3640000-07:00|10FF0001|Sesuga Sapisuga|00019F45|129071|129071|8200|10000|0||110.30|93.28|0.00|2.85|1306|0|0|01|050004C3|0|41200000|| +26|2023-10-06T21:19:00.3640000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +261|2023-10-06T21:18:59.9320000-07:00|Change|40022488||||||||| +261|2023-10-06T21:18:59.9320000-07:00|Change|40022482||||||||| +261|2023-10-06T21:18:59.9320000-07:00|Change|40022485||||||||| +261|2023-10-06T21:18:59.9320000-07:00|Change|40022484||||||||| +261|2023-10-06T21:18:59.9320000-07:00|Change|40022483||||||||| +261|2023-10-06T21:18:59.9320000-07:00|Change|40022481||||||||| +21|2023-10-06T21:19:00.4090000-07:00|40022489|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019F54|0|0| +21|2023-10-06T21:19:00.4090000-07:00|4002248A|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019F55|0|0| +20|2023-10-06T21:19:00.4090000-07:00|4002248F|Zeromus|8B62|Flare|4002248F|Zeromus|4.700|105.00|100.00|0.00|0.00| +20|2023-10-06T21:19:00.4090000-07:00|40022490|Zeromus|8B62|Flare|40022490|Zeromus|4.700|95.00|100.00|0.00|0.00| +39|2023-10-06T21:19:00.4090000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|1.10| +261|2023-10-06T21:18:59.9320000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:18:59.9320000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:19:00.4530000-07:00|40022472|Zeromus|00019F50|12222566||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:00.4530000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|19B2|70235|81809|6800|10000|||88.20|109.12|0.00|-0.72|10FF0009|Zewo Negiwo|0|76519|81177|4758|10000|||93.14|105.82|0.00|-0.56| +37|2023-10-06T21:19:00.4530000-07:00|10FF0006|Wowobora Gogobora|00019F4E|81809||||||88.20|109.12|0.00|-0.72| +20|2023-10-06T21:19:00.4530000-07:00|40022481|Zeromus|8B63|Prominence Spine|40022481|Zeromus|4.700|95.00|100.00|0.00|1.57| +20|2023-10-06T21:19:00.4530000-07:00|40022482|Zeromus|8B63|Prominence Spine|40022482|Zeromus|4.700|95.00|100.00|0.00|0.00| +20|2023-10-06T21:19:00.4530000-07:00|40022483|Zeromus|8B63|Prominence Spine|40022483|Zeromus|4.700|95.00|100.00|0.00|-1.57| +20|2023-10-06T21:19:00.4530000-07:00|40022484|Zeromus|8B63|Prominence Spine|40022484|Zeromus|4.700|95.00|100.00|0.00|3.14| +20|2023-10-06T21:19:00.4530000-07:00|40022485|Zeromus|8B63|Prominence Spine|40022485|Zeromus|4.700|105.00|100.00|0.00|1.57| +20|2023-10-06T21:19:00.4530000-07:00|40022486|Zeromus|8B63|Prominence Spine|40022486|Zeromus|4.700|105.00|100.00|0.00|0.00| +20|2023-10-06T21:19:00.4530000-07:00|40022487|Zeromus|8B63|Prominence Spine|40022487|Zeromus|4.700|105.00|100.00|0.00|-1.57| +20|2023-10-06T21:19:00.4530000-07:00|40022488|Zeromus|8B63|Prominence Spine|40022488|Zeromus|4.700|105.00|100.00|0.00|3.14| +261|2023-10-06T21:19:00.0520000-07:00|Change|40022486||||||||||||||||| +261|2023-10-06T21:19:00.0520000-07:00|Change|40022487||||||||||||||| +37|2023-10-06T21:19:00.4980000-07:00|10FF0008|Kokosaze Lulusaze|00019F45|52095|90216|10000|10000|21||110.81|92.43|-0.02|-2.46|1F07|0|0|01|020004C3|0|41200000|| +26|2023-10-06T21:19:00.4980000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +21|2023-10-06T21:19:00.5420000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|49880000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|12222566|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6800|10000|||87.90|109.42|0.00|-0.76|00019F56|0|1| +24|2023-10-06T21:19:00.5870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|191F|110719|129844|10000|10000|||90.09|94.23|-0.02|2.52|10FF0009|Zewo Negiwo|0|76519|81177|4758|10000|||92.61|106.17|0.00|-0.71| +37|2023-10-06T21:19:00.5870000-07:00|10FF0007|Kehabiqo Febiqo|00019F4E|129844||||||90.09|94.23|-0.02|2.52| +37|2023-10-06T21:19:00.6320000-07:00|40022472|Zeromus|00019F4F|12210473||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:00.6320000-07:00|10FF0003|Gegehi Gehi|00019F4F|49587|73814|4950|10000|0||111.56|106.08|0.00|1.03|2300|0|0|01|040004D2|0|41F00000|| +21|2023-10-06T21:19:00.6320000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F1C0E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|12222566|40478540|10000|10000|||100.00|80.10|0.00|0.00|55902|81541|450|10000|||107.35|107.23|0.00|0.30|00019F57|0|1| +38|2023-10-06T21:19:00.6320000-07:00|10FF0003|Gegehi Gehi|005A5A23|49587|73814|4950|10000|0||111.56|106.08|0.00|1.03|0|0|0|||||||||||||||| +261|2023-10-06T21:19:00.2620000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:19:00.7210000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|27A7|67800|82773|10000|10000|||90.78|90.54|0.00|-2.69|10FF0009|Zewo Negiwo|1|76519|81177|4758|10000|||92.04|106.55|0.00|-0.87| +37|2023-10-06T21:19:00.7210000-07:00|10FF000A|Dukaro Nezikaro|00019F4E|82773||||||90.78|90.54|0.00|-2.69| +37|2023-10-06T21:19:00.7660000-07:00|40022472|Zeromus|00019F53|12208292||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:00.3520000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:19:00.3520000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:19:00.8550000-07:00|40022472|Zeromus|00019F52|12177976||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:00.8550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|2B5D|55902|81541|50|10000|||107.91|108.59|0.00|-2.87|10FF0009|Zewo Negiwo|1|76519|81177|4758|10000|||91.44|106.95|0.00|-0.95| +37|2023-10-06T21:19:00.8550000-07:00|10FF0004|Buhojaqe Zijaqe|00019F4E|81541||||||107.91|108.59|0.00|-2.87| +261|2023-10-06T21:19:00.4480000-07:00|Change|40022488||||||||||||| +21|2023-10-06T21:19:00.9440000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18710000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|12177976|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||90.11|89.15|0.00|-2.69|00019F58|0|1| +261|2023-10-06T21:19:00.4480000-07:00|Change|10FF0009||||||||||| +24|2023-10-06T21:19:00.9880000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1918|49587|73814|4950|10000|||112.90|107.78|0.00|0.76|10FF0009|Zewo Negiwo|0|76519|81177|4758|10000|||90.83|107.36|0.00|-0.97| +37|2023-10-06T21:19:00.9880000-07:00|10FF0003|Gegehi Gehi|00019F4E|71036||||||112.90|107.78|0.00|0.76| +37|2023-10-06T21:19:00.9880000-07:00|40022472|Zeromus|00019F51|12172884||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:00.9880000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||90.11|89.15|0.00|-2.69| +21|2023-10-06T21:19:00.9880000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|4AA10000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|12177976|40478540|10000|10000|||100.00|80.10|0.00|0.00|52095|90216|10000|10000|||111.43|91.62|0.00|-3.02|00019F59|0|1| +261|2023-10-06T21:19:00.5480000-07:00|Change|10FF0009||||||||||| +24|2023-10-06T21:19:01.1230000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1ABF|129071|129071|8200|10000|||112.14|90.39|0.00|2.71|10FF0009|Zewo Negiwo|0|76519|81177|4758|10000|||89.64|108.04|0.00|-1.06| +261|2023-10-06T21:19:00.6630000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:19:01.1670000-07:00|40022472|Zeromus|00019F56|12154060||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:01.1670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|DBE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12172884|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||112.14|90.39|0.00|2.71|00019F5A|0|1| +31|2023-10-06T21:19:01.1670000-07:00|10FF0001||||| +24|2023-10-06T21:19:01.2570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|2889|52095|90216|10000|10000|||112.63|90.06|0.00|-2.16|10FF0009|Zewo Negiwo|1|76519|81177|4758|10000|||89.03|108.31|0.00|-1.12| +37|2023-10-06T21:19:01.2570000-07:00|10FF0008|Kokosaze Lulusaze|00019F4E|77956||||||112.63|90.06|0.00|-2.16| +37|2023-10-06T21:19:01.2570000-07:00|40022472|Zeromus|00019F57|12154060|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:19:01.2570000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +38|2023-10-06T21:19:01.2570000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|3.11|0|0|0|||||||||| +26|2023-10-06T21:19:01.2570000-07:00|7AE|Summon Order IV|30.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:19:01.2570000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|50|10000|||108.25|108.80|0.00|2.78|81541|81541|50|10000|||108.25|108.80|0.00|2.78|00019F5B|0|1| +37|2023-10-06T21:19:01.3460000-07:00|40022472|Zeromus|00019F58|12147803||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:19:01.3460000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|271B0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8200|10000|||112.59|89.93|0.00|2.32|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F5C|0|8| +22|2023-10-06T21:19:01.3460000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|28BB0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||88.31|89.94|0.00|-2.95|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F5C|1|8| +22|2023-10-06T21:19:01.3460000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|284E0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|50|10000|||108.88|109.51|0.00|2.09|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F5C|2|8| +22|2023-10-06T21:19:01.3460000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0009|Zewo Negiwo|4|27AD0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|76519|81177|4758|10000|||88.34|108.61|0.00|-1.19|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F5C|3|8| +22|2023-10-06T21:19:01.3460000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|4|27770000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||89.59|88.49|0.00|2.24|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F5C|4|8| +22|2023-10-06T21:19:01.3460000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|28160000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|77956|90216|10000|10000|||112.98|89.60|0.00|-2.16|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F5C|5|8| +22|2023-10-06T21:19:01.3460000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|27D00000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|71036|73814|4950|10000|||114.16|110.07|0.00|0.53|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F5C|6|8| +22|2023-10-06T21:19:01.3460000-07:00|40022C1B|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|27280000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6500|10000|||86.95|111.40|0.00|-0.66|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F5C|7|8| +261|2023-10-06T21:19:00.8990000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:19:00.8990000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:19:01.3900000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40022472|Zeromus|754003|6ADB0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|12154060|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6500|10000|||86.95|111.40|0.00|-0.66|00019F5D|0|1| +261|2023-10-06T21:19:01.0210000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:19:01.0210000-07:00|Change|40022485||||||||||||| +261|2023-10-06T21:19:01.0210000-07:00|Change|40022484||||||||||||| +261|2023-10-06T21:19:01.0210000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:19:01.0210000-07:00|Change|40022481||||||||||||| +21|2023-10-06T21:19:01.4790000-07:00|40022489|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019F5E|0|0| +21|2023-10-06T21:19:01.4790000-07:00|4002248A|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019F5F|0|0| +261|2023-10-06T21:19:01.1340000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:01.1340000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:19:01.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77956|90216|10000|10000|21||113.49|88.93|0.00|-2.55|0|0|0|||||||||||||||| +26|2023-10-06T21:19:01.5250000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:01.5250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||89.41|88.47|0.00|2.24|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:01.5250000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:19:01.5250000-07:00|10FF0003|Gegehi Gehi|005A5A23|71036|73814|4950|10000|0||114.50|110.72|0.00|0.51|0|0|0|||||||||||||||| +26|2023-10-06T21:19:01.5250000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:01.5250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|50|10000|0||109.44|110.15|0.00|1.47|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:01.5250000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:01.5250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6500|10000|23||86.87|111.68|0.00|2.75|0|0|0||||||||||||| +26|2023-10-06T21:19:01.5250000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:01.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||88.08|89.24|0.00|-2.90|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:01.5250000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:19:01.5250000-07:00|10FF0009|Zewo Negiwo|005A5A18|76519|81177|4758|10000|23||87.90|109.24|0.00|-1.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:01.5250000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:01.5250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||113.09|89.47|0.00|2.32|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:01.5250000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:01.5250000-07:00|10FF0009|Zewo Negiwo|005A5A18|76519|81177|5308|10000|23||87.90|109.24|0.00|-1.08|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:19:01.5690000-07:00|40022C94|Demi-Bahamut|66800|69928|10000|10000|||96.51|103.17|0.00|2.99| +21|2023-10-06T21:19:01.6140000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|11590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12147803|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||87.90|88.59|0.00|-2.90|00019F60|0|1| +21|2023-10-06T21:19:01.6580000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77956|90216|10000|10000|||114.46|87.65|0.00|2.94|77956|90216|10000|10000|||114.46|87.65|0.00|2.94|00019F61|0|1| +37|2023-10-06T21:19:01.7010000-07:00|40022472|Zeromus|00019F5A|12144285||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:01.7920000-07:00|40022472|Zeromus|00019F59|12125180||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:01.7920000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12144285|40478540|10000|10000|||100.00|80.10|0.00|0.00|77956|90216|10000|10000|||115.10|86.85|0.00|2.47|00019F62|0|1| +261|2023-10-06T21:19:01.4290000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:19:01.8810000-07:00|40022C94|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|754003|17B10000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|12125180|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||96.51|103.17|0.00|2.99|00019F63|0|1| +20|2023-10-06T21:19:01.9260000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|87.22|110.69|0.00|-0.12| +21|2023-10-06T21:19:01.9260000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|752003|A4B70000|4|25EB8000|0|0|0|0|0|0|0|0|0|0|0|0|12125180|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||113.94|88.52|0.00|2.55|00019F64|0|1| +38|2023-10-06T21:19:01.9260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7200|10000|0||113.94|88.52|0.00|2.55|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:01.9260000-07:00|558|Requiescat|24.52|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:19:01.9260000-07:00|10FF0001||||| +261|2023-10-06T21:19:01.5310000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:19:01.5310000-07:00|Change|10FF0009||||||||||||||||||||||| +38|2023-10-06T21:19:02.1500000-07:00|40022CA3||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:19:02.1500000-07:00|40022CA3||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:19:02.1950000-07:00|40022472|Zeromus|00019F5D|12097825||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:19:01.7420000-07:00|40022CA3|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||118.98|84.33|0.00|2.62| +261|2023-10-06T21:19:01.7420000-07:00|Add|40022CA3||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:02.2390000-07:00|40022472|Zeromus|00019F60|12093384||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:01.8610000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:19:01.8610000-07:00|Change|40022CA3||| +21|2023-10-06T21:19:02.2840000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|13270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12093384|40478540|10000|10000|||100.00|80.10|0.00|0.00|77956|90216|10000|10000|||117.17|84.11|0.00|2.50|00019F65|0|1| +261|2023-10-06T21:19:01.9770000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:19:02.4180000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12093384|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||84.39|84.05|0.00|2.94|00019F66|0|1| +261|2023-10-06T21:19:02.0990000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:19:02.0990000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:19:02.5520000-07:00|10FF0009|Zewo Negiwo|00019F5C|81177||||||87.05|111.07|0.00|2.75| +37|2023-10-06T21:19:02.5520000-07:00|40022472|Zeromus|00019F62|12089796||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:02.5520000-07:00|40022489|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019F67|0|0| +21|2023-10-06T21:19:02.5520000-07:00|4002248A|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019F68|0|0| +39|2023-10-06T21:19:02.5520000-07:00|10FF0003|Gegehi Gehi|71774|73814|5150|10000|||116.75|116.55|0.00|0.38| +21|2023-10-06T21:19:02.5520000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|52A00000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|12093384|40478540|10000|10000|||100.00|80.10|0.00|0.00|76519|81177|5308|10000|||87.05|111.07|0.00|2.75|00019F69|0|1| +261|2023-10-06T21:19:02.1980000-07:00|Change|10FF0009||||||||||||||||||||||||||| +39|2023-10-06T21:19:02.6400000-07:00|10FF0009|Zewo Negiwo|81177|81177|5129|10000|||87.05|111.07|0.00|2.75| +21|2023-10-06T21:19:02.6850000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7FE60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12089796|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||86.32|85.82|0.00|2.49|00019F6A|0|1| +38|2023-10-06T21:19:02.6850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||86.32|85.82|0.00|2.49|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:02.6850000-07:00|499|Inner Release|11.39|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +39|2023-10-06T21:19:02.7300000-07:00|10FF0008|Kokosaze Lulusaze|78858|90216|10000|10000|||118.46|81.74|0.00|3.05| +21|2023-10-06T21:19:02.7300000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|10FF0000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|12089796|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7200|10000|||115.60|85.67|0.00|2.75|00019F6B|0|1| +24|2023-10-06T21:19:02.7740000-07:00|40022472|Zeromus|DoT|0|2291|12089796|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|50|10000|||113.65|114.43|-0.02|0.86| +38|2023-10-06T21:19:02.7740000-07:00|40022472|Zeromus|005A5A00|12080947|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:19:02.8200000-07:00|10FF0008|Kokosaze Lulusaze|00019F5C|89120||||||118.60|81.48|0.00|2.90| +37|2023-10-06T21:19:02.8200000-07:00|40022472|Zeromus|00019F64|12038780||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:02.8650000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7400|10000|||115.74|85.34|0.00|2.75| +36|2023-10-06T21:19:02.8650000-07:00|43D0|3| +37|2023-10-06T21:19:02.9090000-07:00|40022472|Zeromus|00019F65|12033877||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:02.9090000-07:00|40022472|Zeromus|00019F63|12027812||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:02.9090000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|250|10000|||113.77|114.65|0.00|0.67| +37|2023-10-06T21:19:02.9530000-07:00|10FF0003|Gegehi Gehi|00019F5C|73814||||||117.65|118.24|0.00|0.49| +37|2023-10-06T21:19:02.9530000-07:00|40022472|Zeromus|00019F66|12025744||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:02.9980000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||85.05|84.85|0.00|1.88| +39|2023-10-06T21:19:02.9980000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6700|10000|||86.46|111.80|0.00|-0.47| +20|2023-10-06T21:19:02.9980000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|117.65|118.24|0.00|0.49| +261|2023-10-06T21:19:02.4810000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:19:02.5800000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:19:03.0440000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|559B0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|12025744|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6700|10000|||86.54|111.76|0.00|0.13|00019F6C|0|1| +21|2023-10-06T21:19:03.0870000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|16FC0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|89120|90216|10000|10000|||118.85|81.04|-0.01|2.64|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14|00019F6D|0|1| +38|2023-10-06T21:19:03.0880000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|-3.14|0|0|0||||||| +30|2023-10-06T21:19:03.0880000-07:00|7AE|Summon Order IV|0.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +34|2023-10-06T21:19:03.1770000-07:00|40022CA3|Automaton Queen|40022CA3|Automaton Queen|01| +261|2023-10-06T21:19:02.6900000-07:00|Change|40022CA3||||| +261|2023-10-06T21:19:02.8000000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:19:03.3100000-07:00|40022472|Zeromus|00019F6A|11993002||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:03.3100000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12025744|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||84.18|84.17|-0.02|2.43|00019F6E|0|1| +39|2023-10-06T21:19:03.3990000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|2.60| +261|2023-10-06T21:19:02.9100000-07:00|Change|10FF0003||||||||||||||||||||||| +21|2023-10-06T21:19:03.4440000-07:00|40022472|Zeromus|8D28|Nox|40022472|Zeromus|1B|8D288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11993002|40478540|10000|10000|||100.00|80.10|0.00|0.00|11993002|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019F6F|0|1| +21|2023-10-06T21:19:03.4440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|DC70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11993002|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||116.95|83.68|0.00|2.56|00019F70|0|1| +31|2023-10-06T21:19:03.4440000-07:00|10FF0001||||| +261|2023-10-06T21:19:03.0210000-07:00|Change|40022472||||| +21|2023-10-06T21:19:03.4880000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3AC10000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|11993002|40478540|10000|10000|||100.00|80.10|0.00|0.00|89120|90216|10000|10000|||118.88|80.98|0.00|-1.62|00019F71|0|1| +261|2023-10-06T21:19:03.1350000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:03.1350000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:19:03.1350000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:19:03.6220000-07:00|40022489|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019F72|0|0| +21|2023-10-06T21:19:03.6220000-07:00|4002248A|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019F73|0|0| +261|2023-10-06T21:19:03.2340000-07:00|Change|10FF0009||| +38|2023-10-06T21:19:03.6660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6400|10000|23||86.78|111.65|0.00|2.75|0|0|0|||||||||||||||| +26|2023-10-06T21:19:03.6660000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:19:03.6660000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|752003|366A0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|11993002|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6400|10000|||86.78|111.65|0.00|2.75|00019F74|0|1| +38|2023-10-06T21:19:03.6660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6400|10000|23||86.78|111.65|0.00|2.75|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:03.6660000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:19:03.7110000-07:00|40022472|Zeromus|00019F6C|11971087||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:03.7110000-07:00|10FF0006|Wowobora Gogobora|00019F6C|81809|81809|6400|10000|23||86.78|111.65|0.00|2.75|1B00|0|0|01|05000A8D|0|C2700000|| +37|2023-10-06T21:19:03.7560000-07:00|40022472|Zeromus|00019F6B|11966736|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T21:19:03.7560000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:19:03.8440000-07:00|40022472|Zeromus|00019F6E|11963949||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:03.8440000-07:00|40022472|Zeromus|00019F69|11942797||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:03.8890000-07:00|10FF0008|Kokosaze Lulusaze|00019F6D|90216||||||118.88|80.98|0.00|-1.62| +37|2023-10-06T21:19:03.9780000-07:00|40022472|Zeromus|00019F70|11939270||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:03.9780000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||84.08|83.50|0.00|2.70| +37|2023-10-06T21:19:04.2890000-07:00|40022472|Zeromus|00019F71|11924229||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:19:04.2890000-07:00|10FF0009|Zewo Negiwo|DF1|Asylum|10FF0009|Zewo Negiwo|FCF10F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5129|10000|||87.05|111.07|0.00|2.75|81177|81177|5129|10000|||87.05|111.07|0.00|2.75|00019F75|0|1| +38|2023-10-06T21:19:04.2890000-07:00|40022C94|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||96.51|103.17|0.00|2.99|0|0|0||||||| +26|2023-10-06T21:19:04.2890000-07:00|30|Well Fed|1328.99|10FF0006|Wowobora Gogobora|40022C94|Demi-Bahamut|2964|69928|81809| +26|2023-10-06T21:19:04.2890000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022C94|Demi-Bahamut|01|69928|40478540| +21|2023-10-06T21:19:04.2890000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40022472|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|11939270|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6400|10000|||86.78|111.65|0.00|2.75|00019F76|0|1| +21|2023-10-06T21:19:04.3340000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||82.94|82.18|0.00|3.03|11939270|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019F77|0|1| +21|2023-10-06T21:19:04.3780000-07:00|40022C94|Demi-Bahamut|1D19|Akh Morn|40022472|Zeromus|752003|C964001|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|11924229|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||96.51|103.17|0.00|2.99|00019F78|0|1| +21|2023-10-06T21:19:04.3780000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|19000000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|11924229|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.80|83.21|0.00|2.59|00019F79|0|1| +21|2023-10-06T21:19:04.4230000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|233F0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|11924229|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5150|10000|||117.78|118.43|0.00|-2.71|00019F7A|0|1| +38|2023-10-06T21:19:04.4230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||117.78|118.43|0.00|-2.71|0|0|0|||||||||||||||| +30|2023-10-06T21:19:04.4230000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:19:04.4230000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:19:04.4670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11924229|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||118.88|80.98|0.00|-1.62|00019F7B|0|1| +261|2023-10-06T21:19:04.0800000-07:00|Change|4002247F||||||||| +261|2023-10-06T21:19:04.0800000-07:00|Change|40022480||||||||| +21|2023-10-06T21:19:04.4670000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|712003|95D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11924229|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||118.64|81.13|0.00|-1.63|00019F7C|0|1| +38|2023-10-06T21:19:04.4670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6400|10000|23||86.78|111.65|0.00|2.75|0|0|0||||||||||||||||||| +261|2023-10-06T21:19:04.0800000-07:00|Change|10FF0003||||||||||||||||||||||| +20|2023-10-06T21:19:04.5110000-07:00|4002247F|Zeromus|8D2A|Nox|4002247F|Zeromus|4.700|82.65|82.11|0.00|0.00| +20|2023-10-06T21:19:04.5110000-07:00|40022480|Zeromus|8D2A|Nox|40022480|Zeromus|4.700|117.79|118.44|0.00|0.00| +38|2023-10-06T21:19:04.5560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|21||118.88|80.98|0.00|-1.62|0|0|0|||||||||||||||| +26|2023-10-06T21:19:04.5560000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:04.5560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||83.54|82.93|-0.02|1.71|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:04.5560000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:19:04.5560000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||117.78|118.43|0.00|-2.71|0|0|0|||||||||||||||| +26|2023-10-06T21:19:04.5560000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:04.5560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|250|10000|0||115.23|117.19|0.00|0.86|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:04.5560000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:04.5560000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6400|10000|23||86.78|111.65|0.00|2.75|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:04.5560000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:04.5560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||82.73|82.11|0.00|3.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:04.5560000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:19:04.5560000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5129|10000|23||87.05|111.07|0.00|2.42|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:04.5560000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:04.5560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7400|10000|0||118.64|81.13|0.00|-1.63|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:04.5560000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:04.5560000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5679|10000|23||87.05|111.07|0.00|2.42|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:19:04.6000000-07:00|40022C94|Demi-Bahamut|66800|69928|10000|10000|||96.51|103.17|0.00|2.99| +21|2023-10-06T21:19:04.6000000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11924229|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||83.43|82.81|0.00|1.71|00019F7D|0|1| +261|2023-10-06T21:19:04.1810000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:19:04.6890000-07:00|40022472|Zeromus|00019F74|11910299||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:04.6890000-07:00|10FF0006|Wowobora Gogobora|00019F74|81809|81809|6400|10000|23||86.78|111.65|0.00|2.75|1B00|0|0|01|05000A8D|0|42700000|| +21|2023-10-06T21:19:04.6890000-07:00|40022489|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019F7E|0|0| +21|2023-10-06T21:19:04.6890000-07:00|4002248A|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019F7F|0|0| +38|2023-10-06T21:19:04.6890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6400|10000|23||86.78|111.65|0.00|2.75|0|0|0||||||||||||||||||| +261|2023-10-06T21:19:04.2780000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:19:04.7780000-07:00|40022472|Zeromus|00019F79|11903899||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:04.4670000-07:00|Change|40022480||||||||||||| +261|2023-10-06T21:19:04.4670000-07:00|Change|4002247F||||||||||||| +37|2023-10-06T21:19:05.0000000-07:00|40022472|Zeromus|00019F7C|11865538||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:05.1350000-07:00|10FF0009|Zewo Negiwo|HoT|777|1643|81177|81177|5679|10000|||87.05|111.07|0.00|2.42|10FF0009|Zewo Negiwo|0|81177|81177|5679|10000|||87.05|111.07|0.00|2.42| +24|2023-10-06T21:19:05.1350000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E10|81809|81809|6400|10000|||86.78|111.62|0.00|2.82|10FF0009|Zewo Negiwo|0|81177|81177|5679|10000|||87.05|111.07|0.00|2.42| +37|2023-10-06T21:19:05.1350000-07:00|10FF0009|Zewo Negiwo|00019F75|81177|81177|5679|10000|23||87.05|111.07|0.00|2.42|1800|0|0|02|08000777|0|41C00000|||||| +26|2023-10-06T21:19:05.1350000-07:00|777|Asylum|24.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:19:05.1350000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:19:05.1350000-07:00|40022472|Zeromus|00019F7D|11862719||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:05.1350000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7A040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11865538|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||82.63|82.08|0.00|2.90|00019F80|0|1| +20|2023-10-06T21:19:05.1350000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|87.05|111.07|0.00|2.42| +38|2023-10-06T21:19:05.1350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||82.63|82.08|0.00|2.90|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:05.1350000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +38|2023-10-06T21:19:05.1350000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5679|10000|23||87.05|111.07|0.00|2.42|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:05.1350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6400|10000|23||86.78|111.62|0.00|2.82|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:05.1350000-07:00|778|Asylum|4.95|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:19:05.2240000-07:00|40022472|Zeromus|00019F7B|11859805||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:05.2240000-07:00|40022472|Zeromus|00019F7A|11850782||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:05.2680000-07:00|40022472|Zeromus|00019F78|11782024||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:05.2680000-07:00|40022C94|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||96.51|103.17|0.00|2.99|0|0|0|||| +30|2023-10-06T21:19:05.2680000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022C94|Demi-Bahamut|01|69928|40478540| +22|2023-10-06T21:19:05.3590000-07:00|4002248B|Zeromus|8B65|Branding Flare|10FF0008|Kokosaze Lulusaze|150603|5C590000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||118.88|80.98|0.00|-1.62|44|44|0|10000|||105.00|100.00|0.00|0.00|00019F81|0|2| +22|2023-10-06T21:19:05.3590000-07:00|4002248B|Zeromus|8B65|Branding Flare|10FF0001|Sesuga Sapisuga|150003|68A60000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|129071|129071|7400|10000|||118.66|81.09|0.00|2.55|44|44|0|10000|||105.00|100.00|0.00|0.00|00019F81|1|2| +22|2023-10-06T21:19:05.3590000-07:00|4002248C|Zeromus|8B65|Branding Flare|10FF000A|Dukaro Nezikaro|150603|5F570000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||83.11|82.45|0.00|1.60|44|44|0|10000|||95.00|100.00|0.00|0.00|00019F82|0|2| +22|2023-10-06T21:19:05.3590000-07:00|4002248C|Zeromus|8B65|Branding Flare|10FF0007|Kehabiqo Febiqo|150603|56D20000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||82.63|82.08|0.00|1.69|44|44|0|10000|||95.00|100.00|0.00|0.00|00019F82|1|2| +22|2023-10-06T21:19:05.3590000-07:00|4002248D|Zeromus|8B65|Branding Flare|10FF0003|Gegehi Gehi|150003|A44A0000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|73814|73814|4950|10000|||117.80|118.35|0.00|-2.98|44|44|0|10000|||105.00|100.00|0.00|0.00|00019F83|0|2| +22|2023-10-06T21:19:05.3590000-07:00|4002248D|Zeromus|8B65|Branding Flare|10FF0004|Buhojaqe Zijaqe|150003|9B6C0000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|81541|81541|250|10000|||115.33|117.31|0.00|2.24|44|44|0|10000|||105.00|100.00|0.00|0.00|00019F83|1|2| +261|2023-10-06T21:19:04.9060000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:19:04.9060000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:19:04.9060000-07:00|Change|4002248D||||||||||||| +22|2023-10-06T21:19:05.3600000-07:00|4002248E|Zeromus|8B65|Branding Flare|10FF0006|Wowobora Gogobora|150603|4FEC0000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|81809|81809|6400|10000|||86.80|111.57|0.00|2.84|44|44|0|10000|||95.00|100.00|0.00|0.00|00019F84|0|2| +22|2023-10-06T21:19:05.3600000-07:00|4002248E|Zeromus|8B65|Branding Flare|10FF0009|Zewo Negiwo|150603|531B0000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|81177|81177|5679|10000|||87.05|111.07|0.00|2.54|44|44|0|10000|||95.00|100.00|0.00|0.00|00019F84|1|2| +38|2023-10-06T21:19:05.3600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||82.63|82.08|0.00|1.69|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:05.3600000-07:00|832|Fire Resistance Down II|2.00|4002248C|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:19:05.3600000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5679|10000|0||87.05|111.07|0.00|2.54|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:05.3600000-07:00|832|Fire Resistance Down II|2.00|4002248E|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +38|2023-10-06T21:19:05.3600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||118.88|80.98|0.00|-1.62|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:05.3600000-07:00|832|Fire Resistance Down II|2.00|4002248B|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T21:19:05.3600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6400|10000|0||86.80|111.57|0.00|2.84|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:05.3600000-07:00|832|Fire Resistance Down II|2.00|4002248E|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T21:19:05.3600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7400|10000|0||118.66|81.09|0.00|2.55|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:05.3600000-07:00|832|Fire Resistance Down II|2.00|4002248B|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:19:05.3600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|250|10000|0||115.33|117.31|0.00|2.24|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:05.3600000-07:00|832|Fire Resistance Down II|2.00|4002248D|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +261|2023-10-06T21:19:04.9060000-07:00|Change|4002248E||||||||||||| +38|2023-10-06T21:19:05.3600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||117.80|118.35|0.00|-2.98|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:05.3600000-07:00|832|Fire Resistance Down II|2.00|4002248D|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T21:19:05.3600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||83.11|82.45|0.00|1.60|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:05.3600000-07:00|832|Fire Resistance Down II|2.00|4002248C|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +261|2023-10-06T21:19:04.9060000-07:00|Add|40022CA5||||||||||||||||||||||||||| +21|2023-10-06T21:19:05.4020000-07:00|4002248F|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019F85|0|0| +21|2023-10-06T21:19:05.4020000-07:00|40022490|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019F86|0|0| +261|2023-10-06T21:19:05.0160000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022490||||||||||||| +21|2023-10-06T21:19:05.4470000-07:00|40022481|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|1.57|00019F87|0|0| +21|2023-10-06T21:19:05.4470000-07:00|40022482|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00019F88|0|0| +21|2023-10-06T21:19:05.4470000-07:00|40022483|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|-1.57|00019F89|0|0| +21|2023-10-06T21:19:05.4470000-07:00|40022484|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|3.14|00019F8A|0|0| +21|2023-10-06T21:19:05.4470000-07:00|40022485|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|1.57|00019F8B|0|0| +21|2023-10-06T21:19:05.4470000-07:00|40022486|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00019F8C|0|0| +21|2023-10-06T21:19:05.4470000-07:00|40022487|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|-1.57|00019F8D|0|0| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022481||||||||||||| +21|2023-10-06T21:19:05.4470000-07:00|40022488|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|3.14|00019F8E|0|0| +21|2023-10-06T21:19:05.4470000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|2EF60000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|11782024|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4950|10000|||117.81|118.32|0.00|-3.13|00019F8F|0|1| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022484||||||||||||| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022485||||||||||||| +38|2023-10-06T21:19:05.4470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|0||117.81|118.32|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:05.4470000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:19:05.0160000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:19:05.0160000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:19:05.1330000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:19:05.4910000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|756003|8AFC0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|11782024|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6400|10000|||86.80|111.55|0.00|2.86|00019F90|0|1| +39|2023-10-06T21:19:05.5360000-07:00|10FF0003|Gegehi Gehi|73814|73814|4850|10000|||117.92|117.61|0.00|-2.82| +38|2023-10-06T21:19:05.5360000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5679|10000|0||87.05|111.07|0.00|2.70|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:05.5360000-07:00|9D|Presence of Mind|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +39|2023-10-06T21:19:05.6240000-07:00|10FF0009|Zewo Negiwo|81177|81177|5900|10000|||87.05|111.07|0.00|2.70| +21|2023-10-06T21:19:05.6690000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|13AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11782024|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||118.66|81.09|0.00|-1.62|00019F91|0|1| +261|2023-10-06T21:19:05.2300000-07:00|Change|10FF0009||||||||||||||||||||| +39|2023-10-06T21:19:05.7140000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||118.88|80.98|0.00|-1.62| +21|2023-10-06T21:19:05.7140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11782024|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||118.66|81.09|0.00|-1.62|00019F92|0|1| +31|2023-10-06T21:19:05.7140000-07:00|10FF0001||||| +37|2023-10-06T21:19:05.7580000-07:00|40022472|Zeromus|00019F80|11750788||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:05.7580000-07:00|40022472|Zeromus|DoT|0|1E61|11782024|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7400|10000|||118.66|81.09|0.00|-1.62| +21|2023-10-06T21:19:05.7580000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|51E30000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|11782024|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5900|10000|||87.05|111.07|0.00|2.74|00019F93|0|1| +38|2023-10-06T21:19:05.7580000-07:00|40022472|Zeromus|005A5A00|11743011|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +36|2023-10-06T21:19:05.8470000-07:00|44AC|3| +39|2023-10-06T21:19:05.8920000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7600|10000|||118.66|81.09|0.00|-1.62| +39|2023-10-06T21:19:05.8920000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|450|10000|||114.59|115.05|0.00|-3.03| +261|2023-10-06T21:19:05.4270000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:19:05.4270000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:19:05.9810000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||83.59|82.21|0.00|1.49| +21|2023-10-06T21:19:05.9810000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|724003|72CC0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|11743011|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||118.88|80.98|0.00|-1.62|00019F94|0|1| +37|2023-10-06T21:19:06.0260000-07:00|10FF0008|Kokosaze Lulusaze|00019F81|66575|90216|10000|10000|0||118.88|80.98|0.00|-1.62|1F00|0|0|02|04000000|0|0|||||| +37|2023-10-06T21:19:06.0260000-07:00|10FF000A|Dukaro Nezikaro|00019F82|58366|82773|10000|10000|0||83.30|82.47|0.00|1.33|1E00|0|0|02|04000000|0|0|||||| +37|2023-10-06T21:19:06.0260000-07:00|10FF0003|Gegehi Gehi|00019F83|31756|73814|4850|10000|0||118.06|116.72|0.00|-2.79|2300|0|0|01|05000832|0|3FB0418A|| +37|2023-10-06T21:19:06.0260000-07:00|10FF0006|Wowobora Gogobora|00019F84|61349|81809|6100|10000|0||86.81|111.53|0.00|2.74|1B00|0|0|02|01000000|0|0|||||| +39|2023-10-06T21:19:06.0260000-07:00|10FF0006|Wowobora Gogobora|62167|81809|6300|10000|||86.81|111.53|0.00|2.74| +38|2023-10-06T21:19:06.0260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|66575|90216|10000|10000|0||118.88|80.98|0.00|-1.62|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:06.0260000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:19:06.0260000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62167|81809|6300|10000|0||86.81|111.53|0.00|2.74|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:06.0260000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:19:06.0260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58366|82773|10000|10000|0||83.30|82.47|0.00|1.33|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:06.0260000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:19:06.0710000-07:00|10FF0001|Sesuga Sapisuga|00019F81|102281|129071|7600|10000|0||118.66|81.09|0.00|-1.62|1301|0|0|01|07000832|0|3FAA7EFB|| +37|2023-10-06T21:19:06.0710000-07:00|10FF0007|Kehabiqo Febiqo|00019F82|107618|129844|10000|10000|0||83.97|82.26|0.00|1.44|1501|0|0|02|02000832|0|3FAA7EFB|||||| +37|2023-10-06T21:19:06.0710000-07:00|10FF0004|Buhojaqe Zijaqe|00019F83|41753|81541|450|10000|0||116.26|114.84|0.00|2.44|1C01|0|0|01|06000832|0|3FAA7EFB|| +37|2023-10-06T21:19:06.0710000-07:00|10FF0009|Zewo Negiwo|00019F84|59902|81177|5500|10000|0||87.05|111.07|0.00|2.75|1801|0|0|02|06000000|0|0|||||| +38|2023-10-06T21:19:06.0710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107618|129844|10000|10000|0||83.97|82.26|0.00|1.44|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:06.0710000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:19:06.0710000-07:00|10FF0009|Zewo Negiwo|005A5A18|59902|81177|5500|10000|0||87.05|111.07|0.00|2.75|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:06.0710000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +261|2023-10-06T21:19:05.6150000-07:00|Change|10FF0006||||| +37|2023-10-06T21:19:06.1150000-07:00|40022472|Zeromus|00019F90|11707431||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:06.2040000-07:00|40022472|Zeromus|00019F8F|11695409||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:06.2480000-07:00|40022472|Zeromus|00019F91|11690371||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:06.2480000-07:00|40022472|Zeromus|00019F92|11688105||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:06.3820000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|3.13| +21|2023-10-06T21:19:06.4270000-07:00|40022C94|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|752003|1E390000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|11688105|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||96.51|103.17|0.00|2.99|00019F95|0|1| +261|2023-10-06T21:19:06.0940000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:19:06.5160000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|107618|129844|10000|10000|||85.09|82.37|0.00|1.46|107618|129844|10000|10000|||85.09|82.37|0.00|1.46|00019F96|0|1| +38|2023-10-06T21:19:06.5160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107618|129844|10000|10000|0||85.09|82.37|0.00|1.46|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:06.5160000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:19:06.6500000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2D9F0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|11688105|40478540|10000|10000|||100.00|80.10|0.00|0.00|58366|82773|10000|10000|||84.02|84.06|0.00|1.80|00019F97|0|1| +21|2023-10-06T21:19:06.6940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|AEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11688105|40478540|10000|10000|||100.00|80.10|0.00|0.00|107618|129844|10000|10000|||85.93|82.46|0.00|1.46|00019F98|0|1| +261|2023-10-06T21:19:06.2790000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:19:06.7830000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|24FD0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|41753|81541|450|10000|||115.23|111.51|0.00|-2.84|73956|77430|10000|10000|||100.05|98.22|0.00|2.54|00019F99|0|1| +21|2023-10-06T21:19:06.7830000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11688105|40478540|10000|10000|||100.00|80.10|0.00|0.00|58366|82773|10000|10000|||84.37|84.84|0.00|1.88|00019F9A|0|1| +39|2023-10-06T21:19:07.0060000-07:00|10FF000A|Dukaro Nezikaro|59193|82773|10000|10000|||84.42|84.94|0.00|1.88| +21|2023-10-06T21:19:07.0060000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|750003|77A30000|200004|3F148000|0|0|0|0|0|0|0|0|0|0|0|0|11688105|40478540|10000|10000|||100.00|80.10|0.00|0.00|102281|129071|7600|10000|||118.66|81.09|0.00|-1.62|00019F9B|0|1| +38|2023-10-06T21:19:07.0060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102281|129071|6600|10000|0||118.66|81.09|0.00|-1.62|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:07.0060000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:19:07.0060000-07:00|10FF0001||||| +261|2023-10-06T21:19:06.5920000-07:00|Change|10FF0001||| +261|2023-10-06T21:19:06.5920000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:19:06.5920000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:19:07.0510000-07:00|10FF0007|Kehabiqo Febiqo|00019F96|107618|129844|10000|10000|0||88.15|82.64|0.00|1.49|1500|0|0|01|07000769|0|41F00000|| +37|2023-10-06T21:19:07.0510000-07:00|40022472|Zeromus|00019F93|11667142||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:07.0510000-07:00|40022472|Zeromus|00019F97|11655463||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:07.0510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107618|129844|10000|10000|0||88.15|82.64|0.00|1.49|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:19:07.1400000-07:00|40022472|Zeromus|00019F94|11626075||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:07.1400000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11655463|40478540|10000|10000|||100.00|80.10|0.00|0.00|66575|90216|10000|10000|||117.10|83.19|-0.02|-0.72|00019F9C|0|1| +37|2023-10-06T21:19:07.2290000-07:00|40022472|Zeromus|00019F98|11623279||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:06.8260000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:19:07.3170000-07:00|40022472|Zeromus|00019F9A|11619803||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:07.3630000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|33540000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|107618|129844|10000|10000|||90.16|82.72|0.00|1.52|11623279|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019F9D|0|1| +38|2023-10-06T21:19:07.3630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107618|129844|10000|10000|0||90.16|82.72|0.00|1.52|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:07.3630000-07:00|832|Fire Resistance Down II|0.00|4002248C|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:19:07.3630000-07:00|10FF0009|Zewo Negiwo|005A5A18|59902|81177|5500|10000|0||87.64|110.71|0.00|1.84|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:07.3630000-07:00|832|Fire Resistance Down II|0.00|4002248E|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +38|2023-10-06T21:19:07.3630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|66575|90216|10000|10000|0||116.24|84.21|0.00|-0.71|0|0|0||||||||||||| +30|2023-10-06T21:19:07.3630000-07:00|832|Fire Resistance Down II|0.00|4002248B|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T21:19:07.3630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62167|81809|6300|10000|0||89.27|109.19|0.00|2.33|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:07.3630000-07:00|832|Fire Resistance Down II|0.00|4002248E|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T21:19:07.3630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102281|129071|6600|10000|0||118.24|81.59|0.00|-1.45|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:07.3630000-07:00|832|Fire Resistance Down II|0.00|4002248B|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:19:07.3630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|41753|81541|450|10000|0||113.16|108.96|0.00|-2.47|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:07.3630000-07:00|832|Fire Resistance Down II|0.00|4002248D|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T21:19:07.3630000-07:00|10FF0003|Gegehi Gehi|005A5A23|31756|73814|4850|10000|0||118.42|107.97|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:19:07.3630000-07:00|832|Fire Resistance Down II|0.00|4002248D|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T21:19:07.3630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59193|82773|10000|10000|0||85.11|86.45|0.00|1.95|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:07.3630000-07:00|832|Fire Resistance Down II|0.00|4002248C|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +261|2023-10-06T21:19:06.9440000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:19:07.0540000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:19:07.4520000-07:00|40022472|Zeromus|00019F95|11612066||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:07.5410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|66575|90216|10000|10000|0||115.39|85.22|0.00|-0.71|0|0|0||||||||||||| +26|2023-10-06T21:19:07.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:07.5410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59193|82773|10000|10000|0||85.89|87.71|0.00|2.04|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:07.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:19:07.5410000-07:00|10FF0003|Gegehi Gehi|005A5A23|31756|73814|4850|10000|0||118.44|106.57|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:19:07.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:07.5410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|41753|81541|450|10000|0||112.21|108.05|0.00|-2.37|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:07.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:07.5410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62167|81809|6300|10000|0||90.00|108.60|0.00|2.26|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:07.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:07.5410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107618|129844|10000|10000|0||91.49|82.74|0.00|1.54|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:07.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:19:07.5410000-07:00|10FF0009|Zewo Negiwo|005A5A18|59902|81177|5500|10000|0||88.94|109.81|0.00|2.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:07.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:07.5410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102281|129071|6600|10000|0||117.47|82.58|0.00|-1.46|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:07.5410000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:19:07.5410000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E74|62167|81809|6300|10000|||90.00|108.60|0.00|2.26|10FF0009|Zewo Negiwo|0|59902|81177|5500|10000|||88.94|109.81|0.00|2.03| +24|2023-10-06T21:19:07.5410000-07:00|10FF0009|Zewo Negiwo|HoT|777|E25|59902|81177|5500|10000|||88.94|109.81|0.00|2.03|10FF0009|Zewo Negiwo|0|59902|81177|5500|10000|||88.94|109.81|0.00|2.03| +24|2023-10-06T21:19:07.5410000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E63|59193|82773|10000|10000|||85.89|87.71|0.00|2.04|10FF0009|Zewo Negiwo|0|59902|81177|5500|10000|||88.94|109.81|0.00|2.03| +38|2023-10-06T21:19:07.5420000-07:00|10FF0009|Zewo Negiwo|005A5A18|63523|81177|6050|10000|0||89.55|109.44|0.00|2.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:07.5420000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:07.5420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65867|81809|6300|10000|0||90.09|108.54|0.00|2.20|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:07.5420000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:07.5420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62876|82773|10000|10000|0||86.37|88.38|0.00|2.10|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:07.5420000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:19:07.5850000-07:00|10FF0004|Buhojaqe Zijaqe|00019F99|51222||||||111.89|107.47|0.00|-2.43| +39|2023-10-06T21:19:07.5850000-07:00|40022C94|Demi-Bahamut|66800|69928|10000|10000|||96.51|103.17|0.00|2.99| +21|2023-10-06T21:19:07.5850000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|972E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11612066|40478540|10000|10000|||100.00|80.10|0.00|0.00|107618|129844|10000|10000|||92.24|82.74|0.00|1.55|00019F9E|0|1| +38|2023-10-06T21:19:07.5850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107618|129844|10000|10000|0||92.24|82.74|0.00|1.55|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:07.5850000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:19:07.6290000-07:00|40022CA3|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1D8B0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|11612066|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.97|84.31|0.00|3.13|00019F9F|0|1| +261|2023-10-06T21:19:07.2760000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:19:07.7620000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|408E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11612066|40478540|10000|10000|||100.00|80.10|0.00|0.00|62876|82773|10000|10000|||86.75|88.91|-0.02|2.14|00019FA0|0|1| +261|2023-10-06T21:19:07.4740000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:19:07.8950000-07:00|40022472|Zeromus|00019F9C|11608462||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:07.8950000-07:00|40022472|Zeromus|00019F9B|11577835||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:07.8950000-07:00|10FF0001|Sesuga Sapisuga|00019F9B|118429||||||116.25|84.07|0.00|-1.48| +21|2023-10-06T21:19:07.8950000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|27A90000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|11612066|40478540|10000|10000|||100.00|80.10|0.00|0.00|51222|81541|450|10000|||111.31|106.42|-0.02|-2.54|00019FA1|0|1| +21|2023-10-06T21:19:07.9850000-07:00|40022C94|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|754003|17470000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|11577835|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||96.51|103.17|0.00|2.99|00019FA2|0|1| +21|2023-10-06T21:19:07.9850000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|4A3B0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|11577835|40478540|10000|10000|||100.00|80.10|0.00|0.00|65867|81809|6300|10000|||90.25|108.44|0.00|2.13|00019FA3|0|1| +21|2023-10-06T21:19:07.9850000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11577835|40478540|10000|10000|||100.00|80.10|0.00|0.00|118429|129071|6600|10000|||115.81|84.59|0.00|-1.48|00019FA4|0|1| +31|2023-10-06T21:19:07.9850000-07:00|10FF0001||||| +261|2023-10-06T21:19:07.5690000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:19:07.5690000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:07.5690000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:19:07.6640000-07:00|Change|10FF000A||||||||| +20|2023-10-06T21:19:08.0290000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|91.42|108.06|0.00|2.33| +39|2023-10-06T21:19:08.1170000-07:00|40022CA3|Automaton Queen|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79| +261|2023-10-06T21:19:07.6640000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:19:08.1620000-07:00|10FF0007|Kehabiqo Febiqo|00019F9D|94478||||||93.66|82.72|0.00|1.78| +38|2023-10-06T21:19:08.2950000-07:00|40022472|Zeromus|005A5A00|11577835|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:19:08.2950000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:19:07.8950000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:19:08.3840000-07:00|40022472|Zeromus|00019F9F|11570272||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:08.4290000-07:00|40022472|Zeromus|00019FA0|11553746||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:08.5180000-07:00|40022472|Zeromus|00019F9E|11515044||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:08.5180000-07:00|40022472|Zeromus|00019FA4|11512907||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:08.5180000-07:00|10FF0003|Gegehi Gehi|32494|73814|5050|10000|||118.91|100.45|0.00|3.14| +21|2023-10-06T21:19:08.5620000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5C180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11512907|40478540|10000|10000|||100.00|80.10|0.00|0.00|66575|90216|10000|10000|||110.92|89.71|0.00|-0.82|00019FA5|0|1| +37|2023-10-06T21:19:08.6070000-07:00|40022472|Zeromus|00019FA3|11493904||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:08.6070000-07:00|10FF0009|Zewo Negiwo|64334|81177|6271|10000|||91.90|107.90|0.00|2.85| +39|2023-10-06T21:19:08.6960000-07:00|10FF0008|Kokosaze Lulusaze|67477|90216|10000|10000|||110.38|90.19|0.00|-2.32| +24|2023-10-06T21:19:08.7410000-07:00|40022472|Zeromus|DoT|0|1B35|11493904|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|118429|129071|6600|10000|||112.80|88.05|0.00|-1.52| +38|2023-10-06T21:19:08.7410000-07:00|40022472|Zeromus|005A5A00|11486939|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:19:08.3250000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:19:08.7850000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|32760000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|11486939|40478540|10000|10000|||100.00|80.10|0.00|0.00|62876|82773|10000|10000|||91.27|95.11|0.00|2.21|00019FA6|0|1| +37|2023-10-06T21:19:08.8290000-07:00|40022472|Zeromus|00019FA1|11476786||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:08.4190000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:19:08.4190000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:08.4190000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:19:08.8740000-07:00|10FF0001|Sesuga Sapisuga|119719|129071|6800|10000|||112.38|88.52|0.00|-1.52| +39|2023-10-06T21:19:08.8740000-07:00|10FF0004|Buhojaqe Zijaqe|52037|81541|250|10000|||108.03|103.91|0.00|-2.30| +36|2023-10-06T21:19:08.8740000-07:00|4588|3| +261|2023-10-06T21:19:08.4190000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:19:08.9180000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|30180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11476786|40478540|10000|10000|||100.00|80.10|0.00|0.00|32494|73814|5050|10000|||119.01|97.82|-0.02|3.12|00019FA7|0|1| +261|2023-10-06T21:19:08.5120000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:19:08.9640000-07:00|10FF0007|Kehabiqo Febiqo|95776|129844|10000|10000|||98.44|82.72|0.00|1.57| +21|2023-10-06T21:19:08.9640000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|339F0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|11476786|40478540|10000|10000|||100.00|80.10|0.00|0.00|64334|81177|6271|10000|||91.91|107.90|0.00|2.86|00019FA8|0|1| +21|2023-10-06T21:19:08.9640000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|11430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11476786|40478540|10000|10000|||100.00|80.10|0.00|0.00|62876|82773|10000|10000|||91.69|95.67|0.00|2.71|00019FA9|0|1| +37|2023-10-06T21:19:09.0080000-07:00|40022472|Zeromus|00019FA2|11470827||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:09.0080000-07:00|10FF0006|Wowobora Gogobora|66685|81809|6200|10000|||94.15|106.13|0.00|2.14| +261|2023-10-06T21:19:08.6290000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:19:08.7410000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:19:09.1870000-07:00|40022CA3|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1D5B0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|11470827|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79|00019FAA|0|1| +38|2023-10-06T21:19:09.2760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52037|81541|250|10000|0||105.56|102.65|0.00|-2.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:09.2760000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:19:09.2760000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52037|81541|250|10000|||105.56|102.65|0.00|-2.04|52037|81541|250|10000|||105.56|102.65|0.00|-2.04|00019FAB|0|1| +37|2023-10-06T21:19:09.3210000-07:00|40022472|Zeromus|00019FA6|11457909||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:09.3650000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11470827|40478540|10000|10000|||100.00|80.10|0.00|0.00|52037|81541|250|10000|||105.20|102.54|0.00|-1.54|00019FAC|0|1| +39|2023-10-06T21:19:09.4120000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +37|2023-10-06T21:19:09.5000000-07:00|40022472|Zeromus|00019FA9|11453490||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:09.5000000-07:00|4002247F|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.65|82.11|0.00|0.00|00019FAD|0|0| +21|2023-10-06T21:19:09.5000000-07:00|40022480|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||117.79|118.44|0.00|0.00|00019FAE|0|0| +21|2023-10-06T21:19:09.5000000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|37050000|4|255C8000|0|0|0|0|0|0|0|0|0|0|0|0|11457909|40478540|10000|10000|||100.00|80.10|0.00|0.00|119719|129071|6800|10000|||109.84|91.51|0.00|-1.51|00019FAF|0|1| +38|2023-10-06T21:19:09.5000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|119719|129071|5800|10000|0||109.84|91.51|0.00|-1.51|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:09.5000000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:19:09.0760000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:19:09.0760000-07:00|Change|40022480||||||||||||| +38|2023-10-06T21:19:09.5440000-07:00|10FF0009|Zewo Negiwo|005A5A18|64334|81177|5871|10000|0||91.91|107.90|0.00|2.86|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:09.5440000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:19:09.1830000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:19:09.1830000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:19:09.6760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95776|129844|10000|10000|0||103.50|82.84|0.00|1.57|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:09.6760000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +261|2023-10-06T21:19:09.2770000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:19:09.7210000-07:00|40022472|Zeromus|00019FA5|11429914||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:09.2770000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:19:09.7650000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|722003|41C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11453490|40478540|10000|10000|||100.00|80.10|0.00|0.00|32494|73814|5050|10000|||119.21|92.76|0.00|-3.01|00019FB0|0|1| +261|2023-10-06T21:19:09.3690000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:19:09.8100000-07:00|10FF0004|Buhojaqe Zijaqe|00019FAB|52037|81541|2250|10000|0||104.30|102.26|0.00|-1.71|1C00|0|0|0| +21|2023-10-06T21:19:09.8100000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11429914|40478540|10000|10000|||100.00|80.10|0.00|0.00|67477|90216|10000|10000|||106.74|95.13|0.00|-1.21|00019FB1|0|1| +21|2023-10-06T21:19:09.8100000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11429914|40478540|10000|10000|||100.00|80.10|0.00|0.00|32494|73814|5050|10000|||119.21|92.09|0.00|-2.11|00019FB2|0|1| +38|2023-10-06T21:19:09.8100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62876|82773|10000|10000|0||95.94|100.26|0.00|2.45|0|0|0|||||||||||||||| +30|2023-10-06T21:19:09.8100000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:19:09.4650000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:19:09.4650000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:19:09.8990000-07:00|40022472|Zeromus|00019FAC|11429764||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:09.9430000-07:00|40022472|Zeromus|00019FAA|11422249||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:09.9430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66685|81809|6200|10000|0||98.05|102.30|0.00|2.36|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:09.9430000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +39|2023-10-06T21:19:09.9870000-07:00|10FF000A|Dukaro Nezikaro|63703|82773|10000|10000|||97.19|100.96|0.00|2.55| +261|2023-10-06T21:19:09.5570000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:19:10.0320000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|38940000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|11422249|40478540|10000|10000|||100.00|80.10|0.00|0.00|95776|129844|10000|10000|||106.19|82.81|0.00|1.57|00019FB3|0|1| +37|2023-10-06T21:19:10.0770000-07:00|40022472|Zeromus|00019FA7|11409937||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:10.0770000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11422249|40478540|10000|10000|||100.00|80.10|0.00|0.00|95776|129844|10000|10000|||106.19|82.81|0.00|1.57|00019FB4|0|1| +38|2023-10-06T21:19:10.0770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52037|81541|2250|10000|0||102.98|101.66|0.00|-1.92|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:10.0770000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +21|2023-10-06T21:19:10.1210000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11422249|40478540|10000|10000|||100.00|80.10|0.00|0.00|66685|81809|6200|10000|||98.83|101.70|0.00|2.13|00019FB5|0|1| +38|2023-10-06T21:19:10.2110000-07:00|10FF0003|Gegehi Gehi|005A5A23|32494|73814|5050|10000|0||119.18|91.22|0.00|-2.28|0|0|0|||||||||| +30|2023-10-06T21:19:10.2110000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +261|2023-10-06T21:19:09.8790000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:19:10.2540000-07:00|40022472|Zeromus|00019FA8|11396722||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:10.2540000-07:00|40022472|Zeromus|00019FAF|11382637||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:10.2540000-07:00|10FF0001|Sesuga Sapisuga|00019FAF|129071||||||106.06|95.00|0.00|-1.85| +21|2023-10-06T21:19:10.2540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11409937|40478540|10000|10000|||100.00|80.10|0.00|0.00|119719|129071|5800|10000|||106.06|95.00|0.00|-1.85|00019FB6|0|1| +31|2023-10-06T21:19:10.2540000-07:00|10FF0001||||| +37|2023-10-06T21:19:10.3430000-07:00|40022472|Zeromus|00019FB2|11382636||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:10.3430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||106.06|95.00|0.00|-1.85|0|0|0|||||||||||||||| +30|2023-10-06T21:19:10.3430000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:19:10.3870000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3BBC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|95776|129844|10000|10000|||107.46|82.81|0.00|-2.38|11409937|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019FB7|0|1| +20|2023-10-06T21:19:10.4330000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|91.91|107.90|0.00|2.86| +21|2023-10-06T21:19:10.4330000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|5AA20000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|11382636|40478540|10000|10000|||100.00|80.10|0.00|0.00|66685|81809|6200|10000|||99.26|101.37|-0.02|2.00|00019FB8|0|1| +261|2023-10-06T21:19:09.9990000-07:00|Change|40022C1B||||||||| +38|2023-10-06T21:19:10.4780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67477|90216|10000|10000|0||103.92|97.67|0.00|-0.42|0|0|0||||||||||||| +30|2023-10-06T21:19:10.4780000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67477|90216|10000|10000|0||103.18|97.77|0.00|-0.69|0|0|0||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|63703|82773|10000|10000|0||99.71|101.63|0.00|2.89|0|0|0|||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0003|Gegehi Gehi|005A5A23|32494|73814|5050|10000|0||119.16|89.25|0.00|-2.89|0|0|0|||||||||| +26|2023-10-06T21:19:10.5240000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52037|81541|2250|10000|0||101.00|100.93|0.00|-1.84|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66685|81809|5900|10000|0||99.26|101.37|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95776|129844|10000|10000|0||108.80|82.80|0.00|2.65|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0009|Zewo Negiwo|005A5A18|64334|81177|5871|10000|0||91.91|107.90|0.00|2.86|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||105.32|96.02|0.00|-2.07|0|0|0|||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:19:10.5240000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E00|66685|81809|5900|10000|||99.26|101.37|0.00|3.11|10FF0009|Zewo Negiwo|0|64334|81177|5871|10000|||91.91|107.90|0.00|2.86| +24|2023-10-06T21:19:10.5240000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E8E|63703|82773|10000|10000|||99.71|101.63|0.00|2.89|10FF0009|Zewo Negiwo|0|64334|81177|5871|10000|||91.91|107.90|0.00|2.86| +24|2023-10-06T21:19:10.5240000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E21|52037|81541|2250|10000|||101.00|100.93|0.00|-1.84|10FF0009|Zewo Negiwo|0|64334|81177|5871|10000|||91.91|107.90|0.00|2.86| +24|2023-10-06T21:19:10.5240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E15|67477|90216|10000|10000|||103.18|97.77|0.00|-0.69|10FF0009|Zewo Negiwo|0|64334|81177|5871|10000|||91.91|107.90|0.00|2.86| +24|2023-10-06T21:19:10.5240000-07:00|10FF0009|Zewo Negiwo|HoT|777|E92|64334|81177|5871|10000|||91.91|107.90|0.00|2.86|10FF0009|Zewo Negiwo|0|64334|81177|5871|10000|||91.91|107.90|0.00|2.86| +24|2023-10-06T21:19:10.5240000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E89|129071|129071|5800|10000|||105.32|96.02|0.00|-2.07|10FF0009|Zewo Negiwo|0|64334|81177|5871|10000|||91.91|107.90|0.00|2.86| +38|2023-10-06T21:19:10.5240000-07:00|10FF0009|Zewo Negiwo|005A5A18|68064|81177|6421|10000|0||91.91|107.90|0.00|2.86|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|71082|90216|10000|10000|0||103.18|97.77|0.00|-0.69|0|0|0||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|70269|81809|5900|10000|0||99.26|101.37|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||105.32|96.02|0.00|-2.07|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55654|81541|2250|10000|0||101.00|100.93|0.00|-1.84|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:10.5240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67429|82773|10000|10000|0||99.71|101.63|0.00|2.89|0|0|0|||||||||||||||| +26|2023-10-06T21:19:10.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:19:10.1170000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:10.1170000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:19:10.5670000-07:00|40022472|Zeromus|00019FB1|11380358||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:10.5670000-07:00|40022C94|Demi-Bahamut|66800|69928|10000|10000|||96.51|103.17|0.00|2.99| +38|2023-10-06T21:19:10.5670000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|-2.14|0|0|0|||| +30|2023-10-06T21:19:10.5670000-07:00|31|Medicated|0.00|10FF0004|Buhojaqe Zijaqe|40022C1B|Ruby Carbuncle|296F|77430|81541| +261|2023-10-06T21:19:10.1170000-07:00|Change|40022C94||||||||| +38|2023-10-06T21:19:10.5670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55654|81541|2250|10000|0||101.00|100.93|0.00|-1.84|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:10.5670000-07:00|31|Medicated|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|296F|81541|81541| +38|2023-10-06T21:19:10.6100000-07:00|40022CAB||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:19:10.6110000-07:00|40022472|Zeromus|00019FB4|11377333||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:10.6110000-07:00|40022CAB||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +03|2023-10-06T21:19:10.2260000-07:00|40022CAB|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.34|99.64|0.00|-0.03| +261|2023-10-06T21:19:10.2260000-07:00|Add|40022CAB||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C81| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C82| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C83| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C84| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C85| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C86| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C87| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C88| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C89| +261|2023-10-06T21:19:10.2260000-07:00|Remove|40022C8A| +37|2023-10-06T21:19:10.6560000-07:00|40022472|Zeromus|00019FB3|11362849||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:10.6560000-07:00|40022472|Zeromus|00019FB5|11362608||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:10.6990000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|17980000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|67429|82773|10000|10000|||99.92|101.65|0.00|2.96|73956|77430|10000|10000|||100.05|98.22|0.00|-1.83|00019FB9|0|1| +261|2023-10-06T21:19:10.2260000-07:00|Change|40022CAB||| +21|2023-10-06T21:19:10.7450000-07:00|40022CA3|Automaton Queen|4078|Arm Punch|40022472|Zeromus|734003|26D40000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|11362608|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79|00019FBA|0|1| +261|2023-10-06T21:19:10.3170000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:19:10.3170000-07:00|Change|40022C1B||||||||| +37|2023-10-06T21:19:10.7890000-07:00|40022472|Zeromus|00019FB6|11360512||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:10.3170000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:19:10.4130000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:19:10.8790000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|16F20000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|11360512|40478540|10000|10000|||100.00|80.10|0.00|0.00|67429|82773|10000|10000|||100.18|101.67|0.00|3.03|00019FBB|0|1| +38|2023-10-06T21:19:10.8790000-07:00|10FF0009|Zewo Negiwo|005A5A18|68064|81177|6421|10000|0||91.91|107.90|0.00|2.86|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:10.8790000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:19:10.9240000-07:00|40022472|Zeromus|00019FB0|11343675||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:10.5130000-07:00|Change|10FF0008||||||||| +20|2023-10-06T21:19:11.0140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.27|102.78|0.00|-0.28| +261|2023-10-06T21:19:10.5130000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:19:10.6320000-07:00|Change|40022C1B||||||||| +37|2023-10-06T21:19:11.0580000-07:00|40022472|Zeromus|00019FB8|11320473||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:10.6320000-07:00|Change|4002247F||||||||| +261|2023-10-06T21:19:10.6320000-07:00|Change|40022480||||||||| +21|2023-10-06T21:19:11.1040000-07:00|4002247F|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.15|82.18|0.00|0.00|00019FBC|0|0| +21|2023-10-06T21:19:11.1040000-07:00|40022480|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.01|112.94|0.00|0.00|00019FBD|0|0| +21|2023-10-06T21:19:11.1040000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1EA50000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|11320473|40478540|10000|10000|||100.00|80.10|0.00|0.00|71082|90216|10000|10000|||100.86|99.30|0.00|-1.18|00019FBE|0|1| +39|2023-10-06T21:19:11.1470000-07:00|40022CA3|Automaton Queen|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79| +21|2023-10-06T21:19:11.1470000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|83E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11320473|40478540|10000|10000|||100.00|80.10|0.00|0.00|67429|82773|10000|10000|||100.18|101.67|0.00|-3.13|00019FBF|0|1| +37|2023-10-06T21:19:11.1920000-07:00|10FF0007|Kehabiqo Febiqo|00019FB7|80484||||||113.25|82.56|0.00|1.71| +37|2023-10-06T21:19:11.2810000-07:00|40022472|Zeromus|00019FBB|11314599||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:10.8520000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:19:11.3690000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|523F0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|11314599|40478540|10000|10000|||100.00|80.10|0.00|0.00|68064|81177|6421|10000|||91.91|107.90|0.00|2.86|00019FC0|0|1| +261|2023-10-06T21:19:11.0790000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:19:11.5030000-07:00|10FF000A|Dukaro Nezikaro|00019FB9|73469||||||100.18|101.67|0.00|-3.13| +37|2023-10-06T21:19:11.5030000-07:00|40022472|Zeromus|00019FBA|11304659||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:11.1840000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:19:11.5480000-07:00|10FF0003|Gegehi Gehi|33232|73814|5250|10000|||119.09|82.96|0.00|-3.13| +261|2023-10-06T21:19:11.2980000-07:00|Change|40022CAB||| +39|2023-10-06T21:19:11.6360000-07:00|10FF0009|Zewo Negiwo|68875|81177|6242|10000|||91.91|107.90|0.00|2.86| +20|2023-10-06T21:19:11.6360000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|119.07|82.31|-0.02|-3.13| +34|2023-10-06T21:19:11.6360000-07:00|40022CAB|Carbuncle|40022CAB|Carbuncle|01| +37|2023-10-06T21:19:11.6810000-07:00|40022472|Zeromus|00019FBF|11302549||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:11.7240000-07:00|10FF0008|Kokosaze Lulusaze|71984|90216|10000|10000|||100.08|99.83|0.00|-1.54| +24|2023-10-06T21:19:11.7700000-07:00|40022472|Zeromus|DoT|0|2226|11302549|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|5800|10000|||99.65|99.30|0.00|-2.96| +38|2023-10-06T21:19:11.7700000-07:00|40022472|Zeromus|005A5A00|11293807|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:19:11.3900000-07:00|Change|10FF0009||||||||||||||||||||| +39|2023-10-06T21:19:11.8600000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6000|10000|||99.65|99.30|0.00|-2.96| +36|2023-10-06T21:19:11.8600000-07:00|4664|3| +37|2023-10-06T21:19:11.9040000-07:00|40022472|Zeromus|00019FBE|11285962||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:11.9040000-07:00|10FF0004|Buhojaqe Zijaqe|56469|81541|2450|10000|||100.57|102.56|0.00|-3.12| +21|2023-10-06T21:19:11.9490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|522B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|11285962|40478540|10000|10000|||100.00|80.10|0.00|0.00|56469|81541|2450|10000|||100.57|102.56|0.00|-3.12|00019FC1|0|1| +39|2023-10-06T21:19:11.9940000-07:00|10FF0007|Kehabiqo Febiqo|81782|129844|10000|10000|||115.93|82.39|0.00|1.63| +39|2023-10-06T21:19:11.9940000-07:00|10FF0006|Wowobora Gogobora|71087|81809|6100|10000|||99.26|101.37|0.00|3.11| +21|2023-10-06T21:19:11.9940000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|4E5A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|11285962|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||99.65|99.30|0.00|3.12|00019FC2|0|1| +38|2023-10-06T21:19:11.9940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6000|10000|0||99.65|99.30|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:11.9940000-07:00|76E|Sword Oath|7.91|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:19:11.5870000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:19:11.5870000-07:00|Change|10FF0006||| +261|2023-10-06T21:19:11.5870000-07:00|Change|40022C1B||||||||| +21|2023-10-06T21:19:12.3050000-07:00|40022CA3|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1EAB0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|11285962|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79|00019FC3|0|1| +261|2023-10-06T21:19:11.9160000-07:00|Change|40022C1B||||||||| +39|2023-10-06T21:19:12.3940000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|1.14| +261|2023-10-06T21:19:12.0310000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:19:12.4840000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|9FFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11285962|40478540|10000|10000|||100.00|80.10|0.00|0.00|81782|129844|10000|10000|||116.25|82.35|0.00|1.70|00019FC4|0|1| +21|2023-10-06T21:19:12.4840000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11285962|40478540|10000|10000|||100.00|80.10|0.00|0.00|71984|90216|10000|10000|||99.90|99.90|0.00|-1.06|00019FC5|0|1| +38|2023-10-06T21:19:12.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81782|129844|10000|10000|0||116.25|82.35|0.00|1.70|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:12.4840000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:19:12.5280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|E4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11285962|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||99.65|99.30|0.00|3.12|00019FC6|0|1| +31|2023-10-06T21:19:12.5280000-07:00|10FF0001||||| +261|2023-10-06T21:19:12.1430000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T21:19:12.2630000-07:00|Change|4002247F||||||||| +261|2023-10-06T21:19:12.2630000-07:00|Change|40022480||||||||| +261|2023-10-06T21:19:12.2630000-07:00|Change|40022C1B||||||||| +37|2023-10-06T21:19:12.6610000-07:00|40022472|Zeromus|00019FC0|11264907||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:12.6610000-07:00|4002247F|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||93.65|82.22|0.00|0.00|00019FC7|0|0| +21|2023-10-06T21:19:12.6610000-07:00|40022480|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.20|107.45|0.00|0.00|00019FC8|0|0| +21|2023-10-06T21:19:12.7050000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|712003|5AFB0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|11264907|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||99.65|99.30|0.00|3.12|00019FC9|0|1| +37|2023-10-06T21:19:12.7500000-07:00|40022472|Zeromus|00019FC1|11243872||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:19:12.8380000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|95.26|105.87|-0.02|1.97| +261|2023-10-06T21:19:12.4530000-07:00|Change|10FF0009||||||||||||||||||||| +21|2023-10-06T21:19:12.9270000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|11243872|40478540|10000|10000|||100.00|80.10|0.00|0.00|71087|81809|6100|10000|||99.19|101.66|0.00|-0.37|00019FCA|0|1| +38|2023-10-06T21:19:12.9270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71087|81809|6100|10000|0||99.19|101.66|0.00|-0.37|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:12.9270000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:19:12.4530000-07:00|Change|40022C1B||||||||| +261|2023-10-06T21:19:12.4530000-07:00|Change|40022CAB||||||||| +38|2023-10-06T21:19:12.9710000-07:00|40022CAF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:19:12.9720000-07:00|40022CAF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +39|2023-10-06T21:19:13.0160000-07:00|10FF000A|Dukaro Nezikaro|74296|82773|10000|10000|||100.18|101.67|0.00|-3.13| +03|2023-10-06T21:19:12.6650000-07:00|40022CAF|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||100.88|103.59|0.00|3.10| +261|2023-10-06T21:19:12.6650000-07:00|Add|40022CAF||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:13.0610000-07:00|40022472|Zeromus|00019FC6|11240214||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:13.0610000-07:00|40022472|Zeromus|00019FC9|11216923||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:13.0610000-07:00|10FF0001|Sesuga Sapisuga|00019FC9|129071|129071|6500|10000|0||99.65|99.30|0.00|3.12|1300|0|0|0| +37|2023-10-06T21:19:13.0610000-07:00|40022472|Zeromus|00019FC3|11209072||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:13.0610000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|754003|28910000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|11243872|40478540|10000|10000|||100.00|80.10|0.00|0.00|33232|73814|5250|10000|||119.07|80.61|0.00|-1.60|00019FCB|0|1| +38|2023-10-06T21:19:13.0610000-07:00|10FF0003|Gegehi Gehi|005A5A23|33232|73814|5050|10000|0||119.07|80.61|0.00|-1.60|0|0|0||||||||||||| +26|2023-10-06T21:19:13.0610000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:19:12.6650000-07:00|Change|40022CAF||||| +21|2023-10-06T21:19:13.1060000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32712003|38730000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|11243872|40478540|10000|10000|||100.00|80.10|0.00|0.00|73469|82773|10000|10000|||100.18|101.67|0.00|-3.13|00019FCC|0|1| +37|2023-10-06T21:19:13.2400000-07:00|40022472|Zeromus|00019FC5|11205178||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:13.2840000-07:00|40022472|Zeromus|00019FC2|11185120||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:13.2840000-07:00|10FF0001|Sesuga Sapisuga|00019FC2|129071|129071|6900|10000|0||99.65|99.30|0.00|3.12|1300|0|0|0| +21|2023-10-06T21:19:13.2840000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11209072|40478540|10000|10000|||100.00|80.10|0.00|0.00|71087|81809|6100|10000|||99.17|101.71|0.00|3.10|00019FCD|0|1| +21|2023-10-06T21:19:13.3280000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|88A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11185120|40478540|10000|10000|||100.00|80.10|0.00|0.00|74296|82773|10000|10000|||100.18|101.67|0.00|-3.13|00019FCE|0|1| +21|2023-10-06T21:19:13.4190000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3AA10000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|81782|129844|10000|10000|||116.28|82.35|0.00|-1.71|11185120|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019FCF|0|1| +21|2023-10-06T21:19:13.4630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11185120|40478540|10000|10000|||100.00|80.10|0.00|0.00|81782|129844|10000|10000|||116.28|82.35|0.00|-1.71|00019FD0|0|1| +38|2023-10-06T21:19:13.4630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71087|81809|6100|10000|0||99.17|101.73|-0.02|3.10|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:19:13.5070000-07:00|40022472|Zeromus|00019FCC|11170669||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:13.1170000-07:00|Change|10FF0001||| +20|2023-10-06T21:19:13.5070000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.59|102.34|0.00|3.04| +261|2023-10-06T21:19:13.1170000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T21:19:13.5530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|71984|90216|10000|10000|0||99.90|99.90|0.00|-1.06|0|0|0||||||||||||| +26|2023-10-06T21:19:13.5530000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:13.5530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74296|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:13.5530000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:19:13.5530000-07:00|10FF0003|Gegehi Gehi|005A5A23|33232|73814|5050|10000|0||119.07|80.62|-0.02|-1.51|0|0|0||||||||||||| +26|2023-10-06T21:19:13.5530000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:13.5530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56469|81541|2050|10000|0||100.59|102.34|0.00|3.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:13.5530000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71087|81809|6100|10000|0||99.14|101.74|0.00|-2.77|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81782|129844|10000|10000|0||116.28|82.35|0.00|-1.71|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF0009|Zewo Negiwo|005A5A18|68875|81177|6242|10000|0||95.57|105.21|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|0||99.65|99.30|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:19:13.5540000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E3C|71087|81809|6100|10000|||99.14|101.74|0.00|-2.77|10FF0009|Zewo Negiwo|0|68875|81177|6242|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:13.5540000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DE6|129071|129071|6900|10000|||99.65|99.30|0.00|3.12|10FF0009|Zewo Negiwo|0|68875|81177|6242|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:13.5540000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|DF3|71984|90216|10000|10000|||99.90|99.90|0.00|-1.55|10FF0009|Zewo Negiwo|0|68875|81177|6242|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:13.5540000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E69|74296|82773|10000|10000|||100.18|101.67|0.00|-3.13|10FF0009|Zewo Negiwo|0|68875|81177|6242|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:13.5540000-07:00|10FF0009|Zewo Negiwo|HoT|777|DED|68875|81177|6242|10000|||95.57|105.21|0.00|2.97|10FF0009|Zewo Negiwo|0|68875|81177|6242|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:13.5540000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E55|56469|81541|2050|10000|||100.59|102.32|-0.02|3.07|10FF0009|Zewo Negiwo|0|68875|81177|6242|10000|||95.57|105.21|0.00|2.97| +38|2023-10-06T21:19:13.5540000-07:00|10FF0009|Zewo Negiwo|005A5A18|72440|81177|6242|10000|0||95.57|105.21|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|75555|90216|10000|10000|0||99.90|99.90|0.00|-1.55|0|0|0||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74731|81809|6100|10000|0||99.14|101.74|0.00|-2.77|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|0||99.65|99.30|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|60138|81541|2050|10000|0||100.59|102.32|-0.02|3.07|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:13.5540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77985|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:13.5540000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:19:13.2380000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T21:19:13.5970000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|39B60000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|11170669|40478540|10000|10000|||100.00|80.10|0.00|0.00|71984|90216|10000|10000|||99.90|99.90|0.00|-1.55|00019FD1|0|1| +37|2023-10-06T21:19:13.6410000-07:00|40022472|Zeromus|00019FC4|11129713||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:13.7750000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|35490000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|11129713|40478540|10000|10000|||100.00|80.10|0.00|0.00|72440|81177|6242|10000|||95.57|105.21|0.00|2.97|00019FD2|0|1| +37|2023-10-06T21:19:13.8200000-07:00|40022472|Zeromus|00019FCD|11129560||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:13.8200000-07:00|40022472|Zeromus|00019FCB|11119175||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:13.4250000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:19:13.8650000-07:00|40022472|Zeromus|00019FCE|11116989||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:13.8650000-07:00|40022CA3|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|1D220000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|11129713|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79|00019FD3|0|1| +38|2023-10-06T21:19:13.8650000-07:00|10FF0009|Zewo Negiwo|005A5A18|72440|81177|5842|10000|0||95.57|105.21|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:13.8650000-07:00|750|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:19:13.9540000-07:00|10FF0006|Wowobora Gogobora|00019FCA|74731|81809|6100|10000|0||98.02|101.83|0.00|-1.81|1B00|0|0|01|01000AA4|0|0|| +38|2023-10-06T21:19:13.9540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74731|81809|6100|10000|0||98.02|101.83|0.00|-1.81|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:19:13.9980000-07:00|40022472|Zeromus|00019FD0|11114006||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:13.6180000-07:00|Change|40022CAF||| +21|2023-10-06T21:19:14.0430000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|554003|2F210000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|11114006|40478540|10000|10000|||100.00|80.10|0.00|0.00|33232|73814|5050|10000|||119.25|80.83|0.00|-0.89|00019FD4|0|1| +38|2023-10-06T21:19:14.0430000-07:00|10FF0003|Gegehi Gehi|005A5A23|33232|73814|4750|10000|0||119.25|80.83|0.00|-0.89|0|0|0|||||||||| +30|2023-10-06T21:19:14.0430000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:19:14.0880000-07:00|40022CA3|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.97|84.31|0.00|-1.79|0|0|0||||||| +26|2023-10-06T21:19:14.0880000-07:00|30|Well Fed|1312.18|10FF0008|Kokosaze Lulusaze|40022CA3|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:19:14.0880000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022CA3|Automaton Queen|01|85668|40478540| +38|2023-10-06T21:19:14.0880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81782|129844|10000|10000|0||116.35|82.32|0.00|-1.29|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:14.0880000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:19:14.1310000-07:00|40022CA3|Automaton Queen|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79| +261|2023-10-06T21:19:13.8080000-07:00|Change|4002247F||||||||| +261|2023-10-06T21:19:13.8080000-07:00|Change|40022480||||||||| +37|2023-10-06T21:19:14.2220000-07:00|10FF0007|Kehabiqo Febiqo|00019FCF|66773||||||116.32|82.32|-0.02|-1.16| +21|2023-10-06T21:19:14.2220000-07:00|4002247F|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.15|82.27|0.00|0.00|00019FD5|0|0| +21|2023-10-06T21:19:14.2220000-07:00|40022480|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.41|101.95|0.00|0.00|00019FD6|0|0| +261|2023-10-06T21:19:13.9250000-07:00|Remove|40022C94| +04|2023-10-06T21:19:13.9250000-07:00|40022C94|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|69928|0|10000|||96.51|103.17|0.00|2.99| +37|2023-10-06T21:19:14.3990000-07:00|40022472|Zeromus|00019FD1|11099232||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:14.4450000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30FB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|11099232|40478540|10000|10000|||100.00|80.10|0.00|0.00|60138|81541|2050|10000|||100.60|102.22|0.00|-3.11|00019FD7|0|1| +21|2023-10-06T21:19:14.4890000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11099232|40478540|10000|10000|||100.00|80.10|0.00|0.00|60138|81541|2050|10000|||100.60|102.22|0.00|-3.11|00019FD8|0|1| +261|2023-10-06T21:19:14.1590000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:19:14.5330000-07:00|10FF0003|Gegehi Gehi|33970|73814|4950|10000|||119.25|80.83|0.00|-1.61| +21|2023-10-06T21:19:14.5330000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|32AA0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|11099232|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||99.65|99.30|0.00|3.12|00019FD9|0|1| +38|2023-10-06T21:19:14.5330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|0||99.65|99.30|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:14.5330000-07:00|76E|Sword Oath|5.37|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:19:14.1590000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:19:14.5780000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|16450000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|77985|82773|10000|10000|||100.18|101.67|0.00|-3.13|73956|77430|10000|10000|||100.05|98.22|0.00|1.89|00019FDA|0|1| +261|2023-10-06T21:19:14.2780000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:19:14.6230000-07:00|40022472|Zeromus|00019FD3|11091774||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:14.6230000-07:00|10FF0009|Zewo Negiwo|73251|81177|6063|10000|||95.57|105.21|0.00|2.97| +39|2023-10-06T21:19:14.7120000-07:00|10FF0008|Kokosaze Lulusaze|76457|90216|10000|10000|||99.90|99.90|0.00|3.14| +24|2023-10-06T21:19:14.7570000-07:00|40022472|Zeromus|DoT|0|1C15|11091774|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6900|10000|||99.65|99.30|0.00|3.12| +21|2023-10-06T21:19:14.7570000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11091774|40478540|10000|10000|||100.00|80.10|0.00|0.00|33970|73814|4950|10000|||119.25|80.83|0.00|-1.61|00019FDB|0|1| +38|2023-10-06T21:19:14.7570000-07:00|40022472|Zeromus|005A5A00|11084585|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:19:14.8020000-07:00|40022472|Zeromus|00019FD4|11072520||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:14.8020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|88E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11091774|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||99.65|99.30|0.00|3.12|00019FDC|0|1| +31|2023-10-06T21:19:14.8020000-07:00|10FF0001||||| +261|2023-10-06T21:19:14.4830000-07:00|Change|10FF0009||| +36|2023-10-06T21:19:14.8460000-07:00|4740|3| +39|2023-10-06T21:19:14.8900000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7100|10000|||99.65|99.30|0.00|3.12| +39|2023-10-06T21:19:14.8900000-07:00|10FF0004|Buhojaqe Zijaqe|60953|81541|1850|10000|||100.60|102.22|0.00|-3.11| +261|2023-10-06T21:19:14.4830000-07:00|Change|10FF0001||| +21|2023-10-06T21:19:14.9360000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|33020000|143E|340000|200004|269B8000|11B|2A8000|0|0|0|0|0|0|0|0|11072520|40478540|10000|10000|||100.00|80.10|0.00|0.00|66773|129844|10000|10000|||116.58|82.13|0.00|2.84|00019FDD|0|1| +261|2023-10-06T21:19:14.5830000-07:00|Change|40022CAB||||||||| +39|2023-10-06T21:19:14.9790000-07:00|10FF0007|Kehabiqo Febiqo|68071|129844|10000|10000|||116.58|82.13|0.00|2.84| +37|2023-10-06T21:19:15.0250000-07:00|40022472|Zeromus|00019FD8|11072361||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:15.0250000-07:00|40022CAF|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|152003|956C0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|11072520|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||100.88|103.59|0.00|3.10|00019FDE|0|1| +39|2023-10-06T21:19:15.0250000-07:00|10FF0006|Wowobora Gogobora|75549|81809|6300|10000|||91.60|100.59|-0.02|-1.63| +37|2023-10-06T21:19:15.0690000-07:00|40022472|Zeromus|00019FD2|11058720||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:15.1590000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11058720|40478540|10000|10000|||100.00|80.10|0.00|0.00|76457|90216|10000|10000|||99.90|99.90|0.00|3.14|00019FDF|0|1| +37|2023-10-06T21:19:15.2480000-07:00|40022472|Zeromus|00019FD7|11046181||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:19:15.2480000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|95.57|105.21|0.00|2.97| +37|2023-10-06T21:19:15.2940000-07:00|40022472|Zeromus|00019FDB|11046180||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:15.2940000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|2F8B0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|11058720|40478540|10000|10000|||100.00|80.10|0.00|0.00|77985|82773|10000|10000|||100.18|101.67|0.00|-3.13|00019FE0|0|1| +37|2023-10-06T21:19:15.3370000-07:00|40022472|Zeromus|00019FDC|11043990||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:15.3820000-07:00|10FF000A|Dukaro Nezikaro|00019FDA|82773||||||100.18|101.67|0.00|-3.13| +39|2023-10-06T21:19:15.3820000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|0.04| +21|2023-10-06T21:19:15.4280000-07:00|40022CA3|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|730003|55870000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|11043990|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79|00019FE1|0|1| +20|2023-10-06T21:19:15.4280000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|90.90|100.60|0.00|-1.34| +21|2023-10-06T21:19:15.5150000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11043990|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|00019FE2|0|1| +261|2023-10-06T21:19:15.1690000-07:00|Change|10FF0004||| +261|2023-10-06T21:19:15.2870000-07:00|Change|10FF0006||||||||||||||||||||| +38|2023-10-06T21:19:15.7380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|0||99.65|99.30|0.00|3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:15.7380000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:19:15.3980000-07:00|Change|4002247F||||||||| +261|2023-10-06T21:19:15.3980000-07:00|Change|40022480||||||||| +21|2023-10-06T21:19:15.7820000-07:00|4002247F|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.64|81.99|0.00|0.00|00019FE3|0|0| +21|2023-10-06T21:19:15.7820000-07:00|40022480|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.63|96.45|0.00|0.00|00019FE4|0|0| +37|2023-10-06T21:19:15.8280000-07:00|40022472|Zeromus|00019FD9|11031020||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:15.8280000-07:00|10FF0001|Sesuga Sapisuga|00019FD9|129071|129071|7500|10000|0||99.65|99.30|0.00|3.12|1300|0|0|0| +37|2023-10-06T21:19:15.8280000-07:00|40022472|Zeromus|00019FE0|11018849||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:15.4940000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:19:15.4940000-07:00|Change|10FF0009||||||||||||| +20|2023-10-06T21:19:15.8720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.60|102.22|0.00|-3.11| +37|2023-10-06T21:19:15.9160000-07:00|40022472|Zeromus|00019FDF|11015877||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:15.5840000-07:00|Change|10FF0001||| +39|2023-10-06T21:19:16.0050000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13| +37|2023-10-06T21:19:16.0490000-07:00|40022472|Zeromus|00019FE2|11013264||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:16.0930000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|49F40000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|11015877|40478540|10000|10000|||100.00|80.10|0.00|0.00|76457|90216|10000|10000|||99.90|99.90|0.00|3.14|00019FE5|0|1| +21|2023-10-06T21:19:16.1830000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|32A10000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|11015877|40478540|10000|10000|||100.00|80.10|0.00|0.00|73251|81177|6063|10000|||95.57|105.21|0.00|2.97|00019FE6|0|1| +21|2023-10-06T21:19:16.1830000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|722003|16910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11015877|40478540|10000|10000|||100.00|80.10|0.00|0.00|33970|73814|4950|10000|||119.25|80.83|0.00|-1.61|00019FE7|0|1| +37|2023-10-06T21:19:16.4490000-07:00|40022472|Zeromus|00019FDD|11000206||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:16.4490000-07:00|10FF0007|Kehabiqo Febiqo|00019FDD|77954||||||118.30|81.28|0.00|2.16| +21|2023-10-06T21:19:16.4490000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|38240000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|68071|129844|10000|10000|||118.30|81.28|0.00|2.16|11013264|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019FE8|0|1| +24|2023-10-06T21:19:16.5390000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DD8|129071|129071|7500|10000|||99.59|99.45|0.00|-0.36|10FF0009|Zewo Negiwo|0|73251|81177|5663|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:16.5390000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|176D|76457|90216|10000|10000|||99.90|99.90|0.00|3.14|10FF0009|Zewo Negiwo|0|73251|81177|5663|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:16.5390000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|1662|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|10FF0009|Zewo Negiwo|0|73251|81177|5663|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:16.5390000-07:00|10FF0009|Zewo Negiwo|HoT|777|166B|73251|81177|5663|10000|||95.57|105.21|0.00|2.97|10FF0009|Zewo Negiwo|0|73251|81177|5663|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:16.5390000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|1779|60953|81541|1850|10000|||100.60|102.22|0.00|-3.11|10FF0009|Zewo Negiwo|0|73251|81177|5663|10000|||95.57|105.21|0.00|2.97| +24|2023-10-06T21:19:16.5390000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DD2|75549|81809|6300|10000|||90.87|100.60|0.00|2.72|10FF0009|Zewo Negiwo|0|73251|81177|5663|10000|||95.57|105.21|0.00|2.97| +21|2023-10-06T21:19:16.5390000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|6A0F|A788000|0|0|0|0|0|0|0|0|0|0|77954|129844|10000|10000|||118.30|81.28|0.00|2.16|77954|129844|10000|10000|||118.30|81.28|0.00|2.16|00019FE9|0|1| +38|2023-10-06T21:19:16.5390000-07:00|10FF0009|Zewo Negiwo|005A5A18|78990|81177|5663|10000|0||95.57|105.21|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:16.5390000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:16.5390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|82454|90216|10000|10000|0||99.90|99.90|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:19:16.5390000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:16.5390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|79087|81809|6300|10000|0||90.87|100.60|0.00|2.72|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:16.5390000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:16.5390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|0||99.59|99.45|0.00|-0.36|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:16.5390000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:16.5390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66962|81541|1850|10000|0||100.60|102.22|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:16.5390000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:16.5390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:16.5390000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:19:16.2800000-07:00|Change|10FF0004||||||||||||| +04|2023-10-06T21:19:16.3720000-07:00|40022CAB|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.63|99.81|0.00|0.71| +261|2023-10-06T21:19:16.3720000-07:00|Remove|40022CAB| +37|2023-10-06T21:19:16.7160000-07:00|40022472|Zeromus|00019FE1|10978311||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:16.7160000-07:00|40022CA3|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.97|84.31|0.00|-1.79|0|0|0|||| +30|2023-10-06T21:19:16.7160000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022CA3|Automaton Queen|01|85668|40478540| +37|2023-10-06T21:19:16.8060000-07:00|40022472|Zeromus|00019FE7|10972534||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:16.8060000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4CE70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10978311|40478540|10000|10000|||100.00|80.10|0.00|0.00|66962|81541|1850|10000|||100.60|102.22|0.00|-3.11|00019FEA|0|1| +21|2023-10-06T21:19:16.8500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10972534|40478540|10000|10000|||100.00|80.10|0.00|0.00|77954|129844|10000|10000|||118.30|81.28|0.00|2.16|00019FEB|0|1| +37|2023-10-06T21:19:16.8940000-07:00|40022472|Zeromus|00019FE5|10953602||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:16.5700000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:19:16.9390000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|724003|178F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10972534|40478540|10000|10000|||100.00|80.10|0.00|0.00|33970|73814|4950|10000|||119.25|80.83|-0.02|-1.61|00019FEC|0|1| +37|2023-10-06T21:19:16.9830000-07:00|40022472|Zeromus|00019FDE|10915350||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:17.0280000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|716003|51670000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10953602|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||99.59|99.45|0.00|3.12|00019FED|0|1| +38|2023-10-06T21:19:17.0280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|0||99.59|99.45|0.00|3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:17.0280000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:19:17.0720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AD70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10915350|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||99.59|99.45|0.00|3.12|00019FEE|0|1| +31|2023-10-06T21:19:17.0720000-07:00|10FF0001||||| +37|2023-10-06T21:19:17.1160000-07:00|10FF0007|Kehabiqo Febiqo|00019FE9|77954|129844|10000|10000|7||118.30|81.28|0.00|2.16|1500|0|0|03|02000A76|0190|41000000|||||||||| +26|2023-10-06T21:19:17.1160000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T21:19:17.1160000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:19:17.1160000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:19:17.1160000-07:00|40022CA3|Automaton Queen|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79| +38|2023-10-06T21:19:17.1160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77954|129844|10000|10000|7||118.30|81.28|0.00|2.16|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:19:17.2500000-07:00|10FF0007|Kehabiqo Febiqo|00019FE8|63582||||||118.30|81.28|0.00|2.16| +37|2023-10-06T21:19:17.3830000-07:00|40022472|Zeromus|00019FEB|10910561||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:17.3830000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16650000|4|25B08000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|10915350|40478540|10000|10000|||100.00|80.10|0.00|0.00|63582|129844|10000|10000|||118.30|81.28|0.00|2.16|00019FEF|0|1| +38|2023-10-06T21:19:17.4280000-07:00|40022CA3|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.97|84.31|0.00|-1.79|0|0|0||||||| +26|2023-10-06T21:19:17.4280000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022CA3|Automaton Queen|01|85668|40478540| +37|2023-10-06T21:19:17.4720000-07:00|40022472|Zeromus|00019FE6|10897600||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:17.4720000-07:00|40022CA3|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|730003|61560000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|10915350|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79|00019FF0|0|1| +37|2023-10-06T21:19:17.5170000-07:00|40022472|Zeromus|00019FEC|10891569||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:17.5170000-07:00|10FF0003|Gegehi Gehi|34708|73814|5150|10000|||119.20|80.86|0.00|-1.39| +21|2023-10-06T21:19:17.5170000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|17C30000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|10897600|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|00019FF1|0|1| +261|2023-10-06T21:19:17.2370000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:19:17.3410000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:19:17.6060000-07:00|40022472|Zeromus|00019FEE|10888794||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:17.6060000-07:00|40022472|Zeromus|00019FEA|10869107||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:17.6060000-07:00|10FF0009|Zewo Negiwo|79801|81177|5884|10000|||95.57|105.21|0.00|2.97| +39|2023-10-06T21:19:17.6950000-07:00|10FF0008|Kokosaze Lulusaze|83356|90216|10000|10000|||99.90|99.90|0.00|3.14| +20|2023-10-06T21:19:17.6950000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|95.57|105.21|0.00|2.97| +21|2023-10-06T21:19:17.6950000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|154003|68010000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|10891569|40478540|10000|10000|||100.00|80.10|0.00|0.00|79087|81809|6300|10000|||90.87|100.60|0.00|2.72|00019FF2|0|1| +21|2023-10-06T21:19:17.6950000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|89A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10891569|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|00019FF3|0|1| +261|2023-10-06T21:19:17.3410000-07:00|Change|10FF0006||||||||||||||||| +24|2023-10-06T21:19:17.7850000-07:00|40022472|Zeromus|DoT|0|2684|10869107|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7500|10000|||99.59|99.45|0.00|3.12| +38|2023-10-06T21:19:17.7850000-07:00|40022472|Zeromus|005A5A00|10859247|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:19:17.8300000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|91C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10859247|40478540|10000|10000|||100.00|80.10|0.00|0.00|83356|90216|10000|10000|||99.90|99.90|0.00|3.14|00019FF4|0|1| +39|2023-10-06T21:19:17.8740000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7700|10000|||99.59|99.45|0.00|3.12| +39|2023-10-06T21:19:17.8740000-07:00|10FF0004|Buhojaqe Zijaqe|67777|81541|1650|10000|||100.60|102.22|0.00|-3.11| +36|2023-10-06T21:19:17.8740000-07:00|481C|3| +261|2023-10-06T21:19:17.5440000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:17.6380000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:19:17.9180000-07:00|40022472|Zeromus|00019FEF|10853514||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:17.9180000-07:00|10FF0007|Kehabiqo Febiqo|00019FEF|73230||||||118.27|81.30|0.00|-1.23| +37|2023-10-06T21:19:17.9180000-07:00|40022472|Zeromus|00019FF1|10847431||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:17.9180000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|15330000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|34708|73814|5150|10000|||117.54|82.07|0.00|-1.02|73956|77430|10000|10000|||100.05|98.22|0.00|3.11|00019FF5|0|1| +39|2023-10-06T21:19:17.9620000-07:00|10FF0007|Kehabiqo Febiqo|74528|129844|10000|10000|||118.27|81.30|0.00|-1.23| +39|2023-10-06T21:19:18.0080000-07:00|10FF0006|Wowobora Gogobora|79905|81809|6200|10000|||90.87|100.60|0.00|2.72| +261|2023-10-06T21:19:17.9400000-07:00|Change|10FF0006||| +37|2023-10-06T21:19:18.2290000-07:00|40022472|Zeromus|00019FF3|10845229||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:18.2290000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10847431|40478540|10000|10000|||100.00|80.10|0.00|0.00|34708|73814|5150|10000|||116.67|83.24|0.00|-0.91|00019FF6|0|1| +20|2023-10-06T21:19:18.2740000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.60|102.22|0.00|-3.11| +37|2023-10-06T21:19:18.3180000-07:00|40022472|Zeromus|00019FF2|10818604||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:18.3180000-07:00|40022472|Zeromus|00019FED|10797765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:18.3180000-07:00|10FF0001|Sesuga Sapisuga|00019FED|129071|129071|8100|10000|0||99.59|99.45|0.00|3.12|1300|0|0|0| +39|2023-10-06T21:19:18.4070000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|2.56| +20|2023-10-06T21:19:18.4070000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|90.87|100.60|0.00|2.72| +261|2023-10-06T21:19:18.1700000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:19:18.5430000-07:00|10FF0009|Zewo Negiwo|005A5A18|79801|81177|5884|10000|0||95.57|105.21|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:18.5430000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:18.5430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|83356|90216|10000|10000|0||99.90|99.90|0.00|3.14|0|0|0|||||||||| +30|2023-10-06T21:19:18.5430000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:18.5430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|79905|81809|6200|10000|0||90.87|100.60|0.00|2.72|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:18.5430000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:18.5430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||99.59|99.45|0.00|3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:18.5430000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:18.5430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|67777|81541|1650|10000|0||100.60|102.22|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:18.5430000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:18.5430000-07:00|10FF0003|Gegehi Gehi|005A5A23|34708|73814|5150|10000|0||116.60|84.71|0.00|-0.75|0|0|0|||||||||| +30|2023-10-06T21:19:18.5430000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:18.5430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T21:19:18.5430000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:19:18.5870000-07:00|40022472|Zeromus|00019FF4|10795433||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:18.5870000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|201B0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|10797765|40478540|10000|10000|||100.00|80.10|0.00|0.00|83356|90216|10000|10000|||99.90|99.90|0.00|3.14|00019FF7|0|1| +38|2023-10-06T21:19:18.5870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|74528|129844|10000|10000|7||115.87|83.32|0.00|-0.88|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:18.5870000-07:00|751|Temperance|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +261|2023-10-06T21:19:18.2930000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:19:18.6320000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31FA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|10797765|40478540|10000|10000|||100.00|80.10|0.00|0.00|79801|81177|5884|10000|||95.57|105.21|0.00|2.97|00019FF8|0|1| +37|2023-10-06T21:19:18.7210000-07:00|10FF0003|Gegehi Gehi|00019FF5|40135||||||116.16|86.23|0.00|-0.61| +38|2023-10-06T21:19:18.7210000-07:00|40022472|Zeromus|005A5A00|10795433|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:19:18.7210000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:19:18.7660000-07:00|40022472|Zeromus|00019FF6|10795432||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:18.5750000-07:00|Change|10FF0001||| +261|2023-10-06T21:19:18.5750000-07:00|Change|10FF0009||||||||||||||| +39|2023-10-06T21:19:18.9880000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13| +261|2023-10-06T21:19:18.6660000-07:00|Change|40022CAF||||| +38|2023-10-06T21:19:19.0770000-07:00|40022CB5||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:19:19.0770000-07:00|40022CB5||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:19:19.2100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|54070000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10795432|40478540|10000|10000|||100.00|80.10|0.00|0.00|67777|81541|1650|10000|||100.60|102.22|0.00|-3.11|00019FF9|0|1| +261|2023-10-06T21:19:18.8930000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:19:19.0050000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:19:19.3440000-07:00|40022472|Zeromus|00019FF7|10787213||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:19.3440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10795432|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||99.59|99.45|0.00|3.12|00019FFA|0|1| +31|2023-10-06T21:19:19.3440000-07:00|10FF0001||||| +22|2023-10-06T21:19:19.3900000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|37460000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|79801|81177|5484|10000|||95.58|105.22|0.00|2.71|79801|81177|5484|10000|||95.58|105.22|0.00|2.71|00019FFB|0|7| +22|2023-10-06T21:19:19.3900000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|752003|6DDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10795432|40478540|10000|10000|||100.00|80.10|0.00|0.00|79801|81177|5484|10000|||95.58|105.22|0.00|2.71|00019FFB|1|7| +22|2023-10-06T21:19:19.3900000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|35DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|79801|81177|5484|10000|||95.58|105.22|0.00|2.71|00019FFB|2|7| +22|2023-10-06T21:19:19.3900000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|57AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67777|81541|1250|10000|||100.60|102.22|0.00|-3.11|79801|81177|5484|10000|||95.58|105.22|0.00|2.71|00019FFB|3|7| +22|2023-10-06T21:19:19.3900000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|37430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83356|90216|10000|10000|||99.90|99.90|0.00|3.14|79801|81177|5484|10000|||95.58|105.22|0.00|2.71|00019FFB|4|7| +22|2023-10-06T21:19:19.3900000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|4|38320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79905|81809|6200|10000|||90.87|100.60|0.00|2.72|79801|81177|5484|10000|||95.58|105.22|0.00|2.71|00019FFB|5|7| +22|2023-10-06T21:19:19.3900000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|200004|57E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8100|10000|||99.59|99.45|0.00|3.12|79801|81177|5484|10000|||95.58|105.22|0.00|2.71|00019FFB|6|7| +261|2023-10-06T21:19:19.1210000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:19:19.4350000-07:00|40022472|Zeromus|00019FF0|10762295||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:19.4350000-07:00|40022CA3|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.97|84.31|0.00|-1.79|0|0|0|||| +30|2023-10-06T21:19:19.4350000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022CA3|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:19:19.1210000-07:00|Add|40022CB5||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:19:19.1210000-07:00|40022CB5|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||91.59|99.02|0.00|-0.42| +261|2023-10-06T21:19:19.1210000-07:00|Change|40022CB5||| +21|2023-10-06T21:19:19.4790000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|C690000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|74528|129844|10000|10000|||111.46|87.00|0.00|-0.87|10787213|40478540|10000|10000|||100.00|80.10|0.00|0.00|00019FFC|0|1| +24|2023-10-06T21:19:19.5240000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E10|129071|129071|8100|10000|||99.59|99.45|0.00|3.12|10FF0009|Zewo Negiwo|0|79801|81177|5484|10000|||95.61|105.22|0.00|2.32| +24|2023-10-06T21:19:19.5240000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|DEC|83356|90216|10000|10000|||99.90|99.90|0.00|3.14|10FF0009|Zewo Negiwo|0|79801|81177|5484|10000|||95.61|105.22|0.00|2.32| +24|2023-10-06T21:19:19.5240000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E02|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|10FF0009|Zewo Negiwo|0|79801|81177|5484|10000|||95.61|105.22|0.00|2.32| +24|2023-10-06T21:19:19.5240000-07:00|10FF0009|Zewo Negiwo|HoT|777|E68|79801|81177|5484|10000|||95.61|105.22|0.00|2.32|10FF0009|Zewo Negiwo|0|79801|81177|5484|10000|||95.61|105.22|0.00|2.32| +24|2023-10-06T21:19:19.5240000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|1638|67777|81541|1250|10000|||100.60|102.22|0.00|-3.11|10FF0009|Zewo Negiwo|0|79801|81177|5484|10000|||95.61|105.22|0.00|2.32| +24|2023-10-06T21:19:19.5240000-07:00|10FF0006|Wowobora Gogobora|HoT|777|1712|79905|81809|6200|10000|||90.87|100.60|0.00|2.72|10FF0009|Zewo Negiwo|0|79801|81177|5484|10000|||95.61|105.22|0.00|2.32| +21|2023-10-06T21:19:19.5240000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|29430000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|10787213|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||99.59|99.45|0.00|3.12|00019FFD|0|1| +38|2023-10-06T21:19:19.5240000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5484|10000|0||95.61|105.22|0.00|2.32|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:19.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:19.5240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|86920|90216|10000|10000|0||99.90|99.90|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:19:19.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:19.5240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6200|10000|0||90.87|100.60|0.00|2.72|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:19.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:19.5240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||99.59|99.45|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:19.5240000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:19:19.5240000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:19:19.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:19.5240000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73465|81541|1250|10000|0||100.60|102.22|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:19.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:19.5240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:19.5240000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +21|2023-10-06T21:19:19.5680000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10762295|40478540|10000|10000|||100.00|80.10|0.00|0.00|73465|81541|1250|10000|||100.60|102.22|0.00|-3.11|00019FFE|0|1| +38|2023-10-06T21:19:19.5680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||99.59|99.45|0.00|3.12|0|0|0||||||||||||||||||| +261|2023-10-06T21:19:19.3390000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:19:19.7450000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32712003|3B2C0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|10762295|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|00019FFF|0|1| +21|2023-10-06T21:19:19.8350000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|216F0000|A3E|340000|200004|3C3D8000|11B|258000|0|0|0|0|0|0|0|0|10762295|40478540|10000|10000|||100.00|80.10|0.00|0.00|74528|129844|10000|10000|||109.91|88.29|0.00|-0.87|0001A000|0|1| +37|2023-10-06T21:19:19.8800000-07:00|40022472|Zeromus|00019FFA|10759474||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:19.8800000-07:00|10FF0001|Sesuga Sapisuga|00019FFA|129071|129071|8100|10000|0||99.59|99.45|0.00|3.12|1300|0|0|02|0200076E|03|C1F00000|||||| +21|2023-10-06T21:19:19.8800000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A8A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10762295|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A001|0|1| +37|2023-10-06T21:19:19.9240000-07:00|40022472|Zeromus|00019FF8|10746680||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:20.0130000-07:00|40022472|Zeromus|00019FF9|10725169||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:19.8620000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:19:20.0580000-07:00|10FF0009|Zewo Negiwo|00019FFB|81177|81177|5984|10000|0||97.53|103.98|0.00|2.19|1800|0|0|0| +37|2023-10-06T21:19:20.1020000-07:00|40022472|Zeromus|00019FFD|10714606||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:20.1020000-07:00|10FF0001|Sesuga Sapisuga|00019FFD|129071|129071|8100|10000|0||99.59|99.45|0.00|3.12|1300|0|0|02|0200076E|03|41F00000|||||| +37|2023-10-06T21:19:20.1020000-07:00|40022472|Zeromus|00019FFE|10714354||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:19:20.1020000-07:00|40022CB5|Carbuncle|40022CB5|Carbuncle|01| +38|2023-10-06T21:19:20.1020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||99.59|99.45|0.00|3.12|0|0|0||||||||||||||||||| +37|2023-10-06T21:19:20.1470000-07:00|40022472|Zeromus|00019FFF|10699206||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:20.1470000-07:00|40022CA3|Automaton Queen|82193|85668|10000|10000|||118.97|84.31|0.00|-1.79| +37|2023-10-06T21:19:20.1900000-07:00|40022472|Zeromus|00019FFB|10671081||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:19.8620000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:19:19.9730000-07:00|Change|40022CB5||| +261|2023-10-06T21:19:20.0830000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:19:20.2350000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10671081|40478540|10000|10000|||100.00|80.10|0.00|0.00|74528|129844|10000|10000|||107.86|90.00|0.00|-2.04|0001A002|0|1| +37|2023-10-06T21:19:20.2800000-07:00|10FF0007|Kehabiqo Febiqo|00019FFC|71351|129844|10000|10000|0||107.86|90.00|0.00|-2.04|1500|0|0|01|05000000|0|0|| +38|2023-10-06T21:19:20.2800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|71351|129844|10000|10000|0||107.86|90.00|0.00|-2.04|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:20.2800000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +20|2023-10-06T21:19:20.3240000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|97.88|103.72|0.00|2.32| +37|2023-10-06T21:19:20.4130000-07:00|40022472|Zeromus|0001A001|10668383||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:20.4580000-07:00|40022472|Zeromus|0001A000|10659824||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:20.4580000-07:00|10FF0007|Kehabiqo Febiqo|0001A000|86772||||||107.40|90.39|0.00|-1.66| +37|2023-10-06T21:19:20.4580000-07:00|10FF0004|Buhojaqe Zijaqe|00019FFB|81541||||||100.60|102.22|0.00|-3.11| +21|2023-10-06T21:19:20.5030000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8EC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10659824|40478540|10000|10000|||100.00|80.10|0.00|0.00|86920|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A003|0|1| +39|2023-10-06T21:19:20.5480000-07:00|10FF0003|Gegehi Gehi|40873|73814|5350|10000|||109.16|95.25|0.00|-0.73| +37|2023-10-06T21:19:20.5920000-07:00|10FF0008|Kokosaze Lulusaze|00019FFB|90216||||||99.90|99.90|0.00|3.14| +39|2023-10-06T21:19:20.6370000-07:00|10FF0009|Zewo Negiwo|81177|81177|6205|10000|||98.62|103.17|0.00|2.73| +21|2023-10-06T21:19:20.6810000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|154003|681D0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|10659824|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6200|10000|||90.87|100.60|0.00|2.72|0001A004|0|1| +20|2023-10-06T21:19:20.6810000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.60|102.22|0.00|-3.11| +261|2023-10-06T21:19:20.4130000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T21:19:20.4130000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T21:19:20.7250000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.90|99.90|0.00|3.14| +37|2023-10-06T21:19:20.7690000-07:00|40022472|Zeromus|0001A002|10656774||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:20.7700000-07:00|40022472|Zeromus|DoT|0|1F7A|10659824|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1250|10000|||100.60|102.22|0.00|-3.11| +38|2023-10-06T21:19:20.7700000-07:00|40022472|Zeromus|005A5A00|10648716|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:19:20.8590000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8300|10000|||99.94|99.25|0.00|2.74| +36|2023-10-06T21:19:20.8590000-07:00|48F8|3| +261|2023-10-06T21:19:20.5080000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:19:20.9030000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1450|10000|||100.60|102.22|0.00|-3.11| +39|2023-10-06T21:19:20.9930000-07:00|10FF0007|Kehabiqo Febiqo|88070|129844|10000|10000|||105.71|93.31|0.00|-0.99| +39|2023-10-06T21:19:20.9930000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6100|10000|||90.87|100.60|0.00|2.72| +21|2023-10-06T21:19:21.0390000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10648716|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5900|10000|||90.87|100.60|0.00|2.72|0001A005|0|1| +261|2023-10-06T21:19:20.8180000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:19:21.0840000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|3A080000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|10648716|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A006|0|1| +38|2023-10-06T21:19:21.0840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88070|129844|10000|10000|0||105.73|94.16|0.00|-0.93|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:21.0840000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:19:20.8180000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:19:20.9340000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:19:21.2620000-07:00|40022472|Zeromus|0001A003|10646432||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:21.2620000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|54E90000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|10648716|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|6205|10000|||99.11|102.80|0.00|3.10|0001A007|0|1| +37|2023-10-06T21:19:21.3060000-07:00|40022472|Zeromus|0001A004|10619779||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:21.3950000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|2.88| +21|2023-10-06T21:19:21.3950000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|156003|89240000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|10619779|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6100|10000|||90.87|100.60|0.00|2.72|0001A008|0|1| +38|2023-10-06T21:19:21.3950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6100|10000|0||90.87|100.60|0.00|2.72|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:21.3950000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +20|2023-10-06T21:19:21.4400000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|106.04|98.80|-0.02|-0.73| +21|2023-10-06T21:19:21.4840000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|21C30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|40873|73814|5350|10000|||106.04|98.80|-0.02|-0.73|73956|77430|10000|10000|||100.05|98.22|0.00|2.88|0001A009|0|1| +37|2023-10-06T21:19:21.5740000-07:00|40022472|Zeromus|0001A005|10619636||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:21.6190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10619636|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||100.34|98.74|0.00|2.92|0001A00A|0|1| +21|2023-10-06T21:19:21.6190000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32670000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10619636|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1450|10000|||100.60|102.22|0.00|-3.11|0001A00B|0|1| +31|2023-10-06T21:19:21.6190000-07:00|10FF0001||||| +261|2023-10-06T21:19:21.4440000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:19:21.4440000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:19:21.8860000-07:00|40022472|Zeromus|0001A006|10604780||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:21.8860000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42710003|2C630000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|10619636|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A00C|0|1| +39|2023-10-06T21:19:21.9750000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13| +261|2023-10-06T21:19:21.6370000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:19:21.7330000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T21:19:22.0650000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10604780|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A00D|0|1| +37|2023-10-06T21:19:22.1530000-07:00|40022472|Zeromus|0001A00A|10602985||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:21.9440000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:19:22.1970000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|2B500000|4|2AC48000|0|0|0|0|0|0|0|0|0|0|0|0|10602985|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||100.34|98.74|0.00|-3.12|0001A00E|0|1| +38|2023-10-06T21:19:22.1970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7300|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:22.1970000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:19:22.2430000-07:00|40022472|Zeromus|0001A008|10567877||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:22.2870000-07:00|10FF0003|Gegehi Gehi|0001A009|49516||||||105.30|99.63|0.00|-2.88| +21|2023-10-06T21:19:22.3310000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|4E010000|143E|340000|4|254F8000|4|17AC8000|11B|2A8000|0|0|0|0|0|0|10602985|40478540|10000|10000|||100.00|80.10|0.00|0.00|88070|129844|10000|10000|||100.88|99.29|0.00|-0.59|0001A00F|0|1| +261|2023-10-06T21:19:22.0550000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:19:22.4210000-07:00|40022472|Zeromus|0001A00B|10554974||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:22.5110000-07:00|40022472|Zeromus|0001A00C|10543611||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:22.5110000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|39480000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|88070|129844|10000|10000|||100.34|100.26|0.00|-3.12|10567877|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A010|0|1| +261|2023-10-06T21:19:22.1730000-07:00|Change|40022CA3||||||||| +37|2023-10-06T21:19:22.5560000-07:00|40022472|Zeromus|0001A007|10521874||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:22.5560000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DFC|81809|81809|6100|10000|||92.06|98.90|0.00|2.53|10FF0009|Zewo Negiwo|0|81177|81177|5805|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:22.5560000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DDC|88070|129844|10000|10000|||100.23|100.45|0.00|-3.12|10FF0009|Zewo Negiwo|0|81177|81177|5805|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:22.5560000-07:00|10FF0009|Zewo Negiwo|HoT|777|E45|81177|81177|5805|10000|||99.11|102.80|0.00|3.10|10FF0009|Zewo Negiwo|0|81177|81177|5805|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:22.5560000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E4B|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|5805|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:22.5560000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|161D|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|5805|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:22.5560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|1625|81541|81541|1050|10000|||100.60|102.19|0.00|-3.14|10FF0009|Zewo Negiwo|0|81177|81177|5805|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:22.5560000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E73|129071|129071|7300|10000|||100.34|98.74|0.00|-3.12|10FF0009|Zewo Negiwo|0|81177|81177|5805|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:22.5560000-07:00|10FF0003|Gegehi Gehi|HoT|777|E8B|49516|73814|5350|10000|||105.30|99.63|0.00|-2.88|10FF0009|Zewo Negiwo|0|81177|81177|5805|10000|||99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:22.5560000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6100|10000|||92.06|98.90|0.00|2.53|81809|81809|6100|10000|||92.06|98.90|0.00|2.53|0001A011|0|1| +38|2023-10-06T21:19:22.5560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91618|129844|10000|10000|0||100.23|100.45|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:22.5560000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:19:22.5560000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5805|10000|0||99.11|102.80|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:22.5560000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:22.5560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.90|99.90|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:19:22.5560000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:22.5560000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6100|10000|0||92.06|98.90|0.00|2.53|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:22.5560000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:22.5560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7300|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:22.5560000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:22.5560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1050|10000|0||100.60|102.19|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:22.5560000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:22.5560000-07:00|10FF0003|Gegehi Gehi|005A5A23|53239|73814|5350|10000|0||105.30|99.63|0.00|-2.88|0|0|0|||||||||| +26|2023-10-06T21:19:22.5560000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:22.5560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:22.5560000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:19:22.5990000-07:00|40022472|Zeromus|0001A00D|10518486||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:22.6880000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|754003|32160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10518486|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A012|0|1| +20|2023-10-06T21:19:22.7320000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:22.8660000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|756003|42B00000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|10518486|40478540|10000|10000|||100.00|80.10|0.00|0.00|53239|73814|5350|10000|||105.30|99.63|0.00|-2.88|0001A013|0|1| +38|2023-10-06T21:19:22.8660000-07:00|10FF0003|Gegehi Gehi|005A5A23|53239|73814|5150|10000|0||105.30|99.63|0.00|-2.88|0|0|0||||||||||||| +26|2023-10-06T21:19:22.8660000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:19:22.9550000-07:00|40022472|Zeromus|0001A00E|10507398||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:19:22.6380000-07:00|40022CAF|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||100.88|103.59|0.00|3.10| +261|2023-10-06T21:19:22.6380000-07:00|Remove|40022CAF| +20|2023-10-06T21:19:23.0890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.60|101.75|0.00|3.12| +261|2023-10-06T21:19:22.7520000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:19:22.7520000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:19:23.1780000-07:00|10FF0006|Wowobora Gogobora|0001A011|81809|81809|6100|10000|0||95.43|99.45|0.00|1.40|1B00|0|0|01|04B4|0|41A80000|| +26|2023-10-06T21:19:23.1780000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:19:23.1780000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10507398|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A014|0|1| +21|2023-10-06T21:19:23.1780000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10507398|40478540|10000|10000|||100.00|80.10|0.00|0.00|53239|73814|5150|10000|||105.30|99.63|0.00|-2.88|0001A015|0|1| +261|2023-10-06T21:19:22.8680000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:19:22.8680000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:19:23.3110000-07:00|10FF0007|Kehabiqo Febiqo|0001A010|76954||||||99.21|100.25|0.00|-2.91| +37|2023-10-06T21:19:23.3110000-07:00|40022472|Zeromus|0001A012|10494576||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:23.5330000-07:00|10FF0003|Gegehi Gehi|53977|73814|5350|10000|||105.30|99.64|0.00|-2.58| +21|2023-10-06T21:19:23.5780000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3ACE0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|10494576|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A016|0|1| +37|2023-10-06T21:19:23.6230000-07:00|40022472|Zeromus|0001A013|10477504||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:23.6230000-07:00|10FF0009|Zewo Negiwo|81177|81177|6026|10000|||99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:23.6230000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10477504|40478540|10000|10000|||100.00|80.10|0.00|0.00|76954|129844|10000|10000|||99.61|99.93|-0.02|-3.09|0001A017|0|1| +21|2023-10-06T21:19:23.6670000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|316B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|10477504|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|6026|10000|||99.11|102.80|0.00|3.10|0001A018|0|1| +37|2023-10-06T21:19:23.7120000-07:00|40022472|Zeromus|0001A015|10477503||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:23.7120000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.90|99.90|0.00|3.14| +24|2023-10-06T21:19:23.7570000-07:00|40022472|Zeromus|DoT|0|1EF9|10477503|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1050|10000|||100.60|101.70|0.00|-3.11| +38|2023-10-06T21:19:23.7570000-07:00|40022472|Zeromus|005A5A00|10469574|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:19:23.8470000-07:00|40022472|Zeromus|0001A00F|10449605||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:23.8470000-07:00|10FF0007|Kehabiqo Febiqo|0001A00F|92565||||||99.58|99.91|0.00|-3.10| +36|2023-10-06T21:19:23.8470000-07:00|49D4|3| +39|2023-10-06T21:19:23.8920000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7500|10000|||100.34|98.74|0.00|-3.12| +39|2023-10-06T21:19:23.8920000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1250|10000|||100.60|101.70|0.00|-3.11| +21|2023-10-06T21:19:23.8920000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|150003|436A0000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|10449605|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6100|10000|||99.00|101.41|0.00|0.77|0001A019|0|1| +21|2023-10-06T21:19:23.8920000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|AA40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10449605|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7300|10000|||100.34|98.74|0.00|-3.12|0001A01A|0|1| +21|2023-10-06T21:19:23.8920000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|321F0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|10449605|40478540|10000|10000|||100.00|80.10|0.00|0.00|53977|73814|5350|10000|||105.33|100.20|0.00|-0.62|0001A01B|0|1| +38|2023-10-06T21:19:23.8920000-07:00|10FF0003|Gegehi Gehi|005A5A23|53977|73814|5050|10000|0||105.33|100.20|0.00|-0.62|0|0|0|||||||||||||||| +30|2023-10-06T21:19:23.8920000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:19:23.8920000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +31|2023-10-06T21:19:23.8920000-07:00|10FF0001||||| +261|2023-10-06T21:19:23.5820000-07:00|Change|10FF0001||| +37|2023-10-06T21:19:23.9360000-07:00|40022472|Zeromus|0001A014|10446741||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:23.9810000-07:00|10FF0007|Kehabiqo Febiqo|93863|129844|10000|10000|||99.53|99.89|0.00|-3.11| +261|2023-10-06T21:19:23.7720000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:19:23.7720000-07:00|Change|10FF0004||||||| +39|2023-10-06T21:19:24.0260000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6300|10000|||99.14|101.48|0.00|3.10| +21|2023-10-06T21:19:24.0260000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|301E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10446741|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1250|10000|||100.60|101.70|0.00|-3.11|0001A01C|0|1| +21|2023-10-06T21:19:24.0260000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18890000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|10446741|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A01D|0|1| +37|2023-10-06T21:19:24.1580000-07:00|40022472|Zeromus|0001A017|10443733||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:23.8880000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:19:23.8880000-07:00|Change|40022CB5||||||||| +261|2023-10-06T21:19:23.8880000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:19:24.2020000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10443733|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6300|10000|||99.16|101.48|-0.01|3.10|0001A01E|0|1| +21|2023-10-06T21:19:24.2470000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AE10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10443733|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A01F|0|1| +37|2023-10-06T21:19:24.3810000-07:00|40022472|Zeromus|0001A016|10428679||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:24.3810000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +37|2023-10-06T21:19:24.4260000-07:00|40022472|Zeromus|0001A01A|10425955||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:24.4260000-07:00|40022472|Zeromus|0001A01D|10419674||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:24.6490000-07:00|40022472|Zeromus|0001A019|10402416||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:24.6490000-07:00|40022472|Zeromus|0001A01B|10389585||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:24.6490000-07:00|10FF0003|Gegehi Gehi|0001A01B|53977|73814|5050|10000|0||105.52|103.63|0.00|-1.26|2300|0|0|01|040004D3|0|41F00000|| +38|2023-10-06T21:19:24.6490000-07:00|10FF0003|Gegehi Gehi|005A5A23|53977|73814|5050|10000|0||105.52|103.63|0.00|-1.26|0|0|0|||||||||||||||| +21|2023-10-06T21:19:24.6940000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|289A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10419674|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||100.34|98.74|0.00|-3.12|0001A020|0|1| +21|2023-10-06T21:19:24.6940000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10419674|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|850|10000|||100.60|101.52|0.00|3.12|0001A021|0|1| +38|2023-10-06T21:19:24.6940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:24.6940000-07:00|76E|Sword Oath|25.36|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T21:19:24.7380000-07:00|40022472|Zeromus|0001A01E|10389440||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:24.7820000-07:00|40022472|Zeromus|0001A01F|10386655||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:24.7820000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16590000|4|25C58000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|10419674|40478540|10000|10000|||100.00|80.10|0.00|0.00|93863|129844|10000|10000|||99.50|99.87|0.00|-3.12|0001A022|0|1| +37|2023-10-06T21:19:24.8270000-07:00|40022472|Zeromus|0001A01C|10374337||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:24.9610000-07:00|40022472|Zeromus|0001A018|10361686||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:25.0050000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13| +39|2023-10-06T21:19:25.0500000-07:00|40022CB5|Carbuncle|77698|77698|10000|10000|||97.35|102.36|0.00|0.71| +38|2023-10-06T21:19:25.0950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|93863|129844|10000|10000|0||99.51|99.87|-0.02|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:25.0950000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +261|2023-10-06T21:19:24.7340000-07:00|Change|40022C1B||||||||| +20|2023-10-06T21:19:25.1380000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.11|102.80|0.00|3.10| +261|2023-10-06T21:19:24.7340000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:19:25.2280000-07:00|40022472|Zeromus|0001A021|10361530||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:24.8490000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:19:25.3170000-07:00|40022472|Zeromus|0001A022|10355809||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:25.3170000-07:00|10FF0007|Kehabiqo Febiqo|0001A022|103532||||||99.56|99.87|0.00|-3.14| +21|2023-10-06T21:19:25.3170000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|177F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|93863|129844|10000|10000|||99.56|99.87|0.00|-3.14|73956|77430|10000|10000|||100.05|98.22|0.00|-1.90|0001A023|0|1| +261|2023-10-06T21:19:24.9670000-07:00|Change|40022C1B||||||||| +20|2023-10-06T21:19:25.4960000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.60|101.09|0.00|3.06| +38|2023-10-06T21:19:25.4960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6850|10000|0||99.17|101.49|0.00|3.10|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:19:25.0840000-07:00|Change|10FF0006||||||| +24|2023-10-06T21:19:25.5400000-07:00|10FF0006|Wowobora Gogobora|HoT|777|173C|81809|81809|6300|10000|||99.17|101.49|0.00|3.10|10FF0009|Zewo Negiwo|0|81177|81177|5626|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:25.5400000-07:00|10FF0009|Zewo Negiwo|HoT|777|E55|81177|81177|5626|10000|||99.11|102.80|0.00|3.10|10FF0009|Zewo Negiwo|0|81177|81177|5626|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:25.5400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E4A|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|5626|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:25.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E48|103532|129844|10000|10000|||99.68|99.53|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|5626|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:25.5400000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E04|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|5626|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:25.5400000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E30|81541|81541|850|10000|||100.60|101.09|0.00|3.06|10FF0009|Zewo Negiwo|0|81177|81177|5626|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:25.5410000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E46|129071|129071|7500|10000|||100.34|98.74|0.00|-3.12|10FF0009|Zewo Negiwo|0|81177|81177|5626|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:25.5410000-07:00|10FF0003|Gegehi Gehi|HoT|777|172D|53977|73814|5050|10000|||101.03|103.60|-0.01|3.11|10FF0009|Zewo Negiwo|0|81177|81177|5626|10000|||99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:25.5410000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3FC50000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|103532|129844|10000|10000|||99.68|99.53|0.00|-3.13|10355809|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A024|0|1| +38|2023-10-06T21:19:25.5410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107188|129844|10000|10000|0||99.68|99.53|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:25.5410000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:19:25.5410000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5626|10000|0||99.11|102.80|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:25.5410000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:25.5410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.90|99.90|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:19:25.5410000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:25.5410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6850|10000|0||99.17|101.49|0.00|3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:25.5410000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:25.5410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:25.5410000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:25.5410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|850|10000|0||100.60|101.09|0.00|3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:25.5410000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:25.5410000-07:00|10FF0003|Gegehi Gehi|005A5A23|59910|73814|5050|10000|0||101.00|103.59|0.00|3.10|0|0|0|||||||||||||||| +26|2023-10-06T21:19:25.5410000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:25.5410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:25.5410000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:19:25.2860000-07:00|Change|40022C1B||||||||| +21|2023-10-06T21:19:25.8530000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|93E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10355809|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A025|0|1| +37|2023-10-06T21:19:25.9860000-07:00|40022472|Zeromus|0001A020|10345415||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:25.9860000-07:00|10FF0001|Sesuga Sapisuga|0001A020|129071|129071|7900|10000|0||100.34|98.74|0.00|-3.12|1300|0|0|0| +261|2023-10-06T21:19:25.5810000-07:00|Change|10FF0001||| +261|2023-10-06T21:19:25.6710000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:19:26.0760000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|756003|66A40000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|10345415|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5626|10000|||99.11|102.80|0.00|3.10|0001A026|0|1| +21|2023-10-06T21:19:26.0760000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|724003|263B0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|10345415|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A027|0|1| +37|2023-10-06T21:19:26.1200000-07:00|10FF0007|Kehabiqo Febiqo|0001A023|113203||||||99.84|99.05|0.00|-3.12| +21|2023-10-06T21:19:26.1200000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A028|0|1| +38|2023-10-06T21:19:26.1200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:26.1200000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:19:26.1650000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10345415|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||100.34|98.74|0.00|-3.12|0001A029|0|1| +31|2023-10-06T21:19:26.1650000-07:00|10FF0001||||| +261|2023-10-06T21:19:25.8740000-07:00|Change|10FF0009||||||||||||||| +20|2023-10-06T21:19:26.3000000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|101.00|103.59|0.00|3.10| +37|2023-10-06T21:19:26.3440000-07:00|10FF0007|Kehabiqo Febiqo|0001A024|96878||||||99.84|99.05|0.00|-3.12| +21|2023-10-06T21:19:26.3440000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|10345415|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6850|10000|||99.17|101.49|0.00|3.10|0001A02A|0|1| +38|2023-10-06T21:19:26.3440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6850|10000|0||99.17|101.49|0.00|3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:26.3440000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:19:25.8740000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T21:19:25.8740000-07:00|Change|40022CB5||||||||| +04|2023-10-06T21:19:25.8740000-07:00|40022CA3|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||118.97|84.31|0.00|-1.79| +261|2023-10-06T21:19:25.8740000-07:00|Remove|40022CA3| +38|2023-10-06T21:19:26.3880000-07:00|40022CBC||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:19:26.3880000-07:00|40022CBC||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:19:26.4320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33C80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10345415|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|850|10000|||100.60|101.09|0.00|-3.11|0001A02B|0|1| +21|2023-10-06T21:19:26.4320000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|AED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10345415|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A02C|0|1| +39|2023-10-06T21:19:26.5210000-07:00|10FF0003|Gegehi Gehi|60648|73814|5250|10000|||101.00|103.59|0.00|3.12| +37|2023-10-06T21:19:26.6100000-07:00|40022472|Zeromus|0001A025|10343049||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:26.6100000-07:00|10FF0009|Zewo Negiwo|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:26.6550000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A02D|0|1| +38|2023-10-06T21:19:26.6550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:26.6550000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +03|2023-10-06T21:19:26.1970000-07:00|40022CBC|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||100.86|103.33|0.00|3.10| +261|2023-10-06T21:19:26.1970000-07:00|Add|40022CBC||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:26.6990000-07:00|40022472|Zeromus|0001A029|10341269||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:26.6990000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.90|99.90|0.00|3.14| +261|2023-10-06T21:19:26.2940000-07:00|Change|40022CBC||||| +24|2023-10-06T21:19:26.7440000-07:00|40022472|Zeromus|DoT|0|1DDD|10343049|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|450|10000|||100.60|101.09|0.00|-3.11| +38|2023-10-06T21:19:26.7440000-07:00|40022472|Zeromus|005A5A00|10333624|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:19:26.8330000-07:00|40022472|Zeromus|0001A027|10323837||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:26.3920000-07:00|Change|10FF0003||||||| +39|2023-10-06T21:19:26.8780000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||100.34|98.74|0.00|-3.12| +39|2023-10-06T21:19:26.8780000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|650|10000|||100.60|101.09|0.00|-3.11| +36|2023-10-06T21:19:26.8790000-07:00|4AB0|3| +37|2023-10-06T21:19:26.9680000-07:00|40022472|Zeromus|0001A02C|10321040||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:26.9680000-07:00|10FF0007|Kehabiqo Febiqo|98176|129844|10000|10000|||99.84|99.05|0.00|-3.12| +39|2023-10-06T21:19:27.0120000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7050|10000|||99.17|101.49|0.00|3.10| +21|2023-10-06T21:19:27.0120000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10323837|40478540|10000|10000|||100.00|80.10|0.00|0.00|96878|129844|10000|10000|||99.84|99.05|0.00|-3.12|0001A02E|0|1| +261|2023-10-06T21:19:26.6020000-07:00|Change|10FF0006||| +261|2023-10-06T21:19:26.6020000-07:00|Change|10FF0001||| +21|2023-10-06T21:19:27.1440000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A02F|0|1| +38|2023-10-06T21:19:27.1440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:27.1440000-07:00|1F0|Mudra|4.98|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +261|2023-10-06T21:19:26.7140000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T21:19:27.1900000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|29F10000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10321040|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||100.34|98.74|0.00|-3.12|0001A030|0|1| +38|2023-10-06T21:19:27.1900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:27.1900000-07:00|76E|Sword Oath|22.87|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:19:27.2340000-07:00|40022472|Zeromus|0001A02B|10307784||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:27.2340000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|38C00000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|10321040|40478540|10000|10000|||100.00|80.10|0.00|0.00|98176|129844|10000|10000|||99.84|99.05|0.00|-3.12|0001A031|0|1| +261|2023-10-06T21:19:26.9530000-07:00|Change|10FF0009||| +37|2023-10-06T21:19:27.3660000-07:00|40022472|Zeromus|0001A026|10281508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:27.3660000-07:00|10FF0006|Wowobora Gogobora|0001A02A|81809|81809|7050|10000|0||99.17|101.49|0.00|3.10|1B00|0|0|01|01000AA5|0|0|| +21|2023-10-06T21:19:27.3660000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10307784|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7050|10000|||99.17|101.49|0.00|3.10|0001A032|0|1| +38|2023-10-06T21:19:27.3660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7050|10000|0||99.17|101.49|0.00|3.10|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:19:26.9530000-07:00|Change|40022CBC||| +39|2023-10-06T21:19:27.4100000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-2.61| +37|2023-10-06T21:19:27.5430000-07:00|40022472|Zeromus|0001A02E|10278498||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:19:27.5880000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:27.6330000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|650003|38950000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|10278498|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A033|0|1| +38|2023-10-06T21:19:27.6330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +30|2023-10-06T21:19:27.6330000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +26|2023-10-06T21:19:27.6330000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +21|2023-10-06T21:19:27.7220000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|454003|2A150000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|10278498|40478540|10000|10000|||100.00|80.10|0.00|0.00|60648|73814|5250|10000|||101.00|103.59|0.00|-3.10|0001A034|0|1| +38|2023-10-06T21:19:27.7220000-07:00|10FF0003|Gegehi Gehi|005A5A23|60648|73814|5050|10000|0||101.00|103.59|0.00|-3.10|0|0|0||||||||||||| +26|2023-10-06T21:19:27.7220000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:19:27.7220000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:19:27.8560000-07:00|40022472|Zeromus|0001A031|10263970||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:27.4430000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:19:27.9000000-07:00|40022472|Zeromus|0001A032|10263715||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:19:27.9000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.60|101.09|0.00|-3.11| +39|2023-10-06T21:19:27.9890000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13| +21|2023-10-06T21:19:28.1230000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10263715|40478540|10000|10000|||100.00|80.10|0.00|0.00|60648|73814|5050|10000|||101.00|103.59|0.00|-3.10|0001A035|0|1| +261|2023-10-06T21:19:27.7230000-07:00|Change|10FF0004||||||||||||| +38|2023-10-06T21:19:28.2570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +261|2023-10-06T21:19:27.8390000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:19:27.9490000-07:00|Change|40022CB5||| +21|2023-10-06T21:19:28.4340000-07:00|40022CBC|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|350003|5F020000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|10263715|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||100.86|103.33|0.00|3.10|0001A036|0|1| +21|2023-10-06T21:19:28.4340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10263715|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||100.34|98.74|0.00|-3.12|0001A037|0|1| +31|2023-10-06T21:19:28.4340000-07:00|10FF0001||||| +37|2023-10-06T21:19:28.4790000-07:00|40022472|Zeromus|0001A030|10252978||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:28.4790000-07:00|10FF0001|Sesuga Sapisuga|0001A030|129071|129071|8500|10000|0||100.34|98.74|0.00|-3.12|1300|0|0|0| +38|2023-10-06T21:19:28.4790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7600|10000|0||99.30|102.25|0.00|0.41|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:19:28.5250000-07:00|40022472|Zeromus|0001A034|10242205||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:28.5250000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E60|81809|81809|7050|10000|||99.30|102.25|0.00|0.41|10FF0009|Zewo Negiwo|0|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:28.5250000-07:00|10FF0009|Zewo Negiwo|HoT|777|E98|81177|81177|5447|10000|||99.11|102.80|0.00|3.10|10FF0009|Zewo Negiwo|0|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:28.5250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|DE3|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:28.5250000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|168F|98176|129844|10000|10000|||99.84|99.05|0.00|3.13|10FF0009|Zewo Negiwo|0|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:28.5250000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|EA9|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|10FF0009|Zewo Negiwo|0|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:28.5250000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E0A|81541|81541|650|10000|||100.60|101.09|0.00|-3.11|10FF0009|Zewo Negiwo|0|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:28.5250000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E23|129071|129071|8100|10000|||100.34|98.74|0.00|-3.12|10FF0009|Zewo Negiwo|0|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +24|2023-10-06T21:19:28.5250000-07:00|10FF0003|Gegehi Gehi|HoT|777|16DA|60648|73814|5050|10000|||101.00|103.59|0.00|-3.10|10FF0009|Zewo Negiwo|0|81177|81177|5447|10000|||99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:28.5250000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|754003|429E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|10263715|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5447|10000|||99.11|102.80|0.00|3.10|0001A038|0|1| +21|2023-10-06T21:19:28.5250000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10263715|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A039|0|1| +38|2023-10-06T21:19:28.5250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103951|129844|10000|10000|0||99.84|99.05|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:28.5250000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +261|2023-10-06T21:19:28.0630000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:19:28.5250000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5047|10000|0||99.11|102.80|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:28.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:28.5250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.90|99.90|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:19:28.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:28.5250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7600|10000|0||99.30|102.25|0.00|0.41|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:28.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:28.5250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:28.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:28.5250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|650|10000|0||100.60|101.09|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:28.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:28.5250000-07:00|10FF0003|Gegehi Gehi|005A5A23|66498|73814|5050|10000|0||101.00|103.59|0.00|-3.10|0|0|0||||||||||||| +261|2023-10-06T21:19:28.0630000-07:00|Change|10FF0001||| +26|2023-10-06T21:19:28.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:28.5250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:19:28.5250000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +21|2023-10-06T21:19:28.5680000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5C830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10263715|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A03A|0|1| +21|2023-10-06T21:19:28.5680000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3FB10000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|98176|129844|10000|10000|||99.84|99.05|0.00|3.13|10263715|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A03B|0|1| +37|2023-10-06T21:19:28.6130000-07:00|40022472|Zeromus|0001A033|10227720||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:28.6130000-07:00|10FF000A|Dukaro Nezikaro|0001A033|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|1E00|0|0|01|030001FB|0|41A00000|| +21|2023-10-06T21:19:28.6130000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10242205|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A03C|0|1| +38|2023-10-06T21:19:28.6130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||| +37|2023-10-06T21:19:28.6580000-07:00|40022472|Zeromus|0001A035|10227719||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:28.7460000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|26FC0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|10227719|40478540|10000|10000|||100.00|80.10|0.00|0.00|66498|73814|5050|10000|||101.00|103.59|0.00|-3.10|0001A03D|0|1| +38|2023-10-06T21:19:28.7460000-07:00|10FF0003|Gegehi Gehi|005A5A23|66498|73814|4750|10000|0||101.00|103.59|0.00|-3.10|0|0|0|||||||||||||||| +30|2023-10-06T21:19:28.7460000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:19:28.7460000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:19:28.8350000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4CCA0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10227719|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|650|10000|||100.60|101.09|0.00|-3.11|0001A03E|0|1| +261|2023-10-06T21:19:28.3430000-07:00|Change|10FF0003||| +20|2023-10-06T21:19:28.8790000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|99.32|102.34|0.00|0.30| +37|2023-10-06T21:19:28.9680000-07:00|40022472|Zeromus|0001A037|10224864||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:29.0130000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2E940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10227719|40478540|10000|10000|||100.00|80.10|0.00|0.00|103951|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A03F|0|1| +261|2023-10-06T21:19:28.5340000-07:00|Change|10FF0006||||||||||||||||||||| +38|2023-10-06T21:19:29.0590000-07:00|40022472|Zeromus|005A5A00|10224864|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:19:29.0590000-07:00|74F|Dia|0.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +38|2023-10-06T21:19:29.1030000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5047|10000|0||99.11|102.80|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:29.1030000-07:00|777|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:19:29.1480000-07:00|40022472|Zeromus|0001A03C|10222046||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:29.1480000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|16A30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|103951|129844|10000|10000|||99.84|99.05|0.00|3.13|73956|77430|10000|10000|||100.05|98.22|0.00|-2.12|0001A040|0|1| +261|2023-10-06T21:19:28.7610000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:19:29.2820000-07:00|40022472|Zeromus|0001A039|10219823||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:28.8780000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:19:29.3270000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A041|0|1| +38|2023-10-06T21:19:29.3270000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:29.3270000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:19:29.3720000-07:00|10FF0007|Kehabiqo Febiqo|0001A03B|87646||||||99.84|99.05|0.00|3.13| +261|2023-10-06T21:19:28.8780000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:19:28.9920000-07:00|Remove|40022CA5| +37|2023-10-06T21:19:29.5060000-07:00|40022472|Zeromus|0001A03D|10209843||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:29.5060000-07:00|10FF0003|Gegehi Gehi|0001A03D|66498|73814|4750|10000|0||101.00|103.59|0.00|-3.10|2300|0|0|01|040004D2|0|41F00000|| +38|2023-10-06T21:19:29.5060000-07:00|10FF0003|Gegehi Gehi|005A5A23|66498|73814|4750|10000|0||101.00|103.59|0.00|-3.10|0|0|0|||||||||||||||| +39|2023-10-06T21:19:29.5500000-07:00|10FF0003|Gegehi Gehi|67236|73814|4950|10000|||101.00|103.59|0.00|-3.10| +37|2023-10-06T21:19:29.6390000-07:00|40022472|Zeromus|0001A03F|10197919||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:29.6390000-07:00|40022472|Zeromus|0001A03E|10178261||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:19:29.6390000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:29.6390000-07:00|10FF0009|Zewo Negiwo|81177|81177|5268|10000|||99.11|102.80|0.00|3.10| +261|2023-10-06T21:19:29.1940000-07:00|Change|40022472||||||||| +21|2023-10-06T21:19:29.6840000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F714003|3BD20000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|10209843|40478540|10000|10000|||100.00|80.10|0.00|0.00|87646|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A042|0|1| +21|2023-10-06T21:19:29.6840000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|29B00000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10209843|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8500|10000|||100.34|98.74|0.00|-3.12|0001A043|0|1| +38|2023-10-06T21:19:29.6840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87646|129844|10000|10000|0||99.84|99.05|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:29.6840000-07:00|A75|Surging Tempest|37.82|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:19:29.6840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:29.6840000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:19:29.7280000-07:00|40022472|Zeromus|0001A03A|10154578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:29.7280000-07:00|40022472|Zeromus|0001A036|10130256||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:29.7280000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.90|99.90|0.00|3.14| +24|2023-10-06T21:19:29.7730000-07:00|40022472|Zeromus|DoT|0|D62|10178261|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|250|10000|||100.60|101.09|0.00|-3.11| +21|2023-10-06T21:19:29.7730000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10178261|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|250|10000|||100.60|101.09|0.00|-3.11|0001A044|0|1| +38|2023-10-06T21:19:29.7730000-07:00|40022472|Zeromus|005A5A00|10126830|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:19:29.8170000-07:00|40022472|Zeromus|0001A038|10109776||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:29.8620000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8700|10000|||100.34|98.74|0.00|-3.12| +36|2023-10-06T21:19:29.8620000-07:00|4B8C|3| +261|2023-10-06T21:19:29.3860000-07:00|Change|10FF0001||| +261|2023-10-06T21:19:29.3860000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:19:29.9070000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|450|10000|||100.60|101.09|0.00|-3.11| +37|2023-10-06T21:19:29.9510000-07:00|10FF0007|Kehabiqo Febiqo|0001A040|93441||||||99.84|99.05|0.00|3.13| +39|2023-10-06T21:19:29.9970000-07:00|10FF0007|Kehabiqo Febiqo|94739|129844|10000|10000|||99.84|99.05|0.00|3.13| +39|2023-10-06T21:19:29.9970000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7800|10000|||99.32|102.34|0.00|3.11| +21|2023-10-06T21:19:29.9970000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|752003|10960000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|10109776|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5268|10000|||99.11|102.80|0.00|3.10|0001A045|0|1| +261|2023-10-06T21:19:29.6960000-07:00|Change|10FF0004||| +261|2023-10-06T21:19:29.8230000-07:00|Change|10FF0006||||||| +21|2023-10-06T21:19:30.2190000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2D7B0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|10109776|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A046|0|1| +37|2023-10-06T21:19:30.3080000-07:00|40022472|Zeromus|0001A044|10109622||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:19:29.9380000-07:00|40022CB5|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||97.52|102.53|0.00|0.65| +37|2023-10-06T21:19:30.3080000-07:00|10FF000A|Dukaro Nezikaro|0001A041|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|1E00|0|0|01|050001F1|0|41700000|| +21|2023-10-06T21:19:30.3080000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|10109776|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|450|10000|||100.60|101.09|0.00|-3.11|0001A047|0|1| +38|2023-10-06T21:19:30.3080000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0||||||||||||||||||| +261|2023-10-06T21:19:29.9380000-07:00|Change|10FF0009||| +261|2023-10-06T21:19:29.9380000-07:00|Remove|40022CB5| +39|2023-10-06T21:19:30.3970000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25| +21|2023-10-06T21:19:30.3970000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10109622|40478540|10000|10000|||100.00|80.10|0.00|0.00|94739|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A048|0|1| +21|2023-10-06T21:19:30.4410000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|724003|10DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10109622|40478540|10000|10000|||100.00|80.10|0.00|0.00|67236|73814|4950|10000|||100.91|102.71|0.00|-3.04|0001A049|0|1| +37|2023-10-06T21:19:30.6180000-07:00|40022472|Zeromus|0001A046|10097979||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:30.7080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10097979|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||100.34|98.74|0.00|-3.12|0001A04A|0|1| +31|2023-10-06T21:19:30.7080000-07:00|10FF0001||||| +21|2023-10-06T21:19:30.7960000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10097979|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A04B|0|1| +37|2023-10-06T21:19:30.9300000-07:00|40022472|Zeromus|0001A048|10095091||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:30.9740000-07:00|40022472|Zeromus|0001A043|10084419||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:30.9740000-07:00|10FF0001|Sesuga Sapisuga|0001A043|129071|129071|9100|10000|0||100.34|98.74|0.00|-3.12|1300|0|0|0| +37|2023-10-06T21:19:30.9740000-07:00|40022472|Zeromus|0001A047|10084419|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:19:30.9740000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +39|2023-10-06T21:19:30.9740000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13| +261|2023-10-06T21:19:30.4400000-07:00|Change|10FF0001||| +21|2023-10-06T21:19:31.0190000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19714003|34EA0000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|10084419|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A04C|0|1| +38|2023-10-06T21:19:31.0190000-07:00|40022472|Zeromus|005A5A00|10084419|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T21:19:31.0190000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:19:31.0190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:31.0190000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:19:31.0640000-07:00|40022472|Zeromus|0001A049|10080105|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0CB6|0|C1700000|| +21|2023-10-06T21:19:31.1080000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|48090000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|10080105|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A04D|0|1| +21|2023-10-06T21:19:31.1970000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|130C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10080105|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A04E|0|1| +21|2023-10-06T21:19:31.1970000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|720003|137A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10080105|40478540|10000|10000|||100.00|80.10|0.00|0.00|67236|73814|4950|10000|||100.80|100.58|0.00|-3.10|0001A04F|0|1| +261|2023-10-06T21:19:30.7700000-07:00|Change|10FF0004||| +37|2023-10-06T21:19:31.2430000-07:00|40022472|Zeromus|0001A04A|10078457|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0CB6|0|C1700000|| +38|2023-10-06T21:19:31.2430000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|-2.41|0|0|0||||||| +26|2023-10-06T21:19:31.2430000-07:00|7AC|Summon Order II|30.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:19:31.2430000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|50|10000|||100.60|101.09|0.00|-3.11|81541|81541|50|10000|||100.60|101.09|0.00|-3.11|0001A050|0|1| +37|2023-10-06T21:19:31.2870000-07:00|40022472|Zeromus|0001A045|10074211|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|0CB6|0|C1700000|||||| +26|2023-10-06T21:19:31.2870000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:19:31.3310000-07:00|40022472|Zeromus|0001A042|10058897|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0CB6|0|C1700000|| +37|2023-10-06T21:19:31.3310000-07:00|40022472|Zeromus|0001A04B|10056277|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0CB6|0|C1700000|| +22|2023-10-06T21:19:31.3310000-07:00|40022C1B|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9100|10000|||100.34|98.74|0.00|-3.12|73956|77430|10000|10000|||100.05|98.22|0.00|-2.78|0001A051|0|8| +22|2023-10-06T21:19:31.3310000-07:00|40022C1B|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|94739|129844|10000|10000|||99.84|99.05|0.00|3.13|73956|77430|10000|10000|||100.05|98.22|0.00|-2.78|0001A051|1|8| +22|2023-10-06T21:19:31.3310000-07:00|40022C1B|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|73956|77430|10000|10000|||100.05|98.22|0.00|-2.78|0001A051|2|8| +22|2023-10-06T21:19:31.3310000-07:00|40022C1B|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|67236|73814|4950|10000|||100.79|100.57|0.00|-3.10|73956|77430|10000|10000|||100.05|98.22|0.00|-2.78|0001A051|3|8| +22|2023-10-06T21:19:31.3310000-07:00|40022C1B|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|50|10000|||100.60|101.09|0.00|-3.11|73956|77430|10000|10000|||100.05|98.22|0.00|-2.78|0001A051|4|8| +22|2023-10-06T21:19:31.3310000-07:00|40022C1B|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|73956|77430|10000|10000|||100.05|98.22|0.00|-2.78|0001A051|5|8| +22|2023-10-06T21:19:31.3310000-07:00|40022C1B|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|7800|10000|||99.32|102.34|0.00|3.11|73956|77430|10000|10000|||100.05|98.22|0.00|-2.78|0001A051|6|8| +22|2023-10-06T21:19:31.3310000-07:00|40022C1B|Ruby Carbuncle|325|Fey Illumination|10FF0009|Zewo Negiwo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|4868|10000|||99.11|102.80|0.00|3.10|73956|77430|10000|10000|||100.05|98.22|0.00|-2.78|0001A051|7|8| +21|2023-10-06T21:19:31.3310000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|354003|53D10000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|10074211|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7800|10000|||99.32|102.34|0.00|3.11|0001A052|0|1| +38|2023-10-06T21:19:31.3310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7800|10000|0||99.32|102.34|0.00|3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:31.3310000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:19:30.8880000-07:00|Change|10FF0006||||||||||||| +38|2023-10-06T21:19:31.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8350|10000|0||99.32|102.34|0.00|3.11|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:19:31.5990000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10056277|40478540|10000|10000|||100.00|80.10|0.00|0.00|67236|73814|4950|10000|||100.79|100.57|-0.02|-3.10|0001A053|0|1| +37|2023-10-06T21:19:31.7770000-07:00|40022472|Zeromus|0001A04F|10051291|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0CB6|0|C1700000|| +37|2023-10-06T21:19:31.8210000-07:00|40022472|Zeromus|0001A04C|10037745|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0CB6|0|41700000|| +38|2023-10-06T21:19:31.8210000-07:00|40022472|Zeromus|005A5A00|10037745|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:19:31.9100000-07:00|40022472|Zeromus|0001A04D|10019304||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:31.9540000-07:00|40022472|Zeromus|0001A04E|10014428||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:19:31.9540000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|100.79|100.57|0.00|-3.10| +261|2023-10-06T21:19:31.4910000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:19:32.1320000-07:00|10FF0001|Sesuga Sapisuga|0001A051|129071|129071|9100|10000|0||100.34|98.74|0.00|-3.12|1300|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T21:19:32.1320000-07:00|13D|Fey Illumination|20.00|40022C1B|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:19:32.1320000-07:00|40022472|Zeromus|0001A053|10014427||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:32.1320000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15780000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|10014428|40478540|10000|10000|||100.00|80.10|0.00|0.00|94739|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A054|0|1| +21|2023-10-06T21:19:32.2210000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|13D30000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|10014427|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9100|10000|||100.34|98.74|0.00|-3.12|0001A055|0|1| +37|2023-10-06T21:19:32.2660000-07:00|10FF0007|Kehabiqo Febiqo|0001A051|94739|129844|10000|10000|0||99.84|99.05|0.00|3.13|1501|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T21:19:32.2660000-07:00|13D|Fey Illumination|20.00|40022C1B|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +261|2023-10-06T21:19:31.8200000-07:00|Change|10FF0006||| +24|2023-10-06T21:19:32.3540000-07:00|40022472|Zeromus|DoT|A92|4F9|10014427|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|8350|10000|||99.32|102.34|0.00|3.11| +37|2023-10-06T21:19:32.3540000-07:00|40022472|Zeromus|0001A052|9991697||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:32.3540000-07:00|10FF0006|Wowobora Gogobora|0001A052|81809|81809|8350|10000|0||99.32|102.34|0.00|3.11|1B00|0|0|01|01000A92|0|41700000|| +26|2023-10-06T21:19:32.3540000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:19:32.3540000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|356003|4BAC0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|10014427|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8350|10000|||99.32|102.34|0.00|3.11|0001A056|0|1| +21|2023-10-06T21:19:32.3540000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A057|0|1| +38|2023-10-06T21:19:32.3540000-07:00|40022472|Zeromus|005A5A00|9991697|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:19:32.3540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:32.3540000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +37|2023-10-06T21:19:32.3980000-07:00|10FF0008|Kokosaze Lulusaze|0001A051|90216|90216|10000|10000|0||99.90|99.90|0.00|3.14|1F02|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:19:32.3980000-07:00|13D|Fey Illumination|20.00|40022C1B|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +20|2023-10-06T21:19:32.3980000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.11|102.80|0.00|3.10| +261|2023-10-06T21:19:31.9370000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:19:31.9370000-07:00|Change|40022CBC||||| +38|2023-10-06T21:19:32.4860000-07:00|40022CC7||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:19:32.4860000-07:00|40022CC7||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:19:32.5300000-07:00|10FF0003|Gegehi Gehi|0001A051|67236|73814|4950|10000|0||100.79|100.57|0.00|-3.10|2303|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:19:32.5300000-07:00|13D|Fey Illumination|20.00|40022C1B|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +39|2023-10-06T21:19:32.5300000-07:00|10FF0003|Gegehi Gehi|67974|73814|5150|10000|||100.79|100.57|0.00|-3.10| +261|2023-10-06T21:19:32.0520000-07:00|Change|10FF0003||||| +39|2023-10-06T21:19:32.6180000-07:00|10FF0009|Zewo Negiwo|81177|81177|5089|10000|||99.11|102.80|0.00|3.10| +37|2023-10-06T21:19:32.6630000-07:00|40022472|Zeromus|0001A054|9986201||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:32.6630000-07:00|10FF0004|Buhojaqe Zijaqe|0001A051|81541|81541|50|10000|0||100.39|100.69|0.00|-2.69|1C04|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:19:32.6630000-07:00|13D|Fey Illumination|20.00|40022C1B|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T21:19:32.1500000-07:00|Add|40022CC6||||||||||||||||||||||||| +261|2023-10-06T21:19:32.1500000-07:00|Add|40022CC7||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:19:32.1500000-07:00|40022CC7|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.38|100.62|0.00|-0.03| +261|2023-10-06T21:19:32.2460000-07:00|Change|40022CC7||| +39|2023-10-06T21:19:32.7080000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.90|99.90|0.00|3.14| +24|2023-10-06T21:19:32.7520000-07:00|40022472|Zeromus|DoT|0|17E2|9986201|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|50|10000|||100.39|100.69|0.00|-2.69| +38|2023-10-06T21:19:32.7520000-07:00|40022472|Zeromus|005A5A00|9980087|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:19:32.7970000-07:00|10FF000A|Dukaro Nezikaro|0001A051|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|1E05|0|0|01|0600013D|0|41A00000|| +26|2023-10-06T21:19:32.7970000-07:00|13D|Fey Illumination|20.00|40022C1B|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:19:32.8410000-07:00|40022472|Zeromus|0001A055|9975012||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:32.8420000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A058|0|1| +36|2023-10-06T21:19:32.8420000-07:00|4C68|3| +38|2023-10-06T21:19:32.8420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:32.8420000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +39|2023-10-06T21:19:32.8850000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9300|10000|||100.34|98.74|0.00|-3.12| +39|2023-10-06T21:19:32.8850000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|250|10000|||100.39|100.69|0.00|-2.69| +261|2023-10-06T21:19:32.3450000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:19:32.3450000-07:00|Change|40022C1B||||||||| +261|2023-10-06T21:19:32.3450000-07:00|Change|10FF0001||| +37|2023-10-06T21:19:32.9300000-07:00|10FF0006|Wowobora Gogobora|0001A051|81809|81809|8050|10000|0||99.32|102.34|0.00|3.11|1B06|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:19:32.9300000-07:00|13D|Fey Illumination|20.00|40022C1B|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +21|2023-10-06T21:19:32.9300000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9980087|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|50|10000|||100.39|100.69|0.00|-2.69|0001A059|0|1| +261|2023-10-06T21:19:32.4440000-07:00|Change|10FF0009||||| +39|2023-10-06T21:19:32.9760000-07:00|10FF0007|Kehabiqo Febiqo|96037|129844|10000|10000|||99.84|99.05|0.00|3.13| +21|2023-10-06T21:19:32.9760000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40022472|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9975012|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8050|10000|||99.32|102.34|0.00|3.11|0001A05A|0|1| +21|2023-10-06T21:19:32.9760000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|E4C0000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|9975012|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9300|10000|||100.34|98.74|0.00|-3.12|0001A05B|0|1| +21|2023-10-06T21:19:32.9760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9975012|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9300|10000|||100.34|98.74|0.00|-3.12|0001A05C|0|1| +21|2023-10-06T21:19:32.9760000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9975012|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A05D|0|1| +31|2023-10-06T21:19:32.9760000-07:00|10FF0001||||| +37|2023-10-06T21:19:33.0190000-07:00|40022472|Zeromus|0001A056|9955640||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:33.0190000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8250|10000|||99.32|102.34|0.00|3.11| +21|2023-10-06T21:19:33.0190000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9975012|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8050|10000|||99.32|102.34|0.00|3.11|0001A05E|0|1| +37|2023-10-06T21:19:33.0640000-07:00|10FF0009|Zewo Negiwo|0001A051|81177|81177|5089|10000|0||99.11|102.80|0.00|3.10|1807|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T21:19:33.0640000-07:00|13D|Fey Illumination|20.00|40022C1B|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:19:33.0640000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|3.07|0|0|0|||| +30|2023-10-06T21:19:33.0640000-07:00|7AC|Summon Order II|0.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:19:33.3320000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|30670000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|9955640|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5089|10000|||99.11|102.80|0.00|3.10|0001A05F|0|1| +21|2023-10-06T21:19:33.3770000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|154003|2A300000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|9955640|40478540|10000|10000|||100.00|80.10|0.00|0.00|67974|73814|5150|10000|||100.79|100.57|0.00|-3.10|0001A060|0|1| +38|2023-10-06T21:19:33.3770000-07:00|10FF0003|Gegehi Gehi|005A5A23|67974|73814|4950|10000|0||100.79|100.57|0.00|-3.10|0|0|0|||||||||||||||| +30|2023-10-06T21:19:33.3770000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:19:33.3770000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:19:33.3770000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|254003|4624001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9955640|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.18|101.67|0.00|-3.13|0001A061|0|1| +38|2023-10-06T21:19:33.3780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:33.3780000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +30|2023-10-06T21:19:33.3780000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:19:32.9040000-07:00|Change|10FF0006||| +39|2023-10-06T21:19:33.4210000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|2.43| +37|2023-10-06T21:19:33.4660000-07:00|40022472|Zeromus|0001A059|9955484||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:33.5110000-07:00|40022472|Zeromus|0001A05C|9953816||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:33.5110000-07:00|40022472|Zeromus|0001A05D|9950720||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:19:33.5110000-07:00|40022CC7|Carbuncle|40022CC7|Carbuncle|01| +38|2023-10-06T21:19:33.5110000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4689|10000|0||99.11|102.80|0.00|3.10|0|0|0|||||||||| +30|2023-10-06T21:19:33.5110000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:33.5110000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.90|99.90|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:19:33.5110000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:33.5110000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8250|10000|0||99.32|102.34|0.00|3.11|0|0|0||||||||||||||||||| +30|2023-10-06T21:19:33.5110000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:19:33.5110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9300|10000|0||100.34|98.74|0.00|-3.12|0|0|0|||||||||| +30|2023-10-06T21:19:33.5110000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:19:33.5110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|250|10000|0||100.39|100.69|0.00|-2.69|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:33.5110000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:19:33.5110000-07:00|10FF0003|Gegehi Gehi|005A5A23|67974|73814|4950|10000|0||100.79|100.57|0.00|-3.10|0|0|0|||||||||||||||| +30|2023-10-06T21:19:33.5110000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:19:33.5110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||100.18|101.67|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:33.5110000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:19:33.0180000-07:00|Change|40022CC7||| +37|2023-10-06T21:19:33.5550000-07:00|40022472|Zeromus|0001A05E|9950534||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:33.5550000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|151C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|67974|73814|4950|10000|||100.79|100.57|0.00|-3.10|73956|77430|10000|10000|||100.05|98.22|0.00|2.10|0001A062|0|1| +38|2023-10-06T21:19:33.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96037|129844|10000|10000|0||99.84|99.05|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:33.5550000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:19:33.6030000-07:00|40022472|Zeromus|0001A05A|9950534|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004B3|0|41200000|| +26|2023-10-06T21:19:33.6030000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40022472|Zeromus|00|40478540|81809| +261|2023-10-06T21:19:33.1320000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:19:33.6040000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|379F0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|9950534|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A063|0|1| +21|2023-10-06T21:19:33.6890000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|250|10000|||100.39|100.69|0.00|-2.69|81541|81541|250|10000|||100.39|100.69|0.00|-2.69|0001A064|0|1| +21|2023-10-06T21:19:33.7800000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BCF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9950534|40478540|10000|10000|||100.00|80.10|0.00|0.00|96037|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A065|0|1| +21|2023-10-06T21:19:33.8670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9950534|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A066|0|1| +21|2023-10-06T21:19:33.9560000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|356003|4CBB0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|9950534|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8250|10000|||99.32|102.34|0.00|3.11|0001A067|0|1| +261|2023-10-06T21:19:33.5180000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:19:34.0000000-07:00|40022472|Zeromus|0001A05B|9946874|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T21:19:34.0000000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:19:34.0000000-07:00|40022472|Zeromus|0001A061|9880216||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:34.0000000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.83|101.21|0.00|3.12| +37|2023-10-06T21:19:34.1790000-07:00|40022472|Zeromus|0001A060|9869416||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:33.8320000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:19:34.3120000-07:00|40022472|Zeromus|0001A065|9866393||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:34.3120000-07:00|10FF0004|Buhojaqe Zijaqe|0001A064|81541|81541|250|10000|0||100.39|100.69|0.00|-2.69|1C00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:19:34.3120000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:19:34.3550000-07:00|10FF0003|Gegehi Gehi|0001A062|73378||||||100.79|100.57|0.00|-3.10| +37|2023-10-06T21:19:34.4010000-07:00|40022472|Zeromus|0001A063|9852154||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:34.4010000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|31750000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|9869416|40478540|10000|10000|||100.00|80.10|0.00|0.00|67974|73814|4950|10000|||100.79|100.57|0.00|-3.10|0001A068|0|1| +38|2023-10-06T21:19:34.4010000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|800|10000|0||100.39|100.69|0.00|-2.69|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:19:34.4010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73378|73814|4650|10000|0||100.79|100.57|0.00|-3.10|0|0|0||||||||||||| +30|2023-10-06T21:19:34.4010000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:19:33.8320000-07:00|Change|10FF0004||| +24|2023-10-06T21:19:34.4890000-07:00|40022472|Zeromus|DoT|A92|7B9|9852154|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|7950|10000|||99.32|102.27|0.00|3.09| +38|2023-10-06T21:19:34.4890000-07:00|40022472|Zeromus|005A5A00|9850177|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:19:34.4890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|0||99.32|102.27|0.00|3.09|0|0|0||||||||||||||||||| +261|2023-10-06T21:19:34.1660000-07:00|Change|10FF0003||| +21|2023-10-06T21:19:34.5780000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|1FD90000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|96037|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A069|0|1| +37|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|0001A05F|9837786||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|0001A066|9835587||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|0001A067|9815944||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0001|Sesuga Sapisuga|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|129071|129071|9300|10000|||100.34|98.74|0.00|-3.12|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A06A|0|8| +22|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0007|Kehabiqo Febiqo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|96037|129844|10000|10000|||99.84|99.05|0.00|3.13|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A06A|1|8| +22|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0008|Kokosaze Lulusaze|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A06A|2|8| +22|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0003|Gegehi Gehi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|73378|73814|4650|10000|||100.79|100.57|0.00|-3.10|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A06A|3|8| +22|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0004|Buhojaqe Zijaqe|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81541|81541|800|10000|||100.39|100.69|0.00|-2.69|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A06A|4|8| +22|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0006|Wowobora Gogobora|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81809|81809|8500|10000|||99.32|102.17|0.00|3.08|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A06A|5|8| +22|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF000A|Dukaro Nezikaro|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.60|100.85|0.00|3.09|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A06A|6|8| +22|2023-10-06T21:19:34.6230000-07:00|40022472|Zeromus|8B3F|Abyssal Nox|10FF0009|Zewo Negiwo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81177|81177|4689|10000|||99.11|102.80|0.00|3.10|9850177|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A06A|7|8| +261|2023-10-06T21:19:34.1660000-07:00|Change|40022472||||||||||||| +261|2023-10-06T21:19:34.1660000-07:00|Change|40022472||||||||||||| +261|2023-10-06T21:19:34.1660000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:19:34.1660000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:19:34.1660000-07:00|Change|40022489||||||||| +261|2023-10-06T21:19:34.1660000-07:00|Change|40022487||||||||| +20|2023-10-06T21:19:34.7120000-07:00|40022487|Zeromus|8B42|Abyssal Echoes|40022487|Zeromus|15.700|83.50|83.50|0.00|0.00| +20|2023-10-06T21:19:34.7120000-07:00|40022488|Zeromus|8B41|unknown_8b41|40022488|Zeromus|8.700|100.00|100.00|0.00|-2.36| +20|2023-10-06T21:19:34.7120000-07:00|40022489|Zeromus|8B42|Abyssal Echoes|40022489|Zeromus|15.700|116.50|116.50|0.00|0.00| +20|2023-10-06T21:19:34.7120000-07:00|4002248A|Zeromus|8B41|unknown_8b41|4002248A|Zeromus|8.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:19:34.7130000-07:00|4002248B|Zeromus|8B42|Abyssal Echoes|4002248B|Zeromus|15.700|88.00|100.00|0.00|0.00| +20|2023-10-06T21:19:34.7130000-07:00|4002248C|Zeromus|8B40|unknown_8b40|4002248C|Zeromus|8.700|100.00|100.00|0.00|-1.57| +20|2023-10-06T21:19:34.7130000-07:00|4002248D|Zeromus|8B42|Abyssal Echoes|4002248D|Zeromus|15.700|112.00|100.00|0.00|0.00| +20|2023-10-06T21:19:34.7130000-07:00|4002248E|Zeromus|8B40|unknown_8b40|4002248E|Zeromus|8.700|100.00|100.00|0.00|1.57| +20|2023-10-06T21:19:34.7130000-07:00|4002248F|Zeromus|8B42|Abyssal Echoes|4002248F|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:19:34.7130000-07:00|40022490|Zeromus|8D2B|unknown_8d2b|40022490|Zeromus|8.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:19:34.2560000-07:00|Change|40022488||||||||||||||||| +21|2023-10-06T21:19:34.7130000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35712003|31F00000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|9815944|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9300|10000|||100.34|98.74|0.00|-3.12|0001A06B|0|1| +20|2023-10-06T21:19:34.7130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.39|100.69|0.00|-2.69| +261|2023-10-06T21:19:34.2560000-07:00|Change|4002248A||||||||||||||||| +261|2023-10-06T21:19:34.2560000-07:00|Change|4002248C||||||||||||||||| +261|2023-10-06T21:19:34.2560000-07:00|Change|4002248E||||||||||||||||| +261|2023-10-06T21:19:34.2560000-07:00|Change|40022490||||||||||||||| +261|2023-10-06T21:19:34.2560000-07:00|Change|4002248F||||||||||||||| +261|2023-10-06T21:19:34.3470000-07:00|Change|10FF0004||||||||||||||| +20|2023-10-06T21:19:34.8020000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.11|102.80|0.00|3.10| +261|2023-10-06T21:19:34.4380000-07:00|Change|10FF0009||||||||||||| +21|2023-10-06T21:19:35.0250000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.60|100.85|0.00|3.09|82773|82773|10000|10000|||99.60|100.85|0.00|3.09|0001A06C|0|1| +38|2023-10-06T21:19:35.0250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.60|100.85|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:35.0250000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:19:35.1580000-07:00|40022472|Zeromus|0001A068|9803283||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:35.1580000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|BDA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9815944|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.09|0001A06D|0|1| +261|2023-10-06T21:19:34.6550000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:19:34.6550000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:19:34.6550000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:19:34.6550000-07:00|Change|4002248D||||||||||||| +37|2023-10-06T21:19:35.2030000-07:00|40022472|Zeromus|0001A069|9795130||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:35.2030000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|2F2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9815944|40478540|10000|10000|||100.00|80.10|0.00|0.00|73378|73814|4650|10000|||100.79|100.57|0.00|-3.10|0001A06E|0|1| +21|2023-10-06T21:19:35.2480000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|ADE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9795130|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9300|10000|||100.34|98.74|0.00|-3.12|0001A06F|0|1| +31|2023-10-06T21:19:35.2480000-07:00|10FF0001||||| +21|2023-10-06T21:19:35.4260000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|255A0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|9795130|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||99.26|100.76|0.00|-3.12|0001A070|0|1| +261|2023-10-06T21:19:34.8850000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:19:35.4710000-07:00|40022472|Zeromus|0001A06B|9782346||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:35.4710000-07:00|10FF0001|Sesuga Sapisuga|0001A06B|129071|129071|10000|10000|0||100.34|98.74|0.00|-3.12|1300|0|0|0| +261|2023-10-06T21:19:34.9970000-07:00|Change|10FF0001||| +39|2023-10-06T21:19:35.5150000-07:00|10FF0003|Gegehi Gehi|73814|73814|4850|10000|||100.79|100.57|0.00|-3.10| +21|2023-10-06T21:19:35.5150000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.60|100.85|0.00|3.09|82773|82773|10000|10000|||99.60|100.85|0.00|3.09|0001A071|0|1| +38|2023-10-06T21:19:35.5150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.60|100.85|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:35.5150000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +39|2023-10-06T21:19:35.6040000-07:00|10FF0009|Zewo Negiwo|81177|81177|4910|10000|||99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:35.6490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|31990000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|9782346|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|800|10000|||100.39|100.69|0.00|-3.12|0001A072|0|1| +261|2023-10-06T21:19:35.1180000-07:00|Change|10FF0003||| +37|2023-10-06T21:19:35.6930000-07:00|40022472|Zeromus|0001A06D|9779312||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:35.7390000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.90|99.90|0.00|3.14| +21|2023-10-06T21:19:35.7390000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|30610000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|9779312|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4510|10000|||99.11|102.80|0.00|3.10|0001A073|0|1| +37|2023-10-06T21:19:35.7830000-07:00|40022472|Zeromus|0001A06F|9776530||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:35.7830000-07:00|40022472|Zeromus|DoT|0|260B|9779312|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||100.34|98.74|0.00|-3.12| +38|2023-10-06T21:19:35.7830000-07:00|40022472|Zeromus|005A5A00|9766791|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T21:19:35.8720000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.34|98.74|0.00|-3.12| +39|2023-10-06T21:19:35.8720000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|600|10000|||100.39|100.69|0.00|-3.12| +36|2023-10-06T21:19:35.8720000-07:00|4D44|3| +261|2023-10-06T21:19:35.3980000-07:00|Change|10FF0004||||||||||||||||| +39|2023-10-06T21:19:35.9610000-07:00|10FF0007|Kehabiqo Febiqo|97335|129844|10000|10000|||99.84|99.05|0.00|3.13| +39|2023-10-06T21:19:36.0060000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8400|10000|||99.26|100.76|0.00|3.11| +261|2023-10-06T21:19:35.4930000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:19:36.0510000-07:00|40022472|Zeromus|0001A070|9757229||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:36.0510000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|552003|84180000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|9766791|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.09|0001A074|0|1| +38|2023-10-06T21:19:36.0510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.60|100.85|0.00|3.09|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:36.0510000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:19:36.0510000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:19:36.0960000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|726003|3FE70000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|9766791|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A075|0|1| +21|2023-10-06T21:19:36.1400000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9766791|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||99.26|100.76|0.00|3.11|0001A076|0|1| +21|2023-10-06T21:19:36.2740000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|600|10000|||100.39|100.69|0.00|-3.12|81541|81541|600|10000|||100.39|100.69|0.00|-3.12|0001A077|0|1| +38|2023-10-06T21:19:36.2750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|600|10000|0||100.39|100.69|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:36.2750000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +04|2023-10-06T21:19:35.8320000-07:00|40022CBC|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||100.86|103.33|0.00|3.10| +261|2023-10-06T21:19:35.8320000-07:00|Remove|40022CBC| +37|2023-10-06T21:19:36.3640000-07:00|40022472|Zeromus|0001A06E|9745151||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:36.4080000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +261|2023-10-06T21:19:35.9480000-07:00|Change|10FF0006||| +37|2023-10-06T21:19:36.4530000-07:00|40022472|Zeromus|0001A072|9732454||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:36.4530000-07:00|10FF0004|Buhojaqe Zijaqe|0001A072|81541|81541|600|10000|0||100.39|100.69|0.00|-3.12|1C00|0|0|01|05000768|0|C1700000|| +21|2023-10-06T21:19:36.5420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9732454|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A078|0|1| +21|2023-10-06T21:19:36.5420000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9732454|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||100.79|100.57|0.00|-3.10|0001A079|0|1| +37|2023-10-06T21:19:36.6750000-07:00|40022472|Zeromus|0001A076|9732301||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:36.7640000-07:00|40022472|Zeromus|0001A074|9698485||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:36.7640000-07:00|10FF000A|Dukaro Nezikaro|0001A074|82773|82773|10000|10000|0||99.60|100.85|0.00|3.12|1E00|0|0|01|03000A82|01|41F00000|| +38|2023-10-06T21:19:36.7640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.60|100.85|0.00|3.12|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:19:36.8090000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|750003|1BD00000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|9732301|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||100.79|100.57|0.00|-3.10|0001A07A|0|1| +37|2023-10-06T21:19:36.8530000-07:00|40022472|Zeromus|0001A075|9682126||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:36.8980000-07:00|10FF0004|Buhojaqe Zijaqe|0001A077|81541|81541|600|10000|0||100.35|100.75|0.00|-1.65|1C00|0|0|01|05000768|0|41700000|| +21|2023-10-06T21:19:36.8980000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|356003|4CD80000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|9698485|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||99.26|100.76|0.00|3.11|0001A07B|0|1| +38|2023-10-06T21:19:36.8980000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|600|10000|0||100.35|100.75|0.00|-1.65|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:19:36.9860000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.60|100.85|0.00|3.12| +38|2023-10-06T21:19:36.9860000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|-2.94|0|0|0||||||| +26|2023-10-06T21:19:36.9860000-07:00|77B|Summon Order|30.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:19:36.9860000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|600|10000|||100.33|100.77|-0.02|-1.44|81541|81541|600|10000|||100.33|100.77|-0.02|-1.44|0001A07C|0|1| +37|2023-10-06T21:19:37.0310000-07:00|40022472|Zeromus|0001A073|9669741||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:37.0310000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7A200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9682126|40478540|10000|10000|||100.00|80.10|0.00|0.00|97335|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A07D|0|1| +37|2023-10-06T21:19:37.0770000-07:00|40022472|Zeromus|0001A079|9669740||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:37.0770000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9669741|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|600|10000|||100.32|100.79|0.00|-1.27|0001A07E|0|1| +21|2023-10-06T21:19:37.1660000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9669741|40478540|10000|10000|||100.00|80.10|0.00|0.00|97335|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A07F|0|1| +20|2023-10-06T21:19:37.2110000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:37.2110000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41712003|44490000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|9669740|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A080|0|1| +38|2023-10-06T21:19:37.2110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.34|98.74|0.00|-3.12|0|0|0|||||||||||||||| +26|2023-10-06T21:19:37.2110000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:19:37.2110000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:19:36.6640000-07:00|Change|10FF0009||||||||||||| +261|2023-10-06T21:19:36.6640000-07:00|Change|40022C1B||||||||| +37|2023-10-06T21:19:37.2990000-07:00|40022472|Zeromus|0001A078|9667398||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:37.3440000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|F2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9669740|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A081|0|1| +21|2023-10-06T21:19:37.3880000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|150D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|97335|129844|10000|10000|||99.84|99.05|0.00|3.13|73956|77430|10000|10000|||100.05|98.22|0.00|-1.80|0001A082|0|1| +38|2023-10-06T21:19:37.3880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|0||100.27|100.82|0.00|-1.73|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:19:36.8890000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:19:36.8890000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:19:37.4330000-07:00|40022472|Zeromus|0001A07A|9660278||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:37.0010000-07:00|Change|10FF0006||| +24|2023-10-06T21:19:37.4780000-07:00|40022472|Zeromus|DoT|A92|4CD|9667398|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|8100|10000|||99.26|100.76|0.00|3.11| +38|2023-10-06T21:19:37.4780000-07:00|40022472|Zeromus|005A5A00|9659049|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:19:37.4780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8650|10000|0||99.26|100.76|0.00|3.11|0|0|0||||||||||||||||||| +261|2023-10-06T21:19:37.0010000-07:00|Change|40022C1B||||||||| +37|2023-10-06T21:19:37.5220000-07:00|40022472|Zeromus|0001A07B|9639377||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:37.5220000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9659049|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A083|0|1| +31|2023-10-06T21:19:37.5220000-07:00|10FF0001||||| +38|2023-10-06T21:19:37.5650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.34|98.74|0.00|-3.12|0|0|0|||||||||||||||| +37|2023-10-06T21:19:37.6100000-07:00|40022472|Zeromus|0001A07E|9639224||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:37.6550000-07:00|40022472|Zeromus|0001A07D|9607960||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:37.6550000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|554003|50630000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|9639377|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A084|0|1| +38|2023-10-06T21:19:37.6550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|0||99.60|100.85|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:37.6550000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:19:37.7000000-07:00|40022472|Zeromus|0001A07F|9605126||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:19:37.7000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.27|100.72|0.00|-2.54| +261|2023-10-06T21:19:37.3190000-07:00|Change|40022C1B||||||||| +37|2023-10-06T21:19:37.7890000-07:00|40022472|Zeromus|0001A080|9587645||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:37.7890000-07:00|10FF0001|Sesuga Sapisuga|0001A080|129071|129071|10000|10000|0||100.34|98.74|0.00|-3.12|1300|0|0|02|0300076E|03|41F00000|||||| +38|2023-10-06T21:19:37.7890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.34|98.74|0.00|-3.12|0|0|0|||||||||||||||| +37|2023-10-06T21:19:37.8780000-07:00|40022472|Zeromus|0001A081|9583762||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:37.4090000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:19:38.0560000-07:00|40022472|Zeromus|0001A083|9582042||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:38.1460000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|35390000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|9582042|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4510|10000|||99.11|102.80|0.00|3.10|0001A085|0|1| +37|2023-10-06T21:19:38.1900000-07:00|10FF0007|Kehabiqo Febiqo|0001A082|102724||||||99.84|99.05|0.00|3.13| +261|2023-10-06T21:19:37.7290000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:19:38.3230000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37752003|36470000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|9582042|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||100.79|100.57|0.00|-3.10|0001A086|0|1| +21|2023-10-06T21:19:38.3680000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|9582042|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8650|10000|||99.26|100.76|0.00|3.11|0001A087|0|1| +261|2023-10-06T21:19:37.8420000-07:00|Change|40022CC7||| +38|2023-10-06T21:19:38.4130000-07:00|40022D03||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:19:38.4130000-07:00|40022472|Zeromus|0001A084|9561463||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:38.4130000-07:00|40022D03||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +22|2023-10-06T21:19:38.4570000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.34|98.74|0.00|-3.12|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25|0001A088|0|8| +22|2023-10-06T21:19:38.4570000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|102724|129844|10000|10000|||99.84|99.05|0.00|3.13|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25|0001A088|1|8| +22|2023-10-06T21:19:38.4570000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25|0001A088|2|8| +22|2023-10-06T21:19:38.4570000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1150|10000|||100.27|100.63|0.00|-3.13|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25|0001A088|3|8| +22|2023-10-06T21:19:38.4570000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4850|10000|||100.79|100.57|0.00|-3.10|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25|0001A088|4|8| +22|2023-10-06T21:19:38.4570000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8650|10000|||99.26|100.76|0.00|3.11|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25|0001A088|5|8| +22|2023-10-06T21:19:38.4570000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25|0001A088|6|8| +22|2023-10-06T21:19:38.4570000-07:00|40022C1B|Ruby Carbuncle|323|Whispering Dawn|10FF0009|Zewo Negiwo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|4110|10000|||99.11|102.80|0.00|3.10|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25|0001A088|7|8| +261|2023-10-06T21:19:37.9550000-07:00|Change|10FF0006||| +22|2023-10-06T21:19:38.5020000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|17730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9561463|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A089|0|3| +22|2023-10-06T21:19:38.5020000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|712003|1C810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9561463|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A089|1|3| +22|2023-10-06T21:19:38.5020000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|15F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9561463|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A089|2|3| +39|2023-10-06T21:19:38.5470000-07:00|10FF0003|Gegehi Gehi|73814|73814|5050|10000|||100.79|100.57|0.00|-3.10| +261|2023-10-06T21:19:38.0660000-07:00|Change|10FF0003||| +21|2023-10-06T21:19:38.5910000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2E660000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|9561463|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A08A|0|1| +39|2023-10-06T21:19:38.6360000-07:00|10FF0009|Zewo Negiwo|81177|81177|4331|10000|||99.11|102.80|0.00|3.10| +21|2023-10-06T21:19:38.6360000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2F5E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|9561463|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||100.27|100.63|0.00|-3.13|0001A08B|0|1| +261|2023-10-06T21:19:38.1660000-07:00|Add|40022D03||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:19:38.1660000-07:00|40022D03|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||100.99|102.60|0.00|3.11| +39|2023-10-06T21:19:38.7250000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.90|99.90|0.00|3.14| +261|2023-10-06T21:19:38.2620000-07:00|Change|40022D03||||| +24|2023-10-06T21:19:38.7700000-07:00|40022472|Zeromus|DoT|0|26B0|9561463|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||100.34|98.74|0.00|-3.12| +38|2023-10-06T21:19:38.7700000-07:00|40022472|Zeromus|005A5A00|9551559|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T21:19:38.8610000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.34|98.74|0.00|-3.12| +36|2023-10-06T21:19:38.8610000-07:00|4E20|3| +39|2023-10-06T21:19:38.9040000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|950|10000|||100.27|100.63|0.00|-3.13| +37|2023-10-06T21:19:38.9490000-07:00|40022472|Zeromus|0001A086|9537664||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:38.4530000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T21:19:38.9930000-07:00|10FF0007|Kehabiqo Febiqo|104022|129844|10000|10000|||99.84|99.05|0.00|3.13| +39|2023-10-06T21:19:38.9930000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8850|10000|||99.26|100.76|0.00|3.11| +37|2023-10-06T21:19:39.2160000-07:00|40022472|Zeromus|0001A089|9531661||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:39.2160000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|95F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9531661|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A08C|0|1| +261|2023-10-06T21:19:38.7580000-07:00|Change|10FF0009||| +21|2023-10-06T21:19:39.2600000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9531661|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8850|10000|||99.26|100.76|0.00|3.11|0001A08D|0|1| +37|2023-10-06T21:19:39.3500000-07:00|10FF0001|Sesuga Sapisuga|0001A088|129071|129071|10000|10000|0||100.34|98.74|0.00|-3.12|1300|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T21:19:39.3500000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:19:39.3500000-07:00|40022472|Zeromus|0001A089|9524364||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:39.3950000-07:00|40022472|Zeromus|0001A08A|9512486||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:39.3950000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-0.25| +261|2023-10-06T21:19:38.9840000-07:00|Change|40022D03||| +37|2023-10-06T21:19:39.4400000-07:00|40022472|Zeromus|0001A085|9498861||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:39.4400000-07:00|40022472|Zeromus|0001A08B|9486735||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:39.4850000-07:00|10FF0007|Kehabiqo Febiqo|0001A088|104022|129844|10000|10000|0||99.84|99.05|0.00|3.13|1501|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T21:19:39.4850000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +37|2023-10-06T21:19:39.4850000-07:00|40022472|Zeromus|0001A089|9481114||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:39.4850000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|2E810000|143E|340000|4|176B8000|11B|2A8000|0|0|0|0|0|0|0|0|9512486|40478540|10000|10000|||100.00|80.10|0.00|0.00|104022|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A08E|0|1| +261|2023-10-06T21:19:38.9840000-07:00|Change|10FF0006||| +37|2023-10-06T21:19:39.5290000-07:00|10FF0001|Sesuga Sapisuga|0001A06A|1|129071|10000|10000|0||100.34|98.74|0.00|-3.12|1300|0|0|01|060006E9|0|41200000|| +26|2023-10-06T21:19:39.5290000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +21|2023-10-06T21:19:39.5290000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|124F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9481114|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A08F|0|1| +37|2023-10-06T21:19:39.5730000-07:00|10FF0007|Kehabiqo Febiqo|0001A06A|1|129844|10000|10000|0||99.84|99.05|0.00|3.13|1501|0|0|01|040006E9|0|41200000|| +26|2023-10-06T21:19:39.5730000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +37|2023-10-06T21:19:39.6180000-07:00|10FF0008|Kokosaze Lulusaze|0001A088|90216|90216|10000|10000|0||99.90|99.90|0.00|3.14|1F02|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:19:39.6180000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:19:39.6180000-07:00|10FF0008|Kokosaze Lulusaze|0001A06A|1|90216|10000|10000|0||99.90|99.90|0.00|3.14|1F02|0|0|01|040006E9|0|41200000|| +26|2023-10-06T21:19:39.6180000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +20|2023-10-06T21:19:39.6180000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|99.11|102.80|0.00|3.10| +37|2023-10-06T21:19:39.6630000-07:00|10FF0003|Gegehi Gehi|0001A06A|1|73814|5050|10000|0||100.79|100.57|0.00|-3.10|2303|0|0|01|010006E9|0|41200000|| +26|2023-10-06T21:19:39.6630000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +261|2023-10-06T21:19:39.1880000-07:00|Change|40022485||||||||| +261|2023-10-06T21:19:39.1880000-07:00|Change|40022483||||||||| +261|2023-10-06T21:19:39.1880000-07:00|Change|40022480||||||||| +261|2023-10-06T21:19:39.1880000-07:00|Change|40022481||||||||| +261|2023-10-06T21:19:39.1880000-07:00|Change|4002247F||||||||| +37|2023-10-06T21:19:39.7090000-07:00|10FF0004|Buhojaqe Zijaqe|0001A06A|1|81541|950|10000|0||100.27|100.63|0.00|-3.13|1C04|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:19:39.7090000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +21|2023-10-06T21:19:39.7090000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|33FA0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|9481114|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A090|0|1| +38|2023-10-06T21:19:39.7090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|1|129071|10000|10000|0||100.34|98.74|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:39.7090000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T21:19:39.7530000-07:00|10FF0004|Buhojaqe Zijaqe|0001A088|1|81541|950|10000|0||100.27|100.63|0.00|-3.13|1C03|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T21:19:39.7530000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:19:39.7530000-07:00|10FF0006|Wowobora Gogobora|0001A06A|1|81809|8850|10000|0||99.26|100.76|0.00|3.11|1B05|0|0|01|060006E9|0|41200000|| +26|2023-10-06T21:19:39.7530000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +20|2023-10-06T21:19:39.7530000-07:00|4002247F|Zeromus|8B42|Abyssal Echoes|4002247F|Zeromus|15.700|83.50|116.50|0.00|0.00| +20|2023-10-06T21:19:39.7530000-07:00|40022480|Zeromus|8B41|unknown_8b41|40022480|Zeromus|8.700|100.00|100.00|0.00|-0.79| +20|2023-10-06T21:19:39.7530000-07:00|40022481|Zeromus|8B42|Abyssal Echoes|40022481|Zeromus|15.700|116.50|83.50|0.00|0.00| +20|2023-10-06T21:19:39.7530000-07:00|40022482|Zeromus|8B41|unknown_8b41|40022482|Zeromus|8.700|100.00|100.00|0.00|2.36| +20|2023-10-06T21:19:39.7530000-07:00|40022483|Zeromus|8B42|Abyssal Echoes|40022483|Zeromus|15.700|100.00|112.00|0.00|0.00| +20|2023-10-06T21:19:39.7530000-07:00|40022484|Zeromus|8B40|unknown_8b40|40022484|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:19:39.7530000-07:00|40022485|Zeromus|8B42|Abyssal Echoes|40022485|Zeromus|15.700|100.00|88.00|0.00|0.00| +20|2023-10-06T21:19:39.7530000-07:00|40022486|Zeromus|8B40|unknown_8b40|40022486|Zeromus|8.700|100.00|100.00|0.00|3.14| +261|2023-10-06T21:19:39.2790000-07:00|Change|40022482||||||||||||||||| +261|2023-10-06T21:19:39.2790000-07:00|Change|40022486||||||||||||||||| +261|2023-10-06T21:19:39.2790000-07:00|Change|40022484||||||||||||||||| +37|2023-10-06T21:19:39.7980000-07:00|10FF000A|Dukaro Nezikaro|0001A06A|1|82773|10000|10000|0||99.60|100.85|0.00|3.12|1E06|0|0|01|030006E9|0|41200000|| +26|2023-10-06T21:19:39.7980000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|40478540| +37|2023-10-06T21:19:39.7980000-07:00|40022472|Zeromus|0001A08D|9480968||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:39.7980000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|DCD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9481114|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A091|0|1| +31|2023-10-06T21:19:39.7980000-07:00|10FF0001||||| +37|2023-10-06T21:19:39.8420000-07:00|10FF0009|Zewo Negiwo|0001A06A|1|81177|4331|10000|0||99.11|102.80|0.00|3.10|1807|0|0|01|030006E9|0|41200000|| +26|2023-10-06T21:19:39.8420000-07:00|6E9|Doom|10.00|40022472|Zeromus|10FF0009|Zewo Negiwo|00|81177|40478540| +21|2023-10-06T21:19:39.8420000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A756003|67630000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|9481114|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|73814|5050|10000|||100.79|100.57|0.00|-3.10|0001A092|0|1| +37|2023-10-06T21:19:39.8870000-07:00|10FF0003|Gegehi Gehi|0001A088|1|73814|5050|10000|0||100.79|100.57|0.00|-3.10|2304|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:19:39.8870000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T21:19:39.9760000-07:00|40022472|Zeromus|0001A08C|9478569||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:39.9760000-07:00|10FF000A|Dukaro Nezikaro|828|82773|10000|10000|||99.60|100.85|0.00|3.12| +37|2023-10-06T21:19:40.0200000-07:00|10FF0006|Wowobora Gogobora|0001A088|1|81809|8850|10000|0||99.26|100.76|0.00|3.11|1B05|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:19:40.0200000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +21|2023-10-06T21:19:40.0200000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9478569|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|73814|5050|10000|||100.79|100.57|0.00|-3.10|0001A093|0|1| +37|2023-10-06T21:19:40.0640000-07:00|40022472|Zeromus|0001A08F|9473882||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:40.1540000-07:00|10FF000A|Dukaro Nezikaro|0001A088|828|82773|10000|10000|0||99.60|100.85|0.00|3.12|1E06|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:19:40.1540000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +261|2023-10-06T21:19:39.6700000-07:00|Change|40022485||||||||||||| +261|2023-10-06T21:19:39.6700000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:19:39.6700000-07:00|Change|40022480||||||||||||| +261|2023-10-06T21:19:39.6700000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:19:39.6700000-07:00|Change|40022481||||||||||||| +261|2023-10-06T21:19:39.7820000-07:00|Change|10FF0009||||||||||||| +24|2023-10-06T21:19:40.1990000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|95E|1|90216|10000|10000|||99.90|99.90|0.00|3.14|40022472|Zeromus|0|9473882|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:40.1990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|2399|90216|10000|10000|0||99.90|99.90|0.00|3.14|0|0|0|||||||||||||||| +24|2023-10-06T21:19:40.2450000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9BD|828|82773|10000|10000|||99.60|100.85|0.00|3.12|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-0.30| +38|2023-10-06T21:19:40.2450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|3321|82773|10000|10000|0||99.60|100.85|0.00|3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:19:40.2880000-07:00|10FF0009|Zewo Negiwo|0001A088|1|81177|4331|10000|0||99.11|102.80|0.00|3.10|1807|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:19:40.2880000-07:00|13B|Whispering Dawn|21.00|40022C1B|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +24|2023-10-06T21:19:40.2890000-07:00|10FF0003|Gegehi Gehi|HoT|0|926|1|73814|5050|10000|||100.79|100.57|0.00|-3.10|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-0.30| +38|2023-10-06T21:19:40.2890000-07:00|40022C1B|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.05|98.22|0.00|-0.30|0|0|0|||| +30|2023-10-06T21:19:40.2890000-07:00|77B|Summon Order|0.00|40022C1B|Ruby Carbuncle|40022C1B|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T21:19:40.2890000-07:00|10FF0003|Gegehi Gehi|005A5A23|2343|73814|5050|10000|0||100.79|100.57|0.00|-3.10|0|0|0|||||||||||||||| +37|2023-10-06T21:19:40.3340000-07:00|40022472|Zeromus|0001A091|9470349||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|52020000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|1|81541|950|10000|||100.27|100.63|0.00|-1.30|1|81541|950|10000|||100.27|100.63|0.00|-1.30|0001A094|0|8| +22|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|52E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|73814|5050|10000|||100.79|100.57|0.00|-3.10|1|81541|950|10000|||100.27|100.63|0.00|-1.30|0001A094|1|8| +22|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|51310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|90216|10000|10000|||99.90|99.90|0.00|3.14|1|81541|950|10000|||100.27|100.63|0.00|-1.30|0001A094|2|8| +22|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000A|Dukaro Nezikaro|200004|51D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|828|82773|10000|10000|||99.60|100.85|0.00|3.12|1|81541|950|10000|||100.27|100.63|0.00|-1.30|0001A094|3|8| +22|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|52070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|81809|8850|10000|||99.27|100.72|0.00|3.07|1|81541|950|10000|||100.27|100.63|0.00|-1.30|0001A094|4|8| +22|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|51DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|129844|10000|10000|||99.84|99.05|0.00|3.13|1|81541|950|10000|||100.27|100.63|0.00|-1.30|0001A094|5|8| +22|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|53210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|129071|10000|10000|||100.34|98.74|0.00|-3.12|1|81541|950|10000|||100.27|100.63|0.00|-1.30|0001A094|6|8| +22|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0009|Zewo Negiwo|200004|515F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|81177|4331|10000|||99.11|102.80|0.00|3.10|1|81541|950|10000|||100.27|100.63|0.00|-1.30|0001A094|7|8| +38|2023-10-06T21:19:40.3350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|1|81541|950|10000|0||100.27|100.63|0.00|-1.30|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:40.3350000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +24|2023-10-06T21:19:40.3780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9BB|1|81541|950|10000|||100.27|100.63|0.00|-1.30|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-0.30| +38|2023-10-06T21:19:40.3780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|2492|81541|1500|10000|0||100.27|100.63|0.00|-1.30|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:19:39.8930000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:19:39.8930000-07:00|Change|40022CC7||| +37|2023-10-06T21:19:40.4670000-07:00|40022472|Zeromus|0001A092|9443882||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:40.4670000-07:00|40022D03|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|454003|752F0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|9470349|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||100.99|102.60|0.00|3.11|0001A095|0|1| +24|2023-10-06T21:19:40.4670000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|F30|1|129844|10000|10000|||99.84|99.05|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|1|129844|10000|10000|||99.84|99.05|0.00|3.13| +24|2023-10-06T21:19:40.4670000-07:00|40022472|Zeromus|DoT|A92|4AE|9470349|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|1|81809|8850|10000|||99.29|100.51|0.00|3.06| +24|2023-10-06T21:19:40.4670000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9B4|1|81809|8850|10000|||99.29|100.51|0.00|3.06|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-0.61| +21|2023-10-06T21:19:40.4670000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|33480000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|9470349|40478540|10000|10000|||100.00|80.10|0.00|0.00|3321|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A096|0|1| +38|2023-10-06T21:19:40.4670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|3889|129844|10000|10000|0||99.84|99.05|0.00|3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:19:40.4670000-07:00|40022472|Zeromus|005A5A00|9442684|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:19:40.4670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|2485|81809|9400|10000|0||99.29|100.51|0.00|3.06|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:19:40.0040000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:19:40.5570000-07:00|40022472|Zeromus|0001A093|9442683||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:40.5570000-07:00|10FF0009|Zewo Negiwo|HoT|0|9AF|1|81177|4331|10000|||99.11|102.80|0.00|3.10|40022C1B|Ruby Carbuncle|0|73956|77430|10000|10000|||100.05|98.22|0.00|-0.97| +24|2023-10-06T21:19:40.5570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A08|1|129071|10000|10000|||100.34|98.74|0.00|-3.12|40022472|Zeromus|0|9442684|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:40.5570000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|716003|185A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9442684|40478540|10000|10000|||100.00|80.10|0.00|0.00|3889|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A097|0|1| +38|2023-10-06T21:19:40.5570000-07:00|10FF0009|Zewo Negiwo|005A5A18|2480|81177|4331|10000|0||99.11|102.80|0.00|3.10|0|0|0|||||||||||||||| +38|2023-10-06T21:19:40.5570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|2569|129071|10000|10000|0||100.34|98.74|0.00|-3.12|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:19:40.7810000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13CE0F|A748000|0|0|0|0|0|0|0|0|0|0|2569|129071|10000|10000|||100.34|98.74|0.00|-3.12|2569|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A098|0|1| +38|2023-10-06T21:19:40.7810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|2569|129071|10000|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:40.7810000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:19:40.7810000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:19:40.7810000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:19:40.7810000-07:00|10FF0001||||| +21|2023-10-06T21:19:40.8250000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|65700000|0|0|0|0|0|0|0|0|0|0|0|0|3889|129844|10000|10000|||99.84|99.05|0.00|3.13|3889|129844|10000|10000|||99.84|99.05|0.00|3.13|0001A099|0|1| +21|2023-10-06T21:19:40.8250000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|37930000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|9442683|40478540|10000|10000|||100.00|80.10|0.00|0.00|2485|81809|9400|10000|||99.38|99.69|0.00|3.04|0001A09A|0|1| +38|2023-10-06T21:19:40.8250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|2485|81809|9100|10000|0||99.38|99.69|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:40.8250000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +36|2023-10-06T21:19:40.9590000-07:00|4F4C|3| +37|2023-10-06T21:19:40.9590000-07:00|10FF0004|Buhojaqe Zijaqe|0001A094|23486||||||100.27|100.51|0.00|3.14| +37|2023-10-06T21:19:41.0040000-07:00|40022472|Zeromus|0001A08E|9430778||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:41.0040000-07:00|10FF0007|Kehabiqo Febiqo|0001A08E|9884||||||99.84|99.05|0.00|3.13| +37|2023-10-06T21:19:41.0040000-07:00|40022472|Zeromus|0001A090|9417472||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:41.0040000-07:00|40022472|Zeromus|0001A096|9404344||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:41.0040000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|200004|21870000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|3321|82773|10000|10000|||99.60|100.85|0.00|3.12|73956|77430|10000|10000|||100.05|98.22|0.00|-1.51|0001A09B|0|1| +22|2023-10-06T21:19:41.0040000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|21CF0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|0001A09C|0|8| +22|2023-10-06T21:19:41.0040000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|235E0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|3321|82773|10000|10000|||99.60|100.85|0.00|3.12|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|0001A09C|1|8| +22|2023-10-06T21:19:41.0040000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|21840000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|2492|81541|1500|10000|||100.27|100.51|0.00|3.14|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|0001A09C|2|8| +22|2023-10-06T21:19:41.0040000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|200004|36F10000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|2343|73814|5050|10000|||100.79|100.57|0.00|-3.10|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|0001A09C|3|8| +22|2023-10-06T21:19:41.0040000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|22BB0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|2399|90216|10000|10000|||99.90|99.90|0.00|3.14|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|0001A09C|4|8| +22|2023-10-06T21:19:41.0040000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|200004|385C0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|2485|81809|9100|10000|||99.38|99.69|0.00|3.11|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|0001A09C|5|8| +22|2023-10-06T21:19:41.0040000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|22E00000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|3889|129844|10000|10000|||99.84|99.05|0.00|3.13|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|0001A09C|6|8| +22|2023-10-06T21:19:41.0040000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|23200000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|2569|129071|10000|10000|||100.34|98.74|0.00|-3.12|2480|81177|4331|10000|||99.11|102.80|0.00|3.10|0001A09C|7|8| +21|2023-10-06T21:19:41.0490000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|49510000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|9404344|40478540|10000|10000|||100.00|80.10|0.00|0.00|2399|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A09D|0|1| +37|2023-10-06T21:19:41.0940000-07:00|40022472|Zeromus|0001A097|9398110||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:19:41.0940000-07:00|5078|3| +37|2023-10-06T21:19:41.0940000-07:00|10FF0003|Gegehi Gehi|0001A094|23565||||||100.79|100.57|0.00|-3.10| +21|2023-10-06T21:19:41.1820000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|734003|BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9398110|40478540|10000|10000|||100.00|80.10|0.00|0.00|23486|81541|1500|10000|||100.27|100.51|0.00|3.14|0001A09E|0|1| +36|2023-10-06T21:19:41.2260000-07:00|51A4|3| +37|2023-10-06T21:19:41.2260000-07:00|10FF0008|Kokosaze Lulusaze|0001A094|23184||||||99.90|99.90|0.00|3.14| +261|2023-10-06T21:19:40.7410000-07:00|Change|10FF0009||||||||||||||| +36|2023-10-06T21:19:41.3600000-07:00|52D0|3| +37|2023-10-06T21:19:41.3600000-07:00|10FF000A|Dukaro Nezikaro|0001A094|24273||||||99.60|100.85|0.00|3.12| +37|2023-10-06T21:19:41.4490000-07:00|10FF0007|Kehabiqo Febiqo|0001A099|35852|155812|10000|10000|0||99.84|99.05|0.00|3.13|1500|0|0|01|05000057|0|41200000|| +26|2023-10-06T21:19:41.4490000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:19:41.4490000-07:00|40022472|Zeromus|0001A09A|9383883||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:41.4490000-07:00|10FF0006|Wowobora Gogobora|0001A09A|2485|81809|9100|10000|0||99.38|99.69|0.00|3.11|1B00|0|0|01|08000B25|0|0|| +38|2023-10-06T21:19:41.4490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|35852|155812|10000|10000|0||99.84|99.05|0.00|3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:19:41.4490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|2485|81809|9100|10000|0||99.38|99.69|0.00|3.11|0|0|0|||||||||||||||||||||||||||| +36|2023-10-06T21:19:41.4950000-07:00|53FC|3| +37|2023-10-06T21:19:41.4950000-07:00|10FF0006|Wowobora Gogobora|0001A094|23484||||||99.38|99.69|0.00|3.11| +21|2023-10-06T21:19:41.4950000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|1F9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9398110|40478540|10000|10000|||100.00|80.10|0.00|0.00|2485|81809|9100|10000|||99.38|99.69|0.00|3.11|0001A09F|0|1| +38|2023-10-06T21:19:41.4950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|23484|81809|9100|10000|0||99.38|99.69|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:41.4950000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:19:41.5390000-07:00|10FF0003|Gegehi Gehi|24303|73814|5250|10000|||100.79|100.57|0.00|-3.10| +20|2023-10-06T21:19:41.5390000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.27|100.51|0.00|3.14| +261|2023-10-06T21:19:40.9730000-07:00|Change|10FF0003||| +261|2023-10-06T21:19:41.0860000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:19:41.0860000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:19:41.6270000-07:00|10FF0007|Kehabiqo Febiqo|0001A094|56811||||||99.84|99.05|0.00|3.13| +39|2023-10-06T21:19:41.6280000-07:00|10FF0009|Zewo Negiwo|3291|81177|3552|10000|||99.11|102.80|0.00|3.10| +37|2023-10-06T21:19:41.7170000-07:00|40022472|Zeromus|0001A09E|9383692||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:41.7170000-07:00|10FF0008|Kokosaze Lulusaze|24086|90216|10000|10000|||99.90|99.90|0.00|3.14| +21|2023-10-06T21:19:41.7170000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9383883|40478540|10000|10000|||100.00|80.10|0.00|0.00|24273|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A0A0|0|1| +36|2023-10-06T21:19:41.7620000-07:00|5528|3| +37|2023-10-06T21:19:41.7620000-07:00|10FF0001|Sesuga Sapisuga|0001A094|23850||||||100.34|98.74|0.00|-3.12| +24|2023-10-06T21:19:41.7620000-07:00|40022472|Zeromus|DoT|0|245F|9383692|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|2569|129071|10000|10000|||100.34|98.74|0.00|-3.12| +38|2023-10-06T21:19:41.7620000-07:00|40022472|Zeromus|005A5A00|9374381|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T21:19:41.8060000-07:00|10FF000A|Dukaro Nezikaro|0001A09B|32856||||||99.60|100.85|0.00|3.12| +36|2023-10-06T21:19:41.8500000-07:00|5654|3| +37|2023-10-06T21:19:41.8500000-07:00|10FF0009|Zewo Negiwo|0001A09C|11946|81177|3552|10000|0||99.11|102.80|0.00|3.10|1800|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:19:41.8500000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:19:41.8500000-07:00|40022472|Zeromus|0001A09D|9355612||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:19:41.8500000-07:00|5730|3| +37|2023-10-06T21:19:41.8960000-07:00|10FF0009|Zewo Negiwo|0001A094|32777||||||99.11|102.80|0.00|3.10| +39|2023-10-06T21:19:41.8960000-07:00|10FF0001|Sesuga Sapisuga|25140|129071|10000|10000|||100.34|98.74|0.00|-3.12| +39|2023-10-06T21:19:41.8960000-07:00|10FF0004|Buhojaqe Zijaqe|24301|81541|1700|10000|||100.27|100.51|0.00|3.14| +21|2023-10-06T21:19:41.8960000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|DDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9374381|40478540|10000|10000|||100.00|80.10|0.00|0.00|24086|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A0A1|0|1| +21|2023-10-06T21:19:41.9390000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|714003|1B6D0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|9355612|40478540|10000|10000|||100.00|80.10|0.00|0.00|56811|155812|10000|10000|||99.84|99.05|0.00|3.13|0001A0A2|0|1| +37|2023-10-06T21:19:41.9830000-07:00|10FF000A|Dukaro Nezikaro|0001A09C|41910|82773|10000|10000|0||99.60|100.85|0.00|3.12|1E01|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:19:41.9830000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +39|2023-10-06T21:19:41.9830000-07:00|10FF0007|Kehabiqo Febiqo|58369|155812|10000|10000|||99.84|99.05|0.00|3.13| +39|2023-10-06T21:19:42.0280000-07:00|10FF0006|Wowobora Gogobora|24302|81809|9300|10000|||99.38|99.69|0.00|3.11| +21|2023-10-06T21:19:42.0280000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022472|Zeromus|754003|4C680000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|9355612|40478540|10000|10000|||100.00|80.10|0.00|0.00|24303|73814|5250|10000|||100.79|100.57|0.00|-3.10|0001A0A3|0|1| +38|2023-10-06T21:19:42.0280000-07:00|10FF0003|Gegehi Gehi|005A5A23|24303|73814|4850|10000|0||100.79|100.57|0.00|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T21:19:42.0280000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +22|2023-10-06T21:19:42.0730000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|384E0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|0001A0A4|0|8| +22|2023-10-06T21:19:42.0730000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|200004|585A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|41910|82773|10000|10000|||99.60|100.85|0.00|3.12|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|0001A0A4|1|8| +22|2023-10-06T21:19:42.0730000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|367D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|24301|81541|1700|10000|||100.27|100.51|0.00|3.14|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|0001A0A4|2|8| +22|2023-10-06T21:19:42.0730000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|580C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|24303|73814|5250|10000|||100.79|100.57|0.00|-3.10|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|0001A0A4|3|8| +22|2023-10-06T21:19:42.0730000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|37300000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|24086|90216|10000|10000|||99.90|99.90|0.00|3.14|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|0001A0A4|4|8| +22|2023-10-06T21:19:42.0730000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|385A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|23484|81809|9100|10000|||99.38|99.69|0.00|3.11|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|0001A0A4|5|8| +22|2023-10-06T21:19:42.0730000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|41680000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|58369|155812|10000|10000|||99.84|99.05|0.00|3.13|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|0001A0A4|6|8| +22|2023-10-06T21:19:42.0730000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|35CF0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|25140|129071|10000|10000|||100.34|98.74|0.00|-3.12|32777|81177|3552|10000|||99.11|102.80|0.00|3.10|0001A0A4|7|8| +21|2023-10-06T21:19:42.0730000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B4F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9355612|40478540|10000|10000|||100.00|80.10|0.00|0.00|25140|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A0A5|0|1| +31|2023-10-06T21:19:42.0730000-07:00|10FF0001||||| +37|2023-10-06T21:19:42.1170000-07:00|10FF0004|Buhojaqe Zijaqe|0001A09C|32881|81541|1700|10000|0||100.27|100.51|0.00|3.14|1C02|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:19:42.1170000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +261|2023-10-06T21:19:41.5550000-07:00|Change|10FF0003||| +21|2023-10-06T21:19:42.2060000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|28A60000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|9355612|40478540|10000|10000|||100.00|80.10|0.00|0.00|25140|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A0A6|0|1| +38|2023-10-06T21:19:42.2060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|25140|129071|10000|10000|0||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:42.2060000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:19:42.2500000-07:00|10FF0003|Gegehi Gehi|0001A09C|38368|73814|4850|10000|0||100.79|100.57|0.00|-3.10|2303|0|0|02|050004D3|0|C1F00000|||||| +26|2023-10-06T21:19:42.2500000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:19:42.2500000-07:00|40022472|Zeromus|0001A09F|9347518||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:42.2500000-07:00|40022472|Zeromus|0001A0A0|9345237||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:19:41.7870000-07:00|40022CC7|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.38|100.62|0.00|-0.03| +261|2023-10-06T21:19:41.7870000-07:00|Change|10FF0009||| +261|2023-10-06T21:19:41.7870000-07:00|Remove|40022CC7| +37|2023-10-06T21:19:42.3820000-07:00|10FF0008|Kokosaze Lulusaze|0001A09C|32977|90216|10000|10000|0||99.90|99.90|0.00|3.14|1F04|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:19:42.3820000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +39|2023-10-06T21:19:42.3820000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-0.46| +21|2023-10-06T21:19:42.3820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9345237|40478540|10000|10000|||100.00|80.10|0.00|0.00|24302|81809|9300|10000|||99.38|99.69|0.00|3.11|0001A0A7|0|1| +37|2023-10-06T21:19:42.4260000-07:00|40022472|Zeromus|0001A095|9315238||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:42.4710000-07:00|40022472|Zeromus|0001A0A2|9308217||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:42.5160000-07:00|10FF0006|Wowobora Gogobora|0001A09C|38730|81809|9300|10000|0||99.38|99.69|0.00|3.11|1B05|0|0|01|08000096|0|41700000|| +26|2023-10-06T21:19:42.5160000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +21|2023-10-06T21:19:42.5160000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|200004|D9E20000|1CC80F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|58369|155812|10000|10000|||99.84|99.05|0.00|3.13|58369|155812|10000|10000|||99.84|99.05|0.00|3.13|0001A0A8|0|1| +261|2023-10-06T21:19:42.0230000-07:00|Change|10FF0004||||| +261|2023-10-06T21:19:42.0230000-07:00|Change|10FF0006||| +37|2023-10-06T21:19:42.6040000-07:00|40022472|Zeromus|0001A0A5|9305322||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:42.6480000-07:00|10FF0007|Kehabiqo Febiqo|0001A09C|67297|155812|10000|10000|0||99.84|99.05|0.00|3.13|1506|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:19:42.6480000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +37|2023-10-06T21:19:42.6480000-07:00|10FF0009|Zewo Negiwo|0001A0A4|47191||||||99.11|102.80|0.00|3.10| +37|2023-10-06T21:19:42.6480000-07:00|40022472|Zeromus|0001A0A1|9301773||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:42.6930000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|716003|33DF0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|9305322|40478540|10000|10000|||100.00|80.10|0.00|0.00|41910|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A0A9|0|1| +37|2023-10-06T21:19:42.7820000-07:00|10FF0001|Sesuga Sapisuga|0001A09C|34132|129071|10000|10000|0||100.34|98.74|0.00|-3.12|1307|0|0|01|0A000096|0|41700000|| +26|2023-10-06T21:19:42.7820000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:19:42.7820000-07:00|10FF000A|Dukaro Nezikaro|0001A0A4|64528||||||99.60|100.85|0.00|3.12| +37|2023-10-06T21:19:42.9160000-07:00|10FF0004|Buhojaqe Zijaqe|0001A0A4|46830||||||100.27|100.51|0.00|3.14| +37|2023-10-06T21:19:42.9160000-07:00|40022472|Zeromus|0001A0A7|9301538||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|2C6C0000|130E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|0001A0AA|0|8| +22|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|2C5F0000|FE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|38368|73814|4850|10000|||100.79|100.57|0.00|-3.10|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|0001A0AA|1|8| +22|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|1B8B0000|110E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|32977|90216|10000|10000|||99.90|99.90|0.00|3.14|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|0001A0AA|2|8| +22|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|2E5A0000|290E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|64528|82773|10000|10000|||99.60|100.85|0.00|3.12|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|0001A0AA|3|8| +22|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|2D4D0000|7B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|38730|81809|9300|10000|||99.38|99.69|0.00|3.11|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|0001A0AA|4|8| +22|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|21A50000|D40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67297|155812|10000|10000|||99.84|99.05|0.00|3.13|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|0001A0AA|5|8| +22|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|1CC20000|30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|34132|129071|10000|10000|||100.34|98.74|0.00|-3.12|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|0001A0AA|6|8| +22|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|200004|2D740000|B90E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|47191|81177|3552|10000|||99.11|102.80|0.00|3.10|32881|81541|1700|10000|||100.27|100.51|0.00|3.14|0001A0AA|7|8| +38|2023-10-06T21:19:42.9620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|67297|155812|10000|10000|8||99.84|99.05|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:42.9620000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:19:42.9620000-07:00|10FF0009|Zewo Negiwo|005A5A18|47191|81177|3552|10000|22||99.11|102.80|0.00|3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:42.9620000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:19:42.9620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|32977|90216|10000|10000|12||99.90|99.90|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:42.9620000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:19:42.9620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|38730|81809|9300|10000|22||99.38|99.69|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:42.9620000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:19:42.9620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|34132|129071|10000|10000|9||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:42.9620000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:19:42.9620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46830|81541|700|10000|22||100.27|100.51|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:42.9620000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:19:42.9620000-07:00|10FF0003|Gegehi Gehi|005A5A23|38368|73814|4850|10000|24||100.79|100.57|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:42.9620000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:19:42.9620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|64528|82773|10000|10000|22||99.60|100.85|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:42.9620000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +39|2023-10-06T21:19:43.0050000-07:00|10FF000A|Dukaro Nezikaro|65355|82773|10000|10000|||99.60|100.85|0.00|3.12| +37|2023-10-06T21:19:43.0500000-07:00|10FF0003|Gegehi Gehi|0001A0A4|60908|73814|4850|10000|24||100.79|100.57|0.00|-3.10|2303|0|0|01|050004D3|0|C1F00000|| +37|2023-10-06T21:19:43.0950000-07:00|40022472|Zeromus|0001A0A9|9288259||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:43.1390000-07:00|10FF0007|Kehabiqo Febiqo|0001A0A8|123075|155812|10000|10000|8||99.84|99.05|0.00|3.13|1500|0|0|01|09000A79|0|41700000|| +26|2023-10-06T21:19:43.1390000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +37|2023-10-06T21:19:43.1830000-07:00|10FF0008|Kokosaze Lulusaze|0001A0A4|47105||||||99.90|99.90|0.00|3.14| +24|2023-10-06T21:19:43.2290000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1E54|32977|90216|10000|10000|||99.90|99.90|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|46830|81541|700|10000|||100.27|100.51|0.00|3.14| +38|2023-10-06T21:19:43.2290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54869|90216|10000|10000|12||99.90|99.90|0.00|3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:19:43.2730000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2B3E|65355|82773|10000|10000|||99.60|100.85|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|46830|81541|700|10000|||100.27|100.51|0.00|3.14| +38|2023-10-06T21:19:43.2730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76425|82773|10000|10000|22||99.60|100.85|0.00|3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:19:43.3180000-07:00|10FF0006|Wowobora Gogobora|0001A0A4|53156||||||99.38|99.69|0.00|3.11| +24|2023-10-06T21:19:43.3180000-07:00|10FF0003|Gegehi Gehi|HoT|0|2470|60908|73814|4850|10000|||100.79|100.57|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|46830|81541|700|10000|||100.27|100.51|0.00|3.14| +21|2023-10-06T21:19:43.3180000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|33CE0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|9288259|40478540|10000|10000|||100.00|80.10|0.00|0.00|38730|81809|9300|10000|||99.38|99.69|0.00|3.11|0001A0AB|0|1| +38|2023-10-06T21:19:43.3180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53156|81809|9000|10000|22||99.38|99.69|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:43.3180000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:19:43.3180000-07:00|10FF0003|Gegehi Gehi|005A5A23|70236|73814|4850|10000|24||100.79|100.57|0.00|-3.10|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:19:43.4070000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|24B5|46830|81541|700|10000|||100.27|100.51|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|46830|81541|700|10000|||100.27|100.51|0.00|3.14| +38|2023-10-06T21:19:43.4070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56227|81541|1250|10000|22||100.27|100.51|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:43.4520000-07:00|10FF0007|Kehabiqo Febiqo|0001A0A4|139819||||||99.84|99.05|0.00|3.13| +37|2023-10-06T21:19:43.4520000-07:00|40022472|Zeromus|0001A0A3|9268699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:43.4520000-07:00|10FF0003|Gegehi Gehi|0001A0A3|70236|73814|4850|10000|24||100.79|100.57|0.00|-3.10|2300|0|0|01|050004D3|0|41F00000|| +38|2023-10-06T21:19:43.4520000-07:00|10FF0003|Gegehi Gehi|005A5A23|70236|73814|4850|10000|24||100.79|100.57|0.00|-3.10|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:19:43.4970000-07:00|40022472|Zeromus|0001A0A6|9258293||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:43.4970000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3521|123075|155812|10000|10000|||99.84|99.05|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|123075|155812|10000|10000|||99.84|99.05|0.00|3.13| +24|2023-10-06T21:19:43.4970000-07:00|40022472|Zeromus|DoT|A92|503|9288259|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|53156|81809|9000|10000|||99.38|99.69|0.00|3.11| +24|2023-10-06T21:19:43.4970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|3361|53156|81809|9000|10000|||99.38|99.69|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|56227|81541|1250|10000|||100.27|100.51|0.00|3.14| +21|2023-10-06T21:19:43.4970000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9288259|40478540|10000|10000|||100.00|80.10|0.00|0.00|70236|73814|4850|10000|||100.79|100.57|0.00|-3.10|0001A0AC|0|1| +21|2023-10-06T21:19:43.4970000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|76425|82773|10000|10000|||99.60|100.85|0.00|3.12|76425|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A0AD|0|1| +38|2023-10-06T21:19:43.4970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|153420|155812|10000|10000|8||99.84|99.05|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:43.4970000-07:00|40022472|Zeromus|005A5A00|9257010|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:19:43.4970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66309|81809|9550|10000|22||99.38|99.69|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:43.4970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76425|82773|10000|10000|22||99.60|100.85|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:43.4970000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|82773|82773| +26|2023-10-06T21:19:43.4970000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:19:43.5400000-07:00|40022D1A||005A5A00|75608|78475|10000|10000|0||||||0|0|0|||| +24|2023-10-06T21:19:43.5410000-07:00|10FF0009|Zewo Negiwo|HoT|0|1F2A|47191|81177|3552|10000|||99.37|102.76|0.00|2.88|10FF0004|Buhojaqe Zijaqe|0|56227|81541|1250|10000|||100.27|100.51|0.00|3.14| +21|2023-10-06T21:19:43.5410000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|2F650000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|9257010|40478540|10000|10000|||100.00|80.10|0.00|0.00|54869|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A0AE|0|1| +38|2023-10-06T21:19:43.5410000-07:00|40022D1A||005A5A00|75608|78475|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:19:43.5410000-07:00|10FF0009|Zewo Negiwo|005A5A18|55169|81177|3552|10000|22||99.37|102.76|0.00|2.88|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:19:43.5850000-07:00|10FF0001|Sesuga Sapisuga|0001A0A4|47907||||||100.34|98.74|0.00|-3.12| +24|2023-10-06T21:19:43.5850000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|4C6C|34132|129071|10000|10000|||100.34|98.74|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|56227|81541|1250|10000|||100.27|100.51|0.00|3.14| +38|2023-10-06T21:19:43.5850000-07:00|40022472|Zeromus|005A5A00|9257010|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:19:43.5850000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40022472|Zeromus|00|40478540|81809| +38|2023-10-06T21:19:43.5850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|67471|129071|10000|10000|9||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:19:43.0910000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:19:43.0910000-07:00|Change|10FF0006||| +21|2023-10-06T21:19:43.6750000-07:00|40022488|Zeromus|8B41|unknown_8b41|40022488|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-2.36|44|44|0|10000|||100.00|100.00|0.00|-2.36|0001A0AF|0|1| +21|2023-10-06T21:19:43.6750000-07:00|4002248A|Zeromus|8B41|unknown_8b41|4002248A|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|0001A0B0|0|1| +21|2023-10-06T21:19:43.6750000-07:00|4002248C|Zeromus|8B40|unknown_8b40|4002248C|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-1.57|44|44|0|10000|||100.00|100.00|0.00|-1.57|0001A0B1|0|1| +21|2023-10-06T21:19:43.6750000-07:00|4002248E|Zeromus|8B40|unknown_8b40|4002248E|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|1.57|44|44|0|10000|||100.00|100.00|0.00|1.57|0001A0B2|0|1| +21|2023-10-06T21:19:43.6750000-07:00|40022490|Zeromus|8D2B|unknown_8d2b|40022490|Zeromus|1B|8D2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A0B3|0|1| +261|2023-10-06T21:19:43.1850000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:19:43.1850000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:19:43.1850000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:19:43.1850000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:19:43.1850000-07:00|Change|40022490||||||||||||| +21|2023-10-06T21:19:43.8990000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|12470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9257010|40478540|10000|10000|||100.00|80.10|0.00|0.00|76425|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A0B4|0|1| +03|2023-10-06T21:19:43.3720000-07:00|40022D1A|Bunshin|00|5A|10FF000A|00||8313|10897|75608|78475|10000|10000|||99.65|99.07|0.00|-0.02| +261|2023-10-06T21:19:43.3720000-07:00|Add|40022D1A||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:43.9430000-07:00|40022472|Zeromus|0001A0AB|9243748||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:43.9430000-07:00|10FF0006|Wowobora Gogobora|0001A0AB|66309|81809|9550|10000|22||99.38|99.69|0.00|3.11|1B00|0|0|01|0A000B25|0|0|| +21|2023-10-06T21:19:43.9430000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9257010|40478540|10000|10000|||100.00|80.10|0.00|0.00|153420|155812|10000|10000|||99.84|99.05|0.00|3.13|0001A0B5|0|1| +38|2023-10-06T21:19:43.9430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66309|81809|9550|10000|22||99.38|99.69|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:19:43.4630000-07:00|Change|40022D1A||| +37|2023-10-06T21:19:44.0320000-07:00|40022472|Zeromus|0001A0AC|9243747||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:44.0770000-07:00|10FF0004|Buhojaqe Zijaqe|0001A0AA|67599|81541|1250|10000|22||100.27|100.51|0.00|3.14|1C00|0|0|01|09000129|0|41E76E95|| +21|2023-10-06T21:19:44.1210000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|13300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9243747|40478540|10000|10000|||100.00|80.10|0.00|0.00|54869|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A0B6|0|1| +20|2023-10-06T21:19:44.1210000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.27|100.51|0.00|3.14| +38|2023-10-06T21:19:44.1660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66309|81809|9550|10000|22||99.38|99.69|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:44.1660000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:19:44.2100000-07:00|10FF0003|Gegehi Gehi|0001A0AA|73814|73814|4850|10000|24||100.79|100.57|0.00|-3.10|2301|0|0|02|01000000|0|0|||||| +38|2023-10-06T21:19:44.2100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4850|10000|24||100.79|100.57|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:44.2100000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +37|2023-10-06T21:19:44.2540000-07:00|10FF000A|Dukaro Nezikaro|0001A0AD|76425|82773|10000|10000|22||99.60|100.85|0.00|3.12|1E00|0|0|02|080007A2|05|41F00000|||||| +38|2023-10-06T21:19:44.2540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|76425|82773|10000|10000|22||99.60|100.85|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:44.2990000-07:00|40022472|Zeromus|0001A0AE|9231614||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:43.8000000-07:00|Change|40022C1B||||||||| +37|2023-10-06T21:19:44.3440000-07:00|10FF0008|Kokosaze Lulusaze|0001A0AA|61920|90216|10000|10000|12||99.90|99.90|0.00|3.14|1F02|0|0|01|06000129|0|41E54BC3|| +21|2023-10-06T21:19:44.3440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9231614|40478540|10000|10000|||100.00|80.10|0.00|0.00|67471|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A0B7|0|1| +31|2023-10-06T21:19:44.3440000-07:00|10FF0001||||| +21|2023-10-06T21:19:44.3880000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20800000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|9231614|40478540|10000|10000|||100.00|80.10|0.00|0.00|153420|155812|10000|10000|||99.84|99.05|0.00|3.13|0001A0B8|0|1| +37|2023-10-06T21:19:44.4330000-07:00|40022472|Zeromus|0001A0B4|9226935||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:44.4770000-07:00|40022472|Zeromus|0001A0B5|9224075||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:44.4770000-07:00|10FF000A|Dukaro Nezikaro|0001A0AA|82773|82773|10000|10000|22||99.60|100.85|0.00|3.12|1E03|0|0|02|03000000|0|0|||||| +20|2023-10-06T21:19:44.4770000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|100.27|101.91|0.00|-3.05| +21|2023-10-06T21:19:44.4770000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|752003|71E30000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|9231614|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||100.79|100.57|0.00|-3.10|0001A0B9|0|1| +38|2023-10-06T21:19:44.4770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.60|100.85|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:44.4770000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|40478540| +261|2023-10-06T21:19:44.0310000-07:00|Change|40022D03||||| +261|2023-10-06T21:19:44.0310000-07:00|Change|10FF0009||||||||||||||||||| +261|2023-10-06T21:19:44.0310000-07:00|Change|10FF0003||| +261|2023-10-06T21:19:44.0310000-07:00|Change|10FF0003||| +38|2023-10-06T21:19:44.5220000-07:00|40022D1B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +39|2023-10-06T21:19:44.5220000-07:00|10FF0003|Gegehi Gehi|73814|73814|4650|10000|||100.79|100.57|0.00|-3.10| +38|2023-10-06T21:19:44.5220000-07:00|40022D1B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:19:44.5670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9224075|40478540|10000|10000|||100.00|80.10|0.00|0.00|61920|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A0BA|0|1| +21|2023-10-06T21:19:44.5670000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|19460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9224075|40478540|10000|10000|||100.00|80.10|0.00|0.00|66309|81809|9550|10000|||99.38|99.69|0.00|3.11|0001A0BB|0|1| +38|2023-10-06T21:19:44.5670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66309|81809|9550|10000|22||99.38|99.69|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:44.5670000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:19:44.1490000-07:00|Change|40022D1A||||| +37|2023-10-06T21:19:44.6110000-07:00|10FF0006|Wowobora Gogobora|0001A0AA|77906|81809|9550|10000|22||99.38|99.69|0.00|3.11|1B04|0|0|01|09000129|0|41E328F1|| +39|2023-10-06T21:19:44.6110000-07:00|10FF0009|Zewo Negiwo|55980|81177|3773|10000|||100.27|101.91|0.00|-3.05| +261|2023-10-06T21:19:44.1490000-07:00|Change|10FF0004||||||||||||| +39|2023-10-06T21:19:44.7000000-07:00|10FF0008|Kokosaze Lulusaze|62822|90216|10000|10000|||99.90|99.90|0.00|3.14| +21|2023-10-06T21:19:44.7000000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|29C40000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|9224075|40478540|10000|10000|||100.00|80.10|0.00|0.00|67471|129071|10000|10000|||100.34|98.74|0.00|-3.12|0001A0BC|0|1| +38|2023-10-06T21:19:44.7000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|67471|129071|10000|10000|9||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:44.7000000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +03|2023-10-06T21:19:44.2410000-07:00|40022D1B|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.44|97.97|0.00|-0.03| +261|2023-10-06T21:19:44.2410000-07:00|Add|40022D1B||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:19:44.2410000-07:00|Change|40022D1B||| +37|2023-10-06T21:19:44.7450000-07:00|10FF0007|Kehabiqo Febiqo|0001A0AA|155812|155812|10000|10000|8||99.84|99.05|0.00|3.13|1505|0|0|02|04000000|0|0|||||| +24|2023-10-06T21:19:44.7450000-07:00|40022472|Zeromus|DoT|0|1A09|9224075|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|67471|129071|10000|10000|||100.34|98.74|0.00|-3.12| +38|2023-10-06T21:19:44.7450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|8||99.84|99.05|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:44.7450000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0007|Kehabiqo Febiqo|00|155812|40478540| +38|2023-10-06T21:19:44.7450000-07:00|40022472|Zeromus|005A5A00|9217410|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T21:19:44.7890000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|200004|218C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|67471|129071|10000|10000|||100.34|98.74|0.00|-3.12|73956|77430|10000|10000|||100.05|98.22|0.00|2.09|0001A0BD|0|1| +21|2023-10-06T21:19:44.7890000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9217410|40478540|10000|10000|||100.00|80.10|0.00|0.00|62822|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A0BE|0|1| +38|2023-10-06T21:19:44.7890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|67471|129071|10000|10000|9||100.34|98.74|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:44.7890000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:19:44.8340000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40022472|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|9217410|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|0001A0BF|0|1| +38|2023-10-06T21:19:44.8340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.60|100.85|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:44.8340000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:19:44.8800000-07:00|40022472|Zeromus|0001A0B7|9215730||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:44.8800000-07:00|10FF0001|Sesuga Sapisuga|0001A0AA|74833|129071|10000|10000|9||100.34|98.74|0.00|-3.12|1306|0|0|01|0B000129|0|41E10414|| +39|2023-10-06T21:19:44.8800000-07:00|10FF0001|Sesuga Sapisuga|76123|129071|10000|10000|||100.34|98.74|0.00|-3.12| +39|2023-10-06T21:19:44.8800000-07:00|10FF0004|Buhojaqe Zijaqe|68414|81541|1450|10000|||100.27|100.51|0.00|3.14| +36|2023-10-06T21:19:44.8800000-07:00|580C|3| +37|2023-10-06T21:19:44.9240000-07:00|40022472|Zeromus|0001A0B6|9210818||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:44.9240000-07:00|40022D1A|Bunshin|64AF|Phantom Kamaitachi|40022472|Zeromus|350003|40EA0000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|9217410|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||99.62|100.87|0.00|3.12|0001A0C0|0|1| +261|2023-10-06T21:19:44.4400000-07:00|Change|40022D1A||||||||| +39|2023-10-06T21:19:44.9690000-07:00|10FF0007|Kehabiqo Febiqo|155812|155812|10000|10000|||99.84|99.05|0.00|3.13| +37|2023-10-06T21:19:45.0140000-07:00|40022472|Zeromus|0001A0B8|9202498||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:45.0140000-07:00|10FF0009|Zewo Negiwo|0001A0AA|67616|81177|3773|10000|22||100.27|101.91|0.00|-3.05|1807|0|0|01|06000129|0|41DFEF99|| +39|2023-10-06T21:19:45.0140000-07:00|10FF0006|Wowobora Gogobora|78724|81809|9750|10000|||99.38|99.69|0.00|3.11| +261|2023-10-06T21:19:44.5370000-07:00|Change|10FF0003||| +261|2023-10-06T21:19:44.5370000-07:00|Change|10FF0006||| +261|2023-10-06T21:19:44.5370000-07:00|Change|10FF0009||||| +37|2023-10-06T21:19:45.3260000-07:00|40022472|Zeromus|0001A0BA|9200257||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:45.3260000-07:00|40022472|Zeromus|0001A0BB|9193787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:45.4150000-07:00|40022472|Zeromus|0001A0BE|9188660||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:45.4150000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|0.50| +21|2023-10-06T21:19:45.5060000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9193787|40478540|10000|10000|||100.00|80.10|0.00|0.00|78724|81809|9750|10000|||99.38|99.69|0.00|3.11|0001A0C1|0|1| +22|2023-10-06T21:19:45.5060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|1B5D0000|C8000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|0001A0C2|0|8| +22|2023-10-06T21:19:45.5060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|2E470000|B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73814|73814|4650|10000|||100.79|100.57|0.00|-3.10|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|0001A0C2|1|8| +22|2023-10-06T21:19:45.5060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|2D0C0000|130E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|62822|90216|10000|10000|||99.90|99.90|0.00|3.14|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|0001A0C2|2|8| +22|2023-10-06T21:19:45.5060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|1B660000|D6000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.60|100.85|0.00|3.12|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|0001A0C2|3|8| +22|2023-10-06T21:19:45.5060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1B580000|C0000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|78724|81809|9750|10000|||99.38|99.69|0.00|3.11|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|0001A0C2|4|8| +22|2023-10-06T21:19:45.5060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|200004|2E6C0000|460E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|0001A0C2|5|8| +22|2023-10-06T21:19:45.5060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|21AE0000|E30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.84|99.05|0.00|3.13|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|0001A0C2|6|8| +22|2023-10-06T21:19:45.5060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|1C230000|4000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|76123|129071|10000|10000|||100.36|98.57|0.00|3.02|68414|81541|1450|10000|||100.27|100.51|0.00|3.14|0001A0C2|7|8| +38|2023-10-06T21:19:45.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|8||99.84|99.05|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:45.5060000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:19:45.5060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62822|90216|10000|10000|20||99.90|99.90|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:45.5060000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:19:45.5060000-07:00|10FF0009|Zewo Negiwo|005A5A18|67616|81177|3773|10000|23||100.27|101.91|0.00|-3.05|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:45.5060000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:19:45.5060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|25||100.79|100.57|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:45.5060000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +261|2023-10-06T21:19:45.1250000-07:00|Change|40022D1B||| +34|2023-10-06T21:19:45.5490000-07:00|40022D1B|Carbuncle|40022D1B|Carbuncle|01| +37|2023-10-06T21:19:45.5940000-07:00|10FF0001|Sesuga Sapisuga|0001A0BD|84711||||||100.42|98.06|0.00|3.03| +261|2023-10-06T21:19:45.1250000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:19:45.8170000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|456003|71AA0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|9188660|40478540|10000|10000|||100.00|80.10|0.00|0.00|78724|81809|9750|10000|||99.38|99.69|0.00|3.11|0001A0C3|0|1| +38|2023-10-06T21:19:45.8170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|78724|81809|9450|10000|22||99.38|99.69|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:45.8170000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +22|2023-10-06T21:19:45.9060000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|23630000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|0001A0C4|0|8| +22|2023-10-06T21:19:45.9060000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|22FA0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.60|100.85|-0.02|3.12|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|0001A0C4|1|8| +22|2023-10-06T21:19:45.9060000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|21DE0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|68414|81541|450|10000|||100.27|100.51|0.00|3.14|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|0001A0C4|2|8| +22|2023-10-06T21:19:45.9060000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|4|21EF0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|73814|73814|4650|10000|||100.79|100.48|0.00|-3.12|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|0001A0C4|3|8| +22|2023-10-06T21:19:45.9060000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|21AD0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|62822|90216|10000|10000|||99.90|99.90|0.00|3.14|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|0001A0C4|4|8| +22|2023-10-06T21:19:45.9060000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|4|21BD0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|78724|81809|9450|10000|||99.38|99.69|0.00|3.11|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|0001A0C4|5|8| +22|2023-10-06T21:19:45.9060000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|2A250000|FC9C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.84|99.05|0.00|3.13|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|0001A0C4|6|8| +22|2023-10-06T21:19:45.9060000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|235F0000|FC580E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|84711|129071|10000|10000|||100.58|96.06|0.00|3.08|67616|81177|3773|10000|||100.27|101.91|0.00|-3.05|0001A0C4|7|8| +37|2023-10-06T21:19:45.9950000-07:00|40022472|Zeromus|0001A0BC|9177968||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:45.9950000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.60|100.84|0.00|3.11| +261|2023-10-06T21:19:45.4960000-07:00|Change|10FF0006||| +261|2023-10-06T21:19:45.4960000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:19:46.0400000-07:00|40022472|Zeromus|0001A0C1|9177780||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:46.0400000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|724003|76B90000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|9177968|40478540|10000|10000|||100.00|80.10|0.00|0.00|62822|90216|10000|10000|||99.90|99.90|0.00|3.14|0001A0C5|0|1| +21|2023-10-06T21:19:46.0840000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9177968|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.60|100.82|0.00|3.10|0001A0C6|0|1| +261|2023-10-06T21:19:45.6860000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:19:46.2180000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|257F|62822|90216|10000|10000|||99.91|99.87|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|68414|81541|450|10000|||100.27|100.51|0.00|3.14| +38|2023-10-06T21:19:46.2190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72421|90216|10000|10000|20||99.91|99.87|0.00|3.10|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:19:46.2610000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2B3E|82773|82773|10000|10000|||99.62|100.29|0.00|3.12|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||99.62|100.29|0.00|3.12| +38|2023-10-06T21:19:46.2610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.62|100.29|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:19:46.3060000-07:00|40022472|Zeromus|0001A0B9|9148625||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:46.3060000-07:00|10FF0003|Gegehi Gehi|HoT|0|2CC7|73814|73814|4650|10000|||100.79|98.11|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|68414|81541|450|10000|||100.27|100.51|0.00|3.14| +38|2023-10-06T21:19:46.3060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|25||100.79|98.11|0.00|-3.14|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:19:46.3950000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1E5A|68414|81541|450|10000|||100.27|100.51|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|68414|81541|450|10000|||100.27|100.51|0.00|-3.14| +38|2023-10-06T21:19:46.3950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|76184|81541|1000|10000|22||100.27|100.51|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:46.4400000-07:00|40022472|Zeromus|0001A0C3|9119527||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:46.4400000-07:00|10FF0006|Wowobora Gogobora|0001A0C3|78724|81809|9450|10000|22||99.38|99.68|0.00|3.12|1B00|0|0|01|0B25|0|0|| +38|2023-10-06T21:19:46.4400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|78724|81809|9450|10000|22||99.38|99.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:46.4840000-07:00|40022472|Zeromus|0001A0C0|9102909||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:46.4840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3CCE|155812|155812|10000|10000|||99.85|99.02|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|155812|155812|10000|10000|||99.85|99.02|0.00|3.13| +24|2023-10-06T21:19:46.4840000-07:00|40022472|Zeromus|DoT|A92|83A|9148625|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|78724|81809|9450|10000|||99.38|99.68|0.00|3.12| +24|2023-10-06T21:19:46.4840000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1E12|78724|81809|9450|10000|||99.38|99.68|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|68414|81541|450|10000|||100.27|100.51|0.00|-3.14| +21|2023-10-06T21:19:46.4840000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|1F440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9148625|40478540|10000|10000|||100.00|80.10|0.00|0.00|78724|81809|9450|10000|||99.38|99.68|0.00|3.12|0001A0C7|0|1| +38|2023-10-06T21:19:46.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|8||99.85|99.02|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:46.4840000-07:00|40022472|Zeromus|005A5A00|9100803|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:19:46.4840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9450|10000|22||99.38|99.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:46.4840000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T21:19:46.4840000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +24|2023-10-06T21:19:46.5290000-07:00|10FF0009|Zewo Negiwo|HoT|0|30AE|67616|81177|2773|10000|||100.27|101.84|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|76184|81541|1000|10000|||100.28|100.32|0.00|3.12| +38|2023-10-06T21:19:46.5290000-07:00|10FF0009|Zewo Negiwo|005A5A18|80078|81177|2773|10000|23||100.27|101.84|0.00|-3.07|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:19:46.5730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|4401|84711|129071|10000|10000|||100.74|91.58|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|76184|81541|1000|10000|||100.28|100.32|0.00|3.12| +38|2023-10-06T21:19:46.5730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102120|129071|10000|10000|9||100.74|91.58|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:46.6180000-07:00|10FF0004|Buhojaqe Zijaqe|0001A0C2|81541|81541|1000|10000|22||100.28|100.32|0.00|3.12|1C00|0|0|01|07000000|0|0|| +37|2023-10-06T21:19:46.6180000-07:00|40022472|Zeromus|0001A0C6|9097986||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:46.6180000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9100803|40478540|10000|10000|||100.00|80.10|0.00|0.00|84711|129071|10000|10000|||100.74|91.58|0.00|-3.10|0001A0C8|0|1| +38|2023-10-06T21:19:46.6180000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1000|10000|22||100.28|100.32|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:46.6180000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +31|2023-10-06T21:19:46.6180000-07:00|10FF0001||||| +261|2023-10-06T21:19:46.1490000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:19:46.2490000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:19:46.2490000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:19:46.7520000-07:00|10FF0003|Gegehi Gehi|0001A0C2|73814|73814|4650|10000|25||100.69|95.54|0.00|-3.12|2301|0|0|01|07000129|0|41E6603F|| +37|2023-10-06T21:19:46.7520000-07:00|10FF0009|Zewo Negiwo|0001A0C4|81177|81177|2773|10000|23||100.22|101.18|0.00|-3.07|1800|0|0|02|03000000|0|0|||||| +26|2023-10-06T21:19:46.7520000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:19:46.7520000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2773|10000|23||100.22|101.18|0.00|-3.07|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:46.7520000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0009|Zewo Negiwo|00|81177|40478540| +38|2023-10-06T21:19:46.7960000-07:00|40022472|Zeromus|005A5A00|9097986|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:19:46.7960000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +21|2023-10-06T21:19:46.8410000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|31600000|143E|340000|4|1D3C8000|11B|2A8000|0|0|0|0|0|0|0|0|9097986|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||99.91|97.50|0.00|3.11|0001A0C9|0|1| +37|2023-10-06T21:19:46.8860000-07:00|10FF0008|Kokosaze Lulusaze|0001A0C2|83953|90216|10000|10000|20||100.63|96.57|0.00|2.95|1F02|0|0|01|06000129|0|41E54FDC|| +37|2023-10-06T21:19:46.8860000-07:00|10FF000A|Dukaro Nezikaro|0001A0C4|82773|82773|10000|10000|22||99.86|95.27|0.00|3.09|1E01|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:19:46.8860000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +21|2023-10-06T21:19:46.9300000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|752003|119A0000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|9097986|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|2773|10000|||100.12|99.56|-0.02|-3.07|0001A0CA|0|1| +21|2023-10-06T21:19:46.9740000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9097986|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4650|10000|||100.73|94.07|0.00|3.13|0001A0CB|0|1| +261|2023-10-06T21:19:46.5440000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:19:47.0200000-07:00|10FF0004|Buhojaqe Zijaqe|0001A0C4|81541|81541|1000|10000|22||100.50|97.99|0.00|3.06|1C02|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:19:47.0200000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +21|2023-10-06T21:19:47.0200000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|25860000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|9097986|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1000|10000|||100.50|97.99|0.00|3.06|0001A0CC|0|1| +21|2023-10-06T21:19:47.0640000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|754003|5E0B0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|9097986|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4650|10000|||100.75|93.46|0.00|3.11|0001A0CD|0|1| +37|2023-10-06T21:19:47.1520000-07:00|40022472|Zeromus|0001A0C8|9095777||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:47.1520000-07:00|10FF0003|Gegehi Gehi|0001A0C4|73814|73814|4250|10000|25||100.77|92.82|0.00|-3.08|2303|0|0|01|06000096|0|41700000|| +26|2023-10-06T21:19:47.1520000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:19:47.1970000-07:00|40022472|Zeromus|0001A0C5|9065384||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:47.2410000-07:00|40022472|Zeromus|0001A0C7|9057380||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:47.2410000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9065384|40478540|10000|10000|||100.00|80.10|0.00|0.00|83953|90216|10000|10000|||101.01|94.48|0.00|2.97|0001A0CE|0|1| +21|2023-10-06T21:19:47.2410000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|752003|4B400000|4|2A7D8000|0|0|0|0|0|0|0|0|0|0|0|0|9065384|40478540|10000|10000|||100.00|80.10|0.00|0.00|102120|129071|10000|10000|||100.56|88.90|0.00|-3.08|0001A0CF|0|1| +21|2023-10-06T21:19:47.2410000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|736003|1360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9065384|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|600|10000|||100.49|96.69|0.00|-3.11|0001A0D0|0|1| +21|2023-10-06T21:19:47.2410000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.97|93.39|-0.02|3.09|82773|82773|10000|10000|||99.97|93.39|-0.02|3.09|0001A0D1|0|1| +38|2023-10-06T21:19:47.2410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102120|129071|9000|10000|9||100.56|88.90|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:47.2410000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:19:47.2410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.97|93.39|-0.02|3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:47.2410000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:19:47.2850000-07:00|10FF0009|Zewo Negiwo|0001A0C2|81177|81177|2373|10000|23||99.98|97.36|-0.02|-3.14|1805|0|0|01|06000129|0|41E21CA8|| +37|2023-10-06T21:19:47.2850000-07:00|10FF0008|Kokosaze Lulusaze|0001A0C4|90216|90216|10000|10000|20||101.01|94.48|0.00|2.97|1F04|0|0|02|04000000|0|0|||||| +26|2023-10-06T21:19:47.2850000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:19:47.2850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||101.01|94.48|0.00|2.97|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:47.2850000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +261|2023-10-06T21:19:46.7770000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:46.8970000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:19:47.3290000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9057380|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||100.01|94.10|-0.02|3.12|0001A0D2|0|1| +38|2023-10-06T21:19:47.3290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9450|10000|22||99.28|96.26|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:47.3290000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:19:46.8970000-07:00|Change|40022D1A||||||| +261|2023-10-06T21:19:47.0130000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T21:19:47.4190000-07:00|10FF0007|Kehabiqo Febiqo|0001A0C2|155812|155812|10000|10000|8||100.03|93.43|0.00|3.12|1506|0|0|01|08000129|0|41E10C45|| +37|2023-10-06T21:19:47.4190000-07:00|10FF0006|Wowobora Gogobora|0001A0C4|81809|81809|9450|10000|22||99.29|95.58|0.00|3.13|1B05|0|0|01|08000096|0|41700000|| +26|2023-10-06T21:19:47.4190000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +261|2023-10-06T21:19:47.0130000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:19:47.5080000-07:00|40022472|Zeromus|0001A0CB|9057379||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:47.5530000-07:00|10FF0001|Sesuga Sapisuga|0001A0C2|109323||||||100.56|88.90|0.00|-3.08| +37|2023-10-06T21:19:47.5530000-07:00|10FF0007|Kehabiqo Febiqo|0001A0C4|155812|155812|10000|10000|8||100.05|92.75|0.00|3.11|1506|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:19:47.5530000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|155812|81177| +39|2023-10-06T21:19:47.5530000-07:00|10FF0003|Gegehi Gehi|73814|73814|4450|10000|||100.79|92.17|0.00|-3.08| +261|2023-10-06T21:19:47.1320000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:19:47.1320000-07:00|Remove|40022CC6| +39|2023-10-06T21:19:47.5970000-07:00|10FF0009|Zewo Negiwo|81177|81177|2594|10000|||99.97|97.39|0.00|-3.13| +37|2023-10-06T21:19:47.6870000-07:00|10FF0001|Sesuga Sapisuga|0001A0C4|118378|129071|9000|10000|9||100.56|88.90|0.00|-3.08|1307|0|0|01|0A000096|0|41700000|| +26|2023-10-06T21:19:47.6870000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +261|2023-10-06T21:19:47.2250000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:19:47.7310000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.37|92.07|0.00|2.98| +37|2023-10-06T21:19:47.7770000-07:00|40022472|Zeromus|0001A0D0|9057069||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:47.7770000-07:00|40022472|Zeromus|DoT|0|246D|9057379|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|118378|129071|9000|10000|||100.56|88.90|0.00|-3.08| +21|2023-10-06T21:19:47.7770000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.02|92.10|0.00|3.09|82773|82773|10000|10000|||100.02|92.10|0.00|3.09|0001A0D3|0|1| +38|2023-10-06T21:19:47.7770000-07:00|40022472|Zeromus|005A5A00|9047744|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:19:47.7770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||100.02|92.10|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:47.7770000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +261|2023-10-06T21:19:47.3150000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:19:47.8660000-07:00|40022472|Zeromus|0001A0D2|9044872||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:47.8660000-07:00|10FF0001|Sesuga Sapisuga|119668|129071|9200|10000|||100.56|88.90|0.00|-3.08| +36|2023-10-06T21:19:47.8660000-07:00|58E8|3| +39|2023-10-06T21:19:47.9110000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|800|10000|||100.31|92.91|0.00|-3.13| +37|2023-10-06T21:19:47.9550000-07:00|40022472|Zeromus|0001A0CC|9035266||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:47.9990000-07:00|40022472|Zeromus|0001A0CE|9032294||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:47.9990000-07:00|40022472|Zeromus|0001A0CF|9013030||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:47.9990000-07:00|10FF0001|Sesuga Sapisuga|0001A0CF|129071|129071|9200|10000|9||100.56|88.90|0.00|-3.08|1300|0|0|01|06000000|0|0|| +21|2023-10-06T21:19:47.9990000-07:00|40022C1B|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|14D10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|119668|129071|9200|10000|||100.56|88.90|0.00|-3.08|73956|77430|10000|10000|||100.05|98.22|0.00|3.14|0001A0D4|0|1| +39|2023-10-06T21:19:47.9990000-07:00|10FF0007|Kehabiqo Febiqo|155812|155812|10000|10000|||100.11|90.08|0.00|3.12| +39|2023-10-06T21:19:47.9990000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9650|10000|||99.87|91.92|0.00|3.00| +38|2023-10-06T21:19:47.9990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|9||100.56|88.90|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:47.9990000-07:00|6E9|Doom|0.00|40022472|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +261|2023-10-06T21:19:47.5990000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:19:48.1340000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|724003|2FBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9013030|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4450|10000|||100.87|88.51|0.00|3.13|0001A0D5|0|1| +37|2023-10-06T21:19:48.2230000-07:00|40022472|Zeromus|0001A0CA|9008524|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:19:48.2230000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +261|2023-10-06T21:19:47.7100000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:19:47.7100000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:19:48.2670000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|556003|94650000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|9013030|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.88|88.02|0.00|3.09|0001A0D6|0|1| +21|2023-10-06T21:19:48.2670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9013030|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.88|88.02|0.00|3.09|0001A0D7|0|1| +38|2023-10-06T21:19:48.2670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.88|88.02|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:48.2670000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:19:48.2670000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +04|2023-10-06T21:19:47.8280000-07:00|40022D03|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||100.99|102.60|0.00|3.11| +261|2023-10-06T21:19:47.8280000-07:00|Remove|40022D03| +21|2023-10-06T21:19:48.3130000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|454003|43E10000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|9013030|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9650|10000|||100.12|90.54|0.00|2.98|0001A0D8|0|1| +38|2023-10-06T21:19:48.3130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9350|10000|22||100.12|90.54|0.00|2.98|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:48.3130000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:19:47.8280000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:19:48.3560000-07:00|40022472|Zeromus|0001A0C9|8995884||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:47.8280000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:19:48.4010000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|3.10| +26|2023-10-06T21:19:48.4900000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:19:48.4900000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0001|Sesuga Sapisuga|4|4AD70000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||100.18|88.66|0.00|-3.05|81541|81541|800|10000|||100.16|91.07|0.00|-3.10|0001A0D9|0|1| +261|2023-10-06T21:19:48.0650000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:19:48.5800000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5DAB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8995884|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.34|86.60|0.00|-3.05|0001A0DA|0|1| +261|2023-10-06T21:19:48.1750000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:19:48.6240000-07:00|40022472|Zeromus|0001A0CD|8971809||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:48.6690000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8971809|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9350|10000|||100.30|88.51|0.00|-3.10|0001A0DB|0|1| +21|2023-10-06T21:19:48.7150000-07:00|40022480|Zeromus|8B41|unknown_8b41|40022480|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-0.79|44|44|0|10000|||100.00|100.00|0.00|-0.79|0001A0DC|0|1| +21|2023-10-06T21:19:48.7150000-07:00|40022482|Zeromus|8B41|unknown_8b41|40022482|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|2.36|44|44|0|10000|||100.00|100.00|0.00|2.36|0001A0DD|0|1| +21|2023-10-06T21:19:48.7150000-07:00|40022484|Zeromus|8B40|unknown_8b40|40022484|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A0DE|0|1| +21|2023-10-06T21:19:48.7150000-07:00|40022486|Zeromus|8B40|unknown_8b40|40022486|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|3.14|0001A0DF|0|1| +261|2023-10-06T21:19:48.2690000-07:00|Change|40022480||||||||||||| +261|2023-10-06T21:19:48.2690000-07:00|Change|40022482||||||||||||| +261|2023-10-06T21:19:48.2690000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:19:48.2690000-07:00|Change|40022484||||||||||||| +261|2023-10-06T21:19:48.2690000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:19:48.8030000-07:00|40022472|Zeromus|0001A0D7|8969660||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:48.8030000-07:00|10FF000A|Dukaro Nezikaro|0001A0D7|82773|82773|10000|10000|22||99.75|85.69|-0.01|3.09|1E00|0|0|01|03000A82|01|C1F00000|| +38|2023-10-06T21:19:48.8040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|9||99.50|87.60|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:48.8040000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:19:48.3670000-07:00|Change|40022D1B||||||||| +21|2023-10-06T21:19:48.8930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8969660|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||99.50|87.60|0.00|-3.04|0001A0E0|0|1| +31|2023-10-06T21:19:48.8930000-07:00|10FF0001||||| +37|2023-10-06T21:19:48.9370000-07:00|40022472|Zeromus|0001A0D8|8952283||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:48.9370000-07:00|10FF0006|Wowobora Gogobora|0001A0D8|81809|81809|9350|10000|22||100.26|86.81|0.00|-3.11|1B00|0|0|01|0B25|0|0|| +21|2023-10-06T21:19:48.9370000-07:00|10FF0009|Zewo Negiwo|DF2|Tetragrammaton|10FF0001|Sesuga Sapisuga|200004|8A790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||99.50|87.60|0.00|-3.04|81177|81177|2594|10000|||102.03|89.04|0.00|2.97|0001A0E1|0|1| +38|2023-10-06T21:19:48.9370000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9350|10000|22||100.26|86.81|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:48.9820000-07:00|40022472|Zeromus|0001A0D6|8914294||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:48.9820000-07:00|10FF000A|Dukaro Nezikaro|0001A0D6|82773|82773|10000|10000|22||99.75|85.65|0.00|3.09|1E00|0|0|01|03000A82|01|41F00000|| +39|2023-10-06T21:19:48.9820000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.75|85.65|0.00|3.09| +38|2023-10-06T21:19:48.9820000-07:00|40022472|Zeromus|005A5A00|8914294|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:19:48.9820000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +38|2023-10-06T21:19:48.9820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.75|85.65|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:19:48.5560000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:19:49.1170000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|1D320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8914294|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9350|10000|||100.21|85.40|-0.02|-3.13|0001A0E2|0|1| +38|2023-10-06T21:19:49.1170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9350|10000|22||100.21|85.40|-0.02|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:49.1170000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:19:49.1620000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||101.02|85.59|-0.02|-2.91|90216|90216|10000|10000|||101.02|85.59|-0.02|-2.91|0001A0E3|0|1| +38|2023-10-06T21:19:49.1620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||101.02|85.59|-0.02|-2.91|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:49.1620000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:19:49.2060000-07:00|40022472|Zeromus|0001A0DB|8914105||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:49.2060000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1E52|90216|90216|10000|10000|||100.73|84.92|0.00|-2.63|10FF0004|Buhojaqe Zijaqe|0|81541|81541|800|10000|||100.10|88.34|0.00|3.12| +38|2023-10-06T21:19:49.2060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||100.73|84.92|0.00|-2.63|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:19:49.2510000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1E89|82773|82773|10000|10000|||99.77|85.65|-0.02|3.09|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||99.77|85.65|-0.02|3.09| +21|2023-10-06T21:19:49.2510000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3A7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8914294|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||100.17|84.55|0.00|3.14|0001A0E4|0|1| +38|2023-10-06T21:19:49.2510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.77|85.65|-0.02|3.09|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:19:49.2950000-07:00|40022472|Zeromus|0001A0D5|8901882||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:49.2950000-07:00|10FF0003|Gegehi Gehi|HoT|0|1E19|73814|73814|4450|10000|||100.94|85.95|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|800|10000|||100.10|88.34|0.00|3.12| +38|2023-10-06T21:19:49.2950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4450|10000|25||100.94|85.95|0.00|3.12|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:19:48.9030000-07:00|Change|10FF0008||||||||| +24|2023-10-06T21:19:49.3840000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2D9B|81541|81541|800|10000|||100.11|87.72|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|800|10000|||100.11|87.72|0.00|3.12| +38|2023-10-06T21:19:49.3840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|22||100.11|87.72|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:19:48.9030000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:19:49.4280000-07:00|40022472|Zeromus|0001A0E0|8900099||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:49.4740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|38B1|155812|155812|10000|10000|||100.18|84.52|0.00|-3.10|10FF0007|Kehabiqo Febiqo|0|155812|155812|10000|10000|||100.18|84.52|0.00|-3.10| +24|2023-10-06T21:19:49.4740000-07:00|10FF0006|Wowobora Gogobora|HoT|0|247E|81809|81809|9350|10000|||100.21|84.40|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||100.12|87.16|0.00|3.12| +20|2023-10-06T21:19:49.4740000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|100.94|85.86|0.00|3.12| +38|2023-10-06T21:19:49.4740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|8||100.18|84.52|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:49.4740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9350|10000|22||100.21|84.40|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T21:19:49.5190000-07:00|40022D1A|Bunshin|75608|78475|10000|10000|||99.63|100.57|0.00|3.12| +24|2023-10-06T21:19:49.5190000-07:00|10FF0009|Zewo Negiwo|HoT|0|1F44|81177|81177|2594|10000|||101.41|86.40|0.00|-2.17|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||100.12|86.54|0.00|3.13| +38|2023-10-06T21:19:49.5190000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2594|10000|23||101.41|86.40|0.00|-2.17|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:19:49.1370000-07:00|Change|10FF0004||||||||| +24|2023-10-06T21:19:49.5630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|4656|129071|129071|9200|10000|||99.50|87.60|0.00|-3.04|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||100.12|86.54|0.00|3.13| +38|2023-10-06T21:19:49.5630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|9||99.50|87.60|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:19:49.2340000-07:00|Change|40022D1B||||||||| +37|2023-10-06T21:19:49.7410000-07:00|40022472|Zeromus|0001A0DA|8876120||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:49.7410000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|710003|14A40000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|8900099|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||99.50|87.60|0.00|3.08|0001A0E5|0|1| +20|2023-10-06T21:19:49.7410000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|101.02|85.35|0.00|-2.78| +261|2023-10-06T21:19:49.3300000-07:00|Change|10FF0009||||||||||||||||||||||||| +20|2023-10-06T21:19:49.8290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.07|85.18|0.00|-3.12| +37|2023-10-06T21:19:49.8750000-07:00|40022472|Zeromus|0001A0E4|8861147||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:49.8750000-07:00|40022472|Zeromus|0001A0E2|8853673||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:49.9190000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|95D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8876120|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|83.09|0.00|-2.63|0001A0E6|0|1| +21|2023-10-06T21:19:49.9190000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|3AF50000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|8876120|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.87|85.62|-0.02|3.09|0001A0E7|0|1| +38|2023-10-06T21:19:49.9190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.87|85.62|-0.02|3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:49.9190000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +26|2023-10-06T21:19:49.9190000-07:00|7A2|Bunshin|24.29|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|82773|82773| +261|2023-10-06T21:19:49.4230000-07:00|Change|40022D1A||||||||| +21|2023-10-06T21:19:50.0080000-07:00|40022D1A|Bunshin|6517|Fleeting Raiju|40022472|Zeromus|552003|1B000000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|8853673|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||99.89|85.41|0.00|3.12|0001A0E8|0|1| +261|2023-10-06T21:19:49.5190000-07:00|Change|40022D1A||| +261|2023-10-06T21:19:49.6350000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:19:50.3650000-07:00|40022472|Zeromus|0001A0E5|8848389||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:50.4530000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8848389|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.87|85.41|-0.01|3.12|0001A0E9|0|1| +39|2023-10-06T21:19:50.4980000-07:00|40022D1B|Carbuncle|77698|77698|10000|10000|||101.62|85.72|0.00|3.08| +39|2023-10-06T21:19:50.5420000-07:00|10FF0003|Gegehi Gehi|73814|73814|4650|10000|||100.94|85.86|0.00|-2.98| +261|2023-10-06T21:19:50.1030000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T21:19:50.6320000-07:00|10FF0009|Zewo Negiwo|81177|81177|2815|10000|||100.94|85.13|0.00|-2.95| +38|2023-10-06T21:19:50.6320000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|25||100.94|85.86|0.00|-2.98|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:50.6320000-07:00|2B|Weakness|0.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +37|2023-10-06T21:19:50.6770000-07:00|40022472|Zeromus|0001A0E6|8845992||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:50.6770000-07:00|40022472|Zeromus|0001A0E7|8830899||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:50.6770000-07:00|40022487|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|83.50|0.00|0.00|0001A0EA|0|0| +21|2023-10-06T21:19:50.6770000-07:00|40022489|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|116.50|0.00|0.00|0001A0EB|0|0| +21|2023-10-06T21:19:50.6770000-07:00|4002248B|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.00|100.00|0.00|0.00|0001A0EC|0|0| +21|2023-10-06T21:19:50.6770000-07:00|4002248D|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.00|100.00|0.00|0.00|0001A0ED|0|0| +21|2023-10-06T21:19:50.6770000-07:00|4002248F|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001A0EE|0|0| +21|2023-10-06T21:19:50.6770000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|34090000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|8848389|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|2594|10000|||100.94|85.13|0.00|-2.95|0001A0EF|0|1| +261|2023-10-06T21:19:50.2000000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:19:50.2000000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:19:50.2000000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:19:50.2000000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:19:50.2000000-07:00|Change|4002248F||||||||||||| +39|2023-10-06T21:19:50.7220000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.93|83.09|0.00|-2.63| +21|2023-10-06T21:19:50.7220000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BB60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8830899|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||100.18|84.52|0.00|-3.10|0001A0F0|0|1| +37|2023-10-06T21:19:50.7660000-07:00|40022472|Zeromus|0001A0E8|8823987||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:50.7660000-07:00|40022472|Zeromus|DoT|0|16D5|8830899|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1350|10000|||99.93|84.21|0.00|3.13| +20|2023-10-06T21:19:50.7660000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|100.09|83.77|0.00|-3.14| +21|2023-10-06T21:19:50.7660000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4D950000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|8830899|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1350|10000|||99.93|84.21|0.00|3.13|0001A0F1|0|1| +38|2023-10-06T21:19:50.7660000-07:00|40022472|Zeromus|005A5A00|8818142|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:19:50.3040000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T21:19:50.3040000-07:00|Change|10FF0009||||||||||||||||||||| +36|2023-10-06T21:19:50.8540000-07:00|59C4|3| +39|2023-10-06T21:19:50.8990000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9400|10000|||99.50|87.60|0.00|3.08| +39|2023-10-06T21:19:50.8990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1150|10000|||99.93|84.21|0.00|3.13| +21|2023-10-06T21:19:50.8990000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|454003|3CC40000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|8818142|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4650|10000|||100.94|85.86|0.00|-2.98|0001A0F2|0|1| +38|2023-10-06T21:19:50.8990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4450|10000|25||100.94|85.86|0.00|-2.98|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:50.8990000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:19:50.8990000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:19:50.3990000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:19:50.9870000-07:00|40022472|Zeromus|0001A0E9|8814655||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:50.9870000-07:00|10FF0007|Kehabiqo Febiqo|155812|155812|10000|10000|||100.18|84.52|0.00|-3.10| +39|2023-10-06T21:19:50.9870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9550|10000|||100.05|83.72|0.00|3.12| +26|2023-10-06T21:19:51.1220000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:19:51.1220000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|23420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8814655|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|83.09|0.00|-2.66|0001A0F3|0|1| +261|2023-10-06T21:19:50.7180000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T21:19:51.1670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8814655|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||99.32|87.40|0.00|-2.99|0001A0F4|0|1| +31|2023-10-06T21:19:51.1670000-07:00|10FF0001||||| +37|2023-10-06T21:19:51.2560000-07:00|40022472|Zeromus|0001A0F0|8811657||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:19:51.3010000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:19:51.3010000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|10E60000|104|6508000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|8811657|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||99.93|84.21|0.00|3.13|0001A0F5|0|1| +33|2023-10-06T21:19:51.3450000-07:00|80034E7C|80000004|BB7|00|00|00| +21|2023-10-06T21:19:51.3450000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8811657|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||99.93|84.21|0.00|3.13|0001A0F6|0|1| +39|2023-10-06T21:19:51.3900000-07:00|40022C1B|Ruby Carbuncle|73956|77430|10000|10000|||100.05|98.22|0.00|-3.14| +38|2023-10-06T21:19:51.4340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|10||100.18|84.52|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:51.4340000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +37|2023-10-06T21:19:51.5690000-07:00|40022472|Zeromus|0001A0F1|8791796||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:51.1830000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:19:51.6580000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|13EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8791796|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.93|83.09|0.00|3.12|0001A0F7|0|1| +37|2023-10-06T21:19:51.7030000-07:00|40022472|Zeromus|0001A0F4|8790132||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:51.7030000-07:00|40022472|Zeromus|0001A0F2|8774576||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:51.7480000-07:00|40022472|Zeromus|0001A0F3|8765550||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:51.7480000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|39330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8791796|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||98.43|84.48|0.00|3.13|0001A0F8|0|1| +21|2023-10-06T21:19:51.7480000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|754003|3C730000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|8791796|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9550|10000|||100.05|83.70|0.00|-3.12|0001A0F9|0|1| +261|2023-10-06T21:19:51.3760000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T21:19:51.8800000-07:00|40022472|Zeromus|0001A0F6|8765402||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:51.8800000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|352D0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|8765550|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4450|10000|||99.53|85.77|0.00|-1.82|0001A0FA|0|1| +38|2023-10-06T21:19:51.8800000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|25||99.53|85.77|0.00|-1.82|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:51.8800000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:19:51.8800000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:19:51.4740000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T21:19:51.5660000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:19:51.9240000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8765402|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4150|10000|||97.88|85.64|-0.01|2.79|0001A0FB|0|1| +37|2023-10-06T21:19:51.9690000-07:00|40022472|Zeromus|0001A0EF|8752081||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:52.0140000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.84|85.41|0.00|-2.95| +261|2023-10-06T21:19:51.6790000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T21:19:52.1040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|9||93.85|86.72|0.00|-2.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:52.1040000-07:00|13D|Fey Illumination|0.00|40022C1B|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +21|2023-10-06T21:19:52.1480000-07:00|10FF0009|Zewo Negiwo|4097|Afflatus Misery|40022472|Zeromus|750003|C9760000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|8752081|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|2415|10000|||98.05|86.20|-0.01|-1.11|0001A0FC|0|1| +24|2023-10-06T21:19:52.2370000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1F8C|90216|90216|10000|10000|||98.73|83.00|0.00|-1.69|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1150|10000|||99.91|84.21|0.00|-1.88| +38|2023-10-06T21:19:52.2370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|10||97.15|84.45|0.00|2.62|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:52.2370000-07:00|13D|Fey Illumination|0.00|40022C1B|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:19:52.2370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||98.73|83.00|0.00|-1.69|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:19:52.2820000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|253B|82773|82773|10000|10000|||99.52|85.26|0.00|-2.53|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||99.52|85.26|0.00|-2.53| +21|2023-10-06T21:19:52.2820000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1F470000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|8752081|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||92.62|87.00|0.00|-2.20|0001A0FD|0|1| +21|2023-10-06T21:19:52.2820000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|23D70000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|8752081|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.52|85.26|0.00|-2.53|0001A0FE|0|1| +38|2023-10-06T21:19:52.2820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||99.52|85.26|0.00|-2.53|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:52.2820000-07:00|7A2|Bunshin|21.93|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|82773|82773| +37|2023-10-06T21:19:52.3250000-07:00|40022472|Zeromus|0001A0F5|8747755||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:52.3260000-07:00|10FF0003|Gegehi Gehi|HoT|0|310D|73814|73814|4150|10000|||96.27|85.80|0.00|-2.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1150|10000|||99.91|84.21|0.00|-1.88| +38|2023-10-06T21:19:52.3260000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|25||96.27|85.80|0.00|-2.08|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:19:52.3700000-07:00|40022472|Zeromus|0001A0F8|8733112||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:52.3700000-07:00|40022D1A|Bunshin|4406|Gust Slash|40022472|Zeromus|714003|13E90000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|8752081|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||99.89|85.41|0.00|3.12|0001A0FF|0|1| +21|2023-10-06T21:19:52.3700000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|24CD0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|8752081|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||99.91|84.21|0.00|-1.88|0001A100|0|1| +38|2023-10-06T21:19:52.3700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||98.73|83.00|0.00|-1.69|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:52.3700000-07:00|13D|Fey Illumination|0.00|40022C1B|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +24|2023-10-06T21:19:52.4140000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2D6F|81541|81541|750|10000|||99.24|84.17|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|750|10000|||99.24|84.17|0.00|-3.11| +38|2023-10-06T21:19:52.4140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|22||99.24|84.17|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:52.4590000-07:00|40022472|Zeromus|0001A0F7|8728009||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:52.4590000-07:00|40022472|Zeromus|0001A0FB|8727964||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:52.4590000-07:00|10FF0003|Gegehi Gehi|0001A0FB|73814|73814|4150|10000|25||95.61|85.85|0.00|-1.88|2300|0|0|01|020004D2|0|C1F00000|| +39|2023-10-06T21:19:52.5040000-07:00|40022D1A|Bunshin|75608|78475|10000|10000|||99.21|85.17|0.00|2.99| +24|2023-10-06T21:19:52.5040000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|47C0|129844|129844|10000|10000|||96.45|84.50|0.00|2.76|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||96.45|84.50|0.00|2.76| +24|2023-10-06T21:19:52.5040000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1EF5|81809|81809|9250|10000|||99.34|83.65|0.00|-1.56|10FF0004|Buhojaqe Zijaqe|0|81541|81541|750|10000|||99.24|84.17|0.00|-3.11| +38|2023-10-06T21:19:52.5040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|10||96.45|84.50|0.00|2.76|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:52.5040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9250|10000|22||99.34|83.65|0.00|-1.56|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:52.5040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|25||95.61|85.85|0.00|-1.88|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:52.5040000-07:00|13D|Fey Illumination|0.00|40022C1B|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +261|2023-10-06T21:19:52.1470000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:19:52.5480000-07:00|40022472|Zeromus|0001A0F9|8712489||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:52.5480000-07:00|10FF0009|Zewo Negiwo|HoT|0|240F|81177|81177|2415|10000|||97.29|85.78|0.00|2.89|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1300|10000|||97.69|84.06|0.00|-2.14| +38|2023-10-06T21:19:52.5490000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2415|10000|23||97.29|85.78|0.00|2.89|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:19:52.5940000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|457B|129071|129071|9400|10000|||90.60|87.06|0.00|-2.47|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1300|10000|||97.69|84.06|0.00|-2.14| +26|2023-10-06T21:19:52.5940000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:19:52.5940000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|343C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8727964|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.43|82.90|0.00|-1.64|0001A101|0|1| +21|2023-10-06T21:19:52.5940000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|95A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8727964|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.43|82.90|0.00|-1.64|0001A102|0|1| +38|2023-10-06T21:19:52.5940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|9||90.60|87.06|0.00|-2.47|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:52.6380000-07:00|40022472|Zeromus|0001A0FA|8698876||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:52.6380000-07:00|10FF0003|Gegehi Gehi|0001A0FA|73814|73814|4150|10000|25||94.35|85.96|0.00|-1.63|2300|0|0|01|020004D2|0|41F00000|| +21|2023-10-06T21:19:52.6380000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8727964|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.14|85.08|0.00|2.99|0001A103|0|1| +38|2023-10-06T21:19:52.6380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|22||97.69|84.06|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:52.6380000-07:00|13D|Fey Illumination|0.00|40022C1B|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T21:19:52.6380000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|25||94.35|85.96|0.00|-1.63|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:19:52.6830000-07:00|40022472|Zeromus|0001A0FE|8689701||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:52.7280000-07:00|40022472|Zeromus|0001A0FC|8638127||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:52.3620000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:19:52.4580000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:52.4580000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:19:52.7740000-07:00|40022472|Zeromus|0001A0FF|8633030||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:52.7740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||96.32|85.25|0.00|-1.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:19:52.7740000-07:00|13D|Fey Illumination|0.00|40022C1B|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +21|2023-10-06T21:19:52.8180000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8633030|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9250|10000|||95.21|83.30|0.00|-1.67|0001A104|0|1| +38|2023-10-06T21:19:52.8180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|9||88.33|87.37|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:52.8180000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:19:52.9070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9250|10000|22||95.21|83.30|0.00|-1.67|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:52.9070000-07:00|13D|Fey Illumination|0.00|40022C1B|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:19:53.0420000-07:00|40022472|Zeromus|0001A0FD|8625023||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:53.0420000-07:00|10FF0001|Sesuga Sapisuga|0001A0FD|129071|129071|10000|10000|9||88.33|87.37|0.00|-2.71|1300|0|0|0| +38|2023-10-06T21:19:53.0420000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2415|10000|23||94.77|86.28|0.00|-1.43|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:53.0420000-07:00|13D|Fey Illumination|0.00|40022C1B|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +21|2023-10-06T21:19:53.0860000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|10400000|104|6128000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|8633030|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||95.20|84.16|0.00|-1.58|0001A105|0|1| +38|2023-10-06T21:19:53.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|22||95.20|84.16|0.00|-1.58|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:19:52.6480000-07:00|Change|10FF0003||||||||| +30|2023-10-06T21:19:53.0860000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +261|2023-10-06T21:19:52.6480000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:19:52.6480000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:19:53.1300000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|185A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8625023|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.48|82.73|0.00|-1.92|0001A106|0|1| +37|2023-10-06T21:19:53.1750000-07:00|40022472|Zeromus|0001A103|8622955||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:53.2190000-07:00|40022472|Zeromus|0001A101|8609583||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:52.8700000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:19:53.3090000-07:00|40022472|Zeromus|0001A100|8600162||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:53.3090000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|750003|46AB0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|8609583|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9250|10000|||93.91|83.39|0.00|-1.63|0001A107|0|1| +38|2023-10-06T21:19:53.3090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|22||93.91|83.39|0.00|-1.63|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:53.3090000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:19:53.3530000-07:00|40022472|Zeromus|0001A102|8597768||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:53.3530000-07:00|40022472|Zeromus|0001A104|8597624||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:53.1000000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:19:53.4410000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8597624|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||86.55|87.25|0.00|-2.87|0001A108|0|1| +31|2023-10-06T21:19:53.4410000-07:00|10FF0001||||| +39|2023-10-06T21:19:53.4850000-07:00|40022D1B|Carbuncle|77698|77698|10000|10000|||99.94|84.97|0.00|-2.10| +261|2023-10-06T21:19:53.1000000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:19:53.5300000-07:00|10FF0003|Gegehi Gehi|73814|73814|4350|10000|||89.47|86.00|0.00|-1.59| +39|2023-10-06T21:19:53.6190000-07:00|10FF0009|Zewo Negiwo|81177|81177|2636|10000|||92.30|86.53|0.00|-1.36| +261|2023-10-06T21:19:53.3140000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:19:53.7090000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||89.18|82.54|0.00|-2.20| +37|2023-10-06T21:19:53.7530000-07:00|40022472|Zeromus|0001A106|8591390||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:53.7540000-07:00|40022472|Zeromus|DoT|0|1D67|8597624|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1300|10000|||91.34|83.98|0.00|-1.82| +38|2023-10-06T21:19:53.7540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|22||91.34|83.98|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:53.7540000-07:00|317|Dissipation|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:19:53.7540000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:19:53.7540000-07:00|10FF0004|Buhojaqe Zijaqe|E03|Dissipation|10FF0004|Buhojaqe Zijaqe|140E|3170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1300|10000|||91.34|83.98|0.00|-1.82|81541|81541|1300|10000|||91.34|83.98|0.00|-1.82|0001A109|0|1| +38|2023-10-06T21:19:53.7540000-07:00|40022472|Zeromus|005A5A00|8583863|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:19:53.3140000-07:00|Change|40022C1B||||| +261|2023-10-06T21:19:53.4060000-07:00|Change|40022D1B||||||||| +261|2023-10-06T21:19:53.4060000-07:00|Change|10FF0001||||||||||| +36|2023-10-06T21:19:53.8420000-07:00|5AA0|3| +39|2023-10-06T21:19:53.8870000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||84.29|86.43|0.00|3.11| +39|2023-10-06T21:19:53.8870000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1500|10000|||90.63|83.94|0.00|-1.59| +261|2023-10-06T21:19:53.5010000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:19:53.5010000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:19:53.9770000-07:00|40022472|Zeromus|0001A108|8581607||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:53.9770000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||86.58|85.74|0.00|-2.96| +39|2023-10-06T21:19:54.0210000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9050|10000|||92.38|83.47|0.00|2.32| +261|2023-10-06T21:19:53.7090000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:19:53.7090000-07:00|Change|10FF0006||||||||||| +26|2023-10-06T21:19:54.0660000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:19:54.0660000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8581607|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||86.74|82.33|-0.01|-1.67|0001A10A|0|1| +37|2023-10-06T21:19:54.1110000-07:00|40022472|Zeromus|0001A107|8563516||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:54.1110000-07:00|40022472|Zeromus|0001A105|8559356||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:54.1110000-07:00|10FF0004|Buhojaqe Zijaqe|0001A105|81541|81541|1500|10000|22||88.62|84.02|0.00|-1.53|1C00|0|0|01|03000317|0|C1F00000|| +21|2023-10-06T21:19:54.1110000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8581607|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||85.79|85.87|0.00|-2.85|0001A10B|0|1| +21|2023-10-06T21:19:54.2000000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16D30000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|8559356|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||85.66|85.89|0.00|3.11|0001A10C|0|1| +261|2023-10-06T21:19:53.9420000-07:00|Change|10FF0004||||||||||| +20|2023-10-06T21:19:54.3330000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|85.30|85.98|0.00|-1.55| +37|2023-10-06T21:19:54.3780000-07:00|10FF0004|Buhojaqe Zijaqe|0001A109|81541|81541|1500|10000|22||87.91|84.13|0.00|-1.47|1C00|0|0|01|03000317|0|41F00000|| +21|2023-10-06T21:19:54.3780000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|2FDE0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|8559356|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||88.30|86.41|0.00|-2.10|0001A10D|0|1| +38|2023-10-06T21:19:54.3780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|22||87.91|84.13|0.00|-1.47|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:54.3780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||88.30|86.41|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:54.3780000-07:00|7A2|Bunshin|19.83|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +261|2023-10-06T21:19:53.9420000-07:00|Change|40022D1A||||||||| +261|2023-10-06T21:19:53.9420000-07:00|Change|40022D1A||| +21|2023-10-06T21:19:54.4660000-07:00|40022D1A|Bunshin|4407|Aeolian Edge|40022472|Zeromus|714003|145D0000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|8559356|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||86.18|86.83|0.00|2.02|0001A10E|0|1| +21|2023-10-06T21:19:54.4660000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8559356|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1500|10000|||87.29|84.28|0.00|-1.43|0001A10F|0|1| +261|2023-10-06T21:19:54.0570000-07:00|Change|40022D1A||| +261|2023-10-06T21:19:54.1720000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:19:54.1720000-07:00|Change|40022D1B||||||||| +37|2023-10-06T21:19:54.6430000-07:00|40022472|Zeromus|0001A10B|8556471||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:54.6880000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|21C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8559356|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||86.11|82.50|0.00|2.43|0001A110|0|1| +37|2023-10-06T21:19:54.7320000-07:00|40022472|Zeromus|0001A10C|8550628||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:54.7320000-07:00|40022472|Zeromus|0001A10A|8541788||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:54.3630000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:19:54.7770000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41712003|44710000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|8541788|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|0001A111|0|1| +38|2023-10-06T21:19:54.7770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:54.7770000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:19:54.7770000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:19:54.3630000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:19:54.8210000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8541788|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||86.60|86.73|0.00|2.02|0001A112|0|1| +37|2023-10-06T21:19:54.9100000-07:00|40022472|Zeromus|0001A10D|8529534||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:54.5590000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T21:19:54.9980000-07:00|40022472|Zeromus|0001A10F|8529388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:54.9980000-07:00|40022472|Zeromus|0001A10E|8524175||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:54.9990000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||86.17|86.81|-0.02|2.02| +20|2023-10-06T21:19:54.9990000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|84.18|88.27|0.00|-1.93| +20|2023-10-06T21:19:55.0430000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|83.50|85.45|-0.02|-1.32| +24|2023-10-06T21:19:55.2210000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1EF1|90216|90216|10000|10000|||83.53|84.79|0.00|0.05|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||83.48|85.59|0.00|-2.09| +38|2023-10-06T21:19:55.2210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||83.53|84.79|0.00|0.05|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:19:55.2640000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|25C0|82773|82773|10000|10000|||86.17|86.81|0.00|2.02|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||86.17|86.81|0.00|2.02| +21|2023-10-06T21:19:55.2640000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8524175|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.20|85.09|-0.01|-0.16|0001A113|0|1| +38|2023-10-06T21:19:55.2640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||86.17|86.81|0.00|2.02|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:19:54.8730000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:19:55.3100000-07:00|10FF0003|Gegehi Gehi|HoT|0|1EDC|73814|73814|4350|10000|||85.10|85.98|0.00|1.95|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||83.46|85.73|0.00|-2.84| +21|2023-10-06T21:19:55.3100000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|752003|3E250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8524175|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||86.17|86.81|0.00|2.02|0001A114|0|1| +38|2023-10-06T21:19:55.3100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|22||83.46|85.73|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:55.3100000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:19:55.3100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|25||85.10|85.98|0.00|1.95|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:19:55.3540000-07:00|40022472|Zeromus|0001A111|8506654||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:55.3540000-07:00|10FF0001|Sesuga Sapisuga|0001A111|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|1300|0|0|02|0200076E|03|41F00000|||||| +37|2023-10-06T21:19:55.3540000-07:00|40022472|Zeromus|0001A112|8504493||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:55.3540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:19:55.3980000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1F24|81541|81541|1500|10000|||83.44|85.86|0.00|2.75|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||83.44|85.86|0.00|2.75| +38|2023-10-06T21:19:55.3980000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|22||83.44|85.86|0.00|2.75|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:55.4880000-07:00|40022472|Zeromus|0001A110|8495850||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:55.4880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|41E5|129844|129844|10000|10000|||83.39|85.34|0.00|-2.34|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||83.39|85.34|0.00|-2.34| +24|2023-10-06T21:19:55.4880000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2D2D|81809|81809|9050|10000|||83.55|84.23|0.00|-1.42|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||83.43|85.98|-0.01|2.13| +21|2023-10-06T21:19:55.4880000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|0001A115|0|1| +38|2023-10-06T21:19:55.4880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|10||83.39|85.34|0.00|-2.34|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:19:55.4880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9050|10000|22||83.55|84.23|0.00|-1.42|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T21:19:55.5330000-07:00|40022D1A|Bunshin|75608|78475|10000|10000|||86.18|86.83|0.00|2.02| +24|2023-10-06T21:19:55.5330000-07:00|10FF0009|Zewo Negiwo|HoT|0|242E|81177|81177|2636|10000|||83.61|86.79|0.00|1.98|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||83.43|85.98|-0.01|2.13| +26|2023-10-06T21:19:55.5330000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:19:55.5330000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|213F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8504493|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.05|85.22|0.00|-0.26|0001A116|0|1| +38|2023-10-06T21:19:55.5330000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2636|10000|23||83.61|86.79|0.00|1.98|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:19:55.1040000-07:00|Change|40022D1B||||||||| +261|2023-10-06T21:19:55.2150000-07:00|Change|10FF0009||||||||||||||||||||| +24|2023-10-06T21:19:55.5770000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1E9D|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||83.43|85.98|-0.01|2.13| +38|2023-10-06T21:19:55.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:19:55.7100000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|D1D0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||83.39|85.34|0.00|-2.34|8495850|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A117|0|1| +21|2023-10-06T21:19:55.7100000-07:00|4002247F|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|116.50|0.00|0.00|0001A118|0|0| +21|2023-10-06T21:19:55.7100000-07:00|40022481|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|83.50|0.00|0.00|0001A119|0|0| +21|2023-10-06T21:19:55.7100000-07:00|40022483|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|112.00|0.00|0.00|0001A11A|0|0| +21|2023-10-06T21:19:55.7100000-07:00|40022485|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|88.00|0.00|0.00|0001A11B|0|0| +21|2023-10-06T21:19:55.7100000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8495850|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|0001A11C|0|1| +31|2023-10-06T21:19:55.7100000-07:00|10FF0001||||| +261|2023-10-06T21:19:55.3090000-07:00|Change|40022481||||||||||||| +261|2023-10-06T21:19:55.3090000-07:00|Change|4002247F||||||||||||| +261|2023-10-06T21:19:55.3090000-07:00|Change|40022483||||||||||||| +261|2023-10-06T21:19:55.3090000-07:00|Change|40022485||||||||||||| +21|2023-10-06T21:19:55.7550000-07:00|10FF0006|Wowobora Gogobora|64E7|Summon Phoenix|40022472|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|8495850|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9050|10000|||82.81|84.24|0.00|-1.59|0001A11D|0|1| +21|2023-10-06T21:19:55.7550000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|2F5F0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|8495850|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4350|10000|||85.10|85.98|0.00|1.95|0001A11E|0|1| +38|2023-10-06T21:19:55.7550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|25||85.10|85.98|0.00|1.95|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:55.7550000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:19:55.7550000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:19:55.7990000-07:00|40022D20||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:19:55.7990000-07:00|40022D20||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:19:55.4010000-07:00|Change|40022C1B||||| +37|2023-10-06T21:19:55.9330000-07:00|40022472|Zeromus|0001A114|8479941||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:55.9330000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|4E730000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|8495850|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|2636|10000|||83.60|86.78|0.00|1.96|0001A11F|0|1| +261|2023-10-06T21:19:55.4980000-07:00|Add|40022D20||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:19:55.4980000-07:00|40022D20|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|74223|77698|10000|10000|||81.23|86.39|0.00|1.81| +21|2023-10-06T21:19:55.9770000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8495850|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9050|10000|||82.61|84.24|0.00|1.81|0001A120|0|1| +261|2023-10-06T21:19:55.4980000-07:00|Change|40022D20||| +21|2023-10-06T21:19:55.9770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|31000000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|8495850|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1500|10000|||83.42|86.02|0.00|1.91|0001A121|0|1| +261|2023-10-06T21:19:55.5940000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:19:56.0220000-07:00|40022472|Zeromus|0001A113|8477673||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:56.1110000-07:00|10FF0001|Sesuga Sapisuga|0001A115|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|1300|0|0|01|0400004C|0|41A00000|| +26|2023-10-06T21:19:56.1110000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:19:56.1550000-07:00|40022472|Zeromus|0001A116|8469162||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:56.1550000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|13400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8479941|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.05|85.22|0.00|1.86|0001A122|0|1| +37|2023-10-06T21:19:56.2440000-07:00|40022472|Zeromus|0001A11C|8466329||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:56.2890000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|750003|29F10000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|8469162|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|0001A123|0|1| +261|2023-10-06T21:19:55.9150000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T21:19:56.2890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:56.2890000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:19:56.2890000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +22|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|0001A124|0|8| +22|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||83.05|85.22|0.00|1.86|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|0001A124|1|8| +22|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||83.39|85.34|0.00|-2.34|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|0001A124|2|8| +22|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1100|10000|||83.42|86.02|0.00|1.91|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|0001A124|3|8| +22|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|0001A124|4|8| +22|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0009|Zewo Negiwo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2236|10000|||83.60|86.78|0.00|1.96|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|0001A124|5|8| +22|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4150|10000|||85.10|85.98|0.00|1.95|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|0001A124|6|8| +22|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||86.17|86.81|0.00|2.02|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|0001A124|7|8| +38|2023-10-06T21:19:56.3770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|10||83.39|85.34|0.00|-2.34|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:56.3770000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:19:56.3770000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2236|10000|23||83.60|86.78|0.00|1.96|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:56.3770000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|00|81177|81809| +38|2023-10-06T21:19:56.3770000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||83.05|85.22|0.00|1.86|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:19:56.3770000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:19:56.3770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9050|10000|22||82.51|84.25|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:56.3770000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:19:56.3770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:56.3770000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:19:56.3770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1100|10000|22||83.42|86.02|0.00|1.91|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:56.3770000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:19:56.3770000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|25||85.10|85.98|0.00|1.95|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:56.3770000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:19:56.3770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||86.17|86.81|0.00|2.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:56.3770000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|82773|81809| +37|2023-10-06T21:19:56.5100000-07:00|10FF0007|Kehabiqo Febiqo|0001A117|126487|129844|10000|10000|0||83.39|85.34|0.00|-2.34|1500|0|0|01|08000000|0|0|| +37|2023-10-06T21:19:56.5100000-07:00|40022472|Zeromus|0001A120|8466186||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:19:56.5100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126487|129844|10000|10000|0||83.39|85.34|0.00|-2.34|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:19:56.5100000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T21:19:56.5540000-07:00|40022472|Zeromus|0001A11E|8454059||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:56.5540000-07:00|10FF0003|Gegehi Gehi|73814|73814|4350|10000|||85.10|85.98|0.00|1.95| +21|2023-10-06T21:19:56.5540000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2236|10000|||83.60|86.78|0.00|1.96|81177|81177|2236|10000|||83.60|86.78|0.00|1.96|0001A125|0|1| +261|2023-10-06T21:19:56.1570000-07:00|Change|40022D1B||||||||| +39|2023-10-06T21:19:56.5990000-07:00|10FF0009|Zewo Negiwo|81177|81177|2457|10000|||83.60|86.78|0.00|1.96| +261|2023-10-06T21:19:56.1570000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:19:56.6440000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32712003|39A70000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|8454059|40478540|10000|10000|||100.00|80.10|0.00|0.00|126487|129844|10000|10000|||83.39|85.34|0.00|-2.34|0001A126|0|1| +261|2023-10-06T21:19:56.2740000-07:00|Change|40022D1A||| +21|2023-10-06T21:19:56.6890000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1F1E0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|8454059|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||86.17|86.81|0.00|2.02|0001A127|0|1| +38|2023-10-06T21:19:56.6890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||86.17|86.81|0.00|2.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:19:56.6890000-07:00|7A2|Bunshin|17.52|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:19:56.7340000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||83.05|85.22|0.00|1.86| +21|2023-10-06T21:19:56.7340000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|352003|5BEB0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|8454059|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4350|10000|||85.10|85.98|0.00|1.95|0001A128|0|1| +38|2023-10-06T21:19:56.7340000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|25||85.10|85.98|0.00|1.95|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:56.7340000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:19:56.7790000-07:00|40022472|Zeromus|0001A122|8449131||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:56.7790000-07:00|40022472|Zeromus|0001A121|8436587||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:56.7790000-07:00|40022D1A|Bunshin|4405|Spinning Edge|40022472|Zeromus|714003|14CD0000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|8454059|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||86.19|86.84|0.00|2.02|0001A129|0|1| +24|2023-10-06T21:19:56.7790000-07:00|40022472|Zeromus|DoT|0|1801|8454059|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1100|10000|||83.62|86.35|0.00|0.78| +22|2023-10-06T21:19:56.7790000-07:00|40022D20|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||83.05|85.22|0.00|1.86|74223|77698|10000|10000|||81.23|86.39|0.00|1.81|0001A12A|0|8| +22|2023-10-06T21:19:56.7790000-07:00|40022D20|Demi-Phoenix|4085|Everlasting Flight|10FF0007|Kehabiqo Febiqo|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|126487|129844|10000|10000|||83.39|85.34|0.00|1.88|74223|77698|10000|10000|||81.23|86.39|0.00|1.81|0001A12A|1|8| +22|2023-10-06T21:19:56.7790000-07:00|40022D20|Demi-Phoenix|4085|Everlasting Flight|10FF0009|Zewo Negiwo|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2457|10000|||83.60|86.78|0.00|1.96|74223|77698|10000|10000|||81.23|86.39|0.00|1.81|0001A12A|2|8| +22|2023-10-06T21:19:56.7790000-07:00|40022D20|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9050|10000|||82.51|84.25|0.00|1.81|74223|77698|10000|10000|||81.23|86.39|0.00|1.81|0001A12A|3|8| +22|2023-10-06T21:19:56.7790000-07:00|40022D20|Demi-Phoenix|4085|Everlasting Flight|10FF0001|Sesuga Sapisuga|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|74223|77698|10000|10000|||81.23|86.39|0.00|1.81|0001A12A|4|8| +22|2023-10-06T21:19:56.7790000-07:00|40022D20|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1100|10000|||83.62|86.35|0.00|0.78|74223|77698|10000|10000|||81.23|86.39|0.00|1.81|0001A12A|5|8| +22|2023-10-06T21:19:56.7790000-07:00|40022D20|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4050|10000|||85.10|85.98|0.00|1.95|74223|77698|10000|10000|||81.23|86.39|0.00|1.81|0001A12A|6|8| +22|2023-10-06T21:19:56.7790000-07:00|40022D20|Demi-Phoenix|4085|Everlasting Flight|10FF000A|Dukaro Nezikaro|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||86.18|86.82|0.00|2.02|74223|77698|10000|10000|||81.23|86.39|0.00|1.81|0001A12A|7|8| +38|2023-10-06T21:19:56.7790000-07:00|40022472|Zeromus|005A5A00|8430442|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:19:56.3640000-07:00|Change|40022D1A||||||| +261|2023-10-06T21:19:56.4540000-07:00|Change|40022D20||| +261|2023-10-06T21:19:56.4540000-07:00|Change|40022D20||| +39|2023-10-06T21:19:56.8660000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||84.13|86.14|0.00|1.93| +21|2023-10-06T21:19:56.8660000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|726003|3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8430442|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4050|10000|||85.10|85.98|0.00|1.95|0001A12B|0|1| +36|2023-10-06T21:19:56.8660000-07:00|5B7C|3| +39|2023-10-06T21:19:56.9100000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1300|10000|||83.92|86.82|0.00|0.70| +37|2023-10-06T21:19:56.9550000-07:00|40022472|Zeromus|0001A123|8419705||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:56.9550000-07:00|10FF0001|Sesuga Sapisuga|0001A123|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|1300|0|0|02|06000558|04|41F00000|||||| +38|2023-10-06T21:19:56.9550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||84.13|86.14|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:19:56.6480000-07:00|Change|10FF0003||| +39|2023-10-06T21:19:57.0000000-07:00|10FF0007|Kehabiqo Febiqo|127785|129844|10000|10000|||83.40|85.36|0.00|1.63| +39|2023-10-06T21:19:57.0000000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9250|10000|||82.51|84.25|0.00|1.81| +21|2023-10-06T21:19:57.0000000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|3A4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8419705|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.05|85.22|0.00|1.86|0001A12C|0|1| +261|2023-10-06T21:19:56.6480000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:19:57.0000000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8419705|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||86.21|86.85|0.00|2.02|0001A12D|0|1| +38|2023-10-06T21:19:57.0000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||83.05|85.22|0.00|1.86|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:57.0000000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +37|2023-10-06T21:19:57.0880000-07:00|40022472|Zeromus|0001A127|8411739||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:57.1780000-07:00|40022472|Zeromus|0001A129|8406414||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:57.1780000-07:00|10FF0009|Zewo Negiwo|0001A125|81177|81177|2457|10000|23||83.60|86.78|0.00|1.96|1800|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:19:57.1780000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:19:57.1780000-07:00|10FF0006|Wowobora Gogobora|0001A124|81809|81809|9250|10000|22||82.54|84.28|0.00|1.47|1B00|0|0|01|0A8F|0|41E9F3B3|| +38|2023-10-06T21:19:57.1780000-07:00|40022D20|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||81.23|86.39|0.00|1.81|0|0|0||||||| +26|2023-10-06T21:19:57.1780000-07:00|30|Well Fed|1276.10|10FF0006|Wowobora Gogobora|40022D20|Demi-Phoenix|2964|77698|81809| +26|2023-10-06T21:19:57.1780000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|40022D20|Demi-Phoenix|00|77698|81809| +37|2023-10-06T21:19:57.2220000-07:00|40022472|Zeromus|0001A11F|8386331||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:57.2670000-07:00|40022472|Zeromus|0001A126|8371572||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:57.2670000-07:00|10FF0009|Zewo Negiwo|1D06|Thin Air|10FF0009|Zewo Negiwo|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2457|10000|||83.60|86.78|0.00|1.96|81177|81177|2457|10000|||83.60|86.78|0.00|1.96|0001A12E|0|1| +21|2023-10-06T21:19:57.2670000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|752003|C16B0000|200004|3CE38000|0|0|0|0|0|0|0|0|0|0|0|0|8411739|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||84.13|86.14|0.00|1.93|0001A12F|0|1| +38|2023-10-06T21:19:57.2670000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2457|10000|23||83.60|86.78|0.00|1.96|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:57.2670000-07:00|4C1|Thin Air|12.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +38|2023-10-06T21:19:57.2670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|9||84.13|86.14|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:57.2670000-07:00|558|Requiescat|29.64|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:19:57.2670000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:19:57.2670000-07:00|10FF0001||||| +261|2023-10-06T21:19:56.8810000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:19:57.3110000-07:00|10FF0008|Kokosaze Lulusaze|0001A124|90216|90216|10000|10000|20||83.05|85.22|0.00|1.86|1F01|0|0|01|03000A8F|0|41E8E144|| +261|2023-10-06T21:19:56.9920000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:19:57.4010000-07:00|40022472|Zeromus|0001A12B|8371512||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:57.4450000-07:00|10FF0007|Kehabiqo Febiqo|0001A124|127785|129844|10000|10000|0||84.31|86.36|0.00|0.86|1502|0|0|01|02000A8F|0|41E7CED5|| +20|2023-10-06T21:19:57.4450000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|84.34|87.45|0.00|0.41| +37|2023-10-06T21:19:57.4900000-07:00|40022472|Zeromus|0001A128|8347981||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:57.4900000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8371512|40478540|10000|10000|||100.00|80.10|0.00|0.00|127785|129844|10000|10000|||84.31|86.36|0.00|0.86|0001A130|0|1| +04|2023-10-06T21:19:57.2220000-07:00|40022C1B|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||100.05|98.22|0.00|-3.14| +37|2023-10-06T21:19:57.5350000-07:00|40022472|Zeromus|0001A12D|8345693||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:57.2220000-07:00|Remove|40022C1B| +37|2023-10-06T21:19:57.5790000-07:00|10FF0004|Buhojaqe Zijaqe|0001A124|81541|81541|1300|10000|22||84.34|87.45|0.00|0.58|1C03|0|0|01|04000A8F|0|41E6BC66|| +37|2023-10-06T21:19:57.6240000-07:00|40022472|Zeromus|0001A12C|8330769||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:57.3240000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:19:57.7130000-07:00|10FF0008|Kokosaze Lulusaze|0001A12A|90216|90216|10000|10000|20||83.06|85.22|-0.02|1.83|1F00|0|0|01|0400074C|0|41A80000|| +26|2023-10-06T21:19:57.7130000-07:00|74C|Everlasting Flight|21.00|40022D20|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|77698| +37|2023-10-06T21:19:57.7130000-07:00|10FF0001|Sesuga Sapisuga|0001A124|129071|129071|9000|10000|9||85.24|86.90|0.00|0.97|1304|0|0|01|08000A8F|0|41E5A9F7|| +261|2023-10-06T21:19:57.4150000-07:00|Change|40022D1B||| +21|2023-10-06T21:19:57.7590000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||83.07|85.26|0.00|1.50|90216|90216|10000|10000|||83.07|85.26|0.00|1.50|0001A131|0|1| +38|2023-10-06T21:19:57.7590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||83.07|85.26|0.00|1.50|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:57.7590000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:19:57.8470000-07:00|10FF0007|Kehabiqo Febiqo|0001A12A|127785|129844|10000|10000|0||84.97|89.16|0.00|0.75|1501|0|0|01|0400074C|0|41A80000|| +26|2023-10-06T21:19:57.8470000-07:00|74C|Everlasting Flight|21.00|40022D20|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|77698| +37|2023-10-06T21:19:57.8470000-07:00|10FF0009|Zewo Negiwo|0001A124|81177|81177|2457|10000|23||85.01|88.48|0.00|0.85|1805|0|0|02|02000A8F|0|41E4957C|||||| +37|2023-10-06T21:19:57.8920000-07:00|40022472|Zeromus|0001A12F|8281254||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:57.9370000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8330769|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.09|85.29|0.00|1.13|0001A132|0|1| +261|2023-10-06T21:19:57.6070000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:19:57.6070000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:19:57.9820000-07:00|10FF0009|Zewo Negiwo|0001A12A|81177|81177|2457|10000|23||85.22|89.06|0.00|0.78|1802|0|0|02|070004C1|FF9C|C1400000|||||| +26|2023-10-06T21:19:57.9820000-07:00|74C|Everlasting Flight|21.00|40022D20|Demi-Phoenix|10FF0009|Zewo Negiwo|00|81177|77698| +37|2023-10-06T21:19:57.9820000-07:00|10FF0003|Gegehi Gehi|0001A124|73814|73814|4050|10000|25||86.25|88.80|0.00|1.20|2306|0|0|01|02000A8F|0|41E38519|| +39|2023-10-06T21:19:57.9820000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||91.30|91.06|0.00|2.35| +21|2023-10-06T21:19:57.9820000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|712003|20F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8281254|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||86.22|87.56|0.00|2.07|0001A133|0|1| +21|2023-10-06T21:19:57.9820000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8281254|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||86.22|87.56|0.00|2.07|0001A134|0|1| +31|2023-10-06T21:19:57.9820000-07:00|10FF0001||||| +37|2023-10-06T21:19:58.0250000-07:00|40022472|Zeromus|0001A130|8278112||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:58.0250000-07:00|10FF0009|Zewo Negiwo|0001A12E|81177|81177|2457|10000|23||85.17|90.41|0.00|0.38|1800|0|0|01|070004C1|FF9C|41400000|| +38|2023-10-06T21:19:58.0250000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2457|10000|23||85.17|90.41|0.00|0.38|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:19:58.1150000-07:00|10FF0006|Wowobora Gogobora|0001A12A|81809|81809|9250|10000|22||86.54|87.13|0.00|0.89|1B03|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T21:19:58.1150000-07:00|74C|Everlasting Flight|21.00|40022D20|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T21:19:58.1150000-07:00|10FF000A|Dukaro Nezikaro|0001A124|82773|82773|10000|10000|22||92.10|91.91|0.00|2.34|1E07|0|0|01|03000A8F|0|41E274B6|| +38|2023-10-06T21:19:58.1150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127785|129844|10000|10000|0||86.46|90.47|0.00|0.74|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:58.1150000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:19:58.1150000-07:00|40022D1A|Bunshin|005A5A00|75608|78475|10000|10000|0||86.19|86.84|0.00|2.02|0|0|0||||||| +26|2023-10-06T21:19:58.1150000-07:00|30|Well Fed|1890.86|10FF000A|Dukaro Nezikaro|40022D1A|Bunshin|294E|78475|82773| +26|2023-10-06T21:19:58.1150000-07:00|A8F|Searing Light|28.26|10FF0006|Wowobora Gogobora|40022D1A|Bunshin|00|78475|81809| +261|2023-10-06T21:19:57.7020000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:19:57.8190000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:19:57.9380000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:19:58.2040000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|26EE|90216|90216|10000|10000|||83.21|85.49|0.00|1.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1300|10000|||84.34|87.45|0.00|2.01| +38|2023-10-06T21:19:58.2040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||83.21|85.49|0.00|1.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:19:58.2480000-07:00|10FF0001|Sesuga Sapisuga|0001A12A|129071|129071|9000|10000|9||86.22|87.56|0.00|2.07|1304|0|0|01|0700074C|0|41A80000|| +26|2023-10-06T21:19:58.2480000-07:00|74C|Everlasting Flight|21.00|40022D20|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|77698| +24|2023-10-06T21:19:58.2480000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|201F|82773|82773|10000|10000|||92.52|92.34|0.00|2.34|10FF000A|Dukaro Nezikaro|0|82773|82773|10000|10000|||92.52|92.34|0.00|2.34| +21|2023-10-06T21:19:58.2480000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|152003|8CBC0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|8278112|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9250|10000|||87.08|87.45|0.00|0.92|0001A135|0|1| +38|2023-10-06T21:19:58.2480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||92.52|92.34|0.00|2.34|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:19:58.2930000-07:00|10FF0003|Gegehi Gehi|HoT|0|1FCD|73814|73814|4050|10000|||86.93|90.52|0.00|1.17|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1300|10000|||84.34|87.45|0.00|2.01| +38|2023-10-06T21:19:58.2930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|25||86.93|90.52|0.00|1.17|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:19:58.0570000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:19:58.3830000-07:00|10FF0004|Buhojaqe Zijaqe|0001A12A|81541|81541|1300|10000|22||84.34|87.45|0.00|1.81|1C05|0|0|01|0700074C|0|41A80000|| +26|2023-10-06T21:19:58.3830000-07:00|74C|Everlasting Flight|21.00|40022D20|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|77698| +37|2023-10-06T21:19:58.3830000-07:00|10FF0008|Kokosaze Lulusaze|0001A131|90216|90216|10000|10000|20||83.48|85.87|0.00|1.05|1F00|0|0|01|07000353|0|40A00000|| +24|2023-10-06T21:19:58.3830000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2AF3|81541|81541|1300|10000|||84.34|87.45|0.00|1.81|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1300|10000|||84.34|87.45|0.00|1.81| +21|2023-10-06T21:19:58.3830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|4FD80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|8278112|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||84.34|87.45|0.00|1.81|0001A136|0|1| +38|2023-10-06T21:19:58.3830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||83.48|85.87|0.00|1.05|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:19:58.3830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|900|10000|22||84.34|87.45|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:19:58.4770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|30CB|127785|129844|10000|10000|||88.26|90.78|0.00|0.73|10FF0009|Zewo Negiwo|0|81177|81177|2457|10000|||85.20|92.18|0.00|0.11| +24|2023-10-06T21:19:58.4770000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2A6B|81809|81809|8950|10000|||87.87|87.91|0.00|2.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|900|10000|||84.35|87.45|0.00|2.01| +38|2023-10-06T21:19:58.4770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||88.26|90.78|0.00|0.73|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:19:58.4770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8950|10000|22||87.87|87.91|0.00|2.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:58.5160000-07:00|10FF0003|Gegehi Gehi|0001A12A|73814|73814|4050|10000|25||87.34|91.57|0.00|1.16|2306|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T21:19:58.5160000-07:00|74C|Everlasting Flight|21.00|40022D20|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73814|77698| +37|2023-10-06T21:19:58.5160000-07:00|40022472|Zeromus|0001A134|8275898||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:58.5160000-07:00|40022D1A|Bunshin|75608|78475|10000|10000|||86.19|86.84|0.00|2.02| +24|2023-10-06T21:19:58.5160000-07:00|10FF0009|Zewo Negiwo|HoT|0|26D7|81177|81177|2457|10000|||85.20|92.18|0.00|0.11|40022D20|Demi-Phoenix|0|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +21|2023-10-06T21:19:58.5170000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|726003|D5640000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|8278112|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.91|86.51|0.00|0.92|0001A137|0|1| +38|2023-10-06T21:19:58.5170000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3007|10000|23||85.20|92.18|0.00|0.11|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:19:58.5170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||83.91|86.51|0.00|0.92|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:19:58.5170000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:19:58.5610000-07:00|40022472|Zeromus|0001A133|8267461||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:19:58.5610000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2782|129071|129071|9000|10000|||86.22|87.56|0.00|2.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|900|10000|||84.36|87.45|0.00|2.01| +38|2023-10-06T21:19:58.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|9||86.22|87.56|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:19:58.6500000-07:00|10FF000A|Dukaro Nezikaro|0001A12A|82773|82773|10000|10000|22||94.32|94.20|0.00|2.34|1E07|0|0|01|0600074C|0|41A80000|| +26|2023-10-06T21:19:58.6500000-07:00|74C|Everlasting Flight|21.00|40022D20|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|82773|77698| +261|2023-10-06T21:19:58.2820000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:19:58.6950000-07:00|40022472|Zeromus|0001A132|8263744||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:58.6950000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|39700000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|8267461|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||86.22|87.56|0.00|2.07|0001A138|0|1| +261|2023-10-06T21:19:58.2820000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:19:58.2820000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:19:58.2820000-07:00|Change|40022D1A||| +21|2023-10-06T21:19:58.7400000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3F640000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||89.43|91.15|0.00|0.73|8263744|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A139|0|1| +00|2023-10-06T21:19:58.0000000-07:00|0044|Zeromus|Her will...my will...shall not be denied.| +20|2023-10-06T21:19:58.8280000-07:00|40022472|Zeromus|8C0D|Rend the Rift|40022472|Zeromus|5.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:58.3770000-07:00|Change|40022472||||||||||||| +21|2023-10-06T21:19:58.9170000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2D680000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|8263744|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||95.40|95.32|0.00|2.34|0001A13A|0|1| +38|2023-10-06T21:19:58.9170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||95.40|95.32|0.00|2.34|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:19:58.9170000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:19:59.0070000-07:00|40022D1A|Bunshin|4406|Gust Slash|40022472|Zeromus|710003|101D0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|8263744|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||96.22|96.17|0.00|2.91|0001A13B|0|1| +261|2023-10-06T21:19:58.5630000-07:00|Change|40022D1A||||||||||| +261|2023-10-06T21:19:58.5630000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:19:59.0970000-07:00|40022472|Zeromus|0001A138|8249040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:59.0970000-07:00|10FF0001|Sesuga Sapisuga|0001A138|129071|129071|9500|10000|9||87.19|88.51|0.00|0.78|1300|0|0|0| +21|2023-10-06T21:19:59.0970000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|32430000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|8263744|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||91.07|92.45|0.00|0.78|0001A13C|0|1| +38|2023-10-06T21:19:59.0970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||91.07|92.45|0.00|0.78|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:19:59.0970000-07:00|A75|Surging Tempest|38.40|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:19:58.6730000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:19:58.6730000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:19:59.1410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8263744|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8950|10000|||89.88|89.35|0.00|1.23|0001A13D|0|1| +37|2023-10-06T21:19:59.1860000-07:00|40022472|Zeromus|0001A136|8228600||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:59.1860000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|726003|2B9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8249040|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.25|90.81|0.00|0.85|0001A13E|0|1| +21|2023-10-06T21:19:59.1860000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8249040|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||96.21|96.15|0.00|2.91|0001A13F|0|1| +261|2023-10-06T21:19:58.7850000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:19:58.7850000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:19:59.3180000-07:00|40022472|Zeromus|0001A135|8192572||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:59.3180000-07:00|40022472|Zeromus|0001A13A|8180948||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:19:59.3640000-07:00|40022D20|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|150003|14890000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|8228600|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||81.22|86.38|0.00|1.89|0001A140|0|1| +37|2023-10-06T21:19:59.4080000-07:00|40022472|Zeromus|0001A13B|8176823||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:59.0170000-07:00|Change|10FF0006||||||||| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|752003|6EEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8180948|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|0|9| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|32FF0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|1|9| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|4|325F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4050|10000|||91.39|94.90|0.00|1.17|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|2|9| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|31FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||92.50|93.57|0.00|2.04|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|3|9| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|33240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||88.27|91.79|0.00|2.37|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|4|9| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|200004|51E50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8950|10000|||91.58|90.68|0.00|0.96|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|5|9| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|52290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|900|10000|||87.07|91.60|0.00|0.70|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|6|9| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|4|31770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9500|10000|||88.55|89.91|0.00|0.77|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|7|9| +22|2023-10-06T21:19:59.4530000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|200004|52510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||96.56|96.49|0.00|2.83|81177|81177|3007|10000|||89.40|95.65|0.00|0.86|0001A141|8|9| +261|2023-10-06T21:19:59.1320000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:19:59.5420000-07:00|40022472|Zeromus|0001A137|8122195||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:59.5420000-07:00|10FF0007|Kehabiqo Febiqo|0001A139|113616||||||92.68|93.70|0.00|1.66| +39|2023-10-06T21:19:59.5420000-07:00|10FF0003|Gegehi Gehi|73814|73814|4250|10000|||92.10|95.12|0.00|1.18| +04|2023-10-06T21:19:59.1320000-07:00|40022D1B|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||84.79|85.44|0.00|-1.27| +261|2023-10-06T21:19:59.1320000-07:00|Remove|40022D1B| +21|2023-10-06T21:19:59.5860000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8176823|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|900|10000|||87.62|92.16|0.00|0.73|0001A142|0|1| +39|2023-10-06T21:19:59.6310000-07:00|10FF0009|Zewo Negiwo|81177|81177|3228|10000|||90.45|95.80|0.00|1.12| +37|2023-10-06T21:19:59.6760000-07:00|40022472|Zeromus|0001A13D|8121956||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:19:59.7200000-07:00|40022472|Zeromus|0001A13F|8119724||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:59.7200000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||89.84|93.23|0.00|1.42| +24|2023-10-06T21:19:59.7650000-07:00|40022472|Zeromus|DoT|0|1723|8121956|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|900|10000|||88.56|93.08|0.00|0.76| +21|2023-10-06T21:19:59.7650000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|750003|61E10000|200004|3DB68000|0|0|0|0|0|0|0|0|0|0|0|0|8121956|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9500|10000|||89.95|91.36|0.00|0.77|0001A143|0|1| +38|2023-10-06T21:19:59.7650000-07:00|40022472|Zeromus|005A5A00|8113801|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:19:59.7650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|9||89.95|91.36|0.00|0.77|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:59.7650000-07:00|558|Requiescat|27.15|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:19:59.7650000-07:00|10FF0001||||| +261|2023-10-06T21:19:59.4310000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:19:59.8090000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||89.84|93.23|0.00|1.42|90216|90216|10000|10000|||89.84|93.23|0.00|1.42|0001A144|0|1| +21|2023-10-06T21:19:59.8540000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|113616|129844|10000|10000|||94.06|94.81|0.00|1.12|113616|129844|10000|10000|||94.06|94.81|0.00|1.12|0001A145|0|1| +21|2023-10-06T21:19:59.8540000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F840E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|8113801|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|900|10000|||88.98|93.48|0.00|0.77|0001A146|0|1| +36|2023-10-06T21:19:59.8540000-07:00|5C58|3| +38|2023-10-06T21:19:59.8540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113616|129844|10000|10000|0||94.06|94.81|0.00|1.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:19:59.8540000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:19:59.8540000-07:00|A75|Surging Tempest|47.65|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:19:59.8540000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:19:59.8540000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:19:59.4310000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:19:59.8980000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8700|10000|||90.37|91.79|0.00|0.77| +39|2023-10-06T21:19:59.8980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|700|10000|||88.98|93.48|0.00|0.77| +261|2023-10-06T21:19:59.5250000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:19:59.9870000-07:00|40022472|Zeromus|0001A13E|8102635||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:19:59.9870000-07:00|10FF0007|Kehabiqo Febiqo|114914|129844|10000|10000|||94.60|95.24|0.00|0.89| +39|2023-10-06T21:19:59.9870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9150|10000|||94.25|92.86|0.00|0.89| +261|2023-10-06T21:19:59.7210000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:19:59.7210000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:20:00.1200000-07:00|40022472|Zeromus|0001A141|8074239||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:00.1200000-07:00|40022472|Zeromus|0001A142|8074081||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:19:59.8350000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:20:00.2540000-07:00|10FF0009|Zewo Negiwo|0001A141|81177|81177|3728|10000|23||92.86|96.79|-0.01|1.15|1801|0|0|0| +21|2023-10-06T21:20:00.2540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|9220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8074081|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||92.20|93.67|0.00|0.77|0001A147|0|1| +31|2023-10-06T21:20:00.2540000-07:00|10FF0001||||| +261|2023-10-06T21:19:59.8350000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:19:59.9470000-07:00|Change|10FF0008||||||||| +38|2023-10-06T21:20:00.2990000-07:00|40022D23||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:20:00.2990000-07:00|40022D23||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:20:00.3440000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8074081|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4250|10000|||95.65|98.25|0.00|1.18|0001A148|0|1| +38|2023-10-06T21:20:00.3440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|9||92.62|94.11|0.00|0.77|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:00.3440000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|| +03|2023-10-06T21:19:59.9470000-07:00|40022D23|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||89.76|95.53|0.00|0.86| +261|2023-10-06T21:19:59.9470000-07:00|Add|40022D23||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:20:00.3880000-07:00|40022472|Zeromus|0001A140|8068824||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:00.3880000-07:00|40022472|Zeromus|0001A143|8043767||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:00.0660000-07:00|Change|40022D23||| +37|2023-10-06T21:20:00.4770000-07:00|40022472|Zeromus|0001A146|8043767|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:20:00.4770000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +38|2023-10-06T21:20:00.4770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114914|129844|10000|10000|0||97.36|97.21|0.00|0.95|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:00.4770000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|| +37|2023-10-06T21:20:00.5200000-07:00|10FF0007|Kehabiqo Febiqo|0001A141|127708|129844|10000|10000|0||97.36|97.21|0.00|0.95|1503|0|0|03|05000499|03|C1700000|||||||||| +21|2023-10-06T21:20:00.5200000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2E850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8043767|40478540|10000|10000|||100.00|80.10|0.00|0.00|114914|129844|10000|10000|||97.36|97.21|0.00|0.95|0001A149|0|1| +20|2023-10-06T21:20:00.5200000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|96.27|98.52|0.00|1.18| +37|2023-10-06T21:20:00.6100000-07:00|10FF0007|Kehabiqo Febiqo|0001A145|127708|129844|10000|10000|0||97.93|97.55|0.00|3.03|1500|0|0|03|05000499|03|41700000|||||||||| +21|2023-10-06T21:20:00.6100000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8043767|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||93.79|96.69|0.00|0.86|0001A14A|0|1| +38|2023-10-06T21:20:00.6100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127708|129844|10000|10000|0||97.93|97.55|0.00|3.03|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:20:00.6100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||93.79|96.69|0.00|0.86|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:00.6100000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|| +37|2023-10-06T21:20:00.7430000-07:00|40022472|Zeromus|0001A13C|8030900||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:00.7430000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|152003|92CE0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|8043767|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9150|10000|||97.32|96.68|0.00|0.71|0001A14B|0|1| +38|2023-10-06T21:20:00.7430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|700|10000|22||93.17|96.49|-0.02|0.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:00.7430000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|| +261|2023-10-06T21:20:00.3890000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:20:00.7870000-07:00|40022472|Zeromus|0001A147|8028562||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:00.7870000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|13670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8028562|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||93.99|95.36|0.00|2.76|0001A14C|0|1| +37|2023-10-06T21:20:00.8760000-07:00|40022472|Zeromus|0001A148|8028527||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:00.8760000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8028562|40478540|10000|10000|||100.00|80.10|0.00|0.00|127708|129844|10000|10000|||98.00|97.58|0.00|3.03|0001A14D|0|1| +38|2023-10-06T21:20:00.8760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4250|10000|25||96.86|98.79|0.00|2.24|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:00.8760000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T21:20:00.4950000-07:00|Change|40022D1A||| +39|2023-10-06T21:20:01.0110000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14| +20|2023-10-06T21:20:01.0110000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|96.80|99.41|0.00|1.14| +21|2023-10-06T21:20:01.0110000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42712003|4EB20000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|8028527|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A14E|0|1| +38|2023-10-06T21:20:01.0110000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|22||98.68|98.35|0.00|2.23|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:01.0110000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +21|2023-10-06T21:20:01.0550000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2F460000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|8028527|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.26|98.35|0.00|0.97|0001A14F|0|1| +261|2023-10-06T21:20:00.5850000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:20:00.5850000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:20:00.7000000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:20:01.1440000-07:00|40022472|Zeromus|0001A149|8016618||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:01.1440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||100.02|99.78|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:01.1440000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|| +04|2023-10-06T21:20:00.7000000-07:00|40022D1A|Bunshin|00|5A|10FF000A|00||8313|10897|75608|78475|10000|10000|||96.22|96.17|0.00|2.91| +261|2023-10-06T21:20:00.7000000-07:00|Change|10FF0009||||||||||||||||||||| +261|2023-10-06T21:20:00.7000000-07:00|Remove|40022D1A| +261|2023-10-06T21:20:00.8130000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:20:01.2320000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2A06|90216|90216|10000|10000|||97.65|98.85|0.00|3.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||94.92|99.14|0.00|0.55| +38|2023-10-06T21:20:01.2320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||97.65|98.85|0.00|3.00|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:20:01.2780000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2B3E|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||94.92|99.14|0.00|0.55| +38|2023-10-06T21:20:01.2780000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3728|10000|23||97.40|99.94|0.00|2.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:01.2780000-07:00|13B|Whispering Dawn|0.00|40022C1B|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|| +38|2023-10-06T21:20:01.2780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||100.02|99.78|0.00|-3.14|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:20:01.3230000-07:00|10FF0003|Gegehi Gehi|HoT|0|213A|73814|73814|4250|10000|||97.15|98.92|0.00|2.99|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||95.02|99.52|0.00|0.46| +34|2023-10-06T21:20:01.3230000-07:00|40022D23|Automaton Queen|40022D23|Automaton Queen|01| +38|2023-10-06T21:20:01.3230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4250|10000|25||97.15|98.92|0.00|2.99|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:00.9270000-07:00|Change|40022D23||||| +37|2023-10-06T21:20:01.3670000-07:00|40022472|Zeromus|0001A14A|8013655||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:01.3670000-07:00|40022472|Zeromus|0001A14C|8008688||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:01.3670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8016618|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A150|0|1| +37|2023-10-06T21:20:01.4120000-07:00|40022472|Zeromus|0001A14D|8005726||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:01.4120000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1D39|81541|81541|700|10000|||95.02|99.52|0.00|0.46|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||95.02|99.52|0.00|0.46| +26|2023-10-06T21:20:01.4120000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +22|2023-10-06T21:20:01.4120000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|700|10000|||95.02|99.52|0.00|0.46|81541|81541|700|10000|||95.02|99.52|0.00|0.46|0001A151|0|1| +38|2023-10-06T21:20:01.4120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|700|10000|22||95.02|99.52|0.00|0.46|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:20:01.0420000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:20:01.5000000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|209B|127708|129844|10000|10000|||101.21|98.25|0.00|2.22|10FF0007|Kehabiqo Febiqo|0|127708|129844|10000|10000|||101.21|98.25|0.00|2.22| +24|2023-10-06T21:20:01.5010000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1CB6|81809|81809|8850|10000|||99.63|99.00|-0.01|1.57|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||95.09|99.72|0.00|1.86| +38|2023-10-06T21:20:01.5010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||101.21|98.25|0.00|2.22|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:20:01.5010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|22||99.63|99.00|-0.01|1.57|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:20:01.5460000-07:00|10FF0009|Zewo Negiwo|HoT|0|1E1A|81177|81177|3728|10000|||98.01|100.48|0.00|3.04|40022D20|Demi-Phoenix|0|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +21|2023-10-06T21:20:01.5460000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|798A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8005726|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||101.19|97.98|0.00|2.49|0001A152|0|1| +38|2023-10-06T21:20:01.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||101.19|97.98|0.00|2.49|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:01.5460000-07:00|499|Inner Release|14.02|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +38|2023-10-06T21:20:01.5460000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4278|10000|23||98.01|100.48|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:01.5900000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1D8E|129071|129071|8700|10000|||95.07|96.09|0.00|0.99|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||95.14|99.91|0.00|1.86| +38|2023-10-06T21:20:01.5900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|9||95.07|96.09|0.00|0.99|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:20:01.6340000-07:00|40022472|Zeromus|0001A14E|7985580||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:01.6340000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|722003|200C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8005726|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.65|99.47|0.00|2.12|0001A153|0|1| +38|2023-10-06T21:20:01.7230000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4278|10000|23||98.01|100.48|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:01.7230000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +39|2023-10-06T21:20:01.7670000-07:00|40022D20|Demi-Phoenix|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +37|2023-10-06T21:20:01.8120000-07:00|40022472|Zeromus|0001A14B|7947998||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:01.8570000-07:00|40022472|Zeromus|0001A14F|7935896||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:01.8570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||100.02|99.78|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:01.8570000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:20:01.9000000-07:00|40022472|Zeromus|0001A150|7932439||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:01.9460000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|34750000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|7935896|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|4278|10000|||98.01|100.48|0.00|3.04|0001A154|0|1| +21|2023-10-06T21:20:01.9460000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|754003|3A160000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|7935896|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4250|10000|||97.15|98.92|0.00|2.99|0001A155|0|1| +38|2023-10-06T21:20:01.9460000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|25||97.15|98.92|0.00|2.99|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:01.9460000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:20:01.9460000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4278|10000|23||98.01|100.48|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:01.9460000-07:00|4C1|Thin Air|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|FF9C|81177|81177| +21|2023-10-06T21:20:01.9900000-07:00|40022D20|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|154003|19510000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|7932439|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||81.22|86.38|0.00|1.89|0001A156|0|1| +38|2023-10-06T21:20:01.9900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|700|10000|22||96.12|100.27|0.00|1.78|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:01.9900000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +261|2023-10-06T21:20:01.6150000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:20:01.7150000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:20:01.7150000-07:00|Change|10FF0009||||||||||||||||||||||| +24|2023-10-06T21:20:02.0350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1621|90216|90216|10000|10000|||100.98|99.93|0.00|-1.97|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||97.91|101.01|0.00|1.48| +24|2023-10-06T21:20:02.0350000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CEB|81809|81809|8850|10000|||99.69|99.05|0.00|1.53|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||97.91|101.01|0.00|1.48| +24|2023-10-06T21:20:02.0350000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|151A|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||97.91|101.01|0.00|1.48| +24|2023-10-06T21:20:02.0350000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D0D|81541|81541|700|10000|||97.91|101.01|0.00|1.48|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||97.91|101.01|0.00|1.48| +24|2023-10-06T21:20:02.0350000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D6B|129844|129844|10000|10000|||99.41|95.29|0.00|-3.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||97.91|101.01|0.00|1.48| +24|2023-10-06T21:20:02.0350000-07:00|10FF0009|Zewo Negiwo|HoT|798|D3C|81177|81177|4278|10000|||98.01|100.48|0.00|3.04|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||97.91|101.01|0.00|1.48| +24|2023-10-06T21:20:02.0350000-07:00|10FF0003|Gegehi Gehi|HoT|798|15D1|73814|73814|4050|10000|||97.15|98.92|0.00|2.99|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||97.91|101.01|0.00|1.48| +24|2023-10-06T21:20:02.0350000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1578|129071|129071|8700|10000|||98.42|98.04|0.00|1.21|10FF0004|Buhojaqe Zijaqe|0|81541|81541|700|10000|||97.91|101.01|0.00|1.48| +37|2023-10-06T21:20:02.0350000-07:00|10FF0004|Buhojaqe Zijaqe|0001A151|81541|81541|700|10000|22||97.91|101.01|0.00|1.48|1C00|0|0|02|05000798|0|41700000|||||| +26|2023-10-06T21:20:02.0350000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:20:02.0350000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:02.0350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.41|95.29|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:02.0350000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:20:02.0350000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4278|10000|23||98.01|100.48|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:02.0350000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:20:02.0350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||100.98|99.93|0.00|-1.97|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:02.0350000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:02.0350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|22||99.69|99.05|0.00|1.53|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:02.0350000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:20:02.0350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|9||98.42|98.04|0.00|1.21|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:02.0350000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:20:02.0350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|700|10000|22||97.91|101.01|0.00|1.48|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:20:02.0350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|25||97.15|98.92|0.00|2.99|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:02.0350000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:20:02.0350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||100.02|99.78|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:02.0350000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +38|2023-10-06T21:20:02.1240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|25||97.15|98.92|0.00|2.99|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:02.1240000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:20:02.2120000-07:00|40022472|Zeromus|0001A152|7901325||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:02.2570000-07:00|40022472|Zeromus|0001A153|7893121||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:02.2570000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|97.91|101.01|0.00|1.48| +38|2023-10-06T21:20:02.2570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||100.98|99.93|0.00|-1.97|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:02.2570000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +261|2023-10-06T21:20:01.8350000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:20:02.3020000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7893121|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8850|10000|||99.68|99.05|-0.02|1.39|0001A157|0|1| +21|2023-10-06T21:20:02.3020000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|752003|A6D50000|200004|3F818000|0|0|0|0|0|0|0|0|0|0|0|0|7893121|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||99.07|98.26|0.00|1.30|0001A158|0|1| +38|2023-10-06T21:20:02.3020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|9||99.07|98.26|0.00|1.30|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:02.3020000-07:00|558|Requiescat|24.61|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:20:02.3020000-07:00|10FF0001||||| +21|2023-10-06T21:20:02.3470000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|11840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7893121|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.73|95.27|-0.02|2.97|0001A159|0|1| +261|2023-10-06T21:20:01.9550000-07:00|Add|40022D25||||||||||||||||||||||||||| +38|2023-10-06T21:20:02.3910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|22||99.68|99.05|-0.02|1.39|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:02.3910000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +39|2023-10-06T21:20:02.5260000-07:00|10FF0003|Gegehi Gehi|73814|73814|4250|10000|||97.15|98.92|0.00|2.99| +21|2023-10-06T21:20:02.5260000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|84B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7893121|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||100.34|98.39|0.00|1.64|0001A15A|0|1| +38|2023-10-06T21:20:02.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.78|95.44|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:02.5260000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +31|2023-10-06T21:20:02.5260000-07:00|10FF0001||||| +39|2023-10-06T21:20:02.6140000-07:00|10FF0009|Zewo Negiwo|81177|81177|4499|10000|||98.01|100.48|0.00|3.04| +38|2023-10-06T21:20:02.6590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|9||100.99|98.32|0.00|1.73|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:02.6590000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:20:02.7030000-07:00|40022472|Zeromus|0001A155|7878251||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:02.7030000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.03|100.29|0.00|-0.71| +24|2023-10-06T21:20:02.7480000-07:00|40022472|Zeromus|DoT|0|19CB|7878251|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|700|10000|||99.45|100.22|0.00|3.09| +38|2023-10-06T21:20:02.7480000-07:00|40022472|Zeromus|005A5A00|7871648|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:20:02.8370000-07:00|40022472|Zeromus|0001A157|7871486||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:02.8820000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7900|10000|||101.16|98.28|0.00|1.98| +39|2023-10-06T21:20:02.8820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|900|10000|||99.47|100.21|0.00|3.12| +36|2023-10-06T21:20:02.8820000-07:00|5D34|3| +37|2023-10-06T21:20:02.9710000-07:00|40022472|Zeromus|0001A159|7867002||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:02.9710000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.80|95.49|0.00|-3.14| +21|2023-10-06T21:20:02.9710000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|380C0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|7871486|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4250|10000|||97.15|98.92|0.00|2.99|0001A15B|0|1| +38|2023-10-06T21:20:02.9710000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|25||97.15|98.92|0.00|2.99|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:02.9710000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:20:02.4530000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:20:03.0160000-07:00|40022472|Zeromus|0001A156|7860521||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:03.0160000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9050|10000|||99.85|99.87|0.00|0.57| +261|2023-10-06T21:20:02.5560000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:20:03.0600000-07:00|40022472|Zeromus|0001A15A|7858398||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:02.6680000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:20:02.6680000-07:00|Change|10FF0003||| +261|2023-10-06T21:20:02.6680000-07:00|Change|10FF0009||| +37|2023-10-06T21:20:03.1950000-07:00|40022472|Zeromus|0001A158|7815689||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:03.1950000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|58190000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7858398|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9050|10000|||99.87|99.96|0.00|0.46|0001A15C|0|1| +21|2023-10-06T21:20:03.1950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32D70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7858398|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|900|10000|||99.47|100.21|0.00|3.12|0001A15D|0|1| +21|2023-10-06T21:20:03.1950000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|199B0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|7858398|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A15E|0|1| +37|2023-10-06T21:20:03.2390000-07:00|40022472|Zeromus|0001A154|7802260||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:03.2820000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7802260|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.99|101.11|0.00|-0.07|0001A15F|0|1| +261|2023-10-06T21:20:02.8930000-07:00|Change|10FF0001||||||||| +20|2023-10-06T21:20:03.4160000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|98.01|100.48|0.00|3.04| +23|2023-10-06T21:20:03.5480000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +21|2023-10-06T21:20:03.5500000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3C5A0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|7802260|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.97|101.24|-0.02|-0.03|0001A160|0|1| +21|2023-10-06T21:20:03.5500000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7802260|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A161|0|1| +261|2023-10-06T21:20:03.1300000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:20:03.5940000-07:00|40022472|Zeromus|0001A15E|7795705||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:03.7280000-07:00|40022472|Zeromus|0001A15B|7781357||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:03.7280000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7795705|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||101.43|98.15|0.00|2.07|0001A162|0|1| +21|2023-10-06T21:20:03.7280000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7795705|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|500|10000|||99.47|100.21|0.00|3.12|0001A163|0|1| +26|2023-10-06T21:20:03.7720000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:20:03.7720000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|752003|1AC20000|104|A008000|0|0|0|0|0|0|0|0|0|0|0|0|7795705|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|500|10000|||99.47|100.21|0.00|3.12|0001A164|0|1| +26|2023-10-06T21:20:03.8600000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:20:03.8600000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|754003|48EC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7781357|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8750|10000|||99.87|99.96|0.00|3.14|0001A165|0|1| +37|2023-10-06T21:20:03.9950000-07:00|40022472|Zeromus|0001A15D|7768342||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:03.9950000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14| +21|2023-10-06T21:20:03.9950000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7CA40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7781357|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.84|99.73|0.00|-0.15|0001A166|0|1| +38|2023-10-06T21:20:03.9950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.84|99.73|0.00|-0.15|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:03.9950000-07:00|499|Inner Release|11.57|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T21:20:03.6120000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:20:04.0390000-07:00|40022472|Zeromus|0001A15F|7764500||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:04.0840000-07:00|40022472|Zeromus|0001A161|7761852||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:04.1290000-07:00|10FF0009|Zewo Negiwo|6506|Liturgy of the Bell|10FF0009|Zewo Negiwo|500000F|A958000|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|4499|10000|||98.53|100.57|0.00|1.90|81177|81177|4499|10000|||98.53|100.57|0.00|1.90|0001A167|0|1| +38|2023-10-06T21:20:04.1290000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4499|10000|23||98.53|100.57|0.00|1.90|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:04.1290000-07:00|A95|Liturgy of the Bell|20.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|05|81177|81177| +38|2023-10-06T21:20:04.1720000-07:00|40022D27||005A5A00|73567|77042|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:20:04.1740000-07:00|40022D27||005A5A00|73567|77042|10000|10000|0||||||0|0|0||||||| +24|2023-10-06T21:20:04.2180000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|744|90216|90216|10000|10000|||100.97|101.24|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.60|100.11|0.00|2.46| +38|2023-10-06T21:20:04.2190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||100.97|101.24|0.00|-3.10|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:04.2630000-07:00|40022472|Zeromus|0001A15C|7739299||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:04.2630000-07:00|40022472|Zeromus|0001A163|7739137||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:04.2630000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|CB2|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +21|2023-10-06T21:20:04.2630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|13F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7761852|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.84|100.79|0.00|3.13|0001A168|0|1| +38|2023-10-06T21:20:04.2630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||100.02|99.78|0.00|-3.14|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:20:04.3070000-07:00|10FF0003|Gegehi Gehi|HoT|0|7ED|73814|73814|3950|10000|||97.28|98.98|0.00|2.72|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +38|2023-10-06T21:20:04.3070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|25||97.28|98.98|0.00|2.72|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:20:04.3520000-07:00|40022472|Zeromus|0001A160|7723687||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:04.3520000-07:00|40022472|Zeromus|0001A162|7723687|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04A9|0|41200000|| +26|2023-10-06T21:20:04.3520000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +24|2023-10-06T21:20:04.3970000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D19|129071|129071|7900|10000|||101.43|98.15|0.00|2.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +24|2023-10-06T21:20:04.3970000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D13|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +24|2023-10-06T21:20:04.3970000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|DA7|81541|81541|500|10000|||99.70|100.02|0.00|2.64|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +24|2023-10-06T21:20:04.3970000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1568|81809|81809|8750|10000|||99.87|99.96|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +24|2023-10-06T21:20:04.3970000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D0D|129844|129844|10000|10000|||99.84|100.79|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +24|2023-10-06T21:20:04.3970000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D50|90216|90216|10000|10000|||100.97|101.24|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +24|2023-10-06T21:20:04.3970000-07:00|10FF0003|Gegehi Gehi|HoT|798|15BE|73814|73814|3950|10000|||97.28|98.98|0.00|2.72|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +24|2023-10-06T21:20:04.3970000-07:00|10FF0009|Zewo Negiwo|HoT|798|1543|81177|81177|4499|10000|||99.15|100.68|0.00|-2.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +24|2023-10-06T21:20:04.3970000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7BB|81541|81541|500|10000|||99.70|100.02|0.00|2.64|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.70|100.02|0.00|2.64| +38|2023-10-06T21:20:04.3970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.84|100.79|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:04.3970000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +261|2023-10-06T21:20:03.9570000-07:00|Add|40022D27||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:20:04.3970000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4499|10000|23||99.15|100.68|0.00|-2.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:04.3970000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +03|2023-10-06T21:20:03.9570000-07:00|40022D27|Liturgic Bell|00|5A|10FF0009|00||10349|13961|73567|77042|10000|10000|||96.57|99.25|0.00|1.07| +38|2023-10-06T21:20:04.3970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||100.97|101.24|0.00|-3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:04.3970000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:04.3970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8750|10000|22||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:04.3970000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:20:04.3970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|9||101.43|98.15|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:04.3970000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:20:04.3970000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|500|10000|22||99.70|100.02|0.00|2.64|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:04.3970000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:04.3970000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|25||97.28|98.98|0.00|2.72|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:04.3970000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:20:04.3970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|22||100.02|99.78|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:04.3970000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:20:04.0730000-07:00|Change|40022D27||| +21|2023-10-06T21:20:04.4400000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|44160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7723687|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3950|10000|||97.58|99.13|0.00|2.68|0001A169|0|1| +24|2023-10-06T21:20:04.4850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|7C0|129844|129844|10000|10000|||99.81|100.66|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.81|100.66|0.00|3.14| +24|2023-10-06T21:20:04.4850000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7BA|81809|81809|8750|10000|||99.87|99.96|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.78|99.95|0.00|2.80| +38|2023-10-06T21:20:04.4850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.81|100.66|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:20:04.4850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8750|10000|22||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:20:04.5290000-07:00|10FF0009|Zewo Negiwo|HoT|0|C49|81177|81177|4499|10000|||99.16|100.69|0.00|-2.07|40022D20|Demi-Phoenix|0|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +38|2023-10-06T21:20:04.5290000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5049|10000|23||99.16|100.69|0.00|-2.07|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:04.1660000-07:00|Change|10FF0009||||||||||| +24|2023-10-06T21:20:04.5740000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|CD7|129071|129071|7900|10000|||101.43|98.15|0.00|2.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|500|10000|||99.85|99.89|0.00|2.93| +38|2023-10-06T21:20:04.5740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|9||101.43|98.15|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:20:04.1660000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:04.6180000-07:00|40022472|Zeromus|0001A166|7691779||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:04.6630000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|10B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7723687|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.81|100.14|0.00|3.14|0001A16A|0|1| +20|2023-10-06T21:20:04.6630000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.85|99.89|0.00|2.93| +37|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|0001A168|7686670||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|0001A165|7668002||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|0001A164|7661152||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:04.3550000-07:00|Change|40022472||||||||||||| +39|2023-10-06T21:20:04.7980000-07:00|40022D20|Demi-Phoenix|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +20|2023-10-06T21:20:04.7980000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.20|100.69|0.00|-2.07| +22|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|8C0D|Rend the Rift|10FF0007|Kehabiqo Febiqo|750003|6DD80000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.78|99.34|0.00|3.13|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A16B|0|8| +22|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|8C0D|Rend the Rift|10FF0001|Sesuga Sapisuga|750603|468F0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7900|10000|||101.43|98.15|0.00|-3.06|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A16B|1|8| +22|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|8C0D|Rend the Rift|10FF000A|Dukaro Nezikaro|750603|77460000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A16B|2|8| +22|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|8C0D|Rend the Rift|10FF0004|Buhojaqe Zijaqe|750603|63E30000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|500|10000|||99.87|99.87|0.00|3.00|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A16B|3|8| +22|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|8C0D|Rend the Rift|10FF0006|Wowobora Gogobora|750603|60AB0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8750|10000|||99.87|99.96|0.00|3.14|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A16B|4|8| +22|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|8C0D|Rend the Rift|10FF0003|Gegehi Gehi|750603|60800000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3950|10000|||99.49|100.07|0.00|2.98|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A16B|5|8| +22|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|8C0D|Rend the Rift|10FF0009|Zewo Negiwo|750603|5DDA0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5049|10000|||99.20|100.69|0.00|-2.07|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A16B|6|8| +22|2023-10-06T21:20:04.7980000-07:00|40022472|Zeromus|8C0D|Rend the Rift|10FF0008|Kokosaze Lulusaze|750603|6B8E0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.97|101.24|0.00|-3.10|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A16B|7|8| +21|2023-10-06T21:20:04.7980000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|750003|72020000|4|251C8000|0|0|0|0|0|0|0|0|0|0|0|0|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||101.43|98.15|0.00|-3.06|0001A16C|0|1| +21|2023-10-06T21:20:04.7980000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||101.43|98.15|0.00|-3.06|0001A16D|0|1| +38|2023-10-06T21:20:04.7980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|9||101.43|98.15|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:04.7980000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:20:04.7980000-07:00|10FF0001||||| +00|2023-10-06T21:20:04.0000000-07:00|0044|Zeromus|By my power shall all know salvation!| +21|2023-10-06T21:20:04.8410000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|750003|37E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7691779|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8750|10000|||99.87|99.96|0.00|3.14|0001A16E|0|1| +38|2023-10-06T21:20:04.8410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8750|10000|22||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:04.8410000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +261|2023-10-06T21:20:04.6430000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:20:05.1530000-07:00|40022D20|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|156003|27F40000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|7661152|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||81.22|86.38|0.00|1.89|0001A16F|0|1| +21|2023-10-06T21:20:05.2430000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|12800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7661152|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3950|10000|||100.60|100.60|-0.02|2.76|0001A170|0|1| +37|2023-10-06T21:20:05.2880000-07:00|40022472|Zeromus|0001A16A|7656875||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:05.2880000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7661152|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3950|10000|||100.60|100.60|-0.02|2.76|0001A171|0|1| +37|2023-10-06T21:20:05.3330000-07:00|40022472|Zeromus|0001A16D|7654622||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:05.3330000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32716003|4BB30000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|7654622|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A172|0|1| +21|2023-10-06T21:20:05.4210000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|1460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7654622|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8750|10000|||99.87|99.96|0.00|3.14|0001A173|0|1| +21|2023-10-06T21:20:05.4660000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|13090000|13E50E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|7654622|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||101.43|98.15|0.00|-3.06|0001A174|0|1| +39|2023-10-06T21:20:05.5550000-07:00|10FF0003|Gegehi Gehi|73814|73814|4150|10000|||100.60|100.60|0.00|-3.11| +261|2023-10-06T21:20:05.1100000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:20:05.1100000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:20:05.6000000-07:00|40022472|Zeromus|0001A169|7637192||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:05.6000000-07:00|10FF0009|Zewo Negiwo|81177|81177|5270|10000|||99.20|100.69|0.00|3.10| +21|2023-10-06T21:20:05.6000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|32F70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7654622|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|500|10000|||99.87|99.87|0.00|3.14|0001A175|0|1| +261|2023-10-06T21:20:05.2060000-07:00|Change|10FF0001||| +37|2023-10-06T21:20:05.6900000-07:00|40022472|Zeromus|0001A16C|7608006||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:05.6900000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|156003|BBEB0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7637192|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8750|10000|||99.87|99.96|0.00|3.14|0001A176|0|1| +261|2023-10-06T21:20:05.2060000-07:00|Change|10FF0006||||| +261|2023-10-06T21:20:05.2060000-07:00|Change|10FF0006||||| +37|2023-10-06T21:20:05.7340000-07:00|40022472|Zeromus|0001A172|7588627||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:05.7340000-07:00|40022D23|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|227C0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|7637192|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||89.74|95.51|0.00|1.22|0001A177|0|1| +39|2023-10-06T21:20:05.7340000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.97|101.24|0.00|-3.10| +21|2023-10-06T21:20:05.7340000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|56FA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|7637192|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5270|10000|||99.20|100.69|0.00|3.10|0001A178|0|1| +21|2023-10-06T21:20:05.7340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7637192|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A179|0|1| +37|2023-10-06T21:20:05.7780000-07:00|40022472|Zeromus|0001A16E|7574320||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:05.7780000-07:00|40022472|Zeromus|DoT|0|1D82|7588627|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|100|10000|||99.87|99.87|0.00|3.14| +38|2023-10-06T21:20:05.7790000-07:00|40022472|Zeromus|005A5A00|7566766|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:20:05.8230000-07:00|40022472|Zeromus|0001A171|7566729||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:05.8670000-07:00|40022472|Zeromus|0001A170|7561993||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:05.8670000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7100|10000|||101.43|98.15|0.00|-3.06| +36|2023-10-06T21:20:05.8670000-07:00|5E10|3| +33|2023-10-06T21:20:05.9120000-07:00|80034E7C|80000001|3DC|00|00|00| +39|2023-10-06T21:20:05.9120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|300|10000|||99.87|99.87|0.00|3.14| +37|2023-10-06T21:20:05.9570000-07:00|10FF0007|Kehabiqo Febiqo|0001A16B|101724||||||99.89|96.70|0.00|2.81| +37|2023-10-06T21:20:05.9570000-07:00|40022472|Zeromus|0001A173|7561667||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:05.9570000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|BDF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7561993|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.97|101.24|0.00|-3.10|0001A17A|0|1| +261|2023-10-06T21:20:05.6900000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:20:06.0010000-07:00|10FF0001|Sesuga Sapisuga|0001A16B|111008|129071|7100|10000|0||101.43|98.15|0.00|-3.06|1301|0|0|01|0B000000|0|0|| +39|2023-10-06T21:20:06.0020000-07:00|10FF0007|Kehabiqo Febiqo|103022|129844|10000|10000|||99.93|96.26|0.00|1.20| +39|2023-10-06T21:20:06.0020000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8650|10000|||99.87|99.96|0.00|3.14| +21|2023-10-06T21:20:06.0020000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|724003|1F8E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7561667|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4150|10000|||100.60|100.57|0.00|-3.11|0001A17B|0|1| +38|2023-10-06T21:20:06.0020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111008|129071|7100|10000|0||101.43|98.15|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:06.0020000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T21:20:06.0460000-07:00|10FF000A|Dukaro Nezikaro|0001A16B|52239|82773|10000|10000|0||100.02|99.78|0.00|-3.14|1E02|0|0|01|07000000|0|0|| +21|2023-10-06T21:20:06.0460000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|20C70000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|7561667|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.97|101.24|0.00|-3.10|0001A17C|0|1| +38|2023-10-06T21:20:06.0460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52239|82773|10000|10000|0||100.02|99.78|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:06.0460000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:20:06.0900000-07:00|10FF0004|Buhojaqe Zijaqe|0001A16B|55970|81541|300|10000|0||99.87|99.87|0.00|3.14|1C03|0|0|01|09000000|0|0|| +38|2023-10-06T21:20:06.0900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55970|81541|300|10000|0||99.87|99.87|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:06.0900000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:20:06.1350000-07:00|10FF0006|Wowobora Gogobora|0001A16B|57062|81809|8650|10000|0||99.87|99.96|0.00|3.14|1B04|0|0|01|09000000|0|0|| +38|2023-10-06T21:20:06.1350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57062|81809|8650|10000|0||99.87|99.96|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:20:06.1350000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +37|2023-10-06T21:20:06.1790000-07:00|40022472|Zeromus|0001A16F|7551439||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:06.1790000-07:00|10FF0003|Gegehi Gehi|0001A16B|49110|73814|4150|10000|0||100.60|100.57|0.00|-3.11|2305|0|0|01|07000000|0|0|| +38|2023-10-06T21:20:06.1800000-07:00|10FF0003|Gegehi Gehi|005A5A23|49110|73814|4150|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||| +30|2023-10-06T21:20:06.1800000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +261|2023-10-06T21:20:05.6900000-07:00|Change|10FF0006||| +37|2023-10-06T21:20:06.2250000-07:00|10FF0009|Zewo Negiwo|0001A16B|57151|81177|4870|10000|0||99.20|100.69|0.00|3.10|1806|0|0|02|05000A95|04|418F9994|||||| +26|2023-10-06T21:20:06.2250000-07:00|A95|Liturgy of the Bell|17.95|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|04|81177|81177| +38|2023-10-06T21:20:06.2250000-07:00|10FF0009|Zewo Negiwo|005A5A18|57151|81177|4870|10000|0||99.20|100.69|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:06.2250000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +37|2023-10-06T21:20:06.2690000-07:00|10FF0008|Kokosaze Lulusaze|0001A16B|62682|90216|10000|10000|0||100.97|101.24|0.00|-3.10|1F07|0|0|01|06000000|0|0|| +38|2023-10-06T21:20:06.2690000-07:00|40022472|Zeromus|005A5A00|7551439|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:20:06.2690000-07:00|808|Unknown_808|9999.00|40022472|Zeromus|40022472|Zeromus|286|40478540|40478540| +37|2023-10-06T21:20:06.2690000-07:00|40022472|Zeromus|0001A179|7549158||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:06.2690000-07:00|40022D27|Liturgic Bell|6507|Liturgy of the Bell|10FF0009|Zewo Negiwo|4|30A30000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|73567|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A17D|0|8| +22|2023-10-06T21:20:06.2690000-07:00|40022D27|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|30CC0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|55970|81541|300|10000|||99.87|99.87|0.00|2.56|73567|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A17D|1|8| +22|2023-10-06T21:20:06.2690000-07:00|40022D27|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|200004|4CED0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|57062|81809|8650|10000|||99.87|99.96|0.00|3.14|73567|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A17D|2|8| +22|2023-10-06T21:20:06.2690000-07:00|40022D27|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|2FE90000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|52239|82773|10000|10000|||100.02|99.78|0.00|-3.14|73567|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A17D|3|8| +22|2023-10-06T21:20:06.2690000-07:00|40022D27|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|30C50000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|103022|129844|10000|10000|||99.95|96.08|0.00|0.54|73567|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A17D|4|8| +22|2023-10-06T21:20:06.2690000-07:00|40022D27|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|200004|4C250000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|49110|73814|4150|10000|||100.60|100.57|0.00|-3.11|73567|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A17D|5|8| +22|2023-10-06T21:20:06.2690000-07:00|40022D27|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|200004|4EAD0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.97|101.24|0.00|-3.10|73567|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A17D|6|8| +22|2023-10-06T21:20:06.2690000-07:00|40022D27|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|30AB0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|111008|129071|7100|10000|||101.43|98.15|0.00|-3.06|73567|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A17D|7|8| +39|2023-10-06T21:20:06.2690000-07:00|40022D23|Automaton Queen|82193|85668|10000|10000|||89.74|95.51|0.00|2.56| +38|2023-10-06T21:20:06.2690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62682|90216|10000|10000|0||100.97|101.24|0.00|-3.10|0|0|0|||||||||||||||| +30|2023-10-06T21:20:06.2690000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:06.3140000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57062|81809|8650|10000|0||99.87|99.96|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:20:06.3140000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:20:06.3140000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|752003|35410000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|7551439|40478540|10000|10000|||100.00|80.10|0.00|0.00|57062|81809|8650|10000|||99.87|99.96|0.00|3.14|0001A17E|0|1| +38|2023-10-06T21:20:06.3140000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57062|81809|8650|10000|0||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:06.3140000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +22|2023-10-06T21:20:06.3580000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0009|Zewo Negiwo|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|0001A17F|0|8| +22|2023-10-06T21:20:06.3580000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57062|81809|8650|10000|||99.87|99.96|0.00|3.14|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|0001A17F|1|8| +22|2023-10-06T21:20:06.3580000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55970|81541|300|10000|||99.87|99.87|0.00|2.56|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|0001A17F|2|8| +22|2023-10-06T21:20:06.3580000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52239|82773|10000|10000|||100.02|99.78|0.00|-3.14|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|0001A17F|3|8| +22|2023-10-06T21:20:06.3580000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|49110|73814|4150|10000|||100.60|100.57|0.00|-3.11|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|0001A17F|4|8| +22|2023-10-06T21:20:06.3580000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|103022|129844|10000|10000|||99.95|96.08|0.00|0.54|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|0001A17F|5|8| +22|2023-10-06T21:20:06.3580000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.97|101.24|0.00|-3.10|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|0001A17F|6|8| +22|2023-10-06T21:20:06.3580000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|FCE40E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|111008|129071|7100|10000|||101.43|98.15|0.00|-3.06|81177|81177|4870|10000|||99.20|100.69|0.00|3.10|0001A17F|7|8| +37|2023-10-06T21:20:06.4020000-07:00|40022472|Zeromus|0001A175|7536111||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:06.4470000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|7DAA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7549158|40478540|10000|10000|||100.00|80.10|0.00|0.00|103022|129844|10000|10000|||99.96|96.38|0.00|0.20|0001A180|0|1| +38|2023-10-06T21:20:06.4470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103022|129844|10000|10000|0||99.96|96.38|0.00|0.20|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:06.4470000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +37|2023-10-06T21:20:06.4910000-07:00|40022472|Zeromus|0001A177|7527283||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:06.4910000-07:00|40022472|Zeromus|0001A174|7522410|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T21:20:06.4910000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:20:06.1340000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:20:06.1340000-07:00|Change|10FF0001||| +37|2023-10-06T21:20:06.5800000-07:00|40022472|Zeromus|0001A17B|7514332||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:06.6700000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|62682|90216|10000|10000|||100.97|101.24|0.00|-3.10|62682|90216|10000|10000|||100.97|101.24|0.00|-3.10|0001A181|0|1| +38|2023-10-06T21:20:06.6700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62682|90216|10000|10000|0||100.97|101.24|0.00|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:06.6700000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:20:06.7140000-07:00|10FF0009|Zewo Negiwo|0001A17D|69602||||||99.20|100.69|0.00|3.10| +37|2023-10-06T21:20:06.7140000-07:00|40022472|Zeromus|0001A17A|7511293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:06.7140000-07:00|10FF0008|Kokosaze Lulusaze|0001A17A|62682|90216|10000|10000|0||100.97|101.24|0.00|-3.10|1F00|0|0|01|05000353|0|C0A00000|| +37|2023-10-06T21:20:06.7590000-07:00|40022472|Zeromus|0001A176|7463186||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:06.7590000-07:00|10FF0006|Wowobora Gogobora|0001A176|57062|81809|8650|10000|0||99.87|99.96|0.00|3.14|1B00|0|0|01|05000A8D|0|C2700000|| +37|2023-10-06T21:20:06.8040000-07:00|40022472|Zeromus|0001A17C|7454795||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:06.8040000-07:00|10FF0008|Kokosaze Lulusaze|0001A17C|62682|90216|10000|10000|0||100.97|101.24|0.00|-3.10|1F00|0|0|01|05000353|0|C0A00000|| +20|2023-10-06T21:20:06.8040000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|100.60|100.57|0.00|-3.11| +37|2023-10-06T21:20:06.8480000-07:00|10FF0004|Buhojaqe Zijaqe|0001A17D|68462||||||100.15|100.03|0.00|1.39| +261|2023-10-06T21:20:06.4240000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:20:06.9820000-07:00|10FF0006|Wowobora Gogobora|0001A17D|76755|81809|8650|10000|0||99.87|99.96|0.00|3.14|1B02|0|0|01|05000A8D|0|C2700000|| +39|2023-10-06T21:20:06.9820000-07:00|10FF000A|Dukaro Nezikaro|53066|82773|10000|10000|||100.02|99.78|0.00|-3.14| +38|2023-10-06T21:20:06.9820000-07:00|40022D20|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||81.22|86.38|0.00|1.89|0|0|0|||||||||| +26|2023-10-06T21:20:06.9820000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022D20|Demi-Phoenix|01|77698|40478540| +21|2023-10-06T21:20:06.9820000-07:00|10FF0006|Wowobora Gogobora|4084|Enkindle Phoenix|40022472|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|7454795|40478540|10000|10000|||100.00|80.10|0.00|0.00|57062|81809|8650|10000|||99.87|99.96|0.00|3.14|0001A182|0|1| +37|2023-10-06T21:20:07.0260000-07:00|40022472|Zeromus|0001A178|7432529||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:07.0710000-07:00|40022472|Zeromus|0001A180|7400359||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:07.0710000-07:00|40022D20|Demi-Phoenix|4086|Revelation|40022472|Zeromus|150003|A7B80000|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|7454795|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||81.22|86.38|0.00|1.89|0001A183|0|1| +21|2023-10-06T21:20:07.0710000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7454795|40478540|10000|10000|||100.00|80.10|0.00|0.00|111008|129071|7100|10000|||101.43|98.15|0.00|-3.06|0001A184|0|1| +31|2023-10-06T21:20:07.0710000-07:00|10FF0001||||| +37|2023-10-06T21:20:07.1150000-07:00|10FF000A|Dukaro Nezikaro|0001A17D|65331||||||100.02|99.78|0.00|-3.14| +37|2023-10-06T21:20:07.1610000-07:00|10FF0009|Zewo Negiwo|0001A17F|69602|81177|4870|10000|0||99.20|100.69|0.00|3.10|1800|0|0|01|060004C3|0|41200000|| +26|2023-10-06T21:20:07.1610000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +24|2023-10-06T21:20:07.2050000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|74E|62682|90216|10000|10000|||100.97|101.24|0.00|-3.10|40022D20|Demi-Phoenix|0|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +20|2023-10-06T21:20:07.2050000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.20|100.69|0.00|3.10| +38|2023-10-06T21:20:07.2050000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|64552|90216|10000|10000|0||100.97|101.24|0.00|-3.10|0|0|0||||||||||||||||||| +37|2023-10-06T21:20:07.2500000-07:00|10FF0007|Kehabiqo Febiqo|0001A17D|115507||||||99.97|98.06|0.00|3.13| +24|2023-10-06T21:20:07.2500000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|77D|65331|82773|10000|10000|||100.02|99.78|0.00|-3.14|40022D20|Demi-Phoenix|0|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +38|2023-10-06T21:20:07.2500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67248|82773|10000|10000|0||100.02|99.78|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:07.2950000-07:00|10FF0006|Wowobora Gogobora|0001A17F|76755|81809|8650|10000|0||99.87|99.96|0.00|3.14|1B01|0|0|02|05000A8D|0|C2700000|||||| +26|2023-10-06T21:20:07.2950000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:20:07.2950000-07:00|10FF0008|Kokosaze Lulusaze|0001A181|64552|90216|10000|10000|0||100.97|101.24|0.00|-3.10|1F00|0|0|01|05000353|0|40A00000|| +21|2023-10-06T21:20:07.2950000-07:00|40022D23|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|21740000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|7400359|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||89.74|95.51|0.00|2.56|0001A185|0|1| +24|2023-10-06T21:20:07.2950000-07:00|10FF0003|Gegehi Gehi|HoT|0|C10|49110|73814|4150|10000|||100.60|100.57|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +21|2023-10-06T21:20:07.2950000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40022472|Zeromus|6DE0E|35D0000|72000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|7400359|40478540|10000|10000|||100.00|80.10|0.00|0.00|64552|90216|10000|10000|||100.97|101.24|0.00|-3.10|0001A186|0|1| +21|2023-10-06T21:20:07.2950000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|712003|9A720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7400359|40478540|10000|10000|||100.00|80.10|0.00|0.00|111008|129071|7100|10000|||101.43|98.15|0.00|-3.06|0001A187|0|1| +38|2023-10-06T21:20:07.2950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|64552|90216|10000|10000|0||100.97|101.24|0.00|-3.10|0|0|0||||||||||||||||||| +38|2023-10-06T21:20:07.2950000-07:00|10FF0003|Gegehi Gehi|005A5A23|52198|73814|4150|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||| +37|2023-10-06T21:20:07.3380000-07:00|40022472|Zeromus|0001A17E|7386726||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:07.3380000-07:00|10FF0006|Wowobora Gogobora|0001A17E|76755|81809|8650|10000|0||99.87|99.96|0.00|3.14|1B00|0|0|01|05000A8D|0|42700000|| +38|2023-10-06T21:20:07.3380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76755|81809|8650|10000|0||99.87|99.96|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:07.3820000-07:00|10FF0003|Gegehi Gehi|0001A17D|71691||||||100.60|100.57|0.00|-3.11| +24|2023-10-06T21:20:07.3820000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15C9|111008|129071|7100|10000|||101.43|98.15|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +24|2023-10-06T21:20:07.3820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|CE5|115507|129844|10000|10000|||99.98|97.64|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +24|2023-10-06T21:20:07.3820000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D91|67248|82773|10000|10000|||100.02|99.78|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +24|2023-10-06T21:20:07.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|CE8|68462|81541|300|10000|||100.24|100.08|0.00|1.12|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +24|2023-10-06T21:20:07.3820000-07:00|10FF0003|Gegehi Gehi|HoT|798|D79|52198|73814|4150|10000|||100.60|100.57|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +24|2023-10-06T21:20:07.3820000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D3C|76755|81809|8650|10000|||99.87|99.96|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +24|2023-10-06T21:20:07.3820000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D04|64552|90216|10000|10000|||100.96|101.25|-0.02|-3.09|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +24|2023-10-06T21:20:07.3820000-07:00|10FF0009|Zewo Negiwo|HoT|798|D06|69602|81177|4870|10000|||99.20|100.69|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +24|2023-10-06T21:20:07.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|BE7|68462|81541|300|10000|||100.24|100.08|0.00|1.12|10FF0004|Buhojaqe Zijaqe|0|68462|81541|300|10000|||100.24|100.08|0.00|1.12| +38|2023-10-06T21:20:07.3820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118808|129844|10000|10000|0||99.98|97.64|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:07.3820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:20:07.3830000-07:00|10FF0009|Zewo Negiwo|005A5A18|72936|81177|4870|10000|0||99.20|100.69|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:07.3830000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:20:07.3830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67884|90216|10000|10000|0||100.96|101.25|-0.02|-3.09|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:07.3830000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:07.3830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|80143|81809|8650|10000|0||99.87|99.96|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:07.3830000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:20:07.3830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116585|129071|7100|10000|0||101.43|98.15|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:07.3830000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:20:07.3830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74813|81541|300|10000|0||100.24|100.08|0.00|1.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:07.3830000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:07.3830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||| +26|2023-10-06T21:20:07.3830000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:20:07.3830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|70721|82773|10000|10000|0||100.02|99.78|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:07.3830000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:20:07.4260000-07:00|10FF0004|Buhojaqe Zijaqe|0001A17F|74813|81541|300|10000|0||100.24|100.08|0.00|1.12|1C02|0|0|01|090004C3|0|41200000|| +26|2023-10-06T21:20:07.4260000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +24|2023-10-06T21:20:07.4710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|7B5|115507|129844|10000|10000|||99.98|97.64|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|115507|129844|10000|10000|||99.98|97.64|0.00|3.13| +24|2023-10-06T21:20:07.4710000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7E1|76755|81809|8650|10000|||99.87|99.96|0.00|3.14|10FF0009|Zewo Negiwo|0|69602|81177|4870|10000|||99.20|100.69|0.00|3.10| +38|2023-10-06T21:20:07.4710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120781|129844|10000|10000|0||99.98|97.64|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:20:07.4710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8650|10000|0||99.87|99.96|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:07.5160000-07:00|10FF0008|Kokosaze Lulusaze|0001A17D|88025||||||100.94|101.25|0.00|-3.09| +24|2023-10-06T21:20:07.5160000-07:00|10FF0009|Zewo Negiwo|HoT|0|746|72936|81177|4870|10000|||99.20|100.69|0.00|3.10|40022D20|Demi-Phoenix|0|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +21|2023-10-06T21:20:07.5160000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|120781|129844|10000|10000|||99.99|97.26|-0.01|3.13|120781|129844|10000|10000|||99.99|97.26|-0.01|3.13|0001A188|0|1| +21|2023-10-06T21:20:07.5160000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|54490000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|7386726|40478540|10000|10000|||100.00|80.10|0.00|0.00|70721|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A189|0|1| +38|2023-10-06T21:20:07.5160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120781|129844|10000|10000|0||99.99|97.26|-0.01|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:07.5160000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:20:07.5160000-07:00|10FF0009|Zewo Negiwo|005A5A18|74798|81177|5420|10000|0||99.20|100.69|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:20:07.5610000-07:00|10FF000A|Dukaro Nezikaro|0001A17F|70721|82773|10000|10000|0||100.02|99.78|0.00|-3.14|1E03|0|0|01|050004C3|0|41200000|| +26|2023-10-06T21:20:07.5610000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +24|2023-10-06T21:20:07.5610000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|778|116585|129071|7100|10000|||101.43|98.15|0.00|-3.06|10FF0006|Wowobora Gogobora|0|81809|81809|8650|10000|||99.87|99.96|0.00|3.14| +38|2023-10-06T21:20:07.5610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118497|129071|7100|10000|0||101.43|98.15|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:20:07.6050000-07:00|40022472|Zeromus|0001A184|7384501||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:07.1250000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:20:07.6500000-07:00|10FF0001|Sesuga Sapisuga|0001A17D|129071||||||101.43|98.15|0.00|-3.06| +21|2023-10-06T21:20:07.6500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7386726|40478540|10000|10000|||100.00|80.10|0.00|0.00|120781|129844|10000|10000|||99.99|97.06|-0.02|3.13|0001A18A|0|1| +37|2023-10-06T21:20:07.6940000-07:00|10FF0003|Gegehi Gehi|0001A17F|73814|73814|4150|10000|0||100.60|100.57|0.00|-3.11|2304|0|0|01|030004C3|0|41200000|| +26|2023-10-06T21:20:07.6940000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +39|2023-10-06T21:20:07.7830000-07:00|40022D20|Demi-Phoenix|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +21|2023-10-06T21:20:07.7830000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|31690000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|120781|129844|10000|10000|||99.99|97.06|0.00|3.13|7384501|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A18B|0|1| +37|2023-10-06T21:20:07.8280000-07:00|10FF0007|Kehabiqo Febiqo|0001A17F|120781|129844|10000|10000|0||99.99|97.06|-0.02|3.13|1505|0|0|02|05000769|0|C1F00000|||||| +26|2023-10-06T21:20:07.8280000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:20:07.8280000-07:00|40022472|Zeromus|0001A187|7344963||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:07.8730000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7384501|40478540|10000|10000|||100.00|80.10|0.00|0.00|74813|81541|300|10000|||100.24|100.08|0.00|1.12|0001A18C|0|1| +37|2023-10-06T21:20:07.9180000-07:00|40022472|Zeromus|0001A186|7344963|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|0|41200000|| +26|2023-10-06T21:20:07.9180000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|90216| +37|2023-10-06T21:20:07.9180000-07:00|10FF0008|Kokosaze Lulusaze|0001A186|88025|90216|10000|10000|0||100.61|101.03|0.00|-2.79|1F00|0|0|01|0600079A|0|41200000|| +26|2023-10-06T21:20:07.9180000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T21:20:07.9180000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|112D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7384501|40478540|10000|10000|||100.00|80.10|0.00|0.00|70721|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A18D|0|1| +37|2023-10-06T21:20:07.9620000-07:00|10FF0008|Kokosaze Lulusaze|0001A17F|88025|90216|10000|10000|0||100.37|100.82|0.00|-2.60|1F06|0|0|01|070004C3|0|41200000|| +26|2023-10-06T21:20:07.9620000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +37|2023-10-06T21:20:08.0510000-07:00|10FF0007|Kehabiqo Febiqo|0001A188|120781|129844|10000|10000|0||99.99|97.06|0.00|3.13|1500|0|0|01|05000769|0|41F00000|| +37|2023-10-06T21:20:08.0510000-07:00|40022472|Zeromus|0001A185|7336399||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:08.0510000-07:00|40022472|Zeromus|0001A189|7314822||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:08.0510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120781|129844|10000|10000|0||99.99|97.06|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:20:08.0960000-07:00|40022472|Zeromus|0001A183|7271886||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:08.0960000-07:00|10FF0001|Sesuga Sapisuga|0001A17F|129071|129071|7100|10000|0||101.43|98.15|0.00|-3.06|1307|0|0|01|060004C3|0|41200000|| +26|2023-10-06T21:20:08.0960000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:20:08.0960000-07:00|40022D20|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||81.22|86.38|0.00|1.89|0|0|0||||||| +30|2023-10-06T21:20:08.0960000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022D20|Demi-Phoenix|01|77698|40478540| +21|2023-10-06T21:20:08.1410000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|358C0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|7314822|40478540|10000|10000|||100.00|80.10|0.00|0.00|74798|81177|5420|10000|||99.20|100.69|0.00|3.10|0001A18E|0|1| +37|2023-10-06T21:20:08.1860000-07:00|40022472|Zeromus|0001A18A|7268914||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:08.1860000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|150003|581D0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7314822|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8650|10000|||99.87|99.96|0.00|3.14|0001A18F|0|1| +21|2023-10-06T21:20:08.2300000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|30AF0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|7314822|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4150|10000|||100.60|100.57|0.00|-3.11|0001A190|0|1| +38|2023-10-06T21:20:08.2300000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3950|10000|0||100.60|100.57|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:08.2300000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:20:07.7440000-07:00|Change|10FF0006||| +261|2023-10-06T21:20:07.7440000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T21:20:08.3200000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|756003|4ED10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7268914|40478540|10000|10000|||100.00|80.10|0.00|0.00|70721|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A191|0|1| +37|2023-10-06T21:20:08.4090000-07:00|40022472|Zeromus|0001A18C|7268655||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:08.4540000-07:00|40022472|Zeromus|0001A18D|7264258||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:08.5420000-07:00|10FF0003|Gegehi Gehi|73814|73814|4150|10000|||100.60|100.57|0.00|-3.11| +21|2023-10-06T21:20:08.5420000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|726003|C5060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7264258|40478540|10000|10000|||100.00|80.10|0.00|0.00|88025|90216|10000|10000|||99.96|100.48|0.00|-2.29|0001A192|0|1| +21|2023-10-06T21:20:08.5420000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|1360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7264258|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8350|10000|||99.87|99.96|0.00|3.14|0001A193|0|1| +38|2023-10-06T21:20:08.5420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88025|90216|10000|10000|0||99.96|100.48|0.00|-2.29|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:08.5420000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:20:08.5870000-07:00|10FF0007|Kehabiqo Febiqo|0001A18B|108132||||||99.99|97.06|0.00|3.13| +39|2023-10-06T21:20:08.6310000-07:00|10FF0009|Zewo Negiwo|75609|81177|5241|10000|||99.20|100.69|0.00|3.10| +21|2023-10-06T21:20:08.6310000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7264258|40478540|10000|10000|||100.00|80.10|0.00|0.00|88025|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A194|0|1| +261|2023-10-06T21:20:08.1710000-07:00|Change|10FF0009||||||||||||||| +39|2023-10-06T21:20:08.7210000-07:00|10FF0008|Kokosaze Lulusaze|88927|90216|10000|10000|||99.96|100.48|0.00|3.14| +24|2023-10-06T21:20:08.7660000-07:00|40022472|Zeromus|DoT|0|2642|7264258|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|88025|90216|10000|10000|||99.96|100.48|0.00|3.14| +38|2023-10-06T21:20:08.7660000-07:00|40022472|Zeromus|005A5A00|7254464|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T21:20:08.2640000-07:00|Change|10FF0003||| +21|2023-10-06T21:20:08.8110000-07:00|10FF0006|Wowobora Gogobora|64E6|Rekindle|10FF0006|Wowobora Gogobora|4|27590000|4B10420E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|81809|81809|8350|10000|||99.87|99.96|0.00|3.14|81809|81809|8350|10000|||99.87|99.96|0.00|3.14|0001A195|0|1| +21|2023-10-06T21:20:08.8550000-07:00|40022D23|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|22250000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|7254464|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||89.74|95.51|0.00|2.56|0001A196|0|1| +36|2023-10-06T21:20:08.8550000-07:00|5EEC|3| +39|2023-10-06T21:20:08.9000000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7300|10000|||101.43|98.15|0.00|-3.06| +39|2023-10-06T21:20:08.9000000-07:00|10FF0004|Buhojaqe Zijaqe|75628|81541|500|10000|||100.24|100.08|0.00|1.12| +21|2023-10-06T21:20:08.9000000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|9A840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7254464|40478540|10000|10000|||100.00|80.10|0.00|0.00|108132|129844|10000|10000|||99.99|97.06|0.00|3.14|0001A197|0|1| +38|2023-10-06T21:20:08.9000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108132|129844|10000|10000|0||99.99|97.06|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:08.9000000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:20:08.3600000-07:00|Change|10FF0001||| +261|2023-10-06T21:20:08.3600000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:20:08.9440000-07:00|40022472|Zeromus|0001A191|7234287||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:08.9890000-07:00|40022472|Zeromus|0001A190|7221824||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:08.9890000-07:00|10FF0007|Kehabiqo Febiqo|109430|129844|10000|10000|||99.99|97.06|0.00|3.14| +39|2023-10-06T21:20:08.9890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8550|10000|||99.87|99.96|0.00|3.14| +261|2023-10-06T21:20:08.4550000-07:00|Change|10FF0006||| +37|2023-10-06T21:20:09.0790000-07:00|40022472|Zeromus|0001A193|7221514||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:09.1230000-07:00|40022D20|Demi-Phoenix|4087|Scarlet Flame|40022472|Zeromus|154003|19940000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|7221514|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||81.22|86.38|0.00|1.89|0001A198|0|1| +21|2023-10-06T21:20:09.1680000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|88927|90216|10000|10000|||99.96|100.48|0.00|3.14|88927|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A199|0|1| +38|2023-10-06T21:20:09.1680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88927|90216|10000|10000|0||99.96|100.48|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:09.1680000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:20:09.2580000-07:00|40022472|Zeromus|0001A18F|7198957||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:09.2580000-07:00|40022D23|Automaton Queen|82193|85668|10000|10000|||89.74|95.51|0.00|2.56| +21|2023-10-06T21:20:09.2580000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|398F0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|7221514|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4150|10000|||100.60|100.57|0.00|-3.11|0001A19A|0|1| +38|2023-10-06T21:20:09.2580000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3850|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||| +30|2023-10-06T21:20:09.2580000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:20:09.3460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|ADD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7198957|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7300|10000|||101.43|98.15|0.00|-3.06|0001A19B|0|1| +31|2023-10-06T21:20:09.3460000-07:00|10FF0001||||| +37|2023-10-06T21:20:09.3910000-07:00|40022472|Zeromus|0001A194|7196079||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:09.4350000-07:00|40022472|Zeromus|0001A18E|7182371||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:20:09.4790000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:20:09.4790000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|752003|59CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7196079|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8550|10000|||99.87|99.96|0.00|3.14|0001A19C|0|1| +37|2023-10-06T21:20:09.6130000-07:00|40022472|Zeromus|0001A196|7173630||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:09.6570000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.20|100.69|0.00|3.10| +21|2023-10-06T21:20:09.6570000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|712003|28400000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|7182371|40478540|10000|10000|||100.00|80.10|0.00|0.00|70721|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A19D|0|1| +261|2023-10-06T21:20:09.2290000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:20:09.7020000-07:00|40022472|Zeromus|0001A192|7123192|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|01|410374C2|| +26|2023-10-06T21:20:09.7020000-07:00|35D|Wildfire|8.22|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|01|40478540|90216| +261|2023-10-06T21:20:09.3240000-07:00|Change|10FF0003||| +37|2023-10-06T21:20:09.8370000-07:00|40022472|Zeromus|0001A197|7083636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:09.8370000-07:00|10FF0006|Wowobora Gogobora|0001A195|81809|81809|8550|10000|0||99.87|99.96|0.00|3.14|1B00|0|0|01|07000A90|4B|41F00000|| +26|2023-10-06T21:20:09.8370000-07:00|A90|Rekindle|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|4B|81809|81809| +21|2023-10-06T21:20:09.8370000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|88927|90216|10000|10000|||99.96|100.48|0.00|3.14|88927|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A19E|0|1| +21|2023-10-06T21:20:09.8370000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|3D8A0000|4|26B58000|0|0|0|0|0|0|0|0|0|0|0|0|7123192|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7300|10000|||101.43|98.15|0.00|-3.06|0001A19F|0|1| +38|2023-10-06T21:20:09.8370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||101.43|98.15|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:09.8370000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:20:09.8810000-07:00|40022472|Zeromus|0001A19B|7080855||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:09.4210000-07:00|Change|10FF0001||| +37|2023-10-06T21:20:10.0150000-07:00|40022472|Zeromus|0001A19A|7066120||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:10.0150000-07:00|10FF000A|Dukaro Nezikaro|71548|82773|10000|10000|||100.02|99.78|0.00|-3.14| +37|2023-10-06T21:20:10.0600000-07:00|40022472|Zeromus|0001A19D|7055816||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:10.1050000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7066120|40478540|10000|10000|||100.00|80.10|0.00|0.00|71548|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A1A0|0|1| +37|2023-10-06T21:20:10.1490000-07:00|40022472|Zeromus|0001A198|7049268||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:10.1490000-07:00|40022D27|Liturgic Bell|77042|77042|10000|10000|||96.57|99.25|0.00|1.07| +24|2023-10-06T21:20:10.1940000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|CC7|88927|90216|10000|10000|||99.96|100.48|0.00|3.14|10FF0009|Zewo Negiwo|0|75609|81177|5241|10000|||99.20|100.69|0.00|3.10| +38|2023-10-06T21:20:10.1940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.96|100.48|0.00|3.14|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:20:10.2380000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7049268|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3850|10000|||100.60|100.57|0.00|-3.11|0001A1A1|0|1| +24|2023-10-06T21:20:10.2820000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|7A9|71548|82773|10000|10000|||100.02|99.78|0.00|-3.14|40022D20|Demi-Phoenix|0|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +38|2023-10-06T21:20:10.2820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|73509|82773|10000|10000|0||100.02|99.78|0.00|-3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:20:10.3270000-07:00|10FF0003|Gegehi Gehi|HoT|0|7D3|73814|73814|3850|10000|||100.60|100.57|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +21|2023-10-06T21:20:10.3270000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0004|Buhojaqe Zijaqe|200004|7C260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09|75628|81541|500|10000|||100.24|100.05|0.00|3.09|0001A1A2|0|1| +38|2023-10-06T21:20:10.3270000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75628|81541|500|10000|0||100.24|100.05|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:10.3270000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +38|2023-10-06T21:20:10.3270000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3850|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||| +24|2023-10-06T21:20:10.3730000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15E7|129071|129071|6300|10000|||101.43|98.15|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +24|2023-10-06T21:20:10.3730000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|15F8|109430|129844|10000|10000|||99.99|97.06|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +24|2023-10-06T21:20:10.3730000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|1612|73509|82773|10000|10000|||100.02|99.78|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +24|2023-10-06T21:20:10.3730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D49|75628|81541|500|10000|||100.24|100.05|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +24|2023-10-06T21:20:10.3730000-07:00|10FF0003|Gegehi Gehi|HoT|798|CFE|73814|73814|3850|10000|||100.60|100.57|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +24|2023-10-06T21:20:10.3730000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15CD|81809|81809|8550|10000|||99.87|99.96|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +24|2023-10-06T21:20:10.3730000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|152F|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +24|2023-10-06T21:20:10.3730000-07:00|10FF0009|Zewo Negiwo|HoT|798|1591|75609|81177|5241|10000|||99.20|100.69|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|75628|81541|500|10000|||100.24|100.05|0.00|3.09| +24|2023-10-06T21:20:10.3730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7C0|75628|81541|500|10000|||100.24|100.05|0.00|3.09|10FF0009|Zewo Negiwo|0|75609|81177|5241|10000|||99.20|100.69|0.00|3.10| +38|2023-10-06T21:20:10.3730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115054|129844|10000|10000|0||99.99|97.06|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:10.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:20:10.3730000-07:00|10FF0009|Zewo Negiwo|005A5A18|81130|81177|5241|10000|0||99.20|100.69|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:10.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:20:10.3730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.96|100.48|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:10.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:10.3730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8550|10000|0||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:10.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:20:10.3730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||101.43|98.15|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:10.3730000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:20:10.3730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81013|81541|500|10000|0||100.24|100.05|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:10.3730000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:10.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3850|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||| +26|2023-10-06T21:20:10.3730000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:20:10.3730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79159|82773|10000|10000|0||100.02|99.78|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:10.3730000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:20:10.4160000-07:00|40022472|Zeromus|0001A19C|7026282||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:10.4160000-07:00|40022D23|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|24000000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|7026282|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||89.74|95.51|0.00|2.56|0001A1A3|0|1| +24|2023-10-06T21:20:10.5060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|C1A|115054|129844|10000|10000|||99.99|97.06|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|115054|129844|10000|10000|||99.99|97.06|0.00|3.14| +24|2023-10-06T21:20:10.5060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7C4|81809|81809|8550|10000|||99.87|99.96|0.00|3.14|10FF0006|Wowobora Gogobora|0|81809|81809|8550|10000|||99.87|99.96|0.00|3.14| +38|2023-10-06T21:20:10.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118152|129844|10000|10000|0||99.99|97.06|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:20:10.5060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8550|10000|0||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:20:10.5510000-07:00|10FF0009|Zewo Negiwo|HoT|0|7EF|81130|81177|5241|10000|||99.20|100.69|0.00|3.10|40022D20|Demi-Phoenix|0|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +38|2023-10-06T21:20:10.5510000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5791|10000|0||99.20|100.69|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:10.2020000-07:00|Change|10FF0009||||| +37|2023-10-06T21:20:10.5960000-07:00|40022472|Zeromus|0001A19F|7010528||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:10.5960000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|BC8|129071|129071|6300|10000|||101.50|97.90|0.00|2.85|10FF0006|Wowobora Gogobora|0|81809|81809|8550|10000|||99.87|99.96|0.00|3.14| +21|2023-10-06T21:20:10.5960000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|53DF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|7026282|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5791|10000|||99.20|100.69|0.00|3.10|0001A1A4|0|1| +38|2023-10-06T21:20:10.5960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||101.50|97.90|0.00|2.85|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:20:10.6400000-07:00|40022472|Zeromus|0001A1A0|7007887||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:10.6400000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40022472|Zeromus|152003|92310000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7026282|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8550|10000|||99.87|99.96|0.00|3.14|0001A1A5|0|1| +37|2023-10-06T21:20:10.7750000-07:00|40022472|Zeromus|0001A1A1|7007860||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:10.7750000-07:00|40022D20|Demi-Phoenix|74223|77698|10000|10000|||81.22|86.38|0.00|1.89| +38|2023-10-06T21:20:10.7750000-07:00|40022D20|Demi-Phoenix|005A5A00|0|77698|0|10000|0||81.22|86.38|0.00|1.89|0|0|0|||| +30|2023-10-06T21:20:10.7750000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022D20|Demi-Phoenix|00|77698|81809| +38|2023-10-06T21:20:10.8200000-07:00|40022D2A||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:20:10.8200000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|32460000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|118152|129844|10000|10000|||99.99|97.06|0.00|3.14|7026282|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A1A6|0|1| +38|2023-10-06T21:20:10.8200000-07:00|40022D2A||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:20:10.2940000-07:00|Change|10FF0006||| +261|2023-10-06T21:20:10.2940000-07:00|Change|40022D20||||||||| +41|2023-10-06T21:20:10.8640000-07:00|80034E7C|290B|01|00|00| +37|2023-10-06T21:20:10.9540000-07:00|10FF0004|Buhojaqe Zijaqe|0001A1A2|81541||||||100.24|100.04|0.00|3.09| +00|2023-10-06T21:20:10.0000000-07:00|0839||The barrier between worlds weakens...| +21|2023-10-06T21:20:10.9990000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7007860|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|500|10000|||100.24|99.96|0.00|3.07|0001A1A7|0|1| +21|2023-10-06T21:20:11.0430000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|14130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7007860|40478540|10000|10000|||100.00|80.10|0.00|0.00|118152|129844|10000|10000|||99.99|97.06|0.00|3.14|0001A1A8|0|1| +26|2023-10-06T21:20:11.0430000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:20:11.0430000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|237F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7007860|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A1A9|0|1| +38|2023-10-06T21:20:11.0430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|500|10000|0||100.24|99.96|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:11.0430000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:20:11.0430000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|500|10000|||100.24|99.96|0.00|3.07|81541|81541|500|10000|||100.24|99.96|0.00|3.07|0001A1AA|0|1| +37|2023-10-06T21:20:11.1760000-07:00|40022472|Zeromus|0001A1A3|6998644||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:10.6950000-07:00|Add|40022D2A||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:20:10.6950000-07:00|40022D2A|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.90|98.23|0.00|-0.01| +261|2023-10-06T21:20:10.8130000-07:00|Change|40022D2A||| +21|2023-10-06T21:20:11.3100000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6998644|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A1AB|0|1| +21|2023-10-06T21:20:11.3100000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40022472|Zeromus|750003|36EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6998644|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8250|10000|||99.87|99.96|0.00|3.14|0001A1AC|0|1| +38|2023-10-06T21:20:11.3100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8250|10000|0||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:11.3100000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:20:11.3540000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|A10D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6998644|40478540|10000|10000|||100.00|80.10|0.00|0.00|118152|129844|10000|10000|||99.99|97.06|0.00|3.14|0001A1AD|0|1| +38|2023-10-06T21:20:11.3540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118152|129844|10000|10000|0||99.99|97.06|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:11.3540000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:20:11.5330000-07:00|40022472|Zeromus|0001A1A7|6998395||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:11.5330000-07:00|10FF0003|Gegehi Gehi|73814|73814|4050|10000|||100.73|99.95|0.00|2.98| +261|2023-10-06T21:20:11.0420000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:20:11.5790000-07:00|40022472|Zeromus|0001A1A8|6993256||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:11.5790000-07:00|10FF0004|Buhojaqe Zijaqe|0001A1AA|81541|81541|2500|10000|0||100.27|99.69|-0.02|2.98|1C00|0|0|0| +261|2023-10-06T21:20:11.0420000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:20:11.6230000-07:00|10FF0007|Kehabiqo Febiqo|0001A1A6|105282||||||99.99|97.06|0.00|3.14| +39|2023-10-06T21:20:11.6230000-07:00|10FF0009|Zewo Negiwo|81177|81177|5612|10000|||99.20|100.69|0.00|3.10| +21|2023-10-06T21:20:11.6230000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|9200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6993256|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||101.52|97.86|0.00|2.85|0001A1AE|0|1| +31|2023-10-06T21:20:11.6230000-07:00|10FF0001||||| +37|2023-10-06T21:20:11.6670000-07:00|40022472|Zeromus|0001A1A9|6984169|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|02|40C80002|| +26|2023-10-06T21:20:11.6670000-07:00|35D|Wildfire|6.25|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|02|40478540|90216| +21|2023-10-06T21:20:11.6670000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|722003|216D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6993256|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A1AF|0|1| +21|2023-10-06T21:20:11.6670000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6993256|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8250|10000|||99.87|99.96|0.00|3.14|0001A1B0|0|1| +21|2023-10-06T21:20:11.6670000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|756003|4FF10000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|6993256|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4050|10000|||100.75|99.85|-0.01|2.96|0001A1B1|0|1| +37|2023-10-06T21:20:11.7120000-07:00|40022472|Zeromus|0001A1A5|6946744||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:11.7120000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.96|100.48|0.00|3.14| +261|2023-10-06T21:20:11.2430000-07:00|Change|10FF0009||||||||||||||| +24|2023-10-06T21:20:11.7570000-07:00|40022472|Zeromus|DoT|0|1CB2|6946744|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||99.96|100.48|0.00|3.14| +38|2023-10-06T21:20:11.7570000-07:00|40022472|Zeromus|005A5A00|6939398|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +34|2023-10-06T21:20:11.8470000-07:00|40022D2A|Carbuncle|40022D2A|Carbuncle|01| +36|2023-10-06T21:20:11.8470000-07:00|5FC8|3| +261|2023-10-06T21:20:11.3420000-07:00|Change|40022D2A||| +37|2023-10-06T21:20:11.8910000-07:00|40022472|Zeromus|0001A1A4|6917927||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:11.8910000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||101.52|97.86|0.00|2.85| +39|2023-10-06T21:20:11.8910000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +261|2023-10-06T21:20:11.4400000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:20:11.9810000-07:00|40022D23|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|20B70000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|6917927|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||89.74|95.51|0.00|2.56|0001A1B2|0|1| +39|2023-10-06T21:20:11.9810000-07:00|10FF0007|Kehabiqo Febiqo|106580|129844|10000|10000|||99.99|97.06|0.00|3.14| +20|2023-10-06T21:20:11.9810000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.27|99.69|0.00|2.98| +21|2023-10-06T21:20:11.9810000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2D240000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|6917927|40478540|10000|10000|||100.00|80.10|0.00|0.00|79159|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A1B3|0|1| +261|2023-10-06T21:20:11.6310000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T21:20:12.0250000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8450|10000|||99.87|99.96|0.00|3.14| +37|2023-10-06T21:20:12.0690000-07:00|40022472|Zeromus|0001A1AB|6915665||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:12.0690000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|99.20|100.69|0.00|3.10| +37|2023-10-06T21:20:12.1570000-07:00|40022472|Zeromus|0001A1AE|6913329||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:11.6310000-07:00|Change|10FF0006||| +37|2023-10-06T21:20:12.2020000-07:00|40022472|Zeromus|0001A1B0|6913141||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:12.2470000-07:00|40022472|Zeromus|0001A1AC|6899083||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:12.2470000-07:00|40022D23|Automaton Queen|005A5A00|82193|85668|10000|10000|0||89.74|95.51|0.00|2.56|0|0|0|||||||||| +26|2023-10-06T21:20:12.2470000-07:00|30|Well Fed|1253.97|10FF0008|Kokosaze Lulusaze|40022D23|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:20:12.2470000-07:00|A8F|Searing Light|14.13|10FF0006|Wowobora Gogobora|40022D23|Automaton Queen|00|85668|81809| +26|2023-10-06T21:20:12.2470000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022D23|Automaton Queen|01|85668|40478540| +37|2023-10-06T21:20:12.2920000-07:00|40022472|Zeromus|0001A1B1|6878618||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:12.2920000-07:00|40022D23|Automaton Queen|82193|85668|10000|10000|||89.74|95.51|0.00|2.56| +21|2023-10-06T21:20:12.2920000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|53C60000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6913329|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||101.52|97.86|0.00|-3.06|0001A1B4|0|1| +21|2023-10-06T21:20:12.2920000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6913329|40478540|10000|10000|||100.00|80.10|0.00|0.00|79159|82773|10000|10000|||100.02|99.78|0.00|-3.14|0001A1B5|0|1| +38|2023-10-06T21:20:12.2920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|0||101.52|97.86|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:12.2920000-07:00|76E|Sword Oath|13.02|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T21:20:12.3820000-07:00|40022472|Zeromus|0001A1B3|6867062||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:12.4690000-07:00|40022472|Zeromus|0001A1AF|6858505||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:12.5150000-07:00|40022472|Zeromus|0001A1AD|6817276||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:20:12.5150000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:20:12.5150000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|212B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6858505|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A1B6|0|1| +261|2023-10-06T21:20:12.1920000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:20:12.7370000-07:00|40022472|Zeromus|0001A1B2|6808901||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:12.8260000-07:00|40022472|Zeromus|0001A1B5|6805490||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:12.3770000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:20:12.3770000-07:00|Change|4002248D||||||||| +20|2023-10-06T21:20:12.9600000-07:00|4002248D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.70|86.65|0.00|0.00| +20|2023-10-06T21:20:12.9600000-07:00|4002248E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|87.20|113.65|0.00|0.00| +20|2023-10-06T21:20:12.9600000-07:00|4002248F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.70|95.65|0.00|0.00| +20|2023-10-06T21:20:12.9600000-07:00|40022490|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.71|101.42|0.00|0.00| +261|2023-10-06T21:20:12.4670000-07:00|Change|40022490||||||||||||||| +261|2023-10-06T21:20:12.4670000-07:00|Change|4002248F||||||||||||||| +39|2023-10-06T21:20:13.0050000-07:00|10FF000A|Dukaro Nezikaro|79986|82773|10000|10000|||100.02|99.78|0.00|-3.14| +21|2023-10-06T21:20:13.0050000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|50EB0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|6805490|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5612|10000|||99.20|100.69|0.00|3.10|0001A1B7|0|1| +37|2023-10-06T21:20:13.1380000-07:00|40022472|Zeromus|0001A1B6|6796999|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|03|4098F5BD|| +26|2023-10-06T21:20:13.1380000-07:00|35D|Wildfire|4.78|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|03|40478540|90216| +39|2023-10-06T21:20:13.1380000-07:00|40022D27|Liturgic Bell|77042|77042|10000|10000|||96.57|99.25|0.00|1.07| +21|2023-10-06T21:20:13.1380000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|1A140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6805490|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A1B8|0|1| +21|2023-10-06T21:20:13.1380000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|6805490|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8450|10000|||100.20|101.25|-0.01|0.55|0001A1B9|0|1| +38|2023-10-06T21:20:13.1380000-07:00|40022D2A|Carbuncle|005A5A00|0|77698|0|10000|0||99.91|98.25|0.00|0.05|0|0|0||||||| +26|2023-10-06T21:20:13.1380000-07:00|30|Well Fed|1260.14|10FF0006|Wowobora Gogobora|40022D2A|Carbuncle|2964|77698|81809| +261|2023-10-06T21:20:12.7040000-07:00|Change|40022D2A||||||||| +38|2023-10-06T21:20:13.1810000-07:00|40022D2E||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:20:13.1830000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37750003|333A0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|6805490|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4050|10000|||100.76|99.84|0.00|-3.10|0001A1BA|0|1| +38|2023-10-06T21:20:13.1830000-07:00|40022D2E||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:20:12.7040000-07:00|Add|40022D2E||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:20:12.7040000-07:00|40022D2E|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||102.00|103.06|0.00|-3.13| +24|2023-10-06T21:20:13.2270000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|C67|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|10FF0009|Zewo Negiwo|0|81177|81177|5212|10000|||99.20|100.69|0.00|3.10| +38|2023-10-06T21:20:13.2270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.96|100.48|0.00|3.14|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:12.8150000-07:00|Change|40022D2E||||| +24|2023-10-06T21:20:13.2720000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|75E|79986|82773|10000|10000|||100.02|99.78|0.00|-3.14|40022D20|Demi-Phoenix|0|0|77698|0|10000|||81.22|86.38|0.00|1.89| +38|2023-10-06T21:20:13.2720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81872|82773|10000|10000|0||100.02|99.78|0.00|-3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:20:13.3170000-07:00|10FF0003|Gegehi Gehi|HoT|0|7B7|73814|73814|4050|10000|||100.76|99.84|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +38|2023-10-06T21:20:13.3170000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|0||100.76|99.84|0.00|-3.10|0|0|0|||||||||||||||| +24|2023-10-06T21:20:13.4070000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D49|129071|129071|6500|10000|||101.52|97.86|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +24|2023-10-06T21:20:13.4070000-07:00|10FF0003|Gegehi Gehi|HoT|798|D2F|73814|73814|4050|10000|||100.76|99.84|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +24|2023-10-06T21:20:13.4070000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|14F8|106580|129844|10000|10000|||99.99|97.06|-0.02|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +24|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D8D|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +24|2023-10-06T21:20:13.4070000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|1534|81872|82773|10000|10000|||100.02|99.78|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +24|2023-10-06T21:20:13.4070000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D47|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +24|2023-10-06T21:20:13.4070000-07:00|10FF0006|Wowobora Gogobora|HoT|798|14E5|81809|81809|8450|10000|||100.20|101.29|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +24|2023-10-06T21:20:13.4070000-07:00|10FF0009|Zewo Negiwo|HoT|798|1594|81177|81177|5212|10000|||99.20|100.69|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98| +24|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|796|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|10FF0009|Zewo Negiwo|0|81177|81177|5212|10000|||99.20|100.69|0.00|3.10| +22|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|1F8C0000|790E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|0001A1BB|0|8| +22|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|1F360000|F00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81872|82773|10000|10000|||100.02|99.78|0.00|-3.14|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|0001A1BB|1|8| +22|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|32480000|730E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73814|73814|4050|10000|||100.76|99.84|0.00|-3.10|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|0001A1BB|2|8| +22|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|1EC10000|340E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|0001A1BB|3|8| +22|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|4|1F220000|D00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81177|81177|5212|10000|||99.20|100.69|0.00|3.10|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|0001A1BB|4|8| +22|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1E200000|330E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81809|81809|8450|10000|||100.20|101.29|0.00|-3.13|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|0001A1BB|5|8| +22|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|1EDF0000|640E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|6500|10000|||101.52|97.86|0.00|-3.06|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|0001A1BB|6|8| +22|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|32DF0000|640E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|106580|129844|10000|10000|||99.99|97.06|-0.02|3.14|81541|81541|2700|10000|||100.27|99.69|0.00|2.98|0001A1BB|7|8| +38|2023-10-06T21:20:13.4070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111948|129844|10000|10000|16||99.99|97.06|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:13.4070000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +26|2023-10-06T21:20:13.4070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:20:13.4070000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5212|10000|15||99.20|100.69|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:13.4070000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +26|2023-10-06T21:20:13.4070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:20:13.4070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||99.96|100.48|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:13.4070000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +26|2023-10-06T21:20:13.4070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:13.4070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8450|10000|15||100.20|101.29|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:13.4070000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +26|2023-10-06T21:20:13.4070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:20:13.4070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|9||101.52|97.86|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:13.4070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +26|2023-10-06T21:20:13.4070000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:20:13.4070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1700|10000|15||100.27|99.69|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:13.4070000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:20:13.4070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:13.4070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|27||100.76|99.84|0.00|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:13.4070000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +26|2023-10-06T21:20:13.4070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:20:13.4070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||100.02|99.78|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:13.4070000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +26|2023-10-06T21:20:13.4070000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:20:12.9320000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:20:12.9320000-07:00|Change|4002248E||||||||||| +261|2023-10-06T21:20:12.9320000-07:00|Change|4002248D||||||||||| +24|2023-10-06T21:20:13.4950000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|7EA|111948|129844|10000|10000|||99.99|97.06|-0.02|3.14|10FF0007|Kehabiqo Febiqo|0|111948|129844|10000|10000|||99.99|97.06|-0.02|3.14| +24|2023-10-06T21:20:13.4950000-07:00|10FF0006|Wowobora Gogobora|HoT|0|754|81809|81809|8450|10000|||100.20|101.29|0.00|-3.13|10FF0006|Wowobora Gogobora|0|81809|81809|8450|10000|||100.20|101.29|0.00|-3.13| +38|2023-10-06T21:20:13.4950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113974|129844|10000|10000|16||99.99|97.06|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:20:13.4950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8450|10000|15||100.20|101.29|0.00|-3.13|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:20:13.5400000-07:00|40022D23|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|730003|60460000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|6796999|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||89.74|95.51|0.00|2.56|0001A1BC|0|1| +24|2023-10-06T21:20:13.5400000-07:00|10FF0009|Zewo Negiwo|HoT|0|7DE|81177|81177|5212|10000|||99.20|100.69|0.00|3.10|40022D20|Demi-Phoenix|0|0|77698|0|10000|||81.22|86.38|0.00|1.89| +38|2023-10-06T21:20:13.5400000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5762|10000|15||99.20|100.69|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:20:13.5850000-07:00|40022472|Zeromus|0001A1B4|6775553||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:13.5850000-07:00|10FF0001|Sesuga Sapisuga|0001A1B4|129071|129071|6900|10000|9||101.52|97.86|0.00|-3.06|1300|0|0|0| +24|2023-10-06T21:20:13.5860000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7CF|129071|129071|6500|10000|||101.52|97.86|0.00|-3.06|10FF0006|Wowobora Gogobora|0|81809|81809|8450|10000|||100.21|101.30|-0.01|-3.13| +38|2023-10-06T21:20:13.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|9||101.52|97.86|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:13.1520000-07:00|Change|10FF0001||||| +21|2023-10-06T21:20:13.7190000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6775553|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4050|10000|||100.76|99.84|0.00|-3.10|0001A1BD|0|1| +261|2023-10-06T21:20:13.2510000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:20:13.7640000-07:00|40022472|Zeromus|0001A1B8|6768877||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:13.8080000-07:00|40022472|Zeromus|0001A1BA|6755763||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:13.8520000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|714003|1CCB0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|6768877|40478540|10000|10000|||100.00|80.10|0.00|0.00|113974|129844|10000|10000|||99.99|97.06|-0.02|3.14|0001A1BE|0|1| +21|2023-10-06T21:20:13.8520000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|113974|129844|10000|10000|||99.99|97.06|-0.02|3.14|6768877|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A1BF|0|1| +21|2023-10-06T21:20:13.8970000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|114F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6755763|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||102.44|97.49|0.00|1.84|0001A1C0|0|1| +31|2023-10-06T21:20:13.8970000-07:00|10FF0001||||| +261|2023-10-06T21:20:13.3500000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:20:13.3500000-07:00|Change|40022489||||||||| +20|2023-10-06T21:20:13.9860000-07:00|40022489|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|116.50|116.50|0.00|0.00| +20|2023-10-06T21:20:13.9860000-07:00|4002248A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:20:13.9860000-07:00|4002248B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|88.00|100.00|0.00|0.00| +20|2023-10-06T21:20:13.9860000-07:00|4002248C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|100.00|0.00|-1.57| +21|2023-10-06T21:20:13.9860000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EEF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6755763|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|100.48|0.00|3.14|0001A1C1|0|1| +261|2023-10-06T21:20:13.4460000-07:00|Change|4002248A||||||||||||||||| +261|2023-10-06T21:20:13.4460000-07:00|Change|4002248C||||||||||||||||| +26|2023-10-06T21:20:14.0300000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:20:14.0300000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2CDC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6755763|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.97|100.53|0.00|2.22|0001A1C2|0|1| +21|2023-10-06T21:20:14.1630000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44714003|3CD20000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|6755763|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.99|99.78|0.00|-3.07|0001A1C3|0|1| +261|2023-10-06T21:20:13.7540000-07:00|Change|40022D2E||| +37|2023-10-06T21:20:14.2520000-07:00|40022472|Zeromus|0001A1BD|6755733||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:14.2970000-07:00|40022472|Zeromus|0001A1B7|6735018||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:14.3420000-07:00|40022472|Zeromus|005A5A00|6735018|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:14.3420000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:20:13.9880000-07:00|Change|4002248B||||||||||| +261|2023-10-06T21:20:13.9880000-07:00|Change|40022489||||||||||| +37|2023-10-06T21:20:14.3870000-07:00|40022472|Zeromus|0001A1BE|6727647||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:14.4320000-07:00|40022472|Zeromus|0001A1C0|6723216||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:14.4320000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6735018|40478540|10000|10000|||100.00|80.10|0.00|0.00|113974|129844|10000|10000|||99.99|97.01|0.00|3.14|0001A1C4|0|1| +21|2023-10-06T21:20:14.4750000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6735018|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.51|99.59|0.00|-3.13|0001A1C5|0|1| +261|2023-10-06T21:20:14.1100000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:14.5200000-07:00|10FF0004|Buhojaqe Zijaqe|0001A1BB|81541|81541|1700|10000|15||103.20|101.10|0.00|1.25|1C00|0|0|01|0A000129|0|41E772AD|| +39|2023-10-06T21:20:14.5200000-07:00|10FF0003|Gegehi Gehi|73814|73814|4250|10000|||101.22|99.52|0.00|2.50| +21|2023-10-06T21:20:14.5200000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40022472|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6723216|40478540|10000|10000|||100.00|80.10|0.00|0.00|113974|129844|10000|10000|||99.77|96.64|0.00|-3.14|0001A1C6|0|1| +21|2023-10-06T21:20:14.5200000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|752003|10AE0000|FC530E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|6723216|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5762|10000|||101.60|100.63|0.00|1.67|0001A1C7|0|1| +261|2023-10-06T21:20:14.1100000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:20:14.6090000-07:00|10FF0009|Zewo Negiwo|81177|81177|5583|10000|||101.60|100.63|0.00|1.67| +37|2023-10-06T21:20:14.6540000-07:00|40022472|Zeromus|0001A1C2|6711732|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|04|4050E54E|| +26|2023-10-06T21:20:14.6540000-07:00|35D|Wildfire|3.26|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|04|40478540|90216| +37|2023-10-06T21:20:14.6540000-07:00|10FF0007|Kehabiqo Febiqo|0001A1BF|113974|129844|10000|10000|6||99.39|96.00|0.00|-3.12|1500|0|0|0| +37|2023-10-06T21:20:14.6540000-07:00|10FF000A|Dukaro Nezikaro|0001A1BB|82773|82773|10000|10000|15||97.81|98.87|0.00|-2.95|1E01|0|0|01|07000129|0|41E6603E|| +37|2023-10-06T21:20:14.6990000-07:00|40022472|Zeromus|0001A1C3|6696162||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:14.6990000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.97|100.83|0.00|2.89| +21|2023-10-06T21:20:14.6990000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6723216|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.97|100.83|0.00|2.89|0001A1C8|0|1| +261|2023-10-06T21:20:14.3040000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:20:14.7430000-07:00|40022472|Zeromus|0001A1C1|6692339||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:14.7430000-07:00|40022472|Zeromus|DoT|0|226F|6696162|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||100.00|101.68|0.00|-3.14| +21|2023-10-06T21:20:14.7430000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A750003|46BA0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|6696162|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4250|10000|||102.42|98.71|0.00|2.31|0001A1C9|0|1| +38|2023-10-06T21:20:14.7430000-07:00|40022472|Zeromus|005A5A00|6683524|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:20:14.7880000-07:00|10FF0003|Gegehi Gehi|0001A1BB|73814|73814|4250|10000|27||102.42|98.71|0.00|2.31|2302|0|0|01|05000129|0|41E54DCF|| +21|2023-10-06T21:20:14.7880000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|34D00000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6696162|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||106.80|95.17|0.00|2.43|0001A1CA|0|1| +38|2023-10-06T21:20:14.7880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|9||106.80|95.17|0.00|2.43|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:14.7880000-07:00|76E|Sword Oath|10.52|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:20:14.8330000-07:00|40022472|Zeromus|0001A1BC|6658878||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:14.8330000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6696162|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8450|10000|||97.00|101.50|0.00|-1.51|0001A1CB|0|1| +38|2023-10-06T21:20:14.8330000-07:00|40022D23|Automaton Queen|005A5A00|82193|85668|10000|10000|0||89.74|95.51|0.00|2.56|0|0|0||||||| +30|2023-10-06T21:20:14.8330000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022D23|Automaton Queen|01|85668|40478540| +04|2023-10-06T21:20:14.3040000-07:00|40022D20|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|0|77698|0|10000|||81.22|86.38|0.00|1.89| +261|2023-10-06T21:20:14.3040000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:20:14.3040000-07:00|Remove|40022D20| +261|2023-10-06T21:20:14.3940000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:20:14.8780000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7100|10000|||106.80|95.17|0.00|2.43| +39|2023-10-06T21:20:14.8780000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1900|10000|||105.95|101.37|0.00|1.33| +36|2023-10-06T21:20:14.8780000-07:00|60A4|3| +37|2023-10-06T21:20:14.9210000-07:00|10FF0008|Kokosaze Lulusaze|0001A1BB|90216|90216|10000|10000|13||100.06|103.35|0.00|-3.14|1F03|0|0|01|08000129|0|41E43B60|| +261|2023-10-06T21:20:14.4930000-07:00|Change|40022487||||||||||||||||||| +261|2023-10-06T21:20:14.4930000-07:00|Change|40022488||||||||||||||||| +261|2023-10-06T21:20:14.4930000-07:00|Change|40022486||||||||||||||||||| +261|2023-10-06T21:20:14.4930000-07:00|Change|40022484||||||||||||||||||| +37|2023-10-06T21:20:14.9660000-07:00|40022472|Zeromus|0001A1C4|6655818||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:14.9660000-07:00|40022484|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:20:14.9660000-07:00|40022485|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|88.00|0.00|0.00| +20|2023-10-06T21:20:14.9660000-07:00|40022486|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|100.00|0.00|3.14| +20|2023-10-06T21:20:14.9660000-07:00|40022487|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|83.50|83.50|0.00|0.00| +261|2023-10-06T21:20:14.4930000-07:00|Change|40022485||||||||||||||||||| +20|2023-10-06T21:20:14.9660000-07:00|40022488|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|100.00|0.00|-2.36| +39|2023-10-06T21:20:14.9660000-07:00|10FF0007|Kehabiqo Febiqo|115272|129844|10000|10000|||99.27|94.45|0.00|-3.12| +37|2023-10-06T21:20:15.0110000-07:00|40022472|Zeromus|0001A1C5|6653687||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:15.0110000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8650|10000|||94.57|101.52|0.00|-1.54| +37|2023-10-06T21:20:15.0550000-07:00|10FF0009|Zewo Negiwo|0001A1BB|81177|81177|5583|10000|15||102.58|100.63|0.00|-3.03|1804|0|0|01|07000129|0|41E328F1|| +20|2023-10-06T21:20:15.1000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|106.53|101.68|0.00|1.27| +261|2023-10-06T21:20:14.6990000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:20:14.6990000-07:00|Change|40022D2A||||||||| +37|2023-10-06T21:20:15.1440000-07:00|40022472|Zeromus|0001A1C6|6653687|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04A9|0|41200000|| +26|2023-10-06T21:20:15.1440000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40022472|Zeromus|00|40478540|129844| +37|2023-10-06T21:20:15.1890000-07:00|10FF0006|Wowobora Gogobora|0001A1BB|81809|81809|8650|10000|15||94.09|101.31|0.00|-1.65|1B05|0|0|01|04000129|0|41E2188E|| +21|2023-10-06T21:20:15.2330000-07:00|40022D2E|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|454003|79520000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|6653687|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.00|103.06|0.00|-3.13|0001A1CC|0|1| +261|2023-10-06T21:20:14.8110000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:20:15.2780000-07:00|40022D23|Automaton Queen|82193|85668|10000|10000|||89.74|95.51|0.00|2.56| +37|2023-10-06T21:20:15.3230000-07:00|10FF0001|Sesuga Sapisuga|0001A1BB|129071|129071|7100|10000|9||106.80|95.17|0.00|2.43|1306|0|0|01|03000129|0|41E1061F|| +37|2023-10-06T21:20:15.3670000-07:00|40022472|Zeromus|0001A1CB|6653528||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:15.3670000-07:00|40022472|Zeromus|0001A1C9|6635422||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:15.4560000-07:00|10FF0007|Kehabiqo Febiqo|0001A1BB|128295|129844|10000|10000|6||99.32|91.59|0.00|-3.12|1507|0|0|01|05000129|0|41DFF3B0|| +261|2023-10-06T21:20:14.9280000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:20:15.5000000-07:00|40022472|Zeromus|0001A1C8|6630083||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:15.5450000-07:00|40022D23|Automaton Queen|005A5A00|82193|85668|10000|10000|0||89.74|95.51|0.00|2.56|0|0|0|||||||||| +26|2023-10-06T21:20:15.5450000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022D23|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:20:15.0400000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:20:15.0400000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:20:15.5900000-07:00|40022D23|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|732003|AC550000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|6630083|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||89.74|95.51|0.00|2.56|0001A1CD|0|1| +38|2023-10-06T21:20:15.5900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128295|129844|10000|10000|6||99.32|90.92|-0.01|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:15.5900000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:20:15.6800000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|36710000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|6630083|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8650|10000|||91.36|100.91|0.00|-1.67|0001A1CE|0|1| +38|2023-10-06T21:20:15.6800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8350|10000|15||91.36|100.91|0.00|-1.67|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:15.6800000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +26|2023-10-06T21:20:15.7240000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:20:15.7240000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|211B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6630083|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.21|107.43|0.00|0.67|0001A1CF|0|1| +261|2023-10-06T21:20:15.2390000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:20:15.8130000-07:00|40022472|Zeromus|0001A1C7|6625813|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:20:15.8130000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +261|2023-10-06T21:20:15.3360000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:20:15.3360000-07:00|Change|40022481||||||||| +261|2023-10-06T21:20:15.3360000-07:00|Change|40022482||||||||| +261|2023-10-06T21:20:15.3360000-07:00|Change|40022483||||||||| +261|2023-10-06T21:20:15.3360000-07:00|Change|40022480||||||||| +20|2023-10-06T21:20:15.9920000-07:00|4002247F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.60|117.81|0.00|0.00| +20|2023-10-06T21:20:15.9920000-07:00|40022480|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.20|99.28|0.00|0.00| +20|2023-10-06T21:20:15.9920000-07:00|40022481|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.47|99.09|0.00|0.00| +20|2023-10-06T21:20:15.9920000-07:00|40022482|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.67|109.71|0.00|0.00| +20|2023-10-06T21:20:15.9920000-07:00|40022483|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.99|96.46|0.00|0.00| +39|2023-10-06T21:20:15.9920000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||92.91|96.42|0.00|-2.94| +261|2023-10-06T21:20:15.4350000-07:00|Change|4002247F||||||||||||||| +21|2023-10-06T21:20:16.0370000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|35020000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6625813|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1900|10000|||106.90|101.99|0.00|2.78|0001A1D0|0|1| +37|2023-10-06T21:20:16.0810000-07:00|40022472|Zeromus|0001A1CA|6612293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:16.0810000-07:00|10FF0001|Sesuga Sapisuga|0001A1CA|129071|129071|7500|10000|9||107.23|93.71|0.00|2.88|1300|0|0|0| +38|2023-10-06T21:20:16.0810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|9||107.23|93.71|0.00|2.88|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:16.0810000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:20:15.5290000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:20:16.1700000-07:00|40022D27|Liturgic Bell|77042|77042|10000|10000|||96.57|99.25|0.00|1.07| +21|2023-10-06T21:20:16.1700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6612293|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||107.23|93.71|0.00|2.88|0001A1D1|0|1| +31|2023-10-06T21:20:16.1700000-07:00|10FF0001||||| +24|2023-10-06T21:20:16.2150000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A97|90216|90216|10000|10000|||100.23|108.17|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||106.91|101.98|0.00|-2.84| +38|2023-10-06T21:20:16.2150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||100.23|108.17|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:16.2600000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A30|82773|82773|10000|10000|||92.91|96.42|0.00|-2.94|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||106.91|101.98|0.00|-2.84| +38|2023-10-06T21:20:16.2600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.91|96.42|0.00|-2.94|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:20:16.3040000-07:00|40022472|Zeromus|0001A1CE|6598356||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:16.3040000-07:00|10FF0006|Wowobora Gogobora|0001A1CE|81809|81809|8350|10000|15||89.35|100.83|0.00|-3.08|1B00|0|0|01|08000B25|0|0|| +24|2023-10-06T21:20:16.3040000-07:00|10FF0003|Gegehi Gehi|HoT|0|773|73814|73814|4250|10000|||110.87|96.94|0.00|2.02|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||107.40|102.03|0.00|3.12| +21|2023-10-06T21:20:16.3040000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|20B70000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|6612293|40478540|10000|10000|||100.00|80.10|0.00|0.00|128295|129844|10000|10000|||99.32|90.50|0.00|-3.13|0001A1D2|0|1| +38|2023-10-06T21:20:16.3040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8350|10000|15||89.35|100.83|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:20:16.3040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4250|10000|27||110.87|96.94|0.00|2.02|0|0|0||||||||||||||||||| +261|2023-10-06T21:20:15.7570000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:20:16.3490000-07:00|40022472|Zeromus|0001A1CF|6589881|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|05|3FC8D4D8|| +26|2023-10-06T21:20:16.3490000-07:00|35D|Wildfire|1.57|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|05|40478540|90216| +21|2023-10-06T21:20:16.3490000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|19030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6612293|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8350|10000|||89.35|100.83|0.00|-3.08|0001A1D3|0|1| +38|2023-10-06T21:20:16.3490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8350|10000|15||89.35|100.83|0.00|-3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:16.3490000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T21:20:16.3940000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D11|129071|129071|7500|10000|||107.23|93.71|0.00|2.88|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||108.11|102.11|0.00|2.65| +24|2023-10-06T21:20:16.3940000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D29|81541|81541|1500|10000|||108.11|102.11|0.00|2.65|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||108.11|102.11|0.00|2.65| +24|2023-10-06T21:20:16.3940000-07:00|10FF0009|Zewo Negiwo|HoT|798|D67|81177|81177|5583|10000|||108.79|100.64|0.00|1.53|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||108.11|102.11|0.00|2.65| +24|2023-10-06T21:20:16.3940000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|150C|128295|129844|10000|10000|||99.32|90.50|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||108.11|102.11|0.00|2.65| +24|2023-10-06T21:20:16.3940000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D5E|82773|82773|10000|10000|||92.91|96.42|0.00|-2.94|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||108.11|102.11|0.00|2.65| +24|2023-10-06T21:20:16.3940000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D81|90216|90216|10000|10000|||100.24|108.23|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||108.11|102.11|0.00|2.65| +24|2023-10-06T21:20:16.3940000-07:00|10FF0003|Gegehi Gehi|HoT|798|D55|73814|73814|4250|10000|||111.44|96.63|0.00|2.03|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||108.11|102.11|0.00|2.65| +24|2023-10-06T21:20:16.3940000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7F5|81541|81541|1500|10000|||108.11|102.11|0.00|2.65|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1500|10000|||108.11|102.11|0.00|2.65| +21|2023-10-06T21:20:16.3940000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|14930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6589881|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|108.23|0.00|-3.13|0001A1D4|0|1| +38|2023-10-06T21:20:16.3940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||99.32|90.50|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:16.3940000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:20:16.3940000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5583|10000|15||108.79|100.64|0.00|1.53|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:16.3940000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:20:16.3940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||100.24|108.23|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:16.3940000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:16.3940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|9||107.23|93.71|0.00|2.88|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:16.3940000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:20:16.3940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|15||108.11|102.11|0.00|2.65|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:16.3940000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:16.3940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4250|10000|27||111.44|96.63|0.00|2.03|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:16.3940000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:20:16.3940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.91|96.42|0.00|-2.94|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:16.3940000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +21|2023-10-06T21:20:16.4390000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1E490000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|6589881|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.91|96.42|0.00|-2.94|0001A1D5|0|1| +261|2023-10-06T21:20:15.9880000-07:00|Change|40022482||||||||||| +261|2023-10-06T21:20:15.9880000-07:00|Change|40022483||||||||||| +261|2023-10-06T21:20:15.9880000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:20:15.9880000-07:00|Change|40022481||||||||||| +24|2023-10-06T21:20:16.4830000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|747|128295|129844|10000|10000|||99.32|90.50|0.00|3.08|10FF0009|Zewo Negiwo|0|81177|81177|5583|10000|||108.79|100.64|0.00|1.53| +24|2023-10-06T21:20:16.4830000-07:00|10FF0006|Wowobora Gogobora|HoT|0|AE3|81809|81809|8350|10000|||88.60|100.67|0.00|2.56|10FF0006|Wowobora Gogobora|0|81809|81809|8350|10000|||88.60|100.67|0.00|2.56| +38|2023-10-06T21:20:16.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||99.32|90.50|0.00|3.08|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:20:16.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8350|10000|15||88.60|100.67|0.00|2.56|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:20:16.5280000-07:00|10FF0009|Zewo Negiwo|HoT|0|AFE|81177|81177|5583|10000|||108.99|100.68|0.00|1.49|40022D20||0||||||||||| +38|2023-10-06T21:20:16.5280000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|6133|10000|15||108.99|100.68|0.00|1.49|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:16.5720000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7DF|129071|129071|7500|10000|||107.23|93.71|0.00|2.88|10FF0006|Wowobora Gogobora|0|81809|81809|8350|10000|||87.78|100.51|-0.02|2.56| +38|2023-10-06T21:20:16.5720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|9||107.23|93.71|0.00|2.88|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:16.1010000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:20:16.6620000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|94B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6589881|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|108.23|0.00|-3.13|0001A1D6|0|1| +21|2023-10-06T21:20:16.6620000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8BD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6589881|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.91|96.42|0.00|2.73|0001A1D7|0|1| +37|2023-10-06T21:20:16.7060000-07:00|40022472|Zeromus|0001A1D1|6587633||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:16.2910000-07:00|Remove|40022D2A| +04|2023-10-06T21:20:16.2910000-07:00|40022D2A|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.08|98.53|0.00|0.59| +37|2023-10-06T21:20:16.8400000-07:00|40022472|Zeromus|0001A1D0|6574063||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:16.8400000-07:00|40022472|Zeromus|0001A1D5|6566310||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:16.3820000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:20:16.8840000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|15BF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.32|90.48|0.00|3.09|6587633|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A1D8|0|1| +261|2023-10-06T21:20:16.3820000-07:00|Change|4002247E||||||||| +261|2023-10-06T21:20:16.3820000-07:00|Change|4002247D||||||||| +261|2023-10-06T21:20:16.3820000-07:00|Change|4002247C||||||||| +00|2023-10-06T21:20:16.0000000-07:00|0044|Zeromus|Return to me, my beloved star!| +261|2023-10-06T21:20:16.3820000-07:00|Change|4002247B||||||||| +261|2023-10-06T21:20:16.3820000-07:00|Change|4002247A||||||||| +37|2023-10-06T21:20:16.9290000-07:00|40022472|Zeromus|0001A1D2|6557935||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:16.9290000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|109.42|100.76|0.00|1.41| +21|2023-10-06T21:20:16.9290000-07:00|4002248D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.70|86.65|0.00|0.00|0001A1D9|0|0| +21|2023-10-06T21:20:16.9290000-07:00|4002248E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||87.20|113.65|0.00|0.00|0001A1DA|0|0| +21|2023-10-06T21:20:16.9290000-07:00|4002248F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.70|95.65|0.00|0.00|0001A1DB|0|0| +21|2023-10-06T21:20:16.9290000-07:00|40022490|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.71|101.42|0.00|0.00|0001A1DC|0|0| +21|2023-10-06T21:20:16.9290000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022472|Zeromus|150003|5B270000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|6566310|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4250|10000|||114.51|95.04|-0.02|2.04|0001A1DD|0|1| +38|2023-10-06T21:20:16.9290000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3850|10000|27||114.51|95.04|-0.02|2.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:16.9290000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:20:16.4780000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:20:16.4780000-07:00|Change|40022472||||||||||| +261|2023-10-06T21:20:16.4780000-07:00|Change|4002248E||||||||||| +20|2023-10-06T21:20:16.9730000-07:00|40022472|Zeromus|8B6B|Nostalgia|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:16.4780000-07:00|Change|4002248F||||||||||| +20|2023-10-06T21:20:16.9730000-07:00|4002247A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.16|87.74|0.00|0.00| +20|2023-10-06T21:20:16.9730000-07:00|4002247B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|80.45|117.71|0.00|0.00| +20|2023-10-06T21:20:16.9730000-07:00|4002247D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|110.20|98.69|0.00|0.00| +261|2023-10-06T21:20:16.4780000-07:00|Change|40022490||||||||||| +20|2023-10-06T21:20:16.9730000-07:00|4002247E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|113.41|96.40|0.00|0.00| +20|2023-10-06T21:20:16.9730000-07:00|4002247C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.94|100.40|0.00|0.00| +261|2023-10-06T21:20:16.4780000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:20:17.0180000-07:00|40022472|Zeromus|0001A1D4|6552668||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:17.0180000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|15||111.49|103.13|-0.02|1.32|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:17.0180000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:20:17.1070000-07:00|40022472|Zeromus|0001A1D3|6546265||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:16.5880000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:20:16.5880000-07:00|Change|10FF0009||||||||||||||||||||| +38|2023-10-06T21:20:17.1510000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|6133|10000|15||109.42|100.76|0.00|2.27|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:17.1510000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:20:17.1970000-07:00|40022472|Zeromus|0001A1CC|6515207||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:17.1970000-07:00|40022472|Zeromus|0001A1D7|6512970||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:17.1970000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6546265|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3850|10000|||115.61|94.29|0.00|-2.28|0001A1DE|0|1| +261|2023-10-06T21:20:16.7040000-07:00|Remove|40022D25| +21|2023-10-06T21:20:17.2410000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6512970|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.21|108.75|0.00|0.65|0001A1DF|0|1| +38|2023-10-06T21:20:17.2410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||100.21|108.75|0.00|0.65|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:17.2410000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:20:17.2860000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|436A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6512970|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||107.23|93.71|0.00|-2.65|0001A1E0|0|1| +38|2023-10-06T21:20:17.2860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8350|10000|15||83.82|102.92|0.00|-1.28|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:17.2860000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:20:17.2860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|9||107.23|93.71|0.00|-2.65|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:17.2860000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:20:16.9320000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:20:17.4180000-07:00|40022472|Zeromus|0001A1D6|6510591||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:17.4180000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|15||112.54|103.32|0.00|1.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:17.4180000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +261|2023-10-06T21:20:16.9320000-07:00|Change|4002247B||||||||||| +261|2023-10-06T21:20:16.9320000-07:00|Change|4002247D||||||||||| +261|2023-10-06T21:20:16.9320000-07:00|Change|4002247C||||||||||| +261|2023-10-06T21:20:16.9320000-07:00|Change|4002247A||||||||||| +261|2023-10-06T21:20:16.9320000-07:00|Change|4002247E||||||||||| +261|2023-10-06T21:20:17.0470000-07:00|Change|10FF0008||||||||| +20|2023-10-06T21:20:17.5080000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|112.65|103.34|0.00|1.06| +37|2023-10-06T21:20:17.5530000-07:00|40022472|Zeromus|0001A1CD|6466474||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:17.5530000-07:00|10FF0003|Gegehi Gehi|73814|73814|4050|10000|||116.71|92.82|0.00|2.90| +38|2023-10-06T21:20:17.5530000-07:00|40022D23|Automaton Queen|005A5A00|82193|85668|10000|10000|0||89.74|95.51|0.00|2.56|0|0|0||||||| +30|2023-10-06T21:20:17.5530000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022D23|Automaton Queen|01|85668|40478540| +38|2023-10-06T21:20:17.5530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.27|93.68|0.00|-2.89|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:17.5530000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +39|2023-10-06T21:20:17.5980000-07:00|10FF0009|Zewo Negiwo|81177|81177|6354|10000|||109.42|100.76|0.00|-2.71| +37|2023-10-06T21:20:17.6860000-07:00|10FF0007|Kehabiqo Febiqo|0001A1D8|124277|129844|10000|10000|0||99.29|90.32|0.00|-3.13|1500|0|0|01|05000000|0|0|| +38|2023-10-06T21:20:17.6860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124277|129844|10000|10000|0||99.29|90.32|0.00|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:17.6860000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:20:17.6860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|27||116.71|92.82|0.00|2.90|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:17.6860000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:20:17.7310000-07:00|40022472|Zeromus|0001A1DE|6466436||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:17.7310000-07:00|10FF0003|Gegehi Gehi|0001A1DE|73814|73814|4050|10000|27||116.89|92.54|0.00|2.63|2300|0|0|01|060004D2|0|C1F00000|| +39|2023-10-06T21:20:17.7310000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.09|110.57|0.00|-3.14| +24|2023-10-06T21:20:17.7750000-07:00|40022472|Zeromus|DoT|0|28D2|6466474|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||100.09|110.57|0.00|-3.14| +38|2023-10-06T21:20:17.7750000-07:00|40022472|Zeromus|005A5A00|6455986|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +21|2023-10-06T21:20:17.8200000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6455986|40478540|10000|10000|||100.00|80.10|0.00|0.00|124277|129844|10000|10000|||99.29|90.32|0.00|-3.13|0001A1E1|0|1| +38|2023-10-06T21:20:17.8200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124277|129844|10000|10000|0||99.29|90.32|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:17.8200000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +261|2023-10-06T21:20:17.3310000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:20:17.8650000-07:00|40022472|Zeromus|0001A1DF|6447198|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|06|3D5911E0|| +26|2023-10-06T21:20:17.8650000-07:00|35D|Wildfire|0.05|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|90216| +39|2023-10-06T21:20:17.8650000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7700|10000|||107.23|93.71|0.00|-2.65| +21|2023-10-06T21:20:17.8650000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|330B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|6455986|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|6354|10000|||109.42|100.76|0.00|-2.71|0001A1E2|0|1| +36|2023-10-06T21:20:17.8650000-07:00|6180|3| +261|2023-10-06T21:20:17.4210000-07:00|Change|10FF0001||||| +39|2023-10-06T21:20:17.9090000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1700|10000|||112.80|103.38|0.00|-2.91| +24|2023-10-06T21:20:17.9090000-07:00|40022472|Zeromus|DoT|35D|D963|6447198|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||99.74|110.78|0.00|-2.68| +21|2023-10-06T21:20:17.9090000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6447198|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.74|110.78|0.00|-2.68|0001A1E3|0|1| +38|2023-10-06T21:20:17.9090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||99.74|110.78|0.00|-2.68|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:17.9090000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:20:17.9090000-07:00|40022472|Zeromus|005A5A00|6391547|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:20:17.9090000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|06|40478540|90216| +21|2023-10-06T21:20:17.9540000-07:00|40022489|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.73|87.29|0.00|0.00|0001A1E4|0|0| +21|2023-10-06T21:20:17.9540000-07:00|4002248A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.93|102.86|0.00|0.00|0001A1E5|0|0| +21|2023-10-06T21:20:17.9540000-07:00|4002248B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.11|100.24|0.00|0.00|0001A1E6|0|0| +21|2023-10-06T21:20:17.9540000-07:00|4002248C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.09|95.71|0.00|0.00|0001A1E7|0|0| +38|2023-10-06T21:20:17.9540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||99.74|110.78|0.00|-2.68|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:17.9540000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +261|2023-10-06T21:20:17.4210000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:20:17.4210000-07:00|Change|4002248A||||||||||| +261|2023-10-06T21:20:17.4210000-07:00|Change|4002248C||||||||||| +261|2023-10-06T21:20:17.4210000-07:00|Change|4002248B||||||||||| +261|2023-10-06T21:20:17.6200000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:20:17.9980000-07:00|10FF0007|Kehabiqo Febiqo|125575|129844|10000|10000|||99.29|90.32|0.00|-3.13| +39|2023-10-06T21:20:17.9980000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8550|10000|||81.83|105.08|0.00|0.19| +38|2023-10-06T21:20:18.0870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|9||107.23|93.71|0.00|-2.65|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:18.0870000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:20:18.1320000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|452003|56270000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|6391547|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8350|10000|||81.83|105.08|0.00|0.19|0001A1E8|0|1| +38|2023-10-06T21:20:18.1320000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8250|10000|15||81.83|105.08|0.00|0.19|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:18.1320000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:20:18.1760000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5954|10000|15||109.42|100.76|0.00|-2.71|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:18.1760000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:20:17.7310000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:20:18.2660000-07:00|40022D23|Automaton Queen|82193|85668|10000|10000|||89.74|95.51|0.00|2.56| +37|2023-10-06T21:20:18.3550000-07:00|40022472|Zeromus|0001A1E1|6388692||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:18.3550000-07:00|40022472|Zeromus|0001A1DD|6365357||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:18.3550000-07:00|10FF0003|Gegehi Gehi|0001A1DD|73814|73814|4050|10000|27||117.40|91.94|0.00|-2.85|2300|0|0|01|060004D2|0|41F00000|| +38|2023-10-06T21:20:18.3550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|27||117.40|91.94|0.00|-2.85|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:17.9720000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:20:18.4450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|BDE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6365357|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||107.23|93.71|0.00|-2.65|0001A1E9|0|1| +21|2023-10-06T21:20:18.4450000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|50B30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6365357|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1700|10000|||112.81|103.38|0.00|-2.64|0001A1EA|0|1| +38|2023-10-06T21:20:18.4450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8250|10000|15||82.84|105.29|0.00|1.89|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:18.4450000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +31|2023-10-06T21:20:18.4450000-07:00|10FF0001||||| +37|2023-10-06T21:20:18.5790000-07:00|40022472|Zeromus|0001A1E0|6348099||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:18.5790000-07:00|10FF0001|Sesuga Sapisuga|0001A1E0|129071|129071|8100|10000|9||107.23|93.71|0.00|-2.65|1300|0|0|0| +21|2023-10-06T21:20:18.6690000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2EF30000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|6365357|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.21|93.46|0.00|-2.83|0001A1EB|0|1| +38|2023-10-06T21:20:18.6690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||97.26|112.94|0.00|-2.84|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:18.6690000-07:00|74C|Everlasting Flight|0.00|40022D20|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|| +37|2023-10-06T21:20:18.7140000-07:00|40022472|Zeromus|0001A1E3|6342927||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:18.7140000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|3C090000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|6348099|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.32|112.96|0.00|-2.46|0001A1EC|0|1| +37|2023-10-06T21:20:18.7590000-07:00|40022472|Zeromus|0001A1E8|6320872||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:18.7590000-07:00|10FF0006|Wowobora Gogobora|0001A1E8|81809|81809|8250|10000|15||83.20|105.37|0.00|1.65|1B00|0|0|01|06000B25|0|0|| +21|2023-10-06T21:20:18.7600000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|304A0000|143E|340000|4|17B88000|11B|2A8000|0|0|0|0|0|0|0|0|6348099|40478540|10000|10000|||100.00|80.10|0.00|0.00|125575|129844|10000|10000|||99.29|90.32|0.00|-3.13|0001A1ED|0|1| +21|2023-10-06T21:20:18.7600000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|1F580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6348099|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8250|10000|||83.20|105.37|0.00|1.65|0001A1EE|0|1| +38|2023-10-06T21:20:18.7600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8250|10000|15||83.20|105.37|0.00|1.65|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:18.7600000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:20:18.8040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125575|129844|10000|10000|0||99.29|90.32|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:18.8040000-07:00|74C|Everlasting Flight|0.00|40022D20|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|| +21|2023-10-06T21:20:18.8480000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6348099|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|0001A1EF|0|1| +261|2023-10-06T21:20:18.3720000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:20:18.3720000-07:00|Change|10FF0001||| +21|2023-10-06T21:20:18.9370000-07:00|40022484|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||89.71|104.62|0.00|0.00|0001A1F0|0|0| +21|2023-10-06T21:20:18.9370000-07:00|40022485|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.60|82.66|0.00|0.00|0001A1F1|0|0| +21|2023-10-06T21:20:18.9370000-07:00|40022486|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.11|104.54|0.00|0.00|0001A1F2|0|0| +21|2023-10-06T21:20:18.9370000-07:00|40022487|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||103.77|98.67|0.00|0.00|0001A1F3|0|0| +21|2023-10-06T21:20:18.9370000-07:00|40022488|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.86|95.91|0.00|0.00|0001A1F4|0|0| +38|2023-10-06T21:20:18.9370000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5954|10000|15||110.42|103.41|0.00|0.64|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:18.9370000-07:00|74C|Everlasting Flight|0.00|40022D20|Demi-Phoenix|10FF0009|Zewo Negiwo|00|81177|| +37|2023-10-06T21:20:18.9810000-07:00|40022472|Zeromus|0001A1E9|6317834||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:18.9810000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||92.21|93.46|0.00|2.61| +261|2023-10-06T21:20:18.4710000-07:00|Change|40022485||||||||||| +261|2023-10-06T21:20:18.4710000-07:00|Change|40022486||||||||||| +261|2023-10-06T21:20:18.4710000-07:00|Change|40022484||||||||||| +261|2023-10-06T21:20:18.4710000-07:00|Change|40022487||||||||||| +261|2023-10-06T21:20:18.4710000-07:00|Change|40022488||||||||||| +261|2023-10-06T21:20:18.4710000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:20:19.0710000-07:00|40022472|Zeromus|0001A1EB|6305815||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:19.0710000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40022472|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6317834|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||112.67|103.76|0.00|-0.76|0001A1F5|0|1| +38|2023-10-06T21:20:19.0710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8250|10000|15||83.32|105.39|0.00|2.56|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:19.0710000-07:00|74C|Everlasting Flight|0.00|40022D20|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|| +37|2023-10-06T21:20:19.1600000-07:00|40022472|Zeromus|0001A1E2|6292748||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:19.1600000-07:00|40022D27|Liturgic Bell|77042|77042|10000|10000|||96.57|99.25|0.00|1.07| +38|2023-10-06T21:20:19.2050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|9||107.23|93.71|0.00|-2.65|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:19.2050000-07:00|74C|Everlasting Flight|0.00|40022D20|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|| +37|2023-10-06T21:20:19.2490000-07:00|40022472|Zeromus|0001A1EA|6272089||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:19.2490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|78B|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1300|10000|||112.56|104.07|0.00|-2.67| +38|2023-10-06T21:20:19.2490000-07:00|40022D2E|Topaz Titan|005A5A00|0|77698|0|10000|0||102.00|103.06|0.00|-3.13|0|0|0||||||| +26|2023-10-06T21:20:19.2490000-07:00|30|Well Fed|1254.03|10FF0006|Wowobora Gogobora|40022D2E|Topaz Titan|2964|77698|81809| +38|2023-10-06T21:20:19.2490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.21|93.46|0.00|2.61|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:18.6890000-07:00|Change|40022D2E||||| +38|2023-10-06T21:20:19.2930000-07:00|40022D35||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +24|2023-10-06T21:20:19.2940000-07:00|10FF0003|Gegehi Gehi|HoT|0|785|73814|73814|4050|10000|||117.97|91.05|0.00|-2.67|10FF0003|Gegehi Gehi|0|73814|73814|4050|10000|||117.97|91.05|0.00|-2.67| +38|2023-10-06T21:20:19.2940000-07:00|40022D35||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:20:19.2940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|27||117.97|91.05|0.00|-2.67|0|0|0|||||||||||||||||||||| +22|2023-10-06T21:20:19.3380000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|31210000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|81177|81177|5954|10000|||110.78|104.87|0.00|0.31|81177|81177|5954|10000|||110.78|104.87|0.00|0.31|0001A1F6|0|6| +22|2023-10-06T21:20:19.3380000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|32C30000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1300|10000|||112.50|104.22|0.00|-2.67|81177|81177|5954|10000|||110.78|104.87|0.00|0.31|0001A1F6|1|6| +22|2023-10-06T21:20:19.3380000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|31690000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8100|10000|||107.23|93.71|0.00|-2.65|81177|81177|5954|10000|||110.78|104.87|0.00|0.31|0001A1F6|2|6| +22|2023-10-06T21:20:19.3380000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|52040000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4050|10000|||117.97|91.05|0.00|-2.67|81177|81177|5954|10000|||110.78|104.87|0.00|0.31|0001A1F6|3|6| +22|2023-10-06T21:20:19.3380000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|32760000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||94.85|111.23|-0.01|2.98|81177|81177|5954|10000|||110.78|104.87|0.00|0.31|0001A1F6|4|6| +22|2023-10-06T21:20:19.3380000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|32650000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|125575|129844|10000|10000|||99.29|90.32|0.00|3.08|81177|81177|5954|10000|||110.78|104.87|0.00|0.31|0001A1F6|5|6| +21|2023-10-06T21:20:19.3380000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6272089|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.85|111.23|-0.01|2.98|0001A1F7|0|1| +21|2023-10-06T21:20:19.3380000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|750003|5F390000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|6272089|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4050|10000|||117.97|91.05|0.00|-2.67|0001A1F8|0|1| +38|2023-10-06T21:20:19.3380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|15||112.50|104.22|0.00|-2.67|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:19.3380000-07:00|74C|Everlasting Flight|0.00|40022D20|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|| +261|2023-10-06T21:20:18.8010000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:20:19.3820000-07:00|40022472|Zeromus|0001A1EF|6269378||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:19.3820000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|15860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6272089|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.85|111.23|-0.01|2.98|0001A1F9|0|1| +37|2023-10-06T21:20:19.5160000-07:00|40022472|Zeromus|0001A1EC|6254009||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:19.5160000-07:00|40022472|Zeromus|0001A1EE|6245985||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:19.5160000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3650|10000|27||117.97|91.05|0.00|-2.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:19.5160000-07:00|74C|Everlasting Flight|0.00|40022D20|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T21:20:19.6060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.21|93.46|0.00|2.61|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:19.6060000-07:00|74C|Everlasting Flight|0.00|40022D20|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|82773|| +03|2023-10-06T21:20:19.1420000-07:00|40022D35|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||84.30|103.94|0.00|-0.58| +261|2023-10-06T21:20:19.1420000-07:00|Add|40022D35||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:20:19.1420000-07:00|Change|40022D35||| +21|2023-10-06T21:20:19.7840000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|712003|21770000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|6245985|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||107.23|93.71|0.00|-2.65|0001A1FA|0|1| +37|2023-10-06T21:20:19.8730000-07:00|40022472|Zeromus|0001A1F5|6245985|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004C5|0|41700000|| +26|2023-10-06T21:20:19.8730000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +20|2023-10-06T21:20:19.9180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|111.58|105.77|0.00|-0.81| +21|2023-10-06T21:20:19.9630000-07:00|4002247F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.60|117.81|0.00|0.00|0001A1FB|0|0| +21|2023-10-06T21:20:19.9630000-07:00|40022480|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.20|99.28|0.00|0.00|0001A1FC|0|0| +21|2023-10-06T21:20:19.9630000-07:00|40022481|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.47|99.09|0.00|0.00|0001A1FD|0|0| +21|2023-10-06T21:20:19.9630000-07:00|40022482|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.67|109.71|0.00|0.00|0001A1FE|0|0| +21|2023-10-06T21:20:19.9630000-07:00|40022483|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.99|96.46|0.00|0.00|0001A1FF|0|0| +261|2023-10-06T21:20:19.4200000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:20:19.4200000-07:00|Change|40022482||||||||||| +261|2023-10-06T21:20:19.4200000-07:00|Change|40022481||||||||||| +261|2023-10-06T21:20:19.4200000-07:00|Change|40022483||||||||||| +261|2023-10-06T21:20:19.4200000-07:00|Change|4002247F||||||||||| +261|2023-10-06T21:20:19.4200000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:20:20.0080000-07:00|40022472|Zeromus|0001A1F9|6240475||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:20.0970000-07:00|40022472|Zeromus|0001A1F7|6238221||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:20.2740000-07:00|40022472|Zeromus|0001A1ED|6225859||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:20.2740000-07:00|10FF0007|Kehabiqo Febiqo|0001A1ED|129844||||||99.29|90.32|0.00|3.08| +34|2023-10-06T21:20:20.3170000-07:00|40022D35|Carbuncle|40022D35|Carbuncle|01| +261|2023-10-06T21:20:19.8390000-07:00|Change|40022D35||| +22|2023-10-06T21:20:20.3630000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0008|Kokosaze Lulusaze|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|0001A200|0|8| +22|2023-10-06T21:20:20.3630000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0006|Wowobora Gogobora|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8250|10000|||83.33|105.39|0.00|2.56|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|0001A200|1|8| +22|2023-10-06T21:20:20.3630000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000A|Dukaro Nezikaro|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|0001A200|2|8| +22|2023-10-06T21:20:20.3630000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0009|Zewo Negiwo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5954|10000|||110.92|105.42|0.00|0.18|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|0001A200|3|8| +22|2023-10-06T21:20:20.3630000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0004|Buhojaqe Zijaqe|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1300|10000|||111.36|106.08|0.00|-2.22|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|0001A200|4|8| +22|2023-10-06T21:20:20.3630000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0007|Kehabiqo Febiqo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.29|90.32|0.00|3.08|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|0001A200|5|8| +22|2023-10-06T21:20:20.3630000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0001|Sesuga Sapisuga|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8100|10000|||107.23|93.71|0.00|-2.65|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|0001A200|6|8| +22|2023-10-06T21:20:20.3630000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0003|Gegehi Gehi|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3650|10000|||117.97|91.05|0.00|-2.12|90216|90216|10000|10000|||94.74|108.51|0.00|-3.13|0001A200|7|8| +37|2023-10-06T21:20:20.4070000-07:00|40022472|Zeromus|0001A1FA|6217292||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:20.5410000-07:00|10FF0003|Gegehi Gehi|73814|73814|3850|10000|||117.97|91.05|0.00|-2.12| +261|2023-10-06T21:20:20.0760000-07:00|Change|10FF0003||| +21|2023-10-06T21:20:20.5860000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|454003|44B30000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|6217292|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8250|10000|||83.33|105.39|0.00|2.56|0001A201|0|1| +38|2023-10-06T21:20:20.5860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7950|10000|15||83.33|105.39|0.00|2.56|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:20.5860000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:20:20.0760000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:20:20.6310000-07:00|10FF0009|Zewo Negiwo|81177|81177|6175|10000|||110.92|105.42|0.00|0.18| +38|2023-10-06T21:20:20.6310000-07:00|40022D23|Automaton Queen|005A5A00|0|85668|0|10000|0||89.74|95.51|0.00|2.56|0|0|0|||| +30|2023-10-06T21:20:20.6310000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022D23|Automaton Queen|00|85668|81809| +261|2023-10-06T21:20:20.1660000-07:00|Change|40022D23||||||||| +261|2023-10-06T21:20:20.1660000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:20:20.6750000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6217292|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3850|10000|||117.97|91.05|0.00|-2.12|0001A202|0|1| +39|2023-10-06T21:20:20.7210000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||94.74|108.32|0.00|-3.11| +21|2023-10-06T21:20:20.7210000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|EA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6217292|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||107.23|93.71|0.00|-2.65|0001A203|0|1| +31|2023-10-06T21:20:20.7210000-07:00|10FF0001||||| +24|2023-10-06T21:20:20.7650000-07:00|40022472|Zeromus|DoT|0|254F|6217292|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1300|10000|||111.28|106.19|0.00|-2.73| +38|2023-10-06T21:20:20.7650000-07:00|40022472|Zeromus|005A5A00|6207741|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +21|2023-10-06T21:20:20.8100000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|0001A204|0|1| +38|2023-10-06T21:20:20.8100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.21|93.46|0.00|2.61|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:20.8100000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:20:20.8540000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33440000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6207741|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||111.28|106.19|0.00|-2.73|0001A205|0|1| +36|2023-10-06T21:20:20.8540000-07:00|625C|3| +39|2023-10-06T21:20:20.8990000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8300|10000|||107.23|93.71|0.00|-2.65| +39|2023-10-06T21:20:20.8990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1100|10000|||111.28|106.19|0.00|-2.73| +261|2023-10-06T21:20:20.3550000-07:00|Change|10FF0001||| +21|2023-10-06T21:20:20.9440000-07:00|4002247A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.16|87.74|0.00|0.00|0001A206|0|0| +21|2023-10-06T21:20:20.9440000-07:00|4002247B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.45|117.71|0.00|0.00|0001A207|0|0| +21|2023-10-06T21:20:20.9440000-07:00|4002247D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.20|98.69|0.00|0.00|0001A208|0|0| +21|2023-10-06T21:20:20.9440000-07:00|4002247E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.41|96.40|0.00|0.00|0001A209|0|0| +21|2023-10-06T21:20:20.9440000-07:00|4002247C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.94|100.40|0.00|0.00|0001A20A|0|0| +37|2023-10-06T21:20:20.9880000-07:00|10FF0008|Kokosaze Lulusaze|0001A200|90216|90216|10000|10000|13||94.74|108.32|0.00|-3.11|1F00|0|0|01|0400079F|0|41700000|| +26|2023-10-06T21:20:20.9880000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T21:20:20.9880000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.29|90.32|0.00|3.08| +39|2023-10-06T21:20:20.9880000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8150|10000|||83.33|105.39|0.00|2.56| +261|2023-10-06T21:20:20.4480000-07:00|Change|4002247A||||||||||| +261|2023-10-06T21:20:20.4480000-07:00|Change|4002247D||||||||||| +261|2023-10-06T21:20:20.4480000-07:00|Change|4002247E||||||||||| +261|2023-10-06T21:20:20.4480000-07:00|Change|4002247B||||||||||| +261|2023-10-06T21:20:20.4480000-07:00|Change|4002247C||||||||||| +261|2023-10-06T21:20:20.4480000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:20:21.0330000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B0E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6207741|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|0001A20B|0|1| +37|2023-10-06T21:20:21.1220000-07:00|10FF0006|Wowobora Gogobora|0001A200|81809|81809|8150|10000|15||83.33|105.39|0.00|2.56|1B01|0|0|01|0300079F|0|41700000|| +26|2023-10-06T21:20:21.1220000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +261|2023-10-06T21:20:20.5470000-07:00|Change|10FF0006||| +37|2023-10-06T21:20:21.1660000-07:00|40022472|Zeromus|0001A1F8|6183364||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:21.2120000-07:00|40022472|Zeromus|0001A201|6165777||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:21.2120000-07:00|10FF0006|Wowobora Gogobora|0001A201|81809|81809|8150|10000|15||83.33|105.39|0.00|2.56|1B00|0|0|01|01000B25|0|0|| +37|2023-10-06T21:20:21.2120000-07:00|40022472|Zeromus|0001A202|6165728||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:21.2120000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3D720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6207741|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.29|90.32|0.00|3.08|0001A20C|0|1| +21|2023-10-06T21:20:21.2120000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6207741|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.29|90.32|0.00|3.08|0001A20D|0|1| +21|2023-10-06T21:20:21.2120000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44724003|4CD90000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|6207741|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.74|108.32|0.00|-3.11|0001A20E|0|1| +21|2023-10-06T21:20:21.2120000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|19480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6207741|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8150|10000|||83.33|105.39|0.00|2.56|0001A20F|0|1| +38|2023-10-06T21:20:21.2120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8150|10000|15||83.33|105.39|0.00|2.56|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:21.2120000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:20:21.2560000-07:00|10FF000A|Dukaro Nezikaro|0001A200|82773|82773|10000|10000|15||92.21|93.46|0.00|2.61|1E02|0|0|01|0600079F|0|41700000|| +26|2023-10-06T21:20:21.2560000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|82773|90216| +37|2023-10-06T21:20:21.2560000-07:00|40022472|Zeromus|0001A203|6161977||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:21.3000000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|0001A210|0|1| +38|2023-10-06T21:20:21.3000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.21|93.46|0.00|2.61|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:21.3000000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:20:21.3890000-07:00|10FF0009|Zewo Negiwo|0001A200|81177|81177|6175|10000|15||110.92|105.42|0.00|0.18|1803|0|0|01|0300079F|0|41700000|| +26|2023-10-06T21:20:21.3890000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0009|Zewo Negiwo|00|81177|90216| +38|2023-10-06T21:20:21.3890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1100|10000|15||111.25|106.19|-0.02|-2.69|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:21.3890000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:21.3890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3850|10000|27||117.78|91.12|0.00|-1.85|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:21.3890000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:20:21.3890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.21|93.46|0.00|2.61|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:21.3890000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +38|2023-10-06T21:20:21.4330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.29|90.32|0.00|3.07|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:21.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:20:21.4330000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|6175|10000|15||110.92|105.42|0.00|0.18|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:21.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:20:21.4330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|13||94.74|108.32|0.00|2.96|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:21.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:21.4330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|9||107.23|93.71|0.00|-2.65|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:21.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:20:21.4770000-07:00|40022472|Zeromus|005A5A00|6161977|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:21.4770000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:20:21.5220000-07:00|10FF0004|Buhojaqe Zijaqe|0001A200|81541|81541|1100|10000|15||111.25|106.20|0.00|-2.18|1C04|0|0|01|0500079F|0|41700000|| +26|2023-10-06T21:20:21.5220000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +37|2023-10-06T21:20:21.5670000-07:00|40022472|Zeromus|0001A20B|6159147||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:21.6570000-07:00|10FF0007|Kehabiqo Febiqo|0001A200|129844|129844|10000|10000|0||99.29|90.32|0.00|3.07|1505|0|0|01|0100079F|0|41700000|| +26|2023-10-06T21:20:21.6570000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +37|2023-10-06T21:20:21.6570000-07:00|40022472|Zeromus|0001A205|6146023||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:21.7450000-07:00|40022472|Zeromus|0001A20D|6143033||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:21.7450000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|110.92|105.42|0.00|0.18| +261|2023-10-06T21:20:21.2100000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:20:21.7900000-07:00|10FF0001|Sesuga Sapisuga|0001A200|129071|129071|8300|10000|9||107.23|93.71|0.00|-2.65|1306|0|0|01|0200079F|0|41700000|| +26|2023-10-06T21:20:21.7900000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +37|2023-10-06T21:20:21.8350000-07:00|40022472|Zeromus|0001A20C|6127303||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:21.8350000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|82773|82773|10000|10000|||92.21|93.46|0.00|2.61|0001A211|0|1| +38|2023-10-06T21:20:21.8350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.21|93.46|0.00|2.61|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:21.8350000-07:00|1F0|Mudra|4.97|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +38|2023-10-06T21:20:21.8800000-07:00|40022D35|Carbuncle|005A5A00|74223|77698|10000|10000|0||84.30|103.94|0.00|-0.58|0|0|0|||||||||| +26|2023-10-06T21:20:21.8800000-07:00|A8F|Searing Light|4.50|10FF0006|Wowobora Gogobora|40022D35|Carbuncle|00|77698|81809| +26|2023-10-06T21:20:21.8800000-07:00|30|Well Fed|1251.40|10FF0006|Wowobora Gogobora|40022D35|Carbuncle|2964|77698|81809| +26|2023-10-06T21:20:21.8800000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022D35|Carbuncle|01|77698|81809| +21|2023-10-06T21:20:21.8800000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8150|10000|||83.33|105.39|0.00|2.56|81809|81809|8150|10000|||83.33|105.39|0.00|2.56|0001A212|0|1| +37|2023-10-06T21:20:21.9250000-07:00|10FF0003|Gegehi Gehi|0001A200|73814|73814|3850|10000|27||116.78|93.59|0.00|-1.10|2307|0|0|01|0100079F|0|41700000|| +26|2023-10-06T21:20:21.9250000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +37|2023-10-06T21:20:21.9700000-07:00|40022472|Zeromus|0001A20F|6120831||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:21.9700000-07:00|40022D35|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8150|10000|||83.33|105.39|0.00|2.56|74223|77698|10000|10000|||84.30|103.94|0.00|-0.58|0001A213|0|1| +21|2023-10-06T21:20:21.9700000-07:00|40022472|Zeromus|8B6B|Nostalgia|40022472|Zeromus|1B|8B6B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6127303|40478540|10000|10000|||100.00|80.10|0.00|0.00|6127303|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A214|0|1| +38|2023-10-06T21:20:21.9700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8150|10000|35||83.33|105.39|0.00|2.56|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:21.3990000-07:00|Change|40022472||||||||||| +26|2023-10-06T21:20:21.9700000-07:00|A8E|Radiant Aegis|29.96|40022D35|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +261|2023-10-06T21:20:21.3990000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:20:21.3990000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:20:21.3990000-07:00|Change|40022490||||||||| +261|2023-10-06T21:20:21.3990000-07:00|Change|4002248C||||||||| +261|2023-10-06T21:20:21.3990000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:20:21.3990000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:20:21.3990000-07:00|Change|4002248E||||||||| +37|2023-10-06T21:20:22.0140000-07:00|40022472|Zeromus|0001A20E|6101158||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:22.0140000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||92.23|93.46|0.00|2.74| +21|2023-10-06T21:20:22.0140000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|94B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6120831|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.92|107.46|0.00|2.64|0001A215|0|1| +20|2023-10-06T21:20:22.0580000-07:00|4002248A|Zeromus|8B73|Primal Roar|4002248A|Zeromus|9.400|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:22.0580000-07:00|4002248B|Zeromus|8B72|Roar|4002248B|Zeromus|6.400|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:22.0580000-07:00|4002248C|Zeromus|8B71|Roar|4002248C|Zeromus|5.400|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:22.0580000-07:00|4002248D|Zeromus|8B70|Bury|4002248D|Zeromus|3.400|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:22.0580000-07:00|4002248E|Zeromus|8B6F|Bury|4002248E|Zeromus|2.400|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:22.0580000-07:00|4002248F|Zeromus|8B6E|Bury|4002248F|Zeromus|1.400|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:22.0580000-07:00|40022490|Zeromus|8B6D|Bury|40022490|Zeromus|0.400|100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:21.6090000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:20:22.1470000-07:00|40022D27|Liturgic Bell|77042|77042|10000|10000|||96.57|99.25|0.00|1.07| +21|2023-10-06T21:20:22.2810000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35714003|268A0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|6101158|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||107.23|93.71|0.00|-2.65|0001A216|0|1| +21|2023-10-06T21:20:22.2810000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|752003|B4400000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|6101158|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3850|10000|||114.58|94.30|-0.02|-1.03|0001A217|0|1| +261|2023-10-06T21:20:21.7250000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:20:22.3700000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|650003|36240000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|6101158|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||92.82|93.48|0.00|3.02|0001A218|0|1| +38|2023-10-06T21:20:22.3710000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|15||92.82|93.48|0.00|3.02|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:22.3710000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +30|2023-10-06T21:20:22.3710000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +261|2023-10-06T21:20:22.0580000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:20:22.0580000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:20:22.0580000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:20:22.0580000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:20:22.0580000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:20:22.0580000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:20:22.0580000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:20:22.6810000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|357F0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|6101158|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|6175|10000|||110.92|105.42|0.00|-2.73|0001A219|0|1| +22|2023-10-06T21:20:22.7260000-07:00|40022490|Zeromus|8B6D|Bury|10FF0007|Kehabiqo Febiqo|730003|17F30000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.29|90.32|0.00|3.07|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A21A|0|8| +22|2023-10-06T21:20:22.7260000-07:00|40022490|Zeromus|8B6D|Bury|10FF000A|Dukaro Nezikaro|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||95.55|93.75|0.00|2.73|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A21A|1|8| +22|2023-10-06T21:20:22.7260000-07:00|40022490|Zeromus|8B6D|Bury|10FF0001|Sesuga Sapisuga|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8300|10000|||107.23|93.71|0.00|-2.65|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A21A|2|8| +22|2023-10-06T21:20:22.7260000-07:00|40022490|Zeromus|8B6D|Bury|10FF0003|Gegehi Gehi|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3450|10000|||113.22|94.82|0.00|-2.39|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A21A|3|8| +22|2023-10-06T21:20:22.7260000-07:00|40022490|Zeromus|8B6D|Bury|10FF0008|Kokosaze Lulusaze|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||98.72|103.34|0.00|2.75|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A21A|4|8| +22|2023-10-06T21:20:22.7260000-07:00|40022490|Zeromus|8B6D|Bury|10FF0004|Buhojaqe Zijaqe|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1100|10000|||105.50|105.20|-0.01|-2.01|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A21A|5|8| +22|2023-10-06T21:20:22.7260000-07:00|40022490|Zeromus|8B6D|Bury|10FF0009|Zewo Negiwo|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|6175|10000|||110.92|105.42|0.00|-2.73|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A21A|6|8| +22|2023-10-06T21:20:22.7260000-07:00|40022490|Zeromus|8B6D|Bury|10FF0006|Wowobora Gogobora|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8150|10000|||83.33|105.39|0.00|2.56|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A21A|7|8| +37|2023-10-06T21:20:22.7700000-07:00|10FF0006|Wowobora Gogobora|0001A213|81809|81809|8150|10000|35||83.33|105.39|0.00|2.56|1B00|0|0|01|01000A8E|0|41E9978A|| +37|2023-10-06T21:20:22.7700000-07:00|40022472|Zeromus|0001A215|6098779||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:22.7700000-07:00|40022D35|Carbuncle|005A5A00|74223|77698|10000|10000|0||84.30|103.94|0.00|-0.58|0|0|0||||||| +30|2023-10-06T21:20:22.7700000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40022D35|Carbuncle|01|77698|81809| +261|2023-10-06T21:20:22.2480000-07:00|Change|10FF0009||||||||||||||||| +261|2023-10-06T21:20:22.4340000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:20:22.9050000-07:00|10FF0007|Kehabiqo Febiqo|0001A21A|123713||||||99.29|90.32|0.00|3.07| +37|2023-10-06T21:20:22.9490000-07:00|10FF000A|Dukaro Nezikaro|0001A21A|82773|82773|10000|10000|2||95.75|93.78|0.00|2.73|1E01|0|0|01|040001FB|0|C1A00000|| +261|2023-10-06T21:20:22.4340000-07:00|Change|4002248E||||||||||||| +37|2023-10-06T21:20:22.9940000-07:00|10FF0001|Sesuga Sapisuga|0001A21A|129071|129071|8300|10000|4||107.23|93.71|0.00|-2.65|1302|0|0|0| +21|2023-10-06T21:20:22.9940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|BA60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6098779|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||107.23|93.71|0.00|-2.65|0001A21B|0|1| +21|2023-10-06T21:20:22.9940000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|3CD50000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|6098779|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1100|10000|||104.26|104.41|0.00|-2.10|0001A21C|0|1| +31|2023-10-06T21:20:22.9940000-07:00|10FF0001||||| +37|2023-10-06T21:20:23.0380000-07:00|10FF0003|Gegehi Gehi|0001A21A|73814|73814|3450|10000|13||112.55|94.99|0.00|-2.07|2303|0|0|0| +37|2023-10-06T21:20:23.0380000-07:00|40022472|Zeromus|0001A216|6088913||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:23.0380000-07:00|10FF0001|Sesuga Sapisuga|0001A216|129071|129071|9300|10000|4||107.23|93.71|0.00|-2.65|1300|0|0|0| +37|2023-10-06T21:20:23.0830000-07:00|10FF0008|Kokosaze Lulusaze|0001A21A|90216|90216|10000|10000|2||99.32|102.43|0.00|2.78|1F04|0|0|0| +21|2023-10-06T21:20:23.0830000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|456003|718A0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|6098779|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8150|10000|||83.33|105.39|0.00|2.56|0001A21D|0|1| +38|2023-10-06T21:20:23.0830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7850|10000|35||83.33|105.39|0.00|2.56|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:23.0830000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:20:23.1280000-07:00|10FF0004|Buhojaqe Zijaqe|0001A21A|81541|81541|700|10000|2||104.26|104.41|0.00|-2.10|1C05|0|0|0| +21|2023-10-06T21:20:23.1280000-07:00|10FF000A|Dukaro Nezikaro|1D7D|Feint|40022472|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6098779|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||96.08|93.82|-0.01|2.72|0001A21E|0|1| +261|2023-10-06T21:20:22.5340000-07:00|Change|10FF0006||| +261|2023-10-06T21:20:22.6530000-07:00|Change|10FF0001||| +37|2023-10-06T21:20:23.1730000-07:00|10FF0009|Zewo Negiwo|0001A21A|81177|81177|5775|10000|2||110.92|105.42|0.00|-2.73|1806|0|0|0| +37|2023-10-06T21:20:23.2180000-07:00|10FF0006|Wowobora Gogobora|0001A21A|81809|81809|7850|10000|20||83.33|105.39|0.00|2.56|1B07|0|0|0| +21|2023-10-06T21:20:23.2180000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6088913|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||96.12|93.83|0.00|2.85|0001A21F|0|1| +04|2023-10-06T21:20:22.7720000-07:00|40022D2E|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||102.00|103.06|0.00|-3.13| +261|2023-10-06T21:20:22.7720000-07:00|Remove|40022D2E| +37|2023-10-06T21:20:23.3510000-07:00|40022472|Zeromus|0001A218|6075053||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:23.3510000-07:00|10FF000A|Dukaro Nezikaro|0001A218|82773|82773|10000|10000|2||96.14|93.84|0.00|2.80|1E00|0|0|01|040001FB|0|41A00000|| +38|2023-10-06T21:20:23.3510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|2||96.14|93.84|0.00|2.80|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:23.0010000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:20:23.5290000-07:00|40022472|Zeromus|0001A21B|6072071||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:23.5290000-07:00|10FF0003|Gegehi Gehi|73814|73814|3650|10000|||110.28|96.17|0.00|-1.60| +261|2023-10-06T21:20:23.0010000-07:00|Change|40022490||||||||||||| +39|2023-10-06T21:20:23.6190000-07:00|10FF0009|Zewo Negiwo|81177|81177|5996|10000|||110.89|105.45|0.00|-2.01| +261|2023-10-06T21:20:23.1140000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:20:23.6650000-07:00|40022472|Zeromus|0001A21E|6072071|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004AB|0|41200000|| +26|2023-10-06T21:20:23.6650000-07:00|4AB|Feint|10.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +21|2023-10-06T21:20:23.6650000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|268F0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|6072071|40478540|10000|10000|||100.00|80.10|0.00|0.00|123713|129844|10000|10000|||99.36|92.58|0.00|0.21|0001A220|0|1| +21|2023-10-06T21:20:23.6650000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6072071|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|700|10000|||102.96|102.65|0.00|-2.57|0001A221|0|1| +37|2023-10-06T21:20:23.7090000-07:00|40022472|Zeromus|0001A21D|6043005||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:23.7090000-07:00|10FF0006|Wowobora Gogobora|0001A21D|81809|81809|7850|10000|20||83.33|105.39|0.00|2.56|1B00|0|0|01|06000B25|0|0|| +39|2023-10-06T21:20:23.7090000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.87|100.85|0.00|3.07| +21|2023-10-06T21:20:23.7090000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|724003|26A00000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|6072071|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.87|100.85|0.00|3.07|0001A222|0|1| +21|2023-10-06T21:20:23.7090000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|19CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6072071|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7850|10000|||83.33|105.39|0.00|2.56|0001A223|0|1| +38|2023-10-06T21:20:23.7090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7850|10000|20||83.33|105.39|0.00|2.56|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:23.7090000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:20:23.7540000-07:00|40022472|Zeromus|0001A21F|6040811||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:23.7540000-07:00|40022472|Zeromus|DoT|0|16F4|6072071|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|700|10000|||102.86|102.05|0.00|-2.67| +22|2023-10-06T21:20:23.7550000-07:00|4002248F|Zeromus|8B6E|Bury|10FF0007|Kehabiqo Febiqo|730003|15980000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|123713|129844|10000|10000|||99.38|93.33|0.00|3.10|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A224|0|8| +22|2023-10-06T21:20:23.7550000-07:00|4002248F|Zeromus|8B6E|Bury|10FF0001|Sesuga Sapisuga|730603|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9300|10000|||107.10|93.82|0.00|-1.64|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A224|1|8| +22|2023-10-06T21:20:23.7550000-07:00|4002248F|Zeromus|8B6E|Bury|10FF000A|Dukaro Nezikaro|730603|1C0C0000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.03|94.60|0.00|2.67|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A224|2|8| +22|2023-10-06T21:20:23.7550000-07:00|4002248F|Zeromus|8B6E|Bury|10FF0003|Gegehi Gehi|730603|ED0000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3650|10000|||108.33|97.54|0.00|-1.66|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A224|3|8| +22|2023-10-06T21:20:23.7550000-07:00|4002248F|Zeromus|8B6E|Bury|10FF0004|Buhojaqe Zijaqe|730603|1BDF0000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A224|4|8| +22|2023-10-06T21:20:23.7550000-07:00|4002248F|Zeromus|8B6E|Bury|10FF0008|Kokosaze Lulusaze|730603|1B8B0000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.87|100.85|0.00|3.07|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A224|5|8| +22|2023-10-06T21:20:23.7550000-07:00|4002248F|Zeromus|8B6E|Bury|10FF0009|Zewo Negiwo|730603|1F990000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5996|10000|||110.17|105.37|0.00|-1.58|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A224|6|8| +22|2023-10-06T21:20:23.7550000-07:00|4002248F|Zeromus|8B6E|Bury|10FF0006|Wowobora Gogobora|730603|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|7850|10000|||83.33|105.39|0.00|2.56|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A224|7|8| +26|2023-10-06T21:20:23.7550000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +22|2023-10-06T21:20:23.7550000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|53860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|0001A225|0|7| +22|2023-10-06T21:20:23.7550000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|4|31D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.87|100.85|0.00|3.07|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|0001A225|1|7| +22|2023-10-06T21:20:23.7550000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|528C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3650|10000|||108.33|97.54|0.00|-1.66|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|0001A225|2|7| +22|2023-10-06T21:20:23.7550000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000A|Dukaro Nezikaro|4|346E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.03|94.60|0.00|2.67|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|0001A225|3|7| +22|2023-10-06T21:20:23.7550000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|534D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|123713|129844|10000|10000|||99.38|93.33|0.00|3.10|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|0001A225|4|7| +22|2023-10-06T21:20:23.7550000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|4|32480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9300|10000|||107.10|93.82|0.00|-1.64|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|0001A225|5|7| +22|2023-10-06T21:20:23.7550000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0009|Zewo Negiwo|4|34960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5996|10000|||110.17|105.37|0.00|-1.58|81541|81541|700|10000|||102.86|102.05|0.00|-2.67|0001A225|6|7| +38|2023-10-06T21:20:23.7550000-07:00|40022472|Zeromus|005A5A00|6034935|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T21:20:23.3060000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:20:23.3060000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:20:23.8440000-07:00|40022472|Zeromus|0001A217|5988791||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:20:23.8440000-07:00|6338|3| +39|2023-10-06T21:20:23.8870000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9500|10000|||106.66|94.20|0.00|-1.64| +39|2023-10-06T21:20:23.8870000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|900|10000|||102.68|101.38|0.00|-2.74| +37|2023-10-06T21:20:23.9320000-07:00|10FF0007|Kehabiqo Febiqo|0001A224|118185||||||99.41|94.30|0.00|3.10| +37|2023-10-06T21:20:23.9320000-07:00|40022472|Zeromus|0001A21C|5973218||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:23.9760000-07:00|40022472|Zeromus|0001A219|5959523||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:23.9760000-07:00|10FF0001|Sesuga Sapisuga|0001A224|129071|129071|9500|10000|1||106.22|94.58|0.00|-1.65|1301|0|0|0| +39|2023-10-06T21:20:23.9770000-07:00|10FF0007|Kehabiqo Febiqo|119483|129844|10000|10000|||99.42|94.95|-0.02|3.10| +22|2023-10-06T21:20:23.9770000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|0001A226|0|8| +22|2023-10-06T21:20:23.9770000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|900|10000|||102.52|100.98|0.00|-2.74|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|0001A226|1|8| +22|2023-10-06T21:20:23.9770000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.89|100.80|0.00|3.14|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|0001A226|2|8| +22|2023-10-06T21:20:23.9770000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9500|10000|||106.22|94.58|0.00|-1.65|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|0001A226|3|8| +22|2023-10-06T21:20:23.9770000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|118185|129844|10000|10000|||99.42|94.95|-0.02|3.10|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|0001A226|4|8| +22|2023-10-06T21:20:23.9770000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.21|95.65|-0.02|2.44|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|0001A226|5|8| +22|2023-10-06T21:20:23.9770000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0009|Zewo Negiwo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5996|10000|||108.51|105.15|0.00|-1.65|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|0001A226|6|8| +22|2023-10-06T21:20:23.9770000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|7850|10000|||83.33|105.39|0.00|2.56|73814|73814|3650|10000|||106.85|98.28|0.00|-1.78|0001A226|7|8| +37|2023-10-06T21:20:24.0210000-07:00|10FF000A|Dukaro Nezikaro|0001A224|75593|82773|10000|10000|0||98.69|96.19|0.00|2.40|1E02|0|0|01|07000000|0|0|| +261|2023-10-06T21:20:23.4990000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:20:24.0210000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8050|10000|||83.33|105.39|0.00|2.56| +38|2023-10-06T21:20:24.0210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75593|82773|10000|10000|0||98.69|96.19|0.00|2.40|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:24.0210000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:20:24.0650000-07:00|10FF0003|Gegehi Gehi|0001A224|73577|73814|3650|10000|0||106.14|98.61|0.00|-1.96|2303|0|0|01|05000000|0|0|| +38|2023-10-06T21:20:24.0650000-07:00|10FF0003|Gegehi Gehi|005A5A23|73577|73814|3650|10000|0||106.14|98.61|0.00|-1.96|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:24.0650000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +261|2023-10-06T21:20:23.6100000-07:00|Change|10FF0006||| +37|2023-10-06T21:20:24.1100000-07:00|10FF0004|Buhojaqe Zijaqe|0001A224|74406|81541|900|10000|0||102.39|100.65|0.00|-2.75|1C04|0|0|01|0A000000|0|0|| +38|2023-10-06T21:20:24.1100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74406|81541|900|10000|0||102.39|100.65|0.00|-2.75|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:24.1100000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:20:23.6100000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:24.1560000-07:00|10FF0008|Kokosaze Lulusaze|0001A224|83165|90216|10000|10000|0||99.90|100.76|-0.01|3.14|1F05|0|0|01|08000000|0|0|| +22|2023-10-06T21:20:24.1560000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|32520000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|0001A227|0|7| +22|2023-10-06T21:20:24.1560000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|32400000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|73577|73814|3650|10000|||105.49|98.83|0.00|-1.96|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|0001A227|1|7| +22|2023-10-06T21:20:24.1560000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|334F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|74406|81541|900|10000|||102.25|100.26|0.00|-2.75|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|0001A227|2|7| +22|2023-10-06T21:20:24.1560000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|30C60000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.90|100.76|-0.01|3.14|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|0001A227|3|7| +22|2023-10-06T21:20:24.1560000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|200004|50FB0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|75593|82773|10000|10000|||99.22|96.58|0.00|2.53|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|0001A227|4|7| +22|2023-10-06T21:20:24.1560000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|31ED0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9500|10000|||105.19|95.46|0.00|-1.65|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|0001A227|5|7| +22|2023-10-06T21:20:24.1560000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|200004|4E080000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|119483|129844|10000|10000|||99.40|94.36|0.00|3.10|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|0001A227|6|7| +21|2023-10-06T21:20:24.1560000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5959523|40478540|10000|10000|||100.00|80.10|0.00|0.00|73577|73814|3650|10000|||105.49|98.83|0.00|-1.96|0001A228|0|1| +38|2023-10-06T21:20:24.1560000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5996|10000|2||107.10|105.10|0.00|-1.62|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:24.1560000-07:00|A95|Liturgy of the Bell|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|04|81177|81177| +38|2023-10-06T21:20:24.1560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|83165|90216|10000|10000|0||99.90|100.76|-0.01|3.14|0|0|0|||||||||||||||| +30|2023-10-06T21:20:24.1560000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +37|2023-10-06T21:20:24.2000000-07:00|40022472|Zeromus|0001A220|5949652||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:24.2000000-07:00|10FF0009|Zewo Negiwo|0001A224|73088|81177|5996|10000|0||107.10|105.10|0.00|-1.62|1806|0|0|01|07000000|0|0|| +37|2023-10-06T21:20:24.2000000-07:00|40022472|Zeromus|0001A221|5949396||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:24.2000000-07:00|10FF0009|Zewo Negiwo|005A5A18|73088|81177|5996|10000|0||107.10|105.10|0.00|-1.62|0|0|0||||||||||||| +30|2023-10-06T21:20:24.2000000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +37|2023-10-06T21:20:24.2460000-07:00|10FF0006|Wowobora Gogobora|0001A224|81809|81809|8050|10000|9||83.33|105.39|0.00|2.56|1B07|0|0|01|01000000|0|0|| +22|2023-10-06T21:20:24.2460000-07:00|40022D27|Liturgic Bell|6508|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|200004|996B0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.90|100.76|-0.01|3.14|77042|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A229|0|8| +22|2023-10-06T21:20:24.2460000-07:00|40022D27|Liturgic Bell|6508|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|605E0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|119483|129844|10000|10000|||99.40|94.36|0.00|3.10|77042|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A229|1|8| +22|2023-10-06T21:20:24.2460000-07:00|40022D27|Liturgic Bell|6508|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|619C0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|75593|82773|10000|10000|||99.22|96.58|0.00|2.53|77042|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A229|2|8| +22|2023-10-06T21:20:24.2460000-07:00|40022D27|Liturgic Bell|6508|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|60560000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|74406|81541|900|10000|||102.25|100.26|0.00|-2.75|77042|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A229|3|8| +22|2023-10-06T21:20:24.2460000-07:00|40022D27|Liturgic Bell|6508|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|5FE90000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|73577|73814|3650|10000|||105.49|98.83|0.00|-1.96|77042|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A229|4|8| +22|2023-10-06T21:20:24.2460000-07:00|40022D27|Liturgic Bell|6508|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|200004|9E750000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9500|10000|||105.19|95.46|0.00|-1.65|77042|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A229|5|8| +22|2023-10-06T21:20:24.2460000-07:00|40022D27|Liturgic Bell|6508|Liturgy of the Bell|10FF0009|Zewo Negiwo|200004|97F30000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5996|10000|||107.10|105.10|0.00|-1.62|77042|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A229|6|8| +22|2023-10-06T21:20:24.2460000-07:00|40022D27|Liturgic Bell|6508|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|60540000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8050|10000|||83.33|105.39|0.00|2.56|77042|77042|10000|10000|||96.57|99.25|0.00|1.07|0001A229|7|8| +38|2023-10-06T21:20:24.2460000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8050|10000|9||83.33|105.39|0.00|2.56|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:24.2460000-07:00|A8E|Radiant Aegis|0.00|40022D35|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +261|2023-10-06T21:20:23.7200000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T21:20:24.3340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74406|81541|900|10000|0||102.15|100.06|0.00|-2.44|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:24.3340000-07:00|317|Dissipation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:24.3800000-07:00|40022D38||005A5A00|73956|77430|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:20:24.3800000-07:00|10FF0004|Buhojaqe Zijaqe|0001A225|81541||||||102.15|100.06|0.00|-2.44| +21|2023-10-06T21:20:24.3800000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8050|10000|||83.33|105.39|0.00|2.56|81809|81809|8050|10000|||83.33|105.39|0.00|2.56|0001A22A|0|1| +38|2023-10-06T21:20:24.3800000-07:00|40022D38||005A5A00|73956|77430|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:20:23.9540000-07:00|Add|40022D38||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:20:23.9540000-07:00|Remove|40022D23| +37|2023-10-06T21:20:24.4680000-07:00|40022472|Zeromus|0001A222|5939508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:24.4680000-07:00|40022472|Zeromus|0001A223|5932905||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:23.9540000-07:00|Change|40022D38||||| +03|2023-10-06T21:20:23.9540000-07:00|40022D38|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||99.87|100.06|0.00|-0.84| +37|2023-10-06T21:20:24.5130000-07:00|10FF0008|Kokosaze Lulusaze|0001A225|90216||||||99.90|100.76|0.00|3.14| +21|2023-10-06T21:20:24.5580000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|30CE0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|5932905|40478540|10000|10000|||100.00|80.10|0.00|0.00|75593|82773|10000|10000|||100.01|97.50|0.00|1.53|0001A22B|0|1| +261|2023-10-06T21:20:24.1730000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:20:24.6030000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BB30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5932905|40478540|10000|10000|||100.00|80.10|0.00|0.00|119483|129844|10000|10000|||99.60|96.09|0.00|2.32|0001A22C|0|1| +37|2023-10-06T21:20:24.6480000-07:00|10FF0003|Gegehi Gehi|0001A225|73814||||||103.74|98.21|0.00|-1.97| +37|2023-10-06T21:20:24.6480000-07:00|10FF0003|Gegehi Gehi|0001A226|73814|73814|3650|10000|0||103.74|98.21|0.00|-1.97|2300|0|0|01|030004D7|0|41A00000|| +26|2023-10-06T21:20:24.6480000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:20:24.6930000-07:00|40022472|Zeromus|0001A228|5932877||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:24.6930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|11E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5932905|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|100.76|0.00|3.14|0001A22D|0|1| +21|2023-10-06T21:20:24.6930000-07:00|10FF0004|Buhojaqe Zijaqe|40A1|Summon Seraph|10FF0004|Buhojaqe Zijaqe|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|900|10000|||101.91|100.00|0.00|-0.88|81541|81541|900|10000|||101.91|100.00|0.00|-0.88|0001A22E|0|1| +38|2023-10-06T21:20:24.6930000-07:00|40022D38|Ruby Carbuncle|005A5A00|0|77430|0|10000|0||99.87|100.06|0.00|-0.84|0|0|0|||| +26|2023-10-06T21:20:24.6930000-07:00|30|Well Fed|1798.34|10FF0004|Buhojaqe Zijaqe|40022D38|Ruby Carbuncle|2968|77430|81541| +38|2023-10-06T21:20:24.7380000-07:00|40022D3A||005A5A00|73956|77430|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:20:24.7380000-07:00|10FF0009|Zewo Negiwo|0001A227|81177||||||105.93|105.13|0.00|-1.55| +22|2023-10-06T21:20:24.7380000-07:00|4002248E|Zeromus|8B6F|Bury|10FF0007|Kehabiqo Febiqo|730003|17080000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|119483|129844|10000|10000|||99.65|96.23|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A22F|0|8| +22|2023-10-06T21:20:24.7380000-07:00|4002248E|Zeromus|8B6F|Bury|10FF0001|Sesuga Sapisuga|730603|14EF0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9500|10000|||102.60|97.21|0.00|-1.95|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A22F|1|8| +22|2023-10-06T21:20:24.7380000-07:00|4002248E|Zeromus|8B6F|Bury|10FF0003|Gegehi Gehi|730003|26270000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3650|10000|||103.16|97.98|-0.02|-1.99|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A22F|2|8| +22|2023-10-06T21:20:24.7380000-07:00|4002248E|Zeromus|8B6F|Bury|10FF000A|Dukaro Nezikaro|730003|24F00000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|75593|82773|10000|10000|||100.27|97.90|0.00|-3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A22F|3|8| +22|2023-10-06T21:20:24.7380000-07:00|4002248E|Zeromus|8B6F|Bury|10FF0008|Kokosaze Lulusaze|730003|25160000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.90|100.76|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A22F|4|8| +22|2023-10-06T21:20:24.7380000-07:00|4002248E|Zeromus|8B6F|Bury|10FF0004|Buhojaqe Zijaqe|F1730006|20D10000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|900|10000|||101.73|100.28|0.00|-0.74|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A22F|5|8| +22|2023-10-06T21:20:24.7380000-07:00|4002248E|Zeromus|8B6F|Bury|10FF0009|Zewo Negiwo|730003|26520000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|73088|81177|5996|10000|||105.93|105.13|0.00|-1.55|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A22F|6|8| +22|2023-10-06T21:20:24.7380000-07:00|4002248E|Zeromus|8B6F|Bury|10FF0006|Wowobora Gogobora|730603|7390000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8050|10000|||83.33|105.39|0.00|2.56|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A22F|7|8| +21|2023-10-06T21:20:24.7380000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41714003|339F0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|5932877|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9500|10000|||102.60|97.21|0.00|-1.95|0001A230|0|1| +38|2023-10-06T21:20:24.7380000-07:00|40022D3A||005A5A00|73956|77430|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:20:24.7380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9500|10000|1||102.60|97.21|0.00|-1.95|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:24.7380000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:20:24.7380000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:20:24.2710000-07:00|Change|4002248E||||||||||||| +37|2023-10-06T21:20:24.7820000-07:00|10FF000A|Dukaro Nezikaro|0001A225|82773||||||100.27|97.90|0.00|-3.11| +37|2023-10-06T21:20:24.7820000-07:00|10FF0004|Buhojaqe Zijaqe|0001A226|81541|81541|900|10000|0||101.56|100.55|0.00|-0.74|1C01|0|0|01|03000511|0|41A00000|| +26|2023-10-06T21:20:24.7820000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +21|2023-10-06T21:20:24.7820000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73814|73814|3650|10000|||102.91|97.93|0.00|-2.17|73814|73814|3650|10000|||102.91|97.93|0.00|-2.17|0001A231|0|1| +38|2023-10-06T21:20:24.7820000-07:00|40022D3A||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:20:24.7820000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3650|10000|0||102.91|97.93|0.00|-2.17|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:24.7820000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73814|73814| +37|2023-10-06T21:20:24.8270000-07:00|10FF0007|Kehabiqo Febiqo|0001A229|129844||||||99.71|96.37|0.00|-3.12| +37|2023-10-06T21:20:24.8710000-07:00|10FF0003|Gegehi Gehi|0001A227|73814|73814|3650|10000|0||102.91|97.93|0.00|-2.17|2301|0|0|01|040007B3|06|C1700000|| +261|2023-10-06T21:20:24.3690000-07:00|Add|40022D3A||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:20:24.3690000-07:00|40022D3A|Seraph|00|5A|10FF0004|00||8227|10487|73956|77430|10000|10000|||99.87|100.06|0.00|-0.74| +261|2023-10-06T21:20:24.3690000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:20:24.9150000-07:00|10FF0007|Kehabiqo Febiqo|0001A22F|123948||||||99.72|96.45|0.00|-3.12| +37|2023-10-06T21:20:24.9150000-07:00|10FF0007|Kehabiqo Febiqo|0001A225|129844||||||99.72|96.45|0.00|-3.12| +37|2023-10-06T21:20:24.9150000-07:00|10FF0008|Kokosaze Lulusaze|0001A226|90216|90216|10000|10000|0||99.90|100.76|0.00|3.14|1F02|0|0|01|02000511|0|41A00000|| +26|2023-10-06T21:20:24.9150000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +37|2023-10-06T21:20:24.9150000-07:00|10FF0003|Gegehi Gehi|0001A226|73814|73814|3650|10000|0||102.70|97.88|0.00|-2.17|2302|0|0|01|040007B3|06|C1700000|| +261|2023-10-06T21:20:24.4730000-07:00|Change|40022D3A||| +261|2023-10-06T21:20:24.5630000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:24.9600000-07:00|10FF0001|Sesuga Sapisuga|0001A22F|123712|129071|9500|10000|0||101.12|98.31|0.00|-2.25|1301|0|0|03|03000000|0|0|||||||||| +21|2023-10-06T21:20:24.9600000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|312F0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.72|96.51|0.00|-3.12|5932877|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A232|0|1| +38|2023-10-06T21:20:24.9600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123712|129071|9500|10000|0||101.12|98.31|0.00|-2.25|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:24.9600000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T21:20:25.0040000-07:00|10FF0003|Gegehi Gehi|0001A22F|64047|73814|3650|10000|0||102.38|97.81|0.00|-2.17|2302|0|0|01|040007B3|06|C1700000|| +37|2023-10-06T21:20:25.0040000-07:00|10FF0006|Wowobora Gogobora|0001A22A|81809|81809|8050|10000|9||83.34|105.39|0.00|2.15|1B00|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T21:20:25.0040000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:20:25.0040000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.54|98.34|-0.01|-3.11| +37|2023-10-06T21:20:25.0490000-07:00|10FF000A|Dukaro Nezikaro|0001A22F|73317||||||100.54|98.34|-0.01|-3.11| +37|2023-10-06T21:20:25.0490000-07:00|10FF0001|Sesuga Sapisuga|0001A225|129071|129071|9500|10000|0||101.12|98.31|0.00|-2.25|1305|0|0|02|0400076E|03|C1F00000|||||| +37|2023-10-06T21:20:25.0490000-07:00|10FF0001|Sesuga Sapisuga|0001A226|129071|129071|9500|10000|0||101.12|98.31|0.00|-2.25|1303|0|0|03|03000511|0|41A00000|||||||||| +26|2023-10-06T21:20:25.0490000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +37|2023-10-06T21:20:25.0490000-07:00|10FF0003|Gegehi Gehi|0001A226|64047|73814|3650|10000|0||102.38|97.81|0.00|-2.17|2303|0|0|01|040007B3|06|C1700000|| +37|2023-10-06T21:20:25.0930000-07:00|10FF0008|Kokosaze Lulusaze|0001A22F|80722||||||99.90|100.76|0.00|3.14| +37|2023-10-06T21:20:25.0930000-07:00|40022472|Zeromus|0001A22B|5920383||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:25.1380000-07:00|40022472|Zeromus|0001A22C|5917388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:25.1380000-07:00|10FF0008|Kokosaze Lulusaze|0001A227|90216||||||99.90|100.76|0.00|3.14| +37|2023-10-06T21:20:25.1380000-07:00|10FF0004|Buhojaqe Zijaqe|0001A22F|73140||||||101.21|101.09|-0.02|-0.74| +39|2023-10-06T21:20:25.1380000-07:00|40022D27|Liturgic Bell|77042|77042|10000|10000|||96.57|99.25|0.00|1.07| +38|2023-10-06T21:20:25.1380000-07:00|40022472|Zeromus|005A5A00|5917388|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:25.1380000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40022472|Zeromus|00|40478540|129844| +37|2023-10-06T21:20:25.1840000-07:00|10FF0009|Zewo Negiwo|0001A22F|71367||||||103.50|104.23|0.00|-1.70| +37|2023-10-06T21:20:25.1840000-07:00|10FF0009|Zewo Negiwo|0001A225|81177||||||103.50|104.23|0.00|-1.70| +37|2023-10-06T21:20:25.1840000-07:00|10FF0003|Gegehi Gehi|0001A231|64047|73814|3650|10000|0||101.78|98.26|0.00|-2.24|2300|0|0|01|040007B3|06|41700000|| +37|2023-10-06T21:20:25.1840000-07:00|10FF0007|Kehabiqo Febiqo|0001A226|129844|129844|10000|10000|0||99.70|96.55|0.00|-3.12|1504|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:20:25.1840000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +38|2023-10-06T21:20:25.1840000-07:00|10FF0003|Gegehi Gehi|005A5A23|64047|73814|3650|10000|0||101.78|98.26|0.00|-2.24|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:25.2280000-07:00|10FF0003|Gegehi Gehi|0001A229|73814||||||101.78|98.26|0.00|-2.24| +37|2023-10-06T21:20:25.2280000-07:00|10FF0006|Wowobora Gogobora|0001A22F|79960|81809|8050|10000|0||83.35|105.39|0.00|1.88|1B07|0|0|01|04000000|0|0|| +38|2023-10-06T21:20:25.2280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|79960|81809|8050|10000|0||83.35|105.39|0.00|1.88|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:25.2280000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +37|2023-10-06T21:20:25.2730000-07:00|10FF000A|Dukaro Nezikaro|0001A227|82773||||||100.54|98.34|0.00|-3.11| +39|2023-10-06T21:20:25.2730000-07:00|40022D35|Carbuncle|77698|77698|10000|10000|||84.30|103.94|0.00|-0.58| +21|2023-10-06T21:20:25.2730000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|70E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5917388|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9500|10000|||100.88|98.28|0.00|-2.38|0001A233|0|1| +261|2023-10-06T21:20:24.7980000-07:00|Change|40022D27||| +38|2023-10-06T21:20:25.2730000-07:00|40022D27|Liturgic Bell|005A5A00|0|77042|0|10000|0||96.57|99.25|0.00|1.07|0|0|0|||| +26|2023-10-06T21:20:25.2730000-07:00|30|Well Fed|1787.66|10FF0009|Zewo Negiwo|40022D27|Liturgic Bell|2968|77042|81177| +31|2023-10-06T21:20:25.2730000-07:00|10FF0001||||| +37|2023-10-06T21:20:25.3170000-07:00|40022472|Zeromus|0001A230|5904173||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:25.3170000-07:00|10FF0001|Sesuga Sapisuga|0001A230|129071|129071|9500|10000|0||100.88|98.28|0.00|-2.38|1300|0|0|02|0400076E|03|41F00000|||||| +37|2023-10-06T21:20:25.3170000-07:00|10FF000A|Dukaro Nezikaro|0001A226|82773|82773|10000|10000|0||100.54|98.34|0.00|-3.11|1E05|0|0|01|05000511|0|41A00000|| +26|2023-10-06T21:20:25.3170000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +38|2023-10-06T21:20:25.3170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9500|10000|0||100.88|98.28|0.00|-2.38|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:20:25.4060000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|756003|54CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5904173|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A234|0|1| +21|2023-10-06T21:20:25.4060000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5904173|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A235|0|1| +34|2023-10-06T21:20:25.4060000-07:00|40022D38|Ruby Carbuncle|40022D38|Ruby Carbuncle|01| +37|2023-10-06T21:20:25.4500000-07:00|40022472|Zeromus|0001A22D|5899589||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:25.4500000-07:00|10FF0009|Zewo Negiwo|0001A226|81177|81177|5996|10000|0||102.84|103.57|0.00|-1.59|1806|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:20:25.4500000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +38|2023-10-06T21:20:25.4950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|79960|81809|8600|10000|0||84.54|105.37|0.00|1.70|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:24.9190000-07:00|Change|40022D38||||||||||| +261|2023-10-06T21:20:25.0390000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:20:25.5400000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|752003|47CF0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|5899589|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3650|10000|||100.68|99.08|0.00|-2.65|0001A236|0|1| +38|2023-10-06T21:20:25.5400000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3650|10000|0||100.68|99.08|0.00|-2.65|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:25.5400000-07:00|7B3|Manafication|14.60|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73814|73814| +37|2023-10-06T21:20:25.5850000-07:00|10FF0006|Wowobora Gogobora|0001A226|79960|81809|8600|10000|0||86.14|105.25|0.00|1.67|1B07|0|0|01|04000511|0|41A00000|| +26|2023-10-06T21:20:25.5850000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +21|2023-10-06T21:20:25.5850000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|5899589|40478540|10000|10000|||100.00|80.10|0.00|0.00|79960|81809|8600|10000|||86.14|105.25|0.00|1.67|0001A237|0|1| +38|2023-10-06T21:20:25.5850000-07:00|40022D35|Carbuncle|005A5A00|0|77698|0|10000|0||84.30|103.94|0.00|-0.58|0|0|0||||||| +30|2023-10-06T21:20:25.5850000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022D35|Carbuncle|00|77698|81809| +38|2023-10-06T21:20:25.5850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|79960|81809|8600|10000|0||86.14|105.25|0.00|1.67|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:25.5850000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:20:25.1490000-07:00|Change|40022D35||| +261|2023-10-06T21:20:25.1490000-07:00|Change|40022D35||| +38|2023-10-06T21:20:25.6290000-07:00|40022D3B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:20:25.6290000-07:00|10FF0006|Wowobora Gogobora|0001A229|81809||||||86.14|105.25|0.00|1.67| +38|2023-10-06T21:20:25.6300000-07:00|40022D3B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +261|2023-10-06T21:20:25.1490000-07:00|Add|40022D3B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:20:25.1490000-07:00|40022D3B|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||87.86|107.46|0.00|2.67| +22|2023-10-06T21:20:25.7180000-07:00|4002248D|Zeromus|8B70|Bury|10FF0007|Kehabiqo Febiqo|730003|17B80000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.77|96.46|0.00|-3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A238|0|8| +22|2023-10-06T21:20:25.7180000-07:00|4002248D|Zeromus|8B70|Bury|10FF000A|Dukaro Nezikaro|F1730006|233D0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.54|98.34|0.00|-3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A238|1|8| +22|2023-10-06T21:20:25.7180000-07:00|4002248D|Zeromus|8B70|Bury|10FF0001|Sesuga Sapisuga|EC730005|146D0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9500|10000|||100.68|98.41|0.00|-2.62|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A238|2|8| +22|2023-10-06T21:20:25.7180000-07:00|4002248D|Zeromus|8B70|Bury|10FF0003|Gegehi Gehi|730003|2C030000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3650|10000|||100.47|99.23|-0.02|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A238|3|8| +22|2023-10-06T21:20:25.7180000-07:00|4002248D|Zeromus|8B70|Bury|10FF0004|Buhojaqe Zijaqe|730003|2B2C0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|73140|81541|900|10000|||101.07|100.29|0.00|-2.47|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A238|4|8| +22|2023-10-06T21:20:25.7180000-07:00|4002248D|Zeromus|8B70|Bury|10FF0008|Kokosaze Lulusaze|730003|27E80000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.90|100.76|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A238|5|8| +22|2023-10-06T21:20:25.7180000-07:00|4002248D|Zeromus|8B70|Bury|10FF0009|Zewo Negiwo|730003|2AE20000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5996|10000|||102.33|103.06|-0.01|-1.50|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A238|6|8| +22|2023-10-06T21:20:25.7180000-07:00|4002248D|Zeromus|8B70|Bury|10FF0006|Wowobora Gogobora|730003|29EB0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|79960|81809|8600|10000|||86.14|105.25|0.00|1.67|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A238|7|8| +261|2023-10-06T21:20:25.2430000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:20:25.2430000-07:00|Change|40022D3B||||| +37|2023-10-06T21:20:25.7630000-07:00|10FF0007|Kehabiqo Febiqo|0001A232|117253||||||99.80|96.40|0.00|3.14| +34|2023-10-06T21:20:25.7630000-07:00|40022D3A|Seraph|40022D3A|Seraph|01| +261|2023-10-06T21:20:25.2430000-07:00|Change|40022D3A||| +37|2023-10-06T21:20:25.8070000-07:00|40022472|Zeromus|0001A233|5897783||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:25.8970000-07:00|10FF0007|Kehabiqo Febiqo|0001A238|111181||||||99.83|96.34|0.00|3.14| +38|2023-10-06T21:20:25.8970000-07:00|40022D3A|Seraph|005A5A00|73956|77430|10000|10000|0||99.87|100.06|0.00|-0.74|0|0|0||||||||||||| +26|2023-10-06T21:20:25.8970000-07:00|30|Well Fed|1797.14|10FF0004|Buhojaqe Zijaqe|40022D3A|Seraph|2968|77430|81541| +26|2023-10-06T21:20:25.8970000-07:00|A8F|Searing Light|0.48|10FF0006|Wowobora Gogobora|40022D3A|Seraph|00|77430|81809| +26|2023-10-06T21:20:25.8970000-07:00|511|Embolden|18.84|10FF0003|Gegehi Gehi|40022D3A|Seraph|00|77430|73814| +26|2023-10-06T21:20:25.8970000-07:00|7AD|Summon Order III|30.00|40022D3A|Seraph|40022D3A|Seraph|01|77430|77430| +21|2023-10-06T21:20:25.8970000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73140|81541|900|10000|||100.97|99.99|0.00|-2.84|73140|81541|900|10000|||100.97|99.99|0.00|-2.84|0001A239|0|1| +37|2023-10-06T21:20:25.9410000-07:00|10FF000A|Dukaro Nezikaro|0001A238|73752||||||100.54|98.34|0.00|-3.11| +37|2023-10-06T21:20:25.9410000-07:00|40022472|Zeromus|0001A235|5894920||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:25.9860000-07:00|10FF0001|Sesuga Sapisuga|0001A238|123842||||||100.82|98.79|0.00|-2.81| +37|2023-10-06T21:20:26.0310000-07:00|10FF0003|Gegehi Gehi|0001A238|62547||||||100.39|99.29|-0.02|-3.12| +37|2023-10-06T21:20:26.0310000-07:00|40022472|Zeromus|0001A234|5873213||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:26.0750000-07:00|10FF0004|Buhojaqe Zijaqe|0001A238|62088||||||100.91|99.81|0.00|-3.06| +21|2023-10-06T21:20:26.0750000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|23C80000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|5894920|40478540|10000|10000|||100.00|80.10|0.00|0.00|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A23A|0|1| +37|2023-10-06T21:20:26.1190000-07:00|10FF0008|Kokosaze Lulusaze|0001A238|80000||||||99.90|100.76|0.00|3.14| +37|2023-10-06T21:20:26.1640000-07:00|10FF0009|Zewo Negiwo|0001A238|70199||||||102.28|103.01|0.00|-1.50| +37|2023-10-06T21:20:26.1640000-07:00|40022472|Zeromus|0001A236|5854830||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:26.2090000-07:00|10FF0006|Wowobora Gogobora|0001A238|71078||||||89.75|104.13|0.00|2.12| +21|2023-10-06T21:20:26.2090000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|65F40000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|5873213|40478540|10000|10000|||100.00|80.10|0.00|0.00|80000|90216|10000|10000|||99.90|100.76|0.00|3.14|0001A23B|0|1| +261|2023-10-06T21:20:25.7700000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:20:26.3420000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|720003|36E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5854830|40478540|10000|10000|||100.00|80.10|0.00|0.00|62547|73814|3650|10000|||100.39|99.29|0.00|-3.12|0001A23C|0|1| +38|2023-10-06T21:20:26.3870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111181|129844|10000|10000|0||99.84|96.33|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:20:26.3870000-07:00|40022D3A|Seraph|005A5A00|73956|77430|10000|10000|0||99.87|100.06|0.00|-0.74|0|0|0||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40022D3A|Seraph|00|77430|81809| +38|2023-10-06T21:20:26.3870000-07:00|40022D3B|Emerald Garuda|005A5A00|74223|77698|10000|10000|0||87.86|107.46|0.00|2.67|0|0|0|||||||||| +26|2023-10-06T21:20:26.3870000-07:00|30|Well Fed|1246.90|10FF0006|Wowobora Gogobora|40022D3B|Emerald Garuda|2964|77698|81809| +26|2023-10-06T21:20:26.3870000-07:00|511|Embolden|19.15|10FF0003|Gegehi Gehi|40022D3B|Emerald Garuda|00|77698|73814| +38|2023-10-06T21:20:26.3870000-07:00|10FF0009|Zewo Negiwo|005A5A18|70199|81177|5996|10000|0||102.28|103.01|0.00|-1.50|0|0|0|||||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0009|Zewo Negiwo|00|81177|81809| +38|2023-10-06T21:20:26.3870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80000|90216|10000|10000|0||99.90|100.76|0.00|3.14|0|0|0|||||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:20:26.3870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71078|81809|8600|10000|0||90.87|103.71|0.00|2.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:20:26.3870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123842|129071|9500|10000|0||101.10|98.69|0.00|-2.81|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:20:26.3870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62088|81541|900|10000|0||100.91|99.81|0.00|2.66|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:20:26.3870000-07:00|10FF0003|Gegehi Gehi|005A5A23|62547|73814|3650|10000|0||100.39|99.29|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:20:26.3870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|73752|82773|10000|10000|0||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:26.3870000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|82773|81809| +39|2023-10-06T21:20:26.5200000-07:00|10FF0003|Gegehi Gehi|63285|73814|3850|10000|||100.39|99.29|0.00|-3.12| +261|2023-10-06T21:20:26.0060000-07:00|Change|10FF0003||||||||| +20|2023-10-06T21:20:26.5660000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|102.28|103.01|0.00|-1.50| +261|2023-10-06T21:20:26.1180000-07:00|Change|10FF0009||||||||||||||||||| +37|2023-10-06T21:20:26.6100000-07:00|10FF0006|Wowobora Gogobora|0001A237|71078|81809|8600|10000|0||91.96|103.33|0.00|1.94|1B00|0|0|01|06000AA5|0|0|| +39|2023-10-06T21:20:26.6100000-07:00|10FF0009|Zewo Negiwo|71010|81177|6217|10000|||102.28|103.01|0.00|-1.65| +38|2023-10-06T21:20:26.6100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71078|81809|8600|10000|0||91.96|103.33|0.00|1.94|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:26.2190000-07:00|Change|40022D3B||| +37|2023-10-06T21:20:26.6990000-07:00|40022472|Zeromus|0001A23A|5845670||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:26.6990000-07:00|10FF0008|Kokosaze Lulusaze|80902|90216|10000|10000|||99.90|100.76|0.00|3.14| +261|2023-10-06T21:20:26.2190000-07:00|Change|40022D38||||| +24|2023-10-06T21:20:26.7430000-07:00|40022472|Zeromus|DoT|0|17B4|5845670|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|62088|81541|900|10000|||100.91|99.87|-0.02|1.21| +38|2023-10-06T21:20:26.7430000-07:00|40022472|Zeromus|005A5A00|5839602|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +21|2023-10-06T21:20:26.7880000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|10D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5845670|40478540|10000|10000|||100.00|80.10|0.00|0.00|62088|81541|900|10000|||100.91|99.87|-0.02|1.21|0001A23D|0|1| +21|2023-10-06T21:20:26.7880000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|716003|345F0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|5845670|40478540|10000|10000|||100.00|80.10|0.00|0.00|73752|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A23E|0|1| +39|2023-10-06T21:20:26.8770000-07:00|10FF0001|Sesuga Sapisuga|125132|129071|9700|10000|||101.10|98.69|0.00|-2.81| +39|2023-10-06T21:20:26.8770000-07:00|10FF0004|Buhojaqe Zijaqe|62903|81541|1100|10000|||100.91|99.88|-0.02|0.99| +36|2023-10-06T21:20:26.8770000-07:00|6414|3| +21|2023-10-06T21:20:26.9210000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|73C20E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|5839602|40478540|10000|10000|||100.00|80.10|0.00|0.00|62088|81541|900|10000|||100.91|99.88|-0.02|0.99|0001A23F|0|1| +261|2023-10-06T21:20:26.4080000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:20:26.4080000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:20:26.9660000-07:00|10FF0007|Kehabiqo Febiqo|112479|129844|10000|10000|||99.84|96.33|0.00|3.13| +39|2023-10-06T21:20:27.0110000-07:00|10FF0006|Wowobora Gogobora|71896|81809|8800|10000|||93.94|102.82|-0.02|1.86| +22|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0007|Kehabiqo Febiqo|5140E|5B10000|1C7E0E|83C0000|200004|2F6A0000|0|0|0|0|0|0|0|0|0|0|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A240|0|8| +22|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF000A|Dukaro Nezikaro|57F0E|5B10000|1C7E0E|83C0000|4|1D520000|0|0|0|0|0|0|0|0|0|0|73752|82773|10000|10000|||100.54|98.34|0.00|-3.11|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A240|1|8| +22|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0001|Sesuga Sapisuga|5A00E|5B10000|1C7E0E|83C0000|4|1CB30000|0|0|0|0|0|0|0|0|0|0|125132|129071|9700|10000|||101.10|98.69|0.00|-2.81|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A240|2|8| +22|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0003|Gegehi Gehi|5400E|5B10000|1C7E0E|83C0000|4|1C3E0000|0|0|0|0|0|0|0|0|0|0|63285|73814|3850|10000|||100.39|99.29|0.00|-3.12|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A240|3|8| +22|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0004|Buhojaqe Zijaqe|5C70E|5B10000|1C7E0E|83C0000|4|1C870000|0|0|0|0|0|0|0|0|0|0|62903|81541|700|10000|||100.91|99.89|0.00|-3.09|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A240|4|8| +22|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0008|Kokosaze Lulusaze|5DC0E|5B10000|1C7E0E|83C0000|4|1BAA0000|0|0|0|0|0|0|0|0|0|0|80902|90216|10000|10000|||99.90|100.76|0.00|3.14|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A240|5|8| +22|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0009|Zewo Negiwo|5900E|5B10000|1C7E0E|83C0000|4|1CE20000|0|0|0|0|0|0|0|0|0|0|71010|81177|6217|10000|||102.28|103.01|0.00|-2.80|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A240|6|8| +22|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0006|Wowobora Gogobora|5EF0E|5B10000|1C7E0E|83C0000|4|1C8E0000|0|0|0|0|0|0|0|0|0|0|71078|81809|8600|10000|||93.94|102.82|-0.02|1.86|111181|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A240|7|8| +38|2023-10-06T21:20:27.0110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112479|129844|10000|10000|14||99.84|96.33|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:27.0110000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:20:27.0110000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:20:27.0110000-07:00|10FF0009|Zewo Negiwo|005A5A18|71010|81177|6217|10000|14||102.28|103.01|0.00|-2.80|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:27.0110000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0009|Zewo Negiwo|00|81177|129844| +26|2023-10-06T21:20:27.0110000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0009|Zewo Negiwo|00|81177|129844| +38|2023-10-06T21:20:27.0110000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80902|90216|10000|10000|14||99.90|100.76|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:27.0110000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +26|2023-10-06T21:20:27.0110000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T21:20:27.0110000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71896|81809|8800|10000|14||93.94|102.82|-0.02|1.86|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:27.0110000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +26|2023-10-06T21:20:27.0110000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +38|2023-10-06T21:20:27.0110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125132|129071|9700|10000|14||101.10|98.69|0.00|-2.81|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:27.0110000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +26|2023-10-06T21:20:27.0110000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +38|2023-10-06T21:20:27.0110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62903|81541|700|10000|14||100.91|99.89|0.00|-3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:27.0110000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +26|2023-10-06T21:20:27.0110000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +38|2023-10-06T21:20:27.0110000-07:00|10FF0003|Gegehi Gehi|005A5A23|63285|73814|3850|10000|14||100.39|99.29|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:27.0110000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +26|2023-10-06T21:20:27.0110000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +38|2023-10-06T21:20:27.0110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|73752|82773|10000|10000|14||100.54|98.34|0.00|-3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:27.0110000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|82773|129844| +26|2023-10-06T21:20:27.0110000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|82773|129844| +261|2023-10-06T21:20:26.6260000-07:00|Change|10FF0009||||||| +21|2023-10-06T21:20:27.0990000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|750003|2C550000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|5839602|40478540|10000|10000|||100.00|80.10|0.00|0.00|63285|73814|3850|10000|||100.39|99.29|0.00|-3.12|0001A241|0|1| +38|2023-10-06T21:20:27.0990000-07:00|10FF0003|Gegehi Gehi|005A5A23|63285|73814|3850|10000|14||100.39|99.29|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:27.0990000-07:00|7B3|Manafication|13.04|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73814|73814| +261|2023-10-06T21:20:26.6260000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:20:27.1880000-07:00|40022472|Zeromus|0001A23E|5826195||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:27.1880000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5839602|40478540|10000|10000|||100.00|80.10|0.00|0.00|71896|81809|8800|10000|||95.67|102.35|0.00|1.86|0001A242|0|1| +21|2023-10-06T21:20:27.2780000-07:00|40022D3A|Seraph|40A4|Seraphic Veil|10FF0004|Buhojaqe Zijaqe|4|14A80000|A80E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|62903|81541|700|10000|||100.91|99.92|0.00|-3.09|73956|77430|10000|10000|||99.84|100.05|0.00|-0.10|0001A243|0|1| +21|2023-10-06T21:20:27.2780000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2AB40000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|5839602|40478540|10000|10000|||100.00|80.10|0.00|0.00|125132|129071|9700|10000|||101.10|98.69|0.00|-3.08|0001A244|0|1| +38|2023-10-06T21:20:27.2780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125132|129071|9700|10000|14||101.10|98.69|0.00|-3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:27.2780000-07:00|76E|Sword Oath|27.99|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:20:27.2780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|62903|81541|700|10000|21||100.91|99.92|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:27.2780000-07:00|77D|Seraphic Veil|29.95|40022D3A|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:20:27.3220000-07:00|40022472|Zeromus|0001A23D|5825926||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:27.3660000-07:00|40022472|Zeromus|0001A23B|5799826||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:27.3660000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|134A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5825926|40478540|10000|10000|||100.00|80.10|0.00|0.00|80902|90216|10000|10000|||99.90|100.76|0.00|3.14|0001A245|0|1| +37|2023-10-06T21:20:27.5010000-07:00|40022472|Zeromus|0001A23C|5785775||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:27.5010000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|756003|6CA30000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|5799826|40478540|10000|10000|||100.00|80.10|0.00|0.00|71010|81177|6217|10000|||102.28|103.01|0.00|-3.04|0001A246|0|1| +37|2023-10-06T21:20:27.5450000-07:00|40022472|Zeromus|0001A23F|5785775|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:20:27.5450000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +21|2023-10-06T21:20:27.5450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|C0A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5799826|40478540|10000|10000|||100.00|80.10|0.00|0.00|125132|129071|9700|10000|||101.10|98.69|0.00|-3.08|0001A247|0|1| +31|2023-10-06T21:20:27.5450000-07:00|10FF0001||||| +21|2023-10-06T21:20:27.5890000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|E410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5785775|40478540|10000|10000|||100.00|80.10|0.00|0.00|73752|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A248|0|1| +21|2023-10-06T21:20:27.6350000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5785775|40478540|10000|10000|||100.00|80.10|0.00|0.00|63285|73814|3850|10000|||100.39|99.29|0.00|-3.12|0001A249|0|1| +261|2023-10-06T21:20:27.1780000-07:00|Change|40022D35||| +21|2023-10-06T21:20:27.6790000-07:00|40022D3B|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|354003|82470000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|5785775|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||87.86|107.46|0.00|2.67|0001A24A|0|1| +37|2023-10-06T21:20:27.7240000-07:00|40022472|Zeromus|0001A242|5785615||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:27.7240000-07:00|40022472|Zeromus|0001A241|5774266||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:27.7240000-07:00|4002248C|Zeromus|8B71|Roar|10FF0007|Kehabiqo Febiqo|750003|0|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|112479|129844|10000|10000|||99.84|96.33|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A24B|0|8| +22|2023-10-06T21:20:27.7240000-07:00|4002248C|Zeromus|8B71|Roar|10FF000A|Dukaro Nezikaro|750003|3D9C0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|73752|82773|10000|10000|||100.54|98.34|0.00|-3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A24B|1|8| +22|2023-10-06T21:20:27.7240000-07:00|4002248C|Zeromus|8B71|Roar|10FF0001|Sesuga Sapisuga|EC750005|0|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|125132|129071|9700|10000|||101.10|98.69|0.00|-3.08|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A24B|2|8| +22|2023-10-06T21:20:27.7240000-07:00|4002248C|Zeromus|8B71|Roar|10FF0003|Gegehi Gehi|750003|3AAE0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|63285|73814|3850|10000|||100.39|99.29|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A24B|3|8| +22|2023-10-06T21:20:27.7240000-07:00|4002248C|Zeromus|8B71|Roar|10FF0004|Buhojaqe Zijaqe|750003|21730000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|62903|81541|700|10000|||100.91|99.93|0.00|-3.09|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A24B|4|8| +22|2023-10-06T21:20:27.7240000-07:00|4002248C|Zeromus|8B71|Roar|10FF0008|Kokosaze Lulusaze|750003|37600000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|80902|90216|10000|10000|||99.96|100.72|-0.02|2.66|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A24B|5|8| +22|2023-10-06T21:20:27.7240000-07:00|4002248C|Zeromus|8B71|Roar|10FF0006|Wowobora Gogobora|750003|35770000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|71896|81809|8800|10000|||98.35|101.54|0.00|1.87|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A24B|6|8| +22|2023-10-06T21:20:27.7240000-07:00|4002248C|Zeromus|8B71|Roar|10FF0009|Zewo Negiwo|750003|36760000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|71010|81177|5817|10000|||102.28|103.01|0.00|-3.04|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A24B|7|8| +261|2023-10-06T21:20:27.1780000-07:00|Change|4002248C||||||||||||| +37|2023-10-06T21:20:27.8140000-07:00|10FF0007|Kehabiqo Febiqo|0001A240|124617|129844|10000|10000|14||99.84|96.33|0.00|3.13|1500|0|0|02|020005B1|0|41E9EF9B|||||| +37|2023-10-06T21:20:27.9020000-07:00|10FF0007|Kehabiqo Febiqo|0001A24B|124617|129844|10000|10000|1||99.84|96.33|0.00|3.13|1500|0|0|0| +37|2023-10-06T21:20:27.9470000-07:00|10FF000A|Dukaro Nezikaro|0001A240|81258|82773|10000|10000|14||100.54|98.34|0.00|-3.11|1E01|0|0|02|030005B1|0|41E8DD2D|||||| +37|2023-10-06T21:20:27.9470000-07:00|10FF000A|Dukaro Nezikaro|0001A24B|65486|82773|10000|10000|0||100.54|98.34|0.00|-3.11|1E01|0|0|01|03000000|0|0|| +38|2023-10-06T21:20:27.9480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65486|82773|10000|10000|0||100.54|98.34|0.00|-3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:27.9480000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|82773|129844| +261|2023-10-06T21:20:27.6550000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:20:27.9920000-07:00|10FF0001|Sesuga Sapisuga|0001A24B|125132|129071|9700|10000|3||101.13|98.68|0.00|-2.81|1302|0|0|0| +39|2023-10-06T21:20:27.9920000-07:00|10FF000A|Dukaro Nezikaro|66313|82773|10000|10000|||100.54|98.34|0.00|-3.11| +21|2023-10-06T21:20:27.9920000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B7C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5774266|40478540|10000|10000|||100.00|80.10|0.00|0.00|124617|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A24C|0|1| +21|2023-10-06T21:20:27.9920000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2CA10000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|124617|129844|10000|10000|||99.84|96.33|0.00|3.13|5774266|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A24D|0|1| +37|2023-10-06T21:20:28.0370000-07:00|10FF0003|Gegehi Gehi|0001A24B|48263|73814|3850|10000|0||100.39|99.29|0.00|-3.12|2303|0|0|01|02000000|0|0|| +20|2023-10-06T21:20:28.0370000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|99.66|101.12|0.00|1.89| +38|2023-10-06T21:20:28.0370000-07:00|10FF0003|Gegehi Gehi|005A5A23|48263|73814|3850|10000|0||100.39|99.29|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:28.0370000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +37|2023-10-06T21:20:28.0810000-07:00|10FF0001|Sesuga Sapisuga|0001A240|129071|129071|9700|10000|3||101.13|98.68|0.00|-2.81|1302|0|0|02|060005B1|0|41E7CABE|||||| +37|2023-10-06T21:20:28.0810000-07:00|10FF0004|Buhojaqe Zijaqe|0001A24B|54340|81541|700|10000|0||100.91|99.93|0.00|-3.09|1C04|0|0|02|04000000|0|0|||||| +37|2023-10-06T21:20:28.0810000-07:00|40022472|Zeromus|0001A247|5771184||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:28.0810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|54340|81541|700|10000|0||100.91|99.93|0.00|-3.09|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:28.0810000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +30|2023-10-06T21:20:28.0810000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:20:28.1250000-07:00|40022472|Zeromus|0001A245|5766246||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:28.1250000-07:00|10FF0008|Kokosaze Lulusaze|0001A24B|66726|90216|10000|10000|0||100.08|100.72|0.00|1.96|1F05|0|0|01|03000000|0|0|| +37|2023-10-06T21:20:28.1250000-07:00|40022472|Zeromus|0001A248|5762597||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:28.1250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|66726|90216|10000|10000|0||100.08|100.72|0.00|1.96|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:28.1250000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +37|2023-10-06T21:20:28.1690000-07:00|10FF0006|Wowobora Gogobora|0001A24B|58209|81809|8800|10000|0||99.66|101.12|0.00|1.89|1B06|0|0|02|0|0|0|||||| +37|2023-10-06T21:20:28.1690000-07:00|40022472|Zeromus|0001A249|5762553||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:28.1700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|58209|81809|8800|10000|0||99.66|101.12|0.00|1.89|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:28.1700000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +26|2023-10-06T21:20:28.1700000-07:00|A91|Undying Flame|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T21:20:28.1700000-07:00|A90|Rekindle|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|4B|81809|81809| +261|2023-10-06T21:20:27.6550000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:20:28.2150000-07:00|10FF0003|Gegehi Gehi|0001A240|55493|73814|3850|10000|0||100.39|99.29|0.00|-3.12|2303|0|0|01|0500083C|0|415D74C0|| +37|2023-10-06T21:20:28.2150000-07:00|10FF0009|Zewo Negiwo|0001A24B|57068|81177|5817|10000|0||102.28|103.01|0.00|-3.04|1807|0|0|01|02000000|0|0|| +24|2023-10-06T21:20:28.2150000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|997|66726|90216|10000|10000|||100.11|100.72|0.00|1.81|10FF0007|Kehabiqo Febiqo|0|124617|129844|10000|10000|||99.84|96.33|0.00|3.13| +38|2023-10-06T21:20:28.2150000-07:00|10FF0009|Zewo Negiwo|005A5A18|57068|81177|5817|10000|0||102.28|103.01|0.00|-3.04|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:28.2150000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0009|Zewo Negiwo|00|81177|129844| +38|2023-10-06T21:20:28.2150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|69181|90216|10000|10000|0||100.11|100.72|0.00|1.81|0|0|0||||||||||||||||||| +24|2023-10-06T21:20:28.2590000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|943|66313|82773|10000|10000|||100.54|98.34|0.00|-3.11|10FF0007|Kehabiqo Febiqo|0|124617|129844|10000|10000|||99.84|96.33|0.00|3.13| +38|2023-10-06T21:20:28.2590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|68684|82773|10000|10000|0||100.54|98.34|0.00|-3.11|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:20:28.3040000-07:00|10FF0004|Buhojaqe Zijaqe|0001A243|59628||||||100.91|99.93|0.00|-3.09| +24|2023-10-06T21:20:28.3040000-07:00|10FF0003|Gegehi Gehi|HoT|0|911|48263|73814|3850|10000|||100.39|99.29|0.00|-3.12|10FF0003|Gegehi Gehi|0|48263|73814|3850|10000|||100.39|99.29|0.00|-3.12| +38|2023-10-06T21:20:28.3040000-07:00|10FF0003|Gegehi Gehi|005A5A23|57814|73814|3850|10000|0||100.39|99.29|0.00|-3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:28.3500000-07:00|10FF0004|Buhojaqe Zijaqe|0001A240|66931|81541|700|10000|0||100.91|99.93|0.00|-3.09|1C04|0|0|01|0700083C|0|415B4BCB|| +22|2023-10-06T21:20:28.3500000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|4|1C7E0000|7E0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|69181|90216|10000|10000|||100.11|100.72|0.00|1.77|73956|77430|10000|10000|||99.84|100.05|0.00|1.66|0001A24E|0|8| +22|2023-10-06T21:20:28.3500000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|200004|2FB90000|B90E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|57814|73814|3850|10000|||100.39|99.29|0.00|-3.12|73956|77430|10000|10000|||99.84|100.05|0.00|1.66|0001A24E|1|8| +22|2023-10-06T21:20:28.3500000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|200004|2EAA0000|AA0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|58209|81809|8800|10000|||99.76|101.09|0.00|2.39|73956|77430|10000|10000|||99.84|100.05|0.00|1.66|0001A24E|2|8| +22|2023-10-06T21:20:28.3500000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1D460000|460E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|59628|81541|700|10000|||100.91|99.93|0.00|-3.09|73956|77430|10000|10000|||99.84|100.05|0.00|1.66|0001A24E|3|8| +22|2023-10-06T21:20:28.3500000-07:00|40022D3A|Seraph|40A3|Consolation|10FF000A|Dukaro Nezikaro|4|1D0F0000|F0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|68684|82773|10000|10000|||100.54|98.34|0.00|-3.11|73956|77430|10000|10000|||99.84|100.05|0.00|1.66|0001A24E|4|8| +22|2023-10-06T21:20:28.3500000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|1C910000|910E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|129071|129071|9700|10000|||101.33|98.62|0.00|-2.81|73956|77430|10000|10000|||99.84|100.05|0.00|1.66|0001A24E|5|8| +22|2023-10-06T21:20:28.3500000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|1DA80000|A80E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|124617|129844|10000|10000|||99.84|96.33|0.00|3.13|73956|77430|10000|10000|||99.84|100.05|0.00|1.66|0001A24E|6|8| +22|2023-10-06T21:20:28.3500000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0009|Zewo Negiwo|4|1D360000|360E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|57068|81177|5817|10000|||102.28|103.01|0.00|-3.04|73956|77430|10000|10000|||99.84|100.05|0.00|1.66|0001A24E|7|8| +38|2023-10-06T21:20:28.3500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124617|129844|10000|10000|5||99.84|96.33|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:28.3500000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:20:28.3500000-07:00|10FF0009|Zewo Negiwo|005A5A18|57068|81177|5817|10000|9||102.28|103.01|0.00|-3.04|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:28.3500000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:20:28.3500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|69181|90216|10000|10000|8||100.11|100.72|0.00|1.77|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:28.3500000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:20:28.3500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|58209|81809|8800|10000|14||99.76|101.09|0.00|2.39|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:28.3500000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T21:20:28.3500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|9||101.33|98.62|0.00|-2.81|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:28.3500000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T21:20:28.3500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66931|81541|700|10000|9||100.91|99.93|0.00|-3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:28.3500000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T21:20:28.3500000-07:00|10FF0003|Gegehi Gehi|005A5A23|57814|73814|3850|10000|16||100.39|99.29|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:28.3500000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:20:28.3500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|68684|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:28.3500000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +24|2023-10-06T21:20:28.3930000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9B5|59628|81541|700|10000|||100.91|99.93|0.00|-3.09|10FF0007|Kehabiqo Febiqo|0|124617|129844|10000|10000|||99.84|96.33|0.00|3.13| +38|2023-10-06T21:20:28.3930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69416|81541|700|10000|9||100.91|99.93|0.00|-3.09|0|0|0||||||||||||||||||||||||| +04|2023-10-06T21:20:27.8840000-07:00|40022D38|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||99.84|100.05|0.00|-1.97| +261|2023-10-06T21:20:28.0020000-07:00|Remove|40022D38| +37|2023-10-06T21:20:28.4830000-07:00|10FF0008|Kokosaze Lulusaze|0001A240|76263|90216|10000|10000|8||100.11|100.72|0.00|1.77|1F05|0|0|01|0500083C|0|415926EE|| +24|2023-10-06T21:20:28.4830000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|959|124617|129844|10000|10000|||99.84|96.33|0.00|3.13|40022D3A|Seraph|0|73956|77430|10000|10000|||99.84|100.05|0.00|1.66| +24|2023-10-06T21:20:28.4830000-07:00|10FF0006|Wowobora Gogobora|HoT|0|215C|58209|81809|8800|10000|||99.79|101.08|0.00|2.69|10FF0007|Kehabiqo Febiqo|0|124617|129844|10000|10000|||99.84|96.33|0.00|3.13| +38|2023-10-06T21:20:28.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127010|129844|10000|10000|5||99.84|96.33|0.00|3.13|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:20:28.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66749|81809|9350|10000|14||99.79|101.08|0.00|2.69|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:20:28.5270000-07:00|40022472|Zeromus|0001A24C|5759613||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:28.5270000-07:00|10FF0009|Zewo Negiwo|HoT|0|920|57068|81177|5817|10000|||102.28|103.01|0.00|-3.04|10FF0007|Kehabiqo Febiqo|0|124617|129844|10000|10000|||99.84|96.33|0.00|3.13| +21|2023-10-06T21:20:28.5270000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F712003|57B10000|143E|340000|4|17628000|11B|2A8000|0|0|0|0|0|0|0|0|5762553|40478540|10000|10000|||100.00|80.10|0.00|0.00|124617|129844|10000|10000|||99.84|96.33|0.00|3.13|0001A24F|0|1| +38|2023-10-06T21:20:28.5270000-07:00|10FF0009|Zewo Negiwo|005A5A18|59404|81177|5817|10000|9||102.28|103.01|0.00|-3.04|0|0|0||||||||||||||||||| +37|2023-10-06T21:20:28.5710000-07:00|40022472|Zeromus|0001A244|5748681||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:28.5710000-07:00|10FF0001|Sesuga Sapisuga|0001A244|129071|129071|10000|10000|9||101.33|98.62|0.00|-2.81|1300|0|0|0| +24|2023-10-06T21:20:28.5710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9DF|129071|129071|9700|10000|||101.33|98.62|0.00|-2.81|40022D3A|Seraph|0|73956|77430|10000|10000|||99.84|100.05|0.00|1.66| +38|2023-10-06T21:20:28.5710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||101.33|98.62|0.00|-2.81|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:28.1140000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:28.6160000-07:00|10FF0009|Zewo Negiwo|0001A240|66798|81177|5817|10000|9||102.28|103.01|0.00|-3.04|1806|0|0|01|0500083C|0|4157062A|| +21|2023-10-06T21:20:28.6600000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37754003|44CC0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|5759613|40478540|10000|10000|||100.00|80.10|0.00|0.00|57814|73814|3850|10000|||100.39|99.29|0.00|-3.12|0001A250|0|1| +38|2023-10-06T21:20:28.6600000-07:00|10FF0003|Gegehi Gehi|005A5A23|57814|73814|3850|10000|16||100.39|99.29|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:28.6600000-07:00|7B3|Manafication|11.48|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73814|73814| +21|2023-10-06T21:20:28.7050000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|716003|65650000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|5748681|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.33|98.62|0.00|-3.07|0001A251|0|1| +37|2023-10-06T21:20:28.7510000-07:00|10FF0006|Wowobora Gogobora|0001A240|74059|81809|9350|10000|14||99.84|101.06|0.00|3.13|1B07|0|0|01|0800083C|0|4154E14D|| +21|2023-10-06T21:20:28.7510000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|62160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5748681|40478540|10000|10000|||100.00|80.10|0.00|0.00|76263|90216|10000|10000|||100.11|100.72|0.00|1.87|0001A252|0|1| +22|2023-10-06T21:20:28.7510000-07:00|4002248B|Zeromus|8B72|Roar|10FF0007|Kehabiqo Febiqo|750003|263E0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|127010|129844|10000|10000|||99.84|96.33|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A253|0|8| +22|2023-10-06T21:20:28.7510000-07:00|4002248B|Zeromus|8B72|Roar|10FF000A|Dukaro Nezikaro|750003|56980000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|68684|82773|10000|10000|||100.54|98.34|0.00|-3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A253|1|8| +22|2023-10-06T21:20:28.7510000-07:00|4002248B|Zeromus|8B72|Roar|10FF0001|Sesuga Sapisuga|EC750005|7EC0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||101.33|98.62|0.00|-3.07|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A253|2|8| +22|2023-10-06T21:20:28.7510000-07:00|4002248B|Zeromus|8B72|Roar|10FF0003|Gegehi Gehi|750003|347F0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|57814|73814|3850|10000|||100.39|99.29|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A253|3|8| +22|2023-10-06T21:20:28.7510000-07:00|4002248B|Zeromus|8B72|Roar|10FF0004|Buhojaqe Zijaqe|750003|48E00000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|69416|81541|700|10000|||100.91|99.93|0.00|-3.09|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A253|4|8| +22|2023-10-06T21:20:28.7510000-07:00|4002248B|Zeromus|8B72|Roar|10FF0008|Kokosaze Lulusaze|750003|557E0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|76263|90216|10000|10000|||100.11|100.72|0.00|1.87|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A253|5|8| +22|2023-10-06T21:20:28.7510000-07:00|4002248B|Zeromus|8B72|Roar|10FF0006|Wowobora Gogobora|750003|34DF0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|66749|81809|9350|10000|||99.84|101.06|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A253|6|8| +22|2023-10-06T21:20:28.7510000-07:00|4002248B|Zeromus|8B72|Roar|10FF0009|Zewo Negiwo|750003|4B100000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A253|7|8| +261|2023-10-06T21:20:28.3090000-07:00|Change|4002248B||||||||||||| +37|2023-10-06T21:20:28.7950000-07:00|40022472|Zeromus|0001A246|5720870||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:28.7950000-07:00|10FF0007|Kehabiqo Febiqo|0001A24D|115585|129844|10000|10000|0||99.84|96.33|0.00|3.13|1500|0|0|02|02000000|0|0|||||| +38|2023-10-06T21:20:28.7950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115585|129844|10000|10000|0||99.84|96.33|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:28.7950000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +30|2023-10-06T21:20:28.7950000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +37|2023-10-06T21:20:28.9280000-07:00|10FF0007|Kehabiqo Febiqo|0001A253|105795||||||99.84|96.33|0.00|3.13| +37|2023-10-06T21:20:28.9730000-07:00|40022472|Zeromus|0001A24A|5687519||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:28.9730000-07:00|10FF000A|Dukaro Nezikaro|0001A253|46516|82773|10000|10000|0||100.54|98.34|0.00|-3.11|1E01|0|0|01|03000000|0|0|| +21|2023-10-06T21:20:28.9730000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32712003|3E740000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|5720870|40478540|10000|10000|||100.00|80.10|0.00|0.00|68684|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A254|0|1| +38|2023-10-06T21:20:28.9730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46516|82773|10000|10000|0||100.54|98.34|0.00|-3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:28.9730000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:20:29.0170000-07:00|10FF0001|Sesuga Sapisuga|0001A253|127043|129071|10000|10000|0||101.39|98.55|0.00|-2.19|1302|0|0|02|06000000|0|0|||||| +38|2023-10-06T21:20:29.0170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127043|129071|10000|10000|0||101.39|98.55|0.00|-2.19|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:29.0170000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +30|2023-10-06T21:20:29.0170000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:20:29.0620000-07:00|10FF0003|Gegehi Gehi|0001A253|44375|73814|3850|10000|0||100.39|99.29|0.00|-3.12|2303|0|0|01|02000000|0|0|| +37|2023-10-06T21:20:29.0620000-07:00|40022472|Zeromus|0001A251|5661562||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:29.0620000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|4|33280000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|0001A255|0|8| +22|2023-10-06T21:20:29.0620000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|32B80000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|76263|90216|10000|10000|||100.11|100.72|0.00|-3.14|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|0001A255|1|8| +22|2023-10-06T21:20:29.0620000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|31410000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|74059|81809|9350|10000|||99.84|101.06|0.00|3.13|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|0001A255|2|8| +22|2023-10-06T21:20:29.0620000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|30980000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|69416|81541|700|10000|||100.91|99.93|0.00|-2.97|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|0001A255|3|8| +22|2023-10-06T21:20:29.0620000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|4F600000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|57814|73814|3850|10000|||100.39|99.29|0.00|-3.12|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|0001A255|4|8| +22|2023-10-06T21:20:29.0620000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|324F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||101.39|98.55|0.00|-2.19|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|0001A255|5|8| +22|2023-10-06T21:20:29.0620000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|200004|50EB0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|46516|82773|10000|10000|||100.54|98.34|0.00|-3.11|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|0001A255|6|8| +22|2023-10-06T21:20:29.0620000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|32590000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|105795|129844|10000|10000|||99.84|96.33|0.00|3.13|66798|81177|5817|10000|||102.28|103.01|0.00|-3.04|0001A255|7|8| +38|2023-10-06T21:20:29.0620000-07:00|10FF0003|Gegehi Gehi|005A5A23|44375|73814|3850|10000|0||100.39|99.29|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:29.0620000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T21:20:29.1060000-07:00|10FF0004|Buhojaqe Zijaqe|0001A253|50760|81541|700|10000|0||100.91|99.93|0.00|-2.97|1C04|0|0|01|04000000|0|0|| +38|2023-10-06T21:20:29.1060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|50760|81541|700|10000|0||100.91|99.93|0.00|-2.97|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:29.1060000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:20:29.1510000-07:00|10FF0008|Kokosaze Lulusaze|0001A253|54377|90216|10000|10000|0||100.11|100.72|0.00|-3.14|1F05|0|0|01|03000000|0|0|| +38|2023-10-06T21:20:29.1510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54377|90216|10000|10000|0||100.11|100.72|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:29.1510000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +261|2023-10-06T21:20:28.7130000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:20:29.1940000-07:00|10FF0006|Wowobora Gogobora|0001A253|60524|81809|9350|10000|0||99.84|101.06|0.00|3.13|1B06|0|0|01|07000000|0|0|| +38|2023-10-06T21:20:29.1950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|60524|81809|9350|10000|0||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:29.1950000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:20:29.2400000-07:00|10FF0008|Kokosaze Lulusaze|0001A24E|61671||||||100.11|100.72|0.00|-3.14| +37|2023-10-06T21:20:29.2400000-07:00|10FF0009|Zewo Negiwo|0001A253|47582|81177|5817|10000|0||102.28|103.01|0.00|-3.04|1807|0|0|01|02000000|0|0|| +38|2023-10-06T21:20:29.2400000-07:00|10FF0009|Zewo Negiwo|005A5A18|47582|81177|5817|10000|0||102.28|103.01|0.00|-3.04|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:29.2400000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +261|2023-10-06T21:20:28.7130000-07:00|Remove|40022D35| +04|2023-10-06T21:20:28.7130000-07:00|40022D35|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||84.30|103.94|0.00|-0.58| +04|2023-10-06T21:20:28.7130000-07:00|40022D27|Liturgic Bell|00|5A|10FF0009|00||10349|13961|0|77042|0|10000|||96.57|99.25|0.00|1.07| +261|2023-10-06T21:20:28.7130000-07:00|Remove|40022D27| +37|2023-10-06T21:20:29.2840000-07:00|40022472|Zeromus|0001A250|5643950||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:29.3730000-07:00|10FF0003|Gegehi Gehi|0001A24E|56592||||||100.39|99.29|0.00|-3.12| +37|2023-10-06T21:20:29.3730000-07:00|40022472|Zeromus|0001A254|5627962||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:29.4170000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61671|90216|10000|10000|||100.11|100.72|0.00|-3.14|61671|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A256|0|1| +38|2023-10-06T21:20:29.4170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61671|90216|10000|10000|0||100.11|100.72|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:29.4170000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:20:29.5060000-07:00|10FF0006|Wowobora Gogobora|0001A24E|72470||||||99.84|101.06|0.00|3.13| +39|2023-10-06T21:20:29.5500000-07:00|10FF0003|Gegehi Gehi|57330|73814|4050|10000|||100.38|99.29|-0.02|-3.10| +261|2023-10-06T21:20:29.0650000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:20:29.6400000-07:00|10FF0004|Buhojaqe Zijaqe|0001A24E|58254||||||100.88|99.55|0.00|2.88| +37|2023-10-06T21:20:29.6400000-07:00|10FF0009|Zewo Negiwo|0001A255|60678||||||102.28|103.01|0.00|-3.04| +39|2023-10-06T21:20:29.6400000-07:00|10FF0009|Zewo Negiwo|61489|81177|6038|10000|||102.28|103.01|0.00|-3.04| +261|2023-10-06T21:20:29.1640000-07:00|Change|10FF0009||| +261|2023-10-06T21:20:29.1640000-07:00|Change|10FF0009||| +39|2023-10-06T21:20:29.7290000-07:00|10FF0008|Kokosaze Lulusaze|62573|90216|10000|10000|||100.11|100.72|0.00|-3.14| +37|2023-10-06T21:20:29.7740000-07:00|10FF000A|Dukaro Nezikaro|0001A24E|53955||||||100.54|98.34|0.00|-3.11| +37|2023-10-06T21:20:29.7740000-07:00|10FF0008|Kokosaze Lulusaze|0001A255|75557||||||100.11|100.72|0.00|-3.14| +24|2023-10-06T21:20:29.7740000-07:00|40022472|Zeromus|DoT|0|264B|5627962|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|58254|81541|700|10000|||100.90|99.49|0.00|2.88| +21|2023-10-06T21:20:29.7740000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2BFB0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|5627962|40478540|10000|10000|||100.00|80.10|0.00|0.00|127043|129071|10000|10000|||101.41|98.52|0.00|-3.07|0001A257|0|1| +21|2023-10-06T21:20:29.7740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|E080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5627962|40478540|10000|10000|||100.00|80.10|0.00|0.00|46516|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A258|0|1| +38|2023-10-06T21:20:29.7740000-07:00|40022472|Zeromus|005A5A00|5618159|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:20:29.7740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127043|129071|10000|10000|0||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:29.7740000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:20:29.8190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5618159|40478540|10000|10000|||100.00|80.10|0.00|0.00|127043|129071|10000|10000|||101.41|98.52|0.00|-3.07|0001A259|0|1| +21|2023-10-06T21:20:29.8190000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53955|82773|10000|10000|||100.54|98.34|0.00|-3.11|53955|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A25A|0|1| +38|2023-10-06T21:20:29.8190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53955|82773|10000|10000|0||100.54|98.34|0.00|-3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:29.8190000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +31|2023-10-06T21:20:29.8190000-07:00|10FF0001||||| +39|2023-10-06T21:20:29.8630000-07:00|10FF0001|Sesuga Sapisuga|128333|129071|10000|10000|||101.41|98.52|0.00|-3.07| +36|2023-10-06T21:20:29.8630000-07:00|64F0|3| +37|2023-10-06T21:20:29.9080000-07:00|10FF0001|Sesuga Sapisuga|0001A24E|129071||||||101.41|98.52|0.00|-3.07| +37|2023-10-06T21:20:29.9080000-07:00|10FF0006|Wowobora Gogobora|0001A255|81809||||||99.84|101.06|0.00|3.13| +37|2023-10-06T21:20:29.9080000-07:00|40022472|Zeromus|0001A252|5593049||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:29.9080000-07:00|10FF0004|Buhojaqe Zijaqe|59069|81541|900|10000|||100.92|99.43|0.00|2.89| +261|2023-10-06T21:20:29.3480000-07:00|Change|10FF0004||||||||||| +20|2023-10-06T21:20:29.9520000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.94|99.37|0.00|2.89| +39|2023-10-06T21:20:29.9970000-07:00|10FF0007|Kehabiqo Febiqo|107093|129844|10000|10000|||99.66|95.90|0.00|3.14| +39|2023-10-06T21:20:29.9970000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9550|10000|||99.84|101.06|0.00|3.13| +37|2023-10-06T21:20:30.0420000-07:00|40022472|Zeromus|0001A24F|5570600||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:30.0420000-07:00|10FF0007|Kehabiqo Febiqo|0001A24F|113079||||||99.55|95.49|0.00|-3.14| +37|2023-10-06T21:20:30.0420000-07:00|10FF0007|Kehabiqo Febiqo|0001A24E|120671||||||99.55|95.49|0.00|-3.14| +37|2023-10-06T21:20:30.0420000-07:00|10FF0004|Buhojaqe Zijaqe|0001A255|71509||||||100.96|99.32|0.00|3.00| +21|2023-10-06T21:20:30.0420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|99D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5593049|40478540|10000|10000|||100.00|80.10|0.00|0.00|75557|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A25B|0|1| +37|2023-10-06T21:20:30.1760000-07:00|10FF0009|Zewo Negiwo|0001A24E|68967||||||102.28|103.01|0.00|-3.04| +37|2023-10-06T21:20:30.1760000-07:00|10FF0003|Gegehi Gehi|0001A255|73814||||||99.70|98.68|0.00|-2.99| +38|2023-10-06T21:20:30.1760000-07:00|40022D3A|Seraph|005A5A00|73956|77430|10000|10000|0||99.84|100.05|0.00|1.80|0|0|0|||||||||| +30|2023-10-06T21:20:30.1760000-07:00|7AD|Summon Order III|0.00|40022D3A|Seraph|40022D3A|Seraph|01|77430|77430| +261|2023-10-06T21:20:29.6370000-07:00|Change|10FF0006||||| +21|2023-10-06T21:20:30.2650000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1A6A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5570600|40478540|10000|10000|||100.00|80.10|0.00|0.00|75557|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A25C|0|1| +37|2023-10-06T21:20:30.3090000-07:00|40022472|Zeromus|0001A258|5567008||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:30.3090000-07:00|10FF000A|Dukaro Nezikaro|0001A258|53955|82773|10000|10000|0||100.54|98.34|0.00|-3.11|1E00|0|0|01|030001F1|0|C1700000|| +21|2023-10-06T21:20:30.3090000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40022472|Zeromus|750003|5D0E0000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|5570600|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4050|10000|||99.53|98.49|-0.01|-2.99|0001A25D|0|1| +38|2023-10-06T21:20:30.3090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3650|10000|0||99.53|98.49|-0.01|-2.99|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:30.3090000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:20:30.3090000-07:00|7B3|Manafication|9.83|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73814|73814| +261|2023-10-06T21:20:29.7530000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:20:30.3540000-07:00|40022472|Zeromus|0001A259|5564041||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:30.4430000-07:00|10FF000A|Dukaro Nezikaro|0001A255|74670|82773|10000|10000|0||100.54|98.34|0.00|-3.11|1E06|0|0|01|030001F1|0|C1700000|| +21|2023-10-06T21:20:30.4430000-07:00|40022D3A|Seraph|40A4|Seraphic Veil|10FF0007|Kehabiqo Febiqo|4|15740000|740E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|120671|129844|10000|10000|||99.53|95.41|0.00|-3.14|73956|77430|10000|10000|||99.84|100.05|0.00|2.11|0001A25E|0|1| +38|2023-10-06T21:20:30.4430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120671|129844|10000|10000|4||99.53|95.41|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:30.4430000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +261|2023-10-06T21:20:29.8660000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:20:30.4870000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|712003|49960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5567008|40478540|10000|10000|||100.00|80.10|0.00|0.00|120671|129844|10000|10000|||99.53|95.41|0.00|-3.14|0001A25F|0|1| +21|2023-10-06T21:20:30.4870000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|354003|5CF60000|10280F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|5567008|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9550|10000|||99.84|101.06|0.00|3.13|0001A260|0|1| +38|2023-10-06T21:20:30.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9550|10000|0||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:30.4870000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:20:30.5750000-07:00|10FF0007|Kehabiqo Febiqo|0001A255|129844||||||99.53|95.41|0.00|3.11| +39|2023-10-06T21:20:30.7540000-07:00|40022D3A|Seraph|73956|77430|10000|10000|||99.84|100.05|0.00|2.81| +37|2023-10-06T21:20:30.8000000-07:00|40022472|Zeromus|0001A25B|5561580||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:30.8000000-07:00|10FF000A|Dukaro Nezikaro|0001A25A|74670|82773|10000|10000|0||100.54|98.34|0.00|-3.11|1E00|0|0|01|030001F1|0|41700000|| +38|2023-10-06T21:20:30.8000000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74670|82773|10000|10000|0||100.54|98.34|0.00|-3.11|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:20:30.8890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|327C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5561580|40478540|10000|10000|||100.00|80.10|0.00|0.00|71509|81541|900|10000|||100.97|99.29|0.00|-3.09|0001A261|0|1| +21|2023-10-06T21:20:30.9320000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|10B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5561580|40478540|10000|10000|||100.00|80.10|0.00|0.00|71509|81541|900|10000|||100.97|99.29|0.00|-3.09|0001A262|0|1| +39|2023-10-06T21:20:30.9770000-07:00|10FF000A|Dukaro Nezikaro|75497|82773|10000|10000|||100.54|98.34|0.00|-3.11| +21|2023-10-06T21:20:31.0210000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|21F50000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11|5561580|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A263|0|1| +37|2023-10-06T21:20:31.0660000-07:00|40022472|Zeromus|0001A25C|5554818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:31.0660000-07:00|40022472|Zeromus|0001A257|5543559||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:31.0660000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|720003|448E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5561580|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3650|10000|||99.47|98.44|0.00|3.11|0001A264|0|1| +37|2023-10-06T21:20:31.1110000-07:00|40022472|Zeromus|0001A25F|5524721||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:31.1120000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16EE0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|5561580|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.53|95.41|0.00|3.11|0001A265|0|1| +21|2023-10-06T21:20:31.1120000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5561580|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3650|10000|||99.47|98.44|0.00|3.11|0001A266|0|1| +24|2023-10-06T21:20:31.2000000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1040|75557|90216|10000|10000|||100.11|100.72|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11| +21|2023-10-06T21:20:31.2000000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44714003|3C880000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|5524721|40478540|10000|10000|||100.00|80.10|0.00|0.00|75497|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A267|0|1| +38|2023-10-06T21:20:31.2000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79717|90216|10000|10000|0||100.11|100.72|0.00|-3.14|0|0|0||||||||||||||||||| +24|2023-10-06T21:20:31.2460000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9C0|75497|82773|10000|10000|||100.54|98.34|0.00|-3.11|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11| +38|2023-10-06T21:20:31.2460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77993|82773|10000|10000|0||100.54|98.34|0.00|-3.11|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:30.7260000-07:00|Change|10FF0006||||||||||||||| +24|2023-10-06T21:20:31.2890000-07:00|10FF0003|Gegehi Gehi|HoT|0|944|73814|73814|3650|10000|||99.47|98.44|0.00|3.11|10FF0003|Gegehi Gehi|0|73814|73814|3650|10000|||99.47|98.44|0.00|3.11| +26|2023-10-06T21:20:31.2890000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:20:31.2890000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|726003|451D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5524721|40478540|10000|10000|||100.00|80.10|0.00|0.00|79717|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A268|0|1| +38|2023-10-06T21:20:31.2890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3650|10000|0||99.47|98.44|0.00|3.11|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:20:31.3780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9DA|71509|81541|500|10000|||100.97|99.29|0.00|-3.09|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11| +21|2023-10-06T21:20:31.3780000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|F540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5524721|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.53|95.41|0.00|3.11|0001A269|0|1| +38|2023-10-06T21:20:31.3780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74031|81541|500|10000|0||100.97|99.29|0.00|-3.09|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:20:31.4670000-07:00|10FF0007|Kehabiqo Febiqo|0001A25E|129844|129844|10000|10000|4||99.53|95.41|0.00|3.11|1500|0|0|01|0200077D|0|41E7CCCB|| +37|2023-10-06T21:20:31.4670000-07:00|40022472|Zeromus|0001A262|5524454||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:31.4670000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9A4|129844|129844|10000|10000|||99.53|95.41|0.00|3.11|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11| +24|2023-10-06T21:20:31.4670000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1D91|81809|81809|9550|10000|||99.84|101.06|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11| +21|2023-10-06T21:20:31.4670000-07:00|10FF0009|Zewo Negiwo|4097|Afflatus Misery|40022472|Zeromus|750003|DDDE0000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|5524721|40478540|10000|10000|||100.00|80.10|0.00|0.00|68967|81177|6038|10000|||100.79|102.48|0.00|-2.89|0001A26A|0|1| +38|2023-10-06T21:20:31.4670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||99.53|95.41|0.00|3.11|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:31.4670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:30.9670000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T21:20:31.5130000-07:00|40022472|Zeromus|DoT|A92|511|5524454|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||99.84|101.06|0.00|3.13| +37|2023-10-06T21:20:31.5130000-07:00|40022472|Zeromus|0001A260|5499359||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:31.5130000-07:00|10FF0006|Wowobora Gogobora|0001A260|81809|81809|10000|10000|0||99.84|101.06|0.00|3.13|1B00|0|0|01|06000A92|0|41700000|| +26|2023-10-06T21:20:31.5130000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:20:31.5130000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|356003|4D470000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|5524454|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.84|101.06|0.00|3.13|0001A26B|0|1| +38|2023-10-06T21:20:31.5130000-07:00|40022472|Zeromus|005A5A00|5499359|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +24|2023-10-06T21:20:31.5570000-07:00|10FF0009|Zewo Negiwo|HoT|0|1003|68967|81177|6038|10000|||100.76|102.46|0.00|-3.11|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11| +24|2023-10-06T21:20:31.5570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|F01|129071|129071|10000|10000|||101.41|98.52|0.00|-3.07|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11| +38|2023-10-06T21:20:31.5570000-07:00|10FF0009|Zewo Negiwo|005A5A18|73066|81177|6038|10000|0||100.76|102.46|0.00|-3.11|0|0|0||||||||||||||||||| +38|2023-10-06T21:20:31.5570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:20:31.6470000-07:00|40022472|Zeromus|0001A265|5493489||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:31.6470000-07:00|40022472|Zeromus|0001A266|5493452||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:31.6470000-07:00|10FF0003|Gegehi Gehi|0001A266|73814|73814|3650|10000|0||99.47|98.44|0.00|3.11|2300|0|0|01|020004D3|0|C1F00000|| +261|2023-10-06T21:20:31.1810000-07:00|Add|40022D49||||||||||||||||||||||||| +37|2023-10-06T21:20:31.6910000-07:00|40022472|Zeromus|0001A261|5480528||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:31.6910000-07:00|40022D3B|Emerald Garuda|005A5A00|0|77698|0|10000|0||87.86|107.46|0.00|2.67|0|0|0||||||| +30|2023-10-06T21:20:31.6910000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022D3B|Emerald Garuda|00|77698|73814| +261|2023-10-06T21:20:31.1810000-07:00|Change|40022D3B||||| +38|2023-10-06T21:20:31.7350000-07:00|40022D4B||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:20:31.7350000-07:00|40022472|Zeromus|0001A25D|5456706||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:31.7350000-07:00|10FF0003|Gegehi Gehi|0001A25D|73814|73814|3650|10000|0||99.47|98.44|0.00|3.11|2300|0|0|01|020004D3|0|41F00000|| +37|2023-10-06T21:20:31.7350000-07:00|40022472|Zeromus|0001A267|5441210||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:31.7350000-07:00|4002248A|Zeromus|8B73|Primal Roar|10FF0007|Kehabiqo Febiqo|750003|7A6E0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.53|95.41|0.00|3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A26C|0|8| +22|2023-10-06T21:20:31.7350000-07:00|4002248A|Zeromus|8B73|Primal Roar|10FF000A|Dukaro Nezikaro|750003|C3930000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|77993|82773|10000|10000|||100.54|98.34|0.00|-3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A26C|1|8| +22|2023-10-06T21:20:31.7350000-07:00|4002248A|Zeromus|8B73|Primal Roar|10FF0003|Gegehi Gehi|750003|B45A0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3650|10000|||99.47|98.44|0.00|3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A26C|2|8| +22|2023-10-06T21:20:31.7350000-07:00|4002248A|Zeromus|8B73|Primal Roar|10FF0001|Sesuga Sapisuga|EC750005|5F2D0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||101.41|98.52|0.00|-3.07|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A26C|3|8| +22|2023-10-06T21:20:31.7350000-07:00|4002248A|Zeromus|8B73|Primal Roar|10FF0004|Buhojaqe Zijaqe|750003|B44A0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|74031|81541|500|10000|||100.98|99.29|0.00|2.83|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A26C|4|8| +22|2023-10-06T21:20:31.7350000-07:00|4002248A|Zeromus|8B73|Primal Roar|10FF0008|Kokosaze Lulusaze|750003|CB800000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|79717|90216|10000|10000|||100.11|100.72|0.00|-3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A26C|5|8| +22|2023-10-06T21:20:31.7350000-07:00|4002248A|Zeromus|8B73|Primal Roar|10FF0006|Wowobora Gogobora|750003|AFD90000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||99.84|101.06|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A26C|6|8| +22|2023-10-06T21:20:31.7350000-07:00|4002248A|Zeromus|8B73|Primal Roar|10FF0009|Zewo Negiwo|750003|B3B90000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|73066|81177|6038|10000|||100.76|102.46|0.00|-3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A26C|7|8| +38|2023-10-06T21:20:31.7350000-07:00|40022D4B||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:20:31.7350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3650|10000|0||99.47|98.44|0.00|3.11|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:31.1810000-07:00|Change|4002248A||||||||||||| +37|2023-10-06T21:20:31.8240000-07:00|10FF0007|Kehabiqo Febiqo|0001A263|121151|129844|10000|10000|0||99.53|95.41|0.00|3.11|1500|0|0|01|02000000|0|0|| +38|2023-10-06T21:20:31.8240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121151|129844|10000|10000|0||99.53|95.41|0.00|3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:31.8240000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +21|2023-10-06T21:20:31.8690000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|726003|2A3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5441210|40478540|10000|10000|||100.00|80.10|0.00|0.00|79717|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A26D|0|1| +37|2023-10-06T21:20:31.9130000-07:00|40022472|Zeromus|0001A269|5437286||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:31.9130000-07:00|40022472|Zeromus|0001A268|5419593||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:31.9130000-07:00|10FF0007|Kehabiqo Febiqo|0001A26C|89809||||||99.53|95.41|0.00|3.11| +37|2023-10-06T21:20:31.9570000-07:00|10FF000A|Dukaro Nezikaro|0001A26C|27926||||||100.54|98.34|0.00|-3.11| +21|2023-10-06T21:20:31.9570000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5441210|40478540|10000|10000|||100.00|80.10|0.00|0.00|77993|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A26E|0|1| +37|2023-10-06T21:20:32.0020000-07:00|10FF0003|Gegehi Gehi|0001A26C|27644||||||99.47|98.44|0.00|3.11| +37|2023-10-06T21:20:32.0470000-07:00|40022472|Zeromus|0001A26A|5362795||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:32.0470000-07:00|10FF0001|Sesuga Sapisuga|0001A26C|104706||||||101.41|98.52|0.00|-3.07| +37|2023-10-06T21:20:32.0910000-07:00|10FF0004|Buhojaqe Zijaqe|0001A26C|27877||||||101.00|99.29|0.00|1.90| +21|2023-10-06T21:20:32.0910000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5419593|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.41|98.52|0.00|-3.07|0001A26F|0|1| +31|2023-10-06T21:20:32.0910000-07:00|10FF0001||||| +261|2023-10-06T21:20:31.5700000-07:00|Add|40022D4B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:20:31.5700000-07:00|40022D4B|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.85|99.31|0.00|-0.01| +261|2023-10-06T21:20:31.6800000-07:00|Change|40022D4B||| +37|2023-10-06T21:20:32.1360000-07:00|10FF0008|Kokosaze Lulusaze|0001A26C|27621||||||100.11|100.72|0.00|-3.14| +37|2023-10-06T21:20:32.1360000-07:00|40022472|Zeromus|0001A26B|5343012||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:32.1800000-07:00|10FF0006|Wowobora Gogobora|0001A26C|36792||||||99.84|101.06|0.00|3.13| +261|2023-10-06T21:20:31.6800000-07:00|Change|10FF0006||| +37|2023-10-06T21:20:32.2250000-07:00|10FF0009|Zewo Negiwo|0001A26C|27057||||||100.76|102.46|0.00|-3.11| +37|2023-10-06T21:20:32.2250000-07:00|40022472|Zeromus|0001A264|5325462||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:32.2250000-07:00|40022D3A|Seraph|005A5A00|73956|77430|10000|10000|0||99.94|100.16|0.00|3.03|0|0|0|||||||||| +26|2023-10-06T21:20:32.2250000-07:00|7AD|Summon Order III|30.00|40022D3A|Seraph|40022D3A|Seraph|01|77430|77430| +21|2023-10-06T21:20:32.2250000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27877|81541|500|10000|||101.26|99.26|0.00|1.79|27877|81541|500|10000|||101.26|99.26|0.00|1.79|0001A270|0|1| +21|2023-10-06T21:20:32.2700000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|756003|5ED60000|4|26FB8000|0|0|0|0|0|0|0|0|0|0|0|0|5343012|40478540|10000|10000|||100.00|80.10|0.00|0.00|104706|129071|10000|10000|||101.41|98.52|0.00|-3.07|0001A271|0|1| +38|2023-10-06T21:20:32.2700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104706|129071|9000|10000|0||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:32.2700000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:20:31.7950000-07:00|Change|10FF0001||||||||| +22|2023-10-06T21:20:32.3150000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|4|1CF40000|F40E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|27621|90216|10000|10000|||100.11|100.72|0.00|-3.14|73956|77430|10000|10000|||99.94|100.16|0.00|3.03|0001A272|0|8| +22|2023-10-06T21:20:32.3150000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|1DAA0000|AA0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|36792|81809|9700|10000|||99.84|101.06|0.00|3.13|73956|77430|10000|10000|||99.94|100.16|0.00|3.03|0001A272|1|8| +22|2023-10-06T21:20:32.3150000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1CFE0000|FE0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|27877|81541|500|10000|||101.26|99.26|0.00|1.79|73956|77430|10000|10000|||99.94|100.16|0.00|3.03|0001A272|2|8| +22|2023-10-06T21:20:32.3150000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0009|Zewo Negiwo|200004|303A0000|3A0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|73066|81177|6038|10000|||100.76|102.46|0.00|-3.11|73956|77430|10000|10000|||99.94|100.16|0.00|3.03|0001A272|3|8| +22|2023-10-06T21:20:32.3150000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|4|1CE60000|E60E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|27644|73814|3650|10000|||99.47|98.44|0.00|3.11|73956|77430|10000|10000|||99.94|100.16|0.00|3.03|0001A272|4|8| +22|2023-10-06T21:20:32.3150000-07:00|40022D3A|Seraph|40A3|Consolation|10FF000A|Dukaro Nezikaro|4|1C6F0000|6F0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|27926|82773|10000|10000|||100.54|98.34|0.00|-3.11|73956|77430|10000|10000|||99.94|100.16|0.00|3.03|0001A272|5|8| +22|2023-10-06T21:20:32.3150000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|1CAE0000|AE0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|104706|129071|10000|10000|||101.41|98.52|0.00|-3.07|73956|77430|10000|10000|||99.94|100.16|0.00|3.03|0001A272|6|8| +22|2023-10-06T21:20:32.3150000-07:00|40022D3A|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|1C510000|510E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|89809|129844|10000|10000|||99.53|95.41|0.00|3.11|73956|77430|10000|10000|||99.94|100.16|0.00|3.03|0001A272|7|8| +38|2023-10-06T21:20:32.3150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89809|129844|10000|10000|5||99.53|95.41|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:32.3150000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:20:32.3150000-07:00|10FF0009|Zewo Negiwo|005A5A18|27057|81177|6038|10000|15||100.76|102.46|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:32.3150000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:20:32.3150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|27621|90216|10000|10000|8||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:32.3150000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:20:32.3150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|36792|81809|9700|10000|9||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:32.3150000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T21:20:32.3150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104706|129071|9000|10000|5||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:32.3150000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T21:20:32.3150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|27877|81541|500|10000|9||101.26|99.26|0.00|1.79|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:32.3150000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T21:20:32.3150000-07:00|10FF0003|Gegehi Gehi|005A5A23|27644|73814|3650|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:32.3150000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:20:32.3150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|27926|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:32.3150000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:20:32.4930000-07:00|40022472|Zeromus|0001A26D|5314647||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:32.4930000-07:00|40022472|Zeromus|0001A26E|5312355||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:32.5380000-07:00|10FF0003|Gegehi Gehi|28382|73814|3850|10000|||99.47|98.44|0.00|3.11| +21|2023-10-06T21:20:32.5380000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40022472|Zeromus|716003|24270000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|5325462|40478540|10000|10000|||100.00|80.10|0.00|0.00|27926|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A273|0|1| +38|2023-10-06T21:20:32.5380000-07:00|40022472|Zeromus|005A5A00|5312355|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:32.5380000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +261|2023-10-06T21:20:32.0300000-07:00|Change|10FF0003||| +37|2023-10-06T21:20:32.6270000-07:00|40022472|Zeromus|0001A26F|5309431|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|027E|0|C1A00000|| +39|2023-10-06T21:20:32.6270000-07:00|10FF0009|Zewo Negiwo|27868|81177|6259|10000|||100.76|102.46|0.00|-3.11| +261|2023-10-06T21:20:32.1520000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:20:32.7160000-07:00|10FF0008|Kokosaze Lulusaze|28523|90216|10000|10000|||100.11|100.72|0.00|-3.14| +21|2023-10-06T21:20:32.7160000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|BC30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5309431|40478540|10000|10000|||100.00|80.10|0.00|0.00|27621|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A274|0|1| +21|2023-10-06T21:20:32.7160000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|750003|73290000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|5309431|40478540|10000|10000|||100.00|80.10|0.00|0.00|28382|73814|3850|10000|||99.47|98.44|0.00|3.11|0001A275|0|1| +38|2023-10-06T21:20:32.7160000-07:00|10FF0003|Gegehi Gehi|005A5A23|28382|73814|3450|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:32.7160000-07:00|7B3|Manafication|7.42|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +261|2023-10-06T21:20:32.2450000-07:00|Change|40022D4B||| +24|2023-10-06T21:20:32.7610000-07:00|40022472|Zeromus|DoT|0|1872|5309431|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|27877|81541|500|10000|||101.91|99.20|0.00|1.73| +26|2023-10-06T21:20:32.7610000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:20:32.7610000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|3BEE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5309431|40478540|10000|10000|||100.00|80.10|0.00|0.00|27621|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A276|0|1| +34|2023-10-06T21:20:32.7610000-07:00|40022D4B|Carbuncle|40022D4B|Carbuncle|01| +38|2023-10-06T21:20:32.7610000-07:00|40022472|Zeromus|005A5A00|5303173|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +21|2023-10-06T21:20:32.8050000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5303173|40478540|10000|10000|||100.00|80.10|0.00|0.00|36792|81809|9700|10000|||99.84|101.06|0.00|3.13|0001A277|0|1| +36|2023-10-06T21:20:32.8500000-07:00|65CC|3| +39|2023-10-06T21:20:32.8950000-07:00|10FF0001|Sesuga Sapisuga|105996|129071|9200|10000|||101.41|98.52|0.00|-3.07| +39|2023-10-06T21:20:32.8950000-07:00|10FF0004|Buhojaqe Zijaqe|28692|81541|700|10000|||101.91|99.20|0.00|1.73| +20|2023-10-06T21:20:32.8950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.91|99.20|0.00|1.73| +261|2023-10-06T21:20:32.3430000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:20:32.9840000-07:00|10FF0007|Kehabiqo Febiqo|91107|129844|10000|10000|||99.53|95.41|0.00|3.11| +37|2023-10-06T21:20:33.0290000-07:00|40022472|Zeromus|0001A271|5278895|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|027E|0|C1A00000|| +37|2023-10-06T21:20:33.0290000-07:00|10FF0001|Sesuga Sapisuga|0001A271|115975||||||101.41|98.52|0.00|-3.07| +39|2023-10-06T21:20:33.0290000-07:00|10FF0006|Wowobora Gogobora|37610|81809|9900|10000|||99.84|101.06|0.00|3.13| +21|2023-10-06T21:20:33.0290000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|312E0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|5303173|40478540|10000|10000|||100.00|80.10|0.00|0.00|36792|81809|9700|10000|||99.84|101.06|0.00|3.13|0001A278|0|1| +37|2023-10-06T21:20:33.0740000-07:00|40022472|Zeromus|0001A273|5269640|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|027E|0|41A00000|| +38|2023-10-06T21:20:33.0740000-07:00|40022472|Zeromus|005A5A00|5269640|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T21:20:32.5300000-07:00|Change|10FF0003||| +261|2023-10-06T21:20:32.6420000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:20:33.2080000-07:00|10FF0008|Kokosaze Lulusaze|0001A272|35935|90216|10000|10000|8||100.11|100.72|0.00|-3.14|1F00|0|0|01|0600077D|0|41E8DB20|| +261|2023-10-06T21:20:32.7530000-07:00|Change|10FF0006||| +261|2023-10-06T21:20:32.7530000-07:00|Change|10FF0001||| +37|2023-10-06T21:20:33.3430000-07:00|10FF0006|Wowobora Gogobora|0001A272|45204|81809|9600|10000|9||99.84|101.06|0.00|3.13|1B01|0|0|01|0700077D|0|41E7C6A5|| +37|2023-10-06T21:20:33.3430000-07:00|40022472|Zeromus|0001A277|5269472||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:33.3430000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19714003|3C220000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|5269640|40478540|10000|10000|||100.00|80.10|0.00|0.00|27926|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A279|0|1| +38|2023-10-06T21:20:33.3430000-07:00|40022472|Zeromus|005A5A00|5269472|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:33.3430000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:20:33.3430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|27926|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:33.3430000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:20:33.3870000-07:00|40022472|Zeromus|0001A276|5254130|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|06000CB6|0|C1700000|| +21|2023-10-06T21:20:33.3870000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1AEE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5269640|40478540|10000|10000|||100.00|80.10|0.00|0.00|35935|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A27A|0|1| +37|2023-10-06T21:20:33.4750000-07:00|10FF0004|Buhojaqe Zijaqe|0001A272|36114|81541|700|10000|9||101.91|99.20|0.00|-3.05|1C02|0|0|01|0400077D|0|41E6B642|| +37|2023-10-06T21:20:33.4750000-07:00|40022472|Zeromus|0001A274|5251119|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|06000CB6|0|C1700000|| +21|2023-10-06T21:20:33.5650000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|26720000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|5251119|40478540|10000|10000|||100.00|80.10|0.00|0.00|91107|129844|10000|10000|||99.53|95.41|0.00|3.11|0001A27B|0|1| +37|2023-10-06T21:20:33.6090000-07:00|10FF0009|Zewo Negiwo|0001A272|40214|81177|6259|10000|15||100.76|102.46|0.00|-3.11|1803|0|0|01|0200077D|0|41E5A3D3|| +37|2023-10-06T21:20:33.6550000-07:00|40022472|Zeromus|0001A278|5238529|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|06000CB6|0|C1700000|| +38|2023-10-06T21:20:33.6550000-07:00|40022472|Zeromus|005A5A00|5238529|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:33.6550000-07:00|4AB|Feint|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +37|2023-10-06T21:20:33.7440000-07:00|10FF0003|Gegehi Gehi|0001A272|35780|73814|3450|10000|10||99.47|98.44|0.00|3.11|2304|0|0|01|0700077D|0|41E49164|| +39|2023-10-06T21:20:33.7440000-07:00|40022D3A|Seraph|73956|77430|10000|10000|||100.21|100.42|0.00|-3.13| +21|2023-10-06T21:20:33.8330000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|5C790000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5238529|40478540|10000|10000|||100.00|80.10|0.00|0.00|36114|81541|700|10000|||101.91|99.20|0.00|-3.04|0001A27C|0|1| +37|2023-10-06T21:20:33.8780000-07:00|10FF000A|Dukaro Nezikaro|0001A272|35205|82773|10000|10000|8||100.54|98.34|0.00|-3.11|1E05|0|0|01|0800077D|0|41E37EF5|| +20|2023-10-06T21:20:33.8780000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.76|102.46|0.00|-3.11| +261|2023-10-06T21:20:33.3870000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:20:34.0110000-07:00|10FF0001|Sesuga Sapisuga|0001A272|123317|129071|9200|10000|5||101.41|98.52|0.00|-3.07|1306|0|0|01|0500077D|0|41E26C86|| +39|2023-10-06T21:20:34.0110000-07:00|10FF000A|Dukaro Nezikaro|36032|82773|10000|10000|||100.54|98.34|0.00|-3.11| +21|2023-10-06T21:20:34.0560000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1E9F0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|91107|129844|10000|10000|||99.53|95.41|0.00|3.11|5238529|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A27D|0|1| +21|2023-10-06T21:20:34.0560000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36032|82773|10000|10000|||100.54|98.34|0.00|-3.11|36032|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A27E|0|1| +38|2023-10-06T21:20:34.0560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|36032|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:34.0560000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +37|2023-10-06T21:20:34.1450000-07:00|10FF0007|Kehabiqo Febiqo|0001A272|98356|129844|10000|10000|5||99.53|95.41|0.00|3.11|1507|0|0|01|0200077D|0|41E15A17|| +261|2023-10-06T21:20:33.7090000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:20:34.1450000-07:00|40022472|Zeromus|0001A279|5223135|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|06000CB6|0|41700000|| +21|2023-10-06T21:20:34.1450000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|C300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5238529|40478540|10000|10000|||100.00|80.10|0.00|0.00|36032|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A27F|0|1| +38|2023-10-06T21:20:34.1450000-07:00|40022D3A|Seraph|005A5A00|73956|77430|10000|10000|0||100.21|100.42|0.00|-3.06|0|0|0|||||||||| +30|2023-10-06T21:20:34.1450000-07:00|7AD|Summon Order III|0.00|40022D3A|Seraph|40022D3A|Seraph|01|77430|77430| +38|2023-10-06T21:20:34.1450000-07:00|40022472|Zeromus|005A5A00|5223135|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:34.1900000-07:00|40022472|Zeromus|0001A27B|5213293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:34.1900000-07:00|40022472|Zeromus|0001A27A|5206399||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:34.2350000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|907|35935|90216|10000|10000|||100.11|100.72|0.00|-3.14|40022D3A|Seraph|0|73956|77430|10000|10000|||100.21|100.42|0.00|-3.06| +26|2023-10-06T21:20:34.2350000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:20:34.2350000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2FE80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5238529|40478540|10000|10000|||100.00|80.10|0.00|0.00|35935|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A280|0|1| +38|2023-10-06T21:20:34.2350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|38246|90216|10000|10000|8||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:20:34.2790000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1006|36032|82773|10000|10000|||100.54|98.34|0.00|-3.11|40022D3A|Seraph|0|73956|77430|10000|10000|||100.21|100.42|0.00|-2.82| +38|2023-10-06T21:20:34.2790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|40134|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:34.3230000-07:00|10FF0003|Gegehi Gehi|HoT|0|995|35780|73814|3450|10000|||99.47|98.44|0.00|3.11|40022D3A|Seraph|0|73956|77430|10000|10000|||100.21|100.42|0.00|-2.82| +38|2023-10-06T21:20:34.3230000-07:00|10FF0003|Gegehi Gehi|005A5A23|38233|73814|3450|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:20:34.3680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5206399|40478540|10000|10000|||100.00|80.10|0.00|0.00|123317|129071|9200|10000|||101.41|98.52|0.00|-3.07|0001A281|0|1| +31|2023-10-06T21:20:34.3680000-07:00|10FF0001||||| +24|2023-10-06T21:20:34.4130000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F6D|36114|81541|300|10000|||101.91|99.20|0.00|-3.04|10FF0007|Kehabiqo Febiqo|0|98356|129844|10000|10000|||99.53|95.41|0.00|3.11| +26|2023-10-06T21:20:34.4130000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:20:34.4130000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|128D0000|104|6EE8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|5206399|40478540|10000|10000|||100.00|80.10|0.00|0.00|36114|81541|300|10000|||101.91|99.20|0.00|-3.04|0001A282|0|1| +38|2023-10-06T21:20:34.4130000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40063|81541|300|10000|9||101.91|99.20|0.00|-3.04|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:20:34.5010000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|91E|98356|129844|10000|10000|||99.53|95.41|0.00|3.11|10FF0007|Kehabiqo Febiqo|0|98356|129844|10000|10000|||99.53|95.41|0.00|3.11| +24|2023-10-06T21:20:34.5010000-07:00|40022472|Zeromus|DoT|A92|592|5206399|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|45204|81809|9600|10000|||99.84|101.06|0.00|3.13| +24|2023-10-06T21:20:34.5010000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1D49|45204|81809|9600|10000|||99.84|101.06|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|98356|129844|10000|10000|||99.53|95.41|0.00|3.11| +38|2023-10-06T21:20:34.5010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100690|129844|10000|10000|5||99.53|95.41|0.00|3.11|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:34.5010000-07:00|40022472|Zeromus|005A5A00|5204973|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:34.5010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52701|81809|10000|10000|9||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:34.0540000-07:00|Change|10FF0006||| +37|2023-10-06T21:20:34.5460000-07:00|40022472|Zeromus|0001A275|5175492||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:34.5460000-07:00|40022D3A|Seraph|40A4|Seraphic Veil|10FF0008|Kokosaze Lulusaze|200004|21EF0000|EF0E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|38246|90216|10000|10000|||100.11|100.72|0.00|-3.14|73956|77430|10000|10000|||100.21|100.42|0.00|-2.14|0001A283|0|1| +24|2023-10-06T21:20:34.5460000-07:00|10FF0009|Zewo Negiwo|HoT|0|FC2|40214|81177|6259|10000|||100.76|102.46|0.00|-3.11|10FF0007|Kehabiqo Febiqo|0|98356|129844|10000|10000|||99.53|95.41|0.00|3.11| +21|2023-10-06T21:20:34.5460000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|352003|427F0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|5206399|40478540|10000|10000|||100.00|80.10|0.00|0.00|45204|81809|9600|10000|||99.84|101.06|0.00|3.13|0001A284|0|1| +21|2023-10-06T21:20:34.5460000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40134|82773|10000|10000|||100.54|98.34|0.00|-3.11|40134|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A285|0|1| +38|2023-10-06T21:20:34.5460000-07:00|10FF0009|Zewo Negiwo|005A5A18|44248|81177|6259|10000|15||100.76|102.46|0.00|-3.11|0|0|0||||||||||||||||||| +38|2023-10-06T21:20:34.5460000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|38246|90216|10000|10000|9||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:34.5460000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:20:34.5460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|40134|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:34.5460000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +24|2023-10-06T21:20:34.5900000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|931|123317|129071|9200|10000|||101.41|98.52|0.00|-3.07|10FF0007|Kehabiqo Febiqo|0|98356|129844|10000|10000|||99.53|95.41|0.00|3.11| +21|2023-10-06T21:20:34.5900000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5206399|40478540|10000|10000|||100.00|80.10|0.00|0.00|38233|73814|3450|10000|||99.47|98.44|0.00|3.11|0001A286|0|1| +38|2023-10-06T21:20:34.5900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125670|129071|9200|10000|5||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:20:34.6350000-07:00|40022472|Zeromus|0001A27C|5151819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:34.6800000-07:00|40022472|Zeromus|0001A27F|5148699||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:34.7690000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5148699|40478540|10000|10000|||100.00|80.10|0.00|0.00|100690|129844|10000|10000|||99.53|95.41|0.00|3.11|0001A287|0|1| +21|2023-10-06T21:20:34.7690000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|470A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|5148699|40478540|10000|10000|||100.00|80.10|0.00|0.00|125670|129071|9200|10000|||101.41|98.52|0.00|-3.07|0001A288|0|1| +38|2023-10-06T21:20:34.7690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125670|129071|9200|10000|5||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:34.7690000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:20:34.8130000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|39160000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|5148699|40478540|10000|10000|||100.00|80.10|0.00|0.00|44248|81177|6259|10000|||100.76|102.46|0.00|-3.11|0001A289|0|1| +37|2023-10-06T21:20:34.8590000-07:00|40022472|Zeromus|0001A280|5136435||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:34.8590000-07:00|10FF0007|Kehabiqo Febiqo|0001A27D|92851|129844|10000|10000|0||99.53|95.41|0.00|3.11|1500|0|0|01|02000000|0|0|| +38|2023-10-06T21:20:34.8590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92851|129844|10000|10000|0||99.53|95.41|0.00|3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:34.8590000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:20:34.8590000-07:00|40022472|Zeromus|005A5A00|5136435|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:34.8590000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +37|2023-10-06T21:20:34.9040000-07:00|40022472|Zeromus|0001A281|5134468||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:34.9040000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|1C7C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5148699|40478540|10000|10000|||100.00|80.10|0.00|0.00|38246|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A28A|0|1| +261|2023-10-06T21:20:34.4290000-07:00|Change|10FF0009||||||||||||||||| +21|2023-10-06T21:20:35.0380000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5134468|40478540|10000|10000|||100.00|80.10|0.00|0.00|40063|81541|300|10000|||101.93|99.26|0.00|1.19|0001A28B|0|1| +21|2023-10-06T21:20:35.0380000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|256003|B45A4001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5134468|40478540|10000|10000|||100.00|80.10|0.00|0.00|40134|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A28C|0|1| +38|2023-10-06T21:20:35.0380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|40134|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:35.0380000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +30|2023-10-06T21:20:35.0380000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +37|2023-10-06T21:20:35.1270000-07:00|40022472|Zeromus|0001A286|5134440||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:35.1270000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|750003|7F1A0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|5134468|40478540|10000|10000|||100.00|80.10|0.00|0.00|38233|73814|3450|10000|||99.47|98.44|0.00|3.11|0001A28D|0|1| +38|2023-10-06T21:20:35.1270000-07:00|10FF0003|Gegehi Gehi|005A5A23|38233|73814|3050|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:35.1270000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +261|2023-10-06T21:20:34.6470000-07:00|Change|10FF0003||| +261|2023-10-06T21:20:34.6470000-07:00|Change|10FF0003||| +37|2023-10-06T21:20:35.1710000-07:00|40022472|Zeromus|0001A284|5117417||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:35.3050000-07:00|40022472|Zeromus|0001A287|5114361||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:35.3930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|A100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5114361|40478540|10000|10000|||100.00|80.10|0.00|0.00|38246|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A28E|0|1| +37|2023-10-06T21:20:35.4370000-07:00|40022472|Zeromus|0001A282|5109612||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:35.4370000-07:00|10FF0004|Buhojaqe Zijaqe|0001A282|41837||||||101.99|99.43|0.00|0.61| +21|2023-10-06T21:20:35.4830000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|10170000|13550E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|5109612|40478540|10000|10000|||100.00|80.10|0.00|0.00|125670|129071|9200|10000|||101.41|98.52|0.00|-3.07|0001A28F|0|1| +261|2023-10-06T21:20:35.0930000-07:00|Change|10FF0006||| +37|2023-10-06T21:20:35.5270000-07:00|40022472|Zeromus|0001A28A|5102320||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:35.5270000-07:00|10FF0003|Gegehi Gehi|38971|73814|3250|10000|||99.47|98.44|0.00|3.11| +37|2023-10-06T21:20:35.5720000-07:00|10FF0008|Kokosaze Lulusaze|0001A283|46933|90216|10000|10000|9||100.11|100.72|0.00|-3.14|1F00|0|0|01|0600077D|0|41E7CABE|| +37|2023-10-06T21:20:35.5720000-07:00|40022472|Zeromus|0001A28B|5102046||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:35.6160000-07:00|10FF0009|Zewo Negiwo|45059|81177|6080|10000|||100.76|102.46|0.00|-3.11| +37|2023-10-06T21:20:35.6620000-07:00|40022472|Zeromus|0001A28C|4990340||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:20:35.1890000-07:00|40022D3B|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||87.86|107.46|0.00|2.67| +261|2023-10-06T21:20:35.1890000-07:00|Change|10FF0003||| +261|2023-10-06T21:20:35.1890000-07:00|Remove|40022D3B| +39|2023-10-06T21:20:35.7060000-07:00|10FF0008|Kokosaze Lulusaze|47835|90216|10000|10000|||100.11|100.72|0.00|-3.14| +24|2023-10-06T21:20:35.7510000-07:00|40022472|Zeromus|DoT|0|2050|4990340|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|40134|82773|10000|10000|||100.54|98.34|0.00|-3.11| +26|2023-10-06T21:20:35.7510000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:20:35.7510000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|26220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4990340|40478540|10000|10000|||100.00|80.10|0.00|0.00|46933|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A290|0|1| +38|2023-10-06T21:20:35.7510000-07:00|40022472|Zeromus|005A5A00|4982068|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +36|2023-10-06T21:20:35.8400000-07:00|66A8|3| +39|2023-10-06T21:20:35.8850000-07:00|10FF0001|Sesuga Sapisuga|126960|129071|9400|10000|||101.41|98.52|0.00|-3.07| +39|2023-10-06T21:20:35.8850000-07:00|10FF0004|Buhojaqe Zijaqe|42652|81541|500|10000|||102.04|99.57|0.00|0.13| +21|2023-10-06T21:20:35.8850000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38971|73814|3250|10000|||99.47|98.44|0.00|3.11|38971|73814|3250|10000|||99.47|98.44|0.00|3.11|0001A291|0|1| +261|2023-10-06T21:20:35.3830000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:20:35.3830000-07:00|Change|10FF0001||| +261|2023-10-06T21:20:35.3830000-07:00|Change|10FF0009||| +21|2023-10-06T21:20:35.9300000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4982068|40478540|10000|10000|||100.00|80.10|0.00|0.00|52701|81809|9700|10000|||99.84|101.06|0.00|3.13|0001A292|0|1| +39|2023-10-06T21:20:35.9740000-07:00|10FF0007|Kehabiqo Febiqo|94149|129844|10000|10000|||99.53|95.41|0.00|3.11| +38|2023-10-06T21:20:35.9740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|47835|90216|10000|10000|9||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:35.9740000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T21:20:36.0180000-07:00|10FF0006|Wowobora Gogobora|53519|81809|9900|10000|||99.84|101.06|0.00|3.13| +21|2023-10-06T21:20:36.0180000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F712003|5C1F0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|4982068|40478540|10000|10000|||100.00|80.10|0.00|0.00|94149|129844|10000|10000|||99.53|95.41|0.00|3.11|0001A293|0|1| +38|2023-10-06T21:20:36.0180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94149|129844|10000|10000|0||99.53|95.41|0.00|3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:36.0180000-07:00|A75|Surging Tempest|41.48|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:20:36.0630000-07:00|40022472|Zeromus|0001A288|4963882||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:36.0630000-07:00|10FF0001|Sesuga Sapisuga|0001A288|126960|129071|9800|10000|5||101.41|98.52|0.00|-3.07|1300|0|0|0| +21|2023-10-06T21:20:36.0630000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|27CB0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|4982068|40478540|10000|10000|||100.00|80.10|0.00|0.00|52701|81809|9700|10000|||99.84|101.06|0.00|3.13|0001A294|0|1| +37|2023-10-06T21:20:36.1070000-07:00|40022472|Zeromus|0001A289|4949268||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:36.1070000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42652|81541|500|10000|||102.04|99.57|0.00|0.13|42652|81541|500|10000|||102.04|99.57|0.00|0.13|0001A295|0|1| +38|2023-10-06T21:20:36.1070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53519|81809|9600|10000|9||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:36.1070000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +37|2023-10-06T21:20:36.1510000-07:00|40022472|Zeromus|0001A28E|4946692||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:36.2400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|40134|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:36.2400000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|82773|90216| +20|2023-10-06T21:20:36.2850000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.76|102.46|0.00|-3.11| +21|2023-10-06T21:20:36.3290000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|15240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4946692|40478540|10000|10000|||100.00|80.10|0.00|0.00|40134|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A296|0|1| +37|2023-10-06T21:20:36.3740000-07:00|40022472|Zeromus|0001A290|4936930||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:36.3740000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1AC10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4946692|40478540|10000|10000|||100.00|80.10|0.00|0.00|47835|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A297|0|1| +38|2023-10-06T21:20:36.3740000-07:00|10FF0009|Zewo Negiwo|005A5A18|45059|81177|6080|10000|15||100.76|102.46|0.00|-3.11|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:36.3740000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0009|Zewo Negiwo|00|81177|90216| +37|2023-10-06T21:20:36.4640000-07:00|40022472|Zeromus|0001A292|4936767||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:36.5080000-07:00|40022472|Zeromus|0001A28F|4932648|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T21:20:36.5080000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:20:36.5080000-07:00|10FF0003|Gegehi Gehi|0001A291|38971|73814|3250|10000|10||99.47|98.44|0.00|3.11|2300|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:20:36.5080000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:20:36.5080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|42652|81541|500|10000|9||102.04|99.57|0.00|0.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:36.5080000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +261|2023-10-06T21:20:36.0250000-07:00|Change|10FF0006||| +21|2023-10-06T21:20:36.6420000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4932648|40478540|10000|10000|||100.00|80.10|0.00|0.00|126960|129071|9800|10000|||101.41|98.52|0.00|-3.07|0001A298|0|1| +38|2023-10-06T21:20:36.6420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94149|129844|10000|10000|0||99.53|95.41|0.00|3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:36.6420000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +31|2023-10-06T21:20:36.6420000-07:00|10FF0001||||| +37|2023-10-06T21:20:36.6870000-07:00|40022472|Zeromus|0001A294|4922461||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:36.6870000-07:00|40022472|Zeromus|0001A28D|4889923||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:36.6870000-07:00|40022D4B|Carbuncle|005A5A00|74223|77698|10000|10000|0||99.85|99.31|0.00|-0.01|0|0|0|||||||||| +26|2023-10-06T21:20:36.6870000-07:00|30|Well Fed|1236.59|10FF0006|Wowobora Gogobora|40022D4B|Carbuncle|2964|77698|81809| +26|2023-10-06T21:20:36.6870000-07:00|511|Embolden|8.85|10FF0003|Gegehi Gehi|40022D4B|Carbuncle|00|77698|73814| +26|2023-10-06T21:20:36.6870000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022D4B|Carbuncle|01|77698|81809| +21|2023-10-06T21:20:36.6870000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53519|81809|9600|10000|||99.84|101.06|0.00|3.13|53519|81809|9600|10000|||99.84|101.06|0.00|3.13|0001A299|0|1| +37|2023-10-06T21:20:36.7320000-07:00|10FF0004|Buhojaqe Zijaqe|0001A295|42652|81541|500|10000|9||102.04|99.56|0.00|0.90|1C00|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T21:20:36.7320000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:20:36.7320000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40134|82773|10000|10000|||100.54|98.34|0.00|-3.11|40134|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A29A|0|1| +38|2023-10-06T21:20:36.7320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|40134|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:36.7320000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +21|2023-10-06T21:20:36.7770000-07:00|40022D4B|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|53519|81809|9600|10000|||99.84|101.06|0.00|3.13|74223|77698|10000|10000|||99.85|99.31|0.00|-0.01|0001A29B|0|1| +39|2023-10-06T21:20:36.7770000-07:00|40022D3A|Seraph|73956|77430|10000|10000|||100.21|100.42|0.00|-3.10| +38|2023-10-06T21:20:36.7770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53519|81809|9600|10000|29||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:36.7770000-07:00|A8E|Radiant Aegis|29.96|40022D4B|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +38|2023-10-06T21:20:36.7770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126960|129071|9800|10000|5||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:36.7770000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +37|2023-10-06T21:20:36.8660000-07:00|40022472|Zeromus|0001A296|4884511||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:36.9100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|102.01|99.46|0.00|2.01| +261|2023-10-06T21:20:36.4190000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:20:36.4190000-07:00|Change|10FF0001||| +38|2023-10-06T21:20:36.9100000-07:00|10FF0003|Gegehi Gehi|005A5A23|38971|73814|3250|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:36.9100000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +261|2023-10-06T21:20:36.4190000-07:00|Change|10FF0009||||||||||||| +39|2023-10-06T21:20:36.9990000-07:00|10FF000A|Dukaro Nezikaro|40961|82773|10000|10000|||100.54|98.34|0.00|-3.11| +21|2023-10-06T21:20:37.0880000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42BC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|94149|129844|10000|10000|||99.53|95.41|0.00|3.11|4884511|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A29C|0|1| +37|2023-10-06T21:20:37.1780000-07:00|40022472|Zeromus|0001A297|4877662||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:37.1780000-07:00|40022472|Zeromus|0001A298|4875702||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:37.2220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|921|47835|90216|10000|10000|||100.11|100.72|0.00|-3.14|40022D3A|Seraph|0|73956|77430|10000|10000|||100.21|100.42|0.00|-3.13| +21|2023-10-06T21:20:37.2230000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|37390000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|4875702|40478540|10000|10000|||100.00|80.10|0.00|0.00|45059|81177|6080|10000|||100.76|102.46|0.00|-3.11|0001A29D|0|1| +21|2023-10-06T21:20:37.2230000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40961|82773|10000|10000|||100.54|98.34|0.00|-3.11|40961|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A29E|0|1| +38|2023-10-06T21:20:37.2230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50172|90216|10000|10000|9||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:37.2230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|40961|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:37.2230000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +24|2023-10-06T21:20:37.2680000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|96C|40961|82773|10000|10000|||100.54|98.34|0.00|-3.11|40022D3A|Seraph|0|73956|77430|10000|10000|||100.21|100.42|0.00|-3.13| +21|2023-10-06T21:20:37.2680000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|24ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4875702|40478540|10000|10000|||100.00|80.10|0.00|0.00|47835|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A29F|0|1| +21|2023-10-06T21:20:37.2680000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|714003|1BAD0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|4875702|40478540|10000|10000|||100.00|80.10|0.00|0.00|126960|129071|9800|10000|||101.41|98.52|0.00|-3.07|0001A2A0|0|1| +38|2023-10-06T21:20:37.2680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50172|90216|10000|10000|9||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:37.2680000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +38|2023-10-06T21:20:37.2680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43373|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:37.3120000-07:00|10FF0003|Gegehi Gehi|HoT|0|9B2|38971|73814|3250|10000|||99.47|98.44|0.00|3.11|40022D3A|Seraph|0|73956|77430|10000|10000|||100.23|100.44|0.00|3.13| +38|2023-10-06T21:20:37.3120000-07:00|10FF0003|Gegehi Gehi|005A5A23|41453|73814|3800|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:36.8700000-07:00|Change|10FF0003||| +24|2023-10-06T21:20:37.4010000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9B3|42652|81541|500|10000|||102.01|99.19|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|94149|129844|10000|10000|||99.53|95.44|0.00|-2.19| +38|2023-10-06T21:20:37.4010000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45135|81541|1050|10000|9||102.01|99.19|0.00|-3.14|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:36.9810000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:20:37.4900000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|91E|94149|129844|10000|10000|||99.55|95.80|0.00|-2.13|10FF0007|Kehabiqo Febiqo|0|94149|129844|10000|10000|||99.55|95.80|0.00|-2.13| +24|2023-10-06T21:20:37.4900000-07:00|40022472|Zeromus|DoT|A92|5AE|4875702|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|53519|81809|9600|10000|||99.84|101.06|0.00|3.13| +24|2023-10-06T21:20:37.4900000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1D62|53519|81809|9600|10000|||99.84|101.06|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|94149|129844|10000|10000|||99.55|95.80|0.00|-2.13| +38|2023-10-06T21:20:37.4900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96483|129844|10000|10000|0||99.55|95.80|0.00|-2.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:37.4900000-07:00|40022472|Zeromus|005A5A00|4874248|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:37.4900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|61041|81809|10000|10000|29||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:37.5350000-07:00|10FF0009|Zewo Negiwo|HoT|0|96E|45059|81177|5680|10000|||100.76|102.46|0.00|-3.11|10FF0007|Kehabiqo Febiqo|0|96483|129844|10000|10000|||99.56|96.27|0.00|-2.10| +21|2023-10-06T21:20:37.5350000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|4874248|40478540|10000|10000|||100.00|80.10|0.00|0.00|61041|81809|10000|10000|||99.84|101.06|0.00|3.13|0001A2A1|0|1| +38|2023-10-06T21:20:37.5350000-07:00|10FF0009|Zewo Negiwo|005A5A18|47473|81177|5680|10000|15||100.76|102.46|0.00|-3.11|0|0|0||||||||||||||||||| +38|2023-10-06T21:20:37.5350000-07:00|40022D4B|Carbuncle|005A5A00|0|77698|0|10000|0||99.85|99.31|0.00|-0.01|0|0|0|||| +30|2023-10-06T21:20:37.5350000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022D4B|Carbuncle|00|77698|73814| +30|2023-10-06T21:20:37.5350000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40022D4B|Carbuncle|01|77698|81809| +38|2023-10-06T21:20:37.5350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|61041|81809|10000|10000|29||99.84|101.06|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:37.5350000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:20:37.1030000-07:00|Change|40022D4B||| +261|2023-10-06T21:20:37.1030000-07:00|Change|40022D4B||| +261|2023-10-06T21:20:37.1030000-07:00|Change|10FF0006||| +38|2023-10-06T21:20:37.5800000-07:00|40022D4E||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:20:37.5800000-07:00|10FF0006|Wowobora Gogobora|0001A29B|61041|81809|10000|10000|29||99.84|101.06|0.00|3.13|1B00|0|0|01|03000A8E|0|41E99373|| +24|2023-10-06T21:20:37.5800000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|914|126960|129071|9800|10000|||101.41|98.52|0.00|-3.07|10FF0007|Kehabiqo Febiqo|0|96483|129844|10000|10000|||99.56|96.27|0.00|-2.10| +20|2023-10-06T21:20:37.5800000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|99.47|98.44|0.00|3.11| +38|2023-10-06T21:20:37.5800000-07:00|40022D4E||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:20:37.5800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9800|10000|5||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:20:37.6690000-07:00|40022472|Zeromus|0001A293|4850665||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:37.2000000-07:00|Add|40022D4E||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:20:37.2000000-07:00|40022D4E|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||101.59|102.84|0.00|3.13| +21|2023-10-06T21:20:37.7140000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|550003|58290000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|4874248|40478540|10000|10000|||100.00|80.10|0.00|0.00|43373|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A2A2|0|1| +38|2023-10-06T21:20:37.7140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43373|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:37.7140000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:20:37.7140000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:20:37.2960000-07:00|Change|40022D4E||||| +21|2023-10-06T21:20:37.8470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|40C20000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4850665|40478540|10000|10000|||100.00|80.10|0.00|0.00|45135|81541|1050|10000|||102.01|99.17|0.00|-3.04|0001A2A3|0|1| +261|2023-10-06T21:20:37.3940000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:20:37.8920000-07:00|40022472|Zeromus|0001A29F|4841212||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:37.8920000-07:00|10FF0007|Kehabiqo Febiqo|0001A29C|79399||||||99.64|97.35|0.00|-2.09| +37|2023-10-06T21:20:37.8920000-07:00|40022472|Zeromus|0001A2A0|4834127||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:37.8920000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|1B410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4850665|40478540|10000|10000|||100.00|80.10|0.00|0.00|50172|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A2A4|0|1| +261|2023-10-06T21:20:37.4870000-07:00|Change|10FF0009||||||||||||||| +261|2023-10-06T21:20:37.6700000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:20:38.0700000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|13290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4834127|40478540|10000|10000|||100.00|80.10|0.00|0.00|50172|90216|10000|10000|||100.11|100.72|0.00|-3.14|0001A2A5|0|1| +21|2023-10-06T21:20:38.1590000-07:00|40022D3A|Seraph|40A4|Seraphic Veil|10FF0008|Kokosaze Lulusaze|200004|22C30000|C30E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|50172|90216|10000|10000|||100.11|100.72|0.00|-3.14|73956|77430|10000|10000|||100.62|100.77|0.00|-2.89|0001A2A6|0|1| +21|2023-10-06T21:20:38.1590000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|13BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4834127|40478540|10000|10000|||100.00|80.10|0.00|0.00|79399|129844|10000|10000|||100.36|98.31|0.00|-0.69|0001A2A7|0|1| +38|2023-10-06T21:20:38.1590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50172|90216|10000|10000|9||100.11|100.72|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:38.1590000-07:00|77D|Seraphic Veil|29.96|40022D3A|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +261|2023-10-06T21:20:37.9030000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:20:38.4260000-07:00|40022472|Zeromus|0001A2A2|4811558||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:38.4260000-07:00|10FF000A|Dukaro Nezikaro|0001A2A2|43373|82773|10000|10000|8||100.54|98.34|0.00|-3.11|1E00|0|0|01|03000A82|01|41F00000|| +21|2023-10-06T21:20:38.4260000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|752003|1C820000|104|AA88000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|4834127|40478540|10000|10000|||100.00|80.10|0.00|0.00|45135|81541|650|10000|||102.01|99.17|0.00|-3.04|0001A2A8|0|1| +38|2023-10-06T21:20:38.4260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45135|81541|650|10000|9||102.01|99.17|0.00|-3.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:38.4260000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +38|2023-10-06T21:20:38.4260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43373|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:20:38.4710000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3EFE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4834127|40478540|10000|10000|||100.00|80.10|0.00|0.00|79399|129844|10000|10000|||100.33|98.35|0.00|0.37|0001A2A9|0|1| +37|2023-10-06T21:20:38.5160000-07:00|40022472|Zeromus|0001A29D|4797421||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:38.5160000-07:00|40022472|Zeromus|0001A2A4|4790444||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:38.5160000-07:00|10FF0003|Gegehi Gehi|42191|73814|4000|10000|||99.47|98.44|0.00|3.11| +21|2023-10-06T21:20:38.5160000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|756003|61670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4811558|40478540|10000|10000|||100.00|80.10|0.00|0.00|43373|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A2AA|0|1| +21|2023-10-06T21:20:38.5160000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|A740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4811558|40478540|10000|10000|||100.00|80.10|0.00|0.00|43373|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A2AB|0|1| +37|2023-10-06T21:20:38.5600000-07:00|10FF0006|Wowobora Gogobora|0001A2A1|61041|81809|10000|10000|29||99.84|101.06|0.00|3.13|1B00|0|0|01|09000AA4|0|0|| +38|2023-10-06T21:20:38.5600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|61041|81809|10000|10000|29||99.84|101.06|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:20:38.1390000-07:00|Change|40022D4E||| +39|2023-10-06T21:20:38.6050000-07:00|10FF0009|Zewo Negiwo|48284|81177|5901|10000|||100.76|102.46|0.00|-3.11| +37|2023-10-06T21:20:38.6490000-07:00|40022472|Zeromus|0001A2A3|4773866||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:38.6940000-07:00|40022472|Zeromus|0001A2A7|4768814||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:38.6940000-07:00|10FF0008|Kokosaze Lulusaze|51074|90216|10000|10000|||100.19|100.33|0.00|3.03| +20|2023-10-06T21:20:38.7380000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.76|102.46|0.00|-3.11| +24|2023-10-06T21:20:38.7830000-07:00|40022472|Zeromus|DoT|0|22D8|4773866|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|43373|82773|10000|10000|||100.54|98.34|0.00|-3.11| +38|2023-10-06T21:20:38.7830000-07:00|40022472|Zeromus|005A5A00|4759894|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:38.8270000-07:00|40022472|Zeromus|0001A2A5|4754989||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:38.8270000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|3FF20000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|4759894|40478540|10000|10000|||100.00|80.10|0.00|0.00|51074|90216|10000|10000|||100.21|100.22|0.00|3.02|0001A2AC|0|1| +39|2023-10-06T21:20:38.8730000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.41|98.52|0.00|-3.07| +39|2023-10-06T21:20:38.8730000-07:00|10FF0004|Buhojaqe Zijaqe|45950|81541|850|10000|||102.01|99.17|0.00|-3.04| +36|2023-10-06T21:20:38.8730000-07:00|6784|3| +261|2023-10-06T21:20:38.3310000-07:00|Change|10FF0001||| +261|2023-10-06T21:20:38.3310000-07:00|Change|10FF0003||||| +21|2023-10-06T21:20:38.9170000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4754989|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.41|98.52|0.00|-3.07|0001A2AD|0|1| +31|2023-10-06T21:20:38.9170000-07:00|10FF0001||||| +39|2023-10-06T21:20:38.9620000-07:00|10FF0007|Kehabiqo Febiqo|80697|129844|10000|10000|||100.24|98.37|-0.01|-3.13| +261|2023-10-06T21:20:38.4310000-07:00|Change|10FF0009||||||||||||||| +39|2023-10-06T21:20:39.0060000-07:00|10FF0006|Wowobora Gogobora|61859|81809|10000|10000|||99.84|101.06|0.00|3.13| +21|2023-10-06T21:20:39.0060000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|152003|57FF0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|4754989|40478540|10000|10000|||100.00|80.10|0.00|0.00|42191|73814|4000|10000|||99.47|98.44|0.00|3.11|0001A2AE|0|1| +38|2023-10-06T21:20:39.0060000-07:00|10FF0003|Gegehi Gehi|005A5A23|42191|73814|3800|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:39.0060000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:20:39.0060000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:20:39.0510000-07:00|40022472|Zeromus|0001A2AB|4752313||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:20:39.0510000-07:00|40022471||40022472|Zeromus|0000|0000|0109|||| +257|2023-10-06T21:20:39.0510000-07:00|80034E7C|00020001|03|00|0000| +21|2023-10-06T21:20:39.0520000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4754989|40478540|10000|10000|||100.00|80.10|0.00|0.00|61041|81809|10000|10000|||99.84|101.06|0.00|3.13|0001A2AF|0|1| +261|2023-10-06T21:20:38.5480000-07:00|Change|40022471||||||||| +261|2023-10-06T21:20:38.5480000-07:00|Change|40022490||||||||| +00|2023-10-06T21:20:38.0000000-07:00|0044|Zeromus|Beyond the veil my home doth lie...| +37|2023-10-06T21:20:39.0960000-07:00|40022472|Zeromus|0001A2A9|4736187||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:39.1400000-07:00|40022472|Zeromus|0001A2AA|4711252||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:39.1400000-07:00|40022472|Zeromus|8CFA|Flow of the Abyss|40022472|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:39.1400000-07:00|40022490|Zeromus|8B82|Dimensional Surge|40022490|Zeromus|8.700|80.10|100.00|0.00|1.57| +21|2023-10-06T21:20:39.1400000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4736187|40478540|10000|10000|||100.00|80.10|0.00|0.00|45950|81541|850|10000|||101.95|99.57|0.00|-1.74|0001A2B0|0|1| +261|2023-10-06T21:20:38.6690000-07:00|Change|40022472||||||||||||| +37|2023-10-06T21:20:39.1840000-07:00|10FF0008|Kokosaze Lulusaze|0001A2A6|59973|90216|10000|10000|9||100.31|99.65|0.00|3.07|1F00|0|0|01|0600077D|0|41E7CABD|| +20|2023-10-06T21:20:39.2740000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.95|99.59|0.00|-1.47| +21|2023-10-06T21:20:39.3190000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|550003|46D20000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|4711252|40478540|10000|10000|||100.00|80.10|0.00|0.00|43373|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A2B1|0|1| +38|2023-10-06T21:20:39.3190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43373|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:39.3190000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +37|2023-10-06T21:20:39.4520000-07:00|40022472|Zeromus|0001A2AD|4709248||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:39.4520000-07:00|40022472|Zeromus|0001A2A8|4701950||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:39.4520000-07:00|10FF0004|Buhojaqe Zijaqe|0001A2A8|48678||||||101.95|99.61|0.00|-1.22| +261|2023-10-06T21:20:39.0150000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:20:39.5410000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4701950|40478540|10000|10000|||100.00|80.10|0.00|0.00|42191|73814|3800|10000|||99.47|98.44|0.00|3.11|0001A2B2|0|1| +261|2023-10-06T21:20:39.1330000-07:00|Change|40022D4B||| +37|2023-10-06T21:20:39.5850000-07:00|40022472|Zeromus|0001A2AF|4701784||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:39.1330000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:20:39.6300000-07:00|40022472|Zeromus|0001A2AC|4685414||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:39.6300000-07:00|40022D4E|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|150003|6CC00000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|4701950|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.59|102.84|0.00|3.13|0001A2B3|0|1| +37|2023-10-06T21:20:39.6750000-07:00|40022472|Zeromus|0001A2B0|4685237||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:39.6750000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|57450000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|4701950|40478540|10000|10000|||100.00|80.10|0.00|0.00|48284|81177|5901|10000|||100.76|102.46|0.00|-3.11|0001A2B4|0|1| +39|2023-10-06T21:20:39.7650000-07:00|40022D3A|Seraph|73956|77430|10000|10000|||100.63|100.79|0.00|-3.01| +21|2023-10-06T21:20:39.7650000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|21590000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|4685237|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.41|98.52|0.00|-3.07|0001A2B5|0|1| +37|2023-10-06T21:20:39.8100000-07:00|40022472|Zeromus|0001A2AE|4662710||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:39.8540000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|660F|A788000|0|0|0|0|0|0|0|0|0|0|80697|129844|10000|10000|||100.24|98.37|0.00|-3.13|80697|129844|10000|10000|||100.24|98.37|0.00|-3.13|0001A2B6|0|1| +261|2023-10-06T21:20:39.4160000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T21:20:39.9890000-07:00|10FF000A|Dukaro Nezikaro|44200|82773|10000|10000|||100.54|98.34|0.00|-3.11| +21|2023-10-06T21:20:39.9890000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|556003|78C30000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|4662710|40478540|10000|10000|||100.00|80.10|0.00|0.00|42191|73814|3800|10000|||99.47|98.44|0.00|3.11|0001A2B7|0|1| +38|2023-10-06T21:20:39.9890000-07:00|10FF0003|Gegehi Gehi|005A5A23|42191|73814|3500|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:39.9890000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:20:39.5160000-07:00|Change|10FF0009||||||||||||||| +20|2023-10-06T21:20:40.0330000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|99.84|101.06|0.00|3.13| +37|2023-10-06T21:20:40.0770000-07:00|40022472|Zeromus|0001A2B2|4662662||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:40.0770000-07:00|40022472|Zeromus|0001A2B1|4644532||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:40.1220000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|716003|27620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4662710|40478540|10000|10000|||100.00|80.10|0.00|0.00|44200|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A2B8|0|3| +22|2023-10-06T21:20:40.1220000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|716003|2A4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4662710|40478540|10000|10000|||100.00|80.10|0.00|0.00|44200|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A2B8|1|3| +22|2023-10-06T21:20:40.1220000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|197E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4662710|40478540|10000|10000|||100.00|80.10|0.00|0.00|44200|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A2B8|2|3| +24|2023-10-06T21:20:40.2110000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|951|59973|90216|10000|10000|||100.39|99.14|0.00|2.98|40022D3A|Seraph|0|73956|77430|10000|10000|||100.63|100.79|0.00|-3.11| +21|2023-10-06T21:20:40.2110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|5ABC0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4662710|40478540|10000|10000|||100.00|80.10|0.00|0.00|48678|81541|850|10000|||101.95|99.66|0.00|-3.04|0001A2B9|0|1| +261|2023-10-06T21:20:39.7070000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:20:40.2110000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62358|90216|10000|10000|9||100.39|99.14|0.00|2.98|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:20:40.2550000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|919|44200|82773|10000|10000|||100.54|98.34|0.00|-3.11|40022D3A|Seraph|0|73956|77430|10000|10000|||100.63|100.79|0.00|-3.11| +38|2023-10-06T21:20:40.2550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46529|82773|10000|10000|8||100.54|98.34|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:40.2990000-07:00|10FF0003|Gegehi Gehi|HoT|0|992|42191|73814|3500|10000|||99.47|98.44|0.00|3.11|40022D3A|Seraph|0|73956|77430|10000|10000|||100.63|100.79|0.00|-3.11| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|30940000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|0|9| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0006|Wowobora Gogobora|200004|50BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61859|81809|10000|10000|||99.84|101.06|0.00|3.13|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|1|9| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|49D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4644532|40478540|10000|10000|||100.00|80.10|0.00|0.00|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|2|9| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|327E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|48678|81541|450|10000|||101.95|99.66|0.00|-3.04|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|3|9| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|200004|520C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|62358|90216|10000|10000|||100.39|99.14|0.00|2.98|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|4|9| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|4|334C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||101.41|98.52|0.00|-3.07|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|5|9| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|336A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80697|129844|10000|10000|||100.24|98.37|0.00|-3.13|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|6|9| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|30C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44200|82773|10000|10000|||100.54|98.34|0.00|-3.11|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|7|9| +22|2023-10-06T21:20:40.2990000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|4|31760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42191|73814|3500|10000|||99.47|98.44|0.00|3.11|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|0001A2BA|8|9| +38|2023-10-06T21:20:40.2990000-07:00|10FF0003|Gegehi Gehi|005A5A23|44641|73814|4050|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:20:40.3890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|964|48678|81541|450|10000|||101.95|99.66|0.00|-3.04|10FF0007|Kehabiqo Febiqo|0|80697|129844|10000|10000|||100.24|98.37|0.00|-3.13| +38|2023-10-06T21:20:40.3890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|51082|81541|1000|10000|9||101.95|99.66|0.00|-3.04|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:20:40.4340000-07:00|10FF0007|Kehabiqo Febiqo|0001A2B6|80697|129844|10000|10000|12||100.24|98.37|0.00|-3.13|1500|0|0|03|01000A76|0190|41000000|||||||||| +26|2023-10-06T21:20:40.4340000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T21:20:40.4340000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:20:40.4340000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:20:40.4340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80697|129844|10000|10000|12||100.24|98.37|0.00|-3.13|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:40.0380000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:20:40.4790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9E7|80697|129844|10000|10000|||100.24|98.37|0.00|-3.13|10FF0007|Kehabiqo Febiqo|0|80697|129844|10000|10000|||100.24|98.37|0.00|-3.13| +24|2023-10-06T21:20:40.4790000-07:00|40022472|Zeromus|DoT|A92|922|4644532|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|61859|81809|10000|10000|||99.84|101.06|0.00|3.13| +24|2023-10-06T21:20:40.4790000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1C99|61859|81809|10000|10000|||99.84|101.06|0.00|3.13|10FF0006|Wowobora Gogobora|0|61859|81809|10000|10000|||99.84|101.06|0.00|3.13| +38|2023-10-06T21:20:40.4790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|83232|129844|10000|10000|12||100.24|98.37|0.00|-3.13|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:20:40.4790000-07:00|40022472|Zeromus|005A5A00|4642194|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:40.4790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69180|81809|10000|10000|29||99.84|101.06|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:20:40.5230000-07:00|40022472|Zeromus|0001A2B5|4633657||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:40.5230000-07:00|10FF0009|Zewo Negiwo|HoT|0|92D|48284|81177|5501|10000|||100.76|102.46|0.00|-3.11|10FF0007|Kehabiqo Febiqo|0|80697|129844|10000|10000|||100.24|98.37|0.00|-3.13| +38|2023-10-06T21:20:40.5230000-07:00|10FF0009|Zewo Negiwo|005A5A18|50633|81177|5501|10000|15||100.76|102.46|0.00|-3.11|0|0|0||||||||||||||||||| +24|2023-10-06T21:20:40.5670000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9CE|129071|129071|10000|10000|||101.41|98.52|0.00|-3.07|10FF0007|Kehabiqo Febiqo|0|83232|129844|10000|10000|||100.24|98.37|0.00|-3.13| +38|2023-10-06T21:20:40.5670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||101.41|98.52|0.00|-3.07|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:20:40.7010000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|A590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4633657|40478540|10000|10000|||100.00|80.10|0.00|0.00|46529|82773|10000|10000|||100.54|98.34|0.00|-3.11|0001A2BB|0|1| +37|2023-10-06T21:20:40.7460000-07:00|40022472|Zeromus|0001A2B7|4602742||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:40.7460000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|A560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4633657|40478540|10000|10000|||100.00|80.10|0.00|0.00|62358|90216|10000|10000|||100.39|99.14|0.00|2.98|0001A2BC|0|1| +37|2023-10-06T21:20:40.8350000-07:00|40022472|Zeromus|0001A2B8|4592660||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:40.4460000-07:00|Change|10FF0003||| +21|2023-10-06T21:20:40.9250000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|19340000|4|26358000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|4592660|40478540|10000|10000|||100.00|80.10|0.00|0.00|83232|129844|10000|10000|||100.24|98.37|0.00|-3.13|0001A2BD|0|1| +38|2023-10-06T21:20:40.9250000-07:00|40022D3A|Seraph|005A5A00|73956|77430|10000|10000|0||100.63|100.79|0.00|-3.11|0|0|0|||||||||| +26|2023-10-06T21:20:40.9250000-07:00|77B|Summon Order|30.00|40022D3A|Seraph|40022D3A|Seraph|01|77430|77430| +21|2023-10-06T21:20:40.9250000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51082|81541|1000|10000|||102.02|99.09|0.00|-3.05|51082|81541|1000|10000|||102.02|99.09|0.00|-3.05|0001A2BE|0|1| +37|2023-10-06T21:20:40.9690000-07:00|40022472|Zeromus|0001A2B4|4570319||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:40.9690000-07:00|10FF0009|Zewo Negiwo|0001A2BA|63069|81177|6001|10000|15||101.49|101.79|0.00|2.32|1800|0|0|0| +37|2023-10-06T21:20:40.9690000-07:00|40022472|Zeromus|0001A2B8|4559492||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:40.5370000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:20:41.0130000-07:00|40022472|Zeromus|0001A2B9|4536264||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:41.0130000-07:00|40022D3A|Seraph|40A6|Angel's Whisper|10FF0008|Kokosaze Lulusaze|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|62358|90216|10000|10000|||100.36|99.11|0.00|-3.13|73956|77430|10000|10000|||100.61|100.68|0.00|-3.08|0001A2BF|0|8| +22|2023-10-06T21:20:41.0130000-07:00|40022D3A|Seraph|40A6|Angel's Whisper|10FF0006|Wowobora Gogobora|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|69180|81809|10000|10000|||99.84|101.06|0.00|3.13|73956|77430|10000|10000|||100.61|100.68|0.00|-3.08|0001A2BF|1|8| +22|2023-10-06T21:20:41.0130000-07:00|40022D3A|Seraph|40A6|Angel's Whisper|10FF0007|Kehabiqo Febiqo|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|83232|129844|10000|10000|||100.24|98.37|0.00|-3.13|73956|77430|10000|10000|||100.61|100.68|0.00|-3.08|0001A2BF|2|8| +22|2023-10-06T21:20:41.0130000-07:00|40022D3A|Seraph|40A6|Angel's Whisper|10FF000A|Dukaro Nezikaro|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|46529|82773|10000|10000|||100.53|98.33|0.00|-2.97|73956|77430|10000|10000|||100.61|100.68|0.00|-3.08|0001A2BF|3|8| +22|2023-10-06T21:20:41.0130000-07:00|40022D3A|Seraph|40A6|Angel's Whisper|10FF0003|Gegehi Gehi|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|44641|73814|4050|10000|||99.47|98.44|0.00|3.11|73956|77430|10000|10000|||100.61|100.68|0.00|-3.08|0001A2BF|4|8| +22|2023-10-06T21:20:41.0130000-07:00|40022D3A|Seraph|40A6|Angel's Whisper|10FF0009|Zewo Negiwo|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|50633|81177|5501|10000|||101.49|101.79|0.00|2.32|73956|77430|10000|10000|||100.61|100.68|0.00|-3.08|0001A2BF|5|8| +22|2023-10-06T21:20:41.0130000-07:00|40022D3A|Seraph|40A6|Angel's Whisper|10FF0004|Buhojaqe Zijaqe|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|51082|81541|1000|10000|||102.13|98.32|0.00|-3.12|73956|77430|10000|10000|||100.61|100.68|0.00|-3.08|0001A2BF|6|8| +22|2023-10-06T21:20:41.0130000-07:00|40022D3A|Seraph|40A6|Angel's Whisper|10FF0001|Sesuga Sapisuga|F9E0E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||101.40|96.87|0.00|-1.72|73956|77430|10000|10000|||100.61|100.68|0.00|-3.08|0001A2BF|7|8| +37|2023-10-06T21:20:41.1020000-07:00|10FF0006|Wowobora Gogobora|0001A2BA|81809||||||99.84|101.06|0.00|3.13| +37|2023-10-06T21:20:41.1020000-07:00|40022472|Zeromus|0001A2B8|4529738||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:41.1470000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|101.71|101.64|0.00|2.45| +21|2023-10-06T21:20:41.1920000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|75F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4529738|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.46|96.52|0.00|-1.72|0001A2C0|0|1| +31|2023-10-06T21:20:41.1920000-07:00|10FF0001||||| +37|2023-10-06T21:20:41.2360000-07:00|40022472|Zeromus|0001A2BA|4510835||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:41.2360000-07:00|40022472|Zeromus|0001A2BB|4508186||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:20:40.7710000-07:00|40022D4B|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.85|99.31|0.00|-0.01| +261|2023-10-06T21:20:40.7710000-07:00|Remove|40022D4B| +21|2023-10-06T21:20:41.3260000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44726003|7F1A0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|4508186|40478540|10000|10000|||100.00|80.10|0.00|0.00|62358|90216|10000|10000|||100.05|98.67|0.00|-2.64|0001A2C1|0|1| +37|2023-10-06T21:20:41.3700000-07:00|10FF0004|Buhojaqe Zijaqe|0001A2BA|64008||||||102.38|96.31|0.00|3.07| +261|2023-10-06T21:20:40.9940000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:20:41.4600000-07:00|40022472|Zeromus|0001A2BD|4501734||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:41.4600000-07:00|10FF0007|Kehabiqo Febiqo|0001A2BD|93013||||||100.24|98.37|0.00|-3.13| +37|2023-10-06T21:20:41.5040000-07:00|10FF0008|Kokosaze Lulusaze|0001A2BA|83362||||||99.58|97.98|0.00|3.11| +37|2023-10-06T21:20:41.5040000-07:00|40022472|Zeromus|0001A2BC|4499088||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:41.5490000-07:00|10FF0003|Gegehi Gehi|45379|73814|4250|10000|||99.47|98.44|0.00|3.11| +21|2023-10-06T21:20:41.5490000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|13780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4499088|40478540|10000|10000|||100.00|80.10|0.00|0.00|93013|129844|10000|10000|||100.24|98.37|0.00|-3.13|0001A2C2|0|1| +261|2023-10-06T21:20:41.1140000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:20:41.5940000-07:00|40022472|Zeromus|0001A2B3|4471248||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:41.6380000-07:00|10FF0009|Zewo Negiwo|63880|81177|6222|10000|||102.18|101.31|-0.01|-3.06| +37|2023-10-06T21:20:41.7270000-07:00|40022472|Zeromus|0001A2C0|4469361||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:41.7270000-07:00|10FF0008|Kokosaze Lulusaze|84264|90216|10000|10000|||99.98|96.38|0.00|3.03| +37|2023-10-06T21:20:41.7720000-07:00|10FF0007|Kehabiqo Febiqo|0001A2BA|106175||||||100.24|98.37|0.00|-3.13| +24|2023-10-06T21:20:41.7720000-07:00|40022472|Zeromus|DoT|0|2325|4469361|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|46529|82773|10000|10000|||99.95|93.95|0.00|-2.44| +38|2023-10-06T21:20:41.7720000-07:00|40022472|Zeromus|005A5A00|4460364|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:41.4900000-07:00|Change|10FF0003||| +39|2023-10-06T21:20:41.8620000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.26|96.39|0.00|-1.72| +36|2023-10-06T21:20:41.8620000-07:00|6860|3| +37|2023-10-06T21:20:41.9070000-07:00|10FF000A|Dukaro Nezikaro|0001A2BA|59013||||||99.96|93.32|0.00|-2.43| +39|2023-10-06T21:20:41.9070000-07:00|10FF0004|Buhojaqe Zijaqe|64823|81541|1200|10000|||101.88|92.50|0.00|-2.98| +39|2023-10-06T21:20:41.9950000-07:00|10FF0007|Kehabiqo Febiqo|107473|129844|10000|10000|||100.24|98.36|0.00|-2.83| +39|2023-10-06T21:20:41.9950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.84|101.06|0.00|3.13| +261|2023-10-06T21:20:41.4900000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:20:42.0420000-07:00|10FF0008|Kokosaze Lulusaze|0001A2BF|84264|90216|10000|10000|9||100.91|95.85|0.00|2.83|1F00|0|0|01|03000752|0|41A80000|| +26|2023-10-06T21:20:42.0420000-07:00|752|Angel's Whisper|21.00|40022D3A|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:20:42.0420000-07:00|10FF0003|Gegehi Gehi|0001A2BA|58041||||||99.47|98.44|0.00|3.11| +20|2023-10-06T21:20:42.0420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|101.85|91.99|0.00|-2.99| +38|2023-10-06T21:20:42.0420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|107473|129844|10000|10000|12||100.24|98.31|0.00|-2.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:42.0420000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:20:42.0420000-07:00|10FF0009|Zewo Negiwo|005A5A18|63880|81177|6222|10000|15||102.19|101.30|0.00|-3.04|0|0|0|||||||||||||||| +30|2023-10-06T21:20:42.0420000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0009|Zewo Negiwo|00|81177|129844| +38|2023-10-06T21:20:42.0420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|84264|90216|10000|10000|9||100.91|95.85|0.00|2.83|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:42.0420000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T21:20:42.0420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|29||99.84|101.06|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:42.0420000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +38|2023-10-06T21:20:42.0420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||101.26|96.39|0.00|-1.72|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:42.0420000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +38|2023-10-06T21:20:42.0420000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64823|81541|1200|10000|9||101.85|91.99|0.00|-2.99|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:42.0420000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +38|2023-10-06T21:20:42.0420000-07:00|10FF0003|Gegehi Gehi|005A5A23|58041|73814|4250|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:42.0420000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +38|2023-10-06T21:20:42.0420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59013|82773|10000|10000|8||98.67|92.45|0.00|-2.43|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:42.0420000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|82773|129844| +23|2023-10-06T21:20:42.0850000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +37|2023-10-06T21:20:42.0850000-07:00|40022472|Zeromus|0001A2C2|4455380||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:42.1280000-07:00|40022472|Zeromus|0001A2C1|4422842||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:42.1730000-07:00|10FF0006|Wowobora Gogobora|0001A2BF|81809|81809|10000|10000|29||99.84|101.06|0.00|3.13|1B01|0|0|01|08000752|0|41A80000|| +26|2023-10-06T21:20:42.1730000-07:00|752|Angel's Whisper|21.00|40022D3A|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +261|2023-10-06T21:20:41.6700000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:20:41.6700000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:20:41.6700000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:20:41.6700000-07:00|Change|4002248C||||||||| +20|2023-10-06T21:20:42.2620000-07:00|4002248C|Zeromus|8B77|Umbral Prism|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:20:42.2620000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T21:20:42.2620000-07:00|4002248D|Zeromus|8B77|Umbral Prism|10FF0006|Wowobora Gogobora|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:20:42.2620000-07:00|10FF0006|Wowobora Gogobora|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T21:20:42.2620000-07:00|4002248E|Zeromus|8B77|Umbral Prism|10FF000A|Dukaro Nezikaro|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:20:42.2620000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T21:20:42.2620000-07:00|4002248F|Zeromus|8B77|Umbral Prism|10FF0003|Gegehi Gehi|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:20:42.2620000-07:00|10FF0003|Gegehi Gehi|0000|0000|00D3|0000|0000|0000| +37|2023-10-06T21:20:42.3070000-07:00|10FF0007|Kehabiqo Febiqo|0001A2BF|107473|129844|10000|10000|12||99.94|97.84|0.00|-2.00|1502|0|0|01|05000752|0|41A80000|| +26|2023-10-06T21:20:42.3070000-07:00|752|Angel's Whisper|21.00|40022D3A|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +21|2023-10-06T21:20:42.3070000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|5ADA0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|4422842|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.84|101.06|0.00|3.13|0001A2C3|0|1| +21|2023-10-06T21:20:42.3070000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|1DED0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|4422842|40478540|10000|10000|||100.00|80.10|0.00|0.00|59013|82773|10000|10000|||98.45|92.27|0.00|-2.43|0001A2C4|0|1| +261|2023-10-06T21:20:41.7830000-07:00|Change|10FF0006||||||||||||| +21|2023-10-06T21:20:42.3510000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41714003|356F0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|4422842|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.26|96.39|0.00|-3.06|0001A2C5|0|1| +38|2023-10-06T21:20:42.3510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||101.26|96.39|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:42.3510000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:20:42.3510000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:20:42.4400000-07:00|10FF000A|Dukaro Nezikaro|0001A2BF|59013|82773|10000|10000|8||98.57|92.12|0.00|-3.12|1E03|0|0|01|03000752|0|41A80000|| +26|2023-10-06T21:20:42.4400000-07:00|752|Angel's Whisper|21.00|40022D3A|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +21|2023-10-06T21:20:42.4400000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|752003|12290000|FC1E0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|4422842|40478540|10000|10000|||100.00|80.10|0.00|0.00|63880|81177|6222|10000|||102.20|101.28|0.00|3.02|0001A2C6|0|1| +20|2023-10-06T21:20:42.4400000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|99.47|98.44|0.00|3.11| +37|2023-10-06T21:20:42.5730000-07:00|10FF0003|Gegehi Gehi|0001A2BF|58041|73814|4250|10000|10||99.47|98.44|0.00|3.11|2304|0|0|01|01000752|0|41A80000|| +26|2023-10-06T21:20:42.5730000-07:00|752|Angel's Whisper|21.00|40022D3A|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +261|2023-10-06T21:20:42.1410000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:20:42.7070000-07:00|10FF0009|Zewo Negiwo|0001A2BF|63880|81177|5822|10000|15||102.26|101.19|0.00|-3.05|1805|0|0|01|03000752|0|41A80000|| +26|2023-10-06T21:20:42.7070000-07:00|752|Angel's Whisper|21.00|40022D3A|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +37|2023-10-06T21:20:42.7070000-07:00|40022472|Zeromus|0001A2C4|4415181||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:42.2340000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:20:42.2340000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:20:42.2340000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:20:42.2340000-07:00|Change|4002248D||||||||||||| +21|2023-10-06T21:20:42.7510000-07:00|40022D3A|Seraph|40A4|Seraphic Veil|10FF0009|Zewo Negiwo|4|149B0000|9B000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|63880|81177|5822|10000|||102.26|101.19|0.00|-3.05|73956|77430|10000|10000|||100.48|99.99|0.00|-2.96|0001A2C7|0|1| +39|2023-10-06T21:20:42.7510000-07:00|40022D3A|Seraph|73956|77430|10000|10000|||100.48|99.99|0.00|-2.96| +37|2023-10-06T21:20:42.8400000-07:00|10FF0004|Buhojaqe Zijaqe|0001A2BF|64823|81541|1200|10000|9||101.85|91.81|0.00|-2.98|1C06|0|0|01|06000752|0|41A80000|| +26|2023-10-06T21:20:42.8400000-07:00|752|Angel's Whisper|21.00|40022D3A|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +21|2023-10-06T21:20:42.8860000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|9F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4415181|40478540|10000|10000|||100.00|80.10|0.00|0.00|59013|82773|10000|10000|||99.13|91.47|0.00|-2.44|0001A2C8|0|1| +261|2023-10-06T21:20:42.4240000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:20:42.9300000-07:00|40022472|Zeromus|0001A2C3|4391923||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:42.9300000-07:00|40022472|Zeromus|0001A2C5|4378244||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:42.9300000-07:00|10FF0001|Sesuga Sapisuga|0001A2C5|129071|129071|10000|10000|5||101.26|96.39|0.00|-3.06|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T21:20:42.9300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||101.26|96.39|0.00|-3.06|0|0|0||||||||||||||||||| +261|2023-10-06T21:20:42.4240000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:20:42.9750000-07:00|10FF0001|Sesuga Sapisuga|0001A2BF|129071|129071|10000|10000|5||101.26|96.39|0.00|-3.06|1307|0|0|01|06000752|0|41A80000|| +26|2023-10-06T21:20:42.9750000-07:00|752|Angel's Whisper|21.00|40022D3A|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +39|2023-10-06T21:20:42.9750000-07:00|10FF000A|Dukaro Nezikaro|59840|82773|10000|10000|||99.22|91.36|0.00|-2.33| +261|2023-10-06T21:20:42.4240000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:20:42.9750000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|38AA0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4415181|40478540|10000|10000|||100.00|80.10|0.00|0.00|64823|81541|1200|10000|||101.85|91.81|0.00|-2.98|0001A2C9|0|1| +38|2023-10-06T21:20:42.9750000-07:00|40022D3A|Seraph|005A5A00|73956|77430|10000|10000|0||100.48|99.99|0.00|3.13|0|0|0|||||||||| +30|2023-10-06T21:20:42.9750000-07:00|77B|Summon Order|0.00|40022D3A|Seraph|40022D3A|Seraph|01|77430|77430| +21|2023-10-06T21:20:43.0190000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|154003|5F710000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|4378244|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||99.84|101.06|0.00|3.13|0001A2CA|0|1| +38|2023-10-06T21:20:43.0190000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|29||99.84|101.06|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:43.0190000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:20:42.5280000-07:00|Change|10FF0009||||||||||||||||||||||| +24|2023-10-06T21:20:43.1970000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|F73|84264|90216|10000|10000|||101.63|95.32|0.00|2.23|40022D3A|Seraph|0|73956|77430|10000|10000|||100.48|99.99|0.00|2.97| +38|2023-10-06T21:20:43.1970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88219|90216|10000|10000|9||101.82|95.12|0.00|2.39|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:43.1970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|29||99.81|101.03|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:43.1970000-07:00|A91|Undying Flame|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T21:20:43.2420000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A19|59840|82773|10000|10000|||99.32|91.23|0.00|-2.21|40022D3A|Seraph|0|73956|77430|10000|10000|||100.48|99.99|0.00|2.89| +38|2023-10-06T21:20:43.2420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62425|82773|10000|10000|8||99.32|91.23|0.00|-2.21|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:43.3320000-07:00|10FF0003|Gegehi Gehi|HoT|0|963|58041|73814|4250|10000|||99.47|98.44|0.00|3.11|40022D3A|Seraph|0|73956|77430|10000|10000|||100.48|99.99|0.00|2.89| +38|2023-10-06T21:20:43.3320000-07:00|10FF0003|Gegehi Gehi|005A5A23|60444|73814|4800|10000|10||99.47|98.44|0.00|3.11|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:20:43.3760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|FBA|64823|81541|800|10000|||101.85|91.78|0.00|3.13|40022D3A|Seraph|0|73956|77430|10000|10000|||100.48|99.99|0.00|2.90| +21|2023-10-06T21:20:43.3760000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|24C30000|A3E|340000|200004|3DD28000|11B|258000|0|0|0|0|0|0|0|0|4378244|40478540|10000|10000|||100.00|80.10|0.00|0.00|107473|129844|10000|10000|||95.63|91.99|0.00|-2.40|0001A2CB|0|1| +38|2023-10-06T21:20:43.3760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|68849|81541|1350|10000|9||101.85|91.78|0.00|3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:43.4200000-07:00|40022472|Zeromus|0001A2C8|4375697||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:43.4200000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4378244|40478540|10000|10000|||100.00|80.10|0.00|0.00|88219|90216|10000|10000|||101.99|94.95|-0.01|2.53|0001A2CC|0|1| +24|2023-10-06T21:20:43.4650000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9B0|107473|129844|10000|10000|||95.35|91.41|0.00|2.73|10FF0007|Kehabiqo Febiqo|0|107473|129844|10000|10000|||95.35|91.41|0.00|2.73| +24|2023-10-06T21:20:43.4650000-07:00|40022472|Zeromus|DoT|A92|596|4375697|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9700|10000|||99.81|100.79|0.00|3.13| +24|2023-10-06T21:20:43.4650000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9C8|81809|81809|9700|10000|||99.81|100.79|0.00|3.13|40022D3A|Seraph|0|73956|77430|10000|10000|||100.48|99.99|0.00|2.93| +21|2023-10-06T21:20:43.4650000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|71B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4375697|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.79|94.64|0.00|-2.80|0001A2CD|0|1| +38|2023-10-06T21:20:43.4650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109953|129844|10000|10000|12||95.35|91.41|0.00|2.73|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:20:43.4650000-07:00|40022472|Zeromus|005A5A00|4374267|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:43.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|29||99.81|100.79|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +31|2023-10-06T21:20:43.4650000-07:00|10FF0001||||| +261|2023-10-06T21:20:42.9860000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:20:43.5540000-07:00|10FF0009|Zewo Negiwo|HoT|0|944|63880|81177|5822|10000|||101.26|96.49|0.00|-3.08|10FF0003|Gegehi Gehi|0|60444|73814|4800|10000|||99.47|98.44|0.00|3.11| +24|2023-10-06T21:20:43.5540000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|936|129071|129071|10000|10000|||100.79|94.64|0.00|-2.80|40022D3A|Seraph|0|73956|77430|10000|10000|||100.48|99.99|0.00|2.93| +38|2023-10-06T21:20:43.5540000-07:00|10FF0009|Zewo Negiwo|005A5A18|66252|81177|5822|10000|15||101.26|96.49|0.00|-3.08|0|0|0|||||||||||||||| +38|2023-10-06T21:20:43.5540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||100.79|94.64|0.00|-2.80|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:43.1060000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T21:20:43.6440000-07:00|40022D4E|Ruby Ifrit|005A5A00|0|77698|0|10000|0||101.59|102.84|0.00|3.13|0|0|0|||| +26|2023-10-06T21:20:43.6440000-07:00|30|Well Fed|1229.64|10FF0006|Wowobora Gogobora|40022D4E|Ruby Ifrit|2964|77698|81809| +261|2023-10-06T21:20:43.2060000-07:00|Change|40022D4E||||| +261|2023-10-06T21:20:43.2060000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:20:43.6870000-07:00|40022D56||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:20:43.2060000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:20:43.3040000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:20:43.6890000-07:00|40022D56||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:20:43.7330000-07:00|40022472|Zeromus|0001A2C6|4369618|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:20:43.7330000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +261|2023-10-06T21:20:43.3040000-07:00|Add|40022D56||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:20:43.3040000-07:00|40022D56|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.81|98.85|0.00|-0.01| +23|2023-10-06T21:20:43.7780000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|Cancelled| +37|2023-10-06T21:20:43.7780000-07:00|10FF0009|Zewo Negiwo|0001A2C7|71527||||||100.85|94.32|0.00|-3.06| +37|2023-10-06T21:20:43.7780000-07:00|40022472|Zeromus|0001A2C9|4355112||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:43.3040000-07:00|Change|40022D56||| +21|2023-10-06T21:20:43.8230000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|36F70000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|4369618|40478540|10000|10000|||100.00|80.10|0.00|0.00|88219|90216|10000|10000|||101.92|94.88|0.00|-2.79|0001A2CE|0|1| +37|2023-10-06T21:20:43.8670000-07:00|40022472|Zeromus|0001A2CA|4330679||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:43.4920000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:20:44.0010000-07:00|40022472|Zeromus|0001A2CB|4321268||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:44.0010000-07:00|10FF0007|Kehabiqo Febiqo|0001A2CB|125779||||||93.96|87.82|0.00|-2.85| +37|2023-10-06T21:20:44.0010000-07:00|40022472|Zeromus|0001A2CD|4319449||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:44.1790000-07:00|40022472|Zeromus|0001A2CC|4316891||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:44.2240000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4316891|40478540|10000|10000|||100.00|80.10|0.00|0.00|68849|81541|1350|10000|||106.23|91.12|0.00|1.77|0001A2CF|0|1| +21|2023-10-06T21:20:44.3580000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4316891|40478540|10000|10000|||100.00|80.10|0.00|0.00|60444|73814|4800|10000|||100.05|97.58|0.00|2.64|0001A2D0|0|1| +261|2023-10-06T21:20:43.9150000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:20:44.0340000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:20:44.4020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125779|129844|10000|10000|12||91.89|86.56|0.00|-2.90|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:44.4020000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:20:44.4920000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|736003|1560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4316891|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.43|99.19|0.00|2.87|0001A2D1|0|1| +21|2023-10-06T21:20:44.4920000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|36240000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|4316891|40478540|10000|10000|||100.00|80.10|0.00|0.00|62425|82773|10000|10000|||96.36|88.34|0.00|-2.06|0001A2D2|0|1| +39|2023-10-06T21:20:44.5350000-07:00|10FF0003|Gegehi Gehi|61182|73814|5000|10000|||100.98|96.20|0.00|2.54| +261|2023-10-06T21:20:44.1450000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:20:44.5800000-07:00|40022472|Zeromus|0001A2CE|4302820||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:44.6240000-07:00|10FF0009|Zewo Negiwo|72338|81177|6043|10000|||101.73|92.56|0.00|2.73| +38|2023-10-06T21:20:44.6240000-07:00|10FF0003|Gegehi Gehi|005A5A23|61182|73814|5000|10000|10||101.39|95.67|0.00|2.53|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:44.6240000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:20:44.2390000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:20:44.2390000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:20:44.2390000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:20:44.2390000-07:00|Change|40022D56||| +39|2023-10-06T21:20:44.7140000-07:00|10FF0008|Kokosaze Lulusaze|89121|90216|10000|10000|||97.17|93.02|0.00|-2.00| +34|2023-10-06T21:20:44.7140000-07:00|40022D56|Carbuncle|40022D56|Carbuncle|01| +37|2023-10-06T21:20:44.7580000-07:00|40022472|Zeromus|0001A2CF|4302656||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:44.7580000-07:00|40022472|Zeromus|DoT|0|1C0D|4302820|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|62425|82773|10000|10000|||94.73|87.46|0.00|2.82| +38|2023-10-06T21:20:44.7580000-07:00|40022D3A|Seraph|005A5A00|73956|77430|10000|10000|0||101.06|97.05|0.00|2.95|0|0|0|||| +30|2023-10-06T21:20:44.7580000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40022D3A|Seraph|00|77430|73814| +38|2023-10-06T21:20:44.7580000-07:00|40022472|Zeromus|005A5A00|4295475|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:44.7580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|68849|81541|1350|10000|9||108.65|90.87|0.00|1.70|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:44.7580000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +20|2023-10-06T21:20:44.8470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|109.36|90.82|0.00|1.68| +36|2023-10-06T21:20:44.8470000-07:00|693C|3| +37|2023-10-06T21:20:44.8920000-07:00|40022472|Zeromus|0001A2D0|4295426||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:44.8920000-07:00|40022472|Zeromus|0001A2D2|4281566||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:44.8920000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.38|86.51|0.00|-2.79| +39|2023-10-06T21:20:44.8920000-07:00|10FF0004|Buhojaqe Zijaqe|69664|81541|1550|10000|||109.36|90.82|0.00|1.68| +21|2023-10-06T21:20:44.8920000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|714003|1AE40000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|4295475|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.38|86.51|0.00|-2.79|0001A2D3|0|1| +38|2023-10-06T21:20:44.8920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|89121|90216|10000|10000|9||96.56|92.67|0.00|-2.02|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:44.8920000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +21|2023-10-06T21:20:44.9360000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|CF20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4295475|40478540|10000|10000|||100.00|80.10|0.00|0.00|125779|129844|10000|10000|||90.68|85.67|0.00|-2.97|0001A2D4|0|1| +261|2023-10-06T21:20:44.4330000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:20:44.5260000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:20:44.9800000-07:00|10FF0007|Kehabiqo Febiqo|127077|129844|10000|10000|||90.53|85.55|0.00|-3.02| +261|2023-10-06T21:20:44.5260000-07:00|Change|40022D3A||||||||| +37|2023-10-06T21:20:45.0250000-07:00|40022472|Zeromus|0001A2D1|4281224||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:45.0250000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||101.52|95.31|0.00|2.96| +38|2023-10-06T21:20:45.0250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||98.67|85.57|0.00|-2.81|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:45.0250000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +21|2023-10-06T21:20:45.0700000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|AAB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4281566|40478540|10000|10000|||100.00|80.10|0.00|0.00|62425|82773|10000|10000|||92.57|86.30|0.00|-2.47|0001A2D5|0|1| +261|2023-10-06T21:20:44.6160000-07:00|Change|10FF0009||||||||||||| +38|2023-10-06T21:20:45.1590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127077|129844|10000|10000|12||90.17|85.28|-0.01|-3.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:20:45.1590000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +38|2023-10-06T21:20:45.2930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62425|82773|10000|10000|8||91.15|85.54|0.00|-2.22|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:45.2930000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|82773|73814| +261|2023-10-06T21:20:44.8510000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:20:45.4260000-07:00|10FF0009|Zewo Negiwo|005A5A18|72338|81177|6043|10000|15||101.82|92.39|0.00|2.70|0|0|0||||||||||||| +30|2023-10-06T21:20:45.4260000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|00|81177|73814| +261|2023-10-06T21:20:44.9660000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:20:44.9660000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:20:45.4700000-07:00|40022472|Zeromus|0001A2D4|4277910||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:45.0820000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:45.5160000-07:00|40022472|Zeromus|0001A2D3|4271026||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:45.5160000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|150003|4CD70000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|4277910|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||102.20|92.38|0.00|2.94|0001A2D6|0|1| +38|2023-10-06T21:20:45.5610000-07:00|40022D56|Carbuncle|005A5A00|74223|77698|10000|10000|0||100.04|97.18|0.00|1.31|0|0|0|||| +26|2023-10-06T21:20:45.5610000-07:00|30|Well Fed|1227.72|10FF0006|Wowobora Gogobora|40022D56|Carbuncle|2964|77698|81809| +38|2023-10-06T21:20:45.5610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|29||102.20|92.38|0.00|2.94|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:45.5610000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +37|2023-10-06T21:20:45.6050000-07:00|40022472|Zeromus|0001A2D5|4268295||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:45.2850000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:20:45.7400000-07:00|40022D3A|Seraph|73956|77430|10000|10000|||104.48|93.57|0.00|1.82| +21|2023-10-06T21:20:45.7400000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4268295|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||95.03|85.23|0.00|-3.06|0001A2D7|0|1| +31|2023-10-06T21:20:45.7400000-07:00|10FF0001||||| +21|2023-10-06T21:20:45.7830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|357F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4268295|40478540|10000|10000|||100.00|80.10|0.00|0.00|69664|81541|1550|10000|||109.70|90.90|0.00|-2.41|0001A2D8|0|1| +261|2023-10-06T21:20:45.3840000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:20:45.8730000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|31720000|143E|340000|4|25AD8000|4|17458000|11B|2A8000|0|0|0|0|0|0|4268295|40478540|10000|10000|||100.00|80.10|0.00|0.00|127077|129844|10000|10000|||90.14|85.23|0.00|-3.02|0001A2D9|0|1| +38|2023-10-06T21:20:45.9620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|29||102.19|90.51|0.00|-2.92|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:45.9620000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:20:45.4790000-07:00|Change|40022D3A||||||||| +39|2023-10-06T21:20:46.0060000-07:00|10FF000A|Dukaro Nezikaro|63252|82773|10000|10000|||87.81|84.00|0.00|-2.75| +21|2023-10-06T21:20:46.0960000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|F360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4268295|40478540|10000|10000|||100.00|80.10|0.00|0.00|89121|90216|10000|10000|||94.10|86.67|0.00|2.97|0001A2DA|0|1| +261|2023-10-06T21:20:45.5770000-07:00|Change|40022D56||||||||| +21|2023-10-06T21:20:46.1400000-07:00|40022472|Zeromus|8CFA|Flow of the Abyss|40022472|Zeromus|1B|8CFA8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4268295|40478540|10000|10000|||100.00|80.10|0.00|0.00|4268295|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A2DB|0|1| +261|2023-10-06T21:20:45.6880000-07:00|Change|40022472||||| +24|2023-10-06T21:20:46.2300000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|947|89121|90216|10000|10000|||94.78|86.37|0.00|2.22|40022D3A|Seraph|0|73956|77430|10000|10000|||107.02|93.25|0.00|1.69| +38|2023-10-06T21:20:46.2300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|9||94.78|86.37|0.00|2.22|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:46.2750000-07:00|40022472|Zeromus|0001A2D6|4248624||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:46.2750000-07:00|40022472|Zeromus|0001A2D7|4246716||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:46.2750000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9EC|63252|82773|10000|10000|||87.54|84.03|0.00|-2.89|40022D3A|Seraph|0|73956|77430|10000|10000|||107.64|93.19|0.00|1.68| +38|2023-10-06T21:20:46.2750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65792|82773|10000|10000|8||87.54|84.03|0.00|-2.89|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:46.3190000-07:00|10FF0003|Gegehi Gehi|HoT|0|1037|61182|73814|5000|10000|||109.38|89.42|0.00|2.21|40022D3A|Seraph|0|73956|77430|10000|10000|||107.64|93.19|0.00|1.68| +21|2023-10-06T21:20:46.3190000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2F710000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|4268295|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.55|86.02|0.00|2.22|0001A2DC|0|1| +38|2023-10-06T21:20:46.3190000-07:00|10FF0003|Gegehi Gehi|005A5A23|65333|73814|5550|10000|10||109.38|89.42|0.00|2.21|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:20:46.4080000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|FF0|69664|81541|1150|10000|||109.72|90.90|0.00|2.46|40022D3A|Seraph|0|73956|77430|10000|10000|||108.19|93.14|0.00|1.69| +38|2023-10-06T21:20:46.4080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73744|81541|1700|10000|9||109.72|90.90|0.00|2.46|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:46.0370000-07:00|Change|10FF0004||||||||||||||||||| +24|2023-10-06T21:20:46.4970000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FDA|127077|129844|10000|10000|||88.19|83.73|0.00|3.00|10FF0007|Kehabiqo Febiqo|0|127077|129844|10000|10000|||88.19|83.73|0.00|3.00| +24|2023-10-06T21:20:46.4970000-07:00|10FF0006|Wowobora Gogobora|HoT|0|94C|81809|81809|10000|10000|||101.64|88.71|0.00|-1.49|40022D3A|Seraph|0|73956|77430|10000|10000|||108.53|93.10|0.00|1.87| +20|2023-10-06T21:20:46.4970000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|110.33|88.71|0.00|2.20| +38|2023-10-06T21:20:46.4970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|12||88.19|83.73|0.00|3.00|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:20:46.4970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|29||101.64|88.71|0.00|-1.49|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:46.4970000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T21:20:46.5410000-07:00|10FF0009|Zewo Negiwo|HoT|0|925|72338|81177|6043|10000|||101.49|91.20|0.00|2.78|40022D3A|Seraph|0|73956|77430|10000|10000|||108.53|93.10|0.00|1.87| +38|2023-10-06T21:20:46.5410000-07:00|10FF0009|Zewo Negiwo|005A5A18|74679|81177|6043|10000|15||101.49|91.20|0.00|2.78|0|0|0||||||||||||| +261|2023-10-06T21:20:46.1490000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:20:46.5850000-07:00|40022472|Zeromus|0001A2D8|4233021||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:46.5860000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|948|129071|129071|10000|10000|||95.08|84.18|0.00|3.12|40022D3A|Seraph|0|73956|77430|10000|10000|||108.88|93.07|0.00|2.05| +38|2023-10-06T21:20:46.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||95.08|84.18|0.00|3.12|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:46.2470000-07:00|Change|10FF0003||||||||||||||||||||||| +38|2023-10-06T21:20:46.7630000-07:00|40022D58||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:20:46.7630000-07:00|40022D58||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:20:46.8520000-07:00|40022472|Zeromus|0001A2DA|4229127||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:20:46.4430000-07:00|40022D58|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||109.81|92.85|0.00|-2.95| +261|2023-10-06T21:20:46.4430000-07:00|Add|40022D58||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:20:46.4430000-07:00|Remove|40022D49| +261|2023-10-06T21:20:46.4430000-07:00|Change|40022D58||| +261|2023-10-06T21:20:46.5360000-07:00|Change|40022D3A||||||||| +37|2023-10-06T21:20:47.1190000-07:00|40022472|Zeromus|0001A2DC|4216982||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:47.2090000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|102.18|88.29|0.00|2.90| +261|2023-10-06T21:20:46.7630000-07:00|Change|10FF0009||||||||||||||||||| +22|2023-10-06T21:20:47.2550000-07:00|4002248C|Zeromus|8B77|Umbral Prism|10FF0008|Kokosaze Lulusaze|750003|C0CA0000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||95.01|84.76|0.00|-2.26|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A2DD|0|2| +22|2023-10-06T21:20:47.2550000-07:00|4002248C|Zeromus|8B77|Umbral Prism|10FF0001|Sesuga Sapisuga|750003|72670000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||95.15|83.79|0.00|2.22|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A2DD|1|2| +22|2023-10-06T21:20:47.2550000-07:00|4002248D|Zeromus|8B77|Umbral Prism|10FF0006|Wowobora Gogobora|750003|7C060000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||102.21|88.06|0.00|-1.36|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A2DE|0|2| +22|2023-10-06T21:20:47.2550000-07:00|4002248D|Zeromus|8B77|Umbral Prism|10FF0009|Zewo Negiwo|750003|A1790000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|74679|81177|6043|10000|||102.12|87.78|0.00|3.01|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A2DE|1|2| +22|2023-10-06T21:20:47.2550000-07:00|4002248E|Zeromus|8B77|Umbral Prism|10FF000A|Dukaro Nezikaro|750003|CD020000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|65792|82773|10000|10000|||87.39|83.92|0.00|-3.07|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A2DF|0|2| +22|2023-10-06T21:20:47.2550000-07:00|4002248E|Zeromus|8B77|Umbral Prism|10FF0007|Kehabiqo Febiqo|750003|3D480000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||87.82|83.63|0.00|-3.02|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A2DF|1|2| +22|2023-10-06T21:20:47.2550000-07:00|4002248F|Zeromus|8B77|Umbral Prism|10FF0003|Gegehi Gehi|750003|B7F40000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|65333|73814|5550|10000|||111.44|89.56|0.00|-2.26|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A2E0|0|2| +22|2023-10-06T21:20:47.2550000-07:00|4002248F|Zeromus|8B77|Umbral Prism|10FF0004|Buhojaqe Zijaqe|750003|B2930000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|73744|81541|1700|10000|||110.87|89.72|0.00|2.18|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A2E0|1|2| +21|2023-10-06T21:20:47.2550000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42710003|34F40000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|4216982|40478540|10000|10000|||100.00|80.10|0.00|0.00|65792|82773|10000|10000|||87.39|83.92|0.00|-3.07|0001A2E1|0|1| +21|2023-10-06T21:20:47.2550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|BEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4216982|40478540|10000|10000|||100.00|80.10|0.00|0.00|65792|82773|10000|10000|||87.39|83.92|0.00|-3.07|0001A2E2|0|1| +38|2023-10-06T21:20:47.2550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|12||87.82|83.63|0.00|-3.02|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:47.2550000-07:00|B7D|Magic Vulnerability Up|2.00|4002248E|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:20:47.2550000-07:00|10FF0009|Zewo Negiwo|005A5A18|74679|81177|6043|10000|15||102.12|87.78|0.00|3.01|0|0|0|||||||||||||||| +26|2023-10-06T21:20:47.2550000-07:00|B7D|Magic Vulnerability Up|2.00|4002248D|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +38|2023-10-06T21:20:47.2550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|9||95.01|84.76|0.00|-2.26|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:47.2550000-07:00|B7D|Magic Vulnerability Up|2.00|4002248C|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +261|2023-10-06T21:20:46.7630000-07:00|Change|4002248F||||||||||||| +38|2023-10-06T21:20:47.2550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|29||102.21|88.06|0.00|-1.36|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:47.2550000-07:00|B7D|Magic Vulnerability Up|2.00|4002248D|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T21:20:47.2550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|5||95.15|83.79|0.00|2.22|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:47.2550000-07:00|B7D|Magic Vulnerability Up|2.00|4002248C|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:20:47.2550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73744|81541|1700|10000|9||110.87|89.72|0.00|2.18|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:47.2550000-07:00|B7D|Magic Vulnerability Up|2.00|4002248F|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +261|2023-10-06T21:20:46.7630000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:20:46.7630000-07:00|Change|4002248E||||||||||||| +38|2023-10-06T21:20:47.2550000-07:00|10FF0003|Gegehi Gehi|005A5A23|65333|73814|5550|10000|10||111.44|89.56|0.00|-2.26|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:47.2550000-07:00|B7D|Magic Vulnerability Up|2.00|4002248F|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +261|2023-10-06T21:20:46.7630000-07:00|Change|4002248C||||||||||||| +38|2023-10-06T21:20:47.2550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65792|82773|10000|10000|8||87.39|83.92|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:47.2550000-07:00|B7D|Magic Vulnerability Up|2.00|4002248E|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +261|2023-10-06T21:20:46.7630000-07:00|Remove|40022D4E| +04|2023-10-06T21:20:46.8820000-07:00|40022D4E|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||101.59|102.84|0.00|3.13| +20|2023-10-06T21:20:47.3440000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|110.97|89.64|0.00|2.17| +37|2023-10-06T21:20:47.3880000-07:00|40022472|Zeromus|0001A2D9|4204324||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:47.3880000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1ECA0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|4216982|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||95.15|83.79|0.00|2.22|0001A2E3|0|1| +261|2023-10-06T21:20:46.9930000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:20:47.5220000-07:00|10FF0003|Gegehi Gehi|66071|73814|5750|10000|||111.44|89.56|0.00|-2.26| +39|2023-10-06T21:20:47.6110000-07:00|10FF0009|Zewo Negiwo|75490|81177|6264|10000|||102.05|87.15|0.00|-3.07| +21|2023-10-06T21:20:47.6570000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4204324|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||102.18|88.46|0.00|-0.72|0001A2E4|0|1| +39|2023-10-06T21:20:47.7010000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||94.84|84.70|-0.01|-1.57| +24|2023-10-06T21:20:47.7460000-07:00|40022472|Zeromus|DoT|0|1BB7|4204324|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|65792|82773|10000|10000|||87.22|83.77|0.00|1.85| +38|2023-10-06T21:20:47.7460000-07:00|40022472|Zeromus|005A5A00|4197229|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:47.2870000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T21:20:47.2870000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:20:47.2870000-07:00|Change|40022D58||||||||||| +37|2023-10-06T21:20:47.7890000-07:00|40022472|Zeromus|0001A2E2|4194179||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:20:47.7890000-07:00|40022D58|Ruby Carbuncle|40022D58|Ruby Carbuncle|01| +261|2023-10-06T21:20:47.2870000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:20:47.8800000-07:00|10FF0008|Kokosaze Lulusaze|0001A2DD|40862|90216|10000|10000|0||94.83|84.70|0.00|-1.56|1F00|0|0|02|02000B7D|0|3FB5C290|||||| +37|2023-10-06T21:20:47.8800000-07:00|10FF0006|Wowobora Gogobora|0001A2DE|50059|81809|10000|10000|0||102.17|88.20|0.00|-1.40|1B00|0|0|03|0B7D|0|3FB5C290|||||||||| +37|2023-10-06T21:20:47.8800000-07:00|10FF000A|Dukaro Nezikaro|0001A2DF|13310|82773|10000|10000|0||87.21|83.76|0.00|1.85|1E00|0|0|02|04000B7D|0|3FB5C290|||||| +37|2023-10-06T21:20:47.8800000-07:00|10FF0003|Gegehi Gehi|0001A2E0|18979|73814|5750|10000|0||111.44|89.56|0.00|-2.26|2300|0|0|02|03000B7D|0|3FB5C290|||||| +37|2023-10-06T21:20:47.8800000-07:00|40022472|Zeromus|0001A2E1|4180623||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:47.8800000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||95.15|83.79|0.00|2.22| +39|2023-10-06T21:20:47.8800000-07:00|10FF0004|Buhojaqe Zijaqe|74559|81541|1900|10000|||111.47|89.28|0.00|-2.25| +36|2023-10-06T21:20:47.8800000-07:00|6A18|3| +38|2023-10-06T21:20:47.8800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|40862|90216|10000|10000|0||94.83|84.70|0.00|-1.56|0|0|0||||||||||||| +30|2023-10-06T21:20:47.8800000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:20:47.8800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50059|81809|10000|10000|0||102.17|88.20|0.00|-1.40|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:47.8800000-07:00|A8E|Radiant Aegis|0.00|40022D4B|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +30|2023-10-06T21:20:47.8800000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T21:20:47.8800000-07:00|10FF0003|Gegehi Gehi|005A5A23|18979|73814|5750|10000|0||111.44|89.56|0.00|-2.26|0|0|0|||||||||||||||| +30|2023-10-06T21:20:47.8800000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:20:47.8800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|13310|82773|10000|10000|0||87.21|83.76|0.00|1.85|0|0|0|||||||||||||||| +30|2023-10-06T21:20:47.8800000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:20:47.9240000-07:00|10FF0001|Sesuga Sapisuga|0001A2DD|99784|129071|10000|10000|0||95.15|83.79|0.00|2.22|1301|0|0|02|03000B7D|0|3FAFDF3C|||||| +37|2023-10-06T21:20:47.9240000-07:00|10FF0009|Zewo Negiwo|0001A2DE|34153|81177|6264|10000|0||102.04|87.02|0.00|-3.03|1801|0|0|02|02000000|0|0|||||| +37|2023-10-06T21:20:47.9240000-07:00|10FF0007|Kehabiqo Febiqo|0001A2DF|114156|129844|10000|10000|0||87.82|83.63|0.00|-3.02|1501|0|0|02|02000B7D|0|3FAFDF3C|||||| +37|2023-10-06T21:20:47.9240000-07:00|10FF0004|Buhojaqe Zijaqe|0001A2E0|28844|81541|1900|10000|0||111.47|89.28|0.00|-2.25|1C01|0|0|02|03000B7D|0|3FAFDF3C|||||| +21|2023-10-06T21:20:47.9240000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|754003|38BC0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|4194179|40478540|10000|10000|||100.00|80.10|0.00|0.00|66071|73814|5750|10000|||111.44|89.56|0.00|-2.26|0001A2E5|0|1| +38|2023-10-06T21:20:47.9240000-07:00|10FF0003|Gegehi Gehi|005A5A23|18979|73814|5550|10000|0||111.44|89.56|0.00|-2.26|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:47.9240000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:20:47.9240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114156|129844|10000|10000|0||87.82|83.63|0.00|-3.02|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:47.9240000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:20:47.9240000-07:00|10FF0009|Zewo Negiwo|005A5A18|34153|81177|6264|10000|0||102.04|87.02|0.00|-3.03|0|0|0|||||||||||||||| +30|2023-10-06T21:20:47.9240000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:20:47.9240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|99784|129071|10000|10000|0||95.15|83.79|0.00|2.22|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:47.9240000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T21:20:47.9240000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|28844|81541|1900|10000|0||111.47|89.28|0.00|-2.25|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:47.9240000-07:00|77D|Seraphic Veil|0.00|40022D3A|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +39|2023-10-06T21:20:47.9680000-07:00|10FF0007|Kehabiqo Febiqo|115454|129844|10000|10000|||87.82|83.63|0.00|-3.02| +39|2023-10-06T21:20:48.0130000-07:00|10FF0006|Wowobora Gogobora|50877|81809|10000|10000|||102.18|88.03|0.00|-1.90| +20|2023-10-06T21:20:48.0130000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|102.18|88.03|0.00|-1.90| +261|2023-10-06T21:20:47.5020000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T21:20:47.5020000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T21:20:48.0140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4180623|40478540|10000|10000|||100.00|80.10|0.00|0.00|99784|129071|10000|10000|||95.15|83.79|0.00|2.22|0001A2E6|0|1| +21|2023-10-06T21:20:48.0140000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|2D870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4180623|40478540|10000|10000|||100.00|80.10|0.00|0.00|13310|82773|10000|10000|||87.21|83.76|0.00|1.85|0001A2E7|0|1| +31|2023-10-06T21:20:48.0140000-07:00|10FF0001||||| +257|2023-10-06T21:20:48.0570000-07:00|80034E7C|00200004|03|00|0000| +21|2023-10-06T21:20:48.1020000-07:00|40022490|Zeromus|8B82|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|100.00|0.00|1.57|0001A2E8|0|0| +261|2023-10-06T21:20:47.6220000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:20:48.1460000-07:00|40022472|Zeromus|0001A2E3|4172741||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:48.1900000-07:00|40022472|Zeromus|0001A2E4|4172583||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:48.2800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|33320000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4172583|40478540|10000|10000|||100.00|80.10|0.00|0.00|28844|81541|1900|10000|||111.47|89.28|0.00|-2.25|0001A2E9|0|1| +21|2023-10-06T21:20:48.3250000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|712003|253F0000|4|26A68000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|4172583|40478540|10000|10000|||100.00|80.10|0.00|0.00|115454|129844|10000|10000|||87.82|83.63|0.00|3.11|0001A2EA|0|1| +21|2023-10-06T21:20:48.3250000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4172583|40478540|10000|10000|||100.00|80.10|0.00|0.00|115454|129844|10000|10000|||87.82|83.63|0.00|3.11|0001A2EB|0|1| +38|2023-10-06T21:20:48.4140000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115454|129844|10000|10000|0||87.82|83.63|0.00|1.86|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:48.4140000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +21|2023-10-06T21:20:48.4570000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|15190000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|13310|82773|10000|10000|||87.21|83.76|0.00|1.85|73956|77430|10000|10000|||111.52|91.37|0.00|2.80|0001A2EC|0|1| +261|2023-10-06T21:20:47.9670000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:20:48.5470000-07:00|40022472|Zeromus|0001A2E6|4170752||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:48.6370000-07:00|40022472|Zeromus|0001A2E7|4159097||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:48.6370000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|1E870000|FC680E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|0001A2ED|0|8| +22|2023-10-06T21:20:48.6370000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|4|1F680000|FC680E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|50877|81809|10000|10000|||102.19|87.57|0.00|-2.86|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|0001A2ED|1|8| +22|2023-10-06T21:20:48.6370000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|1EA80000|FC680E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|40862|90216|10000|10000|||94.83|84.70|0.00|-1.56|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|0001A2ED|2|8| +22|2023-10-06T21:20:48.6370000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|1EAB0000|FC680E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|99784|129071|10000|10000|||95.15|83.79|0.00|2.22|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|0001A2ED|3|8| +22|2023-10-06T21:20:48.6370000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|1FFA0000|FC680E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|28844|81541|1500|10000|||111.47|89.28|0.00|-2.25|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|0001A2ED|4|8| +22|2023-10-06T21:20:48.6370000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|4|1F270000|FC680E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|18979|73814|5550|10000|||111.44|89.56|0.00|-2.26|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|0001A2ED|5|8| +22|2023-10-06T21:20:48.6370000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|1ED20000|FC680E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|115454|129844|10000|10000|||87.82|83.66|0.00|1.55|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|0001A2ED|6|8| +22|2023-10-06T21:20:48.6370000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|1FC70000|FC680E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|13310|82773|10000|10000|||87.21|83.76|0.00|1.85|34153|81177|6264|10000|||102.04|87.02|0.00|-3.03|0001A2ED|7|8| +37|2023-10-06T21:20:48.6810000-07:00|40022472|Zeromus|0001A2E5|4144573||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:48.7700000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4144573|40478540|10000|10000|||100.00|80.10|0.00|0.00|40862|90216|10000|10000|||94.83|84.70|0.00|-1.56|0001A2EE|0|1| +261|2023-10-06T21:20:48.2980000-07:00|Change|40022D56||||||||| +261|2023-10-06T21:20:48.3880000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:20:48.3880000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:20:48.8150000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|722003|A3EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4144573|40478540|10000|10000|||100.00|80.10|0.00|0.00|40862|90216|10000|10000|||94.83|84.70|0.00|-1.56|0001A2EF|0|1| +37|2023-10-06T21:20:48.8580000-07:00|40022472|Zeromus|0001A2EA|4135038||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:48.8580000-07:00|10FF0007|Kehabiqo Febiqo|0001A2EA|125348||||||87.82|83.72|0.00|0.72| +37|2023-10-06T21:20:48.8580000-07:00|40022472|Zeromus|0001A2EB|4132138||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:48.8580000-07:00|40022D58|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||111.66|91.23|0.00|-2.31|0|0|0||||||| +26|2023-10-06T21:20:48.8580000-07:00|30|Well Fed|1774.18|10FF0004|Buhojaqe Zijaqe|40022D58|Ruby Carbuncle|2968|77430|81541| +26|2023-10-06T21:20:48.8580000-07:00|7AE|Summon Order IV|30.00|40022D58|Ruby Carbuncle|40022D58|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:20:48.8580000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28844|81541|1500|10000|||111.47|89.28|0.00|-2.25|28844|81541|1500|10000|||111.47|89.28|0.00|-2.25|0001A2F0|0|1| +21|2023-10-06T21:20:48.9030000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|38DF0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|4144573|40478540|10000|10000|||100.00|80.10|0.00|0.00|18979|73814|5550|10000|||111.44|89.56|0.00|-2.26|0001A2F1|0|1| +38|2023-10-06T21:20:48.9030000-07:00|10FF0003|Gegehi Gehi|005A5A23|18979|73814|5250|10000|0||111.44|89.56|0.00|-2.26|0|0|0|||||||||||||||| +30|2023-10-06T21:20:48.9030000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:20:48.9920000-07:00|10FF000A|Dukaro Nezikaro|14137|82773|10000|10000|||87.21|83.76|0.00|1.85| +37|2023-10-06T21:20:49.0820000-07:00|40022472|Zeromus|0001A2E9|4119032||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:49.1270000-07:00|40022472|Zeromus|005A5A00|4119032|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:20:49.1270000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +24|2023-10-06T21:20:49.2160000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9BE|40862|90216|10000|10000|||94.83|84.85|0.00|1.78|40022D3A|Seraph|0|0|77430|0|10000|||109.58|93.00|0.00|-2.39| +38|2023-10-06T21:20:49.2160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|43356|90216|10000|10000|0||94.83|84.85|0.00|1.78|0|0|0||||||||||||| +37|2023-10-06T21:20:49.2610000-07:00|10FF000A|Dukaro Nezikaro|0001A2EC|19538||||||87.21|83.76|0.00|1.85| +24|2023-10-06T21:20:49.2610000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9EF|14137|82773|10000|10000|||87.21|83.76|0.00|1.85|4002248E|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T21:20:49.2610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125348|129844|10000|10000|0||88.81|85.84|0.00|0.53|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:49.2610000-07:00|B7D|Magic Vulnerability Up|0.00|4002248E|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:20:49.2610000-07:00|10FF0009|Zewo Negiwo|005A5A18|34153|81177|5264|10000|0||102.04|87.02|0.00|-3.03|0|0|0||||||||||||| +30|2023-10-06T21:20:49.2610000-07:00|B7D|Magic Vulnerability Up|0.00|4002248D|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +38|2023-10-06T21:20:49.2610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|43356|90216|10000|10000|0||94.83|84.85|0.00|1.78|0|0|0||||||||||||| +30|2023-10-06T21:20:49.2610000-07:00|B7D|Magic Vulnerability Up|0.00|4002248C|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T21:20:49.2610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50877|81809|10000|10000|0||102.19|87.57|0.00|-2.86|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:49.2610000-07:00|B7D|Magic Vulnerability Up|0.00|4002248D|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T21:20:49.2610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|99784|129071|10000|10000|0||95.15|83.79|0.00|2.22|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:49.2610000-07:00|B7D|Magic Vulnerability Up|0.00|4002248C|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:20:49.2610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|28844|81541|1500|10000|0||111.47|89.28|0.00|-2.25|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:49.2610000-07:00|B7D|Magic Vulnerability Up|0.00|4002248F|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T21:20:49.2610000-07:00|10FF0003|Gegehi Gehi|005A5A23|18979|73814|5250|10000|0||111.44|89.56|0.00|-2.26|0|0|0|||||||||||||||| +30|2023-10-06T21:20:49.2610000-07:00|B7D|Magic Vulnerability Up|0.00|4002248F|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T21:20:49.2610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|22081|82773|10000|10000|0||87.21|83.76|0.00|1.85|0|0|0||||||||||||| +30|2023-10-06T21:20:49.2610000-07:00|B7D|Magic Vulnerability Up|0.00|4002248E|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +24|2023-10-06T21:20:49.3060000-07:00|10FF0003|Gegehi Gehi|HoT|0|9AD|18979|73814|5250|10000|||111.44|89.56|0.00|-2.26|10FF0003|Gegehi Gehi|0|18979|73814|5250|10000|||111.44|89.56|0.00|-2.26| +21|2023-10-06T21:20:49.3060000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|10D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4119032|40478540|10000|10000|||100.00|80.10|0.00|0.00|28844|81541|1500|10000|||111.47|89.28|0.00|-2.25|0001A2F2|0|1| +21|2023-10-06T21:20:49.3060000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4119032|40478540|10000|10000|||100.00|80.10|0.00|0.00|18979|73814|5250|10000|||111.44|89.56|0.00|-2.26|0001A2F3|0|1| +38|2023-10-06T21:20:49.3060000-07:00|10FF0003|Gegehi Gehi|005A5A23|21456|73814|5800|10000|0||111.44|89.56|0.00|-2.26|0|0|0|||||||||||||||| +24|2023-10-06T21:20:49.3930000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|923|28844|81541|1500|10000|||111.44|89.28|0.00|-2.08|40022D3A|Seraph|0|0|77430|0|10000|||109.58|93.00|0.00|-2.39| +38|2023-10-06T21:20:49.3930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|31183|81541|2050|10000|0||111.44|89.28|0.00|-2.08|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:20:49.4390000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18FB0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|4119032|40478540|10000|10000|||100.00|80.10|0.00|0.00|22081|82773|10000|10000|||87.21|83.76|0.00|1.85|0001A2F4|0|1| +21|2023-10-06T21:20:49.4390000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4119032|40478540|10000|10000|||100.00|80.10|0.00|0.00|22081|82773|10000|10000|||87.21|83.76|0.00|1.85|0001A2F5|0|1| +37|2023-10-06T21:20:49.4830000-07:00|10FF0009|Zewo Negiwo|0001A2ED|41968|81177|5264|10000|0||102.04|87.02|0.00|-3.03|1800|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:20:49.4830000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +24|2023-10-06T21:20:49.4830000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1037|125348|129844|10000|10000|||89.68|86.95|0.00|0.60|10FF0007|Kehabiqo Febiqo|0|125348|129844|10000|10000|||89.68|86.95|0.00|0.60| +24|2023-10-06T21:20:49.4830000-07:00|10FF0006|Wowobora Gogobora|HoT|0|952|50877|81809|10000|10000|||102.19|87.57|0.00|-2.86|40022D3A|Seraph|0|0|77430|0|10000|||109.58|93.00|0.00|-2.39| +38|2023-10-06T21:20:49.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129499|129844|10000|10000|0||89.68|86.95|0.00|0.60|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:49.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53263|81809|10000|10000|0||102.19|87.57|0.00|-2.86|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:49.0410000-07:00|Change|10FF0004||||||| +37|2023-10-06T21:20:49.5280000-07:00|40022472|Zeromus|0001A2EE|4116672||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:20:49.5280000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|24A80000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|21456|73814|5800|10000|||111.44|89.56|0.00|-2.26|73956|77430|10000|10000|||111.68|91.20|0.00|-1.87|0001A2F6|0|6| +22|2023-10-06T21:20:49.5280000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|200004|3AE80000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|31183|81541|2050|10000|||111.44|89.28|0.00|-1.89|73956|77430|10000|10000|||111.68|91.20|0.00|-1.87|0001A2F6|1|6| +22|2023-10-06T21:20:49.5280000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|200004|3D310000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|53263|81809|10000|10000|||102.19|87.57|0.00|-2.86|73956|77430|10000|10000|||111.68|91.20|0.00|-1.87|0001A2F6|2|6| +22|2023-10-06T21:20:49.5280000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0009|Zewo Negiwo|4|25C30000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|41968|81177|5264|10000|||102.04|87.02|0.00|-3.03|73956|77430|10000|10000|||111.68|91.20|0.00|-1.87|0001A2F6|3|6| +22|2023-10-06T21:20:49.5280000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|256C0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|43356|90216|10000|10000|||94.83|85.37|0.00|0.62|73956|77430|10000|10000|||111.68|91.20|0.00|-1.87|0001A2F6|4|6| +22|2023-10-06T21:20:49.5280000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|24110000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|99784|129071|10000|10000|||95.15|83.79|0.00|2.22|73956|77430|10000|10000|||111.68|91.20|0.00|-1.87|0001A2F6|5|6| +24|2023-10-06T21:20:49.5280000-07:00|10FF0009|Zewo Negiwo|HoT|0|2DDF|41968|81177|5264|10000|||102.04|87.02|0.00|-3.03|40022D3A|Seraph|0|0|77430|0|10000|||109.58|93.00|0.00|-2.39| +38|2023-10-06T21:20:49.5280000-07:00|10FF0009|Zewo Negiwo|005A5A18|53711|81177|5264|10000|0||102.04|87.02|0.00|-3.03|0|0|0||||||||||||| +24|2023-10-06T21:20:49.5730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|99F|99784|129071|10000|10000|||95.15|83.79|0.00|2.22|40022D3A|Seraph|0|0|77430|0|10000|||109.58|93.00|0.00|-2.39| +38|2023-10-06T21:20:49.5730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102247|129071|10000|10000|0||95.15|83.79|0.00|2.22|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:20:49.6170000-07:00|10FF0006|Wowobora Gogobora|0001A2ED|61303|81809|10000|10000|0||102.19|87.57|0.00|-2.86|1B01|0|0|01|96|0|41700000|| +26|2023-10-06T21:20:49.6170000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:20:49.6600000-07:00|40022472|Zeromus|0001A2F1|4102113||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:49.6600000-07:00|40022D56|Carbuncle|77698|77698|10000|10000|||100.66|88.79|0.00|-2.83| +22|2023-10-06T21:20:49.6600000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0009|Zewo Negiwo|200004|515F0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|0001A2F7|0|8| +22|2023-10-06T21:20:49.6600000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|308C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|53263|81809|10000|10000|||102.19|87.57|0.00|-2.86|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|0001A2F7|1|8| +22|2023-10-06T21:20:49.6600000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|200004|51BA0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|43356|90216|10000|10000|||94.83|85.50|0.00|0.31|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|0001A2F7|2|8| +22|2023-10-06T21:20:49.6600000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|30D10000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|102247|129071|10000|10000|||95.15|83.79|0.00|2.22|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|0001A2F7|3|8| +22|2023-10-06T21:20:49.6600000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|200004|4DE00000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|31183|81541|2050|10000|||111.44|89.28|0.00|-1.71|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|0001A2F7|4|8| +22|2023-10-06T21:20:49.6600000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|4FD40000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|21456|73814|5800|10000|||111.43|89.56|-0.02|-2.24|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|0001A2F7|5|8| +22|2023-10-06T21:20:49.6600000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|331F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129499|129844|10000|10000|||90.62|87.99|0.00|0.67|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|0001A2F7|6|8| +22|2023-10-06T21:20:49.6600000-07:00|10FF0009|Zewo Negiwo|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|32680000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|22081|82773|10000|10000|||87.21|83.76|0.00|1.85|53711|81177|5264|10000|||102.04|87.03|0.00|2.75|0001A2F7|7|8| +37|2023-10-06T21:20:49.7500000-07:00|10FF0008|Kokosaze Lulusaze|0001A2ED|51204|90216|10000|10000|0||94.83|85.63|-0.01|0.03|1F02|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:20:49.7500000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +261|2023-10-06T21:20:49.3430000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:20:49.8380000-07:00|40022472|Zeromus|0001A2F2|4101844||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:49.8380000-07:00|40022472|Zeromus|0001A2F3|4101813||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:49.8380000-07:00|40022472|Zeromus|0001A2F4|4095418||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:49.8830000-07:00|10FF0001|Sesuga Sapisuga|0001A2ED|110098|129071|10000|10000|0||95.15|83.79|0.00|2.22|1303|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:20:49.8830000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:20:49.8830000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|2AA10000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|4102113|40478540|10000|10000|||100.00|80.10|0.00|0.00|102247|129071|10000|10000|||95.15|83.79|0.00|2.22|0001A2F8|0|1| +38|2023-10-06T21:20:49.8830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110098|129071|10000|10000|0||95.15|83.79|0.00|2.22|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:49.8830000-07:00|76E|Sword Oath|23.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T21:20:49.9710000-07:00|40022472|Zeromus|0001A2EF|4053452||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:49.9710000-07:00|40022472|Zeromus|0001A2F5|4051260||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:50.0150000-07:00|10FF0004|Buhojaqe Zijaqe|0001A2ED|39369|81541|2050|10000|0||108.88|89.66|0.00|-1.46|1C04|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:20:50.0150000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:20:50.1490000-07:00|10FF0003|Gegehi Gehi|0001A2ED|29431|73814|5800|10000|0||110.81|91.21|0.00|-1.97|2305|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:20:50.1490000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +261|2023-10-06T21:20:49.7440000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:20:50.2380000-07:00|10FF0009|Zewo Negiwo|0001A2F7|74542||||||102.11|87.36|0.00|0.51| +37|2023-10-06T21:20:50.2830000-07:00|10FF0007|Kehabiqo Febiqo|0001A2ED|129844|129844|10000|10000|0||93.17|90.75|0.00|1.48|1506|0|0|01|01000096|0|41700000|| +26|2023-10-06T21:20:50.2830000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +21|2023-10-06T21:20:50.2830000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|58A10000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|4051260|40478540|10000|10000|||100.00|80.10|0.00|0.00|61303|81809|10000|10000|||102.19|87.57|0.00|-2.86|0001A2F9|0|1| +21|2023-10-06T21:20:50.2830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4051260|40478540|10000|10000|||100.00|80.10|0.00|0.00|110098|129071|10000|10000|||95.18|85.45|0.00|1.06|0001A2FA|0|1| +31|2023-10-06T21:20:50.2830000-07:00|10FF0001||||| +261|2023-10-06T21:20:49.8570000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T21:20:50.3270000-07:00|10FF0003|Gegehi Gehi|0001A2F6|38815||||||110.57|91.85|0.00|-1.95| +37|2023-10-06T21:20:50.3710000-07:00|10FF0006|Wowobora Gogobora|0001A2F7|73731||||||102.19|87.57|0.00|-2.86| +37|2023-10-06T21:20:50.4160000-07:00|10FF000A|Dukaro Nezikaro|0001A2ED|30216|82773|10000|10000|0||89.00|85.32|0.00|0.95|1E07|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:20:50.4160000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:20:49.9770000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:20:50.4600000-07:00|10FF0004|Buhojaqe Zijaqe|0001A2F6|54449||||||106.39|90.64|0.00|-1.20| +37|2023-10-06T21:20:50.5060000-07:00|10FF0008|Kokosaze Lulusaze|0001A2F7|72126||||||94.83|85.65|0.00|-0.01| +04|2023-10-06T21:20:50.0970000-07:00|40022D3A|Seraph|00|5A|10FF0004|00||8227|10487|0|77430|0|10000|||109.58|93.00|0.00|-2.39| +261|2023-10-06T21:20:50.0970000-07:00|Remove|40022D3A| +39|2023-10-06T21:20:50.5500000-07:00|10FF0003|Gegehi Gehi|39553|73814|6000|10000|||110.13|91.93|0.00|-1.94| +37|2023-10-06T21:20:50.5940000-07:00|10FF0006|Wowobora Gogobora|0001A2F6|81809||||||102.19|87.57|0.00|-2.86| +37|2023-10-06T21:20:50.6400000-07:00|10FF0001|Sesuga Sapisuga|0001A2F7|122595||||||94.38|87.19|0.00|0.96| +39|2023-10-06T21:20:50.6400000-07:00|10FF0009|Zewo Negiwo|75353|81177|5485|10000|||102.13|87.47|0.00|0.29| +261|2023-10-06T21:20:50.2140000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:20:50.7270000-07:00|10FF0009|Zewo Negiwo|0001A2F6|81177||||||101.81|88.09|0.00|0.11| +39|2023-10-06T21:20:50.7270000-07:00|10FF0008|Kokosaze Lulusaze|73028|90216|10000|10000|||94.80|85.68|0.00|-0.01| +37|2023-10-06T21:20:50.7730000-07:00|10FF0004|Buhojaqe Zijaqe|0001A2F7|74385||||||105.15|91.13|0.00|-1.20| +24|2023-10-06T21:20:50.7730000-07:00|40022472|Zeromus|DoT|0|24A5|4051260|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|122595|129071|10000|10000|||94.72|87.70|0.00|0.57| +21|2023-10-06T21:20:50.7730000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32714003|29D80000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|4051260|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||95.28|92.27|0.00|2.50|0001A2FB|0|1| +38|2023-10-06T21:20:50.7730000-07:00|40022472|Zeromus|005A5A00|4041879|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T21:20:50.8170000-07:00|40022472|Zeromus|0001A2FA|4039055||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:50.4040000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:20:50.8630000-07:00|10FF0008|Kokosaze Lulusaze|0001A2F6|82608||||||94.80|85.72|0.00|-0.01| +39|2023-10-06T21:20:50.8630000-07:00|10FF0001|Sesuga Sapisuga|123885|129071|10000|10000|||95.00|88.25|0.00|0.35| +36|2023-10-06T21:20:50.8630000-07:00|6AF4|3| +37|2023-10-06T21:20:50.9070000-07:00|10FF0003|Gegehi Gehi|0001A2F7|59989||||||109.48|92.30|0.00|-1.97| +37|2023-10-06T21:20:50.9070000-07:00|40022472|Zeromus|0001A2F9|4016366||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:50.9070000-07:00|10FF0004|Buhojaqe Zijaqe|75200|81541|2250|10000|||103.75|91.40|0.00|-1.29| +20|2023-10-06T21:20:50.9510000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|103.75|91.40|0.00|-1.29| +37|2023-10-06T21:20:50.9950000-07:00|10FF0001|Sesuga Sapisuga|0001A2F6|129071||||||95.22|88.92|0.00|0.30| +39|2023-10-06T21:20:50.9950000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||96.64|93.07|0.00|2.89| +39|2023-10-06T21:20:50.9950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||102.19|87.57|0.00|-2.86| +20|2023-10-06T21:20:50.9950000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|1.491|102.19|87.57|0.00|-2.86| +38|2023-10-06T21:20:50.9950000-07:00|40022D58|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||111.68|91.20|0.00|-1.87|0|0|0|||| +30|2023-10-06T21:20:50.9950000-07:00|7AE|Summon Order IV|0.00|40022D58|Ruby Carbuncle|40022D58|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T21:20:50.5990000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T21:20:50.5990000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:20:50.5990000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:51.1750000-07:00|10FF000A|Dukaro Nezikaro|0001A2F7|43120||||||91.90|89.63|0.00|1.25| +37|2023-10-06T21:20:51.1750000-07:00|40022472|Zeromus|0001A2F8|4005453||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:50.8270000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:20:50.9430000-07:00|Change|10FF0009||||||||||||| +21|2023-10-06T21:20:51.3530000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|3C170000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|4005453|40478540|10000|10000|||100.00|80.10|0.00|0.00|82608|90216|10000|10000|||96.52|88.26|0.00|0.60|0001A2FC|0|1| +37|2023-10-06T21:20:51.3970000-07:00|40022472|Zeromus|0001A2FB|3994741||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:51.0590000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:20:51.4420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|BE80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3994741|40478540|10000|10000|||100.00|80.10|0.00|0.00|82608|90216|10000|10000|||97.08|88.62|0.00|2.79|0001A2FD|0|1| +20|2023-10-06T21:20:51.4420000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|1.944|108.79|92.63|0.00|-1.98| +38|2023-10-06T21:20:51.4870000-07:00|40022472|Zeromus|005A5A00|3994741|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:20:51.4870000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +21|2023-10-06T21:20:51.6200000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32712003|3ACB0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|3994741|40478540|10000|10000|||100.00|80.10|0.00|0.00|43120|82773|10000|10000|||93.89|91.68|0.00|1.54|0001A2FE|0|1| +21|2023-10-06T21:20:51.6200000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B6F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3994741|40478540|10000|10000|||100.00|80.10|0.00|0.00|43120|82773|10000|10000|||93.89|91.68|0.00|1.54|0001A2FF|0|1| +261|2023-10-06T21:20:51.2730000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:20:51.7100000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|C2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3994741|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||98.36|95.03|0.00|2.73|0001A300|0|1| +261|2023-10-06T21:20:51.3700000-07:00|Change|10FF0003||||||||||||||||||| +21|2023-10-06T21:20:51.9330000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|1A370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3994741|40478540|10000|10000|||100.00|80.10|0.00|0.00|82608|90216|10000|10000|||99.36|89.94|0.00|1.60|0001A301|0|1| +261|2023-10-06T21:20:51.5630000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:20:51.5630000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:20:51.9770000-07:00|10FF000A|Dukaro Nezikaro|43947|82773|10000|10000|||96.32|94.10|0.00|1.93| +21|2023-10-06T21:20:51.9780000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40022472|Zeromus|750003|34640000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|3994741|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||102.19|87.57|0.00|-2.86|0001A302|0|1| +37|2023-10-06T21:20:52.0220000-07:00|40022472|Zeromus|0001A2FE|3979690||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:52.0660000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|100.36|91.75|0.00|0.50| +261|2023-10-06T21:20:51.6560000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T21:20:52.1560000-07:00|40022472|Zeromus|0001A2FC|3964307||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:52.1560000-07:00|40022472|Zeromus|0001A2FF|3961380||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:52.2000000-07:00|40022472|Zeromus|0001A2FD|3958332||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:20:52.2000000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1C7F|82608|90216|10000|10000|||100.49|91.59|0.00|3.13|40022D3A||0||||||||||| +35|2023-10-06T21:20:52.2000000-07:00|40022471||40022472|Zeromus|0000|0000|0109|||| +261|2023-10-06T21:20:51.7760000-07:00|Change|40022471||||||||| +21|2023-10-06T21:20:52.2000000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40DF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.32|95.75|0.00|-3.06|3979690|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A303|0|1| +38|2023-10-06T21:20:52.2000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|89903|90216|10000|10000|0||100.49|91.59|0.00|3.13|0|0|0||||||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|40022490||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|4002248C||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|40022489||||||||| +257|2023-10-06T21:20:52.2000000-07:00|80034E7C|00020001|02|00|0000| +261|2023-10-06T21:20:51.7760000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|40022488||||||||| +00|2023-10-06T21:20:51.0000000-07:00|0044|Zeromus|All who oppose me shall be consigned to nothingness.| +261|2023-10-06T21:20:51.7760000-07:00|Change|40022487||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|4002248D||||||||| +37|2023-10-06T21:20:52.2440000-07:00|40022472|Zeromus|0001A300|3955214||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:51.7760000-07:00|Change|40022486||||||||| +24|2023-10-06T21:20:52.2450000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1C5E|43947|82773|10000|10000|||96.69|94.46|0.00|1.72|10FF0009|Zewo Negiwo|0|81177|81177|5485|10000|||100.36|91.75|0.00|1.03| +38|2023-10-06T21:20:52.2450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|51209|82773|10000|10000|0||96.69|94.46|0.00|1.72|0|0|0|||||||||||||||| +261|2023-10-06T21:20:51.7760000-07:00|Change|40022487||||||||| +21|2023-10-06T21:20:52.2890000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|146E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|51209|82773|10000|10000|||96.84|94.70|0.00|1.72|73956|77430|10000|10000|||106.84|91.27|0.00|-1.56|0001A304|0|1| +20|2023-10-06T21:20:52.2890000-07:00|40022472|Zeromus|8B78|Chasmic Nails|40022472|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:52.2890000-07:00|40022486|Zeromus|8B7C|Chasmic Nails|40022486|Zeromus|9.500|100.00|80.10|0.00|-1.40| +20|2023-10-06T21:20:52.2890000-07:00|40022487|Zeromus|8B2A|unknown_8b2a|40022487|Zeromus|4.700|100.00|80.10|0.00|-1.40| +20|2023-10-06T21:20:52.2890000-07:00|40022488|Zeromus|8B79|Chasmic Nails|40022488|Zeromus|7.400|100.00|80.10|0.00|-0.70| +20|2023-10-06T21:20:52.2890000-07:00|40022489|Zeromus|8B27|unknown_8b27|40022489|Zeromus|1.200|100.00|80.10|0.00|-0.70| +20|2023-10-06T21:20:52.2890000-07:00|4002248A|Zeromus|8B7A|Chasmic Nails|4002248A|Zeromus|8.100|100.00|80.10|0.00|1.40| +20|2023-10-06T21:20:52.2890000-07:00|4002248B|Zeromus|8B28|unknown_8b28|4002248B|Zeromus|2.700|100.00|80.10|0.00|1.40| +20|2023-10-06T21:20:52.2890000-07:00|4002248C|Zeromus|8B7D|Chasmic Nails|4002248C|Zeromus|10.200|100.00|80.10|0.00|0.70| +20|2023-10-06T21:20:52.2890000-07:00|4002248D|Zeromus|8B2B|unknown_8b2b|4002248D|Zeromus|5.700|100.00|80.10|0.00|0.70| +20|2023-10-06T21:20:52.2890000-07:00|4002248E|Zeromus|8B7B|Chasmic Nails|4002248E|Zeromus|8.800|100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:52.2890000-07:00|4002248F|Zeromus|8B29|unknown_8b29|4002248F|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:51.8940000-07:00|Change|40022472||||||| +20|2023-10-06T21:20:52.2890000-07:00|40022490|Zeromus|8B82|Dimensional Surge|40022490|Zeromus|8.700|80.10|87.00|0.00|1.57| +24|2023-10-06T21:20:52.2890000-07:00|10FF0003|Gegehi Gehi|HoT|0|28E9|59989|73814|6000|10000|||107.90|92.97|0.00|-2.59|10FF0003|Gegehi Gehi|0|59989|73814|6000|10000|||107.90|92.97|0.00|-2.59| +38|2023-10-06T21:20:52.2890000-07:00|10FF0003|Gegehi Gehi|005A5A23|70462|73814|6550|10000|0||107.90|92.97|0.00|-2.59|0|0|0|||||||||||||||| +261|2023-10-06T21:20:51.8940000-07:00|Change|10FF0009||||||||||||||||| +22|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19120000|1C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|0001A305|0|8| +22|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19110000|1B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|89903|90216|10000|10000|||100.84|92.16|0.00|3.13|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|0001A305|1|8| +22|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|4|198F0000|E40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81177|81177|5485|10000|||100.36|91.75|0.00|1.79|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|0001A305|2|8| +22|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19120000|1C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||102.19|87.57|0.00|-2.86|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|0001A305|3|8| +22|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|197B0000|C40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|59989|73814|6000|10000|||107.90|92.97|0.00|-2.59|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|0001A305|4|8| +22|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|198D0000|E10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.61|95.83|0.00|-2.91|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|0001A305|5|8| +22|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|18D00000|B30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||98.23|94.48|0.00|2.09|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|0001A305|6|8| +22|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|28520000|830E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|51209|82773|10000|10000|||96.84|94.70|0.00|1.72|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|0001A305|7|8| +38|2023-10-06T21:20:52.3350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||99.61|95.83|0.00|-2.91|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:52.3350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:20:52.3350000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5485|10000|12||100.36|91.75|0.00|1.79|0|0|0|||||||||||||||| +26|2023-10-06T21:20:52.3350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:20:52.3350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|89903|90216|10000|10000|11||100.84|92.16|0.00|3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:20:52.3350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:20:52.3350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|12||102.19|87.57|0.00|-2.86|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:52.3350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:20:52.3350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||98.23|94.48|0.00|2.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:52.3350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:20:52.3350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75200|81541|1250|10000|12||103.32|91.66|0.00|-0.60|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:52.3350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:20:52.3350000-07:00|10FF0003|Gegehi Gehi|005A5A23|70462|73814|6550|10000|14||107.90|92.97|0.00|-2.59|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:52.3350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:20:52.3350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|51209|82773|10000|10000|19||96.84|94.70|0.00|1.72|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:52.3350000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +24|2023-10-06T21:20:52.3780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1DD9|75200|81541|2250|10000|||103.32|91.66|0.00|-0.60|40022D3A||0||||||||||| +21|2023-10-06T21:20:52.3780000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|29380000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|3955214|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||98.23|94.48|0.00|2.09|0001A306|0|1| +38|2023-10-06T21:20:52.3780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||98.23|94.48|0.00|2.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:52.3780000-07:00|76E|Sword Oath|20.51|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:20:52.3780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1800|10000|12||103.32|91.66|0.00|-0.60|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:52.0150000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:20:52.4680000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1C33|129844|129844|10000|10000|||99.68|95.89|0.00|2.79|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.68|95.89|0.00|2.79| +24|2023-10-06T21:20:52.4680000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2C54|81809|81809|9600|10000|||102.18|87.58|0.00|-2.29|40022D3A||0||||||||||| +38|2023-10-06T21:20:52.4680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||99.68|95.89|0.00|2.79|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:52.4680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|12||102.18|87.58|0.00|-2.29|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:20:52.5580000-07:00|10FF0009|Zewo Negiwo|HoT|0|2203|81177|81177|5485|10000|||100.36|91.75|0.00|2.97|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1800|10000|||103.32|91.68|0.00|-0.37| +24|2023-10-06T21:20:52.5580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1D9B|129071|129071|10000|10000|||98.23|94.48|0.00|2.09|40022D3A||0||||||||||| +21|2023-10-06T21:20:52.5580000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3955214|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||98.23|94.48|0.00|2.09|0001A307|0|1| +38|2023-10-06T21:20:52.5580000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5485|10000|12||100.36|91.75|0.00|2.97|0|0|0|||||||||||||||| +38|2023-10-06T21:20:52.5580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||98.23|94.48|0.00|2.09|0|0|0|||||||||||||||||||||| +31|2023-10-06T21:20:52.5580000-07:00|10FF0001||||| +261|2023-10-06T21:20:52.2220000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:20:52.2220000-07:00|Change|40022D58||||||||| +21|2023-10-06T21:20:52.6020000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|726003|28820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3955214|40478540|10000|10000|||100.00|80.10|0.00|0.00|89903|90216|10000|10000|||100.29|91.54|0.00|3.13|0001A308|0|1| +39|2023-10-06T21:20:52.6470000-07:00|40022D56|Carbuncle|77698|77698|10000|10000|||100.66|88.79|0.00|-2.83| +37|2023-10-06T21:20:52.7360000-07:00|40022472|Zeromus|0001A301|3948503||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:52.3200000-07:00|Change|4002248E||||||||||||| +261|2023-10-06T21:20:52.3200000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:20:52.3200000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:20:52.3200000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:20:52.3200000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:20:52.3200000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:20:52.3200000-07:00|Change|40022487||||||||||||| +37|2023-10-06T21:20:52.7810000-07:00|40022472|Zeromus|0001A302|3935091||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:52.4200000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:20:52.4200000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:20:52.8700000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40022472|Zeromus|456003|61DF0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|3935091|40478540|10000|10000|||100.00|80.10|0.00|0.00|70462|73814|6550|10000|||107.90|92.97|0.00|-2.59|0001A309|0|1| +38|2023-10-06T21:20:52.8700000-07:00|10FF0003|Gegehi Gehi|005A5A23|70462|73814|6350|10000|14||107.90|92.97|0.00|-2.59|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:52.8700000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:20:52.8700000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:20:53.0040000-07:00|10FF0007|Kehabiqo Febiqo|0001A303|113237||||||99.85|96.06|0.00|0.81| +21|2023-10-06T21:20:53.0040000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|34F10000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|3935091|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5485|10000|||100.36|91.75|0.00|-3.11|0001A30A|0|1| +38|2023-10-06T21:20:53.0490000-07:00|40022472|Zeromus|005A5A00|3935091|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:20:53.0490000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +37|2023-10-06T21:20:53.0940000-07:00|10FF000A|Dukaro Nezikaro|0001A304|56439||||||97.17|95.29|-0.02|1.98| +37|2023-10-06T21:20:53.0940000-07:00|40022472|Zeromus|0001A307|3933337||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:53.2280000-07:00|40022472|Zeromus|0001A308|3922967||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:53.2280000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|2FE90000|143E|340000|4|17058000|11B|2A8000|0|0|0|0|0|0|0|0|3933337|40478540|10000|10000|||100.00|80.10|0.00|0.00|113237|129844|10000|10000|||99.77|96.06|0.00|-0.46|0001A30B|0|1| +261|2023-10-06T21:20:52.8580000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:20:52.8580000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:20:52.8580000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:20:52.8580000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:20:52.9680000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:20:52.9680000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:20:53.4500000-07:00|10FF0004|Buhojaqe Zijaqe|0001A305|81541|81541|1800|10000|12||99.77|94.81|0.00|-0.90|1C00|0|0|01|04000129|0|41E76C88|| +21|2023-10-06T21:20:53.4940000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|752003|72F30000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|3922967|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||99.94|92.12|0.00|-0.58|0001A30C|0|1| +38|2023-10-06T21:20:53.4940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|12||99.94|92.12|0.00|-0.58|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:53.4940000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:20:53.5390000-07:00|10FF0003|Gegehi Gehi|71200|73814|6550|10000|||107.90|92.99|0.00|-2.30| +37|2023-10-06T21:20:53.5830000-07:00|10FF0008|Kokosaze Lulusaze|0001A305|90216|90216|10000|10000|11||102.79|96.04|0.00|-1.09|1F01|0|0|01|04000129|0|41E65C25|| +261|2023-10-06T21:20:53.1950000-07:00|Change|10FF0009||||||||||||||||||||||| +39|2023-10-06T21:20:53.6290000-07:00|10FF0009|Zewo Negiwo|81177|81177|5306|10000|||100.36|91.76|0.00|2.71| +37|2023-10-06T21:20:53.6730000-07:00|40022472|Zeromus|0001A306|3912415||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:53.6730000-07:00|40022472|Zeromus|0001A309|3887360||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:53.7180000-07:00|10FF0009|Zewo Negiwo|0001A305|81177|81177|5306|10000|12||100.37|91.78|0.00|2.01|1802|0|0|01|04000129|0|41E549B6|| +39|2023-10-06T21:20:53.7180000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.47|97.12|0.00|-0.49| +39|2023-10-06T21:20:53.7630000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||104.73|91.75|0.00|-0.87| +24|2023-10-06T21:20:53.7630000-07:00|40022472|Zeromus|DoT|0|2154|3887360|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|3887360|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:53.7630000-07:00|40022489|Zeromus|8B27|unknown_8b27|40022489|Zeromus|1B|8B278000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-0.70|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001A30D|0|1| +21|2023-10-06T21:20:53.7630000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44714003|3EEB0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|3887360|40478540|10000|10000|||100.00|80.10|0.00|0.00|56439|82773|10000|10000|||96.90|95.32|0.00|2.73|0001A30E|0|1| +38|2023-10-06T21:20:53.7630000-07:00|40022472|Zeromus|005A5A00|3878828|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:20:53.8060000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|10F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3887360|40478540|10000|10000|||100.00|80.10|0.00|0.00|56439|82773|10000|10000|||96.90|95.32|0.00|2.73|0001A30F|0|1| +37|2023-10-06T21:20:53.8500000-07:00|10FF0006|Wowobora Gogobora|0001A305|81809|81809|9200|10000|12||98.90|92.77|0.00|3.06|1B03|0|0|01|01000129|0|41E43953|| +261|2023-10-06T21:20:53.3860000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:20:53.4790000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T21:20:53.8510000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1E530000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|3878828|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.28|97.76|0.00|-0.68|0001A310|0|1| +36|2023-10-06T21:20:53.8510000-07:00|6BD0|3| +39|2023-10-06T21:20:53.8960000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.71|97.16|0.00|-1.15| +39|2023-10-06T21:20:53.8960000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2000|10000|||97.94|97.47|0.00|-0.64| +21|2023-10-06T21:20:53.8960000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3878828|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1800|10000|||97.94|97.47|0.00|-0.64|0001A311|0|1| +37|2023-10-06T21:20:53.9850000-07:00|10FF0003|Gegehi Gehi|0001A305|73814|73814|6550|10000|14||106.82|93.81|0.00|-1.80|2304|0|0|01|05000129|0|41E326E4|| +39|2023-10-06T21:20:53.9850000-07:00|10FF0007|Kehabiqo Febiqo|114535|129844|10000|10000|||99.25|96.63|0.00|-2.02| +39|2023-10-06T21:20:53.9850000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9400|10000|||98.91|92.74|0.00|3.06| +21|2023-10-06T21:20:53.9850000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|356003|6EB20000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|3878828|40478540|10000|10000|||100.00|80.10|0.00|0.00|71200|73814|6550|10000|||106.82|93.81|0.00|-1.80|0001A312|0|1| +38|2023-10-06T21:20:53.9850000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6250|10000|14||106.82|93.81|0.00|-1.80|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:53.9850000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:20:53.6700000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:20:53.6700000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:20:54.1180000-07:00|10FF0007|Kehabiqo Febiqo|0001A305|121076|129844|10000|10000|8||98.79|98.25|0.00|-1.92|1505|0|0|01|02000129|0|41E21681|| +21|2023-10-06T21:20:54.1190000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|87C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3878828|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.24|97.90|0.00|-2.71|0001A313|0|1| +22|2023-10-06T21:20:54.1630000-07:00|10FF0009|Zewo Negiwo|DF1|Asylum|10FF0009|Zewo Negiwo|FCF10F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|5306|10000|||99.63|93.30|0.00|0.07|81177|81177|5306|10000|||99.63|93.30|0.00|0.07|0001A314|0|1| +21|2023-10-06T21:20:54.1630000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3878828|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||97.65|92.05|0.00|-2.65|0001A315|0|1| +261|2023-10-06T21:20:53.7920000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:54.2510000-07:00|10FF0001|Sesuga Sapisuga|0001A305|129071|129071|10000|10000|7||100.29|99.03|0.00|0.25|1306|0|0|01|05000129|0|41E10412|| +21|2023-10-06T21:20:54.2510000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3878828|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6250|10000|||105.00|95.13|0.00|-2.42|0001A316|0|1| +261|2023-10-06T21:20:53.9130000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:20:54.2960000-07:00|40022472|Zeromus|0001A30A|3865275||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:54.2960000-07:00|40022472|Zeromus|0001A30C|3835848||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:54.2960000-07:00|40022472|Zeromus|0001A30E|3819741||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:54.3410000-07:00|40022472|Zeromus|0001A30F|3815398||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:53.9130000-07:00|Change|10FF0009||||||||||||||| +37|2023-10-06T21:20:54.3860000-07:00|10FF000A|Dukaro Nezikaro|0001A305|66761|82773|10000|10000|19||96.82|95.29|0.00|2.94|1E07|0|0|01|05000129|0|41DFF1A3|| +20|2023-10-06T21:20:54.3860000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|97.08|99.68|0.00|-0.44| +261|2023-10-06T21:20:53.9130000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:20:54.4300000-07:00|40022472|Zeromus|0001A311|3815137||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:54.1370000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:20:54.6080000-07:00|40022472|Zeromus|0001A310|3807374||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:54.2360000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:20:54.6960000-07:00|40022472|Zeromus|0001A315|3807226||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:54.7410000-07:00|40022472|Zeromus|0001A30B|3794961||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:54.7410000-07:00|10FF0007|Kehabiqo Febiqo|0001A30B|126969||||||97.76|100.35|0.00|-2.44| +37|2023-10-06T21:20:54.7410000-07:00|40022472|Zeromus|0001A312|3766623||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:54.7860000-07:00|40022472|Zeromus|0001A316|3766594||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:54.8320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B5E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3766623|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.39|99.50|0.00|-3.12|0001A317|0|1| +31|2023-10-06T21:20:54.8320000-07:00|10FF0001||||| +37|2023-10-06T21:20:54.8760000-07:00|40022472|Zeromus|0001A313|3764422||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:54.8760000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|289A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|3766623|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.39|99.50|0.00|-3.12|0001A318|0|1| +38|2023-10-06T21:20:54.8760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||100.39|99.50|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:20:54.8760000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +24|2023-10-06T21:20:55.0090000-07:00|10FF0009|Zewo Negiwo|HoT|777|DFC|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +24|2023-10-06T21:20:55.0090000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DF7|66761|82773|10000|10000|||96.82|95.29|0.00|2.94|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +24|2023-10-06T21:20:55.0090000-07:00|10FF0003|Gegehi Gehi|HoT|777|E4F|73814|73814|6250|10000|||101.65|98.32|0.00|-1.79|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +24|2023-10-06T21:20:55.0090000-07:00|10FF0006|Wowobora Gogobora|HoT|777|174C|81809|81809|9400|10000|||93.59|89.56|0.00|-2.71|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +24|2023-10-06T21:20:55.0090000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E60|129071|129071|10000|10000|||100.39|99.50|0.00|-3.12|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +24|2023-10-06T21:20:55.0090000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|1688|81541|81541|2000|10000|||96.73|100.05|0.00|2.98|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +24|2023-10-06T21:20:55.0090000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|175A|126969|129844|10000|10000|||96.83|100.87|0.00|-2.68|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +24|2023-10-06T21:20:55.0090000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|DF3|90216|90216|10000|10000|||99.30|101.47|0.00|-0.88|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +37|2023-10-06T21:20:55.0090000-07:00|10FF0009|Zewo Negiwo|0001A314|81177|81177|5306|10000|12||98.47|95.23|0.00|-1.16|1800|0|0|02|05000777|0|41C00000|||||| +26|2023-10-06T21:20:55.0090000-07:00|777|Asylum|24.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:20:55.0090000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +39|2023-10-06T21:20:55.0090000-07:00|10FF000A|Dukaro Nezikaro|71163|82773|10000|10000|||96.82|95.29|0.00|2.94| +38|2023-10-06T21:20:55.0090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||96.83|100.87|0.00|-2.68|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:55.0090000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:20:55.0090000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5306|10000|12||98.47|95.23|0.00|-1.16|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:55.0090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||99.30|101.47|0.00|-0.88|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:55.0090000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:20:55.0090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|12||93.59|89.56|0.00|-2.71|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:55.0090000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:20:55.0090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||100.39|99.50|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:55.0090000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +38|2023-10-06T21:20:55.0090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2000|10000|12||96.73|100.05|0.00|2.98|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:55.0090000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:20:55.0090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6250|10000|14||101.65|98.32|0.00|-1.79|0|0|0||||||||||||||||||| +26|2023-10-06T21:20:55.0090000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:20:55.0090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71163|82773|10000|10000|19||96.82|95.29|0.00|2.94|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:55.0090000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:20:54.6340000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:20:55.0990000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|13480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3764422|40478540|10000|10000|||100.00|80.10|0.00|0.00|126969|129844|10000|10000|||96.83|100.87|0.00|-2.68|0001A319|0|1| +24|2023-10-06T21:20:55.2330000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2844|90216|90216|10000|10000|||98.22|102.46|0.00|-0.86|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +20|2023-10-06T21:20:55.2330000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|98.47|95.23|0.00|-1.16| +38|2023-10-06T21:20:55.2330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||98.22|102.46|0.00|-0.86|0|0|0||||||||||||||||||| +24|2023-10-06T21:20:55.2780000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1CD2|71163|82773|10000|10000|||96.82|95.32|0.00|1.77|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.16| +21|2023-10-06T21:20:55.2780000-07:00|4002248B|Zeromus|8B28|unknown_8b28|4002248B|Zeromus|1B|8B288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|1.40|44|44|0|10000|||100.00|80.10|0.00|1.40|0001A31A|0|1| +38|2023-10-06T21:20:55.2780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78541|82773|10000|10000|19||96.82|95.32|0.00|1.77|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:54.8630000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:20:54.8630000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:20:55.3230000-07:00|10FF0003|Gegehi Gehi|HoT|0|1DB9|73814|73814|6250|10000|||100.27|99.48|0.00|-1.78|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2000|10000|||96.73|100.05|0.00|2.98| +21|2023-10-06T21:20:55.3230000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|325A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|3764422|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2000|10000|||96.73|100.05|0.00|2.98|0001A31B|0|1| +38|2023-10-06T21:20:55.3230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6800|10000|14||100.27|99.48|0.00|-1.78|0|0|0||||||||||||||||||| +261|2023-10-06T21:20:54.9750000-07:00|Add|40022D65||||||||||||||||||||||||||| +261|2023-10-06T21:20:54.9750000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:20:55.3670000-07:00|40022472|Zeromus|0001A317|3761512||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:54.9750000-07:00|Change|10FF0009||||||||| +24|2023-10-06T21:20:55.4100000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1BF6|81541|81541|2000|10000|||96.73|100.05|0.00|2.98|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-1.44| +38|2023-10-06T21:20:55.4100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|12||96.73|100.05|0.00|2.98|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:55.0940000-07:00|Change|40022D58||||||||| +24|2023-10-06T21:20:55.5000000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|28C1|129844|129844|10000|10000|||96.04|100.54|0.00|-2.90|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||96.04|100.54|0.00|-2.90| +24|2023-10-06T21:20:55.5000000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1C19|81809|81809|9400|10000|||93.00|89.04|0.00|-3.08|40022D3A||0||||||||||| +38|2023-10-06T21:20:55.5000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||96.04|100.54|0.00|-2.90|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:55.5000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|12||93.00|89.04|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:55.0940000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:20:55.5450000-07:00|10FF0009|Zewo Negiwo|HoT|777|16F7|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +24|2023-10-06T21:20:55.5450000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E54|78541|82773|10000|10000|||96.70|95.65|0.00|0.32|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +24|2023-10-06T21:20:55.5450000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E4D|81809|81809|9400|10000|||93.02|89.02|0.00|3.03|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +24|2023-10-06T21:20:55.5450000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|1677|129071|129071|10000|10000|||99.79|99.12|0.00|-2.25|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +24|2023-10-06T21:20:55.5450000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E46|81541|81541|2150|10000|||96.73|100.05|0.00|-2.77|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +24|2023-10-06T21:20:55.5450000-07:00|10FF0003|Gegehi Gehi|HoT|777|E4A|73814|73814|6800|10000|||99.93|100.71|0.00|-1.86|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +24|2023-10-06T21:20:55.5450000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E8E|129844|129844|10000|10000|||96.00|100.54|0.00|-2.90|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +24|2023-10-06T21:20:55.5450000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E46|90216|90216|10000|10000|||96.72|103.79|0.00|-0.85|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +24|2023-10-06T21:20:55.5450000-07:00|10FF0009|Zewo Negiwo|HoT|0|29BE|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48|10FF0009|Zewo Negiwo|0|81177|81177|5306|10000|||98.47|95.23|0.00|-2.48| +38|2023-10-06T21:20:55.5450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||96.00|100.54|0.00|-2.90|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:55.5450000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5306|10000|12||98.47|95.23|0.00|-2.48|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:55.5450000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||96.72|103.79|0.00|-0.85|0|0|0||||||||||||||||||| +38|2023-10-06T21:20:55.5450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|12||93.02|89.02|0.00|3.03|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:20:55.5450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||99.79|99.12|0.00|-2.25|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:20:55.5450000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|12||96.73|100.05|0.00|-2.77|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:20:55.5450000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6800|10000|14||99.93|100.71|0.00|-1.86|0|0|0||||||||||||||||||| +38|2023-10-06T21:20:55.5450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82209|82773|10000|10000|19||96.70|95.65|0.00|0.32|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:55.2010000-07:00|Change|40022D56||||||||| +24|2023-10-06T21:20:55.5890000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2732|129071|129071|10000|10000|||99.79|99.12|0.00|-2.25|40022D3A||0||||||||||| +38|2023-10-06T21:20:55.5890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||99.79|99.12|0.00|-2.25|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:55.2010000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:20:55.6350000-07:00|40022472|Zeromus|0001A319|3756576||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:55.6800000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|17450000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|82209|82773|10000|10000|||96.64|95.82|-0.02|0.09|73956|77430|10000|10000|||98.86|99.15|0.00|-0.95|0001A31C|0|1| +39|2023-10-06T21:20:55.6800000-07:00|40022D56|Carbuncle|77698|77698|10000|10000|||95.54|89.48|0.00|-2.01| +21|2023-10-06T21:20:55.6800000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|3C330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3756576|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||95.96|100.54|0.00|-2.91|0001A31D|0|1| +21|2023-10-06T21:20:55.6800000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.75|99.08|0.00|-2.25|129071|129071|10000|10000|||99.75|99.08|0.00|-2.25|0001A31E|0|1| +261|2023-10-06T21:20:55.2990000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:20:55.4910000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:20:55.9470000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40022472|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|3756576|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||93.23|88.78|0.00|2.62|0001A31F|0|1| +38|2023-10-06T21:20:55.9900000-07:00|40022D66||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:20:55.9920000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|80F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3756576|40478540|10000|10000|||100.00|80.10|0.00|0.00|82209|82773|10000|10000|||95.99|97.76|0.00|-0.28|0001A320|0|1| +38|2023-10-06T21:20:55.9920000-07:00|40022D66||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:20:56.0790000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1CFD0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|3756576|40478540|10000|10000|||100.00|80.10|0.00|0.00|82209|82773|10000|10000|||95.99|97.76|0.00|-0.28|0001A321|0|1| +03|2023-10-06T21:20:55.7750000-07:00|40022D66|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||93.64|91.40|0.00|2.49| +37|2023-10-06T21:20:56.1250000-07:00|40022472|Zeromus|0001A31B|3743686||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:55.7750000-07:00|Add|40022D66||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:20:56.1690000-07:00|40022472|Zeromus|0001A318|3733292||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:56.1690000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|31B40000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|3756576|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5306|10000|||98.47|95.23|0.00|3.04|0001A322|0|1| +261|2023-10-06T21:20:55.7750000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:20:55.8910000-07:00|Change|40022D66||| +21|2023-10-06T21:20:56.2580000-07:00|4002248F|Zeromus|8B29|unknown_8b29|4002248F|Zeromus|1B|8B298000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.00|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A323|0|1| +261|2023-10-06T21:20:55.8910000-07:00|Change|40022484||||||||||||||||| +261|2023-10-06T21:20:55.8910000-07:00|Change|40022482||||||||||||||||| +261|2023-10-06T21:20:55.8910000-07:00|Change|40022483||||||||||||||||| +37|2023-10-06T21:20:56.3020000-07:00|40022472|Zeromus|0001A31D|3717881||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:56.3020000-07:00|10FF0001|Sesuga Sapisuga|0001A31E|129071|129071|10000|10000|7||97.25|98.98|0.00|3.00|1300|0|0|01|0700004C|0|41A00000|| +26|2023-10-06T21:20:56.3020000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +20|2023-10-06T21:20:56.3020000-07:00|4002247E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|113.41|96.40|0.00|0.00| +261|2023-10-06T21:20:55.8910000-07:00|Change|40022480||||||||||||||||||| +20|2023-10-06T21:20:56.3020000-07:00|4002247F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.60|117.81|0.00|0.00| +20|2023-10-06T21:20:56.3020000-07:00|40022480|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.20|99.28|0.00|0.00| +20|2023-10-06T21:20:56.3020000-07:00|40022481|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.47|99.09|0.00|0.00| +20|2023-10-06T21:20:56.3020000-07:00|40022482|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.67|109.71|0.00|0.00| +261|2023-10-06T21:20:55.8910000-07:00|Change|40022485||||||||||||||||||| +261|2023-10-06T21:20:55.8910000-07:00|Change|4002247F||||||||||||||||||| +20|2023-10-06T21:20:56.3020000-07:00|40022483|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.99|96.46|0.00|0.00| +20|2023-10-06T21:20:56.3020000-07:00|40022484|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|89.71|104.62|0.00|0.00| +20|2023-10-06T21:20:56.3020000-07:00|40022485|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.60|82.66|0.00|0.00| +20|2023-10-06T21:20:56.3020000-07:00|40022489|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|-0.70| +261|2023-10-06T21:20:55.8910000-07:00|Change|4002247E||||||||||||||||||| +261|2023-10-06T21:20:55.8910000-07:00|Change|40022489||||||||||||||||||| +261|2023-10-06T21:20:55.8910000-07:00|Change|40022481||||||||||||||||||| +261|2023-10-06T21:20:55.8910000-07:00|Change|4002248F||||||||||||| +21|2023-10-06T21:20:56.3460000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|38440000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|3733292|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.03|107.63|0.00|-0.49|0001A324|0|1| +21|2023-10-06T21:20:56.3910000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40022472|Zeromus|752003|3F8A0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|3717881|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||97.25|98.98|0.00|3.00|0001A325|0|1| +38|2023-10-06T21:20:56.3910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||97.25|98.98|0.00|3.00|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:56.3910000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:20:56.3910000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +20|2023-10-06T21:20:56.4360000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|96.49|102.34|0.00|-2.35| +261|2023-10-06T21:20:56.1120000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:20:56.1120000-07:00|Change|40022D56||||||||| +37|2023-10-06T21:20:56.4790000-07:00|10FF000A|Dukaro Nezikaro|0001A31C|82773||||||95.74|98.47|0.00|2.91| +37|2023-10-06T21:20:56.4790000-07:00|40022472|Zeromus|0001A321|3710460||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:56.5250000-07:00|40022472|Zeromus|0001A320|3708397||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:56.5250000-07:00|10FF0003|Gegehi Gehi|73814|73814|7000|10000|||96.40|102.80|0.00|-2.72| +39|2023-10-06T21:20:56.6130000-07:00|10FF0009|Zewo Negiwo|81177|81177|5127|10000|||98.47|95.23|0.00|3.04| +261|2023-10-06T21:20:56.3270000-07:00|Change|10FF0009||||||||||||||||| +39|2023-10-06T21:20:56.7020000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||93.24|108.85|0.00|2.92| +39|2023-10-06T21:20:56.7470000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||98.65|99.50|0.00|-1.83| +24|2023-10-06T21:20:56.7470000-07:00|40022472|Zeromus|DoT|0|2249|3708397|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|3708397|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:56.7470000-07:00|40022472|Zeromus|005A5A00|3699620|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:20:56.7910000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3708397|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||93.38|108.61|0.00|2.92|0001A326|0|1| +21|2023-10-06T21:20:56.7910000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|3708397|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2150|10000|||94.57|100.80|0.00|-1.31|0001A327|0|1| +261|2023-10-06T21:20:56.4240000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:20:56.8810000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||96.82|98.95|0.00|-2.62| +39|2023-10-06T21:20:56.8810000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1950|10000|||94.48|100.90|0.00|2.88| +36|2023-10-06T21:20:56.8810000-07:00|6CAC|3| +39|2023-10-06T21:20:56.9700000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.25|100.42|0.00|3.07| +37|2023-10-06T21:20:57.0150000-07:00|40022472|Zeromus|0001A325|3683354||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:57.0150000-07:00|10FF0001|Sesuga Sapisuga|0001A325|129071|129071|10000|10000|7||96.82|98.95|0.00|-2.62|1300|0|0|02|08000558|04|41F00000|||||| +39|2023-10-06T21:20:57.0150000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||92.16|92.97|0.00|0.02| +21|2023-10-06T21:20:57.0150000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||94.25|100.42|0.00|3.07|129844|129844|10000|10000|||94.25|100.42|0.00|3.07|0001A328|0|1| +38|2023-10-06T21:20:57.0150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||94.25|100.42|0.00|3.07|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:57.0150000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:20:57.0150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||96.82|98.95|0.00|-2.62|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:20:56.5150000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:20:56.6260000-07:00|Change|40022D66||| +21|2023-10-06T21:20:57.1030000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3683354|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||96.63|98.72|0.00|-2.64|0001A329|0|1| +31|2023-10-06T21:20:57.1030000-07:00|10FF0001||||| +37|2023-10-06T21:20:57.1480000-07:00|40022472|Zeromus|0001A324|3668950||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:56.7360000-07:00|Change|10FF0008||||||||| +23|2023-10-06T21:20:57.1930000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +21|2023-10-06T21:20:57.2830000-07:00|40022487|Zeromus|8B2A|unknown_8b2a|40022487|Zeromus|1B|8B2A8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-1.40|44|44|0|10000|||100.00|80.10|0.00|-1.40|0001A32A|0|1| +21|2023-10-06T21:20:57.2830000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3668950|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||91.60|95.37|0.00|-0.22|0001A32B|0|1| +261|2023-10-06T21:20:56.8480000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:20:56.9670000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:20:57.3720000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|393F0000|4|2AF08000|0|0|0|0|0|0|0|0|0|0|0|0|3668950|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||95.14|98.48|0.00|-2.81|0001A32C|0|1| +38|2023-10-06T21:20:57.3720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|7||95.14|98.48|0.00|-2.81|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:20:57.3720000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:20:57.4150000-07:00|40022472|Zeromus|0001A327|3668950|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:20:57.4150000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +37|2023-10-06T21:20:57.4600000-07:00|40022472|Zeromus|0001A322|3656226||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:57.4600000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1950|10000|||94.12|101.23|-0.02|-1.62|81541|81541|1950|10000|||94.12|101.23|-0.02|-1.62|0001A32D|0|1| +21|2023-10-06T21:20:57.5040000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||91.50|112.40|0.00|0.00|90216|90216|10000|10000|||91.50|112.40|0.00|0.00|0001A32E|0|1| +38|2023-10-06T21:20:57.5040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||91.50|112.40|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:57.5040000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:20:57.5040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7000|10000|14||96.26|103.31|0.00|-2.73|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:57.5040000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:20:57.5480000-07:00|10FF0007|Kehabiqo Febiqo|0001A328|129844|129844|10000|10000|8||94.27|100.38|0.00|3.04|1500|0|0|01|07000769|0|41F00000|| +37|2023-10-06T21:20:57.5480000-07:00|40022472|Zeromus|0001A326|3653842||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:20:57.5480000-07:00|10FF0008|Kokosaze Lulusaze|0001A326|90216|90216|10000|10000|11||91.50|112.40|0.00|0.00|1F00|0|0|01|06000353|0|C0A00000|| +38|2023-10-06T21:20:57.5480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||94.27|100.38|0.00|3.04|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:20:57.1970000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:20:57.5930000-07:00|10FF0004|Buhojaqe Zijaqe|0001A32D|81541|81541|1950|10000|12||93.56|101.76|0.00|-0.61|1C00|0|0|01|08000032|1E|41200000|| +26|2023-10-06T21:20:57.5930000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +37|2023-10-06T21:20:57.6380000-07:00|40022472|Zeromus|0001A329|3651690||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:57.7280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1950|10000|12||92.58|102.67|0.00|-0.61|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:20:57.7280000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:20:57.3870000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:20:57.8170000-07:00|40022472|Zeromus|0001A32B|3651446||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:20:57.3870000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:20:57.4850000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:20:57.4850000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:20:57.9960000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||94.14|98.85|0.00|2.90| +261|2023-10-06T21:20:57.5820000-07:00|Change|40022D56||| +261|2023-10-06T21:20:57.6760000-07:00|Change|40022D66||||||||||| +261|2023-10-06T21:20:57.6760000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:20:58.1300000-07:00|10FF0008|Kokosaze Lulusaze|0001A32E|90216|90216|10000|10000|11||90.67|115.02|0.00|-0.09|1F00|0|0|01|06000353|0|40A00000|| +37|2023-10-06T21:20:58.1300000-07:00|40022472|Zeromus|0001A32C|3636791||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:58.1300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||90.67|115.02|0.00|-0.09|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:20:58.1750000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|85A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3651446|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||93.18|100.32|0.00|-2.07|0001A32F|0|1| +24|2023-10-06T21:20:58.2190000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1D16|90216|90216|10000|10000|||90.67|115.02|0.00|-0.09|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||90.67|115.02|0.00|-0.09| +38|2023-10-06T21:20:58.2190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||90.67|115.02|0.00|-0.09|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:20:58.2640000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1D19|82773|82773|10000|10000|||92.65|101.17|0.00|-0.51|10FF0009|Zewo Negiwo|0|81177|81177|5127|10000|||100.77|91.82|0.00|2.83| +21|2023-10-06T21:20:58.2640000-07:00|4002248D|Zeromus|8B2B|unknown_8b2b|4002248D|Zeromus|1B|8B2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.70|44|44|0|10000|||100.00|80.10|0.00|0.70|0001A330|0|1| +38|2023-10-06T21:20:58.2640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||92.65|101.17|0.00|-0.51|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:20:57.7880000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:20:57.9040000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:20:58.3080000-07:00|10FF0003|Gegehi Gehi|HoT|0|27A5|73814|73814|7000|10000|||91.14|103.95|0.00|-2.24|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1950|10000|||92.07|104.39|0.00|-0.42| +38|2023-10-06T21:20:58.3080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7000|10000|14||91.14|103.95|0.00|-2.24|0|0|0||||||||||||||||||| +261|2023-10-06T21:20:57.9040000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:20:58.3980000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2BC3|81541|81541|1950|10000|||91.99|105.29|0.00|-0.33|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1950|10000|||91.99|105.29|0.00|-0.33| +38|2023-10-06T21:20:58.3980000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1950|10000|12||91.99|105.29|0.00|-0.33|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:58.0190000-07:00|Change|10FF0009||||||||| +24|2023-10-06T21:20:58.4870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|27C5|129844|129844|10000|10000|||92.22|102.94|0.00|-1.55|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||92.22|102.94|0.00|-1.55| +24|2023-10-06T21:20:58.4870000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1D51|81809|81809|9600|10000|||89.90|102.15|0.00|-0.03|40022D3A||0||||||||||| +21|2023-10-06T21:20:58.4870000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|47EA0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|3636791|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||89.90|102.15|0.00|-0.03|0001A331|0|1| +38|2023-10-06T21:20:58.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||92.22|102.94|0.00|-1.55|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:20:58.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|12||89.90|102.15|0.00|-0.03|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:20:58.1360000-07:00|Change|10FF000A||||||||| +24|2023-10-06T21:20:58.5310000-07:00|10FF0009|Zewo Negiwo|HoT|777|DF2|81177|81177|5127|10000|||100.96|90.58|0.00|2.95|10FF0009|Zewo Negiwo|0|81177|81177|5127|10000|||100.96|90.58|0.00|2.95| +24|2023-10-06T21:20:58.5310000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E93|129071|129071|9000|10000|||91.46|96.43|0.00|3.10|10FF0009|Zewo Negiwo|0|81177|81177|5127|10000|||100.96|90.58|0.00|2.95| +24|2023-10-06T21:20:58.5310000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E9C|129844|129844|10000|10000|||92.22|102.94|0.00|-1.55|10FF0009|Zewo Negiwo|0|81177|81177|5127|10000|||100.96|90.58|0.00|2.95| +24|2023-10-06T21:20:58.5310000-07:00|10FF0009|Zewo Negiwo|HoT|0|1D57|81177|81177|5127|10000|||100.96|90.58|0.00|2.95|10FF0009|Zewo Negiwo|0|81177|81177|5127|10000|||100.96|90.58|0.00|2.95| +38|2023-10-06T21:20:58.5310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||92.22|102.94|0.00|-1.55|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:20:58.5310000-07:00|778|Asylum|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:20:58.5310000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|5127|10000|12||100.96|90.58|0.00|2.95|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:20:58.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:20:58.5310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|7||91.46|96.43|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:20:58.5310000-07:00|778|Asylum|4.96|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:20:58.5750000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1D60|129071|129071|9000|10000|||91.46|96.43|0.00|3.10|10FF0001|Sesuga Sapisuga|0|129071|129071|9000|10000|||91.46|96.43|0.00|3.10| +38|2023-10-06T21:20:58.5750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|7||91.46|96.43|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:20:58.2320000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:20:58.7090000-07:00|40022472|Zeromus|0001A32F|3634653||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:20:58.7090000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|89.32|104.86|0.00|-2.26| +261|2023-10-06T21:20:58.4170000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:20:58.8430000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40022472|Zeromus|726003|C0480000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|3634653|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||90.29|116.87|0.00|0.14|0001A332|0|1| +38|2023-10-06T21:20:58.8430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||90.29|116.87|0.00|0.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:20:58.8430000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:20:58.5110000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:20:59.1110000-07:00|40022472|Zeromus|0001A331|3616243||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:20:59.1110000-07:00|40022D66|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|13180000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|3634653|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||93.61|91.39|0.00|2.63|0001A333|0|1| +261|2023-10-06T21:20:58.7260000-07:00|Change|40022D58||||||||| +21|2023-10-06T21:20:59.2010000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|752003|38E90000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1950|10000|||91.51|111.66|-0.02|-0.10|0001A334|0|1| +21|2023-10-06T21:20:59.2440000-07:00|40022472|Zeromus|8B78|Chasmic Nails|40022472|Zeromus|1B|8B788000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A335|0|1| +261|2023-10-06T21:20:58.8440000-07:00|Change|40022472||||||||||||| +261|2023-10-06T21:20:58.8440000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:20:59.2900000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|AEE0000|FCFF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|5127|10000|||99.81|86.71|0.00|-2.70|0001A336|0|1| +261|2023-10-06T21:20:58.9550000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:20:58.9550000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:20:59.3790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||90.78|96.41|0.00|2.99|0001A337|0|1| +31|2023-10-06T21:20:59.3790000-07:00|10FF0001||||| +261|2023-10-06T21:20:58.9550000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:20:59.4680000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B0F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||90.29|116.87|0.00|2.88|0001A338|0|1| +39|2023-10-06T21:20:59.5580000-07:00|10FF0003|Gegehi Gehi|73814|73814|7200|10000|||89.07|105.18|0.00|2.73| +39|2023-10-06T21:20:59.6020000-07:00|10FF0009|Zewo Negiwo|81177|81177|4948|10000|||98.46|85.48|-0.02|-2.59| +39|2023-10-06T21:20:59.7360000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||90.29|116.87|0.00|2.88| +04|2023-10-06T21:20:59.3640000-07:00|40022D56|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||94.93|89.16|0.00|-2.05| +261|2023-10-06T21:20:59.3640000-07:00|Remove|40022D56| +39|2023-10-06T21:20:59.7800000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||93.07|109.91|0.00|-0.11| +24|2023-10-06T21:20:59.7800000-07:00|40022472|Zeromus|DoT|0|17E4|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:20:59.7800000-07:00|40022472|Zeromus|005A5A00|3610127|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:20:59.8690000-07:00|40022472|Zeromus|0001A332|3560903||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:59.8690000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||90.10|98.16|0.00|2.99| +21|2023-10-06T21:20:59.8690000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40022472|Zeromus|752003|B4D40000|200004|44C88000|0|0|0|0|0|0|0|0|0|0|0|0|3616243|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||90.10|98.16|0.00|2.99|0001A339|0|1| +36|2023-10-06T21:20:59.8690000-07:00|6D88|3| +38|2023-10-06T21:20:59.8690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|7||90.10|98.16|0.00|2.99|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:20:59.8690000-07:00|558|Requiescat|27.10|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:20:59.8690000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:20:59.8690000-07:00|10FF0001||||| +261|2023-10-06T21:20:59.4580000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:20:59.9140000-07:00|40022472|Zeromus|0001A337|3558790||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:20:59.9140000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1750|10000|||91.14|113.51|0.00|2.88| +22|2023-10-06T21:20:59.9590000-07:00|40022488|Zeromus|8B79|Chasmic Nails|10FF0009|Zewo Negiwo|710603|B6320000|100140E|6FD0000|BE0E|1080000|1B|8B798000|0|0|0|0|0|0|0|0|81177|81177|4948|10000|||98.23|85.33|0.00|-1.88|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001A33A|0|5| +22|2023-10-06T21:20:59.9590000-07:00|40022488|Zeromus|8B79|Chasmic Nails|10FF0001|Sesuga Sapisuga|710603|4CB10000|100140E|6FD0000|B60E|1080000|1B|8B798000|0|0|0|0|0|0|0|0|129071|129071|8200|10000|||89.84|98.14|0.00|2.99|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001A33A|1|5| +22|2023-10-06T21:20:59.9590000-07:00|40022488|Zeromus|8B79|Chasmic Nails|10FF0006|Wowobora Gogobora|710603|B4E60000|100140E|6FD0000|BE0E|1080000|1B|8B798000|0|0|0|0|0|0|0|0|81809|81809|9300|10000|||90.35|103.62|0.00|0.35|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001A33A|2|5| +22|2023-10-06T21:20:59.9590000-07:00|40022488|Zeromus|8B79|Chasmic Nails|10FF0007|Kehabiqo Febiqo|710603|51A80000|100140E|6FD0000|B60E|1080000|1B|8B798000|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||89.56|103.57|0.00|3.09|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001A33A|3|5| +22|2023-10-06T21:20:59.9590000-07:00|40022488|Zeromus|8B79|Chasmic Nails|10FF0003|Gegehi Gehi|710603|B9D00000|100140E|6FD0000|3D0E|1080000|1B|8B798000|0|0|0|0|0|0|0|0|73814|73814|7200|10000|||89.07|105.18|0.00|2.73|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001A33A|4|5| +261|2023-10-06T21:20:59.5600000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:20:59.6600000-07:00|Change|40022D58||||||||| +39|2023-10-06T21:21:00.0030000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||89.56|103.50|0.00|3.05| +39|2023-10-06T21:21:00.0030000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||90.35|103.62|0.00|0.35| +37|2023-10-06T21:21:00.1370000-07:00|40022472|Zeromus|0001A333|3553902||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:00.1370000-07:00|40022472|Zeromus|0001A334|3539333||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:00.1370000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|752003|49D10000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|3558790|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7200|10000|||89.07|105.18|0.00|2.73|0001A33B|0|1| +38|2023-10-06T21:21:00.1370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7000|10000|14||89.07|105.18|0.00|2.73|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:00.1370000-07:00|6FD|Vulnerability Up|59.82|40022488|Zeromus|10FF0003|Gegehi Gehi|01|73814|44| +26|2023-10-06T21:21:00.1370000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:20:59.6600000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:21:00.2250000-07:00|40022472|Zeromus|0001A338|3536502||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:00.2700000-07:00|4002247E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.35|90.99|0.00|0.00|0001A33C|0|0| +21|2023-10-06T21:21:00.2700000-07:00|4002247F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.06|90.40|0.00|0.00|0001A33D|0|0| +21|2023-10-06T21:21:00.2700000-07:00|40022480|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.43|103.57|0.00|0.00|0001A33E|0|0| +21|2023-10-06T21:21:00.2700000-07:00|40022481|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.83|109.77|0.00|0.00|0001A33F|0|0| +21|2023-10-06T21:21:00.2700000-07:00|40022482|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||103.15|116.98|0.00|0.00|0001A340|0|0| +21|2023-10-06T21:21:00.2700000-07:00|40022483|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.83|100.77|0.00|0.00|0001A341|0|0| +261|2023-10-06T21:20:59.7770000-07:00|Change|4002247E||||||||||| +21|2023-10-06T21:21:00.2700000-07:00|40022484|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.85|99.84|0.00|0.00|0001A342|0|0| +21|2023-10-06T21:21:00.2700000-07:00|40022485|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.88|106.31|0.00|0.00|0001A343|0|0| +261|2023-10-06T21:20:59.7770000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:20:59.7770000-07:00|Change|4002247F||||||||||| +261|2023-10-06T21:20:59.7770000-07:00|Change|40022481||||||||||| +261|2023-10-06T21:20:59.7770000-07:00|Change|40022482||||||||| +21|2023-10-06T21:21:00.2700000-07:00|40022489|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.04|100.49|0.00|0.00|0001A344|0|0| +261|2023-10-06T21:20:59.7770000-07:00|Change|40022483||||||||| +261|2023-10-06T21:20:59.7770000-07:00|Change|40022484||||||||| +261|2023-10-06T21:20:59.7770000-07:00|Change|40022485||||||||||| +261|2023-10-06T21:20:59.7770000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:21:00.0050000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:21:00.0050000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:21:00.0050000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:21:00.4930000-07:00|40022472|Zeromus|0001A339|3490210||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:00.5380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||90.29|116.87|0.00|2.88|0|0|0|||||||||||||||| +30|2023-10-06T21:21:00.5380000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:21:00.5380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|12||90.35|103.62|0.00|0.35|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:00.5380000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +26|2023-10-06T21:21:00.5380000-07:00|6FD|Vulnerability Up|59.42|40022488|Zeromus|10FF0006|Wowobora Gogobora|01|81809|44| +38|2023-10-06T21:21:00.5380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1750|10000|12||91.13|113.50|0.00|-2.91|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:00.5380000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:21:00.5380000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7000|10000|14||89.07|105.18|0.00|2.73|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:00.5380000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:21:00.5380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||90.71|110.71|0.00|3.07|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:00.5380000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:21:00.5830000-07:00|40022472|Zeromus|0001A336|3487412|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:21:00.5830000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:21:00.5830000-07:00|10FF0009|Zewo Negiwo|0001A33A|34535|81177|4948|10000|0||97.69|85.68|0.00|-1.29|1800|0|0|02|04000108|0|41700000|||||| +30|2023-10-06T21:21:00.5830000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +26|2023-10-06T21:21:00.5830000-07:00|108|Flesh Wound|15.00|40022488|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +26|2023-10-06T21:21:00.5830000-07:00|6FD|Vulnerability Up|60.00|40022488|Zeromus|10FF0009|Zewo Negiwo|01|81177|44| +21|2023-10-06T21:21:00.5830000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|37300000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|3490210|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||89.41|99.85|0.00|2.88|0001A345|0|1| +38|2023-10-06T21:21:00.5830000-07:00|10FF0009|Zewo Negiwo|005A5A18|34535|81177|4948|10000|0||97.69|85.68|0.00|-1.29|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:21:00.6280000-07:00|10FF0001|Sesuga Sapisuga|0001A33A|109438|129071|8200|10000|0||89.41|99.85|0.00|2.88|1301|0|0|02|040006FD|01|42700000|||||| +26|2023-10-06T21:21:00.6280000-07:00|6FD|Vulnerability Up|60.00|40022488|Zeromus|10FF0001|Sesuga Sapisuga|01|129071|44| +30|2023-10-06T21:21:00.6280000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +26|2023-10-06T21:21:00.6280000-07:00|108|Flesh Wound|15.00|40022488|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:21:00.6280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109438|129071|8200|10000|0||89.41|99.85|0.00|2.88|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:00.6720000-07:00|10FF0006|Wowobora Gogobora|0001A33A|35499|81809|9500|10000|0||90.32|103.61|0.00|-0.22|1B02|0|0|02|01000108|0|41700000|||||| +30|2023-10-06T21:21:00.6720000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +26|2023-10-06T21:21:00.6720000-07:00|108|Flesh Wound|15.00|40022488|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +21|2023-10-06T21:21:00.6720000-07:00|4002248A|Zeromus|8B7A|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.40|0001A346|0|0| +38|2023-10-06T21:21:00.6720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|35499|81809|9500|10000|0||90.32|103.61|0.00|-0.22|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:21:00.2150000-07:00|Change|4002248A||||||||||||| +37|2023-10-06T21:21:00.7170000-07:00|10FF0007|Kehabiqo Febiqo|0001A33A|108940|129844|10000|10000|0||89.50|103.48|0.00|2.92|1503|0|0|02|02000108|0|41700000|||||| +30|2023-10-06T21:21:00.7170000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +26|2023-10-06T21:21:00.7170000-07:00|108|Flesh Wound|15.00|40022488|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +26|2023-10-06T21:21:00.7170000-07:00|6FD|Vulnerability Up|60.00|40022488|Zeromus|10FF0007|Kehabiqo Febiqo|01|129844|44| +38|2023-10-06T21:21:00.7170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108940|129844|10000|10000|0||89.50|103.48|0.00|2.92|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:00.7610000-07:00|10FF0003|Gegehi Gehi|0001A33A|26246|73814|7000|10000|0||89.07|105.18|0.00|2.73|2304|0|0|03|02000108|0|41700000|||||||||| +26|2023-10-06T21:21:00.7610000-07:00|108|Flesh Wound|15.00|40022488|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T21:21:00.7620000-07:00|10FF0003|Gegehi Gehi|005A5A23|26246|73814|7000|10000|0||89.07|105.18|0.00|2.73|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:00.7620000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +37|2023-10-06T21:21:00.8950000-07:00|40022472|Zeromus|0001A33B|3468515||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:00.4140000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:21:00.9400000-07:00|40022472|Zeromus|0001A345|3454387||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:00.9400000-07:00|10FF0001|Sesuga Sapisuga|0001A345|109438|129071|8700|10000|0||90.89|99.98|0.00|2.88|1300|0|0|0| +21|2023-10-06T21:21:00.9400000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|59700000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|3487412|40478540|10000|10000|||100.00|80.10|0.00|0.00|35499|81809|9500|10000|||90.26|103.58|0.00|-1.27|0001A347|0|1| +261|2023-10-06T21:21:00.5190000-07:00|Change|10FF0009||||||||||||| +39|2023-10-06T21:21:00.9840000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||88.25|109.90|0.00|-2.78| +21|2023-10-06T21:21:01.0280000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|22330000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|26246|73814|7000|10000|||89.03|105.18|0.00|2.80|73956|77430|10000|10000|||92.64|112.34|0.00|2.82|0001A348|0|1| +21|2023-10-06T21:21:01.1630000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|550003|34240000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|3454387|40478540|10000|10000|||100.00|80.10|0.00|0.00|26246|73814|7000|10000|||88.99|105.18|0.00|2.90|0001A349|0|1| +38|2023-10-06T21:21:01.1630000-07:00|10FF0003|Gegehi Gehi|005A5A23|26246|73814|6700|10000|0||88.99|105.18|0.00|2.90|0|0|0|||||||||||||||| +30|2023-10-06T21:21:01.1630000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:21:00.7300000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:21:01.2070000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2772|90216|90216|10000|10000|||89.87|116.78|-0.02|-2.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||87.62|112.55|0.00|-1.93| +257|2023-10-06T21:21:01.2070000-07:00|80034E7C|00200004|02|00|0000| +38|2023-10-06T21:21:01.2070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||89.87|116.78|-0.02|-2.11|0|0|0|||||||||||||||| +24|2023-10-06T21:21:01.2520000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2A17|82773|82773|10000|10000|||86.76|108.27|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||86.81|112.13|0.00|-1.99| +21|2023-10-06T21:21:01.2520000-07:00|40022490|Zeromus|8B82|Dimensional Surge|10FF0009|Zewo Negiwo|750003|EF180000|200140E|6FD0000|1B|8B828000|0|0|0|0|0|0|0|0|0|0|34535|81177|4948|10000|||93.24|85.84|0.00|-1.50|44|44|0|10000|||80.10|87.00|0.00|1.57|0001A34A|0|1| +38|2023-10-06T21:21:01.2520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||86.76|108.27|0.00|-3.07|0|0|0||||||||||||||||||| +24|2023-10-06T21:21:01.2970000-07:00|10FF0003|Gegehi Gehi|DoT|0|29DB|26246|73814|6700|10000|||88.63|104.88|0.00|2.76|40022488|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|-0.70| +24|2023-10-06T21:21:01.2970000-07:00|10FF0003|Gegehi Gehi|HoT|0|1CD2|26246|73814|6700|10000|||88.63|104.88|0.00|2.76|40022488|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|-0.70| +21|2023-10-06T21:21:01.2970000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|9A060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3454387|40478540|10000|10000|||100.00|80.10|0.00|0.00|108940|129844|10000|10000|||89.78|101.53|0.00|2.72|0001A34B|0|1| +38|2023-10-06T21:21:01.2970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108940|129844|10000|10000|0||89.78|101.53|0.00|2.72|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:01.2970000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:21:01.2970000-07:00|10FF0003|Gegehi Gehi|005A5A23|22909|73814|6700|10000|0||88.63|104.88|0.00|2.76|0|0|0|||||||||||||||| +261|2023-10-06T21:21:00.9500000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:21:00.9500000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:21:00.9500000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:21:01.3860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1C67|81541|81541|1750|10000|||86.03|111.71|0.00|-2.05|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||86.03|111.71|0.00|-2.05| +21|2023-10-06T21:21:01.3860000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44722003|604B0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|3454387|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.34|116.42|0.00|-1.95|0001A34C|0|1| +21|2023-10-06T21:21:01.3860000-07:00|4002248E|Zeromus|8B7B|Chasmic Nails|10FF0008|Kokosaze Lulusaze|710603|95CF0000|100140E|6FD0000|C30E|1080000|1B|8B7B8000|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||88.34|116.42|0.00|-1.95|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A34D|0|1| +38|2023-10-06T21:21:01.3860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1750|10000|12||86.03|111.71|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:01.4310000-07:00|10FF0009|Zewo Negiwo|0001A34A|0|81177|0|10000|0||92.69|86.27|0.00|-1.31|1800|0|0|04|02000000|0|0|||||||||||||| +38|2023-10-06T21:21:01.4310000-07:00|10FF0009|Zewo Negiwo|005A5A18|0|81177|0|10000|0||92.69|86.27|0.00|-1.31|0|0|0||||||| +30|2023-10-06T21:21:01.4310000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +30|2023-10-06T21:21:01.4310000-07:00|752|Angel's Whisper|0.00|40022D3A|Seraph|10FF0009|Zewo Negiwo|00|81177|| +30|2023-10-06T21:21:01.4310000-07:00|108|Flesh Wound|0.00|40022488|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +30|2023-10-06T21:21:01.4310000-07:00|777|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +261|2023-10-06T21:21:01.0640000-07:00|Change|4002248E||||||||||||| +30|2023-10-06T21:21:01.4310000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +30|2023-10-06T21:21:01.4310000-07:00|6FD|Vulnerability Up|0.00|40022488|Zeromus|10FF0009|Zewo Negiwo|01|81177|44| +24|2023-10-06T21:21:01.4750000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|184D|108940|129844|10000|10000|||89.80|101.39|0.00|2.71|40022488|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|-0.70| +24|2023-10-06T21:21:01.4750000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|21A0|108940|129844|10000|10000|||89.80|101.39|0.00|2.71|40022488|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|-0.70| +24|2023-10-06T21:21:01.4750000-07:00|10FF0006|Wowobora Gogobora|DoT|0|285A|35499|81809|9200|10000|||87.69|101.92|0.00|3.00|40022D3A||FFFFFFFF||||||||||| +24|2023-10-06T21:21:01.4750000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1D93|35499|81809|9200|10000|||87.69|101.92|0.00|3.00|40022D3A||0||||||||||| +38|2023-10-06T21:21:01.4750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111327|129844|10000|10000|0||89.80|101.39|0.00|2.71|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:01.4750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|32740|81809|9200|10000|0||87.69|101.92|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:01.5640000-07:00|40022472|Zeromus|0001A347|3431491||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:01.5640000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|1822|109438|129071|8700|10000|||91.15|100.05|0.00|2.88|10FF0001|Sesuga Sapisuga|FFFFFFFF|109438|129071|8700|10000|||91.15|100.05|0.00|2.88| +24|2023-10-06T21:21:01.5640000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1C94|109438|129071|8700|10000|||91.15|100.05|0.00|2.88|10FF0001|Sesuga Sapisuga|0|109438|129071|8700|10000|||91.15|100.05|0.00|2.88| +21|2023-10-06T21:21:01.5640000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3454387|40478540|10000|10000|||100.00|80.10|0.00|0.00|111327|129844|10000|10000|||89.81|101.35|0.00|2.74|0001A34E|0|1| +21|2023-10-06T21:21:01.5640000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|132F0F|A748000|0|0|0|0|0|0|0|0|0|0|109438|129071|8700|10000|||91.15|100.05|0.00|2.88|109438|129071|8700|10000|||91.15|100.05|0.00|2.88|0001A34F|0|1| +38|2023-10-06T21:21:01.5640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110576|129071|8700|10000|0||91.15|100.05|0.00|2.88|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:01.5640000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:21:01.5640000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:21:01.5640000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:21:01.5640000-07:00|10FF0001||||| +21|2023-10-06T21:21:01.6530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|D8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3431491|40478540|10000|10000|||100.00|80.10|0.00|0.00|110576|129071|8700|10000|||91.15|100.05|0.00|2.88|0001A350|0|1| +31|2023-10-06T21:21:01.6530000-07:00|10FF0001||||| +38|2023-10-06T21:21:01.6970000-07:00|40022D66|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||93.61|91.39|0.00|2.63|0|0|0||||||| +26|2023-10-06T21:21:01.6970000-07:00|30|Well Fed|1211.58|10FF0006|Wowobora Gogobora|40022D66|Demi-Bahamut|2964|69928|81809| +26|2023-10-06T21:21:01.6970000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022D66|Demi-Bahamut|01|69928|40478540| +21|2023-10-06T21:21:01.6970000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40022472|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|3431491|40478540|10000|10000|||100.00|80.10|0.00|0.00|32740|81809|9200|10000|||87.13|102.11|0.00|-2.28|0001A351|0|1| +261|2023-10-06T21:21:01.3940000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:01.3940000-07:00|Remove|40022D65| +21|2023-10-06T21:21:01.7860000-07:00|40022D66|Demi-Bahamut|1D19|Akh Morn|40022472|Zeromus|752003|1C314001|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|3431491|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||93.61|91.39|0.00|2.63|0001A352|0|1| +37|2023-10-06T21:21:01.8300000-07:00|10FF0003|Gegehi Gehi|0001A348|31664||||||87.07|101.80|0.00|3.12| +37|2023-10-06T21:21:01.9190000-07:00|40022472|Zeromus|0001A349|3418143||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:01.5900000-07:00|Change|10FF0009||||||||||| +39|2023-10-06T21:21:01.9640000-07:00|40022D66|Demi-Bahamut|66800|69928|10000|10000|||93.61|91.39|0.00|2.63| +21|2023-10-06T21:21:01.9640000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|712003|4A360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3431491|40478540|10000|10000|||100.00|80.10|0.00|0.00|111327|129844|10000|10000|||90.39|99.88|0.00|2.73|0001A353|0|1| +37|2023-10-06T21:21:02.0080000-07:00|10FF0008|Kokosaze Lulusaze|0001A34D|51865|90216|10000|10000|0||85.01|115.57|0.00|-2.05|1F00|0|0|02|04000108|0|41700000|||||| +30|2023-10-06T21:21:02.0080000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +26|2023-10-06T21:21:02.0080000-07:00|108|Flesh Wound|15.00|4002248E|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +26|2023-10-06T21:21:02.0080000-07:00|6FD|Vulnerability Up|60.00|4002248E|Zeromus|10FF0008|Kokosaze Lulusaze|01|90216|44| +38|2023-10-06T21:21:02.0080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|51865|90216|10000|10000|0||85.01|115.57|0.00|-2.05|0|0|0||||||||||||||||||| +261|2023-10-06T21:21:01.5900000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:21:02.0520000-07:00|40022486|Zeromus|8B7C|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.40|0001A354|0|0| +37|2023-10-06T21:21:02.0970000-07:00|40022472|Zeromus|0001A34E|3413465||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:02.1410000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|87F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3418143|40478540|10000|10000|||100.00|80.10|0.00|0.00|51865|90216|10000|10000|||84.73|115.49|0.00|-1.94|0001A355|0|1| +37|2023-10-06T21:21:02.1860000-07:00|40022472|Zeromus|0001A34C|3388814||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:02.1860000-07:00|40022472|Zeromus|0001A350|3385343||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:01.8240000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:21:01.8240000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:21:02.2310000-07:00|40022472|Zeromus|0001A34B|3345913||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:02.2310000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|4D5A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|111327|129844|10000|10000|||90.59|99.36|0.00|2.69|3385343|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A356|0|1| +21|2023-10-06T21:21:02.3200000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40022472|Zeromus|750003|4F660000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|3385343|40478540|10000|10000|||100.00|80.10|0.00|0.00|32740|81809|9200|10000|||86.93|102.25|0.00|2.61|0001A357|0|1| +21|2023-10-06T21:21:02.4990000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40022472|Zeromus|756003|B5D70000|200004|42388000|0|0|0|0|0|0|0|0|0|0|0|0|3345913|40478540|10000|10000|||100.00|80.10|0.00|0.00|110576|129071|8700|10000|||91.20|99.32|0.00|2.71|0001A358|0|1| +38|2023-10-06T21:21:02.4990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110576|129071|7700|10000|0||91.20|99.32|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:02.4990000-07:00|558|Requiescat|24.47|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:21:02.4990000-07:00|10FF0001||||| +39|2023-10-06T21:21:02.5440000-07:00|10FF0003|Gegehi Gehi|32402|73814|6900|10000|||87.05|98.52|0.00|-3.08| +21|2023-10-06T21:21:02.5440000-07:00|10FF0008|Kokosaze Lulusaze|1D75|Second Wind|10FF0008|Kokosaze Lulusaze|200004|50960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51865|90216|10000|10000|||84.49|115.43|0.00|-1.83|51865|90216|10000|10000|||84.49|115.43|0.00|-1.83|0001A359|0|1| +261|2023-10-06T21:21:02.1820000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:21:02.5880000-07:00|40022472|Zeromus|0001A353|3326915||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:02.5880000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|111327|129844|10000|10000|||90.62|99.29|0.00|2.69|111327|129844|10000|10000|||90.62|99.29|0.00|2.69|0001A35A|0|1| +38|2023-10-06T21:21:02.5880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111327|129844|10000|10000|0||90.62|99.29|0.00|2.69|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:02.5880000-07:00|A75|Surging Tempest|24.91|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:21:02.5880000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:21:02.5880000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:21:02.5880000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +20|2023-10-06T21:21:02.6320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|87.22|103.26|0.00|2.77| +37|2023-10-06T21:21:02.6770000-07:00|40022472|Zeromus|0001A352|3254162||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:02.6770000-07:00|40022D66|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||93.61|91.39|0.00|2.63|0|0|0|||| +30|2023-10-06T21:21:02.6770000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022D66|Demi-Bahamut|01|69928|40478540| +39|2023-10-06T21:21:02.7210000-07:00|10FF0008|Kokosaze Lulusaze|52767|90216|10000|10000|||84.49|115.43|0.00|-1.83| +39|2023-10-06T21:21:02.7660000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||91.72|111.00|0.00|-2.63| +24|2023-10-06T21:21:02.7660000-07:00|40022472|Zeromus|DoT|0|1DF0|3326915|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|3326915|40478540|10000|10000|||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:02.3640000-07:00|Change|4002248C||||||||||||| +21|2023-10-06T21:21:02.7660000-07:00|4002248C|Zeromus|8B7D|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.70|0001A35B|0|0| +38|2023-10-06T21:21:02.7660000-07:00|40022472|Zeromus|005A5A00|3246498|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +36|2023-10-06T21:21:02.8550000-07:00|6E64|3| +37|2023-10-06T21:21:02.8990000-07:00|40022472|Zeromus|0001A355|3244323||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:02.8990000-07:00|10FF0001|Sesuga Sapisuga|111866|129071|7900|10000|||91.20|99.32|0.00|2.71| +39|2023-10-06T21:21:02.8990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1950|10000|||87.47|102.57|0.00|2.69| +39|2023-10-06T21:21:02.9900000-07:00|10FF0007|Kehabiqo Febiqo|112625|129844|10000|10000|||90.62|99.29|0.00|2.69| +39|2023-10-06T21:21:02.9900000-07:00|10FF0006|Wowobora Gogobora|33558|81809|9400|10000|||86.93|102.25|-0.02|2.79| +261|2023-10-06T21:21:02.5610000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:21:03.0340000-07:00|10FF0007|Kehabiqo Febiqo|0001A356|92823|129844|10000|10000|0||90.62|99.29|0.00|2.69|1500|0|0|03|07000499|03|C1700000|||||||||| +261|2023-10-06T21:21:02.6580000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:21:03.0340000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3244323|40478540|10000|10000|||100.00|80.10|0.00|0.00|32402|73814|6900|10000|||87.57|98.10|0.00|-3.10|0001A35C|0|1| +38|2023-10-06T21:21:03.0340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|52767|90216|10000|10000|0||84.49|115.43|0.00|-1.83|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:03.0340000-07:00|752|Angel's Whisper|0.00|40022D3A|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|| +37|2023-10-06T21:21:03.1240000-07:00|40022472|Zeromus|0001A357|3223997||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:03.1240000-07:00|40022472|Zeromus|0001A358|3177446||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:03.1240000-07:00|10FF0001|Sesuga Sapisuga|0001A358|128818||||||91.20|99.32|0.00|2.71| +37|2023-10-06T21:21:03.1680000-07:00|10FF0008|Kokosaze Lulusaze|0001A359|73397||||||84.49|115.43|0.00|-1.83| +38|2023-10-06T21:21:03.1680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|33558|81809|9400|10000|0||86.88|102.22|0.00|2.58|0|0|0|||||||||||||||| +30|2023-10-06T21:21:03.1680000-07:00|752|Angel's Whisper|0.00|40022D3A|Seraph|10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T21:21:02.8870000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:21:03.2140000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|714003|17570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3177446|40478540|10000|10000|||100.00|80.10|0.00|0.00|128818|129071|7900|10000|||91.20|99.32|0.00|2.71|0001A35D|0|1| +21|2023-10-06T21:21:03.2570000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|724003|500B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3177446|40478540|10000|10000|||100.00|80.10|0.00|0.00|32402|73814|6900|10000|||87.57|98.10|0.00|2.54|0001A35E|0|1| +38|2023-10-06T21:21:03.3020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92823|129844|10000|10000|0||90.62|99.29|0.00|2.69|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:03.3020000-07:00|752|Angel's Whisper|0.00|40022D3A|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|| +37|2023-10-06T21:21:03.3460000-07:00|10FF0007|Kehabiqo Febiqo|0001A35A|92823|129844|10000|10000|0||90.62|99.29|0.00|2.69|1500|0|0|03|07000499|03|41700000|||||||||| +38|2023-10-06T21:21:03.3460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92823|129844|10000|10000|0||90.62|99.29|0.00|2.69|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:21:03.3910000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|750003|499C0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|3177446|40478540|10000|10000|||100.00|80.10|0.00|0.00|33558|81809|9400|10000|||86.85|102.22|0.00|2.11|0001A35F|0|1| +21|2023-10-06T21:21:03.3910000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18400000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|3177446|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||88.12|102.02|0.00|2.84|0001A360|0|1| +25|2023-10-06T21:21:03.4350000-07:00|10FF0009|Zewo Negiwo|40022490|Zeromus| +21|2023-10-06T21:21:03.4350000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|10A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3177446|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||88.12|102.02|0.00|2.84|0001A361|0|1| +38|2023-10-06T21:21:03.4350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||88.12|102.02|0.00|2.84|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:03.4350000-07:00|752|Angel's Whisper|0.00|40022D3A|Seraph|10FF000A|Dukaro Nezikaro|00|82773|| +261|2023-10-06T21:21:03.1130000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:21:03.1130000-07:00|Change|40022D58||||||||| +261|2023-10-06T21:21:03.1130000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:21:03.5240000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128818|129071|7900|10000|0||91.33|99.04|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:03.5240000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:21:03.5680000-07:00|40022472|Zeromus|0001A35C|3177401||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:03.5680000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|52E90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|3177446|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1950|10000|||87.66|102.04|0.00|2.63|0001A362|0|1| +38|2023-10-06T21:21:03.5680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92823|129844|10000|10000|0||90.62|99.29|0.00|2.69|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:03.5680000-07:00|778|Asylum|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:21:03.5680000-07:00|10FF0003|Gegehi Gehi|005A5A23|32402|73814|6900|10000|0||87.57|98.10|0.00|2.54|0|0|0|||||||||||||||| +30|2023-10-06T21:21:03.5680000-07:00|752|Angel's Whisper|0.00|40022D3A|Seraph|10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T21:21:03.2320000-07:00|Change|10FF0001||||||| +21|2023-10-06T21:21:03.7470000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|79B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3177401|40478540|10000|10000|||100.00|80.10|0.00|0.00|92823|129844|10000|10000|||90.62|99.29|0.00|2.69|0001A363|0|1| +38|2023-10-06T21:21:03.7470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92823|129844|10000|10000|0||90.62|99.29|0.00|2.69|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:03.7470000-07:00|499|Inner Release|14.56|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +37|2023-10-06T21:21:03.7910000-07:00|40022472|Zeromus|0001A35D|3171426||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:03.7910000-07:00|40022472|Zeromus|0001A360|3165218||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:03.8360000-07:00|40022D66|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|754003|184E0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|3165218|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||93.61|91.39|0.00|2.63|0001A364|0|1| +38|2023-10-06T21:21:03.8360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|12||87.66|102.01|0.00|2.62|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:03.8360000-07:00|752|Angel's Whisper|0.00|40022D3A|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|| +21|2023-10-06T21:21:03.8810000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1E140000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|3165218|40478540|10000|10000|||100.00|80.10|0.00|0.00|73397|90216|10000|10000|||84.49|115.43|0.00|-1.97|0001A365|0|1| +21|2023-10-06T21:21:03.9260000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3165218|40478540|10000|10000|||100.00|80.10|0.00|0.00|128818|129071|7900|10000|||91.47|98.74|0.00|2.71|0001A366|0|1| +31|2023-10-06T21:21:03.9260000-07:00|10FF0001||||| +37|2023-10-06T21:21:03.9700000-07:00|40022472|Zeromus|0001A361|3160958||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:03.9700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128818|129071|7900|10000|0||91.47|98.74|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:03.9700000-07:00|752|Angel's Whisper|0.00|40022D3A|Seraph|10FF0001|Sesuga Sapisuga|00|129071|| +261|2023-10-06T21:21:03.6150000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:03.7140000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:21:04.0140000-07:00|40022472|Zeromus|0001A35F|3142114||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:04.0140000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||89.03|98.89|-0.01|2.85| +21|2023-10-06T21:21:04.0590000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|720003|35710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3160958|40478540|10000|10000|||100.00|80.10|0.00|0.00|32402|73814|6900|10000|||87.57|98.10|0.00|2.54|0001A367|0|1| +24|2023-10-06T21:21:04.2390000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|2885|73397|90216|10000|10000|||84.49|115.43|0.00|2.73|4002248E|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:04.2390000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|136F|73397|90216|10000|10000|||84.49|115.43|0.00|2.73|4002248E|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:04.2390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67999|90216|10000|10000|0||84.49|115.43|0.00|2.73|0|0|0||||||||||||||||||| +24|2023-10-06T21:21:04.2830000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1E73|82773|82773|10000|10000|||89.04|98.86|0.00|2.86|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||87.96|101.46|0.00|2.56| +38|2023-10-06T21:21:04.2830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||89.04|98.86|0.00|2.86|0|0|0||||||||||||||||||| +24|2023-10-06T21:21:04.3270000-07:00|10FF0003|Gegehi Gehi|DoT|0|2B09|32402|73814|6900|10000|||87.58|98.11|-0.02|2.53|40022488|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|-0.70| +24|2023-10-06T21:21:04.3270000-07:00|10FF0003|Gegehi Gehi|HoT|0|1306|32402|73814|6900|10000|||87.58|98.11|-0.02|2.53|40022488|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|-0.70| +38|2023-10-06T21:21:04.3270000-07:00|10FF0003|Gegehi Gehi|005A5A23|26255|73814|6900|10000|0||87.58|98.11|-0.02|2.53|0|0|0|||||||||||||||| +37|2023-10-06T21:21:04.3720000-07:00|40022472|Zeromus|0001A363|3110958||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:04.3720000-07:00|40022472|Zeromus|0001A362|3089733||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:04.3720000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|13F5|81541|81541|1550|10000|||88.37|100.70|0.00|2.58|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||88.37|100.70|0.00|2.58| +38|2023-10-06T21:21:04.3720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|12||88.37|100.70|0.00|2.58|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:04.4170000-07:00|40022472|Zeromus|0001A35E|3069242||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:04.4170000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|15690000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|33558|81809|9100|10000|||87.25|101.63|-0.02|2.19|73956|77430|10000|10000|||88.26|104.09|0.00|2.91|0001A368|0|1| +37|2023-10-06T21:21:04.4610000-07:00|40022472|Zeromus|0001A366|3067021||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:04.5060000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|17F9|92823|129844|10000|10000|||90.64|99.29|0.00|2.65|10FF0007|Kehabiqo Febiqo|FFFFFFFF|92823|129844|10000|10000|||90.64|99.29|0.00|2.65| +24|2023-10-06T21:21:04.5060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|13B4|92823|129844|10000|10000|||90.64|99.29|0.00|2.65|10FF0007|Kehabiqo Febiqo|0|92823|129844|10000|10000|||90.64|99.29|0.00|2.65| +24|2023-10-06T21:21:04.5060000-07:00|10FF0006|Wowobora Gogobora|DoT|0|29AA|33558|81809|9100|10000|||87.43|101.48|0.00|2.31|40022488|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|-0.70| +24|2023-10-06T21:21:04.5060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1374|33558|81809|9100|10000|||87.43|101.48|0.00|2.31|40022488|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|-0.70| +38|2023-10-06T21:21:04.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91730|129844|10000|10000|0||90.64|99.29|0.00|2.65|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:04.5060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|27872|81809|9100|10000|0||87.43|101.48|0.00|2.31|0|0|0|||||||||||||||| +24|2023-10-06T21:21:04.5960000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|18DA|128818|129071|7900|10000|||91.47|98.74|0.00|2.71|10FF0001|Sesuga Sapisuga|FFFFFFFF|128818|129071|7900|10000|||91.47|98.74|0.00|2.71| +24|2023-10-06T21:21:04.5960000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|398B|128818|129071|7900|10000|||91.47|98.74|0.00|2.71|10FF0001|Sesuga Sapisuga|0|128818|129071|7900|10000|||91.47|98.74|0.00|2.71| +38|2023-10-06T21:21:04.5960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|27872|81809|9100|10000|0||87.61|101.33|0.00|2.44|0|0|0|||||||||||||||| +30|2023-10-06T21:21:04.5960000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:21:04.5960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||91.47|98.74|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:04.6400000-07:00|40022472|Zeromus|0001A365|3059321||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:04.7290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67999|90216|10000|10000|0||84.75|114.74|0.00|2.77|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:04.7290000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +261|2023-10-06T21:21:04.3880000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:21:04.8180000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B5D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3059321|40478540|10000|10000|||100.00|80.10|0.00|0.00|67999|90216|10000|10000|||85.06|113.89|0.00|2.78|0001A369|0|1| +37|2023-10-06T21:21:04.8630000-07:00|40022472|Zeromus|0001A364|3053099||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:04.8630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||91.47|98.74|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:04.8630000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +261|2023-10-06T21:21:04.4800000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:21:04.9530000-07:00|40022D66|Demi-Bahamut|66800|69928|10000|10000|||93.61|91.39|0.00|2.63| +21|2023-10-06T21:21:04.9530000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|EE60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3053099|40478540|10000|10000|||100.00|80.10|0.00|0.00|91730|129844|10000|10000|||92.29|99.06|0.00|2.53|0001A36A|0|1| +21|2023-10-06T21:21:04.9970000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40022472|Zeromus|750003|68C20000|4|26AD8000|0|0|0|0|0|0|0|0|0|0|0|0|3053099|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||91.47|98.74|0.00|2.71|0001A36B|0|1| +20|2023-10-06T21:21:04.9970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|91.18|97.94|0.00|2.23| +38|2023-10-06T21:21:04.9970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|0||91.47|98.74|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:04.9970000-07:00|558|Requiescat|21.97|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:21:04.9970000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|12||91.18|97.94|0.00|2.23|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:04.9970000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +31|2023-10-06T21:21:04.9970000-07:00|10FF0001||||| +261|2023-10-06T21:21:04.5800000-07:00|Change|10FF0001||| +20|2023-10-06T21:21:05.0860000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|89.85|100.38|0.00|2.27| +261|2023-10-06T21:21:04.6800000-07:00|Change|10FF0003||||||||||||||||||| +38|2023-10-06T21:21:05.1300000-07:00|10FF0003|Gegehi Gehi|005A5A23|26255|73814|6900|10000|0||90.15|100.50|-0.02|2.26|0|0|0|||||||||||||||| +30|2023-10-06T21:21:05.1300000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:21:05.2190000-07:00|10FF0006|Wowobora Gogobora|0001A368|33353||||||88.97|100.89|0.00|1.84| +37|2023-10-06T21:21:05.2190000-07:00|40022472|Zeromus|0001A367|3039418||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:04.9070000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:21:05.2640000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|4B9E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|91730|129844|10000|10000|||94.41|98.73|0.00|2.51|3053099|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A36C|0|1| +38|2023-10-06T21:21:05.2640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91730|129844|10000|10000|0||94.41|98.73|0.00|2.51|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:05.2640000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +21|2023-10-06T21:21:05.3970000-07:00|40022D66|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|13470000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|3039418|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||93.61|91.39|0.00|2.63|0001A36D|0|1| +38|2023-10-06T21:21:05.3970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||92.70|98.38|0.00|-3.04|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:05.3970000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:21:05.4860000-07:00|40022472|Zeromus|0001A36A|3035604||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:05.1280000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:21:05.5310000-07:00|10FF0003|Gegehi Gehi|26993|73814|7100|10000|||90.64|100.51|0.00|2.62| +21|2023-10-06T21:21:05.5310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3039418|40478540|10000|10000|||100.00|80.10|0.00|0.00|33353|81809|9100|10000|||90.47|100.59|0.00|1.78|0001A36E|0|1| +21|2023-10-06T21:21:05.5310000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32714003|2A2D0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|3039418|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||93.49|98.27|0.00|-3.03|0001A36F|0|1| +261|2023-10-06T21:21:05.2450000-07:00|Change|10FF0001||| +37|2023-10-06T21:21:05.5750000-07:00|40022472|Zeromus|0001A369|3032695||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:05.5750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|0||91.47|98.74|0.00|2.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:05.5750000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:21:05.2450000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:21:05.6200000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3035604|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||93.95|98.21|0.00|2.87|0001A370|0|1| +261|2023-10-06T21:21:05.2450000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T21:21:05.7080000-07:00|10FF0008|Kokosaze Lulusaze|68901|90216|10000|10000|||89.75|111.36|0.00|2.06| +261|2023-10-06T21:21:05.4340000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:21:05.7530000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||88.24|103.72|0.00|2.83| +24|2023-10-06T21:21:05.7530000-07:00|40022472|Zeromus|DoT|0|27ED|3032695|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|3032695|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:05.7530000-07:00|40022472|Zeromus|005A5A00|3022474|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:21:05.8420000-07:00|10FF0001|Sesuga Sapisuga|1CD6|Intervention|10FF0006|Wowobora Gogobora|F60E|4960000|F60E|A730000|13CE0E|A740000|0|0|0|0|0|0|0|0|0|0|33353|81809|9100|10000|||92.23|99.50|0.00|2.06|129071|129071|6900|10000|||91.47|98.74|0.00|0.72|0001A371|0|1| +36|2023-10-06T21:21:05.8420000-07:00|6F40|3| +31|2023-10-06T21:21:05.8420000-07:00|10FF0001||||| +37|2023-10-06T21:21:05.8870000-07:00|40022472|Zeromus|0001A36B|2995656||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:05.8870000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7100|10000|||91.47|98.74|0.00|1.12| +39|2023-10-06T21:21:05.8870000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1750|10000|||91.94|97.43|0.00|2.71| +37|2023-10-06T21:21:05.9310000-07:00|40022472|Zeromus|0001A36F|2984859||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:05.9310000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|752003|75C00000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|3022474|40478540|10000|10000|||100.00|80.10|0.00|0.00|33353|81809|9100|10000|||92.84|99.34|0.00|2.01|0001A372|0|1| +21|2023-10-06T21:21:05.9310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|752003|52160000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|3022474|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1550|10000|||91.94|97.43|0.00|2.71|0001A373|0|1| +39|2023-10-06T21:21:05.9750000-07:00|10FF0007|Kehabiqo Febiqo|93028|129844|10000|10000|||96.85|97.55|0.00|2.63| +261|2023-10-06T21:21:05.7190000-07:00|Change|40022D58||||||||| +39|2023-10-06T21:21:06.0200000-07:00|10FF0006|Wowobora Gogobora|34171|81809|9000|10000|||94.08|99.08|0.00|2.84| +37|2023-10-06T21:21:06.0640000-07:00|10FF0007|Kehabiqo Febiqo|0001A36C|73670||||||96.79|97.10|0.00|2.68| +37|2023-10-06T21:21:06.0640000-07:00|40022472|Zeromus|0001A36E|2984668||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:06.1540000-07:00|40022472|Zeromus|0001A370|2981106||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:06.1540000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|736003|1320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2984859|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1350|10000|||91.94|97.43|0.00|2.71|0001A374|0|1| +261|2023-10-06T21:21:05.8160000-07:00|Change|10FF0001||||||| +21|2023-10-06T21:21:06.1990000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|74510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2981106|40478540|10000|10000|||100.00|80.10|0.00|0.00|73670|129844|10000|10000|||96.79|97.06|0.00|2.76|0001A375|0|1| +38|2023-10-06T21:21:06.1990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|73670|129844|10000|10000|0||96.79|97.06|0.00|2.76|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:06.1990000-07:00|499|Inner Release|12.10|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +21|2023-10-06T21:21:06.3770000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|5DFE0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|2981106|40478540|10000|10000|||100.00|80.10|0.00|0.00|68901|90216|10000|10000|||92.15|108.58|0.00|2.54|0001A376|0|1| +37|2023-10-06T21:21:06.4210000-07:00|40022472|Zeromus|0001A36D|2976171||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:06.1560000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:21:06.5090000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|754003|38BB0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|2976171|40478540|10000|10000|||100.00|80.10|0.00|0.00|26993|73814|7100|10000|||90.78|100.51|0.00|2.72|0001A377|0|1| +38|2023-10-06T21:21:06.5090000-07:00|10FF0003|Gegehi Gehi|005A5A23|26993|73814|6900|10000|0||90.78|100.51|0.00|2.72|0|0|0|||||||||||||||| +26|2023-10-06T21:21:06.5090000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:21:06.2720000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T21:21:06.5990000-07:00|40022472|Zeromus|0001A372|2946027||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:06.2720000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:21:06.6440000-07:00|10FF0006|Wowobora Gogobora|0001A371|34171|81809|9000|10000|0||94.65|99.15|0.00|1.87|1B00|0|0|03|0496|0|41000000|||||||||| +26|2023-10-06T21:21:06.6440000-07:00|496|Intervention|8.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +26|2023-10-06T21:21:06.6440000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +26|2023-10-06T21:21:06.6440000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +37|2023-10-06T21:21:06.6890000-07:00|40022472|Zeromus|0001A374|2945721||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:06.7330000-07:00|40022472|Zeromus|0001A373|2924707||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:06.7340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34171|81809|9000|10000|0||94.65|99.18|0.00|1.71|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:06.7340000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:21:06.7340000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40022472|Zeromus|754003|28B80000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|2945721|40478540|10000|10000|||100.00|80.10|0.00|0.00|34171|81809|9000|10000|||94.65|99.18|0.00|1.71|0001A378|0|1| +38|2023-10-06T21:21:06.7340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34171|81809|9000|10000|0||94.65|99.18|0.00|1.71|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:06.7340000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:21:06.4570000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:21:06.8220000-07:00|40022472|Zeromus|0001A375|2894930||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:06.9990000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||96.06|97.31|0.00|-3.01| +21|2023-10-06T21:21:07.1320000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1350|10000|||96.26|97.85|0.00|1.45|81541|81541|1350|10000|||96.26|97.85|0.00|1.45|0001A379|0|1| +38|2023-10-06T21:21:07.1320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|12||96.26|97.85|0.00|1.45|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:07.1320000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +24|2023-10-06T21:21:07.2220000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|2735|68901|90216|10000|10000|||94.40|106.71|0.00|2.24|4002248E|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:07.2220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58864|90216|10000|10000|0||94.40|106.71|0.00|2.24|0|0|0||||||||||||||||||| +37|2023-10-06T21:21:07.2670000-07:00|40022472|Zeromus|0001A377|2880407||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:07.3110000-07:00|10FF0003|Gegehi Gehi|DoT|0|2A2C|26993|73814|6900|10000|||90.78|100.51|0.00|2.72|40022488|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|-0.70| +38|2023-10-06T21:21:07.3110000-07:00|10FF0003|Gegehi Gehi|005A5A23|16197|73814|6900|10000|0||90.78|100.51|0.00|2.72|0|0|0|||||||||||||||| +261|2023-10-06T21:21:06.8800000-07:00|Change|40022D58||||||||| +21|2023-10-06T21:21:07.3560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|8B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2880407|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||94.91|97.21|0.00|1.64|0001A37A|0|1| +31|2023-10-06T21:21:07.3560000-07:00|10FF0001||||| +38|2023-10-06T21:21:07.4000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|12||96.54|97.82|0.00|1.45|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:21:07.1060000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:21:07.4910000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|1819|73670|129844|10000|10000|||96.29|96.34|0.00|3.09|10FF0007|Kehabiqo Febiqo|FFFFFFFF|73670|129844|10000|10000|||96.29|96.34|0.00|3.09| +24|2023-10-06T21:21:07.4910000-07:00|10FF0006|Wowobora Gogobora|DoT|0|294E|34171|81809|9000|10000|||94.65|99.20|0.00|2.87|10FF0006|Wowobora Gogobora|FFFFFFFF|34171|81809|9000|10000|||94.65|99.20|0.00|2.87| +24|2023-10-06T21:21:07.4910000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2779|34171|81809|9000|10000|||94.65|99.20|0.00|2.87|10FF0006|Wowobora Gogobora|0|34171|81809|9000|10000|||94.65|99.20|0.00|2.87| +21|2023-10-06T21:21:07.4910000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2880407|40478540|10000|10000|||100.00|80.10|0.00|0.00|58864|90216|10000|10000|||96.32|105.81|0.00|1.96|0001A37B|0|1| +21|2023-10-06T21:21:07.4910000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40022472|Zeromus|750003|702B0000|4|25618000|0|0|0|0|0|0|0|0|0|0|0|0|2880407|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||96.21|97.12|0.00|1.65|0001A37C|0|1| +38|2023-10-06T21:21:07.4910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|67501|129844|10000|10000|0||96.29|96.34|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:07.4910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|33702|81809|9000|10000|0||94.65|99.20|0.00|2.87|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:21:07.4910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6100|10000|0||96.21|97.12|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:07.4910000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:21:07.4910000-07:00|10FF0001||||| +37|2023-10-06T21:21:07.5340000-07:00|40022472|Zeromus|0001A376|2856345||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:07.5350000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34171|81809|9000|10000|||94.65|99.20|0.00|2.87|34171|81809|9000|10000|||94.65|99.20|0.00|2.87|0001A37D|0|1| +38|2023-10-06T21:21:07.5350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|33702|81809|9000|10000|0||94.65|99.20|0.00|2.87|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:07.5350000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:21:07.2170000-07:00|Change|10FF0008||||||||| +24|2023-10-06T21:21:07.5790000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|16FE|129071|129071|7100|10000|||96.21|97.12|0.00|1.65|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7100|10000|||96.21|97.12|0.00|1.65| +24|2023-10-06T21:21:07.5790000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1912|129071|129071|7100|10000|||96.21|97.12|0.00|1.65|10FF0001|Sesuga Sapisuga|0|129071|129071|7100|10000|||96.21|97.12|0.00|1.65| +21|2023-10-06T21:21:07.5790000-07:00|10FF0003|Gegehi Gehi|1D63|Verraise|10FF0009|Zewo Negiwo|814000E|940000|1B|1D638000|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|0|10000|||91.36|86.99|0.00|-1.43|16197|73814|6900|10000|||90.78|100.51|0.00|2.72|0001A37E|0|1| +38|2023-10-06T21:21:07.5790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6100|10000|0||96.21|97.12|0.00|1.65|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:07.5790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|12||96.70|97.80|-0.02|1.45|0|0|0|||||||||||||||| +30|2023-10-06T21:21:07.5790000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +38|2023-10-06T21:21:07.5790000-07:00|10FF0003|Gegehi Gehi|005A5A23|16197|73814|4500|10000|0||90.78|100.51|0.00|2.72|0|0|0|||||||||||||||| +30|2023-10-06T21:21:07.5790000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:21:07.2170000-07:00|Change|10FF0003||| +21|2023-10-06T21:21:07.6240000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40022472|Zeromus|42712003|4DA70000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|2856345|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||96.06|97.31|0.00|-3.01|0001A37F|0|1| +37|2023-10-06T21:21:07.6690000-07:00|10FF0006|Wowobora Gogobora|0001A37D|33702|81809|9000|10000|0||94.65|99.20|0.00|2.87|1B00|0|0|02|07000A8D|0|C2700000|||||| +38|2023-10-06T21:21:07.6690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|33702|81809|9000|10000|0||94.65|99.20|0.00|2.87|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:07.7590000-07:00|40022472|Zeromus|0001A378|2845921||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:07.7590000-07:00|10FF0006|Wowobora Gogobora|0001A378|33702|81809|9000|10000|0||94.65|99.20|0.00|2.87|1B00|0|0|01|07000A8D|0|42700000|| +37|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|0001A379|81541|81541|1350|10000|12||96.70|97.80|0.00|1.45|1C00|0|0|01|03000768|0|41700000|| +22|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|53D80000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1350|10000|||96.70|97.80|0.00|1.45|81541|81541|1350|10000|||96.70|97.80|0.00|1.45|0001A380|0|7| +22|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|51B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6100|10000|||97.51|96.98|0.00|1.73|81541|81541|1350|10000|||96.70|97.80|0.00|1.45|0001A380|1|7| +22|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000A|Dukaro Nezikaro|200004|51DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||96.06|97.31|0.00|2.92|81541|81541|1350|10000|||96.70|97.80|0.00|1.45|0001A380|2|7| +22|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|54970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67501|129844|10000|10000|||96.09|96.06|0.00|3.10|81541|81541|1350|10000|||96.70|97.80|0.00|1.45|0001A380|3|7| +22|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|53780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33702|81809|9000|10000|||94.65|99.20|0.00|2.87|81541|81541|1350|10000|||96.70|97.80|0.00|1.45|0001A380|4|7| +22|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|50840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58864|90216|10000|10000|||97.10|104.62|-0.02|2.20|81541|81541|1350|10000|||96.70|97.80|0.00|1.45|0001A380|5|7| +22|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|507B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16197|73814|4500|10000|||90.78|100.51|0.00|2.79|81541|81541|1350|10000|||96.70|97.80|0.00|1.45|0001A380|6|7| +38|2023-10-06T21:21:07.7590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|33702|81809|9000|10000|0||94.65|99.20|0.00|2.87|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:07.7590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|12||96.70|97.80|0.00|1.45|0|0|0|||||||||||||||| +30|2023-10-06T21:21:07.7590000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:21:07.8030000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2856345|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||96.06|97.31|0.00|2.92|0001A381|0|1| +21|2023-10-06T21:21:07.8470000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58864|90216|10000|10000|||97.34|104.14|0.00|2.32|58864|90216|10000|10000|||97.34|104.14|0.00|2.32|0001A382|0|1| +37|2023-10-06T21:21:07.8920000-07:00|40022472|Zeromus|0001A37A|2843695||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:07.9820000-07:00|40022D66|Demi-Bahamut|66800|69928|10000|10000|||93.61|91.39|0.00|2.63| +21|2023-10-06T21:21:08.1160000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|14C50000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|16197|73814|4500|10000|||90.79|100.53|0.00|2.65|73956|77430|10000|10000|||95.07|99.03|0.00|0.77|0001A383|0|1| +37|2023-10-06T21:21:08.2510000-07:00|40022472|Zeromus|0001A37B|2841417||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:08.2510000-07:00|40022472|Zeromus|0001A37F|2821538||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:08.2510000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|716003|23D40000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|2843695|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6100|10000|||97.85|96.92|0.00|1.73|0001A384|0|1| +21|2023-10-06T21:21:08.2950000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|4DCC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|67501|129844|10000|10000|||96.09|96.06|0.00|3.10|2843695|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A385|0|1| +38|2023-10-06T21:21:08.3400000-07:00|40022D72||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:21:08.3400000-07:00|40022472|Zeromus|0001A381|2819362||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:08.3400000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2821538|40478540|10000|10000|||100.00|80.10|0.00|0.00|67501|129844|10000|10000|||96.09|96.06|0.00|3.10|0001A386|0|1| +38|2023-10-06T21:21:08.3400000-07:00|40022D72||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:21:08.3840000-07:00|40022472|Zeromus|0001A37C|2790647||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:08.3840000-07:00|10FF0009|Zewo Negiwo|0001A37E|0|81177|0|10000|0||91.36|86.99|0.00|-1.43|1800|0|0|01|02000094|08|42700000|| +26|2023-10-06T21:21:08.3840000-07:00|94|Raise|60.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|08|81177|73814| +21|2023-10-06T21:21:08.3840000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|570D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|2821538|40478540|10000|10000|||100.00|80.10|0.00|0.00|33702|81809|9000|10000|||94.65|99.20|0.00|2.87|0001A387|0|1| +261|2023-10-06T21:21:08.0250000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:21:08.4730000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|754003|321D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2790647|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||96.06|97.31|0.00|2.92|0001A388|0|1| +39|2023-10-06T21:21:08.5170000-07:00|10FF0003|Gegehi Gehi|16935|73814|4700|10000|||92.61|101.30|0.00|2.20| +261|2023-10-06T21:21:08.1430000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:21:08.5620000-07:00|40022D66|Demi-Bahamut|1D04|Wyrmwave|40022472|Zeromus|750003|13DB0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|2790647|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||93.61|91.39|0.00|2.63|0001A389|0|1| +03|2023-10-06T21:21:08.2580000-07:00|40022D72|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||98.84|105.05|0.00|2.66| +261|2023-10-06T21:21:08.2580000-07:00|Add|40022D72||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:08.2580000-07:00|Change|40022D72||| +261|2023-10-06T21:21:08.2580000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:21:08.6510000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|716003|79E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2790647|40478540|10000|10000|||100.00|80.10|0.00|0.00|67501|129844|10000|10000|||96.09|96.06|0.00|3.10|0001A38A|0|1| +21|2023-10-06T21:21:08.6510000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2790647|40478540|10000|10000|||100.00|80.10|0.00|0.00|33702|81809|8700|10000|||94.65|99.20|0.00|2.87|0001A38B|0|1| +38|2023-10-06T21:21:08.6510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|67501|129844|10000|10000|0||96.09|96.06|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:08.6510000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +39|2023-10-06T21:21:08.6950000-07:00|10FF0008|Kokosaze Lulusaze|59766|90216|10000|10000|||98.07|102.68|0.00|2.66| +20|2023-10-06T21:21:08.6950000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|96.70|97.80|0.00|1.45| +261|2023-10-06T21:21:08.3510000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:21:08.7840000-07:00|10FF0007|Kehabiqo Febiqo|0001A380|89156||||||96.09|96.06|0.00|2.90| +39|2023-10-06T21:21:08.7840000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||95.42|99.04|0.00|-0.70| +24|2023-10-06T21:21:08.7840000-07:00|40022472|Zeromus|DoT|0|176A|2790647|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|2790647|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:08.7840000-07:00|40022472|Zeromus|005A5A00|2784653|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:21:08.8730000-07:00|40022472|Zeromus|0001A386|2781738||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:08.8730000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6300|10000|||98.30|97.45|0.00|1.75| +39|2023-10-06T21:21:08.8730000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1550|10000|||96.70|97.80|0.00|1.45| +36|2023-10-06T21:21:08.8730000-07:00|701C|3| +37|2023-10-06T21:21:08.9170000-07:00|10FF0003|Gegehi Gehi|0001A383|22252||||||95.25|101.91|0.00|2.20| +37|2023-10-06T21:21:08.9170000-07:00|10FF0006|Wowobora Gogobora|0001A380|55070||||||94.65|99.20|0.00|2.87| +21|2023-10-06T21:21:08.9170000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5DFB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2781738|40478540|10000|10000|||100.00|80.10|0.00|0.00|59766|90216|10000|10000|||98.07|102.68|0.00|2.74|0001A38C|0|1| +39|2023-10-06T21:21:08.9620000-07:00|10FF0007|Kehabiqo Febiqo|90454|129844|10000|10000|||96.09|96.06|-0.02|2.91| +39|2023-10-06T21:21:09.0060000-07:00|10FF0006|Wowobora Gogobora|55888|81809|8900|10000|||94.65|99.20|0.00|2.87| +261|2023-10-06T21:21:08.6340000-07:00|Change|10FF0006||| +37|2023-10-06T21:21:09.0510000-07:00|40022472|Zeromus|0001A387|2759453||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:09.0510000-07:00|10FF0008|Kokosaze Lulusaze|0001A380|80378||||||98.07|102.68|0.00|3.06| +37|2023-10-06T21:21:09.0960000-07:00|10FF0007|Kehabiqo Febiqo|0001A385|70538||||||96.13|96.06|-0.02|2.95| +37|2023-10-06T21:21:09.0960000-07:00|40022472|Zeromus|0001A388|2746624||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:08.7530000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:21:09.1850000-07:00|40022472|Zeromus|0001A38B|2746471||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:09.1850000-07:00|10FF0003|Gegehi Gehi|0001A380|42855||||||96.45|101.36|-0.02|2.52| +261|2023-10-06T21:21:08.8740000-07:00|Change|10FF0004||||| +37|2023-10-06T21:21:09.2730000-07:00|40022472|Zeromus|0001A38A|2715267||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:09.2730000-07:00|40022472|Zeromus|0001A384|2706095|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|F8|0|41700000|| +26|2023-10-06T21:21:09.2730000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +261|2023-10-06T21:21:08.9930000-07:00|Change|40022D72||| +34|2023-10-06T21:21:09.3630000-07:00|40022D72|Automaton Queen|40022D72|Automaton Queen|01| +261|2023-10-06T21:21:08.9930000-07:00|Change|40022D72||| +261|2023-10-06T21:21:09.2220000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:21:09.5860000-07:00|40022472|Zeromus|0001A389|2701012||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:09.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||100.21|98.25|0.00|2.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:09.5860000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:21:09.2220000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T21:21:09.6300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|A760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2706095|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||100.21|98.25|0.00|2.07|0001A38D|0|1| +31|2023-10-06T21:21:09.6300000-07:00|10FF0001||||| +261|2023-10-06T21:21:09.3230000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:21:09.8090000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0006|Wowobora Gogobora|6400F60E|7420000|F60E|A770000|150E|A780000|909B000F|7418000|0|0|0|0|0|0|0|0|55888|81809|8900|10000|||94.66|99.20|-0.02|2.76|70538|129844|10000|10000|||96.73|96.09|0.00|3.06|0001A38E|0|1| +261|2023-10-06T21:21:09.5180000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:21:09.9430000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.43|98.31|0.00|1.62|82773|82773|10000|10000|||97.43|98.31|0.00|1.62|0001A38F|0|1| +38|2023-10-06T21:21:09.9430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||97.43|98.31|0.00|1.62|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:09.9430000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:21:09.9880000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||97.51|98.39|0.00|-1.03| +21|2023-10-06T21:21:09.9880000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|34300000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|2701012|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||101.04|97.78|0.00|-3.08|0001A390|0|1| +20|2023-10-06T21:21:09.9880000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|97.31|100.72|0.00|3.04| +21|2023-10-06T21:21:09.9880000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|ACD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2701012|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.51|98.39|0.00|-1.03|0001A391|0|1| +38|2023-10-06T21:21:09.9880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||101.04|97.78|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:09.9880000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:21:09.9880000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:21:10.0760000-07:00|40022472|Zeromus|0001A38C|2676953||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:21:10.1210000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|19380000|590E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81541|81541|1550|10000|||96.70|97.80|0.00|1.45|81541|81541|1550|10000|||96.70|97.80|0.00|1.45|0001A392|0|7| +22|2023-10-06T21:21:10.1210000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|195A0000|90000014|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.63|98.50|0.00|-0.09|81541|81541|1550|10000|||96.70|97.80|0.00|1.45|0001A392|1|7| +22|2023-10-06T21:21:10.1210000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|2A2B0000|780E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|70538|129844|10000|10000|||96.73|96.09|0.00|-1.47|81541|81541|1550|10000|||96.70|97.80|0.00|1.45|0001A392|2|7| +22|2023-10-06T21:21:10.1210000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|19630000|9E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55888|81809|8900|10000|||94.74|99.29|-0.01|0.87|81541|81541|1550|10000|||96.70|97.80|0.00|1.45|0001A392|3|7| +22|2023-10-06T21:21:10.1210000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|18D80000|C00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|42855|73814|4700|10000|||97.31|100.72|0.00|3.03|81541|81541|1550|10000|||96.70|97.80|0.00|1.45|0001A392|4|7| +22|2023-10-06T21:21:10.1210000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|29C30000|D10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80378|90216|10000|10000|||98.83|100.24|0.00|3.09|81541|81541|1550|10000|||96.70|97.80|0.00|1.45|0001A392|5|7| +22|2023-10-06T21:21:10.1210000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|29310000|E80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|6300|10000|||101.04|97.78|0.00|-3.08|81541|81541|1550|10000|||96.70|97.80|0.00|1.45|0001A392|6|7| +38|2023-10-06T21:21:10.1210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70538|129844|10000|10000|13||96.73|96.09|0.00|-1.47|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:10.1210000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:10.1210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80378|90216|10000|10000|18||98.83|100.24|0.00|3.09|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:10.1210000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:21:10.1210000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|55888|81809|8900|10000|12||94.74|99.29|-0.01|0.87|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:10.1210000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:21:10.1210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|13||101.04|97.78|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:10.1210000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:21:10.1210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|550|10000|12||96.70|97.80|0.00|1.45|0|0|0|||||||||||||||| +26|2023-10-06T21:21:10.1210000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:21:10.1210000-07:00|10FF0003|Gegehi Gehi|005A5A23|42855|73814|4700|10000|13||97.31|100.72|0.00|3.03|0|0|0|||||||||||||||| +26|2023-10-06T21:21:10.1210000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +37|2023-10-06T21:21:10.1650000-07:00|40022472|Zeromus|0001A38D|2674275||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:10.1650000-07:00|10FF0001|Sesuga Sapisuga|0001A38D|129071|129071|6300|10000|13||101.04|97.78|0.00|-3.08|1300|0|0|02|0200076E|03|C1F00000|||||| +21|2023-10-06T21:21:10.1650000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|9390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2701012|40478540|10000|10000|||100.00|80.10|0.00|0.00|80378|90216|10000|10000|||98.83|100.24|0.00|3.09|0001A393|0|1| +261|2023-10-06T21:21:09.9670000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T21:21:10.2090000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|80378|90216|10000|10000|||98.83|100.24|0.00|3.09|4002248E|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:10.2090000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80378|90216|10000|10000|||98.83|100.24|0.00|3.09|80378|90216|10000|10000|||98.83|100.24|0.00|3.09|0001A394|0|1| +38|2023-10-06T21:21:10.2090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80378|90216|10000|10000|8||98.83|100.24|0.00|3.09|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:10.2090000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +24|2023-10-06T21:21:10.2980000-07:00|10FF0003|Gegehi Gehi|DoT|0|3F9|42855|73814|4700|10000|||97.31|100.72|0.00|3.02|40022488|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|-0.70| +38|2023-10-06T21:21:10.2980000-07:00|10FF0003|Gegehi Gehi|005A5A23|41838|73814|4700|10000|0||97.31|100.72|0.00|3.02|0|0|0|||||||||||||||| +30|2023-10-06T21:21:10.2980000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +21|2023-10-06T21:21:10.3870000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.66|98.53|0.00|-0.07|82773|82773|10000|10000|||97.66|98.53|0.00|-0.07|0001A395|0|1| +38|2023-10-06T21:21:10.3870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||97.66|98.53|0.00|-0.07|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:10.3870000-07:00|1F0|Mudra|5.56|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:21:10.4770000-07:00|10FF0006|Wowobora Gogobora|0001A38E|55888|81809|8900|10000|24||95.98|100.18|-0.02|0.98|1B00|0|0|03|0A000742|64|41000000|||||||||| +26|2023-10-06T21:21:10.4770000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|64|81809|129844| +26|2023-10-06T21:21:10.4770000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +26|2023-10-06T21:21:10.4770000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +37|2023-10-06T21:21:10.4770000-07:00|10FF0007|Kehabiqo Febiqo|0001A38E|70538|129844|10000|10000|13||96.73|96.09|0.00|-1.07|1500|0|0|01|04000741|0190|41000000|| +26|2023-10-06T21:21:10.4770000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +24|2023-10-06T21:21:10.4770000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|70538|129844|10000|10000|||96.73|96.09|0.00|-1.07|10FF0007|Kehabiqo Febiqo|FFFFFFFF|70538|129844|10000|10000|||96.73|96.09|0.00|-1.07| +24|2023-10-06T21:21:10.4770000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|55888|81809|8900|10000|||95.98|100.18|-0.02|0.98|10FF0007|Kehabiqo Febiqo|FFFFFFFF|70538|129844|10000|10000|||96.73|96.09|0.00|-1.07| +24|2023-10-06T21:21:10.4770000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2547|55888|81809|8900|10000|||95.98|100.18|-0.02|0.98|10FF0007|Kehabiqo Febiqo|0|70538|129844|10000|10000|||96.73|96.09|0.00|-1.07| +38|2023-10-06T21:21:10.4770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70538|129844|10000|10000|8||96.73|96.09|0.00|-1.07|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:10.4770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65431|81809|8900|10000|11||95.98|100.18|-0.02|0.98|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:10.4770000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +37|2023-10-06T21:21:10.5200000-07:00|40022472|Zeromus|0001A391|2671510||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:10.5660000-07:00|40022472|Zeromus|0001A390|2658150||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:10.5660000-07:00|10FF0001|Sesuga Sapisuga|0001A390|129071|129071|6300|10000|13||101.04|97.78|0.00|-3.08|1300|0|0|02|0200076E|03|41F00000|||||| +24|2023-10-06T21:21:10.5660000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|129071|129071|6300|10000|||101.04|97.78|0.00|-3.08|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6300|10000|||101.04|97.78|0.00|-3.08| +24|2023-10-06T21:21:10.5660000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1A99|129071|129071|6300|10000|||101.04|97.78|0.00|-3.08|10FF0001|Sesuga Sapisuga|0|129071|129071|6300|10000|||101.04|97.78|0.00|-3.08| +38|2023-10-06T21:21:10.5660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|8||101.04|97.78|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:10.3040000-07:00|Change|10FF0003||||||||||||||||||||| +38|2023-10-06T21:21:10.6100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65431|81809|8900|10000|11||96.36|100.25|0.00|1.44|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:10.6100000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +21|2023-10-06T21:21:10.7870000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2658150|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|550|10000|||96.70|97.80|0.00|1.39|0001A396|0|1| +21|2023-10-06T21:21:10.8770000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40022472|Zeromus|754003|5BFA0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|2658150|40478540|10000|10000|||100.00|80.10|0.00|0.00|65431|81809|8900|10000|||96.69|100.32|-0.01|1.85|0001A397|0|1| +21|2023-10-06T21:21:10.8770000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.76|98.62|-0.02|0.00|82773|82773|10000|10000|||97.76|98.62|-0.02|0.00|0001A398|0|1| +38|2023-10-06T21:21:10.8770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||97.76|98.62|-0.02|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:10.8770000-07:00|1F0|Mudra|5.07|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +261|2023-10-06T21:21:10.4990000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:10.4990000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:21:10.9210000-07:00|40022472|Zeromus|0001A393|2655789||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:10.9650000-07:00|40022D66|Demi-Bahamut|66800|69928|10000|10000|||93.61|91.39|0.00|2.63| +261|2023-10-06T21:21:10.5930000-07:00|Change|40022D66||||| +38|2023-10-06T21:21:11.0090000-07:00|40022D74||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:21:11.0100000-07:00|40022D74||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:21:11.0990000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40022472|Zeromus|716003|A99C0000|200204|3F928000|0|0|0|0|0|0|0|0|0|0|0|0|2655789|40478540|10000|10000|||100.00|80.10|0.00|0.00|70538|129844|10000|10000|||97.22|96.15|0.00|3.06|0001A399|0|1| +38|2023-10-06T21:21:11.0990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70538|129844|10000|10000|8||97.22|96.15|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:11.0990000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:21:11.2340000-07:00|10FF0004|Buhojaqe Zijaqe|0001A392|81541|81541|550|10000|12||96.95|97.94|0.00|0.96|1C00|0|0|01|04000129|0|41E770A0|| +37|2023-10-06T21:21:11.3230000-07:00|40022472|Zeromus|0001A396|2655640||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:11.3230000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14F30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|70538|129844|10000|10000|||97.22|96.15|0.00|2.97|73956|77430|10000|10000|||95.45|99.05|0.00|2.91|0001A39A|0|1| +21|2023-10-06T21:21:11.3230000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|26140000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|70538|129844|10000|10000|||97.22|96.15|0.00|2.97|2655789|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A39B|0|1| +261|2023-10-06T21:21:11.0210000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:21:11.0210000-07:00|Change|40022490||||||||| +261|2023-10-06T21:21:11.0210000-07:00|Change|4002248D||||||||| +03|2023-10-06T21:21:11.0210000-07:00|40022D74|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||97.03|98.61|0.00|-0.16| +261|2023-10-06T21:21:11.0210000-07:00|Add|40022D74||||||||||||||||||||||||||||||||||||| +20|2023-10-06T21:21:11.4130000-07:00|4002248D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|118.15|95.61|0.00|0.00| +20|2023-10-06T21:21:11.4130000-07:00|4002248E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.71|83.42|0.00|0.00| +20|2023-10-06T21:21:11.4130000-07:00|4002248F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.80|81.95|0.00|0.00| +20|2023-10-06T21:21:11.4130000-07:00|40022490|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.87|99.52|0.00|0.00| +261|2023-10-06T21:21:11.0210000-07:00|Change|4002248E||||||||||||||| +261|2023-10-06T21:21:11.0210000-07:00|Change|40022D74||| +21|2023-10-06T21:21:11.4130000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|2B720000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|2655640|40478540|10000|10000|||100.00|80.10|0.00|0.00|41838|73814|4700|10000|||97.31|100.72|0.00|3.01|0001A39C|0|1| +38|2023-10-06T21:21:11.4130000-07:00|10FF0003|Gegehi Gehi|005A5A23|41838|73814|4500|10000|0||97.31|100.72|0.00|3.01|0|0|0|||||||||||||||| +26|2023-10-06T21:21:11.4130000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:21:11.4130000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|656003|6B640000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|2655640|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.76|98.62|-0.02|0.00|0001A39D|0|1| +38|2023-10-06T21:21:11.4130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||97.76|98.62|-0.02|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:11.4130000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +26|2023-10-06T21:21:11.4130000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +26|2023-10-06T21:21:11.4570000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:21:11.4570000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|234F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2655640|40478540|10000|10000|||100.00|80.10|0.00|0.00|80378|90216|10000|10000|||99.06|100.24|0.00|2.49|0001A39E|0|1| +37|2023-10-06T21:21:11.5010000-07:00|40022472|Zeromus|0001A397|2632094||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:11.5010000-07:00|10FF0007|Kehabiqo Febiqo|0001A392|81333|129844|10000|10000|8||97.22|96.15|0.00|2.97|1502|0|0|01|01000129|0|41E54DCE|| +39|2023-10-06T21:21:11.5460000-07:00|10FF0003|Gegehi Gehi|42576|73814|4700|10000|||97.31|100.72|0.00|3.01| +37|2023-10-06T21:21:11.6350000-07:00|10FF0006|Wowobora Gogobora|0001A392|71930|81809|8600|10000|11||96.73|100.33|0.00|2.98|1B03|0|0|01|09000129|0|41E43B5F|| +261|2023-10-06T21:21:11.2390000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T21:21:11.7250000-07:00|10FF0008|Kokosaze Lulusaze|81280|90216|10000|10000|||99.18|100.24|0.00|3.10| +21|2023-10-06T21:21:11.7250000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|E600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2632094|40478540|10000|10000|||100.00|80.10|0.00|0.00|81333|129844|10000|10000|||97.22|96.15|0.00|2.97|0001A39F|0|1| +37|2023-10-06T21:21:11.7700000-07:00|10FF0003|Gegehi Gehi|0001A392|48936||||||97.31|100.72|0.00|3.01| +39|2023-10-06T21:21:11.7700000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||95.45|99.05|0.00|2.73| +24|2023-10-06T21:21:11.7700000-07:00|40022472|Zeromus|DoT|0|1E0A|2632094|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|2632094|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:11.7700000-07:00|40022472|Zeromus|005A5A00|2624404|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T21:21:11.8140000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2624404|40478540|10000|10000|||100.00|80.10|0.00|0.00|71930|81809|8600|10000|||96.73|100.33|0.00|2.98|0001A3A0|0|1| +39|2023-10-06T21:21:11.8580000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||100.36|97.29|0.00|3.06| +36|2023-10-06T21:21:11.8580000-07:00|70F8|3| +261|2023-10-06T21:21:11.5120000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:21:11.5120000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:21:11.5120000-07:00|Change|40022490||||||||||| +261|2023-10-06T21:21:11.5120000-07:00|Change|4002248D||||||||||| +37|2023-10-06T21:21:11.9030000-07:00|10FF0008|Kokosaze Lulusaze|0001A392|90216|90216|10000|10000|8||99.20|100.24|-0.02|3.10|1F05|0|0|01|02000129|0|41E2188D|| +39|2023-10-06T21:21:11.9030000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|750|10000|||98.58|98.64|-0.01|1.30| +21|2023-10-06T21:21:11.9030000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|DB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2624404|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||100.36|97.29|0.00|3.06|0001A3A1|0|1| +31|2023-10-06T21:21:11.9030000-07:00|10FF0001||||| +261|2023-10-06T21:21:11.5120000-07:00|Change|10FF0004||||||||| +38|2023-10-06T21:21:11.9480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|750|10000|12||98.62|98.65|0.00|1.31|0|0|0|||||||||||||||| +26|2023-10-06T21:21:11.9480000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:21:11.9480000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|750|10000|||98.62|98.65|0.00|1.31|81541|81541|750|10000|||98.62|98.65|0.00|1.31|0001A3A2|0|1| +39|2023-10-06T21:21:11.9930000-07:00|10FF0007|Kehabiqo Febiqo|82631|129844|10000|10000|||97.22|96.15|0.00|2.97| +39|2023-10-06T21:21:11.9930000-07:00|10FF0006|Wowobora Gogobora|72748|81809|8800|10000|||96.73|100.33|0.00|2.98| +21|2023-10-06T21:21:11.9930000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|14650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2624404|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.20|100.24|-0.02|3.10|0001A3A3|0|1| +261|2023-10-06T21:21:11.6130000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:21:11.7100000-07:00|Change|40022D74||| +37|2023-10-06T21:21:12.0370000-07:00|10FF0001|Sesuga Sapisuga|0001A392|129071|129071|6500|10000|8||100.40|97.28|0.00|3.04|1306|0|0|01|06000129|0|41E1061E|| +34|2023-10-06T21:21:12.0370000-07:00|40022D74|Carbuncle|40022D74|Carbuncle|01| +37|2023-10-06T21:21:12.0810000-07:00|40022472|Zeromus|0001A39E|2615365||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:12.1250000-07:00|10FF0007|Kehabiqo Febiqo|0001A39A|87994||||||97.22|96.15|0.00|2.97| +37|2023-10-06T21:21:12.1250000-07:00|10FF0007|Kehabiqo Febiqo|0001A39B|78246|129844|10000|10000|0||97.22|96.15|0.00|2.97|1500|0|0|01|01000000|0|0|| +38|2023-10-06T21:21:12.1250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|78246|129844|10000|10000|0||97.22|96.15|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:12.1250000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T21:21:12.1700000-07:00|40022472|Zeromus|0001A39C|2604243||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:12.1700000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|10370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2624404|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||98.46|99.12|0.00|3.11|0001A3A4|0|1| +24|2023-10-06T21:21:12.2580000-07:00|10FF0006|Wowobora Gogobora|HoT|742|3F92|72748|81809|8800|10000|||96.73|100.33|0.00|2.98|10FF0007|Kehabiqo Febiqo|0|78246|129844|10000|10000|||97.22|96.15|0.00|2.97| +37|2023-10-06T21:21:12.2580000-07:00|40022472|Zeromus|0001A399|2560823||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:12.2580000-07:00|10FF0007|Kehabiqo Febiqo|0001A399|94520||||||97.22|96.15|0.00|2.97| +37|2023-10-06T21:21:12.2580000-07:00|40022472|Zeromus|0001A39F|2557143||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:12.2590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|11||96.73|100.33|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:12.3480000-07:00|40022472|Zeromus|0001A3A0|2556994||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:11.9320000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:21:11.9320000-07:00|Change|40022489||||||||| +261|2023-10-06T21:21:11.9320000-07:00|Change|4002248C||||||||| +261|2023-10-06T21:21:11.9320000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:21:11.9320000-07:00|Change|40022488||||||||| +37|2023-10-06T21:21:12.3920000-07:00|40022472|Zeromus|0001A39D|2529502||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:12.3920000-07:00|10FF000A|Dukaro Nezikaro|0001A39D|82773|82773|10000|10000|19||98.75|99.04|0.00|3.13|1E00|0|0|01|030001FB|0|41A00000|| +38|2023-10-06T21:21:12.3920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||98.75|99.04|0.00|3.13|0|0|0||||||||||||||||||| +37|2023-10-06T21:21:12.4370000-07:00|40022472|Zeromus|0001A3A1|2525996||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:12.4370000-07:00|40022488|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|-0.70| +20|2023-10-06T21:21:12.4370000-07:00|40022489|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.04|100.49|0.00|0.00| +20|2023-10-06T21:21:12.4370000-07:00|4002248A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|1.40| +20|2023-10-06T21:21:12.4370000-07:00|4002248B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|1.40| +20|2023-10-06T21:21:12.4370000-07:00|4002248C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|0.70| +37|2023-10-06T21:21:12.4810000-07:00|10FF0004|Buhojaqe Zijaqe|0001A3A2|81541|81541|2750|10000|12||98.63|98.65|0.00|1.32|1C00|0|0|0| +21|2023-10-06T21:21:12.4810000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|38FF0000|200004|3F248000|0|0|0|0|0|0|0|0|0|0|0|0|2525996|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||101.60|97.13|0.00|3.05|0001A3A5|0|1| +21|2023-10-06T21:21:12.4810000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40022472|Zeromus|554003|445D0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|2525996|40478540|10000|10000|||100.00|80.10|0.00|0.00|48936|73814|4700|10000|||97.33|100.66|0.00|2.95|0001A3A6|0|1| +38|2023-10-06T21:21:12.4810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5500|10000|8||101.60|97.13|0.00|3.05|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:12.4810000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:21:12.4810000-07:00|10FF0003|Gegehi Gehi|005A5A23|48936|73814|4400|10000|0||97.33|100.66|0.00|2.95|0|0|0|||||||||||||||| +30|2023-10-06T21:21:12.4810000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:21:12.4810000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:21:12.1520000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:21:12.2480000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:21:12.6600000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|94520|129844|10000|10000|||98.18|95.30|0.00|3.01|94520|129844|10000|10000|||98.18|95.30|0.00|3.01|0001A3A7|0|1| +38|2023-10-06T21:21:12.6600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94520|129844|10000|10000|0||98.18|95.30|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:12.6600000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:21:12.7040000-07:00|40022472|Zeromus|0001A3A4|2521845||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:12.7930000-07:00|40022472|Zeromus|0001A3A3|2516624||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:12.8380000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AAD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2521845|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.43|100.55|0.00|0.91|0001A3A8|0|1| +26|2023-10-06T21:21:12.8380000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +22|2023-10-06T21:21:12.8380000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2750|10000|||100.05|99.74|0.00|1.03|81541|81541|2750|10000|||100.05|99.74|0.00|1.03|0001A3A9|0|1| +261|2023-10-06T21:21:12.4360000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:21:12.4360000-07:00|Change|4002248C||||||||||| +261|2023-10-06T21:21:12.4360000-07:00|Change|4002248B||||||||||| +261|2023-10-06T21:21:12.4360000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:21:12.4360000-07:00|Change|4002248A||||||||||| +261|2023-10-06T21:21:12.4360000-07:00|Change|40022488||||||||||| +26|2023-10-06T21:21:12.9270000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:21:12.9270000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|2B050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2516624|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.06|101.13|0.00|0.89|0001A3AA|0|1| +39|2023-10-06T21:21:13.0150000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||101.07|98.05|0.00|3.14| +21|2023-10-06T21:21:13.0150000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1D2E0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|2516624|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||101.07|98.05|0.00|3.14|0001A3AB|0|1| +261|2023-10-06T21:21:12.6560000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:21:13.1940000-07:00|10FF0007|Kehabiqo Febiqo|0001A3A7|94520|129844|10000|10000|0||98.64|93.84|0.00|3.08|1500|0|0|01|01000769|0|41F00000|| +24|2023-10-06T21:21:13.1940000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|7AC|90216|90216|10000|10000|||100.92|101.95|0.00|-3.12|4002248E|Zeromus|FFFFFFFF|44|44|0|10000|||99.71|83.42|0.00|0.00| +38|2023-10-06T21:21:13.1940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94520|129844|10000|10000|0||98.64|93.84|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:13.1940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88252|90216|10000|10000|0||100.92|101.95|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:13.1940000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +37|2023-10-06T21:21:13.2390000-07:00|40022472|Zeromus|0001A3A5|2502033||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:13.2390000-07:00|40022472|Zeromus|0001A3A6|2484532||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:13.2390000-07:00|10FF0003|Gegehi Gehi|0001A3A6|48936|73814|4400|10000|0||101.07|100.76|0.00|2.19|2300|0|0|01|030004D2|0|41F00000|| +38|2023-10-06T21:21:13.2390000-07:00|10FF0003|Gegehi Gehi|005A5A23|48936|73814|4400|10000|0||101.07|100.76|0.00|2.19|0|0|0|||||||||||||||| +24|2023-10-06T21:21:13.3270000-07:00|10FF0003|Gegehi Gehi|DoT|0|2C2B|48936|73814|4400|10000|||101.67|100.81|-0.02|2.14|40022488|Zeromus|FFFFFFFF|44|44|0|10000|||108.71|96.92|0.00|0.00| +35|2023-10-06T21:21:13.3270000-07:00|40022471||40022472|Zeromus|0000|0000|0109|||| +38|2023-10-06T21:21:13.3270000-07:00|10FF0003|Gegehi Gehi|005A5A23|37629|73814|4400|10000|0||101.67|100.81|-0.02|2.14|0|0|0|||||||||||||||| +257|2023-10-06T21:21:13.3270000-07:00|80034E7C|00020001|03|00|0000| +261|2023-10-06T21:21:13.0010000-07:00|Change|40022471||||||||| +261|2023-10-06T21:21:13.0010000-07:00|Change|40022471||||||||| +261|2023-10-06T21:21:13.0010000-07:00|Change|40022487||||||||| +00|2023-10-06T21:21:13.0000000-07:00|0044|Zeromus|To the last you would deny my heart's desire...| +21|2023-10-06T21:21:13.3720000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40022472|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|2484532|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||101.40|101.09|0.00|1.23|0001A3AC|0|1| +261|2023-10-06T21:21:13.0010000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:21:13.0010000-07:00|Change|40022D74||||||||| +38|2023-10-06T21:21:13.4160000-07:00|40022D75||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:21:13.4160000-07:00|40022472|Zeromus|0001A3AB|2477062||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:13.4160000-07:00|40022472|Zeromus|8CFA|Flow of the Abyss|40022472|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:13.4160000-07:00|40022487|Zeromus|8B82|Dimensional Surge|40022487|Zeromus|8.700|80.10|100.00|0.00|1.57| +38|2023-10-06T21:21:13.4160000-07:00|40022D75||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:21:13.1160000-07:00|Change|40022472||||||||||||| +21|2023-10-06T21:21:13.4610000-07:00|40022D72|Automaton Queen|4336|Roller Dash|40022472|Zeromus|730003|41020000|1B|43368000|0|0|0|0|0|0|0|0|0|0|0|0|2484532|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||98.84|105.05|0.00|2.66|0001A3AD|0|1| +21|2023-10-06T21:21:13.4610000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|146D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2484532|40478540|10000|10000|||100.00|80.10|0.00|0.00|88252|90216|10000|10000|||100.56|101.98|-0.02|2.95|0001A3AE|0|1| +261|2023-10-06T21:21:13.1160000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:21:13.5060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D03|94520|129844|10000|10000|||98.46|93.53|0.00|-3.04|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.82|101.99|0.00|0.99| +24|2023-10-06T21:21:13.5060000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D05|129071|129071|5500|10000|||102.05|96.56|0.00|-2.72|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.82|101.99|0.00|0.99| +24|2023-10-06T21:21:13.5060000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D0A|82773|82773|10000|10000|||101.64|97.90|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.82|101.99|0.00|0.99| +24|2023-10-06T21:21:13.5060000-07:00|10FF0003|Gegehi Gehi|HoT|798|CFB|37629|73814|4400|10000|||102.29|100.99|0.00|2.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.82|101.99|0.00|0.99| +24|2023-10-06T21:21:13.5060000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15BE|81809|81809|8800|10000|||101.55|101.86|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.82|101.99|0.00|0.99| +24|2023-10-06T21:21:13.5060000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D92|81541|81541|2750|10000|||101.82|101.99|0.00|0.99|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.82|101.99|0.00|0.99| +24|2023-10-06T21:21:13.5060000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|14F3|88252|90216|10000|10000|||100.56|101.98|-0.02|2.95|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.82|101.99|0.00|0.99| +37|2023-10-06T21:21:13.5060000-07:00|10FF0004|Buhojaqe Zijaqe|0001A3A9|81541|81541|2750|10000|12||101.82|101.99|0.00|0.99|1C00|0|0|02|05000798|0|41700000|||||| +26|2023-10-06T21:21:13.5060000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:21:13.5060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +24|2023-10-06T21:21:13.5060000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|17ED|94520|129844|10000|10000|||98.46|93.53|0.00|-3.04|10FF0007|Kehabiqo Febiqo|FFFFFFFF|94520|129844|10000|10000|||98.46|93.53|0.00|-3.04| +24|2023-10-06T21:21:13.5060000-07:00|10FF0006|Wowobora Gogobora|DoT|0|451|81809|81809|8800|10000|||101.55|101.86|0.00|-3.07|10FF0007|Kehabiqo Febiqo|FFFFFFFF|94520|129844|10000|10000|||98.46|93.53|0.00|-3.04| +24|2023-10-06T21:21:13.5060000-07:00|10FF0006|Wowobora Gogobora|HoT|0|262E|81809|81809|8800|10000|||101.55|101.86|0.00|-3.07|10FF0007|Kehabiqo Febiqo|0|94520|129844|10000|10000|||98.46|93.53|0.00|-3.04| +38|2023-10-06T21:21:13.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91726|129844|10000|10000|0||98.46|93.53|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:13.5060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:13.5060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.56|101.98|-0.02|2.95|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:13.5060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:21:13.5060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|0||101.55|101.86|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:13.5060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +30|2023-10-06T21:21:13.5060000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:21:13.5060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5500|10000|8||102.05|96.56|0.00|-2.72|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:13.5060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:21:13.5060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2750|10000|12||101.82|101.99|0.00|0.99|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:21:13.5060000-07:00|10FF0003|Gegehi Gehi|005A5A23|40952|73814|4400|10000|0||102.29|100.99|0.00|2.11|0|0|0|||||||||||||||| +26|2023-10-06T21:21:13.5060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:21:13.5060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||101.64|97.90|0.00|-3.07|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:13.5060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:21:13.1160000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:21:13.5500000-07:00|40022472|Zeromus|0001A3AA|2466049||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:13.5500000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|A2770000|200204|3ECE8000|0|0|0|0|0|0|0|0|0|0|0|0|2477062|40478540|10000|10000|||100.00|80.10|0.00|0.00|91726|129844|10000|10000|||98.42|93.47|0.00|-2.98|0001A3AF|0|1| +38|2023-10-06T21:21:13.5500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91726|129844|10000|10000|0||98.42|93.47|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:13.5500000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:21:13.5940000-07:00|40022472|Zeromus|0001A3A8|2463316||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:13.5940000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|129071|129071|5500|10000|||102.44|96.17|0.00|-2.94|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|5500|10000|||102.44|96.17|0.00|-2.94| +38|2023-10-06T21:21:13.5940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5500|10000|3||102.44|96.17|0.00|-2.94|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:13.5940000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:21:13.3100000-07:00|Change|10FF000A||||||||| +03|2023-10-06T21:21:13.4120000-07:00|40022D75|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||103.47|104.06|0.00|-3.07| +261|2023-10-06T21:21:13.4120000-07:00|Add|40022D76||||||||||||||||||||||||| +261|2023-10-06T21:21:13.4120000-07:00|Add|40022D75||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:13.5050000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:21:13.5050000-07:00|Change|40022D75||||| +261|2023-10-06T21:21:13.6000000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:13.6940000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:21:14.0830000-07:00|40022472|Zeromus|0001A3AE|2458087||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:14.1740000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|80F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2458087|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5500|10000|||104.69|93.37|0.00|2.78|0001A3B0|0|1| +38|2023-10-06T21:21:14.1740000-07:00|10FF0009|Zewo Negiwo|005A5A18|16235|81177|2000|10000|0||91.91|101.32|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:21:14.1740000-07:00|94|Raise|0.00|10FF0003|Gegehi Gehi|10FF0009|Zewo Negiwo|08|81177|73814| +26|2023-10-06T21:21:14.1740000-07:00|2B|Weakness|100.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +26|2023-10-06T21:21:14.1740000-07:00|1A2|Transcendent|5.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +261|2023-10-06T21:21:13.8040000-07:00|Change|10FF0009||||| +31|2023-10-06T21:21:14.1740000-07:00|10FF0001||||| +261|2023-10-06T21:21:13.8040000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:21:14.3070000-07:00|40022D72|Automaton Queen|82193|85668|10000|10000|||99.02|101.11|0.00|3.10| +37|2023-10-06T21:21:14.3510000-07:00|40022472|Zeromus|0001A3AD|2441445||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:14.3510000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2458087|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||103.26|93.27|0.00|3.10|0001A3B1|0|1| +261|2023-10-06T21:21:14.0320000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:21:14.1420000-07:00|Change|10FF0006||||||||| +26|2023-10-06T21:21:14.3960000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:21:14.3960000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2441445|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.13|108.87|0.00|1.62|0001A3B2|0|1| +38|2023-10-06T21:21:14.4410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|0||101.34|106.97|-0.01|-0.29|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:14.4410000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +24|2023-10-06T21:21:14.4850000-07:00|10FF0006|Wowobora Gogobora|HoT|742|3ECE|81809|81809|8800|10000|||101.34|106.97|-0.01|-0.29|10FF0007|Kehabiqo Febiqo|0|91726|129844|10000|10000|||94.83|92.55|0.00|2.98| +37|2023-10-06T21:21:14.4850000-07:00|40022472|Zeromus|0001A3AF|2399854||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:14.4850000-07:00|10FF0007|Kehabiqo Febiqo|0001A3AF|107804||||||94.83|92.55|0.00|2.98| +38|2023-10-06T21:21:14.4850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|0||101.34|106.97|-0.01|-0.29|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T21:21:14.5300000-07:00|10FF0003|Gegehi Gehi|41690|73814|4600|10000|||105.85|103.65|-0.01|2.03| +261|2023-10-06T21:21:14.1420000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:21:14.2350000-07:00|Change|40022D75||| +38|2023-10-06T21:21:14.6200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|0||101.12|107.47|0.00|-0.34|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:14.6200000-07:00|496|Intervention|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +37|2023-10-06T21:21:14.7090000-07:00|40022472|Zeromus|0001A3B0|2397791||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:14.7090000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.17|109.30|0.00|-3.10| +261|2023-10-06T21:21:14.3330000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:21:14.7530000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||104.74|102.11|0.00|0.72| +24|2023-10-06T21:21:14.7530000-07:00|40022472|Zeromus|DoT|0|1BEF|2397791|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|2397791|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:14.7530000-07:00|40022472|Zeromus|005A5A00|2390640|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +36|2023-10-06T21:21:14.8420000-07:00|71D4|3| +37|2023-10-06T21:21:14.8860000-07:00|40022472|Zeromus|0001A3B1|2388462||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:14.8860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5700|10000|||105.03|92.09|0.00|-2.74| +39|2023-10-06T21:21:14.8860000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2950|10000|||105.44|107.32|0.00|-0.27| +20|2023-10-06T21:21:14.8860000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|105.88|103.75|0.00|2.03| +21|2023-10-06T21:21:14.9760000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|4|15760000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|16235|81177|2000|10000|||91.89|101.34|0.00|-0.24|73956|77430|10000|10000|||104.84|102.17|0.00|0.44|0001A3B3|0|1| +39|2023-10-06T21:21:14.9760000-07:00|10FF0007|Kehabiqo Febiqo|109102|129844|10000|10000|||94.78|92.53|0.00|-2.55| +21|2023-10-06T21:21:14.9760000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|141C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2390640|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.23|109.96|0.00|1.49|0001A3B4|0|1| +21|2023-10-06T21:21:14.9760000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|4FA80000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2390640|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5500|10000|||105.03|92.09|0.00|-2.74|0001A3B5|0|1| +20|2023-10-06T21:21:14.9760000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|105.44|107.32|0.00|-0.27| +38|2023-10-06T21:21:14.9760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5700|10000|3||105.03|92.09|0.00|-2.74|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:14.9760000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +04|2023-10-06T21:21:14.5360000-07:00|40022D66|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|69928|0|10000|||93.61|91.39|0.00|2.63| +261|2023-10-06T21:21:14.5360000-07:00|Remove|40022D66| +23|2023-10-06T21:21:15.0180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +37|2023-10-06T21:21:15.0210000-07:00|40022472|Zeromus|0001A3B2|2379564||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:15.0210000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9000|10000|||100.24|108.90|-0.01|-0.82| +21|2023-10-06T21:21:15.1090000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2388462|40478540|10000|10000|||100.00|80.10|0.00|0.00|109102|129844|10000|10000|||94.59|92.26|-0.02|-2.40|0001A3B6|0|1| +21|2023-10-06T21:21:15.2430000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|21710000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|2379564|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||104.08|91.81|0.00|-2.74|0001A3B7|0|1| +261|2023-10-06T21:21:14.7530000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:21:14.8740000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:14.8740000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:21:15.3770000-07:00|4002248D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.15|95.61|0.00|0.00|0001A3B8|0|0| +21|2023-10-06T21:21:15.3770000-07:00|4002248E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.71|83.42|0.00|0.00|0001A3B9|0|0| +21|2023-10-06T21:21:15.3770000-07:00|4002248F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.80|81.95|0.00|0.00|0001A3BA|0|0| +21|2023-10-06T21:21:15.3770000-07:00|40022490|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.87|99.52|0.00|0.00|0001A3BB|0|0| +261|2023-10-06T21:21:14.9920000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:21:14.9920000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:21:14.9920000-07:00|Change|40022490||||||||||| +261|2023-10-06T21:21:14.9920000-07:00|Change|4002248E||||||||||| +261|2023-10-06T21:21:14.9920000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:21:15.4210000-07:00|10FF0009|Zewo Negiwo|17046|81177|2221|10000|||90.69|103.88|0.00|-0.40| +261|2023-10-06T21:21:14.9920000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:21:14.9920000-07:00|Change|40022D74||||||||| +21|2023-10-06T21:21:15.4660000-07:00|40022D75|Topaz Titan|64FD|Earthen Fury|40022472|Zeromus|450003|60210000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|2379564|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||103.47|104.06|0.00|-3.07|0001A3BC|0|1| +261|2023-10-06T21:21:15.1100000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:21:15.5100000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2379564|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.38|111.57|0.00|0.87|0001A3BD|0|1| +261|2023-10-06T21:21:15.2070000-07:00|Change|10FF0003||||||||||||||||||||| +38|2023-10-06T21:21:15.6000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5700|10000|3||105.03|92.09|0.00|-2.74|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:15.6000000-07:00|108|Flesh Wound|0.00|40022488|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +37|2023-10-06T21:21:15.6440000-07:00|40022472|Zeromus|0001A3B6|2376557||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:15.6440000-07:00|40022472|Zeromus|0001A3B7|2367996||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:15.6440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|0||100.24|108.90|0.00|-0.82|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:15.6440000-07:00|108|Flesh Wound|0.00|40022488|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T21:21:15.6890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109102|129844|10000|10000|0||93.46|90.75|0.00|-2.74|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:15.6890000-07:00|108|Flesh Wound|0.00|40022488|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:21:15.7330000-07:00|10FF0003|Gegehi Gehi|005A5A23|41690|73814|4600|10000|0||105.88|103.75|0.00|-2.90|0|0|0|||||||||||||||| +30|2023-10-06T21:21:15.7330000-07:00|108|Flesh Wound|0.00|40022488|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +37|2023-10-06T21:21:15.7790000-07:00|10FF0009|Zewo Negiwo|0001A3B3|22540||||||89.55|106.33|0.00|-0.43| +37|2023-10-06T21:21:15.7790000-07:00|40022472|Zeromus|0001A3B4|2362848||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:15.7790000-07:00|10FF0009|Zewo Negiwo|8C|Benediction|10FF0009|Zewo Negiwo|4|3D194001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17046|81177|2221|10000|||89.55|106.33|0.00|-0.43|17046|81177|2221|10000|||89.55|106.33|0.00|-0.43|0001A3BE|0|1| +38|2023-10-06T21:21:15.7790000-07:00|10FF0009|Zewo Negiwo|005A5A18|22540|81177|2221|10000|0||89.55|106.33|0.00|-0.43|0|0|0||||||||||||| +30|2023-10-06T21:21:15.7790000-07:00|1A2|Transcendent|0.00|E0000000||10FF0009|Zewo Negiwo|00|81177|| +26|2023-10-06T21:21:15.8680000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:21:15.8680000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|214A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2367996|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.51|112.96|0.00|0.16|0001A3BF|0|1| +21|2023-10-06T21:21:15.8680000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|34120000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|2367996|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||100.24|108.91|0.00|-0.59|0001A3C0|0|1| +38|2023-10-06T21:21:15.8680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|0||100.24|108.91|0.00|-0.59|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:15.8680000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:21:16.0010000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||104.08|91.81|0.00|-2.69| +21|2023-10-06T21:21:16.0010000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|714003|1C540000|204|25488000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|2362848|40478540|10000|10000|||100.00|80.10|0.00|0.00|109102|129844|10000|10000|||93.46|90.74|0.00|-2.80|0001A3C1|0|1| +24|2023-10-06T21:21:16.2240000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|26A1|90216|90216|10000|10000|||101.52|113.06|0.00|-3.09|4002248E|Zeromus|FFFFFFFF|44|44|0|10000|||99.71|83.42|0.00|0.00| +38|2023-10-06T21:21:16.2240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80327|90216|10000|10000|0||101.52|113.06|0.00|-3.09|0|0|0||||||||||||||||||| +261|2023-10-06T21:21:15.8390000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:21:16.2680000-07:00|40022472|Zeromus|0001A3BD|2359030||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:16.2680000-07:00|40022472|Zeromus|0001A3B5|2338638||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:16.2680000-07:00|10FF0001|Sesuga Sapisuga|0001A3B5|129071|129071|6100|10000|3||105.02|91.57|0.00|-2.78|1300|0|0|0| +38|2023-10-06T21:21:16.2680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6100|10000|3||105.02|91.57|0.00|-2.78|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:16.2680000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:21:16.3120000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|150003|309A0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|2362848|40478540|10000|10000|||100.00|80.10|0.00|0.00|41690|73814|4600|10000|||105.88|103.75|0.00|-2.90|0001A3C2|0|1| +38|2023-10-06T21:21:16.3120000-07:00|10FF0003|Gegehi Gehi|005A5A23|41690|73814|4400|10000|0||105.88|103.75|0.00|-2.90|0|0|0|||||||||||||||| +26|2023-10-06T21:21:16.3120000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:21:16.3120000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:21:15.9520000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:21:16.4020000-07:00|10FF0009|Zewo Negiwo|0001A3BE|81177||||||88.47|109.53|0.00|-0.38| +24|2023-10-06T21:21:16.4020000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CE8|82773|82773|10000|10000|||103.32|90.81|0.00|-2.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2950|10000|||104.48|108.23|0.00|-2.98| +24|2023-10-06T21:21:16.4020000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1556|129071|129071|6100|10000|||105.02|91.57|0.00|-2.78|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2950|10000|||104.48|108.23|0.00|-2.98| +24|2023-10-06T21:21:16.4020000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D5C|109102|129844|10000|10000|||93.63|89.43|0.00|2.79|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2950|10000|||104.48|108.23|0.00|-2.98| +24|2023-10-06T21:21:16.4020000-07:00|10FF0003|Gegehi Gehi|HoT|798|14E2|41690|73814|4400|10000|||105.88|103.75|0.00|-2.90|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2950|10000|||104.48|108.23|0.00|-2.98| +21|2023-10-06T21:21:16.4020000-07:00|40022488|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.71|96.92|0.00|0.00|0001A3C3|0|0| +21|2023-10-06T21:21:16.4020000-07:00|40022489|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.21|92.42|0.00|0.00|0001A3C4|0|0| +21|2023-10-06T21:21:16.4020000-07:00|4002248A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.21|96.92|0.00|0.00|0001A3C5|0|0| +21|2023-10-06T21:21:16.4020000-07:00|4002248B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.94|95.46|0.00|0.00|0001A3C6|0|0| +21|2023-10-06T21:21:16.4020000-07:00|4002248C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.71|101.42|0.00|0.00|0001A3C7|0|0| +38|2023-10-06T21:21:16.4020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112522|129844|10000|10000|0||93.63|89.43|0.00|2.79|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:16.4020000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:16.4020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6100|10000|3||105.02|91.57|0.00|-2.78|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:16.4020000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:21:16.4020000-07:00|10FF0003|Gegehi Gehi|005A5A23|47036|73814|4400|10000|0||105.88|103.75|0.00|-2.90|0|0|0|||||||||||||||| +26|2023-10-06T21:21:16.4020000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +261|2023-10-06T21:21:15.9520000-07:00|Change|40022488||||||||||| +38|2023-10-06T21:21:16.4020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|19||103.32|90.81|0.00|-2.09|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:16.4020000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:21:15.9520000-07:00|Change|4002248B||||||||||| +261|2023-10-06T21:21:15.9520000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:21:15.9520000-07:00|Change|4002248C||||||||||| +261|2023-10-06T21:21:15.9520000-07:00|Change|4002248A||||||||||| +21|2023-10-06T21:21:16.4450000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|724003|18BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2338638|40478540|10000|10000|||100.00|80.10|0.00|0.00|80327|90216|10000|10000|||101.52|113.08|-0.02|-3.09|0001A3C8|0|1| +261|2023-10-06T21:21:16.0720000-07:00|Change|40022486||||||||| +21|2023-10-06T21:21:16.4460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2338638|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6100|10000|||105.02|91.57|0.00|-2.78|0001A3C9|0|1| +31|2023-10-06T21:21:16.4460000-07:00|10FF0001||||| +37|2023-10-06T21:21:16.4900000-07:00|40022472|Zeromus|0001A3BF|2330116||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:16.4900000-07:00|40022472|Zeromus|0001A3C0|2316786||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:16.4900000-07:00|10FF0006|Wowobora Gogobora|0001A3C0|81809|81809|8700|10000|0||101.05|111.95|0.00|0.65|1B00|0|0|01|0B25|0|0|| +24|2023-10-06T21:21:16.4910000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2735|81809|81809|8700|10000|||101.05|111.95|0.00|0.65|10FF0007|Kehabiqo Febiqo|0|112522|129844|10000|10000|||93.66|89.21|0.00|2.85| +21|2023-10-06T21:21:16.4910000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|1E140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2338638|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||101.05|111.95|0.00|0.65|0001A3CA|0|1| +38|2023-10-06T21:21:16.4910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|0||101.05|111.95|0.00|0.65|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:16.4910000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T21:21:16.5350000-07:00|10FF0006|Wowobora Gogobora|HoT|742|2548|81809|81809|8700|10000|||101.05|111.95|0.00|0.65|10FF0007|Kehabiqo Febiqo|0|112522|129844|10000|10000|||93.66|89.21|0.00|2.85| +37|2023-10-06T21:21:16.5350000-07:00|40022472|Zeromus|0001A3C1|2309534||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:16.5350000-07:00|10FF0007|Kehabiqo Febiqo|0001A3C1|122066||||||93.66|89.21|0.00|2.85| +20|2023-10-06T21:21:16.5350000-07:00|40022486|Zeromus|8B76|Umbral Rays|10FF0004|Buhojaqe Zijaqe|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:21:16.5350000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|003E|0000|0000|0000| +21|2023-10-06T21:21:16.5350000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|86F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2338638|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||102.87|90.23|0.00|-2.10|0001A3CB|0|1| +38|2023-10-06T21:21:16.5350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|0||101.05|111.95|0.00|0.65|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:16.1730000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:16.1730000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T21:21:16.6240000-07:00|40022D72|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|227B0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|2309534|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||99.02|101.09|0.00|3.10|0001A3CC|0|1| +261|2023-10-06T21:21:16.3720000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:21:16.9820000-07:00|40022472|Zeromus|0001A3C9|2307357||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:16.9820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80327|90216|10000|10000|0||101.52|113.08|0.00|-3.09|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:16.9820000-07:00|108|Flesh Wound|0.00|4002248E|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +261|2023-10-06T21:21:16.5620000-07:00|Change|40022486||||||||||||| +37|2023-10-06T21:21:17.0710000-07:00|40022472|Zeromus|0001A3C8|2301022||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:17.0710000-07:00|40022472|Zeromus|0001A3CB|2298863||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:17.1150000-07:00|40022472|Zeromus|0001A3C2|2286421||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:17.2490000-07:00|40022472|Zeromus|0001A3CA|2278721||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:17.2940000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|46320000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|2286421|40478540|10000|10000|||100.00|80.10|0.00|0.00|47036|73814|4400|10000|||105.88|103.75|0.00|-2.90|0001A3CD|0|1| +38|2023-10-06T21:21:17.2940000-07:00|10FF0003|Gegehi Gehi|005A5A23|47036|73814|4100|10000|0||105.88|103.75|0.00|-2.90|0|0|0|||||||||||||||| +30|2023-10-06T21:21:17.2940000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:21:17.3380000-07:00|40022D72|Automaton Queen|82193|85668|10000|10000|||99.02|101.09|0.00|3.10| +21|2023-10-06T21:21:17.3380000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|21CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2278721|40478540|10000|10000|||100.00|80.10|0.00|0.00|80327|90216|10000|10000|||101.52|113.08|0.00|-3.09|0001A3CE|0|1| +38|2023-10-06T21:21:17.3380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80327|90216|10000|10000|0||101.52|113.08|0.00|-3.09|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:17.3380000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +37|2023-10-06T21:21:17.3830000-07:00|40022472|Zeromus|0001A3CC|2269894||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:21:17.0320000-07:00|40022D74|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||98.71|98.99|0.00|1.55| +261|2023-10-06T21:21:17.0320000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:21:17.0320000-07:00|Remove|40022D74| +37|2023-10-06T21:21:17.4270000-07:00|40022472|Zeromus|0001A3BC|2245285||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:17.4270000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|2E480000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|2269894|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.49|88.24|0.00|-2.18|0001A3CF|0|1| +21|2023-10-06T21:21:17.4710000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|34D80000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2269894|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6100|10000|||105.02|91.57|0.00|-2.73|0001A3D0|0|1| +38|2023-10-06T21:21:17.4710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6100|10000|3||105.02|91.57|0.00|-2.73|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:17.4710000-07:00|76E|Sword Oath|23.05|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +39|2023-10-06T21:21:17.5160000-07:00|10FF0003|Gegehi Gehi|47774|73814|4300|10000|||105.88|103.75|0.00|-2.90| +261|2023-10-06T21:21:17.1480000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:21:17.2460000-07:00|Change|10FF0003||| +38|2023-10-06T21:21:17.6500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|0||96.66|115.40|0.00|-1.38|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:17.6500000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:21:17.6940000-07:00|10FF0008|Kokosaze Lulusaze|81229|90216|10000|10000|||101.52|113.04|0.00|-3.08| +39|2023-10-06T21:21:17.7830000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||105.69|106.77|0.00|-2.18| +24|2023-10-06T21:21:17.7830000-07:00|40022472|Zeromus|DoT|0|1D2C|2245285|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|2245285|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:17.7830000-07:00|40022472|Zeromus|005A5A00|2237817|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +39|2023-10-06T21:21:17.8720000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6300|10000|||105.02|91.57|0.00|-2.73| +39|2023-10-06T21:21:17.8720000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3150|10000|||104.81|107.36|0.00|2.82| +36|2023-10-06T21:21:17.8720000-07:00|72B0|3| +261|2023-10-06T21:21:17.4350000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:21:17.4350000-07:00|Change|10FF0001||||| +21|2023-10-06T21:21:17.9170000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|14B00000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|47774|73814|4300|10000|||105.88|103.75|0.00|-2.90|73956|77430|10000|10000|||105.69|106.79|0.00|-2.52|0001A3D1|0|1| +37|2023-10-06T21:21:17.9620000-07:00|40022472|Zeromus|0001A3CE|2229167||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:17.9620000-07:00|40022472|Zeromus|0001A3CF|2217319||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:17.9620000-07:00|10FF0007|Kehabiqo Febiqo|123364|129844|10000|10000|||94.96|88.55|0.00|-3.14| +39|2023-10-06T21:21:18.0060000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8900|10000|||96.58|115.44|-0.02|2.87| +21|2023-10-06T21:21:18.0060000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|726003|27F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2217319|40478540|10000|10000|||100.00|80.10|0.00|0.00|81229|90216|10000|10000|||101.48|112.57|0.00|-3.05|0001A3D2|0|1| +37|2023-10-06T21:21:18.0500000-07:00|40022472|Zeromus|0001A3CD|2199349||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:18.1850000-07:00|40022D72|Automaton Queen|4078|Arm Punch|40022472|Zeromus|732003|38010000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||99.02|101.09|0.00|3.10|0001A3D3|0|1| +21|2023-10-06T21:21:18.1850000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|E450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|81229|90216|10000|10000|||101.26|110.20|0.00|-3.10|0001A3D4|0|1| +21|2023-10-06T21:21:18.1850000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|724003|16640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|47774|73814|4300|10000|||105.88|103.75|0.00|-2.90|0001A3D5|0|1| +21|2023-10-06T21:21:18.3180000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|346B0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||98.41|114.08|0.00|2.37|0001A3D6|0|1| +38|2023-10-06T21:21:18.3180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123364|129844|10000|10000|0||94.96|88.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:18.3180000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:21:18.3180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||98.41|114.08|0.00|2.37|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:18.3180000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:21:18.4070000-07:00|10FF0009|Zewo Negiwo|81177|81177|2442|10000|||89.83|111.09|0.00|-2.36| +21|2023-10-06T21:21:18.4510000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|225D0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|123364|129844|10000|10000|||94.96|88.55|0.00|-3.14|0001A3D7|0|1| +38|2023-10-06T21:21:18.4510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123364|129844|10000|10000|0||94.96|88.55|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:18.4510000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T21:21:18.4510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||99.51|113.40|0.00|2.76|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:18.4510000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|64|81809|129844| +21|2023-10-06T21:21:18.4960000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|BBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|123364|129844|10000|10000|||94.96|88.55|0.00|-3.14|0001A3D8|0|1| +38|2023-10-06T21:21:18.4960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81229|90216|10000|10000|0||101.08|109.05|0.00|-3.06|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:18.4960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +261|2023-10-06T21:21:18.1140000-07:00|Change|10FF0009||||||||| +38|2023-10-06T21:21:18.4960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||99.51|113.40|0.00|2.76|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:18.4960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:21:18.4960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3150|10000|12||105.77|103.84|0.00|2.87|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:18.4960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:21:18.2100000-07:00|Change|10FF0006||||||||| +38|2023-10-06T21:21:18.6300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||100.02|113.12|0.00|2.51|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:18.6300000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +261|2023-10-06T21:21:18.4000000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:21:18.7190000-07:00|10FF0003|Gegehi Gehi|0001A3D1|53070||||||104.95|99.99|0.00|-2.90| +21|2023-10-06T21:21:18.7190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|7180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3D9|0|1| +21|2023-10-06T21:21:18.7190000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|89F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||98.35|86.94|0.00|-1.96|0001A3DA|0|1| +31|2023-10-06T21:21:18.7190000-07:00|10FF0001||||| +37|2023-10-06T21:21:18.7630000-07:00|40022472|Zeromus|0001A3D0|2185821||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:18.7630000-07:00|10FF0001|Sesuga Sapisuga|0001A3D0|129071|129071|6700|10000|3||103.70|89.22|0.00|-1.72|1300|0|0|0| +37|2023-10-06T21:21:18.8080000-07:00|40022472|Zeromus|0001A3D2|2175595||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:18.8080000-07:00|40022472|Zeromus|0001A3D5|2169863||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:18.8540000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C722003|49330000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|2199349|40478540|10000|10000|||100.00|80.10|0.00|0.00|81229|90216|10000|10000|||99.91|107.24|0.00|-2.51|0001A3DB|0|1| +22|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0001|Sesuga Sapisuga|6B0E|5520000|4|25050000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3DC|0|8| +22|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF000A|Dukaro Nezikaro|6B0E|5520000|4|26E80000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||98.35|86.94|0.00|-1.96|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3DC|1|8| +22|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0007|Kehabiqo Febiqo|6B0E|5520000|4|26C50000|0|0|0|0|0|0|0|0|0|0|0|0|123364|129844|10000|10000|||94.99|88.55|0.00|2.76|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3DC|2|8| +22|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0003|Gegehi Gehi|6B0E|5520000|4|26CA0000|0|0|0|0|0|0|0|0|0|0|0|0|47774|73814|4300|10000|||104.95|99.99|0.00|-2.90|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3DC|3|8| +22|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0004|Buhojaqe Zijaqe|6B0E|5520000|4|25710000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3150|10000|||105.75|102.11|0.00|3.02|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3DC|4|8| +22|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0008|Kokosaze Lulusaze|6B0E|5520000|4|27120000|0|0|0|0|0|0|0|0|0|0|0|0|81229|90216|10000|10000|||99.91|107.24|0.00|-2.51|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3DC|5|8| +22|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0009|Zewo Negiwo|6B0E|5520000|4|25E00000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2442|10000|||90.77|108.53|0.00|3.09|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3DC|6|8| +22|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0006|Wowobora Gogobora|6B0E|5520000|4|255F0000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8600|10000|||100.99|112.50|0.00|2.28|129071|129071|6300|10000|||103.70|89.22|0.00|-1.72|0001A3DC|7|8| +38|2023-10-06T21:21:18.8540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123364|129844|10000|10000|9||94.99|88.55|0.00|2.76|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:18.8540000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +38|2023-10-06T21:21:18.8540000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2442|10000|15||90.77|108.53|0.00|3.09|0|0|0||||||||||||| +26|2023-10-06T21:21:18.8540000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0009|Zewo Negiwo|00|81177|129071| +38|2023-10-06T21:21:18.8540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81229|90216|10000|10000|14||99.91|107.24|0.00|-2.51|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:18.8540000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|90216|129071| +38|2023-10-06T21:21:18.8540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|15||100.99|112.50|0.00|2.28|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:18.8540000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +38|2023-10-06T21:21:18.8540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6700|10000|13||103.70|89.22|0.00|-1.72|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:18.8540000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:21:18.8540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3150|10000|28||105.75|102.11|0.00|3.02|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:18.8540000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +38|2023-10-06T21:21:18.8540000-07:00|10FF0003|Gegehi Gehi|005A5A23|53070|73814|4300|10000|17||104.95|99.99|0.00|-2.90|0|0|0|||||||||||||||| +26|2023-10-06T21:21:18.8540000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73814|129071| +38|2023-10-06T21:21:18.8540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|35||98.35|86.94|0.00|-1.96|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:18.8540000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|82773|129071| +261|2023-10-06T21:21:18.4910000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:21:18.9420000-07:00|40022472|Zeromus|0001A3D4|2166210||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:18.9420000-07:00|40022472|Zeromus|0001A3D3|2151873||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:18.9420000-07:00|40022472|Zeromus|0001A3D6|2138454||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:18.9420000-07:00|10FF0006|Wowobora Gogobora|0001A3D6|81809|81809|8600|10000|15||100.99|112.50|0.00|2.28|1B00|0|0|01|0B25|0|0|| +21|2023-10-06T21:21:18.9430000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|26B40000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|2138454|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2750|10000|||105.66|101.36|0.00|3.08|0001A3DD|0|1| +38|2023-10-06T21:21:18.9430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|15||101.50|112.05|-0.02|2.29|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:21:18.9870000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||98.52|87.71|-0.02|-1.75| +21|2023-10-06T21:21:18.9870000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|195D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2138454|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||101.50|112.05|-0.02|2.29|0001A3DE|0|1| +38|2023-10-06T21:21:18.9870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|15||101.50|112.05|-0.02|2.29|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:18.9870000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:21:19.0310000-07:00|40022472|Zeromus|0001A3D8|2135447||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:19.0750000-07:00|40022472|Zeromus|0001A3D7|2126650||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:19.1190000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2135447|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2750|10000|||105.59|100.69|0.00|-2.88|0001A3DF|0|1| +21|2023-10-06T21:21:19.2090000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|724003|220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2126650|40478540|10000|10000|||100.00|80.10|0.00|0.00|53070|73814|4300|10000|||104.94|99.97|0.00|-2.90|0001A3E0|0|1| +261|2023-10-06T21:21:18.8160000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:21:19.2540000-07:00|40022472|Zeromus|0001A3D9|2124834||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:19.2540000-07:00|40022472|Zeromus|0001A3DA|2122627||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:19.3880000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CF9|82773|82773|10000|10000|||99.32|88.77|0.00|-1.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||105.01|98.32|0.00|-2.89| +24|2023-10-06T21:21:19.3880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D14|123364|129844|10000|10000|||97.87|88.65|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||105.01|98.32|0.00|-2.89| +24|2023-10-06T21:21:19.3880000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15C0|129071|129071|6700|10000|||102.60|89.22|0.00|-1.16|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||105.01|98.32|0.00|-2.89| +24|2023-10-06T21:21:19.3880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D41|81541|81541|2750|10000|||105.01|98.32|0.00|-2.89|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||105.01|98.32|0.00|-2.89| +24|2023-10-06T21:21:19.3880000-07:00|10FF0003|Gegehi Gehi|HoT|798|D48|53070|73814|4300|10000|||104.86|100.00|0.00|-2.82|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||105.01|98.32|0.00|-2.89| +24|2023-10-06T21:21:19.3880000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D2F|81229|90216|10000|10000|||99.30|106.87|0.00|-2.56|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||105.01|98.32|0.00|-2.89| +24|2023-10-06T21:21:19.3880000-07:00|10FF0009|Zewo Negiwo|HoT|798|D26|81177|81177|2442|10000|||92.88|105.89|0.00|2.40|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||105.01|98.32|0.00|-2.89| +38|2023-10-06T21:21:19.3880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126712|129844|10000|10000|9||97.87|88.65|0.00|3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:19.3880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:19.3880000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2442|10000|15||92.88|105.89|0.00|2.40|0|0|0|||||||||||||||| +26|2023-10-06T21:21:19.3880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:21:19.3880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|84604|90216|10000|10000|14||99.30|106.87|0.00|-2.56|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:19.3880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:21:19.3880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6700|10000|13||102.60|89.22|0.00|-1.16|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:19.3880000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:21:19.3880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2750|10000|28||105.01|98.32|0.00|-2.89|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:19.3880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:21:19.3880000-07:00|10FF0003|Gegehi Gehi|005A5A23|56470|73814|4300|10000|17||104.86|100.00|0.00|-2.82|0|0|0|||||||||||||||| +26|2023-10-06T21:21:19.3880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:21:19.3880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|35||99.32|88.77|0.00|-1.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:19.3880000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:21:19.0460000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:21:19.4770000-07:00|10FF0001|Sesuga Sapisuga|0001A3DC|129071|129071|6700|10000|13||102.51|89.02|0.00|-1.16|1300|0|0|01|05000552|0|41EB6040|| +21|2023-10-06T21:21:19.4770000-07:00|10FF0008|Kokosaze Lulusaze|03|Sprint|10FF0008|Kokosaze Lulusaze|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|84604|90216|10000|10000|||99.32|106.48|0.00|-2.65|84604|90216|10000|10000|||99.32|106.48|0.00|-2.65|0001A3E1|0|1| +261|2023-10-06T21:21:19.0460000-07:00|Change|40022D75||||| +38|2023-10-06T21:21:19.5220000-07:00|40022D7B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:21:19.5220000-07:00|40022D7B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:21:19.1420000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:19.1420000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:21:19.6100000-07:00|10FF0008|Kokosaze Lulusaze|0001A3E1|84604|90216|10000|10000|14||99.48|105.59|0.00|2.94|1F00|0|0|01|04000032|1E|41200000|| +26|2023-10-06T21:21:19.6100000-07:00|32|Sprint|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|90216|90216| +37|2023-10-06T21:21:19.6100000-07:00|10FF000A|Dukaro Nezikaro|0001A3DC|82773|82773|10000|10000|35||100.04|89.44|0.00|-0.83|1E01|0|0|01|06000552|0|41EA4FDE|| +37|2023-10-06T21:21:19.6550000-07:00|40022472|Zeromus|0001A3DB|2103888||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:19.6550000-07:00|40022472|Zeromus|0001A3DF|2103737||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:19.6550000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40022472|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2122627|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||102.30|110.58|0.00|2.99|0001A3E2|0|1| +37|2023-10-06T21:21:19.7440000-07:00|40022472|Zeromus|0001A3DE|2097244||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:19.7440000-07:00|10FF0007|Kehabiqo Febiqo|0001A3DC|129844|129844|10000|10000|9||99.53|89.05|0.00|2.43|1502|0|0|01|01000552|0|41E93D6F|| +37|2023-10-06T21:21:19.7440000-07:00|40022472|Zeromus|0001A3E0|2097210||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:19.7440000-07:00|40022D72|Automaton Queen|4078|Arm Punch|40022472|Zeromus|730003|20AA0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|2103737|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||99.02|101.09|0.00|3.10|0001A3E3|0|1| +03|2023-10-06T21:21:19.3260000-07:00|40022D7B|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||104.36|108.91|0.00|-0.92| +261|2023-10-06T21:21:19.3260000-07:00|Add|40022D7B||||||||||||||||||||||||||||||||||||| +20|2023-10-06T21:21:19.7880000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|103.61|100.40|0.00|-2.83| +261|2023-10-06T21:21:19.4190000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:21:19.4190000-07:00|Change|40022D7B||| +37|2023-10-06T21:21:19.8760000-07:00|10FF0003|Gegehi Gehi|0001A3DC|66400|73814|4300|10000|17||103.61|100.40|0.00|-2.83|2303|0|0|01|02000552|0|41E82D0C|| +37|2023-10-06T21:21:19.8760000-07:00|40022472|Zeromus|0001A3DD|2087302||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:19.8760000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|710003|18B70000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|2097210|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.51|89.86|0.00|-0.79|0001A3E4|0|1| +21|2023-10-06T21:21:19.9650000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|33430000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2087302|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6700|10000|||102.49|88.97|0.00|-2.87|0001A3E5|0|1| +38|2023-10-06T21:21:19.9650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6700|10000|13||102.49|88.97|0.00|-2.87|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:19.9650000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:21:20.0100000-07:00|10FF0004|Buhojaqe Zijaqe|0001A3DC|81541|81541|2750|10000|28||103.07|94.78|0.00|-2.63|1C04|0|0|01|06000552|0|41E71CA9|| +23|2023-10-06T21:21:20.0540000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +261|2023-10-06T21:21:19.6140000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:21:20.1430000-07:00|10FF0008|Kokosaze Lulusaze|0001A3DC|90216|90216|10000|10000|14||100.12|101.73|0.00|2.97|1F05|0|0|01|02000552|0|41E60A3A|| +261|2023-10-06T21:21:19.8390000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:21:20.2770000-07:00|40022472|Zeromus|0001A3E2|2087302|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004B3|0|41200000|| +26|2023-10-06T21:21:20.2770000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40022472|Zeromus|00|40478540|81809| +37|2023-10-06T21:21:20.2770000-07:00|10FF0009|Zewo Negiwo|0001A3DC|81177|81177|2442|10000|15||96.29|102.25|0.00|2.55|1806|0|0|01|02000552|0|41E4F9D7|| +37|2023-10-06T21:21:20.2770000-07:00|40022472|Zeromus|0001A3E4|2080975||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:20.2770000-07:00|40022D72|Automaton Queen|005A5A00|82193|85668|10000|10000|0||99.02|101.09|0.00|3.10|0|0|0||||||| +26|2023-10-06T21:21:20.2770000-07:00|30|Well Fed|1185.99|10FF0008|Kokosaze Lulusaze|40022D72|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:21:20.2770000-07:00|7AD|Summon Order III|30.00|40022472|Zeromus|40022D72|Automaton Queen|01|85668|40478540| +39|2023-10-06T21:21:20.3220000-07:00|40022D72|Automaton Queen|82193|85668|10000|10000|||99.02|101.09|0.00|3.10| +21|2023-10-06T21:21:20.3220000-07:00|10FF0008|Kokosaze Lulusaze|B47|Dismantle|40022472|Zeromus|F60E|35C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2087302|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.22|100.81|0.00|2.99|0001A3E6|0|1| +261|2023-10-06T21:21:19.9490000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:21:20.4100000-07:00|10FF0006|Wowobora Gogobora|0001A3DC|81809|81809|8600|10000|15||102.96|113.41|0.00|1.36|1B07|0|0|01|01000552|0|41E3E768|| +261|2023-10-06T21:21:19.9490000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:21:20.4100000-07:00|40022472|Zeromus|8CFA|Flow of the Abyss|40022472|Zeromus|1B|8CFA8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2080975|40478540|10000|10000|||100.00|80.10|0.00|0.00|2080975|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A3E7|0|1| +261|2023-10-06T21:21:20.0630000-07:00|Change|40022472||||| +261|2023-10-06T21:21:20.1550000-07:00|Change|40022D7B||||||||| +37|2023-10-06T21:21:20.5430000-07:00|40022472|Zeromus|0001A3E3|2072613||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:20.5430000-07:00|10FF0003|Gegehi Gehi|67138|73814|4500|10000|||102.66|99.39|0.00|-2.85| +34|2023-10-06T21:21:20.5430000-07:00|40022D7B|Carbuncle|40022D7B|Carbuncle|01| +261|2023-10-06T21:21:20.2470000-07:00|Change|40022D58||||||||| +39|2023-10-06T21:21:20.7200000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.51|97.38|1.67|3.14| +39|2023-10-06T21:21:20.7660000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||103.80|99.74|0.00|-2.82| +24|2023-10-06T21:21:20.7660000-07:00|40022472|Zeromus|DoT|0|25B1|2072613|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|81809|81809|8600|10000|||102.88|114.34|-0.02|0.45| +38|2023-10-06T21:21:20.7660000-07:00|40022472|Zeromus|005A5A00|2062964|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T21:21:20.8100000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|33A50000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|2062964|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||102.77|114.68|0.00|0.15|0001A3E8|0|1| +38|2023-10-06T21:21:20.8100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|15||102.77|114.68|0.00|0.15|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:20.8100000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:21:20.3460000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:20.4370000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:21:20.8550000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|722003|EA90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2062964|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.57|96.57|1.79|3.14|0001A3E9|0|1| +36|2023-10-06T21:21:20.8550000-07:00|738C|3| +39|2023-10-06T21:21:20.9000000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6900|10000|||102.07|88.58|0.00|-1.77| +39|2023-10-06T21:21:20.9000000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2950|10000|||100.99|91.37|0.00|-2.83| +21|2023-10-06T21:21:20.9000000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|2E950000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|2062964|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||101.30|90.58|0.00|1.54|0001A3EA|0|1| +21|2023-10-06T21:21:20.9000000-07:00|10FF0009|Zewo Negiwo|03|Sprint|10FF0009|Zewo Negiwo|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2442|10000|||97.96|101.87|-0.02|0.89|81177|81177|2442|10000|||97.96|101.87|-0.02|0.89|0001A3EB|0|1| +21|2023-10-06T21:21:20.9000000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|DEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2062964|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||100.91|89.85|0.00|-1.79|0001A3EC|0|1| +38|2023-10-06T21:21:20.9000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|9||101.30|90.58|0.00|1.54|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:20.9000000-07:00|A75|Surging Tempest|36.60|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:21:20.4370000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:21:20.9890000-07:00|40022472|Zeromus|0001A3E6|2062964|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035C|0|41200000|| +26|2023-10-06T21:21:20.9890000-07:00|35C|Dismantled|10.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|90216| +39|2023-10-06T21:21:20.9890000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||101.30|90.58|0.00|1.54| +39|2023-10-06T21:21:20.9890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8500|10000|||102.72|114.86|-0.02|-3.07| +21|2023-10-06T21:21:20.9890000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2062964|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6700|10000|||102.07|88.58|0.00|-1.77|0001A3ED|0|1| +31|2023-10-06T21:21:20.9890000-07:00|10FF0001||||| +37|2023-10-06T21:21:21.0330000-07:00|10FF0009|Zewo Negiwo|0001A3EB|81177|81177|2442|10000|15||98.02|102.04|0.00|1.53|1800|0|0|01|05000032|1E|41200000|| +26|2023-10-06T21:21:21.0330000-07:00|32|Sprint|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|1E|81177|81177| +261|2023-10-06T21:21:20.6270000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:21:21.2570000-07:00|40022472|Zeromus|0001A3E5|2049841||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:21.2570000-07:00|10FF0001|Sesuga Sapisuga|0001A3E5|129071|129071|7300|10000|13||100.94|87.95|0.00|-1.78|1300|0|0|0| +21|2023-10-06T21:21:21.3030000-07:00|40022D72|Automaton Queen|4077|Pile Bunker|40022472|Zeromus|730003|62420000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|2062964|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||99.02|101.09|0.00|3.10|0001A3EE|0|1| +261|2023-10-06T21:21:20.9670000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:21:21.3470000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44726003|78B80000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|2049841|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.52|92.41|0.48|-3.10|0001A3EF|0|1| +20|2023-10-06T21:21:21.3470000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|101.00|91.26|0.00|3.08| +39|2023-10-06T21:21:21.3920000-07:00|10FF0009|Zewo Negiwo|81177|81177|2663|10000|||98.32|102.06|0.00|1.53| +261|2023-10-06T21:21:20.9670000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:21:21.4360000-07:00|40022472|Zeromus|0001A3E8|2036620||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:21.4360000-07:00|10FF0006|Wowobora Gogobora|0001A3E8|81809|81809|8500|10000|15||102.59|115.31|0.00|-3.07|1B00|0|0|01|0B25|0|0|| +37|2023-10-06T21:21:21.4360000-07:00|40022472|Zeromus|0001A3EC|2033058||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:21.4360000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|454003|1F7B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2049841|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||102.59|115.31|0.00|-3.07|0001A3F0|0|1| +38|2023-10-06T21:21:21.4360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|15||102.59|115.31|0.00|-3.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:21.4360000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:21:20.9670000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:21:21.0830000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:21:21.5260000-07:00|40022472|Zeromus|0001A3ED|2031339||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:21:21.5260000-07:00|40022486|Zeromus|8B76|Umbral Rays|10FF0004|Buhojaqe Zijaqe|750603|74450000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|81541|81541|2950|10000|||101.00|91.26|0.00|3.08|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A3F1|0|6| +22|2023-10-06T21:21:21.5260000-07:00|40022486|Zeromus|8B76|Umbral Rays|10FF0008|Kokosaze Lulusaze|750003|D9510000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.48|91.55|1.26|-3.10|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A3F1|1|6| +22|2023-10-06T21:21:21.5260000-07:00|40022486|Zeromus|8B76|Umbral Rays|10FF000A|Dukaro Nezikaro|750603|78140000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.91|89.43|0.00|-1.53|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A3F1|2|6| +22|2023-10-06T21:21:21.5260000-07:00|40022486|Zeromus|8B76|Umbral Rays|10FF0003|Gegehi Gehi|750003|C7A60000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|67138|73814|4500|10000|||101.01|94.01|0.00|-2.85|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A3F1|3|6| +22|2023-10-06T21:21:21.5260000-07:00|40022486|Zeromus|8B76|Umbral Rays|10FF0007|Kehabiqo Febiqo|750003|71B60000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.94|89.13|0.00|-2.88|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A3F1|4|6| +22|2023-10-06T21:21:21.5260000-07:00|40022486|Zeromus|8B76|Umbral Rays|10FF0001|Sesuga Sapisuga|750603|65280000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|129071|129071|7300|10000|||100.62|87.87|0.00|-1.85|44|44|0|10000|||100.00|100.00|0.00|0.00|0001A3F1|5|6| +38|2023-10-06T21:21:21.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|9||100.94|89.13|0.00|-2.88|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:21.5260000-07:00|B7D|Magic Vulnerability Up|2.00|40022486|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:21:21.5260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|14||100.48|91.55|1.26|-3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:21.5260000-07:00|B7D|Magic Vulnerability Up|2.00|40022486|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T21:21:21.5260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7300|10000|13||100.62|87.87|0.00|-1.85|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:21.5260000-07:00|B7D|Magic Vulnerability Up|2.00|40022486|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:21:21.5260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2950|10000|28||101.00|91.26|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:21.5260000-07:00|B7D|Magic Vulnerability Up|2.00|40022486|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T21:21:21.5260000-07:00|10FF0003|Gegehi Gehi|005A5A23|67138|73814|4500|10000|17||101.01|94.01|0.00|-2.85|0|0|0|||||||||||||||| +26|2023-10-06T21:21:21.5260000-07:00|B7D|Magic Vulnerability Up|2.00|40022486|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T21:21:21.5260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|35||100.91|89.43|0.00|-1.53|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:21.5260000-07:00|B7D|Magic Vulnerability Up|2.00|40022486|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +261|2023-10-06T21:21:21.0830000-07:00|Change|40022486||||||||||||| +261|2023-10-06T21:21:21.1980000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:21:21.6140000-07:00|40022472|Zeromus|0001A3E9|2027586||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:21.7030000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|226D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|67138|73814|4500|10000|||100.61|92.67|0.00|-2.85|73956|77430|10000|10000|||102.56|94.28|0.00|-2.92|0001A3F2|0|1| +21|2023-10-06T21:21:21.8830000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|DD40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2027586|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.66|89.58|-0.02|-1.39|0001A3F3|0|1| +261|2023-10-06T21:21:21.4880000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:21:21.4880000-07:00|Change|10FF0003||||||||| +20|2023-10-06T21:21:21.9270000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|100.25|91.36|0.00|-2.87| +261|2023-10-06T21:21:21.4880000-07:00|Change|10FF0009||||||||| +39|2023-10-06T21:21:22.0160000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||100.91|89.43|0.00|-1.53| +37|2023-10-06T21:21:22.1500000-07:00|40022472|Zeromus|0001A3EF|1996682||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:22.1500000-07:00|10FF0004|Buhojaqe Zijaqe|0001A3F1|51776|81541|2950|10000|0||101.00|91.26|0.00|3.08|1C00|0|0|03|04000000|0|0|||||||||| +38|2023-10-06T21:21:22.1500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|51776|81541|2950|10000|0||101.00|91.26|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:22.1500000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +30|2023-10-06T21:21:22.1500000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +37|2023-10-06T21:21:22.1950000-07:00|10FF0008|Kokosaze Lulusaze|0001A3F1|34583|90216|10000|10000|0||100.17|86.49|0.00|-3.06|1F01|0|0|02|02000000|0|0|||||| +37|2023-10-06T21:21:22.1950000-07:00|40022472|Zeromus|0001A3F0|1988623||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:22.1950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|34583|90216|10000|10000|0||100.17|86.49|0.00|-3.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:22.1950000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|90216|129071| +37|2023-10-06T21:21:22.2390000-07:00|10FF000A|Dukaro Nezikaro|0001A3F1|52033|82773|10000|10000|0||100.91|89.43|0.00|-1.53|1E02|0|0|03|05000000|0|0|||||||||| +22|2023-10-06T21:21:22.2390000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|40022472|Zeromus|750003|2EF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2027586|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|0001A3F4|0|8| +22|2023-10-06T21:21:22.2390000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0009|Zewo Negiwo|4|23EE0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|0001A3F4|1|8| +22|2023-10-06T21:21:22.2390000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0003|Gegehi Gehi|200004|3A4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67138|73814|4500|10000|||100.04|90.56|0.00|-3.01|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|0001A3F4|2|8| +22|2023-10-06T21:21:22.2390000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|24B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2950|10000|||101.00|91.26|0.00|3.08|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|0001A3F4|3|8| +22|2023-10-06T21:21:22.2390000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|24DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.58|89.97|0.00|-0.33|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|0001A3F4|4|8| +22|2023-10-06T21:21:22.2390000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF000A|Dukaro Nezikaro|4|24320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||100.91|89.43|0.00|-1.53|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|0001A3F4|5|8| +22|2023-10-06T21:21:22.2390000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0001|Sesuga Sapisuga|4|24B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7300|10000|||100.62|87.87|0.00|-1.85|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|0001A3F4|6|8| +22|2023-10-06T21:21:22.2390000-07:00|10FF0009|Zewo Negiwo|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|25040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.17|86.49|0.00|-3.06|81177|81177|2663|10000|||99.37|95.04|0.00|3.11|0001A3F4|7|8| +38|2023-10-06T21:21:22.2390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52033|82773|10000|10000|0||100.91|89.43|0.00|-1.53|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:22.2390000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +30|2023-10-06T21:21:22.2390000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|82773|129071| +37|2023-10-06T21:21:22.2830000-07:00|10FF0003|Gegehi Gehi|0001A3F1|16028|73814|4500|10000|0||100.04|90.56|0.00|-3.01|2303|0|0|02|02000000|0|0|||||| +38|2023-10-06T21:21:22.2830000-07:00|10FF0003|Gegehi Gehi|005A5A23|16028|73814|4500|10000|0||100.04|90.56|0.00|-3.01|0|0|0|||||||||||||||| +30|2023-10-06T21:21:22.2830000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73814|129071| +261|2023-10-06T21:21:21.9220000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:21:22.3280000-07:00|10FF0007|Kehabiqo Febiqo|0001A3F1|100734|129844|10000|10000|0||100.55|90.08|0.00|-0.05|1504|0|0|02|01000000|0|0|||||| +38|2023-10-06T21:21:22.3280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100734|129844|10000|10000|0||100.55|90.08|0.00|-0.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:22.3280000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +257|2023-10-06T21:21:22.3280000-07:00|80034E7C|00200004|03|00|0000| +37|2023-10-06T21:21:22.3740000-07:00|10FF0001|Sesuga Sapisuga|0001A3F1|103175|129071|7300|10000|0||100.62|87.87|0.00|-3.06|1305|0|0|03|02000B7D|0|3F99374E|||||||||| +24|2023-10-06T21:21:22.3740000-07:00|10FF0009|Zewo Negiwo|HoT|798|15AF|81177|81177|2663|10000|||99.31|93.58|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|51776|81541|2950|10000|||101.00|91.26|0.00|3.08| +24|2023-10-06T21:21:22.3740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D16|51776|81541|2950|10000|||101.00|91.26|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|51776|81541|2950|10000|||101.00|91.26|0.00|3.08| +24|2023-10-06T21:21:22.3740000-07:00|10FF0003|Gegehi Gehi|HoT|798|D75|16028|73814|4500|10000|||99.97|90.33|-0.01|-3.12|10FF0004|Buhojaqe Zijaqe|0|51776|81541|2950|10000|||101.00|91.26|0.00|3.08| +24|2023-10-06T21:21:22.3740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|15AF|100734|129844|10000|10000|||100.54|90.14|-0.02|0.11|10FF0004|Buhojaqe Zijaqe|0|51776|81541|2950|10000|||101.00|91.26|0.00|3.08| +24|2023-10-06T21:21:22.3740000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|160A|52033|82773|10000|10000|||100.91|89.43|0.00|-1.53|10FF0004|Buhojaqe Zijaqe|0|51776|81541|2950|10000|||101.00|91.26|0.00|3.08| +24|2023-10-06T21:21:22.3740000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D37|129071|129071|7300|10000|||100.62|87.87|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|51776|81541|2950|10000|||101.00|91.26|0.00|3.08| +24|2023-10-06T21:21:22.3740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D72|34583|90216|10000|10000|||100.11|85.90|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|51776|81541|2950|10000|||101.00|91.26|0.00|3.08| +21|2023-10-06T21:21:22.3740000-07:00|40022487|Zeromus|8B82|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|100.00|0.00|1.57|0001A3F5|0|0| +38|2023-10-06T21:21:22.3740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106285|129844|10000|10000|0||100.54|90.14|-0.02|0.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:22.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:22.3740000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2663|10000|15||99.31|93.58|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:22.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:21:22.3740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|38025|90216|10000|10000|0||100.11|85.90|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:22.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:21:22.3740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106558|129071|7300|10000|0||100.62|87.87|0.00|-3.06|0|0|0|||||||||||||||| +26|2023-10-06T21:21:22.3740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +30|2023-10-06T21:21:22.3740000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +30|2023-10-06T21:21:22.3740000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:21:22.3740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55126|81541|2950|10000|0||101.00|91.26|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:22.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:21:21.9220000-07:00|Change|40022487||||||||||||| +38|2023-10-06T21:21:22.3740000-07:00|10FF0003|Gegehi Gehi|005A5A23|19473|73814|4500|10000|0||99.97|90.33|-0.01|-3.12|0|0|0|||||||||||||||| +26|2023-10-06T21:21:22.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:21:22.3740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57675|82773|10000|10000|0||100.91|89.43|0.00|-1.53|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:22.3740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:21:22.4180000-07:00|40022472|Zeromus|0001A3F3|1985083||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:22.4180000-07:00|10FF000A|Dukaro Nezikaro|8C1|Shade Shift|10FF000A|Dukaro Nezikaro|AA0E|1E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52033|82773|10000|10000|||100.91|89.43|0.00|-1.53|52033|82773|10000|10000|||100.91|89.43|0.00|-1.53|0001A3F6|0|1| +21|2023-10-06T21:21:22.4620000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40022472|Zeromus|710003|45990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1988623|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7300|10000|||100.62|87.87|0.00|-3.06|0001A3F7|0|1| +37|2023-10-06T21:21:22.5060000-07:00|10FF0003|Gegehi Gehi|0001A3F2|28286||||||99.97|90.33|-0.01|-3.12| +37|2023-10-06T21:21:22.5510000-07:00|40022472|Zeromus|0001A3EA|1973158||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:22.5960000-07:00|40022472|Zeromus|0001A3EE|1948004||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:22.5960000-07:00|40022D72|Automaton Queen|005A5A00|82193|85668|10000|10000|0||99.02|101.09|0.00|3.10|0|0|0|||| +30|2023-10-06T21:21:22.5960000-07:00|7AD|Summon Order III|0.00|40022472|Zeromus|40022D72|Automaton Queen|01|85668|40478540| +22|2023-10-06T21:21:22.7300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|18DA0000|C30E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55126|81541|2950|10000|||101.00|91.26|0.00|3.08|55126|81541|2950|10000|||101.00|91.26|0.00|3.08|0001A3F8|0|7| +22|2023-10-06T21:21:22.7300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|298B0000|780E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|28286|73814|4500|10000|||99.96|90.29|0.00|3.14|55126|81541|2950|10000|||101.00|91.26|0.00|3.08|0001A3F8|1|7| +22|2023-10-06T21:21:22.7300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|197C0000|C60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57675|82773|10000|10000|||100.91|89.43|0.00|-1.53|55126|81541|2950|10000|||101.00|91.26|0.00|3.08|0001A3F8|2|7| +22|2023-10-06T21:21:22.7300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|29310000|E80E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|106285|129844|10000|10000|||100.55|89.80|0.00|2.01|55126|81541|2950|10000|||101.00|91.26|0.00|3.08|0001A3F8|3|7| +22|2023-10-06T21:21:22.7300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0009|Zewo Negiwo|4|19B70000|240E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81177|81177|2663|10000|||99.27|92.22|0.00|-3.11|55126|81541|2950|10000|||101.00|91.26|0.00|3.08|0001A3F8|4|7| +22|2023-10-06T21:21:22.7300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|19C00000|330E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|106558|129071|7300|10000|||100.62|87.87|0.00|-3.06|55126|81541|2950|10000|||101.00|91.26|0.00|3.08|0001A3F8|5|7| +22|2023-10-06T21:21:22.7300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|28860000|D60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|38025|90216|10000|10000|||100.08|85.56|0.00|-3.06|55126|81541|2950|10000|||101.00|91.26|0.00|3.08|0001A3F8|6|7| +38|2023-10-06T21:21:22.7300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106285|129844|10000|10000|12||100.55|89.80|0.00|2.01|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:22.7300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:22.7300000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2663|10000|28||99.27|92.22|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:22.7300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:21:22.7300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|38025|90216|10000|10000|18||100.08|85.56|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:22.7300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:21:22.7300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106558|129071|7300|10000|8||100.62|87.87|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:22.7300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:21:22.7300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55126|81541|1950|10000|12||101.00|91.26|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:22.7300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:21:22.7300000-07:00|10FF0003|Gegehi Gehi|005A5A23|28286|73814|4500|10000|23||99.96|90.29|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:21:22.7300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:21:22.7300000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57675|82773|10000|10000|12||100.91|89.43|0.00|-1.53|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:22.7300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +261|2023-10-06T21:21:22.3360000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:21:22.3360000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:21:22.8190000-07:00|10FF000A|Dukaro Nezikaro|0001A3F6|57675|82773|10000|10000|32||100.91|89.43|0.00|-1.53|1E00|0|0|01|060001E8|0|41A00000|| +26|2023-10-06T21:21:22.8190000-07:00|1E8|Shade Shift|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:21:22.8190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57675|82773|10000|10000|32||100.91|89.43|0.00|-1.53|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:21:22.9080000-07:00|40022472|Zeromus|0001A3F4|1935984||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:22.5260000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T21:21:22.9970000-07:00|40022472|Zeromus|0001A3F7|1918167||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:23.0410000-07:00|10FF0009|Zewo Negiwo|0001A3F4|81177|81177|3163|10000|28||100.05|90.09|0.00|2.88|1801|0|0|0| +21|2023-10-06T21:21:23.0860000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|57675|82773|10000|10000|||100.91|89.43|0.00|-1.53|0001A3F9|0|1| +37|2023-10-06T21:21:23.1760000-07:00|10FF0003|Gegehi Gehi|0001A3F4|43212||||||99.96|90.29|0.00|3.14| +21|2023-10-06T21:21:23.2650000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|83E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|106558|129071|7300|10000|||100.62|87.87|0.00|-3.06|0001A3FA|0|1| +31|2023-10-06T21:21:23.2650000-07:00|10FF0001||||| +261|2023-10-06T21:21:22.8760000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:21:23.3090000-07:00|10FF0004|Buhojaqe Zijaqe|0001A3F4|64527||||||100.74|90.25|0.00|-2.97| +38|2023-10-06T21:21:23.3100000-07:00|40022D72|Automaton Queen|005A5A00|82193|85668|10000|10000|0||99.02|101.09|0.00|3.10|0|0|0||||||| +26|2023-10-06T21:21:23.3100000-07:00|7AE|Summon Order IV|30.00|40022472|Zeromus|40022D72|Automaton Queen|01|85668|40478540| +39|2023-10-06T21:21:23.3100000-07:00|40022D72|Automaton Queen|82193|85668|10000|10000|||99.02|101.09|0.00|3.10| +21|2023-10-06T21:21:23.3100000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40022472|Zeromus|450003|370E0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||101.67|110.55|0.00|-2.99|0001A3FB|0|1| +21|2023-10-06T21:21:23.3100000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32710003|24A70000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|57675|82773|10000|10000|||100.91|89.43|0.00|-1.53|0001A3FC|0|1| +38|2023-10-06T21:21:23.3100000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8200|10000|15||101.67|110.55|0.00|-2.99|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:23.3100000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:21:23.3550000-07:00|40022D72|Automaton Queen|64BB|Crowned Collider|40022472|Zeromus|730003|6BF90000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||99.02|101.09|0.00|3.10|0001A3FD|0|1| +21|2023-10-06T21:21:23.3550000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|16080000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|106285|129844|10000|10000|||100.57|89.20|0.00|0.94|0001A3FE|0|1| +21|2023-10-06T21:21:23.3550000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|2D4A0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|43212|73814|4500|10000|||99.96|90.29|0.00|3.14|0001A3FF|0|1| +38|2023-10-06T21:21:23.3550000-07:00|10FF0003|Gegehi Gehi|005A5A23|43212|73814|4300|10000|23||99.96|90.29|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:23.3550000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +04|2023-10-06T21:21:22.9940000-07:00|40022D75|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||103.47|104.06|0.00|-3.07| +261|2023-10-06T21:21:22.9940000-07:00|Remove|40022D75| +37|2023-10-06T21:21:23.4430000-07:00|10FF0007|Kehabiqo Febiqo|0001A3F4|115719||||||100.54|89.18|0.00|-3.10| +39|2023-10-06T21:21:23.5340000-07:00|10FF0003|Gegehi Gehi|43950|73814|4500|10000|||99.96|90.29|0.00|3.14| +21|2023-10-06T21:21:23.5340000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|38025|90216|10000|10000|||100.08|85.56|0.00|-3.06|0001A400|0|1| +38|2023-10-06T21:21:23.5340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115719|129844|10000|10000|12||100.54|89.19|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:23.5340000-07:00|B7D|Magic Vulnerability Up|0.00|40022486|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:21:23.5340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|38025|90216|10000|10000|18||100.08|85.56|0.00|-3.06|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:23.5340000-07:00|B7D|Magic Vulnerability Up|0.00|40022486|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T21:21:23.5340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106558|129071|7300|10000|8||100.62|87.87|0.00|-3.06|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:23.5340000-07:00|B7D|Magic Vulnerability Up|0.00|40022486|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:21:23.5340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64527|81541|1950|10000|12||100.32|88.68|0.00|-2.91|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:23.5340000-07:00|B7D|Magic Vulnerability Up|0.00|40022486|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T21:21:23.5340000-07:00|10FF0003|Gegehi Gehi|005A5A23|43950|73814|4500|10000|23||99.96|90.29|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:23.5340000-07:00|B7D|Magic Vulnerability Up|0.00|40022486|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T21:21:23.5340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57675|82773|10000|10000|32||100.91|89.43|0.00|-3.04|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:23.5340000-07:00|B7D|Magic Vulnerability Up|0.00|40022486|Zeromus|10FF000A|Dukaro Nezikaro|00|82773|44| +37|2023-10-06T21:21:23.5770000-07:00|10FF000A|Dukaro Nezikaro|0001A3F4|66941||||||100.91|89.43|0.00|-3.04| +37|2023-10-06T21:21:23.6220000-07:00|40022472|Zeromus|0001A3F9|1914684||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:23.6670000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1918167|40478540|10000|10000|||100.00|80.10|0.00|0.00|64527|81541|1950|10000|||100.28|88.54|0.00|-2.91|0001A401|0|1| +37|2023-10-06T21:21:23.7120000-07:00|10FF0001|Sesuga Sapisuga|0001A3F4|115953||||||100.62|87.87|0.00|-3.06| +37|2023-10-06T21:21:23.7120000-07:00|40022472|Zeromus|0001A3FC|1905301||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:23.7120000-07:00|10FF0008|Kokosaze Lulusaze|38927|90216|10000|10000|||100.08|85.56|-0.02|-2.99| +39|2023-10-06T21:21:23.7570000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||102.25|92.04|0.00|-3.05| +24|2023-10-06T21:21:23.7570000-07:00|40022472|Zeromus|DoT|0|1CFC|1914684|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|38025|90216|10000|10000|||100.08|85.56|-0.02|-2.99| +20|2023-10-06T21:21:23.7570000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.930|100.64|87.39|-0.02|-3.04| +38|2023-10-06T21:21:23.7570000-07:00|40022472|Zeromus|005A5A00|1897881|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T21:21:23.4070000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:21:23.8020000-07:00|40022472|Zeromus|0001A3FA|1895771||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:23.8460000-07:00|10FF0008|Kokosaze Lulusaze|0001A3F4|48403||||||100.06|85.59|0.00|-2.41| +37|2023-10-06T21:21:23.8460000-07:00|10FF0004|Buhojaqe Zijaqe|0001A3F8|70889|81541|1950|10000|12||100.24|88.35|0.00|-2.93|1C00|0|0|01|04000129|0|41E76C89|| +36|2023-10-06T21:21:23.8470000-07:00|7468|3| +37|2023-10-06T21:21:23.8900000-07:00|40022472|Zeromus|0001A3FE|1890131||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:23.8900000-07:00|10FF0001|Sesuga Sapisuga|117243|129071|7500|10000|||100.62|87.87|0.00|-3.06| +39|2023-10-06T21:21:23.8900000-07:00|10FF0004|Buhojaqe Zijaqe|71704|81541|2150|10000|||100.24|88.35|0.00|-2.93| +261|2023-10-06T21:21:23.5030000-07:00|Change|10FF0001||||| +261|2023-10-06T21:21:23.5030000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:21:23.9350000-07:00|40022472|Zeromus|0001A3FB|1876037||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:23.9350000-07:00|10FF0006|Wowobora Gogobora|0001A3FB|81809|81809|8200|10000|15||101.49|108.99|0.00|-3.04|1B00|0|0|01|0B25|0|0|| +38|2023-10-06T21:21:23.9350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8200|10000|15||101.49|108.99|0.00|-3.04|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:21:23.9800000-07:00|10FF0003|Gegehi Gehi|0001A3F8|54585|73814|4500|10000|23||99.99|90.37|0.00|1.67|2301|0|0|01|02000129|0|41E65C26|| +39|2023-10-06T21:21:23.9800000-07:00|10FF0007|Kehabiqo Febiqo|117017|129844|10000|10000|||100.48|90.06|0.00|-3.10| +21|2023-10-06T21:21:23.9800000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|722003|2F650000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|1890131|40478540|10000|10000|||100.00|80.10|0.00|0.00|48403|90216|10000|10000|||100.04|85.62|0.00|-1.84|0001A402|0|1| +261|2023-10-06T21:21:23.5030000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T21:21:23.9800000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40022472|Zeromus|450003|19600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1890131|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8200|10000|||101.49|108.99|0.00|-3.04|0001A403|0|1| +38|2023-10-06T21:21:23.9800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8200|10000|15||101.49|108.99|0.00|-3.04|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:23.9800000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:21:24.0250000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8400|10000|||101.49|108.94|0.00|-3.10| +37|2023-10-06T21:21:24.1140000-07:00|10FF000A|Dukaro Nezikaro|0001A3F8|73465|82773|10000|10000|32||100.91|89.43|0.00|-3.04|1E02|0|0|01|05000129|0|41E547AB|| +37|2023-10-06T21:21:24.1140000-07:00|40022472|Zeromus|0001A3FF|1864443||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:24.2030000-07:00|40022472|Zeromus|0001A401|1864294||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:23.8090000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:21:24.2490000-07:00|10FF0007|Kehabiqo Febiqo|0001A3F8|127562|129844|10000|10000|12||100.45|93.05|-0.02|-1.00|1503|0|0|01|01000129|0|41E43748|| +21|2023-10-06T21:21:24.2490000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|712003|1B2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1864294|40478540|10000|10000|||100.00|80.10|0.00|0.00|117017|129844|10000|10000|||100.45|93.05|-0.02|-1.00|0001A404|0|1| +38|2023-10-06T21:21:24.2490000-07:00|40022472|Zeromus|005A5A00|1864294|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:24.2490000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:21:24.2920000-07:00|40022472|Zeromus|0001A400|1862117||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:23.9280000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:21:24.3810000-07:00|10FF0009|Zewo Negiwo|0001A3F8|81177|81177|3163|10000|28||100.51|86.93|0.00|-2.88|1804|0|0|01|06000129|0|41E324D9|| +21|2023-10-06T21:21:24.3810000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|350003|35060000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|1862117|40478540|10000|10000|||100.00|80.10|0.00|0.00|54585|73814|4500|10000|||100.44|92.20|0.00|0.36|0001A405|0|1| +38|2023-10-06T21:21:24.3810000-07:00|10FF0003|Gegehi Gehi|005A5A23|54585|73814|4200|10000|23||100.44|92.20|0.00|0.36|0|0|0|||||||||||||||| +30|2023-10-06T21:21:24.3810000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:21:24.4260000-07:00|10FF0009|Zewo Negiwo|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88| +21|2023-10-06T21:21:24.4260000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40022472|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|1862117|40478540|10000|10000|||100.00|80.10|0.00|0.00|71704|81541|2150|10000|||100.21|88.21|0.00|-2.93|0001A406|0|1| +21|2023-10-06T21:21:24.4260000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1862117|40478540|10000|10000|||100.00|80.10|0.00|0.00|54585|73814|4500|10000|||100.44|92.20|0.00|0.36|0001A407|0|1| +261|2023-10-06T21:21:24.0440000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:21:24.5140000-07:00|10FF0001|Sesuga Sapisuga|0001A3F8|123835|129071|7500|10000|8||100.62|87.87|0.00|-3.06|1305|0|0|01|05000129|0|41E21476|| +37|2023-10-06T21:21:24.6480000-07:00|10FF0008|Kokosaze Lulusaze|0001A3F8|58777|90216|10000|10000|18||100.01|89.10|0.00|0.33|1F06|0|0|01|02000129|0|41E10207|| +37|2023-10-06T21:21:24.7370000-07:00|40022472|Zeromus|0001A402|1849984||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:24.7370000-07:00|40022472|Zeromus|0001A403|1843488||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:24.3480000-07:00|Change|10FF0009||||||||||||| +37|2023-10-06T21:21:24.8710000-07:00|40022472|Zeromus|0001A404|1836533||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:24.4470000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:24.4470000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:21:24.4470000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:21:24.9640000-07:00|40022472|Zeromus|0001A407|1836503||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:24.9640000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|714003|1A6F0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|1836533|40478540|10000|10000|||100.00|80.10|0.00|0.00|123835|129071|7500|10000|||100.62|87.87|0.00|-3.06|0001A408|0|1| +261|2023-10-06T21:21:24.5490000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:21:25.0080000-07:00|10FF000A|Dukaro Nezikaro|74292|82773|10000|10000|||100.91|89.45|0.00|-2.59| +37|2023-10-06T21:21:25.0500000-07:00|40022472|Zeromus|0001A406|1836503|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000767|0|41F00000|| +26|2023-10-06T21:21:25.0500000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +37|2023-10-06T21:21:25.1380000-07:00|40022472|Zeromus|0001A405|1822929||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:21:25.1830000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|175F0000|FC390E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|0001A409|0|8| +22|2023-10-06T21:21:25.1830000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|16CC0000|FC390E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|123835|129071|7500|10000|||100.62|87.87|0.00|-3.06|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|0001A409|1|8| +22|2023-10-06T21:21:25.1830000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|169B0000|FC390E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|71704|81541|1750|10000|||100.17|88.64|0.00|-0.94|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|0001A409|2|8| +22|2023-10-06T21:21:25.1830000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|200004|23B40000|FC390E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|74292|82773|10000|10000|||100.90|89.56|0.00|-2.36|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|0001A409|3|8| +22|2023-10-06T21:21:25.1830000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|4|16A80000|FC390E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|127562|129844|10000|10000|||100.42|94.27|-0.02|-3.12|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|0001A409|4|8| +22|2023-10-06T21:21:25.1830000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|169F0000|FC390E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|58777|90216|10000|10000|||100.09|92.86|0.00|0.06|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|0001A409|5|8| +22|2023-10-06T21:21:25.1830000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|4|175A0000|FC390E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|54585|73814|4200|10000|||100.75|95.09|0.00|-2.07|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|0001A409|6|8| +22|2023-10-06T21:21:25.1830000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|4|17520000|FC390E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81809|81809|8400|10000|||100.07|102.30|0.00|-3.05|81177|81177|3384|10000|||100.51|86.93|0.00|-2.88|0001A409|7|8| +21|2023-10-06T21:21:25.2270000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1822929|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||100.04|101.56|0.00|-3.07|0001A40A|0|1| +21|2023-10-06T21:21:25.2720000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1822929|40478540|10000|10000|||100.00|80.10|0.00|0.00|127562|129844|10000|10000|||100.42|94.39|0.00|3.13|0001A40B|0|1| +21|2023-10-06T21:21:25.2720000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A0F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1822929|40478540|10000|10000|||100.00|80.10|0.00|0.00|74292|82773|10000|10000|||100.83|91.31|0.00|-1.93|0001A40C|0|1| +37|2023-10-06T21:21:25.3160000-07:00|40022472|Zeromus|0001A3FD|1795288||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:25.3160000-07:00|40022D72|Automaton Queen|005A5A00|82193|85668|10000|10000|0||99.02|101.09|0.00|3.10|0|0|0|||| +30|2023-10-06T21:21:25.3160000-07:00|7AE|Summon Order IV|0.00|40022472|Zeromus|40022D72|Automaton Queen|01|85668|40478540| +24|2023-10-06T21:21:25.4060000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D94|127562|129844|10000|10000|||100.42|94.39|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44| +24|2023-10-06T21:21:25.4060000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D85|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44|10FF0004|Buhojaqe Zijaqe|0|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44| +24|2023-10-06T21:21:25.4060000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CDE|74292|82773|10000|10000|||100.83|91.31|0.00|-1.93|10FF0004|Buhojaqe Zijaqe|0|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44| +24|2023-10-06T21:21:25.4060000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D63|58777|90216|10000|10000|||100.15|94.47|0.00|0.05|10FF0004|Buhojaqe Zijaqe|0|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44| +24|2023-10-06T21:21:25.4060000-07:00|10FF0006|Wowobora Gogobora|HoT|798|DA0|81809|81809|8400|10000|||100.01|100.76|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44| +24|2023-10-06T21:21:25.4060000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D54|123835|129071|7500|10000|||100.62|87.87|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44| +24|2023-10-06T21:21:25.4060000-07:00|10FF0003|Gegehi Gehi|HoT|798|CFA|54585|73814|4200|10000|||100.75|96.77|0.00|-0.64|10FF0004|Buhojaqe Zijaqe|0|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44| +24|2023-10-06T21:21:25.4060000-07:00|10FF0009|Zewo Negiwo|HoT|798|1544|81177|81177|2384|10000|||100.51|86.93|0.00|-2.88|10FF0004|Buhojaqe Zijaqe|0|71704|81541|1750|10000|||100.01|90.19|0.00|-0.44| +38|2023-10-06T21:21:25.4060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|12||100.42|94.39|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:25.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:25.4060000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2384|10000|28||100.51|86.93|0.00|-2.88|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:25.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:21:25.4060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62204|90216|10000|10000|18||100.15|94.47|0.00|0.05|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:25.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:21:25.4060000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|15||100.01|100.76|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:25.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:21:25.4060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127247|129071|7500|10000|8||100.62|87.87|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:25.4060000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:21:25.4060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75165|81541|1750|10000|12||100.01|90.19|0.00|-0.44|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:25.4060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:21:25.4060000-07:00|10FF0003|Gegehi Gehi|005A5A23|57907|73814|4200|10000|23||100.75|96.77|0.00|-0.64|0|0|0|||||||||||||||| +26|2023-10-06T21:21:25.4060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:21:25.4060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77586|82773|10000|10000|32||100.83|91.31|0.00|-1.93|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:25.4060000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +21|2023-10-06T21:21:25.4500000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44710003|30620000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|1795288|40478540|10000|10000|||100.00|80.10|0.00|0.00|77586|82773|10000|10000|||100.79|92.06|-0.02|-1.54|0001A40D|0|1| +39|2023-10-06T21:21:25.4930000-07:00|40022D7B|Carbuncle|77698|77698|10000|10000|||101.96|105.93|0.00|-2.85| +261|2023-10-06T21:21:25.1190000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:21:25.5380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|712003|B5D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1795288|40478540|10000|10000|||100.00|80.10|0.00|0.00|127247|129071|7500|10000|||100.62|87.87|0.00|-3.06|0001A40E|0|1| +31|2023-10-06T21:21:25.5380000-07:00|10FF0001||||| +261|2023-10-06T21:21:25.1190000-07:00|Change|40022D7B||||||||| +37|2023-10-06T21:21:25.5820000-07:00|40022472|Zeromus|0001A408|1788521||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:25.6270000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|14970000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|62204|90216|10000|10000|||100.26|96.29|0.00|0.05|73956|77430|10000|10000|||101.82|89.28|0.00|-2.24|0001A40F|0|1| +261|2023-10-06T21:21:25.3290000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:21:25.3290000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:21:25.7620000-07:00|40022472|Zeromus|0001A40A|1788369||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:25.7620000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40022472|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|1788521|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||99.99|98.55|0.00|3.13|0001A410|0|1| +38|2023-10-06T21:21:25.7620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|15||99.99|98.55|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:25.7620000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:21:25.4240000-07:00|Change|10FF0004||||||||| +38|2023-10-06T21:21:25.8060000-07:00|40022DBA||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:21:25.8060000-07:00|40022472|Zeromus|0001A40B|1785406||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:25.8060000-07:00|40022472|Zeromus|0001A40C|1782831||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:25.8060000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|22040000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|1788521|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.44|94.20|0.00|3.09|0001A411|0|1| +38|2023-10-06T21:21:25.8060000-07:00|40022DBA||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +03|2023-10-06T21:21:25.4240000-07:00|40022DBA|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||101.78|99.70|0.00|-3.14| +261|2023-10-06T21:21:25.4240000-07:00|Add|40022DBA||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:25.4240000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:21:25.5220000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:21:25.5220000-07:00|Change|40022DBA||||| +37|2023-10-06T21:21:25.9830000-07:00|40022472|Zeromus|0001A40D|1770445||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:25.6140000-07:00|Change|40022D7B||||||||| +37|2023-10-06T21:21:26.0280000-07:00|10FF0009|Zewo Negiwo|0001A409|81177|81177|2384|10000|28||100.59|86.96|0.00|1.55|1800|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:21:26.0280000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:21:26.0730000-07:00|40022472|Zeromus|0001A40E|1767536||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:25.7080000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:21:26.1610000-07:00|10FF0001|Sesuga Sapisuga|0001A409|129071|129071|7500|10000|8||100.62|87.87|0.00|-3.06|1301|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:21:26.1610000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:21:26.1610000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40022472|Zeromus|720003|12A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1767536|40478540|10000|10000|||100.00|80.10|0.00|0.00|57907|73814|4200|10000|||100.45|100.16|-0.02|-3.12|0001A412|0|1| +21|2023-10-06T21:21:26.2060000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|8A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1767536|40478540|10000|10000|||100.00|80.10|0.00|0.00|62204|90216|10000|10000|||100.69|101.34|0.00|0.09|0001A413|0|1| +21|2023-10-06T21:21:26.2060000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|F070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1767536|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||100.62|87.87|0.00|-3.06|0001A414|0|1| +37|2023-10-06T21:21:26.2960000-07:00|10FF0004|Buhojaqe Zijaqe|0001A409|80952|81541|1750|10000|12||101.27|96.39|0.00|0.19|1C02|0|0|01|06000096|0|41700000|| +26|2023-10-06T21:21:26.2960000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +39|2023-10-06T21:21:26.2960000-07:00|40022D72|Automaton Queen|82193|85668|10000|10000|||99.02|101.09|0.00|3.10| +21|2023-10-06T21:21:26.3410000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|77586|82773|10000|10000|||100.82|95.19|0.00|-1.63|77586|82773|10000|10000|||100.82|95.19|0.00|-1.63|0001A415|0|1| +38|2023-10-06T21:21:26.3410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77586|82773|10000|10000|32||100.82|95.19|0.00|-1.63|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:26.3410000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|82773|82773| +26|2023-10-06T21:21:26.3410000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:21:26.3860000-07:00|40022DBB||005A5A00|75608|78475|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:21:26.3860000-07:00|40022DBB||005A5A00|75608|78475|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:21:26.4300000-07:00|40022472|Zeromus|0001A411|1758828||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:26.4300000-07:00|10FF000A|Dukaro Nezikaro|0001A409|82773|82773|10000|10000|32||100.85|96.05|0.00|-1.54|1E03|0|0|03|070007A2|05|C1F00000|||||||||| +26|2023-10-06T21:21:26.4300000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:21:26.4300000-07:00|10FF0008|Kokosaze Lulusaze|0001A40F|67475||||||100.84|102.56|0.00|0.12| +35|2023-10-06T21:21:26.4750000-07:00|40022471||40022472|Zeromus|0000|0000|0109|||| +21|2023-10-06T21:21:26.4750000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C724003|38460000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|1767536|40478540|10000|10000|||100.00|80.10|0.00|0.00|62204|90216|10000|10000|||100.84|102.56|0.00|0.12|0001A416|0|1| +21|2023-10-06T21:21:26.4750000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.42|94.14|0.00|-3.00|1767536|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A417|0|1| +261|2023-10-06T21:21:26.0530000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:21:26.0530000-07:00|Change|40022488||||||||| +261|2023-10-06T21:21:26.0530000-07:00|Change|40022489||||||||| +257|2023-10-06T21:21:26.4750000-07:00|80034E7C|00020001|03|00|0000| +261|2023-10-06T21:21:26.0530000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:21:26.0530000-07:00|Change|4002248C||||||||| +261|2023-10-06T21:21:26.0530000-07:00|Change|40022486||||||||| +261|2023-10-06T21:21:26.0530000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:21:26.0530000-07:00|Change|40022490||||||||| +00|2023-10-06T21:21:26.0000000-07:00|0044|Zeromus|Oh, to look upon such splendor once more...| +261|2023-10-06T21:21:26.0530000-07:00|Change|40022487||||||||| +261|2023-10-06T21:21:26.0530000-07:00|Change|4002248B||||||||| +39|2023-10-06T21:21:26.5190000-07:00|10FF0003|Gegehi Gehi|58645|73814|4400|10000|||100.45|100.14|0.00|-3.12| +21|2023-10-06T21:21:26.5190000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8400|10000|||99.99|97.96|0.00|-1.53|81809|81809|8400|10000|||99.99|97.96|0.00|-1.53|0001A418|0|1| +37|2023-10-06T21:21:26.5630000-07:00|10FF0007|Kehabiqo Febiqo|0001A409|129844|129844|10000|10000|12||100.40|94.15|0.00|-2.91|1504|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:21:26.5630000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +20|2023-10-06T21:21:26.5630000-07:00|40022472|Zeromus|8B78|Chasmic Nails|40022472|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:26.5630000-07:00|40022486|Zeromus|8B7A|Chasmic Nails|40022486|Zeromus|8.100|100.00|80.10|0.00|-1.40| +20|2023-10-06T21:21:26.5630000-07:00|40022487|Zeromus|8B28|unknown_8b28|40022487|Zeromus|2.700|100.00|80.10|0.00|-1.40| +20|2023-10-06T21:21:26.5630000-07:00|40022488|Zeromus|8B7C|Chasmic Nails|40022488|Zeromus|9.500|100.00|80.10|0.00|-0.70| +20|2023-10-06T21:21:26.5630000-07:00|40022489|Zeromus|8B2A|unknown_8b2a|40022489|Zeromus|4.700|100.00|80.10|0.00|-0.70| +20|2023-10-06T21:21:26.5630000-07:00|4002248A|Zeromus|8B7D|Chasmic Nails|4002248A|Zeromus|10.200|100.00|80.10|0.00|1.40| +20|2023-10-06T21:21:26.5630000-07:00|4002248B|Zeromus|8B2B|unknown_8b2b|4002248B|Zeromus|5.700|100.00|80.10|0.00|1.40| +20|2023-10-06T21:21:26.5630000-07:00|4002248C|Zeromus|8B7B|Chasmic Nails|4002248C|Zeromus|8.800|100.00|80.10|0.00|0.70| +20|2023-10-06T21:21:26.5630000-07:00|4002248D|Zeromus|8B29|unknown_8b29|4002248D|Zeromus|3.700|100.00|80.10|0.00|0.70| +20|2023-10-06T21:21:26.5630000-07:00|4002248E|Zeromus|8B79|Chasmic Nails|4002248E|Zeromus|7.400|100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:26.5630000-07:00|4002248F|Zeromus|8B27|unknown_8b27|4002248F|Zeromus|1.200|100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:26.1690000-07:00|Change|40022472||||||| +20|2023-10-06T21:21:26.5630000-07:00|40022490|Zeromus|8B82|Dimensional Surge|40022490|Zeromus|8.700|80.10|100.00|0.00|1.57| +261|2023-10-06T21:21:26.1690000-07:00|Change|4002248E||||||||||||||||| +03|2023-10-06T21:21:26.1690000-07:00|40022DBB|Bunshin|00|5A|10FF000A|00||8313|10897|75608|78475|10000|10000|||99.11|97.88|0.00|1.60| +261|2023-10-06T21:21:26.1690000-07:00|Add|40022DBB||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:26.2690000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:21:26.2690000-07:00|Change|40022DBB||| +37|2023-10-06T21:21:26.6970000-07:00|10FF0008|Kokosaze Lulusaze|0001A409|73266|90216|10000|10000|18||100.89|103.02|0.00|-3.10|1F05|0|0|01|06000096|0|41700000|| +26|2023-10-06T21:21:26.6970000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +39|2023-10-06T21:21:26.6970000-07:00|10FF0008|Kokosaze Lulusaze|74168|90216|10000|10000|||100.89|103.02|0.00|-3.10| +261|2023-10-06T21:21:26.2690000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:21:26.2690000-07:00|Change|10FF0009||||||||| +24|2023-10-06T21:21:26.7420000-07:00|40022472|Zeromus|DoT|0|20D0|1758828|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|74168|90216|10000|10000|||100.91|103.20|0.00|-3.10| +38|2023-10-06T21:21:26.7420000-07:00|40022472|Zeromus|005A5A00|1750428|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:21:26.7870000-07:00|10FF0006|Wowobora Gogobora|0001A410|81809|81809|8400|10000|15||99.97|99.21|0.00|-0.72|1B00|0|0|01|03000AA5|0|0|| +37|2023-10-06T21:21:26.7870000-07:00|40022472|Zeromus|0001A414|1746581||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:26.7870000-07:00|40022472|Zeromus|0001A412|1741811||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:26.7870000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||101.82|89.28|0.00|-0.07| +21|2023-10-06T21:21:26.7870000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1758828|40478540|10000|10000|||100.00|80.10|0.00|0.00|80952|81541|1750|10000|||101.97|98.42|0.00|0.29|0001A419|0|1| +38|2023-10-06T21:21:26.7870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|15||99.97|99.21|0.00|-0.72|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:21:26.3680000-07:00|Change|40022DBA||| +37|2023-10-06T21:21:26.8320000-07:00|10FF0003|Gegehi Gehi|0001A409|64623|73814|4400|10000|23||100.45|99.97|0.00|-3.12|2306|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:21:26.8320000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +21|2023-10-06T21:21:26.8320000-07:00|10FF0009|Zewo Negiwo|1D8A|Lucid Dreaming|10FF0009|Zewo Negiwo|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|2384|10000|||100.03|92.72|0.00|0.24|81177|81177|2384|10000|||100.03|92.72|0.00|0.24|0001A41A|0|1| +39|2023-10-06T21:21:26.8770000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7700|10000|||100.58|88.07|0.00|-1.74| +39|2023-10-06T21:21:26.8770000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1950|10000|||102.27|99.09|0.00|0.44| +36|2023-10-06T21:21:26.8770000-07:00|7530|3| +261|2023-10-06T21:21:26.4650000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:21:26.9220000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40022472|Zeromus|720003|18CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1741811|40478540|10000|10000|||100.00|80.10|0.00|0.00|64623|73814|4400|10000|||100.45|99.89|0.00|-3.12|0001A41B|0|1| +37|2023-10-06T21:21:26.9660000-07:00|10FF0006|Wowobora Gogobora|0001A409|81809|81809|8400|10000|15||99.94|100.59|0.00|-0.18|1B07|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:21:26.9660000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:21:26.9660000-07:00|40022472|Zeromus|0001A413|1739598||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:26.9660000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.85|95.72|-0.02|-0.80| +39|2023-10-06T21:21:27.0100000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8600|10000|||99.94|100.59|0.00|-0.18| +20|2023-10-06T21:21:27.0100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|102.53|99.70|0.00|0.44| +261|2023-10-06T21:21:26.5660000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|4002248B||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|40022490||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|40022489||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|4002248A||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|40022488||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|40022487||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:21:26.5660000-07:00|Change|40022486||||||||||||| +21|2023-10-06T21:21:27.0550000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|149A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1739598|40478540|10000|10000|||100.00|80.10|0.00|0.00|74168|90216|10000|10000|||100.94|103.41|0.00|-3.10|0001A41C|0|1| +37|2023-10-06T21:21:27.0990000-07:00|10FF000A|Dukaro Nezikaro|0001A415|82773|82773|10000|10000|32||100.70|97.87|-0.02|-1.41|1E00|0|0|02|070007A2|05|41F00000|||||| +21|2023-10-06T21:21:27.0990000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|712003|1A3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1739598|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.77|95.98|0.00|-0.60|0001A41D|0|1| +38|2023-10-06T21:21:27.0990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||100.70|97.87|-0.02|-1.41|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:26.7940000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:21:27.1440000-07:00|10FF0006|Wowobora Gogobora|0001A418|81809|81809|8600|10000|15||100.13|101.83|0.00|0.02|1B00|0|0|01|080004B4|0|41A80000|| +26|2023-10-06T21:21:27.1440000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:21:27.2770000-07:00|40022472|Zeromus|0001A416|1725192||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:27.2770000-07:00|10FF0007|Kehabiqo Febiqo|0001A417|129844|129844|10000|10000|1||99.71|96.17|0.00|3.12|1500|0|0|0| +37|2023-10-06T21:21:27.3230000-07:00|40022472|Zeromus|0001A419|1725040||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:27.4120000-07:00|10FF0009|Zewo Negiwo|81177|81177|2605|10000|||100.37|94.04|-0.02|0.31| +261|2023-10-06T21:21:27.0200000-07:00|Change|40022DBB||||| +37|2023-10-06T21:21:27.4560000-07:00|10FF0009|Zewo Negiwo|0001A41A|81177|81177|2605|10000|28||100.37|94.04|-0.02|0.31|1800|0|0|01|080004B4|0|41A80000|| +26|2023-10-06T21:21:27.4560000-07:00|4B4|Lucid Dreaming|21.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:21:27.4560000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35710003|1DB60000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|1725040|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||100.21|90.22|0.00|-1.74|0001A41E|0|1| +21|2023-10-06T21:21:27.4560000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|CF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1725040|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||98.36|98.65|0.00|-1.30|0001A41F|0|1| +37|2023-10-06T21:21:27.5000000-07:00|40022472|Zeromus|0001A41B|1718689||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:27.5890000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40022472|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|1718689|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||96.76|98.76|0.00|-1.58|0001A420|0|1| +38|2023-10-06T21:21:27.5890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||96.76|98.76|0.00|-1.58|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:27.5890000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:21:27.2470000-07:00|Change|10FF0009||||||||||| +21|2023-10-06T21:21:27.6790000-07:00|40022DBB|Bunshin|64AF|Phantom Kamaitachi|40022472|Zeromus|356003|74660000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|1718689|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||99.11|97.88|0.00|1.60|0001A421|0|1| +261|2023-10-06T21:21:27.3370000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:21:27.3370000-07:00|Change|40022DBB||||||||| +37|2023-10-06T21:21:27.7240000-07:00|40022472|Zeromus|0001A41D|1711973||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:27.7240000-07:00|40022472|Zeromus|0001A41C|1706699||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:27.7240000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40022472|Zeromus|752003|417B0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|1718689|40478540|10000|10000|||100.00|80.10|0.00|0.00|64623|73814|4400|10000|||99.83|99.86|0.00|-3.13|0001A422|0|1| +261|2023-10-06T21:21:27.4360000-07:00|Change|40022D7B||||||||| +21|2023-10-06T21:21:27.8130000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1706699|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||100.02|91.31|0.00|-1.74|0001A423|0|1| +31|2023-10-06T21:21:27.8130000-07:00|10FF0001||||| +21|2023-10-06T21:21:27.8570000-07:00|40022DBA|Emerald Garuda|64FE|Aerial Blast|40022472|Zeromus|352003|9FDA0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|1706699|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.78|99.70|0.00|-3.14|0001A424|0|1| +21|2023-10-06T21:21:27.9020000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1706699|40478540|10000|10000|||100.00|80.10|0.00|0.00|64623|73814|4400|10000|||99.04|99.99|0.00|3.07|0001A425|0|1| +21|2023-10-06T21:21:27.9470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|319A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|1706699|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1950|10000|||102.01|100.66|0.00|-3.04|0001A426|0|1| +261|2023-10-06T21:21:27.5270000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:21:27.5270000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:21:27.9900000-07:00|40022472|Zeromus|0001A41F|1703387||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:27.9900000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||94.82|97.72|0.00|-2.77| +21|2023-10-06T21:21:28.0350000-07:00|4002248F|Zeromus|8B27|unknown_8b27|4002248F|Zeromus|1B|8B278000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.00|44|44|0|10000|||100.00|80.10|0.00|0.00|0001A427|0|1| +261|2023-10-06T21:21:27.7180000-07:00|Change|4002248F||||||||||||| +261|2023-10-06T21:21:27.8290000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:21:27.9470000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:21:28.2150000-07:00|40022472|Zeromus|0001A41E|1695781||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:28.2150000-07:00|10FF0001|Sesuga Sapisuga|0001A41E|129071|129071|8700|10000|8||100.27|89.87|0.00|-1.74|1300|0|0|0| +24|2023-10-06T21:21:28.2150000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|EE8|74168|90216|10000|10000|||98.64|106.03|0.00|-0.62|10FF0009|Zewo Negiwo|0|81177|81177|2605|10000|||106.28|99.95|0.00|0.96| +38|2023-10-06T21:21:28.2150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77984|90216|10000|10000|18||98.64|106.03|0.00|-0.62|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:21:28.2600000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|E2A|82773|82773|10000|10000|||94.03|96.94|0.00|-2.42|10FF0009|Zewo Negiwo|0|81177|81177|2605|10000|||106.28|99.95|0.00|0.96| +21|2023-10-06T21:21:28.2600000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F710003|32150000|143E|340000|4|178B8000|11B|2A8000|0|0|0|0|0|0|0|0|1703387|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.47|95.27|0.00|-2.37|0001A428|0|1| +38|2023-10-06T21:21:28.2600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||94.03|96.94|0.00|-2.42|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:21:28.3030000-07:00|10FF0003|Gegehi Gehi|HoT|0|EE4|64623|73814|4400|10000|||98.57|100.01|0.00|3.07|40022488|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|-0.70| +38|2023-10-06T21:21:28.3030000-07:00|10FF0003|Gegehi Gehi|005A5A23|68435|73814|4400|10000|23||98.57|100.01|0.00|3.07|0|0|0|||||||||||||||| +37|2023-10-06T21:21:28.3470000-07:00|40022472|Zeromus|0001A423|1694040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:28.3470000-07:00|40022472|Zeromus|0001A422|1677277||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:27.9470000-07:00|Change|10FF0001||||||| +24|2023-10-06T21:21:28.3930000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D35|129844|129844|10000|10000|||100.45|95.31|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +24|2023-10-06T21:21:28.3930000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D34|129071|129071|8700|10000|||100.29|89.74|0.00|-1.74|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +24|2023-10-06T21:21:28.3930000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D03|81809|81809|8600|10000|||99.57|98.83|0.00|2.79|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +24|2023-10-06T21:21:28.3930000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CDD|82773|82773|10000|10000|||93.99|96.89|0.00|-2.34|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +24|2023-10-06T21:21:28.3930000-07:00|10FF0003|Gegehi Gehi|HoT|798|D5E|68435|73814|4400|10000|||97.87|99.75|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +24|2023-10-06T21:21:28.3930000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D5C|81541|81541|1550|10000|||102.73|100.64|0.00|2.86|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +24|2023-10-06T21:21:28.3930000-07:00|10FF0009|Zewo Negiwo|HoT|798|15B8|81177|81177|2605|10000|||106.97|100.40|0.00|0.97|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +24|2023-10-06T21:21:28.3930000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CE0|77984|90216|10000|10000|||98.00|106.43|0.00|-0.65|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +261|2023-10-06T21:21:28.0650000-07:00|Change|40022D72||||||||| +24|2023-10-06T21:21:28.3930000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D89|81541|81541|1550|10000|||102.73|100.64|0.00|2.86|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||102.73|100.64|0.00|2.86| +21|2023-10-06T21:21:28.3930000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1677277|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||99.57|98.83|0.00|2.79|0001A429|0|1| +38|2023-10-06T21:21:28.3930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||100.45|95.31|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:28.3930000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2605|10000|28||106.97|100.40|0.00|0.97|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:21:28.3930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81280|90216|10000|10000|18||98.00|106.43|0.00|-0.65|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:28.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:21:28.3930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|15||99.57|98.83|0.00|2.79|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:21:28.3930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|8||100.29|89.74|0.00|-1.74|0|0|0||||||||||||||||||| +26|2023-10-06T21:21:28.3930000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:21:28.3930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|12||102.73|100.64|0.00|2.86|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:28.3930000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:21:28.3930000-07:00|10FF0003|Gegehi Gehi|005A5A23|71857|73814|4400|10000|23||97.87|99.75|0.00|-3.11|0|0|0|||||||||||||||| +26|2023-10-06T21:21:28.3930000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:21:28.3930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||93.99|96.89|0.00|-2.34|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.3930000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:21:28.4360000-07:00|40022472|Zeromus|0001A425|1677250||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:28.4810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D9C|129844|129844|10000|10000|||100.45|95.31|0.00|-3.11|40022488|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|-0.70| +24|2023-10-06T21:21:28.4810000-07:00|10FF0006|Wowobora Gogobora|HoT|0|E56|81809|81809|8600|10000|||99.57|98.83|0.00|2.79|10FF0006|Wowobora Gogobora|0|81809|81809|8600|10000|||99.57|98.83|0.00|2.79| +20|2023-10-06T21:21:28.4810000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|2.982|99.57|98.83|0.00|2.79| +38|2023-10-06T21:21:28.4810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||100.45|95.31|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:28.4810000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9150|10000|15||99.57|98.83|0.00|2.79|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:28.4810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|12||102.73|100.64|0.00|2.86|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:28.4810000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:21:28.1790000-07:00|Change|10FF0006||||||||||||||||||||||| +24|2023-10-06T21:21:28.5260000-07:00|10FF0009|Zewo Negiwo|HoT|0|E42|81177|81177|2605|10000|||107.64|100.67|0.00|1.15|10FF0009|Zewo Negiwo|0|81177|81177|2605|10000|||107.64|100.67|0.00|1.15| +38|2023-10-06T21:21:28.5260000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3155|10000|28||107.64|100.67|0.00|1.15|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:21:28.5700000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|DDD|129071|129071|8700|10000|||100.35|89.43|0.00|-1.74|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1550|10000|||103.56|100.62|0.00|2.41| +38|2023-10-06T21:21:28.5700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|8||100.35|89.43|0.00|-1.74|0|0|0||||||||||||||||||| +21|2023-10-06T21:21:28.6600000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1677250|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.45|95.32|-0.02|-2.68|0001A42A|0|1| +261|2023-10-06T21:21:28.2780000-07:00|Remove|40022D76| +261|2023-10-06T21:21:28.2780000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:21:28.7490000-07:00|40022472|Zeromus|0001A426|1664552||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:28.3730000-07:00|Change|10FF0003||||||||| +20|2023-10-06T21:21:28.7930000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|108.46|100.95|0.00|1.44| +22|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0004|Buhojaqe Zijaqe|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|0001A42B|0|8| +22|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0009|Zewo Negiwo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3155|10000|||108.46|100.95|0.00|1.44|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|0001A42B|1|8| +22|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0006|Wowobora Gogobora|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9150|10000|||99.34|98.34|0.00|3.05|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|0001A42B|2|8| +22|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0007|Kehabiqo Febiqo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.45|95.32|0.00|-2.41|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|0001A42B|3|8| +22|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0008|Kokosaze Lulusaze|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81280|90216|10000|10000|||95.86|107.48|0.00|-0.89|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|0001A42B|4|8| +22|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0001|Sesuga Sapisuga|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8700|10000|||100.38|89.24|0.00|-1.76|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|0001A42B|5|8| +22|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0003|Gegehi Gehi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|71857|73814|4400|10000|||95.42|98.98|0.00|-2.73|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|0001A42B|6|8| +22|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF000A|Dukaro Nezikaro|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||93.13|96.54|0.00|-2.13|81541|81541|1550|10000|||105.16|100.79|0.00|1.91|0001A42B|7|8| +38|2023-10-06T21:21:28.8380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||100.45|95.32|0.00|-2.41|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.8380000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +26|2023-10-06T21:21:28.8380000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +38|2023-10-06T21:21:28.8380000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3155|10000|28||108.46|100.95|0.00|1.44|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.8380000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +26|2023-10-06T21:21:28.8380000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|1E|81177|81541| +38|2023-10-06T21:21:28.8380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81280|90216|10000|10000|18||95.86|107.48|0.00|-0.89|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.8380000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +26|2023-10-06T21:21:28.8380000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +38|2023-10-06T21:21:28.8380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9150|10000|15||99.34|98.34|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.8380000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +26|2023-10-06T21:21:28.8380000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +38|2023-10-06T21:21:28.8380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|8||100.38|89.24|0.00|-1.76|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:28.8380000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +26|2023-10-06T21:21:28.8380000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +38|2023-10-06T21:21:28.8380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|12||105.16|100.79|0.00|1.91|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.8380000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:21:28.8380000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +38|2023-10-06T21:21:28.8380000-07:00|10FF0003|Gegehi Gehi|005A5A23|71857|73814|4400|10000|23||95.42|98.98|0.00|-2.73|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:28.8380000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +26|2023-10-06T21:21:28.8380000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +38|2023-10-06T21:21:28.8380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||93.13|96.54|0.00|-2.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:28.8380000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +26|2023-10-06T21:21:28.8380000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|82773|81541| +21|2023-10-06T21:21:28.8830000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|ADA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1664552|40478540|10000|10000|||100.00|80.10|0.00|0.00|81280|90216|10000|10000|||95.86|107.48|0.00|-0.89|0001A42C|0|1| +37|2023-10-06T21:21:28.9270000-07:00|40022472|Zeromus|0001A429|1664365||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:28.9270000-07:00|10FF0006|Wowobora Gogobora|0001A429|81809|81809|9150|10000|15||99.29|98.22|-0.01|3.09|1B00|0|0|02|09000A97|0|C1A00000|||||| +21|2023-10-06T21:21:28.9270000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|22920000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|71857|73814|4400|10000|||94.62|98.74|-0.02|-2.59|73956|77430|10000|10000|||102.98|98.37|0.00|-0.84|0001A42D|0|1| +21|2023-10-06T21:21:28.9710000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|720003|5E950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1664552|40478540|10000|10000|||100.00|80.10|0.00|0.00|81280|90216|10000|10000|||95.02|107.76|0.00|-1.16|0001A42E|0|1| +261|2023-10-06T21:21:28.6830000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:21:29.1490000-07:00|40022472|Zeromus|0001A424|1623443||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:28.7970000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:21:29.1940000-07:00|40022472|Zeromus|0001A42A|1620525||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:29.1940000-07:00|10FF0007|Kehabiqo Febiqo|0001A42A|129844|129844|10000|10000|1||99.57|92.60|0.00|-2.56|1500|0|0|02|04000A97|0|C1A00000|||||| +261|2023-10-06T21:21:28.7970000-07:00|Change|10FF0009||||||||||||||||||||||||||| +37|2023-10-06T21:21:29.2390000-07:00|40022472|Zeromus|0001A421|1590727||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:29.2390000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40022472|Zeromus|37750003|31E90000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|1623443|40478540|10000|10000|||100.00|80.10|0.00|0.00|71857|73814|4400|10000|||92.52|97.69|0.00|-2.16|0001A42F|0|1| +261|2023-10-06T21:21:29.0280000-07:00|Remove|40022D7B| +04|2023-10-06T21:21:29.0280000-07:00|40022D7B|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||101.37|101.95|0.00|-3.10| +37|2023-10-06T21:21:29.4630000-07:00|10FF0004|Buhojaqe Zijaqe|0001A42B|81541|81541|1550|10000|12||107.52|101.10|0.00|1.49|1C00|0|0|02|05000A97|0|41A00000|||||| +38|2023-10-06T21:21:29.4630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|12||107.52|101.10|0.00|1.49|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:21:29.1380000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:21:29.5520000-07:00|10FF0003|Gegehi Gehi|72595|73814|4600|10000|||91.59|95.24|0.00|2.63| +21|2023-10-06T21:21:29.5520000-07:00|40022487|Zeromus|8B28|unknown_8b28|40022487|Zeromus|1B|8B288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-1.40|44|44|0|10000|||100.00|80.10|0.00|-1.40|0001A430|0|1| +261|2023-10-06T21:21:29.2520000-07:00|Change|40022487||||||||||||| +37|2023-10-06T21:21:29.5960000-07:00|10FF0009|Zewo Negiwo|0001A42B|81177|81177|3155|10000|28||109.51|101.30|0.00|-2.72|1801|0|0|02|09000A97|0|41A00000|||||| +38|2023-10-06T21:21:29.5960000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3155|10000|28||109.51|101.30|0.00|-2.72|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:29.5960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81280|90216|10000|10000|18||93.19|108.38|0.00|2.91|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:29.5960000-07:00|32|Sprint|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|90216|90216| +37|2023-10-06T21:21:29.6410000-07:00|40022472|Zeromus|0001A42C|1587949||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:29.6410000-07:00|10FF0008|Kokosaze Lulusaze|0001A42C|81280|90216|10000|10000|18||93.19|108.38|0.00|2.91|1F00|0|0|02|07000A97|0|C1A00000|||||| +21|2023-10-06T21:21:29.6410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|B050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1590727|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||90.49|91.86|0.00|-2.86|0001A431|0|1| +37|2023-10-06T21:21:29.7300000-07:00|10FF0003|Gegehi Gehi|0001A42D|73814|73814|4600|10000|23||91.53|94.41|0.00|2.76|2300|0|0|02|05000A97|0|C1A00000|||||| +37|2023-10-06T21:21:29.7300000-07:00|10FF0006|Wowobora Gogobora|0001A42B|81809|81809|9150|10000|15||99.26|98.16|0.00|3.10|1B02|0|0|02|09000A97|0|41A00000|||||| +39|2023-10-06T21:21:29.7300000-07:00|10FF0008|Kokosaze Lulusaze|82182|90216|10000|10000|||92.67|108.97|0.00|-2.92| +21|2023-10-06T21:21:29.7300000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|24DD0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|1587949|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|3155|10000|||109.51|101.30|0.00|-2.72|0001A432|0|1| +38|2023-10-06T21:21:29.7300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9150|10000|15||99.26|98.16|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:29.3560000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:21:29.3560000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:21:29.7750000-07:00|40022472|Zeromus|0001A428|1575128||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:29.7750000-07:00|10FF0007|Kehabiqo Febiqo|0001A428|129844|129844|10000|10000|1||96.82|89.69|0.00|-2.75|1500|0|0|02|04000A97|0|C1A00000|||||| +39|2023-10-06T21:21:29.7750000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||103.04|98.82|0.00|-1.93| +24|2023-10-06T21:21:29.7750000-07:00|40022472|Zeromus|DoT|0|1756|1587949|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|82182|90216|10000|10000|||91.89|109.93|0.00|-2.17| +38|2023-10-06T21:21:29.7750000-07:00|40022472|Zeromus|005A5A00|1569154|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:21:29.8640000-07:00|10FF0007|Kehabiqo Febiqo|0001A42B|129844|129844|10000|10000|1||96.18|89.37|0.00|-2.76|1503|0|0|02|04000A97|0|41A00000|||||| +37|2023-10-06T21:21:29.8640000-07:00|40022472|Zeromus|0001A42F|1556377||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:29.8640000-07:00|10FF0003|Gegehi Gehi|0001A42F|73814|73814|4600|10000|23||91.55|92.78|0.00|2.96|2300|0|0|02|05000A97|0|C1A00000|||||| +39|2023-10-06T21:21:29.8640000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8900|10000|||100.91|88.17|0.00|-2.97| +261|2023-10-06T21:21:29.4570000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:21:29.8640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||96.18|89.37|0.00|-2.76|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:21:29.9080000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1750|10000|||110.38|102.66|0.00|0.95| +21|2023-10-06T21:21:29.9530000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|26EB0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|1556377|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||100.91|88.17|0.00|-2.97|0001A433|0|1| +38|2023-10-06T21:21:29.9530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|8||100.91|88.17|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:29.9530000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:21:29.9530000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:21:29.5560000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:21:29.9970000-07:00|10FF0008|Kokosaze Lulusaze|0001A42B|82182|90216|10000|10000|18||90.56|111.86|0.00|-1.19|1F04|0|0|02|07000A97|0|41A00000|||||| +39|2023-10-06T21:21:29.9970000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||95.39|88.98|0.00|-2.78| +39|2023-10-06T21:21:29.9970000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9350|10000|||99.26|98.16|0.00|3.10| +38|2023-10-06T21:21:29.9970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|82182|90216|10000|10000|18||90.56|111.86|0.00|-1.19|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:21:29.5560000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:21:29.6500000-07:00|Change|40022DBB||||||| +261|2023-10-06T21:21:29.7460000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:21:30.0870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1556377|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||102.49|87.90|0.00|-2.97|0001A434|0|1| +31|2023-10-06T21:21:30.0870000-07:00|10FF0001||||| +37|2023-10-06T21:21:30.1320000-07:00|40022472|Zeromus|0001A42E|1532164||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:30.1320000-07:00|10FF0001|Sesuga Sapisuga|0001A42B|129071|129071|8900|10000|8||102.49|87.90|0.00|-2.97|1305|0|0|04|06000A97|0|41A00000|||||||||||||| +21|2023-10-06T21:21:30.1320000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40022472|Zeromus|714003|1F0A0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|1556377|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||90.42|90.74|0.00|-3.06|0001A435|0|1| +38|2023-10-06T21:21:30.1320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|8||102.49|87.90|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:30.1320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||90.42|90.74|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:30.1320000-07:00|7A2|Bunshin|26.92|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|82773|82773| +261|2023-10-06T21:21:29.8670000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:21:30.1770000-07:00|40022472|Zeromus|0001A431|1529343||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:30.1770000-07:00|10FF000A|Dukaro Nezikaro|0001A431|82773|82773|10000|10000|32||90.38|90.44|-0.02|2.28|1E00|0|0|02|08000A97|0|C1A00000|||||| +21|2023-10-06T21:21:30.2210000-07:00|40022DBB|Bunshin|4405|Spinning Edge|40022472|Zeromus|716003|1F710000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|1532164|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||89.89|88.11|0.00|2.24|0001A436|0|1| +37|2023-10-06T21:21:30.2660000-07:00|10FF0003|Gegehi Gehi|0001A42B|73814|73814|4600|10000|23||92.34|90.19|-0.02|2.88|2306|0|0|02|05000A97|0|41A00000|||||| +38|2023-10-06T21:21:30.2660000-07:00|40022472|Zeromus|005A5A00|1529343|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:30.2660000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40022472|Zeromus|00|40478540|81809| +38|2023-10-06T21:21:30.2660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4600|10000|23||92.34|90.19|-0.02|2.88|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:21:29.8670000-07:00|Change|40022DBB||||||||| +261|2023-10-06T21:21:29.8670000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:21:29.9830000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:21:30.3990000-07:00|10FF000A|Dukaro Nezikaro|0001A42B|82773|82773|10000|10000|32||90.24|89.60|0.00|2.45|1E07|0|0|02|08000A97|0|41A00000|||||| +39|2023-10-06T21:21:30.3990000-07:00|10FF0009|Zewo Negiwo|81177|81177|2976|10000|||109.51|101.30|0.00|-2.72| +38|2023-10-06T21:21:30.3990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||90.24|89.60|0.00|2.45|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:30.5330000-07:00|40022472|Zeromus|0001A433|1519380||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:30.5330000-07:00|10FF0001|Sesuga Sapisuga|0001A433|129071|129071|8900|10000|8||103.89|86.43|0.00|-2.78|1300|0|0|02|0800076E|03|41F00000|||||| +37|2023-10-06T21:21:30.5330000-07:00|40022472|Zeromus|0001A435|1511434||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:30.2150000-07:00|Change|40022D58||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|40022485||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|40022481||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|40022484||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|40022480||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|40022483||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|4002247E||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|4002247F||||||||| +21|2023-10-06T21:21:30.5330000-07:00|4002248D|Zeromus|8B29|unknown_8b29|4002248D|Zeromus|1B|8B298000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.70|44|44|0|10000|||100.00|80.10|0.00|0.70|0001A437|0|1| +38|2023-10-06T21:21:30.5330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|8||103.89|86.43|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|40022482||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|4002248D||||||||||||| +261|2023-10-06T21:21:30.2150000-07:00|Change|10FF0008||||||||| +20|2023-10-06T21:21:30.5780000-07:00|4002247E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|109.55|118.21|0.00|0.00| +20|2023-10-06T21:21:30.5780000-07:00|4002247F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|108.10|100.03|0.00|0.00| +20|2023-10-06T21:21:30.5780000-07:00|40022480|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.18|91.56|0.00|0.00| +20|2023-10-06T21:21:30.5780000-07:00|40022481|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.11|113.56|0.00|0.00| +20|2023-10-06T21:21:30.5780000-07:00|40022482|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.82|100.53|0.00|0.00| +20|2023-10-06T21:21:30.5780000-07:00|40022483|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|112.77|82.65|0.00|0.00| +20|2023-10-06T21:21:30.5780000-07:00|40022484|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.78|85.41|0.00|0.00| +20|2023-10-06T21:21:30.5780000-07:00|40022485|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.56|87.11|0.00|0.00| +20|2023-10-06T21:21:30.5780000-07:00|4002248F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.07|85.89|0.00|0.00| +38|2023-10-06T21:21:30.5780000-07:00|40022472|Zeromus|005A5A00|1511434|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:21:30.5780000-07:00|74F|Dia|0.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +37|2023-10-06T21:21:30.6230000-07:00|40022472|Zeromus|0001A434|1509676||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:30.6230000-07:00|40022472|Zeromus|0001A436|1501627||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:30.7120000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|394E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1501627|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.55|87.38|0.00|2.97|0001A438|0|1| +21|2023-10-06T21:21:30.7120000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40022472|Zeromus|4A750003|4A6B0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|1501627|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4600|10000|||92.81|87.03|0.00|2.60|0001A439|0|1| +20|2023-10-06T21:21:30.8020000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|112.19|109.18|0.00|0.22| +21|2023-10-06T21:21:30.9350000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40022472|Zeromus|352003|74000000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|1501627|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9350|10000|||99.26|98.16|0.00|3.10|0001A43A|0|1| +38|2023-10-06T21:21:30.9350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9350|10000|15||99.26|98.16|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:30.9350000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:21:30.5080000-07:00|Change|10FF0006||||||||||||| +39|2023-10-06T21:21:30.9810000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||90.94|86.46|0.00|2.37| +38|2023-10-06T21:21:30.9810000-07:00|40022472|Zeromus|005A5A00|1501627|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:21:30.9810000-07:00|35C|Dismantled|0.00|10FF0008|Kokosaze Lulusaze|40022472|Zeromus|00|40478540|90216| +37|2023-10-06T21:21:31.0230000-07:00|40022472|Zeromus|0001A432|1492190||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:31.0240000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|2976|10000|28||109.51|101.30|0.00|-2.72|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:31.0240000-07:00|32|Sprint|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|1E|81177|81177| +261|2023-10-06T21:21:30.5980000-07:00|Change|40022482||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|40022485||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|40022484||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|40022483||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|4002247F||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|4002247E||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|40022481||||||||||| +261|2023-10-06T21:21:30.5980000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:21:30.7160000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:21:31.2020000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|E70|82182|90216|10000|10000|||84.71|118.42|0.00|-0.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||112.78|111.61|0.00|-2.27| +21|2023-10-06T21:21:31.2020000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|750003|7B50000|FC010E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|1492190|40478540|10000|10000|||100.00|80.10|0.00|0.00|81177|81177|2976|10000|||109.51|101.30|0.00|-2.72|0001A43B|0|1| +38|2023-10-06T21:21:31.2020000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|85878|90216|10000|10000|18||84.71|118.42|0.00|-0.07|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:21:31.2460000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|DC1|82773|82773|10000|10000|||92.22|86.09|0.00|2.32|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||112.78|111.61|0.00|-2.27| +38|2023-10-06T21:21:31.2460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||92.22|86.09|0.00|2.32|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:30.8370000-07:00|Change|10FF0009||| +24|2023-10-06T21:21:31.2900000-07:00|10FF0003|Gegehi Gehi|HoT|0|DF2|73814|73814|4600|10000|||92.68|86.14|0.00|2.40|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||112.87|111.97|-0.01|-2.73| +38|2023-10-06T21:21:31.2900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4600|10000|23||92.68|86.14|0.00|2.40|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:21:31.0680000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:21:31.3800000-07:00|40022472|Zeromus|0001A438|1477520||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:31.3800000-07:00|40022472|Zeromus|0001A439|1458469||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:31.3800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|E68|81541|81541|1750|10000|||112.87|111.99|0.00|-2.76|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||112.87|111.99|0.00|-2.76| +21|2023-10-06T21:21:31.3800000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|722003|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1492190|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4600|10000|||92.68|86.06|0.00|2.41|0001A43C|0|1| +38|2023-10-06T21:21:31.3800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1750|10000|12||112.87|111.99|0.00|-2.76|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:21:31.4680000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|16A0|129844|129844|10000|10000|||102.72|85.15|0.00|2.74|40022488|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|-0.70| +24|2023-10-06T21:21:31.4680000-07:00|10FF0006|Wowobora Gogobora|HoT|0|DA1|81809|81809|9350|10000|||99.22|98.16|0.00|-2.27|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||112.87|111.99|0.00|-2.76| +38|2023-10-06T21:21:31.4680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||102.72|85.15|0.00|2.74|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:31.4680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|15||99.22|98.16|0.00|-2.27|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:21:31.5130000-07:00|10FF0009|Zewo Negiwo|HoT|0|16E5|81177|81177|2576|10000|||109.51|101.30|0.00|-2.72|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||112.87|111.99|0.00|-2.76| +21|2023-10-06T21:21:31.5130000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40022472|Zeromus|44720003|39BF0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|1458469|40478540|10000|10000|||100.00|80.10|0.00|0.00|85878|90216|10000|10000|||84.52|119.07|0.00|0.37|0001A43D|0|1| +38|2023-10-06T21:21:31.5130000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3126|10000|28||109.51|101.30|0.00|-2.72|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:31.1610000-07:00|Change|10FF000A||||||||| +24|2023-10-06T21:21:31.5580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|DD0|129071|129071|8900|10000|||104.54|86.75|0.00|0.51|10FF0001|Sesuga Sapisuga|0|129071|129071|8900|10000|||104.54|86.75|0.00|0.51| +21|2023-10-06T21:21:31.5580000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|12E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1458469|40478540|10000|10000|||100.00|80.10|0.00|0.00|85878|90216|10000|10000|||84.52|119.07|0.00|0.37|0001A43E|0|1| +21|2023-10-06T21:21:31.5580000-07:00|40022489|Zeromus|8B2A|unknown_8b2a|40022489|Zeromus|1B|8B2A8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-0.70|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001A43F|0|1| +38|2023-10-06T21:21:31.5580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|8||104.54|86.75|0.00|0.51|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:31.1610000-07:00|Change|40022489||||||||||||| +21|2023-10-06T21:21:31.7360000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40022472|Zeromus|710003|2D070000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|1458469|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||104.98|87.54|0.00|-2.43|0001A440|0|1| +21|2023-10-06T21:21:31.7360000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|308A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|1458469|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1750|10000|||112.87|111.99|0.00|-2.76|0001A441|0|1| +21|2023-10-06T21:21:31.8250000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|10980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1458469|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||94.36|84.43|0.00|2.36|0001A442|0|1| +261|2023-10-06T21:21:31.4490000-07:00|Change|40022DBA||||| +261|2023-10-06T21:21:31.4490000-07:00|Change|40022DBA||||| +261|2023-10-06T21:21:31.4490000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:21:31.9150000-07:00|40022DC1||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:21:31.9150000-07:00|40022472|Zeromus|0001A43C|1458421||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:31.9150000-07:00|40022DC1||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:21:31.5440000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:21:31.9600000-07:00|40022472|Zeromus|DoT|A92|4F2|1458421|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9900|10000|||95.20|96.30|0.00|-2.08| +37|2023-10-06T21:21:31.9600000-07:00|40022472|Zeromus|0001A43A|1427459||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:31.9600000-07:00|10FF0006|Wowobora Gogobora|0001A43A|81809|81809|9900|10000|15||95.20|96.30|0.00|-2.08|1B00|0|0|01|03000A92|0|41700000|| +26|2023-10-06T21:21:31.9600000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:21:31.9600000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|356003|4E690000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|1458421|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||95.20|96.30|0.00|-2.08|0001A443|0|1| +38|2023-10-06T21:21:31.9600000-07:00|40022472|Zeromus|005A5A00|1427459|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:21:31.5440000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:21:32.0040000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40022472|Zeromus|710003|2C020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1458421|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||105.89|85.76|0.00|2.50|0001A444|0|1| +261|2023-10-06T21:21:31.7760000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:21:32.0490000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|714003|E3E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1427459|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.99|86.96|-0.01|-2.24|0001A445|0|1| +37|2023-10-06T21:21:32.0930000-07:00|40022472|Zeromus|0001A440|1415932||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:32.0930000-07:00|10FF0001|Sesuga Sapisuga|0001A440|129071|129071|9400|10000|8||106.61|90.46|0.00|0.51|1300|0|0|0| +21|2023-10-06T21:21:32.0930000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|140E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1427459|40478540|10000|10000|||100.00|80.10|0.00|0.00|85878|90216|10000|10000|||84.52|119.07|0.00|2.76|0001A446|0|1| +261|2023-10-06T21:21:31.8870000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:21:31.8870000-07:00|Change|40022D58||||||||| +261|2023-10-06T21:21:31.8870000-07:00|Change|40022DBB||| +37|2023-10-06T21:21:32.3170000-07:00|40022472|Zeromus|0001A43D|1401149||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:32.3170000-07:00|40022472|Zeromus|0001A43E|1396311||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:31.8870000-07:00|Add|40022DC2||||||||||||||||||||||||| +03|2023-10-06T21:21:31.8870000-07:00|40022DC1|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||93.94|95.45|0.00|0.92| +261|2023-10-06T21:21:32.0110000-07:00|Add|40022DC1||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:32.0110000-07:00|Remove|40022D72| +261|2023-10-06T21:21:32.0110000-07:00|Change|40022DC1||| +37|2023-10-06T21:21:32.3630000-07:00|40022472|Zeromus|0001A442|1392063||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:32.3630000-07:00|40022DBB|Bunshin|75608|78475|10000|10000|||89.89|88.11|0.00|2.24| +21|2023-10-06T21:21:32.3630000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1396311|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||107.41|91.88|0.00|-2.58|0001A447|0|1| +38|2023-10-06T21:21:32.3630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||95.46|83.48|0.00|2.26|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:32.3630000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +31|2023-10-06T21:21:32.3630000-07:00|10FF0001||||| +37|2023-10-06T21:21:32.4970000-07:00|40022472|Zeromus|0001A43B|1390090|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|074F|0|41F00000|| +26|2023-10-06T21:21:32.4970000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +21|2023-10-06T21:21:32.4970000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|710003|27FD0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|1392063|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||107.41|91.88|0.00|-2.58|0001A448|0|1| +38|2023-10-06T21:21:32.4970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|8||107.41|91.88|0.00|-2.58|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:32.4970000-07:00|76E|Sword Oath|27.99|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T21:21:32.5410000-07:00|40022472|Zeromus|0001A441|1377664||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:32.5420000-07:00|10FF0003|Gegehi Gehi|73814|73814|4800|10000|||94.83|89.64|0.00|-2.95| +21|2023-10-06T21:21:32.5420000-07:00|4002248B|Zeromus|8B2B|unknown_8b2b|4002248B|Zeromus|1B|8B2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|1.40|44|44|0|10000|||100.00|80.10|0.00|1.40|0001A449|0|1| +37|2023-10-06T21:21:32.5850000-07:00|40022472|Zeromus|0001A445|1374018||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:32.5850000-07:00|40022472|Zeromus|0001A443|1353945||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:32.2220000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:21:32.2220000-07:00|Change|4002248B||||||||||||| +37|2023-10-06T21:21:32.6310000-07:00|40022472|Zeromus|0001A444|1342679||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:32.7190000-07:00|10FF0008|Kokosaze Lulusaze|86780|90216|10000|10000|||84.52|119.07|0.00|2.76| +21|2023-10-06T21:21:32.7190000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|13360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1342679|40478540|10000|10000|||100.00|80.10|0.00|0.00|85878|90216|10000|10000|||84.52|119.07|0.00|2.76|0001A44A|0|1| +39|2023-10-06T21:21:32.7640000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||110.28|109.90|0.00|0.44| +24|2023-10-06T21:21:32.7640000-07:00|40022472|Zeromus|DoT|0|144B|1342679|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|1342679|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:32.7640000-07:00|40022472|Zeromus|005A5A00|1337484|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:21:32.4050000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:21:32.8970000-07:00|40022472|Zeromus|0001A446|1332350||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:32.8970000-07:00|40022472|Zeromus|0001A447|1330701||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:32.8970000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9600|10000|||107.41|91.88|0.00|-2.58| +39|2023-10-06T21:21:32.8970000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1550|10000|||112.87|111.98|0.00|-2.78| +21|2023-10-06T21:21:32.8970000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40022472|Zeromus|154003|6A630000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|1337484|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4800|10000|||94.18|89.40|0.00|2.59|0001A44B|0|1| +38|2023-10-06T21:21:32.8970000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4400|10000|23||94.18|89.40|0.00|2.59|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:32.8970000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:21:32.4980000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:21:32.4980000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:21:32.9420000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|15430000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|86780|90216|10000|10000|||84.52|119.07|0.00|2.76|73956|77430|10000|10000|||110.67|110.71|0.00|0.11|0001A44C|0|1| +34|2023-10-06T21:21:32.9420000-07:00|40022DC1|Carbuncle|40022DC1|Carbuncle|01| +261|2023-10-06T21:21:32.5980000-07:00|Change|40022DC1||||||||| +39|2023-10-06T21:21:32.9860000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||110.34|89.28|0.00|1.53| +39|2023-10-06T21:21:32.9860000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9800|10000|||93.36|91.78|0.00|-2.44| +261|2023-10-06T21:21:32.5980000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:32.5980000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:21:33.0320000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40022472|Zeromus|32716003|488F0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|1330701|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.42|82.05|0.00|2.23|0001A44D|0|1| +38|2023-10-06T21:21:33.0320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.42|82.05|0.00|2.23|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:33.0320000-07:00|7A2|Bunshin|24.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|82773|82773| +261|2023-10-06T21:21:32.5980000-07:00|Change|40022DBB||||||||| +261|2023-10-06T21:21:32.7080000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:21:33.1200000-07:00|40022DBB|Bunshin|4406|Gust Slash|40022472|Zeromus|714003|134D0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|1330701|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||98.15|81.55|0.00|2.24|0001A44E|0|1| +261|2023-10-06T21:21:32.7080000-07:00|Change|40022DBB||| +21|2023-10-06T21:21:33.1660000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|171F0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|1330701|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||110.34|89.28|0.00|1.53|0001A44F|0|1| +21|2023-10-06T21:21:33.1660000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40022472|Zeromus|750003|268D0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|1330701|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1550|10000|||112.84|111.93|0.00|-2.80|0001A450|0|1| +261|2023-10-06T21:21:32.8280000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:21:33.3430000-07:00|40022472|Zeromus|0001A44A|1325783||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:33.3880000-07:00|10FF0009|Zewo Negiwo|81177|81177|3347|10000|||113.66|91.29|0.00|-3.06| +38|2023-10-06T21:21:33.3880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|12||112.84|111.87|0.00|-2.76|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:33.3880000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:21:33.3880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4400|10000|23||93.82|89.19|0.00|2.54|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:33.3880000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:21:33.3880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.89|81.71|0.00|2.24|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:33.3880000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:21:33.4330000-07:00|40022472|Zeromus|0001A44D|1307208||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:33.4330000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|273F0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|1330701|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9800|10000|||92.55|91.47|0.00|-1.45|0001A451|0|1| +38|2023-10-06T21:21:33.4330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||110.34|89.28|0.00|-2.30|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:33.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:21:33.4330000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3347|10000|28||113.66|91.29|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:33.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:21:33.4330000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|86780|90216|10000|10000|18||84.52|119.07|0.00|2.76|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:33.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:21:33.4330000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|15||92.55|91.47|0.00|-1.45|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:33.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:21:33.4330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9600|10000|8||107.41|91.88|0.00|-2.58|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:33.4330000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T21:21:33.5210000-07:00|40022472|Zeromus|0001A44E|1302267||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:33.5210000-07:00|40022472|Zeromus|8B78|Chasmic Nails|40022472|Zeromus|1B|8B788000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1307208|40478540|10000|10000|||100.00|80.10|0.00|0.00|1307208|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A452|0|1| +261|2023-10-06T21:21:33.0650000-07:00|Change|40022472||||||||||||| +37|2023-10-06T21:21:33.7000000-07:00|40022472|Zeromus|0001A44F|1296348||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:33.7450000-07:00|10FF0008|Kokosaze Lulusaze|0001A44C|90216||||||84.52|119.07|0.00|2.76| +37|2023-10-06T21:21:33.7890000-07:00|40022472|Zeromus|0001A448|1286111||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:33.7890000-07:00|10FF0001|Sesuga Sapisuga|0001A448|129071|129071|10000|10000|8||107.41|91.88|0.00|-2.58|1300|0|0|0| +261|2023-10-06T21:21:33.5600000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:21:34.0110000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||98.13|81.53|0.00|2.24| +21|2023-10-06T21:21:34.0110000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|724003|26E60000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|1286111|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||84.52|119.07|0.00|2.76|0001A453|0|1| +21|2023-10-06T21:21:34.0110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1286111|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||98.13|81.53|0.00|2.24|0001A454|0|1| +261|2023-10-06T21:21:33.5600000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:33.5600000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:21:34.0560000-07:00|40022472|Zeromus|0001A451|1276064||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:34.0560000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|732003|EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1286111|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||91.49|91.72|0.00|-1.07|0001A455|0|1| +37|2023-10-06T21:21:34.1000000-07:00|40022472|Zeromus|0001A450|1266195||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:34.1000000-07:00|10FF0009|Zewo Negiwo|88|Presence of Mind|10FF0009|Zewo Negiwo|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81177|81177|3347|10000|||113.64|90.50|0.00|1.76|81177|81177|3347|10000|||113.64|90.50|0.00|1.76|0001A456|0|1| +24|2023-10-06T21:21:34.2340000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|DC4|90216|90216|10000|10000|||84.52|119.07|0.00|2.76|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1150|10000|||112.81|111.77|0.00|-2.50| +21|2023-10-06T21:21:34.2340000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|91E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1286111|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||84.52|119.07|0.00|2.76|0001A457|0|1| +21|2023-10-06T21:21:34.2340000-07:00|4002248E|Zeromus|8B79|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.00|0001A458|0|0| +38|2023-10-06T21:21:34.2340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||84.52|119.07|0.00|2.76|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:21:33.9070000-07:00|Change|4002248E||||||||||||| +24|2023-10-06T21:21:34.2780000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|DE3|82773|82773|10000|10000|||98.13|81.53|0.00|2.24|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1150|10000|||112.81|111.77|0.00|-2.50| +38|2023-10-06T21:21:34.2780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||98.13|81.53|0.00|2.24|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:34.3240000-07:00|40022472|Zeromus|0001A44B|1238960||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:34.3240000-07:00|10FF0003|Gegehi Gehi|0001A44B|73814|73814|4400|10000|23||93.95|89.35|-0.02|3.04|2300|0|0|01|070004D2|0|41F00000|| +24|2023-10-06T21:21:34.3240000-07:00|10FF0003|Gegehi Gehi|HoT|0|DC8|73814|73814|4400|10000|||93.95|89.35|-0.02|3.04|10FF0003|Gegehi Gehi|0|73814|73814|4400|10000|||93.95|89.35|-0.02|3.04| +38|2023-10-06T21:21:34.3240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4400|10000|23||93.95|89.35|-0.02|3.04|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:21:34.4120000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|E73|81541|81541|1150|10000|||112.81|111.77|0.00|-2.37|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1150|10000|||112.81|111.77|0.00|-2.37| +38|2023-10-06T21:21:34.4120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|12||112.81|111.77|0.00|-2.37|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:21:34.5000000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E7C|129844|129844|10000|10000|||109.88|91.17|0.00|-2.33|40022488|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|-0.70| +24|2023-10-06T21:21:34.5000000-07:00|40022472|Zeromus|DoT|A92|4E6|1238960|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9500|10000|||91.42|91.75|-0.02|-0.78| +24|2023-10-06T21:21:34.5000000-07:00|10FF0006|Wowobora Gogobora|HoT|0|E20|81809|81809|9500|10000|||91.42|91.75|-0.02|-0.78|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1150|10000|||112.77|111.72|0.00|-2.35| +38|2023-10-06T21:21:34.5000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||109.88|91.17|0.00|-2.33|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:34.5000000-07:00|40022472|Zeromus|005A5A00|1237706|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T21:21:34.5000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||91.42|91.75|-0.02|-0.78|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:34.5450000-07:00|40022472|Zeromus|0001A454|1235470||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:34.5450000-07:00|10FF0009|Zewo Negiwo|HoT|0|E6F|81177|81177|3347|10000|||113.79|90.59|0.00|0.73|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1150|10000|||112.77|111.72|0.00|-2.35| +21|2023-10-06T21:21:34.5450000-07:00|4002247E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||109.55|118.21|0.00|0.00|0001A459|0|0| +21|2023-10-06T21:21:34.5450000-07:00|4002247F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.10|100.03|0.00|0.00|0001A45A|0|0| +21|2023-10-06T21:21:34.5460000-07:00|40022480|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.18|91.56|0.00|0.00|0001A45B|0|0| +261|2023-10-06T21:21:34.1310000-07:00|Change|4002247E||||||||||| +261|2023-10-06T21:21:34.1310000-07:00|Change|4002247F||||||||||| +21|2023-10-06T21:21:34.5460000-07:00|40022481|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.11|113.56|0.00|0.00|0001A45C|0|0| +21|2023-10-06T21:21:34.5460000-07:00|40022482|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.82|100.53|0.00|0.00|0001A45D|0|0| +21|2023-10-06T21:21:34.5460000-07:00|40022483|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.77|82.65|0.00|0.00|0001A45E|0|0| +21|2023-10-06T21:21:34.5460000-07:00|40022484|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.78|85.41|0.00|0.00|0001A45F|0|0| +21|2023-10-06T21:21:34.5460000-07:00|40022485|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.56|87.11|0.00|0.00|0001A460|0|0| +261|2023-10-06T21:21:34.2250000-07:00|Change|40022480||||||||||| +21|2023-10-06T21:21:34.5460000-07:00|4002248F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.07|85.89|0.00|0.00|0001A461|0|0| +261|2023-10-06T21:21:34.2250000-07:00|Change|40022481||||||||||| +38|2023-10-06T21:21:34.5460000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3897|10000|28||113.79|90.59|0.00|0.73|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:34.2250000-07:00|Change|40022482||||||||||| +37|2023-10-06T21:21:34.5910000-07:00|40022472|Zeromus|0001A455|1235232||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:34.2250000-07:00|Change|40022483||||||||||| +24|2023-10-06T21:21:34.5910000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|E8A|129071|129071|10000|10000|||107.23|91.98|0.00|-2.63|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||107.23|91.98|0.00|-2.63| +38|2023-10-06T21:21:34.5910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||107.23|91.98|0.00|-2.63|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:34.2250000-07:00|Change|40022485||||||||||| +261|2023-10-06T21:21:34.2250000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:21:34.2250000-07:00|Change|40022484||||||||||| +37|2023-10-06T21:21:34.6340000-07:00|10FF0009|Zewo Negiwo|0001A456|81177|81177|3897|10000|28||113.84|90.62|-0.01|0.69|1800|0|0|01|0400009D|0|41700000|| +26|2023-10-06T21:21:34.6340000-07:00|9D|Presence of Mind|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:21:34.6340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1235232|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.22|91.98|0.00|-2.65|0001A462|0|1| +38|2023-10-06T21:21:34.6340000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|3897|10000|28||113.84|90.62|-0.01|0.69|0|0|0|||||||||||||||||||||||||||||||||| +31|2023-10-06T21:21:34.6340000-07:00|10FF0001||||| +37|2023-10-06T21:21:34.7680000-07:00|40022472|Zeromus|0001A453|1225274||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:34.8580000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1225274|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4400|10000|||93.95|89.39|0.00|-1.33|0001A463|0|1| +261|2023-10-06T21:21:34.4150000-07:00|Change|40022D58||||||||| +21|2023-10-06T21:21:34.9470000-07:00|40022486|Zeromus|8B7A|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.40|0001A464|0|0| +21|2023-10-06T21:21:34.9470000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|354003|2D4B0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|1225274|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||91.43|91.75|0.00|-0.53|0001A465|0|1| +261|2023-10-06T21:21:34.5130000-07:00|Change|40022486||||||||||||| +37|2023-10-06T21:21:34.9920000-07:00|40022472|Zeromus|0001A457|1222940||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:34.9920000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|714003|335D0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|1225274|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||105.61|92.53|0.00|-2.66|0001A466|0|1| +38|2023-10-06T21:21:34.9920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||105.61|92.53|0.00|-2.66|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:34.9920000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:21:34.6090000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:34.6090000-07:00|Change|10FF0009||||||||||| +261|2023-10-06T21:21:34.6090000-07:00|Change|40022DBB||| +261|2023-10-06T21:21:34.6090000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:21:35.1690000-07:00|40022472|Zeromus|0001A462|1221236||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:35.2590000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40022472|Zeromus|44712003|4AEF0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|1222940|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.15|82.86|0.00|2.22|0001A467|0|1| +38|2023-10-06T21:21:35.2590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||99.15|82.86|0.00|2.22|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:35.2590000-07:00|7A2|Bunshin|21.80|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +21|2023-10-06T21:21:35.3480000-07:00|40022DBB|Bunshin|4407|Aeolian Edge|40022472|Zeromus|710003|F8B0000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|1221236|40478540|10000|10000|||100.00|80.10|0.00|0.00|75608|78475|10000|10000|||99.82|83.62|0.00|3.09|0001A468|0|1| +39|2023-10-06T21:21:35.3480000-07:00|40022DBB|Bunshin|75608|78475|10000|10000|||99.82|83.62|0.00|3.09| +261|2023-10-06T21:21:34.9600000-07:00|Change|40022DBB||||||||| +37|2023-10-06T21:21:35.3920000-07:00|40022472|Zeromus|0001A463|1221209||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:35.3920000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40022472|Zeromus|750003|5DCF0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|1221236|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4400|10000|||94.06|89.42|0.00|1.30|0001A469|0|1| +261|2023-10-06T21:21:34.9600000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:21:35.4370000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|712003|12220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1221236|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||105.14|94.60|0.00|-2.56|0001A46A|0|1| +261|2023-10-06T21:21:35.0770000-07:00|Change|10FF0001||||||||| +257|2023-10-06T21:21:35.4820000-07:00|80034E7C|00200004|03|00|0000| +39|2023-10-06T21:21:35.5260000-07:00|10FF0003|Gegehi Gehi|73814|73814|4200|10000|||94.85|89.62|0.00|2.56| +21|2023-10-06T21:21:35.5260000-07:00|40022490|Zeromus|8B82|Dimensional Surge|10FF0007|Kehabiqo Febiqo|750603|901A0000|200140E|6FD0000|1B|8B828000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||104.45|94.74|-0.02|-2.94|44|44|0|10000|||80.10|100.00|0.00|1.57|0001A46B|0|1| +261|2023-10-06T21:21:35.1700000-07:00|Change|40022490||||||||||||| +37|2023-10-06T21:21:35.5700000-07:00|40022472|Zeromus|0001A465|1209614||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:35.6140000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|1FC40000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|1221209|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||103.72|94.46|0.00|-2.94|0001A46C|0|1| +21|2023-10-06T21:21:35.6590000-07:00|4002248C|Zeromus|8B7B|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.70|0001A46D|0|0| +261|2023-10-06T21:21:35.2640000-07:00|Change|4002248C||||||||||||| +261|2023-10-06T21:21:35.2640000-07:00|Change|10FF0009||||||||| +261|2023-10-06T21:21:35.3610000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:21:35.7040000-07:00|10FF0007|Kehabiqo Febiqo|0001A46B|92954|129844|10000|10000|0||103.05|94.21|0.00|-2.94|1500|0|0|02|01000000|0|0|||||| +30|2023-10-06T21:21:35.7040000-07:00|6FD|Vulnerability Up|0.00|40022488|Zeromus|10FF0007|Kehabiqo Febiqo|01|129844|44| +26|2023-10-06T21:21:35.7040000-07:00|6FD|Vulnerability Up|60.00|40022490|Zeromus|10FF0007|Kehabiqo Febiqo|02|129844|44| +39|2023-10-06T21:21:35.7040000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||87.50|119.49|0.00|1.49| +38|2023-10-06T21:21:35.7040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92954|129844|10000|10000|0||103.05|94.21|0.00|-2.94|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:35.7040000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +39|2023-10-06T21:21:35.7490000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||108.25|108.08|0.00|-2.47| +24|2023-10-06T21:21:35.7490000-07:00|40022472|Zeromus|DoT|0|190C|1209614|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|1209614|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:35.7490000-07:00|40022472|Zeromus|005A5A00|1203202|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:21:35.7940000-07:00|40022472|Zeromus|0001A467|1184019||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:21:35.4550000-07:00|40022DBA|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||101.78|99.70|0.00|-3.14| +261|2023-10-06T21:21:35.4550000-07:00|Change|40022D58||||||||||| +261|2023-10-06T21:21:35.4550000-07:00|Remove|40022DBA| +37|2023-10-06T21:21:35.8820000-07:00|40022472|Zeromus|0001A468|1180040||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:35.8820000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.87|91.44|0.00|-2.76| +39|2023-10-06T21:21:35.8820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1350|10000|||106.67|110.96|0.00|-1.64| +261|2023-10-06T21:21:35.4550000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:21:35.4550000-07:00|Change|40022D58||||||||| +37|2023-10-06T21:21:35.9700000-07:00|40022472|Zeromus|0001A46A|1175398||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:35.9700000-07:00|10FF0007|Kehabiqo Febiqo|94252|129844|10000|10000|||102.72|94.16|0.00|-2.94| +39|2023-10-06T21:21:36.0150000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||95.74|91.52|0.00|1.78| +261|2023-10-06T21:21:35.5550000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:21:36.0590000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40022472|Zeromus|750003|24AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1175398|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.81|83.60|0.00|3.09|0001A46E|0|1| +21|2023-10-06T21:21:36.1930000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|8610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1175398|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.81|83.60|0.00|3.09|0001A46F|0|1| +37|2023-10-06T21:21:36.2370000-07:00|40022472|Zeromus|0001A46C|1167266||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:36.2810000-07:00|40022472|Zeromus|0001A466|1154117||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:36.0280000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:21:36.0280000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:21:36.3260000-07:00|40022488|Zeromus|8B7C|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.70|0001A470|0|0| +261|2023-10-06T21:21:36.1430000-07:00|Change|40022488||||||||||||| +39|2023-10-06T21:21:36.4150000-07:00|10FF0009|Zewo Negiwo|81177|81177|4118|10000|||116.85|83.42|0.00|-2.95| +20|2023-10-06T21:21:36.4150000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|116.85|83.42|0.00|-2.95| +21|2023-10-06T21:21:36.4150000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40022472|Zeromus|350003|27070000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|1154117|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||98.50|90.29|0.00|2.24|0001A471|0|1| +21|2023-10-06T21:21:36.5040000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40022472|Zeromus|3C720003|2CAD0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|1154117|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.77|118.85|0.00|1.88|0001A472|0|1| +21|2023-10-06T21:21:36.5040000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|4D010000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|94252|129844|10000|10000|||102.43|91.71|0.00|-3.02|1154117|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A473|0|1| +21|2023-10-06T21:21:36.6830000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22590000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|94252|129844|10000|10000|||101.46|90.42|0.00|-3.04|73956|77430|10000|10000|||104.90|103.91|0.00|-2.47|0001A474|0|1| +261|2023-10-06T21:21:36.3310000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:21:36.7280000-07:00|40022472|Zeromus|0001A46E|1144728||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:36.7280000-07:00|40022472|Zeromus|0001A46F|1142583||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:36.7730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.07|110.27|0.00|-1.86| +261|2023-10-06T21:21:36.5190000-07:00|Change|40022D58||||||||| +261|2023-10-06T21:21:36.6110000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:21:36.9070000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|11790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1142583|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.77|118.85|0.00|2.88|0001A475|0|1| +21|2023-10-06T21:21:36.9070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1142583|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.63|90.00|0.00|-2.99|0001A476|0|1| +31|2023-10-06T21:21:36.9070000-07:00|10FF0001||||| +23|2023-10-06T21:21:36.9950000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|Cancelled| +39|2023-10-06T21:21:36.9950000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.81|83.60|0.00|3.09| +37|2023-10-06T21:21:37.0400000-07:00|40022472|Zeromus|0001A471|1132592||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:37.0400000-07:00|4002248A|Zeromus|8B7D|Chasmic Nails|10FF0009|Zewo Negiwo|710603|6C190000|100140E|6FD0000|920E|1080000|1B|8B7D8000|0|0|0|0|0|0|0|0|81177|81177|4118|10000|||116.84|83.30|-0.02|-1.76|44|44|0|10000|||100.00|80.10|0.00|1.40|0001A477|0|1| +261|2023-10-06T21:21:36.6110000-07:00|Change|4002248A||||||||||||| +37|2023-10-06T21:21:37.2180000-07:00|40022472|Zeromus|0001A469|1108577||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:37.2180000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|E29|90216|90216|10000|10000|||89.77|118.85|0.00|2.88|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||99.07|109.41|0.00|-2.62| +21|2023-10-06T21:21:37.2180000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1132592|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||98.50|90.29|0.00|3.00|0001A478|0|1| +38|2023-10-06T21:21:37.2180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||89.77|118.85|0.00|2.88|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:21:37.2620000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|EE6|82773|82773|10000|10000|||99.81|83.60|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||98.80|109.17|0.00|-2.92| +38|2023-10-06T21:21:37.2620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||99.81|83.60|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:37.3060000-07:00|40022472|Zeromus|0001A472|1097140||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:37.3060000-07:00|10FF0007|Kehabiqo Febiqo|0001A473|74539||||||100.15|92.47|0.00|-0.34| +24|2023-10-06T21:21:37.3060000-07:00|10FF0003|Gegehi Gehi|HoT|0|17B9|73814|73814|4200|10000|||99.93|90.28|0.00|2.90|10FF0003|Gegehi Gehi|0|73814|73814|4200|10000|||99.93|90.28|0.00|2.90| +38|2023-10-06T21:21:37.3060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4200|10000|23||99.93|90.28|0.00|2.90|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:21:36.9530000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:21:37.3960000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|E1A|81541|81541|1350|10000|||98.56|108.96|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||98.56|108.96|0.00|3.09| +21|2023-10-06T21:21:37.3960000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||89.77|118.85|0.00|2.88|90216|90216|10000|10000|||89.77|118.85|0.00|2.88|0001A479|0|1| +38|2023-10-06T21:21:37.3960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||89.77|118.85|0.00|2.88|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:37.3960000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +38|2023-10-06T21:21:37.3960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|12||98.56|108.96|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:37.4410000-07:00|40022472|Zeromus|0001A476|1095430||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:37.4850000-07:00|10FF0007|Kehabiqo Febiqo|0001A474|83332||||||100.00|94.31|0.00|-0.19| +24|2023-10-06T21:21:37.4850000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D97|74539|129844|10000|10000|||100.00|94.31|0.00|-0.19|40022490|Zeromus|0|44|44|0|10000|||80.10|100.00|0.00|1.57| +24|2023-10-06T21:21:37.4850000-07:00|40022472|Zeromus|DoT|A92|50B|1097140|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9600|10000|||98.50|90.29|0.00|3.00| +24|2023-10-06T21:21:37.4850000-07:00|10FF0006|Wowobora Gogobora|HoT|0|EB8|81809|81809|9600|10000|||98.50|90.29|0.00|3.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||98.56|108.96|0.00|3.09| +38|2023-10-06T21:21:37.4850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86811|129844|10000|10000|0||100.00|94.31|0.00|-0.19|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:37.4850000-07:00|40022472|Zeromus|005A5A00|1094139|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T21:21:37.4850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||98.50|90.29|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:37.1700000-07:00|Change|40022DBB||| +24|2023-10-06T21:21:37.5290000-07:00|10FF0009|Zewo Negiwo|HoT|0|17A2|81177|81177|4118|10000|||115.55|84.28|0.00|-0.59|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1350|10000|||98.56|108.96|0.00|3.09| +21|2023-10-06T21:21:37.5290000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40022472|Zeromus|712003|42E10000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|1094139|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.63|90.00|0.00|-2.98|0001A47A|0|1| +38|2023-10-06T21:21:37.5290000-07:00|10FF0009|Zewo Negiwo|005A5A18|81177|81177|4668|10000|28||115.55|84.28|0.00|-0.59|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:37.5290000-07:00|6FD|Vulnerability Up|59.51|4002248A|Zeromus|10FF0009|Zewo Negiwo|01|81177|44| +38|2023-10-06T21:21:37.5290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||101.63|90.00|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:37.5290000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +24|2023-10-06T21:21:37.5730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|DF1|129071|129071|10000|10000|||101.63|90.00|0.00|-2.98|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||101.63|90.00|0.00|-2.98| +38|2023-10-06T21:21:37.5730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||101.63|90.00|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:37.6630000-07:00|40022472|Zeromus|0001A475|1089666||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:37.6630000-07:00|10FF0009|Zewo Negiwo|0001A477|53504|81177|4668|10000|0||114.81|84.82|0.00|-0.80|1800|0|0|03|02000108|0|41700000|||||||||| +30|2023-10-06T21:21:37.6630000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0009|Zewo Negiwo|00|81177|129071| +26|2023-10-06T21:21:37.6630000-07:00|108|Flesh Wound|15.00|4002248A|Zeromus|10FF0009|Zewo Negiwo|00|81177|44| +38|2023-10-06T21:21:37.6630000-07:00|10FF0009|Zewo Negiwo|005A5A18|53504|81177|4668|10000|0||114.81|84.82|0.00|-0.80|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:37.6630000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +21|2023-10-06T21:21:37.7080000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|40B10000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|1094139|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1350|10000|||98.56|108.96|0.00|3.09|0001A47B|0|1| +261|2023-10-06T21:21:37.2640000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:21:37.7520000-07:00|40022472|Zeromus|0001A478|1089470||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:37.3580000-07:00|Change|10FF0009||||||||||||||||||||||| +21|2023-10-06T21:21:37.8420000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.79|83.65|0.00|-2.62|82773|82773|10000|10000|||99.79|83.65|0.00|-2.62|0001A47C|0|1| +38|2023-10-06T21:21:37.8420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||99.79|83.65|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:37.8420000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:21:37.8860000-07:00|40022DC1|Carbuncle|77698|77698|10000|10000|||96.51|90.71|0.00|1.78| +21|2023-10-06T21:21:37.8860000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40022472|Zeromus|750003|676A0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|1089470|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4200|10000|||100.14|89.74|0.00|3.13|0001A47D|0|1| +261|2023-10-06T21:21:37.4580000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:21:37.9320000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40022472|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|1089470|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||98.50|90.29|0.00|3.00|0001A47E|0|1| +38|2023-10-06T21:21:37.9320000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||98.50|90.29|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:37.9320000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:21:37.4580000-07:00|Change|40022DC1||||||||| +38|2023-10-06T21:21:37.9750000-07:00|40022DC7||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:21:37.9760000-07:00|40022DC7||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:21:38.0650000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40022472|Zeromus|3F716003|5F910000|143E|340000|4|17BA8000|11B|2A8000|0|0|0|0|0|0|0|0|1089470|40478540|10000|10000|||100.00|80.10|0.00|0.00|86811|129844|10000|10000|||99.84|96.85|0.00|-0.02|0001A47F|0|1| +261|2023-10-06T21:21:37.6690000-07:00|Change|10FF0006||||| +03|2023-10-06T21:21:37.7790000-07:00|40022DC7|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||99.99|92.31|0.00|3.00| +261|2023-10-06T21:21:37.7790000-07:00|Add|40022DC7||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:37.8890000-07:00|Change|40022DC7||||| +21|2023-10-06T21:21:38.3330000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40022472|Zeromus|710003|ED70000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|1089470|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.63|90.00|0.00|-2.98|0001A480|0|1| +21|2023-10-06T21:21:38.3330000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|950|10000|||98.56|108.95|0.00|3.06|81541|81541|950|10000|||98.56|108.95|0.00|3.06|0001A481|0|1| +21|2023-10-06T21:21:38.3330000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1089470|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3800|10000|||100.14|89.74|0.00|-3.12|0001A482|0|1| +21|2023-10-06T21:21:38.3330000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.66|83.85|-0.02|-2.13|82773|82773|10000|10000|||99.66|83.85|-0.02|-2.13|0001A483|0|1| +38|2023-10-06T21:21:38.3330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||99.66|83.85|-0.02|-2.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:38.3330000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +39|2023-10-06T21:21:38.3780000-07:00|40022DBB|Bunshin|75608|78475|10000|10000|||99.82|83.62|0.00|3.09| +21|2023-10-06T21:21:38.3780000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|D440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1089470|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.66|83.85|-0.02|-2.13|0001A484|0|1| +261|2023-10-06T21:21:38.0030000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:21:38.0030000-07:00|Change|10FF0009||||||||| +37|2023-10-06T21:21:38.5110000-07:00|40022472|Zeromus|0001A47B|1072909||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:38.5560000-07:00|10FF0003|Gegehi Gehi|73814|73814|4000|10000|||100.14|89.74|0.00|-3.12| +261|2023-10-06T21:21:38.1140000-07:00|Change|10FF0003||||| +261|2023-10-06T21:21:38.2120000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:21:38.7340000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||91.35|117.96|0.00|2.21| +21|2023-10-06T21:21:38.7340000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|200004|B6210000|1CFC0F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|86811|129844|10000|10000|||99.85|96.81|0.00|3.13|86811|129844|10000|10000|||99.85|96.81|0.00|3.13|0001A485|0|1| +39|2023-10-06T21:21:38.7790000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99| +24|2023-10-06T21:21:38.7790000-07:00|40022472|Zeromus|DoT|0|19AF|1072909|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|1072909|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:38.7790000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40022472|Zeromus|724003|51F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1072909|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4000|10000|||100.14|89.78|0.00|-2.36|0001A486|0|1| +38|2023-10-06T21:21:38.7790000-07:00|40022472|Zeromus|005A5A00|1066334|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:21:38.8230000-07:00|40022472|Zeromus|0001A47A|1049213||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:38.8230000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1072909|40478540|10000|10000|||100.00|80.10|0.00|0.00|86811|129844|10000|10000|||99.86|96.79|0.00|3.14|0001A487|0|1| +37|2023-10-06T21:21:38.8670000-07:00|40022472|Zeromus|0001A482|1049184||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:38.8670000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.63|90.00|0.00|-2.98| +37|2023-10-06T21:21:38.9110000-07:00|40022472|Zeromus|0001A484|1045788||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:38.9110000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1150|10000|||98.48|108.23|0.00|-3.04| +21|2023-10-06T21:21:38.9110000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.66|83.85|0.00|-1.86|82773|82773|10000|10000|||99.66|83.85|0.00|-1.86|0001A488|0|1| +38|2023-10-06T21:21:38.9110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||99.66|83.85|0.00|-1.86|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:38.9110000-07:00|1F0|Mudra|4.93|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +37|2023-10-06T21:21:38.9560000-07:00|10FF0006|Wowobora Gogobora|0001A47E|81809|81809|10000|10000|15||98.84|91.90|0.00|0.56|1B00|0|0|01|0AA4|0|0|| +37|2023-10-06T21:21:38.9560000-07:00|10FF0004|Buhojaqe Zijaqe|0001A481|81541|81541|1150|10000|12||98.48|108.23|0.00|-3.04|1C00|0|0|01|070004B4|0|41A80000|| +26|2023-10-06T21:21:38.9560000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:21:38.9560000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||98.84|91.90|0.00|0.56|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T21:21:39.0010000-07:00|10FF0007|Kehabiqo Febiqo|88109|129844|10000|10000|||99.84|95.05|0.00|-3.14| +39|2023-10-06T21:21:39.0010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.06|92.92|0.00|0.42| +26|2023-10-06T21:21:39.0010000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:21:39.0010000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|36770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1045788|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||93.67|116.67|0.00|2.11|0001A489|0|1| +261|2023-10-06T21:21:38.6160000-07:00|Change|40022DC7||| +261|2023-10-06T21:21:38.6160000-07:00|Change|10FF0009||||||||| +21|2023-10-06T21:21:39.1790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1045788|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.63|90.00|0.00|-2.98|0001A48A|0|1| +20|2023-10-06T21:21:39.1790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|98.41|105.63|0.00|-3.10| +31|2023-10-06T21:21:39.1790000-07:00|10FF0001||||| +261|2023-10-06T21:21:38.8410000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:21:39.2670000-07:00|10FF0009|Zewo Negiwo|4098|Temperance|10FF0009|Zewo Negiwo|140F|7508000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53504|81177|4668|10000|||106.08|93.14|0.00|-0.90|53504|81177|4668|10000|||106.08|93.14|0.00|-0.90|0001A48B|0|1| +37|2023-10-06T21:21:39.3560000-07:00|40022472|Zeromus|0001A487|1042870||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:39.3560000-07:00|40022472|Zeromus|0001A480|1039071|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T21:21:39.3560000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +37|2023-10-06T21:21:39.4020000-07:00|10FF0007|Kehabiqo Febiqo|0001A485|129844|129844|10000|10000|0||99.81|92.32|0.00|-3.14|1500|0|0|01|01000A79|0|41700000|| +26|2023-10-06T21:21:39.4020000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:21:39.4020000-07:00|10FF0009|Zewo Negiwo|54315|81177|4889|10000|||105.35|94.00|0.00|-1.20| +21|2023-10-06T21:21:39.4020000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40022472|Zeromus|654003|47480000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|1039071|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||99.74|85.02|0.00|-2.09|0001A48C|0|1| +38|2023-10-06T21:21:39.4020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||99.74|85.02|0.00|-2.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:39.4020000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|82773|82773| +26|2023-10-06T21:21:39.4020000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:21:39.4460000-07:00|40022472|Zeromus|0001A47D|1012597||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:39.4460000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|12||98.56|104.63|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:39.4460000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +261|2023-10-06T21:21:39.0750000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:39.0750000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:21:39.5340000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|542A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.81|92.12|0.00|3.13|1012597|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A48D|0|1| +37|2023-10-06T21:21:39.5790000-07:00|40022472|Zeromus|0001A47F|988132||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:39.5790000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|B8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1012597|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.62|114.97|0.00|2.87|0001A48E|0|1| +38|2023-10-06T21:21:39.5790000-07:00|10FF0009|Zewo Negiwo|005A5A18|54315|81177|4889|10000|0||105.30|94.03|0.00|-1.20|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:39.5790000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|1E|81177|81541| +261|2023-10-06T21:21:39.1680000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:21:39.6240000-07:00|40022472|Zeromus|0001A489|974189||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:39.7130000-07:00|40022472|Zeromus|0001A48A|972461||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:39.7130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.39|98.59|0.00|0.21|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:39.7130000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +38|2023-10-06T21:21:39.8470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.81|91.94|0.00|-0.96|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:39.8470000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +38|2023-10-06T21:21:39.8910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||95.84|114.85|0.00|2.86|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:39.8910000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:21:39.8910000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||99.45|86.14|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:39.8910000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:21:39.8910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4000|10000|23||100.68|96.55|0.00|0.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:39.8910000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:21:39.8910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|12||98.71|103.62|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:39.8910000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:21:39.8910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.41|98.72|0.00|0.20|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:39.8910000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:21:39.8910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.81|91.94|0.00|-0.96|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:39.8910000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:21:39.8910000-07:00|10FF0009|Zewo Negiwo|005A5A18|54315|81177|4889|10000|0||104.12|94.51|0.00|-0.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:39.8910000-07:00|750|Temperance|20.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:21:39.8910000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:21:39.8910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||101.63|90.00|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:39.8910000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:21:39.8910000-07:00|10FF0009|Zewo Negiwo|0001A48B|54315|81177|4889|10000|0||104.12|94.51|0.00|-0.77|1800|0|0|02|06000750|0|41A00000|||||| +21|2023-10-06T21:21:39.8910000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|200004|220B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|54315|81177|4889|10000|||104.12|94.51|0.00|-0.77|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A48F|0|1| +261|2023-10-06T21:21:39.4630000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:21:39.4630000-07:00|Change|40022DC1||||||||| +37|2023-10-06T21:21:39.9350000-07:00|40022472|Zeromus|0001A486|951481||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:21:39.9350000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0009|Zewo Negiwo|FCFB0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|54315|81177|4889|10000|||103.80|94.64|0.00|-0.66|54315|81177|4889|10000|||103.80|94.64|0.00|-0.66|0001A490|0|7| +22|2023-10-06T21:21:39.9350000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|FCFB0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4000|10000|||100.75|97.27|0.00|0.12|54315|81177|4889|10000|||103.80|94.64|0.00|-0.66|0001A490|1|7| +22|2023-10-06T21:21:39.9350000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|FCFB0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.78|92.72|0.00|-0.77|54315|81177|4889|10000|||103.80|94.64|0.00|-0.66|0001A490|2|7| +22|2023-10-06T21:21:39.9350000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|FCFB0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.42|98.83|0.00|0.19|54315|81177|4889|10000|||103.80|94.64|0.00|-0.66|0001A490|3|7| +22|2023-10-06T21:21:39.9350000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|FCFB0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||101.63|90.00|0.00|-2.98|54315|81177|4889|10000|||103.80|94.64|0.00|-0.66|0001A490|4|7| +22|2023-10-06T21:21:39.9350000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|FCFB0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||99.06|86.80|0.00|-2.82|54315|81177|4889|10000|||103.80|94.64|0.00|-0.66|0001A490|5|7| +22|2023-10-06T21:21:39.9350000-07:00|10FF0009|Zewo Negiwo|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|FCFB0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1150|10000|||98.71|103.62|0.00|3.09|54315|81177|4889|10000|||103.80|94.64|0.00|-0.66|0001A490|6|7| +39|2023-10-06T21:21:39.9800000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||99.06|86.80|0.00|-2.82| +261|2023-10-06T21:21:39.6490000-07:00|Change|10FF0009||||||||||| +38|2023-10-06T21:21:39.9810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||95.84|114.85|0.00|2.86|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:39.9810000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +21|2023-10-06T21:21:40.0260000-07:00|40022DC7|Ruby Ifrit|64FC|Inferno|40022472|Zeromus|152003|A1D60000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|951481|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||99.99|92.31|0.00|3.00|0001A491|0|1| +21|2023-10-06T21:21:40.0260000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|2D110000|4|25F78000|0|0|0|0|0|0|0|0|0|0|0|0|951481|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.63|90.00|0.00|-2.98|0001A492|0|1| +38|2023-10-06T21:21:40.0260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|8||101.63|90.00|0.00|-2.98|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:40.0260000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:21:40.1150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2FF80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|951481|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||98.71|103.62|0.00|3.09|0001A493|0|1| +38|2023-10-06T21:21:40.1150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|8||101.63|90.00|0.00|-2.98|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:40.1150000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +261|2023-10-06T21:21:39.7450000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:21:40.2030000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|E80|90216|90216|10000|10000|||95.84|114.85|0.00|2.86|10FF0004|Buhojaqe Zijaqe|0|81541|81541|750|10000|||98.71|103.62|0.00|3.09| +38|2023-10-06T21:21:40.2030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||95.84|114.85|0.00|2.86|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:21:40.2490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|15FF|82773|82773|10000|10000|||98.00|88.66|0.00|-2.26|10FF0004|Buhojaqe Zijaqe|0|81541|81541|750|10000|||98.71|103.62|0.00|3.09| +38|2023-10-06T21:21:40.2490000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4000|10000|23||100.89|98.90|0.00|0.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:40.2490000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +38|2023-10-06T21:21:40.2490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||98.00|88.66|0.00|-2.26|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:21:40.2930000-07:00|10FF0003|Gegehi Gehi|HoT|0|E06|73814|73814|4000|10000|||100.89|98.90|0.00|0.08|10FF0003|Gegehi Gehi|0|73814|73814|4000|10000|||100.89|98.90|0.00|0.08| +38|2023-10-06T21:21:40.2930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4000|10000|23||100.89|98.90|0.00|0.08|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:21:40.3370000-07:00|40022472|Zeromus|0001A48E|948524||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:40.3370000-07:00|10FF0007|Kehabiqo Febiqo|0001A48D|108298||||||99.68|95.11|0.00|-0.21| +20|2023-10-06T21:21:40.3370000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|1.944|100.89|98.90|0.00|0.08| +261|2023-10-06T21:21:39.9820000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:21:40.3820000-07:00|40022472|Zeromus|0001A48C|930276||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:40.3820000-07:00|10FF000A|Dukaro Nezikaro|0001A48C|82773|82773|10000|10000|32||97.80|89.25|0.00|-2.35|1E00|0|0|01|030001FB|0|41A00000|| +24|2023-10-06T21:21:40.3820000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D8F|81541|81541|750|10000|||98.71|103.62|0.00|3.09|10FF0009|Zewo Negiwo|0|54315|81177|4889|10000|||103.17|94.90|0.00|-0.43| +20|2023-10-06T21:21:40.3820000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|100.45|99.05|0.00|0.18| +38|2023-10-06T21:21:40.3820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|12||98.71|103.62|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:40.3820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.80|89.25|0.00|-2.35|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:40.3820000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|82773|81541| +24|2023-10-06T21:21:40.4710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2AAE|108298|129844|10000|10000|||99.67|95.45|0.00|-0.11|40022490|Zeromus|0|44|44|0|10000|||80.10|100.00|0.00|1.57| +24|2023-10-06T21:21:40.4710000-07:00|40022472|Zeromus|DoT|A92|627|948524|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||100.45|99.05|0.00|0.18| +24|2023-10-06T21:21:40.4710000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D96|81809|81809|10000|10000|||100.45|99.05|0.00|0.18|10FF0009|Zewo Negiwo|0|54315|81177|4889|10000|||103.17|94.90|0.00|-0.43| +38|2023-10-06T21:21:40.4710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119224|129844|10000|10000|0||99.67|95.45|0.00|-0.11|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:40.4710000-07:00|40022472|Zeromus|005A5A00|928701|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T21:21:40.4710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.45|99.05|0.00|0.18|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:40.5170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||95.84|114.85|0.00|2.86|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:21:40.5170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.80|89.25|0.00|-2.35|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:40.5170000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4000|10000|23||100.87|98.84|0.00|0.95|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:21:40.5170000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|12||98.71|103.62|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:40.5170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.45|99.05|0.00|0.18|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:40.5170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119224|129844|10000|10000|0||99.67|95.45|0.00|-0.11|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:40.5170000-07:00|10FF0009|Zewo Negiwo|005A5A18|54315|81177|4889|10000|0||103.17|94.90|0.00|-0.43|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:40.5170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|8||101.63|90.00|0.00|-1.70|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:21:40.5170000-07:00|10FF0009|Zewo Negiwo|DoT|0|24CD|54315|81177|4889|10000|||103.17|94.90|0.00|-0.43|10FF0009|Zewo Negiwo|FFFFFFFF|54315|81177|4889|10000|||103.17|94.90|0.00|-0.43| +24|2023-10-06T21:21:40.5170000-07:00|10FF0009|Zewo Negiwo|HoT|0|ECF|54315|81177|4889|10000|||103.17|94.90|0.00|-0.43|10FF0009|Zewo Negiwo|0|54315|81177|4889|10000|||103.17|94.90|0.00|-0.43| +21|2023-10-06T21:21:40.5170000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40022472|Zeromus|710003|15210000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|948524|40478540|10000|10000|||100.00|80.10|0.00|0.00|108298|129844|10000|10000|||99.67|95.45|0.00|-0.11|0001A494|0|1| +38|2023-10-06T21:21:40.5170000-07:00|10FF0009|Zewo Negiwo|005A5A18|48685|81177|5439|10000|0||103.17|94.90|0.00|-0.43|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:40.0930000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T21:21:40.0930000-07:00|Change|10FF0003||||||||||||||||||||| +24|2023-10-06T21:21:40.5600000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|17BC|129071|129071|9000|10000|||101.46|90.14|0.00|-1.69|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1300|10000|||98.71|103.59|0.00|2.96| +21|2023-10-06T21:21:40.5600000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|714003|A050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|928701|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.74|89.64|0.00|-1.98|0001A495|0|1| +38|2023-10-06T21:21:40.5600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|8||101.46|90.14|0.00|-1.69|0|0|0|||||||||||||||||||||| +20|2023-10-06T21:21:40.6500000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|1.544|103.17|94.90|0.00|-0.43| +26|2023-10-06T21:21:40.6500000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:21:40.6500000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|720003|22850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|928701|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.84|114.85|0.00|2.86|0001A496|0|1| +21|2023-10-06T21:21:40.6500000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.74|89.64|0.00|-1.98|82773|82773|10000|10000|||97.74|89.64|0.00|-1.98|0001A497|0|1| +38|2023-10-06T21:21:40.6500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.74|89.64|0.00|-1.98|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:40.6500000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:21:40.6940000-07:00|10FF0009|Zewo Negiwo|0001A48F|57400||||||103.17|94.90|0.00|-0.43| +37|2023-10-06T21:21:40.7380000-07:00|10FF0009|Zewo Negiwo|0001A490|57400|81177|5439|10000|0||103.17|94.90|0.00|-0.43|1800|0|0|01|0B0004C3|0|41200000|| +26|2023-10-06T21:21:40.7380000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +26|2023-10-06T21:21:40.7380000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:21:40.7380000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|750003|10D00000|104|6488000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|928701|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||98.71|103.59|0.00|2.73|0001A498|0|1| +37|2023-10-06T21:21:40.7830000-07:00|40022472|Zeromus|0001A492|917164||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:40.2970000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:21:40.8720000-07:00|10FF0003|Gegehi Gehi|0001A490|73814|73814|4000|10000|23||100.85|98.78|-0.01|3.04|2301|0|0|01|060004C3|0|41200000|| +26|2023-10-06T21:21:40.8720000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +37|2023-10-06T21:21:40.9170000-07:00|40022472|Zeromus|0001A493|904884||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:41.0060000-07:00|10FF0007|Kehabiqo Febiqo|0001A490|119224|129844|10000|10000|0||99.66|95.60|0.00|3.12|1502|0|0|01|070004C3|0|41200000|| +26|2023-10-06T21:21:41.0060000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +21|2023-10-06T21:21:41.0060000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|732003|1040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|917164|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||99.11|102.66|0.00|2.96|0001A499|0|1| +38|2023-10-06T21:21:41.0060000-07:00|10FF0009|Zewo Negiwo|005A5A18|57400|81177|5439|10000|0||103.17|94.90|0.00|-0.43|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:41.0060000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +37|2023-10-06T21:21:41.0510000-07:00|40022472|Zeromus|0001A494|899475||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:41.0950000-07:00|40022472|Zeromus|0001A495|896910||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:41.0950000-07:00|10FF000A|Dukaro Nezikaro|0001A495|82773|82773|10000|10000|32||97.58|90.94|0.00|-0.15|1E00|0|0|01|0A0001F1|0|C1700000|| +261|2023-10-06T21:21:40.6080000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:21:40.6080000-07:00|Change|10FF0009||||||||||||||||||||||| +37|2023-10-06T21:21:41.1400000-07:00|10FF0006|Wowobora Gogobora|0001A490|81809|81809|10000|10000|15||100.45|99.05|0.00|-3.12|1B03|0|0|01|0B0004C3|0|41200000|| +26|2023-10-06T21:21:41.1400000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:21:41.1400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|8||101.08|93.29|0.00|-1.69|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:41.1400000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:21:41.1840000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40022472|Zeromus|710003|10920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|896910|40478540|10000|10000|||100.00|80.10|0.00|0.00|119224|129844|10000|10000|||99.67|95.31|-0.02|3.11|0001A49A|0|1| +37|2023-10-06T21:21:41.2730000-07:00|10FF0001|Sesuga Sapisuga|0001A490|129071|129071|9000|10000|8||101.00|93.95|0.00|-1.69|1304|0|0|01|020004C3|0|41200000|| +26|2023-10-06T21:21:41.2730000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +37|2023-10-06T21:21:41.2730000-07:00|40022472|Zeromus|0001A496|888073||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:41.2730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1300|10000|12||99.57|101.40|0.00|2.84|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:41.2730000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +21|2023-10-06T21:21:41.3170000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|12EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|896910|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.91|114.65|-0.02|2.91|0001A49B|0|1| +39|2023-10-06T21:21:41.3610000-07:00|40022DBB|Bunshin|75608|78475|10000|10000|||99.82|83.62|0.00|3.09| +37|2023-10-06T21:21:41.4060000-07:00|10FF000A|Dukaro Nezikaro|0001A490|82773|82773|10000|10000|32||97.54|91.31|0.00|0.03|1E05|0|0|02|0A0001F1|0|C1700000|||||| +26|2023-10-06T21:21:41.4060000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:21:41.4070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.54|91.31|0.00|0.03|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:41.4070000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +261|2023-10-06T21:21:40.9490000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:21:40.9490000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:21:41.4510000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|68B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|888073|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.87|95.05|0.00|-1.69|0001A49C|0|1| +31|2023-10-06T21:21:41.4510000-07:00|10FF0001||||| +261|2023-10-06T21:21:41.0620000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:21:41.5400000-07:00|10FF0004|Buhojaqe Zijaqe|0001A490|81541|81541|1300|10000|12||99.74|100.26|0.00|2.92|1C06|0|0|01|060004C3|0|41200000|| +26|2023-10-06T21:21:41.5400000-07:00|4C3|Confession|10.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +37|2023-10-06T21:21:41.5400000-07:00|40022472|Zeromus|0001A499|887813||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:41.5400000-07:00|10FF0003|Gegehi Gehi|73814|73814|4200|10000|||100.85|98.77|0.00|-3.10| +38|2023-10-06T21:21:41.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119224|129844|10000|10000|0||99.69|94.74|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:41.5400000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +20|2023-10-06T21:21:41.5850000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|99.74|100.26|0.00|2.92| +21|2023-10-06T21:21:41.5850000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40022472|Zeromus|19716003|5A8E0000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|888073|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.40|92.42|0.00|-0.01|0001A49D|0|1| +38|2023-10-06T21:21:41.5850000-07:00|40022472|Zeromus|005A5A00|887813|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:21:41.5850000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:21:41.5850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.40|92.42|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:41.5850000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +261|2023-10-06T21:21:41.1580000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:21:41.6290000-07:00|10FF000A|Dukaro Nezikaro|0001A497|82773|82773|10000|10000|32||97.40|92.42|0.00|-0.01|1E00|0|0|01|0A0001F1|0|41700000|| +38|2023-10-06T21:21:41.6290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.40|92.42|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||||||||| +22|2023-10-06T21:21:41.6750000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0009|Zewo Negiwo|4|1C350000|FC110E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|0001A49E|0|8| +22|2023-10-06T21:21:41.6750000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0001|Sesuga Sapisuga|4|1AAE0000|FC110E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||100.87|95.05|0.00|-1.69|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|0001A49E|1|8| +22|2023-10-06T21:21:41.6750000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0007|Kehabiqo Febiqo|200004|2BE20000|FC110E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|119224|129844|10000|10000|||99.69|94.74|0.00|3.12|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|0001A49E|2|8| +22|2023-10-06T21:21:41.6750000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0003|Gegehi Gehi|200004|2C3B0000|FC110E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|73814|73814|4200|10000|||100.85|98.77|0.00|-3.10|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|0001A49E|3|8| +22|2023-10-06T21:21:41.6750000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0006|Wowobora Gogobora|4|1C030000|FC110E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.45|99.05|0.00|-3.12|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|0001A49E|4|8| +22|2023-10-06T21:21:41.6750000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0004|Buhojaqe Zijaqe|200004|2C7C0000|FC110E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81541|81541|1300|10000|||99.76|99.91|0.00|2.97|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|0001A49E|5|8| +22|2023-10-06T21:21:41.6750000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF000A|Dukaro Nezikaro|4|1B3D0000|FC110E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.32|92.67|0.00|2.93|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|0001A49E|6|8| +22|2023-10-06T21:21:41.6750000-07:00|10FF0009|Zewo Negiwo|85|Medica II|10FF0008|Kokosaze Lulusaze|4|1AE30000|FC110E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||96.79|111.62|0.00|3.00|57400|81177|5439|10000|||103.17|94.90|0.00|-0.43|0001A49E|7|8| +38|2023-10-06T21:21:41.6750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||96.79|111.62|0.00|3.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:41.6750000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +39|2023-10-06T21:21:41.7190000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||96.79|111.62|0.00|3.00| +37|2023-10-06T21:21:41.7640000-07:00|40022472|Zeromus|0001A498|883509|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +39|2023-10-06T21:21:41.7640000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99| +24|2023-10-06T21:21:41.7640000-07:00|40022472|Zeromus|DoT|0|1782|887813|40478540|10000|10000|||100.00|80.10|0.00|0.00|40022472|Zeromus|FFFFFFFF|887813|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:41.7640000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40022472|Zeromus|154003|3B840000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|887813|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4200|10000|||100.85|98.77|0.00|-3.10|0001A49F|0|1| +38|2023-10-06T21:21:41.7640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4000|10000|23||100.85|98.77|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:41.7640000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:21:41.7640000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:21:41.7640000-07:00|40022472|Zeromus|005A5A00|877491|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T21:21:41.8080000-07:00|40022472|Zeromus|0001A49A|873249|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +38|2023-10-06T21:21:41.8080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4000|10000|23||100.85|98.77|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:41.8080000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +04|2023-10-06T21:21:41.3710000-07:00|40022DC1|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||96.64|90.78|0.00|1.43| +261|2023-10-06T21:21:41.3710000-07:00|Remove|40022DC1| +261|2023-10-06T21:21:41.4660000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:21:41.8970000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||100.87|95.05|0.00|-1.69| +39|2023-10-06T21:21:41.8970000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1500|10000|||99.79|99.48|0.00|3.06| +38|2023-10-06T21:21:41.9420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.45|99.05|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:41.9420000-07:00|96|Medica II|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +37|2023-10-06T21:21:41.9870000-07:00|40022472|Zeromus|0001A49C|871574|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:21:41.9870000-07:00|40022472|Zeromus|0001A491|830144|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +39|2023-10-06T21:21:41.9870000-07:00|10FF0007|Kehabiqo Febiqo|120522|129844|10000|10000|||99.72|93.99|0.00|3.12| +39|2023-10-06T21:21:41.9870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.45|99.05|0.00|-3.12| +37|2023-10-06T21:21:42.1200000-07:00|40022472|Zeromus|0001A49B|825297|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +261|2023-10-06T21:21:41.6640000-07:00|Change|10FF0009||||||||||||||| +21|2023-10-06T21:21:42.2100000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|825297|40478540|10000|10000|||100.00|80.10|0.00|0.00|120522|129844|10000|10000|||99.80|92.01|0.00|3.11|0001A4A0|0|1| +26|2023-10-06T21:21:42.2100000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:21:42.2100000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|350D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|825297|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||97.81|108.24|0.00|2.84|0001A4A1|0|1| +21|2023-10-06T21:21:42.2530000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|726003|11570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|825297|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||97.81|108.24|0.00|2.84|0001A4A2|0|1| +261|2023-10-06T21:21:41.7840000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:21:42.3430000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.13|93.35|0.00|0.92|82773|82773|10000|10000|||97.13|93.35|0.00|0.92|0001A4A3|0|1| +38|2023-10-06T21:21:42.3430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|32||97.13|93.35|0.00|0.92|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:42.3430000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +37|2023-10-06T21:21:42.3870000-07:00|40022472|Zeromus|0001A49D|802115|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|41700000|| +39|2023-10-06T21:21:42.3870000-07:00|10FF0009|Zewo Negiwo|58211|81177|4660|10000|||103.17|94.90|0.00|-0.43| +38|2023-10-06T21:21:42.3870000-07:00|40022472|Zeromus|005A5A00|802115|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:21:42.0100000-07:00|Change|10FF0001||||| +261|2023-10-06T21:21:42.0100000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T21:21:42.5210000-07:00|10FF0009|Zewo Negiwo|HoT|4C3|1ED0|58211|81177|4660|10000|||103.17|94.90|0.00|-0.43|10FF0009|Zewo Negiwo|1|58211|81177|4660|10000|||103.17|94.90|0.00|-0.43| +37|2023-10-06T21:21:42.5210000-07:00|10FF0009|Zewo Negiwo|0001A49E|73320|81177|4660|10000|0||103.17|94.90|0.00|-0.43|1800|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:21:42.5210000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +21|2023-10-06T21:21:42.5210000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40022472|Zeromus|714003|19150000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|802115|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.87|95.05|0.00|-3.08|0001A4A4|0|1| +21|2023-10-06T21:21:42.5210000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|30360000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|802115|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1500|10000|||99.81|99.17|0.00|3.13|0001A4A5|0|1| +37|2023-10-06T21:21:42.5650000-07:00|40022472|Zeromus|0001A49F|786879||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:42.5650000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|103.17|94.90|0.00|-0.43| +21|2023-10-06T21:21:42.5650000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|45840000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|120522|129844|10000|10000|||99.90|89.61|0.00|3.10|802115|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A4A6|0|1| +261|2023-10-06T21:21:42.2480000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T21:21:42.6530000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1223|129071|129071|9200|10000|||100.87|95.05|0.00|-3.08|10FF0009|Zewo Negiwo|0|73320|81177|4660|10000|||103.17|94.90|0.00|-0.57| +37|2023-10-06T21:21:42.6530000-07:00|10FF0001|Sesuga Sapisuga|0001A49E|129071|129071|9200|10000|8||100.87|95.05|0.00|-3.08|1301|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:21:42.6530000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +21|2023-10-06T21:21:42.6540000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|154003|67600000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|786879|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.45|99.05|0.00|-3.12|0001A4A7|0|1| +261|2023-10-06T21:21:42.2480000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T21:21:42.6980000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|786879|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.45|99.05|0.00|-3.12|0001A4A8|0|1| +37|2023-10-06T21:21:42.7420000-07:00|40022472|Zeromus|0001A4A0|783946||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:42.7420000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|352003|5A080000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|786879|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4000|10000|||100.85|98.77|0.00|-3.10|0001A4A9|0|1| +21|2023-10-06T21:21:42.7420000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|712003|E510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|786879|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.09|93.49|0.00|-0.08|0001A4AA|0|1| +38|2023-10-06T21:21:42.7420000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3700|10000|23||100.85|98.77|0.00|-3.10|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:21:42.7420000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +24|2023-10-06T21:21:42.7870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1213|120522|129844|10000|10000|||99.92|88.93|0.00|3.10|10FF0009|Zewo Negiwo|0|73320|81177|4660|10000|||103.17|94.90|0.00|-1.24| +37|2023-10-06T21:21:42.7870000-07:00|10FF0007|Kehabiqo Febiqo|0001A49E|129844|129844|10000|10000|0||99.92|88.93|0.00|3.10|1502|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:21:42.7870000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:21:42.7870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||97.09|93.49|-0.02|-0.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:42.7870000-07:00|1E8|Shade Shift|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +21|2023-10-06T21:21:42.8320000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|144A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|783946|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.03|107.64|0.00|3.02|0001A4AB|0|1| +21|2023-10-06T21:21:42.8320000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.09|93.49|-0.02|-0.08|82773|82773|10000|10000|||97.09|93.49|-0.02|-0.08|0001A4AC|0|1| +38|2023-10-06T21:21:42.8320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||97.09|93.49|-0.02|-0.08|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:42.8320000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +37|2023-10-06T21:21:42.8760000-07:00|40022472|Zeromus|0001A4A1|770365||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:42.9210000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1284|73814|73814|3700|10000|||100.85|98.77|0.00|-3.10|10FF0009|Zewo Negiwo|0|73320|81177|4660|10000|||103.17|94.90|0.00|-1.88| +37|2023-10-06T21:21:42.9210000-07:00|10FF0003|Gegehi Gehi|0001A49E|73814|73814|3700|10000|23||100.85|98.77|0.00|-3.10|2303|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:21:42.9210000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +21|2023-10-06T21:21:42.9660000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40022472|Zeromus|32710003|22500000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|770365|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|88.61|0.00|3.10|0001A4AD|0|1| +37|2023-10-06T21:21:43.0100000-07:00|40022472|Zeromus|0001A4A2|765926||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:43.0100000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||97.09|93.49|-0.02|-0.08| +261|2023-10-06T21:21:42.6420000-07:00|Change|10FF0008||||||||| +24|2023-10-06T21:21:43.0540000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|1297|81809|81809|9700|10000|||100.45|99.05|0.00|-3.12|10FF0009|Zewo Negiwo|0|73320|81177|4660|10000|||103.17|94.90|0.00|-2.89| +37|2023-10-06T21:21:43.0540000-07:00|10FF0006|Wowobora Gogobora|0001A49E|81809|81809|9700|10000|15||100.45|99.05|0.00|-3.12|1B04|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:21:43.0540000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +21|2023-10-06T21:21:43.0550000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40022472|Zeromus|754003|15AB0000|104|8198000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|765926|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1100|10000|||99.81|99.17|0.00|3.13|0001A4AE|0|1| +38|2023-10-06T21:21:43.0550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1100|10000|12||99.81|99.17|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:43.0550000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:21:43.0980000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|200004|21DF0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|73320|81177|4660|10000|||103.17|94.90|0.00|-2.89|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4AF|0|1| +37|2023-10-06T21:21:43.1430000-07:00|40022472|Zeromus|0001A4A4|759505||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:42.7600000-07:00|Change|10FF0009||||||||||||||||| +24|2023-10-06T21:21:43.1880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|13BC|81541|81541|1100|10000|||99.81|99.17|-0.02|3.11|10FF0009|Zewo Negiwo|0|73320|81177|4660|10000|||103.17|94.90|0.00|-2.93| +37|2023-10-06T21:21:43.1880000-07:00|10FF0004|Buhojaqe Zijaqe|0001A49E|81541|81541|1100|10000|12||99.81|99.17|-0.02|3.11|1C05|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:21:43.1880000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +21|2023-10-06T21:21:43.1880000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|756003|4D340000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|759505|40478540|10000|10000|||100.00|80.10|0.00|0.00|73320|81177|4660|10000|||103.17|94.90|0.00|-2.93|0001A4B0|0|1| +21|2023-10-06T21:21:43.1880000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40022472|Zeromus|710003|E740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|759505|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.87|95.05|0.00|-3.08|0001A4B1|0|1| +37|2023-10-06T21:21:43.2320000-07:00|40022472|Zeromus|0001A4A8|759356||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:43.2770000-07:00|40022472|Zeromus|0001A4A7|732892||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:43.2770000-07:00|40022472|Zeromus|0001A4AA|729227||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:43.2770000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|759356|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3700|10000|||100.85|98.77|0.00|-3.10|0001A4B2|0|1| +24|2023-10-06T21:21:43.3220000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1212|82773|82773|10000|10000|||97.09|93.49|-0.02|-0.08|10FF0009|Zewo Negiwo|0|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93| +37|2023-10-06T21:21:43.3220000-07:00|10FF000A|Dukaro Nezikaro|0001A49E|82773|82773|10000|10000|12||97.09|93.49|-0.02|-0.08|1E06|0|0|01|06000096|0|41700000|| +26|2023-10-06T21:21:43.3220000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +37|2023-10-06T21:21:43.3220000-07:00|40022472|Zeromus|0001A4A5|716885||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:43.3220000-07:00|10FF0003|Gegehi Gehi|HoT|0|1160|73814|73814|3700|10000|||100.85|98.77|0.00|-3.10|10FF0009|Zewo Negiwo|0|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93| +21|2023-10-06T21:21:43.3220000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40022472|Zeromus|256003|AE024001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|759356|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.09|93.49|-0.02|-0.08|0001A4B3|0|1| +38|2023-10-06T21:21:43.3220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3700|10000|23||100.85|98.77|0.00|-3.10|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:21:43.3220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||97.09|93.49|-0.02|-0.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:43.3220000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|82773|82773| +30|2023-10-06T21:21:43.3220000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:21:43.3650000-07:00|10FF0007|Kehabiqo Febiqo|0001A4A6|112048||||||99.93|88.52|0.00|3.14| +20|2023-10-06T21:21:43.3650000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|2.783|100.45|99.05|0.00|-3.12| +261|2023-10-06T21:21:42.9910000-07:00|Change|10FF0006||||||||||||| +24|2023-10-06T21:21:43.4100000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|11E4|81541|81541|1100|10000|||99.81|99.15|0.00|3.00|10FF0009|Zewo Negiwo|0|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93| +38|2023-10-06T21:21:43.4100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1650|10000|12||99.81|99.15|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:43.4550000-07:00|10FF0008|Kokosaze Lulusaze|0001A49E|90216|90216|10000|10000|18||99.80|102.44|0.00|2.89|1F07|0|0|01|06000096|0|41700000|| +26|2023-10-06T21:21:43.4550000-07:00|96|Medica II|15.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +37|2023-10-06T21:21:43.4550000-07:00|40022472|Zeromus|0001A4AB|711691||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:43.4550000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40022472|Zeromus|720003|35BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|716885|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3700|10000|||100.85|98.77|0.00|-3.10|0001A4B4|0|1| +37|2023-10-06T21:21:43.5000000-07:00|40022472|Zeromus|0001A4A9|688643||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:43.5000000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2F09|112048|129844|10000|10000|||99.93|88.49|0.00|3.14|40022490|Zeromus|0|44|44|0|10000|||80.10|100.00|0.00|1.57| +24|2023-10-06T21:21:43.5000000-07:00|40022472|Zeromus|DoT|A92|4EC|716885|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9700|10000|||100.45|99.05|0.00|-3.12| +24|2023-10-06T21:21:43.5000000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1B3B|81809|81809|9700|10000|||100.45|99.05|0.00|-3.12|10FF0009|Zewo Negiwo|0|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93| +38|2023-10-06T21:21:43.5000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124089|129844|10000|10000|0||99.93|88.49|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:43.5000000-07:00|40022472|Zeromus|005A5A00|687383|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:21:43.5000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.45|99.05|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:21:43.1040000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T21:21:43.5440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||99.80|102.44|0.00|2.89|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:43.5440000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:21:43.5440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||97.09|93.49|0.00|2.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:43.5440000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:21:43.5440000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3700|10000|23||100.85|98.77|0.00|-3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:43.5440000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:21:43.5440000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1650|10000|12||99.81|99.14|0.00|2.94|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:43.5440000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:21:43.5440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.45|99.05|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:43.5440000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:21:43.5440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124089|129844|10000|10000|0||99.93|88.49|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:43.5440000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:21:43.5440000-07:00|10FF0009|Zewo Negiwo|005A5A18|73320|81177|4260|10000|0||103.17|94.90|0.00|-2.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:43.5440000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:21:43.5440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|8||100.87|95.05|0.00|-3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:43.5440000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:21:43.5440000-07:00|10FF0009|Zewo Negiwo|DoT|0|2500|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93|10FF0009|Zewo Negiwo|FFFFFFFF|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93| +24|2023-10-06T21:21:43.5440000-07:00|10FF0009|Zewo Negiwo|HoT|0|10E1|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93|10FF0009|Zewo Negiwo|0|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93| +38|2023-10-06T21:21:43.5440000-07:00|10FF0009|Zewo Negiwo|005A5A18|68169|81177|4810|10000|0||103.17|94.90|0.00|-2.93|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:43.5890000-07:00|40022472|Zeromus|0001A4AD|678599||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:43.5890000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|108A|129071|129071|9200|10000|||100.87|95.05|0.00|-3.08|10FF0009|Zewo Negiwo|0|73320|81177|4260|10000|||103.17|94.90|0.00|-2.93| +38|2023-10-06T21:21:43.5890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|8||100.87|95.05|0.00|-3.08|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:21:43.2270000-07:00|Change|10FF0003||| +26|2023-10-06T21:21:43.6770000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:21:43.6770000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|724003|280B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|678599|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.95|101.89|0.00|2.91|0001A4B5|0|1| +21|2023-10-06T21:21:43.7220000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|716003|E100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|678599|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.87|95.05|0.00|-3.08|0001A4B6|0|1| +31|2023-10-06T21:21:43.7220000-07:00|10FF0001||||| +37|2023-10-06T21:21:43.7660000-07:00|40022472|Zeromus|0001A4B1|674899||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:43.8110000-07:00|40022472|Zeromus|0001A4B2|674871||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:43.8990000-07:00|10FF0009|Zewo Negiwo|0001A4AF|76840||||||103.17|94.90|0.00|-2.93| +37|2023-10-06T21:21:43.9440000-07:00|40022472|Zeromus|0001A4B3|564789||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:43.9890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|100.00|97.65|0.00|3.01| +261|2023-10-06T21:21:43.6140000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:43.7090000-07:00|Change|10FF0009||||||||||||||||| +38|2023-10-06T21:21:44.0770000-07:00|40022DCF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:21:44.0770000-07:00|40022472|Zeromus|0001A4AE|559242||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:44.0770000-07:00|40022DCF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:21:43.7090000-07:00|Change|40022DC7||||| +37|2023-10-06T21:21:44.2560000-07:00|40022472|Zeromus|0001A4B6|555642||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:44.3020000-07:00|40022472|Zeromus|0001A4B5|545391||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:44.3020000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|720003|13FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|559242|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.36|100.39|0.00|-3.12|0001A4B7|0|1| +39|2023-10-06T21:21:44.3450000-07:00|40022DBB|Bunshin|75608|78475|10000|10000|||99.82|83.62|0.00|3.09| +261|2023-10-06T21:21:43.9320000-07:00|Add|40022DCF||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:21:43.9320000-07:00|40022DCF|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.42|97.31|0.00|0.02| +261|2023-10-06T21:21:44.0460000-07:00|Change|10FF0006||||| +261|2023-10-06T21:21:44.0460000-07:00|Change|40022DCF||| +37|2023-10-06T21:21:44.4790000-07:00|40022472|Zeromus|0001A4B0|525627||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:44.4790000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|103.17|94.90|0.00|-2.93| +261|2023-10-06T21:21:44.1630000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T21:21:44.5240000-07:00|10FF0003|Gegehi Gehi|73814|73814|3900|10000|||100.85|98.77|0.00|-3.10| +21|2023-10-06T21:21:44.5240000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|124089|129844|10000|10000|||99.93|88.49|0.00|3.14|124089|129844|10000|10000|||99.93|88.49|0.00|3.14|0001A4B8|0|1| +38|2023-10-06T21:21:44.5240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124089|129844|10000|10000|0||99.93|88.49|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:44.5240000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:21:44.6140000-07:00|40022472|Zeromus|0001A4B4|511872||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:44.1630000-07:00|Change|4002248F||||||||| +261|2023-10-06T21:21:44.1630000-07:00|Change|40022490||||||||| +261|2023-10-06T21:21:44.1630000-07:00|Change|4002248D||||||||| +261|2023-10-06T21:21:44.1630000-07:00|Change|4002248E||||||||| +261|2023-10-06T21:21:44.1630000-07:00|Change|4002248C||||||||| +261|2023-10-06T21:21:44.2750000-07:00|Change|10FF0003||| +20|2023-10-06T21:21:44.7030000-07:00|4002248C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.05|96.39|0.00|0.00| +20|2023-10-06T21:21:44.7030000-07:00|4002248D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.50|100.88|0.00|0.00| +20|2023-10-06T21:21:44.7030000-07:00|4002248E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.20|92.97|0.00|0.00| +20|2023-10-06T21:21:44.7030000-07:00|4002248F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.86|95.91|0.00|0.00| +20|2023-10-06T21:21:44.7030000-07:00|40022490|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.91|104.76|0.00|0.00| +39|2023-10-06T21:21:44.7030000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.36|100.39|0.00|-3.12| +39|2023-10-06T21:21:44.7470000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||103.44|102.10|0.00|-3.02| +24|2023-10-06T21:21:44.7470000-07:00|40022472|Zeromus|DoT|0|18D6|511872|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|82773|82773|10000|10000|||97.09|93.49|0.00|2.93| +38|2023-10-06T21:21:44.7470000-07:00|40022472|Zeromus|005A5A00|505514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T21:21:44.8800000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9400|10000|||100.87|95.05|0.00|-3.08| +39|2023-10-06T21:21:44.8800000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1850|10000|||100.05|97.28|0.00|-3.14| +261|2023-10-06T21:21:44.4610000-07:00|Change|10FF0001||| +21|2023-10-06T21:21:44.9250000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|93C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|505514|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.37|100.28|-0.02|3.08|0001A4B9|0|1| +21|2023-10-06T21:21:44.9250000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|754003|3E920000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|505514|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1850|10000|||100.05|97.28|0.00|-3.14|0001A4BA|0|1| +21|2023-10-06T21:21:44.9250000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.09|93.49|0.00|2.93|82773|82773|10000|10000|||97.09|93.49|0.00|2.93|0001A4BB|0|1| +21|2023-10-06T21:21:44.9250000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|716003|12B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|505514|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.09|93.49|0.00|2.93|0001A4BC|0|1| +38|2023-10-06T21:21:44.9250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||97.09|93.49|0.00|2.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:44.9250000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +39|2023-10-06T21:21:44.9700000-07:00|10FF0007|Kehabiqo Febiqo|125387|129844|10000|10000|||99.93|88.49|0.00|3.14| +39|2023-10-06T21:21:45.0140000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.45|99.05|0.00|-3.12| +21|2023-10-06T21:21:45.0140000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40022472|Zeromus|35712003|33960000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|505514|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||100.87|95.05|0.00|-3.08|0001A4BD|0|1| +37|2023-10-06T21:21:45.0590000-07:00|10FF0007|Kehabiqo Febiqo|0001A4B8|125387|129844|10000|10000|0||99.93|88.49|0.00|3.14|1500|0|0|01|09000769|0|41F00000|| +38|2023-10-06T21:21:45.0590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125387|129844|10000|10000|0||99.93|88.49|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:45.1040000-07:00|40022472|Zeromus|0001A4B7|500397||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:45.1040000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|25520000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|505514|40478540|10000|10000|||100.00|80.10|0.00|0.00|76840|81177|4810|10000|||103.17|94.90|0.00|-2.93|0001A4BE|0|1| +34|2023-10-06T21:21:45.1040000-07:00|40022DCF|Carbuncle|40022DCF|Carbuncle|01| +261|2023-10-06T21:21:44.6710000-07:00|Change|40022DCF||| +21|2023-10-06T21:21:45.1490000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40022472|Zeromus|722003|36970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|500397|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.40|100.09|0.00|3.03|0001A4BF|0|1| +20|2023-10-06T21:21:45.1490000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|100.85|98.77|0.00|-3.10| +38|2023-10-06T21:21:45.1490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||100.40|100.09|0.00|3.03|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:45.1490000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +261|2023-10-06T21:21:44.7820000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:21:44.7820000-07:00|Change|40022490||||||||||| +261|2023-10-06T21:21:44.7820000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:21:44.7820000-07:00|Change|10FF0009||| +39|2023-10-06T21:21:45.4170000-07:00|10FF0009|Zewo Negiwo|77651|81177|4631|10000|||103.17|94.90|0.00|-2.93| +21|2023-10-06T21:21:45.4170000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40022472|Zeromus|716003|9BFE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|500397|40478540|10000|10000|||100.00|80.10|0.00|0.00|125387|129844|10000|10000|||99.93|88.49|0.00|3.14|0001A4C0|0|1| +21|2023-10-06T21:21:45.4170000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.09|93.49|0.00|2.93|82773|82773|10000|10000|||97.09|93.49|0.00|2.93|0001A4C1|0|1| +38|2023-10-06T21:21:45.4170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125387|129844|10000|10000|0||99.93|88.49|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:45.4170000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:21:45.4170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||97.09|93.49|0.00|2.93|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:45.4170000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +37|2023-10-06T21:21:45.4610000-07:00|40022472|Zeromus|0001A4BC|495610||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:45.4610000-07:00|40022D58|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.44|102.10|0.00|-2.99|0|0|0||||||| +26|2023-10-06T21:21:45.4610000-07:00|77B|Summon Order|30.00|40022D58|Ruby Carbuncle|40022D58|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:21:45.4610000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1450|10000|||100.05|97.28|0.00|-3.14|81541|81541|1450|10000|||100.05|97.28|0.00|-3.14|0001A4C2|0|1| +22|2023-10-06T21:21:45.5500000-07:00|40022D58|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.41|99.97|0.00|-3.12|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4C3|0|8| +22|2023-10-06T21:21:45.5500000-07:00|40022D58|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3900|10000|||100.85|98.77|0.00|-3.10|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4C3|1|8| +22|2023-10-06T21:21:45.5500000-07:00|40022D58|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.45|99.05|0.00|-3.12|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4C3|2|8| +22|2023-10-06T21:21:45.5500000-07:00|40022D58|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1450|10000|||100.05|97.28|0.00|-3.14|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4C3|3|8| +22|2023-10-06T21:21:45.5500000-07:00|40022D58|Ruby Carbuncle|323|Whispering Dawn|10FF0009|Zewo Negiwo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|77651|81177|4631|10000|||103.17|94.90|0.00|-2.93|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4C3|4|8| +22|2023-10-06T21:21:45.5500000-07:00|40022D58|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9400|10000|||100.87|95.05|0.00|-3.08|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4C3|5|8| +22|2023-10-06T21:21:45.5500000-07:00|40022D58|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||97.09|93.49|0.00|2.93|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4C3|6|8| +22|2023-10-06T21:21:45.5500000-07:00|40022D58|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|125387|129844|10000|10000|||99.93|88.49|0.00|3.14|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4C3|7|8| +261|2023-10-06T21:21:45.2490000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:21:45.5940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|495610|40478540|10000|10000|||100.00|80.10|0.00|0.00|125387|129844|10000|10000|||99.92|88.48|0.00|3.13|0001A4C4|0|1| +21|2023-10-06T21:21:45.5940000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|497B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|125387|129844|10000|10000|||99.92|88.48|0.00|3.13|495610|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A4C5|0|1| +261|2023-10-06T21:21:45.2490000-07:00|Change|4002248E||||||||||| +261|2023-10-06T21:21:45.2490000-07:00|Change|4002248C||||||||||| +23|2023-10-06T21:21:45.6370000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +21|2023-10-06T21:21:45.6390000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40022472|Zeromus|150003|51BB0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|495610|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.45|99.05|0.00|-3.12|0001A4C6|0|1| +261|2023-10-06T21:21:45.2490000-07:00|Change|4002248B||||||||| +261|2023-10-06T21:21:45.2490000-07:00|Change|40022489||||||||| +261|2023-10-06T21:21:45.2490000-07:00|Change|40022488||||||||| +261|2023-10-06T21:21:45.2490000-07:00|Change|4002248A||||||||| +261|2023-10-06T21:21:45.2490000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T21:21:45.6820000-07:00|40022472|Zeromus|0001A4B9|493246||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:45.7280000-07:00|40022472|Zeromus|0001A4BA|477228||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:45.7280000-07:00|40022488|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.09|85.90|0.00|0.00| +20|2023-10-06T21:21:45.7280000-07:00|40022489|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|114.41|94.25|0.00|0.00| +20|2023-10-06T21:21:45.7280000-07:00|4002248A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.99|95.29|0.00|0.00| +20|2023-10-06T21:21:45.7280000-07:00|4002248B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.71|99.75|0.00|0.00| +37|2023-10-06T21:21:45.7720000-07:00|40022472|Zeromus|0001A4BF|463253||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:45.7720000-07:00|40022472|Zeromus|0001A4BD|450047||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:45.7720000-07:00|10FF0001|Sesuga Sapisuga|0001A4BD|129071|129071|10000|10000|8||100.86|95.04|0.00|-2.53|1300|0|0|0| +21|2023-10-06T21:21:45.7720000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|720003|12FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|477228|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.42|99.93|0.00|-3.12|0001A4C7|0|1| +261|2023-10-06T21:21:45.5290000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:21:45.9950000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||97.02|93.49|0.00|3.03| +21|2023-10-06T21:21:45.9950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|714003|8DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|450047|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.90|94.19|0.00|-2.55|0001A4C8|0|1| +21|2023-10-06T21:21:45.9950000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40022472|Zeromus|550003|4E0C0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|450047|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||97.02|93.49|0.00|3.03|0001A4C9|0|1| +38|2023-10-06T21:21:45.9950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||97.02|93.49|0.00|3.03|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:45.9950000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:21:45.9950000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +31|2023-10-06T21:21:45.9950000-07:00|10FF0001||||| +261|2023-10-06T21:21:45.8080000-07:00|Change|4002248B||||||||||| +261|2023-10-06T21:21:45.8080000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:21:45.8080000-07:00|Change|4002248A||||||||||| +261|2023-10-06T21:21:45.8080000-07:00|Change|40022488||||||||||| +37|2023-10-06T21:21:46.1290000-07:00|40022472|Zeromus|0001A4C4|447083||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:46.1290000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|450047|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1450|10000|||97.66|97.90|0.00|-1.44|0001A4CA|0|1| +261|2023-10-06T21:21:45.8080000-07:00|Change|10FF0009||||||||||| +24|2023-10-06T21:21:46.2170000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1075|90216|90216|10000|10000|||100.27|99.93|-0.01|-1.64|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1450|10000|||97.14|98.31|0.00|-1.30| +38|2023-10-06T21:21:46.2170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||100.27|99.93|-0.01|-1.64|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:21:46.2620000-07:00|40022472|Zeromus|0001A4C6|426160||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:46.2620000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|10A0|82773|82773|10000|10000|||96.99|93.47|0.00|2.84|10FF0009|Zewo Negiwo|0|77651|81177|4631|10000|||103.80|94.53|0.00|1.78| +38|2023-10-06T21:21:46.2620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||96.99|93.47|0.00|2.84|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:21:46.3080000-07:00|10FF0003|Gegehi Gehi|HoT|0|11AB|73814|73814|3900|10000|||98.44|98.73|0.00|-2.53|10FF0009|Zewo Negiwo|0|77651|81177|4631|10000|||103.80|94.53|0.00|1.78| +38|2023-10-06T21:21:46.3080000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|23||98.44|98.73|0.00|-2.53|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:21:46.3500000-07:00|40022472|Zeromus|0001A4C0|386226||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:46.3500000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40022472|Zeromus|750003|45DB0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|447083|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||99.70|99.05|0.00|-1.69|0001A4CB|0|1| +38|2023-10-06T21:21:46.3500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|15||99.70|99.05|0.00|-1.69|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:46.3500000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:21:46.3940000-07:00|40022472|Zeromus|0001A4BE|376672||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:46.3940000-07:00|40022472|Zeromus|0001A4C7|371813||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:46.3940000-07:00|10FF0007|Kehabiqo Febiqo|0001A4C5|106576||||||99.14|87.63|0.00|3.10| +24|2023-10-06T21:21:46.3940000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|11A0|81541|81541|1450|10000|||96.62|98.76|0.00|-1.15|10FF0009|Zewo Negiwo|0|77651|81177|4631|10000|||104.41|93.96|0.00|1.86| +38|2023-10-06T21:21:46.3950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2000|10000|12||96.62|98.76|0.00|-1.15|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:46.4390000-07:00|10FF0008|Kokosaze Lulusaze|0001A4C3|90216|90216|10000|10000|18||99.97|99.97|-0.02|-1.58|1F00|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T21:21:46.4390000-07:00|13B|Whispering Dawn|21.00|40022D58|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +21|2023-10-06T21:21:46.4390000-07:00|10FF0009|Zewo Negiwo|4094|Dia|40022472|Zeromus|752003|C0E0000|FC010E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|386226|40478540|10000|10000|||100.00|80.10|0.00|0.00|77651|81177|4631|10000|||104.41|93.96|0.00|1.86|0001A4CC|0|1| +24|2023-10-06T21:21:46.4840000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|322B|125387|129844|10000|10000|||99.14|87.63|0.00|3.10|40022490|Zeromus|0|44|44|0|10000|||99.91|104.76|0.00|0.00| +24|2023-10-06T21:21:46.4840000-07:00|40022472|Zeromus|DoT|A92|65A|386226|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9300|10000|||98.87|99.06|0.00|3.01| +24|2023-10-06T21:21:46.4840000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1060|81809|81809|9300|10000|||98.87|99.06|0.00|3.01|10FF0009|Zewo Negiwo|0|77651|81177|4631|10000|||104.41|93.96|0.00|1.86| +38|2023-10-06T21:21:46.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119419|129844|10000|10000|0||99.14|87.63|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:21:46.4840000-07:00|40022472|Zeromus|005A5A00|370187|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:21:46.4840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9850|10000|15||98.87|99.06|0.00|3.01|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:46.5280000-07:00|40022472|Zeromus|0001A4C8|367921||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:46.5280000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||99.14|100.08|0.00|-1.54|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:46.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:21:46.5280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||96.46|93.42|0.00|2.84|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:46.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:21:46.5280000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|23||97.22|99.25|0.00|-2.23|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:21:46.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:21:46.5280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2000|10000|12||96.15|99.17|0.00|-1.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:46.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:21:46.5280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9850|10000|15||98.04|99.11|-0.02|-3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:46.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:21:46.5280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119419|129844|10000|10000|0||99.14|87.63|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:46.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:21:46.5280000-07:00|10FF0009|Zewo Negiwo|005A5A18|77651|81177|4231|10000|0||104.95|93.06|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:46.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:21:46.5280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||102.94|91.95|0.00|-2.43|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:46.5280000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:21:46.5280000-07:00|10FF0009|Zewo Negiwo|DoT|0|2656|77651|81177|4231|10000|||104.95|93.06|0.00|-2.71|10FF0009|Zewo Negiwo|FFFFFFFF|77651|81177|4231|10000|||104.95|93.06|0.00|-2.71| +24|2023-10-06T21:21:46.5280000-07:00|10FF0009|Zewo Negiwo|HoT|0|10B3|77651|81177|4231|10000|||104.95|93.06|0.00|-2.71|10FF0009|Zewo Negiwo|0|77651|81177|4231|10000|||104.95|93.06|0.00|-2.71| +38|2023-10-06T21:21:46.5280000-07:00|10FF0009|Zewo Negiwo|005A5A18|72112|81177|4781|10000|0||104.95|93.06|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:46.5720000-07:00|10FF0003|Gegehi Gehi|0001A4C3|73814|73814|3900|10000|23||97.22|99.25|0.00|-2.23|2301|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:21:46.5720000-07:00|13B|Whispering Dawn|21.00|40022D58|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +24|2023-10-06T21:21:46.5720000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|117F|129071|129071|10000|10000|||102.94|91.95|0.00|-2.43|10FF0009|Zewo Negiwo|0|77651|81177|4231|10000|||104.95|93.06|0.00|-2.71| +261|2023-10-06T21:21:46.1610000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:21:46.2740000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:21:46.5720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||102.99|91.29|0.00|-2.32|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:21:46.6620000-07:00|40022472|Zeromus|0001A4CA|367775||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:46.2740000-07:00|Change|40022486||||||||| +261|2023-10-06T21:21:46.2740000-07:00|Change|40022487||||||||| +261|2023-10-06T21:21:46.2740000-07:00|Change|40022485||||||||| +261|2023-10-06T21:21:46.2740000-07:00|Change|40022484||||||||| +261|2023-10-06T21:21:46.2740000-07:00|Change|40022483||||||||| +261|2023-10-06T21:21:46.3690000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:21:46.4680000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:21:46.7060000-07:00|10FF0006|Wowobora Gogobora|0001A4C3|81809|81809|9850|10000|15||95.80|99.42|0.00|-1.79|1B02|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:21:46.7060000-07:00|13B|Whispering Dawn|21.00|40022D58|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:21:46.7060000-07:00|40022472|Zeromus|0001A4C9|347795||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:46.7060000-07:00|10FF000A|Dukaro Nezikaro|0001A4C9|82773|82773|10000|10000|12||93.83|91.98|0.00|2.97|1E00|0|0|01|03000A82|01|41F00000|| +20|2023-10-06T21:21:46.7060000-07:00|40022483|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.64|95.76|0.00|0.00| +20|2023-10-06T21:21:46.7060000-07:00|40022484|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.12|109.40|0.00|0.00| +20|2023-10-06T21:21:46.7060000-07:00|40022485|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.16|95.83|0.00|0.00| +20|2023-10-06T21:21:46.7060000-07:00|40022486|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.02|100.00|0.00|0.00| +20|2023-10-06T21:21:46.7060000-07:00|40022487|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.49|86.81|0.00|0.00| +21|2023-10-06T21:21:46.7060000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40022472|Zeromus|720003|57790000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|367775|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.50|100.42|0.00|-1.47|0001A4CD|0|1| +38|2023-10-06T21:21:46.7060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||93.83|91.98|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:46.8390000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4C3|81541|81541|2000|10000|12||94.56|100.04|0.00|-1.10|1C03|0|0|01|0900013B|0|41A80000|| +26|2023-10-06T21:21:46.8390000-07:00|13B|Whispering Dawn|21.00|40022D58|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +20|2023-10-06T21:21:46.8390000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|94.56|100.04|0.00|-1.10| +21|2023-10-06T21:21:46.8830000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||93.28|91.80|0.00|3.00|82773|82773|10000|10000|||93.28|91.80|0.00|3.00|0001A4CE|0|1| +38|2023-10-06T21:21:46.8830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||93.28|91.80|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:46.8830000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +38|2023-10-06T21:21:46.9270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9850|10000|15||95.09|99.39|0.00|-1.71|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:46.9270000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:21:46.9720000-07:00|10FF0009|Zewo Negiwo|0001A4C3|72112|81177|4781|10000|0||105.98|91.27|0.00|2.95|1804|0|0|01|0C00013B|0|41A80000|| +26|2023-10-06T21:21:46.9720000-07:00|13B|Whispering Dawn|21.00|40022D58|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +37|2023-10-06T21:21:47.1060000-07:00|10FF0001|Sesuga Sapisuga|0001A4C3|129071|129071|10000|10000|8||103.96|89.17|0.00|-2.13|1305|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T21:21:47.1060000-07:00|13B|Whispering Dawn|21.00|40022D58|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +21|2023-10-06T21:21:47.1060000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14410000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|119419|129844|10000|10000|||99.14|87.63|0.00|3.10|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4CF|0|1| +261|2023-10-06T21:21:46.6620000-07:00|Remove|40022DC2| +261|2023-10-06T21:21:46.7830000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:21:46.7830000-07:00|Change|40022485||||||||||| +261|2023-10-06T21:21:46.7830000-07:00|Change|40022484||||||||||| +261|2023-10-06T21:21:46.7830000-07:00|Change|40022483||||||||||| +261|2023-10-06T21:21:46.7830000-07:00|Change|40022487||||||||||| +261|2023-10-06T21:21:46.7830000-07:00|Change|40022486||||||||||| +37|2023-10-06T21:21:47.1500000-07:00|40022472|Zeromus|0001A4CB|329912||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:47.1500000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|93.67|100.23|0.00|-1.66| +261|2023-10-06T21:21:46.7830000-07:00|Change|10FF0009||||||||||| +37|2023-10-06T21:21:47.2390000-07:00|10FF000A|Dukaro Nezikaro|0001A4C3|82773|82773|10000|10000|12||92.41|91.55|0.00|3.06|1E06|0|0|02|090004A2|0|C0C00000|||||| +26|2023-10-06T21:21:47.2390000-07:00|13B|Whispering Dawn|21.00|40022D58|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +37|2023-10-06T21:21:47.2840000-07:00|10FF000A|Dukaro Nezikaro|0001A4CE|82773|82773|10000|10000|12||91.95|91.42|-0.01|3.06|1E00|0|0|01|090004A2|0|40C00000|| +21|2023-10-06T21:21:47.2850000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40022472|Zeromus|724003|19FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|329912|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.84|100.77|0.00|-2.86|0001A4D0|0|1| +38|2023-10-06T21:21:47.2850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.95|91.42|-0.01|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:47.3730000-07:00|10FF0007|Kehabiqo Febiqo|0001A4C3|119419|129844|10000|10000|0||99.11|87.61|0.00|3.10|1507|0|0|01|0900013B|0|41A80000|| +26|2023-10-06T21:21:47.3730000-07:00|13B|Whispering Dawn|21.00|40022D58|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +39|2023-10-06T21:21:47.3730000-07:00|40022DBB|Bunshin|75608|78475|10000|10000|||99.82|83.62|0.00|3.09| +38|2023-10-06T21:21:47.3730000-07:00|40022D58|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.44|102.10|0.00|-2.99|0|0|0|||| +30|2023-10-06T21:21:47.3730000-07:00|77B|Summon Order|0.00|40022D58|Ruby Carbuncle|40022D58|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T21:21:47.0190000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:47.1320000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:21:47.5050000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40022472|Zeromus|41710003|29370000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|329912|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||104.43|88.42|0.00|-2.65|0001A4D1|0|1| +38|2023-10-06T21:21:47.5050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||104.43|88.42|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:47.5050000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:21:47.5050000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T21:21:47.5490000-07:00|10FF0003|Gegehi Gehi|73814|73814|4100|10000|||93.14|100.35|0.00|-2.89| +21|2023-10-06T21:21:47.5940000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|720003|89C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|329912|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.68|101.61|-0.02|2.85|0001A4D2|0|1| +261|2023-10-06T21:21:47.2470000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:21:47.6400000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40022472|Zeromus|710003|36B70000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|329912|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.94|91.42|0.00|3.06|0001A4D3|0|1| +261|2023-10-06T21:21:47.2470000-07:00|Change|40022482||||||||| +38|2023-10-06T21:21:47.6400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:47.6400000-07:00|4A2|Ten Chi Jin|5.60|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +261|2023-10-06T21:21:47.2470000-07:00|Change|4002247F||||||||| +261|2023-10-06T21:21:47.2470000-07:00|Change|40022481||||||||| +261|2023-10-06T21:21:47.2470000-07:00|Change|40022480||||||||| +261|2023-10-06T21:21:47.2470000-07:00|Change|4002247E||||||||| +37|2023-10-06T21:21:47.7280000-07:00|40022472|Zeromus|0001A4CC|326826|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|074F|0|41F00000|| +26|2023-10-06T21:21:47.7280000-07:00|74F|Dia|30.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +20|2023-10-06T21:21:47.7280000-07:00|4002247E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.43|96.18|0.00|0.00| +20|2023-10-06T21:21:47.7280000-07:00|4002247F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|103.95|113.23|0.00|0.00| +20|2023-10-06T21:21:47.7280000-07:00|40022480|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.04|100.49|0.00|0.00| +20|2023-10-06T21:21:47.7290000-07:00|40022481|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.92|87.99|0.00|0.00| +20|2023-10-06T21:21:47.7290000-07:00|40022482|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|103.94|89.17|0.00|0.00| +39|2023-10-06T21:21:47.7290000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||93.95|102.08|0.00|2.85| +39|2023-10-06T21:21:47.7740000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||103.44|102.10|0.00|-2.87| +24|2023-10-06T21:21:47.7740000-07:00|40022472|Zeromus|DoT|0|1E1C|329912|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|82773|82773|10000|10000|||91.94|91.42|0.00|2.52| +21|2023-10-06T21:21:47.7740000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|750003|2FC30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|329912|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2000|10000|||94.13|99.96|0.00|2.85|0001A4D4|0|1| +38|2023-10-06T21:21:47.7740000-07:00|40022472|Zeromus|005A5A00|319118|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:21:47.4330000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:21:47.8620000-07:00|40022472|Zeromus|0001A4CD|296725||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:47.8620000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||104.70|88.25|0.00|-2.85| +04|2023-10-06T21:21:47.4330000-07:00|40022DC7|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||99.99|92.31|0.00|3.00| +261|2023-10-06T21:21:47.5290000-07:00|Change|40022DCF||||||||| +261|2023-10-06T21:21:47.5290000-07:00|Remove|40022DC7| +37|2023-10-06T21:21:47.9070000-07:00|10FF0007|Kehabiqo Febiqo|0001A4CF|124604||||||97.71|87.01|0.00|3.10| +39|2023-10-06T21:21:47.9070000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1800|10000|||94.13|99.96|0.00|2.85| +21|2023-10-06T21:21:47.9070000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40022472|Zeromus|710003|389D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|319118|40478540|10000|10000|||100.00|80.10|0.00|0.00|119419|129844|10000|10000|||97.71|87.01|0.00|3.10|0001A4D5|0|1| +261|2023-10-06T21:21:47.5290000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:21:47.9510000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40022472|Zeromus|726003|2A750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|296725|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.80|103.33|0.00|-2.39|0001A4D6|0|1| +39|2023-10-06T21:21:47.9950000-07:00|10FF0007|Kehabiqo Febiqo|125902|129844|10000|10000|||97.26|86.94|0.00|2.70| +39|2023-10-06T21:21:47.9950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||90.85|97.54|0.00|-2.48| +37|2023-10-06T21:21:48.0840000-07:00|40022472|Zeromus|0001A4D0|290072||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:48.0840000-07:00|40022472|Zeromus|0001A4D1|279521||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:48.0840000-07:00|10FF0001|Sesuga Sapisuga|0001A4D1|129071|129071|10000|10000|8||105.92|87.88|0.00|-2.85|1300|0|0|02|0900076E|03|41F00000|||||| +38|2023-10-06T21:21:48.0840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||105.92|87.88|0.00|-2.85|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:48.1290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||90.75|97.26|0.00|-2.80|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:48.1290000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:21:48.1730000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|279521|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||90.75|97.26|0.00|-2.80|0001A4D7|0|1| +261|2023-10-06T21:21:47.7300000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:21:47.7300000-07:00|Change|40022482||||||||||| +261|2023-10-06T21:21:47.7300000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:21:47.7300000-07:00|Change|4002247F||||||||||| +261|2023-10-06T21:21:47.7300000-07:00|Change|4002247E||||||||||| +261|2023-10-06T21:21:47.7300000-07:00|Change|40022481||||||||||| +21|2023-10-06T21:21:48.2630000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|70D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|279521|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||106.26|87.78|0.00|-2.82|0001A4D8|0|1| +31|2023-10-06T21:21:48.2630000-07:00|10FF0001||||| +37|2023-10-06T21:21:48.3510000-07:00|40022472|Zeromus|0001A4D2|277317||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:48.3510000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.157|106.26|90.77|-0.02|2.40| +39|2023-10-06T21:21:48.3960000-07:00|10FF0009|Zewo Negiwo|72923|81177|5002|10000|||106.26|90.77|-0.02|2.40| +38|2023-10-06T21:21:48.3960000-07:00|40022D58|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.44|102.10|0.00|-2.82|0|0|0||||||| +26|2023-10-06T21:21:48.3960000-07:00|7AC|Summon Order II|30.00|40022D58|Ruby Carbuncle|40022D58|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:21:48.3960000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1800|10000|||94.10|99.96|0.00|-2.67|81541|81541|1800|10000|||94.10|99.96|0.00|-2.67|0001A4D9|0|1| +261|2023-10-06T21:21:47.9590000-07:00|Change|10FF0009||||||||||||||||||||||| +38|2023-10-06T21:21:48.4400000-07:00|10FF0009|Zewo Negiwo|005A5A18|72923|81177|5002|10000|0||106.26|90.77|-0.02|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:48.4400000-07:00|4B4|Lucid Dreaming|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +22|2023-10-06T21:21:48.4840000-07:00|40022D58|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4100|10000|||93.00|100.39|0.00|2.81|73956|77430|10000|10000|||103.44|102.10|0.00|-2.88|0001A4DA|0|8| +22|2023-10-06T21:21:48.4840000-07:00|40022D58|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1800|10000|||94.07|99.96|0.00|-2.51|73956|77430|10000|10000|||103.44|102.10|0.00|-2.88|0001A4DA|1|8| +22|2023-10-06T21:21:48.4840000-07:00|40022D58|Ruby Carbuncle|325|Fey Illumination|10FF0009|Zewo Negiwo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|72923|81177|5002|10000|||106.31|90.65|0.00|2.69|73956|77430|10000|10000|||103.44|102.10|0.00|-2.88|0001A4DA|2|8| +22|2023-10-06T21:21:48.4840000-07:00|40022D58|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||90.93|96.70|0.00|-2.88|73956|77430|10000|10000|||103.44|102.10|0.00|-2.88|0001A4DA|3|8| +22|2023-10-06T21:21:48.4840000-07:00|40022D58|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||106.52|87.69|0.00|-2.79|73956|77430|10000|10000|||103.44|102.10|0.00|-2.88|0001A4DA|4|8| +22|2023-10-06T21:21:48.4840000-07:00|40022D58|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||90.77|105.60|-0.02|-3.06|73956|77430|10000|10000|||103.44|102.10|0.00|-2.88|0001A4DA|5|8| +22|2023-10-06T21:21:48.4840000-07:00|40022D58|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|73956|77430|10000|10000|||103.44|102.10|0.00|-2.88|0001A4DA|6|8| +22|2023-10-06T21:21:48.4840000-07:00|40022D58|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|125902|129844|10000|10000|||94.40|86.35|0.00|2.99|73956|77430|10000|10000|||103.44|102.10|0.00|-2.88|0001A4DA|7|8| +261|2023-10-06T21:21:48.0700000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:21:48.5300000-07:00|40022472|Zeromus|0001A4D5|262824||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:48.5300000-07:00|40022472|Zeromus|0001A4D3|248817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:48.5300000-07:00|10FF000A|Dukaro Nezikaro|0001A4D3|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|1E00|0|0|01|090004A2|01|409820BE|| +37|2023-10-06T21:21:48.5740000-07:00|40022472|Zeromus|0001A4D6|237948||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:48.5740000-07:00|40022472|Zeromus|0001A4D4|225721||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:48.5740000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||90.77|105.60|-0.02|-3.06|90216|90216|10000|10000|||90.77|105.60|-0.02|-3.06|0001A4DB|0|1| +21|2023-10-06T21:21:48.5740000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|750003|2E970000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|277317|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4100|10000|||93.00|100.39|0.00|2.81|0001A4DC|0|1| +38|2023-10-06T21:21:48.5740000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|23||93.00|100.39|0.00|2.81|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:48.5740000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:21:48.5740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||90.77|105.60|-0.02|-3.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:21:48.5740000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T21:21:48.6180000-07:00|40022472|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|480B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|125902|129844|10000|10000|||93.93|85.77|0.00|3.02|225721|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001A4DD|0|1| +261|2023-10-06T21:21:48.1860000-07:00|Change|4002247D||||||||| +261|2023-10-06T21:21:48.1860000-07:00|Change|4002247A||||||||| +261|2023-10-06T21:21:48.1860000-07:00|Change|4002247C||||||||| +261|2023-10-06T21:21:48.1860000-07:00|Change|4002247B||||||||| +261|2023-10-06T21:21:48.1860000-07:00|Change|40022479||||||||| +261|2023-10-06T21:21:48.1860000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:21:48.6640000-07:00|4002248C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.05|96.39|0.00|0.00|0001A4DE|0|0| +21|2023-10-06T21:21:48.6640000-07:00|4002248D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.50|100.88|0.00|0.00|0001A4DF|0|0| +21|2023-10-06T21:21:48.6640000-07:00|4002248E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.20|92.97|0.00|0.00|0001A4E0|0|0| +21|2023-10-06T21:21:48.6640000-07:00|4002248F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.86|95.91|0.00|0.00|0001A4E1|0|0| +21|2023-10-06T21:21:48.6640000-07:00|40022490|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.91|104.76|0.00|0.00|0001A4E2|0|0| +21|2023-10-06T21:21:48.6640000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40022472|Zeromus|550003|4F700000|900000E|4A28000|200000F|A828000|0|0|0|0|0|0|0|0|0|0|225721|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|0001A4E3|0|1| +38|2023-10-06T21:21:48.6640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:48.6640000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|82773|82773| +26|2023-10-06T21:21:48.6640000-07:00|4A2|Ten Chi Jin|4.58|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +261|2023-10-06T21:21:48.2850000-07:00|Change|4002248D||||||||||| +261|2023-10-06T21:21:48.2850000-07:00|Change|4002248C||||||||||| +261|2023-10-06T21:21:48.2850000-07:00|Change|4002248F||||||||||| +261|2023-10-06T21:21:48.2850000-07:00|Change|40022490||||||||||| +261|2023-10-06T21:21:48.2850000-07:00|Change|4002248E||||||||||| +261|2023-10-06T21:21:48.2850000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:21:48.7080000-07:00|40022472|Zeromus|0001A4D7|225569||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:48.7080000-07:00|40022472|Zeromus|8B6B|Nostalgia|40022472|Zeromus|4.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:21:48.7080000-07:00|40022479|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.15|113.61|0.00|0.00| +20|2023-10-06T21:21:48.7080000-07:00|4002247A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|86.45|95.47|0.00|0.00| +261|2023-10-06T21:21:48.2850000-07:00|Change|40022472||||||||||||| +20|2023-10-06T21:21:48.7080000-07:00|4002247B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.33|91.77|0.00|0.00| +20|2023-10-06T21:21:48.7080000-07:00|4002247D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.42|96.45|0.00|0.00| +20|2023-10-06T21:21:48.7080000-07:00|4002247C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.33|100.77|0.00|0.00| +21|2023-10-06T21:21:48.7080000-07:00|10FF0003|Gegehi Gehi|07|attack|40022472|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|225721|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3900|10000|||93.00|100.39|0.00|2.81|0001A4E4|0|1| +261|2023-10-06T21:21:48.3940000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:21:48.7970000-07:00|40022472|Zeromus|0001A4D8|223764||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:48.8410000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40022472|Zeromus|152003|6C8E0000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|225569|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||91.71|94.55|-0.01|2.93|0001A4E5|0|1| +38|2023-10-06T21:21:48.8410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||91.71|94.55|-0.01|2.93|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:48.8410000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:21:48.3940000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:21:48.8860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||91.71|94.55|-0.01|2.93|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:48.8860000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +39|2023-10-06T21:21:48.9750000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||91.94|91.42|0.00|2.52| +21|2023-10-06T21:21:48.9750000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40022472|Zeromus|710003|B080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|223764|40478540|10000|10000|||100.00|80.10|0.00|0.00|125902|129844|10000|10000|||92.67|84.25|0.00|3.10|0001A4E6|0|1| +21|2023-10-06T21:21:48.9750000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|752003|3AE50000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|223764|40478540|10000|10000|||100.00|80.10|0.00|0.00|72923|81177|5002|10000|||106.46|90.23|-0.02|-2.58|0001A4E7|0|1| +261|2023-10-06T21:21:48.8090000-07:00|Change|4002247B||||||||||| +261|2023-10-06T21:21:48.8090000-07:00|Change|4002247D||||||||||| +261|2023-10-06T21:21:48.8090000-07:00|Change|4002247C||||||||||| +261|2023-10-06T21:21:48.8090000-07:00|Change|40022479||||||||||| +261|2023-10-06T21:21:48.8090000-07:00|Change|4002247A||||||||||| +37|2023-10-06T21:21:49.1970000-07:00|10FF0008|Kokosaze Lulusaze|0001A4DB|90216|90216|10000|10000|18||88.79|107.50|0.00|-1.06|1F00|0|0|01|08000353|0|40A00000|| +24|2023-10-06T21:21:49.1970000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|21D0|90216|90216|10000|10000|||88.79|107.50|0.00|-1.06|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||88.79|107.50|0.00|-1.06| +38|2023-10-06T21:21:49.1970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||88.79|107.50|0.00|-1.06|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:21:49.2420000-07:00|40022472|Zeromus|0001A4E4|223735||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:49.2420000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|21AE|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|10FF0009|Zewo Negiwo|0|72923|81177|4602|10000|||106.46|90.23|0.00|-2.57| +21|2023-10-06T21:21:49.2420000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40022472|Zeromus|726003|C3B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|223764|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.79|107.50|0.00|-1.06|0001A4E8|0|1| +38|2023-10-06T21:21:49.2420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||88.79|107.50|0.00|-1.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:21:49.2420000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:21:49.2420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:49.2860000-07:00|10FF0003|Gegehi Gehi|0001A4DA|73814|73814|3900|10000|23||92.52|99.90|0.00|2.90|2300|0|0|01|0900013D|0|41A00000|| +26|2023-10-06T21:21:49.2860000-07:00|13D|Fey Illumination|20.00|40022D58|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +20|2023-10-06T21:21:49.2860000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|91.08|97.53|0.00|-2.25| +37|2023-10-06T21:21:49.3310000-07:00|40022472|Zeromus|0001A4DC|211808||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:21:49.3310000-07:00|10FF0003|Gegehi Gehi|HoT|0|1B21|73814|73814|3900|10000|||92.52|99.90|0.00|2.90|40022D58|Ruby Carbuncle|0|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99| +38|2023-10-06T21:21:49.3310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|23||92.52|99.90|0.00|2.90|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:49.3740000-07:00|40022472|Zeromus|0001A4E3|191472||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:49.3740000-07:00|10FF000A|Dukaro Nezikaro|0001A4E3|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|1E00|0|0|02|03000A82|02|41F00000|||||| +24|2023-10-06T21:21:49.3750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1B28|81541|81541|1800|10000|||90.70|97.13|0.00|-2.45|40022D58|Ruby Carbuncle|0|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99| +38|2023-10-06T21:21:49.3750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|12||90.70|97.13|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:49.3750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:49.4210000-07:00|10FF0004|Buhojaqe Zijaqe|0001A4DA|81541|81541|2350|10000|12||90.70|97.13|0.00|-2.45|1C01|0|0|01|0A00013D|0|41A00000|| +26|2023-10-06T21:21:49.4210000-07:00|13D|Fey Illumination|20.00|40022D58|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:21:49.4210000-07:00|10FF0007|Kehabiqo Febiqo|0001A4DD|107459||||||91.73|83.52|0.00|3.10| +38|2023-10-06T21:21:49.4210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|12||90.70|97.13|0.00|-2.45|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:49.4210000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:21:49.0410000-07:00|Change|10FF0009||||||||||||||||||||||| +261|2023-10-06T21:21:49.0410000-07:00|Change|40022DCF||||||||| +24|2023-10-06T21:21:49.4650000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|38ED|107459|129844|10000|10000|||91.57|83.44|0.00|3.10|40022D58|Ruby Carbuncle|0|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99| +24|2023-10-06T21:21:49.4650000-07:00|10FF0006|Wowobora Gogobora|HoT|0|19E9|81809|81809|10000|10000|||91.01|94.91|0.00|2.58|10FF0009|Zewo Negiwo|0|72923|81177|4602|10000|||106.46|90.23|0.00|-2.57| +38|2023-10-06T21:21:49.4650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122032|129844|10000|10000|0||91.57|83.44|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:21:49.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||91.01|94.91|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:49.5090000-07:00|40022472|Zeromus|0001A4E6|188648||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:49.1510000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:21:49.5540000-07:00|10FF0009|Zewo Negiwo|0001A4DA|72923|81177|4602|10000|0||106.46|90.23|0.00|-2.57|1802|0|0|01|0800013D|0|41A00000|| +26|2023-10-06T21:21:49.5540000-07:00|13D|Fey Illumination|20.00|40022D58|Ruby Carbuncle|10FF0009|Zewo Negiwo|00|81177|77430| +38|2023-10-06T21:21:49.5540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||88.79|107.50|0.00|2.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:21:49.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0008|Kokosaze Lulusaze|00|90216|81177| +38|2023-10-06T21:21:49.5540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:49.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +38|2023-10-06T21:21:49.5540000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|23||91.43|98.60|0.00|3.05|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:49.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +38|2023-10-06T21:21:49.5540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|12||90.46|96.76|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:49.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +38|2023-10-06T21:21:49.5540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||91.01|94.91|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:49.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +38|2023-10-06T21:21:49.5540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122032|129844|10000|10000|0||91.57|83.44|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:49.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +38|2023-10-06T21:21:49.5540000-07:00|10FF0009|Zewo Negiwo|005A5A18|72923|81177|4602|10000|0||106.46|90.23|0.00|-2.57|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:49.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:21:49.5540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||109.13|86.07|0.00|-2.54|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:49.5540000-07:00|751|Temperance|5.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +24|2023-10-06T21:21:49.5540000-07:00|10FF0009|Zewo Negiwo|DoT|0|258B|72923|81177|4602|10000|||106.46|90.23|0.00|-2.57|40022D58|Ruby Carbuncle|FFFFFFFF|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99| +24|2023-10-06T21:21:49.5540000-07:00|10FF0009|Zewo Negiwo|HoT|0|1A4C|72923|81177|4602|10000|||106.46|90.23|0.00|-2.57|40022D58|Ruby Carbuncle|0|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99| +24|2023-10-06T21:21:49.5540000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1AFB|129071|129071|10000|10000|||109.13|86.07|0.00|-2.54|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||109.13|86.07|0.00|-2.54| +38|2023-10-06T21:21:49.5540000-07:00|10FF0009|Zewo Negiwo|005A5A18|70044|81177|4602|10000|0||106.46|90.23|0.00|-2.57|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:49.5540000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0009|Zewo Negiwo|00|81177|81541| +38|2023-10-06T21:21:49.5540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||109.13|86.07|0.00|-2.54|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:21:49.5980000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40022472|Zeromus|354003|46A60000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|188648|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3900|10000|||90.98|98.14|0.00|3.09|0001A4E9|0|1| +38|2023-10-06T21:21:49.5980000-07:00|10FF0009|Zewo Negiwo|005A5A18|70044|81177|4602|10000|0||106.46|90.23|-0.02|-2.63|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:49.5980000-07:00|9D|Presence of Mind|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +38|2023-10-06T21:21:49.5980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3600|10000|23||90.98|98.14|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:49.5980000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:21:49.6420000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40022472|Zeromus|652003|5DA20000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|188648|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|0001A4EA|0|1| +38|2023-10-06T21:21:49.6420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:49.6420000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|82773|82773| +26|2023-10-06T21:21:49.6420000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +37|2023-10-06T21:21:49.6870000-07:00|10FF0006|Wowobora Gogobora|0001A4DA|81809|81809|10000|10000|0||90.70|95.12|0.00|2.58|1B03|0|0|01|013D|0|41A00000|| +26|2023-10-06T21:21:49.6870000-07:00|13D|Fey Illumination|20.00|40022D58|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:21:49.6870000-07:00|40022472|Zeromus|0001A4E5|160858||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:49.6870000-07:00|40022488|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.09|85.90|0.00|0.00|0001A4EB|0|0| +21|2023-10-06T21:21:49.6870000-07:00|40022489|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||114.41|94.25|0.00|0.00|0001A4EC|0|0| +21|2023-10-06T21:21:49.6870000-07:00|4002248A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.99|95.29|0.00|0.00|0001A4ED|0|0| +21|2023-10-06T21:21:49.6870000-07:00|4002248B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.71|99.75|0.00|0.00|0001A4EE|0|0| +38|2023-10-06T21:21:49.6870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||90.70|95.12|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:49.6870000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +261|2023-10-06T21:21:49.2700000-07:00|Change|40022488||||||||||| +261|2023-10-06T21:21:49.2700000-07:00|Change|40022489||||||||||| +261|2023-10-06T21:21:49.2700000-07:00|Change|4002248B||||||||||| +261|2023-10-06T21:21:49.2700000-07:00|Change|4002248A||||||||||| +37|2023-10-06T21:21:49.8190000-07:00|10FF0001|Sesuga Sapisuga|0001A4DA|129071|129071|10000|10000|8||109.13|86.07|0.00|-2.54|1304|0|0|01|0B00013D|0|41A00000|| +26|2023-10-06T21:21:49.8190000-07:00|13D|Fey Illumination|20.00|40022D58|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +261|2023-10-06T21:21:49.4550000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T21:21:49.8200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122032|129844|10000|10000|0||91.54|83.42|0.00|3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:49.8200000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T21:21:49.9540000-07:00|10FF0008|Kokosaze Lulusaze|0001A4DA|90216|90216|10000|10000|18||88.79|107.50|0.00|2.75|1F05|0|0|01|0800013D|0|41A00000|| +26|2023-10-06T21:21:49.9540000-07:00|13D|Fey Illumination|20.00|40022D58|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:21:49.9540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|18||88.79|107.50|0.00|2.75|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:21:49.9540000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +39|2023-10-06T21:21:50.0430000-07:00|40022DCF|Carbuncle|77698|77698|10000|10000|||91.15|97.49|0.00|-1.95| +37|2023-10-06T21:21:50.0870000-07:00|10FF000A|Dukaro Nezikaro|0001A4DA|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|1E06|0|0|02|090001FB|0|C1A00000|||||| +26|2023-10-06T21:21:50.0870000-07:00|13D|Fey Illumination|20.00|40022D58|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|82773|77430| +38|2023-10-06T21:21:50.0870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|8||109.13|86.07|0.00|-2.54|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:50.0870000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +21|2023-10-06T21:21:50.1320000-07:00|40022D58|Ruby Carbuncle|322|Embrace|10FF0009|Zewo Negiwo|4|151B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|70044|81177|4602|10000|||108.01|90.04|0.00|1.93|73956|77430|10000|10000|||103.44|102.10|0.00|-2.99|0001A4EF|0|1| +23|2023-10-06T21:21:50.1770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +21|2023-10-06T21:21:50.1770000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40022472|Zeromus|710003|94E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|160858|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|0001A4F0|0|1| +37|2023-10-06T21:21:50.2210000-07:00|10FF0007|Kehabiqo Febiqo|0001A4DA|122032|129844|10000|10000|0||91.54|83.42|0.00|3.10|1507|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T21:21:50.2210000-07:00|13D|Fey Illumination|20.00|40022D58|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:21:50.2210000-07:00|40022D58|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.44|102.10|0.00|-3.10|0|0|0|||| +30|2023-10-06T21:21:50.2210000-07:00|7AC|Summon Order II|0.00|40022D58|Ruby Carbuncle|40022D58|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T21:21:50.2210000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3600|10000|23||90.00|93.93|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:50.2210000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +37|2023-10-06T21:21:50.2660000-07:00|40022472|Zeromus|0001A4E7|145781||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:50.2660000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40022472|Zeromus|724003|AA90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|160858|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.79|107.50|0.00|2.75|0001A4F1|0|1| +261|2023-10-06T21:21:50.0970000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:21:50.3550000-07:00|40022472|Zeromus|0001A4E9|127695||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:50.3550000-07:00|40022DBB|Bunshin|75608|78475|10000|10000|||99.82|83.62|0.00|3.09| +21|2023-10-06T21:21:50.3550000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40022472|Zeromus|3F710003|2FF10000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|145781|40478540|10000|10000|||100.00|80.10|0.00|0.00|122032|129844|10000|10000|||91.54|83.42|0.00|2.85|0001A4F2|0|1| +38|2023-10-06T21:21:50.3550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122032|129844|10000|10000|0||91.54|83.42|0.00|2.85|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:50.3550000-07:00|A75|Surging Tempest|37.15|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:21:50.3550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:50.3550000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|82773|81541| +37|2023-10-06T21:21:50.4000000-07:00|40022472|Zeromus|0001A4E8|77595||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:21:50.2160000-07:00|Change|10FF0004||||||||||||||||||| +20|2023-10-06T21:21:50.4900000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|1.447|110.32|89.95|0.00|1.60| +21|2023-10-06T21:21:50.4900000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40022472|Zeromus|750003|2DE30000|200004|441D8000|0|0|0|0|0|0|0|0|0|0|0|0|77595|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.13|86.07|0.00|-2.15|0001A4F3|0|1| +38|2023-10-06T21:21:50.4900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|8||109.13|86.07|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:50.4900000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T21:21:50.5340000-07:00|10FF0003|Gegehi Gehi|73814|73814|3800|10000|||89.94|92.67|0.00|-3.08| +21|2023-10-06T21:21:50.5340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40022472|Zeromus|710003|6CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77595|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.13|86.07|0.00|-2.15|0001A4F4|0|1| +21|2023-10-06T21:21:50.5340000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|0001A4F5|0|1| +38|2023-10-06T21:21:50.5340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:50.5340000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +30|2023-10-06T21:21:50.5340000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|82773|82773| +31|2023-10-06T21:21:50.5340000-07:00|10FF0001||||| +261|2023-10-06T21:21:50.2160000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:21:50.2160000-07:00|Change|10FF0009||||||||||||||||||| +261|2023-10-06T21:21:50.3110000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:21:50.6230000-07:00|40022472|Zeromus|0001A4EA|53625||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:50.6230000-07:00|10FF000A|Dukaro Nezikaro|0001A4EA|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|1E00|0|0|01|08000A81|0|C1F00000|| +21|2023-10-06T21:21:50.6690000-07:00|40022483|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.64|95.76|0.00|0.00|0001A4F6|0|0| +21|2023-10-06T21:21:50.6690000-07:00|40022484|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.12|109.40|0.00|0.00|0001A4F7|0|0| +21|2023-10-06T21:21:50.6690000-07:00|40022485|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.16|95.83|0.00|0.00|0001A4F8|0|0| +21|2023-10-06T21:21:50.6690000-07:00|40022486|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.02|100.00|0.00|0.00|0001A4F9|0|0| +21|2023-10-06T21:21:50.6690000-07:00|40022487|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.49|86.81|0.00|0.00|0001A4FA|0|0| +38|2023-10-06T21:21:50.6690000-07:00|40022D58|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.44|102.10|0.00|2.88|0|0|0||||||| +26|2023-10-06T21:21:50.6690000-07:00|7AE|Summon Order IV|30.00|40022D58|Ruby Carbuncle|40022D58|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:21:50.6690000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2350|10000|||89.96|94.71|0.00|3.04|81541|81541|2350|10000|||89.96|94.71|0.00|3.04|0001A4FB|0|1| +261|2023-10-06T21:21:50.3110000-07:00|Change|40022484||||||||||| +261|2023-10-06T21:21:50.3110000-07:00|Change|40022487||||||||||| +261|2023-10-06T21:21:50.3110000-07:00|Change|40022483||||||||||| +261|2023-10-06T21:21:50.3110000-07:00|Change|40022486||||||||||| +261|2023-10-06T21:21:50.3110000-07:00|Change|40022485||||||||||| +37|2023-10-06T21:21:50.7130000-07:00|40022472|Zeromus|0001A4F0|51243||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:50.7130000-07:00|10FF000A|Dukaro Nezikaro|0001A4F0|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|1E00|0|0|01|08000A81|0|C1F00000|| +39|2023-10-06T21:21:50.7130000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||88.79|107.50|0.00|2.75| +38|2023-10-06T21:21:50.7130000-07:00|10FF0009|Zewo Negiwo|005A5A18|70044|81177|4602|10000|0||110.49|89.98|0.00|1.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:50.7130000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0009|Zewo Negiwo|00|81177|81177| +39|2023-10-06T21:21:50.7570000-07:00|40022D58|Ruby Carbuncle|73956|77430|10000|10000|||103.44|102.10|0.00|2.78| +24|2023-10-06T21:21:50.7570000-07:00|40022472|Zeromus|DoT|0|1C83|51243|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|82773|82773|10000|10000|||91.94|91.42|0.00|2.52| +38|2023-10-06T21:21:50.7570000-07:00|40022472|Zeromus|005A5A00|43944|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:21:50.8460000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3800|10000|23||89.80|91.47|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:50.8460000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0003|Gegehi Gehi|00|73814|81177| +39|2023-10-06T21:21:50.8900000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||109.13|86.07|0.00|-2.15| +39|2023-10-06T21:21:50.8900000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2550|10000|||90.04|93.44|0.00|3.05| +37|2023-10-06T21:21:50.9340000-07:00|10FF0009|Zewo Negiwo|0001A4EF|75447||||||110.79|90.04|0.00|-3.06| +39|2023-10-06T21:21:50.9790000-07:00|10FF0007|Kehabiqo Febiqo|123330|129844|10000|10000|||91.54|83.42|0.00|1.95| +38|2023-10-06T21:21:50.9790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123330|129844|10000|10000|0||91.54|83.42|0.00|1.95|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:50.9790000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0007|Kehabiqo Febiqo|00|129844|81177| +37|2023-10-06T21:21:51.0230000-07:00|40022472|Zeromus|0001A4F1|41215||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:51.0230000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||89.32|89.93|0.00|-2.90| +37|2023-10-06T21:21:51.0680000-07:00|40022472|Zeromus|0001A4F4|39475||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:51.1120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||89.25|89.84|0.00|-2.96|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:51.1120000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0006|Wowobora Gogobora|00|81809|81177| +21|2023-10-06T21:21:51.1560000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40022472|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39475|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2550|10000|||90.08|92.90|0.00|3.05|0001A4FC|0|1| +37|2023-10-06T21:21:51.2010000-07:00|10FF000A|Dukaro Nezikaro|0001A4F5|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|1E00|0|0|01|08000A81|0|41F00000|| +22|2023-10-06T21:21:51.2010000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0009|Zewo Negiwo|4|25580000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|75447|81177|4602|10000|||110.98|90.07|0.00|-2.31|73956|77430|10000|10000|||103.44|102.10|0.00|2.59|0001A4FD|0|7| +22|2023-10-06T21:21:51.2010000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|24E30000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||88.79|107.50|0.00|2.75|73956|77430|10000|10000|||103.44|102.10|0.00|2.59|0001A4FD|1|7| +22|2023-10-06T21:21:51.2010000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|4|24C80000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|73956|77430|10000|10000|||103.44|102.10|0.00|2.59|0001A4FD|2|7| +22|2023-10-06T21:21:51.2010000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|200004|3D520000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||109.13|86.07|0.00|-2.15|73956|77430|10000|10000|||103.44|102.10|0.00|2.59|0001A4FD|3|7| +22|2023-10-06T21:21:51.2010000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|200004|3DAE0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2550|10000|||90.08|92.90|0.00|3.05|73956|77430|10000|10000|||103.44|102.10|0.00|2.59|0001A4FD|4|7| +22|2023-10-06T21:21:51.2010000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|25220000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||89.19|89.75|0.00|-3.01|73956|77430|10000|10000|||103.44|102.10|0.00|2.59|0001A4FD|5|7| +22|2023-10-06T21:21:51.2010000-07:00|40022D58|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|25830000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3800|10000|||89.51|89.61|0.00|-3.01|73956|77430|10000|10000|||103.44|102.10|0.00|2.59|0001A4FD|6|7| +38|2023-10-06T21:21:51.2010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:21:51.2450000-07:00|40022472|Zeromus|0001A4F3|27728||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:21:51.2450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|8||109.13|86.07|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:51.2450000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0001|Sesuga Sapisuga|00|129071|81177| +22|2023-10-06T21:21:51.2900000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|712003|1D6A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27728|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|0001A4FE|0|3| +22|2023-10-06T21:21:51.2900000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|710003|12860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27728|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|0001A4FE|1|3| +22|2023-10-06T21:21:51.2900000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40022472|Zeromus|714003|16F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27728|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|0001A4FE|2|3| +261|2023-10-06T21:21:50.9390000-07:00|Change|40022DCF||||||||| +21|2023-10-06T21:21:51.3340000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40022472|Zeromus|154003|579F0000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|27728|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||89.16|89.71|-0.01|-3.03|0001A4FF|0|1| +21|2023-10-06T21:21:51.3340000-07:00|10FF0006|Wowobora Gogobora|07|attack|40022472|Zeromus|734003|B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27728|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||89.16|89.71|-0.01|-3.03|0001A500|0|1| +38|2023-10-06T21:21:51.3780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:51.3780000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF000A|Dukaro Nezikaro|00|82773|81177| +39|2023-10-06T21:21:51.4240000-07:00|10FF0009|Zewo Negiwo|76258|81177|4823|10000|||110.98|90.07|0.00|-2.31| +21|2023-10-06T21:21:51.4240000-07:00|10FF0009|Zewo Negiwo|6503|Glare III|40022472|Zeromus|750003|26A10000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|27728|40478540|10000|10000|||100.00|80.10|0.00|0.00|75447|81177|4602|10000|||110.98|90.07|0.00|-2.31|0001A501|0|1| +20|2023-10-06T21:21:51.4680000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40022472|Zeromus|1.444|90.23|91.26|0.00|3.04| +261|2023-10-06T21:21:51.1610000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T21:21:51.5120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2550|10000|12||90.18|90.62|0.00|2.96|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:21:51.5120000-07:00|4C3|Confession|0.00|10FF0009|Zewo Negiwo|10FF0004|Buhojaqe Zijaqe|00|81541|81177| +261|2023-10-06T21:21:51.2540000-07:00|Change|10FF0001||| +261|2023-10-06T21:21:51.2540000-07:00|Change|10FF0009||||||||||||||||||||| +37|2023-10-06T21:21:51.6910000-07:00|40022472|Zeromus|0001A4FC|27575||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:21:51.6910000-07:00|4002247E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.43|96.18|0.00|0.00|0001A502|0|0| +21|2023-10-06T21:21:51.6910000-07:00|4002247F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||103.95|113.23|0.00|0.00|0001A503|0|0| +21|2023-10-06T21:21:51.6910000-07:00|40022480|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.04|100.49|0.00|0.00|0001A504|0|0| +21|2023-10-06T21:21:51.6910000-07:00|40022481|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.92|87.99|0.00|0.00|0001A505|0|0| +21|2023-10-06T21:21:51.6910000-07:00|40022482|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||103.94|89.17|0.00|0.00|0001A506|0|0| +261|2023-10-06T21:21:51.3480000-07:00|Change|4002247F||||||||||| +261|2023-10-06T21:21:51.3480000-07:00|Change|4002247E||||||||||| +261|2023-10-06T21:21:51.3480000-07:00|Change|40022480||||||||||| +261|2023-10-06T21:21:51.3480000-07:00|Change|40022482||||||||||| +261|2023-10-06T21:21:51.3480000-07:00|Change|40022481||||||||||| +21|2023-10-06T21:21:51.7800000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40022472|Zeromus|720003|1FA00000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|27575|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||90.81|106.97|0.00|1.99|0001A507|0|1| +37|2023-10-06T21:21:51.8690000-07:00|40022472|Zeromus|0001A500|27392||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:52.0030000-07:00|40022472|Zeromus|0001A4F2|15119||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:21:52.0030000-07:00|10FF0009|Zewo Negiwo|0001A4FD|81177||||||110.98|90.07|0.00|-2.31| +37|2023-10-06T21:21:52.0030000-07:00|40022472|Zeromus|0001A4FE|7589||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:21:52.0030000-07:00|10FF000A|Dukaro Nezikaro|82773|82773|10000|10000|||91.94|91.42|0.00|2.52| +38|2023-10-06T21:21:52.0030000-07:00|40022DCF|Carbuncle|005A5A00|77698|77698|10000|10000|0||89.23|92.09|0.00|-2.83|0|0|0||||||| +26|2023-10-06T21:21:52.0030000-07:00|30|Well Fed|1161.28|10FF0006|Wowobora Gogobora|40022DCF|Carbuncle|2964|77698|81809| +26|2023-10-06T21:21:52.0030000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40022DCF|Carbuncle|01|77698|81809| +21|2023-10-06T21:21:52.0030000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||89.16|89.71|0.00|2.30|81809|81809|10000|10000|||89.16|89.71|0.00|2.30|0001A508|0|1| +20|2023-10-06T21:21:52.0030000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40022472|Zeromus|1.944|89.43|89.16|0.00|-2.99| +261|2023-10-06T21:21:51.6300000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T21:21:52.0460000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40022472|Zeromus|554003|55AF0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|7589|40478540|10000|10000|||100.00|80.10|0.00|0.00|82773|82773|10000|10000|||91.94|91.42|0.00|2.52|0001A509|0|1| +38|2023-10-06T21:21:52.0460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82773|82773|10000|10000|12||91.94|91.42|0.00|2.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:52.0460000-07:00|A82|Raiju Ready|27.28|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +26|2023-10-06T21:21:52.0460000-07:00|7A2|Bunshin|5.01|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|82773|82773| +23|2023-10-06T21:21:52.0910000-07:00|40022472|Zeromus|8B6B|Nostalgia|Interrupted| +37|2023-10-06T21:21:52.0910000-07:00|40022472|Zeromus|0001A4FF|0|40478540|0|10000|0||100.00|80.10|0.00|0.00|0|0|0|04|0|0|0|||||||||||||| +21|2023-10-06T21:21:52.0910000-07:00|40022DCF|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||89.16|89.71|0.00|2.30|77698|77698|10000|10000|||89.17|91.96|0.00|-2.92|0001A50A|0|1| +38|2023-10-06T21:21:52.0910000-07:00|40022472|Zeromus|005A5A00|0|40478540|0|10000|0||100.00|80.10|0.00|0.00|0|0|0| +30|2023-10-06T21:21:52.0910000-07:00|74F|Dia|0.00|10FF0009|Zewo Negiwo|40022472|Zeromus|00|40478540|81177| +30|2023-10-06T21:21:52.0910000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40022472|Zeromus|00|40478540|129071| +30|2023-10-06T21:21:52.0910000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40022472|Zeromus|00|40478540|81541| +30|2023-10-06T21:21:52.0910000-07:00|808|Unknown_808|0.00|40022472|Zeromus|40022472|Zeromus|286|40478540|40478540| +30|2023-10-06T21:21:52.0910000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40022472|Zeromus|00|40478540|82773| +38|2023-10-06T21:21:52.0910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|19||89.16|89.71|0.00|2.30|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:21:52.0910000-07:00|A8E|Radiant Aegis|29.96|40022DCF|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +23|2023-10-06T21:21:52.1370000-07:00|4002247A|Zeromus|8B7E|Dimensional Surge|Interrupted| +23|2023-10-06T21:21:52.1370000-07:00|4002247C|Zeromus|8B7E|Dimensional Surge|Interrupted| +261|2023-10-06T21:21:51.7500000-07:00|Change|40022472||||||||||||||| +261|2023-10-06T21:21:51.7500000-07:00|Change|40022DBB||||||||| +23|2023-10-06T21:21:52.1370000-07:00|4002247D|Zeromus|8B7E|Dimensional Surge|Interrupted| +23|2023-10-06T21:21:52.1370000-07:00|4002247B|Zeromus|8B7E|Dimensional Surge|Interrupted| +23|2023-10-06T21:21:52.1370000-07:00|40022479|Zeromus|8B7E|Dimensional Surge|Interrupted| +261|2023-10-06T21:21:51.7500000-07:00|Change|4002247D||||||||||| +261|2023-10-06T21:21:51.7500000-07:00|Change|4002247C||||||||||| +261|2023-10-06T21:21:51.7500000-07:00|Change|4002247B||||||||||| +261|2023-10-06T21:21:51.7500000-07:00|Change|4002247A||||||||||| +261|2023-10-06T21:21:51.7500000-07:00|Change|10FF0001||| +261|2023-10-06T21:21:51.7500000-07:00|Change|40022479||||||||||| +261|2023-10-06T21:21:51.7500000-07:00|Change|40022455||| +260|2023-10-06T21:21:51.8710000-07:00|1|0| +41|2023-10-06T21:21:52.1460000-07:00|80034E7C|4D1|02|A05D|02| +41|2023-10-06T21:21:52.1460000-07:00|80034E7C|1082|00|00|00| +33|2023-10-06T21:21:52.1460000-07:00|80034E7C|40000003|00|00|00|00| +01|2023-10-06T21:45:50.7440000-07:00|491|The Abyssal Fracture (Extreme)| +02|2023-10-06T21:45:50.7440000-07:00|10FF0001|Sesuga Sapisuga| +03|2023-10-06T21:45:50.7440000-07:00|10FF0001|Sesuga Sapisuga|13|5A|0000|28|Jenova|0|0|122739|122739|10000|10000|||99.88|114.95|0.00|-3.14| +03|2023-10-06T21:45:50.7440000-07:00|10FF0004|Buhojaqe Zijaqe|1C|5A|0000|3F|Gilgamesh|0|0|77532|77532|10000|10000|||100.13|115.10|0.00|-3.14| +03|2023-10-06T21:45:50.7440000-07:00|40020D7C|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||101.49|116.47|0.20|-3.14| +03|2023-10-06T21:45:50.7440000-07:00|10FF0008|Kokosaze Lulusaze|1F|5A|0000|63|Sargatanas|0|0|85794|85794|10000|10000|||99.83|114.98|0.00|-3.14| +03|2023-10-06T21:45:50.7440000-07:00|10FF0006|Wowobora Gogobora|1B|5A|0000|4F|Cactuar|0|0|77799|77799|10000|10000|||99.85|115.75|0.00|-3.14| +03|2023-10-06T21:45:50.7440000-07:00|10FF0003|Gegehi Gehi|23|5A|0000|39|Siren|0|0|70169|70169|10000|10000|||100.46|115.20|0.00|-3.14| +03|2023-10-06T21:45:50.7440000-07:00|10FF000A|Dukaro Nezikaro|1E|5A|0000|63|Sargatanas|0|0|79371|79371|10000|10000|||100.07|115.89|0.00|-3.14| +03|2023-10-06T21:45:50.7440000-07:00|10FF000B|Pusu Rosu|18|5A|0000|3F|Gilgamesh|0|0|75248|75248|10000|10000|||99.17|115.10|0.00|-3.14| +03|2023-10-06T21:45:50.7440000-07:00|10FF0007|Kehabiqo Febiqo|15|5A|0000|4D|Ultros|0|0|123477|123477|10000|10000|||100.32|114.29|0.00|-3.14| +11|2023-10-06T21:45:50.7440000-07:00|8|10FF0004|10FF0008|10FF0006|10FF0003|10FF000A|10FF000B|10FF0007|10FF0001| +40|2023-10-06T21:45:50.7440000-07:00|894|???|The Abyssal Fracture|| +03|2023-10-06T21:46:30.6010000-07:00|40020E6D|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||98.63|100.11|0.00|-0.07| +03|2023-10-06T21:46:38.2230000-07:00|40020E84|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.77|101.17|0.00|-3.14| +03|2023-10-06T21:48:09.5590000-07:00|40020FFB|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||95.69|86.46|0.00|-0.86| +03|2023-10-06T21:48:27.5870000-07:00|4002101A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||98.00|80.30|0.00|0.11| +03|2023-10-06T21:48:28.0270000-07:00|4002101E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||110.00|80.30|0.00|0.00| +03|2023-10-06T21:49:50.7180000-07:00|40021149|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||101.87|114.72|0.00|0.00| +03|2023-10-06T21:50:20.7310000-07:00|400211C3|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||98.64|100.00|0.00|-0.07| +12|2023-10-06T21:50:48.9960000-07:00|19|3472|389|3999|247|412|390|3472|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +03|2023-10-06T21:51:59.6640000-07:00|4002135A|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||94.86|87.86|0.00|-0.67| +03|2023-10-06T21:52:18.5750000-07:00|400213A4|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|80.30|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021570|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021571|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021572|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021573|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021574|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021575|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021576|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021577|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021578|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021579|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021580|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021581|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|40021582|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|4002156E|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|4002156F|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|4002157A|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|4002157E|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|4002157D|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|4002157B|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|4002157F|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.3650000-07:00|4002157C|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021583|Comet|00|5A|0000|00||12587|16558|69200|69200|10000|10000|||94.61|86.40|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021585|Zeromus|00|5A|0000|00||12586|16557|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021586|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021587|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021588|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021589|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021590|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021591|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021592|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021593|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021594|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021595|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021596|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021597|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021598|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|40021599|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002158E|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002158A|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002158D|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002158C|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002158B|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002158F|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002159A|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|400215A0|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|400215A1|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002159D|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002159C|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002159E|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.4570000-07:00|4002159F|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.5670000-07:00|4002159B|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.5670000-07:00|400215A3|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:54.5670000-07:00|400215A2|Zeromus|00|1|0000|00||12586|9020|44|44|0|10000|||100.00|80.10|0.00|0.00| +03|2023-10-06T21:54:59.7840000-07:00|400215AC|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||99.96|113.54|0.00|0.00| +03|2023-10-06T21:55:00.2430000-07:00|400215AD|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.83|113.23|0.00|0.00| +21|2023-10-06T21:55:12.2390000-07:00|400215AC|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|4|15320000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|69732|79209|10000|10000|||99.56|116.00|0.00|3.14|77430|77430|10000|10000|||100.18|103.32|0.00|-1.42|00010219|0|1| +39|2023-10-06T21:55:12.2390000-07:00|10FF000B|Pusu Rosu|77652|79209|10000|10000|||99.56|116.00|0.00|3.14| +39|2023-10-06T21:55:12.2830000-07:00|400215AD|Carbuncle|77698|77698|10000|10000|||100.57|108.08|0.00|-3.08| +261|2023-10-06T21:55:12.6180000-07:00|Change|10FF000B||||| +37|2023-10-06T21:55:13.0400000-07:00|10FF000B|Pusu Rosu|00010219|79209||||||99.56|116.00|0.00|3.14| +39|2023-10-06T21:55:13.0840000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||100.33|109.45|0.00|3.09| +39|2023-10-06T21:55:13.1300000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||100.85|109.27|0.00|3.14| +39|2023-10-06T21:55:13.1730000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.08|106.31|0.00|3.14| +39|2023-10-06T21:55:13.3070000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.41|106.55|0.00|3.01| +39|2023-10-06T21:55:13.7990000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.73|103.23|0.00|3.10| +00|2023-10-06T21:55:14.0000000-07:00|0038||end| +00|2023-10-06T21:55:14.0000000-07:00|0039||Battle commencing in 10 seconds!| +39|2023-10-06T21:55:14.3300000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|1.49| +39|2023-10-06T21:55:14.4640000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.93|103.35|0.00|3.14| +39|2023-10-06T21:55:15.1350000-07:00|400215AC|Ruby Carbuncle|77430|77430|10000|10000|||100.09|102.42|0.00|-0.86| +39|2023-10-06T21:55:15.2230000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||99.48|114.85|0.00|-3.13| +39|2023-10-06T21:55:15.2660000-07:00|400215AD|Carbuncle|77698|77698|10000|10000|||100.57|108.08|0.00|-3.08| +261|2023-10-06T21:55:15.4340000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:55:16.1130000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||100.11|109.36|0.00|3.12| +39|2023-10-06T21:55:16.1130000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||100.85|109.27|0.00|3.14| +39|2023-10-06T21:55:16.1590000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.08|106.31|0.00|3.14| +39|2023-10-06T21:55:16.2920000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.41|106.55|0.00|3.01| +261|2023-10-06T21:55:16.4400000-07:00|Change|10FF0001||| +39|2023-10-06T21:55:16.8270000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.73|103.23|0.00|3.10| +38|2023-10-06T21:55:16.8720000-07:00|400215AD|Carbuncle|005A5A00|77698|77698|10000|10000|0||100.57|108.08|0.00|-3.08|0|0|0||||||| +26|2023-10-06T21:55:16.8720000-07:00|30|Well Fed|965.75|10FF0006|Wowobora Gogobora|400215AD|Carbuncle|2964|77698|81809| +26|2023-10-06T21:55:16.8720000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|400215AD|Carbuncle|01|77698|81809| +21|2023-10-06T21:55:16.8720000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||99.41|106.55|0.00|3.01|81809|81809|10000|10000|||99.41|106.55|0.00|3.01|0001021A|0|1| +21|2023-10-06T21:55:17.0510000-07:00|400215AD|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||99.41|106.55|0.00|3.01|77698|77698|10000|10000|||100.57|108.08|0.00|-3.08|0001021B|0|1| +38|2023-10-06T21:55:17.0510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|19||99.41|106.55|0.00|3.01|0|0|0|||||||||| +26|2023-10-06T21:55:17.0510000-07:00|A8E|Radiant Aegis|29.96|400215AD|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +39|2023-10-06T21:55:17.3620000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|1.49| +39|2023-10-06T21:55:17.4500000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.93|103.35|0.00|3.14| +261|2023-10-06T21:55:17.4100000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T21:55:17.8530000-07:00|10FF0006|Wowobora Gogobora|0001021B|81809|81809|10000|10000|19||99.41|106.55|0.00|3.01|1B00|0|0|01|01000A8E|0|41E99374|| +38|2023-10-06T21:55:17.8530000-07:00|400215AD|Carbuncle|005A5A00|77698|77698|10000|10000|0||100.57|108.08|0.00|-2.48|0|0|0|||| +30|2023-10-06T21:55:17.8530000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|400215AD|Carbuncle|01|77698|81809| +39|2023-10-06T21:55:18.1650000-07:00|400215AC|Ruby Carbuncle|77430|77430|10000|10000|||99.99|102.07|0.00|-1.17| +39|2023-10-06T21:55:18.2100000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||99.35|106.16|0.00|3.14| +39|2023-10-06T21:55:18.2980000-07:00|400215AD|Carbuncle|77698|77698|10000|10000|||100.57|108.08|0.00|-2.48| +39|2023-10-06T21:55:19.1010000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||100.60|107.53|0.00|3.06| +39|2023-10-06T21:55:19.1450000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.08|106.31|0.00|3.14| +39|2023-10-06T21:55:19.1450000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||100.85|109.27|0.00|3.14| +39|2023-10-06T21:55:19.2770000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.41|106.55|0.00|3.01| +00|2023-10-06T21:55:19.0000000-07:00|0039||Battle commencing in 5 seconds!| +21|2023-10-06T21:55:19.7220000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.08|106.31|0.00|3.14|90216|90216|10000|10000|||100.08|106.31|0.00|3.14|0001021C|0|1| +38|2023-10-06T21:55:19.7220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.08|106.31|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:55:19.7220000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T21:55:19.8120000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.73|103.23|0.00|3.10| +20|2023-10-06T21:55:19.8120000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|4.860|100.85|109.27|0.00|3.14| +261|2023-10-06T21:55:19.7290000-07:00|Change|10FF0003||||||||||||||||||| +38|2023-10-06T21:55:20.0800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.08|106.31|0.00|3.14|0|0|0||||||||||||| +37|2023-10-06T21:55:20.3490000-07:00|10FF0008|Kokosaze Lulusaze|0001021C|90216|90216|10000|10000|0||100.08|106.31|0.00|3.14|1F00|0|0|01|03000353|0|40A00000|| +39|2023-10-06T21:55:20.3490000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|1.49| +38|2023-10-06T21:55:20.3490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.08|106.31|0.00|3.14|0|0|0||||||||||||| +21|2023-10-06T21:55:20.3930000-07:00|10FF000A|Dukaro Nezikaro|8D7|Jin|10FF000A|Dukaro Nezikaro|300000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|0001021D|0|1| +38|2023-10-06T21:55:20.3930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0|||||||||||||||| +26|2023-10-06T21:55:20.3930000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|83502|83502| +39|2023-10-06T21:55:20.4820000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.93|103.35|0.00|3.14| +21|2023-10-06T21:55:20.8830000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|B00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|0001021E|0|1| +38|2023-10-06T21:55:20.8830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0|||||||||||||||| +26|2023-10-06T21:55:20.8830000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0B|83502|83502| +39|2023-10-06T21:55:21.1530000-07:00|400215AC|Ruby Carbuncle|77430|77430|10000|10000|||99.99|102.07|0.00|-1.17| +39|2023-10-06T21:55:21.2430000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||99.35|106.16|0.00|3.14| +39|2023-10-06T21:55:21.2880000-07:00|400215AD|Carbuncle|77698|77698|10000|10000|||100.57|108.08|0.00|-2.48| +21|2023-10-06T21:55:21.3750000-07:00|10FF000A|Dukaro Nezikaro|4975|Ten|10FF000A|Dukaro Nezikaro|1B00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|0001021F|0|1| +38|2023-10-06T21:55:21.3750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0|||||||||||||||| +26|2023-10-06T21:55:21.3750000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|1B|83502|83502| +21|2023-10-06T21:55:21.9100000-07:00|10FF000A|Dukaro Nezikaro|8DD|Huton|10FF000A|Dukaro Nezikaro|3E|C98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|00010220|0|1| +38|2023-10-06T21:55:21.9100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0||||||||||||| +30|2023-10-06T21:55:21.9100000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|1B|83502|83502| +39|2023-10-06T21:55:22.0900000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||100.42|106.31|0.00|3.07| +39|2023-10-06T21:55:22.1340000-07:00|10FF0003|Gegehi Gehi|73814|73814|10000|10000|||100.85|109.27|0.00|-3.11| +39|2023-10-06T21:55:22.1770000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.08|106.31|0.00|3.14| +39|2023-10-06T21:55:22.3110000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||99.41|106.55|0.00|3.01| +21|2023-10-06T21:55:22.7150000-07:00|10FF000A|Dukaro Nezikaro|8C5|Hide|10FF000A|Dukaro Nezikaro|3200000E|2660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|00010221|0|1| +39|2023-10-06T21:55:22.8030000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.73|103.23|0.00|3.10| +20|2023-10-06T21:55:22.8030000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.35|106.16|0.00|3.14| +261|2023-10-06T21:55:22.5700000-07:00|Change|10FF000B||||||||||||||||| +20|2023-10-06T21:55:22.9820000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|1.491|99.41|106.55|0.00|3.01| +261|2023-10-06T21:55:22.7630000-07:00|Change|10FF0006||||||||||||||||||| +20|2023-10-06T21:55:23.1590000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.42|106.31|0.00|3.07| +261|2023-10-06T21:55:22.9690000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T21:55:23.3370000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|1.49| +21|2023-10-06T21:55:23.3820000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|00010222|0|1| +38|2023-10-06T21:55:23.3820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0|||||||||||||||| +26|2023-10-06T21:55:23.3820000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +39|2023-10-06T21:55:23.4720000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.93|103.35|0.00|3.14| +21|2023-10-06T21:55:23.7390000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31050000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||99.35|106.16|0.00|3.12|00010223|0|1| +260|2023-10-06T21:55:23.5770000-07:00|1|0| +37|2023-10-06T21:55:23.8720000-07:00|10FF000A|Dukaro Nezikaro|00010221|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|1E00|0|0|01|05000266|32|0|| +26|2023-10-06T21:55:23.8720000-07:00|266|Hidden|9999.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|32|83502|83502| +21|2023-10-06T21:55:23.9180000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|00010224|0|1| +38|2023-10-06T21:55:23.9180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0|||||||||||||||| +26|2023-10-06T21:55:23.9180000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +30|2023-10-06T21:55:23.9180000-07:00|266|Hidden|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|32|83502|83502| +21|2023-10-06T21:55:23.9630000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|752003|53430000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.41|106.55|0.00|3.12|00010225|0|1| +21|2023-10-06T21:55:24.0520000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|15150000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|103.35|0.00|3.14|00010226|0|1| +21|2023-10-06T21:55:24.0520000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AA90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|103.35|0.00|3.14|00010227|0|1| +21|2023-10-06T21:55:24.0970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|331F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|10000|10000|||100.42|106.31|0.00|-3.13|00010228|0|1| +39|2023-10-06T21:55:24.1420000-07:00|400215AC|Ruby Carbuncle|77430|77430|10000|10000|||99.99|102.07|0.00|-1.17| +21|2023-10-06T21:55:24.1420000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|726003|D0300000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.08|106.31|0.00|3.14|00010229|0|1| +21|2023-10-06T21:55:24.1420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.08|106.31|0.00|3.14|0001022A|0|1| +21|2023-10-06T21:55:24.1420000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|37F10000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|10000|10000|||100.85|109.27|0.00|-3.11|0001022B|0|1| +38|2023-10-06T21:55:24.1420000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||100.85|109.27|0.00|-3.11|0|0|0||||||||||||| +26|2023-10-06T21:55:24.1420000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:55:24.1420000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:55:24.1420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.08|106.31|0.00|3.14|0|0|0|||||||||| +30|2023-10-06T21:55:24.1420000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T21:55:24.2300000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||99.35|106.16|0.00|3.12| +39|2023-10-06T21:55:24.2740000-07:00|400215AD|Carbuncle|77698|77698|10000|10000|||100.57|108.08|0.00|-2.48| +00|2023-10-06T21:55:24.0000000-07:00|0039||Engage!| +261|2023-10-06T21:55:24.1020000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T21:55:24.4090000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|14640000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.73|103.23|0.00|3.13|0001022C|0|1| +21|2023-10-06T21:55:24.4090000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|8A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.73|103.23|0.00|3.13|0001022D|0|1| +21|2023-10-06T21:55:24.4090000-07:00|10FF000B|Pusu Rosu|88|Presence of Mind|10FF000B|Pusu Rosu|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||99.35|106.16|0.00|3.12|79209|79209|10000|10000|||99.35|106.16|0.00|3.12|0001022E|0|1| +21|2023-10-06T21:55:24.4090000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|0001022F|0|1| +38|2023-10-06T21:55:24.4090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0|||||||||||||||| +26|2023-10-06T21:55:24.4090000-07:00|1F0|Mudra|4.97|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +31|2023-10-06T21:55:24.4090000-07:00|10FF0001||||| +37|2023-10-06T21:55:24.5900000-07:00|40021585|Zeromus|00010226|40473143||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:24.5900000-07:00|10FF0007|Kehabiqo Febiqo|00010226|129844|129844|10000|10000|0||99.93|103.35|0.00|3.14|1500|0|0|01|01000000|0|0|| +37|2023-10-06T21:55:24.5900000-07:00|40021585|Zeromus|00010227|40470414||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:24.5900000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3EFF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|103.35|0.00|3.14|40478540|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010230|0|1| +261|2023-10-06T21:55:24.3190000-07:00|Change|40021585||| +38|2023-10-06T21:55:24.5900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.93|103.35|0.00|3.14|0|0|0||||||||||||| +30|2023-10-06T21:55:24.5900000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|14|129844|90216| +38|2023-10-06T21:55:24.5900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.08|106.31|0.00|-3.14|0|0|0||||||| +30|2023-10-06T21:55:24.5900000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|14|90216|90216| +38|2023-10-06T21:55:24.5900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|19||99.41|106.54|0.00|3.07|0|0|0|||||||||| +30|2023-10-06T21:55:24.5900000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|14|81809|90216| +38|2023-10-06T21:55:24.5900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.73|103.23|0.00|3.13|0|0|0||||||| +30|2023-10-06T21:55:24.5900000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|14|129071|90216| +38|2023-10-06T21:55:24.5900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9600|10000|0||100.42|106.30|0.00|-3.10|0|0|0|||||||||| +30|2023-10-06T21:55:24.5900000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|14|81541|90216| +38|2023-10-06T21:55:24.5900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9700|10000|0||100.85|109.27|0.00|-3.11|0|0|0||||||||||||| +30|2023-10-06T21:55:24.5900000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|14|73814|90216| +38|2023-10-06T21:55:24.5900000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||99.35|106.15|0.00|3.12|0|0|0||||||| +30|2023-10-06T21:55:24.5900000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|14|79209|90216| +38|2023-10-06T21:55:24.5900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0|||||||||||||||| +30|2023-10-06T21:55:24.5900000-07:00|4AF|Peloton|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|14|83502|90216| +260|2023-10-06T21:55:24.4090000-07:00|1|1| +00|2023-10-06T21:55:24.0000000-07:00|0044|Zeromus|Stand aside, I beseech you.| +261|2023-10-06T21:55:24.4090000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:55:24.4090000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:55:24.4090000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T21:55:24.4090000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:55:24.4090000-07:00|Change|10FF000B||||||||||||||||||| +261|2023-10-06T21:55:24.4090000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:55:24.4090000-07:00|Change|400215AC||||||||| +261|2023-10-06T21:55:24.4090000-07:00|Change|400215AD||||||||| +36|2023-10-06T21:55:24.6770000-07:00|00DC|3| +261|2023-10-06T21:55:24.4090000-07:00|Change|400215AC||||| +37|2023-10-06T21:55:24.7660000-07:00|40021585|Zeromus|00010225|40449099||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:24.7660000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|726003|27E10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40470414|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.08|106.31|0.00|-3.14|00010231|0|1| +37|2023-10-06T21:55:24.9010000-07:00|40021585|Zeromus|0001022A|40446812||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:24.9010000-07:00|40021585|Zeromus|00010228|40433725||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:24.9010000-07:00|40021585|Zeromus|0001022B|40419404||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:24.9010000-07:00|10FF0003|Gegehi Gehi|0001022B|73814|73814|9700|10000|0||100.85|109.27|0.00|-3.11|2300|0|0|01|020004D2|0|41F00000|| +21|2023-10-06T21:55:24.9010000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|103.35|0.00|3.14|129844|129844|10000|10000|||99.93|103.35|0.00|3.14|00010232|0|1| +21|2023-10-06T21:55:24.9010000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|352003|58500000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|40449099|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9700|10000|||100.85|109.27|0.00|-3.11|00010233|0|1| +38|2023-10-06T21:55:24.9010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.93|103.35|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:55:24.9010000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:55:24.9010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||100.85|109.27|0.00|-3.11|0|0|0|||||||||| +26|2023-10-06T21:55:24.9010000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:55:24.9010000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:55:24.9450000-07:00|40021585|Zeromus|0001022D|40417193||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:24.9450000-07:00|10FF000B|Pusu Rosu|0001022E|79209|79209|10000|10000|0||99.48|105.95|-0.02|-3.14|1800|0|0|01|0200009D|0|41700000|| +26|2023-10-06T21:55:24.9450000-07:00|9D|Presence of Mind|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:55:24.9450000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||99.48|105.95|-0.02|-3.14|0|0|0|||||||||| +37|2023-10-06T21:55:25.0340000-07:00|40021585|Zeromus|0001022C|40411973||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:25.0340000-07:00|40021585|Zeromus|00010223|40399424||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:25.0340000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|656003|6DA60000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|40417193|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|00010234|0|1| +21|2023-10-06T21:55:25.0340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|85A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40417193|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|1.49|00010235|0|1| +38|2023-10-06T21:55:25.0340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|1.49|0|0|0||||||||||||| +26|2023-10-06T21:55:25.0340000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +30|2023-10-06T21:55:25.0340000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +261|2023-10-06T21:55:24.8360000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:55:25.1230000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9800|10000|||99.98|103.90|0.00|-2.99| +39|2023-10-06T21:55:25.1230000-07:00|10FF0003|Gegehi Gehi|73814|73814|9600|10000|||100.85|109.27|0.00|-3.11| +39|2023-10-06T21:55:25.1670000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.08|106.31|0.00|-3.14| +37|2023-10-06T21:55:25.3000000-07:00|40021585|Zeromus|00010229|40346128||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:25.3000000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||99.72|101.66|0.00|3.09| +21|2023-10-06T21:55:25.3000000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|A0B0000|BDA40E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|40399424|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||99.71|105.63|0.00|-3.13|00010236|0|1| +261|2023-10-06T21:55:25.1890000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:55:25.1890000-07:00|Change|10FF0003||| +37|2023-10-06T21:55:25.3900000-07:00|10FF0007|Kehabiqo Febiqo|00010230|113717|129844|10000|10000|0||99.93|103.35|0.00|3.14|1500|0|0|01|01000769|0|C1F00000|| +21|2023-10-06T21:55:25.3900000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|726003|27660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40399424|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.08|106.31|0.00|-3.14|00010237|0|1| +37|2023-10-06T21:55:25.4350000-07:00|10FF0007|Kehabiqo Febiqo|00010232|113717|129844|10000|10000|0||99.93|103.35|0.00|3.14|1500|0|0|01|01000769|0|41F00000|| +38|2023-10-06T21:55:25.4350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113717|129844|10000|10000|0||99.93|103.35|0.00|3.14|0|0|0||||||||||||| +21|2023-10-06T21:55:25.5250000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40021585|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|40346128|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||99.59|100.36|0.00|-3.12|00010238|0|1| +21|2023-10-06T21:55:25.5250000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40346128|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||99.59|100.36|0.00|-3.12|00010239|0|1| +38|2023-10-06T21:55:25.5710000-07:00|400215FF||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:55:25.5710000-07:00|40021585|Zeromus|00010231|40335919||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:25.5710000-07:00|40021585|Zeromus|00010235|40333781||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:25.5710000-07:00|10FF000A|Dukaro Nezikaro|00010235|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|01|030001FB|0|C1A00000|| +21|2023-10-06T21:55:25.5710000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|40346128|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9800|10000|||100.06|102.17|0.00|3.14|0001023A|0|1| +38|2023-10-06T21:55:25.5710000-07:00|400215FF||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:55:25.4700000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:55:25.4700000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T21:55:25.4700000-07:00|Change|400215AD||||||||| +37|2023-10-06T21:55:25.6590000-07:00|40021585|Zeromus|00010233|40311173||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:25.6590000-07:00|10FF0003|Gegehi Gehi|00010233|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|2300|0|0|01|010004D3|0|41F00000|| +38|2023-10-06T21:55:25.6590000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|0|0|0|||||||||| +21|2023-10-06T21:55:25.7040000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40311173|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||100.11|101.93|0.00|-3.13|0001023B|0|1| +21|2023-10-06T21:55:25.7480000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9600|10000|||100.85|109.27|0.00|-3.11|73814|73814|9600|10000|||100.85|109.27|0.00|-3.11|0001023C|0|1| +38|2023-10-06T21:55:25.7480000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|0|0|0||||||||||||| +26|2023-10-06T21:55:25.7480000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:55:25.7950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.70|101.11|0.00|-3.13| +03|2023-10-06T21:55:25.6560000-07:00|400215FF|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||101.25|101.64|0.00|3.12| +261|2023-10-06T21:55:25.6560000-07:00|Add|400215FF||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:25.9260000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001023D|0|1| +38|2023-10-06T21:55:25.9260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||| +26|2023-10-06T21:55:25.9260000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|31070000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|0|9| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|200004|4AAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.08|106.31|0.00|-3.14|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|1|9| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|31660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|113717|129844|10000|10000|||99.93|103.30|0.00|-3.13|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|2|9| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|319E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|3|9| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|308F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9400|10000|||100.13|101.81|0.00|-3.13|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|4|9| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|30CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.68|99.87|0.00|-3.13|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|5|9| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|32D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9600|10000|||100.85|109.27|0.00|-3.11|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|6|9| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|3F640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40311173|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|7|9| +22|2023-10-06T21:55:25.9700000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|31130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9900|10000|||99.47|99.23|0.00|3.01|79209|79209|9600|10000|||99.75|105.07|-0.01|-3.14|0001023E|8|9| +261|2023-10-06T21:55:25.6560000-07:00|Change|400215FF||| +37|2023-10-06T21:55:26.0150000-07:00|40021585|Zeromus|00010237|40301087||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:26.0150000-07:00|40021585|Zeromus|00010234|40273017||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:26.0150000-07:00|10FF000A|Dukaro Nezikaro|00010234|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|02|030001FB|0|41A00000|||||| +38|2023-10-06T21:55:26.0150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||| +261|2023-10-06T21:55:25.9770000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:55:26.0580000-07:00|40021585|Zeromus|00010239|40272867||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:26.1040000-07:00|400215AC|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21B30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|113717|129844|10000|10000|||99.90|102.22|0.00|-3.12|77430|77430|10000|10000|||99.99|102.07|0.00|-2.73|0001023F|0|1| +22|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|00010240|0|8| +22|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9400|10000|||100.14|101.76|0.00|3.14|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|00010240|1|8| +22|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.66|98.56|0.00|-3.12|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|00010240|2|8| +22|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|113717|129844|10000|10000|||99.90|102.22|0.00|-3.12|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|00010240|3|8| +22|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|00010240|4|8| +22|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000B|Pusu Rosu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||99.75|105.03|0.00|-3.13|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|00010240|5|8| +22|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.08|106.31|0.00|-3.14|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|00010240|6|8| +22|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9600|10000|||100.85|109.27|0.00|-3.11|81809|81809|9900|10000|||99.45|98.79|-0.01|2.92|00010240|7|8| +38|2023-10-06T21:55:26.1490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113717|129844|10000|10000|0||99.90|102.22|0.00|-3.12|0|0|0||||||||||||| +26|2023-10-06T21:55:26.1490000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:55:26.1490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.08|106.31|0.00|-3.14|0|0|0|||||||||| +26|2023-10-06T21:55:26.1490000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:55:26.1490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|19||99.45|98.79|-0.01|2.92|0|0|0|||||||||| +26|2023-10-06T21:55:26.1490000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:55:26.1490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.66|98.56|0.00|-3.12|0|0|0|||||||||| +26|2023-10-06T21:55:26.1490000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:55:26.1490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9400|10000|0||100.14|101.76|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:55:26.1490000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:55:26.1490000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|0|0|0|||||||||||||||| +26|2023-10-06T21:55:26.1490000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:55:26.1490000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||99.75|105.03|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T21:55:26.1490000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +38|2023-10-06T21:55:26.1490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:26.1490000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +37|2023-10-06T21:55:26.1930000-07:00|40021585|Zeromus|0001023A|40272867|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:55:26.1930000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +37|2023-10-06T21:55:26.2370000-07:00|40021585|Zeromus|0001023B|40272711||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:26.3720000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|3.08| +38|2023-10-06T21:55:26.3720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9400|10000|0||100.15|101.47|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:26.3720000-07:00|317|Dissipation|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:55:26.3720000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:55:26.3720000-07:00|10FF0004|Buhojaqe Zijaqe|E03|Dissipation|10FF0004|Buhojaqe Zijaqe|140E|3170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9400|10000|||100.15|101.47|0.00|3.13|81541|81541|9400|10000|||100.15|101.47|0.00|3.13|00010241|0|1| +261|2023-10-06T21:55:26.2110000-07:00|Change|400215AC||||||| +38|2023-10-06T21:55:26.3720000-07:00|400215AC|Ruby Carbuncle|005A5A00|0|77430|0|10000|0||99.99|102.07|0.00|-2.29|0|0|0|||| +26|2023-10-06T21:55:26.3720000-07:00|30|Well Fed|1505.95|10FF0004|Buhojaqe Zijaqe|400215AC|Ruby Carbuncle|2968|77430|81541| +38|2023-10-06T21:55:26.3720000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|0|0|0|||||||||||||||| +38|2023-10-06T21:55:26.4160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||| +39|2023-10-06T21:55:26.4590000-07:00|10FF0007|Kehabiqo Febiqo|115015|129844|10000|10000|||99.84|100.01|0.00|-3.11| +37|2023-10-06T21:55:26.5060000-07:00|10FF0003|Gegehi Gehi|0001023C|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|2300|0|0|01|030004D6|0|41A00000|| +21|2023-10-06T21:55:26.5060000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|1E570000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|40272711|40478540|10000|10000|||100.00|80.10|0.00|0.00|113717|129844|10000|10000|||99.84|100.01|0.00|-3.11|00010242|0|1| +21|2023-10-06T21:55:26.5060000-07:00|10FF0003|Gegehi Gehi|1D89|Swiftcast|10FF0003|Gegehi Gehi|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9600|10000|||100.85|109.27|0.00|-3.11|73814|73814|9600|10000|||100.85|109.27|0.00|-3.11|00010243|0|1| +38|2023-10-06T21:55:26.5060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:26.5060000-07:00|A7|Swiftcast|10.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:26.3070000-07:00|Change|400215FF||| +37|2023-10-06T21:55:26.5930000-07:00|40021585|Zeromus|00010236|40270140|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:55:26.5930000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +37|2023-10-06T21:55:26.6380000-07:00|10FF0003|Gegehi Gehi|00010243|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|2300|0|0|01|050000A7|0|41200000|| +37|2023-10-06T21:55:26.6380000-07:00|10FF000B|Pusu Rosu|0001023E|79209|79209|10000|10000|0||99.75|104.97|0.00|3.14|1800|0|0|0| +38|2023-10-06T21:55:26.6380000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9600|10000|0||100.85|109.27|0.00|-3.11|0|0|0||||||||||||||||||| +21|2023-10-06T21:55:26.6840000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|724003|73570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40272711|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|105.31|0.00|-3.08|00010244|0|1| +21|2023-10-06T21:55:26.6840000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40272711|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.64|97.42|0.00|-3.13|00010245|0|1| +31|2023-10-06T21:55:26.6840000-07:00|10FF0001||||| +261|2023-10-06T21:55:26.4960000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:55:26.7720000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|32D30000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|40270140|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|00010246|0|1| +21|2023-10-06T21:55:26.8160000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40270140|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|104.52|0.00|3.14|00010247|0|1| +37|2023-10-06T21:55:26.9050000-07:00|10FF0007|Kehabiqo Febiqo|0001023E|127661||||||99.81|99.51|0.00|3.13| +37|2023-10-06T21:55:26.9050000-07:00|10FF000A|Dukaro Nezikaro|0001023D|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|01|040001F1|0|41700000|| +21|2023-10-06T21:55:26.9050000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1EF00000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|40270140|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.64|97.42|0.00|3.12|00010248|0|1| +38|2023-10-06T21:55:26.9050000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||| +37|2023-10-06T21:55:26.9500000-07:00|10FF0006|Wowobora Gogobora|00010240|81809|81809|9900|10000|19||99.44|98.75|0.00|-2.16|1B00|0|0|01|0A8F|0|41E9F3B5|| +38|2023-10-06T21:55:26.9500000-07:00|400215FF|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.25|101.64|0.00|3.12|0|0|0||||||| +26|2023-10-06T21:55:26.9500000-07:00|30|Well Fed|955.67|10FF0006|Wowobora Gogobora|400215FF|Demi-Bahamut|2964|69928|81809| +26|2023-10-06T21:55:26.9500000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|400215FF|Demi-Bahamut|00|69928|81809| +37|2023-10-06T21:55:27.0400000-07:00|10FF0004|Buhojaqe Zijaqe|00010241|81541|81541|9400|10000|0||100.18|100.97|0.00|3.10|1C00|0|0|01|04000317|0|41F00000|| +38|2023-10-06T21:55:27.0410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9400|10000|0||100.18|100.97|0.00|3.10|0|0|0||||||||||||||||||| +37|2023-10-06T21:55:27.0840000-07:00|10FF0004|Buhojaqe Zijaqe|00010240|81541|81541|9400|10000|0||100.18|100.89|0.00|3.06|1C01|0|0|01|03000A8F|0|41E8DD2E|| +37|2023-10-06T21:55:27.1300000-07:00|40021585|Zeromus|00010242|40262373||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:27.1730000-07:00|40021585|Zeromus|00010246|40249362||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:27.2180000-07:00|10FF0001|Sesuga Sapisuga|00010240|129071|129071|10000|10000|0||99.87|97.42|0.00|-3.13|1302|0|0|01|02000A8F|0|41E7CCCB|| +37|2023-10-06T21:55:27.2180000-07:00|40021585|Zeromus|00010245|40246400||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:27.2180000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||99.75|102.15|0.00|3.14| +21|2023-10-06T21:55:27.2180000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40270140|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|00010249|0|1| +20|2023-10-06T21:55:27.2620000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|101.94|0.00|3.14| +21|2023-10-06T21:55:27.3080000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.92|103.62|0.00|-3.14|90216|90216|10000|10000|||99.92|103.62|0.00|-3.14|0001024A|0|1| +37|2023-10-06T21:55:27.3520000-07:00|10FF0007|Kehabiqo Febiqo|00010240|127661|129844|10000|10000|0||99.81|99.53|0.00|3.13|1503|0|0|01|02000A8F|0|41E6BA5C|| +21|2023-10-06T21:55:27.3520000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|35290000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|40246400|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9600|10000|||100.85|108.14|0.00|-3.14|0001024B|0|1| +38|2023-10-06T21:55:27.3520000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9300|10000|0||100.85|108.14|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:27.3520000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:55:27.3520000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:27.0210000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:55:27.4410000-07:00|10FF0003|Gegehi Gehi|0001023E|73814|73814|9300|10000|0||100.85|108.14|0.00|-3.14|2306|0|0|01|020004D2|0|C1F00000|| +21|2023-10-06T21:55:27.4410000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|A400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40246400|40478540|10000|10000|||100.00|80.10|0.00|0.00|127661|129844|10000|10000|||99.81|99.53|0.00|3.13|0001024C|0|1| +37|2023-10-06T21:55:27.4860000-07:00|10FF000A|Dukaro Nezikaro|00010240|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E04|0|0|01|05000A8F|0|41E5A7ED|| +37|2023-10-06T21:55:27.5740000-07:00|40021585|Zeromus|00010247|40243445||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:27.5740000-07:00|40021585|Zeromus|0001023E|40227217||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:27.2420000-07:00|Change|400215AD||||||||| +37|2023-10-06T21:55:27.6190000-07:00|10FF000B|Pusu Rosu|00010240|79209|79209|10000|10000|0||99.75|101.49|0.00|3.13|1805|0|0|01|03000A8F|0|41E4978A|| +21|2023-10-06T21:55:27.6190000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|428A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|127661|129844|10000|10000|||99.81|99.53|0.00|3.13|40227217|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001024D|0|1| +261|2023-10-06T21:55:27.3390000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:55:27.6630000-07:00|40021585|Zeromus|00010248|40219297||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:27.6630000-07:00|40021585|Zeromus|DoT|0|2303|40227217|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|10000|10000|||99.75|101.38|0.00|3.13| +36|2023-10-06T21:55:27.6630000-07:00|01B8|3| +38|2023-10-06T21:55:27.6630000-07:00|40021585|Zeromus|005A5A00|40210334|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:55:27.3390000-07:00|Change|40021585||| +37|2023-10-06T21:55:27.7530000-07:00|10FF0008|Kokosaze Lulusaze|00010240|90216|90216|10000|10000|0||99.87|100.99|0.00|-3.13|1F06|0|0|01|02000A8F|0|41E3851C|| +37|2023-10-06T21:55:27.7530000-07:00|40021585|Zeromus|00010249|40208027||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:27.7530000-07:00|10FF0001|Sesuga Sapisuga|20FDD6F|item_fdd6f|10FF0001|Sesuga Sapisuga|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.87|97.42|0.00|-3.13|129071|129071|10000|10000|||99.87|97.42|0.00|-3.13|0001024E|0|1| +261|2023-10-06T21:55:27.4360000-07:00|Change|10FF000B||||||||||||||||||| +37|2023-10-06T21:55:27.8410000-07:00|40021585|Zeromus|00010244|40178500||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:27.8410000-07:00|10FF0007|Kehabiqo Febiqo|20FDD6F|item_fdd6f|10FF0007|Kehabiqo Febiqo|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|127661|129844|10000|10000|||99.81|99.53|0.00|3.13|127661|129844|10000|10000|||99.81|99.53|0.00|3.13|0001024F|0|1| +37|2023-10-06T21:55:27.8860000-07:00|10FF0003|Gegehi Gehi|00010240|73814|73814|9300|10000|0||100.85|105.06|0.00|-3.13|2307|0|0|02|020004D2|0|C1F00000|||||| +21|2023-10-06T21:55:27.9310000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31E20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|40178500|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||99.75|101.30|0.00|3.13|00010250|0|1| +37|2023-10-06T21:55:27.9750000-07:00|40021585|Zeromus|0001024C|40175876||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:27.9750000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.21|100.45|0.00|2.88| +261|2023-10-06T21:55:27.6250000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:55:27.7400000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:55:28.0200000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|4CAD0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|40175876|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.26|101.16|0.00|-2.77|00010251|0|1| +37|2023-10-06T21:55:28.1100000-07:00|40021585|Zeromus|0001024B|40162267||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:28.1100000-07:00|10FF0003|Gegehi Gehi|0001024B|73814|73814|9300|10000|0||100.85|102.93|0.00|-3.14|2300|0|0|01|020004D2|0|41F00000|| +39|2023-10-06T21:55:28.1100000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9600|10000|||100.21|100.45|0.00|2.94| +39|2023-10-06T21:55:28.1100000-07:00|10FF0003|Gegehi Gehi|73814|73814|9500|10000|||100.85|102.93|0.00|-3.14| +261|2023-10-06T21:55:27.8550000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:55:28.1100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9500|10000|0||100.85|102.93|0.00|-3.14|0|0|0||||||||||||||||||| +39|2023-10-06T21:55:28.1540000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.84|98.02|-0.01|-3.12| +39|2023-10-06T21:55:28.2870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9800|10000|||101.68|101.71|0.00|-3.12| +261|2023-10-06T21:55:28.1930000-07:00|Change|400215AC||||| +37|2023-10-06T21:55:28.4200000-07:00|10FF0007|Kehabiqo Febiqo|0001024D|110627||||||99.81|99.53|0.00|3.13| +261|2023-10-06T21:55:28.2850000-07:00|Change|10FF0004||||||| +261|2023-10-06T21:55:28.2850000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:55:28.5550000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|00010252|0|1| +37|2023-10-06T21:55:28.6440000-07:00|40021585|Zeromus|00010251|40142638||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:28.6440000-07:00|10FF0001|Sesuga Sapisuga|0001024E|129071|129071|10000|10000|0||99.87|97.42|0.00|-3.13|1300|0|0|01|03000031|296B|41F00000|| +26|2023-10-06T21:55:28.6440000-07:00|31|Medicated|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|296B|129071|129071| +21|2023-10-06T21:55:28.6440000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40162267|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9800|10000|||101.37|101.97|0.00|-3.12|00010253|0|1| +38|2023-10-06T21:55:28.6440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.87|97.42|0.00|-3.13|0|0|0||||||||||||| +261|2023-10-06T21:55:28.3780000-07:00|Change|400215FF||||||||| +12|2023-10-06T21:55:28.3780000-07:00|19|3734|389|3999|247|412|390|3734|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +21|2023-10-06T21:55:28.6880000-07:00|400215FF|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|14B90000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|40142638|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.24|101.61|0.00|-3.09|00010254|0|1| +261|2023-10-06T21:55:28.3780000-07:00|Change|40021585||| +37|2023-10-06T21:55:28.7340000-07:00|10FF0007|Kehabiqo Febiqo|0001024F|110627|129844|10000|10000|0||99.81|99.53|0.00|3.13|1500|0|0|01|04000031|296B|41F00000|| +26|2023-10-06T21:55:28.7340000-07:00|31|Medicated|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|296B|129844|129844| +38|2023-10-06T21:55:28.7340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110627|129844|10000|10000|0||99.81|99.53|0.00|3.13|0|0|0|||||||||||||||| +261|2023-10-06T21:55:28.4700000-07:00|Change|10FF000B||||||||||||||||| +39|2023-10-06T21:55:28.8220000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.87|97.42|0.00|-3.13| +21|2023-10-06T21:55:28.9130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4EA00000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40142638|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9600|10000|||100.21|100.45|0.00|-3.13|00010255|0|1| +21|2023-10-06T21:55:28.9560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|9DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40142638|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|-3.13|00010256|0|1| +31|2023-10-06T21:55:28.9560000-07:00|10FF0001||||| +21|2023-10-06T21:55:29.0460000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|2EE60000|A3E|340000|A0F|A758000|11B|2D8000|0|0|0|0|0|0|0|0|40142638|40478540|10000|10000|||100.00|80.10|0.00|0.00|110627|129844|10000|10000|||99.81|99.53|0.00|3.13|00010257|0|1| +21|2023-10-06T21:55:29.0460000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|3A050000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|40142638|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|00010258|0|1| +38|2023-10-06T21:55:29.0460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110627|129844|10000|10000|0||99.81|99.53|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:29.0460000-07:00|A75|Surging Tempest|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:55:28.7710000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:55:29.1800000-07:00|40021585|Zeromus|00010253|40142484||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:29.1800000-07:00|10FF000B|Pusu Rosu|00010252|79209|79209|9600|10000|0||99.75|101.30|0.00|3.13|1800|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:55:29.1800000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T21:55:29.2240000-07:00|40021585|Zeromus|00010250|40129714||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:29.2240000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1F550000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|40142484|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|-3.13|00010259|0|1| +20|2023-10-06T21:55:29.2240000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|101.30|0.00|3.13| +39|2023-10-06T21:55:29.3580000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|3.08| +21|2023-10-06T21:55:29.4020000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41712003|47D40000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|40129714|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|0001025A|0|1| +21|2023-10-06T21:55:29.4020000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40129714|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001025B|0|1| +38|2023-10-06T21:55:29.4020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:29.4020000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:55:29.4020000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:55:29.4470000-07:00|40021585|Zeromus|00010258|40114861||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:55:29.2190000-07:00|400215AD|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.91|105.09|0.00|3.04| +261|2023-10-06T21:55:29.2190000-07:00|Remove|400215AD| +37|2023-10-06T21:55:29.4930000-07:00|40021585|Zeromus|00010256|40112336||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:29.4930000-07:00|10FF0001|Sesuga Sapisuga|00010256|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|1300|0|0|02|0400076E|03|C1F00000|||||| +39|2023-10-06T21:55:29.4930000-07:00|10FF0007|Kehabiqo Febiqo|111925|129844|10000|10000|||99.81|99.53|0.00|3.13| +21|2023-10-06T21:55:29.4930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40129714|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|0001025C|0|1| +21|2023-10-06T21:55:29.4930000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9200|10000|||100.21|100.45|0.00|-3.13|81541|81541|9200|10000|||100.21|100.45|0.00|-3.13|0001025D|0|1| +38|2023-10-06T21:55:29.4930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9200|10000|0||100.21|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:55:29.4930000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:55:29.4930000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||99.75|101.30|0.00|3.13|0|0|0|||||||||||||||| +261|2023-10-06T21:55:29.2190000-07:00|Change|10FF0004||||||||||||||| +38|2023-10-06T21:55:29.5830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111925|129844|10000|10000|0||99.81|99.51|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:55:29.6270000-07:00|10FF0004|Buhojaqe Zijaqe|0001025D|81541|81541|9200|10000|0||100.21|100.45|0.00|-3.13|1C00|0|0|01|060000A7|0|41200000|| +38|2023-10-06T21:55:29.6270000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9200|10000|0||100.21|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:55:29.6710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|0|0|0||||||||||||||||||| +37|2023-10-06T21:55:29.7150000-07:00|40021585|Zeromus|00010255|40092208||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:29.7150000-07:00|40021585|Zeromus|00010254|40086903||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:29.4150000-07:00|Change|40021585||| +21|2023-10-06T21:55:29.7600000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|554003|42E70000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|40086903|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9500|10000|||99.93|99.99|0.00|3.14|0001025E|0|1| +38|2023-10-06T21:55:29.7600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9200|10000|0||99.93|99.99|0.00|3.14|0|0|0|||||||||||||||| +30|2023-10-06T21:55:29.7600000-07:00|A7|Swiftcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:29.5120000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T21:55:29.8050000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40086903|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||100.23|100.36|0.00|3.08|0001025F|0|1| +21|2023-10-06T21:55:29.8050000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40021585|Zeromus|714003|154E0000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|40086903|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|00010260|0|1| +38|2023-10-06T21:55:29.8050000-07:00|40021585|Zeromus|005A5A00|40086903|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T21:55:29.8050000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +21|2023-10-06T21:55:29.8940000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|376B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|40086903|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||99.75|101.30|0.00|3.13|00010261|0|1| +37|2023-10-06T21:55:29.9380000-07:00|40021585|Zeromus|0001025B|40083223|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +37|2023-10-06T21:55:29.9830000-07:00|40021585|Zeromus|00010259|40075202|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +37|2023-10-06T21:55:29.9830000-07:00|40021585|Zeromus|0001025A|40056814|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +37|2023-10-06T21:55:29.9830000-07:00|10FF0001|Sesuga Sapisuga|0001025A|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|1300|0|0|02|0400076E|03|41F00000|||||| +38|2023-10-06T21:55:29.9830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|0|0|0||||||||||||||||||| +261|2023-10-06T21:55:29.7950000-07:00|Change|10FF0003||||| +39|2023-10-06T21:55:30.2080000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:30.2520000-07:00|40021585|Zeromus|0001025C|40053878|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +21|2023-10-06T21:55:30.2520000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|00010262|0|1| +37|2023-10-06T21:55:30.3410000-07:00|40021585|Zeromus|0001025F|40053725|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|C1A00000|| +37|2023-10-06T21:55:30.3410000-07:00|40021585|Zeromus|00010260|40048271|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200027E|0|41A00000|| +21|2023-10-06T21:55:30.3410000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|548B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|40056814|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||100.27|100.05|0.00|2.99|00010263|0|1| +38|2023-10-06T21:55:30.3410000-07:00|40021585|Zeromus|005A5A00|40048271|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:55:30.3410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||100.27|100.05|0.00|2.99|0|0|0||||||||||||||||||| +30|2023-10-06T21:55:30.3410000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +04|2023-10-06T21:55:30.0210000-07:00|400215AC|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||99.99|102.07|0.00|-2.92| +261|2023-10-06T21:55:30.0210000-07:00|Remove|400215AC| +21|2023-10-06T21:55:30.4740000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|4A410000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|40048271|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9800|10000|||102.17|101.16|0.00|-2.97|00010264|0|1| +261|2023-10-06T21:55:30.1370000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:55:30.2340000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:55:30.5180000-07:00|40021585|Zeromus|0001025E|40031144||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:30.6530000-07:00|40021585|Zeromus|DoT|0|1F51|40048271|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||98.62|102.22|0.00|3.08| +21|2023-10-06T21:55:30.6530000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|14DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40048271|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|00010265|0|1| +36|2023-10-06T21:55:30.6530000-07:00|0294|3| +38|2023-10-06T21:55:30.6530000-07:00|40021585|Zeromus|005A5A00|40023127|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +00|2023-10-06T21:55:30.0000000-07:00|0044|Zeromus|I wish but to return home.| +37|2023-10-06T21:55:30.6960000-07:00|40021585|Zeromus|00010257|40011121||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:30.6960000-07:00|10FF0007|Kehabiqo Febiqo|00010257|111925|129844|10000|10000|0||99.90|98.83|0.00|-3.13|1500|0|0|01|05000A75|0|41F00000|| +21|2023-10-06T21:55:30.6970000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|00010266|0|1| +38|2023-10-06T21:55:30.6970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111925|129844|10000|10000|0||99.90|98.83|0.00|-3.13|0|0|0||||||||||||||||||| +38|2023-10-06T21:55:30.6970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:30.6970000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|83502|83502| +26|2023-10-06T21:55:30.6970000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +38|2023-10-06T21:55:30.7390000-07:00|4002160B||005A5A00|76288|79156|10000|10000|0||||||0|0|0||||||| +20|2023-10-06T21:55:30.7420000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:30.7420000-07:00|4002160B||005A5A00|76288|79156|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:55:30.4220000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:55:30.4220000-07:00|Change|40021585||||||||||||| +21|2023-10-06T21:55:30.8300000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40011121|40478540|10000|10000|||100.00|80.10|0.00|0.00|111925|129844|10000|10000|||99.85|98.83|0.00|-3.13|00010267|0|1| +22|2023-10-06T21:55:30.8300000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|00010268|0|8| +22|2023-10-06T21:55:30.8300000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8800|10000|||100.27|100.05|0.00|-3.13|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|00010268|1|8| +22|2023-10-06T21:55:30.8300000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9500|10000|||99.11|100.22|0.00|-2.25|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|00010268|2|8| +22|2023-10-06T21:55:30.8300000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|111925|129844|10000|10000|||99.85|98.83|0.00|-3.13|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|00010268|3|8| +22|2023-10-06T21:55:30.8300000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000B|Pusu Rosu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9881|10000|||99.75|101.30|0.00|3.13|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|00010268|4|8| +22|2023-10-06T21:55:30.8300000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|00010268|5|8| +22|2023-10-06T21:55:30.8300000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|00010268|6|8| +22|2023-10-06T21:55:30.8300000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|73814|73814|9200|10000|||99.93|99.99|0.00|3.14|00010268|7|8| +37|2023-10-06T21:55:30.8750000-07:00|10FF0001|Sesuga Sapisuga|00010262|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|1300|0|0|01|0600004C|0|41A00000|| +26|2023-10-06T21:55:30.8750000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:55:31.0090000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40021585|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40011121|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8800|10000|||100.27|100.05|0.00|-3.13|00010269|0|1| +261|2023-10-06T21:55:30.6030000-07:00|Add|4002160B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:55:30.7220000-07:00|4002160B|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||98.74|100.43|0.00|-0.06| +21|2023-10-06T21:55:31.0540000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|750003|2F650000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|40011121|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|0001026A|0|1| +38|2023-10-06T21:55:31.0540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:55:31.0540000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:55:31.0540000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:55:30.7220000-07:00|Change|4002160B||| +37|2023-10-06T21:55:31.0990000-07:00|40021585|Zeromus|00010264|39992112||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:31.0990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9000|10000|||100.27|100.05|0.00|-3.13| +37|2023-10-06T21:55:31.1440000-07:00|40021585|Zeromus|00010263|39970469||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:31.1440000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.84|97.95|0.00|3.13| +39|2023-10-06T21:55:31.1440000-07:00|10FF0003|Gegehi Gehi|73814|73814|9400|10000|||99.93|99.99|0.00|3.14| +261|2023-10-06T21:55:30.8360000-07:00|Change|10FF0003||||| +37|2023-10-06T21:55:31.1880000-07:00|40021585|Zeromus|00010261|39956282||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:31.1880000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|101.30|0.00|3.13| +21|2023-10-06T21:55:31.2320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|A460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39992112|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|0001026B|0|1| +31|2023-10-06T21:55:31.2320000-07:00|10FF0001||||| +39|2023-10-06T21:55:31.2760000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9700|10000|||99.42|99.61|0.00|3.01| +261|2023-10-06T21:55:30.9540000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:55:31.3640000-07:00|40021585|Zeromus|00010267|39952948||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:31.4540000-07:00|40021585|Zeromus|00010265|39947609||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:31.4540000-07:00|10FF000A|Dukaro Nezikaro|00010266|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|02|060007A2|05|41F00000|||||| +38|2023-10-06T21:55:31.4540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:55:31.4990000-07:00|10FF0003|Gegehi Gehi|00010268|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|2300|0|0|01|030004D7|0|41A00000|| +26|2023-10-06T21:55:31.4990000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:55:31.4990000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|19600000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|39947609|40478540|10000|10000|||100.00|80.10|0.00|0.00|111925|129844|10000|10000|||99.78|98.83|0.00|-3.13|0001026C|0|1| +39|2023-10-06T21:55:31.5430000-07:00|400215FF|Demi-Bahamut|66800|69928|10000|10000|||101.24|101.61|0.00|-3.08| +21|2023-10-06T21:55:31.5880000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73814|73814|9400|10000|||99.93|99.99|0.00|3.14|73814|73814|9400|10000|||99.93|99.99|0.00|3.14|0001026D|0|1| +21|2023-10-06T21:55:31.5880000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39947609|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001026E|0|1| +38|2023-10-06T21:55:31.5880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:31.5880000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73814|73814| +261|2023-10-06T21:55:31.2770000-07:00|Change|10FF0004||||| +37|2023-10-06T21:55:31.6330000-07:00|10FF0004|Buhojaqe Zijaqe|00010268|81541|81541|9000|10000|0||100.27|100.05|0.00|-3.13|1C01|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:55:31.6330000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:55:31.6330000-07:00|10FF0003|Gegehi Gehi|00010268|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|2301|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T21:55:31.6330000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40021585|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|39947609|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001026F|0|1| +38|2023-10-06T21:55:31.6330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:55:31.6330000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:55:31.6770000-07:00|40021585|Zeromus|0001026A|39935476||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:31.6770000-07:00|10FF0001|Sesuga Sapisuga|0001026A|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|1300|0|0|02|07000558|04|41F00000|||||| +38|2023-10-06T21:55:31.6770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:55:31.7230000-07:00|4002160B|Bunshin|64AF|Phantom Kamaitachi|40021585|Zeromus|354003|55B10000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|39947609|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||98.63|102.23|0.00|3.08|00010270|0|1| +21|2023-10-06T21:55:31.7230000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|30B70000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|39947609|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|00010271|0|1| +261|2023-10-06T21:55:31.3770000-07:00|Change|4002160B||||||||| +37|2023-10-06T21:55:31.7700000-07:00|40021585|Zeromus|0001026B|39932846||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:31.7700000-07:00|10FF0006|Wowobora Gogobora|00010268|81809|81809|9700|10000|19||100.94|101.12|0.00|1.32|1B02|0|0|01|03000511|0|41A00000|| +26|2023-10-06T21:55:31.7700000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +37|2023-10-06T21:55:31.7700000-07:00|10FF0003|Gegehi Gehi|00010268|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|2302|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T21:55:31.7700000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39947609|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.94|101.12|0.00|1.32|00010272|0|1| +38|2023-10-06T21:55:31.7700000-07:00|400215FF|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.24|101.61|0.00|-3.08|0|0|0|||||||||| +26|2023-10-06T21:55:31.7700000-07:00|511|Embolden|19.95|10FF0003|Gegehi Gehi|400215FF|Demi-Bahamut|00|69928|73814| +261|2023-10-06T21:55:31.4720000-07:00|Change|4002160B||||| +37|2023-10-06T21:55:31.8100000-07:00|40021585|Zeromus|00010269|39932846|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004C5|0|41700000|| +26|2023-10-06T21:55:31.8100000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +39|2023-10-06T21:55:31.8100000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.87|97.42|0.00|3.13| +261|2023-10-06T21:55:31.4720000-07:00|Change|10FF000B||||||||||||| +21|2023-10-06T21:55:31.8550000-07:00|400215FF|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|754003|1C890000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|39932846|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.24|101.61|0.00|-3.08|00010273|0|1| +21|2023-10-06T21:55:31.8550000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|44DA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|39932846|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9881|10000|||99.75|101.30|0.00|3.13|00010274|0|1| +37|2023-10-06T21:55:31.9000000-07:00|10FF0007|Kehabiqo Febiqo|00010268|111925|129844|10000|10000|0||99.78|98.83|0.00|3.13|1503|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:55:31.9000000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +37|2023-10-06T21:55:31.9000000-07:00|10FF0003|Gegehi Gehi|00010268|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|2303|0|0|01|050007B3|06|C1700000|| +21|2023-10-06T21:55:31.9000000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|710003|68A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39932846|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|00010275|0|1| +37|2023-10-06T21:55:31.9900000-07:00|10FF0003|Gegehi Gehi|0001026D|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|2300|0|0|01|050007B3|06|41700000|| +38|2023-10-06T21:55:31.9900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:55:32.0350000-07:00|40021585|Zeromus|0001026C|39926350||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:32.0350000-07:00|10FF000B|Pusu Rosu|00010268|79209|79209|9481|10000|0||99.75|101.30|0.00|3.13|1804|0|0|01|05000511|0|41A00000|| +26|2023-10-06T21:55:32.0350000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|79209|73814| +26|2023-10-06T21:55:32.0350000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:55:32.0350000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|12310000|104|6CC8000|0|0|0|0|0|0|0|0|0|0|0|0|39932846|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||100.27|100.05|0.00|-3.13|00010276|0|1| +37|2023-10-06T21:55:32.1250000-07:00|40021585|Zeromus|0001026E|39924064||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:32.1690000-07:00|10FF0008|Kokosaze Lulusaze|00010268|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|1F05|0|0|01|03000511|0|41A00000|| +26|2023-10-06T21:55:32.1690000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +21|2023-10-06T21:55:32.1690000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|111925|129844|10000|10000|||99.78|98.83|0.00|3.13|111925|129844|10000|10000|||99.78|98.83|0.00|3.13|00010277|0|1| +21|2023-10-06T21:55:32.1690000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39924064|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|00010278|0|1| +38|2023-10-06T21:55:32.1690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111925|129844|10000|10000|0||99.78|98.83|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:32.1690000-07:00|A75|Surging Tempest|38.48|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:55:32.1690000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:55:32.1690000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:55:32.1690000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:55:32.2590000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|1C5A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39924064|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|00010279|0|1| +37|2023-10-06T21:55:32.3030000-07:00|40021585|Zeromus|00010272|39923900||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:32.3030000-07:00|10FF000A|Dukaro Nezikaro|00010268|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E06|0|0|01|07000511|0|41A00000|| +26|2023-10-06T21:55:32.3030000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|83502|73814| +38|2023-10-06T21:55:32.3030000-07:00|4002160B|Bunshin|005A5A00|76288|79156|10000|10000|0||98.73|100.56|0.00|3.08|0|0|0|||||||||| +26|2023-10-06T21:55:32.3030000-07:00|30|Well Fed|2165.58|10FF000A|Dukaro Nezikaro|4002160B|Bunshin|294E|79156|83502| +26|2023-10-06T21:55:32.3030000-07:00|A8F|Searing Light|23.84|10FF0006|Wowobora Gogobora|4002160B|Bunshin|00|79156|81809| +26|2023-10-06T21:55:32.3030000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002160B|Bunshin|00|79156|73814| +39|2023-10-06T21:55:32.3470000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|3.08| +21|2023-10-06T21:55:32.3930000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|754003|39C00000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|39923900|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||99.93|99.99|0.00|3.14|0001027A|0|1| +21|2023-10-06T21:55:32.3930000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39923900|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||99.93|99.99|0.00|3.14|0001027B|0|1| +38|2023-10-06T21:55:32.3930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:32.3930000-07:00|7B3|Manafication|14.55|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73814|73814| +37|2023-10-06T21:55:32.4370000-07:00|40021585|Zeromus|00010275|39897107||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:32.4370000-07:00|10FF0001|Sesuga Sapisuga|00010268|129071|129071|10000|10000|0||99.87|97.42|0.00|3.13|1307|0|0|01|09000511|0|41A00000|| +26|2023-10-06T21:55:32.4370000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +39|2023-10-06T21:55:32.4810000-07:00|10FF0007|Kehabiqo Febiqo|113223|129844|10000|10000|||99.78|98.83|0.00|3.13| +38|2023-10-06T21:55:32.4810000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||99.75|101.30|0.00|3.13|0|0|0||||||||||||||||||| +37|2023-10-06T21:55:32.5260000-07:00|40021585|Zeromus|00010271|39884636||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:32.5710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113223|129844|10000|10000|0||99.78|98.83|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:32.6160000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|15F30000|77A20E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|39884636|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|0001027C|0|1| +20|2023-10-06T21:55:32.7490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.27|100.05|0.00|-3.13| +261|2023-10-06T21:55:32.4030000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T21:55:32.8390000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|34B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39884636|40478540|10000|10000|||100.00|80.10|0.00|0.00|113223|129844|10000|10000|||99.78|98.83|0.00|3.13|0001027D|0|1| +261|2023-10-06T21:55:32.4970000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:55:32.8830000-07:00|40021585|Zeromus|00010279|39877378||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:32.8830000-07:00|40021585|Zeromus|00010273|39870073||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:32.9280000-07:00|10FF0007|Kehabiqo Febiqo|00010277|113223|129844|10000|10000|0||99.78|98.83|0.00|3.13|1500|0|0|03|07000499|03|41700000|||||||||| +37|2023-10-06T21:55:32.9280000-07:00|40021585|Zeromus|00010278|39867398||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:32.9280000-07:00|40021585|Zeromus|0001027B|39867370||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:32.9280000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|173B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39884636|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|0001027E|0|1| +21|2023-10-06T21:55:32.9280000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|752003|8A370000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|39884636|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.55|100.52|-0.01|-3.10|0001027F|0|1| +38|2023-10-06T21:55:32.9280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113223|129844|10000|10000|0||99.78|98.83|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:32.4970000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:55:33.0170000-07:00|40021585|Zeromus|0001027A|39852586||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:33.0170000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19714003|41C40000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|39867370|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|00010280|0|1| +38|2023-10-06T21:55:33.0170000-07:00|40021585|Zeromus|005A5A00|39852586|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:55:33.0170000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T21:55:33.0170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:55:33.0170000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:55:33.0610000-07:00|40021585|Zeromus|00010276|39847929|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:55:33.1510000-07:00|40021585|Zeromus|00010274|39830303|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +20|2023-10-06T21:55:33.1510000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|101.30|0.00|3.13| +39|2023-10-06T21:55:33.2400000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:33.2840000-07:00|40021585|Zeromus|00010270|39808366|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T21:55:33.2840000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|712003|769C0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|39830303|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|00010281|0|1| +37|2023-10-06T21:55:33.4620000-07:00|40021585|Zeromus|0001027D|39794872|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T21:55:33.5070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|A0A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39808366|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|00010282|0|1| +31|2023-10-06T21:55:33.5070000-07:00|10FF0001||||| +37|2023-10-06T21:55:33.5520000-07:00|40021585|Zeromus|0001027F|39759489|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T21:55:33.6410000-07:00|40021585|Zeromus|0001027C|39753870|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|04000CB6|0|C1700000|||||| +26|2023-10-06T21:55:33.6410000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +37|2023-10-06T21:55:33.6410000-07:00|40021585|Zeromus|00010281|39723506|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +24|2023-10-06T21:55:33.6860000-07:00|40021585|Zeromus|DoT|0|1C6B|39759489|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||99.87|97.42|0.00|3.13| +21|2023-10-06T21:55:33.6860000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|37590000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|39759489|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||100.27|100.05|0.00|-3.13|00010283|0|1| +36|2023-10-06T21:55:33.6860000-07:00|0370|3| +38|2023-10-06T21:55:33.6860000-07:00|40021585|Zeromus|005A5A00|39716231|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:55:33.7310000-07:00|40021585|Zeromus|0001027E|39710284|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T21:55:33.7740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|D580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39716231|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|00010284|0|1| +261|2023-10-06T21:55:33.4540000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:55:33.8200000-07:00|40021585|Zeromus|00010280|39693448|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|41700000|| +21|2023-10-06T21:55:33.8200000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|3BA80000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|39716231|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||99.75|101.30|0.00|3.13|00010285|0|1| +21|2023-10-06T21:55:33.8200000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44712003|66D30000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|39716231|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|00010286|0|1| +38|2023-10-06T21:55:33.8200000-07:00|40021585|Zeromus|005A5A00|39693448|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:55:33.8200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:33.8200000-07:00|7A2|Bunshin|27.59|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|83502|83502| +261|2023-10-06T21:55:33.5520000-07:00|Change|10FF000B||| +21|2023-10-06T21:55:33.9080000-07:00|4002160B|Bunshin|4407|Aeolian Edge|40021585|Zeromus|710003|15290000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|39693448|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||98.63|102.23|0.00|3.08|00010287|0|1| +21|2023-10-06T21:55:33.9080000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39693448|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||100.27|100.05|0.00|-3.13|00010288|0|1| +21|2023-10-06T21:55:33.9530000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|C45F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39693448|40478540|10000|10000|||100.00|80.10|0.00|0.00|113223|129844|10000|10000|||99.78|98.83|0.00|3.13|00010289|0|1| +38|2023-10-06T21:55:33.9530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113223|129844|10000|10000|0||99.78|98.83|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:33.9530000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:55:34.0430000-07:00|40021585|Zeromus|00010282|39690878||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:34.0870000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8800|10000|||100.27|100.05|0.00|-3.13| +21|2023-10-06T21:55:34.0880000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37750003|38870000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|39690878|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||99.93|99.99|0.00|3.14|0001028A|0|1| +38|2023-10-06T21:55:34.0880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:34.0880000-07:00|7B3|Manafication|12.86|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73814|73814| +39|2023-10-06T21:55:34.1320000-07:00|10FF0003|Gegehi Gehi|73814|73814|9600|10000|||99.93|99.99|0.00|3.14| +39|2023-10-06T21:55:34.1770000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.84|97.95|0.00|3.13| +21|2023-10-06T21:55:34.1770000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|45400000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|39690878|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|0001028B|0|1| +261|2023-10-06T21:55:33.8710000-07:00|Change|10FF0003||| +21|2023-10-06T21:55:34.2210000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|1D770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39690878|40478540|10000|10000|||100.00|80.10|0.00|0.00|113223|129844|10000|10000|||99.78|98.83|0.00|3.13|0001028C|0|1| +37|2023-10-06T21:55:34.3100000-07:00|40021585|Zeromus|00010284|39687462||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:34.3100000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||100.51|100.45|0.00|-3.12| +37|2023-10-06T21:55:34.3540000-07:00|40021585|Zeromus|00010286|39661139||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:34.1000000-07:00|Change|10FF0006||||| +26|2023-10-06T21:55:34.3980000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:55:34.3980000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|752003|1DF30000|104|B318000|0|0|0|0|0|0|0|0|0|0|0|0|39690878|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8800|10000|||100.27|100.04|0.00|-3.14|0001028D|0|1| +37|2023-10-06T21:55:34.4430000-07:00|40021585|Zeromus|00010287|39655722||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:34.4430000-07:00|40021585|Zeromus|00010288|39655554||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:34.4430000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|754003|AF8A0000|4|29D38000|0|0|0|0|0|0|0|0|0|0|0|0|39661139|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.87|97.42|0.00|3.13|0001028E|0|1| +38|2023-10-06T21:55:34.4430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||99.87|97.42|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:34.4430000-07:00|558|Requiescat|27.19|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:55:34.4430000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:55:34.4430000-07:00|10FF0001||||| +37|2023-10-06T21:55:34.4880000-07:00|40021585|Zeromus|00010283|39641385||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:34.5320000-07:00|400215FF|Demi-Bahamut|66800|69928|10000|10000|||101.24|101.61|0.00|-3.08| +22|2023-10-06T21:55:34.5320000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|714003|19670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39661139|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001028F|0|3| +22|2023-10-06T21:55:34.5320000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|15CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39661139|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001028F|1|3| +22|2023-10-06T21:55:34.5320000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|15AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39661139|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001028F|2|3| +261|2023-10-06T21:55:34.1940000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:55:34.5770000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|13EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39641385|40478540|10000|10000|||100.00|80.10|0.00|0.00|113223|129844|10000|10000|||99.78|98.83|0.00|3.13|00010290|0|1| +37|2023-10-06T21:55:34.7120000-07:00|40021585|Zeromus|0001028A|39626914||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:34.3780000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:55:34.7570000-07:00|40021585|Zeromus|0001028C|39619371||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:34.7570000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|00010291|0|1| +38|2023-10-06T21:55:34.7570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:55:34.7570000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T21:55:34.8010000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||99.87|97.42|0.00|3.13| +21|2023-10-06T21:55:34.8440000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|C9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39626914|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|00010292|0|1| +37|2023-10-06T21:55:34.8890000-07:00|40021585|Zeromus|00010289|39569100||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:34.8890000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39626914|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.51|100.43|0.00|3.13|00010293|0|1| +21|2023-10-06T21:55:34.8890000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|724003|5CC70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39626914|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9600|10000|||99.93|99.99|0.00|3.14|00010294|0|1| +37|2023-10-06T21:55:34.9780000-07:00|40021585|Zeromus|0001028B|39551372||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:34.9780000-07:00|10FF0008|Kokosaze Lulusaze|0001028B|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|1F00|0|0|01|04000353|0|C0A00000|| +21|2023-10-06T21:55:35.0220000-07:00|400215FF|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|15260000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|39569100|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.24|101.61|0.00|-3.08|00010295|0|1| +37|2023-10-06T21:55:35.0680000-07:00|40021585|Zeromus|0001028E|39506434||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:35.0680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||| +37|2023-10-06T21:55:35.1120000-07:00|40021585|Zeromus|00010285|39491162||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:35.1120000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|101.30|0.00|3.13| +261|2023-10-06T21:55:34.6890000-07:00|Change|10FF000B||||||||||||| +20|2023-10-06T21:55:35.1560000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.27|99.96|0.00|-3.13| +37|2023-10-06T21:55:35.2020000-07:00|40021585|Zeromus|00010290|39486063||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:35.2440000-07:00|40021585|Zeromus|0001028F|39479560||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:35.2450000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|16D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39486063|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||99.87|97.42|0.00|3.13|00010296|0|1| +39|2023-10-06T21:55:35.3340000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|3.08| +37|2023-10-06T21:55:35.3780000-07:00|40021585|Zeromus|0001028F|39473980||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:35.3780000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40021585|Zeromus|6BE0E|35D0000|85000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|39479560|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|00010297|0|1| +37|2023-10-06T21:55:35.4230000-07:00|10FF0008|Kokosaze Lulusaze|00010291|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|1F00|0|0|01|04000353|0|40A00000|| +37|2023-10-06T21:55:35.4230000-07:00|40021585|Zeromus|00010293|39473770||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:35.4230000-07:00|40021585|Zeromus|0001028D|39466103||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:35.4230000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|55470000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|39479560|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.42|100.12|-0.01|-2.78|00010298|0|1| +38|2023-10-06T21:55:35.4230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||| +261|2023-10-06T21:55:35.0350000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:55:35.4690000-07:00|10FF0007|Kehabiqo Febiqo|114521|129844|10000|10000|||99.78|98.83|-0.02|3.13| +38|2023-10-06T21:55:35.4690000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||99.75|101.30|0.00|3.13|0|0|0||||||||||||||||||| +37|2023-10-06T21:55:35.5130000-07:00|40021585|Zeromus|0001028F|39460556||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:35.2360000-07:00|Change|10FF0001||| +37|2023-10-06T21:55:35.6030000-07:00|40021585|Zeromus|00010292|39457328||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:35.6030000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A754003|6E570000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|39460556|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9600|10000|||99.93|99.99|0.00|3.14|00010299|0|1| +38|2023-10-06T21:55:35.6030000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9600|10000|0||99.93|99.99|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:35.6030000-07:00|7B3|Manafication|11.34|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73814|73814| +22|2023-10-06T21:55:35.7370000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0001|Sesuga Sapisuga|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||99.87|97.42|0.00|3.13|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001029A|0|8| +22|2023-10-06T21:55:35.7370000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0008|Kokosaze Lulusaze|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001029A|1|8| +22|2023-10-06T21:55:35.7370000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0004|Buhojaqe Zijaqe|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81541|81541|8800|10000|||100.27|99.96|0.00|-3.13|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001029A|2|8| +22|2023-10-06T21:55:35.7370000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0003|Gegehi Gehi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|73814|73814|9600|10000|||99.93|99.99|0.00|3.14|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001029A|3|8| +22|2023-10-06T21:55:35.7370000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0006|Wowobora Gogobora|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|81809|81809|9300|10000|||100.42|100.11|0.00|-3.12|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001029A|4|8| +22|2023-10-06T21:55:35.7370000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0007|Kehabiqo Febiqo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|114521|129844|10000|10000|||99.88|99.63|0.00|2.63|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001029A|5|8| +22|2023-10-06T21:55:35.7370000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF000B|Pusu Rosu|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||99.75|101.30|0.00|3.13|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001029A|6|8| +22|2023-10-06T21:55:35.7370000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF000A|Dukaro Nezikaro|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001029A|7|8| +261|2023-10-06T21:55:35.3290000-07:00|Change|40021585||||||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|400215A1||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|4002159D||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|4002159C||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|4002159E||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|400215A2||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|4002159B||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|400215A3||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|4002159A||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|4002159F||||||||| +261|2023-10-06T21:55:35.3290000-07:00|Change|400215A0||||||||| +21|2023-10-06T21:55:35.7810000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|11420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||99.87|97.42|0.00|3.13|0001029B|0|1| +21|2023-10-06T21:55:35.7810000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|3A440000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|39457328|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||99.75|101.30|0.00|3.13|0001029C|0|1| +31|2023-10-06T21:55:35.7810000-07:00|10FF0001||||| +37|2023-10-06T21:55:35.8260000-07:00|40021585|Zeromus|00010296|39451479||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:35.8260000-07:00|4002159A|Zeromus|8B42|Abyssal Echoes|4002159A|Zeromus|15.700|83.50|116.50|0.00|0.00| +20|2023-10-06T21:55:35.8260000-07:00|4002159B|Zeromus|8B41|unknown_8b41|4002159B|Zeromus|8.700|100.00|100.00|0.00|-0.79| +261|2023-10-06T21:55:35.4240000-07:00|Change|10FF0004||||||||||||||||| +20|2023-10-06T21:55:35.8270000-07:00|4002159C|Zeromus|8B42|Abyssal Echoes|4002159C|Zeromus|15.700|116.50|83.50|0.00|0.00| +20|2023-10-06T21:55:35.8270000-07:00|4002159D|Zeromus|8B41|unknown_8b41|4002159D|Zeromus|8.700|100.00|100.00|0.00|2.36| +20|2023-10-06T21:55:35.8270000-07:00|4002159E|Zeromus|8B42|Abyssal Echoes|4002159E|Zeromus|15.700|100.00|112.00|0.00|0.00| +20|2023-10-06T21:55:35.8270000-07:00|4002159F|Zeromus|8B40|unknown_8b40|4002159F|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:55:35.8270000-07:00|400215A1|Zeromus|8B40|unknown_8b40|400215A1|Zeromus|8.700|100.00|100.00|0.00|3.14| +20|2023-10-06T21:55:35.8270000-07:00|400215A2|Zeromus|8B42|Abyssal Echoes|400215A2|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:55:35.8270000-07:00|400215A3|Zeromus|8D2B|unknown_8d2b|400215A3|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:55:35.8270000-07:00|400215A0|Zeromus|8B42|Abyssal Echoes|400215A0|Zeromus|15.700|100.00|88.00|0.00|0.00| +21|2023-10-06T21:55:35.8700000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39451479|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9600|10000|||99.93|99.99|0.00|3.14|0001029D|0|1| +21|2023-10-06T21:55:35.9590000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001029E|0|1| +21|2023-10-06T21:55:35.9590000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|DFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39451479|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|0001029F|0|1| +38|2023-10-06T21:55:35.9590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:35.9590000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +37|2023-10-06T21:55:36.0030000-07:00|40021585|Zeromus|00010297|39451479|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|0|41200000|| +26|2023-10-06T21:55:36.0030000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|90216| +37|2023-10-06T21:55:36.0030000-07:00|10FF0008|Kokosaze Lulusaze|00010297|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|1F00|0|0|01|0500079A|0|41200000|| +26|2023-10-06T21:55:36.0030000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:55:35.7320000-07:00|Change|4002160B||| +261|2023-10-06T21:55:35.7320000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T21:55:36.0480000-07:00|40021585|Zeromus|00010298|39429648||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:36.0480000-07:00|40021585|Zeromus|00010294|39405897||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:36.0480000-07:00|40021585|Zeromus|00010295|39400483||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:36.0480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|19||100.42|100.11|0.00|-3.12|0|0|0|||||||||||||||| +26|2023-10-06T21:55:36.0480000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:55:36.0480000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|750003|23D60000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|39451479|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||100.42|100.11|0.00|-3.12|000102A0|0|1| +38|2023-10-06T21:55:36.0480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|19||100.42|100.11|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:36.0480000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:55:36.0930000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|57D40000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|39451479|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8800|10000|||100.27|99.96|0.00|-3.13|000102A1|0|1| +261|2023-10-06T21:55:35.9650000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:55:35.9650000-07:00|Change|4002159F||||||||||||| +37|2023-10-06T21:55:36.2250000-07:00|40021585|Zeromus|00010299|39372236||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:36.2250000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:36.3150000-07:00|40021585|Zeromus|0001029B|39367818||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:36.3590000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|722003|62C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39400483|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9600|10000|||99.93|99.99|0.00|3.14|000102A2|0|1| +37|2023-10-06T21:55:36.4030000-07:00|40021585|Zeromus|0001029D|39367790||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:36.4030000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|A6680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39367818|40478540|10000|10000|||100.00|80.10|0.00|0.00|114521|129844|10000|10000|||99.75|100.39|0.00|-3.09|000102A3|0|1| +38|2023-10-06T21:55:36.4030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114521|129844|10000|10000|0||99.75|100.39|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:36.4030000-07:00|499|Inner Release|11.48|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +21|2023-10-06T21:55:36.4480000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|000102A4|0|1| +38|2023-10-06T21:55:36.4480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:36.4480000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +37|2023-10-06T21:55:36.4930000-07:00|40021585|Zeromus|0001029F|39364209||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:55:36.4930000-07:00|10FF000B|Pusu Rosu|DF1|Asylum|10FF000B|Pusu Rosu|BD880F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9881|10000|||99.75|101.30|0.00|3.13|79209|79209|9881|10000|||99.75|101.30|0.00|3.13|000102A5|0|1| +24|2023-10-06T21:55:36.6720000-07:00|40021585|Zeromus|DoT|0|236C|39364209|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||99.84|97.95|0.00|3.13| +21|2023-10-06T21:55:36.6720000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|726003|EA2E0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|39364209|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|000102A6|0|1| +36|2023-10-06T21:55:36.6720000-07:00|044C|3| +38|2023-10-06T21:55:36.6720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:55:36.6720000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:55:36.6720000-07:00|40021585|Zeromus|005A5A00|39355141|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:55:36.7160000-07:00|4002160B|Bunshin|76288|79156|10000|10000|||98.63|102.23|0.00|3.08| +38|2023-10-06T21:55:36.7160000-07:00|400215FF|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.24|101.61|0.00|-3.08|0|0|0||||||||||||| +26|2023-10-06T21:55:36.7160000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|400215FF|Demi-Bahamut|01|69928|40478540| +21|2023-10-06T21:55:36.7160000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40021585|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|39364209|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||100.42|100.11|0.00|-3.12|000102A7|0|1| +21|2023-10-06T21:55:36.7160000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|12E70000|104|7108000|0|0|0|0|0|0|0|0|0|0|0|0|39364209|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||100.27|99.96|0.00|-3.13|000102A8|0|1| +38|2023-10-06T21:55:36.7160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|0||100.27|99.96|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:55:36.7160000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:55:36.8050000-07:00|400215FF|Demi-Bahamut|1D19|Akh Morn|40021585|Zeromus|750003|BC770000|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|39355141|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.24|101.61|0.00|-3.08|000102A9|0|1| +261|2023-10-06T21:55:36.4880000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:55:36.8930000-07:00|40021585|Zeromus|000102A1|39332657||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:36.9380000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|756003|E0D60000|4|29D68000|0|0|0|0|0|0|0|0|0|0|0|0|39355141|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||99.87|97.42|0.00|3.13|000102AA|0|1| +21|2023-10-06T21:55:36.9380000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|252003|84C64001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39355141|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|000102AB|0|1| +38|2023-10-06T21:55:36.9380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||99.87|97.42|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:36.9380000-07:00|558|Requiescat|24.69|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:55:36.9380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:55:36.9380000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +30|2023-10-06T21:55:36.9380000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +31|2023-10-06T21:55:36.9380000-07:00|10FF0001||||| +261|2023-10-06T21:55:36.5810000-07:00|Change|10FF0001||| +37|2023-10-06T21:55:37.0270000-07:00|40021585|Zeromus|000102A3|39290057||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:37.0710000-07:00|40021585|Zeromus|000102A0|39280883||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:37.0710000-07:00|10FF0006|Wowobora Gogobora|000102A0|81809|81809|9300|10000|19||100.42|100.11|0.00|-3.12|1B00|0|0|01|05000A8D|0|42700000|| +37|2023-10-06T21:55:37.0710000-07:00|40021585|Zeromus|0001029C|39265967||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:37.0710000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|150E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39332657|40478540|10000|10000|||100.00|80.10|0.00|0.00|114521|129844|10000|10000|||99.75|100.20|0.00|-3.13|000102AC|0|1| +38|2023-10-06T21:55:37.0710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|19||100.42|100.11|0.00|-3.12|0|0|0||||||||||||||||||| +39|2023-10-06T21:55:37.1170000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8600|10000|||100.27|99.96|0.00|-3.13| +39|2023-10-06T21:55:37.1170000-07:00|10FF0003|Gegehi Gehi|73814|73814|9800|10000|||99.93|99.99|0.00|3.14| +261|2023-10-06T21:55:36.7010000-07:00|Change|10FF0003||| +261|2023-10-06T21:55:36.8160000-07:00|Change|10FF000B||||| +39|2023-10-06T21:55:37.1620000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.84|97.95|0.00|3.13| +21|2023-10-06T21:55:37.2510000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|000102AD|0|1| +39|2023-10-06T21:55:37.2950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||100.42|100.11|0.00|-3.12| +261|2023-10-06T21:55:36.9350000-07:00|Change|10FF0006||| +24|2023-10-06T21:55:37.3400000-07:00|10FF000B|Pusu Rosu|HoT|777|15A2|79209|79209|9881|10000|||99.75|101.30|0.00|0.39|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||99.75|101.30|0.00|0.39| +24|2023-10-06T21:55:37.3400000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E08|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||99.75|101.30|0.00|0.39| +24|2023-10-06T21:55:37.3400000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E0E|81809|81809|9500|10000|||100.42|100.11|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||99.75|101.30|0.00|0.39| +24|2023-10-06T21:55:37.3400000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|15BD|81541|81541|8600|10000|||100.27|99.96|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||99.75|101.30|0.00|0.39| +24|2023-10-06T21:55:37.3400000-07:00|10FF0003|Gegehi Gehi|HoT|777|DDC|73814|73814|9800|10000|||99.93|99.99|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||99.75|101.30|0.00|0.39| +24|2023-10-06T21:55:37.3400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DCE|114521|129844|10000|10000|||99.75|100.10|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||99.75|101.30|0.00|0.39| +24|2023-10-06T21:55:37.3400000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|14C5|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||99.75|101.30|0.00|0.39| +24|2023-10-06T21:55:37.3400000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DC2|129071|129071|8200|10000|||99.87|97.42|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||99.75|101.30|0.00|0.39| +37|2023-10-06T21:55:37.3400000-07:00|10FF000B|Pusu Rosu|000102A5|79209|79209|9881|10000|0||99.75|101.30|0.00|0.39|1800|0|0|02|06000777|0|41C00000|||||| +26|2023-10-06T21:55:37.3400000-07:00|777|Asylum|24.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +26|2023-10-06T21:55:37.3400000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +20|2023-10-06T21:55:37.3400000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|101.30|0.00|0.39| +38|2023-10-06T21:55:37.3400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118055|129844|10000|10000|0||99.75|100.10|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:37.3400000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:55:37.3400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:37.3400000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:55:37.3400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|19||100.42|100.11|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:55:37.3400000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:55:37.3400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||99.87|97.42|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:37.3400000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:55:37.3400000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8600|10000|0||100.27|99.96|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:55:37.3400000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:55:37.3400000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9800|10000|0||99.93|99.99|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:55:37.3400000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:55:37.3400000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9881|10000|0||99.75|101.30|0.00|0.39|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:55:37.3400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:37.3400000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T21:55:37.1620000-07:00|Add|40021610||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:37.1620000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:55:37.5190000-07:00|40021585|Zeromus|000102A2|39240681||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:37.5190000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39265967|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|000102AE|0|1| +37|2023-10-06T21:55:37.5630000-07:00|40021585|Zeromus|000102AA|39183123||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:37.5630000-07:00|40021585|Zeromus|000102AB|39083597||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:37.5630000-07:00|400215FF|Demi-Bahamut|66800|69928|10000|10000|||101.24|101.61|0.00|-3.08| +20|2023-10-06T21:55:37.5630000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.27|99.96|0.00|-3.13| +21|2023-10-06T21:55:37.6070000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|DCF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39083597|40478540|10000|10000|||100.00|80.10|0.00|0.00|118055|129844|10000|10000|||99.75|100.10|0.00|3.13|000102AF|0|1| +21|2023-10-06T21:55:37.6070000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|712003|25740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39083597|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||99.87|97.42|0.00|3.13|000102B0|0|1| +37|2023-10-06T21:55:37.6960000-07:00|40021585|Zeromus|000102AC|39078207||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:37.6960000-07:00|40021585|Zeromus|000102A6|39018257|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|01|4104ED97|| +26|2023-10-06T21:55:37.6960000-07:00|35D|Wildfire|8.31|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|01|40478540|90216| +37|2023-10-06T21:55:37.6960000-07:00|40021585|Zeromus|000102A9|38970010||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:37.6960000-07:00|400215FF|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.24|101.61|0.00|-3.08|0|0|0|||||||||| +30|2023-10-06T21:55:37.6960000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|400215FF|Demi-Bahamut|01|69928|40478540| +261|2023-10-06T21:55:37.3470000-07:00|Change|10FF000B||||||||||| +38|2023-10-06T21:55:37.7410000-07:00|40021611||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:55:37.7410000-07:00|40021585|Zeromus|000102A8|38965171||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:37.7410000-07:00|40021611||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||||||||| +39|2023-10-06T21:55:37.7850000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8400|10000|||99.87|97.42|0.00|3.13| +21|2023-10-06T21:55:37.7850000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40021585|Zeromus|754003|79410000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|38970010|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9800|10000|||99.93|99.99|0.00|3.14|000102B1|0|1| +38|2023-10-06T21:55:37.7850000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:55:37.7850000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:55:37.7850000-07:00|7B3|Manafication|9.16|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73814|73814| +261|2023-10-06T21:55:37.4400000-07:00|Change|10FF0003||| +261|2023-10-06T21:55:37.5320000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:55:37.8740000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|118055|129844|10000|10000|||99.75|100.04|0.00|3.13|118055|129844|10000|10000|||99.75|100.04|0.00|3.13|000102B2|0|1| +21|2023-10-06T21:55:37.8740000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|756003|AB770000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|38965171|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||100.42|100.11|0.00|-3.12|000102B3|0|1| +38|2023-10-06T21:55:37.8740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118055|129844|10000|10000|0||99.75|100.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:37.8740000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +03|2023-10-06T21:55:37.5320000-07:00|40021611|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.59|99.75|0.00|3.13| +261|2023-10-06T21:55:37.5320000-07:00|Change|10FF0006||| +261|2023-10-06T21:55:37.5320000-07:00|Add|40021611||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:37.9190000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|000102B4|0|1| +38|2023-10-06T21:55:37.9190000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:55:37.9190000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +261|2023-10-06T21:55:37.6310000-07:00|Change|40021611||| +261|2023-10-06T21:55:37.6310000-07:00|Change|10FF0001||| +21|2023-10-06T21:55:38.0070000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|58020000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|38965171|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9881|10000|||99.75|101.30|0.00|3.13|000102B5|0|1| +21|2023-10-06T21:55:38.0520000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38965171|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||100.42|100.11|0.00|-3.12|000102B6|0|1| +21|2023-10-06T21:55:38.0520000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|14CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38965171|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||99.88|97.34|0.00|3.12|000102B7|0|1| +31|2023-10-06T21:55:38.0520000-07:00|10FF0001||||| +37|2023-10-06T21:55:38.1410000-07:00|40021585|Zeromus|000102AF|38961636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:38.1410000-07:00|10FF0007|Kehabiqo Febiqo|000102AF|118055|129844|10000|10000|0||99.75|99.99|-0.02|3.13|1500|0|0|01|0A000769|0|C1F00000|| +21|2023-10-06T21:55:38.1410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|11470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38965171|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|000102B8|0|1| +37|2023-10-06T21:55:38.1860000-07:00|40021585|Zeromus|000102B0|38952048||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:38.2770000-07:00|40021585|Zeromus|000102AE|38949387||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:38.3660000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.62|102.22|0.00|3.08| +38|2023-10-06T21:55:38.3660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:55:38.4100000-07:00|10FF0007|Kehabiqo Febiqo|000102B2|118055|129844|10000|10000|0||99.75|99.89|0.00|3.11|1500|0|0|01|0A000769|0|41F00000|| +38|2023-10-06T21:55:38.4100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118055|129844|10000|10000|0||99.75|99.89|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T21:55:38.4550000-07:00|10FF0007|Kehabiqo Febiqo|119353|129844|10000|10000|||99.75|99.89|0.00|3.11| +24|2023-10-06T21:55:38.4550000-07:00|10FF000B|Pusu Rosu|HoT|777|D9A|79209|79209|9481|10000|||99.75|101.30|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:38.4550000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E10|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:38.4550000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DF2|81809|81809|9200|10000|||100.42|100.11|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:38.4550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|1595|81541|81541|8600|10000|||100.27|99.96|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:38.4550000-07:00|10FF0003|Gegehi Gehi|HoT|777|DE4|73814|73814|9400|10000|||99.93|99.99|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:38.4550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|15C4|118055|129844|10000|10000|||99.75|99.89|0.00|3.11|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:38.4550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|D9F|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:38.4550000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E0B|129071|129071|8400|10000|||99.88|95.64|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.75|101.30|0.00|3.13| +38|2023-10-06T21:55:38.4550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124925|129844|10000|10000|0||99.75|99.89|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:38.4550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:55:38.4550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|19||100.42|100.11|0.00|-3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:55:38.4550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8400|10000|0||99.88|95.64|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:38.4550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8600|10000|0||100.27|99.96|0.00|-3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:55:38.4550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.93|99.99|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:55:38.4550000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||99.75|101.30|0.00|3.13|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:55:38.4550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:55:38.5000000-07:00|40021585|Zeromus|000102B3|38905492||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:38.5000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|35E20000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|38949387|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||100.27|99.96|0.00|-3.13|000102B9|0|1| +21|2023-10-06T21:55:38.5000000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|724003|1A1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38949387|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||99.93|99.99|0.00|3.14|000102BA|0|1| +21|2023-10-06T21:55:38.5450000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40021585|Zeromus|752003|8F4D0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|38905492|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||100.42|100.11|0.00|-3.12|000102BB|0|1| +37|2023-10-06T21:55:38.5890000-07:00|40021585|Zeromus|000102B6|38905331||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:38.5890000-07:00|40021585|Zeromus|000102B7|38900007||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:38.6340000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|000102BC|0|1| +38|2023-10-06T21:55:38.6340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:38.6340000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T21:55:38.6790000-07:00|40021585|Zeromus|000102B8|38895584||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:38.3970000-07:00|Change|10FF000B||||||||||||||||| +34|2023-10-06T21:55:38.7670000-07:00|40021611|Automaton Queen|40021611|Automaton Queen|01| +261|2023-10-06T21:55:38.4940000-07:00|Change|40021611||| +21|2023-10-06T21:55:38.8590000-07:00|400215FF|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|15FF0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|38895584|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.24|101.61|0.00|-3.08|000102BD|0|1| +21|2023-10-06T21:55:38.8590000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|C84F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38895584|40478540|10000|10000|||100.00|80.10|0.00|0.00|124925|129844|10000|10000|||99.75|99.73|0.00|3.09|000102BE|0|1| +38|2023-10-06T21:55:38.8590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124925|129844|10000|10000|0||99.75|99.73|0.00|3.09|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:38.8590000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:55:38.4940000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:55:39.0340000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|11E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38895584|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||100.27|99.96|0.00|-3.13|000102BF|0|1| +261|2023-10-06T21:55:38.6900000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:55:39.1240000-07:00|40021585|Zeromus|000102BA|38888899||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:39.1240000-07:00|10FF0003|Gegehi Gehi|000102BA|73814|73814|9400|10000|0||99.93|99.99|-0.02|3.14|2300|0|0|01|010004D3|0|C1F00000|| +38|2023-10-06T21:55:39.1240000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|0||100.27|99.96|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:39.1240000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:55:39.1240000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8200|10000|||100.27|99.96|0.00|-3.13|81541|81541|8200|10000|||100.27|99.96|0.00|-3.13|000102C0|0|1| +21|2023-10-06T21:55:39.1240000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|000102C1|0|1| +38|2023-10-06T21:55:39.1240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:39.1240000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +37|2023-10-06T21:55:39.2140000-07:00|40021585|Zeromus|000102B1|38857858||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:39.2140000-07:00|10FF0003|Gegehi Gehi|000102B1|73814|73814|9400|10000|0||99.93|99.99|-0.02|3.14|2300|0|0|01|010004D3|0|41F00000|| +39|2023-10-06T21:55:39.2140000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||99.75|101.30|0.00|3.13| +26|2023-10-06T21:55:39.2140000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:55:39.2140000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|3EBE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38888899|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|000102C2|0|1| +26|2023-10-06T21:55:39.2140000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:55:39.2140000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|750003|3CC50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38888899|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||100.42|100.11|0.00|-3.12|000102C3|0|1| +21|2023-10-06T21:55:39.2140000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|1CA30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38888899|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||99.93|99.99|-0.02|3.14|000102C4|0|1| +38|2023-10-06T21:55:39.2140000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9400|10000|0||99.93|99.99|-0.02|3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:55:39.3030000-07:00|40021585|Zeromus|000102B9|38844064||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:39.3030000-07:00|40021585|Zeromus|000102B5|38821534||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:39.3030000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:39.3470000-07:00|40021585|Zeromus|000102BB|38784849||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:39.3470000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38821534|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9400|10000|||99.93|99.99|-0.02|3.14|000102C5|0|1| +21|2023-10-06T21:55:39.4360000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|750003|7F550000|4|2C1A8000|0|0|0|0|0|0|0|0|0|0|0|0|38821534|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||99.73|90.68|0.00|-3.11|000102C6|0|1| +38|2023-10-06T21:55:39.4360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7400|10000|0||99.73|90.68|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:39.4360000-07:00|558|Requiescat|22.20|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:55:39.4360000-07:00|10FF0001||||| +21|2023-10-06T21:55:39.4810000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|14B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38784849|40478540|10000|10000|||100.00|80.10|0.00|0.00|124925|129844|10000|10000|||99.75|99.72|0.00|3.13|000102C7|0|1| +37|2023-10-06T21:55:39.5690000-07:00|40021585|Zeromus|000102BF|38784563||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:39.6140000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|552003|8DE80000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|38784563|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|000102C8|0|1| +38|2023-10-06T21:55:39.6140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:55:39.6140000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T21:55:39.6140000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T21:55:39.6610000-07:00|10FF0004|Buhojaqe Zijaqe|000102C0|81541|81541|10000|10000|0||100.27|99.96|0.00|-3.13|1C00|0|0|0| +24|2023-10-06T21:55:39.6610000-07:00|40021585|Zeromus|DoT|0|1AD8|38784563|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||99.84|97.95|0.00|3.13| +36|2023-10-06T21:55:39.6610000-07:00|0528|3| +38|2023-10-06T21:55:39.6610000-07:00|40021585|Zeromus|005A5A00|38777691|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:55:39.7040000-07:00|4002160B|Bunshin|76288|79156|10000|10000|||98.63|102.23|0.00|3.08| +261|2023-10-06T21:55:39.4380000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T21:55:39.7940000-07:00|40021585|Zeromus|000102BE|38726412||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:39.7940000-07:00|40021585|Zeromus|000102C4|38719081||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:39.7940000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|252D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38777691|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|000102C9|0|1| +261|2023-10-06T21:55:39.4380000-07:00|Change|40021611||| +37|2023-10-06T21:55:39.8370000-07:00|40021585|Zeromus|000102C2|38703019|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|02|40C54FE2|| +26|2023-10-06T21:55:39.8370000-07:00|35D|Wildfire|6.17|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|02|40478540|90216| +37|2023-10-06T21:55:39.8830000-07:00|40021585|Zeromus|000102C5|38702988||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:39.8830000-07:00|40021585|Zeromus|000102BD|38697357||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:39.5310000-07:00|Change|10FF0004||| +38|2023-10-06T21:55:39.9270000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||99.75|101.30|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:55:39.9270000-07:00|9D|Presence of Mind|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +20|2023-10-06T21:55:39.9720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.27|99.96|0.00|-3.13| +21|2023-10-06T21:55:39.9730000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|53DB0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|38697357|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||99.75|101.30|0.00|3.13|000102CA|0|1| +261|2023-10-06T21:55:39.7350000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:55:40.1050000-07:00|40021585|Zeromus|000102C7|38692057||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:40.1050000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|10000|10000|||100.27|99.96|0.00|-3.13| +37|2023-10-06T21:55:40.1500000-07:00|40021585|Zeromus|000102C3|38676500||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:40.1500000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.84|97.95|0.00|3.13| +39|2023-10-06T21:55:40.1500000-07:00|10FF0003|Gegehi Gehi|73814|73814|9600|10000|||99.93|99.99|-0.02|3.14| +261|2023-10-06T21:55:39.7350000-07:00|Change|10FF0003||||| +21|2023-10-06T21:55:40.1940000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38676500|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|000102CB|0|1| +21|2023-10-06T21:55:40.2390000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|750003|77860000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|38676500|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|9600|10000|||99.93|99.99|-0.02|3.14|000102CC|0|1| +38|2023-10-06T21:55:40.2390000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|9200|10000|0||99.93|99.99|-0.02|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:55:40.2390000-07:00|7B3|Manafication|6.71|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +39|2023-10-06T21:55:40.2840000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9400|10000|||100.42|100.11|0.00|-3.12| +37|2023-10-06T21:55:40.3330000-07:00|40021585|Zeromus|000102C6|38643903||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:40.3330000-07:00|40021585|Zeromus|000102C8|38607575||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:40.3330000-07:00|10FF000A|Dukaro Nezikaro|000102C8|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|01|04000A82|01|41F00000|| +21|2023-10-06T21:55:40.3330000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38676500|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||99.73|90.68|0.00|-3.11|000102CD|0|1| +21|2023-10-06T21:55:40.3330000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|152F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38676500|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|000102CE|0|1| +38|2023-10-06T21:55:40.3330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||| +31|2023-10-06T21:55:40.3330000-07:00|10FF0001||||| +261|2023-10-06T21:55:39.9660000-07:00|Change|10FF0006||| +21|2023-10-06T21:55:40.3740000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|752003|880D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|38607575|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||100.42|100.11|0.00|-3.12|000102CF|0|1| +21|2023-10-06T21:55:40.3740000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|000102D0|0|1| +38|2023-10-06T21:55:40.3740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:55:40.3740000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:55:40.4180000-07:00|40021585|Zeromus|000102C9|38598058||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:40.4610000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|7E0F|A788000|0|0|0|0|0|0|0|0|0|0|124925|129844|10000|10000|||99.75|99.72|-0.02|3.13|124925|129844|10000|10000|||99.75|99.72|-0.02|3.13|000102D1|0|1| +39|2023-10-06T21:55:40.5510000-07:00|400215FF|Demi-Bahamut|66800|69928|10000|10000|||101.24|101.61|0.00|-3.08| +22|2023-10-06T21:55:40.5510000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000B|Pusu Rosu|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|000102D2|0|8| +22|2023-10-06T21:55:40.5510000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|9200|10000|||99.93|99.99|-0.02|3.14|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|000102D2|1|8| +22|2023-10-06T21:55:40.5510000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9400|10000|||100.42|100.11|0.00|-3.12|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|000102D2|2|8| +22|2023-10-06T21:55:40.5510000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|10000|10000|||100.27|99.96|0.00|-3.13|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|000102D2|3|8| +22|2023-10-06T21:55:40.5510000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||98.62|102.22|0.00|3.08|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|000102D2|4|8| +22|2023-10-06T21:55:40.5510000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|124925|129844|10000|10000|||99.75|99.72|-0.02|3.13|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|000102D2|5|8| +261|2023-10-06T21:55:40.2060000-07:00|Change|400215FF||||| +22|2023-10-06T21:55:40.5510000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|000102D2|6|8| +22|2023-10-06T21:55:40.5510000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7400|10000|||99.73|90.68|0.00|-3.11|79209|79209|9600|10000|||99.75|101.30|0.00|3.13|000102D2|7|8| +38|2023-10-06T21:55:40.5510000-07:00|400215FF|Demi-Bahamut|005A5A00|0|69928|0|10000|0||101.24|101.61|0.00|-3.08|0|0|0|||| +30|2023-10-06T21:55:40.5510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|400215FF|Demi-Bahamut|00|69928|81809| +30|2023-10-06T21:55:40.5510000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400215FF|Demi-Bahamut|00|69928|73814| +38|2023-10-06T21:55:40.5960000-07:00|40021620||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:55:40.5960000-07:00|40021620||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:55:40.6400000-07:00|10FF0001|Sesuga Sapisuga|0001029A|1|129071|7400|10000|0||99.73|90.68|0.00|-3.11|1300|0|0|01|0A0006E9|0|41200000|| +26|2023-10-06T21:55:40.6400000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +37|2023-10-06T21:55:40.6850000-07:00|10FF0008|Kokosaze Lulusaze|0001029A|1|90216|10000|10000|0||99.84|97.95|0.00|3.13|1F01|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:55:40.6850000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +26|2023-10-06T21:55:40.6850000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:55:40.6850000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|27500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38598058|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|97.95|0.00|3.13|000102D3|0|1| +261|2023-10-06T21:55:40.3000000-07:00|Add|40021620||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:55:40.3000000-07:00|40021620|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.40|98.37|0.00|0.02| +261|2023-10-06T21:55:40.3950000-07:00|Change|10FF0003||| +37|2023-10-06T21:55:40.7300000-07:00|10FF0004|Buhojaqe Zijaqe|0001029A|1|81541|10000|10000|0||100.27|99.96|0.00|-3.13|1C02|0|0|01|080006E9|0|41200000|| +26|2023-10-06T21:55:40.7300000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021620||| +37|2023-10-06T21:55:40.7750000-07:00|10FF0003|Gegehi Gehi|0001029A|1|73814|9200|10000|0||99.93|99.99|-0.02|3.14|2303|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:55:40.7750000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +37|2023-10-06T21:55:40.7750000-07:00|10FF000A|Dukaro Nezikaro|000102D0|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|01|080004A2|0|40C00000|| +38|2023-10-06T21:55:40.7750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021598||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021597||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021599||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021596||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021592||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021593||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021595||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|40021594||||||||| +261|2023-10-06T21:55:40.3950000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:55:40.8180000-07:00|10FF0006|Wowobora Gogobora|0001029A|1|81809|9100|10000|19||100.42|100.11|0.00|-3.12|1B04|0|0|01|070006E9|0|41200000|| +26|2023-10-06T21:55:40.8180000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +39|2023-10-06T21:55:40.8180000-07:00|10FF0001|Sesuga Sapisuga|1291|129071|7600|10000|||99.73|90.68|0.00|-3.11| +261|2023-10-06T21:55:40.4900000-07:00|Change|10FF0006||| +37|2023-10-06T21:55:40.8630000-07:00|10FF0007|Kehabiqo Febiqo|0001029A|1|129844|10000|10000|0||99.75|99.72|-0.02|3.13|1505|0|0|01|0A0006E9|0|41200000|| +26|2023-10-06T21:55:40.8630000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +37|2023-10-06T21:55:40.8630000-07:00|40021585|Zeromus|000102CD|38595527||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:40.8630000-07:00|40021585|Zeromus|000102CE|38590104||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:40.8630000-07:00|40021592|Zeromus|8B42|Abyssal Echoes|40021592|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:40.8630000-07:00|40021593|Zeromus|8B41|unknown_8b41|40021593|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:40.8630000-07:00|40021594|Zeromus|8B42|Abyssal Echoes|40021594|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:40.8630000-07:00|40021595|Zeromus|8B41|unknown_8b41|40021595|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:40.8630000-07:00|40021596|Zeromus|8B42|Abyssal Echoes|40021596|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:40.8630000-07:00|40021597|Zeromus|8B40|unknown_8b40|40021597|Zeromus|8.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:40.8630000-07:00|40021598|Zeromus|8B42|Abyssal Echoes|40021598|Zeromus|15.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:40.8630000-07:00|40021599|Zeromus|8B40|unknown_8b40|40021599|Zeromus|8.700|100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:40.9080000-07:00|10FF000B|Pusu Rosu|0001029A|1|79209|9600|10000|0||99.75|101.30|0.00|3.13|1806|0|0|01|020006E9|0|41200000|| +26|2023-10-06T21:55:40.9080000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF000B|Pusu Rosu|00|79209|40478540| +21|2023-10-06T21:55:40.9080000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|5B2B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|38590104|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|81541|10000|10000|||100.27|99.96|0.00|-3.13|000102D4|0|1| +261|2023-10-06T21:55:40.5910000-07:00|Change|10FF0004||| +37|2023-10-06T21:55:40.9520000-07:00|40021585|Zeromus|000102CB|38587389||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:40.9520000-07:00|10FF000A|Dukaro Nezikaro|0001029A|1|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E07|0|0|01|090006E9|0|41200000|| +26|2023-10-06T21:55:40.9520000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|40478540| +21|2023-10-06T21:55:40.9520000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|720003|13FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38590104|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|73814|9200|10000|||99.93|99.99|-0.02|3.14|000102D5|0|1| +37|2023-10-06T21:55:40.9970000-07:00|40021585|Zeromus|000102CF|38552560||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:40.9970000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|E510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38587389|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|129844|10000|10000|||99.75|99.72|-0.02|3.13|000102D6|0|1| +37|2023-10-06T21:55:41.0410000-07:00|10FF0007|Kehabiqo Febiqo|000102D1|1|129844|10000|10000|14||99.75|99.72|-0.02|3.13|1500|0|0|03|0B000A76|0190|41000000|||||||||| +26|2023-10-06T21:55:41.0410000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T21:55:41.0410000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:55:41.0410000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:55:41.0410000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|754003|51CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38587389|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|81809|9100|10000|||100.42|100.11|0.00|-3.12|000102D7|0|1| +38|2023-10-06T21:55:41.0410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|1|129844|10000|10000|14||99.75|99.72|-0.02|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:41.0410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|1|81809|9100|10000|19||100.42|100.11|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:55:41.0410000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +261|2023-10-06T21:55:40.6900000-07:00|Change|10FF0001||| +21|2023-10-06T21:55:41.1750000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38552560|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|81809|9100|10000|||100.42|100.11|0.00|-3.12|000102D8|0|1| +21|2023-10-06T21:55:41.1750000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40021585|Zeromus|714003|4DBE0000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|38552560|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|83502|10000|10000|||98.62|102.22|0.00|3.08|000102D9|0|1| +38|2023-10-06T21:55:41.1750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|1|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:41.1750000-07:00|4A2|Ten Chi Jin|5.55|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T21:55:41.2640000-07:00|40021585|Zeromus|000102CA|38531093||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:41.2640000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|177F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38552560|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|90216|10000|10000|||99.84|97.95|0.00|3.13|000102DA|0|1| +20|2023-10-06T21:55:41.2640000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:41.3100000-07:00|40021585|Zeromus|000102D3|38521029|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|03|40963D6D|| +26|2023-10-06T21:55:41.3100000-07:00|35D|Wildfire|4.69|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|03|40478540|90216| +21|2023-10-06T21:55:41.3100000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|DA680000|200004|43518000|0|0|0|0|0|0|0|0|0|0|0|0|38552560|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|129844|10000|10000|||99.75|99.72|-0.02|3.13|000102DB|0|1| +38|2023-10-06T21:55:41.3100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|1|129844|10000|10000|14||99.75|99.72|-0.02|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:41.3100000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:55:40.9150000-07:00|Change|40021596||||||||||||| +261|2023-10-06T21:55:40.9150000-07:00|Change|40021595||||||||||||| +261|2023-10-06T21:55:40.9150000-07:00|Change|40021597||||||||||||| +261|2023-10-06T21:55:40.9150000-07:00|Change|40021594||||||||||||| +261|2023-10-06T21:55:40.9150000-07:00|Change|40021598||||||||||||| +261|2023-10-06T21:55:40.9150000-07:00|Change|40021593||||||||||||| +261|2023-10-06T21:55:40.9150000-07:00|Change|40021592||||||||||||| +261|2023-10-06T21:55:40.9150000-07:00|Change|40021599||||||||||||| +37|2023-10-06T21:55:41.3540000-07:00|10FF000B|Pusu Rosu|000102D2|1|79209|9600|10000|0||99.75|101.30|0.00|3.13|1800|0|0|01|080004C3|0|41200000|| +26|2023-10-06T21:55:41.3540000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T21:55:41.3540000-07:00|10FF000A|Dukaro Nezikaro|836|83502|10000|10000|||98.62|102.22|0.00|3.08| +37|2023-10-06T21:55:41.4870000-07:00|10FF0003|Gegehi Gehi|000102D2|1|73814|9200|10000|0||99.93|99.99|0.00|3.14|2301|0|0|01|080004C3|0|41200000|| +26|2023-10-06T21:55:41.4870000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +39|2023-10-06T21:55:41.4870000-07:00|10FF0007|Kehabiqo Febiqo|1299|129844|10000|10000|||99.75|99.72|0.00|3.13| +24|2023-10-06T21:55:41.4870000-07:00|10FF000B|Pusu Rosu|HoT|777|D74|1|79209|9600|10000|||99.75|101.30|0.00|3.13|10FF000B|Pusu Rosu|0|1|79209|9600|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:41.4870000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|1557|836|83502|10000|10000|||98.62|102.22|0.00|3.08|10FF000B|Pusu Rosu|0|1|79209|9600|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:41.4870000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DBD|1|81809|9100|10000|||100.42|100.11|0.00|-3.12|10FF000B|Pusu Rosu|0|1|79209|9600|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:41.4870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DC4|1|81541|9600|10000|||100.27|99.96|0.00|-3.13|10FF000B|Pusu Rosu|0|1|79209|9600|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:41.4870000-07:00|10FF0003|Gegehi Gehi|HoT|777|DF0|1|73814|9200|10000|||99.93|99.99|0.00|3.14|10FF000B|Pusu Rosu|0|1|79209|9600|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:41.4870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DEF|1|129844|10000|10000|||99.75|99.72|0.00|3.13|10FF000B|Pusu Rosu|0|1|79209|9600|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:41.4870000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E13|1|90216|10000|10000|||99.84|97.95|0.00|3.13|10FF000B|Pusu Rosu|0|1|79209|9600|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:41.4870000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E20|1291|129071|7600|10000|||99.73|90.68|0.00|-3.11|10FF000B|Pusu Rosu|0|1|79209|9600|10000|||99.75|101.30|0.00|3.13| +38|2023-10-06T21:55:41.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|4866|129844|10000|10000|14||99.75|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:41.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:55:41.4870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|3604|90216|10000|10000|0||99.84|97.95|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:41.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:55:41.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|3518|81809|9100|10000|19||100.42|100.11|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:55:41.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:55:41.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|4907|129071|7600|10000|0||99.73|90.68|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:41.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:55:41.4870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3525|81541|9600|10000|0||100.27|99.96|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:55:41.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:55:41.4870000-07:00|10FF0003|Gegehi Gehi|005A5A23|3569|73814|9200|10000|0||99.93|99.99|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:55:41.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:55:41.4870000-07:00|10FF000B|Pusu Rosu|005A5A18|3445|79209|10000|10000|0||99.75|101.30|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:55:41.4870000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:55:41.4870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|6299|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:41.4870000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T21:55:41.5310000-07:00|40021585|Zeromus|000102D6|38517364||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:41.5320000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102DC|0|1| +38|2023-10-06T21:55:41.5320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3525|81541|9600|10000|0||100.27|99.96|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:41.5320000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:55:41.5770000-07:00|40021585|Zeromus|000102D5|38512249||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:41.2470000-07:00|Change|40021620||| +37|2023-10-06T21:55:41.6210000-07:00|10FF0006|Wowobora Gogobora|000102D2|3518|81809|9100|10000|19||100.42|100.11|0.00|-3.12|1B02|0|0|01|040004C3|0|41200000|| +26|2023-10-06T21:55:41.6210000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +34|2023-10-06T21:55:41.6210000-07:00|40021620|Carbuncle|40021620|Carbuncle|01| +37|2023-10-06T21:55:41.7100000-07:00|40021585|Zeromus|000102D8|38512031||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:41.7100000-07:00|40021585|Zeromus|000102D4|38488692||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:41.7100000-07:00|10FF0004|Buhojaqe Zijaqe|000102D4|3525|81541|9600|10000|0||100.27|99.96|0.00|-3.13|1C00|0|0|01|09000768|0|C1700000|| +21|2023-10-06T21:55:41.7100000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|1CF50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38512249|40478540|10000|10000|||100.00|80.10|0.00|0.00|3569|73814|9200|10000|||99.93|99.99|0.00|3.14|000102DD|0|1| +37|2023-10-06T21:55:41.7550000-07:00|10FF0004|Buhojaqe Zijaqe|000102D2|3525|81541|9600|10000|0||100.27|99.96|0.00|-3.13|1C03|0|0|02|09000768|0|C1700000|||||| +26|2023-10-06T21:55:41.7550000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T21:55:41.4360000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:55:41.4360000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:55:41.8880000-07:00|10FF000A|Dukaro Nezikaro|000102D2|6299|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E04|0|0|01|0A0004C3|0|41200000|| +26|2023-10-06T21:55:41.8880000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T21:55:41.9340000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|750003|90400000|4|2C9F8000|0|0|0|0|0|0|0|0|0|0|0|0|38488692|40478540|10000|10000|||100.00|80.10|0.00|0.00|4907|129071|7600|10000|||99.73|90.68|0.00|3.12|000102DE|0|1| +38|2023-10-06T21:55:41.9340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|4907|129071|6600|10000|0||99.73|90.68|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:41.9340000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:55:41.9340000-07:00|10FF0001||||| +37|2023-10-06T21:55:41.9770000-07:00|40021585|Zeromus|000102D7|38467749||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:42.0230000-07:00|10FF0007|Kehabiqo Febiqo|000102D2|4866|129844|10000|10000|14||99.75|99.72|0.00|3.13|1505|0|0|01|080004C3|0|41200000|| +26|2023-10-06T21:55:42.0230000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T21:55:42.0660000-07:00|40021585|Zeromus|000102DA|38461734||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:42.0660000-07:00|40021585|Zeromus|000102CC|38431136||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:42.0670000-07:00|40021585|Zeromus|000102D9|38411234||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:42.0670000-07:00|10FF000A|Dukaro Nezikaro|000102D9|6299|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|01|080004A2|01|4096A7E9|| +37|2023-10-06T21:55:42.1550000-07:00|10FF0004|Buhojaqe Zijaqe|000102DC|3525|81541|9600|10000|0||100.27|99.96|0.00|-3.13|1C00|0|0|01|09000768|0|41700000|| +37|2023-10-06T21:55:42.1550000-07:00|10FF0008|Kokosaze Lulusaze|000102D2|3604|90216|10000|10000|0||99.84|97.95|0.00|3.13|1F06|0|0|01|080004C3|0|41200000|| +26|2023-10-06T21:55:42.1550000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +26|2023-10-06T21:55:42.1550000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:55:42.1550000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|3FF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38411234|40478540|10000|10000|||100.00|80.10|0.00|0.00|3604|90216|10000|10000|||99.84|97.95|0.00|3.13|000102DF|0|1| +21|2023-10-06T21:55:42.1550000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40021585|Zeromus|554003|72790000|900000E|4A28000|200000F|A828000|0|0|0|0|0|0|0|0|0|0|38411234|40478540|10000|10000|||100.00|80.10|0.00|0.00|6299|83502|10000|10000|||98.62|102.22|0.00|3.08|000102E0|0|1| +38|2023-10-06T21:55:42.1550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3525|81541|9600|10000|0||100.27|99.96|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:42.1550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|6299|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:42.1550000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +26|2023-10-06T21:55:42.1550000-07:00|4A2|Ten Chi Jin|4.57|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +39|2023-10-06T21:55:42.2430000-07:00|10FF000B|Pusu Rosu|4237|79209|10000|10000|||99.75|101.30|0.00|3.13| +22|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|5B130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102E1|0|8| +22|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|5BF20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3518|81809|9100|10000|||100.42|100.11|0.00|-3.12|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102E1|1|8| +22|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|5C800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3569|73814|9200|10000|||99.93|99.88|0.00|3.14|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102E1|2|8| +22|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|597E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4866|129844|10000|10000|||99.75|99.72|0.00|3.13|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102E1|3|8| +22|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000B|Pusu Rosu|200004|5DA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3445|79209|10000|10000|||99.75|101.30|0.00|3.13|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102E1|4|8| +22|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|5D190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3604|90216|10000|10000|||99.84|97.95|0.00|3.13|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102E1|5|8| +22|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000A|Dukaro Nezikaro|200004|5B1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6299|83502|10000|10000|||98.62|102.22|0.00|3.08|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102E1|6|8| +22|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|5BB70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4907|129071|6600|10000|||99.73|90.68|0.00|3.12|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|000102E1|7|8| +38|2023-10-06T21:55:42.2430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|3525|81541|9600|10000|0||100.27|99.96|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:42.2430000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:55:42.2880000-07:00|40021585|Zeromus|000102DD|38403821||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:42.2880000-07:00|10FF0001|Sesuga Sapisuga|000102D2|4907|129071|6600|10000|0||99.73|90.68|0.00|3.12|1307|0|0|01|070004C3|0|41200000|| +26|2023-10-06T21:55:42.2880000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T21:55:42.4680000-07:00|40021585|Zeromus|000102DB|38347909||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:42.4680000-07:00|10FF0007|Kehabiqo Febiqo|000102DB|22099||||||99.75|99.72|0.00|3.13| +21|2023-10-06T21:55:42.6000000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13390F|A748000|0|0|0|0|0|0|0|0|0|0|4907|129071|6600|10000|||99.73|90.68|0.00|3.12|4907|129071|6600|10000|||99.73|90.68|0.00|3.12|000102E2|0|1| +21|2023-10-06T21:55:42.6000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|AC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38347909|40478540|10000|10000|||100.00|80.10|0.00|0.00|4907|129071|6600|10000|||99.73|90.68|0.00|3.12|000102E3|0|1| +38|2023-10-06T21:55:42.6010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|4907|129071|6600|10000|0||99.73|90.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:42.6010000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:55:42.6010000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:55:42.6010000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:55:42.6010000-07:00|10FF0001||||| +24|2023-10-06T21:55:42.6900000-07:00|40021585|Zeromus|DoT|0|2529|38347909|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|3604|90216|10000|10000|||99.84|97.95|0.00|3.13| +21|2023-10-06T21:55:42.6900000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|756003|FFC80000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|38347909|40478540|10000|10000|||100.00|80.10|0.00|0.00|3569|73814|9200|10000|||100.29|98.70|0.00|-3.14|000102E4|0|1| +36|2023-10-06T21:55:42.6900000-07:00|0604|3| +38|2023-10-06T21:55:42.6900000-07:00|40021585|Zeromus|005A5A00|38338396|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:55:42.6900000-07:00|10FF0003|Gegehi Gehi|005A5A23|3569|73814|8800|10000|0||100.29|98.70|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:55:42.6900000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +261|2023-10-06T21:55:42.2740000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:55:42.7340000-07:00|4002160B|Bunshin|76288|79156|10000|10000|||98.63|102.23|0.00|3.08| +22|2023-10-06T21:55:42.7340000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|22F30000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|000102E5|0|8| +22|2023-10-06T21:55:42.7340000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|22C30000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|3518|81809|9100|10000|||100.42|100.11|0.00|-3.12|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|000102E5|1|8| +22|2023-10-06T21:55:42.7340000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|22300000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|3525|81541|9600|10000|||100.27|99.96|0.00|-3.13|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|000102E5|2|8| +22|2023-10-06T21:55:42.7340000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|200004|32C60000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|6299|83502|10000|10000|||98.62|102.22|0.00|3.08|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|000102E5|3|8| +22|2023-10-06T21:55:42.7340000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|22E20000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|22099|129844|10000|10000|||99.75|99.72|0.00|3.13|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|000102E5|4|8| +22|2023-10-06T21:55:42.7340000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|200004|34A80000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|3604|90216|10000|10000|||99.84|97.95|0.00|3.13|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|000102E5|5|8| +22|2023-10-06T21:55:42.7340000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|22F20000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|3569|73814|8800|10000|||100.48|98.45|0.00|-3.10|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|000102E5|6|8| +22|2023-10-06T21:55:42.7340000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|21D20000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|4907|129071|6600|10000|||99.73|90.68|0.00|3.12|4237|79209|10000|10000|||99.75|101.30|0.00|3.13|000102E5|7|8| +261|2023-10-06T21:55:42.3740000-07:00|Change|10FF0001||| +261|2023-10-06T21:55:42.4760000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:55:42.7790000-07:00|40021585|Zeromus|000102DF|38322024|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|04|404E6659|| +26|2023-10-06T21:55:42.7790000-07:00|35D|Wildfire|3.22|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|04|40478540|90216| +21|2023-10-06T21:55:42.7790000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|726003|2BD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38338396|40478540|10000|10000|||100.00|80.10|0.00|0.00|3604|90216|10000|10000|||99.84|97.95|0.00|3.13|000102E6|0|1| +37|2023-10-06T21:55:42.8240000-07:00|40021585|Zeromus|000102DE|38285096||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:42.8240000-07:00|10FF0001|Sesuga Sapisuga|000102DE|16330||||||99.73|90.68|0.00|3.12| +21|2023-10-06T21:55:42.8240000-07:00|40021611|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|12F70000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|38338396|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.59|99.75|0.00|3.13|000102E7|0|1| +21|2023-10-06T21:55:42.8240000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|3F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38338396|40478540|10000|10000|||100.00|80.10|0.00|0.00|3569|73814|8800|10000|||100.56|98.35|0.00|-3.10|000102E8|0|1| +36|2023-10-06T21:55:42.8680000-07:00|0730|3| +37|2023-10-06T21:55:42.8680000-07:00|10FF0004|Buhojaqe Zijaqe|000102E1|26840||||||100.27|99.96|0.00|-3.13| +37|2023-10-06T21:55:42.8680000-07:00|40021585|Zeromus|000102E0|38255791||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:42.8680000-07:00|10FF000A|Dukaro Nezikaro|000102E0|6299|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|02|04000A82|02|41F00000|||||| +21|2023-10-06T21:55:42.8680000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38338396|40478540|10000|10000|||100.00|80.10|0.00|0.00|3604|90216|10000|10000|||99.84|97.95|0.00|3.13|000102E9|0|1| +261|2023-10-06T21:55:42.4760000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T21:55:42.8680000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|38338396|40478540|10000|10000|||100.00|80.10|0.00|0.00|3518|81809|9100|10000|||100.42|100.11|0.00|-3.12|000102EA|0|1| +20|2023-10-06T21:55:42.8680000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.27|99.96|0.00|-3.13| +38|2023-10-06T21:55:42.8680000-07:00|40021620|Carbuncle|005A5A00|0|77698|0|10000|0||100.40|98.37|0.00|0.02|0|0|0||||||| +26|2023-10-06T21:55:42.8680000-07:00|30|Well Fed|939.75|10FF0006|Wowobora Gogobora|40021620|Carbuncle|2964|77698|81809| +38|2023-10-06T21:55:42.8680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|6299|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:42.4760000-07:00|Change|40021620||| +38|2023-10-06T21:55:42.9110000-07:00|40021622||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:55:42.9110000-07:00|40021622||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +36|2023-10-06T21:55:43.0000000-07:00|085C|3| +37|2023-10-06T21:55:43.0000000-07:00|10FF0006|Wowobora Gogobora|000102E1|27056||||||100.42|100.11|0.00|-3.12| +39|2023-10-06T21:55:43.0890000-07:00|10FF0004|Buhojaqe Zijaqe|27655|81541|9800|10000|||100.27|99.96|0.00|-3.13| +261|2023-10-06T21:55:42.6730000-07:00|Add|40021622||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:55:42.6730000-07:00|40021622|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||102.24|101.84|0.00|-3.12| +37|2023-10-06T21:55:43.1340000-07:00|40021585|Zeromus|000102E3|38253039||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:55:43.1340000-07:00|0988|3| +37|2023-10-06T21:55:43.1340000-07:00|10FF0003|Gegehi Gehi|000102E1|27249||||||100.68|98.20|0.00|-3.10| +39|2023-10-06T21:55:43.1340000-07:00|10FF0008|Kokosaze Lulusaze|4506|90216|10000|10000|||99.84|97.95|0.00|3.13| +39|2023-10-06T21:55:43.1340000-07:00|10FF0003|Gegehi Gehi|27987|73814|9000|10000|||100.68|98.20|0.00|-3.10| +21|2023-10-06T21:55:43.1780000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40021585|Zeromus|654003|54410000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|38253039|40478540|10000|10000|||100.00|80.10|0.00|0.00|6299|83502|10000|10000|||98.62|102.22|0.00|3.08|000102EB|0|1| +38|2023-10-06T21:55:43.1780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|6299|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:43.1780000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T21:55:43.1780000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T21:55:42.7830000-07:00|Change|40021622||||| +261|2023-10-06T21:55:42.8960000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:55:43.2660000-07:00|10FF0007|Kehabiqo Febiqo|000102E1|45009||||||99.75|99.72|0.00|3.13| +39|2023-10-06T21:55:43.3110000-07:00|10FF0006|Wowobora Gogobora|27874|81809|9300|10000|||100.39|100.07|0.00|-2.84| +261|2023-10-06T21:55:42.8960000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:55:43.3550000-07:00|40021585|Zeromus|000102E8|38252976||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:55:43.3990000-07:00|0AB4|3| +37|2023-10-06T21:55:43.3990000-07:00|10FF000B|Pusu Rosu|000102E1|28206||||||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:43.4440000-07:00|40021585|Zeromus|000102E6|38241758||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:43.0150000-07:00|Change|10FF0004||||| +36|2023-10-06T21:55:43.5330000-07:00|0BE0|3| +37|2023-10-06T21:55:43.5330000-07:00|10FF0008|Kokosaze Lulusaze|000102E1|28339||||||99.84|97.95|0.00|3.13| +21|2023-10-06T21:55:43.5330000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|A680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38241758|40478540|10000|10000|||100.00|80.10|0.00|0.00|6299|83502|10000|10000|||98.62|102.22|0.00|3.08|000102EC|0|1| +24|2023-10-06T21:55:43.5780000-07:00|10FF000B|Pusu Rosu|HoT|4C3|1A6B|28206|79209|9000|10000|||99.75|101.30|0.00|3.13|10FF000B|Pusu Rosu|0|28206|79209|9000|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:43.5780000-07:00|10FF000B|Pusu Rosu|000102E5|43916|79209|9000|10000|0||99.75|101.30|0.00|3.13|1800|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:55:43.5780000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T21:55:43.6230000-07:00|40021585|Zeromus|000102E7|38236903||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:43.6230000-07:00|40021585|Zeromus|000102E9|38234340||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:55:43.6230000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:55:43.6230000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2FDA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38241758|40478540|10000|10000|||100.00|80.10|0.00|0.00|28339|90216|10000|10000|||99.84|97.95|0.00|3.13|000102ED|0|1| +36|2023-10-06T21:55:43.6680000-07:00|0D0C|3| +37|2023-10-06T21:55:43.6680000-07:00|10FF000A|Dukaro Nezikaro|000102E1|29622|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E06|0|0|01|080001FB|0|C1A00000|| +24|2023-10-06T21:55:43.7120000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|2A0D|27874|81809|9300|10000|||100.08|98.25|0.00|-2.85|10FF000B|Pusu Rosu|1|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:43.7120000-07:00|10FF0006|Wowobora Gogobora|000102E5|47538|81809|9300|10000|19||100.08|98.25|0.00|-2.85|1B01|0|0|01|08000096|0|41700000|| +26|2023-10-06T21:55:43.7120000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +39|2023-10-06T21:55:43.7120000-07:00|40021611|Automaton Queen|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06| +20|2023-10-06T21:55:43.7120000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.75|101.30|0.00|3.13| +21|2023-10-06T21:55:43.7570000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|9F0D0000|4|29008000|0|0|0|0|0|0|0|0|0|0|0|0|38234340|40478540|10000|10000|||100.00|80.10|0.00|0.00|45009|129844|10000|10000|||99.75|99.72|0.00|3.13|000102EE|0|1| +38|2023-10-06T21:55:43.7570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|45009|129844|10000|10000|14||99.75|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:43.7570000-07:00|499|Inner Release|4.13|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +37|2023-10-06T21:55:43.8010000-07:00|10FF0001|Sesuga Sapisuga|000102E1|39809||||||99.73|90.68|0.00|3.12| +39|2023-10-06T21:55:43.8010000-07:00|10FF0001|Sesuga Sapisuga|41099|129071|6800|10000|||99.73|90.68|0.00|3.12| +261|2023-10-06T21:55:43.4150000-07:00|Change|10FF0001||| +261|2023-10-06T21:55:43.4150000-07:00|Change|10FF000B||||||||||||| +24|2023-10-06T21:55:43.8450000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|1B98|27655|81541|9800|10000|||100.27|99.96|0.00|-3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:43.8450000-07:00|10FF0004|Buhojaqe Zijaqe|000102E5|43471|81541|9800|10000|0||100.27|99.96|0.00|-3.13|1C02|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:55:43.8450000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T21:55:43.5140000-07:00|Change|40021622||| +24|2023-10-06T21:55:43.9800000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1AB5|29622|83502|10000|10000|||98.62|102.22|0.00|3.08|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:43.9800000-07:00|10FF000A|Dukaro Nezikaro|000102E5|49457|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E03|0|0|02|080001FB|0|C1A00000|||||| +26|2023-10-06T21:55:43.9800000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T21:55:44.0250000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|29622|83502|10000|10000|||98.62|102.22|0.00|3.08|29622|83502|10000|10000|||98.62|102.22|0.00|3.08|000102EF|0|1| +38|2023-10-06T21:55:44.0250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|49457|83502|10000|10000|0||98.62|102.22|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:44.0250000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +26|2023-10-06T21:55:44.0250000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:55:44.0690000-07:00|40021585|Zeromus|000102EC|38231676||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:44.0690000-07:00|10FF000A|Dukaro Nezikaro|000102EC|49457|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|01|08000A81|0|C1F00000|| +24|2023-10-06T21:55:44.0690000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1583|43471|81541|9800|10000|||100.27|99.96|0.00|-3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +38|2023-10-06T21:55:44.0690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48978|81541|9800|10000|0||100.27|99.96|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:55:44.1130000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1B32|45009|129844|10000|10000|||99.75|99.72|0.00|3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:44.1130000-07:00|10FF0007|Kehabiqo Febiqo|000102E5|60901|129844|10000|10000|14||99.75|99.72|0.00|3.13|1504|0|0|01|0E000096|0|41700000|| +26|2023-10-06T21:55:44.1130000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T21:55:44.1590000-07:00|40021585|Zeromus|000102EB|38210107||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:44.1590000-07:00|10FF000A|Dukaro Nezikaro|000102EB|49457|83502|10000|10000|0||98.62|102.22|0.00|3.08|1E00|0|0|01|08000A81|0|C1F00000|| +24|2023-10-06T21:55:44.1590000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1487|47538|81809|9300|10000|||99.87|95.50|0.00|-3.07|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +38|2023-10-06T21:55:44.1590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52793|81809|9300|10000|19||99.87|95.50|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:55:43.8450000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:55:44.2460000-07:00|40021585|Zeromus|000102ED|38197857|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|05|3FE0E546|| +26|2023-10-06T21:55:44.2460000-07:00|35D|Wildfire|1.76|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|05|40478540|90216| +37|2023-10-06T21:55:44.2460000-07:00|40021585|Zeromus|000102E4|38132377||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:44.2460000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|2B73|28339|90216|10000|10000|||99.84|97.95|0.00|3.13|10FF000B|Pusu Rosu|1|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:44.2460000-07:00|10FF0008|Kokosaze Lulusaze|000102E5|52942|90216|10000|10000|0||99.84|97.95|0.00|3.13|1F05|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:55:44.2460000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +21|2023-10-06T21:55:44.2920000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|726003|2DB40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38210107|40478540|10000|10000|||100.00|80.10|0.00|0.00|28339|90216|10000|10000|||99.84|97.95|0.00|3.13|000102F0|0|1| +22|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|36F90000|F40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|000102F1|0|8| +22|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|22780000|260E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|60901|129844|10000|10000|||99.75|99.72|0.00|3.13|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|000102F1|1|8| +22|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|200004|35BE0000|FC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|000102F1|2|8| +22|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|21A60000|D60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|28339|90216|10000|10000|||99.84|97.95|0.00|3.13|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|000102F1|3|8| +22|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|212E0000|160E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|49457|83502|10000|10000|||98.62|102.22|0.00|3.08|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|000102F1|4|8| +22|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|22B50000|880E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|27987|73814|9000|10000|||100.73|94.07|0.00|-3.13|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|000102F1|5|8| +22|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|35960000|BC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|52793|81809|9300|10000|||99.90|94.31|0.00|-3.13|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|000102F1|6|8| +22|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|22380000|C00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|41099|129071|6800|10000|||99.73|90.68|0.00|3.12|48978|81541|9800|10000|||100.27|99.96|0.00|-3.13|000102F1|7|8| +38|2023-10-06T21:55:44.2920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|60901|129844|10000|10000|25||99.75|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.2920000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:55:44.2920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|52942|90216|10000|10000|15||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.2920000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:55:44.2920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52793|81809|9300|10000|46||99.90|94.31|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.2920000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:55:44.2920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|41099|129071|6800|10000|10||99.73|90.68|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.2920000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:55:44.2920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48978|81541|8800|10000|27||100.27|99.96|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.2920000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:55:44.2920000-07:00|10FF0003|Gegehi Gehi|005A5A23|27987|73814|9000|10000|19||100.73|94.07|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.2920000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:55:44.2920000-07:00|10FF000B|Pusu Rosu|005A5A18|43916|79209|9000|10000|27||99.75|101.30|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.2920000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T21:55:44.2920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|49457|83502|10000|10000|16||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.2920000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +39|2023-10-06T21:55:44.3360000-07:00|10FF000A|Dukaro Nezikaro|50292|83502|10000|10000|||98.62|102.22|0.00|3.08| +21|2023-10-06T21:55:44.3360000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|1210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38210107|40478540|10000|10000|||100.00|80.10|0.00|0.00|52793|81809|9300|10000|||99.90|94.31|0.00|-3.13|000102F2|0|1| +04|2023-10-06T21:55:43.9550000-07:00|400215FF|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|69928|0|10000|||101.24|101.61|0.00|-3.08| +37|2023-10-06T21:55:44.3840000-07:00|40021585|Zeromus|000102EE|38091660||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:44.3840000-07:00|10FF0007|Kehabiqo Febiqo|000102EE|71397||||||99.75|99.72|0.00|3.13| +24|2023-10-06T21:55:44.3840000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1A7E|27987|73814|9000|10000|||100.73|94.07|0.00|-3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:44.3840000-07:00|10FF0003|Gegehi Gehi|000102E5|43715|73814|9000|10000|19||100.73|94.07|0.00|-3.13|2306|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:55:44.3840000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T21:55:44.3840000-07:00|40021611|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|12BE0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|38210107|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06|000102F3|0|1| +24|2023-10-06T21:55:44.3840000-07:00|10FF0003|Gegehi Gehi|HoT|0|1454|27987|73814|9000|10000|||100.73|94.07|0.00|-3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +21|2023-10-06T21:55:44.3840000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38210107|40478540|10000|10000|||100.00|80.10|0.00|0.00|60901|129844|10000|10000|||99.75|99.72|0.00|3.13|000102F4|0|1| +38|2023-10-06T21:55:44.3840000-07:00|10FF0003|Gegehi Gehi|005A5A23|48919|73814|9000|10000|19||100.73|94.07|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:43.9550000-07:00|Remove|400215FF| +261|2023-10-06T21:55:44.0830000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T21:55:44.4250000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1484|50292|83502|10000|10000|||98.62|102.22|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|48978|81541|8800|10000|||100.27|99.96|0.00|-3.13| +38|2023-10-06T21:55:44.4250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|55544|83502|10000|10000|16||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:55:44.4690000-07:00|10FF0007|Kehabiqo Febiqo|72695|129844|10000|10000|||99.75|99.72|0.00|3.13| +24|2023-10-06T21:55:44.4690000-07:00|10FF000B|Pusu Rosu|HoT|777|D7E|43916|79209|9000|10000|||99.75|101.30|0.00|3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:44.4690000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|157A|50292|83502|10000|10000|||98.62|102.22|0.00|3.08|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:44.4690000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DE5|48978|81541|8800|10000|||100.27|99.96|0.00|-3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:44.4700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DA6|71397|129844|10000|10000|||99.75|99.72|0.00|3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:44.4700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E1E|52942|90216|10000|10000|||99.84|97.95|0.00|3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:44.4700000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DC8|52793|81809|9300|10000|||99.92|94.21|0.00|3.00|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:44.4700000-07:00|10FF0003|Gegehi Gehi|HoT|777|DEE|48919|73814|9000|10000|||100.72|93.33|0.00|-3.13|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:44.4700000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E0A|41099|129071|6800|10000|||99.73|90.68|0.00|3.12|10FF000B|Pusu Rosu|0|43916|79209|9000|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:44.4700000-07:00|10FF000B|Pusu Rosu|HoT|0|15A7|43916|79209|9000|10000|||99.75|101.30|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|48978|81541|8800|10000|||100.27|99.96|0.00|-3.13| +38|2023-10-06T21:55:44.4700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|76189|129844|10000|10000|25||99.75|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.4700000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:55:44.4700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|56556|90216|10000|10000|15||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.4700000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:55:44.4700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56321|81809|9300|10000|46||99.92|94.21|0.00|3.00|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.4700000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:55:44.4700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|44693|129071|6800|10000|10||99.73|90.68|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.4700000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:55:44.4700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52535|81541|8800|10000|27||100.27|99.96|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.4700000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:55:44.4700000-07:00|10FF0003|Gegehi Gehi|005A5A23|52485|73814|9000|10000|19||100.72|93.33|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.4700000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:55:44.4700000-07:00|10FF000B|Pusu Rosu|005A5A18|52913|79209|9550|10000|27||99.75|101.30|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.4700000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:55:44.4700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|61042|83502|10000|10000|16||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.4700000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T21:55:44.0830000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:55:44.5140000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1BDD|44693|129071|6800|10000|||99.73|90.68|0.00|3.12|10FF000B|Pusu Rosu|0|52913|79209|9550|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:44.5140000-07:00|10FF0001|Sesuga Sapisuga|000102E5|60484|129071|6800|10000|10||99.73|90.68|0.00|3.12|1307|0|0|01|0F000096|0|41700000|| +26|2023-10-06T21:55:44.5140000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T21:55:44.5140000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|44D40000|4|2D598000|0|0|0|0|0|0|0|0|0|0|0|0|38091660|40478540|10000|10000|||100.00|80.10|0.00|0.00|44693|129071|6800|10000|||99.73|90.68|0.00|3.12|000102F5|0|1| +38|2023-10-06T21:55:44.5140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|60484|129071|5800|10000|10||99.73|90.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:44.5140000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +24|2023-10-06T21:55:44.5610000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|14DE|76189|129844|10000|10000|||99.75|99.72|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|52535|81541|8800|10000|||100.27|99.96|0.00|-3.13| +38|2023-10-06T21:55:44.5610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81531|129844|10000|10000|25||99.75|99.72|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:44.6040000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38091660|40478540|10000|10000|||100.00|80.10|0.00|0.00|52535|81541|8800|10000|||100.27|99.94|0.00|3.13|000102F6|0|1| +37|2023-10-06T21:55:44.6480000-07:00|10FF000A|Dukaro Nezikaro|000102EF|61042|83502|10000|10000|16||98.62|102.22|0.00|3.08|1E00|0|0|01|08000A81|0|41F00000|| +24|2023-10-06T21:55:44.6480000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|311D|60484|129071|5800|10000|||99.73|90.68|0.00|3.12|10FF000B|Pusu Rosu|0|52913|79209|9550|10000|||99.75|101.30|0.00|3.13| +21|2023-10-06T21:55:44.6480000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|58340000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|38091660|40478540|10000|10000|||100.00|80.10|0.00|0.00|52913|79209|9550|10000|||99.75|101.30|0.00|3.13|000102F7|0|1| +38|2023-10-06T21:55:44.6480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|73057|129071|5800|10000|10||99.73|90.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:44.6480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|61042|83502|10000|10000|16||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:44.7820000-07:00|4002159B|Zeromus|8B41|unknown_8b41|4002159B|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-0.79|44|44|0|10000|||100.00|100.00|0.00|-0.79|000102F8|0|1| +21|2023-10-06T21:55:44.7820000-07:00|4002159D|Zeromus|8B41|unknown_8b41|4002159D|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|2.36|44|44|0|10000|||100.00|100.00|0.00|2.36|000102F9|0|1| +21|2023-10-06T21:55:44.7820000-07:00|4002159F|Zeromus|8B40|unknown_8b40|4002159F|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|000102FA|0|1| +21|2023-10-06T21:55:44.7820000-07:00|400215A1|Zeromus|8B40|unknown_8b40|400215A1|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|3.14|000102FB|0|1| +21|2023-10-06T21:55:44.7820000-07:00|400215A3|Zeromus|8D2B|unknown_8d2b|400215A3|Zeromus|1B|8D2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|000102FC|0|1| +261|2023-10-06T21:55:44.3730000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T21:55:44.3730000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:55:44.3730000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T21:55:44.3730000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T21:55:44.3730000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T21:55:44.4630000-07:00|Change|10FF0001||| +261|2023-10-06T21:55:44.4630000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:55:44.8700000-07:00|40021585|Zeromus|000102F2|38091371||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:44.8700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|113D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38091660|40478540|10000|10000|||100.00|80.10|0.00|0.00|73057|129071|5800|10000|||99.73|90.68|0.00|3.12|000102FD|0|1| +31|2023-10-06T21:55:44.8700000-07:00|10FF0001||||| +37|2023-10-06T21:55:44.9150000-07:00|40021585|Zeromus|000102F4|38087985||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:44.9150000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|552003|7B710000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|38091660|40478540|10000|10000|||100.00|80.10|0.00|0.00|61042|83502|10000|10000|||98.62|102.22|0.00|3.08|000102FE|0|1| +38|2023-10-06T21:55:44.9150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|61042|83502|10000|10000|16||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:44.9150000-07:00|A82|Raiju Ready|27.91|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +26|2023-10-06T21:55:44.9150000-07:00|7A2|Bunshin|16.49|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|83502|83502| +261|2023-10-06T21:55:44.5560000-07:00|Change|40021620||| +21|2023-10-06T21:55:44.9600000-07:00|40021622|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|450003|68690000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|38087985|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.24|101.84|0.00|-3.12|000102FF|0|1| +261|2023-10-06T21:55:44.5560000-07:00|Change|4002160B||| +21|2023-10-06T21:55:45.0050000-07:00|4002160B|Bunshin|6517|Fleeting Raiju|40021585|Zeromus|552003|22650000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|38087985|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||98.63|102.23|0.00|3.08|00010300|0|1| +21|2023-10-06T21:55:45.0050000-07:00|10FF0004|Buhojaqe Zijaqe|E02|Emergency Tactics|10FF0004|Buhojaqe Zijaqe|E|3180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52535|81541|8800|10000|||100.34|98.42|0.00|3.11|52535|81541|8800|10000|||100.34|98.42|0.00|3.11|00010301|0|1| +38|2023-10-06T21:55:45.0050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|81531|129844|10000|10000|25||99.75|99.66|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:45.0050000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:55:45.0050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52535|81541|8800|10000|27||100.34|98.42|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:45.0050000-07:00|318|Emergency Tactics|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:55:45.0940000-07:00|40021585|Zeromus|000102F0|38076285||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:45.0940000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|100.66|91.19|0.00|-3.12| +261|2023-10-06T21:55:44.6680000-07:00|Change|40021585||| +37|2023-10-06T21:55:45.1390000-07:00|40021585|Zeromus|000102F6|38076105||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:45.1390000-07:00|10FF0004|Buhojaqe Zijaqe|000102F6|52535|81541|8800|10000|27||100.38|97.64|0.00|3.12|1C00|0|0|01|0C000318|0|C1700000|| +21|2023-10-06T21:55:45.1390000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|4B2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38087985|40478540|10000|10000|||100.00|80.10|0.00|0.00|56556|90216|10000|10000|||99.84|97.95|0.00|3.13|00010302|0|1| +38|2023-10-06T21:55:45.1400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|56556|90216|10000|10000|15||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:45.1400000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +37|2023-10-06T21:55:45.1840000-07:00|40021585|Zeromus|000102F3|38071307||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:45.2290000-07:00|10FF000B|Pusu Rosu|53705|79209|9431|10000|||99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:45.2740000-07:00|40021585|Zeromus|000102F5|38053687||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:45.2740000-07:00|10FF0001|Sesuga Sapisuga|000102F5|84666||||||99.73|90.68|0.00|3.12| +21|2023-10-06T21:55:45.3630000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|3AF80000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|38053687|40478540|10000|10000|||100.00|80.10|0.00|0.00|56321|81809|9300|10000|||100.09|95.33|0.00|0.63|00010303|0|1| +38|2023-10-06T21:55:45.3630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56321|81809|9000|10000|46||100.09|95.33|0.00|0.63|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:45.3630000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:55:44.8940000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:55:45.0060000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:55:45.4070000-07:00|40021585|Zeromus|000102FD|38049274||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:45.4070000-07:00|10FF0004|Buhojaqe Zijaqe|000102F1|66608|81541|8800|10000|27||100.36|97.65|-0.02|3.12|1C00|0|0|02|0B000129|0|41E76E96|||||| +37|2023-10-06T21:55:45.5420000-07:00|10FF0007|Kehabiqo Febiqo|000102F1|90355|129844|10000|10000|25||99.72|98.02|0.00|-3.12|1501|0|0|01|0F000129|0|41E65C27|| +37|2023-10-06T21:55:45.5420000-07:00|10FF0004|Buhojaqe Zijaqe|000102F1|66608|81541|8800|10000|27||100.36|97.37|0.00|3.12|1C01|0|0|01|0C000318|0|C1700000|| +21|2023-10-06T21:55:45.5420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|14220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38049274|40478540|10000|10000|||100.00|80.10|0.00|0.00|56556|90216|10000|10000|||99.84|97.95|0.00|3.13|00010304|0|1| +261|2023-10-06T21:55:45.1160000-07:00|Change|10FF0003||||||||||||||||||||| +20|2023-10-06T21:55:45.5870000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.36|97.10|0.00|3.12| +261|2023-10-06T21:55:45.2140000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:55:45.6310000-07:00|10FF0004|Buhojaqe Zijaqe|00010301|66608|81541|8800|10000|27||100.36|97.10|0.00|3.12|1C00|0|0|01|0C000318|0|41700000|| +38|2023-10-06T21:55:45.6310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66608|81541|8800|10000|27||100.36|97.10|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:55:45.6760000-07:00|10FF000B|Pusu Rosu|000102F1|67463|79209|9431|10000|27||99.75|101.30|0.00|3.13|1802|0|0|01|0A000129|0|41E547AC|| +37|2023-10-06T21:55:45.6760000-07:00|40021585|Zeromus|000102FE|38017673||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:45.6760000-07:00|40021585|Zeromus|DoT|0|1DC9|38049274|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|56556|90216|10000|10000|||99.84|97.95|0.00|3.13| +36|2023-10-06T21:55:45.6760000-07:00|0DE8|3| +38|2023-10-06T21:55:45.6760000-07:00|40021585|Zeromus|005A5A00|38010048|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:55:45.7220000-07:00|4002160B|Bunshin|76288|79156|10000|10000|||98.63|102.23|0.00|3.08| +21|2023-10-06T21:55:45.7220000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|B4D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38049274|40478540|10000|10000|||100.00|80.10|0.00|0.00|61042|83502|10000|10000|||98.62|102.22|0.00|3.08|00010305|0|1| +37|2023-10-06T21:55:45.7660000-07:00|40021585|Zeromus|00010300|38001243||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:45.7660000-07:00|40021585|Zeromus|00010302|37981998|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600035D|06|3E73B562|| +26|2023-10-06T21:55:45.7660000-07:00|35D|Wildfire|0.24|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|90216| +21|2023-10-06T21:55:45.7660000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|17770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38010048|40478540|10000|10000|||100.00|80.10|0.00|0.00|56556|90216|10000|10000|||99.84|97.95|0.00|3.13|00010306|0|1| +37|2023-10-06T21:55:45.8100000-07:00|10FF0008|Kokosaze Lulusaze|000102F1|65170|90216|10000|10000|15||99.84|97.95|0.00|3.13|1F03|0|0|01|0A000129|0|41E4353D|| +21|2023-10-06T21:55:45.8100000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|752003|6D430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38010048|40478540|10000|10000|||100.00|80.10|0.00|0.00|61042|83502|10000|10000|||98.62|102.22|0.00|3.08|00010307|0|1| +38|2023-10-06T21:55:45.8100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|61042|83502|10000|10000|16||98.62|102.22|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:45.8100000-07:00|A81|Meisui|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T21:55:45.5050000-07:00|Change|10FF000B||| +37|2023-10-06T21:55:45.9440000-07:00|10FF000A|Dukaro Nezikaro|000102F1|69536|83502|10000|10000|16||98.62|102.22|0.00|3.08|1E04|0|0|01|0C000129|0|41E322CE|| +37|2023-10-06T21:55:45.9440000-07:00|40021585|Zeromus|000102F7|37959418||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:45.9440000-07:00|40021611|Automaton Queen|4078|Arm Punch|40021585|Zeromus|736003|26070000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|37981998|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06|00010308|0|1| +37|2023-10-06T21:55:45.9890000-07:00|40021585|Zeromus|00010303|37944322||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:45.9890000-07:00|10FF0006|Wowobora Gogobora|00010303|56321|81809|9000|10000|46||100.18|96.06|0.00|-3.13|1B00|0|0|01|0A000B25|0|0|| +24|2023-10-06T21:55:45.9890000-07:00|40021585|Zeromus|DoT|35D|FE8F|37959418|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|65170|90216|10000|10000|||99.84|97.95|0.00|3.13| +38|2023-10-06T21:55:45.9890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65170|90216|10000|10000|15||99.84|97.95|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:45.9890000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:55:45.9890000-07:00|40021585|Zeromus|005A5A00|37879155|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:55:45.9890000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|90216| +38|2023-10-06T21:55:45.9890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56321|81809|9000|10000|46||100.18|96.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:46.0340000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|452003|2C580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37879155|40478540|10000|10000|||100.00|80.10|0.00|0.00|56321|81809|9000|10000|||100.18|96.06|0.00|-3.13|00010309|0|1| +38|2023-10-06T21:55:46.0340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56321|81809|9000|10000|46||100.18|96.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:46.0340000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:55:46.0770000-07:00|10FF0003|Gegehi Gehi|000102F1|61370|73814|9000|10000|19||100.66|91.23|0.00|-3.08|2305|0|0|01|05000129|0|41E2105F|| +39|2023-10-06T21:55:46.1230000-07:00|10FF0004|Buhojaqe Zijaqe|67423|81541|9000|10000|||100.36|96.64|0.00|3.12| +39|2023-10-06T21:55:46.1230000-07:00|10FF0003|Gegehi Gehi|62108|73814|9200|10000|||100.66|91.23|0.00|-3.08| +261|2023-10-06T21:55:45.7000000-07:00|Change|40021585||| +39|2023-10-06T21:55:46.1670000-07:00|10FF0008|Kokosaze Lulusaze|66072|90216|10000|10000|||99.84|97.95|0.00|3.13| +20|2023-10-06T21:55:46.1670000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.75|101.30|0.00|3.13| +37|2023-10-06T21:55:46.2110000-07:00|10FF0006|Wowobora Gogobora|000102F1|70039|81809|9000|10000|46||100.18|96.06|0.00|-3.13|1B06|0|0|01|09000129|0|41E0FFFC|| +21|2023-10-06T21:55:46.2110000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|A1000000|4|27C78000|0|0|0|0|0|0|0|0|0|0|0|0|37879155|40478540|10000|10000|||100.00|80.10|0.00|0.00|90355|129844|10000|10000|||99.72|97.80|0.00|-3.12|0001030A|0|1| +38|2023-10-06T21:55:46.2110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90355|129844|10000|10000|25||99.72|97.80|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:46.2110000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +37|2023-10-06T21:55:46.2540000-07:00|40021585|Zeromus|00010305|37876262||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:46.3000000-07:00|40021585|Zeromus|00010304|37871108||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:46.3010000-07:00|10FF0006|Wowobora Gogobora|70857|81809|9200|10000|||100.18|96.06|0.00|-3.13| +37|2023-10-06T21:55:46.3450000-07:00|10FF0001|Sesuga Sapisuga|000102F1|93426|129071|5800|10000|10||99.73|90.68|0.00|3.12|1307|0|0|01|0E000129|0|41DFED8D|| +261|2023-10-06T21:55:45.9380000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:55:46.3890000-07:00|40021585|Zeromus|00010306|37865101||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:46.4340000-07:00|40021585|Zeromus|00010307|37837130||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:46.5250000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|456003|731D0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|37837130|40478540|10000|10000|||100.00|80.10|0.00|0.00|62108|73814|9200|10000|||100.66|91.23|0.00|-3.08|0001030B|0|1| +38|2023-10-06T21:55:46.5250000-07:00|10FF0003|Gegehi Gehi|005A5A23|62108|73814|9000|10000|19||100.66|91.23|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:46.5250000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:55:46.5250000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:46.1520000-07:00|Change|10FF0003||||||||||||||||||| +38|2023-10-06T21:55:46.6130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|93426|129071|5800|10000|10||99.73|90.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:46.6130000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:55:46.1520000-07:00|Change|10FF0004||||||| +21|2023-10-06T21:55:46.6570000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|722003|A8260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37837130|40478540|10000|10000|||100.00|80.10|0.00|0.00|66072|90216|10000|10000|||99.81|97.85|0.00|-3.10|0001030C|0|1| +37|2023-10-06T21:55:46.7000000-07:00|40021585|Zeromus|00010308|37827395||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:46.7000000-07:00|40021611|Automaton Queen|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06| +04|2023-10-06T21:55:46.2480000-07:00|40021620|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.40|98.37|0.00|0.02| +261|2023-10-06T21:55:46.2480000-07:00|Remove|40021620| +37|2023-10-06T21:55:46.7900000-07:00|40021585|Zeromus|00010309|37816043||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:46.7900000-07:00|10FF0001|Sesuga Sapisuga|94716|129071|6000|10000|||99.73|90.68|0.00|3.12| +38|2023-10-06T21:55:46.7900000-07:00|40021585|Zeromus|005A5A00|37816043|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:55:46.7900000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +261|2023-10-06T21:55:46.3440000-07:00|Change|10FF0001||| +37|2023-10-06T21:55:46.8340000-07:00|40021585|Zeromus|0001030A|37774827||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:46.8340000-07:00|10FF0007|Kehabiqo Febiqo|0001030A|100538||||||99.72|97.75|0.00|-3.14| +261|2023-10-06T21:55:46.4430000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:55:46.9230000-07:00|40021585|Zeromus|000102FF|37748098||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:46.4430000-07:00|Change|10FF000B||||||||||||| +21|2023-10-06T21:55:47.0110000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|716003|7A8A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37748098|40478540|10000|10000|||100.00|80.10|0.00|0.00|94716|129071|6000|10000|||99.73|90.68|0.00|3.12|0001030D|0|1| +22|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|20ED0000|4|34AE0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|0001030E|0|8| +22|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|21460000|4|353C0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|70857|81809|9200|10000|||100.18|96.06|0.00|-3.13|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|0001030E|1|8| +22|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|22A30000|4|376B0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|100538|129844|10000|10000|||99.70|97.01|0.00|-3.13|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|0001030E|2|8| +22|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|211D0000|4|34FB0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|66072|90216|10000|10000|||99.75|95.88|0.00|-3.12|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|0001030E|3|8| +22|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|4|21800000|4|35990000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67463|79209|9431|10000|||99.75|101.30|0.00|3.13|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|0001030E|4|8| +22|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|22680000|4|370C0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|69536|83502|10000|10000|||99.03|100.51|0.00|-3.10|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|0001030E|5|8| +22|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|20D90000|4|348E0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|62108|73814|9000|10000|||100.63|91.22|-0.02|-3.07|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|0001030E|6|8| +22|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|20C70000|4|34710000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|94716|129071|6000|10000|||99.73|90.68|0.00|3.12|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|0001030E|7|8| +38|2023-10-06T21:55:47.0110000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|70857|81809|9200|10000|26||100.18|96.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:47.0110000-07:00|A8E|Radiant Aegis|0.00|400215AD|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T21:55:47.0110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|94716|129071|6000|10000|10||99.73|90.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.0110000-07:00|76E|Sword Oath|12.93|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:55:47.0110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|67423|81541|8000|10000|27||100.36|96.64|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:47.0110000-07:00|318|Emergency Tactics|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +24|2023-10-06T21:55:47.0560000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|154A|66072|90216|10000|10000|||99.75|95.88|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|67423|81541|9000|10000|||100.36|96.64|0.00|3.12| +24|2023-10-06T21:55:47.0560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|13A4|67423|81541|9000|10000|||100.36|96.64|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|67423|81541|9000|10000|||100.36|96.64|0.00|3.12| +38|2023-10-06T21:55:47.0560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|71522|90216|10000|10000|15||99.75|95.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:47.0560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|72451|81541|8000|10000|27||100.36|96.64|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:47.1000000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|3A830000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|37748098|40478540|10000|10000|||100.00|80.10|0.00|0.00|67463|79209|9431|10000|||99.75|101.30|0.00|3.13|0001030F|0|1| +24|2023-10-06T21:55:47.1450000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1556|70857|81809|9200|10000|||100.18|96.06|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|72451|81541|8000|10000|||100.36|96.63|0.00|3.12| +21|2023-10-06T21:55:47.1450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|CFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37748098|40478540|10000|10000|||100.00|80.10|0.00|0.00|94716|129071|6000|10000|||99.73|90.68|0.00|3.12|00010310|0|1| +21|2023-10-06T21:55:47.1450000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|550003|506D0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|37748098|40478540|10000|10000|||100.00|80.10|0.00|0.00|69536|83502|10000|10000|||99.10|99.84|-0.02|-3.09|00010311|0|1| +38|2023-10-06T21:55:47.1450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76319|81809|9200|10000|26||100.18|96.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:46.6530000-07:00|Change|40021585||| +38|2023-10-06T21:55:47.1450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69536|83502|10000|10000|16||99.10|99.84|-0.02|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:47.1450000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +26|2023-10-06T21:55:47.1450000-07:00|7A2|Bunshin|14.26|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +31|2023-10-06T21:55:47.1450000-07:00|10FF0001||||| +21|2023-10-06T21:55:47.2340000-07:00|4002160B|Bunshin|6517|Fleeting Raiju|40021585|Zeromus|554003|1B0F0000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|37748098|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||97.93|99.27|0.00|3.03|00010312|0|1| +37|2023-10-06T21:55:47.3230000-07:00|40021585|Zeromus|0001030B|37718629||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:47.3230000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|16B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37748098|40478540|10000|10000|||100.00|80.10|0.00|0.00|71522|90216|10000|10000|||99.64|94.91|-0.02|-3.08|00010313|0|1| +39|2023-10-06T21:55:47.3680000-07:00|10FF000A|Dukaro Nezikaro|70371|83502|10000|10000|||97.89|99.03|0.00|3.03| +24|2023-10-06T21:55:47.3680000-07:00|10FF0003|Gegehi Gehi|HoT|0|14BE|62108|73814|9000|10000|||100.56|91.05|-0.02|-2.95|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +38|2023-10-06T21:55:47.3680000-07:00|10FF0003|Gegehi Gehi|005A5A23|67418|73814|9000|10000|19||100.56|91.05|-0.02|-2.95|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:55:47.4120000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|13FD|70371|83502|10000|10000|||97.32|98.62|-0.02|3.04|10FF0004|Buhojaqe Zijaqe|0|72451|81541|8000|10000|||100.35|96.10|0.00|3.13| +38|2023-10-06T21:55:47.4120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75488|83502|10000|10000|16||97.32|98.62|-0.02|3.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:55:47.4580000-07:00|10FF0007|Kehabiqo Febiqo|101836|129844|10000|10000|||99.66|95.22|0.00|-3.12| +24|2023-10-06T21:55:47.4580000-07:00|10FF000B|Pusu Rosu|HoT|777|DBE|67463|79209|9031|10000|||99.75|101.30|0.00|3.13|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:47.4580000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|D6F|70371|83502|10000|10000|||97.32|98.62|-0.02|3.04|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:47.4580000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DB1|76319|81809|9200|10000|||100.18|96.06|0.00|-3.13|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:47.4580000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E2C|72451|81541|8000|10000|||100.35|96.10|0.00|3.13|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:47.4580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DE7|100538|129844|10000|10000|||99.66|95.22|0.00|-3.12|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:47.4580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|D7A|71522|90216|10000|10000|||99.13|94.58|0.00|2.99|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:47.4580000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|15A1|94716|129071|6000|10000|||99.73|90.68|0.00|3.12|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:47.4580000-07:00|10FF0003|Gegehi Gehi|HoT|777|DDC|67418|73814|9000|10000|||99.97|90.56|0.00|-2.77|10FF000B|Pusu Rosu|0|67463|79209|9031|10000|||99.75|101.30|0.00|3.13| +24|2023-10-06T21:55:47.4580000-07:00|10FF000B|Pusu Rosu|HoT|0|13F5|67463|79209|9031|10000|||99.75|101.30|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|72451|81541|8000|10000|||100.35|96.10|0.00|3.13| +21|2023-10-06T21:55:47.4580000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|1680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37718629|40478540|10000|10000|||100.00|80.10|0.00|0.00|76319|81809|9200|10000|||100.18|96.06|0.00|-3.13|00010314|0|1| +38|2023-10-06T21:55:47.4580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105395|129844|10000|10000|25||99.66|95.22|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.4580000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:55:47.4580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|74972|90216|10000|10000|15||99.13|94.58|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.4580000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:55:47.4590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|79824|81809|9200|10000|26||100.18|96.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.4590000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:55:47.4590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|100253|129071|6000|10000|10||99.73|90.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.4590000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:55:47.4590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|76079|81541|8000|10000|27||100.35|95.36|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.4590000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:55:47.4590000-07:00|10FF0003|Gegehi Gehi|005A5A23|70966|73814|9000|10000|19||99.38|90.07|0.00|-2.58|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.4590000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:55:47.4590000-07:00|10FF000B|Pusu Rosu|005A5A18|76090|79209|9581|10000|27||99.75|101.30|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.4590000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:55:47.4590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78927|83502|10000|10000|16||96.76|98.16|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.4590000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T21:55:47.5020000-07:00|40021611|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|12010000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|37718629|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06|00010315|0|1| +24|2023-10-06T21:55:47.5480000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F2A|105395|129844|10000|10000|||99.66|95.18|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|76079|81541|8000|10000|||100.35|95.36|0.00|-3.14| +21|2023-10-06T21:55:47.5480000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|3DC30000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|37718629|40478540|10000|10000|||100.00|80.10|0.00|0.00|70966|73814|9000|10000|||99.38|90.07|0.00|-2.58|00010316|0|1| +38|2023-10-06T21:55:47.5480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113373|129844|10000|10000|25||99.66|95.18|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:47.5480000-07:00|10FF0003|Gegehi Gehi|005A5A23|70966|73814|8700|10000|19||99.38|90.07|0.00|-2.58|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:47.5480000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:47.1180000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:55:47.1180000-07:00|Change|10FF000A||||||||| +24|2023-10-06T21:55:47.6370000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|3BFF|100253|129071|6000|10000|||99.73|90.68|0.00|3.12|10FF000B|Pusu Rosu|0|76090|79209|9581|10000|||99.75|101.30|0.00|3.13| +38|2023-10-06T21:55:47.6370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|115612|129071|6000|10000|10||99.73|90.68|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:47.2100000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:55:47.6810000-07:00|40021585|Zeromus|00010310|37715304||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:47.6820000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|76079|81541|8000|10000|||100.34|94.54|0.00|-3.12|76079|81541|8000|10000|||100.34|94.54|0.00|-3.12|00010317|0|1| +21|2023-10-06T21:55:47.7710000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37715304|40478540|10000|10000|||100.00|80.10|0.00|0.00|113373|129844|10000|10000|||99.65|94.92|0.00|-3.12|00010318|0|1| +21|2023-10-06T21:55:47.7710000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37715304|40478540|10000|10000|||100.00|80.10|0.00|0.00|70966|73814|8700|10000|||98.05|89.20|0.00|-2.95|00010319|0|1| +37|2023-10-06T21:55:47.8150000-07:00|40021585|Zeromus|0001030C|37672258||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:47.8590000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|452003|626C0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37715304|40478540|10000|10000|||100.00|80.10|0.00|0.00|79824|81809|9200|10000|||100.18|96.05|0.00|-3.08|0001031A|0|1| +38|2023-10-06T21:55:47.8590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|79824|81809|8900|10000|26||100.18|96.05|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:47.8590000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:55:47.3980000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:55:47.9040000-07:00|40021585|Zeromus|00010311|37651669||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:47.9040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|11780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37715304|40478540|10000|10000|||100.00|80.10|0.00|0.00|78927|83502|10000|10000|||95.09|96.76|0.00|-3.10|0001031B|0|1| +38|2023-10-06T21:55:47.9040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113373|129844|10000|10000|25||99.64|94.13|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:47.9040000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:55:47.4900000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:55:47.9490000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|17840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37651669|40478540|10000|10000|||100.00|80.10|0.00|0.00|74972|90216|10000|10000|||96.29|92.99|-0.02|-2.38|0001031C|0|1| +261|2023-10-06T21:55:47.4900000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:55:47.9930000-07:00|40021585|Zeromus|00010312|37644742||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:47.9930000-07:00|40021585|Zeromus|00010314|37644382||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:47.9930000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|754003|3D620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37651669|40478540|10000|10000|||100.00|80.10|0.00|0.00|78927|83502|10000|10000|||94.58|96.31|0.00|-3.09|0001031D|0|1| +261|2023-10-06T21:55:47.4900000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:55:48.1280000-07:00|40021585|Zeromus|00010313|37638570||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:48.1280000-07:00|10FF0004|Buhojaqe Zijaqe|0001030E|81541|81541|8000|10000|27||100.30|92.64|0.00|-3.13|1C00|0|0|01|08000000|0|0|| +38|2023-10-06T21:55:48.1280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8000|10000|27||100.30|92.64|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:48.1280000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +39|2023-10-06T21:55:48.2170000-07:00|10FF000B|Pusu Rosu|76882|79209|9862|10000|||99.75|101.24|0.00|-3.10| +21|2023-10-06T21:55:48.2170000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37638570|40478540|10000|10000|||100.00|80.10|0.00|0.00|74972|90216|10000|10000|||94.53|92.23|0.00|2.71|0001031E|0|1| +37|2023-10-06T21:55:48.2620000-07:00|40021585|Zeromus|00010315|37633961||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:48.2620000-07:00|10FF0006|Wowobora Gogobora|0001030E|81809|81809|8900|10000|26||100.16|96.01|0.00|-3.13|1B01|0|0|01|07000000|0|0|| +38|2023-10-06T21:55:48.2620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|26||100.16|96.01|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:48.2620000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +37|2023-10-06T21:55:48.3060000-07:00|40021585|Zeromus|00010318|37630490||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:48.3060000-07:00|40021585|Zeromus|0001030D|37599120||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:48.3060000-07:00|10FF0001|Sesuga Sapisuga|0001030D|115612|129071|6400|10000|10||99.73|90.68|0.00|3.12|1300|0|0|0| +37|2023-10-06T21:55:48.3060000-07:00|10FF0004|Buhojaqe Zijaqe|00010317|81541|81541|8000|10000|27||100.30|92.12|0.00|-3.13|1C00|0|0|01|080004B4|0|41A80000|| +26|2023-10-06T21:55:48.3060000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:55:48.3060000-07:00|40021585|Zeromus|00010316|37583309||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:48.3060000-07:00|40021585|Zeromus|00010319|37583270||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:47.8090000-07:00|Change|10FF0001||| +37|2023-10-06T21:55:48.3960000-07:00|10FF0007|Kehabiqo Febiqo|0001030E|129844|129844|10000|10000|25||98.08|91.06|0.00|-3.02|1502|0|0|01|0A000000|0|0|| +37|2023-10-06T21:55:48.3960000-07:00|40021585|Zeromus|0001030F|37568291||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:48.3960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||98.08|91.06|0.00|-3.02|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:48.3960000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +261|2023-10-06T21:55:47.9240000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:55:48.0400000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:55:48.4400000-07:00|40021585|Zeromus|0001031B|37563819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:48.4840000-07:00|40021585|Zeromus|0001031A|37538623||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:48.4840000-07:00|10FF0006|Wowobora Gogobora|0001031A|81809|81809|8900|10000|26||99.89|95.50|0.00|-3.04|1B00|0|0|01|01000B25|0|0|| +38|2023-10-06T21:55:48.4840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|26||99.89|95.50|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:55:48.5300000-07:00|10FF0008|Kokosaze Lulusaze|0001030E|90216|90216|10000|10000|15||93.46|91.74|0.00|-2.95|1F03|0|0|01|07000000|0|0|| +21|2023-10-06T21:55:48.5300000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|1C020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37568291|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||99.89|95.50|0.00|-3.04|0001031F|0|1| +38|2023-10-06T21:55:48.5300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||93.46|91.74|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:48.5300000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +38|2023-10-06T21:55:48.5300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|26||99.89|95.50|0.00|-3.04|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:48.5300000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:55:48.5740000-07:00|40021585|Zeromus|0001031C|37532603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:48.6180000-07:00|40021585|Zeromus|0001031D|37516889||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:48.6190000-07:00|40021585|Zeromus|005A5A00|37516889|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:55:48.6190000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +37|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|0001030E|79209|79209|9862|10000|27||97.74|99.45|0.00|-2.45|1804|0|0|01|02000000|0|0|| +24|2023-10-06T21:55:48.6630000-07:00|40021585|Zeromus|DoT|0|1739|37516889|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|78927|83502|10000|10000|||90.99|93.17|0.00|3.14| +22|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|37390000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|00010320|0|8| +22|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|51FE0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8900|10000|||99.18|94.14|0.00|2.98|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|00010320|1|8| +22|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|37A10000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|78927|83502|10000|10000|||90.99|93.17|0.00|3.14|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|00010320|2|8| +22|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|200004|52380000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||96.33|91.38|0.00|-3.14|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|00010320|3|8| +22|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|378D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|115612|129071|6400|10000|||99.57|90.68|0.00|-3.11|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|00010320|4|8| +22|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|37DF0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||92.28|91.02|0.00|-2.54|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|00010320|5|8| +22|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|36FC0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8000|10000|||99.78|89.93|0.00|-2.95|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|00010320|6|8| +22|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|52850000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|70966|73814|8700|10000|||92.72|87.51|0.00|-1.83|76882|79209|9862|10000|||97.74|99.45|0.00|-2.45|00010320|7|8| +36|2023-10-06T21:55:48.6630000-07:00|0EC4|3| +38|2023-10-06T21:55:48.6630000-07:00|40021585|Zeromus|005A5A00|37510944|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:55:48.6630000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9862|10000|27||97.74|99.45|0.00|-2.45|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:48.6630000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF000B|Pusu Rosu|00|79209|40478540| +39|2023-10-06T21:55:48.7070000-07:00|4002160B|Bunshin|76288|79156|10000|10000|||97.93|99.27|0.00|3.03| +21|2023-10-06T21:55:48.7070000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|279B0000|A3E|340000|4|281C8000|11B|258000|0|0|0|0|0|0|0|0|37516889|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||96.33|91.38|0.00|-3.14|00010321|0|1| +21|2023-10-06T21:55:48.7070000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|2AA20000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|37516889|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||99.78|89.93|0.00|-2.95|00010322|0|1| +261|2023-10-06T21:55:48.2320000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:55:48.7970000-07:00|10FF000A|Dukaro Nezikaro|0001030E|83502|83502|10000|10000|16||90.99|93.17|0.00|3.14|1E05|0|0|01|09000000|0|0|| +38|2023-10-06T21:55:48.7970000-07:00|40021585|Zeromus|005A5A00|37510944|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:55:48.7970000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T21:55:48.7970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||90.99|93.17|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:48.7970000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|40478540| +261|2023-10-06T21:55:48.3240000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:55:48.4250000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:55:48.9300000-07:00|10FF0003|Gegehi Gehi|0001030E|73814|73814|8700|10000|19||91.34|87.35|0.00|-1.76|2306|0|0|01|07000000|0|0|| +38|2023-10-06T21:55:48.9300000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8700|10000|19||91.34|87.35|0.00|-1.76|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:48.9300000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +37|2023-10-06T21:55:48.9740000-07:00|40021585|Zeromus|0001031E|37508357||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:48.9740000-07:00|40021622|Topaz Titan|005A5A00|0|77698|0|10000|0||102.24|101.84|0.00|-3.12|0|0|0||||||| +26|2023-10-06T21:55:48.9740000-07:00|30|Well Fed|933.65|10FF0006|Wowobora Gogobora|40021622|Topaz Titan|2964|77698|81809| +261|2023-10-06T21:55:48.4250000-07:00|Change|40021622||||| +261|2023-10-06T21:55:48.5260000-07:00|Change|10FF000B||||||||||| +38|2023-10-06T21:55:49.0190000-07:00|40021642||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:55:49.0190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||94.58|91.35|0.00|2.75|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:49.0190000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T21:55:49.0190000-07:00|40021642||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:55:49.0630000-07:00|10FF0001|Sesuga Sapisuga|0001030E|129071|129071|6400|10000|10||97.75|90.73|0.00|-3.11|1307|0|0|01|0A000000|0|0|| +21|2023-10-06T21:55:49.0630000-07:00|40021611|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|13770000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|37508357|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06|00010323|0|1| +38|2023-10-06T21:55:49.0630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|10||97.75|90.73|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:49.0630000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +39|2023-10-06T21:55:49.1080000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7800|10000|||97.95|88.58|0.00|-2.99| +03|2023-10-06T21:55:48.6410000-07:00|40021642|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||94.71|91.93|0.00|1.28| +261|2023-10-06T21:55:48.6410000-07:00|Add|40021642||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:55:49.1540000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||89.73|89.22|0.00|-2.25| +39|2023-10-06T21:55:49.1540000-07:00|10FF0003|Gegehi Gehi|73814|73814|8900|10000|||89.88|87.14|0.00|-1.74| +261|2023-10-06T21:55:48.6410000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:55:48.6410000-07:00|Change|40021642||| +261|2023-10-06T21:55:48.7610000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:55:49.1980000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|228E0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|37508357|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.73|89.22|0.00|-2.25|00010324|0|1| +21|2023-10-06T21:55:49.1980000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|11F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37508357|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||97.31|88.09|0.00|-2.65|00010325|0|1| +261|2023-10-06T21:55:48.7610000-07:00|Change|40021585||| +24|2023-10-06T21:55:49.2420000-07:00|10FF000B|Pusu Rosu|HoT|4C3|2B20|79209|79209|9862|10000|||94.94|97.07|0.00|-2.30|10FF000B|Pusu Rosu|1|79209|79209|9862|10000|||94.94|97.07|0.00|-2.30| +261|2023-10-06T21:55:48.7610000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:55:49.2860000-07:00|40021585|Zeromus|0001031F|37501187||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:49.2860000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9100|10000|||95.98|92.45|0.00|-2.38| +37|2023-10-06T21:55:49.3310000-07:00|40021585|Zeromus|00010321|37491048||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:49.3760000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|2A36|81809|81809|9100|10000|||95.25|92.30|0.00|-2.17|10FF000B|Pusu Rosu|1|79209|79209|9862|10000|||94.46|96.62|0.00|-2.31| +21|2023-10-06T21:55:49.3760000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||87.81|90.36|0.00|-3.08|83502|83502|10000|10000|||87.81|90.36|0.00|-3.08|00010326|0|1| +38|2023-10-06T21:55:49.3760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||87.81|90.36|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:49.3760000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T21:55:49.4200000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|A450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37491048|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6400|10000|||95.77|90.79|0.00|-3.11|00010327|0|1| +31|2023-10-06T21:55:49.4200000-07:00|10FF0001||||| +261|2023-10-06T21:55:48.9960000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:55:49.5090000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|28A3|83502|83502|10000|10000|||87.63|90.22|0.00|-3.08|10FF000B|Pusu Rosu|1|79209|79209|9862|10000|||93.94|96.07|0.00|-2.33| +21|2023-10-06T21:55:49.5090000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|62F10000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37491048|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6400|10000|||95.02|90.81|0.00|-3.11|00010328|0|1| +38|2023-10-06T21:55:49.5090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|10||95.02|90.81|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:49.5090000-07:00|76E|Sword Oath|10.43|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:55:49.1130000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:55:49.1130000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:55:49.1130000-07:00|Change|4002160B||||||||| +37|2023-10-06T21:55:49.6410000-07:00|40021585|Zeromus|00010322|37480134||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:49.6410000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1ADD|129844|129844|10000|10000|||92.68|91.11|0.00|2.89|10FF000B|Pusu Rosu|0|79209|79209|9862|10000|||93.51|95.61|0.00|-2.36| +38|2023-10-06T21:55:49.6860000-07:00|40021611|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|99.75|0.00|-3.06|0|0|0||||||||||||| +26|2023-10-06T21:55:49.6860000-07:00|30|Well Fed|1524.35|10FF0008|Kokosaze Lulusaze|40021611|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:55:49.6860000-07:00|A8F|Searing Light|6.46|10FF0006|Wowobora Gogobora|40021611|Automaton Queen|00|85668|81809| +26|2023-10-06T21:55:49.6860000-07:00|511|Embolden|2.44|10FF0003|Gegehi Gehi|40021611|Automaton Queen|00|85668|73814| +26|2023-10-06T21:55:49.6860000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|40021611|Automaton Queen|01|85668|40478540| +37|2023-10-06T21:55:49.7310000-07:00|40021585|Zeromus|00010325|37479847||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:49.7310000-07:00|40021611|Automaton Queen|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06| +24|2023-10-06T21:55:49.7750000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1B44|129071|129071|6400|10000|||93.75|90.85|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|9862|10000|||93.12|95.18|0.00|-2.37| +37|2023-10-06T21:55:49.8200000-07:00|40021585|Zeromus|00010323|37474864||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:49.8200000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6600|10000|||93.07|90.87|0.00|-3.11| +261|2023-10-06T21:55:49.3110000-07:00|Change|10FF000B||||||||| +21|2023-10-06T21:55:49.8200000-07:00|40021593|Zeromus|8B41|unknown_8b41|40021593|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-2.36|44|44|0|10000|||100.00|100.00|0.00|-2.36|00010329|0|1| +21|2023-10-06T21:55:49.8200000-07:00|40021595|Zeromus|8B41|unknown_8b41|40021595|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|0001032A|0|1| +21|2023-10-06T21:55:49.8200000-07:00|40021597|Zeromus|8B40|unknown_8b40|40021597|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-1.57|44|44|0|10000|||100.00|100.00|0.00|-1.57|0001032B|0|1| +21|2023-10-06T21:55:49.8200000-07:00|40021599|Zeromus|8B40|unknown_8b40|40021599|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|1.57|44|44|0|10000|||100.00|100.00|0.00|1.57|0001032C|0|1| +261|2023-10-06T21:55:49.3110000-07:00|Change|40021593||||||||||||| +261|2023-10-06T21:55:49.3110000-07:00|Change|40021599||||||||||||| +261|2023-10-06T21:55:49.3110000-07:00|Change|40021595||||||||||||| +261|2023-10-06T21:55:49.3110000-07:00|Change|40021597||||||||||||| +21|2023-10-06T21:55:49.8650000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||87.27|89.95|-0.02|-3.08|83502|83502|10000|10000|||87.27|89.95|-0.02|-3.08|0001032D|0|1| +38|2023-10-06T21:55:49.8650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||87.27|89.95|-0.02|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:49.8650000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +24|2023-10-06T21:55:49.9100000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|2943|90216|90216|10000|10000|||85.86|86.62|0.00|-2.54|10FF000B|Pusu Rosu|1|79209|79209|9862|10000|||92.33|94.21|0.00|-2.41| +261|2023-10-06T21:55:49.4110000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:55:49.9550000-07:00|40021585|Zeromus|00010324|37466018||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:49.9550000-07:00|40021585|Zeromus|00010327|37463389||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:49.5030000-07:00|Change|10FF0007||||||||| +20|2023-10-06T21:55:50.0000000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|85.50|86.47|0.00|-1.73| +261|2023-10-06T21:55:49.6230000-07:00|Change|40021642||||||||| +24|2023-10-06T21:55:50.0450000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|29FF|81541|81541|7800|10000|||91.09|87.21|0.00|-1.66|10FF000B|Pusu Rosu|1|79209|79209|9862|10000|||91.47|93.30|0.00|-2.40| +34|2023-10-06T21:55:50.0450000-07:00|40021642|Carbuncle|40021642|Carbuncle|01| +24|2023-10-06T21:55:50.0900000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|145B|90216|90216|10000|10000|||85.32|86.29|0.00|-2.26|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7800|10000|||91.09|87.21|0.00|-1.66| +24|2023-10-06T21:55:50.0900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|15A8|81541|81541|7800|10000|||91.09|87.21|0.00|-1.66|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7800|10000|||91.09|87.21|0.00|-1.66| +21|2023-10-06T21:55:50.0900000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37463389|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.24|89.95|0.00|-3.08|0001032E|0|1| +38|2023-10-06T21:55:50.0900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||85.32|86.29|0.00|-2.26|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:50.0900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8350|10000|27||91.09|87.21|0.00|-1.66|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:50.1350000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9862|10000|27||91.47|93.30|0.00|-2.40|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:50.1350000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +24|2023-10-06T21:55:50.1800000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1B22|73814|73814|8900|10000|||85.41|86.46|0.00|-2.31|10FF000B|Pusu Rosu|0|79209|79209|9862|10000|||91.47|93.30|0.00|-2.40| +24|2023-10-06T21:55:50.1800000-07:00|10FF0006|Wowobora Gogobora|HoT|0|15AF|81809|81809|9100|10000|||90.16|91.88|0.00|-1.71|10FF0004|Buhojaqe Zijaqe|0|81541|81541|7800|10000|||91.09|87.21|0.00|-1.66| +38|2023-10-06T21:55:50.1800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|26||90.16|91.88|0.00|-1.71|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:49.8490000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:55:49.8490000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:55:49.9670000-07:00|Change|10FF0001||||||||||| +38|2023-10-06T21:55:50.3140000-07:00|40021585|Zeromus|005A5A00|37463389|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:55:50.3140000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +39|2023-10-06T21:55:50.3570000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||87.21|89.95|-0.01|-3.08| +21|2023-10-06T21:55:50.3570000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|452003|5CF70000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37463389|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||88.97|91.46|0.00|-1.85|0001032F|0|1| +38|2023-10-06T21:55:50.3570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|26||88.97|91.46|0.00|-1.85|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:50.3570000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T21:55:50.4020000-07:00|10FF0003|Gegehi Gehi|HoT|0|203F|73814|73814|8900|10000|||85.18|86.42|-0.01|2.15|10FF000B|Pusu Rosu|0|79209|79209|9862|10000|||90.11|91.99|0.00|-2.35| +38|2023-10-06T21:55:50.4020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8900|10000|19||85.18|86.42|-0.01|2.15|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:55:50.4460000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|149D|83502|83502|10000|10000|||87.08|89.91|0.00|-3.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8350|10000|||89.27|87.01|0.00|-1.67| +21|2023-10-06T21:55:50.4470000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|550003|524A0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|37463389|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.08|89.91|0.00|-3.08|00010330|0|1| +38|2023-10-06T21:55:50.4470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||87.08|89.91|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:50.4470000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T21:55:50.4470000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +39|2023-10-06T21:55:50.4910000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||87.37|88.67|-0.02|2.64| +24|2023-10-06T21:55:50.4910000-07:00|10FF000B|Pusu Rosu|HoT|0|155C|79209|79209|9862|10000|||89.71|91.67|0.00|-2.33|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8350|10000|||88.79|86.95|-0.02|-1.67| +38|2023-10-06T21:55:50.4910000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9862|10000|27||89.71|91.67|0.00|-2.33|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:55:50.5800000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|13E9|129844|129844|10000|10000|||86.62|88.18|0.00|2.62|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8350|10000|||88.16|86.67|0.00|-1.70| +21|2023-10-06T21:55:50.5800000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37463389|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||87.55|90.22|0.00|-3.08|00010331|0|1| +38|2023-10-06T21:55:50.5800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||86.62|88.18|0.00|2.62|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:55:50.6250000-07:00|40021585|Zeromus|0001032E|37460988||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:50.6250000-07:00|10FF000A|Dukaro Nezikaro|0001032E|83502|83502|10000|10000|16||86.63|89.79|0.00|2.45|1E00|0|0|01|04000A82|01|C1F00000|| +21|2023-10-06T21:55:50.6250000-07:00|40021611|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|730003|33820000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|37463389|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06|00010332|0|1| +38|2023-10-06T21:55:50.6250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|10||87.94|91.02|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:50.6250000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:55:50.2720000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:55:50.2720000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:55:50.6690000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|44B4|129071|129071|6600|10000|||87.27|91.03|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|9862|10000|||88.66|90.87|0.00|-2.28| +38|2023-10-06T21:55:50.6690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|10||87.27|91.03|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:50.3620000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:55:50.8040000-07:00|40021585|Zeromus|00010328|37435659||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:50.8040000-07:00|10FF0001|Sesuga Sapisuga|00010328|129071|129071|7000|10000|10||86.77|90.74|0.00|-3.13|1300|0|0|0| +38|2023-10-06T21:55:50.8470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|10||86.77|90.74|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:50.8470000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:55:50.8920000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37460988|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||85.07|86.14|0.00|-2.13|00010333|0|1| +37|2023-10-06T21:55:50.9810000-07:00|40021585|Zeromus|0001032F|37411860||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:50.9810000-07:00|10FF0006|Wowobora Gogobora|0001032F|81809|81809|8800|10000|26||86.13|88.24|0.00|-2.62|1B00|0|0|01|01000B25|0|0|| +21|2023-10-06T21:55:50.9810000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|19CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37435659|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||86.13|88.24|0.00|-2.62|00010334|0|1| +38|2023-10-06T21:55:50.9810000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|26||86.13|88.24|0.00|-2.62|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:50.9810000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:55:51.1130000-07:00|40021585|Zeromus|00010331|37411697||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:51.1130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|85.26|86.35|0.00|-1.66| +37|2023-10-06T21:55:51.1590000-07:00|40021585|Zeromus|00010330|37390631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:51.1590000-07:00|10FF000A|Dukaro Nezikaro|00010330|83502|83502|10000|10000|16||85.95|89.65|0.00|-3.08|1E00|0|0|01|04000A82|01|41F00000|| +21|2023-10-06T21:55:51.1590000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F712003|5F9B0000|143E|340000|200004|2D168000|11B|2A8000|0|0|0|0|0|0|0|0|37411860|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||84.83|86.60|0.00|2.64|00010335|0|1| +21|2023-10-06T21:55:51.1590000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|DCA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37411860|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||84.83|86.60|0.00|2.64|00010336|0|1| +38|2023-10-06T21:55:51.1590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||85.95|89.65|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:50.6750000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:55:51.2470000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||86.48|89.41|0.00|-2.18| +261|2023-10-06T21:55:50.7850000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:55:50.7850000-07:00|Change|40021642||||||||| +38|2023-10-06T21:55:51.3380000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|27||85.93|89.08|0.00|-2.15|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:51.3380000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T21:55:51.4260000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|152003|529B0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|37390631|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8900|10000|||85.16|86.41|0.00|1.97|00010337|0|1| +38|2023-10-06T21:55:51.4260000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8700|10000|19||85.16|86.41|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:51.4260000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:55:51.4260000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:51.0110000-07:00|Change|10FF0003||||||||||||||||||||||| +38|2023-10-06T21:55:51.4700000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8700|10000|19||85.16|86.41|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:51.4700000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:55:51.4700000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +261|2023-10-06T21:55:51.1260000-07:00|Change|10FF000B||||||||||| +38|2023-10-06T21:55:51.6040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|26||84.75|86.65|0.00|-2.82|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:51.6040000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:55:51.6040000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8350|10000|27||84.10|86.18|0.00|2.08|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:51.6040000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:55:51.6490000-07:00|40021585|Zeromus|00010333|37388064||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:51.6490000-07:00|40021585|Zeromus|DoT|0|1747|37390631|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|10000|10000|||84.14|88.18|0.00|-2.07| +36|2023-10-06T21:55:51.6490000-07:00|0FA0|3| +38|2023-10-06T21:55:51.6490000-07:00|40021585|Zeromus|005A5A00|37382105|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:55:51.6940000-07:00|40021585|Zeromus|00010336|37378575||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:51.6940000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2FAA0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|37390631|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||85.07|86.14|0.00|-2.13|00010338|0|1| +21|2023-10-06T21:55:51.6940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37390631|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||83.50|87.95|0.00|2.52|00010339|0|1| +31|2023-10-06T21:55:51.6940000-07:00|10FF0001||||| +37|2023-10-06T21:55:51.7380000-07:00|40021585|Zeromus|00010334|37371968||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:51.7380000-07:00|4002160B|Bunshin|76288|79156|10000|10000|||97.93|99.27|0.00|3.03| +38|2023-10-06T21:55:51.7380000-07:00|40021642|Carbuncle|005A5A00|74223|77698|10000|10000|0||87.25|90.96|0.00|-1.87|0|0|0||||||| +26|2023-10-06T21:55:51.7380000-07:00|A8F|Searing Light|4.41|10FF0006|Wowobora Gogobora|40021642|Carbuncle|00|77698|81809| +26|2023-10-06T21:55:51.7380000-07:00|30|Well Fed|930.89|10FF0006|Wowobora Gogobora|40021642|Carbuncle|2964|77698|81809| +38|2023-10-06T21:55:51.7380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|26||84.45|86.43|0.00|-2.18|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:51.7380000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +38|2023-10-06T21:55:51.7380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8350|10000|27||84.03|86.17|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:51.7380000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +21|2023-10-06T21:55:51.7830000-07:00|4002159A|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|116.50|0.00|0.00|0001033A|0|0| +38|2023-10-06T21:55:51.7830000-07:00|40021642|Carbuncle|005A5A00|74223|77698|10000|10000|0||87.25|90.96|0.00|-1.87|0|0|0|||||||||| +26|2023-10-06T21:55:51.7830000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40021642|Carbuncle|01|77698|81809| +21|2023-10-06T21:55:51.7830000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8800|10000|||84.45|86.43|0.00|-2.18|81809|81809|8800|10000|||84.45|86.43|0.00|-2.18|0001033B|0|1| +21|2023-10-06T21:55:51.7830000-07:00|4002159C|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|83.50|0.00|0.00|0001033C|0|0| +21|2023-10-06T21:55:51.7830000-07:00|4002159E|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|112.00|0.00|0.00|0001033D|0|0| +21|2023-10-06T21:55:51.7830000-07:00|400215A2|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001033E|0|0| +21|2023-10-06T21:55:51.7830000-07:00|400215A0|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|88.00|0.00|0.00|0001033F|0|0| +261|2023-10-06T21:55:51.3190000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T21:55:51.3190000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:55:51.3190000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T21:55:51.3190000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:55:51.3190000-07:00|Change|400215A0||||||||||||| +21|2023-10-06T21:55:51.8710000-07:00|40021642|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8800|10000|||84.32|86.33|0.00|-1.90|74223|77698|10000|10000|||86.81|90.54|0.00|-2.11|00010340|0|1| +20|2023-10-06T21:55:51.8720000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|83.67|86.72|0.00|-2.47| +38|2023-10-06T21:55:51.8720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||84.46|85.95|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:51.8720000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +38|2023-10-06T21:55:51.8720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|46||84.31|86.32|-0.02|-1.87|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:51.8720000-07:00|A8E|Radiant Aegis|29.96|40021642|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +38|2023-10-06T21:55:51.8720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||85.95|89.65|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:51.8720000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T21:55:51.9160000-07:00|40021585|Zeromus|00010332|37358782||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:51.9160000-07:00|40021611|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|99.75|0.00|-3.06|0|0|0|||||||||| +30|2023-10-06T21:55:51.9160000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|40021611|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:55:52.0060000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|318F0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|37371968|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||83.36|87.68|0.00|2.00|00010341|0|1| +21|2023-10-06T21:55:52.0060000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|552003|6D8A0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|37371968|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||85.95|89.65|0.00|-3.08|00010342|0|1| +38|2023-10-06T21:55:52.0060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||84.46|85.95|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.0060000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:55:52.0060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|10||83.36|87.68|0.00|2.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.0060000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:55:52.0060000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|27||83.67|86.72|0.00|-2.47|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.0060000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|79209|73814| +38|2023-10-06T21:55:52.0060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||85.95|89.65|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.0060000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +26|2023-10-06T21:55:52.0060000-07:00|7A2|Bunshin|9.40|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T21:55:51.5260000-07:00|Change|4002160B||||||||| +21|2023-10-06T21:55:52.0500000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|33D80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|37358782|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8350|10000|||84.03|86.17|0.00|1.93|00010343|0|1| +21|2023-10-06T21:55:52.0940000-07:00|4002160B|Bunshin|6517|Fleeting Raiju|40021585|Zeromus|552003|1DD40000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|37358782|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||85.97|89.67|0.00|2.17|00010344|0|1| +39|2023-10-06T21:55:52.0940000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8150|10000|||84.03|86.17|0.00|1.93| +261|2023-10-06T21:55:51.6540000-07:00|Change|4002160B||| +261|2023-10-06T21:55:51.7710000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:55:52.1400000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||85.07|86.14|0.00|1.96| +39|2023-10-06T21:55:52.1400000-07:00|10FF0003|Gegehi Gehi|73814|73814|8900|10000|||85.16|86.41|0.00|1.97| +38|2023-10-06T21:55:52.1400000-07:00|40021611|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|99.75|0.00|-3.06|0|0|0||||||| +30|2023-10-06T21:55:52.1400000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40021611|Automaton Queen|00|85668|73814| +38|2023-10-06T21:55:52.1400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||85.07|86.14|0.00|1.96|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.1400000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +30|2023-10-06T21:55:52.1400000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T21:55:52.2290000-07:00|40021585|Zeromus|00010339|37356760||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:52.2290000-07:00|40021585|Zeromus|00010337|37335613||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:52.2740000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9000|10000|||84.30|86.29|0.00|-1.96| +21|2023-10-06T21:55:52.2740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|DDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37358782|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||85.95|89.65|0.00|2.17|00010345|0|1| +38|2023-10-06T21:55:52.2740000-07:00|4002160B|Bunshin|005A5A00|76288|79156|10000|10000|0||85.97|89.67|0.00|2.17|0|0|0||||||| +30|2023-10-06T21:55:52.2740000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002160B|Bunshin|00|79156|73814| +38|2023-10-06T21:55:52.2740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|10||83.36|87.68|0.00|2.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.2740000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:55:52.2740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||85.95|89.65|0.00|2.17|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.2740000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|83502|73814| +261|2023-10-06T21:55:51.7710000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:55:52.4080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|10||83.36|87.68|0.00|2.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4080000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +38|2023-10-06T21:55:52.4530000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|27||83.67|86.30|-0.01|1.93|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4530000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:55:52.4530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||85.95|89.65|0.00|2.17|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4530000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T21:55:52.0080000-07:00|Change|10FF0003||||||| +37|2023-10-06T21:55:52.4980000-07:00|40021585|Zeromus|00010338|37323411||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:52.4980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||84.46|85.95|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4980000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:55:52.4980000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||85.07|86.14|0.00|1.96|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4980000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:55:52.4980000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|46||84.26|86.27|-0.02|-2.16|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4980000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:55:52.4980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|10||83.36|87.68|0.00|2.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4980000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:55:52.4980000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8150|10000|27||84.03|86.17|0.00|1.93|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4980000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:55:52.4980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8900|10000|19||85.16|86.41|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.4980000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +261|2023-10-06T21:55:52.1270000-07:00|Change|10FF000B||||||||||||||||||||| +38|2023-10-06T21:55:52.6310000-07:00|40021611|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|99.75|0.00|-3.06|0|0|0|||||||||| +26|2023-10-06T21:55:52.6310000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|40021611|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:55:52.6310000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|371F0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|37323411|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8900|10000|||85.23|86.41|0.00|1.81|00010346|0|1| +38|2023-10-06T21:55:52.6310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8600|10000|19||85.23|86.41|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:52.6310000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:55:52.6310000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:55:52.6750000-07:00|40021585|Zeromus|00010335|37298936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:52.6750000-07:00|10FF0006|Wowobora Gogobora|00010340|81809|81809|9000|10000|46||83.81|85.88|0.00|-2.18|1B00|0|0|01|01000A8E|0|41E99374|| +21|2023-10-06T21:55:52.6750000-07:00|40021611|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|730003|39EA0000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|37323411|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06|00010347|0|1| +38|2023-10-06T21:55:52.6750000-07:00|40021642|Carbuncle|005A5A00|74223|77698|10000|10000|0||85.38|88.97|0.00|-2.61|0|0|0||||||| +30|2023-10-06T21:55:52.6750000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40021642|Carbuncle|01|77698|81809| +39|2023-10-06T21:55:52.7200000-07:00|40021611|Automaton Queen|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06| +21|2023-10-06T21:55:52.7200000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37323411|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8900|10000|||85.23|86.41|0.00|1.81|00010348|0|1| +04|2023-10-06T21:55:52.3340000-07:00|40021622|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||102.24|101.84|0.00|-3.12| +261|2023-10-06T21:55:52.3340000-07:00|Remove|40021622| +37|2023-10-06T21:55:52.7640000-07:00|40021585|Zeromus|00010342|37270894||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:52.8090000-07:00|40021585|Zeromus|00010345|37267345||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:52.8090000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7200|10000|||83.36|87.68|0.00|2.00| +21|2023-10-06T21:55:52.8090000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|38650000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|37298936|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||83.65|85.74|0.00|-2.53|00010349|0|1| +21|2023-10-06T21:55:52.8090000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|33A00000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|37298936|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||83.67|86.29|0.00|1.93|0001034A|0|1| +38|2023-10-06T21:55:52.8090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|46||83.65|85.74|0.00|-2.53|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:52.8090000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:55:52.4260000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:55:52.4260000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:55:52.4260000-07:00|Change|40021642||||||||| +37|2023-10-06T21:55:52.8530000-07:00|40021585|Zeromus|00010344|37259709||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:52.8530000-07:00|40021585|Zeromus|00010343|37246437||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:53.0750000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2026|90216|90216|10000|10000|||85.76|86.16|0.00|1.62|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8150|10000|||83.77|85.93|0.00|-2.68| +24|2023-10-06T21:55:53.0750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|154A|81541|81541|8150|10000|||83.77|85.93|0.00|-2.68|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8150|10000|||83.77|85.93|0.00|-2.68| +38|2023-10-06T21:55:53.0750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||85.76|86.16|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:53.0750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8700|10000|27||83.77|85.93|0.00|-2.68|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:55:53.1650000-07:00|10FF0006|Wowobora Gogobora|HoT|0|153E|81809|81809|8700|10000|||83.94|85.66|0.00|1.78|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8150|10000|||83.77|85.93|0.00|-2.68| +38|2023-10-06T21:55:53.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|46||83.94|85.66|0.00|1.78|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:52.7430000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:55:53.2540000-07:00|40021585|Zeromus|00010348|37246400||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:53.2540000-07:00|10FF0003|Gegehi Gehi|00010348|73814|73814|8600|10000|19||88.42|86.52|0.00|1.54|2300|0|0|01|020004D2|0|C1F00000|| +37|2023-10-06T21:55:53.2990000-07:00|40021585|Zeromus|00010341|37233713||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:53.2990000-07:00|10FF0001|Sesuga Sapisuga|00010341|129071|129071|7600|10000|10||85.91|88.02|0.00|1.96|1300|0|0|0| +21|2023-10-06T21:55:53.2990000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37246437|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8700|10000|||83.69|85.83|0.00|3.09|0001034B|0|1| +39|2023-10-06T21:55:53.3430000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||85.97|89.65|0.00|2.35| +37|2023-10-06T21:55:53.3890000-07:00|40021585|Zeromus|00010346|37219602||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:53.3890000-07:00|10FF0003|Gegehi Gehi|00010346|73814|73814|8600|10000|19||88.59|86.56|0.00|1.49|2300|0|0|01|020004D2|0|41F00000|| +24|2023-10-06T21:55:53.3890000-07:00|10FF0003|Gegehi Gehi|HoT|0|20C8|73814|73814|8600|10000|||88.59|86.56|0.00|1.49|10FF000B|Pusu Rosu|0|79209|79209|9600|10000|||83.68|86.33|0.00|1.29| +38|2023-10-06T21:55:53.3890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8600|10000|19||88.59|86.56|0.00|1.49|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:55:53.4320000-07:00|40021585|Zeromus|00010349|37205165||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:53.4320000-07:00|10FF0006|Wowobora Gogobora|00010349|81809|81809|8700|10000|46||86.06|86.26|0.00|1.37|1B00|0|0|01|03000B25|0|0|| +24|2023-10-06T21:55:53.4320000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|20FC|83502|83502|10000|10000|||85.99|89.65|0.00|2.59|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8700|10000|||83.74|85.82|0.00|2.70| +38|2023-10-06T21:55:53.4320000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|46||86.06|86.26|0.00|1.37|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:53.4320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||85.99|89.65|0.00|2.59|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:55:53.4770000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.19|86.60|0.00|1.43| +24|2023-10-06T21:55:53.4770000-07:00|10FF000B|Pusu Rosu|HoT|0|1585|79209|79209|9600|10000|||83.68|86.33|0.00|1.29|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8700|10000|||83.74|85.82|0.00|2.70| +21|2023-10-06T21:55:53.4770000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|193A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37233713|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||86.06|86.26|0.00|1.37|0001034C|0|1| +38|2023-10-06T21:55:53.4770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|46||86.06|86.26|0.00|1.37|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:53.4770000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:55:53.4770000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|27||83.68|86.33|0.00|1.29|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:53.0850000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:55:53.5220000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F840E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|37205165|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8700|10000|||83.79|85.81|0.00|2.33|0001034D|0|1| +24|2023-10-06T21:55:53.5670000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|13E4|129844|129844|10000|10000|||88.90|86.68|0.00|1.44|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8700|10000|||83.79|85.81|0.00|2.33| +21|2023-10-06T21:55:53.5670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8EC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37205165|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.79|86.37|0.00|1.51|0001034E|0|1| +38|2023-10-06T21:55:53.5670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||88.90|86.68|0.00|1.44|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:53.1860000-07:00|Change|10FF000B||||||||||||||||||||||| +21|2023-10-06T21:55:53.6120000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|712003|65C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37205165|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||89.59|86.75|0.00|1.45|0001034F|0|1| +24|2023-10-06T21:55:53.6570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|4DCA|129071|129071|7600|10000|||87.75|88.61|0.00|2.12|10FF000B|Pusu Rosu|0|79209|79209|9600|10000|||84.26|86.65|0.00|0.83| +38|2023-10-06T21:55:53.6570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|10||87.75|88.61|0.00|2.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:53.7000000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|1420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37205165|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||88.21|86.92|0.00|1.89|00010350|0|1| +261|2023-10-06T21:55:53.2820000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:55:53.2820000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:55:53.2820000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:55:53.8340000-07:00|40021585|Zeromus|0001034B|37204916||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:53.9680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|C9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37204916|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||89.62|89.06|0.00|2.12|00010351|0|1| +31|2023-10-06T21:55:53.9680000-07:00|10FF0001||||| +261|2023-10-06T21:55:53.5700000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:55:54.1010000-07:00|40021585|Zeromus|0001034A|37191700||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:53.7840000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:55:54.1460000-07:00|40021585|Zeromus|0001034D|37191700|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:55:54.1460000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +21|2023-10-06T21:55:54.1460000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8700|10000|||91.51|87.49|0.00|1.46|81809|81809|8700|10000|||91.51|87.49|0.00|1.46|00010352|0|1| +21|2023-10-06T21:55:54.1910000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44724003|4D0B0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|37191700|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||93.42|86.85|0.00|1.47|00010353|0|1| +37|2023-10-06T21:55:54.2360000-07:00|40021585|Zeromus|0001034F|37165652||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:54.2360000-07:00|40021585|Zeromus|0001034C|37159194||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:54.2360000-07:00|40021585|Zeromus|00010350|37158872||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:54.2360000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||88.03|87.47|0.00|1.61| +21|2023-10-06T21:55:54.2360000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19150000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|37191700|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||90.95|89.33|0.00|-3.09|00010354|0|1| +38|2023-10-06T21:55:54.2360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||90.95|89.33|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:54.2360000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T21:55:53.7840000-07:00|Change|4002160B||||||||| +261|2023-10-06T21:55:53.8970000-07:00|Change|4002160B||| +261|2023-10-06T21:55:53.8970000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:55:54.3250000-07:00|40021585|Zeromus|0001034E|37156588||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:54.3250000-07:00|4002160B|Bunshin|4405|Spinning Edge|40021585|Zeromus|710003|10920000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|37158872|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||91.99|89.29|0.00|2.42|00010355|0|1| +21|2023-10-06T21:55:54.3690000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|752003|FED0000|BDF50E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|37158872|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9881|10000|||88.58|87.44|0.00|1.64|00010356|0|1| +261|2023-10-06T21:55:54.0080000-07:00|Change|40021585||| +261|2023-10-06T21:55:54.0080000-07:00|Change|4002160B||| +261|2023-10-06T21:55:54.0080000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T21:55:54.1230000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:55:54.4580000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37156588|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.44|89.30|0.00|2.81|00010357|0|1| +37|2023-10-06T21:55:54.5030000-07:00|40021585|Zeromus|00010351|37153359||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:54.5470000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|14A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37156588|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||92.06|87.04|0.00|1.82|00010358|0|1| +21|2023-10-06T21:55:54.5470000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|16240000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|37156588|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||92.89|89.84|0.00|2.13|00010359|0|1| +261|2023-10-06T21:55:54.1230000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:55:54.6350000-07:00|40021585|Zeromus|00010347|37138533||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:54.6350000-07:00|40021585|Zeromus|00010354|37132112||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:54.6350000-07:00|40021611|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|99.75|0.00|-3.06|0|0|0||||||| +30|2023-10-06T21:55:54.6350000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|40021611|Automaton Queen|01|85668|40478540| +38|2023-10-06T21:55:54.6350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|10||94.15|90.12|0.00|2.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:54.6350000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +24|2023-10-06T21:55:54.6790000-07:00|40021585|Zeromus|DoT|0|17A9|37153359|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9481|10000|||89.66|87.39|0.00|2.18| +36|2023-10-06T21:55:54.6790000-07:00|107C|3| +38|2023-10-06T21:55:54.6790000-07:00|40021585|Zeromus|005A5A00|37126055|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:55:54.7240000-07:00|40021585|Zeromus|00010355|37121813||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:54.7240000-07:00|4002160B|Bunshin|76288|79156|10000|10000|||91.99|89.29|0.00|2.42| +37|2023-10-06T21:55:54.7680000-07:00|10FF0006|Wowobora Gogobora|00010352|81809|81809|8700|10000|46||94.66|87.09|0.00|1.70|1B00|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:55:54.7680000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:55:54.5140000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:55:54.5140000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:55:54.9470000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||95.20|87.58|0.00|1.61|129844|129844|10000|10000|||95.20|87.58|0.00|1.61|0001035A|0|1| +38|2023-10-06T21:55:54.9470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||95.20|87.58|0.00|1.61|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:54.9470000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:55:54.9920000-07:00|40021585|Zeromus|00010353|37102090||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:54.9920000-07:00|40021585|Zeromus|00010357|37099729||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:54.9920000-07:00|40021642|Carbuncle|77698|77698|10000|10000|||88.27|86.05|0.00|1.73| +261|2023-10-06T21:55:54.5140000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:55:55.0820000-07:00|40021585|Zeromus|00010358|37094442||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:55.0820000-07:00|10FF0007|Kehabiqo Febiqo|00010358|129844|129844|10000|10000|25||95.93|88.02|0.00|2.64|1500|0|0|01|01000769|0|C1F00000|| +39|2023-10-06T21:55:55.0820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8500|10000|||90.66|87.25|0.00|1.37| +261|2023-10-06T21:55:54.6140000-07:00|Change|40021642||||||||| +39|2023-10-06T21:55:55.1270000-07:00|10FF0003|Gegehi Gehi|73814|73814|8800|10000|||98.53|87.48|0.00|1.53| +261|2023-10-06T21:55:54.7250000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:55:55.1710000-07:00|40021585|Zeromus|00010359|37088774||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:55.1710000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||96.81|87.10|0.00|1.72| +261|2023-10-06T21:55:54.8390000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:55:55.3050000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8900|10000|||96.32|86.31|0.00|1.79| +21|2023-10-06T21:55:55.3050000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40021585|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|37088774|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||96.32|86.31|0.00|1.79|0001035B|0|1| +20|2023-10-06T21:55:55.3050000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|99.32|87.48|0.00|1.54| +38|2023-10-06T21:55:55.3050000-07:00|40021642|Carbuncle|005A5A00|0|77698|0|10000|0||90.84|86.10|0.00|1.59|0|0|0||||||| +30|2023-10-06T21:55:55.3050000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40021642|Carbuncle|00|77698|81809| +38|2023-10-06T21:55:55.3050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|46||96.32|86.31|0.00|1.79|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:55.3050000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:55:55.3470000-07:00|40021649||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:55:55.3500000-07:00|40021649||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:55:54.9530000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:55:55.4840000-07:00|10FF0007|Kehabiqo Febiqo|0001035A|129844|129844|10000|10000|25||97.81|87.76|0.00|2.69|1500|0|0|01|01000769|0|41F00000|| +38|2023-10-06T21:55:55.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||97.81|87.76|0.00|2.69|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:55.0630000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:55:55.0630000-07:00|Add|40021649||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:55:55.0630000-07:00|40021649|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||97.38|88.55|0.00|2.64| +261|2023-10-06T21:55:55.1750000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:55:55.1750000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:55:55.1750000-07:00|Change|40021649||||| +37|2023-10-06T21:55:55.6600000-07:00|40021585|Zeromus|00010356|37084697|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:55:55.6600000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +39|2023-10-06T21:55:55.7050000-07:00|40021611|Automaton Queen|82193|85668|10000|10000|||101.58|99.75|0.00|-3.06| +39|2023-10-06T21:55:55.7940000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7800|10000|||99.93|89.64|0.00|2.95| +261|2023-10-06T21:55:55.3660000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:55:56.0620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1519|90216|90216|10000|10000|||99.69|87.21|0.00|1.53|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8500|10000|||96.93|88.33|0.00|1.43| +24|2023-10-06T21:55:56.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|13F0|81541|81541|8500|10000|||96.93|88.33|0.00|1.43|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8500|10000|||96.93|88.33|0.00|1.43| +21|2023-10-06T21:55:56.0620000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|B3E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|86.53|0.00|2.93|0001035C|0|1| +38|2023-10-06T21:55:56.0620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||99.93|86.53|0.00|2.93|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.0620000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:55:56.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.69|87.21|0.00|1.53|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:56.0620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9050|10000|27||96.93|88.33|0.00|1.43|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:55.6660000-07:00|Change|40021642||||||||| +24|2023-10-06T21:55:56.1500000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1468|81809|81809|8900|10000|||97.89|86.21|0.00|1.71|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9050|10000|||97.66|88.40|0.00|1.44| +38|2023-10-06T21:55:56.1510000-07:00|4002160B|Bunshin|005A5A00|76288|79156|10000|10000|0||91.99|89.29|0.00|2.42|0|0|0|||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002160B|Bunshin|00|79156|81809| +38|2023-10-06T21:55:56.1510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||99.93|86.53|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:55:56.1510000-07:00|40021611|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|99.75|0.00|-3.06|0|0|0|||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40021611|Automaton Queen|00|85668|81809| +38|2023-10-06T21:55:56.1510000-07:00|40021649|Emerald Garuda|005A5A00|74223|77698|10000|10000|0||97.38|88.55|0.00|2.64|0|0|0||||||| +26|2023-10-06T21:55:56.1510000-07:00|30|Well Fed|926.47|10FF0006|Wowobora Gogobora|40021649|Emerald Garuda|2964|77698|81809| +38|2023-10-06T21:55:56.1510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.69|87.21|0.00|1.53|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:55:56.1510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9450|10000|46||97.89|86.21|0.00|1.71|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:55:56.1510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7800|10000|10||100.02|89.55|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:55:56.1510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9050|10000|27||97.66|88.40|0.00|1.44|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:55:56.1510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8800|10000|19||99.78|87.48|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:55:56.1510000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9481|10000|27||98.04|87.52|-0.02|1.51|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +38|2023-10-06T21:55:56.1510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.83|89.33|-0.02|1.29|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.1510000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +20|2023-10-06T21:55:56.1950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|97.66|88.40|0.00|1.44| +21|2023-10-06T21:55:56.2390000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|89E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.69|87.21|0.00|1.53|0001035D|0|1| +21|2023-10-06T21:55:56.2390000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7800|10000|||100.02|89.55|0.00|3.00|0001035E|0|1| +31|2023-10-06T21:55:56.2390000-07:00|10FF0001||||| +261|2023-10-06T21:55:55.7900000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T21:55:55.7900000-07:00|Change|4002160B||| +37|2023-10-06T21:55:56.3290000-07:00|10FF0006|Wowobora Gogobora|0001035B|81809|81809|9450|10000|46||98.61|86.37|0.00|1.45|1B00|0|0|01|04000AA5|0|0|| +38|2023-10-06T21:55:56.3290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9450|10000|46||98.61|86.37|0.00|1.45|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T21:55:56.3740000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.92|89.67|0.00|0.69| +24|2023-10-06T21:55:56.3740000-07:00|10FF0003|Gegehi Gehi|HoT|0|1460|73814|73814|8800|10000|||99.78|87.48|0.00|3.11|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||98.87|86.56|0.00|2.00| +38|2023-10-06T21:55:56.3740000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8800|10000|19||99.78|87.48|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:56.0160000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:55:56.4180000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|13D7|83502|83502|10000|10000|||99.94|89.77|0.00|0.50|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9050|10000|||98.90|88.53|0.00|2.37| +261|2023-10-06T21:55:56.0160000-07:00|Change|40021649||| +38|2023-10-06T21:55:56.4180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.94|89.77|0.00|0.50|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:55:56.4620000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.93|86.53|0.00|3.13| +24|2023-10-06T21:55:56.4620000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E27|83502|83502|10000|10000|||99.94|89.77|0.00|0.50|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.11|86.27|0.00|2.20| +24|2023-10-06T21:55:56.4620000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E12|129071|129071|7800|10000|||100.03|89.37|0.00|3.06|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.11|86.27|0.00|2.20| +24|2023-10-06T21:55:56.4620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E19|81541|81541|9050|10000|||98.90|88.53|0.00|2.37|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.11|86.27|0.00|2.20| +24|2023-10-06T21:55:56.4620000-07:00|10FF000B|Pusu Rosu|HoT|0|202F|79209|79209|9481|10000|||99.11|86.27|0.00|2.20|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9050|10000|||98.90|88.53|0.00|2.37| +21|2023-10-06T21:55:56.4620000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24DF0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.94|89.77|0.00|0.50|0001035F|0|1| +38|2023-10-06T21:55:56.4620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7800|10000|10||100.03|89.37|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:56.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:55:56.4620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9050|10000|27||98.90|88.53|0.00|2.37|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:56.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:55:56.4620000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9481|10000|27||99.11|86.27|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:56.4620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.94|89.77|0.00|0.50|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:56.4620000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T21:55:56.1260000-07:00|Change|10FF000B||||||||| +24|2023-10-06T21:55:56.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|159C|129844|129844|10000|10000|||99.93|86.53|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9050|10000|||99.16|88.55|0.00|2.75| +38|2023-10-06T21:55:56.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||99.93|86.53|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:55:56.2170000-07:00|Change|10FF0006||||||||||| +24|2023-10-06T21:55:56.6410000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2073|129071|129071|7800|10000|||100.03|89.37|0.00|3.06|10FF000B|Pusu Rosu|0|79209|79209|9481|10000|||99.58|85.70|0.00|2.60| +21|2023-10-06T21:55:56.6410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.98|89.93|0.00|-3.14|00010360|0|1| +38|2023-10-06T21:55:56.6410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7800|10000|10||100.03|89.37|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:55:56.6860000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|326B0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.69|87.21|0.00|1.64|00010361|0|1| +21|2023-10-06T21:55:56.7310000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|152003|4A8E0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8800|10000|||99.78|87.48|0.00|3.11|00010362|0|1| +38|2023-10-06T21:55:56.7310000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8600|10000|19||99.78|87.48|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:56.7310000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:55:56.7310000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:56.3150000-07:00|Remove|4002160B| +04|2023-10-06T21:55:56.3150000-07:00|4002160B|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||91.99|89.29|0.00|2.42| +37|2023-10-06T21:55:56.7760000-07:00|40021585|Zeromus|0001035E|37082753||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:56.8220000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|86.53|0.00|3.13|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010363|0|1| +21|2023-10-06T21:55:56.8220000-07:00|40021592|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|83.50|0.00|0.00|00010364|0|0| +21|2023-10-06T21:55:56.8220000-07:00|40021594|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|116.50|0.00|0.00|00010365|0|0| +21|2023-10-06T21:55:56.8220000-07:00|40021596|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.00|100.00|0.00|0.00|00010366|0|0| +21|2023-10-06T21:55:56.8220000-07:00|40021598|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.00|100.00|0.00|0.00|00010367|0|0| +21|2023-10-06T21:55:56.8220000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37084697|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9450|10000|||99.99|86.90|0.00|0.58|00010368|0|1| +20|2023-10-06T21:55:56.8220000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.79|85.45|0.00|2.77| +261|2023-10-06T21:55:56.3150000-07:00|Change|40021592||||||||||||| +261|2023-10-06T21:55:56.3150000-07:00|Change|40021594||||||||||||| +261|2023-10-06T21:55:56.3150000-07:00|Change|40021596||||||||||||| +261|2023-10-06T21:55:56.3150000-07:00|Change|40021598||||||||||||| +261|2023-10-06T21:55:56.4130000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:55:56.8660000-07:00|40021585|Zeromus|0001035F|37073314||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:56.9990000-07:00|40021585|Zeromus|0001035C|37027266||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:56.9990000-07:00|40021585|Zeromus|0001035D|37025060||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:56.9990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9050|10000|27||99.38|88.58|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:56.9990000-07:00|317|Dissipation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:55:57.0410000-07:00|4002164C||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:55:57.0440000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|21CD0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|37073314|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7800|10000|||100.03|89.37|0.00|-3.14|00010369|0|1| +38|2023-10-06T21:55:57.0440000-07:00|4002164C||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:55:57.1320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|50470000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|37025060|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9050|10000|||99.38|88.58|0.00|3.07|0001036A|0|1| +03|2023-10-06T21:55:56.6180000-07:00|4002164C|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||100.92|90.33|0.00|-2.84| +261|2023-10-06T21:55:56.7330000-07:00|Add|4002164C||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:55:57.1770000-07:00|40021585|Zeromus|00010360|37022946||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:56.7330000-07:00|Change|4002164C||| +39|2023-10-06T21:55:57.2210000-07:00|10FF000B|Pusu Rosu|79209|79209|9762|10000|||99.89|85.32|-0.01|3.09| +261|2023-10-06T21:55:56.8440000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T21:55:57.3550000-07:00|40021585|Zeromus|00010368|37022788||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:57.3990000-07:00|40021649|Emerald Garuda|64FE|Aerial Blast|40021585|Zeromus|356003|C5700000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|37022946|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||97.38|88.55|0.00|2.64|0001036B|0|1| +261|2023-10-06T21:55:56.9650000-07:00|Change|40021642||| +37|2023-10-06T21:55:57.4440000-07:00|40021585|Zeromus|00010361|37009881||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:57.4440000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|37022788|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8650|10000|||99.38|88.58|0.00|3.07|0001036C|0|1| +37|2023-10-06T21:55:57.5330000-07:00|40021585|Zeromus|00010362|36990795||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:55:57.0820000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T21:55:57.6230000-07:00|10FF0007|Kehabiqo Febiqo|00010363|129844|129844|10000|10000|13||99.93|86.53|0.00|3.13|1500|0|0|0| +24|2023-10-06T21:55:57.6680000-07:00|40021585|Zeromus|DoT|0|1F09|36990795|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9762|10000|||99.90|85.31|0.00|3.13| +21|2023-10-06T21:55:57.6680000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36990795|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8600|10000|||99.72|88.10|0.00|-0.67|0001036D|0|1| +36|2023-10-06T21:55:57.6680000-07:00|1158|3| +38|2023-10-06T21:55:57.6680000-07:00|40021585|Zeromus|005A5A00|36982850|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:55:57.2770000-07:00|Change|4002164C||||||||||| +21|2023-10-06T21:55:57.7120000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|352003|597F0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|36990795|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8600|10000|||99.72|88.10|0.00|-0.67|0001036E|0|1| +38|2023-10-06T21:55:57.7120000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8300|10000|19||99.72|88.10|0.00|-0.67|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:57.7120000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:57.2770000-07:00|Change|40021611||||||||| +261|2023-10-06T21:55:57.2770000-07:00|Change|40021611||||||||| +20|2023-10-06T21:55:57.7550000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|2.982|100.30|87.51|0.00|-0.15| +21|2023-10-06T21:55:57.7550000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|3C5E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36982850|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9762|10000|||99.90|85.31|0.00|3.13|0001036F|0|1| +261|2023-10-06T21:55:57.2770000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T21:55:57.8000000-07:00|40021585|Zeromus|00010369|36974197||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:57.8000000-07:00|10FF0001|Sesuga Sapisuga|00010369|129071|129071|8800|10000|10||100.03|89.37|0.00|-3.14|1300|0|0|0| +261|2023-10-06T21:55:57.3730000-07:00|Change|10FF0001||||| +38|2023-10-06T21:55:57.8450000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.72|90.10|0.00|-2.51|0|0|0||||||| +26|2023-10-06T21:55:57.8450000-07:00|30|Well Fed|1474.47|10FF0004|Buhojaqe Zijaqe|4002164C|Ruby Carbuncle|2968|77430|81541| +26|2023-10-06T21:55:57.8450000-07:00|7AC|Summon Order II|30.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:55:57.8450000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8650|10000|||99.38|88.58|0.00|3.07|81541|81541|8650|10000|||99.38|88.58|0.00|3.07|00010370|0|1| +261|2023-10-06T21:55:57.3730000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:55:57.9350000-07:00|40021585|Zeromus|0001036A|36953646||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:55:57.9350000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8800|10000|||100.03|89.37|0.00|-3.14|73956|77430|10000|10000|||100.70|90.07|0.00|-2.48|00010371|0|8| +22|2023-10-06T21:55:57.9350000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8300|10000|||99.53|89.76|0.00|3.09|73956|77430|10000|10000|||100.70|90.07|0.00|-2.48|00010371|1|8| +22|2023-10-06T21:55:57.9350000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|90.12|0.00|1.06|73956|77430|10000|10000|||100.70|90.07|0.00|-2.48|00010371|2|8| +22|2023-10-06T21:55:57.9350000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8650|10000|||99.38|88.58|0.00|3.07|73956|77430|10000|10000|||100.70|90.07|0.00|-2.48|00010371|3|8| +22|2023-10-06T21:55:57.9350000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9450|10000|||100.30|87.51|0.00|-0.87|73956|77430|10000|10000|||100.70|90.07|0.00|-2.48|00010371|4|8| +22|2023-10-06T21:55:57.9350000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.70|87.29|0.00|1.63|73956|77430|10000|10000|||100.70|90.07|0.00|-2.48|00010371|5|8| +22|2023-10-06T21:55:57.9350000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|86.58|0.00|-1.68|73956|77430|10000|10000|||100.70|90.07|0.00|-2.48|00010371|6|8| +22|2023-10-06T21:55:57.9350000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF000B|Pusu Rosu|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9362|10000|||99.90|85.31|0.00|3.13|73956|77430|10000|10000|||100.70|90.07|0.00|-2.48|00010371|7|8| +21|2023-10-06T21:55:57.9350000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|14E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36974197|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|86.58|0.00|-1.68|00010372|0|1| +37|2023-10-06T21:55:57.9790000-07:00|40021585|Zeromus|0001036C|36953397||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:55:58.0680000-07:00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01| +39|2023-10-06T21:55:58.1130000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8850|10000|||99.38|88.58|0.00|3.07| +39|2023-10-06T21:55:58.1130000-07:00|10FF0003|Gegehi Gehi|73814|73814|8500|10000|||99.52|89.96|0.00|3.09| +261|2023-10-06T21:55:57.6510000-07:00|Change|4002164C||||||||| +39|2023-10-06T21:55:58.1580000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.74|87.71|0.00|0.10| +37|2023-10-06T21:55:58.2020000-07:00|40021585|Zeromus|0001036D|36953341||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:58.2910000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9650|10000|||100.30|87.51|0.00|-3.10| +261|2023-10-06T21:55:57.8810000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:55:57.8810000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:55:58.4690000-07:00|40021585|Zeromus|00010372|36947997||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:58.4690000-07:00|40021585|Zeromus|0001036E|36925086||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:55:58.5140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36925086|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8800|10000|||100.03|89.37|0.00|-3.14|00010373|0|1| +31|2023-10-06T21:55:58.5140000-07:00|10FF0001||||| +21|2023-10-06T21:55:58.5590000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|19140000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|36925086|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.49|90.16|0.00|-0.43|00010374|0|1| +20|2023-10-06T21:55:58.5590000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.38|88.58|0.00|3.07| +38|2023-10-06T21:55:58.5590000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9362|10000|27||99.77|85.81|0.00|-0.99|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:58.5590000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T21:55:58.1110000-07:00|Change|10FF000B||||||||||||||||||||||| +38|2023-10-06T21:55:58.6030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8800|10000|10||100.03|89.37|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:58.6030000-07:00|31|Medicated|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|296B|129071|129071| +12|2023-10-06T21:55:58.2050000-07:00|19|3472|389|3999|247|412|390|3472|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +261|2023-10-06T21:55:58.2050000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:55:58.2050000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:55:58.6920000-07:00|40021585|Zeromus|0001036B|36874542||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:58.6920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|13||99.33|91.48|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:58.6920000-07:00|31|Medicated|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|296B|129844|129844| +38|2023-10-06T21:55:58.6920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9650|10000|46||100.30|87.51|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:58.6920000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +37|2023-10-06T21:55:58.7370000-07:00|10FF0001|Sesuga Sapisuga|00010371|129071|129071|8800|10000|10||100.03|89.37|0.00|-3.14|1300|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:55:58.7370000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +21|2023-10-06T21:55:58.7370000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44716003|684B0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|36925086|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.03|96.14|0.00|0.01|00010375|0|1| +261|2023-10-06T21:55:58.3050000-07:00|Change|10FF0006||||||| +39|2023-10-06T21:55:58.8250000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9000|10000|||100.03|89.37|0.00|-3.14| +21|2023-10-06T21:55:58.8250000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|ACD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36874542|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.93|96.86|0.00|3.14|00010376|0|1| +38|2023-10-06T21:55:58.8250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8850|10000|27||99.38|88.58|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:58.8250000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +37|2023-10-06T21:55:58.8700000-07:00|10FF0003|Gegehi Gehi|00010371|73814|73814|8500|10000|19||99.46|92.08|-0.02|0.19|2301|0|0|01|0100013D|0|41A00000|| +26|2023-10-06T21:55:58.8700000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +261|2023-10-06T21:55:58.3980000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:55:58.9150000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36874542|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.01|92.48|0.00|0.06|00010377|0|1| +261|2023-10-06T21:55:58.3980000-07:00|Change|10FF0001||| +38|2023-10-06T21:55:58.9590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.87|97.21|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:58.9590000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T21:55:59.0050000-07:00|10FF000A|Dukaro Nezikaro|00010371|83502|83502|10000|10000|16||99.87|97.21|0.00|3.14|1E02|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T21:55:59.0050000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T21:55:59.0490000-07:00|40021585|Zeromus|00010373|36872701||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:55:59.0490000-07:00|40021585|Zeromus|0001036F|36857247||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:55:59.0490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|146B|90216|90216|10000|10000|||100.07|93.85|0.00|0.05|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8850|10000|||99.38|88.58|0.00|3.07| +38|2023-10-06T21:55:59.0490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.07|93.85|0.00|0.05|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:55:59.0490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9400|10000|27||99.38|88.58|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:55:59.0930000-07:00|40021585|Zeromus|00010374|36850827||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:59.0930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|13||99.08|93.31|0.00|-0.89|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:59.0930000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T21:55:59.1390000-07:00|10FF0004|Buhojaqe Zijaqe|00010371|81541|81541|9400|10000|27||99.38|88.58|0.00|3.07|1C03|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T21:55:59.1390000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T21:55:59.1390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|46||100.30|87.51|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +04|2023-10-06T21:55:58.7210000-07:00|40021642|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||93.58|85.77|0.00|1.74| +261|2023-10-06T21:55:58.7210000-07:00|Remove|40021642| +21|2023-10-06T21:55:59.1830000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C722003|4E000000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|36850827|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|94.54|0.00|0.05|00010378|0|1| +38|2023-10-06T21:55:59.2250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.14|95.23|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:55:59.2250000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T21:55:59.2700000-07:00|10FF0006|Wowobora Gogobora|00010371|81809|81809|10000|10000|46||100.30|87.51|0.00|-3.10|1B04|0|0|01|013D|0|41A00000|| +26|2023-10-06T21:55:59.2700000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:55:59.2700000-07:00|40021585|Zeromus|00010375|36824128||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:55:59.2700000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|98.63|89.80|0.00|-0.31| +37|2023-10-06T21:55:59.3600000-07:00|40021585|Zeromus|00010376|36821363||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:55:59.3600000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.87|97.43|0.00|2.70| +38|2023-10-06T21:55:59.3600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8500|10000|19||99.47|92.41|0.00|0.09|0|0|0||||||||||||||||||| +30|2023-10-06T21:55:59.3600000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T21:55:59.4040000-07:00|10FF0008|Kokosaze Lulusaze|00010371|90216|90216|10000|10000|15||100.14|95.78|-0.02|-3.13|1F05|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T21:55:59.4040000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +39|2023-10-06T21:55:59.4480000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.96|95.10|0.00|-0.70| +21|2023-10-06T21:55:59.4480000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8500|10000|||99.48|92.56|-0.02|0.08|73814|73814|8500|10000|||99.48|92.56|-0.02|0.08|00010379|0|1| +38|2023-10-06T21:55:59.4480000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8500|10000|19||99.48|92.56|-0.02|0.08|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:59.4480000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:55:59.0660000-07:00|Change|10FF000A||||||||| +24|2023-10-06T21:55:59.4940000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DE1|83502|83502|10000|10000|||99.89|98.93|0.00|1.44|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||98.56|90.03|0.00|-1.73| +24|2023-10-06T21:55:59.4940000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|D8E|90216|90216|10000|10000|||100.14|95.67|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||98.56|90.03|0.00|-1.73| +24|2023-10-06T21:55:59.4940000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|D77|129844|129844|10000|10000|||99.16|95.29|0.00|-1.45|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||98.56|90.03|0.00|-1.73| +24|2023-10-06T21:55:59.4940000-07:00|10FF0003|Gegehi Gehi|HoT|777|DC3|73814|73814|8500|10000|||99.53|93.41|0.00|0.10|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||98.56|90.03|0.00|-1.73| +24|2023-10-06T21:55:59.4940000-07:00|10FF000B|Pusu Rosu|HoT|777|D76|79209|79209|9362|10000|||98.56|90.03|0.00|-1.73|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||98.56|90.03|0.00|-1.73| +24|2023-10-06T21:55:59.4940000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|D97|129071|129071|9000|10000|||100.03|89.37|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||98.56|90.03|0.00|-1.73| +24|2023-10-06T21:55:59.4940000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|D94|81541|81541|9400|10000|||99.38|88.58|0.00|3.07|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||98.56|90.03|0.00|-1.73| +21|2023-10-06T21:55:59.4940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|33E80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36821363|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||99.38|88.58|0.00|3.07|0001037A|0|1| +38|2023-10-06T21:55:59.4940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|13||99.16|95.29|0.00|-1.45|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:59.4940000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:55:59.4940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.14|95.67|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:59.4940000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:55:59.4940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|10||100.03|89.37|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:59.4940000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +30|2023-10-06T21:55:59.4940000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:55:59.4940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|27||99.38|88.58|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:59.4940000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:55:59.4940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8500|10000|19||99.53|93.41|0.00|0.10|0|0|0||||||||||||||||||| +26|2023-10-06T21:55:59.4940000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:55:59.4940000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9362|10000|27||98.56|90.03|0.00|-1.73|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:59.4940000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:55:59.4940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.89|98.93|0.00|1.44|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:59.4940000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T21:55:59.5380000-07:00|10FF0007|Kehabiqo Febiqo|00010371|129844|129844|10000|10000|13||99.16|95.29|0.00|-1.45|1506|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T21:55:59.5380000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +21|2023-10-06T21:55:59.5390000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|27D80000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|36821363|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.03|89.37|0.00|-3.14|0001037B|0|1| +38|2023-10-06T21:55:59.5390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|10||100.03|89.37|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:55:59.5390000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:55:59.5390000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:55:59.1560000-07:00|Change|10FF000B||||||||||||||||||||| +38|2023-10-06T21:55:59.6280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|10||100.03|89.37|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:55:59.6720000-07:00|10FF000B|Pusu Rosu|00010371|79209|79209|9362|10000|27||98.53|90.13|0.00|-2.43|1807|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T21:55:59.6720000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +37|2023-10-06T21:55:59.6720000-07:00|40021585|Zeromus|00010377|36819178||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:55:59.6720000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.66|90.02|0.00|-3.07|0|0|0|||| +30|2023-10-06T21:55:59.6720000-07:00|7AC|Summon Order II|0.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T21:55:59.3390000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:55:59.3390000-07:00|Change|10FF0006||||| +261|2023-10-06T21:55:59.3390000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:55:59.8500000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.60|95.71|0.00|-2.82|36819178|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001037C|0|1| +261|2023-10-06T21:55:59.4370000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:55:59.9840000-07:00|40021585|Zeromus|00010378|36799210||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:00.1180000-07:00|40021585|Zeromus|0001037B|36789010||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:00.1180000-07:00|10FF0001|Sesuga Sapisuga|0001037B|129071|129071|9000|10000|10||100.03|89.37|0.00|-3.14|1300|0|0|02|0400076E|03|41F00000|||||| +38|2023-10-06T21:56:00.1180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|10||100.03|89.37|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:00.2090000-07:00|10FF0003|Gegehi Gehi|00010379|73814|73814|8500|10000|19||100.03|98.58|0.00|0.10|2300|0|0|01|020004D6|0|41A00000|| +39|2023-10-06T21:56:00.2090000-07:00|10FF000B|Pusu Rosu|79209|79209|9643|10000|||98.50|90.26|0.00|3.00| +21|2023-10-06T21:56:00.2090000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|350003|42B90000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|36789010|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.30|87.51|0.00|-3.10|0001037D|0|1| +21|2023-10-06T21:56:00.2090000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|352003|59B50000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|36789010|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8500|10000|||100.03|98.58|0.00|0.10|0001037E|0|1| +21|2023-10-06T21:56:00.2090000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31FF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36789010|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9362|10000|||98.50|90.26|0.00|3.00|0001037F|0|1| +38|2023-10-06T21:56:00.2090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|46||100.30|87.51|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:00.2090000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:56:00.2090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8200|10000|19||100.03|98.58|0.00|0.10|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:00.2090000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:56:00.2090000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:56:00.2980000-07:00|40021585|Zeromus|0001037A|36775722||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:00.0940000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:56:00.1850000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T21:56:00.6520000-07:00|10FF0007|Kehabiqo Febiqo|0001037C|129844|129844|10000|10000|1||99.78|95.90|0.00|3.02|1500|0|0|01|0D000000|0|0|| +24|2023-10-06T21:56:00.6520000-07:00|40021585|Zeromus|DoT|0|1ED6|36775722|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9243|10000|||98.50|90.27|0.00|2.64| +36|2023-10-06T21:56:00.6520000-07:00|1234|3| +38|2023-10-06T21:56:00.6520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||99.78|95.90|0.00|3.02|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:00.6520000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:56:00.6520000-07:00|40021585|Zeromus|005A5A00|36767828|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +21|2023-10-06T21:56:00.7870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6D50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36767828|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.03|89.37|0.00|-3.14|00010380|0|1| +31|2023-10-06T21:56:00.7870000-07:00|10FF0001||||| +261|2023-10-06T21:56:00.3790000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T21:56:00.3790000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:56:00.9180000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1DC60000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|36767828|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|-0.06|00010381|0|1| +20|2023-10-06T21:56:00.9620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|98.68|93.84|0.00|-0.06| +37|2023-10-06T21:56:01.0070000-07:00|40021585|Zeromus|0001037E|36744863||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:01.0070000-07:00|10FF0003|Gegehi Gehi|0001037E|73814|73814|8200|10000|19||100.39|102.04|0.00|0.30|2300|0|0|01|040004D3|0|41F00000|| +21|2023-10-06T21:56:01.0070000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|20320000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|36767828|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.78|95.90|0.00|3.03|00010382|0|1| +21|2023-10-06T21:56:01.0070000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36767828|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|00010383|0|1| +38|2023-10-06T21:56:01.0070000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8200|10000|19||100.39|102.04|0.00|0.30|0|0|0||||||||||||||||||| +39|2023-10-06T21:56:01.0950000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9200|10000|||98.68|93.99|0.00|0.30| +39|2023-10-06T21:56:01.1400000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.18|100.45|0.00|-0.03| +39|2023-10-06T21:56:01.1400000-07:00|10FF0003|Gegehi Gehi|73814|73814|8400|10000|||100.39|102.05|0.00|0.97| +21|2023-10-06T21:56:01.1400000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36744863|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8200|10000|||100.39|102.05|0.00|0.97|00010384|0|1| +24|2023-10-06T21:56:01.2310000-07:00|40021585|Zeromus|DoT|A92|50F|36744863|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||100.28|89.56|0.00|0.34| +37|2023-10-06T21:56:01.2310000-07:00|40021585|Zeromus|0001037D|36726487||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:01.2310000-07:00|10FF0006|Wowobora Gogobora|0001037D|81809|81809|10000|10000|46||100.28|89.56|0.00|0.34|1B00|0|0|01|04000A92|0|41700000|| +26|2023-10-06T21:56:01.2310000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:56:01.2310000-07:00|40021585|Zeromus|005A5A00|36726487|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:56:01.2760000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.28|89.56|0.00|0.34| +21|2023-10-06T21:56:01.2760000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|23DE0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|36744863|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.28|89.56|0.00|0.34|00010385|0|1| +37|2023-10-06T21:56:01.3200000-07:00|40021585|Zeromus|00010380|36724738||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:01.3200000-07:00|40021585|Zeromus|00010381|36717116||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:01.3200000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36726487|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.78|95.90|0.00|3.13|00010386|0|1| +38|2023-10-06T21:56:01.3200000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9243|10000|27||98.31|93.54|0.00|0.06|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:01.3200000-07:00|777|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:56:01.4540000-07:00|4002164F||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:56:01.4540000-07:00|4002164F||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:56:01.0460000-07:00|Change|40021649||||| +37|2023-10-06T21:56:01.4980000-07:00|40021585|Zeromus|0001037F|36704317||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:01.5430000-07:00|40021585|Zeromus|00010383|36702099||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:01.0460000-07:00|Add|4002164F||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:01.0460000-07:00|Add|4002164E||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:01.0460000-07:00|Remove|40021610| +261|2023-10-06T21:56:01.0460000-07:00|Remove|40021611| +261|2023-10-06T21:56:01.1670000-07:00|Change|4002164F||| +21|2023-10-06T21:56:01.5890000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EA50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36704317|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|100.45|0.00|-0.03|00010387|0|1| +261|2023-10-06T21:56:01.1670000-07:00|Change|10FF0003||||||||| +03|2023-10-06T21:56:01.1670000-07:00|4002164F|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.08|89.29|0.00|0.09| +37|2023-10-06T21:56:01.6320000-07:00|40021585|Zeromus|00010382|36693857||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:01.6770000-07:00|40021585|Zeromus|00010384|36693828||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:01.6770000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|39B20000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|36702099|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|100.45|0.00|-0.03|00010388|0|1| +20|2023-10-06T21:56:01.7220000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|98.23|94.87|0.00|-0.02| +261|2023-10-06T21:56:01.2660000-07:00|Change|10FF000B||||||||||||||||||||| +39|2023-10-06T21:56:01.8120000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||100.03|89.37|0.00|-3.14| +261|2023-10-06T21:56:01.3600000-07:00|Change|10FF0001||| +37|2023-10-06T21:56:01.8550000-07:00|40021585|Zeromus|00010386|36689201||||||100.00|80.10|0.00|0.00| +41|2023-10-06T21:56:01.8550000-07:00|80034E7C|2909|01|00|00| +261|2023-10-06T21:56:01.3600000-07:00|Change|400215A3||||||||| +00|2023-10-06T21:56:01.0000000-07:00|0839||Zeromus drinks deep of Azdaja's soul...| +261|2023-10-06T21:56:01.3600000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:56:01.9000000-07:00|40021585|Zeromus|00010385|36680019||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:01.9000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|326E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36689201|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||98.68|94.38|0.00|3.05|00010389|0|1| +261|2023-10-06T21:56:01.4630000-07:00|Change|10FF0004||||||||||| +20|2023-10-06T21:56:01.9450000-07:00|40021585|Zeromus|8B38|Sable Thread|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:01.9450000-07:00|400215A3|Zeromus|8AEF|unknown_8aef|10FF0004|Buhojaqe Zijaqe|1B|8AEF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9200|10000|||98.68|94.38|0.00|3.05|44|44|0|10000|||100.00|70.00|0.00|0.00|0001038A|0|1| +261|2023-10-06T21:56:01.4630000-07:00|Change|40021585||||||||||||| +21|2023-10-06T21:56:02.0330000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|26FD0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36680019|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.03|89.37|0.00|-3.14|0001038B|0|1| +38|2023-10-06T21:56:02.0330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|10||100.03|89.37|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:02.0330000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:56:02.0770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9350|10000|27||98.69|94.38|0.00|1.95|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:56:02.1670000-07:00|40021585|Zeromus|DoT|A92|A43|36680019|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9700|10000|||100.03|94.14|0.00|-0.14| +38|2023-10-06T21:56:02.1670000-07:00|40021585|Zeromus|005A5A00|36677392|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +38|2023-10-06T21:56:02.1670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|46||100.03|94.14|0.00|-0.14|0|0|0||||||||||||||||||||||||||||||| +22|2023-10-06T21:56:02.2540000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0008|Kokosaze Lulusaze|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|0001038C|0|8| +22|2023-10-06T21:56:02.2540000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000A|Dukaro Nezikaro|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|0001038C|1|8| +22|2023-10-06T21:56:02.2540000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0003|Gegehi Gehi|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8400|10000|||100.39|101.76|0.00|-3.10|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|0001038C|2|8| +22|2023-10-06T21:56:02.2540000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0007|Kehabiqo Febiqo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.78|95.90|0.00|3.13|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|0001038C|3|8| +22|2023-10-06T21:56:02.2540000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0006|Wowobora Gogobora|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.02|94.75|0.00|-0.11|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|0001038C|4|8| +22|2023-10-06T21:56:02.2540000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000B|Pusu Rosu|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9243|10000|||98.19|95.23|0.00|3.02|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|0001038C|5|8| +22|2023-10-06T21:56:02.2540000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0004|Buhojaqe Zijaqe|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9350|10000|||98.70|94.38|0.00|1.31|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|0001038C|6|8| +22|2023-10-06T21:56:02.2540000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0001|Sesuga Sapisuga|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||100.03|89.37|0.00|-3.14|90216|90216|10000|10000|||100.14|100.24|0.00|-3.08|0001038C|7|8| +37|2023-10-06T21:56:02.3440000-07:00|40021585|Zeromus|00010387|36673643||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:02.3440000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|100.94|0.00|3.14| +37|2023-10-06T21:56:02.4770000-07:00|40021585|Zeromus|00010388|36658873||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:02.4770000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.78|95.90|0.00|3.13| +21|2023-10-06T21:56:02.4770000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36673643|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.02|95.37|0.00|-0.08|0001038D|0|1| +34|2023-10-06T21:56:02.4770000-07:00|4002164F|Carbuncle|4002164F|Carbuncle|01| +261|2023-10-06T21:56:01.9730000-07:00|Change|4002164F||||||||| +21|2023-10-06T21:56:02.5660000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36658873|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9350|10000|||99.41|95.44|0.00|0.91|0001038E|0|1| +20|2023-10-06T21:56:02.6110000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|100.39|101.76|0.00|-3.10| +261|2023-10-06T21:56:02.1850000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T21:56:02.6550000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|33470000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36658873|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9243|10000|||98.19|95.23|0.00|3.02|0001038F|0|1| +37|2023-10-06T21:56:02.6990000-07:00|40021585|Zeromus|00010389|36645963||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:02.2820000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:56:02.7900000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|3C860000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|36645963|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.01|97.39|0.00|-0.01|00010390|0|1| +261|2023-10-06T21:56:02.2820000-07:00|Change|10FF000B||||||||||||||||||||| +26|2023-10-06T21:56:02.8330000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +22|2023-10-06T21:56:02.8330000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9350|10000|||100.12|96.64|0.00|0.66|81541|81541|9350|10000|||100.12|96.64|0.00|0.66|00010391|0|1| +37|2023-10-06T21:56:02.8780000-07:00|10FF0008|Kokosaze Lulusaze|0001038C|90216|90216|10000|10000|15||100.11|99.81|0.00|-3.09|1F00|0|0|01|0400079F|0|41700000|| +26|2023-10-06T21:56:02.8780000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T21:56:02.8780000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|714003|10DF0000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|36645963|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.03|89.37|0.00|-3.14|00010392|0|1| +261|2023-10-06T21:56:02.4660000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:56:03.0120000-07:00|10FF000A|Dukaro Nezikaro|0001038C|83502|83502|10000|10000|16||99.90|100.94|0.00|3.14|1E01|0|0|01|0500079F|0|41700000|| +26|2023-10-06T21:56:03.0120000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|83502|90216| +37|2023-10-06T21:56:03.0120000-07:00|40021585|Zeromus|0001038D|36645819||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:03.0560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36645819|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.03|89.37|0.00|-3.14|00010393|0|1| +31|2023-10-06T21:56:03.0560000-07:00|10FF0001||||| +37|2023-10-06T21:56:03.1000000-07:00|40021585|Zeromus|0001038E|36645668||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:03.1460000-07:00|10FF0003|Gegehi Gehi|0001038C|73814|73814|8400|10000|19||100.39|101.76|0.00|-3.12|2302|0|0|01|0200079F|0|41700000|| +26|2023-10-06T21:56:03.1460000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +21|2023-10-06T21:56:03.1460000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|246A0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|36645819|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|00010394|0|1| +21|2023-10-06T21:56:03.1900000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36645668|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|00010395|0|1| +39|2023-10-06T21:56:03.2350000-07:00|10FF000B|Pusu Rosu|79209|79209|9124|10000|||98.19|95.28|0.00|1.23| +37|2023-10-06T21:56:03.2800000-07:00|10FF0007|Kehabiqo Febiqo|0001038C|129844|129844|10000|10000|1||99.70|94.86|0.00|-3.09|1503|0|0|01|0400079F|0|41700000|| +26|2023-10-06T21:56:03.2800000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +37|2023-10-06T21:56:03.3240000-07:00|40021585|Zeromus|0001038B|36635687||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:03.3240000-07:00|10FF0001|Sesuga Sapisuga|0001038B|129071|129071|9600|10000|10||100.03|89.37|0.00|-3.14|1300|0|0|0| +261|2023-10-06T21:56:02.9250000-07:00|Change|10FF0001||| +261|2023-10-06T21:56:02.9250000-07:00|Change|4002164F||||||||| +37|2023-10-06T21:56:03.4130000-07:00|10FF0006|Wowobora Gogobora|0001038C|81809|81809|9700|10000|46||100.14|100.21|0.00|-1.35|1B04|0|0|01|0600079F|0|41700000|| +26|2023-10-06T21:56:03.4130000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +37|2023-10-06T21:56:03.4130000-07:00|40021585|Zeromus|00010390|36620193||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:03.4580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|ECC|129844|129844|10000|10000|||99.65|94.29|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16| +24|2023-10-06T21:56:03.4580000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|17D7|129071|129071|9600|10000|||100.03|89.44|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16| +24|2023-10-06T21:56:03.4580000-07:00|10FF000B|Pusu Rosu|HoT|798|1833|79209|79209|9124|10000|||98.72|96.52|0.00|0.52|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16| +24|2023-10-06T21:56:03.4580000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|ECF|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16| +24|2023-10-06T21:56:03.4580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|EFA|90216|90216|10000|10000|||100.11|99.81|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16| +24|2023-10-06T21:56:03.4580000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|E92|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16| +24|2023-10-06T21:56:03.4580000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D05|81809|81809|9700|10000|||100.17|100.58|0.00|-0.91|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16| +24|2023-10-06T21:56:03.4580000-07:00|10FF0003|Gegehi Gehi|HoT|798|E73|73814|73814|8400|10000|||100.39|101.76|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9350|10000|||100.33|99.10|0.00|-1.16| +37|2023-10-06T21:56:03.4580000-07:00|10FF0004|Buhojaqe Zijaqe|00010391|81541|81541|9350|10000|27||100.33|99.10|0.00|-1.16|1C00|0|0|02|05000798|0|41700000|||||| +26|2023-10-06T21:56:03.4580000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:56:03.4580000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:56:03.4580000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|318F0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|36620193|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.65|94.29|0.00|-3.13|00010396|0|1| +20|2023-10-06T21:56:03.4580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.33|99.10|0.00|-1.16| +38|2023-10-06T21:56:03.4580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||99.65|94.29|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:03.4580000-07:00|A75|Surging Tempest|37.19|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:56:03.4580000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:56:03.4580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.11|99.81|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:03.4580000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:56:03.4580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|46||100.17|100.58|0.00|-0.91|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:03.4580000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:56:03.4580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9600|10000|10||100.03|89.44|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:03.4580000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:56:03.4580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9350|10000|27||100.33|99.10|0.00|-1.16|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:03.4580000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8400|10000|19||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:03.4580000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:56:03.4580000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9124|10000|27||98.72|96.52|0.00|0.52|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:03.4580000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T21:56:03.4580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.90|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:03.4580000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T21:56:03.5460000-07:00|10FF000B|Pusu Rosu|0001038C|79209|79209|9124|10000|27||98.72|96.52|0.00|0.52|1805|0|0|01|0500079F|0|41700000|| +26|2023-10-06T21:56:03.5460000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|79209|90216| +37|2023-10-06T21:56:03.5460000-07:00|40021585|Zeromus|00010394|36610871||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:03.0370000-07:00|Add|40021651||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:03.5920000-07:00|40021585|Zeromus|00010393|36608004||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:03.5920000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|714003|387C0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|36610871|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9600|10000|||100.00|89.80|0.00|-2.70|00010397|0|1| +37|2023-10-06T21:56:03.6800000-07:00|10FF0004|Buhojaqe Zijaqe|0001038C|81541|81541|9350|10000|27||100.33|99.25|0.00|-1.22|1C06|0|0|01|0900079F|0|41700000|| +26|2023-10-06T21:56:03.6800000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +39|2023-10-06T21:56:03.6800000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:03.6800000-07:00|40021585|Zeromus|DoT|0|1AB1|36610871|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9124|10000|||99.01|97.18|0.00|0.61| +36|2023-10-06T21:56:03.6800000-07:00|1310|3| +38|2023-10-06T21:56:03.6800000-07:00|40021585|Zeromus|005A5A00|36601171|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T21:56:03.7250000-07:00|40021585|Zeromus|00010395|36598986||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:03.3470000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:56:03.3470000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:56:03.8140000-07:00|10FF0001|Sesuga Sapisuga|0001038C|129071|129071|9600|10000|10||99.91|91.08|0.00|-0.46|1307|0|0|01|0700079F|0|41700000|| +26|2023-10-06T21:56:03.8140000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +37|2023-10-06T21:56:03.9020000-07:00|40021585|Zeromus|00010392|36594667|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T21:56:03.9020000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +37|2023-10-06T21:56:03.9480000-07:00|40021585|Zeromus|0001038F|36581540||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:03.4440000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:56:03.9920000-07:00|40021585|Zeromus|00010397|36567080||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:03.9920000-07:00|10FF0001|Sesuga Sapisuga|00010397|129071|129071|10000|10000|10||99.85|91.78|0.00|-0.07|1300|0|0|0| +21|2023-10-06T21:56:04.0370000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|450003|2E080000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8400|10000|||100.39|101.76|0.00|-3.12|00010398|0|1| +38|2023-10-06T21:56:04.0370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8200|10000|19||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:04.0370000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:56:04.0370000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:56:04.0820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9550|10000|||100.33|99.60|0.00|-3.12| +21|2023-10-06T21:56:04.0820000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2DF80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.63|93.95|0.00|3.12|00010399|0|1| +39|2023-10-06T21:56:04.1250000-07:00|10FF0003|Gegehi Gehi|73814|73814|8400|10000|||100.39|101.76|0.00|-3.12| +39|2023-10-06T21:56:04.1710000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.11|99.81|0.00|-3.09| +21|2023-10-06T21:56:04.1710000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|720003|58CC0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|99.81|0.00|-3.09|0001039A|0|1| +20|2023-10-06T21:56:04.1710000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.30|99.35|0.00|0.61| +261|2023-10-06T21:56:03.7250000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:56:04.2590000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|91B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.11|99.81|0.00|-3.13|0001039B|0|1| +21|2023-10-06T21:56:04.2590000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|25970000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.34|100.59|0.00|3.12|0001039C|0|1| +39|2023-10-06T21:56:04.3030000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||100.34|100.59|0.00|3.12| +261|2023-10-06T21:56:03.8400000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:56:04.3940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2F780000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9550|10000|||100.33|99.60|0.00|-3.12|0001039D|0|1| +38|2023-10-06T21:56:04.4820000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9124|10000|27||100.46|99.65|0.00|1.66|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:04.4820000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:56:04.4820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.90|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:04.4820000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:56:04.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||99.63|93.95|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:04.5260000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:56:04.5260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.12|99.81|-0.02|3.07|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:04.5260000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:56:04.5260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|10||99.77|93.00|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:04.5260000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:56:04.5260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9150|10000|27||100.33|99.60|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:04.5260000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:56:04.5260000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8400|10000|19||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:04.5260000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T21:56:04.5710000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|33120000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.77|93.00|0.00|3.07|0001039E|0|1| +38|2023-10-06T21:56:04.5710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|10||99.77|93.00|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:04.5710000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:56:04.7040000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40021585|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.63|93.95|0.00|3.12|0001039F|0|1| +21|2023-10-06T21:56:04.7040000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36567080|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.63|93.95|0.00|3.12|000103A0|0|1| +37|2023-10-06T21:56:04.7520000-07:00|40021585|Zeromus|00010399|36555312||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:04.2620000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:56:04.3610000-07:00|Change|10FF000B||||||||||||||||||| +39|2023-10-06T21:56:04.7950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.78|92.73|0.00|3.07| +37|2023-10-06T21:56:04.8370000-07:00|40021585|Zeromus|00010398|36543528||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:04.8830000-07:00|40021585|Zeromus|0001039C|36533905||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:04.4610000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:56:05.0170000-07:00|40021585|Zeromus|0001039B|36531574||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:56:05.0170000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:56:05.0170000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|752003|1C240000|104|A848000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|36533905|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12|000103A1|0|1| +21|2023-10-06T21:56:05.0170000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|556003|684D0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|36533905|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8400|10000|||100.39|101.76|0.00|-3.12|000103A2|0|1| +38|2023-10-06T21:56:05.0170000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8100|10000|19||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:05.0170000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:56:04.5590000-07:00|Change|10FF0003||| +24|2023-10-06T21:56:05.0610000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1527|129071|129071|10000|10000|||99.78|92.73|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12| +24|2023-10-06T21:56:05.0610000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D26|129844|129844|10000|10000|||99.71|93.95|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12| +24|2023-10-06T21:56:05.0610000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D7A|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12| +24|2023-10-06T21:56:05.0610000-07:00|10FF000B|Pusu Rosu|HoT|798|150F|79209|79209|9124|10000|||100.51|99.75|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12| +24|2023-10-06T21:56:05.0610000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CF9|90216|90216|10000|10000|||100.14|100.08|0.00|0.77|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12| +24|2023-10-06T21:56:05.0610000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1555|81809|81809|9600|10000|||100.37|100.69|-0.02|-1.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12| +24|2023-10-06T21:56:05.0610000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D7A|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12| +24|2023-10-06T21:56:05.0610000-07:00|10FF0003|Gegehi Gehi|HoT|798|D8A|73814|73814|8400|10000|||100.39|101.76|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9150|10000|||100.33|99.60|0.00|-3.12| +38|2023-10-06T21:56:05.0610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||99.71|93.95|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:05.0610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.14|100.08|0.00|0.77|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:05.0610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|46||100.37|100.69|-0.02|-1.08|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:05.0610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|10||99.78|92.73|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:05.0610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9700|10000|27||100.33|99.60|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:05.0610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8100|10000|19||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:56:05.0610000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9124|10000|27||100.51|99.75|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:05.0610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.90|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:05.1040000-07:00|40021585|Zeromus|00010396|36518887||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:05.1040000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31620000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36531574|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9124|10000|||100.51|99.75|0.00|-3.12|000103A3|0|1| +24|2023-10-06T21:56:05.1490000-07:00|40021585|Zeromus|DoT|A92|522|36531574|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9600|10000|||100.38|100.72|0.00|-0.79| +38|2023-10-06T21:56:05.1490000-07:00|40021585|Zeromus|005A5A00|36517573|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:56:05.1490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|46||100.38|100.72|0.00|-0.79|0|0|0||||||||||||||||||||||||||||||| +04|2023-10-06T21:56:04.6740000-07:00|40021649|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||97.38|88.55|0.00|2.64| +261|2023-10-06T21:56:04.6740000-07:00|Remove|40021649| +37|2023-10-06T21:56:05.1950000-07:00|40021585|Zeromus|0001039D|36505421||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:05.2390000-07:00|40021585|Zeromus|000103A0|36502378||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:05.2830000-07:00|10FF0001|Sesuga Sapisuga|1CD9|Passage of Arms|10FF0001|Sesuga Sapisuga|4400640F|4978000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.79|92.60|0.00|3.07|129071|129071|10000|10000|||99.79|92.60|0.00|3.07|000103A4|0|1| +21|2023-10-06T21:56:05.2830000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42710003|31F00000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|36505421|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|000103A5|0|1| +37|2023-10-06T21:56:05.3280000-07:00|40021585|Zeromus|0001039F|36502378|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004A9|0|41200000|| +26|2023-10-06T21:56:05.3280000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40021585|Zeromus|00|40478540|129844| +37|2023-10-06T21:56:05.3280000-07:00|40021585|Zeromus|0001039A|36479646||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:05.3710000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|100.94|0.00|3.14| +21|2023-10-06T21:56:05.3710000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36502378|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|000103A6|0|1| +39|2023-10-06T21:56:05.4610000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.90|94.16|0.00|1.70| +21|2023-10-06T21:56:05.6380000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36479646|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.39|100.82|-0.02|0.10|000103A7|0|1| +21|2023-10-06T21:56:05.7280000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|726003|81A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36479646|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8100|10000|||100.39|101.76|0.00|-3.12|000103A8|0|1| +37|2023-10-06T21:56:05.7730000-07:00|40021585|Zeromus|000103A2|36452945||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:05.3320000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:56:05.8620000-07:00|40021585|Zeromus|0001039E|36439871||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:05.8620000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|24210000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|36479646|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.39|100.82|0.00|0.10|000103A9|0|1| +20|2023-10-06T21:56:05.8620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.26|100.20|0.00|-0.95| +22|2023-10-06T21:56:05.8620000-07:00|10FF000B|Pusu Rosu|6506|Liturgy of the Bell|10FF000B|Pusu Rosu|500000F|A958000|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8724|10000|||100.51|99.75|0.00|-3.12|79209|79209|8724|10000|||100.51|99.75|0.00|-3.12|000103AA|0|1| +261|2023-10-06T21:56:05.3320000-07:00|Change|10FF000B||||||||||||||||||||||| +38|2023-10-06T21:56:05.8620000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8724|10000|27||100.51|99.75|0.00|-0.43|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:05.8620000-07:00|A95|Liturgy of the Bell|20.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|05|79209|79209| +38|2023-10-06T21:56:05.9070000-07:00|40021659||005A5A00|72984|75049|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:56:05.9070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9700|10000|27||100.25|100.34|0.00|-0.88|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:05.9070000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +38|2023-10-06T21:56:05.9070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.14|100.24|0.00|0.04|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:05.9070000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|90216|129071| +38|2023-10-06T21:56:05.9070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|46||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:05.9070000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +38|2023-10-06T21:56:05.9070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.90|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:05.9070000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|83502|129071| +38|2023-10-06T21:56:05.9070000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8724|10000|27||100.51|99.75|0.00|-0.43|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:05.9070000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF000B|Pusu Rosu|00|79209|129071| +38|2023-10-06T21:56:05.9070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||99.95|94.37|-0.01|0.22|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:05.9070000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +38|2023-10-06T21:56:05.9070000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.02|93.68|0.00|-3.14|0|0|0||||||| +26|2023-10-06T21:56:05.9070000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|4002164C|Ruby Carbuncle|00|77430|129071| +38|2023-10-06T21:56:05.9070000-07:00|4002164F|Carbuncle|005A5A00|74223|77698|10000|10000|0||99.69|98.99|0.00|-0.51|0|0|0||||||| +26|2023-10-06T21:56:05.9070000-07:00|30|Well Fed|916.76|10FF0006|Wowobora Gogobora|4002164F|Carbuncle|2964|77698|81809| +26|2023-10-06T21:56:05.9070000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|4002164F|Carbuncle|00|77698|129071| +37|2023-10-06T21:56:05.9070000-07:00|10FF0001|Sesuga Sapisuga|000103A4|129071|129071|10000|10000|10||99.79|92.60|0.00|3.07|1300|0|0|01|02000497|1444|41900000|| +26|2023-10-06T21:56:05.9070000-07:00|497|Passage of Arms|18.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|129071|129071| +37|2023-10-06T21:56:05.9070000-07:00|40021585|Zeromus|000103A5|36427087||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:05.9070000-07:00|40021585|Zeromus|000103A6|36424833||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:05.9070000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16650000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|36439871|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.95|94.37|-0.01|0.22|000103AB|0|1| +38|2023-10-06T21:56:05.9070000-07:00|40021659||005A5A00|72984|75049|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:56:05.9510000-07:00|10FF0008|Kokosaze Lulusaze|B47|Dismantle|40021585|Zeromus|F60E|35C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36424833|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|0.04|000103AC|0|1| +21|2023-10-06T21:56:05.9510000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13CE0F|A748000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.79|92.60|0.00|3.07|129071|129071|10000|10000|||99.79|92.60|0.00|3.07|000103AD|0|1| +38|2023-10-06T21:56:05.9510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|10||99.79|92.60|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:05.9510000-07:00|497|Passage of Arms|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|129071|129071| +26|2023-10-06T21:56:05.9510000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:56:05.9510000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:56:05.9510000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:56:05.4240000-07:00|Add|40021659||||||||||||||||||||||||||||||||||||| +31|2023-10-06T21:56:05.9510000-07:00|10FF0001||||| +03|2023-10-06T21:56:05.4240000-07:00|40021659|Liturgic Bell|00|5A|10FF000B|00||10349|13961|72984|75049|10000|10000|||98.30|104.62|0.00|2.71| +261|2023-10-06T21:56:05.5240000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:56:05.5240000-07:00|Change|40021659||| +261|2023-10-06T21:56:05.5240000-07:00|Change|40021659||| +261|2023-10-06T21:56:05.5240000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:56:06.0410000-07:00|40021585|Zeromus|000103A1|36417629||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:06.0410000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|281C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36424833|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|000103AE|0|1| +21|2023-10-06T21:56:06.0860000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36424833|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8100|10000|||100.39|101.76|0.00|-3.12|000103AF|0|1| +37|2023-10-06T21:56:06.1740000-07:00|40021585|Zeromus|000103A7|36417473||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:06.2190000-07:00|10FF000B|Pusu Rosu|79209|79209|9005|10000|||100.51|99.75|0.00|-0.43| +37|2023-10-06T21:56:06.3980000-07:00|40021585|Zeromus|000103A3|36404831||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:06.4420000-07:00|40021585|Zeromus|000103AB|36399098||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:06.4420000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40021585|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36404831|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.39|100.82|0.00|-3.12|000103B0|0|1| +37|2023-10-06T21:56:06.4860000-07:00|40021585|Zeromus|000103A9|36389849||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:06.4860000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|65700000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.96|94.41|0.00|3.14|129844|129844|10000|10000|||99.96|94.41|0.00|3.14|000103B1|0|1| +37|2023-10-06T21:56:06.5760000-07:00|40021585|Zeromus|000103AC|36389849|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0400035C|0|41200000|| +26|2023-10-06T21:56:06.5760000-07:00|35C|Dismantled|10.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|90216| +37|2023-10-06T21:56:06.6210000-07:00|40021585|Zeromus|000103AF|36389819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:06.6650000-07:00|40021585|Zeromus|000103AE|36379551||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:06.6650000-07:00|40021585|Zeromus|DoT|0|1A8E|36389819|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13| +36|2023-10-06T21:56:06.6650000-07:00|13EC|3| +38|2023-10-06T21:56:06.6650000-07:00|40021585|Zeromus|005A5A00|36372753|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T21:56:06.7090000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +21|2023-10-06T21:56:06.7090000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|722003|8FB10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36389819|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|000103B2|0|1| +20|2023-10-06T21:56:06.7090000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.51|99.75|0.00|-0.43| +21|2023-10-06T21:56:06.7980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2F590000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36372753|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9700|10000|||100.24|100.45|0.00|-3.13|000103B3|0|1| +261|2023-10-06T21:56:06.3800000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:56:06.8880000-07:00|40021585|Zeromus|000103A8|36339563||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:06.9320000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36372753|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|000103B4|0|1| +21|2023-10-06T21:56:06.9320000-07:00|40021585|Zeromus|8B38|Sable Thread|40021585|Zeromus|49|48000|1B|8B388000|0|0|0|0|0|0|0|0|0|0|0|0|36372753|40478540|10000|10000|||100.00|80.10|0.00|0.00|36372753|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103B5|0|1| +261|2023-10-06T21:56:06.3800000-07:00|Change|40021585||||||||||||| +261|2023-10-06T21:56:06.3800000-07:00|Change|40021585||||||||||||| +00|2023-10-06T21:56:06.0000000-07:00|0044|Zeromus|Your flesh shall melt and seethe!| +261|2023-10-06T21:56:06.4770000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:56:07.0220000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B5E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36339563|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.79|92.60|0.00|3.07|000103B6|0|1| +31|2023-10-06T21:56:07.0220000-07:00|10FF0001||||| +37|2023-10-06T21:56:07.0670000-07:00|40021585|Zeromus|000103B0|36339563|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004B3|0|41200000|| +26|2023-10-06T21:56:07.0670000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|81809| +21|2023-10-06T21:56:07.0670000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|427F0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|36339563|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|000103B7|0|1| +38|2023-10-06T21:56:07.0670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|10||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:07.0670000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:56:07.1110000-07:00|10FF0007|Kehabiqo Febiqo|000103B1|155812|155812|10000|10000|1||99.96|94.41|0.00|3.14|1500|0|0|01|07000057|0|41200000|| +26|2023-10-06T21:56:07.1110000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:56:07.1110000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +39|2023-10-06T21:56:07.1110000-07:00|10FF0003|Gegehi Gehi|73814|73814|8300|10000|||100.39|101.76|0.00|-3.12| +38|2023-10-06T21:56:07.1110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|1||99.96|94.41|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:06.5880000-07:00|Change|10FF0003||| +39|2023-10-06T21:56:07.1560000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13| +39|2023-10-06T21:56:07.2890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.39|100.82|0.00|-3.12| +261|2023-10-06T21:56:06.8250000-07:00|Change|10FF0006||||| +21|2023-10-06T21:56:07.3340000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|36339563|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.39|100.82|0.00|-3.12|000103B8|0|1| +38|2023-10-06T21:56:07.3340000-07:00|4002164F|Carbuncle|005A5A00|0|77698|0|10000|0||99.69|98.99|0.00|-0.51|0|0|0|||| +30|2023-10-06T21:56:07.3340000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|4002164F|Carbuncle|00|77698|129071| +261|2023-10-06T21:56:06.8250000-07:00|Change|4002164F||||||||| +38|2023-10-06T21:56:07.3340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|46||100.39|100.82|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:07.3340000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:56:07.3760000-07:00|40021665||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:56:07.3790000-07:00|40021665||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:56:07.4220000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.02|93.68|0.00|-3.14|0|0|0|||||||||| +26|2023-10-06T21:56:07.4220000-07:00|77B|Summon Order|30.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:56:07.4220000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13|000103B9|0|1| +20|2023-10-06T21:56:07.4660000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|100.39|101.76|0.00|-3.12| +22|2023-10-06T21:56:07.5110000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F8A0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.90|94.41|0.00|3.12|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|000103BA|0|8| +22|2023-10-06T21:56:07.5110000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|000103BA|1|8| +22|2023-10-06T21:56:07.5110000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF000B|Pusu Rosu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9005|10000|||100.51|99.75|0.00|-3.12|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|000103BA|2|8| +22|2023-10-06T21:56:07.5110000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|000103BA|3|8| +22|2023-10-06T21:56:07.5110000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|000103BA|4|8| +22|2023-10-06T21:56:07.5110000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9900|10000|||100.39|100.82|0.00|-3.12|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|000103BA|5|8| +22|2023-10-06T21:56:07.5110000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|000103BA|6|8| +22|2023-10-06T21:56:07.5110000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8300|10000|||100.39|101.76|0.00|-3.12|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|000103BA|7|8| +21|2023-10-06T21:56:07.5110000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|18210000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|36339563|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|000103BB|0|1| +37|2023-10-06T21:56:07.5550000-07:00|40021585|Zeromus|000103B6|36336653||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:07.5550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36339563|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|000103BC|0|1| +03|2023-10-06T21:56:07.0550000-07:00|40021665|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||102.20|102.56|0.00|-3.12| +261|2023-10-06T21:56:07.0550000-07:00|Add|40021665||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:07.6000000-07:00|40021585|Zeromus|000103B3|36324532||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:56:07.6000000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750205|A390000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|44|44|0|10000|||100.00|70.00|0.00|0.01|000103BD|0|8| +22|2023-10-06T21:56:07.6000000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750603|63AB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.89|94.41|0.00|3.12|44|44|0|10000|||100.00|70.00|0.00|0.01|000103BD|1|8| +22|2023-10-06T21:56:07.6000000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9005|10000|||100.51|99.75|0.00|-3.12|44|44|0|10000|||100.00|70.00|0.00|0.01|000103BD|2|8| +22|2023-10-06T21:56:07.6000000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.01|000103BD|3|8| +22|2023-10-06T21:56:07.6000000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.01|000103BD|4|8| +22|2023-10-06T21:56:07.6000000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9900|10000|||100.39|100.82|0.00|-3.12|44|44|0|10000|||100.00|70.00|0.00|0.01|000103BD|5|8| +22|2023-10-06T21:56:07.6000000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750603|3070000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.01|000103BD|6|8| +22|2023-10-06T21:56:07.6000000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|3880000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8300|10000|||100.39|101.76|0.00|-3.12|44|44|0|10000|||100.00|70.00|0.00|0.01|000103BD|7|8| +261|2023-10-06T21:56:07.1720000-07:00|Change|40021665||||| +21|2023-10-06T21:56:07.6440000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|413B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36336653|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9005|10000|||100.51|99.75|0.00|-3.12|000103BE|0|1| +261|2023-10-06T21:56:07.1720000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:56:07.6890000-07:00|40021585|Zeromus|000103B4|36322179||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:07.6890000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36336653|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13|000103BF|0|1| +39|2023-10-06T21:56:07.8240000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:07.8680000-07:00|40021585|Zeromus|000103B2|36285394||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:07.3640000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:56:07.9140000-07:00|10FF0001|Sesuga Sapisuga|000103BD|126454|129071|10000|10000|0||99.79|92.60|0.00|3.13|1300|0|0|01|0E000000|0|0|| +37|2023-10-06T21:56:07.9140000-07:00|40021585|Zeromus|000103BB|36279217||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:07.9140000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|1E180000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.87|94.41|0.00|3.11|36322179|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103C0|0|1| +38|2023-10-06T21:56:07.9140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|126454|129071|10000|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:07.9140000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T21:56:07.9570000-07:00|10FF0007|Kehabiqo Febiqo|000103BD|130297|155812|10000|10000|0||99.87|94.41|0.00|3.11|1501|0|0|01|0F000000|0|0|| +38|2023-10-06T21:56:07.9570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|130297|155812|10000|10000|0||99.87|94.41|0.00|3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:07.9570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +37|2023-10-06T21:56:08.0010000-07:00|10FF000B|Pusu Rosu|000103BD|79209|79209|8605|10000|11||100.51|99.75|0.00|-3.12|1802|0|0|0| +261|2023-10-06T21:56:07.5840000-07:00|Change|10FF0004||| +37|2023-10-06T21:56:08.0460000-07:00|10FF0008|Kokosaze Lulusaze|000103BD|90216|90216|10000|10000|1||100.14|100.24|0.00|-3.13|1F03|0|0|0| +37|2023-10-06T21:56:08.0910000-07:00|10FF0004|Buhojaqe Zijaqe|000103BD|81541|81541|9500|10000|12||100.24|100.45|0.00|-3.13|1C04|0|0|0| +37|2023-10-06T21:56:08.0910000-07:00|40021585|Zeromus|000103BC|36277041||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:08.0910000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D5B|126454|129071|10000|10000|||99.79|92.60|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:08.0910000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1931|130297|155812|10000|10000|||99.87|94.41|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:08.0910000-07:00|10FF000B|Pusu Rosu|HoT|798|1502|79209|79209|8605|10000|||100.51|99.75|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:08.0910000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D4A|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:08.0910000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1585|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:08.0910000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D8B|81809|81809|9900|10000|||100.39|100.82|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:08.0910000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D43|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:08.0910000-07:00|10FF0003|Gegehi Gehi|HoT|798|157F|73814|73814|8300|10000|||100.39|101.76|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9500|10000|||100.24|100.45|0.00|-3.13| +21|2023-10-06T21:56:08.0910000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AD50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36279217|40478540|10000|10000|||100.00|80.10|0.00|0.00|130297|155812|10000|10000|||99.87|94.41|0.00|3.11|000103C1|0|1| +38|2023-10-06T21:56:08.0910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|136746|155812|10000|10000|0||99.87|94.41|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:08.0910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:56:08.0910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|1||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:08.0910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:56:08.0910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|46||100.39|100.82|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:08.0910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:56:08.0910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:08.0910000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:56:08.0910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|10000|10000|12||100.24|100.45|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:08.0910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:56:08.0910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8300|10000|19||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:08.0910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:56:08.0910000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8605|10000|11||100.51|99.75|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:08.0910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T21:56:08.0910000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|16||99.90|100.94|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:08.0910000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T21:56:08.1340000-07:00|10FF0006|Wowobora Gogobora|000103BD|81809|81809|9900|10000|30||100.39|100.82|0.00|-3.12|1B05|0|0|0| +37|2023-10-06T21:56:08.1800000-07:00|10FF000A|Dukaro Nezikaro|000103BD|82727|83502|10000|10000|0||99.90|100.94|0.00|3.14|1E06|0|0|01|0C000000|0|0|| +24|2023-10-06T21:56:08.1800000-07:00|40021585|Zeromus|DoT|A92|798|36279217|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9900|10000|||100.39|100.82|0.00|-3.12| +38|2023-10-06T21:56:08.1800000-07:00|40021585|Zeromus|005A5A00|36275097|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:56:08.1800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|30||100.39|100.82|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:08.1800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82727|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:08.1800000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T21:56:07.8160000-07:00|Change|10FF0006||| +37|2023-10-06T21:56:08.2240000-07:00|10FF0003|Gegehi Gehi|000103BD|72910|73814|8300|10000|0||100.39|101.76|0.00|-3.12|2307|0|0|01|05000000|0|0|| +37|2023-10-06T21:56:08.2240000-07:00|40021585|Zeromus|000103BF|36274948||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:08.2240000-07:00|10FF0003|Gegehi Gehi|005A5A23|72910|73814|8300|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:08.2240000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +20|2023-10-06T21:56:08.2680000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.24|100.45|0.00|-3.13| +37|2023-10-06T21:56:08.3580000-07:00|10FF0006|Wowobora Gogobora|000103B8|81809|81809|10000|10000|30||100.39|100.82|0.00|-3.12|1B00|0|0|01|0A000AA4|0|0|| +37|2023-10-06T21:56:08.3580000-07:00|40021585|Zeromus|000103B7|36257925||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:08.3580000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|100.94|0.00|3.14| +21|2023-10-06T21:56:08.3580000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32714003|2B3D0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|36274948|40478540|10000|10000|||100.00|80.10|0.00|0.00|136746|155812|10000|10000|||99.87|94.41|0.00|3.12|000103C2|0|1| +38|2023-10-06T21:56:08.3580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|30||100.39|100.82|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:08.4010000-07:00|10FF0007|Kehabiqo Febiqo|000103BA|136746|155812|10000|10000|0||99.87|94.41|0.00|3.12|1500|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T21:56:08.4010000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|155812|77430| +261|2023-10-06T21:56:08.0540000-07:00|Change|40021665||| +39|2023-10-06T21:56:08.4900000-07:00|10FF0007|Kehabiqo Febiqo|138304|155812|10000|10000|||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:08.5340000-07:00|10FF0001|Sesuga Sapisuga|000103BA|129071|129071|10000|10000|0||99.79|92.60|0.00|3.13|1301|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:56:08.5340000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +21|2023-10-06T21:56:08.5340000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36257925|40478540|10000|10000|||100.00|80.10|0.00|0.00|36257925|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103C3|0|1| +24|2023-10-06T21:56:08.5790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|BC5|136746|155812|10000|10000|||99.87|94.41|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:08.5790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|141317|155812|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:56:08.6240000-07:00|40021585|Zeromus|000103C1|36255152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:08.6680000-07:00|10FF000B|Pusu Rosu|000103BA|79209|79209|8605|10000|11||100.51|99.75|0.00|-3.12|1802|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:56:08.6680000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +24|2023-10-06T21:56:08.6690000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|261B|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||99.79|92.60|0.00|3.13| +38|2023-10-06T21:56:08.6690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:08.7130000-07:00|10FF0007|Kehabiqo Febiqo|000103C0|133613||||||99.87|94.41|0.00|3.13| +21|2023-10-06T21:56:08.7590000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36255152|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|000103C4|0|1| +37|2023-10-06T21:56:08.8040000-07:00|10FF0008|Kokosaze Lulusaze|000103BA|90216|90216|10000|10000|1||100.14|100.24|0.00|-3.13|1F03|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:56:08.8040000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +21|2023-10-06T21:56:08.8920000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|756003|5C8A0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|36255152|40478540|10000|10000|||100.00|80.10|0.00|0.00|72910|73814|8300|10000|||100.39|101.76|0.00|-3.12|000103C5|0|1| +38|2023-10-06T21:56:08.8920000-07:00|10FF0003|Gegehi Gehi|005A5A23|72910|73814|8100|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:08.8920000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:56:08.9370000-07:00|10FF0004|Buhojaqe Zijaqe|000103BA|81541|81541|10000|10000|12||100.24|100.45|0.00|-3.13|1C04|0|0|01|0A00013B|0|41A80000|| +26|2023-10-06T21:56:08.9370000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T21:56:08.9370000-07:00|40021585|Zeromus|000103BE|36238453||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:08.4510000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:56:08.9800000-07:00|40021585|Zeromus|000103C2|36227384||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:09.0690000-07:00|10FF0006|Wowobora Gogobora|000103BA|81809|81809|10000|10000|30||100.39|100.82|0.00|-3.12|1B05|0|0|01|0B00013B|0|41A80000|| +26|2023-10-06T21:56:09.0690000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +261|2023-10-06T21:56:08.5470000-07:00|Change|10FF0004||||||||||||||| +20|2023-10-06T21:56:09.1590000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.51|99.75|0.00|-3.12| +261|2023-10-06T21:56:08.6590000-07:00|Change|400215A2||||||||| +261|2023-10-06T21:56:08.7740000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T21:56:09.2040000-07:00|10FF000A|Dukaro Nezikaro|000103BA|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|1E06|0|0|01|0700013B|0|41A80000|| +26|2023-10-06T21:56:09.2040000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +22|2023-10-06T21:56:09.2040000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750205|44E70000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103C6|0|8| +22|2023-10-06T21:56:09.2040000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|67D60000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|133613|155812|10000|10000|||99.87|94.41|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103C6|1|8| +22|2023-10-06T21:56:09.2040000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750603|C7F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8605|10000|||100.51|99.75|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103C6|2|8| +22|2023-10-06T21:56:09.2040000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|36740000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103C6|3|8| +22|2023-10-06T21:56:09.2040000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|95C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|10000|10000|||100.24|100.45|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103C6|4|8| +22|2023-10-06T21:56:09.2040000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103C6|5|8| +22|2023-10-06T21:56:09.2040000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|37EC0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.01|000103C6|6|8| +22|2023-10-06T21:56:09.2040000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|38D70000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|72910|73814|8100|10000|||100.39|101.76|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103C6|7|8| +21|2023-10-06T21:56:09.2040000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2F5D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36227384|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|10000|10000|||100.24|100.45|0.00|-3.13|000103C7|0|1| +39|2023-10-06T21:56:09.2490000-07:00|10FF000B|Pusu Rosu|79209|79209|8886|10000|||100.51|99.75|0.00|-3.12| +21|2023-10-06T21:56:09.2490000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|32D90000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|36227384|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|000103C8|0|1| +37|2023-10-06T21:56:09.2970000-07:00|40021585|Zeromus|000103C4|36227231||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:09.2970000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|8D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36227384|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|000103C9|0|1| +38|2023-10-06T21:56:09.2970000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9600|10000|12||100.24|100.45|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:09.2970000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +31|2023-10-06T21:56:09.2970000-07:00|10FF0001||||| +37|2023-10-06T21:56:09.3380000-07:00|10FF0003|Gegehi Gehi|000103BA|72910|73814|8100|10000|0||100.39|101.76|0.00|-3.12|2307|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:56:09.3380000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T21:56:09.3380000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.02|93.68|0.00|-2.92|0|0|0||||||| +30|2023-10-06T21:56:09.3380000-07:00|77B|Summon Order|0.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T21:56:09.0040000-07:00|Change|4002164F||| +21|2023-10-06T21:56:09.4270000-07:00|40021665|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|150003|5EDE0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|36227231|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.20|102.56|0.00|-3.12|000103CA|0|1| +21|2023-10-06T21:56:09.4270000-07:00|10FF0007|Kehabiqo Febiqo|1D6B|Rampart|10FF0007|Kehabiqo Febiqo|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|133613|155812|10000|10000|||99.87|94.41|0.00|3.13|133613|155812|10000|10000|||99.87|94.41|0.00|3.13|000103CB|0|1| +37|2023-10-06T21:56:09.5180000-07:00|10FF0001|Sesuga Sapisuga|000103C6|111432||||||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:09.5620000-07:00|10FF0007|Kehabiqo Febiqo|000103C6|107031||||||99.87|94.41|0.00|3.13| +21|2023-10-06T21:56:09.5620000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2F980000|200004|45E18000|0|0|0|0|0|0|0|0|0|0|0|0|36227231|40478540|10000|10000|||100.00|80.10|0.00|0.00|111432|129071|10000|10000|||99.79|92.60|0.00|3.13|000103CC|0|1| +38|2023-10-06T21:56:09.5620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111432|129071|9000|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:09.5620000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:56:09.1230000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:56:09.6070000-07:00|10FF000B|Pusu Rosu|000103C6|76010|79209|8886|10000|0||100.51|99.75|0.00|-3.12|1802|0|0|02|02000A95|04|4182665E|||||| +26|2023-10-06T21:56:09.6070000-07:00|A95|Liturgy of the Bell|16.30|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|04|79209|79209| +21|2023-10-06T21:56:09.6070000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36227231|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|000103CD|0|1| +38|2023-10-06T21:56:09.6070000-07:00|10FF000B|Pusu Rosu|005A5A18|76010|79209|8886|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:09.6070000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +37|2023-10-06T21:56:09.6500000-07:00|10FF0008|Kokosaze Lulusaze|000103C6|76276|90216|10000|10000|0||100.14|100.24|0.00|-3.13|1F03|0|0|01|0A000000|0|0|| +37|2023-10-06T21:56:09.6500000-07:00|40021585|Zeromus|000103C5|36203541||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:56:09.6500000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|30220000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|72910|73814|8100|10000|||100.39|101.76|0.00|-3.12|72984|75049|10000|10000|||98.30|104.62|0.00|2.71|000103CE|0|8| +22|2023-10-06T21:56:09.6500000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|30BA0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|72984|75049|10000|10000|||98.30|104.62|0.00|2.71|000103CE|1|8| +22|2023-10-06T21:56:09.6500000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|2EEA0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|72984|75049|10000|10000|||98.30|104.62|0.00|2.71|000103CE|2|8| +22|2023-10-06T21:56:09.6500000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|30230000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9600|10000|||100.24|100.45|0.00|-3.13|72984|75049|10000|10000|||98.30|104.62|0.00|2.71|000103CE|3|8| +22|2023-10-06T21:56:09.6500000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|2FA80000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|76276|90216|10000|10000|||100.14|100.24|0.00|-3.13|72984|75049|10000|10000|||98.30|104.62|0.00|2.71|000103CE|4|8| +22|2023-10-06T21:56:09.6500000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|2EAD0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|76010|79209|8886|10000|||100.51|99.75|0.00|-3.12|72984|75049|10000|10000|||98.30|104.62|0.00|2.71|000103CE|5|8| +22|2023-10-06T21:56:09.6500000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|3A630000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|107031|155812|10000|10000|||99.87|94.41|0.00|3.13|72984|75049|10000|10000|||98.30|104.62|0.00|2.71|000103CE|6|8| +22|2023-10-06T21:56:09.6500000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|2EB90000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|111432|129071|9000|10000|||99.79|92.60|0.00|3.13|72984|75049|10000|10000|||98.30|104.62|0.00|2.71|000103CE|7|8| +24|2023-10-06T21:56:09.6500000-07:00|40021585|Zeromus|DoT|0|1DB3|36195938|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12| +36|2023-10-06T21:56:09.6500000-07:00|14C8|3| +38|2023-10-06T21:56:09.6500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|76276|90216|10000|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:09.6500000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:56:09.6500000-07:00|40021585|Zeromus|005A5A00|36195938|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:56:09.6940000-07:00|10FF0004|Buhojaqe Zijaqe|000103C6|79145|81541|9600|10000|0||100.24|100.45|0.00|-3.13|1C04|0|0|01|0B000000|0|0|| +39|2023-10-06T21:56:09.6940000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-2.07| +38|2023-10-06T21:56:09.6940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79145|81541|9600|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:09.6940000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:56:09.7370000-07:00|10FF0006|Wowobora Gogobora|000103C6|81809|81809|10000|10000|15||100.39|100.82|0.00|-3.12|1B05|0|0|01|01000000|0|0|| +21|2023-10-06T21:56:09.7370000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|28960000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|107031|155812|10000|10000|||99.87|94.41|0.00|3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-2.07|000103CF|0|1| +21|2023-10-06T21:56:09.7380000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|ACB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36195938|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|000103D0|0|1| +38|2023-10-06T21:56:09.7380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:09.7380000-07:00|A8E|Radiant Aegis|0.00|40021642|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +37|2023-10-06T21:56:09.7830000-07:00|10FF000A|Dukaro Nezikaro|000103C6|69186||||||99.90|100.94|0.00|3.14| +20|2023-10-06T21:56:09.7830000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|100.39|100.82|0.00|-3.12| +21|2023-10-06T21:56:09.7830000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|3B2E0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|36195938|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|000103D1|0|1| +261|2023-10-06T21:56:09.3150000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:56:09.8280000-07:00|10FF0003|Gegehi Gehi|000103C6|58359||||||100.39|101.76|0.00|-3.12| +37|2023-10-06T21:56:09.8280000-07:00|40021585|Zeromus|000103C9|36193678||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:09.8280000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|10130000|104|6018000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|36195938|40478540|10000|10000|||100.00|80.10|0.00|0.00|79145|81541|9600|10000|||100.24|100.45|0.00|-3.13|000103D2|0|1| +38|2023-10-06T21:56:09.8280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79145|81541|9600|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:09.8280000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:56:09.9160000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36193678|40478540|10000|10000|||100.00|80.10|0.00|0.00|36193678|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103D3|0|1| +21|2023-10-06T21:56:09.9160000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|34070000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|36193678|40478540|10000|10000|||100.00|80.10|0.00|0.00|58359|73814|8100|10000|||100.39|101.76|0.00|-3.12|000103D4|0|1| +38|2023-10-06T21:56:09.9160000-07:00|10FF0003|Gegehi Gehi|005A5A23|58359|73814|7800|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:09.9160000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:56:09.9610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111432|129071|9000|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:09.9610000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:56:09.5110000-07:00|Change|10FF0003||| +37|2023-10-06T21:56:10.0040000-07:00|40021585|Zeromus|000103C8|36180661||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:09.6300000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:56:10.0050000-07:00|40021585|Zeromus|000103C7|36168536||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:10.0490000-07:00|10FF0007|Kehabiqo Febiqo|000103CB|107031|155812|10000|10000|0||99.87|94.41|0.00|3.13|1500|0|0|01|090004A7|0|41A00000|| +26|2023-10-06T21:56:10.0490000-07:00|4A7|Rampart|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +37|2023-10-06T21:56:10.0940000-07:00|10FF0003|Gegehi Gehi|000103CE|70681||||||100.39|101.76|0.00|-3.12| +39|2023-10-06T21:56:10.0940000-07:00|10FF0004|Buhojaqe Zijaqe|79960|81541|9800|10000|||100.24|100.45|0.00|-3.13| +21|2023-10-06T21:56:10.0940000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|30400000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36180661|40478540|10000|10000|||100.00|80.10|0.00|0.00|76010|79209|8886|10000|||100.51|99.75|0.00|-3.12|000103D5|0|1| +39|2023-10-06T21:56:10.1380000-07:00|10FF0008|Kokosaze Lulusaze|77178|90216|10000|10000|||100.14|100.24|0.00|-3.13| +39|2023-10-06T21:56:10.1380000-07:00|10FF0003|Gegehi Gehi|71419|73814|8000|10000|||100.39|101.76|0.00|-3.12| +37|2023-10-06T21:56:10.1830000-07:00|40021585|Zeromus|000103D1|36153386||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:09.7500000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:56:10.2290000-07:00|10FF000A|Dukaro Nezikaro|000103CE|81660||||||99.90|100.94|0.00|3.14| +37|2023-10-06T21:56:10.2720000-07:00|40021585|Zeromus|000103D0|36150623||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:10.2730000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12| +21|2023-10-06T21:56:10.2730000-07:00|10FF0001|Sesuga Sapisuga|1D6B|Rampart|10FF0001|Sesuga Sapisuga|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|111432|129071|9000|10000|||99.79|92.60|0.00|3.13|111432|129071|9000|10000|||99.79|92.60|0.00|3.13|000103D6|0|1| +37|2023-10-06T21:56:10.3180000-07:00|40021585|Zeromus|000103CC|36138439||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:10.3180000-07:00|10FF0001|Sesuga Sapisuga|000103CC|129071||||||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:10.3620000-07:00|40021585|Zeromus|000103CD|36134603||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:10.4960000-07:00|10FF0004|Buhojaqe Zijaqe|000103CE|81541||||||100.24|100.45|0.00|-3.13| +37|2023-10-06T21:56:10.5400000-07:00|10FF0007|Kehabiqo Febiqo|000103CF|117421||||||99.87|94.41|0.00|3.13| +22|2023-10-06T21:56:10.5850000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|62770000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||99.79|92.60|0.00|3.13|44|44|0|10000|||100.00|70.00|0.00|0.01|000103D7|0|8| +22|2023-10-06T21:56:10.5850000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|51330000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|107031|155812|10000|10000|||99.87|94.41|0.00|3.13|44|44|0|10000|||100.00|70.00|0.00|0.01|000103D7|1|8| +22|2023-10-06T21:56:10.5850000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750003|32920000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|44|44|0|10000|||100.00|70.00|0.00|0.01|000103D7|2|8| +22|2023-10-06T21:56:10.5850000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|36410000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|77178|90216|10000|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.01|000103D7|3|8| +22|2023-10-06T21:56:10.5850000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|31590000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13|44|44|0|10000|||100.00|70.00|0.00|0.01|000103D7|4|8| +22|2023-10-06T21:56:10.5850000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|0|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|44|44|0|10000|||100.00|70.00|0.00|0.01|000103D7|5|8| +22|2023-10-06T21:56:10.5850000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|37920000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81660|83502|10000|10000|||99.90|100.94|0.00|3.14|44|44|0|10000|||100.00|70.00|0.00|0.01|000103D7|6|8| +22|2023-10-06T21:56:10.5850000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|39040000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|71419|73814|8000|10000|||100.39|101.76|0.00|-3.12|44|44|0|10000|||100.00|70.00|0.00|0.01|000103D7|7|8| +37|2023-10-06T21:56:10.6300000-07:00|10FF0008|Kokosaze Lulusaze|000103CE|89378||||||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:56:10.6750000-07:00|40021585|Zeromus|000103D4|36121284||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:10.6750000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.24|100.45|0.00|-3.13| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|40130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36134603|40478540|10000|10000|||100.00|80.10|0.00|0.00|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|0|9| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|311D0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|1|9| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|31BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77178|90216|10000|10000|||100.14|100.24|0.00|-3.13|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|2|9| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|2FEF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|3|9| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|30E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|4|9| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|200004|4C480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81660|83502|10000|10000|||99.90|100.94|0.00|3.14|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|5|9| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|32DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|71419|73814|8000|10000|||100.39|101.76|0.00|-3.12|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|6|9| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|200004|58CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|117421|155812|10000|10000|||99.87|94.41|0.00|3.13|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|7|9| +22|2023-10-06T21:56:10.7190000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|308F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||99.79|92.60|0.00|3.13|76010|79209|8486|10000|||100.51|99.75|0.00|-3.12|000103D8|8|9| +37|2023-10-06T21:56:10.7660000-07:00|10FF000B|Pusu Rosu|000103CE|79209||||||100.51|99.75|0.00|-3.12| +39|2023-10-06T21:56:10.8100000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||99.79|92.60|0.00|3.13| +21|2023-10-06T21:56:10.8100000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|32EB0000|143E|340000|4|1C248000|11B|2A8000|0|0|0|0|0|0|0|0|36121284|40478540|10000|10000|||100.00|80.10|0.00|0.00|117421|155812|10000|10000|||99.87|94.41|0.00|3.13|000103D9|0|1| +261|2023-10-06T21:56:10.3880000-07:00|Change|10FF0001||| +37|2023-10-06T21:56:10.8530000-07:00|40021585|Zeromus|000103D2|36117169||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:10.8990000-07:00|10FF0007|Kehabiqo Febiqo|000103CE|132368||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:10.8990000-07:00|10FF0001|Sesuga Sapisuga|000103D6|129071|129071|9200|10000|0||99.79|92.60|0.00|3.13|1300|0|0|01|040004A7|0|41A00000|| +26|2023-10-06T21:56:10.8990000-07:00|4A7|Rampart|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:56:10.8990000-07:00|10FF0001|Sesuga Sapisuga|000103D7|103864||||||99.79|92.60|0.00|3.13| +38|2023-10-06T21:56:10.8990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|132368|155812|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:10.8990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|155812|129071| +38|2023-10-06T21:56:10.8990000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.02|93.68|0.00|-0.20|0|0|0|||| +30|2023-10-06T21:56:10.8990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|4002164C|Ruby Carbuncle|00|77430|129071| +38|2023-10-06T21:56:10.8990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|89378|90216|10000|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:10.8990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|90216|129071| +38|2023-10-06T21:56:10.8990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:10.8990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +38|2023-10-06T21:56:10.8990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9800|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:10.8990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +38|2023-10-06T21:56:10.8990000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8486|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:10.8990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF000B|Pusu Rosu|00|79209|129071| +38|2023-10-06T21:56:10.8990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81660|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:10.8990000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|83502|129071| +37|2023-10-06T21:56:10.9440000-07:00|10FF0007|Kehabiqo Febiqo|000103D7|111581||||||99.87|94.41|0.00|3.13| +21|2023-10-06T21:56:10.9440000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1B6B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|117421|155812|10000|10000|||99.87|94.41|0.00|3.13|36121284|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103DA|0|1| +261|2023-10-06T21:56:10.4830000-07:00|Change|10FF0003||| +37|2023-10-06T21:56:10.9870000-07:00|10FF000B|Pusu Rosu|000103D7|66263||||||100.51|99.75|0.00|-3.12| +37|2023-10-06T21:56:11.0330000-07:00|10FF0001|Sesuga Sapisuga|000103CE|115825||||||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:11.0330000-07:00|10FF0008|Kokosaze Lulusaze|000103D7|75489||||||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:56:11.0330000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36117169|40478540|10000|10000|||100.00|80.10|0.00|0.00|71419|73814|8000|10000|||100.39|101.76|0.00|-3.12|000103DB|0|1| +37|2023-10-06T21:56:11.0770000-07:00|10FF0004|Buhojaqe Zijaqe|000103D7|68908||||||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1032|75489|90216|10000|10000|||100.14|100.24|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-0.34| +24|2023-10-06T21:56:11.0780000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D88|115825|129071|9200|10000|||99.79|92.60|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1005|111581|155812|10000|10000|||99.87|94.41|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF000B|Pusu Rosu|HoT|798|CEF|66263|79209|8486|10000|||100.51|99.75|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D14|75489|90216|10000|10000|||100.14|100.24|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D57|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D84|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D1C|81660|83502|10000|10000|||99.90|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF0003|Gegehi Gehi|HoT|798|D75|71419|73814|8000|10000|||100.39|101.76|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:11.0780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F37|81541|81541|9800|10000|||100.24|100.45|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-0.34| +261|2023-10-06T21:56:10.6950000-07:00|Change|10FF0004||||||||||||||| +38|2023-10-06T21:56:11.0780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115682|155812|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:11.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:56:11.0780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|82983|90216|10000|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:11.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:56:11.0780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|15||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:11.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:56:11.0780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|119289|129071|9200|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:11.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:56:11.0780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|76218|81541|9800|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:11.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:56:11.0780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|8000|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:11.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:56:11.0780000-07:00|10FF000B|Pusu Rosu|005A5A18|69574|79209|8486|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:11.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T21:56:11.0780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:11.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T21:56:11.1210000-07:00|10FF0006|Wowobora Gogobora|000103D7|81809|81809|10000|10000|1||100.39|100.82|0.00|-3.12|1B05|0|0|0| +37|2023-10-06T21:56:11.1660000-07:00|10FF000A|Dukaro Nezikaro|000103D7|69276||||||99.90|100.94|0.00|3.14| +24|2023-10-06T21:56:11.1660000-07:00|40021585|Zeromus|DoT|A92|4EA|36117169|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12| +24|2023-10-06T21:56:11.1660000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9C9|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-0.34| +38|2023-10-06T21:56:11.1660000-07:00|40021585|Zeromus|005A5A00|36115911|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:56:11.1660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|1||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +04|2023-10-06T21:56:10.6950000-07:00|4002164F|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.69|98.99|0.00|-0.51| +261|2023-10-06T21:56:10.6950000-07:00|Remove|4002164F| +37|2023-10-06T21:56:11.2100000-07:00|10FF0003|Gegehi Gehi|000103D7|59218||||||100.39|101.76|0.00|-3.12| +21|2023-10-06T21:56:11.3000000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36115911|40478540|10000|10000|||100.00|80.10|0.00|0.00|36115911|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103DC|0|1| +39|2023-10-06T21:56:11.3440000-07:00|10FF000A|Dukaro Nezikaro|70111|83502|10000|10000|||99.90|100.94|0.00|3.14| +37|2023-10-06T21:56:11.3890000-07:00|40021585|Zeromus|000103CA|36091625||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:11.3890000-07:00|40021585|Zeromus|000103D5|36079273||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:11.3890000-07:00|40021585|Zeromus|000103D8|36062870||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:11.3890000-07:00|10FF0003|Gegehi Gehi|HoT|0|9F6|59218|73814|8000|10000|||100.39|101.76|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|76218|81541|9800|10000|||100.24|100.45|0.00|-3.13| +38|2023-10-06T21:56:11.3890000-07:00|10FF0003|Gegehi Gehi|005A5A23|61768|73814|8000|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:56:11.4340000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|96A|70111|83502|10000|10000|||99.90|100.94|0.00|3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-1.21| +38|2023-10-06T21:56:11.4340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|72521|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:56:11.4790000-07:00|10FF0007|Kehabiqo Febiqo|117240|155812|10000|10000|||99.87|94.41|0.00|3.13| +24|2023-10-06T21:56:11.4790000-07:00|10FF000B|Pusu Rosu|HoT|0|F69|69574|79209|8486|10000|||100.51|99.75|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-1.21| +21|2023-10-06T21:56:11.4790000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36062870|40478540|10000|10000|||100.00|80.10|0.00|0.00|115682|155812|10000|10000|||99.87|94.41|0.00|3.13|000103DD|0|1| +38|2023-10-06T21:56:11.4790000-07:00|10FF000B|Pusu Rosu|005A5A18|73519|79209|8486|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:56:11.5240000-07:00|10FF000B|Pusu Rosu|000103D8|79209|79209|8986|10000|0||100.51|99.75|0.00|-3.12|1801|0|0|0| +261|2023-10-06T21:56:11.1490000-07:00|Change|10FF000B||| +37|2023-10-06T21:56:11.5690000-07:00|40021585|Zeromus|000103DB|36062842||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:11.5690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|12B9|117240|155812|10000|10000|||99.87|94.41|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|117240|155812|10000|10000|||99.87|94.41|0.00|3.13| +21|2023-10-06T21:56:11.5690000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36062870|40478540|10000|10000|||100.00|80.10|0.00|0.00|119289|129071|9200|10000|||99.79|92.60|0.00|3.13|000103DE|0|1| +38|2023-10-06T21:56:11.5690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122033|155812|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +31|2023-10-06T21:56:11.5690000-07:00|10FF0001||||| +21|2023-10-06T21:56:11.6140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|304D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|36062842|40478540|10000|10000|||100.00|80.10|0.00|0.00|76218|81541|9800|10000|||100.24|100.45|0.00|-3.13|000103DF|0|1| +20|2023-10-06T21:56:11.6140000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.51|99.75|0.00|-3.12| +37|2023-10-06T21:56:11.6580000-07:00|10FF0008|Kokosaze Lulusaze|000103D8|90216||||||100.14|100.24|0.00|-3.13| +24|2023-10-06T21:56:11.6580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|366C|119289|129071|9200|10000|||99.79|92.60|0.00|3.13|10FF0001|Sesuga Sapisuga|0|119289|129071|9200|10000|||99.79|92.60|0.00|3.13| +38|2023-10-06T21:56:11.6580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:11.7470000-07:00|10FF0007|Kehabiqo Febiqo|000103DA|115014||||||99.87|94.41|0.00|3.13| +21|2023-10-06T21:56:11.7470000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|37AB0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|36062842|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|000103E0|0|1| +37|2023-10-06T21:56:11.7910000-07:00|10FF0004|Buhojaqe Zijaqe|000103D8|81541||||||100.24|100.45|0.00|-3.13| +39|2023-10-06T21:56:11.8810000-07:00|40021659|Liturgic Bell|75049|75049|10000|10000|||98.30|104.62|0.00|2.71| +21|2023-10-06T21:56:11.9260000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36062842|40478540|10000|10000|||100.00|80.10|0.00|0.00|72521|83502|10000|10000|||99.90|100.94|0.00|3.14|000103E1|0|1| +22|2023-10-06T21:56:11.9710000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|4BFE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||99.79|92.60|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103E2|0|8| +22|2023-10-06T21:56:11.9710000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|61A40000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|115014|155812|10000|10000|||99.87|94.41|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103E2|1|8| +22|2023-10-06T21:56:11.9710000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750003|39E60000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8986|10000|||100.51|99.75|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103E2|2|8| +22|2023-10-06T21:56:11.9710000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|40200000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103E2|3|8| +22|2023-10-06T21:56:11.9710000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|380D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9400|10000|||100.24|100.45|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103E2|4|8| +22|2023-10-06T21:56:11.9710000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|37D20000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103E2|5|8| +22|2023-10-06T21:56:11.9710000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|40D00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|72521|83502|10000|10000|||99.90|100.94|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.01|000103E2|6|8| +22|2023-10-06T21:56:11.9710000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|3D5D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|61768|73814|8000|10000|||100.39|101.76|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103E2|7|8| +261|2023-10-06T21:56:11.6220000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:56:12.0170000-07:00|40021585|Zeromus|000103DD|36059789||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:12.0170000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|41120000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|36062842|40478540|10000|10000|||100.00|80.10|0.00|0.00|72521|83502|10000|10000|||99.90|100.94|0.00|3.14|000103E3|0|1| +37|2023-10-06T21:56:12.0600000-07:00|10FF000A|Dukaro Nezikaro|000103D8|83502||||||99.90|100.94|0.00|3.14| +21|2023-10-06T21:56:12.0600000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|150003|54D80000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|36062842|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.39|100.82|0.00|-3.12|000103E4|0|1| +37|2023-10-06T21:56:12.1030000-07:00|40021585|Zeromus|000103DE|36058001||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:11.6220000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:56:11.6220000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T21:56:12.1930000-07:00|10FF0003|Gegehi Gehi|000103D8|73814||||||100.39|101.76|0.00|-3.12| +21|2023-10-06T21:56:12.1930000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|714003|198C0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|36058001|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||99.79|92.60|0.00|3.13|000103E5|0|1| +39|2023-10-06T21:56:12.2380000-07:00|10FF000B|Pusu Rosu|79209|79209|9267|10000|||100.51|99.75|0.00|-3.12| +37|2023-10-06T21:56:12.2820000-07:00|10FF0001|Sesuga Sapisuga|000103E2|109617||||||99.79|92.60|0.00|3.13| +21|2023-10-06T21:56:12.2820000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|11680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36058001|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|000103E6|0|1| +37|2023-10-06T21:56:12.3270000-07:00|40021585|Zeromus|000103D9|36044966||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:12.3270000-07:00|10FF0007|Kehabiqo Febiqo|000103D9|122218||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:12.3270000-07:00|10FF0007|Kehabiqo Febiqo|000103E2|97222||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:12.3270000-07:00|10FF0007|Kehabiqo Febiqo|000103D8|119956||||||99.87|94.41|0.00|3.13| +20|2023-10-06T21:56:12.3270000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|100.39|101.76|0.00|-3.12| +37|2023-10-06T21:56:12.3700000-07:00|10FF000B|Pusu Rosu|000103E2|64387|79209|9267|10000|0||100.51|99.75|0.00|-3.12|1802|0|0|01|02000A95|03|41588F54|| +26|2023-10-06T21:56:12.3700000-07:00|A95|Liturgy of the Bell|13.53|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|03|79209|79209| +38|2023-10-06T21:56:12.3710000-07:00|10FF000B|Pusu Rosu|005A5A18|64387|79209|9267|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:56:12.4140000-07:00|10FF0008|Kokosaze Lulusaze|000103E2|73800||||||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:56:12.4140000-07:00|40021585|Zeromus|000103DF|36032601||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:56:12.4140000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|2F1F0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|8000|10000|||100.39|101.76|0.00|-3.12|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103E7|0|8| +22|2023-10-06T21:56:12.4140000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|30820000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103E7|1|8| +22|2023-10-06T21:56:12.4140000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|2E760000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.39|100.82|0.00|-3.12|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103E7|2|8| +22|2023-10-06T21:56:12.4140000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|2FA40000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9400|10000|||100.24|100.45|0.00|-3.13|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103E7|3|8| +22|2023-10-06T21:56:12.4140000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|2FFB0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103E7|4|8| +22|2023-10-06T21:56:12.4140000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|30860000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9267|10000|||100.51|99.75|0.00|-3.12|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103E7|5|8| +22|2023-10-06T21:56:12.4140000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|200004|59D40000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|115014|155812|10000|10000|||99.87|94.41|0.00|3.13|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103E7|6|8| +22|2023-10-06T21:56:12.4140000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|30BE0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|109617|129071|9200|10000|||99.79|92.60|0.00|3.13|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103E7|7|8| +37|2023-10-06T21:56:12.4590000-07:00|10FF0004|Buhojaqe Zijaqe|000103E2|67192||||||100.24|100.45|0.00|-3.13| +37|2023-10-06T21:56:12.4590000-07:00|10FF0001|Sesuga Sapisuga|000103D8|122048||||||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:12.4590000-07:00|40021585|Zeromus|000103E1|36030484||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:12.5040000-07:00|10FF0006|Wowobora Gogobora|000103E2|67519|81809|9700|10000|0||100.39|100.82|0.00|-3.12|1B05|0|0|01|09000000|0|0|| +38|2023-10-06T21:56:12.5040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|67519|81809|9700|10000|0||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:12.5040000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +261|2023-10-06T21:56:12.0880000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T21:56:12.0880000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:56:12.5480000-07:00|40021585|Zeromus|000103E0|36016233||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:12.5480000-07:00|10FF000A|Dukaro Nezikaro|000103E2|66910||||||99.90|100.94|0.00|3.14| +37|2023-10-06T21:56:12.5480000-07:00|40021585|Zeromus|000103E3|35999575||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:12.5480000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31B70000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|36030484|40478540|10000|10000|||100.00|80.10|0.00|0.00|64387|79209|9267|10000|||100.51|99.75|0.00|-3.12|000103E8|0|1| +37|2023-10-06T21:56:12.5920000-07:00|10FF0003|Gegehi Gehi|000103E2|58105||||||100.39|101.76|0.00|-3.12| +21|2023-10-06T21:56:12.6820000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36030484|40478540|10000|10000|||100.00|80.10|0.00|0.00|36030484|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103E9|0|1| +39|2023-10-06T21:56:12.6820000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:12.6820000-07:00|40021585|Zeromus|DoT|0|2258|36030484|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|67519|81809|9700|10000|||100.39|100.82|0.00|-3.12| +36|2023-10-06T21:56:12.6820000-07:00|15A4|3| +38|2023-10-06T21:56:12.6820000-07:00|40021585|Zeromus|005A5A00|35990783|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:56:12.7260000-07:00|40021585|Zeromus|000103E4|35969063||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:12.7260000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|100.39|100.82|0.00|-3.12| +37|2023-10-06T21:56:12.8150000-07:00|40021585|Zeromus|000103E5|35962523||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:12.8150000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35990783|40478540|10000|10000|||100.00|80.10|0.00|0.00|67192|81541|9400|10000|||100.24|100.45|0.00|-3.13|000103EA|0|1| +37|2023-10-06T21:56:12.8610000-07:00|10FF0003|Gegehi Gehi|000103E7|70168||||||100.39|101.76|0.00|-3.12| +261|2023-10-06T21:56:12.4800000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T21:56:12.9940000-07:00|10FF000A|Dukaro Nezikaro|000103E7|79328||||||99.90|100.94|0.00|3.14| +37|2023-10-06T21:56:13.0390000-07:00|40021585|Zeromus|000103E6|35958067||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:13.0840000-07:00|10FF0004|Buhojaqe Zijaqe|68007|81541|9600|10000|||100.24|100.45|0.00|-3.13| +20|2023-10-06T21:56:13.0840000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.24|100.45|0.00|-3.13| +37|2023-10-06T21:56:13.1280000-07:00|10FF0006|Wowobora Gogobora|000103E7|79413||||||100.39|100.82|0.00|-3.12| +39|2023-10-06T21:56:13.1290000-07:00|10FF0003|Gegehi Gehi|70906|73814|8200|10000|||100.39|101.76|0.00|-3.12| +261|2023-10-06T21:56:12.6890000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T21:56:13.1730000-07:00|10FF0008|Kokosaze Lulusaze|74702|90216|10000|10000|||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:56:13.2620000-07:00|10FF0004|Buhojaqe Zijaqe|000103E7|80203||||||100.24|100.45|0.00|-3.13| +21|2023-10-06T21:56:13.2620000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|714003|1C0B0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|35958067|40478540|10000|10000|||100.00|80.10|0.00|0.00|119956|155812|10000|10000|||99.87|94.41|0.00|3.13|000103EB|0|1| +39|2023-10-06T21:56:13.3080000-07:00|10FF0006|Wowobora Gogobora|80231|81809|9900|10000|||100.39|100.82|0.00|-3.12| +37|2023-10-06T21:56:13.3520000-07:00|40021585|Zeromus|000103EA|35957911||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:56:13.3520000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|4DF00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|122048|129071|9200|10000|||99.79|92.60|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103EC|0|8| +22|2023-10-06T21:56:13.3520000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|5E3B0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|119956|155812|10000|10000|||99.87|94.41|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103EC|1|8| +22|2023-10-06T21:56:13.3520000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750003|3C4B0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|64387|79209|8867|10000|||100.51|99.75|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103EC|2|8| +22|2023-10-06T21:56:13.3520000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|401C0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|74702|90216|10000|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103EC|3|8| +22|2023-10-06T21:56:13.3520000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|390F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80203|81541|9600|10000|||100.24|100.45|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|0.01|000103EC|4|8| +22|2023-10-06T21:56:13.3520000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|3DD90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|80231|81809|9900|10000|||100.39|100.82|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103EC|5|8| +22|2023-10-06T21:56:13.3520000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|43840000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79328|83502|10000|10000|||99.90|100.94|0.00|3.14|44|44|0|10000|||100.00|65.00|0.00|0.01|000103EC|6|8| +22|2023-10-06T21:56:13.3520000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|3D270000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|70906|73814|8200|10000|||100.39|101.76|0.00|-3.12|44|44|0|10000|||100.00|65.00|0.00|0.01|000103EC|7|8| +37|2023-10-06T21:56:13.3960000-07:00|10FF0008|Kokosaze Lulusaze|000103E7|86985||||||100.14|100.24|0.00|-3.13| +261|2023-10-06T21:56:13.0290000-07:00|Change|40021665||||| +38|2023-10-06T21:56:13.4860000-07:00|400216A0||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:56:13.4860000-07:00|400216A0||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:56:13.5300000-07:00|10FF000B|Pusu Rosu|000103E7|76809||||||100.51|99.75|0.00|-3.12| +261|2023-10-06T21:56:13.1510000-07:00|Change|10FF0003||||| +21|2023-10-06T21:56:13.5750000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|18EE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|119956|155812|10000|10000|||99.87|94.41|0.00|3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-1.88|000103ED|0|1| +03|2023-10-06T21:56:13.1510000-07:00|400216A0|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.37|99.08|0.00|0.02| +261|2023-10-06T21:56:13.1510000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:56:13.1510000-07:00|Add|400216A0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:13.1510000-07:00|Change|400216A0||| +37|2023-10-06T21:56:13.6650000-07:00|10FF0007|Kehabiqo Febiqo|000103E7|142952||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:13.6650000-07:00|10FF0001|Sesuga Sapisuga|000103EC|102096||||||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:13.7090000-07:00|10FF0007|Kehabiqo Febiqo|000103EC|118829||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:13.7540000-07:00|10FF000B|Pusu Rosu|000103EC|61374||||||100.51|99.75|0.00|-3.12| +21|2023-10-06T21:56:13.7540000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|750003|2C240000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|35957911|40478540|10000|10000|||100.00|80.10|0.00|0.00|70906|73814|8200|10000|||100.39|101.76|0.00|-3.12|000103EE|0|1| +38|2023-10-06T21:56:13.7540000-07:00|10FF0003|Gegehi Gehi|005A5A23|70906|73814|8000|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:13.7540000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:56:13.7990000-07:00|40021585|Zeromus|000103EB|35950732||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:13.7990000-07:00|10FF0001|Sesuga Sapisuga|000103E7|114574||||||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:13.7990000-07:00|10FF0008|Kokosaze Lulusaze|000103EC|70573||||||100.14|100.24|0.00|-3.13| +39|2023-10-06T21:56:13.7990000-07:00|10FF0001|Sesuga Sapisuga|115864|129071|9400|10000|||99.79|92.60|0.00|3.13| +261|2023-10-06T21:56:13.3540000-07:00|Change|10FF0001||| +37|2023-10-06T21:56:13.8440000-07:00|10FF0004|Buhojaqe Zijaqe|000103EC|65596||||||100.24|100.45|0.00|-3.13| +37|2023-10-06T21:56:13.8440000-07:00|40021585|Zeromus|000103E8|35938005||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:13.8440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|70A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35957911|40478540|10000|10000|||100.00|80.10|0.00|0.00|102096|129071|9200|10000|||99.79|92.60|0.00|3.13|000103EF|0|1| +31|2023-10-06T21:56:13.8440000-07:00|10FF0001||||| +37|2023-10-06T21:56:13.8870000-07:00|10FF0006|Wowobora Gogobora|000103EC|64398||||||100.39|100.82|0.00|-3.12| +37|2023-10-06T21:56:13.9310000-07:00|10FF000A|Dukaro Nezikaro|000103EC|62044||||||99.90|100.94|0.00|3.14| +261|2023-10-06T21:56:13.4470000-07:00|Change|10FF0006||||| +37|2023-10-06T21:56:13.9750000-07:00|10FF0003|Gegehi Gehi|000103EC|55251||||||100.39|101.76|0.00|-3.12| +21|2023-10-06T21:56:13.9770000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1BDE0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|118829|155812|10000|10000|||99.87|94.41|0.00|3.13|35938005|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103F0|0|1| +38|2023-10-06T21:56:13.9770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|115864|129071|9400|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:13.9770000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:56:14.0200000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2FD70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35938005|40478540|10000|10000|||100.00|80.10|0.00|0.00|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13|000103F1|0|1| +21|2023-10-06T21:56:14.0660000-07:00|40021585|Zeromus|8B3A|Sable Thread|40021585|Zeromus|49|8000|1B|8B3A8000|0|0|0|0|0|0|0|0|0|0|0|0|35938005|40478540|10000|10000|||100.00|80.10|0.00|0.00|35938005|40478540|10000|10000|||100.00|80.10|0.00|0.00|000103F2|0|1| +24|2023-10-06T21:56:14.0660000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|F4A|70573|90216|10000|10000|||100.14|100.24|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-0.54| +24|2023-10-06T21:56:14.0660000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CF8|115864|129071|9400|10000|||99.79|92.60|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:14.0660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|19C7|118829|155812|10000|10000|||99.87|94.41|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|HoT|798|D74|61374|79209|8867|10000|||100.51|99.75|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:14.0660000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D38|70573|90216|10000|10000|||100.14|100.24|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:14.0660000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D66|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:14.0660000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CE4|64398|81809|9900|10000|||100.39|100.82|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:14.0660000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D51|62044|83502|10000|10000|||99.90|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:14.0660000-07:00|10FF0003|Gegehi Gehi|HoT|798|1617|55251|73814|8000|10000|||100.39|101.76|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:14.0660000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|97C|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-0.54| +22|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|35990000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|61374|79209|8867|10000|||100.51|99.75|0.00|-3.12|61374|79209|8867|10000|||100.51|99.75|0.00|-3.12|000103F3|0|8| +22|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|200004|53640000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|70573|90216|10000|10000|||100.14|100.24|0.00|-3.13|61374|79209|8867|10000|||100.51|99.75|0.00|-3.12|000103F3|1|8| +22|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|351F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|65596|81541|9600|10000|||100.24|100.45|0.00|-3.13|61374|79209|8867|10000|||100.51|99.75|0.00|-3.12|000103F3|2|8| +22|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|36080000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|64398|81809|9900|10000|||100.39|100.82|0.00|-3.12|61374|79209|8867|10000|||100.51|99.75|0.00|-3.12|000103F3|3|8| +22|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|35080000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|62044|83502|10000|10000|||99.90|100.94|0.00|3.14|61374|79209|8867|10000|||100.51|99.75|0.00|-3.12|000103F3|4|8| +22|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|37BD0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|55251|73814|8000|10000|||100.39|101.76|0.00|-3.12|61374|79209|8867|10000|||100.51|99.75|0.00|-3.12|000103F3|5|8| +22|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|42FF0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|125428|155812|10000|10000|||99.87|94.41|0.00|3.13|64818|79209|8867|10000|||100.51|99.75|0.00|-3.12|000103F3|6|8| +22|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|34C80000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|119184|129071|9400|10000|||99.79|92.60|0.00|3.13|64818|79209|8867|10000|||100.51|99.75|0.00|-3.12|000103F3|7|8| +38|2023-10-06T21:56:14.0660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125428|155812|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:14.0660000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:56:14.0660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77871|90216|10000|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:14.0660000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:56:14.0660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|67698|81809|9900|10000|0||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:14.0660000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:56:14.0660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|119184|129071|9400|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:14.0660000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:56:14.0660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71454|81541|9200|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:14.0660000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:56:14.0660000-07:00|10FF0003|Gegehi Gehi|005A5A23|60906|73814|8000|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:14.0660000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:56:14.0660000-07:00|10FF000B|Pusu Rosu|005A5A18|64818|79209|8867|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:14.0660000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T21:56:14.0660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65453|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:14.0660000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +21|2023-10-06T21:56:14.1100000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35938005|40478540|10000|10000|||100.00|80.10|0.00|0.00|65453|83502|10000|10000|||99.90|100.94|0.00|3.14|000103F4|0|1| +24|2023-10-06T21:56:14.1540000-07:00|40021585|Zeromus|DoT|A92|670|35938005|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|67698|81809|9900|10000|||100.39|100.82|0.00|-3.12| +24|2023-10-06T21:56:14.1540000-07:00|10FF0006|Wowobora Gogobora|HoT|0|FA7|67698|81809|9900|10000|||100.39|100.82|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-0.26| +38|2023-10-06T21:56:14.1540000-07:00|40021585|Zeromus|005A5A00|35936357|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:56:14.1540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71705|81809|10000|10000|0||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:13.7490000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:56:14.2430000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3B040000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|35936357|40478540|10000|10000|||100.00|80.10|0.00|0.00|77871|90216|10000|10000|||100.14|100.24|0.00|-3.13|000103F5|0|1| +21|2023-10-06T21:56:14.2870000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1F3A0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|35936357|40478540|10000|10000|||100.00|80.10|0.00|0.00|65453|83502|10000|10000|||99.90|100.94|0.00|3.14|000103F6|0|1| +39|2023-10-06T21:56:14.3320000-07:00|10FF000A|Dukaro Nezikaro|66288|83502|10000|10000|||99.90|100.94|0.00|3.14| +37|2023-10-06T21:56:14.3760000-07:00|10FF0007|Kehabiqo Febiqo|000103ED|131810||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:14.3770000-07:00|40021585|Zeromus|000103EF|35934555||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:14.3770000-07:00|10FF0003|Gegehi Gehi|HoT|0|9B6|60906|73814|8000|10000|||100.39|101.76|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|71454|81541|9200|10000|||100.24|100.45|0.00|-3.13| +38|2023-10-06T21:56:14.3770000-07:00|10FF0003|Gegehi Gehi|005A5A23|63392|73814|8000|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:56:14.4230000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|94B|65453|83502|10000|10000|||99.90|100.94|0.00|3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-0.20| +38|2023-10-06T21:56:14.4230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|68667|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:56:14.4660000-07:00|10FF0007|Kehabiqo Febiqo|133368|155812|10000|10000|||99.87|94.41|0.00|3.13| +24|2023-10-06T21:56:14.4660000-07:00|10FF000B|Pusu Rosu|HoT|0|A05|64818|79209|8867|10000|||100.51|99.75|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-0.20| +38|2023-10-06T21:56:14.4660000-07:00|10FF000B|Pusu Rosu|005A5A18|67383|79209|8867|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:56:14.5100000-07:00|40021585|Zeromus|000103EE|35923255||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:56:14.5100000-07:00|400216A0|Carbuncle|400216A0|Carbuncle|01| +261|2023-10-06T21:56:14.0980000-07:00|Change|400216A0||| +24|2023-10-06T21:56:14.5550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1368|133368|155812|10000|10000|||99.87|94.41|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|133368|155812|10000|10000|||99.87|94.41|0.00|3.13| +38|2023-10-06T21:56:14.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|138336|155812|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:14.0980000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:56:14.6450000-07:00|10FF000B|Pusu Rosu|000103F3|79209||||||100.51|99.75|0.00|-3.12| +37|2023-10-06T21:56:14.6450000-07:00|40021585|Zeromus|000103F4|35920501||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:14.6450000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2203|119184|129071|9400|10000|||99.79|92.60|0.00|3.13|10FF0001|Sesuga Sapisuga|0|119184|129071|9400|10000|||99.79|92.60|0.00|3.13| +38|2023-10-06T21:56:14.6450000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.02|93.68|0.00|-0.20|0|0|0||||||| +26|2023-10-06T21:56:14.6450000-07:00|7AE|Summon Order IV|30.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:56:14.6450000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|71454|81541|9200|10000|||100.24|100.45|0.00|-3.13|71454|81541|9200|10000|||100.24|100.45|0.00|-3.13|000103F7|0|1| +38|2023-10-06T21:56:14.6450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127891|129071|9400|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:14.6890000-07:00|40021585|Zeromus|000103F6|35912507||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:14.6890000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1D490000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|35923255|40478540|10000|10000|||100.00|80.10|0.00|0.00|119184|129071|9400|10000|||99.79|92.60|0.00|3.13|000103F8|0|1| +22|2023-10-06T21:56:14.7340000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|2DC90000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|138336|155812|10000|10000|||99.87|94.41|0.00|3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-0.25|000103F9|0|8| +22|2023-10-06T21:56:14.7340000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|200004|3B450000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|127891|129071|9400|10000|||99.79|92.60|0.00|3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-0.25|000103F9|1|8| +22|2023-10-06T21:56:14.7340000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF000B|Pusu Rosu|4|240F0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8867|10000|||100.51|99.75|0.00|-3.12|73956|77430|10000|10000|||100.02|93.68|0.00|-0.25|000103F9|2|8| +22|2023-10-06T21:56:14.7340000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|242B0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|77871|90216|10000|10000|||100.14|100.24|0.00|-3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-0.25|000103F9|3|8| +22|2023-10-06T21:56:14.7340000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|24A50000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|71454|81541|9200|10000|||100.24|100.45|0.00|-3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-0.25|000103F9|4|8| +22|2023-10-06T21:56:14.7340000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|25BC0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|71705|81809|10000|10000|||100.39|100.82|0.00|-3.12|73956|77430|10000|10000|||100.02|93.68|0.00|-0.25|000103F9|5|8| +22|2023-10-06T21:56:14.7340000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|200004|3B830000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|68667|83502|10000|10000|||99.90|100.94|0.00|3.14|73956|77430|10000|10000|||100.02|93.68|0.00|-0.25|000103F9|6|8| +22|2023-10-06T21:56:14.7340000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|253C0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|63392|73814|8000|10000|||100.39|101.76|0.00|-3.12|73956|77430|10000|10000|||100.02|93.68|0.00|-0.25|000103F9|7|8| +37|2023-10-06T21:56:14.7790000-07:00|10FF0007|Kehabiqo Febiqo|000103F0|131202||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:14.7790000-07:00|10FF0008|Kokosaze Lulusaze|000103F3|90216||||||100.14|100.24|0.00|-3.13| +21|2023-10-06T21:56:14.7790000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|469F0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|35912507|40478540|10000|10000|||100.00|80.10|0.00|0.00|63392|73814|8000|10000|||100.39|101.76|0.00|-3.12|000103FA|0|1| +38|2023-10-06T21:56:14.7790000-07:00|10FF0003|Gegehi Gehi|005A5A23|63392|73814|7700|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:14.7790000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:56:14.7790000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:56:14.8220000-07:00|40021585|Zeromus|000103F1|35900260||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:14.8670000-07:00|40021659|Liturgic Bell|75049|75049|10000|10000|||98.30|104.62|0.00|2.71| +21|2023-10-06T21:56:14.8670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35900260|40478540|10000|10000|||100.00|80.10|0.00|0.00|131202|155812|10000|10000|||99.87|94.41|0.00|3.13|000103FB|0|1| +37|2023-10-06T21:56:14.9120000-07:00|10FF0004|Buhojaqe Zijaqe|000103F3|81541||||||100.24|100.45|0.00|-3.13| +261|2023-10-06T21:56:14.5110000-07:00|Change|10FF0006||||| +21|2023-10-06T21:56:14.9570000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35900260|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|000103FC|0|1| +21|2023-10-06T21:56:15.0010000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|154003|697D0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|35900260|40478540|10000|10000|||100.00|80.10|0.00|0.00|71705|81809|10000|10000|||100.39|100.82|0.00|-3.12|000103FD|0|1| +37|2023-10-06T21:56:15.0460000-07:00|40021585|Zeromus|000103F5|35885152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:15.0460000-07:00|10FF0006|Wowobora Gogobora|000103F3|81809||||||100.39|100.82|0.00|-3.12| +261|2023-10-06T21:56:14.6030000-07:00|Change|400215A2||||||||| +22|2023-10-06T21:56:15.0910000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750005|494E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|127891|129071|9400|10000|||99.79|92.60|0.00|3.13|44|44|0|10000|||100.00|72.50|0.00|0.01|000103FE|0|8| +22|2023-10-06T21:56:15.0910000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|613F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|131202|155812|10000|10000|||99.87|94.41|0.00|3.13|44|44|0|10000|||100.00|72.50|0.00|0.01|000103FE|1|8| +22|2023-10-06T21:56:15.0910000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750003|3A2B0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8867|10000|||100.51|99.75|0.00|-3.12|44|44|0|10000|||100.00|72.50|0.00|0.01|000103FE|2|8| +22|2023-10-06T21:56:15.0910000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|3DDB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|44|44|0|10000|||100.00|72.50|0.00|0.01|000103FE|3|8| +22|2023-10-06T21:56:15.0910000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|3CD70000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9200|10000|||100.24|100.45|0.00|-3.13|44|44|0|10000|||100.00|72.50|0.00|0.01|000103FE|4|8| +22|2023-10-06T21:56:15.0910000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|39120000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.39|100.82|0.00|-3.12|44|44|0|10000|||100.00|72.50|0.00|0.01|000103FE|5|8| +22|2023-10-06T21:56:15.0910000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|42490000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|68667|83502|10000|10000|||99.90|100.94|0.00|3.14|44|44|0|10000|||100.00|72.50|0.00|0.01|000103FE|6|8| +22|2023-10-06T21:56:15.0910000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|39D90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|63392|73814|7700|10000|||100.39|101.76|0.00|-3.12|44|44|0|10000|||100.00|72.50|0.00|0.01|000103FE|7|8| +37|2023-10-06T21:56:15.1790000-07:00|10FF000A|Dukaro Nezikaro|000103F3|82243||||||99.90|100.94|0.00|3.14| +39|2023-10-06T21:56:15.2250000-07:00|10FF000B|Pusu Rosu|79209|79209|9148|10000|||100.51|99.75|0.00|-3.12| +261|2023-10-06T21:56:14.8280000-07:00|Change|10FF000B||| +37|2023-10-06T21:56:15.3130000-07:00|10FF0003|Gegehi Gehi|000103F3|73814|73814|7700|10000|0||100.39|101.76|0.00|-3.12|2305|0|0|01|050004D3|0|C1F00000|| +38|2023-10-06T21:56:15.3130000-07:00|40021585|Zeromus|005A5A00|35885152|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:15.3130000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40021585|Zeromus|00|40478540|155812| +37|2023-10-06T21:56:15.4020000-07:00|40021585|Zeromus|000103FB|35882211||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:15.4020000-07:00|10FF0001|Sesuga Sapisuga|000103FE|109125||||||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:15.4470000-07:00|10FF0007|Kehabiqo Febiqo|000103FE|106307||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:15.4470000-07:00|40021585|Zeromus|000103F8|35874714||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:15.4470000-07:00|10FF0001|Sesuga Sapisuga|000103F8|109125|129071|10000|10000|0||99.79|92.60|0.00|3.13|1300|0|0|0| +37|2023-10-06T21:56:15.4470000-07:00|10FF0007|Kehabiqo Febiqo|000103F3|123458||||||99.87|94.41|0.00|3.13| +261|2023-10-06T21:56:15.0680000-07:00|Change|10FF0001||| +37|2023-10-06T21:56:15.4910000-07:00|10FF000B|Pusu Rosu|000103FE|64318|79209|9148|10000|0||100.51|99.75|0.00|-3.12|1802|0|0|01|02000A95|02|41269FBF|| +26|2023-10-06T21:56:15.4910000-07:00|A95|Liturgy of the Bell|10.41|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|02|79209|79209| +20|2023-10-06T21:56:15.4910000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.24|100.45|0.00|-3.13| +38|2023-10-06T21:56:15.4910000-07:00|10FF000B|Pusu Rosu|005A5A18|64318|79209|9148|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:56:15.0680000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:56:15.5360000-07:00|10FF0007|Kehabiqo Febiqo|000103F9|135179||||||99.87|94.41|0.00|3.13| +37|2023-10-06T21:56:15.5360000-07:00|10FF0008|Kokosaze Lulusaze|000103FE|74381||||||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:56:15.5360000-07:00|40021585|Zeromus|000103FA|35856635||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:15.5360000-07:00|10FF0003|Gegehi Gehi|000103FA|73814|73814|7700|10000|0||100.39|101.76|0.00|-3.12|2300|0|0|01|050004D3|0|41F00000|| +22|2023-10-06T21:56:15.5360000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|2FE40000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|7700|10000|||100.39|101.76|0.00|-3.12|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103FF|0|8| +22|2023-10-06T21:56:15.5360000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|30C00000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|82243|83502|10000|10000|||99.90|100.94|0.00|3.14|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103FF|1|8| +22|2023-10-06T21:56:15.5360000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|2E7A0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.39|100.82|0.00|-3.12|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103FF|2|8| +22|2023-10-06T21:56:15.5360000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|2E540000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9200|10000|||100.24|100.45|0.00|-3.13|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103FF|3|8| +22|2023-10-06T21:56:15.5360000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|2F900000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103FF|4|8| +22|2023-10-06T21:56:15.5360000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|2F550000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|64318|79209|9148|10000|||100.51|99.75|0.00|-3.12|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103FF|5|8| +22|2023-10-06T21:56:15.5360000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|3A580000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|123458|155812|10000|10000|||99.87|94.41|0.00|3.13|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103FF|6|8| +22|2023-10-06T21:56:15.5360000-07:00|40021659|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|30390000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|109125|129071|10000|10000|||99.79|92.60|0.00|3.13|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|000103FF|7|8| +38|2023-10-06T21:56:15.5360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7700|10000|0||100.39|101.76|0.00|-3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:56:15.5820000-07:00|10FF0004|Buhojaqe Zijaqe|000103FE|65966||||||100.24|100.45|0.00|-3.13| +37|2023-10-06T21:56:15.5820000-07:00|10FF0001|Sesuga Sapisuga|000103F3|122637||||||99.79|92.60|0.00|3.13| +21|2023-10-06T21:56:15.5820000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|722003|1CF80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35874714|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7700|10000|||100.39|101.76|0.00|-3.12|00010400|0|1| +261|2023-10-06T21:56:15.1910000-07:00|Change|10FF0003||| +37|2023-10-06T21:56:15.6260000-07:00|40021585|Zeromus|000103FD|35829630||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:15.6260000-07:00|10FF0006|Wowobora Gogobora|000103FE|67199||||||100.39|100.82|0.00|-3.12| +37|2023-10-06T21:56:15.6700000-07:00|10FF0001|Sesuga Sapisuga|000103F9|129071||||||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:15.6700000-07:00|10FF000A|Dukaro Nezikaro|000103FE|65274||||||99.90|100.94|0.00|3.14| +39|2023-10-06T21:56:15.6700000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-0.39| +24|2023-10-06T21:56:15.6700000-07:00|40021585|Zeromus|DoT|0|1B9F|35856635|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|81809|81809|9700|10000|||100.39|100.82|0.00|-3.12| +36|2023-10-06T21:56:15.6710000-07:00|1680|3| +38|2023-10-06T21:56:15.6710000-07:00|40021585|Zeromus|005A5A00|35822559|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T21:56:15.7150000-07:00|40021585|Zeromus|000103FC|35819711||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:15.7150000-07:00|10FF0003|Gegehi Gehi|000103FE|59005||||||100.39|101.76|0.00|-3.12| +21|2023-10-06T21:56:15.7150000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|36BB0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|35856635|40478540|10000|10000|||100.00|80.10|0.00|0.00|135179|155812|10000|10000|||99.87|94.41|0.00|3.13|00010401|0|1| +21|2023-10-06T21:56:15.7150000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40021585|Zeromus|150003|44040000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|35856635|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.39|100.82|0.00|-3.12|00010402|0|1| +38|2023-10-06T21:56:15.7150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|67199|81809|9700|10000|0||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:15.7150000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:56:15.7590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|67199|81809|9700|10000|0||100.39|100.82|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:15.7590000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:56:15.8040000-07:00|10FF000B|Pusu Rosu|000103F9|73549||||||100.51|99.75|0.00|-3.12| +37|2023-10-06T21:56:15.9380000-07:00|10FF0008|Kokosaze Lulusaze|000103F9|83640||||||100.14|100.24|0.00|-3.13| +261|2023-10-06T21:56:15.4800000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T21:56:15.9830000-07:00|10FF0003|Gegehi Gehi|000103FF|71265||||||100.38|101.31|0.00|-3.12| +21|2023-10-06T21:56:15.9840000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35819711|40478540|10000|10000|||100.00|80.10|0.00|0.00|59005|73814|7700|10000|||100.38|101.31|0.00|-3.12|00010403|0|1| +37|2023-10-06T21:56:16.0720000-07:00|10FF0004|Buhojaqe Zijaqe|000103F9|75347||||||100.24|100.45|0.00|-3.13| +37|2023-10-06T21:56:16.1170000-07:00|10FF000A|Dukaro Nezikaro|000103FF|77754||||||99.90|100.94|0.00|3.14| +39|2023-10-06T21:56:16.1170000-07:00|10FF0004|Buhojaqe Zijaqe|76162|81541|9400|10000|||100.24|100.45|0.00|-3.13| +39|2023-10-06T21:56:16.1170000-07:00|10FF0003|Gegehi Gehi|72003|73814|7900|10000|||100.37|100.60|0.00|-3.12| +21|2023-10-06T21:56:16.1170000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|67F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35819711|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|00010404|0|1| +31|2023-10-06T21:56:16.1170000-07:00|10FF0001||||| +39|2023-10-06T21:56:16.1600000-07:00|10FF0008|Kokosaze Lulusaze|84542|90216|10000|10000|||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:56:16.2050000-07:00|10FF0006|Wowobora Gogobora|000103F9|76859||||||100.39|100.70|0.00|-3.12| +37|2023-10-06T21:56:16.2050000-07:00|40021585|Zeromus|00010400|35812295||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:16.2050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76859|81809|9700|10000|0||100.39|100.70|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:16.2050000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:56:16.2500000-07:00|10FF0006|Wowobora Gogobora|000103FF|81809||||||100.39|100.63|0.00|-3.12| +39|2023-10-06T21:56:16.2940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.39|100.63|0.00|-3.12| +21|2023-10-06T21:56:16.2940000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|722003|29A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35812295|40478540|10000|10000|||100.00|80.10|0.00|0.00|72003|73814|7900|10000|||100.36|100.57|0.00|-3.12|00010405|0|1| +21|2023-10-06T21:56:16.2940000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35812295|40478540|10000|10000|||100.00|80.10|0.00|0.00|77754|83502|10000|10000|||99.90|100.94|0.00|3.14|00010406|0|1| +37|2023-10-06T21:56:16.3380000-07:00|40021585|Zeromus|00010401|35798284||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:16.3380000-07:00|10FF000A|Dukaro Nezikaro|000103F9|83502||||||99.90|100.94|0.00|3.14| +37|2023-10-06T21:56:16.3830000-07:00|10FF0004|Buhojaqe Zijaqe|000103FF|81541||||||100.24|100.45|0.00|-3.13| +261|2023-10-06T21:56:16.0130000-07:00|Remove|4002164E| +21|2023-10-06T21:56:16.4280000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31B30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35798284|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9400|10000|||100.24|100.45|0.00|-3.13|00010407|0|1| +21|2023-10-06T21:56:16.4280000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|00010408|0|1| +38|2023-10-06T21:56:16.4280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:16.4280000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T21:56:16.4720000-07:00|10FF0003|Gegehi Gehi|000103F9|73814||||||100.36|100.57|0.00|-3.12| +38|2023-10-06T21:56:16.4720000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||100.02|93.68|0.00|-0.45|0|0|0|||| +30|2023-10-06T21:56:16.4720000-07:00|7AE|Summon Order IV|0.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T21:56:16.1300000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:56:16.5160000-07:00|10FF0008|Kokosaze Lulusaze|000103FF|90216||||||100.14|100.24|0.00|-3.13| +37|2023-10-06T21:56:16.5160000-07:00|40021585|Zeromus|00010403|35798256||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:16.5610000-07:00|40021585|Zeromus|00010402|35780844||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:16.5610000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35798284|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.38|100.60|0.00|-3.12|00010409|0|1| +20|2023-10-06T21:56:16.5610000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.51|99.75|0.00|-3.12| +38|2023-10-06T21:56:16.5610000-07:00|40021585|Zeromus|005A5A00|35780844|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:16.5610000-07:00|35C|Dismantled|0.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|90216| +261|2023-10-06T21:56:16.1300000-07:00|Change|10FF000B||||||||||||| +261|2023-10-06T21:56:16.2540000-07:00|Change|10FF0003||||||| +37|2023-10-06T21:56:16.6510000-07:00|10FF000B|Pusu Rosu|000103FF|79209||||||100.51|99.75|0.00|-3.12| +37|2023-10-06T21:56:16.6510000-07:00|40021585|Zeromus|00010404|35779181||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:16.7390000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1E400000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|35779181|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|0001040A|0|1| +37|2023-10-06T21:56:16.7840000-07:00|10FF0007|Kehabiqo Febiqo|000103FF|150115||||||99.87|94.41|0.00|3.13| +21|2023-10-06T21:56:16.7840000-07:00|10FF0007|Kehabiqo Febiqo|2C|Vengeance|10FF0007|Kehabiqo Febiqo|6400E20E|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|135179|155812|10000|10000|||99.87|94.41|0.00|3.13|135179|155812|10000|10000|||99.87|94.41|0.00|3.13|0001040B|0|1| +37|2023-10-06T21:56:16.8290000-07:00|40021585|Zeromus|00010406|35776951||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:16.8290000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.79|92.60|0.00|3.13| +37|2023-10-06T21:56:16.8730000-07:00|40021585|Zeromus|00010405|35766291||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:16.9170000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|0001040C|0|1| +38|2023-10-06T21:56:16.9170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:16.9170000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +261|2023-10-06T21:56:16.5430000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:56:17.0070000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|24BC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|150115|155812|10000|10000|||99.87|94.41|0.00|3.13|35766291|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001040D|0|1| +24|2023-10-06T21:56:17.0520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|984|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-1.37| +24|2023-10-06T21:56:17.0520000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D30|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:17.0520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|102D|150115|155812|10000|10000|||99.87|94.41|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:17.0520000-07:00|10FF000B|Pusu Rosu|HoT|798|D4E|79209|79209|9148|10000|||100.51|99.75|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:17.0520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D0B|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:17.0520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D8C|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:17.0520000-07:00|10FF0003|Gegehi Gehi|HoT|798|CE1|73814|73814|7900|10000|||100.36|100.57|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:17.0520000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D5E|81809|81809|9900|10000|||100.39|100.57|-0.02|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:17.0520000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D15|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +24|2023-10-06T21:56:17.0520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9B8|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-1.37| +21|2023-10-06T21:56:17.0520000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|34660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35766291|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7900|10000|||100.36|100.57|0.00|-3.12|0001040E|0|1| +38|2023-10-06T21:56:17.0520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|154256|155812|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:17.0520000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T21:56:17.0520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:17.0520000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:56:17.0520000-07:00|40021585|Zeromus|005A5A00|35766291|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:56:17.0520000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|81809| +38|2023-10-06T21:56:17.0520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.39|100.57|-0.02|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:17.0520000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:56:17.0520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:17.0520000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T21:56:17.0520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:17.0520000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:56:17.0520000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:17.0520000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:56:17.0520000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9148|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:17.0520000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T21:56:17.0520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:17.0520000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T21:56:17.0960000-07:00|40021585|Zeromus|00010409|35766110||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:17.0960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:17.0960000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +24|2023-10-06T21:56:17.1410000-07:00|10FF0006|Wowobora Gogobora|HoT|0|F95|81809|81809|9900|10000|||100.39|100.57|-0.02|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-1.48| +38|2023-10-06T21:56:17.1410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.39|100.57|-0.02|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:56:17.1860000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41712003|40F00000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|35766110|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.79|92.60|0.00|3.13|0001040F|0|1| +38|2023-10-06T21:56:17.1860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.79|92.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:17.1860000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:56:17.1860000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +04|2023-10-06T21:56:16.7720000-07:00|40021665|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||102.20|102.56|0.00|-3.12| +261|2023-10-06T21:56:16.7720000-07:00|Remove|40021665| +37|2023-10-06T21:56:17.2300000-07:00|40021585|Zeromus|00010407|35753387||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:17.2740000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14790000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.87|94.41|0.00|3.13|73956|77430|10000|10000|||100.02|93.68|0.00|-1.57|00010410|0|1| +39|2023-10-06T21:56:17.3640000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|100.94|0.00|3.14| +24|2023-10-06T21:56:17.3640000-07:00|10FF0003|Gegehi Gehi|HoT|0|9EF|73814|73814|7900|10000|||100.36|100.57|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13| +38|2023-10-06T21:56:17.3640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:56:17.4090000-07:00|10FF0007|Kehabiqo Febiqo|0001040B|129844|129844|10000|10000|0||99.87|94.41|0.00|3.13|1500|0|0|01|01000059|64|41700000|| +26|2023-10-06T21:56:17.4090000-07:00|59|Vengeance|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|129844|129844| +24|2023-10-06T21:56:17.4090000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A03|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-1.50| +21|2023-10-06T21:56:17.4090000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|00010411|0|1| +38|2023-10-06T21:56:17.4090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:17.4090000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +39|2023-10-06T21:56:17.4530000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.87|94.41|0.00|3.13| +24|2023-10-06T21:56:17.4530000-07:00|10FF000B|Pusu Rosu|HoT|0|9C8|79209|79209|9148|10000|||100.51|99.75|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-1.20| +38|2023-10-06T21:56:17.4530000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9148|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:56:17.4970000-07:00|40021585|Zeromus|0001040A|35745643||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:17.4970000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|342B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35753387|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9148|10000|||100.51|99.75|0.00|-3.12|00010412|0|1| +261|2023-10-06T21:56:17.1050000-07:00|Change|10FF000B||||||||||||||| +24|2023-10-06T21:56:17.5420000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|C0B|129844|129844|10000|10000|||99.87|94.41|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.87|94.41|0.00|3.13| +38|2023-10-06T21:56:17.5420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.87|94.41|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:56:17.6320000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|281E|129071|129071|10000|10000|||99.89|92.52|0.00|2.55|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||99.89|92.52|0.00|2.55| +21|2023-10-06T21:56:17.6320000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|93B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35745643|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|00010413|0|1| +38|2023-10-06T21:56:17.6320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.89|92.52|0.00|2.55|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:17.7650000-07:00|40021585|Zeromus|0001040F|35729019||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:17.7650000-07:00|10FF0001|Sesuga Sapisuga|0001040F|129071|129071|10000|10000|0||100.38|92.42|0.00|2.57|1300|0|0|02|0500076E|03|41F00000|||||| +38|2023-10-06T21:56:17.7660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||101.01|92.27|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:17.8090000-07:00|10FF0007|Kehabiqo Febiqo|0001040D|120440||||||99.87|94.41|0.00|3.13| +20|2023-10-06T21:56:17.8550000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|100.36|100.57|0.00|-3.12| +38|2023-10-06T21:56:17.8550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:17.8550000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:56:17.5260000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T21:56:17.8990000-07:00|40021659|Liturgic Bell|75049|75049|10000|10000|||98.30|104.62|0.00|2.71| +20|2023-10-06T21:56:17.8990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.24|100.45|0.00|-3.13| +21|2023-10-06T21:56:17.8990000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|650003|36200000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|35729019|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|00010414|0|1| +38|2023-10-06T21:56:17.8990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:17.8990000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +26|2023-10-06T21:56:17.8990000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T21:56:17.5260000-07:00|Change|10FF0004||||||||||||| +38|2023-10-06T21:56:17.9880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||101.65|92.13|0.00|2.59|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:17.9880000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:56:17.9880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:17.9880000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|83502|90216| +37|2023-10-06T21:56:18.0770000-07:00|10FF0007|Kehabiqo Febiqo|00010410|125681||||||99.85|94.37|0.00|-2.78| +38|2023-10-06T21:56:18.1220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:18.1220000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +21|2023-10-06T21:56:18.1670000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|31CF0000|143E|340000|4|17178000|11B|2A8000|0|0|0|0|0|0|0|0|35729019|40478540|10000|10000|||100.00|80.10|0.00|0.00|120440|129844|10000|10000|||99.85|94.37|0.00|-2.78|00010415|0|1| +21|2023-10-06T21:56:18.1670000-07:00|10FF000B|Pusu Rosu|6505|Aquaveil|10FF0007|Kehabiqo Febiqo|F10E|A940000|1B|65058000|0|0|0|0|0|0|0|0|0|0|0|0|120440|129844|10000|10000|||99.85|94.37|0.00|-2.78|79209|79209|8748|10000|||100.51|99.75|0.00|-3.12|00010416|0|1| +261|2023-10-06T21:56:17.7190000-07:00|Change|10FF000B||||||| +37|2023-10-06T21:56:18.2110000-07:00|40021585|Zeromus|0001040E|35715605||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:18.2110000-07:00|10FF000B|Pusu Rosu|79209|79209|9029|10000|||100.51|99.75|0.00|-3.11| +21|2023-10-06T21:56:18.2110000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40021585|Zeromus|150003|48F20000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|35729019|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.39|100.57|0.00|-3.12|00010417|0|1| +21|2023-10-06T21:56:18.2570000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35729019|40478540|10000|10000|||100.00|80.10|0.00|0.00|125681|129844|10000|10000|||99.84|94.35|-0.02|3.11|00010418|0|1| +38|2023-10-06T21:56:18.2580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125681|129844|10000|10000|0||99.84|94.35|-0.02|3.11|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:18.2580000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +37|2023-10-06T21:56:18.3900000-07:00|40021585|Zeromus|00010413|35713242||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:18.3900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35715605|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||104.03|92.09|0.00|2.59|00010419|0|1| +38|2023-10-06T21:56:18.3900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.39|100.57|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:18.3900000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +31|2023-10-06T21:56:18.3900000-07:00|10FF0001||||| +38|2023-10-06T21:56:18.4340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:18.4340000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T21:56:18.0610000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:56:18.4800000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35713242|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|0001041A|0|1| +38|2023-10-06T21:56:18.5240000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9029|10000|0||100.51|99.75|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:18.5240000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|79209|90216| +24|2023-10-06T21:56:18.6580000-07:00|40021585|Zeromus|DoT|0|1D84|35713242|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||105.86|92.53|0.00|2.27| +36|2023-10-06T21:56:18.6580000-07:00|175C|3| +38|2023-10-06T21:56:18.6580000-07:00|40021585|Zeromus|005A5A00|35705686|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:56:18.6580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:18.6580000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +39|2023-10-06T21:56:18.7020000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-0.78| +38|2023-10-06T21:56:18.7020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||105.86|92.53|0.00|2.27|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:18.7020000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:56:18.7910000-07:00|40021585|Zeromus|00010418|35702719||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:18.7910000-07:00|40021585|Zeromus|00010412|35689364||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:18.7910000-07:00|10FF0007|Kehabiqo Febiqo|00010416|125681|129844|10000|10000|0||98.34|92.63|0.00|-3.09|1500|0|0|01|04000A94|0|41000000|| +26|2023-10-06T21:56:18.7910000-07:00|A94|Aquaveil|8.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:56:18.7910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||106.34|92.13|0.00|2.26|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:18.7910000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +261|2023-10-06T21:56:18.4730000-07:00|Remove|40021651| +21|2023-10-06T21:56:18.8370000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|32F10000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35689364|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13|0001041B|0|1| +38|2023-10-06T21:56:18.8370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:18.8370000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T21:56:18.8820000-07:00|40021585|Zeromus|00010414|35675508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:18.8820000-07:00|10FF000A|Dukaro Nezikaro|00010414|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|1E00|0|0|01|030001FB|0|41A00000|| +21|2023-10-06T21:56:18.8820000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35689364|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9000|10000|||100.24|100.45|0.00|-3.13|0001041C|0|1| +38|2023-10-06T21:56:18.8820000-07:00|40021585|Zeromus|005A5A00|35675508|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:56:18.8820000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +38|2023-10-06T21:56:18.8820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:56:18.4730000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:56:18.9270000-07:00|40021585|Zeromus|00010419|35673733||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:18.9700000-07:00|40021585|Zeromus|00010417|35655059||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:18.9700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:18.9700000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T21:56:19.0150000-07:00|40021585|Zeromus|0001041A|35652842||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:19.0150000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.51|99.75|0.00|-2.96| +39|2023-10-06T21:56:19.1050000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8800|10000|||100.24|100.45|0.00|-3.13| +38|2023-10-06T21:56:19.1050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:19.1050000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +39|2023-10-06T21:56:19.1480000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13| +39|2023-10-06T21:56:19.1480000-07:00|10FF0003|Gegehi Gehi|73814|73814|8100|10000|||100.36|100.57|0.00|-3.12| +261|2023-10-06T21:56:18.8040000-07:00|Change|10FF0003||||| +261|2023-10-06T21:56:18.8040000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T21:56:19.2390000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2C780000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|35652842|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.24|0.00|-3.13|0001041D|0|1| +38|2023-10-06T21:56:19.2390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.30|99.84|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:19.2390000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +39|2023-10-06T21:56:19.2830000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||100.21|99.07|0.00|-3.07| +21|2023-10-06T21:56:19.2830000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|456003|620B0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|35652842|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|8100|10000|||100.36|100.57|0.00|-3.12|0001041E|0|1| +38|2023-10-06T21:56:19.2830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7900|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:19.2830000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:56:19.2830000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:56:18.9160000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:56:18.9160000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:56:19.3730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.14|100.24|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:19.3730000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:56:19.4160000-07:00|40021585|Zeromus|0001041C|35652693||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:19.0380000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:56:19.4630000-07:00|400216A0|Carbuncle|77698|77698|10000|10000|||100.37|99.08|0.00|0.02| +38|2023-10-06T21:56:19.5060000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125681|129844|10000|10000|0||94.07|90.45|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:19.5060000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +21|2023-10-06T21:56:19.5960000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|260C0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|35652693|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|0001041F|0|1| +37|2023-10-06T21:56:19.6410000-07:00|40021585|Zeromus|0001041B|35639652||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:19.6410000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|40990000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35652693|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.25|88.03|0.00|3.10|00010420|0|1| +38|2023-10-06T21:56:19.6410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||109.25|88.03|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:56:19.6410000-07:00|76E|Sword Oath|28.08|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:56:19.6410000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9029|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:19.6410000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +37|2023-10-06T21:56:19.6850000-07:00|40021585|Zeromus|00010415|35626901||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:19.6850000-07:00|10FF0007|Kehabiqo Febiqo|00010415|129844||||||93.52|89.90|0.00|-3.02| +21|2023-10-06T21:56:19.6850000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35652693|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.95|96.68|0.00|-3.05|00010421|0|1| +39|2023-10-06T21:56:19.8180000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||109.27|87.41|0.00|3.14| +21|2023-10-06T21:56:19.9520000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|3C920000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35626901|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9029|10000|||100.51|99.75|0.00|-3.12|00010422|0|1| +261|2023-10-06T21:56:19.5600000-07:00|Change|10FF0004||| +37|2023-10-06T21:56:19.9970000-07:00|40021585|Zeromus|0001041F|35617161||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:19.6590000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:56:20.0420000-07:00|40021585|Zeromus|0001041D|35605777||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:20.0420000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1B460000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||92.30|88.79|-0.01|3.08|35617161|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010423|0|1| +37|2023-10-06T21:56:20.0870000-07:00|40021585|Zeromus|0001041E|35580678||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:20.0870000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9F6|90216|90216|10000|10000|||100.12|99.69|0.00|-3.11|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:20.0870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9ED|81541|81541|8800|10000|||100.24|100.45|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:20.0870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.12|99.69|0.00|-3.11|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:56:20.0870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:19.7830000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T21:56:20.1770000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A15|81809|81809|10000|10000|||99.89|93.53|0.00|3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:20.1770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.89|93.53|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:19.7830000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:56:20.2200000-07:00|40021585|Zeromus|00010421|35580484||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:20.2650000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|33660000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|35580678|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7900|10000|||100.36|100.57|0.00|-3.12|00010424|0|1| +38|2023-10-06T21:56:20.2650000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7600|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:20.2650000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:56:19.9000000-07:00|Change|10FF000B||||| +21|2023-10-06T21:56:20.3100000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E7F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35580678|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.03|98.06|0.00|-3.10|00010425|0|1| +20|2023-10-06T21:56:20.3100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.24|100.45|0.00|-3.13| +39|2023-10-06T21:56:20.3530000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|100.94|0.00|3.14| +24|2023-10-06T21:56:20.3980000-07:00|10FF0003|Gegehi Gehi|HoT|0|939|73814|73814|7600|10000|||100.36|100.57|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8800|10000|||100.24|100.45|0.00|-3.13| +38|2023-10-06T21:56:20.3980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7600|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:56:20.4430000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|992|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:20.4430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|100.94|0.00|3.14|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:56:20.4880000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||92.24|88.73|0.00|3.07| +24|2023-10-06T21:56:20.4880000-07:00|10FF000B|Pusu Rosu|HoT|0|A09|79209|79209|8629|10000|||100.51|99.75|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:20.4880000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8629|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:56:20.5770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|12B7|129844|129844|10000|10000|||92.24|88.73|0.00|3.07|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||92.24|88.73|0.00|3.07| +38|2023-10-06T21:56:20.5770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||92.24|88.73|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:56:20.6210000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|170E0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|35580484|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||92.24|88.73|0.00|3.04|00010426|0|1| +21|2023-10-06T21:56:20.6210000-07:00|10FF000B|Pusu Rosu|1D08|Divine Benison|10FF0001|Sesuga Sapisuga|610E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||109.28|86.04|0.00|3.13|79209|79209|8629|10000|||100.51|99.75|0.00|-3.12|00010427|0|1| +261|2023-10-06T21:56:20.2450000-07:00|Change|10FF000B||||||||| +24|2023-10-06T21:56:20.6660000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A19|129071|129071|10000|10000|||109.23|85.86|0.00|3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||109.23|85.86|0.00|3.13| +21|2023-10-06T21:56:20.6660000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|80D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35580484|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.23|85.86|0.00|3.13|00010428|0|1| +21|2023-10-06T21:56:20.6660000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|11510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35580484|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|00010429|0|1| +38|2023-10-06T21:56:20.6660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||109.23|85.86|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +31|2023-10-06T21:56:20.6660000-07:00|10FF0001||||| +20|2023-10-06T21:56:20.7110000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|1.491|100.23|91.77|0.00|3.06| +37|2023-10-06T21:56:20.8460000-07:00|10FF0007|Kehabiqo Febiqo|00010423|122862||||||92.24|88.73|0.00|2.41| +39|2023-10-06T21:56:20.8890000-07:00|40021659|Liturgic Bell|75049|75049|10000|10000|||98.30|104.62|0.00|2.71| +21|2023-10-06T21:56:20.8890000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.87|94.66|0.00|-3.09|90216|90216|10000|10000|||99.87|94.66|0.00|-3.09|0001042A|0|1| +21|2023-10-06T21:56:20.8890000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|754003|30900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35580484|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.94|0.00|3.14|0001042B|0|1| +37|2023-10-06T21:56:20.9340000-07:00|40021585|Zeromus|00010420|35563947||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:20.9340000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35580484|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7600|10000|||100.36|100.57|0.00|-3.12|0001042C|0|1| +261|2023-10-06T21:56:20.5330000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:56:21.0250000-07:00|40021585|Zeromus|00010424|35550789||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:20.6260000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:56:21.0680000-07:00|40021585|Zeromus|00010425|35547078||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:21.1560000-07:00|40021585|Zeromus|00010426|35541176||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:21.2010000-07:00|40021585|Zeromus|00010428|35539115||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:21.2010000-07:00|40021585|Zeromus|00010429|35534682||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:21.2010000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21F50000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|122862|129844|10000|10000|||92.26|88.69|0.00|2.72|73956|77430|10000|10000|||100.02|93.68|0.00|-3.06|0001042D|0|1| +261|2023-10-06T21:56:20.8590000-07:00|Change|10FF0003||| +37|2023-10-06T21:56:21.2450000-07:00|40021585|Zeromus|00010422|35519176||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:21.2450000-07:00|10FF000B|Pusu Rosu|79209|79209|8910|10000|||100.51|99.75|0.00|2.70| +21|2023-10-06T21:56:21.2450000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30CC0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35534682|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8800|10000|||100.24|100.45|0.00|-3.13|0001042E|0|1| +261|2023-10-06T21:56:20.8590000-07:00|Change|10FF000B||||||||| +38|2023-10-06T21:56:21.3770000-07:00|400216A6||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:56:21.3790000-07:00|400216A6||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:56:21.0970000-07:00|Change|400216A0||||||||| +37|2023-10-06T21:56:21.4230000-07:00|10FF0001|Sesuga Sapisuga|00010427|129071|129071|10000|10000|12||109.23|85.86|0.00|3.13|1300|0|0|01|030004C2|0|41700000|| +26|2023-10-06T21:56:21.4230000-07:00|4C2|Divine Benison|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:56:21.4230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|12||109.23|85.86|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:56:21.0970000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:56:21.4680000-07:00|40021585|Zeromus|0001042C|35519149||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:21.4680000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.51|99.75|0.00|2.65| +261|2023-10-06T21:56:21.2080000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:56:21.5560000-07:00|40021585|Zeromus|0001042B|35506717||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:56:21.3060000-07:00|400216A6|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.53|90.49|0.00|3.13| +261|2023-10-06T21:56:21.3060000-07:00|Add|400216A6||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:56:21.6450000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B5C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35506717|40478540|10000|10000|||100.00|80.10|0.00|0.00|122862|129844|10000|10000|||90.83|85.92|0.00|3.03|0001042F|0|1| +39|2023-10-06T21:56:21.6900000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-2.37| +24|2023-10-06T21:56:21.6900000-07:00|40021585|Zeromus|DoT|0|1EC9|35506717|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8910|10000|||100.51|99.75|0.00|2.78| +21|2023-10-06T21:56:21.6900000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|750003|34890000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|35506717|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.24|91.60|0.00|-3.12|00010430|0|1| +36|2023-10-06T21:56:21.6900000-07:00|1838|3| +38|2023-10-06T21:56:21.6900000-07:00|40021585|Zeromus|005A5A00|35498836|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:56:21.3060000-07:00|Change|400216A6||| +21|2023-10-06T21:56:21.7350000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3A630000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|35506717|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.75|91.13|-0.02|-3.11|00010431|0|1| +21|2023-10-06T21:56:21.7790000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|2F870000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|35498836|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|100.71|-0.02|-3.13|00010432|0|1| +261|2023-10-06T21:56:21.5960000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:56:22.0010000-07:00|10FF0007|Kehabiqo Febiqo|0001042D|129844||||||90.89|85.15|0.00|-3.14| +21|2023-10-06T21:56:22.0010000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|7600|10000|||100.36|100.57|0.00|-3.12|73814|73814|7600|10000|||100.36|100.57|0.00|-3.12|00010433|0|1| +38|2023-10-06T21:56:22.0010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7600|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:56:22.0010000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:56:21.7150000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T21:56:22.0470000-07:00|40021585|Zeromus|0001042E|35486344||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:22.0470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|0||100.24|100.45|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:22.0470000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:56:22.0470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7600|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T21:56:22.0470000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T21:56:22.0470000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8910|10000|0||100.51|99.75|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:22.0470000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T21:56:22.0470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.85|97.74|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:22.0470000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +39|2023-10-06T21:56:22.0900000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8600|10000|||100.24|100.45|0.00|-3.13| +38|2023-10-06T21:56:22.0910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.86|84.92|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:22.0910000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T21:56:22.0910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.81|88.80|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:22.0910000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T21:56:22.0910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||100.24|91.59|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:22.0910000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T21:56:22.0910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|12||109.23|85.86|0.00|-2.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:22.0910000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +39|2023-10-06T21:56:22.1360000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.81|88.80|0.00|3.12| +39|2023-10-06T21:56:22.1360000-07:00|10FF0003|Gegehi Gehi|73814|73814|7800|10000|||100.36|100.57|0.00|-3.12| +37|2023-10-06T21:56:22.1790000-07:00|40021585|Zeromus|0001042F|35483436||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:21.8330000-07:00|Change|10FF0003||| +261|2023-10-06T21:56:21.9470000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T21:56:22.2250000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|40540000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35483436|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.23|85.86|0.00|-2.13|00010434|0|1| +38|2023-10-06T21:56:22.2250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|12||109.23|85.86|0.00|-2.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:56:22.2250000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +39|2023-10-06T21:56:22.2690000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.24|91.58|0.00|3.14| +37|2023-10-06T21:56:22.3120000-07:00|40021585|Zeromus|00010432|35471269||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:21.9470000-07:00|Change|10FF000B||||||| +21|2023-10-06T21:56:22.4020000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|50D20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35483436|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8910|10000|||100.51|99.75|0.00|-3.12|00010435|0|1| +34|2023-10-06T21:56:22.4020000-07:00|400216A6|Automaton Queen|400216A6|Automaton Queen|01| +261|2023-10-06T21:56:22.0660000-07:00|Change|400216A6||| +261|2023-10-06T21:56:22.0660000-07:00|Change|400216A6||| +39|2023-10-06T21:56:22.4450000-07:00|400216A0|Carbuncle|77698|77698|10000|10000|||101.49|93.06|0.00|3.05| +27|2023-10-06T21:56:22.4450000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +27|2023-10-06T21:56:22.4450000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +00|2023-10-06T21:56:22.0000000-07:00|0044|Zeromus|In endless Dark embrace your end.| +261|2023-10-06T21:56:22.1860000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:56:22.4910000-07:00|40021585|Zeromus|00010430|35457820||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:22.1860000-07:00|Change|40021585||||||||||||| +37|2023-10-06T21:56:22.5350000-07:00|40021585|Zeromus|00010431|35442873||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:22.5350000-07:00|40021585|Zeromus|8B83|Dark Matter|40021585|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:22.3750000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:56:22.7590000-07:00|10FF0003|Gegehi Gehi|00010433|73814|73814|7800|10000|0||100.36|100.57|0.00|-3.12|2300|0|0|01|010004D6|0|41A00000|| +21|2023-10-06T21:56:22.7590000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|35442873|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||100.24|100.44|0.00|3.13|00010436|0|1| +21|2023-10-06T21:56:22.7590000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|44060000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|35442873|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7800|10000|||100.36|100.57|0.00|-3.12|00010437|0|1| +38|2023-10-06T21:56:22.7590000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7500|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T21:56:22.7590000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:56:22.7590000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:56:22.8030000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||109.23|85.77|0.00|3.14| +21|2023-10-06T21:56:22.8470000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35442873|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|93.06|0.00|-3.14|00010438|0|1| +21|2023-10-06T21:56:22.9360000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|89E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35442873|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.23|85.69|0.00|3.14|00010439|0|1| +31|2023-10-06T21:56:22.9360000-07:00|10FF0001||||| +21|2023-10-06T21:56:22.9800000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35442873|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.03|83.58|0.00|3.12|0001043A|0|1| +21|2023-10-06T21:56:22.9800000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||109.23|85.69|0.00|3.14|129071|129071|10000|10000|||109.23|85.69|0.00|3.14|0001043B|0|1| +261|2023-10-06T21:56:22.6490000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:56:23.0260000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35442873|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||100.24|100.39|0.00|-3.13|0001043C|0|1| +24|2023-10-06T21:56:23.0700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9C0|90216|90216|10000|10000|||100.04|83.05|0.00|3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.07| +24|2023-10-06T21:56:23.0700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|94E|81541|81541|8200|10000|||100.24|100.35|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.07| +21|2023-10-06T21:56:23.0700000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|34C70000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|35442873|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.87|84.94|0.00|-0.73|0001043D|0|1| +21|2023-10-06T21:56:23.0700000-07:00|10FF000B|Pusu Rosu|1D08|Divine Benison|10FF0007|Kehabiqo Febiqo|520E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.87|84.94|0.00|-0.73|79209|79209|8510|10000|||100.51|99.75|0.00|-3.12|0001043E|0|1| +261|2023-10-06T21:56:22.6490000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:56:23.0700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.04|83.05|0.00|3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:56:23.0700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|0||100.24|100.35|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:56:23.1590000-07:00|10FF0006|Wowobora Gogobora|HoT|0|99E|81809|81809|9900|10000|||100.10|85.92|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.12| +38|2023-10-06T21:56:23.1590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.10|85.92|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:22.8770000-07:00|Change|10FF0003||| +21|2023-10-06T21:56:23.2480000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40021585|Zeromus|750003|45CC0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|35442873|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.10|85.92|0.00|-3.12|0001043F|0|1| +38|2023-10-06T21:56:23.2480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|0||100.10|85.92|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:23.2480000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:56:22.8770000-07:00|Change|10FF000B||||||||||||||||||||| +39|2023-10-06T21:56:23.3370000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.03|90.17|0.00|3.11| +37|2023-10-06T21:56:23.3810000-07:00|40021585|Zeromus|00010438|35440706||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:23.3810000-07:00|10FF0003|Gegehi Gehi|HoT|0|F66|73814|73814|7500|10000|||100.36|100.57|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:23.3810000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7500|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +37|2023-10-06T21:56:23.4260000-07:00|40021585|Zeromus|00010436|35440706|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:56:23.4260000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +24|2023-10-06T21:56:23.4260000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9F7|83502|83502|10000|10000|||100.07|89.42|0.00|3.11|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:23.4260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.07|89.42|0.00|3.11|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:56:23.1180000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:56:23.4700000-07:00|40021585|Zeromus|00010439|35438500||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:23.4700000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||90.87|84.97|0.00|2.06| +24|2023-10-06T21:56:23.4700000-07:00|10FF000B|Pusu Rosu|HoT|0|A13|79209|79209|8510|10000|||100.51|99.75|0.00|-2.75|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:23.4700000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8510|10000|0||100.51|99.75|0.00|-2.75|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:56:23.5140000-07:00|10FF0001|Sesuga Sapisuga|0001043B|129071|129071|10000|10000|12||109.23|85.45|0.00|3.14|1300|0|0|01|0600004A|0|41700000|| +26|2023-10-06T21:56:23.5140000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:56:23.5140000-07:00|40021585|Zeromus|00010434|35422032||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:23.5140000-07:00|40021585|Zeromus|00010437|35404618||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:23.5140000-07:00|10FF0003|Gegehi Gehi|00010437|73814|73814|7500|10000|0||100.36|100.57|0.00|-3.12|2300|0|0|01|020004D3|0|41F00000|| +38|2023-10-06T21:56:23.5150000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7500|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +37|2023-10-06T21:56:23.5580000-07:00|40021585|Zeromus|0001043C|35404470||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:23.5580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|BBB|129844|129844|10000|10000|||90.87|84.97|0.00|2.06|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||90.87|84.97|0.00|2.06| +38|2023-10-06T21:56:23.5580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.87|84.97|0.00|2.06|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:56:23.6470000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9C9|129071|129071|10000|10000|||109.23|85.45|0.00|3.14|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||109.23|85.45|0.00|3.14| +33|2023-10-06T21:56:23.6470000-07:00|80034E7C|80000004|BB7|00|00|00| +38|2023-10-06T21:56:23.6470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|12||109.23|85.45|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:56:23.6920000-07:00|40021585|Zeromus|0001043D|35390959||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:23.6920000-07:00|40021585|Zeromus|00010435|35370269||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:23.3190000-07:00|Change|400216A0||||||||| +37|2023-10-06T21:56:23.7370000-07:00|40021585|Zeromus|0001043A|35367988||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:23.8690000-07:00|10FF0007|Kehabiqo Febiqo|0001043E|129844|129844|10000|10000|12||90.87|84.98|0.00|2.06|1500|0|0|01|020004C2|0|41700000|| +26|2023-10-06T21:56:23.8690000-07:00|4C2|Divine Benison|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +39|2023-10-06T21:56:23.8690000-07:00|40021659|Liturgic Bell|75049|75049|10000|10000|||98.30|104.62|0.00|2.71| +21|2023-10-06T21:56:23.8700000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35367988|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||100.05|83.86|0.00|-3.12|00010440|0|1| +38|2023-10-06T21:56:23.8700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|12||90.87|84.98|0.00|2.06|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:56:23.9130000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|18820000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|35367988|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.17|85.93|0.00|3.12|00010441|0|1| +20|2023-10-06T21:56:23.9580000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.51|99.75|0.00|-2.56| +261|2023-10-06T21:56:23.7040000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:56:24.0470000-07:00|40021585|Zeromus|0001043F|35350120||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:23.8020000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:56:23.9190000-07:00|Change|10FF000B||||||||||||||| +39|2023-10-06T21:56:24.2250000-07:00|10FF000B|Pusu Rosu|79209|79209|8791|10000|||100.51|99.75|0.00|-2.63| +21|2023-10-06T21:56:24.2250000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|724003|27450000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|35350120|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|3.13|00010442|0|1| +37|2023-10-06T21:56:24.3140000-07:00|40021585|Zeromus|00010441|35343846||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:24.4030000-07:00|40021585|Zeromus|00010440|35343692||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:24.4030000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35343846|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7500|10000|||100.36|100.57|0.00|-3.12|00010443|0|1| +39|2023-10-06T21:56:24.6710000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:24.6710000-07:00|40021585|Zeromus|DoT|0|17A4|35343692|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8791|10000|||100.51|99.75|0.00|-3.04| +36|2023-10-06T21:56:24.6710000-07:00|1914|3| +38|2023-10-06T21:56:24.6710000-07:00|40021585|Zeromus|005A5A00|35337640|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +21|2023-10-06T21:56:24.7150000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|27490000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|35337640|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10|00010444|0|1| +38|2023-10-06T21:56:24.7150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|12||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:24.7150000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:56:24.8920000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|3F8D0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35337640|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8791|10000|||100.51|99.75|0.00|-3.12|00010445|0|1| +37|2023-10-06T21:56:24.9370000-07:00|40021585|Zeromus|00010443|35337611||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:24.9810000-07:00|40021585|Zeromus|00010442|35327558||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:25.0260000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|17110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35327558|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.87|84.98|0.00|2.06|00010446|0|1| +21|2023-10-06T21:56:25.0260000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35327558|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.01|84.95|0.00|-3.12|00010447|0|1| +39|2023-10-06T21:56:25.1150000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8400|10000|||100.45|94.07|0.00|3.10| +39|2023-10-06T21:56:25.1150000-07:00|10FF0003|Gegehi Gehi|73814|73814|7700|10000|||100.36|100.57|0.00|-3.12| +261|2023-10-06T21:56:24.7650000-07:00|Change|10FF0003||| +39|2023-10-06T21:56:25.1590000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12| +20|2023-10-06T21:56:25.1590000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.45|94.07|0.00|3.10| +261|2023-10-06T21:56:24.8810000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:56:25.2040000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35327558|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10|00010448|0|1| +20|2023-10-06T21:56:25.2040000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|100.36|100.57|0.00|-3.12| +31|2023-10-06T21:56:25.2040000-07:00|10FF0001||||| +39|2023-10-06T21:56:25.2930000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9700|10000|||100.05|83.33|-0.02|1.14| +261|2023-10-06T21:56:24.8810000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:56:24.9930000-07:00|Change|10FF000B||||||||||||||||| +39|2023-10-06T21:56:25.4720000-07:00|400216A0|Carbuncle|77698|77698|10000|10000|||101.43|84.40|0.00|-3.11| +21|2023-10-06T21:56:25.5180000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|31D00000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|35327558|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.87|84.98|0.00|2.06|00010449|0|1| +38|2023-10-06T21:56:25.5180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|12||90.87|84.98|0.00|2.06|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:25.5180000-07:00|A75|Surging Tempest|45.13|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:56:25.5620000-07:00|40021585|Zeromus|00010446|35321653||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:25.5620000-07:00|40021585|Zeromus|00010447|35318991||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:25.6520000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35327558|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|0001044A|0|1| +38|2023-10-06T21:56:25.6520000-07:00|40021585|Zeromus|005A5A00|35318991|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +30|2023-10-06T21:56:25.6520000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +261|2023-10-06T21:56:25.2910000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T21:56:25.6950000-07:00|10FF0006|Wowobora Gogobora|64E7|Summon Phoenix|40021585|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|35318991|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.08|83.66|0.00|0.25|0001044B|0|1| +261|2023-10-06T21:56:25.2910000-07:00|Change|400216A0||||||||| +38|2023-10-06T21:56:25.7390000-07:00|400216AD||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:56:25.7420000-07:00|40021585|Zeromus|00010448|35317327||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:25.7420000-07:00|400216AD||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +39|2023-10-06T21:56:25.8280000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10| +38|2023-10-06T21:56:25.8730000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8391|10000|0||100.31|99.92|0.00|-1.76|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:56:25.8730000-07:00|A95|Liturgy of the Bell|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|02|79209|79209| +22|2023-10-06T21:56:25.9620000-07:00|40021659|Liturgic Bell|6508|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|2F360000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|7700|10000|||100.36|100.57|0.00|-3.12|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|0001044C|0|4| +22|2023-10-06T21:56:25.9620000-07:00|40021659|Liturgic Bell|6508|Liturgy of the Bell|10FF000B|Pusu Rosu|200004|481B0000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8391|10000|||100.31|99.92|0.00|-1.76|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|0001044C|1|4| +22|2023-10-06T21:56:25.9620000-07:00|40021659|Liturgic Bell|6508|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|30700000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8400|10000|||100.45|94.07|0.00|-3.11|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|0001044C|2|4| +22|2023-10-06T21:56:25.9620000-07:00|40021659|Liturgic Bell|6508|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|2E960000|1B|65088000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|84.95|0.00|-3.12|75049|75049|10000|10000|||98.30|104.62|0.00|2.71|0001044C|3|4| +37|2023-10-06T21:56:26.0060000-07:00|40021585|Zeromus|00010444|35307270||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:26.0060000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24E40000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|35317327|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|-3.12|0001044D|0|1| +261|2023-10-06T21:56:25.5700000-07:00|Add|400216AD||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:56:25.5700000-07:00|400216AD|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|74223|77698|10000|10000|||101.92|85.44|0.00|-3.11| +261|2023-10-06T21:56:25.6810000-07:00|Change|400216AD||| +24|2023-10-06T21:56:26.0520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|99F|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:26.0520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|956|81541|81541|8400|10000|||100.45|94.07|0.00|-3.11|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:26.0520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:56:26.0520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|0||100.45|94.07|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:56:26.0960000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4D840000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35307270|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||100.45|94.07|0.00|-3.11|0001044E|0|1| +24|2023-10-06T21:56:26.1400000-07:00|10FF0006|Wowobora Gogobora|HoT|0|946|81809|81809|9700|10000|||100.08|83.73|-0.02|-3.11|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:26.1400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||100.08|83.73|-0.02|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:26.1850000-07:00|40021585|Zeromus|00010445|35291001||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:25.9090000-07:00|Change|10FF0004||||||||||||||||| +39|2023-10-06T21:56:26.3630000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|84.95|0.00|3.12| +24|2023-10-06T21:56:26.3630000-07:00|10FF0003|Gegehi Gehi|HoT|0|F0D|73814|73814|7700|10000|||100.36|100.57|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:26.3630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7700|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +37|2023-10-06T21:56:26.4070000-07:00|40021585|Zeromus|0001044A|35288641||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:26.4070000-07:00|40021585|Zeromus|0001044D|35279197||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:26.4070000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|ECF|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +20|2023-10-06T21:56:26.4070000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.14|100.05|0.00|-1.59| +38|2023-10-06T21:56:26.4070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:56:26.4530000-07:00|400216A6|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|10370000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|35291001|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.53|90.49|0.00|3.13|0001044F|0|1| +39|2023-10-06T21:56:26.4530000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||90.87|84.98|0.00|2.06| +24|2023-10-06T21:56:26.4530000-07:00|10FF000B|Pusu Rosu|HoT|0|F20|79209|79209|8391|10000|||100.14|100.05|0.00|-1.59|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +38|2023-10-06T21:56:26.4530000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8391|10000|0||100.14|100.05|0.00|-1.59|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:56:26.1360000-07:00|Change|10FF000B||||||||||||||||||| +21|2023-10-06T21:56:26.4970000-07:00|40021585|Zeromus|8B83|Dark Matter|40021585|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35279197|40478540|10000|10000|||100.00|80.10|0.00|0.00|35279197|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010450|0|1| +24|2023-10-06T21:56:26.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|BE7|129844|129844|10000|10000|||90.87|84.98|0.00|2.06|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||90.87|84.98|0.00|2.06| +38|2023-10-06T21:56:26.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|12||90.87|84.98|0.00|2.06|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:26.1360000-07:00|Change|40021585||||| +24|2023-10-06T21:56:26.6290000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9D9|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10| +21|2023-10-06T21:56:26.6290000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|450003|2E010000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|35279197|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7700|10000|||100.36|100.57|0.00|-3.12|00010451|0|1| +38|2023-10-06T21:56:26.6290000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7500|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +26|2023-10-06T21:56:26.6290000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:56:26.6290000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:56:26.6290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|12||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:56:26.3230000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:56:26.7180000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|726003|B6530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35279197|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|00010452|0|1| +22|2023-10-06T21:56:26.7180000-07:00|400216AD|Demi-Phoenix|4085|Everlasting Flight|10FF000A|Dukaro Nezikaro|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|74223|77698|10000|10000|||101.92|85.44|0.00|-3.11|00010453|0|7| +22|2023-10-06T21:56:26.7180000-07:00|400216AD|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||100.08|83.73|0.00|-3.11|74223|77698|10000|10000|||101.92|85.44|0.00|-3.11|00010453|1|7| +22|2023-10-06T21:56:26.7180000-07:00|400216AD|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|74223|77698|10000|10000|||101.92|85.44|0.00|-3.11|00010453|2|7| +22|2023-10-06T21:56:26.7180000-07:00|400216AD|Demi-Phoenix|4085|Everlasting Flight|10FF0001|Sesuga Sapisuga|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10|74223|77698|10000|10000|||101.92|85.44|0.00|-3.11|00010453|3|7| +22|2023-10-06T21:56:26.7180000-07:00|400216AD|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8000|10000|||100.45|94.07|0.00|-3.11|74223|77698|10000|10000|||101.92|85.44|0.00|-3.11|00010453|4|7| +22|2023-10-06T21:56:26.7180000-07:00|400216AD|Demi-Phoenix|4085|Everlasting Flight|10FF0007|Kehabiqo Febiqo|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.87|84.98|0.00|2.06|74223|77698|10000|10000|||101.92|85.44|0.00|-3.11|00010453|5|7| +22|2023-10-06T21:56:26.7180000-07:00|400216AD|Demi-Phoenix|4085|Everlasting Flight|10FF000B|Pusu Rosu|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8391|10000|||100.14|100.05|0.00|-2.49|74223|77698|10000|10000|||101.92|85.44|0.00|-3.11|00010453|6|7| +38|2023-10-06T21:56:26.7630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|12||90.87|84.98|0.00|2.06|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:26.7630000-07:00|A94|Aquaveil|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +261|2023-10-06T21:56:26.4230000-07:00|Change|400216AD||| +37|2023-10-06T21:56:26.8970000-07:00|40021585|Zeromus|0001044E|35259353||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:26.8970000-07:00|40021659|Liturgic Bell|75049|75049|10000|10000|||98.30|104.62|0.00|2.71| +21|2023-10-06T21:56:26.9400000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0001|Sesuga Sapisuga|6400F60E|7420000|F60E|A770000|860E|A780000|90A3000F|7418000|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10|129844|129844|10000|10000|||90.87|84.98|0.00|2.06|00010454|0|1| +261|2023-10-06T21:56:26.6110000-07:00|Change|40021659||| +21|2023-10-06T21:56:27.0300000-07:00|10FF0006|Wowobora Gogobora|64E6|Rekindle|10FF0007|Kehabiqo Febiqo|4|27100000|4B10420E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.87|84.98|0.00|2.06|81809|81809|9700|10000|||100.08|83.73|0.00|-3.11|00010455|0|1| +21|2023-10-06T21:56:27.0300000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35259353|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.08|83.73|0.00|-3.11|00010456|0|1| +21|2023-10-06T21:56:27.1180000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|00010457|0|1| +38|2023-10-06T21:56:27.1180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:56:27.1180000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:56:27.1620000-07:00|40021585|Zeromus|00010449|35246601||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:27.1620000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35259353|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||100.45|94.07|0.00|-3.11|00010458|0|1| +39|2023-10-06T21:56:27.2080000-07:00|10FF000B|Pusu Rosu|79209|79209|8672|10000|||100.14|100.05|0.00|-3.13| +21|2023-10-06T21:56:27.2080000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|714003|1A3A0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|35259353|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10|00010459|0|1| +21|2023-10-06T21:56:27.2080000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35259353|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|0001045A|0|1| +37|2023-10-06T21:56:27.2520000-07:00|40021585|Zeromus|0001044F|35242450||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:27.2520000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|0001045B|0|1| +38|2023-10-06T21:56:27.2520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:56:26.8380000-07:00|Change|400215A3||||||||| +26|2023-10-06T21:56:27.2520000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +261|2023-10-06T21:56:26.8380000-07:00|Change|400215A2||||||||| +21|2023-10-06T21:56:27.2970000-07:00|400215A2|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|EC750005|19170000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10|44|44|0|10000|||100.00|100.00|0.00|0.00|0001045C|0|1| +21|2023-10-06T21:56:27.2970000-07:00|400215A3|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|38BA0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.87|84.98|0.00|1.74|44|44|0|10000|||100.00|100.00|0.00|0.00|0001045D|0|1| +39|2023-10-06T21:56:27.3410000-07:00|400216A6|Automaton Queen|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00| +21|2023-10-06T21:56:27.3420000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|324C0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|35242450|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8672|10000|||100.14|100.05|0.00|-3.13|0001045E|0|1| +37|2023-10-06T21:56:27.4300000-07:00|40021585|Zeromus|00010451|35230673||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:27.4750000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|A7D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35242450|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.23|85.45|0.00|-2.10|0001045F|0|1| +31|2023-10-06T21:56:27.4750000-07:00|10FF0001||||| +261|2023-10-06T21:56:27.0660000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:56:27.5640000-07:00|10FF0001|Sesuga Sapisuga|00010454|129071|129071|10000|10000|7||109.23|85.45|0.00|-2.10|1300|0|0|03|05000742|64|41000000|||||||||| +26|2023-10-06T21:56:27.5640000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|129071|129844| +26|2023-10-06T21:56:27.5640000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +26|2023-10-06T21:56:27.5640000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +37|2023-10-06T21:56:27.5640000-07:00|10FF0007|Kehabiqo Febiqo|00010454|129844|129844|10000|10000|12||90.87|84.98|0.00|1.55|1500|0|0|01|04000741|0190|41000000|| +26|2023-10-06T21:56:27.5640000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +37|2023-10-06T21:56:27.5640000-07:00|40021585|Zeromus|00010456|35230481||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:27.5640000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.45|94.07|0.00|-3.11| +38|2023-10-06T21:56:27.5640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||109.23|85.45|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:27.1660000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T21:56:27.6090000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|384D0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|35230481|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7500|10000|||100.36|100.57|0.00|-3.12|00010460|0|1| +38|2023-10-06T21:56:27.6090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7200|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T21:56:27.6090000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:56:27.6090000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:56:27.6530000-07:00|10FF000A|Dukaro Nezikaro|00010453|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|1E00|0|0|02|040001F1|0|C1700000|||||| +26|2023-10-06T21:56:27.6530000-07:00|74C|Everlasting Flight|21.00|400216AD|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|83502|77698| +24|2023-10-06T21:56:27.6530000-07:00|40021585|Zeromus|DoT|0|146E|35230481|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|8000|10000|||100.45|94.07|0.00|-3.11| +36|2023-10-06T21:56:27.6530000-07:00|19F0|3| +38|2023-10-06T21:56:27.6530000-07:00|40021585|Zeromus|005A5A00|35225251|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +37|2023-10-06T21:56:27.6980000-07:00|40021585|Zeromus|00010458|35225098||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:27.6980000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +261|2023-10-06T21:56:27.2630000-07:00|Change|10FF0003||| +261|2023-10-06T21:56:27.3640000-07:00|Change|400216A0||| +37|2023-10-06T21:56:27.7420000-07:00|40021585|Zeromus|0001045A|35222282||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:27.7420000-07:00|10FF000A|Dukaro Nezikaro|0001045A|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|1E00|0|0|01|040001F1|0|C1700000|| +37|2023-10-06T21:56:27.7870000-07:00|10FF0006|Wowobora Gogobora|00010453|81809|81809|9700|10000|0||100.08|83.73|0.00|-1.44|1B01|0|0|01|074C|0|41A80000|| +26|2023-10-06T21:56:27.7870000-07:00|74C|Everlasting Flight|21.00|400216AD|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|77698| +261|2023-10-06T21:56:27.3640000-07:00|Change|400216AD||||||||| +37|2023-10-06T21:56:27.8310000-07:00|40021585|Zeromus|00010459|35215568||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:27.8750000-07:00|40021585|Zeromus|00010452|35168893||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:27.9190000-07:00|10FF0001|Sesuga Sapisuga|0001045C|122648|129071|10000|10000|7||109.23|85.45|0.00|-2.10|1300|0|0|01|03000000|0|0|| +37|2023-10-06T21:56:27.9190000-07:00|10FF0007|Kehabiqo Febiqo|0001045D|115322|129844|10000|10000|0||90.87|84.98|0.00|1.55|1500|0|0|01|02000000|0|0|| +37|2023-10-06T21:56:27.9190000-07:00|10FF0008|Kokosaze Lulusaze|00010453|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|1F02|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T21:56:27.9190000-07:00|74C|Everlasting Flight|21.00|400216AD|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|77698| +21|2023-10-06T21:56:27.9190000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|146F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35222282|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|00010461|0|1| +38|2023-10-06T21:56:27.9190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115322|129844|10000|10000|0||90.87|84.98|0.00|1.55|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:27.9190000-07:00|4C2|Divine Benison|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:56:27.9190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122648|129071|10000|10000|7||109.23|85.45|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:27.9190000-07:00|4C2|Divine Benison|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T21:56:27.9640000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|712003|5EA20000|204|26598000|0|0|0|0|0|0|0|0|0|0|0|0|35168893|40478540|10000|10000|||100.00|80.10|0.00|0.00|115322|129844|10000|10000|||90.87|84.98|0.00|1.55|00010462|0|1| +21|2023-10-06T21:56:27.9640000-07:00|10FF0001|Sesuga Sapisuga|1CD6|Intervention|10FF0007|Kehabiqo Febiqo|EC0E|4960000|F60E|A730000|13CE0E|A740000|0|0|0|0|0|0|0|0|0|0|115322|129844|10000|10000|||90.87|84.98|0.00|1.55|122648|129071|10000|10000|||109.23|85.45|0.00|-1.60|00010463|0|1| +31|2023-10-06T21:56:27.9640000-07:00|10FF0001||||| +37|2023-10-06T21:56:28.0080000-07:00|40021585|Zeromus|0001045F|35166208||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:28.0080000-07:00|400216A6|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|112C0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|35168893|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00|00010464|0|1| +37|2023-10-06T21:56:28.0530000-07:00|10FF0007|Kehabiqo Febiqo|00010455|125322|129844|10000|10000|0||90.87|84.98|0.00|2.06|1500|0|0|01|02000A90|4B|41F00000|| +26|2023-10-06T21:56:28.0530000-07:00|A90|Rekindle|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|4B|129844|81809| +37|2023-10-06T21:56:28.0530000-07:00|10FF0001|Sesuga Sapisuga|00010453|122648|129071|10000|10000|7||109.23|85.45|0.00|-1.60|1303|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T21:56:28.0530000-07:00|74C|Everlasting Flight|21.00|400216AD|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|77698| +37|2023-10-06T21:56:28.0980000-07:00|10FF000A|Dukaro Nezikaro|00010457|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|1E00|0|0|01|040001F1|0|41700000|| +39|2023-10-06T21:56:28.0980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8200|10000|||100.45|94.07|0.00|-3.11| +38|2023-10-06T21:56:28.0980000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:56:28.1410000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12| +39|2023-10-06T21:56:28.1410000-07:00|10FF0003|Gegehi Gehi|73814|73814|7400|10000|||100.36|100.57|0.00|-3.12| +37|2023-10-06T21:56:28.1860000-07:00|10FF0004|Buhojaqe Zijaqe|00010453|81541|81541|8200|10000|0||100.45|94.07|0.00|-3.11|1C04|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T21:56:28.1860000-07:00|74C|Everlasting Flight|21.00|400216AD|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|77698| +21|2023-10-06T21:56:28.1860000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|59280000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|35166208|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.08|83.73|0.00|-1.44|00010465|0|1| +261|2023-10-06T21:56:27.7850000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:56:28.2750000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21380000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|125322|129844|10000|10000|||90.87|84.98|0.00|2.06|73956|77430|10000|10000|||100.02|93.68|0.00|-3.09|00010466|0|1| +39|2023-10-06T21:56:28.2750000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||100.08|83.73|0.00|-3.11| +37|2023-10-06T21:56:28.3200000-07:00|10FF0007|Kehabiqo Febiqo|00010453|125322|129844|10000|10000|0||90.87|84.98|0.00|2.06|1505|0|0|01|0600074C|0|41A80000|| +26|2023-10-06T21:56:28.3200000-07:00|74C|Everlasting Flight|21.00|400216AD|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|77698| +21|2023-10-06T21:56:28.3200000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35166208|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|00010467|0|1| +21|2023-10-06T21:56:28.3200000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|3CC90000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|35166208|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|00010468|0|1| +37|2023-10-06T21:56:28.4090000-07:00|40021585|Zeromus|00010460|35151795||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:28.4090000-07:00|10FF0003|Gegehi Gehi|00010460|73814|73814|7400|10000|0||100.36|100.57|0.00|-3.12|2300|0|0|01|020004D2|0|41F00000|| +21|2023-10-06T21:56:28.4090000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35166208|40478540|10000|10000|||100.00|80.10|0.00|0.00|125322|129844|10000|10000|||90.87|84.98|0.00|2.06|00010469|0|1| +38|2023-10-06T21:56:28.4090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7400|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +37|2023-10-06T21:56:28.4540000-07:00|10FF000B|Pusu Rosu|00010453|79209|79209|8272|10000|0||100.14|100.05|0.00|-3.13|1806|0|0|01|0200074C|0|41A80000|| +26|2023-10-06T21:56:28.4540000-07:00|74C|Everlasting Flight|21.00|400216AD|Demi-Phoenix|10FF000B|Pusu Rosu|00|79209|77698| +21|2023-10-06T21:56:28.4990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2FD30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|35151795|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||100.45|94.07|0.00|-3.11|0001046A|0|1| +261|2023-10-06T21:56:28.2210000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T21:56:28.5880000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|2659|122648|129071|10000|10000|||109.23|85.45|0.00|-1.60|10FF0007|Kehabiqo Febiqo|0|125322|129844|10000|10000|||90.87|84.98|0.00|2.06| +37|2023-10-06T21:56:28.5880000-07:00|40021585|Zeromus|00010462|35127569||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:28.5880000-07:00|10FF0007|Kehabiqo Febiqo|00010462|129844||||||90.87|84.98|0.00|2.06| +38|2023-10-06T21:56:28.5880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||109.23|85.45|0.00|-1.60|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:28.6330000-07:00|40021585|Zeromus|0001045E|35114693||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:28.3110000-07:00|Change|10FF0006||| +37|2023-10-06T21:56:28.7210000-07:00|40021585|Zeromus|00010461|35109462||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:28.3110000-07:00|Change|10FF0003||| +37|2023-10-06T21:56:28.7660000-07:00|10FF0007|Kehabiqo Febiqo|00010463|129844|129844|10000|10000|0||90.87|84.98|0.00|2.06|1500|0|0|03|07000496|0|41000000|||||||||| +26|2023-10-06T21:56:28.7660000-07:00|496|Intervention|8.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +26|2023-10-06T21:56:28.7660000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +26|2023-10-06T21:56:28.7660000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +37|2023-10-06T21:56:28.7660000-07:00|40021585|Zeromus|00010464|35105066||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:28.8100000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||109.23|85.45|0.00|-1.60| +37|2023-10-06T21:56:28.8550000-07:00|40021585|Zeromus|00010468|35089505||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:28.8550000-07:00|400215A2|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|323B0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||109.23|85.45|0.00|-1.60|44|44|0|10000|||100.00|100.00|0.00|0.00|0001046B|0|1| +21|2023-10-06T21:56:28.8550000-07:00|400215A3|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|4F2C0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||90.87|84.98|0.00|2.06|44|44|0|10000|||100.00|100.00|0.00|0.00|0001046C|0|1| +21|2023-10-06T21:56:28.8990000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|A4F0000|BDA40E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|35089505|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8272|10000|||100.14|100.05|0.00|-3.13|0001046D|0|1| +261|2023-10-06T21:56:28.4950000-07:00|Change|10FF000B||| +37|2023-10-06T21:56:28.9440000-07:00|40021585|Zeromus|00010469|35086498||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:29.0780000-07:00|40021585|Zeromus|00010467|35084187||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:29.0780000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1682|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-2.33| +24|2023-10-06T21:56:29.0780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1C5B|81541|81541|7800|10000|||100.45|94.06|0.00|3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-2.33| +38|2023-10-06T21:56:29.0780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:56:29.0780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7800|10000|0||100.45|94.06|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:56:29.1660000-07:00|10FF0006|Wowobora Gogobora|HoT|0|16F6|81809|81809|9600|10000|||100.08|83.73|0.00|-3.11|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-2.33| +38|2023-10-06T21:56:29.1660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|0||100.08|83.73|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:29.2550000-07:00|40021585|Zeromus|00010465|35061363||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:56:29.2550000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:56:29.2550000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|348A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35084187|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|0001046E|0|1| +37|2023-10-06T21:56:29.3000000-07:00|40021585|Zeromus|0001046A|35049120||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:29.3000000-07:00|400216AD|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|154003|19240000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|35084187|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80|0001046F|0|1| +39|2023-10-06T21:56:29.3440000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|84.95|0.00|3.12| +21|2023-10-06T21:56:29.3440000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35084187|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7400|10000|||100.36|100.57|0.00|-3.12|00010470|0|1| +24|2023-10-06T21:56:29.3880000-07:00|10FF0003|Gegehi Gehi|HoT|0|1028|73814|73814|7400|10000|||100.36|100.57|0.00|-3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-2.33| +21|2023-10-06T21:56:29.3880000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35049120|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|00010471|0|1| +38|2023-10-06T21:56:29.3880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:29.3880000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T21:56:29.3880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7400|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||||||||| +24|2023-10-06T21:56:29.4320000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|15C0|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-2.33| +38|2023-10-06T21:56:29.4320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:56:29.4770000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||90.87|84.98|0.00|2.06| +24|2023-10-06T21:56:29.4770000-07:00|10FF000B|Pusu Rosu|HoT|0|1173|79209|79209|7872|10000|||100.14|100.05|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||100.02|93.68|0.00|-2.36| +38|2023-10-06T21:56:29.4770000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7872|10000|0||100.14|100.05|0.00|-3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:56:29.5220000-07:00|10FF0001|Sesuga Sapisuga|0001046B|116212|129071|10000|10000|0||109.23|85.45|0.00|-1.60|1300|0|0|01|09000000|0|0|| +37|2023-10-06T21:56:29.5220000-07:00|10FF0007|Kehabiqo Febiqo|0001046C|109576||||||90.87|84.98|0.00|2.06| +38|2023-10-06T21:56:29.5220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116212|129071|10000|10000|0||109.23|85.45|0.00|-1.60|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:29.5220000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +30|2023-10-06T21:56:29.5220000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +21|2023-10-06T21:56:29.5660000-07:00|400216A6|Automaton Queen|4078|Arm Punch|40021585|Zeromus|732003|1B6F0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|35049120|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00|00010472|0|1| +24|2023-10-06T21:56:29.5660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|20AA|109576|129844|10000|10000|||90.87|84.98|0.00|2.06|10FF0001|Sesuga Sapisuga|0|116212|129071|10000|10000|||109.23|85.45|0.00|-2.10| +38|2023-10-06T21:56:29.5660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117938|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:56:29.6100000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7872|10000|||100.14|100.05|0.00|-3.13|79209|79209|7872|10000|||100.14|100.05|0.00|-3.13|00010473|0|1| +261|2023-10-06T21:56:29.1540000-07:00|Change|400216A0||| +04|2023-10-06T21:56:29.2520000-07:00|400216A0|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||101.43|84.40|0.00|-3.11| +261|2023-10-06T21:56:29.2520000-07:00|Remove|400216A0| +24|2023-10-06T21:56:29.6560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7C4|116212|129071|10000|10000|||109.23|85.45|0.00|-2.10|10FF0001|Sesuga Sapisuga|0|116212|129071|10000|10000|||109.23|85.45|0.00|-2.10| +38|2023-10-06T21:56:29.6560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118200|129071|10000|10000|0||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:56:29.6560000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7872|10000|0||100.14|100.05|0.00|-3.13|0|0|0|||||||||| +30|2023-10-06T21:56:29.6560000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +21|2023-10-06T21:56:29.7000000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35712003|30E10000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|35049120|40478540|10000|10000|||100.00|80.10|0.00|0.00|118200|129071|10000|10000|||109.23|85.45|0.00|-2.10|00010474|0|1| +21|2023-10-06T21:56:29.7450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|68A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35049120|40478540|10000|10000|||100.00|80.10|0.00|0.00|118200|129071|10000|10000|||109.23|85.45|0.00|-2.10|00010475|0|1| +31|2023-10-06T21:56:29.7450000-07:00|10FF0001||||| +21|2023-10-06T21:56:29.7900000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|20380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35049120|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|00010476|0|1| +38|2023-10-06T21:56:29.7900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0||||||||||||| +30|2023-10-06T21:56:29.7900000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:56:29.8790000-07:00|40021585|Zeromus|0001046E|35035670||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:29.8790000-07:00|40021585|Zeromus|00010470|35035623||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:29.9230000-07:00|40021585|Zeromus|00010471|35033506||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:29.9230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7800|10000|0||100.35|90.61|0.00|3.09|0|0|0||||||||||||| +30|2023-10-06T21:56:29.9230000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +20|2023-10-06T21:56:29.9670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.35|90.61|0.00|3.09| +261|2023-10-06T21:56:29.5450000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T21:56:30.0120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117938|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:30.0120000-07:00|4A7|Rampart|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +20|2023-10-06T21:56:30.0570000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|100.36|100.57|0.00|-3.12| +38|2023-10-06T21:56:30.0570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|0||100.08|83.73|0.00|-3.11|0|0|0|||||||||| +30|2023-10-06T21:56:30.0570000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:56:30.1890000-07:00|40021585|Zeromus|0001046D|35030867|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:56:30.1890000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +21|2023-10-06T21:56:30.1890000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35033506|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.08|83.73|0.00|-3.11|00010477|0|1| +38|2023-10-06T21:56:30.1890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:30.1890000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +261|2023-10-06T21:56:29.7800000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:56:30.2330000-07:00|10FF000B|Pusu Rosu|00010473|79209|79209|7872|10000|0||100.14|100.05|0.00|-3.13|1800|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:56:30.2330000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T21:56:30.2330000-07:00|10FF000B|Pusu Rosu|79209|79209|8153|10000|||100.14|100.05|0.00|-3.13| +37|2023-10-06T21:56:30.2780000-07:00|40021585|Zeromus|00010475|35029193||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:30.3230000-07:00|40021585|Zeromus|00010472|35022170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:30.3230000-07:00|40021585|Zeromus|0001046F|35015734||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:30.3230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7400|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||||||||| +30|2023-10-06T21:56:30.3230000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +39|2023-10-06T21:56:30.3670000-07:00|400216A6|Automaton Queen|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00| +21|2023-10-06T21:56:30.4120000-07:00|400215A2|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|60700000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|118200|129071|10000|10000|||109.23|85.45|0.00|-2.10|44|44|0|10000|||100.00|100.00|0.00|0.00|00010478|0|1| +21|2023-10-06T21:56:30.4120000-07:00|400215A3|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|641C0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|117938|129844|10000|10000|||90.87|84.98|0.00|2.06|44|44|0|10000|||100.00|100.00|0.00|0.00|00010479|0|1| +21|2023-10-06T21:56:30.4120000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|712003|605F0000|204|24FD8000|0|0|0|0|0|0|0|0|0|0|0|0|35030867|40478540|10000|10000|||100.00|80.10|0.00|0.00|117938|129844|10000|10000|||90.87|84.98|0.00|2.06|0001047A|0|1| +261|2023-10-06T21:56:30.0020000-07:00|Change|10FF000B||| +37|2023-10-06T21:56:30.4560000-07:00|40021585|Zeromus|00010476|35007486||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:30.4560000-07:00|40021585|Zeromus|00010474|34994973||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:30.5000000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|118200|129071|10000|10000|||109.23|85.45|0.00|-2.10|118200|129071|10000|10000|||109.23|85.45|0.00|-2.10|0001047B|0|1| +21|2023-10-06T21:56:30.5450000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19910000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|35015734|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|0001047C|0|1| +21|2023-10-06T21:56:30.6350000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|597D0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34994973|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.08|83.73|0.00|-3.11|0001047D|0|1| +39|2023-10-06T21:56:30.6790000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:30.6790000-07:00|40021585|Zeromus|DoT|0|15D2|34994973|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8153|10000|||100.14|100.05|0.00|-3.13| +36|2023-10-06T21:56:30.6790000-07:00|1ACC|3| +38|2023-10-06T21:56:30.6790000-07:00|40021585|Zeromus|005A5A00|34989387|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T21:56:30.3270000-07:00|Change|10FF0006||| +37|2023-10-06T21:56:30.7230000-07:00|40021585|Zeromus|00010477|34989200||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:56:30.7230000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:56:30.7230000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|23430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34989387|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|0001047E|0|1| +04|2023-10-06T21:56:30.4290000-07:00|40021659|Liturgic Bell|00|5A|10FF000B|00||10349|13961|0|75049|0|10000|||98.30|104.62|0.00|2.71| +261|2023-10-06T21:56:30.5200000-07:00|Remove|40021659| +38|2023-10-06T21:56:30.8580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118200|129071|10000|10000|0||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:30.8580000-07:00|4A7|Rampart|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:56:30.9030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4C9A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34989200|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||100.36|90.44|0.00|-3.11|0001047F|0|1| +37|2023-10-06T21:56:30.9480000-07:00|40021585|Zeromus|0001047C|34982655||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:30.9920000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|92F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34982655|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|00010480|0|1| +261|2023-10-06T21:56:30.6140000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T21:56:31.0370000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|24FD|118200|129071|10000|10000|||109.23|85.45|0.00|-2.10|10FF0007|Kehabiqo Febiqo|0|117938|129844|10000|10000|||90.87|84.98|0.00|2.06| +37|2023-10-06T21:56:31.0370000-07:00|40021585|Zeromus|0001047A|34957984||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:31.0370000-07:00|10FF0007|Kehabiqo Febiqo|0001047A|127407||||||90.87|84.98|0.00|2.06| +37|2023-10-06T21:56:31.0370000-07:00|10FF0001|Sesuga Sapisuga|00010478|102981||||||109.23|85.45|0.00|-2.10| +37|2023-10-06T21:56:31.0370000-07:00|10FF0007|Kehabiqo Febiqo|00010479|101779||||||90.87|84.98|0.00|2.06| +38|2023-10-06T21:56:31.0370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102981|129071|10000|10000|0||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:56:31.0810000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7600|10000|||100.36|90.44|0.00|-3.11| +37|2023-10-06T21:56:31.1260000-07:00|10FF0001|Sesuga Sapisuga|0001047B|102981|129071|10000|10000|0||109.23|85.45|0.00|-2.10|1300|0|0|01|0200004C|0|41A00000|| +26|2023-10-06T21:56:31.1260000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:56:31.1260000-07:00|400216A6|Automaton Queen|4078|Arm Punch|40021585|Zeromus|736003|21320000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|34957984|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00|00010481|0|1| +39|2023-10-06T21:56:31.1260000-07:00|10FF0003|Gegehi Gehi|73814|73814|7600|10000|||100.36|100.57|0.00|-3.12| +39|2023-10-06T21:56:31.1700000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12| +261|2023-10-06T21:56:30.8440000-07:00|Change|10FF0003||||| +21|2023-10-06T21:56:31.2600000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|21430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34957984|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|00010482|0|1| +21|2023-10-06T21:56:31.2600000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|750003|28BC0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|34957984|40478540|10000|10000|||100.00|80.10|0.00|0.00|102981|129071|10000|10000|||109.23|85.45|0.00|-2.10|00010483|0|1| +38|2023-10-06T21:56:31.2600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102981|129071|10000|10000|0||109.23|85.45|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:31.2600000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:56:31.2600000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T21:56:31.3050000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||100.08|83.73|0.00|-3.11| +261|2023-10-06T21:56:30.9540000-07:00|Change|10FF0006||| +37|2023-10-06T21:56:31.3500000-07:00|40021585|Zeromus|0001047E|34948957||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:31.3500000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.14|100.05|0.00|-3.13| +261|2023-10-06T21:56:31.0640000-07:00|Change|10FF000B||||||||||||| +21|2023-10-06T21:56:31.4820000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|150003|2F330000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|34948957|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7600|10000|||100.36|100.57|0.00|-3.12|00010484|0|1| +38|2023-10-06T21:56:31.4820000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7400|10000|0||100.36|100.57|0.00|-3.12|0|0|0||||||| +26|2023-10-06T21:56:31.4820000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:56:31.4820000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:56:31.5270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102981|129071|10000|10000|0||109.23|85.45|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:31.5270000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +21|2023-10-06T21:56:31.5720000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34948957|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|00010485|0|1| +21|2023-10-06T21:56:31.6160000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|153D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|101779|129844|10000|10000|||90.87|84.98|0.00|2.06|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14|00010486|0|1| +37|2023-10-06T21:56:31.7050000-07:00|40021585|Zeromus|0001047D|34926048||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:31.7050000-07:00|40021585|Zeromus|0001047F|34906438||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:31.7050000-07:00|400216AD|Demi-Phoenix|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +37|2023-10-06T21:56:31.7500000-07:00|40021585|Zeromus|00010480|34904087||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:31.7940000-07:00|10FF0001|Sesuga Sapisuga|104271|129071|10000|10000|||109.23|85.45|0.00|-2.10| +21|2023-10-06T21:56:31.7940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|ADB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34906438|40478540|10000|10000|||100.00|80.10|0.00|0.00|101779|129844|10000|10000|||90.87|84.98|0.00|2.06|00010487|0|1| +37|2023-10-06T21:56:31.8830000-07:00|40021585|Zeromus|00010483|34893659||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:31.8830000-07:00|10FF0001|Sesuga Sapisuga|00010483|104271|129071|10000|10000|0||109.23|85.45|0.00|-2.10|1300|0|0|02|04000558|04|41F00000|||||| +37|2023-10-06T21:56:31.8830000-07:00|40021585|Zeromus|00010481|34885161||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:31.8830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|104271|129071|10000|10000|0||109.23|85.45|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:56:31.9270000-07:00|400216AD|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|154003|19280000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34904087|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80|00010488|0|1| +261|2023-10-06T21:56:31.5470000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:56:32.0160000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|DE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34885161|40478540|10000|10000|||100.00|80.10|0.00|0.00|104271|129071|10000|10000|||109.23|85.45|0.00|-2.10|00010489|0|1| +31|2023-10-06T21:56:32.0160000-07:00|10FF0001||||| +37|2023-10-06T21:56:32.0600000-07:00|40021585|Zeromus|00010482|34876646||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:32.0600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|746|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +24|2023-10-06T21:56:32.0600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|C1D|81541|81541|7600|10000|||100.21|88.56|0.00|-3.14|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +38|2023-10-06T21:56:32.0600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0||||||||||||| +38|2023-10-06T21:56:32.0600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7600|10000|0||100.21|88.56|0.00|-3.14|0|0|0||||||||||||| +37|2023-10-06T21:56:32.1050000-07:00|40021585|Zeromus|00010485|34873987||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:32.1490000-07:00|10FF0006|Wowobora Gogobora|HoT|0|775|81809|81809|9500|10000|||100.08|83.73|0.00|-3.11|10FF0006|Wowobora Gogobora|0|81809|81809|9500|10000|||100.08|83.73|0.00|-3.11| +21|2023-10-06T21:56:32.1490000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|101779|129844|10000|10000|||90.87|84.98|0.00|2.06|101779|129844|10000|10000|||90.87|84.98|0.00|2.06|0001048A|0|1| +38|2023-10-06T21:56:32.1490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101779|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:32.1490000-07:00|A75|Surging Tempest|48.50|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:56:32.1490000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:56:32.1490000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:56:32.1490000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:56:32.1490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|0||100.08|83.73|0.00|-3.11|0|0|0|||||||||| +261|2023-10-06T21:56:31.8590000-07:00|Change|10FF0003||||||||||||||| +26|2023-10-06T21:56:32.1930000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:56:32.1930000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|20C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34873987|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|0001048B|0|1| +21|2023-10-06T21:56:32.2380000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|714003|70720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34873987|40478540|10000|10000|||100.00|80.10|0.00|0.00|104271|129071|10000|10000|||109.23|85.45|0.00|-2.10|0001048C|0|1| +21|2023-10-06T21:56:32.2380000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34873987|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7600|10000|||100.21|88.60|-0.01|3.13|0001048D|0|1| +37|2023-10-06T21:56:32.2830000-07:00|40021585|Zeromus|00010484|34861904||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:32.2840000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|346E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|34873987|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8153|10000|||100.14|100.05|0.00|-3.13|0001048E|0|1| +37|2023-10-06T21:56:32.3270000-07:00|40021585|Zeromus|00010487|34859125||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:32.3270000-07:00|10FF0007|Kehabiqo Febiqo|00010487|101779|129844|10000|10000|0||90.87|84.98|0.00|2.06|1500|0|0|03|08000499|03|C1700000|||||||||| +39|2023-10-06T21:56:32.3720000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|84.95|0.00|3.12| +20|2023-10-06T21:56:32.3720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.21|88.61|0.00|3.13| +38|2023-10-06T21:56:32.3720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101779|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:32.3720000-07:00|59|Vengeance|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|129844|129844| +37|2023-10-06T21:56:32.4150000-07:00|10FF0007|Kehabiqo Febiqo|00010486|107216|129844|10000|10000|0||90.87|84.98|0.00|2.06|1500|0|0|03|08000499|03|C1700000|||||||||| +24|2023-10-06T21:56:32.4160000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|788|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +38|2023-10-06T21:56:32.4160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +39|2023-10-06T21:56:32.4610000-07:00|10FF0007|Kehabiqo Febiqo|108514|129844|10000|10000|||90.87|84.98|0.00|2.06| +24|2023-10-06T21:56:32.4610000-07:00|10FF000B|Pusu Rosu|HoT|0|7BF|79209|79209|7753|10000|||100.14|100.05|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7753|10000|||100.14|100.05|0.00|-3.13| +21|2023-10-06T21:56:32.4610000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|554003|43120000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|34859125|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7400|10000|||100.36|100.57|0.00|-3.12|0001048F|0|1| +38|2023-10-06T21:56:32.4610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7100|10000|0||100.36|100.57|0.00|-3.12|0|0|0|||| +30|2023-10-06T21:56:32.4610000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:56:32.4610000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8303|10000|0||100.14|100.05|0.00|-3.13|0|0|0||||||||||||| +261|2023-10-06T21:56:32.0940000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:56:32.5500000-07:00|40021585|Zeromus|00010489|34855573||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:32.5500000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1FDD|108514|129844|10000|10000|||90.87|84.98|0.00|2.06|10FF0001|Sesuga Sapisuga|0|104271|129071|10000|10000|||109.23|85.45|0.00|-2.10| +21|2023-10-06T21:56:32.5500000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750203|2E890000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|108514|129844|10000|10000|||90.87|84.98|0.00|2.06|34859125|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010490|0|1| +38|2023-10-06T21:56:32.5500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116671|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:56:32.6390000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7AB|104271|129071|10000|10000|||109.23|85.45|0.00|-2.10|10FF0001|Sesuga Sapisuga|0|104271|129071|10000|10000|||109.23|85.45|0.00|-2.10| +38|2023-10-06T21:56:32.6390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106234|129071|10000|10000|0||109.23|85.45|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T21:56:32.6830000-07:00|400216A6|Automaton Queen|4078|Arm Punch|40021585|Zeromus|732003|1AAD0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|34855573|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00|00010491|0|1| +38|2023-10-06T21:56:32.7280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116671|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:32.7280000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +37|2023-10-06T21:56:32.7730000-07:00|40021585|Zeromus|0001048C|34826787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:32.7730000-07:00|40021585|Zeromus|0001048D|34826641||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:32.7730000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|1F8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34855573|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|00010492|0|1| +21|2023-10-06T21:56:32.7730000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2D890000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|34855573|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|00010493|0|1| +37|2023-10-06T21:56:32.8180000-07:00|40021585|Zeromus|0001048B|34818257||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:32.8620000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|762A0000|200204|3F1B8000|0|0|0|0|0|0|0|0|0|0|0|0|34818257|40478540|10000|10000|||100.00|80.10|0.00|0.00|116671|129844|10000|10000|||90.87|84.98|0.00|2.06|00010494|0|1| +38|2023-10-06T21:56:32.8620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116671|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:32.8620000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +37|2023-10-06T21:56:32.9060000-07:00|10FF0007|Kehabiqo Febiqo|0001048A|116671|129844|10000|10000|0||90.87|84.98|0.00|2.06|1500|0|0|03|08000499|02|41700000|||||||||| +38|2023-10-06T21:56:32.9070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116671|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:32.9500000-07:00|40021585|Zeromus|00010488|34811817||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:32.9950000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|120A0000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|34818257|40478540|10000|10000|||100.00|80.10|0.00|0.00|106234|129071|10000|10000|||109.23|85.45|0.00|-2.10|00010495|0|1| +261|2023-10-06T21:56:32.5740000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:56:33.1300000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|5AC20000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34811817|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||100.08|83.73|0.00|-3.11|00010496|0|1| +261|2023-10-06T21:56:32.6710000-07:00|Change|10FF0006||| +37|2023-10-06T21:56:33.1730000-07:00|40021585|Zeromus|00010493|34800160||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:33.2170000-07:00|40021585|Zeromus|0001048F|34782990||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:33.2170000-07:00|10FF000B|Pusu Rosu|79209|79209|8584|10000|||100.14|100.05|0.00|-3.13| +261|2023-10-06T21:56:32.7890000-07:00|Change|10FF0003||| +38|2023-10-06T21:56:33.3060000-07:00|400216A6|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.52|90.47|0.00|-3.00|0|0|0||||||| +26|2023-10-06T21:56:33.3060000-07:00|30|Well Fed|1480.78|10FF0008|Kokosaze Lulusaze|400216A6|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:56:33.3060000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|400216A6|Automaton Queen|01|85668|40478540| +21|2023-10-06T21:56:33.3060000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|754003|40540000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34782990|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7600|10000|||100.21|88.61|0.00|-3.11|00010497|0|1| +37|2023-10-06T21:56:33.3510000-07:00|10FF0007|Kehabiqo Febiqo|00010490|104758||||||90.87|84.98|0.00|2.06| +39|2023-10-06T21:56:33.3510000-07:00|400216A6|Automaton Queen|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00| +21|2023-10-06T21:56:33.3510000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34782990|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||100.08|83.73|0.00|-3.11|00010498|0|1| +37|2023-10-06T21:56:33.3960000-07:00|40021585|Zeromus|00010492|34774913||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:33.4400000-07:00|40021585|Zeromus|00010491|34768084||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:33.4850000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|3F1B|106234|129071|10000|10000|||109.23|85.45|0.00|-2.10|10FF0007|Kehabiqo Febiqo|0|104758|129844|10000|10000|||90.87|84.98|0.00|2.06| +37|2023-10-06T21:56:33.4850000-07:00|40021585|Zeromus|00010494|34737834||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:33.4850000-07:00|10FF0007|Kehabiqo Febiqo|00010494|120913||||||90.87|84.98|0.00|2.06| +21|2023-10-06T21:56:33.4850000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|400C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34768084|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7100|10000|||100.36|100.57|0.00|-3.12|00010499|0|1| +38|2023-10-06T21:56:33.4850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122389|129071|10000|10000|0||109.23|85.45|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:33.0170000-07:00|Change|10FF000B||| +21|2023-10-06T21:56:33.5310000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|712003|1C460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34768084|40478540|10000|10000|||100.00|80.10|0.00|0.00|104758|129844|10000|10000|||90.87|84.98|0.00|2.06|0001049A|0|1| +21|2023-10-06T21:56:33.5310000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19716003|58B20000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|34768084|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|0001049B|0|1| +38|2023-10-06T21:56:33.5310000-07:00|40021585|Zeromus|005A5A00|34737834|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T21:56:33.5310000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T21:56:33.5310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:33.5310000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:56:33.5740000-07:00|40021585|Zeromus|0001048E|34724412|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +24|2023-10-06T21:56:33.6630000-07:00|40021585|Zeromus|DoT|0|27F4|34737834|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8584|10000|||100.14|100.05|0.00|-3.13| +26|2023-10-06T21:56:33.6630000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:56:33.6630000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|21860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34737834|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|0001049C|0|1| +21|2023-10-06T21:56:33.6630000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34737834|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|0001049D|0|1| +36|2023-10-06T21:56:33.6630000-07:00|1BA8|3| +38|2023-10-06T21:56:33.6630000-07:00|40021585|Zeromus|005A5A00|34714184|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:56:33.7080000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +21|2023-10-06T21:56:33.7080000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|393C0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|34714184|40478540|10000|10000|||100.00|80.10|0.00|0.00|122389|129071|10000|10000|||109.23|85.45|0.00|-2.10|0001049E|0|1| +21|2023-10-06T21:56:33.7530000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|12720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34714184|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|0001049F|0|1| +20|2023-10-06T21:56:33.7970000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.14|100.05|0.00|-3.13| +37|2023-10-06T21:56:33.8870000-07:00|40021585|Zeromus|00010498|34713987|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +37|2023-10-06T21:56:34.0190000-07:00|40021585|Zeromus|00010495|34709369|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|02000CB6|0|C1700000|||||| +26|2023-10-06T21:56:34.0190000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +261|2023-10-06T21:56:33.6300000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:56:34.0630000-07:00|40021585|Zeromus|0001049E|34694717|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +37|2023-10-06T21:56:34.1080000-07:00|40021585|Zeromus|00010497|34678249|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +39|2023-10-06T21:56:34.1080000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7400|10000|||100.23|88.58|0.00|3.14| +39|2023-10-06T21:56:34.1530000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12| +39|2023-10-06T21:56:34.1530000-07:00|10FF0003|Gegehi Gehi|73814|73814|7300|10000|||100.36|100.57|0.00|-3.12| +21|2023-10-06T21:56:34.1530000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|714003|38930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34709369|40478540|10000|10000|||100.00|80.10|0.00|0.00|120913|129844|10000|10000|||90.87|84.98|0.00|2.06|000104A0|0|1| +261|2023-10-06T21:56:33.8610000-07:00|Change|10FF0003||| +37|2023-10-06T21:56:34.1960000-07:00|40021585|Zeromus|0001049A|34671011|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +37|2023-10-06T21:56:34.1960000-07:00|40021585|Zeromus|00010496|34647777|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +21|2023-10-06T21:56:34.2410000-07:00|400216A6|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|730003|2E850000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|34678249|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00|000104A1|0|1| +37|2023-10-06T21:56:34.2860000-07:00|40021585|Zeromus|0001049C|34639195|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +37|2023-10-06T21:56:34.2870000-07:00|40021585|Zeromus|0001049F|34634473|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +39|2023-10-06T21:56:34.2870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9400|10000|||100.08|83.73|0.00|-3.11| +21|2023-10-06T21:56:34.2870000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|133E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34678249|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|000104A2|0|1| +21|2023-10-06T21:56:34.2870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34678249|40478540|10000|10000|||100.00|80.10|0.00|0.00|122389|129071|10000|10000|||109.23|85.45|0.00|-2.10|000104A3|0|1| +21|2023-10-06T21:56:34.2870000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34678249|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7300|10000|||100.36|100.57|0.00|-3.12|000104A4|0|1| +261|2023-10-06T21:56:33.8610000-07:00|Change|10FF0006||| +31|2023-10-06T21:56:34.2870000-07:00|10FF0001||||| +37|2023-10-06T21:56:34.3310000-07:00|40021585|Zeromus|0001049B|34611767|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|41700000|| +38|2023-10-06T21:56:34.3310000-07:00|40021585|Zeromus|005A5A00|34611767|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:56:34.4200000-07:00|40021585|Zeromus|0001049D|34609484||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:34.0860000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T21:56:34.6450000-07:00|40021585|Zeromus|00010499|34593088||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:34.7330000-07:00|400216AD|Demi-Phoenix|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +21|2023-10-06T21:56:34.7330000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|33300000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|34593088|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8584|10000|||100.14|100.05|0.00|-3.13|000104A5|0|1| +37|2023-10-06T21:56:34.7790000-07:00|40021585|Zeromus|000104A0|34578605||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:34.7790000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|752003|B69F0000|4|26C08000|0|0|0|0|0|0|0|0|0|0|0|0|34593088|40478540|10000|10000|||100.00|80.10|0.00|0.00|122389|129071|10000|10000|||109.23|85.45|0.00|-2.10|000104A6|0|1| +20|2023-10-06T21:56:34.7790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.12|87.77|0.00|3.14| +38|2023-10-06T21:56:34.7790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122389|129071|9000|10000|0||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:56:34.7790000-07:00|558|Requiescat|27.06|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:56:34.7790000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:56:34.7790000-07:00|10FF0001||||| +261|2023-10-06T21:56:34.3750000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:56:34.8230000-07:00|40021585|Zeromus|000104A3|34576339||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:34.8230000-07:00|40021585|Zeromus|000104A4|34576312||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:34.8230000-07:00|10FF0001|Sesuga Sapisuga|123679|129071|9200|10000|||109.23|85.45|0.00|-2.10| +21|2023-10-06T21:56:34.9120000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|752003|3DB20000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|34576312|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7300|10000|||100.25|98.63|0.00|-3.09|000104A7|0|1| +21|2023-10-06T21:56:34.9120000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|000104A8|0|1| +38|2023-10-06T21:56:34.9120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:56:34.9120000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +21|2023-10-06T21:56:34.9560000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14EA0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|120913|129844|10000|10000|||90.87|84.98|0.00|2.06|73956|77430|10000|10000|||100.02|93.68|0.00|-3.09|000104A9|0|1| +37|2023-10-06T21:56:35.0890000-07:00|40021585|Zeromus|000104A2|34571386||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:34.5570000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:56:35.0890000-07:00|400216AD|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|152003|1EBD0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|34576312|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80|000104AA|0|1| +24|2023-10-06T21:56:35.0890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|74A|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +24|2023-10-06T21:56:35.0890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7C3|81541|81541|7400|10000|||100.11|87.75|0.00|-3.14|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +38|2023-10-06T21:56:35.0900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0||||||||||||| +38|2023-10-06T21:56:35.0900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7400|10000|0||100.11|87.75|0.00|-3.13|0|0|0||||||||||||| +21|2023-10-06T21:56:35.1340000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|42570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34571386|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|000104AB|0|1| +38|2023-10-06T21:56:35.1340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0||||||||||||| +30|2023-10-06T21:56:35.1340000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +24|2023-10-06T21:56:35.1780000-07:00|10FF0006|Wowobora Gogobora|HoT|0|CE1|81809|81809|9400|10000|||100.08|83.73|0.00|-3.11|10FF0006|Wowobora Gogobora|0|81809|81809|9400|10000|||100.08|83.73|0.00|-3.11| +21|2023-10-06T21:56:35.1780000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AD80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34571386|40478540|10000|10000|||100.00|80.10|0.00|0.00|120913|129844|10000|10000|||90.87|84.98|0.00|2.06|000104AC|0|1| +38|2023-10-06T21:56:35.1780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|0||100.08|83.73|0.00|-3.11|0|0|0|||||||||| +21|2023-10-06T21:56:35.3120000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|A0A90000|200204|3EB58000|0|0|0|0|0|0|0|0|0|0|0|0|34571386|40478540|10000|10000|||100.00|80.10|0.00|0.00|120913|129844|10000|10000|||90.87|84.98|0.00|2.06|000104AD|0|1| +38|2023-10-06T21:56:35.3120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120913|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:35.3120000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:56:35.3560000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.90|84.95|0.00|3.12| +261|2023-10-06T21:56:34.9040000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:56:35.4010000-07:00|40021585|Zeromus|000104A6|34524635||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:35.4010000-07:00|10FF0001|Sesuga Sapisuga|000104A6|129071||||||109.23|85.45|0.00|-2.10| +21|2023-10-06T21:56:35.4010000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|000104AE|0|1| +38|2023-10-06T21:56:35.4010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:56:35.4010000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +24|2023-10-06T21:56:35.4470000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|7E4|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +21|2023-10-06T21:56:35.4470000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|132C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34524635|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||109.23|85.45|0.00|-2.10|000104AF|0|1| +38|2023-10-06T21:56:35.4470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +39|2023-10-06T21:56:35.4910000-07:00|10FF0007|Kehabiqo Febiqo|122211|129844|10000|10000|||90.87|84.98|0.00|2.06| +24|2023-10-06T21:56:35.4910000-07:00|10FF000B|Pusu Rosu|HoT|0|802|79209|79209|8184|10000|||100.14|100.00|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|8184|10000|||100.14|100.00|0.00|-3.14| +38|2023-10-06T21:56:35.4910000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8734|10000|0||100.14|100.00|0.00|-3.14|0|0|0||||||||||||| +37|2023-10-06T21:56:35.5350000-07:00|40021585|Zeromus|000104A1|34512726||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:35.5350000-07:00|40021585|Zeromus|000104A7|34496932||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:35.5350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122211|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:35.5350000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T21:56:35.5350000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:35.5350000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|129071|129844| +38|2023-10-06T21:56:35.5350000-07:00|400216A6|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.52|90.47|0.00|-3.00|0|0|0|||| +30|2023-10-06T21:56:35.5350000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|400216A6|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:56:35.1370000-07:00|Change|10FF000B||||||||||||||||||| +24|2023-10-06T21:56:35.5790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F4E|122211|129844|10000|10000|||90.87|84.98|0.00|2.06|10FF0007|Kehabiqo Febiqo|0|122211|129844|10000|10000|||90.87|84.98|0.00|2.06| +21|2023-10-06T21:56:35.5790000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|34390000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|122211|129844|10000|10000|||90.87|84.98|0.00|2.06|34524635|40478540|10000|10000|||100.00|80.10|0.00|0.00|000104B0|0|1| +38|2023-10-06T21:56:35.5790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:35.1370000-07:00|Change|400215A3||||||||| +261|2023-10-06T21:56:35.1370000-07:00|Change|400215A2||||||||| +00|2023-10-06T21:56:35.0000000-07:00|0044|Zeromus|Ah, the Darkness! It riseth!| +21|2023-10-06T21:56:35.6240000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|152003|8A710000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34524635|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||100.08|83.73|0.00|-3.11|000104B1|0|1| +261|2023-10-06T21:56:35.2380000-07:00|Change|10FF0006||| +20|2023-10-06T21:56:35.6680000-07:00|40021585|Zeromus|8B46|Visceral Whirl|40021585|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:35.6680000-07:00|400215A2|Zeromus|8B47|Visceral Whirl|400215A2|Zeromus|8.500|119.90|80.10|0.00|-0.79| +20|2023-10-06T21:56:35.6680000-07:00|400215A3|Zeromus|8B48|Visceral Whirl|400215A3|Zeromus|8.500|80.10|80.10|0.00|0.79| +24|2023-10-06T21:56:35.6680000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7E1|129071|129071|9200|10000|||109.23|85.45|0.00|-2.10|10FF0001|Sesuga Sapisuga|0|129071|129071|9200|10000|||109.23|85.45|0.00|-2.10| +38|2023-10-06T21:56:35.6680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:56:35.2380000-07:00|Change|40021585||||||||| +37|2023-10-06T21:56:35.7120000-07:00|40021585|Zeromus|000104AC|34494156||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:35.7120000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|33110000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34496932|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7400|10000|||100.11|87.75|0.00|-3.13|000104B2|0|1| +37|2023-10-06T21:56:35.7570000-07:00|40021585|Zeromus|000104AB|34477173||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:35.8010000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|000104B3|0|1| +38|2023-10-06T21:56:35.8010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0||||||||||||| +26|2023-10-06T21:56:35.8010000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:56:35.3360000-07:00|Change|10FF0001||| +21|2023-10-06T21:56:35.9360000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|250003|D6500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34477173|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|000104B4|0|1| +21|2023-10-06T21:56:35.9360000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|C4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34477173|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|000104B5|0|1| +38|2023-10-06T21:56:35.9360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:35.9360000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +30|2023-10-06T21:56:35.9360000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:56:36.0240000-07:00|40021585|Zeromus|000104AF|34472265||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:36.0240000-07:00|40021585|Zeromus|000104A5|34459161||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:35.6530000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T21:56:35.6530000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T21:56:35.6530000-07:00|Change|400215A2||||||||||||| +37|2023-10-06T21:56:36.1130000-07:00|40021585|Zeromus|000104AA|34451292||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:35.7670000-07:00|Change|10FF0003||||||||| +38|2023-10-06T21:56:36.2470000-07:00|400216A6|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.52|90.47|0.00|-3.00|0|0|0||||||| +26|2023-10-06T21:56:36.2470000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|400216A6|Automaton Queen|01|85668|40478540| +39|2023-10-06T21:56:36.2470000-07:00|10FF000B|Pusu Rosu|79209|79209|9015|10000|||100.11|94.91|0.00|-3.14| +38|2023-10-06T21:56:36.2470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||100.08|83.73|0.00|-3.11|0|0|0|||||||||| +26|2023-10-06T21:56:36.2470000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:56:36.2470000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|754003|29BB0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|34451292|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||100.08|83.73|0.00|-3.11|000104B6|0|1| +38|2023-10-06T21:56:36.2470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||100.08|83.73|0.00|-3.11|0|0|0||||||||||||| +26|2023-10-06T21:56:36.2470000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:56:36.2910000-07:00|400216A6|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|732003|58790000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|34451292|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00|000104B7|0|1| +20|2023-10-06T21:56:36.2910000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.11|94.91|0.00|-3.14| +21|2023-10-06T21:56:36.3340000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EEF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34451292|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|000104B8|0|1| +37|2023-10-06T21:56:36.3800000-07:00|10FF0007|Kehabiqo Febiqo|000104B0|116475||||||90.87|84.98|0.00|2.06| +39|2023-10-06T21:56:36.3800000-07:00|400216A6|Automaton Queen|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00| +37|2023-10-06T21:56:36.4230000-07:00|10FF0008|Kokosaze Lulusaze|000104B3|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|1F00|0|0|01|02000353|0|40A00000|| +38|2023-10-06T21:56:36.4230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0||||||||||||| +37|2023-10-06T21:56:36.4680000-07:00|40021585|Zeromus|000104AD|34410163||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:36.4680000-07:00|10FF0007|Kehabiqo Febiqo|000104AD|129844||||||90.87|84.98|-0.02|2.06| +37|2023-10-06T21:56:36.4680000-07:00|40021585|Zeromus|000104B5|34407015||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:36.4680000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37750003|2FA10000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|34451292|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7300|10000|||100.05|88.78|0.00|-3.13|000104B9|0|1| +37|2023-10-06T21:56:36.5130000-07:00|40021585|Zeromus|000104B2|34393942||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:36.5130000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|FFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34451292|40478540|10000|10000|||100.00|80.10|0.00|0.00|116475|129844|10000|10000|||90.87|84.98|-0.02|2.06|000104BA|0|1| +21|2023-10-06T21:56:36.5130000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34451292|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||100.08|83.73|0.00|-3.11|000104BB|0|1| +261|2023-10-06T21:56:36.1080000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T21:56:36.5580000-07:00|40021585|Zeromus|000104B4|34339078||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:36.5580000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34393942|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||109.23|85.45|0.00|-2.10|000104BC|0|1| +31|2023-10-06T21:56:36.5580000-07:00|10FF0001||||| +24|2023-10-06T21:56:36.6470000-07:00|40021585|Zeromus|DoT|0|1A7B|34393942|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9200|10000|||109.23|85.45|0.00|-2.10| +21|2023-10-06T21:56:36.6470000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|726003|CFAD0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|34393942|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|000104BD|0|1| +36|2023-10-06T21:56:36.6470000-07:00|1C84|3| +38|2023-10-06T21:56:36.6470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0||||||||||||| +30|2023-10-06T21:56:36.6470000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:56:36.6470000-07:00|40021585|Zeromus|005A5A00|34332299|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:56:36.6910000-07:00|40021585|Zeromus|000104B1|34296858||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:36.6910000-07:00|10FF0006|Wowobora Gogobora|000104B1|81809|81809|9100|10000|0||100.08|83.73|0.00|-3.11|1B00|0|0|01|03000A8D|0|C2700000|| +39|2023-10-06T21:56:36.6910000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-2.84| +38|2023-10-06T21:56:36.7340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.87|84.98|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:36.7340000-07:00|496|Intervention|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +38|2023-10-06T21:56:36.9120000-07:00|400216AD|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||101.91|85.44|0.00|-2.80|0|0|0||||||| +26|2023-10-06T21:56:36.9120000-07:00|30|Well Fed|885.71|10FF0006|Wowobora Gogobora|400216AD|Demi-Phoenix|2964|77698|81809| +26|2023-10-06T21:56:36.9120000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|400216AD|Demi-Phoenix|01|77698|40478540| +21|2023-10-06T21:56:36.9120000-07:00|10FF0006|Wowobora Gogobora|4084|Enkindle Phoenix|40021585|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|34296858|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||100.08|83.73|0.00|-3.11|000104BE|0|1| +21|2023-10-06T21:56:37.0010000-07:00|400216AD|Demi-Phoenix|4086|Revelation|40021585|Zeromus|152003|19F44001|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|34296858|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80|000104BF|0|1| +37|2023-10-06T21:56:37.0450000-07:00|40021585|Zeromus|000104BB|34296627||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:37.0450000-07:00|10FF0006|Wowobora Gogobora|000104BB|81809|81809|9100|10000|0||100.08|83.73|0.00|-3.11|1B00|0|0|01|03000A8D|0|C2700000|| +37|2023-10-06T21:56:37.0910000-07:00|40021585|Zeromus|000104B8|34292804||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:37.0910000-07:00|40021585|Zeromus|000104BC|34290673||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:37.0910000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7200|10000|||100.01|86.78|0.00|-3.14| +261|2023-10-06T21:56:36.7090000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:56:37.1350000-07:00|40021585|Zeromus|000104B9|34278480||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:37.1350000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12| +39|2023-10-06T21:56:37.1350000-07:00|10FF0003|Gegehi Gehi|73814|73814|7500|10000|||99.93|86.45|0.00|-3.11| +37|2023-10-06T21:56:37.1790000-07:00|40021585|Zeromus|000104BA|34274388||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:37.1790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.99|86.58|-0.01|-3.14| +21|2023-10-06T21:56:37.2240000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|4E160000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|34290673|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9015|10000|||100.11|94.62|0.00|-3.13|000104C0|0|1| +261|2023-10-06T21:56:36.8240000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:56:37.2700000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9300|10000|||100.08|83.73|0.00|-3.11| +21|2023-10-06T21:56:37.2700000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|197D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34274388|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|000104C1|0|1| +21|2023-10-06T21:56:37.2700000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|750003|5E2E0000|200004|3D638000|0|0|0|0|0|0|0|0|0|0|0|0|34274388|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||109.23|85.45|0.00|-2.10|000104C2|0|1| +38|2023-10-06T21:56:37.2700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||109.23|85.45|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:56:37.2700000-07:00|558|Requiescat|24.57|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:56:37.2700000-07:00|10FF0001||||| +261|2023-10-06T21:56:36.8240000-07:00|Change|10FF0006||| +261|2023-10-06T21:56:36.8240000-07:00|Change|10FF0001||| +37|2023-10-06T21:56:37.3130000-07:00|40021585|Zeromus|000104B6|34263705||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:37.3130000-07:00|10FF0006|Wowobora Gogobora|000104B6|81809|81809|9300|10000|0||100.08|83.73|0.00|-3.11|1B00|0|0|01|03000A8D|0|42700000|| +38|2023-10-06T21:56:37.3130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|0||100.08|83.73|0.00|-3.11|0|0|0||||||||||||| +21|2023-10-06T21:56:37.5360000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|000104C3|0|1| +38|2023-10-06T21:56:37.5360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:56:37.5360000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T21:56:37.1660000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:56:37.6700000-07:00|40021585|Zeromus|000104BD|34210540||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:37.7150000-07:00|400216AD|Demi-Phoenix|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +21|2023-10-06T21:56:37.7610000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|767E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34210540|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.96|84.98|0.00|3.08|000104C4|0|1| +21|2023-10-06T21:56:37.7610000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34210540|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7500|10000|||99.90|85.83|0.00|-3.10|000104C5|0|1| +38|2023-10-06T21:56:37.7610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.96|84.98|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:37.7610000-07:00|499|Inner Release|10.10|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +39|2023-10-06T21:56:37.8070000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8400|10000|||107.33|85.57|0.00|-3.01| +37|2023-10-06T21:56:37.8950000-07:00|40021585|Zeromus|000104C1|34204015||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:37.8950000-07:00|40021585|Zeromus|000104C2|34179905||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:37.8950000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|17C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34210540|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|000104C6|0|1| +37|2023-10-06T21:56:38.0290000-07:00|40021585|Zeromus|000104BF|34107725||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:38.0290000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A750003|46DE0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|34179905|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7500|10000|||99.90|85.83|0.00|-3.10|000104C7|0|1| +21|2023-10-06T21:56:38.0290000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|000104C8|0|1| +38|2023-10-06T21:56:38.0290000-07:00|400216AD|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||101.91|85.44|0.00|-2.80|0|0|0|||| +30|2023-10-06T21:56:38.0290000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|400216AD|Demi-Phoenix|01|77698|40478540| +38|2023-10-06T21:56:38.0290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.90|84.95|0.00|3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:56:38.0290000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +261|2023-10-06T21:56:37.6690000-07:00|Change|10FF0004||||||||||||||||||| +24|2023-10-06T21:56:38.0730000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7A7|90216|90216|10000|10000|||100.05|82.78|0.00|-3.12|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +24|2023-10-06T21:56:38.0730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|C7C|81541|81541|7200|10000|||99.99|86.56|0.00|-3.14|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +38|2023-10-06T21:56:38.0730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.05|82.78|0.00|-3.12|0|0|0||||||||||||| +38|2023-10-06T21:56:38.0730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7200|10000|0||99.99|86.56|0.00|-3.14|0|0|0||||||||||||| +21|2023-10-06T21:56:38.1170000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|154003|6DAF0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|34107725|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||100.08|83.73|0.00|-3.11|000104C9|0|1| +21|2023-10-06T21:56:38.1170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|32CF0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|34107725|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7200|10000|||99.99|86.56|0.00|-3.14|000104CA|0|1| +21|2023-10-06T21:56:38.1180000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|F240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34107725|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.90|84.95|0.00|3.12|000104CB|0|1| +24|2023-10-06T21:56:38.1620000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7C0|81809|81809|9300|10000|||100.08|83.73|0.00|-3.11|10FF0006|Wowobora Gogobora|0|81809|81809|9300|10000|||100.08|83.73|0.00|-3.11| +38|2023-10-06T21:56:38.1620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|0||100.08|83.73|0.00|-3.11|0|0|0||||||||||||| +261|2023-10-06T21:56:37.7810000-07:00|Change|10FF0006||||||| +261|2023-10-06T21:56:37.8950000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:56:38.2520000-07:00|40021585|Zeromus|000104B7|34085076||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:38.2520000-07:00|400216A6|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.52|90.47|0.00|-3.00|0|0|0|||| +30|2023-10-06T21:56:38.2520000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|400216A6|Automaton Queen|01|85668|40478540| +37|2023-10-06T21:56:38.2940000-07:00|40021585|Zeromus|000104C5|34085047||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:38.3410000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.89|84.95|0.00|3.13| +21|2023-10-06T21:56:38.3410000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34085047|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|6800|10000|||99.99|86.56|0.00|-3.14|000104CC|0|1| +37|2023-10-06T21:56:38.3830000-07:00|40021585|Zeromus|000104C4|34054713||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:38.4280000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|CF4|83502|83502|10000|10000|||99.89|84.95|0.00|3.13|400216AD|Demi-Phoenix|0|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +38|2023-10-06T21:56:38.4280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.89|84.95|0.00|3.13|0|0|0||||||||||||||||||| +39|2023-10-06T21:56:38.4730000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||90.96|84.98|0.00|2.07| +24|2023-10-06T21:56:38.4730000-07:00|10FF000B|Pusu Rosu|HoT|0|758|79209|79209|8615|10000|||99.11|91.38|0.00|-2.83|10FF000B|Pusu Rosu|0|79209|79209|8615|10000|||99.11|91.38|0.00|-2.83| +38|2023-10-06T21:56:38.4730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8400|10000|0||103.43|86.07|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:38.4730000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:56:38.4730000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9165|10000|0||99.11|91.38|0.00|-2.83|0|0|0||||||||||||| +261|2023-10-06T21:56:38.1230000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:56:38.5170000-07:00|40021585|Zeromus|000104C0|34034723||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:38.5630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F12|129844|129844|10000|10000|||90.96|84.98|0.00|2.07|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||90.96|84.98|0.00|2.07| +21|2023-10-06T21:56:38.5630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34034723|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.96|84.98|0.00|2.07|000104CD|0|1| +38|2023-10-06T21:56:38.5630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.96|84.98|0.00|2.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:38.2230000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:56:38.6060000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|552003|840C0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|34034723|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.86|84.95|0.00|-3.13|000104CE|0|1| +38|2023-10-06T21:56:38.6070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.86|84.95|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:38.6070000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T21:56:38.6070000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T21:56:38.6510000-07:00|40021585|Zeromus|000104C7|34016581||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:38.6510000-07:00|40021585|Zeromus|000104CB|34012705||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:38.6510000-07:00|10FF000A|Dukaro Nezikaro|000104CB|83502|83502|10000|10000|0||99.61|84.95|-0.02|2.98|1E00|0|0|01|03000A82|01|C1F00000|| +24|2023-10-06T21:56:38.6510000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7B7|129071|129071|8400|10000|||102.13|86.23|0.00|-3.02|10FF0001|Sesuga Sapisuga|0|129071|129071|8400|10000|||102.13|86.23|0.00|-3.02| +38|2023-10-06T21:56:38.6510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8400|10000|0||102.13|86.23|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:56:38.6950000-07:00|40021585|Zeromus|000104C6|34006622||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:38.8300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|E440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|34006622|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||101.58|86.03|0.00|-2.98|000104CF|0|1| +31|2023-10-06T21:56:38.8310000-07:00|10FF0001||||| +37|2023-10-06T21:56:38.8730000-07:00|40021585|Zeromus|000104CC|34006474||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:38.9180000-07:00|40021585|Zeromus|000104CA|33993467||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:39.0080000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33993467|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.30|82.67|0.00|-1.83|000104D0|0|1| +21|2023-10-06T21:56:39.0520000-07:00|400216AD|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|150003|12CB0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|33993467|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80|000104D1|0|1| +37|2023-10-06T21:56:39.0960000-07:00|40021585|Zeromus|000104CD|33990587||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:38.7160000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:56:39.1840000-07:00|40021585|Zeromus|000104C9|33962508||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:38.8290000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:56:39.1850000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|38F50000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|33962508|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.96|82.58|0.00|-1.68|000104D2|0|1| +39|2023-10-06T21:56:39.2290000-07:00|10FF000B|Pusu Rosu|79209|79209|9446|10000|||94.78|89.03|0.00|-2.17| +261|2023-10-06T21:56:38.8290000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:56:38.8290000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:56:39.3190000-07:00|40021585|Zeromus|000104CE|33928704||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:39.3190000-07:00|10FF000A|Dukaro Nezikaro|000104CE|83502|83502|10000|10000|0||96.54|84.87|0.00|-3.13|1E00|0|0|01|03000A82|01|41F00000|| +38|2023-10-06T21:56:39.3190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||96.54|84.87|0.00|-3.13|0|0|0||||||||||||||||||| +37|2023-10-06T21:56:39.3630000-07:00|40021585|Zeromus|000104CF|33925052||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:39.3630000-07:00|400216A6|Automaton Queen|82193|85668|10000|10000|||101.52|90.47|0.00|-3.00| +21|2023-10-06T21:56:39.4070000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|29DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33962508|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||96.54|84.87|0.00|-3.13|000104D3|0|1| +261|2023-10-06T21:56:39.0620000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T21:56:39.0620000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:56:39.6740000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:39.6740000-07:00|40021585|Zeromus|DoT|0|1A92|33925052|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8400|10000|||96.87|85.04|0.00|-3.10| +21|2023-10-06T21:56:39.6740000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33925052|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||96.64|82.47|0.00|-2.31|000104D4|0|1| +36|2023-10-06T21:56:39.6740000-07:00|1D60|3| +38|2023-10-06T21:56:39.6740000-07:00|40021585|Zeromus|005A5A00|33918250|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +20|2023-10-06T21:56:39.7190000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|96.47|83.97|-0.02|-2.22| +37|2023-10-06T21:56:39.7640000-07:00|40021585|Zeromus|000104D0|33915958||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:39.7640000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|754003|7BB10000|4|26C58000|0|0|0|0|0|0|0|0|0|0|0|0|33918250|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||96.37|84.64|0.00|3.13|000104D5|0|1| +38|2023-10-06T21:56:39.7640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7400|10000|0||96.37|84.64|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:56:39.7640000-07:00|558|Requiescat|22.07|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:56:39.7640000-07:00|10FF0001||||| +21|2023-10-06T21:56:39.8080000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|191D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33918250|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.76|82.49|0.00|-2.36|000104D6|0|1| +20|2023-10-06T21:56:39.8520000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|92.17|87.16|0.00|-2.34| +37|2023-10-06T21:56:39.9860000-07:00|40021585|Zeromus|000104D2|33901377||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:40.0310000-07:00|40021585|Zeromus|000104D3|33890663||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:40.0760000-07:00|40021585|Zeromus|000104D1|33885852||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:40.1200000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7000|10000|||95.66|83.43|0.00|2.54| +39|2023-10-06T21:56:40.1200000-07:00|10FF0003|Gegehi Gehi|73814|73814|7700|10000|||95.69|82.05|0.00|3.02| +39|2023-10-06T21:56:40.1650000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||95.60|82.47|0.00|2.06| +261|2023-10-06T21:56:39.7640000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:56:40.2090000-07:00|40021585|Zeromus|000104D4|33885706||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:39.7640000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:56:40.2090000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|79C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33885852|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.34|84.92|0.00|-3.01|000104D7|0|1| +21|2023-10-06T21:56:40.2090000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40021585|Zeromus|750003|52A50000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|33885852|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7700|10000|||95.69|82.05|0.00|3.02|000104D8|0|1| +21|2023-10-06T21:56:40.2100000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|550003|42850000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|33885852|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|-3.12|000104D9|0|1| +38|2023-10-06T21:56:40.2100000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.34|84.92|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:40.2100000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +38|2023-10-06T21:56:40.2100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7300|10000|0||95.69|82.05|0.00|3.02|0|0|0||||||| +26|2023-10-06T21:56:40.2100000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:56:40.2100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||94.93|83.76|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:40.2100000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +39|2023-10-06T21:56:40.2990000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9200|10000|||96.63|82.01|0.00|-3.06| +21|2023-10-06T21:56:40.2990000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|FC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33885706|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|000104DA|0|1| +261|2023-10-06T21:56:39.8810000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:56:40.4340000-07:00|40021585|Zeromus|000104D6|33879277||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:40.4340000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|714003|18970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33885706|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||94.50|83.91|0.00|2.18|000104DB|0|1| +261|2023-10-06T21:56:39.9960000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T21:56:40.1120000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:56:40.5680000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|154003|6ED10000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|33879277|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||96.63|81.61|0.00|2.62|000104DC|0|1| +37|2023-10-06T21:56:40.6590000-07:00|40021585|Zeromus|000104D5|33847612||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:40.6590000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31930000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33879277|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7000|10000|||95.57|83.36|0.00|2.21|000104DD|0|1| +39|2023-10-06T21:56:40.7030000-07:00|400216AD|Demi-Phoenix|74223|77698|10000|10000|||101.91|85.44|0.00|-2.80| +261|2023-10-06T21:56:40.2050000-07:00|Change|400216AD||||| +38|2023-10-06T21:56:40.7470000-07:00|400216C8||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:56:40.7470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.34|84.92|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:40.7470000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +38|2023-10-06T21:56:40.7470000-07:00|400216C8||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +39|2023-10-06T21:56:40.7920000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7600|10000|||94.50|83.91|0.00|2.18| +21|2023-10-06T21:56:40.7920000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|3BAD0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|33847612|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9446|10000|||91.54|86.72|0.00|2.24|000104DE|0|1| +261|2023-10-06T21:56:40.4090000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:56:40.8360000-07:00|40021585|Zeromus|000104D7|33816436||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:40.8360000-07:00|40021585|Zeromus|000104DA|33812404||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:40.8800000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.34|84.92|0.00|2.20|129844|129844|10000|10000|||93.34|84.92|0.00|2.20|000104DF|0|1| +38|2023-10-06T21:56:40.8800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.34|84.92|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:56:40.8800000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:56:40.4090000-07:00|Add|400216C8||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:56:40.4090000-07:00|400216C8|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||98.24|80.87|0.00|-1.16| +261|2023-10-06T21:56:40.5080000-07:00|Change|400216C8||| +37|2023-10-06T21:56:40.9700000-07:00|40021585|Zeromus|000104D9|33795375||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:41.0140000-07:00|40021585|Zeromus|000104DB|33789080||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:41.0580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|79D|90216|90216|10000|10000|||95.54|82.47|0.00|2.06|400216AD|Demi-Phoenix|0|0|77698|0|10000|||101.91|85.44|0.00|-2.80| +24|2023-10-06T21:56:41.0580000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7B9|81541|81541|6600|10000|||95.57|83.35|0.00|2.35|400216AD|Demi-Phoenix|0|0|77698|0|10000|||101.91|85.44|0.00|-2.80| +38|2023-10-06T21:56:41.0580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||95.54|82.47|0.00|2.06|0|0|0||||||||||||| +38|2023-10-06T21:56:41.0580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|6600|10000|0||95.57|83.35|0.00|2.35|0|0|0||||||||||||| +21|2023-10-06T21:56:41.1030000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33789080|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||94.50|83.91|0.00|2.18|000104E0|0|1| +22|2023-10-06T21:56:41.1030000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|13330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33789080|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|000104E1|0|3| +22|2023-10-06T21:56:41.1030000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|11F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33789080|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|000104E1|1|3| +22|2023-10-06T21:56:41.1030000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|137C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33789080|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|000104E1|2|3| +31|2023-10-06T21:56:41.1030000-07:00|10FF0001||||| +24|2023-10-06T21:56:41.1470000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7F1|81809|81809|8900|10000|||96.64|81.56|0.00|1.98|10FF0006|Wowobora Gogobora|0|81809|81809|8900|10000|||96.64|81.56|0.00|1.98| +38|2023-10-06T21:56:41.1470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|0||96.64|81.56|0.00|1.98|0|0|0||||||||||||| +261|2023-10-06T21:56:40.7320000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:56:41.2360000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33789080|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7300|10000|||95.69|82.05|0.00|2.00|000104E2|0|1| +261|2023-10-06T21:56:40.8500000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:56:41.2810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|6600|10000|0||95.57|83.34|0.00|2.71|0|0|0|||||||||||||||| +26|2023-10-06T21:56:41.2810000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:56:41.2810000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|6600|10000|||95.57|83.34|0.00|2.71|81541|81541|6600|10000|||95.57|83.34|0.00|2.71|000104E3|0|1| +261|2023-10-06T21:56:40.8500000-07:00|Change|400216A6||||||||| +39|2023-10-06T21:56:41.3700000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||94.93|83.76|0.00|2.20| +38|2023-10-06T21:56:41.3700000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7300|10000|0||95.69|82.05|0.00|2.00|0|0|0||||||| +37|2023-10-06T21:56:41.4130000-07:00|10FF0007|Kehabiqo Febiqo|000104DF|129844|129844|10000|10000|0||93.34|84.92|0.00|2.20|1500|0|0|01|01000769|0|41F00000|| +24|2023-10-06T21:56:41.4130000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|C6B|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|400216AD|Demi-Phoenix|0|0|77698|0|10000|||101.91|85.44|0.00|-2.80| +38|2023-10-06T21:56:41.4130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.34|84.92|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:56:41.4130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||94.93|83.76|0.00|2.20|0|0|0||||||||||||||||||| +37|2023-10-06T21:56:41.4580000-07:00|40021585|Zeromus|000104DD|33776389||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:41.4580000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.34|84.92|0.00|2.20| +24|2023-10-06T21:56:41.4580000-07:00|10FF000B|Pusu Rosu|HoT|0|CFB|79209|79209|9046|10000|||91.54|86.72|0.00|2.24|10FF000B|Pusu Rosu|0|79209|79209|9046|10000|||91.54|86.72|0.00|2.24| +38|2023-10-06T21:56:41.4580000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9596|10000|0||91.54|86.72|0.00|2.24|0|0|0||||||||||||| +261|2023-10-06T21:56:41.0840000-07:00|Change|10FF000B||||||||||||||| +24|2023-10-06T21:56:41.5480000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|776|129844|129844|10000|10000|||93.34|84.92|0.00|2.20|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||93.34|84.92|0.00|2.20| +38|2023-10-06T21:56:41.5480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.34|84.92|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:41.6360000-07:00|40021585|Zeromus|000104DC|33748020||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:41.6360000-07:00|40021585|Zeromus|000104E0|33745810||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:41.6360000-07:00|40021585|Zeromus|000104D8|33724653||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:41.6360000-07:00|10FF0003|Gegehi Gehi|000104D8|73814|73814|7300|10000|0||95.69|82.05|0.00|2.00|2300|0|0|01|010004D3|0|41F00000|| +24|2023-10-06T21:56:41.6360000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|75B|129071|129071|7600|10000|||94.44|83.82|0.00|-2.49|10FF0001|Sesuga Sapisuga|0|129071|129071|7600|10000|||94.44|83.82|0.00|-2.49| +38|2023-10-06T21:56:41.6360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|0||94.44|83.82|0.00|-2.49|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:56:41.6360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|7300|10000|0||95.69|82.05|0.00|2.00|0|0|0||||||| +21|2023-10-06T21:56:41.6800000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|37B90000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|33776389|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.54|82.47|0.00|2.06|000104E4|0|1| +21|2023-10-06T21:56:41.6800000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33776389|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.54|82.47|0.00|2.06|000104E5|0|1| +37|2023-10-06T21:56:41.7690000-07:00|40021585|Zeromus|000104E2|33724624||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:56:41.7690000-07:00|400216C8|Carbuncle|400216C8|Carbuncle|01| +261|2023-10-06T21:56:41.3570000-07:00|Change|400216C8||| +37|2023-10-06T21:56:41.8130000-07:00|10FF0004|Buhojaqe Zijaqe|000104E3|81541|81541|8600|10000|0||95.97|82.14|0.00|2.69|1C00|0|0|0| +37|2023-10-06T21:56:41.8130000-07:00|40021585|Zeromus|000104E1|33719709||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:41.9470000-07:00|40021585|Zeromus|000104E1|33715115||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:41.9480000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33719709|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.34|84.92|0.00|2.20|000104E6|0|1| +261|2023-10-06T21:56:41.5460000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:56:42.0810000-07:00|40021585|Zeromus|000104DE|33699838||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:42.0810000-07:00|40021585|Zeromus|000104E1|33694850||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:42.1260000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|96.02|82.06|0.00|2.59| +39|2023-10-06T21:56:42.2140000-07:00|10FF000B|Pusu Rosu|79209|79209|9877|10000|||91.54|86.72|0.00|2.24| +261|2023-10-06T21:56:41.7550000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:56:42.2600000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|752003|BD6D0000|4|25188000|0|0|0|0|0|0|0|0|0|0|0|0|33694850|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||94.44|83.82|0.00|2.16|000104E7|0|1| +38|2023-10-06T21:56:42.2600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6600|10000|0||94.44|83.82|0.00|2.16|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:56:42.2600000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:56:42.2600000-07:00|10FF0001||||| +20|2023-10-06T21:56:42.3050000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|91.54|86.72|0.00|2.24| +21|2023-10-06T21:56:42.3050000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42714003|41310000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|33694850|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|000104E8|0|1| +37|2023-10-06T21:56:42.4370000-07:00|40021585|Zeromus|000104E5|33692560||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:42.1000000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:56:42.4820000-07:00|40021585|Zeromus|000104E6|33687928||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:42.4820000-07:00|40021585|Zeromus|000104E4|33673663||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:42.4820000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33692560|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|000104E9|0|1| +24|2023-10-06T21:56:42.6600000-07:00|40021585|Zeromus|DoT|0|2020|33673663|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6600|10000|||94.44|83.82|0.00|2.16| +21|2023-10-06T21:56:42.6600000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|754003|77E40000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|33673663|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7300|10000|||95.69|82.05|0.00|2.00|000104EA|0|1| +36|2023-10-06T21:56:42.6600000-07:00|1E3C|3| +38|2023-10-06T21:56:42.6600000-07:00|40021585|Zeromus|005A5A00|33665439|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:56:42.1990000-07:00|Change|10FF0003||| +39|2023-10-06T21:56:42.7050000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +21|2023-10-06T21:56:42.7050000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|97F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33665439|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.34|84.92|0.00|2.20|000104EB|0|1| +38|2023-10-06T21:56:42.7050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.34|84.92|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:56:42.7050000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:56:42.7940000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33665439|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||96.85|81.56|0.00|1.59|000104EC|0|1| +37|2023-10-06T21:56:42.9270000-07:00|40021585|Zeromus|000104E8|33648750||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:43.0170000-07:00|40021585|Zeromus|000104E9|33646282||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:42.6150000-07:00|Change|10FF0001||| +21|2023-10-06T21:56:43.0610000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|33648750|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||96.85|81.56|0.00|1.59|000104ED|0|1| +21|2023-10-06T21:56:43.0610000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|335C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33648750|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||96.03|82.05|0.00|2.03|000104EE|0|1| +38|2023-10-06T21:56:43.0610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|0||96.85|81.56|0.00|1.59|0|0|0|||||||||||||||| +26|2023-10-06T21:56:43.0610000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:56:42.6150000-07:00|Change|400216C8||| +38|2023-10-06T21:56:43.1040000-07:00|400216D2||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +39|2023-10-06T21:56:43.1070000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8400|10000|||96.03|82.05|0.00|2.03| +38|2023-10-06T21:56:43.1070000-07:00|400216D2||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:56:43.1500000-07:00|40021585|Zeromus|000104E7|33597789||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:43.1500000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||95.54|82.47|0.00|2.06| +39|2023-10-06T21:56:43.1500000-07:00|10FF0003|Gegehi Gehi|73814|73814|7100|10000|||95.69|82.05|0.00|2.00| +261|2023-10-06T21:56:42.7270000-07:00|Change|10FF0003||| +261|2023-10-06T21:56:42.7270000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T21:56:43.2400000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|329F0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|33597789|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9877|10000|||91.54|86.72|0.00|2.24|000104EF|0|1| +03|2023-10-06T21:56:42.8440000-07:00|400216D2|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||96.03|83.92|0.00|2.01| +261|2023-10-06T21:56:42.8440000-07:00|Add|400216D2||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:42.8440000-07:00|Change|400216D2||||| +39|2023-10-06T21:56:43.2830000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9100|10000|||96.85|81.56|0.00|2.01| +261|2023-10-06T21:56:42.8440000-07:00|Change|10FF0006||||||| +37|2023-10-06T21:56:43.3290000-07:00|40021585|Zeromus|000104EC|33597601||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:43.3720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33597789|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6600|10000|||94.44|83.82|0.00|2.16|000104F0|0|1| +31|2023-10-06T21:56:43.3720000-07:00|10FF0001||||| +21|2023-10-06T21:56:43.4610000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|734003|C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33597601|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||96.03|82.05|0.00|2.03|000104F1|0|1| +261|2023-10-06T21:56:43.0670000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:56:43.6390000-07:00|40021585|Zeromus|000104EB|33558705||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:43.1590000-07:00|Change|40021585||||| +21|2023-10-06T21:56:43.6390000-07:00|40021585|Zeromus|8B46|Visceral Whirl|40021585|Zeromus|1B|8B468000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33597601|40478540|10000|10000|||100.00|80.10|0.00|0.00|33597601|40478540|10000|10000|||100.00|80.10|0.00|0.00|000104F2|0|1| +39|2023-10-06T21:56:43.8170000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6800|10000|||94.44|83.82|0.00|2.16| +37|2023-10-06T21:56:43.8630000-07:00|40021585|Zeromus|000104EE|33545557||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:43.9070000-07:00|40021585|Zeromus|000104F0|33543395||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:43.6350000-07:00|Change|10FF0001||| +37|2023-10-06T21:56:43.9960000-07:00|40021585|Zeromus|000104F1|33543195||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:44.0850000-07:00|10FF0006|Wowobora Gogobora|000104ED|81809|81809|9100|10000|0||96.85|81.56|0.00|2.01|1B00|0|0|01|04000AA4|0|0|| +24|2023-10-06T21:56:44.0850000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7DC|90216|90216|10000|10000|||95.54|82.47|0.00|2.06|400216AD|Demi-Phoenix|0|0|77698|0|10000|||101.91|85.44|0.00|-2.80| +24|2023-10-06T21:56:44.0850000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|781|81541|81541|8400|10000|||96.03|82.05|0.00|2.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8400|10000|||96.03|82.05|0.00|2.12| +38|2023-10-06T21:56:44.0850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||95.54|82.47|0.00|2.06|0|0|0||||||||||||| +38|2023-10-06T21:56:44.0850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||96.85|81.56|0.00|2.01|0|0|0|||||||||||||||| +38|2023-10-06T21:56:44.0850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|0||96.03|82.05|0.00|2.12|0|0|0|||||||||||||||| +261|2023-10-06T21:56:43.6350000-07:00|Change|400216D2||| +24|2023-10-06T21:56:44.1740000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7C3|81809|81809|9100|10000|||96.85|81.56|0.00|2.01|10FF0006|Wowobora Gogobora|0|81809|81809|9100|10000|||96.85|81.56|0.00|2.01| +21|2023-10-06T21:56:44.1740000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|720003|5DD80000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|33543195|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.54|82.47|0.00|2.06|000104F3|0|1| +38|2023-10-06T21:56:44.1740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||96.85|81.56|0.00|2.01|0|0|0|||||||||||||||| +39|2023-10-06T21:56:44.3510000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||94.93|83.76|0.00|2.20| +21|2023-10-06T21:56:44.3510000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33543195|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.54|82.47|0.00|2.06|000104F4|0|1| +24|2023-10-06T21:56:44.4400000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|78F|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|400216AD|Demi-Phoenix|0|0|77698|0|10000|||101.91|85.44|0.00|-2.80| +21|2023-10-06T21:56:44.4400000-07:00|400215A2|Zeromus|8B47|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|000104F5|0|0| +21|2023-10-06T21:56:44.4400000-07:00|400215A3|Zeromus|8B48|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|000104F6|0|0| +38|2023-10-06T21:56:44.4400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||94.93|83.76|0.00|2.20|0|0|0||||||||||||||||||| +261|2023-10-06T21:56:43.9790000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T21:56:43.9790000-07:00|Change|400215A3||||||||||||| +04|2023-10-06T21:56:43.9790000-07:00|400216AD|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|0|77698|0|10000|||101.91|85.44|0.00|-2.80| +261|2023-10-06T21:56:43.9790000-07:00|Remove|400216AD| +37|2023-10-06T21:56:44.4850000-07:00|40021585|Zeromus|000104EA|33512503||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:44.4850000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.34|84.92|0.00|2.20| +24|2023-10-06T21:56:44.4850000-07:00|10FF000B|Pusu Rosu|HoT|0|776|79209|79209|9477|10000|||91.54|86.72|0.00|2.24|10FF000B|Pusu Rosu|0|79209|79209|9477|10000|||91.54|86.72|0.00|2.24| +38|2023-10-06T21:56:44.4850000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||91.54|86.72|0.00|2.24|0|0|0||||||||||||| +37|2023-10-06T21:56:44.5310000-07:00|40021585|Zeromus|000104EF|33499544||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:44.5310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|96.73|81.63|0.00|2.11| +261|2023-10-06T21:56:44.0920000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:56:44.0920000-07:00|Change|10FF000B||| +24|2023-10-06T21:56:44.5750000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|7D4|129844|129844|10000|10000|||93.34|84.92|0.00|2.20|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||93.34|84.92|0.00|2.20| +38|2023-10-06T21:56:44.5750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.34|84.92|0.00|2.20|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:56:44.6640000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|750|129071|129071|6800|10000|||94.44|83.82|0.00|2.16|10FF0001|Sesuga Sapisuga|0|129071|129071|6800|10000|||94.44|83.82|0.00|2.16| +21|2023-10-06T21:56:44.6640000-07:00|10FF000A|Dukaro Nezikaro|8D5|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|000104F7|0|1| +21|2023-10-06T21:56:44.6640000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|94B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33499544|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|2.20|000104F8|0|1| +38|2023-10-06T21:56:44.6640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6800|10000|0||94.44|83.82|0.00|2.16|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:56:44.6640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||94.93|83.76|0.00|2.20|0|0|0||||||||||||||||||| +261|2023-10-06T21:56:44.2770000-07:00|Change|4002159F||||||||| +261|2023-10-06T21:56:44.2770000-07:00|Change|400215A1||||||||| +26|2023-10-06T21:56:44.6640000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +261|2023-10-06T21:56:44.2770000-07:00|Change|4002159E||||||||| +261|2023-10-06T21:56:44.2770000-07:00|Change|400215A0||||||||| +21|2023-10-06T21:56:44.7080000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33499544|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7100|10000|||95.69|82.05|0.00|2.00|000104F9|0|1| +261|2023-10-06T21:56:44.2770000-07:00|Change|4002159C||||||||| +261|2023-10-06T21:56:44.2770000-07:00|Change|4002159D||||||||| +20|2023-10-06T21:56:44.7530000-07:00|4002159C|Zeromus|8B49|Miasmic Blast|4002159C|Zeromus|7.700|86.00|100.00|0.00|0.79| +20|2023-10-06T21:56:44.7530000-07:00|4002159D|Zeromus|8CF8|unknown_8cf8|4002159D|Zeromus|7.700|86.00|100.00|0.00|0.79| +20|2023-10-06T21:56:44.7530000-07:00|4002159E|Zeromus|8B49|Miasmic Blast|4002159E|Zeromus|7.700|107.00|93.00|0.00|0.79| +20|2023-10-06T21:56:44.7530000-07:00|4002159F|Zeromus|8CF8|unknown_8cf8|4002159F|Zeromus|7.700|107.00|93.00|0.00|0.79| +20|2023-10-06T21:56:44.7530000-07:00|400215A1|Zeromus|8CF8|unknown_8cf8|400215A1|Zeromus|7.700|93.00|93.00|0.00|0.79| +20|2023-10-06T21:56:44.7540000-07:00|400215A0|Zeromus|8B49|Miasmic Blast|400215A0|Zeromus|7.700|93.00|93.00|0.00|0.79| +21|2023-10-06T21:56:44.7540000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|3A850000|4|25428000|0|0|0|0|0|0|0|0|0|0|0|0|33499544|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||94.46|83.86|0.00|0.39|000104FA|0|1| +20|2023-10-06T21:56:44.7540000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|91.54|86.72|0.00|2.24| +38|2023-10-06T21:56:44.7540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||94.46|83.86|0.00|0.39|0|0|0||||||||||||| +30|2023-10-06T21:56:44.7540000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:56:44.5650000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:56:45.1080000-07:00|40021585|Zeromus|000104F4|33497280||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:44.6780000-07:00|Change|400216C8||| +21|2023-10-06T21:56:45.1530000-07:00|400216D2|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|150003|5E730000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|33499544|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||96.03|83.92|0.00|2.01|000104FB|0|1| +37|2023-10-06T21:56:45.1980000-07:00|40021585|Zeromus|000104F8|33494901||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:45.1980000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16710000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|33497280|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.39|84.92|0.00|1.80|000104FC|0|1| +261|2023-10-06T21:56:44.6780000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T21:56:44.6780000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T21:56:44.6780000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:56:44.6780000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:56:44.6780000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:56:44.6780000-07:00|Change|4002159F||||||||||||| +37|2023-10-06T21:56:45.2430000-07:00|40021585|Zeromus|000104F9|33494872||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:56:44.7950000-07:00|400216A6|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||101.52|90.47|0.00|-3.00| +261|2023-10-06T21:56:44.7950000-07:00|Remove|400216A6| +39|2023-10-06T21:56:45.2440000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||91.54|86.72|0.00|2.24| +37|2023-10-06T21:56:45.3310000-07:00|40021585|Zeromus|000104F3|33470848||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:45.3310000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33494872|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.84|85.02|0.00|2.13|000104FD|0|1| +261|2023-10-06T21:56:44.9060000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:56:45.4200000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|756003|D1800000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|33470848|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7100|10000|||97.73|82.81|0.00|1.32|000104FE|0|1| +21|2023-10-06T21:56:45.4660000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2EFE0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33470848|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||97.00|81.47|0.00|2.00|000104FF|0|1| +37|2023-10-06T21:56:45.5090000-07:00|40021585|Zeromus|000104FA|33455867||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:45.5550000-07:00|10FF000A|Dukaro Nezikaro|8D9|Fuma Shuriken|40021585|Zeromus|710003|36320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33470848|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.93|83.76|0.00|2.26|00010500|0|1| +38|2023-10-06T21:56:45.5550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||94.93|83.76|0.00|2.26|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:45.5550000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +261|2023-10-06T21:56:45.1370000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:56:45.1370000-07:00|Change|10FF000B||||||||||||| +21|2023-10-06T21:56:45.5990000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40021585|Zeromus|150003|49680000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|33455867|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||99.24|82.18|0.00|1.39|00010501|0|1| +38|2023-10-06T21:56:45.5990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|0||99.24|82.18|0.00|1.39|0|0|0||||||||||||| +30|2023-10-06T21:56:45.5990000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:56:45.1370000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:56:45.6440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33455867|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||98.29|83.71|0.00|0.33|00010502|0|1| +31|2023-10-06T21:56:45.6440000-07:00|10FF0001||||| +39|2023-10-06T21:56:45.6880000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:45.6880000-07:00|40021585|Zeromus|DoT|0|2137|33455867|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|5800|10000|||98.92|83.85|0.00|0.29| +21|2023-10-06T21:56:45.6880000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|3D1E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|33455867|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||91.54|86.72|0.00|2.24|00010503|0|1| +36|2023-10-06T21:56:45.6880000-07:00|1F18|3| +38|2023-10-06T21:56:45.6880000-07:00|40021585|Zeromus|005A5A00|33447364|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T21:56:45.7310000-07:00|40021585|Zeromus|000104FC|33441619||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:45.8650000-07:00|40021585|Zeromus|000104FD|33438649||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:45.9550000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33438649|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||99.76|82.30|0.00|-3.05|00010504|0|1| +261|2023-10-06T21:56:45.5290000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:56:46.0890000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8200|10000|||97.37|81.86|0.00|0.94| +39|2023-10-06T21:56:46.1340000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.41|83.27|0.00|1.39| +39|2023-10-06T21:56:46.1340000-07:00|10FF0003|Gegehi Gehi|73814|73814|6900|10000|||102.10|84.35|0.00|1.65| +261|2023-10-06T21:56:45.6200000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:56:46.1790000-07:00|40021585|Zeromus|00010502|33436467||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:46.2690000-07:00|40021585|Zeromus|000104FF|33424437||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:46.2690000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9300|10000|||99.76|82.30|0.00|-3.05| +261|2023-10-06T21:56:45.7410000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:56:46.4010000-07:00|10FF000B|Pusu Rosu|03|Sprint|10FF000B|Pusu Rosu|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||91.57|86.73|0.00|1.64|79209|79209|9600|10000|||91.57|86.73|0.00|1.64|00010505|0|1| +37|2023-10-06T21:56:46.4460000-07:00|40021585|Zeromus|00010501|33405645||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:46.4460000-07:00|40021585|Zeromus|00010500|33391771||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:46.4900000-07:00|40021585|Zeromus|00010504|33391616||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:45.9830000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:56:46.5330000-07:00|10FF000B|Pusu Rosu|00010505|79209|79209|9600|10000|0||91.73|86.80|-0.02|1.22|1800|0|0|01|04000032|1E|41200000|| +26|2023-10-06T21:56:46.5330000-07:00|32|Sprint|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|1E|79209|79209| +261|2023-10-06T21:56:46.0960000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:56:46.0960000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T21:56:46.1920000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:56:46.6230000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41100000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.50|88.19|0.00|1.40|33391616|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010506|0|1| +21|2023-10-06T21:56:46.7120000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|720003|5B2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33391616|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.67|83.99|0.00|1.35|00010507|0|1| +261|2023-10-06T21:56:46.2890000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:56:46.8020000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6000|10000|||105.02|84.40|0.00|-0.20| +21|2023-10-06T21:56:46.8470000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33391616|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||102.01|84.28|0.00|1.73|00010508|0|1| +04|2023-10-06T21:56:46.3790000-07:00|400216C8|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||98.24|80.87|0.00|-1.16| +261|2023-10-06T21:56:46.3790000-07:00|Remove|400216C8| +261|2023-10-06T21:56:46.3790000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:56:46.9800000-07:00|40021585|Zeromus|000104FE|33337984||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:46.9800000-07:00|40021585|Zeromus|00010503|33322338||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:46.4710000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:56:46.4710000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:56:47.0250000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|F090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33322338|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||104.47|84.72|0.00|-2.94|00010509|0|1| +24|2023-10-06T21:56:47.0700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7E6|90216|90216|10000|10000|||104.47|84.72|0.00|-2.94|400216AD||0||||||||||| +24|2023-10-06T21:56:47.0700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7A1|81541|81541|8200|10000|||101.91|85.04|0.00|1.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8200|10000|||101.91|85.04|0.00|1.10| +38|2023-10-06T21:56:47.0700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||104.47|84.72|0.00|-2.94|0|0|0||||||||||||| +38|2023-10-06T21:56:47.0700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|0||101.91|85.04|0.00|1.10|0|0|0|||||||||||||||| +37|2023-10-06T21:56:47.1140000-07:00|40021585|Zeromus|000104FB|33298159||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:56:47.1590000-07:00|10FF0006|Wowobora Gogobora|HoT|0|77F|81809|81809|9300|10000|||105.04|84.43|0.00|1.21|10FF0006|Wowobora Gogobora|0|81809|81809|9300|10000|||105.04|84.43|0.00|1.21| +38|2023-10-06T21:56:47.1590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|0||105.04|84.43|0.00|1.21|0|0|0||||||||||||| +21|2023-10-06T21:56:47.2040000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|752003|3E510000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|33322338|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||102.54|85.21|0.00|1.12|0001050A|0|1| +21|2023-10-06T21:56:47.2040000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|1B560000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|33322338|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||104.05|84.31|-0.02|1.64|0001050B|0|1| +21|2023-10-06T21:56:47.2480000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|345F0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|33298159|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||107.58|85.08|0.00|-0.34|0001050C|0|1| +38|2023-10-06T21:56:47.2480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6000|10000|0||107.58|85.08|0.00|-0.34|0|0|0||||||||||||||||||| +26|2023-10-06T21:56:47.2480000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:56:47.2480000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:56:46.8280000-07:00|Change|10FF000B||||||||| +39|2023-10-06T21:56:47.3360000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||104.69|85.80|0.00|-2.45| +22|2023-10-06T21:56:47.3360000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|317C0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|0001050D|0|8| +22|2023-10-06T21:56:47.3360000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|32040000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7800|10000|||103.27|85.39|0.00|-2.60|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|0001050D|1|8| +22|2023-10-06T21:56:47.3360000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|31100000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||104.69|85.80|0.00|-2.45|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|0001050D|2|8| +22|2023-10-06T21:56:47.3360000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|31EA0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||102.57|92.07|0.00|1.45|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|0001050D|3|8| +22|2023-10-06T21:56:47.3360000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|30590000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9300|10000|||105.97|85.31|0.00|1.00|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|0001050D|4|8| +22|2023-10-06T21:56:47.3360000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|318A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||106.21|85.64|0.00|1.52|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|0001050D|5|8| +22|2023-10-06T21:56:47.3360000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|324C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6900|10000|||108.20|87.25|0.00|1.44|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|0001050D|6|8| +22|2023-10-06T21:56:47.3360000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|303E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6000|10000|||108.20|85.32|0.00|-0.41|79209|79209|9600|10000|||97.90|87.42|0.00|1.59|0001050D|7|8| +261|2023-10-06T21:56:46.9390000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:56:47.3820000-07:00|40021585|Zeromus|00010508|33295832||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:46.9390000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:56:47.4260000-07:00|10FF0007|Kehabiqo Febiqo|00010506|113188||||||103.05|92.30|0.00|1.45| +24|2023-10-06T21:56:47.4260000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|7D0|83502|83502|10000|10000|||104.84|86.16|0.00|-2.45|400216AD||0||||||||||| +38|2023-10-06T21:56:47.4260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||104.84|86.16|0.00|-2.45|0|0|0||||||||||||||||||| +39|2023-10-06T21:56:47.4720000-07:00|10FF0007|Kehabiqo Febiqo|114486|129844|10000|10000|||103.05|92.30|0.00|1.45| +24|2023-10-06T21:56:47.4720000-07:00|10FF000B|Pusu Rosu|HoT|0|A3A|79209|79209|9600|10000|||98.65|87.73|0.00|1.45|10FF000B|Pusu Rosu|0|79209|79209|9600|10000|||98.65|87.73|0.00|1.45| +38|2023-10-06T21:56:47.4720000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||98.65|87.73|0.00|1.45|0|0|0|||||||||||||||| +24|2023-10-06T21:56:47.5590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|749|114486|129844|10000|10000|||103.84|92.26|0.00|1.45|10FF0007|Kehabiqo Febiqo|0|114486|129844|10000|10000|||103.84|92.26|0.00|1.45| +38|2023-10-06T21:56:47.5590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116351|129844|10000|10000|0||103.84|92.26|0.00|1.45|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:56:47.6020000-07:00|40021585|Zeromus|0001050B|33288834||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:47.1450000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:56:47.6030000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33295832|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||103.17|85.34|0.00|-2.60|0001050E|0|1| +24|2023-10-06T21:56:47.6480000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7C4|129071|129071|6000|10000|||109.68|86.40|0.00|-0.50|400216AD||0||||||||||| +21|2023-10-06T21:56:47.6480000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22CF0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|33288834|40478540|10000|10000|||100.00|80.10|0.00|0.00|116351|129844|10000|10000|||104.60|92.21|0.00|1.46|0001050F|0|1| +38|2023-10-06T21:56:47.6480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6000|10000|0||109.68|86.40|0.00|-0.50|0|0|0||||||||||||||||||| +37|2023-10-06T21:56:47.7830000-07:00|40021585|Zeromus|00010509|33284985||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:47.3370000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:56:47.8250000-07:00|40021585|Zeromus|0001050C|33271578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:47.8250000-07:00|10FF0001|Sesuga Sapisuga|0001050C|129071|129071|6000|10000|0||110.23|86.72|0.00|-0.54|1300|0|0|02|0400076E|03|41F00000|||||| +38|2023-10-06T21:56:47.8250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6000|10000|0||110.23|86.72|0.00|-0.54|0|0|0||||||||||||||||||| +261|2023-10-06T21:56:47.3370000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:56:47.8720000-07:00|40021585|Zeromus|00010507|33248235||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:47.8720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116351|129844|10000|10000|0||105.30|92.18|0.00|-2.68|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:56:47.8720000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T21:56:47.9140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33271578|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||110.50|87.22|0.00|-0.54|00010510|0|1| +31|2023-10-06T21:56:47.9140000-07:00|10FF0001||||| +261|2023-10-06T21:56:47.4360000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:56:47.4360000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:56:47.4360000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:56:48.0490000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15460000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|116351|129844|10000|10000|||106.56|92.27|0.00|3.13|73956|77430|10000|10000|||100.02|93.68|0.00|2.79|00010511|0|1| +21|2023-10-06T21:56:48.0490000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40021585|Zeromus|154003|5AC70000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|33248235|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||109.23|88.47|0.00|0.84|00010512|0|1| +261|2023-10-06T21:56:47.6520000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:56:48.1380000-07:00|40021585|Zeromus|0001050A|33232282||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:48.1380000-07:00|40021585|Zeromus|0001050E|33232122||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:48.1820000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33248235|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6900|10000|||113.05|87.95|0.00|0.21|00010513|0|1| +261|2023-10-06T21:56:47.7660000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:56:48.2260000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||104.28|89.22|-0.01|1.37| +37|2023-10-06T21:56:48.2710000-07:00|40021585|Zeromus|0001050F|33223211||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:48.3160000-07:00|10FF0007|Kehabiqo Febiqo|0001050D|129129||||||108.60|92.49|0.00|2.05| +37|2023-10-06T21:56:48.4500000-07:00|40021585|Zeromus|00010510|33220986||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:48.0040000-07:00|Change|10FF0004||||||||| +38|2023-10-06T21:56:48.6260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||109.70|88.97|0.00|1.20|0|0|0|||||||||| +30|2023-10-06T21:56:48.6260000-07:00|74C|Everlasting Flight|0.00|400216AD|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|83502|| +261|2023-10-06T21:56:48.2100000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:56:48.2100000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:56:48.2100000-07:00|Change|10FF000B||||||||| +39|2023-10-06T21:56:48.6720000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|1.94| +24|2023-10-06T21:56:48.6720000-07:00|40021585|Zeromus|DoT|0|236D|33220986|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|6000|10000|||114.36|89.61|0.00|-0.55| +36|2023-10-06T21:56:48.6720000-07:00|1FF4|3| +38|2023-10-06T21:56:48.6720000-07:00|40021585|Zeromus|005A5A00|33211917|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:56:48.2100000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:56:48.7170000-07:00|40021585|Zeromus|00010513|33211871||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:48.7170000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33220986|40478540|10000|10000|||100.00|80.10|0.00|0.00|129129|129844|10000|10000|||110.90|92.68|-0.02|1.65|00010514|0|1| +38|2023-10-06T21:56:48.7610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|0||112.77|90.08|0.00|1.55|0|0|0||||||||||||| +30|2023-10-06T21:56:48.7610000-07:00|74C|Everlasting Flight|0.00|400216AD|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T21:56:48.3060000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:56:48.8050000-07:00|40021585|Zeromus|00010512|33188632||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:48.8500000-07:00|10FF0007|Kehabiqo Febiqo|00010511|129844||||||112.39|92.72|0.00|1.60| +21|2023-10-06T21:56:48.8500000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7800|10000|||110.73|86.73|0.00|1.60|81541|81541|7800|10000|||110.73|86.73|0.00|1.60|00010515|0|1| +38|2023-10-06T21:56:48.8950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||113.97|90.47|0.00|1.02|0|0|0||||||| +30|2023-10-06T21:56:48.8950000-07:00|74C|Everlasting Flight|0.00|400216AD|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|| +261|2023-10-06T21:56:48.5010000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:56:48.9850000-07:00|40021585|Zeromus|005A5A00|33188632|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:56:48.9850000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +21|2023-10-06T21:56:49.0300000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|FAB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33188632|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||112.17|90.54|0.00|1.04|00010516|0|1| +38|2023-10-06T21:56:49.0300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6000|10000|0||115.92|90.69|0.00|-0.66|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:49.0300000-07:00|74C|Everlasting Flight|0.00|400216AD|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|| +261|2023-10-06T21:56:48.5010000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:56:49.0750000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33188632|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||114.67|90.86|0.00|1.26|00010517|0|1| +39|2023-10-06T21:56:49.1200000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8000|10000|||111.92|88.22|0.00|0.73| +39|2023-10-06T21:56:49.1200000-07:00|10FF0003|Gegehi Gehi|73814|73814|7100|10000|||116.67|90.90|0.00|-0.59| +39|2023-10-06T21:56:49.1640000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||115.04|91.13|0.00|1.02| +38|2023-10-06T21:56:49.1640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8000|10000|0||111.92|88.22|0.00|0.73|0|0|0|||||||||||||||| +30|2023-10-06T21:56:49.1640000-07:00|74C|Everlasting Flight|0.00|400216AD|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|| +261|2023-10-06T21:56:48.7300000-07:00|Change|400216D2||||| +38|2023-10-06T21:56:49.2070000-07:00|400216DC||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:56:49.2090000-07:00|400216DC||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:56:48.8480000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:56:49.2530000-07:00|40021585|Zeromus|00010514|33185635||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:49.2530000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|328F0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|33188632|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.09|91.80|0.00|1.02|00010518|0|1| +39|2023-10-06T21:56:49.2970000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||115.87|91.44|0.00|1.12| +38|2023-10-06T21:56:49.2970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||115.01|92.69|0.00|1.58|0|0|0||||||||||||||||||| +30|2023-10-06T21:56:49.2970000-07:00|74C|Everlasting Flight|0.00|400216AD|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|| +38|2023-10-06T21:56:49.2970000-07:00|40021585|Zeromus|005A5A00|33185635|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T21:56:49.2970000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +261|2023-10-06T21:56:48.8480000-07:00|Add|400216DC||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:56:48.8480000-07:00|400216DC|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||115.88|91.40|0.00|-2.01| +261|2023-10-06T21:56:48.8480000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:56:48.8480000-07:00|Change|400216DC||| +20|2023-10-06T21:56:49.3870000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|117.65|91.78|0.00|-0.70| +261|2023-10-06T21:56:48.9590000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:56:49.4300000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||113.15|91.79|0.00|1.34|0|0|0|||||||||||||||| +30|2023-10-06T21:56:49.4300000-07:00|74C|Everlasting Flight|0.00|400216AD|Demi-Phoenix|10FF000B|Pusu Rosu|00|79209|| +37|2023-10-06T21:56:49.4740000-07:00|10FF0004|Buhojaqe Zijaqe|00010515|81541|81541|8000|10000|0||113.82|89.81|0.00|0.87|1C00|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:56:49.4740000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:56:49.4750000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2B430000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|33185635|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.00|92.32|0.00|1.02|00010519|0|1| +261|2023-10-06T21:56:49.0780000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:56:49.5620000-07:00|40021585|Zeromus|00010516|33181624||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:49.6080000-07:00|40021585|Zeromus|00010517|33181474||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:49.6520000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|40330000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||115.59|92.72|0.00|1.55|33185635|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001051A|0|1| +21|2023-10-06T21:56:49.6960000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E7C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33185635|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.71|92.17|0.00|1.88|0001051B|0|1| +21|2023-10-06T21:56:49.7420000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|36400000|4|26C98000|0|0|0|0|0|0|0|0|0|0|0|0|33181474|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6000|10000|||117.24|93.57|0.00|-2.23|0001051C|0|1| +38|2023-10-06T21:56:49.7420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5000|10000|0||117.24|93.57|0.00|-2.23|0|0|0|||||||||||||||| +30|2023-10-06T21:56:49.7420000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:56:49.2650000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:56:49.7860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5200|10000|||117.24|93.57|0.00|-2.23| +21|2023-10-06T21:56:49.7860000-07:00|10FF000B|Pusu Rosu|4097|Afflatus Misery|40021585|Zeromus|750003|BF450000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|33181474|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||115.48|92.40|0.00|1.33|0001051D|0|1| +261|2023-10-06T21:56:49.3600000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:56:49.8750000-07:00|40021585|Zeromus|00010519|33170399||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:50.0080000-07:00|40021585|Zeromus|00010518|33157456||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:50.0530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8550|10000|0||116.41|91.86|0.00|0.84|0|0|0|||||||||||||||| +21|2023-10-06T21:56:50.0980000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F712003|52F50000|143E|340000|4|17898000|11B|2A8000|0|0|0|0|0|0|0|0|33170399|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||116.30|92.78|0.00|1.53|0001051E|0|1| +20|2023-10-06T21:56:50.0980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|116.41|91.86|0.00|0.84| +261|2023-10-06T21:56:49.6390000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:56:50.1870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|86E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33157456|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5200|10000|||117.88|93.31|0.00|2.41|0001051F|0|1| +31|2023-10-06T21:56:50.1870000-07:00|10FF0001||||| +261|2023-10-06T21:56:49.7490000-07:00|Change|400216DC||||||||| +34|2023-10-06T21:56:50.2310000-07:00|400216DC|Carbuncle|400216DC|Carbuncle|01| +37|2023-10-06T21:56:50.3640000-07:00|40021585|Zeromus|0001051D|33108491||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:50.3640000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||116.14|93.03|0.00|-2.25| +261|2023-10-06T21:56:49.9690000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:56:50.4540000-07:00|40021585|Zeromus|0001051B|33104783||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:50.4540000-07:00|10FF0007|Kehabiqo Febiqo|0001051A|113409||||||116.74|92.81|0.00|-2.22| +39|2023-10-06T21:56:50.4550000-07:00|10FF0007|Kehabiqo Febiqo|114707|129844|10000|10000|||116.74|92.81|0.00|-2.22| +38|2023-10-06T21:56:50.4550000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||117.42|92.89|0.00|1.85|0|0|0|||||||||||||||| +37|2023-10-06T21:56:50.4980000-07:00|40021585|Zeromus|0001051C|33090895||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:50.4980000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|118.22|93.44|0.00|3.05| +261|2023-10-06T21:56:50.0830000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:56:50.7210000-07:00|40021585|Zeromus|0001051F|33088737||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|31140000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|0|9| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|32DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9500|10000|||118.24|93.48|0.00|-2.80|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|1|9| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|301B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|5200|10000|||117.88|93.31|0.00|1.96|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|2|9| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|4BBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8550|10000|||117.42|92.64|0.00|-2.20|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|3|9| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|31D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|7100|10000|||118.18|91.87|0.00|-2.15|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|4|9| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|319F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|114707|129844|10000|10000|||116.90|92.82|0.00|-2.22|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|5|9| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|313F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||116.93|92.30|0.00|1.02|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|6|9| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|310E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||116.14|93.03|0.00|-2.25|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|7|9| +22|2023-10-06T21:56:50.7210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|3DD60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33090895|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||118.05|93.21|0.00|1.48|00010520|8|9| +261|2023-10-06T21:56:50.2700000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:56:50.8090000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|454003|39CE0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|33088737|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7100|10000|||118.18|91.87|0.00|-2.15|00010521|0|1| +38|2023-10-06T21:56:50.8090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6900|10000|0||118.18|91.87|0.00|-2.15|0|0|0||||||| +30|2023-10-06T21:56:50.8090000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:56:50.8090000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:56:50.3710000-07:00|Change|10FF0003||||||||||||||||||||||| +21|2023-10-06T21:56:51.0320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|32F90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|33088737|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8550|10000|||117.42|92.64|0.00|-2.20|00010522|0|1| +38|2023-10-06T21:56:51.1220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5200|10000|0||117.88|93.31|0.00|1.96|0|0|0|||||||||||||||| +30|2023-10-06T21:56:51.1220000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:56:50.7040000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:56:51.2110000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||118.46|93.43|0.00|1.31| +21|2023-10-06T21:56:51.2110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33088737|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||116.14|93.03|0.00|-2.25|00010523|0|1| +38|2023-10-06T21:56:51.2110000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||118.46|93.43|0.00|1.31|0|0|0|||||||||||||||| +30|2023-10-06T21:56:51.2110000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T21:56:51.5660000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|221B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|114707|129844|10000|10000|||116.90|92.82|0.00|-2.22|73956|77430|10000|10000|||100.02|93.68|0.00|2.88|00010524|0|1| +37|2023-10-06T21:56:51.6110000-07:00|40021585|Zeromus|0001051E|33067500||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:51.6110000-07:00|10FF0007|Kehabiqo Febiqo|0001051E|120732||||||116.90|92.82|0.00|-2.22| +37|2023-10-06T21:56:51.6110000-07:00|40021585|Zeromus|00010521|33052702||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:51.6110000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|32A80000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|33088737|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||116.14|93.03|0.00|-2.25|00010525|0|1| +24|2023-10-06T21:56:51.6560000-07:00|40021585|Zeromus|DoT|0|19A5|33052702|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|10000|10000|||118.46|93.43|0.00|1.31| +36|2023-10-06T21:56:51.6570000-07:00|20D0|3| +38|2023-10-06T21:56:51.6570000-07:00|40021585|Zeromus|005A5A00|33046137|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +39|2023-10-06T21:56:51.7010000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|2.58| +21|2023-10-06T21:56:51.7010000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33052702|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8150|10000|||117.42|92.64|0.00|-2.20|00010526|0|1| +37|2023-10-06T21:56:51.7450000-07:00|40021585|Zeromus|00010523|33043262||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:51.7450000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2C9E0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|33052702|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.93|92.30|0.00|1.02|00010527|0|1| +37|2023-10-06T21:56:51.8340000-07:00|40021585|Zeromus|00010522|33030213||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:51.9680000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|54640000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|33030213|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6900|10000|||118.23|91.88|0.00|-3.06|00010528|0|1| +38|2023-10-06T21:56:51.9680000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6600|10000|0||118.23|91.88|0.00|-3.06|0|0|0|||| +30|2023-10-06T21:56:51.9680000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:56:51.4350000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:56:52.0570000-07:00|10FF0007|Kehabiqo Febiqo|00010520|129844||||||116.90|92.82|0.00|-2.22| +261|2023-10-06T21:56:51.5260000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:56:52.1030000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8350|10000|||117.42|92.64|0.00|-2.20| +21|2023-10-06T21:56:52.1030000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|11AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33030213|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||116.90|92.82|0.00|-2.22|00010529|0|1| +37|2023-10-06T21:56:52.1470000-07:00|40021585|Zeromus|00010525|33017245||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:52.1470000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||116.93|92.30|0.00|-2.20| +39|2023-10-06T21:56:52.1470000-07:00|10FF0003|Gegehi Gehi|73814|73814|6800|10000|||118.41|91.95|0.00|-2.14| +261|2023-10-06T21:56:51.7560000-07:00|Change|10FF0004||| +37|2023-10-06T21:56:52.2380000-07:00|40021585|Zeromus|00010526|33016995||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:52.2380000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|118.46|93.43|0.00|1.31| +39|2023-10-06T21:56:52.2820000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9700|10000|||118.24|93.49|0.00|-2.20| +21|2023-10-06T21:56:52.2820000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|29850000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|33030213|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5200|10000|||117.88|93.31|0.00|-2.21|0001052A|0|1| +261|2023-10-06T21:56:51.7560000-07:00|Change|10FF000B||||||||||||||||| +261|2023-10-06T21:56:51.7560000-07:00|Change|10FF0006||||||||||||| +38|2023-10-06T21:56:52.2820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5200|10000|0||117.88|93.31|0.00|-2.21|0|0|0|||||||||||||||| +26|2023-10-06T21:56:52.2820000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +21|2023-10-06T21:56:52.3710000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33016995|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.93|92.30|0.00|-2.20|0001052B|0|1| +261|2023-10-06T21:56:51.9820000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T21:56:52.4610000-07:00|40021585|Zeromus|00010520|33001165||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:52.4610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33016995|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5200|10000|||117.88|93.31|0.00|-2.21|0001052C|0|1| +31|2023-10-06T21:56:52.4610000-07:00|10FF0001||||| +21|2023-10-06T21:56:52.5040000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|33001165|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8350|10000|||117.42|92.64|0.00|-2.20|0001052D|0|1| +37|2023-10-06T21:56:52.5490000-07:00|40021585|Zeromus|00010527|32989743||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:52.5490000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|246D0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|33001165|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||116.90|92.82|0.00|-2.22|0001052E|0|1| +37|2023-10-06T21:56:52.6380000-07:00|40021585|Zeromus|00010529|32985220||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:52.1880000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:56:52.6820000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41580000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||116.90|92.82|0.00|-2.22|32989743|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001052F|0|1| +37|2023-10-06T21:56:52.7280000-07:00|40021585|Zeromus|00010528|32963616||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:52.7280000-07:00|4002159C|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.00|100.00|0.00|0.79|00010530|0|0| +21|2023-10-06T21:56:52.7280000-07:00|4002159D|Zeromus|8CF8|unknown_8cf8|4002159D|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||86.00|100.00|0.00|0.79|44|44|0|10000|||86.00|100.00|0.00|0.79|00010531|0|1| +21|2023-10-06T21:56:52.7280000-07:00|4002159E|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||107.00|93.00|0.00|0.79|00010532|0|0| +261|2023-10-06T21:56:52.2840000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T21:56:52.2840000-07:00|Change|400215A1||||||||||||| +21|2023-10-06T21:56:52.7280000-07:00|4002159F|Zeromus|8CF8|unknown_8cf8|4002159F|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||107.00|93.00|0.00|0.79|44|44|0|10000|||107.00|93.00|0.00|0.79|00010533|0|1| +21|2023-10-06T21:56:52.7280000-07:00|400215A1|Zeromus|8CF8|unknown_8cf8|400215A1|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||93.00|93.00|0.00|0.79|44|44|0|10000|||93.00|93.00|0.00|0.79|00010534|0|1| +21|2023-10-06T21:56:52.7280000-07:00|400215A0|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||93.00|93.00|0.00|0.79|00010535|0|0| +261|2023-10-06T21:56:52.2840000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:56:52.2840000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:56:52.2840000-07:00|Change|4002159F||||||||||||| +21|2023-10-06T21:56:52.7720000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|152003|8B610000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|32985220|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||118.24|93.49|0.00|-2.20|00010536|0|1| +261|2023-10-06T21:56:52.2840000-07:00|Change|4002159E||||||||||||| +21|2023-10-06T21:56:52.7720000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|36FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32985220|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6800|10000|||118.52|92.00|0.00|-2.14|00010537|0|1| +39|2023-10-06T21:56:52.8170000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5400|10000|||117.88|93.31|0.00|-2.21| +261|2023-10-06T21:56:52.3830000-07:00|Change|10FF0006||||||||||||||| +04|2023-10-06T21:56:52.3830000-07:00|400216D2|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||96.03|83.92|0.00|2.01| +261|2023-10-06T21:56:52.3830000-07:00|Remove|400216D2| +261|2023-10-06T21:56:52.4770000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:56:52.9950000-07:00|40021585|Zeromus|0001052C|32961945||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:53.0840000-07:00|40021585|Zeromus|0001052E|32952620||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:53.0840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8500|10000|0||117.42|92.64|0.00|-2.20|0|0|0|||||||||||||||| +261|2023-10-06T21:56:52.5700000-07:00|Change|10FF0001||| +37|2023-10-06T21:56:53.1290000-07:00|40021585|Zeromus|0001052B|32950360||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:53.1290000-07:00|40021585|Zeromus|0001052D|32950360|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:56:53.1290000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +21|2023-10-06T21:56:53.1290000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32961945|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6800|10000|||118.52|92.00|0.00|-2.14|00010538|0|1| +21|2023-10-06T21:56:53.1730000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|324C0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32961945|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||118.46|93.43|0.00|-2.20|00010539|0|1| +261|2023-10-06T21:56:52.8030000-07:00|Change|10FF0004||| +39|2023-10-06T21:56:53.3510000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||116.14|93.03|0.00|-2.25| +21|2023-10-06T21:56:53.3950000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32950360|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||116.14|93.03|0.00|-2.25|0001053A|0|1| +37|2023-10-06T21:56:53.4400000-07:00|40021585|Zeromus|00010536|32914679||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:53.4840000-07:00|10FF0007|Kehabiqo Febiqo|0001052F|113116||||||112.95|93.05|0.00|-1.54| +39|2023-10-06T21:56:53.4840000-07:00|10FF0007|Kehabiqo Febiqo|114414|129844|10000|10000|||112.95|93.05|0.00|-1.54| +20|2023-10-06T21:56:53.4840000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|118.24|93.49|0.00|-2.20| +37|2023-10-06T21:56:53.5720000-07:00|40021585|Zeromus|0001052A|32904050||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:53.5720000-07:00|10FF0001|Sesuga Sapisuga|0001052A|129071|129071|5800|10000|0||117.88|93.31|0.00|-2.21|1300|0|0|0| +37|2023-10-06T21:56:53.6620000-07:00|40021585|Zeromus|00010538|32904023||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:53.2480000-07:00|Change|10FF000B||||||||||||||||||||||| +21|2023-10-06T21:56:53.7960000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19070000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|32904023|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||116.14|93.03|0.00|-2.25|0001053B|0|1| +261|2023-10-06T21:56:53.3480000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T21:56:53.9290000-07:00|40021585|Zeromus|00010537|32889947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:53.9290000-07:00|40021585|Zeromus|0001053A|32887248||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:53.6500000-07:00|Change|10FF0001||| +37|2023-10-06T21:56:54.1950000-07:00|40021585|Zeromus|0001053B|32880841||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:54.2410000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||115.11|95.81|0.00|-0.94| +21|2023-10-06T21:56:54.2410000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3A310000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|32880841|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.93|92.30|0.00|-2.20|0001053C|0|1| +261|2023-10-06T21:56:53.8900000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:56:54.0050000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:56:54.4620000-07:00|40021585|Zeromus|00010539|32867965||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:54.0050000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T21:56:54.0050000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:56:54.6850000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||100.02|93.68|0.00|-3.14| +24|2023-10-06T21:56:54.6850000-07:00|40021585|Zeromus|DoT|0|1AC1|32867965|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9881|10000|||113.29|95.27|0.00|-1.45| +20|2023-10-06T21:56:54.6850000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|113.29|95.27|0.00|-1.45| +36|2023-10-06T21:56:54.6850000-07:00|21AC|3| +38|2023-10-06T21:56:54.6850000-07:00|40021585|Zeromus|005A5A00|32861116|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +21|2023-10-06T21:56:54.7300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32867965|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||117.88|93.31|0.00|-2.21|0001053D|0|1| +31|2023-10-06T21:56:54.7300000-07:00|10FF0001||||| +21|2023-10-06T21:56:54.8190000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|29390000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32861116|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||117.88|93.31|0.00|-2.21|0001053E|0|1| +38|2023-10-06T21:56:54.8190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||117.88|93.31|0.00|-2.21|0|0|0|||||||||||||||| +26|2023-10-06T21:56:54.8190000-07:00|76E|Sword Oath|22.96|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:56:54.8640000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32861116|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8500|10000|||111.23|94.49|0.00|-1.04|0001053F|0|1| +21|2023-10-06T21:56:54.8640000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|754003|33940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32861116|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||116.13|93.03|-0.02|-2.20|00010540|0|1| +20|2023-10-06T21:56:54.9530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|110.85|94.96|-0.02|-0.73| +21|2023-10-06T21:56:54.9970000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22630000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|32861116|40478540|10000|10000|||100.00|80.10|0.00|0.00|114414|129844|10000|10000|||105.25|92.87|0.00|-1.60|00010541|0|1| +37|2023-10-06T21:56:55.0420000-07:00|40021585|Zeromus|0001053C|32846219||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:55.0420000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21970000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|114414|129844|10000|10000|||104.56|92.85|-0.02|-2.81|73956|77430|10000|10000|||100.02|93.68|0.00|3.03|00010542|0|1| +21|2023-10-06T21:56:55.0420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32861116|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||114.44|92.60|0.00|-1.48|00010543|0|1| +39|2023-10-06T21:56:55.0860000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8700|10000|||110.65|95.26|0.00|-1.51| +39|2023-10-06T21:56:55.1320000-07:00|10FF0003|Gegehi Gehi|73814|73814|7000|10000|||113.13|99.07|0.00|-0.60| +39|2023-10-06T21:56:55.1750000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||113.35|92.73|0.00|-1.47| +39|2023-10-06T21:56:55.1750000-07:00|400216DC|Carbuncle|77698|77698|10000|10000|||118.00|91.57|0.00|1.48| +261|2023-10-06T21:56:54.7500000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:56:54.8680000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:56:55.2640000-07:00|40021585|Zeromus|0001053D|32843376||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:55.3090000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||118.24|93.49|0.00|-2.20| +261|2023-10-06T21:56:54.9800000-07:00|Change|10FF0006||||| +261|2023-10-06T21:56:55.0940000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T21:56:55.0940000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:56:55.2040000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:56:55.3980000-07:00|40021585|Zeromus|0001053F|32843219||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:55.4870000-07:00|40021585|Zeromus|00010540|32830015||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:55.4870000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32843376|40478540|10000|10000|||100.00|80.10|0.00|0.00|114414|129844|10000|10000|||102.65|92.80|0.00|-2.29|00010544|0|1| +21|2023-10-06T21:56:55.5770000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32843376|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||111.82|91.70|0.00|-1.88|00010545|0|1| +37|2023-10-06T21:56:55.6220000-07:00|40021585|Zeromus|00010541|32821212||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:55.6220000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|3E230000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32830015|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9881|10000|||112.90|95.11|0.00|-2.43|00010546|0|1| +21|2023-10-06T21:56:55.7120000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3D840000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|114414|129844|10000|10000|||102.10|92.64|0.00|-2.26|32830015|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010547|0|1| +261|2023-10-06T21:56:55.3000000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:56:55.3980000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:56:55.7560000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|150003|526D0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|32821212|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||118.24|93.49|0.00|-2.20|00010548|0|1| +37|2023-10-06T21:56:55.8000000-07:00|40021585|Zeromus|00010543|32818262||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:55.8000000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6000|10000|||112.27|91.95|0.00|-1.87| +20|2023-10-06T21:56:55.8000000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|111.01|102.31|0.00|-0.58| +37|2023-10-06T21:56:55.8440000-07:00|10FF0007|Kehabiqo Febiqo|00010542|123013||||||100.54|92.22|0.00|-2.03| +21|2023-10-06T21:56:55.8900000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4F270000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32821212|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8700|10000|||110.43|95.60|0.00|-2.55|00010549|0|1| +21|2023-10-06T21:56:55.9340000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2C3C0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|32821212|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||109.45|91.15|0.00|-1.81|0001054A|0|1| +37|2023-10-06T21:56:56.0220000-07:00|40021585|Zeromus|00010544|32815393||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:56.0680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8850|10000|0||110.43|95.60|0.00|-2.55|0|0|0|||||||||||||||| +37|2023-10-06T21:56:56.1120000-07:00|40021585|Zeromus|0001053E|32804840||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:56.1120000-07:00|10FF0001|Sesuga Sapisuga|0001053E|129071|129071|6400|10000|0||111.12|92.56|0.00|-1.87|1300|0|0|0| +37|2023-10-06T21:56:56.1120000-07:00|40021585|Zeromus|00010545|32801991||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:56.3340000-07:00|40021585|Zeromus|0001054A|32790667||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:56.3340000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||106.63|90.55|0.00|-1.93| +261|2023-10-06T21:56:55.9220000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:56:55.9220000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:56:55.9220000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T21:56:56.0380000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:56:56.3780000-07:00|40021585|Zeromus|00010548|32769566||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:56.0380000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T21:56:56.1530000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:56:56.1530000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:56:56.1530000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:56:56.4670000-07:00|10FF0007|Kehabiqo Febiqo|124311|129844|10000|10000|||96.88|90.36|0.00|-2.07| +37|2023-10-06T21:56:56.5130000-07:00|10FF0007|Kehabiqo Febiqo|00010547|108563||||||96.88|90.36|0.00|-2.07| +21|2023-10-06T21:56:56.5130000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40021585|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|32769566|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||118.21|93.51|0.00|-1.13|0001054B|0|1| +38|2023-10-06T21:56:56.5130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|0||118.21|93.51|0.00|-1.13|0|0|0||||||||||||| +26|2023-10-06T21:56:56.5130000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:56:56.5130000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9481|10000|0||110.79|96.05|0.00|-1.26|0|0|0||||||| +30|2023-10-06T21:56:56.5130000-07:00|32|Sprint|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|1E|79209|79209| +38|2023-10-06T21:56:56.5590000-07:00|400216E5||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:56:56.1530000-07:00|Change|400216DC||||||||| +38|2023-10-06T21:56:56.5590000-07:00|400216E5||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:56:56.6900000-07:00|40021585|Zeromus|00010549|32749303||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:56.7350000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|315C0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|32769566|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.54|94.77|0.00|-1.18|0001054C|0|1| +21|2023-10-06T21:56:56.8710000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32749303|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||117.89|94.12|0.00|-2.24|0001054D|0|1| +37|2023-10-06T21:56:56.9140000-07:00|40021585|Zeromus|00010546|32733396||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:56.5230000-07:00|Change|4002164C||||||||| +03|2023-10-06T21:56:56.5230000-07:00|400216E5|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||117.84|94.26|0.00|-2.24| +261|2023-10-06T21:56:56.5230000-07:00|Add|400216E5||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:56.6200000-07:00|Change|400216E5||||| +21|2023-10-06T21:56:57.0030000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|68B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32733396|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6400|10000|||105.72|94.64|0.00|-2.27|0001054E|0|1| +31|2023-10-06T21:56:57.0030000-07:00|10FF0001||||| +20|2023-10-06T21:56:57.1390000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|106.98|97.80|0.00|-1.29| +39|2023-10-06T21:56:57.2260000-07:00|10FF000B|Pusu Rosu|79209|79209|9762|10000|||106.98|97.80|0.00|-1.29| +21|2023-10-06T21:56:57.2260000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|750003|2E7E0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|32733396|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|7000|10000|||110.55|103.04|0.00|-2.71|0001054F|0|1| +38|2023-10-06T21:56:57.2260000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6800|10000|0||110.55|103.04|0.00|-2.71|0|0|0||||||| +26|2023-10-06T21:56:57.2260000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:56:57.2710000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9300|10000|||116.91|95.79|0.00|-0.98|81809|81809|9300|10000|||116.91|95.79|0.00|-0.98|00010550|0|1| +21|2023-10-06T21:56:57.3170000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|27B30000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32733396|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6400|10000|||104.42|94.66|0.00|-2.44|00010551|0|1| +20|2023-10-06T21:56:57.3170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|109.71|98.35|0.00|-0.64| +38|2023-10-06T21:56:57.3170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|0||104.42|94.66|0.00|-2.44|0|0|0||||||| +30|2023-10-06T21:56:57.3170000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:56:56.9660000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T21:56:56.9660000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:56:57.4040000-07:00|40021585|Zeromus|0001054D|32733248||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:57.4500000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|31F20000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|32733396|40478540|10000|10000|||100.00|80.10|0.00|0.00|108563|129844|10000|10000|||93.98|88.76|0.00|-2.08|00010552|0|1| +38|2023-10-06T21:56:57.4500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108563|129844|10000|10000|0||93.98|88.76|0.00|-2.08|0|0|0||||||||||||||||||| +26|2023-10-06T21:56:57.4500000-07:00|A75|Surging Tempest|53.20|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:56:57.4940000-07:00|40021585|Zeromus|0001054C|32720612||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:57.0780000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T21:56:57.5380000-07:00|10FF0006|Wowobora Gogobora|0001054B|81809|81809|9300|10000|0||116.23|97.03|0.00|-0.41|1B00|0|0|01|0AA5|0|0|| +37|2023-10-06T21:56:57.5380000-07:00|40021585|Zeromus|0001054E|32718937||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:57.5380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|0||116.23|97.03|0.00|-0.41|0|0|0||||||||||||| +261|2023-10-06T21:56:57.1700000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:56:57.1700000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:56:57.1700000-07:00|Change|400216E5||| +261|2023-10-06T21:56:57.2620000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:56:57.6710000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.53|0.00|-1.18| +24|2023-10-06T21:56:57.6710000-07:00|40021585|Zeromus|DoT|0|1FD6|32718937|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9762|10000|||107.16|97.72|0.00|-2.50| +36|2023-10-06T21:56:57.6710000-07:00|2288|3| +38|2023-10-06T21:56:57.6710000-07:00|40021585|Zeromus|005A5A00|32710787|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +21|2023-10-06T21:56:57.7160000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32718937|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.92|95.71|-0.02|-1.02|00010553|0|1| +21|2023-10-06T21:56:57.7610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32710787|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||97.87|88.54|0.00|-1.81|00010554|0|1| +37|2023-10-06T21:56:57.8950000-07:00|10FF0006|Wowobora Gogobora|00010550|81809|81809|9300|10000|0||115.41|99.24|0.00|-0.42|1B00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:56:57.8950000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:56:57.9840000-07:00|40021585|Zeromus|0001054F|32698885||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:57.5370000-07:00|Change|10FF0008||||||||| +38|2023-10-06T21:56:58.0290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108563|129844|10000|10000|0||93.98|88.69|0.00|2.88|0|0|0||||||||||||||||||| +26|2023-10-06T21:56:58.0290000-07:00|A91|Undying Flame|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +30|2023-10-06T21:56:58.0290000-07:00|A90|Rekindle|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|4B|129844|81809| +21|2023-10-06T21:56:58.0730000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|32D60000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32698885|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9762|10000|||107.19|97.70|0.00|-2.75|00010555|0|1| +21|2023-10-06T21:56:58.0730000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44712003|4EA50000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|32698885|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.54|87.77|0.00|-1.89|00010556|0|1| +261|2023-10-06T21:56:57.6550000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:56:57.6550000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:56:58.1180000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9050|10000|||109.39|99.57|0.00|-2.69| +39|2023-10-06T21:56:58.1180000-07:00|10FF0003|Gegehi Gehi|73814|73814|7000|10000|||109.73|105.32|0.00|-0.55| +39|2023-10-06T21:56:58.1630000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.46|93.89|0.00|-2.07| +21|2023-10-06T21:56:58.2530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|756003|640B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32698885|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8850|10000|||109.39|99.57|0.00|-2.69|00010557|0|1| +21|2023-10-06T21:56:58.2530000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|46A40000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|32698885|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6800|10000|||109.73|105.32|0.00|-0.55|00010558|0|1| +38|2023-10-06T21:56:58.2530000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6700|10000|0||109.73|105.32|0.00|-0.55|0|0|0|||||||||| +30|2023-10-06T21:56:58.2530000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:56:58.2530000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:56:58.2970000-07:00|40021585|Zeromus|00010554|32696664||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:58.2970000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|147B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|108563|129844|10000|10000|||93.20|87.53|-0.02|2.94|73956|77430|10000|10000|||99.93|97.89|0.00|-2.83|00010559|0|1| +39|2023-10-06T21:56:58.2970000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||114.32|101.93|0.00|-0.39| +261|2023-10-06T21:56:58.0120000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:56:58.0120000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:56:58.0120000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:56:58.4740000-07:00|40021585|Zeromus|00010553|32694290||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:58.1300000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T21:56:58.1300000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:56:58.6080000-07:00|40021585|Zeromus|00010551|32684127||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:58.6080000-07:00|10FF0001|Sesuga Sapisuga|00010551|129071|129071|6800|10000|0||97.82|91.20|0.00|-2.86|1300|0|0|0| +37|2023-10-06T21:56:58.6080000-07:00|40021585|Zeromus|00010556|32663994||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:58.6080000-07:00|400216E5|Emerald Garuda|64FE|Aerial Blast|40021585|Zeromus|354003|74F20000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|32694290|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||117.84|94.26|0.00|-2.24|0001055A|0|1| +261|2023-10-06T21:56:58.2200000-07:00|Change|400216DC||| +21|2023-10-06T21:56:58.7420000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3D580000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|108563|129844|10000|10000|||92.72|86.75|0.00|2.99|32663994|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001055B|0|1| +39|2023-10-06T21:56:58.7860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7000|10000|||97.29|90.88|0.00|-2.92| +261|2023-10-06T21:56:58.4160000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:56:58.8750000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|129C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32663994|40478540|10000|10000|||100.00|80.10|0.00|0.00|108563|129844|10000|10000|||92.70|86.72|0.00|2.99|0001055C|0|1| +20|2023-10-06T21:56:58.9650000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|2.982|113.55|105.67|0.00|-0.26| +37|2023-10-06T21:56:59.0090000-07:00|40021585|Zeromus|00010558|32645910||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:59.0090000-07:00|10FF0003|Gegehi Gehi|00010558|73814|73814|6700|10000|0||108.63|108.60|0.00|-1.51|2300|0|0|01|020004D3|0|41F00000|| +38|2023-10-06T21:56:59.0090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6700|10000|0||108.63|108.60|0.00|-1.51|0|0|0|||||||||| +37|2023-10-06T21:56:59.0530000-07:00|40021585|Zeromus|00010557|32620299||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:56:59.0530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9200|10000|0||108.39|101.73|0.00|-0.53|0|0|0|||||||||||||||| +37|2023-10-06T21:56:59.0980000-07:00|40021585|Zeromus|00010552|32607513||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:56:59.0980000-07:00|10FF0007|Kehabiqo Febiqo|00010559|113806||||||92.70|86.72|0.00|2.99| +38|2023-10-06T21:56:59.1430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||113.52|106.24|0.00|-1.28|0|0|0|||||||||||||||| +21|2023-10-06T21:56:59.2300000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|3B860000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|32607513|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.67|90.25|0.00|-2.24|0001055D|0|1| +21|2023-10-06T21:56:59.2760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|8940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32607513|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||94.66|88.92|0.00|-3.06|0001055E|0|1| +31|2023-10-06T21:56:59.2760000-07:00|10FF0001||||| +261|2023-10-06T21:56:58.8400000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:56:59.3650000-07:00|40021585|Zeromus|00010555|32594499||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:59.3650000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||92.47|86.75|0.00|-2.35| +37|2023-10-06T21:56:59.4080000-07:00|40021585|Zeromus|0001055C|32589735||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:56:59.4530000-07:00|10FF0007|Kehabiqo Febiqo|115104|129844|10000|10000|||92.59|86.71|0.00|2.99| +261|2023-10-06T21:56:59.0710000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:56:59.0710000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:56:59.5430000-07:00|10FF0007|Kehabiqo Febiqo|0001055B|99400||||||92.45|86.69|0.00|2.99| +24|2023-10-06T21:56:59.5430000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|12D9|115104|129844|10000|10000|||92.45|86.69|0.00|2.99|10FF0007|Kehabiqo Febiqo|0|115104|129844|10000|10000|||92.45|86.69|0.00|2.99| +38|2023-10-06T21:56:59.5430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104225|129844|10000|10000|0||92.45|86.69|0.00|2.99|0|0|0||||||||||||||||||| +20|2023-10-06T21:56:59.6320000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|104.46|100.96|0.00|-0.55| +261|2023-10-06T21:56:59.1720000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T21:56:59.2690000-07:00|Change|400215A3||||||||| +261|2023-10-06T21:56:59.2690000-07:00|Change|400215A2||||||||| +00|2023-10-06T21:56:59.0000000-07:00|0044|Zeromus|Begone, contemptible Light!| +20|2023-10-06T21:56:59.7660000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|107.37|104.88|0.00|-0.18| +37|2023-10-06T21:56:59.8110000-07:00|40021585|Zeromus|0001055E|32587539||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:59.8110000-07:00|40021585|Zeromus|8B5D|Flare|40021585|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:56:59.8110000-07:00|400215A2|Zeromus|8B60|Flare|400215A2|Zeromus|7.700|110.00|115.00|0.00|0.00| +20|2023-10-06T21:56:59.8110000-07:00|400215A3|Zeromus|8B60|Flare|400215A3|Zeromus|7.700|90.00|85.00|0.00|0.00| +21|2023-10-06T21:56:59.8110000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|712003|20D80000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|32589735|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||92.68|86.49|0.00|2.92|0001055F|0|1| +261|2023-10-06T21:56:59.3600000-07:00|Change|40021585||||||||| +261|2023-10-06T21:56:59.3600000-07:00|Change|40021585||||||||| +37|2023-10-06T21:56:59.8990000-07:00|40021585|Zeromus|0001055A|32557601||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:56:59.8990000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16110000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|32587539|40478540|10000|10000|||100.00|80.10|0.00|0.00|104225|129844|10000|10000|||92.18|86.66|0.00|2.99|00010560|0|1| +21|2023-10-06T21:56:59.9430000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AB30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32587539|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.93|86.69|0.00|3.05|00010561|0|1| +261|2023-10-06T21:56:59.5450000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:57:00.0310000-07:00|40021585|Zeromus|0001055D|32542363||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216EE||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216F1||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216EF||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216F4||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216F0||||||||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216F7||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216F5||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216F2||||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216F6||||||||||||||||||||||| +261|2023-10-06T21:56:59.6640000-07:00|Add|400216F3||||||||||||||||||||||||||||||||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216F0||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216F1||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216EE||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216F6||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216F7||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216EF||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216F5||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216F2||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216F4||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400216F3||| +38|2023-10-06T21:57:00.1660000-07:00|40021585|Zeromus|005A5A00|32542363|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +30|2023-10-06T21:57:00.1660000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +39|2023-10-06T21:57:00.2100000-07:00|10FF000B|Pusu Rosu|79209|79209|9643|10000|||104.23|101.12|-0.02|-2.94| +21|2023-10-06T21:57:00.2550000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19010000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|32542363|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.91|86.69|-0.02|3.02|00010562|0|1| +261|2023-10-06T21:56:59.7750000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T21:56:59.7750000-07:00|Change|400215A2||||||||||||| +21|2023-10-06T21:57:00.3890000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32542363|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.48|87.85|0.00|-2.54|00010563|0|1| +37|2023-10-06T21:57:00.4320000-07:00|40021585|Zeromus|00010560|32536714||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:00.4320000-07:00|40021585|Zeromus|0001055F|32528306||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:00.4770000-07:00|40021585|Zeromus|00010561|32525567||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:57:00.0080000-07:00|400216DC|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||118.00|91.57|0.00|1.48| +261|2023-10-06T21:57:00.0080000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:57:00.0080000-07:00|Remove|400216DC| +21|2023-10-06T21:57:00.5670000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|33E20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32525567|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9643|10000|||104.23|101.12|0.00|-2.94|00010564|0|1| +37|2023-10-06T21:57:00.6580000-07:00|40021585|Zeromus|00010562|32519166||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:00.6580000-07:00|40021585|Zeromus|DoT|0|C84|32525567|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|9200|10000|||107.26|105.46|0.00|-2.86| +36|2023-10-06T21:57:00.6580000-07:00|2364|3| +38|2023-10-06T21:57:00.6580000-07:00|40021585|Zeromus|005A5A00|32515962|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +261|2023-10-06T21:57:00.2170000-07:00|Change|10FF000B||||||||||||||||||||||| +39|2023-10-06T21:57:00.7000000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +21|2023-10-06T21:57:00.7000000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30B30000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32525567|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9200|10000|||107.26|105.46|0.00|-2.86|00010565|0|1| +20|2023-10-06T21:57:00.7450000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|107.93|110.67|0.00|-0.34| +261|2023-10-06T21:57:00.3180000-07:00|Change|10FF0003||||||||||||||||||| +39|2023-10-06T21:57:01.1020000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9000|10000|||107.08|105.98|0.00|-1.37| +37|2023-10-06T21:57:01.1470000-07:00|40021585|Zeromus|00010563|32513709||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:01.1470000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||92.48|87.85|0.00|-2.54| +39|2023-10-06T21:57:01.1470000-07:00|10FF0003|Gegehi Gehi|73814|73814|6900|10000|||107.93|110.67|0.00|-2.10| +21|2023-10-06T21:57:01.1910000-07:00|10FF000B|Pusu Rosu|4098|Temperance|10FF000B|Pusu Rosu|140F|7508000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9243|10000|||104.25|101.15|0.00|2.44|79209|79209|9243|10000|||104.25|101.15|0.00|2.44|00010566|0|1| +39|2023-10-06T21:57:01.2810000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||113.48|106.83|0.00|-2.67| +261|2023-10-06T21:57:00.8310000-07:00|Change|10FF0003||||||| +21|2023-10-06T21:57:01.4150000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|354003|56B40000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|32513709|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||113.48|106.83|0.00|-2.67|00010567|0|1| +261|2023-10-06T21:57:00.9440000-07:00|Change|10FF0006||||||||||||||| +38|2023-10-06T21:57:01.4150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||113.48|106.83|0.00|-2.67|0|0|0|||||||||||||||| +30|2023-10-06T21:57:01.4150000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:01.5040000-07:00|40021585|Zeromus|00010565|32501242||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:01.0590000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:57:01.5480000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|69B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32501242|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||93.31|86.07|0.00|2.78|00010568|0|1| +31|2023-10-06T21:57:01.5480000-07:00|10FF0001||||| +21|2023-10-06T21:57:01.5920000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21870000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|104225|129844|10000|10000|||92.18|86.66|0.00|2.27|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|00010569|0|1| +21|2023-10-06T21:57:01.7250000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|60D50000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|32501242|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.48|87.85|0.00|-2.88|0001056A|0|1| +38|2023-10-06T21:57:01.8160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||106.85|110.53|0.00|0.03|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:01.8160000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:57:01.8160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||92.48|87.85|0.00|2.37|0|0|0|||||||||| +26|2023-10-06T21:57:01.8160000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:57:01.8160000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||113.48|106.83|0.00|-2.67|0|0|0|||||||||||||||| +26|2023-10-06T21:57:01.8160000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:57:01.8160000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6900|10000|0||107.93|110.67|0.00|-2.89|0|0|0|||||||||| +26|2023-10-06T21:57:01.8160000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:57:01.8160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||91.91|86.69|0.00|2.25|0|0|0||||||||||||| +26|2023-10-06T21:57:01.8160000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:57:01.8160000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9243|10000|0||104.84|102.17|0.00|2.09|0|0|0||||||||||||| +26|2023-10-06T21:57:01.8160000-07:00|750|Temperance|20.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +26|2023-10-06T21:57:01.8160000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:01.8160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104225|129844|10000|10000|0||92.18|86.66|0.00|2.27|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:01.8160000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:57:01.8160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|0||93.31|86.07|0.00|2.78|0|0|0|||||||||| +26|2023-10-06T21:57:01.8160000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T21:57:01.8160000-07:00|10FF000B|Pusu Rosu|00010566|79209|79209|9243|10000|0||104.84|102.17|0.00|2.09|1800|0|0|02|02000750|0|41A00000|||||| +39|2023-10-06T21:57:01.8160000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7200|10000|||93.31|86.07|0.00|2.78| +37|2023-10-06T21:57:01.8590000-07:00|40021585|Zeromus|00010564|32487960||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:01.4430000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:57:02.0820000-07:00|40021585|Zeromus|00010568|32486269||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:02.0820000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|105.87|104.25|0.00|0.88| +38|2023-10-06T21:57:02.0820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9550|10000|0||107.08|111.49|0.00|0.21|0|0|0||||||||||||||||||| +21|2023-10-06T21:57:02.1270000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8D10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32487960|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|0001056B|0|1| +20|2023-10-06T21:57:02.1720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|107.08|111.49|0.00|0.21| +21|2023-10-06T21:57:02.1720000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|456003|64020000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|32487960|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6900|10000|||107.93|110.67|0.00|-2.89|0001056C|0|1| +38|2023-10-06T21:57:02.1720000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6700|10000|0||107.93|110.67|0.00|-2.89|0|0|0|||||||||| +30|2023-10-06T21:57:02.1720000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:57:02.1720000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:57:02.1720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||113.47|106.84|0.00|-1.70|0|0|0|||||||||||||||| +261|2023-10-06T21:57:01.7410000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T21:57:02.2590000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|ACB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32486269|40478540|10000|10000|||100.00|80.10|0.00|0.00|104225|129844|10000|10000|||92.18|86.66|0.00|2.27|0001056D|0|1| +21|2023-10-06T21:57:02.3040000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35712003|2F070000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|32486269|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7200|10000|||93.31|86.07|0.00|2.30|0001056E|0|1| +261|2023-10-06T21:57:01.8580000-07:00|Change|10FF0003||||||||||||||||| +39|2023-10-06T21:57:02.3490000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||91.91|86.69|0.00|2.25| +21|2023-10-06T21:57:02.3490000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32714003|2AE90000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|32486269|40478540|10000|10000|||100.00|80.10|0.00|0.00|104225|129844|10000|10000|||92.18|86.66|0.00|2.27|0001056F|0|1| +37|2023-10-06T21:57:02.3940000-07:00|10FF0007|Kehabiqo Febiqo|00010569|112808||||||92.18|86.66|0.00|2.27| +24|2023-10-06T21:57:02.4370000-07:00|40021585|Zeromus|DoT|A92|4F3|32486269|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||113.06|107.33|0.00|-1.11| +37|2023-10-06T21:57:02.4380000-07:00|40021585|Zeromus|00010567|32462806||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:02.4380000-07:00|10FF0006|Wowobora Gogobora|00010567|81809|81809|10000|10000|0||113.06|107.33|0.00|-1.11|1B00|0|0|01|05000A92|0|41700000|| +26|2023-10-06T21:57:02.4380000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:57:02.4380000-07:00|40021585|Zeromus|005A5A00|32462806|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +39|2023-10-06T21:57:02.4820000-07:00|10FF0007|Kehabiqo Febiqo|114106|129844|10000|10000|||92.18|86.66|0.00|2.27| +38|2023-10-06T21:57:02.4820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9550|10000|0||107.10|111.50|0.00|-2.01|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:02.4820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||92.48|87.85|0.00|2.37|0|0|0|||||||||| +38|2023-10-06T21:57:02.4820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||112.55|107.93|0.00|-0.98|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:02.4820000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6700|10000|0||107.93|110.67|0.00|-2.89|0|0|0|||||||||| +261|2023-10-06T21:57:02.0870000-07:00|Add|400216FE||||||||||||||||||||||||| +38|2023-10-06T21:57:02.4820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||91.91|86.69|0.00|2.25|0|0|0||||||||||||| +38|2023-10-06T21:57:02.4820000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9243|10000|0||106.30|105.32|0.00|2.65|0|0|0||||||||||||| +38|2023-10-06T21:57:02.4820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114106|129844|10000|10000|0||92.18|86.66|0.00|2.27|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:02.4820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7200|10000|0||93.31|86.07|0.00|2.30|0|0|0|||||||||| +21|2023-10-06T21:57:02.4820000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|25820000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32462806|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||112.55|107.93|0.00|-0.98|00010570|0|1| +21|2023-10-06T21:57:02.4820000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|3AEC0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|32462806|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|00010571|0|1| +261|2023-10-06T21:57:02.0870000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:57:02.0870000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:02.5270000-07:00|40021585|Zeromus|0001056A|32438017||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:02.5710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|132C|112808|129844|10000|10000|||92.18|86.66|0.00|2.27|10FF0007|Kehabiqo Febiqo|0|112808|129844|10000|10000|||92.18|86.66|0.00|2.27| +38|2023-10-06T21:57:02.5710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119014|129844|10000|10000|0||92.18|86.66|0.00|2.27|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:02.1780000-07:00|Change|400216E5||||| +38|2023-10-06T21:57:02.6590000-07:00|40021700||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:57:02.6610000-07:00|40021585|Zeromus|0001056B|32435760||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:02.6610000-07:00|40021700||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:57:02.7940000-07:00|40021585|Zeromus|0001056D|32432997||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:02.8830000-07:00|40021585|Zeromus|00010571|32417913||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:02.3800000-07:00|Add|40021700||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:57:02.3800000-07:00|40021700|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||109.69|108.95|0.00|1.18| +261|2023-10-06T21:57:02.3800000-07:00|Change|40021700||| +37|2023-10-06T21:57:02.9730000-07:00|40021585|Zeromus|0001056F|32406928||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:02.9730000-07:00|40021585|Zeromus|0001056C|32381326||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:03.0170000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|D8E0000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|32417913|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7200|10000|||93.31|86.07|0.00|2.30|00010572|0|1| +21|2023-10-06T21:57:03.0170000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|2FEE0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32417913|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9243|10000|||106.46|105.73|0.00|-2.89|00010573|0|1| +37|2023-10-06T21:57:03.0610000-07:00|40021585|Zeromus|0001056E|32369287||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:03.0610000-07:00|10FF0001|Sesuga Sapisuga|0001056E|129071|129071|8200|10000|0||93.31|86.07|0.00|2.30|1300|0|0|0| +21|2023-10-06T21:57:03.0610000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32381326|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.48|87.85|0.00|2.37|00010574|0|1| +261|2023-10-06T21:57:02.5920000-07:00|Change|10FF0001||||| +37|2023-10-06T21:57:03.1060000-07:00|40021585|Zeromus|00010570|32359685||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:03.1060000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|754003|3B570000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32381326|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9550|10000|||107.10|111.50|0.00|-2.92|00010575|0|1| +21|2023-10-06T21:57:03.1520000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|38460000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|32359685|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6700|10000|||108.15|111.08|0.00|1.02|00010576|0|1| +38|2023-10-06T21:57:03.1520000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6400|10000|0||108.15|111.08|0.00|1.02|0|0|0||||||||||||| +30|2023-10-06T21:57:03.1520000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:57:03.1520000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:57:02.7120000-07:00|Change|10FF000B||||||||||||||||||||||| +39|2023-10-06T21:57:03.2400000-07:00|10FF000B|Pusu Rosu|79209|79209|9124|10000|||106.46|105.73|0.00|-2.89| +261|2023-10-06T21:57:02.9410000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:57:03.0550000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:57:03.1520000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:57:03.6870000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +24|2023-10-06T21:57:03.6870000-07:00|40021585|Zeromus|DoT|0|CB7|32359685|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|9150|10000|||107.10|111.50|0.00|-2.92| +21|2023-10-06T21:57:03.6870000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|2D7E0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|32359685|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||93.31|86.07|0.00|2.30|00010577|0|1| +34|2023-10-06T21:57:03.6870000-07:00|40021700|Carbuncle|40021700|Carbuncle|01| +36|2023-10-06T21:57:03.6870000-07:00|2440|3| +38|2023-10-06T21:57:03.6870000-07:00|40021585|Zeromus|005A5A00|32356430|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +261|2023-10-06T21:57:03.2440000-07:00|Change|40021700||||||||| +37|2023-10-06T21:57:03.8190000-07:00|40021585|Zeromus|00010574|32352685||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:03.8190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32356430|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||93.31|86.07|0.00|2.30|00010578|0|1| +31|2023-10-06T21:57:03.8190000-07:00|10FF0001||||| +37|2023-10-06T21:57:03.9090000-07:00|40021585|Zeromus|00010575|32337494||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:03.9090000-07:00|40021585|Zeromus|00010576|32323088||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:03.9090000-07:00|10FF0003|Gegehi Gehi|00010576|73814|73814|6400|10000|0||108.32|111.41|0.00|-2.88|2300|0|0|01|030004D2|0|41F00000|| +38|2023-10-06T21:57:03.9090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6400|10000|0||108.32|111.41|0.00|-2.88|0|0|0||||||||||||| +21|2023-10-06T21:57:03.9540000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|354003|2D430000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32352685|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||108.87|112.57|0.00|-0.92|00010579|0|1| +21|2023-10-06T21:57:03.9540000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|726003|84C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32352685|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6400|10000|||108.32|111.41|0.00|-2.88|0001057A|0|1| +37|2023-10-06T21:57:04.0430000-07:00|40021585|Zeromus|00010577|32311442||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:04.0430000-07:00|10FF0001|Sesuga Sapisuga|00010577|129071|129071|8700|10000|0||93.31|86.07|0.00|2.30|1300|0|0|0| +37|2023-10-06T21:57:04.0430000-07:00|40021585|Zeromus|00010572|32307972|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T21:57:04.0430000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +39|2023-10-06T21:57:04.0880000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9350|10000|||107.10|111.52|0.00|-0.44| +39|2023-10-06T21:57:04.1330000-07:00|10FF0003|Gegehi Gehi|73814|73814|6600|10000|||108.32|111.41|0.00|-2.88| +21|2023-10-06T21:57:04.1330000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|712003|48E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32323088|40478540|10000|10000|||100.00|80.10|0.00|0.00|119014|129844|10000|10000|||91.97|86.63|0.00|2.99|0001057B|0|1| +39|2023-10-06T21:57:04.1760000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||92.48|87.85|0.00|2.37| +261|2023-10-06T21:57:03.7180000-07:00|Change|10FF0001||| +261|2023-10-06T21:57:03.7180000-07:00|Change|10FF000B||||||||| +21|2023-10-06T21:57:04.2220000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1E440000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|32307972|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.48|87.85|0.00|2.37|0001057C|0|1| +37|2023-10-06T21:57:04.3110000-07:00|40021585|Zeromus|00010573|32295702||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:04.3110000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||108.87|112.57|0.00|-2.87| +21|2023-10-06T21:57:04.3110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AA50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32307972|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|0001057D|0|1| +37|2023-10-06T21:57:04.3550000-07:00|40021585|Zeromus|00010578|32293911||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:03.8310000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:57:04.0670000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:57:04.0670000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:04.5780000-07:00|40021585|Zeromus|00010579|32282324||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:04.5780000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|107.32|111.89|0.00|0.41| +21|2023-10-06T21:57:04.6220000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42710003|2E700000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|32282324|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|0001057E|0|1| +21|2023-10-06T21:57:04.7110000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|AF40000|BDA40E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|32282324|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9124|10000|||107.84|111.30|0.00|0.20|0001057F|0|1| +37|2023-10-06T21:57:04.7560000-07:00|40021585|Zeromus|0001057B|32263666||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:04.8000000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8900|10000|||93.31|86.07|0.00|2.30| +21|2023-10-06T21:57:04.8000000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|31BB0000|143E|340000|200004|264A8000|11B|2A8000|0|0|0|0|0|0|0|0|32263666|40478540|10000|10000|||100.00|80.10|0.00|0.00|119014|129844|10000|10000|||91.97|86.63|0.00|2.25|00010580|0|1| +21|2023-10-06T21:57:04.8000000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41712003|42DB0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|32263666|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||93.31|86.07|0.00|2.30|00010581|0|1| +38|2023-10-06T21:57:04.8000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||93.31|86.07|0.00|2.30|0|0|0|||||||||||||||| +26|2023-10-06T21:57:04.8000000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:57:04.8000000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:57:04.8460000-07:00|40021585|Zeromus|0001057D|32260941||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:04.8890000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|147A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|119014|129844|10000|10000|||91.97|86.63|0.00|2.25|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|00010582|0|1| +37|2023-10-06T21:57:04.9780000-07:00|40021585|Zeromus|0001057C|32253193||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:05.0670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9900|10000|0||107.43|112.06|-0.01|-3.13|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:05.1120000-07:00|40021585|Zeromus|0001057A|32219209||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:05.1570000-07:00|40021585|Zeromus|DoT|A92|622|32253193|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9600|10000|||108.87|112.57|0.00|-2.87| +38|2023-10-06T21:57:05.1570000-07:00|40021585|Zeromus|005A5A00|32217639|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +38|2023-10-06T21:57:05.1570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||108.87|112.57|0.00|-2.87|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:05.2460000-07:00|40021585|Zeromus|0001057E|32205751||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:04.6650000-07:00|Change|10FF0001||| +261|2023-10-06T21:57:04.7820000-07:00|Change|10FF000B||||||||||| +39|2023-10-06T21:57:05.3360000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||91.91|86.69|0.00|2.25| +37|2023-10-06T21:57:05.3790000-07:00|40021585|Zeromus|00010581|32188636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:05.3790000-07:00|10FF0001|Sesuga Sapisuga|00010581|129071|129071|8900|10000|0||93.31|86.07|0.00|2.30|1300|0|0|02|0300076E|03|41F00000|||||| +38|2023-10-06T21:57:05.3790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||93.31|86.07|0.00|2.30|0|0|0|||||||||||||||| +39|2023-10-06T21:57:05.4680000-07:00|10FF0007|Kehabiqo Febiqo|120312|129844|10000|10000|||91.97|86.63|0.00|2.25| +38|2023-10-06T21:57:05.4690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9900|10000|0||107.44|112.08|0.00|-2.91|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:05.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:57:05.4690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||92.48|87.85|0.00|2.37|0|0|0|||||||||| +26|2023-10-06T21:57:05.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:57:05.4690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||108.87|112.57|0.00|-2.87|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:05.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:57:05.4690000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6600|10000|0||108.32|111.41|0.00|-2.88|0|0|0||||||||||||| +26|2023-10-06T21:57:05.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:57:05.4690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||91.91|86.69|0.00|2.25|0|0|0||||||||||||| +26|2023-10-06T21:57:05.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:57:05.4690000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8724|10000|0||107.87|112.84|0.00|-0.86|0|0|0||||||||||||| +26|2023-10-06T21:57:05.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:05.4690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120312|129844|10000|10000|0||91.97|86.63|0.00|2.25|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:05.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:57:05.4690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||93.31|86.07|0.00|2.30|0|0|0|||||||||||||||| +26|2023-10-06T21:57:05.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T21:57:05.4690000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|3DD90000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32188636|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||108.87|112.57|0.00|-2.87|00010583|0|1| +21|2023-10-06T21:57:05.5140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2F070000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32188636|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9900|10000|||107.44|112.08|0.00|-2.91|00010584|0|1| +261|2023-10-06T21:57:05.1160000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:57:05.5580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|137B|120312|129844|10000|10000|||91.97|86.63|0.00|2.25|10FF0007|Kehabiqo Febiqo|0|120312|129844|10000|10000|||91.97|86.63|0.00|2.25| +21|2023-10-06T21:57:05.5580000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13CE0F|A748000|0|0|0|0|0|0|0|0|0|0|129071|129071|8900|10000|||93.31|86.07|0.00|2.30|129071|129071|8900|10000|||93.31|86.07|0.00|2.30|00010585|0|1| +38|2023-10-06T21:57:05.5580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125299|129844|10000|10000|0||91.97|86.63|0.00|2.25|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:05.5580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||93.31|86.07|0.00|2.30|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:05.5580000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:57:05.5580000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T21:57:05.5580000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:57:05.5580000-07:00|10FF0001||||| +261|2023-10-06T21:57:05.1160000-07:00|Change|10FF0006||| +20|2023-10-06T21:57:05.6020000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|108.32|111.41|0.00|-2.88| +261|2023-10-06T21:57:05.1160000-07:00|Change|10FF0003||||||||||||| +24|2023-10-06T21:57:05.6470000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|189F|129071|129071|8900|10000|||93.31|86.07|0.00|2.30|10FF0001|Sesuga Sapisuga|0|129071|129071|8900|10000|||93.31|86.07|0.00|2.30| +21|2023-10-06T21:57:05.6470000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32188636|40478540|10000|10000|||100.00|80.10|0.00|0.00|125299|129844|10000|10000|||91.97|86.63|0.00|2.25|00010586|0|1| +38|2023-10-06T21:57:05.6470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||93.31|86.07|0.00|2.30|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:57:05.6910000-07:00|10FF0007|Kehabiqo Febiqo|00010582|129844||||||91.97|86.63|0.00|2.25| +21|2023-10-06T21:57:05.7360000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32188636|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.48|87.85|0.00|2.37|00010587|0|1| +37|2023-10-06T21:57:06.0040000-07:00|40021585|Zeromus|0001057F|32185832|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200074F|0|41F00000|| +26|2023-10-06T21:57:06.0040000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +37|2023-10-06T21:57:06.0940000-07:00|40021585|Zeromus|00010583|32169999||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:06.0940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32185832|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||93.31|86.07|0.00|2.30|00010588|0|1| +31|2023-10-06T21:57:06.0940000-07:00|10FF0001||||| +37|2023-10-06T21:57:06.1830000-07:00|40021585|Zeromus|00010586|32167119||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:05.8500000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:57:06.2270000-07:00|10FF000B|Pusu Rosu|79209|79209|9005|10000|||107.87|112.90|0.00|-0.72| +37|2023-10-06T21:57:06.3160000-07:00|40021585|Zeromus|00010580|32154388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:06.3160000-07:00|40021585|Zeromus|00010584|32142349||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:05.9700000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T21:57:06.4950000-07:00|40021585|Zeromus|00010587|32140041||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:06.4950000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|86A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32142349|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|00010589|0|1| +04|2023-10-06T21:57:06.0830000-07:00|400216E5|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||117.84|94.26|0.00|-2.24| +261|2023-10-06T21:57:06.0830000-07:00|Remove|400216E5| +37|2023-10-06T21:57:06.6270000-07:00|40021585|Zeromus|00010588|32138289||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:06.6730000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +24|2023-10-06T21:57:06.6730000-07:00|40021585|Zeromus|DoT|0|1EFD|32140041|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9005|10000|||107.87|112.90|0.00|-0.72| +36|2023-10-06T21:57:06.6730000-07:00|251C|3| +38|2023-10-06T21:57:06.6730000-07:00|40021585|Zeromus|005A5A00|32130356|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T21:57:06.7170000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|722003|93F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32140041|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.48|87.85|0.00|2.37|0001058A|0|1| +21|2023-10-06T21:57:06.8060000-07:00|40021585|Zeromus|8B5D|Flare|40021585|Zeromus|1B|8B5D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32130356|40478540|10000|10000|||100.00|80.10|0.00|0.00|32130356|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001058B|0|1| +21|2023-10-06T21:57:06.8940000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|712003|29280000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|32130356|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|0001058C|0|1| +261|2023-10-06T21:57:06.3670000-07:00|Change|40021585||||| +21|2023-10-06T21:57:06.9850000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|25190000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|32130356|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||108.87|112.57|0.00|-2.87|0001058D|0|1| +20|2023-10-06T21:57:06.9850000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|107.56|111.86|0.00|2.75| +37|2023-10-06T21:57:07.0290000-07:00|40021585|Zeromus|00010589|32128202||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:07.0300000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|150003|2E030000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|32130356|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6600|10000|||108.32|111.41|0.00|-2.88|0001058E|0|1| +38|2023-10-06T21:57:07.0300000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6400|10000|0||108.32|111.41|0.00|-2.88|0|0|0|||||||||| +26|2023-10-06T21:57:07.0300000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:57:07.0300000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:57:06.5610000-07:00|Change|10FF0006||| +261|2023-10-06T21:57:06.5610000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T21:57:07.1170000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|9700|10000|||107.56|111.86|0.00|2.89| +39|2023-10-06T21:57:07.1170000-07:00|10FF0003|Gegehi Gehi|73814|73814|6600|10000|||108.32|111.41|0.00|-2.88| +39|2023-10-06T21:57:07.1630000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||92.48|87.85|0.00|2.37| +20|2023-10-06T21:57:07.1630000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|107.87|112.90|0.00|-0.72| +21|2023-10-06T21:57:07.2530000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|171C0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|32128202|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||91.97|86.63|0.00|2.25|0001058F|0|1| +37|2023-10-06T21:57:07.2980000-07:00|40021585|Zeromus|0001058C|32117666||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:07.2980000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||108.87|112.57|0.00|-2.87| +21|2023-10-06T21:57:07.2980000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|27D80000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|32128202|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||93.31|86.07|0.00|2.30|00010590|0|1| +38|2023-10-06T21:57:07.2980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||93.31|86.07|0.00|2.30|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:07.2980000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:57:06.7930000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:57:06.9130000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:57:07.6090000-07:00|40021585|Zeromus|0001058D|32108169||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:07.6980000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|00010591|0|1| +38|2023-10-06T21:57:07.6980000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||91.91|86.69|0.00|2.25|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:07.6980000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|83502|83502| +26|2023-10-06T21:57:07.6980000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +38|2023-10-06T21:57:07.7400000-07:00|4002170B||005A5A00|76288|79156|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:57:07.7430000-07:00|4002170B||005A5A00|76288|79156|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:57:07.7880000-07:00|40021585|Zeromus|0001058F|32102253||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:07.7880000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9100|10000|||93.31|86.07|0.00|2.30| +22|2023-10-06T21:57:07.7880000-07:00|400215A2|Zeromus|8B60|Flare|10FF0006|Wowobora Gogobora|150003|CC8D0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||108.87|112.57|0.00|-2.87|44|44|0|10000|||110.00|115.00|0.00|0.00|00010592|0|4| +22|2023-10-06T21:57:07.7880000-07:00|400215A2|Zeromus|8B60|Flare|10FF000B|Pusu Rosu|150003|DB020000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9005|10000|||107.87|112.90|0.00|-2.91|44|44|0|10000|||110.00|115.00|0.00|0.00|00010592|1|4| +22|2023-10-06T21:57:07.7880000-07:00|400215A2|Zeromus|8B60|Flare|10FF0003|Gegehi Gehi|150003|C8BA0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6600|10000|||108.32|111.41|0.00|-2.88|44|44|0|10000|||110.00|115.00|0.00|0.00|00010592|2|4| +22|2023-10-06T21:57:07.7880000-07:00|400215A2|Zeromus|8B60|Flare|10FF0004|Buhojaqe Zijaqe|150003|D7940000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|9700|10000|||107.56|111.86|0.00|-2.91|44|44|0|10000|||110.00|115.00|0.00|0.00|00010592|3|4| +22|2023-10-06T21:57:07.7880000-07:00|400215A3|Zeromus|8B60|Flare|10FF0007|Kehabiqo Febiqo|150003|8ED70000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||91.97|86.63|0.00|2.25|44|44|0|10000|||90.00|85.00|0.00|0.00|00010593|0|4| +22|2023-10-06T21:57:07.7880000-07:00|400215A3|Zeromus|8B60|Flare|10FF000A|Dukaro Nezikaro|150003|E16A0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|44|44|0|10000|||90.00|85.00|0.00|0.00|00010593|1|4| +22|2023-10-06T21:57:07.7880000-07:00|400215A3|Zeromus|8B60|Flare|10FF0001|Sesuga Sapisuga|150203|65C00000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8900|10000|||93.31|86.07|0.00|2.30|44|44|0|10000|||90.00|85.00|0.00|0.00|00010593|2|4| +22|2023-10-06T21:57:07.7880000-07:00|400215A3|Zeromus|8B60|Flare|10FF0008|Kokosaze Lulusaze|150003|E33C0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||92.48|87.85|0.00|2.37|44|44|0|10000|||90.00|85.00|0.00|0.00|00010593|3|4| +261|2023-10-06T21:57:07.2420000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T21:57:07.2420000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T21:57:07.3350000-07:00|Change|10FF0001||| +37|2023-10-06T21:57:07.8320000-07:00|40021585|Zeromus|0001058E|32090474||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:07.8750000-07:00|40021585|Zeromus|0001058A|32052593||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:07.9210000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31090000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|32052593|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|9700|10000|||107.56|111.86|0.00|-2.91|00010594|0|1| +37|2023-10-06T21:57:07.9650000-07:00|10FF0006|Wowobora Gogobora|00010592|29444||||||108.87|112.57|0.00|-2.87| +37|2023-10-06T21:57:07.9650000-07:00|10FF0007|Kehabiqo Febiqo|00010593|93277||||||91.97|86.63|0.00|2.25| +21|2023-10-06T21:57:07.9650000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|720003|12EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32052593|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6600|10000|||108.32|111.41|0.00|-2.88|00010595|0|1| +261|2023-10-06T21:57:07.5350000-07:00|Change|10FF0006||| +261|2023-10-06T21:57:07.5350000-07:00|Change|10FF0003||||| +37|2023-10-06T21:57:08.0090000-07:00|10FF000B|Pusu Rosu|00010592|23143||||||107.87|112.90|0.00|-2.91| +37|2023-10-06T21:57:08.0090000-07:00|10FF000A|Dukaro Nezikaro|00010593|25796|83502|10000|10000|0||91.91|86.69|0.00|2.25|1E01|0|0|02|040007A2|05|C1F00000|||||| +37|2023-10-06T21:57:08.0530000-07:00|10FF0003|Gegehi Gehi|00010592|22428||||||108.19|110.91|0.00|-2.88| +37|2023-10-06T21:57:08.0530000-07:00|10FF0001|Sesuga Sapisuga|00010593|103023||||||93.28|86.31|0.00|0.62| +38|2023-10-06T21:57:08.0550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9850|10000|0||107.56|111.86|0.00|-2.91|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:08.0980000-07:00|10FF0004|Buhojaqe Zijaqe|00010592|26353||||||107.56|111.86|0.00|-2.91| +37|2023-10-06T21:57:08.0980000-07:00|10FF0008|Kokosaze Lulusaze|00010593|32044||||||92.48|87.85|0.00|2.37| +21|2023-10-06T21:57:08.0980000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|330F0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|32052593|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9005|10000|||107.87|112.90|0.00|-2.91|00010596|0|1| +24|2023-10-06T21:57:08.1420000-07:00|40021585|Zeromus|DoT|A92|64B|32052593|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|29444|81809|9600|10000|||108.87|112.57|0.00|-2.87| +38|2023-10-06T21:57:08.1420000-07:00|40021585|Zeromus|005A5A00|32050982|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:57:08.1420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|29444|81809|10000|10000|0||108.87|112.57|0.00|-2.87|0|0|0||||||||||||||||||| +21|2023-10-06T21:57:08.1860000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14A10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||91.91|86.69|0.00|2.25|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|00010597|0|1| +261|2023-10-06T21:57:07.7180000-07:00|Add|4002170B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:57:07.7180000-07:00|4002170B|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||93.31|85.56|0.00|-0.89| +261|2023-10-06T21:57:07.8370000-07:00|Change|4002170B||| +261|2023-10-06T21:57:07.8370000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T21:57:07.8370000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:57:08.3650000-07:00|10FF000A|Dukaro Nezikaro|26631|83502|10000|10000|||91.91|86.69|0.00|2.25| +21|2023-10-06T21:57:08.3650000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32050982|40478540|10000|10000|||100.00|80.10|0.00|0.00|103023|129071|9100|10000|||93.21|86.84|0.00|0.52|00010598|0|1| +31|2023-10-06T21:57:08.3650000-07:00|10FF0001||||| +21|2023-10-06T21:57:08.4090000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32050982|40478540|10000|10000|||100.00|80.10|0.00|0.00|32044|90216|10000|10000|||92.48|87.85|0.00|2.37|00010599|0|1| +38|2023-10-06T21:57:08.4090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|26631|83502|10000|10000|0||91.91|86.69|0.00|2.25|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:07.9570000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:57:08.4550000-07:00|10FF000A|Dukaro Nezikaro|00010591|26631|83502|10000|10000|0||91.91|86.69|-0.02|2.27|1E00|0|0|02|040007A2|05|41F00000|||||| +39|2023-10-06T21:57:08.4550000-07:00|10FF0007|Kehabiqo Febiqo|94575|129844|10000|10000|||91.97|86.63|-0.02|2.26| +38|2023-10-06T21:57:08.4550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|26353|81541|9850|10000|0||107.56|111.83|0.00|-2.87|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:08.4550000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:57:08.4550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|32044|90216|10000|10000|0||92.48|87.85|0.00|2.37|0|0|0|||||||||| +26|2023-10-06T21:57:08.4550000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:57:08.4550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|29444|81809|10000|10000|0||108.86|112.55|0.00|-2.82|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:08.4550000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:57:08.4550000-07:00|10FF0003|Gegehi Gehi|005A5A23|22428|73814|6600|10000|0||105.49|100.77|0.00|-2.88|0|0|0|||||||||| +26|2023-10-06T21:57:08.4550000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:57:08.4550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|26631|83502|10000|10000|0||91.91|86.69|-0.02|2.27|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:08.4550000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:57:08.4550000-07:00|10FF000B|Pusu Rosu|005A5A18|23143|79209|8605|10000|0||107.87|112.90|0.00|-2.91|0|0|0||||||||||||| +26|2023-10-06T21:57:08.4550000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:08.4550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94575|129844|10000|10000|0||91.97|86.63|-0.02|2.26|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:08.4550000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:57:08.4550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103023|129071|9100|10000|0||93.49|87.37|0.00|0.43|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:08.4550000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T21:57:08.4980000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|32050982|40478540|10000|10000|||100.00|80.10|0.00|0.00|29444|81809|10000|10000|||108.86|112.55|0.00|-2.82|0001059A|0|1| +261|2023-10-06T21:57:07.9570000-07:00|Change|40021700||||||||| +261|2023-10-06T21:57:07.9570000-07:00|Change|40021700||||||||| +261|2023-10-06T21:57:07.9570000-07:00|Change|40021700||||||||| +38|2023-10-06T21:57:08.5440000-07:00|40021710||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +24|2023-10-06T21:57:08.5440000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|131B|94575|129844|10000|10000|||91.99|86.65|0.00|2.27|10FF0007|Kehabiqo Febiqo|0|94575|129844|10000|10000|||91.99|86.65|0.00|2.27| +38|2023-10-06T21:57:08.5440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99466|129844|10000|10000|0||91.99|86.65|0.00|2.27|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:08.5440000-07:00|40021710||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T21:57:08.5880000-07:00|40021585|Zeromus|00010590|32040782||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:08.5880000-07:00|10FF0001|Sesuga Sapisuga|00010590|103023|129071|9500|10000|0||93.77|88.00|0.00|0.41|1300|0|0|0| +261|2023-10-06T21:57:08.0710000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:57:08.6320000-07:00|40021585|Zeromus|00010595|32035940||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:08.6320000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|18FD|103023|129071|9500|10000|||94.03|88.60|0.00|0.39|10FF0001|Sesuga Sapisuga|0|103023|129071|9500|10000|||94.03|88.60|0.00|0.39| +38|2023-10-06T21:57:08.6320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109420|129071|9500|10000|0||94.03|88.60|0.00|0.39|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:57:08.6760000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32040782|40478540|10000|10000|||100.00|80.10|0.00|0.00|26631|83502|10000|10000|||91.92|86.70|0.00|2.37|0001059B|0|1| +37|2023-10-06T21:57:08.7210000-07:00|40021585|Zeromus|00010594|32023387||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:08.8100000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|38360000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|99466|129844|10000|10000|||92.15|86.90|0.00|2.28|32023387|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001059C|0|1| +261|2023-10-06T21:57:08.2670000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:08.2670000-07:00|Change|4002170B||||| +37|2023-10-06T21:57:08.9000000-07:00|40021585|Zeromus|00010598|32020616||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:08.3640000-07:00|Add|40021710||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:57:08.3640000-07:00|40021710|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||110.30|113.10|0.00|-2.89| +37|2023-10-06T21:57:08.9880000-07:00|10FF000A|Dukaro Nezikaro|00010597|31912||||||93.48|87.96|0.00|2.46| +261|2023-10-06T21:57:08.4550000-07:00|Change|40021710||||| +21|2023-10-06T21:57:09.0330000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32020616|40478540|10000|10000|||100.00|80.10|0.00|0.00|99466|129844|10000|10000|||92.99|88.28|0.00|2.19|0001059D|0|1| +21|2023-10-06T21:57:09.0780000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40021585|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|32020616|40478540|10000|10000|||100.00|80.10|0.00|0.00|26631|83502|10000|10000|||93.48|87.96|0.00|2.46|0001059E|0|1| +38|2023-10-06T21:57:09.0780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|31912|83502|10000|10000|0||93.48|87.96|0.00|2.46|0|0|0|||||||||||||||| +30|2023-10-06T21:57:09.0780000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T21:57:08.5530000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:09.1670000-07:00|40021585|Zeromus|00010599|32018362||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:09.1670000-07:00|4002170B|Bunshin|64AF|Phantom Kamaitachi|40021585|Zeromus|356003|7E730000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|32020616|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||94.79|89.03|0.00|2.60|0001059F|0|1| +261|2023-10-06T21:57:08.6700000-07:00|Change|4002170B||||||||| +37|2023-10-06T21:57:09.2110000-07:00|40021585|Zeromus|0001059B|32016090||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:09.2110000-07:00|10FF000B|Pusu Rosu|23935|79209|8886|10000|||107.84|112.85|0.00|-2.65| +21|2023-10-06T21:57:09.2110000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32018362|40478540|10000|10000|||100.00|80.10|0.00|0.00|22428|73814|6600|10000|||103.51|100.55|0.00|-2.79|000105A0|0|1| +21|2023-10-06T21:57:09.2560000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C726003|60280000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|32018362|40478540|10000|10000|||100.00|80.10|0.00|0.00|32044|90216|10000|10000|||94.27|90.36|0.00|0.76|000105A1|0|1| +37|2023-10-06T21:57:09.3900000-07:00|40021585|Zeromus|00010596|32003019||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:09.4360000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|750003|2BAE0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|32016090|40478540|10000|10000|||100.00|80.10|0.00|0.00|22428|73814|6600|10000|||102.96|100.75|0.00|-2.78|000105A2|0|1| +38|2023-10-06T21:57:09.4360000-07:00|10FF0003|Gegehi Gehi|005A5A23|22428|73814|6400|10000|0||102.96|100.75|0.00|-2.78|0|0|0||||||| +30|2023-10-06T21:57:09.4360000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:57:08.8930000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:57:09.0070000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:57:09.5690000-07:00|40021585|Zeromus|0001059D|32000102||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:09.5690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109420|129071|9500|10000|0||95.79|93.46|0.00|0.36|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:09.5690000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:57:09.1250000-07:00|Change|40021710||| +37|2023-10-06T21:57:09.6120000-07:00|10FF0007|Kehabiqo Febiqo|0001059C|85076||||||94.92|91.51|0.00|2.10| +20|2023-10-06T21:57:09.6140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|103.70|108.14|0.00|-2.41| +22|2023-10-06T21:57:09.6140000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|39F70000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|23935|79209|8886|10000|||106.73|111.17|0.00|-2.58|23935|79209|8886|10000|||106.73|111.17|0.00|-2.58|000105A3|0|5| +22|2023-10-06T21:57:09.6140000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|3A4D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|26353|81541|9850|10000|||103.70|108.14|0.00|-2.41|23935|79209|8886|10000|||106.73|111.17|0.00|-2.58|000105A3|1|5| +22|2023-10-06T21:57:09.6140000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|5A270000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|29444|81809|10000|10000|||105.44|108.16|0.00|-2.54|23935|79209|8886|10000|||106.73|111.17|0.00|-2.58|000105A3|2|5| +22|2023-10-06T21:57:09.6140000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|3AE70000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|22428|73814|6400|10000|||102.28|101.01|0.00|-3.07|23935|79209|8886|10000|||106.73|111.17|0.00|-2.58|000105A3|3|5| +22|2023-10-06T21:57:09.6140000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|3AF80000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|109420|129071|9500|10000|||96.05|94.09|0.00|0.43|23935|79209|8886|10000|||106.73|111.17|0.00|-2.58|000105A3|4|5| +261|2023-10-06T21:57:09.1250000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:09.1250000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T21:57:09.6570000-07:00|40021585|Zeromus|DoT|0|18FA|32000102|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|23935|79209|8886|10000|||106.73|111.17|0.00|-2.58| +36|2023-10-06T21:57:09.6570000-07:00|25F8|3| +38|2023-10-06T21:57:09.6570000-07:00|40021585|Zeromus|005A5A00|31993708|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:57:09.7020000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|-2.84| +21|2023-10-06T21:57:09.7020000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|21860000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|32000102|40478540|10000|10000|||100.00|80.10|0.00|0.00|85076|129844|10000|10000|||95.16|92.00|0.00|2.08|000105A4|0|1| +37|2023-10-06T21:57:09.7460000-07:00|40021585|Zeromus|000105A0|31993673||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:09.3100000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:57:09.7910000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|40DD0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|31993708|40478540|10000|10000|||100.00|80.10|0.00|0.00|109420|129071|9500|10000|||96.27|94.56|0.00|0.44|000105A5|0|1| +38|2023-10-06T21:57:09.7910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109420|129071|9500|10000|0||96.27|94.56|0.00|0.44|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:09.7910000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T21:57:09.3100000-07:00|Change|400215A1||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|400215A0||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|4002159F||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|4002159D||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|40021599||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|4002159B||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|4002159A||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|4002159C||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|4002159E||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|40021598||||||||| +21|2023-10-06T21:57:09.8790000-07:00|400215A1|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|000105A6|0|0| +20|2023-10-06T21:57:09.8790000-07:00|400215A2|Zeromus|8B62|Flare|400215A2|Zeromus|4.700|110.00|115.00|0.00|0.00| +20|2023-10-06T21:57:09.8790000-07:00|400215A3|Zeromus|8B62|Flare|400215A3|Zeromus|4.700|90.00|85.00|0.00|0.00| +21|2023-10-06T21:57:09.8790000-07:00|400215A0|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|000105A7|0|0| +261|2023-10-06T21:57:09.3100000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T21:57:09.3100000-07:00|Change|400215A3||||||||||||| +20|2023-10-06T21:57:09.9250000-07:00|40021598|Zeromus|8B63|Prominence Spine|40021598|Zeromus|4.700|90.00|85.00|0.00|1.26| +20|2023-10-06T21:57:09.9250000-07:00|40021599|Zeromus|8B63|Prominence Spine|40021599|Zeromus|4.700|90.00|85.00|0.00|0.00| +20|2023-10-06T21:57:09.9250000-07:00|4002159A|Zeromus|8B63|Prominence Spine|4002159A|Zeromus|4.700|90.00|85.00|0.00|1.57| +20|2023-10-06T21:57:09.9250000-07:00|4002159B|Zeromus|8B63|Prominence Spine|4002159B|Zeromus|4.700|90.00|85.00|0.00|-1.57| +20|2023-10-06T21:57:09.9250000-07:00|4002159C|Zeromus|8B63|Prominence Spine|4002159C|Zeromus|4.700|110.00|115.00|0.00|-1.89| +20|2023-10-06T21:57:09.9250000-07:00|4002159D|Zeromus|8B63|Prominence Spine|4002159D|Zeromus|4.700|110.00|115.00|0.00|3.14| +20|2023-10-06T21:57:09.9250000-07:00|4002159E|Zeromus|8B63|Prominence Spine|4002159E|Zeromus|4.700|110.00|115.00|0.00|1.57| +20|2023-10-06T21:57:09.9250000-07:00|4002159F|Zeromus|8B63|Prominence Spine|4002159F|Zeromus|4.700|110.00|115.00|0.00|-1.57| +261|2023-10-06T21:57:09.4100000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:57:09.4100000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:57:10.0580000-07:00|40021585|Zeromus|000105A1|31969057||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:09.5110000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:57:10.1040000-07:00|10FF0004|Buhojaqe Zijaqe|27168|81541|10000|10000|||103.45|107.76|-0.01|-3.00| +39|2023-10-06T21:57:10.1480000-07:00|10FF0008|Kokosaze Lulusaze|32946|90216|10000|10000|||96.05|92.84|0.00|1.32| +39|2023-10-06T21:57:10.1480000-07:00|10FF0003|Gegehi Gehi|23166|73814|6600|10000|||101.55|101.27|0.00|-3.07| +37|2023-10-06T21:57:10.1930000-07:00|40021585|Zeromus|000105A2|31957875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:10.1930000-07:00|10FF000B|Pusu Rosu|000105A3|38774||||||105.26|109.27|0.00|-2.49| +39|2023-10-06T21:57:10.2820000-07:00|10FF0006|Wowobora Gogobora|30262|81809|10000|10000|||102.90|104.62|0.00|-2.50| +37|2023-10-06T21:57:10.3270000-07:00|40021585|Zeromus|000105A4|31949293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:10.3270000-07:00|10FF0004|Buhojaqe Zijaqe|000105A3|42093||||||103.44|107.74|0.00|-3.02| +261|2023-10-06T21:57:09.8600000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:57:09.8600000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:57:09.8600000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T21:57:09.8600000-07:00|Change|40021599||||||||||||| +261|2023-10-06T21:57:09.8600000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:57:10.4590000-07:00|10FF0006|Wowobora Gogobora|000105A3|53341||||||102.48|104.09|-0.02|-2.49| +38|2023-10-06T21:57:10.4590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|42093|81541|10000|10000|0||103.44|107.74|0.00|-3.02|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:10.4590000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:57:10.5480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|33E90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31949293|40478540|10000|10000|||100.00|80.10|0.00|0.00|42093|81541|10000|10000|||103.44|107.74|0.00|-3.02|000105A8|0|1| +261|2023-10-06T21:57:10.0850000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:57:10.5950000-07:00|10FF0003|Gegehi Gehi|000105A3|38245||||||101.55|101.27|0.00|-3.07| +21|2023-10-06T21:57:10.5950000-07:00|40021710|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|454003|72CE0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|31949293|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||110.30|113.10|0.00|-2.89|000105A9|0|1| +261|2023-10-06T21:57:10.0850000-07:00|Change|40021700||| +21|2023-10-06T21:57:10.6380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|ABA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31949293|40478540|10000|10000|||100.00|80.10|0.00|0.00|109420|129071|9500|10000|||96.35|95.46|0.00|0.48|000105AA|0|1| +31|2023-10-06T21:57:10.6380000-07:00|10FF0001||||| +261|2023-10-06T21:57:10.1800000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:57:10.1800000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:57:10.1800000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:57:10.7270000-07:00|40021585|Zeromus|0001059F|31916922||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:10.7270000-07:00|10FF0001|Sesuga Sapisuga|000105A3|124516||||||96.47|95.70|0.00|0.48| +21|2023-10-06T21:57:10.7270000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31949293|40478540|10000|10000|||100.00|80.10|0.00|0.00|53341|81809|10000|10000|||101.13|102.45|0.00|-2.46|000105AB|0|1| +39|2023-10-06T21:57:10.8170000-07:00|10FF0001|Sesuga Sapisuga|125806|129071|9700|10000|||97.05|95.89|0.00|0.45| +261|2023-10-06T21:57:10.2730000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:57:10.8610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|D810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31916922|40478540|10000|10000|||100.00|80.10|0.00|0.00|31912|83502|10000|10000|||101.72|94.68|0.00|2.46|000105AC|0|1| +261|2023-10-06T21:57:10.3730000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:57:10.3730000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T21:57:10.3730000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T21:57:10.3730000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:57:10.3730000-07:00|Change|40021598||||||||||||| +21|2023-10-06T21:57:10.9490000-07:00|400215A1|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|000105AD|0|0| +21|2023-10-06T21:57:10.9490000-07:00|400215A0|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|000105AE|0|0| +21|2023-10-06T21:57:10.9930000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|35F70000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|31916922|40478540|10000|10000|||100.00|80.10|0.00|0.00|53341|81809|10000|10000|||100.34|101.27|0.00|-2.60|000105AF|0|1| +38|2023-10-06T21:57:10.9940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53341|81809|9700|10000|0||100.34|101.27|0.00|-2.60|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:10.9940000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:11.0830000-07:00|40021585|Zeromus|000105A5|31900317||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:11.0830000-07:00|10FF0001|Sesuga Sapisuga|000105A5|125806|129071|10000|10000|0||98.25|96.36|0.00|0.32|1300|0|0|0| +21|2023-10-06T21:57:11.0830000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|92D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31916922|40478540|10000|10000|||100.00|80.10|0.00|0.00|32946|90216|10000|10000|||97.60|98.24|0.00|0.22|000105B0|0|1| +261|2023-10-06T21:57:10.7060000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:57:11.1720000-07:00|40021585|Zeromus|000105AA|31897571||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:11.1720000-07:00|40021585|Zeromus|DoT|A92|5EE|31900317|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|53341|81809|9700|10000|||99.62|99.89|0.00|-2.98| +38|2023-10-06T21:57:11.1720000-07:00|40021585|Zeromus|005A5A00|31896053|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:57:11.1720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53341|81809|10000|10000|0||99.62|99.89|0.00|-2.98|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:10.7060000-07:00|Change|10FF000B||||||||| +38|2023-10-06T21:57:11.2160000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.93|97.92|0.00|3.14|0|0|0||||||| +26|2023-10-06T21:57:11.2160000-07:00|77B|Summon Order|30.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:57:11.2160000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42093|81541|9600|10000|||102.05|106.19|0.00|-2.57|42093|81541|9600|10000|||102.05|106.19|0.00|-2.57|000105B1|0|1| +21|2023-10-06T21:57:11.2160000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2F4B0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|31900317|40478540|10000|10000|||100.00|80.10|0.00|0.00|31912|83502|10000|10000|||102.25|95.14|0.00|1.23|000105B2|0|1| +38|2023-10-06T21:57:11.2160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|31912|83502|10000|10000|0||102.25|95.14|0.00|1.23|0|0|0|||||||||||||||| +26|2023-10-06T21:57:11.2160000-07:00|7A2|Bunshin|27.19|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|83502|83502| +261|2023-10-06T21:57:10.7060000-07:00|Change|4002170B||||||||| +261|2023-10-06T21:57:10.7060000-07:00|Change|4002170B||||||||| +37|2023-10-06T21:57:11.2610000-07:00|40021585|Zeromus|000105AB|31895874||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:11.3060000-07:00|4002170B|Bunshin|4406|Gust Slash|40021585|Zeromus|716003|217A0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|31896053|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||101.83|96.17|0.00|-3.03|000105B3|0|1| +22|2023-10-06T21:57:11.3060000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|53341|81809|10000|10000|||99.46|99.56|0.00|-2.93|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105B4|0|8| +22|2023-10-06T21:57:11.3060000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|85076|129844|10000|10000|||98.36|97.47|-0.02|2.94|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105B4|1|8| +22|2023-10-06T21:57:11.3060000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|31912|83502|10000|10000|||102.25|95.15|0.00|-3.03|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105B4|2|8| +22|2023-10-06T21:57:11.3060000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|125806|129071|10000|10000|||99.38|97.02|0.00|0.23|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105B4|3|8| +22|2023-10-06T21:57:11.3060000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|32946|90216|10000|10000|||97.37|98.99|-0.02|0.11|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105B4|4|8| +22|2023-10-06T21:57:11.3060000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|38245|73814|6600|10000|||101.55|101.27|0.00|-3.07|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105B4|5|8| +22|2023-10-06T21:57:11.3060000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF000B|Pusu Rosu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|38774|79209|8886|10000|||99.88|104.96|0.00|-2.18|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105B4|6|8| +22|2023-10-06T21:57:11.3060000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|42093|81541|9600|10000|||101.75|105.86|-0.02|-2.47|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105B4|7|8| +37|2023-10-06T21:57:11.3510000-07:00|40021585|Zeromus|000105A8|31882585||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:11.3510000-07:00|10FF000A|Dukaro Nezikaro|32747|83502|10000|10000|||102.25|95.15|0.00|-3.03| +37|2023-10-06T21:57:11.3950000-07:00|40021585|Zeromus|000105AC|31879128||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:11.4830000-07:00|10FF0007|Kehabiqo Febiqo|86374|129844|10000|10000|||98.73|97.93|0.00|2.98| +38|2023-10-06T21:57:11.4830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|42093|81541|9600|10000|0||101.62|105.73|0.00|-2.43|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:11.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:57:11.4830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|32946|90216|10000|10000|0||97.37|98.99|0.00|0.11|0|0|0|||||||||| +26|2023-10-06T21:57:11.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:57:11.4840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53341|81809|10000|10000|0||99.18|98.98|0.00|-2.82|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:11.4840000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:57:11.4840000-07:00|10FF0003|Gegehi Gehi|005A5A23|38245|73814|6600|10000|0||101.55|101.27|0.00|-3.07|0|0|0||||||| +26|2023-10-06T21:57:11.4840000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:57:11.4840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|32747|83502|10000|10000|0||101.65|96.56|0.00|-1.88|0|0|0|||||||||||||||| +26|2023-10-06T21:57:11.4840000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:57:11.4840000-07:00|10FF000B|Pusu Rosu|005A5A18|38774|79209|8886|10000|0||98.72|104.20|-0.02|-2.15|0|0|0||||||||||||| +26|2023-10-06T21:57:11.4840000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:11.4840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86374|129844|10000|10000|0||98.73|97.93|0.00|2.98|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:11.4840000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:57:11.4840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125806|129071|10000|10000|0||100.15|97.86|0.00|0.21|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:11.4840000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T21:57:11.5730000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|13E2|86374|129844|10000|10000|||98.91|98.12|-0.02|3.01|10FF0007|Kehabiqo Febiqo|0|86374|129844|10000|10000|||98.91|98.12|-0.02|3.01| +21|2023-10-06T21:57:11.5730000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|19890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31879128|40478540|10000|10000|||100.00|80.10|0.00|0.00|53341|81809|10000|10000|||99.05|98.71|-0.01|-2.77|000105B5|0|1| +38|2023-10-06T21:57:11.5730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|91464|129844|10000|10000|0||98.91|98.12|-0.02|3.01|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:11.5730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53341|81809|10000|10000|0||99.05|98.71|-0.01|-2.77|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:11.5730000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:11.6170000-07:00|40021585|Zeromus|000105AF|31865313||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:11.6170000-07:00|40021585|Zeromus|000105B2|31853206||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:11.6640000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|26EC|125806|129071|10000|10000|||100.15|97.86|0.00|0.21|10FF0001|Sesuga Sapisuga|0|125806|129071|10000|10000|||100.15|97.86|0.00|0.21| +38|2023-10-06T21:57:11.6640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|0.21|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:57:11.7060000-07:00|40021585|Zeromus|000105B3|31844636||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:11.7510000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|60F40000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|31853206|40478540|10000|10000|||100.00|80.10|0.00|0.00|32946|90216|10000|10000|||97.37|98.99|0.00|0.66|000105B6|0|1| +37|2023-10-06T21:57:11.8400000-07:00|40021585|Zeromus|000105B0|31842287||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:11.8400000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|378C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|91464|129844|10000|10000|||99.31|98.50|0.00|3.12|31844636|40478540|10000|10000|||100.00|80.10|0.00|0.00|000105B7|0|1| +261|2023-10-06T21:57:11.3470000-07:00|Change|10FF0001||||||||| +20|2023-10-06T21:57:11.8840000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|101.55|101.27|0.00|-3.07| +261|2023-10-06T21:57:11.3470000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T21:57:11.4430000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:57:11.5430000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:57:12.0180000-07:00|400215A1|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|000105B8|0|0| +21|2023-10-06T21:57:12.0180000-07:00|400215A0|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|000105B9|0|0| +20|2023-10-06T21:57:12.0180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.55|103.56|0.00|-2.78| +22|2023-10-06T21:57:12.0620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|3B7C0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|000105BA|0|8| +22|2023-10-06T21:57:12.0620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|3C540000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|91464|129844|10000|10000|||99.49|99.18|0.00|1.41|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|000105BA|1|8| +22|2023-10-06T21:57:12.0620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|3CEE0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|53341|81809|10000|10000|||99.02|98.65|0.00|3.09|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|000105BA|2|8| +22|2023-10-06T21:57:12.0620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|3C780000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|32747|83502|10000|10000|||100.17|100.00|0.00|-0.51|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|000105BA|3|8| +22|2023-10-06T21:57:12.0620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|3C7C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|32946|90216|10000|10000|||97.46|99.00|0.00|2.15|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|000105BA|4|8| +22|2023-10-06T21:57:12.0620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|3B2E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|000105BA|5|8| +22|2023-10-06T21:57:12.0620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|3A740000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|42093|81541|9600|10000|||100.55|103.56|0.00|-2.78|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|000105BA|6|8| +22|2023-10-06T21:57:12.0620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|3C850000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|38245|73814|6600|10000|||101.55|101.27|0.00|-3.07|38774|79209|8886|10000|||99.49|100.64|0.00|2.80|000105BA|7|8| +261|2023-10-06T21:57:11.5430000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:57:12.1520000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|712003|5DF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31842287|40478540|10000|10000|||100.00|80.10|0.00|0.00|91464|129844|10000|10000|||99.54|99.36|0.00|0.94|000105BB|0|1| +37|2023-10-06T21:57:12.1960000-07:00|10FF0006|Wowobora Gogobora|000105B4|53341|81809|10000|10000|0||99.02|98.65|0.00|3.09|1B00|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:57:12.1960000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +39|2023-10-06T21:57:12.2410000-07:00|10FF000B|Pusu Rosu|39566|79209|9167|10000|||99.34|100.39|0.00|2.94| +261|2023-10-06T21:57:11.7670000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:57:12.2860000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|275F0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|31842287|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|000105BC|0|1| +38|2023-10-06T21:57:12.2860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:12.2860000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:57:12.3300000-07:00|10FF0007|Kehabiqo Febiqo|000105B4|91464|129844|10000|10000|0||99.56|99.45|0.00|3.12|1501|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:57:12.3300000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +37|2023-10-06T21:57:12.3300000-07:00|40021585|Zeromus|000105B5|31835750||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:12.4190000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AE80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31835750|40478540|10000|10000|||100.00|80.10|0.00|0.00|91464|129844|10000|10000|||99.58|99.52|0.00|3.12|000105BD|0|1| +37|2023-10-06T21:57:12.4630000-07:00|10FF000A|Dukaro Nezikaro|000105B4|32747|83502|10000|10000|0||99.99|100.41|0.00|-0.41|1E02|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T21:57:12.4630000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +04|2023-10-06T21:57:12.0000000-07:00|40021700|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||109.12|110.64|0.00|-0.31| +261|2023-10-06T21:57:12.1190000-07:00|Remove|40021700| +37|2023-10-06T21:57:12.5530000-07:00|40021585|Zeromus|000105A9|31806360||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:12.5530000-07:00|40021585|Zeromus|000105B6|31781540||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:12.5980000-07:00|10FF0001|Sesuga Sapisuga|000105B4|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|1303|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T21:57:12.5980000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T21:57:12.6420000-07:00|10FF0007|Kehabiqo Febiqo|000105B7|77244||||||99.62|99.58|0.00|3.13| +37|2023-10-06T21:57:12.6420000-07:00|10FF000B|Pusu Rosu|000105BA|54794||||||99.32|99.85|0.00|2.57| +39|2023-10-06T21:57:12.6870000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +24|2023-10-06T21:57:12.6870000-07:00|40021585|Zeromus|DoT|0|2257|31781540|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|54794|79209|9167|10000|||99.44|99.70|0.00|2.18| +36|2023-10-06T21:57:12.6870000-07:00|26D4|3| +38|2023-10-06T21:57:12.6870000-07:00|40021585|Zeromus|005A5A00|31772749|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:57:12.7320000-07:00|10FF0008|Kokosaze Lulusaze|000105B4|32946|90216|10000|10000|0||98.70|99.92|0.00|0.70|1F04|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T21:57:12.7320000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T21:57:12.7760000-07:00|40021585|Zeromus|000105BB|31748701||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:12.7760000-07:00|10FF0007|Kehabiqo Febiqo|000105BA|92688||||||99.79|99.65|0.00|2.81| +37|2023-10-06T21:57:12.8640000-07:00|10FF0003|Gegehi Gehi|000105B4|38245|73814|6600|10000|0||101.55|101.27|0.00|-3.07|2305|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:57:12.8640000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T21:57:12.9090000-07:00|10FF0006|Wowobora Gogobora|000105BA|68939||||||99.34|98.91|0.00|1.29| +21|2023-10-06T21:57:12.9090000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|8BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31748701|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|000105BE|0|1| +31|2023-10-06T21:57:12.9090000-07:00|10FF0001||||| +37|2023-10-06T21:57:12.9530000-07:00|40021585|Zeromus|000105BD|31745909||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:12.9530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|756003|5F3B0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31748701|40478540|10000|10000|||100.00|80.10|0.00|0.00|42093|81541|9600|10000|||99.90|102.25|0.00|3.14|000105BF|0|1| +37|2023-10-06T21:57:12.9970000-07:00|10FF000B|Pusu Rosu|000105B4|54794|79209|9167|10000|0||99.57|99.53|0.00|1.76|1806|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:57:12.9970000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +37|2023-10-06T21:57:13.0430000-07:00|10FF000A|Dukaro Nezikaro|000105BA|48227||||||99.99|100.42|0.00|-0.41| +21|2023-10-06T21:57:13.0430000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|734003|C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31745909|40478540|10000|10000|||100.00|80.10|0.00|0.00|42093|81541|9200|10000|||99.90|102.25|0.00|3.14|000105C0|0|1| +21|2023-10-06T21:57:13.0430000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31745909|40478540|10000|10000|||100.00|80.10|0.00|0.00|32747|83502|10000|10000|||99.99|100.42|0.00|-0.41|000105C1|0|1| +38|2023-10-06T21:57:13.0430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92688|129844|10000|10000|0||99.89|99.78|-0.02|1.69|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:13.0430000-07:00|A91|Undying Flame|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +21|2023-10-06T21:57:13.0870000-07:00|400215A1|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|000105C2|0|0| +21|2023-10-06T21:57:13.0870000-07:00|400215A0|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|000105C3|0|0| +39|2023-10-06T21:57:13.0870000-07:00|10FF0004|Buhojaqe Zijaqe|42908|81541|9400|10000|||99.90|102.25|0.00|3.14| +261|2023-10-06T21:57:12.6220000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:57:13.1330000-07:00|10FF0004|Buhojaqe Zijaqe|000105B4|42908|81541|9400|10000|0||99.90|102.25|0.00|3.14|1C07|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T21:57:13.1330000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +39|2023-10-06T21:57:13.1330000-07:00|10FF0003|Gegehi Gehi|38983|73814|6800|10000|||101.55|101.27|0.00|-3.07| +38|2023-10-06T21:57:13.1330000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.93|97.92|0.00|-3.03|0|0|0|||| +30|2023-10-06T21:57:13.1330000-07:00|77B|Summon Order|0.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T21:57:12.6220000-07:00|Change|10FF0003||||| +37|2023-10-06T21:57:13.1770000-07:00|10FF0008|Kokosaze Lulusaze|000105BA|48430||||||98.91|100.51|0.00|0.16| +39|2023-10-06T21:57:13.1770000-07:00|10FF0008|Kokosaze Lulusaze|49332|90216|10000|10000|||98.91|100.51|0.00|0.16| +261|2023-10-06T21:57:12.7360000-07:00|Change|4002170B||| +39|2023-10-06T21:57:13.3110000-07:00|10FF0006|Wowobora Gogobora|69757|81809|10000|10000|||99.63|99.14|0.00|0.86| +21|2023-10-06T21:57:13.3110000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|38080000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|31745909|40478540|10000|10000|||100.00|80.10|0.00|0.00|38983|73814|6800|10000|||101.55|101.27|0.00|-3.07|000105C4|0|1| +38|2023-10-06T21:57:13.3110000-07:00|10FF0003|Gegehi Gehi|005A5A23|38983|73814|6600|10000|0||101.55|101.27|0.00|-3.07|0|0|0||||||||||||| +26|2023-10-06T21:57:13.3110000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:57:13.4440000-07:00|40021585|Zeromus|000105BE|31743675||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:13.4440000-07:00|10FF0004|Buhojaqe Zijaqe|000105BA|57872||||||99.90|102.25|0.00|3.14| +261|2023-10-06T21:57:13.0830000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:57:13.4440000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|456003|6E9A0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|31745909|40478540|10000|10000|||100.00|80.10|0.00|0.00|69757|81809|10000|10000|||99.63|99.14|0.00|0.86|000105C5|0|1| +38|2023-10-06T21:57:13.4440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69757|81809|9700|10000|0||99.63|99.14|0.00|0.86|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:13.4440000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:13.5770000-07:00|40021585|Zeromus|000105BC|31733596||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:13.5770000-07:00|40021585|Zeromus|000105C0|31733396||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:13.5770000-07:00|10FF0003|Gegehi Gehi|000105BA|54476||||||101.55|101.27|0.00|-3.07| +37|2023-10-06T21:57:13.5770000-07:00|40021585|Zeromus|000105C1|31730689||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:13.5770000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|14660000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|57872|81541|9400|10000|||99.90|102.25|0.00|3.14|73956|77430|10000|10000|||99.93|97.92|0.00|-1.57|000105C6|0|1| +38|2023-10-06T21:57:13.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:13.5770000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T21:57:13.7110000-07:00|4002170B|Bunshin|76288|79156|10000|10000|||101.83|96.17|0.00|-3.03| +37|2023-10-06T21:57:13.7560000-07:00|40021585|Zeromus|000105BF|31706310||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:13.7560000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31730689|40478540|10000|10000|||100.00|80.10|0.00|0.00|49332|90216|10000|10000|||99.48|100.72|0.00|1.46|000105C7|0|1| +39|2023-10-06T21:57:13.8010000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +21|2023-10-06T21:57:13.8010000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44712003|4F150000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|31706310|40478540|10000|10000|||100.00|80.10|0.00|0.00|48227|83502|10000|10000|||99.99|100.42|0.00|-0.41|000105C8|0|1| +38|2023-10-06T21:57:13.8010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48227|83502|10000|10000|0||99.99|100.42|0.00|-0.41|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:13.8010000-07:00|7A2|Bunshin|24.61|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|83502|83502| +21|2023-10-06T21:57:13.8900000-07:00|4002170B|Bunshin|4407|Aeolian Edge|40021585|Zeromus|716003|205B0000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|31706310|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||101.83|96.17|0.00|-3.03|000105C9|0|1| +21|2023-10-06T21:57:13.8900000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31706310|40478540|10000|10000|||100.00|80.10|0.00|0.00|69757|81809|9700|10000|||99.63|99.14|0.00|3.12|000105CA|0|1| +261|2023-10-06T21:57:13.4750000-07:00|Change|4002170B||||||||| +37|2023-10-06T21:57:14.0690000-07:00|40021585|Zeromus|000105C5|31677996||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:14.0690000-07:00|10FF0006|Wowobora Gogobora|000105C5|69757|81809|9700|10000|0||99.63|99.14|0.00|3.12|1B00|0|0|01|07000B25|0|0|| +37|2023-10-06T21:57:14.0690000-07:00|40021585|Zeromus|000105C4|31663652||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:14.0690000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1027|49332|90216|10000|10000|||99.87|100.72|-0.02|1.60|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|-0.36| +24|2023-10-06T21:57:14.0690000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|EFE|57872|81541|9400|10000|||99.90|102.25|0.00|3.14|10FF000B|Pusu Rosu|0|54794|79209|9167|10000|||99.57|99.53|0.00|1.76| +38|2023-10-06T21:57:14.0690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53467|90216|10000|10000|0||99.87|100.72|-0.02|1.60|0|0|0||||||||||||| +38|2023-10-06T21:57:14.0690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69757|81809|9700|10000|0||99.63|99.14|0.00|3.12|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:57:14.0690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|61710|81541|9400|10000|0||99.90|102.25|0.00|3.14|0|0|0||||||||||||||||||| +21|2023-10-06T21:57:14.1120000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|456003|32CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31706310|40478540|10000|10000|||100.00|80.10|0.00|0.00|69757|81809|9700|10000|||99.63|99.14|0.00|3.12|000105CB|0|1| +38|2023-10-06T21:57:14.1120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69757|81809|9700|10000|0||99.63|99.14|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:14.1120000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:57:13.6890000-07:00|Change|10FF0003||||||||||||||||||||||| +21|2023-10-06T21:57:14.1570000-07:00|400215A1|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|000105CC|0|0| +21|2023-10-06T21:57:14.1570000-07:00|400215A0|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|000105CD|0|0| +24|2023-10-06T21:57:14.1570000-07:00|40021585|Zeromus|DoT|A92|526|31663652|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|69757|81809|9700|10000|||99.63|99.14|0.00|3.12| +24|2023-10-06T21:57:14.1570000-07:00|10FF0006|Wowobora Gogobora|HoT|0|100E|69757|81809|9700|10000|||99.63|99.14|0.00|3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|-0.14| +21|2023-10-06T21:57:14.1570000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31663652|40478540|10000|10000|||100.00|80.10|0.00|0.00|54476|73814|6600|10000|||100.61|100.51|0.00|-3.04|000105CE|0|1| +38|2023-10-06T21:57:14.1570000-07:00|40021585|Zeromus|005A5A00|31662334|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:57:14.1570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|73867|81809|10000|10000|0||99.63|99.14|0.00|3.12|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:13.6890000-07:00|Change|10FF0006||| +21|2023-10-06T21:57:14.2460000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1D590000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|31662334|40478540|10000|10000|||100.00|80.10|0.00|0.00|53467|90216|10000|10000|||99.87|100.72|0.00|1.86|000105CF|0|1| +21|2023-10-06T21:57:14.2910000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|57A50000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|31662334|40478540|10000|10000|||100.00|80.10|0.00|0.00|54476|73814|6600|10000|||100.43|100.39|0.00|-3.06|000105D0|0|1| +38|2023-10-06T21:57:14.2910000-07:00|10FF0003|Gegehi Gehi|005A5A23|54476|73814|6300|10000|0||100.43|100.39|0.00|-3.06|0|0|0|||||||||| +30|2023-10-06T21:57:14.2910000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:57:14.3350000-07:00|40021585|Zeromus|000105C8|31642089||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:14.3350000-07:00|10FF000A|Dukaro Nezikaro|49062|83502|10000|10000|||99.99|100.42|0.00|3.14| +37|2023-10-06T21:57:14.3800000-07:00|10FF0004|Buhojaqe Zijaqe|000105C6|66932||||||99.90|102.25|0.00|3.14| +24|2023-10-06T21:57:14.3800000-07:00|10FF0003|Gegehi Gehi|HoT|0|A11|54476|73814|6300|10000|||100.21|100.24|0.00|-3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|-0.01| +20|2023-10-06T21:57:14.3800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.90|102.25|0.00|3.14| +38|2023-10-06T21:57:14.3800000-07:00|10FF0003|Gegehi Gehi|005A5A23|57053|73814|6300|10000|0||100.21|100.24|0.00|-3.14|0|0|0|||||||||| +37|2023-10-06T21:57:14.4230000-07:00|40021585|Zeromus|000105C9|31633806||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:14.4230000-07:00|40021585|Zeromus|000105CA|31633659||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:14.4240000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|98A|49062|83502|10000|10000|||99.99|100.42|0.00|3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|-0.01| +38|2023-10-06T21:57:14.4240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|51504|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0||||||||||||||||||| +39|2023-10-06T21:57:14.4690000-07:00|10FF0007|Kehabiqo Febiqo|93986|129844|10000|10000|||99.87|99.96|0.00|-3.12| +38|2023-10-06T21:57:14.4690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66932|81541|9400|10000|0||99.90|102.25|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:14.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:57:14.4690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53467|90216|10000|10000|0||99.87|100.72|0.00|3.14|0|0|0||||||||||||| +26|2023-10-06T21:57:14.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:57:14.4690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|73867|81809|10000|10000|0||99.63|99.14|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:14.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:57:14.4690000-07:00|10FF0003|Gegehi Gehi|005A5A23|57053|73814|6300|10000|0||100.21|100.24|0.00|-3.14|0|0|0|||||||||| +26|2023-10-06T21:57:14.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:57:14.4690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|51504|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:14.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:57:14.4690000-07:00|10FF000B|Pusu Rosu|005A5A18|54794|79209|9167|10000|0||99.57|99.53|0.00|1.76|0|0|0|||||||||||||||| +26|2023-10-06T21:57:14.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:14.4690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|93986|129844|10000|10000|0||99.87|99.96|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:14.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:57:14.4690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:14.4690000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T21:57:14.4690000-07:00|10FF000B|Pusu Rosu|HoT|0|9DB|54794|79209|9167|10000|||99.57|99.53|0.00|1.76|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|-0.01| +38|2023-10-06T21:57:14.4690000-07:00|10FF000B|Pusu Rosu|005A5A18|57317|79209|9167|10000|0||99.57|99.53|0.00|1.76|0|0|0|||||||||||||||| +261|2023-10-06T21:57:14.0420000-07:00|Change|10FF000B||||||||||||||||||| +261|2023-10-06T21:57:14.0420000-07:00|Change|10FF000B||||||||||||||||||| +37|2023-10-06T21:57:14.5140000-07:00|40021585|Zeromus|000105C7|31631446||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:14.5140000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.57|99.53|0.00|1.76| +261|2023-10-06T21:57:14.0420000-07:00|Change|10FF0004||||||||||||| +24|2023-10-06T21:57:14.5580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FA2|93986|129844|10000|10000|||99.87|99.96|0.00|-3.12|10FF0007|Kehabiqo Febiqo|0|93986|129844|10000|10000|||99.87|99.96|0.00|-3.12| +38|2023-10-06T21:57:14.5580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|97988|129844|10000|10000|0||99.87|99.96|0.00|-3.12|0|0|0||||||||||||||||||| +21|2023-10-06T21:57:14.6030000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|306E0000|143E|340000|200004|26A38000|11B|2A8000|0|0|0|0|0|0|0|0|31631446|40478540|10000|10000|||100.00|80.10|0.00|0.00|93986|129844|10000|10000|||99.87|99.96|0.00|-3.12|000105D1|0|1| +261|2023-10-06T21:57:14.1570000-07:00|Change|40021710||||| +38|2023-10-06T21:57:14.6460000-07:00|40021717||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +24|2023-10-06T21:57:14.6490000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2F24|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +38|2023-10-06T21:57:14.6490000-07:00|40021717||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:57:14.6490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:57:14.6920000-07:00|40021585|Zeromus|000105CE|31631402||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:14.2560000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:57:14.7820000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2E6A0000|4|26F58000|0|0|0|0|0|0|0|0|0|0|0|0|31631446|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|000105D2|0|1| +38|2023-10-06T21:57:14.7820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:14.7820000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:57:14.2560000-07:00|Change|10FF0001||| +37|2023-10-06T21:57:14.8700000-07:00|40021585|Zeromus|000105CB|31618399||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:14.8700000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3B6D0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|97988|129844|10000|10000|||99.87|99.96|0.00|3.14|31631402|40478540|10000|10000|||100.00|80.10|0.00|0.00|000105D3|0|1| +21|2023-10-06T21:57:14.8700000-07:00|400215A2|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|0.00|000105D4|0|0| +21|2023-10-06T21:57:14.8700000-07:00|400215A3|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|000105D5|0|0| +261|2023-10-06T21:57:14.3560000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T21:57:14.3560000-07:00|Change|400215A2||||||||||||| +21|2023-10-06T21:57:14.9150000-07:00|40021598|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|1.26|000105D6|0|0| +21|2023-10-06T21:57:14.9150000-07:00|40021599|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|0.00|000105D7|0|0| +21|2023-10-06T21:57:14.9150000-07:00|4002159A|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|1.57|000105D8|0|0| +21|2023-10-06T21:57:14.9150000-07:00|4002159B|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.00|85.00|0.00|-1.57|000105D9|0|0| +21|2023-10-06T21:57:14.9150000-07:00|4002159C|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|-1.89|000105DA|0|0| +21|2023-10-06T21:57:14.9150000-07:00|4002159D|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|3.14|000105DB|0|0| +21|2023-10-06T21:57:14.9150000-07:00|4002159E|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|1.57|000105DC|0|0| +21|2023-10-06T21:57:14.9150000-07:00|4002159F|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.00|115.00|0.00|-1.57|000105DD|0|0| +261|2023-10-06T21:57:14.3560000-07:00|Change|40021598||||||||||||| +261|2023-10-06T21:57:14.3560000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T21:57:14.3560000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:57:14.3560000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T21:57:14.3560000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:57:14.3560000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:57:14.3560000-07:00|Change|40021599||||||||||||| +261|2023-10-06T21:57:14.3560000-07:00|Change|4002159B||||||||||||| +03|2023-10-06T21:57:14.3560000-07:00|40021717|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.66|97.40|0.00|-0.02| +261|2023-10-06T21:57:14.3560000-07:00|Add|40021717||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:14.4560000-07:00|Change|40021717||| +37|2023-10-06T21:57:15.0030000-07:00|40021585|Zeromus|000105CF|31610886||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:15.0480000-07:00|40021585|Zeromus|000105D0|31588449||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:15.1810000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|DAD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31588449|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.15|97.86|0.00|-3.13|000105DE|0|1| +31|2023-10-06T21:57:15.1810000-07:00|10FF0001||||| +261|2023-10-06T21:57:14.6850000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:57:15.2260000-07:00|10FF000B|Pusu Rosu|58109|79209|9448|10000|||99.57|99.53|0.00|3.12| +21|2023-10-06T21:57:15.2260000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31588449|40478540|10000|10000|||100.00|80.10|0.00|0.00|51504|83502|10000|10000|||99.99|100.42|0.00|3.14|000105DF|0|1| +21|2023-10-06T21:57:15.3150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|756003|635E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31588449|40478540|10000|10000|||100.00|80.10|0.00|0.00|66932|81541|9400|10000|||99.90|102.25|0.00|3.14|000105E0|0|1| +21|2023-10-06T21:57:15.4480000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|4F0F0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31588449|40478540|10000|10000|||100.00|80.10|0.00|0.00|58109|79209|9448|10000|||99.57|99.53|0.00|3.12|000105E1|0|1| +37|2023-10-06T21:57:15.5370000-07:00|40021585|Zeromus|000105D2|31576567||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:15.0290000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:57:15.2410000-07:00|Change|40021717||| +37|2023-10-06T21:57:15.6720000-07:00|10FF0007|Kehabiqo Febiqo|000105D3|82775||||||99.87|99.96|0.00|3.14| +39|2023-10-06T21:57:15.6720000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|-2.35| +24|2023-10-06T21:57:15.6720000-07:00|40021585|Zeromus|DoT|0|211F|31576567|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|58109|79209|9048|10000|||99.57|99.53|0.00|3.12| +34|2023-10-06T21:57:15.6720000-07:00|40021717|Carbuncle|40021717|Carbuncle|01| +36|2023-10-06T21:57:15.6720000-07:00|27B0|3| +38|2023-10-06T21:57:15.6720000-07:00|40021585|Zeromus|005A5A00|31568088|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:57:15.7160000-07:00|40021585|Zeromus|000105DE|31564587||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:15.7600000-07:00|40021585|Zeromus|000105DF|31562375||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:15.3350000-07:00|Change|10FF000B||||||||||||||||| +21|2023-10-06T21:57:15.8050000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31562375|40478540|10000|10000|||100.00|80.10|0.00|0.00|82775|129844|10000|10000|||99.87|99.96|0.00|3.14|000105E2|0|1| +21|2023-10-06T21:57:15.9390000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|452003|56760000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|31562375|40478540|10000|10000|||100.00|80.10|0.00|0.00|73867|81809|10000|10000|||99.63|99.14|0.00|3.12|000105E3|0|1| +38|2023-10-06T21:57:15.9390000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.93|97.92|0.00|-2.95|0|0|0||||||| +26|2023-10-06T21:57:15.9390000-07:00|7AE|Summon Order IV|30.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T21:57:15.9390000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|66932|81541|9000|10000|||99.87|101.82|0.00|3.06|66932|81541|9000|10000|||99.87|101.82|0.00|3.06|000105E4|0|1| +38|2023-10-06T21:57:15.9390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|73867|81809|9700|10000|0||99.63|99.14|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:15.9390000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:57:15.4360000-07:00|Change|10FF0006||| +261|2023-10-06T21:57:15.6350000-07:00|Change|4002170B||| +22|2023-10-06T21:57:16.0280000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|246B0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||100.15|97.86|0.00|-3.13|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105E5|0|8| +22|2023-10-06T21:57:16.0280000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|24390000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|73867|81809|9700|10000|||99.63|99.14|0.00|3.12|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105E5|1|8| +22|2023-10-06T21:57:16.0280000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF000B|Pusu Rosu|200004|3CA00000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|58109|79209|9048|10000|||99.57|99.53|0.00|3.12|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105E5|2|8| +22|2023-10-06T21:57:16.0280000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|25BE0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|82775|129844|10000|10000|||99.87|99.96|0.00|3.14|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105E5|3|8| +22|2023-10-06T21:57:16.0280000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|24E90000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|57053|73814|6300|10000|||100.02|100.11|0.00|-3.14|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105E5|4|8| +22|2023-10-06T21:57:16.0280000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|200004|3A740000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|53467|90216|10000|10000|||99.84|100.33|0.00|-3.07|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105E5|5|8| +22|2023-10-06T21:57:16.0280000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|200004|3A720000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|51504|83502|10000|10000|||99.99|100.42|0.00|3.14|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105E5|6|8| +22|2023-10-06T21:57:16.0280000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|251A0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|66932|81541|9000|10000|||99.74|100.29|0.00|-3.11|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000105E5|7|8| +21|2023-10-06T21:57:16.0280000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|540F|A788000|0|0|0|0|0|0|0|0|0|0|82775|129844|10000|10000|||99.87|99.96|0.00|3.14|82775|129844|10000|10000|||99.87|99.96|0.00|3.14|000105E6|0|1| +21|2023-10-06T21:57:16.0280000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|712003|26EA0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|31562375|40478540|10000|10000|||100.00|80.10|0.00|0.00|51504|83502|10000|10000|||99.99|100.42|0.00|3.14|000105E7|0|1| +38|2023-10-06T21:57:16.0280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|51504|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:16.0280000-07:00|7A2|Bunshin|22.38|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +261|2023-10-06T21:57:15.6350000-07:00|Change|4002170B||| +37|2023-10-06T21:57:16.1170000-07:00|40021585|Zeromus|000105D1|31549977||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:16.1170000-07:00|10FF0007|Kehabiqo Febiqo|000105D1|92666||||||99.87|99.96|0.00|3.14| +37|2023-10-06T21:57:16.1170000-07:00|40021585|Zeromus|000105E0|31524539||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:16.1170000-07:00|4002170B|Bunshin|4405|Spinning Edge|40021585|Zeromus|710003|11670000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|31562375|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||100.00|100.42|0.00|3.14|000105E8|0|1| +39|2023-10-06T21:57:16.1170000-07:00|10FF0004|Buhojaqe Zijaqe|67747|81541|9200|10000|||99.74|100.29|0.00|-3.11| +39|2023-10-06T21:57:16.1170000-07:00|10FF0003|Gegehi Gehi|57791|73814|6500|10000|||100.02|100.11|0.00|-3.14| +39|2023-10-06T21:57:16.1610000-07:00|10FF0008|Kokosaze Lulusaze|54369|90216|10000|10000|||99.84|100.33|0.00|-3.07| +261|2023-10-06T21:57:15.7580000-07:00|Change|10FF0003||| +39|2023-10-06T21:57:16.2950000-07:00|10FF0006|Wowobora Gogobora|74685|81809|9900|10000|||99.63|99.14|0.00|3.12| +37|2023-10-06T21:57:16.3400000-07:00|40021585|Zeromus|000105E2|31521514||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:15.9930000-07:00|Change|10FF0006||| +37|2023-10-06T21:57:16.4290000-07:00|40021585|Zeromus|000105E7|31511552||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:16.4290000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E5A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31521514|40478540|10000|10000|||100.00|80.10|0.00|0.00|54369|90216|10000|10000|||99.84|100.33|0.00|-3.07|000105E9|0|1| +37|2023-10-06T21:57:16.5180000-07:00|40021585|Zeromus|000105E8|31507097||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:16.1030000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:57:16.5630000-07:00|40021585|Zeromus|000105E3|31484963||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:16.5630000-07:00|10FF0006|Wowobora Gogobora|000105E3|74685|81809|9900|10000|0||99.63|99.14|0.00|3.12|1B00|0|0|01|07000B25|0|0|| +38|2023-10-06T21:57:16.5630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74685|81809|9900|10000|0||99.63|99.14|0.00|3.12|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:57:16.6090000-07:00|10FF0007|Kehabiqo Febiqo|000105E6|92666|129844|10000|10000|7||99.87|99.96|0.00|3.14|1500|0|0|03|01000A76|0190|41000000|||||||||| +26|2023-10-06T21:57:16.6090000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T21:57:16.6090000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:57:16.6090000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:57:16.6090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92666|129844|10000|10000|7||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:57:16.6970000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|18B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31484963|40478540|10000|10000|||100.00|80.10|0.00|0.00|74685|81809|9900|10000|||99.63|99.14|0.00|3.12|000105EA|0|1| +38|2023-10-06T21:57:16.6970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74685|81809|9900|10000|0||99.63|99.14|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:16.6970000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:16.7420000-07:00|40021585|Zeromus|000105E1|31464724||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:16.7420000-07:00|4002170B|Bunshin|76288|79156|10000|10000|||100.00|100.42|0.00|3.14| +21|2023-10-06T21:57:16.7420000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2D840000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|31484963|40478540|10000|10000|||100.00|80.10|0.00|0.00|54369|90216|10000|10000|||99.84|100.33|0.00|-3.09|000105EB|0|1| +21|2023-10-06T21:57:16.7420000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|752003|416E0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|31484963|40478540|10000|10000|||100.00|80.10|0.00|0.00|57791|73814|6500|10000|||100.02|100.11|0.00|-3.14|000105EC|0|1| +39|2023-10-06T21:57:16.7860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||100.15|97.86|0.00|-3.13| +20|2023-10-06T21:57:16.7860000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.75|100.18|0.00|-3.14| +261|2023-10-06T21:57:16.2910000-07:00|Change|10FF0001||| +21|2023-10-06T21:57:16.8310000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|752003|3FEE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31464724|40478540|10000|10000|||100.00|80.10|0.00|0.00|51504|83502|10000|10000|||99.99|100.42|0.00|3.14|000105ED|0|1| +37|2023-10-06T21:57:16.9640000-07:00|10FF0006|Wowobora Gogobora|000105E5|81809||||||99.63|99.14|0.00|3.12| +20|2023-10-06T21:57:16.9640000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.73|98.89|0.00|-3.11| +261|2023-10-06T21:57:16.4860000-07:00|Change|10FF000B||||||||||||||||||| +24|2023-10-06T21:57:17.0530000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|FB0|54369|90216|10000|10000|||99.84|100.33|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +24|2023-10-06T21:57:17.0530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A14|67747|81541|9200|10000|||99.75|100.18|0.00|3.14|10FF000B|Pusu Rosu|0|58109|79209|9048|10000|||99.76|98.76|0.00|-3.11| +21|2023-10-06T21:57:17.0530000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|166A0000|4|26CE8000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|31464724|40478540|10000|10000|||100.00|80.10|0.00|0.00|92666|129844|10000|10000|||99.87|99.96|0.00|3.14|000105EE|0|1| +21|2023-10-06T21:57:17.0530000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31464724|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||99.63|99.14|0.00|3.12|000105EF|0|1| +38|2023-10-06T21:57:17.0530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58385|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0||||||||||||| +38|2023-10-06T21:57:17.0530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|70327|81541|9200|10000|0||99.75|100.18|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:17.0980000-07:00|10FF000B|Pusu Rosu|000105E5|73629||||||99.78|98.71|0.00|-3.12| +24|2023-10-06T21:57:17.1420000-07:00|40021585|Zeromus|DoT|A92|A71|31464724|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9900|10000|||99.63|99.14|0.00|3.12| +24|2023-10-06T21:57:17.1430000-07:00|10FF0006|Wowobora Gogobora|HoT|0|9B5|81809|81809|9900|10000|||99.63|99.14|0.00|3.12|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +38|2023-10-06T21:57:17.1430000-07:00|40021585|Zeromus|005A5A00|31462051|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:57:17.1430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.63|99.14|0.00|3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:17.1880000-07:00|40021585|Zeromus|000105E9|31458377||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:17.2310000-07:00|10FF0007|Kehabiqo Febiqo|000105E5|102328||||||99.87|99.96|0.00|3.14| +21|2023-10-06T21:57:17.2770000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|712003|20500000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|31458377|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.15|97.86|0.00|-3.13|000105F0|0|1| +37|2023-10-06T21:57:17.3660000-07:00|10FF0003|Gegehi Gehi|000105E5|67240||||||100.02|100.11|0.00|-3.14| +37|2023-10-06T21:57:17.3660000-07:00|40021585|Zeromus|000105EC|31441627||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:17.3660000-07:00|10FF000A|Dukaro Nezikaro|52339|83502|10000|10000|||99.99|100.42|0.00|3.14| +24|2023-10-06T21:57:17.3660000-07:00|10FF0003|Gegehi Gehi|HoT|0|9D8|57791|73814|6500|10000|||100.02|100.11|0.00|-3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +38|2023-10-06T21:57:17.3660000-07:00|10FF0003|Gegehi Gehi|005A5A23|69760|73814|6500|10000|0||100.02|100.11|0.00|-3.14|0|0|0|||||||||| +24|2023-10-06T21:57:17.4110000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1054|51504|83502|10000|10000|||99.99|100.42|0.00|3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +21|2023-10-06T21:57:17.4110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8BA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31458377|40478540|10000|10000|||100.00|80.10|0.00|0.00|51504|83502|10000|10000|||99.99|100.42|0.00|3.14|000105F1|0|1| +38|2023-10-06T21:57:17.4110000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.63|99.14|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:17.4110000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:57:17.4110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56519|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:17.4560000-07:00|40021585|Zeromus|000105EA|31435301||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:17.4560000-07:00|40021585|Zeromus|000105ED|31418935||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:17.4560000-07:00|10FF0007|Kehabiqo Febiqo|103626|129844|10000|10000|||99.87|99.96|0.00|3.14| +38|2023-10-06T21:57:17.4560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|70327|81541|9200|10000|0||99.75|100.18|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:17.4560000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:57:17.4560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58385|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0||||||||||||| +26|2023-10-06T21:57:17.4560000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:57:17.4560000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||99.63|99.14|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:17.4560000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:57:17.4560000-07:00|10FF0003|Gegehi Gehi|005A5A23|69760|73814|6500|10000|0||100.02|100.11|0.00|-3.14|0|0|0|||||||||| +26|2023-10-06T21:57:17.4560000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:57:17.4560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56519|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:17.4560000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:57:17.4560000-07:00|10FF000B|Pusu Rosu|005A5A18|73629|79209|9048|10000|0||99.81|98.59|-0.01|3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:57:17.4560000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:17.4560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103626|129844|10000|10000|7||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:17.4560000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:57:17.4570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:17.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T21:57:17.4570000-07:00|10FF000B|Pusu Rosu|HoT|0|F9B|73629|79209|9048|10000|||99.81|98.59|-0.01|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +21|2023-10-06T21:57:17.4570000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31441627|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.15|97.86|0.00|-3.13|000105F2|0|1| +38|2023-10-06T21:57:17.4570000-07:00|10FF000B|Pusu Rosu|005A5A18|77624|79209|9048|10000|0||99.81|98.59|-0.01|3.13|0|0|0|||||||||||||||| +31|2023-10-06T21:57:17.4570000-07:00|10FF0001||||| +37|2023-10-06T21:57:17.4980000-07:00|10FF0008|Kokosaze Lulusaze|000105E5|73349||||||99.84|100.33|0.00|3.13| +261|2023-10-06T21:57:17.0380000-07:00|Change|10FF0006||| +37|2023-10-06T21:57:17.5440000-07:00|40021585|Zeromus|000105EB|31407283||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:17.5440000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|93B|103626|129844|10000|10000|||99.87|99.96|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|103626|129844|10000|10000|||99.87|99.96|0.00|3.14| +38|2023-10-06T21:57:17.5440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105989|129844|10000|10000|7||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:57:17.1500000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:57:17.5880000-07:00|40021585|Zeromus|000105EE|31401545||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:17.5880000-07:00|10FF0007|Kehabiqo Febiqo|000105EE|115923||||||99.87|99.96|0.00|3.14| +37|2023-10-06T21:57:17.5880000-07:00|40021585|Zeromus|000105EF|31401367||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:17.5880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||| +30|2023-10-06T21:57:17.5880000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:57:17.6340000-07:00|10FF000A|Dukaro Nezikaro|000105E5|71481||||||99.99|100.42|0.00|3.14| +24|2023-10-06T21:57:17.6340000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|96C|129071|129071|9200|10000|||100.15|97.86|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +21|2023-10-06T21:57:17.6340000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31418935|40478540|10000|10000|||100.00|80.10|0.00|0.00|69760|73814|6500|10000|||100.02|100.11|0.00|-3.14|000105F3|0|1| +38|2023-10-06T21:57:17.6340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||| +21|2023-10-06T21:57:17.7210000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|754003|3F670000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31401367|40478540|10000|10000|||100.00|80.10|0.00|0.00|70327|81541|9200|10000|||99.75|100.18|0.00|3.13|000105F4|0|1| +261|2023-10-06T21:57:17.2420000-07:00|Remove|400216FE| +37|2023-10-06T21:57:17.7660000-07:00|10FF0004|Buhojaqe Zijaqe|000105E5|79825||||||99.75|100.18|0.00|3.13| +38|2023-10-06T21:57:17.7660000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.93|97.92|0.00|3.02|0|0|0|||| +30|2023-10-06T21:57:17.7660000-07:00|7AE|Summon Order IV|0.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T21:57:17.8990000-07:00|40021585|Zeromus|000105F0|31393095||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:17.8990000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|AB70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|115923|129844|10000|10000|||99.87|99.96|0.00|3.14|31401367|40478540|10000|10000|||100.00|80.10|0.00|0.00|000105F5|0|1| +21|2023-10-06T21:57:17.8990000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|33F90000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31401367|40478540|10000|10000|||100.00|80.10|0.00|0.00|77624|79209|9048|10000|||99.81|98.59|0.00|3.13|000105F6|0|1| +37|2023-10-06T21:57:17.9440000-07:00|40021585|Zeromus|000105F1|31390861||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:17.9910000-07:00|40021585|Zeromus|000105F2|31389086||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:17.5330000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T21:57:17.5330000-07:00|Change|4002170B||| +21|2023-10-06T21:57:18.1230000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31389086|40478540|10000|10000|||100.00|80.10|0.00|0.00|79825|81541|8800|10000|||99.75|100.18|0.00|3.13|000105F7|0|1| +37|2023-10-06T21:57:18.1700000-07:00|40021585|Zeromus|000105F3|31389056||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:18.1700000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|71481|83502|10000|10000|||99.99|100.42|0.00|3.14|71481|83502|10000|10000|||99.99|100.42|0.00|3.14|000105F8|0|1| +38|2023-10-06T21:57:18.1700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71481|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:18.1700000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +39|2023-10-06T21:57:18.2120000-07:00|10FF000B|Pusu Rosu|78416|79209|8929|10000|||99.81|98.59|0.00|3.13| +21|2023-10-06T21:57:18.2560000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37750003|2FE00000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|31389056|40478540|10000|10000|||100.00|80.10|0.00|0.00|69760|73814|6500|10000|||100.02|100.11|0.00|-3.14|000105F9|0|1| +21|2023-10-06T21:57:18.3010000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|200004|21D40000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|71481|83502|10000|10000|||99.99|100.42|0.00|3.14|73956|77430|10000|10000|||99.93|97.92|0.00|1.70|000105FA|0|1| +21|2023-10-06T21:57:18.3910000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|35B60000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|31389056|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.91|98.34|0.00|2.83|000105FB|0|1| +38|2023-10-06T21:57:18.3910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||99.91|98.34|0.00|2.83|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:18.3910000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:57:18.0560000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:57:18.0560000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:57:18.5250000-07:00|40021585|Zeromus|000105F4|31372825||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:57:18.1730000-07:00|40021710|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||110.30|113.10|0.00|-2.89| +261|2023-10-06T21:57:18.1730000-07:00|Remove|40021710| +37|2023-10-06T21:57:18.6580000-07:00|40021585|Zeromus|000105F7|31372673||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:18.6580000-07:00|40021585|Zeromus|DoT|0|208F|31372825|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|78416|79209|8929|10000|||99.81|98.57|0.00|-3.14| +21|2023-10-06T21:57:18.6580000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|71481|83502|10000|10000|||99.99|100.42|0.00|3.14|71481|83502|10000|10000|||99.99|100.42|0.00|3.14|000105FC|0|1| +36|2023-10-06T21:57:18.6580000-07:00|288C|3| +38|2023-10-06T21:57:18.6580000-07:00|40021585|Zeromus|005A5A00|31364338|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T21:57:18.6580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71481|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:18.6580000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +37|2023-10-06T21:57:18.7020000-07:00|10FF0007|Kehabiqo Febiqo|000105F5|113180|129844|10000|10000|0||99.87|99.96|0.00|3.14|1500|0|0|01|07000000|0|0|| +39|2023-10-06T21:57:18.7020000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|0.18| +38|2023-10-06T21:57:18.7020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113180|129844|10000|10000|0||99.87|99.96|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:18.7020000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:57:18.8800000-07:00|40021585|Zeromus|000105F9|31352082||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:18.8810000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||100.22|97.53|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:18.8810000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:19.0150000-07:00|40021585|Zeromus|000105FB|31338332||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:19.0150000-07:00|10FF0006|Wowobora Gogobora|000105FB|81809|81809|9700|10000|0||100.26|97.41|-0.01|-3.13|1B00|0|0|01|05000B25|0|0|| +38|2023-10-06T21:57:19.0150000-07:00|40021585|Zeromus|005A5A00|31338332|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T21:57:19.0150000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +38|2023-10-06T21:57:19.0150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||100.26|97.41|-0.01|-3.13|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:18.4520000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:57:19.1030000-07:00|10FF000A|Dukaro Nezikaro|000105FA|80141||||||99.99|100.42|0.00|3.14| +39|2023-10-06T21:57:19.1030000-07:00|10FF0004|Buhojaqe Zijaqe|80640|81541|9000|10000|||99.93|100.62|-0.01|0.25| +21|2023-10-06T21:57:19.1030000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31338332|40478540|10000|10000|||100.00|80.10|0.00|0.00|73349|90216|10000|10000|||99.84|100.33|0.00|3.13|000105FD|0|1| +39|2023-10-06T21:57:19.1480000-07:00|10FF0008|Kokosaze Lulusaze|74251|90216|10000|10000|||99.84|100.33|0.00|3.13| +39|2023-10-06T21:57:19.1480000-07:00|10FF0003|Gegehi Gehi|70498|73814|6700|10000|||100.02|100.11|0.00|-3.14| +21|2023-10-06T21:57:19.1480000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|80141|83502|10000|10000|||99.99|100.42|0.00|3.14|80141|83502|10000|10000|||99.99|100.42|0.00|3.14|000105FE|0|1| +38|2023-10-06T21:57:19.1480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|80141|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:19.1480000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +261|2023-10-06T21:57:18.6820000-07:00|Change|10FF0003||| +37|2023-10-06T21:57:19.1930000-07:00|40021585|Zeromus|000105F6|31325027||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:19.1930000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31338332|40478540|10000|10000|||100.00|80.10|0.00|0.00|113180|129844|10000|10000|||99.87|99.96|0.00|3.14|000105FF|0|1| +20|2023-10-06T21:57:19.1930000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.93|100.63|0.00|0.35| +21|2023-10-06T21:57:19.2380000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44724003|4B850000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|31338332|40478540|10000|10000|||100.00|80.10|0.00|0.00|73349|90216|10000|10000|||99.84|100.33|0.00|3.13|00010600|0|1| +21|2023-10-06T21:57:19.2380000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|456003|33FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31338332|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||100.27|97.40|0.00|-3.13|00010601|0|1| +38|2023-10-06T21:57:19.2380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||100.27|97.40|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:19.2380000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T21:57:19.2820000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.27|97.40|0.00|-3.13| +20|2023-10-06T21:57:19.4170000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.75|97.40|0.00|-3.10| +21|2023-10-06T21:57:19.5060000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|227F0000|A3E|340000|4|26818000|11B|258000|0|0|0|0|0|0|0|0|31325027|40478540|10000|10000|||100.00|80.10|0.00|0.00|113180|129844|10000|10000|||99.87|99.96|0.00|3.14|00010602|0|1| +261|2023-10-06T21:57:19.1380000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:57:19.5950000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31325027|40478540|10000|10000|||100.00|80.10|0.00|0.00|80141|83502|10000|10000|||99.99|100.42|0.00|3.14|00010603|0|1| +261|2023-10-06T21:57:19.1380000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:57:19.6840000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|654003|461C0000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|31325027|40478540|10000|10000|||100.00|80.10|0.00|0.00|80141|83502|10000|10000|||99.99|100.42|0.00|3.14|00010604|0|1| +38|2023-10-06T21:57:19.6840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|80141|83502|10000|10000|0||99.99|100.42|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:19.6840000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +26|2023-10-06T21:57:19.6840000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:57:19.7290000-07:00|40021585|Zeromus|000105FF|31322127||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:19.7290000-07:00|4002170B|Bunshin|76288|79156|10000|10000|||100.00|100.42|0.00|3.14| +21|2023-10-06T21:57:19.7290000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|8340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31325027|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.15|97.86|0.00|-3.13|00010605|0|1| +31|2023-10-06T21:57:19.7290000-07:00|10FF0001||||| +21|2023-10-06T21:57:19.7720000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1EBD0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|31325027|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.15|97.86|0.00|-3.13|00010606|0|1| +21|2023-10-06T21:57:19.7720000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A750003|44510000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|31325027|40478540|10000|10000|||100.00|80.10|0.00|0.00|70498|73814|6700|10000|||100.02|100.11|0.00|-3.14|00010607|0|1| +39|2023-10-06T21:57:19.8170000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9400|10000|||100.15|97.86|0.00|-3.13| +261|2023-10-06T21:57:19.3370000-07:00|Change|10FF0001||| +37|2023-10-06T21:57:19.8620000-07:00|40021585|Zeromus|000105FD|31317398||||||100.00|80.10|0.00|0.00| +00|2023-10-06T21:57:19.0000000-07:00|0044|Zeromus|All are as one in Darkness.| +20|2023-10-06T21:57:19.9510000-07:00|40021585|Zeromus|8B66|Void Bio|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:19.4330000-07:00|Change|40021585||||||||| +37|2023-10-06T21:57:19.9970000-07:00|40021585|Zeromus|00010601|31304088||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:19.5350000-07:00|Change|10FF000B||||||||||||||||||| +37|2023-10-06T21:57:20.0410000-07:00|40021585|Zeromus|00010600|31284755||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:20.0860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|976|74251|90216|10000|10000|||99.84|100.33|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|1.66| +24|2023-10-06T21:57:20.0860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F6F|80640|81541|9000|10000|||99.93|100.63|0.00|3.14|10FF000B|Pusu Rosu|0|78416|79209|8929|10000|||99.75|97.40|0.00|3.13| +38|2023-10-06T21:57:20.0860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|76673|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0||||||||||||| +38|2023-10-06T21:57:20.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|9000|10000|0||99.93|100.63|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:20.1310000-07:00|40021585|Zeromus|00010602|31275924||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:20.1310000-07:00|10FF0007|Kehabiqo Febiqo|00010602|123037||||||99.87|99.96|0.00|3.14| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216EE| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216EF| +37|2023-10-06T21:57:20.1310000-07:00|40021585|Zeromus|00010603|31272240||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216F0| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216F1| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216F2| +37|2023-10-06T21:57:20.1310000-07:00|10FF000A|Dukaro Nezikaro|00010603|80141|83502|10000|10000|0||99.99|100.45|0.00|0.33|1E00|0|0|01|060001FB|0|C1A00000|| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216F3| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216F4| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216F5| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216F6| +261|2023-10-06T21:57:19.7290000-07:00|Remove|400216F7| +21|2023-10-06T21:57:20.1320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|50DA0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31304088|40478540|10000|10000|||100.00|80.10|0.00|0.00|80640|81541|9000|10000|||99.93|100.63|0.00|3.14|00010608|0|1| +24|2023-10-06T21:57:20.1750000-07:00|10FF0006|Wowobora Gogobora|HoT|0|97E|81809|81809|9900|10000|||100.27|97.40|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|1.66| +21|2023-10-06T21:57:20.1750000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31304088|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.27|97.40|0.00|-3.13|00010609|0|1| +38|2023-10-06T21:57:20.1750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.27|97.40|0.00|-3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:20.2640000-07:00|40021585|Zeromus|00010605|31270140||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:20.3080000-07:00|10FF0008|Kokosaze Lulusaze|20FDD70|item_fdd70|10FF0008|Kokosaze Lulusaze|6C00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|76673|90216|10000|10000|||99.84|100.33|0.00|3.13|76673|90216|10000|10000|||99.84|100.33|0.00|3.13|0001060A|0|1| +39|2023-10-06T21:57:20.3530000-07:00|10FF000A|Dukaro Nezikaro|80976|83502|10000|10000|||100.00|100.80|0.00|0.03| +21|2023-10-06T21:57:20.3530000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|34600000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31272240|40478540|10000|10000|||100.00|80.10|0.00|0.00|78416|79209|8929|10000|||99.75|97.40|0.00|3.13|0001060B|0|1| +37|2023-10-06T21:57:20.3980000-07:00|40021585|Zeromus|00010607|31252651||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:20.3980000-07:00|10FF0003|Gegehi Gehi|HoT|0|A15|70498|73814|6700|10000|||100.02|100.11|0.00|-3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|2.29| +38|2023-10-06T21:57:20.3980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73079|73814|6700|10000|0||100.02|100.11|0.00|-3.14|0|0|0|||||||||| +24|2023-10-06T21:57:20.4420000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A16|80976|83502|10000|10000|||100.01|101.09|0.00|0.03|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|2.61| +38|2023-10-06T21:57:20.4420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.01|101.09|0.00|0.03|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:57:20.4870000-07:00|10FF0007|Kehabiqo Febiqo|124335|129844|10000|10000|||99.87|99.96|0.00|3.14| +38|2023-10-06T21:57:20.4870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8600|10000|0||99.93|100.63|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:20.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:57:20.4870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|76673|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0||||||||||||| +26|2023-10-06T21:57:20.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:57:20.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.27|97.42|0.00|1.54|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:20.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:57:20.4870000-07:00|10FF0003|Gegehi Gehi|005A5A23|73079|73814|6700|10000|0||100.02|100.11|0.00|-3.14|0|0|0|||||||||| +26|2023-10-06T21:57:20.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:57:20.4870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.01|101.09|0.00|0.03|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:20.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:57:20.4870000-07:00|10FF000B|Pusu Rosu|005A5A18|78416|79209|8529|10000|0||99.75|97.40|0.00|3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:57:20.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:20.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124335|129844|10000|10000|0||99.87|99.96|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:20.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:57:20.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T21:57:20.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T21:57:20.4870000-07:00|10FF000B|Pusu Rosu|HoT|0|996|78416|79209|8529|10000|||99.75|97.40|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|2.61| +38|2023-10-06T21:57:20.4870000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8529|10000|0||99.75|97.40|0.00|3.13|0|0|0|||||||||||||||| +37|2023-10-06T21:57:20.5310000-07:00|40021585|Zeromus|00010606|31244782||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:20.5310000-07:00|10FF0001|Sesuga Sapisuga|00010606|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|1300|0|0|0| +24|2023-10-06T21:57:20.5760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|92C|124335|129844|10000|10000|||99.87|99.96|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|124335|129844|10000|10000|||99.87|99.96|0.00|3.14| +38|2023-10-06T21:57:20.5760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126683|129844|10000|10000|0||99.87|99.96|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:20.5760000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T21:57:20.6210000-07:00|40021717|Carbuncle|77698|77698|10000|10000|||99.66|97.40|0.00|-0.02| +261|2023-10-06T21:57:20.0800000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:57:20.6660000-07:00|40021585|Zeromus|00010604|31226834||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:20.6660000-07:00|10FF000A|Dukaro Nezikaro|00010604|83502|83502|10000|10000|0||100.02|101.35|0.00|0.03|1E00|0|0|01|060001FB|0|41A00000|| +24|2023-10-06T21:57:20.6660000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|F6B|129071|129071|9400|10000|||100.15|97.86|0.00|-3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|2.89| +38|2023-10-06T21:57:20.6660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||| +38|2023-10-06T21:57:20.6660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.35|0.00|0.03|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:20.7110000-07:00|40021585|Zeromus|00010609|31226690||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:20.2790000-07:00|Change|10FF0001||| +20|2023-10-06T21:57:20.8890000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|1.491|99.90|98.71|0.00|0.08| +261|2023-10-06T21:57:20.3770000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:57:20.9340000-07:00|40021585|Zeromus|00010608|31205992||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:20.4750000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T21:57:21.1110000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31205992|40478540|10000|10000|||100.00|80.10|0.00|0.00|73079|73814|6700|10000|||100.02|100.11|0.00|-3.14|0001060C|0|1| +37|2023-10-06T21:57:21.2010000-07:00|10FF0008|Kokosaze Lulusaze|0001060A|76673|90216|10000|10000|0||99.84|100.33|0.00|3.13|1F00|0|0|01|04000031|296C|41F00000|| +26|2023-10-06T21:57:21.2010000-07:00|31|Medicated|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|296C|90216|90216| +38|2023-10-06T21:57:21.2010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|76673|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0|||||||||||||||| +39|2023-10-06T21:57:21.2440000-07:00|10FF000B|Pusu Rosu|79209|79209|8810|10000|||99.75|97.40|0.00|3.13| +21|2023-10-06T21:57:21.2440000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|249D0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|31205992|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|0.02|0001060D|0|1| +38|2023-10-06T21:57:21.2440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|0.02|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:21.2440000-07:00|7A2|Bunshin|17.16|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T21:57:21.3330000-07:00|4002170B|Bunshin|4406|Gust Slash|40021585|Zeromus|716003|219D0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|31205992|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||100.03|101.58|0.00|-3.14|0001060E|0|1| +261|2023-10-06T21:57:20.8080000-07:00|Change|4002170B||||||||| +21|2023-10-06T21:57:21.5560000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|31205992|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||99.96|100.24|0.00|3.02|0001060F|0|1| +261|2023-10-06T21:57:21.1520000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:57:21.6460000-07:00|40021585|Zeromus|0001060C|31205936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:21.6460000-07:00|40021585|Zeromus|0001060B|31192528||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:21.6460000-07:00|40021585|Zeromus|0001060D|31183155||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:21.6460000-07:00|40021585|Zeromus|DoT|0|1C0D|31205992|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8810|10000|||99.75|97.40|0.00|3.13| +36|2023-10-06T21:57:21.6460000-07:00|2968|3| +38|2023-10-06T21:57:21.6460000-07:00|40021585|Zeromus|005A5A00|31175974|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:57:21.6900000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.02| +37|2023-10-06T21:57:21.7340000-07:00|40021585|Zeromus|0001060E|31167369||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:21.7340000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|20B60000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|31205992|40478540|10000|10000|||100.00|80.10|0.00|0.00|76673|90216|10000|10000|||99.84|100.33|0.00|3.13|00010610|0|1| +21|2023-10-06T21:57:21.7790000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|76673|90216|10000|10000|||99.84|100.33|0.00|3.13|00010611|0|1| +21|2023-10-06T21:57:21.7790000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|00010612|0|1| +38|2023-10-06T21:57:21.7790000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8810|10000|0||99.75|97.40|0.00|3.13|0|0|0|||||||||||||||| +30|2023-10-06T21:57:21.7790000-07:00|750|Temperance|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T21:57:21.8680000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|750003|32200000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||99.81|99.02|0.00|3.13|00010613|0|1| +20|2023-10-06T21:57:21.8680000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.75|97.40|0.00|3.13| +261|2023-10-06T21:57:21.4410000-07:00|Change|10FF0006||||||||||||||||||||||| +21|2023-10-06T21:57:21.9570000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|33130000|143E|340000|4|254A8000|200004|262F8000|11B|2A8000|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|126683|129844|10000|10000|||99.96|99.96|0.00|-3.13|00010614|0|1| +21|2023-10-06T21:57:22.0020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|00010615|0|1| +21|2023-10-06T21:57:22.0020000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40021585|Zeromus|150003|59610000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|73079|73814|6700|10000|||100.02|100.11|0.00|-3.14|00010616|0|1| +38|2023-10-06T21:57:22.0020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73079|73814|6300|10000|0||100.02|100.11|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T21:57:22.0020000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +31|2023-10-06T21:57:22.0020000-07:00|10FF0001||||| +261|2023-10-06T21:57:21.4410000-07:00|Change|10FF0003||| +261|2023-10-06T21:57:21.5520000-07:00|Change|10FF000B||||||||||||||| +39|2023-10-06T21:57:22.0890000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8400|10000|||99.96|100.24|0.00|3.14| +39|2023-10-06T21:57:22.1360000-07:00|10FF0008|Kokosaze Lulusaze|77575|90216|10000|10000|||99.84|100.33|0.00|3.13| +39|2023-10-06T21:57:22.1360000-07:00|10FF0003|Gegehi Gehi|73814|73814|6500|10000|||100.02|100.11|0.00|-3.14| +21|2023-10-06T21:57:22.1790000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14900000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|126683|129844|10000|10000|||99.96|99.96|0.00|3.14|73956|77430|10000|10000|||99.93|97.92|0.00|1.67|00010617|0|1| +37|2023-10-06T21:57:22.2240000-07:00|40021585|Zeromus|0001060F|31167369|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:57:22.2240000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +39|2023-10-06T21:57:22.2690000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9800|10000|||99.81|99.02|0.00|3.13| +21|2023-10-06T21:57:22.2690000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||99.96|100.24|0.00|3.14|00010618|0|1| +37|2023-10-06T21:57:22.3130000-07:00|40021585|Zeromus|00010612|31164655||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:22.3130000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|15A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|77575|90216|10000|10000|||99.84|100.33|0.00|3.13|00010619|0|1| +21|2023-10-06T21:57:22.3590000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|27FC0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|31167369|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|0001061A|0|1| +38|2023-10-06T21:57:22.3590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:22.3590000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:57:22.3590000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T21:57:22.4910000-07:00|40021585|Zeromus|00010610|31156281||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:22.1280000-07:00|Change|10FF0003||| +37|2023-10-06T21:57:22.5360000-07:00|40021585|Zeromus|00010611|31153772||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:22.5360000-07:00|40021585|Zeromus|00010615|31152091||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:22.5360000-07:00|10FF0001|Sesuga Sapisuga|00010615|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|1300|0|0|02|0400076E|03|C1F00000|||||| +21|2023-10-06T21:57:22.5800000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31152091|40478540|10000|10000|||100.00|80.10|0.00|0.00|126683|129844|10000|10000|||99.96|99.96|0.00|3.14|0001061B|0|1| +261|2023-10-06T21:57:22.2290000-07:00|Change|10FF0004||| +37|2023-10-06T21:57:22.6700000-07:00|40021585|Zeromus|00010613|31139259||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:22.7150000-07:00|4002170B|Bunshin|76288|79156|10000|10000|||100.03|101.58|0.00|-3.14| +37|2023-10-06T21:57:22.8040000-07:00|40021585|Zeromus|00010618|31139112||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:22.8040000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +21|2023-10-06T21:57:22.8040000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31440000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31139259|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8810|10000|||99.75|97.40|0.00|3.13|0001061C|0|1| +37|2023-10-06T21:57:22.9370000-07:00|40021585|Zeromus|0001061A|31128876||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:22.9370000-07:00|10FF0001|Sesuga Sapisuga|0001061A|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|1300|0|0|02|0400076E|03|41F00000|||||| +21|2023-10-06T21:57:22.9380000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77575|90216|10000|10000|||99.84|100.33|0.00|3.13|77575|90216|10000|10000|||99.84|100.33|0.00|3.13|0001061D|0|1| +38|2023-10-06T21:57:22.9380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:22.5120000-07:00|Change|10FF0006||| +37|2023-10-06T21:57:22.9810000-07:00|10FF0007|Kehabiqo Febiqo|00010617|129844||||||99.96|99.96|0.00|3.14| +24|2023-10-06T21:57:23.0710000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|935|77575|90216|10000|10000|||99.84|100.33|0.00|3.13|10FF0008|Kokosaze Lulusaze|0|77575|90216|10000|10000|||99.84|100.33|0.00|3.13| +24|2023-10-06T21:57:23.0710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|99F|81541|81541|8400|10000|||99.96|100.24|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|8410|10000|||99.75|97.40|0.00|3.13| +38|2023-10-06T21:57:23.0710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79932|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0|||||||||||||||| +38|2023-10-06T21:57:23.0710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8400|10000|0||99.96|100.24|0.00|3.14|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:22.6300000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:57:23.1140000-07:00|40021585|Zeromus|0001061B|31126107||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:23.1140000-07:00|40021585|Zeromus|00010619|31120571||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:23.1600000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1008|81809|81809|9800|10000|||99.81|99.02|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|0.01| +38|2023-10-06T21:57:23.1610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9800|10000|0||99.81|99.02|0.00|3.13|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:22.8570000-07:00|Change|4002170B||| +39|2023-10-06T21:57:23.3380000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14| +24|2023-10-06T21:57:23.3830000-07:00|10FF0003|Gegehi Gehi|HoT|0|9B5|73814|73814|6500|10000|||100.02|100.11|0.00|-3.14|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|0.01| +21|2023-10-06T21:57:23.3830000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40021585|Zeromus|750003|42B80000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|31120571|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9800|10000|||99.81|99.02|0.00|3.13|0001061E|0|1| +38|2023-10-06T21:57:23.3830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|0||99.81|99.02|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:23.3830000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:57:23.3830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6500|10000|0||100.02|100.11|0.00|-3.14|0|0|0||||||||||||| +38|2023-10-06T21:57:23.4260000-07:00|40021742||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:57:23.4290000-07:00|40021585|Zeromus|00010616|31097690||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:23.4290000-07:00|10FF0003|Gegehi Gehi|00010616|73814|73814|6500|10000|0||100.02|100.11|0.00|-3.14|2300|0|0|01|030004D2|0|41F00000|| +24|2023-10-06T21:57:23.4290000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|93F|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|10FF000A|Dukaro Nezikaro|0|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14| +38|2023-10-06T21:57:23.4290000-07:00|40021742||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:57:23.4290000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6500|10000|0||100.02|100.11|0.00|-3.14|0|0|0||||||||||||| +38|2023-10-06T21:57:23.4290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:23.4710000-07:00|40021585|Zeromus|00010614|31084615||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:23.4730000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.96|99.96|0.00|3.14| +24|2023-10-06T21:57:23.4730000-07:00|10FF000B|Pusu Rosu|HoT|0|EE2|79209|79209|8410|10000|||99.75|97.40|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|0.17| +21|2023-10-06T21:57:23.4730000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44712003|4E900000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|31097690|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|0001061F|0|1| +38|2023-10-06T21:57:23.4730000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8410|10000|0||99.75|97.40|0.00|3.13|0|0|0|||||||||||||||| +38|2023-10-06T21:57:23.4730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:23.4730000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T21:57:23.5610000-07:00|4002170B|Bunshin|4407|Aeolian Edge|40021585|Zeromus|710003|11740000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|31097690|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||100.03|101.58|0.00|-3.14|00010620|0|1| +24|2023-10-06T21:57:23.5610000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|95B|129844|129844|10000|10000|||99.96|99.96|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.96|99.96|0.00|3.14| +38|2023-10-06T21:57:23.5610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.96|99.96|0.00|3.14|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:23.0820000-07:00|Change|4002170B||| +39|2023-10-06T21:57:23.6050000-07:00|40021717|Carbuncle|77698|77698|10000|10000|||99.66|97.40|0.00|-0.02| +24|2023-10-06T21:57:23.6500000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A14|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +38|2023-10-06T21:57:23.6500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||| +03|2023-10-06T21:57:23.2650000-07:00|40021742|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.61|102.13|0.00|3.13| +261|2023-10-06T21:57:23.2650000-07:00|Add|40021742||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:23.3630000-07:00|Change|40021742||| +20|2023-10-06T21:57:23.9620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.96|100.24|0.00|3.14| +21|2023-10-06T21:57:23.9620000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|88A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31084615|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|00010621|0|1| +261|2023-10-06T21:57:23.4590000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T21:57:23.4590000-07:00|Change|10FF0006||| +37|2023-10-06T21:57:24.0070000-07:00|40021585|Zeromus|0001061F|31064503||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:24.0070000-07:00|40021717|Carbuncle|005A5A00|77698|77698|10000|10000|0||99.66|97.40|0.00|-0.02|0|0|0||||||| +26|2023-10-06T21:57:24.0070000-07:00|30|Well Fed|838.62|10FF0006|Wowobora Gogobora|40021717|Carbuncle|2964|77698|81809| +26|2023-10-06T21:57:24.0070000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40021717|Carbuncle|01|77698|81809| +21|2023-10-06T21:57:24.0070000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9400|10000|||99.81|99.02|0.00|3.13|81809|81809|9400|10000|||99.81|99.02|0.00|3.13|00010622|0|1| +37|2023-10-06T21:57:24.0960000-07:00|40021585|Zeromus|00010620|31060035||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:24.0960000-07:00|40021585|Zeromus|0001061C|31047423||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:24.0960000-07:00|40021717|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9400|10000|||99.81|99.02|0.00|3.13|77698|77698|10000|10000|||99.66|97.40|0.00|-0.02|00010623|0|1| +38|2023-10-06T21:57:24.0960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|19||99.81|99.02|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:24.0960000-07:00|A8E|Radiant Aegis|29.96|40021717|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T21:57:24.1850000-07:00|40021585|Zeromus|0001061E|31030343||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:24.2290000-07:00|10FF000B|Pusu Rosu|79209|79209|8691|10000|||99.75|97.40|0.00|3.13| +21|2023-10-06T21:57:24.2290000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|726003|CFA40000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|31064503|40478540|10000|10000|||100.00|80.10|0.00|0.00|79932|90216|10000|10000|||99.84|100.33|0.00|3.13|00010624|0|1| +261|2023-10-06T21:57:23.8160000-07:00|Change|10FF000B||| +21|2023-10-06T21:57:24.2750000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31030343|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|00010625|0|1| +31|2023-10-06T21:57:24.2750000-07:00|10FF0001||||| +21|2023-10-06T21:57:24.3190000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31030343|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||99.81|99.02|0.00|3.13|00010626|0|1| +20|2023-10-06T21:57:24.3650000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.75|97.40|0.00|3.13| +21|2023-10-06T21:57:24.4080000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|37460000|4|266B8000|0|0|0|0|0|0|0|0|0|0|0|0|31030343|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.96|99.96|0.00|3.14|00010627|0|1| +21|2023-10-06T21:57:24.4080000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|756003|C26C0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|31030343|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6500|10000|||100.02|100.11|0.00|-3.14|00010628|0|1| +261|2023-10-06T21:57:23.9330000-07:00|Change|10FF0003||| +261|2023-10-06T21:57:24.0510000-07:00|Change|40021742||| +21|2023-10-06T21:57:24.4520000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31030343|40478540|10000|10000|||100.00|80.10|0.00|0.00|79932|90216|10000|10000|||99.84|100.33|0.00|3.13|00010629|0|1| +34|2023-10-06T21:57:24.4520000-07:00|40021742|Automaton Queen|40021742|Automaton Queen|01| +37|2023-10-06T21:57:24.4960000-07:00|40021585|Zeromus|00010621|31028157||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:24.1710000-07:00|Change|40021742||| +21|2023-10-06T21:57:24.5860000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31028157|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6100|10000|||100.02|100.11|0.00|-3.14|0001062A|0|1| +38|2023-10-06T21:57:24.5860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.96|99.96|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:24.5860000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +39|2023-10-06T21:57:24.6750000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +24|2023-10-06T21:57:24.6750000-07:00|40021585|Zeromus|DoT|0|1723|31028157|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8691|10000|||99.75|97.40|0.00|3.13| +36|2023-10-06T21:57:24.6750000-07:00|2A44|3| +38|2023-10-06T21:57:24.6750000-07:00|40021585|Zeromus|005A5A00|31022234|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:57:24.8090000-07:00|40021585|Zeromus|00010625|31020454||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:24.8090000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|15600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31022234|40478540|10000|10000|||100.00|80.10|0.00|0.00|79932|90216|10000|10000|||99.84|100.33|0.00|3.13|0001062B|0|1| +37|2023-10-06T21:57:24.8530000-07:00|40021585|Zeromus|00010626|31020274||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:24.8530000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|712003|20F90000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|31022234|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|0001062C|0|1| +37|2023-10-06T21:57:24.8980000-07:00|10FF0006|Wowobora Gogobora|00010623|81809|81809|9400|10000|19||99.81|99.02|0.00|3.13|1B00|0|0|01|03000A8E|0|41E99373|| +21|2023-10-06T21:57:24.8980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|32A00000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|31020274|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||99.96|100.24|0.00|3.14|0001062D|0|1| +38|2023-10-06T21:57:24.8980000-07:00|40021717|Carbuncle|005A5A00|77698|77698|10000|10000|0||99.66|97.40|0.00|0.10|0|0|0|||| +30|2023-10-06T21:57:24.8980000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40021717|Carbuncle|01|77698|81809| +21|2023-10-06T21:57:24.9420000-07:00|40021585|Zeromus|8B66|Void Bio|40021585|Zeromus|1B|8B668000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31020274|40478540|10000|10000|||100.00|80.10|0.00|0.00|31020274|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001062E|0|1| +261|2023-10-06T21:57:24.4700000-07:00|Change|40021585||||||||||||| +261|2023-10-06T21:57:24.5780000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:57:25.0330000-07:00|40021585|Zeromus|00010627|31006124||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:25.1210000-07:00|40021585|Zeromus|0001062A|31006069||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:25.1210000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8200|10000|||99.96|100.24|0.00|3.14| +39|2023-10-06T21:57:25.1210000-07:00|10FF0003|Gegehi Gehi|73814|73814|6300|10000|||100.02|100.11|0.00|-3.14| +261|2023-10-06T21:57:24.6960000-07:00|Change|10FF0003||| +39|2023-10-06T21:57:25.1660000-07:00|10FF0008|Kokosaze Lulusaze|80834|90216|10000|10000|||99.84|100.33|0.00|3.13| +37|2023-10-06T21:57:25.2110000-07:00|40021585|Zeromus|00010629|31003555||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:25.2110000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|724003|18320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31006069|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6300|10000|||100.02|100.11|0.00|-3.14|0001062F|0|1| +261|2023-10-06T21:57:24.8140000-07:00|Change|10FF000B||||||||||||| +39|2023-10-06T21:57:25.3000000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||99.81|99.02|0.00|3.13| +21|2023-10-06T21:57:25.3000000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|498C0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|31003555|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8691|10000|||99.75|97.40|0.00|3.13|00010630|0|1| +261|2023-10-06T21:57:24.9280000-07:00|Change|10FF0006||| +37|2023-10-06T21:57:25.3900000-07:00|40021585|Zeromus|00010624|30950399||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:25.4350000-07:00|40021585|Zeromus|0001062B|30944927||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:25.4350000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|163F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31003555|40478540|10000|10000|||100.00|80.10|0.00|0.00|80834|90216|10000|10000|||99.84|100.33|0.00|3.13|00010631|0|1| +37|2023-10-06T21:57:25.4790000-07:00|40021585|Zeromus|0001062C|30936486||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:25.4790000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8291|10000|0||99.75|97.40|0.00|3.13|0|0|0|||||||||||||||| +30|2023-10-06T21:57:25.4790000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:25.4790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:25.4790000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T21:57:25.5230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.96|99.96|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:25.5230000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:57:25.5230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80834|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0|||||||||||||||| +30|2023-10-06T21:57:25.5230000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:57:25.5230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|19||99.81|99.02|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:25.5230000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:57:25.5230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:25.5230000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:57:25.5230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|0||99.96|100.24|0.00|3.14|0|0|0|||||||||||||||| +30|2023-10-06T21:57:25.5230000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:57:25.5230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||100.02|100.11|0.00|-3.14|0|0|0||||||||||||| +30|2023-10-06T21:57:25.5230000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T21:57:25.6130000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|30BD0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|30936486|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|00010632|0|1| +37|2023-10-06T21:57:25.7010000-07:00|40021585|Zeromus|0001062D|30923526||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:25.7010000-07:00|4002170B|Bunshin|76288|79156|10000|10000|||100.03|101.58|0.00|-3.14| +261|2023-10-06T21:57:25.3570000-07:00|Change|4002170B||| +39|2023-10-06T21:57:25.7900000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +37|2023-10-06T21:57:25.8360000-07:00|40021585|Zeromus|0001062F|30917332||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:25.8790000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40021585|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|30923526|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|00010633|0|1| +261|2023-10-06T21:57:25.4530000-07:00|Change|40021717||||||||| +38|2023-10-06T21:57:25.9240000-07:00|40021748||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:57:25.9240000-07:00|10FF000B|Pusu Rosu|88|Presence of Mind|10FF000B|Pusu Rosu|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8291|10000|||99.75|97.40|0.00|3.13|79209|79209|8291|10000|||99.75|97.40|0.00|3.13|00010634|0|1| +38|2023-10-06T21:57:25.9240000-07:00|40021748||005A5A00|66800|69928|10000|10000|0||||||0|0|0|||| +21|2023-10-06T21:57:25.9690000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30917332|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.96|99.96|0.00|3.14|00010635|0|1| +21|2023-10-06T21:57:25.9690000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|425C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.96|99.96|0.00|3.14|30917332|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010636|0|1| +21|2023-10-06T21:57:25.9690000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|19D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30917332|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|00010637|0|1| +37|2023-10-06T21:57:26.0140000-07:00|40021585|Zeromus|00010632|30904855||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:25.5470000-07:00|Change|10FF0004||| +21|2023-10-06T21:57:26.0590000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|14650000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|80834|90216|10000|10000|||99.84|100.33|0.00|3.13|73956|77430|10000|10000|||99.93|97.92|0.00|-1.57|00010638|0|1| +24|2023-10-06T21:57:26.0590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9F2|80834|90216|10000|10000|||99.84|100.33|0.00|3.13|10FF0008|Kokosaze Lulusaze|0|80834|90216|10000|10000|||99.84|100.33|0.00|3.13| +24|2023-10-06T21:57:26.0590000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|944|81541|81541|8200|10000|||99.96|100.24|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|8200|10000|||99.96|100.24|0.00|3.14| +38|2023-10-06T21:57:26.0590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|83380|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0|||||||||||||||| +38|2023-10-06T21:57:26.0590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|0||99.96|100.24|0.00|3.14|0|0|0|||||||||||||||| +24|2023-10-06T21:57:26.1470000-07:00|10FF0006|Wowobora Gogobora|HoT|0|EFB|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|-1.57| +21|2023-10-06T21:57:26.1470000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|12090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30904855|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|00010639|0|1| +38|2023-10-06T21:57:26.1470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|19||99.81|99.02|0.00|3.13|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:25.7770000-07:00|Add|40021747||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:25.7770000-07:00|Add|40021748||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:25.7770000-07:00|Add|40021749||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:57:25.7770000-07:00|40021747|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||82.00|80.30|0.00|0.00| +03|2023-10-06T21:57:25.7770000-07:00|40021749|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||86.00|80.30|0.00|0.00| +261|2023-10-06T21:57:25.7770000-07:00|Remove|4002170B| +03|2023-10-06T21:57:25.7770000-07:00|40021748|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||101.57|100.82|0.00|3.13| +261|2023-10-06T21:57:25.7770000-07:00|Change|40021747||| +261|2023-10-06T21:57:25.7770000-07:00|Change|40021749||| +261|2023-10-06T21:57:25.8870000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:57:25.8870000-07:00|Change|40021748||| +37|2023-10-06T21:57:26.2370000-07:00|40021585|Zeromus|00010631|30899160||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:26.2370000-07:00|40021585|Zeromus|00010628|30849388||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:26.3250000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.96|100.24|0.00|3.14| +39|2023-10-06T21:57:26.3700000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14| +24|2023-10-06T21:57:26.3700000-07:00|10FF0003|Gegehi Gehi|HoT|0|945|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|10FF0003|Gegehi Gehi|0|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14| +38|2023-10-06T21:57:26.3700000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||100.02|100.11|-0.02|-3.14|0|0|0||||||||||||| +24|2023-10-06T21:57:26.4150000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|99B|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|10FF000A|Dukaro Nezikaro|0|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14| +38|2023-10-06T21:57:26.4150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:26.4600000-07:00|10FF000B|Pusu Rosu|00010634|79209|79209|8291|10000|0||99.75|97.40|0.00|3.13|1800|0|0|01|0200009D|0|41700000|| +26|2023-10-06T21:57:26.4600000-07:00|9D|Presence of Mind|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T21:57:26.4600000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.96|99.96|0.00|3.14| +24|2023-10-06T21:57:26.4600000-07:00|10FF000B|Pusu Rosu|HoT|0|975|79209|79209|8291|10000|||99.75|97.40|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|-0.31| +38|2023-10-06T21:57:26.4600000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8291|10000|0||99.75|97.40|0.00|3.13|0|0|0|||||||||||||||| +37|2023-10-06T21:57:26.5040000-07:00|40021585|Zeromus|00010635|30844635||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:26.5510000-07:00|40021585|Zeromus|00010637|30838023||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:26.5510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|98E|129844|129844|10000|10000|||99.96|99.96|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||99.96|99.96|0.00|3.14| +22|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|0001063A|0|8| +22|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.96|99.96|0.00|3.14|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|0001063A|1|8| +22|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|0001063A|2|8| +22|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|8200|10000|||99.96|100.24|0.00|3.14|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|0001063A|3|8| +22|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|0001063A|4|8| +22|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83380|90216|10000|10000|||99.84|100.33|0.00|3.13|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|0001063A|5|8| +22|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000B|Pusu Rosu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8291|10000|||99.75|97.40|0.00|3.13|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|0001063A|6|8| +22|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|81809|81809|9600|10000|||99.81|99.02|0.00|3.13|0001063A|7|8| +21|2023-10-06T21:57:26.5510000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30849388|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|0001063B|0|1| +38|2023-10-06T21:57:26.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.96|99.96|0.00|3.14|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:26.1160000-07:00|Add|4002174A||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:57:26.5510000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:57:26.5510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|83380|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:57:26.5510000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:57:26.5510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|19||99.81|99.02|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:26.5510000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:57:26.5510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:26.5510000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:57:26.5510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8200|10000|0||99.96|100.24|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:26.5510000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:57:26.5510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||100.02|100.11|-0.02|-3.14|0|0|0||||||||||||| +26|2023-10-06T21:57:26.5510000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:57:26.5510000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8291|10000|0||99.75|97.40|0.00|3.13|0|0|0|||||||||||||||| +26|2023-10-06T21:57:26.5510000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +38|2023-10-06T21:57:26.5510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:26.5510000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +31|2023-10-06T21:57:26.5510000-07:00|10FF0001||||| +03|2023-10-06T21:57:26.1160000-07:00|4002174A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||90.00|80.30|0.00|0.00| +261|2023-10-06T21:57:26.2170000-07:00|Change|4002174A||| +37|2023-10-06T21:57:26.5940000-07:00|40021585|Zeromus|00010630|30819195||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:26.6380000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9B4|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +38|2023-10-06T21:57:26.6380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:26.6830000-07:00|40021585|Zeromus|00010639|30814578||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:26.7720000-07:00|10FF0007|Kehabiqo Febiqo|00010636|112856||||||99.96|99.96|0.00|3.14| +21|2023-10-06T21:57:26.7720000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|726003|C90D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30814578|40478540|10000|10000|||100.00|80.10|0.00|0.00|83380|90216|10000|10000|||99.84|100.33|0.00|3.13|0001063C|0|1| +20|2023-10-06T21:57:26.8170000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|97.40|0.00|3.13| +37|2023-10-06T21:57:26.8630000-07:00|10FF0008|Kokosaze Lulusaze|00010638|88601||||||99.84|100.33|0.00|3.13| +21|2023-10-06T21:57:26.8630000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|25D70000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|30814578|40478540|10000|10000|||100.00|80.10|0.00|0.00|112856|129844|10000|10000|||99.96|99.96|0.00|3.14|0001063D|0|1| +21|2023-10-06T21:57:26.8630000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|754003|8BA80000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|30814578|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001063E|0|1| +261|2023-10-06T21:57:26.4060000-07:00|Change|10FF0003||||| +03|2023-10-06T21:57:26.5020000-07:00|4002174B|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||94.00|80.30|0.00|0.00| +03|2023-10-06T21:57:26.5020000-07:00|4002174C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||98.00|80.30|0.00|0.00| +261|2023-10-06T21:57:26.5020000-07:00|Add|4002174B||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:26.5020000-07:00|Change|40021748||| +261|2023-10-06T21:57:26.5020000-07:00|Add|4002174C||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:26.5980000-07:00|Change|4002174B||| +261|2023-10-06T21:57:26.5980000-07:00|Change|4002174C||| +261|2023-10-06T21:57:26.5980000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:57:27.0840000-07:00|40021585|Zeromus|0001063B|30812716||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:27.1280000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|98E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30814578|40478540|10000|10000|||100.00|80.10|0.00|0.00|88601|90216|10000|10000|||99.84|100.33|0.00|3.13|0001063F|0|1| +39|2023-10-06T21:57:27.2180000-07:00|10FF000B|Pusu Rosu|79209|79209|8572|10000|||99.75|97.40|0.00|3.13| +21|2023-10-06T21:57:27.2620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|320E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|30812716|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||99.96|100.24|0.00|3.14|00010640|0|1| +261|2023-10-06T21:57:26.8340000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T21:57:27.3060000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|88601|90216|10000|10000|||99.84|100.33|0.00|3.13|88601|90216|10000|10000|||99.84|100.33|0.00|3.13|00010641|0|1| +38|2023-10-06T21:57:27.3060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88601|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:27.3060000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:57:27.3510000-07:00|10FF0006|Wowobora Gogobora|0001063A|81809|81809|9600|10000|19||99.70|98.35|0.00|-2.99|1B00|0|0|01|0A8F|0|41E9F3B6|| +21|2023-10-06T21:57:27.3510000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|35D00000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|30812716|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|00010642|0|1| +21|2023-10-06T21:57:27.3510000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30812716|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||99.96|100.24|0.00|3.14|00010643|0|1| +21|2023-10-06T21:57:27.3510000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|00010644|0|1| +38|2023-10-06T21:57:27.3510000-07:00|40021748|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.57|100.82|0.00|3.13|0|0|0||||||| +26|2023-10-06T21:57:27.3510000-07:00|30|Well Fed|835.27|10FF0006|Wowobora Gogobora|40021748|Demi-Bahamut|2964|69928|81809| +26|2023-10-06T21:57:27.3510000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|40021748|Demi-Bahamut|00|69928|81809| +38|2023-10-06T21:57:27.3510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:27.3510000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T21:57:27.3510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:27.3510000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T21:57:26.9510000-07:00|Add|4002174E||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:57:26.9510000-07:00|4002174D|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||102.00|80.30|0.00|0.00| +03|2023-10-06T21:57:26.9510000-07:00|4002174E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||106.00|80.30|0.00|0.00| +261|2023-10-06T21:57:26.9510000-07:00|Add|4002174D||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:26.9510000-07:00|Change|4002174E||| +261|2023-10-06T21:57:26.9510000-07:00|Change|4002174D||| +261|2023-10-06T21:57:26.9510000-07:00|Change|4002174E||| +37|2023-10-06T21:57:27.3960000-07:00|40021585|Zeromus|0001063D|30803029||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:27.4410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30812716|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||99.56|97.56|0.00|-2.99|00010645|0|1| +37|2023-10-06T21:57:27.4860000-07:00|10FF0007|Kehabiqo Febiqo|0001063A|112856|129844|10000|10000|0||99.96|99.96|0.00|3.14|1501|0|0|01|01000A8F|0|41E8DF3B|| +21|2023-10-06T21:57:27.4860000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|344A0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|30812716|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8572|10000|||99.75|97.40|0.00|3.13|00010646|0|1| +37|2023-10-06T21:57:27.6200000-07:00|10FF0003|Gegehi Gehi|0001063A|73814|73814|5900|10000|0||100.02|100.11|-0.02|-3.14|2302|0|0|01|01000A8F|0|41E7CCCC|| +21|2023-10-06T21:57:27.6200000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|1A430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30803029|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5900|10000|||100.02|100.11|-0.02|-3.14|00010647|0|1| +24|2023-10-06T21:57:27.6650000-07:00|40021585|Zeromus|DoT|0|16F1|30803029|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8172|10000|||99.75|97.40|0.00|3.13| +36|2023-10-06T21:57:27.6650000-07:00|2B20|3| +38|2023-10-06T21:57:27.6650000-07:00|40021585|Zeromus|005A5A00|30797156|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +39|2023-10-06T21:57:27.7090000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|-0.73| +37|2023-10-06T21:57:27.7540000-07:00|10FF0004|Buhojaqe Zijaqe|0001063A|81541|81541|7800|10000|0||99.96|100.23|-0.02|-3.14|1C03|0|0|01|05000A8F|0|41E6BA5D|| +38|2023-10-06T21:57:27.7540000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.93|97.92|0.00|-1.12|0|0|0||||||| +03|2023-10-06T21:57:27.3790000-07:00|4002174F|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||110.00|80.30|0.00|-0.37| +26|2023-10-06T21:57:27.7540000-07:00|A8F|Searing Light|28.80|10FF0006|Wowobora Gogobora|4002164C|Ruby Carbuncle|00|77430|81809| +261|2023-10-06T21:57:27.3790000-07:00|Add|4002174F||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:27.3790000-07:00|Change|4002174F||| +261|2023-10-06T21:57:27.4760000-07:00|Change|4002174C||||||||| +37|2023-10-06T21:57:27.8870000-07:00|40021585|Zeromus|0001063F|30794710||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:27.8870000-07:00|10FF0001|Sesuga Sapisuga|0001063A|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|1304|0|0|01|02000A8F|0|41E5A5E2|| +37|2023-10-06T21:57:27.8870000-07:00|40021585|Zeromus|00010643|30794555||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:27.4760000-07:00|Change|40021747||||||||| +261|2023-10-06T21:57:27.4760000-07:00|Change|40021717||| +37|2023-10-06T21:57:27.9310000-07:00|40021585|Zeromus|0001063C|30743086||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:27.9310000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|88601|90216|10000|10000|||99.84|100.33|0.00|3.13|88601|90216|10000|10000|||99.84|100.33|0.00|3.13|00010648|0|1| +37|2023-10-06T21:57:27.9770000-07:00|40021585|Zeromus|00010645|30742934||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:27.5800000-07:00|Change|40021748||||||||||| +261|2023-10-06T21:57:27.5800000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:57:28.0220000-07:00|10FF0008|Kokosaze Lulusaze|0001063A|88601|90216|10000|10000|0||99.84|100.33|0.00|3.13|1F05|0|0|01|02000A8F|0|41E4978C|| +38|2023-10-06T21:57:28.0220000-07:00|40021742|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.61|102.13|0.00|3.13|0|0|0|||||||||| +26|2023-10-06T21:57:28.0220000-07:00|30|Well Fed|1426.02|10FF0008|Kokosaze Lulusaze|40021742|Automaton Queen|2964|85668|90216| +26|2023-10-06T21:57:28.0220000-07:00|31|Medicated|23.13|10FF0008|Kokosaze Lulusaze|40021742|Automaton Queen|296C|85668|90216| +26|2023-10-06T21:57:28.0220000-07:00|A8F|Searing Light|28.53|10FF0006|Wowobora Gogobora|40021742|Automaton Queen|00|85668|81809| +37|2023-10-06T21:57:28.0660000-07:00|40021585|Zeromus|00010640|30730120||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:28.0660000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30742934|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5900|10000|||100.02|100.11|-0.02|-3.14|00010649|0|1| +39|2023-10-06T21:57:28.1110000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8000|10000|||99.93|99.99|0.00|-3.13| +39|2023-10-06T21:57:28.1110000-07:00|10FF0003|Gegehi Gehi|73814|73814|6100|10000|||100.02|100.11|-0.02|-3.14| +21|2023-10-06T21:57:28.1110000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2E170000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|30742934|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|0001064A|0|1| +261|2023-10-06T21:57:27.7700000-07:00|Change|10FF0003||| +37|2023-10-06T21:57:28.1550000-07:00|10FF000B|Pusu Rosu|0001063A|79209|79209|8172|10000|0||99.75|97.40|0.00|3.13|1806|0|0|01|03000A8F|0|41E3851D|| +39|2023-10-06T21:57:28.1550000-07:00|10FF0008|Kokosaze Lulusaze|89503|90216|10000|10000|||99.84|100.33|0.00|3.13| +37|2023-10-06T21:57:28.1990000-07:00|40021585|Zeromus|00010647|30723397||||||100.00|80.10|0.00|0.00| +03|2023-10-06T21:57:27.7700000-07:00|40021750|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||114.00|80.30|0.00|0.00| +03|2023-10-06T21:57:27.7700000-07:00|40021752|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|80.30|0.00|0.00| +261|2023-10-06T21:57:27.7700000-07:00|Change|40021749||||||||| +261|2023-10-06T21:57:27.7700000-07:00|Add|40021750||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:27.7700000-07:00|Add|40021752||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:27.7700000-07:00|Change|4002174D||||||||| +261|2023-10-06T21:57:27.7700000-07:00|Change|40021750||| +261|2023-10-06T21:57:27.7700000-07:00|Change|40021752||| +261|2023-10-06T21:57:27.8860000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:57:27.8860000-07:00|Change|40021747||||||||| +37|2023-10-06T21:57:28.2900000-07:00|10FF000A|Dukaro Nezikaro|0001063A|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|1E07|0|0|02|03000A8F|0|41E272AE|||||| +39|2023-10-06T21:57:28.2900000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9800|10000|||99.47|94.31|0.00|1.86| +37|2023-10-06T21:57:28.3340000-07:00|10FF000A|Dukaro Nezikaro|00010644|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|1E00|0|0|01|040001F1|0|41700000|| +261|2023-10-06T21:57:27.9990000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:57:28.3340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30723397|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|0001064B|0|1| +38|2023-10-06T21:57:28.3340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:57:28.3800000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|752003|7CF80000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30723397|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||99.47|94.31|0.00|1.86|0001064C|0|1| +261|2023-10-06T21:57:27.9990000-07:00|Change|4002174A||||||||| +37|2023-10-06T21:57:28.4250000-07:00|40021585|Zeromus|0001063E|30687645||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:27.9990000-07:00|Change|4002174E||||||||| +21|2023-10-06T21:57:28.4250000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73814|73814|6100|10000|||100.02|100.11|-0.02|-3.14|73814|73814|6100|10000|||100.02|100.11|-0.02|-3.14|0001064D|0|1| +38|2023-10-06T21:57:28.4250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6100|10000|0||100.02|100.11|-0.02|-3.14|0|0|0|||||||||||||||| +26|2023-10-06T21:57:28.4250000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73814|73814| +37|2023-10-06T21:57:28.5130000-07:00|40021585|Zeromus|0001064A|30675846||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:28.5130000-07:00|40021742|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|257F0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30687645|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.61|102.13|0.00|3.13|0001064E|0|1| +37|2023-10-06T21:57:28.6020000-07:00|40021585|Zeromus|00010649|30675790||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:28.6020000-07:00|10FF0003|Gegehi Gehi|00010649|73814|73814|6100|10000|0||100.02|100.11|-0.02|-3.14|2300|0|0|01|040007B3|06|C1700000|| +37|2023-10-06T21:57:28.6460000-07:00|40021585|Zeromus|00010642|30662014||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:28.2190000-07:00|Change|4002174B||||||||| +20|2023-10-06T21:57:28.7340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.93|99.78|0.00|-3.12| +37|2023-10-06T21:57:28.7790000-07:00|40021585|Zeromus|00010646|30648628||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:28.7790000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|97.40|0.00|3.13| +37|2023-10-06T21:57:28.8230000-07:00|10FF0003|Gegehi Gehi|0001064D|73814|73814|6100|10000|0||100.02|100.11|-0.02|-3.14|2300|0|0|01|040007B3|06|41700000|| +39|2023-10-06T21:57:28.8230000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +21|2023-10-06T21:57:28.8240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30648628|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|0001064F|0|1| +38|2023-10-06T21:57:28.8240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6100|10000|0||100.02|100.11|-0.02|-3.14|0|0|0|||||||||||||||| +31|2023-10-06T21:57:28.8240000-07:00|10FF0001||||| +37|2023-10-06T21:57:28.8680000-07:00|40021585|Zeromus|0001064B|30645796||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:29.0020000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|41400000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|112856|129844|10000|10000|||99.96|99.96|0.00|3.14|30645796|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010650|0|1| +37|2023-10-06T21:57:29.0480000-07:00|40021585|Zeromus|0001064C|30613804||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:29.0480000-07:00|40021748|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|13160000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|30645796|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07|00010651|0|1| +24|2023-10-06T21:57:29.0480000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|950|89503|90216|10000|10000|||99.84|100.33|0.00|3.13|10FF0008|Kokosaze Lulusaze|0|89503|90216|10000|10000|||99.84|100.33|0.00|3.13| +24|2023-10-06T21:57:29.0480000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F1A|81541|81541|8000|10000|||99.93|99.78|0.00|-3.13|10FF0006|Wowobora Gogobora|0|81809|81809|9500|10000|||98.89|96.01|0.00|-0.82| +38|2023-10-06T21:57:29.0480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:29.0480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8000|10000|0||99.93|99.78|0.00|-3.13|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:28.6210000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:57:29.1360000-07:00|10FF0006|Wowobora Gogobora|20FDD72|item_fdd72|10FF0006|Wowobora Gogobora|6E00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9500|10000|||98.89|96.01|0.00|-0.82|81809|81809|9500|10000|||98.89|96.01|0.00|-0.82|00010652|0|1| +24|2023-10-06T21:57:29.1800000-07:00|10FF0006|Wowobora Gogobora|HoT|0|98D|81809|81809|9500|10000|||98.83|96.19|0.00|-0.45|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +38|2023-10-06T21:57:29.1800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|19||98.83|96.19|0.00|-0.45|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:29.2700000-07:00|40021585|Zeromus|0001064E|30604205||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:29.3140000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|23C30000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|30613804|40478540|10000|10000|||100.00|80.10|0.00|0.00|112856|129844|10000|10000|||99.96|99.96|0.00|3.14|00010653|0|1| +26|2023-10-06T21:57:29.3140000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:57:29.3140000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|23FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30613804|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|00010654|0|1| +261|2023-10-06T21:57:28.8570000-07:00|Change|10FF000B||||||||||||| +261|2023-10-06T21:57:28.9690000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:57:29.3590000-07:00|40021585|Zeromus|0001064F|30602378||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:29.3590000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14| +21|2023-10-06T21:57:29.3590000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B4B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30604205|40478540|10000|10000|||100.00|80.10|0.00|0.00|112856|129844|10000|10000|||99.96|99.96|0.00|3.14|00010655|0|1| +21|2023-10-06T21:57:29.3590000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|35570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30604205|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6100|10000|||100.02|100.11|-0.02|-3.14|00010656|0|1| +39|2023-10-06T21:57:29.4040000-07:00|40021742|Automaton Queen|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07| +24|2023-10-06T21:57:29.4040000-07:00|10FF0003|Gegehi Gehi|HoT|0|973|73814|73814|6100|10000|||100.02|100.11|-0.02|-3.14|10FF0003|Gegehi Gehi|0|73814|73814|6100|10000|||100.02|100.11|-0.02|-3.14| +38|2023-10-06T21:57:29.4040000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6100|10000|0||100.02|100.11|-0.02|-3.14|0|0|0|||||||||||||||| +39|2023-10-06T21:57:29.4490000-07:00|10FF0007|Kehabiqo Febiqo|114154|129844|10000|10000|||99.96|99.96|0.00|3.14| +24|2023-10-06T21:57:29.4490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|98F|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|10FF000A|Dukaro Nezikaro|0|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14| +21|2023-10-06T21:57:29.4490000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|35D60000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|30604205|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8172|10000|||99.75|97.40|0.00|3.13|00010657|0|1| +38|2023-10-06T21:57:29.4490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:57:29.4930000-07:00|10FF000B|Pusu Rosu|HoT|0|A05|79209|79209|7772|10000|||99.75|97.40|0.00|3.13|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|2.94| +38|2023-10-06T21:57:29.4930000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7772|10000|0||99.75|97.40|0.00|3.13|0|0|0|||||||||||||||| +24|2023-10-06T21:57:29.5820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A0F|114154|129844|10000|10000|||99.96|99.96|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|114154|129844|10000|10000|||99.96|99.96|0.00|3.14| +38|2023-10-06T21:57:29.5820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116729|129844|10000|10000|0||99.96|99.96|0.00|3.14|0|0|0||||||||||||||||||| +24|2023-10-06T21:57:29.6710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9DF|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +21|2023-10-06T21:57:29.6710000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|756003|6A6F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|30602378|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8000|10000|||99.93|99.78|0.00|3.14|00010658|0|1| +38|2023-10-06T21:57:29.6710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:29.2770000-07:00|Change|40021717||| +37|2023-10-06T21:57:29.8050000-07:00|10FF0007|Kehabiqo Febiqo|00010650|100025||||||99.96|99.96|0.00|3.14| +261|2023-10-06T21:57:29.2770000-07:00|Remove|40021717| +04|2023-10-06T21:57:29.4030000-07:00|40021717|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.66|97.40|0.00|0.10| +21|2023-10-06T21:57:29.8050000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|C370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30602378|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|00010659|0|1| +21|2023-10-06T21:57:29.8500000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|1B0C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30602378|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|0001065A|0|1| +21|2023-10-06T21:57:29.8500000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35716003|3F690000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|30602378|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|0001065B|0|1| +37|2023-10-06T21:57:29.8940000-07:00|40021585|Zeromus|00010655|30599487||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:29.9390000-07:00|40021585|Zeromus|00010653|30590332||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:29.9390000-07:00|40021585|Zeromus|00010654|30581122||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:29.9390000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|149A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|100025|129844|10000|10000|||99.96|99.96|0.00|3.14|73956|77430|10000|10000|||99.93|97.92|0.00|1.55|0001065C|0|1| +37|2023-10-06T21:57:30.0290000-07:00|10FF0006|Wowobora Gogobora|00010652|81809|81809|9500|10000|19||98.82|96.25|0.00|2.15|1B00|0|0|01|04000031|296E|41F00000|| +26|2023-10-06T21:57:30.0290000-07:00|31|Medicated|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|296E|81809|81809| +38|2023-10-06T21:57:30.0290000-07:00|40021748|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.55|100.82|0.00|-3.07|0|0|0|||||||||| +26|2023-10-06T21:57:30.0290000-07:00|31|Medicated|29.95|10FF0006|Wowobora Gogobora|40021748|Demi-Bahamut|296E|69928|81809| +38|2023-10-06T21:57:30.0290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|19||98.82|96.25|0.00|2.15|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:30.0730000-07:00|40021585|Zeromus|00010651|30576236||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:30.0730000-07:00|40021742|Automaton Queen|4078|Arm Punch|40021585|Zeromus|732003|3C690000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30581122|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07|0001065D|0|1| +21|2023-10-06T21:57:30.0730000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7772|10000|||99.75|97.40|0.00|3.13|79209|79209|7772|10000|||99.75|97.40|0.00|3.13|0001065E|0|1| +261|2023-10-06T21:57:29.9200000-07:00|Change|10FF000B||||||||||||||| +39|2023-10-06T21:57:30.2080000-07:00|10FF000B|Pusu Rosu|79209|79209|8053|10000|||99.75|97.40|0.00|3.13| +21|2023-10-06T21:57:30.2520000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44712003|53250000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|30576236|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|0001065F|0|1| +261|2023-10-06T21:57:29.9200000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T21:57:30.4740000-07:00|40021585|Zeromus|0001065A|30569312||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:30.4740000-07:00|40021585|Zeromus|00010658|30542065||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:30.5180000-07:00|40021585|Zeromus|00010656|30528410||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:30.5190000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30576236|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|00010660|0|1| +37|2023-10-06T21:57:30.5640000-07:00|40021585|Zeromus|00010659|30525283||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:30.5640000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30576236|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||99.22|95.57|0.00|2.30|00010661|0|1| +21|2023-10-06T21:57:30.5640000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|00010662|0|1| +37|2023-10-06T21:57:30.6080000-07:00|40021585|Zeromus|0001065B|30509050||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:30.6530000-07:00|40021585|Zeromus|DoT|0|19F6|30525283|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8053|10000|||99.75|97.40|0.00|3.13| +36|2023-10-06T21:57:30.6540000-07:00|2BFC|3| +38|2023-10-06T21:57:30.6540000-07:00|40021585|Zeromus|005A5A00|30502404|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T21:57:30.6970000-07:00|10FF000B|Pusu Rosu|0001065E|79209|79209|8053|10000|0||99.75|97.40|0.00|3.13|1800|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T21:57:30.6970000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T21:57:30.6970000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|0.01| +37|2023-10-06T21:57:30.7420000-07:00|10FF0007|Kehabiqo Febiqo|0001065C|105299||||||99.96|99.96|0.00|3.14| +37|2023-10-06T21:57:30.7420000-07:00|40021585|Zeromus|00010657|30488622||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:30.7870000-07:00|40021585|Zeromus|0001065F|30467337||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:57:30.7870000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:57:30.7870000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2FC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30502404|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|00010663|0|1| +37|2023-10-06T21:57:30.8320000-07:00|40021585|Zeromus|0001065D|30451872||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:30.8320000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|754003|63020000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30467337|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||99.44|95.20|-0.02|2.17|00010664|0|1| +20|2023-10-06T21:57:30.8320000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|99.75|97.40|0.00|3.13| +261|2023-10-06T21:57:30.4410000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:57:30.9200000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|722003|6EA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30467337|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6100|10000|||100.02|100.11|-0.02|-3.14|00010665|0|1| +261|2023-10-06T21:57:30.4410000-07:00|Change|40021750||||||||| +261|2023-10-06T21:57:30.5370000-07:00|Change|400215A3||||||||| +261|2023-10-06T21:57:30.5370000-07:00|Change|400215A2||||||||| +37|2023-10-06T21:57:31.0530000-07:00|40021585|Zeromus|00010660|30449659||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:31.0990000-07:00|40021585|Zeromus|00010661|30449405||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:31.0990000-07:00|40021585|Zeromus|8B46|Visceral Whirl|40021585|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:31.0990000-07:00|400215A2|Zeromus|8B47|Visceral Whirl|400215A2|Zeromus|8.500|119.90|80.10|0.00|-0.79| +20|2023-10-06T21:57:31.0990000-07:00|400215A3|Zeromus|8B48|Visceral Whirl|400215A3|Zeromus|8.500|80.10|80.10|0.00|0.79| +39|2023-10-06T21:57:31.0990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7800|10000|||99.93|99.67|0.00|-3.11| +261|2023-10-06T21:57:30.6510000-07:00|Change|40021585||||||||||| +21|2023-10-06T21:57:31.0990000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|BCB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30451872|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|00010666|0|1| +31|2023-10-06T21:57:31.0990000-07:00|10FF0001||||| +261|2023-10-06T21:57:30.7610000-07:00|Change|4002174D||||||||| +39|2023-10-06T21:57:31.1420000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.84|100.33|0.00|3.13| +39|2023-10-06T21:57:31.1430000-07:00|10FF0003|Gegehi Gehi|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14| +20|2023-10-06T21:57:31.1430000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.93|99.66|0.00|-3.11| +21|2023-10-06T21:57:31.1430000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40021585|Zeromus|714003|14FD0000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|30449405|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|00010667|0|1| +38|2023-10-06T21:57:31.1430000-07:00|40021585|Zeromus|005A5A00|30449405|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T21:57:31.1430000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +37|2023-10-06T21:57:31.1870000-07:00|10FF0001|Sesuga Sapisuga|00010662|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|1300|0|0|01|0600004C|0|41A00000|| +26|2023-10-06T21:57:31.1870000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:57:30.7610000-07:00|Change|10FF0003||| +261|2023-10-06T21:57:30.7610000-07:00|Change|40021752||||||||| +261|2023-10-06T21:57:30.7610000-07:00|Change|40021749||||| +39|2023-10-06T21:57:31.2780000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9400|10000|||99.43|95.20|0.00|-2.65| +21|2023-10-06T21:57:31.2780000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|750003|2C0A0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|30449405|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|00010668|0|1| +38|2023-10-06T21:57:31.2780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:31.2780000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T21:57:31.2780000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:57:31.3210000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|23FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30449405|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|00010669|0|1| +261|2023-10-06T21:57:30.8730000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:57:30.9940000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:57:30.9940000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:57:31.4110000-07:00|40021585|Zeromus|00010663|30437179|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100027E|0|C1A00000|| +261|2023-10-06T21:57:30.9940000-07:00|Change|4002174E||||| +37|2023-10-06T21:57:31.4560000-07:00|40021585|Zeromus|00010664|30411833|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100027E|0|C1A00000|| +261|2023-10-06T21:57:30.9940000-07:00|Change|4002174A||||||| +21|2023-10-06T21:57:31.5000000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|36B10000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|30411833|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8053|10000|||99.75|97.40|0.00|3.13|0001066A|0|1| +21|2023-10-06T21:57:31.5440000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30411833|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066B|0|1| +261|2023-10-06T21:57:31.1990000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T21:57:31.1990000-07:00|Change|400215A2||||||||||||| +37|2023-10-06T21:57:31.6350000-07:00|40021585|Zeromus|00010666|30408814|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100027E|0|C1A00000|| +37|2023-10-06T21:57:31.6350000-07:00|10FF0001|Sesuga Sapisuga|00010666|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|1300|0|0|02|07000558|04|C1F00000|||||| +21|2023-10-06T21:57:31.6350000-07:00|40021742|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|27110000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30411833|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07|0001066C|0|1| +22|2023-10-06T21:57:31.6350000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066D|0|8| +22|2023-10-06T21:57:31.6350000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066D|1|8| +22|2023-10-06T21:57:31.6350000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7800|10000|||99.93|99.66|0.00|-3.14|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066D|2|8| +22|2023-10-06T21:57:31.6350000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066D|3|8| +22|2023-10-06T21:57:31.6350000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|105299|129844|10000|10000|||99.02|99.98|0.00|-3.13|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066D|4|8| +22|2023-10-06T21:57:31.6350000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066D|5|8| +22|2023-10-06T21:57:31.6350000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000B|Pusu Rosu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066D|6|8| +22|2023-10-06T21:57:31.6350000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9400|10000|||98.30|94.74|0.00|-2.12|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|0001066D|7|8| +261|2023-10-06T21:57:31.1990000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:57:31.6790000-07:00|40021585|Zeromus|00010667|30403441|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100027E|0|41A00000|| +38|2023-10-06T21:57:31.6790000-07:00|40021585|Zeromus|005A5A00|30403441|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T21:57:31.1990000-07:00|Change|4002174F||||||||| +261|2023-10-06T21:57:31.1990000-07:00|Change|4002174B||||| +21|2023-10-06T21:57:31.7690000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|41080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30408814|40478540|10000|10000|||100.00|80.10|0.00|0.00|105299|129844|10000|10000|||98.85|99.98|0.00|-3.13|0001066E|0|1| +39|2023-10-06T21:57:31.8120000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13| +37|2023-10-06T21:57:31.9030000-07:00|40021585|Zeromus|00010668|30392167||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:31.9030000-07:00|10FF0001|Sesuga Sapisuga|00010668|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|1300|0|0|02|07000558|04|41F00000|||||| +39|2023-10-06T21:57:31.9030000-07:00|40021748|Demi-Bahamut|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07| +21|2023-10-06T21:57:31.9030000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|754003|34B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30403441|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|0001066F|0|1| +38|2023-10-06T21:57:31.9030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.15|97.86|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:57:31.4820000-07:00|Change|40021750||||| +261|2023-10-06T21:57:31.4820000-07:00|Change|4002174C||||||| +261|2023-10-06T21:57:31.4820000-07:00|Change|40021747||||||| +37|2023-10-06T21:57:32.0800000-07:00|40021585|Zeromus|00010665|30363846||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:32.0800000-07:00|40021585|Zeromus|0001066B|30363810||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:32.0800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9BD|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||99.84|100.33|0.00|3.13| +24|2023-10-06T21:57:32.0800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|970|81541|81541|7800|10000|||99.93|99.66|0.00|3.14|10FF0006|Wowobora Gogobora|0|81809|81809|9400|10000|||97.40|94.10|0.00|-3.10| +21|2023-10-06T21:57:32.0800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|35CD0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|30392167|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||99.93|99.66|0.00|3.14|00010670|0|1| +38|2023-10-06T21:57:32.0800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.84|100.33|0.00|3.13|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:32.0800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7400|10000|0||99.93|99.66|0.00|3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:32.1240000-07:00|40021585|Zeromus|00010669|30354595||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:32.1690000-07:00|10FF0006|Wowobora Gogobora|HoT|0|96F|81809|81809|9400|10000|||97.40|94.10|0.00|-3.10|4002164C|Ruby Carbuncle|0|73956|77430|10000|10000|||99.93|97.92|0.00|2.81| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|46840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30392167|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|0|9| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|318A0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|1|9| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|30040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.15|97.86|0.00|-3.13|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|2|9| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|30F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7800|10000|||99.93|99.66|0.00|3.14|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|3|9| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|30250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|4|9| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|30AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|105299|129844|10000|10000|||98.47|99.99|0.00|3.06|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|5|9| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|32B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|6|9| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|31320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9400|10000|||97.40|94.10|0.00|-3.10|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|7|9| +22|2023-10-06T21:57:32.1690000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|200004|4D310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|79209|79209|7653|10000|||99.75|97.40|0.00|3.13|00010671|8|9| +38|2023-10-06T21:57:32.1690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|19||97.40|94.10|0.00|-3.10|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:31.7920000-07:00|Change|40021752||||| +261|2023-10-06T21:57:31.7920000-07:00|Change|4002174D||||| +261|2023-10-06T21:57:31.9050000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T21:57:32.2130000-07:00|40021748|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|17320000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|30354595|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07|00010672|0|1| +26|2023-10-06T21:57:32.2580000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:57:32.2580000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|41F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30354595|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|00010673|0|1| +37|2023-10-06T21:57:32.3010000-07:00|10FF0003|Gegehi Gehi|0001066D|73814|73814|6300|10000|0||100.02|100.11|-0.02|-3.14|2300|0|0|01|050004D7|0|41A00000|| +26|2023-10-06T21:57:32.3010000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T21:57:32.3450000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14| +39|2023-10-06T21:57:32.3900000-07:00|40021742|Automaton Queen|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07| +24|2023-10-06T21:57:32.3900000-07:00|10FF0003|Gegehi Gehi|HoT|0|99C|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|10FF0003|Gegehi Gehi|0|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14| +38|2023-10-06T21:57:32.3900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||100.02|100.11|-0.02|-3.14|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:32.4360000-07:00|40021585|Zeromus|0001066E|30337947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:32.4360000-07:00|40021585|Zeromus|0001066C|30327946||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:32.4360000-07:00|10FF0008|Kokosaze Lulusaze|0001066D|90216|90216|10000|10000|0||99.84|100.33|0.00|3.13|1F01|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:57:32.4360000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +24|2023-10-06T21:57:32.4360000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|9C7|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|10FF000A|Dukaro Nezikaro|0|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14| +21|2023-10-06T21:57:32.4360000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30354595|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7400|10000|||99.93|99.66|0.00|3.14|00010674|0|1| +21|2023-10-06T21:57:32.4360000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|750003|30440000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|30354595|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6300|10000|||100.02|100.11|-0.02|-3.14|00010675|0|1| +38|2023-10-06T21:57:32.4360000-07:00|40021742|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|102.13|0.00|-3.07|0|0|0||||||||||||| +26|2023-10-06T21:57:32.4360000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40021742|Automaton Queen|00|85668|73814| +38|2023-10-06T21:57:32.4360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||100.02|100.11|-0.02|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:32.4360000-07:00|7B3|Manafication|11.34|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73814|73814| +38|2023-10-06T21:57:32.4360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:57:32.4790000-07:00|10FF0007|Kehabiqo Febiqo|106597|129844|10000|10000|||98.41|99.99|0.00|3.06| +24|2023-10-06T21:57:32.4790000-07:00|10FF000B|Pusu Rosu|HoT|0|F6C|79209|79209|7653|10000|||98.76|97.42|0.00|-1.96|10FF000B|Pusu Rosu|0|79209|79209|7653|10000|||98.76|97.42|0.00|-1.96| +21|2023-10-06T21:57:32.4790000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|AF40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30354595|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|00010676|0|1| +21|2023-10-06T21:57:32.4790000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|710003|5B260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30354595|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.43|97.61|0.00|3.09|00010677|0|1| +38|2023-10-06T21:57:32.4790000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8203|10000|0||98.76|97.42|0.00|-1.96|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:32.5690000-07:00|10FF0004|Buhojaqe Zijaqe|0001066D|81541|81541|7400|10000|0||99.93|99.66|0.00|3.14|1C02|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:57:32.5690000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:57:32.5690000-07:00|40021585|Zeromus|0001066F|30314455||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:32.5690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9FE|105299|129844|10000|10000|||98.41|99.99|0.00|3.06|10FF0007|Kehabiqo Febiqo|0|105299|129844|10000|10000|||98.41|99.99|0.00|3.06| +38|2023-10-06T21:57:32.5690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109155|129844|10000|10000|0||98.41|99.99|0.00|3.06|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:32.5690000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.93|97.92|0.00|3.14|0|0|0|||||||||| +26|2023-10-06T21:57:32.5690000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002164C|Ruby Carbuncle|00|77430|73814| +21|2023-10-06T21:57:32.6140000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|109155|129844|10000|10000|||98.41|99.99|0.00|3.06|109155|129844|10000|10000|||98.41|99.99|0.00|3.06|00010678|0|1| +38|2023-10-06T21:57:32.6140000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109155|129844|10000|10000|0||98.41|99.99|0.00|3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:32.6140000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T21:57:32.6140000-07:00|A75|Surging Tempest|28.04|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:57:32.6140000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T21:57:32.6140000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +24|2023-10-06T21:57:32.6570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|968|129071|129071|10000|10000|||98.79|97.58|0.00|3.09|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||98.79|97.58|0.00|3.09| +38|2023-10-06T21:57:32.6570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||98.79|97.58|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:57:32.2330000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:57:32.7020000-07:00|10FF000A|Dukaro Nezikaro|0001066D|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|1E03|0|0|01|07000511|0|41A00000|| +26|2023-10-06T21:57:32.7020000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|83502|73814| +21|2023-10-06T21:57:32.7020000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40021585|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30314455|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7400|10000|||99.93|99.66|0.00|3.14|00010679|0|1| +21|2023-10-06T21:57:32.7020000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|96D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30314455|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|0001067A|0|1| +21|2023-10-06T21:57:32.7460000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|13C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30314455|40478540|10000|10000|||100.00|80.10|0.00|0.00|109155|129844|10000|10000|||98.41|99.99|0.00|3.06|0001067B|0|1| +37|2023-10-06T21:57:32.7920000-07:00|40021585|Zeromus|0001066A|30300454||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:32.7920000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|19410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30314455|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.84|100.33|0.00|3.13|0001067C|0|1| +21|2023-10-06T21:57:32.7920000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|1C1C0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|30314455|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.58|0.00|-3.14|0001067D|0|1| +37|2023-10-06T21:57:32.8360000-07:00|10FF0007|Kehabiqo Febiqo|0001066D|109155|129844|10000|10000|0||98.41|99.99|0.00|3.06|1504|0|0|04|02000499|03|C1700000|||||||||||||| +26|2023-10-06T21:57:32.8360000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +37|2023-10-06T21:57:32.8360000-07:00|40021585|Zeromus|00010671|30282402||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:32.8800000-07:00|40021585|Zeromus|00010670|30268629||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:32.9240000-07:00|40021585|Zeromus|00010673|30251741||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:32.9690000-07:00|40021585|Zeromus|00010674|30251568||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:32.9690000-07:00|10FF0001|Sesuga Sapisuga|0001066D|129071|129071|10000|10000|0||97.73|96.94|0.00|-3.10|1305|0|0|01|09000511|0|41A00000|| +26|2023-10-06T21:57:32.9690000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +37|2023-10-06T21:57:32.9690000-07:00|10FF000B|Pusu Rosu|00010671|79209|79209|8703|10000|0||97.87|96.49|0.00|-2.10|1801|0|0|0| +37|2023-10-06T21:57:33.0140000-07:00|40021585|Zeromus|00010677|30228234||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:33.1030000-07:00|10FF000B|Pusu Rosu|0001066D|79209|79209|8703|10000|0||96.84|95.61|0.00|-2.17|1806|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:57:33.1030000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|79209|73814| +37|2023-10-06T21:57:33.1030000-07:00|40021585|Zeromus|00010675|30215878||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:32.7540000-07:00|Change|4002174A||||||||| +37|2023-10-06T21:57:33.1920000-07:00|40021585|Zeromus|0001067D|30208682||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:33.1930000-07:00|40021742|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|330F0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30215878|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07|0001067E|0|1| +38|2023-10-06T21:57:33.1930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|19||97.82|97.07|0.00|0.38|0|0|0|||||||||||||||| +30|2023-10-06T21:57:33.1930000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T21:57:33.2370000-07:00|40021585|Zeromus|00010672|30202744||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:33.2370000-07:00|40021585|Zeromus|00010676|30199940||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:33.2370000-07:00|10FF0006|Wowobora Gogobora|0001066D|81809|81809|9400|10000|19||97.82|97.07|0.00|0.38|1B07|0|0|01|05000511|0|41A00000|| +26|2023-10-06T21:57:33.2370000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +37|2023-10-06T21:57:33.2370000-07:00|40021585|Zeromus|0001067A|30197527||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:33.2370000-07:00|10FF000B|Pusu Rosu|79209|79209|8984|10000|||96.21|95.08|0.00|-2.19| +38|2023-10-06T21:57:33.2370000-07:00|40021748|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.55|100.82|0.00|-3.07|0|0|0||||||||||||| +26|2023-10-06T21:57:33.2370000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40021748|Demi-Bahamut|00|69928|73814| +261|2023-10-06T21:57:32.8710000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:57:33.2810000-07:00|40021585|Zeromus|0001067B|30192464||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:33.2810000-07:00|10FF0007|Kehabiqo Febiqo|0001067B|109155|129844|10000|10000|0||98.20|99.76|0.00|-2.96|1500|0|0|03|02000499|03|C1700000|||||||||| +21|2023-10-06T21:57:33.2810000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|714003|18C40000|134A0E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|30215878|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||96.23|95.70|0.00|-3.02|0001067F|0|1| +38|2023-10-06T21:57:33.3250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109155|129844|10000|10000|0||97.63|99.25|0.00|-2.93|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:33.3250000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +261|2023-10-06T21:57:32.8710000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T21:57:33.3710000-07:00|10FF0007|Kehabiqo Febiqo|00010678|109155|129844|10000|10000|0||97.63|99.25|0.00|-2.93|1500|0|0|03|02000499|03|41700000|||||||||| +21|2023-10-06T21:57:33.3710000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|5BFF0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|30192464|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||97.87|97.32|-0.01|0.38|00010680|0|1| +21|2023-10-06T21:57:33.3710000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|10600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30192464|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||95.72|95.30|0.00|-3.00|00010681|0|1| +38|2023-10-06T21:57:33.3710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109155|129844|10000|10000|0||97.63|99.25|0.00|-2.93|0|0|0|||||||||||||||||||||||||||| +31|2023-10-06T21:57:33.3710000-07:00|10FF0001||||| +261|2023-10-06T21:57:32.9880000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:33.4140000-07:00|40021585|Zeromus|0001067C|30185999||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:33.4600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.58|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:33.4600000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T21:57:33.5040000-07:00|40021585|Zeromus|00010679|30185999|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004C5|0|41700000|| +26|2023-10-06T21:57:33.5040000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +37|2023-10-06T21:57:33.5040000-07:00|10FF0007|Kehabiqo Febiqo|00010671|121614||||||96.57|98.30|0.00|-2.89| +21|2023-10-06T21:57:33.5480000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|153C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|109155|129844|10000|10000|||96.57|98.30|0.00|-2.89|73956|77430|10000|10000|||99.93|97.92|0.00|-2.75|00010682|0|1| +38|2023-10-06T21:57:33.5920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||94.52|93.95|0.00|-2.90|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:57:33.5920000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +261|2023-10-06T21:57:33.2220000-07:00|Change|4002174C||||||||| +39|2023-10-06T21:57:33.6820000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|-2.47| +24|2023-10-06T21:57:33.6820000-07:00|40021585|Zeromus|DoT|0|1F57|30185999|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|7400|10000|||99.94|99.49|0.00|2.89| +36|2023-10-06T21:57:33.6820000-07:00|2CD8|3| +38|2023-10-06T21:57:33.6820000-07:00|40021585|Zeromus|005A5A00|30177976|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T21:57:33.3120000-07:00|Change|40021747||||||||| +26|2023-10-06T21:57:33.7270000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:57:33.7270000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|33020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30177976|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.78|100.34|0.00|-2.53|00010683|0|1| +21|2023-10-06T21:57:33.7270000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30177976|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||97.73|96.88|0.00|3.09|00010684|0|1| +38|2023-10-06T21:57:33.7270000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.78|100.34|0.00|-2.53|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:33.7270000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T21:57:33.8600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||98.93|100.17|0.00|-3.05|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:33.8600000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +261|2023-10-06T21:57:33.4090000-07:00|Change|4002174D||||||||| +37|2023-10-06T21:57:33.9040000-07:00|40021585|Zeromus|00010681|30173784||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:33.9490000-07:00|40021585|Zeromus|0001067E|30160713||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:33.9490000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|2D250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30173784|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.01|101.55|0.00|-3.01|00010685|0|1| +37|2023-10-06T21:57:33.9950000-07:00|40021585|Zeromus|00010680|30137162||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:57:33.9950000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:57:33.9950000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|756003|83FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30173784|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||97.30|95.41|0.00|-3.00|00010686|0|1| +21|2023-10-06T21:57:33.9950000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|712003|6D340000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|30173784|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||93.96|92.13|0.00|-2.73|00010687|0|1| +21|2023-10-06T21:57:33.9950000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37754003|4B310000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|30173784|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6300|10000|||98.83|100.13|0.00|-3.05|00010688|0|1| +38|2023-10-06T21:57:33.9950000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||98.83|100.13|0.00|-3.05|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:33.9950000-07:00|7B3|Manafication|9.78|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73814|73814| +38|2023-10-06T21:57:33.9950000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8984|10000|0||94.49|90.86|0.00|-2.91|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:33.9950000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +261|2023-10-06T21:57:33.7030000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:33.7030000-07:00|Change|10FF000B||||||||| +39|2023-10-06T21:57:34.0820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7600|10000|||101.64|98.09|0.00|2.41| +39|2023-10-06T21:57:34.1270000-07:00|10FF0003|Gegehi Gehi|73814|73814|6500|10000|||97.80|99.27|0.00|3.00| +38|2023-10-06T21:57:34.1270000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7600|10000|0||101.64|98.09|0.00|2.41|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:34.1270000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +39|2023-10-06T21:57:34.1720000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.68|100.36|0.00|3.13| +261|2023-10-06T21:57:33.7030000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:57:33.8130000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:57:34.2170000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|28AD0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|30137162|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7600|10000|||101.23|97.79|0.00|2.70|00010689|0|1| +37|2023-10-06T21:57:34.2620000-07:00|40021585|Zeromus|00010684|30136993||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:34.2620000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|9A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30137162|40478540|10000|10000|||100.00|80.10|0.00|0.00|121614|129844|10000|10000|||95.06|94.10|0.00|-2.77|0001068A|0|1| +38|2023-10-06T21:57:34.2620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121614|129844|10000|10000|0||95.06|94.10|0.00|-2.77|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:34.2620000-07:00|499|Inner Release|14.06|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +37|2023-10-06T21:57:34.3060000-07:00|40021585|Zeromus|0001067F|30130653|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T21:57:34.3060000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +39|2023-10-06T21:57:34.3060000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9300|10000|||96.00|93.88|0.00|-2.75| +21|2023-10-06T21:57:34.3060000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|726003|32280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30137162|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.16|100.38|0.00|-2.90|0001068B|0|1| +261|2023-10-06T21:57:33.9240000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:33.9240000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:57:33.9240000-07:00|Change|4002174F||||||||| +37|2023-10-06T21:57:34.3500000-07:00|10FF0007|Kehabiqo Febiqo|00010682|127050||||||94.80|93.50|0.00|2.76| +37|2023-10-06T21:57:34.3500000-07:00|40021585|Zeromus|00010683|30117595||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:34.3500000-07:00|40021585|Zeromus|00010687|30089639||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:34.5740000-07:00|40021585|Zeromus|00010685|30078082||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:34.6180000-07:00|40021585|Zeromus|00010688|30058833||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:34.7520000-07:00|40021742|Automaton Queen|4078|Arm Punch|40021585|Zeromus|736003|577B0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|30078082|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07|0001068C|0|1| +261|2023-10-06T21:57:34.3670000-07:00|Change|40021585||||| +39|2023-10-06T21:57:34.7960000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||90.94|88.16|0.00|-2.96| +261|2023-10-06T21:57:34.4660000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:57:34.4660000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:57:34.4660000-07:00|Change|4002174A||||||||| +37|2023-10-06T21:57:34.8860000-07:00|40021585|Zeromus|0001068A|30019262||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:34.8860000-07:00|40021748|Demi-Bahamut|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07| +21|2023-10-06T21:57:34.8860000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|CDD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30058833|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.86|97.28|0.00|-2.35|0001068D|0|1| +37|2023-10-06T21:57:34.9300000-07:00|40021585|Zeromus|00010686|29985472||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:34.9300000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|30270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|30058833|40478540|10000|10000|||100.00|80.10|0.00|0.00|127050|129844|10000|10000|||93.20|91.01|-0.02|-3.01|0001068E|0|1| +261|2023-10-06T21:57:34.5670000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:57:34.5670000-07:00|Change|10FF0001||||||||| +20|2023-10-06T21:57:34.9750000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|90.76|85.98|0.00|-2.61| +21|2023-10-06T21:57:35.0200000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|754003|535E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29985472|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||93.93|89.89|0.00|-2.67|0001068F|0|1| +21|2023-10-06T21:57:35.0200000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|754003|AB630000|4|25898000|0|0|0|0|0|0|0|0|0|0|0|0|29985472|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||90.21|87.19|0.00|-3.10|00010690|0|1| +26|2023-10-06T21:57:35.0200000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:57:35.0200000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|122F0000|104|6CB8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|29985472|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7200|10000|||95.79|95.79|0.00|-2.10|00010691|0|1| +21|2023-10-06T21:57:35.0200000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29985472|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6500|10000|||94.90|94.54|0.00|-2.56|00010692|0|1| +21|2023-10-06T21:57:35.0200000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32716003|52FC0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|29985472|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.34|96.77|0.00|-2.34|00010693|0|1| +38|2023-10-06T21:57:35.0200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9300|10000|19||93.93|89.89|0.00|-2.67|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:35.0200000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +38|2023-10-06T21:57:35.0200000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||90.21|87.19|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:57:35.0200000-07:00|558|Requiescat|26.84|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T21:57:35.0200000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T21:57:35.0200000-07:00|10FF0001||||| +37|2023-10-06T21:57:35.1090000-07:00|40021585|Zeromus|0001068B|29972632||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:35.1530000-07:00|40021585|Zeromus|00010689|29962219||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:35.1530000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|16BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29985472|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.61|99.46|0.00|-2.92|00010694|0|1| +261|2023-10-06T21:57:34.8020000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T21:57:34.8020000-07:00|Change|40021752||||||||| +261|2023-10-06T21:57:34.8020000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:57:35.1970000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|2AE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29962219|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.16|98.93|0.00|-2.84|00010695|0|1| +38|2023-10-06T21:57:35.1970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||94.16|98.93|0.00|-2.84|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:35.1970000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +261|2023-10-06T21:57:34.9200000-07:00|Change|4002174C||||||||| +39|2023-10-06T21:57:35.3310000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||93.96|94.94|0.00|-2.91| +21|2023-10-06T21:57:35.3750000-07:00|40021748|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|752003|26360000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|29962219|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07|00010696|0|1| +38|2023-10-06T21:57:35.3750000-07:00|40021742|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|102.13|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T21:57:35.3750000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|40021742|Automaton Queen|01|85668|40478540| +37|2023-10-06T21:57:35.4200000-07:00|40021585|Zeromus|0001068D|29958926||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:35.4200000-07:00|40021585|Zeromus|00010693|29937682||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:35.4200000-07:00|40021742|Automaton Queen|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07| +261|2023-10-06T21:57:35.0370000-07:00|Change|40021747||||||||| +39|2023-10-06T21:57:35.4640000-07:00|10FF0007|Kehabiqo Febiqo|128348|129844|10000|10000|||90.38|88.81|0.00|2.95| +38|2023-10-06T21:57:35.4640000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9534|10000|0||90.15|85.58|0.00|2.29|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:35.5090000-07:00|40021585|Zeromus|0001068C|29915287||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:35.5090000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A750003|535A0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|29937682|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6500|10000|||93.40|92.28|0.00|-2.54|00010697|0|1| +38|2023-10-06T21:57:35.5090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6500|10000|0||93.40|92.28|0.00|-2.54|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:35.5090000-07:00|7B3|Manafication|8.27|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73814|73814| +37|2023-10-06T21:57:35.5540000-07:00|40021585|Zeromus|0001068E|29902960||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:35.5540000-07:00|40021585|Zeromus|00010692|29902921||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:35.5970000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29915287|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7200|10000|||94.36|93.20|0.00|3.07|00010698|0|1| +261|2023-10-06T21:57:35.1530000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:57:35.1530000-07:00|Change|4002174D||||||||| +261|2023-10-06T21:57:35.2680000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:57:35.2680000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:57:35.6420000-07:00|40021585|Zeromus|00010690|29859046||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:35.6420000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|12EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29915287|40478540|10000|10000|||100.00|80.10|0.00|0.00|128348|129844|10000|10000|||89.99|88.42|0.00|3.03|00010699|0|1| +21|2023-10-06T21:57:35.6420000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|F6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29915287|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||90.18|86.53|0.00|-3.11|0001069A|0|1| +21|2023-10-06T21:57:35.6420000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|38D60000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|29915287|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9534|10000|||90.08|85.53|-0.01|2.09|0001069B|0|1| +31|2023-10-06T21:57:35.6420000-07:00|10FF0001||||| +261|2023-10-06T21:57:35.3670000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:57:35.7300000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|150E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29859046|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||90.18|86.53|0.00|-3.11|0001069C|0|1| +261|2023-10-06T21:57:35.3670000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:57:35.8200000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||92.57|95.41|-0.02|-2.98|90216|90216|10000|10000|||92.57|95.41|-0.02|-2.98|0001069D|0|1| +21|2023-10-06T21:57:35.8200000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|754003|6E9E0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|29859046|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9300|10000|||92.32|88.65|0.00|-2.93|0001069E|0|1| +38|2023-10-06T21:57:35.8200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||92.57|95.41|-0.02|-2.98|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:35.8200000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T21:57:35.8640000-07:00|40021585|Zeromus|00010695|29848070||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:35.8640000-07:00|10FF0008|Kokosaze Lulusaze|00010695|90216|90216|10000|10000|0||92.29|94.68|0.00|-2.79|1F00|0|0|01|03000353|0|C0A00000|| +37|2023-10-06T21:57:35.9080000-07:00|40021585|Zeromus|00010694|29842251||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:35.9080000-07:00|10FF0008|Kokosaze Lulusaze|00010694|90216|90216|10000|10000|0||92.29|94.68|0.00|-2.79|1F00|0|0|01|03000353|0|C0A00000|| +261|2023-10-06T21:57:35.5540000-07:00|Change|40021749||||||||| +37|2023-10-06T21:57:35.9520000-07:00|40021585|Zeromus|0001068F|29820909||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:35.9980000-07:00|40021585|Zeromus|005A5A00|29820909|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:57:35.9980000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +261|2023-10-06T21:57:35.5540000-07:00|Change|4002174F||||||||| +261|2023-10-06T21:57:35.6480000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:57:36.0870000-07:00|40021585|Zeromus|00010691|29816254||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:36.1320000-07:00|40021585|Zeromus|00010698|29816077||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:36.1320000-07:00|40021585|Zeromus|00010697|29794739||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:36.1320000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|140E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29820909|40478540|10000|10000|||100.00|80.10|0.00|0.00|128348|129844|10000|10000|||89.30|87.76|0.00|2.18|0001069F|0|1| +37|2023-10-06T21:57:36.1760000-07:00|40021585|Zeromus|0001069A|29790789||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:36.2210000-07:00|10FF000B|Pusu Rosu|79209|79209|9415|10000|||90.07|85.53|0.00|2.07| +261|2023-10-06T21:57:35.7680000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T21:57:36.2660000-07:00|40021585|Zeromus|00010699|29785942||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:36.3090000-07:00|40021585|Zeromus|0001069C|29780552||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:36.3090000-07:00|40021742|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|730003|71E40000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|29790789|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07|000106A0|0|1| +21|2023-10-06T21:57:36.3540000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19712003|50880000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|29780552|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||90.82|89.29|0.00|-2.67|000106A1|0|1| +38|2023-10-06T21:57:36.3540000-07:00|40021585|Zeromus|005A5A00|29780552|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:57:36.3540000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T21:57:36.3540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.82|89.29|0.00|-2.67|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:36.3540000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:57:36.4000000-07:00|40021585|Zeromus|00010696|29770770|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +261|2023-10-06T21:57:36.0070000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:57:36.0070000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:57:36.4440000-07:00|10FF0008|Kokosaze Lulusaze|0001069D|90216|90216|10000|10000|0||91.00|91.37|0.00|-2.77|1F00|0|0|01|03000353|0|40A00000|| +37|2023-10-06T21:57:36.4440000-07:00|40021585|Zeromus|0001069E|29742452|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +38|2023-10-06T21:57:36.4440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|19||90.08|87.42|0.00|2.98|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:36.4440000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T21:57:36.4440000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|754003|30A20000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|29770770|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||90.08|87.42|0.00|2.98|000106A2|0|1| +38|2023-10-06T21:57:36.4440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||91.00|91.37|0.00|-2.77|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:57:36.4440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|19||90.08|87.42|0.00|2.98|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:36.4440000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:57:36.1180000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:57:36.1180000-07:00|Change|4002174A||||||||| +261|2023-10-06T21:57:36.1180000-07:00|Change|4002174A||||||||| +20|2023-10-06T21:57:36.6220000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|90.42|87.79|-0.02|-2.55| +261|2023-10-06T21:57:36.2300000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:36.6670000-07:00|40021585|Zeromus|0001069F|29737318|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +24|2023-10-06T21:57:36.6670000-07:00|40021585|Zeromus|DoT|0|1864|29742452|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||90.39|84.59|0.00|2.91| +21|2023-10-06T21:57:36.6670000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|726003|FF530000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|29742452|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||90.45|90.02|0.00|-2.77|000106A3|0|1| +36|2023-10-06T21:57:36.6670000-07:00|2DB4|3| +38|2023-10-06T21:57:36.6670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||90.45|90.02|0.00|-2.77|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:36.6670000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:57:36.6670000-07:00|40021585|Zeromus|005A5A00|29731074|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T21:57:36.7120000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +21|2023-10-06T21:57:36.7120000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|CB8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29742452|40478540|10000|10000|||100.00|80.10|0.00|0.00|128348|129844|10000|10000|||89.47|86.74|0.00|2.46|000106A4|0|1| +38|2023-10-06T21:57:36.7120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128348|129844|10000|10000|0||89.47|86.74|0.00|2.46|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:36.7120000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:57:36.4210000-07:00|Change|4002174B||||||||| +21|2023-10-06T21:57:36.8440000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21770000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|128348|129844|10000|10000|||89.48|86.42|-0.02|2.06|73956|77430|10000|10000|||99.93|97.92|0.00|-3.14|000106A5|0|1| +261|2023-10-06T21:57:36.4210000-07:00|Change|40021752||||||||| +21|2023-10-06T21:57:36.8890000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29731074|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||89.43|86.44|-0.01|2.10|000106A6|0|1| +261|2023-10-06T21:57:36.5170000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:57:36.9340000-07:00|40021585|Zeromus|0001069B|29716524|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +20|2023-10-06T21:57:36.9340000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|90.07|85.53|0.00|2.07| +261|2023-10-06T21:57:36.6150000-07:00|Change|4002174C||||||||| +21|2023-10-06T21:57:37.0680000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|D820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29716524|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||90.10|86.46|0.00|-3.14|000106A7|0|1| +261|2023-10-06T21:57:36.6150000-07:00|Change|40021747||||||||| +39|2023-10-06T21:57:37.1120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7400|10000|||89.86|87.03|-0.01|2.18| +39|2023-10-06T21:57:37.1120000-07:00|10FF0003|Gegehi Gehi|73814|73814|6700|10000|||89.39|84.52|0.00|-2.76| +38|2023-10-06T21:57:37.1120000-07:00|40021748|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.55|100.82|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T21:57:37.1120000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|40021748|Demi-Bahamut|01|69928|40478540| +21|2023-10-06T21:57:37.1120000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40021585|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|29716524|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||89.37|86.35|0.00|2.10|000106A8|0|1| +21|2023-10-06T21:57:37.1120000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||90.08|86.22|-0.01|-3.11|83502|83502|10000|10000|||90.08|86.22|-0.01|-3.11|000106A9|0|1| +38|2023-10-06T21:57:37.1120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.08|86.22|-0.01|-3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:37.1120000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +37|2023-10-06T21:57:37.1570000-07:00|40021585|Zeromus|000106A1|29695908|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|41700000|| +39|2023-10-06T21:57:37.1570000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||89.74|86.66|0.00|3.12| +38|2023-10-06T21:57:37.1570000-07:00|40021585|Zeromus|005A5A00|29695908|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:57:36.8550000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:57:37.2000000-07:00|40021748|Demi-Bahamut|1D19|Akh Morn|40021585|Zeromus|750003|CB0B0000|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|29716524|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07|000106AA|0|1| +261|2023-10-06T21:57:36.8550000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:36.8550000-07:00|Change|10FF000B||||||||||||| +261|2023-10-06T21:57:36.8550000-07:00|Change|4002174D||||||||| +39|2023-10-06T21:57:37.2890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9200|10000|||89.37|86.35|0.00|2.10| +21|2023-10-06T21:57:37.3790000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||89.69|86.15|0.00|-3.13|90216|90216|10000|10000|||89.69|86.15|0.00|-3.13|000106AB|0|1| +38|2023-10-06T21:57:37.3790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||89.69|86.15|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:37.3790000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T21:57:37.4230000-07:00|40021585|Zeromus|000106A6|29695703||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:37.4230000-07:00|10FF0006|Wowobora Gogobora|000106A6|81809|81809|9200|10000|19||89.37|86.35|0.00|2.10|1B00|0|0|01|06000A8D|0|C2700000|| +37|2023-10-06T21:57:37.4690000-07:00|40021585|Zeromus|000106A2|29683253||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:37.4690000-07:00|10FF0006|Wowobora Gogobora|000106A2|81809|81809|9200|10000|19||89.37|86.35|0.00|2.10|1B00|0|0|01|06000A8D|0|42700000|| +38|2023-10-06T21:57:37.4690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|19||89.37|86.35|0.00|2.10|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:37.0850000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:57:37.5130000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|754003|81DE0000|4|26B08000|0|0|0|0|0|0|0|0|0|0|0|0|29683253|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||94.59|82.16|0.00|1.72|000106AC|0|1| +38|2023-10-06T21:57:37.5130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8000|10000|0||94.59|82.16|0.00|1.72|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:57:37.5130000-07:00|558|Requiescat|24.34|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T21:57:37.5130000-07:00|10FF0001||||| +21|2023-10-06T21:57:37.5570000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|5A720000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|29683253|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7400|10000|||89.86|87.02|0.00|2.17|000106AD|0|1| +261|2023-10-06T21:57:37.2060000-07:00|Change|40021750||||||||| +37|2023-10-06T21:57:37.6030000-07:00|40021585|Zeromus|000106A0|29654097||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:37.6030000-07:00|40021585|Zeromus|000106A7|29650639||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:37.6030000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|58B20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|29683253|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9415|10000|||90.07|85.53|0.00|2.07|000106AE|0|1| +21|2023-10-06T21:57:37.6030000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||90.07|86.14|-0.02|-3.10|83502|83502|10000|10000|||90.07|86.14|-0.02|-3.10|000106AF|0|1| +38|2023-10-06T21:57:37.6030000-07:00|40021742|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|102.13|0.00|-3.07|0|0|0||||||||||||| +30|2023-10-06T21:57:37.6030000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|40021742|Automaton Queen|01|85668|40478540| +38|2023-10-06T21:57:37.6030000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.07|86.14|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:37.6030000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +261|2023-10-06T21:57:37.3070000-07:00|Change|40021749||||||||| +261|2023-10-06T21:57:37.3070000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:37.6470000-07:00|10FF0007|Kehabiqo Febiqo|000106A5|129844||||||89.49|86.28|0.00|2.06| +37|2023-10-06T21:57:37.6920000-07:00|40021585|Zeromus|000106A3|29585276||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:37.6920000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40021585|Zeromus|754003|7B760000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|29650639|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6700|10000|||89.04|83.53|-0.01|-2.88|000106B0|0|1| +38|2023-10-06T21:57:37.6920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||89.04|83.53|-0.01|-2.88|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:37.6920000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:57:37.6920000-07:00|7B3|Manafication|6.09|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73814|73814| +261|2023-10-06T21:57:37.3070000-07:00|Change|4002174F||||||||| +39|2023-10-06T21:57:37.8260000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8200|10000|||95.93|81.97|0.00|1.63| +21|2023-10-06T21:57:37.8260000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|D410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29585276|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.62|85.34|-0.02|-3.08|000106B1|0|1| +37|2023-10-06T21:57:37.8710000-07:00|40021585|Zeromus|000106A4|29533167||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:37.8710000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|712003|1F2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29585276|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||89.49|86.28|0.00|2.06|000106B2|0|1| +261|2023-10-06T21:57:37.4960000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:57:37.9160000-07:00|40021748|Demi-Bahamut|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07| +21|2023-10-06T21:57:37.9160000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29533167|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||95.93|81.97|0.00|1.63|000106B3|0|1| +31|2023-10-06T21:57:37.9160000-07:00|10FF0001||||| +21|2023-10-06T21:57:38.0050000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40021585|Zeromus|6010E|35D0000|85000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|29533167|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.62|85.34|0.00|-3.08|000106B4|0|1| +37|2023-10-06T21:57:38.0940000-07:00|40021585|Zeromus|000106AA|29481188||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:38.0940000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|250003|F5E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29533167|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||90.07|86.14|0.00|-3.10|000106B5|0|1| +38|2023-10-06T21:57:38.0940000-07:00|40021748|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.55|100.82|0.00|-3.07|0|0|0||||||||||||| +30|2023-10-06T21:57:38.0940000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|40021748|Demi-Bahamut|01|69928|40478540| +38|2023-10-06T21:57:38.0940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.07|86.14|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:38.0940000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +30|2023-10-06T21:57:38.0940000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +37|2023-10-06T21:57:38.1380000-07:00|40021585|Zeromus|000106AC|29447942||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:57:38.1380000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:57:38.1380000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|12FD0000|104|7188000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|29533167|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7000|10000|||89.48|85.65|0.00|-2.97|000106B6|0|1| +261|2023-10-06T21:57:37.8250000-07:00|Change|4002174A||||||||| +261|2023-10-06T21:57:37.8250000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:37.8250000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T21:57:38.2720000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|5BF80000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|29447942|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||89.22|85.58|0.00|3.05|000106B7|0|1| +21|2023-10-06T21:57:38.2720000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|166A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29447942|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||95.93|81.97|0.00|2.00|000106B8|0|1| +38|2023-10-06T21:57:38.3160000-07:00|40021742|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|102.13|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T21:57:38.3160000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|40021742|Automaton Queen|01|85668|40478540| +37|2023-10-06T21:57:38.3610000-07:00|40021585|Zeromus|000106AD|29424788||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:38.3610000-07:00|40021742|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|732003|D7460000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|29447942|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07|000106B9|0|1| +39|2023-10-06T21:57:38.3610000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||90.07|86.14|0.00|2.12| +38|2023-10-06T21:57:38.3610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||89.04|83.51|-0.02|1.89|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:38.0540000-07:00|Change|4002174E||||||||| +39|2023-10-06T21:57:38.4060000-07:00|40021742|Automaton Queen|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07| +37|2023-10-06T21:57:38.4510000-07:00|40021585|Zeromus|000106B3|29422261||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:38.4510000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||89.49|86.22|0.00|2.06| +38|2023-10-06T21:57:38.4510000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9565|10000|0||90.10|85.50|0.00|2.02|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:38.1680000-07:00|Change|4002174B||||||||| +37|2023-10-06T21:57:38.4950000-07:00|40021585|Zeromus|000106B2|29414283||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:38.4950000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29422261|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6300|10000|||89.09|83.43|0.00|2.23|000106BA|0|1| +261|2023-10-06T21:57:38.1680000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:57:38.1680000-07:00|Change|40021752||||||||| +37|2023-10-06T21:57:38.5840000-07:00|40021585|Zeromus|000106B1|29410890||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:38.6290000-07:00|40021585|Zeromus|000106B4|29410890|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|0|41200000|| +26|2023-10-06T21:57:38.6290000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|90216| +37|2023-10-06T21:57:38.6290000-07:00|10FF0008|Kokosaze Lulusaze|000106B4|90216|90216|10000|10000|0||89.62|85.34|0.00|2.04|1F00|0|0|01|0500079A|0|41200000|| +26|2023-10-06T21:57:38.6290000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:57:38.3600000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:57:38.3600000-07:00|Change|4002174C||||||||| +37|2023-10-06T21:57:38.7180000-07:00|40021585|Zeromus|000106B5|29347943||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:38.3600000-07:00|Change|40021747||||||||| +37|2023-10-06T21:57:38.8510000-07:00|40021585|Zeromus|000106B8|29342205||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:38.4520000-07:00|Change|40021585||||| +37|2023-10-06T21:57:38.8950000-07:00|40021585|Zeromus|000106B7|29318661||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:38.8950000-07:00|40021585|Zeromus|000106AE|29295955||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:38.8950000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|90.86|84.26|0.00|2.34| +261|2023-10-06T21:57:38.5530000-07:00|Change|4002174D||||||||| +21|2023-10-06T21:57:38.9400000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40021585|Zeromus|750003|684E0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|29295955|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||89.19|85.40|0.00|2.03|000106BB|0|1| +37|2023-10-06T21:57:39.0290000-07:00|40021585|Zeromus|000106BA|29295896||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:39.0290000-07:00|10FF0003|Gegehi Gehi|000106BA|73814|73814|6300|10000|0||92.47|83.11|0.00|2.36|2300|0|0|01|020004D3|0|C1F00000|| +20|2023-10-06T21:57:39.0290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|90.26|83.60|0.00|2.31| +21|2023-10-06T21:57:39.0740000-07:00|40021585|Zeromus|8B46|Visceral Whirl|40021585|Zeromus|1B|8B468000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29295955|40478540|10000|10000|||100.00|80.10|0.00|0.00|29295955|40478540|10000|10000|||100.00|80.10|0.00|0.00|000106BC|0|1| +37|2023-10-06T21:57:39.1190000-07:00|40021585|Zeromus|000106B0|29264290||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:39.1190000-07:00|10FF0003|Gegehi Gehi|000106B0|73814|73814|6300|10000|0||92.47|83.11|0.00|2.36|2300|0|0|01|020004D3|0|41F00000|| +38|2023-10-06T21:57:39.1190000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|6300|10000|0||92.47|83.11|0.00|2.36|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:39.1630000-07:00|40021585|Zeromus|000106B6|29259429||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:39.1630000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|8BF50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29264290|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||89.52|85.65|0.00|2.06|000106BD|0|1| +38|2023-10-06T21:57:39.1630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||89.52|85.65|0.00|2.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:39.1630000-07:00|499|Inner Release|9.16|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T21:57:38.7810000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:57:39.2090000-07:00|10FF000B|Pusu Rosu|79209|79209|9846|10000|||91.11|83.90|0.00|2.13| +26|2023-10-06T21:57:39.2090000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:57:39.2090000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|27AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29259429|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.62|85.34|0.00|2.04|000106BE|0|1| +21|2023-10-06T21:57:39.2530000-07:00|40021748|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|16CE0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|29259429|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07|000106BF|0|1| +21|2023-10-06T21:57:39.2530000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|D0C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29259429|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||93.35|84.03|0.00|2.37|000106C0|0|1| +261|2023-10-06T21:57:38.9000000-07:00|Change|40021750||||||||| +261|2023-10-06T21:57:38.9000000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:57:38.9000000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T21:57:38.9000000-07:00|Change|40021749||||||||| +261|2023-10-06T21:57:39.0110000-07:00|Change|4002174F||||||||| +261|2023-10-06T21:57:39.0110000-07:00|Change|40021585||||| +21|2023-10-06T21:57:39.5200000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|C530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29259429|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||89.52|85.65|0.00|2.06|000106C1|0|1| +261|2023-10-06T21:57:39.2390000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:57:39.5650000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|59520000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|29259429|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9846|10000|||91.14|83.85|0.00|1.97|000106C2|0|1| +261|2023-10-06T21:57:39.2390000-07:00|Change|10FF0007||||||||| +26|2023-10-06T21:57:39.6100000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T21:57:39.6100000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|756003|8FDC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29259429|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||89.19|85.40|0.00|2.12|000106C3|0|1| +24|2023-10-06T21:57:39.6550000-07:00|40021585|Zeromus|DoT|0|1720|29259429|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||89.65|85.29|0.00|2.20| +36|2023-10-06T21:57:39.6550000-07:00|2E90|3| +38|2023-10-06T21:57:39.6550000-07:00|40021585|Zeromus|005A5A00|29253509|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +39|2023-10-06T21:57:39.6990000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +37|2023-10-06T21:57:39.7440000-07:00|40021585|Zeromus|000106BB|29226807||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:39.7440000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||95.25|82.51|-0.01|2.01|83502|83502|10000|10000|||95.25|82.51|-0.01|2.01|000106C4|0|1| +38|2023-10-06T21:57:39.7440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.25|82.51|-0.01|2.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:39.7440000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T21:57:39.7890000-07:00|40021585|Zeromus|000106BD|29190978||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:39.7890000-07:00|40021585|Zeromus|000106C0|29187638||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:39.8350000-07:00|40021585|Zeromus|000106BE|29177484|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|01|410CBC6C|| +26|2023-10-06T21:57:39.8350000-07:00|35D|Wildfire|8.80|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|01|40478540|90216| +21|2023-10-06T21:57:39.8350000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|19560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29253509|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.67|85.25|0.00|2.32|000106C5|0|1| +261|2023-10-06T21:57:39.5160000-07:00|Change|4002174A||||||||| +21|2023-10-06T21:57:39.8790000-07:00|400215A2|Zeromus|8B47|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|000106C6|0|0| +21|2023-10-06T21:57:39.8790000-07:00|400215A3|Zeromus|8B48|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|000106C7|0|0| +261|2023-10-06T21:57:39.5160000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T21:57:39.5160000-07:00|Change|400215A3||||||||||||| +21|2023-10-06T21:57:39.9670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|36BF0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|29177484|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7000|10000|||90.26|83.60|0.00|1.92|000106C8|0|1| +261|2023-10-06T21:57:39.7120000-07:00|Change|4002174E||||||||| +261|2023-10-06T21:57:39.7120000-07:00|Change|4002174B||||||||| +21|2023-10-06T21:57:40.0130000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|10B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29177484|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||89.26|85.30|0.00|2.02|000106C9|0|1| +21|2023-10-06T21:57:40.0130000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|752003|B7D70000|4|25058000|0|0|0|0|0|0|0|0|0|0|0|0|29177484|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||95.93|81.97|0.00|2.00|000106CA|0|1| +38|2023-10-06T21:57:40.0130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7200|10000|0||95.93|81.97|0.00|2.00|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:57:40.0130000-07:00|558|Requiescat|21.84|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:57:40.0130000-07:00|10FF0001||||| +37|2023-10-06T21:57:40.0570000-07:00|40021585|Zeromus|000106C1|29174329||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:40.0570000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42540000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||92.92|83.60|0.00|1.90|29177484|40478540|10000|10000|||100.00|80.10|0.00|0.00|000106CB|0|1| +39|2023-10-06T21:57:40.1010000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|6800|10000|||90.26|83.60|0.00|1.92| +21|2023-10-06T21:57:40.1010000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|752003|B6DC0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|29177484|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6300|10000|||95.99|82.26|0.00|2.02|000106CC|0|1| +38|2023-10-06T21:57:40.1010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5900|10000|0||95.99|82.26|0.00|2.02|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:40.1010000-07:00|7B3|Manafication|3.68|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +39|2023-10-06T21:57:40.1450000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||90.76|84.04|0.00|2.22| +39|2023-10-06T21:57:40.1450000-07:00|10FF0003|Gegehi Gehi|73814|73814|6100|10000|||95.99|82.26|0.00|2.02| +261|2023-10-06T21:57:39.7120000-07:00|Change|400215A1||||||||| +261|2023-10-06T21:57:39.7120000-07:00|Change|4002159F||||||||| +261|2023-10-06T21:57:39.7120000-07:00|Change|400215A0||||||||| +261|2023-10-06T21:57:39.7120000-07:00|Change|4002159E||||||||| +261|2023-10-06T21:57:39.7120000-07:00|Change|4002159C||||||||| +261|2023-10-06T21:57:39.7120000-07:00|Change|4002159D||||||||| +261|2023-10-06T21:57:39.7120000-07:00|Change|10FF0001||| +20|2023-10-06T21:57:40.1900000-07:00|4002159C|Zeromus|8B49|Miasmic Blast|4002159C|Zeromus|7.700|100.00|114.00|0.00|0.79| +20|2023-10-06T21:57:40.1900000-07:00|4002159D|Zeromus|8CF8|unknown_8cf8|4002159D|Zeromus|7.700|100.00|114.00|0.00|0.79| +20|2023-10-06T21:57:40.1900000-07:00|4002159E|Zeromus|8B49|Miasmic Blast|4002159E|Zeromus|7.700|93.00|93.00|0.00|0.79| +20|2023-10-06T21:57:40.1900000-07:00|4002159F|Zeromus|8CF8|unknown_8cf8|4002159F|Zeromus|7.700|93.00|93.00|0.00|0.79| +20|2023-10-06T21:57:40.1900000-07:00|400215A1|Zeromus|8CF8|unknown_8cf8|400215A1|Zeromus|7.700|100.00|86.00|0.00|0.79| +20|2023-10-06T21:57:40.1900000-07:00|400215A0|Zeromus|8B49|Miasmic Blast|400215A0|Zeromus|7.700|100.00|86.00|0.00|0.79| +21|2023-10-06T21:57:40.1900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29174329|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7200|10000|||95.93|81.97|0.00|2.00|000106CD|0|1| +31|2023-10-06T21:57:40.1900000-07:00|10FF0001||||| +21|2023-10-06T21:57:40.2350000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||95.26|82.51|0.00|2.01|83502|83502|10000|10000|||95.26|82.51|0.00|2.01|000106CE|0|1| +38|2023-10-06T21:57:40.2350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.26|82.51|0.00|2.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:40.2350000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +37|2023-10-06T21:57:40.2790000-07:00|40021585|Zeromus|000106BF|29168491||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:40.2790000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9100|10000|||89.59|85.08|0.00|2.03| +261|2023-10-06T21:57:39.8310000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:57:39.9470000-07:00|Change|40021752||||||||| +261|2023-10-06T21:57:39.9470000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:57:39.9470000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T21:57:40.3230000-07:00|40021585|Zeromus|000106B9|29113381||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:40.3230000-07:00|40021742|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.58|102.13|0.00|-3.07|0|0|0||||||||||||| +30|2023-10-06T21:57:40.3230000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|40021742|Automaton Queen|01|85668|40478540| +261|2023-10-06T21:57:40.0640000-07:00|Change|4002174C||||||||| +37|2023-10-06T21:57:40.5000000-07:00|40021585|Zeromus|000106C5|29106895||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:40.5000000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|11180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29113381|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||91.56|83.21|0.00|2.33|000106CF|0|1| +21|2023-10-06T21:57:40.5000000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|752003|1EA70000|104|B758000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|29113381|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|6800|10000|||90.98|83.50|0.00|1.72|000106D0|0|1| +38|2023-10-06T21:57:40.5000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|6800|10000|0||90.98|83.50|0.00|1.72|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:40.5000000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +261|2023-10-06T21:57:40.1820000-07:00|Change|40021747||||||||| +37|2023-10-06T21:57:40.5440000-07:00|40021585|Zeromus|000106C9|29106628||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:40.5440000-07:00|40021585|Zeromus|000106C3|29069800||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:40.1820000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:57:40.2740000-07:00|Change|4002174D||||||||| +261|2023-10-06T21:57:40.2740000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T21:57:40.2740000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T21:57:40.2740000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:57:40.2740000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:57:40.2740000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:57:40.2740000-07:00|Change|4002159F||||||||||||| +26|2023-10-06T21:57:40.6780000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:57:40.6780000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|55F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29069800|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.42|82.48|0.00|2.28|000106D1|0|1| +261|2023-10-06T21:57:40.2740000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:57:40.2740000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:57:40.7220000-07:00|40021585|Zeromus|000106CD|29067292||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:40.7220000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29069800|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|6800|10000|||92.61|83.27|0.00|1.97|000106D2|0|1| +37|2023-10-06T21:57:40.7670000-07:00|40021585|Zeromus|000106C8|29053277||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:40.7670000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|59320000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|29067292|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||92.30|84.21|-0.02|1.10|000106D3|0|1| +39|2023-10-06T21:57:40.8110000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7400|10000|||96.08|82.15|0.00|0.04| +21|2023-10-06T21:57:40.8110000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|550003|5B470000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|29067292|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.28|82.53|0.00|2.01|000106D4|0|1| +38|2023-10-06T21:57:40.8110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.28|82.53|0.00|2.01|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:40.8110000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T21:57:40.8110000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T21:57:40.4660000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:40.8540000-07:00|10FF0007|Kehabiqo Febiqo|000106CB|112864||||||94.29|85.17|0.00|1.56| +37|2023-10-06T21:57:40.8540000-07:00|40021585|Zeromus|000106C2|29030411||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:40.9000000-07:00|40021748|Demi-Bahamut|66800|69928|10000|10000|||101.55|100.82|0.00|-3.07| +38|2023-10-06T21:57:40.9000000-07:00|40021748|Demi-Bahamut|005A5A00|0|0|0|0|0||101.55|100.82|0.00|-3.07|0|0|0|||| +30|2023-10-06T21:57:40.9000000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40021748|Demi-Bahamut|00|69928|81809| +30|2023-10-06T21:57:40.9000000-07:00|31|Medicated|0.00|10FF0006|Wowobora Gogobora|40021748|Demi-Bahamut|296E|69928|81809| +30|2023-10-06T21:57:40.9000000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40021748|Demi-Bahamut|00|69928|73814| +261|2023-10-06T21:57:40.4660000-07:00|Change|40021748||||||||||| +261|2023-10-06T21:57:40.4660000-07:00|Change|40021748||||||||||| +38|2023-10-06T21:57:40.9430000-07:00|40021764||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||||||||| +37|2023-10-06T21:57:40.9430000-07:00|40021585|Zeromus|000106CA|28983348||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:40.5600000-07:00|Change|40021750||||||||| +38|2023-10-06T21:57:40.9440000-07:00|40021764||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||||||||| +261|2023-10-06T21:57:40.5600000-07:00|Add|40021764||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:57:40.5600000-07:00|40021764|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||93.86|83.40|0.00|-1.08| +261|2023-10-06T21:57:40.5600000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:40.5600000-07:00|Change|40021749||||||||| +261|2023-10-06T21:57:40.6610000-07:00|Change|4002174F||||||||| +261|2023-10-06T21:57:40.6610000-07:00|Change|40021764||| +20|2023-10-06T21:57:41.0760000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|92.89|84.52|0.00|1.44| +21|2023-10-06T21:57:41.1210000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|149F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|112864|129844|10000|10000|||95.40|86.07|0.00|1.49|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000106D5|0|1| +261|2023-10-06T21:57:40.7730000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:40.8850000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:57:41.2560000-07:00|40021585|Zeromus|000106CF|28978972||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:41.2560000-07:00|40021585|Zeromus|000106D2|28978794||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:41.3000000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|26460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28983348|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.92|82.12|0.00|1.70|000106D6|0|1| +37|2023-10-06T21:57:41.3440000-07:00|40021585|Zeromus|000106D1|28956785|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|02|40E9168C|| +26|2023-10-06T21:57:41.3440000-07:00|35D|Wildfire|7.28|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|02|40478540|90216| +39|2023-10-06T21:57:41.3440000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||95.97|82.88|0.00|2.12| +39|2023-10-06T21:57:41.3890000-07:00|40021742|Automaton Queen|82193|85668|10000|10000|||101.58|102.13|0.00|-3.07| +37|2023-10-06T21:57:41.4340000-07:00|40021585|Zeromus|000106D3|28933951||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:41.4340000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|750003|41C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28956785|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||92.30|84.21|0.00|2.06|000106D7|0|1| +21|2023-10-06T21:57:41.4340000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|752003|425A0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|28956785|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|6800|10000|||95.33|83.00|0.00|1.72|000106D8|0|1| +21|2023-10-06T21:57:41.4340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|16D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28956785|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||96.66|83.20|0.00|2.05|000106D9|0|1| +38|2023-10-06T21:57:41.4340000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|19||92.30|84.21|0.00|2.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:41.4340000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +38|2023-10-06T21:57:41.4340000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9446|10000|0||93.11|84.74|0.00|1.74|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:41.4340000-07:00|9D|Presence of Mind|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:41.4340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||96.66|83.20|0.00|2.05|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:57:41.4780000-07:00|10FF0007|Kehabiqo Febiqo|114162|129844|10000|10000|||97.40|86.34|0.00|1.39| +38|2023-10-06T21:57:41.4780000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9996|10000|0||93.11|84.74|0.00|1.74|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:41.5230000-07:00|40021585|Zeromus|000106D0|28926104||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:41.5230000-07:00|40021585|Zeromus|000106D4|28902737||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:41.5230000-07:00|10FF000A|Dukaro Nezikaro|000106D4|83502|83502|10000|10000|0||97.42|83.43|-0.02|1.96|1E00|0|0|01|04000A82|01|41F00000|| +38|2023-10-06T21:57:41.5230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||97.42|83.43|-0.02|1.96|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:57:41.2380000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:57:41.2380000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:57:41.2380000-07:00|Change|4002174A||||||||| +261|2023-10-06T21:57:41.2380000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:57:41.6570000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|8D080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28902737|40478540|10000|10000|||100.00|80.10|0.00|0.00|114162|129844|10000|10000|||98.76|86.59|0.00|1.37|000106DA|0|1| +38|2023-10-06T21:57:41.6570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114162|129844|10000|10000|0||98.76|86.59|0.00|1.37|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:41.6570000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +21|2023-10-06T21:57:41.7450000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|37220000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|28902737|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9996|10000|||93.21|84.85|-0.01|2.17|000106DB|0|1| +22|2023-10-06T21:57:41.7450000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|14DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28902737|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.24|83.53|0.00|1.73|000106DC|0|3| +22|2023-10-06T21:57:41.7450000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|714003|1A1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28902737|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.24|83.53|0.00|1.73|000106DC|1|3| +22|2023-10-06T21:57:41.7450000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|716003|2C730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28902737|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.24|83.53|0.00|1.73|000106DC|2|3| +261|2023-10-06T21:57:41.3390000-07:00|Change|4002174E||||||||| +261|2023-10-06T21:57:41.4370000-07:00|Change|4002174B||||||||| +261|2023-10-06T21:57:41.4370000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:41.5350000-07:00|Change|40021752||||||||| +37|2023-10-06T21:57:41.9230000-07:00|10FF0007|Kehabiqo Febiqo|000106D5|119441||||||100.79|87.01|0.00|3.09| +37|2023-10-06T21:57:41.9230000-07:00|40021585|Zeromus|000106CC|28855925||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:41.9670000-07:00|40021585|Zeromus|000106D9|28850083||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:41.9670000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28902737|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6100|10000|||97.69|84.61|0.00|2.03|000106DD|0|1| +34|2023-10-06T21:57:41.9670000-07:00|40021764|Carbuncle|40021764|Carbuncle|01| +261|2023-10-06T21:57:41.6300000-07:00|Change|40021764||| +261|2023-10-06T21:57:41.6300000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:41.6300000-07:00|Change|4002174C||||||||| +37|2023-10-06T21:57:42.1020000-07:00|40021585|Zeromus|000106D6|28840285||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:42.1020000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|6400|10000|0||100.01|83.56|0.00|1.80|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:42.1020000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T21:57:42.1020000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|6400|10000|||100.01|83.56|0.00|1.80|81541|81541|6400|10000|||100.01|83.56|0.00|1.80|000106DE|0|1| +261|2023-10-06T21:57:41.7270000-07:00|Change|40021747||||||||| +261|2023-10-06T21:57:41.8390000-07:00|Change|10FF0004||||||||| +26|2023-10-06T21:57:42.1910000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:57:42.1910000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|449E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28840285|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.07|83.62|0.00|1.26|000106DF|0|1| +39|2023-10-06T21:57:42.2360000-07:00|10FF000B|Pusu Rosu|79209|79209|9877|10000|||93.22|84.86|0.00|2.19| +37|2023-10-06T21:57:42.2810000-07:00|40021585|Zeromus|000106DA|28804181||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:42.2810000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|119441|129844|10000|10000|||100.21|86.89|0.00|3.09|119441|129844|10000|10000|||100.21|86.89|0.00|3.09|000106E0|0|1| +38|2023-10-06T21:57:42.2810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119441|129844|10000|10000|0||100.21|86.89|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:42.2810000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:57:41.9640000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:57:41.9640000-07:00|Change|4002174D||||||||| +261|2023-10-06T21:57:41.9640000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T21:57:41.9640000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:57:41.9640000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:57:42.3690000-07:00|40021585|Zeromus|000106D7|28787342||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:42.3690000-07:00|40021585|Zeromus|000106D8|28770356||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:42.4580000-07:00|40021585|Zeromus|000106DC|28765016||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:42.4580000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28770356|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||105.93|83.57|0.00|-0.08|000106E1|0|1| +31|2023-10-06T21:57:42.4580000-07:00|10FF0001||||| +37|2023-10-06T21:57:42.5030000-07:00|40021585|Zeromus|000106DD|28764956||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:42.5030000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|752003|DE3A0000|4|26958000|0|0|0|0|0|0|0|0|0|0|0|0|28770356|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7400|10000|||105.93|83.57|0.00|-0.08|000106E2|0|1| +38|2023-10-06T21:57:42.5030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|0||105.93|83.57|0.00|-0.08|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:57:42.5030000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T21:57:42.5030000-07:00|10FF0001||||| +37|2023-10-06T21:57:42.5910000-07:00|40021585|Zeromus|000106DC|28758272||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:42.5920000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|750003|85700000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|28764956|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6100|10000|||101.38|85.81|0.00|2.02|000106E3|0|1| +38|2023-10-06T21:57:42.5920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5700|10000|0||101.38|85.81|0.00|2.02|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:42.5920000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +37|2023-10-06T21:57:42.6350000-07:00|10FF0004|Buhojaqe Zijaqe|000106DE|81541|81541|8400|10000|0||102.31|83.95|0.00|1.41|1C00|0|0|0| +261|2023-10-06T21:57:42.3030000-07:00|Change|40021750||||||||| +39|2023-10-06T21:57:42.6810000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|3.14| +24|2023-10-06T21:57:42.6810000-07:00|40021585|Zeromus|DoT|0|13D3|28758272|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||104.71|84.27|0.00|2.29| +21|2023-10-06T21:57:42.6810000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|550003|4ED50000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|28758272|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||105.69|84.61|0.00|1.55|000106E4|0|1| +36|2023-10-06T21:57:42.6810000-07:00|2F6C|3| +38|2023-10-06T21:57:42.6810000-07:00|40021585|Zeromus|005A5A00|28753197|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:42.6810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||105.69|84.61|0.00|1.55|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:42.6810000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T21:57:42.3030000-07:00|Change|40021749||||||||| +261|2023-10-06T21:57:42.4070000-07:00|Change|4002174F||||||||| +37|2023-10-06T21:57:42.7260000-07:00|40021585|Zeromus|000106DC|28741818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:42.8160000-07:00|10FF0007|Kehabiqo Febiqo|000106E0|119441|129844|10000|10000|0||104.34|87.17|0.00|1.56|1500|0|0|01|02000769|0|41F00000|| +37|2023-10-06T21:57:42.8160000-07:00|40021585|Zeromus|000106DF|28724252|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|03|40BA1478|| +26|2023-10-06T21:57:42.8160000-07:00|35D|Wildfire|5.81|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|03|40478540|90216| +21|2023-10-06T21:57:42.8160000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|18E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28753197|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.49|84.34|0.00|2.08|000106E5|0|1| +26|2023-10-06T21:57:42.8160000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T21:57:42.8160000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|13E30000|104|76E8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|28753197|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||104.10|84.39|0.00|1.35|000106E6|0|1| +38|2023-10-06T21:57:42.8160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119441|129844|10000|10000|0||104.34|87.17|0.00|1.56|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:57:42.5000000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T21:57:42.9040000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|C940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28724252|40478540|10000|10000|||100.00|80.10|0.00|0.00|119441|129844|10000|10000|||105.14|87.14|0.00|1.57|000106E7|0|1| +261|2023-10-06T21:57:42.5000000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:42.5940000-07:00|Change|4002174B||||| +261|2023-10-06T21:57:42.5940000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:57:42.5940000-07:00|Change|4002174F||||| +37|2023-10-06T21:57:42.9930000-07:00|40021585|Zeromus|000106E1|28721909||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:43.0380000-07:00|40021585|Zeromus|000106DB|28707795||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:43.0820000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8600|10000|||105.66|84.64|0.00|3.05| +261|2023-10-06T21:57:42.7100000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:57:42.7100000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:57:43.0830000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3F780000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|119441|129844|10000|10000|||105.90|87.14|0.00|1.58|28721909|40478540|10000|10000|||100.00|80.10|0.00|0.00|000106E8|0|1| +39|2023-10-06T21:57:43.1270000-07:00|10FF0003|Gegehi Gehi|73814|73814|5900|10000|||102.66|86.25|0.00|-2.77| +261|2023-10-06T21:57:42.8200000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:57:43.1710000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||107.84|84.40|0.00|-3.11| +21|2023-10-06T21:57:43.1710000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|B5F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28707795|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.84|84.40|0.00|-3.11|000106E9|0|1| +21|2023-10-06T21:57:43.1710000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|1520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28707795|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||98.11|85.63|0.00|1.25|000106EA|0|1| +261|2023-10-06T21:57:42.8200000-07:00|Change|40021750||||| +261|2023-10-06T21:57:42.8200000-07:00|Change|4002174C||||| +261|2023-10-06T21:57:42.8200000-07:00|Change|40021747||||| +39|2023-10-06T21:57:43.3070000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9000|10000|||98.72|85.93|-0.02|1.34| +21|2023-10-06T21:57:43.3070000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|28707795|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||98.72|85.93|-0.02|1.34|000106EB|0|1| +38|2023-10-06T21:57:43.3070000-07:00|40021764|Carbuncle|005A5A00|0|0|0|0|0||93.89|83.41|0.00|-1.06|0|0|0||||||| +26|2023-10-06T21:57:43.3070000-07:00|30|Well Fed|819.32|10FF0006|Wowobora Gogobora|40021764|Carbuncle|2964|77698|81809| +261|2023-10-06T21:57:42.9390000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:57:42.9390000-07:00|Change|4002174A||||||||| +261|2023-10-06T21:57:42.9390000-07:00|Change|40021764||||||||||||| +38|2023-10-06T21:57:43.3510000-07:00|40021768||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||||||||| +21|2023-10-06T21:57:43.3510000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|C0B0000|21140E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|28707795|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9877|10000|||95.31|84.31|0.00|1.85|000106EC|0|1| +38|2023-10-06T21:57:43.3510000-07:00|40021768||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||||||||| +261|2023-10-06T21:57:42.9390000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:57:43.3950000-07:00|40021585|Zeromus|000106E2|28650905||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:43.3950000-07:00|40021742|Automaton Queen|005A5A00|0|0|0|0|0||101.58|102.13|0.00|-3.07|0|0|0|||| +30|2023-10-06T21:57:43.3950000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|40021742|Automaton Queen|296C|85668|90216| +30|2023-10-06T21:57:43.3950000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|40021742|Automaton Queen|00|85668|81809| +30|2023-10-06T21:57:43.3950000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40021742|Automaton Queen|00|85668|73814| +261|2023-10-06T21:57:43.0600000-07:00|Add|40021768||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:43.0600000-07:00|Change|40021742||||||||||||| +261|2023-10-06T21:57:43.0600000-07:00|Remove|4002174D| +03|2023-10-06T21:57:43.0600000-07:00|40021768|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||103.08|88.01|0.00|-2.98| +261|2023-10-06T21:57:43.0600000-07:00|Change|4002174E||||||||| +37|2023-10-06T21:57:43.4390000-07:00|40021585|Zeromus|000106E7|28647685||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:43.4390000-07:00|40021585|Zeromus|000106E5|28641311||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:43.4390000-07:00|40021585|Zeromus|000106E4|28621130||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:43.0600000-07:00|Change|40021752||||| +261|2023-10-06T21:57:43.0600000-07:00|Change|40021768||||| +261|2023-10-06T21:57:43.1700000-07:00|Change|40021749||||| +21|2023-10-06T21:57:43.6180000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|D050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28621130|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||111.97|84.55|0.00|1.98|000106ED|0|1| +26|2023-10-06T21:57:43.6620000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:57:43.6620000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|310F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28621130|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||110.71|84.26|0.00|1.85|000106EE|0|1| +37|2023-10-06T21:57:43.7060000-07:00|40021585|Zeromus|000106EA|28620792||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:43.3620000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:43.3620000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:43.3620000-07:00|Change|4002174E||||| +261|2023-10-06T21:57:43.3620000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:57:43.3620000-07:00|Change|4002174A||||||| +39|2023-10-06T21:57:43.7940000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6600|10000|||113.72|84.16|0.00|-0.08| +261|2023-10-06T21:57:43.4590000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:43.8390000-07:00|40021585|Zeromus|000106E6|28615701||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:43.8390000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|109.75|85.52|-0.02|1.53| +261|2023-10-06T21:57:43.4590000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:57:43.8840000-07:00|10FF0007|Kehabiqo Febiqo|000106E8|103193||||||111.03|85.45|0.00|1.62| +37|2023-10-06T21:57:43.9290000-07:00|40021585|Zeromus|000106E9|28612790||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:43.5550000-07:00|Change|40021585||||||||||||| +261|2023-10-06T21:57:43.6540000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:57:43.6540000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:57:44.1070000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|BDAC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28612790|40478540|10000|10000|||100.00|80.10|0.00|0.00|103193|129844|10000|10000|||112.47|85.29|0.00|1.66|000106EF|0|1| +38|2023-10-06T21:57:44.1070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103193|129844|10000|10000|0||112.47|85.29|0.00|1.66|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:44.1070000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:57:44.1520000-07:00|40021585|Zeromus|000106E3|28578630||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:44.1520000-07:00|40021585|Zeromus|000106ED|28575297||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:44.1520000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||114.91|84.55|0.00|1.62|83502|83502|10000|10000|||114.91|84.55|0.00|1.62|000106F0|0|1| +38|2023-10-06T21:57:44.1520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||114.91|84.55|0.00|1.62|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:44.1520000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +04|2023-10-06T21:57:43.8690000-07:00|4002174A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||89.98|119.67|0.00|2.54| +261|2023-10-06T21:57:43.8690000-07:00|Remove|4002174A| +37|2023-10-06T21:57:44.3300000-07:00|40021585|Zeromus|000106EE|28562738|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|04|4089998F|| +26|2023-10-06T21:57:44.3300000-07:00|35D|Wildfire|4.30|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|04|40478540|90216| +21|2023-10-06T21:57:44.3300000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|1EEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28575297|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||112.34|84.17|-0.02|-1.97|000106F1|0|1| +39|2023-10-06T21:57:44.3750000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||115.47|84.55|-0.02|1.57| +38|2023-10-06T21:57:44.4200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|-0.02|1.57|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:57:44.0950000-07:00|Change|40021768||| +261|2023-10-06T21:57:44.0950000-07:00|Change|10FF000B||||||||| +21|2023-10-06T21:57:44.4650000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15350000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|103193|129844|10000|10000|||114.19|85.09|0.00|2.70|73956|77430|10000|10000|||99.93|97.92|0.00|3.14|000106F2|0|1| +39|2023-10-06T21:57:44.4650000-07:00|10FF0007|Kehabiqo Febiqo|104491|129844|10000|10000|||114.19|85.09|0.00|2.70| +38|2023-10-06T21:57:44.4650000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.57|84.53|0.00|1.50|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:44.5540000-07:00|10FF000A|Dukaro Nezikaro|000106F0|83502|83502|10000|10000|0||115.47|84.55|-0.02|1.57|1E00|0|0|01|040004A2|0|40C00000|| +38|2023-10-06T21:57:44.5540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|-0.02|1.57|0|0|0||||||||||||||||||||||||| +04|2023-10-06T21:57:44.2160000-07:00|40021748|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|0|0|10000|||101.55|100.82|0.00|-3.07| +37|2023-10-06T21:57:44.6420000-07:00|40021585|Zeromus|000106EC|28559655|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600074F|0|41F00000|| +26|2023-10-06T21:57:44.6420000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +261|2023-10-06T21:57:44.2160000-07:00|Remove|40021748| +261|2023-10-06T21:57:44.3150000-07:00|Change|4002174B||||||||| +261|2023-10-06T21:57:44.3150000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:57:44.3150000-07:00|Change|4002174F||||||||| +21|2023-10-06T21:57:44.7310000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28562738|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6600|10000|||115.89|84.62|0.00|0.85|000106F3|0|1| +31|2023-10-06T21:57:44.7310000-07:00|10FF0001||||| +261|2023-10-06T21:57:44.3150000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:57:44.7740000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|35FF0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|28559655|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8600|10000|||110.34|85.65|0.00|-2.06|000106F4|0|1| +261|2023-10-06T21:57:44.5060000-07:00|Change|40021750||||||||| +21|2023-10-06T21:57:44.8650000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|10C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28559655|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||110.34|85.65|0.00|-2.46|000106F5|0|1| +21|2023-10-06T21:57:44.8650000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40021585|Zeromus|716003|82DC0000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|28559655|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.47|84.55|0.00|1.57|000106F6|0|1| +38|2023-10-06T21:57:44.8650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|1.57|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:44.8650000-07:00|4A2|Ten Chi Jin|5.64|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T21:57:44.5060000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:57:44.9990000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|104491|129844|10000|10000|||114.80|85.01|-0.01|1.77|104491|129844|10000|10000|||114.80|85.01|-0.01|1.77|000106F7|0|1| +21|2023-10-06T21:57:44.9990000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|752003|647E0000|4|260A8000|0|0|0|0|0|0|0|0|0|0|0|0|28559655|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6600|10000|||115.89|84.62|0.00|-1.85|000106F8|0|1| +38|2023-10-06T21:57:44.9990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104491|129844|10000|10000|0||114.80|85.01|-0.01|1.77|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:44.9990000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T21:57:44.9990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5600|10000|0||115.89|84.62|0.00|-1.85|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:57:44.9990000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:57:44.6060000-07:00|Change|40021747||||||||| +04|2023-10-06T21:57:44.6060000-07:00|4002174C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||97.98|119.66|0.00|2.28| +261|2023-10-06T21:57:44.6060000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:57:44.6060000-07:00|Remove|4002174C| +37|2023-10-06T21:57:45.0430000-07:00|40021585|Zeromus|000106EF|28511099||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:45.0430000-07:00|10FF0007|Kehabiqo Febiqo|000106EF|104491|129844|10000|10000|0||114.85|85.01|-0.02|1.69|1500|0|0|01|02000769|0|C1F00000|| +20|2023-10-06T21:57:45.0880000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|114.69|85.35|0.00|1.81| +37|2023-10-06T21:57:45.1320000-07:00|40021585|Zeromus|000106F1|28503184||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:45.1320000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|27810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28559655|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.27|83.63|0.00|1.70|000106F9|0|1| +261|2023-10-06T21:57:44.7240000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T21:57:45.1320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||117.27|83.63|0.00|1.70|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:45.1320000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +261|2023-10-06T21:57:44.7240000-07:00|Change|40021752||||||||| +261|2023-10-06T21:57:44.7240000-07:00|Change|40021749||||||||| +39|2023-10-06T21:57:45.2220000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||104.77|83.80|0.00|1.70| +37|2023-10-06T21:57:45.2650000-07:00|10FF0007|Kehabiqo Febiqo|000106F2|109920|129844|10000|10000|0||114.85|85.01|0.00|1.69|1500|0|0|01|02000769|0|C1F00000|| +37|2023-10-06T21:57:45.2650000-07:00|40021585|Zeromus|000106F3|28500719||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:44.8420000-07:00|Change|10FF000B||||||||||| +26|2023-10-06T21:57:45.3090000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T21:57:45.3090000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|13580000|104|73A8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|28503184|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||111.41|85.57|0.00|1.84|000106FA|0|1| +261|2023-10-06T21:57:44.9540000-07:00|Change|40021764||||||||| +37|2023-10-06T21:57:45.3980000-07:00|40021585|Zeromus|000106F5|28500451||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:45.3980000-07:00|40021768|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|452003|C8CB0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|28500719|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||103.08|88.01|0.00|-2.98|000106FB|0|1| +261|2023-10-06T21:57:45.0700000-07:00|Change|4002174E||||||||| +261|2023-10-06T21:57:45.0700000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:57:45.5310000-07:00|10FF0007|Kehabiqo Febiqo|000106F7|109920|129844|10000|10000|0||114.85|85.01|-0.02|1.69|1500|0|0|01|02000769|0|41F00000|| +38|2023-10-06T21:57:45.5310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109920|129844|10000|10000|0||114.85|85.01|-0.02|1.69|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:57:45.5760000-07:00|40021585|Zeromus|000106F4|28486628||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:45.6670000-07:00|40021585|Zeromus|DoT|0|1C5A|28486628|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|10000|10000|||107.38|84.91|0.00|1.38| +36|2023-10-06T21:57:45.6670000-07:00|3048|3| +38|2023-10-06T21:57:45.6670000-07:00|40021585|Zeromus|005A5A00|28479370|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:57:45.7120000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|2.37| +37|2023-10-06T21:57:45.7550000-07:00|40021585|Zeromus|000106F9|28469257|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|05|4037DF26|| +26|2023-10-06T21:57:45.7550000-07:00|35D|Wildfire|2.87|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|05|40478540|90216| +37|2023-10-06T21:57:45.7550000-07:00|40021585|Zeromus|000106F8|28443531||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:45.7550000-07:00|40021585|Zeromus|000106F6|28410031||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:45.7550000-07:00|10FF000A|Dukaro Nezikaro|000106F6|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|1E00|0|0|01|040004A2|01|40998931|| +21|2023-10-06T21:57:45.7550000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|726003|2FBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28479370|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77|000106FC|0|1| +21|2023-10-06T21:57:45.7550000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|456003|81FA0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28479370|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9000|10000|||113.87|84.52|0.00|1.56|000106FD|0|1| +38|2023-10-06T21:57:45.7550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|19||113.87|84.52|0.00|1.56|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:45.7550000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +04|2023-10-06T21:57:45.3830000-07:00|40021747|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||81.99|119.67|0.00|2.25| +261|2023-10-06T21:57:45.3830000-07:00|Remove|40021747| +21|2023-10-06T21:57:45.8440000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|D240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28410031|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77|000106FE|0|1| +21|2023-10-06T21:57:45.8890000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40021585|Zeromus|550003|5AB90000|900000E|4A28000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|28410031|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|000106FF|0|1| +38|2023-10-06T21:57:45.8890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:45.8890000-07:00|4A2|Ten Chi Jin|4.62|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T21:57:45.8890000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T21:57:45.4820000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:57:45.6640000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:57:45.6640000-07:00|Change|10FF000B||||||||| +39|2023-10-06T21:57:46.1120000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8400|10000|||115.29|84.51|0.00|2.23| +39|2023-10-06T21:57:46.1120000-07:00|10FF0003|Gegehi Gehi|73814|73814|6100|10000|||116.35|85.01|0.00|-1.86| +21|2023-10-06T21:57:46.1120000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42AC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|109920|129844|10000|10000|||114.85|85.01|0.00|1.69|28410031|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010700|0|1| +261|2023-10-06T21:57:45.7640000-07:00|Change|40021585||| +39|2023-10-06T21:57:46.1540000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77| +20|2023-10-06T21:57:46.2460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|115.37|84.47|0.00|2.65| +39|2023-10-06T21:57:46.2890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8900|10000|||115.47|84.25|0.00|2.92| +21|2023-10-06T21:57:46.2890000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|147D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28410031|40478540|10000|10000|||100.00|80.10|0.00|0.00|109920|129844|10000|10000|||114.85|85.01|0.00|1.69|00010701|0|1| +37|2023-10-06T21:57:46.3330000-07:00|40021585|Zeromus|000106FA|28405079||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:46.3330000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28410031|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||115.47|84.25|0.00|2.92|00010702|0|1| +261|2023-10-06T21:57:45.9900000-07:00|Change|4002174B||||||||| +37|2023-10-06T21:57:46.3780000-07:00|40021585|Zeromus|000106FC|28392856||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:46.3780000-07:00|40021585|Zeromus|000106FD|28359582||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:46.3780000-07:00|10FF0006|Wowobora Gogobora|000106FD|81809|81809|8900|10000|19||115.55|84.23|0.00|2.63|1B00|0|0|01|01000B25|0|0|| +21|2023-10-06T21:57:46.3780000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|1E630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28405079|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||115.55|84.23|0.00|2.63|00010703|0|1| +38|2023-10-06T21:57:46.3780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|19||115.55|84.23|0.00|2.63|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:46.3780000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:57:46.1090000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:57:46.5110000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|152003|5A1B0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|28359582|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|6100|10000|||116.35|85.01|0.00|-1.86|00010704|0|1| +38|2023-10-06T21:57:46.5110000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5900|10000|0||116.35|85.01|0.00|-1.86|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:46.5110000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:57:46.5110000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T21:57:46.5560000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|B8050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28359582|40478540|10000|10000|||100.00|80.10|0.00|0.00|109920|129844|10000|10000|||114.85|85.01|0.00|1.69|00010705|0|1| +38|2023-10-06T21:57:46.5560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109920|129844|10000|10000|0||114.85|85.01|0.00|1.69|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:46.5560000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:57:46.1090000-07:00|Change|40021750||||||||| +37|2023-10-06T21:57:46.6010000-07:00|40021585|Zeromus|000106FE|28356218||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:46.6010000-07:00|40021585|Zeromus|000106FF|28332993||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:46.6010000-07:00|10FF000A|Dukaro Nezikaro|000106FF|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|1E00|0|0|02|040004A2|09|407D0E41|||||| +38|2023-10-06T21:57:46.6010000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +04|2023-10-06T21:57:46.2240000-07:00|4002174F|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||109.97|119.67|0.00|2.41| +261|2023-10-06T21:57:46.2240000-07:00|Remove|4002174F| +21|2023-10-06T21:57:46.7350000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|720003|71300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28332993|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77|00010706|0|1| +37|2023-10-06T21:57:46.8230000-07:00|40021585|Zeromus|00010701|28327748||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:46.8230000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|5800|10000|||115.89|84.62|0.00|-1.85| +261|2023-10-06T21:57:46.4100000-07:00|Change|10FF0001||| +261|2023-10-06T21:57:46.4100000-07:00|Change|40021749||||||||| +37|2023-10-06T21:57:46.8680000-07:00|40021585|Zeromus|00010702|28327537||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:46.5050000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:57:46.5050000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:57:46.9120000-07:00|10FF0007|Kehabiqo Febiqo|00010700|92852||||||114.85|85.01|0.00|-1.89| +21|2023-10-06T21:57:46.9120000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28327537|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5900|10000|||116.35|85.01|0.00|-1.86|00010707|0|1| +21|2023-10-06T21:57:46.9120000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40021585|Zeromus|652003|73A90000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|28327537|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|00010708|0|1| +38|2023-10-06T21:57:46.9120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:46.9120000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T21:57:46.9120000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +20|2023-10-06T21:57:46.9560000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|115.26|84.28|0.00|1.59| +21|2023-10-06T21:57:47.0010000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|104F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28327537|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||115.89|84.62|0.00|-1.85|00010709|0|1| +31|2023-10-06T21:57:47.0010000-07:00|10FF0001||||| +261|2023-10-06T21:57:46.5970000-07:00|Remove|40021742| +04|2023-10-06T21:57:46.5970000-07:00|40021742|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|0|0|10000|||101.58|102.13|0.00|-3.07| +04|2023-10-06T21:57:46.5970000-07:00|40021764|Carbuncle|00|5A|10FF0006|00||10261|13498|0|0|0|10000|||95.35|83.76|0.00|-0.14| +261|2023-10-06T21:57:46.5970000-07:00|Remove|40021764| +261|2023-10-06T21:57:46.7080000-07:00|Change|4002174E||||||||| +37|2023-10-06T21:57:47.1350000-07:00|40021585|Zeromus|00010703|28319758||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:46.7080000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:57:47.1800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|357E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|28327537|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8400|10000|||115.59|84.37|0.00|-1.84|0001070A|0|1| +21|2023-10-06T21:57:47.2690000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|1F8C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28319758|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77|0001070B|0|1| +261|2023-10-06T21:57:46.8240000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:57:47.3140000-07:00|40021585|Zeromus|00010704|28296691||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:47.3580000-07:00|40021585|Zeromus|000106FB|28245288||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:47.3580000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85| +04|2023-10-06T21:57:47.0580000-07:00|40021752|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|119.66|0.00|-2.49| +261|2023-10-06T21:57:47.0580000-07:00|Remove|40021752| +37|2023-10-06T21:57:47.4470000-07:00|40021585|Zeromus|00010707|28245260||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:47.4470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:57:47.4910000-07:00|40021585|Zeromus|00010705|28198151||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:47.4910000-07:00|10FF0007|Kehabiqo Febiqo|94150|129844|10000|10000|||115.32|85.08|0.00|2.68| +21|2023-10-06T21:57:47.4910000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|49CD0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|28245288|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|5800|10000|||115.89|84.62|0.00|-1.85|0001070C|0|1| +21|2023-10-06T21:57:47.4910000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|554003|4A570000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|28245288|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5900|10000|||116.35|85.01|0.00|-1.86|0001070D|0|1| +38|2023-10-06T21:57:47.4920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|5800|10000|0||115.89|84.62|0.00|-1.85|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:57:47.4920000-07:00|76E|Sword Oath|5.40|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:57:47.4920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5600|10000|0||116.35|85.01|0.00|-1.86|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:47.4920000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:57:47.4920000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T21:57:47.4920000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||116.05|84.45|0.00|-1.94|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:57:47.5360000-07:00|40021585|Zeromus|00010709|28193976||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:47.6700000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|0001070E|0|1| +38|2023-10-06T21:57:47.6700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:47.6700000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +26|2023-10-06T21:57:47.6700000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +21|2023-10-06T21:57:47.8040000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14700000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|94150|129844|10000|10000|||115.43|85.10|-0.02|2.43|73956|77430|10000|10000|||99.93|97.92|0.00|3.07|0001070F|0|1| +21|2023-10-06T21:57:47.8490000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|A750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28193976|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|00010710|0|1| +37|2023-10-06T21:57:47.8930000-07:00|40021585|Zeromus|00010706|28165000|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500035D|06|3F3C6A29|| +26|2023-10-06T21:57:47.8930000-07:00|35D|Wildfire|0.74|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|90216| +37|2023-10-06T21:57:47.8930000-07:00|40021585|Zeromus|00010708|28135391||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:47.8930000-07:00|10FF000A|Dukaro Nezikaro|00010708|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|1E00|0|0|01|04000A81|0|C1F00000|| +21|2023-10-06T21:57:47.8930000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|59F70000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|28193976|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||116.08|84.46|0.00|-1.84|00010711|0|1| +21|2023-10-06T21:57:47.9370000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|726003|31050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28193976|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77|00010712|0|1| +261|2023-10-06T21:57:47.5580000-07:00|Change|10FF0003||| +261|2023-10-06T21:57:47.5580000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:57:47.9810000-07:00|40021585|Zeromus|0001070A|28121697||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:47.5580000-07:00|Change|4002174B||||||||| +261|2023-10-06T21:57:47.7520000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:57:48.0710000-07:00|40021585|Zeromus|0001070B|28113621||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:48.1610000-07:00|4002159C|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|114.00|0.00|0.79|00010713|0|0| +21|2023-10-06T21:57:48.1610000-07:00|4002159D|Zeromus|8CF8|unknown_8cf8|4002159D|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|114.00|0.00|0.79|44|44|0|10000|||100.00|114.00|0.00|0.79|00010714|0|1| +21|2023-10-06T21:57:48.1610000-07:00|4002159E|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||93.00|93.00|0.00|0.79|00010715|0|0| +21|2023-10-06T21:57:48.1610000-07:00|4002159F|Zeromus|8CF8|unknown_8cf8|4002159F|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||93.00|93.00|0.00|0.79|44|44|0|10000|||93.00|93.00|0.00|0.79|00010716|0|1| +21|2023-10-06T21:57:48.1610000-07:00|400215A1|Zeromus|8CF8|unknown_8cf8|400215A1|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|86.00|0.00|0.79|44|44|0|10000|||100.00|86.00|0.00|0.79|00010717|0|1| +21|2023-10-06T21:57:48.1610000-07:00|400215A0|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|86.00|0.00|0.79|00010718|0|0| +261|2023-10-06T21:57:47.7520000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:57:47.7520000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:57:47.7520000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T21:57:47.7520000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T21:57:47.7520000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T21:57:47.7520000-07:00|Change|4002159D||||||||||||| +04|2023-10-06T21:57:47.7520000-07:00|40021749|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||85.98|119.67|0.00|2.31| +261|2023-10-06T21:57:47.7520000-07:00|Change|40021750||||||||| +261|2023-10-06T21:57:47.7520000-07:00|Remove|40021749| +37|2023-10-06T21:57:48.2490000-07:00|40021585|Zeromus|0001070D|28094590||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:48.2490000-07:00|10FF0003|Gegehi Gehi|0001070D|73814|73814|5600|10000|0||116.32|85.03|0.00|-1.65|2300|0|0|01|040004D2|0|41F00000|| +39|2023-10-06T21:57:48.2490000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||116.08|84.46|0.00|-1.84| +21|2023-10-06T21:57:48.2490000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|3EBE0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|28113621|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||112.87|86.47|0.00|-1.02|00010719|0|1| +38|2023-10-06T21:57:48.2490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|19||112.87|86.47|0.00|-1.02|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:48.2490000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:57:48.2490000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5600|10000|0||116.32|85.03|0.00|-1.65|0|0|0||||||||||||||||||| +37|2023-10-06T21:57:48.2940000-07:00|10FF000A|Dukaro Nezikaro|0001070E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|1E00|0|0|01|04000A81|0|41F00000|| +38|2023-10-06T21:57:48.2940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:57:48.3380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94150|129844|10000|10000|0||115.14|85.48|0.00|-2.33|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:48.3380000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T21:57:47.8740000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:57:48.3830000-07:00|40021585|Zeromus|00010710|28091913||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:48.4280000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|550003|4ED10000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|28091913|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|0001071A|0|1| +38|2023-10-06T21:57:48.4280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:48.4280000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +38|2023-10-06T21:57:48.4730000-07:00|40021585|Zeromus|005A5A00|28091913|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:48.4730000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +21|2023-10-06T21:57:48.5170000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|B580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|28091913|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77|0001071B|0|1| +37|2023-10-06T21:57:48.5600000-07:00|40021585|Zeromus|00010712|28079364||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:48.6060000-07:00|10FF0007|Kehabiqo Febiqo|0001070F|99382||||||114.34|86.64|0.00|-1.26| +24|2023-10-06T21:57:48.6060000-07:00|40021585|Zeromus|DoT|35D|11665|28079364|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77| +38|2023-10-06T21:57:48.6060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||117.27|83.63|0.00|-1.77|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:48.6060000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T21:57:48.6060000-07:00|40021585|Zeromus|005A5A00|28008095|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:48.6060000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|90216| +24|2023-10-06T21:57:48.6510000-07:00|40021585|Zeromus|DoT|0|2A0A|28079364|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9881|10000|||116.04|84.48|0.00|-1.20| +20|2023-10-06T21:57:48.6510000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|114.92|85.16|0.00|-1.03| +36|2023-10-06T21:57:48.6520000-07:00|3124|3| +38|2023-10-06T21:57:48.6520000-07:00|40021585|Zeromus|005A5A00|27997333|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:57:48.6950000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|2.27| +37|2023-10-06T21:57:48.7840000-07:00|40021585|Zeromus|0001070C|27978440||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:48.7840000-07:00|10FF0001|Sesuga Sapisuga|0001070C|129071|129071|6200|10000|0||115.89|84.62|0.00|-1.85|1300|0|0|0| +261|2023-10-06T21:57:48.3970000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:48.3970000-07:00|Change|4002174E||||||||| +37|2023-10-06T21:57:48.8740000-07:00|40021585|Zeromus|00010719|27962378||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:48.8740000-07:00|10FF0006|Wowobora Gogobora|00010719|81809|81809|8600|10000|19||110.16|87.67|0.00|-1.29|1B00|0|0|01|01000B25|0|0|| +21|2023-10-06T21:57:48.8740000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|1E0A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27978440|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||110.16|87.67|0.00|-1.29|0001071C|0|1| +38|2023-10-06T21:57:48.8740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|19||110.16|87.67|0.00|-1.29|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:48.8740000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:57:48.5980000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:57:49.0070000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|36200000|143E|340000|200004|27468000|11B|2A8000|0|0|0|0|0|0|0|0|27962378|40478540|10000|10000|||100.00|80.10|0.00|0.00|99382|129844|10000|10000|||114.21|86.82|0.00|-1.07|0001071D|0|1| +04|2023-10-06T21:57:48.5980000-07:00|4002174B|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||93.98|119.67|0.00|2.29| +261|2023-10-06T21:57:48.5980000-07:00|Remove|4002174B| +39|2023-10-06T21:57:49.0970000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8200|10000|||114.92|85.16|0.00|-1.90| +39|2023-10-06T21:57:49.1410000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77| +39|2023-10-06T21:57:49.1410000-07:00|10FF0003|Gegehi Gehi|73814|73814|5800|10000|||113.44|87.54|0.00|-0.87| +21|2023-10-06T21:57:49.1410000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3D5C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|99382|129844|10000|10000|||114.18|86.84|0.00|-2.04|27962378|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001071E|0|1| +261|2023-10-06T21:57:48.7110000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:57:49.1850000-07:00|40021585|Zeromus|00010711|27939347||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:49.1850000-07:00|40021585|Zeromus|0001071A|27919170||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:48.7110000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:57:49.2320000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|754003|56BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27962378|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|0001071F|0|1| +38|2023-10-06T21:57:49.2320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:49.2320000-07:00|A81|Meisui|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T21:57:49.2760000-07:00|40021585|Zeromus|0001071B|27916266||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:49.2760000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8800|10000|||109.81|87.77|0.00|-2.25| +21|2023-10-06T21:57:49.2760000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|44710000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|27962378|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||117.27|83.63|0.00|-1.77|00010720|0|1| +21|2023-10-06T21:57:49.2760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27962378|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6200|10000|||114.49|85.92|0.00|-0.82|00010721|0|1| +38|2023-10-06T21:57:49.2760000-07:00|40021585|Zeromus|005A5A00|27916266|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:49.2760000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +31|2023-10-06T21:57:49.2760000-07:00|10FF0001||||| +261|2023-10-06T21:57:48.8250000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:57:49.4080000-07:00|40021768|Topaz Titan|005A5A00|0|77698|0|10000|0||103.08|88.01|0.00|-2.98|0|0|0||||||| +26|2023-10-06T21:57:49.4080000-07:00|30|Well Fed|813.22|10FF0006|Wowobora Gogobora|40021768|Topaz Titan|2964|77698|81809| +261|2023-10-06T21:57:48.9440000-07:00|Change|40021768||||| +261|2023-10-06T21:57:48.9440000-07:00|Change|40021768||||| +38|2023-10-06T21:57:49.4540000-07:00|4002176F||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||||||||| +21|2023-10-06T21:57:49.4540000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|11E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27916266|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||109.68|87.89|0.00|-0.77|00010722|0|1| +38|2023-10-06T21:57:49.4540000-07:00|4002176F||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||||||||| +21|2023-10-06T21:57:49.5870000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|395D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27916266|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8200|10000|||114.92|85.18|0.00|-0.91|00010723|0|1| +37|2023-10-06T21:57:49.6310000-07:00|40021585|Zeromus|0001071C|27908576||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:49.6770000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|14C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27916266|40478540|10000|10000|||100.00|80.10|0.00|0.00|99382|129844|10000|10000|||112.74|87.80|0.00|-1.52|00010724|0|1| +261|2023-10-06T21:57:49.2960000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:57:49.8100000-07:00|40021585|Zeromus|00010721|27906062||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:49.8100000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6400|10000|||111.62|88.57|0.00|-0.83| +261|2023-10-06T21:57:49.3970000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:49.3970000-07:00|Add|4002176F||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:49.4940000-07:00|Remove|40021750| +261|2023-10-06T21:57:49.4940000-07:00|Change|4002176F||| +03|2023-10-06T21:57:49.4940000-07:00|4002176F|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||108.30|86.76|0.00|0.91| +261|2023-10-06T21:57:49.4940000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:57:49.8540000-07:00|40021585|Zeromus|0001071F|27883859||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:49.9440000-07:00|10FF0007|Kehabiqo Febiqo|0001071E|83674||||||111.16|88.77|0.00|-1.05| +37|2023-10-06T21:57:49.9900000-07:00|40021585|Zeromus|00010722|27883573||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:49.9900000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|3AB80000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27883859|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6400|10000|||110.67|89.45|0.00|-0.83|00010725|0|1| +21|2023-10-06T21:57:49.9900000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|734003|DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27883859|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||113.08|86.56|0.00|-1.14|00010726|0|1| +38|2023-10-06T21:57:49.9900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|0||110.67|89.45|0.00|-0.83|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:57:49.9900000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T21:57:50.0350000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|ACC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27883859|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|00010727|0|1| +261|2023-10-06T21:57:49.8020000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:57:50.0790000-07:00|40021585|Zeromus|00010720|27866052||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:50.1680000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7800|10000|||112.56|86.87|0.00|-1.07|81541|81541|7800|10000|||112.56|86.87|0.00|-1.07|00010728|0|1| +37|2023-10-06T21:57:50.2130000-07:00|40021585|Zeromus|00010724|27860734||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:49.9180000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:57:49.9180000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:57:50.3470000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85| +37|2023-10-06T21:57:50.3910000-07:00|40021585|Zeromus|00010723|27846049||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:50.3910000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||114.05|85.60|0.00|-1.04|90216|90216|10000|10000|||114.05|85.60|0.00|-1.04|00010729|0|1| +21|2023-10-06T21:57:50.3910000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27860734|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5800|10000|||112.58|93.29|0.00|0.14|0001072A|0|1| +38|2023-10-06T21:57:50.3910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||114.05|85.60|0.00|-1.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:50.3910000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +39|2023-10-06T21:57:50.4800000-07:00|10FF0007|Kehabiqo Febiqo|84972|129844|10000|10000|||107.74|89.72|0.00|-1.29| +34|2023-10-06T21:57:50.4800000-07:00|4002176F|Carbuncle|4002176F|Carbuncle|01| +38|2023-10-06T21:57:50.4800000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||107.82|91.39|0.00|-0.86|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:50.1500000-07:00|Change|4002176F||||||||| +37|2023-10-06T21:57:50.5240000-07:00|40021585|Zeromus|0001071D|27832193||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:50.5240000-07:00|10FF0007|Kehabiqo Febiqo|0001071D|95026||||||107.74|89.72|0.00|-1.29| +37|2023-10-06T21:57:50.5240000-07:00|40021585|Zeromus|00010726|27831970||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:50.5680000-07:00|40021585|Zeromus|00010727|27829206||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:50.5680000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|112.77|94.09|0.00|0.24| +21|2023-10-06T21:57:50.5680000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|0001072B|0|1| +38|2023-10-06T21:57:50.5680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:50.5680000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +04|2023-10-06T21:57:50.2620000-07:00|4002174E|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||105.97|119.66|0.00|2.47| +261|2023-10-06T21:57:50.2620000-07:00|Remove|4002174E| +261|2023-10-06T21:57:50.2620000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:50.3540000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:50.3540000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:57:50.7480000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|40D70000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|27829206|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8800|10000|||103.98|92.58|0.00|-0.97|0001072C|0|1| +38|2023-10-06T21:57:50.7480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|19||103.98|92.58|0.00|-0.97|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:50.7480000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:50.7910000-07:00|10FF0004|Buhojaqe Zijaqe|00010728|81541|81541|7800|10000|0||109.73|88.99|0.00|-0.83|1C00|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:57:50.7910000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T21:57:50.9260000-07:00|40021585|Zeromus|0001072A|27829145||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:50.6420000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:57:51.0140000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|FCC0E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|27829145|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|7800|10000|||108.71|90.55|0.00|-0.64|0001072D|0|1| +21|2023-10-06T21:57:51.0600000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|83502|83502|10000|10000|||115.47|84.55|0.00|-1.85|0001072E|0|1| +38|2023-10-06T21:57:51.0600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.55|0.00|-1.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:51.0600000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +21|2023-10-06T21:57:51.1020000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|143C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|95026|129844|10000|10000|||105.23|92.17|0.00|-1.37|73956|77430|10000|10000|||99.93|97.92|0.00|3.12|0001072F|0|1| +261|2023-10-06T21:57:50.6420000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:57:51.1480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6400|10000|0||112.59|87.19|0.00|-2.35|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:57:51.1480000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T21:57:51.1930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|15120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27829145|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||111.13|87.44|0.00|-1.01|00010730|0|1| +38|2023-10-06T21:57:51.1930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||111.13|87.44|0.00|-1.01|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:51.1930000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|296C|90216|90216| +39|2023-10-06T21:57:51.2370000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||105.10|95.15|0.00|-0.60| +37|2023-10-06T21:57:51.2800000-07:00|40021585|Zeromus|00010725|27814113||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:51.2800000-07:00|10FF0001|Sesuga Sapisuga|00010725|129071|129071|6800|10000|0||113.04|86.73|0.00|-2.35|1300|0|0|0| +261|2023-10-06T21:57:50.9880000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T21:57:50.9880000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:57:51.3700000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|1CD80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27814113|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||101.55|94.89|0.00|-0.92|00010731|0|1| +38|2023-10-06T21:57:51.3700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|19||101.55|94.89|0.00|-0.92|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:51.3700000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:51.4140000-07:00|40021585|Zeromus|0001072C|27797514||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:51.1020000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:57:51.4580000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|197B0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|27797514|40478540|10000|10000|||100.00|80.10|0.00|0.00|95026|129844|10000|10000|||101.77|92.67|0.00|-1.38|00010732|0|1| +21|2023-10-06T21:57:51.5480000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27797514|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||112.26|85.85|0.00|-2.38|00010733|0|1| +31|2023-10-06T21:57:51.5480000-07:00|10FF0001||||| +261|2023-10-06T21:57:51.2120000-07:00|Change|4002176F||||||||| +261|2023-10-06T21:57:51.2120000-07:00|Change|10FF000B||||||||| +21|2023-10-06T21:57:51.5930000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|554003|71570000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|27797514|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||115.47|84.53|0.00|-1.63|00010734|0|1| +38|2023-10-06T21:57:51.5930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.53|0.00|-1.63|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:51.5930000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T21:57:51.5930000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T21:57:51.6380000-07:00|40021585|Zeromus|0001072D|27797514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:57:51.6380000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +38|2023-10-06T21:57:51.6380000-07:00|40021585|Zeromus|005A5A00|27797514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:51.6380000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +39|2023-10-06T21:57:51.6830000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|2.77| +24|2023-10-06T21:57:51.6830000-07:00|40021585|Zeromus|DoT|0|2216|27797514|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|10000|10000|||104.04|97.49|0.00|-0.45| +22|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0004|Buhojaqe Zijaqe|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|00010735|0|8| +22|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF000B|Pusu Rosu|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||104.04|97.49|0.00|-0.45|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|00010735|1|8| +22|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0008|Kokosaze Lulusaze|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||108.55|89.46|0.00|-0.90|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|00010735|2|8| +22|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0003|Gegehi Gehi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5800|10000|||113.08|95.54|0.00|-2.44|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|00010735|3|8| +22|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0006|Wowobora Gogobora|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8500|10000|||101.31|95.24|0.00|-3.06|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|00010735|4|8| +22|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0007|Kehabiqo Febiqo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|95026|129844|10000|10000|||101.07|92.80|0.00|-3.07|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|00010735|5|8| +22|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0001|Sesuga Sapisuga|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6800|10000|||112.03|85.61|0.00|-2.39|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|00010735|6|8| +22|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF000A|Dukaro Nezikaro|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||115.47|84.53|0.00|-1.63|81541|81541|7400|10000|||108.35|91.33|0.00|-2.47|00010735|7|8| +36|2023-10-06T21:57:51.6830000-07:00|3200|3| +38|2023-10-06T21:57:51.6830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95026|129844|10000|10000|0||101.07|92.80|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:51.6830000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +26|2023-10-06T21:57:51.6830000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +38|2023-10-06T21:57:51.6830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||108.55|89.46|0.00|-0.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:51.6830000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +26|2023-10-06T21:57:51.6830000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +38|2023-10-06T21:57:51.6830000-07:00|40021585|Zeromus|005A5A00|27788788|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:57:51.6830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|19||101.31|95.24|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:51.6830000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +26|2023-10-06T21:57:51.6830000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +38|2023-10-06T21:57:51.6830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6800|10000|0||112.03|85.61|0.00|-2.39|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:57:51.6830000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +26|2023-10-06T21:57:51.6830000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +38|2023-10-06T21:57:51.6830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7400|10000|0||108.35|91.33|0.00|-2.47|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:51.6830000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T21:57:51.6830000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +38|2023-10-06T21:57:51.6830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5800|10000|0||113.08|95.54|0.00|-2.44|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:51.6830000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +26|2023-10-06T21:57:51.6830000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +38|2023-10-06T21:57:51.6830000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||104.04|97.49|0.00|-0.45|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:51.6830000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +26|2023-10-06T21:57:51.6830000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|1E|79209|81541| +30|2023-10-06T21:57:51.6830000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T21:57:51.6830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||115.47|84.53|0.00|-1.63|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:51.6830000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +26|2023-10-06T21:57:51.6830000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|83502|81541| +261|2023-10-06T21:57:51.4020000-07:00|Change|10FF0001||||||||| +26|2023-10-06T21:57:51.7710000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T21:57:51.7710000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|46ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27788788|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.98|90.02|0.00|-0.87|00010736|0|1| +20|2023-10-06T21:57:51.7710000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|103.90|97.85|0.00|-0.43| +37|2023-10-06T21:57:51.9050000-07:00|10FF0007|Kehabiqo Febiqo|0001072F|100206|129844|10000|10000|0||99.98|92.38|0.00|-2.64|1500|0|0|02|02000A97|0|C1A00000|||||| +37|2023-10-06T21:57:51.9500000-07:00|40021585|Zeromus|00010730|27783394||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:51.9500000-07:00|10FF0008|Kokosaze Lulusaze|00010730|90216|90216|10000|10000|0||107.32|90.68|0.00|-2.57|1F00|0|0|02|04000A97|0|C1A00000|||||| +37|2023-10-06T21:57:51.9960000-07:00|40021585|Zeromus|00010732|27776871||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:51.9960000-07:00|10FF0007|Kehabiqo Febiqo|00010732|100206|129844|10000|10000|0||99.97|91.73|0.00|-2.77|1500|0|0|02|02000A97|0|C1A00000|||||| +21|2023-10-06T21:57:51.9960000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|452003|57800000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|27783394|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5800|10000|||113.08|95.54|0.00|-2.44|00010737|0|1| +38|2023-10-06T21:57:51.9960000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5600|10000|0||113.08|95.54|0.00|-2.44|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:51.9960000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:57:51.9960000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:57:51.5930000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:57:52.0860000-07:00|40021585|Zeromus|00010733|27774848||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:52.0860000-07:00|10FF0001|Sesuga Sapisuga|00010733|129071|129071|6800|10000|0||109.72|83.53|0.00|-2.75|1300|0|0|02|03000A97|0|C1A00000|||||| +39|2023-10-06T21:57:52.0860000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7600|10000|||107.42|94.75|0.00|-0.90| +261|2023-10-06T21:57:51.6950000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:57:52.1300000-07:00|40021585|Zeromus|00010731|27767464||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:52.1300000-07:00|10FF0006|Wowobora Gogobora|00010731|81809|81809|8500|10000|19||101.18|95.41|0.00|-3.06|1B00|0|0|02|01000A97|0|C1A00000|||||| +39|2023-10-06T21:57:52.1300000-07:00|10FF0003|Gegehi Gehi|73814|73814|5800|10000|||113.08|95.54|0.00|-2.44| +38|2023-10-06T21:57:52.1300000-07:00|40021585|Zeromus|005A5A00|27767464|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:52.1300000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +39|2023-10-06T21:57:52.1740000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||106.21|91.79|0.00|-2.11| +21|2023-10-06T21:57:52.1740000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3AF10000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|100206|129844|10000|10000|||99.99|91.19|0.00|-2.93|27776871|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010738|0|1| +21|2023-10-06T21:57:52.2190000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B5E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27767464|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||114.91|82.14|0.00|-1.61|00010739|0|1| +38|2023-10-06T21:57:52.2640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5800|10000|0||113.13|95.80|0.00|-1.79|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:52.2640000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:57:52.3090000-07:00|10FF0004|Buhojaqe Zijaqe|00010735|81541|81541|7600|10000|0||107.20|95.66|0.00|-0.58|1C00|0|0|02|07000A97|0|41A00000|||||| +37|2023-10-06T21:57:52.3090000-07:00|40021585|Zeromus|00010734|27738449||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:52.3090000-07:00|10FF000A|Dukaro Nezikaro|00010734|83502|83502|10000|10000|0||114.74|81.81|0.00|-1.59|1E00|0|0|03|04000A82|01|41F00000|||||||||| +39|2023-10-06T21:57:52.3090000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8700|10000|||101.18|95.42|0.00|-2.62| +21|2023-10-06T21:57:52.3090000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|14CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27738449|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.37|92.63|0.00|-2.87|0001073A|0|1| +38|2023-10-06T21:57:52.3090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7600|10000|0||107.27|96.58|0.00|-0.41|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:57:52.3090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||114.74|81.81|0.00|-1.59|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:57:51.9340000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:57:51.9340000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:57:52.3970000-07:00|40021585|Zeromus|00010736|27720292||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:52.3970000-07:00|10FF0008|Kokosaze Lulusaze|00010736|90216|90216|10000|10000|0||105.37|92.63|0.00|-2.87|1F00|0|0|02|04000A97|0|C1A00000|||||| +38|2023-10-06T21:57:52.3970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||105.37|92.63|0.00|-2.87|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:52.3970000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +37|2023-10-06T21:57:52.4420000-07:00|10FF000B|Pusu Rosu|00010735|79209|79209|10000|10000|0||103.75|98.41|0.00|-2.94|1801|0|0|02|02000A97|0|41A00000|||||| +38|2023-10-06T21:57:52.4420000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||103.75|98.41|0.00|-2.94|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:57:52.4870000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|2B9F0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|27720292|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6800|10000|||107.28|83.97|0.00|-3.03|0001073B|0|1| +38|2023-10-06T21:57:52.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6800|10000|0||107.28|83.97|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:57:52.4870000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T21:57:52.4870000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T21:57:52.1590000-07:00|Change|10FF0001||||||||| +38|2023-10-06T21:57:52.5310000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||99.93|97.92|0.00|-3.13|0|0|0||||||| +30|2023-10-06T21:57:52.5310000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002164C|Ruby Carbuncle|00|77430|73814| +38|2023-10-06T21:57:52.5310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|7600|10000|0||107.52|98.60|0.00|-0.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:52.5310000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T21:57:52.5760000-07:00|10FF0008|Kokosaze Lulusaze|00010735|90216|90216|10000|10000|0||103.76|94.21|0.00|-1.79|1F02|0|0|02|04000A97|0|41A00000|||||| +21|2023-10-06T21:57:52.5760000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27720292|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||101.16|95.44|0.00|-1.50|0001073C|0|1| +38|2023-10-06T21:57:52.5760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||103.76|94.21|0.00|-1.79|0|0|0||||||||||||||||||| +261|2023-10-06T21:57:52.2590000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:57:52.2590000-07:00|Change|10FF000B||||||||||||||||||||| +38|2023-10-06T21:57:52.6660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||114.67|81.68|0.00|-1.58|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:52.6660000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|83502|73814| +37|2023-10-06T21:57:52.7100000-07:00|10FF0003|Gegehi Gehi|00010735|73814|73814|5800|10000|0||113.51|98.17|0.00|-0.15|2303|0|0|02|03000A97|0|41A00000|||||| +21|2023-10-06T21:57:52.7100000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|40860000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|27720292|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||103.75|98.41|0.00|-2.94|0001073D|0|1| +38|2023-10-06T21:57:52.7100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5800|10000|0||113.51|98.17|0.00|-0.15|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:52.3610000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:57:52.7540000-07:00|40021585|Zeromus|00010739|27717382||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:52.7540000-07:00|10FF000A|Dukaro Nezikaro|00010739|83502|83502|10000|10000|0||114.67|81.68|0.00|-1.58|1E00|0|0|02|05000A97|0|C1A00000|||||| +37|2023-10-06T21:57:52.7990000-07:00|40021585|Zeromus|00010737|27694982||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:52.7990000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7000|10000|||106.30|84.15|0.00|-2.90| +38|2023-10-06T21:57:52.7990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100206|129844|10000|10000|0||100.02|89.89|0.00|2.96|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:52.7990000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +37|2023-10-06T21:57:52.8440000-07:00|10FF0006|Wowobora Gogobora|00010735|81809|81809|8700|10000|19||99.87|98.04|0.00|-0.42|1B04|0|0|02|01000A97|0|41A00000|||||| +38|2023-10-06T21:57:52.8440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|19||99.87|98.04|0.00|-0.42|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:57:52.9330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|0||106.29|84.55|0.00|-2.10|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:52.9330000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +261|2023-10-06T21:57:52.5470000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:57:52.9780000-07:00|10FF0007|Kehabiqo Febiqo|00010738|85117|129844|10000|10000|0||100.00|89.88|0.00|2.98|1500|0|0|02|02000A97|0|C1A00000|||||| +37|2023-10-06T21:57:52.9780000-07:00|10FF0007|Kehabiqo Febiqo|00010735|85117|129844|10000|10000|0||100.00|89.88|0.00|2.98|1505|0|0|02|02000A97|0|41A00000|||||| +21|2023-10-06T21:57:52.9780000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|38EC0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|27694982|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5800|10000|||113.93|100.94|0.00|0.06|0001073E|0|1| +38|2023-10-06T21:57:52.9780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85117|129844|10000|10000|0||100.00|89.88|0.00|2.98|0|0|0||||||||||||||||||| +38|2023-10-06T21:57:52.9780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|0||113.93|100.94|0.00|0.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:52.9780000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:57:52.9780000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:57:53.0670000-07:00|40021585|Zeromus|0001073B|27683815||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:53.0670000-07:00|10FF0001|Sesuga Sapisuga|0001073B|129071|129071|7000|10000|0||106.29|84.83|0.00|-0.13|1300|0|0|04|03000A97|0|C1A00000|||||||||||||| +21|2023-10-06T21:57:53.0670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|129C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27694982|40478540|10000|10000|||100.00|80.10|0.00|0.00|85117|129844|10000|10000|||99.98|89.88|0.00|3.01|0001073F|0|1| +38|2023-10-06T21:57:53.0670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|0||106.29|84.83|0.00|-0.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:57:53.0670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8150|10000|0||108.31|103.04|0.00|0.15|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:57:53.0670000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||103.75|98.41|0.00|-2.94|0|0|0|||||||||||||||| +30|2023-10-06T21:57:53.0670000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|79209|73814| +37|2023-10-06T21:57:53.1110000-07:00|40021585|Zeromus|0001073A|27678488||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:53.1110000-07:00|40021585|Zeromus|0001073C|27678283||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:53.1110000-07:00|10FF0001|Sesuga Sapisuga|00010735|129071|129071|7000|10000|0||106.29|84.83|0.00|-0.13|1306|0|0|02|03000A97|0|41A00000|||||| +38|2023-10-06T21:57:53.1110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|0||106.29|84.83|0.00|-0.13|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:57:53.1560000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|556003|81110000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|27678283|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||114.67|81.74|0.00|-1.58|00010740|0|1| +38|2023-10-06T21:57:53.1560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||114.67|81.74|0.00|-1.58|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:53.1560000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T21:57:53.2000000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|3BA10000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|27678283|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||99.19|98.22|0.00|-1.34|00010741|0|1| +38|2023-10-06T21:57:53.2000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|19||99.19|98.22|0.00|-1.34|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:53.2000000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +26|2023-10-06T21:57:53.2000000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:57:53.2000000-07:00|4002176F|Carbuncle|005A5A00|74223|77698|10000|10000|0||101.97|93.76|0.00|0.17|0|0|0|||||||||| +26|2023-10-06T21:57:53.2000000-07:00|A8F|Searing Light|3.35|10FF0006|Wowobora Gogobora|4002176F|Carbuncle|00|77698|81809| +26|2023-10-06T21:57:53.2000000-07:00|30|Well Fed|809.43|10FF0006|Wowobora Gogobora|4002176F|Carbuncle|2964|77698|81809| +26|2023-10-06T21:57:53.2000000-07:00|31|Medicated|6.78|10FF0006|Wowobora Gogobora|4002176F|Carbuncle|296E|77698|81809| +261|2023-10-06T21:57:52.8840000-07:00|Change|400215A1||||||||| +261|2023-10-06T21:57:52.8840000-07:00|Change|400215A3||||||||| +261|2023-10-06T21:57:52.8840000-07:00|Change|400215A2||||||||| +00|2023-10-06T21:57:52.0000000-07:00|0044|Zeromus|O stifled Darkness in moon abiding...| +261|2023-10-06T21:57:52.8840000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:57:53.2450000-07:00|10FF000A|Dukaro Nezikaro|00010735|83502|83502|10000|10000|0||114.67|81.74|0.00|-1.58|1E07|0|0|02|05000A97|0|41A00000|||||| +26|2023-10-06T21:57:53.2450000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T21:57:53.2450000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|22FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27678283|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.71|98.32|0.00|-0.67|00010742|0|1| +38|2023-10-06T21:57:53.2450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||114.67|81.74|0.00|-1.58|0|0|0|||||||||||||||||||||| +20|2023-10-06T21:57:53.2900000-07:00|40021585|Zeromus|8B4C|Big Bang|40021585|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:53.2900000-07:00|400215A1|Zeromus|8BDE|Big Bang|10FF0006|Wowobora Gogobora|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:57:53.2900000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:57:53.2900000-07:00|400215A2|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:57:53.2900000-07:00|400215A3|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:57:52.8840000-07:00|Change|40021585||||||||||||| +261|2023-10-06T21:57:52.9970000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:57:53.3350000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||114.68|81.88|0.00|-1.73| +261|2023-10-06T21:57:52.9970000-07:00|Change|4002159F||||||||| +261|2023-10-06T21:57:52.9970000-07:00|Change|400215A0||||||||| +261|2023-10-06T21:57:52.9970000-07:00|Change|4002159E||||||||| +261|2023-10-06T21:57:52.9970000-07:00|Change|10FF0007||||||||| +38|2023-10-06T21:57:53.3790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|0||114.09|102.07|0.00|-2.57|0|0|0|||||||||||||||||||||| +20|2023-10-06T21:57:53.4240000-07:00|4002159E|Zeromus|8BDE|Big Bang|10FF0001|Sesuga Sapisuga|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:57:53.4240000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:57:53.4240000-07:00|4002159F|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:57:53.4240000-07:00|400215A0|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:57:53.1090000-07:00|Change|4002159D||||||||| +261|2023-10-06T21:57:53.1090000-07:00|Change|4002159B||||||||| +261|2023-10-06T21:57:53.1090000-07:00|Change|4002159C||||||||| +04|2023-10-06T21:57:53.1090000-07:00|40021768|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||103.08|88.01|0.00|-2.98| +261|2023-10-06T21:57:53.1090000-07:00|Remove|40021768| +39|2023-10-06T21:57:53.4670000-07:00|10FF0007|Kehabiqo Febiqo|86415|129844|10000|10000|||98.49|88.76|0.00|3.08| +20|2023-10-06T21:57:53.5120000-07:00|4002159B|Zeromus|8BDE|Big Bang|10FF0004|Buhojaqe Zijaqe|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:57:53.5120000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:57:53.5120000-07:00|4002159C|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:57:53.5120000-07:00|4002159D|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:57:53.1090000-07:00|Change|4002159A||||||||| +261|2023-10-06T21:57:53.1090000-07:00|Change|40021598||||||||| +261|2023-10-06T21:57:53.1090000-07:00|Change|40021599||||||||| +261|2023-10-06T21:57:53.1090000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:53.1090000-07:00|Change|4002176F||||||||| +37|2023-10-06T21:57:53.6030000-07:00|40021585|Zeromus|0001073F|27673519||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:53.6030000-07:00|40021598|Zeromus|8BDE|Big Bang|10FF0007|Kehabiqo Febiqo|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:57:53.6030000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:57:53.6030000-07:00|40021599|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:57:53.6030000-07:00|4002159A|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:57:53.2010000-07:00|Change|40021597||||||||| +261|2023-10-06T21:57:53.2010000-07:00|Change|40021596||||||||| +261|2023-10-06T21:57:53.2980000-07:00|Change|10FF000B||||||||||||||||||||||| +20|2023-10-06T21:57:53.6480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|109.03|107.38|-0.02|0.12| +20|2023-10-06T21:57:53.6920000-07:00|40021595|Zeromus|8BDE|Big Bang|10FF000A|Dukaro Nezikaro|4.700|100.00|100.00|0.00|0.79| +27|2023-10-06T21:57:53.6920000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:57:53.6920000-07:00|40021596|Zeromus|8B4E|Big Bang|E0000000||5.700|88.00|100.00|0.00|0.00| +20|2023-10-06T21:57:53.6920000-07:00|40021597|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|-1.57| +261|2023-10-06T21:57:53.2980000-07:00|Change|40021595||||||||||||||| +37|2023-10-06T21:57:53.7370000-07:00|40021585|Zeromus|0001073E|27658947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:53.7370000-07:00|10FF0003|Gegehi Gehi|0001073E|73814|73814|5500|10000|0||114.36|104.65|-0.02|-0.62|2300|0|0|01|050004D3|0|41F00000|| +38|2023-10-06T21:57:53.7370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|0||114.36|104.65|-0.02|-0.62|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:53.3880000-07:00|Change|40021593||||||||| +261|2023-10-06T21:57:53.3880000-07:00|Change|40021594||||||||| +261|2023-10-06T21:57:53.3880000-07:00|Change|40021592||||||||| +261|2023-10-06T21:57:53.3880000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T21:57:53.3880000-07:00|Change|400215A3||||||||||| +261|2023-10-06T21:57:53.3880000-07:00|Change|400215A2||||||||||| +21|2023-10-06T21:57:53.7810000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|14F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27673519|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.46|-0.01|-3.13|00010743|0|1| +37|2023-10-06T21:57:53.8250000-07:00|40021585|Zeromus|00010741|27643682||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:53.8250000-07:00|10FF0006|Wowobora Gogobora|00010741|81809|81809|8400|10000|19||98.68|98.28|0.00|3.07|1B00|0|0|01|05000B25|0|0|| +20|2023-10-06T21:57:53.8250000-07:00|40021592|Zeromus|8BDE|Big Bang|10FF000B|Pusu Rosu|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:57:53.8250000-07:00|10FF000B|Pusu Rosu|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:57:53.8250000-07:00|40021593|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:57:53.8250000-07:00|40021594|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +21|2023-10-06T21:57:53.8250000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27658947|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||106.23|84.79|0.00|-2.53|00010744|0|1| +38|2023-10-06T21:57:53.8250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|19||98.68|98.28|0.00|3.07|0|0|0||||||||||||||||||||||||| +31|2023-10-06T21:57:53.8250000-07:00|10FF0001||||| +261|2023-10-06T21:57:53.4870000-07:00|Change|40021591||||||||| +261|2023-10-06T21:57:53.4870000-07:00|Change|40021590||||||||| +37|2023-10-06T21:57:53.8690000-07:00|40021585|Zeromus|00010742|27634724||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:53.8700000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27658947|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|99.47|0.00|-3.13|00010745|0|1| +21|2023-10-06T21:57:53.8700000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|454003|21BB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27658947|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||98.68|98.28|0.00|3.07|00010746|0|1| +38|2023-10-06T21:57:53.8700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|19||98.68|98.28|0.00|3.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:53.8700000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:57:53.4870000-07:00|Change|400215A0||||||||||| +261|2023-10-06T21:57:53.4870000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:57:53.4870000-07:00|Change|4002159F||||||||||| +37|2023-10-06T21:57:53.9140000-07:00|40021585|Zeromus|00010740|27601683||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:53.9140000-07:00|40021590|Zeromus|8BDE|Big Bang|10FF0003|Gegehi Gehi|4.700|100.00|80.10|0.00|0.00| +27|2023-10-06T21:57:53.9140000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:57:53.9140000-07:00|40021591|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:53.9150000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32716003|44AC0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|27658947|40478540|10000|10000|||100.00|80.10|0.00|0.00|86415|129844|10000|10000|||96.98|85.88|0.00|-2.96|00010747|0|1| +261|2023-10-06T21:57:53.4870000-07:00|Change|4002158F||||||||| +261|2023-10-06T21:57:53.4870000-07:00|Change|4002158E||||||||| +261|2023-10-06T21:57:53.4870000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:57:53.5800000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T21:57:53.5800000-07:00|Change|4002159D||||||||||| +261|2023-10-06T21:57:53.5800000-07:00|Change|4002159C||||||||||| +37|2023-10-06T21:57:54.0030000-07:00|40021585|Zeromus|0001073D|27585165||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:54.0030000-07:00|4002158E|Zeromus|8BDE|Big Bang|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T21:57:54.0030000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +20|2023-10-06T21:57:54.0030000-07:00|4002158F|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T21:57:53.5800000-07:00|Change|4002158D||||||||| +261|2023-10-06T21:57:53.5800000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:53.6980000-07:00|Change|4002159A||||||||||| +261|2023-10-06T21:57:53.6980000-07:00|Change|40021598||||||||||||| +261|2023-10-06T21:57:53.6980000-07:00|Change|40021599||||||||||| +261|2023-10-06T21:57:53.8100000-07:00|Change|40021596||||||||||| +261|2023-10-06T21:57:53.8100000-07:00|Change|40021597||||||||||| +20|2023-10-06T21:57:54.0920000-07:00|4002158D|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T21:57:54.0920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|0||98.68|98.28|0.00|3.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:54.0920000-07:00|A8E|Radiant Aegis|0.00|40021717|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T21:57:53.8100000-07:00|Change|4002158C||||||||| +261|2023-10-06T21:57:53.9200000-07:00|Change|10FF0004||||||||||||||||||||| +20|2023-10-06T21:57:54.2260000-07:00|4002158C|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +39|2023-10-06T21:57:54.2260000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||100.64|104.28|0.00|-0.70| +261|2023-10-06T21:57:53.9200000-07:00|Change|4002158B||||||||| +261|2023-10-06T21:57:53.9200000-07:00|Change|40021594||||||||||| +261|2023-10-06T21:57:53.9200000-07:00|Change|40021593||||||||||| +261|2023-10-06T21:57:53.9200000-07:00|Change|40021592||||||||||||| +20|2023-10-06T21:57:54.3150000-07:00|4002158B|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:53.9200000-07:00|Change|4002158A||||||||| +37|2023-10-06T21:57:54.3600000-07:00|40021585|Zeromus|00010744|27583456||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:54.3600000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|21770000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|86415|129844|10000|10000|||94.08|84.41|0.00|2.39|73956|77430|10000|10000|||99.93|97.92|0.00|-3.13|00010748|0|1| +261|2023-10-06T21:57:54.0330000-07:00|Change|40021590||||||||||||| +261|2023-10-06T21:57:54.0330000-07:00|Change|40021591||||||||||| +37|2023-10-06T21:57:54.4040000-07:00|40021585|Zeromus|00010743|27578087||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:54.4040000-07:00|4002158A|Zeromus|8B4E|Big Bang|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T21:57:54.4040000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.61|104.94|0.00|-0.49| +21|2023-10-06T21:57:54.4040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27583456|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||117.36|83.12|0.00|1.56|00010749|0|1| +261|2023-10-06T21:57:54.0330000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T21:57:54.1470000-07:00|Change|4002158E||||||||||||| +261|2023-10-06T21:57:54.1470000-07:00|Change|4002158F||||||||||| +21|2023-10-06T21:57:54.4940000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8400|10000|||98.68|98.28|0.00|3.07|81809|81809|8400|10000|||98.68|98.28|0.00|3.07|0001074A|0|1| +38|2023-10-06T21:57:54.4940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|0||98.68|98.28|0.00|3.07|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:54.4940000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T21:57:54.1470000-07:00|Change|4002164C||||||||||| +37|2023-10-06T21:57:54.5370000-07:00|40021585|Zeromus|00010747|27560507||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:54.2410000-07:00|Change|4002158D||||||||||| +21|2023-10-06T21:57:54.5830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30790000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27578087|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8150|10000|||109.03|109.09|0.00|-2.84|0001074B|0|1| +37|2023-10-06T21:57:54.6270000-07:00|40021585|Zeromus|00010745|27555700||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:54.6270000-07:00|40021585|Zeromus|00010746|27547065||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:54.6270000-07:00|10FF0006|Wowobora Gogobora|00010746|81809|81809|8400|10000|0||98.68|98.28|0.00|3.07|1B00|0|0|01|030000A7|0|C1200000|| +37|2023-10-06T21:57:54.6270000-07:00|10FF0006|Wowobora Gogobora|0001074A|81809|81809|8400|10000|0||98.68|98.28|0.00|3.07|1B00|0|0|01|030000A7|0|41200000|| +38|2023-10-06T21:57:54.6270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|0||98.68|98.28|0.00|3.07|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:57:54.6710000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||99.93|97.92|0.00|-2.98| +24|2023-10-06T21:57:54.6710000-07:00|40021585|Zeromus|DoT|0|193E|27560507|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9881|10000|||100.66|105.49|0.00|-1.33| +36|2023-10-06T21:57:54.6710000-07:00|32DC|3| +38|2023-10-06T21:57:54.6710000-07:00|40021585|Zeromus|005A5A00|27540603|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:54.3410000-07:00|Change|4002158C||||||||||| +26|2023-10-06T21:57:54.7160000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T21:57:54.7160000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|43130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27540603|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||104.19|98.38|0.00|1.97|0001074C|0|1| +261|2023-10-06T21:57:54.4360000-07:00|Change|4002158B||||||||||| +261|2023-10-06T21:57:54.4360000-07:00|Change|4002158A||||||||||| +37|2023-10-06T21:57:54.9380000-07:00|40021585|Zeromus|00010749|27538214||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:54.9820000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|33B30000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27540603|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||106.15|85.02|0.00|-2.25|0001074D|0|1| +38|2023-10-06T21:57:54.9820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7000|10000|0||106.15|85.02|0.00|-2.25|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:54.9820000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T21:57:54.6240000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:57:55.1150000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|7950|10000|||108.87|110.11|0.00|-1.44| +39|2023-10-06T21:57:55.1150000-07:00|10FF0003|Gegehi Gehi|73814|73814|5700|10000|||117.52|105.93|-0.01|2.40| +261|2023-10-06T21:57:54.7340000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:57:55.1600000-07:00|10FF0007|Kehabiqo Febiqo|00010748|94982||||||91.68|84.55|0.00|-2.91| +39|2023-10-06T21:57:55.1600000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||106.60|98.44|0.00|2.43| +21|2023-10-06T21:57:55.2490000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44716003|62A40000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|27538214|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||117.36|83.12|0.00|1.56|0001074E|0|1| +261|2023-10-06T21:57:54.8530000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T21:57:55.2940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8600|10000|||98.45|98.54|-0.02|-1.55| +22|2023-10-06T21:57:55.2950000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0008|Kokosaze Lulusaze|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|0001074F|0|8| +22|2023-10-06T21:57:55.2950000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0003|Gegehi Gehi|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5700|10000|||117.69|105.73|0.00|2.47|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|0001074F|1|8| +22|2023-10-06T21:57:55.2950000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000B|Pusu Rosu|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9881|10000|||100.72|106.13|0.00|-3.11|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|0001074F|2|8| +22|2023-10-06T21:57:55.2950000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0006|Wowobora Gogobora|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8400|10000|||98.45|98.54|-0.02|-1.55|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|0001074F|3|8| +22|2023-10-06T21:57:55.2950000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0004|Buhojaqe Zijaqe|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|7950|10000|||109.10|111.34|0.00|-0.51|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|0001074F|4|8| +22|2023-10-06T21:57:55.2950000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0001|Sesuga Sapisuga|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7000|10000|||106.15|85.02|0.00|-2.25|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|0001074F|5|8| +22|2023-10-06T21:57:55.2950000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000A|Dukaro Nezikaro|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||117.36|83.12|0.00|1.56|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|0001074F|6|8| +22|2023-10-06T21:57:55.2950000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0007|Kehabiqo Febiqo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|94982|129844|10000|10000|||91.31|84.61|0.00|-2.92|90216|90216|10000|10000|||106.29|98.44|0.00|2.77|0001074F|7|8| +261|2023-10-06T21:57:54.8530000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:57:55.3380000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|316F0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|27538214|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9881|10000|||100.72|106.13|0.00|-3.11|00010750|0|1| +37|2023-10-06T21:57:55.3840000-07:00|40021585|Zeromus|0001074C|27521043||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:55.3840000-07:00|40021585|Zeromus|0001074B|27508634||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:57:55.3840000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|117.69|105.73|0.00|2.47| +261|2023-10-06T21:57:55.0890000-07:00|Change|10FF000B||||||||||||||||||||||| +39|2023-10-06T21:57:55.4280000-07:00|4002176F|Carbuncle|77698|77698|10000|10000|||100.54|97.86|0.00|-0.30| +261|2023-10-06T21:57:55.0890000-07:00|Change|4002164C||||||||||| +21|2023-10-06T21:57:55.6950000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40021585|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|27508634|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||96.08|101.32|0.00|-0.84|00010751|0|1| +21|2023-10-06T21:57:55.6950000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40021585|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27508634|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7000|10000|||106.15|85.02|0.00|-2.25|00010752|0|1| +38|2023-10-06T21:57:55.6950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||96.08|101.32|0.00|-0.84|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:55.6950000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:57:55.6950000-07:00|4002176F|Carbuncle|005A5A00|0|0|0|0|0||100.44|98.01|0.00|-0.52|0|0|0||||||| +30|2023-10-06T21:57:55.6950000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002176F|Carbuncle|00|77698|81809| +30|2023-10-06T21:57:55.6950000-07:00|31|Medicated|0.00|10FF0006|Wowobora Gogobora|4002176F|Carbuncle|296E|77698|81809| +261|2023-10-06T21:57:55.2790000-07:00|Change|4002176F||||||||||||| +261|2023-10-06T21:57:55.2790000-07:00|Change|10FF0003||||||||||||||||||||| +38|2023-10-06T21:57:55.7370000-07:00|40021776||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T21:57:55.7400000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27508634|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||96.08|101.32|0.00|-0.84|00010753|0|1| +38|2023-10-06T21:57:55.7400000-07:00|40021776||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:57:55.7830000-07:00|40021585|Zeromus|0001074E|27483382||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:55.8280000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7200|10000|||106.15|85.02|0.00|-2.25| +03|2023-10-06T21:57:55.4610000-07:00|40021776|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||96.74|104.37|0.00|2.94| +261|2023-10-06T21:57:55.4610000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:55.4610000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:57:55.4610000-07:00|Add|40021776||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:55.4610000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:57:55.4610000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:57:55.4610000-07:00|Change|40021776||||| +37|2023-10-06T21:57:55.9160000-07:00|10FF0008|Kokosaze Lulusaze|0001074F|90216|90216|10000|10000|0||111.27|98.58|0.00|1.75|1F00|0|0|01|0600079F|0|41700000|| +26|2023-10-06T21:57:55.9160000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T21:57:55.5590000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:57:56.0510000-07:00|10FF0003|Gegehi Gehi|0001074F|73814|73814|5700|10000|0||117.69|105.73|0.00|-2.54|2301|0|0|01|0200079F|0|41700000|| +26|2023-10-06T21:57:56.0510000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +38|2023-10-06T21:57:56.0510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8500|10000|0||111.40|117.14|0.00|0.33|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:57:56.0950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27483382|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7200|10000|||106.07|84.96|0.00|-3.03|00010754|0|1| +31|2023-10-06T21:57:56.0950000-07:00|10FF0001||||| +20|2023-10-06T21:57:56.1410000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|111.52|117.54|0.00|-0.01| +38|2023-10-06T21:57:56.1410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||93.15|104.67|0.00|-1.30|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:57:56.1850000-07:00|10FF000B|Pusu Rosu|0001074F|79209|79209|9481|10000|0||100.58|107.85|0.00|-0.41|1802|0|0|01|0500079F|0|41700000|| +26|2023-10-06T21:57:56.1850000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|79209|90216| +26|2023-10-06T21:57:56.1850000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T21:57:56.1850000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|47300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27483382|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||113.61|96.92|0.00|2.07|00010755|0|1| +37|2023-10-06T21:57:56.2740000-07:00|40021585|Zeromus|00010753|27483222||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:56.2740000-07:00|40021585|Zeromus|0001074D|27469987||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:56.2740000-07:00|10FF0001|Sesuga Sapisuga|0001074D|129071|129071|7600|10000|0||105.04|84.75|0.00|-3.03|1300|0|0|0| +37|2023-10-06T21:57:56.3190000-07:00|10FF0006|Wowobora Gogobora|0001074F|81809|81809|8600|10000|0||92.64|105.21|0.00|-0.76|1B03|0|0|01|0800079F|0|41700000|| +26|2023-10-06T21:57:56.3190000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +37|2023-10-06T21:57:56.3190000-07:00|40021585|Zeromus|00010752|27469987|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004A9|0|41200000|| +26|2023-10-06T21:57:56.3190000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +39|2023-10-06T21:57:56.3640000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||117.36|83.12|0.00|-1.74| +21|2023-10-06T21:57:56.3640000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|30DC0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|27483382|40478540|10000|10000|||100.00|80.10|0.00|0.00|94982|129844|10000|10000|||88.58|83.94|0.00|-3.04|00010756|0|1| +38|2023-10-06T21:57:56.3640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94982|129844|10000|10000|0||88.58|83.94|0.00|-3.04|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:56.3640000-07:00|A75|Surging Tempest|34.29|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T21:57:56.4540000-07:00|10FF0004|Buhojaqe Zijaqe|0001074F|81541|81541|8500|10000|0||111.53|117.63|0.00|-2.03|1C04|0|0|01|0600079F|0|41700000|| +26|2023-10-06T21:57:56.4540000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +39|2023-10-06T21:57:56.4540000-07:00|10FF0007|Kehabiqo Febiqo|96280|129844|10000|10000|||88.58|83.94|0.00|1.90| +21|2023-10-06T21:57:56.4540000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27469987|40478540|10000|10000|||100.00|80.10|0.00|0.00|94982|129844|10000|10000|||88.58|83.94|0.00|1.90|00010757|0|1| +21|2023-10-06T21:57:56.5430000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27469987|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||114.84|95.64|0.00|-2.35|00010758|0|1| +37|2023-10-06T21:57:56.5880000-07:00|10FF0001|Sesuga Sapisuga|0001074F|129071|129071|7600|10000|0||103.62|83.91|0.00|-3.05|1305|0|0|01|0700079F|0|41700000|| +26|2023-10-06T21:57:56.5880000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +21|2023-10-06T21:57:56.5880000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27469987|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||117.36|83.13|0.00|-1.29|00010759|0|1| +38|2023-10-06T21:57:56.5880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96280|129844|10000|10000|0||88.58|83.94|0.00|1.90|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T21:57:56.5880000-07:00|4002164C|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||102.43|98.62|0.00|-3.01|0|0|0|||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002164C|Ruby Carbuncle|00|77430|81809| +38|2023-10-06T21:57:56.5880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||115.54|95.19|0.00|-2.84|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T21:57:56.5880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||91.51|106.46|0.00|-0.71|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T21:57:56.5880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|0||103.62|83.91|0.00|-3.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T21:57:56.5880000-07:00|40021776|Emerald Garuda|005A5A00|74223|77698|10000|10000|0||96.74|104.37|0.00|2.94|0|0|0|||||||||| +26|2023-10-06T21:57:56.5880000-07:00|30|Well Fed|806.04|10FF0006|Wowobora Gogobora|40021776|Emerald Garuda|2964|77698|81809| +26|2023-10-06T21:57:56.5880000-07:00|31|Medicated|3.40|10FF0006|Wowobora Gogobora|40021776|Emerald Garuda|296E|77698|81809| +38|2023-10-06T21:57:56.5880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8500|10000|0||111.53|117.66|-0.01|-2.68|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T21:57:56.5880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5700|10000|0||117.69|105.73|0.00|-2.54|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T21:57:56.5880000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9481|10000|0||100.82|110.22|0.00|0.44|0|0|0||||||||||||||||||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +38|2023-10-06T21:57:56.5880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||117.36|83.13|0.00|-1.29|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:56.5880000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +37|2023-10-06T21:57:56.6300000-07:00|40021585|Zeromus|00010754|27468289||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:56.6310000-07:00|40021585|Zeromus|00010750|27455634||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:56.2430000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:57:56.2430000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:57:56.7200000-07:00|10FF000A|Dukaro Nezikaro|0001074F|83502|83502|10000|10000|0||117.36|83.13|0.00|-1.29|1E06|0|0|01|0300079F|0|41700000|| +26|2023-10-06T21:57:56.7200000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|83502|90216| +37|2023-10-06T21:57:56.7200000-07:00|10FF0006|Wowobora Gogobora|00010751|81809|81809|8600|10000|0||91.51|106.46|0.00|-0.71|1B00|0|0|01|05000AA5|0|0|| +38|2023-10-06T21:57:56.7200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||91.51|106.46|0.00|-0.71|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:57:56.7650000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|12FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27455634|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||116.30|94.72|0.00|2.89|0001075A|0|1| +261|2023-10-06T21:57:56.3400000-07:00|Change|40021776||| +37|2023-10-06T21:57:56.8100000-07:00|40021585|Zeromus|00010755|27437410||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:56.8100000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|156003|5E830000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|27455634|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5700|10000|||117.69|105.73|0.00|-2.54|0001075B|0|1| +38|2023-10-06T21:57:56.8100000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|0||117.69|105.73|0.00|-2.54|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:56.8100000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:57:56.8100000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:57:56.4300000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T21:57:56.8540000-07:00|10FF0007|Kehabiqo Febiqo|0001074F|96280|129844|10000|10000|0||88.58|83.91|0.00|2.17|1507|0|0|01|0100079F|0|41700000|| +26|2023-10-06T21:57:56.8540000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +20|2023-10-06T21:57:56.8540000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.80|110.18|0.00|0.77| +261|2023-10-06T21:57:56.4300000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:57:56.4300000-07:00|Change|10FF000B||||||||||||||||||| +261|2023-10-06T21:57:56.5220000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:57:56.9880000-07:00|40021585|Zeromus|00010757|27434451||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:57.0780000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4F3C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27434451|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|8500|10000|||111.53|117.66|-0.02|-3.04|0001075C|0|1| +37|2023-10-06T21:57:57.1230000-07:00|40021585|Zeromus|00010759|27431713||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:57.2110000-07:00|10FF000B|Pusu Rosu|79209|79209|9762|10000|||100.76|110.11|0.00|2.50| +261|2023-10-06T21:57:56.8500000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:57:57.2560000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8600|10000|||89.67|110.88|0.00|-0.33|81809|81809|8600|10000|||89.67|110.88|0.00|-0.33|0001075D|0|1| +37|2023-10-06T21:57:57.3010000-07:00|40021585|Zeromus|00010758|27429278||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:57.4780000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|410E0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27429278|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||101.04|82.90|0.00|-2.79|0001075E|0|1| +38|2023-10-06T21:57:57.4780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|0||101.04|82.90|0.00|-2.79|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:57.4780000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T21:57:57.5660000-07:00|40021585|Zeromus|0001075A|27424420||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:57.6100000-07:00|40021585|Zeromus|0001075B|27400225||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:57:57.6560000-07:00|40021585|Zeromus|DoT|0|1C7B|27424420|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9762|10000|||100.76|110.09|0.00|-3.12| +21|2023-10-06T21:57:57.6560000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|38660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27424420|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||118.12|92.45|0.00|-3.03|0001075F|0|1| +36|2023-10-06T21:57:57.6560000-07:00|33B8|3| +38|2023-10-06T21:57:57.6560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||118.12|92.45|0.00|-3.03|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:57.6560000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +38|2023-10-06T21:57:57.6560000-07:00|40021585|Zeromus|005A5A00|27392934|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:57.2950000-07:00|Change|4002176F||||||||| +39|2023-10-06T21:57:57.6990000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||102.43|98.62|0.00|-3.01| +21|2023-10-06T21:57:57.7880000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15760000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|96280|129844|10000|10000|||86.73|81.84|0.00|3.13|73956|77430|10000|10000|||102.43|98.62|0.00|-3.01|00010760|0|1| +21|2023-10-06T21:57:57.7880000-07:00|40021776|Emerald Garuda|64FE|Aerial Blast|40021585|Zeromus|354003|81910000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|27392934|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||96.74|104.37|0.00|2.94|00010761|0|1| +21|2023-10-06T21:57:57.7880000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|2FC60000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|27392934|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9762|10000|||100.76|110.09|0.00|-3.12|00010762|0|1| +21|2023-10-06T21:57:57.8340000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|356C0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|27392934|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5500|10000|||119.27|103.61|0.00|2.54|00010763|0|1| +38|2023-10-06T21:57:57.8340000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5200|10000|0||119.27|103.61|0.00|2.54|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:57:57.8340000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T21:57:57.8340000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:57:57.4780000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:57:57.4780000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:57:57.8770000-07:00|10FF0006|Wowobora Gogobora|0001075D|81809|81809|8600|10000|0||86.29|113.39|0.00|-1.14|1B00|0|0|01|04B4|0|41A80000|| +26|2023-10-06T21:57:57.8770000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:57.8770000-07:00|40021585|Zeromus|0001075C|27372650||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:57.4780000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:57:57.5680000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:57:58.0100000-07:00|40021585|Zeromus|00010756|27360142||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:58.1000000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|8300|10000|||112.78|118.37|0.00|0.37| +39|2023-10-06T21:57:58.1440000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||118.46|91.73|0.00|-2.13| +39|2023-10-06T21:57:58.1440000-07:00|10FF0003|Gegehi Gehi|73814|73814|5400|10000|||119.40|103.43|0.00|-2.44| +21|2023-10-06T21:57:58.1890000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|350003|4AB70000|104E0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|27360142|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||85.72|112.74|0.00|-2.20|00010764|0|1| +21|2023-10-06T21:57:58.1890000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|1A1E0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|27360142|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||119.25|85.18|0.00|1.17|00010765|0|1| +38|2023-10-06T21:57:58.1890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|0||85.72|112.74|0.00|-2.20|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:57:58.1890000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T21:57:58.1890000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T21:57:58.2780000-07:00|40021585|Zeromus|0001075F|27345704||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:58.2780000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8800|10000|||85.64|112.63|0.00|2.71| +21|2023-10-06T21:57:58.2780000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|13EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27360142|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||118.52|91.60|0.00|-2.13|00010766|0|1| +21|2023-10-06T21:57:58.2780000-07:00|400215A1|Zeromus|8BDE|Big Bang|10FF0006|Wowobora Gogobora|550003|64A10000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|81809|81809|8600|10000|||85.64|112.63|0.00|2.71|44|44|0|10000|||100.00|100.00|0.00|0.00|00010767|0|1| +38|2023-10-06T21:57:58.2780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|0||85.64|112.63|0.00|2.71|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:58.2780000-07:00|B7D|Magic Vulnerability Up|2.00|400215A1|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +261|2023-10-06T21:57:57.9140000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T21:57:57.9140000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:57:58.3670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|8CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27360142|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7600|10000|||101.04|82.90|0.00|-2.79|00010768|0|1| +31|2023-10-06T21:57:58.3670000-07:00|10FF0001||||| +21|2023-10-06T21:57:58.4110000-07:00|4002159E|Zeromus|8BDE|Big Bang|10FF0001|Sesuga Sapisuga|550003|3CB40000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|129071|129071|7600|10000|||101.04|82.90|0.00|-2.79|44|44|0|10000|||100.00|100.00|0.00|0.00|00010769|0|1| +38|2023-10-06T21:57:58.4110000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7600|10000|0||101.04|82.90|0.00|-2.79|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:57:58.4110000-07:00|B7D|Magic Vulnerability Up|2.00|4002159E|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +261|2023-10-06T21:57:58.0290000-07:00|Change|4002159E||||||||||||| +21|2023-10-06T21:57:58.5010000-07:00|4002159B|Zeromus|8BDE|Big Bang|10FF0004|Buhojaqe Zijaqe|550003|623E0000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|81541|81541|8300|10000|||112.49|118.78|0.00|-0.42|44|44|0|10000|||100.00|100.00|0.00|0.00|0001076A|0|1| +38|2023-10-06T21:57:58.5010000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8300|10000|0||112.49|118.78|0.00|-0.42|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:57:58.5010000-07:00|B7D|Magic Vulnerability Up|2.00|4002159B|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +261|2023-10-06T21:57:58.1430000-07:00|Change|4002159B||||||||||||| +20|2023-10-06T21:57:58.5450000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|112.49|118.78|0.00|-0.42| +37|2023-10-06T21:57:58.5900000-07:00|10FF0007|Kehabiqo Febiqo|00010760|101774||||||86.50|81.38|0.00|-3.13| +37|2023-10-06T21:57:58.5900000-07:00|40021585|Zeromus|00010763|27332028||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:58.5900000-07:00|10FF0003|Gegehi Gehi|00010763|73814|73814|5400|10000|0||119.52|103.26|0.00|-2.44|2300|0|0|01|040004D2|0|41F00000|| +37|2023-10-06T21:57:58.5900000-07:00|40021585|Zeromus|00010765|27325342||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:58.5900000-07:00|40021598|Zeromus|8BDE|Big Bang|10FF0007|Kehabiqo Febiqo|550003|3D990000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|96280|129844|10000|10000|||86.50|81.38|0.00|-3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|0001076B|0|1| +38|2023-10-06T21:57:58.5900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|101774|129844|10000|10000|0||86.50|81.38|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:58.5900000-07:00|B7D|Magic Vulnerability Up|2.00|40021598|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T21:57:58.5900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5400|10000|0||119.52|103.26|0.00|-2.44|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:57:58.2440000-07:00|Change|40021598||||||||||||| +21|2023-10-06T21:57:58.6800000-07:00|40021595|Zeromus|8BDE|Big Bang|10FF000A|Dukaro Nezikaro|550003|64D60000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||119.50|85.30|0.00|-1.83|44|44|0|10000|||100.00|100.00|0.00|0.00|0001076C|0|1| +38|2023-10-06T21:57:58.6800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||119.50|85.30|0.00|-1.83|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:58.6800000-07:00|B7D|Magic Vulnerability Up|2.00|40021595|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +261|2023-10-06T21:57:58.2440000-07:00|Change|40021595||||||||||||| +37|2023-10-06T21:57:58.7690000-07:00|40021585|Zeromus|0001075E|27308688||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:58.7690000-07:00|10FF0001|Sesuga Sapisuga|0001075E|129071|129071|8000|10000|0||101.04|82.90|0.00|-2.79|1300|0|0|0| +21|2023-10-06T21:57:58.7690000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|115A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27325342|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||119.52|85.31|-0.01|-1.83|0001076D|0|1| +261|2023-10-06T21:57:58.4320000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:57:58.8120000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8200|10000|||101.04|82.90|0.00|-2.79| +21|2023-10-06T21:57:58.8120000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16970000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|27308688|40478540|10000|10000|||100.00|80.10|0.00|0.00|101774|129844|10000|10000|||86.50|81.38|0.00|-3.13|0001076E|0|1| +21|2023-10-06T21:57:58.8120000-07:00|40021592|Zeromus|8BDE|Big Bang|10FF000B|Pusu Rosu|550003|624F0000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|79209|79209|9362|10000|||102.04|108.94|0.00|2.18|44|44|0|10000|||100.00|100.00|0.00|0.00|0001076F|0|1| +38|2023-10-06T21:57:58.8120000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9362|10000|0||102.04|108.94|0.00|2.18|0|0|0||||||||||||||||||| +26|2023-10-06T21:57:58.8120000-07:00|B7D|Magic Vulnerability Up|2.00|40021592|Zeromus|10FF000B|Pusu Rosu|00|79209|44| +261|2023-10-06T21:57:58.4320000-07:00|Change|40021592||||||||||||| +261|2023-10-06T21:57:58.4320000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:57:58.9030000-07:00|40021585|Zeromus|00010766|27303590||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:58.9030000-07:00|10FF0006|Wowobora Gogobora|00010767|56048|81809|8800|10000|0||85.16|111.41|-0.01|2.91|1B00|0|0|01|03000B7D|0|3FB5C291|| +37|2023-10-06T21:57:58.9030000-07:00|40021585|Zeromus|00010768|27301340||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:58.9030000-07:00|40021590|Zeromus|8BDE|Big Bang|10FF0003|Gegehi Gehi|550003|63F30000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|73814|73814|5400|10000|||119.47|103.18|0.00|-2.48|44|44|0|10000|||100.00|100.00|0.00|0.00|00010770|0|1| +38|2023-10-06T21:57:58.9030000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5400|10000|0||119.47|103.18|0.00|-2.48|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:58.9030000-07:00|B7D|Magic Vulnerability Up|2.00|40021590|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +261|2023-10-06T21:57:58.5280000-07:00|Change|40021590||||||||||||| +261|2023-10-06T21:57:58.5280000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:57:58.9920000-07:00|4002158E|Zeromus|8BDE|Big Bang|10FF0008|Kokosaze Lulusaze|550003|64FC0000|E80E|B7D0000|1B|8BDE8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||118.52|91.62|0.00|-1.83|44|44|0|10000|||100.00|100.00|0.00|0.00|00010771|0|1| +38|2023-10-06T21:57:58.9920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||118.52|91.62|0.00|-1.83|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:57:58.9920000-07:00|B7D|Magic Vulnerability Up|2.00|4002158E|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +261|2023-10-06T21:57:58.5280000-07:00|Change|4002158E||||||||||||| +37|2023-10-06T21:57:59.0350000-07:00|10FF0001|Sesuga Sapisuga|00010769|113531|129071|8200|10000|0||101.04|82.90|0.00|-2.79|1300|0|0|01|02000B7D|0|3FB5A1CD|| +37|2023-10-06T21:57:59.0800000-07:00|40021585|Zeromus|00010761|27268171||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:59.0800000-07:00|40021585|Zeromus|00010762|27255941||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:57:59.0800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8850|10000|0||112.44|118.85|0.00|-2.83|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:57:59.1250000-07:00|10FF0004|Buhojaqe Zijaqe|0001076A|56391|81541|8850|10000|0||112.44|118.85|0.00|-2.83|1C00|0|0|01|05000B7D|0|3FB5C291|| +21|2023-10-06T21:57:59.1250000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|38D80000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|27255941|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||118.53|91.82|0.00|-0.97|00010772|0|1| +38|2023-10-06T21:57:59.1690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56048|81809|9350|10000|0||85.16|111.41|0.00|2.91|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:57:59.2130000-07:00|10FF0007|Kehabiqo Febiqo|0001076B|86005|129844|10000|10000|0||86.50|81.38|0.00|1.67|1500|0|0|01|06000B7D|0|3FB5E355|| +24|2023-10-06T21:57:59.2130000-07:00|40021585|Zeromus|DoT|A92|663|27255941|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|56048|81809|9350|10000|||85.16|111.39|0.00|2.93| +37|2023-10-06T21:57:59.2130000-07:00|40021585|Zeromus|00010764|27235179||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:59.2140000-07:00|10FF0006|Wowobora Gogobora|00010764|56048|81809|9350|10000|0||85.16|111.39|0.00|2.93|1B00|0|0|01|05000A92|0|41700000|| +26|2023-10-06T21:57:59.2140000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T21:57:59.2140000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27255941|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||118.54|91.96|0.00|-1.94|00010773|0|1| +38|2023-10-06T21:57:59.2140000-07:00|40021585|Zeromus|005A5A00|27235179|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:57:59.2570000-07:00|400215A2|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010774|0|0| +21|2023-10-06T21:57:59.2570000-07:00|400215A3|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010775|0|0| +261|2023-10-06T21:57:58.8550000-07:00|Change|400215A2||||||||||| +261|2023-10-06T21:57:58.8550000-07:00|Change|400215A3||||||||||| +37|2023-10-06T21:57:59.3010000-07:00|10FF000A|Dukaro Nezikaro|0001076C|57688|83502|10000|10000|0||119.60|85.33|0.00|2.47|1E00|0|0|01|04000B7D|0|3FB624DE|| +37|2023-10-06T21:57:59.3010000-07:00|40021585|Zeromus|0001076D|27230737||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:57:59.3470000-07:00|40021585|Zeromus|0001076E|27224954||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:57:59.3470000-07:00|10FF000A|Dukaro Nezikaro|58523|83502|10000|10000|||119.61|85.34|0.00|2.21| +20|2023-10-06T21:57:59.3470000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|102.71|108.23|0.00|2.50| +261|2023-10-06T21:57:58.9760000-07:00|Change|10FF000B||||||||||||||||||| +261|2023-10-06T21:57:58.9760000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:57:59.3910000-07:00|4002159F|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010776|0|0| +21|2023-10-06T21:57:59.3910000-07:00|400215A0|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010777|0|0| +261|2023-10-06T21:57:58.9760000-07:00|Change|4002159F||||||||||| +261|2023-10-06T21:57:58.9760000-07:00|Change|400215A0||||||||||| +37|2023-10-06T21:57:59.4350000-07:00|10FF000B|Pusu Rosu|0001076F|54042|79209|9362|10000|0||102.71|108.23|0.00|2.50|1800|0|0|01|03000B7D|0|3FB5E355|| +261|2023-10-06T21:57:59.0900000-07:00|Add|40021783||||||||||||||||||||||||||||||| +261|2023-10-06T21:57:59.0900000-07:00|Remove|4002176F| +04|2023-10-06T21:57:59.0900000-07:00|4002176F|Carbuncle|00|5A|10FF0006|00||10261|13498|0|0|0|10000|||99.66|99.11|0.00|-0.62| +39|2023-10-06T21:57:59.4800000-07:00|10FF0007|Kehabiqo Febiqo|87303|129844|10000|10000|||86.50|81.38|0.00|1.67| +21|2023-10-06T21:57:59.4800000-07:00|4002159C|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010778|0|0| +21|2023-10-06T21:57:59.4800000-07:00|4002159D|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010779|0|0| +21|2023-10-06T21:57:59.4800000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2F0F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27224954|40478540|10000|10000|||100.00|80.10|0.00|0.00|56391|81541|8850|10000|||112.44|118.85|0.00|-2.83|0001077A|0|1| +261|2023-10-06T21:57:59.0900000-07:00|Change|4002159C||||||||||| +261|2023-10-06T21:57:59.0900000-07:00|Change|4002159D||||||||||| +37|2023-10-06T21:57:59.5700000-07:00|10FF0003|Gegehi Gehi|00010770|48227|73814|5400|10000|0||119.31|102.95|0.00|-2.54|2300|0|0|01|01000B7D|0|3FB0418B|| +21|2023-10-06T21:57:59.5700000-07:00|40021599|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001077B|0|0| +21|2023-10-06T21:57:59.5700000-07:00|4002159A|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001077C|0|0| +261|2023-10-06T21:57:59.1900000-07:00|Change|4002159A||||||||||| +261|2023-10-06T21:57:59.1900000-07:00|Change|40021599||||||||||| +37|2023-10-06T21:57:59.6150000-07:00|10FF0008|Kokosaze Lulusaze|00010771|64364|90216|10000|10000|0||118.63|92.24|-0.02|-2.93|1F00|0|0|01|02000B7D|0|3FB6041A|| +21|2023-10-06T21:57:59.6150000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40021585|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27224954|40478540|10000|10000|||100.00|80.10|0.00|0.00|56048|81809|9350|10000|||85.14|111.15|0.00|3.11|0001077D|0|1| +21|2023-10-06T21:57:59.6150000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|3EA40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27224954|40478540|10000|10000|||100.00|80.10|0.00|0.00|48227|73814|5400|10000|||119.31|102.95|0.00|-2.54|0001077E|0|1| +21|2023-10-06T21:57:59.6590000-07:00|40021596|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001077F|0|0| +21|2023-10-06T21:57:59.6590000-07:00|40021597|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010780|0|0| +261|2023-10-06T21:57:59.2900000-07:00|Change|40021597||||||||||| +261|2023-10-06T21:57:59.2900000-07:00|Change|40021596||||||||||| +261|2023-10-06T21:57:59.3860000-07:00|Change|10FF0001||| +21|2023-10-06T21:57:59.7910000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|726003|28000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27224954|40478540|10000|10000|||100.00|80.10|0.00|0.00|64364|90216|10000|10000|||118.75|92.34|0.00|2.61|00010781|0|1| +21|2023-10-06T21:57:59.7910000-07:00|40021593|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010782|0|0| +21|2023-10-06T21:57:59.7910000-07:00|40021594|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010783|0|0| +21|2023-10-06T21:57:59.8360000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AD20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27224954|40478540|10000|10000|||100.00|80.10|0.00|0.00|87303|129844|10000|10000|||86.50|81.38|0.00|1.67|00010784|0|1| +261|2023-10-06T21:57:59.3860000-07:00|Change|40021593||||||||||| +261|2023-10-06T21:57:59.3860000-07:00|Change|40021594||||||||||| +21|2023-10-06T21:57:59.8810000-07:00|40021591|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010785|0|0| +261|2023-10-06T21:57:59.4870000-07:00|Change|40021591||||||||||| +37|2023-10-06T21:57:59.9250000-07:00|40021585|Zeromus|00010772|27210402||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:57:59.5790000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:57:59.9700000-07:00|40021585|Zeromus|00010773|27208097||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:57:59.9700000-07:00|4002158F|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010786|0|0| +21|2023-10-06T21:57:59.9700000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|26F70000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|27210402|40478540|10000|10000|||100.00|80.10|0.00|0.00|113531|129071|8200|10000|||101.04|82.90|0.00|-2.79|00010787|0|1| +38|2023-10-06T21:57:59.9700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113531|129071|8200|10000|0||101.04|82.90|0.00|-2.79|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:57:59.9700000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T21:58:00.0150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56048|81809|9350|10000|0||85.13|111.05|0.00|2.69|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:00.0150000-07:00|31|Medicated|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|296E|81809|81809| +38|2023-10-06T21:58:00.0150000-07:00|40021776|Emerald Garuda|005A5A00|0|77698|10000|10000|0||96.74|104.37|0.00|2.94|0|0|0||||||| +30|2023-10-06T21:58:00.0150000-07:00|31|Medicated|0.00|10FF0006|Wowobora Gogobora|40021776|Emerald Garuda|296E|77698|81809| +261|2023-10-06T21:57:59.5790000-07:00|Change|4002158F||||||||||| +21|2023-10-06T21:58:00.0600000-07:00|4002158D|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010788|0|0| +261|2023-10-06T21:57:59.7020000-07:00|Change|4002158D||||||||||| +21|2023-10-06T21:58:00.1940000-07:00|4002158C|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010789|0|0| +37|2023-10-06T21:58:00.2370000-07:00|40021585|Zeromus|0001077D|27208097|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020004B3|0|41200000|| +26|2023-10-06T21:58:00.2370000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|81809| +39|2023-10-06T21:58:00.2370000-07:00|10FF000B|Pusu Rosu|54834|79209|9643|10000|||102.71|108.23|0.00|2.50| +261|2023-10-06T21:57:59.8240000-07:00|Change|4002158C||||||||||| +261|2023-10-06T21:57:59.8240000-07:00|Change|10FF000B||||| +37|2023-10-06T21:58:00.2830000-07:00|40021585|Zeromus|0001077A|27196050||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:00.2830000-07:00|4002158B|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001078A|0|0| +38|2023-10-06T21:58:00.2830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56048|81809|9350|10000|0||85.13|111.04|0.00|2.69|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:00.2830000-07:00|B7D|Magic Vulnerability Up|0.00|400215A1|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +21|2023-10-06T21:58:00.3270000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|253C0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|27208097|40478540|10000|10000|||100.00|80.10|0.00|0.00|58523|83502|10000|10000|||119.65|85.34|0.00|1.35|0001078B|0|1| +261|2023-10-06T21:57:59.9410000-07:00|Change|4002158B||||||||||| +37|2023-10-06T21:58:00.3720000-07:00|40021585|Zeromus|00010784|27193280||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:00.3720000-07:00|4002158A|Zeromus|8B4E|Big Bang|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|0001078C|0|0| +20|2023-10-06T21:58:00.3720000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|119.31|102.95|0.00|-2.44| +261|2023-10-06T21:58:00.0510000-07:00|Change|4002158A||||||||||| +261|2023-10-06T21:58:00.0510000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T21:58:00.4160000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|190C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27193280|40478540|10000|10000|||100.00|80.10|0.00|0.00|64364|90216|10000|10000|||118.91|92.48|0.00|-2.15|0001078D|0|1| +38|2023-10-06T21:58:00.4160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113531|129071|8200|10000|0||101.04|82.90|0.00|-2.79|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:58:00.4160000-07:00|B7D|Magic Vulnerability Up|0.00|4002159E|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T21:58:00.5050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56391|81541|8450|10000|0||112.44|118.85|0.00|-2.83|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:00.5050000-07:00|B7D|Magic Vulnerability Up|0.00|4002159B|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +37|2023-10-06T21:58:00.5940000-07:00|40021585|Zeromus|00010781|27183040||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:00.5940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87303|129844|10000|10000|0||86.50|81.38|0.00|1.67|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:00.5940000-07:00|B7D|Magic Vulnerability Up|0.00|40021598|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +21|2023-10-06T21:58:00.6380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AAC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27193280|40478540|10000|10000|||100.00|80.10|0.00|0.00|113531|129071|8200|10000|||101.04|82.90|0.00|-2.79|0001078E|0|1| +31|2023-10-06T21:58:00.6380000-07:00|10FF0001||||| +39|2023-10-06T21:58:00.6830000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||102.43|98.62|0.00|-3.01| +24|2023-10-06T21:58:00.6830000-07:00|40021585|Zeromus|DoT|0|1961|27183040|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|54834|79209|9643|10000|||102.71|108.23|0.00|2.50| +36|2023-10-06T21:58:00.6840000-07:00|3494|3| +38|2023-10-06T21:58:00.6840000-07:00|40021585|Zeromus|005A5A00|27176543|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:58:00.6840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58523|83502|10000|10000|0||119.65|85.34|0.00|-1.83|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:58:00.6840000-07:00|B7D|Magic Vulnerability Up|0.00|40021595|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +37|2023-10-06T21:58:00.7270000-07:00|40021585|Zeromus|0001078B|27167011||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:00.7710000-07:00|40021585|Zeromus|0001077E|27150975||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:58:00.7710000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|1F540000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|54834|79209|9643|10000|||102.71|108.23|0.00|2.50|54834|79209|9643|10000|||102.71|108.23|0.00|2.50|0001078F|0|4| +22|2023-10-06T21:58:00.7710000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|1E660000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|56391|81541|8450|10000|||112.44|118.85|0.00|-2.83|54834|79209|9643|10000|||102.71|108.23|0.00|2.50|0001078F|1|4| +22|2023-10-06T21:58:00.7710000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|1E2E0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|48227|73814|5400|10000|||119.31|102.95|0.00|-2.44|54834|79209|9643|10000|||102.71|108.23|0.00|2.50|0001078F|2|4| +22|2023-10-06T21:58:00.7710000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|200004|301B0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|56048|81809|9350|10000|||85.13|111.04|0.00|2.69|54834|79209|9643|10000|||102.71|108.23|0.00|2.50|0001078F|3|4| +38|2023-10-06T21:58:00.8160000-07:00|10FF000B|Pusu Rosu|005A5A18|54834|79209|8643|10000|0||102.71|108.23|0.00|2.50|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:00.8160000-07:00|B7D|Magic Vulnerability Up|0.00|40021592|Zeromus|10FF000B|Pusu Rosu|00|79209|44| +38|2023-10-06T21:58:00.9060000-07:00|10FF0003|Gegehi Gehi|005A5A23|48227|73814|5400|10000|0||119.31|102.95|0.00|-2.44|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:58:00.9060000-07:00|B7D|Magic Vulnerability Up|0.00|40021590|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +21|2023-10-06T21:58:00.9500000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27150975|40478540|10000|10000|||100.00|80.10|0.00|0.00|58523|83502|10000|10000|||119.65|85.34|0.00|-1.83|00010790|0|1| +38|2023-10-06T21:58:00.9940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|64364|90216|10000|10000|0||118.91|92.48|0.00|-2.15|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:58:00.9940000-07:00|B7D|Magic Vulnerability Up|0.00|4002158E|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +37|2023-10-06T21:58:01.0390000-07:00|40021585|Zeromus|0001078D|27144563||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:58:01.0390000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|56391|81541|8450|10000|||112.44|118.85|0.00|-2.83|56391|81541|8450|10000|||112.44|118.85|0.00|-2.83|00010791|0|1| +38|2023-10-06T21:58:01.0390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56391|81541|8450|10000|0||112.44|118.85|0.00|-2.83|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:01.0390000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +39|2023-10-06T21:58:01.0840000-07:00|10FF0004|Buhojaqe Zijaqe|57206|81541|8650|10000|||112.44|118.85|0.00|-2.83| +261|2023-10-06T21:58:00.7560000-07:00|Change|10FF0004||||| +39|2023-10-06T21:58:01.1290000-07:00|10FF0003|Gegehi Gehi|48965|73814|5600|10000|||119.31|102.95|0.00|-2.44| +261|2023-10-06T21:58:00.7560000-07:00|Change|10FF0003||||| +37|2023-10-06T21:58:01.1730000-07:00|40021585|Zeromus|0001078E|27141831||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:01.1730000-07:00|10FF0008|Kokosaze Lulusaze|65266|90216|10000|10000|||118.91|92.48|0.00|-2.15| +37|2023-10-06T21:58:01.2620000-07:00|40021585|Zeromus|00010787|27131856||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:01.2620000-07:00|10FF0001|Sesuga Sapisuga|00010787|113531|129071|8600|10000|0||101.04|82.90|0.00|-2.79|1300|0|0|0| +21|2023-10-06T21:58:01.2620000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32714003|296C0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|27141831|40478540|10000|10000|||100.00|80.10|0.00|0.00|87303|129844|10000|10000|||86.50|81.38|0.00|1.67|00010792|0|1| +261|2023-10-06T21:58:00.8680000-07:00|Change|10FF0001||| +261|2023-10-06T21:58:00.8680000-07:00|Change|10FF000B||||||||||||||||||||| +39|2023-10-06T21:58:01.3060000-07:00|10FF0006|Wowobora Gogobora|56866|81809|9550|10000|||85.13|111.04|0.00|2.69| +261|2023-10-06T21:58:00.8680000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:01.4840000-07:00|40021585|Zeromus|00010790|27129641||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:01.6190000-07:00|10FF000B|Pusu Rosu|0001078F|62854|79209|8643|10000|0||102.63|108.00|0.00|-2.65|1800|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:58:01.6190000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T21:58:01.6190000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|4|15560000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|54834|79209|8643|10000|||102.63|108.00|0.00|-2.65|73956|77430|10000|10000|||102.43|98.62|0.00|-1.97|00010793|0|1| +21|2023-10-06T21:58:01.6190000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1ED80000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|27129641|40478540|10000|10000|||100.00|80.10|0.00|0.00|65266|90216|10000|10000|||118.91|92.48|0.00|-2.15|00010794|0|1| +24|2023-10-06T21:58:01.6630000-07:00|10FF000B|Pusu Rosu|HoT|798|DA5|62854|79209|8643|10000|||102.44|106.99|0.00|-2.76|10FF0004|Buhojaqe Zijaqe|0|57206|81541|8650|10000|||112.44|118.82|0.00|-2.54| +37|2023-10-06T21:58:01.6630000-07:00|10FF0004|Buhojaqe Zijaqe|00010791|57206|81541|8650|10000|0||112.44|118.82|0.00|-2.54|1C00|0|0|01|03000798|0|41700000|| +26|2023-10-06T21:58:01.6630000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T21:58:01.6630000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|26EE0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|27129641|40478540|10000|10000|||100.00|80.10|0.00|0.00|56866|81809|9550|10000|||85.27|110.99|0.00|2.40|00010795|0|1| +38|2023-10-06T21:58:01.6630000-07:00|10FF000B|Pusu Rosu|005A5A18|66347|79209|8643|10000|0||102.44|106.99|0.00|-2.76|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:01.6630000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +37|2023-10-06T21:58:01.7510000-07:00|10FF0004|Buhojaqe Zijaqe|0001078F|64988|81541|8650|10000|0||112.44|118.82|0.00|-2.54|1C01|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:58:01.7510000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +39|2023-10-06T21:58:01.7950000-07:00|10FF0001|Sesuga Sapisuga|114821|129071|8800|10000|||101.04|82.90|0.00|-2.79| +21|2023-10-06T21:58:01.7950000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|452003|4FDE0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|27129641|40478540|10000|10000|||100.00|80.10|0.00|0.00|48965|73814|5600|10000|||119.31|102.95|0.00|-2.44|00010796|0|1| +38|2023-10-06T21:58:01.7950000-07:00|10FF0003|Gegehi Gehi|005A5A23|48965|73814|5400|10000|0||119.31|102.95|0.00|-2.44|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:01.7950000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:58:01.7950000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T21:58:01.3840000-07:00|Change|40021776||||| +38|2023-10-06T21:58:01.8400000-07:00|40021786||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T21:58:01.8400000-07:00|40021786||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T21:58:01.3840000-07:00|Add|40021785||||||||||||||||||||||||||||||||| +03|2023-10-06T21:58:01.3840000-07:00|40021786|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||88.16|108.91|0.00|-0.92| +261|2023-10-06T21:58:01.3840000-07:00|Add|40021786||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:01.4850000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:01.8840000-07:00|40021585|Zeromus|00010792|27119037||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:01.8840000-07:00|10FF0003|Gegehi Gehi|0001078F|56691|73814|5400|10000|0||119.31|102.95|0.00|-2.44|2302|0|0|01|05000096|0|41700000|| +26|2023-10-06T21:58:01.8840000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T21:58:01.8840000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27129641|40478540|10000|10000|||100.00|80.10|0.00|0.00|65266|90216|10000|10000|||118.85|92.50|0.00|-1.73|00010797|0|1| +261|2023-10-06T21:58:01.4850000-07:00|Change|40021786||| +37|2023-10-06T21:58:02.0190000-07:00|10FF0006|Wowobora Gogobora|0001078F|69181|81809|9250|10000|0||86.78|109.90|0.00|2.50|1B03|0|0|01|03000096|0|41700000|| +26|2023-10-06T21:58:02.0190000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +24|2023-10-06T21:58:02.0640000-07:00|10FF000B|Pusu Rosu|HoT|798|CE4|66347|79209|8643|10000|||101.01|103.97|0.00|-2.61|10FF0004|Buhojaqe Zijaqe|0|64988|81541|8650|10000|||110.36|115.58|0.00|-2.57| +24|2023-10-06T21:58:02.0640000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D6B|64988|81541|8650|10000|||110.36|115.58|0.00|-2.57|10FF0004|Buhojaqe Zijaqe|0|64988|81541|8650|10000|||110.36|115.58|0.00|-2.57| +24|2023-10-06T21:58:02.0640000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|135C|64988|81541|8650|10000|||110.36|115.58|0.00|-2.57|10FF0004|Buhojaqe Zijaqe|0|64988|81541|8650|10000|||110.36|115.58|0.00|-2.57| +20|2023-10-06T21:58:02.0640000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|110.36|115.58|0.00|-2.57| +38|2023-10-06T21:58:02.0640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73379|81541|9200|10000|0||110.36|115.58|0.00|-2.57|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:02.0640000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T21:58:02.0640000-07:00|10FF000B|Pusu Rosu|005A5A18|69647|79209|8643|10000|0||101.01|103.97|0.00|-2.61|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:58:01.6980000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:58:01.6980000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:58:01.6980000-07:00|Change|10FF000B||||||||| +24|2023-10-06T21:58:02.1520000-07:00|40021585|Zeromus|DoT|A92|53E|27119037|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|69181|81809|9250|10000|||87.64|109.26|0.00|2.37| +24|2023-10-06T21:58:02.1520000-07:00|10FF0006|Wowobora Gogobora|HoT|0|133C|69181|81809|9250|10000|||87.64|109.26|0.00|2.37|10FF0008|Kokosaze Lulusaze|0|65266|90216|10000|10000|||117.74|92.87|0.00|-1.45| +38|2023-10-06T21:58:02.1530000-07:00|40021585|Zeromus|005A5A00|27117695|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:58:02.1530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74105|81809|9800|10000|0||87.64|109.26|0.00|2.37|0|0|0|||||||||||||||||||||||||||| +22|2023-10-06T21:58:02.1970000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|31E90000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|69647|79209|8643|10000|||100.52|103.44|0.00|-2.45|69647|79209|8643|10000|||100.52|103.44|0.00|-2.45|00010798|0|6| +22|2023-10-06T21:58:02.1970000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|4C650000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|74105|81809|9800|10000|||88.30|108.78|0.00|2.28|69647|79209|8643|10000|||100.52|103.44|0.00|-2.45|00010798|1|6| +22|2023-10-06T21:58:02.1970000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|32780000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|73379|81541|9200|10000|||110.19|115.30|0.00|-2.64|69647|79209|8643|10000|||100.52|103.44|0.00|-2.45|00010798|2|6| +22|2023-10-06T21:58:02.1970000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|313C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|56691|73814|5400|10000|||119.20|102.92|-0.02|-2.41|69647|79209|8643|10000|||100.52|103.44|0.00|-2.45|00010798|3|6| +22|2023-10-06T21:58:02.1970000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|200004|4B4C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|65266|90216|10000|10000|||116.80|93.19|0.00|-1.37|69647|79209|8643|10000|||100.52|103.44|0.00|-2.45|00010798|4|6| +22|2023-10-06T21:58:02.1970000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|31340000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|114821|129071|8800|10000|||101.04|82.90|0.00|-2.79|69647|79209|8643|10000|||100.52|103.44|0.00|-2.45|00010798|5|6| +37|2023-10-06T21:58:02.2860000-07:00|40021585|Zeromus|00010795|27107729||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:02.2860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73379|81541|9200|10000|0||110.19|115.30|0.00|-2.64|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:02.2860000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +261|2023-10-06T21:58:01.9280000-07:00|Change|10FF0001||| +39|2023-10-06T21:58:02.3320000-07:00|10FF000A|Dukaro Nezikaro|59358|83502|10000|10000|||115.61|85.58|-0.01|-1.51| +37|2023-10-06T21:58:02.3750000-07:00|40021585|Zeromus|00010794|27099833||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:02.3750000-07:00|10FF0003|Gegehi Gehi|HoT|0|1368|56691|73814|5400|10000|||118.69|102.75|0.00|-2.27|10FF0004|Buhojaqe Zijaqe|0|73379|81541|9200|10000|||110.06|115.08|0.00|-2.71| +38|2023-10-06T21:58:02.3750000-07:00|10FF0003|Gegehi Gehi|005A5A23|61659|73814|5400|10000|0||118.69|102.75|0.00|-2.27|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:58:02.4210000-07:00|10FF000B|Pusu Rosu|00010793|75109||||||100.42|102.31|0.00|-2.65| +21|2023-10-06T21:58:02.4210000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42710003|2DDA0000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|27099833|40478540|10000|10000|||100.00|80.10|0.00|0.00|59358|83502|10000|10000|||115.53|85.59|0.00|-1.51|00010799|0|1| +38|2023-10-06T21:58:02.4210000-07:00|10FF000B|Pusu Rosu|005A5A18|75109|79209|8643|10000|0||100.42|102.31|0.00|-2.65|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:58:02.4210000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|1E|79209|81541| +39|2023-10-06T21:58:02.4650000-07:00|10FF0007|Kehabiqo Febiqo|88601|129844|10000|10000|||86.57|85.37|0.00|0.88| +24|2023-10-06T21:58:02.4650000-07:00|10FF000B|Pusu Rosu|HoT|0|13B4|69647|79209|8643|10000|||100.42|102.31|0.00|-2.65|10FF0004|Buhojaqe Zijaqe|0|73379|81541|9200|10000|||109.94|114.87|0.00|-2.78| +21|2023-10-06T21:58:02.4650000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2C940000|4|26B98000|0|0|0|0|0|0|0|0|0|0|0|0|27099833|40478540|10000|10000|||100.00|80.10|0.00|0.00|114821|129071|8800|10000|||101.04|82.90|0.00|-2.79|0001079A|0|1| +38|2023-10-06T21:58:02.4650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|114821|129071|7800|10000|0||101.04|82.90|0.00|-2.79|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:58:02.4650000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T21:58:02.4650000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8643|10000|0||100.42|102.31|0.00|-2.65|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:58:02.0440000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:58:02.5540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65266|90216|10000|10000|0||114.41|94.01|0.00|-1.26|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:58:02.5540000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +37|2023-10-06T21:58:02.5970000-07:00|40021585|Zeromus|00010796|27079387||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:02.6410000-07:00|40021585|Zeromus|00010797|27077029||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:02.6870000-07:00|10FF0003|Gegehi Gehi|005A5A23|61659|73814|5400|10000|0||116.15|101.94|0.00|-2.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:02.6870000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +38|2023-10-06T21:58:02.8200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74105|81809|9800|10000|0||91.94|106.51|0.00|2.15|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:02.8200000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +261|2023-10-06T21:58:02.4550000-07:00|Change|10FF0003||||||||| +34|2023-10-06T21:58:02.8650000-07:00|40021786|Carbuncle|40021786|Carbuncle|01| +261|2023-10-06T21:58:02.4550000-07:00|Change|40021786||| +37|2023-10-06T21:58:02.9090000-07:00|10FF0006|Wowobora Gogobora|00010798|81809||||||92.70|106.03|-0.02|2.14| +21|2023-10-06T21:58:02.9090000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27077029|40478540|10000|10000|||100.00|80.10|0.00|0.00|114821|129071|7800|10000|||101.72|84.25|0.00|0.26|0001079B|0|1| +31|2023-10-06T21:58:02.9090000-07:00|10FF0001||||| +38|2023-10-06T21:58:02.9530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88601|129844|10000|10000|0||87.25|87.27|0.00|0.83|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:02.9530000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +21|2023-10-06T21:58:02.9990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4D830000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|27077029|40478540|10000|10000|||100.00|80.10|0.00|0.00|73379|81541|9200|10000|||109.79|114.61|0.00|-2.86|0001079C|0|1| +261|2023-10-06T21:58:02.6410000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:58:03.0430000-07:00|10FF0004|Buhojaqe Zijaqe|00010798|81541||||||109.79|114.61|0.00|-2.86| +22|2023-10-06T21:58:03.0430000-07:00|10FF000B|Pusu Rosu|DF1|Asylum|10FF000B|Pusu Rosu|BD880F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8643|10000|||100.51|101.37|0.00|-2.98|79209|79209|8643|10000|||100.51|101.37|0.00|-2.98|0001079D|0|1| +37|2023-10-06T21:58:03.0880000-07:00|40021585|Zeromus|00010799|27065291||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:03.0880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|114821|129071|7800|10000|0||102.00|85.85|0.00|0.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:58:03.0880000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +21|2023-10-06T21:58:03.1320000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27077029|40478540|10000|10000|||100.00|80.10|0.00|0.00|59358|83502|10000|10000|||115.48|85.59|0.00|-1.41|0001079E|0|1| +261|2023-10-06T21:58:02.7530000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:58:02.7530000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:58:03.1770000-07:00|10FF0003|Gegehi Gehi|00010798|73814||||||112.12|100.68|0.00|-1.88| +21|2023-10-06T21:58:03.1770000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|354003|31070000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9800|10000|||94.55|104.81|0.00|2.16|0001079F|0|1| +37|2023-10-06T21:58:03.2210000-07:00|40021585|Zeromus|0001079A|27053879||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:03.2210000-07:00|10FF0001|Sesuga Sapisuga|0001079A|124734||||||102.03|86.59|0.00|-0.02| +39|2023-10-06T21:58:03.2210000-07:00|10FF000B|Pusu Rosu|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +21|2023-10-06T21:58:03.2210000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|88601|129844|10000|10000|||87.46|87.39|0.00|0.83|000107A0|0|1| +38|2023-10-06T21:58:03.2210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59358|83502|10000|10000|0||114.77|86.21|0.00|-1.26|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:03.2210000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|83502|81541| +261|2023-10-06T21:58:02.7530000-07:00|Change|10FF000B||||||||||| +22|2023-10-06T21:58:03.2660000-07:00|40021585|Zeromus|8B4C|Big Bang|10FF0001|Sesuga Sapisuga|750003|51B10000|BC0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|114821|129071|7800|10000|||102.03|86.59|0.00|-0.02|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107A1|0|8| +22|2023-10-06T21:58:03.2660000-07:00|40021585|Zeromus|8B4C|Big Bang|10FF0007|Kehabiqo Febiqo|750003|4F1A0000|BC0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|88601|129844|10000|10000|||87.46|87.39|0.00|0.83|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107A1|1|8| +22|2023-10-06T21:58:03.2660000-07:00|40021585|Zeromus|8B4C|Big Bang|10FF000A|Dukaro Nezikaro|750003|7E360000|660E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|59358|83502|10000|10000|||114.77|86.21|0.00|-1.26|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107A1|2|8| +22|2023-10-06T21:58:03.2660000-07:00|40021585|Zeromus|8B4C|Big Bang|10FF0008|Kokosaze Lulusaze|750003|809A0000|160E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|65266|90216|10000|10000|||109.91|95.72|0.00|-1.19|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107A1|3|8| +22|2023-10-06T21:58:03.2660000-07:00|40021585|Zeromus|8B4C|Big Bang|10FF000B|Pusu Rosu|750003|6FA10000|4A0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|79209|79209|8643|10000|||100.51|101.37|0.00|-0.73|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107A1|4|8| +22|2023-10-06T21:58:03.2660000-07:00|40021585|Zeromus|8B4C|Big Bang|10FF0003|Gegehi Gehi|750003|75450000|8B0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|61659|73814|5400|10000|||112.12|100.68|0.00|-1.88|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107A1|5|8| +22|2023-10-06T21:58:03.2660000-07:00|40021585|Zeromus|8B4C|Big Bang|10FF0006|Wowobora Gogobora|750003|70F10000|3D0E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|81809|81809|9800|10000|||94.55|104.81|0.00|2.16|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107A1|6|8| +22|2023-10-06T21:58:03.2660000-07:00|40021585|Zeromus|8B4C|Big Bang|10FF0004|Buhojaqe Zijaqe|750003|6E970000|40E|EB10000|1B|8B4C8000|0|0|0|0|0|0|0|0|0|0|81541|81541|8800|10000|||109.79|114.61|0.00|-2.76|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107A1|7|8| +21|2023-10-06T21:58:03.2660000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|712003|17260000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|114821|129071|7800|10000|||102.03|86.59|0.00|-0.02|000107A2|0|1| +21|2023-10-06T21:58:03.2660000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|756003|50430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|27065291|40478540|10000|10000|||100.00|80.10|0.00|0.00|59358|83502|10000|10000|||114.77|86.21|0.00|-1.26|000107A3|0|1| +261|2023-10-06T21:58:02.8750000-07:00|Change|40021585||||||||||||| +261|2023-10-06T21:58:02.8750000-07:00|Change|10FF000A||||||||| +00|2023-10-06T21:58:02.0000000-07:00|0044|Zeromus|Coalesce and consume creation!| +37|2023-10-06T21:58:03.3100000-07:00|10FF0008|Kokosaze Lulusaze|00010798|84542||||||109.46|95.93|0.00|-1.17| +261|2023-10-06T21:58:02.8750000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:03.4440000-07:00|40021585|Zeromus|0001079B|27052131||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:03.4440000-07:00|10FF0001|Sesuga Sapisuga|00010798|129071||||||101.94|87.89|0.00|-0.08| +261|2023-10-06T21:58:03.1040000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:58:03.1950000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:58:03.6670000-07:00|40021585|Zeromus|0001079E|27049901||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:03.6670000-07:00|40021585|Zeromus|DoT|0|21A1|27052131|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +36|2023-10-06T21:58:03.6670000-07:00|3570|3| +38|2023-10-06T21:58:03.6670000-07:00|40021585|Zeromus|005A5A00|27041292|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T21:58:03.7110000-07:00|4002164C|Ruby Carbuncle|73956|77430|10000|10000|||102.43|98.62|0.00|-2.58| +37|2023-10-06T21:58:03.7560000-07:00|40021585|Zeromus|000107A0|27038347||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:03.7560000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|31C20000|143E|340000|4|171D8000|11B|2A8000|0|0|0|0|0|0|0|0|27041292|40478540|10000|10000|||100.00|80.10|0.00|0.00|88601|129844|10000|10000|||90.16|90.16|0.00|0.75|000107A4|0|1| +21|2023-10-06T21:58:03.7560000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|150003|30AD0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|27041292|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5400|10000|||109.49|99.89|0.00|-1.87|000107A5|0|1| +38|2023-10-06T21:58:03.7560000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5200|10000|0||109.49|99.89|0.00|-1.87|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:03.7560000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T21:58:03.7560000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T21:58:03.7990000-07:00|40021585|Zeromus|0001079F|27025796||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:03.7990000-07:00|40021585|Zeromus|0001079C|27005953||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:03.8890000-07:00|10FF0006|Wowobora Gogobora|HoT|777|1507|81809|81809|9500|10000|||95.35|104.20|-0.02|2.89|10FF000B|Pusu Rosu|0|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +24|2023-10-06T21:58:03.8890000-07:00|10FF000B|Pusu Rosu|HoT|777|D81|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73|10FF000B|Pusu Rosu|0|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +24|2023-10-06T21:58:03.8890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|D90|84542|90216|10000|10000|||106.70|97.86|0.00|-0.98|10FF000B|Pusu Rosu|0|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +24|2023-10-06T21:58:03.8890000-07:00|10FF0003|Gegehi Gehi|HoT|777|D5E|73814|73814|5200|10000|||109.31|99.83|0.00|-2.72|10FF000B|Pusu Rosu|0|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +24|2023-10-06T21:58:03.8890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E08|81541|81541|8800|10000|||107.56|112.20|0.00|-2.43|10FF000B|Pusu Rosu|0|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +24|2023-10-06T21:58:03.8890000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DBE|129071|129071|7800|10000|||101.72|90.52|0.00|-0.08|10FF000B|Pusu Rosu|0|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +24|2023-10-06T21:58:03.8890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DA3|88601|129844|10000|10000|||90.70|90.74|0.00|2.44|10FF000B|Pusu Rosu|0|79209|79209|8924|10000|||100.51|101.37|0.00|-0.73| +37|2023-10-06T21:58:03.8890000-07:00|10FF000B|Pusu Rosu|0001079D|79209|79209|8924|10000|0||100.51|101.37|0.00|-0.73|1800|0|0|02|04000777|0|41C00000|||||| +26|2023-10-06T21:58:03.8890000-07:00|777|Asylum|24.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +26|2023-10-06T21:58:03.8890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T21:58:03.8890000-07:00|40021585|Zeromus|000107A3|26985406||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:03.8890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92092|129844|10000|10000|0||90.70|90.74|0.00|2.44|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:03.8890000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T21:58:03.8890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88014|90216|10000|10000|0||106.70|97.86|0.00|-0.98|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:03.8890000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T21:58:03.8890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|0||95.35|104.20|-0.02|2.89|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:03.8890000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T21:58:03.8890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7800|10000|0||101.72|90.52|0.00|-0.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:03.8890000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T21:58:03.8890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|8800|10000|0||107.56|112.20|0.00|-2.43|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:03.8890000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T21:58:03.8890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5200|10000|0||109.31|99.83|0.00|-2.72|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:03.8890000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T21:58:03.8890000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8924|10000|0||100.51|101.37|0.00|-0.73|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:58:03.4860000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:58:03.9770000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|712003|4A390000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|26985406|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7800|10000|||101.67|91.11|0.00|-0.08|000107A6|0|1| +21|2023-10-06T21:58:04.0220000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26985406|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||96.72|103.00|0.00|2.57|000107A7|0|1| +261|2023-10-06T21:58:03.6700000-07:00|Change|40021786||||||||| +261|2023-10-06T21:58:03.6700000-07:00|Change|10FF0004||||||||| +38|2023-10-06T21:58:04.1120000-07:00|40021585|Zeromus|005A5A00|26985406|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +38|2023-10-06T21:58:04.1120000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8924|10000|0||100.51|101.37|0.00|-0.73|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||10FF000B|Pusu Rosu|00|79209|| +38|2023-10-06T21:58:04.1120000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8924|10000|0||100.51|101.37|0.00|-0.73|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF000B|Pusu Rosu|00|79209|| +38|2023-10-06T21:58:04.1120000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8924|10000|0||100.51|101.37|0.00|-0.73|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF000B|Pusu Rosu|00|79209|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8800|10000|0||106.52|110.70|0.00|-2.50|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|81541|| +38|2023-10-06T21:58:04.1120000-07:00|4002164C|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||102.43|98.62|0.00|-3.01|0|0|0||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||4002164C|Ruby Carbuncle|00|77430|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8800|10000|0||106.52|110.70|0.00|-2.50|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|81541|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8800|10000|0||106.52|110.70|0.00|-2.50|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|81541|| +38|2023-10-06T21:58:04.1120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||110.51|89.98|0.00|-1.04|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||10FF000A|Dukaro Nezikaro|00|83502|| +38|2023-10-06T21:58:04.1120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||110.51|89.98|0.00|-1.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF000A|Dukaro Nezikaro|00|83502|| +38|2023-10-06T21:58:04.1120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||110.51|89.98|0.00|-1.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF000A|Dukaro Nezikaro|00|83502|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||105.27|98.92|0.00|-0.95|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||10FF0008|Kokosaze Lulusaze|00|90216|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||105.27|98.92|0.00|-0.95|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0008|Kokosaze Lulusaze|00|90216|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||105.27|98.92|0.00|-0.95|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0008|Kokosaze Lulusaze|00|90216|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||92.07|92.25|0.00|1.29|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||10FF0007|Kehabiqo Febiqo|00|129844|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||92.07|92.25|0.00|1.29|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0007|Kehabiqo Febiqo|00|129844|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||92.07|92.25|0.00|1.29|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0007|Kehabiqo Febiqo|00|129844|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9500|10000|0||97.41|102.42|0.00|2.25|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T21:58:04.1120000-07:00|40021786|Carbuncle|005A5A00|54388|54388|10000|10000|0||91.84|105.04|0.00|2.54|0|0|0||||||| +26|2023-10-06T21:58:04.1120000-07:00|30|Well Fed|798.56|10FF0006|Wowobora Gogobora|40021786|Carbuncle|2964|77698|81809| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||40021786|Carbuncle|00|77698|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9500|10000|0||97.41|102.42|0.00|2.25|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9500|10000|0||97.41|102.42|0.00|2.25|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5200|10000|0||108.93|99.72|0.00|-2.72|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5200|10000|0||108.93|99.72|0.00|-2.72|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5200|10000|0||108.93|99.72|0.00|-2.72|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7800|10000|0||101.56|92.40|0.00|-0.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|441|HP Penalty|9999.00|E0000000||10FF0001|Sesuga Sapisuga|00|129071|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7800|10000|0||101.56|92.40|0.00|-0.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|A61|Acceleration Bomb|57.00|E0000000||10FF0001|Sesuga Sapisuga|00|129071|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7800|10000|0||101.56|92.40|0.00|-0.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|EB2|Divisive Dark|69.00|E0000000||10FF0001|Sesuga Sapisuga|00|129071|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8800|10000|0||106.52|110.70|0.00|-2.50|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|ED2|Beckoning Dark|76.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|81541|| +38|2023-10-06T21:58:04.1120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||110.51|89.98|0.00|-1.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|ED7|Forked Lightning|76.00|E0000000||10FF000A|Dukaro Nezikaro|00|83502|| +38|2023-10-06T21:58:04.1120000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5200|10000|0||108.93|99.72|0.00|-2.72|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:04.1120000-07:00|ED7|Forked Lightning|76.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +39|2023-10-06T21:58:04.1120000-07:00|10FF0004|Buhojaqe Zijaqe|57078|81541|9000|10000|||106.52|110.70|0.00|-2.50| +39|2023-10-06T21:58:04.1120000-07:00|10FF0003|Gegehi Gehi|51669|73814|5400|10000|||108.93|99.72|0.00|-2.72| +261|2023-10-06T21:58:03.6700000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:58:03.6700000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:58:03.7870000-07:00|Change|10FF000A||||||||||| +37|2023-10-06T21:58:04.1540000-07:00|10FF0001|Sesuga Sapisuga|000107A1|69436|90349|7800|10000|0||101.56|92.40|0.00|-0.08|1300|0|0|01|08000EB1|0|41700000|| +26|2023-10-06T21:58:04.1540000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +39|2023-10-06T21:58:04.1540000-07:00|10FF0008|Kokosaze Lulusaze|63151|90216|10000|10000|||105.27|98.92|0.00|-0.95| +37|2023-10-06T21:58:04.2000000-07:00|10FF0007|Kehabiqo Febiqo|000107A1|70640|90890|10000|10000|0||92.07|92.25|0.00|1.29|1501|0|0|01|09000EB1|0|41700000|| +26|2023-10-06T21:58:04.2000000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +21|2023-10-06T21:58:04.2000000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|720003|5B0A0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|26985406|40478540|10000|10000|||100.00|80.10|0.00|0.00|88014|90216|10000|10000|||105.27|98.92|0.00|-0.95|000107A8|0|1| +37|2023-10-06T21:58:04.2440000-07:00|10FF000A|Dukaro Nezikaro|000107A1|26141|58451|10000|10000|0||110.51|89.98|0.00|-1.04|1E02|0|0|01|09000EB1|0|41700000|| +26|2023-10-06T21:58:04.2440000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|40478540| +261|2023-10-06T21:58:03.7870000-07:00|Add|40021787||||||||||||||||||||||||||||| +37|2023-10-06T21:58:04.2890000-07:00|10FF0008|Kokosaze Lulusaze|000107A1|30229|63151|10000|10000|0||104.77|99.31|0.00|-2.91|1F03|0|0|01|08000EB1|0|41700000|| +26|2023-10-06T21:58:04.2890000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|40478540| +37|2023-10-06T21:58:04.2890000-07:00|40021585|Zeromus|000107A2|26979480|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040000F8|0|41700000|| +26|2023-10-06T21:58:04.2890000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +39|2023-10-06T21:58:04.2890000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9700|10000|||98.07|101.87|0.00|2.25| +261|2023-10-06T21:58:03.9090000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T21:58:04.3330000-07:00|10FF000B|Pusu Rosu|000107A1|26869|55446|8924|10000|0||100.51|101.37|0.00|-0.73|1804|0|0|01|0B000EB1|0|41700000|| +26|2023-10-06T21:58:04.3330000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF000B|Pusu Rosu|00|55446|40478540| +37|2023-10-06T21:58:04.3330000-07:00|40021585|Zeromus|000107A6|26960479||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:04.3330000-07:00|10FF0001|Sesuga Sapisuga|000107A6|69436|90349|8300|10000|0||101.50|93.08|0.00|-0.08|1300|0|0|0| +37|2023-10-06T21:58:04.3770000-07:00|10FF0003|Gegehi Gehi|000107A1|21648|51669|5400|10000|0||108.81|99.69|0.00|-2.72|2305|0|0|01|09000EB1|0|41700000|| +26|2023-10-06T21:58:04.3770000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0003|Gegehi Gehi|00|51669|40478540| +37|2023-10-06T21:58:04.4220000-07:00|10FF0006|Wowobora Gogobora|000107A1|28353|57266|9700|10000|0||98.55|101.39|0.00|2.31|1B06|0|0|01|0B000EB1|0|41700000|| +26|2023-10-06T21:58:04.4220000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0006|Wowobora Gogobora|00|57266|40478540| +21|2023-10-06T21:58:04.4220000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26960479|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5400|10000|||108.81|99.69|0.00|-2.72|000107A9|0|1| +37|2023-10-06T21:58:04.4670000-07:00|10FF0004|Buhojaqe Zijaqe|000107A1|28767|57078|9000|10000|0||105.95|109.74|0.00|-2.55|1C07|0|0|01|0E000EB1|0|41700000|| +26|2023-10-06T21:58:04.4670000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|40478540| +20|2023-10-06T21:58:04.4670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|105.95|109.74|0.00|-2.55| +261|2023-10-06T21:58:04.0250000-07:00|Change|40021585||| +37|2023-10-06T21:58:04.5560000-07:00|40021585|Zeromus|000107A7|26960291||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:04.5560000-07:00|40021585|Zeromus|000107A5|26947830||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:04.5560000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26960479|40478540|10000|10000|||100.00|80.10|0.00|0.00|30229|63151|10000|10000|||104.47|99.54|0.00|-2.91|000107AA|0|1| +21|2023-10-06T21:58:04.6000000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|183C0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|26947830|40478540|10000|10000|||100.00|80.10|0.00|0.00|26141|58451|10000|10000|||108.28|91.99|0.00|-0.87|000107AB|0|1| +21|2023-10-06T21:58:04.6460000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|3F180000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26947830|40478540|10000|10000|||100.00|80.10|0.00|0.00|28353|57266|9700|10000|||99.32|100.54|0.00|2.44|000107AC|0|1| +20|2023-10-06T21:58:04.6460000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.51|101.37|0.00|-0.73| +261|2023-10-06T21:58:04.2310000-07:00|Change|10FF000B||||||||||||||||| +39|2023-10-06T21:58:04.8230000-07:00|10FF0001|Sesuga Sapisuga|70339|90349|8500|10000|||101.28|96.28|0.00|-0.02| +261|2023-10-06T21:58:04.4230000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:58:04.4230000-07:00|Change|40021786||||||||||| +21|2023-10-06T21:58:04.9110000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|714003|39870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26947830|40478540|10000|10000|||100.00|80.10|0.00|0.00|70640|90890|10000|10000|||95.18|95.67|0.00|0.76|000107AD|0|1| +37|2023-10-06T21:58:04.9550000-07:00|40021585|Zeromus|000107A9|26947772||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:04.9550000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|138F0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|26947830|40478540|10000|10000|||100.00|80.10|0.00|0.00|70339|90349|8500|10000|||101.27|96.97|0.00|-0.01|000107AE|0|1| +37|2023-10-06T21:58:05.0000000-07:00|40021585|Zeromus|000107AB|26941568||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:04.5190000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:58:04.6130000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T21:58:05.0880000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|188E|30229|63151|10000|10000|||102.42|101.09|0.00|-1.42|40021585|Zeromus|FFFFFFFF|26941568|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:05.0880000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|F00|30229|63151|10000|10000|||102.42|101.09|0.00|-1.42|10FF0004|Buhojaqe Zijaqe|0|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.0880000-07:00|10FF000B|Pusu Rosu|HoT|798|E7C|26869|55446|8924|10000|||100.51|101.37|0.00|-2.71|10FF0004|Buhojaqe Zijaqe|0|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.0880000-07:00|10FF0006|Wowobora Gogobora|HoT|798|EA7|28353|57266|9400|10000|||99.80|100.01|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.0880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|E56|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95|10FF0004|Buhojaqe Zijaqe|0|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.0880000-07:00|10FF0003|Gegehi Gehi|HoT|798|17F5|21648|51669|5400|10000|||108.81|99.69|0.00|-2.72|10FF0004|Buhojaqe Zijaqe|0|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.0880000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|17D7|70339|90349|8500|10000|||101.26|97.61|0.00|-0.01|10FF0004|Buhojaqe Zijaqe|0|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.0880000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D8D|26141|58451|10000|10000|||105.54|94.47|0.00|-1.24|10FF0004|Buhojaqe Zijaqe|0|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.0890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E4F|70640|90890|10000|10000|||95.63|96.16|0.00|2.88|10FF0004|Buhojaqe Zijaqe|0|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.0890000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1359|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95|40021585|Zeromus|FFFFFFFF|26941568|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:05.0890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|137D|28767|57078|9000|10000|||105.55|109.00|0.00|-2.95|40021585|Zeromus|0|26941568|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:05.0890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|74303|90890|10000|10000|0||95.63|96.16|0.00|2.88|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.0890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:58:05.0890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|27783|63151|10000|10000|0||102.42|101.09|0.00|-1.42|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.0890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:58:05.0890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|32104|57266|9400|10000|0||99.80|100.01|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.0890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:58:05.0890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|76442|90349|8500|10000|0||101.26|97.61|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.0890000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:58:05.0890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|32473|57078|9550|10000|0||105.55|109.00|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.0890000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:58:05.0890000-07:00|10FF0003|Gegehi Gehi|005A5A23|27781|51669|5400|10000|0||108.81|99.69|0.00|-2.72|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.0890000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:58:05.0890000-07:00|10FF000B|Pusu Rosu|005A5A18|30577|55446|8924|10000|0||100.51|101.37|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.0890000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:58:05.0890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|29610|58451|10000|10000|0||105.54|94.47|0.00|-1.24|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.0890000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +261|2023-10-06T21:58:04.7240000-07:00|Change|10FF0004||||||||||||||||||||||||| +261|2023-10-06T21:58:04.7240000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:58:05.1790000-07:00|40021585|Zeromus|DoT|A92|57F|26941568|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|32104|57266|9400|10000|||99.83|99.97|0.00|3.13| +24|2023-10-06T21:58:05.1790000-07:00|10FF0006|Wowobora Gogobora|DoT|0|16AC|32104|57266|9400|10000|||99.83|99.97|0.00|3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|32473|57078|9550|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.1790000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1314|32104|57266|9400|10000|||99.83|99.97|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|32473|57078|9550|10000|||105.55|109.00|0.00|-2.95| +21|2023-10-06T21:58:05.1790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AAF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26941568|40478540|10000|10000|||100.00|80.10|0.00|0.00|76442|90349|8500|10000|||101.26|98.22|0.00|-0.01|000107AF|0|1| +38|2023-10-06T21:58:05.1790000-07:00|40021585|Zeromus|005A5A00|26940161|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:58:05.1790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|31184|57266|9950|10000|0||99.83|99.97|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T21:58:05.1790000-07:00|10FF0001||||| +261|2023-10-06T21:58:04.7240000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:05.2680000-07:00|40021585|Zeromus|000107A4|26927423||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:05.2680000-07:00|10FF0007|Kehabiqo Febiqo|000107A4|80220||||||96.52|97.14|0.00|2.61| +37|2023-10-06T21:58:05.2680000-07:00|40021585|Zeromus|000107AC|26911271||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:05.2680000-07:00|40021786|Carbuncle|005A5A00|54388|54388|10000|10000|0||96.76|101.22|0.00|2.23|0|0|0|||||||||| +26|2023-10-06T21:58:05.2680000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40021786|Carbuncle|01|54388|57266| +21|2023-10-06T21:58:05.2680000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31184|57266|9950|10000|||99.84|99.96|0.00|3.13|31184|57266|9950|10000|||99.84|99.96|0.00|3.13|000107B0|0|1| +37|2023-10-06T21:58:05.3130000-07:00|40021585|Zeromus|000107AA|26908982||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:05.3130000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|4|16C20000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12|54201|54201|10000|10000|||102.43|98.62|0.00|-2.02|000107B1|0|1| +21|2023-10-06T21:58:05.3130000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26911271|40478540|10000|10000|||100.00|80.10|0.00|0.00|29610|58451|10000|10000|||104.12|95.75|0.00|-0.94|000107B2|0|1| +37|2023-10-06T21:58:05.3570000-07:00|40021585|Zeromus|000107A8|26885676||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:05.3570000-07:00|10FF000A|Dukaro Nezikaro|30194|58451|10000|10000|||103.63|96.19|0.00|-0.91| +21|2023-10-06T21:58:05.4030000-07:00|40021786|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|BD0E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|31184|57266|9950|10000|||99.84|99.96|0.00|3.13|54388|54388|10000|10000|||97.25|100.85|0.00|2.23|000107B3|0|1| +04|2023-10-06T21:58:05.0680000-07:00|40021776|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||96.74|104.37|0.00|2.94| +24|2023-10-06T21:58:05.4030000-07:00|10FF0003|Gegehi Gehi|DoT|0|1712|27781|51669|5400|10000|||108.81|99.69|0.00|-2.72|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|32473|57078|9550|10000|||105.55|109.00|0.00|-2.95| +24|2023-10-06T21:58:05.4030000-07:00|10FF0003|Gegehi Gehi|HoT|0|1B85|27781|51669|5400|10000|||108.81|99.69|0.00|-2.72|10FF0004|Buhojaqe Zijaqe|0|32473|57078|9550|10000|||105.55|109.00|0.00|-2.95| +21|2023-10-06T21:58:05.4030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|754003|3B0D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26908982|40478540|10000|10000|||100.00|80.10|0.00|0.00|32473|57078|9550|10000|||105.55|109.00|0.00|-2.95|000107B4|0|1| +38|2023-10-06T21:58:05.4030000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|31184|57266|9950|10000|19||99.84|99.96|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.4030000-07:00|A8E|Radiant Aegis|29.95|40021786|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +38|2023-10-06T21:58:05.4030000-07:00|10FF0003|Gegehi Gehi|005A5A23|28920|51669|5400|10000|0||108.81|99.69|0.00|-2.72|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:58:05.4470000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1740|29610|58451|10000|10000|||103.63|96.19|0.00|-0.91|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|32473|57078|9550|10000|||105.55|109.00|0.00|-2.95| +38|2023-10-06T21:58:05.4470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24242|58451|10000|10000|0||103.63|96.19|0.00|-0.91|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:05.0680000-07:00|Remove|40021776| +39|2023-10-06T21:58:05.4930000-07:00|10FF0007|Kehabiqo Febiqo|81128|90890|10000|10000|||97.87|98.61|0.00|1.04| +24|2023-10-06T21:58:05.4930000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|DBE|27783|63151|10000|10000|||100.76|102.25|0.00|-1.14|10FF000B|Pusu Rosu|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12| +24|2023-10-06T21:58:05.4930000-07:00|10FF000B|Pusu Rosu|HoT|777|E13|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12|10FF000B|Pusu Rosu|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12| +24|2023-10-06T21:58:05.4930000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E06|31184|57266|9950|10000|||99.84|99.96|0.00|3.13|10FF000B|Pusu Rosu|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12| +24|2023-10-06T21:58:05.4930000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|14F0|76442|90349|8500|10000|||101.25|100.87|0.00|0.00|10FF000B|Pusu Rosu|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12| +24|2023-10-06T21:58:05.4930000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DA4|80220|90890|10000|10000|||97.87|98.61|0.00|1.04|10FF000B|Pusu Rosu|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12| +24|2023-10-06T21:58:05.4930000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DBA|24242|58451|10000|10000|||103.11|96.65|0.00|-0.87|10FF000B|Pusu Rosu|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12| +24|2023-10-06T21:58:05.4930000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|D64|32473|57078|9150|10000|||105.55|109.00|0.00|-2.95|10FF000B|Pusu Rosu|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12| +24|2023-10-06T21:58:05.4930000-07:00|10FF0003|Gegehi Gehi|HoT|777|14E5|28920|51669|5400|10000|||108.81|99.69|0.00|-2.72|10FF000B|Pusu Rosu|0|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12| +24|2023-10-06T21:58:05.4930000-07:00|10FF000B|Pusu Rosu|DoT|0|1509|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12|40021585|Zeromus|FFFFFFFF|26885676|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:05.4930000-07:00|10FF000B|Pusu Rosu|HoT|0|1386|30577|55446|8924|10000|||100.51|101.37|0.00|-3.12|40021585|Zeromus|0|26885676|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:05.4930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|84620|90890|10000|10000|0||97.87|98.61|0.00|1.04|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:05.4930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|31301|63151|10000|10000|0||100.76|102.25|0.00|-1.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:05.4930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34774|57266|9950|10000|19||99.84|99.96|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:05.4930000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|81802|90349|8500|10000|0||101.25|100.87|0.00|0.00|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:05.4930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|35901|57078|9150|10000|0||105.55|109.00|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:05.4930000-07:00|10FF0003|Gegehi Gehi|005A5A23|34269|51669|5400|10000|0||108.81|99.69|0.00|-2.72|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:05.1610000-07:00|Change|40021585||| +38|2023-10-06T21:58:05.4930000-07:00|10FF000B|Pusu Rosu|005A5A18|33793|55446|8924|10000|0||100.51|101.37|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:05.4930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|27756|58451|10000|10000|0||103.11|96.65|0.00|-0.87|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:05.4930000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +37|2023-10-06T21:58:05.5360000-07:00|40021585|Zeromus|000107AD|26870949||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:05.1610000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:58:05.5810000-07:00|40021585|Zeromus|000107AE|26865942||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:05.5810000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|F57|84620|90890|10000|10000|||97.97|99.19|0.00|1.03|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|35901|57078|9150|10000|||105.54|108.99|0.00|-2.85| +21|2023-10-06T21:58:05.5810000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|2FC40000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|26870949|40478540|10000|10000|||100.00|80.10|0.00|0.00|33793|55446|8924|10000|||100.51|101.37|0.00|-3.12|000107B5|0|1| +38|2023-10-06T21:58:05.5810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80693|90890|10000|10000|0||97.97|99.19|0.00|1.03|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:58:05.6710000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|ED5|81802|90349|8500|10000|||100.80|101.14|0.00|0.10|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|35901|57078|9150|10000|||105.54|108.99|0.00|-2.85| +38|2023-10-06T21:58:05.6710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|78005|90349|8500|10000|0||100.80|101.14|0.00|0.10|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:05.2570000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:58:05.7140000-07:00|40021585|Zeromus|000107AF|26863207||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:05.8480000-07:00|40021585|Zeromus|000107B2|26860914||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:05.5490000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:58:06.1150000-07:00|10FF000B|Pusu Rosu|000107B1|39619||||||100.51|101.37|0.00|-3.12| +21|2023-10-06T21:58:06.1600000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|264C0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|26860914|40478540|10000|10000|||100.00|80.10|0.00|0.00|34774|57266|9950|10000|||99.84|99.96|0.00|3.13|000107B6|0|1| +261|2023-10-06T21:58:05.6620000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:58:05.7720000-07:00|Change|10FF0006||||| +37|2023-10-06T21:58:06.2050000-07:00|10FF0006|Wowobora Gogobora|000107B3|34774|57266|9650|10000|19||99.84|99.96|0.00|3.13|1B00|0|0|01|0D000A8E|0|41E99168|| +37|2023-10-06T21:58:06.2050000-07:00|40021585|Zeromus|000107B4|26845797||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:06.2050000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|15710000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|26860914|40478540|10000|10000|||100.00|80.10|0.00|0.00|80693|90890|10000|10000|||99.51|101.74|0.00|1.50|000107B7|0|1| +38|2023-10-06T21:58:06.2050000-07:00|40021786|Carbuncle|005A5A00|54388|54388|10000|10000|0||97.78|100.52|0.00|1.64|0|0|0||||||| +30|2023-10-06T21:58:06.2050000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40021786|Carbuncle|01|54388|57266| +39|2023-10-06T21:58:06.2500000-07:00|10FF000B|Pusu Rosu|40173|55446|8805|10000|||100.51|101.37|0.00|-3.12| +21|2023-10-06T21:58:06.2500000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|353D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26860914|40478540|10000|10000|||100.00|80.10|0.00|0.00|34269|51669|5400|10000|||108.81|99.69|0.00|-2.72|000107B8|0|1| +38|2023-10-06T21:58:06.2950000-07:00|40021585|Zeromus|005A5A00|26845797|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:58:06.2950000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +26|2023-10-06T21:58:06.2950000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +21|2023-10-06T21:58:06.6050000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BB50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26845797|40478540|10000|10000|||100.00|80.10|0.00|0.00|80693|90890|10000|10000|||101.27|101.74|0.00|2.79|000107B9|0|1| +24|2023-10-06T21:58:06.6510000-07:00|40021585|Zeromus|DoT|0|1E1F|26845797|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|40173|55446|8805|10000|||100.51|101.37|0.00|-3.12| +36|2023-10-06T21:58:06.6510000-07:00|364C|3| +38|2023-10-06T21:58:06.6510000-07:00|40021585|Zeromus|005A5A00|26838086|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:58:06.3070000-07:00|Change|10FF000B||| +39|2023-10-06T21:58:06.6950000-07:00|4002164C|Ruby Carbuncle|54201|54201|10000|10000|||102.43|98.62|0.00|-0.99| +37|2023-10-06T21:58:06.7400000-07:00|40021585|Zeromus|000107B7|26832597||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:06.7400000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|726003|B24F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26838086|40478540|10000|10000|||100.00|80.10|0.00|0.00|31301|63151|10000|10000|||100.48|102.34|0.00|-1.59|000107BA|0|1| +21|2023-10-06T21:58:06.7400000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|25560000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|26838086|40478540|10000|10000|||100.00|80.10|0.00|0.00|27756|58451|10000|10000|||100.85|98.99|0.00|-1.84|000107BB|0|1| +37|2023-10-06T21:58:06.7840000-07:00|40021585|Zeromus|000107B6|26822793||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:06.8730000-07:00|40021585|Zeromus|000107B5|26810565||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:06.8730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.90|105.01|0.00|-2.50| +39|2023-10-06T21:58:07.0970000-07:00|10FF0004|Buhojaqe Zijaqe|36471|57078|9350|10000|||101.91|104.95|0.00|-2.68| +21|2023-10-06T21:58:07.0970000-07:00|10FF000B|Pusu Rosu|4097|Afflatus Misery|40021585|Zeromus|752003|3FBD4001|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|26810565|40478540|10000|10000|||100.00|80.10|0.00|0.00|40173|55446|8805|10000|||100.51|101.37|0.00|-3.12|000107BC|0|1| +37|2023-10-06T21:58:07.1410000-07:00|40021585|Zeromus|000107B9|26807568||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:07.1410000-07:00|40021585|Zeromus|000107BB|26798010||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:07.1410000-07:00|10FF0008|Kokosaze Lulusaze|31932|63151|10000|10000|||100.48|102.34|0.00|-3.12| +39|2023-10-06T21:58:07.1410000-07:00|10FF0003|Gegehi Gehi|34785|51669|5600|10000|||107.77|99.67|0.00|-1.65| +21|2023-10-06T21:58:07.1410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26810565|40478540|10000|10000|||100.00|80.10|0.00|0.00|34774|57266|9650|10000|||100.09|101.30|0.00|0.34|000107BD|0|1| +261|2023-10-06T21:58:06.7000000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:58:06.7000000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:58:07.2300000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26798010|40478540|10000|10000|||100.00|80.10|0.00|0.00|31932|63151|10000|10000|||100.48|102.34|0.00|-3.12|000107BE|0|1| +39|2023-10-06T21:58:07.2740000-07:00|10FF0006|Wowobora Gogobora|35346|57266|9850|10000|||100.17|101.60|0.00|0.08| +261|2023-10-06T21:58:06.8130000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:07.4080000-07:00|40021585|Zeromus|000107B8|26784381||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:07.4530000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35712003|33070000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|26784381|40478540|10000|10000|||100.00|80.10|0.00|0.00|78005|90349|8500|10000|||99.62|101.54|0.00|3.12|000107BF|0|1| +21|2023-10-06T21:58:07.4530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26784381|40478540|10000|10000|||100.00|80.10|0.00|0.00|78005|90349|8500|10000|||99.62|101.54|0.00|3.12|000107C0|0|1| +31|2023-10-06T21:58:07.4530000-07:00|10FF0001||||| +21|2023-10-06T21:58:07.4970000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|10CE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26784381|40478540|10000|10000|||100.00|80.10|0.00|0.00|27756|58451|10000|10000|||100.64|99.45|0.00|2.91|000107C1|0|1| +21|2023-10-06T21:58:07.6300000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|26784381|40478540|10000|10000|||100.00|80.10|0.00|0.00|35346|57266|9850|10000|||100.21|101.73|-0.02|0.08|000107C2|0|1| +20|2023-10-06T21:58:07.6300000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|103.75|99.62|0.00|-1.59| +38|2023-10-06T21:58:07.6300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|35346|57266|9850|10000|19||100.21|101.73|-0.02|0.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:07.6300000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:58:07.2300000-07:00|Change|40021786||||||||| +38|2023-10-06T21:58:07.6750000-07:00|4002178C||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:07.6750000-07:00|4002178C||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:58:07.6750000-07:00|40021585|Zeromus|000107BD|26784184||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:07.6750000-07:00|40021585|Zeromus|000107BC|26702331||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:07.2300000-07:00|Change|10FF0003||||||||||||||||||||| +39|2023-10-06T21:58:07.8090000-07:00|10FF0001|Sesuga Sapisuga|78908|90349|8700|10000|||99.62|101.54|0.00|3.12| +21|2023-10-06T21:58:07.8090000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|53490000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26702331|40478540|10000|10000|||100.00|80.10|0.00|0.00|36471|57078|9350|10000|||101.91|104.91|0.00|-3.06|000107C3|0|1| +261|2023-10-06T21:58:07.3210000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:58:07.4200000-07:00|Add|4002178C||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:58:07.4200000-07:00|4002178C|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|54388|54388|10000|10000|||101.98|103.49|0.00|-3.13| +37|2023-10-06T21:58:07.8980000-07:00|40021585|Zeromus|000107BA|26656684||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:07.4200000-07:00|Change|4002178C||||| +37|2023-10-06T21:58:07.9870000-07:00|40021585|Zeromus|000107BE|26654401||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:07.9870000-07:00|40021585|Zeromus|000107C0|26651453||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:07.6100000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:58:08.0310000-07:00|40021585|Zeromus|000107C1|26647151||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:08.0760000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|1847|31932|63151|10000|10000|||100.12|102.43|0.00|-1.42|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|EC3|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF0003|Gegehi Gehi|HoT|798|E9C|34785|51669|5600|10000|||102.98|99.63|0.00|-2.93|10FF0004|Buhojaqe Zijaqe|0|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1831|31932|63151|10000|10000|||100.12|102.43|0.00|-1.42|10FF0004|Buhojaqe Zijaqe|0|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF000B|Pusu Rosu|HoT|798|E8E|40173|55446|8805|10000|||100.51|101.37|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF0006|Wowobora Gogobora|HoT|798|EB0|35346|57266|9850|10000|||100.21|101.73|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|EE9|80693|90890|10000|10000|||100.01|102.09|0.00|-3.05|10FF0004|Buhojaqe Zijaqe|0|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1702|78908|90349|8700|10000|||99.62|101.54|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|EAB|27756|58451|10000|10000|||99.15|100.61|0.00|2.88|10FF0004|Buhojaqe Zijaqe|0|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06| +24|2023-10-06T21:58:08.0760000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1446|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06|40021585|Zeromus|FFFFFFFF|26651453|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:08.0760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1D48|36471|57078|8950|10000|||101.91|104.91|0.00|-3.06|40021585|Zeromus|0|26651453|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:08.0760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|84510|90890|10000|10000|0||100.01|102.09|0.00|-3.05|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.0760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:58:08.0760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|31910|63151|10000|10000|0||100.12|102.43|0.00|-1.42|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.0760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:58:08.0760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|39106|57266|9850|10000|19||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.0760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:58:08.0760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84798|90349|8700|10000|0||99.62|101.54|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.0760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:58:08.0760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|42556|57078|9500|10000|0||101.91|104.91|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.0760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:58:08.0760000-07:00|10FF0003|Gegehi Gehi|005A5A23|38525|51669|5600|10000|0||102.98|99.63|0.00|-2.93|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.0760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:58:08.0760000-07:00|10FF000B|Pusu Rosu|005A5A18|43899|55446|8805|10000|0||100.51|101.37|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.0760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:58:08.0760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|31511|58451|10000|10000|0||99.15|100.61|0.00|2.88|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.0760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +24|2023-10-06T21:58:08.1650000-07:00|40021585|Zeromus|DoT|A92|56E|26651453|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|35346|57266|9850|10000|||100.21|101.73|0.00|-3.13| +24|2023-10-06T21:58:08.1650000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|35346|57266|9850|10000|||100.21|101.73|0.00|-3.13|40021786|Carbuncle|FFFFFFFF|0|54388|0|10000|||98.59|100.66|0.00|1.80| +24|2023-10-06T21:58:08.1650000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1E0A|35346|57266|9850|10000|||100.21|101.73|0.00|-3.13|40021786|Carbuncle|0|0|54388|0|10000|||98.59|100.66|0.00|1.80| +38|2023-10-06T21:58:08.1650000-07:00|40021585|Zeromus|005A5A00|26645761|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:58:08.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|46796|57266|10000|10000|10||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:07.7000000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:58:07.8100000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:08.2090000-07:00|40021585|Zeromus|000107BF|26632698||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:08.2090000-07:00|10FF0001|Sesuga Sapisuga|000107BF|84798|90349|9700|10000|0||99.62|101.54|0.00|3.12|1300|0|0|0| +39|2023-10-06T21:58:08.3430000-07:00|10FF000A|Dukaro Nezikaro|32095|58451|10000|10000|||98.75|100.81|0.00|-3.02| +41|2023-10-06T21:58:08.3430000-07:00|80034E7C|290A|01|00|00| +21|2023-10-06T21:58:08.3430000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2C1F0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|84510|90890|10000|10000|||100.14|101.64|0.00|3.05|26632698|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107C4|0|1| +24|2023-10-06T21:58:08.3870000-07:00|10FF0003|Gegehi Gehi|DoT|0|16D0|38525|51669|5600|10000|||102.95|99.63|0.00|-2.99|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|42556|57078|9500|10000|||101.89|104.91|0.00|-1.99| +24|2023-10-06T21:58:08.3870000-07:00|10FF0003|Gegehi Gehi|HoT|0|1CED|38525|51669|5600|10000|||102.95|99.63|0.00|-2.99|10FF0004|Buhojaqe Zijaqe|0|42556|57078|9500|10000|||101.89|104.91|0.00|-1.99| +38|2023-10-06T21:58:08.3870000-07:00|10FF0003|Gegehi Gehi|005A5A23|40090|51669|5600|10000|0||102.95|99.63|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:58:08.4320000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|17E8|31511|58451|10000|10000|||98.75|100.81|0.00|-3.02|10FF000B|Pusu Rosu|FFFFFFFF|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +38|2023-10-06T21:58:08.4320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|25975|58451|10000|10000|0||98.75|100.81|0.00|-3.02|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:58:08.4770000-07:00|10FF0007|Kehabiqo Febiqo|85418|90890|10000|10000|||100.14|101.64|0.00|3.05| +24|2023-10-06T21:58:08.4770000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|1554|31910|63151|10000|10000|||100.11|102.43|0.00|-1.37|10FF000B|Pusu Rosu|0|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +24|2023-10-06T21:58:08.4770000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DE2|84798|90349|9700|10000|||99.65|101.13|0.00|3.08|10FF000B|Pusu Rosu|0|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +24|2023-10-06T21:58:08.4770000-07:00|10FF0006|Wowobora Gogobora|HoT|777|D9F|46796|57266|10000|10000|||100.21|101.73|0.00|-3.13|10FF000B|Pusu Rosu|0|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +24|2023-10-06T21:58:08.4770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|D80|84510|90890|10000|10000|||100.14|101.64|0.00|3.05|10FF000B|Pusu Rosu|0|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +24|2023-10-06T21:58:08.4770000-07:00|10FF000B|Pusu Rosu|HoT|777|DF5|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30|10FF000B|Pusu Rosu|0|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +24|2023-10-06T21:58:08.4770000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|D7F|31511|58451|10000|10000|||98.75|100.81|0.00|-3.02|10FF000B|Pusu Rosu|0|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +24|2023-10-06T21:58:08.4770000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E31|42556|57078|9500|10000|||101.89|104.91|0.00|-1.99|10FF000B|Pusu Rosu|0|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +24|2023-10-06T21:58:08.4770000-07:00|10FF0003|Gegehi Gehi|HoT|777|DC9|38525|51669|5600|10000|||102.95|99.63|0.00|-2.99|10FF000B|Pusu Rosu|0|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30| +24|2023-10-06T21:58:08.4770000-07:00|10FF000B|Pusu Rosu|DoT|0|1486|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30|40021585|Zeromus|FFFFFFFF|26632698|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:08.4770000-07:00|10FF000B|Pusu Rosu|HoT|0|12D7|43899|55446|8805|10000|||100.42|101.37|0.00|-2.30|40021585|Zeromus|0|26632698|40478540|10000|10000|||100.00|80.10|0.00|0.00| +00|2023-10-06T21:58:08.0000000-07:00|0839||Zeromus expands its domain...| +38|2023-10-06T21:58:08.4780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88874|90890|10000|10000|0||100.14|101.64|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.4780000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:58:08.4780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|37370|63151|10000|10000|0||100.11|102.43|0.00|-1.37|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.4780000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:58:08.4780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50283|57266|10000|10000|10||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.4780000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T21:58:08.4780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|88352|90349|9700|10000|0||99.65|101.13|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.4780000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +38|2023-10-06T21:58:08.4780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46189|57078|9500|10000|0||101.75|105.43|0.00|-1.59|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.4780000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:58:08.4780000-07:00|10FF0003|Gegehi Gehi|005A5A23|43619|51669|5600|10000|0||102.95|99.63|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.4780000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:58:08.4780000-07:00|10FF000B|Pusu Rosu|005A5A18|47041|55446|8805|10000|0||100.39|101.37|0.00|-2.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.4780000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:58:08.4780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|29430|58451|10000|10000|0||98.66|100.83|0.00|-2.95|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:08.4780000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +24|2023-10-06T21:58:08.5680000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|EAA|85418|90890|10000|10000|||100.14|101.64|0.00|3.05|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|42556|57078|9500|10000|||101.75|105.43|0.00|-1.59| +38|2023-10-06T21:58:08.5680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85120|90890|10000|10000|0||100.14|101.64|0.00|3.05|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:08.6120000-07:00|40021585|Zeromus|000107C3|26611377||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:08.6580000-07:00|10FF0006|Wowobora Gogobora|000107C2|50283|57266|10000|10000|10||100.21|101.73|0.00|-3.13|1B00|0|0|01|0E000AA4|0|0|| +24|2023-10-06T21:58:08.6580000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|E41|88352|90349|9700|10000|||99.65|101.13|0.00|3.08|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|46189|57078|9500|10000|||101.54|106.20|0.00|-1.15| +21|2023-10-06T21:58:08.6580000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22040000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|26611377|40478540|10000|10000|||100.00|80.10|0.00|0.00|85120|90890|10000|10000|||100.14|101.64|0.00|3.06|000107C5|0|1| +38|2023-10-06T21:58:08.6580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50283|57266|10000|10000|10||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:08.6580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84703|90349|9700|10000|0||99.65|101.13|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:08.3150000-07:00|Change|4002178C||| +261|2023-10-06T21:58:08.3150000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:58:08.9260000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|16FB0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|29430|58451|10000|10000|||98.62|100.85|0.00|-2.92|54201|54201|10000|10000|||102.43|98.62|0.00|-2.59|000107C6|0|1| +21|2023-10-06T21:58:08.9700000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44716003|60F10000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|26611377|40478540|10000|10000|||100.00|80.10|0.00|0.00|29430|58451|10000|10000|||98.62|100.85|0.00|-2.92|000107C7|0|1| +21|2023-10-06T21:58:09.0580000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|37550000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|26611377|40478540|10000|10000|||100.00|80.10|0.00|0.00|43619|51669|5600|10000|||102.95|99.63|0.00|-2.99|000107C8|0|1| +38|2023-10-06T21:58:09.0580000-07:00|10FF0003|Gegehi Gehi|005A5A23|43619|51669|5400|10000|0||102.95|99.63|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:09.0580000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:58:08.6080000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:58:09.1470000-07:00|10FF0007|Kehabiqo Febiqo|000107C4|73825||||||100.14|101.64|-0.02|-3.14| +39|2023-10-06T21:58:09.2370000-07:00|10FF000B|Pusu Rosu|47595|55446|9086|10000|||100.09|100.58|-0.01|3.12| +20|2023-10-06T21:58:09.2370000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.40|106.52|-0.01|-0.61| +261|2023-10-06T21:58:08.7180000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T21:58:08.7180000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:58:09.2810000-07:00|40021585|Zeromus|000107C5|26602669||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:09.2810000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|3B7C0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|26611377|40478540|10000|10000|||100.00|80.10|0.00|0.00|37370|63151|10000|10000|||100.11|102.43|0.00|-1.46|000107C9|0|1| +21|2023-10-06T21:58:09.3710000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26602669|40478540|10000|10000|||100.00|80.10|0.00|0.00|43619|51669|5400|10000|||102.95|99.63|0.00|-2.99|000107CA|0|1| +37|2023-10-06T21:58:09.5060000-07:00|40021585|Zeromus|000107C7|26577852||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:09.5510000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.08|100.57|0.00|3.11| +39|2023-10-06T21:58:09.6830000-07:00|4002164C|Ruby Carbuncle|54201|54201|10000|10000|||102.43|98.62|0.00|-1.05| +24|2023-10-06T21:58:09.6830000-07:00|40021585|Zeromus|DoT|0|245D|26577852|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|47595|55446|9086|10000|||100.08|100.57|0.00|3.12| +21|2023-10-06T21:58:09.6830000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|85E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26577852|40478540|10000|10000|||100.00|80.10|0.00|0.00|29430|58451|10000|10000|||98.62|100.85|0.00|3.08|000107CB|0|1| +36|2023-10-06T21:58:09.6830000-07:00|3728|3| +38|2023-10-06T21:58:09.6830000-07:00|40021585|Zeromus|005A5A00|26568543|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:09.6830000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:58:09.2470000-07:00|Change|40021786||||||||| +37|2023-10-06T21:58:09.7280000-07:00|10FF000A|Dukaro Nezikaro|000107C6|35313||||||98.62|100.85|0.00|3.08| +21|2023-10-06T21:58:09.7280000-07:00|4002178C|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|154003|73620000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|26577852|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||101.98|103.49|0.00|-3.13|000107CC|0|1| +21|2023-10-06T21:58:09.7280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|E120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26577852|40478540|10000|10000|||100.00|80.10|0.00|0.00|84703|90349|9700|10000|||99.65|101.13|0.00|3.08|000107CD|0|1| +31|2023-10-06T21:58:09.7280000-07:00|10FF0001||||| +261|2023-10-06T21:58:09.2470000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:58:09.8160000-07:00|40021585|Zeromus|000107C8|26554378||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:09.9060000-07:00|40021585|Zeromus|000107CA|26554323||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:09.9060000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26554378|40478540|10000|10000|||100.00|80.10|0.00|0.00|37370|63151|10000|10000|||100.11|102.43|0.00|-3.14|000107CE|0|1| +21|2023-10-06T21:58:09.9500000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41716003|565B0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|26554378|40478540|10000|10000|||100.00|80.10|0.00|0.00|84703|90349|9700|10000|||99.65|101.13|0.00|3.12|000107CF|0|1| +38|2023-10-06T21:58:09.9500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84703|90349|9700|10000|0||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:09.9500000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:58:09.9500000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +21|2023-10-06T21:58:09.9940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26554323|40478540|10000|10000|||100.00|80.10|0.00|0.00|73825|90890|10000|10000|||100.18|101.06|0.00|3.08|000107D0|0|1| +21|2023-10-06T21:58:10.0390000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|41330000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|26554323|40478540|10000|10000|||100.00|80.10|0.00|0.00|43619|51669|5400|10000|||102.95|99.63|0.00|-2.99|000107D1|0|1| +38|2023-10-06T21:58:10.0390000-07:00|10FF0003|Gegehi Gehi|005A5A23|43619|51669|5100|10000|0||102.95|99.63|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:10.0390000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:58:10.0390000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:58:10.0840000-07:00|40021585|Zeromus|000107C9|26539095||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:10.0840000-07:00|10FF0004|Buhojaqe Zijaqe|46759|57078|9700|10000|||101.40|106.52|0.00|-3.09| +39|2023-10-06T21:58:10.1280000-07:00|10FF0003|Gegehi Gehi|44135|51669|5300|10000|||102.95|99.63|0.00|-2.99| +20|2023-10-06T21:58:10.1280000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|100.21|101.73|0.00|-3.13| +39|2023-10-06T21:58:10.1720000-07:00|10FF0008|Kokosaze Lulusaze|38001|63151|10000|10000|||100.11|102.43|0.00|-3.14| +21|2023-10-06T21:58:10.1720000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|538C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26554323|40478540|10000|10000|||100.00|80.10|0.00|0.00|46189|57078|9500|10000|||101.40|106.52|0.00|-3.09|000107D2|0|1| +261|2023-10-06T21:58:09.7010000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:58:09.7010000-07:00|Change|10FF0003||| +261|2023-10-06T21:58:09.7010000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T21:58:10.2170000-07:00|40021585|Zeromus|000107CB|26536953||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:10.2170000-07:00|40021585|Zeromus|005A5A00|26536953|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:58:10.2170000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|57266| +37|2023-10-06T21:58:10.2620000-07:00|40021585|Zeromus|000107CD|26533351||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:10.2620000-07:00|10FF0001|Sesuga Sapisuga|000107CD|84703|90349|9700|10000|0||99.65|101.13|0.00|3.12|1300|0|0|02|0A00076E|03|C1F00000|||||| +39|2023-10-06T21:58:10.3060000-07:00|10FF0006|Wowobora Gogobora|50855|57266|10000|10000|||100.21|101.73|0.00|-3.13| +21|2023-10-06T21:58:10.4850000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|336D0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|26533351|40478540|10000|10000|||100.00|80.10|0.00|0.00|47595|55446|9086|10000|||100.08|100.57|0.00|-3.14|000107D3|0|1| +37|2023-10-06T21:58:10.5290000-07:00|40021585|Zeromus|000107D0|26530422||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:10.5290000-07:00|40021585|Zeromus|000107CF|26508315||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:10.5290000-07:00|10FF0001|Sesuga Sapisuga|000107CF|84703|90349|9700|10000|0||99.65|101.13|0.00|3.12|1300|0|0|02|0A00076E|03|41F00000|||||| +38|2023-10-06T21:58:10.5290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84703|90349|9700|10000|0||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:10.1410000-07:00|Change|40021585||| +37|2023-10-06T21:58:10.6630000-07:00|40021585|Zeromus|000107CE|26506091||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:10.7960000-07:00|40021585|Zeromus|000107D1|26489400||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:10.7960000-07:00|10FF0003|Gegehi Gehi|000107D1|44135|51669|5300|10000|0||102.95|99.63|0.00|-2.99|2300|0|0|01|0C0004D3|0|41F00000|| +39|2023-10-06T21:58:10.7960000-07:00|10FF0001|Sesuga Sapisuga|85606|90349|9900|10000|||99.65|101.13|0.00|3.12| +21|2023-10-06T21:58:10.7960000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|724003|16F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26506091|40478540|10000|10000|||100.00|80.10|0.00|0.00|44135|51669|5300|10000|||102.95|99.63|0.00|-2.99|000107D4|0|1| +38|2023-10-06T21:58:10.7960000-07:00|10FF0003|Gegehi Gehi|005A5A23|44135|51669|5300|10000|0||102.95|99.63|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:10.2310000-07:00|Change|10FF0001||||| +261|2023-10-06T21:58:10.2310000-07:00|Change|10FF000B||||||||||||||||| +38|2023-10-06T21:58:10.8850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|38001|63151|10000|10000|0||100.29|102.21|0.00|2.63|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:10.8850000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +261|2023-10-06T21:58:10.3240000-07:00|Change|4002164C||||||||||| +37|2023-10-06T21:58:10.9740000-07:00|40021585|Zeromus|000107D2|26468012||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:11.0190000-07:00|10FF0003|Gegehi Gehi|005A5A23|44135|51669|5300|10000|0||102.95|99.63|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:11.0190000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|51669|63151| +24|2023-10-06T21:58:11.0640000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|17DE|38001|63151|10000|10000|||100.34|101.99|0.00|2.71|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|17F5|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96|10FF0004|Buhojaqe Zijaqe|0|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF0003|Gegehi Gehi|HoT|798|16F5|44135|51669|5300|10000|||102.95|99.63|0.00|-2.99|10FF0004|Buhojaqe Zijaqe|0|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF0006|Wowobora Gogobora|HoT|798|EE4|50855|57266|10000|10000|||100.21|101.73|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|EFF|38001|63151|10000|10000|||100.34|101.99|0.00|2.71|10FF0004|Buhojaqe Zijaqe|0|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|EEC|73825|90890|10000|10000|||100.18|101.06|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|EBE|35313|58451|10000|10000|||99.46|102.16|-0.01|0.17|10FF0004|Buhojaqe Zijaqe|0|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF000B|Pusu Rosu|HoT|798|1813|47595|55446|8686|10000|||100.08|100.57|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|177D|85606|90349|9900|10000|||99.65|101.13|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96| +24|2023-10-06T21:58:11.0640000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|147B|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96|40021585|Zeromus|FFFFFFFF|26468012|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:11.0640000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|12C8|46759|57078|9300|10000|||100.94|104.33|0.00|-2.96|40021585|Zeromus|0|26468012|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:11.0640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77645|90890|10000|10000|0||100.18|101.06|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.0640000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:58:11.0640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|35730|63151|10000|10000|0||100.34|101.99|0.00|2.71|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.0640000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:58:11.0640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54667|57266|10000|10000|10||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.0640000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:58:11.0640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9900|10000|0||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.0640000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:58:11.0640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52457|57078|9850|10000|0||100.94|104.33|0.00|-2.96|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.0640000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:58:11.0640000-07:00|10FF0003|Gegehi Gehi|005A5A23|50012|51669|5300|10000|0||102.95|99.63|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.0640000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:58:11.0640000-07:00|10FF000B|Pusu Rosu|005A5A18|53758|55446|8686|10000|0||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.0640000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:58:11.0640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39087|58451|10000|10000|0||99.46|102.16|-0.01|0.17|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.0640000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +21|2023-10-06T21:58:11.1070000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|33030000|143E|340000|4|1A7D8000|11B|2A8000|0|0|0|0|0|0|0|0|26468012|40478540|10000|10000|||100.00|80.10|0.00|0.00|73825|90890|10000|10000|||100.18|101.06|0.00|3.08|000107D5|0|1| +21|2023-10-06T21:58:11.1070000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|20690000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|26468012|40478540|10000|10000|||100.00|80.10|0.00|0.00|35313|58451|10000|10000|||99.46|102.16|-0.01|0.17|000107D6|0|1| +24|2023-10-06T21:58:11.1530000-07:00|40021585|Zeromus|DoT|A92|890|26468012|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|54667|57266|10000|10000|||100.21|101.73|0.00|-3.13| +24|2023-10-06T21:58:11.1530000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|54667|57266|10000|10000|||100.21|101.73|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|54667|57266|10000|10000|||100.21|101.73|0.00|-3.13| +24|2023-10-06T21:58:11.1530000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1E04|54667|57266|10000|10000|||100.21|101.73|0.00|-3.13|10FF0006|Wowobora Gogobora|0|54667|57266|10000|10000|||100.21|101.73|0.00|-3.13| +38|2023-10-06T21:58:11.1530000-07:00|40021585|Zeromus|005A5A00|26465820|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:58:11.1530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|1||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:11.1530000-07:00|10FF000B|Pusu Rosu|005A5A18|53758|55446|8686|10000|0||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:11.1530000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|55446|63151| +38|2023-10-06T21:58:11.2870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|1||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:11.2870000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|57266|63151| +261|2023-10-06T21:58:10.7620000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:58:11.3310000-07:00|10FF000A|Dukaro Nezikaro|39671|58451|10000|10000|||99.47|102.19|0.00|3.12| +24|2023-10-06T21:58:11.3760000-07:00|10FF0003|Gegehi Gehi|DoT|0|1694|50012|51669|5300|10000|||102.95|99.63|-0.02|-2.99|10FF0003|Gegehi Gehi|FFFFFFFF|50012|51669|5300|10000|||102.95|99.63|-0.02|-2.99| +24|2023-10-06T21:58:11.3760000-07:00|10FF0003|Gegehi Gehi|HoT|0|13B5|50012|51669|5300|10000|||102.95|99.63|-0.02|-2.99|10FF0003|Gegehi Gehi|0|50012|51669|5300|10000|||102.95|99.63|-0.02|-2.99| +21|2023-10-06T21:58:11.3760000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750003|302E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|9900|10000|||99.65|101.13|0.00|3.12|26465820|40478540|10000|10000|||100.00|80.10|0.00|0.00|000107D7|0|1| +38|2023-10-06T21:58:11.3760000-07:00|10FF0003|Gegehi Gehi|005A5A23|49277|51669|5300|10000|0||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:11.4200000-07:00|40021585|Zeromus|000107D4|26459943||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:11.4200000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1981|39671|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF000B|Pusu Rosu|FFFFFFFF|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +38|2023-10-06T21:58:11.4200000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|52457|57078|9850|10000|0||100.96|103.96|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:11.4200000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|57078|63151| +38|2023-10-06T21:58:11.4200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|33142|58451|10000|10000|0||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:58:11.4650000-07:00|10FF0007|Kehabiqo Febiqo|78553|90890|10000|10000|||100.18|101.06|0.00|-3.13| +24|2023-10-06T21:58:11.4650000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|14DC|39671|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF000B|Pusu Rosu|0|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:11.4650000-07:00|10FF0006|Wowobora Gogobora|HoT|777|15B3|57266|57266|10000|10000|||100.21|101.73|0.00|-3.13|10FF000B|Pusu Rosu|0|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:11.4650000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E2C|35730|63151|10000|10000|||100.16|101.48|0.00|3.13|10FF000B|Pusu Rosu|0|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:11.4650000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|14D0|90349|90349|9900|10000|||99.65|101.13|0.00|3.12|10FF000B|Pusu Rosu|0|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:11.4650000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DEC|77645|90890|10000|10000|||100.18|101.06|0.00|-3.13|10FF000B|Pusu Rosu|0|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:11.4650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DC0|52457|57078|9850|10000|||100.96|103.96|0.00|-3.14|10FF000B|Pusu Rosu|0|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +04|2023-10-06T21:58:10.9970000-07:00|40021786|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||98.59|100.66|0.00|1.80| +261|2023-10-06T21:58:10.9970000-07:00|Remove|40021786| +24|2023-10-06T21:58:11.4660000-07:00|10FF000B|Pusu Rosu|HoT|777|15C4|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14|10FF000B|Pusu Rosu|0|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:11.4660000-07:00|10FF0003|Gegehi Gehi|HoT|777|DC9|49277|51669|5300|10000|||102.95|99.63|-0.02|-2.99|10FF000B|Pusu Rosu|0|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:11.4660000-07:00|10FF000B|Pusu Rosu|DoT|0|13D4|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14|40021585|Zeromus|FFFFFFFF|26459943|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:11.4660000-07:00|10FF000B|Pusu Rosu|HoT|0|1324|53758|55446|8686|10000|||100.08|100.57|0.00|-3.14|40021585|Zeromus|0|26459943|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:11.4660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82117|90890|10000|10000|0||100.18|101.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:58:11.4660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|39358|63151|10000|10000|0||100.12|101.37|-0.01|-3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:58:11.4660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|1||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T21:58:11.4660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9900|10000|0||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +38|2023-10-06T21:58:11.4660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55977|57078|9850|10000|0||100.97|103.86|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:58:11.4660000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5300|10000|0||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:58:11.4660000-07:00|10FF000B|Pusu Rosu|005A5A18|55270|55446|8686|10000|0||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.4660000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:58:11.4660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|38482|58451|10000|10000|0||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:11.4660000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +37|2023-10-06T21:58:11.5090000-07:00|40021585|Zeromus|000107D6|26451646||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:11.5540000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|E26|78553|90890|10000|10000|||100.18|101.06|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|52457|57078|9850|10000|||100.97|103.86|0.00|3.09| +38|2023-10-06T21:58:11.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|78495|90890|10000|10000|0||100.18|101.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:11.5550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9900|10000|0||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:11.5550000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|90349|63151| +21|2023-10-06T21:58:11.5990000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|197E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26451646|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|000107D8|0|1| +24|2023-10-06T21:58:11.6430000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|E5F|90349|90349|9900|10000|||99.65|101.13|0.00|3.12|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|9900|10000|||99.65|101.13|0.00|3.12| +20|2023-10-06T21:58:11.6430000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.97|103.81|-0.02|3.07| +38|2023-10-06T21:58:11.6430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|86670|90349|9900|10000|0||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:11.6880000-07:00|40021585|Zeromus|000107CC|26422108||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:11.6880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|38482|58451|10000|10000|0||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:11.6880000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|58451|63151| +37|2023-10-06T21:58:11.7780000-07:00|40021585|Zeromus|000107D3|26408943||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:11.7780000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|62F10000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|26422108|40478540|10000|10000|||100.00|80.10|0.00|0.00|39358|63151|10000|10000|||100.11|101.37|0.00|-3.06|000107D9|0|1| +38|2023-10-06T21:58:11.7780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55977|57078|9850|10000|0||100.97|103.81|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:11.7780000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:58:11.8230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|78495|90890|10000|10000|0||100.18|101.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:11.8230000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|90890|63151| +21|2023-10-06T21:58:11.8670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26408943|40478540|10000|10000|||100.00|80.10|0.00|0.00|38482|58451|10000|10000|||99.47|102.19|0.00|3.12|000107DA|0|1| +261|2023-10-06T21:58:11.4090000-07:00|Change|4002164C||||||||| +21|2023-10-06T21:58:12.0020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26408943|40478540|10000|10000|||100.00|80.10|0.00|0.00|86670|90349|9900|10000|||99.65|101.13|0.00|3.12|000107DB|0|1| +22|2023-10-06T21:58:12.0020000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|200004|53CF0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|000107DC|0|8| +22|2023-10-06T21:58:12.0020000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|35F50000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|78495|90890|10000|10000|||100.18|101.06|0.00|-3.13|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|000107DC|1|8| +22|2023-10-06T21:58:12.0020000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|35300000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|86670|90349|9900|10000|||99.65|101.13|0.00|3.12|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|000107DC|2|8| +22|2023-10-06T21:58:12.0020000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|36800000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|39358|63151|10000|10000|||100.11|101.37|0.00|-3.14|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|000107DC|3|8| +22|2023-10-06T21:58:12.0020000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|356A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.21|101.73|0.00|-3.13|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|000107DC|4|8| +22|2023-10-06T21:58:12.0020000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|35650000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|38482|58451|10000|10000|||99.47|102.19|0.00|3.12|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|000107DC|5|8| +22|2023-10-06T21:58:12.0020000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|53360000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|000107DC|6|8| +22|2023-10-06T21:58:12.0020000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|200004|51B20000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|55977|57078|9850|10000|||100.97|103.81|0.00|3.13|55270|55446|8686|10000|||100.08|100.57|0.00|-3.14|000107DC|7|8| +31|2023-10-06T21:58:12.0020000-07:00|10FF0001||||| +261|2023-10-06T21:58:11.6120000-07:00|Change|4002164C||||||||| +37|2023-10-06T21:58:12.1790000-07:00|10FF0001|Sesuga Sapisuga|000107D7|74336||||||99.65|101.13|0.00|3.12| +37|2023-10-06T21:58:12.1790000-07:00|40021585|Zeromus|000107D8|26402417||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:11.8340000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:58:12.2240000-07:00|10FF000B|Pusu Rosu|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14| +38|2023-10-06T21:58:12.2690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55977|57078|9850|10000|0||100.97|103.81|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:12.2690000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +21|2023-10-06T21:58:12.3130000-07:00|10FF0008|Kokosaze Lulusaze|B47|Dismantle|40021585|Zeromus|F60E|35C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26402417|40478540|10000|10000|||100.00|80.10|0.00|0.00|39358|63151|10000|10000|||100.11|101.37|0.00|-3.14|000107DD|0|1| +261|2023-10-06T21:58:11.8340000-07:00|Change|10FF000B||| +37|2023-10-06T21:58:12.4030000-07:00|40021585|Zeromus|000107DA|26400302||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:12.4030000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40021585|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26402417|40478540|10000|10000|||100.00|80.10|0.00|0.00|78495|90890|10000|10000|||100.18|101.06|0.00|-3.13|000107DE|0|1| +21|2023-10-06T21:58:12.4030000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|152003|827D0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|26402417|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|10000|10000|||100.21|101.73|0.00|-3.13|000107DF|0|1| +38|2023-10-06T21:58:12.4030000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8967|10000|0||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:12.4030000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +21|2023-10-06T21:58:12.4470000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|714003|19A60000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|26402417|40478540|10000|10000|||100.00|80.10|0.00|0.00|74336|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E0|0|1| +261|2023-10-06T21:58:11.9560000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T21:58:11.9560000-07:00|Change|10FF0006||||||||||||||| +20|2023-10-06T21:58:12.4920000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|102.95|99.63|-0.02|-2.99| +37|2023-10-06T21:58:12.5360000-07:00|40021585|Zeromus|000107DB|26398518||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:12.5360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|39358|63151|10000|10000|0||100.11|101.37|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:12.5360000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +261|2023-10-06T21:58:12.0740000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:58:12.5810000-07:00|40021585|Zeromus|000107D9|26373189||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:12.5810000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26398518|40478540|10000|10000|||100.00|80.10|0.00|0.00|39358|63151|10000|10000|||100.11|101.37|0.00|-3.14|000107E1|0|1| +21|2023-10-06T21:58:12.5810000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26398518|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9700|10000|||100.21|101.73|0.00|-3.13|000107E2|0|1| +21|2023-10-06T21:58:12.5810000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30830000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26398518|40478540|10000|10000|||100.00|80.10|0.00|0.00|55977|57078|9850|10000|||100.97|103.81|0.00|-3.10|000107E3|0|1| +37|2023-10-06T21:58:12.6240000-07:00|40021585|Zeromus|000107D5|26360130||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:12.6240000-07:00|10FF0007|Kehabiqo Febiqo|000107D5|85276||||||100.18|101.06|0.00|-3.13| +39|2023-10-06T21:58:12.6700000-07:00|4002164C|Ruby Carbuncle|54201|54201|10000|10000|||99.75|100.24|0.00|-2.73| +24|2023-10-06T21:58:12.6700000-07:00|40021585|Zeromus|DoT|0|2782|26398518|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14| +36|2023-10-06T21:58:12.6700000-07:00|3804|3| +38|2023-10-06T21:58:12.6700000-07:00|40021585|Zeromus|005A5A00|26350016|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:58:12.6700000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +38|2023-10-06T21:58:12.6700000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5300|10000|0||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:12.1690000-07:00|Change|40021585||| +30|2023-10-06T21:58:12.6700000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +261|2023-10-06T21:58:12.1690000-07:00|Change|4002164C||||||||| +37|2023-10-06T21:58:12.7140000-07:00|10FF0007|Kehabiqo Febiqo|000107DC|90890||||||100.18|101.06|0.00|-3.13| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|35C50000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|0|9| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|200004|522A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|85276|90890|10000|10000|||100.18|101.06|0.00|-3.13|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|1|9| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|43C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26350016|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|2|9| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|37810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|74336|90349|9900|10000|||99.65|101.13|0.00|3.12|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|3|9| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|200004|52800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39358|63151|10000|10000|||100.11|101.37|0.00|-3.14|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|4|9| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|36F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9700|10000|||100.21|101.73|0.00|-3.13|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|5|9| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|36ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|38482|58451|10000|10000|||99.47|102.19|0.00|3.12|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|6|9| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|36160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|7|9| +22|2023-10-06T21:58:12.7140000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|37DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55977|57078|9450|10000|||100.97|103.81|0.00|-3.10|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|000107E4|8|9| +38|2023-10-06T21:58:12.8010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9700|10000|1||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:12.8010000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +37|2023-10-06T21:58:12.8460000-07:00|10FF0001|Sesuga Sapisuga|000107DC|87952||||||99.65|101.13|0.00|3.12| +21|2023-10-06T21:58:12.8460000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|17600000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|38482|58451|10000|10000|||99.47|102.19|0.00|3.12|54201|54201|10000|10000|||99.75|100.24|0.00|-2.05|000107E5|0|1| +38|2023-10-06T21:58:12.9350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||100.18|101.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:12.9350000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +261|2023-10-06T21:58:12.4540000-07:00|Change|4002164C||||||||| +37|2023-10-06T21:58:12.9790000-07:00|40021585|Zeromus|000107DD|26350016|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035C|0|41200000|| +26|2023-10-06T21:58:12.9790000-07:00|35C|Dismantled|10.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|63151| +37|2023-10-06T21:58:12.9790000-07:00|10FF0008|Kokosaze Lulusaze|000107DC|53310||||||100.11|101.37|0.00|-3.14| +37|2023-10-06T21:58:13.0680000-07:00|40021585|Zeromus|000107DE|26350016|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020004A9|0|41200000|| +26|2023-10-06T21:58:13.0680000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40021585|Zeromus|00|40478540|90890| +37|2023-10-06T21:58:13.0680000-07:00|40021585|Zeromus|000107DF|26316611||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:13.0680000-07:00|40021585|Zeromus|000107E0|26310045||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:13.0680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87952|90349|9900|10000|0||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:13.0680000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +37|2023-10-06T21:58:13.1120000-07:00|40021585|Zeromus|000107E2|26309888||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:13.1120000-07:00|10FF0004|Buhojaqe Zijaqe|56547|57078|9650|10000|||100.97|103.81|0.00|-3.10| +39|2023-10-06T21:58:13.1120000-07:00|10FF0003|Gegehi Gehi|51669|51669|5500|10000|||102.95|99.63|-0.02|-2.99| +20|2023-10-06T21:58:13.1120000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|100.21|101.73|0.00|-3.13| +261|2023-10-06T21:58:12.5470000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:58:12.5470000-07:00|Change|10FF0003||||| +39|2023-10-06T21:58:13.1580000-07:00|10FF0008|Kokosaze Lulusaze|53941|63151|10000|10000|||100.11|101.37|0.00|-3.14| +22|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0001|Sesuga Sapisuga|4A0E|5520000|4|2AE20000|0|0|0|0|0|0|0|0|0|0|0|0|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E6|0|8| +22|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0007|Kehabiqo Febiqo|4A0E|5520000|200004|45A40000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E6|1|8| +22|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0008|Kokosaze Lulusaze|4A0E|5520000|4|2ACD0000|0|0|0|0|0|0|0|0|0|0|0|0|53310|63151|10000|10000|||100.11|101.37|0.00|-3.14|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E6|2|8| +22|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF000B|Pusu Rosu|4A0E|5520000|4|2A4A0000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|8967|10000|||100.08|100.57|0.00|-3.14|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E6|3|8| +22|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0006|Wowobora Gogobora|4A0E|5520000|4|2A810000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9700|10000|||100.21|101.73|0.00|-3.13|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E6|4|8| +22|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF000A|Dukaro Nezikaro|4A0E|5520000|4|29610000|0|0|0|0|0|0|0|0|0|0|0|0|38482|58451|10000|10000|||99.47|102.19|0.00|3.12|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E6|5|8| +22|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0004|Buhojaqe Zijaqe|4A0E|5520000|200004|45C00000|0|0|0|0|0|0|0|0|0|0|0|0|55977|57078|9450|10000|||100.97|103.81|0.00|-3.10|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E6|6|8| +22|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0003|Gegehi Gehi|4A0E|5520000|4|28B60000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|87952|90349|9900|10000|||99.65|101.13|0.00|3.12|000107E6|7|8| +38|2023-10-06T21:58:13.1580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|9||100.18|101.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.1580000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +38|2023-10-06T21:58:13.1580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53941|63151|10000|10000|14||100.11|101.37|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.1580000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|63151|90349| +38|2023-10-06T21:58:13.1580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9700|10000|15||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.1580000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|57266|90349| +38|2023-10-06T21:58:13.1580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87952|90349|9900|10000|9||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.1580000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:58:13.1580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56547|57078|9650|10000|15||100.97|103.81|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.1580000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|57078|90349| +38|2023-10-06T21:58:13.1580000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5500|10000|17||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.1580000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|51669|90349| +38|2023-10-06T21:58:13.1580000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8967|10000|16||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.1580000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF000B|Pusu Rosu|00|55446|90349| +38|2023-10-06T21:58:13.1580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|38482|58451|10000|10000|15||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.1580000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|58451|90349| +38|2023-10-06T21:58:13.2020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|38482|58451|10000|10000|15||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:13.2020000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +37|2023-10-06T21:58:13.2470000-07:00|10FF000A|Dukaro Nezikaro|000107DC|52151||||||99.47|102.19|0.00|3.12| +39|2023-10-06T21:58:13.2920000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9900|10000|||100.21|101.73|0.00|-3.13| +38|2023-10-06T21:58:13.2920000-07:00|4002164C|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.75|100.24|0.00|-0.56|0|0|0|||||||||| +26|2023-10-06T21:58:13.2920000-07:00|7AC|Summon Order II|30.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:58:13.2920000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56547|57078|9650|10000|||100.97|103.80|0.00|3.13|56547|57078|9650|10000|||100.97|103.80|0.00|3.13|000107E7|0|1| +21|2023-10-06T21:58:13.2920000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2DEE0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|26309888|40478540|10000|10000|||100.00|80.10|0.00|0.00|38482|58451|10000|10000|||99.47|102.19|0.00|3.12|000107E8|0|1| +261|2023-10-06T21:58:12.7760000-07:00|Change|4002164C||||||||| +261|2023-10-06T21:58:12.7760000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:58:13.3370000-07:00|40021585|Zeromus|000107E1|26306190||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:13.3810000-07:00|40021585|Zeromus|000107E3|26293771||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:13.3810000-07:00|10FF000B|Pusu Rosu|000107E4|55446|55446|9467|10000|16||100.08|100.57|0.00|-3.14|1800|0|0|0| +21|2023-10-06T21:58:13.3810000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|126A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26309888|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|000107E9|0|1| +261|2023-10-06T21:58:12.8890000-07:00|Change|4002157A||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021574||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021572||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021578||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|4002157B||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021576||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021570||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021573||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|4002156E||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021571||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021579||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|40021577||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|4002156F||||||||| +261|2023-10-06T21:58:12.8890000-07:00|Change|10FF000B||| +20|2023-10-06T21:58:13.4700000-07:00|4002156E|Comet|8B5C|Meteor Impact|4002156E|Comet|5.700|103.20|91.40|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|4002156F|Comet|8B5C|Meteor Impact|4002156F|Comet|5.700|86.20|97.20|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021570|Comet|8B5C|Meteor Impact|40021570|Comet|5.700|118.00|83.00|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021571|Comet|8B5C|Meteor Impact|40021571|Comet|5.700|113.80|89.20|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021572|Comet|8B5C|Meteor Impact|40021572|Comet|5.700|110.60|84.00|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021573|Comet|8B5C|Meteor Impact|40021573|Comet|5.700|105.00|82.40|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021574|Comet|8B5C|Meteor Impact|40021574|Comet|5.700|100.00|85.60|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021575|Comet|8B5C|Meteor Impact|40021575|Comet|5.700|95.00|82.40|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021576|Comet|8B5C|Meteor Impact|40021576|Comet|5.700|89.40|84.00|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021577|Comet|8B5C|Meteor Impact|40021577|Comet|5.700|86.20|89.20|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021578|Comet|8B5C|Meteor Impact|40021578|Comet|5.700|82.00|83.00|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021579|Comet|8B5C|Meteor Impact|40021579|Comet|5.700|118.00|102.00|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|4002157A|Comet|8B5C|Meteor Impact|4002157A|Comet|5.700|82.00|102.00|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|4002157B|Comet|8B5C|Meteor Impact|4002157B|Comet|5.700|100.00|117.60|0.00|0.00| +20|2023-10-06T21:58:13.4700000-07:00|40021585|Zeromus|8B57|Void Meteor|40021585|Zeromus|4.500|100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:13.0060000-07:00|Change|40021575||||||||||||||||| +261|2023-10-06T21:58:13.0060000-07:00|Change|40021585||||||||||||| +37|2023-10-06T21:58:13.5150000-07:00|10FF0004|Buhojaqe Zijaqe|000107DC|57078||||||100.99|103.71|0.00|2.85| +21|2023-10-06T21:58:13.5590000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|77850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26293771|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|000107EA|0|1| +37|2023-10-06T21:58:13.6480000-07:00|10FF000A|Dukaro Nezikaro|000107E5|58135||||||99.47|102.19|0.00|3.12| +37|2023-10-06T21:58:13.6480000-07:00|40021585|Zeromus|000107E4|26276419||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:13.6930000-07:00|40021585|Zeromus|000107E8|26264661||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:13.2140000-07:00|Change|40021585||||| +261|2023-10-06T21:58:13.2140000-07:00|Change|4002178C||||| +38|2023-10-06T21:58:13.7800000-07:00|40021798||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:13.7820000-07:00|40021798||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:58:13.7820000-07:00|10FF0001|Sesuga Sapisuga|000107E6|90349|90349|9900|10000|9||99.65|101.13|0.00|3.12|1300|0|0|01|03000552|0|41EB5C27|| +39|2023-10-06T21:58:13.8260000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||99.65|101.13|0.00|3.12| +261|2023-10-06T21:58:13.3120000-07:00|Change|10FF0001||| +03|2023-10-06T21:58:13.4100000-07:00|40021798|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||100.19|100.00|0.00|0.01| +261|2023-10-06T21:58:13.4100000-07:00|Add|40021798||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:13.9150000-07:00|40021585|Zeromus|000107E9|26259947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:13.9150000-07:00|10FF0007|Kehabiqo Febiqo|000107E6|90890|90890|10000|10000|9||100.18|101.06|0.00|-3.13|1501|0|0|01|01000552|0|41EA4BC4|| +37|2023-10-06T21:58:13.9150000-07:00|10FF0008|Kokosaze Lulusaze|000107E4|63151||||||100.11|101.37|0.00|-3.14| +22|2023-10-06T21:58:13.9150000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF000B|Pusu Rosu|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15|000107EB|0|8| +22|2023-10-06T21:58:13.9150000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15|000107EB|1|8| +22|2023-10-06T21:58:13.9150000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15|000107EB|2|8| +22|2023-10-06T21:58:13.9150000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|53941|63151|10000|10000|||100.11|101.37|0.00|-3.14|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15|000107EB|3|8| +22|2023-10-06T21:58:13.9150000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9900|10000|||100.21|101.73|0.00|-3.13|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15|000107EB|4|8| +22|2023-10-06T21:58:13.9150000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|58135|58451|10000|10000|||99.47|102.19|0.00|3.12|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15|000107EB|5|8| +22|2023-10-06T21:58:13.9150000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|9650|10000|||101.21|103.07|0.00|2.46|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15|000107EB|6|8| +22|2023-10-06T21:58:13.9150000-07:00|4002164C|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5500|10000|||102.95|99.63|-0.02|-2.99|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15|000107EB|7|8| +21|2023-10-06T21:58:13.9150000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|450003|2E390000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|26264661|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5500|10000|||102.95|99.63|-0.02|-2.99|000107EC|0|1| +38|2023-10-06T21:58:13.9150000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5300|10000|17||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:13.9150000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +30|2023-10-06T21:58:13.9150000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:58:13.4100000-07:00|Change|4002157A||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021576||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|4002156E||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021571||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|4002156F||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021572||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021577||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021570||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021579||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|4002157B||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021578||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021574||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021573||||||||||||| +261|2023-10-06T21:58:13.4100000-07:00|Change|40021798||| +37|2023-10-06T21:58:14.0480000-07:00|10FF0008|Kokosaze Lulusaze|000107E6|63151|63151|10000|10000|14||100.11|101.37|0.00|-3.14|1F02|0|0|01|04000552|0|41E93B61|| +24|2023-10-06T21:58:14.0480000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|63151|63151|10000|10000|||100.11|101.37|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|9650|10000|||101.27|102.91|-0.01|2.36| +261|2023-10-06T21:58:13.6130000-07:00|Change|10FF0006||||| +261|2023-10-06T21:58:13.6130000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T21:58:14.0490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1835|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.0490000-07:00|10FF0003|Gegehi Gehi|HoT|798|E3F|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.0490000-07:00|10FF0006|Wowobora Gogobora|HoT|798|F03|57266|57266|9900|10000|||100.21|101.73|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.0490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|ED5|63151|63151|10000|10000|||100.11|101.37|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.0490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|EBF|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.0490000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|EEE|58135|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.0490000-07:00|10FF000B|Pusu Rosu|HoT|798|1743|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.0490000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|EE7|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.0490000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|40021585|Zeromus|FFFFFFFF|26259947|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:14.0490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1319|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|40021585|Zeromus|0|26259947|40478540|10000|10000|||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:14.0490000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|101.27|102.89|0.00|2.35| +21|2023-10-06T21:58:14.0490000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26259947|40478540|10000|10000|||100.00|80.10|0.00|0.00|58135|58451|10000|10000|||99.47|102.19|0.00|3.12|000107ED|0|1| +38|2023-10-06T21:58:14.0490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|9||100.18|101.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.0490000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:58:14.0490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|4||100.11|101.37|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.0490000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:58:14.0490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9900|10000|15||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.0490000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:58:14.0490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|9||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.0490000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:58:14.0490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|9650|10000|6||101.27|102.89|0.00|2.35|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.0490000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:58:14.0490000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5300|10000|17||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.0490000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:58:14.0490000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9467|10000|16||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.0490000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:58:14.0490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|15||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.0490000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +37|2023-10-06T21:58:14.1820000-07:00|10FF000B|Pusu Rosu|000107E6|55446|55446|9467|10000|16||100.08|100.57|0.00|-3.14|1803|0|0|01|02000552|0|41E828F2|| +24|2023-10-06T21:58:14.1820000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|57266|57266|9900|10000|||100.21|101.73|0.00|-3.13|10FF0006|Wowobora Gogobora|FFFFFFFF|57266|57266|9900|10000|||100.21|101.73|0.00|-3.13| +24|2023-10-06T21:58:14.1820000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1316|57266|57266|9900|10000|||100.21|101.73|0.00|-3.13|10FF0006|Wowobora Gogobora|0|57266|57266|9900|10000|||100.21|101.73|0.00|-3.13| +38|2023-10-06T21:58:14.1820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|5||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:14.1820000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +30|2023-10-06T21:58:14.1820000-07:00|A8E|Radiant Aegis|0.00|40021786|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|| +37|2023-10-06T21:58:14.2270000-07:00|40021585|Zeromus|000107EA|26229350||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:13.8520000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:58:14.2720000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1E4B0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|26229350|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.11|101.37|0.00|-3.14|000107EE|0|1| +21|2023-10-06T21:58:14.2720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26229350|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|000107EF|0|1| +31|2023-10-06T21:58:14.2720000-07:00|10FF0001||||| +37|2023-10-06T21:58:14.3170000-07:00|10FF0006|Wowobora Gogobora|000107E6|57266|57266|10000|10000|5||100.21|101.73|0.00|-3.13|1B04|0|0|01|01000552|0|41E71683|| +21|2023-10-06T21:58:14.3170000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26229350|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|000107F0|0|1| +39|2023-10-06T21:58:14.3610000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||99.47|102.19|0.00|3.12| +24|2023-10-06T21:58:14.3610000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +24|2023-10-06T21:58:14.3610000-07:00|10FF0003|Gegehi Gehi|HoT|0|138C|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|10FF0004|Buhojaqe Zijaqe|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +38|2023-10-06T21:58:14.3610000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5300|10000|6||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:13.8520000-07:00|Remove|40021783| +37|2023-10-06T21:58:14.4490000-07:00|10FF000A|Dukaro Nezikaro|000107E6|58451|58451|10000|10000|15||99.47|102.19|0.00|3.12|1E05|0|0|01|03000552|0|41E60414|| +39|2023-10-06T21:58:14.4490000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13| +24|2023-10-06T21:58:14.4490000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +38|2023-10-06T21:58:14.4490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|4||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:58:14.4950000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|15D8|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF000B|Pusu Rosu|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:14.4950000-07:00|10FF0006|Wowobora Gogobora|HoT|777|D7E|57266|57266|10000|10000|||100.21|101.73|0.00|-3.13|10FF000B|Pusu Rosu|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:14.4960000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E13|63151|63151|10000|10000|||100.11|101.37|0.00|-3.14|10FF000B|Pusu Rosu|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:14.4960000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|D7B|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|10FF000B|Pusu Rosu|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:14.4960000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DD4|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|10FF000B|Pusu Rosu|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:14.4960000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|D87|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|10FF000B|Pusu Rosu|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:14.4960000-07:00|10FF000B|Pusu Rosu|HoT|777|D94|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14|10FF000B|Pusu Rosu|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:14.4960000-07:00|10FF0003|Gegehi Gehi|HoT|777|14BD|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|10FF000B|Pusu Rosu|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:14.4960000-07:00|10FF000B|Pusu Rosu|DoT|0|0|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14|40021585|Zeromus|FFFFFFFF|26229350|40478540|10000|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:14.4960000-07:00|10FF000B|Pusu Rosu|HoT|0|1CFE|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14|40021585|Zeromus|0|26229350|40478540|10000|10000|||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:14.4960000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|752003|10E30000|BDA40E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|26229350|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|9467|10000|||100.08|100.57|0.00|-3.14|000107F1|0|1| +38|2023-10-06T21:58:14.4960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|9||100.18|101.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.4960000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:58:14.4960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|4||100.11|101.37|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.4960000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:58:14.4960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|5||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.4960000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T21:58:14.4960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|9||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.4960000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +38|2023-10-06T21:58:14.4960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|9650|10000|6||101.27|102.89|0.00|2.35|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.4960000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:58:14.4960000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5300|10000|6||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.4960000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:58:14.4960000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9067|10000|7||100.08|100.57|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.4960000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:58:14.4960000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|4||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.4960000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +261|2023-10-06T21:58:14.0940000-07:00|Change|10FF000B||| +24|2023-10-06T21:58:14.5400000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|9650|10000|||101.27|102.89|0.00|2.35| +38|2023-10-06T21:58:14.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|5||100.18|101.06|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:14.5840000-07:00|10FF0004|Buhojaqe Zijaqe|000107E6|57078|57078|9650|10000|6||101.27|102.89|0.00|2.35|1C06|0|0|01|04000552|0|41E4F1A5|| +37|2023-10-06T21:58:14.5840000-07:00|40021585|Zeromus|000107ED|26227181||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:14.6280000-07:00|40021585|Zeromus|005A5A00|26227181|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:58:14.6280000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|55446| +24|2023-10-06T21:58:14.6720000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|10000|10000|||99.65|101.13|0.00|3.12| +38|2023-10-06T21:58:14.6720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|5||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:14.7170000-07:00|10FF000B|Pusu Rosu|000107EB|55446|55446|9067|10000|7||100.08|100.57|0.00|-3.14|1800|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:58:14.7170000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|55446|54201| +37|2023-10-06T21:58:14.7170000-07:00|10FF0003|Gegehi Gehi|000107E6|51669|51669|5300|10000|6||102.95|99.63|-0.02|-2.99|2307|0|0|01|02000552|0|41E3E142|| +37|2023-10-06T21:58:14.7170000-07:00|40021585|Zeromus|000107EC|26215348||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:14.2810000-07:00|Change|40021585||||| +261|2023-10-06T21:58:14.2810000-07:00|Change|40021798||| +37|2023-10-06T21:58:14.8060000-07:00|40021585|Zeromus|000107EF|26213651||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:58:14.8060000-07:00|40021798|Carbuncle|40021798|Carbuncle|01| +37|2023-10-06T21:58:14.8500000-07:00|10FF0001|Sesuga Sapisuga|000107EB|90349|90349|10000|10000|5||99.65|101.13|0.00|3.12|1301|0|0|01|0700013D|0|41A00000|| +26|2023-10-06T21:58:14.8500000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|54201| +37|2023-10-06T21:58:14.8500000-07:00|40021585|Zeromus|000107F0|26213615||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:14.8950000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|53770000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|26213615|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5300|10000|||102.95|99.63|-0.02|-2.99|000107F2|0|1| +38|2023-10-06T21:58:14.8950000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5000|10000|6||102.95|99.63|-0.02|-2.99|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:14.8950000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:58:14.8950000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +21|2023-10-06T21:58:14.9390000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|282A0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|26213615|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|000107F3|0|1| +38|2023-10-06T21:58:14.9390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|5||99.65|101.13|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:14.9390000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +37|2023-10-06T21:58:14.9830000-07:00|10FF0007|Kehabiqo Febiqo|000107EB|90890|90890|10000|10000|5||100.18|101.06|0.00|-3.13|1502|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T21:58:14.9830000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|54201| +37|2023-10-06T21:58:15.0280000-07:00|40021585|Zeromus|000107EE|26205860||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:15.1170000-07:00|10FF0008|Kokosaze Lulusaze|000107EB|63151|63151|10000|10000|4||100.13|101.42|0.00|1.96|1F03|0|0|01|0600013D|0|41A00000|| +26|2023-10-06T21:58:15.1170000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|54201| +261|2023-10-06T21:58:14.6860000-07:00|Change|10FF0006||||| +261|2023-10-06T21:58:14.6860000-07:00|Change|10FF0003||| +37|2023-10-06T21:58:15.2510000-07:00|10FF0006|Wowobora Gogobora|000107EB|57266|57266|10000|10000|5||100.21|101.73|0.00|-3.13|1B04|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:58:15.2510000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +39|2023-10-06T21:58:15.2510000-07:00|10FF000B|Pusu Rosu|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +21|2023-10-06T21:58:15.2510000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26205860|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.11|101.49|0.00|1.33|000107F4|0|1| +37|2023-10-06T21:58:15.3840000-07:00|10FF000A|Dukaro Nezikaro|000107EB|58451|58451|10000|10000|4||99.47|102.19|0.00|3.12|1E05|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T21:58:15.3840000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|58451|54201| +21|2023-10-06T21:58:15.3840000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|150003|53500000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|26205860|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|10000|10000|||100.21|101.73|0.00|-3.13|000107F5|0|1| +22|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|1C370000|240E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|000107F6|0|8| +22|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1C6B0000|780E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|57266|57266|9700|10000|||100.21|101.73|0.00|-3.13|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|000107F6|1|8| +22|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|1B8C0000|130E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.95|101.78|0.00|0.48|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|000107F6|2|8| +22|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|1B9B0000|2B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|000107F6|3|8| +22|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|1CEC0000|460E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|000107F6|4|8| +22|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|2DF00000|800E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|000107F6|5|8| +22|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|200004|2E150000|BB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|000107F6|6|8| +22|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|2C880000|400E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|51669|51669|5000|10000|||102.95|99.63|-0.02|-2.99|57078|57078|9650|10000|||101.27|102.89|0.00|2.35|000107F6|7|8| +38|2023-10-06T21:58:15.4750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|18||100.18|101.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:15.4750000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:58:15.4750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|22||99.95|101.78|0.00|0.48|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:15.4750000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:58:15.4750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9700|10000|26||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:15.4750000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:58:15.4750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|26||99.65|101.13|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:15.4750000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:58:15.4750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8650|10000|26||101.27|102.89|0.00|2.35|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:15.4750000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:58:15.4750000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5000|10000|42||102.95|99.63|-0.02|-2.99|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:15.4750000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:58:15.4750000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9348|10000|41||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:15.4750000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:58:15.4750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|24||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:15.4750000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +37|2023-10-06T21:58:15.5180000-07:00|10FF0004|Buhojaqe Zijaqe|000107EB|57078|57078|8650|10000|26||101.27|102.89|0.00|2.35|1C06|0|0|01|0700013D|0|41A00000|| +26|2023-10-06T21:58:15.5180000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +261|2023-10-06T21:58:15.0300000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T21:58:15.0300000-07:00|Change|10FF000B||| +37|2023-10-06T21:58:15.6520000-07:00|10FF0003|Gegehi Gehi|000107EB|51669|51669|5000|10000|42||102.95|99.63|-0.02|-2.99|2307|0|0|02|0B0004D2|0|C1F00000|||||| +26|2023-10-06T21:58:15.6520000-07:00|13D|Fey Illumination|20.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51669|54201| +37|2023-10-06T21:58:15.6520000-07:00|40021585|Zeromus|000107F2|26184493||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:15.6520000-07:00|10FF0003|Gegehi Gehi|000107F2|51669|51669|5000|10000|42||102.95|99.63|-0.02|-2.99|2300|0|0|01|0B0004D2|0|41F00000|| +24|2023-10-06T21:58:15.6520000-07:00|40021585|Zeromus|DoT|0|10E6|26205860|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|10000|10000|||99.65|101.13|0.00|3.12| +36|2023-10-06T21:58:15.6520000-07:00|38E0|3| +38|2023-10-06T21:58:15.6520000-07:00|4002164C|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.75|100.24|0.00|-0.15|0|0|0||||||| +30|2023-10-06T21:58:15.6520000-07:00|7AC|Summon Order II|0.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|54201|54201| +38|2023-10-06T21:58:15.6520000-07:00|40021585|Zeromus|005A5A00|26180167|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:58:15.6520000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +38|2023-10-06T21:58:15.6520000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5000|10000|42||102.95|99.63|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:58:15.6950000-07:00|4002164C|Ruby Carbuncle|54201|54201|10000|10000|||99.75|100.24|0.00|-0.15| +21|2023-10-06T21:58:15.7410000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26205860|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8650|10000|||101.27|102.89|0.00|2.35|000107F7|0|1| +37|2023-10-06T21:58:15.7840000-07:00|40021585|Zeromus|000107F1|26175844|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500074F|0|41F00000|| +26|2023-10-06T21:58:15.7840000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|55446| +21|2023-10-06T21:58:15.8290000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|32310000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|26180167|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|000107F8|0|1| +37|2023-10-06T21:58:16.0070000-07:00|40021585|Zeromus|000107F4|26173563||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:16.0070000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|38170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26175844|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|000107F9|0|1| +37|2023-10-06T21:58:16.0510000-07:00|40021585|Zeromus|000107F5|26152235||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:16.0970000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|8850|10000|||100.96|102.56|0.00|2.77| +21|2023-10-06T21:58:16.0970000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40021585|Zeromus|150003|47DD0000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|26173563|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9700|10000|||100.21|101.73|0.00|-3.13|000107FA|0|1| +38|2023-10-06T21:58:16.0970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9700|10000|26||100.21|101.73|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:16.0970000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:58:15.6360000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T21:58:16.1410000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.81|102.22|-0.02|-0.08| +39|2023-10-06T21:58:16.1410000-07:00|10FF0003|Gegehi Gehi|51669|51669|5200|10000|||102.95|99.63|-0.02|-2.99| +37|2023-10-06T21:58:16.2290000-07:00|40021585|Zeromus|000107F3|26141953||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:16.2290000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26152235|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|000107FB|0|1| +261|2023-10-06T21:58:15.7540000-07:00|Change|10FF0003||| +37|2023-10-06T21:58:16.2730000-07:00|40021585|Zeromus|000107F7|26141700||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:16.2730000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9900|10000|||100.21|101.73|0.00|-3.13| +37|2023-10-06T21:58:16.3620000-07:00|40021585|Zeromus|000107F8|26128851||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:16.4510000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.32|101.92|0.00|-2.68| +21|2023-10-06T21:58:16.5400000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26128851|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|000107FC|0|1| +21|2023-10-06T21:58:16.5400000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|754003|30B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26128851|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|000107FD|0|1| +31|2023-10-06T21:58:16.5400000-07:00|10FF0001||||| +37|2023-10-06T21:58:16.5840000-07:00|10FF0004|Buhojaqe Zijaqe|000107F6|57078|57078|8850|10000|26||100.16|101.78|0.00|-2.66|1C00|0|0|01|06000129|0|41E776C4|| +38|2023-10-06T21:58:16.5840000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9348|10000|41||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:16.5840000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +261|2023-10-06T21:58:16.0960000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T21:58:16.6280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8850|10000|26||100.16|101.78|0.00|-2.66|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:16.6280000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +37|2023-10-06T21:58:16.6730000-07:00|40021585|Zeromus|000107F9|26114492||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:16.1950000-07:00|Remove|40021785| +37|2023-10-06T21:58:16.7180000-07:00|10FF0006|Wowobora Gogobora|000107F6|57266|57266|9900|10000|26||100.20|100.75|0.00|-3.13|1B01|0|0|01|08000129|0|41E66662|| +38|2023-10-06T21:58:16.7180000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8850|10000|26||100.12|101.75|0.00|-2.81|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:16.7180000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +37|2023-10-06T21:58:16.7630000-07:00|40021585|Zeromus|000107FB|26112378||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:16.7630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|13370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26128851|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|000107FE|0|1| +21|2023-10-06T21:58:16.7630000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2BB20000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|26128851|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.81|102.22|0.00|-0.08|000107FF|0|1| +261|2023-10-06T21:58:16.2900000-07:00|Change|4002164C||||||||| +39|2023-10-06T21:58:16.8070000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||99.65|101.13|0.00|3.12| +37|2023-10-06T21:58:16.8510000-07:00|10FF0008|Kokosaze Lulusaze|000107F6|63151|63151|10000|10000|22||99.81|102.22|0.00|3.13|1F02|0|0|01|0A000129|0|41E555FF|| +38|2023-10-06T21:58:16.8510000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5200|10000|42||102.53|99.70|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:16.8510000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +37|2023-10-06T21:58:16.9400000-07:00|40021585|Zeromus|000107FA|26093981||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:16.9400000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.08|100.57|0.00|-3.14| +261|2023-10-06T21:58:16.4840000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T21:58:16.9830000-07:00|10FF000A|Dukaro Nezikaro|000107F6|58451|58451|10000|10000|24||99.47|102.19|0.00|3.12|1E03|0|0|01|0C000129|0|41E44390|| +38|2023-10-06T21:58:16.9840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9900|10000|26||100.19|100.59|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:16.9840000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +37|2023-10-06T21:58:17.0730000-07:00|40021585|Zeromus|000107FC|26091158||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:17.0730000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|8850|10000|||100.02|101.67|-0.02|-3.14| +24|2023-10-06T21:58:17.0730000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|0|57078|57078|8850|10000|||100.02|101.67|-0.02|-3.14|40021585|Zeromus|FFFFFFFF|26093981|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:17.0730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||99.81|102.22|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:17.0730000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|63151|90349| +38|2023-10-06T21:58:17.0730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8850|10000|17||100.02|101.67|-0.02|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:17.0730000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|57078|90349| +37|2023-10-06T21:58:17.1170000-07:00|10FF0007|Kehabiqo Febiqo|000107F6|90890|90890|10000|10000|18||100.18|101.06|0.00|-3.13|1504|0|0|01|0B000129|0|41E3353A|| +24|2023-10-06T21:58:17.1630000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|57266|57266|9900|10000|||100.18|100.58|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|8850|10000|||100.02|101.67|0.00|-3.14| +38|2023-10-06T21:58:17.1630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|16||100.18|100.58|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:17.1630000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|57266|90349| +261|2023-10-06T21:58:16.7010000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:58:17.2060000-07:00|40021585|Zeromus|000107FD|26078688||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:17.2510000-07:00|10FF0001|Sesuga Sapisuga|000107F6|90349|90349|10000|10000|26||99.65|101.13|0.00|3.12|1305|0|0|01|0C000129|0|41E222CB|| +37|2023-10-06T21:58:17.2950000-07:00|40021585|Zeromus|000107FE|26073769||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:17.3400000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||99.47|102.19|0.00|3.12| +20|2023-10-06T21:58:17.3400000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|102.43|99.72|0.00|-2.98| +261|2023-10-06T21:58:16.8230000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T21:58:17.3850000-07:00|10FF000B|Pusu Rosu|000107F6|55446|55446|9348|10000|41||100.08|100.57|0.00|-3.14|1806|0|0|01|0C000129|0|41E11268|| +24|2023-10-06T21:58:17.3850000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-2.98|4002164C|Ruby Carbuncle|FFFFFFFF|54201|54201|10000|10000|||99.75|100.24|0.00|3.13| +21|2023-10-06T21:58:17.3850000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4E7C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|26073769|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8850|10000|||100.02|101.67|0.00|-3.14|00010800|0|1| +38|2023-10-06T21:58:17.3850000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5200|10000|30||102.43|99.72|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:17.3850000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|51669|90349| +24|2023-10-06T21:58:17.4290000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|8450|10000|||100.02|101.67|0.00|-3.14| +21|2023-10-06T21:58:17.4290000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|29C20000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|26073769|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|00010801|0|1| +38|2023-10-06T21:58:17.4290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|26||99.65|101.13|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.4290000-07:00|76E|Sword Oath|23.06|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +38|2023-10-06T21:58:17.4290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:17.4290000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|58451|90349| +39|2023-10-06T21:58:17.4740000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13| +24|2023-10-06T21:58:17.4740000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|D9D|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF000B|Pusu Rosu|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:17.4740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|1554|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|10FF000B|Pusu Rosu|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:17.4740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|1563|57078|57078|8450|10000|||100.02|101.67|0.00|-3.14|10FF000B|Pusu Rosu|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:17.4740000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|D9B|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|10FF000B|Pusu Rosu|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:17.4740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|1518|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|10FF000B|Pusu Rosu|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:17.4740000-07:00|10FF000B|Pusu Rosu|HoT|777|1571|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14|10FF000B|Pusu Rosu|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:17.4740000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DF2|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|10FF000B|Pusu Rosu|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:17.4740000-07:00|10FF0003|Gegehi Gehi|HoT|777|DE8|51669|51669|5200|10000|||102.43|99.72|0.00|-2.98|10FF000B|Pusu Rosu|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:17.4750000-07:00|10FF000B|Pusu Rosu|DoT|0|0|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|8450|10000|||100.02|101.67|0.00|-3.14| +38|2023-10-06T21:58:17.4750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|18||100.18|101.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:58:17.4750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||99.81|102.22|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:58:17.4750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|16||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T21:58:17.4750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|26||99.65|101.13|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +04|2023-10-06T21:58:17.0510000-07:00|4002178C|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|54388|0|10000|||101.98|103.49|0.00|-3.13| +38|2023-10-06T21:58:17.4750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8450|10000|17||100.02|101.67|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:58:17.4750000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5200|10000|30||102.43|99.72|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:58:17.4750000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9348|10000|31||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:17.4750000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF000B|Pusu Rosu|00|55446|90349| +26|2023-10-06T21:58:17.4750000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:58:17.4750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.4750000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +261|2023-10-06T21:58:17.0510000-07:00|Remove|4002178C| +37|2023-10-06T21:58:17.5190000-07:00|10FF0003|Gegehi Gehi|000107F6|51669|51669|5200|10000|30||102.43|99.72|0.00|-2.98|2307|0|0|01|03000129|0|41DFFDED|| +37|2023-10-06T21:58:17.5640000-07:00|40021585|Zeromus|000107FF|26062583||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:17.5640000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|8450|10000|||100.02|101.67|0.00|-3.14| +38|2023-10-06T21:58:17.5640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|14||100.18|101.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:17.1700000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T21:58:17.6520000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|8450|10000|||100.02|101.67|0.00|-3.14| +38|2023-10-06T21:58:17.6520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|22||99.65|101.13|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:58:17.8750000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|304B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|26062583|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|9348|10000|||100.08|100.57|0.00|-3.14|00010802|0|1| +21|2023-10-06T21:58:17.9190000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26062583|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|00010803|0|1| +38|2023-10-06T21:58:17.9640000-07:00|4002164C|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.75|100.24|0.00|3.13|0|0|0|||||||||| +26|2023-10-06T21:58:17.9640000-07:00|77B|Summon Order|30.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:58:17.9640000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8450|10000|||100.02|101.67|0.00|-3.14|57078|57078|8450|10000|||100.02|101.67|0.00|-3.14|00010804|0|1| +21|2023-10-06T21:58:17.9640000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|00010805|0|1| +38|2023-10-06T21:58:17.9640000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:17.9640000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +261|2023-10-06T21:58:17.4610000-07:00|Change|10FF000B||||||||||||||| +22|2023-10-06T21:58:18.0510000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF000B|Pusu Rosu|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|8948|10000|||100.08|100.57|0.00|-3.14|54201|54201|10000|10000|||99.75|100.24|0.00|3.13|00010806|0|8| +22|2023-10-06T21:58:18.0510000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|54201|54201|10000|10000|||99.75|100.24|0.00|3.13|00010806|1|8| +22|2023-10-06T21:58:18.0510000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|54201|54201|10000|10000|||99.75|100.24|0.00|3.13|00010806|2|8| +22|2023-10-06T21:58:18.0510000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|54201|54201|10000|10000|||99.75|100.24|0.00|3.13|00010806|3|8| +22|2023-10-06T21:58:18.0510000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8450|10000|||100.02|101.67|0.00|-3.14|54201|54201|10000|10000|||99.75|100.24|0.00|3.13|00010806|4|8| +22|2023-10-06T21:58:18.0510000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|54201|54201|10000|10000|||99.75|100.24|0.00|3.13|00010806|5|8| +22|2023-10-06T21:58:18.0510000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|54201|54201|10000|10000|||99.75|100.24|0.00|3.13|00010806|6|8| +22|2023-10-06T21:58:18.0510000-07:00|4002164C|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|54201|54201|10000|10000|||99.75|100.24|0.00|3.13|00010806|7|8| +21|2023-10-06T21:58:18.0510000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26062583|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|00010807|0|1| +37|2023-10-06T21:58:18.1840000-07:00|40021585|Zeromus|00010800|26042491||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:18.2290000-07:00|10FF000B|Pusu Rosu|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14| +21|2023-10-06T21:58:18.2290000-07:00|40021585|Zeromus|8B57|Void Meteor|40021585|Zeromus|1B|8B578000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26042491|40478540|10000|10000|||100.00|80.10|0.00|0.00|26042491|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010808|0|1| +21|2023-10-06T21:58:18.2730000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|00010809|0|1| +261|2023-10-06T21:58:17.7880000-07:00|Change|40021585||||| +21|2023-10-06T21:58:18.4060000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|11CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26042491|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|0001080A|0|1| +21|2023-10-06T21:58:18.4500000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|714003|1C510000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|26042491|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|0001080B|0|1| +21|2023-10-06T21:58:18.4500000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|0001080C|0|1| +38|2023-10-06T21:58:18.4500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:18.4500000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|58451|58451| +37|2023-10-06T21:58:18.5840000-07:00|40021585|Zeromus|00010807|26042342||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:18.5840000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40021585|Zeromus|152003|73180000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|26042491|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|0001080D|0|1| +37|2023-10-06T21:58:18.6730000-07:00|40021585|Zeromus|00010803|26040077||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:18.6740000-07:00|4002164C|Ruby Carbuncle|54201|54201|10000|10000|||99.75|100.24|0.00|3.13| +24|2023-10-06T21:58:18.6740000-07:00|40021585|Zeromus|DoT|0|1B5A|26042342|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14| +36|2023-10-06T21:58:18.6740000-07:00|39BC|3| +38|2023-10-06T21:58:18.6740000-07:00|40021585|Zeromus|005A5A00|26033075|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:18.6740000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +38|2023-10-06T21:58:18.7610000-07:00|4002179A||005A5A00|59967|59967|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:18.7640000-07:00|4002179A||005A5A00|59967|59967|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:58:18.7640000-07:00|40021585|Zeromus|00010801|26022385||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:18.7640000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|150003|30D90000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|26033075|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|0001080E|0|1| +38|2023-10-06T21:58:18.7640000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5000|10000|30||102.43|99.72|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:18.7640000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +30|2023-10-06T21:58:18.7640000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:58:18.3330000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T21:58:18.8080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26033075|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|0001080F|0|1| +31|2023-10-06T21:58:18.8080000-07:00|10FF0001||||| +38|2023-10-06T21:58:18.8520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|16||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:18.8520000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:58:18.9410000-07:00|10FF000B|Pusu Rosu|00010806|55446|55446|9229|10000|31||100.08|100.57|0.00|-3.14|1800|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:58:18.9410000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|55446|54201| +37|2023-10-06T21:58:18.9410000-07:00|40021585|Zeromus|0001080A|26017829||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:18.9410000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|00010810|0|1| +38|2023-10-06T21:58:18.9410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:18.9410000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|58451|58451| +261|2023-10-06T21:58:18.5170000-07:00|Change|10FF000B||| +37|2023-10-06T21:58:18.9850000-07:00|40021585|Zeromus|0001080B|26010580||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:19.0300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.93|101.42|0.00|-2.99| +38|2023-10-06T21:58:19.0310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8450|10000|17||99.93|101.42|0.00|-2.99|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.0310000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:58:19.0310000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5000|10000|30||102.43|99.72|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.0310000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:58:19.0310000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9229|10000|31||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.0310000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:58:19.0310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.0310000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +261|2023-10-06T21:58:18.5170000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:58:19.0740000-07:00|10FF0006|Wowobora Gogobora|00010806|57266|57266|10000|10000|16||100.18|100.57|0.00|-3.13|1B01|0|0|01|013B|0|41A80000|| +26|2023-10-06T21:58:19.0740000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +38|2023-10-06T21:58:19.0740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|14||100.18|101.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.0740000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:58:19.0740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||99.81|102.22|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.0740000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:58:19.0740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|16||100.18|100.57|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.0740000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:58:19.0740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|22||99.65|101.13|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.0740000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +03|2023-10-06T21:58:18.6290000-07:00|4002179A|Automaton Queen|00|5A|10FF0008|00||8230|10490|59967|59967|10000|10000|||101.57|104.02|0.00|3.13| +261|2023-10-06T21:58:18.6290000-07:00|Add|4002179A||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:58:19.1190000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|8650|10000|||99.93|101.34|0.00|-3.01| +39|2023-10-06T21:58:19.1190000-07:00|10FF0003|Gegehi Gehi|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02| +38|2023-10-06T21:58:19.1190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|22||99.65|101.13|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.1190000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|40478540| +261|2023-10-06T21:58:18.6290000-07:00|Change|4002179A||| +39|2023-10-06T21:58:19.1640000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.81|102.22|0.00|3.13| +38|2023-10-06T21:58:19.1640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|14||100.18|101.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.1640000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|40478540| +37|2023-10-06T21:58:19.2090000-07:00|10FF0001|Sesuga Sapisuga|00010806|90349|90349|10000|10000|22||99.65|101.13|0.00|3.12|1302|0|0|01|0800013B|0|41A80000|| +26|2023-10-06T21:58:19.2090000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|54201| +37|2023-10-06T21:58:19.2090000-07:00|40021585|Zeromus|00010802|25998217||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:19.2090000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|26010580|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010811|0|1| +38|2023-10-06T21:58:19.2090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.2090000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF000A|Dukaro Nezikaro|00|58451|40478540| +21|2023-10-06T21:58:19.2530000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|37C10000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|26010580|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|00010812|0|1| +21|2023-10-06T21:58:19.2530000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26010580|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|00010813|0|1| +38|2023-10-06T21:58:19.2530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||99.81|102.22|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.2530000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|40478540| +38|2023-10-06T21:58:19.2530000-07:00|40021585|Zeromus|005A5A00|25998217|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:19.2530000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +39|2023-10-06T21:58:19.2970000-07:00|10FF0006|Wowobora Gogobora|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13| +38|2023-10-06T21:58:19.2980000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9229|10000|31||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.2980000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF000B|Pusu Rosu|00|55446|40478540| +37|2023-10-06T21:58:19.3420000-07:00|10FF0007|Kehabiqo Febiqo|00010806|90890|90890|10000|10000|14||100.18|101.06|0.00|-3.13|1503|0|0|01|0900013B|0|41A80000|| +26|2023-10-06T21:58:19.3420000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|54201| +37|2023-10-06T21:58:19.3420000-07:00|40021585|Zeromus|0001080D|25968753||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:19.3420000-07:00|40021585|Zeromus|0001080F|25967048||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:19.3420000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|5200|10000|30||102.43|99.72|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.3420000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0003|Gegehi Gehi|00|51669|40478540| +38|2023-10-06T21:58:19.3850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|16||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.3850000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0006|Wowobora Gogobora|00|57266|40478540| +22|2023-10-06T21:58:19.4320000-07:00|4002156E|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|2D740000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010814|0|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156E|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|10710000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010814|1|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156E|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010814|2|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156E|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|14690000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010814|3|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156E|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010814|4|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156E|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010814|5|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156E|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010814|6|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156E|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010814|7|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156F|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010815|0|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156F|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010815|1|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156F|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010815|2|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156F|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010815|3|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156F|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5640000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010815|4|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156F|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3B10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010815|5|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156F|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010815|6|8| +22|2023-10-06T21:58:19.4320000-07:00|4002156F|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5B70000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010815|7|8| +22|2023-10-06T21:58:19.4320000-07:00|40021570|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5B30000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010816|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021570|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|59E0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010816|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021570|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010816|2|8| +22|2023-10-06T21:58:19.4320000-07:00|40021570|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3B30000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010816|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021570|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010816|4|8| +22|2023-10-06T21:58:19.4320000-07:00|40021570|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010816|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021570|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010816|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021570|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010816|7|8| +22|2023-10-06T21:58:19.4320000-07:00|40021571|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5CF0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00010817|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021571|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5590000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00010817|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021571|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|1030000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00010817|2|8| +22|2023-10-06T21:58:19.4320000-07:00|40021571|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3980000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00010817|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021571|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|30B0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00010817|4|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|4002156E||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021571|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00010817|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021571|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00010817|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021571|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||113.80|89.20|0.00|0.00|00010817|7|8| +22|2023-10-06T21:58:19.4320000-07:00|40021572|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5950000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00010818|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021572|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5430000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00010818|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021572|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|5570000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00010818|2|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|4002156F||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021572|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|37D0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00010818|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021572|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5AD0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00010818|4|8| +22|2023-10-06T21:58:19.4320000-07:00|40021572|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00010818|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021572|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00010818|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021572|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||110.60|84.00|0.00|0.00|00010818|7|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021570||||||||||||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021571||||||||||||| +261|2023-10-06T21:58:18.9850000-07:00|Change|4002157A||||||||||||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021576||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021573|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5C00000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00010819|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021573|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5970000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00010819|1|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021572||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021573|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|5C90000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00010819|2|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021577||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021573|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3B60000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00010819|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021573|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5C00000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00010819|4|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021579||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021573|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00010819|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021573|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5380000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00010819|6|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|4002157B||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021573|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5340000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||105.00|82.40|0.00|0.00|00010819|7|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021578||||||||||||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021574||||||||||||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021575||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021574|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5CF0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001081A|0|8| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021573||||||||||||| +22|2023-10-06T21:58:19.4320000-07:00|40021574|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|5CF0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001081A|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021574|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|59F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001081A|2|8| +22|2023-10-06T21:58:19.4320000-07:00|40021574|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3900000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001081A|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021574|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001081A|4|8| +22|2023-10-06T21:58:19.4320000-07:00|40021574|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5930000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001081A|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021574|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|6360000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001081A|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021574|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|6360000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001081A|7|8| +22|2023-10-06T21:58:19.4320000-07:00|40021575|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|59C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001081B|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021575|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|56D0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001081B|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021575|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5950000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001081B|2|8| +22|2023-10-06T21:58:19.4320000-07:00|40021575|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001081B|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021575|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3B60000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001081B|4|8| +22|2023-10-06T21:58:19.4320000-07:00|40021575|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5A40000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001081B|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021575|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|64D0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001081B|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021575|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5DB0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001081B|7|8| +22|2023-10-06T21:58:19.4320000-07:00|40021576|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|5B60000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001081C|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021576|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5B70000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001081C|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021576|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|EC750605|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001081C|2|8| +22|2023-10-06T21:58:19.4320000-07:00|40021576|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5510000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001081C|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021576|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3CB0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001081C|4|8| +22|2023-10-06T21:58:19.4320000-07:00|40021576|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5760000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001081C|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021576|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|6520000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001081C|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021576|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|6380000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001081C|7|8| +22|2023-10-06T21:58:19.4320000-07:00|40021577|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001081D|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021577|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|55A0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001081D|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021577|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5450000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001081D|2|8| +22|2023-10-06T21:58:19.4320000-07:00|40021577|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5580000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001081D|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021577|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3900000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001081D|4|8| +22|2023-10-06T21:58:19.4320000-07:00|40021577|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|63C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001081D|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021577|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|63D0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001081D|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021577|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5DD0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||86.20|89.20|0.00|0.00|0001081D|7|8| +22|2023-10-06T21:58:19.4320000-07:00|40021578|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|5C40000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001081E|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021578|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001081E|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021578|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5710000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001081E|2|8| +22|2023-10-06T21:58:19.4320000-07:00|40021578|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5740000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001081E|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021578|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3B10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001081E|4|8| +22|2023-10-06T21:58:19.4320000-07:00|40021578|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5CD0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001081E|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021578|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|6070000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001081E|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021578|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5530000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||82.00|83.00|0.00|0.00|0001081E|7|8| +22|2023-10-06T21:58:19.4320000-07:00|40021579|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5560000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001081F|0|8| +22|2023-10-06T21:58:19.4320000-07:00|40021579|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3BD0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001081F|1|8| +22|2023-10-06T21:58:19.4320000-07:00|40021579|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5990000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001081F|2|8| +22|2023-10-06T21:58:19.4320000-07:00|40021579|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|5B30000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001081F|3|8| +22|2023-10-06T21:58:19.4320000-07:00|40021579|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5BB0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001081F|4|8| +22|2023-10-06T21:58:19.4320000-07:00|40021579|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5B90000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001081F|5|8| +22|2023-10-06T21:58:19.4320000-07:00|40021579|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001081F|6|8| +22|2023-10-06T21:58:19.4320000-07:00|40021579|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5CD0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||118.00|102.00|0.00|0.00|0001081F|7|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157A|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|6570000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010820|0|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157A|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010820|1|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157A|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|5B10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010820|2|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157A|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5C50000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010820|3|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157A|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|58A0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010820|4|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157A|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|3B80000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010820|5|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157A|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5590000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010820|6|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157A|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|5A60000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010820|7|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157B|Comet|8B5C|Meteor Impact|10FF0008|Kokosaze Lulusaze|750603|6270000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010821|0|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157B|Comet|8B5C|Meteor Impact|10FF000A|Dukaro Nezikaro|750603|5D10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010821|1|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157B|Comet|8B5C|Meteor Impact|10FF0004|Buhojaqe Zijaqe|750603|5A10000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|8650|10000|||99.93|101.21|0.00|-3.10|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010821|2|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157B|Comet|8B5C|Meteor Impact|10FF0001|Sesuga Sapisuga|750603|0|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||99.65|101.13|0.00|3.12|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010821|3|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157B|Comet|8B5C|Meteor Impact|10FF0007|Kehabiqo Febiqo|750603|37C0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010821|4|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157B|Comet|8B5C|Meteor Impact|10FF0006|Wowobora Gogobora|750603|5B90000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010821|5|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157B|Comet|8B5C|Meteor Impact|10FF000B|Pusu Rosu|750603|5910000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|9229|10000|||100.08|100.57|0.00|-3.14|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010821|6|8| +22|2023-10-06T21:58:19.4320000-07:00|4002157B|Comet|8B5C|Meteor Impact|10FF0003|Gegehi Gehi|750603|57F0000|1B|8B5C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010821|7|8| +20|2023-10-06T21:58:19.4320000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.08|100.57|0.00|-3.14| +38|2023-10-06T21:58:19.4320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8650|10000|17||99.93|101.21|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.4320000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|40478540| +261|2023-10-06T21:58:18.9850000-07:00|Change|4002157A||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021576||| +261|2023-10-06T21:58:18.9850000-07:00|Change|4002156E||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021571||| +261|2023-10-06T21:58:18.9850000-07:00|Change|4002156F||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021572||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021577||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021570||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021579||| +261|2023-10-06T21:58:18.9850000-07:00|Change|4002157B||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021578||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021574||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021575||| +261|2023-10-06T21:58:18.9850000-07:00|Change|40021573||| +37|2023-10-06T21:58:19.4750000-07:00|10FF0004|Buhojaqe Zijaqe|00010806|57078|57078|8650|10000|17||99.93|101.21|0.00|-3.10|1C04|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T21:58:19.4750000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +21|2023-10-06T21:58:19.4750000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|654003|44760000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|25967048|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.47|102.19|0.00|3.12|00010822|0|1| +38|2023-10-06T21:58:19.4750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.4750000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|58451|58451| +26|2023-10-06T21:58:19.4750000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +37|2023-10-06T21:58:19.5630000-07:00|40021585|Zeromus|0001080E|25954543||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:19.6070000-07:00|10FF000A|Dukaro Nezikaro|00010806|58451|58451|10000|10000|13||99.47|102.19|0.00|3.12|1E05|0|0|02|030001FB|0|C1A00000|||||| +26|2023-10-06T21:58:19.6070000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|58451|54201| +37|2023-10-06T21:58:19.7410000-07:00|10FF0008|Kokosaze Lulusaze|00010806|63151|63151|10000|10000|12||99.81|102.22|0.00|3.13|1F06|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T21:58:19.7410000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|54201| +39|2023-10-06T21:58:19.7410000-07:00|40021798|Carbuncle|54388|54388|10000|10000|||100.19|100.00|0.00|0.01| +37|2023-10-06T21:58:19.7850000-07:00|40021585|Zeromus|00010813|25954488||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:19.7850000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||99.62|101.13|0.00|3.09| +21|2023-10-06T21:58:19.7850000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|38520000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|25954543|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5200|10000|||102.43|99.72|0.00|-3.02|00010823|0|1| +34|2023-10-06T21:58:19.7850000-07:00|4002179A|Automaton Queen|4002179A|Automaton Queen|01| +38|2023-10-06T21:58:19.7850000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|4900|10000|30||102.43|99.72|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.7850000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:58:19.2940000-07:00|Change|10FF0003||| +261|2023-10-06T21:58:19.2940000-07:00|Change|4002179A||||| +37|2023-10-06T21:58:19.8740000-07:00|10FF0003|Gegehi Gehi|00010806|51669|51669|4900|10000|30||102.43|99.72|0.00|-3.02|2307|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T21:58:19.8740000-07:00|13B|Whispering Dawn|21.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51669|54201| +38|2023-10-06T21:58:19.8740000-07:00|4002164C|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.75|100.24|0.00|3.13|0|0|0||||||| +30|2023-10-06T21:58:19.8740000-07:00|77B|Summon Order|0.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:58:19.9190000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|3F780000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|25954488|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||99.33|101.11|0.00|3.09|00010824|0|1| +38|2023-10-06T21:58:19.9190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|22||99.33|101.11|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:19.9190000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +21|2023-10-06T21:58:19.9630000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31EC0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25954488|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8650|10000|||99.93|101.15|0.00|3.14|00010825|0|1| +37|2023-10-06T21:58:20.0080000-07:00|10FF0007|Kehabiqo Febiqo|00010811|90890|90890|10000|10000|0||100.18|101.06|0.00|-3.13|1500|0|0|02|01000000|0|0|||||| +38|2023-10-06T21:58:20.0080000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||100.18|101.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:20.0080000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|90890|90349| +30|2023-10-06T21:58:20.0080000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +261|2023-10-06T21:58:19.4990000-07:00|Change|10FF000B||||||||||||| +261|2023-10-06T21:58:19.6150000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:58:20.0530000-07:00|40021585|Zeromus|00010812|25940215||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:20.0530000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|AE1|63151|63151|10000|10000|||99.81|102.22|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|57078|57078|8250|10000|||99.93|101.15|0.00|3.14| +24|2023-10-06T21:58:20.0530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|AA0|57078|57078|8250|10000|||99.93|101.15|0.00|3.14|E0000000||0||||||||||| +38|2023-10-06T21:58:20.0530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||99.81|102.22|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:20.0530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8250|10000|17||99.93|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:20.1420000-07:00|10FF0003|Gegehi Gehi|00010814|40033|51669|4900|10000|0||102.43|99.72|0.00|-3.02|2300|0|0|01|03000000|0|0|| +37|2023-10-06T21:58:20.1420000-07:00|10FF0001|Sesuga Sapisuga|00010815|90349|90349|10000|10000|6||98.92|100.36|0.00|3.08|1300|0|0|01|03000000|0|0|| +37|2023-10-06T21:58:20.1420000-07:00|10FF0003|Gegehi Gehi|00010816|38574||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.1420000-07:00|10FF0003|Gegehi Gehi|00010817|37087||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.1420000-07:00|10FF0003|Gegehi Gehi|00010818|35658||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.1420000-07:00|10FF0003|Gegehi Gehi|00010819|34186||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.1420000-07:00|10FF0003|Gegehi Gehi|0001081A|32699||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.1420000-07:00|10FF0003|Gegehi Gehi|0001081B|31263||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.1420000-07:00|10FF000B|Pusu Rosu|0001081C|53984|55446|9229|10000|0||100.08|100.57|0.00|-3.14|1800|0|0|01|0C000000|0|0|| +37|2023-10-06T21:58:20.1420000-07:00|10FF000B|Pusu Rosu|0001081E|52508||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.1420000-07:00|10FF0003|Gegehi Gehi|0001081F|29897||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.1420000-07:00|10FF000A|Dukaro Nezikaro|00010820|56828|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E00|0|0|02|030001FB|0|C1A00000|||||| +37|2023-10-06T21:58:20.1420000-07:00|10FF0008|Kokosaze Lulusaze|00010821|61576|63151|10000|10000|0||99.81|102.22|0.00|3.13|1F00|0|0|01|0A000000|0|0|| +24|2023-10-06T21:58:20.1420000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A28|57266|57266|10000|10000|||100.18|100.57|0.00|-3.13|E0000000||0||||||||||| +21|2023-10-06T21:58:20.1420000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25940215|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||100.18|101.06|0.00|-3.13|00010826|0|1| +38|2023-10-06T21:58:20.1430000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61576|63151|10000|10000|0||99.81|102.22|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:58:20.1430000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:58:20.1430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|16||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:20.1430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|6||98.92|100.36|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:20.1430000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:58:20.1430000-07:00|10FF0003|Gegehi Gehi|005A5A23|29897|51669|4900|10000|0||102.43|99.72|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:20.1430000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T21:58:20.1430000-07:00|10FF000B|Pusu Rosu|005A5A18|52508|55446|9229|10000|0||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:20.1430000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:58:20.1430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56828|58451|10000|10000|0||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:20.1430000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +37|2023-10-06T21:58:20.1870000-07:00|10FF0006|Wowobora Gogobora|00010814|53057|57266|10000|10000|0||100.18|100.57|0.00|-3.13|1B01|0|0|01|08000000|0|0|| +37|2023-10-06T21:58:20.1870000-07:00|10FF000A|Dukaro Nezikaro|00010815|56828|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E01|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.1870000-07:00|10FF0006|Wowobora Gogobora|00010816|51619||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.1870000-07:00|10FF0006|Wowobora Gogobora|00010817|50250||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.1870000-07:00|10FF0006|Wowobora Gogobora|00010818|48903||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.1870000-07:00|10FF0006|Wowobora Gogobora|00010819|47472||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.1870000-07:00|10FF000B|Pusu Rosu|0001081A|51021||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.1870000-07:00|10FF000B|Pusu Rosu|0001081B|49632||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.1870000-07:00|10FF0006|Wowobora Gogobora|0001081C|46009||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.1870000-07:00|10FF000B|Pusu Rosu|0001081D|48262||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.1870000-07:00|10FF0007|Kehabiqo Febiqo|0001081F|89933||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.1870000-07:00|10FF000A|Dukaro Nezikaro|00010821|55339|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E01|0|0|01|030001FB|0|C1A00000|| +38|2023-10-06T21:58:20.1870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|46009|57266|10000|10000|0||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:20.1870000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +37|2023-10-06T21:58:20.2320000-07:00|10FF0004|Buhojaqe Zijaqe|00010815|57078|57078|8250|10000|0||99.93|101.15|0.00|3.14|1C02|0|0|01|06000000|0|0|| +37|2023-10-06T21:58:20.2320000-07:00|10FF000B|Pusu Rosu|00010817|48003||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.2320000-07:00|10FF000B|Pusu Rosu|00010818|46636||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.2320000-07:00|10FF000B|Pusu Rosu|00010819|45155||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.2320000-07:00|10FF0006|Wowobora Gogobora|0001081A|44570||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.2320000-07:00|10FF0006|Wowobora Gogobora|0001081B|43141||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.2320000-07:00|10FF0006|Wowobora Gogobora|0001081D|41792||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.2320000-07:00|10FF0006|Wowobora Gogobora|0001081E|40399||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.2320000-07:00|10FF0006|Wowobora Gogobora|0001081F|38966||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.2320000-07:00|10FF0008|Kokosaze Lulusaze|00010820|60119||||||99.81|102.22|0.00|3.13| +37|2023-10-06T21:58:20.2320000-07:00|10FF0004|Buhojaqe Zijaqe|00010821|55637||||||99.93|101.15|0.00|3.14| +38|2023-10-06T21:58:20.2320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55637|57078|8250|10000|0||99.93|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:20.2320000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +37|2023-10-06T21:58:20.2770000-07:00|10FF0007|Kehabiqo Febiqo|00010814|84708||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.2770000-07:00|10FF0007|Kehabiqo Febiqo|00010816|83761||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.2770000-07:00|10FF0007|Kehabiqo Febiqo|00010817|82841||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.2770000-07:00|10FF0007|Kehabiqo Febiqo|00010818|81948||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.2770000-07:00|10FF0007|Kehabiqo Febiqo|00010819|80998||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.2770000-07:00|10FF0007|Kehabiqo Febiqo|0001081A|80086||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.2770000-07:00|10FF0004|Buhojaqe Zijaqe|0001081C|54276||||||99.93|101.15|0.00|3.14| +37|2023-10-06T21:58:20.2770000-07:00|10FF0004|Buhojaqe Zijaqe|0001081D|52908||||||99.93|101.15|0.00|3.14| +37|2023-10-06T21:58:20.2770000-07:00|10FF0004|Buhojaqe Zijaqe|0001081E|51512||||||99.93|101.15|0.00|3.14| +37|2023-10-06T21:58:20.2770000-07:00|10FF000B|Pusu Rosu|0001081F|43696||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.2770000-07:00|10FF0004|Buhojaqe Zijaqe|00010820|50035||||||99.93|101.15|0.00|3.14| +261|2023-10-06T21:58:19.8560000-07:00|Change|40021583||||||||| +261|2023-10-06T21:58:19.8560000-07:00|Change|4002157E||||||||| +37|2023-10-06T21:58:20.3200000-07:00|10FF0006|Wowobora Gogobora|00010815|37586||||||100.18|100.57|0.00|-3.13| +261|2023-10-06T21:58:19.8560000-07:00|Change|40021580||||||||| +257|2023-10-06T21:58:20.2770000-07:00|80034E7C|00020001|00|00|0000| +37|2023-10-06T21:58:20.3200000-07:00|10FF0004|Buhojaqe Zijaqe|00010817|49256||||||99.93|101.15|0.00|3.14| +37|2023-10-06T21:58:20.3200000-07:00|10FF0004|Buhojaqe Zijaqe|00010818|47803||||||99.93|101.15|0.00|3.14| +261|2023-10-06T21:58:19.8560000-07:00|Change|4002157C||||||||| +261|2023-10-06T21:58:19.8560000-07:00|Change|40021581||||||||| +261|2023-10-06T21:58:19.8560000-07:00|Change|40021582||||||||| +261|2023-10-06T21:58:19.8560000-07:00|Change|4002157D||||||||| +261|2023-10-06T21:58:19.8560000-07:00|Change|4002157F||||||||| +00|2023-10-06T21:58:19.0000000-07:00|0044|Zeromus|In my memory the stars yet shine, attending the moon...| +37|2023-10-06T21:58:20.3210000-07:00|10FF0004|Buhojaqe Zijaqe|00010819|46331||||||99.93|101.15|0.00|3.14| +37|2023-10-06T21:58:20.3210000-07:00|10FF0007|Kehabiqo Febiqo|0001081B|79136||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.3210000-07:00|10FF0007|Kehabiqo Febiqo|0001081C|78165||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.3210000-07:00|10FF0007|Kehabiqo Febiqo|0001081D|77253||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.3210000-07:00|10FF0007|Kehabiqo Febiqo|0001081E|76308||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.3210000-07:00|10FF0004|Buhojaqe Zijaqe|0001081F|44864||||||99.93|101.15|0.00|3.14| +37|2023-10-06T21:58:20.3210000-07:00|10FF000B|Pusu Rosu|00010820|42278||||||100.08|100.57|0.00|-3.14| +37|2023-10-06T21:58:20.3210000-07:00|10FF0007|Kehabiqo Febiqo|00010821|75416||||||100.18|101.06|0.00|-3.13| +35|2023-10-06T21:58:20.3210000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:20.3210000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:20.3210000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:20.3210000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:20.3650000-07:00|10FF0007|Kehabiqo Febiqo|00010815|74471||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.3650000-07:00|10FF0004|Buhojaqe Zijaqe|0001081A|43437||||||99.93|101.15|0.00|3.14| +37|2023-10-06T21:58:20.3650000-07:00|10FF0004|Buhojaqe Zijaqe|0001081B|41993||||||99.93|101.15|0.00|3.14| +37|2023-10-06T21:58:20.3650000-07:00|10FF0003|Gegehi Gehi|0001081C|28499||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.3650000-07:00|10FF000A|Dukaro Nezikaro|0001081D|53743|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E05|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.3650000-07:00|10FF000A|Dukaro Nezikaro|0001081E|52258|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E05|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.3650000-07:00|10FF0008|Kokosaze Lulusaze|0001081F|58654||||||99.81|102.22|0.00|3.13| +37|2023-10-06T21:58:20.3650000-07:00|10FF0007|Kehabiqo Febiqo|00010820|73519||||||100.18|101.06|0.00|-3.13| +37|2023-10-06T21:58:20.3650000-07:00|10FF0006|Wowobora Gogobora|00010821|36121||||||100.18|100.57|0.00|-3.13| +20|2023-10-06T21:58:20.3650000-07:00|40021585|Zeromus|8B56|Meteor Impact|40021585|Zeromus|10.700|100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:20.3650000-07:00|10FF000A|Dukaro Nezikaro|52842|58451|10000|10000|||99.47|102.19|0.00|3.12| +24|2023-10-06T21:58:20.3650000-07:00|10FF0003|Gegehi Gehi|HoT|0|A2E|31105|51669|4900|10000|||102.43|99.72|0.00|-3.02|4002164C|Ruby Carbuncle|0|54201|54201|10000|10000|||99.75|100.24|0.00|3.13| +21|2023-10-06T21:58:20.3650000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|49CA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25940215|40478540|10000|10000|||100.00|80.10|0.00|0.00|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14|00010827|0|1| +38|2023-10-06T21:58:20.3650000-07:00|10FF0003|Gegehi Gehi|005A5A23|31105|51669|4900|10000|0||102.43|99.72|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:19.8560000-07:00|Change|40021585||||||||| +37|2023-10-06T21:58:20.4100000-07:00|10FF0008|Kokosaze Lulusaze|00010819|57318||||||99.81|102.22|0.00|3.13| +37|2023-10-06T21:58:20.4100000-07:00|10FF000A|Dukaro Nezikaro|0001081A|51252|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E06|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4100000-07:00|10FF000A|Dukaro Nezikaro|0001081B|49639|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E06|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4100000-07:00|10FF000A|Dukaro Nezikaro|0001081C|48021|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E06|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4100000-07:00|10FF0008|Kokosaze Lulusaze|0001081D|55721||||||99.81|102.22|0.00|3.13| +37|2023-10-06T21:58:20.4100000-07:00|10FF0008|Kokosaze Lulusaze|0001081E|54178||||||99.81|102.22|0.00|3.13| +37|2023-10-06T21:58:20.4100000-07:00|10FF0006|Wowobora Gogobora|00010820|34752||||||100.18|100.57|0.00|-3.13| +37|2023-10-06T21:58:20.4100000-07:00|10FF000B|Pusu Rosu|00010821|40853||||||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4100000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A69|52842|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +35|2023-10-06T21:58:20.4100000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:20.4100000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:20.4100000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:20.4100000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +38|2023-10-06T21:58:20.4100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50686|58451|10000|10000|0||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|00010814|50686|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E07|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4550000-07:00|10FF0003|Gegehi Gehi|00010815|29642||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|00010816|50686|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E07|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|00010817|50686|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E07|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|00010818|50686|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E07|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|00010819|49354|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E07|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4550000-07:00|10FF0008|Kokosaze Lulusaze|0001081A|52588||||||99.81|102.22|0.00|3.13| +37|2023-10-06T21:58:20.4550000-07:00|10FF0008|Kokosaze Lulusaze|0001081B|51089||||||99.81|102.22|0.00|3.13| +37|2023-10-06T21:58:20.4550000-07:00|10FF0008|Kokosaze Lulusaze|0001081C|49497||||||99.81|102.22|0.00|3.13| +37|2023-10-06T21:58:20.4550000-07:00|10FF0003|Gegehi Gehi|0001081D|28141||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.4550000-07:00|10FF0003|Gegehi Gehi|0001081E|26778||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|0001081F|47869|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E07|0|0|01|030001FB|0|C1A00000|| +37|2023-10-06T21:58:20.4550000-07:00|10FF0003|Gegehi Gehi|00010820|25332||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.4550000-07:00|10FF0003|Gegehi Gehi|00010821|23925||||||102.43|99.72|0.00|-3.02| +37|2023-10-06T21:58:20.4550000-07:00|40021585|Zeromus|00010822|25922689||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|00010822|47869|58451|10000|10000|0||99.47|102.19|0.00|3.12|1E00|0|0|01|030001FB|0|41A00000|| +39|2023-10-06T21:58:20.4550000-07:00|10FF0007|Kehabiqo Febiqo|74427|90890|10000|10000|||100.18|101.06|0.00|-3.13| +24|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|14D0|52842|58451|10000|10000|||99.47|102.19|0.00|3.12|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E05|58654|63151|10000|10000|||99.81|102.22|0.00|3.13|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E30|41993|57078|8250|10000|||99.93|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|14F0|73519|90890|10000|10000|||100.18|101.06|0.00|-3.13|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4550000-07:00|10FF000B|Pusu Rosu|HoT|777|153E|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4550000-07:00|10FF0006|Wowobora Gogobora|HoT|777|15A4|36121|57266|10000|10000|||100.18|100.57|0.00|-3.13|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4550000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DB0|90349|90349|10000|10000|||98.47|100.17|0.00|3.07|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4550000-07:00|10FF0003|Gegehi Gehi|HoT|777|15B0|31105|51669|4900|10000|||102.43|99.72|0.00|-3.02|10FF000B|Pusu Rosu|0|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14| +24|2023-10-06T21:58:20.4550000-07:00|10FF000B|Pusu Rosu|HoT|0|11EE|42278|55446|8829|10000|||100.08|100.57|0.00|-3.14|E0000000||0||||||||||| +38|2023-10-06T21:58:20.4550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|79787|90890|10000|10000|0||100.18|101.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:20.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:58:20.4550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53086|63151|10000|10000|0||99.81|102.22|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:20.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:58:20.4550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|40292|57266|10000|10000|0||100.18|100.57|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:20.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T21:58:20.4550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|6||97.89|100.13|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:20.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +38|2023-10-06T21:58:20.4550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45625|57078|8250|10000|0||99.93|101.15|-0.02|3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:20.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:58:20.4550000-07:00|10FF0003|Gegehi Gehi|005A5A23|29477|51669|4900|10000|0||102.43|99.72|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:20.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:58:20.4550000-07:00|10FF000B|Pusu Rosu|005A5A18|50881|55446|8829|10000|0||100.08|100.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:20.4550000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:58:20.4550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53197|58451|10000|10000|0||99.47|102.19|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:20.4550000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +35|2023-10-06T21:58:20.4980000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:20.4980000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:20.4980000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:20.4980000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:20.5430000-07:00|40021585|Zeromus|00010823|25908271||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:20.5430000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|AD4|79787|90890|10000|10000|||100.18|101.06|0.00|-3.13|4002164C|Ruby Carbuncle|0|54201|54201|10000|10000|||99.75|100.24|0.00|3.13| +38|2023-10-06T21:58:20.5440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82559|90890|10000|10000|0||100.18|101.06|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:20.5870000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:20.5870000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:20.5870000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:20.5870000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:20.5870000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25908271|40478540|10000|10000|||100.00|80.10|0.00|0.00|53086|63151|10000|10000|||99.81|102.22|0.00|3.13|00010828|0|1| +21|2023-10-06T21:58:20.5870000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25908271|40478540|10000|10000|||100.00|80.10|0.00|0.00|53197|58451|10000|10000|||99.47|102.19|0.00|3.12|00010829|0|1| +24|2023-10-06T21:58:20.6320000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A42|90349|90349|10000|10000|||97.14|100.08|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|45625|57078|8250|10000|||99.94|101.15|0.00|2.60| +38|2023-10-06T21:58:20.6320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|6||97.14|100.08|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:20.6760000-07:00|40021585|Zeromus|00010826|25905459||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:20.6760000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:20.6760000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:20.6760000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:20.6760000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:20.7660000-07:00|40021585|Zeromus|00010825|25892679||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:20.7660000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:20.7660000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:20.7660000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:20.7660000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:58:20.8530000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:20.8530000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:20.8530000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:20.8530000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:20.8530000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25892679|40478540|10000|10000|||100.00|80.10|0.00|0.00|45625|57078|8250|10000|||100.24|101.17|0.00|1.89|0001082A|0|1| +21|2023-10-06T21:58:20.8530000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|29477|51669|4900|10000|||102.43|99.72|0.00|-3.02|29477|51669|4900|10000|||102.43|99.72|0.00|-3.02|0001082B|0|1| +21|2023-10-06T21:58:20.8980000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|1FFF0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|25892679|40478540|10000|10000|||100.00|80.10|0.00|0.00|82559|90890|10000|10000|||100.18|101.06|0.00|-3.13|0001082C|0|1| +35|2023-10-06T21:58:20.9420000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:20.9420000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:20.9420000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:20.9420000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +261|2023-10-06T21:58:20.4860000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:58:20.5850000-07:00|Change|10FF000B||||||||||||||| +35|2023-10-06T21:58:21.0310000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.0310000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.0310000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.0310000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:21.0310000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1F880000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|25892679|40478540|10000|10000|||100.00|80.10|0.00|0.00|53197|58451|10000|10000|||99.47|102.19|0.00|3.12|0001082D|0|1| +20|2023-10-06T21:58:21.0770000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|1.491|100.18|100.71|0.00|-0.96| +21|2023-10-06T21:58:21.0770000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25892679|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||94.59|99.90|0.00|3.07|0001082E|0|1| +31|2023-10-06T21:58:21.0770000-07:00|10FF0001||||| +261|2023-10-06T21:58:20.5850000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:58:21.1220000-07:00|40021585|Zeromus|00010829|25890373||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:21.1220000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.1220000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.1220000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.1220000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:21.2110000-07:00|40021585|Zeromus|00010824|25874125||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:21.2110000-07:00|10FF000B|Pusu Rosu|51435|55446|9110|10000|||100.08|100.57|0.00|-3.14| +35|2023-10-06T21:58:21.2110000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.2110000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.2110000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.2110000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:21.2550000-07:00|4002164C|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|24B70000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|82559|90890|10000|10000|||100.15|101.02|0.00|-2.82|54201|54201|10000|10000|||99.75|100.24|0.00|2.17|0001082F|0|1| +35|2023-10-06T21:58:21.3000000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.3000000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.3000000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.3000000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:21.3450000-07:00|40021585|Zeromus|00010828|25870461||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:21.3890000-07:00|40021585|Zeromus|0001082A|25870303||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:21.3890000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.3890000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.3890000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.3890000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:21.4330000-07:00|40021585|Zeromus|0001082D|25862231||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:21.4790000-07:00|10FF0003|Gegehi Gehi|0001082B|29477|51669|4900|10000|0||102.43|99.72|0.00|-3.02|2300|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:58:21.4790000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +35|2023-10-06T21:58:21.4790000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.4790000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.4790000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.4790000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:21.4790000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|25862231|40478540|10000|10000|||100.00|80.10|0.00|0.00|45625|57078|8250|10000|||104.54|101.51|0.00|1.49|00010830|0|1| +37|2023-10-06T21:58:21.5230000-07:00|40021585|Zeromus|0001082C|25854040||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:21.5670000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.5670000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.5670000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.5670000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +261|2023-10-06T21:58:21.1540000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:58:21.1540000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:58:21.6120000-07:00|40021585|Zeromus|0001082E|25852267||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:21.6120000-07:00|40021585|Zeromus|005A5A00|25852267|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:21.6120000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|57078| +26|2023-10-06T21:58:21.6120000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T21:58:21.6560000-07:00|40021585|Zeromus|00010827|25833377||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:21.6560000-07:00|40021585|Zeromus|DoT|0|A3A|25854040|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|51435|55446|9110|10000|||100.69|100.14|0.00|1.78| +35|2023-10-06T21:58:21.6560000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.6560000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.6560000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.6560000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +36|2023-10-06T21:58:21.6560000-07:00|3A98|3| +38|2023-10-06T21:58:21.6560000-07:00|40021585|Zeromus|005A5A00|25830759|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +39|2023-10-06T21:58:21.7000000-07:00|4002164C|Ruby Carbuncle|54201|54201|10000|10000|||99.75|100.24|0.00|0.44| +35|2023-10-06T21:58:21.7450000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.7450000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.7450000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.7450000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:21.7450000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|32EA0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|25830759|40478540|10000|10000|||100.00|80.10|0.00|0.00|53086|63151|10000|10000|||95.94|102.51|0.00|-1.55|00010831|0|1| +261|2023-10-06T21:58:21.4370000-07:00|Change|10FF0001||||||||| +35|2023-10-06T21:58:21.8330000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.8330000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.8330000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.8330000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +261|2023-10-06T21:58:21.4370000-07:00|Change|4002164C||||||||| +35|2023-10-06T21:58:21.9220000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:21.9220000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:21.9220000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:21.9220000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +35|2023-10-06T21:58:22.0110000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.0110000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.0110000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.0110000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +261|2023-10-06T21:58:21.6370000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T21:58:22.0560000-07:00|10FF0007|Kehabiqo Febiqo|0001082F|90890||||||96.49|99.01|0.00|-2.48| +21|2023-10-06T21:58:22.0560000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|756003|6B5C0000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|25830759|40478540|10000|10000|||100.00|80.10|0.00|0.00|40292|57266|10000|10000|||100.18|100.79|0.00|-3.13|00010832|0|1| +38|2023-10-06T21:58:22.0560000-07:00|4002164C|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.75|100.24|0.00|-0.76|0|0|0|||||||||| +26|2023-10-06T21:58:22.0560000-07:00|7AE|Summon Order IV|30.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:58:22.0560000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45625|57078|7850|10000|||105.67|101.44|0.00|2.32|45625|57078|7850|10000|||105.67|101.44|0.00|2.32|00010833|0|1| +39|2023-10-06T21:58:22.1010000-07:00|10FF0004|Buhojaqe Zijaqe|46195|57078|8050|10000|||105.67|101.44|0.00|2.32| +35|2023-10-06T21:58:22.1010000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.1010000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.1010000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.1010000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +22|2023-10-06T21:58:22.1010000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|3A240000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|00010834|0|8| +22|2023-10-06T21:58:22.1010000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|3B7E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|29477|51669|4900|10000|||103.08|99.24|0.00|2.32|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|00010834|1|8| +22|2023-10-06T21:58:22.1010000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|3CD60000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|45625|57078|7850|10000|||105.67|101.44|0.00|2.32|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|00010834|2|8| +22|2023-10-06T21:58:22.1010000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|3A5A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|40292|57266|10000|10000|||100.18|100.79|0.00|-3.13|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|00010834|3|8| +22|2023-10-06T21:58:22.1010000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|3B0E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|53197|58451|10000|10000|||98.07|101.16|0.00|-2.49|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|00010834|4|8| +22|2023-10-06T21:58:22.1010000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|3CD20000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|82559|90890|10000|10000|||96.49|99.01|0.00|-2.48|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|00010834|5|8| +22|2023-10-06T21:58:22.1010000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|200004|5E310000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|53086|63151|10000|10000|||95.42|102.53|0.00|2.96|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|00010834|6|8| +22|2023-10-06T21:58:22.1010000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|3C400000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||88.80|97.97|0.00|3.07|51435|55446|9110|10000|||103.15|98.29|0.00|2.11|00010834|7|8| +37|2023-10-06T21:58:22.1460000-07:00|40021585|Zeromus|00010830|25830759|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:58:22.1460000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|57078| +39|2023-10-06T21:58:22.1460000-07:00|10FF0008|Kokosaze Lulusaze|53717|63151|10000|10000|||95.42|102.53|0.00|2.96| +39|2023-10-06T21:58:22.1460000-07:00|10FF0003|Gegehi Gehi|29993|51669|5100|10000|||103.08|99.24|0.00|2.32| +261|2023-10-06T21:58:21.6370000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:58:21.7500000-07:00|Change|10FF0006||||||||||||||||||| +35|2023-10-06T21:58:22.1900000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.1900000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.1900000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.1900000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:22.2340000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25830759|40478540|10000|10000|||100.00|80.10|0.00|0.00|40292|57266|9700|10000|||100.18|100.79|0.00|-3.13|00010835|0|1| +39|2023-10-06T21:58:22.2790000-07:00|10FF0006|Wowobora Gogobora|40864|57266|9900|10000|||100.18|100.79|0.00|-3.13| +35|2023-10-06T21:58:22.2790000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.2790000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.2790000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.2790000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +22|2023-10-06T21:58:22.3230000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|200004|40CF0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|40292|57266|9700|10000|||100.18|100.79|0.00|-3.13|54201|54201|10000|10000|||99.75|100.24|0.00|-1.30|00010836|0|8| +22|2023-10-06T21:58:22.3230000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|4|290E0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|53197|58451|10000|10000|||96.77|100.26|0.00|-2.23|54201|54201|10000|10000|||99.75|100.24|0.00|-1.30|00010836|1|8| +22|2023-10-06T21:58:22.3230000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|200004|40A00000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||95.16|98.83|0.00|-2.51|54201|54201|10000|10000|||99.75|100.24|0.00|-1.30|00010836|2|8| +22|2023-10-06T21:58:22.3230000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|29930000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|53717|63151|10000|10000|||95.25|102.29|0.00|2.99|54201|54201|10000|10000|||99.75|100.24|0.00|-1.30|00010836|3|8| +22|2023-10-06T21:58:22.3230000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF000B|Pusu Rosu|4|27970000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|51435|55446|9110|10000|||104.57|97.53|0.00|2.08|54201|54201|10000|10000|||99.75|100.24|0.00|-1.30|00010836|4|8| +22|2023-10-06T21:58:22.3230000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|28EA0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|29993|51669|5100|10000|||104.53|98.56|0.00|2.14|54201|54201|10000|10000|||99.75|100.24|0.00|-1.30|00010836|5|8| +22|2023-10-06T21:58:22.3230000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|27D50000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|46195|57078|8050|10000|||105.88|101.43|0.00|1.64|54201|54201|10000|10000|||99.75|100.24|0.00|-1.30|00010836|6|8| +22|2023-10-06T21:58:22.3230000-07:00|4002164C|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|28640000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||87.95|96.96|0.00|3.00|54201|54201|10000|10000|||99.75|100.24|0.00|-1.30|00010836|7|8| +35|2023-10-06T21:58:22.3680000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.3680000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.3680000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.3680000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:22.3680000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|754003|32780000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|25830759|40478540|10000|10000|||100.00|80.10|0.00|0.00|29993|51669|5100|10000|||104.53|98.56|0.00|2.14|00010837|0|1| +35|2023-10-06T21:58:22.4560000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.4560000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.4560000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.4560000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:22.4560000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1D100000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|25830759|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||87.94|96.38|0.00|2.90|00010838|0|1| +261|2023-10-06T21:58:21.9720000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:58:22.5010000-07:00|40021585|Zeromus|00010831|25817725||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:22.5450000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.5450000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.5450000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.5450000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +261|2023-10-06T21:58:22.1840000-07:00|Change|10FF0004||||||||||| +35|2023-10-06T21:58:22.6340000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.6340000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.6340000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.6340000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:22.6790000-07:00|10FF000B|Pusu Rosu|00010834|55446||||||106.51|96.67|0.00|2.00| +35|2023-10-06T21:58:22.7240000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.7240000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.7240000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.7240000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +21|2023-10-06T21:58:22.7240000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25817725|40478540|10000|10000|||100.00|80.10|0.00|0.00|29993|51669|5100|10000|||106.10|98.40|0.00|-2.82|00010839|0|1| +261|2023-10-06T21:58:22.2820000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:58:22.7680000-07:00|40021585|Zeromus|00010835|25817569||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:22.7680000-07:00|40021798|Carbuncle|54388|54388|10000|10000|||100.19|100.00|0.00|0.01| +21|2023-10-06T21:58:22.7680000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|11380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25817725|40478540|10000|10000|||100.00|80.10|0.00|0.00|53197|58451|10000|10000|||94.22|98.63|0.00|-2.15|0001083A|0|1| +261|2023-10-06T21:58:22.3830000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:58:22.3830000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:58:22.8140000-07:00|10FF0003|Gegehi Gehi|00010834|45223||||||106.08|98.36|0.00|-2.82| +39|2023-10-06T21:58:22.8140000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||87.65|94.63|0.00|2.61| +35|2023-10-06T21:58:22.8140000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.8140000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.8140000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.8140000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:22.8570000-07:00|40021585|Zeromus|00010832|25790085||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:22.9010000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.9010000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.9010000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.9010000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +261|2023-10-06T21:58:22.4830000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:58:22.9460000-07:00|10FF0004|Buhojaqe Zijaqe|00010834|57078||||||105.12|102.90|-0.02|-0.38| +38|2023-10-06T21:58:22.9460000-07:00|40021585|Zeromus|005A5A00|25790085|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:22.9460000-07:00|35C|Dismantled|0.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|63151| +35|2023-10-06T21:58:22.9890000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:22.9890000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:22.9890000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:22.9890000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +37|2023-10-06T21:58:23.0330000-07:00|40021585|Zeromus|00010837|25777165||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:23.0330000-07:00|40021585|Zeromus|005A5A00|25777165|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T21:58:23.0330000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40021585|Zeromus|00|40478540|90890| +37|2023-10-06T21:58:23.0800000-07:00|10FF0006|Wowobora Gogobora|00010834|55802||||||100.75|100.02|0.00|2.63| +24|2023-10-06T21:58:23.0800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|11E8|53717|63151|10000|10000|||93.91|97.63|0.00|-3.05|E0000000||0||||||||||| +24|2023-10-06T21:58:23.0800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|AA1|57078|57078|8050|10000|||104.97|103.06|0.00|-0.85|E0000000||0||||||||||| +35|2023-10-06T21:58:23.0800000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.0800000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:23.0800000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.0800000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +38|2023-10-06T21:58:23.0800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58301|63151|10000|10000|0||93.91|97.63|0.00|-3.05|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:58:23.0800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8050|10000|0||104.97|103.06|0.00|-0.85|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:23.1220000-07:00|10FF0006|Wowobora Gogobora|00010836|57266||||||100.75|100.02|0.00|2.63| +261|2023-10-06T21:58:22.6990000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:58:23.1670000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A2B|40864|57266|9900|10000|||100.75|100.02|0.00|2.63|E0000000||0||||||||||| +35|2023-10-06T21:58:23.1670000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.1670000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:23.1670000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.1670000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FD|||| +38|2023-10-06T21:58:23.1670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9900|10000|0||100.75|100.02|0.00|2.63|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:22.6990000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:23.2120000-07:00|40021585|Zeromus|00010838|25769725||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:23.2120000-07:00|10FF000A|Dukaro Nezikaro|00010834|58451||||||91.38|97.78|-0.02|-1.83| +21|2023-10-06T21:58:23.2120000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|3C6B0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|25777165|40478540|10000|10000|||100.00|80.10|0.00|0.00|53197|58451|10000|10000|||91.38|97.78|-0.02|-1.83|0001083B|0|1| +37|2023-10-06T21:58:23.2560000-07:00|40021585|Zeromus|00010839|25769695||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:23.2560000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.2560000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:23.2560000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.2560000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:23.2560000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|BB10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25777165|40478540|10000|10000|||100.00|80.10|0.00|0.00|58301|63151|10000|10000|||93.83|96.95|0.00|-3.04|0001083C|0|1| +261|2023-10-06T21:58:22.8190000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:58:23.3010000-07:00|40021585|Zeromus|0001083A|25765287||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:23.3460000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||91.15|97.74|0.00|2.67| +35|2023-10-06T21:58:23.3460000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.3460000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:23.3460000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.3460000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:23.3460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AE80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25769695|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||86.86|93.69|0.00|2.11|0001083D|0|1| +31|2023-10-06T21:58:23.3460000-07:00|10FF0001||||| +24|2023-10-06T21:58:23.3910000-07:00|10FF0003|Gegehi Gehi|HoT|0|AB2|45223|51669|5100|10000|||109.21|98.02|0.00|2.06|4002164C|Ruby Carbuncle|0|54201|54201|10000|10000|||99.75|100.24|0.00|-1.87| +21|2023-10-06T21:58:23.3910000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F712003|538C0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|25769695|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||91.04|94.72|0.00|-2.61|0001083E|0|1| +38|2023-10-06T21:58:23.3910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||91.04|94.72|0.00|-2.61|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:23.3910000-07:00|A75|Surging Tempest|37.26|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +38|2023-10-06T21:58:23.3910000-07:00|10FF0003|Gegehi Gehi|005A5A23|47961|51669|5650|10000|0||109.21|98.02|0.00|2.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:58:23.4350000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|AEF|58451|58451|10000|10000|||90.90|97.70|0.00|2.67|10FF000B|Pusu Rosu|0|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92| +35|2023-10-06T21:58:23.4350000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.4350000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:23.4350000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.4350000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:23.4350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||90.90|97.70|0.00|2.67|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:23.4810000-07:00|10FF0008|Kokosaze Lulusaze|00010834|63151||||||93.64|95.36|0.00|-3.04| +39|2023-10-06T21:58:23.4810000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||90.69|94.09|-0.02|2.59| +24|2023-10-06T21:58:23.4810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DF4|57078|57078|8050|10000|||104.40|103.14|-0.02|-1.40|10FF000B|Pusu Rosu|0|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92| +24|2023-10-06T21:58:23.4810000-07:00|10FF0006|Wowobora Gogobora|HoT|777|D74|57266|57266|9900|10000|||102.24|98.37|0.00|2.44|10FF000B|Pusu Rosu|0|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92| +24|2023-10-06T21:58:23.4810000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|D69|58301|63151|10000|10000|||93.64|95.36|0.00|-3.04|10FF000B|Pusu Rosu|0|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92| +24|2023-10-06T21:58:23.4810000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DCB|58451|58451|10000|10000|||90.90|97.70|0.00|2.67|10FF000B|Pusu Rosu|0|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92| +24|2023-10-06T21:58:23.4810000-07:00|10FF000B|Pusu Rosu|HoT|777|E03|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92|10FF000B|Pusu Rosu|0|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92| +24|2023-10-06T21:58:23.4810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|DCC|90890|90890|10000|10000|||90.69|94.09|-0.02|2.59|10FF000B|Pusu Rosu|0|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92| +24|2023-10-06T21:58:23.4810000-07:00|10FF0003|Gegehi Gehi|HoT|777|DA7|47961|51669|5650|10000|||110.01|97.90|0.00|1.94|10FF000B|Pusu Rosu|0|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92| +24|2023-10-06T21:58:23.4810000-07:00|10FF000B|Pusu Rosu|HoT|0|B0A|55446|55446|9110|10000|||106.54|93.23|0.00|-2.92|E0000000||0||||||||||| +38|2023-10-06T21:58:23.4810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||90.69|94.09|-0.02|2.59|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:23.4810000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:58:23.4810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.64|95.36|0.00|-3.04|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:58:23.4810000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:58:23.4810000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9900|10000|0||102.24|98.37|0.00|2.44|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:23.4810000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T21:58:23.4810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|8050|10000|0||104.40|103.14|-0.02|-1.40|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:23.4810000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:58:23.4810000-07:00|10FF0003|Gegehi Gehi|005A5A23|51456|51669|5650|10000|0||110.01|97.90|0.00|1.94|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:23.4810000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:58:23.4810000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9110|10000|0||106.54|93.23|0.00|-2.92|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:23.4810000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:58:23.4810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||90.90|97.70|0.00|2.67|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:23.4810000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +35|2023-10-06T21:58:23.5250000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.5250000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:23.5250000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.5250000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:23.5250000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|16350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25765287|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||90.33|93.52|0.00|2.88|0001083F|0|1| +24|2023-10-06T21:58:23.5700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A15|90890|90890|10000|10000|||90.33|93.52|0.00|2.88|4002164C|Ruby Carbuncle|0|54201|54201|10000|10000|||99.75|100.24|0.00|-1.87| +38|2023-10-06T21:58:23.5700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||90.33|93.52|0.00|2.88|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:23.6140000-07:00|40021585|Zeromus|0001083B|25749820||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:23.6150000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.6150000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:23.6150000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.6150000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:23.6150000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40021585|Zeromus|754003|5B0A0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|25749820|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9900|10000|||103.30|97.57|0.00|2.27|00010840|0|1| +38|2023-10-06T21:58:23.6150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9500|10000|0||103.30|97.57|0.00|2.27|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:23.6150000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +24|2023-10-06T21:58:23.6580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A1F|90349|90349|10000|10000|||86.86|93.10|0.00|1.96|10FF0004|Buhojaqe Zijaqe|0|57078|57078|8050|10000|||103.75|103.06|0.00|-1.69| +38|2023-10-06T21:58:23.6580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|6||86.86|93.10|0.00|1.96|0|0|0|||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:23.7030000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.7030000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:23.7030000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.7030000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:23.2630000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:58:23.3540000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:58:23.7920000-07:00|10FF0003|Gegehi Gehi|00010836|51669||||||111.71|96.82|0.00|2.10| +35|2023-10-06T21:58:23.7920000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.7920000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:23.7920000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.7920000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:23.8810000-07:00|40021585|Zeromus|0001083D|25747028||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:23.8810000-07:00|4002179A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1B4F0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|25749820|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.57|104.02|0.00|3.13|00010841|0|1| +35|2023-10-06T21:58:23.8810000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FD|||| +35|2023-10-06T21:58:23.8810000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:23.8810000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.8810000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:23.8810000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37750003|31A50000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|25749820|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5650|10000|||112.27|96.37|0.00|2.17|00010842|0|1| +35|2023-10-06T21:58:23.9690000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:23.9690000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:23.9690000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:23.9690000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:23.5460000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:58:23.5460000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:58:24.0130000-07:00|40021585|Zeromus|0001083C|25744035||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:24.0130000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25747028|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8050|10000|||103.12|103.07|0.00|-1.90|00010843|0|1| +37|2023-10-06T21:58:24.0580000-07:00|40021585|Zeromus|0001083F|25738350||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:24.0580000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:24.0580000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.0580000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:24.0580000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:24.0580000-07:00|4002164C|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||99.75|100.24|0.00|-2.08|0|0|0||||||| +30|2023-10-06T21:58:24.0580000-07:00|7AE|Summon Order IV|0.00|4002164C|Ruby Carbuncle|4002164C|Ruby Carbuncle|01|54201|54201| +35|2023-10-06T21:58:24.1460000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:24.1460000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.1460000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:24.1460000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:23.7690000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:58:24.2350000-07:00|10FF000B|Pusu Rosu|55446|55446|9391|10000|||102.83|91.03|0.00|-1.83| +35|2023-10-06T21:58:24.2350000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:24.2350000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.2350000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FD|||| +35|2023-10-06T21:58:24.2350000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:24.2350000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2DDE0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|25738350|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||94.29|90.28|0.00|2.60|00010844|0|1| +35|2023-10-06T21:58:24.3240000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:24.3240000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.3240000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:24.3240000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:24.4130000-07:00|40021585|Zeromus|00010840|25715044||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:24.4130000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:24.4130000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.4130000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:24.4130000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:23.9990000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:58:23.9990000-07:00|Change|10FF0007||||||||| +35|2023-10-06T21:58:24.5020000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:24.5020000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.5020000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:24.5020000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:24.5470000-07:00|40021585|Zeromus|00010843|25714885||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:24.5470000-07:00|40021585|Zeromus|00010842|25702176||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:24.5470000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|102.76|90.74|-0.02|-1.79| +261|2023-10-06T21:58:24.2050000-07:00|Change|10FF0008||||||||| +35|2023-10-06T21:58:24.5910000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:24.5910000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.5910000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:24.5910000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:24.6820000-07:00|40021585|Zeromus|00010841|25695185||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:24.6820000-07:00|4002164C|Ruby Carbuncle|54201|54201|10000|10000|||99.75|100.24|0.00|-2.91| +24|2023-10-06T21:58:24.6820000-07:00|40021585|Zeromus|DoT|0|1F59|25702176|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|9391|10000|||102.73|90.64|0.00|-2.11| +35|2023-10-06T21:58:24.6820000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:24.6820000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.6820000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:24.6820000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +36|2023-10-06T21:58:24.6820000-07:00|3B74|3| +38|2023-10-06T21:58:24.6820000-07:00|40021585|Zeromus|005A5A00|25687160|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:24.6820000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:58:24.3010000-07:00|Change|4002164C||||||||| +261|2023-10-06T21:58:24.3010000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:58:24.7250000-07:00|4002179A|Automaton Queen|59967|59967|10000|10000|||101.52|103.47|0.00|-3.08| +261|2023-10-06T21:58:24.3010000-07:00|Change|10FF000B||||||||||||||||||||||| +35|2023-10-06T21:58:24.7700000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:24.7700000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.7700000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:24.7700000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:24.8580000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:24.8580000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.8590000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:24.8590000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:24.4070000-07:00|Change|40021798||||||||| +20|2023-10-06T21:58:24.9030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|97.80|102.19|-0.02|-1.78| +261|2023-10-06T21:58:24.5200000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:58:24.5200000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:58:24.5200000-07:00|Change|10FF000A||||||||| +35|2023-10-06T21:58:24.9490000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:24.9490000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:24.9490000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:24.9490000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:24.9490000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2EBA0000|4|2CC48000|0|0|0|0|0|0|0|0|0|0|0|0|25687160|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||87.83|90.05|0.00|2.26|00010845|0|1| +21|2023-10-06T21:58:24.9490000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|10910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25687160|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||86.63|95.51|0.00|-2.83|00010846|0|1| +38|2023-10-06T21:58:24.9490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9000|10000|6||87.83|90.05|0.00|2.26|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:24.9490000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:58:24.5200000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:25.0370000-07:00|40021585|Zeromus|0001083E|25665772||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:25.0370000-07:00|40021585|Zeromus|00010844|25654030||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:25.0370000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.0370000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.0370000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:25.0370000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +39|2023-10-06T21:58:25.0820000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|8250|10000|||97.58|102.18|0.00|-2.05| +39|2023-10-06T21:58:25.1270000-07:00|10FF0003|Gegehi Gehi|51669|51669|5850|10000|||118.31|90.86|0.00|2.52| +35|2023-10-06T21:58:25.1270000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.1270000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.1270000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:25.1270000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +39|2023-10-06T21:58:25.1710000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||95.25|86.32|0.00|2.95| +21|2023-10-06T21:58:25.1710000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||95.25|86.32|0.00|2.95|63151|63151|10000|10000|||95.25|86.32|0.00|2.95|00010847|0|1| +38|2023-10-06T21:58:25.1710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.25|86.32|0.00|2.95|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:25.1710000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +35|2023-10-06T21:58:25.2160000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.2160000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.2160000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:25.2160000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +39|2023-10-06T21:58:25.3040000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9700|10000|||108.37|91.41|-0.02|2.80| +35|2023-10-06T21:58:25.3040000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.3040000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.3040000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FE|||| +35|2023-10-06T21:58:25.3040000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:25.3490000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A750003|46520000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|25654030|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5850|10000|||118.53|89.90|0.00|2.68|00010848|0|1| +35|2023-10-06T21:58:25.3940000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.3940000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.3940000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FE|||| +35|2023-10-06T21:58:25.3940000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:25.3940000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25654030|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9700|10000|||108.47|90.88|0.00|2.84|00010849|0|1| +37|2023-10-06T21:58:25.4830000-07:00|40021585|Zeromus|00010846|25649789||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:25.4830000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.4830000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.4830000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FE|||| +35|2023-10-06T21:58:25.4830000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:25.4830000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|34680000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25654030|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|9391|10000|||102.68|90.41|0.00|-2.89|0001084A|0|1| +38|2023-10-06T21:58:25.4830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9000|10000|6||88.00|90.09|0.00|0.46|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:25.4830000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +21|2023-10-06T21:58:25.5730000-07:00|4002179A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|732003|2AC90000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|25649789|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.52|103.47|0.00|-3.08|0001084B|0|1| +35|2023-10-06T21:58:25.5730000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.5730000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.5730000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FE|||| +35|2023-10-06T21:58:25.5730000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:25.6170000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6D30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25649789|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9000|10000|||87.88|89.83|0.00|0.46|0001084C|0|1| +31|2023-10-06T21:58:25.6170000-07:00|10FF0001||||| +35|2023-10-06T21:58:25.6620000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.6620000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.6620000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:25.6620000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +37|2023-10-06T21:58:25.7060000-07:00|40021585|Zeromus|00010845|25637827||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:25.7500000-07:00|40021798|Carbuncle|54388|54388|10000|10000|||107.02|94.73|0.00|2.86| +35|2023-10-06T21:58:25.7500000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FE|||| +35|2023-10-06T21:58:25.7500000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.7500000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:25.7500000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +261|2023-10-06T21:58:25.2890000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:58:25.7940000-07:00|10FF0008|Kokosaze Lulusaze|00010847|63151|63151|10000|10000|0||95.23|86.34|0.00|1.98|1F00|0|0|01|08000353|0|40A00000|| +39|2023-10-06T21:58:25.7940000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9200|10000|||87.07|90.14|0.00|0.46| +38|2023-10-06T21:58:25.7940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.23|86.34|0.00|1.98|0|0|0|||||||||||||||||||||||||||| +35|2023-10-06T21:58:25.8410000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:58:25.3820000-07:00|Change|10FF000B||||||||||||||||||||| +35|2023-10-06T21:58:25.8410000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.8410000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:25.8410000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:25.8410000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|17470000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|25637827|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||86.17|87.74|0.00|-3.01|0001084D|0|1| +21|2023-10-06T21:58:25.8410000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|51600000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25637827|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8250|10000|||96.91|102.13|0.00|3.00|0001084E|0|1| +261|2023-10-06T21:58:25.3820000-07:00|Change|40021798||||||||| +261|2023-10-06T21:58:25.4750000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:25.9280000-07:00|40021585|Zeromus|00010849|25637681||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:25.9280000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:25.9280000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:25.9280000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:25.9280000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:25.9280000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|88B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25637827|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.40|-0.02|1.50|0001084F|0|1| +37|2023-10-06T21:58:25.9740000-07:00|40021585|Zeromus|00010848|25619679||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:25.4750000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:58:25.5740000-07:00|Change|10FF0001||||||||| +35|2023-10-06T21:58:26.0180000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.0180000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FC|||| +35|2023-10-06T21:58:26.0180000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.0180000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +24|2023-10-06T21:58:26.0620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|11F3|63151|63151|10000|10000|||95.20|86.48|0.00|0.78|10FF0008|Kokosaze Lulusaze|0|63151|63151|10000|10000|||95.20|86.48|0.00|0.78| +24|2023-10-06T21:58:26.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A45|57078|57078|7850|10000|||96.93|102.13|0.00|1.82|E0000000||0||||||||||| +38|2023-10-06T21:58:26.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.20|86.48|0.00|0.78|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:58:26.0630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7850|10000|0||96.93|102.13|0.00|1.82|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:26.1070000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.1070000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.1070000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.1070000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:26.1070000-07:00|10FF0006|Wowobora Gogobora|64E7|Summon Phoenix|40021585|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|25619679|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9700|10000|||109.15|89.00|0.00|2.14|00010850|0|1| +38|2023-10-06T21:58:26.1510000-07:00|4002179B||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:26.1510000-07:00|4002179B||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:58:26.1510000-07:00|40021585|Zeromus|0001084C|25617932||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:26.1510000-07:00|10FF0006|Wowobora Gogobora|HoT|0|AAA|57266|57266|9700|10000|||109.23|88.97|0.00|-2.33|E0000000||0||||||||||| +38|2023-10-06T21:58:26.1510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9700|10000|0||109.23|88.97|0.00|-2.33|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:26.1960000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.1960000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.1960000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.1960000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:26.1960000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25619679|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|5850|10000|||118.95|89.01|0.00|2.96|00010851|0|1| +35|2023-10-06T21:58:26.2850000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +261|2023-10-06T21:58:25.7910000-07:00|Add|4002179B||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:26.2850000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.2850000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.2850000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +03|2023-10-06T21:58:25.7910000-07:00|4002179B|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|54388|54388|10000|10000|||111.96|88.92|0.00|-2.33| +37|2023-10-06T21:58:26.3300000-07:00|40021585|Zeromus|0001084B|25606979||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:26.3300000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||89.38|93.10|0.00|1.59| +261|2023-10-06T21:58:25.9020000-07:00|Change|4002179B||| +37|2023-10-06T21:58:26.3740000-07:00|40021585|Zeromus|0001084D|25601020||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:26.3740000-07:00|10FF0003|Gegehi Gehi|HoT|0|AD8|51669|51669|5850|10000|||118.99|89.01|-0.01|2.77|4002164C|Ruby Carbuncle|0|54201|54201|10000|10000|||99.75|100.24|0.00|3.13| +35|2023-10-06T21:58:26.3740000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.3740000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.3740000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.3740000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +38|2023-10-06T21:58:26.3740000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6400|10000|0||118.99|89.01|-0.01|2.77|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:58:26.4200000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|10B2|58451|58451|10000|10000|||89.48|93.06|0.00|1.03|10FF000B|Pusu Rosu|0|55446|55446|8991|10000|||102.68|90.41|0.00|-2.89| +38|2023-10-06T21:58:26.4200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||89.48|93.06|0.00|1.03|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T21:58:26.4630000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||86.12|87.42|0.00|1.85| +24|2023-10-06T21:58:26.4630000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|D91|57078|57078|7850|10000|||97.37|102.02|0.00|1.59|10FF000B|Pusu Rosu|0|55446|55446|8991|10000|||102.68|90.41|0.00|-2.89| +24|2023-10-06T21:58:26.4630000-07:00|10FF000B|Pusu Rosu|HoT|777|DD1|55446|55446|8991|10000|||102.68|90.41|0.00|-2.89|10FF000B|Pusu Rosu|0|55446|55446|8991|10000|||102.68|90.41|0.00|-2.89| +24|2023-10-06T21:58:26.4630000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|E0B|58451|58451|10000|10000|||89.48|93.06|0.00|1.03|10FF000B|Pusu Rosu|0|55446|55446|8991|10000|||102.68|90.41|0.00|-2.89| +24|2023-10-06T21:58:26.4630000-07:00|10FF000B|Pusu Rosu|HoT|0|AA2|55446|55446|8991|10000|||102.68|90.41|0.00|-2.89|E0000000||0||||||||||| +35|2023-10-06T21:58:26.4630000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.4630000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.4630000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.4630000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +38|2023-10-06T21:58:26.4630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7850|10000|0||97.37|102.02|0.00|1.59|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:26.4630000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:58:26.4630000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8991|10000|0||102.68|90.41|0.00|-2.89|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:26.4630000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:58:26.4630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||89.48|93.06|0.00|1.03|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:26.4630000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +24|2023-10-06T21:58:26.5540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1141|90890|90890|10000|10000|||86.28|87.30|0.00|1.70|4002164C|Ruby Carbuncle|0|54201|54201|10000|10000|||99.75|100.24|0.00|3.13| +35|2023-10-06T21:58:26.5540000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.5540000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.5540000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.5540000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +38|2023-10-06T21:58:26.5540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||86.28|87.30|0.00|1.70|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:26.6430000-07:00|40021585|Zeromus|0001084E|25580188||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:26.6430000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|AAC|90349|90349|9200|10000|||84.41|93.93|0.00|0.63|10FF0004|Buhojaqe Zijaqe|0|57078|57078|7850|10000|||97.90|101.89|0.00|2.05| +35|2023-10-06T21:58:26.6430000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.6430000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.6430000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.6430000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +38|2023-10-06T21:58:26.6430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|6||84.41|93.93|0.00|0.63|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:26.6870000-07:00|40021585|Zeromus|0001084F|25578001||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:26.7310000-07:00|40021585|Zeromus|00010851|25577967||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:26.7310000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.7310000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.7310000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.7310000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:26.7310000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|726003|C6270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25601020|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|-0.15|00010852|0|1| +38|2023-10-06T21:58:26.7310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.20|86.59|0.00|-0.15|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:58:26.7310000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +261|2023-10-06T21:58:26.3290000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:58:26.7750000-07:00|40021585|Zeromus|0001084A|25564551||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:26.8210000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.8210000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.8210000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.8210000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +261|2023-10-06T21:58:26.4200000-07:00|Change|40021798||||||||| +35|2023-10-06T21:58:26.9110000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.9110000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.9110000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.9110000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:26.9110000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|E620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25564551|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||87.22|86.49|0.00|1.47|00010853|0|1| +35|2023-10-06T21:58:26.9990000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:26.9990000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:26.9990000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:26.9990000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +20|2023-10-06T21:58:26.9990000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|102.68|90.41|0.00|-2.89| +261|2023-10-06T21:58:26.6300000-07:00|Change|10FF000B||||||||||||| +35|2023-10-06T21:58:27.0870000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.0870000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:27.0870000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.0870000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +21|2023-10-06T21:58:27.1320000-07:00|4002179A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|732003|29760000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|25564551|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08|00010854|0|1| +21|2023-10-06T21:58:27.1320000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|83A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25564551|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||89.55|92.81|0.00|3.10|00010855|0|1| +22|2023-10-06T21:58:27.1320000-07:00|4002179B|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9700|10000|||109.54|88.80|0.00|2.83|54388|54388|10000|10000|||111.96|88.92|0.00|-2.33|00010856|0|3| +22|2023-10-06T21:58:27.1320000-07:00|4002179B|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|6400|10000|||119.16|89.10|0.00|2.63|54388|54388|10000|10000|||111.96|88.92|0.00|-2.33|00010856|1|3| +22|2023-10-06T21:58:27.1320000-07:00|4002179B|Demi-Phoenix|4085|Everlasting Flight|10FF000B|Pusu Rosu|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|8991|10000|||102.68|90.41|0.00|-2.89|54388|54388|10000|10000|||111.96|88.92|0.00|-2.33|00010856|2|3| +35|2023-10-06T21:58:27.1770000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.1770000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:27.1770000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.1770000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +261|2023-10-06T21:58:26.7480000-07:00|Change|4002179B||| +39|2023-10-06T21:58:27.2200000-07:00|10FF000B|Pusu Rosu|55446|55446|9272|10000|||102.68|90.41|0.00|-2.89| +35|2023-10-06T21:58:27.2660000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.2660000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FD|||| +35|2023-10-06T21:58:27.2660000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.2660000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +257|2023-10-06T21:58:27.3110000-07:00|80034E7C|00020001|01|00|0000| +35|2023-10-06T21:58:27.3110000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:27.3110000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:27.3110000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:27.3110000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:27.3110000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|00010857|0|1| +20|2023-10-06T21:58:27.3110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|98.82|101.29|0.00|2.28| +38|2023-10-06T21:58:27.3110000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.20|86.59|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:27.3110000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|63151|63151| +261|2023-10-06T21:58:26.8670000-07:00|Change|10FF0004||||||||||||||||||||| +35|2023-10-06T21:58:27.3550000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.3550000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:27.3550000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.3550000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FE|||| +35|2023-10-06T21:58:27.3990000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:27.3990000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:27.3990000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:27.3990000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:27.4430000-07:00|40021585|Zeromus|00010853|25560869||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:27.4430000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.4430000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:27.4430000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.4430000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:27.4430000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41712003|417E0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|25564551|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||84.52|95.02|0.00|0.85|00010858|0|1| +38|2023-10-06T21:58:27.4430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|6||84.52|95.02|0.00|0.85|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:27.4430000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:58:27.4430000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +35|2023-10-06T21:58:27.4880000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:27.4880000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:27.4880000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:27.4880000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:27.5320000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.5320000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:27.5320000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.5320000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:27.5770000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:27.5770000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:27.5770000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:27.5770000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:27.6220000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.6220000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:27.6220000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.6220000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:27.6660000-07:00|40021585|Zeromus|00010855|25558763||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:27.6660000-07:00|40021585|Zeromus|DoT|0|23DE|25560869|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|9272|10000|||102.68|90.41|0.00|-2.89| +35|2023-10-06T21:58:27.6660000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:27.6660000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:27.6660000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:27.6660000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +36|2023-10-06T21:58:27.6660000-07:00|3C50|3| +38|2023-10-06T21:58:27.6660000-07:00|40021585|Zeromus|005A5A00|25549581|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:27.6660000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +39|2023-10-06T21:58:27.7110000-07:00|4002164C|Ruby Carbuncle|54201|54201|10000|10000|||99.75|100.24|0.00|3.13| +35|2023-10-06T21:58:27.7110000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.7110000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:27.7110000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.7110000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:27.2950000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:58:27.7550000-07:00|4002179A|Automaton Queen|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08| +35|2023-10-06T21:58:27.7550000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:27.7550000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:27.7550000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:27.7550000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:27.8000000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.8000000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:27.8000000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.8000000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:27.8450000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:27.8450000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:27.8450000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:27.8450000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:27.8450000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9272|10000|0||102.68|90.41|0.00|-2.89|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:27.8450000-07:00|777|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +37|2023-10-06T21:58:27.8890000-07:00|40021585|Zeromus|00010852|25498854||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:27.8890000-07:00|40021585|Zeromus|00010854|25488240||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:27.8900000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.8900000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:27.8900000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.8900000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:27.8900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25549581|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||84.74|95.23|0.00|0.92|00010859|0|1| +31|2023-10-06T21:58:27.8900000-07:00|10FF0001||||| +261|2023-10-06T21:58:27.4880000-07:00|Remove|40021787| +35|2023-10-06T21:58:27.9340000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:27.9340000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:27.9340000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:27.9340000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:27.9340000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|13070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25549581|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|0001085A|0|1| +21|2023-10-06T21:58:27.9340000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|49D10000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25549581|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|9272|10000|||102.68|90.41|0.00|-2.89|0001085B|0|1| +35|2023-10-06T21:58:27.9790000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:27.9790000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:27.9790000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:27.9790000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:28.0230000-07:00|40021585|Zeromus|00010858|25471474||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:28.0230000-07:00|10FF0001|Sesuga Sapisuga|00010858|90349|90349|9200|10000|6||84.74|95.23|0.00|0.92|1300|0|0|02|0200076E|03|41F00000|||||| +35|2023-10-06T21:58:28.0230000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.0230000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.0230000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.0230000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:28.0230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|6||84.74|95.23|0.00|0.92|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:27.5800000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:58:28.0670000-07:00|10FF0006|Wowobora Gogobora|00010856|57266|57266|9700|10000|0||109.39|88.68|0.00|-1.91|1B00|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T21:58:28.0670000-07:00|74C|Everlasting Flight|21.00|4002179B|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|57266|54388| +35|2023-10-06T21:58:28.0670000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.0670000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.0670000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.0670000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +39|2023-10-06T21:58:28.1130000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|8050|10000|||98.89|101.24|0.00|3.09| +39|2023-10-06T21:58:28.1130000-07:00|10FF0003|Gegehi Gehi|51669|51669|6600|10000|||119.10|89.86|-0.02|2.54| +35|2023-10-06T21:58:28.1130000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.1130000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.1130000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.1130000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +39|2023-10-06T21:58:28.1570000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||95.20|86.59|0.00|2.51| +35|2023-10-06T21:58:28.1570000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.1570000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.1570000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.1570000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:27.6950000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:58:27.6950000-07:00|Change|40021798||| +37|2023-10-06T21:58:28.2010000-07:00|10FF0003|Gegehi Gehi|00010856|51669|51669|6600|10000|0||119.10|89.86|-0.02|2.54|2301|0|0|01|0500074C|0|41A80000|| +26|2023-10-06T21:58:28.2010000-07:00|74C|Everlasting Flight|21.00|4002179B|Demi-Phoenix|10FF0003|Gegehi Gehi|00|51669|54388| +35|2023-10-06T21:58:28.2010000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.2010000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.2010000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.2010000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:28.2460000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.2460000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.2460000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.2460000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:28.2460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|522F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25471474|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|8050|10000|||98.89|101.24|0.00|3.09|0001085C|0|1| +261|2023-10-06T21:58:27.9220000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:58:27.9220000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:58:28.2910000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9900|10000|||109.36|88.67|-0.01|-1.89| +35|2023-10-06T21:58:28.2910000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.2910000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.2910000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.2910000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:28.2910000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|222B0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|25471474|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||88.67|84.73|0.00|1.27|0001085D|0|1| +37|2023-10-06T21:58:28.3350000-07:00|10FF000B|Pusu Rosu|00010856|55446|55446|8872|10000|0||102.68|90.41|0.00|-2.89|1802|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T21:58:28.3350000-07:00|74C|Everlasting Flight|21.00|4002179B|Demi-Phoenix|10FF000B|Pusu Rosu|00|55446|54388| +261|2023-10-06T21:58:27.9220000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:58:28.3350000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.3350000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.3350000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.3350000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:28.3790000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.3790000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.3790000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.3790000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:28.4240000-07:00|40021585|Zeromus|00010859|25469706||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:28.4240000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.4240000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.4240000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.4240000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:28.4680000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.4680000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.4680000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.4680000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:28.5130000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.5130000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.5130000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.5130000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:28.5130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||88.67|84.73|0.00|1.96|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:28.5130000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:58:28.5130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.20|86.59|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:28.5130000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:58:28.5130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9900|10000|0||109.36|88.67|0.00|-1.89|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:28.5130000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T21:58:28.5130000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6600|10000|0||119.10|89.86|0.00|2.54|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:28.5130000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +35|2023-10-06T21:58:28.5570000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.5570000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.5570000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.5570000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:28.5570000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25469706|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9900|10000|||109.36|88.67|0.00|-1.89|0001085E|0|1| +35|2023-10-06T21:58:28.6020000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.6020000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.6020000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.6020000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:28.6020000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|ABE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25469706|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|0001085F|0|1| +21|2023-10-06T21:58:28.6020000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|154003|69280000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25469706|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9900|10000|||109.36|88.67|0.00|-2.31|00010860|0|1| +35|2023-10-06T21:58:28.6470000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.6470000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.6470000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.6470000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:28.6900000-07:00|4002179A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1A190000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|25469706|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08|00010861|0|1| +35|2023-10-06T21:58:28.6900000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.6900000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.6900000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.6900000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:28.7350000-07:00|40021585|Zeromus|0001085A|25464835||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:28.7350000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.7350000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.7350000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.7350000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:28.7800000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.7800000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.7800000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.7800000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +39|2023-10-06T21:58:28.8260000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9400|10000|||84.74|95.23|0.00|0.92| +35|2023-10-06T21:58:28.8260000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.8260000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.8260000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.8260000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:28.8260000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7650|10000|0||98.89|101.21|0.00|3.04|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:28.8260000-07:00|317|Dissipation|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +26|2023-10-06T21:58:28.8260000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|57078|57078| +21|2023-10-06T21:58:28.8260000-07:00|10FF0004|Buhojaqe Zijaqe|E03|Dissipation|10FF0004|Buhojaqe Zijaqe|140E|3170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|7650|10000|||98.89|101.21|0.00|3.04|57078|57078|7650|10000|||98.89|101.21|0.00|3.04|00010862|0|1| +261|2023-10-06T21:58:28.3450000-07:00|Change|4002164C||||| +261|2023-10-06T21:58:28.3450000-07:00|Change|4002164C||||| +261|2023-10-06T21:58:28.4420000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:58:28.4420000-07:00|Change|10FF0006||||| +35|2023-10-06T21:58:28.8690000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.8690000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FE|||| +35|2023-10-06T21:58:28.8690000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.8690000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:28.9140000-07:00|40021585|Zeromus|0001085D|25456088||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:28.9140000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:28.9140000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:28.9140000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:28.9140000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:28.9580000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:28.9580000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:28.9580000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:28.9580000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:29.0030000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.0030000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.0030000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.0030000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:29.0470000-07:00|40021585|Zeromus|0001085C|25435049||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:29.0470000-07:00|10FF0004|Buhojaqe Zijaqe|0001085C|57078|57078|7650|10000|0||98.89|101.21|0.00|3.00|1C00|0|0|01|04000317|0|C1F00000|| +24|2023-10-06T21:58:29.0480000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|AA3|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|10FF0008|Kokosaze Lulusaze|0|63151|63151|10000|10000|||95.20|86.59|0.00|2.51| +24|2023-10-06T21:58:29.0480000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A6D|57078|57078|7650|10000|||98.89|101.21|0.00|3.00|E0000000||0||||||||||| +35|2023-10-06T21:58:29.0480000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.0480000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.0480000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.0480000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:28.5420000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:58:29.0480000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40021585|Zeromus|750003|524B0000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|25456088|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6600|10000|||119.10|89.86|0.00|2.54|00010863|0|1| +38|2023-10-06T21:58:29.0480000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.20|86.59|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:58:29.0480000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7650|10000|0||98.89|101.21|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:29.0480000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6200|10000|0||119.10|89.86|0.00|2.54|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:29.0480000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:58:29.0920000-07:00|40021585|Zeromus|0001085E|25434902||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:29.0920000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.0920000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.0920000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.0920000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:29.1370000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.1370000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.1370000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.1370000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:29.1370000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25434902|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7650|10000|||99.20|100.63|0.00|2.93|00010864|0|1| +24|2023-10-06T21:58:29.1820000-07:00|10FF0006|Wowobora Gogobora|HoT|0|127F|57266|57266|9600|10000|||109.36|88.67|0.00|-2.31|E0000000||0||||||||||| +35|2023-10-06T21:58:29.1820000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.1820000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.1820000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.1820000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:29.1820000-07:00|10FF0006|Wowobora Gogobora|64E6|Rekindle|10FF0006|Wowobora Gogobora|200004|3CFD0000|4B10420E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|57266|57266|9600|10000|||109.36|88.67|0.00|-2.31|57266|57266|9600|10000|||109.36|88.67|0.00|-2.31|00010865|0|1| +38|2023-10-06T21:58:29.1820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9600|10000|0||109.36|88.67|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:29.2250000-07:00|40021585|Zeromus|0001085B|25416005||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:29.2250000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.2250000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.2250000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.2250000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:28.7720000-07:00|Change|4002179B||||||||| +35|2023-10-06T21:58:29.2700000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.2700000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.2700000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.2700000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +26|2023-10-06T21:58:29.2700000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|63151|63151| +21|2023-10-06T21:58:29.2700000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|22EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25416005|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|00010866|0|1| +35|2023-10-06T21:58:29.3140000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.3140000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.3140000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.3140000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:29.3140000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A8D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25416005|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||89.81|90.99|0.00|-0.10|00010867|0|1| +37|2023-10-06T21:58:29.3580000-07:00|40021585|Zeromus|0001085F|25413255||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:29.3580000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||89.81|90.99|0.00|-0.10| +35|2023-10-06T21:58:29.3580000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.3580000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.3580000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.3580000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +24|2023-10-06T21:58:29.4030000-07:00|10FF0003|Gegehi Gehi|HoT|0|1940|51669|51669|6200|10000|||119.10|89.86|0.00|-2.04|4002164C|Ruby Carbuncle|0|0|54201|0|10000|||99.75|100.24|0.00|3.13| +35|2023-10-06T21:58:29.4030000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.4030000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.4030000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.4030000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:29.4030000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6750|10000|0||119.10|89.86|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:29.4470000-07:00|40021585|Zeromus|00010861|25406574||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:29.4470000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A35|58451|58451|10000|10000|||89.90|91.01|0.00|0.10|10FF000B|Pusu Rosu|0|55446|55446|8872|10000|||102.68|90.41|0.00|-2.89| +35|2023-10-06T21:58:29.4470000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.4470000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.4470000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.4470000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +20|2023-10-06T21:58:29.4470000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|102.68|90.41|0.00|-2.89| +38|2023-10-06T21:58:29.4470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||89.90|91.01|0.00|0.10|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:29.0030000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T21:58:29.4910000-07:00|10FF0004|Buhojaqe Zijaqe|00010862|57078|57078|7650|10000|0||99.76|99.58|0.00|2.80|1C00|0|0|01|04000317|0|41F00000|| +39|2023-10-06T21:58:29.4910000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||89.08|84.42|0.00|1.35| +24|2023-10-06T21:58:29.4910000-07:00|10FF000B|Pusu Rosu|HoT|0|191F|55446|55446|8872|10000|||102.68|90.41|0.00|-2.89|E0000000||0||||||||||| +35|2023-10-06T21:58:29.4910000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.4910000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.4910000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.4910000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:29.4920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7650|10000|0||99.76|99.58|0.00|2.80|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:29.4920000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8872|10000|0||102.68|90.41|0.00|-2.89|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:29.5360000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.5360000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.5360000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.5360000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +24|2023-10-06T21:58:29.5810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|AFB|90890|90890|10000|10000|||89.33|84.25|0.00|1.30|4002164C|Ruby Carbuncle|0|0|54201|0|10000|||99.75|100.24|0.00|3.13| +35|2023-10-06T21:58:29.5810000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.5810000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.5810000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.5810000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:29.5810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||89.33|84.25|0.00|1.30|0|0|0||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:29.6250000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.6250000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.6250000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.6250000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:29.6690000-07:00|40021585|Zeromus|00010860|25379654||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:29.6690000-07:00|40021585|Zeromus|00010864|25379504||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:29.6700000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|AB4|90349|90349|9400|10000|||84.74|95.23|0.00|0.92|10FF0004|Buhojaqe Zijaqe|0|57078|57078|7650|10000|||99.87|99.37|0.00|2.76| +35|2023-10-06T21:58:29.6700000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.6700000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.6700000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.6700000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:29.6700000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25406574|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6750|10000|||119.10|89.86|0.00|-2.04|00010868|0|1| +38|2023-10-06T21:58:29.6700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9400|10000|6||84.74|95.23|0.00|0.92|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:58:29.7130000-07:00|4002179B|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|150003|12F40000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|25406574|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21|00010869|0|1| +35|2023-10-06T21:58:29.7140000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.7140000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.7140000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.7140000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:29.7580000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.7580000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.7580000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.7580000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:29.8030000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.8030000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.8030000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.8030000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:29.8030000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|141B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25379504|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|0001086A|0|1| +261|2023-10-06T21:58:29.4170000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:29.8470000-07:00|40021585|Zeromus|00010867|25376803||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:29.8470000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.8470000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.8470000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.8470000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:29.8470000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|43800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25379504|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6750|10000|||119.10|89.86|0.00|-2.04|0001086B|0|1| +35|2023-10-06T21:58:29.8930000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.8930000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.8930000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.8930000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +04|2023-10-06T21:58:29.5190000-07:00|40021798|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||107.23|90.65|0.00|3.01| +261|2023-10-06T21:58:29.5190000-07:00|Remove|40021798| +37|2023-10-06T21:58:29.9370000-07:00|40021585|Zeromus|00010866|25367861||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:29.9370000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:29.9370000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:29.9370000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:29.9370000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:29.9810000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:29.9810000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:29.9810000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:29.9810000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:29.9810000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|15060000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|25376803|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9400|10000|||84.74|95.23|0.00|2.35|0001086C|0|1| +261|2023-10-06T21:58:29.6140000-07:00|Change|10FF0003||||| +35|2023-10-06T21:58:30.0260000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.0260000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.0260000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.0260000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +20|2023-10-06T21:58:30.0260000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.09|98.86|0.00|2.67| +35|2023-10-06T21:58:30.0700000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.0700000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.0700000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.0700000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:30.0700000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|18F20000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|25367861|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||89.92|91.02|0.00|0.10|0001086D|0|1| +261|2023-10-06T21:58:29.7080000-07:00|Change|10FF0004||||||||||||||||||| +35|2023-10-06T21:58:30.1140000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.1140000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.1140000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.1140000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:30.1590000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.1590000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.1590000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.1590000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:30.1590000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25367861|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9400|10000|||84.74|95.23|0.00|2.35|0001086E|0|1| +31|2023-10-06T21:58:30.1590000-07:00|10FF0001||||| +37|2023-10-06T21:58:30.2040000-07:00|10FF0006|Wowobora Gogobora|00010865|57266|57266|9600|10000|0||109.36|88.67|0.00|-2.31|1B00|0|0|01|03000A90|4B|41F00000|| +26|2023-10-06T21:58:30.2040000-07:00|A90|Rekindle|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|4B|57266|57266| +37|2023-10-06T21:58:30.2040000-07:00|40021585|Zeromus|00010868|25367825||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:30.2040000-07:00|10FF0003|Gegehi Gehi|00010868|51669|51669|6750|10000|0||119.10|89.86|0.00|-2.04|2300|0|0|01|010004D3|0|C1F00000|| +35|2023-10-06T21:58:30.2040000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.2040000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.2040000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.2040000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:30.2480000-07:00|4002179A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|224F0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|25367825|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08|0001086F|0|1| +39|2023-10-06T21:58:30.2480000-07:00|10FF000B|Pusu Rosu|55446|55446|9153|10000|||102.68|90.41|0.00|-2.89| +35|2023-10-06T21:58:30.2480000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.2480000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.2480000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.2480000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:30.2930000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.2930000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.2930000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.2930000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:30.2940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BC90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25367825|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||89.77|83.94|0.00|1.21|00010870|0|1| +35|2023-10-06T21:58:30.3370000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.3370000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.3370000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.3370000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:30.3820000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.3820000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.3820000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.3820000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:30.3820000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|32430000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25367825|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|8872|10000|||102.68|90.41|0.00|-2.89|00010871|0|1| +37|2023-10-06T21:58:30.4250000-07:00|40021585|Zeromus|0001086A|25362678||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:30.4260000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.4260000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.4260000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.4260000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:30.0550000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:58:30.4700000-07:00|40021585|Zeromus|00010863|25341611||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:30.4700000-07:00|10FF0003|Gegehi Gehi|00010863|51669|51669|6750|10000|0||119.10|89.86|0.00|-2.04|2300|0|0|01|010004D3|0|41F00000|| +37|2023-10-06T21:58:30.4700000-07:00|40021585|Zeromus|0001086D|25335225||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:30.4700000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.4700000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.4700000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.4700000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:30.4700000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6750|10000|0||119.10|89.86|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:30.5140000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.5140000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.5140000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.5140000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:30.5590000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.5590000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.5590000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.5590000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:30.6030000-07:00|40021585|Zeromus|0001086C|25329843||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:30.6030000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.6030000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.6030000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.6030000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +24|2023-10-06T21:58:30.6470000-07:00|40021585|Zeromus|DoT|0|1955|25335225|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|8753|10000|||102.68|90.41|0.00|-2.89| +35|2023-10-06T21:58:30.6470000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.6470000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.6470000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.6470000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +36|2023-10-06T21:58:30.6470000-07:00|3D2C|3| +38|2023-10-06T21:58:30.6470000-07:00|40021585|Zeromus|005A5A00|25323358|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:30.6470000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T21:58:30.6910000-07:00|40021585|Zeromus|0001086E|25320421||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:30.6910000-07:00|4002179A|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.49|103.07|0.00|-3.08|0|0|0|||||||||| +26|2023-10-06T21:58:30.6910000-07:00|30|Well Fed|1363.40|10FF0008|Kokosaze Lulusaze|4002179A|Automaton Queen|2964|59967|63151| +26|2023-10-06T21:58:30.6910000-07:00|441|HP Penalty|9999.00|E0000000||4002179A|Automaton Queen|00|59967|| +26|2023-10-06T21:58:30.6910000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|4002179A|Automaton Queen|01|59967|40478540| +35|2023-10-06T21:58:30.6910000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.6910000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.6910000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.6910000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +39|2023-10-06T21:58:30.7360000-07:00|4002179A|Automaton Queen|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08| +35|2023-10-06T21:58:30.7360000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.7360000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.7360000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.7360000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:30.7360000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F714003|3A9E0000|143E|340000|4|18148000|11B|2A8000|0|0|0|0|0|0|0|0|25320421|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||89.77|83.94|0.00|1.21|00010872|0|1| +26|2023-10-06T21:58:30.7360000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|63151|63151| +21|2023-10-06T21:58:30.7360000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|20550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25320421|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|00010873|0|1| +21|2023-10-06T21:58:30.7360000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|9400|10000|||84.74|95.23|0.00|2.35|90349|90349|9400|10000|||84.74|95.23|0.00|2.35|00010874|0|1| +37|2023-10-06T21:58:30.7810000-07:00|40021585|Zeromus|00010869|25315569||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:30.7810000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.7810000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.7810000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.7810000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:30.8260000-07:00|40021585|Zeromus|00010870|25312552||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:30.8260000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.8260000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.8260000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.8260000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:30.8710000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.8710000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.8710000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.8710000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:30.4570000-07:00|Change|4002164C||||| +35|2023-10-06T21:58:30.9150000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:30.9150000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:30.9150000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:30.9150000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:30.9610000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:30.9610000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:30.9610000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:30.9610000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:30.9610000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30140000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25312552|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7650|10000|||100.24|98.56|0.00|-3.13|00010875|0|1| +261|2023-10-06T21:58:30.4570000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:58:31.0040000-07:00|40021585|Zeromus|0001086F|25303769||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:31.0040000-07:00|40021585|Zeromus|0001086B|25286489||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:31.0040000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.0040000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.0040000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.0040000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:31.0480000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.0480000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.0480000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.0480000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:31.0480000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|152003|8C8C0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25312552|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9600|10000|||109.36|88.67|0.00|-2.31|00010876|0|1| +261|2023-10-06T21:58:30.5520000-07:00|Change|10FF0006||| +39|2023-10-06T21:58:31.0940000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|7450|10000|||100.24|98.56|0.00|-3.13| +35|2023-10-06T21:58:31.0940000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.0940000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.0940000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.0940000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +39|2023-10-06T21:58:31.1380000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||95.20|86.59|0.00|2.51| +39|2023-10-06T21:58:31.1380000-07:00|10FF0003|Gegehi Gehi|51669|51669|6950|10000|||119.10|89.86|0.00|-2.04| +35|2023-10-06T21:58:31.1380000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.1380000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.1380000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.1380000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:30.6640000-07:00|Change|10FF0003||| +35|2023-10-06T21:58:31.1820000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.1820000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.1820000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.1820000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:31.2270000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.2270000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.2270000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.2270000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +39|2023-10-06T21:58:31.2710000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9500|10000|||109.36|88.67|0.00|-2.31| +35|2023-10-06T21:58:31.2710000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.2710000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.2710000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.2710000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:31.2710000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|11E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25286489|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|00010877|0|1| +35|2023-10-06T21:58:31.3160000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.3160000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.3160000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.3160000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:31.3160000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|20710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25286489|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|00010878|0|1| +37|2023-10-06T21:58:31.3610000-07:00|40021585|Zeromus|00010873|25278212||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:31.3610000-07:00|10FF0001|Sesuga Sapisuga|00010874|90349|90349|9400|10000|6||84.74|95.23|0.00|2.35|1300|0|0|01|0900004C|0|41A00000|| +26|2023-10-06T21:58:31.3610000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +35|2023-10-06T21:58:31.3610000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.3610000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.3610000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.3610000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:31.3610000-07:00|40021585|Zeromus|8B56|Meteor Impact|40021585|Zeromus|1B|8B568000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25286489|40478540|10000|10000|||100.00|80.10|0.00|0.00|25286489|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010879|0|1| +261|2023-10-06T21:58:30.9990000-07:00|Change|40021585||||| +00|2023-10-06T21:58:30.0000000-07:00|0044|Zeromus|Bright as stars in the night.| +35|2023-10-06T21:58:31.4060000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.4060000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.4060000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.4060000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:31.4500000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.4500000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.4500000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.4500000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:31.4500000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|750003|27030000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|25278212|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9400|10000|||84.74|95.23|0.00|2.35|0001087A|0|1| +21|2023-10-06T21:58:31.4500000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|754003|7D770000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|25278212|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6950|10000|||119.10|89.86|0.00|-2.04|0001087B|0|1| +38|2023-10-06T21:58:31.4500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9400|10000|6||84.74|95.23|0.00|2.35|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:31.4500000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|90349|90349| +26|2023-10-06T21:58:31.4500000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:58:31.4500000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8753|10000|0||102.68|90.41|0.00|-2.89|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:31.4500000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:58:31.4500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:31.4500000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +35|2023-10-06T21:58:31.4950000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.4950000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.4950000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.4950000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:31.4950000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25278212|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||89.92|91.02|0.00|2.40|0001087C|0|1| +38|2023-10-06T21:58:31.4950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7450|10000|0||100.28|98.49|0.00|2.81|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:31.4950000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +35|2023-10-06T21:58:31.5400000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.5400000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.5400000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.5400000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:31.5850000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.5850000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.5850000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.5850000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:31.2090000-07:00|Change|10FF0006||| +35|2023-10-06T21:58:31.6290000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.6290000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.6290000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.6290000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:31.6740000-07:00|40021585|Zeromus|00010871|25265345||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:31.6740000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.6740000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.6740000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.6740000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:31.7180000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.7180000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.7180000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.7180000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:31.7180000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|1000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25278212|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9500|10000|||109.36|88.67|0.00|-2.31|0001087D|0|1| +37|2023-10-06T21:58:31.7630000-07:00|40021585|Zeromus|00010875|25253037||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:31.7630000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.7630000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.7630000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.7630000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:31.8070000-07:00|4002179A|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|736003|9E820000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|25265345|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08|0001087E|0|1| +39|2023-10-06T21:58:31.8070000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9600|10000|||84.74|95.23|0.00|2.35| +261|2023-10-06T21:58:31.4000000-07:00|Change|10FF0001||| +35|2023-10-06T21:58:31.8080000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.8080000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.8080000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.8080000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:31.8520000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.8520000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.8520000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.8520000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:31.8980000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.8980000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.8980000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.8980000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +20|2023-10-06T21:58:31.8980000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|102.68|90.41|0.00|-2.89| +261|2023-10-06T21:58:31.4980000-07:00|Change|10FF000B||||||||||||| +35|2023-10-06T21:58:31.9410000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:31.9410000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:31.9410000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:31.9410000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:31.9850000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:31.9850000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:31.9850000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:31.9850000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +261|2023-10-06T21:58:31.4980000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:58:31.6870000-07:00|Change|10FF0003||| +37|2023-10-06T21:58:32.0300000-07:00|40021585|Zeromus|00010877|25248461||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:32.0300000-07:00|40021585|Zeromus|0001087C|25246317||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:32.0300000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.0300000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.0300000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.0300000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:32.0750000-07:00|40021585|Zeromus|0001087A|25236330||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:32.0750000-07:00|10FF0001|Sesuga Sapisuga|0001087A|90349|90349|9600|10000|6||84.74|95.23|0.00|2.35|1300|0|0|02|0A000558|04|41F00000|||||| +24|2023-10-06T21:58:32.0750000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A72|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|10FF0008|Kokosaze Lulusaze|0|63151|63151|10000|10000|||95.20|86.59|0.00|2.51| +24|2023-10-06T21:58:32.0750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A82|57078|57078|7450|10000|||100.39|98.30|0.00|2.67|E0000000||0||||||||||| +35|2023-10-06T21:58:32.0750000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.0750000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.0750000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.0750000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:32.0750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.20|86.59|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:58:32.0750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9600|10000|6||84.74|95.23|0.00|2.35|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:32.0750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7450|10000|0||100.39|98.30|0.00|2.67|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:32.1190000-07:00|40021585|Zeromus|00010878|25228025||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:32.1190000-07:00|40021585|Zeromus|00010876|25192045||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:32.1190000-07:00|4002179B|Demi-Phoenix|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21| +35|2023-10-06T21:58:32.1190000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.1190000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.1190000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.1190000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +24|2023-10-06T21:58:32.1640000-07:00|10FF0006|Wowobora Gogobora|HoT|0|190D|57266|57266|9500|10000|||109.36|88.67|0.00|-2.31|E0000000||0||||||||||| +35|2023-10-06T21:58:32.1640000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.1640000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.1640000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.1640000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +38|2023-10-06T21:58:32.1640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9500|10000|0||109.36|88.67|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:32.2090000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.2090000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.2090000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.2090000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +26|2023-10-06T21:58:32.2090000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|63151|63151| +21|2023-10-06T21:58:32.2090000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|34820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25192045|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|0001087F|0|1| +21|2023-10-06T21:58:32.2090000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|22D90000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|25192045|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||89.92|91.02|0.00|2.40|00010880|0|1| +37|2023-10-06T21:58:32.2530000-07:00|40021585|Zeromus|00010872|25177039||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:32.2530000-07:00|40021585|Zeromus|0001087D|25176783||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:32.2530000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.2530000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.2530000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.2530000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:32.2990000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.2990000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.2990000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.2990000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:32.2990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.20|86.59|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:32.2990000-07:00|9D6|Bind|3.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +38|2023-10-06T21:58:32.2990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:32.2990000-07:00|9D6|Bind|3.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +38|2023-10-06T21:58:32.2990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9500|10000|0||109.36|88.67|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:32.2990000-07:00|9D6|Bind|3.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:58:32.2990000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6550|10000|0||119.10|89.86|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:32.2990000-07:00|9D6|Bind|3.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +21|2023-10-06T21:58:32.3430000-07:00|4002179B|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|150003|14400000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|25176783|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21|00010881|0|1| +39|2023-10-06T21:58:32.3430000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||89.92|91.02|0.00|2.40| +35|2023-10-06T21:58:32.3430000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.3430000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.3430000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.3430000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +24|2023-10-06T21:58:32.3870000-07:00|10FF0003|Gegehi Gehi|HoT|0|1242|51669|51669|6550|10000|||119.10|89.86|0.00|-2.04|4002164C|Ruby Carbuncle|0|0|54201|0|10000|||99.75|100.24|0.00|3.13| +35|2023-10-06T21:58:32.3870000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.3870000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.3870000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.3870000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:32.3870000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|7100|10000|0||119.10|89.86|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:58:32.4320000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|119F|58451|58451|10000|10000|||89.92|91.02|0.00|2.40|E0000000||0||||||||||| +35|2023-10-06T21:58:32.4320000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.4320000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.4320000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.4320000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:32.4320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|89E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25176783|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9600|10000|||84.74|95.23|0.00|2.35|00010882|0|1| +20|2023-10-06T21:58:32.4320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.42|98.26|0.00|2.66| +38|2023-10-06T21:58:32.4320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||| +31|2023-10-06T21:58:32.4320000-07:00|10FF0001||||| +39|2023-10-06T21:58:32.4770000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||89.77|83.94|0.00|1.93| +24|2023-10-06T21:58:32.4770000-07:00|10FF000B|Pusu Rosu|HoT|0|12E2|55446|55446|8753|10000|||102.68|90.41|0.00|-2.89|E0000000||0||||||||||| +35|2023-10-06T21:58:32.4770000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.4770000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.4770000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.4770000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:32.4770000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8753|10000|0||102.68|90.41|0.00|-2.89|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:32.5210000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.5210000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.5210000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.5210000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:32.5210000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|714003|71660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25176783|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9600|10000|||84.74|95.23|0.00|2.35|00010883|0|1| +24|2023-10-06T21:58:32.5660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A86|90890|90890|10000|10000|||89.77|83.94|0.00|1.93|4002164C|Ruby Carbuncle|0|0|54201|0|10000|||99.75|100.24|0.00|3.13| +35|2023-10-06T21:58:32.5660000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.5660000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.5660000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.5660000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:32.5660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||89.77|83.94|0.00|1.93|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:32.6100000-07:00|40021585|Zeromus|00010880|25167862||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:32.6100000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.6100000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.6100000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.6100000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +24|2023-10-06T21:58:32.6560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A94|90349|90349|9600|10000|||84.74|95.23|0.00|2.35|10FF0004|Buhojaqe Zijaqe|0|57078|57078|7450|10000|||100.42|98.25|0.00|2.85| +35|2023-10-06T21:58:32.6560000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.6560000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.6560000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.6560000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:32.6560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9600|10000|6||84.74|95.23|0.00|2.35|0|0|0|||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:32.7000000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.7000000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.7000000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.7000000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +04|2023-10-06T21:58:32.2440000-07:00|4002164C|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|54201|0|10000|||99.75|100.24|0.00|3.13| +261|2023-10-06T21:58:32.2440000-07:00|Remove|4002164C| +35|2023-10-06T21:58:32.7450000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.7450000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.7450000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.7450000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:32.7910000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.7910000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.7910000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.7910000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:32.7910000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|1F590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25167862|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|00010884|0|1| +37|2023-10-06T21:58:32.8350000-07:00|40021585|Zeromus|0001087F|25154420||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:32.8350000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.8350000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.8350000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.8350000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:32.8350000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|41A80000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|25167862|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|8753|10000|||102.68|90.41|0.00|-2.89|00010885|0|1| +35|2023-10-06T21:58:32.8790000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.8790000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.8790000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.8790000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:32.9230000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:32.9230000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:32.9230000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:32.9230000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:32.4360000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:58:32.5270000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:58:32.9680000-07:00|40021585|Zeromus|00010882|25152214||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:32.9680000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:32.9680000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:32.9680000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:32.9680000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:33.0130000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.0130000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.0130000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.0130000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:33.0580000-07:00|40021585|Zeromus|00010883|25123184||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:33.0580000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:33.0580000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:33.0580000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:33.0580000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:33.1020000-07:00|40021585|Zeromus|0001087E|25082606||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:33.1020000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.1020000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.1020000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.1020000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:33.1020000-07:00|4002179A|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.49|103.07|0.00|-3.08|0|0|0||||||| +30|2023-10-06T21:58:33.1020000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|4002179A|Automaton Queen|01|59967|40478540| +35|2023-10-06T21:58:33.1460000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:33.1460000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:33.1460000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:33.1460000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +21|2023-10-06T21:58:33.1460000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25082606|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|7100|10000|||119.10|89.86|0.00|-2.04|00010886|0|1| +261|2023-10-06T21:58:32.7320000-07:00|Change|40021585||||||||||||| +261|2023-10-06T21:58:32.7320000-07:00|Change|10FF0003||| +35|2023-10-06T21:58:33.1900000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.1900000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.1900000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.1900000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:33.1900000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|712003|5F6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25082606|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||89.77|83.94|0.00|1.93|00010887|0|1| +39|2023-10-06T21:58:33.2340000-07:00|10FF000B|Pusu Rosu|55446|55446|8634|10000|||102.68|90.41|0.00|-2.89| +35|2023-10-06T21:58:33.2340000-07:00|40021583|Comet|10FF0008|Kokosaze Lulusaze|0000|0000|00FF|||| +35|2023-10-06T21:58:33.2340000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:33.2340000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:33.2340000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +37|2023-10-06T21:58:33.2790000-07:00|40021585|Zeromus|0001087B|25050487||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:33.2790000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.2790000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.2790000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.2790000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:33.2790000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750605|1C9C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|9600|10000|||84.74|95.23|0.00|2.35|25050487|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010888|0|1| +35|2023-10-06T21:58:33.3240000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:33.3240000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:33.3240000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:33.3240000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +261|2023-10-06T21:58:32.8480000-07:00|Change|40021583||||||||| +37|2023-10-06T21:58:33.3690000-07:00|40021585|Zeromus|00010881|25045303||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:33.3690000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.3690000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.3690000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:33.3690000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|12200000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|25050487|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9600|10000|||84.74|95.23|0.00|2.35|00010889|0|1| +21|2023-10-06T21:58:33.3690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4E980000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|25050487|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7450|10000|||100.42|98.25|0.00|-3.12|0001088A|0|1| +22|2023-10-06T21:58:33.4140000-07:00|40021583|Comet|8B58|Meteor Impact|10FF0008|Kokosaze Lulusaze|730003|26390000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|69200|69200|10000|10000|||94.00|118.00|0.00|3.10|0001088B|0|1| +35|2023-10-06T21:58:33.4140000-07:00|40021582|Comet|10FF000A|Dukaro Nezikaro|0000|0000|00FF|||| +35|2023-10-06T21:58:33.4140000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:33.4140000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:33.4140000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +38|2023-10-06T21:58:33.4140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||95.20|86.59|0.00|2.51|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:33.4140000-07:00|8C8|Blunt Resistance Down|9.96|40021583|Comet|10FF0008|Kokosaze Lulusaze|00|63151|69200| +37|2023-10-06T21:58:33.4580000-07:00|40021585|Zeromus|00010884|25037278||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:33.4580000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +261|2023-10-06T21:58:32.9670000-07:00|Change|40021583||| +35|2023-10-06T21:58:33.4580000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.4580000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:33.4580000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|8634|10000|||102.68|90.41|0.00|-2.89|55446|55446|8634|10000|||102.68|90.41|0.00|-2.89|0001088C|0|1| +35|2023-10-06T21:58:33.5020000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:33.5020000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:33.5020000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.5020000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +21|2023-10-06T21:58:33.5020000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|154003|6CD80000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|25037278|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9500|10000|||109.36|88.67|0.00|-2.31|0001088D|0|1| +261|2023-10-06T21:58:33.0830000-07:00|Change|10FF0006||| +35|2023-10-06T21:58:33.5470000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.5470000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +22|2023-10-06T21:58:33.5920000-07:00|40021582|Comet|8B58|Meteor Impact|10FF000A|Dukaro Nezikaro|730003|268A0000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||89.92|91.02|0.00|2.40|69200|69200|10000|10000|||94.00|118.00|0.00|0.00|0001088E|0|1| +35|2023-10-06T21:58:33.5920000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:33.5920000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:33.5920000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.5920000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +38|2023-10-06T21:58:33.5920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:33.5920000-07:00|8C8|Blunt Resistance Down|9.96|40021582|Comet|10FF000A|Dukaro Nezikaro|00|58451|69200| +261|2023-10-06T21:58:33.1950000-07:00|Change|40021582||||| +35|2023-10-06T21:58:33.6360000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.6360000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:33.6810000-07:00|40021585|Zeromus|00010886|25037231||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:33.6810000-07:00|40021585|Zeromus|DoT|0|1DF9|25037278|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|8634|10000|||102.68|90.41|0.00|-2.89| +35|2023-10-06T21:58:33.6810000-07:00|40021581|Comet|10FF0006|Wowobora Gogobora|0000|0000|00FF|||| +35|2023-10-06T21:58:33.6810000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:33.6810000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.6810000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +21|2023-10-06T21:58:33.6810000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|17C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25037278|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||89.77|83.94|0.00|1.93|0001088F|0|1| +26|2023-10-06T21:58:33.6810000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +21|2023-10-06T21:58:33.6810000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|21D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25037278|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|00010890|0|1| +21|2023-10-06T21:58:33.6810000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25037278|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||89.92|91.02|0.00|2.40|00010891|0|1| +36|2023-10-06T21:58:33.6810000-07:00|3E08|3| +38|2023-10-06T21:58:33.6810000-07:00|40021585|Zeromus|005A5A00|25029558|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:33.6810000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +39|2023-10-06T21:58:33.7260000-07:00|4002179A|Automaton Queen|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08| +35|2023-10-06T21:58:33.7260000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.7260000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:33.2920000-07:00|Change|40021581||||||||| +35|2023-10-06T21:58:33.7720000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:33.7720000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.7720000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.7720000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +37|2023-10-06T21:58:33.8150000-07:00|40021585|Zeromus|00010887|25005130||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:58:33.8150000-07:00|40021581|Comet|8B58|Meteor Impact|10FF0006|Wowobora Gogobora|730003|2BEC0000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|57266|57266|9200|10000|||109.36|88.67|0.00|-2.31|69200|69200|10000|10000|||94.00|118.00|0.00|2.66|00010892|0|1| +38|2023-10-06T21:58:33.8150000-07:00|4002179A|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.49|103.07|0.00|-3.08|0|0|0|||||||||| +26|2023-10-06T21:58:33.8150000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|4002179A|Automaton Queen|01|59967|40478540| +35|2023-10-06T21:58:33.8150000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:33.8150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9200|10000|0||109.36|88.67|0.00|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:33.8150000-07:00|8C8|Blunt Resistance Down|9.96|40021581|Comet|10FF0006|Wowobora Gogobora|00|57266|69200| +261|2023-10-06T21:58:33.3870000-07:00|Change|40021581||| +21|2023-10-06T21:58:33.8600000-07:00|4002179A|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|732003|8AA50000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|25029558|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08|00010893|0|1| +35|2023-10-06T21:58:33.8600000-07:00|40021580|Comet|10FF0003|Gegehi Gehi|0000|0000|00FF|||| +35|2023-10-06T21:58:33.8600000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.8600000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.8600000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +21|2023-10-06T21:58:33.8600000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||89.77|83.94|0.00|1.93|90890|90890|10000|10000|||89.77|83.94|0.00|1.93|00010894|0|1| +38|2023-10-06T21:58:33.8600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||89.77|83.94|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:33.8600000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|90890|90890| +26|2023-10-06T21:58:33.8600000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +26|2023-10-06T21:58:33.8600000-07:00|A75|Surging Tempest|36.79|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +26|2023-10-06T21:58:33.8600000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +35|2023-10-06T21:58:33.9040000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:33.9050000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|750003|6A0E0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|25005130|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|7100|10000|||119.10|89.86|0.00|-2.04|00010895|0|1| +261|2023-10-06T21:58:33.4860000-07:00|Change|40021580||||||||| +35|2023-10-06T21:58:33.9500000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.9500000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.9500000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.9500000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:33.9500000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25005130|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.20|86.59|0.00|2.51|00010896|0|1| +261|2023-10-06T21:58:33.4860000-07:00|Change|10FF000B||| +22|2023-10-06T21:58:33.9940000-07:00|40021580|Comet|8B58|Meteor Impact|10FF0003|Gegehi Gehi|730003|29A50000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|51669|51669|7100|10000|||119.10|89.86|0.00|-2.04|69200|69200|10000|10000|||94.00|118.00|0.00|0.00|00010897|0|1| +35|2023-10-06T21:58:33.9940000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:33.9940000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:33.9940000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:33.9940000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:33.9940000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6700|10000|0||119.10|89.86|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:33.9940000-07:00|8C8|Blunt Resistance Down|9.96|40021580|Comet|10FF0003|Gegehi Gehi|00|51669|69200| +261|2023-10-06T21:58:33.4860000-07:00|Change|40021583||||||||| +261|2023-10-06T21:58:33.5840000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:58:33.5840000-07:00|Change|40021580||| +261|2023-10-06T21:58:33.6780000-07:00|Change|10FF0003||| +261|2023-10-06T21:58:33.6780000-07:00|Change|40021582||||||||| +37|2023-10-06T21:58:34.0400000-07:00|10FF0008|Kokosaze Lulusaze|0001088B|53366|63151|10000|10000|0||95.20|86.59|0.00|2.51|1F00|0|0|01|090008C8|0|4115FBEA|| +35|2023-10-06T21:58:34.0400000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.0400000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.0400000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.0400000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:34.0400000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|37990000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|25005130|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9600|10000|||84.74|95.23|0.00|2.35|00010898|0|1| +21|2023-10-06T21:58:34.0400000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||89.92|91.02|0.00|2.40|58451|58451|10000|10000|||89.92|91.02|0.00|2.40|00010899|0|1| +38|2023-10-06T21:58:34.0400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:34.0400000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +37|2023-10-06T21:58:34.0830000-07:00|10FF0001|Sesuga Sapisuga|00010888|83025|90349|9600|10000|0||84.74|95.23|0.00|2.35|1300|0|0|01|0C000000|0|0|| +37|2023-10-06T21:58:34.0830000-07:00|10FF000B|Pusu Rosu|0001088C|55446|55446|8634|10000|0||102.68|90.41|0.00|-2.89|1800|0|0|01|040004B4|0|41A80000|| +26|2023-10-06T21:58:34.0830000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +39|2023-10-06T21:58:34.0830000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|7250|10000|||100.42|98.25|0.00|2.83| +35|2023-10-06T21:58:34.0830000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.0830000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.0830000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.0830000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:34.0830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|83025|90349|9600|10000|0||84.74|95.23|0.00|2.35|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:34.0830000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +37|2023-10-06T21:58:34.1270000-07:00|40021585|Zeromus|00010885|24988322||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:34.1270000-07:00|10FF0003|Gegehi Gehi|51669|51669|6900|10000|||119.10|89.86|0.00|-2.04| +35|2023-10-06T21:58:34.1270000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.1270000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.1270000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.1270000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:34.1720000-07:00|40021585|Zeromus|0001088A|24968202||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:34.1720000-07:00|10FF0008|Kokosaze Lulusaze|53997|63151|10000|10000|||95.20|86.59|0.00|2.51| +35|2023-10-06T21:58:34.1720000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.1720000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.1720000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.1720000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:33.6780000-07:00|Change|40021585||| +261|2023-10-06T21:58:33.7950000-07:00|Change|40021583||||||||| +37|2023-10-06T21:58:34.2170000-07:00|40021585|Zeromus|0001088F|24962118||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:34.2170000-07:00|10FF0007|Kehabiqo Febiqo|0001088F|90890|90890|10000|10000|0||89.77|83.94|0.00|1.93|1500|0|0|03|01000499|03|C1700000|||||||||| +37|2023-10-06T21:58:34.2170000-07:00|10FF000A|Dukaro Nezikaro|0001088E|48585|58451|10000|10000|0||89.92|91.02|0.00|2.40|1E00|0|0|02|0B0008C8|0|41160002|||||| +37|2023-10-06T21:58:34.2170000-07:00|40021585|Zeromus|00010891|24959907||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:34.2170000-07:00|10FF000A|Dukaro Nezikaro|00010891|48585|58451|10000|10000|0||89.92|91.02|0.00|2.40|1E00|0|0|01|0C0001F1|0|C1700000|| +35|2023-10-06T21:58:34.2170000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.2170000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.2170000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.2170000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:34.2620000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.2620000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.2620000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.2620000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:34.2620000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24968202|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7250|10000|||100.42|98.25|-0.02|2.78|0001089A|0|1| +37|2023-10-06T21:58:34.3070000-07:00|40021585|Zeromus|00010890|24951243||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:34.3070000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9400|10000|||109.36|88.67|0.00|-2.31| +35|2023-10-06T21:58:34.3070000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3070000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3070000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3070000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:34.3070000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|12EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24968202|40478540|10000|10000|||100.00|80.10|0.00|0.00|53997|63151|10000|10000|||95.20|86.59|0.00|2.51|0001089B|0|1| +261|2023-10-06T21:58:33.7950000-07:00|Change|10FF0006||| +35|2023-10-06T21:58:34.3510000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3510000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3510000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3510000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:34.3950000-07:00|40021585|Zeromus|00010889|24946603|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T21:58:34.3950000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +37|2023-10-06T21:58:34.3950000-07:00|40021585|Zeromus|00010898|24932370||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:34.3950000-07:00|10FF0001|Sesuga Sapisuga|00010898|83025|90349|10000|10000|0||84.74|95.23|0.00|2.35|1300|0|0|0| +35|2023-10-06T21:58:34.3950000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3950000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3950000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.3950000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +20|2023-10-06T21:58:34.3950000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|102.68|90.41|-0.02|-3.05| +261|2023-10-06T21:58:33.9080000-07:00|Change|400215A3||||||||| +261|2023-10-06T21:58:33.9080000-07:00|Change|10FF0001||| +261|2023-10-06T21:58:33.9080000-07:00|Change|40021581||||||||| +23|2023-10-06T21:58:34.4400000-07:00|10FF000B|Pusu Rosu|6503|Glare III|Cancelled| +37|2023-10-06T21:58:34.4400000-07:00|10FF0006|Wowobora Gogobora|00010892|46022|57266|9400|10000|0||109.36|88.67|0.00|-2.31|1B00|0|0|01|060008C8|0|41160833|| +35|2023-10-06T21:58:34.4400000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.4400000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.4400000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.4400000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:34.0200000-07:00|Change|40021582||||||||| +21|2023-10-06T21:58:34.4840000-07:00|400215A3|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.00|118.00|0.00|3.10|0001089C|0|0| +35|2023-10-06T21:58:34.4840000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.4840000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.4840000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.4840000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:34.5300000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.5300000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.5300000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.5300000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:34.5730000-07:00|40021585|Zeromus|0001088D|24904506||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:34.5730000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.5730000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.5730000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.5730000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:34.1390000-07:00|Change|400215A2||||||||| +261|2023-10-06T21:58:34.1390000-07:00|Change|40021580||||||||| +37|2023-10-06T21:58:34.6180000-07:00|10FF0007|Kehabiqo Febiqo|00010894|90890|90890|10000|10000|0||89.77|83.94|0.00|1.93|1500|0|0|03|01000499|03|41700000|||||||||| +37|2023-10-06T21:58:34.6180000-07:00|10FF0003|Gegehi Gehi|00010897|41008|51669|6900|10000|0||119.10|89.86|0.00|-2.04|2300|0|0|01|0A0008C8|0|4116041B|| +35|2023-10-06T21:58:34.6180000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.6180000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.6180000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.6180000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:34.6180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||89.77|83.94|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:58:34.6620000-07:00|400215A2|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.00|118.00|0.00|-2.99|0001089D|0|0| +35|2023-10-06T21:58:34.6620000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.6620000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.6620000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.6620000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:34.2370000-07:00|Change|40021581||||||||| +37|2023-10-06T21:58:34.7080000-07:00|40021585|Zeromus|00010896|24900688||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:34.7080000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7080000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7080000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7080000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:34.7080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24904506|40478540|10000|10000|||100.00|80.10|0.00|0.00|83025|90349|10000|10000|||84.80|95.26|0.00|1.05|0001089E|0|1| +38|2023-10-06T21:58:34.7080000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|8634|10000|0||102.95|90.41|0.00|2.24|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:34.7080000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|55446|| +31|2023-10-06T21:58:34.7080000-07:00|10FF0001||||| +35|2023-10-06T21:58:34.7510000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7510000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7510000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7510000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:34.7960000-07:00|40021585|Zeromus|0001089A|24900531||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:34.7960000-07:00|10FF0001|Sesuga Sapisuga|83928|90349|10000|10000|||85.22|95.31|0.00|1.04| +35|2023-10-06T21:58:34.7960000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7960000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7960000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.7960000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:34.3360000-07:00|Change|400215A1||||||||| +35|2023-10-06T21:58:34.8410000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.8410000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.8410000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.8410000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:34.8410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24900688|40478540|10000|10000|||100.00|80.10|0.00|0.00|46022|57266|9400|10000|||109.36|88.67|0.00|-1.90|0001089F|0|1| +38|2023-10-06T21:58:34.8410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|83928|90349|10000|10000|0||85.22|95.31|0.00|1.04|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:34.8410000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|| +261|2023-10-06T21:58:34.3360000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:58:34.3360000-07:00|Change|40021580||||||||| +21|2023-10-06T21:58:34.8850000-07:00|400215A1|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000108A0|0|0| +35|2023-10-06T21:58:34.8850000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.8850000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.8850000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.8850000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:34.8850000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2DB30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24900688|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||89.77|83.94|0.00|1.93|000108A1|0|1| +21|2023-10-06T21:58:34.8850000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|3E250000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|24900688|40478540|10000|10000|||100.00|80.10|0.00|0.00|48585|58451|10000|10000|||89.92|91.02|0.00|2.40|000108A2|0|1| +35|2023-10-06T21:58:34.9300000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.9300000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.9300000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.9300000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:34.9750000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:34.9750000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:34.9750000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:34.9750000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:34.9750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||89.77|83.94|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:34.9750000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|| +261|2023-10-06T21:58:34.5220000-07:00|Change|400215A0||||||||| +261|2023-10-06T21:58:34.5220000-07:00|Change|10FF0004||||||| +37|2023-10-06T21:58:35.0210000-07:00|10FF000A|Dukaro Nezikaro|00010899|48585|58451|10000|10000|0||89.92|91.02|0.00|2.40|1E00|0|0|01|0C0001F1|0|41700000|| +35|2023-10-06T21:58:35.0210000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.0210000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.0210000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.0210000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.0210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48585|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:58:35.0640000-07:00|400215A0|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.00|118.00|0.00|2.41|000108A3|0|0| +24|2023-10-06T21:58:35.0640000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|F4B|53997|63151|10000|10000|||95.20|86.59|0.00|1.36|40021583|Comet|0|69200|69200|10000|10000|||95.20|86.59|0.00|3.10| +24|2023-10-06T21:58:35.0640000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|AA5|57078|57078|7250|10000|||100.42|98.25|0.00|2.75|E0000000||0||||||||||| +35|2023-10-06T21:58:35.0650000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.0650000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.0650000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.0650000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:35.0650000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|756003|EAF30000|4|261B8000|0|0|0|0|0|0|0|0|0|0|0|0|24900531|40478540|10000|10000|||100.00|80.10|0.00|0.00|83928|90349|10000|10000|||87.11|94.91|0.00|0.91|000108A4|0|1| +38|2023-10-06T21:58:35.0650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|57912|63151|10000|10000|0||95.20|86.59|0.00|1.36|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:35.0650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|83928|90349|9000|10000|0||87.11|94.91|0.00|0.91|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:35.0650000-07:00|558|Requiescat|26.97|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +30|2023-10-06T21:58:35.0650000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:58:35.0650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7250|10000|0||100.42|98.25|0.00|2.75|0|0|0||||||||||||||||||||||||||||||||||||||||||| +31|2023-10-06T21:58:35.0650000-07:00|10FF0001||||| +37|2023-10-06T21:58:35.1090000-07:00|40021585|Zeromus|0001089B|24895684||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:35.1090000-07:00|4002179B|Demi-Phoenix|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21| +35|2023-10-06T21:58:35.1090000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1090000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1090000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1090000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.1090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|57912|63151|10000|10000|0||95.20|86.59|0.00|1.36|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.1090000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|| +24|2023-10-06T21:58:35.1530000-07:00|10FF0006|Wowobora Gogobora|HoT|0|192D|46022|57266|9400|10000|||109.36|88.67|0.00|-0.65|E0000000||0||||||||||| +35|2023-10-06T21:58:35.1530000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1530000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1530000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1530000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:35.1530000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|21F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24895684|40478540|10000|10000|||100.00|80.10|0.00|0.00|57912|63151|10000|10000|||95.20|86.59|0.00|0.97|000108A5|0|1| +38|2023-10-06T21:58:35.1530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|57912|63151|10000|10000|0||95.20|86.59|0.00|0.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.1530000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +38|2023-10-06T21:58:35.1530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52467|57266|9400|10000|0||109.36|88.67|0.00|-0.65|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:35.1990000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1990000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1990000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.1990000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:34.7540000-07:00|Change|10FF0003||| +37|2023-10-06T21:58:35.2430000-07:00|40021585|Zeromus|0001089E|24893548||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:35.2430000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.2430000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.2430000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.2430000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.2430000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52467|57266|9400|10000|0||109.36|88.67|0.00|-0.53|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.2430000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|| +35|2023-10-06T21:58:35.2870000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.2870000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.2870000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.2870000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:35.2870000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|24C00000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|24895684|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7250|10000|||100.43|98.25|0.00|2.01|000108A6|0|1| +39|2023-10-06T21:58:35.3320000-07:00|10FF000A|Dukaro Nezikaro|49169|58451|10000|10000|||89.92|91.02|0.00|2.40| +35|2023-10-06T21:58:35.3320000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.3320000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.3320000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.3320000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.3320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|57912|63151|10000|10000|0||95.20|86.59|0.00|2.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.3320000-07:00|9D6|Bind|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +38|2023-10-06T21:58:35.3320000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52467|57266|9400|10000|0||109.36|88.67|0.00|-0.53|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.3320000-07:00|9D6|Bind|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:58:35.3320000-07:00|10FF0003|Gegehi Gehi|005A5A23|41008|51669|6900|10000|0||119.10|89.86|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.3320000-07:00|9D6|Bind|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:58:35.3320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|49169|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.3320000-07:00|9D6|Bind|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +261|2023-10-06T21:58:34.9750000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:35.3770000-07:00|40021585|Zeromus|0001089F|24893392||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:35.3770000-07:00|10FF0003|Gegehi Gehi|HoT|0|179F|41008|51669|6900|10000|||119.10|89.86|0.00|-2.04|4002164C||0||||||||||| +35|2023-10-06T21:58:35.3770000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.3770000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.3770000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.3770000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.3770000-07:00|10FF0003|Gegehi Gehi|005A5A23|47055|51669|7450|10000|0||119.10|89.86|0.00|-2.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:35.3770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|49169|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.3770000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|58451|| +37|2023-10-06T21:58:35.4210000-07:00|40021585|Zeromus|000108A2|24877483||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:35.4210000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|EEF|49169|58451|10000|10000|||89.92|91.02|0.00|2.40|10FF000A|Dukaro Nezikaro|0|49169|58451|10000|10000|||89.92|91.02|0.00|2.40| +35|2023-10-06T21:58:35.4210000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.4210000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.4210000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.4210000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.4210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52992|58451|10000|10000|0||89.92|91.02|0.00|2.40|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:35.4660000-07:00|40021585|Zeromus|00010895|24850333||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:35.4660000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||89.81|83.98|0.00|0.95| +24|2023-10-06T21:58:35.4660000-07:00|10FF000B|Pusu Rosu|HoT|0|1305|55446|55446|8634|10000|||104.41|90.52|0.00|1.50|E0000000||0||||||||||| +261|2023-10-06T21:58:34.9750000-07:00|Change|10FF000B||||||||||| +35|2023-10-06T21:58:35.4660000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.4660000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.4660000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.4660000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.4660000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|9184|10000|0||104.41|90.52|0.00|1.50|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:35.5100000-07:00|40021585|Zeromus|000108A1|24838634||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:35.5100000-07:00|4002179B|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|150003|12890000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|24893392|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21|000108A7|0|1| +35|2023-10-06T21:58:35.5100000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5100000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5100000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5100000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.5100000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6850|10000|0||100.44|98.25|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.5100000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|| +24|2023-10-06T21:58:35.5550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A28|90890|90890|10000|10000|||90.14|84.50|0.00|0.83|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||90.14|84.50|0.00|0.83| +35|2023-10-06T21:58:35.5550000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5550000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5550000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5550000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:35.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||90.14|84.50|0.00|0.83|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:35.5990000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5990000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5990000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.5990000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:35.2010000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:58:35.6440000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|AA8|83928|90349|9000|10000|||89.40|95.47|0.00|0.82|10FF0001|Sesuga Sapisuga|0|83928|90349|9000|10000|||89.40|95.47|0.00|0.82| +35|2023-10-06T21:58:35.6440000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.6440000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.6440000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.6440000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:35.6440000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7C100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24838634|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||90.14|84.50|0.00|0.83|000108A8|0|1| +38|2023-10-06T21:58:35.6440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||90.14|84.50|0.00|0.83|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:35.6440000-07:00|499|Inner Release|13.93|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|90890|90890| +38|2023-10-06T21:58:35.6440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|86656|90349|9000|10000|0||89.40|95.47|0.00|0.82|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:35.6440000-07:00|10FF0003|Gegehi Gehi|005A5A23|47055|51669|7450|10000|0||119.10|89.86|0.00|-1.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:35.6440000-07:00|13D|Fey Illumination|0.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51669|| +261|2023-10-06T21:58:35.2960000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:58:35.6880000-07:00|40021585|Zeromus|000108A4|24778487||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:35.6880000-07:00|10FF0001|Sesuga Sapisuga|000108A4|90349||||||89.60|95.64|0.00|0.78| +35|2023-10-06T21:58:35.6880000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.6880000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.6880000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.6880000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:35.7330000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.7330000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.7330000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.7330000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:35.7780000-07:00|40021585|Zeromus|000108A5|24769791||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:35.7780000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FE|||| +35|2023-10-06T21:58:35.7780000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.7780000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.7780000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:35.8230000-07:00|40021585|Zeromus|00010893|24734298||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:35.8230000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:35.8230000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.8230000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.8230000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:35.8230000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|14680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24778487|40478540|10000|10000|||100.00|80.10|0.00|0.00|57912|63151|10000|10000|||95.20|86.59|0.00|0.90|000108A9|0|1| +38|2023-10-06T21:58:35.8230000-07:00|4002179A|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.49|103.07|0.00|-3.08|0|0|0||||||| +30|2023-10-06T21:58:35.8230000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|4002179A|Automaton Queen|01|59967|40478540| +35|2023-10-06T21:58:35.8670000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:35.8670000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.8670000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.8670000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:35.8670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24734298|40478540|10000|10000|||100.00|80.10|0.00|0.00|52992|58451|10000|10000|||89.90|90.98|0.00|-3.00|000108AA|0|1| +35|2023-10-06T21:58:35.9110000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:35.9110000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.9110000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.9110000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:35.9560000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:35.9560000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:35.9560000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:35.9560000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:35.5860000-07:00|Change|10FF0004||||||||||| +35|2023-10-06T21:58:36.0020000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.0020000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.0020000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:36.0020000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:36.0020000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|55030000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|24734298|40478540|10000|10000|||100.00|80.10|0.00|0.00|52467|57266|9400|10000|||108.41|90.75|0.00|-0.42|000108AB|0|1| +35|2023-10-06T21:58:36.0450000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.0450000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.0450000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:36.0450000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.0900000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.0900000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.0900000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:36.0900000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.1340000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.1340000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.1340000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:36.1340000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.1780000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.1780000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.1780000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:36.1780000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:36.2220000-07:00|40021585|Zeromus|000108A6|24724890||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:36.2230000-07:00|10FF000B|Pusu Rosu|55446|55446|9465|10000|||107.78|92.91|0.00|1.29| +35|2023-10-06T21:58:36.2230000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.2230000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.2230000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:36.2230000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:35.7050000-07:00|Change|40021585||| +261|2023-10-06T21:58:35.8210000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T21:58:36.2680000-07:00|40021585|Zeromus|000108A8|24693130||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:36.2680000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.2680000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.2680000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FE|||| +35|2023-10-06T21:58:36.2680000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.3130000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.3130000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.3130000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.3130000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:36.3130000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750003|3EFF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|9000|10000|||90.06|95.35|0.00|0.75|24724890|40478540|10000|10000|||100.00|80.10|0.00|0.00|000108AC|0|1| +35|2023-10-06T21:58:36.3570000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.3570000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.3570000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.3570000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:36.3570000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19710003|2D0E0000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|24724890|40478540|10000|10000|||100.00|80.10|0.00|0.00|52992|58451|10000|10000|||88.56|88.35|0.00|-2.71|000108AD|0|1| +38|2023-10-06T21:58:36.3570000-07:00|40021585|Zeromus|005A5A00|24693130|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:36.3570000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|58451| +26|2023-10-06T21:58:36.3570000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +38|2023-10-06T21:58:36.3570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52992|58451|10000|10000|0||88.56|88.35|0.00|-2.71|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:36.3570000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +37|2023-10-06T21:58:36.4010000-07:00|40021585|Zeromus|000108AA|24690875|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +35|2023-10-06T21:58:36.4010000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.4010000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.4010000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.4010000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:36.4460000-07:00|40021585|Zeromus|000108A9|24685651|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +35|2023-10-06T21:58:36.4460000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.4460000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.4460000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.4460000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:36.4460000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|6850|10000|||102.69|98.42|0.00|3.11|57078|57078|6850|10000|||102.69|98.42|0.00|3.11|000108AE|0|1| +35|2023-10-06T21:58:36.4900000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.4900000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.4900000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.4900000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:36.0590000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:58:36.5350000-07:00|40021585|Zeromus|000108A7|24680906|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +35|2023-10-06T21:58:36.5350000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.5350000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.5350000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.5350000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:36.5810000-07:00|10FF0004|Buhojaqe Zijaqe|000108AE|57078|57078|6850|10000|0||103.34|98.31|0.00|1.77|1C00|0|0|01|06000032|1E|41200000|| +26|2023-10-06T21:58:36.5810000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|57078|57078| +35|2023-10-06T21:58:36.5810000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.5810000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.5810000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.5810000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.6240000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.6240000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.6240000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.6240000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:36.6240000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AB40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24680906|40478540|10000|10000|||100.00|80.10|0.00|0.00|57912|63151|10000|10000|||96.60|89.40|0.00|0.97|000108AF|0|1| +21|2023-10-06T21:58:36.6240000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24680906|40478540|10000|10000|||100.00|80.10|0.00|0.00|47055|51669|7450|10000|||117.15|94.46|0.00|-0.35|000108B0|0|1| +261|2023-10-06T21:58:36.1790000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:58:36.1790000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:58:36.6690000-07:00|40021585|Zeromus|DoT|0|217C|24680906|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|9465|10000|||107.80|92.97|-0.02|1.49| +35|2023-10-06T21:58:36.6690000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.6690000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.6690000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.6690000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:36.6690000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|724003|71A70000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|24680906|40478540|10000|10000|||100.00|80.10|0.00|0.00|57912|63151|10000|10000|||96.60|89.40|0.00|0.97|000108B1|0|1| +38|2023-10-06T21:58:36.6690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52467|57266|9100|10000|0||107.79|92.70|0.00|-0.69|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:36.6690000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|57266|57266| +21|2023-10-06T21:58:36.6690000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|750003|20420000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|24680906|40478540|10000|10000|||100.00|80.10|0.00|0.00|52467|57266|9100|10000|||107.79|92.70|0.00|-0.69|000108B2|0|1| +36|2023-10-06T21:58:36.6690000-07:00|3EE4|3| +38|2023-10-06T21:58:36.6690000-07:00|40021585|Zeromus|005A5A00|24672334|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T21:58:36.6690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52467|57266|9100|10000|0||107.79|92.70|0.00|-0.69|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:36.6690000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +35|2023-10-06T21:58:36.7130000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.7130000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.7130000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.7130000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +39|2023-10-06T21:58:36.7580000-07:00|4002179A|Automaton Queen|59967|59967|10000|10000|||101.49|103.07|0.00|-3.08| +35|2023-10-06T21:58:36.7580000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.7580000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.7580000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.7580000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.8010000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.8010000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FE|||| +35|2023-10-06T21:58:36.8010000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.8010000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:36.3690000-07:00|Change|10FF000A||||||||| +35|2023-10-06T21:58:36.8460000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.8460000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:36.8460000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.8460000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.8920000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.8920000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:36.8920000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.8920000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.9350000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.9350000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:36.9350000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.9350000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:36.9800000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:36.9800000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:36.9800000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:36.9800000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:36.9800000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24672334|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9000|10000|||90.32|95.65|0.00|0.73|000108B3|0|1| +31|2023-10-06T21:58:36.9800000-07:00|10FF0001||||| +35|2023-10-06T21:58:37.0250000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.0250000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.0250000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.0250000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:36.5530000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:58:37.0690000-07:00|40021585|Zeromus|000108AB|24650571|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +37|2023-10-06T21:58:37.0690000-07:00|10FF0006|Wowobora Gogobora|000108AB|52467|57266|9100|10000|0||105.30|93.40|0.00|-2.36|1B00|0|0|01|05000A8D|0|C2700000|| +35|2023-10-06T21:58:37.0690000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.0690000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.0690000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.0690000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:37.0690000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|E500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24672334|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||94.57|90.53|0.00|0.59|000108B4|0|1| +37|2023-10-06T21:58:37.1150000-07:00|10FF0001|Sesuga Sapisuga|000108AC|74222||||||90.32|95.65|0.00|0.73| +37|2023-10-06T21:58:37.1150000-07:00|40021585|Zeromus|000108AC|24650571|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +39|2023-10-06T21:58:37.1150000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|7050|10000|||105.65|97.90|0.00|1.74| +39|2023-10-06T21:58:37.1150000-07:00|10FF0003|Gegehi Gehi|47571|51669|7650|10000|||116.56|97.16|0.00|-0.24| +35|2023-10-06T21:58:37.1150000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.1150000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.1150000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.1150000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:36.6720000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:58:37.1580000-07:00|40021585|Zeromus|000108B0|24650542|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +37|2023-10-06T21:58:37.1580000-07:00|40021585|Zeromus|000108AD|24639008|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|41700000|| +39|2023-10-06T21:58:37.1580000-07:00|10FF0008|Kokosaze Lulusaze|58543|63151|10000|10000|||97.73|92.31|0.00|1.44| +35|2023-10-06T21:58:37.1580000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.1580000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.1580000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.1580000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:37.1580000-07:00|40021585|Zeromus|005A5A00|24639008|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +35|2023-10-06T21:58:37.2040000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.2040000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.2040000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.2040000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:37.2480000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.2480000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.2480000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.2480000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +39|2023-10-06T21:58:37.2920000-07:00|10FF0006|Wowobora Gogobora|53039|57266|9300|10000|||103.99|93.59|0.00|-1.66| +35|2023-10-06T21:58:37.2920000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.2920000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.2920000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.2920000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:37.3370000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.3370000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.3370000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.3370000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:37.3370000-07:00|4002179B|Demi-Phoenix|005A5A00|54388|54388|10000|10000|0||111.92|88.91|0.00|-2.21|0|0|0|||||||||| +26|2023-10-06T21:58:37.3370000-07:00|30|Well Fed|765.29|10FF0006|Wowobora Gogobora|4002179B|Demi-Phoenix|2964|54388|57266| +26|2023-10-06T21:58:37.3370000-07:00|441|HP Penalty|9999.00|E0000000||4002179B|Demi-Phoenix|00|54388|| +26|2023-10-06T21:58:37.3370000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|4002179B|Demi-Phoenix|01|54388|40478540| +21|2023-10-06T21:58:37.3370000-07:00|10FF0006|Wowobora Gogobora|4084|Enkindle Phoenix|40021585|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|24639008|40478540|10000|10000|||100.00|80.10|0.00|0.00|52467|57266|9100|10000|||103.99|93.59|0.00|-1.66|000108B5|0|1| +21|2023-10-06T21:58:37.3370000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52992|58451|10000|10000|||87.03|84.88|0.00|1.72|52992|58451|10000|10000|||87.03|84.88|0.00|1.72|000108B6|0|1| +38|2023-10-06T21:58:37.3370000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52992|58451|10000|10000|0||87.03|84.88|0.00|1.72|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:37.3370000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|58451|58451| +37|2023-10-06T21:58:37.3810000-07:00|40021585|Zeromus|000108AF|24636268||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:37.3810000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.3810000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.3810000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.3810000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:37.3810000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24639008|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7050|10000|||107.95|97.95|0.00|1.62|000108B7|0|1| +21|2023-10-06T21:58:37.4250000-07:00|4002179B|Demi-Phoenix|4086|Revelation|40021585|Zeromus|154003|C8220000|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|24639008|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21|000108B8|0|1| +35|2023-10-06T21:58:37.4250000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.4250000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.4250000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.4250000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:37.4250000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|18DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24639008|40478540|10000|10000|||100.00|80.10|0.00|0.00|58543|63151|10000|10000|||98.49|94.48|0.00|0.62|000108B9|0|1| +261|2023-10-06T21:58:37.0110000-07:00|Change|10FF0003||||||||||| +35|2023-10-06T21:58:37.4700000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.4700000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.4700000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.4700000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:37.5150000-07:00|40021585|Zeromus|000108B3|24634041||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:37.5150000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.5150000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.5150000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.5150000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:37.1250000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:58:37.5600000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.5600000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.5600000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.5600000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:37.5600000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|756003|B8980000|4|26B88000|0|0|0|0|0|0|0|0|0|0|0|0|24634041|40478540|10000|10000|||100.00|80.10|0.00|0.00|74222|90349|9000|10000|||90.32|95.65|0.00|2.58|000108BA|0|1| +38|2023-10-06T21:58:37.5600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|74222|90349|8000|10000|0||90.32|95.65|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:37.5600000-07:00|558|Requiescat|24.47|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +31|2023-10-06T21:58:37.5600000-07:00|10FF0001||||| +37|2023-10-06T21:58:37.6040000-07:00|40021585|Zeromus|000108B4|24630377||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:37.6040000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.6040000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.6040000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.6040000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:37.2190000-07:00|Change|10FF0001||||||||| +35|2023-10-06T21:58:37.6480000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.6480000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.6480000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.6480000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:37.6930000-07:00|40021585|Zeromus|000108B1|24601282||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:37.6930000-07:00|40021585|Zeromus|000108B2|24593024||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:37.6930000-07:00|10FF0006|Wowobora Gogobora|000108B2|53039|57266|9300|10000|0||102.57|94.50|0.00|-2.74|1B00|0|0|01|05000A8D|0|42700000|| +35|2023-10-06T21:58:37.6930000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.6930000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.6930000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.6930000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:37.6930000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|756003|4CCB0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|24630377|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|7050|10000|||110.42|98.08|0.00|1.53|000108BB|0|1| +38|2023-10-06T21:58:37.6930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53039|57266|9300|10000|0||102.57|94.50|0.00|-2.74|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:37.7370000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.7370000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.7370000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.7370000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:37.7820000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.7820000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.7820000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.7820000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:37.3180000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:58:37.8260000-07:00|10FF0001|Sesuga Sapisuga|75125|90349|8200|10000|||90.32|95.65|0.00|2.58| +35|2023-10-06T21:58:37.8260000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.8260000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.8260000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.8260000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:37.8700000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.8700000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.8700000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.8700000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:37.9150000-07:00|40021585|Zeromus|000108B7|24592871||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:37.9150000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.9150000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.9150000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.9150000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:37.9150000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52992|58451|10000|10000|||87.21|83.94|-0.02|1.24|52992|58451|10000|10000|||87.21|83.94|-0.02|1.24|000108BC|0|1| +38|2023-10-06T21:58:37.9150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52992|58451|10000|10000|0||87.21|83.94|-0.02|1.24|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:37.9150000-07:00|1F0|Mudra|5.42|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|58451|58451| +35|2023-10-06T21:58:37.9590000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:37.9590000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:37.9590000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:37.9590000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:37.6960000-07:00|Change|10FF0008||||||||| +35|2023-10-06T21:58:38.0040000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.0040000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.0040000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.0040000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:38.0040000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24592871|40478540|10000|10000|||100.00|80.10|0.00|0.00|53039|57266|9300|10000|||102.19|95.40|0.00|-2.01|000108BD|0|1| +24|2023-10-06T21:58:38.0490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A62|58543|63151|10000|10000|||101.20|95.89|-0.01|0.40|40021583|Comet|0|69200|69200|10000|10000|||95.20|86.59|0.00|3.10| +24|2023-10-06T21:58:38.0490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|E6E|57078|57078|6650|10000|||114.64|96.67|-0.01|2.07|E0000000||0||||||||||| +35|2023-10-06T21:58:38.0490000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.0490000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.0490000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.0490000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:38.0490000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|14A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24592871|40478540|10000|10000|||100.00|80.10|0.00|0.00|58543|63151|10000|10000|||101.20|95.89|-0.01|0.40|000108BE|0|1| +21|2023-10-06T21:58:38.0490000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|C460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24592871|40478540|10000|10000|||100.00|80.10|0.00|0.00|52992|58451|10000|10000|||87.21|83.94|0.00|1.24|000108BF|0|1| +38|2023-10-06T21:58:38.0490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61201|63151|10000|10000|0||101.20|95.89|-0.01|0.40|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:38.0490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6650|10000|0||114.64|96.67|-0.01|2.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:38.0930000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.0930000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.0930000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.0930000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:38.0930000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|9F560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24592871|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||95.45|91.50|0.00|0.54|000108C0|0|1| +38|2023-10-06T21:58:38.0930000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||95.45|91.50|0.00|0.54|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:38.0930000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +39|2023-10-06T21:58:38.1370000-07:00|4002179B|Demi-Phoenix|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21| +35|2023-10-06T21:58:38.1370000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.1370000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.1370000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.1370000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:38.1820000-07:00|40021585|Zeromus|000108BA|24545615||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:38.1820000-07:00|10FF0001|Sesuga Sapisuga|000108BA|85037||||||90.32|95.65|0.00|2.58| +24|2023-10-06T21:58:38.1820000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1285|53039|57266|9300|10000|||102.19|95.40|0.00|-2.01|E0000000||0||||||||||| +35|2023-10-06T21:58:38.1820000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.1820000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.1820000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.1820000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:38.1820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9300|10000|0||102.19|95.40|0.00|-2.01|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:37.8140000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:58:38.2270000-07:00|40021585|Zeromus|000108B9|24539253||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:38.2270000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.2270000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.2270000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.2270000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:38.2720000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.2720000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.2720000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.2720000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:38.3160000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.3160000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.3160000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.3160000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +39|2023-10-06T21:58:38.3610000-07:00|10FF000A|Dukaro Nezikaro|53576|58451|10000|10000|||87.21|83.94|0.00|1.24| +24|2023-10-06T21:58:38.3610000-07:00|10FF0003|Gegehi Gehi|HoT|0|16F6|47571|51669|7650|10000|||113.98|104.53|0.00|-0.31|40021580|Comet|0|69200|69200|10000|10000|||119.10|89.86|0.00|2.41| +35|2023-10-06T21:58:38.3610000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.3610000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.3610000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.3610000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:38.3610000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|12D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24539253|40478540|10000|10000|||100.00|80.10|0.00|0.00|85037|90349|8200|10000|||90.32|95.65|0.00|2.58|000108C1|0|1| +38|2023-10-06T21:58:38.3620000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8200|10000|0||113.98|104.53|0.00|-0.31|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:38.4060000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.4060000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.4060000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.4060000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:38.4060000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|250003|D9E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24539253|40478540|10000|10000|||100.00|80.10|0.00|0.00|52992|58451|10000|10000|||87.21|83.94|0.00|1.24|000108C2|0|1| +38|2023-10-06T21:58:38.4060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53576|58451|10000|10000|0||87.21|83.94|0.00|1.24|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:38.4060000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|58451|58451| +30|2023-10-06T21:58:38.4060000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +37|2023-10-06T21:58:38.4510000-07:00|40021585|Zeromus|000108B8|24488019||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:38.4510000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||95.47|91.51|0.00|2.77| +24|2023-10-06T21:58:38.4510000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A22|53576|58451|10000|10000|||87.21|83.94|0.00|1.86|40021582|Comet|0|69200|69200|10000|10000|||89.92|91.02|0.00|-2.99| +35|2023-10-06T21:58:38.4510000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.4510000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.4510000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.4510000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:38.4510000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|154003|6E8B0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|24539253|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9300|10000|||102.13|96.18|0.00|-0.37|000108C3|0|1| +38|2023-10-06T21:58:38.4510000-07:00|4002179B|Demi-Phoenix|005A5A00|54388|54388|10000|10000|0||111.92|88.91|0.00|-2.21|0|0|0||||||| +30|2023-10-06T21:58:38.4510000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|4002179B|Demi-Phoenix|01|54388|40478540| +38|2023-10-06T21:58:38.4510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56170|58451|10000|10000|0||87.21|83.94|0.00|1.86|0|0|0||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:58:38.4940000-07:00|10FF000B|Pusu Rosu|HoT|0|1362|55446|55446|9465|10000|||107.46|92.76|-0.02|-1.97|E0000000||0||||||||||| +35|2023-10-06T21:58:38.4940000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.4940000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.4940000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.4940000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:38.4940000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|10000|10000|0||107.46|92.76|-0.02|-1.97|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:38.0480000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T21:58:38.5390000-07:00|40021585|Zeromus|000108BD|24487787||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:38.5390000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|F2D|90890|90890|10000|10000|||95.47|91.51|0.00|2.77|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||95.47|91.51|0.00|2.77| +35|2023-10-06T21:58:38.5390000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.5390000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.5390000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.5390000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:38.5390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||95.47|91.51|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:38.5840000-07:00|40021585|Zeromus|000108BF|24484645||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:38.5840000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.5840000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.5840000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.5840000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:38.1580000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:38.6270000-07:00|40021585|Zeromus|000108BB|24464986||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:38.6270000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.6270000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.6270000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.6270000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:38.1580000-07:00|Change|10FF0001||| +37|2023-10-06T21:58:38.6710000-07:00|40021585|Zeromus|000108BE|24459706||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:38.6710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|ABF|85037|90349|8200|10000|||90.32|95.65|0.00|2.58|10FF0001|Sesuga Sapisuga|0|85037|90349|8200|10000|||90.32|95.65|0.00|2.58| +35|2023-10-06T21:58:38.6710000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.6710000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.6710000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.6710000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:38.6710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87788|90349|8200|10000|0||90.32|95.65|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:38.7150000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.7150000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.7150000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.7150000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:38.7600000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.7600000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.7600000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.7600000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +261|2023-10-06T21:58:38.3500000-07:00|Change|10FF0004||||||||| +35|2023-10-06T21:58:38.8060000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.8060000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.8060000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.8060000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:38.8500000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.8500000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.8500000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.8500000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:38.8940000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.8940000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.8940000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.8940000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +20|2023-10-06T21:58:38.8940000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|114.45|107.31|0.00|-0.29| +261|2023-10-06T21:58:38.4430000-07:00|Change|4002179A||||||||| +37|2023-10-06T21:58:38.9400000-07:00|40021585|Zeromus|000108C1|24454881||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:38.9400000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.9400000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.9400000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.9400000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:38.9830000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:38.9830000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:38.9830000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:38.9830000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +37|2023-10-06T21:58:39.0280000-07:00|40021585|Zeromus|000108C2|24399097||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:39.0280000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.0280000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.0280000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.0280000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:39.0730000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.0730000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.0730000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.0730000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +35|2023-10-06T21:58:39.1190000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.1190000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.1190000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.1190000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +38|2023-10-06T21:58:39.1190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56170|58451|10000|10000|0||87.21|83.94|0.00|1.86|0|0|0||||||||||||||||||||||||||||||||||||| +35|2023-10-06T21:58:39.1630000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.1630000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.1630000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.1630000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +39|2023-10-06T21:58:39.2080000-07:00|10FF000B|Pusu Rosu|55446|55446|10000|10000|||107.47|92.67|0.00|3.10| +35|2023-10-06T21:58:39.2080000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.2080000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.2080000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.2080000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:39.2080000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|37ED0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|24399097|40478540|10000|10000|||100.00|80.10|0.00|0.00|61201|63151|10000|10000|||102.43|98.37|0.00|0.95|000108C4|0|1| +37|2023-10-06T21:58:39.2530000-07:00|40021585|Zeromus|000108C0|24358307||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:39.2530000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.2530000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.2530000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.2530000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FD|||| +21|2023-10-06T21:58:39.2530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|A640000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24399097|40478540|10000|10000|||100.00|80.10|0.00|0.00|87788|90349|8200|10000|||90.32|95.65|0.00|2.58|000108C5|0|1| +31|2023-10-06T21:58:39.2530000-07:00|10FF0001||||| +35|2023-10-06T21:58:39.2960000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.2960000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.2960000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.2960000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +21|2023-10-06T21:58:39.2960000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24399097|40478540|10000|10000|||100.00|80.10|0.00|0.00|61201|63151|10000|10000|||102.43|98.37|0.00|-3.01|000108C6|0|1| +261|2023-10-06T21:58:38.8840000-07:00|Change|10FF0003||||||||||||||||||||||| +35|2023-10-06T21:58:39.3410000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.3410000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.3410000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.3410000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +38|2023-10-06T21:58:39.3410000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|10000|10000|0||107.47|92.67|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:39.3410000-07:00|9D6|Bind|3.00|E0000000||10FF000B|Pusu Rosu|00|55446|| +38|2023-10-06T21:58:39.3410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||95.47|91.51|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:39.3410000-07:00|9D6|Bind|3.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:58:39.3410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87788|90349|8200|10000|0||90.32|95.65|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:39.3410000-07:00|9D6|Bind|3.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:58:39.3410000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6650|10000|0||116.23|94.56|-0.02|2.33|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:39.3410000-07:00|9D6|Bind|3.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +21|2023-10-06T21:58:39.3410000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750003|3D870000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|87788|90349|8200|10000|||90.32|95.65|0.00|2.58|24358307|40478540|10000|10000|||100.00|80.10|0.00|0.00|000108C7|0|1| +35|2023-10-06T21:58:39.3860000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.3860000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.3860000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.3860000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:39.4300000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.4300000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.4300000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.4300000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +21|2023-10-06T21:58:39.4760000-07:00|4002179B|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|150003|12BB0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|24358307|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21|000108C8|0|1| +35|2023-10-06T21:58:39.4760000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.4760000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.4760000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.4760000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +37|2023-10-06T21:58:39.5190000-07:00|40021585|Zeromus|000108C3|24330008||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:39.5190000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.5190000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.5190000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.5190000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:39.5640000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.5640000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.5640000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.5640000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:39.6090000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.6090000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.6090000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.6090000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +24|2023-10-06T21:58:39.6540000-07:00|40021585|Zeromus|DoT|0|1A5F|24330008|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|55446|55446|10000|10000|||107.47|92.67|0.00|3.10| +35|2023-10-06T21:58:39.6540000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.6540000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.6540000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.6540000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +36|2023-10-06T21:58:39.6540000-07:00|3FC0|3| +38|2023-10-06T21:58:39.6540000-07:00|40021585|Zeromus|005A5A00|24323257|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:39.6540000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +35|2023-10-06T21:58:39.6980000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.6980000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.6980000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.6980000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:39.7430000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.7430000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.7430000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.7430000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +37|2023-10-06T21:58:39.7870000-07:00|40021585|Zeromus|000108C5|24320597||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:39.7870000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.7870000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.7870000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.7870000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:39.8310000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.8310000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.8310000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.8310000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:39.8760000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.8760000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.8760000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.8760000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:39.9210000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.9210000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.9210000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.9210000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +38|2023-10-06T21:58:39.9210000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|10000|10000|0||107.47|92.67|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:39.9210000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF000B|Pusu Rosu|00|55446|| +35|2023-10-06T21:58:39.9650000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:39.9650000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:39.9650000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:39.9650000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +37|2023-10-06T21:58:40.0100000-07:00|40021585|Zeromus|000108C4|24306280||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:40.0100000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:40.0100000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.0100000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.0100000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +20|2023-10-06T21:58:40.0100000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|107.47|92.67|0.00|3.10| +261|2023-10-06T21:58:39.4950000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:58:40.0550000-07:00|40021585|Zeromus|000108C6|24304024||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:40.0550000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:40.0550000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.0550000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.0550000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +21|2023-10-06T21:58:40.0550000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|750003|64D40000|4|258E8000|0|0|0|0|0|0|0|0|0|0|0|0|24306280|40478540|10000|10000|||100.00|80.10|0.00|0.00|87788|90349|8200|10000|||90.32|95.65|0.00|2.58|000108C9|0|1| +21|2023-10-06T21:58:40.0550000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56170|58451|10000|10000|||87.21|83.94|0.00|1.86|56170|58451|10000|10000|||87.21|83.94|0.00|1.86|000108CA|0|1| +38|2023-10-06T21:58:40.0550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9000|10000|0||102.13|96.51|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:40.0550000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:58:40.0550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87788|90349|7200|10000|0||90.32|95.65|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:40.0550000-07:00|558|Requiescat|21.97|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +38|2023-10-06T21:58:40.0550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56170|58451|10000|10000|0||87.21|83.94|0.00|1.86|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:40.0550000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +31|2023-10-06T21:58:40.0550000-07:00|10FF0001||||| +39|2023-10-06T21:58:40.0990000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6850|10000|||116.98|93.39|0.00|3.04| +35|2023-10-06T21:58:40.0990000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:40.0990000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.0990000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.0990000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +37|2023-10-06T21:58:40.1430000-07:00|10FF0001|Sesuga Sapisuga|000108C7|72037||||||90.32|95.65|0.00|2.58| +39|2023-10-06T21:58:40.1430000-07:00|10FF0008|Kokosaze Lulusaze|61832|63151|10000|10000|||102.43|98.37|0.00|-3.01| +39|2023-10-06T21:58:40.1430000-07:00|10FF0003|Gegehi Gehi|51669|51669|8400|10000|||114.70|107.84|0.00|-2.65| +35|2023-10-06T21:58:40.1430000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:40.1430000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.1430000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.1430000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:40.1880000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:40.1880000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.1880000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.1880000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +38|2023-10-06T21:58:40.1880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|72037|90349|7200|10000|0||90.32|95.65|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:40.1880000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|90349|| +261|2023-10-06T21:58:39.8360000-07:00|Change|10FF0001||| +261|2023-10-06T21:58:39.8360000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:58:39.9560000-07:00|Change|10FF0003||||||||||||| +35|2023-10-06T21:58:40.2330000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:40.2330000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.2330000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.2330000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +261|2023-10-06T21:58:39.9560000-07:00|Change|4002157F||||||||| +39|2023-10-06T21:58:40.2780000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9200|10000|||102.13|96.51|0.00|-3.01| +35|2023-10-06T21:58:40.2780000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:40.2780000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.2780000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.2780000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:40.3230000-07:00|4002157F|Comet|10FF000B|Pusu Rosu|0000|0000|00FD|||| +35|2023-10-06T21:58:40.3230000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.3230000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.3230000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +21|2023-10-06T21:58:40.3230000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|450003|2E150000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|24304024|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|8400|10000|||114.70|107.84|0.00|-2.65|000108CB|0|1| +38|2023-10-06T21:58:40.3230000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8200|10000|0||114.70|107.84|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:40.3230000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:58:40.3230000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +38|2023-10-06T21:58:40.3230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||95.48|91.51|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:40.3230000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|90890|| +261|2023-10-06T21:58:39.9560000-07:00|Change|10FF0006||||||||||| +35|2023-10-06T21:58:40.3660000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.3660000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.3660000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:40.4100000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.4100000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.4100000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +22|2023-10-06T21:58:40.4560000-07:00|4002157F|Comet|8B58|Meteor Impact|10FF000B|Pusu Rosu|730003|150C4008|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|55446|55446|10000|10000|||107.47|92.67|0.00|-2.79|69200|69200|10000|10000|||106.00|118.00|0.00|3.08|000108CC|0|1| +35|2023-10-06T21:58:40.4560000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.4560000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.4560000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +21|2023-10-06T21:58:40.4560000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AF90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24304024|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||95.48|91.51|0.00|2.77|000108CD|0|1| +38|2023-10-06T21:58:40.4560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6850|10000|0||117.02|93.31|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:40.4560000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:58:40.4560000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|10000|10000|0||107.47|92.67|0.00|-2.79|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:40.4560000-07:00|8C8|Blunt Resistance Down|9.96|4002157F|Comet|10FF000B|Pusu Rosu|00|55446|69200| +37|2023-10-06T21:58:40.5000000-07:00|40021585|Zeromus|000108C8|24299229||||||100.00|80.10|0.00|0.00| +35|2023-10-06T21:58:40.5000000-07:00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|0000|0000|00FF|||| +35|2023-10-06T21:58:40.5000000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.5000000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:40.5450000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.5450000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +21|2023-10-06T21:58:40.5450000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|77A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24299229|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||95.48|91.51|0.00|2.77|000108CE|0|1| +21|2023-10-06T21:58:40.5450000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|1030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24299229|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6850|10000|||117.02|93.31|0.00|-3.11|000108CF|0|1| +21|2023-10-06T21:58:40.5450000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56170|58451|10000|10000|||87.21|83.94|0.00|1.86|56170|58451|10000|10000|||87.21|83.94|0.00|1.86|000108D0|0|1| +38|2023-10-06T21:58:40.5450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||95.48|91.51|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:40.5450000-07:00|499|Inner Release|9.03|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|90890|90890| +38|2023-10-06T21:58:40.5450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56170|58451|10000|10000|0||87.21|83.94|0.00|1.86|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:40.5450000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|58451|58451| +35|2023-10-06T21:58:40.5890000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.5890000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +38|2023-10-06T21:58:40.5890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56170|58451|10000|10000|0||87.21|83.94|0.00|1.86|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:40.5890000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|58451|| +261|2023-10-06T21:58:40.2740000-07:00|Change|4002157F||| +22|2023-10-06T21:58:40.6340000-07:00|4002157E|Comet|8B58|Meteor Impact|10FF0007|Kehabiqo Febiqo|730003|19340000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||95.48|91.51|0.00|2.77|69200|69200|10000|10000|||106.00|118.00|0.00|-2.76|000108D1|0|1| +35|2023-10-06T21:58:40.6340000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.6340000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +21|2023-10-06T21:58:40.6340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|C2F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24299229|40478540|10000|10000|||100.00|80.10|0.00|0.00|56170|58451|10000|10000|||87.21|83.94|0.00|1.86|000108D2|0|1| +38|2023-10-06T21:58:40.6340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||95.48|91.51|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:40.6340000-07:00|8C8|Blunt Resistance Down|9.96|4002157E|Comet|10FF0007|Kehabiqo Febiqo|00|90890|69200| +35|2023-10-06T21:58:40.6780000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.6780000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +35|2023-10-06T21:58:40.7240000-07:00|4002157D|Comet|10FF0001|Sesuga Sapisuga|0000|0000|00FF|||| +35|2023-10-06T21:58:40.7240000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +38|2023-10-06T21:58:40.7240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61832|63151|10000|10000|0||102.44|98.42|0.00|2.44|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:40.7240000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|63151|| +35|2023-10-06T21:58:40.7680000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +261|2023-10-06T21:58:40.3650000-07:00|Change|4002157E||||| +39|2023-10-06T21:58:40.8120000-07:00|10FF0001|Sesuga Sapisuga|72940|90349|7400|10000|||90.32|95.65|0.00|2.58| +35|2023-10-06T21:58:40.8120000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +22|2023-10-06T21:58:40.8570000-07:00|4002157D|Comet|8B58|Meteor Impact|10FF0001|Sesuga Sapisuga|EC730005|13B00000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|72037|90349|7200|10000|||90.32|95.65|0.00|2.58|69200|69200|10000|10000|||106.00|118.00|0.00|-2.53|000108D3|0|1| +35|2023-10-06T21:58:40.8570000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +38|2023-10-06T21:58:40.8570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|72940|90349|7400|10000|0||90.32|95.65|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:40.8570000-07:00|8C8|Blunt Resistance Down|9.96|4002157D|Comet|10FF0001|Sesuga Sapisuga|00|90349|69200| +38|2023-10-06T21:58:40.8570000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8200|10000|0||114.70|107.84|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:40.8570000-07:00|13B|Whispering Dawn|0.00|4002164C|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|51669|| +35|2023-10-06T21:58:40.9010000-07:00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|0000|0000|00FF|||| +261|2023-10-06T21:58:40.4550000-07:00|Change|4002157D||||| +37|2023-10-06T21:58:40.9460000-07:00|40021585|Zeromus|000108C9|24273417||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:40.9460000-07:00|10FF0001|Sesuga Sapisuga|000108C9|82554||||||90.32|95.65|0.00|2.58| +21|2023-10-06T21:58:40.9460000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|57EF0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|24299229|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9200|10000|||102.14|96.95|0.00|-0.53|000108D4|0|1| +21|2023-10-06T21:58:40.9460000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|30CE0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|24299229|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|10000|10000|||107.47|92.67|0.00|-2.61|000108D5|0|1| +261|2023-10-06T21:58:40.4550000-07:00|Change|4002157C||||||||| +261|2023-10-06T21:58:40.5480000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:58:40.5480000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:58:40.9910000-07:00|40021585|Zeromus|000108CD|24270608||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:58:41.0350000-07:00|4002157C|Comet|8B58|Meteor Impact|10FF0004|Buhojaqe Zijaqe|F1730006|23FA0000|780E|8C80000|1B|8B588000|0|0|0|0|0|0|0|0|0|0|57078|57078|6850|10000|||117.02|93.31|0.00|-3.11|69200|69200|10000|10000|||106.00|118.00|0.00|2.72|000108D6|0|1| +38|2023-10-06T21:58:41.0350000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6850|10000|0||117.02|93.31|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:41.0350000-07:00|8C8|Blunt Resistance Down|9.96|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|00|57078|69200| +37|2023-10-06T21:58:41.0800000-07:00|10FF000B|Pusu Rosu|000108CC|0|55446|0|10000|0||107.47|92.67|0.00|-2.61|1800|0|0|04|02000000|0|0|||||||||||||| +37|2023-10-06T21:58:41.0800000-07:00|40021585|Zeromus|000108CF|24270349||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:41.0800000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|554003|69CC0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|24270608|40478540|10000|10000|||100.00|80.10|0.00|0.00|56170|58451|10000|10000|||87.21|83.94|0.00|1.86|000108D7|0|1| +38|2023-10-06T21:58:41.0800000-07:00|10FF000B|Pusu Rosu|005A5A18|0|55446|0|10000|0||107.47|92.67|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:41.0800000-07:00|8C8|Blunt Resistance Down|0.00|4002157F|Comet|10FF000B|Pusu Rosu|00|55446|69200| +30|2023-10-06T21:58:41.0800000-07:00|74C|Everlasting Flight|0.00|4002179B|Demi-Phoenix|10FF000B|Pusu Rosu|00|55446|54388| +30|2023-10-06T21:58:41.0800000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +30|2023-10-06T21:58:41.0800000-07:00|9D6|Bind|0.00|E0000000||10FF000B|Pusu Rosu|00|55446|| +30|2023-10-06T21:58:41.0800000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF000B|Pusu Rosu|00|55446|| +38|2023-10-06T21:58:41.0800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56170|58451|10000|10000|0||87.21|83.94|0.00|1.86|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:41.0800000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|58451|58451| +26|2023-10-06T21:58:41.0800000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +261|2023-10-06T21:58:40.6410000-07:00|Change|10FF000B||||| +261|2023-10-06T21:58:40.6410000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:58:40.6410000-07:00|Change|4002157C||| +37|2023-10-06T21:58:41.1240000-07:00|40021585|Zeromus|000108CB|24258552||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:41.1240000-07:00|4002179B|Demi-Phoenix|54388|54388|10000|10000|||111.92|88.91|0.00|-2.21| +261|2023-10-06T21:58:40.7540000-07:00|Change|4002179B||| +38|2023-10-06T21:58:41.1670000-07:00|400217AC||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:41.1700000-07:00|400217AC||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:58:41.1700000-07:00|40021585|Zeromus|000108CE|24227928||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:41.1700000-07:00|40021585|Zeromus|000108D2|24224809||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:41.1700000-07:00|10FF000A|Dukaro Nezikaro|000108D2|56170|58451|10000|10000|0||87.21|83.94|0.00|1.86|1E00|0|0|01|03000A82|01|C1F00000|| +24|2023-10-06T21:58:41.1700000-07:00|10FF0006|Wowobora Gogobora|HoT|0|8A0|57266|57266|8900|10000|||102.15|97.32|0.00|-3.02|E0000000||0||||||||||| +21|2023-10-06T21:58:41.1700000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24270349|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8900|10000|||102.15|97.32|0.00|-3.02|000108D8|0|1| +38|2023-10-06T21:58:41.1700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8900|10000|0||102.15|97.32|0.00|-3.02|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:40.7540000-07:00|Change|4002157F||||||||| +261|2023-10-06T21:58:40.8680000-07:00|Change|10FF0001||| +37|2023-10-06T21:58:41.2580000-07:00|10FF0007|Kehabiqo Febiqo|000108D1|84438|90890|10000|10000|0||95.48|91.51|0.00|2.77|1500|0|0|01|040008C8|0|4116041C|| +21|2023-10-06T21:58:41.3020000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|35930000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|24224809|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|8200|10000|||114.70|107.84|0.00|-2.65|000108D9|0|1| +38|2023-10-06T21:58:41.3020000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|7900|10000|0||114.70|107.84|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:41.3020000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:58:41.3020000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:58:40.8680000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T21:58:41.3470000-07:00|10FF000A|Dukaro Nezikaro|56754|58451|10000|10000|||87.22|83.95|0.00|1.68| +261|2023-10-06T21:58:40.9800000-07:00|Change|4002157E||||||||| +24|2023-10-06T21:58:41.3920000-07:00|10FF0003|Gegehi Gehi|HoT|0|847|51669|51669|7900|10000|||114.70|107.84|0.00|-2.65|40021580|Comet|0|69200|69200|10000|10000|||119.10|89.86|0.00|2.41| +38|2023-10-06T21:58:41.3920000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8450|10000|0||114.70|107.84|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:41.4360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56754|58451|10000|10000|0||87.30|83.99|-0.02|1.53|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:40.9800000-07:00|Change|400215A3||||||||| +37|2023-10-06T21:58:41.4800000-07:00|10FF0001|Sesuga Sapisuga|000108D3|77514|90349|7400|10000|0||90.32|95.65|0.00|2.58|1300|0|0|01|080008C8|0|4116041B|| +261|2023-10-06T21:58:41.0900000-07:00|Change|4002157D||||||||| +261|2023-10-06T21:58:41.0900000-07:00|Change|4002157F||||||||| +39|2023-10-06T21:58:41.4800000-07:00|10FF0007|Kehabiqo Febiqo|85346|90890|10000|10000|||95.48|91.51|0.00|2.77| +03|2023-10-06T21:58:41.0900000-07:00|400217AC|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||101.96|95.96|0.00|0.12| +21|2023-10-06T21:58:41.5250000-07:00|400215A3|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|3.08|000108DA|0|0| +21|2023-10-06T21:58:41.5250000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|D7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24224809|40478540|10000|10000|||100.00|80.10|0.00|0.00|77514|90349|7400|10000|||90.32|95.65|0.00|2.58|000108DB|0|1| +31|2023-10-06T21:58:41.5250000-07:00|10FF0001||||| +261|2023-10-06T21:58:41.0900000-07:00|Add|400217AC||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:41.2000000-07:00|Change|400217AC||| +261|2023-10-06T21:58:41.2000000-07:00|Change|400215A2||||||||| +261|2023-10-06T21:58:41.2000000-07:00|Change|4002157E||||||||| +37|2023-10-06T21:58:41.6570000-07:00|10FF0004|Buhojaqe Zijaqe|000108D6|47868|57078|6850|10000|0||117.02|93.31|0.00|-3.11|1C00|0|0|01|030008C8|0|41160833|| +261|2023-10-06T21:58:41.2990000-07:00|Change|4002157C||||||||| +37|2023-10-06T21:58:41.7030000-07:00|40021585|Zeromus|000108D8|24224653||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:41.7030000-07:00|400215A2|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|-2.76|000108DC|0|0| +21|2023-10-06T21:58:41.7030000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1DCA0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|24224809|40478540|10000|10000|||100.00|80.10|0.00|0.00|61832|63151|10000|10000|||103.37|102.72|0.00|0.24|000108DD|0|1| +261|2023-10-06T21:58:41.2990000-07:00|Change|4002157D||||||||| +37|2023-10-06T21:58:41.7930000-07:00|40021585|Zeromus|000108D7|24197569||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:41.7930000-07:00|10FF000A|Dukaro Nezikaro|000108D7|56754|58451|10000|10000|0||88.06|84.39|0.00|1.19|1E00|0|0|01|03000A82|01|41F00000|| +38|2023-10-06T21:58:41.7930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56754|58451|10000|10000|0||88.06|84.39|0.00|1.19|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:41.4060000-07:00|Change|400215A1||||||||| +21|2023-10-06T21:58:41.9260000-07:00|400215A1|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|-2.53|000108DE|0|0| +21|2023-10-06T21:58:41.9710000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24197569|40478540|10000|10000|||100.00|80.10|0.00|0.00|61832|63151|10000|10000|||103.39|102.83|0.00|-2.99|000108DF|0|1| +22|2023-10-06T21:58:41.9710000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|714003|16DD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24197569|40478540|10000|10000|||100.00|80.10|0.00|0.00|56754|58451|10000|10000|||88.31|84.52|0.00|1.15|000108E0|0|3| +22|2023-10-06T21:58:41.9710000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|13950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24197569|40478540|10000|10000|||100.00|80.10|0.00|0.00|56754|58451|10000|10000|||88.31|84.52|0.00|1.15|000108E0|1|3| +22|2023-10-06T21:58:41.9710000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|127A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24197569|40478540|10000|10000|||100.00|80.10|0.00|0.00|56754|58451|10000|10000|||88.31|84.52|0.00|1.15|000108E0|2|3| +261|2023-10-06T21:58:41.4980000-07:00|Change|4002157C||||||||| +37|2023-10-06T21:58:42.0160000-07:00|40021585|Zeromus|000108D4|24175058||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:41.5960000-07:00|Change|400215A0||||||||| +37|2023-10-06T21:58:42.0600000-07:00|40021585|Zeromus|000108DB|24171608||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:42.0600000-07:00|40021585|Zeromus|000108D9|24157893||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:42.0600000-07:00|10FF0003|Gegehi Gehi|000108D9|51669|51669|8450|10000|0||114.70|107.84|0.00|-2.65|2300|0|0|01|020004D2|0|41F00000|| +257|2023-10-06T21:58:42.0600000-07:00|80034E7C|00080004|00|00|0000| +257|2023-10-06T21:58:42.0600000-07:00|80034E7C|00080004|01|00|0000| +38|2023-10-06T21:58:42.0600000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8450|10000|0||114.70|107.84|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:58:42.1050000-07:00|400215A0|Zeromus|8CB9|Meteor Impact|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||106.00|118.00|0.00|2.72|000108E1|0|0| +34|2023-10-06T21:58:42.1940000-07:00|400217AC|Carbuncle|400217AC|Carbuncle|01| +261|2023-10-06T21:58:41.8370000-07:00|Change|400217AC||| +261|2023-10-06T21:58:41.9500000-07:00|Change|10FF0003||| +21|2023-10-06T21:58:42.3720000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750003|40610000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|77514|90349|7400|10000|||90.32|95.65|0.00|2.58|24157893|40478540|10000|10000|||100.00|80.10|0.00|0.00|000108E2|0|1| +38|2023-10-06T21:58:42.3720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85346|90890|10000|10000|0||95.48|91.51|0.00|2.69|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:42.3720000-07:00|9D6|Bind|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:58:42.3720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|77514|90349|7400|10000|0||90.32|95.65|0.00|2.58|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:42.3720000-07:00|9D6|Bind|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:58:42.3720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47868|57078|6850|10000|0||117.02|93.31|0.00|-2.23|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:42.3720000-07:00|9D6|Bind|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +37|2023-10-06T21:58:42.4610000-07:00|40021585|Zeromus|000108DD|24150267||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:42.4610000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8450|10000|0||114.69|107.85|-0.02|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:42.4610000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:58:42.1870000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:58:42.5500000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|754003|94670000|4|269D8000|0|0|0|0|0|0|0|0|0|0|0|0|24150267|40478540|10000|10000|||100.00|80.10|0.00|0.00|77514|90349|7400|10000|||90.32|95.65|0.00|2.58|000108E3|0|1| +38|2023-10-06T21:58:42.5500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|77514|90349|6400|10000|0||90.32|95.65|0.00|2.58|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:42.5500000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +31|2023-10-06T21:58:42.5500000-07:00|10FF0001||||| +261|2023-10-06T21:58:42.1870000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:42.6830000-07:00|40021585|Zeromus|000108E0|24144414||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:58:42.6830000-07:00|40021585|Zeromus|DoT|0|1D11|24150267|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|55446|0|10000|||107.47|92.67|0.00|-2.61| +36|2023-10-06T21:58:42.6830000-07:00|409C|3| +38|2023-10-06T21:58:42.6830000-07:00|40021585|Zeromus|005A5A00|24136973|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:42.6830000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T21:58:42.7270000-07:00|40021585|Zeromus|000108DF|24134252||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:58:42.3780000-07:00|4002179A|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|59967|0|10000|||101.49|103.07|0.00|-3.08| +261|2023-10-06T21:58:42.3780000-07:00|Remove|4002179A| +37|2023-10-06T21:58:42.8160000-07:00|40021585|Zeromus|000108E0|24129239||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:42.9060000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|550003|48ED0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|24129239|40478540|10000|10000|||100.00|80.10|0.00|0.00|56754|58451|10000|10000|||93.75|88.35|0.00|1.12|000108E4|0|1| +38|2023-10-06T21:58:42.9060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56754|58451|10000|10000|0||93.75|88.35|0.00|1.12|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:42.9060000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +37|2023-10-06T21:58:42.9510000-07:00|40021585|Zeromus|000108E0|24124509||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:42.9950000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7D470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24129239|40478540|10000|10000|||100.00|80.10|0.00|0.00|85346|90890|10000|10000|||95.49|91.55|0.00|0.48|000108E5|0|1| +38|2023-10-06T21:58:42.9950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85346|90890|10000|10000|0||95.49|91.55|0.00|0.48|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:42.9950000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|90890|90890| +39|2023-10-06T21:58:43.0840000-07:00|10FF0004|Buhojaqe Zijaqe|48438|57078|7050|10000|||116.99|93.32|0.00|-1.04| +25|2023-10-06T21:58:43.0840000-07:00|10FF000B|Pusu Rosu|4002157F|Comet| +261|2023-10-06T21:58:42.6920000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:58:43.1280000-07:00|10FF0003|Gegehi Gehi|51669|51669|8650|10000|||112.67|109.91|0.00|-2.26| +37|2023-10-06T21:58:43.1730000-07:00|10FF0001|Sesuga Sapisuga|000108E2|61033||||||91.53|97.65|0.00|1.10| +20|2023-10-06T21:58:43.1730000-07:00|4002156E|Comet|8D34|Explosion|4002156E|Comet|4.700|103.20|91.40|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|4002156F|Comet|8D34|Explosion|4002156F|Comet|4.700|86.20|97.20|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021570|Comet|8D34|Explosion|40021570|Comet|4.700|118.00|83.00|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021571|Comet|8D34|Explosion|40021571|Comet|4.700|113.80|89.20|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021572|Comet|8D34|Explosion|40021572|Comet|4.700|110.60|84.00|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021573|Comet|8D34|Explosion|40021573|Comet|4.700|105.00|82.40|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021574|Comet|8D34|Explosion|40021574|Comet|4.700|100.00|85.60|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021575|Comet|8D34|Explosion|40021575|Comet|4.700|95.00|82.40|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021576|Comet|8D34|Explosion|40021576|Comet|4.700|89.40|84.00|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021577|Comet|8D34|Explosion|40021577|Comet|4.700|86.20|89.20|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021578|Comet|8D34|Explosion|40021578|Comet|4.700|82.00|83.00|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|40021579|Comet|8D34|Explosion|40021579|Comet|4.700|118.00|102.00|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|4002157A|Comet|8D34|Explosion|4002157A|Comet|4.700|82.00|102.00|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|4002157B|Comet|8D34|Explosion|4002157B|Comet|4.700|100.00|117.60|0.00|0.00| +20|2023-10-06T21:58:43.1730000-07:00|4002157C|Comet|8D34|Explosion|4002157C|Comet|4.700|117.02|93.31|0.00|2.72| +261|2023-10-06T21:58:42.6920000-07:00|Change|4002156E||||||||||||| +20|2023-10-06T21:58:43.1730000-07:00|4002157D|Comet|8D34|Explosion|4002157D|Comet|4.700|90.32|95.63|0.00|-2.53| +20|2023-10-06T21:58:43.1730000-07:00|4002157E|Comet|8D34|Explosion|4002157E|Comet|4.700|95.48|91.51|0.00|-2.76| +20|2023-10-06T21:58:43.1730000-07:00|4002157F|Comet|8D34|Explosion|4002157F|Comet|4.700|107.47|92.67|0.00|3.08| +20|2023-10-06T21:58:43.1730000-07:00|40021580|Comet|8D34|Explosion|40021580|Comet|4.700|119.10|89.86|0.00|2.41| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021571||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|4002156F||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021574||||||||||||| +20|2023-10-06T21:58:43.1730000-07:00|40021581|Comet|8D34|Explosion|40021581|Comet|4.700|109.36|88.67|0.00|2.66| +20|2023-10-06T21:58:43.1730000-07:00|40021582|Comet|8D34|Explosion|40021582|Comet|4.700|89.92|91.02|0.00|-2.99| +20|2023-10-06T21:58:43.1730000-07:00|40021583|Comet|8D34|Explosion|40021583|Comet|4.700|95.20|86.59|0.00|3.10| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021573||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021578||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021570||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021576||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021579||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021577||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|4002157B||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|4002157E||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|4002157F||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021575||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|4002157A||||||||||||| +39|2023-10-06T21:58:43.1730000-07:00|10FF0008|Kokosaze Lulusaze|62463|63151|10000|10000|||103.41|102.92|0.00|-2.99| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021580||||||||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021572||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021581||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021583||||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|40021582||||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|4002157D||||||||||||||| +261|2023-10-06T21:58:42.6920000-07:00|Change|4002157C||||||||||||| +21|2023-10-06T21:58:43.2180000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24124509|40478540|10000|10000|||100.00|80.10|0.00|0.00|56754|58451|10000|10000|||94.23|90.81|0.00|2.41|000108E6|0|1| +261|2023-10-06T21:58:42.8200000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:58:43.3060000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9100|10000|||102.16|97.69|0.00|-1.23| +261|2023-10-06T21:58:42.9320000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:58:42.9320000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:58:43.3500000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|264D0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|24124509|40478540|10000|10000|||100.00|80.10|0.00|0.00|48438|57078|7050|10000|||115.99|94.36|0.00|-0.87|000108E7|0|1| +261|2023-10-06T21:58:42.9320000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T21:58:43.3950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62463|63151|10000|10000|0||103.41|102.92|0.00|-2.99|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:58:43.3950000-07:00|8C8|Blunt Resistance Down|0.00|40021583|Comet|10FF0008|Kokosaze Lulusaze|00|63151|69200| +37|2023-10-06T21:58:43.4390000-07:00|40021585|Zeromus|000108E3|24086518||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:43.4390000-07:00|10FF0001|Sesuga Sapisuga|000108E3|70918||||||92.81|98.91|0.00|1.13| +21|2023-10-06T21:58:43.4830000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|24124509|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9100|10000|||101.65|99.20|0.00|-0.73|000108E8|0|1| +261|2023-10-06T21:58:43.1550000-07:00|Change|400217AC||||||||| +38|2023-10-06T21:58:43.5280000-07:00|400217AF||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:43.5280000-07:00|400217AF||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:58:43.1550000-07:00|Add|400217AF||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:58:43.1550000-07:00|400217AF|Topaz Titan|00|5A|10FF0006|00||10264|13507|54388|54388|10000|10000|||103.20|101.90|0.00|-3.08| +38|2023-10-06T21:58:43.5720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56754|58451|10000|10000|0||94.72|93.22|0.00|0.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:43.5720000-07:00|8C8|Blunt Resistance Down|0.00|40021582|Comet|10FF000A|Dukaro Nezikaro|00|58451|69200| +261|2023-10-06T21:58:43.2530000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:58:43.2530000-07:00|Change|400217AF||||| +261|2023-10-06T21:58:43.2530000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:58:43.6610000-07:00|40021585|Zeromus|000108E5|24054447||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:43.7050000-07:00|40021585|Zeromus|000108E4|24035778||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:43.7050000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|734003|C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24086518|40478540|10000|10000|||100.00|80.10|0.00|0.00|48438|57078|6650|10000|||114.54|95.98|0.00|-2.44|000108E9|0|1| +37|2023-10-06T21:58:43.7500000-07:00|40021585|Zeromus|000108E6|24033369||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:43.7950000-07:00|10FF0001|Sesuga Sapisuga|71821|90349|6600|10000|||94.56|99.72|0.00|1.13| +21|2023-10-06T21:58:43.7950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|B190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24035778|40478540|10000|10000|||100.00|80.10|0.00|0.00|70918|90349|6400|10000|||94.56|99.72|0.00|1.13|000108EA|0|1| +38|2023-10-06T21:58:43.7950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9100|10000|0||101.35|100.08|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:43.7950000-07:00|8C8|Blunt Resistance Down|0.00|40021581|Comet|10FF0006|Wowobora Gogobora|00|57266|69200| +31|2023-10-06T21:58:43.7950000-07:00|10FF0001||||| +21|2023-10-06T21:58:43.8390000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24035778|40478540|10000|10000|||100.00|80.10|0.00|0.00|85346|90890|10000|10000|||94.85|95.75|0.00|0.57|000108EB|0|1| +21|2023-10-06T21:58:43.8390000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|56754|58451|10000|10000|||95.12|94.85|0.00|0.48|56754|58451|10000|10000|||95.12|94.85|0.00|0.48|000108EC|0|1| +38|2023-10-06T21:58:43.8390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56754|58451|10000|10000|0||95.12|94.85|0.00|0.48|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:43.8390000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|58451|58451| +26|2023-10-06T21:58:43.8390000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +38|2023-10-06T21:58:43.8840000-07:00|400217B0||005A5A00|55409|55409|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:43.8840000-07:00|400217B0||005A5A00|55409|55409|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:58:43.5340000-07:00|Add|400217B0||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:58:43.5340000-07:00|400217B0|Bunshin|00|5A|10FF000A|00||8313|10897|55409|55409|10000|10000|||96.40|98.20|0.00|-2.71| +261|2023-10-06T21:58:43.5340000-07:00|Change|10FF000A||||||||| +38|2023-10-06T21:58:43.9730000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8650|10000|0||110.42|108.43|-0.02|-2.24|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:43.9730000-07:00|8C8|Blunt Resistance Down|0.00|40021580|Comet|10FF0003|Gegehi Gehi|00|51669|69200| +261|2023-10-06T21:58:43.5340000-07:00|Change|400217B0||| +261|2023-10-06T21:58:43.6270000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:58:44.1500000-07:00|10FF0006|Wowobora Gogobora|HoT|0|836|57266|57266|9100|10000|||100.99|101.42|0.00|-1.78|E0000000||0||||||||||| +38|2023-10-06T21:58:44.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9100|10000|0||100.99|101.42|0.00|-1.78|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:43.7480000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:58:44.1950000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|720003|5BE80000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|24033369|40478540|10000|10000|||100.00|80.10|0.00|0.00|62463|63151|10000|10000|||103.13|102.93|0.00|-1.58|000108ED|0|1| +37|2023-10-06T21:58:44.2390000-07:00|40021585|Zeromus|000108E9|24033172||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:44.2830000-07:00|40021585|Zeromus|000108E7|24023367||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:44.3280000-07:00|40021585|Zeromus|000108EA|24020526||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:44.3280000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24023367|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9100|10000|||100.69|102.57|-0.01|-0.68|000108EE|0|1| +37|2023-10-06T21:58:44.3720000-07:00|40021585|Zeromus|000108EB|24015862||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:44.3720000-07:00|10FF000A|Dukaro Nezikaro|57338|58451|10000|10000|||96.41|98.16|0.00|0.43| +24|2023-10-06T21:58:44.3720000-07:00|10FF0003|Gegehi Gehi|HoT|0|82F|51669|51669|8650|10000|||110.27|108.48|0.00|-2.24|E0000000||0||||||||||| +38|2023-10-06T21:58:44.3720000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8650|10000|0||110.27|108.48|0.00|-2.24|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T21:58:44.4160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57338|58451|10000|10000|0||96.73|98.88|0.00|0.43|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:58:44.4610000-07:00|10FF0007|Kehabiqo Febiqo|86254|90890|10000|10000|||96.95|99.37|-0.02|1.95| +21|2023-10-06T21:58:44.4610000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|85346|90890|10000|10000|||96.95|99.37|-0.02|1.95|85346|90890|10000|10000|||96.95|99.37|-0.02|1.95|000108EF|0|1| +38|2023-10-06T21:58:44.4610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86254|90890|10000|10000|0||96.95|99.37|-0.02|1.95|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:44.4610000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +261|2023-10-06T21:58:44.0990000-07:00|Change|10FF0001||||||||||| +38|2023-10-06T21:58:44.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86254|90890|10000|10000|0||97.24|99.98|0.00|2.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:44.5950000-07:00|10FF000A|Dukaro Nezikaro|000108EC|57338|58451|10000|10000|0||97.04|99.41|0.00|0.45|1E00|0|0|02|030007A2|05|41F00000|||||| +38|2023-10-06T21:58:44.5950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57338|58451|10000|10000|0||97.04|99.41|0.00|0.45|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:58:44.1920000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:58:44.2890000-07:00|Change|400217AF||| +21|2023-10-06T21:58:44.6390000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|24015862|40478540|10000|10000|||100.00|80.10|0.00|0.00|62463|63151|10000|10000|||100.62|103.39|0.00|-2.33|000108F0|0|1| +261|2023-10-06T21:58:44.3800000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:58:44.8630000-07:00|40021585|Zeromus|000108EE|24015679||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:44.4700000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:58:44.4700000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:58:44.9080000-07:00|10FF0003|Gegehi Gehi|1D89|Swiftcast|10FF0003|Gegehi Gehi|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|8650|10000|||107.05|106.93|0.00|-2.24|51669|51669|8650|10000|||107.05|106.93|0.00|-2.24|000108F1|0|1| +38|2023-10-06T21:58:44.9080000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8650|10000|0||107.05|106.93|0.00|-2.24|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:44.9080000-07:00|A7|Swiftcast|10.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:58:44.4700000-07:00|Change|400217B0||||| +37|2023-10-06T21:58:44.9970000-07:00|10FF0007|Kehabiqo Febiqo|000108EF|86254|90890|10000|10000|0||98.62|102.04|0.00|2.19|1500|0|0|01|01000769|0|41F00000|| +38|2023-10-06T21:58:44.9970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86254|90890|10000|10000|0||98.62|102.04|0.00|2.19|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:45.0410000-07:00|10FF0003|Gegehi Gehi|000108F1|51669|51669|8650|10000|0||106.52|106.57|0.00|-2.24|2300|0|0|01|010000A7|0|41200000|| +21|2023-10-06T21:58:45.0410000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|4F020000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|24015679|40478540|10000|10000|||100.00|80.10|0.00|0.00|71821|90349|6600|10000|||99.51|102.22|0.00|3.12|000108F2|0|1| +38|2023-10-06T21:58:45.0410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|71821|90349|6600|10000|0||99.51|102.22|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:45.0410000-07:00|76E|Sword Oath|12.94|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +38|2023-10-06T21:58:45.0410000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|8650|10000|0||106.52|106.57|0.00|-2.24|0|0|0|||||||||||||||||||||||||||| +04|2023-10-06T21:58:44.6800000-07:00|4002179B|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|0|54388|0|10000|||111.92|88.91|0.00|-2.21| +261|2023-10-06T21:58:44.6800000-07:00|Remove|4002179B| +37|2023-10-06T21:58:45.3520000-07:00|40021585|Zeromus|000108ED|23992151||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:45.3970000-07:00|40021585|Zeromus|000108F0|23989911||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:45.3970000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750005|33CC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|71821|90349|6600|10000|||99.51|102.22|0.00|3.12|23992151|40478540|10000|10000|||100.00|80.10|0.00|0.00|000108F3|0|1| +21|2023-10-06T21:58:45.3970000-07:00|10FF000A|Dukaro Nezikaro|6514|Huraijin|40021585|Zeromus|710003|19FF0000|3E|C98000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|23992151|40478540|10000|10000|||100.00|80.10|0.00|0.00|57338|58451|10000|10000|||99.93|102.54|0.00|1.36|000108F4|0|1| +21|2023-10-06T21:58:45.3970000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23992151|40478540|10000|10000|||100.00|80.10|0.00|0.00|57338|58451|10000|10000|||99.93|102.54|0.00|1.36|000108F5|0|1| +38|2023-10-06T21:58:45.3970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57338|58451|10000|10000|0||99.93|102.54|0.00|1.36|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:45.3970000-07:00|7A2|Bunshin|29.15|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|58451|58451| +261|2023-10-06T21:58:45.0330000-07:00|Change|400217B0||||||||| +21|2023-10-06T21:58:45.4410000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|9F0C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23992151|40478540|10000|10000|||100.00|80.10|0.00|0.00|86254|90890|10000|10000|||99.63|102.68|-0.02|2.33|000108F6|0|1| +38|2023-10-06T21:58:45.4410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86254|90890|10000|10000|0||99.63|102.68|-0.02|2.33|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:45.4410000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +261|2023-10-06T21:58:45.0330000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:58:45.4840000-07:00|400217B0|Bunshin|6515|Huraijin|40021585|Zeromus|714003|16630000|53E|9F8000|1B|65158000|0|0|0|0|0|0|0|0|0|0|23992151|40478540|10000|10000|||100.00|80.10|0.00|0.00|55409|55409|10000|10000|||96.40|98.20|0.00|-2.71|000108F7|0|1| +261|2023-10-06T21:58:45.0330000-07:00|Change|400217B0||| +261|2023-10-06T21:58:45.1490000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:58:45.1490000-07:00|Change|400217AC||||||||| +21|2023-10-06T21:58:45.5750000-07:00|400217AF|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|450003|60BF0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|23989911|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||103.20|101.90|0.00|-3.08|000108F8|0|1| +24|2023-10-06T21:58:45.6640000-07:00|40021585|Zeromus|DoT|0|20A7|23989911|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|55446|0|10000|||107.47|92.67|0.00|-2.61| +36|2023-10-06T21:58:45.6640000-07:00|4178|3| +38|2023-10-06T21:58:45.6640000-07:00|40021585|Zeromus|005A5A00|23981552|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:58:45.6640000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:58:45.2510000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:58:45.7080000-07:00|10FF0003|Gegehi Gehi|1D63|Verraise|10FF000B|Pusu Rosu|814000E|940000|1B|1D638000|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|0|10000|||107.47|92.67|0.00|-2.61|51669|51669|8650|10000|||103.70|105.19|0.00|-2.24|000108F9|0|1| +38|2023-10-06T21:58:45.7080000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6250|10000|0||103.70|105.19|0.00|-2.24|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:45.7080000-07:00|A7|Swiftcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +20|2023-10-06T21:58:45.7530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.90|105.25|0.00|-1.61| +38|2023-10-06T21:58:45.7530000-07:00|40021585|Zeromus|005A5A00|23981552|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:58:45.7530000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|55446| +37|2023-10-06T21:58:45.9300000-07:00|40021585|Zeromus|000108F5|23979167||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:45.9300000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|456003|68430000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|23981552|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9100|10000|||100.30|103.71|-0.01|-0.11|000108FA|0|1| +38|2023-10-06T21:58:45.9300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8800|10000|0||100.30|103.71|-0.01|-0.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:45.9300000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +21|2023-10-06T21:58:46.0630000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23979167|40478540|10000|10000|||100.00|80.10|0.00|0.00|71821|90349|6600|10000|||99.51|102.22|0.00|3.12|000108FB|0|1| +31|2023-10-06T21:58:46.0630000-07:00|10FF0001||||| +39|2023-10-06T21:58:46.1060000-07:00|10FF0004|Buhojaqe Zijaqe|49008|57078|6850|10000|||101.18|104.97|-0.01|-2.92| +39|2023-10-06T21:58:46.1520000-07:00|10FF0008|Kokosaze Lulusaze|63094|63151|10000|10000|||100.21|104.11|0.00|-0.56| +39|2023-10-06T21:58:46.1520000-07:00|10FF0003|Gegehi Gehi|51669|51669|6450|10000|||102.03|103.75|-0.01|2.76| +37|2023-10-06T21:58:46.1970000-07:00|10FF0001|Sesuga Sapisuga|000108F3|58561||||||99.51|102.22|0.00|3.12| +37|2023-10-06T21:58:46.1970000-07:00|40021585|Zeromus|000108F4|23972512||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:46.2860000-07:00|40021585|Zeromus|000108F7|23966781||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:46.2860000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9000|10000|||100.30|103.72|0.00|-3.13| +37|2023-10-06T21:58:46.3310000-07:00|40021585|Zeromus|000108F2|23946555||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:46.3310000-07:00|10FF0001|Sesuga Sapisuga|000108F2|58561|90349|7000|10000|0||99.51|102.22|0.00|3.12|1300|0|0|0| +261|2023-10-06T21:58:45.8690000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:46.3750000-07:00|40021585|Zeromus|000108F6|23905839||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:46.0990000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:58:46.5100000-07:00|10FF000B|Pusu Rosu|000108F9|0|55446|0|10000|0||107.47|92.67|0.00|-2.61|1800|0|0|01|02000094|08|42700000|| +26|2023-10-06T21:58:46.5100000-07:00|94|Raise|60.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|08|55446|51669| +37|2023-10-06T21:58:46.5550000-07:00|40021585|Zeromus|000108FA|23879148||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:46.5550000-07:00|10FF0006|Wowobora Gogobora|000108FA|57266|57266|9000|10000|0||100.30|103.72|0.00|-3.13|1B00|0|0|01|0B25|0|0|| +38|2023-10-06T21:58:46.5550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9000|10000|0||100.30|103.72|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:46.5550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49008|57078|6850|10000|0||101.09|104.94|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:46.5550000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|57078|57078| +261|2023-10-06T21:58:46.1890000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:46.5990000-07:00|40021585|Zeromus|000108FB|23877046||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:46.1890000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:58:46.6880000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30450000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|23877046|40478540|10000|10000|||100.00|80.10|0.00|0.00|49008|57078|6850|10000|||101.09|104.94|0.00|-3.10|000108FC|0|1| +21|2023-10-06T21:58:46.7330000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|722003|93DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23877046|40478540|10000|10000|||100.00|80.10|0.00|0.00|63094|63151|10000|10000|||100.21|104.11|0.00|-0.56|000108FD|0|1| +39|2023-10-06T21:58:46.8230000-07:00|10FF0001|Sesuga Sapisuga|59464|90349|7200|10000|||99.51|102.22|0.00|3.12| +21|2023-10-06T21:58:46.8230000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|724003|44AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23877046|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6450|10000|||101.91|103.65|0.00|2.67|000108FE|0|1| +21|2023-10-06T21:58:46.9110000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|17CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23877046|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9000|10000|||100.30|103.72|0.00|-3.13|000108FF|0|1| +38|2023-10-06T21:58:46.9110000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9000|10000|0||100.30|103.72|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:46.9110000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:58:46.6870000-07:00|Remove|400217AC| +04|2023-10-06T21:58:46.6870000-07:00|400217AC|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||101.73|96.21|0.00|-0.62| +261|2023-10-06T21:58:46.6870000-07:00|Change|400217B0||| +24|2023-10-06T21:58:47.1780000-07:00|10FF0006|Wowobora Gogobora|HoT|0|8C5|57266|57266|9000|10000|||100.30|103.72|0.00|-3.13|E0000000||0||||||||||| +38|2023-10-06T21:58:47.1780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9000|10000|0||100.30|103.72|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:58:47.2220000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|11A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23877046|40478540|10000|10000|||100.00|80.10|0.00|0.00|86254|90890|10000|10000|||99.63|102.68|0.00|3.13|00010900|0|1| +21|2023-10-06T21:58:47.3110000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23877046|40478540|10000|10000|||100.00|80.10|0.00|0.00|63094|63151|10000|10000|||100.21|104.11|0.00|-3.13|00010901|0|1| +39|2023-10-06T21:58:47.3550000-07:00|10FF000A|Dukaro Nezikaro|57922|58451|10000|10000|||100.08|102.62|0.00|-3.14| +261|2023-10-06T21:58:46.9160000-07:00|Change|10FF0001||| +261|2023-10-06T21:58:46.9160000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T21:58:47.4000000-07:00|10FF0003|Gegehi Gehi|HoT|0|882|51669|51669|6450|10000|||101.91|103.65|0.00|-3.06|E0000000||0||||||||||| +38|2023-10-06T21:58:47.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6450|10000|0||101.91|103.65|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:58:47.4890000-07:00|40021585|Zeromus|000108FC|23864689||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:47.4890000-07:00|10FF0007|Kehabiqo Febiqo|87162|90890|10000|10000|||99.63|102.68|0.00|3.13| +37|2023-10-06T21:58:47.5340000-07:00|40021585|Zeromus|000108F8|23839922||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:47.5340000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|34D60000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23877046|40478540|10000|10000|||100.00|80.10|0.00|0.00|59464|90349|7200|10000|||99.51|102.22|0.00|3.12|00010902|0|1| +38|2023-10-06T21:58:47.5340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|59464|90349|7200|10000|0||99.51|102.22|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:47.5340000-07:00|76E|Sword Oath|10.44|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +21|2023-10-06T21:58:47.5780000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23839922|40478540|10000|10000|||100.00|80.10|0.00|0.00|57922|58451|10000|10000|||100.08|102.62|0.00|-3.14|00010903|0|1| +37|2023-10-06T21:58:47.6670000-07:00|40021585|Zeromus|000108FF|23833831||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:47.7560000-07:00|40021585|Zeromus|00010900|23829316||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:47.8900000-07:00|40021585|Zeromus|000108FD|23791465||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:47.8900000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|158A0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|23829316|40478540|10000|10000|||100.00|80.10|0.00|0.00|87162|90890|10000|10000|||99.63|102.68|0.00|3.13|00010904|0|1| +37|2023-10-06T21:58:47.9800000-07:00|40021585|Zeromus|000108FE|23773886||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:47.9800000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40021585|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|23791465|40478540|10000|10000|||100.00|80.10|0.00|0.00|57922|58451|10000|10000|||100.08|102.62|0.00|-3.14|00010905|0|1| +38|2023-10-06T21:58:47.9800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57922|58451|10000|10000|0||100.08|102.62|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:47.9800000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +37|2023-10-06T21:58:48.0690000-07:00|40021585|Zeromus|00010901|23769039||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:48.0690000-07:00|400217B0|Bunshin|64AF|Phantom Kamaitachi|40021585|Zeromus|354003|54CD0000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|23791465|40478540|10000|10000|||100.00|80.10|0.00|0.00|55409|55409|10000|10000|||100.10|102.63|0.00|-3.14|00010906|0|1| +261|2023-10-06T21:58:47.6080000-07:00|Change|400217B0||||| +37|2023-10-06T21:58:48.1130000-07:00|40021585|Zeromus|00010903|23766498||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:48.1580000-07:00|4002156E|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||103.20|91.40|0.00|0.00|00010907|0|0| +21|2023-10-06T21:58:48.1580000-07:00|4002156F|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||86.20|97.20|0.00|0.00|00010908|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021570|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||118.00|83.00|0.00|0.00|00010909|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021571|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||113.80|89.20|0.00|0.00|0001090A|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021572|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||110.60|84.00|0.00|0.00|0001090B|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021573|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||105.00|82.40|0.00|0.00|0001090C|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021574|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||100.00|85.60|0.00|0.00|0001090D|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021575|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||95.00|82.40|0.00|0.00|0001090E|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021576|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||89.40|84.00|0.00|0.00|0001090F|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021577|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||86.20|89.20|0.00|0.00|00010910|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021578|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||82.00|83.00|0.00|0.00|00010911|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021579|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||118.00|102.00|0.00|0.00|00010912|0|0| +261|2023-10-06T21:58:47.8470000-07:00|Change|4002156E||||||||||||| +21|2023-10-06T21:58:48.1580000-07:00|4002157A|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||82.00|102.00|0.00|0.00|00010913|0|0| +21|2023-10-06T21:58:48.1580000-07:00|4002157B|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||100.00|117.60|0.00|0.00|00010914|0|0| +21|2023-10-06T21:58:48.1580000-07:00|4002157C|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||117.02|93.31|0.00|2.72|00010915|0|0| +21|2023-10-06T21:58:48.1580000-07:00|4002157D|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||90.32|95.63|0.00|-2.53|00010916|0|0| +21|2023-10-06T21:58:48.1580000-07:00|4002157E|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||95.48|91.51|0.00|-2.76|00010917|0|0| +21|2023-10-06T21:58:48.1580000-07:00|4002157F|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||107.47|92.67|0.00|3.08|00010918|0|0| +261|2023-10-06T21:58:47.8470000-07:00|Change|4002156F||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021575||||||||||||| +21|2023-10-06T21:58:48.1580000-07:00|40021580|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||119.10|89.86|0.00|2.41|00010919|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021581|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||109.36|88.67|0.00|2.66|0001091A|0|0| +21|2023-10-06T21:58:48.1580000-07:00|40021582|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||89.92|91.02|0.00|-2.99|0001091B|0|0| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021572||||||||||||| +21|2023-10-06T21:58:48.1580000-07:00|40021583|Comet|8D34|Explosion|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||69200|69200|10000|10000|||95.20|86.59|0.00|3.10|0001091C|0|0| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021573||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021576||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021578||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021577||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021571||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021570||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021574||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021579||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|4002157B||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|4002157C||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|4002157D||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|4002157E||||||||||||| +20|2023-10-06T21:58:48.1580000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.20|105.07|0.00|0.88| +261|2023-10-06T21:58:47.8470000-07:00|Change|4002157F||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021582||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021583||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021581||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|40021580||||||||||||| +261|2023-10-06T21:58:47.8470000-07:00|Change|4002157A||||||||||||| +261|2023-10-06T21:58:47.9660000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T21:58:48.3350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|D230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23766498|40478540|10000|10000|||100.00|80.10|0.00|0.00|59464|90349|7200|10000|||99.51|102.22|0.00|3.12|0001091D|0|1| +31|2023-10-06T21:58:48.3350000-07:00|10FF0001||||| +37|2023-10-06T21:58:48.4240000-07:00|40021585|Zeromus|00010904|23760984||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:48.4240000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750005|314D0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|59464|90349|7200|10000|||99.51|102.22|0.00|3.12|23766498|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001091E|0|1| +21|2023-10-06T21:58:48.4240000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|452003|56480000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|23766498|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9000|10000|||100.30|103.72|0.00|-2.83|0001091F|0|1| +38|2023-10-06T21:58:48.4240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|0||100.30|103.72|0.00|-2.83|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:48.4240000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:58:48.0760000-07:00|Change|10FF0006||||| +21|2023-10-06T21:58:48.5120000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23766498|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9000|10000|||100.30|103.72|0.00|-2.83|00010920|0|1| +21|2023-10-06T21:58:48.5560000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|724003|17400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23766498|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6450|10000|||101.91|103.65|0.00|-3.06|00010921|0|1| +261|2023-10-06T21:58:48.1740000-07:00|Change|10FF000B||||||||| +24|2023-10-06T21:58:48.6900000-07:00|40021585|Zeromus|DoT|0|FD5|23760984|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:58:48.6900000-07:00|4254|3| +38|2023-10-06T21:58:48.6900000-07:00|40021585|Zeromus|005A5A00|23756931|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:58:48.6900000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T21:58:48.8240000-07:00|40021585|Zeromus|00010902|23743405||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:48.8240000-07:00|10FF0001|Sesuga Sapisuga|00010902|59464|90349|7600|10000|0||99.51|102.22|0.00|3.12|1300|0|0|0| +261|2023-10-06T21:58:48.3670000-07:00|Change|10FF0001||| +37|2023-10-06T21:58:48.8690000-07:00|40021585|Zeromus|0001091D|23740042||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:49.0470000-07:00|40021585|Zeromus|0001091F|23717954||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:49.0470000-07:00|10FF0006|Wowobora Gogobora|0001091F|57266|57266|8700|10000|0||100.11|103.35|0.00|-3.14|1B00|0|0|01|0B25|0|0|| +37|2023-10-06T21:58:49.0470000-07:00|40021585|Zeromus|00010920|23717799||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:49.0470000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|10B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23740042|40478540|10000|10000|||100.00|80.10|0.00|0.00|87162|90890|10000|10000|||99.63|102.68|0.00|3.13|00010922|0|1| +38|2023-10-06T21:58:49.0470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|0||100.11|103.35|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:49.0470000-07:00|74C|Everlasting Flight|0.00|4002179B|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|57266|| +39|2023-10-06T21:58:49.0910000-07:00|10FF0004|Buhojaqe Zijaqe|49578|57078|6650|10000|||101.21|105.09|0.00|-3.09| +21|2023-10-06T21:58:49.0910000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|33050000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|23740042|40478540|10000|10000|||100.00|80.10|0.00|0.00|49008|57078|6450|10000|||101.21|105.09|0.00|-3.09|00010923|0|1| +39|2023-10-06T21:58:49.1350000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||100.21|104.11|0.00|-3.13| +39|2023-10-06T21:58:49.1350000-07:00|10FF0003|Gegehi Gehi|51669|51669|6650|10000|||101.66|100.53|0.00|-3.06| +261|2023-10-06T21:58:48.6730000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:58:49.1800000-07:00|40021585|Zeromus|00010921|23711847||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:49.1800000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|19160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23717799|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8700|10000|||100.11|103.35|0.00|-3.14|00010924|0|1| +38|2023-10-06T21:58:49.1800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|0||100.11|103.35|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:49.1800000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:58:49.1800000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6650|10000|0||101.66|100.53|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:49.1800000-07:00|74C|Everlasting Flight|0.00|4002179B|Demi-Phoenix|10FF0003|Gegehi Gehi|00|51669|| +37|2023-10-06T21:58:49.2250000-07:00|10FF0001|Sesuga Sapisuga|0001091E|46843||||||99.51|102.22|0.00|3.12| +39|2023-10-06T21:58:49.2690000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8900|10000|||100.11|103.35|0.00|-3.14| +21|2023-10-06T21:58:49.2690000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2F3A0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|23711847|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.21|104.11|0.00|-3.13|00010925|0|1| +261|2023-10-06T21:58:48.7970000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:58:49.3140000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|724003|20B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23711847|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6650|10000|||101.67|100.52|0.00|-3.06|00010926|0|1| +38|2023-10-06T21:58:49.3580000-07:00|40021585|Zeromus|005A5A00|23711847|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:58:49.3580000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +261|2023-10-06T21:58:48.9200000-07:00|Change|10FF0004||||||||||||||||||||||||||| +27|2023-10-06T21:58:49.4460000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:58:49.4460000-07:00|10FF0003|Gegehi Gehi|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:58:49.4460000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:58:49.4460000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:58:49.4460000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0146|0000|0000|0000| +27|2023-10-06T21:58:49.4460000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0146|0000|0000|0000| +261|2023-10-06T21:58:49.1450000-07:00|Change|400217AF||||| +38|2023-10-06T21:58:49.5800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|87162|90890|10000|10000|0||99.66|100.60|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:49.5800000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +38|2023-10-06T21:58:49.6240000-07:00|400217B3||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:49.6240000-07:00|400217B3||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T21:58:49.6680000-07:00|40021585|Zeromus|00010906|23690138||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:49.7120000-07:00|40021585|Zeromus|00010922|23685865||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:49.7570000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23685865|40478540|10000|10000|||100.00|80.10|0.00|0.00|57922|58451|10000|10000|||100.08|102.62|0.00|-3.14|00010927|0|1| +39|2023-10-06T21:58:49.8010000-07:00|10FF0001|Sesuga Sapisuga|47746|90349|7800|10000|||99.51|102.22|0.00|3.12| +39|2023-10-06T21:58:49.8460000-07:00|400217B0|Bunshin|55409|55409|10000|10000|||100.08|100.57|0.00|-3.14| +261|2023-10-06T21:58:49.4370000-07:00|Change|10FF0001||| +37|2023-10-06T21:58:49.8910000-07:00|40021585|Zeromus|00010923|23672804||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:49.8910000-07:00|40021585|Zeromus|00010926|23664436||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:49.8910000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23685865|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6650|10000|||101.67|100.51|0.00|-3.06|00010928|0|1| +37|2023-10-06T21:58:49.9350000-07:00|40021585|Zeromus|00010924|23658014||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:49.4370000-07:00|Add|400217B3||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:58:49.5380000-07:00|400217B3|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||100.12|101.60|0.00|0.01| +21|2023-10-06T21:58:49.9800000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|BAB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23685865|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.21|104.11|0.00|-3.13|00010929|0|1| +261|2023-10-06T21:58:49.5380000-07:00|Change|400217B3||| +21|2023-10-06T21:58:50.0260000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|30200000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|23658014|40478540|10000|10000|||100.00|80.10|0.00|0.00|47746|90349|7800|10000|||99.51|102.22|0.00|3.12|0001092A|0|1| +20|2023-10-06T21:58:50.0260000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|101.67|100.51|0.00|-3.06| +38|2023-10-06T21:58:50.0260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|47746|90349|7800|10000|0||99.51|102.22|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:50.0260000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +37|2023-10-06T21:58:50.0700000-07:00|40021585|Zeromus|00010925|23645924||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:50.1600000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|21C90000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|23658014|40478540|10000|10000|||100.00|80.10|0.00|0.00|57922|58451|10000|10000|||99.51|101.68|0.00|-2.60|0001092B|0|1| +38|2023-10-06T21:58:50.1600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57922|58451|10000|10000|0||99.51|101.68|0.00|-2.60|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:50.1600000-07:00|7A2|Bunshin|24.39|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|58451|58451| +261|2023-10-06T21:58:49.7300000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021582||| +261|2023-10-06T21:58:49.8480000-07:00|Change|4002157A||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021576||| +261|2023-10-06T21:58:49.8480000-07:00|Change|4002157E||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021583||| +261|2023-10-06T21:58:49.8480000-07:00|Change|4002156E||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021571||| +261|2023-10-06T21:58:49.8480000-07:00|Change|4002156F||| +261|2023-10-06T21:58:49.8480000-07:00|Change|4002157D||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021572||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021577||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021570||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021579||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021581||| +261|2023-10-06T21:58:49.8480000-07:00|Change|4002157B||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021578||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021574||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021575||| +261|2023-10-06T21:58:49.8480000-07:00|Change|4002157F||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021573||| +261|2023-10-06T21:58:49.8480000-07:00|Change|40021580||| +261|2023-10-06T21:58:49.8480000-07:00|Change|4002157C||| +261|2023-10-06T21:58:49.8480000-07:00|Change|400217B0||||||||| +21|2023-10-06T21:58:50.2490000-07:00|400217B0|Bunshin|4405|Spinning Edge|40021585|Zeromus|714003|17A60000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|23645924|40478540|10000|10000|||100.00|80.10|0.00|0.00|55409|55409|10000|10000|||99.14|101.06|0.00|3.10|0001092C|0|1| +37|2023-10-06T21:58:50.2930000-07:00|40021585|Zeromus|00010927|23643554||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:50.3390000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||99.42|101.53|0.00|-3.11| +21|2023-10-06T21:58:50.3390000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|20130000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|23645924|40478540|10000|10000|||100.00|80.10|0.00|0.00|87162|90890|10000|10000|||99.99|100.60|0.00|3.09|0001092D|0|1| +261|2023-10-06T21:58:49.8480000-07:00|Change|400217B0||| +37|2023-10-06T21:58:50.4280000-07:00|40021585|Zeromus|00010928|23643519||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:50.4720000-07:00|10FF0007|Kehabiqo Febiqo|88070|90890|10000|10000|||99.99|100.60|0.00|-3.14| +37|2023-10-06T21:58:50.5620000-07:00|40021585|Zeromus|0001092B|23634870||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:50.5620000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|1.926|102.16|104.66|0.00|2.15| +261|2023-10-06T21:58:50.1800000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T21:58:50.6060000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23643519|40478540|10000|10000|||100.00|80.10|0.00|0.00|88070|90890|10000|10000|||99.99|100.60|-0.02|-3.14|0001092E|0|1| +21|2023-10-06T21:58:50.6070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23643519|40478540|10000|10000|||100.00|80.10|0.00|0.00|47746|90349|7800|10000|||99.51|102.22|0.00|3.12|0001092F|0|1| +38|2023-10-06T21:58:50.6070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88070|90890|10000|10000|0||99.99|100.60|-0.02|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:50.6070000-07:00|8C8|Blunt Resistance Down|0.00|4002157E|Comet|10FF0007|Kehabiqo Febiqo|00|90890|69200| +31|2023-10-06T21:58:50.6070000-07:00|10FF0001||||| +37|2023-10-06T21:58:50.6500000-07:00|40021585|Zeromus|0001092C|23628816||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:58:50.6500000-07:00|400217B3|Carbuncle|400217B3|Carbuncle|01| +261|2023-10-06T21:58:50.1800000-07:00|Change|400217B3||| +37|2023-10-06T21:58:50.7390000-07:00|40021585|Zeromus|00010929|23625829||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:50.8280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|47746|90349|7800|10000|0||99.51|102.22|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:50.8280000-07:00|8C8|Blunt Resistance Down|0.00|4002157D|Comet|10FF0001|Sesuga Sapisuga|00|90349|69200| +21|2023-10-06T21:58:50.9180000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|357C0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|23625829|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8900|10000|||100.40|100.81|0.00|2.77|00010930|0|1| +38|2023-10-06T21:58:50.9180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8600|10000|0||100.40|100.81|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:50.9180000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:58:50.4590000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:50.9620000-07:00|40021585|Zeromus|0001092D|23617618||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:51.0080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49578|57078|6250|10000|0||102.16|104.66|0.00|2.15|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:51.0080000-07:00|8C8|Blunt Resistance Down|0.00|4002157C|Comet|10FF0004|Buhojaqe Zijaqe|00|57078|69200| +37|2023-10-06T21:58:51.1400000-07:00|40021585|Zeromus|0001092E|23614608||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:51.1400000-07:00|40021585|Zeromus|0001092F|23612456||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:51.3180000-07:00|40021585|Zeromus|0001092A|23600136||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:51.3180000-07:00|10FF0001|Sesuga Sapisuga|0001092A|47746|90349|8200|10000|0||99.51|102.22|0.00|3.12|1300|0|0|0| +38|2023-10-06T21:58:51.3180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|47746|90349|8200|10000|0||99.51|102.22|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:58:51.3180000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:58:50.7860000-07:00|Change|10FF0001||| +21|2023-10-06T21:58:51.4510000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750003|3E380000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|47746|90349|8200|10000|||99.51|102.22|0.00|3.12|23600136|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010931|0|1| +21|2023-10-06T21:58:51.4510000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|150003|2E650000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|23600136|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6650|10000|||101.67|100.51|0.00|-3.06|00010932|0|1| +38|2023-10-06T21:58:51.4510000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6450|10000|0||101.67|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:51.4510000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +30|2023-10-06T21:58:51.4510000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:58:51.0280000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T21:58:51.5410000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|19480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23600136|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8600|10000|||100.79|100.33|0.00|-3.10|00010933|0|1| +21|2023-10-06T21:58:51.5410000-07:00|10FF0001|Sesuga Sapisuga|03|Sprint|10FF0001|Sesuga Sapisuga|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|47746|90349|8200|10000|||99.51|102.22|0.00|3.12|47746|90349|8200|10000|||99.51|102.22|0.00|3.12|00010934|0|1| +38|2023-10-06T21:58:51.5410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8600|10000|0||100.79|100.33|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:51.5410000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:58:51.5860000-07:00|40021585|Zeromus|00010930|23586444||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:51.6760000-07:00|10FF0001|Sesuga Sapisuga|00010934|47746|90349|8200|10000|0||99.51|102.22|0.00|3.12|1300|0|0|01|02000032|1E|41200000|| +26|2023-10-06T21:58:51.6760000-07:00|32|Sprint|10.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|90349|90349| +24|2023-10-06T21:58:51.6760000-07:00|40021585|Zeromus|DoT|0|C8C|23586444|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:58:51.6760000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23586444|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8600|10000|||100.79|100.33|0.00|-3.10|00010935|0|1| +36|2023-10-06T21:58:51.6760000-07:00|4330|3| +38|2023-10-06T21:58:51.6760000-07:00|40021585|Zeromus|005A5A00|23583232|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:58:51.6760000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +21|2023-10-06T21:58:51.7640000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|5B120000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|23583232|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.99|100.70|0.00|-3.05|00010936|0|1| +21|2023-10-06T21:58:51.9410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23583232|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.11|99.84|0.00|2.98|00010937|0|1| +21|2023-10-06T21:58:51.9850000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|4|2F170000|C30E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|49578|57078|6250|10000|||102.16|104.66|0.00|2.15|49578|57078|6250|10000|||102.16|104.66|0.00|2.15|00010938|0|1| +38|2023-10-06T21:58:51.9850000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49578|57078|5250|10000|38||102.16|104.66|0.00|2.15|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:51.9850000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +261|2023-10-06T21:58:51.5180000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T21:58:52.1180000-07:00|10FF0004|Buhojaqe Zijaqe|50148|57078|5450|10000|||102.16|104.66|0.00|2.15| +39|2023-10-06T21:58:52.1180000-07:00|10FF0003|Gegehi Gehi|51669|51669|6650|10000|||101.67|100.51|0.00|-3.06| +38|2023-10-06T21:58:52.1180000-07:00|40021585|Zeromus|005A5A00|23583232|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:58:52.1180000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|57078| +30|2023-10-06T21:58:52.1180000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|58451| +39|2023-10-06T21:58:52.1620000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.99|100.43|0.00|-3.05| +38|2023-10-06T21:58:52.1620000-07:00|10FF000B|Pusu Rosu|005A5A18|11089|55446|2000|10000|0||101.93|103.66|0.00|0.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:52.1620000-07:00|94|Raise|0.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|08|55446|51669| +26|2023-10-06T21:58:52.1620000-07:00|2B|Weakness|100.00|E0000000||10FF000B|Pusu Rosu|00|55446|| +26|2023-10-06T21:58:52.1620000-07:00|1A2|Transcendent|5.00|E0000000||10FF000B|Pusu Rosu|00|55446|| +261|2023-10-06T21:58:51.7080000-07:00|Change|10FF000B||||| +261|2023-10-06T21:58:51.8200000-07:00|Change|400217B0||| +37|2023-10-06T21:58:52.2060000-07:00|40021585|Zeromus|00010935|23583082||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:58:52.2060000-07:00|400217B3|Carbuncle|005A5A00|54388|54388|10000|10000|0||100.12|101.60|0.00|0.01|0|0|0|||||||||| +26|2023-10-06T21:58:52.2060000-07:00|30|Well Fed|750.42|10FF0006|Wowobora Gogobora|400217B3|Carbuncle|2964|54388|57266| +26|2023-10-06T21:58:52.2060000-07:00|441|HP Penalty|9999.00|E0000000||400217B3|Carbuncle|00|54388|| +26|2023-10-06T21:58:52.2060000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|400217B3|Carbuncle|01|54388|57266| +21|2023-10-06T21:58:52.2060000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8600|10000|||100.79|100.33|0.00|-3.10|57266|57266|8600|10000|||100.79|100.33|0.00|-3.10|00010939|0|1| +37|2023-10-06T21:58:52.2510000-07:00|10FF0001|Sesuga Sapisuga|00010931|31818||||||99.51|102.22|0.00|3.12| +37|2023-10-06T21:58:52.2510000-07:00|40021585|Zeromus|00010932|23571205||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:52.2960000-07:00|40021585|Zeromus|00010933|23564733||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:52.2960000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8800|10000|||100.79|100.33|0.00|-3.10| +21|2023-10-06T21:58:52.3410000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32716003|480C0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|23583232|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.11|99.84|0.00|2.98|0001093A|0|1| +38|2023-10-06T21:58:52.3410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||99.11|99.84|0.00|2.98|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:58:51.9400000-07:00|Change|10FF0006||||||||| +26|2023-10-06T21:58:52.3410000-07:00|7A2|Bunshin|22.21|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|58451|58451| +21|2023-10-06T21:58:52.3850000-07:00|10FF000B|Pusu Rosu|8C|Benediction|10FF000B|Pusu Rosu|4|D8960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11089|55446|2000|10000|||101.93|103.66|0.00|0.00|11089|55446|2000|10000|||101.93|103.66|0.00|0.00|0001093B|0|1| +38|2023-10-06T21:58:52.3850000-07:00|10FF000B|Pusu Rosu|005A5A18|11089|55446|2000|10000|0||101.93|103.66|0.00|0.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:52.3850000-07:00|1A2|Transcendent|0.00|E0000000||10FF000B|Pusu Rosu|00|55446|| +261|2023-10-06T21:58:52.0600000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:58:52.4290000-07:00|400217B0|Bunshin|4406|Gust Slash|40021585|Zeromus|714003|13F90000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|23564733|40478540|10000|10000|||100.00|80.10|0.00|0.00|55409|55409|10000|10000|||99.13|99.86|0.00|3.10|0001093C|0|1| +37|2023-10-06T21:58:52.4730000-07:00|40021585|Zeromus|00010937|23562176||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:52.0600000-07:00|Change|40021585||||||||||||| +21|2023-10-06T21:58:52.4730000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|352003|54B30000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|23564733|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6650|10000|||101.60|100.10|0.00|-3.02|0001093D|0|1| +38|2023-10-06T21:58:52.4730000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6350|10000|0||101.60|100.10|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:52.4730000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:58:52.5620000-07:00|40021585|Zeromus|00010936|23538862||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:58:52.5620000-07:00|40021585|Zeromus|8B43|Visceral Whirl|40021585|Zeromus|7.700|100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:52.0600000-07:00|Change|400215A3||||||||||||||||||||| +20|2023-10-06T21:58:52.5620000-07:00|400215A2|Zeromus|8B44|Visceral Whirl|400215A2|Zeromus|8.500|106.00|118.00|0.00|-2.76| +261|2023-10-06T21:58:52.0600000-07:00|Change|400215A2||||||||||||||||||||| +20|2023-10-06T21:58:52.5620000-07:00|400215A3|Zeromus|8B45|Visceral Whirl|400215A3|Zeromus|8.500|106.00|118.00|0.00|3.08| +261|2023-10-06T21:58:52.0600000-07:00|Change|400217B0||||||||| +21|2023-10-06T21:58:52.6060000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35712003|2FED0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|23538862|40478540|10000|10000|||100.00|80.10|0.00|0.00|31818|90349|8200|10000|||99.51|102.22|0.00|3.12|0001093E|0|1| +21|2023-10-06T21:58:52.6500000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AFE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23538862|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.19|99.74|-0.01|-3.10|0001093F|0|1| +37|2023-10-06T21:58:52.7400000-07:00|40021585|Zeromus|0001093A|23520418||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:52.7840000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|328B0000|143E|340000|4|182F8000|11B|2A8000|0|0|0|0|0|0|0|0|23538862|40478540|10000|10000|||100.00|80.10|0.00|0.00|88070|90890|10000|10000|||99.78|100.36|0.00|-1.70|00010940|0|1| +37|2023-10-06T21:58:52.8280000-07:00|40021585|Zeromus|0001093C|23515305||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:52.8280000-07:00|10FF0001|Sesuga Sapisuga|32721|90349|8400|10000|||99.51|102.22|0.00|3.12| +261|2023-10-06T21:58:52.3540000-07:00|Change|10FF0001||| +39|2023-10-06T21:58:52.8730000-07:00|400217B0|Bunshin|55409|55409|10000|10000|||99.13|99.86|0.00|3.10| +21|2023-10-06T21:58:52.8730000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23515305|40478540|10000|10000|||100.00|80.10|0.00|0.00|32721|90349|8400|10000|||99.51|102.22|0.00|3.12|00010941|0|1| +31|2023-10-06T21:58:52.8730000-07:00|10FF0001||||| +37|2023-10-06T21:58:52.9620000-07:00|10FF0004|Buhojaqe Zijaqe|00010938|57078|57078|5450|10000|38||102.43|103.72|0.00|2.77|1C00|0|0|01|03000129|0|41E88B3F|| +261|2023-10-06T21:58:52.5590000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:58:53.0500000-07:00|10FF000B|Pusu Rosu|0001093B|55446||||||101.64|103.36|0.00|-1.36| +21|2023-10-06T21:58:53.0950000-07:00|400217B3|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|BD0E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8800|10000|||100.17|100.90|0.00|-1.20|54388|54388|10000|10000|||100.11|101.58|0.00|1.73|00010942|0|1| +38|2023-10-06T21:58:53.0950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8800|10000|19||100.17|100.90|0.00|-1.20|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:53.0950000-07:00|A8E|Radiant Aegis|29.96|400217B3|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54388| +22|2023-10-06T21:58:53.2280000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0004|Buhojaqe Zijaqe|9|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|00010943|0|8| +22|2023-10-06T21:58:53.2280000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF000B|Pusu Rosu|C30E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|2000|10000|||101.20|102.49|0.00|-2.17|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|00010943|1|8| +22|2023-10-06T21:58:53.2280000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0001|Sesuga Sapisuga|C30E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32721|90349|8400|10000|||99.51|102.22|0.00|3.12|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|00010943|2|8| +22|2023-10-06T21:58:53.2280000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0006|Wowobora Gogobora|C30E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8800|10000|||99.97|101.08|-0.01|-0.88|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|00010943|3|8| +22|2023-10-06T21:58:53.2280000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0007|Kehabiqo Febiqo|C30E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|88070|90890|10000|10000|||99.78|100.36|0.00|3.13|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|00010943|4|8| +22|2023-10-06T21:58:53.2280000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0008|Kokosaze Lulusaze|C30E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.21|99.69|0.00|-3.10|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|00010943|5|8| +22|2023-10-06T21:58:53.2280000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF000A|Dukaro Nezikaro|C30E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||99.11|99.84|0.00|3.10|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|00010943|6|8| +22|2023-10-06T21:58:53.2280000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0003|Gegehi Gehi|C30E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|6350|10000|||101.44|98.86|0.00|-3.05|57078|57078|5450|10000|||102.46|103.55|0.00|3.04|00010943|7|8| +37|2023-10-06T21:58:53.2720000-07:00|40021585|Zeromus|0001093D|23493622||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:53.3620000-07:00|40021585|Zeromus|0001093E|23481353||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:53.3620000-07:00|10FF0001|Sesuga Sapisuga|0001093E|32721|90349|9400|10000|0||99.51|102.22|0.00|3.12|1300|0|0|0| +39|2023-10-06T21:58:53.3620000-07:00|10FF000B|Pusu Rosu|55446|55446|2281|10000|||100.82|101.75|0.00|-2.57| +39|2023-10-06T21:58:53.3620000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||99.11|99.84|0.00|3.10| +37|2023-10-06T21:58:53.4070000-07:00|40021585|Zeromus|0001093F|23478539||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:53.4070000-07:00|40021585|Zeromus|00010941|23476866||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:53.4070000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|454003|407D0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|23481353|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8800|10000|||99.87|101.18|0.00|-0.71|00010944|0|1| +38|2023-10-06T21:58:53.4070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|19||99.87|101.18|0.00|-0.71|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:53.4070000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:58:53.0180000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T21:58:53.0180000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:58:53.0180000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:58:53.0180000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:58:53.4510000-07:00|10FF0007|Kehabiqo Febiqo|88978|90890|10000|10000|||99.78|100.36|0.00|3.13| +04|2023-10-06T21:58:53.1300000-07:00|400217AF|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|54388|0|10000|||103.20|101.90|0.00|-3.08| +261|2023-10-06T21:58:53.1300000-07:00|Remove|400217AF| +261|2023-10-06T21:58:53.4150000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:53.8960000-07:00|10FF0006|Wowobora Gogobora|00010942|57266|57266|8500|10000|19||99.87|101.18|0.00|3.14|1B00|0|0|01|0A8E|0|41E99997|| +38|2023-10-06T21:58:53.8960000-07:00|400217B3|Carbuncle|005A5A00|54388|54388|10000|10000|0||100.11|101.58|0.00|-2.62|0|0|0||||||| +30|2023-10-06T21:58:53.8960000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|400217B3|Carbuncle|01|54388|57266| +21|2023-10-06T21:58:53.9860000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23476866|40478540|10000|10000|||100.00|80.10|0.00|0.00|88978|90890|10000|10000|||99.78|100.36|0.00|3.13|00010945|0|1| +21|2023-10-06T21:58:54.0300000-07:00|10FF0007|Kehabiqo Febiqo|03|Sprint|10FF0007|Kehabiqo Febiqo|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|88978|90890|10000|10000|||99.78|100.36|0.00|3.13|88978|90890|10000|10000|||99.78|100.36|0.00|3.13|00010946|0|1| +21|2023-10-06T21:58:54.0300000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|189A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23476866|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||99.87|101.18|0.00|3.14|00010947|0|1| +38|2023-10-06T21:58:54.0300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|19||99.87|101.18|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:54.0300000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:58:54.0750000-07:00|40021585|Zeromus|00010944|23460357||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:54.1200000-07:00|10FF000B|Pusu Rosu|00010943|55446|55446|2281|10000|39||100.48|101.37|0.00|-2.98|1801|0|0|01|02000129|0|41E00000|| +26|2023-10-06T21:58:54.1200000-07:00|129|Galvanize|28.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +21|2023-10-06T21:58:54.1200000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|11190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23476866|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.11|99.84|0.00|3.10|00010948|0|1| +38|2023-10-06T21:58:54.1200000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2281|10000|39||100.48|101.37|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:58:54.1640000-07:00|10FF0007|Kehabiqo Febiqo|00010946|88978|90890|10000|10000|0||99.78|100.36|0.00|3.13|1500|0|0|01|01000032|1E|41200000|| +26|2023-10-06T21:58:54.1640000-07:00|32|Sprint|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|1E|90890|90890| +37|2023-10-06T21:58:54.2540000-07:00|10FF0001|Sesuga Sapisuga|00010943|32721|90349|9400|10000|24||95.58|103.39|0.00|-2.46|1302|0|0|01|07000129|0|41E00000|| +26|2023-10-06T21:58:54.2540000-07:00|129|Galvanize|28.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +21|2023-10-06T21:58:54.2540000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|724003|25520000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|23460357|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.21|99.69|0.00|-3.10|00010949|0|1| +38|2023-10-06T21:58:54.2540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|32721|90349|9400|10000|24||95.58|103.39|0.00|-2.46|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:58:54.2980000-07:00|40021585|Zeromus|00010940|23447418||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:54.2980000-07:00|10FF0007|Kehabiqo Febiqo|00010940|90890||||||99.78|100.36|0.00|3.13| +261|2023-10-06T21:58:53.9760000-07:00|Change|400217B0||| +37|2023-10-06T21:58:54.3880000-07:00|10FF0006|Wowobora Gogobora|00010943|57266|57266|8500|10000|57||99.87|101.18|0.00|3.14|1B03|0|0|01|01000129|0|41E00000|| +26|2023-10-06T21:58:54.3880000-07:00|129|Galvanize|28.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:58:54.3880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|57||99.87|101.18|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:58:54.4770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||99.78|100.36|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:54.4770000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:58:54.4770000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6350|10000|0||101.15|91.40|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:54.4770000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +35|2023-10-06T21:58:54.4770000-07:00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|0000|0000|00A3|||| +38|2023-10-06T21:58:54.4770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|32721|90349|9400|10000|24||96.36|103.16|0.00|-2.89|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:54.4770000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:58:54.4770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||99.11|99.84|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:54.4770000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +35|2023-10-06T21:58:54.4770000-07:00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|0000|0000|00A3|||| +38|2023-10-06T21:58:54.4770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5450|10000|38||102.48|103.35|0.00|-2.29|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:54.4770000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:58:54.4770000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|57||99.87|101.18|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:54.4770000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +35|2023-10-06T21:58:54.4770000-07:00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|0000|0000|00A3|||| +21|2023-10-06T21:58:54.4770000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|6350|10000|||101.15|91.40|0.00|-3.13|51669|51669|6350|10000|||101.15|91.40|0.00|-3.13|0001094A|0|1| +38|2023-10-06T21:58:54.4770000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6350|10000|0||101.15|91.40|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:54.4770000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:58:54.5210000-07:00|40021585|Zeromus|00010945|23444572||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:54.5210000-07:00|10FF0007|Kehabiqo Febiqo|00010943|90890|90890|10000|10000|23||99.78|100.36|0.00|3.13|1504|0|0|01|04000129|0|41E00000|| +26|2023-10-06T21:58:54.5210000-07:00|129|Galvanize|28.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:58:54.5210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|23||99.78|100.36|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:58:54.0930000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:58:54.6550000-07:00|10FF0008|Kokosaze Lulusaze|00010943|63151|63151|10000|10000|34||100.21|99.69|0.00|-3.13|1F05|0|0|01|02000129|0|41E00000|| +26|2023-10-06T21:58:54.6550000-07:00|129|Galvanize|28.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +37|2023-10-06T21:58:54.6550000-07:00|40021585|Zeromus|00010948|23440195||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:58:54.6550000-07:00|440C|3| +38|2023-10-06T21:58:54.6550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|34||100.21|99.69|0.00|-3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:58:54.7900000-07:00|40021585|Zeromus|00010947|23433897||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:54.7900000-07:00|10FF000A|Dukaro Nezikaro|00010943|58451|58451|10000|10000|37||99.11|99.75|0.00|3.12|1E06|0|0|01|09000129|0|41E00000|| +26|2023-10-06T21:58:54.7900000-07:00|129|Galvanize|28.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +21|2023-10-06T21:58:54.7900000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|3FEE0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|23440195|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||99.11|99.75|0.00|3.12|0001094B|0|1| +38|2023-10-06T21:58:54.7900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|37||99.11|99.75|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:54.7900000-07:00|7A2|Bunshin|19.76|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +21|2023-10-06T21:58:54.8350000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23440195|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||99.87|101.18|0.00|3.14|0001094C|0|1| +21|2023-10-06T21:58:54.8350000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23440195|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6350|10000|||101.15|91.36|-0.02|-3.13|0001094D|0|1| +21|2023-10-06T21:58:54.8790000-07:00|400217B0|Bunshin|4407|Aeolian Edge|40021585|Zeromus|710003|10340000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|23440195|40478540|10000|10000|||100.00|80.10|0.00|0.00|55409|55409|10000|10000|||99.13|99.86|0.00|3.10|0001094E|0|1| +261|2023-10-06T21:58:54.5280000-07:00|Change|400217B0||||||||| +37|2023-10-06T21:58:54.9240000-07:00|10FF0003|Gegehi Gehi|00010943|51669|51669|6350|10000|41||101.15|91.36|0.00|-3.13|2307|0|0|02|020004D6|0|C1A00000|||||| +26|2023-10-06T21:58:54.9240000-07:00|129|Galvanize|28.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +21|2023-10-06T21:58:54.9240000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|23433897|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|5450|10000|||100.07|103.95|0.00|-1.42|0001094F|0|1| +38|2023-10-06T21:58:54.9240000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6350|10000|41||101.15|91.36|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:58:55.0130000-07:00|40021585|Zeromus|00010949|23424343||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:54.5280000-07:00|Change|10FF000B||||||||||||| +261|2023-10-06T21:58:54.6430000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:58:55.1020000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|5250|10000|||100.07|103.95|0.00|-1.42| +21|2023-10-06T21:58:55.1020000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2DE60000|4|26F18000|0|0|0|0|0|0|0|0|0|0|0|0|23433897|40478540|10000|10000|||100.00|80.10|0.00|0.00|32721|90349|9400|10000|||98.62|101.54|0.00|3.08|00010950|0|1| +38|2023-10-06T21:58:55.1020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|32721|90349|8400|10000|24||98.62|101.54|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:55.1020000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:58:54.6430000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:58:54.6430000-07:00|Change|10FF0003||||||||| +39|2023-10-06T21:58:55.1460000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||100.22|99.60|0.00|3.03| +39|2023-10-06T21:58:55.1460000-07:00|10FF0003|Gegehi Gehi|51669|51669|6550|10000|||101.15|91.32|0.00|-3.12| +21|2023-10-06T21:58:55.1460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23424343|40478540|10000|10000|||100.00|80.10|0.00|0.00|32721|90349|8400|10000|||98.47|101.39|0.00|-2.28|00010951|0|1| +31|2023-10-06T21:58:55.1460000-07:00|10FF0001||||| +37|2023-10-06T21:58:55.2350000-07:00|10FF0003|Gegehi Gehi|0001094A|51669|51669|6550|10000|41||101.15|91.27|-0.02|-3.12|2300|0|0|01|020004D6|0|41A00000|| +38|2023-10-06T21:58:55.2350000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6550|10000|41||101.15|91.27|-0.02|-3.12|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:58:55.2800000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8700|10000|||99.67|101.23|-0.02|-1.99| +21|2023-10-06T21:58:55.2800000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|22D10000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|23424343|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||99.78|100.36|0.00|3.13|00010952|0|1| +261|2023-10-06T21:58:54.8710000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:55.3240000-07:00|40021585|Zeromus|0001094B|23407977||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:55.3240000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23424343|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||100.42|99.02|0.00|2.96|00010953|0|1| +37|2023-10-06T21:58:55.3690000-07:00|40021585|Zeromus|0001094C|23407823||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:55.3690000-07:00|40021585|Zeromus|0001094D|23407793||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:55.4150000-07:00|40021585|Zeromus|0001094E|23403645||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:55.5020000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|33870000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|23403645|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6550|10000|||101.15|91.16|0.00|-3.11|00010954|0|1| +38|2023-10-06T21:58:55.5020000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6250|10000|41||101.15|91.16|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:58:55.5020000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:58:55.5020000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:58:55.5470000-07:00|40021585|Zeromus|0001094F|23403645|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:58:55.5470000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|57078| +39|2023-10-06T21:58:55.5910000-07:00|400217B3|Carbuncle|54388|54388|10000|10000|||100.11|101.58|0.00|-2.62| +21|2023-10-06T21:58:55.6360000-07:00|10FF000B|Pusu Rosu|DF2|Tetragrammaton|10FF0001|Sesuga Sapisuga|200004|64410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32721|90349|8400|10000|||95.64|103.74|0.00|-2.41|55446|55446|2281|10000|||98.97|103.50|0.00|-0.88|00010955|0|1| +37|2023-10-06T21:58:55.6800000-07:00|40021585|Zeromus|00010951|23401876||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:55.3150000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:58:55.7240000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|756003|511B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23403645|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||98.97|97.62|0.00|-3.06|00010956|0|1| +37|2023-10-06T21:58:55.8130000-07:00|40021585|Zeromus|00010952|23392963||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:55.8130000-07:00|10FF0001|Sesuga Sapisuga|33624|90349|8600|10000|||94.93|104.19|0.00|-2.43| +261|2023-10-06T21:58:55.4060000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:58:55.8580000-07:00|40021585|Zeromus|00010950|23381213||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:55.8580000-07:00|10FF0001|Sesuga Sapisuga|00010950|43593||||||94.93|104.19|0.00|-2.43| +39|2023-10-06T21:58:55.8580000-07:00|400217B0|Bunshin|55409|55409|10000|10000|||98.96|99.11|0.00|3.09| +261|2023-10-06T21:58:55.4990000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:58:55.9020000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|23381213|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8700|10000|||96.39|99.52|-0.02|-2.42|00010957|0|1| +21|2023-10-06T21:58:55.9020000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|5250|10000|||95.94|105.91|0.00|-1.24|57078|57078|5250|10000|||95.94|105.91|0.00|-1.24|00010958|0|1| +38|2023-10-06T21:58:55.9020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|57||96.39|99.52|-0.02|-2.42|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:55.9020000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:58:55.4990000-07:00|Change|400217B3||||||||| +38|2023-10-06T21:58:55.9480000-07:00|400217B7||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:55.9480000-07:00|400217B7||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +03|2023-10-06T21:58:55.4990000-07:00|400217B7|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|54388|54388|10000|10000|||98.24|100.62|0.00|2.97| +261|2023-10-06T21:58:55.4990000-07:00|Add|400217B7||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:55.4990000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:58:55.5940000-07:00|Change|400217B7||||| +37|2023-10-06T21:58:56.0800000-07:00|40021585|Zeromus|00010953|23378963||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:55.7040000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:58:56.1700000-07:00|10FF0001|Sesuga Sapisuga|00010955|69258||||||92.94|105.87|0.00|-2.44| +38|2023-10-06T21:58:56.1700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|57||96.89|98.13|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:55.8250000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:58:56.2590000-07:00|40021585|Zeromus|00010954|23365772||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:56.2590000-07:00|10FF0003|Gegehi Gehi|00010954|51669|51669|6250|10000|41||104.09|88.82|0.00|2.39|2300|0|0|01|050004D3|0|41F00000|| +38|2023-10-06T21:58:56.2590000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6250|10000|41||104.09|88.82|0.00|2.39|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:58:56.3030000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23365772|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.19|93.42|0.00|2.61|00010959|0|1| +37|2023-10-06T21:58:56.3480000-07:00|40021585|Zeromus|00010956|23345009||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:56.3480000-07:00|10FF000B|Pusu Rosu|55446|55446|2562|10000|||97.22|104.24|0.00|-2.20| +39|2023-10-06T21:58:56.3480000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||101.19|93.42|0.00|2.61| +261|2023-10-06T21:58:55.9480000-07:00|Change|10FF000B||||||||||| +39|2023-10-06T21:58:56.4820000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||92.82|99.29|0.00|-1.02| +261|2023-10-06T21:58:56.0620000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:56.5260000-07:00|10FF0004|Buhojaqe Zijaqe|00010958|57078|57078|5250|10000|38||92.24|107.74|0.00|-1.04|1C00|0|0|01|070004B4|0|41A80000|| +26|2023-10-06T21:58:56.5260000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +261|2023-10-06T21:58:56.1820000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:58:56.1820000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:58:56.2730000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:58:56.7490000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2FF40000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|23345009|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||105.37|90.75|0.00|2.54|0001095A|0|1| +261|2023-10-06T21:58:56.3770000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:58:56.8370000-07:00|40021585|Zeromus|00010959|23342302||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:56.9260000-07:00|10FF0006|Wowobora Gogobora|00010957|57266|57266|8700|10000|57||98.14|95.80|0.00|2.70|1B00|0|0|01|08000AA4|0|0|| +21|2023-10-06T21:58:56.9260000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19470000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|23342302|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||103.97|90.68|0.00|2.36|0001095B|0|1| +38|2023-10-06T21:58:56.9260000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|57||98.14|95.80|0.00|2.70|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:56.9260000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:58:56.9260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|37||103.97|90.68|0.00|2.36|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:56.9260000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +26|2023-10-06T21:58:56.9260000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +261|2023-10-06T21:58:56.4780000-07:00|Change|400217B0||||||||| +261|2023-10-06T21:58:56.4780000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:58:56.5730000-07:00|Change|400217B7||| +21|2023-10-06T21:58:57.0150000-07:00|400217B0|Bunshin|4405|Spinning Edge|40021585|Zeromus|714003|14570000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|23342302|40478540|10000|10000|||100.00|80.10|0.00|0.00|55409|55409|10000|10000|||105.00|89.76|0.00|-2.66|0001095C|0|1| +261|2023-10-06T21:58:56.6840000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:58:56.7960000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:58:57.3260000-07:00|40021585|Zeromus|0001095B|23335831||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:57.3710000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BC70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23342302|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||89.49|98.16|0.00|-0.52|0001095D|0|1| +261|2023-10-06T21:58:57.0240000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:58:57.4150000-07:00|40021585|Zeromus|0001095C|23330624||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:57.1410000-07:00|Change|10FF0006||||||||| +38|2023-10-06T21:58:57.4590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69258|90349|8600|10000|24||84.35|112.32|0.00|-2.63|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:58:57.4590000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:58:57.4590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|37||105.59|89.18|0.00|-2.92|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:57.4590000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +37|2023-10-06T21:58:57.5480000-07:00|40021585|Zeromus|0001095A|23318348||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:57.5480000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|42E10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23330624|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6250|10000|||109.86|86.00|0.00|2.21|0001095E|0|1| +261|2023-10-06T21:58:57.1410000-07:00|Change|10FF0004||||||||| +27|2023-10-06T21:58:57.5930000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:58:57.5930000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:58:57.5930000-07:00|10FF0006|Wowobora Gogobora|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:58:57.5930000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:58:57.5930000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:58:57.5930000-07:00|10FF0003|Gegehi Gehi|0000|0000|010B|0000|0000|0000| +27|2023-10-06T21:58:57.5930000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|010B|0000|0000|0000| +20|2023-10-06T21:58:57.5930000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|1.500|84.35|112.32|0.00|-2.63| +261|2023-10-06T21:58:57.2340000-07:00|Change|10FF000A||||||||| +23|2023-10-06T21:58:57.6820000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|Cancelled| +24|2023-10-06T21:58:57.6820000-07:00|40021585|Zeromus|DoT|0|14A9|23318348|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:58:57.6830000-07:00|44E8|3| +38|2023-10-06T21:58:57.6830000-07:00|40021585|Zeromus|005A5A00|23313059|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:58:57.6830000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +21|2023-10-06T21:58:57.7270000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|202A0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|23313059|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||89.46|98.19|0.00|-0.69|0001095F|0|1| +20|2023-10-06T21:58:57.8150000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|1.500|83.75|112.62|0.00|-2.72| +37|2023-10-06T21:58:57.9050000-07:00|40021585|Zeromus|0001095D|23310044||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:57.5210000-07:00|Change|10FF000B||||||||| +21|2023-10-06T21:58:57.9500000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|24A70000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|23310044|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|5250|10000|||84.09|111.33|0.00|-1.35|00010960|0|1| +38|2023-10-06T21:58:57.9500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8700|10000|57||102.55|90.26|0.00|2.45|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:57.9500000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:58:57.9500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|4850|10000|38||84.09|111.33|0.00|-1.35|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:57.9500000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +261|2023-10-06T21:58:57.5210000-07:00|Change|400217B3||||||||| +21|2023-10-06T21:58:57.9940000-07:00|400217B7|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|154003|73970000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|23310044|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||98.24|100.62|0.00|2.97|00010961|0|1| +21|2023-10-06T21:58:57.9940000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23310044|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||109.97|85.20|0.00|2.38|00010962|0|1| +21|2023-10-06T21:58:57.9940000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|1310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23310044|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8700|10000|||102.55|90.26|0.00|2.45|00010963|0|1| +261|2023-10-06T21:58:57.6210000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:58:58.0840000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|5050|10000|||83.90|111.44|0.00|-3.01| +261|2023-10-06T21:58:57.7400000-07:00|Change|10FF0001||||||||||||||||||| +39|2023-10-06T21:58:58.1280000-07:00|10FF0003|Gegehi Gehi|51669|51669|6450|10000|||110.00|86.05|0.00|-2.11| +39|2023-10-06T21:58:58.1720000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||110.83|84.38|0.00|2.35| +261|2023-10-06T21:58:57.8610000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:58:57.8610000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:58:57.8610000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:58:58.3060000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8900|10000|||103.87|88.86|0.00|2.34| +21|2023-10-06T21:58:58.3060000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23310044|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6450|10000|||110.00|86.05|0.00|-2.11|00010964|0|1| +37|2023-10-06T21:58:58.3510000-07:00|40021585|Zeromus|0001095F|23301810||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:58.3510000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40021585|Zeromus|750003|45E90000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|23310044|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8900|10000|||104.36|88.41|0.00|2.34|00010965|0|1| +20|2023-10-06T21:58:58.3510000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|110.00|86.05|0.00|-2.11| +38|2023-10-06T21:58:58.3510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|57||104.36|88.41|0.00|2.34|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:58.3510000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +21|2023-10-06T21:58:58.4840000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23301810|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||109.30|86.41|0.00|-3.05|00010966|0|1| +37|2023-10-06T21:58:58.5290000-07:00|40021585|Zeromus|00010963|23301505||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:58.2020000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:58:58.7060000-07:00|40021585|Zeromus|0001095E|23284384||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:58.7500000-07:00|40021585|Zeromus|00010962|23282061||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:58:58.3930000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:58:58.7940000-07:00|10FF0001|Sesuga Sapisuga|70161|90349|8800|10000|||83.75|112.62|0.00|2.68| +21|2023-10-06T21:58:58.7940000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|24790000|4|25CF8000|0|0|0|0|0|0|0|0|0|0|0|0|23282061|40478540|10000|10000|||100.00|80.10|0.00|0.00|69258|90349|8600|10000|||83.75|112.62|0.00|2.68|00010967|0|1| +37|2023-10-06T21:58:58.8390000-07:00|40021585|Zeromus|00010964|23282016||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:58.8830000-07:00|40021585|Zeromus|00010960|23272633||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:58.8830000-07:00|400217B0|Bunshin|55409|55409|10000|10000|||105.00|89.76|0.00|-2.66| +261|2023-10-06T21:58:58.5860000-07:00|Change|400217B0||| +37|2023-10-06T21:58:59.0170000-07:00|40021585|Zeromus|00010966|23270401||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:58:59.0610000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32716003|4A0F0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|23270401|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||109.30|86.41|0.00|-3.05|00010968|0|1| +38|2023-10-06T21:58:59.0610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5600|10000|38||83.59|111.97|0.00|-1.16|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:58:58.5860000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:58:59.1490000-07:00|40021585|Zeromus|00010965|23252504||||||100.00|80.10|0.00|0.00| +04|2023-10-06T21:58:58.6980000-07:00|400217B0|Bunshin|00|5A|10FF000A|00||8313|10897|55409|55409|10000|10000|||105.00|89.76|0.00|-2.66| +261|2023-10-06T21:58:58.6980000-07:00|Remove|400217B0| +21|2023-10-06T21:58:59.2380000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|39B50000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|23252504|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||112.44|82.81|0.00|2.34|00010969|0|1| +261|2023-10-06T21:58:58.8100000-07:00|Change|10FF0001||||||||||||||| +261|2023-10-06T21:58:58.8100000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T21:58:58.9310000-07:00|Change|10FF000B||||||||||||| +39|2023-10-06T21:58:59.3720000-07:00|10FF000B|Pusu Rosu|55446|55446|2843|10000|||84.55|111.10|0.00|-0.75| +39|2023-10-06T21:58:59.3720000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||109.30|86.41|0.00|-2.17| +37|2023-10-06T21:58:59.4610000-07:00|40021585|Zeromus|00010968|23233545||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:58:59.4610000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||84.12|105.67|0.00|-0.47| +38|2023-10-06T21:58:59.4610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5600|10000|38||83.54|112.02|0.00|-1.19|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:58:59.4610000-07:00|317|Dissipation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:58:59.5030000-07:00|400217B8||005A5A00|54201|54201|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:58:59.5050000-07:00|400217B8||005A5A00|54201|54201|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T21:58:59.1570000-07:00|Change|400215A1||||||||| +261|2023-10-06T21:58:59.1570000-07:00|Remove|400217B3| +37|2023-10-06T21:58:59.5490000-07:00|40021585|Zeromus|00010967|23224208||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:58:59.5490000-07:00|10FF0001|Sesuga Sapisuga|00010967|79840||||||83.75|112.62|0.00|2.68| +261|2023-10-06T21:58:59.1570000-07:00|Add|400217B8||||||||||||||||||||||||||||||||||||| +22|2023-10-06T21:58:59.5940000-07:00|400215A1|Zeromus|8B55|the Dark Binds|10FF0007|Kehabiqo Febiqo|750603|0|100140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||84.12|105.67|0.00|-0.47|44|44|0|10000|||100.00|100.00|0.00|0.00|0001096A|0|2| +22|2023-10-06T21:58:59.5940000-07:00|400215A1|Zeromus|8B55|the Dark Binds|10FF0003|Gegehi Gehi|750603|0|100140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|51669|51669|6450|10000|||110.00|86.05|0.00|-2.11|44|44|0|10000|||100.00|100.00|0.00|0.00|0001096A|1|2| +20|2023-10-06T21:58:59.5940000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|84.55|111.10|0.00|-0.75| +261|2023-10-06T21:58:59.2560000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:58:59.2560000-07:00|Change|400217B8||| +03|2023-10-06T21:58:59.2560000-07:00|400217B8|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|54201|54201|10000|10000|||84.50|109.84|0.00|-1.01| +21|2023-10-06T21:58:59.6820000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8500|10000|||109.51|85.95|0.00|0.82|57266|57266|8500|10000|||109.51|85.95|0.00|0.82|0001096B|0|1| +38|2023-10-06T21:58:59.6820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|57||109.51|85.95|0.00|0.82|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:58:59.6820000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:58:59.7720000-07:00|10FF0007|Kehabiqo Febiqo|0001096A|90890|90890|10000|10000|10||84.12|105.67|0.00|-0.47|1500|0|0|01|090006FD|01|42700000|| +26|2023-10-06T21:58:59.7720000-07:00|6FD|Vulnerability Up|60.00|400215A1|Zeromus|10FF0007|Kehabiqo Febiqo|01|90890|44| +21|2023-10-06T21:58:59.7720000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|454003|3B7D0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|23224208|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|6450|10000|||110.00|86.05|0.00|-2.11|0001096C|0|1| +38|2023-10-06T21:58:59.7720000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6250|10000|41||110.00|86.05|0.00|-2.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:58:59.7720000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +26|2023-10-06T21:58:59.7720000-07:00|6FD|Vulnerability Up|59.78|400215A1|Zeromus|10FF0003|Gegehi Gehi|01|51669|44| +30|2023-10-06T21:58:59.7720000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T21:58:59.7720000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:58:59.8170000-07:00|10FF0006|Wowobora Gogobora|0001096B|57266|57266|8500|10000|57||109.51|85.95|0.00|0.82|1B00|0|0|01|050000A7|0|41200000|| +37|2023-10-06T21:58:59.8170000-07:00|10FF0003|Gegehi Gehi|0001096A|51669|51669|6250|10000|4||110.00|86.05|0.00|-2.11|2301|0|0|01|020006FD|01|42700000|| +38|2023-10-06T21:58:59.8170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|57||109.51|85.95|0.00|0.82|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:58:59.8610000-07:00|400217B8|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|14FA0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|79840|90349|7800|10000|||83.75|112.62|0.00|2.68|54201|54201|10000|10000|||84.50|109.84|0.00|-1.01|0001096D|0|1| +37|2023-10-06T21:58:59.9500000-07:00|40021585|Zeromus|00010961|23194617||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:00.0390000-07:00|40021585|Zeromus|00010969|23179844||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:00.1730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8500|10000|57||109.51|85.95|0.00|0.82|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:00.1730000-07:00|A90|Rekindle|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|4B|57266|57266| +26|2023-10-06T21:59:00.1730000-07:00|A91|Undying Flame|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:58:59.8560000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T21:58:59.9690000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:59:00.0830000-07:00|Change|400217B8||||||||| +21|2023-10-06T21:59:00.5280000-07:00|40021585|Zeromus|8B43|Visceral Whirl|40021585|Zeromus|1B|8B438000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23179844|40478540|10000|10000|||100.00|80.10|0.00|0.00|23179844|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001096E|0|1| +34|2023-10-06T21:59:00.5280000-07:00|400217B8|Ruby Carbuncle|400217B8|Ruby Carbuncle|01| +261|2023-10-06T21:59:00.1940000-07:00|Change|40021585||||| +37|2023-10-06T21:59:00.5720000-07:00|40021585|Zeromus|0001096C|23164615||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:00.6620000-07:00|10FF0001|Sesuga Sapisuga|0001096D|85210||||||83.75|112.62|0.00|2.68| +24|2023-10-06T21:59:00.6620000-07:00|40021585|Zeromus|DoT|0|C97|23164615|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:59:00.6620000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B0A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23164615|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||109.30|86.41|0.00|-2.17|0001096F|0|1| +36|2023-10-06T21:59:00.6620000-07:00|45C4|3| +38|2023-10-06T21:59:00.6620000-07:00|40021585|Zeromus|005A5A00|23161392|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:00.6620000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:59:00.2850000-07:00|Change|10FF0008||||||||||||| +261|2023-10-06T21:59:00.2850000-07:00|Change|400217B8||||||||| +21|2023-10-06T21:59:00.8410000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|150003|53850000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|23161392|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8500|10000|||109.51|85.95|0.00|0.82|00010970|0|1| +38|2023-10-06T21:59:00.8410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8200|10000|57||109.51|85.95|0.00|0.82|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:00.8410000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:59:00.4730000-07:00|Change|10FF0006||||||||| +22|2023-10-06T21:59:01.0200000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|16820000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|55446|55446|2843|10000|||84.55|111.10|0.00|-0.75|55446|55446|2843|10000|||84.55|111.10|0.00|-0.75|00010971|0|4| +22|2023-10-06T21:59:01.0200000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|163F0000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|57078|57078|5600|10000|||83.54|112.02|0.00|-1.19|55446|55446|2843|10000|||84.55|111.10|0.00|-0.75|00010971|1|4| +22|2023-10-06T21:59:01.0200000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|17410000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|85210|90349|7800|10000|||83.75|112.62|0.00|2.68|55446|55446|2843|10000|||84.55|111.10|0.00|-0.75|00010971|2|4| +22|2023-10-06T21:59:01.0200000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|167D0000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||84.12|105.67|0.00|-0.47|55446|55446|2843|10000|||84.55|111.10|0.00|-0.75|00010971|3|4| +39|2023-10-06T21:59:01.1090000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|5800|10000|||83.54|112.02|0.00|-1.19| +21|2023-10-06T21:59:01.1090000-07:00|10FF0006|Wowobora Gogobora|8B4F|Acceleration Bomb|10FF0006|Wowobora Gogobora|603|26450000|100140E|6FD0000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8200|10000|||109.51|85.95|0.00|-2.12|57266|57266|8200|10000|||109.51|85.95|0.00|-2.12|00010972|0|1| +21|2023-10-06T21:59:01.1090000-07:00|10FF000A|Dukaro Nezikaro|8B4F|Acceleration Bomb|10FF000A|Dukaro Nezikaro|603|567B0000|100140E|6FD0000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||109.30|86.41|0.00|-2.17|58451|58451|10000|10000|||109.30|86.41|0.00|-2.17|00010973|0|1| +38|2023-10-06T21:59:01.1090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|10||84.12|105.67|0.00|-0.47|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:01.1090000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +30|2023-10-06T21:59:01.1090000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T21:59:01.1090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|34||112.44|82.81|0.00|-1.79|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:01.1090000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +261|2023-10-06T21:59:00.6880000-07:00|Change|10FF0004||| +38|2023-10-06T21:59:01.1090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|8200|10000|57||109.51|85.95|0.00|-2.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:01.1090000-07:00|6FD|Vulnerability Up|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|57266|57266| +30|2023-10-06T21:59:01.1090000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:59:01.1090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|85210|90349|7800|10000|24||83.75|112.62|0.00|2.68|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:01.1090000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:59:01.1090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5800|10000|38||83.54|112.02|0.00|-1.19|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:01.1090000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:59:01.1090000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|6250|10000|4||110.00|86.05|0.00|-2.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:01.1090000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:59:01.1090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|37||109.30|86.41|0.00|-2.17|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:01.1090000-07:00|6FD|Vulnerability Up|60.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +30|2023-10-06T21:59:01.1090000-07:00|A61|Acceleration Bomb|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +39|2023-10-06T21:59:01.1540000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||112.44|82.81|0.00|-1.79| +39|2023-10-06T21:59:01.1540000-07:00|10FF0003|Gegehi Gehi|51669|51669|6450|10000|||110.00|86.05|0.00|-2.11| +21|2023-10-06T21:59:01.1540000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23161392|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|8200|10000|||109.51|85.95|0.00|-2.12|00010974|0|1| +37|2023-10-06T21:59:01.1980000-07:00|40021585|Zeromus|0001096F|23158566||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:00.8060000-07:00|Change|400217B8||||||||| +39|2023-10-06T21:59:01.2870000-07:00|10FF0006|Wowobora Gogobora|57266|57266|8400|10000|||109.51|85.95|0.00|-2.12| +261|2023-10-06T21:59:00.9220000-07:00|Change|10FF0003||| +21|2023-10-06T21:59:01.3320000-07:00|400215A2|Zeromus|8B44|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|00010975|0|0| +21|2023-10-06T21:59:01.3320000-07:00|400215A3|Zeromus|8B45|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|00010976|0|0| +261|2023-10-06T21:59:00.9220000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T21:59:00.9220000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T21:59:01.0330000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:59:01.0330000-07:00|Change|10FF0006||| +37|2023-10-06T21:59:01.4660000-07:00|40021585|Zeromus|00010970|23137185||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:01.1490000-07:00|Change|400217B8||||||||| +21|2023-10-06T21:59:01.5110000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|8400|10000|||109.51|85.95|0.00|-2.12|57266|57266|8400|10000|||109.51|85.95|0.00|-2.12|00010977|0|1| +261|2023-10-06T21:59:01.1490000-07:00|Change|4002159F||||||||| +261|2023-10-06T21:59:01.1490000-07:00|Change|400215A0||||||||| +261|2023-10-06T21:59:01.1490000-07:00|Change|4002159D||||||||| +261|2023-10-06T21:59:01.1490000-07:00|Change|4002159E||||||||| +261|2023-10-06T21:59:01.1490000-07:00|Change|4002159C||||||||| +261|2023-10-06T21:59:01.1490000-07:00|Change|4002159B||||||||| +21|2023-10-06T21:59:01.6010000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|FD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23137185|40478540|10000|10000|||100.00|80.10|0.00|0.00|85210|90349|7800|10000|||83.75|112.60|0.00|2.68|00010978|0|1| +20|2023-10-06T21:59:01.6470000-07:00|4002159B|Zeromus|8B49|Miasmic Blast|4002159B|Zeromus|7.700|114.00|100.00|0.00|0.79| +20|2023-10-06T21:59:01.6470000-07:00|4002159C|Zeromus|8CF8|unknown_8cf8|4002159C|Zeromus|7.700|114.00|100.00|0.00|0.79| +20|2023-10-06T21:59:01.6470000-07:00|4002159D|Zeromus|8B49|Miasmic Blast|4002159D|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:59:01.6470000-07:00|4002159E|Zeromus|8CF8|unknown_8cf8|4002159E|Zeromus|7.700|100.00|100.00|0.00|0.79| +20|2023-10-06T21:59:01.6470000-07:00|4002159F|Zeromus|8B49|Miasmic Blast|4002159F|Zeromus|7.700|100.00|86.00|0.00|0.79| +22|2023-10-06T21:59:01.6470000-07:00|400215A1|Zeromus|8B55|the Dark Binds|10FF0007|Kehabiqo Febiqo|750603|14E60000|200140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||84.12|105.67|0.00|-0.47|44|44|0|10000|||100.00|100.00|0.00|0.00|00010979|0|2| +22|2023-10-06T21:59:01.6470000-07:00|400215A1|Zeromus|8B55|the Dark Binds|10FF0003|Gegehi Gehi|750603|53EE0000|200140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|51669|51669|6450|10000|||110.00|86.05|0.00|-2.11|44|44|0|10000|||100.00|100.00|0.00|0.00|00010979|1|2| +20|2023-10-06T21:59:01.6470000-07:00|400215A0|Zeromus|8CF8|unknown_8cf8|400215A0|Zeromus|7.700|100.00|86.00|0.00|0.79| +21|2023-10-06T21:59:01.6470000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|712003|1B010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23137185|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||84.12|105.67|0.00|-0.47|0001097A|0|1| +38|2023-10-06T21:59:01.6470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|85210|90349|7800|10000|24||83.75|112.60|0.00|2.68|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:01.6470000-07:00|32|Sprint|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|90349|90349| +37|2023-10-06T21:59:01.6900000-07:00|40021585|Zeromus|00010974|23137038||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:01.7340000-07:00|10FF0006|Wowobora Gogobora|00010972|47469|57266|8400|10000|0||109.51|85.95|0.00|-2.12|1B00|0|0|03|0|0|0|||||||||| +37|2023-10-06T21:59:01.7340000-07:00|10FF000A|Dukaro Nezikaro|00010973|36312|58451|10000|10000|0||107.95|85.87|0.00|-2.02|1E00|0|0|02|030006FD|01|42700000|||||| +261|2023-10-06T21:59:01.3450000-07:00|Change|10FF0008||||| +38|2023-10-06T21:59:01.7350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|47469|57266|8400|10000|0||109.51|85.95|0.00|-2.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:01.7350000-07:00|A8E|Radiant Aegis|0.00|400217B3|Carbuncle|10FF0006|Wowobora Gogobora|00|57266|| +30|2023-10-06T21:59:01.7350000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:59:01.7350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|36312|58451|10000|10000|0||107.95|85.87|0.00|-2.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:01.7350000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +21|2023-10-06T21:59:01.7800000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23137185|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||112.44|82.81|0.00|-1.79|0001097B|0|1| +261|2023-10-06T21:59:01.4350000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:01.4350000-07:00|Change|400217B8||||||||| +37|2023-10-06T21:59:01.8240000-07:00|10FF0007|Kehabiqo Febiqo|00010979|85540|90890|10000|10000|0||84.12|105.67|0.00|2.59|1500|0|0|02|04000000|0|0|||||| +26|2023-10-06T21:59:01.8240000-07:00|6FD|Vulnerability Up|60.00|400215A1|Zeromus|10FF0007|Kehabiqo Febiqo|02|90890|44| +39|2023-10-06T21:59:01.8240000-07:00|10FF0001|Sesuga Sapisuga|86113|90349|8000|10000|||84.48|111.14|0.00|2.68| +21|2023-10-06T21:59:01.8240000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|724003|282C0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|23137185|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||112.44|82.81|0.00|-1.79|0001097C|0|1| +38|2023-10-06T21:59:01.8240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85540|90890|10000|10000|0||84.12|105.67|0.00|2.59|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:01.8240000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +37|2023-10-06T21:59:01.8690000-07:00|10FF0003|Gegehi Gehi|00010979|30183|51669|6450|10000|0||110.00|86.05|0.00|-2.11|2301|0|0|02|020006FD|02|42700000|||||| +26|2023-10-06T21:59:01.8690000-07:00|6FD|Vulnerability Up|60.00|400215A1|Zeromus|10FF0003|Gegehi Gehi|02|51669|44| +37|2023-10-06T21:59:01.8690000-07:00|10FF000B|Pusu Rosu|00010971|55446|55446|1843|10000|39||84.57|111.11|0.00|-0.01|1800|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:01.8690000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:01.8690000-07:00|10FF0003|Gegehi Gehi|005A5A23|30183|51669|6450|10000|0||110.00|86.05|0.00|-2.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:01.8690000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +30|2023-10-06T21:59:01.8690000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +37|2023-10-06T21:59:02.0020000-07:00|10FF0004|Buhojaqe Zijaqe|00010971|57078|57078|5800|10000|38||83.54|112.02|0.00|-1.19|1C01|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:02.0020000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +261|2023-10-06T21:59:01.6250000-07:00|Change|400217B7||||| +261|2023-10-06T21:59:01.6250000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:59:01.6250000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:59:01.7410000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T21:59:01.7410000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T21:59:01.7410000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:59:01.7410000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:59:01.7410000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T21:59:01.7410000-07:00|Change|4002159F||||||||||||| +38|2023-10-06T21:59:02.0470000-07:00|400217B9||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:59:02.0470000-07:00|400217B9||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:59:02.0470000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|33420000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|23137038|40478540|10000|10000|||100.00|80.10|0.00|0.00|36312|58451|10000|10000|||104.79|84.98|0.00|-1.86|0001097D|0|1| +24|2023-10-06T21:59:02.0920000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|E0A|57078|57078|5800|10000|||83.54|112.02|0.00|-1.19|E0000000||0||||||||||| +38|2023-10-06T21:59:02.0920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6350|10000|38||83.54|112.02|0.00|-1.19|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:02.1370000-07:00|10FF0006|Wowobora Gogobora|00010977|47469|57266|8400|10000|0||109.51|85.98|0.00|-0.98|1B00|0|0|01|04B4|0|41A80000|| +26|2023-10-06T21:59:02.1370000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:59:02.1370000-07:00|10FF0001|Sesuga Sapisuga|00010971|90349|90349|8000|10000|24||90.90|98.11|0.00|2.95|1302|0|0|01|02000096|0|41700000|| +26|2023-10-06T21:59:02.1370000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +37|2023-10-06T21:59:02.1860000-07:00|40021585|Zeromus|00010978|23132987||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:02.1860000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1E01|47469|57266|8400|10000|||109.51|85.98|0.00|-0.98|E0000000||0||||||||||| +38|2023-10-06T21:59:02.1860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|55150|57266|8950|10000|0||109.51|85.98|0.00|-0.98|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:01.8610000-07:00|Change|10FF0004||| +37|2023-10-06T21:59:02.2700000-07:00|40021585|Zeromus|0001097A|23126074||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:02.2700000-07:00|10FF0007|Kehabiqo Febiqo|00010971|90890|90890|10000|10000|0||89.19|97.52|0.00|2.59|1503|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:02.2700000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +21|2023-10-06T21:59:02.3150000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|32A30000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|23132987|40478540|10000|10000|||100.00|80.10|0.00|0.00|85540|90890|10000|10000|||89.19|97.52|0.00|2.59|0001097E|0|1| +38|2023-10-06T21:59:02.3150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||89.19|97.52|0.00|2.59|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:02.3150000-07:00|A75|Surging Tempest|38.34|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +39|2023-10-06T21:59:02.3590000-07:00|10FF000B|Pusu Rosu|55446|55446|2124|10000|||87.09|112.07|0.00|1.13| +39|2023-10-06T21:59:02.3590000-07:00|10FF000A|Dukaro Nezikaro|36896|58451|10000|10000|||104.65|84.96|0.00|-2.35| +03|2023-10-06T21:59:01.9780000-07:00|400217B9|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||108.05|85.05|0.00|1.02| +261|2023-10-06T21:59:01.9780000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:59:01.9780000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:59:01.9780000-07:00|Add|400217B9||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:02.4050000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|28DA0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|23126074|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8000|10000|||91.14|96.89|0.00|2.95|0001097F|0|1| +38|2023-10-06T21:59:02.4050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8000|10000|24||91.14|96.89|0.00|2.95|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:02.4050000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:59:02.4050000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:59:02.0960000-07:00|Change|400217B9||| +39|2023-10-06T21:59:02.4490000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||89.19|97.52|0.00|2.59| +24|2023-10-06T21:59:02.4940000-07:00|10FF000B|Pusu Rosu|HoT|0|DAD|55446|55446|2124|10000|||87.68|112.27|0.00|1.18|E0000000||0||||||||||| +21|2023-10-06T21:59:02.4940000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|8000|10000|||90.93|96.32|0.00|2.94|23126074|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010980|0|1| +38|2023-10-06T21:59:02.4940000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2124|10000|39||87.68|112.27|0.00|1.18|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:02.5390000-07:00|40021585|Zeromus|0001097B|23123793||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:02.5390000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|DDB|90890|90890|10000|10000|||89.19|97.52|0.00|2.59|400215A1|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +21|2023-10-06T21:59:02.5390000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|554003|43CE0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|23123793|40478540|10000|10000|||100.00|80.10|0.00|0.00|30183|51669|6450|10000|||110.00|86.05|0.00|-2.11|00010981|0|1| +38|2023-10-06T21:59:02.5390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|0||89.19|97.52|0.00|2.59|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:02.5390000-07:00|10FF0003|Gegehi Gehi|005A5A23|30183|51669|6150|10000|0||110.00|86.05|0.00|-2.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:02.5390000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:59:02.5830000-07:00|40021585|Zeromus|0001097C|23113509||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:02.5830000-07:00|40021585|Zeromus|0001097D|23100387||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:02.6280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AB80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23123793|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8000|10000|||90.21|95.22|0.00|2.92|00010982|0|1| +31|2023-10-06T21:59:02.6280000-07:00|10FF0001||||| +24|2023-10-06T21:59:02.6710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D2B|90349|90349|8000|10000|||90.21|95.22|0.00|2.92|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6350|10000|||83.54|112.02|0.00|-1.19| +21|2023-10-06T21:59:02.6710000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|131F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23123793|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||89.19|97.52|0.00|2.59|00010983|0|1| +38|2023-10-06T21:59:02.6710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8000|10000|24||90.21|95.22|0.00|2.92|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:59:02.3030000-07:00|Change|10FF0003||| +261|2023-10-06T21:59:02.4040000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:59:02.8510000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23100387|40478540|10000|10000|||100.00|80.10|0.00|0.00|36896|58451|10000|10000|||102.89|84.52|0.00|-2.02|00010984|0|1| +261|2023-10-06T21:59:02.5920000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:59:02.9390000-07:00|400217B8|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|200004|22C80000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|55150|57266|8950|10000|||107.05|90.65|0.00|-0.68|54201|54201|10000|10000|||84.31|110.25|0.00|2.66|00010985|0|1| +37|2023-10-06T21:59:02.9830000-07:00|40021585|Zeromus|0001097F|23089929||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:02.9830000-07:00|10FF0001|Sesuga Sapisuga|0001097F|90349|90349|8000|10000|24||89.17|93.59|0.00|2.92|1300|0|0|02|0300076E|03|41F00000|||||| +38|2023-10-06T21:59:02.9830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8000|10000|24||89.17|93.59|0.00|2.92|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:59:02.7100000-07:00|Change|400217B9||||||||| +21|2023-10-06T21:59:03.0730000-07:00|10FF000A|Dukaro Nezikaro|1D75|Second Wind|10FF000A|Dukaro Nezikaro|200004|44CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36896|58451|10000|10000|||100.68|84.02|0.00|-1.85|36896|58451|10000|10000|||100.68|84.02|0.00|-1.85|00010986|0|1| +34|2023-10-06T21:59:03.0730000-07:00|400217B9|Carbuncle|400217B9|Carbuncle|01| +37|2023-10-06T21:59:03.1590000-07:00|40021585|Zeromus|00010982|23087185||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:02.9390000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:59:03.2050000-07:00|40021585|Zeromus|00010983|23082290||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:03.2490000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23087185|40478540|10000|10000|||100.00|80.10|0.00|0.00|30183|51669|6150|10000|||109.97|86.62|0.00|-0.59|00010987|0|1| +37|2023-10-06T21:59:03.2940000-07:00|10FF0001|Sesuga Sapisuga|00010980|90349|90349|8000|10000|6||87.39|93.07|0.00|2.86|1300|0|0|0| +21|2023-10-06T21:59:03.2940000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|240A0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|23082290|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6350|10000|||83.35|110.80|0.00|-2.71|00010988|0|1| +37|2023-10-06T21:59:03.3380000-07:00|40021585|Zeromus|00010981|23064932||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:02.9390000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:59:03.3830000-07:00|40021585|Zeromus|00010984|23062112||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:03.3830000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|ED60000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|23082290|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8000|10000|||87.39|93.07|0.00|2.86|00010989|0|1| +261|2023-10-06T21:59:03.0580000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:59:03.1750000-07:00|Change|10FF000A||||||||| +24|2023-10-06T21:59:03.6510000-07:00|40021585|Zeromus|DoT|0|C50|23062112|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:03.6510000-07:00|46A0|3| +38|2023-10-06T21:59:03.6510000-07:00|40021585|Zeromus|005A5A00|23058960|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:03.6510000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:59:03.2900000-07:00|Change|400215A3||||||||| +22|2023-10-06T21:59:03.6960000-07:00|400215A3|Zeromus|8B55|the Dark Binds|10FF0007|Kehabiqo Febiqo|750003|45580000|300140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||94.12|95.96|0.00|2.51|44|44|0|10000|||100.00|100.00|0.00|0.00|0001098A|0|2| +22|2023-10-06T21:59:03.6960000-07:00|400215A3|Zeromus|8B55|the Dark Binds|10FF0003|Gegehi Gehi|750003|6D690000|300140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|30183|51669|6150|10000|||109.19|89.63|0.00|-0.43|44|44|0|10000|||100.00|100.00|0.00|0.00|0001098A|1|2| +37|2023-10-06T21:59:03.7390000-07:00|10FF0006|Wowobora Gogobora|00010985|57266||||||106.34|90.99|0.00|1.41| +37|2023-10-06T21:59:03.7390000-07:00|10FF000A|Dukaro Nezikaro|00010986|54506||||||96.96|83.89|0.00|-1.62| +37|2023-10-06T21:59:03.7840000-07:00|40021585|Zeromus|00010987|23058930||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:03.4710000-07:00|Change|10FF0008||||||||| +20|2023-10-06T21:59:03.8290000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|106.29|91.02|0.00|1.75| +261|2023-10-06T21:59:03.4710000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T21:59:03.8730000-07:00|10FF0007|Kehabiqo Febiqo|0001098A|73138|90890|10000|10000|0||93.55|95.53|0.00|2.67|1500|0|0|01|090006FD|03|42700000|| +30|2023-10-06T21:59:03.8730000-07:00|6FD|Vulnerability Up|0.00|400215A1|Zeromus|10FF0007|Kehabiqo Febiqo|02|90890|44| +26|2023-10-06T21:59:03.8730000-07:00|6FD|Vulnerability Up|60.00|400215A3|Zeromus|10FF0007|Kehabiqo Febiqo|03|90890|44| +261|2023-10-06T21:59:03.4710000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:03.9160000-07:00|10FF0003|Gegehi Gehi|0001098A|2174|51669|6150|10000|0||108.38|90.79|0.00|-0.57|2301|0|0|01|020006FD|03|42700000|| +30|2023-10-06T21:59:03.9160000-07:00|6FD|Vulnerability Up|0.00|400215A1|Zeromus|10FF0003|Gegehi Gehi|02|51669|44| +26|2023-10-06T21:59:03.9160000-07:00|6FD|Vulnerability Up|60.00|400215A3|Zeromus|10FF0003|Gegehi Gehi|03|51669|44| +37|2023-10-06T21:59:03.9630000-07:00|40021585|Zeromus|0001097E|23045967||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:03.6880000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:59:04.0950000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6150|10000|||83.23|105.39|0.00|3.09| +39|2023-10-06T21:59:04.1390000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||109.27|87.95|0.00|-0.90| +39|2023-10-06T21:59:04.1390000-07:00|10FF0003|Gegehi Gehi|2690|51669|6350|10000|||107.04|92.24|0.00|-0.72| +21|2023-10-06T21:59:04.1390000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|712003|29FF0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|23045967|40478540|10000|10000|||100.00|80.10|0.00|0.00|54506|58451|10000|10000|||92.77|83.87|0.00|-1.56|0001098B|0|1| +38|2023-10-06T21:59:04.1390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|73138|90890|10000|10000|0||92.04|94.85|0.00|2.89|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:04.1390000-07:00|32|Sprint|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|1E|90890|90890| +26|2023-10-06T21:59:04.1390000-07:00|EB7|Bonds of Darkness|30.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +261|2023-10-06T21:59:03.9200000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:04.2280000-07:00|40021585|Zeromus|00010988|23036741||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:04.2730000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9150|10000|||106.22|91.05|-0.02|-2.63| +21|2023-10-06T21:59:04.3170000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|38B10000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|23036741|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||108.89|88.05|0.00|-1.22|0001098C|0|1| +21|2023-10-06T21:59:04.3170000-07:00|10FF000B|Pusu Rosu|03|Sprint|10FF000B|Pusu Rosu|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|2124|10000|||95.27|110.08|0.00|-2.90|55446|55446|2124|10000|||95.27|110.08|0.00|-2.90|0001098D|0|1| +37|2023-10-06T21:59:04.4060000-07:00|40021585|Zeromus|00010989|23032943|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T21:59:04.4060000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +37|2023-10-06T21:59:04.4500000-07:00|10FF000B|Pusu Rosu|0001098D|55446|55446|2124|10000|39||94.93|109.62|0.00|-2.44|1800|0|0|01|05000032|1E|41200000|| +26|2023-10-06T21:59:04.4500000-07:00|32|Sprint|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|1E|55446|55446| +21|2023-10-06T21:59:04.4500000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|DD30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23032943|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||108.18|88.18|0.00|-2.13|0001098E|0|1| +37|2023-10-06T21:59:04.5390000-07:00|40021585|Zeromus|0001098B|23022192||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:59:04.5390000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|57078|57078| +21|2023-10-06T21:59:04.5390000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|754003|14030000|104|77A8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|23032943|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6150|10000|||82.85|102.88|0.00|-3.04|0001098F|0|1| +261|2023-10-06T21:59:04.2620000-07:00|Change|10FF000B||||||||| +21|2023-10-06T21:59:04.7610000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|3AA20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23022192|40478540|10000|10000|||100.00|80.10|0.00|0.00|73138|90890|10000|10000|||91.63|94.49|0.00|2.89|00010990|0|1| +261|2023-10-06T21:59:04.4730000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T21:59:04.8060000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8200|10000|||85.04|93.00|0.00|0.82| +261|2023-10-06T21:59:04.4730000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:04.4730000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:59:04.8940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23022192|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8200|10000|||84.62|93.45|0.00|0.82|00010991|0|1| +31|2023-10-06T21:59:04.8940000-07:00|10FF0001||||| +261|2023-10-06T21:59:04.6620000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:59:05.0270000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23022192|40478540|10000|10000|||100.00|80.10|0.00|0.00|54506|58451|10000|10000|||87.80|84.15|0.00|-0.91|00010992|0|1| +261|2023-10-06T21:59:04.7730000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:59:05.0710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|E2E|57078|57078|6150|10000|||82.74|102.15|-0.02|2.51|E0000000||0||||||||||| +38|2023-10-06T21:59:05.0710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6700|10000|38||82.74|102.15|-0.02|2.51|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:05.1150000-07:00|40021585|Zeromus|0001098C|23007679||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:04.7730000-07:00|Change|10FF0008||||||||| +24|2023-10-06T21:59:05.1600000-07:00|10FF0006|Wowobora Gogobora|HoT|0|13EA|57266|57266|9150|10000|||106.22|91.05|0.00|-2.62|E0000000||0||||||||||| +38|2023-10-06T21:59:05.1600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|9700|10000|0||106.22|91.05|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:05.2040000-07:00|40021585|Zeromus|0001098E|23004140||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:05.0070000-07:00|Change|400217B8||||||||| +39|2023-10-06T21:59:05.3380000-07:00|10FF000B|Pusu Rosu|55446|55446|2405|10000|||92.30|106.28|0.00|-2.44| +39|2023-10-06T21:59:05.3380000-07:00|10FF000A|Dukaro Nezikaro|55090|58451|10000|10000|||85.70|84.40|0.00|-1.28| +37|2023-10-06T21:59:05.4270000-07:00|40021585|Zeromus|00010990|22989130||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:05.4270000-07:00|40021585|Zeromus|00010991|22987363||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:05.1180000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:59:05.1180000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:59:05.4710000-07:00|10FF0007|Kehabiqo Febiqo|74046|90890|10000|10000|||89.66|93.71|0.00|2.72| +24|2023-10-06T21:59:05.4710000-07:00|10FF000B|Pusu Rosu|HoT|0|15C9|55446|55446|2405|10000|||91.65|105.65|0.00|-2.41|E0000000||0||||||||||| +38|2023-10-06T21:59:05.4710000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2405|10000|39||91.65|105.65|0.00|-2.41|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:05.2310000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:59:05.5160000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750603|29E70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|8200|10000|||83.65|93.92|0.00|2.27|22987363|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010993|0|1| +21|2023-10-06T21:59:05.5160000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|714003|39EF0000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|22987363|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8200|10000|||83.65|93.92|0.00|2.27|00010994|0|1| +37|2023-10-06T21:59:05.5590000-07:00|40021585|Zeromus|00010992|22985099||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:05.5600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D55|74046|90890|10000|10000|||89.53|93.64|0.00|2.73|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +21|2023-10-06T21:59:05.5600000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|712003|48C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22987363|40478540|10000|10000|||100.00|80.10|0.00|0.00|74046|90890|10000|10000|||89.53|93.64|0.00|2.73|00010995|0|1| +38|2023-10-06T21:59:05.5600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77459|90890|10000|10000|0||89.53|93.64|0.00|2.73|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:05.6040000-07:00|40021585|Zeromus|0001098F|22979976||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:05.6490000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D28|90349|90349|8200|10000|||83.65|93.92|0.00|2.27|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6700|10000|||83.65|98.25|0.00|2.70| +38|2023-10-06T21:59:05.6490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8200|10000|6||83.65|93.92|0.00|2.27|0|0|0||||||||||||||||||||||||| +22|2023-10-06T21:59:05.7810000-07:00|400215A3|Zeromus|8B55|the Dark Binds|10FF0007|Kehabiqo Febiqo|750003|4EE30000|400140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|77459|90890|10000|10000|||89.41|93.50|0.00|2.54|44|44|0|10000|||100.00|100.00|0.00|0.00|00010996|0|2| +22|2023-10-06T21:59:05.7810000-07:00|400215A3|Zeromus|8B55|the Dark Binds|10FF0003|Gegehi Gehi|750003|73210000|400140E|6FD0000|1B|8B558000|0|0|0|0|0|0|0|0|0|0|2690|51669|6350|10000|||104.86|97.85|0.00|-0.96|44|44|0|10000|||100.00|100.00|0.00|0.00|00010996|1|2| +261|2023-10-06T21:59:05.5380000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:59:05.5380000-07:00|Change|10FF0006||||||||||||| +261|2023-10-06T21:59:05.5380000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:05.9140000-07:00|40021585|Zeromus|00010994|22965145||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:05.9140000-07:00|10FF0001|Sesuga Sapisuga|00010994|90349|90349|8700|10000|6||83.65|93.92|0.00|2.27|1300|0|0|0| +261|2023-10-06T21:59:05.6300000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:59:05.9580000-07:00|10FF0007|Kehabiqo Febiqo|00010996|57264|90890|10000|10000|0||89.29|93.36|-0.02|2.65|1500|0|0|01|090006FD|04|42700000|| +26|2023-10-06T21:59:05.9580000-07:00|6FD|Vulnerability Up|60.00|400215A3|Zeromus|10FF0007|Kehabiqo Febiqo|04|90890|44| +04|2023-10-06T21:59:05.6300000-07:00|400217B7|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|54388|0|10000|||98.24|100.62|0.00|2.97| +261|2023-10-06T21:59:05.6300000-07:00|Remove|400217B7| +261|2023-10-06T21:59:05.7260000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:59:06.0040000-07:00|10FF0003|Gegehi Gehi|00010996|0|51669|0|10000|0||102.81|98.16|0.00|-1.41|2301|0|0|02|01000000|0|0|||||| +38|2023-10-06T21:59:06.0040000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|51669|0|10000|0||102.81|98.16|0.00|-1.41|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:06.0040000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +30|2023-10-06T21:59:06.0040000-07:00|6FD|Vulnerability Up|0.00|400215A3|Zeromus|10FF0003|Gegehi Gehi|03|51669|44| +21|2023-10-06T21:59:06.0480000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|11AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22965145|40478540|10000|10000|||100.00|80.10|0.00|0.00|57264|90890|10000|10000|||88.93|93.24|0.00|2.70|00010997|0|1| +20|2023-10-06T21:59:06.0480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|82.74|95.61|0.00|-2.99| +38|2023-10-06T21:59:06.0480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|57264|90890|10000|10000|0||88.93|93.24|0.00|2.70|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:06.0480000-07:00|EB7|Bonds of Darkness|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +23|2023-10-06T21:59:06.0930000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|Cancelled| +261|2023-10-06T21:59:05.8250000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:59:06.1370000-07:00|400217B8|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14F00000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|57264|90890|10000|10000|||88.56|93.11|0.00|2.75|54201|54201|10000|10000|||84.58|100.65|0.00|3.09|00010998|0|1| +21|2023-10-06T21:59:06.1820000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|27B20000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22965145|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8700|10000|||83.65|93.92|0.00|2.28|00010999|0|1| +38|2023-10-06T21:59:06.1820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8700|10000|6||83.65|93.92|0.00|2.28|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:06.1820000-07:00|76E|Sword Oath|26.76|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +261|2023-10-06T21:59:05.9440000-07:00|Change|400217B8||||||||| +37|2023-10-06T21:59:06.2260000-07:00|40021585|Zeromus|00010995|22946515||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:06.3150000-07:00|10FF0001|Sesuga Sapisuga|00010993|79622|90349|8700|10000|0||83.62|93.89|0.00|0.82|1300|0|0|01|07000000|0|0|| +38|2023-10-06T21:59:06.3150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|79622|90349|8700|10000|0||83.62|93.89|0.00|0.82|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:59:06.3150000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +21|2023-10-06T21:59:06.3600000-07:00|10FF0006|Wowobora Gogobora|03|Sprint|10FF0006|Wowobora Gogobora|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|9700|10000|||104.56|90.58|0.00|-1.97|57266|57266|9700|10000|||104.56|90.58|0.00|-1.97|0001099A|0|1| +37|2023-10-06T21:59:06.4940000-07:00|10FF0006|Wowobora Gogobora|0001099A|57266|57266|9700|10000|0||104.04|90.44|0.00|-1.79|1B00|0|0|01|01000032|1E|41200000|| +26|2023-10-06T21:59:06.4940000-07:00|32|Sprint|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|1E|57266|57266| +21|2023-10-06T21:59:06.4940000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|23A20000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|22946515|40478540|10000|10000|||100.00|80.10|0.00|0.00|55090|58451|10000|10000|||84.71|84.46|0.00|-2.44|0001099B|0|1| +261|2023-10-06T21:59:06.2880000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:59:06.5820000-07:00|40021585|Zeromus|00010997|22941989||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:06.5820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22946515|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|9700|10000|||103.86|90.40|0.00|-1.79|0001099C|0|1| +261|2023-10-06T21:59:06.3820000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:59:06.6710000-07:00|400217B8|Ruby Carbuncle|54201|54201|10000|10000|||84.66|99.23|0.00|2.91| +24|2023-10-06T21:59:06.6710000-07:00|40021585|Zeromus|DoT|0|F51|22941989|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:06.6710000-07:00|477C|3| +38|2023-10-06T21:59:06.6710000-07:00|40021585|Zeromus|005A5A00|22938068|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:06.6710000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:59:06.3820000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:59:06.4720000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:59:06.8040000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|720003|57660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22938068|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||94.85|91.60|0.00|-1.43|0001099D|0|1| +261|2023-10-06T21:59:06.4720000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T21:59:06.5710000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T21:59:06.8930000-07:00|40021585|Zeromus|0001099B|22928946||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:06.9380000-07:00|10FF0007|Kehabiqo Febiqo|00010998|62624||||||84.12|91.94|0.00|2.86| +261|2023-10-06T21:59:06.5710000-07:00|Change|40021585||||||||||||| +21|2023-10-06T21:59:06.9820000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|50FD0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|22938068|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6700|10000|||81.90|93.83|0.00|2.22|0001099E|0|1| +37|2023-10-06T21:59:07.1160000-07:00|40021585|Zeromus|0001099C|22928791||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:07.1160000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6500|10000|||81.90|93.83|0.00|2.22| +21|2023-10-06T21:59:07.1160000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22928946|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||92.63|91.72|0.00|2.83|0001099F|0|1| +39|2023-10-06T21:59:07.1610000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||92.63|91.72|0.00|2.83| +21|2023-10-06T21:59:07.1610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22928946|40478540|10000|10000|||100.00|80.10|0.00|0.00|79622|90349|8700|10000|||82.21|92.58|0.00|-2.32|000109A0|0|1| +31|2023-10-06T21:59:07.1610000-07:00|10FF0001||||| +21|2023-10-06T21:59:07.2040000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|173B0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|22928946|40478540|10000|10000|||100.00|80.10|0.00|0.00|62624|90890|10000|10000|||83.35|91.97|0.00|3.01|000109A1|0|1| +21|2023-10-06T21:59:07.2040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B0E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22928946|40478540|10000|10000|||100.00|80.10|0.00|0.00|55090|58451|10000|10000|||84.98|85.94|0.00|1.76|000109A2|0|1| +261|2023-10-06T21:59:07.0020000-07:00|Change|400217B9||||||||| +39|2023-10-06T21:59:07.2940000-07:00|10FF0006|Wowobora Gogobora|57266|57266|9900|10000|||100.29|90.36|0.00|-1.55| +261|2023-10-06T21:59:07.1200000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:59:07.1200000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:59:07.4300000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22928791|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|6500|10000|||81.90|93.83|0.00|2.22|000109A3|0|1| +261|2023-10-06T21:59:07.1200000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:07.4720000-07:00|40021585|Zeromus|00010999|22918629||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:07.4720000-07:00|10FF0001|Sesuga Sapisuga|00010999|79622|90349|9100|10000|0||82.21|92.58|0.00|-2.32|1300|0|0|0| +261|2023-10-06T21:59:07.2360000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:07.2360000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:59:07.6060000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|29960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22918629|40478540|10000|10000|||100.00|80.10|0.00|0.00|55090|58451|10000|10000|||84.13|88.79|0.00|1.31|000109A4|0|1| +37|2023-10-06T21:59:07.6950000-07:00|40021585|Zeromus|000109A0|22916942||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:07.7400000-07:00|40021585|Zeromus|000109A1|22910995||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:07.7400000-07:00|40021585|Zeromus|000109A2|22908165||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:07.7840000-07:00|40021585|Zeromus|0001099E|22887432||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:07.8290000-07:00|10FF0001|Sesuga Sapisuga|80525|90349|9300|10000|||82.21|92.58|0.00|-2.32| +261|2023-10-06T21:59:07.5440000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T21:59:07.8730000-07:00|40021585|Zeromus|0001099F|22885221||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:07.9620000-07:00|40021585|Zeromus|0001099D|22862847||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:07.9620000-07:00|40021585|Zeromus|000109A3|22862695||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:07.6420000-07:00|Change|40021585||| +261|2023-10-06T21:59:07.7330000-07:00|Change|400217B9||||||||| +261|2023-10-06T21:59:07.8230000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:59:08.0060000-07:00|400217B9|Carbuncle|54388|54388|10000|10000|||98.53|89.18|0.00|-1.50| +25|2023-10-06T21:59:08.0060000-07:00|10FF0003|Gegehi Gehi|400215A3|Zeromus| +21|2023-10-06T21:59:08.0060000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|6500|10000|||81.90|93.83|0.00|2.22|57078|57078|6500|10000|||81.90|93.83|0.00|2.22|000109A5|0|1| +38|2023-10-06T21:59:08.0060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6500|10000|38||81.90|93.83|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:08.0060000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +24|2023-10-06T21:59:08.0510000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|DC4|57078|57078|6500|10000|||81.90|93.83|0.00|2.22|E0000000||0||||||||||| +38|2023-10-06T21:59:08.0510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7050|10000|38||81.90|93.83|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||||||||| +27|2023-10-06T21:59:08.0950000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:59:08.0950000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:59:08.0950000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:59:08.0950000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:59:08.0950000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:59:08.0950000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:59:08.0950000-07:00|10FF000B|Pusu Rosu|0000|0000|0178|0000|0000|0000| +27|2023-10-06T21:59:08.0950000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|0178|0000|0000|0000| +37|2023-10-06T21:59:08.1390000-07:00|10FF0004|Buhojaqe Zijaqe|000109A5|57078|57078|7050|10000|38||81.90|93.83|0.00|2.22|1C00|0|0|01|060000A7|0|41200000|| +24|2023-10-06T21:59:08.1390000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1FA9|57266|57266|9900|10000|||92.33|91.25|0.00|-1.45|E0000000||0||||||||||| +38|2023-10-06T21:59:08.1390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||92.33|91.25|0.00|-1.45|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:08.1390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|7050|10000|38||81.90|93.83|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:08.0300000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:08.2720000-07:00|40021585|Zeromus|000109A4|22852049||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:08.0300000-07:00|Change|10FF000B||||||||||||| +39|2023-10-06T21:59:08.3620000-07:00|10FF000B|Pusu Rosu|55446|55446|2686|10000|||82.50|91.62|0.00|-0.28| +39|2023-10-06T21:59:08.3620000-07:00|10FF000A|Dukaro Nezikaro|55674|58451|10000|10000|||83.42|91.08|0.00|2.16| +39|2023-10-06T21:59:08.4500000-07:00|10FF0007|Kehabiqo Febiqo|63532|90890|10000|10000|||81.94|92.26|0.00|2.72| +24|2023-10-06T21:59:08.4950000-07:00|10FF000B|Pusu Rosu|HoT|0|E54|55446|55446|2405|10000|||82.50|91.62|0.00|-0.28|E0000000||0||||||||||| +38|2023-10-06T21:59:08.4950000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2686|10000|39||82.50|91.62|0.00|-0.28|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:08.2520000-07:00|Change|10FF0001||| +24|2023-10-06T21:59:08.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|DD9|63532|90890|10000|10000|||81.72|92.20|0.00|2.83|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +21|2023-10-06T21:59:08.5400000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|750003|3FEC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|80525|90349|9300|10000|||82.21|92.58|0.00|-2.32|22852049|40478540|10000|10000|||100.00|80.10|0.00|0.00|000109A6|0|1| +21|2023-10-06T21:59:08.5400000-07:00|10FF000B|Pusu Rosu|1D89|Swiftcast|10FF000B|Pusu Rosu|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|2686|10000|||82.50|91.73|0.00|-0.28|55446|55446|2686|10000|||82.50|91.73|0.00|-0.28|000109A7|0|1| +38|2023-10-06T21:59:08.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|67077|90890|10000|10000|0||81.72|92.20|0.00|2.83|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:08.5400000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2686|10000|39||82.50|91.73|0.00|-0.28|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:08.5400000-07:00|A7|Swiftcast|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +21|2023-10-06T21:59:08.5840000-07:00|10FF0008|Kokosaze Lulusaze|03|Sprint|10FF0008|Kokosaze Lulusaze|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||84.30|92.09|0.00|-1.52|63151|63151|10000|10000|||84.30|92.09|0.00|-1.52|000109A8|0|1| +261|2023-10-06T21:59:08.3620000-07:00|Change|400217B8||||||||| +24|2023-10-06T21:59:08.6290000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|DD9|80525|90349|9300|10000|||82.21|92.58|0.00|2.18|E0000000||0||||||||||| +21|2023-10-06T21:59:08.6290000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF0003|Gegehi Gehi|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|0|10000|||100.48|96.94|0.00|-1.84|57078|57078|7050|10000|||81.90|93.83|0.00|2.22|000109A9|0|1| +38|2023-10-06T21:59:08.6290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84070|90349|9300|10000|0||82.21|92.58|0.00|2.18|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:59:08.6290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|4650|10000|38||81.90|93.83|0.00|2.22|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:08.6290000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +37|2023-10-06T21:59:08.6720000-07:00|10FF000B|Pusu Rosu|000109A7|55446|55446|2686|10000|39||82.51|91.84|-0.01|-0.28|1800|0|0|01|060000A7|0|41200000|| +21|2023-10-06T21:59:08.6720000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2A140000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22852049|40478540|10000|10000|||100.00|80.10|0.00|0.00|80525|90349|9300|10000|||82.21|92.58|0.00|2.18|000109AA|0|1| +38|2023-10-06T21:59:08.6720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|84070|90349|9300|10000|0||82.21|92.58|0.00|2.18|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:08.6720000-07:00|76E|Sword Oath|24.27|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +38|2023-10-06T21:59:08.6720000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2686|10000|39||82.51|91.84|-0.01|-0.28|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:08.4620000-07:00|Change|400217B9||||||||| +37|2023-10-06T21:59:08.7170000-07:00|10FF0008|Kokosaze Lulusaze|000109A8|63151|63151|10000|10000|34||82.94|92.19|0.00|-1.49|1F00|0|0|01|04000032|1E|41200000|| +26|2023-10-06T21:59:08.7170000-07:00|32|Sprint|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|63151|63151| +21|2023-10-06T21:59:08.7170000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|3EFB0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|22852049|40478540|10000|10000|||100.00|80.10|0.00|0.00|55674|58451|10000|10000|||83.42|91.08|0.00|2.16|000109AB|0|1| +261|2023-10-06T21:59:08.4620000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:59:08.5530000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:08.5530000-07:00|Change|10FF0004||||| +21|2023-10-06T21:59:09.0740000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40021585|Zeromus|150003|43740000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|22852049|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|10000|10000|||85.03|91.59|0.00|-1.45|000109AC|0|1| +38|2023-10-06T21:59:09.0740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||85.03|91.59|0.00|-1.45|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:09.0740000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T21:59:09.2520000-07:00|40021585|Zeromus|000109AB|22835926||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:09.2520000-07:00|400217B8|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14590000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|67077|90890|10000|10000|||81.40|92.27|0.00|-1.59|54201|54201|10000|10000|||81.65|95.75|0.00|2.28|000109AD|0|1| +21|2023-10-06T21:59:09.2520000-07:00|10FF000B|Pusu Rosu|1D06|Thin Air|10FF000B|Pusu Rosu|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|2686|10000|||82.44|91.93|0.00|-0.58|55446|55446|2686|10000|||82.44|91.93|0.00|-0.58|000109AE|0|1| +38|2023-10-06T21:59:09.2520000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2686|10000|39||82.44|91.93|0.00|-0.58|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:09.2520000-07:00|4C1|Thin Air|12.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|55446|55446| +37|2023-10-06T21:59:09.3410000-07:00|10FF0001|Sesuga Sapisuga|000109A6|67706||||||82.21|92.58|0.00|2.18| +21|2023-10-06T21:59:09.3410000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3C4C0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|22835926|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||82.08|92.27|0.00|-1.64|000109AF|0|1| +261|2023-10-06T21:59:09.1120000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:59:09.3850000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|11B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22835926|40478540|10000|10000|||100.00|80.10|0.00|0.00|55674|58451|10000|10000|||83.42|91.08|0.00|2.16|000109B0|0|1| +261|2023-10-06T21:59:09.1120000-07:00|Change|400217B9||||||||| +21|2023-10-06T21:59:09.4300000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22835926|40478540|10000|10000|||100.00|80.10|0.00|0.00|67077|90890|10000|10000|||81.36|92.41|0.00|-0.70|000109B1|0|1| +21|2023-10-06T21:59:09.4300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22835926|40478540|10000|10000|||100.00|80.10|0.00|0.00|67706|90349|9300|10000|||82.21|92.58|0.00|2.18|000109B2|0|1| +31|2023-10-06T21:59:09.4300000-07:00|10FF0001||||| +21|2023-10-06T21:59:09.6080000-07:00|4002159B|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||114.00|100.00|0.00|0.79|000109B3|0|0| +21|2023-10-06T21:59:09.6080000-07:00|4002159C|Zeromus|8CF8|unknown_8cf8|4002159C|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||114.00|100.00|0.00|0.79|44|44|0|10000|||114.00|100.00|0.00|0.79|000109B4|0|1| +21|2023-10-06T21:59:09.6080000-07:00|4002159D|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.79|000109B5|0|0| +21|2023-10-06T21:59:09.6090000-07:00|4002159E|Zeromus|8CF8|unknown_8cf8|4002159E|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|000109B6|0|1| +21|2023-10-06T21:59:09.6090000-07:00|4002159F|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|86.00|0.00|0.79|000109B7|0|0| +21|2023-10-06T21:59:09.6090000-07:00|400215A0|Zeromus|8CF8|unknown_8cf8|400215A0|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|86.00|0.00|0.79|44|44|0|10000|||100.00|86.00|0.00|0.79|000109B8|0|1| +261|2023-10-06T21:59:09.4560000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T21:59:09.4560000-07:00|Change|4002159B||||||||||||| +24|2023-10-06T21:59:09.6530000-07:00|40021585|Zeromus|DoT|0|1B3E|22835926|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +261|2023-10-06T21:59:09.4560000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T21:59:09.4560000-07:00|Change|4002159E||||||||||||| +21|2023-10-06T21:59:09.6530000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|216E0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|22835926|40478540|10000|10000|||100.00|80.10|0.00|0.00|67077|90890|10000|10000|||81.35|92.45|0.00|-0.20|000109B9|0|1| +36|2023-10-06T21:59:09.6530000-07:00|4858|3| +38|2023-10-06T21:59:09.6530000-07:00|40021585|Zeromus|005A5A00|22828952|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:09.6530000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +39|2023-10-06T21:59:09.6970000-07:00|400217B8|Ruby Carbuncle|54201|54201|10000|10000|||81.65|95.75|0.00|3.03| +261|2023-10-06T21:59:09.4560000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T21:59:09.4560000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T21:59:09.4560000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:59:09.7410000-07:00|10FF0003|Gegehi Gehi|000109A9|0|51669|0|10000|0||100.48|96.94|0.00|-1.84|2300|0|0|01|01000094|08|42700000|| +26|2023-10-06T21:59:09.7410000-07:00|94|Raise|60.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|08|51669|57078| +21|2023-10-06T21:59:09.7410000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|12B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22828952|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|10000|10000|||84.04|92.15|0.00|2.21|000109BA|0|1| +21|2023-10-06T21:59:09.7850000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22828952|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||82.08|92.27|0.00|2.17|000109BB|0|1| +37|2023-10-06T21:59:09.9180000-07:00|40021585|Zeromus|000109AC|22811684||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:09.9180000-07:00|40021585|Zeromus|000109B0|22807152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:09.9630000-07:00|40021585|Zeromus|000109B1|22804285||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:09.9630000-07:00|40021585|Zeromus|000109AA|22793513||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:09.9630000-07:00|10FF0001|Sesuga Sapisuga|000109AA|67706|90349|9700|10000|0||82.21|92.58|0.00|2.18|1300|0|0|0| +37|2023-10-06T21:59:09.9630000-07:00|40021585|Zeromus|000109B2|22791857||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:09.9630000-07:00|10FF000B|Pusu Rosu|7D|Raise|10FF0003|Gegehi Gehi|814000E|940000|1B|7D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|0|10000|||100.48|96.94|0.00|-1.84|55446|55446|2686|10000|||82.26|92.09|0.00|-0.85|000109BC|0|1| +38|2023-10-06T21:59:09.9630000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2686|10000|39||82.26|92.09|0.00|-0.85|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:09.9630000-07:00|A7|Swiftcast|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +30|2023-10-06T21:59:09.9630000-07:00|4C1|Thin Air|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|55446|55446| +261|2023-10-06T21:59:09.7390000-07:00|Change|10FF0001||| +37|2023-10-06T21:59:10.0510000-07:00|10FF0007|Kehabiqo Febiqo|000109AD|72286||||||81.35|92.48|0.00|2.16| +39|2023-10-06T21:59:10.0960000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|4850|10000|||81.97|94.09|0.00|0.80| +37|2023-10-06T21:59:10.1400000-07:00|40021585|Zeromus|000109AF|22776421||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:10.1400000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||82.08|92.27|0.00|2.17| +37|2023-10-06T21:59:10.2730000-07:00|40021585|Zeromus|000109B9|22767863||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:10.2730000-07:00|40021585|Zeromus|000109BA|22767564||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:10.2730000-07:00|10FF0006|Wowobora Gogobora|57266|57266|10000|10000|||83.72|92.35|0.00|2.21| +37|2023-10-06T21:59:10.5400000-07:00|40021585|Zeromus|000109BB|22763802||||||100.00|80.10|0.00|0.00| +22|2023-10-06T21:59:10.6300000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|24C70000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|000109BD|0|8| +22|2023-10-06T21:59:10.6300000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|248C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67706|90349|9700|10000|||82.58|92.87|0.00|0.91|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|000109BD|1|8| +22|2023-10-06T21:59:10.6300000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|23D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72286|90890|10000|10000|||81.42|92.54|0.00|2.36|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|000109BD|2|8| +22|2023-10-06T21:59:10.6300000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|2E380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22763802|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|000109BD|3|8| +22|2023-10-06T21:59:10.6300000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|24C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||82.18|92.25|0.00|1.94|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|000109BD|4|8| +22|2023-10-06T21:59:10.6300000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|25130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55674|58451|10000|10000|||83.53|90.82|0.00|2.32|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|000109BD|5|8| +22|2023-10-06T21:59:10.6300000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|245D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|4850|10000|||82.08|94.67|0.00|0.26|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|000109BD|6|8| +22|2023-10-06T21:59:10.6300000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|24E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||85.66|93.33|0.00|1.60|55446|55446|2686|10000|||82.26|92.09|0.00|1.31|000109BD|7|8| +261|2023-10-06T21:59:10.5250000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T21:59:10.8080000-07:00|10FF0001|Sesuga Sapisuga|68609|90349|9900|10000|||82.95|93.15|0.00|0.98| +261|2023-10-06T21:59:10.7070000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:59:11.0320000-07:00|400217B9|Carbuncle|54388|54388|10000|10000|||85.44|92.76|0.00|-0.93| +261|2023-10-06T21:59:10.9120000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:59:11.0770000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D95|57078|57078|4850|10000|||83.37|97.81|0.00|0.42|E0000000||0||||||||||| +38|2023-10-06T21:59:11.0770000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5400|10000|38||83.37|97.81|0.00|0.42|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:11.1200000-07:00|10FF0003|Gegehi Gehi|000109BC|0|51669|0|10000|0||100.48|96.94|0.00|-1.84|2300|0|0|01|01000094|08|42700000|| +30|2023-10-06T21:59:11.1200000-07:00|94|Raise|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|08|51669|57078| +26|2023-10-06T21:59:11.1200000-07:00|94|Raise|60.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|08|51669|55446| +24|2023-10-06T21:59:11.1660000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1329|57266|57266|10000|10000|||89.83|95.14|0.00|1.17|E0000000||0||||||||||| +21|2023-10-06T21:59:11.1660000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|17B40000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|22763802|40478540|10000|10000|||100.00|80.10|0.00|0.00|55674|58451|10000|10000|||85.13|87.20|0.00|2.68|000109BE|0|1| +38|2023-10-06T21:59:11.1660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||89.83|95.14|0.00|1.17|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:11.3000000-07:00|10FF000B|Pusu Rosu|000109BD|55446|55446|3186|10000|39||83.65|92.30|0.00|0.97|1800|0|0|0| +261|2023-10-06T21:59:11.0230000-07:00|Change|10FF000B||||||||||| +39|2023-10-06T21:59:11.3440000-07:00|10FF000B|Pusu Rosu|55446|55446|3467|10000|||83.87|92.51|0.00|0.87| +39|2023-10-06T21:59:11.3440000-07:00|10FF000A|Dukaro Nezikaro|56258|58451|10000|10000|||86.38|85.76|0.00|2.10| +21|2023-10-06T21:59:11.3440000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|28B60000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22763802|40478540|10000|10000|||100.00|80.10|0.00|0.00|68609|90349|9900|10000|||86.41|94.52|0.00|1.39|000109BF|0|1| +38|2023-10-06T21:59:11.3440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|68609|90349|9900|10000|0||86.41|94.52|0.00|1.39|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:59:11.3440000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +37|2023-10-06T21:59:11.4330000-07:00|10FF0001|Sesuga Sapisuga|000109BD|77965||||||86.41|94.52|0.00|1.39| +39|2023-10-06T21:59:11.4770000-07:00|10FF0007|Kehabiqo Febiqo|73194|90890|10000|10000|||87.07|93.75|0.00|1.81| +24|2023-10-06T21:59:11.4770000-07:00|10FF000B|Pusu Rosu|HoT|0|DCE|55446|55446|3467|10000|||84.04|92.68|0.00|0.80|E0000000||0||||||||||| +38|2023-10-06T21:59:11.4770000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3467|10000|39||84.04|92.68|0.00|0.80|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:11.5670000-07:00|10FF0007|Kehabiqo Febiqo|000109BD|82370||||||87.07|93.75|0.00|1.81| +37|2023-10-06T21:59:11.5670000-07:00|40021585|Zeromus|000109BE|22757734||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:11.5670000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|DF5|72286|90890|10000|10000|||87.07|93.75|0.00|1.81|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +21|2023-10-06T21:59:11.5670000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0001|Sesuga Sapisuga|EC750005|35B00000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|77965|90349|9900|10000|||87.04|94.62|0.00|1.45|22763802|40478540|10000|10000|||100.00|80.10|0.00|0.00|000109C0|0|1| +21|2023-10-06T21:59:11.5670000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40021585|Zeromus|154003|597F0000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|22763802|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|10000|10000|||92.83|96.24|0.00|1.13|000109C1|0|1| +21|2023-10-06T21:59:11.5670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|DC60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22763802|40478540|10000|10000|||100.00|80.10|0.00|0.00|56258|58451|10000|10000|||86.99|85.56|0.00|2.17|000109C2|0|1| +38|2023-10-06T21:59:11.5670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85943|90890|10000|10000|0||87.07|93.75|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:11.3680000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:59:11.6560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1518|77965|90349|9900|10000|||87.68|94.70|0.00|1.45|E0000000||0||||||||||| +38|2023-10-06T21:59:11.6560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|83365|90349|9900|10000|0||87.68|94.70|0.00|1.45|0|0|0|||||||||||||||||||||| +261|2023-10-06T21:59:11.4670000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:11.7000000-07:00|40021585|Zeromus|000109BD|22745902||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:11.7000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22757734|40478540|10000|10000|||100.00|80.10|0.00|0.00|77965|90349|9900|10000|||87.68|94.70|0.00|1.45|000109C3|0|1| +31|2023-10-06T21:59:11.7000000-07:00|10FF0001||||| +261|2023-10-06T21:59:11.4670000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:59:11.5590000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:59:11.8330000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1EC10000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|22745902|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||91.34|89.63|0.00|1.86|000109C4|0|1| +261|2023-10-06T21:59:11.6520000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:11.6520000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:59:11.6520000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:59:11.9670000-07:00|10FF000A|Dukaro Nezikaro|000109BD|58451||||||89.57|83.87|0.00|2.26| +37|2023-10-06T21:59:12.1010000-07:00|40021585|Zeromus|000109C2|22742376||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:12.1450000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|32FF0000|143E|340000|4|17B38000|11B|2A8000|0|0|0|0|0|0|0|0|22742376|40478540|10000|10000|||100.00|80.10|0.00|0.00|85943|90890|10000|10000|||91.08|93.52|0.00|1.65|000109C5|0|1| +37|2023-10-06T21:59:12.2340000-07:00|40021585|Zeromus|000109C3|22740637||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:12.3240000-07:00|40021585|Zeromus|000109C1|22717726||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:12.0760000-07:00|Change|400217B9||||||||| +37|2023-10-06T21:59:12.3680000-07:00|10FF0001|Sesuga Sapisuga|000109C0|69621||||||90.74|95.81|0.00|1.50| +21|2023-10-06T21:59:12.4570000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22717726|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.11|89.08|0.00|2.34|000109C6|0|1| +261|2023-10-06T21:59:12.1930000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:59:12.5910000-07:00|40021585|Zeromus|000109C4|22709853||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:12.4130000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:12.6360000-07:00|40021585|Zeromus|000109BF|22699431||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:12.6360000-07:00|10FF0001|Sesuga Sapisuga|000109BF|69621|90349|10000|10000|0||90.66|96.41|0.00|0.93|1300|0|0|0| +39|2023-10-06T21:59:12.6790000-07:00|400217B8|Ruby Carbuncle|54201|54201|10000|10000|||82.02|99.81|0.00|0.02| +24|2023-10-06T21:59:12.6790000-07:00|40021585|Zeromus|DoT|0|1CEC|22709853|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:12.6790000-07:00|4934|3| +38|2023-10-06T21:59:12.6790000-07:00|40021585|Zeromus|005A5A00|22692027|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:12.6790000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:59:12.5090000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:59:12.8120000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|17660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22692027|40478540|10000|10000|||100.00|80.10|0.00|0.00|85943|90890|10000|10000|||93.04|93.48|0.00|2.10|000109C7|0|1| +21|2023-10-06T21:59:12.8120000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|232D0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|22692027|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|5400|10000|||83.02|107.62|0.00|0.16|000109C8|0|1| +261|2023-10-06T21:59:12.6110000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:59:12.9900000-07:00|400217B8|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|14690000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|69621|90349|10000|10000|||89.52|97.96|0.00|0.94|54201|54201|10000|10000|||81.93|100.77|0.00|0.41|000109C9|0|1| +261|2023-10-06T21:59:12.7040000-07:00|Change|400217B8||||||||| +261|2023-10-06T21:59:12.8190000-07:00|Change|400217B9||||||||| +38|2023-10-06T21:59:13.0800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85943|90890|10000|10000|0||93.81|93.94|0.00|1.86|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:13.0800000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +261|2023-10-06T21:59:12.8190000-07:00|Change|400215A2||||||||| +261|2023-10-06T21:59:12.8190000-07:00|Change|400215A0||||||||| +38|2023-10-06T21:59:13.0800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|34||98.88|87.27|0.00|1.91|0|0|0|||||||||||||||| +30|2023-10-06T21:59:13.0800000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +38|2023-10-06T21:59:13.0800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||98.55|104.65|0.00|0.77|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:13.0800000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T21:59:13.0800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69621|90349|10000|10000|0||89.38|98.15|0.00|0.94|0|0|0||||||||||||||||||| +30|2023-10-06T21:59:13.0800000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T21:59:13.0800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5000|10000|38||83.16|108.94|0.00|1.69|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:13.0800000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:59:13.0800000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|51669|0|10000|0||100.48|96.94|0.00|-1.84|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:13.0800000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T21:59:13.0800000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3467|10000|39||83.12|90.70|0.00|2.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:13.0800000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF000B|Pusu Rosu|00|55446|| +38|2023-10-06T21:59:13.0800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||91.20|82.93|0.00|2.01|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:13.0800000-07:00|EB2|Divisive Dark|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +261|2023-10-06T21:59:12.8190000-07:00|Change|4002159C||||||||| +261|2023-10-06T21:59:12.8190000-07:00|Change|4002159F||||||||| +39|2023-10-06T21:59:13.1230000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|5200|10000|||83.16|108.94|0.00|1.69| +21|2023-10-06T21:59:13.1700000-07:00|4002159C|Zeromus|8B52|the Dark Divides|10FF000A|Dukaro Nezikaro|750003|A4740000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||91.20|82.93|0.00|2.01|44|44|0|10000|||100.00|100.00|0.00|0.00|000109CA|0|1| +21|2023-10-06T21:59:13.1700000-07:00|4002159D|Zeromus|8B52|the Dark Divides|10FF000B|Pusu Rosu|750603|2A2F0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|55446|55446|3467|10000|||83.12|90.72|0.00|1.61|44|44|0|10000|||100.00|100.00|0.00|0.00|000109CB|0|1| +21|2023-10-06T21:59:13.1700000-07:00|4002159E|Zeromus|8B52|the Dark Divides|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|000109CC|0|0| +21|2023-10-06T21:59:13.1700000-07:00|4002159F|Zeromus|8B52|the Dark Divides|10FF0004|Buhojaqe Zijaqe|750603|31AF0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|57078|57078|5200|10000|||83.17|109.57|0.00|1.08|44|44|0|10000|||100.00|100.00|0.00|0.00|000109CD|0|1| +21|2023-10-06T21:59:13.1700000-07:00|400215A1|Zeromus|8B52|the Dark Divides|10FF0006|Wowobora Gogobora|750003|932D0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|57266|57266|10000|10000|||99.29|105.21|0.00|0.82|44|44|0|10000|||100.00|100.00|0.00|0.00|000109CE|0|1| +21|2023-10-06T21:59:13.1700000-07:00|400215A2|Zeromus|8B52|the Dark Divides|10FF0008|Kokosaze Lulusaze|750603|37EE0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.72|87.00|0.00|1.90|44|44|0|10000|||100.00|100.00|0.00|0.00|000109CF|0|1| +21|2023-10-06T21:59:13.1700000-07:00|400215A3|Zeromus|8B52|the Dark Divides|10FF0007|Kehabiqo Febiqo|750003|968B0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|85943|90890|10000|10000|||93.95|93.49|0.00|1.80|44|44|0|10000|||100.00|100.00|0.00|0.00|000109D0|0|1| +21|2023-10-06T21:59:13.1700000-07:00|400215A0|Zeromus|8B52|the Dark Divides|10FF0001|Sesuga Sapisuga|EC750005|43DB0000|E80E|B7D0000|1B|8B528000|0|0|0|0|0|0|0|0|0|0|69621|90349|10000|10000|||89.38|98.15|0.00|0.94|44|44|0|10000|||100.00|100.00|0.00|0.00|000109D1|0|1| +39|2023-10-06T21:59:13.1700000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.72|87.00|0.00|1.90| +38|2023-10-06T21:59:13.1700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85943|90890|10000|10000|0||93.95|93.49|0.00|1.80|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:13.1700000-07:00|B7D|Magic Vulnerability Up|1.95|400215A3|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|44| +38|2023-10-06T21:59:13.1700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|34||99.72|87.00|0.00|1.90|0|0|0||||||||||||||||||| +26|2023-10-06T21:59:13.1700000-07:00|B7D|Magic Vulnerability Up|1.95|400215A2|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:59:13.1700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|10000|10000|0||99.29|105.21|0.00|0.82|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:13.1700000-07:00|B7D|Magic Vulnerability Up|1.95|400215A1|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +38|2023-10-06T21:59:13.1700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69621|90349|10000|10000|0||89.38|98.15|0.00|0.94|0|0|0||||||||||||||||||| +26|2023-10-06T21:59:13.1700000-07:00|B7D|Magic Vulnerability Up|1.95|400215A0|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +38|2023-10-06T21:59:13.1700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5200|10000|38||83.17|109.57|0.00|1.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:13.1700000-07:00|B7D|Magic Vulnerability Up|1.95|4002159F|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +38|2023-10-06T21:59:13.1700000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3467|10000|39||83.12|90.72|0.00|1.61|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:13.1700000-07:00|B7D|Magic Vulnerability Up|1.95|4002159D|Zeromus|10FF000B|Pusu Rosu|00|55446|44| +38|2023-10-06T21:59:13.1700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||91.20|82.93|0.00|2.01|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:13.1700000-07:00|B7D|Magic Vulnerability Up|1.95|4002159C|Zeromus|10FF000A|Dukaro Nezikaro|00|58451|44| +37|2023-10-06T21:59:13.2140000-07:00|40021585|Zeromus|000109C6|22689753||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:12.9350000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:59:13.2590000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2E5A0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|22689753|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||91.20|82.93|0.00|2.01|000109D2|0|1| +39|2023-10-06T21:59:13.3030000-07:00|10FF0006|Wowobora Gogobora|57266|57266|10000|10000|||100.07|105.82|0.00|0.84| +37|2023-10-06T21:59:13.3470000-07:00|40021585|Zeromus|000109C7|22683763||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:13.1700000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:59:13.1700000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:59:13.1700000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:59:13.6610000-07:00|40021585|Zeromus|000109C5|22670708||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:13.6610000-07:00|10FF0007|Kehabiqo Febiqo|000109C5|90890||||||94.88|92.82|0.00|1.67| +37|2023-10-06T21:59:13.6610000-07:00|40021585|Zeromus|000109D2|22658842||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:13.4670000-07:00|Change|400217B9||||||||| +37|2023-10-06T21:59:13.7500000-07:00|40021585|Zeromus|000109C8|22649837||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:13.7500000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22658842|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||91.20|82.93|0.00|1.88|000109D3|0|1| +37|2023-10-06T21:59:13.7950000-07:00|10FF000A|Dukaro Nezikaro|000109CA|16351|58451|10000|10000|0||91.20|82.93|0.00|1.88|1E00|0|0|01|05000B7D|0|3FAFBE78|| +37|2023-10-06T21:59:13.7950000-07:00|10FF000B|Pusu Rosu|000109CB|44647|55446|3467|10000|0||83.10|92.06|0.00|-0.33|1800|0|0|02|02000000|0|0|||||| +37|2023-10-06T21:59:13.7950000-07:00|10FF0004|Buhojaqe Zijaqe|000109CD|44359|57078|5200|10000|0||83.12|112.30|0.00|0.13|1C00|0|0|02|03000000|0|0|||||| +37|2023-10-06T21:59:13.7950000-07:00|10FF0006|Wowobora Gogobora|000109CE|19589|57266|10000|10000|0||103.73|107.12|0.00|1.50|1B00|0|0|01|06000B7D|0|3FAFBE78|| +37|2023-10-06T21:59:13.7950000-07:00|10FF0008|Kokosaze Lulusaze|000109CF|48833|63151|10000|10000|0||105.22|85.36|0.00|1.86|1F00|0|0|02|02000000|0|0|||||| +37|2023-10-06T21:59:13.7950000-07:00|10FF0007|Kehabiqo Febiqo|000109D0|52351|90890|10000|10000|0||95.26|92.82|-0.02|1.64|1500|0|0|01|01000B7D|0|3FAFBE78|| +37|2023-10-06T21:59:13.7950000-07:00|10FF0001|Sesuga Sapisuga|000109D1|52250|90349|10000|10000|0||89.38|98.15|0.00|2.61|1300|0|0|01|03000B7D|0|3FAFBE78|| +37|2023-10-06T21:59:13.7950000-07:00|10FF0001|Sesuga Sapisuga|000109C9|57475||||||89.38|98.15|0.00|2.61| +39|2023-10-06T21:59:13.7950000-07:00|10FF0001|Sesuga Sapisuga|58378|90349|10000|10000|||89.38|98.15|0.00|2.61| +38|2023-10-06T21:59:13.7950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|48833|63151|10000|10000|0||105.22|85.36|0.00|1.86|0|0|0||||||||||||||||||| +30|2023-10-06T21:59:13.7950000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:59:13.7950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44359|57078|5200|10000|0||83.12|112.30|0.00|0.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:13.7950000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:59:13.7950000-07:00|10FF000B|Pusu Rosu|005A5A18|44647|55446|3467|10000|0||83.10|92.06|0.00|-0.33|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:13.7950000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +261|2023-10-06T21:59:13.5640000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:59:13.8400000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2E700000|200004|3D678000|0|0|0|0|0|0|0|0|0|0|0|0|22649837|40478540|10000|10000|||100.00|80.10|0.00|0.00|69621|90349|10000|10000|||89.38|98.15|0.00|2.61|000109D4|0|1| +38|2023-10-06T21:59:13.8400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|58378|90349|9000|10000|0||89.38|98.15|0.00|2.61|0|0|0|||||||||||||||| +30|2023-10-06T21:59:13.8400000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:59:13.6580000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:59:13.9740000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22649837|40478540|10000|10000|||100.00|80.10|0.00|0.00|58378|90349|9000|10000|||89.38|98.15|0.00|2.61|000109D5|0|1| +31|2023-10-06T21:59:13.9740000-07:00|10FF0001||||| +39|2023-10-06T21:59:14.0190000-07:00|400217B9|Carbuncle|54388|54388|10000|10000|||99.23|104.31|0.00|0.65| +20|2023-10-06T21:59:14.0190000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|104.24|106.91|0.00|1.80| +24|2023-10-06T21:59:14.0630000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D59|44359|57078|5200|10000|||83.15|112.54|-0.02|0.09|E0000000||0||||||||||| +38|2023-10-06T21:59:14.0630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47776|57078|5750|10000|0||83.15|112.54|-0.02|0.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:13.8580000-07:00|Change|40021585||| +24|2023-10-06T21:59:14.1520000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1291|19589|57266|10000|10000|||104.94|106.58|0.00|2.27|E0000000||0||||||||||| +38|2023-10-06T21:59:14.1520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|24342|57266|10000|10000|0||104.94|106.58|0.00|2.27|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:14.1960000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|57078|57078| +21|2023-10-06T21:59:14.1960000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0001|Sesuga Sapisuga|4|4C3A0000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|58378|90349|9000|10000|||89.38|98.15|0.00|2.61|47776|57078|5750|10000|||83.15|112.54|0.00|0.09|000109D6|0|1| +37|2023-10-06T21:59:14.2840000-07:00|40021585|Zeromus|000109D3|22647719||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:14.3290000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|3AC10000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|22649837|40478540|10000|10000|||100.00|80.10|0.00|0.00|48833|63151|10000|10000|||108.67|84.80|0.00|1.75|000109D7|0|1| +39|2023-10-06T21:59:14.3740000-07:00|10FF000B|Pusu Rosu|45201|55446|3748|10000|||84.87|93.51|0.00|0.79| +39|2023-10-06T21:59:14.3740000-07:00|10FF000A|Dukaro Nezikaro|16935|58451|10000|10000|||91.32|83.78|0.00|1.26| +261|2023-10-06T21:59:14.0830000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T21:59:14.1950000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:59:14.1950000-07:00|Change|10FF0006||||||||||||||||||||| +38|2023-10-06T21:59:14.4190000-07:00|10FF000B|Pusu Rosu|005A5A18|45201|55446|3748|10000|0||84.87|93.51|0.00|0.79|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:14.4190000-07:00|32|Sprint|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|1E|55446|55446| +39|2023-10-06T21:59:14.4630000-07:00|10FF0007|Kehabiqo Febiqo|53259|90890|10000|10000|||95.26|92.82|0.00|1.64| +24|2023-10-06T21:59:14.4630000-07:00|10FF000B|Pusu Rosu|HoT|0|DC1|45201|55446|3748|10000|||85.57|94.08|0.00|0.83|E0000000||0||||||||||| +38|2023-10-06T21:59:14.4630000-07:00|10FF000B|Pusu Rosu|005A5A18|48722|55446|3748|10000|0||85.57|94.08|0.00|0.83|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:59:14.1950000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:14.5070000-07:00|40021585|Zeromus|000109D5|22646048||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:14.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D33|52351|90890|10000|10000|||95.26|92.82|0.00|1.64|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T21:59:14.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|56638|90890|10000|10000|0||95.26|92.82|0.00|1.64|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:14.3130000-07:00|Change|400217B9||||||||| +37|2023-10-06T21:59:14.5960000-07:00|40021585|Zeromus|000109D4|22634160||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:14.5960000-07:00|10FF0001|Sesuga Sapisuga|000109D4|74097||||||89.38|98.15|0.00|2.61| +21|2023-10-06T21:59:14.5960000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16120000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|22646048|40478540|10000|10000|||100.00|80.10|0.00|0.00|56638|90890|10000|10000|||95.26|92.82|0.00|1.67|000109D8|0|1| +24|2023-10-06T21:59:14.6400000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D2E|74097|90349|9000|10000|||89.38|98.15|0.00|2.61|E0000000||0||||||||||| +38|2023-10-06T21:59:14.6400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|77471|90349|9000|10000|0||89.38|98.15|0.00|2.61|0|0|0|||||||||||||||| +37|2023-10-06T21:59:14.8640000-07:00|10FF0001|Sesuga Sapisuga|000109D6|90349||||||89.42|98.16|0.00|1.39| +261|2023-10-06T21:59:14.6030000-07:00|Change|10FF000A||||||||| +22|2023-10-06T21:59:15.0420000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|243E0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|48722|55446|3748|10000|||89.07|95.06|0.00|1.37|48722|55446|3748|10000|||89.07|95.06|0.00|1.37|000109D9|0|6| +22|2023-10-06T21:59:15.0420000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|234E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|9000|10000|||90.38|98.13|0.00|1.72|48722|55446|3748|10000|||89.07|95.06|0.00|1.37|000109D9|1|6| +22|2023-10-06T21:59:15.0420000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|242E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|56638|90890|10000|10000|||95.26|92.82|0.00|2.79|48722|55446|3748|10000|||89.07|95.06|0.00|1.37|000109D9|2|6| +22|2023-10-06T21:59:15.0420000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|24D50000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|16935|58451|10000|10000|||92.67|88.16|0.00|1.17|48722|55446|3748|10000|||89.07|95.06|0.00|1.37|000109D9|3|6| +22|2023-10-06T21:59:15.0420000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|24690000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|47776|57078|5750|10000|||85.09|111.94|-0.02|1.88|48722|55446|3748|10000|||89.07|95.06|0.00|1.37|000109D9|4|6| +22|2023-10-06T21:59:15.0420000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|23AD0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|24342|57266|10000|10000|||105.00|106.58|0.00|-2.95|48722|55446|3748|10000|||89.07|95.06|0.00|1.37|000109D9|5|6| +27|2023-10-06T21:59:15.0860000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|003E|0000|0000|0000| +37|2023-10-06T21:59:15.1310000-07:00|40021585|Zeromus|000109D8|22628510||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:15.1310000-07:00|40021585|Zeromus|000109D7|22613469||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:15.1310000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22634160|40478540|10000|10000|||100.00|80.10|0.00|0.00|48833|63151|10000|10000|||113.40|88.00|0.00|-0.45|000109DA|0|1| +38|2023-10-06T21:59:15.1310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|56638|90890|10000|10000|0||95.26|92.82|0.00|2.79|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:15.1310000-07:00|B7D|Magic Vulnerability Up|0.00|400215A3|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|44| +261|2023-10-06T21:59:14.8010000-07:00|Change|40021585||| +38|2023-10-06T21:59:15.1310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|48833|63151|10000|10000|0||113.40|88.00|0.00|-0.45|0|0|0|||||||||||||||| +30|2023-10-06T21:59:15.1310000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:59:15.1310000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|24342|57266|10000|10000|0||105.00|106.58|0.00|-2.95|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:15.1310000-07:00|B7D|Magic Vulnerability Up|0.00|400215A1|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +38|2023-10-06T21:59:15.1310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9000|10000|0||91.03|98.03|0.00|1.75|0|0|0|||||||||||||||| +30|2023-10-06T21:59:15.1310000-07:00|B7D|Magic Vulnerability Up|0.00|400215A0|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +38|2023-10-06T21:59:15.1310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47776|57078|5750|10000|0||85.18|111.91|0.00|1.86|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:15.1310000-07:00|B7D|Magic Vulnerability Up|0.00|4002159F|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +38|2023-10-06T21:59:15.1310000-07:00|10FF000B|Pusu Rosu|005A5A18|48722|55446|3748|10000|0||89.49|95.17|-0.02|1.38|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:15.1310000-07:00|B7D|Magic Vulnerability Up|0.00|4002159D|Zeromus|10FF000B|Pusu Rosu|00|55446|44| +38|2023-10-06T21:59:15.1310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|16935|58451|10000|10000|0||93.07|88.83|0.00|1.24|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:15.1310000-07:00|B7D|Magic Vulnerability Up|0.00|4002159C|Zeromus|10FF000A|Dukaro Nezikaro|00|58451|44| +38|2023-10-06T21:59:15.1750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|24342|57266|10000|10000|0||105.00|106.58|0.00|-2.95|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:15.1750000-07:00|A91|Undying Flame|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:59:14.9270000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:59:15.0370000-07:00|Change|400217B8||||||||| +21|2023-10-06T21:59:15.3970000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42712003|4A690000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|22613469|40478540|10000|10000|||100.00|80.10|0.00|0.00|16935|58451|10000|10000|||93.43|89.57|0.00|1.34|000109DB|0|1| +261|2023-10-06T21:59:15.2640000-07:00|Change|10FF000B||||||||| +20|2023-10-06T21:59:15.4860000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0007|Kehabiqo Febiqo|1.926|85.44|111.84|-0.01|1.80| +261|2023-10-06T21:59:15.2640000-07:00|Change|10FF0004||||||||||||||||||| +27|2023-10-06T21:59:15.5300000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +27|2023-10-06T21:59:15.5300000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +37|2023-10-06T21:59:15.6200000-07:00|10FF000B|Pusu Rosu|000109D9|55446||||||90.41|95.45|0.00|1.36| +20|2023-10-06T21:59:15.6200000-07:00|40021585|Zeromus|8B83|Dark Matter|40021585|Zeromus|3.700|100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:15.6640000-07:00|400217B8|Ruby Carbuncle|54201|54201|10000|10000|||82.36|108.27|0.00|0.43| +24|2023-10-06T21:59:15.6640000-07:00|40021585|Zeromus|DoT|0|F10|22613469|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:15.6640000-07:00|4A10|3| +38|2023-10-06T21:59:15.6640000-07:00|40021585|Zeromus|005A5A00|22609613|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:15.6640000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:59:15.4600000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:15.4600000-07:00|Change|40021585||||||||||||| +23|2023-10-06T21:59:15.8380000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|Cancelled| +37|2023-10-06T21:59:15.8850000-07:00|40021585|Zeromus|000109DA|22607302||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:15.8850000-07:00|10FF0007|Kehabiqo Febiqo|000109D9|65900||||||95.26|92.82|0.00|2.79| +21|2023-10-06T21:59:15.9300000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|DE80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22609613|40478540|10000|10000|||100.00|80.10|0.00|0.00|16935|58451|10000|10000|||93.48|89.94|0.00|2.22|000109DC|0|1| +37|2023-10-06T21:59:16.0200000-07:00|10FF000A|Dukaro Nezikaro|000109D9|26364||||||93.49|89.97|0.00|1.94| +37|2023-10-06T21:59:16.0640000-07:00|40021585|Zeromus|000109DB|22588253||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:16.1080000-07:00|10FF0004|Buhojaqe Zijaqe|48346|57078|5950|10000|||85.53|111.79|0.00|2.28| +37|2023-10-06T21:59:16.1520000-07:00|10FF0004|Buhojaqe Zijaqe|000109D9|57078||||||85.53|111.79|0.00|2.28| +39|2023-10-06T21:59:16.1520000-07:00|10FF0008|Kokosaze Lulusaze|49464|63151|10000|10000|||112.87|94.19|0.00|-0.42| +21|2023-10-06T21:59:16.1960000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22607302|40478540|10000|10000|||100.00|80.10|0.00|0.00|65900|90890|10000|10000|||95.26|92.82|0.00|2.79|000109DD|0|1| +261|2023-10-06T21:59:15.9690000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:59:15.9690000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:59:16.0800000-07:00|Change|400217B8||||||||| +21|2023-10-06T21:59:16.2430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22588253|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9000|10000|||97.97|96.26|0.00|1.93|000109DE|0|1| +31|2023-10-06T21:59:16.2430000-07:00|10FF0001||||| +37|2023-10-06T21:59:16.2860000-07:00|10FF0006|Wowobora Gogobora|000109D9|33475||||||105.00|106.58|0.00|-2.95| +39|2023-10-06T21:59:16.2860000-07:00|10FF0006|Wowobora Gogobora|34047|57266|10000|10000|||105.00|106.58|0.00|-2.95| +21|2023-10-06T21:59:16.2860000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|156003|A53D0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|22588253|40478540|10000|10000|||100.00|80.10|0.00|0.00|24342|57266|10000|10000|||105.00|106.58|0.00|-2.95|000109DF|0|1| +261|2023-10-06T21:59:16.0800000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T21:59:16.0800000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T21:59:16.3310000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|13860000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|22588253|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9000|10000|||97.97|96.26|0.00|1.93|000109E0|0|1| +21|2023-10-06T21:59:16.3750000-07:00|400217B8|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14990000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|26364|58451|10000|10000|||93.55|90.91|0.00|1.54|54201|54201|10000|10000|||83.68|110.58|0.00|1.15|000109E1|0|1| +261|2023-10-06T21:59:16.1920000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:16.4650000-07:00|40021585|Zeromus|000109DC|22584693||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:16.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34047|57266|9700|10000|0||105.00|106.58|0.00|-2.95|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:16.4650000-07:00|32|Sprint|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|1E|57266|57266| +261|2023-10-06T21:59:16.3110000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T21:59:16.3110000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:16.3110000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:16.7330000-07:00|40021585|Zeromus|000109DD|22579998||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:16.7770000-07:00|40021585|Zeromus|000109DE|22578317||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:16.4960000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:59:16.8220000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9200|10000|||100.99|95.11|0.00|1.93| +21|2023-10-06T21:59:16.8220000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|5DF80000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|22578317|40478540|10000|10000|||100.00|80.10|0.00|0.00|49464|63151|10000|10000|||108.38|97.25|0.00|-0.99|000109E2|0|1| +261|2023-10-06T21:59:16.5950000-07:00|Change|10FF000B||||||||||||| +38|2023-10-06T21:59:16.8670000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3748|10000|0||97.61|98.97|0.00|1.24|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:16.8670000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +37|2023-10-06T21:59:16.9110000-07:00|40021585|Zeromus|000109DF|22536016||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:16.9550000-07:00|40021585|Zeromus|000109E0|22531018||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:17.0010000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5950|10000|0||89.20|108.13|0.00|2.39|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:17.0010000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +39|2023-10-06T21:59:17.0460000-07:00|400217B9|Carbuncle|54388|54388|10000|10000|||103.07|106.37|0.00|1.42| +21|2023-10-06T21:59:17.0460000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22660000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|22536016|40478540|10000|10000|||100.00|80.10|0.00|0.00|65900|90890|10000|10000|||93.97|92.24|0.00|2.73|000109E3|0|1| +21|2023-10-06T21:59:17.0460000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40021585|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|22536016|40478540|10000|10000|||100.00|80.10|0.00|0.00|34047|57266|9700|10000|||104.97|106.58|0.00|-2.89|000109E4|0|1| +38|2023-10-06T21:59:17.0460000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34047|57266|9700|10000|0||104.97|106.58|0.00|-2.89|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:17.0460000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T21:59:16.8080000-07:00|Change|400217B9||||||||| +38|2023-10-06T21:59:17.0880000-07:00|40021808||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:59:17.0900000-07:00|40021808||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +22|2023-10-06T21:59:17.0900000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|5950|10000|||89.63|107.67|0.00|2.39|57078|57078|5950|10000|||89.63|107.67|0.00|2.39|000109E5|0|1| +38|2023-10-06T21:59:17.0900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6500|10000|0||89.63|107.67|0.00|2.39|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:17.0900000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|57078|57078| +21|2023-10-06T21:59:17.1370000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|9200|10000|||102.25|94.63|0.00|1.93|90349|90349|9200|10000|||102.25|94.63|0.00|1.93|000109E6|0|1| +38|2023-10-06T21:59:17.1370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|0||102.25|94.63|0.00|1.93|0|0|0|||||||||||||||| +30|2023-10-06T21:59:17.1370000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +37|2023-10-06T21:59:17.1800000-07:00|10FF000A|Dukaro Nezikaro|000109E1|31637||||||94.86|96.31|0.00|1.68| +261|2023-10-06T21:59:16.9210000-07:00|Change|10FF0006||||||| +38|2023-10-06T21:59:17.1800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|34047|57266|10000|10000|0||104.97|106.58|0.00|-2.96|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:59:16.9210000-07:00|Add|40021808||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:59:16.9210000-07:00|40021808|Emerald Garuda|00|5A|10FF0006|00||10263|13506|54388|54388|10000|10000|||106.87|108.08|0.00|-2.96| +38|2023-10-06T21:59:17.2690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|65900|90890|10000|10000|0||92.56|91.60|0.00|2.61|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:17.2690000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +261|2023-10-06T21:59:17.0330000-07:00|Change|40021808||||| +261|2023-10-06T21:59:17.0330000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:59:17.0330000-07:00|Change|10FF000A||||||||| +39|2023-10-06T21:59:17.3570000-07:00|10FF000B|Pusu Rosu|55446|55446|4029|10000|||99.70|100.37|0.00|1.18| +39|2023-10-06T21:59:17.3570000-07:00|10FF000A|Dukaro Nezikaro|32221|58451|10000|10000|||95.22|97.03|0.00|1.79| +261|2023-10-06T21:59:17.1540000-07:00|Change|10FF0001||||||||||| +39|2023-10-06T21:59:17.4920000-07:00|10FF0007|Kehabiqo Febiqo|66808|90890|10000|10000|||91.19|90.98|0.00|2.68| +20|2023-10-06T21:59:17.4920000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|99.98|100.63|0.00|1.14| +38|2023-10-06T21:59:17.4920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6500|10000|0||91.08|106.18|0.00|2.34|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:17.4920000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +21|2023-10-06T21:59:17.5360000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|20360000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|22531018|40478540|10000|10000|||100.00|80.10|0.00|0.00|32221|58451|10000|10000|||95.84|98.37|0.00|1.91|000109E7|0|1| +37|2023-10-06T21:59:17.6250000-07:00|40021585|Zeromus|000109E2|22506962||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:17.3670000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:59:17.6700000-07:00|40021585|Zeromus|000109E3|22498156||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:17.6700000-07:00|10FF0001|Sesuga Sapisuga|000109E6|90349|90349|9200|10000|0||105.22|93.37|0.00|2.17|1300|0|0|01|0200004A|0|41700000|| +26|2023-10-06T21:59:17.6700000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +24|2023-10-06T21:59:17.7160000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CE8|32221|58451|10000|10000|||96.16|99.06|0.00|2.94|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6500|10000|||92.08|105.27|0.00|2.34| +24|2023-10-06T21:59:17.7160000-07:00|10FF000B|Pusu Rosu|HoT|798|D4B|55446|55446|4029|10000|||100.48|101.10|-0.01|1.07|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6500|10000|||92.08|105.27|0.00|2.34| +24|2023-10-06T21:59:17.7160000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1562|49464|63151|10000|10000|||104.84|98.92|0.00|-1.17|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6500|10000|||92.08|105.27|0.00|2.34| +24|2023-10-06T21:59:17.7160000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D73|34047|57266|10000|10000|||102.24|107.13|-0.02|-1.66|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6500|10000|||92.08|105.27|0.00|2.34| +24|2023-10-06T21:59:17.7160000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D45|57078|57078|6500|10000|||92.08|105.27|0.00|2.34|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6500|10000|||92.08|105.27|0.00|2.34| +24|2023-10-06T21:59:17.7160000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D12|90349|90349|9200|10000|||105.22|93.37|0.00|2.17|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6500|10000|||92.08|105.27|0.00|2.34| +24|2023-10-06T21:59:17.7160000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D2A|66808|90890|10000|10000|||90.05|90.46|0.00|2.70|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6500|10000|||92.08|105.27|0.00|2.34| +37|2023-10-06T21:59:17.7160000-07:00|10FF0004|Buhojaqe Zijaqe|000109E5|57078|57078|6500|10000|0||92.08|105.27|0.00|2.34|1C00|0|0|02|03000798|0|41700000|||||| +26|2023-10-06T21:59:17.7160000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +26|2023-10-06T21:59:17.7160000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:59:17.7160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70178|90890|10000|10000|0||90.05|90.46|0.00|2.70|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:17.7160000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:59:17.7160000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54938|63151|10000|10000|0||104.84|98.92|0.00|-1.17|0|0|0|||||||||||||||| +26|2023-10-06T21:59:17.7160000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:59:17.7160000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|37490|57266|10000|10000|0||102.24|107.13|-0.02|-1.66|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:17.7160000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:59:17.7160000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9200|10000|0||105.22|93.37|0.00|2.17|0|0|0|||||||||||||||| +26|2023-10-06T21:59:17.7160000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:59:17.7160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6500|10000|0||92.08|105.27|0.00|2.34|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:17.7160000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|4029|10000|0||100.48|101.10|-0.01|1.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:17.7160000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:59:17.7160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35525|58451|10000|10000|0||96.16|99.06|0.00|2.94|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:17.7160000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +21|2023-10-06T21:59:17.8040000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22498156|40478540|10000|10000|||100.00|80.10|0.00|0.00|54938|63151|10000|10000|||104.62|98.97|0.00|-1.20|000109E8|0|1| +261|2023-10-06T21:59:17.6510000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T21:59:17.6510000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:17.9370000-07:00|40021585|Zeromus|000109E7|22489910||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:17.6510000-07:00|Add|40021809||||||||||||||||||||||||||||| +261|2023-10-06T21:59:17.7480000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:59:18.0710000-07:00|10FF0006|Wowobora Gogobora|000109E4|37490|57266|10000|10000|0||99.73|105.14|0.00|-2.19|1B00|0|0|01|01000AA5|0|0|| +38|2023-10-06T21:59:18.0710000-07:00|400217B8|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||85.35|109.49|0.00|2.30|0|0|0|||||||||| +26|2023-10-06T21:59:18.0710000-07:00|30|Well Fed|1274.26|10FF0004|Buhojaqe Zijaqe|400217B8|Ruby Carbuncle|2968|54201|57078| +26|2023-10-06T21:59:18.0710000-07:00|441|HP Penalty|9999.00|E0000000||400217B8|Ruby Carbuncle|00|54201|| +26|2023-10-06T21:59:18.0710000-07:00|77B|Summon Order|30.00|400217B8|Ruby Carbuncle|400217B8|Ruby Carbuncle|01|54201|54201| +21|2023-10-06T21:59:18.0710000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|6500|10000|||94.56|103.17|0.00|2.29|57078|57078|6500|10000|||94.56|103.17|0.00|2.29|000109E9|0|1| +38|2023-10-06T21:59:18.0710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|37490|57266|10000|10000|0||99.73|105.14|0.00|-2.19|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:59:18.1160000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E6A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22489910|40478540|10000|10000|||100.00|80.10|0.00|0.00|35525|58451|10000|10000|||96.68|100.04|0.00|2.72|000109EA|0|1| +261|2023-10-06T21:59:17.8600000-07:00|Change|10FF0004||||||||| +261|2023-10-06T21:59:17.9760000-07:00|Change|40021808||| +22|2023-10-06T21:59:18.1590000-07:00|400217B8|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|6500|10000|||94.56|103.17|0.00|2.29|54201|54201|10000|10000|||85.35|109.49|0.00|2.30|000109EB|0|3| +22|2023-10-06T21:59:18.1590000-07:00|400217B8|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|35525|58451|10000|10000|||96.68|100.04|0.00|2.72|54201|54201|10000|10000|||85.35|109.49|0.00|2.30|000109EB|1|3| +22|2023-10-06T21:59:18.1590000-07:00|400217B8|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|37490|57266|10000|10000|||99.73|105.14|0.00|-2.19|54201|54201|10000|10000|||85.35|109.49|0.00|2.30|000109EB|2|3| +261|2023-10-06T21:59:17.9760000-07:00|Change|40021585||||| +261|2023-10-06T21:59:17.9760000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:59:18.5160000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|68D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22489910|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||108.37|89.33|0.00|2.69|000109EC|0|1| +31|2023-10-06T21:59:18.5160000-07:00|10FF0001||||| +261|2023-10-06T21:59:18.3110000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:18.5600000-07:00|40021585|Zeromus|000109E8|22487700||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:18.6500000-07:00|40021585|Zeromus|000109EA|22484010||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:18.6500000-07:00|40021585|Zeromus|DoT|0|10E5|22487700|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:18.6500000-07:00|4AEC|3| +38|2023-10-06T21:59:18.6500000-07:00|40021585|Zeromus|005A5A00|22479685|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:18.6500000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +39|2023-10-06T21:59:18.6940000-07:00|400217B8|Ruby Carbuncle|54201|54201|10000|10000|||86.84|108.23|0.00|2.28| +38|2023-10-06T21:59:18.6940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54938|63151|10000|10000|0||99.62|99.29|0.00|-1.55|0|0|0||||||||||||| +30|2023-10-06T21:59:18.6940000-07:00|32|Sprint|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|63151|63151| +21|2023-10-06T21:59:18.8290000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1EC00000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|22479685|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9200|10000|||108.95|87.64|0.00|2.93|000109ED|0|1| +22|2023-10-06T21:59:18.9180000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|172F0000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|55446|55446|4029|10000|||100.54|101.15|0.00|1.06|55446|55446|4029|10000|||100.54|101.15|0.00|1.06|000109EE|0|7| +22|2023-10-06T21:59:18.9180000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|4|16050000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|35525|58451|10000|10000|||99.30|101.86|0.00|3.01|55446|55446|4029|10000|||100.54|101.15|0.00|1.06|000109EE|1|7| +22|2023-10-06T21:59:18.9180000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|4|16780000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|54938|63151|10000|10000|||99.44|99.29|0.00|-1.57|55446|55446|4029|10000|||100.54|101.15|0.00|1.06|000109EE|2|7| +22|2023-10-06T21:59:18.9180000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|16630000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|37490|57266|10000|10000|||98.25|101.45|0.00|-2.74|55446|55446|4029|10000|||100.54|101.15|0.00|1.06|000109EE|3|7| +22|2023-10-06T21:59:18.9180000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|16130000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|57078|57078|6500|10000|||95.44|102.40|0.00|2.14|55446|55446|4029|10000|||100.54|101.15|0.00|1.06|000109EE|4|7| +22|2023-10-06T21:59:18.9180000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|16360000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90349|90349|9200|10000|||108.95|87.64|0.00|2.93|55446|55446|4029|10000|||100.54|101.15|0.00|1.06|000109EE|5|7| +22|2023-10-06T21:59:18.9180000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|200004|22D00000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|70178|90890|10000|10000|||88.23|85.69|0.00|2.70|55446|55446|4029|10000|||100.54|101.15|0.00|1.06|000109EE|6|7| +261|2023-10-06T21:59:18.6840000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T21:59:18.6840000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:59:19.0540000-07:00|40021585|Zeromus|000109EC|22478008||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:19.0540000-07:00|10FF0004|Buhojaqe Zijaqe|000109EB|57078|57078|6500|10000|0||95.47|102.38|0.00|2.19|1C00|0|0|01|0500013B|0|41A80000|| +26|2023-10-06T21:59:19.0540000-07:00|13B|Whispering Dawn|21.00|400217B8|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +261|2023-10-06T21:59:18.7830000-07:00|Change|400217B9||| +39|2023-10-06T21:59:19.0990000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|6700|10000|||95.47|102.38|0.00|2.19| +21|2023-10-06T21:59:19.1400000-07:00|40021808|Emerald Garuda|64FE|Aerial Blast|40021585|Zeromus|350003|63B50000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|22478008|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||106.87|108.08|0.00|-2.96|000109EF|0|1| +39|2023-10-06T21:59:19.1400000-07:00|10FF0008|Kokosaze Lulusaze|55569|63151|10000|10000|||99.44|99.29|0.00|-1.57| +37|2023-10-06T21:59:19.1840000-07:00|10FF000A|Dukaro Nezikaro|000109EB|35525|58451|10000|10000|0||99.82|102.02|0.00|3.09|1E01|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:59:19.1840000-07:00|13B|Whispering Dawn|21.00|400217B8|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|58451|54201| +261|2023-10-06T21:59:18.8940000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:59:19.0100000-07:00|Change|40021585||||| +39|2023-10-06T21:59:19.2740000-07:00|10FF0006|Wowobora Gogobora|38062|57266|10000|10000|||98.04|101.16|0.00|-2.11| +37|2023-10-06T21:59:19.3180000-07:00|10FF0006|Wowobora Gogobora|000109EB|38062|57266|10000|10000|0||98.04|101.16|0.00|-2.11|1B02|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T21:59:19.3180000-07:00|13B|Whispering Dawn|21.00|400217B8|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +21|2023-10-06T21:59:19.3180000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|724003|264C0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|22478008|40478540|10000|10000|||100.00|80.10|0.00|0.00|55569|63151|10000|10000|||99.44|99.29|0.00|-1.57|000109F0|0|1| +21|2023-10-06T21:59:19.3180000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22478008|40478540|10000|10000|||100.00|80.10|0.00|0.00|37490|57266|10000|10000|||98.04|101.16|0.00|-2.11|000109F1|0|1| +38|2023-10-06T21:59:19.3180000-07:00|400217B8|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||86.87|108.20|0.00|2.28|0|0|0||||||| +30|2023-10-06T21:59:19.3180000-07:00|77B|Summon Order|0.00|400217B8|Ruby Carbuncle|400217B8|Ruby Carbuncle|01|54201|54201| +38|2023-10-06T21:59:19.4070000-07:00|40021585|Zeromus|005A5A00|22478008|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:59:19.4070000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +21|2023-10-06T21:59:19.4970000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F712003|4CED0000|143E|340000|4|184B8000|11B|2A8000|0|0|0|0|0|0|0|0|22478008|40478540|10000|10000|||100.00|80.10|0.00|0.00|70178|90890|10000|10000|||88.24|85.47|0.00|2.62|000109F2|0|1| +20|2023-10-06T21:59:19.4970000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|2.982|97.72|101.17|0.00|-1.82| +261|2023-10-06T21:59:19.2400000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T21:59:19.5400000-07:00|10FF000B|Pusu Rosu|4098|Temperance|10FF000B|Pusu Rosu|140F|7508000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|3029|10000|||100.54|101.15|0.00|1.06|55446|55446|3029|10000|||100.54|101.15|0.00|1.06|000109F3|0|1| +37|2023-10-06T21:59:19.5840000-07:00|40021585|Zeromus|000109ED|22470136||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:19.5840000-07:00|10FF0001|Sesuga Sapisuga|000109ED|90349|90349|10000|10000|0||108.50|87.74|0.00|-1.84|1300|0|0|0| +21|2023-10-06T21:59:19.5840000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22478008|40478540|10000|10000|||100.00|80.10|0.00|0.00|70178|90890|10000|10000|||88.24|85.47|0.00|2.00|000109F4|0|1| +21|2023-10-06T21:59:19.5840000-07:00|40021585|Zeromus|8B83|Dark Matter|40021585|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22478008|40478540|10000|10000|||100.00|80.10|0.00|0.00|22478008|40478540|10000|10000|||100.00|80.10|0.00|0.00|000109F5|0|1| +261|2023-10-06T21:59:19.3310000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:59:19.6730000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|23B20000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|22478008|40478540|10000|10000|||100.00|80.10|0.00|0.00|35525|58451|10000|10000|||99.87|102.04|0.00|3.10|000109F6|0|1| +21|2023-10-06T21:59:19.7170000-07:00|400217B8|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|14F20000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|38062|57266|10000|10000|||97.52|101.18|0.00|-2.29|54201|54201|10000|10000|||86.87|108.20|0.00|2.28|000109F7|0|1| +37|2023-10-06T21:59:19.7620000-07:00|10FF000B|Pusu Rosu|000109EE|55446|55446|3029|10000|0||100.54|101.15|0.00|1.06|1800|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:19.7620000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +39|2023-10-06T21:59:19.8060000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||108.08|88.13|0.00|-1.84| +38|2023-10-06T21:59:19.8060000-07:00|10FF0003|Gegehi Gehi|005A5A23|10333|51669|2000|10000|0||83.98|92.32|0.00|0.00|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:19.8060000-07:00|94|Raise|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|08|51669|55446| +26|2023-10-06T21:59:19.8060000-07:00|2B|Weakness|100.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +26|2023-10-06T21:59:19.8060000-07:00|1A2|Transcendent|5.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +261|2023-10-06T21:59:19.5200000-07:00|Change|10FF0003||||| +261|2023-10-06T21:59:19.5200000-07:00|Change|40021585||||| +37|2023-10-06T21:59:19.8510000-07:00|40021585|Zeromus|000109F1|22469987||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:19.8950000-07:00|10FF000A|Dukaro Nezikaro|000109EE|41162|58451|10000|10000|0||99.87|102.04|0.00|3.14|1E01|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:59:19.8950000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +261|2023-10-06T21:59:19.8140000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:20.0290000-07:00|10FF0008|Kokosaze Lulusaze|000109EE|61321|63151|10000|10000|0||99.00|100.34|0.00|-0.71|1F02|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:20.0290000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +37|2023-10-06T21:59:20.0750000-07:00|40021585|Zeromus|000109F6|22460849||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:20.0750000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|E63|55569|63151|10000|10000|||99.00|100.34|0.00|-0.71|10FF000B|Pusu Rosu|0|55446|55446|3029|10000|||99.75|101.90|0.00|0.36| +24|2023-10-06T21:59:20.0750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|14DE|57078|57078|6700|10000|||97.48|98.44|0.00|2.79|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6700|10000|||97.48|98.44|0.00|2.79| +24|2023-10-06T21:59:20.0750000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D58|55569|63151|10000|10000|||99.00|100.34|0.00|-0.71|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6700|10000|||97.48|98.44|0.00|2.79| +24|2023-10-06T21:59:20.0750000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D45|38062|57266|10000|10000|||97.34|101.18|0.00|3.02|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6700|10000|||97.48|98.44|0.00|2.79| +24|2023-10-06T21:59:20.0750000-07:00|10FF000B|Pusu Rosu|HoT|798|1611|55446|55446|3029|10000|||99.75|101.90|0.00|0.36|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6700|10000|||97.48|98.44|0.00|2.79| +24|2023-10-06T21:59:20.0750000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|15CD|41162|58451|10000|10000|||99.87|102.04|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6700|10000|||97.48|98.44|0.00|2.79| +24|2023-10-06T21:59:20.0750000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D1E|90349|90349|10000|10000|||107.66|88.38|0.00|-1.78|10FF0004|Buhojaqe Zijaqe|0|57078|57078|6700|10000|||97.48|98.44|0.00|2.79| +24|2023-10-06T21:59:20.0750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9C8|57078|57078|6700|10000|||97.48|98.44|0.00|2.79|E0000000||0||||||||||| +21|2023-10-06T21:59:20.0750000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13CE0F|A748000|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||107.66|88.38|0.00|-1.78|90349|90349|10000|10000|||107.66|88.38|0.00|-1.78|000109F8|0|1| +38|2023-10-06T21:59:20.0750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.00|100.34|0.00|-0.71|0|0|0|||||||||||||||| +26|2023-10-06T21:59:20.0750000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:59:20.0750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41459|57266|10000|10000|0||97.34|101.18|0.00|3.02|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:20.0750000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:59:20.0750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||107.66|88.38|0.00|-1.78|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:20.0750000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +26|2023-10-06T21:59:20.0750000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +26|2023-10-06T21:59:20.0750000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +26|2023-10-06T21:59:20.0750000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:59:20.0750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6700|10000|0||97.48|98.44|0.00|2.79|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.0750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +30|2023-10-06T21:59:20.0750000-07:00|ED2|Beckoning Dark|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T21:59:20.0750000-07:00|10FF0003|Gegehi Gehi|005A5A23|10333|51669|2000|10000|0||83.98|92.32|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:59:20.0750000-07:00|ED7|Forked Lightning|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +261|2023-10-06T21:59:19.8140000-07:00|Change|400215A2||||||||| +38|2023-10-06T21:59:20.0750000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3029|10000|0||99.75|101.90|0.00|0.36|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.0750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:59:20.0750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46743|58451|10000|10000|0||99.87|102.04|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:20.0750000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +30|2023-10-06T21:59:20.0750000-07:00|ED7|Forked Lightning|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +31|2023-10-06T21:59:20.0750000-07:00|10FF0001||||| +37|2023-10-06T21:59:20.1180000-07:00|40021585|Zeromus|000109F4|22457945||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:20.1180000-07:00|40021585|Zeromus|000109F0|22448141||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:20.1650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6700|10000|0||97.49|98.17|0.00|2.89|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:59:20.1650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||98.90|100.63|0.00|-0.40|0|0|0||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:59:20.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41459|57266|10000|10000|0||97.34|101.18|0.00|3.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T21:59:20.1650000-07:00|10FF0003|Gegehi Gehi|005A5A23|10333|51669|2000|10000|0||83.98|92.32|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:59:20.1650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46743|58451|10000|10000|0||99.87|102.04|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +38|2023-10-06T21:59:20.1650000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3029|10000|0||99.62|102.00|0.00|0.03|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|750|Temperance|20.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +26|2023-10-06T21:59:20.1650000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:20.1650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70178|90890|10000|10000|0||88.25|85.35|0.00|2.20|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:59:20.1650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||107.66|88.38|0.00|-1.78|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +37|2023-10-06T21:59:20.1650000-07:00|10FF000B|Pusu Rosu|000109F3|55446|55446|3029|10000|0||99.62|102.00|0.00|0.03|1800|0|0|02|05000750|0|41A00000|||||| +37|2023-10-06T21:59:20.1650000-07:00|10FF0006|Wowobora Gogobora|000109EE|47190|57266|10000|10000|0||97.34|101.18|0.00|3.02|1B03|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:59:20.1650000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +22|2023-10-06T21:59:20.1650000-07:00|400215A1|Zeromus|8B54|Forked Lightning|10FF000B|Pusu Rosu|550003|8B080000|5A0E|D870000|1B|8B548000|0|0|0|0|0|0|0|0|0|0|55446|55446|3029|10000|||99.62|102.00|0.00|0.03|44|44|0|10000|||99.87|102.06|0.00|3.14|000109F9|0|4| +22|2023-10-06T21:59:20.1650000-07:00|400215A1|Zeromus|8B54|Forked Lightning|10FF0008|Kokosaze Lulusaze|550003|96F90000|5A0E|D870000|1B|8B548000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||98.90|100.63|0.00|-0.40|44|44|0|10000|||99.87|102.06|0.00|3.14|000109F9|1|4| +22|2023-10-06T21:59:20.1650000-07:00|400215A1|Zeromus|8B54|Forked Lightning|10FF0006|Wowobora Gogobora|550003|A72F0000|5A0E|D870000|1B|8B548000|0|0|0|0|0|0|0|0|0|0|41459|57266|10000|10000|||97.34|101.18|0.00|3.02|44|44|0|10000|||99.87|102.06|0.00|3.14|000109F9|2|4| +22|2023-10-06T21:59:20.1650000-07:00|400215A1|Zeromus|8B54|Forked Lightning|10FF0004|Buhojaqe Zijaqe|550003|87600000|5A0E|D870000|1B|8B548000|0|0|0|0|0|0|0|0|0|0|57078|57078|6700|10000|||97.49|98.17|0.00|2.89|44|44|0|10000|||99.87|102.06|0.00|3.14|000109F9|3|4| +21|2023-10-06T21:59:20.1650000-07:00|400215A2|Zeromus|8B54|Forked Lightning|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.98|92.32|0.00|0.00|000109FA|0|0| +22|2023-10-06T21:59:20.1650000-07:00|400215A3|Zeromus|8D3A|the Dark Beckons|10FF0004|Buhojaqe Zijaqe|750003|5CDA0000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|57078|57078|6700|10000|||97.49|98.17|0.00|2.89|44|44|0|10000|||100.00|100.00|0.00|0.00|000109FB|0|5| +22|2023-10-06T21:59:20.1650000-07:00|400215A3|Zeromus|8D3A|the Dark Beckons|10FF0006|Wowobora Gogobora|750003|6FE60000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|41459|57266|10000|10000|||97.34|101.18|0.00|3.02|44|44|0|10000|||100.00|100.00|0.00|0.00|000109FB|1|5| +22|2023-10-06T21:59:20.1650000-07:00|400215A3|Zeromus|8D3A|the Dark Beckons|10FF0008|Kokosaze Lulusaze|750003|5ED80000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||98.90|100.63|0.00|-0.40|44|44|0|10000|||100.00|100.00|0.00|0.00|000109FB|2|5| +22|2023-10-06T21:59:20.1650000-07:00|400215A3|Zeromus|8D3A|the Dark Beckons|10FF000B|Pusu Rosu|750003|5C420000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|55446|55446|3029|10000|||99.62|102.00|0.00|0.03|44|44|0|10000|||100.00|100.00|0.00|0.00|000109FB|3|5| +22|2023-10-06T21:59:20.1650000-07:00|400215A3|Zeromus|8D3A|the Dark Beckons|10FF000A|Dukaro Nezikaro|750003|71C60000|E80E|B7D0000|1B|8D3A8000|0|0|0|0|0|0|0|0|0|0|46743|58451|10000|10000|||99.87|102.04|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|000109FB|4|5| +24|2023-10-06T21:59:20.1650000-07:00|10FF0006|Wowobora Gogobora|HoT|0|16C6|41459|57266|10000|10000|||97.34|101.18|0.00|3.02|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T21:59:20.1650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||98.90|100.63|0.00|-0.40|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|B7D|Magic Vulnerability Up|1.95|400215A3|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:59:20.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53020|57266|10000|10000|0||97.34|101.18|0.00|3.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|B7D|Magic Vulnerability Up|1.95|400215A3|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +38|2023-10-06T21:59:20.1650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6700|10000|0||97.49|98.17|0.00|2.89|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|B7D|Magic Vulnerability Up|1.95|400215A3|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +38|2023-10-06T21:59:20.1650000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3029|10000|0||99.62|102.00|0.00|0.03|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|B7D|Magic Vulnerability Up|1.95|400215A3|Zeromus|10FF000B|Pusu Rosu|00|55446|44| +38|2023-10-06T21:59:20.1650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|46743|58451|10000|10000|0||99.87|102.04|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:20.1650000-07:00|B7D|Magic Vulnerability Up|1.95|400215A3|Zeromus|10FF000A|Dukaro Nezikaro|00|58451|44| +20|2023-10-06T21:59:20.2080000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|97.49|98.17|0.00|2.89| +20|2023-10-06T21:59:20.2520000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|1.970|99.62|102.00|0.00|0.03| +261|2023-10-06T21:59:20.0510000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:59:20.0510000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:59:20.2970000-07:00|10FF0004|Buhojaqe Zijaqe|000109EE|57078|57078|6700|10000|0||97.49|98.01|0.00|3.00|1C04|0|0|01|08000096|0|41700000|| +26|2023-10-06T21:59:20.2970000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +21|2023-10-06T21:59:20.2970000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22448141|40478540|10000|10000|||100.00|80.10|0.00|0.00|46743|58451|10000|10000|||99.87|102.04|0.00|3.14|000109FC|0|1| +39|2023-10-06T21:59:20.3410000-07:00|10FF000B|Pusu Rosu|55446|55446|3310|10000|||99.60|102.01|0.00|-0.26| +39|2023-10-06T21:59:20.3410000-07:00|10FF000A|Dukaro Nezikaro|47327|58451|10000|10000|||99.87|102.04|0.00|3.14| +21|2023-10-06T21:59:20.3860000-07:00|4002159F|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|1BEF4001|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|70178|90890|10000|10000|||88.26|85.15|0.00|2.35|44|44|0|10000|||100.00|100.00|0.00|0.00|000109FD|0|1| +21|2023-10-06T21:59:20.3860000-07:00|400215A0|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|EC750205|41BA0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||107.42|88.40|0.00|-1.78|44|44|0|10000|||100.00|100.00|0.00|0.00|000109FE|0|1| +37|2023-10-06T21:59:20.4310000-07:00|40021585|Zeromus|000109EF|22422616||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:20.4310000-07:00|10FF0001|Sesuga Sapisuga|000109EE|90349|90349|10000|10000|0||107.42|88.40|0.00|-1.78|1305|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:59:20.4310000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +24|2023-10-06T21:59:20.4310000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|17C9|47327|58451|10000|10000|||99.87|102.04|0.00|3.14|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T21:59:20.4310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53416|58451|10000|10000|0||99.87|102.04|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:20.4750000-07:00|10FF000B|Pusu Rosu|000109F9|19854|55446|3310|10000|0||99.57|102.03|0.00|-0.57|1800|0|0|01|09000D87|0|41200000|| +26|2023-10-06T21:59:20.4750000-07:00|D87|Paralysis|10.00|400215A1|Zeromus|10FF000B|Pusu Rosu|00|55446|44| +39|2023-10-06T21:59:20.4750000-07:00|10FF0007|Kehabiqo Febiqo|71086|90890|10000|10000|||88.26|85.15|0.00|2.35| +38|2023-10-06T21:59:20.4750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|6700|10000|0||97.49|97.83|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:20.4750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||98.77|101.00|0.00|-0.03|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:59:20.4750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53020|57266|10000|10000|0||97.34|101.18|0.00|3.02|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:20.4750000-07:00|10FF0003|Gegehi Gehi|005A5A23|10333|51669|2000|10000|0||83.96|92.33|0.00|0.03|0|0|0|||||||||||||||| +38|2023-10-06T21:59:20.4750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53416|58451|10000|10000|0||99.87|102.04|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:20.4750000-07:00|10FF000B|Pusu Rosu|005A5A18|19854|55446|3310|10000|0||99.57|102.03|0.00|-0.57|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:20.4750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|71086|90890|10000|10000|0||88.26|85.15|0.00|2.35|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:20.4750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||107.42|88.40|0.00|-1.78|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:59:20.4750000-07:00|10FF000B|Pusu Rosu|HoT|0|1498|55446|55446|3310|10000|||99.57|102.03|0.00|-0.57|400215A1|Zeromus|0|44|44|0|10000|||99.87|102.06|0.00|3.14| +21|2023-10-06T21:59:20.4750000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22448141|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||98.77|101.00|0.00|-0.03|000109FF|0|1| +38|2023-10-06T21:59:20.4750000-07:00|10FF000B|Pusu Rosu|005A5A18|25126|55446|3310|10000|0||99.57|102.03|0.00|-0.57|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:20.5200000-07:00|10FF0008|Kokosaze Lulusaze|000109F9|24502|63151|10000|10000|0||98.77|101.00|0.00|-0.03|1F01|0|0|01|07000D87|0|41200000|| +26|2023-10-06T21:59:20.5200000-07:00|D87|Paralysis|10.00|400215A1|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +37|2023-10-06T21:59:20.5200000-07:00|10FF0006|Wowobora Gogobora|000109F7|57266||||||97.34|101.18|0.00|3.02| +21|2023-10-06T21:59:20.5200000-07:00|10FF0007|Kehabiqo Febiqo|2B|Holmgang|40021585|Zeromus|37|580000|F|1998000|0|0|0|0|0|0|0|0|0|0|0|0|22422616|40478540|10000|10000|||100.00|80.10|0.00|0.00|71086|90890|10000|10000|||88.27|85.07|-0.01|2.41|00010A00|0|1| +37|2023-10-06T21:59:20.5640000-07:00|10FF0006|Wowobora Gogobora|000109F9|14467|57266|10000|10000|0||97.34|101.18|0.00|3.02|1B02|0|0|01|0B000D87|0|41200000|| +26|2023-10-06T21:59:20.5640000-07:00|D87|Paralysis|10.00|400215A1|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +37|2023-10-06T21:59:20.5640000-07:00|10FF0007|Kehabiqo Febiqo|000109EE|79998|90890|10000|10000|0||88.27|85.07|-0.01|2.41|1506|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:20.5640000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +24|2023-10-06T21:59:20.5640000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E2B|71086|90890|10000|10000|||88.27|85.07|-0.01|2.41|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T21:59:20.5640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|83625|90890|10000|10000|0||88.27|85.07|-0.01|2.41|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:20.6090000-07:00|10FF0004|Buhojaqe Zijaqe|000109F9|22422|57078|6700|10000|0||97.49|97.64|-0.02|-3.05|1C03|0|0|01|09000D87|0|41200000|| +26|2023-10-06T21:59:20.6090000-07:00|D87|Paralysis|10.00|400215A1|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +24|2023-10-06T21:59:20.6530000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|23E9|90349|90349|10000|10000|||107.38|88.59|0.00|-1.79|10FF000B|Pusu Rosu|0|25126|55446|3310|10000|||99.53|102.04|-0.02|-0.89| +38|2023-10-06T21:59:20.6530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||107.38|88.59|0.00|-1.79|0|0|0||||||||||||||||||||||||||||||| +04|2023-10-06T21:59:20.5580000-07:00|400217B9|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||103.07|106.37|0.00|1.42| +261|2023-10-06T21:59:20.5580000-07:00|Remove|400217B9| +21|2023-10-06T21:59:20.7860000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|88E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22422616|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||107.38|88.59|0.00|-1.79|00010A01|0|1| +31|2023-10-06T21:59:20.7860000-07:00|10FF0001||||| +23|2023-10-06T21:59:20.8310000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|Interrupted| +37|2023-10-06T21:59:20.8310000-07:00|10FF0004|Buhojaqe Zijaqe|000109FB|0|57078|0|10000|0||97.49|97.64|0.00|-3.05|1C00|0|0|04|03000000|0|0|||||||||||||| +37|2023-10-06T21:59:20.8310000-07:00|40021585|Zeromus|000109FC|22420511||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:20.8310000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|0|57078|0|10000|0||97.49|97.64|0.00|-3.05|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:20.8310000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +30|2023-10-06T21:59:20.8310000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +30|2023-10-06T21:59:20.8310000-07:00|13B|Whispering Dawn|0.00|400217B8|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|57078|54201| +30|2023-10-06T21:59:20.8310000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +30|2023-10-06T21:59:20.8310000-07:00|B7D|Magic Vulnerability Up|0.00|400215A3|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +30|2023-10-06T21:59:20.8310000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +261|2023-10-06T21:59:20.5580000-07:00|Change|400217B8||||||||||| +30|2023-10-06T21:59:20.8310000-07:00|D87|Paralysis|0.00|400215A1|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +23|2023-10-06T21:59:20.8760000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|Interrupted| +37|2023-10-06T21:59:20.8760000-07:00|10FF0006|Wowobora Gogobora|000109FB|0|57266|0|10000|0||97.34|101.18|0.00|3.02|1B01|0|0|04|0|0|0|||||||||||||| +38|2023-10-06T21:59:20.8760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|0|57266|0|10000|0||97.34|101.18|0.00|3.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:20.8760000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +30|2023-10-06T21:59:20.8760000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +30|2023-10-06T21:59:20.8760000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +30|2023-10-06T21:59:20.8760000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|57266|57266| +30|2023-10-06T21:59:20.8760000-07:00|6FD|Vulnerability Up|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|57266|57266| +30|2023-10-06T21:59:20.8760000-07:00|13B|Whispering Dawn|0.00|400217B8|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|57266|54201| +30|2023-10-06T21:59:20.8760000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +30|2023-10-06T21:59:20.8760000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +30|2023-10-06T21:59:20.8760000-07:00|B7D|Magic Vulnerability Up|0.00|400215A3|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +30|2023-10-06T21:59:20.8760000-07:00|D87|Paralysis|0.00|400215A1|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +261|2023-10-06T21:59:20.5580000-07:00|Change|40021808||||| +261|2023-10-06T21:59:20.5580000-07:00|Change|40021808||||| +261|2023-10-06T21:59:20.5580000-07:00|Change|10FF0006||||||||||||||||||||||||| +37|2023-10-06T21:59:20.9190000-07:00|10FF0008|Kokosaze Lulusaze|000109FB|222|63151|10000|10000|0||98.82|100.92|-0.02|1.21|1F02|0|0|01|06000B7D|0|3F9F1A9F|| +37|2023-10-06T21:59:20.9630000-07:00|10FF0007|Kehabiqo Febiqo|00010A00|83625|90890|10000|10000|0||88.27|85.04|0.00|1.97|1500|0|0|01|07000199|0|41200000|| +26|2023-10-06T21:59:20.9630000-07:00|199|Holmgang|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:59:20.9630000-07:00|10FF000B|Pusu Rosu|000109FB|1508|55446|3310|10000|0||99.53|102.04|0.00|-0.89|1803|0|0|01|07000B7D|0|3F9978D4|| +39|2023-10-06T21:59:20.9630000-07:00|10FF0003|Gegehi Gehi|10849|51669|2200|10000|||83.23|93.42|0.00|0.23| +261|2023-10-06T21:59:20.6610000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:59:20.6610000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T21:59:21.0080000-07:00|40021585|Zeromus|000109F2|22400818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:21.0080000-07:00|10FF0007|Kehabiqo Febiqo|000109F2|89844||||||88.27|85.04|0.00|1.97| +37|2023-10-06T21:59:21.0080000-07:00|10FF000A|Dukaro Nezikaro|000109FB|24290|58451|10000|10000|0||99.87|102.04|-0.02|-3.06|1E04|0|0|01|09000B7D|0|3F93D709|| +37|2023-10-06T21:59:21.0520000-07:00|10FF0007|Kehabiqo Febiqo|000109FD|17157||||||88.27|85.04|0.00|1.97| +37|2023-10-06T21:59:21.0520000-07:00|10FF0001|Sesuga Sapisuga|000109FE|73523||||||107.38|88.61|0.00|-1.79| +261|2023-10-06T21:59:20.8970000-07:00|Remove|40021809| +37|2023-10-06T21:59:21.2310000-07:00|40021585|Zeromus|000109FF|22398515||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:21.0170000-07:00|Change|40021585||||||||||||| +37|2023-10-06T21:59:21.3190000-07:00|40021585|Zeromus|00010A01|22396325||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:21.3190000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|28750000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|22398515|40478540|10000|10000|||100.00|80.10|0.00|0.00|73523|90349|10000|10000|||107.32|88.89|0.00|-2.45|00010A02|0|1| +38|2023-10-06T21:59:21.3190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|73523|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:21.3190000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:59:21.3190000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:59:21.0170000-07:00|Change|10FF000B||||||||||||| +24|2023-10-06T21:59:21.6760000-07:00|40021585|Zeromus|DoT|0|1449|22396325|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:21.6760000-07:00|4BC8|3| +38|2023-10-06T21:59:21.6760000-07:00|40021585|Zeromus|005A5A00|22391132|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:21.6760000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +22|2023-10-06T21:59:21.7200000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|200004|44B30000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|1508|55446|3310|10000|||99.53|102.04|0.00|-0.89|1508|55446|3310|10000|||99.53|102.04|0.00|-0.89|00010A03|0|3| +22|2023-10-06T21:59:21.7200000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0008|Kokosaze Lulusaze|4|2B440000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|222|63151|10000|10000|||99.18|99.79|0.00|-3.11|1508|55446|3310|10000|||99.53|102.04|0.00|-0.89|00010A03|1|3| +22|2023-10-06T21:59:21.7200000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000A|Dukaro Nezikaro|200004|41C00000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|24290|58451|10000|10000|||99.81|105.35|0.00|-0.11|1508|55446|3310|10000|||99.53|102.04|0.00|-0.89|00010A03|2|3| +21|2023-10-06T21:59:21.8090000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|384B0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|22391132|40478540|10000|10000|||100.00|80.10|0.00|0.00|222|63151|10000|10000|||99.20|99.72|0.00|-3.09|00010A04|0|1| +261|2023-10-06T21:59:21.5530000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:21.8970000-07:00|40021585|Zeromus|00010A02|22380775||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:21.8970000-07:00|10FF0001|Sesuga Sapisuga|00010A02|73523|90349|10000|10000|0||107.32|88.89|0.00|-2.45|1300|0|0|02|0A00076E|03|41F00000|||||| +38|2023-10-06T21:59:21.8970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|73523|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:21.9410000-07:00|4002159F|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|33454001|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|17157|90890|10000|10000|||88.27|85.04|0.00|1.97|44|44|0|10000|||100.00|100.00|0.00|0.00|00010A05|0|1| +21|2023-10-06T21:59:21.9410000-07:00|400215A0|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|EC750205|41B30000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|73523|90349|10000|10000|||107.32|88.89|0.00|-2.45|44|44|0|10000|||100.00|100.00|0.00|0.00|00010A06|0|1| +21|2023-10-06T21:59:21.9410000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|254E0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|22380775|40478540|10000|10000|||100.00|80.10|0.00|0.00|17157|90890|10000|10000|||88.27|85.04|0.00|1.97|00010A07|0|1| +38|2023-10-06T21:59:22.1200000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|222|63151|10000|10000|0||99.20|99.72|-0.02|3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:22.1200000-07:00|B7D|Magic Vulnerability Up|0.00|400215A3|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +38|2023-10-06T21:59:22.1200000-07:00|10FF000B|Pusu Rosu|005A5A18|1508|55446|2410|10000|0||99.53|102.04|0.00|-0.89|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:22.1200000-07:00|B7D|Magic Vulnerability Up|0.00|400215A3|Zeromus|10FF000B|Pusu Rosu|00|55446|44| +38|2023-10-06T21:59:22.1200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|24290|58451|10000|10000|0||99.99|105.98|-0.01|0.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:22.1200000-07:00|B7D|Magic Vulnerability Up|0.00|400215A3|Zeromus|10FF000A|Dukaro Nezikaro|00|58451|44| +39|2023-10-06T21:59:22.1640000-07:00|10FF0008|Kokosaze Lulusaze|853|63151|10000|10000|||99.20|99.72|-0.02|3.10| +261|2023-10-06T21:59:22.0900000-07:00|Change|40021585||| +261|2023-10-06T21:59:22.0900000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T21:59:22.4310000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|18CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22380775|40478540|10000|10000|||100.00|80.10|0.00|0.00|853|63151|10000|10000|||99.20|99.72|0.00|3.10|00010A08|0|1| +37|2023-10-06T21:59:22.4750000-07:00|40021585|Zeromus|00010A07|22371225||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:22.5630000-07:00|10FF0007|Kehabiqo Febiqo|00010A05|1||||||88.27|85.04|0.00|1.97| +37|2023-10-06T21:59:22.5630000-07:00|10FF0001|Sesuga Sapisuga|00010A06|56704||||||107.32|88.89|0.00|-2.45| +37|2023-10-06T21:59:22.6090000-07:00|40021585|Zeromus|00010A04|22356814||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:22.6980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|1|90890|10000|10000|0||88.27|85.04|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:22.6980000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +261|2023-10-06T21:59:22.5140000-07:00|Change|10FF0003||||||||| +36|2023-10-06T21:59:22.7420000-07:00|4CF4|3| +37|2023-10-06T21:59:22.7420000-07:00|10FF000B|Pusu Rosu|00010A03|19095||||||99.47|101.87|-0.02|-2.01| +39|2023-10-06T21:59:22.7860000-07:00|10FF0001|Sesuga Sapisuga|57607|90349|10000|10000|||107.32|88.89|0.00|-2.45| +25|2023-10-06T21:59:22.8310000-07:00|10FF0004|Buhojaqe Zijaqe|400215A3|Zeromus| +36|2023-10-06T21:59:22.8750000-07:00|4E20|3| +37|2023-10-06T21:59:22.8750000-07:00|10FF0008|Kokosaze Lulusaze|00010A03|11929||||||99.20|99.72|0.00|3.10| +261|2023-10-06T21:59:22.6110000-07:00|Change|400217B8||||||||| +25|2023-10-06T21:59:22.9190000-07:00|10FF0006|Wowobora Gogobora|400215A3|Zeromus| +21|2023-10-06T21:59:22.9640000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22356814|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|90890|10000|10000|||88.27|85.04|0.00|1.97|00010A09|0|1| +20|2023-10-06T21:59:22.9640000-07:00|10FF000B|Pusu Rosu|1D90|Esuna|10FF000B|Pusu Rosu|0.985|99.38|101.58|0.00|-2.58| +37|2023-10-06T21:59:23.0090000-07:00|10FF000A|Dukaro Nezikaro|00010A03|41122||||||100.02|106.10|0.00|0.19| +24|2023-10-06T21:59:23.0540000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D32|11929|63151|10000|10000|||99.20|99.72|0.00|3.10|400215A1|Zeromus|0|44|44|0|10000|||99.87|102.06|0.00|3.14| +21|2023-10-06T21:59:23.0540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22356814|40478540|10000|10000|||100.00|80.10|0.00|0.00|57607|90349|10000|10000|||107.32|88.89|0.00|-2.45|00010A0A|0|1| +38|2023-10-06T21:59:23.0540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|15307|63151|10000|10000|0||99.20|99.72|0.00|3.10|0|0|0||||||||||||||||||||||||| +31|2023-10-06T21:59:23.0540000-07:00|10FF0001||||| +37|2023-10-06T21:59:23.2310000-07:00|40021585|Zeromus|00010A08|22350467||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:23.0400000-07:00|Change|40021585||| +261|2023-10-06T21:59:23.1360000-07:00|Change|10FF000B||||||||||||||||||| +39|2023-10-06T21:59:23.3640000-07:00|10FF000B|Pusu Rosu|19649|55446|2691|10000|||99.29|101.30|0.00|-3.13| +39|2023-10-06T21:59:23.3640000-07:00|10FF000A|Dukaro Nezikaro|41706|58451|10000|10000|||100.02|106.10|0.00|0.19| +24|2023-10-06T21:59:23.4090000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|175C|41122|58451|10000|10000|||100.02|106.10|0.00|0.19|10FF000B|Pusu Rosu|0|19095|55446|2410|10000|||99.29|101.30|0.00|-3.13| +21|2023-10-06T21:59:23.4090000-07:00|10FF000B|Pusu Rosu|1D90|Esuna|10FF000B|Pusu Rosu|10|D870000|1B|1D908000|0|0|0|0|0|0|0|0|0|0|0|0|19095|55446|2410|10000|||99.29|101.30|0.00|-3.13|19095|55446|2410|10000|||99.29|101.30|0.00|-3.13|00010A0B|0|1| +38|2023-10-06T21:59:23.4090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|47686|58451|10000|10000|0||100.02|106.10|0.00|0.19|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:59:23.4540000-07:00|10FF0007|Kehabiqo Febiqo|909|90890|10000|10000|||88.27|85.04|0.00|1.97| +38|2023-10-06T21:59:23.4540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|15307|63151|10000|10000|0||99.20|99.72|0.00|3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:23.4540000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:59:23.4540000-07:00|10FF0003|Gegehi Gehi|005A5A23|10849|51669|2200|10000|0||88.87|106.46|0.00|2.10|0|0|0|||||||||||||||| +26|2023-10-06T21:59:23.4540000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:59:23.4540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|47686|58451|10000|10000|0||100.02|106.10|0.00|0.19|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:23.4540000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +38|2023-10-06T21:59:23.4540000-07:00|10FF000B|Pusu Rosu|005A5A18|19649|55446|2291|10000|0||99.29|101.30|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:23.4540000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:23.4540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|909|90890|10000|10000|0||88.27|85.04|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:23.4540000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:59:23.4540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|57607|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:23.4540000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +24|2023-10-06T21:59:23.4540000-07:00|10FF000B|Pusu Rosu|HoT|0|E16|19649|55446|2291|10000|||99.29|101.30|0.00|-3.13|400215A1|Zeromus|0|44|44|0|10000|||99.87|102.06|0.00|3.14| +38|2023-10-06T21:59:23.4540000-07:00|10FF000B|Pusu Rosu|005A5A18|23255|55446|2291|10000|0||99.29|101.30|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:23.4970000-07:00|40021585|Zeromus|00010A09|22347571||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:23.4970000-07:00|4002159F|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750003|4DB24001|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|909|90890|10000|10000|||88.27|85.04|0.00|1.97|44|44|0|10000|||100.00|100.00|0.00|0.00|00010A0C|0|1| +21|2023-10-06T21:59:23.4970000-07:00|400215A0|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|EC750205|41F20000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|57607|90349|10000|10000|||107.32|88.89|0.00|-2.45|44|44|0|10000|||100.00|100.00|0.00|0.00|00010A0D|0|1| +24|2023-10-06T21:59:23.5430000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E57|909|90890|10000|10000|||88.27|85.04|0.00|1.97|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T21:59:23.5430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|4580|90890|10000|10000|0||88.27|85.04|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:23.5870000-07:00|40021585|Zeromus|00010A0A|22345920||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:23.3290000-07:00|Change|10FF0003||||||||| +24|2023-10-06T21:59:23.6310000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2C90|57607|90349|10000|10000|||107.32|88.89|0.00|-2.45|10FF0001|Sesuga Sapisuga|0|57607|90349|10000|10000|||107.32|88.89|0.00|-2.45| +38|2023-10-06T21:59:23.6310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69015|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:23.8100000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|35040000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22345920|40478540|10000|10000|||100.00|80.10|0.00|0.00|69015|90349|10000|10000|||107.32|88.89|0.00|-2.45|00010A0E|0|1| +38|2023-10-06T21:59:23.8100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69015|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:23.8100000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +39|2023-10-06T21:59:23.9880000-07:00|10FF0003|Gegehi Gehi|11365|51669|2400|10000|||91.13|105.97|0.00|2.32| +38|2023-10-06T21:59:24.0780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|69015|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:24.0780000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:59:24.1220000-07:00|10FF0007|Kehabiqo Febiqo|00010A0C|1||||||88.27|85.04|0.00|1.97| +37|2023-10-06T21:59:24.1220000-07:00|10FF0001|Sesuga Sapisuga|00010A0D|52133||||||107.32|88.89|0.00|-2.45| +21|2023-10-06T21:59:24.2560000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11365|51669|2400|10000|||92.30|104.95|0.00|2.40|11365|51669|2400|10000|||92.30|104.95|0.00|2.40|00010A0F|0|1| +38|2023-10-06T21:59:24.2560000-07:00|10FF0003|Gegehi Gehi|005A5A23|11365|51669|2400|10000|0||92.30|104.95|0.00|2.40|0|0|0|||||||||||||||| +30|2023-10-06T21:59:24.2560000-07:00|1A2|Transcendent|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +261|2023-10-06T21:59:24.0350000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T21:59:24.3890000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32716003|41ED0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|22345920|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|90890|10000|10000|||88.27|85.04|0.00|1.97|00010A10|0|1| +21|2023-10-06T21:59:24.4330000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|720003|5B8A0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|22345920|40478540|10000|10000|||100.00|80.10|0.00|0.00|15307|63151|10000|10000|||99.20|99.72|0.00|3.10|00010A11|0|1| +37|2023-10-06T21:59:24.5230000-07:00|10FF000B|Pusu Rosu|00010A0B|23255|55446|2291|10000|0||99.29|101.30|0.00|-3.13|1800|0|0|01|09000000|0|0|| +38|2023-10-06T21:59:24.5230000-07:00|10FF000B|Pusu Rosu|005A5A18|23255|55446|2291|10000|0||99.29|101.30|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:24.5230000-07:00|D87|Paralysis|0.00|400215A1|Zeromus|10FF000B|Pusu Rosu|00|55446|44| +261|2023-10-06T21:59:24.2440000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:59:24.2440000-07:00|Change|10FF000B||||| +24|2023-10-06T21:59:24.6570000-07:00|40021585|Zeromus|DoT|0|1327|22345920|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:24.6570000-07:00|4EFC|3| +38|2023-10-06T21:59:24.6570000-07:00|40021585|Zeromus|005A5A00|22341017|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:24.6570000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:59:24.4410000-07:00|Change|10FF000A||||||||| +04|2023-10-06T21:59:24.4410000-07:00|400217B8|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|54201|0|10000|||87.05|108.02|0.00|2.34| +04|2023-10-06T21:59:24.4410000-07:00|40021808|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|54388|0|10000|||106.87|108.08|0.00|-2.96| +261|2023-10-06T21:59:24.4410000-07:00|Remove|400217B8| +261|2023-10-06T21:59:24.4410000-07:00|Remove|40021808| +37|2023-10-06T21:59:24.8790000-07:00|10FF0003|Gegehi Gehi|00010A0F|11365|51669|2400|10000|0||95.36|103.50|0.00|2.51|2300|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T21:59:24.8790000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:59:25.0120000-07:00|40021585|Zeromus|00010A10|22324140||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:25.0570000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|209B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22341017|40478540|10000|10000|||100.00|80.10|0.00|0.00|15307|63151|10000|10000|||99.20|99.72|0.00|3.10|00010A12|0|1| +38|2023-10-06T21:59:25.0570000-07:00|10FF000B|Pusu Rosu|005A5A18|23255|55446|2291|10000|0||99.29|101.30|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:25.0570000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:59:25.0570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|47686|58451|10000|10000|0||99.83|106.35|0.43|0.19|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:25.0570000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +37|2023-10-06T21:59:25.1010000-07:00|40021585|Zeromus|00010A0E|22310568||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:25.1010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|15307|63151|10000|10000|0||99.20|99.72|0.00|3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:25.1010000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:59:25.1010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|52133|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:25.1010000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +39|2023-10-06T21:59:25.1450000-07:00|10FF0008|Kokosaze Lulusaze|15938|63151|10000|10000|||99.20|99.72|0.00|3.10| +21|2023-10-06T21:59:25.2800000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|722003|4CFF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22310568|40478540|10000|10000|||100.00|80.10|0.00|0.00|11365|51669|2400|10000|||96.65|102.08|-0.02|3.01|00010A13|0|1| +21|2023-10-06T21:59:25.2800000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22310568|40478540|10000|10000|||100.00|80.10|0.00|0.00|11365|51669|2400|10000|||96.65|102.08|-0.02|3.01|00010A14|0|1| +21|2023-10-06T21:59:25.3240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|84B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22310568|40478540|10000|10000|||100.00|80.10|0.00|0.00|52133|90349|10000|10000|||107.32|88.89|0.00|-2.45|00010A15|0|1| +31|2023-10-06T21:59:25.3240000-07:00|10FF0001||||| +20|2023-10-06T21:59:25.4130000-07:00|10FF000B|Pusu Rosu|78|Cure|10FF0007|Kehabiqo Febiqo|1.477|99.29|101.30|0.00|-3.13| +38|2023-10-06T21:59:25.5460000-07:00|40021585|Zeromus|005A5A00|22310568|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T21:59:25.5460000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|57078| +261|2023-10-06T21:59:25.2160000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T21:59:25.5910000-07:00|40021585|Zeromus|00010A11|22287134||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:25.6350000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|656B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|1|90890|10000|10000|||88.27|85.04|0.00|1.97|22287134|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010A16|0|1| +261|2023-10-06T21:59:25.3150000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T21:59:25.6800000-07:00|40021585|Zeromus|00010A12|22278787||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:25.8130000-07:00|40021585|Zeromus|00010A14|22278786||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:25.8130000-07:00|10FF0001|Sesuga Sapisuga|53036|90349|10000|10000|||107.32|88.89|0.00|-2.45| +21|2023-10-06T21:59:25.8130000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|180E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22278787|40478540|10000|10000|||100.00|80.10|0.00|0.00|15938|63151|10000|10000|||99.20|99.72|0.00|3.10|00010A17|0|1| +37|2023-10-06T21:59:25.8570000-07:00|40021585|Zeromus|00010A15|22276663||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:26.0870000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|DFE|15938|63151|10000|10000|||99.20|99.72|0.00|3.10|400215A1|Zeromus|0|44|44|0|10000|||99.87|102.06|0.00|3.14| +21|2023-10-06T21:59:26.0870000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|25DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22276663|40478540|10000|10000|||100.00|80.10|0.00|0.00|11365|51669|2400|10000|||97.03|101.85|0.00|3.01|00010A18|0|1| +38|2023-10-06T21:59:26.0870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|19520|63151|10000|10000|0||99.20|99.72|0.00|3.10|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:59:26.3480000-07:00|10FF000B|Pusu Rosu|23809|55446|2572|10000|||99.29|101.30|0.00|-2.55| +39|2023-10-06T21:59:26.3480000-07:00|10FF000A|Dukaro Nezikaro|48270|58451|10000|10000|||100.50|104.81|0.00|1.11| +21|2023-10-06T21:59:26.3480000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BE90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22276663|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|90890|10000|10000|||88.27|85.04|0.00|1.97|00010A19|0|1| +21|2023-10-06T21:59:26.3480000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|41970000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|22276663|40478540|10000|10000|||100.00|80.10|0.00|0.00|53036|90349|10000|10000|||107.32|88.89|0.00|-2.45|00010A1A|0|1| +21|2023-10-06T21:59:26.3480000-07:00|10FF000B|Pusu Rosu|78|Cure|10FF0007|Kehabiqo Febiqo|4|34C20000|F|9B8000|1B|788000|0|0|0|0|0|0|0|0|0|0|1|90890|10000|10000|||88.27|85.04|0.00|1.97|23255|55446|2291|10000|||99.29|101.30|0.00|-2.55|00010A1B|0|1| +38|2023-10-06T21:59:26.3480000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|53036|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:26.3480000-07:00|76E|Sword Oath|25.50|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +38|2023-10-06T21:59:26.3480000-07:00|10FF000B|Pusu Rosu|005A5A18|23809|55446|2172|10000|0||99.29|101.30|0.00|-2.55|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:26.3480000-07:00|9B|Freecure|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:26.3930000-07:00|10FF0003|Gegehi Gehi|005A5A23|11365|51669|2950|10000|0||97.03|101.85|0.00|3.01|0|0|0|||||||||||||||| +37|2023-10-06T21:59:26.4380000-07:00|40021585|Zeromus|00010A13|22256952||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:26.4380000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1EE8|48270|58451|10000|10000|||100.77|104.16|0.00|1.33|10FF000B|Pusu Rosu|0|23809|55446|2172|10000|||99.29|101.30|0.00|-2.55| +38|2023-10-06T21:59:26.4380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56182|58451|10000|10000|0||100.77|104.16|0.00|1.33|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:59:26.4820000-07:00|10FF0007|Kehabiqo Febiqo|909|90890|10000|10000|||88.27|85.04|0.00|1.97| +38|2023-10-06T21:59:26.4820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|19520|63151|10000|10000|0||99.30|99.93|0.00|2.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:26.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:59:26.4820000-07:00|10FF0003|Gegehi Gehi|005A5A23|11365|51669|2950|10000|0||97.03|101.85|0.00|3.01|0|0|0|||||||||||||||| +26|2023-10-06T21:59:26.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:59:26.4820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56182|58451|10000|10000|0||100.77|104.16|0.00|1.33|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:26.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +38|2023-10-06T21:59:26.4820000-07:00|10FF000B|Pusu Rosu|005A5A18|23809|55446|2172|10000|0||99.29|101.30|0.00|-2.55|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:26.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:26.4820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|909|90890|10000|10000|0||88.27|85.04|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:26.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:59:26.4820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|53036|90349|10000|10000|0||107.32|88.89|0.00|-2.45|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:26.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +24|2023-10-06T21:59:26.4820000-07:00|10FF000B|Pusu Rosu|HoT|0|D4F|23809|55446|2172|10000|||99.29|101.30|0.00|-2.55|E0000000||0||||||||||| +38|2023-10-06T21:59:26.4820000-07:00|10FF000B|Pusu Rosu|005A5A18|27216|55446|2172|10000|0||99.29|101.30|0.00|-2.55|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:59:26.5710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D79|1|90890|10000|10000|||88.27|85.04|0.00|1.97|400215A3|Zeromus|0|44|44|0|10000|||100.00|100.00|0.00|0.00| +38|2023-10-06T21:59:26.5710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|4358|90890|10000|10000|0||88.27|85.04|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:26.2200000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T21:59:26.6160000-07:00|40021585|Zeromus|00010A17|22250794||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:26.6600000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2669|53036|90349|10000|10000|||107.26|88.91|0.00|-1.59|10FF0001|Sesuga Sapisuga|0|53036|90349|10000|10000|||107.26|88.91|0.00|-1.59| +38|2023-10-06T21:59:26.6600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|62869|90349|10000|10000|0||107.26|88.91|0.00|-1.59|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:26.3170000-07:00|Change|10FF000B||||||||||||||||| +21|2023-10-06T21:59:26.7480000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|756003|51E50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22250794|40478540|10000|10000|||100.00|80.10|0.00|0.00|56182|58451|10000|10000|||101.20|102.98|0.00|1.76|00010A1C|0|1| +21|2023-10-06T21:59:26.8390000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F712003|4D3D0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|22250794|40478540|10000|10000|||100.00|80.10|0.00|0.00|4358|90890|10000|10000|||88.27|85.04|0.00|1.97|00010A1D|0|1| +38|2023-10-06T21:59:26.8390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|4358|90890|10000|10000|0||88.27|85.04|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:26.8390000-07:00|A75|Surging Tempest|43.81|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:59:26.8820000-07:00|40021585|Zeromus|00010A19|22247745||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:26.9730000-07:00|10FF0003|Gegehi Gehi|11881|51669|3150|10000|||97.03|101.85|0.00|3.01| +21|2023-10-06T21:59:27.0170000-07:00|10FF000B|Pusu Rosu|1D08|Divine Benison|10FF0007|Kehabiqo Febiqo|F80E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|4358|90890|10000|10000|||88.27|85.04|0.00|1.97|27216|55446|2172|10000|||99.29|101.30|0.00|-2.55|00010A1E|0|1| +37|2023-10-06T21:59:27.2400000-07:00|40021585|Zeromus|00010A18|22238051||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:26.8400000-07:00|Change|10FF0001||||||||| +36|2023-10-06T21:59:27.3730000-07:00|5154|3| +37|2023-10-06T21:59:27.3730000-07:00|10FF0007|Kehabiqo Febiqo|00010A1B|17864||||||88.27|85.04|0.00|1.97| +37|2023-10-06T21:59:27.3730000-07:00|10FF000B|Pusu Rosu|00010A1B|27216|55446|2172|10000|0||99.30|101.27|0.00|-2.90|1800|0|0|01|0200009B|0|41700000|| +37|2023-10-06T21:59:27.3730000-07:00|40021585|Zeromus|00010A1C|22217086||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:27.3730000-07:00|10FF000B|Pusu Rosu|005A5A18|27216|55446|2172|10000|0||99.30|101.27|0.00|-2.90|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:59:27.4180000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|47020000|0|0|0|0|0|0|0|0|0|0|0|0|17864|90890|10000|10000|||88.27|85.04|0.00|1.97|17864|90890|10000|10000|||88.27|85.04|0.00|1.97|00010A1F|0|1| +20|2023-10-06T21:59:27.4180000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|97.11|102.07|-0.02|-2.17| +21|2023-10-06T21:59:27.5520000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|724003|71E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22217086|40478540|10000|10000|||100.00|80.10|0.00|0.00|19520|63151|10000|10000|||99.41|100.33|0.00|1.59|00010A20|0|1| +21|2023-10-06T21:59:27.5960000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22217086|40478540|10000|10000|||100.00|80.10|0.00|0.00|62869|90349|10000|10000|||105.83|94.06|0.00|-2.07|00010A21|0|1| +21|2023-10-06T21:59:27.5960000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22217086|40478540|10000|10000|||100.00|80.10|0.00|0.00|56182|58451|10000|10000|||101.03|102.10|0.00|-3.09|00010A22|0|1| +31|2023-10-06T21:59:27.5960000-07:00|10FF0001||||| +261|2023-10-06T21:59:27.1690000-07:00|Change|10FF0003||||||||||||||||||||||||| +37|2023-10-06T21:59:27.6410000-07:00|40021585|Zeromus|00010A1A|22200295||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:59:27.6850000-07:00|5230|3| +37|2023-10-06T21:59:27.8180000-07:00|10FF0007|Kehabiqo Febiqo|00010A1E|17864|90890|10000|10000|12||88.27|85.04|0.00|1.97|1500|0|0|01|010004C2|0|41700000|| +26|2023-10-06T21:59:27.8180000-07:00|4C2|Divine Benison|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:59:27.8180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|17864|90890|10000|10000|12||88.27|85.04|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +20|2023-10-06T21:59:27.9060000-07:00|10FF000B|Pusu Rosu|78|Cure|10FF0007|Kehabiqo Febiqo|1.477|99.49|100.77|0.00|3.12| +261|2023-10-06T21:59:27.4560000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:59:28.0860000-07:00|10FF0007|Kehabiqo Febiqo|00010A1F|36042|109068|10000|10000|10||88.27|85.04|0.00|1.97|1500|0|0|01|08000057|0|41200000|| +26|2023-10-06T21:59:28.0860000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +38|2023-10-06T21:59:28.0860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|36042|109068|10000|10000|10||88.27|85.04|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:28.0860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|62869|90349|10000|10000|0||104.31|95.00|0.00|-2.49|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:28.0860000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:59:28.1290000-07:00|40021585|Zeromus|00010A21|22198557||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:28.1290000-07:00|40021585|Zeromus|00010A22|22196279||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:28.1740000-07:00|10FF0008|Kokosaze Lulusaze|20151|63151|10000|10000|||99.41|100.33|0.00|3.11| +21|2023-10-06T21:59:28.1740000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19520|63151|10000|10000|||99.41|100.33|0.00|3.11|19520|63151|10000|10000|||99.41|100.33|0.00|3.11|00010A23|0|1| +38|2023-10-06T21:59:28.1740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|20151|63151|10000|10000|0||99.41|100.33|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:28.1740000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|63151|63151| +21|2023-10-06T21:59:28.3080000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|4|8A130000|1CC80F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|36042|109068|10000|10000|||88.30|85.05|0.00|1.80|36042|109068|10000|10000|||88.30|85.05|0.00|1.80|00010A24|0|1| +261|2023-10-06T21:59:27.9950000-07:00|Change|40021585||| +37|2023-10-06T21:59:28.4870000-07:00|40021585|Zeromus|00010A1D|22176506||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:28.6660000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3EA70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|36042|109068|10000|10000|||88.36|85.07|0.00|1.74|22176506|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010A25|0|1| +00|2023-10-06T21:59:28.0000000-07:00|0044|Zeromus|My Darkness shall devour all Light.| +37|2023-10-06T21:59:28.7110000-07:00|40021585|Zeromus|00010A20|22147354||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:59:28.7550000-07:00|40021585|Zeromus|8B69|Black Hole|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:28.8010000-07:00|10FF0001|Sesuga Sapisuga|63772|90349|10000|10000|||104.23|94.89|0.00|-2.86| +21|2023-10-06T21:59:28.8010000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20151|63151|10000|10000|||99.41|100.33|0.00|3.11|20151|63151|10000|10000|||99.41|100.33|0.00|3.11|00010A26|0|1| +21|2023-10-06T21:59:28.8450000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|13820000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|22147354|40478540|10000|10000|||100.00|80.10|0.00|0.00|63772|90349|10000|10000|||104.23|94.89|0.00|-2.86|00010A27|0|1| +21|2023-10-06T21:59:28.8450000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|29450000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|22147354|40478540|10000|10000|||100.00|80.10|0.00|0.00|11881|51669|3150|10000|||97.28|102.28|0.00|3.02|00010A28|0|1| +38|2023-10-06T21:59:28.8450000-07:00|10FF0003|Gegehi Gehi|005A5A23|11881|51669|2950|10000|0||97.28|102.28|0.00|3.02|0|0|0||||||||||||||||||| +26|2023-10-06T21:59:28.8450000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +21|2023-10-06T21:59:28.8460000-07:00|10FF000B|Pusu Rosu|78|Cure|10FF0007|Kehabiqo Febiqo|4|42FE0000|1B|788000|0|0|0|0|0|0|0|0|0|0|0|0|36042|109068|10000|10000|||88.72|85.22|0.00|1.68|27216|55446|2172|10000|||99.50|100.72|0.00|-2.52|00010A29|0|1| +261|2023-10-06T21:59:28.3990000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T21:59:28.4970000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T21:59:28.9340000-07:00|10FF0007|Kehabiqo Febiqo|00010A24|71389|109068|10000|10000|10||88.72|85.22|0.00|1.68|1500|0|0|01|0A000A79|0|41700000|| +26|2023-10-06T21:59:28.9340000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +261|2023-10-06T21:59:28.5890000-07:00|Change|40021585||||||||||||| +24|2023-10-06T21:59:29.0690000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D7F|20151|63151|10000|10000|||99.41|100.33|0.00|3.11|400215A1|Zeromus|0|44|44|0|10000|||99.87|102.06|0.00|3.14| +38|2023-10-06T21:59:29.0690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|23606|63151|10000|10000|0||99.41|100.33|0.00|3.11|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:59:29.2900000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|15B10000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|22147354|40478540|10000|10000|||100.00|80.10|0.00|0.00|71389|109068|10000|10000|||91.47|86.31|0.00|1.28|00010A2A|0|1| +39|2023-10-06T21:59:29.3340000-07:00|10FF000B|Pusu Rosu|27770|55446|2053|10000|||99.50|100.72|0.00|-2.55| +39|2023-10-06T21:59:29.3340000-07:00|10FF000A|Dukaro Nezikaro|56766|58451|10000|10000|||101.03|102.10|0.00|-3.09| +38|2023-10-06T21:59:29.3780000-07:00|10FF0003|Gegehi Gehi|005A5A23|11881|51669|3500|10000|0||97.28|102.28|0.00|3.02|0|0|0||||||||||||||||||| +261|2023-10-06T21:59:29.0510000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:59:29.4230000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1E1A|56766|58451|10000|10000|||101.03|102.10|0.00|-3.09|10FF000B|Pusu Rosu|0|27770|55446|2053|10000|||99.50|100.72|0.00|-2.57| +38|2023-10-06T21:59:29.4230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||101.03|102.10|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:59:29.4670000-07:00|10FF0007|Kehabiqo Febiqo|00010A25|55350|109068|10000|10000|0||92.20|86.60|0.00|2.42|1500|0|0|01|01000000|0|0|| +37|2023-10-06T21:59:29.4670000-07:00|40021585|Zeromus|00010A27|22142360||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:29.4680000-07:00|10FF0007|Kehabiqo Febiqo|56440|109068|10000|10000|||92.20|86.60|0.00|2.42| +38|2023-10-06T21:59:29.4680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|23606|63151|10000|10000|0||99.41|100.33|0.00|3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:29.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +261|2023-10-06T21:59:29.0510000-07:00|Change|40021585||||| +38|2023-10-06T21:59:29.4680000-07:00|10FF0003|Gegehi Gehi|005A5A23|11881|51669|3500|10000|0||97.28|102.28|0.00|3.02|0|0|0||||||||||||||||||| +26|2023-10-06T21:59:29.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:59:29.4680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||101.03|102.10|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:29.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +38|2023-10-06T21:59:29.4680000-07:00|10FF000B|Pusu Rosu|005A5A18|27770|55446|2053|10000|0||99.50|100.72|0.00|-2.57|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:29.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:29.4680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|56440|109068|10000|10000|0||92.20|86.60|0.00|2.42|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:29.4680000-07:00|4C2|Divine Benison|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|109068|55446| +26|2023-10-06T21:59:29.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|109068|55446| +38|2023-10-06T21:59:29.4680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|63772|90349|10000|10000|0||102.55|95.52|0.00|-2.78|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:29.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +24|2023-10-06T21:59:29.4680000-07:00|10FF000B|Pusu Rosu|HoT|0|E66|27770|55446|2053|10000|||99.50|100.72|0.00|-2.57|E0000000||0||||||||||| +38|2023-10-06T21:59:29.4680000-07:00|10FF000B|Pusu Rosu|005A5A18|31456|55446|2053|10000|0||99.50|100.72|0.00|-2.57|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:59:29.5120000-07:00|10FF000B|Pusu Rosu|88|Presence of Mind|10FF000B|Pusu Rosu|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31456|55446|2053|10000|||99.50|100.72|0.00|-2.59|31456|55446|2053|10000|||99.50|100.72|0.00|-2.59|00010A2B|0|1| +24|2023-10-06T21:59:29.5560000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2445|56440|109068|10000|10000|||92.70|86.80|0.00|2.42|10FF0007|Kehabiqo Febiqo|0|56440|109068|10000|10000|||92.70|86.80|0.00|2.42| +38|2023-10-06T21:59:29.5560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|65725|109068|10000|10000|0||92.70|86.80|0.00|2.42|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:29.6000000-07:00|40021585|Zeromus|00010A28|22131795||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:29.6450000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|24EC|63772|90349|10000|10000|||101.33|95.97|0.00|-2.82|10FF0001|Sesuga Sapisuga|0|63772|90349|10000|10000|||101.33|95.97|0.00|-2.82| +38|2023-10-06T21:59:29.6450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|73224|90349|10000|10000|0||101.33|95.97|0.00|-2.82|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:29.2380000-07:00|Change|10FF0003||||||| +261|2023-10-06T21:59:29.2380000-07:00|Change|10FF0007||||||||||| +21|2023-10-06T21:59:29.7330000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22131795|40478540|10000|10000|||100.00|80.10|0.00|0.00|65725|109068|10000|10000|||93.29|87.03|0.00|2.42|00010A2C|0|1| +21|2023-10-06T21:59:29.7770000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22131795|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.03|102.10|0.00|-3.09|00010A2D|0|1| +37|2023-10-06T21:59:29.8220000-07:00|40021585|Zeromus|00010A2A|22126242||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:29.8670000-07:00|10FF0007|Kehabiqo Febiqo|00010A29|82875||||||94.24|87.41|0.00|2.10| +21|2023-10-06T21:59:29.8670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22131795|40478540|10000|10000|||100.00|80.10|0.00|0.00|73224|90349|10000|10000|||100.90|96.03|0.00|-3.10|00010A2E|0|1| +31|2023-10-06T21:59:29.8670000-07:00|10FF0001||||| +261|2023-10-06T21:59:29.4380000-07:00|Change|10FF000B||||| +39|2023-10-06T21:59:30.0000000-07:00|10FF0003|Gegehi Gehi|12397|51669|3700|10000|||97.28|102.28|0.00|3.05| +21|2023-10-06T21:59:30.0000000-07:00|10FF0003|Gegehi Gehi|1D63|Verraise|10FF0004|Buhojaqe Zijaqe|814000E|940000|1B|1D638000|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|0|10000|||97.49|97.64|0.00|-3.05|11881|51669|3500|10000|||97.28|102.28|0.00|3.05|00010A2F|0|1| +38|2023-10-06T21:59:30.0000000-07:00|10FF0003|Gegehi Gehi|005A5A23|12397|51669|1300|10000|0||97.28|102.28|0.00|3.05|0|0|0|||||||||||||||| +30|2023-10-06T21:59:30.0000000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:59:30.0450000-07:00|10FF000B|Pusu Rosu|00010A2B|31456|55446|2053|10000|0||99.50|100.72|0.00|-2.74|1800|0|0|01|0700009D|0|41700000|| +26|2023-10-06T21:59:30.0450000-07:00|9D|Presence of Mind|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:30.0460000-07:00|10FF000B|Pusu Rosu|005A5A18|31456|55446|2053|10000|0||99.50|100.72|0.00|-2.74|0|0|0|||||||||||||||||||||||||||| +22|2023-10-06T21:59:30.2240000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000B|Pusu Rosu|BD5F0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31456|55446|2053|10000|||99.50|100.72|0.00|-2.77|31456|55446|2053|10000|||99.50|100.72|0.00|-2.77|00010A30|0|6| +22|2023-10-06T21:59:30.2240000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|BD5F0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23606|63151|10000|10000|||99.41|100.33|0.00|3.11|31456|55446|2053|10000|||99.50|100.72|0.00|-2.77|00010A30|1|6| +22|2023-10-06T21:59:30.2240000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|BD5F0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||101.02|102.09|0.00|-3.12|31456|55446|2053|10000|||99.50|100.72|0.00|-2.77|00010A30|2|6| +22|2023-10-06T21:59:30.2240000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|BD5F0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12397|51669|1300|10000|||97.28|102.28|0.00|3.07|31456|55446|2053|10000|||99.50|100.72|0.00|-2.77|00010A30|3|6| +22|2023-10-06T21:59:30.2240000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|BD5F0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73224|90349|10000|10000|||101.09|95.96|0.00|3.10|31456|55446|2053|10000|||99.50|100.72|0.00|-2.77|00010A30|4|6| +22|2023-10-06T21:59:30.2240000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|BD0B0E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|82875|109068|10000|10000|||97.18|88.58|0.00|1.20|31456|55446|2053|10000|||99.50|100.72|0.00|-2.77|00010A30|5|6| +37|2023-10-06T21:59:30.2680000-07:00|40021585|Zeromus|00010A2C|22123234||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:30.3120000-07:00|40021585|Zeromus|00010A2D|22120968||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:29.9520000-07:00|Change|10FF0007||||||||| +21|2023-10-06T21:59:30.3570000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|14600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22120968|40478540|10000|10000|||100.00|80.10|0.00|0.00|23606|63151|10000|10000|||99.41|100.33|0.00|3.11|00010A31|0|1| +37|2023-10-06T21:59:30.4010000-07:00|40021585|Zeromus|00010A2E|22119248||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:30.4010000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|309A0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|22120968|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.00|102.09|0.00|3.10|00010A32|0|1| +38|2023-10-06T21:59:30.4900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|23606|63151|10000|10000|0||99.41|100.33|0.00|3.11|0|0|0||||||||||||||||||| +30|2023-10-06T21:59:30.4900000-07:00|D87|Paralysis|0.00|400215A1|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +36|2023-10-06T21:59:30.6700000-07:00|530C|3| +261|2023-10-06T21:59:30.2560000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:30.8030000-07:00|10FF0004|Buhojaqe Zijaqe|00010A2F|0|57078|0|10000|0||97.49|97.64|0.00|-3.05|1C00|0|0|01|03000094|08|42700000|| +26|2023-10-06T21:59:30.8030000-07:00|94|Raise|60.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|08|57078|51669| +37|2023-10-06T21:59:30.8030000-07:00|40021585|Zeromus|00010A32|22106806||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:30.8940000-07:00|10FF000B|Pusu Rosu|1D06|Thin Air|10FF000B|Pusu Rosu|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|31456|55446|2053|10000|||99.63|99.91|0.00|-3.01|31456|55446|2053|10000|||99.63|99.91|0.00|-3.01|00010A33|0|1| +38|2023-10-06T21:59:30.8940000-07:00|10FF000B|Pusu Rosu|005A5A18|31456|55446|2053|10000|0||99.63|99.91|0.00|-3.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:30.8940000-07:00|4C1|Thin Air|12.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|55446|55446| +38|2023-10-06T21:59:30.9370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|82875|109068|10000|10000|0||100.73|90.96|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:30.9370000-07:00|199|Holmgang|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +37|2023-10-06T21:59:30.9820000-07:00|40021585|Zeromus|00010A31|22101590||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:31.0250000-07:00|10FF000B|Pusu Rosu|00010A30|31456|55446|2053|10000|0||99.70|99.46|0.00|3.12|1800|0|0|02|090004C1|FF9C|C1400000|||||| +26|2023-10-06T21:59:31.0250000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +37|2023-10-06T21:59:31.1580000-07:00|10FF0008|Kokosaze Lulusaze|00010A30|23606|63151|10000|10000|0||99.64|102.56|0.00|0.42|1F01|0|0|01|060004C3|0|41200000|| +26|2023-10-06T21:59:31.1580000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +37|2023-10-06T21:59:31.1580000-07:00|10FF000B|Pusu Rosu|00010A30|31456|55446|2053|10000|0||99.78|98.95|0.00|3.12|1801|0|0|01|090004C1|FF9C|C1400000|| +39|2023-10-06T21:59:31.1590000-07:00|10FF0008|Kokosaze Lulusaze|24237|63151|10000|10000|||99.64|102.56|0.00|0.42| +21|2023-10-06T21:59:31.1590000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|95F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22101590|40478540|10000|10000|||100.00|80.10|0.00|0.00|23606|63151|10000|10000|||99.64|102.56|0.00|0.42|00010A34|0|1| +37|2023-10-06T21:59:31.2920000-07:00|10FF000A|Dukaro Nezikaro|00010A30|58451|58451|10000|10000|0||101.06|102.07|0.00|-3.09|1E02|0|0|01|050004C3|0|41200000|| +26|2023-10-06T21:59:31.2920000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +37|2023-10-06T21:59:31.2920000-07:00|10FF000B|Pusu Rosu|00010A30|31456|55446|2053|10000|0||99.78|98.95|-0.02|3.12|1802|0|0|01|090004C1|FF9C|C1400000|| +26|2023-10-06T21:59:31.2920000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|63151|63151| +21|2023-10-06T21:59:31.2920000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2AA40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22101590|40478540|10000|10000|||100.00|80.10|0.00|0.00|24237|63151|10000|10000|||99.66|102.78|0.00|0.32|00010A35|0|1| +21|2023-10-06T21:59:31.3370000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1F750000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|22101590|40478540|10000|10000|||100.00|80.10|0.00|0.00|73224|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A36|0|1| +37|2023-10-06T21:59:31.4260000-07:00|10FF0003|Gegehi Gehi|00010A30|12397|51669|1300|10000|0||97.28|102.28|0.00|3.10|2303|0|0|01|050004C3|0|41200000|| +26|2023-10-06T21:59:31.4260000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +37|2023-10-06T21:59:31.4260000-07:00|10FF000B|Pusu Rosu|00010A30|31456|55446|2053|10000|0||99.78|98.95|-0.02|3.12|1803|0|0|01|090004C1|FF9C|C1400000|| +37|2023-10-06T21:59:31.5590000-07:00|10FF0001|Sesuga Sapisuga|00010A30|73224|90349|10000|10000|0||101.09|95.96|0.00|-3.07|1304|0|0|01|030004C3|0|41200000|| +26|2023-10-06T21:59:31.5590000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +37|2023-10-06T21:59:31.5590000-07:00|10FF000B|Pusu Rosu|00010A30|31456|55446|2053|10000|0||99.78|98.95|0.00|3.12|1804|0|0|01|090004C1|FF9C|C1400000|| +20|2023-10-06T21:59:31.5590000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.576|99.78|98.95|0.00|3.12| +261|2023-10-06T21:59:31.1100000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T21:59:31.6960000-07:00|10FF000B|Pusu Rosu|00010A33|31456|55446|2053|10000|0||99.78|98.95|0.00|3.12|1800|0|0|01|090004C1|FF9C|41400000|| +37|2023-10-06T21:59:31.6960000-07:00|10FF0007|Kehabiqo Febiqo|00010A30|82875|109068|10000|10000|0||100.18|92.60|0.00|-3.07|1505|0|0|01|010004C3|0|41200000|| +26|2023-10-06T21:59:31.6960000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|109068|55446| +38|2023-10-06T21:59:31.6960000-07:00|10FF000B|Pusu Rosu|005A5A18|31456|55446|2053|10000|0||99.78|98.95|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:31.7390000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|20F90000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|22101590|40478540|10000|10000|||100.00|80.10|0.00|0.00|82875|109068|10000|10000|||100.18|92.60|0.00|-3.07|00010A37|0|1| +39|2023-10-06T21:59:31.8290000-07:00|10FF0001|Sesuga Sapisuga|74127|90349|10000|10000|||101.09|95.96|0.00|-3.07| +37|2023-10-06T21:59:31.9170000-07:00|40021585|Zeromus|00010A34|22099191||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:31.9170000-07:00|40021585|Zeromus|00010A35|22088275||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:31.9610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|83C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22101590|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|00010A38|0|1| +21|2023-10-06T21:59:32.0050000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|74127|90349|10000|10000|||101.09|95.96|0.00|-3.07|74127|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A39|0|1| +24|2023-10-06T21:59:32.0500000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D37|24237|63151|10000|10000|||99.72|103.29|0.00|3.13|10FF000B|Pusu Rosu|0|31456|55446|2053|10000|||99.78|98.95|0.00|3.12| +38|2023-10-06T21:59:32.0500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|27620|63151|10000|10000|0||99.72|103.29|0.00|3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:59:32.0950000-07:00|40021585|Zeromus|00010A36|22080222||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:32.0950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|74127|90349|10000|10000|0||101.09|95.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:32.0950000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +21|2023-10-06T21:59:32.1400000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22088275|40478540|10000|10000|||100.00|80.10|0.00|0.00|74127|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A3A|0|1| +31|2023-10-06T21:59:32.1400000-07:00|10FF0001||||| +37|2023-10-06T21:59:32.3620000-07:00|40021585|Zeromus|00010A37|22071781||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:32.3620000-07:00|10FF000B|Pusu Rosu|32010|55446|2334|10000|||99.78|98.95|0.00|3.12| +39|2023-10-06T21:59:32.3620000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09| +38|2023-10-06T21:59:32.3620000-07:00|10FF0003|Gegehi Gehi|005A5A23|12397|51669|1850|10000|0||97.28|102.28|0.00|3.10|0|0|0||||||||||||||||||| +261|2023-10-06T21:59:31.9570000-07:00|Change|10FF0003||| +261|2023-10-06T21:59:31.9570000-07:00|Change|10FF000B||||| +24|2023-10-06T21:59:32.4080000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1853|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|10FF000B|Pusu Rosu|0|32010|55446|2334|10000|||99.78|98.95|0.00|3.12| +20|2023-10-06T21:59:32.4080000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|97.28|102.28|0.00|3.10| +38|2023-10-06T21:59:32.4080000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||101.06|102.07|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:59:32.4530000-07:00|10FF0007|Kehabiqo Febiqo|83965|109068|10000|10000|||100.14|92.64|0.00|-3.13| +38|2023-10-06T21:59:32.4530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|27620|63151|10000|10000|0||99.72|103.29|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:32.4530000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:59:32.4530000-07:00|10FF0003|Gegehi Gehi|005A5A23|12397|51669|1850|10000|0||97.28|102.28|0.00|3.10|0|0|0||||||||||||||||||| +26|2023-10-06T21:59:32.4530000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:59:32.4530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||101.06|102.07|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:32.4530000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +38|2023-10-06T21:59:32.4530000-07:00|10FF000B|Pusu Rosu|005A5A18|32010|55446|2334|10000|0||99.78|98.95|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:32.4530000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:32.4530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|83965|109068|10000|10000|0||100.14|92.64|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:32.4530000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|109068|55446| +38|2023-10-06T21:59:32.4530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|74127|90349|10000|10000|0||101.09|95.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:32.4530000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +24|2023-10-06T21:59:32.4530000-07:00|10FF000B|Pusu Rosu|HoT|0|14EA|32010|55446|2334|10000|||99.78|98.95|0.00|3.12|10FF000B|Pusu Rosu|0|32010|55446|2334|10000|||99.78|98.95|0.00|3.12| +38|2023-10-06T21:59:32.4530000-07:00|10FF000B|Pusu Rosu|005A5A18|37364|55446|2334|10000|0||99.78|98.95|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:32.4960000-07:00|40021585|Zeromus|00010A38|22069673||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:32.5420000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|38ED|83965|109068|10000|10000|||100.14|92.64|0.00|-3.13|10FF0007|Kehabiqo Febiqo|0|83965|109068|10000|10000|||100.14|92.64|0.00|-3.13| +38|2023-10-06T21:59:32.5420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98538|109068|10000|10000|0||100.14|92.64|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:32.6300000-07:00|10FF0001|Sesuga Sapisuga|00010A39|74127|90349|10000|10000|0||101.09|95.96|0.00|-3.07|1300|0|0|01|0500004C|0|41A00000|| +26|2023-10-06T21:59:32.6300000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +24|2023-10-06T21:59:32.6300000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D1E|74127|90349|10000|10000|||101.09|95.96|0.00|-3.07|10FF0001|Sesuga Sapisuga|0|74127|90349|10000|10000|||101.09|95.96|0.00|-3.07| +22|2023-10-06T21:59:32.6300000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|1AEA0000|BD860E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A3B|0|6| +22|2023-10-06T21:59:32.6300000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|1AB80000|BD860E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|74127|90349|10000|10000|||101.09|95.96|0.00|-3.07|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A3B|1|6| +22|2023-10-06T21:59:32.6300000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|4|1A9E0000|BD860E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A3B|2|6| +22|2023-10-06T21:59:32.6300000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|1A880000|BD860E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|12397|51669|1850|10000|||97.28|102.28|0.00|3.09|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A3B|3|6| +22|2023-10-06T21:59:32.6300000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|4|1A9E0000|BD860E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|27620|63151|10000|10000|||99.72|103.29|0.00|3.13|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A3B|4|6| +22|2023-10-06T21:59:32.6300000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|20D30000|BDD40E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|83965|109068|10000|10000|||100.14|92.64|0.00|-3.13|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A3B|5|6| +38|2023-10-06T21:59:32.6300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|77485|90349|10000|10000|0||101.09|95.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:32.6300000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T21:59:32.6300000-07:00|10FF000B|Pusu Rosu|005A5A18|37364|55446|2334|10000|0||99.78|98.95|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:32.6300000-07:00|4C1|Thin Air|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|55446|55446| +37|2023-10-06T21:59:32.6750000-07:00|40021585|Zeromus|00010A3A|22066772||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:32.6750000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|754003|31AB0000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|22069673|40478540|10000|10000|||100.00|80.10|0.00|0.00|77485|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A3C|0|1| +21|2023-10-06T21:59:32.6750000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|243D0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|22069673|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|00010A3D|0|1| +38|2023-10-06T21:59:32.6750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|77485|90349|10000|10000|0||101.09|95.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:32.6750000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|90349|90349| +26|2023-10-06T21:59:32.6750000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +26|2023-10-06T21:59:32.8080000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|63151|63151| +21|2023-10-06T21:59:32.8080000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|28FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22066772|40478540|10000|10000|||100.00|80.10|0.00|0.00|27620|63151|10000|10000|||99.72|103.29|0.00|3.13|00010A3E|0|1| +261|2023-10-06T21:59:32.4600000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T21:59:32.9860000-07:00|10FF0003|Gegehi Gehi|12913|51669|2050|10000|||97.28|102.28|0.00|3.03| +37|2023-10-06T21:59:33.0760000-07:00|40021585|Zeromus|00010A3D|22057495||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:33.1200000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22057495|40478540|10000|10000|||100.00|80.10|0.00|0.00|98538|109068|10000|10000|||100.14|92.64|0.00|-3.13|00010A3F|0|1| +21|2023-10-06T21:59:33.2550000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|B50F|A788000|0|0|0|0|0|0|0|0|0|0|98538|109068|10000|10000|||100.14|92.64|0.00|-3.13|98538|109068|10000|10000|||100.14|92.64|0.00|-3.13|00010A40|0|1| +37|2023-10-06T21:59:33.3000000-07:00|40021585|Zeromus|00010A3C|22044780||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:33.3000000-07:00|10FF0001|Sesuga Sapisuga|00010A3C|77485|90349|10000|10000|0||101.09|95.96|0.00|-3.07|1300|0|0|02|02000558|04|41F00000|||||| +38|2023-10-06T21:59:33.3000000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|77485|90349|10000|10000|0||101.09|95.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:32.9020000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T21:59:33.4330000-07:00|40021585|Zeromus|00010A3E|22034290||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:33.4770000-07:00|10FF000B|Pusu Rosu|HoT|4C3|1321|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|10FF000B|Pusu Rosu|0|37364|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:33.4770000-07:00|10FF000B|Pusu Rosu|00010A3B|49151|55446|2334|10000|0||99.78|98.95|0.00|3.12|1800|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:33.4770000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +21|2023-10-06T21:59:33.4770000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|13260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22044780|40478540|10000|10000|||100.00|80.10|0.00|0.00|27620|63151|10000|10000|||99.72|103.29|0.00|3.13|00010A41|0|1| +22|2023-10-06T21:59:33.5210000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|2B710000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A42|0|6| +22|2023-10-06T21:59:33.5210000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|2C050000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|77485|90349|10000|10000|||101.09|95.96|0.00|-3.07|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A42|1|6| +22|2023-10-06T21:59:33.5210000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|200004|435E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A42|2|6| +22|2023-10-06T21:59:33.5210000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|44BE0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|12913|51669|2050|10000|||97.28|102.28|0.00|3.02|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A42|3|6| +22|2023-10-06T21:59:33.5210000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|2B980000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|27620|63151|10000|10000|||99.72|103.29|0.00|3.13|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A42|4|6| +22|2023-10-06T21:59:33.5210000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|34C80000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|98538|109068|10000|10000|||100.14|92.64|0.00|-3.13|37364|55446|2334|10000|||99.78|98.95|0.00|3.12|00010A42|5|6| +24|2023-10-06T21:59:33.6100000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|12A7|77485|90349|10000|10000|||101.09|95.96|0.00|-3.07|10FF000B|Pusu Rosu|0|49151|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:33.6100000-07:00|10FF0001|Sesuga Sapisuga|00010A3B|89100|90349|10000|10000|0||101.09|95.96|0.00|-3.07|1301|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:59:33.6100000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +37|2023-10-06T21:59:33.6550000-07:00|40021585|Zeromus|00010A3F|22031487||||||100.00|80.10|0.00|0.00| +36|2023-10-06T21:59:33.6560000-07:00|53E8|3| +24|2023-10-06T21:59:33.7450000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|125E|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|10FF000B|Pusu Rosu|0|49151|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:33.7450000-07:00|10FF000A|Dukaro Nezikaro|00010A3B|58451|58451|10000|10000|0||101.06|102.07|0.00|-3.09|1E02|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:59:33.7450000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +21|2023-10-06T21:59:33.7450000-07:00|40021585|Zeromus|8B69|Black Hole|40021585|Zeromus|1B|8B698000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22031487|40478540|10000|10000|||100.00|80.10|0.00|0.00|22031487|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010A43|0|1| +261|2023-10-06T21:59:33.3190000-07:00|Change|40021585||||||||||||| +37|2023-10-06T21:59:33.8350000-07:00|10FF0007|Kehabiqo Febiqo|00010A40|98538|109068|10000|10000|10||100.14|92.64|0.00|-3.13|1500|0|0|03|07000A76|0190|41000000|||||||||| +26|2023-10-06T21:59:33.8350000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|109068|109068| +26|2023-10-06T21:59:33.8350000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +26|2023-10-06T21:59:33.8350000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +21|2023-10-06T21:59:33.8350000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|F320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22031487|40478540|10000|10000|||100.00|80.10|0.00|0.00|27620|63151|10000|10000|||99.72|103.29|0.00|3.13|00010A44|0|1| +21|2023-10-06T21:59:33.8350000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|714003|6A830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22031487|40478540|10000|10000|||100.00|80.10|0.00|0.00|89100|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A45|0|1| +21|2023-10-06T21:59:33.8350000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|28770000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|22031487|40478540|10000|10000|||100.00|80.10|0.00|0.00|12913|51669|2050|10000|||97.28|102.28|0.00|3.02|00010A46|0|1| +38|2023-10-06T21:59:33.8350000-07:00|10FF0003|Gegehi Gehi|005A5A23|12913|51669|1850|10000|0||97.28|102.28|0.00|3.02|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:33.8350000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +38|2023-10-06T21:59:33.8350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98538|109068|10000|10000|10||100.14|92.64|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:59:33.8790000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1CDC|12913|51669|1850|10000|||97.28|102.28|0.00|3.02|10FF000B|Pusu Rosu|1|49151|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:33.8790000-07:00|10FF0003|Gegehi Gehi|00010A3B|27093|51669|1850|10000|0||97.28|102.28|0.00|3.02|2303|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:59:33.8790000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +261|2023-10-06T21:59:33.5090000-07:00|Change|10FF0003||||||||||||||| +24|2023-10-06T21:59:34.0130000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|12EB|27620|63151|10000|10000|||99.72|103.29|0.00|3.13|10FF000B|Pusu Rosu|0|49151|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:34.0130000-07:00|10FF0008|Kokosaze Lulusaze|00010A3B|39277|63151|10000|10000|0||99.72|103.29|0.00|3.13|1F04|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:34.0130000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +24|2023-10-06T21:59:34.1010000-07:00|10FF000B|Pusu Rosu|HoT|4C3|129E|49151|55446|2334|10000|||99.78|98.95|0.00|3.12|10FF000B|Pusu Rosu|0|49151|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:34.1010000-07:00|10FF000B|Pusu Rosu|00010A42|55446||||||99.78|98.95|0.00|3.12| +24|2023-10-06T21:59:34.1450000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|21B2|98538|109068|10000|10000|||100.12|92.72|0.00|-0.36|10FF000B|Pusu Rosu|1|49151|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:34.1450000-07:00|10FF0007|Kehabiqo Febiqo|00010A3B|109068|109068|10000|10000|10||100.12|92.72|0.00|-0.36|1505|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:34.1450000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|109068|55446| +39|2023-10-06T21:59:34.1450000-07:00|10FF0008|Kokosaze Lulusaze|39908|63151|10000|10000|||99.72|103.29|0.00|3.13| +21|2023-10-06T21:59:34.1450000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A5C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22031487|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|00010A47|0|1| +21|2023-10-06T21:59:34.1900000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|712003|601D0000|200004|3EB58000|0|0|0|0|0|0|0|0|0|0|0|0|22031487|40478540|10000|10000|||100.00|80.10|0.00|0.00|98538|109068|10000|10000|||100.12|92.72|0.00|-0.36|00010A48|0|1| +261|2023-10-06T21:59:33.8440000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:59:34.2330000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1BE0|89100|90349|10000|10000|||101.09|95.96|0.00|-3.07|10FF000B|Pusu Rosu|1|55446|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:34.2330000-07:00|10FF0001|Sesuga Sapisuga|00010A42|90349||||||101.09|95.96|0.00|-3.07| +37|2023-10-06T21:59:34.2780000-07:00|40021585|Zeromus|00010A41|22026585||||||100.00|80.10|0.00|0.00| +26|2023-10-06T21:59:34.2790000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|63151|63151| +21|2023-10-06T21:59:34.2790000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|20D50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22031487|40478540|10000|10000|||100.00|80.10|0.00|0.00|39908|63151|10000|10000|||99.72|103.29|0.00|3.13|00010A49|0|1| +37|2023-10-06T21:59:34.3670000-07:00|40021585|Zeromus|00010A45|21999318||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:34.3670000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1C0E|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|10FF000B|Pusu Rosu|1|55446|55446|2334|10000|||99.78|98.95|0.00|3.12| +21|2023-10-06T21:59:34.4120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|22026585|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A4A|0|1| +31|2023-10-06T21:59:34.4120000-07:00|10FF0001||||| +27|2023-10-06T21:59:34.5010000-07:00|10FF0003|Gegehi Gehi|0000|0000|014A|0000|0000|0000| +24|2023-10-06T21:59:34.5010000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1202|27093|51669|1850|10000|||97.28|102.28|0.00|3.02|10FF000B|Pusu Rosu|0|55446|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:34.5010000-07:00|10FF0003|Gegehi Gehi|00010A42|49301||||||97.28|102.28|0.00|3.02| +37|2023-10-06T21:59:34.5910000-07:00|40021585|Zeromus|00010A44|21995428||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:34.5910000-07:00|40021585|Zeromus|00010A46|21985069||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:34.5910000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|126B0000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|21999318|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A4B|0|1| +261|2023-10-06T21:59:34.1750000-07:00|Change|40021585||| +24|2023-10-06T21:59:34.6360000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|1343|39908|63151|10000|10000|||99.72|103.29|0.00|3.13|10FF000B|Pusu Rosu|0|55446|55446|2334|10000|||99.78|98.95|0.00|3.12| +37|2023-10-06T21:59:34.6360000-07:00|10FF0008|Kokosaze Lulusaze|00010A42|55999||||||99.72|103.29|0.00|3.13| +37|2023-10-06T21:59:34.6810000-07:00|40021585|Zeromus|00010A47|21982417||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:34.7690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|16EB|109068|109068|10000|10000|||99.74|95.50|0.00|-0.67|10FF000B|Pusu Rosu|0|55446|55446|2334|10000|||99.78|98.95|0.00|3.12| +261|2023-10-06T21:59:34.3700000-07:00|Change|10FF0003||||| +37|2023-10-06T21:59:34.8140000-07:00|40021585|Zeromus|00010A48|21957812||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:34.8140000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|10000|10000|||101.09|95.96|0.00|-3.07| +37|2023-10-06T21:59:34.9030000-07:00|40021585|Zeromus|00010A49|21949407||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:34.9490000-07:00|40021585|Zeromus|00010A4A|21947175||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:34.9490000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|109068|109068|10000|10000|||99.71|95.98|0.00|-0.29|109068|109068|10000|10000|||99.71|95.98|0.00|-0.29|00010A4C|0|1| +21|2023-10-06T21:59:34.9490000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55999|63151|10000|10000|||99.72|103.29|0.00|3.13|55999|63151|10000|10000|||99.72|103.29|0.00|3.13|00010A4D|0|1| +21|2023-10-06T21:59:34.9490000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|30810000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|21949407|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|00010A4E|0|1| +38|2023-10-06T21:59:34.9490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109068|109068|10000|10000|10||99.71|95.98|0.00|-0.29|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:34.9490000-07:00|A75|Surging Tempest|45.70|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +26|2023-10-06T21:59:34.9490000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|109068|109068| +26|2023-10-06T21:59:34.9490000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +26|2023-10-06T21:59:34.9490000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +24|2023-10-06T21:59:35.0820000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1089|55999|63151|10000|10000|||99.72|103.29|0.00|3.13|10FF000B|Pusu Rosu|0|55446|55446|2334|10000|||99.78|98.95|0.00|3.12| +38|2023-10-06T21:59:35.0820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60232|63151|10000|10000|0||99.72|103.29|0.00|3.13|0|0|0|||||||||||||||||||||| +21|2023-10-06T21:59:35.2610000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|712003|1FA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21947175|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A4F|0|1| +39|2023-10-06T21:59:35.3500000-07:00|10FF000B|Pusu Rosu|55446|55446|2615|10000|||99.78|98.96|0.00|2.75| +39|2023-10-06T21:59:35.3500000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09| +261|2023-10-06T21:59:34.9220000-07:00|Change|10FF000B||||||| +24|2023-10-06T21:59:35.3950000-07:00|10FF0003|Gegehi Gehi|HoT|0|10C8|49301|51669|1850|10000|||97.28|102.28|0.00|3.02|10FF000B|Pusu Rosu|0|55446|55446|2615|10000|||99.78|98.98|0.00|1.97| +38|2023-10-06T21:59:35.3950000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2400|10000|0||97.28|102.28|0.00|3.02|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:59:35.4400000-07:00|4002185C||005A5A00|59967|59967|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:59:35.4400000-07:00|4002185C||005A5A00|59967|59967|10000|10000|0||||||0|0|0||||||| +24|2023-10-06T21:59:35.4400000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1A23|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|10FF000B|Pusu Rosu|0|55446|55446|2615|10000|||99.78|98.98|0.00|1.97| +38|2023-10-06T21:59:35.4400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||101.06|102.07|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:59:35.4850000-07:00|40021585|Zeromus|00010A4E|21934758||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:35.4850000-07:00|10FF0007|Kehabiqo Febiqo|109068|109068|10000|10000|||99.69|96.24|0.00|-0.09| +38|2023-10-06T21:59:35.4850000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60232|63151|10000|10000|0||99.72|103.29|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:35.4850000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:59:35.4850000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2400|10000|0||97.28|102.28|0.00|3.02|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:35.4850000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:59:35.4850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||101.06|102.07|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:35.4850000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +38|2023-10-06T21:59:35.4850000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2615|10000|0||99.78|99.06|0.00|1.48|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:35.4850000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:35.4850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109068|109068|10000|10000|10||99.69|96.24|0.00|-0.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:35.4850000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|109068|55446| +38|2023-10-06T21:59:35.4850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||101.09|95.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:35.4850000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +24|2023-10-06T21:59:35.4850000-07:00|10FF000B|Pusu Rosu|HoT|0|109F|55446|55446|2615|10000|||99.78|99.06|0.00|1.48|10FF000B|Pusu Rosu|0|55446|55446|2615|10000|||99.78|99.06|0.00|1.48| +38|2023-10-06T21:59:35.4850000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2615|10000|0||99.78|99.06|0.00|1.48|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T21:59:35.5740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2B35|109068|109068|10000|10000|||99.69|96.24|0.00|-0.09|10FF0007|Kehabiqo Febiqo|0|109068|109068|10000|10000|||99.69|96.24|0.00|-0.09| +20|2023-10-06T21:59:35.5740000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|1.576|99.78|99.15|0.00|1.10| +38|2023-10-06T21:59:35.5740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109068|109068|10000|10000|10||99.69|96.24|0.00|-0.09|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:35.6190000-07:00|40021585|Zeromus|00010A4B|21930043|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|F8|0|41700000|| +26|2023-10-06T21:59:35.6190000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +21|2023-10-06T21:59:35.6190000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2D250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21934758|40478540|10000|10000|||100.00|80.10|0.00|0.00|109068|109068|10000|10000|||99.69|96.24|0.00|-0.09|00010A50|0|1| +261|2023-10-06T21:59:35.1510000-07:00|Add|4002185C||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:59:35.2470000-07:00|4002185C|Automaton Queen|00|5A|10FF0008|00||8230|10490|59967|59967|10000|10000|||101.48|105.08|0.00|3.13| +261|2023-10-06T21:59:35.2470000-07:00|Change|40021585||| +24|2023-10-06T21:59:35.6630000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|109D|90349|90349|10000|10000|||101.09|95.96|0.00|-3.07|10FF0001|Sesuga Sapisuga|0|90349|90349|10000|10000|||101.09|95.96|0.00|-3.07| +38|2023-10-06T21:59:35.6630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|0||101.09|95.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:35.2470000-07:00|Change|4002185C||| +37|2023-10-06T21:59:35.7070000-07:00|10FF0007|Kehabiqo Febiqo|00010A4C|109068|109068|10000|10000|10||99.69|96.24|0.00|3.12|1500|0|0|03|0D000499|03|41700000|||||||||| +38|2023-10-06T21:59:35.7070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109068|109068|10000|10000|10||99.69|96.24|0.00|3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:35.7960000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +21|2023-10-06T21:59:35.7960000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|20D50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21930043|40478540|10000|10000|||100.00|80.10|0.00|0.00|60232|63151|10000|10000|||99.72|103.29|0.00|3.13|00010A51|0|1| +261|2023-10-06T21:59:35.3420000-07:00|Change|10FF0003||| +261|2023-10-06T21:59:35.3420000-07:00|Change|400215A3||||||||| +00|2023-10-06T21:59:35.0000000-07:00|0044|Zeromus|Your souls are mine!| +37|2023-10-06T21:59:35.8400000-07:00|40021585|Zeromus|00010A4F|21921946||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:59:35.8840000-07:00|40021585|Zeromus|8B3D|Fractured Eventide|40021585|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T21:59:35.8840000-07:00|400215A3|Zeromus|8B3E|Fractured Eventide|400215A3|Zeromus|10.200|100.00|100.00|0.00|0.00| +261|2023-10-06T21:59:35.4400000-07:00|Change|10FF000B||||||||||||||||||| +39|2023-10-06T21:59:35.9720000-07:00|10FF0003|Gegehi Gehi|51669|51669|2600|10000|||97.28|102.28|0.00|3.02| +37|2023-10-06T21:59:36.2850000-07:00|40021585|Zeromus|00010A50|21910389||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:35.8460000-07:00|Change|400215A3||||||||||||| +21|2023-10-06T21:59:36.3290000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|89A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21910389|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|00010A52|0|1| +21|2023-10-06T21:59:36.3740000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|752003|BB440000|4|24F78000|0|0|0|0|0|0|0|0|0|0|0|0|21910389|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||101.09|95.96|0.00|-3.07|00010A53|0|1| +38|2023-10-06T21:59:36.3740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9000|10000|0||101.09|95.96|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:36.3740000-07:00|558|Requiescat|26.88|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +30|2023-10-06T21:59:36.3740000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +31|2023-10-06T21:59:36.3740000-07:00|10FF0001||||| +261|2023-10-06T21:59:35.9660000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:36.0830000-07:00|Change|4002185C||| +37|2023-10-06T21:59:36.4630000-07:00|40021585|Zeromus|00010A51|21901984||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:36.4630000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|139B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21910389|40478540|10000|10000|||100.00|80.10|0.00|0.00|60232|63151|10000|10000|||99.72|103.29|0.00|3.13|00010A54|0|1| +34|2023-10-06T21:59:36.4630000-07:00|4002185C|Automaton Queen|4002185C|Automaton Queen|01| +21|2023-10-06T21:59:36.5070000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|123D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21910389|40478540|10000|10000|||100.00|80.10|0.00|0.00|109068|109068|10000|10000|||99.47|96.68|0.00|-1.23|00010A55|0|1| +21|2023-10-06T21:59:36.5070000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|95C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21910389|40478540|10000|10000|||100.00|80.10|0.00|0.00|60232|63151|10000|10000|||99.72|103.29|0.00|3.13|00010A56|0|1| +21|2023-10-06T21:59:36.5070000-07:00|10FF0003|Gegehi Gehi|1D63|Verraise|10FF0006|Wowobora Gogobora|814000E|940000|1B|1D638000|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|0|10000|||97.34|101.18|0.00|3.02|51669|51669|2600|10000|||97.28|102.28|0.00|3.02|00010A57|0|1| +38|2023-10-06T21:59:36.5070000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|200|10000|0||97.28|102.28|0.00|3.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:36.5070000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:59:36.0830000-07:00|Change|4002185C||| +21|2023-10-06T21:59:36.6400000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|A2560000|200004|3D758000|0|0|0|0|0|0|0|0|0|0|0|0|21910389|40478540|10000|10000|||100.00|80.10|0.00|0.00|109068|109068|10000|10000|||99.47|96.68|0.00|-1.23|00010A58|0|1| +22|2023-10-06T21:59:36.6400000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|4|2B330000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|2615|10000|||99.78|99.41|0.00|0.01|55446|55446|2615|10000|||99.78|99.41|0.00|0.01|00010A59|0|6| +22|2023-10-06T21:59:36.6400000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0007|Kehabiqo Febiqo|4|33690000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|109068|109068|10000|10000|||99.47|96.68|0.00|-1.23|55446|55446|2615|10000|||99.78|99.41|0.00|0.01|00010A59|1|6| +22|2023-10-06T21:59:36.6400000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000A|Dukaro Nezikaro|4|2AF30000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||101.06|102.07|0.00|-3.09|55446|55446|2615|10000|||99.78|99.41|0.00|0.01|00010A59|2|6| +22|2023-10-06T21:59:36.6400000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0001|Sesuga Sapisuga|4|2C200000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|9000|10000|||101.09|95.96|0.00|-3.07|55446|55446|2615|10000|||99.78|99.41|0.00|0.01|00010A59|3|6| +22|2023-10-06T21:59:36.6400000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0003|Gegehi Gehi|4|2AF40000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|2600|10000|||97.28|102.28|0.00|3.02|55446|55446|2615|10000|||99.78|99.41|0.00|0.01|00010A59|4|6| +22|2023-10-06T21:59:36.6400000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0008|Kokosaze Lulusaze|4|2AD00000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|60232|63151|10000|10000|||99.72|103.29|0.00|3.13|55446|55446|2615|10000|||99.78|99.41|0.00|0.01|00010A59|5|6| +38|2023-10-06T21:59:36.6400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109068|109068|10000|10000|10||99.47|96.68|0.00|-1.23|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:36.6400000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +261|2023-10-06T21:59:36.1740000-07:00|Change|40021585||||||||||||| +24|2023-10-06T21:59:36.6850000-07:00|40021585|Zeromus|DoT|0|3B9|21901984|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +21|2023-10-06T21:59:36.6850000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|88F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21901984|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9000|10000|||101.09|95.96|0.00|3.11|00010A5A|0|1| +36|2023-10-06T21:59:36.6850000-07:00|54C4|3| +38|2023-10-06T21:59:36.6850000-07:00|40021585|Zeromus|005A5A00|21901031|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:36.6850000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +31|2023-10-06T21:59:36.6850000-07:00|10FF0001||||| +261|2023-10-06T21:59:36.3620000-07:00|Change|10FF0003||||| +37|2023-10-06T21:59:36.8630000-07:00|40021585|Zeromus|00010A52|21898829||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:36.4540000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T21:59:36.9970000-07:00|40021585|Zeromus|00010A53|21850889||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:37.0420000-07:00|40021585|Zeromus|00010A55|21846220||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:37.0860000-07:00|40021585|Zeromus|00010A54|21841201||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:37.1750000-07:00|10FF0008|Kokosaze Lulusaze|60863|63151|10000|10000|||99.70|102.98|0.00|-3.10| +21|2023-10-06T21:59:37.1750000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|714003|47470000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|21841201|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9000|10000|||100.65|95.02|0.00|3.12|00010A5B|0|1| +21|2023-10-06T21:59:37.1750000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|1715|10000|||99.78|99.41|0.00|0.01|55446|55446|1715|10000|||99.78|99.41|0.00|0.01|00010A5C|0|1| +37|2023-10-06T21:59:37.2200000-07:00|40021585|Zeromus|00010A5A|21839010||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:37.2640000-07:00|40021585|Zeromus|00010A56|21836614||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:37.3080000-07:00|10FF0006|Wowobora Gogobora|00010A57|0|57266|0|10000|0||97.34|101.18|0.00|3.02|1B00|0|0|01|94|08|42700000|| +26|2023-10-06T21:59:37.3080000-07:00|94|Raise|60.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|08|57266|51669| +261|2023-10-06T21:59:36.8860000-07:00|Change|10FF000A||||||||| +21|2023-10-06T21:59:37.3530000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|22E60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21836614|40478540|10000|10000|||100.00|80.10|0.00|0.00|60863|63151|10000|10000|||99.67|102.58|0.00|-3.09|00010A5D|0|1| +38|2023-10-06T21:59:37.3530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60863|63151|10000|10000|0||99.67|102.58|0.00|-3.09|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:59:37.3530000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +37|2023-10-06T21:59:37.5320000-07:00|40021585|Zeromus|00010A5B|21818367||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:37.5320000-07:00|10FF0001|Sesuga Sapisuga|00010A5B|90349|90349|9500|10000|0||98.72|94.98|0.00|3.11|1300|0|0|0| +261|2023-10-06T21:59:37.1170000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:59:37.6650000-07:00|10FF000B|Pusu Rosu|HoT|4C3|1304|55446|55446|1715|10000|||99.78|99.41|0.00|0.01|10FF000B|Pusu Rosu|0|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +261|2023-10-06T21:59:37.2170000-07:00|Change|40021585||||| +21|2023-10-06T21:59:37.7530000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|18CE0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|21818367|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.72|100.93|0.00|-2.86|00010A5E|0|1| +37|2023-10-06T21:59:37.7990000-07:00|40021585|Zeromus|00010A58|21776809||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:37.7990000-07:00|10FF000B|Pusu Rosu|00010A5C|55446|55446|1715|10000|0||99.78|99.41|0.00|0.01|1800|0|0|01|090004B4|0|41A80000|| +26|2023-10-06T21:59:37.7990000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +24|2023-10-06T21:59:37.7990000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|2067|109068|109068|10000|10000|||99.44|96.76|0.00|3.11|10FF000B|Pusu Rosu|1|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +39|2023-10-06T21:59:37.7990000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9700|10000|||96.80|94.93|0.00|3.10| +38|2023-10-06T21:59:37.7990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109068|109068|10000|10000|10||99.44|96.76|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:37.7990000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +38|2023-10-06T21:59:37.7990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|11415|57078|2000|10000|0||97.30|102.30|0.00|0.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:37.7990000-07:00|94|Raise|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|08|57078|51669| +26|2023-10-06T21:59:37.7990000-07:00|2B|Weakness|100.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +26|2023-10-06T21:59:37.7990000-07:00|1A2|Transcendent|5.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +261|2023-10-06T21:59:37.3090000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:59:37.4110000-07:00|Change|10FF0003||||||||||||| +24|2023-10-06T21:59:37.9320000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|121F|58451|58451|10000|10000|||101.75|100.88|0.00|-3.06|10FF000B|Pusu Rosu|0|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +21|2023-10-06T21:59:37.9320000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|60863|63151|10000|10000|||99.66|102.34|0.00|3.13|60863|63151|10000|10000|||99.66|102.34|0.00|3.13|00010A5F|0|1| +38|2023-10-06T21:59:37.9320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60863|63151|10000|10000|0||99.66|102.34|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:37.9320000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +37|2023-10-06T21:59:37.9760000-07:00|40021585|Zeromus|00010A5D|21767875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:37.9760000-07:00|10FF0008|Kokosaze Lulusaze|00010A5D|60863|63151|10000|10000|0||99.66|102.34|0.00|3.13|1F00|0|0|01|02000353|0|C0A00000|| +261|2023-10-06T21:59:37.5010000-07:00|Change|10FF000B||||| +24|2023-10-06T21:59:38.0660000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1266|90349|90349|9700|10000|||94.82|94.85|0.00|3.10|10FF000B|Pusu Rosu|0|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +24|2023-10-06T21:59:38.0660000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|10B3|60863|63151|10000|10000|||99.66|102.34|0.00|3.13|10FF000B|Pusu Rosu|0|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +38|2023-10-06T21:59:38.0660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||99.40|96.90|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:38.0660000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|109068|109068| +38|2023-10-06T21:59:38.0660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.66|102.34|0.00|3.13|0|0|0|||||||||||||||||||||| +37|2023-10-06T21:59:38.1560000-07:00|40021585|Zeromus|00010A5E|21761525||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:38.2010000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1B15|51669|51669|200|10000|||97.71|101.64|0.00|3.03|10FF000B|Pusu Rosu|1|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +261|2023-10-06T21:59:37.9210000-07:00|Change|10FF0001||||||||||| +24|2023-10-06T21:59:38.3320000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|1C42|63151|63151|10000|10000|||99.66|102.34|0.00|3.13|10FF000B|Pusu Rosu|1|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +37|2023-10-06T21:59:38.3320000-07:00|10FF0008|Kokosaze Lulusaze|00010A59|63151|63151|10000|10000|0||99.66|102.34|0.00|3.13|1F05|0|0|01|02000353|0|C0A00000|| +39|2023-10-06T21:59:38.3320000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||101.76|100.85|0.00|-3.06| +39|2023-10-06T21:59:38.3780000-07:00|10FF000B|Pusu Rosu|55446|55446|1996|10000|||99.78|99.41|0.00|0.01| +24|2023-10-06T21:59:38.3780000-07:00|10FF0003|Gegehi Gehi|HoT|0|1924|51669|51669|200|10000|||97.97|101.02|0.00|3.06|10FF000B|Pusu Rosu|0|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +38|2023-10-06T21:59:38.3780000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|750|10000|0||97.97|101.02|0.00|3.06|0|0|0||||||||||||||||||||||||| +24|2023-10-06T21:59:38.4220000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1B2B|58451|58451|10000|10000|||101.76|100.85|0.00|-3.06|10FF000B|Pusu Rosu|0|55446|55446|1715|10000|||99.78|99.41|0.00|0.01| +38|2023-10-06T21:59:38.4220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||101.76|100.85|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:59:38.4680000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||99.34|96.94|0.00|3.13| +38|2023-10-06T21:59:38.4680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|11415|57078|2000|10000|0||97.26|102.28|0.00|-0.78|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:38.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:59:38.4680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.66|102.34|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:38.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:59:38.4680000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|750|10000|0||98.11|100.67|0.00|3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:38.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +38|2023-10-06T21:59:38.4680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||101.77|100.84|0.00|-3.03|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:38.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +38|2023-10-06T21:59:38.4680000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|1996|10000|0||99.78|99.41|0.00|0.01|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:38.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:38.4680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||99.34|96.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:38.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:59:38.4680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9700|10000|0||92.27|94.74|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:38.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +24|2023-10-06T21:59:38.4680000-07:00|10FF000B|Pusu Rosu|HoT|0|1057|55446|55446|1996|10000|||99.78|99.41|0.00|0.01|10FF000B|Pusu Rosu|0|55446|55446|1996|10000|||99.78|99.41|0.00|0.01| +38|2023-10-06T21:59:38.4680000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2546|10000|0||99.78|99.41|0.00|0.01|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:38.5120000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21761525|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||101.77|100.84|0.00|-3.03|00010A60|0|1| +37|2023-10-06T21:59:38.5570000-07:00|10FF0008|Kokosaze Lulusaze|00010A5F|63151|63151|10000|10000|0||99.66|102.34|0.00|3.13|1F00|0|0|01|02000353|0|40A00000|| +24|2023-10-06T21:59:38.5570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|346C|90890|90890|10000|10000|||99.34|96.94|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||99.34|96.94|0.00|3.13| +38|2023-10-06T21:59:38.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||99.34|96.94|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:38.5570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.66|102.34|0.00|3.13|0|0|0|||||||||||||||||||||| +24|2023-10-06T21:59:38.6450000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1A6B|90349|90349|9700|10000|||91.55|94.71|0.00|3.08|10FF0001|Sesuga Sapisuga|0|90349|90349|9700|10000|||91.55|94.71|0.00|3.08| +38|2023-10-06T21:59:38.6450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9700|10000|0||91.55|94.71|0.00|3.08|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:38.8240000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|726003|C1950000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|21761525|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.66|102.34|0.00|3.13|00010A61|0|1| +38|2023-10-06T21:59:38.8240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.66|102.34|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:59:38.8240000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +21|2023-10-06T21:59:38.8690000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|756003|B0390000|200004|3CF98000|0|0|0|0|0|0|0|0|0|0|0|0|21761525|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9700|10000|||90.40|94.33|0.00|3.07|00010A62|0|1| +38|2023-10-06T21:59:38.8690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8700|10000|0||90.40|94.33|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:38.8690000-07:00|558|Requiescat|24.39|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +31|2023-10-06T21:59:38.8690000-07:00|10FF0001||||| +261|2023-10-06T21:59:38.4490000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:59:38.9570000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|80D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21761525|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8700|10000|||89.97|93.83|0.00|3.06|00010A63|0|1| +31|2023-10-06T21:59:38.9570000-07:00|10FF0001||||| +261|2023-10-06T21:59:38.4490000-07:00|Change|10FF000B||||||| +39|2023-10-06T21:59:39.0000000-07:00|10FF0003|Gegehi Gehi|51669|51669|950|10000|||98.40|99.87|-0.01|3.10| +37|2023-10-06T21:59:39.0450000-07:00|40021585|Zeromus|00010A60|21759245||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:39.0900000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|74CA0000|4|25238000|0|0|0|0|0|0|0|0|0|0|0|0|21759245|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||97.20|94.88|-0.02|-3.14|00010A64|0|1| +38|2023-10-06T21:59:39.0900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||97.20|94.88|-0.02|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:39.0900000-07:00|499|Inner Release|11.57|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|90890|90890| +39|2023-10-06T21:59:39.1340000-07:00|10FF0004|Buhojaqe Zijaqe|11985|57078|2200|10000|||94.62|100.97|0.00|-1.87| +22|2023-10-06T21:59:39.1340000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|950|10000|||98.41|99.87|0.00|3.10|51669|51669|950|10000|||98.41|99.87|0.00|3.10|00010A65|0|7| +22|2023-10-06T21:59:39.1340000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000B|Pusu Rosu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|2546|10000|||99.78|99.41|0.00|0.01|51669|51669|950|10000|||98.41|99.87|0.00|3.10|00010A65|1|7| +22|2023-10-06T21:59:39.1340000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.66|102.34|0.00|3.13|51669|51669|950|10000|||98.41|99.87|0.00|3.10|00010A65|2|7| +22|2023-10-06T21:59:39.1340000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11415|57078|2000|10000|||94.62|100.97|0.00|-1.87|51669|51669|950|10000|||98.41|99.87|0.00|3.10|00010A65|3|7| +22|2023-10-06T21:59:39.1340000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||103.16|99.40|0.00|-2.43|51669|51669|950|10000|||98.41|99.87|0.00|3.10|00010A65|4|7| +22|2023-10-06T21:59:39.1340000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||97.20|94.88|-0.02|-3.14|51669|51669|950|10000|||98.41|99.87|0.00|3.10|00010A65|5|7| +22|2023-10-06T21:59:39.1340000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|8700|10000|||89.32|93.77|0.00|3.05|51669|51669|950|10000|||98.41|99.87|0.00|3.10|00010A65|6|7| +261|2023-10-06T21:59:38.6610000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:59:39.1770000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21759245|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.63|102.34|0.00|-2.83|00010A66|0|1| +261|2023-10-06T21:59:38.9010000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T21:59:39.4890000-07:00|40021585|Zeromus|00010A63|21757184||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:39.4900000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|205E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21759245|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.56|101.61|0.00|-2.28|00010A67|0|1| +37|2023-10-06T21:59:39.5340000-07:00|40021585|Zeromus|00010A62|21712071||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:39.6680000-07:00|40021585|Zeromus|DoT|0|606|21712071|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:39.6680000-07:00|55A0|3| +38|2023-10-06T21:59:39.6680000-07:00|40021585|Zeromus|005A5A00|21710529|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:39.6680000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T21:59:39.7120000-07:00|40021585|Zeromus|00010A64|21680631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:39.8010000-07:00|10FF0003|Gegehi Gehi|00010A65|51669|51669|950|10000|0||98.41|99.87|0.00|3.10|2300|0|0|01|060004D7|0|41A00000|| +26|2023-10-06T21:59:39.8010000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T21:59:39.8900000-07:00|40021585|Zeromus|00010A61|21631074||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:39.8900000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|E150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21680631|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||95.45|93.19|0.00|3.11|00010A68|0|1| +21|2023-10-06T21:59:39.8900000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|51669|51669|950|10000|||98.41|99.87|0.00|3.10|51669|51669|950|10000|||98.41|99.87|0.00|3.10|00010A69|0|1| +38|2023-10-06T21:59:39.8900000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|950|10000|0||98.41|99.87|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:39.8900000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|51669|51669| +261|2023-10-06T21:59:39.4220000-07:00|Change|10FF0007||||||||||| +261|2023-10-06T21:59:39.4220000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:39.9340000-07:00|40021585|Zeromus|00010A66|21626213||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:39.9340000-07:00|10FF000B|Pusu Rosu|00010A65|55446|55446|2546|10000|0||101.01|100.11|-0.01|1.50|1801|0|0|01|0B000511|0|41A00000|| +26|2023-10-06T21:59:39.9340000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|55446|51669| +37|2023-10-06T21:59:39.9340000-07:00|10FF0003|Gegehi Gehi|00010A65|51669|51669|950|10000|0||98.41|99.87|0.00|3.10|2301|0|0|01|080007B3|06|C1700000|| +261|2023-10-06T21:59:39.4220000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:59:39.9340000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2D4E0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|21631074|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||104.05|97.76|0.00|-2.01|00010A6A|0|1| +21|2023-10-06T21:59:40.0240000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|712003|1FC50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21626213|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8700|10000|||85.87|90.93|0.00|2.23|00010A6B|0|1| +37|2023-10-06T21:59:40.0680000-07:00|10FF0008|Kokosaze Lulusaze|00010A65|63151|63151|10000|10000|0||99.57|100.70|-0.01|3.12|1F02|0|0|01|02000511|0|41A00000|| +26|2023-10-06T21:59:40.0680000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|63151|51669| +37|2023-10-06T21:59:40.0680000-07:00|10FF0003|Gegehi Gehi|00010A65|51669|51669|950|10000|0||98.41|99.87|0.00|3.10|2302|0|0|01|080007B3|06|C1700000|| +38|2023-10-06T21:59:40.0680000-07:00|4002185C|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.48|105.08|0.00|3.13|0|0|0|||||||||| +26|2023-10-06T21:59:40.0680000-07:00|30|Well Fed|1293.99|10FF0008|Kokosaze Lulusaze|4002185C|Automaton Queen|2964|59967|63151| +26|2023-10-06T21:59:40.0680000-07:00|441|HP Penalty|9999.00|E0000000||4002185C|Automaton Queen|00|59967|| +26|2023-10-06T21:59:40.0680000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002185C|Automaton Queen|00|59967|51669| +21|2023-10-06T21:59:40.1120000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.57|100.70|-0.01|3.12|63151|63151|10000|10000|||99.57|100.70|-0.01|3.12|00010A6C|0|1| +38|2023-10-06T21:59:40.1120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||99.57|100.70|-0.01|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:40.1120000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|63151|63151| +39|2023-10-06T21:59:40.1570000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||99.57|100.70|-0.01|3.12| +38|2023-10-06T21:59:40.1570000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2546|10000|0||101.06|100.14|0.00|1.51|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:40.1570000-07:00|750|Temperance|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:40.1570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||104.17|97.42|0.00|-2.89|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:40.1570000-07:00|13B|Whispering Dawn|0.00|400217B8|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|58451|| +37|2023-10-06T21:59:40.2010000-07:00|10FF0004|Buhojaqe Zijaqe|00010A65|11985|57078|2200|10000|0||90.09|96.07|0.00|-2.44|1C03|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:59:40.2010000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|57078|51669| +37|2023-10-06T21:59:40.2010000-07:00|10FF0003|Gegehi Gehi|00010A65|51669|51669|950|10000|0||98.41|99.87|0.00|3.10|2303|0|0|01|080007B3|06|C1700000|| +37|2023-10-06T21:59:40.2900000-07:00|40021585|Zeromus|00010A67|21617927||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:40.2900000-07:00|10FF0003|Gegehi Gehi|00010A69|51669|51669|950|10000|0||98.41|99.83|0.00|3.09|2300|0|0|01|080007B3|06|41700000|| +38|2023-10-06T21:59:40.2900000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|950|10000|0||98.41|99.83|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:59:40.3340000-07:00|10FF000A|Dukaro Nezikaro|00010A65|58451|58451|10000|10000|0||104.26|97.17|0.00|-2.89|1E04|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:59:40.3340000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|58451|51669| +37|2023-10-06T21:59:40.3340000-07:00|40021585|Zeromus|00010A6A|21606329||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:39.9570000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:40.4230000-07:00|40021585|Zeromus|00010A68|21602724||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:40.4670000-07:00|10FF0007|Kehabiqo Febiqo|00010A65|90890|90890|10000|10000|12||92.30|90.10|0.00|-3.14|1505|0|0|01|08000511|0|41A00000|| +26|2023-10-06T21:59:40.4670000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|90890|51669| +21|2023-10-06T21:59:40.5120000-07:00|4002185C|Automaton Queen|4336|Roller Dash|40021585|Zeromus|732003|6C420000|1B|43368000|0|0|0|0|0|0|0|0|0|0|0|0|21602724|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.48|105.08|0.00|3.13|00010A6D|0|1| +37|2023-10-06T21:59:40.6010000-07:00|40021585|Zeromus|00010A6B|21594591||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:40.6010000-07:00|10FF0001|Sesuga Sapisuga|00010A65|90349|90349|8700|10000|0||85.87|90.92|0.00|1.90|1306|0|0|01|06000511|0|41A00000|| +26|2023-10-06T21:59:40.6010000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|90349|51669| +21|2023-10-06T21:59:40.6900000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21594591|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||104.30|97.06|0.00|-2.89|00010A6E|0|1| +38|2023-10-06T21:59:40.7340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|11985|57078|2200|10000|0||88.27|93.69|0.00|-2.45|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:40.7340000-07:00|1A2|Transcendent|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +26|2023-10-06T21:59:40.7340000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|57078|57078| +21|2023-10-06T21:59:40.7340000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11985|57078|2200|10000|||88.27|93.69|0.00|-2.45|11985|57078|2200|10000|||88.27|93.69|0.00|-2.45|00010A6F|0|1| +21|2023-10-06T21:59:40.7780000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40021585|Zeromus|69A0E|35D0000|85000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|21594591|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||95.59|99.34|0.00|-2.13|00010A70|0|1| +39|2023-10-06T21:59:40.8230000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8900|10000|||85.61|90.16|0.00|1.90| +261|2023-10-06T21:59:40.3660000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:40.4650000-07:00|Change|10FF0008||||||||| +38|2023-10-06T21:59:41.0020000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|2546|10000|0||97.90|96.28|0.00|-2.68|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:41.0020000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +24|2023-10-06T21:59:41.0910000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|113F|63151|63151|10000|10000|||93.87|98.44|0.00|2.77|10FF0008|Kokosaze Lulusaze|0|63151|63151|10000|10000|||93.87|98.44|0.00|2.77| +38|2023-10-06T21:59:41.0910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.87|98.44|0.00|2.77|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:59:41.1350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||93.57|98.33|0.00|2.77|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:41.1350000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +37|2023-10-06T21:59:41.2250000-07:00|40021585|Zeromus|00010A6E|21591665||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:41.2250000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21594591|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8900|10000|||84.96|87.70|0.00|1.89|00010A71|0|1| +31|2023-10-06T21:59:41.2250000-07:00|10FF0001||||| +37|2023-10-06T21:59:41.2690000-07:00|10FF0004|Buhojaqe Zijaqe|00010A6F|11985|57078|4200|10000|0||87.83|93.13|0.00|-2.45|1C00|0|0|0| +38|2023-10-06T21:59:41.2690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||104.30|97.06|0.00|-2.89|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:41.2690000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +261|2023-10-06T21:59:40.8120000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:59:40.8120000-07:00|Change|10FF000B||||||||| +39|2023-10-06T21:59:41.3610000-07:00|10FF000B|Pusu Rosu|55446|55446|2827|10000|||96.47|95.10|0.00|-2.44| +39|2023-10-06T21:59:41.3610000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||104.29|97.03|0.00|-2.79| +24|2023-10-06T21:59:41.3610000-07:00|10FF0003|Gegehi Gehi|HoT|0|114A|51669|51669|950|10000|||94.03|99.89|0.00|-1.50|10FF0003|Gegehi Gehi|0|51669|51669|950|10000|||94.03|99.89|0.00|-1.50| +21|2023-10-06T21:59:41.3610000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|752003|B0CC0000|4|26068000|0|0|0|0|0|0|0|0|0|0|0|0|21591665|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8900|10000|||85.25|87.13|0.00|1.89|00010A72|0|1| +38|2023-10-06T21:59:41.3610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7900|10000|0||85.25|87.13|0.00|1.89|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:41.3610000-07:00|558|Requiescat|21.89|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +38|2023-10-06T21:59:41.3610000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|1500|10000|0||94.03|99.89|0.00|-1.50|0|0|0|||||||||||||||||||||||||||| +31|2023-10-06T21:59:41.3610000-07:00|10FF0001||||| +261|2023-10-06T21:59:40.9230000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:59:40.9230000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:59:41.4040000-07:00|40021585|Zeromus|00010A6D|21563951||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:41.4040000-07:00|40021585|Zeromus|00010A70|21563951|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|0|41200000|| +26|2023-10-06T21:59:41.4040000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|63151| +37|2023-10-06T21:59:41.4040000-07:00|10FF0008|Kokosaze Lulusaze|00010A70|63151|63151|10000|10000|0||92.72|97.67|0.00|2.92|1F00|0|0|01|0600079A|0|41200000|| +26|2023-10-06T21:59:41.4040000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +39|2023-10-06T21:59:41.4040000-07:00|4002185C|Automaton Queen|59967|59967|10000|10000|||101.25|101.17|0.00|-3.08| +26|2023-10-06T21:59:41.4040000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|63151|63151| +21|2023-10-06T21:59:41.4040000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|45AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21591665|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||92.72|97.67|0.00|2.92|00010A73|0|1| +38|2023-10-06T21:59:41.4040000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|1500|10000|0||94.03|99.89|0.00|-1.50|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:41.4040000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +39|2023-10-06T21:59:41.4480000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||91.61|88.33|0.00|3.07| +24|2023-10-06T21:59:41.4480000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|106B|58451|58451|10000|10000|||104.28|97.03|0.00|-2.68|10FF000B|Pusu Rosu|0|55446|55446|2827|10000|||95.79|94.78|0.00|-2.28| +38|2023-10-06T21:59:41.4480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||104.28|97.03|0.00|-2.68|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T21:59:41.4930000-07:00|10FF000B|Pusu Rosu|HoT|0|1061|55446|55446|2827|10000|||95.79|94.78|0.00|-2.28|10FF0003|Gegehi Gehi|0|51669|51669|1500|10000|||93.79|100.51|0.00|-1.22| +38|2023-10-06T21:59:41.4930000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3377|10000|0||95.79|94.78|0.00|-2.28|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:41.5370000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7B600000|4|26418000|0|0|0|0|0|0|0|0|0|0|0|0|21563951|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||91.61|88.33|0.00|3.07|00010A74|0|1| +38|2023-10-06T21:59:41.5370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||91.61|88.33|0.00|3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:41.5370000-07:00|499|Inner Release|9.13|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|90890|90890| +38|2023-10-06T21:59:41.5370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7900|10000|0||85.08|86.47|0.00|1.89|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:41.5370000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +24|2023-10-06T21:59:41.5810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3A38|90890|90890|10000|10000|||91.17|87.71|0.00|2.20|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||91.17|87.71|0.00|2.20| +38|2023-10-06T21:59:41.5810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||91.17|87.71|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:59:41.6700000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1058|90349|90349|7900|10000|||84.80|85.30|0.00|1.70|10FF0001|Sesuga Sapisuga|0|90349|90349|7900|10000|||84.80|85.30|0.00|1.70| +38|2023-10-06T21:59:41.6700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||90.70|87.02|0.00|2.25|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:41.6700000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:59:41.6700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7900|10000|0||84.80|85.30|0.00|1.70|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:41.2510000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:41.7590000-07:00|40021585|Zeromus|00010A71|21561725||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:41.8030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||90.34|86.42|0.00|2.42|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:41.8030000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|90890|90890| +21|2023-10-06T21:59:41.8480000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21561725|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||90.22|94.87|0.00|-3.12|00010A75|0|1| +261|2023-10-06T21:59:41.4370000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:41.4370000-07:00|Change|10FF0004||||||||| +39|2023-10-06T21:59:41.9810000-07:00|10FF0003|Gegehi Gehi|51669|51669|1700|10000|||92.44|103.42|0.00|-0.59| +21|2023-10-06T21:59:42.0270000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|15100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21561725|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||89.16|93.83|0.00|-2.67|00010A76|0|1| +261|2023-10-06T21:59:41.6530000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T21:59:41.6530000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:59:42.0710000-07:00|40021585|Zeromus|00010A73|21543891|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|01|41155813|| +26|2023-10-06T21:59:42.0710000-07:00|35D|Wildfire|9.33|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|01|40478540|63151| +39|2023-10-06T21:59:42.1160000-07:00|10FF0004|Buhojaqe Zijaqe|12555|57078|4400|10000|||83.88|87.74|0.00|-2.57| +37|2023-10-06T21:59:42.1590000-07:00|40021585|Zeromus|00010A74|21512307||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:41.7710000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T21:59:41.8850000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:42.2940000-07:00|40021585|Zeromus|00010A72|21467047||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:42.3380000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3377|10000|0||91.23|92.78|0.00|-1.97|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:42.3380000-07:00|9B|Freecure|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +21|2023-10-06T21:59:42.4730000-07:00|10FF000B|Pusu Rosu|1D08|Divine Benison|10FF0004|Buhojaqe Zijaqe|4D0E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|12555|57078|4400|10000|||82.88|85.90|0.00|-2.63|55446|55446|3377|10000|||90.64|92.59|0.00|-1.94|00010A77|0|1| +261|2023-10-06T21:59:42.1100000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:42.6050000-07:00|40021585|Zeromus|00010A75|21464533||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:42.6510000-07:00|40021585|Zeromus|00010A76|21459141||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:42.6510000-07:00|40021585|Zeromus|DoT|0|4D5|21464533|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:42.6510000-07:00|567C|3| +38|2023-10-06T21:59:42.6510000-07:00|40021585|Zeromus|005A5A00|21457904|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:42.6510000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +21|2023-10-06T21:59:42.6950000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||97.85|94.05|0.00|-2.72|58451|58451|10000|10000|||97.85|94.05|0.00|-2.72|00010A78|0|1| +38|2023-10-06T21:59:42.6950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||97.85|94.05|0.00|-2.72|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:42.6950000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +20|2023-10-06T21:59:42.7400000-07:00|10FF0004|Buhojaqe Zijaqe|433F|Summon Eos|10FF0004|Buhojaqe Zijaqe|1.444|82.63|84.21|-0.02|-2.96| +38|2023-10-06T21:59:42.7400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|11453|57266|2000|10000|0||97.30|102.30|0.00|0.00|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:42.7400000-07:00|94|Raise|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|08|57266|51669| +26|2023-10-06T21:59:42.7400000-07:00|2B|Weakness|100.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +26|2023-10-06T21:59:42.7400000-07:00|1A2|Transcendent|5.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +261|2023-10-06T21:59:42.3000000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:59:42.7830000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||87.19|83.35|0.00|2.69|90890|90890|10000|10000|||87.19|83.35|0.00|2.69|00010A79|0|1| +38|2023-10-06T21:59:42.7830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||87.19|83.35|0.00|2.69|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:42.7830000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +261|2023-10-06T21:59:42.3930000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T21:59:42.8720000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21457904|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||96.65|93.39|0.00|-2.28|00010A7A|0|1| +26|2023-10-06T21:59:42.9170000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|63151|63151| +21|2023-10-06T21:59:42.9170000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|249E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21457904|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||84.55|89.82|0.00|-2.48|00010A7B|0|1| +261|2023-10-06T21:59:42.5870000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:59:42.5870000-07:00|Change|10FF000B||||||||||| +39|2023-10-06T21:59:43.1400000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||84.03|89.53|0.00|2.12| +261|2023-10-06T21:59:42.7020000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:59:43.2300000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||96.44|93.44|0.00|-2.28|58451|58451|10000|10000|||96.44|93.44|0.00|-2.28|00010A7C|0|1| +38|2023-10-06T21:59:43.2300000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||96.44|93.44|0.00|-2.28|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:43.2300000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|58451|58451| +37|2023-10-06T21:59:43.2750000-07:00|10FF0004|Buhojaqe Zijaqe|00010A77|12555|57078|4400|10000|20||82.84|82.84|-0.01|2.62|1C00|0|0|01|070004C2|0|41700000|| +26|2023-10-06T21:59:43.2750000-07:00|4C2|Divine Benison|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +21|2023-10-06T21:59:43.2750000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|C590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21457904|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||87.14|83.05|0.00|2.69|00010A7D|0|1| +38|2023-10-06T21:59:43.2750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|12555|57078|4400|10000|20||82.84|82.84|-0.01|2.62|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:43.3190000-07:00|10FF0007|Kehabiqo Febiqo|00010A79|90890|90890|10000|10000|12||87.14|83.05|0.00|2.69|1500|0|0|01|01000769|0|41F00000|| +38|2023-10-06T21:59:43.3190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||87.14|83.05|0.00|2.69|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:42.9350000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:59:42.9350000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:43.4080000-07:00|40021585|Zeromus|00010A7A|21454289||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:43.4530000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3377|10000|0||87.37|89.30|0.00|-2.05|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:43.4530000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +38|2023-10-06T21:59:43.4530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||94.77|92.08|0.00|-2.28|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:43.4530000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +38|2023-10-06T21:59:43.4990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||87.09|83.02|0.00|2.68|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:43.4990000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +38|2023-10-06T21:59:43.4990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||83.19|87.17|0.00|3.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:43.4990000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +38|2023-10-06T21:59:43.4990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7900|10000|0||85.34|84.03|0.00|1.01|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:43.4990000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +38|2023-10-06T21:59:43.4990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|12555|57078|4400|10000|20||82.84|82.84|0.00|2.61|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:43.4990000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T21:59:43.4990000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|1700|10000|0||88.00|111.32|0.00|-0.53|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:43.4990000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +37|2023-10-06T21:59:43.5420000-07:00|40021585|Zeromus|00010A7B|21444915|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|02|40FB958B|| +26|2023-10-06T21:59:43.5420000-07:00|35D|Wildfire|7.86|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|02|40478540|63151| +21|2023-10-06T21:59:43.5420000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|1B040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21454289|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||83.19|87.17|0.00|3.02|00010A7E|0|1| +261|2023-10-06T21:59:43.1680000-07:00|Add|4002185E||||||||||||||||||||||||||||| +261|2023-10-06T21:59:43.1680000-07:00|Change|4002185E||| +21|2023-10-06T21:59:43.6770000-07:00|4002185C|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|2C800000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|21444915|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08|00010A7F|0|1| +21|2023-10-06T21:59:43.6770000-07:00|10FF0004|Buhojaqe Zijaqe|433F|Summon Eos|10FF0004|Buhojaqe Zijaqe|3E|9D8000|1B|433F8000|0|0|0|0|0|0|0|0|0|0|0|0|12555|57078|4400|10000|||82.84|82.84|0.00|2.61|12555|57078|4400|10000|||82.84|82.84|0.00|2.61|00010A80|0|1| +21|2023-10-06T21:59:43.6770000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||94.50|91.86|0.00|-2.28|58451|58451|10000|10000|||94.50|91.86|0.00|-2.28|00010A81|0|1| +38|2023-10-06T21:59:43.6770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||94.50|91.86|0.00|-2.28|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:43.6770000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|58451|58451| +38|2023-10-06T21:59:43.7210000-07:00|4002185F||005A5A00|54201|54201|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T21:59:43.7210000-07:00|4002185F||005A5A00|54201|54201|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T21:59:43.8100000-07:00|40021585|Zeromus|00010A7D|21441754||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:43.8100000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8100|10000|||85.34|84.03|0.00|1.01| +261|2023-10-06T21:59:43.3620000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:59:43.3620000-07:00|Change|10FF0004||||||||||||||||||||||| +38|2023-10-06T21:59:43.8990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||86.60|82.65|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:43.8990000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +261|2023-10-06T21:59:43.4620000-07:00|Change|10FF0001||||| +261|2023-10-06T21:59:43.4620000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:59:43.9880000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|AA9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21441754|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||86.45|82.54|-0.01|2.40|00010A83|0|1| +38|2023-10-06T21:59:43.9880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||86.45|82.54|-0.01|2.40|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:43.9880000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +24|2023-10-06T21:59:44.0780000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1849|63151|63151|10000|10000|||83.27|86.00|0.00|1.92|10FF0008|Kokosaze Lulusaze|0|63151|63151|10000|10000|||83.27|86.00|0.00|1.92| +38|2023-10-06T21:59:44.0780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|0||83.27|86.00|0.00|1.92|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:59:43.6490000-07:00|Add|4002185F||||||||||||||||||||||||||||||||||||| +03|2023-10-06T21:59:43.6490000-07:00|4002185F|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|54201|54201|10000|10000|||83.72|81.36|0.00|0.58| +261|2023-10-06T21:59:43.6490000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:43.7660000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:59:43.7660000-07:00|Change|4002185F||| +39|2023-10-06T21:59:44.2130000-07:00|10FF0006|Wowobora Gogobora|12025|57266|2200|10000|||94.74|98.21|0.00|-2.55| +21|2023-10-06T21:59:44.2130000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|F030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21441754|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8100|10000|||85.34|84.03|0.00|1.83|00010A84|0|1| +21|2023-10-06T21:59:44.2130000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|650003|3E270000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|21441754|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||91.35|89.17|0.00|-2.28|00010A85|0|1| +38|2023-10-06T21:59:44.2130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||91.35|89.17|0.00|-2.28|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:44.2130000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|58451|58451| +26|2023-10-06T21:59:44.2130000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +31|2023-10-06T21:59:44.2130000-07:00|10FF0001||||| +21|2023-10-06T21:59:44.2570000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|750003|775C0000|4|26F68000|0|0|0|0|0|0|0|0|0|0|0|0|21441754|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8100|10000|||85.34|84.03|0.00|1.83|00010A86|0|1| +261|2023-10-06T21:59:43.7660000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T21:59:44.2570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7100|10000|0||85.34|84.03|0.00|1.83|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:44.2570000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +31|2023-10-06T21:59:44.2570000-07:00|10FF0001||||| +37|2023-10-06T21:59:44.3450000-07:00|40021585|Zeromus|00010A7E|21434838||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:44.3450000-07:00|10FF000B|Pusu Rosu|55446|55446|3658|10000|||83.35|85.33|0.00|-2.31| +39|2023-10-06T21:59:44.3450000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||90.60|88.52|0.00|2.14| +24|2023-10-06T21:59:44.3900000-07:00|10FF0003|Gegehi Gehi|HoT|0|1051|51669|51669|1700|10000|||85.79|114.88|0.00|-0.55|10FF0003|Gegehi Gehi|0|51669|51669|1700|10000|||85.79|114.88|0.00|-0.55| +26|2023-10-06T21:59:44.3900000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|63151|63151| +21|2023-10-06T21:59:44.3900000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|24D10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21441754|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||82.71|84.88|0.00|2.47|00010A87|0|1| +38|2023-10-06T21:59:44.3900000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2250|10000|0||85.79|114.88|0.00|-0.55|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:59:44.4350000-07:00|40021585|Zeromus|00010A7F|21423446||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:44.4350000-07:00|4002185C|Automaton Queen|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08| +24|2023-10-06T21:59:44.4350000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1112|58451|58451|10000|10000|||90.60|88.52|0.00|2.14|10FF000B|Pusu Rosu|0|55446|55446|3377|10000|||83.35|85.33|0.00|-2.31| +20|2023-10-06T21:59:44.4350000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.576|83.35|85.33|0.00|-2.31| +38|2023-10-06T21:59:44.4350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||90.60|88.52|0.00|2.14|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:59:44.4790000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||86.41|82.51|0.00|1.75| +24|2023-10-06T21:59:44.4790000-07:00|10FF000B|Pusu Rosu|HoT|0|1102|55446|55446|3658|10000|||83.09|84.88|-0.02|-2.46|10FF0003|Gegehi Gehi|0|51669|51669|2250|10000|||85.70|115.02|-0.02|-0.59| +38|2023-10-06T21:59:44.4790000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|4208|10000|0||83.09|84.88|-0.02|-2.46|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:44.5240000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21423446|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||82.46|84.37|0.00|1.75|00010A88|0|1| +24|2023-10-06T21:59:44.5690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1351|90890|90890|10000|10000|||86.41|82.51|0.00|1.75|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||86.41|82.51|0.00|1.75| +38|2023-10-06T21:59:44.5690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||86.41|82.51|0.00|1.75|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:59:44.6590000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1972|90349|90349|7100|10000|||85.34|84.03|0.00|1.83|10FF0001|Sesuga Sapisuga|0|90349|90349|7100|10000|||85.34|84.03|0.00|1.83| +38|2023-10-06T21:59:44.6590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7100|10000|0||85.34|84.03|0.00|1.83|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:44.3200000-07:00|Change|4002185F||| +37|2023-10-06T21:59:44.7480000-07:00|10FF0006|Wowobora Gogobora|00010A82|17490||||||93.42|96.12|0.00|-2.56| +37|2023-10-06T21:59:44.7480000-07:00|40021585|Zeromus|00010A84|21419603||||||100.00|80.10|0.00|0.00| +34|2023-10-06T21:59:44.7480000-07:00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01| +261|2023-10-06T21:59:44.4190000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:59:44.4190000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T21:59:44.4190000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:59:44.9280000-07:00|40021585|Zeromus|00010A83|21375925||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:44.9740000-07:00|10FF0003|Gegehi Gehi|51669|51669|2450|10000|||85.25|113.74|0.00|-2.42| +37|2023-10-06T21:59:45.0170000-07:00|40021585|Zeromus|00010A87|21366500|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|03|40CC6251|| +26|2023-10-06T21:59:45.0170000-07:00|35D|Wildfire|6.39|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|03|40478540|63151| +21|2023-10-06T21:59:45.0170000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|23A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21419603|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.96|83.30|0.00|1.75|00010A89|0|1| +38|2023-10-06T21:59:45.0170000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|4208|10000|0||82.08|83.91|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:45.0170000-07:00|9D|Presence of Mind|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +21|2023-10-06T21:59:45.0620000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21366500|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||85.60|85.34|0.00|-2.63|00010A8A|0|1| +39|2023-10-06T21:59:45.1060000-07:00|10FF0004|Buhojaqe Zijaqe|13125|57078|4400|10000|||83.66|83.48|0.00|1.71| +37|2023-10-06T21:59:45.1510000-07:00|40021585|Zeromus|00010A86|21335944||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:44.7380000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T21:59:44.7380000-07:00|Change|10FF0006||||||||| +261|2023-10-06T21:59:44.7380000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:59:45.1950000-07:00|40021585|Zeromus|00010A85|21320033||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:45.1950000-07:00|10FF000A|Dukaro Nezikaro|00010A85|58451|58451|10000|10000|0||85.02|85.01|0.00|-2.65|1E00|0|0|01|050001FB|0|41A00000|| +38|2023-10-06T21:59:45.1950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||85.02|85.01|0.00|-2.65|0|0|0||||||||||||||||||||||||| +21|2023-10-06T21:59:45.2400000-07:00|4002185C|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|2BFE0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|21335944|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08|00010A8B|0|1| +37|2023-10-06T21:59:45.2850000-07:00|40021585|Zeromus|00010A88|21316305||||||100.00|80.10|0.00|0.00| +20|2023-10-06T21:59:45.2850000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|83.82|83.27|0.00|2.34| +21|2023-10-06T21:59:45.3740000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||84.34|84.17|0.00|-2.97|58451|58451|10000|10000|||84.34|84.17|0.00|-2.97|00010A8C|0|1| +38|2023-10-06T21:59:45.3740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||84.34|84.17|0.00|-2.97|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:45.3740000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +22|2023-10-06T21:59:45.5080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|16810000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|55446|55446|4208|10000|||82.08|83.91|0.00|-2.91|55446|55446|4208|10000|||82.08|83.91|0.00|-2.91|00010A8D|0|7| +22|2023-10-06T21:59:45.5080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|200004|22190000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||81.96|83.30|0.00|1.75|55446|55446|4208|10000|||82.08|83.91|0.00|-2.91|00010A8D|1|7| +22|2023-10-06T21:59:45.5080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|200004|23360000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||84.34|84.17|0.00|-2.97|55446|55446|4208|10000|||82.08|83.91|0.00|-2.91|00010A8D|2|7| +22|2023-10-06T21:59:45.5080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|16C20000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|13125|57078|4400|10000|||83.89|83.18|0.00|2.49|55446|55446|4208|10000|||82.08|83.91|0.00|-2.91|00010A8D|3|7| +22|2023-10-06T21:59:45.5080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|162D0000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90349|90349|7100|10000|||85.25|83.67|0.00|1.81|55446|55446|4208|10000|||82.08|83.91|0.00|-2.91|00010A8D|4|7| +22|2023-10-06T21:59:45.5080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|16340000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||86.41|82.51|0.00|1.75|55446|55446|4208|10000|||82.08|83.91|0.00|-2.91|00010A8D|5|7| +22|2023-10-06T21:59:45.5080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|200004|23C50000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|17490|57266|2200|10000|||90.71|92.60|0.00|-2.48|55446|55446|4208|10000|||82.08|83.91|0.00|-2.91|00010A8D|6|7| +37|2023-10-06T21:59:45.5970000-07:00|40021585|Zeromus|00010A8A|21313376||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:45.5970000-07:00|10FF000A|Dukaro Nezikaro|00010A8A|58451|58451|10000|10000|0||84.08|83.81|0.00|2.84|1E00|0|0|01|080001F1|0|C1700000|| +37|2023-10-06T21:59:45.6410000-07:00|40021585|Zeromus|00010A89|21304249||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:45.6860000-07:00|40021585|Zeromus|DoT|0|3E7|21304249|40478540|10000|10000|||100.00|80.10|0.00|0.00|E0000000||FFFFFFFF||||||||||| +36|2023-10-06T21:59:45.6860000-07:00|5758|3| +38|2023-10-06T21:59:45.6860000-07:00|40021585|Zeromus|005A5A00|21303250|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:45.6860000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T21:59:45.3060000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:59:45.7750000-07:00|10FF0003|Gegehi Gehi|03|Sprint|10FF0003|Gegehi Gehi|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|2450|10000|||84.37|109.14|0.00|-2.93|51669|51669|2450|10000|||84.37|109.14|0.00|-2.93|00010A8E|0|1| +261|2023-10-06T21:59:45.4000000-07:00|Change|10FF000B||||||||||||||||||||||| +26|2023-10-06T21:59:45.8640000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +21|2023-10-06T21:59:45.8640000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|22030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21303250|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.96|83.30|0.00|1.75|00010A8F|0|1| +21|2023-10-06T21:59:45.8640000-07:00|40021585|Zeromus|8B3D|Fractured Eventide|40021585|Zeromus|1B|8B3D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21303250|40478540|10000|10000|||100.00|80.10|0.00|0.00|21303250|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010A90|0|1| +38|2023-10-06T21:59:45.8640000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2450|10000|0||84.37|109.14|0.00|-2.93|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:45.8640000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:59:45.4000000-07:00|Change|40021585||||||||||||| +37|2023-10-06T21:59:45.9080000-07:00|10FF0003|Gegehi Gehi|00010A8E|51669|51669|2450|10000|0||84.22|108.38|0.00|-2.95|2300|0|0|01|01000032|1E|41200000|| +26|2023-10-06T21:59:45.9080000-07:00|32|Sprint|10.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|1E|51669|51669| +261|2023-10-06T21:59:45.4920000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:59:45.9970000-07:00|40021585|Zeromus|00010A8B|21291988||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:46.1320000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19714003|3DCF0000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|21291988|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||83.51|83.02|0.00|2.84|00010A91|0|1| +38|2023-10-06T21:59:46.1320000-07:00|40021585|Zeromus|005A5A00|21291988|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T21:59:46.1320000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|58451| +38|2023-10-06T21:59:46.1320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||83.51|83.02|0.00|2.84|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:46.1320000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +261|2023-10-06T21:59:45.7960000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:59:46.1760000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||81.96|83.30|0.00|1.75| +37|2023-10-06T21:59:46.3550000-07:00|10FF000B|Pusu Rosu|00010A8D|55446|55446|3208|10000|0||82.08|83.91|0.00|-2.91|1800|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:46.3550000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +37|2023-10-06T21:59:46.3550000-07:00|10FF000A|Dukaro Nezikaro|00010A8C|58451|58451|10000|10000|0||83.51|83.02|0.00|1.75|1E00|0|0|01|080001F1|0|41700000|| +21|2023-10-06T21:59:46.3550000-07:00|400215A3|Zeromus|8B3E|Fractured Eventide|10FF0006|Wowobora Gogobora|750103|0|114|6FD0000|1B|8B3E8000|0|0|0|0|0|0|0|0|0|0|17490|57266|2200|10000|||87.59|88.04|0.00|-2.60|44|44|0|10000|||100.00|80.10|0.00|-0.79|00010A92|0|1| +38|2023-10-06T21:59:46.3550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|0||83.51|83.02|0.00|1.75|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T21:59:45.9140000-07:00|Change|400215A3||||||||||||| +21|2023-10-06T21:59:46.4440000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|84CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21291988|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||86.41|82.51|0.00|1.75|00010A93|0|1| +38|2023-10-06T21:59:46.4440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|12||86.41|82.51|0.00|1.75|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:46.4440000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|90890|90890| +37|2023-10-06T21:59:46.4880000-07:00|40021585|Zeromus|00010A8F|21283281|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|0100035D|04|409D580C|||||| +26|2023-10-06T21:59:46.4880000-07:00|35D|Wildfire|4.92|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|04|40478540|63151| +37|2023-10-06T21:59:46.4880000-07:00|10FF0008|Kokosaze Lulusaze|00010A8D|63151|63151|10000|10000|0||81.96|83.30|0.00|1.75|1F01|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:46.4880000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +21|2023-10-06T21:59:46.4880000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|91C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21283281|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7100|10000|||85.25|83.67|0.00|1.81|00010A94|0|1| +31|2023-10-06T21:59:46.4880000-07:00|10FF0001||||| +21|2023-10-06T21:59:46.5320000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|14CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21283281|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.96|83.30|0.00|1.75|00010A95|0|1| +37|2023-10-06T21:59:46.6210000-07:00|10FF000A|Dukaro Nezikaro|00010A8D|58451|58451|10000|10000|0||83.51|83.02|0.00|1.75|1E02|0|0|01|07000096|0|41700000|| +26|2023-10-06T21:59:46.6210000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +37|2023-10-06T21:59:46.6670000-07:00|40021585|Zeromus|00010A90|21283281|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|02000CB6|0|C1700000|| +21|2023-10-06T21:59:46.6670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|14110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21283281|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||86.41|82.51|0.00|1.75|00010A96|0|1| +22|2023-10-06T21:59:46.6670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|1E1C0000|2C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|13125|57078|4400|10000|||84.09|82.90|0.00|2.93|13125|57078|4400|10000|||84.09|82.90|0.00|2.93|00010A97|0|7| +22|2023-10-06T21:59:46.6670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|1EDD0000|610E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||83.51|83.02|0.00|1.75|13125|57078|4400|10000|||84.09|82.90|0.00|2.93|00010A97|1|7| +22|2023-10-06T21:59:46.6670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|13080000|730E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90349|90349|7100|10000|||85.39|83.64|0.00|1.78|13125|57078|4400|10000|||84.09|82.90|0.00|2.93|00010A97|2|7| +22|2023-10-06T21:59:46.6670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|12D60000|230E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||81.96|83.30|0.00|1.75|13125|57078|4400|10000|||84.09|82.90|0.00|2.93|00010A97|3|7| +22|2023-10-06T21:59:46.6670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|200004|1EA40000|60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55446|55446|3208|10000|||82.08|83.91|0.00|-2.91|13125|57078|4400|10000|||84.09|82.90|0.00|2.93|00010A97|4|7| +22|2023-10-06T21:59:46.6670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|130A0000|760E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||86.41|82.51|0.00|1.75|13125|57078|4400|10000|||84.09|82.90|0.00|2.93|00010A97|5|7| +22|2023-10-06T21:59:46.6670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|12650000|6E0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|17490|57266|2200|10000|||86.79|86.43|0.00|-2.66|13125|57078|4400|10000|||84.09|82.90|0.00|2.93|00010A97|6|7| +38|2023-10-06T21:59:46.6670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||86.41|82.51|0.00|1.75|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:46.6670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:59:46.6670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||81.96|83.30|0.00|1.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:46.6670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T21:59:46.6670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|17490|57266|2200|10000|13||86.79|86.43|0.00|-2.66|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:46.6670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T21:59:46.6670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7100|10000|8||85.39|83.64|0.00|1.78|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:46.6670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T21:59:46.6670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|13125|57078|3400|10000|42||84.09|82.90|0.00|2.93|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:46.6670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T21:59:46.6670000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|3208|10000|22||82.08|83.91|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:46.6670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T21:59:46.6670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||83.51|83.02|0.00|1.75|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:46.6670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +261|2023-10-06T21:59:46.2650000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:46.7560000-07:00|10FF0004|Buhojaqe Zijaqe|00010A8D|18951|57078|3400|10000|42||84.09|82.90|0.00|2.93|1C03|0|0|01|08000096|0|41700000|| +26|2023-10-06T21:59:46.7560000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +21|2023-10-06T21:59:46.7560000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|3B0D0000|4|262B8000|0|0|0|0|0|0|0|0|0|0|0|0|21283281|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7100|10000|||85.54|83.61|0.00|1.77|00010A98|0|1| +38|2023-10-06T21:59:46.7560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6100|10000|8||85.54|83.61|0.00|1.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:46.7560000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:59:46.3630000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:59:46.8010000-07:00|4002185C|Automaton Queen|4078|Arm Punch|40021585|Zeromus|732003|37EF0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|21283281|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08|00010A99|0|1| +39|2023-10-06T21:59:46.8010000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|6300|10000|||85.54|83.61|0.00|1.77| +261|2023-10-06T21:59:46.3630000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:59:46.8460000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|10FF0003|Gegehi Gehi|750003|61210000|100140E|6FD0000|1B|8BB28000|0|0|0|0|0|0|0|0|0|0|51669|51669|2450|10000|||83.46|104.21|0.00|-2.97|44|44|0|10000|||100.00|80.10|0.00|-0.79|00010A9A|0|1| +37|2023-10-06T21:59:46.8910000-07:00|10FF0001|Sesuga Sapisuga|00010A8D|90349|90349|6300|10000|8||85.54|83.61|0.00|1.77|1304|0|0|01|09000096|0|41700000|| +26|2023-10-06T21:59:46.8910000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +21|2023-10-06T21:59:46.8910000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40021585|Zeromus|710003|12C10000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|21283281|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||83.51|83.02|0.00|1.75|00010A9B|0|1| +38|2023-10-06T21:59:46.8910000-07:00|40021585|Zeromus|005A5A00|21283281|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:59:46.8910000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|58451| +37|2023-10-06T21:59:46.9360000-07:00|40021585|Zeromus|00010A91|21267458|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|02000CB6|0|41700000|||||| +38|2023-10-06T21:59:46.9360000-07:00|40021585|Zeromus|005A5A00|21267458|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T21:59:47.0250000-07:00|40021585|Zeromus|00010A94|21265126|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0400027E|0|C1A00000|| +37|2023-10-06T21:59:47.0250000-07:00|10FF0003|Gegehi Gehi|00010A9A|26804|51669|2450|10000|0||83.44|102.35|0.00|-3.08|2300|0|0|01|030006FD|01|42700000|| +26|2023-10-06T21:59:47.0250000-07:00|6FD|Vulnerability Up|60.00|400215A3|Zeromus|10FF0003|Gegehi Gehi|01|51669|44| +37|2023-10-06T21:59:47.0250000-07:00|10FF0007|Kehabiqo Febiqo|00010A8D|90890|90890|10000|10000|21||86.41|82.51|0.00|1.75|1505|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:47.0250000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +37|2023-10-06T21:59:47.0700000-07:00|40021585|Zeromus|00010A93|21231127|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0400027E|0|C1A00000|| +24|2023-10-06T21:59:47.0700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1453|63151|63151|10000|10000|||81.96|83.30|0.00|1.75|10FF0008|Kokosaze Lulusaze|0|63151|63151|10000|10000|||81.96|83.30|0.00|1.75| +24|2023-10-06T21:59:47.0700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1472|18951|57078|3400|10000|||84.09|82.90|0.00|2.93|E0000000||0||||||||||| +21|2023-10-06T21:59:47.0700000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||86.41|82.51|0.00|1.75|90890|90890|10000|10000|||86.41|82.51|0.00|1.75|00010A9C|0|1| +38|2023-10-06T21:59:47.0700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||86.41|82.51|0.00|1.75|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:47.0700000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +38|2023-10-06T21:59:47.0700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||81.96|83.30|0.00|1.75|0|0|0||||||||||||||||||||||||| +38|2023-10-06T21:59:47.0700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|24185|57078|3400|10000|42||84.09|82.90|0.00|2.93|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:47.1600000-07:00|10FF0006|Wowobora Gogobora|00010A8D|26647|57266|2200|10000|13||86.15|84.03|0.00|-2.88|1B06|0|0|01|04000096|0|41700000|| +26|2023-10-06T21:59:47.1600000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +24|2023-10-06T21:59:47.1600000-07:00|10FF0006|Wowobora Gogobora|HoT|0|DA6|17490|57266|2200|10000|||86.15|84.03|0.00|-2.88|E0000000||0||||||||||| +38|2023-10-06T21:59:47.1600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|30141|57266|2200|10000|13||86.15|84.03|0.00|-2.88|0|0|0||||||||||||||||||||||||| +37|2023-10-06T21:59:47.2040000-07:00|40021585|Zeromus|00010A96|21225990|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0400027E|0|C1A00000|| +37|2023-10-06T21:59:47.2040000-07:00|10FF0007|Kehabiqo Febiqo|00010A96|90890|90890|10000|10000|21||86.41|82.51|0.00|1.75|1500|0|0|01|02000769|0|C1F00000|| +39|2023-10-06T21:59:47.2040000-07:00|10FF0006|Wowobora Gogobora|30713|57266|2400|10000|||86.23|83.30|0.00|-3.03| +21|2023-10-06T21:59:47.2040000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21231127|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.96|83.30|0.00|1.75|00010A9D|0|1| +261|2023-10-06T21:59:46.7920000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T21:59:47.2480000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|A1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21231127|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||83.51|83.02|0.00|1.75|00010A9E|0|1| +261|2023-10-06T21:59:46.9110000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:59:47.2930000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|22690000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|24185|57078|3400|10000|||84.09|82.90|0.00|2.93|54201|54201|10000|10000|||83.79|81.41|0.00|0.76|00010A9F|0|1| +21|2023-10-06T21:59:47.2930000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.54|00010AA0|0|0| +37|2023-10-06T21:59:47.3370000-07:00|40021585|Zeromus|00010A95|21220663|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0400027E|0|C1A00000|| +39|2023-10-06T21:59:47.3370000-07:00|10FF000B|Pusu Rosu|55446|55446|3489|10000|||82.10|83.95|0.00|1.62| +39|2023-10-06T21:59:47.3370000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||83.51|83.02|0.00|1.75| +261|2023-10-06T21:59:47.0310000-07:00|Change|10FF000B||||||||||| +38|2023-10-06T21:59:47.3830000-07:00|4002185C|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.24|101.09|0.00|-3.08|0|0|0||||||||||||| +26|2023-10-06T21:59:47.3830000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|4002185C|Automaton Queen|01|59967|40478540| +24|2023-10-06T21:59:47.3830000-07:00|10FF0003|Gegehi Gehi|HoT|0|105D|26804|51669|2450|10000|||83.24|98.91|-0.02|-3.08|10FF0003|Gegehi Gehi|0|26804|51669|2450|10000|||83.24|98.91|-0.02|-3.08| +21|2023-10-06T21:59:47.3830000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|26970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21220663|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||81.96|83.30|0.00|1.75|00010AA1|0|1| +38|2023-10-06T21:59:47.3830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||81.96|83.30|0.00|1.75|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:59:47.3830000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|63151|63151| +38|2023-10-06T21:59:47.3830000-07:00|10FF0003|Gegehi Gehi|005A5A23|30993|51669|2450|10000|0||83.24|98.91|-0.02|-3.08|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T21:59:47.4280000-07:00|40021585|Zeromus|00010A9B|21215862|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0400027E|0|41A00000|| +39|2023-10-06T21:59:47.4280000-07:00|4002185C|Automaton Queen|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08| +24|2023-10-06T21:59:47.4280000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|DFD|58451|58451|10000|10000|||83.51|83.02|0.00|1.75|10FF000A|Dukaro Nezikaro|0|58451|58451|10000|10000|||83.51|83.02|0.00|1.75| +38|2023-10-06T21:59:47.4280000-07:00|40021585|Zeromus|005A5A00|21215862|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T21:59:47.4290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||83.51|83.02|0.00|1.75|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T21:59:47.4720000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||86.41|82.51|0.00|1.75| +24|2023-10-06T21:59:47.4720000-07:00|10FF000B|Pusu Rosu|HoT|0|DB4|55446|55446|4039|10000|||82.42|84.87|0.00|0.75|10FF0003|Gegehi Gehi|0|30993|51669|2450|10000|||83.10|97.90|0.00|-3.06| +38|2023-10-06T21:59:47.4720000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|4039|10000|22||82.42|84.87|0.00|0.75|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:47.5160000-07:00|40021585|Zeromus|00010A98|21200745||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:47.5620000-07:00|40021585|Zeromus|00010A99|21186426||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:47.5620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1582|90890|90890|10000|10000|||86.38|82.54|0.00|1.58|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||86.38|82.54|0.00|1.58| +38|2023-10-06T21:59:47.5620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||86.38|82.54|0.00|1.58|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:47.6050000-07:00|10FF0007|Kehabiqo Febiqo|00010A9C|90890|90890|10000|10000|21||86.38|82.56|0.00|1.48|1500|0|0|01|02000769|0|41F00000|| +38|2023-10-06T21:59:47.6050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||86.38|82.56|0.00|1.48|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T21:59:47.6500000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D8A|90349|90349|6300|10000|||88.97|82.91|0.00|1.61|10FF0001|Sesuga Sapisuga|0|90349|90349|6300|10000|||88.97|82.91|0.00|1.61| +38|2023-10-06T21:59:47.6500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6300|10000|8||88.97|82.91|0.00|1.61|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:47.3850000-07:00|Change|10FF0001||||||||| +21|2023-10-06T21:59:47.7390000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.54|00010AA2|0|0| +20|2023-10-06T21:59:47.7390000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|1.970|82.76|85.92|0.00|0.50| +37|2023-10-06T21:59:47.7830000-07:00|10FF0004|Buhojaqe Zijaqe|00010A97|31893|57078|3400|10000|42||84.11|82.90|0.00|1.70|1C00|0|0|01|03000129|0|41E76C89|| +37|2023-10-06T21:59:47.7830000-07:00|40021585|Zeromus|00010A9E|21183838||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:47.7830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|30713|57266|2400|10000|13||88.47|82.70|0.00|1.85|0|0|0||||||||||||||||||||||||| +30|2023-10-06T21:59:47.7830000-07:00|1A2|Transcendent|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +261|2023-10-06T21:59:47.3850000-07:00|Change|4002185F||||||||||| +261|2023-10-06T21:59:47.3850000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T21:59:47.4760000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T21:59:47.4760000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:47.9170000-07:00|10FF000A|Dukaro Nezikaro|00010A97|58451|58451|10000|10000|21||83.51|83.02|0.00|1.75|1E01|0|0|01|05000129|0|41E65C26|| +37|2023-10-06T21:59:47.9630000-07:00|40021585|Zeromus|00010A9D|21181387||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:47.9630000-07:00|10FF0003|Gegehi Gehi|31509|51669|2650|10000|||82.59|94.19|0.00|-3.03| +37|2023-10-06T21:59:48.0060000-07:00|40021585|Zeromus|00010AA1|21171508|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|05|405978C5|| +26|2023-10-06T21:59:48.0060000-07:00|35D|Wildfire|3.40|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|05|40478540|63151| +21|2023-10-06T21:59:48.0060000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42716003|768A0000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|21183838|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||83.51|83.02|0.00|1.75|00010AA3|0|1| +37|2023-10-06T21:59:48.0500000-07:00|10FF0001|Sesuga Sapisuga|00010A97|90349|90349|6300|10000|8||90.11|83.04|0.00|1.41|1302|0|0|01|02000129|0|41E549B8|| +21|2023-10-06T21:59:48.0500000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|15B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21171508|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||82.16|83.38|-0.02|1.78|00010AA4|0|1| +37|2023-10-06T21:59:48.0950000-07:00|10FF0004|Buhojaqe Zijaqe|00010A9F|40702||||||86.35|83.53|0.00|1.33| +39|2023-10-06T21:59:48.0950000-07:00|10FF0004|Buhojaqe Zijaqe|41272|57078|3600|10000|||86.35|83.53|0.00|1.33| +37|2023-10-06T21:59:48.1860000-07:00|10FF0008|Kokosaze Lulusaze|00010A97|63151|63151|10000|10000|12||82.90|83.62|0.00|1.65|1F03|0|0|01|05000129|0|41E43749|| +21|2023-10-06T21:59:48.1860000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.42|00010AA5|0|0| +261|2023-10-06T21:59:47.7970000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:59:48.3180000-07:00|10FF000B|Pusu Rosu|00010A97|55446|55446|4039|10000|22||82.96|86.63|0.00|0.23|1804|0|0|01|02000129|0|41E326E6|| +21|2023-10-06T21:59:48.3620000-07:00|4002185C|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|730003|6A9E0000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|21171508|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08|00010AA6|0|1| +37|2023-10-06T21:59:48.4510000-07:00|10FF0007|Kehabiqo Febiqo|00010A97|90890|90890|10000|10000|21||90.20|84.50|0.00|1.20|1505|0|0|01|01000129|0|41E21683|| +261|2023-10-06T21:59:48.2710000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:59:48.5850000-07:00|10FF0006|Wowobora Gogobora|00010A97|35422|57266|2400|10000|13||92.08|86.01|0.00|0.94|1B06|0|0|01|0129|0|41E0FFFC|| +37|2023-10-06T21:59:48.6290000-07:00|40021585|Zeromus|00010AA3|21141162||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:48.6290000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.17|00010AA7|0|0| +37|2023-10-06T21:59:48.6740000-07:00|40021585|Zeromus|00010AA4|21135609||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:48.6740000-07:00|40021585|Zeromus|DoT|0|607|21134066|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|58451|58451|10000|10000|||83.54|83.07|0.00|0.86| +20|2023-10-06T21:59:48.6740000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|1.491|92.24|86.06|0.00|1.04| +36|2023-10-06T21:59:48.6740000-07:00|5834|3| +38|2023-10-06T21:59:48.6740000-07:00|40021585|Zeromus|005A5A00|21134066|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T21:59:48.6740000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +21|2023-10-06T21:59:48.7620000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8EC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21134066|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|6300|10000|||91.97|83.35|0.00|1.41|00010AA8|0|1| +31|2023-10-06T21:59:48.7620000-07:00|10FF0001||||| +38|2023-10-06T21:59:48.8520000-07:00|10FF0003|Gegehi Gehi|005A5A23|31509|51669|2650|10000|0||86.21|88.91|0.00|1.76|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:48.8520000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +261|2023-10-06T21:59:48.4580000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T21:59:48.8950000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|722003|A46E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21134066|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||84.60|83.94|0.00|1.44|00010AA9|0|1| +21|2023-10-06T21:59:48.9420000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|AA8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21134066|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||91.69|86.48|0.00|0.65|00010AAA|0|1| +38|2023-10-06T21:59:48.9420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||91.69|86.48|0.00|0.65|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:48.9420000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +23|2023-10-06T21:59:49.0720000-07:00|10FF000B|Pusu Rosu|7C|Medica|Cancelled| +261|2023-10-06T21:59:48.7520000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T21:59:49.1180000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.17|00010AAB|0|0| +39|2023-10-06T21:59:49.1620000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||86.93|84.34|0.00|1.95| +261|2023-10-06T21:59:48.7520000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:59:49.2520000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|352C0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|21134066|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|6300|10000|||92.60|83.45|0.00|1.41|00010AAC|0|1| +38|2023-10-06T21:59:49.2520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6300|10000|8||92.60|83.45|0.00|1.41|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:49.2520000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +261|2023-10-06T21:59:48.8630000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:59:49.2960000-07:00|40021585|Zeromus|00010AA8|21131782||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:48.9800000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:59:49.4300000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|A5E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21131782|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||86.51|86.53|-0.02|1.08|00010AAD|0|1| +261|2023-10-06T21:59:49.0930000-07:00|Change|400215A3||||||||| +21|2023-10-06T21:59:49.5640000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.05|00010AAE|0|0| +21|2023-10-06T21:59:49.5650000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|15CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21131782|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||90.13|85.06|-0.02|1.53|00010AAF|0|1| +37|2023-10-06T21:59:49.6550000-07:00|40021585|Zeromus|00010AA6|21104488||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:49.6550000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|3E|9D8000|1B|64C68000|0|0|0|0|0|0|0|0|0|0|0|0|35422|57266|2400|10000|||92.61|86.17|0.00|1.26|35422|57266|2400|10000|||92.61|86.17|0.00|1.26|00010AB0|0|1| +38|2023-10-06T21:59:49.6550000-07:00|4002185C|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.24|101.09|0.00|-3.08|0|0|0|||||||||| +30|2023-10-06T21:59:49.6550000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|4002185C|Automaton Queen|01|59967|40478540| +38|2023-10-06T21:59:49.6990000-07:00|4002187D||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:59:49.6990000-07:00|4002187D||005A5A00|54388|54388|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T21:59:49.6990000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21104488|40478540|10000|10000|||100.00|80.10|0.00|0.00|35422|57266|2000|10000|||92.61|86.17|0.00|1.26|00010AB1|0|1| +261|2023-10-06T21:59:49.4050000-07:00|Change|4002185F||||||||| +39|2023-10-06T21:59:49.7870000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|6500|10000|||92.81|84.44|0.00|1.40| +261|2023-10-06T21:59:49.4050000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:49.4050000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:59:49.4980000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T21:59:49.8770000-07:00|40021585|Zeromus|00010AAA|21060829||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:49.8770000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|C9C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21104488|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||92.03|85.70|0.00|2.18|00010AB2|0|1| +261|2023-10-06T21:59:49.4980000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T21:59:49.9670000-07:00|40021585|Zeromus|00010AAD|21058175||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:49.5920000-07:00|Change|40021585||| +261|2023-10-06T21:59:49.5920000-07:00|Change|40021585||| +21|2023-10-06T21:59:50.0120000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.19|00010AB3|0|0| +21|2023-10-06T21:59:50.0120000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|FC00E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|21058175|40478540|10000|10000|||100.00|80.10|0.00|0.00|41272|57078|3600|10000|||93.91|86.86|0.00|0.95|00010AB4|0|1| +37|2023-10-06T21:59:50.0570000-07:00|40021585|Zeromus|00010AA9|21016081|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100035D|06|3FAC8B2B|| +26|2023-10-06T21:59:50.0570000-07:00|35D|Wildfire|1.35|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|63151| +24|2023-10-06T21:59:50.0570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|DF0|63151|63151|10000|10000|||93.78|86.64|0.00|1.51|10FF0008|Kokosaze Lulusaze|0|63151|63151|10000|10000|||93.78|86.64|0.00|1.51| +24|2023-10-06T21:59:50.0570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|DDE|41272|57078|3200|10000|||94.33|87.33|0.00|2.47|E0000000||0||||||||||| +21|2023-10-06T21:59:50.0570000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|14F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21058175|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||93.41|93.25|0.00|0.73|00010AB5|0|1| +21|2023-10-06T21:59:50.0570000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|720003|E3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21058175|40478540|10000|10000|||100.00|80.10|0.00|0.00|31509|51669|2650|10000|||88.21|87.42|0.00|1.49|00010AB6|0|1| +21|2023-10-06T21:59:50.0570000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21058175|40478540|10000|10000|||100.00|80.10|0.00|0.00|31509|51669|2650|10000|||88.21|87.42|0.00|1.49|00010AB7|0|1| +38|2023-10-06T21:59:50.0570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||93.78|86.64|0.00|1.51|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:59:50.0570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|44822|57078|3200|10000|42||94.33|87.33|0.00|2.47|0|0|0|||||||||||||||||||||||||||||||||| +03|2023-10-06T21:59:49.7020000-07:00|4002187D|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||94.27|86.72|0.00|-1.88| +261|2023-10-06T21:59:49.7020000-07:00|Add|4002187D||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:49.8190000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:59:49.8190000-07:00|Change|4002187D||| +24|2023-10-06T21:59:50.1450000-07:00|10FF0006|Wowobora Gogobora|HoT|0|15AF|35422|57266|2000|10000|||92.61|86.17|0.00|1.26|E0000000||0||||||||||| +38|2023-10-06T21:59:50.1450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|40973|57266|2000|10000|13||92.61|86.17|0.00|1.26|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:59:50.1900000-07:00|10FF0006|Wowobora Gogobora|41545|57266|2200|10000|||92.61|86.17|0.00|1.26| +21|2023-10-06T21:59:50.1900000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|1B2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|21058175|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||93.78|86.64|0.00|1.51|00010AB8|0|1| +261|2023-10-06T21:59:49.8190000-07:00|Change|10FF000B||||||||| +37|2023-10-06T21:59:50.2360000-07:00|40021585|Zeromus|00010AB1|21015995||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:49.9380000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:50.3680000-07:00|40021585|Zeromus|00010AAF|21010416||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:50.3680000-07:00|4002185C|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.24|101.09|0.00|-3.08|0|0|0||||||||||||| +26|2023-10-06T21:59:50.3680000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|4002185C|Automaton Queen|01|59967|40478540| +39|2023-10-06T21:59:50.3680000-07:00|10FF000B|Pusu Rosu|55446|55446|4320|10000|||87.26|90.14|0.00|0.79| +39|2023-10-06T21:59:50.3680000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||92.63|87.10|0.00|1.49| +21|2023-10-06T21:59:50.4130000-07:00|4002185C|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|730003|7CA20000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|21015995|40478540|10000|10000|||100.00|80.10|0.00|0.00|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08|00010AB9|0|1| +39|2023-10-06T21:59:50.4130000-07:00|4002185C|Automaton Queen|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08| +24|2023-10-06T21:59:50.4130000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|D60|58451|58451|10000|10000|||92.63|87.10|0.00|1.49|10FF000A|Dukaro Nezikaro|0|58451|58451|10000|10000|||92.63|87.10|0.00|1.49| +38|2023-10-06T21:59:50.4130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||92.63|87.10|0.00|1.49|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T21:59:50.4580000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.31|00010ABA|0|0| +39|2023-10-06T21:59:50.4580000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||95.29|93.98|-0.02|1.03| +24|2023-10-06T21:59:50.4580000-07:00|10FF000B|Pusu Rosu|HoT|0|14D0|55446|55446|4320|10000|||87.83|90.43|-0.02|0.92|10FF0003|Gegehi Gehi|0|31509|51669|2650|10000|||88.26|87.42|0.00|2.14| +38|2023-10-06T21:59:50.4580000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|4870|10000|22||87.83|90.43|-0.02|0.92|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:50.1640000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:50.5480000-07:00|40021585|Zeromus|00010AAC|20996804||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:50.5480000-07:00|10FF0001|Sesuga Sapisuga|00010AAC|90349|90349|6900|10000|8||95.72|85.67|0.00|1.39|1300|0|0|0| +24|2023-10-06T21:59:50.5480000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E65|90890|90890|10000|10000|||95.98|94.00|0.00|1.15|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||95.98|94.00|0.00|1.15| +38|2023-10-06T21:59:50.5480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||95.98|94.00|0.00|1.15|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:50.5930000-07:00|40021585|Zeromus|00010AB5|20991443||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:50.5930000-07:00|40021585|Zeromus|00010AB7|20991442||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:50.5930000-07:00|40021585|Zeromus|005A5A00|20991442|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:59:50.5930000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +37|2023-10-06T21:59:50.6370000-07:00|40021585|Zeromus|00010AB2|20988214||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:50.6370000-07:00|40021585|Zeromus|00010AB4|20988214|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T21:59:50.6370000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|57078| +24|2023-10-06T21:59:50.6370000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D7E|90349|90349|6500|10000|||95.72|85.67|0.00|1.39|10FF000B|Pusu Rosu|0|55446|55446|4870|10000|||88.43|90.60|0.00|0.97| +38|2023-10-06T21:59:50.6370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6900|10000|8||95.72|85.67|0.00|1.39|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:50.3670000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:59:50.6820000-07:00|40021585|Zeromus|00010AB6|20984572||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:50.6820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||96.44|94.01|0.00|1.26|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:50.6820000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +34|2023-10-06T21:59:50.7270000-07:00|4002187D|Carbuncle|4002187D|Carbuncle|01| +261|2023-10-06T21:59:50.3670000-07:00|Change|4002187D||| +39|2023-10-06T21:59:50.7700000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||92.19|86.47|0.00|0.54| +261|2023-10-06T21:59:50.3670000-07:00|Change|4002185F||||||||| +261|2023-10-06T21:59:50.4660000-07:00|Change|10FF0001||||||| +37|2023-10-06T21:59:50.8150000-07:00|40021585|Zeromus|00010AB8|20977616||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:50.8600000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|8A90000|BD8A0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|20984572|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|4870|10000|||89.65|90.93|0.00|1.07|00010ABB|0|1| +261|2023-10-06T21:59:50.5590000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:59:50.9040000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.44|00010ABC|0|0| +21|2023-10-06T21:59:50.9920000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|14CF0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|41545|57266|2200|10000|||93.52|87.46|0.00|0.74|54201|54201|10000|10000|||92.56|87.17|0.00|0.79|00010ABD|0|1| +39|2023-10-06T21:59:50.9920000-07:00|10FF0003|Gegehi Gehi|32025|51669|2850|10000|||89.50|87.73|0.00|1.91| +261|2023-10-06T21:59:50.5590000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:59:51.0370000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|B9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20977616|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|6900|10000|||96.79|86.01|0.00|1.39|00010ABE|0|1| +31|2023-10-06T21:59:51.0370000-07:00|10FF0001||||| +39|2023-10-06T21:59:51.1280000-07:00|10FF0004|Buhojaqe Zijaqe|45392|57078|3400|10000|||97.39|90.41|0.00|1.18| +261|2023-10-06T21:59:50.7700000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:59:51.1710000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40021585|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|20977616|40478540|10000|10000|||100.00|80.10|0.00|0.00|41545|57266|2200|10000|||93.98|88.09|0.00|0.68|00010ABF|0|1| +38|2023-10-06T21:59:51.2160000-07:00|4002187E||005A5A00|48949|48949|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T21:59:51.2160000-07:00|4002187E||005A5A00|48949|48949|10000|10000|0||||||0|0|0||||||| +03|2023-10-06T21:59:50.8800000-07:00|4002187E|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|48949|48949|10000|10000|||95.92|91.59|0.00|2.66| +261|2023-10-06T21:59:50.8800000-07:00|Change|10FF000B||||||||||||| +261|2023-10-06T21:59:50.8800000-07:00|Add|4002187E||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:50.9940000-07:00|Change|4002187E||| +21|2023-10-06T21:59:51.3490000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.44|00010AC0|0|0| +261|2023-10-06T21:59:50.9940000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:59:50.9940000-07:00|Change|10FF0007||||||||| +24|2023-10-06T21:59:51.3950000-07:00|40021585|Zeromus|DoT|35D|DCD1|20977616|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|63151|63151|10000|10000|||98.81|92.08|0.00|0.66| +21|2023-10-06T21:59:51.3950000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|35A90000|143E|340000|200004|27468000|11B|2A8000|0|0|0|0|0|0|0|0|20977616|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||98.06|94.37|0.00|1.34|00010AC1|0|1| +38|2023-10-06T21:59:51.3950000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||98.81|92.08|0.00|0.66|0|0|0||||||||||||||||||| +30|2023-10-06T21:59:51.3950000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +38|2023-10-06T21:59:51.3950000-07:00|40021585|Zeromus|005A5A00|20921087|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T21:59:51.3950000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|63151| +26|2023-10-06T21:59:51.3950000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +21|2023-10-06T21:59:51.4390000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44724003|54000000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|20921087|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.22|92.73|0.00|0.61|00010AC2|0|1| +21|2023-10-06T21:59:51.4820000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|722003|21010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20921087|40478540|10000|10000|||100.00|80.10|0.00|0.00|32025|51669|2850|10000|||93.11|88.93|0.00|1.33|00010AC3|0|1| +37|2023-10-06T21:59:51.5720000-07:00|40021585|Zeromus|00010ABE|20918114||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:51.2250000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:59:51.2250000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:59:51.6170000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|A460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20921087|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||96.71|89.18|0.00|1.49|00010AC4|0|1| +261|2023-10-06T21:59:51.3170000-07:00|Change|10FF0006||||||||| +24|2023-10-06T21:59:51.6620000-07:00|40021585|Zeromus|DoT|0|1066|20918114|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|58451|58451|10000|10000|||96.66|90.00|0.00|1.49| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|752003|52C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20918114|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|0|9| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|24180000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|1|9| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|200004|38AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32025|51669|2850|10000|||94.73|89.55|0.00|2.37|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|2|9| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|200004|368C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41545|57266|2200|10000|||96.77|90.41|0.00|1.79|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|3|9| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|24E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||96.66|90.00|0.00|1.49|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|4|9| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|38270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45392|57078|3400|10000|||100.04|91.68|0.00|1.09|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|5|9| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|24C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|6900|10000|||99.44|88.00|0.00|1.39|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|6|9| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|254D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.97|93.84|0.00|2.10|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|7|9| +22|2023-10-06T21:59:51.6620000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|24B80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||100.28|95.17|0.00|2.59|55446|55446|4470|10000|||94.41|90.66|0.00|1.72|00010AC5|8|9| +36|2023-10-06T21:59:51.6620000-07:00|5910|3| +38|2023-10-06T21:59:51.6620000-07:00|40021585|Zeromus|005A5A00|20913916|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T21:59:51.3170000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T21:59:51.7510000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41712003|57AE0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|20913916|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|6900|10000|||99.44|88.01|0.00|1.39|00010AC6|0|1| +38|2023-10-06T21:59:51.7510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6900|10000|8||99.44|88.01|0.00|1.39|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:51.7510000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T21:59:51.7510000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T21:59:51.4120000-07:00|Change|4002187D||| +37|2023-10-06T21:59:51.7950000-07:00|10FF0006|Wowobora Gogobora|00010ABD|46872||||||97.37|90.79|0.00|1.37| +21|2023-10-06T21:59:51.7950000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.56|00010AC7|0|0| +22|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|00010AC8|0|8| +22|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||97.46|91.37|0.00|1.49|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|00010AC8|1|8| +22|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000B|Pusu Rosu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|4470|10000|||95.06|90.80|0.00|1.43|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|00010AC8|2|8| +22|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45392|57078|3400|10000|||101.12|92.41|0.00|1.00|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|00010AC8|3|8| +22|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|6900|10000|||99.55|88.03|0.00|1.39|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|00010AC8|4|8| +22|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|32025|51669|2850|10000|||96.39|90.15|0.00|1.66|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|00010AC8|5|8| +22|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||100.95|94.86|0.00|1.29|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|00010AC8|6|8| +22|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||101.67|95.57|0.00|1.80|46872|57266|2200|10000|||97.92|91.08|0.00|1.27|00010AC8|7|8| +38|2023-10-06T21:59:51.8420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||101.67|95.57|0.00|1.80|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:51.8420000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|90890|57266| +38|2023-10-06T21:59:51.8420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||100.95|94.86|0.00|1.29|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:51.8420000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|63151|57266| +38|2023-10-06T21:59:51.8420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|46872|57266|2200|10000|13||97.92|91.08|0.00|1.27|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:51.8420000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:59:51.8420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6900|10000|8||99.55|88.03|0.00|1.39|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:51.8420000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|90349|57266| +38|2023-10-06T21:59:51.8420000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|45392|57078|3400|10000|42||101.12|92.41|0.00|1.00|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:51.8420000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|57078|57266| +38|2023-10-06T21:59:51.8420000-07:00|10FF0003|Gegehi Gehi|005A5A23|32025|51669|2850|10000|0||96.39|90.15|0.00|1.66|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T21:59:51.8420000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|51669|57266| +38|2023-10-06T21:59:51.8420000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|4470|10000|22||95.06|90.80|0.00|1.43|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:51.8420000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|55446|57266| +38|2023-10-06T21:59:51.8420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||97.46|91.37|0.00|1.49|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:51.8420000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|58451|57266| +261|2023-10-06T21:59:51.6020000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:59:52.0630000-07:00|40021585|Zeromus|00010AC3|20905467||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:52.1540000-07:00|40021585|Zeromus|00010ABB|20903250|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T21:59:52.1540000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|55446| +37|2023-10-06T21:59:52.1540000-07:00|40021585|Zeromus|00010AC4|20900620||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:52.1540000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||102.09|95.64|0.00|1.10| +261|2023-10-06T21:59:51.8110000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:59:51.8110000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:52.2410000-07:00|40021585|Zeromus|00010AC2|20879116||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:51.9260000-07:00|Change|10FF0003||||||||| +261|2023-10-06T21:59:51.9260000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:59:51.9260000-07:00|Change|4002187E||| +21|2023-10-06T21:59:52.2420000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.80|00010AC9|0|0| +37|2023-10-06T21:59:52.3320000-07:00|40021585|Zeromus|00010AC6|20856670||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:52.3320000-07:00|10FF0001|Sesuga Sapisuga|00010AC6|90349|90349|6900|10000|8||101.33|89.50|0.00|1.40|1300|0|0|02|0300076E|03|41F00000|||||| +37|2023-10-06T21:59:52.3320000-07:00|40021585|Zeromus|00010AC5|20835477||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:52.3320000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40021585|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20879116|40478540|10000|10000|||100.00|80.10|0.00|0.00|45392|57078|3400|10000|||103.30|93.86|0.00|0.99|00010ACA|0|1| +38|2023-10-06T21:59:52.3320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6900|10000|8||101.33|89.50|0.00|1.40|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:52.3760000-07:00|40021585|Zeromus|00010AB9|20803571||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:52.3760000-07:00|4002185C|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.24|101.09|0.00|-3.08|0|0|0|||||||||||||||| +30|2023-10-06T21:59:52.3760000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|4002185C|Automaton Queen|01|59967|40478540| +26|2023-10-06T21:59:52.3760000-07:00|A8F|Searing Light|29.47|10FF0006|Wowobora Gogobora|4002185C|Automaton Queen|00|59967|57266| +37|2023-10-06T21:59:52.4650000-07:00|10FF000B|Pusu Rosu|00010AC5|55446|55446|4970|10000|22||96.88|89.67|-0.02|1.85|1801|0|0|0| +261|2023-10-06T21:59:52.1600000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T21:59:52.5550000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|D300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20803571|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||104.64|96.71|0.00|1.17|00010ACB|0|1| +21|2023-10-06T21:59:52.5550000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||101.17|93.66|0.00|1.49|58451|58451|10000|10000|||101.17|93.66|0.00|1.49|00010ACC|0|1| +38|2023-10-06T21:59:52.5550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||101.17|93.66|0.00|1.49|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:52.5550000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|58451|58451| +37|2023-10-06T21:59:52.5990000-07:00|10FF0003|Gegehi Gehi|00010AC5|46536||||||101.19|91.17|0.00|1.36| +38|2023-10-06T21:59:52.5990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|6900|10000|8||102.45|89.91|0.00|1.39|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:52.5990000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +37|2023-10-06T21:59:52.6430000-07:00|10FF0006|Wowobora Gogobora|00010AC8|46872|57266|2200|10000|13||100.08|92.31|0.00|1.04|1B00|0|0|01|03000A8F|0|41E9F1A9|| +21|2023-10-06T21:59:52.6430000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|724003|407D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20803571|40478540|10000|10000|||100.00|80.10|0.00|0.00|46536|51669|2850|10000|||101.98|91.34|0.00|1.36|00010ACD|0|1| +38|2023-10-06T21:59:52.6430000-07:00|4002187E|Demi-Bahamut|005A5A00|48949|48949|10000|10000|0||95.92|91.59|0.00|2.66|0|0|0|||||||||| +26|2023-10-06T21:59:52.6430000-07:00|30|Well Fed|689.99|10FF0006|Wowobora Gogobora|4002187E|Demi-Bahamut|2964|48949|57266| +26|2023-10-06T21:59:52.6430000-07:00|441|HP Penalty|9999.00|E0000000||4002187E|Demi-Bahamut|00|48949|| +26|2023-10-06T21:59:52.6430000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|4002187E|Demi-Bahamut|00|48949|57266| +261|2023-10-06T21:59:52.2790000-07:00|Change|400215A3||||||||| +21|2023-10-06T21:59:52.6870000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.80|00010ACE|0|0| +37|2023-10-06T21:59:52.7320000-07:00|10FF0006|Wowobora Gogobora|00010AC5|57266||||||100.86|92.67|-0.02|1.07| +37|2023-10-06T21:59:52.7760000-07:00|10FF000A|Dukaro Nezikaro|00010AC8|58451|58451|10000|10000|21||102.10|94.47|-0.02|1.49|1E01|0|0|01|09000A8F|0|41E8DF3A|| +261|2023-10-06T21:59:52.4740000-07:00|Change|10FF0006||||||||| +39|2023-10-06T21:59:52.8200000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|7100|10000|||103.76|90.16|0.00|1.38| +21|2023-10-06T21:59:52.8200000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20803571|40478540|10000|10000|||100.00|80.10|0.00|0.00|46872|57266|2200|10000|||100.86|92.67|-0.02|1.07|00010ACF|0|1| +261|2023-10-06T21:59:52.4740000-07:00|Change|10FF0004||||||||| +37|2023-10-06T21:59:52.9100000-07:00|40021585|Zeromus|00010AC1|20789834||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:52.9100000-07:00|10FF000B|Pusu Rosu|00010AC8|55446|55446|4970|10000|22||99.61|90.47|0.00|1.38|1802|0|0|01|05000A8F|0|41E7CED7|| +261|2023-10-06T21:59:52.5710000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T21:59:52.5710000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:52.9990000-07:00|10FF0004|Buhojaqe Zijaqe|00010AC5|57078||||||105.29|94.89|0.00|2.34| +261|2023-10-06T21:59:52.6630000-07:00|Change|10FF0008||||||||| +37|2023-10-06T21:59:53.0440000-07:00|10FF0004|Buhojaqe Zijaqe|00010AC8|57078|57078|3400|10000|42||105.91|95.20|0.00|1.77|1C03|0|0|01|09000A8F|0|41E6BC68|| +21|2023-10-06T21:59:53.0440000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||102.46|94.21|0.00|1.49|58451|58451|10000|10000|||102.46|94.21|0.00|1.49|00010AD0|0|1| +38|2023-10-06T21:59:53.0440000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||95.62|89.87|0.00|0.90|0|0|0||||||||||||| +26|2023-10-06T21:59:53.0440000-07:00|30|Well Fed|1239.29|10FF0004|Buhojaqe Zijaqe|4002185F|Ruby Carbuncle|2968|54201|57078| +26|2023-10-06T21:59:53.0440000-07:00|511|Embolden|7.11|10FF0003|Gegehi Gehi|4002185F|Ruby Carbuncle|00|54201|51669| +26|2023-10-06T21:59:53.0440000-07:00|441|HP Penalty|9999.00|E0000000||4002185F|Ruby Carbuncle|00|54201|| +26|2023-10-06T21:59:53.0440000-07:00|A8F|Searing Light|28.80|10FF0006|Wowobora Gogobora|4002185F|Ruby Carbuncle|00|54201|57266| +38|2023-10-06T21:59:53.0440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||102.46|94.21|0.00|1.49|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:53.0440000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|58451|58451| +24|2023-10-06T21:59:53.0890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|DBC|63151|63151|10000|10000|||108.02|96.90|0.00|1.49|10FF0006|Wowobora Gogobora|0|57266|57266|2200|10000|||103.04|92.93|0.00|1.36| +24|2023-10-06T21:59:53.0890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|D67|57078|57078|3400|10000|||105.91|95.20|0.00|1.77|E0000000||0||||||||||| +38|2023-10-06T21:59:53.0890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||108.02|96.90|0.00|1.49|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:59:53.0890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3400|10000|42||105.91|95.20|0.00|1.77|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:52.6630000-07:00|Change|4002185F||||||||| +37|2023-10-06T21:59:53.1340000-07:00|40021585|Zeromus|00010ACA|20789834|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004C5|0|41700000|| +26|2023-10-06T21:59:53.1340000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|57078| +21|2023-10-06T21:59:53.1340000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.92|00010AD1|0|0| +37|2023-10-06T21:59:53.1790000-07:00|10FF0001|Sesuga Sapisuga|00010AC8|90349|90349|7100|10000|8||106.17|90.88|0.00|1.25|1304|0|0|01|08000A8F|0|41E5A9F9|| +39|2023-10-06T21:59:53.1790000-07:00|10FF0006|Wowobora Gogobora|57266|57266|2400|10000|||103.70|93.05|0.00|1.34| +24|2023-10-06T21:59:53.1790000-07:00|10FF0006|Wowobora Gogobora|HoT|0|D2F|57266|57266|2200|10000|||103.70|93.05|0.00|1.34|E0000000||0||||||||||| +38|2023-10-06T21:59:53.1790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|2400|10000|13||103.70|93.05|0.00|1.34|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:59:52.8910000-07:00|Change|4002187D||| +261|2023-10-06T21:59:52.8910000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:59:52.8910000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:59:52.8910000-07:00|Change|4002187E||||||||||| +37|2023-10-06T21:59:53.3120000-07:00|40021585|Zeromus|00010ACB|20786458||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:53.3120000-07:00|10FF0003|Gegehi Gehi|00010AC8|46536|51669|2850|10000|0||107.06|92.63|-0.02|1.72|2305|0|0|01|05000A8F|0|41E49997|| +21|2023-10-06T21:59:53.3120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20789834|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7100|10000|||106.84|91.10|0.00|1.25|00010AD2|0|1| +31|2023-10-06T21:59:53.3120000-07:00|10FF0001||||| +37|2023-10-06T21:59:53.3550000-07:00|40021585|Zeromus|00010ACF|20786307||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:53.3560000-07:00|10FF000B|Pusu Rosu|55446|55446|5251|10000|||102.90|91.62|0.00|1.23| +39|2023-10-06T21:59:53.3560000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||105.03|94.34|0.00|1.49| +21|2023-10-06T21:59:53.3560000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|754003|26B20000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|20786307|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3400|10000|||107.89|95.79|0.00|1.44|00010AD3|0|1| +39|2023-10-06T21:59:53.4000000-07:00|4002185C|Automaton Queen|59967|59967|10000|10000|||101.24|101.09|0.00|-3.08| +261|2023-10-06T21:59:53.0090000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:53.4450000-07:00|10FF0008|Kokosaze Lulusaze|00010AC8|63151|63151|10000|10000|12||109.96|96.80|0.00|1.58|1F06|0|0|01|06000A8F|0|41E38728|| +24|2023-10-06T21:59:53.4450000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|E1A|58451|58451|10000|10000|||105.03|94.34|0.00|1.49|10FF000A|Dukaro Nezikaro|0|58451|58451|10000|10000|||105.03|94.34|0.00|1.49| +21|2023-10-06T21:59:53.4460000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|14330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20786307|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||109.47|96.06|0.00|1.65|00010AD4|0|1| +38|2023-10-06T21:59:53.4460000-07:00|4002185C|Automaton Queen|005A5A00|59967|59967|10000|10000|0||101.24|101.09|0.00|-3.08|0|0|0|||||||||||||||| +38|2023-10-06T21:59:53.4460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||105.03|94.34|0.00|1.49|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T21:59:53.4900000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||110.17|95.90|-0.02|1.97| +24|2023-10-06T21:59:53.4900000-07:00|10FF000B|Pusu Rosu|HoT|0|DE0|55446|55446|5251|10000|||103.55|91.66|0.00|1.24|10FF0003|Gegehi Gehi|0|46536|51669|2850|10000|||107.74|93.29|0.00|1.55| +38|2023-10-06T21:59:53.4900000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5801|10000|22||103.55|91.66|0.00|1.24|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:53.5340000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20786307|40478540|10000|10000|||100.00|80.10|0.00|0.00|46536|51669|2850|10000|||107.74|93.29|0.00|1.55|00010AD5|0|1| +261|2023-10-06T21:59:53.2430000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:59:53.5800000-07:00|10FF0007|Kehabiqo Febiqo|00010AC8|90890|90890|10000|10000|21||110.85|95.62|0.00|1.97|1507|0|0|01|02000A8F|0|41E274B9|| +21|2023-10-06T21:59:53.5800000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.17|00010AD6|0|0| +24|2023-10-06T21:59:53.5800000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|E44|90890|90890|10000|10000|||110.85|95.62|0.00|1.97|10FF0007|Kehabiqo Febiqo|0|90890|90890|10000|10000|||110.85|95.62|0.00|1.97| +21|2023-10-06T21:59:53.5800000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|254003|332D4001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20786307|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||106.56|94.45|0.00|1.49|00010AD7|0|1| +38|2023-10-06T21:59:53.5800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|21||110.85|95.62|0.00|1.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:53.5800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||106.56|94.45|0.00|1.49|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:53.5800000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +30|2023-10-06T21:59:53.5800000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|58451|58451| +261|2023-10-06T21:59:53.2430000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T21:59:53.6690000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D64|90349|90349|7100|10000|||108.72|91.51|0.00|1.49|10FF000B|Pusu Rosu|0|55446|55446|5801|10000|||104.23|91.70|0.00|1.24| +21|2023-10-06T21:59:53.6690000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|36D20000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|20786307|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|2400|10000|||106.49|92.71|0.00|1.64|00010AD8|0|1| +38|2023-10-06T21:59:53.6690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7100|10000|8||108.72|91.51|0.00|1.49|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T21:59:53.7570000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||98.79|91.81|0.00|1.16| +261|2023-10-06T21:59:53.4400000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:59:53.8020000-07:00|40021585|Zeromus|00010ACD|20769798||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:53.8020000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|B060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20786307|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||107.45|94.80|0.00|-2.64|00010AD9|0|1| +38|2023-10-06T21:59:53.8020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|8||112.04|95.13|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:53.8020000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +37|2023-10-06T21:59:53.8470000-07:00|40021585|Zeromus|00010AD2|20767755||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:53.8470000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|810E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20786307|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||112.04|95.13|0.00|1.97|00010ADA|0|1| +261|2023-10-06T21:59:53.5360000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:59:53.9360000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|21F70000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|20767755|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||113.01|95.95|0.00|1.85|00010ADB|0|1| +261|2023-10-06T21:59:53.6350000-07:00|Change|4002185F||||||||| +37|2023-10-06T21:59:53.9810000-07:00|40021585|Zeromus|00010AD4|20762584||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:53.9810000-07:00|10FF0003|Gegehi Gehi|47052|51669|3050|10000|||108.34|93.55|0.00|1.39| +261|2023-10-06T21:59:53.6350000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T21:59:54.0250000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.29|00010ADC|0|0| +261|2023-10-06T21:59:53.7530000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T21:59:54.0700000-07:00|40021585|Zeromus|00010AD5|20762583||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:54.1150000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|3200|10000|||112.88|95.61|0.00|1.77| +37|2023-10-06T21:59:54.2070000-07:00|40021585|Zeromus|00010AD7|20683946||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:54.2070000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|49990000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20762584|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7100|10000|||111.95|91.29|0.00|1.74|00010ADD|0|1| +38|2023-10-06T21:59:54.2070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7100|10000|8||111.95|91.29|0.00|1.74|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:54.2070000-07:00|76E|Sword Oath|28.08|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +261|2023-10-06T21:59:53.9800000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:54.2950000-07:00|40021585|Zeromus|00010AD8|20669912||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:54.2950000-07:00|40021585|Zeromus|00010AD3|20660006||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:53.9800000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T21:59:54.3390000-07:00|40021585|Zeromus|00010AD9|20657184||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:54.3390000-07:00|4002187E|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|752003|20990000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|20660006|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||95.90|91.57|0.00|2.80|00010ADE|0|1| +261|2023-10-06T21:59:54.1030000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T21:59:54.4730000-07:00|40021585|Zeromus|00010ADA|20624146||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:54.4730000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.41|00010ADF|0|0| +261|2023-10-06T21:59:54.2130000-07:00|Change|10FF0007||||||||| +261|2023-10-06T21:59:54.3100000-07:00|Change|10FF0001||||||||| +24|2023-10-06T21:59:54.6520000-07:00|40021585|Zeromus|DoT|0|127C|20624146|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|3200|10000|||115.89|94.96|0.00|1.82| +36|2023-10-06T21:59:54.6520000-07:00|59EC|3| +38|2023-10-06T21:59:54.6520000-07:00|40021585|Zeromus|005A5A00|20619414|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:59:54.6520000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T21:59:54.6970000-07:00|40021585|Zeromus|00010ADB|20610719||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:54.4080000-07:00|Change|10FF0003||||||||| +21|2023-10-06T21:59:54.7860000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|712003|1EF80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20610719|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||114.82|92.72|0.00|2.75|00010AE0|0|1| +261|2023-10-06T21:59:54.4990000-07:00|Change|4002185F||||||||| +04|2023-10-06T21:59:54.5990000-07:00|4002187D|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||94.27|86.72|0.00|-1.88| +261|2023-10-06T21:59:54.5990000-07:00|Remove|4002187D| +21|2023-10-06T21:59:54.9190000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.41|00010AE1|0|0| +261|2023-10-06T21:59:54.5990000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:59:54.5990000-07:00|Change|10FF000B||||||||| +261|2023-10-06T21:59:54.7180000-07:00|Change|10FF0008||||||||| +39|2023-10-06T21:59:55.1430000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||117.07|92.30|0.00|2.46| +21|2023-10-06T21:59:55.1430000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20610719|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3200|10000|||116.92|94.10|0.00|2.15|00010AE2|0|1| +261|2023-10-06T21:59:54.8300000-07:00|Change|10FF0006||||||||| +21|2023-10-06T21:59:55.2320000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|14ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20610719|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||117.56|91.63|0.00|2.49|00010AE3|0|1| +38|2023-10-06T21:59:55.2760000-07:00|10FF0003|Gegehi Gehi|005A5A23|47052|51669|3050|10000|0||115.45|92.66|0.00|2.35|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:59:55.2760000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|51669|51669| +37|2023-10-06T21:59:55.3650000-07:00|40021585|Zeromus|00010ADE|20602374||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:55.3650000-07:00|400215A3|Zeromus|8BB2|Fractured Eventide|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.54|00010AE4|0|0| +37|2023-10-06T21:59:55.4100000-07:00|40021585|Zeromus|00010AE0|20594446||||||100.00|80.10|0.00|0.00| +38|2023-10-06T21:59:55.4530000-07:00|4002185C|Automaton Queen|005A5A00|0|59967|0|10000|0||101.24|101.09|0.00|-3.08|0|0|0||||||| +30|2023-10-06T21:59:55.4530000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002185C|Automaton Queen|00|59967|51669| +30|2023-10-06T21:59:55.4530000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002185C|Automaton Queen|00|59967|57266| +261|2023-10-06T21:59:55.0610000-07:00|Change|4002185C||||||||| +37|2023-10-06T21:59:55.4980000-07:00|40021585|Zeromus|00010ADD|20575605||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:55.4980000-07:00|10FF0001|Sesuga Sapisuga|00010ADD|90349|90349|7500|10000|8||117.95|87.08|0.00|2.93|1300|0|0|0| +261|2023-10-06T21:59:55.2870000-07:00|Change|10FF0004||||||||| +21|2023-10-06T21:59:55.5880000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20575605|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7500|10000|||117.98|86.94|0.00|2.95|00010AE5|0|1| +31|2023-10-06T21:59:55.5880000-07:00|10FF0001||||| +261|2023-10-06T21:59:55.3790000-07:00|Change|10FF0001||||||||| +261|2023-10-06T21:59:55.3790000-07:00|Change|10FF000A||||||||| +261|2023-10-06T21:59:55.3790000-07:00|Change|4002185F||||||||| +37|2023-10-06T21:59:55.6780000-07:00|40021585|Zeromus|00010AE2|20575525||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:55.4790000-07:00|Change|10FF0007||||||||| +39|2023-10-06T21:59:55.8120000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|7700|10000|||118.01|85.92|0.00|3.13| +20|2023-10-06T21:59:55.8570000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|117.02|89.78|-0.02|2.22| +21|2023-10-06T21:59:55.8570000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||117.33|90.18|0.00|-3.06|58451|58451|10000|10000|||117.33|90.18|0.00|-3.06|00010AE6|0|1| +38|2023-10-06T21:59:55.8570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||117.33|90.18|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:55.8570000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +261|2023-10-06T21:59:55.6070000-07:00|Change|10FF000B||||||||||||||||||||| +38|2023-10-06T21:59:55.9020000-07:00|10FF0003|Gegehi Gehi|005A5A23|47052|51669|3050|10000|0||116.24|90.92|0.00|2.69|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:59:55.9020000-07:00|32|Sprint|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|1E|51669|51669| +21|2023-10-06T21:59:55.9460000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|5F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20575525|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|2100|10000|||118.02|87.27|0.00|2.52|00010AE7|0|1| +37|2023-10-06T21:59:55.9920000-07:00|40021585|Zeromus|00010AE3|20570168||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:55.9920000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|11C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20575525|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||117.29|89.86|-0.01|-2.96|00010AE8|0|1| +24|2023-10-06T21:59:56.0800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1590|63151|63151|10000|10000|||118.51|88.44|0.00|3.06|10FF0006|Wowobora Gogobora|0|57266|57266|2100|10000|||118.10|87.10|0.00|2.39| +24|2023-10-06T21:59:56.0800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|DD0|57078|57078|3200|10000|||118.34|87.86|0.00|3.03|E0000000||0||||||||||| +38|2023-10-06T21:59:56.0800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||118.51|88.44|0.00|3.06|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:59:56.0800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3200|10000|42||118.34|87.86|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:55.8340000-07:00|Change|10FF0003||||||||| +37|2023-10-06T21:59:56.1240000-07:00|40021585|Zeromus|00010AE5|20568142||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:56.1700000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1568|57266|57266|2100|10000|||118.17|86.96|0.00|2.39|E0000000||0||||||||||| +21|2023-10-06T21:59:56.1700000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|754003|499D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|20570168|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|2100|10000|||118.17|86.96|0.00|2.39|00010AE9|0|1| +20|2023-10-06T21:59:56.1700000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|116.55|89.18|0.00|2.96| +38|2023-10-06T21:59:56.1700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1800|10000|13||118.17|86.96|0.00|2.39|0|0|0||||||||||||||||||||||||| +261|2023-10-06T21:59:55.8340000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T21:59:56.2140000-07:00|10FF0006|Wowobora Gogobora|57266|57266|2000|10000|||118.17|86.96|0.00|2.39| +21|2023-10-06T21:59:56.3030000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|2AF70000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|20568142|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||118.08|86.25|0.00|2.99|00010AEA|0|1| +39|2023-10-06T21:59:56.3480000-07:00|10FF000B|Pusu Rosu|55446|55446|6082|10000|||117.88|90.17|0.00|-2.08| +39|2023-10-06T21:59:56.3480000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||117.20|89.19|0.00|-2.96| +20|2023-10-06T21:59:56.3480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|118.45|86.97|0.00|3.02| +21|2023-10-06T21:59:56.3480000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||117.20|89.19|0.00|-2.96|58451|58451|10000|10000|||117.20|89.19|0.00|-2.96|00010AEB|0|1| +38|2023-10-06T21:59:56.3480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||117.20|89.19|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:56.3480000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|58451|58451| +261|2023-10-06T21:59:56.0620000-07:00|Change|10FF0008||||||||| +21|2023-10-06T21:59:56.3940000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|36C90000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|20568142|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||118.58|87.65|0.00|3.08|00010AEC|0|1| +24|2023-10-06T21:59:56.4380000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|D16|58451|58451|10000|10000|||117.20|89.19|-0.02|-2.96|10FF0006|Wowobora Gogobora|0|57266|57266|2000|10000|||118.19|86.88|0.00|-2.55| +38|2023-10-06T21:59:56.4380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||117.20|89.19|-0.02|-2.96|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T21:59:56.4830000-07:00|40021585|Zeromus|00010AE7|20568047||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:56.4830000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||118.11|85.79|0.00|-2.03| +24|2023-10-06T21:59:56.4830000-07:00|10FF000B|Pusu Rosu|HoT|0|E12|55446|55446|6082|10000|||118.04|90.25|0.00|-2.08|10FF0003|Gegehi Gehi|0|47052|51669|3050|10000|||116.72|88.32|0.00|-2.69| +38|2023-10-06T21:59:56.4830000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|6632|10000|22||118.04|90.25|0.00|-2.08|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:56.1820000-07:00|Change|10FF0007||||||||| +37|2023-10-06T21:59:56.5280000-07:00|40021585|Zeromus|00010AE8|20563496||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:56.2870000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T21:59:56.2870000-07:00|Change|4002185F||||||||| +23|2023-10-06T21:59:56.5720000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +24|2023-10-06T21:59:56.5720000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D84|90890|90890|10000|10000|||118.11|85.10|0.00|-2.35|400215A3|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|1.66| +38|2023-10-06T21:59:56.5720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|8||118.11|85.10|0.00|-2.35|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T21:59:56.6610000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|D38|90349|90349|7700|10000|||117.95|83.46|0.00|-1.76|10FF000B|Pusu Rosu|0|55446|55446|6632|10000|||118.06|90.26|0.00|-2.08| +21|2023-10-06T21:59:56.6610000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2CFE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20563496|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7700|10000|||117.95|83.46|0.00|-1.76|00010AED|0|1| +38|2023-10-06T21:59:56.6610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7700|10000|8||117.95|83.46|0.00|-1.76|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:56.6610000-07:00|76E|Sword Oath|25.62|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +261|2023-10-06T21:59:56.3800000-07:00|Change|10FF0001||||||||| +39|2023-10-06T21:59:56.7510000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||115.74|91.20|0.00|2.36| +37|2023-10-06T21:59:56.7960000-07:00|40021585|Zeromus|00010AE9|20544651||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:56.7960000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|2B500000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|20563496|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|6632|10000|||118.06|90.26|0.00|-2.08|00010AEE|0|1| +37|2023-10-06T21:59:56.8400000-07:00|40021585|Zeromus|00010AEA|20533652||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:56.8400000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|15160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20544651|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||118.12|84.08|0.00|-2.88|00010AEF|0|1| +21|2023-10-06T21:59:56.8400000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|556003|BD1A0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|20544651|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||117.21|88.27|0.00|-2.96|00010AF0|0|1| +38|2023-10-06T21:59:56.8400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||117.21|88.27|0.00|-2.96|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:56.8400000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|58451|58451| +26|2023-10-06T21:59:56.8400000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +261|2023-10-06T21:59:56.6320000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T21:59:56.9740000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|153B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|47052|51669|3050|10000|||117.14|86.79|0.00|-2.75|54201|54201|10000|10000|||116.31|89.73|0.00|2.63|00010AF1|0|1| +39|2023-10-06T21:59:56.9740000-07:00|10FF0003|Gegehi Gehi|47568|51669|3250|10000|||117.14|86.79|0.00|-2.75| +39|2023-10-06T21:59:57.1090000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|3400|10000|||118.55|85.86|0.00|-1.87| +20|2023-10-06T21:59:57.1090000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|117.49|85.98|0.00|-2.82| +261|2023-10-06T21:59:56.7430000-07:00|Change|10FF0008||||||||| +261|2023-10-06T21:59:56.8640000-07:00|Change|10FF000A||||||||| +37|2023-10-06T21:59:57.1990000-07:00|40021585|Zeromus|00010AEC|20519627||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:57.1990000-07:00|4002187E|Demi-Bahamut|48949|48949|10000|10000|||95.90|91.57|0.00|2.80| +261|2023-10-06T21:59:56.8640000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T21:59:56.9790000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T21:59:57.2870000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|275E0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|20533652|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3400|10000|||118.55|85.86|0.00|-1.87|00010AF2|0|1| +37|2023-10-06T21:59:57.3780000-07:00|40021585|Zeromus|00010AEF|20514229||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:57.5110000-07:00|4002187E|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|15410000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|20514229|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||95.90|91.57|0.00|2.80|00010AF3|0|1| +37|2023-10-06T21:59:57.5560000-07:00|40021585|Zeromus|00010AF0|20465819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:57.5560000-07:00|10FF000A|Dukaro Nezikaro|00010AF0|58451|58451|10000|10000|21||117.69|85.60|0.00|-2.83|1E00|0|0|01|08000A82|01|41F00000|| +38|2023-10-06T21:59:57.5560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||117.69|85.60|0.00|-2.83|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:57.3040000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T21:59:57.6460000-07:00|40021585|Zeromus|DoT|0|124E|20465819|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|3000|10000|||118.55|85.86|-0.02|-1.97| +36|2023-10-06T21:59:57.6460000-07:00|5AC8|3| +38|2023-10-06T21:59:57.6460000-07:00|40021585|Zeromus|005A5A00|20461133|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T21:59:57.6460000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T21:59:57.7790000-07:00|10FF0003|Gegehi Gehi|00010AF1|51669||||||117.60|85.13|0.00|-1.85| +21|2023-10-06T21:59:57.7790000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|752003|4CCA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20461133|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||117.76|85.52|0.00|-2.90|00010AF4|0|1| +21|2023-10-06T21:59:57.8690000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|CB10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20461133|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7700|10000|||118.03|83.02|0.00|-2.09|00010AF5|0|1| +31|2023-10-06T21:59:57.8690000-07:00|10FF0001||||| +21|2023-10-06T21:59:57.9130000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|C960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20461133|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||118.55|81.47|0.00|-3.06|00010AF6|0|1| +37|2023-10-06T21:59:57.9580000-07:00|40021585|Zeromus|00010AED|20449615||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:57.9580000-07:00|10FF0001|Sesuga Sapisuga|00010AED|90349|90349|8100|10000|8||118.03|83.02|0.00|-2.09|1300|0|0|0| +21|2023-10-06T21:59:57.9580000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|3000|10000|||118.56|85.64|-0.02|3.03|57078|57078|3000|10000|||118.56|85.64|-0.02|3.03|00010AF7|0|1| +261|2023-10-06T21:59:57.6780000-07:00|Change|10FF0001||||||||| +37|2023-10-06T21:59:58.0910000-07:00|40021585|Zeromus|00010AF2|20439537||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:58.0910000-07:00|40021585|Zeromus|00010AEE|20428449||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:58.1350000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||118.55|81.47|0.00|-3.06| +21|2023-10-06T21:59:58.1800000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|11EC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20449615|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||117.85|84.63|0.00|-2.52|00010AF8|0|1| +38|2023-10-06T21:59:58.2690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3000|10000|21||118.48|83.75|0.00|-2.85|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:58.2690000-07:00|4C2|Divine Benison|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +20|2023-10-06T21:59:58.3590000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|118.00|85.78|0.00|3.12| +37|2023-10-06T21:59:58.4030000-07:00|40021585|Zeromus|00010AF5|20425200||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:58.4030000-07:00|40021585|Zeromus|00010AF4|20405542||||||100.00|80.10|0.00|0.00| +261|2023-10-06T21:59:58.1370000-07:00|Change|10FF000B||||||||||||||||||| +261|2023-10-06T21:59:58.2540000-07:00|Change|4002185F||||||||| +37|2023-10-06T21:59:58.5370000-07:00|40021585|Zeromus|00010AF3|20400101||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:58.5370000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|750003|24030000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|20405542|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3250|10000|||117.60|85.13|0.00|-1.85|00010AF9|0|1| +38|2023-10-06T21:59:58.5370000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3050|10000|0||117.60|85.13|0.00|-1.85|0|0|0|||||||||||||||||||||| +26|2023-10-06T21:59:58.5370000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:59:58.2540000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T21:59:58.5810000-07:00|10FF0004|Buhojaqe Zijaqe|00010AF7|57078|57078|3000|10000|21||118.44|83.66|0.00|-2.61|1C00|0|0|01|070004B4|0|41A80000|| +26|2023-10-06T21:59:58.5810000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +21|2023-10-06T21:59:58.6270000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|752003|5E5B0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|20400101|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|2000|10000|||118.39|83.45|0.00|2.97|00010AFA|0|1| +21|2023-10-06T21:59:58.6270000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|550003|52940000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|20400101|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||117.91|84.40|0.00|-1.74|00010AFB|0|1| +38|2023-10-06T21:59:58.6270000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||117.91|84.40|0.00|-1.74|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:58.6270000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +261|2023-10-06T21:59:58.3490000-07:00|Change|10FF0006||||||||| +37|2023-10-06T21:59:58.6700000-07:00|40021585|Zeromus|00010AF6|20396879||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:58.7150000-07:00|40021585|Zeromus|00010AF8|20392291||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:58.7160000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32714003|2E260000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|20396879|40478540|10000|10000|||100.00|80.10|0.00|0.00|90890|90890|10000|10000|||118.12|83.15|0.00|-1.60|00010AFC|0|1| +20|2023-10-06T21:59:58.7160000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|118.42|83.63|0.00|-2.52| +38|2023-10-06T21:59:58.7590000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|6232|10000|22||118.00|85.80|0.00|-2.37|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:58.7590000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +261|2023-10-06T21:59:58.4430000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T21:59:58.8040000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8300|10000|||118.03|83.02|0.00|-2.09| +21|2023-10-06T21:59:58.8490000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20392291|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3050|10000|||117.60|85.13|0.00|-1.85|00010AFD|0|1| +21|2023-10-06T21:59:58.8940000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44724003|52FF0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|20392291|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||118.55|81.47|0.00|-3.06|00010AFE|0|1| +21|2023-10-06T21:59:58.9390000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|53DF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90890|90890|10000|10000|||118.12|83.15|0.00|-1.74|20392291|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010AFF|0|1| +261|2023-10-06T21:59:58.6260000-07:00|Change|10FF0001||| +24|2023-10-06T21:59:59.0730000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|D6A|63151|63151|10000|10000|||118.55|81.47|0.00|-1.64|10FF0006|Wowobora Gogobora|0|57266|57266|1700|10000|||118.39|83.45|0.00|-1.75| +24|2023-10-06T21:59:59.0730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|DCE|57078|57078|3000|10000|||118.39|83.59|0.00|-2.02|E0000000||0||||||||||| +21|2023-10-06T21:59:59.0730000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20392291|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1700|10000|||118.39|83.45|0.00|-1.75|00010B00|0|1| +38|2023-10-06T21:59:59.0730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||118.55|81.47|0.00|-1.64|0|0|0|||||||||||||||||||||| +38|2023-10-06T21:59:59.0730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3550|10000|21||118.39|83.59|0.00|-2.02|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T21:59:59.1170000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|4B490000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|20392291|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8300|10000|||118.03|83.02|0.00|-1.73|00010B01|0|1| +38|2023-10-06T21:59:59.1170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8300|10000|8||118.03|83.02|0.00|-1.73|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:59.1170000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +24|2023-10-06T21:59:59.1610000-07:00|10FF0006|Wowobora Gogobora|HoT|0|E4D|57266|57266|1700|10000|||118.39|83.45|0.00|-1.75|E0000000||0||||||||||| +38|2023-10-06T21:59:59.1610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1700|10000|13||118.39|83.45|0.00|-1.75|0|0|0||||||||||||||||||||||||| +39|2023-10-06T21:59:59.2060000-07:00|10FF0006|Wowobora Gogobora|57266|57266|1900|10000|||118.39|83.45|0.00|-1.75| +37|2023-10-06T21:59:59.2510000-07:00|40021585|Zeromus|00010AFA|20368136||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:59.2950000-07:00|40021585|Zeromus|00010AF9|20358917||||||100.00|80.10|0.00|0.00| +21|2023-10-06T21:59:59.2950000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|35D50000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|20392291|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|6232|10000|||118.00|85.80|0.00|-1.88|00010B02|0|1| +04|2023-10-06T21:59:59.0670000-07:00|4002185C|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|59967|0|10000|||101.24|101.09|0.00|-3.08| +261|2023-10-06T21:59:59.0670000-07:00|Remove|4002185C| +37|2023-10-06T21:59:59.3390000-07:00|40021585|Zeromus|00010AFC|20347103||||||100.00|80.10|0.00|0.00| +39|2023-10-06T21:59:59.3390000-07:00|10FF000B|Pusu Rosu|55446|55446|6113|10000|||118.00|85.80|0.00|-1.88| +39|2023-10-06T21:59:59.3390000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||118.00|84.73|0.00|-1.82| +37|2023-10-06T21:59:59.3830000-07:00|40021585|Zeromus|00010AFD|20347102||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:59.3830000-07:00|40021585|Zeromus|00010AFB|20325962||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:59.4280000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|DF3|58451|58451|10000|10000|||118.00|84.73|0.00|-1.82|10FF0006|Wowobora Gogobora|0|57266|57266|1900|10000|||118.39|83.45|0.00|-1.75| +21|2023-10-06T21:59:59.4280000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||118.00|84.73|0.00|-1.82|58451|58451|10000|10000|||118.00|84.73|0.00|-1.82|00010B03|0|1| +38|2023-10-06T21:59:59.4280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T21:59:59.4280000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +39|2023-10-06T21:59:59.4720000-07:00|10FF0007|Kehabiqo Febiqo|90890|90890|10000|10000|||118.12|83.15|0.00|-1.74| +24|2023-10-06T21:59:59.4720000-07:00|10FF000B|Pusu Rosu|HoT|0|DEC|55446|55446|6113|10000|||118.00|85.80|0.00|-1.88|10FF0003|Gegehi Gehi|0|51669|51669|3050|10000|||117.59|85.14|0.00|-1.77| +38|2023-10-06T21:59:59.4720000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|6113|10000|22||118.00|85.80|0.00|-1.88|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:59.1770000-07:00|Change|10FF000B||||||||||||||||||| +24|2023-10-06T21:59:59.5620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|D35|90890|90890|10000|10000|||118.12|83.15|0.00|-1.74|400215A3|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|1.66| +21|2023-10-06T21:59:59.5620000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|356003|59AA0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|20325962|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3050|10000|||117.59|85.14|0.00|-1.77|00010B04|0|1| +38|2023-10-06T21:59:59.5620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90890|90890|10000|10000|8||118.12|83.15|0.00|-1.74|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:59.5620000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2750|10000|0||117.59|85.14|0.00|-1.77|0|0|0|||||||||||||||||||||| +30|2023-10-06T21:59:59.5620000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:59:59.2930000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T21:59:59.6060000-07:00|40021585|Zeromus|00010B00|20325889||||||100.00|80.10|0.00|0.00| +24|2023-10-06T21:59:59.6500000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|14C9|90349|90349|8300|10000|||118.03|83.02|0.00|-1.73|10FF000B|Pusu Rosu|0|55446|55446|6113|10000|||118.00|85.80|0.00|-1.88| +21|2023-10-06T21:59:59.6500000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|27AD0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|20325962|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3550|10000|||118.39|83.57|0.00|-1.76|00010B05|0|1| +38|2023-10-06T21:59:59.6500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8300|10000|8||118.03|83.02|0.00|-1.73|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T21:59:59.3830000-07:00|Change|10FF0006||| +37|2023-10-06T21:59:59.6950000-07:00|40021585|Zeromus|00010AFE|20304642||||||100.00|80.10|0.00|0.00| +37|2023-10-06T21:59:59.7410000-07:00|10FF0007|Kehabiqo Febiqo|00010AFF|69419|90890|10000|10000|0||118.12|83.15|0.00|-1.74|1500|0|0|01|01000000|0|0|| +39|2023-10-06T21:59:59.7410000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||118.34|85.52|0.00|-2.06| +38|2023-10-06T21:59:59.7410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1900|10000|13||118.39|83.45|0.00|-1.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:59.7410000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|57266|57266| +21|2023-10-06T21:59:59.7410000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|754003|21260000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|20325889|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1900|10000|||118.39|83.45|0.00|-1.75|00010B06|0|1| +38|2023-10-06T21:59:59.7410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69419|90890|10000|10000|0||118.12|83.15|0.00|-1.74|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T21:59:59.7410000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T21:59:59.7410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1900|10000|13||118.39|83.45|0.00|-1.75|0|0|0||||||||||||||||||||||||| +26|2023-10-06T21:59:59.7410000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T21:59:59.7840000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2750|10000|0||117.51|85.18|0.00|-1.86|0|0|0||||||||||||||||||| +30|2023-10-06T21:59:59.7840000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T21:59:59.4730000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T21:59:59.8290000-07:00|10FF000A|Dukaro Nezikaro|00010B03|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|1E00|0|0|01|080004A2|0|40C00000|| +38|2023-10-06T21:59:59.8290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T21:59:59.9190000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|6113|10000|22||118.00|85.80|0.00|-1.88|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T21:59:59.9190000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|55446|51669| +39|2023-10-06T21:59:59.9630000-07:00|10FF0003|Gegehi Gehi|51669|51669|2950|10000|||117.16|85.42|0.00|-1.57| +38|2023-10-06T22:00:00.0520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||118.55|81.47|0.00|-1.64|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:00.0520000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|63151|51669| +39|2023-10-06T22:00:00.0970000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|3350|10000|||118.39|83.57|0.00|-1.76| +21|2023-10-06T22:00:00.1420000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20304642|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8300|10000|||118.03|83.02|0.00|-1.73|00010B07|0|1| +31|2023-10-06T22:00:00.1420000-07:00|10FF0001||||| +39|2023-10-06T22:00:00.1860000-07:00|4002187E|Demi-Bahamut|48949|48949|10000|10000|||95.90|91.57|0.00|2.80| +38|2023-10-06T22:00:00.1870000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|54201|10000|10000|0||118.36|85.50|0.00|-1.86|0|0|0||||||||||||| +30|2023-10-06T22:00:00.1870000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002185F|Ruby Carbuncle|00|54201|51669| +38|2023-10-06T22:00:00.1870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3350|10000|21||118.39|83.57|0.00|-1.76|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:00.1870000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|57078|51669| +21|2023-10-06T22:00:00.2320000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20304642|40478540|10000|10000|||100.00|80.10|0.00|0.00|69419|90890|10000|10000|||118.12|83.15|0.00|-1.74|00010B08|0|1| +21|2023-10-06T22:00:00.2320000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20304642|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3350|10000|||118.39|83.57|0.00|-1.74|00010B09|0|1| +37|2023-10-06T22:00:00.3210000-07:00|40021585|Zeromus|00010B04|20281688||||||100.00|80.10|0.00|0.00| +26|2023-10-06T22:00:00.3210000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|57078|57078| +21|2023-10-06T22:00:00.3210000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|DBC0000|104|5228000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|20304642|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3350|10000|||118.39|83.57|0.00|-1.62|00010B0A|0|1| +38|2023-10-06T22:00:00.3210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:00.3210000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|58451|51669| +37|2023-10-06T22:00:00.4110000-07:00|40021585|Zeromus|00010B01|20262415||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:00.4110000-07:00|10FF0001|Sesuga Sapisuga|00010B01|90349|90349|8700|10000|8||118.03|83.02|0.00|-1.73|1300|0|0|0| +261|2023-10-06T22:00:00.1340000-07:00|Change|10FF0001||||| +37|2023-10-06T22:00:00.4550000-07:00|40021585|Zeromus|00010B05|20252258||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:00.4550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|69419|90890|10000|10000|0||118.10|83.15|0.00|-1.66|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:00.4550000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|90890|51669| +21|2023-10-06T22:00:00.4990000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|221D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|69419|90890|10000|10000|||118.10|83.15|0.00|-1.66|54201|54201|10000|10000|||118.36|85.50|0.00|-1.95|00010B0B|0|1| +37|2023-10-06T22:00:00.5890000-07:00|40021585|Zeromus|00010B02|20238477||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:00.5890000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EF30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20252258|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||118.55|81.47|0.00|-1.64|00010B0C|0|1| +38|2023-10-06T22:00:00.5890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8700|10000|8||118.03|83.02|0.00|-1.73|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:00.5890000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|90349|51669| +261|2023-10-06T22:00:00.3520000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:00:00.6790000-07:00|40021585|Zeromus|00010B07|20236482||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:00.6790000-07:00|4002187E|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|141E0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|20238477|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||95.90|91.57|0.00|2.80|00010B0D|0|1| +24|2023-10-06T22:00:00.6790000-07:00|40021585|Zeromus|DoT|0|1477|20238477|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|3350|10000|||117.72|84.11|0.00|-1.50| +36|2023-10-06T22:00:00.6790000-07:00|5BA4|3| +38|2023-10-06T22:00:00.6790000-07:00|40021585|Zeromus|005A5A00|20231243|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:00.6790000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T22:00:00.7670000-07:00|40021585|Zeromus|00010B08|20227913||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:00.7670000-07:00|40021585|Zeromus|00010B06|20219427||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:00.7670000-07:00|10FF0006|Wowobora Gogobora|00010B06|57266|57266|1900|10000|13||118.26|84.51|0.00|-0.81|1B00|0|0|01|06000A8D|0|42700000|| +37|2023-10-06T22:00:00.7670000-07:00|40021585|Zeromus|00010B09|20219309||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:00.7670000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40021585|Zeromus|712003|65970000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|20231243|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||118.00|84.73|0.00|-1.82|00010B0E|0|1| +38|2023-10-06T22:00:00.7670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1900|10000|13||118.26|84.51|0.00|-0.81|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:00:00.7670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:00.7670000-07:00|4A2|Ten Chi Jin|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +261|2023-10-06T22:00:00.5440000-07:00|Change|10FF0004||||||||||| +20|2023-10-06T22:00:00.8110000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|116.43|86.19|0.00|-0.87| +261|2023-10-06T22:00:00.5440000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T22:00:01.0780000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|752003|5F320000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|20219309|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1900|10000|||118.10|85.85|0.00|-0.36|00010B0F|0|1| +261|2023-10-06T22:00:00.7270000-07:00|Change|10FF0006||||||||||| +20|2023-10-06T22:00:01.1230000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|116.52|85.17|0.00|-0.83| +39|2023-10-06T22:00:01.1680000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||118.55|81.47|0.00|-1.64| +21|2023-10-06T22:00:01.2130000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F714003|43ED0000|143E|340000|4|176E8000|11B|2A8000|0|0|0|0|0|0|0|0|20219309|40478540|10000|10000|||100.00|80.10|0.00|0.00|69419|90890|10000|10000|||114.56|84.92|0.00|-1.12|00010B10|0|1| +37|2023-10-06T22:00:01.3020000-07:00|10FF0007|Kehabiqo Febiqo|00010B0B|78152||||||114.56|84.92|0.00|-1.12| +37|2023-10-06T22:00:01.3470000-07:00|40021585|Zeromus|00010B0C|20215482||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:01.3470000-07:00|40021585|Zeromus|00010B0A|20211966||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:01.3470000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|6113|10000|22||116.20|86.29|0.00|-1.90|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:01.3470000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +21|2023-10-06T22:00:01.4360000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|386C0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|20211966|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||118.46|81.54|0.00|-1.13|00010B11|0|1| +261|2023-10-06T22:00:01.1860000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:00:01.1860000-07:00|Change|10FF0007||||||||| +38|2023-10-06T22:00:01.4810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||118.46|81.54|0.00|-1.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:01.4810000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|63151|55446| +21|2023-10-06T22:00:01.6140000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|752003|506A0000|200004|3E9A8000|0|0|0|0|0|0|0|0|0|0|0|0|20211966|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8700|10000|||117.87|83.00|0.00|-1.74|00010B12|0|1| +38|2023-10-06T22:00:01.6140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7700|10000|8||117.87|83.00|0.00|-1.74|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:01.6140000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +38|2023-10-06T22:00:01.6140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:01.6140000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +261|2023-10-06T22:00:01.3750000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:01.6590000-07:00|40021585|Zeromus|00010B0E|20185959||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:01.6590000-07:00|10FF000A|Dukaro Nezikaro|00010B0E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|1E00|0|0|01|080004A2|01|408578CC|| +37|2023-10-06T22:00:01.7040000-07:00|40021585|Zeromus|00010B0F|20161589||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:01.7040000-07:00|40021585|Zeromus|00010B0D|20156439||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:01.7040000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:01.7040000-07:00|6FD|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +38|2023-10-06T22:00:01.7490000-07:00|4002187E|Demi-Bahamut|005A5A00|48949|48949|10000|10000|0||95.90|91.57|0.00|2.80|0|0|0||||||||||||| +26|2023-10-06T22:00:01.7490000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|4002187E|Demi-Bahamut|01|48949|40478540| +21|2023-10-06T22:00:01.7490000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40021585|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|20156439|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1600|10000|||117.88|86.38|0.00|-1.91|00010B13|0|1| +21|2023-10-06T22:00:01.7490000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|3D600000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|20156439|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|6113|10000|||116.20|86.29|0.00|-1.94|00010B14|0|1| +21|2023-10-06T22:00:01.7490000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40021585|Zeromus|552003|92D20000|900000E|4A28000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|20156439|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||118.00|84.73|0.00|-1.82|00010B15|0|1| +38|2023-10-06T22:00:01.7490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3350|10000|21||116.29|85.44|0.00|-1.89|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:01.7490000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +38|2023-10-06T22:00:01.7490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:01.7490000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +26|2023-10-06T22:00:01.7490000-07:00|4A2|Ten Chi Jin|4.04|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|58451|58451| +39|2023-10-06T22:00:01.7930000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|7900|10000|||117.87|83.00|0.00|-1.73| +261|2023-10-06T22:00:01.4680000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:00:01.5640000-07:00|Change|10FF000B||||||||||||||||||||||| +38|2023-10-06T22:00:01.8820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|7900|10000|8||117.87|83.00|0.00|-1.73|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:01.8820000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +38|2023-10-06T22:00:01.9270000-07:00|40021585|Zeromus|005A5A00|20156439|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T22:00:01.9270000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|58451| +21|2023-10-06T22:00:01.9710000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|6F020000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|78152|90890|10000|10000|||110.52|87.11|0.00|-1.13|20156439|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B16|0|1| +38|2023-10-06T22:00:02.0150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|78152|90890|10000|10000|0||110.52|87.11|0.00|-1.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:02.0150000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|90890|55446| +21|2023-10-06T22:00:02.0590000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|28860000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|20156439|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3350|10000|||116.29|85.44|0.00|-1.89|00010B17|0|1| +38|2023-10-06T22:00:02.0590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3500|10000|21||116.29|85.44|0.00|-1.89|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:02.1490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1600|10000|13||117.88|86.38|0.00|-1.91|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:02.1490000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +37|2023-10-06T22:00:02.1930000-07:00|40021585|Zeromus|00010B11|20141995||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:02.1930000-07:00|10FF0006|Wowobora Gogobora|57266|57266|1800|10000|||117.88|86.38|0.00|-1.91| +261|2023-10-06T22:00:01.8900000-07:00|Change|4002185F||||||||| +261|2023-10-06T22:00:01.8900000-07:00|Change|10FF0006||||||||| +21|2023-10-06T22:00:02.2370000-07:00|4002187E|Demi-Bahamut|1D19|Akh Morn|40021585|Zeromus|754003|DB0D0000|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|20141995|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||95.90|91.57|0.00|2.80|00010B18|0|1| +21|2023-10-06T22:00:02.2370000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20141995|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1800|10000|||117.88|86.38|0.00|-1.91|00010B19|0|1| +261|2023-10-06T22:00:02.0030000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:00:02.0030000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:00:02.1150000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:00:02.3260000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20141995|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2950|10000|||109.40|93.19|0.00|-0.72|00010B1A|0|1| +37|2023-10-06T22:00:02.3710000-07:00|40021585|Zeromus|00010B12|20121409||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:02.3710000-07:00|10FF000B|Pusu Rosu|55446|55446|5994|10000|||116.18|86.31|0.00|-1.21| +39|2023-10-06T22:00:02.3710000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||118.00|84.73|0.00|-1.82| +21|2023-10-06T22:00:02.3710000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40021585|Zeromus|752003|67290000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|20141995|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1800|10000|||117.88|86.38|0.00|-1.91|00010B1B|0|1| +21|2023-10-06T22:00:02.4150000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20141995|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7900|10000|||117.10|83.32|0.00|-1.75|00010B1C|0|1| +38|2023-10-06T22:00:02.4150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +31|2023-10-06T22:00:02.4150000-07:00|10FF0001||||| +37|2023-10-06T22:00:02.4600000-07:00|40021585|Zeromus|00010B15|20083823||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:02.4600000-07:00|10FF000A|Dukaro Nezikaro|00010B15|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|1E00|0|0|02|03000A82|01|41F00000|||||| +39|2023-10-06T22:00:02.4600000-07:00|10FF0007|Kehabiqo Febiqo|79060|90890|10000|10000|||108.26|88.34|0.00|-1.08| +21|2023-10-06T22:00:02.4600000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|720003|DDA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20141995|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|2950|10000|||109.40|93.19|0.00|-0.72|00010B1D|0|1| +38|2023-10-06T22:00:02.4600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:02.3290000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:02.7280000-07:00|40021585|Zeromus|00010B10|20066434||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:02.7280000-07:00|10FF0007|Kehabiqo Febiqo|00010B10|85058||||||106.59|89.24|0.00|-1.08| +37|2023-10-06T22:00:02.7720000-07:00|10FF0007|Kehabiqo Febiqo|00010B16|56640||||||106.59|89.24|0.00|-1.08| +37|2023-10-06T22:00:02.7720000-07:00|40021585|Zeromus|00010B19|20066287||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:02.7720000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||116.14|85.93|0.00|-1.16| +21|2023-10-06T22:00:02.7720000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40021585|Zeromus|654003|4D150000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|20083823|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||118.00|84.73|0.00|-1.82|00010B1E|0|1| +38|2023-10-06T22:00:02.7720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||118.00|84.73|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:02.7720000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +30|2023-10-06T22:00:02.7720000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|58451|58451| +37|2023-10-06T22:00:02.8610000-07:00|40021585|Zeromus|00010B17|20055913||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:02.8610000-07:00|40021585|Zeromus|00010B1A|20055912||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:02.5230000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:00:02.6130000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:00:02.9500000-07:00|40021585|Zeromus|00010B1C|20054100||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:02.9940000-07:00|10FF0003|Gegehi Gehi|51669|51669|3150|10000|||109.35|93.26|0.00|-2.53| +37|2023-10-06T22:00:03.0390000-07:00|40021585|Zeromus|00010B14|20038388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:03.0830000-07:00|40021585|Zeromus|00010B1D|20034842||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:03.1290000-07:00|40021585|Zeromus|00010B18|19978765||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:03.1290000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|3700|10000|||112.45|89.42|0.00|-0.86| +38|2023-10-06T22:00:03.1290000-07:00|4002187E|Demi-Bahamut|005A5A00|48949|48949|10000|10000|0||95.90|91.57|0.00|2.80|0|0|0|||||||||| +30|2023-10-06T22:00:03.1290000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|4002187E|Demi-Bahamut|01|48949|40478540| +261|2023-10-06T22:00:02.8310000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:00:02.8310000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:00:03.1740000-07:00|40021585|Zeromus|00010B1B|19952356||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:03.1740000-07:00|4002187E|Demi-Bahamut|48949|48949|10000|10000|||95.90|91.57|0.00|2.80| +261|2023-10-06T22:00:02.9410000-07:00|Change|4002185F||||||||||| +21|2023-10-06T22:00:03.2620000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|93C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19952356|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||112.05|90.83|0.00|-0.60|00010B1F|0|1| +20|2023-10-06T22:00:03.2620000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|112.22|88.67|0.00|-1.31| +261|2023-10-06T22:00:03.0510000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:00:03.4410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19952356|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||117.97|84.74|0.00|-1.86|00010B20|0|1| +26|2023-10-06T22:00:03.4850000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|57078|57078| +22|2023-10-06T22:00:03.4850000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|FBA0F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|3700|10000|||110.98|90.65|0.00|-0.86|57078|57078|3700|10000|||110.98|90.65|0.00|-0.86|00010B21|0|1| +21|2023-10-06T22:00:03.5740000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|726003|29400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19952356|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3150|10000|||109.24|93.40|0.00|-2.53|00010B22|0|1| +261|2023-10-06T22:00:03.2790000-07:00|Change|10FF0006||||||||| +21|2023-10-06T22:00:03.6190000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|C530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19952356|40478540|10000|10000|||100.00|80.10|0.00|0.00|56640|90890|10000|10000|||102.06|91.66|0.00|-1.08|00010B23|0|1| +21|2023-10-06T22:00:03.6190000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|754003|49520000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|19952356|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1800|10000|||113.81|89.40|0.00|-1.00|00010B24|0|1| +24|2023-10-06T22:00:03.6630000-07:00|40021585|Zeromus|DoT|0|1765|19952356|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57078|57078|3700|10000|||110.51|91.05|-0.02|-1.01| +21|2023-10-06T22:00:03.6630000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|18870000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|19952356|40478540|10000|10000|||100.00|80.10|0.00|0.00|56640|90890|10000|10000|||102.06|91.66|0.00|-1.08|00010B25|0|1| +21|2023-10-06T22:00:03.6630000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||117.76|85.23|0.00|-1.93|58451|58451|10000|10000|||117.76|85.23|0.00|-1.93|00010B26|0|1| +36|2023-10-06T22:00:03.6630000-07:00|5C80|3| +38|2023-10-06T22:00:03.6630000-07:00|40021585|Zeromus|005A5A00|19946367|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:03.6630000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +38|2023-10-06T22:00:03.6630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||117.76|85.23|0.00|-1.93|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:03.6630000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +26|2023-10-06T22:00:03.6630000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +37|2023-10-06T22:00:03.7510000-07:00|40021585|Zeromus|00010B1E|19926634||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:03.7510000-07:00|10FF000A|Dukaro Nezikaro|00010B1E|58451|58451|10000|10000|21||117.41|86.05|0.00|-1.98|1E00|0|0|01|06000A81|0|C1F00000|| +261|2023-10-06T22:00:03.5680000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:00:03.5680000-07:00|Change|10FF000B||||||||||||||||||| +21|2023-10-06T22:00:03.9290000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|312C0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|19926634|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||109.77|93.97|0.00|-0.65|00010B27|0|1| +37|2023-10-06T22:00:03.9740000-07:00|40021585|Zeromus|00010B20|19924337||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:03.9740000-07:00|10FF000A|Dukaro Nezikaro|00010B20|58451|58451|10000|10000|21||116.42|87.28|0.00|-1.98|1E00|0|0|01|06000A81|0|C1F00000|| +37|2023-10-06T22:00:04.0190000-07:00|40021585|Zeromus|00010B1F|19921973||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:03.6660000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:00:03.6660000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:00:03.6660000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:00:03.7850000-07:00|Change|4002185F||||||||| +24|2023-10-06T22:00:04.1090000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|F79|56640|90890|10000|10000|||100.10|92.35|0.00|-2.27|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||109.38|92.02|0.00|-0.91| +24|2023-10-06T22:00:04.1090000-07:00|10FF0003|Gegehi Gehi|HoT|798|9A9|51669|51669|3150|10000|||108.58|94.02|0.00|-1.13|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||109.38|92.02|0.00|-0.91| +24|2023-10-06T22:00:04.1090000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|F95|57078|57078|3700|10000|||109.38|92.02|0.00|-0.91|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||109.38|92.02|0.00|-0.91| +24|2023-10-06T22:00:04.1090000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|98A|63151|63151|10000|10000|||108.90|95.01|0.00|-2.57|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||109.38|92.02|0.00|-0.91| +24|2023-10-06T22:00:04.1090000-07:00|10FF0006|Wowobora Gogobora|HoT|798|9B6|57266|57266|1500|10000|||112.92|89.89|0.00|-2.21|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||109.38|92.02|0.00|-0.91| +24|2023-10-06T22:00:04.1090000-07:00|10FF000B|Pusu Rosu|HoT|798|9B2|55446|55446|5994|10000|||111.92|88.73|0.00|-2.20|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||109.38|92.02|0.00|-0.91| +37|2023-10-06T22:00:04.1090000-07:00|10FF0004|Buhojaqe Zijaqe|00010B21|57078|57078|3700|10000|21||109.38|92.02|0.00|-0.91|1C00|0|0|02|06000798|0|41700000|||||| +26|2023-10-06T22:00:04.1090000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +26|2023-10-06T22:00:04.1090000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +20|2023-10-06T22:00:04.1090000-07:00|40021585|Zeromus|8B4D|Big Crunch|40021585|Zeromus|9.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:04.1090000-07:00|400215A1|Zeromus|8D32|Big Crunch|10FF0001|Sesuga Sapisuga|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:00:04.1090000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|0178|0000|0000|0000| +20|2023-10-06T22:00:04.1090000-07:00|400215A2|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:04.1090000-07:00|400215A3|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +38|2023-10-06T22:00:04.1090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|60601|90890|10000|10000|0||100.10|92.35|0.00|-2.27|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:04.1090000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T22:00:04.1090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||108.90|95.01|0.00|-2.57|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:00:04.1090000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T22:00:04.1090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1500|10000|13||112.92|89.89|0.00|-2.21|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:04.1090000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +261|2023-10-06T22:00:03.9030000-07:00|Change|400215A1||||||||||||| +38|2023-10-06T22:00:04.1090000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|3700|10000|21||109.38|92.02|0.00|-0.91|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:04.1090000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3150|10000|0||108.58|94.02|0.00|-1.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:04.1090000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T22:00:04.1090000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5994|10000|22||111.92|88.73|0.00|-2.20|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:04.1090000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +37|2023-10-06T22:00:04.1530000-07:00|40021585|Zeromus|00010B23|19918818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:04.1530000-07:00|40021585|Zeromus|00010B22|19908258||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:03.9030000-07:00|Change|40021585||||||||||||| +39|2023-10-06T22:00:04.1530000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||108.90|95.01|0.00|-2.57| +37|2023-10-06T22:00:04.1970000-07:00|40021585|Zeromus|00010B25|19901979||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:04.1970000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|712003|23F20000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|19921973|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7900|10000|||116.73|85.34|0.00|-1.87|00010B28|0|1| +21|2023-10-06T22:00:04.1970000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|271B0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|19921973|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|55446|5994|10000|||111.92|88.73|0.00|-2.20|00010B29|0|1| +37|2023-10-06T22:00:04.2430000-07:00|40021585|Zeromus|00010B24|19883209||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:04.2430000-07:00|4002159E|Zeromus|8D32|Big Crunch|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:00:04.2430000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|0178|0000|0000|0000| +20|2023-10-06T22:00:04.2430000-07:00|4002159F|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:04.2430000-07:00|400215A0|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T22:00:03.9030000-07:00|Change|4002159E||||||||||||||| +261|2023-10-06T22:00:03.9030000-07:00|Change|4002159F||||||||||| +261|2023-10-06T22:00:03.9030000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:00:03.9030000-07:00|Change|4002159B||||||||| +37|2023-10-06T22:00:04.2870000-07:00|10FF000A|Dukaro Nezikaro|00010B26|58451|58451|10000|10000|21||114.33|88.02|-0.02|-1.98|1E00|0|0|01|06000A81|0|41F00000|| +21|2023-10-06T22:00:04.2870000-07:00|4002187E|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|752003|22F90000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|19901979|40478540|10000|10000|||100.00|80.10|0.00|0.00|48949|48949|10000|10000|||95.90|91.57|0.00|2.80|00010B2A|0|1| +26|2023-10-06T22:00:04.2870000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|57266|57266| +21|2023-10-06T22:00:04.2870000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|752003|475A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19901979|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1500|10000|||112.47|90.17|0.00|-2.00|00010B2B|0|1| +38|2023-10-06T22:00:04.2870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||114.33|88.02|-0.02|-1.98|0|0|0||||||||||||||||||||||||||||||| +20|2023-10-06T22:00:04.3320000-07:00|4002159B|Zeromus|8D32|Big Crunch|10FF0006|Wowobora Gogobora|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:00:04.3320000-07:00|10FF0006|Wowobora Gogobora|0000|0000|0178|0000|0000|0000| +20|2023-10-06T22:00:04.3320000-07:00|4002159C|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:04.3320000-07:00|4002159D|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:04.3320000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|108.51|92.83|0.00|-0.80| +261|2023-10-06T22:00:04.0230000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:00:04.0230000-07:00|Change|4002159C||||||||||| +21|2023-10-06T22:00:04.3760000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|724003|32B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19883209|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3150|10000|||107.44|95.09|0.00|-0.94|00010B2C|0|1| +261|2023-10-06T22:00:04.1340000-07:00|Change|10FF0007||||||||| +20|2023-10-06T22:00:04.4200000-07:00|40021598|Zeromus|8D32|Big Crunch|10FF0007|Kehabiqo Febiqo|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:00:04.4200000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|0178|0000|0000|0000| +20|2023-10-06T22:00:04.4200000-07:00|40021599|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:04.4200000-07:00|4002159A|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T22:00:04.1340000-07:00|Change|40021598||||||||||||| +261|2023-10-06T22:00:04.1340000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:00:04.1340000-07:00|Change|40021599||||||||||| +21|2023-10-06T22:00:04.4650000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|554003|52440000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|19883209|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||114.10|89.56|0.00|-1.98|00010B2D|0|1| +38|2023-10-06T22:00:04.4650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||114.10|89.56|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:04.4650000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|58451|58451| +261|2023-10-06T22:00:04.1340000-07:00|Change|10FF000A||||||||| +20|2023-10-06T22:00:04.5100000-07:00|40021595|Zeromus|8D32|Big Crunch|10FF0004|Buhojaqe Zijaqe|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:00:04.5100000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|0178|0000|0000|0000| +20|2023-10-06T22:00:04.5100000-07:00|40021596|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:04.5100000-07:00|40021597|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T22:00:04.2470000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:00:04.2470000-07:00|Change|40021595||||||||||||| +261|2023-10-06T22:00:04.2470000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:00:04.2470000-07:00|Add|400218BC||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:04.3430000-07:00|Change|400215A3||||||||||| +261|2023-10-06T22:00:04.3430000-07:00|Change|400215A2||||||||||| +261|2023-10-06T22:00:04.3430000-07:00|Change|10FF0006||||||||||| +20|2023-10-06T22:00:04.6440000-07:00|40021592|Zeromus|8D32|Big Crunch|10FF000B|Pusu Rosu|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:00:04.6440000-07:00|10FF000B|Pusu Rosu|0000|0000|0178|0000|0000|0000| +20|2023-10-06T22:00:04.6440000-07:00|40021593|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:04.6440000-07:00|40021594|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T22:00:04.3430000-07:00|Change|40021592||||||||||||| +261|2023-10-06T22:00:04.3430000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:00:04.3430000-07:00|Change|40021594||||||||||| +21|2023-10-06T22:00:04.6890000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|92A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19883209|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7900|10000|||116.73|85.34|0.00|-1.87|00010B2E|0|1| +31|2023-10-06T22:00:04.6890000-07:00|10FF0001||||| +37|2023-10-06T22:00:04.7330000-07:00|40021585|Zeromus|00010B27|19870621||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:04.7330000-07:00|40021590|Zeromus|8D32|Big Crunch|10FF0003|Gegehi Gehi|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:00:04.7330000-07:00|10FF0003|Gegehi Gehi|0000|0000|0178|0000|0000|0000| +20|2023-10-06T22:00:04.7330000-07:00|40021591|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T22:00:04.4390000-07:00|Change|40021590||||||||||||| +261|2023-10-06T22:00:04.4390000-07:00|Change|40021591||||||||||| +261|2023-10-06T22:00:04.5340000-07:00|Change|4002159B||||||||||||| +37|2023-10-06T22:00:04.8230000-07:00|40021585|Zeromus|00010B28|19861419||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:04.8230000-07:00|4002158E|Zeromus|8D32|Big Crunch|10FF000A|Dukaro Nezikaro|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:00:04.8230000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|0178|0000|0000|0000| +20|2023-10-06T22:00:04.8230000-07:00|4002158F|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +39|2023-10-06T22:00:04.8230000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|8100|10000|||116.73|85.34|0.00|-1.87| +261|2023-10-06T22:00:04.5340000-07:00|Change|4002158E||||||||||||| +261|2023-10-06T22:00:04.5340000-07:00|Change|4002158F||||||||||| +261|2023-10-06T22:00:04.5340000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:00:04.8670000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|1C000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19870621|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||107.44|96.44|0.00|-1.33|00010B2F|0|1| +21|2023-10-06T22:00:04.8670000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|EAF0000|77450E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|19870621|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|7900|10000|||116.73|85.34|0.00|-1.87|00010B30|0|1| +261|2023-10-06T22:00:04.6260000-07:00|Change|10FF0004||||||||||||||||||||| +20|2023-10-06T22:00:04.9120000-07:00|4002158D|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T22:00:04.6260000-07:00|Change|4002158D||||||||||| +261|2023-10-06T22:00:04.6260000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T22:00:04.6260000-07:00|Change|4002185F||||||||| +21|2023-10-06T22:00:04.9570000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|154E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|60601|90890|10000|10000|||97.08|91.36|0.00|-2.76|54201|54201|10000|10000|||105.13|92.47|0.00|-1.03|00010B31|0|1| +20|2023-10-06T22:00:05.0470000-07:00|4002158C|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T22:00:04.7230000-07:00|Change|4002158C||||||||||| +24|2023-10-06T22:00:05.0920000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|9DD|63151|63151|10000|10000|||106.19|97.31|0.00|-2.88|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||107.44|93.92|0.00|-2.65| +24|2023-10-06T22:00:05.0920000-07:00|10FF0003|Gegehi Gehi|HoT|798|9CE|51669|51669|3150|10000|||106.50|96.04|0.00|-2.62|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||107.44|93.92|0.00|-2.65| +24|2023-10-06T22:00:05.0920000-07:00|10FF0006|Wowobora Gogobora|HoT|798|9EE|57266|57266|1500|10000|||108.02|92.95|0.00|-1.55|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||107.44|93.92|0.00|-2.65| +24|2023-10-06T22:00:05.0920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|FAD|60601|90890|10000|10000|||96.77|91.07|0.00|-3.00|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||107.44|93.92|0.00|-2.65| +24|2023-10-06T22:00:05.0920000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|997|57078|57078|3700|10000|||107.44|93.92|0.00|-2.65|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||107.44|93.92|0.00|-2.65| +24|2023-10-06T22:00:05.0920000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|9E1|58451|58451|10000|10000|||112.06|92.37|0.00|-2.01|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||107.44|93.92|0.00|-2.65| +24|2023-10-06T22:00:05.0920000-07:00|10FF000B|Pusu Rosu|HoT|798|9AC|55446|55446|5594|10000|||111.38|89.08|0.00|-1.15|10FF0004|Buhojaqe Zijaqe|0|57078|57078|3700|10000|||107.44|93.92|0.00|-2.65| +38|2023-10-06T22:00:05.0920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|64614|90890|10000|10000|0||96.77|91.07|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:05.0920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||106.19|97.31|0.00|-2.88|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:00:05.0920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1500|10000|13||108.02|92.95|0.00|-1.55|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:00:05.0920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|4250|10000|21||107.44|93.92|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:05.0920000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3150|10000|0||106.50|96.04|0.00|-2.62|0|0|0||||||||||||||||||| +38|2023-10-06T22:00:05.0920000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5594|10000|22||111.38|89.08|0.00|-1.15|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:05.0920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||112.06|92.37|0.00|-2.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:05.0920000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +20|2023-10-06T22:00:05.1360000-07:00|4002158B|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +261|2023-10-06T22:00:04.8420000-07:00|Change|4002158B||||||||||| +261|2023-10-06T22:00:04.8420000-07:00|Change|10FF0003||||||||| +39|2023-10-06T22:00:05.1810000-07:00|10FF0006|Wowobora Gogobora|57266|57266|1700|10000|||107.49|93.36|0.00|-1.31| +261|2023-10-06T22:00:04.8420000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:00:05.2260000-07:00|40021585|Zeromus|00010B2B|19843153||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:05.2260000-07:00|40021585|Zeromus|00010B2E|19840807||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:05.2260000-07:00|40021585|Zeromus|00010B2D|19819747||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:05.2260000-07:00|4002158A|Zeromus|8D31|Big Crunch|E0000000||5.700|100.00|100.00|0.00|0.00| +22|2023-10-06T22:00:05.2260000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|712003|1C660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19861419|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||111.83|93.80|0.00|-1.99|00010B32|0|3| +22|2023-10-06T22:00:05.2260000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|12DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19861419|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||111.83|93.80|0.00|-1.99|00010B32|1|3| +22|2023-10-06T22:00:05.2260000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|712003|1D200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19861419|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||111.83|93.80|0.00|-1.99|00010B32|2|3| +261|2023-10-06T22:00:04.9520000-07:00|Change|4002158A||||||||||| +21|2023-10-06T22:00:05.2710000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|752003|43F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19861419|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1700|10000|||107.09|93.78|0.00|-1.12|00010B33|0|1| +21|2023-10-06T22:00:05.2710000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|42100000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19861419|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|4250|10000|||107.44|93.92|0.00|-2.65|00010B34|0|1| +38|2023-10-06T22:00:05.2710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1700|10000|13||107.09|93.78|0.00|-1.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:05.2710000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|57266|57266| +37|2023-10-06T22:00:05.3160000-07:00|40021585|Zeromus|00010B2A|19810794||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:05.3600000-07:00|10FF000B|Pusu Rosu|55446|55446|5875|10000|||110.06|90.40|0.00|-0.99| +39|2023-10-06T22:00:05.3600000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||111.79|94.04|0.00|-2.47| +21|2023-10-06T22:00:05.3600000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|4D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19810794|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1700|10000|||106.82|94.07|0.00|-2.74|00010B35|0|1| +21|2023-10-06T22:00:05.3600000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19810794|40478540|10000|10000|||100.00|80.10|0.00|0.00|57078|57078|3850|10000|||107.44|93.92|0.00|-3.06|00010B36|0|1| +261|2023-10-06T22:00:05.0670000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:00:05.0670000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:00:05.4500000-07:00|10FF0007|Kehabiqo Febiqo|65522|90890|10000|10000|||96.42|90.75|0.00|3.02| +37|2023-10-06T22:00:05.4980000-07:00|40021585|Zeromus|00010B29|19800783||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:05.4980000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|16380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19810794|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||104.74|98.10|-0.02|-2.80|00010B37|0|1| +261|2023-10-06T22:00:05.1840000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:00:05.5400000-07:00|40021585|Zeromus|00010B2C|19787805||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:05.6290000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B8C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19787805|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||111.63|94.54|0.00|-2.47|00010B38|0|1| +37|2023-10-06T22:00:05.6740000-07:00|40021585|Zeromus|00010B2F|19780637||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:05.7630000-07:00|10FF0007|Kehabiqo Febiqo|00010B31|70976||||||96.44|90.57|0.00|3.06| +39|2023-10-06T22:00:05.7630000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||103.72|93.31|0.00|-1.91| +21|2023-10-06T22:00:05.8080000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19780637|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3150|10000|||103.85|99.35|0.00|-2.91|00010B39|0|1| +261|2023-10-06T22:00:05.5770000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:00:05.8960000-07:00|40021585|Zeromus|00010B35|19780560||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:05.8960000-07:00|40021585|Zeromus|00010B30|19776801|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T22:00:05.8960000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +37|2023-10-06T22:00:05.8960000-07:00|40021585|Zeromus|00010B36|19776729||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:05.5770000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:00:05.9410000-07:00|40021585|Zeromus|00010B32|19769459||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:05.9410000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19780637|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||101.18|99.45|0.00|-2.63|00010B3A|0|1| +38|2023-10-06T22:00:05.9410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70976|90890|10000|10000|0||96.39|90.42|-0.02|3.09|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:05.9410000-07:00|6FD|Vulnerability Up|0.00|400215A3|Zeromus|10FF0007|Kehabiqo Febiqo|04|90890|44| +39|2023-10-06T22:00:05.9860000-07:00|10FF0003|Gegehi Gehi|51669|51669|3350|10000|||103.48|99.91|0.00|-2.03| +21|2023-10-06T22:00:05.9860000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40021585|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19769459|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8100|10000|||116.18|85.26|0.00|-1.71|00010B3B|0|1| +261|2023-10-06T22:00:05.7760000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:00:06.0750000-07:00|40021585|Zeromus|00010B34|19752547||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.0750000-07:00|40021585|Zeromus|00010B32|19747720||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:06.0750000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|25B10000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|19769459|40478540|10000|10000|||100.00|80.10|0.00|0.00|70976|90890|10000|10000|||95.51|89.04|0.00|-2.96|00010B3C|0|1| +21|2023-10-06T22:00:06.0750000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|752003|58CD0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|19769459|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1700|10000|||105.64|96.07|0.00|-0.51|00010B3D|0|1| +21|2023-10-06T22:00:06.0750000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|752003|5E880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19769459|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||113.41|95.59|0.00|2.33|00010B3E|0|1| +38|2023-10-06T22:00:06.0750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||113.41|95.59|0.00|2.33|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:06.0750000-07:00|A81|Meisui|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|58451|58451| +39|2023-10-06T22:00:06.1190000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|4050|10000|||108.74|96.82|0.00|0.52| +261|2023-10-06T22:00:05.8930000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:00:06.1630000-07:00|40021585|Zeromus|00010B37|19742032||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.1630000-07:00|40021585|Zeromus|00010B38|19739076||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0004|Buhojaqe Zijaqe|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|00010B3F|0|8| +22|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0006|Wowobora Gogobora|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|1400|10000|||105.33|96.78|0.00|-2.87|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|00010B3F|1|8| +22|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF000B|Pusu Rosu|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|5875|10000|||113.53|94.39|-0.02|0.87|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|00010B3F|2|8| +22|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF000A|Dukaro Nezikaro|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||114.03|95.92|-0.02|-2.40|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|00010B3F|3|8| +22|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0003|Gegehi Gehi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|3350|10000|||103.07|100.82|0.00|-0.70|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|00010B3F|4|8| +22|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0008|Kokosaze Lulusaze|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||99.51|100.27|-0.02|-1.39|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|00010B3F|5|8| +22|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0001|Sesuga Sapisuga|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|90349|90349|8100|10000|||116.18|85.26|0.00|-1.71|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|00010B3F|6|8| +22|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0007|Kehabiqo Febiqo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|70976|90890|10000|10000|||95.22|88.63|0.00|2.57|57078|57078|4050|10000|||109.06|97.35|0.00|0.52|00010B3F|7|8| +38|2023-10-06T22:00:06.1630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70976|90890|10000|10000|0||95.22|88.63|0.00|2.57|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:06.1630000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +26|2023-10-06T22:00:06.1630000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|90890|57078| +38|2023-10-06T22:00:06.1630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||99.51|100.27|-0.02|-1.39|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:06.1630000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +26|2023-10-06T22:00:06.1630000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|63151|57078| +38|2023-10-06T22:00:06.1630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1400|10000|13||105.33|96.78|0.00|-2.87|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:06.1630000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +26|2023-10-06T22:00:06.1630000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|57266|57078| +38|2023-10-06T22:00:06.1630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|8100|10000|8||116.18|85.26|0.00|-1.71|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:06.1630000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +26|2023-10-06T22:00:06.1630000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|90349|57078| +38|2023-10-06T22:00:06.1630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|4050|10000|21||109.06|97.35|0.00|0.52|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:06.1630000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +26|2023-10-06T22:00:06.1630000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|57078|57078| +38|2023-10-06T22:00:06.1630000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3350|10000|0||103.07|100.82|0.00|-0.70|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:06.1630000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +26|2023-10-06T22:00:06.1630000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|51669|57078| +38|2023-10-06T22:00:06.1630000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5875|10000|22||113.53|94.39|-0.02|0.87|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:06.1630000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +26|2023-10-06T22:00:06.1630000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|1E|55446|57078| +38|2023-10-06T22:00:06.1630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||114.03|95.92|-0.02|-2.40|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:06.1630000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +26|2023-10-06T22:00:06.1630000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|58451|57078| +37|2023-10-06T22:00:06.2080000-07:00|40021585|Zeromus|00010B33|19721676||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.2080000-07:00|10FF0006|Wowobora Gogobora|00010B33|57266|57266|1400|10000|13||105.33|96.78|0.00|-2.87|1B00|0|0|02|05000A97|0|C1A00000|||||| +37|2023-10-06T22:00:06.2080000-07:00|40021585|Zeromus|00010B32|19714220||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.2080000-07:00|10FF000A|Dukaro Nezikaro|00010B32|58451|58451|10000|10000|21||114.03|95.92|-0.02|-2.40|1E02|0|0|02|06000A97|0|C1A00000|||||| +39|2023-10-06T22:00:06.2080000-07:00|4002187E|Demi-Bahamut|48949|48949|10000|10000|||95.90|91.57|0.00|2.80| +38|2023-10-06T22:00:06.2080000-07:00|4002187E|Demi-Bahamut|005A5A00|0|48949|0|10000|0||95.90|91.57|0.00|2.80|0|0|0||||||| +30|2023-10-06T22:00:06.2080000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002187E|Demi-Bahamut|00|48949|57266| +261|2023-10-06T22:00:05.8930000-07:00|Change|4002187E||||| +38|2023-10-06T22:00:06.2520000-07:00|400218BD||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T22:00:06.2520000-07:00|400218BD||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T22:00:06.3410000-07:00|40021585|Zeromus|00010B39|19714219||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.3410000-07:00|10FF0003|Gegehi Gehi|00010B39|51669|51669|3350|10000|0||102.92|101.60|0.00|-0.54|2300|0|0|02|06000A97|0|C1A00000|||||| +261|2023-10-06T22:00:06.1210000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:00:06.4290000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|722003|A9200000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|19714219|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||99.41|101.75|0.00|-0.90|00010B40|0|1| +261|2023-10-06T22:00:06.2400000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:00:06.2400000-07:00|Add|400218BD||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:00:06.2400000-07:00|400218BD|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|54388|10000|10000|||104.30|96.31|0.00|0.33| +261|2023-10-06T22:00:06.3350000-07:00|Change|400218BD||| +37|2023-10-06T22:00:06.6530000-07:00|40021585|Zeromus|00010B3B|19714219|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|060004A9|0|41200000|| +26|2023-10-06T22:00:06.6530000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|90349| +37|2023-10-06T22:00:06.6530000-07:00|10FF0001|Sesuga Sapisuga|00010B3B|90349|90349|8100|10000|8||116.18|85.26|0.00|-1.88|1300|0|0|02|03000A97|0|C1A00000|||||| +24|2023-10-06T22:00:06.6530000-07:00|40021585|Zeromus|DoT|0|14F3|19714219|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|8100|10000|||116.18|85.26|0.00|-1.88| +36|2023-10-06T22:00:06.6530000-07:00|5D5C|3| +38|2023-10-06T22:00:06.6530000-07:00|40021585|Zeromus|005A5A00|19708856|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:00:06.6530000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +261|2023-10-06T22:00:06.4270000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:00:06.6970000-07:00|40021585|Zeromus|00010B3C|19699207||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.6970000-07:00|10FF0007|Kehabiqo Febiqo|00010B3C|70976|90890|10000|10000|0||93.75|87.04|0.00|-2.96|1500|0|0|02|04000A97|0|C1A00000|||||| +37|2023-10-06T22:00:06.6970000-07:00|40021585|Zeromus|00010B3A|19696755||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.6970000-07:00|10FF0008|Kokosaze Lulusaze|00010B3A|63151|63151|10000|10000|12||97.73|103.56|0.00|-2.98|1F00|0|0|02|04000A97|0|C1A00000|||||| +37|2023-10-06T22:00:06.6970000-07:00|40021585|Zeromus|00010B3D|19674022||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.6970000-07:00|10FF0006|Wowobora Gogobora|00010B3D|57266|57266|1400|10000|13||103.61|100.71|0.00|-0.81|1B00|0|0|02|05000A97|0|C1A00000|||||| +37|2023-10-06T22:00:06.6970000-07:00|40021585|Zeromus|00010B3E|19649822||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:06.6970000-07:00|10FF000A|Dukaro Nezikaro|00010B3E|58451|58451|10000|10000|21||115.73|96.55|0.00|-2.10|1E00|0|0|02|06000A97|0|C1A00000|||||| +21|2023-10-06T22:00:06.6970000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|30740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19708856|40478540|10000|10000|||100.00|80.10|0.00|0.00|70976|90890|10000|10000|||93.75|87.04|0.00|-2.96|00010B41|0|1| +21|2023-10-06T22:00:06.6970000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|219D0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|19708856|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8100|10000|||116.18|85.26|0.00|-1.88|00010B42|0|1| +261|2023-10-06T22:00:06.5210000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:00:06.7860000-07:00|10FF0004|Buhojaqe Zijaqe|00010B3F|57078|57078|4050|10000|21||110.38|100.55|0.00|0.38|1C00|0|0|02|0B000A97|0|41A00000|||||| +38|2023-10-06T22:00:06.7860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|4050|10000|21||110.38|100.55|0.00|0.38|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:06.9190000-07:00|10FF0006|Wowobora Gogobora|00010B3F|57266|57266|1400|10000|13||103.33|101.49|-0.02|-0.59|1B01|0|0|02|05000A97|0|41A00000|||||| +38|2023-10-06T22:00:06.9190000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1400|10000|13||103.33|101.49|-0.02|-0.59|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:00:06.9630000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|74F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19649822|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|8100|10000|||116.03|85.23|0.00|-1.84|00010B43|0|1| +31|2023-10-06T22:00:06.9630000-07:00|10FF0001||||| +21|2023-10-06T22:00:07.0070000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|CD50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19649822|40478540|10000|10000|||100.00|80.10|0.00|0.00|70976|90890|10000|10000|||93.21|86.43|0.00|2.23|00010B44|0|1| +261|2023-10-06T22:00:06.7100000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:00:07.0510000-07:00|10FF000B|Pusu Rosu|00010B3F|55446|55446|5875|10000|22||113.97|93.98|0.00|2.89|1802|0|0|02|06000A97|0|41A00000|||||| +38|2023-10-06T22:00:07.0510000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5875|10000|22||113.97|93.98|0.00|2.89|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:00:06.7100000-07:00|Change|10FF0004||||||||| +39|2023-10-06T22:00:07.1400000-07:00|10FF0008|Kokosaze Lulusaze|63151|63151|10000|10000|||95.41|104.66|0.00|-1.62| +261|2023-10-06T22:00:06.8240000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:00:07.1850000-07:00|10FF000A|Dukaro Nezikaro|00010B3F|58451|58451|10000|10000|21||115.97|97.94|0.00|-2.89|1E03|0|0|02|06000A97|0|41A00000|||||| +20|2023-10-06T22:00:07.1850000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|103.54|107.77|0.00|0.36| +38|2023-10-06T22:00:07.1850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||115.97|97.94|0.00|-2.89|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T22:00:07.2740000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40021585|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19649822|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1400|10000|||102.69|104.96|0.00|-0.29|00010B45|0|1| +34|2023-10-06T22:00:07.2740000-07:00|400218BD|Carbuncle|400218BD|Carbuncle|01| +261|2023-10-06T22:00:06.9440000-07:00|Change|400218BD||||||||| +37|2023-10-06T22:00:07.3180000-07:00|10FF0003|Gegehi Gehi|00010B3F|51669|51669|3350|10000|0||103.66|107.99|0.00|0.72|2304|0|0|02|06000A97|0|41A00000|||||| +38|2023-10-06T22:00:07.3180000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3350|10000|0||103.66|107.99|0.00|0.72|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:00:07.3620000-07:00|40021585|Zeromus|00010B41|19637418||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:07.3620000-07:00|10FF0007|Kehabiqo Febiqo|00010B41|70976|90890|10000|10000|0||92.64|85.77|0.00|2.23|1500|0|0|02|04000A97|0|C1A00000|||||| +261|2023-10-06T22:00:07.1710000-07:00|Change|10FF0008||||||||| +38|2023-10-06T22:00:07.4070000-07:00|40021585|Zeromus|005A5A00|19637418|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:07.4070000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|58451| +37|2023-10-06T22:00:07.4520000-07:00|40021585|Zeromus|00010B42|19628813||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:07.4520000-07:00|10FF0001|Sesuga Sapisuga|00010B42|90349|90349|9100|10000|8||115.18|84.01|0.00|-1.98|1300|0|0|02|03000A97|0|C1A00000|||||| +37|2023-10-06T22:00:07.4520000-07:00|10FF0008|Kokosaze Lulusaze|00010B3F|63151|63151|10000|10000|12||92.87|104.56|0.00|-1.58|1F05|0|0|02|04000A97|0|41A00000|||||| +38|2023-10-06T22:00:07.4520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||92.87|104.56|0.00|-1.58|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:00:07.1710000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:07.4970000-07:00|40021585|Zeromus|00010B43|19626942||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:07.4970000-07:00|10FF0001|Sesuga Sapisuga|00010B43|90349|90349|9100|10000|8||115.20|83.95|0.00|-1.98|1300|0|0|02|03000A97|0|C1A00000|||||| +37|2023-10-06T22:00:07.5420000-07:00|40021585|Zeromus|00010B44|19623657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:07.5420000-07:00|10FF0007|Kehabiqo Febiqo|00010B44|70976|90890|10000|10000|0||92.61|85.77|0.00|2.77|1500|0|0|02|04000A97|0|C1A00000|||||| +22|2023-10-06T22:00:07.5420000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0008|Kokosaze Lulusaze|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||92.08|103.98|0.00|-1.74|63151|63151|10000|10000|||92.08|103.98|0.00|-1.74|00010B46|0|7| +22|2023-10-06T22:00:07.5420000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0006|Wowobora Gogobora|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|1400|10000|||102.34|106.64|-0.02|-2.90|63151|63151|10000|10000|||92.08|103.98|0.00|-1.74|00010B46|1|7| +22|2023-10-06T22:00:07.5420000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0003|Gegehi Gehi|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|51669|51669|3350|10000|||103.88|108.38|0.00|2.14|63151|63151|10000|10000|||92.08|103.98|0.00|-1.74|00010B46|2|7| +22|2023-10-06T22:00:07.5420000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0007|Kehabiqo Febiqo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70976|90890|10000|10000|||92.61|85.77|0.00|2.77|63151|63151|10000|10000|||92.08|103.98|0.00|-1.74|00010B46|3|7| +22|2023-10-06T22:00:07.5420000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000B|Pusu Rosu|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55446|55446|5875|10000|||112.46|94.18|0.00|-1.78|63151|63151|10000|10000|||92.08|103.98|0.00|-1.74|00010B46|4|7| +22|2023-10-06T22:00:07.5420000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0004|Buhojaqe Zijaqe|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57078|57078|4050|10000|||112.70|105.88|0.00|0.49|63151|63151|10000|10000|||92.08|103.98|0.00|-1.74|00010B46|5|7| +22|2023-10-06T22:00:07.5420000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000A|Dukaro Nezikaro|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||116.42|99.05|0.00|-2.81|63151|63151|10000|10000|||92.08|103.98|0.00|-1.74|00010B46|6|7| +37|2023-10-06T22:00:07.5860000-07:00|40021585|Zeromus|00010B40|19580361||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:07.5860000-07:00|10FF0001|Sesuga Sapisuga|00010B3F|90349|90349|9100|10000|8||115.20|83.95|0.00|-1.98|1306|0|0|02|03000A97|0|41A00000|||||| +38|2023-10-06T22:00:07.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9100|10000|8||115.20|83.95|0.00|-1.98|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:00:07.7180000-07:00|10FF0007|Kehabiqo Febiqo|00010B3F|70976|90890|10000|10000|0||92.12|85.45|0.00|-3.11|1507|0|0|02|04000A97|0|41A00000|||||| +38|2023-10-06T22:00:07.7180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|70976|90890|10000|10000|0||92.12|85.45|0.00|-3.11|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:00:07.4810000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:00:07.4810000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:00:07.4810000-07:00|Remove|4002185E| +261|2023-10-06T22:00:07.4810000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:00:07.8070000-07:00|10FF0001|Sesuga Sapisuga|90349|90349|9300|10000|||115.27|83.79|0.00|-1.98| +261|2023-10-06T22:00:07.4810000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T22:00:07.8960000-07:00|40021585|Zeromus|00010B45|19580361|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004B3|0|41200000|| +26|2023-10-06T22:00:07.8960000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|57266| +261|2023-10-06T22:00:07.7600000-07:00|Change|400218BD||||||||| +24|2023-10-06T22:00:08.0780000-07:00|10FF000B|Pusu Rosu|HoT|798|1018|55446|55446|5875|10000|||111.83|97.88|0.00|-0.01|10FF0004|Buhojaqe Zijaqe|0|57078|57078|4050|10000|||112.81|109.06|0.00|0.04| +24|2023-10-06T22:00:08.0780000-07:00|10FF0006|Wowobora Gogobora|HoT|798|987|57266|57266|1400|10000|||98.01|109.51|0.00|-1.09|10FF0004|Buhojaqe Zijaqe|0|57078|57078|4050|10000|||112.81|109.06|0.00|0.04| +24|2023-10-06T22:00:08.0780000-07:00|10FF0003|Gegehi Gehi|HoT|798|981|51669|51669|3350|10000|||104.05|108.69|0.00|-3.00|10FF0004|Buhojaqe Zijaqe|0|57078|57078|4050|10000|||112.81|109.06|0.00|0.04| +24|2023-10-06T22:00:08.0780000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|F4F|63151|63151|10000|10000|||89.67|104.80|0.00|-0.53|10FF0004|Buhojaqe Zijaqe|0|57078|57078|4050|10000|||112.81|109.06|0.00|0.04| +38|2023-10-06T22:00:08.0780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||89.67|104.80|0.00|-0.53|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:08.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T22:00:08.0780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1400|10000|13||98.01|109.51|0.00|-1.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:08.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T22:00:08.0780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|4600|10000|21||112.81|109.06|0.00|0.04|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:08.0780000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3350|10000|0||104.05|108.69|0.00|-3.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:08.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T22:00:08.0780000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5875|10000|22||111.83|97.88|0.00|-0.01|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:08.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T22:00:08.1210000-07:00|40021585|Zeromus|005A5A00|19580361|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:08.1210000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|57078| +37|2023-10-06T22:00:08.1640000-07:00|10FF0008|Kokosaze Lulusaze|00010B46|63151|63151|10000|10000|12||89.67|104.80|0.00|-0.53|1F00|0|0|01|0800079F|0|41700000|| +26|2023-10-06T22:00:08.1640000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|63151|63151| +39|2023-10-06T22:00:08.2090000-07:00|10FF0006|Wowobora Gogobora|57266|57266|1600|10000|||96.76|110.36|0.00|-1.00| +21|2023-10-06T22:00:08.2520000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|146B0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|70976|90890|10000|10000|||88.90|83.81|0.00|-3.02|54201|54201|10000|10000|||103.72|93.31|0.00|-2.75|00010B47|0|1| +37|2023-10-06T22:00:08.2970000-07:00|10FF0006|Wowobora Gogobora|00010B46|57266|57266|1600|10000|13||96.76|110.36|0.00|-1.00|1B01|0|0|01|0900079F|0|41700000|| +26|2023-10-06T22:00:08.2970000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|57266|63151| +39|2023-10-06T22:00:08.3420000-07:00|10FF000B|Pusu Rosu|55446|55446|6156|10000|||111.84|98.82|0.00|0.04| +39|2023-10-06T22:00:08.3420000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||117.37|98.94|0.00|2.58| +261|2023-10-06T22:00:07.9950000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:00:08.4310000-07:00|10FF0003|Gegehi Gehi|00010B46|51669|51669|3350|10000|0||104.05|108.69|0.00|-3.00|2302|0|0|01|0800079F|0|41700000|| +26|2023-10-06T22:00:08.4310000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|51669|63151| +261|2023-10-06T22:00:08.2160000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:00:08.2160000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:00:08.4760000-07:00|10FF0007|Kehabiqo Febiqo|71884|90890|10000|10000|||88.77|83.82|0.00|-3.02| +37|2023-10-06T22:00:08.5660000-07:00|10FF0007|Kehabiqo Febiqo|00010B46|71884|90890|10000|10000|0||88.73|83.82|0.00|-3.03|1503|0|0|01|0800079F|0|41700000|| +26|2023-10-06T22:00:08.5660000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|90890|63151| +21|2023-10-06T22:00:08.5670000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F716003|65890000|143E|340000|200004|27598000|11B|2A8000|0|0|0|0|0|0|0|0|19580361|40478540|10000|10000|||100.00|80.10|0.00|0.00|71884|90890|10000|10000|||88.73|83.82|0.00|-3.03|00010B48|0|1| +21|2023-10-06T22:00:08.5670000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|19580361|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1600|10000|||95.66|111.27|-0.02|-0.92|00010B49|0|1| +38|2023-10-06T22:00:08.5670000-07:00|400218BD|Carbuncle|005A5A00|0|54388|0|10000|0||102.95|104.56|0.00|0.13|0|0|0|||||||||| +26|2023-10-06T22:00:08.5670000-07:00|30|Well Fed|674.07|10FF0006|Wowobora Gogobora|400218BD|Carbuncle|2964|54388|57266| +26|2023-10-06T22:00:08.5670000-07:00|441|HP Penalty|9999.00|E0000000||400218BD|Carbuncle|00|54388|| +38|2023-10-06T22:00:08.6120000-07:00|400218BF||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T22:00:08.6120000-07:00|400218BF||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T22:00:08.6120000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EBB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19580361|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||91.76|107.17|0.00|0.65|00010B4A|0|1| +21|2023-10-06T22:00:08.6120000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|756003|471A0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|19580361|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3350|10000|||104.05|108.69|0.00|-3.00|00010B4B|0|1| +38|2023-10-06T22:00:08.6120000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3150|10000|0||104.05|108.69|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:08.6120000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +37|2023-10-06T22:00:08.6990000-07:00|10FF000B|Pusu Rosu|00010B46|55446|55446|6156|10000|22||111.44|99.50|0.00|0.27|1804|0|0|01|0900079F|0|41700000|| +26|2023-10-06T22:00:08.6990000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|55446|63151| +261|2023-10-06T22:00:08.4020000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T22:00:08.7440000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||103.72|93.31|0.00|-2.45| +37|2023-10-06T22:00:08.8330000-07:00|10FF0004|Buhojaqe Zijaqe|00010B46|57078|57078|4600|10000|21||112.46|109.81|-0.02|-0.30|1C05|0|0|01|0D00079F|0|41700000|| +26|2023-10-06T22:00:08.8330000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|57078|63151| +261|2023-10-06T22:00:08.5010000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T22:00:08.5010000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:00:08.6000000-07:00|Add|400218BF||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:00:08.6000000-07:00|400218BF|Topaz Titan|00|5A|10FF0006|00||10264|13507|54388|54388|10000|10000|||96.34|114.52|0.00|2.98| +37|2023-10-06T22:00:08.9670000-07:00|10FF000A|Dukaro Nezikaro|00010B46|58451|58451|10000|10000|21||118.24|97.77|0.00|-3.00|1E06|0|0|01|0800079F|0|41700000|| +26|2023-10-06T22:00:08.9670000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|58451|63151| +39|2023-10-06T22:00:08.9670000-07:00|10FF0003|Gegehi Gehi|51669|51669|3350|10000|||104.05|108.69|0.00|-3.00| +21|2023-10-06T22:00:08.9670000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|724003|799E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19580361|40478540|10000|10000|||100.00|80.10|0.00|0.00|63151|63151|10000|10000|||90.09|108.74|0.00|-0.27|00010B4C|0|1| +261|2023-10-06T22:00:08.6930000-07:00|Change|400218BF||||| +37|2023-10-06T22:00:09.0560000-07:00|10FF0007|Kehabiqo Febiqo|00010B47|77111||||||88.52|83.82|0.00|1.88| +39|2023-10-06T22:00:09.1010000-07:00|10FF0004|Buhojaqe Zijaqe|57078|57078|4800|10000|||112.39|110.30|0.00|0.09| +21|2023-10-06T22:00:09.1010000-07:00|400215A1|Zeromus|8D32|Big Crunch|10FF0001|Sesuga Sapisuga|550603|23E60000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|90349|90349|9300|10000|||113.59|81.71|0.00|-1.05|44|44|0|10000|||100.00|100.00|0.00|0.00|00010B4D|0|1| +38|2023-10-06T22:00:09.1010000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9300|10000|8||113.59|81.71|0.00|-1.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.1010000-07:00|B7D|Magic Vulnerability Up|2.00|400215A1|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +261|2023-10-06T22:00:08.8050000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:00:08.8050000-07:00|Change|400218BD||||||||||| +21|2023-10-06T22:00:09.1900000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57266|57266|1600|10000|||95.16|113.86|0.00|1.35|57266|57266|1600|10000|||95.16|113.86|0.00|1.35|00010B4E|0|1| +21|2023-10-06T22:00:09.1900000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|29BE0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|19580361|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9300|10000|||113.59|81.71|0.00|-1.69|00010B4F|0|1| +38|2023-10-06T22:00:09.1900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|9300|10000|8||113.59|81.71|0.00|-1.69|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.1900000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|90349|90349| +26|2023-10-06T22:00:09.1900000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|90349|90349| +261|2023-10-06T22:00:08.9150000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:00:09.2350000-07:00|4002159E|Zeromus|8D32|Big Crunch|10FF0008|Kokosaze Lulusaze|550603|380B0000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|63151|63151|10000|10000|||88.58|111.49|0.00|-1.74|44|44|0|10000|||100.00|100.00|0.00|0.00|00010B50|0|1| +21|2023-10-06T22:00:09.2350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19580361|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|9300|10000|||113.59|81.71|0.00|-1.69|00010B51|0|1| +38|2023-10-06T22:00:09.2350000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63151|63151|10000|10000|12||88.58|111.49|0.00|-1.74|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.2350000-07:00|B7D|Magic Vulnerability Up|2.00|4002159E|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +31|2023-10-06T22:00:09.2350000-07:00|10FF0001||||| +261|2023-10-06T22:00:08.9150000-07:00|Change|4002159E||||||||||||| +21|2023-10-06T22:00:09.3250000-07:00|4002159B|Zeromus|8D32|Big Crunch|10FF0006|Wowobora Gogobora|550603|2E890000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|57266|57266|1600|10000|||95.30|114.14|0.00|0.32|44|44|0|10000|||100.00|100.00|0.00|0.00|00010B52|0|1| +38|2023-10-06T22:00:09.3250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1600|10000|13||95.30|114.14|0.00|0.32|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.3250000-07:00|B7D|Magic Vulnerability Up|2.00|4002159B|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +261|2023-10-06T22:00:09.0290000-07:00|Change|4002159B||||||||||||| +37|2023-10-06T22:00:09.3680000-07:00|40021585|Zeromus|00010B4A|19576590||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:09.3680000-07:00|40021585|Zeromus|00010B4B|19558388||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:09.4130000-07:00|40021598|Zeromus|8D32|Big Crunch|10FF0007|Kehabiqo Febiqo|550003|32760000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|77111|90890|10000|10000|||86.09|83.50|0.00|2.60|44|44|0|10000|||100.00|100.00|0.00|0.00|00010B53|0|1| +20|2023-10-06T22:00:09.4130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|112.36|110.57|0.00|0.14| +38|2023-10-06T22:00:09.4130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|77111|90890|10000|10000|0||86.09|83.50|0.00|2.60|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.4130000-07:00|B7D|Magic Vulnerability Up|2.00|40021598|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|44| +261|2023-10-06T22:00:09.1430000-07:00|Change|40021598||||||||||||| +21|2023-10-06T22:00:09.5010000-07:00|40021595|Zeromus|8D32|Big Crunch|10FF0004|Buhojaqe Zijaqe|550603|1EDD0000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|57078|57078|4800|10000|||112.35|110.66|-0.01|0.16|44|44|0|10000|||100.00|100.00|0.00|0.00|00010B54|0|1| +38|2023-10-06T22:00:09.5010000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|4800|10000|21||112.35|110.66|-0.01|0.16|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.5010000-07:00|B7D|Magic Vulnerability Up|2.00|40021595|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +261|2023-10-06T22:00:09.2540000-07:00|Change|40021595||||||||||||| +21|2023-10-06T22:00:09.5910000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|27480000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|19558388|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3350|10000|||104.05|108.69|0.00|-3.00|00010B55|0|1| +38|2023-10-06T22:00:09.5910000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3050|10000|0||104.05|108.69|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:09.5910000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T22:00:09.5910000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +21|2023-10-06T22:00:09.6350000-07:00|40021592|Zeromus|8D32|Big Crunch|10FF000B|Pusu Rosu|550603|1B250000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|55446|55446|6156|10000|||111.68|99.69|0.00|2.24|44|44|0|10000|||100.00|100.00|0.00|0.00|00010B56|0|1| +38|2023-10-06T22:00:09.6350000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|6156|10000|22||111.68|99.69|0.00|2.24|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.6350000-07:00|B7D|Magic Vulnerability Up|2.00|40021592|Zeromus|10FF000B|Pusu Rosu|00|55446|44| +261|2023-10-06T22:00:09.3530000-07:00|Change|40021592||||||||||||| +261|2023-10-06T22:00:09.3530000-07:00|Change|400218BF||| +24|2023-10-06T22:00:09.6800000-07:00|40021585|Zeromus|DoT|0|17BF|19558388|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|90349|90349|9300|10000|||113.59|81.71|0.00|-1.69| +36|2023-10-06T22:00:09.6800000-07:00|5E38|3| +38|2023-10-06T22:00:09.6800000-07:00|40021585|Zeromus|005A5A00|19552309|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:00:09.6800000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +37|2023-10-06T22:00:09.7250000-07:00|10FF0001|Sesuga Sapisuga|00010B4D|81159|90349|9300|10000|0||113.59|81.71|0.00|-1.69|1300|0|0|04|02000000|0|0|||||||||||||| +21|2023-10-06T22:00:09.7250000-07:00|40021590|Zeromus|8D32|Big Crunch|10FF0003|Gegehi Gehi|550003|5CEC0000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|51669|51669|3050|10000|||104.05|108.69|0.00|-3.00|44|44|0|10000|||100.00|100.00|0.00|0.00|00010B57|0|1| +21|2023-10-06T22:00:09.7250000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|752003|41900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19558388|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||119.16|94.29|0.00|-1.70|00010B58|0|1| +38|2023-10-06T22:00:09.7250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|81159|90349|9300|10000|0||113.59|81.71|0.00|-1.69|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:09.7250000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T22:00:09.7250000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3050|10000|0||104.05|108.69|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.7250000-07:00|B7D|Magic Vulnerability Up|2.00|40021590|Zeromus|10FF0003|Gegehi Gehi|00|51669|44| +261|2023-10-06T22:00:09.4510000-07:00|Change|40021590||||||||||||| +261|2023-10-06T22:00:09.4510000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:00:09.7700000-07:00|40021585|Zeromus|00010B4F|19541623||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:09.7700000-07:00|10FF0001|Sesuga Sapisuga|00010B4F|81159|90349|9300|10000|0||113.59|81.71|0.00|-1.69|1300|0|0|02|0700076E|03|41F00000|||||| +37|2023-10-06T22:00:09.7700000-07:00|40021585|Zeromus|00010B51|19539840||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:09.7700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|81159|90349|9300|10000|0||113.59|81.71|0.00|-1.69|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:09.8140000-07:00|10FF0006|Wowobora Gogobora|00010B4E|57266|57266|1600|10000|13||95.51|114.57|0.00|0.39|1B00|0|0|01|0B0004B4|0|41A80000|| +26|2023-10-06T22:00:09.8140000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +21|2023-10-06T22:00:09.8140000-07:00|4002158E|Zeromus|8D32|Big Crunch|10FF000A|Dukaro Nezikaro|550603|20780000|E80E|B7D0000|1B|8D328000|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||119.17|94.12|0.00|-2.18|44|44|0|10000|||100.00|100.00|0.00|0.00|00010B59|0|1| +38|2023-10-06T22:00:09.8140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||119.17|94.12|0.00|-2.18|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:09.8140000-07:00|B7D|Magic Vulnerability Up|2.00|4002158E|Zeromus|10FF000A|Dukaro Nezikaro|00|58451|44| +261|2023-10-06T22:00:09.5490000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:00:09.5490000-07:00|Change|4002158E||||||||||||| +37|2023-10-06T22:00:09.8590000-07:00|10FF0008|Kokosaze Lulusaze|00010B50|48804|63151|10000|10000|0||86.30|111.98|0.00|-1.98|1F00|0|0|02|05000000|0|0|||||| +21|2023-10-06T22:00:09.8590000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19539840|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||119.18|93.98|0.00|-2.18|00010B5A|0|1| +38|2023-10-06T22:00:09.8590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|48804|63151|10000|10000|0||86.30|111.98|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:09.8590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +261|2023-10-06T22:00:09.5490000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:00:09.5490000-07:00|Change|10FF0003||| +37|2023-10-06T22:00:09.9470000-07:00|10FF0006|Wowobora Gogobora|00010B52|45353|57266|1600|10000|0||95.58|114.74|0.00|0.22|1B00|0|0|02|0|0|0|||||| +38|2023-10-06T22:00:09.9470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45353|57266|1600|10000|0||95.58|114.74|0.00|0.22|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:09.9470000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +37|2023-10-06T22:00:10.0380000-07:00|10FF0007|Kehabiqo Febiqo|00010B53|64193|90890|10000|10000|0||84.06|82.93|0.00|3.13|1500|0|0|01|09000B7D|0|3FB5C291|| +37|2023-10-06T22:00:10.0810000-07:00|40021585|Zeromus|00010B48|19513847||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:10.0810000-07:00|10FF0007|Kehabiqo Febiqo|00010B48|74266||||||84.06|82.93|0.00|3.13| +21|2023-10-06T22:00:10.0820000-07:00|400215A2|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B5B|0|0| +21|2023-10-06T22:00:10.0820000-07:00|400215A3|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B5C|0|0| +38|2023-10-06T22:00:10.0820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|4800|10000|21||112.35|110.67|0.00|-2.76|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:10.0820000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T22:00:10.0820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|21||119.22|93.62|0.00|-2.18|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:09.8450000-07:00|Change|400215A2||||||||||| +30|2023-10-06T22:00:10.0820000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +04|2023-10-06T22:00:09.8450000-07:00|4002187E|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|48949|0|10000|||95.90|91.57|0.00|2.80| +261|2023-10-06T22:00:09.8450000-07:00|Change|400215A3||||||||||| +37|2023-10-06T22:00:10.1260000-07:00|40021585|Zeromus|00010B4C|19482713||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:10.1260000-07:00|10FF0004|Buhojaqe Zijaqe|00010B54|49177|57078|4800|10000|0||112.35|110.67|0.00|-2.76|1C00|0|0|02|03000000|0|0|||||| +38|2023-10-06T22:00:10.1270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|74266|90890|10000|10000|0||84.06|82.93|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:10.1270000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T22:00:10.1270000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49177|57078|4800|10000|0||112.35|110.67|0.00|-2.76|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:10.1270000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +39|2023-10-06T22:00:10.1700000-07:00|10FF0008|Kokosaze Lulusaze|49435|63151|10000|10000|||83.71|112.03|0.00|-1.89| +20|2023-10-06T22:00:10.1700000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|111.68|99.66|0.00|2.97| +21|2023-10-06T22:00:10.2150000-07:00|4002159F|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B5D|0|0| +21|2023-10-06T22:00:10.2150000-07:00|400215A0|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B5E|0|0| +261|2023-10-06T22:00:09.8450000-07:00|Change|4002159F||||||||||| +261|2023-10-06T22:00:09.8450000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:00:09.8450000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:00:09.8450000-07:00|Remove|4002187E| +37|2023-10-06T22:00:10.2600000-07:00|10FF000B|Pusu Rosu|00010B56|48497|55446|6156|10000|0||111.68|99.66|0.00|2.97|1800|0|0|02|02000000|0|0|||||| +38|2023-10-06T22:00:10.2600000-07:00|10FF000B|Pusu Rosu|005A5A18|48497|55446|6156|10000|0||111.68|99.66|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:10.2600000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +21|2023-10-06T22:00:10.3050000-07:00|4002159C|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B5F|0|0| +21|2023-10-06T22:00:10.3050000-07:00|4002159D|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B60|0|0| +261|2023-10-06T22:00:09.9630000-07:00|Change|4002159D||||||||||| +261|2023-10-06T22:00:09.9630000-07:00|Change|4002159C||||||||||| +37|2023-10-06T22:00:10.3500000-07:00|10FF0003|Gegehi Gehi|00010B57|27881|51669|3050|10000|0||104.05|108.69|0.00|-3.00|2300|0|0|02|09000B7D|0|3FB5C292|||||| +37|2023-10-06T22:00:10.3500000-07:00|40021585|Zeromus|00010B55|19472657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:10.3500000-07:00|10FF0003|Gegehi Gehi|00010B55|27881|51669|3050|10000|0||104.05|108.69|0.00|-3.00|2300|0|0|01|0A0004D2|0|41F00000|| +37|2023-10-06T22:00:10.3500000-07:00|40021585|Zeromus|00010B58|19455873||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:10.3500000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|247D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19482713|40478540|10000|10000|||100.00|80.10|0.00|0.00|49177|57078|4800|10000|||112.35|110.67|0.00|-2.76|00010B61|0|1| +38|2023-10-06T22:00:10.3500000-07:00|10FF0003|Gegehi Gehi|005A5A23|27881|51669|3050|10000|0||104.05|108.69|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:10.3940000-07:00|40021585|Zeromus|00010B5A|19453156||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:10.3940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|C430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19482713|40478540|10000|10000|||100.00|80.10|0.00|0.00|74266|90890|10000|10000|||84.06|82.93|0.00|3.13|00010B62|0|1| +21|2023-10-06T22:00:10.3940000-07:00|40021599|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B63|0|0| +21|2023-10-06T22:00:10.3940000-07:00|4002159A|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B64|0|0| +261|2023-10-06T22:00:10.0730000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:00:10.0730000-07:00|Change|40021599||||||||||| +37|2023-10-06T22:00:10.4380000-07:00|10FF000A|Dukaro Nezikaro|00010B59|50139|58451|10000|10000|0||119.22|93.58|0.00|-2.18|1E00|0|0|02|05000000|0|0|||||| +38|2023-10-06T22:00:10.4380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50139|58451|10000|10000|0||119.22|93.58|0.00|-2.18|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:10.4380000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +21|2023-10-06T22:00:10.4830000-07:00|40021596|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B65|0|0| +21|2023-10-06T22:00:10.4830000-07:00|40021597|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B66|0|0| +261|2023-10-06T22:00:10.1950000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:00:10.1950000-07:00|Change|40021597||||||||||| +21|2023-10-06T22:00:10.6170000-07:00|40021593|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B67|0|0| +21|2023-10-06T22:00:10.6170000-07:00|40021594|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B68|0|0| +261|2023-10-06T22:00:10.2960000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:00:10.2960000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:00:10.2960000-07:00|Change|400218BD||||||||| +21|2023-10-06T22:00:10.6620000-07:00|400218BF|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|450003|62070000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|19453156|40478540|10000|10000|||100.00|80.10|0.00|0.00|54388|54388|10000|10000|||96.34|114.52|0.00|2.98|00010B69|0|1| +21|2023-10-06T22:00:10.7070000-07:00|40021591|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B6A|0|0| +261|2023-10-06T22:00:10.3940000-07:00|Change|40021591||||||||||| +39|2023-10-06T22:00:10.7970000-07:00|10FF0001|Sesuga Sapisuga|82062|90349|9500|10000|||113.59|81.71|0.00|-1.69| +21|2023-10-06T22:00:10.7970000-07:00|4002158F|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B6B|0|0| +261|2023-10-06T22:00:10.4950000-07:00|Change|4002158F||||||||||| +261|2023-10-06T22:00:10.4950000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:00:10.4950000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T22:00:10.8860000-07:00|4002158D|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B6C|0|0| +261|2023-10-06T22:00:10.4950000-07:00|Change|4002158D||||||||||| +37|2023-10-06T22:00:10.9310000-07:00|40021585|Zeromus|00010B62|19450017||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:10.9310000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|31C70000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|19453156|40478540|10000|10000|||100.00|80.10|0.00|0.00|50139|58451|10000|10000|||119.19|93.58|0.00|-1.87|00010B6D|0|1| +21|2023-10-06T22:00:10.9760000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|2D110000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|19450017|40478540|10000|10000|||100.00|80.10|0.00|0.00|82062|90349|9500|10000|||113.59|81.71|0.00|-1.69|00010B6E|0|1| +21|2023-10-06T22:00:11.0200000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|17270000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|19450017|40478540|10000|10000|||100.00|80.10|0.00|0.00|74266|90890|10000|10000|||84.06|82.93|0.00|3.13|00010B6F|0|1| +21|2023-10-06T22:00:11.0200000-07:00|4002158C|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B70|0|0| +261|2023-10-06T22:00:10.6870000-07:00|Change|4002158C||||||||||| +24|2023-10-06T22:00:11.0650000-07:00|10FF000B|Pusu Rosu|HoT|798|F6B|48497|55446|6156|10000|||111.68|99.66|0.00|2.97|10FF0004|Buhojaqe Zijaqe|0|49177|57078|4400|10000|||112.35|110.67|0.00|-2.76| +24|2023-10-06T22:00:11.0650000-07:00|10FF0003|Gegehi Gehi|HoT|798|9B7|27881|51669|3050|10000|||104.05|108.69|0.00|-3.00|10FF0004|Buhojaqe Zijaqe|0|49177|57078|4400|10000|||112.35|110.67|0.00|-2.76| +21|2023-10-06T22:00:11.0650000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|452003|3FA60000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|19450017|40478540|10000|10000|||100.00|80.10|0.00|0.00|45353|57266|1600|10000|||95.53|114.12|0.00|-1.92|00010B71|0|1| +38|2023-10-06T22:00:11.0650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45353|57266|1300|10000|0||95.53|114.12|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:11.0650000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +38|2023-10-06T22:00:11.0650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49177|57078|4950|10000|0||112.35|110.67|0.00|-2.76|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:11.0650000-07:00|10FF0003|Gegehi Gehi|005A5A23|30368|51669|3050|10000|0||104.05|108.69|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:11.0650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T22:00:11.0650000-07:00|10FF000B|Pusu Rosu|005A5A18|52444|55446|6156|10000|0||111.68|99.66|0.00|2.97|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:11.0650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +261|2023-10-06T22:00:10.6870000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T22:00:11.1090000-07:00|4002158B|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B72|0|0| +38|2023-10-06T22:00:11.1090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82062|90349|9500|10000|0||113.59|81.71|0.00|-1.69|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.1090000-07:00|B7D|Magic Vulnerability Up|0.00|400215A1|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|44| +261|2023-10-06T22:00:10.8060000-07:00|Change|4002158B||||||||||| +37|2023-10-06T22:00:11.1530000-07:00|40021585|Zeromus|00010B61|19440676||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:11.1530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45353|57266|1850|10000|0||95.53|114.12|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:11.1980000-07:00|10FF0006|Wowobora Gogobora|45925|57266|2050|10000|||95.41|113.09|0.00|3.00| +21|2023-10-06T22:00:11.1980000-07:00|4002158A|Zeromus|8D31|Big Crunch|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010B73|0|0| +261|2023-10-06T22:00:10.8060000-07:00|Change|4002158A||||||||||| +38|2023-10-06T22:00:11.2420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|49435|63151|10000|10000|0||82.08|111.47|0.00|2.48|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.2420000-07:00|B7D|Magic Vulnerability Up|0.00|4002159E|Zeromus|10FF0008|Kokosaze Lulusaze|00|63151|44| +21|2023-10-06T22:00:11.2870000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|BF50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19440676|40478540|10000|10000|||100.00|80.10|0.00|0.00|49435|63151|10000|10000|||82.08|111.47|0.00|2.48|00010B74|0|1| +37|2023-10-06T22:00:11.3330000-07:00|40021585|Zeromus|00010B6E|19429139||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:11.3330000-07:00|10FF0001|Sesuga Sapisuga|00010B6E|82062|90349|10000|10000|0||113.59|81.71|0.00|-1.69|1300|0|0|0| +37|2023-10-06T22:00:11.3330000-07:00|40021585|Zeromus|00010B6D|19416396||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:11.3330000-07:00|10FF000A|Dukaro Nezikaro|50723|58451|10000|10000|||115.94|93.56|0.00|-2.17| +38|2023-10-06T22:00:11.3330000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45925|57266|2050|10000|0||95.28|112.05|0.00|3.00|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.3330000-07:00|B7D|Magic Vulnerability Up|0.00|4002159B|Zeromus|10FF0006|Wowobora Gogobora|00|57266|44| +39|2023-10-06T22:00:11.3760000-07:00|10FF000B|Pusu Rosu|52998|55446|6437|10000|||111.68|99.66|0.00|2.97| +261|2023-10-06T22:00:11.0260000-07:00|Change|10FF000B||||| +38|2023-10-06T22:00:11.4220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|74266|90890|10000|10000|0||84.05|82.94|0.00|1.37|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.4220000-07:00|B7D|Magic Vulnerability Up|0.00|40021598|Zeromus|10FF0007|Kehabiqo Febiqo|00|90890|44| +39|2023-10-06T22:00:11.4660000-07:00|10FF0007|Kehabiqo Febiqo|75174|90890|10000|10000|||84.05|82.94|0.00|1.37| +261|2023-10-06T22:00:11.1420000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:00:11.5110000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44726003|7E620000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|19416396|40478540|10000|10000|||100.00|80.10|0.00|0.00|49435|63151|10000|10000|||82.08|111.47|0.00|2.48|00010B75|0|1| +21|2023-10-06T22:00:11.5110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19416396|40478540|10000|10000|||100.00|80.10|0.00|0.00|82062|90349|10000|10000|||113.10|82.08|0.00|-0.88|00010B76|0|1| +38|2023-10-06T22:00:11.5110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49177|57078|4950|10000|0||112.35|110.66|0.00|-2.60|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.5110000-07:00|B7D|Magic Vulnerability Up|0.00|40021595|Zeromus|10FF0004|Buhojaqe Zijaqe|00|57078|44| +31|2023-10-06T22:00:11.5110000-07:00|10FF0001||||| +37|2023-10-06T22:00:11.5540000-07:00|40021585|Zeromus|00010B6F|19410469||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:00:11.5990000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|16B30000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|52998|55446|6437|10000|||111.68|99.66|0.00|2.97|52998|55446|6437|10000|||111.68|99.66|0.00|2.97|00010B77|0|6| +22|2023-10-06T22:00:11.5990000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|4|16C10000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|50723|58451|10000|10000|||113.30|93.53|0.00|-1.71|52998|55446|6437|10000|||111.68|99.66|0.00|2.97|00010B77|1|6| +22|2023-10-06T22:00:11.5990000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|17370000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|49177|57078|4950|10000|||112.35|110.65|0.00|-2.49|52998|55446|6437|10000|||111.68|99.66|0.00|2.97|00010B77|2|6| +22|2023-10-06T22:00:11.5990000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|16670000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|30368|51669|3050|10000|||104.05|108.69|0.00|-3.00|52998|55446|6437|10000|||111.68|99.66|0.00|2.97|00010B77|3|6| +22|2023-10-06T22:00:11.5990000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|16E80000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|82062|90349|10000|10000|||112.50|82.60|0.00|-0.83|52998|55446|6437|10000|||111.68|99.66|0.00|2.97|00010B77|4|6| +22|2023-10-06T22:00:11.5990000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|17400000|BDC50E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|45925|57266|2050|10000|||95.33|112.62|0.00|3.00|52998|55446|6437|10000|||111.68|99.66|0.00|2.97|00010B77|5|6| +261|2023-10-06T22:00:11.3500000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T22:00:11.6440000-07:00|10FF000B|Pusu Rosu|005A5A18|52998|55446|5437|10000|0||111.68|99.66|0.00|2.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.6440000-07:00|B7D|Magic Vulnerability Up|0.00|40021592|Zeromus|10FF000B|Pusu Rosu|00|55446|44| +37|2023-10-06T22:00:11.6880000-07:00|40021585|Zeromus|00010B71|19394175||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:11.6880000-07:00|10FF0006|Wowobora Gogobora|00010B71|45925|57266|2050|10000|0||95.56|111.89|0.00|2.97|1B00|0|0|01|0B25|0|0|| +38|2023-10-06T22:00:11.6880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45925|57266|2050|10000|0||95.56|111.89|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:00:11.7330000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|35240000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|19410469|40478540|10000|10000|||100.00|80.10|0.00|0.00|82062|90349|10000|10000|||111.88|83.19|0.00|-0.80|00010B78|0|1| +38|2023-10-06T22:00:11.7330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82062|90349|10000|10000|0||111.88|83.19|0.00|-0.80|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:11.7330000-07:00|76E|Sword Oath|27.99|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|90349|90349| +38|2023-10-06T22:00:11.7330000-07:00|10FF0003|Gegehi Gehi|005A5A23|30368|51669|3050|10000|0||104.05|108.69|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.7330000-07:00|B7D|Magic Vulnerability Up|0.00|40021590|Zeromus|10FF0003|Gegehi Gehi|00|51669|44| +39|2023-10-06T22:00:11.7770000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||103.72|93.31|0.00|-2.70| +261|2023-10-06T22:00:11.5370000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:00:11.5370000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T22:00:11.8220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|50723|58451|10000|10000|0||111.71|93.51|0.00|-1.63|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.8220000-07:00|B7D|Magic Vulnerability Up|0.00|4002158E|Zeromus|10FF000A|Dukaro Nezikaro|00|58451|44| +21|2023-10-06T22:00:11.8670000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|452003|1DB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19394175|40478540|10000|10000|||100.00|80.10|0.00|0.00|45925|57266|2050|10000|||95.86|110.93|-0.02|2.87|00010B79|0|1| +38|2023-10-06T22:00:11.8670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45925|57266|2050|10000|0||95.86|110.93|-0.02|2.87|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:11.8670000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +261|2023-10-06T22:00:11.6360000-07:00|Change|10FF000B||||||||||||||| +39|2023-10-06T22:00:12.0010000-07:00|10FF0003|Gegehi Gehi|30884|51669|3250|10000|||104.05|108.69|0.00|-3.00| +261|2023-10-06T22:00:11.6360000-07:00|Change|10FF0003||| +37|2023-10-06T22:00:12.0460000-07:00|40021585|Zeromus|00010B74|19391114||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:12.0460000-07:00|40021585|Zeromus|00010B76|19389378||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:12.0460000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|104.05|108.69|0.00|-3.00| +21|2023-10-06T22:00:12.0460000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19394175|40478540|10000|10000|||100.00|80.10|0.00|0.00|50723|58451|10000|10000|||110.20|93.49|0.00|-1.60|00010B7A|0|1| +21|2023-10-06T22:00:12.0910000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|21190000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|30884|51669|3250|10000|||104.05|108.69|0.00|-3.00|54201|54201|10000|10000|||103.72|93.31|0.00|-1.88|00010B7B|0|1| +261|2023-10-06T22:00:11.8730000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:00:12.1360000-07:00|10FF0004|Buhojaqe Zijaqe|49747|57078|5150|10000|||110.27|109.38|0.00|-2.19| +37|2023-10-06T22:00:12.3150000-07:00|40021585|Zeromus|00010B75|19357024||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:11.9870000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:00:12.4490000-07:00|10FF000B|Pusu Rosu|00010B77|55446|55446|5437|10000|0||111.63|99.63|0.00|-2.13|1800|0|0|01|02000096|0|41700000|| +26|2023-10-06T22:00:12.4490000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|55446|55446| +20|2023-10-06T22:00:12.4490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|108.35|108.06|0.00|-2.20| +261|2023-10-06T22:00:12.2200000-07:00|Change|10FF0001||||||||| +04|2023-10-06T22:00:12.2200000-07:00|400218BD|Carbuncle|00|5A|10FF0006|00||10261|13498|0|54388|0|10000|||102.43|107.59|0.00|-0.42| +261|2023-10-06T22:00:12.2200000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T22:00:12.2200000-07:00|Remove|400218BD| +37|2023-10-06T22:00:12.5820000-07:00|10FF000A|Dukaro Nezikaro|00010B77|56548|58451|10000|10000|0||105.83|93.90|0.00|-1.45|1E01|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:00:12.5820000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|58451|55446| +37|2023-10-06T22:00:12.5820000-07:00|40021585|Zeromus|00010B7A|19353293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:12.6260000-07:00|40021585|Zeromus|00010B79|19345691||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:12.6260000-07:00|40021585|Zeromus|00010B69|19320596||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:12.3200000-07:00|Change|10FF0006||||||||| +24|2023-10-06T22:00:12.6710000-07:00|40021585|Zeromus|DoT|0|1B9B|19357024|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|82062|90349|10000|10000|||107.64|88.21|0.00|-0.92| +22|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0007|Kehabiqo Febiqo|5410E|5B10000|1C7E0E|83C0000|4|1D170000|0|0|0|0|0|0|0|0|0|0|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|00010B7C|0|8| +22|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF000A|Dukaro Nezikaro|53F0E|5B10000|1C7E0E|83C0000|4|1CC40000|0|0|0|0|0|0|0|0|0|0|56548|58451|10000|10000|||104.97|94.05|0.00|-1.43|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|00010B7C|1|8| +22|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0008|Kokosaze Lulusaze|5000E|5B10000|1C7E0E|83C0000|4|1C580000|0|0|0|0|0|0|0|0|0|0|49435|63151|10000|10000|||87.70|107.75|0.00|1.95|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|00010B7C|2|8| +22|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0006|Wowobora Gogobora|58D0E|5B10000|1C7E0E|83C0000|4|1D1D0000|0|0|0|0|0|0|0|0|0|0|45925|57266|2050|10000|||97.12|107.11|0.00|2.98|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|00010B7C|3|8| +22|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0001|Sesuga Sapisuga|5F00E|5B10000|1C7E0E|83C0000|4|1CD30000|0|0|0|0|0|0|0|0|0|0|82062|90349|10000|10000|||107.50|88.99|0.00|-1.03|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|00010B7C|4|8| +22|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0003|Gegehi Gehi|5460E|5B10000|1C7E0E|83C0000|4|1CC40000|0|0|0|0|0|0|0|0|0|0|30884|51669|3250|10000|||104.05|108.69|0.00|-3.00|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|00010B7C|5|8| +22|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF000B|Pusu Rosu|57C0E|5B10000|1C7E0E|83C0000|4|1CDE0000|0|0|0|0|0|0|0|0|0|0|55446|55446|5437|10000|||110.05|100.79|0.00|-1.55|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|00010B7C|6|8| +22|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0004|Buhojaqe Zijaqe|5710E|5B10000|1C7E0E|83C0000|4|1BB30000|0|0|0|0|0|0|0|0|0|0|49747|57078|5150|10000|||108.29|107.90|0.00|-2.54|75174|90890|10000|10000|||88.51|90.98|0.00|0.65|00010B7C|7|8| +36|2023-10-06T22:00:12.6720000-07:00|5F14|3| +38|2023-10-06T22:00:12.6720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|75174|90890|10000|10000|14||88.51|90.98|0.00|0.65|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +26|2023-10-06T22:00:12.6720000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|90890|90890| +38|2023-10-06T22:00:12.6720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|49435|63151|10000|10000|14||87.70|107.75|0.00|1.95|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|63151|90890| +26|2023-10-06T22:00:12.6720000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|63151|90890| +38|2023-10-06T22:00:12.6720000-07:00|40021585|Zeromus|005A5A00|19313529|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|EB0|Big Bang|30.00|E0000000||40021585|Zeromus|00|40478540|| +38|2023-10-06T22:00:12.6720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|45925|57266|2050|10000|14||97.12|107.11|0.00|2.98|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|57266|90890| +26|2023-10-06T22:00:12.6720000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|57266|90890| +38|2023-10-06T22:00:12.6720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82062|90349|10000|10000|14||107.50|88.99|0.00|-1.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +26|2023-10-06T22:00:12.6720000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +38|2023-10-06T22:00:12.6720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|49747|57078|5150|10000|14||108.29|107.90|0.00|-2.54|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|57078|90890| +26|2023-10-06T22:00:12.6720000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|57078|90890| +38|2023-10-06T22:00:12.6720000-07:00|10FF0003|Gegehi Gehi|005A5A23|30884|51669|3250|10000|14||104.05|108.69|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|51669|90890| +26|2023-10-06T22:00:12.6720000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|51669|90890| +38|2023-10-06T22:00:12.6720000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5437|10000|14||110.05|100.79|0.00|-1.55|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF000B|Pusu Rosu|00|55446|90890| +26|2023-10-06T22:00:12.6720000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF000B|Pusu Rosu|00|55446|90890| +38|2023-10-06T22:00:12.6720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56548|58451|10000|10000|14||104.97|94.05|0.00|-1.43|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:12.6720000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|58451|90890| +26|2023-10-06T22:00:12.6720000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|58451|90890| +37|2023-10-06T22:00:12.7160000-07:00|10FF0004|Buhojaqe Zijaqe|00010B77|55690|57078|5150|10000|14||108.29|107.90|0.00|-2.54|1C02|0|0|01|0E000096|0|41700000|| +26|2023-10-06T22:00:12.7160000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|57078|55446| +261|2023-10-06T22:00:12.4120000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:00:12.5120000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:00:12.5120000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:00:12.8490000-07:00|10FF0003|Gegehi Gehi|00010B77|36619|51669|3250|10000|14||104.05|108.69|0.00|-3.00|2303|0|0|01|0C000096|0|41700000|| +26|2023-10-06T22:00:12.8490000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|51669|55446| +37|2023-10-06T22:00:12.8940000-07:00|10FF0003|Gegehi Gehi|00010B7B|45092||||||104.05|108.69|0.00|-3.00| +37|2023-10-06T22:00:12.9830000-07:00|10FF0001|Sesuga Sapisuga|00010B77|87926|90349|10000|10000|14||107.02|90.59|0.00|-1.13|1304|0|0|01|0A000096|0|41700000|| +26|2023-10-06T22:00:12.9830000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|90349|55446| +37|2023-10-06T22:00:13.0280000-07:00|40021585|Zeromus|00010B78|19299925||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:12.7040000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:00:13.1180000-07:00|10FF0006|Wowobora Gogobora|00010B77|51877|57266|2050|10000|14||98.02|103.49|0.00|2.90|1B05|0|0|01|0C000096|0|41700000|| +26|2023-10-06T22:00:13.1180000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|57266|55446| +38|2023-10-06T22:00:13.1180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|49435|63151|10000|10000|14||91.24|106.13|0.00|1.98|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:13.1180000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T22:00:13.1180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51877|57266|2050|10000|14||98.02|103.49|0.00|2.90|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:13.1180000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +261|2023-10-06T22:00:12.8230000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:00:13.1620000-07:00|10FF0008|Kokosaze Lulusaze|50066|63151|10000|10000|||91.24|106.13|0.00|1.98| +21|2023-10-06T22:00:13.1620000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|3BE60000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|19299925|40478540|10000|10000|||100.00|80.10|0.00|0.00|56548|58451|10000|10000|||101.55|94.68|0.00|-1.39|00010B7D|0|1| +261|2023-10-06T22:00:12.9430000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:00:12.9430000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:00:13.0590000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:00:13.3850000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|3E540000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19299925|40478540|10000|10000|||100.00|80.10|0.00|0.00|55690|57078|5150|10000|||108.23|107.74|0.00|-2.85|00010B7E|0|1| +37|2023-10-06T22:00:13.4740000-07:00|10FF0007|Kehabiqo Febiqo|00010B7C|82621|90890|10000|10000|14||91.23|93.68|-0.02|0.81|1500|0|0|02|010005B1|0|41E9EF9B|||||| +21|2023-10-06T22:00:13.4740000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|36B70000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|19299925|40478540|10000|10000|||100.00|80.10|0.00|0.00|75174|90890|10000|10000|||91.23|93.68|-0.02|0.81|00010B7F|0|1| +21|2023-10-06T22:00:13.4740000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|150003|23E90000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|19299925|40478540|10000|10000|||100.00|80.10|0.00|0.00|45092|51669|3250|10000|||104.05|108.69|0.00|-3.00|00010B80|0|1| +38|2023-10-06T22:00:13.4740000-07:00|10FF0003|Gegehi Gehi|005A5A23|45092|51669|3050|10000|14||104.05|108.69|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:13.4740000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T22:00:13.4740000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +261|2023-10-06T22:00:13.2630000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T22:00:13.5620000-07:00|40021585|Zeromus|00010B7D|19284591||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:13.5620000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|29360000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|19299925|40478540|10000|10000|||100.00|80.10|0.00|0.00|51877|57266|2050|10000|||99.18|100.13|0.00|2.82|00010B81|0|1| +38|2023-10-06T22:00:13.5620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51877|57266|1750|10000|14||99.18|100.13|0.00|2.82|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:13.5620000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T22:00:13.6070000-07:00|10FF000A|Dukaro Nezikaro|00010B7C|58451|58451|10000|10000|14||100.16|94.93|0.00|-2.86|1E01|0|0|02|050005B1|0|41E8DD2C|||||| +21|2023-10-06T22:00:13.6510000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|51877|57266|1750|10000|||99.66|99.59|0.00|3.00|00010B82|0|1| +37|2023-10-06T22:00:13.7410000-07:00|10FF0008|Kokosaze Lulusaze|00010B7C|57322|63151|10000|10000|14||95.33|104.18|0.00|2.01|1F02|0|0|02|050005B1|0|41E7CCC9|||||| +261|2023-10-06T22:00:13.4550000-07:00|Change|10FF000B||||||||| +39|2023-10-06T22:00:13.7860000-07:00|10FF0001|Sesuga Sapisuga|88829|90349|10000|10000|||103.62|96.44|0.00|-1.57| +21|2023-10-06T22:00:13.7860000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|13280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|82621|90890|10000|10000|||93.34|95.64|0.00|2.65|00010B83|0|1| +21|2023-10-06T22:00:13.7860000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|73C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|87926|90349|10000|10000|||103.62|96.44|0.00|-1.57|00010B84|0|1| +31|2023-10-06T22:00:13.7860000-07:00|10FF0001||||| +261|2023-10-06T22:00:13.4550000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:00:13.4550000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:00:13.5560000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:00:13.5560000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:00:13.8750000-07:00|10FF0006|Wowobora Gogobora|00010B7C|57266|57266|1750|10000|14||100.56|99.18|0.00|2.62|1B03|0|0|02|05B1|0|41E6BA5A|||||| +261|2023-10-06T22:00:13.6460000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:00:13.9630000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|F9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|57322|63151|10000|10000|||96.84|103.31|0.00|2.06|00010B85|0|1| +37|2023-10-06T22:00:14.0080000-07:00|10FF0001|Sesuga Sapisuga|00010B7C|90349|90349|10000|10000|14||102.32|97.45|0.00|-1.86|1304|0|0|02|020005B1|0|41E5A7EB|||||| +21|2023-10-06T22:00:14.0090000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|724003|26810000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|57322|63151|10000|10000|||98.18|102.41|0.00|2.19|00010B86|0|1| +24|2023-10-06T22:00:14.0530000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|999|57322|63151|10000|10000|||98.18|102.41|0.00|2.19|10FF0007|Kehabiqo Febiqo|0|82621|90890|10000|10000|||95.19|97.37|0.00|1.28| +24|2023-10-06T22:00:14.0530000-07:00|10FF0006|Wowobora Gogobora|HoT|798|99E|57266|57266|1750|10000|||101.02|99.02|0.00|2.42|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +24|2023-10-06T22:00:14.0530000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|F92|58451|58451|10000|10000|||96.59|95.60|0.00|-1.68|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +24|2023-10-06T22:00:14.0530000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|9AB|90349|90349|10000|10000|||101.59|97.77|0.00|-2.07|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +24|2023-10-06T22:00:14.0530000-07:00|10FF000B|Pusu Rosu|HoT|798|9A7|55446|55446|5437|10000|||100.34|101.19|0.00|-1.61|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +24|2023-10-06T22:00:14.0530000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|996|82621|90890|10000|10000|||95.19|97.37|0.00|1.28|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +24|2023-10-06T22:00:14.0530000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|975|57322|63151|10000|10000|||98.18|102.41|0.00|2.19|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +24|2023-10-06T22:00:14.0530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|99F|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +24|2023-10-06T22:00:14.0530000-07:00|10FF0003|Gegehi Gehi|HoT|798|9A7|45092|51669|3050|10000|||104.05|108.69|0.00|-3.00|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +261|2023-10-06T22:00:13.7610000-07:00|Change|40021585||||||||||||| +24|2023-10-06T22:00:14.0530000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|24CA|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51|10FF0004|Buhojaqe Zijaqe|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51| +38|2023-10-06T22:00:14.0530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|85075|90890|10000|10000|14||95.19|97.37|0.00|1.28|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.0530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|90890|57078| +38|2023-10-06T22:00:14.0530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62200|63151|10000|10000|14||98.18|102.41|0.00|2.19|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.0530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|63151|57078| +38|2023-10-06T22:00:14.0530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|1750|10000|14||101.02|99.02|0.00|2.42|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.0530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|57266|57078| +38|2023-10-06T22:00:14.0530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|14||101.59|97.77|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.0530000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|90349|57078| +38|2023-10-06T22:00:14.0530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|57078|5300|10000|14||106.16|105.31|0.00|-2.51|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.0530000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|57078|57078| +38|2023-10-06T22:00:14.0530000-07:00|10FF0003|Gegehi Gehi|005A5A23|47563|51669|3050|10000|14||104.05|108.69|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.0530000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|51669|57078| +38|2023-10-06T22:00:14.0530000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5437|10000|14||100.34|101.19|0.00|-1.61|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.0530000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|55446|57078| +38|2023-10-06T22:00:14.0530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|14||96.59|95.60|0.00|-1.68|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.0530000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|58451|57078| +37|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|00010B7F|19270584||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|8B4D|Big Crunch|10FF0001|Sesuga Sapisuga|750003|1D250000|BC0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|90349|90349|10000|10000|||101.59|97.77|0.00|-2.07|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B87|0|8| +22|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|8B4D|Big Crunch|10FF000A|Dukaro Nezikaro|750003|53DA0000|F60E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|58451|58451|10000|10000|||96.59|95.60|0.00|-1.68|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B87|1|8| +22|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|8B4D|Big Crunch|10FF0007|Kehabiqo Febiqo|750003|11090000|430E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|82621|90890|10000|10000|||95.19|97.37|0.00|1.28|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B87|2|8| +22|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|8B4D|Big Crunch|10FF0006|Wowobora Gogobora|750003|45650000|40E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|57266|57266|1750|10000|||101.02|99.02|0.00|2.42|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B87|3|8| +22|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|8B4D|Big Crunch|10FF000B|Pusu Rosu|750003|48490000|4A0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|55446|55446|5437|10000|||100.34|101.19|0.00|-1.61|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B87|4|8| +22|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|8B4D|Big Crunch|10FF0008|Kokosaze Lulusaze|750003|4CCA0000|AE0E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|57322|63151|10000|10000|||98.18|102.41|0.00|2.19|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B87|5|8| +22|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|8B4D|Big Crunch|10FF0004|Buhojaqe Zijaqe|750003|43D30000|40E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|55690|57078|4750|10000|||106.16|105.31|0.00|-2.51|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B87|6|8| +22|2023-10-06T22:00:14.0970000-07:00|40021585|Zeromus|8B4D|Big Crunch|10FF0003|Gegehi Gehi|750003|5F9F0000|590E|EB10000|1B|8B4D8000|0|0|0|0|0|0|0|0|0|0|45092|51669|3050|10000|||104.05|108.69|0.00|-3.00|19284591|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010B87|7|8| +37|2023-10-06T22:00:14.1420000-07:00|10FF0003|Gegehi Gehi|00010B7C|51669|51669|3050|10000|14||104.05|108.69|0.00|-3.00|2305|0|0|02|090005B1|0|41E49788|||||| +24|2023-10-06T22:00:14.1420000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1C2C|57266|57266|1750|10000|||101.28|98.93|0.00|2.30|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||105.63|104.77|0.00|-2.45| +21|2023-10-06T22:00:14.1420000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|12660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19270584|40478540|10000|10000|||100.00|80.10|0.00|0.00|57266|57266|1750|10000|||101.28|98.93|0.00|2.30|00010B88|0|1| +38|2023-10-06T22:00:14.1420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|57266|2300|10000|14||101.28|98.93|0.00|2.30|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.1420000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|57266|57266| +37|2023-10-06T22:00:14.1870000-07:00|40021585|Zeromus|00010B81|19260034||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:14.1870000-07:00|40021585|Zeromus|00010B82|19259962||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:14.1870000-07:00|40021585|Zeromus|00010B7E|19244006||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:14.1870000-07:00|10FF0006|Wowobora Gogobora|57266|57266|2500|10000|||101.28|98.93|0.00|2.30| +261|2023-10-06T22:00:13.8760000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T22:00:14.2310000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19244006|40478540|10000|10000|||100.00|80.10|0.00|0.00|58451|58451|10000|10000|||95.92|96.14|0.00|-1.09|00010B89|0|1| +37|2023-10-06T22:00:14.2750000-07:00|10FF000B|Pusu Rosu|00010B7C|55446|55446|5437|10000|14||100.00|101.29|0.00|-1.61|1806|0|0|02|0A0005B1|0|41E38519|||||| +37|2023-10-06T22:00:14.2750000-07:00|40021585|Zeromus|00010B80|19234813||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:14.2760000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2A090000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|19244006|40478540|10000|10000|||100.00|80.10|0.00|0.00|90349|90349|10000|10000|||99.96|98.14|0.00|-2.39|00010B8A|0|1| +20|2023-10-06T22:00:14.2760000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.00|101.29|0.00|-1.61| +38|2023-10-06T22:00:14.2760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|14||99.96|98.14|0.00|-2.39|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:14.2760000-07:00|76E|Sword Oath|25.45|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|90349|90349| +37|2023-10-06T22:00:14.3200000-07:00|40021585|Zeromus|00010B83|19229909||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:14.3200000-07:00|40021585|Zeromus|00010B84|19228057||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:14.3640000-07:00|10FF000B|Pusu Rosu|55446|55446|5718|10000|||100.00|101.29|0.00|-1.61| +39|2023-10-06T22:00:14.3640000-07:00|10FF000A|Dukaro Nezikaro|58451|58451|10000|10000|||95.92|96.14|0.00|-1.09| +24|2023-10-06T22:00:14.3640000-07:00|10FF0003|Gegehi Gehi|HoT|0|1747|51669|51669|3050|10000|||104.05|108.69|0.00|-3.00|10FF000B|Pusu Rosu|0|55446|55446|5437|10000|||100.00|101.29|0.00|-1.61| +38|2023-10-06T22:00:14.3640000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|3050|10000|14||104.05|108.69|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:14.4100000-07:00|10FF0004|Buhojaqe Zijaqe|00010B7C|57078|57078|5300|10000|14||104.88|104.15|0.00|-2.30|1C07|0|0|02|030005B1|0|41E274B7|||||| +24|2023-10-06T22:00:14.4100000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|17BE|58451|58451|10000|10000|||96.73|96.68|0.00|-0.38|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||104.88|104.15|0.00|-2.30| +38|2023-10-06T22:00:14.4100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|58451|10000|10000|14||96.73|96.68|0.00|-0.38|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:14.4540000-07:00|10FF0007|Kehabiqo Febiqo|85983|90890|10000|10000|||97.11|98.86|-0.02|0.96| +24|2023-10-06T22:00:14.4540000-07:00|10FF000B|Pusu Rosu|HoT|0|1CFE|55446|55446|5718|10000|||99.96|101.30|0.00|-1.98|10FF0007|Kehabiqo Febiqo|0|85075|90890|10000|10000|||97.11|98.86|-0.02|0.96| +21|2023-10-06T22:00:14.4540000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|30F40000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|19228057|40478540|10000|10000|||100.00|80.10|0.00|0.00|51669|51669|3050|10000|||104.05|108.69|0.00|-3.00|00010B8B|0|1| +38|2023-10-06T22:00:14.4540000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|51669|2750|10000|14||104.05|108.69|0.00|-3.00|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.4540000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +26|2023-10-06T22:00:14.4540000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|51669|51669| +38|2023-10-06T22:00:14.4540000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|55446|5718|10000|14||99.96|101.30|0.00|-1.98|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:14.2240000-07:00|Change|10FF0007||||||||| +24|2023-10-06T22:00:14.5430000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9B4|85983|90890|10000|10000|||97.89|99.38|0.00|0.97|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||104.70|104.02|0.00|-2.18| +38|2023-10-06T22:00:14.5430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88467|90890|10000|10000|14||97.89|99.38|0.00|0.97|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:14.3210000-07:00|Change|10FF0003||| +24|2023-10-06T22:00:14.6330000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1D8D|90349|90349|10000|10000|||99.01|98.84|0.00|-2.70|10FF0004|Buhojaqe Zijaqe|0|57078|57078|5300|10000|||104.51|103.89|0.00|-2.06| +38|2023-10-06T22:00:14.6330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|90349|10000|10000|14||99.01|98.84|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:14.6770000-07:00|400218BF|Topaz Titan|005A5A00|0|54388|0|10000|0||96.34|114.52|0.00|2.98|0|0|0|||||||||| +26|2023-10-06T22:00:14.6770000-07:00|30|Well Fed|667.96|10FF0006|Wowobora Gogobora|400218BF|Topaz Titan|2964|54388|57266| +26|2023-10-06T22:00:14.6770000-07:00|441|HP Penalty|9999.00|E0000000||400218BF|Topaz Titan|00|54388|| +261|2023-10-06T22:00:14.3210000-07:00|Change|400218BF||||| +261|2023-10-06T22:00:14.3210000-07:00|Change|400218BF||||| +38|2023-10-06T22:00:14.7200000-07:00|400218C4||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T22:00:14.7220000-07:00|400218C4||005A5A00|54388|54388|10000|10000|0||||||0|0|0|||||||||| +37|2023-10-06T22:00:14.7220000-07:00|40021585|Zeromus|00010B85|19224060||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:14.5010000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:00:14.7660000-07:00|40021585|Zeromus|00010B86|19214203||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:14.7660000-07:00|40021585|Zeromus|00010B89|19211299||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:14.7660000-07:00|4002185F|Ruby Carbuncle|54201|54201|10000|10000|||103.72|93.31|0.00|-2.87| +20|2023-10-06T22:00:14.8100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|104.30|103.75|0.00|-1.93| +261|2023-10-06T22:00:14.5010000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:00:14.5010000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:00:14.9000000-07:00|40021585|Zeromus|00010B88|19206589||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:14.9450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88467|129844|10000|10000|0||101.55|100.07|0.00|1.48|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||10FF0007|Kehabiqo Febiqo|00|90890|| +38|2023-10-06T22:00:14.9450000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||103.72|93.31|0.00|-2.87|0|0|0||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||4002185F|Ruby Carbuncle|00|54201|| +38|2023-10-06T22:00:14.9450000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62200|90216|10000|10000|0||100.73|100.92|0.00|1.42|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||10FF0008|Kokosaze Lulusaze|00|63151|| +38|2023-10-06T22:00:14.9450000-07:00|40021585|Zeromus|005A5A00|19206589|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|EB0|Big Bang|0.00|E0000000||40021585|Zeromus|00|40478540|| +38|2023-10-06T22:00:14.9450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57266|81809|2500|10000|0||101.58|98.83|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||10FF0006|Wowobora Gogobora|00|57266|| +38|2023-10-06T22:00:14.9450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|90349|129071|10000|10000|0||99.01|98.84|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||10FF0001|Sesuga Sapisuga|00|90349|| +38|2023-10-06T22:00:14.9450000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57078|81541|5300|10000|0||104.30|103.75|0.00|-2.17|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|57078|| +38|2023-10-06T22:00:14.9450000-07:00|400218C4||005A5A00|54388|77698|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T22:00:14.5910000-07:00|Add|400218C4||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:14.9450000-07:00|10FF0003|Gegehi Gehi|005A5A23|51669|73814|2750|10000|0||104.05|108.65|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||10FF0003|Gegehi Gehi|00|51669|| +38|2023-10-06T22:00:14.9450000-07:00|10FF000B|Pusu Rosu|005A5A18|55446|79209|5718|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||10FF000B|Pusu Rosu|00|55446|| +38|2023-10-06T22:00:14.9450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58451|83502|10000|10000|0||99.16|100.66|0.00|0.25|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:14.9450000-07:00|441|HP Penalty|0.00|E0000000||10FF000A|Dukaro Nezikaro|00|58451|| +03|2023-10-06T22:00:14.5910000-07:00|400218C4|Carbuncle|00|5A|10FF0006|00||10261|13498|54388|77698|10000|10000|||101.45|97.10|0.00|0.09| +261|2023-10-06T22:00:14.5910000-07:00|Change|400218C4||| +37|2023-10-06T22:00:14.9890000-07:00|10FF0001|Sesuga Sapisuga|00010B87|82888|129071|10000|10000|0||99.01|98.84|0.00|-2.70|1300|0|0|01|02000EB1|0|41700000|| +30|2023-10-06T22:00:14.9890000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|90349|90890| +26|2023-10-06T22:00:14.9890000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0001|Sesuga Sapisuga|00|90349|40478540| +39|2023-10-06T22:00:14.9890000-07:00|10FF0003|Gegehi Gehi|52407|51669|2950|10000|||104.05|108.65|0.00|-3.03| +38|2023-10-06T22:00:14.9890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82888|129071|10000|10000|0||99.01|98.84|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:14.6920000-07:00|Change|400218C4||| +37|2023-10-06T22:00:15.0340000-07:00|10FF000A|Dukaro Nezikaro|00010B87|36985|83502|10000|10000|0||99.16|100.66|0.00|0.25|1E01|0|0|02|04000EB1|0|41700000|||||| +26|2023-10-06T22:00:15.0340000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF000A|Dukaro Nezikaro|00|58451|40478540| +38|2023-10-06T22:00:15.0340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|36985|83502|10000|10000|0||99.16|100.66|0.00|0.25|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:15.0340000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|58451|90890| +37|2023-10-06T22:00:15.0780000-07:00|10FF0007|Kehabiqo Febiqo|00010B87|84106|129844|10000|10000|0||101.66|99.50|0.00|1.73|1502|0|0|01|01000EB1|0|41700000|| +30|2023-10-06T22:00:15.0780000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:00:15.0780000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +38|2023-10-06T22:00:15.0780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|84106|129844|10000|10000|0||101.66|99.50|0.00|1.73|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:15.1230000-07:00|10FF0006|Wowobora Gogobora|00010B87|39501|81809|2500|10000|0||101.58|98.83|0.00|-3.06|1B03|0|0|01|0EB1|0|41700000|| +30|2023-10-06T22:00:15.1230000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +26|2023-10-06T22:00:15.1230000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +39|2023-10-06T22:00:15.1230000-07:00|10FF0004|Buhojaqe Zijaqe|57893|81541|5500|10000|||104.30|103.75|0.00|-2.44| +38|2023-10-06T22:00:15.1230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|39501|81809|2500|10000|0||101.58|98.83|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:15.1670000-07:00|10FF000B|Pusu Rosu|00010B87|36941|79209|5718|10000|0||99.96|101.30|0.00|3.14|1804|0|0|02|08000EB1|0|41700000|||||| +26|2023-10-06T22:00:15.1670000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF000B|Pusu Rosu|00|79209|40478540| +38|2023-10-06T22:00:15.1670000-07:00|10FF000B|Pusu Rosu|005A5A18|36941|79209|5718|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:15.1670000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF000B|Pusu Rosu|00|79209|129844| +37|2023-10-06T22:00:15.2120000-07:00|10FF0008|Kokosaze Lulusaze|00010B87|42542|90216|10000|10000|0||100.63|101.22|0.00|0.26|1F05|0|0|02|03000EB1|0|41700000|||||| +26|2023-10-06T22:00:15.2120000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +37|2023-10-06T22:00:15.2120000-07:00|40021585|Zeromus|00010B8B|19194057||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:15.2120000-07:00|10FF0003|Gegehi Gehi|00010B8B|52407|73814|2950|10000|0||104.04|108.13|0.00|-3.08|2300|0|0|01|0D0004D3|0|41F00000|| +21|2023-10-06T22:00:15.2120000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|23ED0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|19206589|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|79209|5718|10000|||99.96|101.30|0.00|3.14|00010B8C|0|1| +38|2023-10-06T22:00:15.2120000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|42542|90216|10000|10000|0||100.63|101.22|0.00|0.26|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:15.2120000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T22:00:15.2120000-07:00|10FF0003|Gegehi Gehi|005A5A23|52407|73814|2950|10000|0||104.04|108.13|0.00|-3.08|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:15.2560000-07:00|10FF0004|Buhojaqe Zijaqe|00010B87|40530|81541|5500|10000|0||104.30|103.75|0.00|-2.68|1C06|0|0|01|03000EB1|0|41700000|| +30|2023-10-06T22:00:15.2560000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +26|2023-10-06T22:00:15.2560000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +21|2023-10-06T22:00:15.2560000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|30C60000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|19206589|40478540|10000|10000|||100.00|80.10|0.00|0.00|36985|83502|10000|10000|||99.58|101.92|0.00|0.10|00010B8D|0|1| +38|2023-10-06T22:00:15.2560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40530|81541|5500|10000|0||104.30|103.75|0.00|-2.68|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:15.3000000-07:00|10FF0003|Gegehi Gehi|00010B87|27928|73814|2950|10000|0||104.02|107.17|0.00|-3.09|2307|0|0|02|04000EB1|0|41700000|||||| +26|2023-10-06T22:00:15.3000000-07:00|EB1|Big Bounce|15.00|40021585|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +38|2023-10-06T22:00:15.3000000-07:00|10FF0003|Gegehi Gehi|005A5A23|27928|73814|2950|10000|0||104.02|107.17|0.00|-3.09|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:15.3000000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +37|2023-10-06T22:00:15.5670000-07:00|40021585|Zeromus|00010B8A|19183296||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:15.2530000-07:00|Change|10FF0003||||||||||||| +24|2023-10-06T22:00:15.6560000-07:00|40021585|Zeromus|DoT|0|1738|19183296|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|82888|129071|10000|10000|||100.05|98.93|0.00|2.98| +36|2023-10-06T22:00:15.6570000-07:00|5FF0|3| +38|2023-10-06T22:00:15.6570000-07:00|40021585|Zeromus|005A5A00|19177352|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:00:15.7460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|26280000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|19177352|40478540|10000|10000|||100.00|80.10|0.00|0.00|40530|81541|5500|10000|||104.30|103.75|0.00|-2.96|00010B8E|0|1| +34|2023-10-06T22:00:15.7460000-07:00|400218C4|Carbuncle|400218C4|Carbuncle|01| +261|2023-10-06T22:00:15.4500000-07:00|Change|400218C4||| +37|2023-10-06T22:00:15.7890000-07:00|40021585|Zeromus|00010B8D|19164866||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:15.4500000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T22:00:15.8340000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|200004|214E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|36941|79209|5318|10000|||99.96|101.30|0.00|3.14|54201|77430|10000|10000|||103.72|93.31|0.00|-1.95|00010B8F|0|1| +261|2023-10-06T22:00:15.5440000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T22:00:15.9240000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|302B0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|19164866|40478540|10000|10000|||100.00|80.10|0.00|0.00|84106|129844|10000|10000|||98.80|97.37|0.00|3.03|00010B90|0|1| +38|2023-10-06T22:00:15.9240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|84106|129844|10000|10000|0||98.80|97.37|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:15.9240000-07:00|A75|Surging Tempest|34.73|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T22:00:16.0180000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|28410000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|19164866|40478540|10000|10000|||100.00|80.10|0.00|0.00|39501|81809|2500|10000|||101.26|99.53|0.00|-0.51|00010B91|0|1| +38|2023-10-06T22:00:16.0180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|39501|81809|2200|10000|0||101.26|99.53|0.00|-0.51|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:16.0180000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:00:15.6370000-07:00|Change|10FF0006||||||||||||| +21|2023-10-06T22:00:16.0570000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19164866|40478540|10000|10000|||100.00|80.10|0.00|0.00|82888|129071|10000|10000|||100.06|98.77|0.00|3.04|00010B92|0|1| +31|2023-10-06T22:00:16.0570000-07:00|10FF0001||||| +39|2023-10-06T22:00:16.1460000-07:00|10FF0008|Kokosaze Lulusaze|43444|90216|10000|10000|||100.48|101.49|0.00|-1.05| +261|2023-10-06T22:00:15.9770000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:00:16.3220000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19164866|40478540|10000|10000|||100.00|80.10|0.00|0.00|27928|73814|2950|10000|||99.64|100.59|0.00|-3.12|00010B93|0|1| +21|2023-10-06T22:00:16.4120000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19164866|40478540|10000|10000|||100.00|80.10|0.00|0.00|36985|83502|10000|10000|||99.72|102.31|0.00|3.13|00010B94|0|1| +37|2023-10-06T22:00:16.5010000-07:00|40021585|Zeromus|00010B8C|19155669||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:16.5010000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C722003|4C180000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|19164866|40478540|10000|10000|||100.00|80.10|0.00|0.00|43444|90216|10000|10000|||100.48|101.49|0.00|-1.17|00010B95|0|1| +37|2023-10-06T22:00:16.5450000-07:00|40021585|Zeromus|00010B8E|19145901||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:16.5890000-07:00|40021585|Zeromus|00010B92|19144037||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:16.5890000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19145901|40478540|10000|10000|||100.00|80.10|0.00|0.00|40530|81541|5100|10000|||104.21|103.67|-0.02|-2.51|00010B96|0|1| +37|2023-10-06T22:00:16.6340000-07:00|10FF000B|Pusu Rosu|00010B8F|45467||||||99.96|101.30|0.00|3.14| +21|2023-10-06T22:00:16.6340000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|95B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19145901|40478540|10000|10000|||100.00|80.10|0.00|0.00|43444|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010B97|0|1| +38|2023-10-06T22:00:16.6340000-07:00|40021585|Zeromus|005A5A00|19144037|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T22:00:16.6340000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +37|2023-10-06T22:00:16.6790000-07:00|40021585|Zeromus|00010B91|19133732||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:16.6790000-07:00|10FF0006|Wowobora Gogobora|00010B91|39501|81809|2200|10000|0||100.82|100.45|-0.02|-3.10|1B00|0|0|01|04000B25|0|0|| +21|2023-10-06T22:00:16.6790000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|12160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19144037|40478540|10000|10000|||100.00|80.10|0.00|0.00|39501|81809|2200|10000|||100.82|100.45|-0.02|-3.10|00010B98|0|1| +38|2023-10-06T22:00:16.6790000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|39501|81809|2200|10000|0||100.82|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:16.6790000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:00:16.7230000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||103.72|93.31|0.00|-0.44|0|0|0||||||||||||| +26|2023-10-06T22:00:16.7230000-07:00|7AE|Summon Order IV|30.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:00:16.7230000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40530|81541|5100|10000|||103.65|103.00|0.00|-2.43|40530|81541|5100|10000|||103.65|103.00|0.00|-2.43|00010B99|0|1| +22|2023-10-06T22:00:16.7240000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|24EC0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|00010B9A|0|8| +22|2023-10-06T22:00:16.7240000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|24C80000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|43444|90216|10000|10000|||100.48|101.49|0.00|-3.12|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|00010B9A|1|8| +22|2023-10-06T22:00:16.7240000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|240D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|36985|83502|10000|10000|||99.72|102.31|0.00|3.13|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|00010B9A|2|8| +22|2023-10-06T22:00:16.7240000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|24F90000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|39501|81809|2200|10000|||100.82|100.45|-0.02|-3.10|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|00010B9A|3|8| +22|2023-10-06T22:00:16.7240000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|23810000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|27928|73814|2950|10000|||99.91|99.77|-0.01|-3.12|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|00010B9A|4|8| +22|2023-10-06T22:00:16.7240000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|200004|38250000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|82888|129071|10000|10000|||100.06|98.77|0.00|-3.14|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|00010B9A|5|8| +22|2023-10-06T22:00:16.7240000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|24BD0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|40530|81541|5100|10000|||103.65|103.00|0.00|-2.43|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|00010B9A|6|8| +22|2023-10-06T22:00:16.7240000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|24D00000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|84106|129844|10000|10000|||98.80|97.37|-0.02|3.07|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|00010B9A|7|8| +21|2023-10-06T22:00:16.7670000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|42210000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|19144037|40478540|10000|10000|||100.00|80.10|0.00|0.00|82888|129071|10000|10000|||100.06|98.77|0.00|-3.14|00010B9B|0|1| +38|2023-10-06T22:00:16.7670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82888|129071|10000|10000|0||100.06|98.77|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:16.7670000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T22:00:16.7670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40530|81541|5100|10000|0||103.65|103.00|0.00|-2.43|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:16.7670000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +39|2023-10-06T22:00:16.8120000-07:00|10FF0001|Sesuga Sapisuga|84178|129071|10000|10000|||100.06|98.77|0.00|-3.14| +21|2023-10-06T22:00:16.8120000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19133732|40478540|10000|10000|||100.00|80.10|0.00|0.00|39501|81809|2200|10000|||100.82|100.45|0.00|-3.10|00010B9C|0|1| +37|2023-10-06T22:00:16.8560000-07:00|40021585|Zeromus|00010B93|19133731||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:00:16.9000000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|25D20000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|84106|129844|10000|10000|||98.83|97.37|0.00|3.08|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44|00010B9D|0|8| +22|2023-10-06T22:00:16.9000000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|4|25ED0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|82888|129071|10000|10000|||100.06|98.77|0.00|-3.14|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44|00010B9D|1|8| +22|2023-10-06T22:00:16.9000000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|252F0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|27928|73814|2950|10000|||99.96|99.63|0.00|-3.12|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44|00010B9D|2|8| +22|2023-10-06T22:00:16.9000000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|25290000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|39501|81809|2200|10000|||100.82|100.45|0.00|-3.10|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44|00010B9D|3|8| +22|2023-10-06T22:00:16.9000000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|24110000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|43444|90216|10000|10000|||100.48|101.49|0.00|-3.12|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44|00010B9D|4|8| +22|2023-10-06T22:00:16.9000000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF000B|Pusu Rosu|200004|3C7D0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44|00010B9D|5|8| +22|2023-10-06T22:00:16.9000000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|25EE0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|40530|81541|5100|10000|||103.51|102.89|-0.02|-1.70|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44|00010B9D|6|8| +22|2023-10-06T22:00:16.9000000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|4|26070000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|36985|83502|10000|10000|||99.72|102.31|0.00|3.13|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44|00010B9D|7|8| +38|2023-10-06T22:00:16.9000000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|39501|81809|2200|10000|0||100.82|100.45|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:16.9000000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +37|2023-10-06T22:00:16.9450000-07:00|40021585|Zeromus|00010B94|19130914||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:17.0330000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|99.96|99.63|0.00|-3.12| +38|2023-10-06T22:00:17.0330000-07:00|10FF000B|Pusu Rosu|005A5A18|45467|79209|5318|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:17.0330000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|1E|79209|81541| +24|2023-10-06T22:00:17.0770000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|15F6|43444|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0007|Kehabiqo Febiqo|FFFFFFFF|84106|129844|10000|10000|||98.87|97.37|0.00|3.10| +24|2023-10-06T22:00:17.0770000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|99F|43444|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0007|Kehabiqo Febiqo|0|84106|129844|10000|10000|||98.87|97.37|0.00|3.10| +24|2023-10-06T22:00:17.0770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|972|84106|129844|10000|10000|||98.87|97.37|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0770000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|103C|84178|129071|10000|10000|||100.06|98.77|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0770000-07:00|10FF0003|Gegehi Gehi|HoT|798|9F2|27928|73814|2950|10000|||99.96|99.63|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0770000-07:00|10FF0006|Wowobora Gogobora|HoT|798|9CE|39501|81809|2200|10000|||100.82|100.45|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0770000-07:00|10FF000B|Pusu Rosu|HoT|798|9C6|45467|79209|5318|10000|||99.96|101.30|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0770000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|9A3|43444|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0780000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|98B|36985|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|9C7|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0780000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|14CA|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +24|2023-10-06T22:00:17.0780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1738|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76|10FF0004|Buhojaqe Zijaqe|0|40530|81541|5100|10000|||103.33|102.73|-0.02|-0.76| +38|2023-10-06T22:00:17.0780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86524|129844|10000|10000|0||98.87|97.37|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:00:17.0780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|42752|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:00:17.0780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42011|81809|2200|10000|0||100.82|100.45|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:00:17.0780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|88334|129071|10000|10000|0||100.06|98.77|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:00:17.0780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|43655|81541|5650|10000|0||103.33|102.73|-0.02|-0.76|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:00:17.0780000-07:00|10FF0003|Gegehi Gehi|005A5A23|30474|73814|2950|10000|0||99.96|99.63|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:00:17.0780000-07:00|10FF000B|Pusu Rosu|005A5A18|47969|79209|5318|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:00:17.0780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39428|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T22:00:16.6960000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:00:17.1220000-07:00|40021585|Zeromus|00010B96|19130842||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:17.1660000-07:00|10FF0006|Wowobora Gogobora|DoT|0|1378|42011|81809|2200|10000|||100.82|100.45|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|43655|81541|5650|10000|||103.26|102.68|0.00|-0.42| +24|2023-10-06T22:00:17.1660000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1754|42011|81809|2200|10000|||100.82|100.45|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|43655|81541|5650|10000|||103.26|102.68|0.00|-0.42| +21|2023-10-06T22:00:17.1660000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19130914|40478540|10000|10000|||100.00|80.10|0.00|0.00|86524|129844|10000|10000|||98.88|97.37|0.00|3.11|00010B9E|0|1| +38|2023-10-06T22:00:17.1660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42999|81809|2750|10000|0||100.82|100.45|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:17.1660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|39428|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:17.1660000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|83502|81541| +261|2023-10-06T22:00:16.8140000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:00:17.2110000-07:00|10FF0006|Wowobora Gogobora|43817|81809|2950|10000|||100.82|100.45|0.00|-3.10| +37|2023-10-06T22:00:17.3000000-07:00|40021585|Zeromus|00010B95|19111362||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:17.3000000-07:00|10FF000B|Pusu Rosu|00010B9A|57421||||||99.96|101.30|0.00|3.14| +38|2023-10-06T22:00:17.3000000-07:00|400218C4|Carbuncle|005A5A00|54388|77698|10000|10000|0||102.17|98.83|0.00|0.31|0|0|0|||||||||| +26|2023-10-06T22:00:17.3000000-07:00|30|Well Fed|665.33|10FF0006|Wowobora Gogobora|400218C4|Carbuncle|2964|77698|81809| +26|2023-10-06T22:00:17.3000000-07:00|A8F|Searing Light|4.54|10FF0006|Wowobora Gogobora|400218C4|Carbuncle|00|77698|81809| +26|2023-10-06T22:00:17.3000000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|400218C4|Carbuncle|01|77698|81809| +21|2023-10-06T22:00:17.3000000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43817|81809|2950|10000|||100.82|100.45|0.00|-3.10|43817|81809|2950|10000|||100.82|100.45|0.00|-3.10|00010B9F|0|1| +38|2023-10-06T22:00:17.3000000-07:00|10FF0003|Gegehi Gehi|005A5A23|30474|73814|2950|10000|0||99.96|99.63|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:17.3000000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +261|2023-10-06T22:00:16.9330000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T22:00:17.3440000-07:00|40021585|Zeromus|00010B9C|19111288||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:17.3440000-07:00|10FF000B|Pusu Rosu|58213|79209|5599|10000|||99.96|101.30|0.00|3.14| +39|2023-10-06T22:00:17.3440000-07:00|10FF000A|Dukaro Nezikaro|40263|83502|10000|10000|||99.72|102.31|0.00|3.13| +261|2023-10-06T22:00:17.0430000-07:00|Change|10FF000B||| +37|2023-10-06T22:00:17.3890000-07:00|40021585|Zeromus|00010B97|19108893||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:17.3890000-07:00|10FF0003|Gegehi Gehi|DoT|0|180B|30474|73814|2950|10000|||99.96|99.63|0.00|-3.13|10FF0003|Gegehi Gehi|FFFFFFFF|30474|73814|2950|10000|||99.96|99.63|0.00|-3.13| +24|2023-10-06T22:00:17.3890000-07:00|10FF0003|Gegehi Gehi|HoT|0|178F|30474|73814|2950|10000|||99.96|99.63|0.00|-3.13|10FF0003|Gegehi Gehi|0|30474|73814|2950|10000|||99.96|99.63|0.00|-3.13| +38|2023-10-06T22:00:17.3890000-07:00|10FF0003|Gegehi Gehi|005A5A23|30350|73814|2950|10000|0||99.96|99.63|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:17.4340000-07:00|40021585|Zeromus|00010B98|19104263||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:17.4340000-07:00|10FF0008|Kokosaze Lulusaze|00010B9A|52168||||||100.48|101.49|0.00|-3.12| +24|2023-10-06T22:00:17.4340000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1650|40519|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|43655|81541|5250|10000|||102.96|102.44|-0.02|-3.03| +24|2023-10-06T22:00:17.4340000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1750|40519|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|43655|81541|5250|10000|||102.96|102.44|-0.02|-3.03| +21|2023-10-06T22:00:17.4340000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F1C0E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|19104263|40478540|10000|10000|||100.00|80.10|0.00|0.00|43655|81541|5250|10000|||102.96|102.44|-0.02|-3.03|00010BA0|0|1| +38|2023-10-06T22:00:17.4340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|52168|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:17.4340000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +38|2023-10-06T22:00:17.4340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|40519|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:17.4780000-07:00|10FF0007|Kehabiqo Febiqo|87822|129844|10000|10000|||98.89|97.37|0.00|3.11| +24|2023-10-06T22:00:17.4780000-07:00|10FF000B|Pusu Rosu|DoT|0|14AE|58213|79209|5599|10000|||99.96|101.30|0.00|3.14|10FF0007|Kehabiqo Febiqo|FFFFFFFF|86524|129844|10000|10000|||98.89|97.37|0.00|3.11| +24|2023-10-06T22:00:17.4780000-07:00|10FF000B|Pusu Rosu|HoT|0|1718|58213|79209|5599|10000|||99.96|101.30|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|86524|129844|10000|10000|||98.89|97.37|0.00|3.11| +21|2023-10-06T22:00:17.4780000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|1A890000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|19104263|40478540|10000|10000|||100.00|80.10|0.00|0.00|40519|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BA1|0|1| +38|2023-10-06T22:00:17.4780000-07:00|10FF000B|Pusu Rosu|005A5A18|58831|79209|5599|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:00:17.5220000-07:00|400218C4|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|43817|81809|2950|10000|||100.82|100.45|0.00|-3.10|54388|77698|10000|10000|||102.24|99.07|0.00|0.12|00010BA2|0|1| +38|2023-10-06T22:00:17.5220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|43817|81809|2950|10000|19||100.82|100.45|0.00|-3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:17.5220000-07:00|A8E|Radiant Aegis|29.96|400218C4|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T22:00:17.5680000-07:00|40021585|Zeromus|00010B90|19091932||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:17.5680000-07:00|10FF000A|Dukaro Nezikaro|00010B9A|49748||||||99.72|102.31|0.00|3.13| +24|2023-10-06T22:00:17.5680000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|CF0|87822|129844|10000|10000|||98.89|97.37|0.00|3.11|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|43655|81541|5250|10000|||102.85|102.35|0.00|-3.03| +24|2023-10-06T22:00:17.5680000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|93E|87822|129844|10000|10000|||98.89|97.37|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|43655|81541|5250|10000|||102.85|102.35|0.00|-3.03| +38|2023-10-06T22:00:17.5680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|86876|129844|10000|10000|0||98.89|97.37|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:17.5680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|88334|129071|10000|10000|0||99.94|98.52|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:17.5680000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +261|2023-10-06T22:00:17.2500000-07:00|Change|10FF0003||||||||||| +22|2023-10-06T22:00:17.6120000-07:00|10FF000B|Pusu Rosu|DF1|Asylum|10FF000B|Pusu Rosu|BD2D0F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58831|79209|5599|10000|||99.96|101.30|0.00|3.14|58831|79209|5599|10000|||99.96|101.30|0.00|3.14|00010BA3|0|1| +261|2023-10-06T22:00:17.2500000-07:00|Change|10FF000B||||||||| +24|2023-10-06T22:00:17.6570000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|EF6|88334|129071|10000|10000|||99.94|98.52|0.00|2.97|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|43655|81541|5250|10000|||102.72|102.25|0.00|-3.03| +24|2023-10-06T22:00:17.6570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1F36|88334|129071|10000|10000|||99.94|98.52|0.00|2.97|10FF0004|Buhojaqe Zijaqe|0|43655|81541|5250|10000|||102.72|102.25|0.00|-3.03| +38|2023-10-06T22:00:17.6570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|92494|129071|10000|10000|0||99.94|98.52|0.00|2.97|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:17.3530000-07:00|Change|10FF0006||| +37|2023-10-06T22:00:17.7010000-07:00|40021585|Zeromus|00010B9E|19088969||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:17.7010000-07:00|10FF0007|Kehabiqo Febiqo|00010B9D|96558||||||98.89|97.37|0.00|3.11| +37|2023-10-06T22:00:17.7010000-07:00|10FF0006|Wowobora Gogobora|00010B9A|53282||||||100.82|100.45|0.00|-3.10| +38|2023-10-06T22:00:17.7010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|96558|129844|10000|10000|0||98.89|97.37|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:17.7010000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +39|2023-10-06T22:00:17.7450000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||103.72|93.31|0.00|-0.44| +37|2023-10-06T22:00:17.8340000-07:00|10FF0001|Sesuga Sapisuga|00010B9D|102203||||||99.91|98.54|0.00|2.96| +37|2023-10-06T22:00:17.8340000-07:00|10FF0003|Gegehi Gehi|00010B9A|39439||||||99.96|99.63|0.00|3.14| +37|2023-10-06T22:00:17.8780000-07:00|40021585|Zeromus|00010BA1|19082176||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:17.8780000-07:00|40021585|Zeromus|005A5A00|19082176|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:00:17.8780000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|81809| +37|2023-10-06T22:00:17.9670000-07:00|10FF0003|Gegehi Gehi|00010B9D|48958||||||99.96|99.63|0.00|3.14| +37|2023-10-06T22:00:17.9670000-07:00|10FF0001|Sesuga Sapisuga|00010B9A|116576||||||99.82|98.54|0.00|2.95| +39|2023-10-06T22:00:17.9670000-07:00|10FF0003|Gegehi Gehi|49696|73814|3150|10000|||99.96|99.63|0.00|3.14| +261|2023-10-06T22:00:17.7480000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:00:18.0570000-07:00|40021585|Zeromus|00010B9B|19065247||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:18.0570000-07:00|40021585|Zeromus|00010BA0|19065247|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T22:00:18.0570000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +37|2023-10-06T22:00:18.1010000-07:00|10FF0006|Wowobora Gogobora|00010B9D|62795||||||100.77|100.61|0.00|-1.12| +37|2023-10-06T22:00:18.1010000-07:00|10FF0004|Buhojaqe Zijaqe|00010B9A|53060||||||102.49|102.07|0.00|-3.03| +39|2023-10-06T22:00:18.1010000-07:00|10FF0004|Buhojaqe Zijaqe|53875|81541|5450|10000|||102.49|102.07|0.00|-3.03| +37|2023-10-06T22:00:18.2350000-07:00|10FF0008|Kokosaze Lulusaze|00010B9D|61401||||||100.48|101.49|0.00|-3.12| +37|2023-10-06T22:00:18.2350000-07:00|10FF0007|Kehabiqo Febiqo|00010B9A|105982||||||98.89|97.37|0.00|3.11| +37|2023-10-06T22:00:18.3240000-07:00|10FF0006|Wowobora Gogobora|00010BA2|62795|81809|2950|10000|19||100.70|100.81|0.00|-0.55|1B00|0|0|01|04000A8E|0|41E9978B|| +21|2023-10-06T22:00:18.3240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|70D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19065247|40478540|10000|10000|||100.00|80.10|0.00|0.00|116576|129071|10000|10000|||99.94|98.57|0.00|2.92|00010BA4|0|1| +38|2023-10-06T22:00:18.3240000-07:00|400218C4|Carbuncle|005A5A00|54388|77698|10000|10000|0||102.28|99.23|0.00|-0.83|0|0|0||||||| +30|2023-10-06T22:00:18.3240000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|400218C4|Carbuncle|01|77698|81809| +31|2023-10-06T22:00:18.3240000-07:00|10FF0001||||| +37|2023-10-06T22:00:18.3690000-07:00|10FF000B|Pusu Rosu|00010B9D|74316||||||99.96|101.30|0.00|-0.88| +21|2023-10-06T22:00:18.3690000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16530000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|19065247|40478540|10000|10000|||100.00|80.10|0.00|0.00|105982|129844|10000|10000|||98.89|97.37|0.00|3.11|00010BA5|0|1| +24|2023-10-06T22:00:18.4580000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|A37|49748|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88| +24|2023-10-06T22:00:18.4580000-07:00|10FF000B|Pusu Rosu|HoT|777|A05|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88|10FF000B|Pusu Rosu|0|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88| +24|2023-10-06T22:00:18.4580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A22|61401|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF000B|Pusu Rosu|0|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88| +24|2023-10-06T22:00:18.4580000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A1B|62795|81809|2950|10000|||100.68|100.88|0.00|-0.35|10FF000B|Pusu Rosu|0|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88| +24|2023-10-06T22:00:18.4580000-07:00|10FF0003|Gegehi Gehi|HoT|777|A46|49696|73814|3150|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88| +24|2023-10-06T22:00:18.4580000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A04|53875|81541|5450|10000|||102.49|102.07|0.00|-3.03|10FF000B|Pusu Rosu|0|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88| +24|2023-10-06T22:00:18.4580000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|FF9|116576|129071|10000|10000|||100.03|98.59|0.00|2.92|10FF000B|Pusu Rosu|0|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88| +24|2023-10-06T22:00:18.4580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A2D|105982|129844|10000|10000|||98.89|97.37|0.00|3.08|10FF000B|Pusu Rosu|0|74316|79209|5599|10000|||99.96|101.30|0.00|-0.88| +37|2023-10-06T22:00:18.4580000-07:00|10FF000B|Pusu Rosu|00010BA3|76881|79209|5599|10000|0||99.96|101.30|0.00|-0.88|1800|0|0|02|07000777|0|41C00000|||||| +26|2023-10-06T22:00:18.4580000-07:00|777|Asylum|24.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +26|2023-10-06T22:00:18.4580000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:00:18.4580000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|454003|2CD50000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|19065247|40478540|10000|10000|||100.00|80.10|0.00|0.00|49696|73814|3150|10000|||99.96|99.63|0.00|3.14|00010BA6|0|1| +38|2023-10-06T22:00:18.4580000-07:00|10FF0003|Gegehi Gehi|005A5A23|52326|73814|2950|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:18.4580000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +26|2023-10-06T22:00:18.4580000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:00:18.4580000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:00:18.4580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108587|129844|10000|10000|0||98.89|97.37|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:18.4580000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:18.4580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63995|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:18.4580000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:18.4580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65382|81809|2950|10000|19||100.68|100.88|0.00|-0.35|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:18.4580000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:18.4580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|120665|129071|10000|10000|0||100.03|98.59|0.00|2.92|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:18.4580000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:18.4580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56439|81541|5450|10000|0||102.49|102.07|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:18.4580000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:18.4580000-07:00|10FF000B|Pusu Rosu|005A5A18|76881|79209|5599|10000|0||99.96|101.30|0.00|-0.88|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:18.4580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52363|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:18.4580000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:00:18.5010000-07:00|10FF0004|Buhojaqe Zijaqe|00010B9D|66149||||||102.49|102.07|0.00|-3.03| +21|2023-10-06T22:00:18.5020000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|456003|50310000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|19065247|40478540|10000|10000|||100.00|80.10|0.00|0.00|62795|81809|2950|10000|||100.68|100.88|0.00|-0.35|00010BA7|0|1| +38|2023-10-06T22:00:18.5020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65382|81809|2650|10000|19||100.68|100.88|0.00|-0.35|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:18.5020000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +04|2023-10-06T22:00:18.2090000-07:00|400218BF|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|54388|0|10000|||96.34|114.52|0.00|2.98| +261|2023-10-06T22:00:18.2090000-07:00|Add|400218C8||||||||||||||||||||||||||||| +261|2023-10-06T22:00:18.2090000-07:00|Remove|400218BF| +21|2023-10-06T22:00:18.5910000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|89F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19065247|40478540|10000|10000|||100.00|80.10|0.00|0.00|52363|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BA8|0|1| +261|2023-10-06T22:00:18.3040000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T22:00:18.6350000-07:00|10FF000A|Dukaro Nezikaro|00010B9D|62098||||||99.72|102.31|0.00|3.13| +38|2023-10-06T22:00:18.6350000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||103.72|93.31|0.00|-0.44|0|0|0||||||||||||| +30|2023-10-06T22:00:18.6350000-07:00|7AE|Summon Order IV|0.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +24|2023-10-06T22:00:18.6800000-07:00|40021585|Zeromus|DoT|0|14AA|19065247|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|120665|129071|10000|10000|||100.11|98.61|0.00|2.92| +36|2023-10-06T22:00:18.6800000-07:00|60CC|3| +38|2023-10-06T22:00:18.6800000-07:00|40021585|Zeromus|005A5A00|19059957|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:00:18.3940000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:00:18.8570000-07:00|40021585|Zeromus|00010BA4|19058152||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:18.9020000-07:00|40021585|Zeromus|00010BA5|19052437||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:18.9910000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|65FE0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|19052437|40478540|10000|10000|||100.00|80.10|0.00|0.00|63995|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BA9|0|1| +38|2023-10-06T22:00:19.0800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66149|81541|5450|10000|0||102.47|102.07|0.00|-2.21|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:19.0800000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:00:18.7700000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:00:19.1240000-07:00|40021585|Zeromus|00010BA7|19031908||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:19.1240000-07:00|10FF0006|Wowobora Gogobora|00010BA7|65382|81809|2650|10000|19||100.63|101.03|0.00|-3.11|1B00|0|0|01|08000B25|0|0|| +37|2023-10-06T22:00:19.1240000-07:00|40021585|Zeromus|00010BA8|19029701||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:19.1240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65382|81809|2650|10000|19||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:19.1680000-07:00|10FF0008|Kokosaze Lulusaze|64897|90216|10000|10000|||100.48|101.49|0.00|-3.12| +21|2023-10-06T22:00:19.1690000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|452003|1D500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19052437|40478540|10000|10000|||100.00|80.10|0.00|0.00|65382|81809|2650|10000|||100.63|101.03|0.00|-3.11|00010BAA|0|1| +21|2023-10-06T22:00:19.1690000-07:00|10FF000B|Pusu Rosu|4097|Afflatus Misery|40021585|Zeromus|750003|98DC0000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|19052437|40478540|10000|10000|||100.00|80.10|0.00|0.00|76881|79209|5599|10000|||99.96|101.30|0.00|-0.88|00010BAB|0|1| +21|2023-10-06T22:00:19.1690000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2F460000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|108587|129844|10000|10000|||99.18|99.14|0.00|-0.96|19052437|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BAC|0|1| +38|2023-10-06T22:00:19.1690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65382|81809|2650|10000|19||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:19.1690000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:00:18.8880000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:00:19.2570000-07:00|40021585|Zeromus|00010BA6|19018224||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:19.3010000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19018224|40478540|10000|10000|||100.00|80.10|0.00|0.00|64897|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BAD|0|1| +21|2023-10-06T22:00:19.3470000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2EC40000|4|29078000|0|0|0|0|0|0|0|0|0|0|0|0|19018224|40478540|10000|10000|||100.00|80.10|0.00|0.00|120665|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010BAE|0|1| +38|2023-10-06T22:00:19.3470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|120665|129071|9000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:19.3470000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T22:00:19.4350000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|554003|31BF0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|19018224|40478540|10000|10000|||100.00|80.10|0.00|0.00|52326|73814|2950|10000|||99.96|99.63|0.00|3.14|00010BAF|0|1| +38|2023-10-06T22:00:19.4350000-07:00|10FF0003|Gegehi Gehi|005A5A23|52326|73814|2650|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:19.4350000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:00:19.4350000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:00:19.1120000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T22:00:19.1120000-07:00|Remove|400218BC| +261|2023-10-06T22:00:19.1120000-07:00|Change|4002185F||||||||||| +21|2023-10-06T22:00:19.5680000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|25520000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|52326|73814|2650|10000|||99.96|99.63|0.00|3.14|54201|77430|10000|10000|||101.35|96.99|0.00|-0.57|00010BB0|0|1| +38|2023-10-06T22:00:19.5680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66149|81541|5450|10000|0||101.63|100.95|0.00|-2.42|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:19.5680000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:00:19.3150000-07:00|Change|10FF0003||| +21|2023-10-06T22:00:19.6130000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|3D5F0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|19018224|40478540|10000|10000|||100.00|80.10|0.00|0.00|62098|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BB1|0|1| +37|2023-10-06T22:00:19.7450000-07:00|40021585|Zeromus|00010BAB|18979092||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:19.7460000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|19018224|40478540|10000|10000|||100.00|80.10|0.00|0.00|66149|81541|5450|10000|||101.60|100.91|0.00|-2.46|00010BB2|0|1| +37|2023-10-06T22:00:19.7900000-07:00|40021585|Zeromus|00010BA9|18952982||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:19.7900000-07:00|10FF0001|Sesuga Sapisuga|121955|129071|9200|10000|||100.11|98.61|0.00|-3.14| +20|2023-10-06T22:00:19.8340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.57|100.87|0.00|-2.52| +37|2023-10-06T22:00:19.9230000-07:00|40021585|Zeromus|00010BAA|18945478||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:19.9680000-07:00|10FF0007|Kehabiqo Febiqo|00010BAC|96485||||||99.72|98.83|0.00|-3.14| +21|2023-10-06T22:00:19.9680000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|5C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18945478|40478540|10000|10000|||100.00|80.10|0.00|0.00|65382|81809|2650|10000|||100.63|101.03|0.00|-3.11|00010BB3|0|1| +37|2023-10-06T22:00:20.0130000-07:00|40021585|Zeromus|00010BB1|18929767||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:20.0580000-07:00|40021585|Zeromus|00010BAD|18927390||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:20.0580000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|16B5|64897|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0007|Kehabiqo Febiqo|FFFFFFFF|96485|129844|10000|10000|||99.72|98.83|0.00|-3.14| +24|2023-10-06T22:00:20.0580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9D3|64897|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0007|Kehabiqo Febiqo|0|96485|129844|10000|10000|||99.72|98.83|0.00|-3.14| +24|2023-10-06T22:00:20.0580000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|132B|66149|81541|5450|10000|||101.55|100.85|0.00|-2.87|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|66149|81541|5450|10000|||101.55|100.85|0.00|-2.87| +24|2023-10-06T22:00:20.0580000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1EE0|66149|81541|5450|10000|||101.55|100.85|0.00|-2.87|10FF0004|Buhojaqe Zijaqe|0|66149|81541|5450|10000|||101.55|100.85|0.00|-2.87| +38|2023-10-06T22:00:20.0580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61599|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:20.0580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69146|81541|5450|10000|0||101.55|100.85|0.00|-2.87|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:20.1020000-07:00|40021585|Zeromus|00010BAE|18915418||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:20.1020000-07:00|10FF0001|Sesuga Sapisuga|00010BAE|129071||||||100.11|98.61|0.00|-3.14| +24|2023-10-06T22:00:20.1480000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|65382|81809|2650|10000|||100.63|101.03|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|66149|81541|5450|10000|||101.55|100.85|0.00|-2.87| +24|2023-10-06T22:00:20.1480000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1669|65382|81809|2650|10000|||100.63|101.03|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|66149|81541|5450|10000|||101.55|100.85|0.00|-2.87| +38|2023-10-06T22:00:20.1480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71119|81809|3200|10000|13||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:19.8370000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:00:19.8370000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:00:20.1920000-07:00|40021585|Zeromus|00010BAF|18902683||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:20.1920000-07:00|10FF0003|Gegehi Gehi|00010BAF|52326|73814|2650|10000|0||99.96|99.63|0.00|3.14|2300|0|0|01|0A0004D2|0|41F00000|| +39|2023-10-06T22:00:20.1920000-07:00|10FF0006|Wowobora Gogobora|71937|81809|3400|10000|||100.63|101.03|0.00|-3.11| +21|2023-10-06T22:00:20.1920000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|2F0A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18915418|40478540|10000|10000|||100.00|80.10|0.00|0.00|52326|73814|2650|10000|||99.96|99.63|0.00|3.14|00010BB4|0|1| +38|2023-10-06T22:00:20.1920000-07:00|10FF0003|Gegehi Gehi|005A5A23|52326|73814|2650|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:20.2820000-07:00|40021585|Zeromus|00010BB2|18902563||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:20.3710000-07:00|10FF0003|Gegehi Gehi|00010BB0|61880||||||99.96|99.63|0.00|3.14| +39|2023-10-06T22:00:20.3710000-07:00|10FF000B|Pusu Rosu|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +39|2023-10-06T22:00:20.3710000-07:00|10FF000A|Dukaro Nezikaro|62933|83502|10000|10000|||99.72|102.31|0.00|3.13| +24|2023-10-06T22:00:20.3710000-07:00|10FF0003|Gegehi Gehi|DoT|0|18BA|52326|73814|2650|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|FFFFFFFF|76881|79209|5599|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.3710000-07:00|10FF0003|Gegehi Gehi|HoT|0|17D7|52326|73814|2650|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|76881|79209|5599|10000|||99.96|101.30|0.00|3.14| +38|2023-10-06T22:00:20.3710000-07:00|10FF0003|Gegehi Gehi|005A5A23|61653|73814|2650|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:20.0700000-07:00|Change|10FF000B||| +24|2023-10-06T22:00:20.4150000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|16D9|62098|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|69146|81541|5450|10000|||101.55|100.85|0.00|-3.06| +24|2023-10-06T22:00:20.4150000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1F26|62098|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|69146|81541|5450|10000|||101.55|100.85|0.00|-3.06| +38|2023-10-06T22:00:20.4160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65058|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:20.4600000-07:00|10FF0007|Kehabiqo Febiqo|97783|129844|10000|10000|||99.72|98.75|0.00|-3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|9DC|65058|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF000B|Pusu Rosu|HoT|777|A25|77673|79209|5880|10000|||99.96|101.30|0.00|3.14|10FF000B|Pusu Rosu|0|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|F16|61599|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF000B|Pusu Rosu|0|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF0006|Wowobora Gogobora|HoT|777|9EE|71937|81809|3400|10000|||100.63|101.03|0.00|-3.11|10FF000B|Pusu Rosu|0|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF0003|Gegehi Gehi|HoT|777|A50|61653|73814|2650|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A5B|69146|81541|5450|10000|||101.55|100.85|0.00|-3.07|10FF000B|Pusu Rosu|0|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|9D8|96485|129844|10000|10000|||99.72|98.75|0.00|-3.14|10FF000B|Pusu Rosu|0|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A2D|129071|129071|9200|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|77673|79209|5880|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF000B|Pusu Rosu|DoT|0|149B|77673|79209|5880|10000|||99.96|101.30|0.00|3.14|10FF0007|Kehabiqo Febiqo|FFFFFFFF|96485|129844|10000|10000|||99.72|98.75|0.00|-3.14| +24|2023-10-06T22:00:20.4600000-07:00|10FF000B|Pusu Rosu|HoT|0|1E8D|77673|79209|5880|10000|||99.96|101.30|0.00|3.14|10FF0007|Kehabiqo Febiqo|0|96485|129844|10000|10000|||99.72|98.75|0.00|-3.14| +38|2023-10-06T22:00:20.4600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100303|129844|10000|10000|0||99.72|98.75|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:20.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:20.4600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65461|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:20.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:20.4600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74479|81809|3400|10000|13||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:20.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:20.4600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:20.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:20.4600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71797|81541|5450|10000|0||101.55|100.85|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:20.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:20.4600000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5880|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:20.4600000-07:00|10FF0003|Gegehi Gehi|005A5A23|64293|73814|2650|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:20.4600000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:20.4600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67582|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:20.4600000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:00:20.1820000-07:00|Change|10FF0001||| +37|2023-10-06T22:00:20.5040000-07:00|40021585|Zeromus|00010BB3|18902471||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:20.5490000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|D10|96485|129844|10000|10000|||99.72|98.75|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|69146|81541|5450|10000|||101.55|100.85|0.00|-3.07| +24|2023-10-06T22:00:20.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9B3|96485|129844|10000|10000|||99.72|98.75|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|69146|81541|5450|10000|||101.55|100.85|0.00|-3.07| +21|2023-10-06T22:00:20.5490000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|F540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18902563|40478540|10000|10000|||100.00|80.10|0.00|0.00|96485|129844|10000|10000|||99.72|98.75|0.00|-3.14|00010BB5|0|1| +38|2023-10-06T22:00:20.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99442|129844|10000|10000|0||99.72|98.75|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T22:00:20.5930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18902471|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.11|98.61|0.00|-3.14|00010BB6|0|1| +31|2023-10-06T22:00:20.5930000-07:00|10FF0001||||| +24|2023-10-06T22:00:20.6370000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|EA2|129071|129071|9200|10000|||100.11|98.61|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|71797|81541|5450|10000|||101.55|100.85|0.00|-3.07| +24|2023-10-06T22:00:20.6370000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|16C6|129071|129071|9200|10000|||100.11|98.61|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|71797|81541|5450|10000|||101.55|100.85|0.00|-3.07| +38|2023-10-06T22:00:20.6370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:20.6810000-07:00|400218C4|Carbuncle|62157|77698|10000|10000|||102.16|99.84|0.00|-0.21| +39|2023-10-06T22:00:20.7700000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.39|98.50|0.00|-0.35| +21|2023-10-06T22:00:20.7700000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|251D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18902471|40478540|10000|10000|||100.00|80.10|0.00|0.00|71797|81541|5450|10000|||101.55|100.85|0.00|-3.07|00010BB7|0|1| +21|2023-10-06T22:00:20.7700000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|ACE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18902471|40478540|10000|10000|||100.00|80.10|0.00|0.00|67582|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BB8|0|1| +21|2023-10-06T22:00:20.8140000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|39B70000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|18902471|40478540|10000|10000|||100.00|80.10|0.00|0.00|99442|129844|10000|10000|||99.72|98.65|0.00|-3.14|00010BB9|0|1| +38|2023-10-06T22:00:20.8590000-07:00|40021585|Zeromus|005A5A00|18902471|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T22:00:20.8590000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +39|2023-10-06T22:00:20.9930000-07:00|10FF0003|Gegehi Gehi|65031|73814|2850|10000|||99.96|99.63|0.00|3.14| +21|2023-10-06T22:00:20.9930000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|18902471|40478540|10000|10000|||100.00|80.10|0.00|0.00|74479|81809|3400|10000|||100.63|101.03|0.00|-3.11|00010BBA|0|1| +38|2023-10-06T22:00:20.9930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74479|81809|3400|10000|13||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:20.9930000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:00:20.9930000-07:00|400218C4|Carbuncle|005A5A00|0|77698|0|10000|0||102.16|99.84|0.00|-0.21|0|0|0|||| +30|2023-10-06T22:00:20.9930000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|400218C4|Carbuncle|00|77698|81809| +261|2023-10-06T22:00:20.5520000-07:00|Change|400218C4||||||||| +261|2023-10-06T22:00:20.5520000-07:00|Change|400218C4||||||||| +261|2023-10-06T22:00:20.6450000-07:00|Change|10FF0003||| +38|2023-10-06T22:00:21.0350000-07:00|400218CA||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T22:00:21.0370000-07:00|400218CA||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T22:00:21.0810000-07:00|40021585|Zeromus|00010BB5|18898547||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:21.1260000-07:00|40021585|Zeromus|00010BB6|18895577||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:21.1260000-07:00|10FF0004|Buhojaqe Zijaqe|72612|81541|5250|10000|||101.55|100.85|0.00|-3.07| +261|2023-10-06T22:00:20.8710000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T22:00:20.8710000-07:00|Change|10FF0006||| +21|2023-10-06T22:00:21.2600000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18895577|40478540|10000|10000|||100.00|80.10|0.00|0.00|65031|73814|2850|10000|||99.96|99.63|0.00|3.14|00010BBB|0|1| +37|2023-10-06T22:00:21.3040000-07:00|40021585|Zeromus|00010BB8|18892811||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:21.3490000-07:00|40021585|Zeromus|00010BB4|18880769||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:20.9910000-07:00|Add|400218CA||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:00:20.9910000-07:00|400218CA|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||102.45|102.76|0.00|-3.11| +21|2023-10-06T22:00:21.3930000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|11000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18892811|40478540|10000|10000|||100.00|80.10|0.00|0.00|99442|129844|10000|10000|||99.72|98.61|0.00|3.14|00010BBC|0|1| +37|2023-10-06T22:00:21.4380000-07:00|40021585|Zeromus|00010BB9|18865994||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:21.1070000-07:00|Change|400218CA||||| +21|2023-10-06T22:00:21.4830000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|34120000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|18865994|40478540|10000|10000|||100.00|80.10|0.00|0.00|65461|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BBD|0|1| +37|2023-10-06T22:00:21.5720000-07:00|40021585|Zeromus|00010BB7|18856493||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:21.6610000-07:00|40021585|Zeromus|DoT|0|1643|18856493|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5880|10000|||99.96|101.30|0.00|3.14| +21|2023-10-06T22:00:21.6610000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|752003|B8A0000|BDFA0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|18856493|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|5880|10000|||99.96|101.30|0.00|3.14|00010BBE|0|1| +36|2023-10-06T22:00:21.6610000-07:00|61A8|3| +38|2023-10-06T22:00:21.6610000-07:00|40021585|Zeromus|005A5A00|18850794|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T22:00:21.3110000-07:00|Change|10FF000B||||| +21|2023-10-06T22:00:21.7040000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42712003|4BDA0000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|18856493|40478540|10000|10000|||100.00|80.10|0.00|0.00|67582|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BBF|0|1| +37|2023-10-06T22:00:21.7940000-07:00|40021585|Zeromus|00010BBB|18850793||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:21.8390000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|714003|19720000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|18850794|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.11|98.61|0.00|-3.14|00010BC0|0|1| +20|2023-10-06T22:00:21.8840000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|99.96|99.63|0.00|3.14| +38|2023-10-06T22:00:21.8840000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99442|129844|10000|10000|0||99.72|98.47|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T22:00:21.8840000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.39|98.50|0.00|-3.12|0|0|0|||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002185F|Ruby Carbuncle|00|77430|81809| +38|2023-10-06T22:00:21.8840000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65461|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T22:00:21.8840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74479|81809|3400|10000|13||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:00:21.8840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T22:00:21.8840000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|72612|81541|5250|10000|0||101.47|101.04|0.00|-1.26|0|0|0||||||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T22:00:21.8840000-07:00|400218CA|Ruby Ifrit|005A5A00|74223|77698|10000|10000|0||102.45|102.76|0.00|-3.11|0|0|0|||| +26|2023-10-06T22:00:21.8840000-07:00|30|Well Fed|660.75|10FF0006|Wowobora Gogobora|400218CA|Ruby Ifrit|2964|77698|81809| +38|2023-10-06T22:00:21.8840000-07:00|10FF0003|Gegehi Gehi|005A5A23|65031|73814|2850|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T22:00:21.8840000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5480|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +38|2023-10-06T22:00:21.8840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67582|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:21.8840000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +21|2023-10-06T22:00:21.9730000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18850793|40478540|10000|10000|||100.00|80.10|0.00|0.00|65461|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BC1|0|1| +37|2023-10-06T22:00:22.0180000-07:00|40021585|Zeromus|00010BBC|18846441||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:22.0180000-07:00|10FF0006|Wowobora Gogobora|00010BBA|74479|81809|3400|10000|13||100.63|101.03|0.00|-3.11|1B00|0|0|01|08000AA4|0|0|| +38|2023-10-06T22:00:22.0180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74479|81809|3400|10000|13||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:21.7070000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T22:00:21.7070000-07:00|Change|400218CA||| +38|2023-10-06T22:00:22.0630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|72612|81541|5250|10000|0||101.36|101.29|0.00|-0.83|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:22.0630000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:00:22.0630000-07:00|10FF0003|Gegehi Gehi|005A5A23|65031|73814|2850|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:22.0630000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:00:22.0630000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5480|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:22.0630000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:00:22.0630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67582|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:22.0630000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +38|2023-10-06T22:00:22.1070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99442|129844|10000|10000|0||99.72|97.84|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:22.1070000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:00:22.1070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65461|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:22.1070000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:00:22.1070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74479|81809|3400|10000|13||100.63|101.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:22.1070000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:00:22.1070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:22.1070000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +39|2023-10-06T22:00:22.1510000-07:00|10FF0008|Kokosaze Lulusaze|66363|90216|10000|10000|||100.48|101.49|0.00|-3.12| +38|2023-10-06T22:00:22.1510000-07:00|40021585|Zeromus|005A5A00|18846441|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +30|2023-10-06T22:00:22.1510000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +21|2023-10-06T22:00:22.1960000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|33160000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|99442|129844|10000|10000|||99.72|97.84|0.00|3.13|18846441|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BC2|0|1| +37|2023-10-06T22:00:22.2400000-07:00|40021585|Zeromus|00010BBD|18833111||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:22.2400000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.34|101.36|0.00|-0.72| +37|2023-10-06T22:00:22.3290000-07:00|40021585|Zeromus|00010BBF|18813693||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:21.9440000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:00:22.4630000-07:00|40021585|Zeromus|00010BC0|18807179||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:22.5970000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|67582|83502|10000|10000|||99.72|102.31|0.00|3.13|67582|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BC3|0|1| +38|2023-10-06T22:00:22.5970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67582|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:22.5970000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|83502|83502| +26|2023-10-06T22:00:22.5970000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +38|2023-10-06T22:00:22.6420000-07:00|400218CB||005A5A00|76288|79156|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:00:22.6420000-07:00|400218CB||005A5A00|76288|79156|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:00:22.7300000-07:00|40021585|Zeromus|00010BC1|18804819||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:22.8190000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9400|10000|||100.11|98.61|0.00|-3.14| +261|2023-10-06T22:00:22.4590000-07:00|Change|10FF0001||| +21|2023-10-06T22:00:22.8640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18804819|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||100.11|98.61|0.00|-3.14|00010BC4|0|1| +31|2023-10-06T22:00:22.8640000-07:00|10FF0001||||| +37|2023-10-06T22:00:22.9530000-07:00|40021585|Zeromus|00010BBE|18801865|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T22:00:22.9530000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +21|2023-10-06T22:00:22.9530000-07:00|10FF000B|Pusu Rosu|1D06|Thin Air|10FF000B|Pusu Rosu|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|5480|10000|||99.96|101.30|0.00|3.14|79209|79209|5480|10000|||99.96|101.30|0.00|3.14|00010BC5|0|1| +21|2023-10-06T22:00:22.9530000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18804819|40478540|10000|10000|||100.00|80.10|0.00|0.00|67582|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BC6|0|1| +38|2023-10-06T22:00:22.9530000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5480|10000|0||99.96|101.30|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:22.9530000-07:00|4C1|Thin Air|12.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +03|2023-10-06T22:00:22.6460000-07:00|400218CB|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||99.75|100.52|0.00|-0.01| +261|2023-10-06T22:00:22.6460000-07:00|Add|400218CB||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:22.9970000-07:00|10FF0007|Kehabiqo Febiqo|00010BC2|86364||||||99.69|98.00|0.00|0.88| +261|2023-10-06T22:00:22.6460000-07:00|Change|400218C4||| +261|2023-10-06T22:00:22.6460000-07:00|Change|400218CB||| +21|2023-10-06T22:00:23.0870000-07:00|400218CA|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|152003|A3F10000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|18801865|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.45|102.76|0.00|-3.11|00010BC7|0|1| +24|2023-10-06T22:00:23.0870000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|15C8|66363|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0007|Kehabiqo Febiqo|FFFFFFFF|86364|129844|10000|10000|||99.69|98.16|0.00|0.41| +24|2023-10-06T22:00:23.0870000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9F0|66363|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0007|Kehabiqo Febiqo|0|86364|129844|10000|10000|||99.69|98.16|0.00|0.41| +24|2023-10-06T22:00:23.0870000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|14E6|72612|81541|5250|10000|||101.30|101.43|0.00|-3.08|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5480|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:23.0870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1CD1|72612|81541|5250|10000|||101.30|101.43|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|5480|10000|||99.96|101.30|0.00|3.14| +38|2023-10-06T22:00:23.0870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63331|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:23.0870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74639|81541|5250|10000|0||101.30|101.43|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:00:23.1310000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18801865|40478540|10000|10000|||100.00|80.10|0.00|0.00|74479|81809|3400|10000|||100.63|101.03|0.00|-3.11|00010BC8|0|1| +38|2023-10-06T22:00:23.1310000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63331|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:23.1310000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +24|2023-10-06T22:00:23.1760000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|74479|81809|3400|10000|||100.63|101.03|0.00|-3.11|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5480|10000|||99.96|101.30|0.00|3.14| +24|2023-10-06T22:00:23.1760000-07:00|10FF0006|Wowobora Gogobora|HoT|0|25D7|74479|81809|3400|10000|||100.63|101.03|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|5480|10000|||99.96|101.30|0.00|3.14| +261|2023-10-06T22:00:22.7400000-07:00|Change|10FF0006||| +21|2023-10-06T22:00:23.1760000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|25AE0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18801865|40478540|10000|10000|||100.00|80.10|0.00|0.00|72612|81541|5250|10000|||101.30|101.43|0.00|-3.08|00010BC9|0|1| +38|2023-10-06T22:00:23.1760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3950|10000|7||100.63|101.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:23.2210000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4150|10000|||100.63|101.03|0.00|-3.11| +21|2023-10-06T22:00:23.2650000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|712003|5C230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18801865|40478540|10000|10000|||100.00|80.10|0.00|0.00|86364|129844|10000|10000|||99.69|98.29|-0.01|0.06|00010BCA|0|1| +38|2023-10-06T22:00:23.2650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4150|10000|7||100.63|101.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:23.2650000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +21|2023-10-06T22:00:23.3100000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|150003|21B30000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|18801865|40478540|10000|10000|||100.00|80.10|0.00|0.00|65031|73814|2850|10000|||99.96|99.63|0.00|3.14|00010BCB|0|1| +38|2023-10-06T22:00:23.3100000-07:00|10FF0003|Gegehi Gehi|005A5A23|65031|73814|2650|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.3100000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:00:23.3100000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:00:22.9690000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T22:00:23.3560000-07:00|10FF000A|Dukaro Nezikaro|00010BC3|67582|83502|10000|10000|0||99.72|102.31|0.00|3.13|1E00|0|0|02|070007A2|05|41F00000|||||| +39|2023-10-06T22:00:23.3560000-07:00|10FF000B|Pusu Rosu|79209|79209|5761|10000|||99.95|101.29|0.00|-3.01| +39|2023-10-06T22:00:23.3560000-07:00|10FF000A|Dukaro Nezikaro|68417|83502|10000|10000|||99.72|102.31|0.00|3.13| +38|2023-10-06T22:00:23.3560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|68417|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:22.9690000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:00:22.9690000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:00:23.4000000-07:00|40021585|Zeromus|00010BC4|18800184||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:23.4000000-07:00|10FF0003|Gegehi Gehi|DoT|0|1948|65031|73814|2650|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4000000-07:00|10FF0003|Gegehi Gehi|HoT|0|16FB|65031|73814|2650|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +38|2023-10-06T22:00:23.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|64442|73814|2650|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:23.4000000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +24|2023-10-06T22:00:23.4440000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1600|68417|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0007|Kehabiqo Febiqo|FFFFFFFF|86364|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:23.4440000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1772|68417|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|86364|129844|10000|10000|||99.69|98.31|0.00|3.13| +20|2023-10-06T22:00:23.4440000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|100.63|101.03|0.00|-3.11| +38|2023-10-06T22:00:23.4440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|68787|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:23.4890000-07:00|40021585|Zeromus|00010BC6|18797920||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:23.4890000-07:00|10FF0007|Kehabiqo Febiqo|87662|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:23.4890000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|A36|68417|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4890000-07:00|10FF000B|Pusu Rosu|HoT|777|A34|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A16|63331|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4890000-07:00|10FF0006|Wowobora Gogobora|HoT|777|9F6|81809|81809|4150|10000|||100.63|101.03|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A29|74639|81541|4850|10000|||101.30|101.43|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4890000-07:00|10FF0003|Gegehi Gehi|HoT|777|9F1|65031|73814|2650|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4890000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|F5D|129071|129071|9400|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A53|86364|129844|10000|10000|||99.69|98.31|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84| +24|2023-10-06T22:00:23.4890000-07:00|10FF000B|Pusu Rosu|DoT|0|1389|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84|10FF0007|Kehabiqo Febiqo|FFFFFFFF|86364|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:23.4890000-07:00|10FF000B|Pusu Rosu|HoT|0|16F3|79209|79209|5761|10000|||99.92|101.27|0.00|-2.84|10FF0007|Kehabiqo Febiqo|0|86364|129844|10000|10000|||99.69|98.31|0.00|3.13| +38|2023-10-06T22:00:23.4890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90305|129844|10000|10000|0||99.69|98.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:23.4890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65913|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:23.4890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4150|10000|7||100.63|101.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:23.4890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:23.4890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77240|81541|4850|10000|0||101.30|101.43|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:23.4890000-07:00|10FF0003|Gegehi Gehi|005A5A23|66987|73814|2650|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:23.4890000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5761|10000|0||99.92|101.27|0.00|-2.84|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.4890000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:23.4890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71401|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:23.4890000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:00:23.5330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90305|129844|10000|10000|0||99.69|98.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:23.5330000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +24|2023-10-06T22:00:23.5780000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|CA4|90305|129844|10000|10000|||99.69|98.31|0.00|3.13|10FF0007|Kehabiqo Febiqo|FFFFFFFF|90305|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:23.5780000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9A3|90305|129844|10000|10000|||99.69|98.31|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|90305|129844|10000|10000|||99.69|98.31|0.00|3.13| +38|2023-10-06T22:00:23.5780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89536|129844|10000|10000|0||99.69|98.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:23.6670000-07:00|40021585|Zeromus|00010BC8|18797773||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:23.6670000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|EEC|129071|129071|9400|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5761|10000|||99.86|101.20|0.00|-2.64| +24|2023-10-06T22:00:23.6670000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|162A|129071|129071|9400|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.86|101.20|0.00|-2.64| +261|2023-10-06T22:00:23.2730000-07:00|Change|4002185F||||||||| +38|2023-10-06T22:00:23.6680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:23.6680000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5761|10000|0||99.86|101.20|0.00|-2.64|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:23.6680000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|79209|90216| +261|2023-10-06T22:00:23.2730000-07:00|Change|400218CB||||| +261|2023-10-06T22:00:23.3740000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T22:00:23.7120000-07:00|10FF000B|Pusu Rosu|00010BC5|79209|79209|5761|10000|0||99.83|101.17|0.00|-2.55|1800|0|0|01|040004C1|FF9C|41400000|| +38|2023-10-06T22:00:23.7120000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5761|10000|0||99.83|101.17|0.00|-2.55|0|0|0||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:23.7560000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.56|97.43|0.00|2.43| +38|2023-10-06T22:00:23.8010000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77240|81541|4850|10000|0||101.30|101.43|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:23.8010000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +37|2023-10-06T22:00:23.8910000-07:00|40021585|Zeromus|00010BCA|18774186||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:23.9350000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18797773|40478540|10000|10000|||100.00|80.10|0.00|0.00|89536|129844|10000|10000|||99.69|98.31|0.00|3.13|00010BCC|0|1| +21|2023-10-06T22:00:23.9350000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40021585|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|18797773|40478540|10000|10000|||100.00|80.10|0.00|0.00|71401|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BCD|0|1| +38|2023-10-06T22:00:23.9350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71401|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:23.9350000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|83502|90216| +30|2023-10-06T22:00:23.9350000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:00:23.9800000-07:00|40021585|Zeromus|00010BC9|18764540||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:23.9800000-07:00|10FF0003|Gegehi Gehi|67725|73814|2850|10000|||99.96|99.63|0.00|3.14| +21|2023-10-06T22:00:23.9800000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|379E0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|18774186|40478540|10000|10000|||100.00|80.10|0.00|0.00|65913|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BCE|0|1| +21|2023-10-06T22:00:24.0240000-07:00|400218CB|Bunshin|64AF|Phantom Kamaitachi|40021585|Zeromus|350003|3E4E0000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|18774186|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.73|102.32|0.00|3.13|00010BCF|0|1| +261|2023-10-06T22:00:23.6790000-07:00|Change|400218CB||||||||| +37|2023-10-06T22:00:24.1130000-07:00|40021585|Zeromus|00010BCB|18755913||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:24.1130000-07:00|10FF0004|Buhojaqe Zijaqe|78055|81541|5050|10000|||101.27|101.20|0.00|-3.12| +20|2023-10-06T22:00:24.1130000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.78|101.12|0.00|-2.38| +21|2023-10-06T22:00:24.1580000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|17680000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|89536|129844|10000|10000|||99.69|98.31|0.00|3.13|54201|77430|10000|10000|||100.66|96.83|0.00|-2.31|00010BD0|0|1| +261|2023-10-06T22:00:23.7910000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:00:24.0170000-07:00|Change|10FF0003||| +20|2023-10-06T22:00:24.3360000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:24.3360000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1EBA0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|18755913|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||100.11|98.61|0.00|-3.14|00010BD1|0|1| +21|2023-10-06T22:00:24.3360000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|356003|53240000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|18755913|40478540|10000|10000|||100.00|80.10|0.00|0.00|67725|73814|2850|10000|||99.96|99.63|0.00|3.14|00010BD2|0|1| +38|2023-10-06T22:00:24.3360000-07:00|10FF0003|Gegehi Gehi|005A5A23|67725|73814|2550|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:24.3360000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:00:24.0170000-07:00|Change|40021585||||||||||| +261|2023-10-06T22:00:24.0170000-07:00|Change|10FF0004||||||||||| +00|2023-10-06T22:00:24.0000000-07:00|0044|Zeromus|In Darkness be steeped.| +37|2023-10-06T22:00:24.4690000-07:00|40021585|Zeromus|00010BCC|18752981||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:24.6470000-07:00|40021585|Zeromus|DoT|0|10BA|18752981|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5761|10000|||99.78|101.12|0.00|-3.03| +21|2023-10-06T22:00:24.6470000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18752981|40478540|10000|10000|||100.00|80.10|0.00|0.00|65913|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BD3|0|1| +20|2023-10-06T22:00:24.6470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.27|101.00|0.00|-3.13| +36|2023-10-06T22:00:24.6470000-07:00|6284|3| +38|2023-10-06T22:00:24.6470000-07:00|40021585|Zeromus|005A5A00|18748699|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T22:00:24.3280000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:00:24.3280000-07:00|Change|4002185F||||||||| +37|2023-10-06T22:00:24.7790000-07:00|40021585|Zeromus|00010BCE|18734461||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:24.9580000-07:00|10FF0007|Kehabiqo Febiqo|00010BD0|95528||||||99.69|98.31|0.00|3.13| +04|2023-10-06T22:00:24.5280000-07:00|400218C4|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||102.16|99.84|0.00|-0.21| +261|2023-10-06T22:00:24.5280000-07:00|Change|400218C4||| +261|2023-10-06T22:00:24.6230000-07:00|Remove|400218C4| +37|2023-10-06T22:00:25.0470000-07:00|40021585|Zeromus|00010BC7|18692492||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:25.0470000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|23A30000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|18734461|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|5761|10000|||99.78|101.12|0.00|3.13|00010BD4|0|1| +38|2023-10-06T22:00:25.0470000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5761|10000|0||99.78|101.12|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:25.0470000-07:00|4C1|Thin Air|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +37|2023-10-06T22:00:25.0920000-07:00|40021585|Zeromus|00010BD1|18684626||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:25.0930000-07:00|10FF0001|Sesuga Sapisuga|00010BD1|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1300|0|0|0| +37|2023-10-06T22:00:25.0930000-07:00|40021585|Zeromus|00010BD2|18663342||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:24.7350000-07:00|Change|10FF0001||| +39|2023-10-06T22:00:25.1370000-07:00|10FF0008|Kokosaze Lulusaze|66815|90216|10000|10000|||100.48|101.49|0.00|-3.12| +21|2023-10-06T22:00:25.1370000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18663342|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010BD5|0|1| +21|2023-10-06T22:00:25.1370000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18663342|40478540|10000|10000|||100.00|80.10|0.00|0.00|71401|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BD6|0|1| +31|2023-10-06T22:00:25.1370000-07:00|10FF0001||||| +261|2023-10-06T22:00:24.9680000-07:00|Change|10FF0003||| +37|2023-10-06T22:00:25.4040000-07:00|40021585|Zeromus|00010BD3|18660397||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:24.9680000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T22:00:25.4490000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|66815|90216|10000|10000|||100.48|101.49|0.00|-3.12|66815|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BD7|0|1| +37|2023-10-06T22:00:25.5820000-07:00|40021585|Zeromus|00010BCF|18644447||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:25.5820000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|23080000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18660397|40478540|10000|10000|||100.00|80.10|0.00|0.00|78055|81541|5050|10000|||101.27|100.97|0.00|-3.08|00010BD8|0|1| +37|2023-10-06T22:00:25.6710000-07:00|40021585|Zeromus|00010BD5|18642653||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:25.6710000-07:00|40021585|Zeromus|00010BD6|18640459||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:25.2870000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T22:00:25.7160000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|31170000|143E|340000|4|1A378000|11B|2A8000|0|0|0|0|0|0|0|0|18640459|40478540|10000|10000|||100.00|80.10|0.00|0.00|95528|129844|10000|10000|||99.69|98.31|0.00|3.13|00010BD9|0|1| +21|2023-10-06T22:00:25.7160000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|154003|4C7B0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|18640459|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4150|10000|||100.63|101.03|0.00|-3.11|00010BDA|0|1| +261|2023-10-06T22:00:25.2870000-07:00|Change|10FF0006||||||||||||||| +39|2023-10-06T22:00:25.8040000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14| +21|2023-10-06T22:00:25.8480000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|734003|550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18640459|40478540|10000|10000|||100.00|80.10|0.00|0.00|78055|81541|4650|10000|||101.27|100.97|0.00|-3.08|00010BDB|0|1| +21|2023-10-06T22:00:25.8930000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|67725|73814|2550|10000|||99.96|99.63|0.00|3.14|67725|73814|2550|10000|||99.96|99.63|0.00|3.14|00010BDC|0|1| +38|2023-10-06T22:00:25.9390000-07:00|400218CF||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:00:25.9390000-07:00|400218CF||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +24|2023-10-06T22:00:26.0710000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|1560|66815|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0007|Kehabiqo Febiqo|FFFFFFFF|95528|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:26.0710000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|FDC|66815|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF0007|Kehabiqo Febiqo|0|95528|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:26.0710000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|1411|78055|81541|4650|10000|||101.27|100.97|0.00|-3.08|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5761|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.0720000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1F47|78055|81541|4650|10000|||101.27|100.97|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:26.0720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65403|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:26.0720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80925|81541|4650|10000|0||101.27|100.97|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T22:00:26.1610000-07:00|10FF0006|Wowobora Gogobora|DoT|0|0|81809|81809|3850|10000|||100.63|101.03|0.00|-3.11|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5761|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.1610000-07:00|10FF0006|Wowobora Gogobora|HoT|0|16E8|81809|81809|3850|10000|||100.63|101.03|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|5761|10000|||99.78|101.12|0.00|3.13| +21|2023-10-06T22:00:26.1610000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|32990000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|18640459|40478540|10000|10000|||100.00|80.10|0.00|0.00|71401|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BDD|0|1| +38|2023-10-06T22:00:26.1610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4400|10000|1||100.63|101.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:26.1610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71401|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.1610000-07:00|7A2|Bunshin|27.15|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|83502|83502| +261|2023-10-06T22:00:25.7510000-07:00|Add|400218CF||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:26.2040000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4600|10000|||100.63|101.03|0.00|-3.11| +21|2023-10-06T22:00:26.2040000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18640459|40478540|10000|10000|||100.00|80.10|0.00|0.00|67725|73814|2550|10000|||99.96|99.63|0.00|3.14|00010BDE|0|1| +03|2023-10-06T22:00:25.7510000-07:00|400218CF|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||102.29|103.21|0.00|-3.12| +261|2023-10-06T22:00:25.8700000-07:00|Change|10FF0006||| +261|2023-10-06T22:00:25.8700000-07:00|Change|400218CF||| +261|2023-10-06T22:00:25.8700000-07:00|Change|400218CB||||| +21|2023-10-06T22:00:26.2500000-07:00|400218CB|Bunshin|4405|Spinning Edge|40021585|Zeromus|710003|11690000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|18640459|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.73|102.32|0.00|3.13|00010BDF|0|1| +37|2023-10-06T22:00:26.3380000-07:00|40021585|Zeromus|00010BDA|18620880||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:26.3380000-07:00|40021585|Zeromus|00010BD4|18611757||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:26.3380000-07:00|10FF000B|Pusu Rosu|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +39|2023-10-06T22:00:26.3380000-07:00|10FF000A|Dukaro Nezikaro|72236|83502|10000|10000|||99.72|102.31|0.00|3.13| +261|2023-10-06T22:00:25.9800000-07:00|Change|400218CB||| +261|2023-10-06T22:00:25.9800000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:00:26.3830000-07:00|40021585|Zeromus|00010BD8|18602789||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:26.3830000-07:00|40021585|Zeromus|00010BDB|18602704||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:26.3830000-07:00|10FF0003|Gegehi Gehi|DoT|0|1815|67725|73814|2550|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.3830000-07:00|10FF0003|Gegehi Gehi|HoT|0|1E0F|67725|73814|2550|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:26.3830000-07:00|10FF0003|Gegehi Gehi|005A5A23|69255|73814|2550|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T22:00:26.4270000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|1573|72236|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0007|Kehabiqo Febiqo|FFFFFFFF|95528|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:26.4270000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|16C4|72236|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|95528|129844|10000|10000|||99.69|98.31|0.00|3.13| +20|2023-10-06T22:00:26.4270000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|100.63|101.03|0.00|-3.11| +38|2023-10-06T22:00:26.4270000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|72573|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:26.4720000-07:00|10FF0007|Kehabiqo Febiqo|96826|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|9D2|72236|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF000B|Pusu Rosu|HoT|777|9F2|79209|79209|6042|10000|||99.78|101.12|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|9DE|65403|90216|10000|10000|||100.48|101.49|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A0C|81809|81809|4600|10000|||100.63|101.03|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF0003|Gegehi Gehi|HoT|777|A22|67725|73814|2550|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A2A|80925|81541|4650|10000|||101.29|100.95|0.00|3.03|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A2B|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A1C|95528|129844|10000|10000|||99.69|98.31|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF000B|Pusu Rosu|DoT|0|149D|79209|79209|6042|10000|||99.78|101.12|0.00|3.13|10FF0007|Kehabiqo Febiqo|FFFFFFFF|95528|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:26.4720000-07:00|10FF000B|Pusu Rosu|HoT|0|16FB|79209|79209|6042|10000|||99.78|101.12|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|95528|129844|10000|10000|||99.69|98.31|0.00|3.13| +21|2023-10-06T22:00:26.4720000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|375B0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|18611757|40478540|10000|10000|||100.00|80.10|0.00|0.00|65403|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BE0|0|1| +38|2023-10-06T22:00:26.4720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99414|129844|10000|10000|0||99.69|98.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.4720000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:26.4720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67929|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.4720000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:26.4720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4600|10000|1||100.63|101.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.4720000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:26.4720000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.4720000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:26.4720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4650|10000|0||101.29|100.95|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.4720000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:26.4720000-07:00|10FF0003|Gegehi Gehi|005A5A23|71849|73814|2550|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.4720000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:26.4720000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|6042|10000|0||99.78|101.12|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.4720000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:26.4720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75087|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.4720000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:00:26.5160000-07:00|10FF0003|Gegehi Gehi|00010BDC|71849|73814|2550|10000|0||99.96|99.63|0.00|3.14|2300|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T22:00:26.5160000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:00:26.5600000-07:00|40021585|Zeromus|00010BDD|18589751||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:26.5600000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|CCF|99414|129844|10000|10000|||99.69|98.31|0.00|3.13|10FF0007|Kehabiqo Febiqo|FFFFFFFF|99414|129844|10000|10000|||99.69|98.31|0.00|3.13| +24|2023-10-06T22:00:26.5600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|EBE|99414|129844|10000|10000|||99.69|98.31|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|99414|129844|10000|10000|||99.69|98.31|0.00|3.13| +20|2023-10-06T22:00:26.5610000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:26.5610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99909|129844|10000|10000|0||99.69|98.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:26.6500000-07:00|40021585|Zeromus|00010BDF|18585294||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:26.6500000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|F32|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:26.6500000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|17F2|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|6042|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:26.6500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:26.2810000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:00:26.7380000-07:00|40021585|Zeromus|00010BDE|18585293||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:26.7830000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +38|2023-10-06T22:00:26.7830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4650|10000|0||101.25|100.52|0.00|-2.73|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:26.7830000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T22:00:26.8280000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|288E0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|18585293|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010BE1|0|1| +38|2023-10-06T22:00:26.8280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:26.8280000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:00:26.8280000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T22:00:26.9170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4600|10000|1||100.63|101.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:26.9170000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +39|2023-10-06T22:00:26.9610000-07:00|10FF0003|Gegehi Gehi|72587|73814|2750|10000|||99.96|99.63|0.00|3.14| +34|2023-10-06T22:00:26.9610000-07:00|400218CF|Automaton Queen|400218CF|Automaton Queen|01| +261|2023-10-06T22:00:26.4620000-07:00|Change|10FF0003||| +261|2023-10-06T22:00:26.5540000-07:00|Change|400218CF||||| +20|2023-10-06T22:00:27.0500000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.22|100.24|0.00|-2.38| +38|2023-10-06T22:00:27.0500000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|6042|10000|0||99.78|101.12|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.0500000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +39|2023-10-06T22:00:27.0940000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|4850|10000|||101.21|100.21|0.00|-2.34| +261|2023-10-06T22:00:26.6700000-07:00|Change|400218CA||||| +261|2023-10-06T22:00:26.6700000-07:00|Change|400218CA||||| +38|2023-10-06T22:00:27.1380000-07:00|400218D1||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:00:27.1380000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|750003|1C1C0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|18585293|40478540|10000|10000|||100.00|80.10|0.00|0.00|72587|73814|2750|10000|||99.96|99.63|0.00|3.14|00010BE2|0|1| +38|2023-10-06T22:00:27.1380000-07:00|400218D1||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:00:27.1830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75087|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.1830000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:00:27.2270000-07:00|40021585|Zeromus|00010BD9|18572726||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:27.2270000-07:00|10FF0007|Kehabiqo Febiqo|00010BD9|106620||||||99.69|98.31|-0.02|3.12| +37|2023-10-06T22:00:27.2720000-07:00|40021585|Zeromus|00010BE0|18558555||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:26.8910000-07:00|Change|10FF0006||||||||||||| +21|2023-10-06T22:00:27.3170000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18572726|40478540|10000|10000|||100.00|80.10|0.00|0.00|106620|129844|10000|10000|||99.71|98.32|0.00|3.11|00010BE3|0|1| +21|2023-10-06T22:00:27.3170000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18572726|40478540|10000|10000|||100.00|80.10|0.00|0.00|67929|90216|10000|10000|||100.48|101.49|0.00|-3.12|00010BE4|0|1| +21|2023-10-06T22:00:27.3170000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18572726|40478540|10000|10000|||100.00|80.10|0.00|0.00|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BE5|0|1| +38|2023-10-06T22:00:27.3170000-07:00|10FF0003|Gegehi Gehi|005A5A23|72587|73814|2750|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.3170000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +261|2023-10-06T22:00:26.8910000-07:00|Add|400218D1||||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:00:27.0030000-07:00|400218D1|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.59|99.30|0.00|0.03| +261|2023-10-06T22:00:27.0030000-07:00|Change|400218D1||| +37|2023-10-06T22:00:27.4050000-07:00|40021585|Zeromus|00010BE1|18548173||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:27.4050000-07:00|10FF0001|Sesuga Sapisuga|00010BE1|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1300|0|0|02|0500076E|03|41F00000|||||| +21|2023-10-06T22:00:27.4050000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|70B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18558555|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010BE6|0|1| +38|2023-10-06T22:00:27.4050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:27.4050000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|6042|10000|0||99.78|101.12|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.4050000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +31|2023-10-06T22:00:27.4050000-07:00|10FF0001||||| +261|2023-10-06T22:00:27.0030000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:00:27.0030000-07:00|Change|400218D1||| +38|2023-10-06T22:00:27.4500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67929|90216|10000|10000|0||100.48|101.49|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.4500000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +21|2023-10-06T22:00:27.4940000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|22FA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|18558555|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|6042|10000|||99.78|101.12|0.00|3.13|00010BE7|0|1| +38|2023-10-06T22:00:27.5390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75087|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.5390000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:00:27.5830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.5830000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +24|2023-10-06T22:00:27.6730000-07:00|40021585|Zeromus|DoT|0|1841|18548173|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5642|10000|||99.78|101.12|0.00|3.13| +36|2023-10-06T22:00:27.6730000-07:00|6360|3| +38|2023-10-06T22:00:27.6730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106620|129844|10000|10000|0||99.83|98.55|-0.02|-2.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:27.6730000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:00:27.6730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67929|90216|10000|10000|0||100.43|101.56|-0.02|-2.73|0|0|0||||||||||||||||||| +30|2023-10-06T22:00:27.6730000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T22:00:27.6730000-07:00|40021585|Zeromus|005A5A00|18541964|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +38|2023-10-06T22:00:27.6730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4600|10000|1||100.63|101.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.6730000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +38|2023-10-06T22:00:27.6730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.6730000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +38|2023-10-06T22:00:27.6730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4850|10000|0||101.21|100.21|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.6730000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +30|2023-10-06T22:00:27.6730000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:27.6730000-07:00|10FF0003|Gegehi Gehi|005A5A23|72587|73814|2750|10000|0||99.96|99.63|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.6730000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +38|2023-10-06T22:00:27.6730000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5642|10000|0||99.78|101.12|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:27.6730000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF000B|Pusu Rosu|00|79209|129844| +38|2023-10-06T22:00:27.6730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75087|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:27.6730000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|83502|129844| +261|2023-10-06T22:00:27.3080000-07:00|Change|10FF000B||||||||||||||| +38|2023-10-06T22:00:27.7180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106620|129844|10000|10000|0||99.87|98.66|-0.02|-1.63|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:27.7180000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T22:00:27.7610000-07:00|40021585|Zeromus|00010BE2|18534768||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:27.8510000-07:00|40021585|Zeromus|00010BE3|18530107||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:27.8510000-07:00|40021585|Zeromus|00010BE5|18527956||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:27.8510000-07:00|10FF0003|Gegehi Gehi|005A5A23|72587|73814|2750|10000|0||99.96|99.63|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:27.8510000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T22:00:27.9400000-07:00|40021585|Zeromus|00010BE6|18526153||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:27.9400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:27.9400000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T22:00:27.9840000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|178C0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|106620|129844|10000|10000|||99.93|98.81|0.00|-0.88|54201|77430|10000|10000|||100.66|96.79|0.00|-2.06|00010BE8|0|1| +21|2023-10-06T22:00:27.9840000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|3B590000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18526153|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|4850|10000|||101.21|100.21|0.00|-3.08|00010BE9|0|1| +37|2023-10-06T22:00:28.0730000-07:00|40021585|Zeromus|00010BE4|18523369||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:28.0730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4600|10000|1||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:28.0730000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +39|2023-10-06T22:00:28.1620000-07:00|10FF0008|Kokosaze Lulusaze|68831|90216|10000|10000|||100.17|101.89|0.00|-0.83| +21|2023-10-06T22:00:28.1620000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|15630000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|18526153|40478540|10000|10000|||100.00|80.10|0.00|0.00|106620|129844|10000|10000|||99.98|98.95|-0.01|-0.20|00010BEA|0|1| +34|2023-10-06T22:00:28.1620000-07:00|400218D1|Carbuncle|400218D1|Carbuncle|01| +261|2023-10-06T22:00:27.7900000-07:00|Change|400218D1||| +261|2023-10-06T22:00:27.9090000-07:00|Change|400218CB||| +21|2023-10-06T22:00:28.2510000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BEB|0|1| +38|2023-10-06T22:00:28.2510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75087|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:28.2510000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:00:28.0220000-07:00|Change|10FF0004||||||||||||||||| +38|2023-10-06T22:00:28.5630000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.66|96.79|0.00|-0.69|0|0|0||||||| +26|2023-10-06T22:00:28.5630000-07:00|7AC|Summon Order II|30.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:00:28.5630000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|4450|10000|||101.21|100.21|0.00|-3.08|81541|81541|4450|10000|||101.21|100.21|0.00|-3.08|00010BEC|0|1| +39|2023-10-06T22:00:28.6080000-07:00|400218CB|Bunshin|76288|79156|10000|10000|||99.73|102.32|0.00|3.13| +21|2023-10-06T22:00:28.6080000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37750003|23690000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|18523369|40478540|10000|10000|||100.00|80.10|0.00|0.00|72587|73814|2750|10000|||99.96|99.63|0.00|3.14|00010BED|0|1| +37|2023-10-06T22:00:28.6970000-07:00|40021585|Zeromus|00010BEA|18517894||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:28.6970000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|150003|3E110000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|18523369|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4600|10000|||100.63|101.03|0.00|-3.11|00010BEE|0|1| +261|2023-10-06T22:00:28.2300000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T22:00:28.7860000-07:00|10FF0007|Kehabiqo Febiqo|00010BE8|112648||||||99.99|98.99|0.00|-3.14| +37|2023-10-06T22:00:28.7860000-07:00|40021585|Zeromus|00010BE9|18502701||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:28.7860000-07:00|40021585|Zeromus|00010BE7|18493747||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:28.7860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14| +21|2023-10-06T22:00:28.7860000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BEF|0|1| +38|2023-10-06T22:00:28.7860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75087|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:28.7860000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +21|2023-10-06T22:00:28.9640000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|720003|5CB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18493747|40478540|10000|10000|||100.00|80.10|0.00|0.00|68831|90216|10000|10000|||100.14|101.91|0.00|-0.68|00010BF0|0|1| +20|2023-10-06T22:00:29.0090000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.78|101.12|0.00|3.13| +261|2023-10-06T22:00:28.5230000-07:00|Change|10FF000B||||||||||||| +22|2023-10-06T22:00:29.0530000-07:00|4002185F|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29|00010BF1|0|8| +22|2023-10-06T22:00:29.0530000-07:00|4002185F|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|112648|129844|10000|10000|||99.99|98.99|0.00|-3.14|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29|00010BF1|1|8| +22|2023-10-06T22:00:29.0530000-07:00|4002185F|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|72587|73814|2750|10000|||99.96|99.63|0.00|3.14|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29|00010BF1|2|8| +22|2023-10-06T22:00:29.0530000-07:00|4002185F|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|4450|10000|||101.21|100.21|0.00|-3.08|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29|00010BF1|3|8| +22|2023-10-06T22:00:29.0530000-07:00|4002185F|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|4300|10000|||100.63|101.03|0.00|-3.11|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29|00010BF1|4|8| +22|2023-10-06T22:00:29.0530000-07:00|4002185F|Ruby Carbuncle|325|Fey Illumination|10FF000B|Pusu Rosu|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|5642|10000|||99.78|101.12|0.00|3.13|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29|00010BF1|5|8| +22|2023-10-06T22:00:29.0530000-07:00|4002185F|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|68831|90216|10000|10000|||100.14|101.91|0.00|-3.13|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29|00010BF1|6|8| +22|2023-10-06T22:00:29.0530000-07:00|4002185F|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29|00010BF1|7|8| +24|2023-10-06T22:00:29.0530000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|153F|68831|90216|10000|10000|||100.14|101.91|0.00|-3.13|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5642|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.0530000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|14E3|81541|81541|4450|10000|||101.21|100.21|0.00|-3.08|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5642|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:29.0530000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63392|90216|10000|10000|0||100.14|101.91|0.00|-3.13|0|0|0||||||||||||||||||| +38|2023-10-06T22:00:29.0530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|76194|81541|4450|10000|0||101.21|100.21|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T22:00:29.1420000-07:00|10FF0006|Wowobora Gogobora|DoT|0|F93|81809|81809|4300|10000|||100.63|101.03|0.00|-3.11|10FF0006|Wowobora Gogobora|FFFFFFFF|81809|81809|4300|10000|||100.63|101.03|0.00|-3.11| +38|2023-10-06T22:00:29.1420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77822|81809|4850|10000|0||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:29.1420000-07:00|A8E|Radiant Aegis|0.00|400218C4|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +39|2023-10-06T22:00:29.1860000-07:00|10FF0006|Wowobora Gogobora|78640|81809|5050|10000|||100.63|101.03|0.00|-3.11| +37|2023-10-06T22:00:29.2300000-07:00|40021585|Zeromus|00010BED|18484682||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:29.2750000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BF2|0|1| +38|2023-10-06T22:00:29.2750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75087|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:29.2750000-07:00|1F0|Mudra|4.97|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +37|2023-10-06T22:00:29.3200000-07:00|40021585|Zeromus|00010BEE|18468793||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:00:29.3210000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0001|Sesuga Sapisuga|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BF3|0|8| +22|2023-10-06T22:00:29.3210000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0007|Kehabiqo Febiqo|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|112648|129844|10000|10000|||99.99|98.99|0.00|-3.14|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BF3|1|8| +22|2023-10-06T22:00:29.3210000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0003|Gegehi Gehi|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|72587|73814|2750|10000|||99.96|99.63|0.00|3.14|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BF3|2|8| +22|2023-10-06T22:00:29.3210000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0004|Buhojaqe Zijaqe|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|76194|81541|4450|10000|||101.21|100.21|0.00|-3.08|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BF3|3|8| +22|2023-10-06T22:00:29.3210000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0006|Wowobora Gogobora|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|78640|81809|5050|10000|||100.63|101.03|0.00|-3.11|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BF3|4|8| +22|2023-10-06T22:00:29.3210000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF000B|Pusu Rosu|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|79209|79209|5642|10000|||99.78|101.12|0.00|3.13|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BF3|5|8| +22|2023-10-06T22:00:29.3210000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF0008|Kokosaze Lulusaze|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|63392|90216|10000|10000|||100.14|101.90|-0.02|-3.13|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BF3|6|8| +22|2023-10-06T22:00:29.3210000-07:00|40021585|Zeromus|8B3F|Abyssal Nox|10FF000A|Dukaro Nezikaro|4A|10000|E|6E90000|1B|8B3F8000|0|0|0|0|0|0|0|0|0|0|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010BF3|7|8| +261|2023-10-06T22:00:28.8750000-07:00|Change|40021585||||||||||| +21|2023-10-06T22:00:29.3210000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|714003|19380000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|18484682|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010BF4|0|1| +261|2023-10-06T22:00:28.8750000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:00:28.8750000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:00:28.8750000-07:00|Change|4002159E||||||||| +261|2023-10-06T22:00:28.8750000-07:00|Change|4002159A||||||||| +39|2023-10-06T22:00:29.3650000-07:00|10FF000B|Pusu Rosu|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +39|2023-10-06T22:00:29.3650000-07:00|10FF000A|Dukaro Nezikaro|75922|83502|10000|10000|||99.72|102.31|0.00|3.13| +24|2023-10-06T22:00:29.3650000-07:00|10FF0003|Gegehi Gehi|DoT|0|1771|72587|73814|2750|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5642|10000|||99.78|101.12|0.00|3.13| +261|2023-10-06T22:00:28.8750000-07:00|Change|400215A0||||||||| +38|2023-10-06T22:00:29.3650000-07:00|10FF0003|Gegehi Gehi|005A5A23|66586|73814|3300|10000|0||99.96|99.63|0.00|3.14|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:00:28.8750000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:00:28.8750000-07:00|Change|10FF0003||| +20|2023-10-06T22:00:29.4100000-07:00|4002159A|Zeromus|8B42|Abyssal Echoes|4002159A|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|4002159B|Zeromus|8B41|unknown_8b41|4002159B|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|4002159C|Zeromus|8B42|Abyssal Echoes|4002159C|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|4002159D|Zeromus|8B41|unknown_8b41|4002159D|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|4002159E|Zeromus|8B42|Abyssal Echoes|4002159E|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|4002159F|Zeromus|8B40|unknown_8b40|4002159F|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|400215A0|Zeromus|8B42|Abyssal Echoes|400215A0|Zeromus|15.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|400215A1|Zeromus|8B40|unknown_8b40|400215A1|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|400215A3|Zeromus|8D2B|unknown_8d2b|400215A3|Zeromus|8.700|100.00|100.00|0.00|0.00| +20|2023-10-06T22:00:29.4100000-07:00|400215A2|Zeromus|8B42|Abyssal Echoes|400215A2|Zeromus|15.700|100.00|100.00|0.00|0.00| +24|2023-10-06T22:00:29.4100000-07:00|10FF000A|Dukaro Nezikaro|DoT|0|161C|75087|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000A|Dukaro Nezikaro|FFFFFFFF|75087|83502|10000|10000|||99.72|102.31|0.00|3.13| +261|2023-10-06T22:00:28.9980000-07:00|Change|4002159B||||||||||||||| +261|2023-10-06T22:00:28.9980000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T22:00:28.9980000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T22:00:28.9980000-07:00|Change|400215A3||||||||||||| +38|2023-10-06T22:00:29.4100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|70262|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:00:29.4550000-07:00|10FF0007|Kehabiqo Febiqo|113946|129844|10000|10000|||99.99|98.99|0.00|-3.14| +24|2023-10-06T22:00:29.4550000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|F8B|70262|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.4550000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|9D9|63392|90216|10000|10000|||100.13|101.86|0.00|-3.10|10FF000B|Pusu Rosu|0|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.4550000-07:00|10FF000B|Pusu Rosu|HoT|777|A50|79209|79209|5923|10000|||99.78|101.12|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.4550000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A1F|78640|81809|5050|10000|||100.63|101.03|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.4550000-07:00|10FF0003|Gegehi Gehi|HoT|777|9E9|66586|73814|3300|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.4550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|FE3|76194|81541|4450|10000|||101.21|100.21|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.4550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|9E4|112648|129844|10000|10000|||99.99|98.99|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.4550000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A51|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:29.4550000-07:00|10FF000B|Pusu Rosu|DoT|0|13A6|79209|79209|5923|10000|||99.78|101.12|0.00|3.13|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +21|2023-10-06T22:00:29.4550000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|8C0F|A788000|0|0|0|0|0|0|0|0|0|0|112648|129844|10000|10000|||99.99|98.99|0.00|-3.14|112648|129844|10000|10000|||99.99|98.99|0.00|-3.14|00010BF5|0|1| +21|2023-10-06T22:00:29.4550000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40021585|Zeromus|154003|3CC60000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|18468793|40478540|10000|10000|||100.00|80.10|0.00|0.00|78640|81809|5050|10000|||100.63|101.03|0.00|-3.11|00010BF6|0|1| +20|2023-10-06T22:00:29.4550000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.21|100.21|0.00|-3.08| +38|2023-10-06T22:00:29.4550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116478|129844|10000|10000|0||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:00:29.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:29.4550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65913|90216|10000|10000|0||100.13|101.86|0.00|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:29.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:29.4550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81231|81809|5050|10000|0||100.63|101.03|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:29.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +30|2023-10-06T22:00:29.4550000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:00:29.4550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:29.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:29.4550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|80261|81541|4450|10000|0||101.21|100.21|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:29.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:29.4550000-07:00|10FF0003|Gegehi Gehi|005A5A23|69123|73814|3300|10000|0||99.96|99.63|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:29.4550000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:29.4550000-07:00|10FF000B|Pusu Rosu|005A5A18|74179|79209|5923|10000|0||99.78|101.12|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:29.4550000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:29.4550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74241|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:29.4550000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:00:28.9980000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T22:00:29.4980000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|ACF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18468793|40478540|10000|10000|||100.00|80.10|0.00|0.00|70262|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BF7|0|1| +24|2023-10-06T22:00:29.5430000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|D75|112648|129844|10000|10000|||99.99|98.99|0.00|-3.14|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|5923|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:29.5430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113033|129844|10000|10000|0||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:00:29.5870000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|65913|90216|10000|10000|||100.11|101.82|0.00|-3.08|65913|90216|10000|10000|||100.11|101.82|0.00|-3.08|00010BF8|0|1| +38|2023-10-06T22:00:29.5870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65913|90216|10000|10000|0||100.11|101.82|0.00|-3.08|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:29.5870000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +24|2023-10-06T22:00:29.6310000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|EF2|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14| +38|2023-10-06T22:00:29.6310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125245|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||| +21|2023-10-06T22:00:29.6760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18468793|40478540|10000|10000|||100.00|80.10|0.00|0.00|125245|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010BF9|0|1| +21|2023-10-06T22:00:29.6760000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18468793|40478540|10000|10000|||100.00|80.10|0.00|0.00|69123|73814|3300|10000|||99.96|99.63|0.00|3.14|00010BFA|0|1| +31|2023-10-06T22:00:29.6760000-07:00|10FF0001||||| +261|2023-10-06T22:00:29.3090000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:00:29.7690000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-0.29| +21|2023-10-06T22:00:29.7690000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|656003|740E0000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|18468793|40478540|10000|10000|||100.00|80.10|0.00|0.00|74241|83502|10000|10000|||99.72|102.31|0.00|3.13|00010BFB|0|1| +38|2023-10-06T22:00:29.7690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74241|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:29.7690000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +26|2023-10-06T22:00:29.7690000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:00:29.8540000-07:00|10FF0001|Sesuga Sapisuga|00010BF1|125245|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1300|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T22:00:29.8540000-07:00|13D|Fey Illumination|20.00|4002185F|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +261|2023-10-06T22:00:29.4020000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T22:00:29.4020000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:00:29.4020000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T22:00:29.4020000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:00:29.4020000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T22:00:29.4020000-07:00|Change|4002159E||||||||||||| +37|2023-10-06T22:00:29.9430000-07:00|40021585|Zeromus|00010BF4|18462337||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:29.9430000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|25C70000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|18468793|40478540|10000|10000|||100.00|80.10|0.00|0.00|74179|79209|5923|10000|||99.78|101.12|0.00|3.13|00010BFC|0|1| +37|2023-10-06T22:00:29.9870000-07:00|10FF0007|Kehabiqo Febiqo|00010BF1|113033|129844|10000|10000|0||99.99|98.99|0.00|-3.14|1501|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T22:00:29.9870000-07:00|13D|Fey Illumination|20.00|4002185F|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +39|2023-10-06T22:00:29.9870000-07:00|10FF0003|Gegehi Gehi|69861|73814|3500|10000|||99.96|99.63|0.00|3.14| +21|2023-10-06T22:00:29.9870000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18468793|40478540|10000|10000|||100.00|80.10|0.00|0.00|65913|90216|10000|10000|||100.08|101.04|0.00|-3.08|00010BFD|0|1| +38|2023-10-06T22:00:29.9870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125245|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:29.9870000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +261|2023-10-06T22:00:29.4940000-07:00|Change|10FF0003||| +261|2023-10-06T22:00:29.5930000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:00:30.0310000-07:00|10FF0007|Kehabiqo Febiqo|00010BF5|113033|129844|10000|10000|13||99.99|98.99|0.00|-3.14|1500|0|0|03|04000A76|0190|41000000|||||||||| +26|2023-10-06T22:00:30.0310000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T22:00:30.0310000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:00:30.0310000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:00:30.0310000-07:00|40021585|Zeromus|00010BF7|18459570||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:30.0310000-07:00|10FF000A|Dukaro Nezikaro|00010BF7|74241|83502|10000|10000|0||99.72|102.31|0.00|3.13|1E00|0|0|01|030001FB|0|C1A00000|| +38|2023-10-06T22:00:30.0310000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113033|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:30.0310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74241|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:30.0310000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|40478540| +38|2023-10-06T22:00:30.0760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113033|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:30.0760000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +37|2023-10-06T22:00:30.1200000-07:00|10FF0003|Gegehi Gehi|00010BF1|69861|73814|3500|10000|0||99.96|99.63|0.00|3.14|2302|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T22:00:30.1200000-07:00|13D|Fey Illumination|20.00|4002185F|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T22:00:30.1200000-07:00|40021585|Zeromus|00010BF0|18435840||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:30.1200000-07:00|10FF0004|Buhojaqe Zijaqe|81076|81541|4650|10000|||101.21|100.21|0.00|-3.08| +21|2023-10-06T22:00:30.1200000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A750003|321F0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|18462337|40478540|10000|10000|||100.00|80.10|0.00|0.00|69861|73814|3500|10000|||99.96|99.63|0.00|3.14|00010BFE|0|1| +38|2023-10-06T22:00:30.1200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81231|81809|5050|10000|0||100.62|100.61|0.00|-3.11|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:30.1200000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +21|2023-10-06T22:00:30.1650000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|189D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18462337|40478540|10000|10000|||100.00|80.10|0.00|0.00|65913|90216|10000|10000|||100.02|99.94|0.00|-3.08|00010BFF|0|1| +38|2023-10-06T22:00:30.1650000-07:00|10FF000B|Pusu Rosu|005A5A18|74179|79209|5523|10000|0||99.78|101.12|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:30.1650000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF000B|Pusu Rosu|00|79209|40478540| +37|2023-10-06T22:00:30.2090000-07:00|40021585|Zeromus|00010BF9|18434057||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:30.2090000-07:00|40021585|Zeromus|00010BFA|18434056||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:30.2090000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65913|90216|10000|10000|0||99.99|99.47|-0.02|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:00:30.2090000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +37|2023-10-06T22:00:30.2540000-07:00|10FF0004|Buhojaqe Zijaqe|00010BF1|81076|81541|4650|10000|0||101.21|100.21|0.00|-3.08|1C03|0|0|01|0600013D|0|41A00000|| +26|2023-10-06T22:00:30.2540000-07:00|13D|Fey Illumination|20.00|4002185F|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T22:00:30.2540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81076|81541|4650|10000|0||101.21|100.21|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:30.2540000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +37|2023-10-06T22:00:30.2970000-07:00|40021585|Zeromus|00010BF6|18418498||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:30.2970000-07:00|10FF0003|Gegehi Gehi|005A5A23|69861|73814|3500|10000|0||99.96|99.63|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:30.2970000-07:00|EB1|Big Bounce|0.00|40021585|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +37|2023-10-06T22:00:30.3870000-07:00|10FF0006|Wowobora Gogobora|00010BF1|81231|81809|5050|10000|0||100.60|100.57|0.00|-3.11|1B04|0|0|01|013D|0|41A00000|| +26|2023-10-06T22:00:30.3870000-07:00|13D|Fey Illumination|20.00|4002185F|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +21|2023-10-06T22:00:30.3870000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|232F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18418498|40478540|10000|10000|||100.00|80.10|0.00|0.00|81076|81541|4650|10000|||101.21|100.21|0.00|-3.08|00010C00|0|1| +261|2023-10-06T22:00:30.0360000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:00:30.5220000-07:00|10FF000B|Pusu Rosu|00010BF1|74179|79209|5523|10000|0||99.78|101.12|0.00|3.13|1805|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T22:00:30.5220000-07:00|13D|Fey Illumination|20.00|4002185F|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +21|2023-10-06T22:00:30.6100000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32714003|27E10000|A3E|340000|4|251A8000|11B|258000|0|0|0|0|0|0|0|0|18418498|40478540|10000|10000|||100.00|80.10|0.00|0.00|113033|129844|10000|10000|||99.99|98.99|0.00|-3.14|00010C01|0|1| +37|2023-10-06T22:00:30.6550000-07:00|10FF0008|Kokosaze Lulusaze|00010BF1|65913|90216|10000|10000|0||99.99|99.47|0.00|-3.14|1F06|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T22:00:30.6550000-07:00|13D|Fey Illumination|20.00|4002185F|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +24|2023-10-06T22:00:30.6560000-07:00|40021585|Zeromus|DoT|0|155D|18418498|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|74179|79209|5523|10000|||99.78|101.12|0.00|3.13| +36|2023-10-06T22:00:30.6560000-07:00|643C|3| +38|2023-10-06T22:00:30.6560000-07:00|40021585|Zeromus|005A5A00|18413029|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +21|2023-10-06T22:00:30.6990000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B5E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18418498|40478540|10000|10000|||100.00|80.10|0.00|0.00|113033|129844|10000|10000|||99.99|98.99|0.00|-3.14|00010C02|0|1| +37|2023-10-06T22:00:30.7440000-07:00|40021585|Zeromus|00010BFD|18410724||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:30.7440000-07:00|40021585|Zeromus|00010BFE|18397893||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:30.7440000-07:00|40021585|Zeromus|00010BFB|18368183||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:30.7440000-07:00|10FF000A|Dukaro Nezikaro|00010BFB|74241|83502|10000|10000|0||99.72|102.31|0.00|3.13|1E00|0|0|01|030001FB|0|41A00000|| +38|2023-10-06T22:00:30.7440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74241|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:00:30.7880000-07:00|10FF000A|Dukaro Nezikaro|00010BF1|74241|83502|10000|10000|0||99.72|102.31|0.00|3.13|1E07|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T22:00:30.7880000-07:00|13D|Fey Illumination|20.00|4002185F|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +38|2023-10-06T22:00:30.7880000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.66|96.79|0.00|-0.29|0|0|0|||| +30|2023-10-06T22:00:30.7880000-07:00|7AC|Summon Order II|0.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T22:00:30.7880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81231|81809|5050|10000|0||100.60|100.57|0.00|-3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:30.7880000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T22:00:30.9210000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18368183|40478540|10000|10000|||100.00|80.10|0.00|0.00|81231|81809|5050|10000|||100.60|100.57|0.00|-3.11|00010C03|0|1| +37|2023-10-06T22:00:30.9660000-07:00|40021585|Zeromus|00010BFF|18361882||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:30.9660000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.66|96.79|0.00|-0.71|0|0|0||||||| +26|2023-10-06T22:00:30.9660000-07:00|77B|Summon Order|30.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:00:30.9660000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81076|81541|4250|10000|||101.11|100.05|0.00|-2.96|81076|81541|4250|10000|||101.11|100.05|0.00|-2.96|00010C04|0|1| +21|2023-10-06T22:00:30.9660000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18368183|40478540|10000|10000|||100.00|80.10|0.00|0.00|81076|81541|4250|10000|||101.11|100.05|0.00|-2.96|00010C05|0|1| +04|2023-10-06T22:00:30.5330000-07:00|400218CA|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||102.45|102.76|0.00|-3.11| +261|2023-10-06T22:00:30.5330000-07:00|Remove|400218CA| +21|2023-10-06T22:00:31.0110000-07:00|400218CF|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|19A80000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|18368183|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||102.29|103.21|0.00|-3.12|00010C06|0|1| +22|2023-10-06T22:00:31.0550000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|125245|129071|10000|10000|||100.11|98.61|0.00|-3.14|54201|77430|10000|10000|||100.66|96.79|0.00|-0.94|00010C07|0|8| +22|2023-10-06T22:00:31.0550000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|113033|129844|10000|10000|||99.99|98.99|0.00|-3.14|54201|77430|10000|10000|||100.66|96.79|0.00|-0.94|00010C07|1|8| +22|2023-10-06T22:00:31.0550000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|65913|90216|10000|10000|||99.99|99.47|0.00|-3.14|54201|77430|10000|10000|||100.66|96.79|0.00|-0.94|00010C07|2|8| +22|2023-10-06T22:00:31.0550000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|69861|73814|3500|10000|||99.96|99.63|0.00|3.14|54201|77430|10000|10000|||100.66|96.79|0.00|-0.94|00010C07|3|8| +22|2023-10-06T22:00:31.0550000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81076|81541|4250|10000|||101.01|99.90|0.00|-2.84|54201|77430|10000|10000|||100.66|96.79|0.00|-0.94|00010C07|4|8| +22|2023-10-06T22:00:31.0550000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0006|Wowobora Gogobora|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|81231|81809|5050|10000|||100.60|100.57|0.00|-3.11|54201|77430|10000|10000|||100.66|96.79|0.00|-0.94|00010C07|5|8| +22|2023-10-06T22:00:31.0550000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF000B|Pusu Rosu|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|74179|79209|5523|10000|||99.78|101.12|0.00|3.13|54201|77430|10000|10000|||100.66|96.79|0.00|-0.94|00010C07|6|8| +22|2023-10-06T22:00:31.0550000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF000A|Dukaro Nezikaro|F940E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|74241|83502|10000|10000|||99.72|102.31|0.00|3.13|54201|77430|10000|10000|||100.66|96.79|0.00|-0.94|00010C07|7|8| +39|2023-10-06T22:00:31.1440000-07:00|10FF0008|Kokosaze Lulusaze|66815|90216|10000|10000|||99.99|99.47|0.00|-3.14| +37|2023-10-06T22:00:31.1880000-07:00|40021585|Zeromus|00010C00|18352875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:31.2330000-07:00|40021585|Zeromus|00010C01|18342666||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:31.2330000-07:00|10FF0007|Kehabiqo Febiqo|00010C01|122531||||||99.99|98.99|0.00|-3.14| +37|2023-10-06T22:00:31.2330000-07:00|40021585|Zeromus|00010C02|18339756||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:31.2330000-07:00|40021585|Zeromus|00010BFC|18330085||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:31.4110000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|232D0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|18330085|40478540|10000|10000|||100.00|80.10|0.00|0.00|74241|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C08|0|1| +38|2023-10-06T22:00:31.4110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74241|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:31.4110000-07:00|7A2|Bunshin|21.90|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|83502|83502| +37|2023-10-06T22:00:31.4550000-07:00|40021585|Zeromus|00010C03|18330019||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:31.4990000-07:00|40021585|Zeromus|00010C05|18329948||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:31.4990000-07:00|400218CB|Bunshin|4406|Gust Slash|40021585|Zeromus|710003|107D0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|18330085|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.73|102.32|0.00|3.13|00010C09|0|1| +26|2023-10-06T22:00:31.4990000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:00:31.4990000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|220E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18330085|40478540|10000|10000|||100.00|80.10|0.00|0.00|66815|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C0A|0|1| +20|2023-10-06T22:00:31.4990000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.78|101.12|0.00|3.13| +261|2023-10-06T22:00:30.9850000-07:00|Change|400218CB||| +261|2023-10-06T22:00:30.9850000-07:00|Change|400218CB||| +261|2023-10-06T22:00:31.1030000-07:00|Change|10FF000B||||||||||||| +39|2023-10-06T22:00:31.6330000-07:00|400218CB|Bunshin|76288|79156|10000|10000|||99.73|102.32|0.00|3.13| +21|2023-10-06T22:00:31.6770000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8CF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18329948|40478540|10000|10000|||100.00|80.10|0.00|0.00|74241|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C0B|0|1| +37|2023-10-06T22:00:31.7660000-07:00|40021585|Zeromus|00010C06|18323380||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:31.8110000-07:00|40021585|Zeromus|00010C08|18314375||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:31.8110000-07:00|10FF0001|Sesuga Sapisuga|126535|129071|10000|10000|||100.11|98.61|0.00|-3.14| +21|2023-10-06T22:00:31.8110000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1DFB0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|18329948|40478540|10000|10000|||100.00|80.10|0.00|0.00|125245|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C0C|0|1| +20|2023-10-06T22:00:31.8550000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.91|99.81|0.00|-2.43| +261|2023-10-06T22:00:31.4080000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T22:00:31.9000000-07:00|40021585|Zeromus|00010C09|18310154||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:31.9000000-07:00|400218CF|Automaton Queen|82193|85668|10000|10000|||102.28|103.20|0.00|-3.04| +21|2023-10-06T22:00:31.9450000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40021585|Zeromus|154003|42C50000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|18310154|40478540|10000|10000|||100.00|80.10|0.00|0.00|81231|81809|5050|10000|||100.60|100.57|0.00|-3.11|00010C0D|0|1| +21|2023-10-06T22:00:31.9450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18310154|40478540|10000|10000|||100.00|80.10|0.00|0.00|126535|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C0E|0|1| +31|2023-10-06T22:00:31.9450000-07:00|10FF0001||||| +37|2023-10-06T22:00:31.9890000-07:00|10FF0001|Sesuga Sapisuga|00010C07|126535|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1300|0|0|01|0200013B|0|41A80000|| +26|2023-10-06T22:00:31.9890000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +21|2023-10-06T22:00:32.0340000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|1F010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18310154|40478540|10000|10000|||100.00|80.10|0.00|0.00|66815|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C0F|0|1| +37|2023-10-06T22:00:32.1220000-07:00|10FF0007|Kehabiqo Febiqo|00010C07|122531|129844|10000|10000|13||99.99|98.99|0.00|-3.14|1501|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T22:00:32.1220000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +37|2023-10-06T22:00:32.1220000-07:00|40021585|Zeromus|00010C0A|18301436||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:32.1680000-07:00|10FF000B|Pusu Rosu|005A5A18|74179|79209|5523|10000|0||99.78|101.12|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:32.1680000-07:00|2B|Weakness|0.00|E0000000||10FF000B|Pusu Rosu|00|79209|| +37|2023-10-06T22:00:32.2120000-07:00|40021585|Zeromus|00010C0B|18299181||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:32.2130000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5250|10000|||100.60|100.57|0.00|-3.11| +37|2023-10-06T22:00:32.2570000-07:00|10FF0008|Kokosaze Lulusaze|00010C07|66815|90216|10000|10000|0||99.99|99.47|0.00|-3.14|1F02|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T22:00:32.2570000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +261|2023-10-06T22:00:31.8070000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:00:32.3470000-07:00|10FF000B|Pusu Rosu|74971|79209|5804|10000|||99.78|101.12|0.00|3.13| +39|2023-10-06T22:00:32.3470000-07:00|10FF000A|Dukaro Nezikaro|75076|83502|10000|10000|||99.72|102.31|0.00|3.13| +21|2023-10-06T22:00:32.3470000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40021585|Zeromus|150003|3F7F0000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|18299181|40478540|10000|10000|||100.00|80.10|0.00|0.00|69861|73814|3500|10000|||99.96|99.63|0.00|3.14|00010C10|0|1| +38|2023-10-06T22:00:32.3470000-07:00|10FF0003|Gegehi Gehi|005A5A23|69861|73814|3100|10000|0||99.96|99.63|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:32.3470000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:00:31.9250000-07:00|Change|10FF0003||| +37|2023-10-06T22:00:32.3910000-07:00|10FF0003|Gegehi Gehi|00010C07|69861|73814|3100|10000|0||99.96|99.63|0.00|3.14|2303|0|0|02|040004D2|0|C1F00000|||||| +26|2023-10-06T22:00:32.3910000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +24|2023-10-06T22:00:32.3910000-07:00|10FF0003|Gegehi Gehi|HoT|0|A60|69861|73814|3100|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|74971|79209|5804|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:32.3910000-07:00|10FF0003|Gegehi Gehi|005A5A23|72517|73814|3650|10000|0||99.96|99.63|0.00|3.14|0|0|0||||||||||||||||||||||||| +21|2023-10-06T22:00:32.4350000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|30220000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|18299181|40478540|10000|10000|||100.00|80.10|0.00|0.00|74971|79209|5804|10000|||99.78|101.12|0.00|3.13|00010C11|0|1| +37|2023-10-06T22:00:32.4800000-07:00|40021585|Zeromus|00010C0E|18296335||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:32.4800000-07:00|10FF0007|Kehabiqo Febiqo|123829|129844|10000|10000|||99.99|98.99|0.00|-3.14| +24|2023-10-06T22:00:32.4800000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|9DD|75076|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|74971|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:32.4800000-07:00|10FF000B|Pusu Rosu|HoT|777|A54|74971|79209|5404|10000|||99.78|101.12|0.00|3.13|10FF000B|Pusu Rosu|0|74971|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:32.4800000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A1E|81809|81809|5250|10000|||100.60|100.57|0.00|-3.11|10FF000B|Pusu Rosu|0|74971|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:32.4800000-07:00|10FF0003|Gegehi Gehi|HoT|777|9FE|72517|73814|3650|10000|||99.96|99.63|0.00|3.14|10FF000B|Pusu Rosu|0|74971|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:32.4800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A43|66815|90216|10000|10000|||99.99|99.47|0.00|-3.14|10FF000B|Pusu Rosu|0|74971|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:32.4800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|9F6|81076|81541|4250|10000|||100.91|99.81|0.00|-3.09|10FF000B|Pusu Rosu|0|74971|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:32.4800000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|FD1|122531|129844|10000|10000|||99.99|98.99|0.00|-3.14|10FF000B|Pusu Rosu|0|74971|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:32.4800000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A08|126535|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|74971|79209|5404|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:32.4800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127878|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:32.4800000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:32.4800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|69442|90216|10000|10000|0||99.99|99.47|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:32.4800000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:32.4800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5250|10000|0||100.60|100.57|0.00|-3.11|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:32.4800000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:32.4800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:32.4800000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:32.4800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4250|10000|0||100.91|99.81|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:32.4800000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:32.4800000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3650|10000|0||99.96|99.63|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:32.4800000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:32.4800000-07:00|10FF000B|Pusu Rosu|005A5A18|77615|79209|5404|10000|0||99.78|101.12|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:32.4800000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:32.4800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77601|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:32.4800000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:00:32.5240000-07:00|10FF0004|Buhojaqe Zijaqe|00010C07|81541|81541|4250|10000|0||100.91|99.81|0.00|-3.09|1C04|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T22:00:32.5240000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T22:00:32.0360000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:00:32.5690000-07:00|40021585|Zeromus|00010C0C|18288660||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:32.5690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A44|122531|129844|10000|10000|||99.99|98.99|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|122531|129844|10000|10000|||99.99|98.99|0.00|-3.14| +38|2023-10-06T22:00:32.5690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:00:32.6580000-07:00|10FF0006|Wowobora Gogobora|00010C07|81809|81809|5250|10000|0||100.60|100.57|0.00|-3.11|1B05|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T22:00:32.6580000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T22:00:32.6580000-07:00|40021585|Zeromus|00010C0F|18280723||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:32.6580000-07:00|400218CF|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1B4D0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|18288660|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||102.28|103.20|0.00|-3.04|00010C12|0|1| +24|2023-10-06T22:00:32.6580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A61|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14| +21|2023-10-06T22:00:32.6580000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12A30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18288660|40478540|10000|10000|||100.00|80.10|0.00|0.00|69442|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C13|0|1| +38|2023-10-06T22:00:32.6580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:00:32.7030000-07:00|40021585|Zeromus|00010C0D|18263630||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:32.7470000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-1.96| +37|2023-10-06T22:00:32.7920000-07:00|10FF000B|Pusu Rosu|00010C07|77615|79209|5404|10000|0||99.78|101.12|0.00|3.13|1806|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T22:00:32.7920000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +21|2023-10-06T22:00:32.7920000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|39940000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18263630|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|4250|10000|||100.91|99.81|0.00|-3.09|00010C14|0|1| +261|2023-10-06T22:00:32.4440000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T22:00:32.4440000-07:00|Change|10FF0003||| +37|2023-10-06T22:00:32.9250000-07:00|10FF000A|Dukaro Nezikaro|00010C07|77601|83502|10000|10000|0||99.72|102.31|0.00|3.13|1E07|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T22:00:32.9250000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +38|2023-10-06T22:00:32.9250000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.66|96.79|0.00|-1.64|0|0|0|||| +30|2023-10-06T22:00:32.9250000-07:00|77B|Summon Order|0.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +39|2023-10-06T22:00:32.9690000-07:00|10FF0003|Gegehi Gehi|73814|73814|3850|10000|||99.96|99.63|0.00|3.14| +26|2023-10-06T22:00:32.9690000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:00:32.9690000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|23020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18263630|40478540|10000|10000|||100.00|80.10|0.00|0.00|69442|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C15|0|1| +21|2023-10-06T22:00:33.0130000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|24520000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|69442|90216|10000|10000|||99.99|99.47|0.00|-3.14|54201|77430|10000|10000|||100.66|96.79|0.00|-1.64|00010C16|0|1| +21|2023-10-06T22:00:33.0590000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|2F7F0000|143E|340000|4|25C08000|4|1AA58000|11B|2A8000|0|0|0|0|0|0|18263630|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.99|98.99|0.00|-3.14|00010C17|0|1| +21|2023-10-06T22:00:33.0590000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|724003|10E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18263630|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3850|10000|||99.96|99.63|0.00|3.14|00010C18|0|1| +39|2023-10-06T22:00:33.1030000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|4050|10000|||100.91|99.81|0.00|-3.09| +39|2023-10-06T22:00:33.1030000-07:00|400218D1|Carbuncle|77698|77698|10000|10000|||100.59|99.30|0.00|0.03| +21|2023-10-06T22:00:33.1480000-07:00|10FF0001|Sesuga Sapisuga|20FDD6F|item_fdd6f|10FF0001|Sesuga Sapisuga|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C19|0|1| +21|2023-10-06T22:00:33.1480000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18263630|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3850|10000|||99.96|99.63|0.00|3.14|00010C1A|0|1| +22|2023-10-06T22:00:33.2370000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000B|Pusu Rosu|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C1B|0|8| +22|2023-10-06T22:00:33.2370000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|5250|10000|||100.60|100.57|0.00|-3.11|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C1B|1|8| +22|2023-10-06T22:00:33.2370000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77601|83502|10000|10000|||99.72|102.31|0.00|3.13|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C1B|2|8| +22|2023-10-06T22:00:33.2370000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3850|10000|||99.96|99.63|0.00|3.14|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C1B|3|8| +22|2023-10-06T22:00:33.2370000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|69442|90216|10000|10000|||99.99|99.47|0.00|-3.14|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C1B|4|8| +22|2023-10-06T22:00:33.2370000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|4050|10000|||100.91|99.81|0.00|-3.09|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C1B|5|8| +22|2023-10-06T22:00:33.2370000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.99|98.99|0.00|-3.14|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C1B|6|8| +22|2023-10-06T22:00:33.2370000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|77615|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C1B|7|8| +21|2023-10-06T22:00:33.3710000-07:00|10FF0004|Buhojaqe Zijaqe|409E|Recitation|10FF0004|Buhojaqe Zijaqe|E|7680000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|4050|10000|||100.91|99.81|0.00|-3.09|81541|81541|4050|10000|||100.91|99.81|0.00|-3.09|00010C1C|0|1| +38|2023-10-06T22:00:33.3710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4050|10000|0||100.91|99.81|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:33.3710000-07:00|768|Recitation|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:00:33.4150000-07:00|40021585|Zeromus|00010C13|18258859||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:33.4150000-07:00|40021585|Zeromus|00010C12|18251870||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:32.9910000-07:00|Change|400218CB||| +21|2023-10-06T22:00:33.5480000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|21470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18251870|40478540|10000|10000|||100.00|80.10|0.00|0.00|69442|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C1D|0|1| +37|2023-10-06T22:00:33.5940000-07:00|40021585|Zeromus|00010C15|18242908||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:33.5940000-07:00|40021585|Zeromus|00010C14|18228168||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:33.5940000-07:00|10FF0004|Buhojaqe Zijaqe|00010C14|81541|81541|4050|10000|0||100.92|99.81|0.00|2.77|1C00|0|0|01|07000768|0|C1700000|| +21|2023-10-06T22:00:33.5940000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|3EA10000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|18251870|40478540|10000|10000|||100.00|80.10|0.00|0.00|77601|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C1E|0|1| +38|2023-10-06T22:00:33.5940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77601|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:33.5940000-07:00|7A2|Bunshin|19.72|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +37|2023-10-06T22:00:33.6830000-07:00|40021585|Zeromus|00010C18|18223839||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:33.6830000-07:00|10FF0003|Gegehi Gehi|00010C18|73814|73814|3850|10000|0||99.96|99.63|-0.02|3.14|2300|0|0|01|040004D2|0|C1F00000|| +37|2023-10-06T22:00:33.6830000-07:00|40021585|Zeromus|00010C1A|18223838||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:33.6830000-07:00|10FF0003|Gegehi Gehi|00010C1A|73814|73814|3850|10000|0||99.96|99.63|-0.02|3.14|2300|0|0|01|040004D2|0|C1F00000|| +21|2023-10-06T22:00:33.6830000-07:00|400218CB|Bunshin|4407|Aeolian Edge|40021585|Zeromus|714003|15D20000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|18228168|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.73|102.32|0.00|3.13|00010C1F|0|1| +24|2023-10-06T22:00:33.6830000-07:00|40021585|Zeromus|DoT|0|1C1F|18228168|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|77615|79209|5404|10000|||99.78|101.12|0.00|3.13| +36|2023-10-06T22:00:33.6830000-07:00|6518|3| +38|2023-10-06T22:00:33.6830000-07:00|40021585|Zeromus|005A5A00|18216639|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +261|2023-10-06T22:00:33.2950000-07:00|Change|400218CB||| +37|2023-10-06T22:00:33.7270000-07:00|40021585|Zeromus|00010C11|18204317||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:33.7720000-07:00|40021585|Zeromus|00010C10|18188062||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:33.7720000-07:00|10FF0003|Gegehi Gehi|00010C10|73814|73814|3850|10000|0||99.96|99.63|-0.02|3.14|2300|0|0|01|040004D2|0|41F00000|| +38|2023-10-06T22:00:33.7720000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3850|10000|0||99.96|99.63|-0.02|3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:00:33.8170000-07:00|10FF0008|Kokosaze Lulusaze|00010C16|78740||||||99.99|99.47|0.00|-3.14| +21|2023-10-06T22:00:33.8170000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|12ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18204317|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3850|10000|||99.96|99.63|-0.02|3.14|00010C20|0|1| +261|2023-10-06T22:00:33.3920000-07:00|Change|10FF0004||||||| +21|2023-10-06T22:00:33.8620000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18188062|40478540|10000|10000|||100.00|80.10|0.00|0.00|77601|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C21|0|1| +261|2023-10-06T22:00:33.4850000-07:00|Change|10FF0003||||| +20|2023-10-06T22:00:33.9500000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|99.78|101.12|0.00|3.13| +261|2023-10-06T22:00:33.4850000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:00:33.9950000-07:00|10FF0004|Buhojaqe Zijaqe|00010C1C|81541|81541|4050|10000|0||100.93|99.81|0.00|2.14|1C00|0|0|01|07000768|0|41700000|| +38|2023-10-06T22:00:33.9950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:33.9950000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:00:33.9950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4050|10000|0||100.93|99.81|0.00|2.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:34.0410000-07:00|10FF0001|Sesuga Sapisuga|00010C19|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1300|0|0|01|06000031|296B|41F00000|| +26|2023-10-06T22:00:34.0410000-07:00|31|Medicated|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|296B|129071|129071| +37|2023-10-06T22:00:34.0410000-07:00|10FF000B|Pusu Rosu|00010C1B|77615|79209|5404|10000|0||99.78|101.12|0.00|3.13|1800|0|0|01|040004C3|0|41200000|| +26|2023-10-06T22:00:34.0410000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:34.0410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||| +21|2023-10-06T22:00:34.0860000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18188062|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.99|98.99|0.00|-3.14|00010C22|0|1| +21|2023-10-06T22:00:34.0860000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18188062|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5250|10000|||100.60|100.57|0.00|-3.11|00010C23|0|1| +37|2023-10-06T22:00:34.1290000-07:00|40021585|Zeromus|00010C1E|18172029||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:34.1740000-07:00|10FF0006|Wowobora Gogobora|00010C1B|81809|81809|5250|10000|0||100.60|100.57|0.00|-3.11|1B01|0|0|01|040004C3|0|41200000|| +26|2023-10-06T22:00:34.1740000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +39|2023-10-06T22:00:34.1740000-07:00|10FF0008|Kokosaze Lulusaze|79642|90216|10000|10000|||99.99|99.47|0.00|-3.14| +12|2023-10-06T22:00:33.6730000-07:00|19|3734|389|3999|247|412|390|3734|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +37|2023-10-06T22:00:34.2180000-07:00|10FF0001|Sesuga Sapisuga|00010BF3|1|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1300|0|0|01|080006E9|0|41200000|| +26|2023-10-06T22:00:34.2180000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +37|2023-10-06T22:00:34.2180000-07:00|40021585|Zeromus|00010C1F|18166443||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:34.2180000-07:00|400218CF|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|21790000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|18172029|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04|00010C24|0|1| +21|2023-10-06T22:00:34.2180000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18172029|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C25|0|1| +31|2023-10-06T22:00:34.2180000-07:00|10FF0001||||| +37|2023-10-06T22:00:34.2620000-07:00|10FF0007|Kehabiqo Febiqo|00010BF3|1|129844|10000|10000|13||99.99|98.99|0.00|-3.14|1501|0|0|01|070006E9|0|41200000|| +26|2023-10-06T22:00:34.2620000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +20|2023-10-06T22:00:34.2620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.94|99.81|0.00|1.65| +37|2023-10-06T22:00:34.3060000-07:00|10FF0003|Gegehi Gehi|00010BF3|1|73814|3850|10000|0||99.96|99.63|-0.02|3.14|2302|0|0|01|080006E9|0|41200000|| +26|2023-10-06T22:00:34.3060000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +37|2023-10-06T22:00:34.3060000-07:00|10FF000A|Dukaro Nezikaro|00010C1B|77601|83502|10000|10000|0||99.72|102.31|0.00|3.13|1E02|0|0|01|080004C3|0|41200000|| +26|2023-10-06T22:00:34.3060000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:00:34.3510000-07:00|40021585|Zeromus|00010C1D|18157924||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:34.3510000-07:00|10FF0004|Buhojaqe Zijaqe|00010BF3|1|81541|4050|10000|0||100.94|99.81|0.00|1.65|1C03|0|0|01|080006E9|0|41200000|| +26|2023-10-06T22:00:34.3510000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +261|2023-10-06T22:00:33.9090000-07:00|Change|40021594||||||||| +261|2023-10-06T22:00:33.9090000-07:00|Change|40021599||||||||| +261|2023-10-06T22:00:33.9090000-07:00|Change|40021596||||||||| +261|2023-10-06T22:00:33.9090000-07:00|Change|40021592||||||||| +261|2023-10-06T22:00:33.9090000-07:00|Change|40021598||||||||| +261|2023-10-06T22:00:33.9090000-07:00|Change|40021595||||||||| +37|2023-10-06T22:00:34.3960000-07:00|10FF0006|Wowobora Gogobora|00010BF3|1|81809|5250|10000|0||100.60|100.57|0.00|-3.11|1B04|0|0|01|050006E9|0|41200000|| +26|2023-10-06T22:00:34.3960000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +37|2023-10-06T22:00:34.3960000-07:00|40021585|Zeromus|00010C20|18153079||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:34.3960000-07:00|40021585|Zeromus|00010C21|18150403||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:34.3960000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40021585|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|18157924|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5250|10000|||100.60|100.57|0.00|-3.11|00010C26|0|1| +21|2023-10-06T22:00:34.3960000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|26370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18157924|40478540|10000|10000|||100.00|80.10|0.00|0.00|77601|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C27|0|1| +38|2023-10-06T22:00:34.3960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|1|81809|5250|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:34.3960000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:00:34.4390000-07:00|400218D9||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:00:34.4410000-07:00|10FF000B|Pusu Rosu|00010BF3|1|79209|5404|10000|0||99.78|101.12|0.00|3.13|1805|0|0|01|050006E9|0|41200000|| +26|2023-10-06T22:00:34.4410000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF000B|Pusu Rosu|00|79209|40478540| +37|2023-10-06T22:00:34.4410000-07:00|10FF0003|Gegehi Gehi|00010C1B|1|73814|3850|10000|0||99.96|99.63|-0.02|3.14|2303|0|0|01|090004C3|0|41200000|| +26|2023-10-06T22:00:34.4410000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +20|2023-10-06T22:00:34.4410000-07:00|40021592|Zeromus|8B42|Abyssal Echoes|40021592|Zeromus|15.700|83.50|83.50|0.00|0.00| +261|2023-10-06T22:00:34.0220000-07:00|Change|400218D1||| +20|2023-10-06T22:00:34.4410000-07:00|40021593|Zeromus|8B41|unknown_8b41|40021593|Zeromus|8.700|100.00|100.00|0.00|-2.36| +20|2023-10-06T22:00:34.4410000-07:00|40021594|Zeromus|8B42|Abyssal Echoes|40021594|Zeromus|15.700|116.50|116.50|0.00|0.00| +20|2023-10-06T22:00:34.4410000-07:00|40021595|Zeromus|8B41|unknown_8b41|40021595|Zeromus|8.700|100.00|100.00|0.00|0.79| +20|2023-10-06T22:00:34.4410000-07:00|40021596|Zeromus|8B42|Abyssal Echoes|40021596|Zeromus|15.700|88.00|100.00|0.00|0.00| +20|2023-10-06T22:00:34.4410000-07:00|40021597|Zeromus|8B40|unknown_8b40|40021597|Zeromus|8.700|100.00|100.00|0.00|-1.57| +20|2023-10-06T22:00:34.4410000-07:00|40021598|Zeromus|8B42|Abyssal Echoes|40021598|Zeromus|15.700|112.00|100.00|0.00|0.00| +20|2023-10-06T22:00:34.4410000-07:00|40021599|Zeromus|8B40|unknown_8b40|40021599|Zeromus|8.700|100.00|100.00|0.00|1.57| +26|2023-10-06T22:00:34.4410000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:00:34.4410000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|22630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18157924|40478540|10000|10000|||100.00|80.10|0.00|0.00|79642|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C28|0|1| +21|2023-10-06T22:00:34.4410000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|44FE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|18157924|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C29|0|1| +261|2023-10-06T22:00:34.0220000-07:00|Change|40021593||||||||||||||| +38|2023-10-06T22:00:34.4410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|1|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:34.4410000-07:00|76E|Sword Oath|22.92|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T22:00:34.4410000-07:00|400218D9||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:00:34.0220000-07:00|Change|40021597||||||||||||||| +37|2023-10-06T22:00:34.4840000-07:00|10FF0008|Kokosaze Lulusaze|00010BF3|1|90216|10000|10000|0||99.99|99.47|0.00|-3.14|1F06|0|0|01|060006E9|0|41200000|| +26|2023-10-06T22:00:34.4840000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +37|2023-10-06T22:00:34.5280000-07:00|10FF000A|Dukaro Nezikaro|00010BF3|1|83502|10000|10000|0||99.72|102.31|0.00|3.13|1E07|0|0|01|090006E9|0|41200000|| +26|2023-10-06T22:00:34.5280000-07:00|6E9|Doom|10.00|40021585|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|40478540| +37|2023-10-06T22:00:34.5730000-07:00|40021585|Zeromus|00010C17|18138244||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:34.5730000-07:00|10FF0007|Kehabiqo Febiqo|00010C17|16486||||||99.99|98.99|0.00|-3.14| +37|2023-10-06T22:00:34.5730000-07:00|10FF0008|Kokosaze Lulusaze|00010C1B|1|90216|10000|10000|0||99.99|99.47|0.00|-3.14|1F04|0|0|01|070004C3|0|41200000|| +26|2023-10-06T22:00:34.5730000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:00:34.6170000-07:00|40021585|Zeromus|00010C22|18135340||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:34.6170000-07:00|40021585|Zeromus|00010C23|18135269||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:34.6170000-07:00|400218CB|Bunshin|76288|79156|10000|10000|||99.73|102.32|0.00|3.13| +261|2023-10-06T22:00:34.1370000-07:00|Add|400218D9||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:00:34.1370000-07:00|400218D9|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||102.44|102.30|0.00|-3.11| +37|2023-10-06T22:00:34.7070000-07:00|10FF0004|Buhojaqe Zijaqe|00010C1B|1|81541|4050|10000|0||100.94|99.81|0.00|2.74|1C05|0|0|01|090004C3|0|41200000|| +26|2023-10-06T22:00:34.7070000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T22:00:34.2340000-07:00|Change|400218D9||||| +37|2023-10-06T22:00:34.7500000-07:00|40021585|Zeromus|00010C25|18133390||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:34.7500000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|750003|481B0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|18135269|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|73814|3850|10000|||99.96|99.63|-0.02|3.14|00010C2A|0|1| +39|2023-10-06T22:00:34.7950000-07:00|10FF0001|Sesuga Sapisuga|1291|129071|10000|10000|||100.11|98.61|0.00|-3.14| +37|2023-10-06T22:00:34.8400000-07:00|10FF0007|Kehabiqo Febiqo|00010C1B|16486|129844|10000|10000|13||99.99|98.99|0.00|-3.14|1506|0|0|01|090004C3|0|41200000|| +26|2023-10-06T22:00:34.8400000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +261|2023-10-06T22:00:34.4320000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T22:00:34.4320000-07:00|Change|40021596||||||||||||| +261|2023-10-06T22:00:34.4320000-07:00|Change|40021595||||||||||||| +261|2023-10-06T22:00:34.4320000-07:00|Change|40021594||||||||||||| +261|2023-10-06T22:00:34.4320000-07:00|Change|40021598||||||||||||| +261|2023-10-06T22:00:34.4320000-07:00|Change|40021592||||||||||||| +261|2023-10-06T22:00:34.4320000-07:00|Change|40021599||||||||||||| +39|2023-10-06T22:00:34.9300000-07:00|400218CF|Automaton Queen|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04| +261|2023-10-06T22:00:34.4320000-07:00|Change|10FF0003||| +37|2023-10-06T22:00:34.9740000-07:00|10FF0001|Sesuga Sapisuga|00010C1B|1291|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1307|0|0|01|090004C3|0|41200000|| +26|2023-10-06T22:00:34.9740000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:00:35.0180000-07:00|40021585|Zeromus|00010C24|18124821||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:35.0180000-07:00|40021585|Zeromus|00010C27|18115038||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:35.0180000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|13AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18133390|40478540|10000|10000|||100.00|80.10|0.00|0.00|1|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C2B|0|1| +37|2023-10-06T22:00:35.0630000-07:00|40021585|Zeromus|00010C28|18106235||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:35.0630000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|AFF|1|90216|10000|10000|||99.99|99.47|0.00|-3.14|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.0630000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A84|1|81541|4050|10000|||100.94|99.81|0.00|-3.09|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:35.0630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|2816|90216|10000|10000|0||99.99|99.47|0.00|-3.14|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:00:35.0630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|2693|81541|4050|10000|0||100.94|99.81|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T22:00:35.1510000-07:00|10FF0006|Wowobora Gogobora|HoT|0|AD4|1|81809|5250|10000|||100.60|100.57|0.00|-3.11|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +21|2023-10-06T22:00:35.1510000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1291|129071|10000|10000|||100.11|98.61|0.00|-3.14|1291|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C2C|0|1| +38|2023-10-06T22:00:35.1510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|2773|81809|5250|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T22:00:35.1960000-07:00|10FF0006|Wowobora Gogobora|3591|81809|5450|10000|||100.60|100.57|0.00|-3.11| +21|2023-10-06T22:00:35.1960000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|24400000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|18106235|40478540|10000|10000|||100.00|80.10|0.00|0.00|2693|81541|4050|10000|||100.94|99.81|0.00|-3.09|00010C2D|0|1| +261|2023-10-06T22:00:34.7550000-07:00|Change|10FF0006||||| +21|2023-10-06T22:00:35.3280000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18106235|40478540|10000|10000|||100.00|80.10|0.00|0.00|2816|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C2E|0|1| +39|2023-10-06T22:00:35.3730000-07:00|10FF000B|Pusu Rosu|793|79209|5685|10000|||99.78|101.12|0.00|3.13| +39|2023-10-06T22:00:35.3730000-07:00|10FF000A|Dukaro Nezikaro|836|83502|10000|10000|||99.72|102.31|0.00|3.13| +24|2023-10-06T22:00:35.3730000-07:00|10FF0003|Gegehi Gehi|HoT|0|A43|1|73814|3450|10000|||99.96|99.63|-0.02|3.14|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:35.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|2628|73814|4000|10000|0||99.96|99.63|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:34.9820000-07:00|Change|10FF000B||||| +37|2023-10-06T22:00:35.4170000-07:00|10FF0006|Wowobora Gogobora|00010C26|3591|81809|5450|10000|0||100.60|100.57|0.00|-3.11|1B00|0|0|01|08000AA5|0|0|| +24|2023-10-06T22:00:35.4170000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A45|1|83502|10000|10000|||99.72|102.31|0.00|3.13|40021585|Zeromus|0|18106235|40478540|10000|10000|||100.00|80.10|0.00|0.00| +22|2023-10-06T22:00:35.4170000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|200004|39E30000|BDBC0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13|1|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C2F|0|8| +22|2023-10-06T22:00:35.4170000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|248C0000|BDBC0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|3591|81809|5450|10000|||100.60|100.57|0.00|-3.11|1|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C2F|1|8| +22|2023-10-06T22:00:35.4170000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|4|243B0000|BDBC0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|1|83502|10000|10000|||99.72|102.31|0.00|3.13|1|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C2F|2|8| +22|2023-10-06T22:00:35.4170000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|24950000|BDBC0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|1|73814|3450|10000|||99.96|99.63|-0.02|3.14|1|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C2F|3|8| +22|2023-10-06T22:00:35.4170000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|4|249C0000|BDBC0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|2816|90216|10000|10000|||99.99|99.47|0.00|-3.14|1|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C2F|4|8| +22|2023-10-06T22:00:35.4170000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|24740000|BDBC0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|2693|81541|3650|10000|||100.94|99.81|0.00|-3.09|1|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C2F|5|8| +22|2023-10-06T22:00:35.4170000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|25080000|BDBC0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|16486|129844|10000|10000|||99.99|98.99|0.00|-3.14|1|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C2F|6|8| +22|2023-10-06T22:00:35.4170000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|24680000|BDBC0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|1291|129071|10000|10000|||100.11|98.61|0.00|-3.14|1|79209|5404|10000|||99.78|101.12|0.00|3.13|00010C2F|7|8| +38|2023-10-06T22:00:35.4170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|3591|81809|5450|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:35.4170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|3465|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:35.4610000-07:00|10FF0007|Kehabiqo Febiqo|17784|129844|10000|10000|||99.99|98.99|0.00|-3.14| +24|2023-10-06T22:00:35.4620000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|A13|1|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.4620000-07:00|10FF000B|Pusu Rosu|HoT|777|F87|1|79209|5404|10000|||99.78|101.12|0.00|3.13|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.4620000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A3E|3591|81809|5450|10000|||100.60|100.57|0.00|-3.11|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.4620000-07:00|10FF0003|Gegehi Gehi|HoT|777|9CE|1|73814|3450|10000|||99.96|99.63|-0.02|3.14|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.4620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|9FA|2816|90216|10000|10000|||99.99|99.47|0.00|-3.14|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.4620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A53|2693|81541|3650|10000|||100.94|99.81|0.00|-3.09|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.4620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A01|16486|129844|10000|10000|||99.99|98.99|0.00|-3.14|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.4620000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A37|1291|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +24|2023-10-06T22:00:35.4620000-07:00|10FF000B|Pusu Rosu|HoT|0|AF0|1|79209|5404|10000|||99.78|101.12|0.00|3.13|10FF000B|Pusu Rosu|0|1|79209|5404|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:35.4620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|20345|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:35.4620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|5370|90216|10000|10000|0||99.99|99.47|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:35.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:35.4620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|6213|81809|5450|10000|0||100.60|100.57|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:35.4620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|3906|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:35.4620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|5336|81541|3650|10000|0||100.94|99.81|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:35.4620000-07:00|10FF0003|Gegehi Gehi|005A5A23|5138|73814|4000|10000|0||99.96|99.63|-0.02|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:35.4620000-07:00|10FF000B|Pusu Rosu|005A5A18|7568|79209|4685|10000|0||99.78|101.12|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.4620000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:35.4620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|6044|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.4620000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T22:00:35.5060000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|3BB40000|4|25A98000|0|0|0|0|0|0|0|0|0|0|0|0|18106235|40478540|10000|10000|||100.00|80.10|0.00|0.00|20345|129844|10000|10000|||99.99|98.99|0.00|-3.14|00010C30|0|1| +24|2023-10-06T22:00:35.5500000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A7D|20345|129844|10000|10000|||99.99|98.99|0.00|-3.14|10FF000B|Pusu Rosu|0|7568|79209|4685|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:35.5500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|23030|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:35.0960000-07:00|Change|400218D9||| +24|2023-10-06T22:00:35.6390000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|11EB|3906|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|7568|79209|4685|10000|||99.78|101.12|0.00|3.13| +38|2023-10-06T22:00:35.6390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|8493|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:35.6830000-07:00|40021585|Zeromus|00010C2B|18101201||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:35.7720000-07:00|40021585|Zeromus|00010C29|18083539||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:35.7720000-07:00|400218CF|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|1FF80000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|18101201|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04|00010C31|0|1| +39|2023-10-06T22:00:35.7720000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +22|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|434D0000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|00010C32|0|8| +22|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0006|Wowobora Gogobora|200004|41010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6213|81809|5450|10000|||100.60|100.57|0.00|-3.11|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|00010C32|1|8| +22|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|44B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5138|73814|4000|10000|||99.96|99.63|-0.02|3.14|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|00010C32|2|8| +22|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|43930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5370|90216|10000|10000|||99.99|99.47|0.00|-3.14|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|00010C32|3|8| +22|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|428F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23030|129844|10000|10000|||99.99|98.99|0.00|-3.14|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|00010C32|4|8| +22|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|200004|432B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8493|129071|10000|10000|||100.11|98.61|0.00|-3.14|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|00010C32|5|8| +22|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000B|Pusu Rosu|200004|41E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|00010C32|6|8| +22|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000A|Dukaro Nezikaro|200004|42A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6044|83502|10000|10000|||99.72|102.31|0.00|3.13|5336|81541|3650|10000|||100.94|99.81|0.00|-3.09|00010C32|7|8| +38|2023-10-06T22:00:35.7720000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|5336|81541|3650|10000|0||100.94|99.81|0.00|-3.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:35.7720000-07:00|768|Recitation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:00:35.8160000-07:00|10FF0001|Sesuga Sapisuga|00010C2C|8493|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1300|0|0|01|0A00004C|0|41A00000|| +26|2023-10-06T22:00:35.8160000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T22:00:35.8160000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19280000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|18083539|40478540|10000|10000|||100.00|80.10|0.00|0.00|6044|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C33|0|1| +38|2023-10-06T22:00:35.8160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|6044|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.8160000-07:00|7A2|Bunshin|17.49|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:00:35.3770000-07:00|Change|400218CB||| +21|2023-10-06T22:00:35.8610000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|750003|2C880000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|18083539|40478540|10000|10000|||100.00|80.10|0.00|0.00|8493|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C34|0|1| +38|2023-10-06T22:00:35.8610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|8493|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:35.8610000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T22:00:35.8610000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:00:35.4730000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T22:00:35.9050000-07:00|400218CB|Bunshin|4405|Spinning Edge|40021585|Zeromus|710003|111F0000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|18083539|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.73|102.32|0.00|3.13|00010C35|0|1| +26|2023-10-06T22:00:35.9050000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:00:35.9050000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2AC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18083539|40478540|10000|10000|||100.00|80.10|0.00|0.00|5370|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C36|0|1| +261|2023-10-06T22:00:35.4730000-07:00|Change|10FF0003||| +261|2023-10-06T22:00:35.4730000-07:00|Change|400218CB||| +37|2023-10-06T22:00:35.9950000-07:00|40021585|Zeromus|00010C2D|18074259||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:35.9950000-07:00|10FF0003|Gegehi Gehi|5876|73814|4200|10000|||99.96|99.63|-0.02|3.14| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|36030000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|0|9| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|34EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6213|81809|5450|10000|||100.60|100.54|0.00|-2.88|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|1|9| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|41760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18074259|40478540|10000|10000|||100.00|80.10|0.00|0.00|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|2|9| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|36A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6044|83502|10000|10000|||99.72|102.31|0.00|3.13|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|3|9| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|35E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5876|73814|4200|10000|||99.96|99.63|-0.02|3.14|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|4|9| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|35EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5370|90216|10000|10000|||99.99|99.47|0.00|-3.14|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|5|9| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|35E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5336|81541|3650|10000|||100.94|99.81|0.00|-3.08|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|6|9| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|200004|53DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|23030|129844|10000|10000|||99.99|98.99|0.00|-3.14|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|7|9| +22|2023-10-06T22:00:36.0390000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|36B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8493|129071|10000|10000|||100.11|98.61|0.00|-3.14|7568|79209|4685|10000|||99.78|101.12|0.00|3.13|00010C37|8|9| +21|2023-10-06T22:00:36.0390000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18074259|40478540|10000|10000|||100.00|80.10|0.00|0.00|6044|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C38|0|1| +37|2023-10-06T22:00:36.0830000-07:00|40021585|Zeromus|00010C2E|18070643||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:36.0830000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18074259|40478540|10000|10000|||100.00|80.10|0.00|0.00|5336|81541|3650|10000|||100.94|99.81|0.00|-3.08|00010C39|0|1| +39|2023-10-06T22:00:36.1270000-07:00|10FF0004|Buhojaqe Zijaqe|6151|81541|3850|10000|||100.94|99.81|0.00|-3.08| +37|2023-10-06T22:00:36.1720000-07:00|40021585|Zeromus|00010C30|18055359||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:36.1720000-07:00|10FF0007|Kehabiqo Febiqo|00010C30|32671||||||99.99|98.99|0.00|-3.14| +21|2023-10-06T22:00:36.1720000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|23030|129844|10000|10000|||99.99|98.99|0.00|-3.14|23030|129844|10000|10000|||99.99|98.99|0.00|-3.14|00010C3A|0|1| +38|2023-10-06T22:00:36.1720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|32671|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:36.1720000-07:00|A75|Surging Tempest|24.48|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:00:36.1720000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T22:00:36.1720000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:00:36.1720000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:00:36.2160000-07:00|40021585|Zeromus|00010C33|18048919||||||100.00|80.10|0.00|0.00| +36|2023-10-06T22:00:36.2610000-07:00|6644|3| +24|2023-10-06T22:00:36.2610000-07:00|10FF000B|Pusu Rosu|HoT|4C3|2B09|7568|79209|4685|10000|||99.77|101.11|0.00|-3.05|10FF000B|Pusu Rosu|1|7568|79209|4685|10000|||99.77|101.11|0.00|-3.05| +37|2023-10-06T22:00:36.2610000-07:00|10FF000B|Pusu Rosu|00010C2F|33404|79209|4685|10000|0||99.77|101.11|0.00|-3.05|1800|0|0|01|06000096|0|41700000|| +26|2023-10-06T22:00:36.2610000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T22:00:36.3050000-07:00|40021585|Zeromus|00010C35|18044536||||||100.00|80.10|0.00|0.00| +36|2023-10-06T22:00:36.3940000-07:00|6770|3| +37|2023-10-06T22:00:36.3940000-07:00|10FF0004|Buhojaqe Zijaqe|00010C32|23380||||||100.94|99.81|0.00|-3.06| +36|2023-10-06T22:00:36.3940000-07:00|689C|3| +24|2023-10-06T22:00:36.3940000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|1C6F|6213|81809|5450|10000|||100.53|99.30|0.00|-2.90|10FF000B|Pusu Rosu|0|33404|79209|4685|10000|||99.77|101.10|0.00|-2.85| +37|2023-10-06T22:00:36.3940000-07:00|10FF0006|Wowobora Gogobora|00010C2F|22848|81809|5450|10000|0||100.53|99.30|0.00|-2.90|1B01|0|0|01|09000096|0|41700000|| +26|2023-10-06T22:00:36.3940000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +261|2023-10-06T22:00:36.0120000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T22:00:36.4830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18044536|40478540|10000|10000|||100.00|80.10|0.00|0.00|8493|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C3B|0|1| +31|2023-10-06T22:00:36.4830000-07:00|10FF0001||||| +37|2023-10-06T22:00:36.5270000-07:00|40021585|Zeromus|00010C34|18033136||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:36.5270000-07:00|10FF0001|Sesuga Sapisuga|00010C34|8493|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1300|0|0|02|0B000558|04|41F00000|||||| +37|2023-10-06T22:00:36.5270000-07:00|10FF0006|Wowobora Gogobora|00010C32|39489||||||100.49|98.49|0.00|-2.98| +36|2023-10-06T22:00:36.5270000-07:00|69C8|3| +24|2023-10-06T22:00:36.5270000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1AF7|6044|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|33404|79209|4685|10000|||99.76|101.08|0.00|-2.66| +37|2023-10-06T22:00:36.5270000-07:00|10FF000A|Dukaro Nezikaro|00010C2F|22222|83502|10000|10000|0||99.72|102.31|0.00|3.13|1E02|0|0|01|0A000096|0|41700000|| +26|2023-10-06T22:00:36.5270000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T22:00:36.5270000-07:00|400218D9|Emerald Garuda|64FE|Aerial Blast|40021585|Zeromus|350003|614F0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|18044536|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.44|102.30|0.00|-3.11|00010C3C|0|1| +261|2023-10-06T22:00:36.0120000-07:00|Change|400218D1||| +21|2023-10-06T22:00:36.5280000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|726003|27670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18044536|40478540|10000|10000|||100.00|80.10|0.00|0.00|5370|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C3D|0|1| +38|2023-10-06T22:00:36.5280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|8493|129071|10000|10000|0||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:36.5730000-07:00|40021585|Zeromus|00010C36|18022190||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:36.5730000-07:00|40021585|Zeromus|00010C31|18014006||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:36.5730000-07:00|40021585|Zeromus|00010C2A|17995547||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:36.5730000-07:00|40021585|Zeromus|00010C38|17991952||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:36.6170000-07:00|40021585|Zeromus|00010C39|17991882||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:36.6170000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17991952|40478540|10000|10000|||100.00|80.10|0.00|0.00|5876|73814|4200|10000|||99.96|99.63|-0.02|3.14|00010C3E|0|1| +36|2023-10-06T22:00:36.6620000-07:00|6AF4|3| +37|2023-10-06T22:00:36.6620000-07:00|10FF0003|Gegehi Gehi|00010C32|23469||||||99.96|99.63|-0.02|3.14| +24|2023-10-06T22:00:36.6620000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|2A63|5876|73814|4200|10000|||99.96|99.63|-0.02|3.14|10FF000B|Pusu Rosu|1|33404|79209|4685|10000|||99.71|100.43|0.00|-2.72| +37|2023-10-06T22:00:36.6620000-07:00|10FF0003|Gegehi Gehi|00010C2F|43685|73814|4200|10000|0||99.96|99.63|-0.02|3.14|2303|0|0|01|0A000096|0|41700000|| +26|2023-10-06T22:00:36.6620000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +24|2023-10-06T22:00:36.6620000-07:00|40021585|Zeromus|DoT|0|109C|17991952|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|33404|79209|4685|10000|||99.71|100.43|0.00|-2.72| +20|2023-10-06T22:00:36.6620000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.94|99.81|0.00|-3.06| +36|2023-10-06T22:00:36.6620000-07:00|6BD0|3| +38|2023-10-06T22:00:36.6620000-07:00|40021585|Zeromus|005A5A00|17987630|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T22:00:36.7060000-07:00|10FF000B|Pusu Rosu|00010C37|47231|79209|5185|10000|0||99.71|100.43|0.00|-2.72|1800|0|0|0| +22|2023-10-06T22:00:36.7510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|3B4D0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|00010C3F|0|8| +22|2023-10-06T22:00:36.7510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|3B640000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|32671|129844|10000|10000|||99.99|98.99|0.00|-3.14|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|00010C3F|1|8| +22|2023-10-06T22:00:36.7510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|200004|5E2A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|5370|90216|10000|10000|||99.99|99.47|0.00|-3.14|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|00010C3F|2|8| +22|2023-10-06T22:00:36.7510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|3CF10000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|8493|129071|10000|10000|||100.11|98.61|0.00|-3.14|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|00010C3F|3|8| +22|2023-10-06T22:00:36.7510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|3A8B0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|43685|73814|4200|10000|||99.96|99.63|-0.02|3.14|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|00010C3F|4|8| +22|2023-10-06T22:00:36.7510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|200004|5C0E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|23380|81541|3850|10000|||100.94|99.81|0.00|-3.06|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|00010C3F|5|8| +22|2023-10-06T22:00:36.7510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|5B690000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|39489|81809|5450|10000|||100.39|97.14|-0.02|-3.07|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|00010C3F|6|8| +22|2023-10-06T22:00:36.7510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|3AAB0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|22222|83502|10000|10000|||99.72|102.31|0.00|3.13|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|00010C3F|7|8| +36|2023-10-06T22:00:36.7950000-07:00|6CFC|3| +37|2023-10-06T22:00:36.7950000-07:00|10FF0008|Kokosaze Lulusaze|00010C32|22669||||||99.99|99.47|0.00|-3.14| +24|2023-10-06T22:00:36.7950000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|1C13|5370|90216|10000|10000|||99.99|99.47|0.00|-3.14|10FF000B|Pusu Rosu|0|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84| +37|2023-10-06T22:00:36.7950000-07:00|10FF0008|Kokosaze Lulusaze|00010C2F|39228|90216|10000|10000|0||99.99|99.47|0.00|-3.14|1F04|0|0|01|08000096|0|41700000|| +26|2023-10-06T22:00:36.7950000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +21|2023-10-06T22:00:36.7950000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|200004|24870000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|47231|79209|5185|10000|||99.65|99.85|-0.02|-2.84|54201|77430|10000|10000|||100.66|96.79|0.00|-2.28|00010C40|0|1| +21|2023-10-06T22:00:36.7960000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2DB20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17987630|40478540|10000|10000|||100.00|80.10|0.00|0.00|32671|129844|10000|10000|||99.99|98.99|0.00|-3.14|00010C41|0|1| +37|2023-10-06T22:00:36.8400000-07:00|10FF0006|Wowobora Gogobora|00010C37|53035||||||100.39|96.96|-0.02|3.13| +20|2023-10-06T22:00:36.8840000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|2.982|100.39|96.96|-0.02|3.13| +261|2023-10-06T22:00:36.3350000-07:00|Change|10FF0006||||||||||||||||||| +37|2023-10-06T22:00:36.9290000-07:00|10FF0007|Kehabiqo Febiqo|00010C3A|32671|129844|10000|10000|13||99.99|98.99|0.00|-3.14|1500|0|0|03|0A000499|03|41700000|||||||||| +37|2023-10-06T22:00:36.9290000-07:00|10FF0007|Kehabiqo Febiqo|00010C32|49710||||||99.99|98.99|0.00|-3.14| +24|2023-10-06T22:00:36.9290000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|1A41|23380|81541|3850|10000|||100.94|99.81|0.00|-3.06|10FF000B|Pusu Rosu|0|47231|79209|5185|10000|||99.55|99.36|0.00|-3.01| +37|2023-10-06T22:00:36.9290000-07:00|10FF0004|Buhojaqe Zijaqe|00010C2F|39433|81541|3850|10000|0||100.94|99.81|0.00|-3.06|1C05|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:00:36.9290000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +21|2023-10-06T22:00:36.9290000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|710003|5DC50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17987630|40478540|10000|10000|||100.00|80.10|0.00|0.00|8493|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C42|0|1| +38|2023-10-06T22:00:36.9290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|49710|129844|10000|10000|13||99.99|98.99|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:36.4300000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T22:00:36.9730000-07:00|40021585|Zeromus|00010C37|17970872||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:36.5220000-07:00|Change|10FF0003||| +37|2023-10-06T22:00:37.0180000-07:00|40021585|Zeromus|00010C3B|17968450||||||100.00|80.10|0.00|0.00| +36|2023-10-06T22:00:37.0620000-07:00|6E28|3| +37|2023-10-06T22:00:37.0620000-07:00|10FF0001|Sesuga Sapisuga|00010C32|25688||||||100.11|98.61|0.00|-3.14| +24|2023-10-06T22:00:37.0620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1C86|49710|129844|10000|10000|||99.99|98.99|0.00|-3.14|10FF000B|Pusu Rosu|0|47231|79209|5185|10000|||99.52|99.20|0.00|-3.07| +37|2023-10-06T22:00:37.0620000-07:00|10FF0007|Kehabiqo Febiqo|00010C2F|66492|129844|10000|10000|13||99.99|98.99|0.00|-3.14|1506|0|0|01|0D000096|0|41700000|| +26|2023-10-06T22:00:37.0620000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T22:00:37.1050000-07:00|10FF000A|Dukaro Nezikaro|00010C37|36210||||||99.72|102.31|0.00|3.13| +37|2023-10-06T22:00:37.1500000-07:00|40021585|Zeromus|00010C3E|17968449||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:37.1500000-07:00|10FF0008|Kokosaze Lulusaze|40130|90216|10000|10000|||99.99|99.47|0.00|-3.14| +37|2023-10-06T22:00:37.1950000-07:00|10FF000B|Pusu Rosu|00010C32|64099||||||99.51|99.11|0.00|-3.09| +24|2023-10-06T22:00:37.1950000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1B91|25688|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|47231|79209|5185|10000|||99.51|99.11|0.00|-3.09| +37|2023-10-06T22:00:37.1950000-07:00|10FF0001|Sesuga Sapisuga|00010C2F|42065|129071|10000|10000|0||100.11|98.61|0.00|-3.14|1307|0|0|01|0D000096|0|41700000|| +26|2023-10-06T22:00:37.1950000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T22:00:37.1950000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|756003|97FE0000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|17968449|40478540|10000|10000|||100.00|80.10|0.00|0.00|43685|73814|4200|10000|||99.96|99.63|-0.02|3.14|00010C43|0|1| +37|2023-10-06T22:00:37.2390000-07:00|10FF0003|Gegehi Gehi|00010C37|57485||||||99.96|99.63|-0.02|3.14| +37|2023-10-06T22:00:37.3300000-07:00|40021585|Zeromus|00010C3D|17958362||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:37.3300000-07:00|10FF000A|Dukaro Nezikaro|00010C32|53267||||||99.72|102.31|0.00|3.13| +24|2023-10-06T22:00:37.3300000-07:00|10FF000B|Pusu Rosu|HoT|4C3|1AE5|64099|79209|5185|10000|||99.49|99.03|0.00|-3.11|10FF000B|Pusu Rosu|0|64099|79209|5185|10000|||99.49|99.03|0.00|-3.11| +37|2023-10-06T22:00:37.3300000-07:00|10FF000B|Pusu Rosu|00010C3F|79209|79209|5185|10000|0||99.49|99.03|0.00|-3.11|1800|0|0|01|05000000|0|0|| +21|2023-10-06T22:00:37.3300000-07:00|400218CF|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1AB60000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|17968449|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04|00010C44|0|1| +38|2023-10-06T22:00:37.3300000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5185|10000|0||99.49|99.03|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:37.3300000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF000B|Pusu Rosu|00|79209|40478540| +37|2023-10-06T22:00:37.3740000-07:00|10FF0008|Kokosaze Lulusaze|00010C37|53937||||||99.99|99.47|0.00|-3.14| +21|2023-10-06T22:00:37.3740000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|35A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17958362|40478540|10000|10000|||100.00|80.10|0.00|0.00|40130|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C45|0|1| +38|2023-10-06T22:00:37.3740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|53937|90216|10000|10000|0||99.99|99.47|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:37.3740000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +261|2023-10-06T22:00:36.9740000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:00:37.4180000-07:00|40021585|Zeromus|00010C41|17946664||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:37.4630000-07:00|40021585|Zeromus|00010C42|17922659||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:37.4630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1C5D|66492|129844|10000|10000|||99.99|98.88|0.00|3.12|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.36|97.83|0.00|-3.13| +37|2023-10-06T22:00:37.4630000-07:00|10FF0007|Kehabiqo Febiqo|00010C3F|88957||||||99.99|98.88|0.00|3.12| +21|2023-10-06T22:00:37.4630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17958362|40478540|10000|10000|||100.00|80.10|0.00|0.00|66492|129844|10000|10000|||99.99|98.88|0.00|3.12|00010C46|0|1| +37|2023-10-06T22:00:37.5070000-07:00|10FF0004|Buhojaqe Zijaqe|00010C37|53229||||||100.94|99.81|0.00|-3.06| +24|2023-10-06T22:00:37.5960000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|1BAF|53937|90216|10000|10000|||99.99|99.47|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.27|97.01|0.00|-3.13| +37|2023-10-06T22:00:37.5960000-07:00|10FF0008|Kokosaze Lulusaze|00010C3F|85130||||||99.99|99.47|0.00|-3.14| +37|2023-10-06T22:00:37.6420000-07:00|10FF0007|Kehabiqo Febiqo|00010C37|110425||||||100.01|98.47|0.00|3.11| +39|2023-10-06T22:00:37.6420000-07:00|400218CB|Bunshin|76288|79156|10000|10000|||99.73|102.32|0.00|3.13| +21|2023-10-06T22:00:37.6860000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|12F90000|13160E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|17922659|40478540|10000|10000|||100.00|80.10|0.00|0.00|42065|129071|10000|10000|||100.11|98.61|0.00|-3.14|00010C47|0|1| +24|2023-10-06T22:00:37.7300000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1CE6|42065|129071|10000|10000|||100.11|98.61|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.19|96.31|-0.01|-3.13| +37|2023-10-06T22:00:37.7300000-07:00|10FF0001|Sesuga Sapisuga|00010C3F|65064||||||100.11|98.61|0.00|-3.14| +37|2023-10-06T22:00:37.7740000-07:00|10FF0001|Sesuga Sapisuga|00010C37|79070||||||100.11|98.61|0.00|-3.14| +37|2023-10-06T22:00:37.8190000-07:00|40021585|Zeromus|00010C3C|17897748||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:37.8190000-07:00|10FF0001|Sesuga Sapisuga|80360|129071|10000|10000|||100.11|98.61|0.00|-3.14| +24|2023-10-06T22:00:37.8630000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1C8C|57485|73814|3800|10000|||99.96|99.63|-0.02|3.14|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.15|95.77|-0.02|-3.13| +37|2023-10-06T22:00:37.8630000-07:00|10FF0003|Gegehi Gehi|00010C3F|73814|73814|3800|10000|0||99.96|99.63|-0.02|3.14|2304|0|0|01|08000000|0|0|| +38|2023-10-06T22:00:37.8630000-07:00|400218CF|Automaton Queen|005A5A00|82193|85668|10000|10000|0||102.25|103.01|0.00|-3.04|0|0|0||||||| +26|2023-10-06T22:00:37.8630000-07:00|30|Well Fed|1236.24|10FF0008|Kokosaze Lulusaze|400218CF|Automaton Queen|2964|85668|90216| +26|2023-10-06T22:00:37.8630000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|400218CF|Automaton Queen|01|85668|40478540| +38|2023-10-06T22:00:37.8630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3800|10000|0||99.96|99.63|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:37.8630000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0003|Gegehi Gehi|00|73814|40478540| +261|2023-10-06T22:00:37.3730000-07:00|Change|400218CB||| +39|2023-10-06T22:00:37.9080000-07:00|400218CF|Automaton Queen|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04| +261|2023-10-06T22:00:37.4710000-07:00|Change|10FF0003||| +37|2023-10-06T22:00:37.9980000-07:00|40021585|Zeromus|00010C46|17894777||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:37.9980000-07:00|40021585|Zeromus|00010C45|17881048||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:37.9980000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|1C6C|53229|81541|3850|10000|||100.94|99.81|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.13|94.72|0.00|-3.13| +37|2023-10-06T22:00:37.9980000-07:00|10FF0004|Buhojaqe Zijaqe|00010C3F|81541|81541|3850|10000|0||100.94|99.81|0.00|-3.06|1C05|0|0|01|08000000|0|0|| +21|2023-10-06T22:00:37.9980000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|9E190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17897748|40478540|10000|10000|||100.00|80.10|0.00|0.00|110425|129844|10000|10000|||100.05|97.22|0.00|3.11|00010C48|0|1| +21|2023-10-06T22:00:37.9980000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|F120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17897748|40478540|10000|10000|||100.00|80.10|0.00|0.00|85130|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C49|0|1| +21|2023-10-06T22:00:37.9980000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24D80000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|17897748|40478540|10000|10000|||100.00|80.10|0.00|0.00|53267|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C4A|0|1| +38|2023-10-06T22:00:37.9980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110425|129844|10000|10000|13||100.05|97.22|0.00|3.11|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:37.9980000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +30|2023-10-06T22:00:37.9980000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:00:37.9980000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3850|10000|0||100.94|99.81|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:37.9980000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|40478540| +38|2023-10-06T22:00:37.9980000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53267|83502|10000|10000|0||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:37.9980000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T22:00:38.0410000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|85130|90216|10000|10000|||99.99|99.47|0.00|-3.14|85130|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C4B|0|1| +38|2023-10-06T22:00:38.0410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|85130|90216|10000|10000|0||99.99|99.47|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.0410000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T22:00:38.0860000-07:00|40021585|Zeromus|00010C44|17874210||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:38.0860000-07:00|400218CB|Bunshin|4406|Gust Slash|40021585|Zeromus|712003|1A7B0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|17881048|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.73|102.32|0.00|3.13|00010C4C|0|1| +24|2023-10-06T22:00:38.0860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|209B|85130|90216|10000|10000|||99.99|99.47|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.12|94.30|0.00|-3.13| +24|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|27FA|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.12|94.30|0.00|-3.13| +22|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|25750000|EE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|00010C4D|0|8| +22|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|16A90000|410E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73814|73814|3800|10000|||99.96|99.63|-0.02|3.14|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|00010C4D|1|8| +22|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|16B20000|500E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|85130|90216|10000|10000|||99.99|99.47|0.00|-3.14|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|00010C4D|2|8| +22|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|16880000|C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|80360|129071|10000|10000|||100.11|98.61|0.00|-3.14|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|00010C4D|3|8| +22|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|25590000|C10E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|53267|83502|10000|10000|||99.72|102.31|0.00|3.13|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|00010C4D|4|8| +22|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|23ED0000|7B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|110425|129844|10000|10000|||100.05|97.20|0.00|-3.14|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|00010C4D|5|8| +22|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|16740000|EC0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|53035|81809|5450|10000|||100.39|96.36|0.00|-3.12|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|00010C4D|6|8| +22|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|4|17160000|F00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79209|79209|5185|10000|||99.12|94.30|0.00|-3.13|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06|00010C4D|7|8| +38|2023-10-06T22:00:38.0860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110425|129844|10000|10000|25||100.05|97.20|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.0860000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:00:38.0860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.99|99.47|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:38.0860000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|40478540| +26|2023-10-06T22:00:38.0860000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:00:38.0860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53035|81809|5450|10000|11||100.39|96.36|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.0860000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:00:38.0860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|80360|129071|10000|10000|7||100.11|98.61|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.0860000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:00:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2850|10000|18||100.94|99.81|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.0860000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:00:38.0860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3800|10000|12||99.96|99.63|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.0860000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:00:38.0860000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5185|10000|11||99.12|94.30|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.0860000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:00:38.0860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53267|83502|10000|10000|18||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.0860000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T22:00:37.5690000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T22:00:37.5690000-07:00|Change|400218CB||| +24|2023-10-06T22:00:38.1300000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|2A7F|53035|81809|5450|10000|||100.39|96.36|0.00|-3.12|10FF000B|Pusu Rosu|1|79209|79209|5185|10000|||99.12|94.30|0.00|-3.13| +37|2023-10-06T22:00:38.1300000-07:00|10FF0006|Wowobora Gogobora|00010C3F|81809|81809|5450|10000|11||100.39|96.36|0.00|-3.12|1B06|0|0|01|05000000|0|0|| +38|2023-10-06T22:00:38.1300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5450|10000|11||100.39|96.36|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:38.1300000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0006|Wowobora Gogobora|00|81809|40478540| +24|2023-10-06T22:00:38.1740000-07:00|10FF0006|Wowobora Gogobora|HoT|0|27ED|53035|81809|5450|10000|||100.39|96.36|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3850|10000|||100.94|99.81|0.00|-3.06| +21|2023-10-06T22:00:38.1740000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|5185|10000|||99.12|94.30|0.00|-3.13|79209|79209|5185|10000|||99.12|94.30|0.00|-3.13|00010C4E|0|1| +38|2023-10-06T22:00:38.1740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5450|10000|11||100.39|96.36|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +04|2023-10-06T22:00:37.6990000-07:00|400218D1|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.59|99.30|0.00|0.03| +261|2023-10-06T22:00:37.6990000-07:00|Remove|400218D1| +39|2023-10-06T22:00:38.2190000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5650|10000|||100.39|96.36|0.00|-3.12| +21|2023-10-06T22:00:38.2190000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17874210|40478540|10000|10000|||100.00|80.10|0.00|0.00|53267|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C4F|0|1| +24|2023-10-06T22:00:38.2630000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1BDB|53267|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.11|93.85|0.00|-3.13| +37|2023-10-06T22:00:38.2630000-07:00|10FF000A|Dukaro Nezikaro|00010C3F|75417||||||99.72|102.31|0.00|3.13| +261|2023-10-06T22:00:37.8140000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:00:38.3530000-07:00|10FF000B|Pusu Rosu|79209|79209|5466|10000|||99.11|93.66|0.00|-3.13| +39|2023-10-06T22:00:38.3530000-07:00|10FF000A|Dukaro Nezikaro|76252|83502|10000|10000|||99.72|102.31|0.00|3.13| +37|2023-10-06T22:00:38.3970000-07:00|40021585|Zeromus|00010C4A|17864778||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:38.3970000-07:00|10FF0003|Gegehi Gehi|HoT|0|20F3|73814|73814|3800|10000|||99.96|99.63|-0.02|3.14|10FF000B|Pusu Rosu|0|79209|79209|5185|10000|||99.11|93.66|0.00|-3.13| +21|2023-10-06T22:00:38.3970000-07:00|4002159B|Zeromus|8B41|unknown_8b41|4002159B|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-0.79|44|44|0|10000|||100.00|100.00|0.00|-0.79|00010C50|0|1| +21|2023-10-06T22:00:38.3970000-07:00|4002159D|Zeromus|8B41|unknown_8b41|4002159D|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|2.36|44|44|0|10000|||100.00|100.00|0.00|2.36|00010C51|0|1| +21|2023-10-06T22:00:38.3970000-07:00|4002159F|Zeromus|8B40|unknown_8b40|4002159F|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|00010C52|0|1| +21|2023-10-06T22:00:38.3970000-07:00|400215A1|Zeromus|8B40|unknown_8b40|400215A1|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|3.14|44|44|0|10000|||100.00|100.00|0.00|3.14|00010C53|0|1| +21|2023-10-06T22:00:38.3970000-07:00|400215A3|Zeromus|8D2B|unknown_8d2b|400215A3|Zeromus|1B|8D2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.00|44|44|0|10000|||100.00|100.00|0.00|0.00|00010C54|0|1| +38|2023-10-06T22:00:38.3970000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|12||99.96|99.63|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:37.9340000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T22:00:37.9340000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:00:37.9340000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:00:37.9340000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T22:00:37.9340000-07:00|Change|4002159D||||||||||||| +24|2023-10-06T22:00:38.4410000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|21E1|76252|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +38|2023-10-06T22:00:38.4410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:38.4410000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|40478540| +37|2023-10-06T22:00:38.4860000-07:00|40021585|Zeromus|00010C4C|17857999||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:38.4860000-07:00|10FF0007|Kehabiqo Febiqo|111723|129844|10000|10000|||100.05|97.20|0.00|-3.14| +24|2023-10-06T22:00:38.4860000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|9FB|76252|83502|10000|10000|||99.72|102.31|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +24|2023-10-06T22:00:38.4860000-07:00|10FF0003|Gegehi Gehi|HoT|777|FA9|73814|73814|4350|10000|||99.96|99.63|-0.02|3.14|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +24|2023-10-06T22:00:38.4860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|F5F|90216|90216|10000|10000|||99.99|99.47|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +24|2023-10-06T22:00:38.4860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|F21|81541|81541|2850|10000|||100.94|99.81|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +24|2023-10-06T22:00:38.4860000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|9F9|80360|129071|10000|10000|||100.17|97.16|0.00|3.10|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +24|2023-10-06T22:00:38.4860000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|9E6|110425|129844|10000|10000|||100.05|97.20|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +24|2023-10-06T22:00:38.4860000-07:00|10FF0006|Wowobora Gogobora|HoT|777|9ED|81809|81809|5650|10000|||100.39|96.36|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +24|2023-10-06T22:00:38.4860000-07:00|10FF000B|Pusu Rosu|HoT|777|A01|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +24|2023-10-06T22:00:38.4860000-07:00|10FF000B|Pusu Rosu|HoT|0|356B|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.44|0.00|-3.13| +38|2023-10-06T22:00:38.4860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114257|129844|10000|10000|25||100.05|97.20|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.4860000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:38.4860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.99|99.47|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.4860000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:38.4860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5650|10000|11||100.39|96.36|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.4860000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:38.4860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82913|129071|10000|10000|7||100.17|97.16|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.4860000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:38.4860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2850|10000|18||100.94|99.81|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.4860000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:38.4860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|12||99.96|99.63|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.4860000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:38.4860000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|5466|10000|11||99.11|93.44|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.4860000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:38.4860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.72|102.31|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.4860000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:00:38.0570000-07:00|Change|10FF000B||||||||||| +24|2023-10-06T22:00:38.5750000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2E95|114257|129844|10000|10000|||100.05|97.20|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.11|93.35|0.00|-3.13| +38|2023-10-06T22:00:38.5750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126182|129844|10000|10000|25||100.05|97.20|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:38.6640000-07:00|10FF0008|Kokosaze Lulusaze|00010C4B|90216|90216|10000|10000|10||99.99|99.47|0.00|-3.14|1F00|0|0|01|02000353|0|40A00000|| +24|2023-10-06T22:00:38.6640000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2062|82913|129071|10000|10000|||100.20|96.53|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2850|10000|||100.94|99.80|0.00|-3.06| +38|2023-10-06T22:00:38.6640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.99|99.47|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:38.6640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|91203|129071|10000|10000|7||100.20|96.53|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:38.7080000-07:00|40021585|Zeromus|00010C47|17853142|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T22:00:38.7080000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +21|2023-10-06T22:00:38.7080000-07:00|10FF0004|Buhojaqe Zijaqe|E02|Emergency Tactics|10FF0004|Buhojaqe Zijaqe|E|3180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2850|10000|||100.94|99.80|0.00|-3.06|81541|81541|2850|10000|||100.94|99.80|0.00|-3.06|00010C55|0|1| +38|2023-10-06T22:00:38.7080000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2850|10000|18||100.94|99.80|0.00|-3.06|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:38.7080000-07:00|318|Emergency Tactics|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:00:38.7530000-07:00|40021585|Zeromus|00010C49|17849284||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:38.7530000-07:00|40021585|Zeromus|00010C43|17810374||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:38.7530000-07:00|40021585|Zeromus|00010C4F|17806693||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:38.7530000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-2.85| +21|2023-10-06T22:00:38.7530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17857999|40478540|10000|10000|||100.00|80.10|0.00|0.00|91203|129071|10000|10000|||100.22|95.89|0.00|3.10|00010C56|0|1| +31|2023-10-06T22:00:38.7530000-07:00|10FF0001||||| +37|2023-10-06T22:00:38.7970000-07:00|10FF000B|Pusu Rosu|00010C4E|79209|79209|5466|10000|11||99.11|93.27|0.00|-3.13|1800|0|0|01|080004B4|0|41A80000|| +26|2023-10-06T22:00:38.7970000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:00:38.8870000-07:00|400218CF|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|732003|769B0000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|17806693|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04|00010C57|0|1| +21|2023-10-06T22:00:38.8870000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|726003|BF110000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|17806693|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C58|0|1| +38|2023-10-06T22:00:38.8870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.99|99.47|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:38.8870000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T22:00:38.9750000-07:00|10FF0003|Gegehi Gehi|73814|73814|4550|10000|||99.96|99.63|-0.02|3.14| +261|2023-10-06T22:00:38.5400000-07:00|Change|10FF0003||| +39|2023-10-06T22:00:39.1090000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3050|10000|||100.84|99.16|0.00|-2.97| +37|2023-10-06T22:00:39.1540000-07:00|40021585|Zeromus|00010C48|17766220||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:38.6600000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:00:39.1970000-07:00|10FF0004|Buhojaqe Zijaqe|00010C4D|81541|81541|3050|10000|18||100.78|98.81|0.00|-2.95|1C00|0|0|02|08000129|0|41E772AC|||||| +22|2023-10-06T22:00:39.2430000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|3C150000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|00010C59|0|8| +22|2023-10-06T22:00:39.2430000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|3AFF0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|91203|129071|10000|10000|||100.31|93.88|0.00|3.10|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|00010C59|1|8| +22|2023-10-06T22:00:39.2430000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|3D1D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|5650|10000|||100.39|96.36|0.00|-3.12|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|00010C59|2|8| +22|2023-10-06T22:00:39.2430000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|3C760000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|126182|129844|10000|10000|||100.05|97.20|0.00|-3.14|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|00010C59|3|8| +22|2023-10-06T22:00:39.2430000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|3B6F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3050|10000|||100.71|98.39|0.00|-2.94|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|00010C59|4|8| +22|2023-10-06T22:00:39.2430000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|3D8A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.99|99.47|0.00|-3.14|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|00010C59|5|8| +22|2023-10-06T22:00:39.2430000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|5E300000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4550|10000|||99.96|99.63|-0.02|3.14|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|00010C59|6|8| +22|2023-10-06T22:00:39.2430000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|3BC30000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.72|102.31|0.00|3.13|79209|79209|5466|10000|||99.40|90.35|0.00|2.98|00010C59|7|8| +37|2023-10-06T22:00:39.2870000-07:00|40021585|Zeromus|00010C56|17763944||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:39.3320000-07:00|10FF0004|Buhojaqe Zijaqe|00010C55|81541|81541|3050|10000|18||100.71|98.39|0.00|-2.94|1C00|0|0|01|0B000318|0|41700000|| +37|2023-10-06T22:00:39.3320000-07:00|10FF0003|Gegehi Gehi|00010C4D|73814|73814|4550|10000|12||99.96|99.63|-0.02|3.14|2301|0|0|01|08000129|0|41E6624A|| +21|2023-10-06T22:00:39.3320000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|11530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17766220|40478540|10000|10000|||100.00|80.10|0.00|0.00|126182|129844|10000|10000|||100.05|97.20|0.00|-3.14|00010C5A|0|1| +21|2023-10-06T22:00:39.3320000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|350003|33790000|10940F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|17766220|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5650|10000|||100.39|96.36|0.00|-3.12|00010C5B|0|1| +38|2023-10-06T22:00:39.3320000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5650|10000|11||100.39|96.36|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:39.3320000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:00:39.3320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3050|10000|18||100.71|98.39|0.00|-2.94|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:38.8900000-07:00|Change|10FF0006||||||||||||| +20|2023-10-06T22:00:39.3770000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.65|98.10|-0.01|-2.92| +37|2023-10-06T22:00:39.4660000-07:00|10FF0008|Kokosaze Lulusaze|00010C4D|90216|90216|10000|10000|10||99.99|99.47|0.00|-3.14|1F02|0|0|01|06000129|0|41E551E7|| +21|2023-10-06T22:00:39.4660000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|750003|83190000|4|31798000|0|0|0|0|0|0|0|0|0|0|0|0|17763944|40478540|10000|10000|||100.00|80.10|0.00|0.00|91203|129071|10000|10000|||100.31|93.88|0.00|-3.12|00010C5C|0|1| +38|2023-10-06T22:00:39.4660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|91203|129071|9000|10000|7||100.31|93.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:39.4660000-07:00|558|Requiescat|27.02|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T22:00:39.4660000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T22:00:39.4660000-07:00|10FF0001||||| +261|2023-10-06T22:00:39.0050000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:39.5980000-07:00|10FF0001|Sesuga Sapisuga|00010C4D|96971|129071|9000|10000|7||100.31|93.88|0.00|-3.12|1303|0|0|01|0E000129|0|41E43F78|| +20|2023-10-06T22:00:39.6430000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|99.96|99.63|-0.02|3.14| +24|2023-10-06T22:00:39.6880000-07:00|40021585|Zeromus|DoT|0|15A7|17763944|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|96971|129071|9000|10000|||100.31|93.88|0.00|-3.12| +36|2023-10-06T22:00:39.6880000-07:00|6F04|3| +38|2023-10-06T22:00:39.6880000-07:00|40021585|Zeromus|005A5A00|17758401|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:00:39.2190000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:00:39.7320000-07:00|10FF000A|Dukaro Nezikaro|00010C4D|83502|83502|10000|10000|18||99.72|102.31|0.00|3.13|1E04|0|0|01|07000129|0|41E32F15|| +21|2023-10-06T22:00:39.7320000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17763944|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5650|10000|||100.39|96.36|0.00|-3.12|00010C5D|0|1| +24|2023-10-06T22:00:39.8210000-07:00|10FF000B|Pusu Rosu|HoT|4C3|1C70|79209|79209|5466|10000|||99.79|88.42|0.00|2.96|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.79|88.42|0.00|2.96| +37|2023-10-06T22:00:39.8660000-07:00|10FF0007|Kehabiqo Febiqo|00010C4D|129844|129844|10000|10000|25||100.05|97.16|0.00|-3.14|1505|0|0|02|04000129|0|41E21EB2|||||| +38|2023-10-06T22:00:39.8660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||100.05|97.16|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:39.8660000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|40478540| +37|2023-10-06T22:00:39.9100000-07:00|40021585|Zeromus|00010C58|17709488||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:39.9550000-07:00|40021585|Zeromus|00010C5A|17705053||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:39.9550000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|1ACA|96971|129071|9000|10000|||100.31|93.88|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.69|88.18|0.00|3.08| +37|2023-10-06T22:00:39.9550000-07:00|10FF0001|Sesuga Sapisuga|00010C59|118932||||||100.31|93.88|0.00|-3.12| +37|2023-10-06T22:00:39.9990000-07:00|10FF0006|Wowobora Gogobora|00010C4D|81809|81809|5650|10000|11||100.39|96.36|0.00|-3.12|1B06|0|0|01|0A000129|0|41E10C43|| +21|2023-10-06T22:00:39.9990000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0001|Sesuga Sapisuga|4|172A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|118932|129071|9000|10000|||100.31|93.88|0.00|-3.12|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10|00010C5E|0|1| +261|2023-10-06T22:00:39.5080000-07:00|Change|400218CB||| +261|2023-10-06T22:00:39.5080000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T22:00:40.0880000-07:00|40021585|Zeromus|00010C5C|17671492||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:40.0880000-07:00|10FF0001|Sesuga Sapisuga|00010C5C|129071|129071|9000|10000|7||100.31|93.88|0.00|-3.12|1300|0|0|01|08000000|0|0|| +24|2023-10-06T22:00:40.0880000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|1B6A|81809|81809|5650|10000|||100.39|96.36|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||98.98|88.81|0.00|-2.37| +38|2023-10-06T22:00:40.0880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|7||100.31|93.88|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:40.0880000-07:00|6E9|Doom|0.00|40021585|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|40478540| +37|2023-10-06T22:00:40.1320000-07:00|10FF000B|Pusu Rosu|00010C4D|79209|79209|5466|10000|11||98.98|88.81|0.00|-2.37|1807|0|0|01|05000129|0|41DFF9D4|| +261|2023-10-06T22:00:39.7210000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:00:40.1770000-07:00|40021585|Zeromus|00010C57|17641129||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:40.1770000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.99|99.47|0.00|-3.14| +38|2023-10-06T22:00:40.1770000-07:00|400218CF|Automaton Queen|005A5A00|82193|85668|10000|10000|0||102.25|103.01|0.00|-3.04|0|0|0|||| +30|2023-10-06T22:00:40.1770000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|400218CF|Automaton Queen|01|85668|40478540| +24|2023-10-06T22:00:40.2220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1AD9|129844|129844|10000|10000|||100.07|96.48|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||98.44|89.38|0.00|-1.75| +21|2023-10-06T22:00:40.2220000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|33F40000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|17671492|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C5F|0|1| +37|2023-10-06T22:00:40.2660000-07:00|40021585|Zeromus|00010C5D|17641014||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:40.2660000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|14D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17671492|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.31|93.88|0.00|-3.12|00010C60|0|1| +04|2023-10-06T22:00:39.7210000-07:00|400218CB|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||99.73|102.32|0.00|3.13| +261|2023-10-06T22:00:39.8430000-07:00|Remove|400218CB| +21|2023-10-06T22:00:40.3110000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|14690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17641014|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C61|0|1| +24|2023-10-06T22:00:40.3550000-07:00|40021585|Zeromus|DoT|A92|382|17641014|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|5650|10000|||100.39|96.36|0.00|-3.12| +37|2023-10-06T22:00:40.3550000-07:00|40021585|Zeromus|00010C5B|17626939||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:40.3550000-07:00|10FF0006|Wowobora Gogobora|00010C5B|81809|81809|5650|10000|11||100.39|96.36|0.00|-3.12|1B00|0|0|01|05000A92|0|41700000|| +26|2023-10-06T22:00:40.3550000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T22:00:40.3550000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|1A76|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||98.09|89.75|-0.02|-1.35| +21|2023-10-06T22:00:40.3550000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|1B6A0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|17641014|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5650|10000|||100.39|96.36|0.00|-3.12|00010C62|0|1| +38|2023-10-06T22:00:40.3550000-07:00|40021585|Zeromus|005A5A00|17626939|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:00:39.8430000-07:00|Change|10FF0006||| +21|2023-10-06T22:00:40.4000000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17641014|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.72|102.31|0.00|3.13|00010C63|0|1| +261|2023-10-06T22:00:39.9570000-07:00|Change|10FF0007||||||||||| +24|2023-10-06T22:00:40.4890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|1AF7|90216|90216|10000|10000|||99.99|99.47|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||98.06|89.91|-0.02|-1.08| +21|2023-10-06T22:00:40.4890000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|77DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17626939|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.12|95.12|0.00|3.14|00010C64|0|1| +38|2023-10-06T22:00:40.4890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||100.12|95.12|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:40.4890000-07:00|499|Inner Release|11.40|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +261|2023-10-06T22:00:40.0730000-07:00|Change|400218D9||||| +38|2023-10-06T22:00:40.5780000-07:00|400218DF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:00:40.5780000-07:00|400218DF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:00:40.0730000-07:00|Add|400218DF||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:40.0730000-07:00|Add|400218DD||||||||||||||||||||||||||||||| +03|2023-10-06T22:00:40.0730000-07:00|400218DF|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.37|94.61|0.00|0.03| +261|2023-10-06T22:00:40.1730000-07:00|Change|400218DF||| +24|2023-10-06T22:00:40.6220000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|1C69|73814|73814|4550|10000|||99.96|99.63|-0.02|3.14|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||98.08|90.05|0.00|-0.79| +21|2023-10-06T22:00:40.6670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17626939|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.99|99.47|0.00|-3.14|00010C65|0|1| +24|2023-10-06T22:00:40.7560000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1A6B|83502|83502|10000|10000|||99.71|102.30|0.00|-3.07|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||98.11|90.31|0.00|-0.33| +37|2023-10-06T22:00:40.7560000-07:00|40021585|Zeromus|00010C5F|17613639||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:40.8000000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||100.31|93.88|0.00|-3.12| +22|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|16E10000|4|249B0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|00010C66|0|8| +22|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|17260000|4|25090000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.99|99.44|0.00|-3.13|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|00010C66|1|8| +22|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|163A0000|4|23900000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81809|81809|5350|10000|||100.39|96.34|0.00|-3.03|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|00010C66|2|8| +22|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|24A80000|4|3AA60000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|73814|73814|4550|10000|||99.96|99.63|-0.02|3.14|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|00010C66|3|8| +22|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|173F0000|4|25310000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|9000|10000|||100.31|93.88|0.00|-3.12|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|00010C66|4|8| +22|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|17100000|4|24E60000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.71|102.30|0.00|-3.07|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|00010C66|5|8| +22|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|16CF0000|4|247E0000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||98.32|93.84|0.00|3.11|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|00010C66|6|8| +22|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|200004|24180000|4|39C00000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79209|79209|5466|10000|||98.11|90.31|0.00|-0.33|81541|81541|3050|10000|||100.63|97.98|0.00|-2.92|00010C66|7|8| +38|2023-10-06T22:00:40.8000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2050|10000|18||100.63|97.98|0.00|-2.92|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:40.8000000-07:00|318|Emergency Tactics|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:00:40.2630000-07:00|Change|10FF0001||| +37|2023-10-06T22:00:40.8450000-07:00|40021585|Zeromus|00010C60|17608311||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:40.8450000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BB60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17626939|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||98.32|93.84|0.00|3.11|00010C67|0|1| +38|2023-10-06T22:00:40.8890000-07:00|400218CF|Automaton Queen|005A5A00|82193|85668|10000|10000|0||102.25|103.01|0.00|-3.04|0|0|0||||||| +26|2023-10-06T22:00:40.8890000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|400218CF|Automaton Queen|01|85668|40478540| +37|2023-10-06T22:00:40.9340000-07:00|40021585|Zeromus|00010C61|17603086||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:40.9340000-07:00|40021585|Zeromus|00010C63|17600807||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:40.9340000-07:00|400218CF|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|732003|88850000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|17608311|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04|00010C68|0|1| +39|2023-10-06T22:00:40.9340000-07:00|400218CF|Automaton Queen|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04| +37|2023-10-06T22:00:40.9790000-07:00|40021585|Zeromus|00010C62|17593789||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:41.0240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17600807|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.32|93.78|0.00|3.09|00010C69|0|1| +31|2023-10-06T22:00:41.0240000-07:00|10FF0001||||| +24|2023-10-06T22:00:41.0670000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|26B6|90216|90216|10000|10000|||99.95|98.82|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||98.54|90.94|0.00|0.08| +24|2023-10-06T22:00:41.0670000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|278E|81541|81541|2050|10000|||100.53|97.45|0.00|-2.92|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||98.54|90.94|0.00|0.08| +21|2023-10-06T22:00:41.0670000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|152003|36CB0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|17593789|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4350|10000|||99.96|99.63|-0.02|3.14|00010C6A|0|1| +38|2023-10-06T22:00:41.0670000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|12||99.96|99.63|-0.02|3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:41.0670000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:00:41.0670000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:00:41.0670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.95|98.82|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:41.0670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2050|10000|18||100.53|97.45|0.00|-2.92|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:40.5450000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T22:00:41.1110000-07:00|40021585|Zeromus|00010C64|17563106||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:40.5450000-07:00|Change|10FF0008||||||||||| +24|2023-10-06T22:00:41.1550000-07:00|40021585|Zeromus|DoT|A92|596|17593789|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|5350|10000|||100.19|95.37|0.00|-2.95| +24|2023-10-06T22:00:41.1550000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2CD9|81809|81809|5350|10000|||100.19|95.37|0.00|-2.95|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2050|10000|||100.53|97.45|0.00|-2.92| +38|2023-10-06T22:00:41.1550000-07:00|40021585|Zeromus|005A5A00|17561676|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:00:41.1550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5350|10000|11||100.19|95.37|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:41.1990000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5550|10000|||100.04|94.65|0.00|-2.95| +261|2023-10-06T22:00:40.6680000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:00:40.6680000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:00:40.7850000-07:00|Change|10FF0007||||||||| +39|2023-10-06T22:00:41.3320000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.18|100.63|0.00|-2.54| +37|2023-10-06T22:00:41.3760000-07:00|40021585|Zeromus|00010C67|17558678||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:41.3760000-07:00|10FF000B|Pusu Rosu|79209|79209|5747|10000|||99.23|91.77|0.00|-0.08| +24|2023-10-06T22:00:41.3760000-07:00|10FF0003|Gegehi Gehi|HoT|0|2BAF|73814|73814|4350|10000|||99.91|99.58|0.00|-2.79|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.23|91.77|0.00|-0.08| +38|2023-10-06T22:00:41.3760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4900|10000|12||99.91|99.58|0.00|-2.79|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:40.8980000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:00:41.4200000-07:00|40021585|Zeromus|00010C65|17556350||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:41.4210000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2247|83502|83502|10000|10000|||97.64|100.11|-0.02|-2.45|10FF000B|Pusu Rosu|0|79209|79209|5466|10000|||99.23|91.77|0.00|-0.08| +21|2023-10-06T22:00:41.4210000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|20000000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|17561676|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.78|96.57|-0.02|-3.07|00010C6B|0|1| +21|2023-10-06T22:00:41.4210000-07:00|10FF000B|Pusu Rosu|03|Sprint|10FF000B|Pusu Rosu|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|5466|10000|||99.23|91.77|0.00|-0.08|79209|79209|5466|10000|||99.23|91.77|0.00|-0.08|00010C6C|0|1| +38|2023-10-06T22:00:41.4210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||97.64|100.11|-0.02|-2.45|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:41.4660000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.11|92.23|0.00|2.86| +24|2023-10-06T22:00:41.4660000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|A2A|83502|83502|10000|10000|||97.08|99.70|0.00|-2.39|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +24|2023-10-06T22:00:41.4660000-07:00|10FF0003|Gegehi Gehi|HoT|777|A28|73814|73814|4900|10000|||99.88|99.56|0.00|-2.61|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +24|2023-10-06T22:00:41.4660000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A4A|81541|81541|2050|10000|||100.03|95.26|0.00|-2.92|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +24|2023-10-06T22:00:41.4660000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A28|90216|90216|10000|10000|||99.71|95.93|0.00|3.12|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +24|2023-10-06T22:00:41.4660000-07:00|10FF0006|Wowobora Gogobora|HoT|777|FB5|81809|81809|5550|10000|||98.78|92.97|0.00|-2.46|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +24|2023-10-06T22:00:41.4660000-07:00|10FF000B|Pusu Rosu|HoT|777|9D5|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +24|2023-10-06T22:00:41.4660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A0C|129844|129844|10000|10000|||94.11|92.23|0.00|2.86|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +24|2023-10-06T22:00:41.4660000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|9FB|129071|129071|9200|10000|||98.91|92.14|0.00|-2.98|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +24|2023-10-06T22:00:41.4660000-07:00|10FF000B|Pusu Rosu|HoT|0|215B|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +38|2023-10-06T22:00:41.4660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||94.11|92.23|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:41.4660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.71|95.93|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:41.4660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5550|10000|11||98.78|92.97|0.00|-2.46|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:41.4660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|7||98.91|92.14|0.00|-2.98|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:41.4660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2050|10000|18||100.03|95.26|0.00|-2.92|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:41.4660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4900|10000|12||99.88|99.56|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.4660000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:41.4660000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|6297|10000|11||99.31|91.91|0.00|-1.52|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.4660000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:41.4660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||97.08|99.70|0.00|-2.39|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.4660000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:00:41.5550000-07:00|40021585|Zeromus|00010C69|17554120||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:41.5550000-07:00|10FF000B|Pusu Rosu|00010C6C|79209|79209|6297|10000|11||99.31|91.91|0.00|-1.52|1800|0|0|01|09000032|1E|41200000|| +26|2023-10-06T22:00:41.5550000-07:00|32|Sprint|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|1E|79209|79209| +24|2023-10-06T22:00:41.5550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|21A9|129844|129844|10000|10000|||94.11|92.23|0.00|2.86|10FF000B|Pusu Rosu|0|79209|79209|5747|10000|||99.31|91.91|0.00|-1.52| +21|2023-10-06T22:00:41.5550000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17556350|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4900|10000|||99.88|99.56|0.00|-2.61|00010C6D|0|1| +38|2023-10-06T22:00:41.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||94.11|92.23|0.00|2.86|0|0|0||||||||||||||||||||||||||||||||||||||||||| +34|2023-10-06T22:00:41.6000000-07:00|400218DF|Carbuncle|400218DF|Carbuncle|01| +24|2023-10-06T22:00:41.6440000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|20BC|129071|129071|9200|10000|||98.19|92.26|0.00|-2.96|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2050|10000|||99.85|94.56|0.00|-2.91| +38|2023-10-06T22:00:41.6440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|7||98.19|92.26|0.00|-2.96|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:41.1340000-07:00|Change|400218DF||| +39|2023-10-06T22:00:41.7780000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +37|2023-10-06T22:00:41.8670000-07:00|40021585|Zeromus|00010C6A|17540093||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:41.9120000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|354003|23290000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|17540093|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5550|10000|||96.38|92.41|0.00|-1.85|00010C6E|0|1| +261|2023-10-06T22:00:41.4200000-07:00|Change|10FF000A||||||||||| +261|2023-10-06T22:00:41.4200000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:00:41.9570000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|754003|80170000|4|31258000|0|0|0|0|0|0|0|0|0|0|0|0|17540093|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||96.40|92.06|0.00|-2.94|00010C6F|0|1| +38|2023-10-06T22:00:41.9570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|7||96.40|92.06|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:41.9570000-07:00|558|Requiescat|24.53|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T22:00:41.9570000-07:00|10FF0001||||| +261|2023-10-06T22:00:41.4200000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:00:42.0010000-07:00|10FF0003|Gegehi Gehi|73814|73814|5100|10000|||97.78|97.84|0.00|-2.31| +261|2023-10-06T22:00:41.5110000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:00:41.6080000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:00:41.6080000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:00:41.6080000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:00:42.0910000-07:00|40021585|Zeromus|00010C6D|17540092||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:42.0910000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|148F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17540093|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.36|94.76|0.00|-2.64|00010C70|0|1| +21|2023-10-06T22:00:42.0910000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|32CC0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|17540093|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5100|10000|||96.56|96.87|0.00|-2.27|00010C71|0|1| +38|2023-10-06T22:00:42.0910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4800|10000|12||96.56|96.87|0.00|-2.27|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:42.0910000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:00:42.0910000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T22:00:42.1340000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2250|10000|||99.05|91.46|0.00|-2.79| +37|2023-10-06T22:00:42.1800000-07:00|40021585|Zeromus|00010C6B|17531900||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:42.1800000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17540093|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2050|10000|||99.05|91.46|0.00|-2.79|00010C72|0|1| +261|2023-10-06T22:00:41.8300000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:00:42.2690000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|1AE10000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|17531900|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2250|10000|||98.92|90.86|0.00|-2.86|00010C73|0|1| +37|2023-10-06T22:00:42.3120000-07:00|10FF0003|Gegehi Gehi|00010C66|73814|73814|4800|10000|12||96.38|96.73|0.00|2.92|2303|0|0|01|0B0004D3|0|C1F00000|| +38|2023-10-06T22:00:42.4460000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|6297|10000|11||93.09|91.52|0.00|-1.71|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:42.4460000-07:00|777|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:00:42.1640000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:00:42.5340000-07:00|40021585|Zeromus|00010C6E|17522899||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:42.5340000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|18BA0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|17484672|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.41|94.99|-0.02|2.63|00010C74|0|1| +37|2023-10-06T22:00:42.5790000-07:00|40021585|Zeromus|00010C6F|17490108||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:42.5790000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17484672|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.41|94.99|-0.02|2.63|00010C75|0|1| +261|2023-10-06T22:00:42.1640000-07:00|Remove|400218C8| +24|2023-10-06T22:00:42.6680000-07:00|40021585|Zeromus|DoT|0|153C|17484672|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8200|10000|||92.34|91.11|0.00|-3.02| +36|2023-10-06T22:00:42.6680000-07:00|6FE0|3| +38|2023-10-06T22:00:42.6680000-07:00|40021585|Zeromus|005A5A00|17484672|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:00:42.7120000-07:00|40021585|Zeromus|00010C72|17484600||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:42.7120000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|18FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17484672|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.49|93.59|0.00|-3.03|00010C76|0|1| +261|2023-10-06T22:00:42.2650000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:00:42.3620000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:42.8470000-07:00|40021585|Zeromus|00010C71|17471596||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:42.8470000-07:00|10FF0003|Gegehi Gehi|00010C71|73814|73814|4800|10000|12||94.38|95.08|0.00|-2.55|2300|0|0|01|0B0004D3|0|41F00000|| +38|2023-10-06T22:00:42.8470000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4800|10000|12||94.38|95.08|0.00|-2.55|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:42.8920000-07:00|40021585|Zeromus|00010C70|17466333||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:42.8920000-07:00|40021585|Zeromus|00010C68|17431384||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:42.8920000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17484600|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5250|10000|||92.70|92.46|0.00|-1.78|00010C77|0|1| +38|2023-10-06T22:00:42.8920000-07:00|400218CF|Automaton Queen|005A5A00|82193|85668|10000|10000|0||102.25|103.01|0.00|-3.04|0|0|0|||| +30|2023-10-06T22:00:42.8920000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|400218CF|Automaton Queen|01|85668|40478540| +37|2023-10-06T22:00:42.9360000-07:00|40021585|Zeromus|00010C74|17425054||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:42.9360000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7BF90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17484600|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||87.30|88.39|0.00|2.58|00010C78|0|1| +38|2023-10-06T22:00:42.9360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||87.30|88.39|0.00|2.58|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:42.9360000-07:00|499|Inner Release|8.95|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T22:00:42.5800000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:00:42.5800000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:00:43.1140000-07:00|40021585|Zeromus|00010C75|17422798||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:42.5800000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T22:00:43.1580000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||93.60|92.91|0.00|2.61| +21|2023-10-06T22:00:43.1580000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|3D570000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|17422798|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||90.17|90.13|0.00|-3.02|00010C79|0|1| +261|2023-10-06T22:00:42.6970000-07:00|Change|400218DF||||||||| +37|2023-10-06T22:00:43.2020000-07:00|40021585|Zeromus|00010C73|17415917||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:42.6970000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:00:42.8140000-07:00|Change|10FF0006||||||||| +21|2023-10-06T22:00:43.2910000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|98D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17415917|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||89.53|90.15|0.00|-3.03|00010C7A|0|1| +31|2023-10-06T22:00:43.2910000-07:00|10FF0001||||| +261|2023-10-06T22:00:42.8140000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:00:43.3360000-07:00|40021585|Zeromus|00010C76|17409521||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:43.3360000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AB10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17415917|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.30|92.45|0.00|2.95|00010C7B|0|1| +37|2023-10-06T22:00:43.4260000-07:00|40021585|Zeromus|00010C77|17409453||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:43.4260000-07:00|40021593|Zeromus|8B41|unknown_8b41|40021593|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-2.36|44|44|0|10000|||100.00|100.00|0.00|-2.36|00010C7C|0|1| +21|2023-10-06T22:00:43.4260000-07:00|40021595|Zeromus|8B41|unknown_8b41|40021595|Zeromus|1B|8B418000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|00010C7D|0|1| +21|2023-10-06T22:00:43.4260000-07:00|40021597|Zeromus|8B40|unknown_8b40|40021597|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|-1.57|44|44|0|10000|||100.00|100.00|0.00|-1.57|00010C7E|0|1| +21|2023-10-06T22:00:43.4260000-07:00|40021599|Zeromus|8B40|unknown_8b40|40021599|Zeromus|1B|8B408000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|1.57|44|44|0|10000|||100.00|100.00|0.00|1.57|00010C7F|0|1| +21|2023-10-06T22:00:43.4260000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|2CE20000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|17409521|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5250|10000|||89.29|90.42|0.00|-2.16|00010C80|0|1| +261|2023-10-06T22:00:42.9340000-07:00|Change|40021593||||||||||||| +261|2023-10-06T22:00:42.9340000-07:00|Change|40021599||||||||||||| +261|2023-10-06T22:00:42.9340000-07:00|Change|40021597||||||||||||| +261|2023-10-06T22:00:42.9340000-07:00|Change|40021595||||||||||||| +261|2023-10-06T22:00:43.0500000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:00:43.5140000-07:00|40021585|Zeromus|00010C79|17393750||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:43.5140000-07:00|10FF0001|Sesuga Sapisuga|00010C79|129071|129071|8700|10000|7||87.96|89.24|0.00|-3.06|1300|0|0|0| +20|2023-10-06T22:00:43.5140000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|86.04|86.92|0.00|-2.12| +37|2023-10-06T22:00:43.6040000-07:00|40021585|Zeromus|00010C78|17362013||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:43.7370000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|25EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17362013|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4800|10000|||90.76|91.92|0.00|-2.32|00010C81|0|1| +261|2023-10-06T22:00:43.2830000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T22:00:43.8250000-07:00|40021585|Zeromus|00010C7A|17359568||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:43.3810000-07:00|Change|10FF0004||||||||| +39|2023-10-06T22:00:43.8250000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8900|10000|||87.04|88.38|0.00|3.12| +261|2023-10-06T22:00:43.3810000-07:00|Change|10FF0003||||||||| +39|2023-10-06T22:00:43.9140000-07:00|400218CF|Automaton Queen|82193|85668|10000|10000|||102.25|103.01|0.00|-3.04| +21|2023-10-06T22:00:43.9140000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2CB50000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|17359568|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.29|90.17|0.00|-2.33|00010C82|0|1| +21|2023-10-06T22:00:43.9140000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|752003|142D0000|104|78A8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|17359568|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1850|10000|||90.91|87.92|0.00|-1.96|00010C83|0|1| +38|2023-10-06T22:00:43.9140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1850|10000|18||90.91|87.92|0.00|-1.96|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:43.9140000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +261|2023-10-06T22:00:43.4800000-07:00|Change|10FF0008||||||||| +38|2023-10-06T22:00:44.0030000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|6297|10000|11||85.30|86.40|-0.01|2.33|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:44.0030000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:00:43.4800000-07:00|Change|400218DF||||||||| +24|2023-10-06T22:00:44.0470000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|219F|90216|90216|10000|10000|||87.13|89.10|0.00|2.14|10FF000B|Pusu Rosu|0|79209|79209|6297|10000|||85.20|86.33|-0.01|1.99| +24|2023-10-06T22:00:44.0470000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2754|81541|81541|1850|10000|||89.59|87.25|0.00|2.14|10FF000B|Pusu Rosu|0|79209|79209|6297|10000|||85.20|86.33|-0.01|1.99| +38|2023-10-06T22:00:44.0470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||87.13|89.10|0.00|2.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:44.0470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1850|10000|18||89.59|87.25|0.00|2.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:44.0920000-07:00|40021585|Zeromus|00010C7B|17356831||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:44.0920000-07:00|40021585|Zeromus|00010C80|17345341||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:44.1360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4950|10000|11||86.73|88.43|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:44.1360000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +39|2023-10-06T22:00:44.1820000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5150|10000|||86.73|88.43|0.00|3.12| +24|2023-10-06T22:00:44.1820000-07:00|40021585|Zeromus|DoT|A92|443|17359568|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|4950|10000|||86.73|88.43|0.00|3.12| +24|2023-10-06T22:00:44.1820000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2F07|81809|81809|4950|10000|||86.73|88.43|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1850|10000|||89.59|87.25|0.00|2.14| +38|2023-10-06T22:00:44.1820000-07:00|40021585|Zeromus|005A5A00|17344250|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:00:44.1820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5150|10000|11||86.73|88.43|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:43.7150000-07:00|Remove|400218D9| +04|2023-10-06T22:00:43.7150000-07:00|400218D9|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||102.44|102.30|0.00|-3.11| +261|2023-10-06T22:00:43.7150000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T22:00:44.2260000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17344250|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||85.71|86.20|0.00|2.57|00010C84|0|1| +261|2023-10-06T22:00:43.8380000-07:00|Change|10FF000B||||||||||||||||||||| +38|2023-10-06T22:00:44.2710000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||86.33|88.44|-0.01|-2.93|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:44.2710000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +39|2023-10-06T22:00:44.3600000-07:00|10FF000B|Pusu Rosu|79209|79209|6578|10000|||85.19|86.32|0.00|1.97| +39|2023-10-06T22:00:44.3600000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||86.32|88.43|0.00|-2.94| +24|2023-10-06T22:00:44.3600000-07:00|10FF0003|Gegehi Gehi|HoT|0|2214|73814|73814|4800|10000|||87.48|88.76|0.00|-2.46|10FF0003|Gegehi Gehi|0|73814|73814|4800|10000|||87.48|88.76|0.00|-2.46| +38|2023-10-06T22:00:44.3600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|12||87.48|88.76|0.00|-2.46|0|0|0||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:44.4050000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|12||87.48|88.76|0.00|-2.46|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:44.4050000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +39|2023-10-06T22:00:44.4490000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||85.71|86.20|0.00|2.57| +24|2023-10-06T22:00:44.4490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2816|83502|83502|10000|10000|||86.32|88.43|0.00|-2.94|10FF000B|Pusu Rosu|0|79209|79209|6578|10000|||85.19|86.32|0.00|1.97| +21|2023-10-06T22:00:44.4490000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|750003|706F0000|4|316C8000|0|0|0|0|0|0|0|0|0|0|0|0|17344250|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||84.57|86.15|0.00|2.85|00010C85|0|1| +21|2023-10-06T22:00:44.4490000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|33FC0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|17344250|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|6578|10000|||85.19|86.32|0.00|1.97|00010C86|0|1| +38|2023-10-06T22:00:44.4490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|7||84.57|86.15|0.00|2.85|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:44.4490000-07:00|558|Requiescat|22.03|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T22:00:44.4490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||86.32|88.43|0.00|-2.94|0|0|0|||||||||||||||||||||||||||||||||| +31|2023-10-06T22:00:44.4490000-07:00|10FF0001||||| +24|2023-10-06T22:00:44.4930000-07:00|10FF000B|Pusu Rosu|HoT|0|2748|79209|79209|6578|10000|||85.19|86.32|0.00|1.97|10FF000B|Pusu Rosu|0|79209|79209|6578|10000|||85.19|86.32|0.00|1.97| +38|2023-10-06T22:00:44.4930000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|6728|10000|11||85.19|86.32|0.00|1.97|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:44.5370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||85.57|87.11|0.00|-3.04|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:44.5370000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +24|2023-10-06T22:00:44.5820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2232|129844|129844|10000|10000|||85.71|86.20|0.00|2.57|10FF000B|Pusu Rosu|0|79209|79209|6728|10000|||85.19|86.32|0.00|1.97| +38|2023-10-06T22:00:44.5820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||85.71|86.20|0.00|2.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:44.1830000-07:00|Change|10FF0004||||||||| +24|2023-10-06T22:00:44.6710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|206F|129071|129071|7900|10000|||84.57|86.15|0.00|2.85|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1850|10000|||86.42|85.75|0.00|-2.35| +20|2023-10-06T22:00:44.6710000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|86.38|87.70|0.00|-2.38| +38|2023-10-06T22:00:44.6710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|7||84.57|86.15|0.00|2.85|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:44.6710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1850|10000|18||86.42|85.75|0.00|-2.35|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:44.6710000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +37|2023-10-06T22:00:44.7160000-07:00|40021585|Zeromus|00010C82|17332805||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:44.7160000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24980000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|17344250|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||86.32|88.43|0.00|-2.94|00010C87|0|1| +37|2023-10-06T22:00:44.7610000-07:00|40021585|Zeromus|00010C84|17327946||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:44.7610000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +21|2023-10-06T22:00:44.7610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17332805|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||86.32|88.43|0.00|2.12|00010C88|0|1| +38|2023-10-06T22:00:44.8040000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||85.71|86.20|0.00|2.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:44.8040000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +261|2023-10-06T22:00:44.3860000-07:00|Change|10FF0001||||||||| +20|2023-10-06T22:00:44.8500000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|85.27|85.12|-0.02|-2.23| +37|2023-10-06T22:00:44.8930000-07:00|40021585|Zeromus|00010C81|17318235||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:44.8930000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|2C6E0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|17327946|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5150|10000|||85.66|87.43|0.00|-2.58|00010C89|0|1| +261|2023-10-06T22:00:44.4790000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T22:00:44.9380000-07:00|40021585|Zeromus|00010C83|17313070||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:44.9380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|7||84.57|86.15|0.00|2.85|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:44.9380000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +39|2023-10-06T22:00:44.9830000-07:00|10FF0003|Gegehi Gehi|73814|73814|5550|10000|||85.94|87.27|0.00|2.87| +37|2023-10-06T22:00:45.1170000-07:00|40021585|Zeromus|00010C87|17303702||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:45.1170000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2050|10000|||84.70|84.81|0.00|2.95| +261|2023-10-06T22:00:44.7810000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:00:44.7810000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:00:45.2950000-07:00|40021585|Zeromus|00010C88|17301549||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:45.3380000-07:00|40021585|Zeromus|00010C85|17272766||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:45.3850000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|769B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17272766|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||85.71|86.20|0.00|2.57|00010C8A|0|1| +21|2023-10-06T22:00:45.3850000-07:00|4002159A|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|116.50|0.00|0.00|00010C8B|0|0| +21|2023-10-06T22:00:45.3850000-07:00|4002159C|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|83.50|0.00|0.00|00010C8C|0|0| +21|2023-10-06T22:00:45.3850000-07:00|4002159E|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|112.00|0.00|0.00|00010C8D|0|0| +21|2023-10-06T22:00:45.3850000-07:00|400215A0|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|88.00|0.00|0.00|00010C8E|0|0| +21|2023-10-06T22:00:45.3850000-07:00|400215A2|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.00|00010C8F|0|0| +38|2023-10-06T22:00:45.3850000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||85.71|86.20|0.00|2.57|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:45.3850000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T22:00:45.0100000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T22:00:45.0100000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T22:00:45.0100000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T22:00:45.0100000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T22:00:45.0100000-07:00|Change|4002159E||||||||||||| +37|2023-10-06T22:00:45.5170000-07:00|40021585|Zeromus|00010C89|17261392||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:45.5610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|90E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17272766|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||84.57|86.15|0.00|2.85|00010C90|0|1| +31|2023-10-06T22:00:45.5610000-07:00|10FF0001||||| +261|2023-10-06T22:00:45.2420000-07:00|Change|10FF0004||||||||||||||||||||| +24|2023-10-06T22:00:45.6500000-07:00|40021585|Zeromus|DoT|0|1EDE|17261392|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7900|10000|||84.57|86.15|0.00|2.85| +36|2023-10-06T22:00:45.6500000-07:00|70BC|3| +38|2023-10-06T22:00:45.6500000-07:00|40021585|Zeromus|005A5A00|17253490|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:00:45.7390000-07:00|40021585|Zeromus|00010C86|17240182||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:45.7830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|22470000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|17253490|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2050|10000|||84.12|84.49|0.00|1.84|00010C91|0|1| +261|2023-10-06T22:00:45.5320000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T22:00:45.5320000-07:00|Change|400218CF||||||||| +20|2023-10-06T22:00:45.9620000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|85.19|86.32|0.00|1.97| +21|2023-10-06T22:00:46.0070000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17240182|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||84.95|86.17|0.00|-2.52|00010C92|0|1| +37|2023-10-06T22:00:46.0530000-07:00|40021585|Zeromus|00010C8A|17209819||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:46.0530000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17240182|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4850|10000|||85.33|86.90|0.00|2.48|00010C93|0|1| +37|2023-10-06T22:00:46.0960000-07:00|40021585|Zeromus|00010C90|17207501||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:46.0960000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|450003|227B0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|17240182|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5550|10000|||85.71|87.05|0.00|2.02|00010C94|0|1| +38|2023-10-06T22:00:46.0960000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|12||85.71|87.05|0.00|2.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:46.0960000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:00:46.0960000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T22:00:46.1400000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||84.95|86.17|0.00|-2.52| +261|2023-10-06T22:00:45.8790000-07:00|Change|10FF000B||||||||||||| +21|2023-10-06T22:00:46.3180000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|734003|580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17207501|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1650|10000|||84.13|84.50|0.00|1.50|00010C95|0|1| +20|2023-10-06T22:00:46.3620000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|1.491|85.34|86.90|0.00|2.01| +21|2023-10-06T22:00:46.4060000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|379F0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|17207501|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||84.95|86.17|0.00|-2.52|00010C96|0|1| +38|2023-10-06T22:00:46.4060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1650|10000|18||84.13|84.50|0.00|1.50|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:46.4060000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T22:00:46.4060000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1650|10000|||84.13|84.50|0.00|1.50|81541|81541|1650|10000|||84.13|84.50|0.00|1.50|00010C97|0|1| +261|2023-10-06T22:00:46.1100000-07:00|Change|10FF0006||||||||||||||||||||| +38|2023-10-06T22:00:46.4510000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|6728|10000|11||85.19|86.32|0.00|1.97|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.4510000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:00:46.4510000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||86.32|88.43|0.00|2.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.4510000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T22:00:46.4960000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17207501|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5350|10000|||85.71|87.05|0.00|2.02|00010C98|0|1| +21|2023-10-06T22:00:46.4960000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||86.32|88.43|0.00|2.12|83502|83502|10000|10000|||86.32|88.43|0.00|2.12|00010C99|0|1| +38|2023-10-06T22:00:46.4960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||85.73|86.20|0.00|1.83|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.4960000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:00:46.4960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||84.95|86.17|0.00|1.96|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.4960000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:00:46.4960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4850|10000|11||85.57|86.71|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.4960000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:46.4960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|7||84.73|86.16|0.00|1.53|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.4960000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:00:46.4960000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1650|10000|18||84.14|84.51|0.00|1.47|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.4960000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:00:46.4960000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|12||85.71|87.05|0.00|2.02|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.4960000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:00:46.4960000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||86.32|88.43|0.00|2.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:46.4960000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +39|2023-10-06T22:00:46.5400000-07:00|400218DF|Carbuncle|77698|77698|10000|10000|||87.21|87.39|0.00|-2.57| +261|2023-10-06T22:00:46.2210000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:00:46.5850000-07:00|40021585|Zeromus|00010C93|17207384||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:46.5850000-07:00|40021585|Zeromus|00010C91|17198609||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:46.7630000-07:00|40021585|Zeromus|00010C92|17194875||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:46.8070000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||86.62|86.23|0.00|1.58| +21|2023-10-06T22:00:46.8070000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||86.78|86.38|0.00|1.51|129844|129844|10000|10000|||86.78|86.38|0.00|1.51|00010C9A|0|1| +38|2023-10-06T22:00:46.8070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||86.78|86.38|0.00|1.51|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:46.8070000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:00:46.8520000-07:00|40021585|Zeromus|00010C95|17194787||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:46.5080000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:46.8970000-07:00|40021585|Zeromus|00010C94|17185960||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:46.8970000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|32B80000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|17194787|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|6728|10000|||85.19|86.32|0.00|1.97|00010C9B|0|1| +261|2023-10-06T22:00:46.5080000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T22:00:46.9410000-07:00|10FF0004|Buhojaqe Zijaqe|00010C97|81541|81541|3650|10000|18||85.86|84.17|0.00|1.66|1C00|0|0|0| +21|2023-10-06T22:00:46.9420000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|754003|99300000|4|2D198000|0|0|0|0|0|0|0|0|0|0|0|0|17194787|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||87.33|86.21|0.00|1.60|00010C9C|0|1| +21|2023-10-06T22:00:46.9420000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A7E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17194787|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||86.35|88.43|0.00|2.40|00010C9D|0|1| +38|2023-10-06T22:00:46.9420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|7||87.33|86.21|0.00|1.60|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.9420000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T22:00:46.9420000-07:00|10FF0001||||| +38|2023-10-06T22:00:46.9860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|12||85.71|87.05|0.00|2.02|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:46.9860000-07:00|6FD|Vulnerability Up|0.00|400215A3|Zeromus|10FF0003|Gegehi Gehi|01|73814|44| +37|2023-10-06T22:00:47.0310000-07:00|40021585|Zeromus|00010C98|17185959||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:47.0760000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|21C8|90216|90216|10000|10000|||85.03|86.19|0.00|1.55|10FF000B|Pusu Rosu|0|79209|79209|6328|10000|||85.19|86.32|0.00|1.97| +24|2023-10-06T22:00:47.0760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2BE7|81541|81541|3650|10000|||85.89|84.19|-0.02|1.64|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3650|10000|||85.89|84.19|-0.02|1.64| +38|2023-10-06T22:00:47.0760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||85.03|86.19|0.00|1.55|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:47.0760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3650|10000|18||85.89|84.19|-0.02|1.64|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:00:47.1200000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|277E0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|17185959|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5350|10000|||85.77|87.10|0.00|1.52|00010C9E|0|1| +38|2023-10-06T22:00:47.1200000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5050|10000|12||85.77|87.10|0.00|1.52|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:47.1200000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +24|2023-10-06T22:00:47.1650000-07:00|40021585|Zeromus|DoT|A92|49D|17185959|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|4850|10000|||86.26|86.11|0.00|1.98| +24|2023-10-06T22:00:47.1650000-07:00|10FF0006|Wowobora Gogobora|HoT|0|218D|81809|81809|4850|10000|||86.26|86.11|0.00|1.98|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3650|10000|||86.15|84.18|0.00|1.64| +38|2023-10-06T22:00:47.1650000-07:00|40021585|Zeromus|005A5A00|17184778|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:00:47.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4850|10000|11||86.26|86.11|0.00|1.98|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:47.2100000-07:00|40021585|Zeromus|00010C96|17170539||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:47.2100000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5050|10000|||86.26|86.11|0.00|1.98| +21|2023-10-06T22:00:47.2990000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|FD90E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|17170539|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|3650|10000|||86.41|84.17|0.00|1.63|00010C9F|0|1| +21|2023-10-06T22:00:47.2990000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19714003|39E50000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|17170539|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.27|88.44|0.00|2.93|00010CA0|0|1| +38|2023-10-06T22:00:47.2990000-07:00|40021585|Zeromus|005A5A00|17170539|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T22:00:47.2990000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T22:00:47.2990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||87.27|88.44|0.00|2.93|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:47.2990000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T22:00:46.9460000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:00:47.3440000-07:00|10FF0007|Kehabiqo Febiqo|00010C9A|129844|129844|10000|10000|25||88.69|86.73|0.00|1.38|1500|0|0|01|06000769|0|41F00000|| +39|2023-10-06T22:00:47.3440000-07:00|10FF000B|Pusu Rosu|79209|79209|6609|10000|||85.19|86.32|-0.02|1.91| +39|2023-10-06T22:00:47.3440000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||88.18|88.46|0.00|2.21| +21|2023-10-06T22:00:47.3440000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|756003|4D800000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|17170539|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5050|10000|||86.26|86.11|0.00|1.98|00010CA1|0|1| +38|2023-10-06T22:00:47.3440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||88.69|86.73|0.00|1.38|0|0|0||||||||||||||||||||||||||||||||||||||||||| +24|2023-10-06T22:00:47.3880000-07:00|10FF0003|Gegehi Gehi|HoT|0|2099|73814|73814|5050|10000|||87.47|87.42|0.00|1.71|10FF000B|Pusu Rosu|0|79209|79209|6609|10000|||85.21|86.34|0.00|1.67| +38|2023-10-06T22:00:47.3880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5600|10000|12||87.47|87.42|0.00|1.71|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T22:00:47.4320000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|333F|83502|83502|10000|10000|||89.01|88.47|0.00|2.21|10FF000B|Pusu Rosu|0|79209|79209|6609|10000|||85.21|86.34|0.00|1.67| +38|2023-10-06T22:00:47.4320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||89.01|88.47|0.00|2.21|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:47.0580000-07:00|Change|10FF0006||||||||||||||||||||||| +37|2023-10-06T22:00:47.4760000-07:00|10FF000A|Dukaro Nezikaro|00010C99|83502|83502|10000|10000|18||89.01|88.47|0.00|2.21|1E00|0|0|01|050001F1|0|41700000|| +37|2023-10-06T22:00:47.4760000-07:00|40021585|Zeromus|00010C9D|17167853|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000CB6|0|C1700000|| +39|2023-10-06T22:00:47.4760000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||89.34|86.86|0.00|1.38| +24|2023-10-06T22:00:47.4760000-07:00|10FF000B|Pusu Rosu|HoT|0|2199|79209|79209|6609|10000|||85.21|86.34|0.00|1.67|10FF000B|Pusu Rosu|0|79209|79209|6609|10000|||85.21|86.34|0.00|1.67| +38|2023-10-06T22:00:47.4760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5600|10000|12||87.47|87.42|0.00|1.71|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:47.4760000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:00:47.4760000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7159|10000|11||85.21|86.34|0.00|1.67|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:47.4760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||89.01|88.47|0.00|2.21|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T22:00:47.5660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|21AF|129844|129844|10000|10000|||90.04|87.00|0.00|1.38|10FF000B|Pusu Rosu|0|79209|79209|7159|10000|||85.22|86.35|0.00|1.41| +38|2023-10-06T22:00:47.5660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||90.04|87.00|0.00|1.38|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:00:47.6100000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17167853|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.04|87.00|0.00|1.38|00010CA2|0|1| +261|2023-10-06T22:00:47.2990000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T22:00:47.6550000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|27B0|129071|129071|7100|10000|||91.39|87.79|0.00|1.95|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3250|10000|||89.06|84.45|0.00|1.57| +38|2023-10-06T22:00:47.6550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|7||91.39|87.79|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:00:47.7440000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +261|2023-10-06T22:00:47.3890000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T22:00:47.8340000-07:00|40021585|Zeromus|00010C9C|17128637|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000CB6|0|C1700000|| +21|2023-10-06T22:00:47.8340000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|93310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17167853|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||91.52|87.29|0.00|1.38|00010CA3|0|1| +21|2023-10-06T22:00:47.8340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|B740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17167853|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||92.01|88.04|0.00|2.00|00010CA4|0|1| +261|2023-10-06T22:00:47.4870000-07:00|Change|10FF0007||||||||| +38|2023-10-06T22:00:47.8350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||92.25|87.43|0.00|2.47|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:47.8350000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +31|2023-10-06T22:00:47.8350000-07:00|10FF0001||||| +37|2023-10-06T22:00:47.8770000-07:00|40021585|Zeromus|00010C9E|17118527|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000CB6|0|C1700000|| +37|2023-10-06T22:00:47.9220000-07:00|40021585|Zeromus|00010C9F|17118527|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|0767|0|41F00000|||||| +26|2023-10-06T22:00:47.9220000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +261|2023-10-06T22:00:47.5790000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T22:00:47.9670000-07:00|10FF0003|Gegehi Gehi|73814|73814|5800|10000|||90.93|87.52|0.00|1.61| +21|2023-10-06T22:00:47.9670000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|724003|3B340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17118527|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5600|10000|||90.93|87.52|0.00|1.61|00010CA5|0|1| +21|2023-10-06T22:00:48.0110000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||90.71|88.52|0.00|2.74|83502|83502|10000|10000|||90.71|88.52|0.00|2.74|00010CA6|0|1| +38|2023-10-06T22:00:48.0110000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||90.71|88.52|0.00|2.74|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:48.0110000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +261|2023-10-06T22:00:47.7880000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:00:48.1000000-07:00|40021585|Zeromus|00010CA0|17103706|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|03000CB6|0|41700000|| +39|2023-10-06T22:00:48.1000000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3450|10000|||91.82|85.05|0.00|1.40| +38|2023-10-06T22:00:48.1000000-07:00|40021585|Zeromus|005A5A00|17103706|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:00:48.1450000-07:00|40021585|Zeromus|00010CA2|17098901||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:48.1450000-07:00|40021585|Zeromus|00010CA1|17079061||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:47.7880000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:00:47.9060000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:00:48.1900000-07:00|40021585|Zeromus|00010C9B|17066077||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:48.3690000-07:00|40021585|Zeromus|00010CA4|17063145||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:48.1470000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:00:48.5020000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||93.20|88.57|0.00|3.12|83502|83502|10000|10000|||93.20|88.57|0.00|3.12|00010CA7|0|1| +38|2023-10-06T22:00:48.5020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||93.20|88.57|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:48.5020000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +261|2023-10-06T22:00:48.2660000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:00:48.3620000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:00:48.3620000-07:00|Change|10FF0007||||||||| +24|2023-10-06T22:00:48.6800000-07:00|40021585|Zeromus|DoT|0|176E|17063145|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||95.93|88.63|-0.01|3.12| +21|2023-10-06T22:00:48.6800000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|123F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17063145|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.24|87.42|0.00|1.54|00010CA8|0|1| +36|2023-10-06T22:00:48.6800000-07:00|7198|3| +38|2023-10-06T22:00:48.6800000-07:00|40021585|Zeromus|005A5A00|17057147|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:00:48.7690000-07:00|40021585|Zeromus|00010CA3|17019466||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:48.4670000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:00:48.5650000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:00:48.5650000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:00:48.9030000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40021585|Zeromus|750003|30880000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|17019466|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4750|10000|||92.91|86.31|0.00|1.46|00010CA9|0|1| +38|2023-10-06T22:00:48.9030000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4350|10000|11||92.91|86.31|0.00|1.46|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:48.9030000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T22:00:48.9470000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|11070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17019466|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.07|86.92|0.00|1.86|00010CAA|0|1| +21|2023-10-06T22:00:48.9470000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|722003|965A0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|17019466|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.01|87.40|0.00|1.59|00010CAB|0|1| +21|2023-10-06T22:00:48.9920000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|254003|BD14001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17019466|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||96.53|88.63|0.00|3.12|00010CAC|0|1| +38|2023-10-06T22:00:48.9920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||96.53|88.63|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:48.9920000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +30|2023-10-06T22:00:48.9920000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T22:00:48.6640000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:00:49.1260000-07:00|40021585|Zeromus|00010CA5|17004310||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:49.1260000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|F740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17019466|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||97.18|88.65|0.00|-3.14|00010CAD|0|1| +39|2023-10-06T22:00:49.1700000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||98.79|87.38|0.00|2.41| +261|2023-10-06T22:00:48.8710000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:00:49.4380000-07:00|40021585|Zeromus|00010CA8|16999639||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:49.4380000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|754003|4D7C0000|4|2E198000|0|0|0|0|0|0|0|0|0|0|0|0|17004310|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||100.94|89.54|0.00|2.84|00010CAE|0|1| +21|2023-10-06T22:00:49.4380000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|17004310|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|3450|10000|||99.33|87.07|-0.02|1.45|00010CAF|0|1| +38|2023-10-06T22:00:49.4380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6100|10000|7||100.94|89.54|0.00|2.84|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:49.4380000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +20|2023-10-06T22:00:49.5260000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|99.24|87.43|0.00|1.76| +37|2023-10-06T22:00:49.5710000-07:00|40021585|Zeromus|00010CAA|16995280||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:49.5720000-07:00|400218DF|Carbuncle|77698|77698|10000|10000|||89.98|87.31|0.00|1.75| +20|2023-10-06T22:00:49.5720000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.47|89.27|-0.02|1.39| +261|2023-10-06T22:00:49.2210000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:49.6160000-07:00|40021585|Zeromus|00010CAC|16926719||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:49.6610000-07:00|40021585|Zeromus|00010CAD|16922763||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:49.7060000-07:00|40021585|Zeromus|00010CA9|16910339||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:00:49.7060000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|99.61|87.05|0.00|1.64| +261|2023-10-06T22:00:49.3130000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:00:49.7950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6300|10000|||100.94|89.54|0.00|2.84| +04|2023-10-06T22:00:49.4060000-07:00|400218CF|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||102.25|103.01|0.00|-3.04| +261|2023-10-06T22:00:49.4060000-07:00|Remove|400218CF| +38|2023-10-06T22:00:49.8400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|7||100.94|89.54|0.00|2.84|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:49.8400000-07:00|13D|Fey Illumination|0.00|4002185F|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +261|2023-10-06T22:00:49.4990000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T22:00:49.4990000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:00:49.9730000-07:00|40021585|Zeromus|00010CAF|16910270||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:49.9730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|25||99.95|86.37|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:49.9730000-07:00|13D|Fey Illumination|0.00|4002185F|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T22:00:50.0180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|11||99.99|86.29|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:50.0180000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +24|2023-10-06T22:00:50.0620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2085|90216|90216|10000|10000|||99.53|87.36|0.00|1.59|10FF000B|Pusu Rosu|0|79209|79209|7159|10000|||100.16|88.14|0.00|3.13| +24|2023-10-06T22:00:50.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2107|81541|81541|3450|10000|||99.90|87.02|0.00|2.96|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3450|10000|||99.90|87.02|0.00|2.96| +38|2023-10-06T22:00:50.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.53|87.36|0.00|1.59|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:50.0620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3450|10000|18||99.90|87.02|0.00|2.96|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:00:50.1060000-07:00|40021585|Zeromus|00010CAB|16871780||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:50.1060000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|EC10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16910270|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||100.94|89.54|0.00|2.84|00010CB0|0|1| +38|2023-10-06T22:00:50.1060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5800|10000|12||99.86|87.30|-0.01|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:50.1060000-07:00|13D|Fey Illumination|0.00|4002185F|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +31|2023-10-06T22:00:50.1060000-07:00|10FF0001||||| +24|2023-10-06T22:00:50.1510000-07:00|40021585|Zeromus|DoT|A92|376|16871780|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|4350|10000|||98.31|87.52|0.00|1.38| +24|2023-10-06T22:00:50.1510000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2179|81809|81809|4350|10000|||98.31|87.52|0.00|1.38|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3450|10000|||99.93|87.02|-0.02|3.13| +38|2023-10-06T22:00:50.1510000-07:00|40021585|Zeromus|005A5A00|16870894|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T22:00:50.1510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4350|10000|11||98.31|87.52|0.00|1.38|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:50.1950000-07:00|40021585|Zeromus|00010CAE|16851058||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:50.1950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4550|10000|||98.31|87.52|0.00|1.38| +21|2023-10-06T22:00:50.2400000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16871780|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4350|10000|||98.31|87.52|0.00|1.38|00010CB1|0|1| +38|2023-10-06T22:00:50.2400000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3450|10000|18||99.93|87.02|-0.02|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:50.2400000-07:00|13D|Fey Illumination|0.00|4002185F|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T22:00:49.9240000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:00:50.2850000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|714003|485C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16851058|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.05|86.17|0.00|3.03|00010CB2|0|1| +39|2023-10-06T22:00:50.3730000-07:00|10FF000B|Pusu Rosu|79209|79209|7440|10000|||100.18|88.12|0.00|-3.12| +39|2023-10-06T22:00:50.3730000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.99|88.70|0.00|-3.14| +24|2023-10-06T22:00:50.3730000-07:00|10FF0003|Gegehi Gehi|HoT|0|216B|73814|73814|5800|10000|||99.87|87.30|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|7159|10000|||100.18|88.12|0.00|-3.12| +21|2023-10-06T22:00:50.3730000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|5E60000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.05|86.17|0.00|3.03|16851058|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010CB3|0|1| +38|2023-10-06T22:00:50.3730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4550|10000|11||98.68|87.62|0.00|1.17|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:50.3730000-07:00|13D|Fey Illumination|0.00|4002185F|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T22:00:50.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5800|10000|12||99.87|87.30|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:49.9240000-07:00|Change|400215A3||||||||| +24|2023-10-06T22:00:50.4180000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2060|83502|83502|10000|10000|||99.99|88.70|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|7440|10000|||100.18|88.12|0.00|-3.12| +21|2023-10-06T22:00:50.4180000-07:00|40021592|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.50|83.50|0.00|0.00|00010CB4|0|0| +21|2023-10-06T22:00:50.4180000-07:00|40021594|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||116.50|116.50|0.00|0.00|00010CB5|0|0| +21|2023-10-06T22:00:50.4180000-07:00|40021596|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||88.00|100.00|0.00|0.00|00010CB6|0|0| +21|2023-10-06T22:00:50.4180000-07:00|40021598|Zeromus|8B42|Abyssal Echoes|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.00|100.00|0.00|0.00|00010CB7|0|0| +38|2023-10-06T22:00:50.4180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.99|88.70|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:50.0350000-07:00|Change|40021596||||||||||||| +261|2023-10-06T22:00:50.0350000-07:00|Change|40021594||||||||||||| +261|2023-10-06T22:00:50.0350000-07:00|Change|40021598||||||||||||| +261|2023-10-06T22:00:50.0350000-07:00|Change|40021592||||||||||||| +20|2023-10-06T22:00:50.4630000-07:00|40021585|Zeromus|8B38|Sable Thread|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:50.4630000-07:00|400215A3|Zeromus|8AEF|unknown_8aef|10FF000B|Pusu Rosu|1B|8AEF8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7440|10000|||100.18|88.12|0.00|-3.12|44|44|0|10000|||100.00|70.00|0.00|0.00|00010CB8|0|1| +39|2023-10-06T22:00:50.4630000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||100.05|86.17|0.00|-3.13| +24|2023-10-06T22:00:50.4630000-07:00|10FF000B|Pusu Rosu|HoT|0|20D5|79209|79209|7440|10000|||100.18|88.12|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|7440|10000|||100.18|88.12|0.00|-3.12| +38|2023-10-06T22:00:50.4630000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7990|10000|11||100.18|88.12|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:50.0350000-07:00|Change|40021585||||||||||||| +21|2023-10-06T22:00:50.5080000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|40CF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|16851058|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7990|10000|||100.18|88.12|0.00|-3.12|00010CB9|0|1| +38|2023-10-06T22:00:50.5080000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7590|10000|11||100.18|88.12|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:50.5080000-07:00|13D|Fey Illumination|0.00|4002185F|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +24|2023-10-06T22:00:50.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|20B0|129844|129844|10000|10000|||100.05|86.17|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7990|10000|||100.18|88.12|0.00|-3.12| +38|2023-10-06T22:00:50.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|11||100.05|86.17|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:50.2660000-07:00|Change|10FF0001||| +37|2023-10-06T22:00:50.6410000-07:00|40021585|Zeromus|00010CB0|16847281||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:50.6410000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|277F|129071|129071|6300|10000|||100.94|89.54|0.00|2.84|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3450|10000|||99.93|87.02|0.00|3.14| +21|2023-10-06T22:00:50.6410000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|225D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16851058|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|3450|10000|||99.93|87.02|0.00|3.14|00010CBA|0|1| +261|2023-10-06T22:00:50.2660000-07:00|Change|400218DF||||||||| +38|2023-10-06T22:00:50.6410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.53|87.36|0.00|1.59|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:50.6410000-07:00|13D|Fey Illumination|0.00|4002185F|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T22:00:50.6410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|7||100.94|89.54|0.00|2.84|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:00:50.6850000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|88.70|0.00|-3.14|83502|83502|10000|10000|||99.99|88.70|0.00|-3.14|00010CBB|0|1| +38|2023-10-06T22:00:50.6850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.99|88.70|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:50.6850000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:00:50.3570000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:00:50.7750000-07:00|40021585|Zeromus|00010CB1|16847215||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:50.7750000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +38|2023-10-06T22:00:50.7750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.99|88.70|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:50.7750000-07:00|13D|Fey Illumination|0.00|4002185F|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T22:00:50.9090000-07:00|40021585|Zeromus|00010CB2|16828691||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:50.5470000-07:00|Change|10FF000B||||||||||||||||||||||| +21|2023-10-06T22:00:50.9530000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|752003|37E10000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|16847215|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5800|10000|||99.87|87.30|0.00|3.13|00010CBC|0|1| +38|2023-10-06T22:00:50.9530000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5600|10000|12||99.87|87.30|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:50.9530000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:00:50.5470000-07:00|Change|10FF0003||||||||||||||||||||||| +39|2023-10-06T22:00:50.9970000-07:00|10FF0003|Gegehi Gehi|73814|73814|5800|10000|||99.87|87.30|0.00|3.13| +21|2023-10-06T22:00:50.9970000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|136A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16847215|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.05|86.17|0.00|-3.13|00010CBD|0|1| +39|2023-10-06T22:00:51.1310000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3250|10000|||99.93|87.02|0.00|3.14| +37|2023-10-06T22:00:51.1770000-07:00|10FF0007|Kehabiqo Febiqo|00010CB3|128334|129844|10000|10000|0||100.05|86.17|0.00|-3.13|1500|0|0|01|04000000|0|0|| +21|2023-10-06T22:00:51.1770000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|88.70|0.00|-3.14|83502|83502|10000|10000|||99.99|88.70|0.00|-3.14|00010CBE|0|1| +38|2023-10-06T22:00:51.1770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128334|129844|10000|10000|0||100.05|86.17|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:51.1770000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:00:51.1770000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.99|88.70|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:51.1770000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +21|2023-10-06T22:00:51.2210000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|20E10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|128334|129844|10000|10000|||100.05|86.17|0.00|-3.13|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10|00010CBF|0|1| +38|2023-10-06T22:00:51.2210000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7590|10000|11||100.18|88.12|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:51.2210000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:00:50.8700000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T22:00:51.3090000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16828691|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|88.70|0.00|-3.14|00010CC0|0|1| +21|2023-10-06T22:00:51.3550000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16828691|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.60|88.17|0.00|0.33|00010CC1|0|1| +21|2023-10-06T22:00:51.3550000-07:00|10FF0006|Wowobora Gogobora|64E7|Summon Phoenix|40021585|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|16828691|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4550|10000|||99.36|87.81|0.00|-1.62|00010CC2|0|1| +38|2023-10-06T22:00:51.3550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4550|10000|11||99.36|87.81|0.00|-1.62|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:51.3550000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:00:51.3960000-07:00|400218E7||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:00:51.3990000-07:00|400218E7||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:00:51.1050000-07:00|Add|400218E7||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:00:51.1050000-07:00|400218E7|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|74223|77698|10000|10000|||100.86|89.70|0.00|3.05| +37|2023-10-06T22:00:51.4430000-07:00|40021585|Zeromus|00010CBA|16819894||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:51.4430000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16828691|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5800|10000|||99.87|87.30|0.00|3.13|00010CC3|0|1| +261|2023-10-06T22:00:51.1050000-07:00|Change|400218E7||| +21|2023-10-06T22:00:51.4880000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|720003|5C590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16819894|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.65|88.96|0.00|0.06|00010CC4|0|1| +38|2023-10-06T22:00:51.4880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.99|88.70|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:51.4880000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:00:51.5320000-07:00|40021585|Zeromus|00010CBD|16814924||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:51.5320000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|128334|129844|10000|10000|||100.05|86.17|0.00|-3.13|128334|129844|10000|10000|||100.05|86.17|0.00|-3.13|00010CC5|0|1| +38|2023-10-06T22:00:51.5320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128334|129844|10000|10000|0||100.05|86.17|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:51.5320000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:00:51.5320000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7590|10000|11||100.18|88.12|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:51.5320000-07:00|32|Sprint|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|1E|79209|79209| +38|2023-10-06T22:00:51.6210000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5800|10000|12||99.87|87.30|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:51.6210000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +261|2023-10-06T22:00:51.3120000-07:00|Change|400218DF||||||||| +24|2023-10-06T22:00:51.6660000-07:00|40021585|Zeromus|DoT|0|1E14|16814924|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||99.99|88.71|0.00|-2.80| +36|2023-10-06T22:00:51.6660000-07:00|7274|3| +38|2023-10-06T22:00:51.6660000-07:00|40021585|Zeromus|005A5A00|16807224|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:00:51.7100000-07:00|40021585|Zeromus|00010CBC|16792919||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:51.7540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||99.76|91.14|0.00|2.03|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:51.7540000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:00:51.7990000-07:00|40021585|Zeromus|00010CB9|16776328||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:51.8440000-07:00|40021585|Zeromus|00010CC0|16773983||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:51.8890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128334|129844|10000|10000|0||100.05|86.17|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:51.8890000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:00:51.8890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3250|10000|18||100.26|88.85|0.00|0.29|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:51.8890000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T22:00:51.5880000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:00:51.9340000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|38D30000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|16773983|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||100.62|89.48|0.00|-3.08|00010CC6|0|1| +21|2023-10-06T22:00:51.9340000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|554003|628E0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|16773983|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|88.74|0.00|-1.26|00010CC7|0|1| +38|2023-10-06T22:00:51.9340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|7||100.62|89.48|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:51.9340000-07:00|76E|Sword Oath|5.43|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T22:00:51.9340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.99|88.74|0.00|-1.26|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:51.9340000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:00:51.9340000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T22:00:51.9780000-07:00|40021585|Zeromus|00010CC3|16773982||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:51.9780000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|31C50000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|16773983|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5800|10000|||99.89|87.39|0.00|1.31|00010CC8|0|1| +38|2023-10-06T22:00:51.9780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|12||99.89|87.39|0.00|1.31|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:51.9780000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:00:51.9780000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:00:51.5880000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:00:52.0230000-07:00|10FF0007|Kehabiqo Febiqo|00010CBF|129844|129844|10000|10000|0||100.05|86.17|0.00|-3.13|1500|0|0|01|02000769|0|C1F00000|| +21|2023-10-06T22:00:52.0230000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|ABF0000|BDA40E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|16773982|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7590|10000|||99.61|90.12|0.00|-0.66|00010CC9|0|1| +38|2023-10-06T22:00:52.0230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.05|86.17|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T22:00:52.0230000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T22:00:52.0680000-07:00|10FF0007|Kehabiqo Febiqo|00010CC5|129844|129844|10000|10000|0||100.05|86.17|0.00|-3.13|1500|0|0|01|02000769|0|41F00000|| +38|2023-10-06T22:00:52.0680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.05|86.17|0.00|-3.13|0|0|0||||||||||||||||||| +37|2023-10-06T22:00:52.1120000-07:00|40021585|Zeromus|00010CC1|16771781||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:51.7740000-07:00|Change|10FF000B||||||||||| +39|2023-10-06T22:00:52.1570000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.91|93.78|0.00|0.35| +38|2023-10-06T22:00:52.1570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|7||100.62|89.48|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:52.1570000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +261|2023-10-06T22:00:51.9980000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:00:52.3790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16771781|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||100.62|89.48|0.00|3.02|00010CCA|0|1| +22|2023-10-06T22:00:52.3790000-07:00|400218E7|Demi-Phoenix|4085|Everlasting Flight|10FF0001|Sesuga Sapisuga|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6300|10000|||100.62|89.48|0.00|3.02|74223|77698|10000|10000|||100.86|89.70|0.00|3.05|00010CCB|0|8| +22|2023-10-06T22:00:52.3790000-07:00|400218E7|Demi-Phoenix|4085|Everlasting Flight|10FF0003|Gegehi Gehi|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5500|10000|||100.20|90.04|0.00|0.67|74223|77698|10000|10000|||100.86|89.70|0.00|3.05|00010CCB|1|8| +22|2023-10-06T22:00:52.3790000-07:00|400218E7|Demi-Phoenix|4085|Everlasting Flight|10FF000B|Pusu Rosu|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7190|10000|||99.75|90.61|0.00|-3.13|74223|77698|10000|10000|||100.86|89.70|0.00|3.05|00010CCB|2|8| +22|2023-10-06T22:00:52.3790000-07:00|400218E7|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|4550|10000|||99.68|91.75|0.00|0.19|74223|77698|10000|10000|||100.86|89.70|0.00|3.05|00010CCB|3|8| +22|2023-10-06T22:00:52.3790000-07:00|400218E7|Demi-Phoenix|4085|Everlasting Flight|10FF0004|Buhojaqe Zijaqe|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3250|10000|||100.85|92.42|0.00|0.17|74223|77698|10000|10000|||100.86|89.70|0.00|3.05|00010CCB|4|8| +22|2023-10-06T22:00:52.3790000-07:00|400218E7|Demi-Phoenix|4085|Everlasting Flight|10FF000A|Dukaro Nezikaro|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.95|91.37|0.00|-1.15|74223|77698|10000|10000|||100.86|89.70|0.00|3.05|00010CCB|5|8| +22|2023-10-06T22:00:52.3790000-07:00|400218E7|Demi-Phoenix|4085|Everlasting Flight|10FF0007|Kehabiqo Febiqo|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.05|86.17|0.00|-3.13|74223|77698|10000|10000|||100.86|89.70|0.00|3.05|00010CCB|6|8| +22|2023-10-06T22:00:52.3790000-07:00|400218E7|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|10A40E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.98|94.93|0.00|0.14|74223|77698|10000|10000|||100.86|89.70|0.00|3.05|00010CCB|7|8| +31|2023-10-06T22:00:52.3790000-07:00|10FF0001||||| +261|2023-10-06T22:00:52.1080000-07:00|Change|400218E7||| +20|2023-10-06T22:00:52.4690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.82|92.57|0.00|0.16| +261|2023-10-06T22:00:52.3100000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:00:52.6470000-07:00|40021585|Zeromus|00010CC4|16748140||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:52.6470000-07:00|40021585|Zeromus|00010CC7|16722910||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:52.6470000-07:00|10FF000A|Dukaro Nezikaro|00010CC7|83502|83502|10000|10000|18||99.94|91.33|0.00|-1.83|1E00|0|0|01|03000A82|01|41F00000|| +38|2023-10-06T22:00:52.6470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.94|91.33|0.00|-1.83|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:00:52.7360000-07:00|40021585|Zeromus|00010CC8|16710169||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:52.7360000-07:00|10FF0003|Gegehi Gehi|00010CC8|73814|73814|5500|10000|12||100.23|90.33|0.00|0.39|2300|0|0|01|030004D3|0|41F00000|| +21|2023-10-06T22:00:52.7360000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|A2490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16771781|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.05|86.17|0.00|-3.13|00010CCC|0|1| +38|2023-10-06T22:00:52.7360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.05|86.17|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T22:00:52.7360000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:00:52.7360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|12||100.23|90.33|0.00|0.39|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:00:52.4000000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:00:52.4000000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:00:52.8250000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||100.35|89.45|0.00|3.02| +261|2023-10-06T22:00:52.5000000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:52.9140000-07:00|40021585|Zeromus|00010CCA|16707728||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:52.9140000-07:00|40021585|Zeromus|005A5A00|16707728|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:00:52.9140000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +38|2023-10-06T22:00:52.9580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|7||100.35|89.45|0.00|3.02|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:52.9580000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +24|2023-10-06T22:00:53.0470000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|AED|90216|90216|10000|10000|||100.15|98.16|0.00|0.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3250|10000|||100.73|93.00|-0.01|3.00| +24|2023-10-06T22:00:53.0470000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|B18|81541|81541|3250|10000|||100.73|93.00|-0.01|3.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3250|10000|||100.73|93.00|-0.01|3.00| +38|2023-10-06T22:00:53.0470000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||100.15|98.16|0.00|0.06|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:00:53.0470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3250|10000|18||100.73|93.00|-0.01|3.00|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:53.0920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.05|86.17|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T22:00:53.0920000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +39|2023-10-06T22:00:53.1810000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4750|10000|||99.70|96.54|0.00|0.00| +261|2023-10-06T22:00:52.8340000-07:00|Change|10FF0003||||||||| +24|2023-10-06T22:00:53.1810000-07:00|40021585|Zeromus|DoT|A92|72E|16707728|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|4550|10000|||99.70|96.54|0.00|0.00| +24|2023-10-06T22:00:53.1810000-07:00|10FF0006|Wowobora Gogobora|HoT|0|A4F|81809|81809|4550|10000|||99.70|96.54|0.00|0.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3250|10000|||100.72|93.03|0.00|-3.08| +38|2023-10-06T22:00:53.1820000-07:00|40021585|Zeromus|005A5A00|16705890|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T22:00:53.1820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4750|10000|11||99.70|96.54|0.00|0.00|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:53.2250000-07:00|40021585|Zeromus|00010CC6|16691343||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:53.2250000-07:00|10FF0001|Sesuga Sapisuga|00010CC6|129071|129071|6900|10000|7||100.35|89.45|0.00|3.02|1300|0|0|0| +38|2023-10-06T22:00:53.2250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||100.23|99.50|0.00|0.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:53.2250000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T22:00:53.3160000-07:00|40021585|Zeromus|00010CC9|16688592|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0100074F|0|41F00000|| +26|2023-10-06T22:00:53.3160000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +37|2023-10-06T22:00:53.3160000-07:00|10FF0001|Sesuga Sapisuga|00010CCB|129071|129071|6900|10000|7||100.35|89.45|0.00|3.02|1300|0|0|01|0200074C|0|41A80000|| +26|2023-10-06T22:00:53.3160000-07:00|74C|Everlasting Flight|21.00|400218E7|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|77698| +39|2023-10-06T22:00:53.3590000-07:00|10FF000B|Pusu Rosu|79209|79209|7471|10000|||99.68|94.99|0.00|-0.01| +39|2023-10-06T22:00:53.3590000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.82|96.48|0.00|-0.16| +21|2023-10-06T22:00:53.3590000-07:00|10FF0001|Sesuga Sapisuga|1D6B|Rampart|10FF0001|Sesuga Sapisuga|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6900|10000|||100.35|89.45|0.00|3.02|129071|129071|6900|10000|||100.35|89.45|0.00|3.02|00010CCD|0|1| +22|2023-10-06T22:00:53.3590000-07:00|10FF000B|Pusu Rosu|6506|Liturgy of the Bell|10FF000B|Pusu Rosu|500000F|A958000|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7190|10000|||99.68|94.99|0.00|-0.01|79209|79209|7190|10000|||99.68|94.99|0.00|-0.01|00010CCE|0|1| +38|2023-10-06T22:00:53.3590000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|12||100.22|93.11|0.00|0.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:53.3590000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T22:00:53.3590000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7471|10000|11||99.68|94.99|0.00|-0.01|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:53.3590000-07:00|A95|Liturgy of the Bell|20.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|05|79209|79209| +261|2023-10-06T22:00:53.0670000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:00:53.0670000-07:00|Change|10FF000B||||||||||| +38|2023-10-06T22:00:53.4020000-07:00|400218EA||005A5A00|72984|75049|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:00:53.4050000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16688592|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4750|10000|||99.85|97.97|0.00|0.07|00010CCF|0|1| +21|2023-10-06T22:00:53.4050000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|37D20000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16688592|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|3250|10000|||100.72|93.03|0.00|-3.08|00010CD0|0|1| +38|2023-10-06T22:00:53.4050000-07:00|400218EA||005A5A00|72984|75049|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:00:53.0670000-07:00|Add|400218EA||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:00:53.0670000-07:00|400218EA|Liturgic Bell|00|5A|10FF000B|00||10349|13961|72984|75049|10000|10000|||95.31|96.36|0.00|1.58| +261|2023-10-06T22:00:53.0670000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:00:53.0670000-07:00|Change|400218DF||| +37|2023-10-06T22:00:53.4490000-07:00|10FF0003|Gegehi Gehi|00010CCB|73814|73814|5500|10000|12||100.19|93.88|0.00|0.00|2301|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T22:00:53.4490000-07:00|74C|Everlasting Flight|21.00|400218E7|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73814|77698| +39|2023-10-06T22:00:53.4490000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||100.05|86.17|0.00|-3.13| +24|2023-10-06T22:00:53.4490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A18|83502|83502|10000|10000|||99.81|97.31|0.00|-0.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3250|10000|||100.72|93.03|0.00|-3.08| +38|2023-10-06T22:00:53.4490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.81|97.31|0.00|-0.11|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:00:53.0670000-07:00|Change|400218EA||| +261|2023-10-06T22:00:53.0670000-07:00|Change|400218E7||||||||| +24|2023-10-06T22:00:53.4930000-07:00|10FF000B|Pusu Rosu|HoT|0|AF0|79209|79209|7471|10000|||99.72|95.38|0.00|-1.56|10FF000B|Pusu Rosu|0|79209|79209|7471|10000|||99.72|95.38|0.00|-1.56| +21|2023-10-06T22:00:53.4930000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16688592|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|97.31|0.00|-0.11|00010CD1|0|1| +38|2023-10-06T22:00:53.4930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2850|10000|18||100.72|93.03|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:53.4930000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T22:00:53.4930000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8021|10000|11||99.72|95.38|0.00|-1.56|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:00:53.1570000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:00:53.5380000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|556003|86BE0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|16688592|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.79|98.04|-0.02|-0.02|00010CD2|0|1| +38|2023-10-06T22:00:53.5380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.79|98.04|-0.02|-0.02|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:53.5380000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T22:00:53.5830000-07:00|10FF000B|Pusu Rosu|00010CCB|79209|79209|8021|10000|11||99.74|95.63|0.00|-1.56|1802|0|0|01|0400074C|0|41A80000|| +26|2023-10-06T22:00:53.5830000-07:00|74C|Everlasting Flight|21.00|400218E7|Demi-Phoenix|10FF000B|Pusu Rosu|00|79209|77698| +38|2023-10-06T22:00:53.6280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4750|10000|11||99.99|99.29|0.00|0.16|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:53.6280000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T22:00:53.6730000-07:00|40021585|Zeromus|00010CCC|16647047||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:53.6730000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7EF|129071|129071|6900|10000|||100.25|89.51|0.00|3.02|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2850|10000|||100.72|93.04|0.00|-2.63| +38|2023-10-06T22:00:53.6730000-07:00|40021585|Zeromus|005A5A00|16647047|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:00:53.6730000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +38|2023-10-06T22:00:53.6730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|7||100.25|89.51|0.00|3.02|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:53.7180000-07:00|10FF0006|Wowobora Gogobora|00010CCB|81809|81809|4750|10000|11||99.96|99.86|0.00|0.10|1B03|0|0|01|074C|0|41A80000|| +26|2023-10-06T22:00:53.7180000-07:00|74C|Everlasting Flight|21.00|400218E7|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|77698| +39|2023-10-06T22:00:53.7610000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +38|2023-10-06T22:00:53.7620000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8021|10000|11||99.79|96.11|0.00|-1.56|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:53.7620000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +261|2023-10-06T22:00:53.4500000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:00:53.8520000-07:00|10FF0004|Buhojaqe Zijaqe|00010CCB|81541|81541|2850|10000|18||100.72|93.06|0.00|-1.22|1C04|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T22:00:53.8520000-07:00|74C|Everlasting Flight|21.00|400218E7|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|77698| +21|2023-10-06T22:00:53.8520000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|154003|53920000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16647047|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4750|10000|||99.95|100.02|0.00|0.04|00010CD3|0|1| +261|2023-10-06T22:00:53.4500000-07:00|Change|10FF0001||||||||| +38|2023-10-06T22:00:53.8970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||99.85|100.04|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:53.8970000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T22:00:53.9410000-07:00|40021585|Zeromus|00010CCF|16646974||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:53.5450000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:00:53.9860000-07:00|10FF0001|Sesuga Sapisuga|00010CCD|129071|129071|6900|10000|7||100.14|89.84|0.00|3.09|1300|0|0|01|030004A7|0|41A00000|| +26|2023-10-06T22:00:53.9860000-07:00|4A7|Rampart|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:00:53.9860000-07:00|10FF000A|Dukaro Nezikaro|00010CCB|83502|83502|10000|10000|18||99.91|100.43|0.00|3.12|1E05|0|0|01|0300074C|0|41A80000|| +26|2023-10-06T22:00:53.9860000-07:00|74C|Everlasting Flight|21.00|400218E7|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|83502|77698| +39|2023-10-06T22:00:53.9860000-07:00|10FF0003|Gegehi Gehi|73814|73814|5700|10000|||100.07|97.48|0.00|-0.03| +37|2023-10-06T22:00:54.0300000-07:00|40021585|Zeromus|00010CD1|16643236||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:54.0300000-07:00|10FF0007|Kehabiqo Febiqo|1D6B|Rampart|10FF0007|Kehabiqo Febiqo|EC0E|4A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.05|86.17|0.00|-3.13|129844|129844|10000|10000|||100.05|86.17|0.00|-3.13|00010CD4|0|1| +21|2023-10-06T22:00:54.0300000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1D4E0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|16646974|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.99|102.43|0.00|1.21|00010CD5|0|1| +21|2023-10-06T22:00:54.0300000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16646974|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.99|102.43|0.00|1.21|00010CD6|0|1| +37|2023-10-06T22:00:54.1190000-07:00|10FF0007|Kehabiqo Febiqo|00010CCB|129844|129844|10000|10000|0||100.05|86.17|0.00|-3.13|1506|0|0|01|0100074C|0|41A80000|| +26|2023-10-06T22:00:54.1190000-07:00|74C|Everlasting Flight|21.00|400218E7|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|77698| +39|2023-10-06T22:00:54.1190000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3050|10000|||100.45|94.59|0.00|-0.67| +37|2023-10-06T22:00:54.2080000-07:00|40021585|Zeromus|00010CD0|16628946||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:54.2540000-07:00|10FF0008|Kokosaze Lulusaze|00010CCB|90216|90216|10000|10000|10||99.99|102.48|0.00|3.14|1F07|0|0|01|0200074C|0|41A80000|| +26|2023-10-06T22:00:54.2540000-07:00|74C|Everlasting Flight|21.00|400218E7|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|77698| +37|2023-10-06T22:00:54.2980000-07:00|40021585|Zeromus|00010CD2|16594452||||||100.00|80.10|0.00|0.00| +26|2023-10-06T22:00:54.2990000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +22|2023-10-06T22:00:54.2990000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|FBA0F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3050|10000|||100.24|95.70|-0.02|-0.29|81541|81541|3050|10000|||100.24|95.70|-0.02|-0.29|00010CD7|0|1| +21|2023-10-06T22:00:54.2990000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|2B0C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16628946|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|3.12|00010CD8|0|1| +21|2023-10-06T22:00:54.3860000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16594452|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.05|86.19|0.00|-2.52|00010CD9|0|1| +20|2023-10-06T22:00:54.3860000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|100.07|99.20|0.00|0.02| +261|2023-10-06T22:00:53.9700000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:00:53.9700000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:00:54.0880000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T22:00:54.4310000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|36900000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|16594452|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||100.19|88.84|0.00|3.09|00010CDA|0|1| +38|2023-10-06T22:00:54.4310000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|7||100.19|88.84|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:54.4310000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T22:00:54.5200000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16594452|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|3050|10000|||100.20|95.92|0.00|-2.37|00010CDB|0|1| +261|2023-10-06T22:00:54.2850000-07:00|Change|400218E7||||||||| +37|2023-10-06T22:00:54.6540000-07:00|10FF0007|Kehabiqo Febiqo|00010CD4|129844|129844|10000|10000|0||100.05|86.23|0.00|-0.93|1500|0|0|01|020004A7|0|41A00000|| +26|2023-10-06T22:00:54.6540000-07:00|4A7|Rampart|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +24|2023-10-06T22:00:54.6540000-07:00|40021585|Zeromus|DoT|0|136E|16594452|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14| +21|2023-10-06T22:00:54.6540000-07:00|10FF0006|Wowobora Gogobora|64E6|Rekindle|10FF0007|Kehabiqo Febiqo|4|1CC00000|4B101E0E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.05|86.23|0.00|-0.93|81809|81809|4450|10000|||99.90|100.45|0.00|3.14|00010CDC|0|1| +21|2023-10-06T22:00:54.6540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|BA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16594452|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||100.25|87.50|0.00|3.10|00010CDD|0|1| +20|2023-10-06T22:00:54.6540000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.83|98.71|0.00|-0.09| +36|2023-10-06T22:00:54.6540000-07:00|7350|3| +38|2023-10-06T22:00:54.6540000-07:00|40021585|Zeromus|005A5A00|16589478|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +31|2023-10-06T22:00:54.6540000-07:00|10FF0001||||| +37|2023-10-06T22:00:54.7880000-07:00|40021585|Zeromus|00010CD5|16581976||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:54.7880000-07:00|40021585|Zeromus|00010CD6|16579718||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:54.9230000-07:00|40021585|Zeromus|00010CD9|16576894||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:54.9230000-07:00|40021585|Zeromus|00010CD3|16555500||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:54.9230000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|9E5|129844|129844|10000|10000|||99.90|88.02|0.00|-0.25|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67| +24|2023-10-06T22:00:54.9230000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|A03|129071|129071|6900|10000|||100.19|87.08|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67| +24|2023-10-06T22:00:54.9230000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|F74|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67| +24|2023-10-06T22:00:54.9230000-07:00|10FF0003|Gegehi Gehi|HoT|798|FC4|73814|73814|5700|10000|||100.08|99.57|-0.02|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67| +24|2023-10-06T22:00:54.9230000-07:00|10FF000B|Pusu Rosu|HoT|798|F52|79209|79209|8021|10000|||99.80|99.32|0.00|-1.78|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67| +24|2023-10-06T22:00:54.9230000-07:00|10FF0006|Wowobora Gogobora|HoT|798|F76|81809|81809|4450|10000|||99.90|100.45|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67| +24|2023-10-06T22:00:54.9230000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|979|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67| +24|2023-10-06T22:00:54.9230000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|98B|90216|90216|10000|10000|||100.24|101.30|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.14|96.15|0.00|-0.67| +37|2023-10-06T22:00:54.9230000-07:00|10FF0004|Buhojaqe Zijaqe|00010CD7|81541|81541|3050|10000|18||100.14|96.15|0.00|-0.67|1C00|0|0|02|06000798|0|41700000|||||| +26|2023-10-06T22:00:54.9230000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T22:00:54.9230000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:00:54.9230000-07:00|40021585|Zeromus|00010CD8|16544480||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:54.9230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.90|88.02|0.00|-0.25|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:54.9230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:00:54.9230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||100.24|101.30|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:00:54.9230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:00:54.9230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4450|10000|11||99.90|100.45|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:54.9230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:00:54.9230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|7||100.19|87.08|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:54.9230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:00:54.9230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3050|10000|18||100.14|96.15|0.00|-0.67|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:54.9230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5700|10000|12||100.08|99.57|-0.02|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:54.9230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:00:54.9230000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8021|10000|11||99.80|99.32|0.00|-1.78|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:54.9230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:00:54.9230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:54.9230000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T22:00:54.5630000-07:00|Change|10FF0003||||||||||||||||||||||| +37|2023-10-06T22:00:55.0560000-07:00|40021585|Zeromus|00010CDB|16544409||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:55.0560000-07:00|400218E7|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|152003|1FFA0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|16544480|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.45|95.27|0.00|1.35|00010CDE|0|1| +261|2023-10-06T22:00:54.5630000-07:00|Remove|400218DF| +261|2023-10-06T22:00:54.6820000-07:00|Add|400218EC||||||||||||||||||||||||||||| +04|2023-10-06T22:00:54.6820000-07:00|400218DF|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||97.83|88.61|0.00|1.41| +39|2023-10-06T22:00:55.1440000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.24|101.30|0.00|-3.11| +21|2023-10-06T22:00:55.1440000-07:00|10FF0008|Kokosaze Lulusaze|B47|Dismantle|40021585|Zeromus|F60E|35C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16544409|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|101.30|0.00|-3.11|00010CDF|0|1| +37|2023-10-06T22:00:55.1890000-07:00|40021585|Zeromus|00010CDD|16541432||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:55.1890000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|172B0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|16544409|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.77|89.50|0.00|-0.16|00010CE0|0|1| +20|2023-10-06T22:00:55.2340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.13|96.80|0.00|-0.25| +38|2023-10-06T22:00:55.3240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4450|10000|11||99.90|100.49|-0.02|2.86|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:55.3240000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:00:55.0190000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:00:55.0190000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:00:55.0190000-07:00|Remove|400218DD| +21|2023-10-06T22:00:55.4560000-07:00|40021585|Zeromus|8B38|Sable Thread|40021585|Zeromus|49|48000|1B|8B388000|0|0|0|0|0|0|0|0|0|0|0|0|16541432|40478540|10000|10000|||100.00|80.10|0.00|0.00|16541432|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010CE1|0|1| +261|2023-10-06T22:00:55.1350000-07:00|Change|40021585||||||||||||| +21|2023-10-06T22:00:55.5890000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|34720000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|16541432|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8021|10000|||99.78|99.63|0.00|3.13|00010CE2|0|1| +37|2023-10-06T22:00:55.6780000-07:00|10FF0007|Kehabiqo Febiqo|00010CDC|129844|129844|10000|10000|0||99.66|90.79|0.00|3.11|1500|0|0|01|06000A90|4B|41F00000|| +26|2023-10-06T22:00:55.6780000-07:00|A90|Rekindle|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|4B|129844|81809| +21|2023-10-06T22:00:55.6780000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42710003|33910000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|16541432|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010CE3|0|1| +21|2023-10-06T22:00:55.6780000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9670000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16541432|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010CE4|0|1| +37|2023-10-06T22:00:55.7240000-07:00|40021585|Zeromus|00010CE0|16535501||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:55.7240000-07:00|40021585|Zeromus|00010CDA|16521533||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:55.7240000-07:00|10FF0001|Sesuga Sapisuga|00010CDA|129071|129071|7300|10000|7||99.87|88.27|0.00|-0.17|1300|0|0|0| +261|2023-10-06T22:00:55.3210000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:00:55.7670000-07:00|40021585|Zeromus|00010CDF|16521533|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200035C|0|41200000|| +26|2023-10-06T22:00:55.7670000-07:00|35C|Dismantled|10.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|90216| +39|2023-10-06T22:00:55.8130000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7500|10000|||99.88|88.18|0.00|3.09| +21|2023-10-06T22:00:55.8130000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|452003|3B5B0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|16521533|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5700|10000|||100.08|99.57|0.00|-3.14|00010CE5|0|1| +38|2023-10-06T22:00:55.8130000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|12||100.08|99.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:55.8130000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:00:55.8130000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:00:55.8130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|7||99.88|88.18|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:55.8130000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T22:00:55.9470000-07:00|10FF0001|Sesuga Sapisuga|1CD9|Passage of Arms|10FF0001|Sesuga Sapisuga|4400640F|4978000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7500|10000|||99.88|88.04|0.00|3.09|129071|129071|7500|10000|||99.88|88.04|0.00|3.09|00010CE6|0|1| +261|2023-10-06T22:00:55.6080000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T22:00:56.0800000-07:00|40021585|Zeromus|00010CDE|16513347||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:00:56.0800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|75C|90216|90216|10000|10000|||100.26|101.49|0.00|0.96|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|FF3|129844|129844|10000|10000|||99.67|90.66|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|F61|129071|129071|7500|10000|||99.88|88.04|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1009|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF0003|Gegehi Gehi|HoT|798|FD9|73814|73814|5500|10000|||100.08|99.57|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF000B|Pusu Rosu|HoT|798|9F6|79209|79209|7621|10000|||99.78|99.63|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|9AD|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|F67|90216|90216|10000|10000|||100.26|101.49|0.00|0.96|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF0006|Wowobora Gogobora|HoT|798|FD9|81809|81809|4450|10000|||100.04|101.58|0.00|0.22|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +24|2023-10-06T22:00:56.0800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|CB4|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +38|2023-10-06T22:00:56.0800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.67|90.66|0.00|3.10|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:00:56.0800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|10||100.26|101.49|0.00|0.96|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:00:56.0800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4450|10000|11||100.04|101.58|0.00|0.22|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:56.0800000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|7||99.88|88.04|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:00:56.0800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3050|10000|18||100.05|99.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:56.0800000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|12||100.08|99.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:56.0800000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7621|10000|11||99.78|99.63|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:00:56.0800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||||||||| +22|2023-10-06T22:00:56.1240000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750605|44840000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7500|10000|||99.88|88.04|0.00|3.09|44|44|0|10000|||100.00|70.00|0.00|-0.01|00010CE7|0|8| +22|2023-10-06T22:00:56.1240000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|8BEB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.69|90.57|-0.01|3.09|44|44|0|10000|||100.00|70.00|0.00|-0.01|00010CE7|1|8| +22|2023-10-06T22:00:56.1240000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|1CA30000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14|44|44|0|10000|||100.00|70.00|0.00|-0.01|00010CE7|2|8| +22|2023-10-06T22:00:56.1240000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|30CE0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5500|10000|||100.08|99.57|0.00|-3.14|44|44|0|10000|||100.00|70.00|0.00|-0.01|00010CE7|3|8| +22|2023-10-06T22:00:56.1240000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750603|2F300000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7621|10000|||99.78|99.63|0.00|3.13|44|44|0|10000|||100.00|70.00|0.00|-0.01|00010CE7|4|8| +22|2023-10-06T22:00:56.1240000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750603|237D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|44|44|0|10000|||100.00|70.00|0.00|-0.01|00010CE7|5|8| +22|2023-10-06T22:00:56.1240000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|39B00000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.26|101.56|0.00|0.45|44|44|0|10000|||100.00|70.00|0.00|-0.01|00010CE7|6|8| +22|2023-10-06T22:00:56.1240000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|2EE90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|4450|10000|||100.05|101.70|0.00|-0.06|44|44|0|10000|||100.00|70.00|0.00|-0.01|00010CE7|7|8| +24|2023-10-06T22:00:56.1680000-07:00|10FF0006|Wowobora Gogobora|HoT|0|7B8|81809|81809|4450|10000|||100.05|101.70|0.00|-0.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14| +21|2023-10-06T22:00:56.1680000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|39CF0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16513347|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|3050|10000|||100.05|99.57|0.00|-3.14|00010CE8|0|1| +38|2023-10-06T22:00:56.1680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4450|10000|11||100.05|101.70|0.00|-0.06|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:56.2130000-07:00|40021585|Zeromus|00010CE4|16510940||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:56.2130000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4650|10000|||100.05|101.70|0.00|-0.06| +261|2023-10-06T22:00:55.8360000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:00:56.3010000-07:00|40021585|Zeromus|00010CE3|16497739||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:56.3460000-07:00|10FF000B|Pusu Rosu|79209|79209|7902|10000|||99.78|99.62|0.00|3.14| +39|2023-10-06T22:00:56.3460000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14| +21|2023-10-06T22:00:56.3460000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|3FC10000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16497739|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4650|10000|||100.05|101.70|0.00|-0.06|00010CE9|0|1| +24|2023-10-06T22:00:56.3910000-07:00|10FF0003|Gegehi Gehi|HoT|0|C95|73814|73814|5500|10000|||100.08|99.57|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||100.05|99.57|0.00|-3.14| +21|2023-10-06T22:00:56.3910000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16497739|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5500|10000|||100.08|99.57|0.00|-3.14|00010CEA|0|1| +38|2023-10-06T22:00:56.3910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5500|10000|12||100.08|99.57|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:00:56.0770000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:00:56.0770000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:00:56.4360000-07:00|10FF0001|Sesuga Sapisuga|00010CE7|111531|129071|7500|10000|0||99.88|88.04|0.00|3.09|1300|0|0|01|0E000000|0|0|| +24|2023-10-06T22:00:56.4360000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|797|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||100.05|99.57|0.00|-3.14| +38|2023-10-06T22:00:56.4360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111531|129071|7500|10000|0||99.88|88.04|0.00|3.09|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:56.4360000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:00:56.4360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|18||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:00:56.4800000-07:00|10FF0007|Kehabiqo Febiqo|00010CE7|94025|129844|10000|10000|0||99.69|90.56|0.00|3.09|1501|0|0|01|06000A90|4B|0|| +39|2023-10-06T22:00:56.4800000-07:00|10FF0007|Kehabiqo Febiqo|95323|129844|10000|10000|||99.69|90.56|0.00|3.09| +24|2023-10-06T22:00:56.4800000-07:00|10FF000B|Pusu Rosu|HoT|0|783|79209|79209|7902|10000|||99.78|99.60|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|7902|10000|||99.78|99.60|0.00|-3.12| +38|2023-10-06T22:00:56.4800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|95323|129844|10000|10000|0||99.69|90.56|0.00|3.09|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:00:56.4800000-07:00|A90|Rekindle|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|4B|129844|81809| +26|2023-10-06T22:00:56.4800000-07:00|A91|Undying Flame|15.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T22:00:56.4800000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8452|10000|11||99.78|99.60|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:00:56.5240000-07:00|10FF0004|Buhojaqe Zijaqe|00010CE7|74210|81541|2650|10000|0||100.05|99.57|0.00|-3.14|1C02|0|0|01|08000000|0|0|| +21|2023-10-06T22:00:56.5250000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2DC90000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|16497739|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|101.61|0.00|1.08|00010CEB|0|1| +38|2023-10-06T22:00:56.5250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|74210|81541|2650|10000|0||100.05|99.57|0.00|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:56.5250000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:00:56.5690000-07:00|10FF0003|Gegehi Gehi|00010CE7|61320|73814|5500|10000|0||100.08|99.62|0.00|2.13|2303|0|0|01|08000000|0|0|| +21|2023-10-06T22:00:56.5690000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14CD0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|95323|129844|10000|10000|||99.69|90.56|0.00|3.09|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10|00010CEC|0|1| +24|2023-10-06T22:00:56.5690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1DBA|95323|129844|10000|10000|||99.69|90.56|0.00|3.09|10FF0006|Wowobora Gogobora|0|81809|81809|4350|10000|||100.05|101.70|0.00|-3.14| +21|2023-10-06T22:00:56.5690000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16497739|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4350|10000|||100.05|101.70|0.00|-3.14|00010CED|0|1| +38|2023-10-06T22:00:56.5690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102933|129844|10000|10000|0||99.69|90.56|0.00|3.09|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:00:56.5690000-07:00|10FF0003|Gegehi Gehi|005A5A23|61320|73814|5500|10000|0||100.08|99.62|0.00|2.13|0|0|0|||||||||||||||| +30|2023-10-06T22:00:56.5690000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:00:56.6150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102933|129844|10000|10000|0||99.69|90.56|0.00|3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:56.6150000-07:00|498|Arms Up|5.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +37|2023-10-06T22:00:56.6150000-07:00|10FF0001|Sesuga Sapisuga|00010CE6|111531|129071|7500|10000|0||99.88|88.04|0.00|3.09|1300|0|0|01|05000497|1444|41900000|| +26|2023-10-06T22:00:56.6150000-07:00|497|Passage of Arms|18.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|129071|129071| +37|2023-10-06T22:00:56.6150000-07:00|10FF000B|Pusu Rosu|00010CE7|67129|79209|8452|10000|0||99.77|99.41|0.00|-3.09|1804|0|0|02|02000A95|04|41864FD9|||||| +26|2023-10-06T22:00:56.6150000-07:00|A95|Liturgy of the Bell|16.79|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|04|79209|79209| +37|2023-10-06T22:00:56.6150000-07:00|40021585|Zeromus|00010CE5|16482544||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:00:56.6150000-07:00|10FF000B|Pusu Rosu|005A5A18|67129|79209|8452|10000|0||99.77|99.41|0.00|-3.09|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:00:56.6150000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +37|2023-10-06T22:00:56.6580000-07:00|10FF000A|Dukaro Nezikaro|00010CE7|74417|83502|10000|10000|0||100.02|101.18|0.00|-3.14|1E05|0|0|01|07000000|0|0|| +22|2023-10-06T22:00:56.6580000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|200004|4B3A0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8452|10000|||99.77|99.41|0.00|-3.09|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CEE|0|8| +22|2023-10-06T22:00:56.6580000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|30380000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|74210|81541|2650|10000|||100.05|99.57|0.00|-3.14|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CEE|1|8| +22|2023-10-06T22:00:56.6580000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|2F3D0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|61320|73814|5500|10000|||100.08|99.68|-0.02|1.51|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CEE|2|8| +22|2023-10-06T22:00:56.6580000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|2F9A0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CEE|3|8| +22|2023-10-06T22:00:56.6580000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|30420000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|4350|10000|||100.05|101.70|0.00|-3.14|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CEE|4|8| +22|2023-10-06T22:00:56.6580000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|31080000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.27|101.61|0.00|-3.13|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CEE|5|8| +22|2023-10-06T22:00:56.6580000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|2FE90000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|102933|129844|10000|10000|||99.69|90.56|0.00|3.09|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CEE|6|8| +22|2023-10-06T22:00:56.6580000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|300C0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|111531|129071|7500|10000|||99.88|88.04|0.00|3.09|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CEE|7|8| +38|2023-10-06T22:00:56.6580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102933|129844|10000|10000|0||99.69|90.56|0.00|3.09|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:00:56.6580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|7A1|111531|129071|7500|10000|||99.88|88.04|0.00|3.09|10FF0001|Sesuga Sapisuga|0|111531|129071|7500|10000|||99.88|88.04|0.00|3.09| +38|2023-10-06T22:00:56.6580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113484|129071|7500|10000|0||99.88|88.04|0.00|3.09|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:00:56.6580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74417|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||| +30|2023-10-06T22:00:56.6580000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:00:56.7030000-07:00|10FF0008|Kokosaze Lulusaze|00010CE7|75448|90216|10000|10000|0||100.27|101.61|0.00|-3.13|1F06|0|0|01|06000000|0|0|| +21|2023-10-06T22:00:56.7030000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16497739|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|101.61|0.00|-3.13|00010CEF|0|1| +38|2023-10-06T22:00:56.7030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|75448|90216|10000|10000|0||100.27|101.61|0.00|-3.13|0|0|0||||||||||||| +30|2023-10-06T22:00:56.7030000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +261|2023-10-06T22:00:56.2620000-07:00|Change|10FF0006||||| +37|2023-10-06T22:00:56.7470000-07:00|10FF0006|Wowobora Gogobora|00010CE7|69800|81809|4350|10000|0||100.05|101.70|0.00|-3.14|1B07|0|0|01|0A000000|0|0|| +261|2023-10-06T22:00:56.3630000-07:00|Change|10FF0001||||||| +39|2023-10-06T22:00:56.7470000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.09| +38|2023-10-06T22:00:56.7470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69800|81809|4350|10000|0||100.05|101.70|0.00|-3.14|0|0|0||||||||||||| +30|2023-10-06T22:00:56.7470000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +21|2023-10-06T22:00:56.8360000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|40370000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|16482544|40478540|10000|10000|||100.00|80.10|0.00|0.00|61320|73814|5500|10000|||100.08|99.75|0.00|1.14|00010CF0|0|1| +38|2023-10-06T22:00:56.8360000-07:00|10FF0003|Gegehi Gehi|005A5A23|61320|73814|5200|10000|0||100.08|99.75|0.00|1.14|0|0|0|||||||||||||||| +30|2023-10-06T22:00:56.8360000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:00:56.8800000-07:00|40021585|Zeromus|00010CE2|16469118||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:56.9250000-07:00|40021585|Zeromus|00010CEA|16469117||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:56.9250000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|2BC30000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|16482544|40478540|10000|10000|||100.00|80.10|0.00|0.00|113484|129071|7500|10000|||99.88|88.04|0.00|3.13|00010CF1|0|1| +21|2023-10-06T22:00:56.9250000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16482544|40478540|10000|10000|||100.00|80.10|0.00|0.00|113484|129071|7500|10000|||99.88|88.04|0.00|3.13|00010CF2|0|1| +38|2023-10-06T22:00:56.9250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113484|129071|7500|10000|0||99.88|88.04|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:00:56.9250000-07:00|497|Passage of Arms|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1444|129071|129071| +26|2023-10-06T22:00:56.9250000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:00:56.9250000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T22:00:56.9250000-07:00|10FF0001||||| +37|2023-10-06T22:00:56.9680000-07:00|40021585|Zeromus|00010CE8|16454318||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:56.9680000-07:00|10FF0003|Gegehi Gehi|62058|73814|5400|10000|||100.08|99.84|0.00|-3.14| +261|2023-10-06T22:00:56.5550000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:00:57.0560000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16469117|40478540|10000|10000|||100.00|80.10|0.00|0.00|16469117|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010CF3|0|1| +37|2023-10-06T22:00:57.1020000-07:00|40021585|Zeromus|00010CED|16454185||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:57.1020000-07:00|10FF000B|Pusu Rosu|00010CEE|79209||||||99.75|99.17|0.00|-3.05| +39|2023-10-06T22:00:57.1020000-07:00|10FF0004|Buhojaqe Zijaqe|75025|81541|2850|10000|||100.05|99.56|0.00|3.13| +20|2023-10-06T22:00:57.1020000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.75|99.17|0.00|-3.05| +21|2023-10-06T22:00:57.1910000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|A60F|A788000|0|0|0|0|0|0|0|0|0|0|102933|129844|10000|10000|||99.69|90.56|0.00|3.09|102933|129844|10000|10000|||99.69|90.56|0.00|3.09|00010CF4|0|1| +37|2023-10-06T22:00:57.2360000-07:00|10FF0004|Buhojaqe Zijaqe|00010CEE|81541||||||100.05|99.55|0.00|3.12| +37|2023-10-06T22:00:57.3250000-07:00|40021585|Zeromus|00010CEB|16442464||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:57.3690000-07:00|10FF0007|Kehabiqo Febiqo|00010CEC|108258||||||99.69|90.56|0.00|3.09| +37|2023-10-06T22:00:57.3690000-07:00|10FF0003|Gegehi Gehi|00010CEE|73814||||||100.08|99.96|0.00|-3.14| +39|2023-10-06T22:00:57.3690000-07:00|400218E7|Demi-Phoenix|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05| +37|2023-10-06T22:00:57.4140000-07:00|40021585|Zeromus|00010CE9|16426143||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:57.0160000-07:00|Change|10FF0004||||||| +37|2023-10-06T22:00:57.4590000-07:00|40021585|Zeromus|00010CEF|16421293||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:00:57.0160000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:00:57.4590000-07:00|40021585|Zeromus|00010CF2|16418329||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:57.4590000-07:00|10FF0001|Sesuga Sapisuga|00010CF2|113484|129071|7500|10000|0||99.88|88.04|0.00|3.13|1300|0|0|02|0500076E|03|C1F00000|||||| +37|2023-10-06T22:00:57.5040000-07:00|40021585|Zeromus|00010CF1|16407126||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:57.5040000-07:00|10FF0001|Sesuga Sapisuga|00010CF1|113484|129071|7500|10000|0||99.88|88.04|0.00|3.13|1300|0|0|02|0500076E|03|41F00000|||||| +37|2023-10-06T22:00:57.5040000-07:00|10FF000A|Dukaro Nezikaro|00010CEE|83502||||||100.02|101.18|0.00|-3.14| +21|2023-10-06T22:00:57.5040000-07:00|10FF000A|Dukaro Nezikaro|1D7D|Feint|40021585|Zeromus|FBF60E|4AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16418329|40478540|10000|10000|||100.00|80.10|0.00|0.00|74417|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010CF5|0|1| +38|2023-10-06T22:00:57.5040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113484|129071|7500|10000|0||99.88|88.04|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:00:57.5920000-07:00|40021585|Zeromus|00010CF0|16390687||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:57.6370000-07:00|10FF0006|Wowobora Gogobora|00010CEE|81809||||||100.05|101.70|0.00|-3.14| +21|2023-10-06T22:00:57.6370000-07:00|10FF0001|Sesuga Sapisuga|6492|Holy Sheltron|10FF0001|Sesuga Sapisuga|F10F|A728000|F10F|A738000|13A90F|A748000|0|0|0|0|0|0|0|0|0|0|113484|129071|7500|10000|||99.88|88.04|0.00|3.13|113484|129071|7500|10000|||99.88|88.04|0.00|3.13|00010CF6|0|1| +20|2023-10-06T22:00:57.6370000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.05|99.28|0.00|3.10| +38|2023-10-06T22:00:57.6370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|113484|129071|7500|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:57.6370000-07:00|A72|Holy Sheltron|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T22:00:57.6370000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T22:00:57.6370000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T22:00:57.6370000-07:00|10FF0001||||| +21|2023-10-06T22:00:57.6820000-07:00|400218E7|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|150003|14220000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|16390687|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05|00010CF7|0|1| +261|2023-10-06T22:00:57.3210000-07:00|Change|10FF000B||||||||||| +24|2023-10-06T22:00:57.6820000-07:00|40021585|Zeromus|DoT|0|1365|16390687|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14| +36|2023-10-06T22:00:57.6820000-07:00|742C|3| +38|2023-10-06T22:00:57.6820000-07:00|40021585|Zeromus|005A5A00|16385722|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T22:00:57.3210000-07:00|Change|400215A2||||||||| +22|2023-10-06T22:00:57.7260000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|60000000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|113484|129071|7500|10000|||99.88|88.04|0.00|3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|00010CF8|0|8| +22|2023-10-06T22:00:57.7260000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|738F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|108258|129844|10000|10000|||99.69|90.56|0.00|3.09|44|44|0|10000|||100.00|100.00|0.00|0.00|00010CF8|1|8| +22|2023-10-06T22:00:57.7260000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750003|5A430000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8452|10000|||99.75|99.17|0.00|3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|00010CF8|2|8| +22|2023-10-06T22:00:57.7260000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|54310000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2850|10000|||100.05|99.26|0.00|3.11|44|44|0|10000|||100.00|100.00|0.00|0.00|00010CF8|3|8| +22|2023-10-06T22:00:57.7260000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|52350000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5400|10000|||100.08|99.96|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00010CF8|4|8| +22|2023-10-06T22:00:57.7260000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|60910000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00010CF8|5|8| +22|2023-10-06T22:00:57.7260000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|5B910000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|75448|90216|10000|10000|||100.27|101.61|0.00|-3.13|44|44|0|10000|||100.00|100.00|0.00|0.00|00010CF8|6|8| +22|2023-10-06T22:00:57.7260000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|52B20000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|4350|10000|||100.05|101.70|0.00|-3.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00010CF8|7|8| +37|2023-10-06T22:00:57.7710000-07:00|10FF0007|Kehabiqo Febiqo|00010CF4|108258|129844|10000|10000|7||99.69|90.56|0.00|3.09|1500|0|0|03|08000A76|0190|41000000|||||||||| +26|2023-10-06T22:00:57.7710000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T22:00:57.7710000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:00:57.7710000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:00:57.7710000-07:00|10FF0008|Kokosaze Lulusaze|00010CEE|88000||||||100.27|101.61|0.00|-3.13| +21|2023-10-06T22:00:57.7710000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B5D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16390687|40478540|10000|10000|||100.00|80.10|0.00|0.00|108258|129844|10000|10000|||99.69|90.56|0.00|3.09|00010CF9|0|1| +38|2023-10-06T22:00:57.7710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108258|129844|10000|10000|7||99.69|90.56|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T22:00:57.8160000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22500000|A3E|340000|4|26108000|11B|258000|0|0|0|0|0|0|0|0|16385722|40478540|10000|10000|||100.00|80.10|0.00|0.00|108258|129844|10000|10000|||99.69|90.56|0.00|3.09|00010CFA|0|1| +21|2023-10-06T22:00:57.8600000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|EFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16385722|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010CFB|0|1| +37|2023-10-06T22:00:57.9040000-07:00|10FF0007|Kehabiqo Febiqo|00010CEE|120523||||||99.69|90.56|0.00|3.09| +37|2023-10-06T22:00:58.0400000-07:00|10FF0001|Sesuga Sapisuga|00010CF8|88908||||||99.88|88.04|0.00|3.13| +37|2023-10-06T22:00:58.0400000-07:00|10FF0001|Sesuga Sapisuga|00010CEE|101208||||||99.88|88.04|0.00|3.13| +37|2023-10-06T22:00:58.0400000-07:00|40021585|Zeromus|00010CF5|16385722|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004AB|0|41200000|| +26|2023-10-06T22:00:58.0400000-07:00|4AB|Feint|10.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +21|2023-10-06T22:00:58.0400000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|30480000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|16385722|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8452|10000|||99.75|99.17|0.00|3.13|00010CFC|0|1| +37|2023-10-06T22:00:58.0830000-07:00|10FF0007|Kehabiqo Febiqo|00010CF8|90940||||||99.69|90.56|0.00|3.11| +37|2023-10-06T22:00:58.1290000-07:00|10FF000B|Pusu Rosu|00010CF8|56102|79209|8052|10000|0||99.75|99.17|0.00|3.13|1802|0|0|01|02000A95|03|41746654|| +26|2023-10-06T22:00:58.1290000-07:00|A95|Liturgy of the Bell|15.27|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|03|79209|79209| +38|2023-10-06T22:00:58.1290000-07:00|10FF000B|Pusu Rosu|005A5A18|56102|79209|8052|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:00:58.1740000-07:00|10FF0004|Buhojaqe Zijaqe|00010CF8|59988||||||100.05|99.20|0.00|-3.14| +22|2023-10-06T22:00:58.1740000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|2FCD0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|56102|79209|8052|10000|||99.75|99.17|0.00|3.13|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CFD|0|8| +22|2023-10-06T22:00:58.1740000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|2FB80000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2850|10000|||100.05|99.20|0.00|-3.14|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CFD|1|8| +22|2023-10-06T22:00:58.1740000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|2EC60000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5400|10000|||100.08|99.96|0.00|-3.14|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CFD|2|8| +22|2023-10-06T22:00:58.1740000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|2FB50000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CFD|3|8| +22|2023-10-06T22:00:58.1740000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|30520000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|4350|10000|||100.05|101.70|0.00|-3.14|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CFD|4|8| +22|2023-10-06T22:00:58.1740000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|2EC90000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|88000|90216|10000|10000|||100.27|101.61|0.00|-3.13|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CFD|5|8| +22|2023-10-06T22:00:58.1740000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|200004|47270000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|90940|129844|10000|10000|||99.69|90.56|0.00|3.11|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CFD|6|8| +22|2023-10-06T22:00:58.1740000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|2FDA0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|101208|129071|7500|10000|||99.88|88.04|0.00|3.13|72984|75049|10000|10000|||95.31|96.36|0.00|1.58|00010CFD|7|8| +39|2023-10-06T22:00:58.1740000-07:00|10FF0008|Kokosaze Lulusaze|88902|90216|10000|10000|||100.27|101.61|0.00|-3.13| +37|2023-10-06T22:00:58.2170000-07:00|10FF0003|Gegehi Gehi|00010CF8|52769||||||100.08|99.96|0.00|-3.14| +37|2023-10-06T22:00:58.2620000-07:00|10FF000A|Dukaro Nezikaro|00010CF8|58781||||||100.02|101.18|0.00|-3.14| +21|2023-10-06T22:00:58.2620000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010CFE|0|1| +38|2023-10-06T22:00:58.2620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58781|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:58.2620000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T22:00:58.3060000-07:00|40021585|Zeromus|00010CF9|16382813||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:58.3060000-07:00|10FF0008|Kokosaze Lulusaze|00010CF8|65461||||||100.27|101.61|0.00|-3.13| +37|2023-10-06T22:00:58.3500000-07:00|10FF0006|Wowobora Gogobora|00010CF8|60639||||||100.05|101.70|0.00|-3.14| +37|2023-10-06T22:00:58.3950000-07:00|40021585|Zeromus|00010CFB|16378976||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:58.4400000-07:00|40021585|Zeromus|00010CFA|16370192||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:58.4400000-07:00|10FF0007|Kehabiqo Febiqo|00010CFA|100684||||||99.69|90.56|0.00|3.11| +21|2023-10-06T22:00:58.4400000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16382813|40478540|10000|10000|||100.00|80.10|0.00|0.00|16382813|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010CFF|0|1| +21|2023-10-06T22:00:58.4400000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|90940|129844|10000|10000|||99.69|90.56|0.00|3.11|16382813|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D00|0|1| +261|2023-10-06T22:00:58.0810000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T22:00:58.5730000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|25610000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|16370192|40478540|10000|10000|||100.00|80.10|0.00|0.00|59988|81541|2850|10000|||100.05|99.20|0.00|-3.14|00010D01|0|1| +37|2023-10-06T22:00:58.6170000-07:00|10FF000B|Pusu Rosu|00010CFD|68339||||||99.75|99.17|0.00|3.13| +37|2023-10-06T22:00:58.7060000-07:00|40021585|Zeromus|00010CF7|16365038||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:58.7500000-07:00|10FF0004|Buhojaqe Zijaqe|00010CFD|72204||||||100.05|99.20|0.00|-3.14| +21|2023-10-06T22:00:58.7500000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|58781|83502|10000|10000|||100.02|101.18|0.00|-3.14|58781|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D02|0|1| +38|2023-10-06T22:00:58.7500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58781|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:58.7500000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +261|2023-10-06T22:00:58.3660000-07:00|Change|10FF000B||||||||||||||| +39|2023-10-06T22:00:58.7940000-07:00|10FF0001|Sesuga Sapisuga|102498|129071|7700|10000|||99.88|88.04|0.00|3.13| +21|2023-10-06T22:00:58.7940000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|154003|53790000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16370192|40478540|10000|10000|||100.00|80.10|0.00|0.00|60639|81809|4350|10000|||100.05|101.70|0.00|-3.14|00010D03|0|1| +261|2023-10-06T22:00:58.3660000-07:00|Change|10FF0006||| +261|2023-10-06T22:00:58.3660000-07:00|Change|10FF0001||||| +37|2023-10-06T22:00:58.8830000-07:00|10FF0003|Gegehi Gehi|00010CFD|64743||||||100.08|99.96|0.00|-3.14| +37|2023-10-06T22:00:59.0170000-07:00|10FF000A|Dukaro Nezikaro|00010CFD|70994||||||100.02|101.18|0.00|-3.14| +21|2023-10-06T22:00:59.0170000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3CB80000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|16365038|40478540|10000|10000|||100.00|80.10|0.00|0.00|65461|90216|10000|10000|||100.24|100.93|0.00|-3.11|00010D04|0|1| +24|2023-10-06T22:00:59.0610000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|795|65461|90216|10000|10000|||100.24|100.90|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|988|100684|129844|10000|10000|||99.69|90.56|0.00|3.11|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|9F0|102498|129071|7700|10000|||99.88|88.04|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF000B|Pusu Rosu|HoT|798|FF8|68339|79209|8052|10000|||99.75|99.17|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|FC5|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF0003|Gegehi Gehi|HoT|798|9C1|64743|73814|5400|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|9A2|65461|90216|10000|10000|||100.24|100.90|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|FB7|70994|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF0006|Wowobora Gogobora|HoT|798|9E2|60639|81809|4050|10000|||100.05|101.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +24|2023-10-06T22:00:59.0610000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|C13|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|72204|81541|2450|10000|||100.05|99.20|0.00|-3.14| +38|2023-10-06T22:00:59.0610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103124|129844|10000|10000|7||99.69|90.56|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:59.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:00:59.0610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|69868|90216|10000|10000|0||100.24|100.90|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T22:00:59.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:00:59.0610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|63169|81809|4050|10000|0||100.05|101.70|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T22:00:59.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:00:59.0610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105042|129071|7700|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:00:59.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:00:59.0610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79332|81541|2450|10000|0||100.05|99.20|0.00|-3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:00:59.0610000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:00:59.0610000-07:00|10FF0003|Gegehi Gehi|005A5A23|67240|73814|5400|10000|0||100.08|99.96|0.00|-3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:00:59.0610000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:00:59.0610000-07:00|10FF000B|Pusu Rosu|005A5A18|72427|79209|8052|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:00:59.0610000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:00:59.0610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75017|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:59.0610000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +22|2023-10-06T22:00:59.1050000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|5BBD0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|105042|129071|7700|10000|||99.88|88.04|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D05|0|8| +22|2023-10-06T22:00:59.1050000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750303|50430000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|103124|129844|10000|10000|||99.69|90.57|0.00|-2.91|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D05|1|8| +22|2023-10-06T22:00:59.1050000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750003|55220000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|72427|79209|8052|10000|||99.75|99.17|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D05|2|8| +22|2023-10-06T22:00:59.1050000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|4F5D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|79332|81541|2450|10000|||100.05|99.20|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D05|3|8| +22|2023-10-06T22:00:59.1050000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|540F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|67240|73814|5400|10000|||100.08|99.96|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D05|4|8| +22|2023-10-06T22:00:59.1050000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|54E20000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|69868|90216|10000|10000|||100.24|100.88|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D05|5|8| +22|2023-10-06T22:00:59.1050000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|59BB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|75017|83502|10000|10000|||100.02|101.18|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D05|6|8| +22|2023-10-06T22:00:59.1050000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|537E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|63169|81809|4050|10000|||100.05|101.70|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D05|7|8| +21|2023-10-06T22:00:59.1050000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79332|81541|2450|10000|||100.05|99.20|0.00|-3.14|79332|81541|2450|10000|||100.05|99.20|0.00|-3.14|00010D06|0|1| +37|2023-10-06T22:00:59.1500000-07:00|10FF0006|Wowobora Gogobora|00010CFD|75539||||||100.05|101.70|0.00|-3.14| +24|2023-10-06T22:00:59.1500000-07:00|10FF0006|Wowobora Gogobora|HoT|0|78C|63169|81809|4050|10000|||100.05|101.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|79332|81541|2450|10000|||100.05|99.20|0.00|-3.14| +38|2023-10-06T22:00:59.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77471|81809|4050|10000|0||100.05|101.70|0.00|-3.14|0|0|0||||||||||||| +39|2023-10-06T22:00:59.1950000-07:00|10FF0006|Wowobora Gogobora|78289|81809|4250|10000|||100.05|101.70|0.00|-3.14| +21|2023-10-06T22:00:59.1950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16365038|40478540|10000|10000|||100.00|80.10|0.00|0.00|105042|129071|7700|10000|||99.88|88.04|0.00|3.13|00010D07|0|1| +31|2023-10-06T22:00:59.1950000-07:00|10FF0001||||| +37|2023-10-06T22:00:59.2400000-07:00|10FF0007|Kehabiqo Febiqo|00010D00|103124|129844|10000|10000|0||99.69|90.57|0.00|-2.91|1500|0|0|01|0A000000|0|0|| +20|2023-10-06T22:00:59.2400000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|100.08|99.96|0.00|-3.14| +21|2023-10-06T22:00:59.2400000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|552003|82840000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|16365038|40478540|10000|10000|||100.00|80.10|0.00|0.00|75017|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D08|0|1| +38|2023-10-06T22:00:59.2400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103124|129844|10000|10000|0||99.69|90.57|0.00|-2.91|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:59.2400000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:00:59.2400000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|75017|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:00:59.2400000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:00:59.2400000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:00:58.7770000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T22:00:59.2840000-07:00|10FF0008|Kokosaze Lulusaze|00010CFD|81845||||||100.24|100.86|-0.01|-3.13| +261|2023-10-06T22:00:58.8980000-07:00|Change|10FF0006||| +37|2023-10-06T22:00:59.3730000-07:00|40021585|Zeromus|00010D01|16355469||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:59.3730000-07:00|40021585|Zeromus|00010CFC|16343109||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:00:59.3730000-07:00|10FF000B|Pusu Rosu|73219|79209|8333|10000|||99.75|99.17|0.00|3.13| +39|2023-10-06T22:00:59.3730000-07:00|400218EA|Liturgic Bell|75049|75049|10000|10000|||95.31|96.36|0.00|1.58| +39|2023-10-06T22:00:59.3730000-07:00|10FF000A|Dukaro Nezikaro|75852|83502|10000|10000|||100.02|101.18|0.00|-3.14| +24|2023-10-06T22:00:59.3730000-07:00|10FF0003|Gegehi Gehi|HoT|0|791|67240|73814|5400|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|79332|81541|2450|10000|||100.05|99.19|0.00|3.13| +21|2023-10-06T22:00:59.3730000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|92C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16365038|40478540|10000|10000|||100.00|80.10|0.00|0.00|81845|90216|10000|10000|||100.24|100.85|-0.02|-3.13|00010D09|0|1| +38|2023-10-06T22:00:59.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|69177|73814|5400|10000|0||100.08|99.96|0.00|-3.14|0|0|0|||||||||||||||| +37|2023-10-06T22:00:59.4170000-07:00|10FF0001|Sesuga Sapisuga|00010D05|81557||||||99.88|88.04|0.00|3.13| +37|2023-10-06T22:00:59.4170000-07:00|10FF0007|Kehabiqo Febiqo|00010CFD|121339||||||99.70|90.68|0.00|-2.20| +24|2023-10-06T22:00:59.4170000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|76E|75017|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|79332|81541|2450|10000|||100.05|99.19|0.00|3.13| +21|2023-10-06T22:00:59.4170000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2FAA0000|4|29198000|0|0|0|0|0|0|0|0|0|0|0|0|16365038|40478540|10000|10000|||100.00|80.10|0.00|0.00|105042|129071|7700|10000|||99.88|88.04|0.00|3.13|00010D0A|0|1| +38|2023-10-06T22:00:59.4170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|81557|129071|6700|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:00:59.4170000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T22:00:59.4170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77754|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +37|2023-10-06T22:00:59.4610000-07:00|10FF0007|Kehabiqo Febiqo|00010D05|100792||||||99.73|90.85|0.00|-1.95| +39|2023-10-06T22:00:59.4610000-07:00|10FF0007|Kehabiqo Febiqo|102090|129844|10000|10000|||99.73|90.85|0.00|-1.95| +24|2023-10-06T22:00:59.4610000-07:00|10FF000B|Pusu Rosu|HoT|0|BF6|73219|79209|8333|10000|||99.75|99.17|0.00|3.13|10FF000B|Pusu Rosu|0|73219|79209|8333|10000|||99.75|99.17|0.00|3.13| +38|2023-10-06T22:00:59.4610000-07:00|10FF000B|Pusu Rosu|005A5A18|76281|79209|8883|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:00:59.1280000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:00:59.5050000-07:00|10FF000B|Pusu Rosu|00010D05|54487||||||99.75|99.17|0.00|3.13| +37|2023-10-06T22:00:59.5490000-07:00|10FF0004|Buhojaqe Zijaqe|00010D05|59015||||||100.06|99.16|0.00|3.12| +37|2023-10-06T22:00:59.5490000-07:00|10FF0001|Sesuga Sapisuga|00010CFD|93807||||||99.88|88.04|0.00|3.13| +24|2023-10-06T22:00:59.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|19B0|121339|129844|10000|10000|||99.73|90.85|0.00|-1.95|10FF0007|Kehabiqo Febiqo|0|121339|129844|10000|10000|||99.73|90.85|0.00|-1.95| +38|2023-10-06T22:00:59.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108666|129844|10000|10000|0||99.73|90.85|0.00|-1.95|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:00:59.5950000-07:00|10FF0003|Gegehi Gehi|00010D05|47658||||||100.08|99.96|0.00|-3.14| +22|2023-10-06T22:00:59.5950000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|324D0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|00010D0B|0|8| +22|2023-10-06T22:00:59.5950000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|31C30000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|59015|81541|2450|10000|||100.07|99.05|0.00|3.10|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|00010D0B|1|8| +22|2023-10-06T22:00:59.5950000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|32220000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|69177|73814|5400|10000|||100.08|99.96|0.00|-3.14|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|00010D0B|2|8| +22|2023-10-06T22:00:59.5950000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|328E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81845|90216|10000|10000|||100.24|100.85|0.00|-3.13|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|00010D0B|3|8| +22|2023-10-06T22:00:59.5950000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|304F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|77754|83502|10000|10000|||100.02|101.18|0.00|-3.14|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|00010D0B|4|8| +22|2023-10-06T22:00:59.5950000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|31550000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|78289|81809|4250|10000|||100.05|101.70|0.00|-3.14|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|00010D0B|5|8| +22|2023-10-06T22:00:59.5950000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|32710000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|108666|129844|10000|10000|||99.77|91.13|0.00|-1.53|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|00010D0B|6|8| +22|2023-10-06T22:00:59.5950000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|2FF60000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|93807|129071|6700|10000|||99.88|88.04|0.00|3.13|54487|79209|8883|10000|||99.75|99.17|0.00|3.13|00010D0B|7|8| +37|2023-10-06T22:00:59.6400000-07:00|10FF0008|Kokosaze Lulusaze|00010D05|60115||||||100.24|100.85|0.00|-3.13| +24|2023-10-06T22:00:59.6400000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|203A|93807|129071|6700|10000|||99.88|88.04|0.00|3.13|10FF0001|Sesuga Sapisuga|0|93807|129071|6700|10000|||99.88|88.04|0.00|3.13| +21|2023-10-06T22:00:59.6400000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16343109|40478540|10000|10000|||100.00|80.10|0.00|0.00|59015|81541|2450|10000|||100.07|99.05|0.00|3.10|00010D0C|0|1| +38|2023-10-06T22:00:59.6400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102057|129071|6700|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:00:59.3250000-07:00|Change|10FF000B||| +261|2023-10-06T22:00:59.4220000-07:00|Change|10FF0001||| +37|2023-10-06T22:00:59.6840000-07:00|10FF000A|Dukaro Nezikaro|00010D05|54783|83502|10000|10000|0||100.02|101.18|0.00|-3.14|1E06|0|0|01|05000A82|01|C1F00000|| +37|2023-10-06T22:00:59.7300000-07:00|40021585|Zeromus|00010D07|16341301||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:59.7300000-07:00|10FF0006|Wowobora Gogobora|00010D05|56915||||||100.05|101.70|0.00|-3.14| +37|2023-10-06T22:00:59.7300000-07:00|10FF0004|Buhojaqe Zijaqe|00010D06|59015|81541|2450|10000|0||100.08|99.00|0.00|3.09|1C00|0|0|01|080004B4|0|41A80000|| +26|2023-10-06T22:00:59.7300000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:00:59.7300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56915|81809|4250|10000|0||100.05|101.70|0.00|-3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:00:59.7300000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T22:00:59.7300000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|756003|31C30000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|16343109|40478540|10000|10000|||100.00|80.10|0.00|0.00|78289|81809|4250|10000|||100.05|101.70|0.00|-3.14|00010D0D|0|1| +21|2023-10-06T22:00:59.7300000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16343109|40478540|10000|10000|||100.00|80.10|0.00|0.00|78289|81809|4250|10000|||100.05|101.70|0.00|-3.14|00010D0E|0|1| +38|2023-10-06T22:00:59.7300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56915|81809|4250|10000|0||100.05|101.70|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:00:59.7300000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T22:00:59.7740000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +38|2023-10-06T22:00:59.7740000-07:00|10FF000B|Pusu Rosu|005A5A18|54487|79209|8883|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +30|2023-10-06T22:00:59.7740000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T22:00:59.8190000-07:00|40021585|Zeromus|00010D04|16325757||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:00:59.8190000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16341301|40478540|10000|10000|||100.00|80.10|0.00|0.00|16341301|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D0F|0|1| +38|2023-10-06T22:00:59.8190000-07:00|10FF0003|Gegehi Gehi|005A5A23|47658|73814|5400|10000|0||100.08|99.96|0.00|-3.14|0|0|0|||||||||||||||| +30|2023-10-06T22:00:59.8190000-07:00|2B|Weakness|0.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +37|2023-10-06T22:00:59.8630000-07:00|40021585|Zeromus|00010D03|16304388||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:59.8630000-07:00|10FF0006|Wowobora Gogobora|00010D03|56915|81809|4250|10000|0||100.05|101.70|0.00|-3.14|1B00|0|0|01|05000A8D|0|C2700000|| +37|2023-10-06T22:00:59.9520000-07:00|40021585|Zeromus|00010D08|16270976||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:00:59.9520000-07:00|10FF000A|Dukaro Nezikaro|00010D08|54783|83502|10000|10000|0||100.02|101.18|0.00|-3.14|1E00|0|0|01|05000A82|01|41F00000|| +38|2023-10-06T22:00:59.9520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|54783|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +39|2023-10-06T22:00:59.9960000-07:00|10FF0003|Gegehi Gehi|48396|73814|5600|10000|||100.08|99.96|0.00|-3.14| +261|2023-10-06T22:00:59.6110000-07:00|Change|10FF0003||||| +20|2023-10-06T22:01:00.0410000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.08|98.92|0.00|3.08| +21|2023-10-06T22:01:00.0410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16270976|40478540|10000|10000|||100.00|80.10|0.00|0.00|54783|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D10|0|1| +37|2023-10-06T22:01:00.1300000-07:00|40021585|Zeromus|00010D09|16268628||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:00.1300000-07:00|10FF0004|Buhojaqe Zijaqe|59830|81541|2650|10000|||100.08|98.92|0.00|3.08| +33|2023-10-06T22:01:00.1300000-07:00|80034E7C|40000007|01|01|00|00| +37|2023-10-06T22:01:00.1750000-07:00|40021585|Zeromus|00010D0A|16256426||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:00.1750000-07:00|10FF0001|Sesuga Sapisuga|00010D0A|112578||||||99.88|88.04|0.00|3.13| +37|2023-10-06T22:01:00.1750000-07:00|40021585|Zeromus|00010D0C|16256353||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:00.1750000-07:00|10FF000B|Pusu Rosu|00010D0B|67364||||||99.75|99.17|0.00|3.13| +37|2023-10-06T22:01:00.2640000-07:00|40021585|Zeromus|00010D0E|16256240||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:00.2640000-07:00|10FF0006|Wowobora Gogobora|00010D0E|56915|81809|4250|10000|0||100.05|101.70|0.00|-3.14|1B00|0|0|01|05000A8D|0|C2700000|| +21|2023-10-06T22:01:00.2640000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|30310000|A3E|340000|200004|3C978000|11B|2D8000|0|0|0|0|0|0|0|0|16256353|40478540|10000|10000|||100.00|80.10|0.00|0.00|108666|129844|10000|10000|||99.78|91.20|0.00|-1.43|00010D11|0|1| +38|2023-10-06T22:01:00.2640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108666|129844|10000|10000|0||99.78|91.20|0.00|-1.43|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:00.2640000-07:00|A75|Surging Tempest|30.39|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:01:00.3080000-07:00|10FF0004|Buhojaqe Zijaqe|00010D0B|72569||||||100.08|98.92|0.00|3.08| +21|2023-10-06T22:01:00.3530000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|4|14470000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|67364|79209|8883|10000|||99.75|99.17|0.00|3.13|54201|77430|10000|10000|||100.66|96.79|0.00|-2.10|00010D12|0|1| +39|2023-10-06T22:01:00.3970000-07:00|400218E7|Demi-Phoenix|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05| +37|2023-10-06T22:01:00.4420000-07:00|10FF0003|Gegehi Gehi|00010D0B|61230||||||100.08|99.96|0.00|-3.14| +22|2023-10-06T22:01:00.4860000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750203|592E0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|112578|129071|6700|10000|||99.88|88.04|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D13|0|8| +22|2023-10-06T22:01:00.4860000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750303|5BC90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|108666|129844|10000|10000|||99.78|91.20|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D13|1|8| +22|2023-10-06T22:01:00.4860000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|54640000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|72569|81541|2650|10000|||100.08|98.92|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D13|2|8| +22|2023-10-06T22:01:00.4860000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750003|53380000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|67364|79209|8883|10000|||99.75|99.17|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D13|3|8| +22|2023-10-06T22:01:00.4860000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|522D0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|48396|73814|5600|10000|||100.08|99.96|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D13|4|8| +22|2023-10-06T22:01:00.4860000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|568A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|60115|90216|10000|10000|||100.24|100.85|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D13|5|8| +22|2023-10-06T22:01:00.4860000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|5D1A0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|54783|83502|10000|10000|||100.02|101.18|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D13|6|8| +22|2023-10-06T22:01:00.4860000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|54E20000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|56915|81809|4250|10000|||100.05|101.70|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D13|7|8| +261|2023-10-06T22:01:00.0750000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:01:00.5740000-07:00|10FF0008|Kokosaze Lulusaze|00010D0B|73057||||||100.24|100.85|0.00|-3.13| +37|2023-10-06T22:01:00.5740000-07:00|40021585|Zeromus|00010D10|16253325||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:00.6640000-07:00|40021585|Zeromus|DoT|0|1978|16253325|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|54783|83502|10000|10000|||100.02|101.18|0.00|-3.14| +21|2023-10-06T22:01:00.6640000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|750003|2DA80000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|16253325|40478540|10000|10000|||100.00|80.10|0.00|0.00|61230|73814|5600|10000|||100.08|99.96|0.00|-3.14|00010D14|0|1| +38|2023-10-06T22:01:00.6640000-07:00|10FF0003|Gegehi Gehi|005A5A23|61230|73814|5400|10000|0||100.08|99.96|0.00|-3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:01:00.6640000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +36|2023-10-06T22:01:00.6640000-07:00|7508|3| +38|2023-10-06T22:01:00.6640000-07:00|40021585|Zeromus|005A5A00|16246805|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T22:01:00.7070000-07:00|10FF000A|Dukaro Nezikaro|00010D0B|67150||||||100.02|101.18|0.00|-3.14| +37|2023-10-06T22:01:00.7520000-07:00|40021585|Zeromus|00010D0D|16234066||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:00.7520000-07:00|10FF0006|Wowobora Gogobora|00010D0D|56915|81809|4250|10000|0||100.05|101.70|0.00|-3.14|1B00|0|0|01|05000A8D|0|42700000|| +38|2023-10-06T22:01:00.7520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|56915|81809|4250|10000|0||100.05|101.70|0.00|-3.14|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:00.7960000-07:00|10FF0001|Sesuga Sapisuga|00010D13|89748||||||99.88|88.04|0.00|3.13| +21|2023-10-06T22:01:00.7960000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|554003|5AC80000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|16246805|40478540|10000|10000|||100.00|80.10|0.00|0.00|67150|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D15|0|1| +38|2023-10-06T22:01:00.7960000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67150|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||| +30|2023-10-06T22:01:00.7960000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T22:01:00.8410000-07:00|10FF0007|Kehabiqo Febiqo|00010D13|85169||||||99.78|91.20|0.00|3.12| +37|2023-10-06T22:01:00.8410000-07:00|10FF0006|Wowobora Gogobora|00010D0B|69544||||||100.05|101.70|0.00|-3.14| +21|2023-10-06T22:01:00.8410000-07:00|400218E7|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|152003|1FFA0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|16246805|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05|00010D16|0|1| +37|2023-10-06T22:01:00.8860000-07:00|10FF0004|Buhojaqe Zijaqe|00010D13|50965||||||100.08|98.92|0.00|3.08| +37|2023-10-06T22:01:00.9310000-07:00|10FF000B|Pusu Rosu|00010D13|46060|79209|8883|10000|0||99.75|99.17|0.00|3.13|1803|0|0|01|02000A95|02|41478D45|| +26|2023-10-06T22:01:00.9310000-07:00|A95|Liturgy of the Bell|12.47|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|02|79209|79209| +38|2023-10-06T22:01:00.9310000-07:00|10FF000B|Pusu Rosu|005A5A18|46060|79209|8883|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +37|2023-10-06T22:01:00.9750000-07:00|10FF0003|Gegehi Gehi|00010D13|40193||||||100.08|99.96|0.00|-3.14| +37|2023-10-06T22:01:00.9750000-07:00|10FF0007|Kehabiqo Febiqo|00010D0B|98082||||||99.78|91.20|0.00|3.12| +22|2023-10-06T22:01:00.9750000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|2FBF0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|46060|79209|8883|10000|||99.75|99.17|0.00|3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D17|0|8| +22|2023-10-06T22:01:00.9750000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|2EBF0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D17|1|8| +22|2023-10-06T22:01:00.9750000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|30730000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|61230|73814|5400|10000|||100.08|99.96|0.00|-3.14|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D17|2|8| +22|2023-10-06T22:01:00.9750000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|2ECE0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73057|90216|10000|10000|||100.24|100.85|0.00|-3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D17|3|8| +22|2023-10-06T22:01:00.9750000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|200004|4AC30000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|67150|83502|10000|10000|||100.02|101.18|0.00|-3.14|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D17|4|8| +22|2023-10-06T22:01:00.9750000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|2EA10000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|85169|129844|10000|10000|||99.78|91.20|0.00|3.12|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D17|5|8| +22|2023-10-06T22:01:00.9750000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|30500000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|69544|81809|4250|10000|||100.05|101.70|0.00|-3.14|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D17|6|8| +22|2023-10-06T22:01:00.9750000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|2F5A0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|89748|129071|6700|10000|||99.88|88.04|0.00|3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D17|7|8| +37|2023-10-06T22:01:01.0200000-07:00|10FF0008|Kokosaze Lulusaze|00010D13|50903||||||100.24|100.85|0.00|-3.13| +261|2023-10-06T22:01:00.5490000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T22:01:01.0640000-07:00|10FF000A|Dukaro Nezikaro|00010D13|43316||||||100.02|101.18|0.00|-3.14| +37|2023-10-06T22:01:01.1090000-07:00|10FF0006|Wowobora Gogobora|00010D13|47814||||||100.05|101.70|0.00|-3.14| +37|2023-10-06T22:01:01.1090000-07:00|10FF0001|Sesuga Sapisuga|00010D0B|102026||||||99.88|88.04|0.00|3.13| +37|2023-10-06T22:01:01.1540000-07:00|10FF000B|Pusu Rosu|00010D12|51251||||||99.75|99.17|0.00|3.13| +39|2023-10-06T22:01:01.1540000-07:00|10FF0008|Kokosaze Lulusaze|51805|90216|10000|10000|||100.24|100.85|0.00|-3.13| +21|2023-10-06T22:01:01.1540000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|ACE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16234066|40478540|10000|10000|||100.00|80.10|0.00|0.00|98082|129844|10000|10000|||99.78|91.20|0.00|3.12|00010D18|0|1| +21|2023-10-06T22:01:01.1980000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16234066|40478540|10000|10000|||100.00|80.10|0.00|0.00|16234066|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D19|0|1| +21|2023-10-06T22:01:01.2880000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|42460000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16234066|40478540|10000|10000|||100.00|80.10|0.00|0.00|47814|81809|4250|10000|||100.05|101.70|0.00|-3.14|00010D1A|0|1| +261|2023-10-06T22:01:00.8920000-07:00|Change|10FF0006||| +21|2023-10-06T22:01:01.3320000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16234066|40478540|10000|10000|||100.00|80.10|0.00|0.00|40193|73814|5400|10000|||100.08|99.96|0.00|-3.14|00010D1B|0|1| +37|2023-10-06T22:01:01.4220000-07:00|40021585|Zeromus|00010D14|16222378||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:01.4220000-07:00|10FF000B|Pusu Rosu|00010D17|63474||||||99.75|99.17|0.00|3.13| +21|2023-10-06T22:01:01.4670000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750303|1C690000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|98082|129844|10000|10000|||99.78|91.20|0.00|3.12|16234066|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D1C|0|1| +21|2023-10-06T22:01:01.4670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16234066|40478540|10000|10000|||100.00|80.10|0.00|0.00|102026|129071|6700|10000|||99.88|88.04|0.00|3.13|00010D1D|0|1| +22|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|1DB70000|8B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|00010D1E|0|8| +22|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|4|13080000|730E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|51251|79209|8883|10000|||99.75|99.17|0.00|3.13|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|00010D1E|1|8| +22|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|125F0000|640E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|40193|73814|5400|10000|||100.08|99.96|0.00|-3.14|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|00010D1E|2|8| +22|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|12450000|3B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|51805|90216|10000|10000|||100.24|100.85|0.00|-3.13|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|00010D1E|3|8| +22|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|12970000|BE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|43316|83502|10000|10000|||100.02|101.18|0.00|-3.14|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|00010D1E|4|8| +22|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|125F0000|640E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|47814|81809|3950|10000|||100.05|101.70|0.00|-3.14|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|00010D1E|5|8| +22|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|131B0000|910E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|98082|129844|10000|10000|||99.78|91.20|0.00|3.12|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|00010D1E|6|8| +22|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|12AF0000|E40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|102026|129071|6700|10000|||99.88|88.04|0.00|3.13|50965|81541|2650|10000|||100.08|98.92|0.00|3.08|00010D1E|7|8| +38|2023-10-06T22:01:01.4670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98082|129844|10000|10000|6||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:01.4670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:01:01.4670000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|51805|90216|10000|10000|8||100.24|100.85|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T22:01:01.4670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:01:01.4670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|47814|81809|3950|10000|9||100.05|101.70|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:01.4670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:01:01.4670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102026|129071|6700|10000|5||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:01.4670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:01:01.4670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|50965|81541|1650|10000|14||100.08|98.92|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:01.4670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:01:01.4670000-07:00|10FF0003|Gegehi Gehi|005A5A23|40193|73814|5400|10000|10||100.08|99.96|0.00|-3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:01:01.4670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:01:01.4670000-07:00|10FF000B|Pusu Rosu|005A5A18|63474|79209|8883|10000|9||99.75|99.17|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:01.4670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:01:01.4670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43316|83502|10000|10000|9||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:01.4670000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +31|2023-10-06T22:01:01.4670000-07:00|10FF0001||||| +21|2023-10-06T22:01:01.5100000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1DC50000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|16222378|40478540|10000|10000|||100.00|80.10|0.00|0.00|51805|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D1F|0|1| +261|2023-10-06T22:01:01.1250000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:01:01.5540000-07:00|10FF0004|Buhojaqe Zijaqe|00010D17|62932||||||100.08|98.92|0.00|3.08| +37|2023-10-06T22:01:01.5540000-07:00|40021585|Zeromus|00010D15|16199138||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:01.6440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|102026|129071|6700|10000|5||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:01.6440000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:01:01.6880000-07:00|40021585|Zeromus|00010D18|16196372||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:01.6880000-07:00|10FF0003|Gegehi Gehi|00010D17|52596||||||100.08|99.96|0.00|-3.14| +21|2023-10-06T22:01:01.6880000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|352003|55B50000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|16199138|40478540|10000|10000|||100.00|80.10|0.00|0.00|40193|73814|5400|10000|||100.08|99.96|0.00|-3.14|00010D20|0|1| +38|2023-10-06T22:01:01.6880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98082|129844|10000|10000|6||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:01.6880000-07:00|498|Arms Up|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +38|2023-10-06T22:01:01.6880000-07:00|10FF0003|Gegehi Gehi|005A5A23|52596|73814|5100|10000|10||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:01.6880000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:01:01.6880000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:01:01.7330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|98082|129844|10000|10000|6||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:01.7330000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:01:01.8210000-07:00|10FF0008|Kokosaze Lulusaze|00010D17|63787||||||100.24|100.85|0.00|-3.13| +39|2023-10-06T22:01:01.8210000-07:00|10FF0001|Sesuga Sapisuga|103316|129071|6900|10000|||99.88|88.04|0.00|3.13| +261|2023-10-06T22:01:01.4050000-07:00|Change|10FF0001||| +37|2023-10-06T22:01:01.8660000-07:00|40021585|Zeromus|00010D1B|16196344||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:01.8660000-07:00|10FF0003|Gegehi Gehi|00010D1B|52596|73814|5100|10000|10||100.08|99.96|0.00|-3.14|2300|0|0|01|050004D3|0|C1F00000|| +37|2023-10-06T22:01:01.8660000-07:00|40021585|Zeromus|00010D16|16188158||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:01:01.8670000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|EC750605|38DB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|102026|129071|6700|10000|||99.88|88.04|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D21|0|8| +22|2023-10-06T22:01:01.8670000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750603|55D30000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|98082|129844|10000|10000|||99.78|91.20|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D21|1|8| +22|2023-10-06T22:01:01.8670000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|22110000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|62932|81541|1650|10000|||100.08|98.92|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D21|2|8| +22|2023-10-06T22:01:01.8670000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750603|36670000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|63474|79209|8883|10000|||99.75|99.17|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D21|3|8| +22|2023-10-06T22:01:01.8670000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|30870000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|52596|73814|5100|10000|||100.08|99.96|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D21|4|8| +22|2023-10-06T22:01:01.8670000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|3D710000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|51805|90216|10000|10000|||100.24|100.85|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D21|5|8| +22|2023-10-06T22:01:01.8670000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750603|38F90000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|43316|83502|10000|10000|||100.02|101.18|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D21|6|8| +22|2023-10-06T22:01:01.8670000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|33110000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|47814|81809|3950|10000|||100.05|101.70|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D21|7|8| +37|2023-10-06T22:01:01.9110000-07:00|40021585|Zeromus|00010D11|16175821||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:01.9110000-07:00|10FF0007|Kehabiqo Febiqo|00010D11|113593||||||99.78|91.20|0.00|3.12| +21|2023-10-06T22:01:01.9120000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2B340000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|16175821|40478540|10000|10000|||100.00|80.10|0.00|0.00|103316|129071|6900|10000|||99.88|88.04|0.00|3.13|00010D22|0|1| +38|2023-10-06T22:01:01.9120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103316|129071|6900|10000|5||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:01.9120000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T22:01:01.9560000-07:00|10FF000A|Dukaro Nezikaro|00010D17|62455||||||100.02|101.18|0.00|-3.14| +38|2023-10-06T22:01:01.9570000-07:00|400218E7|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||101.46|95.38|0.00|-3.05|0|0|0||||||| +26|2023-10-06T22:01:01.9570000-07:00|30|Well Fed|620.68|10FF0006|Wowobora Gogobora|400218E7|Demi-Phoenix|2964|77698|81809| +26|2023-10-06T22:01:01.9570000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|400218E7|Demi-Phoenix|01|77698|40478540| +21|2023-10-06T22:01:01.9570000-07:00|10FF0006|Wowobora Gogobora|4084|Enkindle Phoenix|40021585|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|16175821|40478540|10000|10000|||100.00|80.10|0.00|0.00|47814|81809|3950|10000|||100.05|101.70|0.00|-3.14|00010D23|0|1| +37|2023-10-06T22:01:02.0010000-07:00|40021585|Zeromus|00010D1D|16173933||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:01.6060000-07:00|Change|10FF0003||| +21|2023-10-06T22:01:02.0450000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16173933|40478540|10000|10000|||100.00|80.10|0.00|0.00|63787|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D24|0|1| +20|2023-10-06T22:01:02.0450000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|1.970|99.75|99.17|0.00|3.13| +37|2023-10-06T22:01:02.0900000-07:00|10FF0007|Kehabiqo Febiqo|00010D17|125530||||||99.78|91.20|0.00|3.12| +24|2023-10-06T22:01:02.0900000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|78B|63787|90216|10000|10000|||100.24|100.85|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|62932|81541|1650|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:02.0900000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|9B9|113593|129844|10000|10000|||99.78|91.20|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|62932|81541|1650|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:02.0900000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|9EC|103316|129071|6900|10000|||99.88|88.04|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|62932|81541|1650|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:02.0900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|9A1|62932|81541|1650|10000|||100.08|98.92|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|62932|81541|1650|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:02.0900000-07:00|10FF000B|Pusu Rosu|HoT|798|F52|63474|79209|8883|10000|||99.75|99.17|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|62932|81541|1650|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:02.0900000-07:00|10FF0003|Gegehi Gehi|HoT|798|F8D|52596|73814|5100|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|62932|81541|1650|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:02.0900000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|977|63787|90216|10000|10000|||100.24|100.85|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|62932|81541|1650|10000|||100.08|98.92|0.00|3.08| +261|2023-10-06T22:01:01.7220000-07:00|Change|10FF000B||||||||||||| +24|2023-10-06T22:01:02.0900000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|9C2|64953|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|67367|81541|2200|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:02.0900000-07:00|10FF0006|Wowobora Gogobora|HoT|798|99D|50275|81809|3950|10000|||100.05|101.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|67367|81541|2200|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:02.0900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|7B2|67367|81541|2200|10000|||100.08|98.92|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|67367|81541|2200|10000|||100.08|98.92|0.00|3.08| +38|2023-10-06T22:01:02.0900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128019|129844|10000|10000|6||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:02.0900000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:01:02.0900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|68141|90216|10000|10000|8||100.24|100.85|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T22:01:02.0900000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:01:02.0900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50275|81809|3950|10000|9||100.05|101.70|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:02.0900000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:01:02.0900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105856|129071|6900|10000|5||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:02.0900000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:01:02.0900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|67367|81541|2200|10000|14||100.08|98.92|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:02.0900000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:01:02.0900000-07:00|10FF0003|Gegehi Gehi|005A5A23|56577|73814|5100|10000|10||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:02.0900000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:01:02.0900000-07:00|10FF000B|Pusu Rosu|005A5A18|67396|79209|8883|10000|9||99.75|99.17|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:02.0900000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:01:02.0900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|64953|83502|10000|10000|9||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:02.0900000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:01:02.1780000-07:00|10FF0001|Sesuga Sapisuga|00010D21|91301|129071|6900|10000|0||99.88|88.04|0.00|3.13|1300|0|0|01|07000000|0|0|| +39|2023-10-06T22:01:02.1780000-07:00|10FF0006|Wowobora Gogobora|51093|81809|4150|10000|||100.05|101.70|0.00|-3.14| +24|2023-10-06T22:01:02.1780000-07:00|10FF0006|Wowobora Gogobora|HoT|0|C3F|50275|81809|3950|10000|||100.05|101.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|67367|81541|2200|10000|||100.08|98.92|0.00|3.08| +38|2023-10-06T22:01:02.1780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54228|81809|4150|10000|9||100.05|101.70|0.00|-3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:02.1780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|91301|129071|6900|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:02.1780000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T22:01:02.2230000-07:00|10FF0007|Kehabiqo Febiqo|00010D21|106048|129844|10000|10000|0||99.78|91.20|0.00|3.12|1501|0|0|01|0A000000|0|0|| +37|2023-10-06T22:01:02.2230000-07:00|10FF0006|Wowobora Gogobora|00010D17|66596||||||100.05|101.70|0.00|-3.14| +21|2023-10-06T22:01:02.2230000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|F530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16173933|40478540|10000|10000|||100.00|80.10|0.00|0.00|64953|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D25|0|1| +38|2023-10-06T22:01:02.2230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106048|129844|10000|10000|0||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:02.2230000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +261|2023-10-06T22:01:01.8350000-07:00|Change|10FF0006||| +37|2023-10-06T22:01:02.2680000-07:00|40021585|Zeromus|00010D1F|16166312||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:02.2680000-07:00|10FF0007|Kehabiqo Febiqo|00010D1C|98775||||||99.78|91.20|0.00|3.12| +37|2023-10-06T22:01:02.2680000-07:00|10FF0004|Buhojaqe Zijaqe|00010D21|58646|81541|2200|10000|0||100.08|98.92|0.00|3.08|1C02|0|0|01|09000000|0|0|| +38|2023-10-06T22:01:02.2680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58646|81541|2200|10000|0||100.08|98.92|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:02.2680000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:01:02.3120000-07:00|10FF000B|Pusu Rosu|00010D21|53469|79209|8883|10000|0||99.75|99.17|0.00|3.13|1803|0|0|01|05000000|0|0|| +38|2023-10-06T22:01:02.3120000-07:00|10FF000B|Pusu Rosu|005A5A18|53469|79209|8883|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +30|2023-10-06T22:01:02.3120000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +37|2023-10-06T22:01:02.3560000-07:00|40021585|Zeromus|00010D1A|16149346||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:02.3560000-07:00|10FF0003|Gegehi Gehi|00010D21|44154|73814|5100|10000|0||100.08|99.96|0.00|-3.14|2304|0|0|02|03000000|0|0|||||| +37|2023-10-06T22:01:02.3560000-07:00|10FF0001|Sesuga Sapisuga|00010D17|103423||||||99.88|88.04|0.00|3.13| +39|2023-10-06T22:01:02.3560000-07:00|10FF000B|Pusu Rosu|54261|79209|9164|10000|||99.75|99.17|0.00|3.13| +39|2023-10-06T22:01:02.3560000-07:00|10FF000A|Dukaro Nezikaro|65788|83502|10000|10000|||100.02|101.18|0.00|-3.14| +38|2023-10-06T22:01:02.3560000-07:00|10FF0003|Gegehi Gehi|005A5A23|44154|73814|5100|10000|0||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:02.3560000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +37|2023-10-06T22:01:02.4010000-07:00|10FF0008|Kokosaze Lulusaze|00010D21|52412|90216|10000|10000|0||100.24|100.85|0.00|-3.13|1F05|0|0|01|04000000|0|0|| +21|2023-10-06T22:01:02.4010000-07:00|400218E7|Demi-Phoenix|4086|Revelation|40021585|Zeromus|150003|9FDC0000|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|16166312|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05|00010D26|0|1| +39|2023-10-06T22:01:02.4010000-07:00|400218EA|Liturgic Bell|75049|75049|10000|10000|||95.31|96.36|0.00|1.58| +24|2023-10-06T22:01:02.4010000-07:00|10FF0003|Gegehi Gehi|HoT|0|799|56577|73814|5100|10000|||100.08|99.96|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|58646|81541|2200|10000|||100.08|98.92|0.00|3.08| +38|2023-10-06T22:01:02.4010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|52412|90216|10000|10000|0||100.24|100.85|0.00|-3.13|0|0|0||||||||||||| +30|2023-10-06T22:01:02.4010000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:01:02.4010000-07:00|10FF0003|Gegehi Gehi|005A5A23|46099|73814|5100|10000|0||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:02.4450000-07:00|10FF000A|Dukaro Nezikaro|00010D21|51203|83502|10000|10000|0||100.02|101.18|0.00|-3.14|1E06|0|0|01|05000000|0|0|| +37|2023-10-06T22:01:02.4450000-07:00|40021585|Zeromus|00010D20|16127405||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:02.4450000-07:00|10FF0003|Gegehi Gehi|00010D20|46099|73814|5100|10000|0||100.08|99.96|0.00|-3.14|2300|0|0|01|050004D3|0|41F00000|| +24|2023-10-06T22:01:02.4450000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|75A|64953|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|58646|81541|2200|10000|||100.08|98.92|0.00|3.08| +38|2023-10-06T22:01:02.4450000-07:00|10FF0003|Gegehi Gehi|005A5A23|46099|73814|5100|10000|0||100.08|99.96|0.00|-3.14|0|0|0||||||||||||||||||| +38|2023-10-06T22:01:02.4450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|53085|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||| +30|2023-10-06T22:01:02.4450000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:01:02.4900000-07:00|10FF0006|Wowobora Gogobora|00010D21|53523|81809|4150|10000|0||100.05|101.70|0.00|-3.14|1B07|0|0|01|06000000|0|0|| +39|2023-10-06T22:01:02.4900000-07:00|10FF0007|Kehabiqo Febiqo|100073|129844|10000|10000|||99.78|91.20|0.00|3.12| +24|2023-10-06T22:01:02.4900000-07:00|10FF000B|Pusu Rosu|HoT|0|763|54261|79209|9164|10000|||99.75|99.17|0.00|3.13|400218E7|Demi-Phoenix|0|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05| +21|2023-10-06T22:01:02.4900000-07:00|10FF000A|Dukaro Nezikaro|1D76|Bloodbath|10FF000A|Dukaro Nezikaro|190E|540000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53085|83502|10000|10000|||100.02|101.18|0.00|-3.14|53085|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D27|0|1| +38|2023-10-06T22:01:02.4900000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|53523|81809|4150|10000|0||100.05|101.70|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:02.4900000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:01:02.4900000-07:00|10FF000B|Pusu Rosu|005A5A18|56152|79209|9164|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +261|2023-10-06T22:01:02.1670000-07:00|Change|10FF0004||| +37|2023-10-06T22:01:02.5800000-07:00|10FF0004|Buhojaqe Zijaqe|00010D1E|66253||||||100.08|98.92|0.00|3.08| +21|2023-10-06T22:01:02.5800000-07:00|40021585|Zeromus|8B39|Sable Thread|40021585|Zeromus|1B|8B398000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16127405|40478540|10000|10000|||100.00|80.10|0.00|0.00|16127405|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D28|0|1| +24|2023-10-06T22:01:02.5800000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1534|98775|129844|10000|10000|||99.78|91.20|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|98775|129844|10000|10000|||99.78|91.20|0.00|3.12| +38|2023-10-06T22:01:02.5800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105501|129844|10000|10000|0||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:01:02.1670000-07:00|Change|10FF000B||||| +24|2023-10-06T22:01:02.6680000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2014|103423|129071|6900|10000|||99.88|88.04|0.00|3.13|10FF0001|Sesuga Sapisuga|0|103423|129071|6900|10000|||99.88|88.04|0.00|3.13| +38|2023-10-06T22:01:02.6680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|111635|129071|6900|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:02.7120000-07:00|10FF000B|Pusu Rosu|00010D1E|61024||||||99.75|99.17|0.00|3.13| +21|2023-10-06T22:01:02.7120000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|15770000|200004|3C9C8000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|16127405|40478540|10000|10000|||100.00|80.10|0.00|0.00|105501|129844|10000|10000|||99.78|91.20|0.00|3.12|00010D29|0|1| +37|2023-10-06T22:01:02.7570000-07:00|40021585|Zeromus|00010D25|16123482||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:02.7570000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.08| +37|2023-10-06T22:01:02.8020000-07:00|40021585|Zeromus|00010D24|16119875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:02.8470000-07:00|10FF0003|Gegehi Gehi|00010D1E|50802||||||100.08|99.96|0.00|-3.14| +21|2023-10-06T22:01:02.8910000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|5A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16119875|40478540|10000|10000|||100.00|80.10|0.00|0.00|53523|81809|4150|10000|||100.05|101.70|0.00|-3.14|00010D2A|0|1| +20|2023-10-06T22:01:02.8910000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.08|98.92|0.00|3.08| +37|2023-10-06T22:01:02.9810000-07:00|10FF0008|Kokosaze Lulusaze|00010D1E|57089||||||100.24|100.85|0.00|-3.13| +39|2023-10-06T22:01:02.9810000-07:00|10FF0003|Gegehi Gehi|51540|73814|5300|10000|||100.08|99.96|0.00|-3.14| +21|2023-10-06T22:01:03.0250000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|722003|1E3C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16119875|40478540|10000|10000|||100.00|80.10|0.00|0.00|51540|73814|5300|10000|||100.08|99.96|0.00|-3.14|00010D2B|0|1| +38|2023-10-06T22:01:03.0690000-07:00|40021585|Zeromus|005A5A00|16119875|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T22:01:03.0690000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +261|2023-10-06T22:01:02.6620000-07:00|Change|10FF0003||||| +37|2023-10-06T22:01:03.1140000-07:00|10FF000A|Dukaro Nezikaro|00010D1E|57844||||||100.02|101.18|0.00|-3.14| +37|2023-10-06T22:01:03.1140000-07:00|10FF000A|Dukaro Nezikaro|00010D27|57844|83502|10000|10000|0||100.02|101.18|0.00|-3.14|1E00|0|0|01|05000054|0|41A00000|| +26|2023-10-06T22:01:03.1140000-07:00|54|Bloodbath|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +39|2023-10-06T22:01:03.1140000-07:00|10FF0004|Buhojaqe Zijaqe|67068|81541|2400|10000|||100.08|98.92|0.00|3.08| +37|2023-10-06T22:01:03.2040000-07:00|40021585|Zeromus|00010D22|16108815||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:03.2040000-07:00|10FF0001|Sesuga Sapisuga|00010D22|111635|129071|7300|10000|0||99.88|88.04|0.00|3.13|1300|0|0|0| +37|2023-10-06T22:01:03.2490000-07:00|40021585|Zeromus|00010D29|16103320||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:03.2490000-07:00|10FF0007|Kehabiqo Febiqo|00010D29|121017||||||99.78|91.20|0.00|3.12| +37|2023-10-06T22:01:03.2490000-07:00|10FF0006|Wowobora Gogobora|00010D1E|58226||||||100.05|101.70|0.00|-3.14| +22|2023-10-06T22:01:03.2490000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750003|702F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|111635|129071|6900|10000|||99.88|88.04|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D2C|0|8| +22|2023-10-06T22:01:03.2490000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750003|77A80000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|105501|129844|10000|10000|||99.78|91.20|0.00|3.12|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D2C|1|8| +22|2023-10-06T22:01:03.2490000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750003|51C50000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|67068|81541|2400|10000|||100.08|98.92|0.00|3.08|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D2C|2|8| +22|2023-10-06T22:01:03.2490000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750003|4FFF0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D2C|3|8| +22|2023-10-06T22:01:03.2490000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750003|51EB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|51540|73814|5300|10000|||100.08|99.96|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D2C|4|8| +22|2023-10-06T22:01:03.2490000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750003|5B120000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|57089|90216|10000|10000|||100.24|100.85|0.00|-3.13|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D2C|5|8| +22|2023-10-06T22:01:03.2490000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750003|5B500000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|57844|83502|10000|10000|||100.02|101.18|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D2C|6|8| +22|2023-10-06T22:01:03.2490000-07:00|400215A2|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750003|53FC0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|53523|81809|4150|10000|||100.05|101.70|0.00|-3.14|44|44|0|10000|||100.00|65.00|0.00|-0.01|00010D2C|7|8| +21|2023-10-06T22:01:03.2940000-07:00|10FF0007|Kehabiqo Febiqo|28|Thrill of Battle|10FF0007|Kehabiqo Febiqo|14140E|570000|4|65700000|0|0|0|0|0|0|0|0|0|0|0|0|105501|129844|10000|10000|||99.78|91.20|0.00|3.12|105501|129844|10000|10000|||99.78|91.20|0.00|3.12|00010D2D|0|1| +261|2023-10-06T22:01:02.8850000-07:00|Change|10FF0001||| +21|2023-10-06T22:01:03.3370000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1DEF0000|104|5978000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|16103320|40478540|10000|10000|||100.00|80.10|0.00|0.00|57844|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D2E|0|1| +37|2023-10-06T22:01:03.3820000-07:00|10FF0007|Kehabiqo Febiqo|00010D1E|125908||||||99.78|91.20|0.00|3.12| +39|2023-10-06T22:01:03.3820000-07:00|400218E7|Demi-Phoenix|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05| +37|2023-10-06T22:01:03.4270000-07:00|40021585|Zeromus|00010D2A|16103230||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:03.4270000-07:00|40021585|Zeromus|00010D26|16062306||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:03.4270000-07:00|400218E7|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||101.46|95.38|0.00|-3.05|0|0|0|||| +30|2023-10-06T22:01:03.4270000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|400218E7|Demi-Phoenix|01|77698|40478540| +22|2023-10-06T22:01:03.4710000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|4|32010000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|00010D2F|0|8| +22|2023-10-06T22:01:03.4710000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0004|Buhojaqe Zijaqe|200004|4B500000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|67068|81541|2400|10000|||100.08|98.92|0.00|3.08|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|00010D2F|1|8| +22|2023-10-06T22:01:03.4710000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0003|Gegehi Gehi|4|313E0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|51540|73814|5300|10000|||100.08|99.96|0.00|-3.14|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|00010D2F|2|8| +22|2023-10-06T22:01:03.4710000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0008|Kokosaze Lulusaze|4|32090000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|57089|90216|10000|10000|||100.24|100.85|0.00|-3.13|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|00010D2F|3|8| +22|2023-10-06T22:01:03.4710000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000A|Dukaro Nezikaro|200004|4CEA0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|57844|83502|10000|10000|||100.02|101.18|0.00|-3.14|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|00010D2F|4|8| +22|2023-10-06T22:01:03.4710000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0006|Wowobora Gogobora|4|323F0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|58226|81809|4150|10000|||100.05|101.70|0.00|-3.14|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|00010D2F|5|8| +22|2023-10-06T22:01:03.4710000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0007|Kehabiqo Febiqo|200004|4A420000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|125908|129844|10000|10000|||99.78|91.20|0.00|3.12|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|00010D2F|6|8| +22|2023-10-06T22:01:03.4710000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0001|Sesuga Sapisuga|4|304B0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|111635|129071|7300|10000|||99.88|88.04|0.00|3.13|61024|79209|9164|10000|||99.75|99.17|0.00|3.13|00010D2F|7|8| +37|2023-10-06T22:01:03.5160000-07:00|10FF0001|Sesuga Sapisuga|00010D1E|116418||||||99.88|88.04|0.00|3.13| +37|2023-10-06T22:01:03.5600000-07:00|10FF0001|Sesuga Sapisuga|00010D2C|87699||||||99.88|88.04|0.00|3.13| +261|2023-10-06T22:01:03.1160000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:01:03.6050000-07:00|10FF0007|Kehabiqo Febiqo|00010D2C|95276||||||99.78|91.20|0.00|3.12| +261|2023-10-06T22:01:03.2100000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:01:03.6500000-07:00|10FF0004|Buhojaqe Zijaqe|00010D2C|46135||||||100.08|98.92|0.00|3.08| +37|2023-10-06T22:01:03.6500000-07:00|40021585|Zeromus|00010D2B|16054566||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:03.6500000-07:00|40021585|Zeromus|DoT|0|1A64|16062306|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|57844|83502|10000|10000|||100.02|101.18|0.00|-3.14| +36|2023-10-06T22:01:03.6500000-07:00|7530|3| +38|2023-10-06T22:01:03.6500000-07:00|40021585|Zeromus|005A5A00|16047810|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T22:01:03.6950000-07:00|10FF000B|Pusu Rosu|00010D2C|40545|79209|8264|10000|0||99.75|99.17|0.00|3.13|1803|0|0|01|02000A95|01|411B580E|| +26|2023-10-06T22:01:03.6950000-07:00|A95|Liturgy of the Bell|9.71|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|01|79209|79209| +38|2023-10-06T22:01:03.6950000-07:00|10FF000B|Pusu Rosu|005A5A18|40545|79209|8264|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +37|2023-10-06T22:01:03.7390000-07:00|10FF0003|Gegehi Gehi|00010D2C|30569||||||100.08|99.96|-0.02|-3.14| +37|2023-10-06T22:01:03.7390000-07:00|40021585|Zeromus|00010D2E|16040147||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:03.7390000-07:00|10FF000A|Dukaro Nezikaro|00010D2E|59275||||||100.02|101.18|0.00|-3.14| +22|2023-10-06T22:01:03.7390000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|2EC50000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|61024|79209|8264|10000|||99.75|99.17|0.00|3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D30|0|8| +22|2023-10-06T22:01:03.7390000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|303D0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D30|1|8| +22|2023-10-06T22:01:03.7390000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|30A90000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|51540|73814|5300|10000|||100.08|99.96|-0.02|-3.14|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D30|2|8| +22|2023-10-06T22:01:03.7390000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|200004|4B320000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|57089|90216|10000|10000|||100.24|100.85|0.00|-3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D30|3|8| +22|2023-10-06T22:01:03.7390000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|200004|4ACB0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|57844|83502|10000|10000|||100.02|101.18|0.00|-3.14|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D30|4|8| +22|2023-10-06T22:01:03.7390000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|200004|4B230000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|95276|129844|10000|10000|||99.78|91.20|0.00|3.12|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D30|5|8| +22|2023-10-06T22:01:03.7390000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|2F590000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|58226|81809|4150|10000|||100.05|101.70|0.00|-3.14|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D30|6|8| +22|2023-10-06T22:01:03.7390000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|30860000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|87699|129071|7300|10000|||99.88|88.04|0.00|3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D30|7|8| +21|2023-10-06T22:01:03.7390000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16047810|40478540|10000|10000|||100.00|80.10|0.00|0.00|87699|129071|7300|10000|||99.88|88.04|0.00|3.13|00010D31|0|1| +31|2023-10-06T22:01:03.7390000-07:00|10FF0001||||| +37|2023-10-06T22:01:03.7830000-07:00|10FF0008|Kokosaze Lulusaze|00010D2C|33775||||||100.24|100.85|0.00|-3.13| +21|2023-10-06T22:01:03.7830000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|413B0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|16047810|40478540|10000|10000|||100.00|80.10|0.00|0.00|58226|81809|4150|10000|||100.05|101.70|0.00|-3.14|00010D32|0|1| +21|2023-10-06T22:01:03.7830000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|722003|2A0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16047810|40478540|10000|10000|||100.00|80.10|0.00|0.00|51540|73814|5300|10000|||100.08|99.96|-0.02|-3.14|00010D33|0|1| +261|2023-10-06T22:01:03.3070000-07:00|Change|10FF0006||| +37|2023-10-06T22:01:03.8270000-07:00|10FF000A|Dukaro Nezikaro|00010D2C|35899||||||100.02|101.18|0.00|-3.14| +37|2023-10-06T22:01:03.8720000-07:00|10FF0006|Wowobora Gogobora|00010D2C|36726||||||100.05|101.70|0.00|-3.14| +37|2023-10-06T22:01:03.9190000-07:00|10FF0007|Kehabiqo Febiqo|00010D2D|121244|155812|10000|10000|0||99.78|91.20|0.00|3.12|1500|0|0|01|07000057|0|41200000|| +26|2023-10-06T22:01:03.9190000-07:00|57|Thrill of Battle|10.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:01:03.9190000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121244|155812|10000|10000|0||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:01:03.9610000-07:00|40021585|Zeromus|8B3A|Sable Thread|40021585|Zeromus|49|8000|1B|8B3A8000|0|0|0|0|0|0|0|0|0|0|0|0|16040147|40478540|10000|10000|||100.00|80.10|0.00|0.00|16040147|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D34|0|1| +21|2023-10-06T22:01:04.0050000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C722003|4DF40000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|16040147|40478540|10000|10000|||100.00|80.10|0.00|0.00|33775|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D35|0|1| +38|2023-10-06T22:01:04.0050000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87699|129071|7300|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:04.0050000-07:00|31|Medicated|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|296B|129071|129071| +12|2023-10-06T22:01:03.6110000-07:00|19|3472|389|3999|247|412|390|3472|976|2540|247|412|2182|400|400|0|529|4000174A6D2E55| +21|2023-10-06T22:01:04.1390000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|200004|22820000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|40545|79209|8264|10000|||99.75|99.17|0.00|3.13|54201|77430|10000|10000|||100.66|96.79|0.00|-2.07|00010D36|0|1| +39|2023-10-06T22:01:04.1390000-07:00|10FF0008|Kokosaze Lulusaze|34677|90216|10000|10000|||100.24|100.85|0.00|-3.13| +21|2023-10-06T22:01:04.1400000-07:00|10FF000B|Pusu Rosu|1D89|Swiftcast|10FF000B|Pusu Rosu|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|40545|79209|8264|10000|||99.75|99.17|0.00|3.13|40545|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D37|0|1| +38|2023-10-06T22:01:04.1400000-07:00|10FF000B|Pusu Rosu|005A5A18|40545|79209|8264|10000|0||99.75|99.17|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:04.1400000-07:00|A7|Swiftcast|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T22:01:04.1840000-07:00|10FF000B|Pusu Rosu|00010D30|52518|79209|8264|10000|0||99.75|99.17|0.00|3.13|1800|0|0|01|050000A7|0|C1200000|| +37|2023-10-06T22:01:04.2740000-07:00|40021585|Zeromus|00010D31|16038331||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:04.2740000-07:00|10FF000B|Pusu Rosu|00010D37|52518|79209|8264|10000|0||99.75|99.17|0.00|3.13|1800|0|0|01|050000A7|0|41200000|| +22|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|12FD0000|610E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|00010D38|0|8| +22|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|200004|1EFC0000|930E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|52518|79209|8264|10000|||99.75|99.17|0.00|3.13|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|00010D38|1|8| +22|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|13350000|BB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|30569|73814|5300|10000|||100.08|99.96|-0.02|-3.14|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|00010D38|2|8| +22|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|12AF0000|E40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|34677|90216|10000|10000|||100.24|100.85|0.00|-3.13|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|00010D38|3|8| +22|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|127E0000|960E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|35899|83502|10000|10000|||100.02|101.18|0.00|-3.14|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|00010D38|4|8| +22|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|1D860000|3C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|36726|81809|3850|10000|||100.05|101.70|0.00|-3.14|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|00010D38|5|8| +22|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|237F0000|CB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|121244|155812|10000|10000|||99.78|91.20|0.00|3.12|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|00010D38|6|8| +22|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|12EE0000|490E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|87699|129071|7300|10000|||99.88|88.04|0.00|3.13|46135|81541|2400|10000|||100.08|98.92|0.00|3.08|00010D38|7|8| +38|2023-10-06T22:01:04.2740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121244|155812|10000|10000|9||99.78|91.20|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:04.2740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T22:01:04.2740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|34677|90216|10000|10000|8||100.24|100.85|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T22:01:04.2740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:01:04.2740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|36726|81809|3850|10000|14||100.05|101.70|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:04.2740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:01:04.2740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87699|129071|7300|10000|6||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:04.2740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:01:04.2740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|46135|81541|1400|10000|9||100.08|98.92|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:04.2740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:01:04.2740000-07:00|10FF0003|Gegehi Gehi|005A5A23|30569|73814|5300|10000|10||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:04.2740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:01:04.2740000-07:00|10FF000B|Pusu Rosu|005A5A18|52518|79209|8264|10000|16||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:04.2740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:01:04.2740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35899|83502|10000|10000|9||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:04.2740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:01:04.3190000-07:00|10FF0004|Buhojaqe Zijaqe|00010D30|58484||||||100.08|98.92|0.00|3.08| +37|2023-10-06T22:01:04.3630000-07:00|40021585|Zeromus|00010D33|16027568||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:04.4080000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|32EC0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|16027568|40478540|10000|10000|||100.00|80.10|0.00|0.00|87699|129071|7300|10000|||99.88|88.04|0.00|3.13|00010D39|0|1| +21|2023-10-06T22:01:04.4080000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B110000|104|2118000|0|0|0|0|0|0|0|0|0|0|0|0|16027568|40478540|10000|10000|||100.00|80.10|0.00|0.00|35899|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D3A|0|1| +38|2023-10-06T22:01:04.4080000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|87699|129071|7300|10000|6||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:04.4080000-07:00|76E|Sword Oath|23.05|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T22:01:04.4530000-07:00|10FF0003|Gegehi Gehi|00010D30|43026||||||100.08|99.96|-0.02|-3.14| +21|2023-10-06T22:01:04.4530000-07:00|400218E7|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|154003|18340000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|16027568|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05|00010D3B|0|1| +37|2023-10-06T22:01:04.4970000-07:00|10FF000B|Pusu Rosu|00010D2F|65319||||||99.75|99.17|0.00|3.13| +21|2023-10-06T22:01:04.4970000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|121244|155812|10000|10000|||99.78|91.20|0.00|3.12|16027568|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D3C|0|1| +21|2023-10-06T22:01:04.5420000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16027568|40478540|10000|10000|||100.00|80.10|0.00|0.00|121244|155812|10000|10000|||99.78|91.20|0.00|3.12|00010D3D|0|1| +20|2023-10-06T22:01:04.5420000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|100.08|99.96|-0.02|-3.14| +261|2023-10-06T22:01:04.1610000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T22:01:04.5860000-07:00|10FF0008|Kokosaze Lulusaze|00010D30|53927||||||100.24|100.85|0.00|-3.13| +261|2023-10-06T22:01:04.1610000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:01:04.6310000-07:00|10FF0004|Buhojaqe Zijaqe|00010D2F|77764||||||100.08|98.92|0.00|3.08| +37|2023-10-06T22:01:04.7200000-07:00|10FF000A|Dukaro Nezikaro|00010D30|55046||||||100.02|101.18|0.00|-3.14| +21|2023-10-06T22:01:04.7200000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EB00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16027568|40478540|10000|10000|||100.00|80.10|0.00|0.00|53927|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D3E|0|1| +37|2023-10-06T22:01:04.7650000-07:00|10FF0003|Gegehi Gehi|00010D2F|55632||||||100.08|99.96|-0.02|-3.14| +37|2023-10-06T22:01:04.8080000-07:00|40021585|Zeromus|00010D35|16007612||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:04.8080000-07:00|10FF0001|Sesuga Sapisuga|88989|129071|7500|10000|||99.88|88.04|0.00|3.13| +261|2023-10-06T22:01:04.3590000-07:00|Change|10FF0001||| +37|2023-10-06T22:01:04.8540000-07:00|40021585|Zeromus|00010D32|15990913||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:04.8540000-07:00|10FF0007|Kehabiqo Febiqo|00010D30|140479||||||99.78|91.20|0.00|3.12| +22|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|1F060000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D3F|0|8| +22|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|1E4C0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D3F|1|8| +22|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|200004|2F330000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|43026|73814|5300|10000|||100.08|99.96|-0.02|-3.14|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D3F|2|8| +22|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|200004|2FAE0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|53927|90216|10000|10000|||100.24|100.85|0.00|-3.13|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D3F|3|8| +22|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|200004|2E850000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|55046|83502|10000|10000|||100.02|101.18|0.00|-3.14|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D3F|4|8| +22|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|1E950000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|36726|81809|3850|10000|||100.05|101.70|0.00|-3.14|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D3F|5|8| +22|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|24260000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|121244|155812|10000|10000|||99.78|91.20|0.00|3.12|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D3F|6|8| +22|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|200004|304F0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|87699|129071|7300|10000|||99.88|88.04|0.00|3.13|65319|79209|8264|10000|||99.75|99.17|0.00|3.13|00010D3F|7|8| +38|2023-10-06T22:01:04.8540000-07:00|10FF000B|Pusu Rosu|005A5A18|65319|79209|7264|10000|16||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:04.8540000-07:00|A7|Swiftcast|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:01:04.4530000-07:00|Change|10FF000B||| +37|2023-10-06T22:01:04.8980000-07:00|10FF0008|Kokosaze Lulusaze|00010D2F|66736||||||100.24|100.85|0.00|-3.13| +37|2023-10-06T22:01:04.9420000-07:00|10FF000B|Pusu Rosu|00010D36|74153||||||99.75|99.17|0.00|3.13| +37|2023-10-06T22:01:04.9420000-07:00|40021585|Zeromus|00010D3A|15988080||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:04.9420000-07:00|10FF000A|Dukaro Nezikaro|00010D3A|55575||||||100.02|101.18|0.00|-3.14| +37|2023-10-06T22:01:04.9860000-07:00|10FF0006|Wowobora Gogobora|00010D30|48847||||||100.05|101.70|0.00|-3.14| +22|2023-10-06T22:01:04.9860000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0001|Sesuga Sapisuga|750603|53C10000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|88989|129071|7500|10000|||99.88|88.04|0.00|3.13|44|44|0|10000|||100.00|72.50|0.00|-0.01|00010D40|0|8| +22|2023-10-06T22:01:04.9860000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0007|Kehabiqo Febiqo|750603|62C40000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|140479|155812|10000|10000|||99.78|91.20|0.00|3.12|44|44|0|10000|||100.00|72.50|0.00|-0.01|00010D40|1|8| +22|2023-10-06T22:01:04.9860000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0004|Buhojaqe Zijaqe|750603|30CD0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08|44|44|0|10000|||100.00|72.50|0.00|-0.01|00010D40|2|8| +22|2023-10-06T22:01:04.9860000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000B|Pusu Rosu|750603|23400000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|74153|79209|7264|10000|||99.75|99.17|0.00|3.13|44|44|0|10000|||100.00|72.50|0.00|-0.01|00010D40|3|8| +22|2023-10-06T22:01:04.9860000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0003|Gegehi Gehi|750603|30A80000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|55632|73814|5300|10000|||100.08|99.96|-0.02|-3.14|44|44|0|10000|||100.00|72.50|0.00|-0.01|00010D40|4|8| +22|2023-10-06T22:01:04.9860000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0008|Kokosaze Lulusaze|750603|39BC0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|66736|90216|10000|10000|||100.24|100.85|0.00|-3.13|44|44|0|10000|||100.00|72.50|0.00|-0.01|00010D40|5|8| +22|2023-10-06T22:01:04.9860000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF000A|Dukaro Nezikaro|750603|36EB0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|55575|83502|10000|10000|||100.02|101.18|0.00|-3.14|44|44|0|10000|||100.00|72.50|0.00|-0.01|00010D40|6|8| +22|2023-10-06T22:01:04.9860000-07:00|400215A3|Zeromus|8B3B|Sable Thread|10FF0006|Wowobora Gogobora|750603|216F0000|1B|8B3B8000|0|0|0|0|0|0|0|0|0|0|0|0|36726|81809|3850|10000|||100.05|101.70|0.00|-3.14|44|44|0|10000|||100.00|72.50|0.00|-0.01|00010D40|7|8| +37|2023-10-06T22:01:05.0310000-07:00|10FF000A|Dukaro Nezikaro|00010D2F|75265||||||100.02|101.18|0.00|-3.14| +37|2023-10-06T22:01:05.0760000-07:00|40021585|Zeromus|00010D3D|15983240||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:05.0760000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|7DA|66736|90216|10000|10000|||100.24|100.85|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|125B|140479|155812|10000|10000|||99.78|91.20|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|9D8|88989|129071|7500|10000|||99.88|88.04|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|FC1|77764|81541|1400|10000|||100.08|98.92|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF000B|Pusu Rosu|HoT|798|FC9|74153|79209|7264|10000|||99.75|99.17|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF0003|Gegehi Gehi|HoT|798|FA0|55632|73814|5300|10000|||100.08|99.96|-0.02|-3.14|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|FF1|66736|90216|10000|10000|||100.24|100.85|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|9E0|55575|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF0006|Wowobora Gogobora|HoT|798|97C|36726|81809|3850|10000|||100.05|101.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +24|2023-10-06T22:01:05.0760000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|760|77764|81541|1400|10000|||100.08|98.92|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|77764|81541|1400|10000|||100.08|98.92|0.00|3.08| +38|2023-10-06T22:01:05.0760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|145178|155812|10000|10000|9||99.78|91.20|0.00|3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:05.0760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T22:01:05.0760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72827|90216|10000|10000|8||100.24|100.85|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T22:01:05.0760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:01:05.0760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|51275|81809|3850|10000|14||100.05|101.70|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:05.0760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:01:05.0760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|91509|129071|7500|10000|6||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:05.0760000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:01:05.0760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1950|10000|9||100.08|98.92|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:05.0760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:01:05.0760000-07:00|10FF0003|Gegehi Gehi|005A5A23|59632|73814|5300|10000|10||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:05.0760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:01:05.0760000-07:00|10FF000B|Pusu Rosu|005A5A18|78194|79209|7264|10000|16||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:05.0760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:01:05.0760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77793|83502|10000|10000|9||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:05.0760000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:01:05.1200000-07:00|10FF0001|Sesuga Sapisuga|00010D30|103931||||||99.88|88.04|0.00|3.13| +37|2023-10-06T22:01:05.1640000-07:00|10FF0006|Wowobora Gogobora|00010D2F|64138||||||100.05|101.70|0.00|-3.14| +24|2023-10-06T22:01:05.1640000-07:00|10FF0006|Wowobora Gogobora|HoT|0|752|51275|81809|3850|10000|||100.05|101.70|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1950|10000|||100.08|98.92|0.00|3.08| +21|2023-10-06T22:01:05.1640000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|21650000|A3E|340000|200004|3DD88000|11B|258000|0|0|0|0|0|0|0|0|15983240|40478540|10000|10000|||100.00|80.10|0.00|0.00|145178|155812|10000|10000|||99.78|91.20|0.00|3.12|00010D41|0|1| +38|2023-10-06T22:01:05.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|66012|81809|3850|10000|14||100.05|101.70|0.00|-3.14|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:01:05.2080000-07:00|10FF0006|Wowobora Gogobora|66830|81809|4050|10000|||100.05|101.70|0.00|-3.14| +261|2023-10-06T22:01:04.7850000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:01:05.2980000-07:00|10FF0007|Kehabiqo Febiqo|00010D3C|145178|155812|10000|10000|0||99.78|91.20|0.00|3.12|1500|0|0|01|09000000|0|0|| +37|2023-10-06T22:01:05.2980000-07:00|10FF0001|Sesuga Sapisuga|00010D40|82490|129071|7500|10000|0||99.88|88.04|0.00|3.13|1300|0|0|01|06000000|0|0|| +37|2023-10-06T22:01:05.2980000-07:00|10FF0007|Kehabiqo Febiqo|00010D2F|155812||||||99.78|91.20|0.00|3.12| +20|2023-10-06T22:01:05.2980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.08|98.92|0.00|3.08| +38|2023-10-06T22:01:05.2980000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|0||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:05.2980000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T22:01:05.2980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|82490|129071|7500|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:05.2980000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T22:01:05.3420000-07:00|10FF0007|Kehabiqo Febiqo|00010D40|130528||||||99.78|91.20|0.00|3.12| +39|2023-10-06T22:01:05.3420000-07:00|10FF000B|Pusu Rosu|78986|79209|7545|10000|||99.75|99.17|0.00|3.13| +39|2023-10-06T22:01:05.3420000-07:00|10FF000A|Dukaro Nezikaro|78628|83502|10000|10000|||100.02|101.18|0.00|-3.14| +37|2023-10-06T22:01:05.3870000-07:00|10FF0004|Buhojaqe Zijaqe|00010D40|69048|81541|1950|10000|0||100.08|98.92|0.00|3.08|1C02|0|0|01|09000000|0|0|| +37|2023-10-06T22:01:05.3870000-07:00|10FF0004|Buhojaqe Zijaqe|00010D38|73909||||||100.08|98.92|0.00|3.08| +39|2023-10-06T22:01:05.3870000-07:00|400218EA|Liturgic Bell|75049|75049|10000|10000|||95.31|96.36|0.00|1.58| +24|2023-10-06T22:01:05.3870000-07:00|10FF0003|Gegehi Gehi|HoT|0|7EA|59632|73814|5300|10000|||100.08|99.96|-0.02|-3.14|10FF0003|Gegehi Gehi|0|59632|73814|5300|10000|||100.08|99.96|-0.02|-3.14| +38|2023-10-06T22:01:05.3870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73909|81541|1950|10000|0||100.08|98.92|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:05.3870000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:01:05.3870000-07:00|10FF0003|Gegehi Gehi|005A5A23|61658|73814|5300|10000|10||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:05.4320000-07:00|10FF000B|Pusu Rosu|00010D40|69962|79209|7545|10000|0||99.75|99.17|0.00|3.13|1803|0|0|02|02000000|0|0|||||| +37|2023-10-06T22:01:05.4320000-07:00|10FF0001|Sesuga Sapisuga|00010D2F|94853||||||99.88|88.04|0.00|3.13| +24|2023-10-06T22:01:05.4320000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|746|78628|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|73909|81541|1950|10000|||100.08|98.92|0.00|3.09| +38|2023-10-06T22:01:05.4320000-07:00|10FF000B|Pusu Rosu|005A5A18|69962|79209|7545|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +30|2023-10-06T22:01:05.4320000-07:00|A95|Liturgy of the Bell|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|01|79209|79209| +30|2023-10-06T22:01:05.4320000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:01:05.4320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|80490|83502|10000|10000|9||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:01:05.4770000-07:00|40021585|Zeromus|00010D3E|15979480||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:05.4770000-07:00|10FF0003|Gegehi Gehi|00010D40|49202|73814|5300|10000|0||100.08|99.96|-0.02|-3.14|2304|0|0|01|02000000|0|0|| +37|2023-10-06T22:01:05.4770000-07:00|40021585|Zeromus|00010D3B|15973284||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:01:05.4770000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|2F010000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|78986|79209|7545|10000|||99.75|99.17|0.00|3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D42|0|8| +22|2023-10-06T22:01:05.4770000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|2EB70000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73909|81541|1950|10000|||100.08|98.92|0.00|3.09|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D42|1|8| +22|2023-10-06T22:01:05.4770000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|2E4B0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|61658|73814|5300|10000|||100.08|99.96|-0.02|-3.14|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D42|2|8| +22|2023-10-06T22:01:05.4770000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|2E800000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|66830|81809|4050|10000|||100.07|101.67|0.00|3.09|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D42|3|8| +22|2023-10-06T22:01:05.4770000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|200004|47F80000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|72827|90216|10000|10000|||100.24|100.85|0.00|-3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D42|4|8| +22|2023-10-06T22:01:05.4770000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|200004|47290000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|78628|83502|10000|10000|||100.02|101.18|0.00|-3.14|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D42|5|8| +22|2023-10-06T22:01:05.4770000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|39810000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|130528|155812|10000|10000|||99.78|91.20|0.00|3.12|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D42|6|8| +22|2023-10-06T22:01:05.4770000-07:00|400218EA|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|2FDD0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|82490|129071|7500|10000|||99.88|88.04|0.00|3.13|75049|75049|10000|10000|||95.31|96.36|0.00|1.58|00010D42|7|8| +39|2023-10-06T22:01:05.4770000-07:00|10FF0007|Kehabiqo Febiqo|132086|155812|10000|10000|||99.78|91.20|0.00|3.12| +24|2023-10-06T22:01:05.4770000-07:00|10FF000B|Pusu Rosu|HoT|0|C2A|78986|79209|7545|10000|||99.75|99.17|0.00|3.13|400218E7|Demi-Phoenix|0|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05| +38|2023-10-06T22:01:05.4770000-07:00|10FF0003|Gegehi Gehi|005A5A23|49202|73814|5300|10000|0||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:05.4770000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:01:05.4770000-07:00|10FF000B|Pusu Rosu|005A5A18|73076|79209|7545|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +37|2023-10-06T22:01:05.5210000-07:00|10FF0008|Kokosaze Lulusaze|00010D40|58047|90216|10000|10000|0||100.24|100.85|0.00|-3.13|1F05|0|0|01|04000000|0|0|| +37|2023-10-06T22:01:05.5210000-07:00|10FF000B|Pusu Rosu|00010D38|79209||||||99.75|99.17|0.00|3.13| +38|2023-10-06T22:01:05.5210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58047|90216|10000|10000|0||100.24|100.85|0.00|-3.13|0|0|0||||||||||||| +30|2023-10-06T22:01:05.5210000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +37|2023-10-06T22:01:05.5660000-07:00|10FF000A|Dukaro Nezikaro|00010D40|66431|83502|10000|10000|0||100.02|101.18|0.00|-3.14|1E06|0|0|01|06000000|0|0|| +24|2023-10-06T22:01:05.5660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1E2B|132086|155812|10000|10000|||99.78|91.20|0.00|3.12|10FF0007|Kehabiqo Febiqo|0|132086|155812|10000|10000|||99.78|91.20|0.00|3.12| +21|2023-10-06T22:01:05.5660000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|22FA0000|104|6888000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|15973284|40478540|10000|10000|||100.00|80.10|0.00|0.00|80490|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D43|0|1| +38|2023-10-06T22:01:05.5660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|139809|155812|10000|10000|0||99.78|91.20|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:01:05.5660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|66431|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:05.5660000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:01:05.6090000-07:00|10FF0006|Wowobora Gogobora|00010D40|58271|81809|4050|10000|0||100.08|101.59|0.00|3.06|1B07|0|0|01|06000000|0|0|| +38|2023-10-06T22:01:05.6090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|58271|81809|4050|10000|0||100.08|101.59|0.00|3.06|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:05.6090000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +261|2023-10-06T22:01:05.2280000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T22:01:05.6540000-07:00|10FF0003|Gegehi Gehi|00010D38|54119||||||100.08|99.96|-0.02|-3.14| +24|2023-10-06T22:01:05.6540000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2219|94853|129071|7500|10000|||99.88|88.04|0.00|3.13|10FF0001|Sesuga Sapisuga|0|94853|129071|7500|10000|||99.88|88.04|0.00|3.13| +38|2023-10-06T22:01:05.6540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103582|129071|7500|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:05.6540000-07:00|A72|Holy Sheltron|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:01:05.6980000-07:00|40021585|Zeromus|00010D39|15960248||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:05.6980000-07:00|10FF0001|Sesuga Sapisuga|00010D39|103582|129071|7900|10000|0||99.88|88.04|0.00|3.13|1300|0|0|0| +37|2023-10-06T22:01:05.6980000-07:00|10FF000B|Pusu Rosu|00010D3F|79209|79209|7545|10000|0||99.75|99.17|0.00|3.13|1800|0|0|01|02000096|0|41700000|| +26|2023-10-06T22:01:05.6980000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T22:01:05.7420000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-1.19| +38|2023-10-06T22:01:05.7420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|139809|155812|10000|10000|0||99.78|91.20|0.00|3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:05.7420000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|155812|155812| +38|2023-10-06T22:01:05.7420000-07:00|40021585|Zeromus|005A5A00|15960248|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T22:01:05.7420000-07:00|35C|Dismantled|0.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|90216| +37|2023-10-06T22:01:05.7870000-07:00|40021585|Zeromus|00010D41|15951699||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:05.7870000-07:00|10FF0007|Kehabiqo Febiqo|00010D41|155641||||||99.78|91.20|0.00|3.12| +37|2023-10-06T22:01:05.7870000-07:00|10FF0008|Kokosaze Lulusaze|00010D38|62830||||||100.24|100.85|0.00|-3.13| +37|2023-10-06T22:01:05.8320000-07:00|10FF0004|Buhojaqe Zijaqe|00010D3F|81541|81541|1950|10000|0||100.08|98.92|0.00|3.13|1C01|0|0|01|09000096|0|41700000|| +26|2023-10-06T22:01:05.8320000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T22:01:05.4280000-07:00|Change|10FF0001||| +261|2023-10-06T22:01:05.4280000-07:00|Change|10FF000B||| +37|2023-10-06T22:01:05.9210000-07:00|10FF000A|Dukaro Nezikaro|00010D38|71165||||||100.02|101.18|0.00|-3.14| +37|2023-10-06T22:01:05.9660000-07:00|10FF0003|Gegehi Gehi|00010D3F|66202|73814|5300|10000|0||100.08|99.96|-0.02|-3.14|2302|0|0|01|02000096|0|41700000|| +26|2023-10-06T22:01:05.9660000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T22:01:05.9660000-07:00|40021585|Zeromus|00010D43|15942745||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:05.9660000-07:00|10FF000A|Dukaro Nezikaro|00010D43|72837||||||100.02|101.18|0.00|-3.14| +39|2023-10-06T22:01:05.9660000-07:00|10FF0003|Gegehi Gehi|66940|73814|5500|10000|||100.08|99.96|-0.02|-3.14| +21|2023-10-06T22:01:05.9660000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|456003|65110000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|15951699|40478540|10000|10000|||100.00|80.10|0.00|0.00|54119|73814|5300|10000|||100.08|99.96|-0.02|-3.14|00010D44|0|1| +38|2023-10-06T22:01:05.9660000-07:00|10FF0003|Gegehi Gehi|005A5A23|66940|73814|5300|10000|0||100.08|99.96|-0.02|-3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:01:05.9660000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:01:05.9660000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:01:05.5190000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T22:01:06.0090000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|84A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15951699|40478540|10000|10000|||100.00|80.10|0.00|0.00|103582|129071|7900|10000|||99.88|88.04|0.00|3.13|00010D45|0|1| +31|2023-10-06T22:01:06.0090000-07:00|10FF0001||||| +37|2023-10-06T22:01:06.0540000-07:00|10FF0006|Wowobora Gogobora|00010D38|65829||||||100.18|100.88|0.00|3.00| +21|2023-10-06T22:01:06.0540000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15942745|40478540|10000|10000|||100.00|80.10|0.00|0.00|58271|81809|4050|10000|||100.18|100.88|0.00|3.00|00010D46|0|1| +37|2023-10-06T22:01:06.0990000-07:00|10FF0008|Kokosaze Lulusaze|00010D3F|75036|90216|10000|10000|0||100.24|100.85|0.00|-3.13|1F03|0|0|01|04000096|0|41700000|| +26|2023-10-06T22:01:06.0990000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +39|2023-10-06T22:01:06.0990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2150|10000|||100.08|98.92|0.00|-3.14| +37|2023-10-06T22:01:06.1880000-07:00|10FF0007|Kehabiqo Febiqo|00010D38|155812||||||99.78|91.20|0.00|3.12| +37|2023-10-06T22:01:06.1880000-07:00|10FF0003|Gegehi Gehi|00010D42|73814||||||100.08|99.96|-0.02|-3.14| +37|2023-10-06T22:01:06.2340000-07:00|10FF000A|Dukaro Nezikaro|00010D3F|83502|83502|10000|10000|0||100.02|101.18|0.00|-3.14|1E04|0|0|01|06000096|0|41700000|| +26|2023-10-06T22:01:06.2340000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T22:01:06.2340000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|22830000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|15942745|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2150|10000|||100.08|98.92|0.00|-3.14|00010D47|0|1| +21|2023-10-06T22:01:06.2770000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|154003|4D540000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|15942745|40478540|10000|10000|||100.00|80.10|0.00|0.00|65829|81809|4050|10000|||100.18|100.88|0.00|3.00|00010D48|0|1| +21|2023-10-06T22:01:06.2770000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15942745|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5300|10000|||100.08|99.96|-0.02|-3.14|00010D49|0|1| +37|2023-10-06T22:01:06.3220000-07:00|10FF0001|Sesuga Sapisuga|00010D38|108428||||||99.88|88.04|0.00|3.13| +37|2023-10-06T22:01:06.3220000-07:00|10FF0006|Wowobora Gogobora|00010D42|77733||||||100.18|100.88|0.00|3.00| +37|2023-10-06T22:01:06.3660000-07:00|10FF0006|Wowobora Gogobora|00010D3F|81809|81809|3750|10000|0||100.18|100.88|0.00|3.00|1B05|0|0|01|06000096|0|41700000|| +26|2023-10-06T22:01:06.3660000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +261|2023-10-06T22:01:05.9800000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:01:06.3660000-07:00|400218E7|Demi-Phoenix|74223|77698|10000|10000|||101.46|95.38|0.00|-3.05| +261|2023-10-06T22:01:05.9800000-07:00|Change|400218E7||||||||| +38|2023-10-06T22:01:06.4110000-07:00|400218F3||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:01:06.4110000-07:00|400218F3||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:01:06.4550000-07:00|10FF0008|Kokosaze Lulusaze|00010D42|90216||||||100.24|100.85|0.00|-3.13| +37|2023-10-06T22:01:06.5010000-07:00|10FF0007|Kehabiqo Febiqo|00010D3F|155812|155812|10000|10000|0||99.78|91.20|0.00|3.12|1506|0|0|01|08000096|0|41700000|| +26|2023-10-06T22:01:06.5010000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|155812|79209| +21|2023-10-06T22:01:06.5010000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44724003|4C610000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|15942745|40478540|10000|10000|||100.00|80.10|0.00|0.00|75036|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D4A|0|1| +37|2023-10-06T22:01:06.5450000-07:00|40021585|Zeromus|00010D45|15940623||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:06.1000000-07:00|Change|400218EA||| +261|2023-10-06T22:01:06.1000000-07:00|Change|400218EA||| +261|2023-10-06T22:01:06.1900000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T22:01:06.5900000-07:00|40021585|Zeromus|00010D46|15940553||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:06.5900000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|83D0000|104|1898000|0|0|0|0|0|0|0|0|0|0|0|0|15940623|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D4B|0|1| +37|2023-10-06T22:01:06.6350000-07:00|10FF0001|Sesuga Sapisuga|00010D3F|120795|129071|7900|10000|0||99.88|88.04|0.00|3.13|1307|0|0|01|06000096|0|41700000|| +26|2023-10-06T22:01:06.6350000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T22:01:06.6800000-07:00|40021585|Zeromus|DoT|0|12F6|15940623|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14| +21|2023-10-06T22:01:06.6800000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15940623|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14|00010D4C|0|1| +38|2023-10-06T22:01:06.6800000-07:00|40021585|Zeromus|005A5A00|15935699|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T22:01:06.2820000-07:00|Add|400218F3||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:01:06.2820000-07:00|400218F3|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.17|99.14|0.00|0.01| +261|2023-10-06T22:01:06.2820000-07:00|Change|400218F3||| +37|2023-10-06T22:01:06.7670000-07:00|40021585|Zeromus|00010D44|15909826||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:06.8130000-07:00|40021585|Zeromus|00010D49|15909799||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:06.8130000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|712003|472E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15909826|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||99.78|91.20|0.00|3.12|00010D4D|0|1| +37|2023-10-06T22:01:06.8570000-07:00|10FF0001|Sesuga Sapisuga|00010D42|129071||||||99.88|88.04|0.00|3.13| +21|2023-10-06T22:01:06.9460000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|40CE0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|15909799|40478540|10000|10000|||100.00|80.10|0.00|0.00|120795|129071|7900|10000|||99.88|88.04|0.00|3.13|00010D4E|0|1| +38|2023-10-06T22:01:06.9460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:06.9460000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T22:01:06.9920000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|33AE0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|15909799|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5300|10000|||100.08|99.96|-0.02|-3.14|00010D4F|0|1| +38|2023-10-06T22:01:06.9920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|0||100.08|99.96|-0.02|-3.14|0|0|0|||||||||||||||| +30|2023-10-06T22:01:06.9920000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:01:06.5720000-07:00|Change|10FF0003||| +37|2023-10-06T22:01:07.0360000-07:00|40021585|Zeromus|00010D47|15900964||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:07.1250000-07:00|40021585|Zeromus|00010D4B|15898855||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:07.1690000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13| +37|2023-10-06T22:01:07.2140000-07:00|40021585|Zeromus|00010D4C|15898742||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:07.3030000-07:00|40021585|Zeromus|00010D4A|15879189||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:07.3480000-07:00|40021585|Zeromus|00010D48|15859393||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:07.3480000-07:00|10FF000B|Pusu Rosu|4097|Afflatus Misery|40021585|Zeromus|750003|C7670000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|15898742|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7545|10000|||99.75|99.17|0.00|3.13|00010D50|0|1| +21|2023-10-06T22:01:07.3920000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|94E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15859393|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D51|0|1| +37|2023-10-06T22:01:07.4350000-07:00|40021585|Zeromus|00010D4D|15841171||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:07.0410000-07:00|Change|400218F3||| +34|2023-10-06T22:01:07.4360000-07:00|400218F3|Carbuncle|400218F3|Carbuncle|01| +21|2023-10-06T22:01:07.5260000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2AF70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||99.78|91.20|0.00|3.12|15841171|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D52|0|1| +21|2023-10-06T22:01:07.6140000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|2F4A0000|143E|340000|200004|2FE08000|11B|2A8000|0|0|0|0|0|0|0|0|15841171|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||99.78|91.20|0.00|3.12|00010D53|0|1| +21|2023-10-06T22:01:07.6590000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|E6B0000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|15841171|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||99.88|88.04|0.00|3.13|00010D54|0|1| +20|2023-10-06T22:01:07.7030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.08|98.92|0.00|-3.14| +261|2023-10-06T22:01:07.2430000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T22:01:07.7480000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|2FDD0000|104|8F18000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|15841171|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D55|0|1| +37|2023-10-06T22:01:07.7920000-07:00|40021585|Zeromus|00010D4F|15827941||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:07.7920000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||99.88|88.04|0.00|3.13| +261|2023-10-06T22:01:07.3330000-07:00|Change|10FF0001||| +21|2023-10-06T22:01:07.8830000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5000|10000|||100.08|99.96|-0.02|-3.14|73814|73814|5000|10000|||100.08|99.96|-0.02|-3.14|00010D56|0|1| +38|2023-10-06T22:01:07.8830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|0||100.08|99.96|-0.02|-3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:01:07.8830000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:01:07.9270000-07:00|40021585|Zeromus|00010D50|15776894||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:07.9270000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|D9F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15827941|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||99.73|91.20|0.00|3.10|00010D57|0|1| +38|2023-10-06T22:01:08.0160000-07:00|40021585|Zeromus|005A5A00|15776894|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T22:01:08.0160000-07:00|4AB|Feint|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +24|2023-10-06T22:01:08.0620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1F78|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7545|10000|||99.75|99.17|0.00|3.13| +24|2023-10-06T22:01:08.0620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|B68|155812|155812|10000|10000|||98.95|91.16|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14| +24|2023-10-06T22:01:08.0620000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|9F9|129071|129071|8100|10000|||99.88|88.04|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14| +24|2023-10-06T22:01:08.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|9CD|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14| +24|2023-10-06T22:01:08.0620000-07:00|10FF000B|Pusu Rosu|HoT|798|999|79209|79209|7545|10000|||99.75|99.17|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14| +24|2023-10-06T22:01:08.0620000-07:00|10FF0003|Gegehi Gehi|HoT|798|1023|73814|73814|5000|10000|||100.08|99.96|-0.02|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14| +24|2023-10-06T22:01:08.0620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|9F7|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14| +24|2023-10-06T22:01:08.0620000-07:00|10FF0006|Wowobora Gogobora|HoT|798|9DC|81809|81809|3750|10000|||100.18|100.88|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14| +24|2023-10-06T22:01:08.0620000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|989|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14| +24|2023-10-06T22:01:08.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1AD1|81541|81541|1750|10000|||100.08|98.92|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|7545|10000|||99.75|99.17|0.00|3.13| +38|2023-10-06T22:01:08.0620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|0||98.95|91.16|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:08.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T22:01:08.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.24|100.85|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T22:01:08.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:01:08.0620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3750|10000|0||100.18|100.88|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:08.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:01:08.0620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:08.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:01:08.0620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2300|10000|0||100.08|98.92|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:08.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:01:08.0620000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|0||100.08|99.96|-0.02|-3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:01:08.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:01:08.0630000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7545|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +26|2023-10-06T22:01:08.0630000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +261|2023-10-06T22:01:07.7470000-07:00|Change|10FF0006||| +38|2023-10-06T22:01:08.0630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:08.0630000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:01:08.1500000-07:00|40021585|Zeromus|00010D51|15774512||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:08.1500000-07:00|10FF0006|Wowobora Gogobora|HoT|0|19F1|81809|81809|3750|10000|||100.18|100.88|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7545|10000|||99.75|99.17|0.00|3.13| +38|2023-10-06T22:01:08.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3750|10000|0||100.18|100.88|0.00|-3.13|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:01:08.1930000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3950|10000|||100.18|100.88|0.00|-3.13| +37|2023-10-06T22:01:08.2380000-07:00|40021585|Zeromus|00010D4E|15757922||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:08.2380000-07:00|10FF0001|Sesuga Sapisuga|00010D4E|129071|129071|8500|10000|0||99.88|88.04|0.00|3.13|1300|0|0|0| +37|2023-10-06T22:01:08.2820000-07:00|40021585|Zeromus|00010D55|15745669||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:08.2820000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15774512|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||99.88|88.04|0.00|3.13|00010D58|0|1| +31|2023-10-06T22:01:08.2820000-07:00|10FF0001||||| +37|2023-10-06T22:01:08.3270000-07:00|10FF0007|Kehabiqo Febiqo|00010D52|144813||||||97.37|91.07|0.00|3.09| +39|2023-10-06T22:01:08.3710000-07:00|10FF000B|Pusu Rosu|79209|79209|7826|10000|||99.75|99.17|0.00|3.13| +39|2023-10-06T22:01:08.3710000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14| +24|2023-10-06T22:01:08.3710000-07:00|10FF0003|Gegehi Gehi|HoT|0|1FC7|73814|73814|5000|10000|||100.08|99.96|-0.02|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2300|10000|||100.08|98.92|0.00|-3.14| +38|2023-10-06T22:01:08.3710000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|0||100.08|99.96|-0.02|-3.14|0|0|0|||||||||||||||| +261|2023-10-06T22:01:07.9740000-07:00|Change|10FF000B||| +24|2023-10-06T22:01:08.4160000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1A87|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|7545|10000|||99.75|99.17|0.00|3.13| +21|2023-10-06T22:01:08.4160000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|712003|19D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15745669|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8500|10000|||99.88|88.04|0.00|3.13|00010D59|0|1| +38|2023-10-06T22:01:08.4160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:01:08.4610000-07:00|40021585|Zeromus|00010D57|15742182||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:08.4610000-07:00|10FF0007|Kehabiqo Febiqo|146371|155812|10000|10000|||96.68|91.03|0.00|3.09| +24|2023-10-06T22:01:08.4610000-07:00|10FF000B|Pusu Rosu|HoT|0|1F3F|79209|79209|7826|10000|||99.75|99.17|0.00|3.13|400218E7|Demi-Phoenix|0|0|77698|0|10000|||101.46|95.38|0.00|-3.05| +38|2023-10-06T22:01:08.4610000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7826|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +21|2023-10-06T22:01:08.5050000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|289F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|144813|155812|10000|10000|||96.68|91.03|0.00|3.09|54201|77430|10000|10000|||100.66|96.79|0.00|-3.08|00010D5A|0|1| +24|2023-10-06T22:01:08.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|3BC2|146371|155812|10000|10000|||96.06|90.99|0.00|3.09|10FF000B|Pusu Rosu|0|79209|79209|7826|10000|||99.75|99.17|0.00|3.13| +38|2023-10-06T22:01:08.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|0||96.06|90.99|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:01:08.6390000-07:00|10FF0003|Gegehi Gehi|00010D56|73814|73814|5000|10000|0||100.08|99.96|-0.02|-3.14|2300|0|0|01|030004D6|0|41A00000|| +24|2023-10-06T22:01:08.6390000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|334D|129071|129071|8500|10000|||99.88|88.04|0.00|3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|8500|10000|||99.88|88.04|0.00|3.13| +21|2023-10-06T22:01:08.6390000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|754003|2B450000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|15742182|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2300|10000|||100.08|98.92|0.00|-3.14|00010D5B|0|1| +38|2023-10-06T22:01:08.6390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:01:08.6390000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|0||100.08|99.96|-0.02|-3.14|0|0|0|||||||||||||||| +37|2023-10-06T22:01:08.6840000-07:00|40021585|Zeromus|00010D54|15738491|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T22:01:08.6840000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +261|2023-10-06T22:01:08.2790000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T22:01:08.7290000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|15738491|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3950|10000|||100.18|100.88|0.00|-3.13|00010D5C|0|1| +38|2023-10-06T22:01:08.7290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3950|10000|0||100.18|100.88|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:08.7290000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:01:08.3690000-07:00|Change|400218F3||| +38|2023-10-06T22:01:08.7710000-07:00|400218F5||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +39|2023-10-06T22:01:08.7740000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-2.81| +21|2023-10-06T22:01:08.7740000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8540000|104|18D8000|0|0|0|0|0|0|0|0|0|0|0|0|15738491|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D5D|0|1| +38|2023-10-06T22:01:08.7740000-07:00|400218F5||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:01:08.3690000-07:00|Change|10FF0001||| +37|2023-10-06T22:01:08.8170000-07:00|40021585|Zeromus|00010D58|15736702||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:08.9950000-07:00|40021585|Zeromus|00010D59|15730092||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:08.9950000-07:00|10FF0003|Gegehi Gehi|73814|73814|5200|10000|||100.08|99.96|-0.02|-3.14| +21|2023-10-06T22:01:08.9950000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|323B0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|15736702|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D5E|0|1| +261|2023-10-06T22:01:08.5580000-07:00|Change|10FF0003||| +03|2023-10-06T22:01:08.5580000-07:00|400218F5|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||101.96|102.64|0.00|-3.13| +261|2023-10-06T22:01:08.5580000-07:00|Add|400218F5||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:08.6720000-07:00|Change|400218F5||||| +37|2023-10-06T22:01:09.1280000-07:00|40021585|Zeromus|00010D53|15717986||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:09.1280000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2100|10000|||100.08|98.92|0.00|-3.14| +21|2023-10-06T22:01:09.2170000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15717986|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3950|10000|||100.18|100.88|0.00|-3.13|00010D5F|0|1| +37|2023-10-06T22:01:09.3070000-07:00|40021585|Zeromus|00010D5D|15715854||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:09.3950000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|3950|10000|||100.18|100.88|0.00|-3.13|81809|81809|3950|10000|||100.18|100.88|0.00|-3.13|00010D60|0|1| +37|2023-10-06T22:01:09.4390000-07:00|40021585|Zeromus|00010D5B|15704777||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:09.4400000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|138C0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|15704777|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8500|10000|||99.88|88.04|0.00|3.13|00010D61|0|1| +21|2023-10-06T22:01:09.4400000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|352003|5A050000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|15704777|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5200|10000|||100.08|99.96|-0.02|-3.14|00010D62|0|1| +38|2023-10-06T22:01:09.4400000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4900|10000|0||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:09.4400000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:01:09.4400000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:01:09.1280000-07:00|Change|10FF0003||| +24|2023-10-06T22:01:09.6630000-07:00|40021585|Zeromus|DoT|0|179F|15704777|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8500|10000|||99.88|88.04|0.00|3.13| +38|2023-10-06T22:01:09.6630000-07:00|40021585|Zeromus|005A5A00|15698730|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:01:09.6630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|0||99.88|88.04|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:09.6630000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:01:09.7520000-07:00|40021585|Zeromus|00010D5E|15685871||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:09.7520000-07:00|10FF0006|Wowobora Gogobora|00010D5C|81809|81809|3950|10000|0||100.14|100.88|0.00|-2.55|1B00|0|0|01|07000AA4|0|0|| +37|2023-10-06T22:01:09.7520000-07:00|40021585|Zeromus|00010D5F|15685758||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:09.7520000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15698730|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4900|10000|||100.08|99.96|-0.02|-3.14|00010D63|0|1| +38|2023-10-06T22:01:09.7520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3950|10000|0||100.14|100.88|0.00|-2.55|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:01:09.3140000-07:00|Change|10FF0004||| +20|2023-10-06T22:01:09.7970000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.75|99.17|0.00|3.13| +261|2023-10-06T22:01:09.3140000-07:00|Change|10FF000B||||||||||||| +261|2023-10-06T22:01:09.4170000-07:00|Change|400218F5||| +38|2023-10-06T22:01:09.8860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2100|10000|0||100.08|98.92|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:09.8860000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T22:01:09.9750000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|180E0000|104|47E8000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|15685758|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D64|0|1| +37|2023-10-06T22:01:10.0200000-07:00|10FF0006|Wowobora Gogobora|00010D60|81809|81809|3950|10000|0||99.25|100.84|0.00|-2.04|1B00|0|0|01|080004B4|0|41A80000|| +26|2023-10-06T22:01:10.0200000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:01:10.0650000-07:00|40021585|Zeromus|00010D61|15680754||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:10.0650000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7AC00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15685758|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||94.53|90.90|0.00|3.09|00010D65|0|1| +21|2023-10-06T22:01:10.0650000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15685758|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D66|0|1| +20|2023-10-06T22:01:10.1090000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.08|98.92|0.00|-3.14| +39|2023-10-06T22:01:10.1540000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13| +37|2023-10-06T22:01:10.1980000-07:00|40021585|Zeromus|00010D62|15657709||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:10.1980000-07:00|10FF0003|Gegehi Gehi|00010D62|73814|73814|4900|10000|0||100.08|99.96|-0.02|-3.14|2300|0|0|01|050004D3|0|41F00000|| +38|2023-10-06T22:01:10.1980000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4900|10000|0||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:10.2880000-07:00|40021585|Zeromus|00010D63|15657680||||||100.00|80.10|0.00|0.00| +04|2023-10-06T22:01:09.8590000-07:00|400218EA|Liturgic Bell|00|5A|10FF000B|00||10349|13961|0|75049|0|10000|||95.31|96.36|0.00|1.58| +04|2023-10-06T22:01:09.8590000-07:00|400218E7|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|0|77698|0|10000|||101.46|95.38|0.00|-3.05| +261|2023-10-06T22:01:09.8590000-07:00|Remove|400218E7| +261|2023-10-06T22:01:09.8590000-07:00|Remove|400218EA| +261|2023-10-06T22:01:09.8590000-07:00|Remove|400218EC| +37|2023-10-06T22:01:10.3760000-07:00|40021585|Zeromus|00010D64|15651522||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:10.5550000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2E9E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|155812|155812|10000|10000|||94.53|90.90|0.00|2.67|15651522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010D67|0|1| +21|2023-10-06T22:01:10.5550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|DEB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15651522|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8500|10000|||100.97|90.91|0.00|1.29|00010D68|0|1| +31|2023-10-06T22:01:10.5550000-07:00|10FF0001||||| +37|2023-10-06T22:01:10.7320000-07:00|40021585|Zeromus|00010D65|15620098||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:10.7320000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|30530000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|15651522|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7826|10000|||99.75|99.17|0.00|3.13|00010D69|0|1| +261|2023-10-06T22:01:10.3670000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T22:01:10.3670000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T22:01:10.3670000-07:00|Change|400218F3||| +37|2023-10-06T22:01:10.8210000-07:00|40021585|Zeromus|00010D66|15617721||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:10.8210000-07:00|400218F5|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|154003|7E2D0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|15620098|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||101.96|102.64|0.00|-3.13|00010D6A|0|1| +39|2023-10-06T22:01:10.8210000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8700|10000|||101.90|92.57|0.00|1.30| +21|2023-10-06T22:01:10.8210000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|752003|3FED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15620098|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D6B|0|1| +261|2023-10-06T22:01:10.3670000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T22:01:10.9550000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8810000|104|1968000|0|0|0|0|0|0|0|0|0|0|0|0|15617721|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D6C|0|1| +21|2023-10-06T22:01:11.0440000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|237A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|15617721|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2100|10000|||100.08|98.92|0.00|-3.14|00010D6D|0|1| +37|2023-10-06T22:01:11.0890000-07:00|40021585|Zeromus|00010D68|15614158||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:11.0890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|19DD|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7426|10000|||99.75|99.17|0.00|3.13| +24|2023-10-06T22:01:11.0890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1A45|81541|81541|2100|10000|||100.08|98.92|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|7426|10000|||99.75|99.17|0.00|3.13| +38|2023-10-06T22:01:11.0890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.24|100.85|0.00|-3.13|0|0|0|||||||||||||||| +38|2023-10-06T22:01:11.0890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2250|10000|0||100.08|98.92|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T22:01:11.1780000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4150|10000|||97.12|100.45|0.00|-2.45| +24|2023-10-06T22:01:11.1780000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1A99|81809|81809|3950|10000|||97.12|100.45|0.00|-2.45|10FF0006|Wowobora Gogobora|0|81809|81809|3950|10000|||97.12|100.45|0.00|-2.45| +38|2023-10-06T22:01:11.1780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4700|10000|0||97.12|100.45|0.00|-2.45|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:01:10.7870000-07:00|Change|10FF0006||||||||| +20|2023-10-06T22:01:11.2660000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|97.12|100.45|0.00|-2.45| +21|2023-10-06T22:01:11.3120000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AE70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15614158|40478540|10000|10000|||100.00|80.10|0.00|0.00|155812|155812|10000|10000|||94.53|90.90|0.00|2.67|00010D6E|0|1| +37|2023-10-06T22:01:11.3560000-07:00|10FF0007|Kehabiqo Febiqo|00010D67|143878||||||94.53|90.90|0.00|2.67| +39|2023-10-06T22:01:11.3560000-07:00|10FF000B|Pusu Rosu|79209|79209|7707|10000|||99.75|99.17|0.00|3.13| +39|2023-10-06T22:01:11.3560000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14| +24|2023-10-06T22:01:11.4000000-07:00|10FF0003|Gegehi Gehi|HoT|0|1C9B|73814|73814|4900|10000|||100.08|99.96|-0.02|-3.14|10FF0003|Gegehi Gehi|0|73814|73814|4900|10000|||100.08|99.96|-0.02|-3.14| +38|2023-10-06T22:01:11.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4900|10000|0||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:11.4460000-07:00|40021585|Zeromus|00010D6B|15597793||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:11.4460000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2478|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|7426|10000|||99.75|99.17|0.00|3.13| +38|2023-10-06T22:01:11.4460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:01:11.4910000-07:00|40021585|Zeromus|00010D6C|15595616||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:11.4910000-07:00|10FF0007|Kehabiqo Febiqo|145436|155812|10000|10000|||94.53|90.90|0.00|2.67| +24|2023-10-06T22:01:11.4910000-07:00|10FF000B|Pusu Rosu|HoT|0|240D|79209|79209|7707|10000|||99.75|99.17|0.00|3.13|400218E7||0||||||||||| +21|2023-10-06T22:01:11.4910000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|720003|600D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15597793|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D6F|0|1| +38|2023-10-06T22:01:11.4910000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|145436|155812|10000|10000|0||94.53|90.90|0.00|2.67|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:11.4910000-07:00|A91|Undying Flame|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|155812|81809| +38|2023-10-06T22:01:11.4910000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7707|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +24|2023-10-06T22:01:11.5800000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F8A|145436|155812|10000|10000|||94.53|90.90|0.00|2.67|10FF000B|Pusu Rosu|0|79209|79209|7707|10000|||99.75|99.17|0.00|3.13| +38|2023-10-06T22:01:11.5800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|153510|155812|10000|10000|0||94.53|90.90|0.00|2.67|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:01:11.2510000-07:00|Change|10FF0006||||||||||||||||||||| +24|2023-10-06T22:01:11.6700000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1D83|129071|129071|8700|10000|||103.48|96.58|0.00|1.33|10FF000B|Pusu Rosu|0|79209|79209|7707|10000|||99.75|99.17|0.00|3.13| +38|2023-10-06T22:01:11.6700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|0||103.48|96.58|0.00|1.33|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:01:11.3420000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:01:11.7580000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +21|2023-10-06T22:01:11.7580000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15595616|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2250|10000|||100.08|98.92|0.00|-3.14|00010D70|0|1| +261|2023-10-06T22:01:11.3420000-07:00|Change|10FF000B||| +261|2023-10-06T22:01:11.3420000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:01:11.8480000-07:00|40021585|Zeromus|00010D6E|15592825||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:11.8480000-07:00|40021585|Zeromus|00010D6D|15583743||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:11.8480000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|18C70000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|153510|155812|10000|10000|||94.53|90.90|0.00|2.67|54201|77430|10000|10000|||100.66|96.79|0.00|-3.05|00010D71|0|1| +20|2023-10-06T22:01:11.8480000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|100.08|99.96|-0.02|-3.14| +261|2023-10-06T22:01:11.4410000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T22:01:11.9370000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35712003|32B20000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|15583743|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||104.24|98.28|0.00|1.57|00010D72|0|1| +39|2023-10-06T22:01:11.9820000-07:00|10FF0003|Gegehi Gehi|73814|73814|5100|10000|||100.08|99.96|-0.02|-3.14| +37|2023-10-06T22:01:12.0260000-07:00|40021585|Zeromus|00010D69|15571372||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:12.0260000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D73|0|1| +38|2023-10-06T22:01:12.0260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.24|100.85|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:12.0260000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +39|2023-10-06T22:01:12.1150000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2450|10000|||100.09|98.92|0.00|2.60| +21|2023-10-06T22:01:12.1600000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24FB0000|104|6E88000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|15571372|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D74|0|1| +37|2023-10-06T22:01:12.2940000-07:00|40021585|Zeromus|00010D70|15571298||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:01:12.2940000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.75|99.17|0.00|3.13| +261|2023-10-06T22:01:11.9910000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:01:11.9910000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:01:11.9910000-07:00|Change|10FF0003||||| +20|2023-10-06T22:01:12.4270000-07:00|40021585|Zeromus|8B5F|Branding Flare|40021585|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:01:12.4270000-07:00|400215A3|Zeromus|8B60|Flare|400215A3|Zeromus|7.700|95.00|100.00|0.00|0.00| +20|2023-10-06T22:01:12.4270000-07:00|400215A2|Zeromus|8B60|Flare|400215A2|Zeromus|7.700|105.00|100.00|0.00|0.00| +261|2023-10-06T22:01:12.1100000-07:00|Change|40021585||||||||||||| +37|2023-10-06T22:01:12.5610000-07:00|40021585|Zeromus|00010D74|15561831||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:12.5610000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|714003|1B310000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|15571298|40478540|10000|10000|||100.00|80.10|0.00|0.00|153510|155812|10000|10000|||94.53|90.90|0.00|2.67|00010D75|0|1| +20|2023-10-06T22:01:12.5610000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.15|98.92|0.00|1.84| +37|2023-10-06T22:01:12.6510000-07:00|10FF0007|Kehabiqo Febiqo|00010D71|155812||||||94.53|90.90|0.00|2.67| +37|2023-10-06T22:01:12.6510000-07:00|40021585|Zeromus|00010D6F|15537242||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:12.6510000-07:00|40021585|Zeromus|DoT|0|1CC4|15561831|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8700|10000|||105.86|99.73|0.00|2.56| +04|2023-10-06T22:01:12.3050000-07:00|400218F3|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.17|99.14|0.00|0.01| +261|2023-10-06T22:01:12.3050000-07:00|Add|40021900||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218FA||||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218F8||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218F9||||||||||||||||||||||||||||| +38|2023-10-06T22:01:12.6510000-07:00|40021585|Zeromus|005A5A00|15529878|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218FB||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218F7||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218FD||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218FC||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218FE||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Add|400218FF||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:12.3050000-07:00|Remove|400218F3| +37|2023-10-06T22:01:12.6950000-07:00|40021585|Zeromus|00010D72|15516900||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:12.6950000-07:00|10FF0001|Sesuga Sapisuga|00010D72|129071|129071|9700|10000|0||105.86|99.73|0.00|2.56|1300|0|0|0| +21|2023-10-06T22:01:12.6950000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|1F6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15561831|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D76|0|1| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218F9||| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218F8||| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218F7||| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218FD||| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218FE||| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218FB||| +261|2023-10-06T22:01:12.3050000-07:00|Change|40021900||| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218FA||| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218FC||| +261|2023-10-06T22:01:12.3050000-07:00|Change|400218FF||| +21|2023-10-06T22:01:12.7410000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AD70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15561831|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13|00010D77|0|1| +261|2023-10-06T22:01:12.3050000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:01:12.4060000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:01:12.7850000-07:00|40021585|Zeromus|00010D6A|15484599||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:12.4060000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:01:12.8330000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15516900|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9700|10000|||105.89|99.69|0.00|2.57|00010D78|0|1| +31|2023-10-06T22:01:12.8330000-07:00|10FF0001||||| +261|2023-10-06T22:01:12.5020000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:01:12.5020000-07:00|Change|400215A2||||||||||||| +38|2023-10-06T22:01:13.0530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2450|10000|0||100.17|98.92|0.00|2.92|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:13.0530000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:01:13.0530000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5100|10000|0||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:13.0530000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:01:13.0530000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7707|10000|0||99.75|99.17|0.00|3.13|0|0|0|||||||||||||||| +30|2023-10-06T22:01:13.0530000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:01:13.0530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.02|101.18|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:13.0530000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:01:13.0960000-07:00|40021585|Zeromus|00010D75|15477638||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:13.0960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|155812|155812|10000|10000|0||94.53|90.90|0.00|2.67|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:13.0960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|155812|81541| +38|2023-10-06T22:01:13.0960000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.24|100.85|0.00|-3.13|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:13.0960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:01:13.0960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4700|10000|0||97.12|100.45|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:13.0960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:01:13.0960000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|0||105.89|99.69|0.00|2.57|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:13.0960000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T22:01:12.7160000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:01:13.1410000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.24|100.85|0.00|-3.13| +21|2023-10-06T22:01:13.1410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8EE0000|104|1AA8000|0|0|0|0|0|0|0|0|0|0|0|0|15484599|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.02|101.18|0.00|-3.14|00010D79|0|1| +21|2023-10-06T22:01:13.2310000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|712003|4B800000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|15477638|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9700|10000|||105.89|99.69|0.00|-2.85|00010D7A|0|1| +21|2023-10-06T22:01:13.2310000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|4C8D0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|15477638|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7707|10000|||99.75|99.17|0.00|3.13|00010D7B|0|1| +21|2023-10-06T22:01:13.2760000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|450003|2E5E0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|15477638|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5100|10000|||100.08|99.96|-0.02|-3.14|00010D7C|0|1| +38|2023-10-06T22:01:13.2760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4900|10000|0||100.08|99.96|-0.02|-3.14|0|0|0||||||||||||| +26|2023-10-06T22:01:13.2760000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:01:13.2760000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:01:13.3640000-07:00|40021585|Zeromus|00010D78|15474693||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:13.0580000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T22:01:13.4970000-07:00|40021585|Zeromus|00010D76|15466649||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:13.4970000-07:00|40021585|Zeromus|00010D77|15463874||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:13.4970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|241A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|15474693|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2450|10000|||100.18|98.92|0.00|-3.13|00010D7D|0|1| +21|2023-10-06T22:01:13.5410000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|150003|3E410000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|15463874|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4700|10000|||97.12|100.45|0.00|3.00|00010D7E|0|1| +261|2023-10-06T22:01:13.1570000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T22:01:13.6300000-07:00|40021585|Zeromus|00010D7A|15444546||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:13.6300000-07:00|10FF0001|Sesuga Sapisuga|00010D7A|129071|129071|10000|10000|0||105.89|99.69|0.00|-2.85|1300|0|0|0| +261|2023-10-06T22:01:13.2560000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T22:01:13.6740000-07:00|40021585|Zeromus|00010D79|15442260||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:13.8070000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||105.89|99.69|0.00|-2.85| +261|2023-10-06T22:01:13.3560000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:01:13.4460000-07:00|Change|10FF0004||||||||||||||||||||| +38|2023-10-06T22:01:13.8970000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||94.41|93.06|0.00|0.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:13.8970000-07:00|57|Thrill of Battle|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|155812|155812| +38|2023-10-06T22:01:13.9410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||106.23|99.44|0.00|3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:13.9410000-07:00|4A7|Rampart|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T22:01:14.0300000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:01:14.0300000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|219E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15442260|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.26|100.84|0.00|2.93|00010D7F|0|1| +37|2023-10-06T22:01:14.0750000-07:00|40021585|Zeromus|00010D7C|15430390||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:14.0750000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1A46|90216|90216|10000|10000|||100.26|100.84|0.00|2.93|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||100.26|100.84|0.00|2.93| +24|2023-10-06T22:01:14.0750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1D4F|81541|81541|2050|10000|||100.18|98.94|0.00|2.48|10FF000B|Pusu Rosu|0|79209|79209|7307|10000|||99.79|99.17|0.00|2.01| +38|2023-10-06T22:01:14.0750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.26|100.84|0.00|2.93|0|0|0||||||||||||||||||| +38|2023-10-06T22:01:14.0750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2600|10000|0||100.18|98.94|0.00|2.48|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:13.6340000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:01:14.1650000-07:00|40021585|Zeromus|00010D7E|15414453||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:14.1650000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1A55|81809|81809|4400|10000|||97.12|100.45|0.00|3.00|10FF0006|Wowobora Gogobora|0|81809|81809|4400|10000|||97.12|100.45|0.00|3.00| +38|2023-10-06T22:01:14.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4950|10000|0||97.12|100.45|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T22:01:14.2100000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5150|10000|||97.12|100.45|0.00|3.00| +20|2023-10-06T22:01:14.2100000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|97.12|100.45|0.00|3.00| +261|2023-10-06T22:01:13.7510000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T22:01:14.2990000-07:00|40021585|Zeromus|00010D7D|15405211||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:14.2990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||107.49|99.20|0.00|-2.97|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:14.2990000-07:00|74C|Everlasting Flight|0.00|400218E7|Demi-Phoenix|10FF0001|Sesuga Sapisuga|00|129071|| +39|2023-10-06T22:01:14.3440000-07:00|10FF000B|Pusu Rosu|79209|79209|7588|10000|||100.96|99.22|0.00|1.70| +39|2023-10-06T22:01:14.3440000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.74|101.23|0.00|-2.69| +21|2023-10-06T22:01:14.3440000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|33C30000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|15414453|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4900|10000|||100.19|99.92|0.00|2.34|00010D80|0|1| +38|2023-10-06T22:01:14.3440000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4600|10000|0||100.19|99.92|0.00|2.34|0|0|0|||||||||| +30|2023-10-06T22:01:14.3440000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +24|2023-10-06T22:01:14.3890000-07:00|10FF0003|Gegehi Gehi|HoT|0|19D6|73814|73814|4600|10000|||100.93|100.03|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|7588|10000|||101.70|99.26|0.00|1.63| +21|2023-10-06T22:01:14.3890000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44712003|51260000|104|F2A8000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|15405211|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||97.94|101.25|0.00|-2.52|00010D81|0|1| +38|2023-10-06T22:01:14.3890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4600|10000|0||100.93|100.03|0.00|-3.06|0|0|0|||||||||| +24|2023-10-06T22:01:14.4330000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|28B8|83502|83502|10000|10000|||97.94|101.25|0.00|-2.52|10FF000B|Pusu Rosu|0|79209|79209|7588|10000|||101.70|99.26|0.00|1.63| +21|2023-10-06T22:01:14.4330000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|278A0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|15405211|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.49|99.20|0.00|-2.77|00010D82|0|1| +38|2023-10-06T22:01:14.4330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||107.49|99.20|0.00|-2.77|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:14.4330000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:01:14.4330000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T22:01:14.4330000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4600|10000|0||100.93|100.03|0.00|-3.06|0|0|0|||||||||| +30|2023-10-06T22:01:14.4330000-07:00|74C|Everlasting Flight|0.00|400218E7|Demi-Phoenix|10FF0003|Gegehi Gehi|00|73814|| +38|2023-10-06T22:01:14.4330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||97.94|101.25|0.00|-2.52|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:01:13.9860000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:01:13.9860000-07:00|Change|10FF0007||||||||||| +39|2023-10-06T22:01:14.4780000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.18|96.95|0.00|-0.04| +24|2023-10-06T22:01:14.4780000-07:00|10FF000B|Pusu Rosu|HoT|0|24DE|79209|79209|7588|10000|||102.45|99.37|-0.02|1.57|400218E7||0||||||||||| +38|2023-10-06T22:01:14.4780000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7588|10000|0||102.45|99.37|-0.02|1.57|0|0|0|||||||||||||||| +37|2023-10-06T22:01:14.5220000-07:00|40021585|Zeromus|00010D7B|15385614||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:14.5670000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1E5E|129844|129844|10000|10000|||94.18|96.95|0.00|-0.04|10FF000B|Pusu Rosu|0|79209|79209|7588|10000|||102.45|99.37|-0.02|1.57| +21|2023-10-06T22:01:14.5670000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|131C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15405211|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.73|100.81|0.00|2.36|00010D83|0|1| +38|2023-10-06T22:01:14.5670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||94.18|96.95|0.00|-0.04|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:01:14.5670000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7588|10000|0||102.45|99.37|-0.02|1.57|0|0|0|||||||||| +30|2023-10-06T22:01:14.5670000-07:00|74C|Everlasting Flight|0.00|400218E7|Demi-Phoenix|10FF000B|Pusu Rosu|00|79209|| +38|2023-10-06T22:01:14.6110000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||94.17|97.22|0.00|-0.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:14.6110000-07:00|4A7|Rampart|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:01:14.6560000-07:00|40021585|Zeromus|00010D7F|15377008||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:14.6560000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|12AC|129071|129071|10000|10000|||107.10|98.10|0.00|-2.80|10FF000B|Pusu Rosu|0|79209|79209|7588|10000|||103.08|99.44|0.00|1.47| +38|2023-10-06T22:01:14.6560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||107.10|98.10|0.00|-2.80|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:01:14.7010000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|18240000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15385614|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.16|97.41|0.00|-0.05|00010D84|0|1| +21|2023-10-06T22:01:14.7010000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15385614|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4600|10000|||102.07|100.15|0.00|-3.06|00010D85|0|1| +38|2023-10-06T22:01:14.7010000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5150|10000|0||97.12|100.45|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:14.7010000-07:00|74C|Everlasting Flight|0.00|400218E7|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|| +39|2023-10-06T22:01:14.7460000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +20|2023-10-06T22:01:14.7460000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|103.08|99.44|0.00|1.47| +261|2023-10-06T22:01:14.3930000-07:00|Change|10FF000B||||||||||||||||||||||| +38|2023-10-06T22:01:14.8340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2600|10000|0||103.27|99.61|0.00|1.37|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:14.8340000-07:00|74C|Everlasting Flight|0.00|400218E7|Demi-Phoenix|10FF0004|Buhojaqe Zijaqe|00|81541|| +261|2023-10-06T22:01:14.3930000-07:00|Change|400218F5||||| +261|2023-10-06T22:01:14.3930000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T22:01:14.8760000-07:00|40021904||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:01:14.8790000-07:00|40021904||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:01:14.9240000-07:00|40021585|Zeromus|00010D81|15356234||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:14.9680000-07:00|10FF0003|Gegehi Gehi|73814|73814|4800|10000|||102.01|100.09|-0.02|3.13| +20|2023-10-06T22:01:14.9680000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|1.926|103.36|99.66|0.00|1.30| +38|2023-10-06T22:01:14.9680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.92|99.70|0.00|-2.76|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:14.9680000-07:00|74C|Everlasting Flight|0.00|400218E7|Demi-Phoenix|10FF000A|Dukaro Nezikaro|00|83502|| +37|2023-10-06T22:01:15.0130000-07:00|40021585|Zeromus|00010D82|15346112||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:15.0130000-07:00|10FF0001|Sesuga Sapisuga|00010D82|129071|129071|10000|10000|0||107.10|98.10|0.00|-2.80|1300|0|0|02|0200076E|03|41F00000|||||| +21|2023-10-06T22:01:15.0130000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|350A0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|15356234|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.13|97.83|-0.02|-0.06|00010D86|0|1| +38|2023-10-06T22:01:15.0130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||107.10|98.10|0.00|-2.80|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:01:14.5830000-07:00|Add|40021904||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:01:14.5830000-07:00|40021904|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||97.37|98.74|0.00|-0.14| +261|2023-10-06T22:01:14.5830000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:01:14.5830000-07:00|Change|40021904||| +37|2023-10-06T22:01:15.1010000-07:00|40021585|Zeromus|00010D80|15332861||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:15.1010000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2800|10000|||103.50|99.75|-0.01|1.19| +21|2023-10-06T22:01:15.1010000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15346112|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.10|98.10|0.00|-2.80|00010D87|0|1| +38|2023-10-06T22:01:15.1010000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||94.13|97.83|0.00|2.82|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:15.1010000-07:00|74C|Everlasting Flight|0.00|400218E7|Demi-Phoenix|10FF0007|Kehabiqo Febiqo|00|129844|| +31|2023-10-06T22:01:15.1010000-07:00|10FF0001||||| +37|2023-10-06T22:01:15.1910000-07:00|40021585|Zeromus|00010D83|15327969||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:15.2340000-07:00|40021585|Zeromus|00010D84|15321789||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:15.2340000-07:00|40021585|Zeromus|00010D85|15321746||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:15.2340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||101.09|100.79|0.00|-3.09|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:15.2340000-07:00|74C|Everlasting Flight|0.00|400218E7|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|| +21|2023-10-06T22:01:15.2790000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|722003|65220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15332861|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4800|10000|||104.49|100.66|0.00|1.78|00010D88|0|1| +21|2023-10-06T22:01:15.3230000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8AF0000|104|19E8000|0|0|0|0|0|0|0|0|0|0|0|0|15332861|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.32|100.01|0.00|-2.53|00010D89|0|1| +21|2023-10-06T22:01:15.4120000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15321746|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.09|100.79|0.00|-3.09|00010D8A|0|1| +261|2023-10-06T22:01:15.0310000-07:00|Change|10FF0003||||||||||| +26|2023-10-06T22:01:15.5020000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:01:15.5020000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|28790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15321746|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.09|100.79|0.00|-3.09|00010D8B|0|1| +37|2023-10-06T22:01:15.6360000-07:00|40021585|Zeromus|00010D86|15308168||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:15.6360000-07:00|40021585|Zeromus|00010D87|15305304||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:15.6810000-07:00|40021585|Zeromus|DoT|0|1D71|15305304|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||107.18|98.07|0.00|-2.80| +21|2023-10-06T22:01:15.6810000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|321C0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|15305304|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7588|10000|||103.65|99.50|0.00|-2.96|00010D8C|0|1| +38|2023-10-06T22:01:15.6810000-07:00|40021585|Zeromus|005A5A00|15297767|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:01:15.4340000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:01:15.8590000-07:00|40021585|Zeromus|00010D89|15295544||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:15.4340000-07:00|Change|10FF0004||||||||||||||||||||||| +34|2023-10-06T22:01:15.9040000-07:00|40021904|Carbuncle|40021904|Carbuncle|01| +261|2023-10-06T22:01:15.4340000-07:00|Change|40021904||| +21|2023-10-06T22:01:16.0830000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|12EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15295544|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.09|100.79|0.00|-3.09|00010D8D|0|1| +37|2023-10-06T22:01:16.1270000-07:00|40021585|Zeromus|00010D8B|15285183||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:16.1720000-07:00|40021585|Zeromus|00010D8A|15282364||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:16.1720000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.09|100.79|0.00|-3.09| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|43380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15282364|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|0|9| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|31C30000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|1|9| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|4B2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2800|10000|||103.50|99.75|0.00|1.19|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|2|9| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|31630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||101.09|100.79|0.00|-3.09|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|3|9| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|32D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||107.18|98.07|0.00|-2.80|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|4|9| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|30020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4800|10000|||106.46|102.08|-0.02|1.22|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|5|9| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|30860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|5150|10000|||97.12|100.45|0.00|3.00|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|6|9| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|321E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||93.83|100.10|0.00|-2.64|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|7|9| +22|2023-10-06T22:01:16.3050000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|30EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.61|97.80|0.00|3.09|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|00010D8E|8|9| +21|2023-10-06T22:01:16.3930000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|4|1BB10000|D80E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|81541|81541|2800|10000|||103.50|99.75|0.00|1.19|81541|81541|2800|10000|||103.50|99.75|0.00|1.19|00010D8F|0|1| +38|2023-10-06T22:01:16.3930000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1800|10000|15||103.50|99.75|0.00|1.19|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:16.3930000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:01:16.4380000-07:00|40021585|Zeromus|00010D88|15256474||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:16.4830000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|150003|3E4F0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|15282364|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5150|10000|||97.12|100.45|0.00|3.00|00010D90|0|1| +261|2023-10-06T22:01:15.9830000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T22:01:16.7060000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|199A0000|104|4C88000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|15256474|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.48|98.76|0.00|-2.77|00010D91|0|1| +39|2023-10-06T22:01:16.7950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||107.18|98.07|0.00|-2.80| +37|2023-10-06T22:01:16.8840000-07:00|40021585|Zeromus|00010D8D|15251628||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:16.4290000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T22:01:16.9290000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|28960000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|15256474|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|00010D92|0|1| +21|2023-10-06T22:01:16.9290000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|750003|27150000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|15256474|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4800|10000|||106.66|101.93|0.00|-2.84|00010D93|0|1| +38|2023-10-06T22:01:16.9290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||107.18|98.07|0.00|-2.76|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:16.9290000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T22:01:16.9740000-07:00|40021585|Zeromus|00010D8C|15238800||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:16.9740000-07:00|40021585|Zeromus|00010D8E|15221592||||||100.00|80.10|0.00|0.00| +26|2023-10-06T22:01:16.9740000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:01:16.9740000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|217D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15251628|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.55|100.34|0.00|2.06|00010D94|0|1| +21|2023-10-06T22:01:16.9740000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15251628|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4850|10000|||97.12|100.45|0.00|3.00|00010D95|0|1| +24|2023-10-06T22:01:17.0640000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|12F9|90216|90216|10000|10000|||102.55|100.34|0.00|2.06|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||102.55|100.34|0.00|2.06| +24|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|12B0|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|10FF000B|Pusu Rosu|0|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96| +22|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0004|Buhojaqe Zijaqe|9|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|00010D96|0|8| +22|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF000B|Pusu Rosu|D80E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7188|10000|||103.65|99.50|0.00|-2.96|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|00010D96|1|8| +22|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0008|Kokosaze Lulusaze|D80E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||102.55|100.34|0.00|2.06|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|00010D96|2|8| +22|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0003|Gegehi Gehi|D80E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4800|10000|||106.41|101.47|0.00|-2.86|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|00010D96|3|8| +22|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0001|Sesuga Sapisuga|D80E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|00010D96|4|8| +22|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0006|Wowobora Gogobora|D80E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|4850|10000|||97.12|100.45|0.00|3.00|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|00010D96|5|8| +22|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF000A|Dukaro Nezikaro|D80E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||94.56|98.46|0.00|2.85|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|00010D96|6|8| +22|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0007|Kehabiqo Febiqo|D80E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.46|97.78|0.00|3.09|81541|81541|1800|10000|||103.50|99.75|0.00|1.19|00010D96|7|8| +38|2023-10-06T22:01:17.0640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||102.55|100.34|0.00|2.06|0|0|0||||||||||||||||||| +38|2023-10-06T22:01:17.0640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|15||103.50|99.75|0.00|1.19|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:17.1080000-07:00|40021585|Zeromus|00010D90|15205641||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:17.1080000-07:00|10FF000B|Pusu Rosu|00010D8E|79209|79209|7688|10000|0||103.65|99.50|0.00|-2.96|1801|0|0|0| +37|2023-10-06T22:01:17.1080000-07:00|40021585|Zeromus|00010D91|15199087||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:16.6300000-07:00|Change|10FF000B||| +24|2023-10-06T22:01:17.1530000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1BD8|81809|81809|4850|10000|||97.12|100.45|0.00|3.00|10FF0006|Wowobora Gogobora|0|81809|81809|4850|10000|||97.12|100.45|0.00|3.00| +38|2023-10-06T22:01:17.1530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5400|10000|0||97.12|100.45|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:01:16.7470000-07:00|Change|10FF0006||| +39|2023-10-06T22:01:17.1970000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5600|10000|||97.12|100.45|0.00|3.00| +21|2023-10-06T22:01:17.1970000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40021585|Zeromus|152003|536C0000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|15199087|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5400|10000|||97.12|100.45|0.00|3.00|00010D97|0|1| +20|2023-10-06T22:01:17.1970000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|103.65|99.50|0.00|-2.96| +38|2023-10-06T22:01:17.1970000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5600|10000|0||97.12|100.45|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:17.1970000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:01:16.8600000-07:00|Change|10FF0008||||||||| +39|2023-10-06T22:01:17.3300000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||94.59|98.34|0.00|2.85| +21|2023-10-06T22:01:17.3300000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|490000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15199087|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2350|10000|||103.50|99.75|0.00|1.19|00010D98|0|1| +37|2023-10-06T22:01:17.3750000-07:00|10FF0004|Buhojaqe Zijaqe|00010D8F|81541|81541|2350|10000|15||103.50|99.75|0.00|1.19|1C00|0|0|01|03000129|0|41E87EF8|| +39|2023-10-06T22:01:17.3750000-07:00|10FF000B|Pusu Rosu|79209|79209|7969|10000|||103.65|99.50|0.00|-2.96| +24|2023-10-06T22:01:17.3750000-07:00|10FF0003|Gegehi Gehi|HoT|0|11F6|73814|73814|4800|10000|||106.05|100.98|0.00|-2.86|10FF000B|Pusu Rosu|0|79209|79209|7688|10000|||103.65|99.50|0.00|-2.96| +21|2023-10-06T22:01:17.3750000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15199087|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|00010D99|0|1| +38|2023-10-06T22:01:17.3750000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4800|10000|0||106.05|100.98|0.00|-2.86|0|0|0|||||||||| +31|2023-10-06T22:01:17.3750000-07:00|10FF0001||||| +261|2023-10-06T22:01:16.9700000-07:00|Change|4002159E||||||||| +261|2023-10-06T22:01:16.9700000-07:00|Change|400215A0||||||||| +24|2023-10-06T22:01:17.4190000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|12D8|83502|83502|10000|10000|||94.59|98.34|0.00|2.85|10FF000B|Pusu Rosu|0|79209|79209|7969|10000|||103.65|99.50|0.00|-2.96| +38|2023-10-06T22:01:17.4190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||94.59|98.34|0.00|2.85|0|0|0|||||||||||||||||||||| +20|2023-10-06T22:01:17.4640000-07:00|4002159E|Zeromus|8B65|Branding Flare|10FF0003|Gegehi Gehi|9.700|105.00|100.00|0.00|0.00| +20|2023-10-06T22:01:17.4640000-07:00|4002159F|Zeromus|8B65|Branding Flare|10FF0006|Wowobora Gogobora|9.700|95.00|100.00|0.00|0.00| +20|2023-10-06T22:01:17.4640000-07:00|400215A0|Zeromus|8B65|Branding Flare|10FF000A|Dukaro Nezikaro|9.700|105.00|100.00|0.00|0.00| +20|2023-10-06T22:01:17.4640000-07:00|400215A1|Zeromus|8B65|Branding Flare|10FF0008|Kokosaze Lulusaze|9.700|95.00|100.00|0.00|0.00| +39|2023-10-06T22:01:17.4640000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.22|97.76|0.00|3.09| +24|2023-10-06T22:01:17.4640000-07:00|10FF000B|Pusu Rosu|HoT|0|12B8|79209|79209|7969|10000|||103.65|99.50|0.00|-2.96|10FF000B|Pusu Rosu|0|79209|79209|7969|10000|||103.65|99.50|0.00|-2.96| +21|2023-10-06T22:01:17.4640000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|2F810000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|15199087|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.22|97.76|0.00|3.09|00010D9A|0|1| +38|2023-10-06T22:01:17.4640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.22|97.76|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:17.4640000-07:00|A75|Surging Tempest|43.19|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:01:17.4640000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7969|10000|0||103.65|99.50|0.00|-2.96|0|0|0|||||||||| +261|2023-10-06T22:01:17.0830000-07:00|Change|400215A1||||||||||||||||| +261|2023-10-06T22:01:17.0830000-07:00|Change|4002159F||||||||||||||| +37|2023-10-06T22:01:17.5080000-07:00|40021585|Zeromus|00010D95|15198998||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:17.5080000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8C30000|104|1A18000|0|0|0|0|0|0|0|0|0|0|0|0|15199087|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.59|98.34|0.00|2.85|00010D9B|0|1| +37|2023-10-06T22:01:17.5580000-07:00|40021585|Zeromus|00010D93|15188993||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:17.5580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|157F|129844|129844|10000|10000|||93.22|97.76|0.00|2.78|10FF000B|Pusu Rosu|0|79209|79209|7969|10000|||103.65|99.50|0.00|-2.96| +38|2023-10-06T22:01:17.5580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.22|97.76|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:01:17.5970000-07:00|40021585|Zeromus|00010D94|15180420||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:17.5980000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|14140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15198998|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.98|99.35|0.00|2.12|00010D9C|0|1| +24|2023-10-06T22:01:17.6430000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1223|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|10FF000B|Pusu Rosu|0|79209|79209|7969|10000|||103.65|99.50|0.00|-2.96| +38|2023-10-06T22:01:17.6430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||107.18|98.07|0.00|-2.76|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:01:17.7760000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +38|2023-10-06T22:01:17.8210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|15||103.89|99.91|-0.02|1.07|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:17.8210000-07:00|2B|Weakness|0.00|E0000000||10FF0004|Buhojaqe Zijaqe|00|81541|| +37|2023-10-06T22:01:17.8650000-07:00|40021585|Zeromus|00010D98|15180347||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:17.9090000-07:00|40021585|Zeromus|00010D99|15178621||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:17.9100000-07:00|40021585|Zeromus|005A5A00|15178621|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:01:17.9100000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +261|2023-10-06T22:01:17.4720000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:01:17.4720000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T22:01:17.4720000-07:00|Change|4002159E||||||||||||| +37|2023-10-06T22:01:17.9540000-07:00|10FF000B|Pusu Rosu|00010D96|79209|79209|7969|10000|16||103.65|99.50|0.00|-2.96|1801|0|0|01|03000129|0|41E80000|| +26|2023-10-06T22:01:17.9540000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:01:17.9540000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7969|10000|16||103.65|99.50|0.00|-2.96|0|0|0||||||||||||| +39|2023-10-06T22:01:17.9980000-07:00|10FF0003|Gegehi Gehi|73814|73814|5000|10000|||105.93|100.74|0.00|-2.82| +261|2023-10-06T22:01:17.5740000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:01:17.6640000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T22:01:17.7560000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:01:18.0410000-07:00|40021585|Zeromus|00010D97|15157265||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:18.0410000-07:00|40021585|Zeromus|00010D9B|15155022||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:18.0860000-07:00|10FF0008|Kokosaze Lulusaze|00010D96|90216|90216|10000|10000|14||107.66|98.67|0.00|2.33|1F02|0|0|01|02000129|0|41E80000|| +26|2023-10-06T22:01:18.0860000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +21|2023-10-06T22:01:18.0870000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|13620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15178621|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.22|97.76|0.00|2.78|00010D9D|0|1| +21|2023-10-06T22:01:18.0870000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|DF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15178621|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.66|98.67|0.00|2.33|00010D9E|0|1| +38|2023-10-06T22:01:18.0870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|14||107.66|98.67|0.00|2.33|0|0|0||||||||||||||||||| +39|2023-10-06T22:01:18.1310000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2550|10000|||104.64|100.30|0.00|1.53| +21|2023-10-06T22:01:18.1310000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|3D710000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|15178621|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7969|10000|||103.65|99.50|0.00|-2.96|00010D9F|0|1| +21|2023-10-06T22:01:18.1750000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15178621|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5000|10000|||105.89|100.63|0.00|-2.79|00010DA0|0|1| +37|2023-10-06T22:01:18.2200000-07:00|40021585|Zeromus|00010D9C|15149882||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:18.2200000-07:00|40021585|Zeromus|00010D92|15139492||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:18.2200000-07:00|10FF0003|Gegehi Gehi|00010D96|73814|73814|5000|10000|17||105.88|100.60|-0.02|-2.78|2303|0|0|01|01000129|0|41E80000|| +26|2023-10-06T22:01:18.2200000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +21|2023-10-06T22:01:18.2200000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|15155022|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2550|10000|||104.69|100.33|0.00|1.56|00010DA1|0|1| +38|2023-10-06T22:01:18.2200000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|17||105.88|100.60|-0.02|-2.78|0|0|0|||||||||| +21|2023-10-06T22:01:18.2640000-07:00|10FF0001|Sesuga Sapisuga|1D6F|Reprisal|40021585|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15155022|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|00010DA2|0|1| +37|2023-10-06T22:01:18.3530000-07:00|10FF0001|Sesuga Sapisuga|00010D96|129071|129071|10000|10000|9||107.18|98.07|0.00|-2.76|1304|0|0|01|04000129|0|41E80000|| +26|2023-10-06T22:01:18.3530000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:01:18.3530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||107.18|98.07|0.00|-2.76|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:01:18.3970000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37756003|65D70000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|15139492|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5000|10000|||105.88|100.60|0.00|-2.78|00010DA3|0|1| +26|2023-10-06T22:01:18.4410000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:01:18.4410000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|39300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15139492|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.68|98.65|0.00|2.44|00010DA4|0|1| +37|2023-10-06T22:01:18.4870000-07:00|10FF0006|Wowobora Gogobora|00010D96|81809|81809|5600|10000|15||97.12|100.39|0.00|3.00|1B05|0|0|01|0129|0|41E80000|| +26|2023-10-06T22:01:18.4870000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:01:18.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5600|10000|15||97.12|100.39|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:01:18.6200000-07:00|40021585|Zeromus|00010D9D|15134530||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:18.6200000-07:00|10FF000A|Dukaro Nezikaro|00010D96|83502|83502|10000|10000|15||94.59|98.34|0.00|2.85|1E06|0|0|01|03000129|0|41E80000|| +26|2023-10-06T22:01:18.6200000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +21|2023-10-06T22:01:18.6200000-07:00|10FF0007|Kehabiqo Febiqo|20FDDFF|item_fddff|10FF0007|Kehabiqo Febiqo|6300010E|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.22|97.76|0.00|2.78|129844|129844|10000|10000|||93.22|97.76|0.00|2.78|00010DA5|0|1| +38|2023-10-06T22:01:18.6200000-07:00|40021904|Carbuncle|005A5A00|74223|77698|10000|10000|0||97.37|98.74|0.00|-0.14|0|0|0||||||| +26|2023-10-06T22:01:18.6200000-07:00|30|Well Fed|604.02|10FF0006|Wowobora Gogobora|40021904|Carbuncle|2964|77698|81809| +26|2023-10-06T22:01:18.6200000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40021904|Carbuncle|01|77698|81809| +21|2023-10-06T22:01:18.6200000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|5600|10000|||97.12|100.39|0.00|3.00|81809|81809|5600|10000|||97.12|100.39|0.00|3.00|00010DA6|0|1| +38|2023-10-06T22:01:18.6200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|15||94.59|98.34|0.00|2.85|0|0|0|||||||||||||||||||||| +24|2023-10-06T22:01:18.6650000-07:00|40021585|Zeromus|DoT|0|D93|15139492|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76| +38|2023-10-06T22:01:18.6650000-07:00|40021585|Zeromus|005A5A00|15131055|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +04|2023-10-06T22:01:18.1980000-07:00|400218F5|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||101.96|102.64|0.00|-3.13| +261|2023-10-06T22:01:18.1980000-07:00|Remove|400218F5| +37|2023-10-06T22:01:18.7090000-07:00|40021585|Zeromus|00010DA0|15131007||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:18.7090000-07:00|40021904|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|5600|10000|||97.12|100.39|0.00|3.00|74223|77698|10000|10000|||97.37|98.74|0.00|-0.14|00010DA7|0|1| +38|2023-10-06T22:01:18.7090000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5600|10000|35||97.12|100.39|0.00|3.00|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:18.7090000-07:00|A8E|Radiant Aegis|29.96|40021904|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T22:01:18.7540000-07:00|10FF0007|Kehabiqo Febiqo|00010D96|129844|129844|10000|10000|9||93.22|97.76|0.00|2.78|1507|0|0|01|01000129|0|41E80000|| +26|2023-10-06T22:01:18.7540000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:01:18.7540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|9||93.22|97.76|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:01:18.8420000-07:00|40021585|Zeromus|00010D9E|15127439||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:18.8420000-07:00|40021585|Zeromus|00010DA1|15127439|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T22:01:18.8420000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +37|2023-10-06T22:01:18.8870000-07:00|40021585|Zeromus|00010DA2|15127439|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004A9|0|41200000|| +26|2023-10-06T22:01:18.8870000-07:00|4A9|Reprisal|10.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +261|2023-10-06T22:01:18.4810000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:01:18.9770000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2D6E0000|104|87D8000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|15127439|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.59|98.34|0.00|2.85|00010DA8|0|1| +37|2023-10-06T22:01:19.0210000-07:00|40021585|Zeromus|00010DA3|15101368||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:19.0660000-07:00|40021585|Zeromus|00010DA4|15086728||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:18.6900000-07:00|Change|10FF000B||||||||||||||||||| +37|2023-10-06T22:01:19.1110000-07:00|40021585|Zeromus|00010D9A|15074567||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:19.1560000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||107.68|98.65|0.00|-2.75| +37|2023-10-06T22:01:19.3780000-07:00|40021585|Zeromus|00010DA8|15062937||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:19.4220000-07:00|40021585|Zeromus|00010D9F|15047208||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:19.4220000-07:00|40021585|Zeromus|8B5F|Branding Flare|40021585|Zeromus|1B|8B5F8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15074567|40478540|10000|10000|||100.00|80.10|0.00|0.00|15074567|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010DA9|0|1| +21|2023-10-06T22:01:19.4220000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|716003|55CC0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|15074567|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|00010DAA|0|1| +38|2023-10-06T22:01:19.4220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||107.18|98.07|0.00|-2.76|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:01:18.9170000-07:00|Change|40021585||||| +26|2023-10-06T22:01:19.4220000-07:00|76E|Sword Oath|25.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T22:01:19.5120000-07:00|10FF0006|Wowobora Gogobora|00010DA7|81809|81809|5600|10000|35||97.12|100.39|0.00|3.00|1B00|0|0|01|03000A8E|0|41E99373|| +37|2023-10-06T22:01:19.5120000-07:00|10FF0007|Kehabiqo Febiqo|00010DA5|129844|129844|10000|10000|9||93.22|97.76|0.00|2.78|1500|0|0|01|03000030|2963|44EC6000|| +26|2023-10-06T22:01:19.5120000-07:00|30|Well Fed|1891.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|2963|129844|129844| +21|2023-10-06T22:01:19.5120000-07:00|10FF000B|Pusu Rosu|4098|Temperance|10FF000B|Pusu Rosu|140F|7508000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7569|10000|||103.32|99.50|-0.01|-1.62|79209|79209|7569|10000|||103.32|99.50|-0.01|-1.62|00010DAB|0|1| +38|2023-10-06T22:01:19.5120000-07:00|40021904|Carbuncle|005A5A00|74223|77698|10000|10000|0||97.37|98.74|0.00|-0.14|0|0|0|||| +30|2023-10-06T22:01:19.5120000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40021904|Carbuncle|01|77698|81809| +38|2023-10-06T22:01:19.5120000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|9||93.22|97.76|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:01:19.6450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|8390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15047208|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|00010DAC|0|1| +31|2023-10-06T22:01:19.6450000-07:00|10FF0001||||| +21|2023-10-06T22:01:19.6890000-07:00|10FF000A|Dukaro Nezikaro|8C1|Shade Shift|10FF000A|Dukaro Nezikaro|3C0E|1E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||94.59|98.34|0.00|2.85|83502|83502|10000|10000|||94.59|98.34|0.00|2.85|00010DAD|0|1| +21|2023-10-06T22:01:19.6890000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E730000|104|2B28000|0|0|0|0|0|0|0|0|0|0|0|0|15047208|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.59|98.34|0.00|2.85|00010DAE|0|1| +21|2023-10-06T22:01:19.7340000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40021585|Zeromus|150003|31AB0000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|15047208|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5600|10000|||97.12|100.39|0.00|3.00|00010DAF|0|1| +39|2023-10-06T22:01:19.8230000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76| +21|2023-10-06T22:01:19.8680000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A752003|74580000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|15047208|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5000|10000|||105.88|100.60|0.00|-2.86|00010DB0|0|1| +21|2023-10-06T22:01:19.9130000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|39190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15047208|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.68|98.65|0.00|-2.75|00010DB1|0|1| +38|2023-10-06T22:01:19.9130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|14||107.68|98.65|0.00|-2.75|0|0|0|||||||||||||||| +30|2023-10-06T22:01:19.9130000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +37|2023-10-06T22:01:20.0910000-07:00|10FF000A|Dukaro Nezikaro|00010DAD|83502|83502|10000|10000|35||94.59|98.34|0.00|2.85|1E00|0|0|01|040001E8|0|41A00000|| +26|2023-10-06T22:01:20.0910000-07:00|1E8|Shade Shift|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +24|2023-10-06T22:01:20.0910000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1BC1|90216|90216|10000|10000|||107.68|98.65|0.00|-2.75|10FF000B|Pusu Rosu|0|79209|79209|7569|10000|||103.32|99.50|0.00|-1.62| +24|2023-10-06T22:01:20.0910000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|132C|81541|81541|2150|10000|||104.81|100.41|0.00|1.44|10FF000B|Pusu Rosu|0|79209|79209|7569|10000|||103.32|99.50|0.00|-1.62| +38|2023-10-06T22:01:20.0910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|14||107.68|98.65|0.00|-2.75|0|0|0|||||||||||||||| +38|2023-10-06T22:01:20.0910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2700|10000|15||104.81|100.41|0.00|1.44|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:01:20.0910000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|35||94.59|98.34|0.00|2.85|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:20.1360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2700|10000|15||104.81|100.41|0.00|1.44|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:20.1360000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:01:20.1360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|14||107.68|98.65|0.00|-2.75|0|0|0|||||||||||||||| +26|2023-10-06T22:01:20.1360000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:01:20.1360000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5600|10000|35||96.42|100.97|0.00|-2.66|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:20.1360000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:20.1360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|17||105.88|100.60|0.00|-2.86|0|0|0||||||||||||| +26|2023-10-06T22:01:20.1360000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:01:20.1360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|35||94.59|98.34|0.00|2.85|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:20.1360000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:01:20.1360000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7569|10000|16||103.32|99.50|0.00|-1.62|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:20.1360000-07:00|750|Temperance|20.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +26|2023-10-06T22:01:20.1360000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:20.1360000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|9||93.22|97.76|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:20.1360000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:20.1360000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||107.18|98.07|0.00|-2.76|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:20.1360000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:01:20.1360000-07:00|10FF000B|Pusu Rosu|00010DAB|79209|79209|7569|10000|16||103.32|99.50|0.00|-1.62|1800|0|0|02|04000750|0|41A00000|||||| +21|2023-10-06T22:01:20.1360000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15047208|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5600|10000|||96.42|100.97|0.00|-2.66|00010DB2|0|1| +261|2023-10-06T22:01:19.6370000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:01:20.1800000-07:00|40021585|Zeromus|00010DAC|15045103||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:20.1800000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5800|10000|||95.81|101.51|0.00|-2.03| +24|2023-10-06T22:01:20.1800000-07:00|10FF0006|Wowobora Gogobora|HoT|0|12C0|81809|81809|5600|10000|||95.81|101.51|0.00|-2.03|10FF0006|Wowobora Gogobora|0|81809|81809|5600|10000|||95.81|101.51|0.00|-2.03| +38|2023-10-06T22:01:20.1800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6350|10000|35||95.81|101.51|0.00|-2.03|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:01:20.2240000-07:00|40021585|Zeromus|00010DAE|15041404||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:19.7500000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:01:20.3570000-07:00|10FF000B|Pusu Rosu|79209|79209|7850|10000|||103.32|99.50|0.00|-1.62| +39|2023-10-06T22:01:20.3570000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||94.59|98.34|0.00|2.85| +261|2023-10-06T22:01:19.9780000-07:00|Change|10FF000B||||||| +24|2023-10-06T22:01:20.4020000-07:00|10FF0003|Gegehi Gehi|HoT|0|1C3E|73814|73814|5000|10000|||105.88|100.60|0.00|-2.86|10FF000B|Pusu Rosu|0|79209|79209|7569|10000|||103.32|99.50|0.00|-1.62| +22|2023-10-06T22:01:20.4020000-07:00|400215A3|Zeromus|8B60|Flare|10FF000A|Dukaro Nezikaro|150603|9B760000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||94.59|98.34|0.00|2.85|44|44|0|10000|||95.00|100.00|0.00|0.00|00010DB3|0|3| +22|2023-10-06T22:01:20.4020000-07:00|400215A3|Zeromus|8B60|Flare|10FF0006|Wowobora Gogobora|150603|80B80000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6350|10000|||95.28|101.97|0.00|-1.50|44|44|0|10000|||95.00|100.00|0.00|0.00|00010DB3|1|3| +22|2023-10-06T22:01:20.4020000-07:00|400215A3|Zeromus|8B60|Flare|10FF0007|Kehabiqo Febiqo|150603|6B9F0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.22|97.76|0.00|2.78|44|44|0|10000|||95.00|100.00|0.00|0.00|00010DB3|2|3| +22|2023-10-06T22:01:20.4020000-07:00|400215A2|Zeromus|8B60|Flare|10FF0004|Buhojaqe Zijaqe|150603|65EF0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2700|10000|||104.87|100.44|0.00|1.31|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DB4|0|5| +22|2023-10-06T22:01:20.4020000-07:00|400215A2|Zeromus|8B60|Flare|10FF0003|Gegehi Gehi|150603|66EE0000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5000|10000|||105.88|100.60|0.00|-2.86|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DB4|1|5| +22|2023-10-06T22:01:20.4020000-07:00|400215A2|Zeromus|8B60|Flare|10FF000B|Pusu Rosu|150603|60B60000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7569|10000|||103.32|99.50|0.00|-1.62|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DB4|2|5| +22|2023-10-06T22:01:20.4020000-07:00|400215A2|Zeromus|8B60|Flare|10FF0001|Sesuga Sapisuga|150603|32400000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DB4|3|5| +22|2023-10-06T22:01:20.4020000-07:00|400215A2|Zeromus|8B60|Flare|10FF0008|Kokosaze Lulusaze|150603|6AC50000|1B|8B608000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||107.68|98.65|0.00|-2.75|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DB4|4|5| +38|2023-10-06T22:01:20.4020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|17||105.88|100.60|0.00|-2.86|0|0|0||||||||||||| +261|2023-10-06T22:01:19.9780000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:01:19.9780000-07:00|Change|400215A2||||||||||||| +24|2023-10-06T22:01:20.4460000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|11FC|83502|83502|10000|10000|||94.59|98.34|0.00|2.85|10FF000B|Pusu Rosu|0|79209|79209|7850|10000|||103.32|99.50|0.00|-1.62| +38|2023-10-06T22:01:20.4460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|35||94.59|98.34|0.00|2.85|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:20.4920000-07:00|40021585|Zeromus|00010DAF|15028689||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:20.4920000-07:00|40021585|Zeromus|00010DB0|14998905||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:20.4920000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.22|97.76|0.00|2.78| +38|2023-10-06T22:01:20.4920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2700|10000|0||104.90|100.46|0.00|1.25|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:01:20.4920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||107.68|98.65|0.00|-2.75|0|0|0|||||||||||||||| +38|2023-10-06T22:01:20.4920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6350|10000|0||94.80|102.28|-0.02|-1.23|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:01:20.4920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5000|10000|0||105.88|100.60|0.00|-2.86|0|0|0||||||||||||| +38|2023-10-06T22:01:20.4920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||94.59|98.34|0.00|2.85|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:01:20.4920000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7850|10000|0||103.32|99.50|0.00|-1.62|0|0|0||||||||||||||||||| +38|2023-10-06T22:01:20.4920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.22|97.76|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:01:20.4920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||107.18|98.07|0.00|-2.76|0|0|0|||||||||||||||||||||| +24|2023-10-06T22:01:20.4920000-07:00|10FF000B|Pusu Rosu|HoT|0|12EC|79209|79209|7850|10000|||103.32|99.50|0.00|-1.62|10FF000B|Pusu Rosu|0|79209|79209|7850|10000|||103.32|99.50|0.00|-1.62| +21|2023-10-06T22:01:20.4920000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15041404|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2700|10000|||104.90|100.46|0.00|1.25|00010DB5|0|1| +38|2023-10-06T22:01:20.4920000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7850|10000|0||103.32|99.50|0.00|-1.62|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:20.5810000-07:00|40021585|Zeromus|00010DB1|14984288||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:20.5810000-07:00|10FF000A|Dukaro Nezikaro|00010DB3|43704|83502|10000|10000|0||94.59|98.34|0.00|2.85|1E00|0|0|02|03000000|0|0|||||| +37|2023-10-06T22:01:20.5810000-07:00|10FF0004|Buhojaqe Zijaqe|00010DB4|55446|81541|2700|10000|0||104.92|100.47|-0.01|1.16|1C00|0|0|01|03000000|0|0|| +24|2023-10-06T22:01:20.5810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|15CF|129844|129844|10000|10000|||93.22|97.76|0.00|2.78|10FF000B|Pusu Rosu|0|79209|79209|7850|10000|||103.32|99.50|0.00|-1.62| +38|2023-10-06T22:01:20.5810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.22|97.76|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:01:20.5810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55446|81541|2700|10000|0||104.92|100.47|-0.01|1.16|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:20.5810000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:01:20.5810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43704|83502|10000|10000|0||94.59|98.34|0.00|2.85|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:20.5810000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +30|2023-10-06T22:01:20.5810000-07:00|1E8|Shade Shift|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:01:20.6250000-07:00|10FF0006|Wowobora Gogobora|00010DB3|48857|81809|6350|10000|0||94.66|102.30|0.00|-1.17|1B01|0|0|02|0|0|0|||||| +37|2023-10-06T22:01:20.6250000-07:00|10FF0003|Gegehi Gehi|00010DB4|47464|73814|5000|10000|0||105.89|100.62|0.00|3.13|2301|0|0|01|01000000|0|0|| +21|2023-10-06T22:01:20.6250000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|32730000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.22|97.76|0.00|2.78|14984288|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010DB6|0|1| +38|2023-10-06T22:01:20.6250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|48857|81809|6350|10000|0||94.52|102.31|0.00|-1.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:20.6250000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +30|2023-10-06T22:01:20.6250000-07:00|A8E|Radiant Aegis|0.00|40021904|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +38|2023-10-06T22:01:20.6250000-07:00|10FF0003|Gegehi Gehi|005A5A23|47464|73814|5000|10000|0||105.90|100.64|0.00|2.45|0|0|0||||||||||||| +30|2023-10-06T22:01:20.6250000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +37|2023-10-06T22:01:20.6700000-07:00|40021585|Zeromus|00010DB2|14984219||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:20.6700000-07:00|10FF0007|Kehabiqo Febiqo|00010DB3|102293|129844|10000|10000|0||93.22|97.76|0.00|2.78|1502|0|0|01|01000000|0|0|| +37|2023-10-06T22:01:20.6700000-07:00|10FF000B|Pusu Rosu|00010DB4|54451|79209|7850|10000|0||103.32|99.50|0.00|-1.62|1802|0|0|01|03000000|0|0|| +24|2023-10-06T22:01:20.6700000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|13AF|129071|129071|10000|10000|||107.18|98.07|0.00|-2.76|10FF000B|Pusu Rosu|0|79209|79209|7850|10000|||103.32|99.50|0.00|-1.62| +38|2023-10-06T22:01:20.6700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|102293|129844|10000|10000|0||93.22|97.76|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:20.6700000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:01:20.6700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||107.18|98.07|0.00|-2.76|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:20.6700000-07:00|10FF000B|Pusu Rosu|005A5A18|54451|79209|7850|10000|0||103.32|99.50|0.00|-1.62|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:20.6700000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +30|2023-10-06T22:01:20.6700000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +37|2023-10-06T22:01:20.7150000-07:00|40021585|Zeromus|00010DAA|14962255||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:20.7150000-07:00|10FF0001|Sesuga Sapisuga|00010DB4|116207|129071|10000|10000|0||107.18|98.07|0.00|-2.76|1303|0|0|01|04000000|0|0|| +21|2023-10-06T22:01:20.7150000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|714003|1CCB0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|14984219|40478540|10000|10000|||100.00|80.10|0.00|0.00|102293|129844|10000|10000|||93.22|97.76|0.00|2.78|00010DB7|0|1| +21|2023-10-06T22:01:20.7150000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|25690000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|14984219|40478540|10000|10000|||100.00|80.10|0.00|0.00|55446|81541|2700|10000|||104.94|100.48|-0.02|1.16|00010DB8|0|1| +38|2023-10-06T22:01:20.7150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116207|129071|10000|10000|0||107.18|98.07|0.00|-2.76|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:20.7150000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:01:20.7150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55446|81541|2300|10000|0||104.94|100.48|-0.02|1.16|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:20.7150000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:01:20.7600000-07:00|10FF0008|Kokosaze Lulusaze|00010DB4|62883|90216|10000|10000|0||107.68|98.65|0.00|-2.75|1F04|0|0|01|02000000|0|0|| +39|2023-10-06T22:01:20.7600000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-3.10| +21|2023-10-06T22:01:20.7600000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14984219|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.68|98.65|0.00|-2.75|00010DB9|0|1| +38|2023-10-06T22:01:20.7600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62883|90216|10000|10000|0||107.68|98.65|0.00|-2.75|0|0|0|||||||||||||||| +30|2023-10-06T22:01:20.7600000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:01:20.8050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|55446|81541|2300|10000|0||104.94|100.48|-0.02|1.16|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:20.8050000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +39|2023-10-06T22:01:20.8490000-07:00|40021904|Carbuncle|77698|77698|10000|10000|||96.97|99.16|0.00|-0.49| +22|2023-10-06T22:01:20.9390000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|3B050000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|00010DBA|0|8| +22|2023-10-06T22:01:20.9390000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|3B7A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|55446|81541|2300|10000|||104.94|100.48|0.00|-2.90|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|00010DBA|1|8| +22|2023-10-06T22:01:20.9390000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|3A2E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|116207|129071|10000|10000|||107.18|98.07|0.00|-2.76|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|00010DBA|2|8| +22|2023-10-06T22:01:20.9390000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|39EC0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|47464|73814|5000|10000|||106.43|101.46|0.00|0.99|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|00010DBA|3|8| +22|2023-10-06T22:01:20.9390000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|39970000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|62883|90216|10000|10000|||107.68|98.65|0.00|-2.75|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|00010DBA|4|8| +22|2023-10-06T22:01:20.9390000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|59EB0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|48857|81809|6350|10000|||94.25|102.34|0.00|-0.99|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|00010DBA|5|8| +22|2023-10-06T22:01:20.9390000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|39D30000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|43704|83502|10000|10000|||94.37|98.12|-0.02|-2.55|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|00010DBA|6|8| +22|2023-10-06T22:01:20.9390000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|3C920000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|102293|129844|10000|10000|||93.22|97.76|0.00|2.78|54451|79209|7850|10000|||103.32|99.53|0.00|-1.04|00010DBA|7|8| +38|2023-10-06T22:01:20.9390000-07:00|10FF0003|Gegehi Gehi|005A5A23|47464|73814|5000|10000|0||106.43|101.46|0.00|0.99|0|0|0||||||||||||| +30|2023-10-06T22:01:20.9390000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +39|2023-10-06T22:01:20.9820000-07:00|10FF0003|Gegehi Gehi|48202|73814|5200|10000|||106.43|101.46|0.00|0.99| +261|2023-10-06T22:01:20.4740000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:01:21.0260000-07:00|40021585|Zeromus|00010DB5|14962108||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:21.0720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|62883|90216|10000|10000|0||107.69|98.64|-0.02|-2.81|0|0|0||||||||||||| +30|2023-10-06T22:01:21.0720000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +39|2023-10-06T22:01:21.1160000-07:00|10FF0004|Buhojaqe Zijaqe|56261|81541|2500|10000|||104.94|100.50|-0.02|-3.10| +261|2023-10-06T22:01:20.6960000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:01:21.1600000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|341F0000|104|9BD8000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|14962108|40478540|10000|10000|||100.00|80.10|0.00|0.00|43704|83502|10000|10000|||93.16|96.93|0.00|-2.45|00010DBB|0|1| +21|2023-10-06T22:01:21.2050000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14CB0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|43704|83502|10000|10000|||93.16|96.93|0.00|-2.45|54201|77430|10000|10000|||100.66|96.79|0.00|-2.89|00010DBC|0|1| +38|2023-10-06T22:01:21.2050000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43704|83502|10000|10000|0||93.16|96.93|0.00|-2.45|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:21.2050000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:01:21.2490000-07:00|40021585|Zeromus|00010DB7|14954737||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:21.3390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|48857|81809|6350|10000|0||94.25|102.35|0.00|-0.87|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:21.3390000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +261|2023-10-06T22:01:20.9310000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:01:21.4290000-07:00|10FF0007|Kehabiqo Febiqo|00010DB6|89378||||||93.22|97.74|0.00|2.89| +21|2023-10-06T22:01:21.4290000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2F0E0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|14954737|40478540|10000|10000|||100.00|80.10|0.00|0.00|62883|90216|10000|10000|||107.97|98.17|0.00|2.86|00010DBD|0|1| +21|2023-10-06T22:01:21.4290000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|345F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14954737|40478540|10000|10000|||100.00|80.10|0.00|0.00|48202|73814|5200|10000|||107.99|103.85|0.00|0.64|00010DBE|0|1| +27|2023-10-06T22:01:21.4720000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|00C5|0000|0000|0000| +27|2023-10-06T22:01:21.4720000-07:00|10FF0006|Wowobora Gogobora|0000|0000|00C5|0000|0000|0000| +21|2023-10-06T22:01:21.4720000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BBF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14954737|40478540|10000|10000|||100.00|80.10|0.00|0.00|102293|129844|10000|10000|||93.22|97.74|0.00|2.89|00010DBF|0|1| +38|2023-10-06T22:01:21.4730000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.66|96.79|0.00|-2.20|0|0|0||||||| +26|2023-10-06T22:01:21.4730000-07:00|7AE|Summon Order IV|30.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:01:21.4730000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|56261|81541|2500|10000|||105.51|101.89|0.00|0.94|56261|81541|2500|10000|||105.51|101.89|0.00|0.94|00010DC0|0|1| +38|2023-10-06T22:01:21.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89378|129844|10000|10000|0||93.22|97.71|0.00|2.98|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:21.4730000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T22:01:21.5170000-07:00|40021585|Zeromus|00010DB9|14952457||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:21.5170000-07:00|10FF000B|Pusu Rosu|00010DBA|69560||||||102.88|99.95|0.00|-1.04| +261|2023-10-06T22:01:21.1640000-07:00|Change|10FF0008||||||||| +20|2023-10-06T22:01:21.5610000-07:00|40021585|Zeromus|8D28|Nox|40021585|Zeromus|3.700|100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:21.6060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116207|129071|10000|10000|0||108.02|96.82|0.00|2.63|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:21.6060000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +261|2023-10-06T22:01:21.1640000-07:00|Change|40021585||||||||| +37|2023-10-06T22:01:21.6510000-07:00|40021585|Zeromus|00010DB8|14942880||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:21.6510000-07:00|10FF0004|Buhojaqe Zijaqe|00010DBA|71487||||||105.82|102.59|0.00|0.70| +24|2023-10-06T22:01:21.6510000-07:00|40021585|Zeromus|DoT|0|1E95|14952457|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|116207|129071|10000|10000|||108.02|96.82|0.00|2.63| +38|2023-10-06T22:01:21.6510000-07:00|40021585|Zeromus|005A5A00|14935051|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:01:21.6950000-07:00|40021585|Zeromus|00010DBB|14921708||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:21.6950000-07:00|10FF000A|Dukaro Nezikaro|00010DBB|46197||||||91.24|94.50|0.00|-2.74| +37|2023-10-06T22:01:21.7830000-07:00|10FF0001|Sesuga Sapisuga|00010DBA|129071||||||108.33|96.22|0.00|2.69| +21|2023-10-06T22:01:21.8730000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8890000|104|1978000|0|0|0|0|0|0|0|0|0|0|0|0|14921708|40478540|10000|10000|||100.00|80.10|0.00|0.00|46197|83502|10000|10000|||90.40|93.35|0.00|-2.61|00010DC1|0|1| +37|2023-10-06T22:01:21.9170000-07:00|10FF0003|Gegehi Gehi|00010DBA|63030||||||108.51|104.63|-0.02|-2.89| +261|2023-10-06T22:01:21.5500000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:01:21.5500000-07:00|Change|10FF0006||||||||| +21|2023-10-06T22:01:21.9180000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|A820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14921708|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.04|94.39|0.00|2.86|00010DC2|0|1| +31|2023-10-06T22:01:21.9180000-07:00|10FF0001||||| +37|2023-10-06T22:01:22.0050000-07:00|40021585|Zeromus|00010DBF|14918701||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:22.0050000-07:00|10FF000A|Dukaro Nezikaro|00010DBC|51520||||||89.64|92.30|-0.01|-2.52| +37|2023-10-06T22:01:22.0510000-07:00|10FF0008|Kokosaze Lulusaze|00010DBA|77626||||||108.82|96.82|0.00|-2.66| +21|2023-10-06T22:01:22.0510000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|280B0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|14921708|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||109.04|94.39|0.00|2.86|00010DC3|0|1| +38|2023-10-06T22:01:22.0510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||109.04|94.39|0.00|2.86|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:22.0510000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:01:21.6690000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:01:21.6690000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:01:21.6690000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:01:21.7800000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:01:22.1400000-07:00|10FF0008|Kokosaze Lulusaze|78528|90216|10000|10000|||109.30|96.16|0.00|-2.95| +37|2023-10-06T22:01:22.1840000-07:00|10FF0006|Wowobora Gogobora|00010DBA|71876||||||91.63|105.78|0.00|-0.64| +37|2023-10-06T22:01:22.2300000-07:00|40021585|Zeromus|00010DBD|14906655||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:22.2300000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40021585|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|14918701|40478540|10000|10000|||100.00|80.10|0.00|0.00|48857|81809|6350|10000|||91.63|105.78|0.00|-0.64|00010DC4|0|1| +38|2023-10-06T22:01:22.2300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71876|81809|6350|10000|0||91.63|105.78|0.00|-0.64|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:22.2300000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:01:21.7800000-07:00|Change|40021904||||||||| +261|2023-10-06T22:01:21.8910000-07:00|Change|10FF0007||||||||| +38|2023-10-06T22:01:22.2750000-07:00|40021908||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +22|2023-10-06T22:01:22.2750000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|200004|3C2D0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||110.27|93.05|0.00|3.03|54201|77430|10000|10000|||100.66|96.79|0.00|-1.89|00010DC5|0|8| +22|2023-10-06T22:01:22.2750000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF000B|Pusu Rosu|4|253F0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|69560|79209|7850|10000|||98.99|104.30|0.00|-0.73|54201|77430|10000|10000|||100.66|96.79|0.00|-1.89|00010DC5|1|8| +22|2023-10-06T22:01:22.2750000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|25760000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|78528|90216|10000|10000|||110.18|94.97|0.00|2.81|54201|77430|10000|10000|||100.66|96.79|0.00|-1.89|00010DC5|2|8| +22|2023-10-06T22:01:22.2750000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|24640000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|89378|129844|10000|10000|||90.46|93.47|0.00|-3.11|54201|77430|10000|10000|||100.66|96.79|0.00|-1.89|00010DC5|3|8| +22|2023-10-06T22:01:22.2750000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|4|25610000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|71487|81541|2500|10000|||107.85|106.59|0.00|0.51|54201|77430|10000|10000|||100.66|96.79|0.00|-1.89|00010DC5|4|8| +22|2023-10-06T22:01:22.2750000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|4|246A0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|51520|83502|10000|10000|||88.80|91.16|0.00|-2.51|54201|77430|10000|10000|||100.66|96.79|0.00|-1.89|00010DC5|5|8| +22|2023-10-06T22:01:22.2750000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|24FB0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|71876|81809|6350|10000|||91.01|106.73|0.00|-2.61|54201|77430|10000|10000|||100.66|96.79|0.00|-1.89|00010DC5|6|8| +22|2023-10-06T22:01:22.2750000-07:00|4002185F|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|249E0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|63030|73814|5200|10000|||110.15|107.14|0.00|0.71|54201|77430|10000|10000|||100.66|96.79|0.00|-1.89|00010DC5|7|8| +38|2023-10-06T22:01:22.2750000-07:00|40021908||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:01:22.3180000-07:00|10FF000A|Dukaro Nezikaro|00010DBA|66323||||||88.80|91.16|0.00|-2.51| +37|2023-10-06T22:01:22.4070000-07:00|40021585|Zeromus|00010DC1|14904470||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:22.4070000-07:00|10FF000A|Dukaro Nezikaro|00010DC1|66730||||||88.80|91.16|0.00|-2.51| +261|2023-10-06T22:01:22.0020000-07:00|Change|40021908||| +261|2023-10-06T22:01:22.0020000-07:00|Add|40021908||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:22.0020000-07:00|Change|4002159C||||||||| +03|2023-10-06T22:01:22.0020000-07:00|40021908|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||92.10|109.09|0.00|2.82| +261|2023-10-06T22:01:22.1140000-07:00|Change|40021908||||| +37|2023-10-06T22:01:22.4520000-07:00|40021585|Zeromus|00010DC2|14901780||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:22.4520000-07:00|10FF0007|Kehabiqo Febiqo|00010DBA|104884||||||90.24|92.81|0.00|-3.07| +261|2023-10-06T22:01:22.1140000-07:00|Change|400215A3||||||||||| +261|2023-10-06T22:01:22.1140000-07:00|Change|4002159B||||||||||||||||| +261|2023-10-06T22:01:22.1140000-07:00|Change|4002159A||||||||||||||||||||| +261|2023-10-06T22:01:22.1140000-07:00|Change|40021599||||||||||||||||| +261|2023-10-06T22:01:22.1140000-07:00|Change|40021597||||||||||||||||| +261|2023-10-06T22:01:22.1140000-07:00|Change|40021598||||||||||||||||||||| +261|2023-10-06T22:01:22.1140000-07:00|Change|400215A2||||||||||||| +21|2023-10-06T22:01:22.4960000-07:00|4002159C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00010DC6|0|0| +261|2023-10-06T22:01:22.1140000-07:00|Change|40021596||||||||||||||||||||| +21|2023-10-06T22:01:22.4960000-07:00|4002159D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00010DC7|0|0| +20|2023-10-06T22:01:22.4960000-07:00|400215A3|Zeromus|8B62|Flare|400215A3|Zeromus|4.700|95.00|100.00|0.00|0.00| +261|2023-10-06T22:01:22.1140000-07:00|Change|40021595||||||||||||||||| +20|2023-10-06T22:01:22.4960000-07:00|400215A2|Zeromus|8B62|Flare|400215A2|Zeromus|4.700|105.00|100.00|0.00|0.00| +20|2023-10-06T22:01:22.5410000-07:00|40021594|Zeromus|8B63|Prominence Spine|40021594|Zeromus|4.700|116.50|116.50|0.00|0.00| +20|2023-10-06T22:01:22.5410000-07:00|40021595|Zeromus|8B63|Prominence Spine|40021595|Zeromus|4.700|100.00|100.00|0.00|0.79| +20|2023-10-06T22:01:22.5410000-07:00|40021596|Zeromus|8B63|Prominence Spine|40021596|Zeromus|4.700|88.00|100.00|0.00|0.00| +20|2023-10-06T22:01:22.5410000-07:00|40021597|Zeromus|8B63|Prominence Spine|40021597|Zeromus|4.700|100.00|100.00|0.00|-1.57| +20|2023-10-06T22:01:22.5410000-07:00|40021598|Zeromus|8B63|Prominence Spine|40021598|Zeromus|4.700|112.00|100.00|0.00|0.00| +20|2023-10-06T22:01:22.5410000-07:00|40021599|Zeromus|8B63|Prominence Spine|40021599|Zeromus|4.700|100.00|100.00|0.00|1.57| +20|2023-10-06T22:01:22.5410000-07:00|4002159A|Zeromus|8B63|Prominence Spine|4002159A|Zeromus|4.700|83.50|116.50|0.00|0.00| +20|2023-10-06T22:01:22.5410000-07:00|4002159B|Zeromus|8B63|Prominence Spine|4002159B|Zeromus|4.700|100.00|100.00|0.00|-0.79| +261|2023-10-06T22:01:22.1140000-07:00|Change|40021594||||||||||||||||||||| +261|2023-10-06T22:01:22.1140000-07:00|Change|40021594||||||||||||||||||||| +37|2023-10-06T22:01:22.5850000-07:00|40021585|Zeromus|00010DBE|14888373||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:22.3020000-07:00|Change|10FF0008||||||||| +38|2023-10-06T22:01:22.7630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71876|81809|6350|10000|0||90.63|107.32|0.00|-2.18|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:22.7630000-07:00|2B|Weakness|0.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +39|2023-10-06T22:01:22.8070000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||112.04|91.13|0.00|-2.96| +261|2023-10-06T22:01:22.3970000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:01:22.3970000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:01:22.3970000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:01:22.4890000-07:00|Change|10FF000B||||||||| +38|2023-10-06T22:01:23.0750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|66730|83502|10000|10000|0||87.24|89.22|0.00|-2.46|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:23.0750000-07:00|54|Bloodbath|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +38|2023-10-06T22:01:23.1640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71876|81809|6900|10000|0||88.94|109.29|0.00|-1.18|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:01:22.7010000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:01:23.2080000-07:00|10FF000B|Pusu Rosu|00010DC5|79095||||||95.41|107.75|0.00|-0.81| +39|2023-10-06T22:01:23.2080000-07:00|10FF0006|Wowobora Gogobora|72694|81809|7100|10000|||88.94|109.29|0.00|-1.18| +21|2023-10-06T22:01:23.2080000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22260000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|14888373|40478540|10000|10000|||100.00|80.10|0.00|0.00|104884|129844|10000|10000|||88.79|89.45|0.00|-2.77|00010DC8|0|1| +37|2023-10-06T22:01:23.2520000-07:00|10FF0006|Wowobora Gogobora|00010DC4|72694|81809|7100|10000|0||88.36|109.80|0.00|-1.07|1B00|0|0|01|0AA5|0|0|| +38|2023-10-06T22:01:23.2520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72694|81809|7100|10000|0||88.36|109.80|0.00|-1.07|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:01:22.8230000-07:00|Change|10FF0007||||||||| +38|2023-10-06T22:01:23.2980000-07:00|40021585|Zeromus|005A5A00|14888373|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:01:23.2980000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +261|2023-10-06T22:01:22.8230000-07:00|Change|40021908||| +261|2023-10-06T22:01:22.8230000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:01:23.3420000-07:00|10FF0008|Kokosaze Lulusaze|00010DC5|88118||||||114.09|89.86|0.00|2.51| +37|2023-10-06T22:01:23.3420000-07:00|40021585|Zeromus|00010DC3|14878122||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:23.3420000-07:00|10FF000B|Pusu Rosu|79209|79209|8131|10000|||94.29|108.71|0.00|-0.84| +39|2023-10-06T22:01:23.3420000-07:00|10FF000A|Dukaro Nezikaro|67565|83502|10000|10000|||85.70|87.24|0.00|-2.48| +21|2023-10-06T22:01:23.4300000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|89E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14878122|40478540|10000|10000|||100.00|80.10|0.00|0.00|88118|90216|10000|10000|||114.53|89.23|0.00|2.52|00010DC9|0|1| +261|2023-10-06T22:01:22.9430000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:01:23.4760000-07:00|10FF0007|Kehabiqo Febiqo|00010DC5|114200||||||87.64|87.64|0.00|2.92| +39|2023-10-06T22:01:23.4760000-07:00|10FF0007|Kehabiqo Febiqo|115498|129844|10000|10000|||87.64|87.64|0.00|2.92| +38|2023-10-06T22:01:23.4760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71487|81541|2500|10000|0||110.29|110.61|0.00|1.22|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:23.4760000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:01:23.4760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88118|90216|10000|10000|0||114.93|88.66|0.00|2.56|0|0|0||||||||||||| +26|2023-10-06T22:01:23.4760000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:01:23.4760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72694|81809|7100|10000|0||87.32|110.77|0.00|-0.90|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:23.4760000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:23.4760000-07:00|10FF0003|Gegehi Gehi|005A5A23|63030|73814|5200|10000|0||113.91|112.59|0.00|0.65|0|0|0||||||||||||| +26|2023-10-06T22:01:23.4760000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:01:23.4760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|67565|83502|10000|10000|0||85.23|86.65|0.00|-2.48|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:23.4760000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:01:23.4760000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8131|10000|0||93.75|109.12|0.00|-0.86|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:23.4760000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:23.4760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115498|129844|10000|10000|0||87.64|87.64|0.00|2.92|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:23.4760000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:23.4760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||114.65|88.58|0.00|-2.89|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:23.4760000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T22:01:23.5640000-07:00|4002159C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00010DCA|0|0| +21|2023-10-06T22:01:23.5640000-07:00|4002159D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00010DCB|0|0| +37|2023-10-06T22:01:23.6080000-07:00|10FF0004|Buhojaqe Zijaqe|00010DC5|81056||||||110.53|110.83|0.00|1.29| +38|2023-10-06T22:01:23.6530000-07:00|40021585|Zeromus|005A5A00|14878122|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:01:23.6530000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +261|2023-10-06T22:01:23.2780000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:01:23.7420000-07:00|10FF000A|Dukaro Nezikaro|00010DC5|76887||||||84.19|85.47|0.00|-2.44| +39|2023-10-06T22:01:23.7420000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.66|96.79|0.00|-2.04| +21|2023-10-06T22:01:23.7430000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40021585|Zeromus|154003|6EC80000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|14878122|40478540|10000|10000|||100.00|80.10|0.00|0.00|63030|73814|5200|10000|||114.04|112.77|0.00|0.66|00010DCC|0|1| +38|2023-10-06T22:01:23.7430000-07:00|10FF0003|Gegehi Gehi|005A5A23|63030|73814|4800|10000|0||114.04|112.77|0.00|0.66|0|0|0||||||||||||| +26|2023-10-06T22:01:23.7430000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:01:23.3750000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:01:23.8310000-07:00|40021585|Zeromus|00010DC8|14869380||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:23.8760000-07:00|10FF0006|Wowobora Gogobora|00010DC5|81809||||||85.40|112.94|0.00|-0.74| +261|2023-10-06T22:01:23.4690000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:01:23.4690000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:01:23.9210000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44724003|4BC80000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|14869380|40478540|10000|10000|||100.00|80.10|0.00|0.00|88118|90216|10000|10000|||116.51|86.25|0.00|2.57|00010DCD|0|1| +39|2023-10-06T22:01:23.9650000-07:00|10FF0003|Gegehi Gehi|63768|73814|5000|10000|||114.16|112.94|0.00|2.91| +37|2023-10-06T22:01:24.0100000-07:00|10FF0003|Gegehi Gehi|00010DC5|73142|73814|5000|10000|0||114.24|113.04|0.00|2.36|2307|0|0|01|010004D2|0|C1F00000|| +38|2023-10-06T22:01:24.0100000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||100.66|96.79|0.00|-2.12|0|0|0|||| +30|2023-10-06T22:01:24.0100000-07:00|7AE|Summon Order IV|0.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +261|2023-10-06T22:01:23.5710000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:01:23.5710000-07:00|Change|10FF0004||||||||| +33|2023-10-06T22:01:24.0540000-07:00|80034E7C|80000004|A8B|00|00|00| +21|2023-10-06T22:01:24.0540000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14869380|40478540|10000|10000|||100.00|80.10|0.00|0.00|76887|83502|10000|10000|||82.35|83.14|0.00|-2.48|00010DCE|0|1| +39|2023-10-06T22:01:24.0980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2700|10000|||113.43|113.39|0.00|0.89| +261|2023-10-06T22:01:23.6930000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:01:23.8060000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:01:24.1870000-07:00|40021585|Zeromus|00010DC9|14867174||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:24.1870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14869380|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||117.10|85.00|0.00|-2.67|00010DCF|0|1| +31|2023-10-06T22:01:24.1870000-07:00|10FF0001||||| +261|2023-10-06T22:01:23.8060000-07:00|Change|40021904||||||||| +21|2023-10-06T22:01:24.3200000-07:00|40021908|Emerald Garuda|64FE|Aerial Blast|40021585|Zeromus|350003|5DDA0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|14867174|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||92.10|109.09|0.00|2.82|00010DD0|0|1| +21|2023-10-06T22:01:24.3200000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|1A030000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|14867174|40478540|10000|10000|||100.00|80.10|0.00|0.00|76887|83502|10000|10000|||81.80|82.41|0.00|-2.50|00010DD1|0|1| +21|2023-10-06T22:01:24.4970000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|200004|21DF0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|76887|83502|10000|10000|||81.66|82.21|0.00|1.66|54201|77430|10000|10000|||100.66|96.79|0.00|-2.73|00010DD2|0|1| +261|2023-10-06T22:01:24.1410000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:01:24.5430000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2CA50000|4|25B28000|0|0|0|0|0|0|0|0|0|0|0|0|14867174|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||117.63|83.19|0.00|-2.57|00010DD3|0|1| +38|2023-10-06T22:01:24.5430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||117.63|83.19|0.00|-2.57|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:24.5430000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:01:24.5870000-07:00|40021585|Zeromus|00010DCE|14864884||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:24.6310000-07:00|4002159C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00010DD4|0|0| +21|2023-10-06T22:01:24.6310000-07:00|4002159D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00010DD5|0|0| +261|2023-10-06T22:01:24.2360000-07:00|Change|10FF0001||||||||||| +24|2023-10-06T22:01:24.6760000-07:00|40021585|Zeromus|DoT|0|BC7|14864884|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||117.77|82.51|0.00|-2.56| +21|2023-10-06T22:01:24.6760000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|3EDD0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|14864884|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7100|10000|||83.31|116.61|0.00|-0.50|00010DD6|0|1| +38|2023-10-06T22:01:24.6760000-07:00|40021585|Zeromus|005A5A00|14861869|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:01:24.7210000-07:00|40021585|Zeromus|00010DCD|14842469||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:24.7210000-07:00|40021585|Zeromus|00010DCF|14840713||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:24.7210000-07:00|40021585|Zeromus|00010DD1|14834054||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:24.8540000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14861869|40478540|10000|10000|||100.00|80.10|0.00|0.00|115498|129844|10000|10000|||83.29|83.69|0.00|-2.50|00010DD7|0|1| +261|2023-10-06T22:01:24.5180000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:01:24.5180000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:01:24.6430000-07:00|Change|10FF0004||||||||||| +20|2023-10-06T22:01:25.0760000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|115.63|115.24|-0.02|2.36| +39|2023-10-06T22:01:25.1660000-07:00|10FF0008|Kokosaze Lulusaze|89020|90216|10000|10000|||118.79|81.82|0.00|2.67| +21|2023-10-06T22:01:25.1660000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|25F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14834054|40478540|10000|10000|||100.00|80.10|0.00|0.00|76887|83502|10000|10000|||81.28|81.71|0.00|1.66|00010DD8|0|1| +37|2023-10-06T22:01:25.2090000-07:00|40021585|Zeromus|00010DCC|14805694||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:25.2090000-07:00|10FF0003|Gegehi Gehi|00010DCC|73142|73814|5000|10000|0||114.41|113.26|0.00|2.51|2300|0|0|01|010004D2|0|41F00000|| +38|2023-10-06T22:01:25.2090000-07:00|10FF0003|Gegehi Gehi|005A5A23|73142|73814|5000|10000|0||114.41|113.26|0.00|2.51|0|0|0||||||||||||| +37|2023-10-06T22:01:25.2990000-07:00|10FF000A|Dukaro Nezikaro|00010DD2|83502||||||81.28|81.71|0.00|1.66| +37|2023-10-06T22:01:25.2990000-07:00|40021585|Zeromus|00010DD6|14789601||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:25.2990000-07:00|40021585|Zeromus|00010DD3|14778172||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:24.8790000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:01:25.3870000-07:00|40021585|Zeromus|00010DD7|14773523||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:25.5220000-07:00|40021585|Zeromus|8D28|Nox|40021585|Zeromus|1B|8D288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14773523|40478540|10000|10000|||100.00|80.10|0.00|0.00|14773523|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010DD9|0|1| +261|2023-10-06T22:01:25.1040000-07:00|Change|40021585||||| +37|2023-10-06T22:01:25.6100000-07:00|40021585|Zeromus|00010DD0|14749497||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:25.6540000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F712003|4EAE0000|143E|340000|200004|25CE8000|11B|2A8000|0|0|0|0|0|0|0|0|14773523|40478540|10000|10000|||100.00|80.10|0.00|0.00|115498|129844|10000|10000|||81.94|82.09|0.00|-2.34|00010DDA|0|1| +21|2023-10-06T22:01:25.6990000-07:00|4002159C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00010DDB|0|0| +21|2023-10-06T22:01:25.6990000-07:00|4002159D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00010DDC|0|0| +39|2023-10-06T22:01:25.7880000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||118.58|81.64|0.00|-2.56| +261|2023-10-06T22:01:25.3890000-07:00|Change|10FF0001||||||| +37|2023-10-06T22:01:25.8330000-07:00|40021585|Zeromus|00010DD8|14739778||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:25.4850000-07:00|Remove|40021904| +04|2023-10-06T22:01:25.4850000-07:00|40021904|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||94.35|103.35|0.00|-0.41| +261|2023-10-06T22:01:25.5760000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:01:26.0100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31E70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14739778|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2700|10000|||115.04|113.69|0.00|-2.72|00010DDD|0|1| +21|2023-10-06T22:01:26.1000000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AF60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14739778|40478540|10000|10000|||100.00|80.10|0.00|0.00|89020|90216|10000|10000|||118.97|81.53|0.00|2.44|00010DDE|0|1| +38|2023-10-06T22:01:26.1450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7350|10000|0||82.97|117.76|0.00|-1.03|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:01:25.6730000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:01:26.1890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7550|10000|||82.89|117.81|0.00|-1.07| +21|2023-10-06T22:01:26.1890000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|272B0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|14739778|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7350|10000|||82.89|117.81|0.00|-1.07|00010DDF|0|1| +21|2023-10-06T22:01:26.2340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|87F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14739778|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||81.28|81.71|0.00|1.66|00010DE0|0|1| +21|2023-10-06T22:01:26.2790000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|752003|95020000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|14739778|40478540|10000|10000|||100.00|80.10|0.00|0.00|73142|73814|5000|10000|||115.50|114.56|0.00|-1.32|00010DE1|0|1| +261|2023-10-06T22:01:25.9070000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T22:01:26.3680000-07:00|10FF000B|Pusu Rosu|79209|79209|8412|10000|||83.18|117.69|0.00|-0.27| +39|2023-10-06T22:01:26.3680000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||81.28|81.71|0.00|1.66| +261|2023-10-06T22:01:26.0180000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:01:26.4120000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|726003|3C7F0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|14739778|40478540|10000|10000|||100.00|80.10|0.00|0.00|89020|90216|10000|10000|||118.97|81.53|0.00|2.44|00010DE2|0|1| +21|2023-10-06T22:01:26.4120000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24F80000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|14739778|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||81.28|81.71|0.00|1.66|00010DE3|0|1| +39|2023-10-06T22:01:26.4580000-07:00|10FF0007|Kehabiqo Febiqo|116796|129844|10000|10000|||81.86|82.02|0.00|1.68| +38|2023-10-06T22:01:26.4580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2300|10000|0||115.04|113.69|0.00|-2.72|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:26.4580000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:01:26.4580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|89020|90216|10000|10000|0||118.97|81.53|0.00|2.44|0|0|0||||||||||||| +26|2023-10-06T22:01:26.4580000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:01:26.4580000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7250|10000|0||82.76|117.87|0.00|2.70|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:26.4580000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:26.4580000-07:00|10FF0003|Gegehi Gehi|005A5A23|73142|73814|4600|10000|0||115.43|114.48|0.00|-2.69|0|0|0||||||||||||| +26|2023-10-06T22:01:26.4580000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:01:26.4580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||81.28|81.71|0.00|1.66|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:26.4580000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:01:26.4580000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8412|10000|0||83.18|117.69|0.00|-0.27|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:26.4580000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:26.4580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116796|129844|10000|10000|0||81.86|82.02|0.00|1.68|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:26.4580000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:26.4580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||118.58|81.64|0.00|-2.56|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:26.4580000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T22:01:26.4580000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14739778|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||118.58|81.64|0.00|-2.56|00010DE4|0|1| +31|2023-10-06T22:01:26.4580000-07:00|10FF0001||||| +20|2023-10-06T22:01:26.5010000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|83.15|117.72|0.00|-0.25| +261|2023-10-06T22:01:26.0180000-07:00|Change|40021592||||||||| +261|2023-10-06T22:01:26.0180000-07:00|Change|40021593||||||||| +20|2023-10-06T22:01:26.5910000-07:00|40021592|Zeromus|8D2A|Nox|40021592|Zeromus|4.700|82.22|118.12|0.00|0.00| +20|2023-10-06T22:01:26.5910000-07:00|40021593|Zeromus|8D2A|Nox|40021593|Zeromus|4.700|81.29|81.73|0.00|0.00| +37|2023-10-06T22:01:26.7690000-07:00|40021585|Zeromus|00010DE0|14737603||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:26.7690000-07:00|4002159C|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00010DE5|0|0| +21|2023-10-06T22:01:26.7690000-07:00|4002159D|Zeromus|8BB6|Scald|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00010DE6|0|0| +39|2023-10-06T22:01:26.7690000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||100.78|97.04|0.00|2.99| +37|2023-10-06T22:01:26.8130000-07:00|40021585|Zeromus|00010DDF|14727576||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:26.8130000-07:00|40021585|Zeromus|00010DDD|14714801||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:26.8130000-07:00|40021585|Zeromus|00010DE3|14705337||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:26.8580000-07:00|40021585|Zeromus|00010DDE|14702531||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:26.4200000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:01:26.9920000-07:00|40021585|Zeromus|00010DE4|14700843||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:26.9920000-07:00|10FF0003|Gegehi Gehi|73814|73814|4800|10000|||115.16|114.12|0.00|-2.72| +261|2023-10-06T22:01:26.6290000-07:00|Change|40021593||||||||||||| +261|2023-10-06T22:01:26.6290000-07:00|Change|40021592||||||||||||| +261|2023-10-06T22:01:26.6290000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T22:01:27.0810000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|13070000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14700843|40478540|10000|10000|||100.00|80.10|0.00|0.00|89020|90216|10000|10000|||118.97|81.53|0.00|-1.65|00010DE7|0|1| +21|2023-10-06T22:01:27.0810000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|135F0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|14700843|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||118.58|81.64|0.00|-1.65|00010DE8|0|1| +39|2023-10-06T22:01:27.1260000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2500|10000|||115.04|113.69|-0.02|-2.71| +37|2023-10-06T22:01:27.1710000-07:00|40021585|Zeromus|00010DDA|14680701||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:27.1710000-07:00|10FF0007|Kehabiqo Febiqo|00010DDA|126474||||||81.86|82.02|0.00|1.68| +37|2023-10-06T22:01:27.1710000-07:00|40021585|Zeromus|00010DE2|14665214||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:26.7450000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:01:26.8550000-07:00|Change|10FF0003||||||||| +22|2023-10-06T22:01:27.4380000-07:00|4002159E|Zeromus|8B65|Branding Flare|10FF0003|Gegehi Gehi|150003|A3480000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|73814|73814|4800|10000|||115.16|114.12|0.00|-2.72|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DE9|0|2| +22|2023-10-06T22:01:27.4380000-07:00|4002159E|Zeromus|8B65|Branding Flare|10FF0004|Buhojaqe Zijaqe|150003|A0420000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|81541|81541|2500|10000|||115.02|113.68|0.00|-2.53|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DE9|1|2| +22|2023-10-06T22:01:27.4380000-07:00|4002159F|Zeromus|8B65|Branding Flare|10FF0006|Wowobora Gogobora|150003|9EF10000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|81809|81809|7250|10000|||82.20|118.06|0.00|2.92|44|44|0|10000|||95.00|100.00|0.00|0.00|00010DEA|0|2| +22|2023-10-06T22:01:27.4380000-07:00|4002159F|Zeromus|8B65|Branding Flare|10FF000B|Pusu Rosu|150003|9AD60000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|79209|79209|8412|10000|||83.12|117.75|0.00|2.72|44|44|0|10000|||95.00|100.00|0.00|0.00|00010DEA|1|2| +22|2023-10-06T22:01:27.4380000-07:00|400215A0|Zeromus|8B65|Branding Flare|10FF000A|Dukaro Nezikaro|150003|A8410000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||81.28|81.71|0.00|1.66|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DEB|0|2| +22|2023-10-06T22:01:27.4380000-07:00|400215A0|Zeromus|8B65|Branding Flare|10FF0007|Kehabiqo Febiqo|150003|6CB10000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|126474|129844|10000|10000|||81.88|82.03|0.00|1.52|44|44|0|10000|||105.00|100.00|0.00|0.00|00010DEB|1|2| +22|2023-10-06T22:01:27.4380000-07:00|400215A1|Zeromus|8B65|Branding Flare|10FF0008|Kokosaze Lulusaze|150003|AF990000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|89020|90216|10000|10000|||118.97|81.53|0.00|-1.65|44|44|0|10000|||95.00|100.00|0.00|0.00|00010DEC|0|2| +22|2023-10-06T22:01:27.4380000-07:00|400215A1|Zeromus|8B65|Branding Flare|10FF0001|Sesuga Sapisuga|150003|67520000|180E|8320000|1B|8B658000|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||118.58|81.64|0.00|-1.65|44|44|0|10000|||95.00|100.00|0.00|0.00|00010DEC|1|2| +21|2023-10-06T22:01:27.4380000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|3DBF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|14665214|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8412|10000|||83.12|117.75|0.00|2.72|00010DED|0|1| +38|2023-10-06T22:01:27.4380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126474|129844|10000|10000|0||81.88|82.03|0.00|1.52|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:27.4380000-07:00|832|Fire Resistance Down II|2.00|400215A0|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T22:01:27.4380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|89020|90216|10000|10000|0||118.97|81.53|0.00|-1.65|0|0|0||||||||||||| +26|2023-10-06T22:01:27.4380000-07:00|832|Fire Resistance Down II|2.00|400215A1|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T22:01:27.4380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7250|10000|0||82.20|118.06|0.00|2.92|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:27.4380000-07:00|832|Fire Resistance Down II|2.00|4002159F|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +261|2023-10-06T22:01:26.9730000-07:00|Change|4002159E||||||||||||| +38|2023-10-06T22:01:27.4380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||118.58|81.64|0.00|-1.65|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:27.4380000-07:00|832|Fire Resistance Down II|2.00|400215A1|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T22:01:27.4380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2500|10000|0||115.02|113.68|0.00|-2.53|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:27.4380000-07:00|832|Fire Resistance Down II|2.00|4002159E|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +261|2023-10-06T22:01:26.9730000-07:00|Change|4002159F||||||||||||| +38|2023-10-06T22:01:27.4380000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4800|10000|0||115.16|114.12|0.00|-2.72|0|0|0||||||||||||| +26|2023-10-06T22:01:27.4380000-07:00|832|Fire Resistance Down II|2.00|4002159E|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T22:01:27.4380000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8012|10000|0||83.12|117.75|0.00|2.72|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:26.9730000-07:00|Change|400215A1||||||||||||| +26|2023-10-06T22:01:27.4380000-07:00|832|Fire Resistance Down II|2.00|4002159F|Zeromus|10FF000B|Pusu Rosu|00|79209|44| +38|2023-10-06T22:01:27.4380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||81.28|81.71|0.00|1.66|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:01:26.9730000-07:00|Change|400215A0||||||||||||| +26|2023-10-06T22:01:27.4380000-07:00|832|Fire Resistance Down II|2.00|400215A0|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +261|2023-10-06T22:01:26.9730000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:01:27.4820000-07:00|400215A3|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00010DEE|0|0| +21|2023-10-06T22:01:27.4820000-07:00|400215A2|Zeromus|8B62|Flare|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00010DEF|0|0| +261|2023-10-06T22:01:27.0910000-07:00|Change|400215A3||||||||||| +261|2023-10-06T22:01:27.0910000-07:00|Change|400215A2||||||||||||| +21|2023-10-06T22:01:27.5270000-07:00|40021594|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|1.57|00010DF0|0|0| +21|2023-10-06T22:01:27.5270000-07:00|40021595|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|0.00|00010DF1|0|0| +21|2023-10-06T22:01:27.5270000-07:00|40021596|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|-1.57|00010DF2|0|0| +21|2023-10-06T22:01:27.5270000-07:00|40021597|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.00|100.00|0.00|3.14|00010DF3|0|0| +21|2023-10-06T22:01:27.5270000-07:00|40021598|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|1.57|00010DF4|0|0| +21|2023-10-06T22:01:27.5270000-07:00|40021599|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|0.00|00010DF5|0|0| +21|2023-10-06T22:01:27.5270000-07:00|4002159A|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|-1.57|00010DF6|0|0| +21|2023-10-06T22:01:27.5270000-07:00|4002159B|Zeromus|8B63|Prominence Spine|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.00|100.00|0.00|3.14|00010DF7|0|0| +261|2023-10-06T22:01:27.0910000-07:00|Change|40021594||||||||||||| +261|2023-10-06T22:01:27.0910000-07:00|Change|40021598||||||||||||| +261|2023-10-06T22:01:27.0910000-07:00|Change|40021599||||||||||||| +261|2023-10-06T22:01:27.0910000-07:00|Change|40021597||||||||||||| +261|2023-10-06T22:01:27.0910000-07:00|Change|40021595||||||||||||| +261|2023-10-06T22:01:27.0910000-07:00|Change|40021596||||||||||||| +261|2023-10-06T22:01:27.0910000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T22:01:27.0910000-07:00|Change|4002159A||||||||||||| +20|2023-10-06T22:01:27.6150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|114.89|113.53|0.00|-2.48| +24|2023-10-06T22:01:27.6600000-07:00|40021585|Zeromus|DoT|0|13E3|14665214|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9200|10000|||118.58|81.64|0.00|-1.65| +21|2023-10-06T22:01:27.6600000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|33B70000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|126474|129844|10000|10000|||81.92|82.08|0.00|1.25|14665214|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010DF8|0|1| +38|2023-10-06T22:01:27.6600000-07:00|40021585|Zeromus|005A5A00|14660123|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:01:27.7050000-07:00|40021585|Zeromus|00010DE8|14655164||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:27.7050000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89020|90216|10000|10000|||118.97|81.53|0.00|-1.65|89020|90216|10000|10000|||118.97|81.53|0.00|-1.65|00010DF9|0|1| +21|2023-10-06T22:01:27.7050000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|3C440000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|14660123|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7250|10000|||81.98|116.97|0.00|-3.08|00010DFA|0|1| +37|2023-10-06T22:01:27.8830000-07:00|40021585|Zeromus|00010DE7|14650293||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:27.9740000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14E90000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|126474|129844|10000|10000|||81.99|82.13|0.00|1.00|54201|77430|10000|10000|||102.07|99.87|0.00|2.16|00010DFB|0|1| +261|2023-10-06T22:01:27.6890000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:01:28.0620000-07:00|10FF0003|Gegehi Gehi|00010DE9|32014|73814|4800|10000|0||115.16|114.12|0.00|-2.72|2300|0|0|01|02000832|0|3FB5A1CD|| +37|2023-10-06T22:01:28.0620000-07:00|10FF0006|Wowobora Gogobora|00010DEA|41120|81809|6950|10000|0||82.38|114.05|0.00|2.93|1B00|0|0|01|01000832|0|3FB5A1CD|| +37|2023-10-06T22:01:28.0620000-07:00|10FF000A|Dukaro Nezikaro|00010DEB|40429|83502|10000|10000|0||81.28|81.71|0.00|1.66|1E00|0|0|01|03000832|0|3FB5A1CD|| +37|2023-10-06T22:01:28.0620000-07:00|10FF0008|Kokosaze Lulusaze|00010DEC|44067|90216|10000|10000|0||118.97|81.53|0.00|-1.65|1F00|0|0|01|02000832|0|3FB5A1CD|| +37|2023-10-06T22:01:28.1070000-07:00|10FF0004|Buhojaqe Zijaqe|00010DE9|40515|81541|2500|10000|0||114.77|113.39|-0.01|-2.71|1C01|0|0|01|03000832|0|3FB00002|| +37|2023-10-06T22:01:28.1070000-07:00|10FF000B|Pusu Rosu|00010DEA|39571|79209|8012|10000|0||83.97|117.15|0.00|2.19|1801|0|0|01|02000832|0|3FB00002|| +37|2023-10-06T22:01:28.1070000-07:00|10FF0007|Kehabiqo Febiqo|00010DEB|98649|129844|10000|10000|0||82.04|82.18|0.00|0.92|1501|0|0|01|01000832|0|3FB00002|| +37|2023-10-06T22:01:28.1070000-07:00|10FF0001|Sesuga Sapisuga|00010DEC|102621|129071|9200|10000|0||118.58|81.64|0.00|-1.65|1301|0|0|01|02000832|0|3FB00002|| +37|2023-10-06T22:01:28.1070000-07:00|40021585|Zeromus|00010DE1|14612147||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:28.1070000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|38260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14650293|40478540|10000|10000|||100.00|80.10|0.00|0.00|126474|129844|10000|10000|||82.04|82.18|0.00|0.92|00010DFC|0|1| +39|2023-10-06T22:01:28.1510000-07:00|10FF0008|Kokosaze Lulusaze|44969|90216|10000|10000|||118.97|81.53|0.00|-1.65| +38|2023-10-06T22:01:28.1940000-07:00|4002190C||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:01:28.1960000-07:00|4002190C||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:01:27.7990000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T22:01:28.2410000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14612147|40478540|10000|10000|||100.00|80.10|0.00|0.00|98649|129844|10000|10000|||82.44|82.52|0.00|1.61|00010DFD|0|1| +261|2023-10-06T22:01:27.9100000-07:00|Add|4002190C||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:01:27.9100000-07:00|4002190C|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65| +37|2023-10-06T22:01:28.3300000-07:00|40021585|Zeromus|00010DFA|14596719||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:27.9100000-07:00|Change|40021908||||| +261|2023-10-06T22:01:27.9100000-07:00|Change|4002190C||| +38|2023-10-06T22:01:28.3750000-07:00|4002190D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:01:28.3750000-07:00|4002190D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:01:28.4190000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14596719|40478540|10000|10000|||100.00|80.10|0.00|0.00|40429|83502|10000|10000|||81.30|81.71|0.00|1.59|00010DFE|0|1| +37|2023-10-06T22:01:28.4630000-07:00|10FF0007|Kehabiqo Febiqo|00010DF8|85410||||||83.65|83.57|0.00|1.16| +21|2023-10-06T22:01:28.5510000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4DB80000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14596719|40478540|10000|10000|||100.00|80.10|0.00|0.00|40515|81541|2500|10000|||114.76|113.39|0.00|-2.66|00010DFF|0|1| +21|2023-10-06T22:01:28.6410000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|341F0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|14596719|40478540|10000|10000|||100.00|80.10|0.00|0.00|40429|83502|10000|10000|||82.74|81.78|0.00|1.60|00010E00|0|1| +03|2023-10-06T22:01:28.3230000-07:00|4002190D|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||82.91|110.04|0.00|-0.12| +261|2023-10-06T22:01:28.3230000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:01:28.3230000-07:00|Add|4002190D||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:28.7300000-07:00|40021585|Zeromus|00010DFC|14582345||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:28.7300000-07:00|40021585|Zeromus|00010DED|14566538||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:28.7300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|DFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14596719|40478540|10000|10000|||100.00|80.10|0.00|0.00|102621|129071|9200|10000|||118.39|81.86|0.00|-1.52|00010E01|0|1| +31|2023-10-06T22:01:28.7300000-07:00|10FF0001||||| +261|2023-10-06T22:01:28.3230000-07:00|Change|4002190D||| +37|2023-10-06T22:01:28.7740000-07:00|40021585|Zeromus|00010DFD|14563661||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:28.7740000-07:00|10FF0007|Kehabiqo Febiqo|00010DFB|90763||||||85.17|85.31|0.00|0.82| +21|2023-10-06T22:01:28.7740000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8DB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14566538|40478540|10000|10000|||100.00|80.10|0.00|0.00|44969|90216|10000|10000|||118.97|81.53|0.00|-1.65|00010E02|0|1| +39|2023-10-06T22:01:28.8180000-07:00|10FF0001|Sesuga Sapisuga|103911|129071|9400|10000|||117.96|82.34|0.00|-1.52| +261|2023-10-06T22:01:28.4160000-07:00|Change|10FF0001||||||||| +38|2023-10-06T22:01:28.8630000-07:00|40021585|Zeromus|005A5A00|14563661|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +30|2023-10-06T22:01:28.8630000-07:00|4A9|Reprisal|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +21|2023-10-06T22:01:28.9070000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|726003|B60D0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|14563661|40478540|10000|10000|||100.00|80.10|0.00|0.00|44969|90216|10000|10000|||118.97|81.53|0.00|-1.65|00010E03|0|1| +21|2023-10-06T22:01:28.9070000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|752003|B1780000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|14563661|40478540|10000|10000|||100.00|80.10|0.00|0.00|32014|73814|4800|10000|||115.13|114.07|0.00|-2.72|00010E04|0|1| +261|2023-10-06T22:01:28.4160000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:01:28.9510000-07:00|40021585|Zeromus|00010DFE|14561532||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:28.6080000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:01:28.7260000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:01:29.1740000-07:00|40021585|Zeromus|00010E00|14548189||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:29.1740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41120|81809|7500|10000|0||82.92|107.29|0.00|3.09|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T22:01:29.2180000-07:00|10FF0006|Wowobora Gogobora|41938|81809|7700|10000|||82.92|107.29|0.00|3.09| +21|2023-10-06T22:01:29.2180000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|354003|2D390000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|14548189|40478540|10000|10000|||100.00|80.10|0.00|0.00|41120|81809|6950|10000|||82.92|107.29|0.00|3.09|00010E05|0|1| +34|2023-10-06T22:01:29.2180000-07:00|4002190C|Automaton Queen|4002190C|Automaton Queen|01| +261|2023-10-06T22:01:28.8410000-07:00|Change|4002190C||||| +37|2023-10-06T22:01:29.2630000-07:00|40021585|Zeromus|00010E01|14544608||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:29.3530000-07:00|40021585|Zeromus|00010DFF|14524712||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:29.3530000-07:00|10FF000B|Pusu Rosu|40363|79209|8293|10000|||88.33|111.67|0.00|2.92| +39|2023-10-06T22:01:29.3530000-07:00|10FF000A|Dukaro Nezikaro|41264|83502|10000|10000|||85.28|81.89|0.00|1.61| +34|2023-10-06T22:01:29.3970000-07:00|4002190D|Carbuncle|4002190D|Carbuncle|01| +261|2023-10-06T22:01:28.9560000-07:00|Change|4002190D||| +38|2023-10-06T22:01:29.4420000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|90763|129844|10000|10000|0||87.62|88.56|0.00|0.66|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:29.4420000-07:00|832|Fire Resistance Down II|0.00|400215A0|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T22:01:29.4420000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|44969|90216|10000|10000|0||118.89|81.64|0.00|-0.96|0|0|0||||||||||||| +30|2023-10-06T22:01:29.4420000-07:00|832|Fire Resistance Down II|0.00|400215A1|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T22:01:29.4420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41938|81809|7400|10000|0||82.99|105.85|0.00|2.72|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:29.4420000-07:00|832|Fire Resistance Down II|0.00|4002159F|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T22:01:29.4420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103911|129071|9400|10000|0||115.41|85.23|0.00|-1.50|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:29.4420000-07:00|832|Fire Resistance Down II|0.00|400215A1|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T22:01:29.4420000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40515|81541|2100|10000|0||111.87|110.58|0.00|-2.37|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:29.4420000-07:00|832|Fire Resistance Down II|0.00|4002159E|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T22:01:29.4420000-07:00|10FF0003|Gegehi Gehi|005A5A23|32014|73814|4400|10000|0||114.66|113.02|0.00|-2.72|0|0|0||||||||||||| +30|2023-10-06T22:01:29.4420000-07:00|832|Fire Resistance Down II|0.00|4002159E|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T22:01:29.4420000-07:00|10FF000B|Pusu Rosu|005A5A18|40363|79209|8293|10000|0||88.33|111.09|0.00|2.99|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:29.4420000-07:00|832|Fire Resistance Down II|0.00|4002159F|Zeromus|10FF000B|Pusu Rosu|00|79209|44| +38|2023-10-06T22:01:29.4420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|41264|83502|10000|10000|0||86.08|81.92|0.00|1.57|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:29.4420000-07:00|832|Fire Resistance Down II|0.00|400215A0|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +39|2023-10-06T22:01:29.4870000-07:00|10FF0007|Kehabiqo Febiqo|92061|129844|10000|10000|||87.62|88.56|0.00|0.66| +38|2023-10-06T22:01:29.4870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|40515|81541|2100|10000|0||111.87|110.58|0.00|-2.37|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:29.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:01:29.4870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|44969|90216|10000|10000|0||118.89|81.64|0.00|-0.96|0|0|0||||||||||||| +26|2023-10-06T22:01:29.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:01:29.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41938|81809|7400|10000|0||82.99|105.85|0.00|2.72|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:29.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:29.4870000-07:00|10FF0003|Gegehi Gehi|005A5A23|32014|73814|4400|10000|0||114.66|113.02|0.00|-2.72|0|0|0||||||||||||| +26|2023-10-06T22:01:29.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:01:29.4870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|41264|83502|10000|10000|0||86.08|81.92|0.00|1.57|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:29.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:01:29.4870000-07:00|10FF000B|Pusu Rosu|005A5A18|40363|79209|8293|10000|0||88.33|111.09|0.00|2.99|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:29.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:29.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|92061|129844|10000|10000|0||87.62|88.56|0.00|0.66|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:29.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:29.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103911|129071|9400|10000|0||115.41|85.23|0.00|-1.50|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:29.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +261|2023-10-06T22:01:29.0660000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:01:29.5320000-07:00|40021585|Zeromus|00010E02|14522445||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:29.5760000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|13040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14524712|40478540|10000|10000|||100.00|80.10|0.00|0.00|44969|90216|10000|10000|||118.58|82.00|0.00|-0.86|00010E06|0|1| +21|2023-10-06T22:01:29.5760000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1DF10000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|14524712|40478540|10000|10000|||100.00|80.10|0.00|0.00|103911|129071|9400|10000|||115.00|85.70|0.00|-1.50|00010E07|0|1| +261|2023-10-06T22:01:29.1840000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:01:29.1840000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:01:29.2830000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:01:29.7540000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-3.01| +261|2023-10-06T22:01:29.3840000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:01:29.8440000-07:00|40021585|Zeromus|00010E05|14510868||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:29.8880000-07:00|10FF0006|Wowobora Gogobora|1D89|Swiftcast|10FF0006|Wowobora Gogobora|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|41938|81809|7400|10000|||83.12|103.27|0.00|3.04|41938|81809|7400|10000|||83.12|103.27|0.00|3.04|00010E08|0|1| +38|2023-10-06T22:01:29.8880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41938|81809|7400|10000|0||83.12|103.27|0.00|3.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:29.8880000-07:00|A7|Swiftcast|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T22:01:29.9770000-07:00|10FF0003|Gegehi Gehi|32752|73814|4600|10000|||113.03|110.12|0.00|-2.63| +261|2023-10-06T22:01:29.5700000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:01:29.5700000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:01:30.0230000-07:00|10FF0006|Wowobora Gogobora|00010E08|41938|81809|7400|10000|0||83.15|102.58|0.00|3.10|1B00|0|0|01|010000A7|0|41200000|| +20|2023-10-06T22:01:30.0230000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|88.71|107.83|0.00|3.14| +38|2023-10-06T22:01:30.0230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41938|81809|7400|10000|0||83.15|102.58|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:01:30.0670000-07:00|40021585|Zeromus|00010E03|14464263||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:30.1110000-07:00|10FF0004|Buhojaqe Zijaqe|41330|81541|2300|10000|||108.31|108.01|0.00|-2.21| +37|2023-10-06T22:01:30.2010000-07:00|40021585|Zeromus|00010E06|14459395||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:30.2020000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|24E90000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|14510868|40478540|10000|10000|||100.00|80.10|0.00|0.00|40515|81541|2100|10000|||108.31|108.01|0.00|-2.21|00010E09|0|1| +21|2023-10-06T22:01:30.2460000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|131B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14510868|40478540|10000|10000|||100.00|80.10|0.00|0.00|44969|90216|10000|10000|||115.71|85.48|-0.01|-0.82|00010E0A|0|1| +37|2023-10-06T22:01:30.3360000-07:00|40021585|Zeromus|00010E07|14451730||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:30.3360000-07:00|10FF0001|Sesuga Sapisuga|00010E07|103911|129071|10000|10000|0||112.02|89.09|0.00|-1.24|1300|0|0|0| +261|2023-10-06T22:01:29.9180000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:01:29.9180000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:01:30.4700000-07:00|40021585|Zeromus|00010E04|14406298||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:30.1440000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T22:01:30.5590000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|25220000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|14406298|40478540|10000|10000|||100.00|80.10|0.00|0.00|92061|129844|10000|10000|||92.12|92.93|-0.02|0.83|00010E0B|0|1| +21|2023-10-06T22:01:30.6040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|10C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14406298|40478540|10000|10000|||100.00|80.10|0.00|0.00|41264|83502|10000|10000|||94.36|82.05|0.00|1.57|00010E0C|0|1| +261|2023-10-06T22:01:30.2390000-07:00|Change|10FF000B||||||||||||||||||||| +24|2023-10-06T22:01:30.6480000-07:00|40021585|Zeromus|DoT|0|C1C|14406298|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|41330|81541|1900|10000|||107.10|107.15|0.00|-2.87| +38|2023-10-06T22:01:30.6480000-07:00|40021585|Zeromus|005A5A00|14403198|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +21|2023-10-06T22:01:30.6930000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|37D80000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|92061|129844|10000|10000|||93.14|93.85|0.00|2.68|14403198|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010E0D|0|1| +21|2023-10-06T22:01:30.6930000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|350003|42D30000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|14403198|40478540|10000|10000|||100.00|80.10|0.00|0.00|41938|81809|7400|10000|||83.40|99.82|0.00|3.05|00010E0E|0|1| +38|2023-10-06T22:01:30.6930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41938|81809|7400|10000|0||83.40|99.82|0.00|3.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:30.6930000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T22:01:30.6930000-07:00|A7|Swiftcast|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:01:30.3320000-07:00|Change|4002190D||||||||| +21|2023-10-06T22:01:30.7380000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|712003|2A050000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|14403198|40478540|10000|10000|||100.00|80.10|0.00|0.00|41264|83502|10000|10000|||95.18|82.05|0.00|1.56|00010E0F|0|1| +261|2023-10-06T22:01:30.3320000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:01:30.5280000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:01:31.0040000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B0E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14403198|40478540|10000|10000|||100.00|80.10|0.00|0.00|103911|129071|10000|10000|||109.34|91.51|0.00|-1.10|00010E10|0|1| +38|2023-10-06T22:01:31.0040000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|41938|81809|7400|10000|0||83.65|98.58|0.00|2.39|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:31.0040000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +31|2023-10-06T22:01:31.0040000-07:00|10FF0001||||| +261|2023-10-06T22:01:30.6450000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:01:30.6450000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:01:31.0490000-07:00|40021585|Zeromus|00010E0A|14398307||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:30.6450000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:01:31.0930000-07:00|40021585|Zeromus|00010E0B|14388801||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:31.1380000-07:00|40021585|Zeromus|00010E09|14379352||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:31.1380000-07:00|40021585|Zeromus|00010E0C|14375055||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:31.1380000-07:00|40021585|Zeromus|00010E0F|14364298||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:31.1380000-07:00|10FF0008|Kokosaze Lulusaze|45871|90216|10000|10000|||113.40|87.94|0.00|-0.86| +261|2023-10-06T22:01:30.7580000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:01:30.9990000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:01:31.4490000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|726003|BB250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14364298|40478540|10000|10000|||100.00|80.10|0.00|0.00|45871|90216|10000|10000|||111.98|89.33|0.00|-0.82|00010E11|0|1| +21|2023-10-06T22:01:31.4490000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14364298|40478540|10000|10000|||100.00|80.10|0.00|0.00|45871|90216|10000|10000|||111.98|89.33|0.00|-0.82|00010E12|0|1| +22|2023-10-06T22:01:31.4490000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|200004|39690000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|40363|79209|8293|10000|||89.13|107.68|0.00|3.12|40363|79209|8293|10000|||89.13|107.68|0.00|3.12|00010E13|0|5| +22|2023-10-06T22:01:31.4490000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|25600000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|92061|129844|10000|10000|||96.52|96.91|0.00|0.93|40363|79209|8293|10000|||89.13|107.68|0.00|3.12|00010E13|1|5| +22|2023-10-06T22:01:31.4490000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|200004|3A5F0000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|41330|81541|1900|10000|||103.25|104.54|0.00|-2.23|40363|79209|8293|10000|||89.13|107.68|0.00|3.12|00010E13|2|5| +22|2023-10-06T22:01:31.4490000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|200004|39700000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|41938|81809|7400|10000|||83.42|95.78|0.00|3.02|40363|79209|8293|10000|||89.13|107.68|0.00|3.12|00010E13|3|5| +22|2023-10-06T22:01:31.4490000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|25A00000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|32752|73814|4600|10000|||106.13|103.51|0.00|-2.27|40363|79209|8293|10000|||89.13|107.68|0.00|3.12|00010E13|4|5| +37|2023-10-06T22:01:31.4930000-07:00|10FF0007|Kehabiqo Febiqo|00010E0D|77765||||||96.52|96.91|0.00|0.93| +21|2023-10-06T22:01:31.4930000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14364298|40478540|10000|10000|||100.00|80.10|0.00|0.00|41938|81809|7400|10000|||83.42|95.78|0.00|3.02|00010E14|0|1| +37|2023-10-06T22:01:31.5380000-07:00|40021585|Zeromus|00010E10|14361468||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:31.2180000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:01:31.5820000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|4|14D00000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|40363|79209|7293|10000|||89.13|107.68|0.00|3.12|54201|77430|10000|10000|||102.13|99.99|0.00|-2.55|00010E15|0|1| +21|2023-10-06T22:01:31.5820000-07:00|40021592|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.22|118.12|0.00|0.00|00010E16|0|0| +21|2023-10-06T22:01:31.5820000-07:00|40021593|Zeromus|8D2A|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.29|81.73|0.00|0.00|00010E17|0|0| +261|2023-10-06T22:01:31.2180000-07:00|Change|40021592||||||||||||| +261|2023-10-06T22:01:31.2180000-07:00|Change|40021593||||||||||||| +261|2023-10-06T22:01:31.2180000-07:00|Change|4002190D||||||||| +21|2023-10-06T22:01:31.6270000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|11FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14364298|40478540|10000|10000|||100.00|80.10|0.00|0.00|77765|129844|10000|10000|||97.05|97.38|0.00|0.90|00010E18|0|1| +261|2023-10-06T22:01:31.2180000-07:00|Change|10FF000B||||||||||||||||||||||| +24|2023-10-06T22:01:31.7160000-07:00|40021585|Zeromus|DoT|A92|9A8|14361468|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|41938|81809|7400|10000|||82.78|95.25|0.00|-2.31| +37|2023-10-06T22:01:31.7160000-07:00|40021585|Zeromus|00010E0E|14341889||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:31.7160000-07:00|10FF0006|Wowobora Gogobora|00010E0E|41938|81809|7400|10000|0||82.78|95.25|0.00|-2.31|1B00|0|0|01|0A92|0|41700000|| +26|2023-10-06T22:01:31.7160000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:01:31.7160000-07:00|40021585|Zeromus|005A5A00|14341889|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +21|2023-10-06T22:01:31.7610000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14361468|40478540|10000|10000|||100.00|80.10|0.00|0.00|41330|81541|1900|10000|||102.56|103.25|0.00|-2.45|00010E19|0|1| +261|2023-10-06T22:01:31.4020000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:01:31.4020000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:01:31.8040000-07:00|10FF0001|Sesuga Sapisuga|105201|129071|10000|10000|||104.85|94.13|0.00|-1.01| +21|2023-10-06T22:01:31.8930000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14341889|40478540|10000|10000|||100.00|80.10|0.00|0.00|32752|73814|4600|10000|||104.11|101.56|0.00|-2.31|00010E1A|0|1| +261|2023-10-06T22:01:31.5020000-07:00|Add|40021910||||||||||||||||||||||||| +261|2023-10-06T22:01:31.5020000-07:00|Change|10FF0008||||||||| +20|2023-10-06T22:01:31.9380000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|104.11|101.56|0.00|-2.31| +37|2023-10-06T22:01:32.0270000-07:00|40021585|Zeromus|00010E14|14341699||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:32.0710000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45871|90216|10000|10000|||108.99|92.07|0.00|-0.95|45871|90216|10000|10000|||108.99|92.07|0.00|-0.95|00010E1B|0|1| +21|2023-10-06T22:01:32.0710000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|28B10000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|14341889|40478540|10000|10000|||100.00|80.10|0.00|0.00|105201|129071|10000|10000|||103.19|95.16|0.00|-1.03|00010E1C|0|1| +38|2023-10-06T22:01:32.0710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|45871|90216|10000|10000|0||108.99|92.07|0.00|-0.95|0|0|0||||||||||||| +26|2023-10-06T22:01:32.0710000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +38|2023-10-06T22:01:32.0710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105201|129071|10000|10000|0||103.19|95.16|0.00|-1.03|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:32.0710000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:01:32.0710000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:01:32.1610000-07:00|40021585|Zeromus|00010E18|14337093||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:32.1610000-07:00|40021585|Zeromus|DoT|A92|802|14341889|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|41938|81809|7400|10000|||82.10|94.69|0.00|-1.91| +38|2023-10-06T22:01:32.1610000-07:00|40021585|Zeromus|005A5A00|14335043|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +261|2023-10-06T22:01:31.7980000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:01:32.2050000-07:00|40021585|Zeromus|00010E12|14332069||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:32.2050000-07:00|10FF0006|Wowobora Gogobora|42756|81809|7600|10000|||82.08|94.66|0.00|-2.27| +37|2023-10-06T22:01:32.2940000-07:00|40021585|Zeromus|00010E19|14331923||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:32.2940000-07:00|10FF000B|Pusu Rosu|00010E13|55060|79209|7293|10000|0||90.49|106.46|0.00|2.65|1800|0|0|01|02000096|0|41700000|| +26|2023-10-06T22:01:32.2940000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +04|2023-10-06T22:01:31.9100000-07:00|40021908|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||92.10|109.09|0.00|2.82| +261|2023-10-06T22:01:31.9100000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:01:31.9100000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:01:31.9100000-07:00|Remove|40021908| +39|2023-10-06T22:01:32.3390000-07:00|10FF000B|Pusu Rosu|55852|79209|7574|10000|||90.99|106.02|-0.02|2.52| +39|2023-10-06T22:01:32.3390000-07:00|10FF000A|Dukaro Nezikaro|42099|83502|10000|10000|||106.72|82.17|0.00|1.56| +37|2023-10-06T22:01:32.3830000-07:00|10FF000B|Pusu Rosu|00010E15|61180||||||90.99|106.02|-0.02|2.52| +37|2023-10-06T22:01:32.4280000-07:00|40021585|Zeromus|00010E1A|14331896||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:32.4280000-07:00|10FF0007|Kehabiqo Febiqo|00010E13|87333|129844|10000|10000|0||99.61|99.25|-0.02|2.34|1501|0|0|01|01000096|0|41700000|| +26|2023-10-06T22:01:32.4280000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +39|2023-10-06T22:01:32.4730000-07:00|10FF0007|Kehabiqo Febiqo|88631|129844|10000|10000|||99.61|99.25|-0.02|2.34| +38|2023-10-06T22:01:32.4730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|41330|81541|1900|10000|0||100.59|100.24|-0.02|-2.72|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:32.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:01:32.4730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|45871|90216|10000|10000|0||107.48|93.46|0.00|-0.83|0|0|0||||||||||||| +26|2023-10-06T22:01:32.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:01:32.4730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|42756|81809|7600|10000|0||81.98|93.58|0.00|-2.67|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:32.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:32.4730000-07:00|10FF0003|Gegehi Gehi|005A5A23|32752|73814|4600|10000|0||102.95|100.57|-0.02|-3.00|0|0|0||||||||||||| +26|2023-10-06T22:01:32.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:01:32.4730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|42099|83502|10000|10000|0||107.41|82.18|0.00|1.56|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:32.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:01:32.4730000-07:00|10FF000B|Pusu Rosu|005A5A18|61180|79209|7574|10000|0||91.59|105.47|0.00|2.46|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:32.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:32.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|88631|129844|10000|10000|0||99.61|99.25|-0.02|2.34|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:32.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:32.4730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105201|129071|10000|10000|0||101.98|96.66|0.00|-1.43|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:32.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T22:01:32.4730000-07:00|10FF000B|Pusu Rosu|HoT|0|15C7|61180|79209|7574|10000|||91.59|105.47|0.00|2.46|10FF000B|Pusu Rosu|0|61180|79209|7574|10000|||91.59|105.47|0.00|2.46| +38|2023-10-06T22:01:32.4730000-07:00|10FF000B|Pusu Rosu|005A5A18|66755|79209|7574|10000|0||91.59|105.47|0.00|2.46|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:32.1330000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:01:32.5630000-07:00|10FF0004|Buhojaqe Zijaqe|00010E13|56273|81541|1900|10000|0||100.49|100.15|0.00|-2.87|1C02|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:01:32.5630000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +24|2023-10-06T22:01:32.5630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|15CE|88631|129844|10000|10000|||99.71|99.30|0.00|2.52|10FF0007|Kehabiqo Febiqo|0|88631|129844|10000|10000|||99.71|99.30|0.00|2.52| +38|2023-10-06T22:01:32.5630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94213|129844|10000|10000|0||99.71|99.30|0.00|2.52|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:32.2300000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T22:01:32.6060000-07:00|40021585|Zeromus|00010E11|14283987||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:01:32.6070000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.40|100.08|0.00|-3.00| +37|2023-10-06T22:01:32.6510000-07:00|40021585|Zeromus|00010E1C|14273570||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:32.6510000-07:00|10FF0001|Sesuga Sapisuga|00010E1C|105201|129071|10000|10000|0||101.21|97.62|0.00|-1.50|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T22:01:32.6510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105201|129071|10000|10000|0||101.21|97.62|0.00|-1.50|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:32.2300000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:01:32.6960000-07:00|10FF0006|Wowobora Gogobora|00010E13|57460|81809|7600|10000|0||81.86|92.14|0.00|-2.96|1B03|0|0|01|01000096|0|41700000|| +26|2023-10-06T22:01:32.6960000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218FA| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218FB| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218FC| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218FD| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218FE| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218FF| +261|2023-10-06T22:01:32.3290000-07:00|Remove|40021900| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218F7| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218F8| +261|2023-10-06T22:01:32.3290000-07:00|Remove|400218F9| +39|2023-10-06T22:01:32.7410000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-1.09| +21|2023-10-06T22:01:32.7410000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|45871|90216|10000|10000|||106.63|94.21|0.00|-0.84|45871|90216|10000|10000|||106.63|94.21|0.00|-0.84|00010E1D|0|1| +261|2023-10-06T22:01:32.3290000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:01:32.3290000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:01:32.7850000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14273570|40478540|10000|10000|||100.00|80.10|0.00|0.00|42099|83502|10000|10000|||109.55|82.15|0.00|1.58|00010E1E|0|1| +37|2023-10-06T22:01:32.8300000-07:00|10FF0003|Gegehi Gehi|00010E13|42384|73814|4600|10000|0||102.95|100.57|0.00|-3.00|2304|0|0|01|02000096|0|41700000|| +26|2023-10-06T22:01:32.8300000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +39|2023-10-06T22:01:32.9640000-07:00|10FF0003|Gegehi Gehi|43122|73814|4800|10000|||102.95|100.57|0.00|-3.00| +21|2023-10-06T22:01:33.0080000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|21B20000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|14273570|40478540|10000|10000|||100.00|80.10|0.00|0.00|94213|129844|10000|10000|||99.96|99.44|0.00|3.00|00010E1F|0|1| +21|2023-10-06T22:01:33.0080000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|256B0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|14273570|40478540|10000|10000|||100.00|80.10|0.00|0.00|42099|83502|10000|10000|||111.21|82.04|0.00|1.61|00010E20|0|1| +261|2023-10-06T22:01:32.6290000-07:00|Change|4002190D||||||||| +39|2023-10-06T22:01:33.0970000-07:00|10FF0004|Buhojaqe Zijaqe|57088|81541|2100|10000|||100.16|99.88|-0.01|-3.13| +261|2023-10-06T22:01:32.7450000-07:00|Change|40021592||||||||| +261|2023-10-06T22:01:32.7450000-07:00|Change|40021593||||||||| +21|2023-10-06T22:01:33.1860000-07:00|40021592|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.22|118.12|0.00|0.00|00010E21|0|0| +21|2023-10-06T22:01:33.1860000-07:00|40021593|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.29|81.73|0.00|0.00|00010E22|0|0| +261|2023-10-06T22:01:32.7450000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:01:33.2750000-07:00|4002190C|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1E120000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|14273570|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65|00010E23|0|1| +21|2023-10-06T22:01:33.2750000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|82A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14273570|40478540|10000|10000|||100.00|80.10|0.00|0.00|105201|129071|10000|10000|||100.30|98.44|0.00|-1.51|00010E24|0|1| +31|2023-10-06T22:01:33.2750000-07:00|10FF0001||||| +37|2023-10-06T22:01:33.3200000-07:00|40021585|Zeromus|00010E1E|14271371||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:33.3640000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|156003|61AB0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|14273570|40478540|10000|10000|||100.00|80.10|0.00|0.00|43122|73814|4800|10000|||102.95|100.57|0.00|-3.00|00010E25|0|1| +38|2023-10-06T22:01:33.3640000-07:00|10FF0003|Gegehi Gehi|005A5A23|43122|73814|4600|10000|0||102.95|100.57|0.00|-3.00|0|0|0||||||||||||| +30|2023-10-06T22:01:33.3640000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:01:33.3640000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:01:33.4080000-07:00|40021585|Zeromus|00010E20|14261792||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:33.1780000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:01:33.5430000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2F7C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14261792|40478540|10000|10000|||100.00|80.10|0.00|0.00|57088|81541|2100|10000|||100.14|99.87|0.00|-3.13|00010E26|0|1| +261|2023-10-06T22:01:33.1780000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:01:33.6310000-07:00|40021585|Zeromus|00010E1F|14253166||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:33.2680000-07:00|Change|10FF0003||||||||||||| +24|2023-10-06T22:01:33.6760000-07:00|40021585|Zeromus|DoT|0|C65|14261792|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|57088|81541|1700|10000|||100.14|99.87|0.00|-3.13| +38|2023-10-06T22:01:33.6760000-07:00|40021585|Zeromus|005A5A00|14249993|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +21|2023-10-06T22:01:33.7200000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|38DB0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|94213|129844|10000|10000|||99.96|99.44|0.00|3.14|14249993|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010E27|0|1| +37|2023-10-06T22:01:33.8100000-07:00|40021585|Zeromus|00010E24|14247903||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:33.3630000-07:00|Change|10FF0004||||||||||||||||||||||| +26|2023-10-06T22:01:33.9870000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:01:33.9870000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|20A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14247903|40478540|10000|10000|||100.00|80.10|0.00|0.00|45871|90216|10000|10000|||100.62|99.08|0.00|-0.92|00010E28|0|1| +261|2023-10-06T22:01:33.5530000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:01:33.6460000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:01:34.0320000-07:00|40021585|Zeromus|00010E23|14240205||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:34.0760000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||102.13|99.99|0.00|-3.03|0|0|0||||||| +26|2023-10-06T22:01:34.0760000-07:00|77B|Summon Order|30.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:01:34.0760000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57088|81541|1700|10000|||100.14|99.87|0.00|-3.13|57088|81541|1700|10000|||100.14|99.87|0.00|-3.13|00010E29|0|1| +21|2023-10-06T22:01:34.1200000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|11920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14247903|40478540|10000|10000|||100.00|80.10|0.00|0.00|45871|90216|10000|10000|||100.04|99.52|0.00|-3.14|00010E2A|0|1| +37|2023-10-06T22:01:34.1650000-07:00|40021585|Zeromus|00010E25|14215202||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:01:34.1650000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0003|Gegehi Gehi|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|43122|73814|4600|10000|||102.95|100.57|0.00|-3.00|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010E2B|0|6| +22|2023-10-06T22:01:34.1650000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|57088|81541|1700|10000|||100.14|99.87|0.00|-3.13|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010E2B|1|6| +22|2023-10-06T22:01:34.1650000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF000B|Pusu Rosu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|66755|79209|7574|10000|||100.28|100.49|0.00|2.05|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010E2B|2|6| +22|2023-10-06T22:01:34.1650000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0007|Kehabiqo Febiqo|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|94213|129844|10000|10000|||99.96|99.44|0.00|3.14|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010E2B|3|6| +22|2023-10-06T22:01:34.1650000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0001|Sesuga Sapisuga|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|105201|129071|10000|10000|||100.30|98.44|0.00|-1.51|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010E2B|4|6| +22|2023-10-06T22:01:34.1650000-07:00|4002185F|Ruby Carbuncle|323|Whispering Dawn|10FF0008|Kokosaze Lulusaze|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|45871|90216|10000|10000|||99.66|99.80|0.00|-2.96|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010E2B|5|6| +39|2023-10-06T22:01:34.1650000-07:00|4002190C|Automaton Queen|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65| +39|2023-10-06T22:01:34.1650000-07:00|10FF0008|Kokosaze Lulusaze|46773|90216|10000|10000|||99.66|99.80|0.00|-2.96| +21|2023-10-06T22:01:34.1650000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40021585|Zeromus|756003|8A7B0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|14240205|40478540|10000|10000|||100.00|80.10|0.00|0.00|57460|81809|7600|10000|||81.31|88.58|0.00|-2.86|00010E2C|0|1| +38|2023-10-06T22:01:34.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|57460|81809|7200|10000|0||81.31|88.58|0.00|-2.86|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:34.1650000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:01:34.3420000-07:00|40021585|Zeromus|00010E26|14203046||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:34.3420000-07:00|4002190D|Carbuncle|77698|77698|10000|10000|||81.77|92.94|0.00|-2.48| +21|2023-10-06T22:01:34.3420000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|41E40000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|14215202|40478540|10000|10000|||100.00|80.10|0.00|0.00|43122|73814|4600|10000|||102.95|100.57|0.00|-3.00|00010E2D|0|1| +38|2023-10-06T22:01:34.3420000-07:00|10FF0003|Gegehi Gehi|005A5A23|43122|73814|4300|10000|0||102.95|100.57|0.00|-3.00|0|0|0||||||||||||| +30|2023-10-06T22:01:34.3420000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:01:34.5200000-07:00|10FF0007|Kehabiqo Febiqo|00010E27|79658||||||99.90|99.44|0.00|-3.14| +21|2023-10-06T22:01:34.5650000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|13F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14203046|40478540|10000|10000|||100.00|80.10|0.00|0.00|46773|90216|10000|10000|||99.47|99.97|0.00|-1.36|00010E2E|0|1| +21|2023-10-06T22:01:34.5650000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|13DC0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|14203046|40478540|10000|10000|||100.00|80.10|0.00|0.00|105201|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E2F|0|1| +261|2023-10-06T22:01:34.2160000-07:00|Change|10FF0003||| +37|2023-10-06T22:01:34.6540000-07:00|40021585|Zeromus|00010E28|14194694||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:34.6540000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14203046|40478540|10000|10000|||100.00|80.10|0.00|0.00|57460|81809|7200|10000|||81.40|87.60|0.00|1.95|00010E30|0|1| +261|2023-10-06T22:01:34.3130000-07:00|Change|40021592||||||||| +261|2023-10-06T22:01:34.3130000-07:00|Change|40021593||||||||| +21|2023-10-06T22:01:34.7430000-07:00|40021592|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.11|112.62|0.00|0.00|00010E31|0|0| +21|2023-10-06T22:01:34.7430000-07:00|40021593|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.79|81.77|0.00|0.00|00010E32|0|0| +39|2023-10-06T22:01:34.7870000-07:00|10FF0001|Sesuga Sapisuga|106491|129071|10000|10000|||100.30|98.44|0.00|-3.13| +21|2023-10-06T22:01:34.8320000-07:00|4002190C|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1D3A0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|14194694|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65|00010E33|0|1| +20|2023-10-06T22:01:34.8320000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|101.27|99.84|0.00|2.67| +261|2023-10-06T22:01:34.4110000-07:00|Change|10FF000B||||||||||||||||||| +37|2023-10-06T22:01:34.8760000-07:00|40021585|Zeromus|00010E2A|14190196||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:34.5050000-07:00|Change|4002190D||||||||| +37|2023-10-06T22:01:34.9650000-07:00|40021585|Zeromus|00010E2C|14154745||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:34.9650000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AC80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14190196|40478540|10000|10000|||100.00|80.10|0.00|0.00|42099|83502|10000|10000|||118.49|82.05|0.00|1.32|00010E34|0|1| +21|2023-10-06T22:01:35.0110000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AFB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14190196|40478540|10000|10000|||100.00|80.10|0.00|0.00|79658|129844|10000|10000|||99.84|99.44|0.00|-3.14|00010E35|0|1| +20|2023-10-06T22:01:35.0110000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.21|99.76|0.00|2.48| +261|2023-10-06T22:01:34.6150000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:01:34.6150000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:01:35.0540000-07:00|10FF0003|Gegehi Gehi|00010E2B|43122|73814|4300|10000|0||102.95|100.57|0.00|-3.00|2300|0|0|01|0100013B|0|41A80000|| +26|2023-10-06T22:01:35.0540000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +24|2023-10-06T22:01:35.0540000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1758|57088|81541|1700|10000|||100.23|99.72|0.00|2.56|10FF0004|Buhojaqe Zijaqe|0|57088|81541|1700|10000|||100.23|99.72|0.00|2.56| +38|2023-10-06T22:01:35.0540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63064|81541|1700|10000|0||100.23|99.72|0.00|2.56|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:35.0990000-07:00|40021585|Zeromus|00010E2D|14137877||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:35.0990000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42712003|4AAE0000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|14154745|40478540|10000|10000|||100.00|80.10|0.00|0.00|42099|83502|10000|10000|||118.49|82.05|0.00|1.32|00010E36|0|1| +24|2023-10-06T22:01:35.1440000-07:00|40021585|Zeromus|DoT|A92|605|14137877|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|57460|81809|7200|10000|||81.29|86.61|0.00|3.05| +24|2023-10-06T22:01:35.1440000-07:00|10FF0006|Wowobora Gogobora|HoT|0|16AC|57460|81809|7200|10000|||81.29|86.61|0.00|3.05|10FF000B|Pusu Rosu|0|66755|79209|7574|10000|||101.27|99.84|0.00|3.02| +38|2023-10-06T22:01:35.1440000-07:00|40021585|Zeromus|005A5A00|14136336|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +38|2023-10-06T22:01:35.1440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|63264|81809|7200|10000|0||81.29|86.61|0.00|3.05|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:35.1890000-07:00|10FF0004|Buhojaqe Zijaqe|00010E2B|63064|81541|1700|10000|0||100.25|99.69|0.00|2.74|1C01|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T22:01:35.1890000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T22:01:35.1890000-07:00|40021585|Zeromus|00010E2E|14131232||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:35.1890000-07:00|40021585|Zeromus|00010E30|14131084||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:35.1890000-07:00|40021585|Zeromus|00010E2F|14126000||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:35.1890000-07:00|10FF0006|Wowobora Gogobora|64082|81809|7400|10000|||81.29|86.61|0.00|3.05| +21|2023-10-06T22:01:35.2330000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|106491|129071|10000|10000|||100.30|98.44|0.00|-3.13|106491|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E37|0|1| +37|2023-10-06T22:01:35.3220000-07:00|10FF000B|Pusu Rosu|00010E2B|66755|79209|7574|10000|0||101.27|99.84|0.00|3.14|1802|0|0|01|0300013B|0|41A80000|| +26|2023-10-06T22:01:35.3220000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +39|2023-10-06T22:01:35.3670000-07:00|10FF000B|Pusu Rosu|67547|79209|7855|10000|||101.27|99.84|0.00|-3.08| +39|2023-10-06T22:01:35.3670000-07:00|10FF000A|Dukaro Nezikaro|42934|83502|10000|10000|||118.49|82.05|0.00|-1.68| +24|2023-10-06T22:01:35.3670000-07:00|10FF0003|Gegehi Gehi|HoT|0|20A5|43122|73814|4300|10000|||102.95|100.57|0.00|-3.00|10FF000B|Pusu Rosu|0|66755|79209|7574|10000|||101.27|99.84|0.00|-3.08| +38|2023-10-06T22:01:35.3670000-07:00|10FF0003|Gegehi Gehi|005A5A23|51479|73814|4300|10000|0||102.95|100.57|0.00|-3.00|0|0|0||||||||||||| +37|2023-10-06T22:01:35.4550000-07:00|10FF0007|Kehabiqo Febiqo|00010E2B|79658|129844|10000|10000|0||99.84|99.44|0.00|-3.14|1503|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T22:01:35.4550000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +39|2023-10-06T22:01:35.4550000-07:00|10FF0007|Kehabiqo Febiqo|80956|129844|10000|10000|||99.84|99.44|0.00|-3.14| +38|2023-10-06T22:01:35.4570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63064|81541|1700|10000|0||100.30|99.63|-0.02|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:01:35.4570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|46773|90216|10000|10000|0||99.41|100.02|0.00|3.11|0|0|0||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:01:35.4570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|64082|81809|7400|10000|0||81.16|85.68|0.00|3.00|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:35.4570000-07:00|10FF0003|Gegehi Gehi|005A5A23|51479|73814|4300|10000|0||102.95|100.57|0.00|-3.00|0|0|0||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:01:35.4570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|42934|83502|10000|10000|0||118.49|82.05|0.00|-1.68|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:01:35.4570000-07:00|10FF000B|Pusu Rosu|005A5A18|67547|79209|7855|10000|0||101.27|99.84|0.00|-3.08|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:35.4570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80956|129844|10000|10000|0||99.84|99.44|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:35.4570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106491|129071|10000|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T22:01:35.4570000-07:00|10FF000B|Pusu Rosu|HoT|0|207D|67547|79209|7855|10000|||101.27|99.84|0.00|-3.08|10FF000B|Pusu Rosu|0|67547|79209|7855|10000|||101.27|99.84|0.00|-3.08| +21|2023-10-06T22:01:35.4570000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|333D0000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|14126000|40478540|10000|10000|||100.00|80.10|0.00|0.00|80956|129844|10000|10000|||99.84|99.44|0.00|-3.14|00010E38|0|1| +26|2023-10-06T22:01:35.4570000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:01:35.4570000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|207D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14126000|40478540|10000|10000|||100.00|80.10|0.00|0.00|46773|90216|10000|10000|||99.41|100.02|0.00|3.11|00010E39|0|1| +38|2023-10-06T22:01:35.4570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|80956|129844|10000|10000|0||99.84|99.44|0.00|-3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:35.4570000-07:00|A75|Surging Tempest|55.20|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:01:35.4570000-07:00|10FF000B|Pusu Rosu|005A5A18|75864|79209|7855|10000|0||101.27|99.84|0.00|-3.08|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:35.5000000-07:00|40021585|Zeromus|00010E34|14123240||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:35.5450000-07:00|40021585|Zeromus|00010E35|14120429||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:35.5450000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2042|80956|129844|10000|10000|||99.84|99.44|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|80956|129844|10000|10000|||99.84|99.44|0.00|-3.14| +21|2023-10-06T22:01:35.5450000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|8AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14126000|40478540|10000|10000|||100.00|80.10|0.00|0.00|106491|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E3A|0|1| +38|2023-10-06T22:01:35.5450000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|89214|129844|10000|10000|0||99.84|99.44|0.00|-3.14|0|0|0||||||||||||||||||| +31|2023-10-06T22:01:35.5450000-07:00|10FF0001||||| +37|2023-10-06T22:01:35.5900000-07:00|40021585|Zeromus|00010E33|14112947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:35.5900000-07:00|10FF0001|Sesuga Sapisuga|00010E2B|106491|129071|10000|10000|0||100.30|98.44|0.00|-3.13|1304|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T22:01:35.5900000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +24|2023-10-06T22:01:35.6340000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|A19|106491|129071|10000|10000|||100.30|98.44|0.00|-3.13|10FF000B|Pusu Rosu|0|75864|79209|7855|10000|||101.27|99.84|0.00|-3.08| +38|2023-10-06T22:01:35.6340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109076|129071|10000|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:35.7230000-07:00|10FF0008|Kokosaze Lulusaze|00010E2B|46773|90216|10000|10000|0||99.41|100.02|0.00|3.11|1F05|0|0|01|0400013B|0|41A80000|| +26|2023-10-06T22:01:35.7230000-07:00|13B|Whispering Dawn|21.00|4002185F|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T22:01:35.7230000-07:00|40021585|Zeromus|00010E36|14093829||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:35.7240000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||102.13|99.99|0.00|-3.03|0|0|0|||| +30|2023-10-06T22:01:35.7240000-07:00|77B|Summon Order|0.00|4002185F|Ruby Carbuncle|4002185F|Ruby Carbuncle|01|77430|77430| +39|2023-10-06T22:01:35.7690000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03| +21|2023-10-06T22:01:35.7690000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|2FAE0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|14093829|40478540|10000|10000|||100.00|80.10|0.00|0.00|75864|79209|7855|10000|||101.27|99.84|0.00|-3.08|00010E3B|0|1| +37|2023-10-06T22:01:35.8570000-07:00|10FF0001|Sesuga Sapisuga|00010E37|109076|129071|10000|10000|0||100.30|98.44|0.00|-3.13|1300|0|0|01|0600004C|0|41A00000|| +26|2023-10-06T22:01:35.8570000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:01:35.4480000-07:00|Change|10FF000B||||||||||||||||| +21|2023-10-06T22:01:35.9020000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|752003|40520000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|14093829|40478540|10000|10000|||100.00|80.10|0.00|0.00|109076|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E3C|0|1| +38|2023-10-06T22:01:35.9020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109076|129071|10000|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:35.9020000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T22:01:35.9020000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T22:01:35.9460000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2FD50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|14093829|40478540|10000|10000|||100.00|80.10|0.00|0.00|63064|81541|1700|10000|||100.30|99.63|0.00|-3.13|00010E3D|0|1| +21|2023-10-06T22:01:35.9900000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14E20000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|89214|129844|10000|10000|||99.84|99.44|0.00|3.13|54201|77430|10000|10000|||102.13|99.99|0.00|-2.99|00010E3E|0|1| +39|2023-10-06T22:01:35.9910000-07:00|10FF0003|Gegehi Gehi|52217|73814|4500|10000|||102.95|100.57|0.00|-3.00| +261|2023-10-06T22:01:35.5390000-07:00|Change|10FF0003||| +261|2023-10-06T22:01:35.5390000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:01:35.5390000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:01:36.0790000-07:00|40021585|Zeromus|00010E39|14085512||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:36.0790000-07:00|40021585|Zeromus|00010E3A|14083291||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:36.0790000-07:00|10FF0001|Sesuga Sapisuga|00010E3A|109076|129071|10000|10000|0||100.30|98.44|0.00|-3.13|1300|0|0|02|07000558|04|C1F00000|||||| +21|2023-10-06T22:01:36.0790000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|13410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14093829|40478540|10000|10000|||100.00|80.10|0.00|0.00|46773|90216|10000|10000|||99.41|100.02|0.00|3.11|00010E3F|0|1| +39|2023-10-06T22:01:36.1230000-07:00|10FF0004|Buhojaqe Zijaqe|63879|81541|1500|10000|||100.30|99.63|0.00|-3.13| +21|2023-10-06T22:01:36.3010000-07:00|40021592|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.96|107.12|0.00|0.00|00010E40|0|0| +21|2023-10-06T22:01:36.3010000-07:00|40021593|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||92.29|81.82|0.00|0.00|00010E41|0|0| +261|2023-10-06T22:01:35.8500000-07:00|Change|40021592||||||||| +261|2023-10-06T22:01:35.8500000-07:00|Change|40021593||||||||| +21|2023-10-06T22:01:36.3910000-07:00|4002190C|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1D390000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|14083291|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65|00010E42|0|1| +22|2023-10-06T22:01:36.3910000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000B|Pusu Rosu|BD100E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E43|0|6| +22|2023-10-06T22:01:36.3910000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0004|Buhojaqe Zijaqe|BD100E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63879|81541|1500|10000|||100.30|99.63|0.00|-3.13|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E43|1|6| +22|2023-10-06T22:01:36.3910000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|BD100E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89214|129844|10000|10000|||99.84|99.44|0.00|3.13|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E43|2|6| +22|2023-10-06T22:01:36.3910000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0001|Sesuga Sapisuga|BD100E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|109076|129071|10000|10000|||100.30|98.44|0.00|-3.13|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E43|3|6| +22|2023-10-06T22:01:36.3910000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0003|Gegehi Gehi|BD100E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|52217|73814|4500|10000|||102.95|100.57|0.00|-3.00|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E43|4|6| +22|2023-10-06T22:01:36.3910000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|BD100E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|46773|90216|10000|10000|||99.41|100.02|0.00|3.11|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E43|5|6| +37|2023-10-06T22:01:36.5680000-07:00|40021585|Zeromus|00010E3C|14066825||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:36.5680000-07:00|10FF0001|Sesuga Sapisuga|00010E3C|109076|129071|10000|10000|0||100.30|98.44|0.00|-3.13|1300|0|0|02|07000558|04|41F00000|||||| +261|2023-10-06T22:01:36.1830000-07:00|Change|4002190D||||||||| +21|2023-10-06T22:01:36.5680000-07:00|10FF0007|Kehabiqo Febiqo|20FDD6F|item_fdd6f|10FF0007|Kehabiqo Febiqo|6B00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|89214|129844|10000|10000|||99.84|99.44|0.00|3.13|89214|129844|10000|10000|||99.84|99.44|0.00|3.13|00010E44|0|1| +38|2023-10-06T22:01:36.5680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109076|129071|10000|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T22:01:36.6580000-07:00|40021585|Zeromus|DoT|0|BF7|14066825|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|63879|81541|1500|10000|||100.30|99.63|0.00|-3.13| +21|2023-10-06T22:01:36.6580000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|14066825|40478540|10000|10000|||100.00|80.10|0.00|0.00|64082|81809|7400|10000|||81.19|81.32|0.00|-1.21|00010E45|0|1| +38|2023-10-06T22:01:36.6580000-07:00|40021585|Zeromus|005A5A00|14063762|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +38|2023-10-06T22:01:36.7030000-07:00|40021914||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:01:36.7030000-07:00|40021914||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +03|2023-10-06T22:01:36.2730000-07:00|40021914|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||80.93|80.79|0.00|1.61| +261|2023-10-06T22:01:36.2730000-07:00|Add|40021914||||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:36.7470000-07:00|40021585|Zeromus|00010E3D|14051517||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:36.7470000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|37AD0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|89214|129844|10000|10000|||99.84|99.44|0.00|3.13|14066825|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010E46|0|1| +261|2023-10-06T22:01:36.2730000-07:00|Change|40021914||||| +37|2023-10-06T22:01:36.7920000-07:00|10FF0007|Kehabiqo Febiqo|00010E3E|94560||||||99.84|99.44|0.00|3.13| +21|2023-10-06T22:01:36.7920000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|DE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14051517|40478540|10000|10000|||100.00|80.10|0.00|0.00|46773|90216|10000|10000|||99.41|100.02|0.00|3.11|00010E47|0|1| +21|2023-10-06T22:01:36.7920000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|756003|53940000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|14051517|40478540|10000|10000|||100.00|80.10|0.00|0.00|52217|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E48|0|1| +21|2023-10-06T22:01:36.8360000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14051517|40478540|10000|10000|||100.00|80.10|0.00|0.00|52217|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E49|0|1| +37|2023-10-06T22:01:36.8800000-07:00|40021585|Zeromus|00010E3F|14046588||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:36.8800000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14051517|40478540|10000|10000|||100.00|80.10|0.00|0.00|63879|81541|1500|10000|||100.30|99.63|0.00|-3.13|00010E4A|0|1| +26|2023-10-06T22:01:36.9240000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:01:36.9240000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|21890000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14051517|40478540|10000|10000|||100.00|80.10|0.00|0.00|46773|90216|10000|10000|||99.41|100.02|0.00|3.11|00010E4B|0|1| +37|2023-10-06T22:01:37.0570000-07:00|40021585|Zeromus|00010E3B|14034382||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:37.0570000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|712003|90710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14046588|40478540|10000|10000|||100.00|80.10|0.00|0.00|109076|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E4C|0|1| +261|2023-10-06T22:01:36.5510000-07:00|Change|10FF0004||| +37|2023-10-06T22:01:37.1020000-07:00|40021585|Zeromus|00010E38|14021265||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:37.1470000-07:00|10FF0008|Kokosaze Lulusaze|47675|90216|10000|10000|||99.41|100.02|0.00|3.11| +21|2023-10-06T22:01:37.1470000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|10A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|14034382|40478540|10000|10000|||100.00|80.10|0.00|0.00|42934|83502|10000|10000|||118.49|82.05|0.00|-1.68|00010E4D|0|1| +37|2023-10-06T22:01:37.1910000-07:00|40021585|Zeromus|00010E42|14013784||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:37.1910000-07:00|10FF000B|Pusu Rosu|00010E43|75864|79209|7455|10000|0||101.27|99.84|0.00|-3.08|1800|0|0|01|060004C3|0|41200000|| +26|2023-10-06T22:01:37.1910000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T22:01:37.1910000-07:00|4002190C|Automaton Queen|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65| +21|2023-10-06T22:01:37.2360000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42934|83502|10000|10000|||118.49|82.05|0.00|-1.68|42934|83502|10000|10000|||118.49|82.05|0.00|-1.68|00010E4E|0|1| +38|2023-10-06T22:01:37.2360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|42934|83502|10000|10000|0||118.49|82.05|0.00|-1.68|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:37.2360000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +22|2023-10-06T22:01:37.2800000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|3CE70000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E4F|0|6| +22|2023-10-06T22:01:37.2800000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|3A5E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|63879|81541|1500|10000|||100.30|99.63|0.00|-3.13|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E4F|1|6| +22|2023-10-06T22:01:37.2800000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|39F60000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|94560|129844|10000|10000|||99.84|99.44|0.00|3.13|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E4F|2|6| +22|2023-10-06T22:01:37.2800000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|39BE0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|109076|129071|10000|10000|||100.30|98.44|0.00|-3.13|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E4F|3|6| +22|2023-10-06T22:01:37.2800000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|39A50000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|52217|73814|4500|10000|||102.95|100.57|0.00|-3.00|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E4F|4|6| +22|2023-10-06T22:01:37.2800000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|39ED0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|47675|90216|10000|10000|||99.41|100.02|0.00|3.11|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E4F|5|6| +37|2023-10-06T22:01:37.3250000-07:00|10FF0004|Buhojaqe Zijaqe|00010E43|63879|81541|1500|10000|0||100.30|99.63|0.00|-3.13|1C01|0|0|01|070004C3|0|41200000|| +26|2023-10-06T22:01:37.3250000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +37|2023-10-06T22:01:37.3690000-07:00|40021585|Zeromus|00010E49|14013757||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:37.4140000-07:00|40021585|Zeromus|00010E4A|14013610||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:01:37.4140000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.30|99.63|0.00|-3.13| +37|2023-10-06T22:01:37.4580000-07:00|10FF0007|Kehabiqo Febiqo|00010E44|94560|129844|10000|10000|0||99.84|99.44|0.00|3.13|1500|0|0|01|06000031|296B|41F00000|| +26|2023-10-06T22:01:37.4580000-07:00|31|Medicated|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|296B|129844|129844| +37|2023-10-06T22:01:37.4580000-07:00|40021585|Zeromus|00010E48|13992214||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:37.4580000-07:00|10FF0007|Kehabiqo Febiqo|00010E43|94560|129844|10000|10000|0||99.84|99.44|0.00|3.13|1502|0|0|01|070004C3|0|41200000|| +26|2023-10-06T22:01:37.4580000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:37.4580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|94560|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:37.5470000-07:00|40021585|Zeromus|00010E4B|13983629||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:37.5470000-07:00|40021585|Zeromus|00010E47|13980074||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:37.5470000-07:00|10FF0007|Kehabiqo Febiqo|00010E46|80307||||||99.84|99.44|0.00|3.13| +21|2023-10-06T22:01:37.5470000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|14B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13992214|40478540|10000|10000|||100.00|80.10|0.00|0.00|47675|90216|10000|10000|||99.41|100.02|0.00|3.11|00010E50|0|1| +37|2023-10-06T22:01:37.5920000-07:00|40021585|Zeromus|00010E4C|13943097||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:37.5920000-07:00|10FF0001|Sesuga Sapisuga|00010E43|109076|129071|10000|10000|0||100.30|98.44|0.00|-3.13|1303|0|0|01|090004C3|0|41200000|| +26|2023-10-06T22:01:37.5920000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +261|2023-10-06T22:01:37.1220000-07:00|Change|4002190D||||||||| +37|2023-10-06T22:01:37.6800000-07:00|40021585|Zeromus|00010E4D|13938841||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:37.3100000-07:00|Change|40021914||| +37|2023-10-06T22:01:37.7250000-07:00|10FF0003|Gegehi Gehi|00010E43|52217|73814|4500|10000|0||102.95|100.57|0.00|-3.00|2304|0|0|01|040004C3|0|41200000|| +26|2023-10-06T22:01:37.7250000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T22:01:37.7250000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|716003|23E20000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|13938841|40478540|10000|10000|||100.00|80.10|0.00|0.00|109076|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E51|0|1| +21|2023-10-06T22:01:37.7250000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42934|83502|10000|10000|||118.49|82.05|0.00|-1.68|42934|83502|10000|10000|||118.49|82.05|0.00|-1.68|00010E52|0|1| +38|2023-10-06T22:01:37.7250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|42934|83502|10000|10000|0||118.49|82.05|0.00|-1.68|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:37.7250000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +39|2023-10-06T22:01:37.8140000-07:00|10FF0001|Sesuga Sapisuga|110366|129071|10000|10000|||100.30|98.44|0.00|-3.13| +21|2023-10-06T22:01:37.8140000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13938841|40478540|10000|10000|||100.00|80.10|0.00|0.00|64082|81809|7400|10000|||80.83|80.55|0.00|3.11|00010E53|0|1| +21|2023-10-06T22:01:37.8140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|83F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13938841|40478540|10000|10000|||100.00|80.10|0.00|0.00|109076|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E54|0|1| +31|2023-10-06T22:01:37.8140000-07:00|10FF0001||||| +261|2023-10-06T22:01:37.3100000-07:00|Change|40021592||||||||| +261|2023-10-06T22:01:37.3100000-07:00|Change|40021593||||||||| +37|2023-10-06T22:01:37.8580000-07:00|10FF0008|Kokosaze Lulusaze|00010E43|47675|90216|10000|10000|0||99.42|100.02|-0.02|3.08|1F05|0|0|01|050004C3|0|41200000|| +26|2023-10-06T22:01:37.8580000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +24|2023-10-06T22:01:37.8580000-07:00|10FF000B|Pusu Rosu|HoT|4C3|24E1|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08|10FF000B|Pusu Rosu|1|75864|79209|7455|10000|||101.27|99.84|0.00|-3.08| +37|2023-10-06T22:01:37.8580000-07:00|10FF000B|Pusu Rosu|00010E4F|79209||||||101.27|99.84|0.00|-3.08| +21|2023-10-06T22:01:37.8580000-07:00|40021592|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.56|96.13|0.00|0.00|00010E55|0|0| +21|2023-10-06T22:01:37.8580000-07:00|40021593|Zeromus|8D24|Nox|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||103.29|81.92|0.00|0.00|00010E56|0|0| +21|2023-10-06T22:01:37.9020000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|18140000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|13938841|40478540|10000|10000|||100.00|80.10|0.00|0.00|80307|129844|10000|10000|||99.84|99.44|0.00|3.13|00010E57|0|1| +21|2023-10-06T22:01:37.9470000-07:00|4002190C|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1EE80000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|13938841|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65|00010E58|0|1| +24|2023-10-06T22:01:37.9910000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|4C3|1816|63879|81541|1500|10000|||100.30|99.63|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08| +37|2023-10-06T22:01:37.9910000-07:00|10FF0004|Buhojaqe Zijaqe|00010E4F|81541||||||100.30|99.63|0.00|-3.13| +261|2023-10-06T22:01:37.6030000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T22:01:38.0360000-07:00|10FF000B|Pusu Rosu|88|Presence of Mind|10FF000B|Pusu Rosu|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08|00010E59|0|1| +24|2023-10-06T22:01:38.0800000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|99A|47675|90216|10000|10000|||99.66|99.99|0.00|2.20|10FF000B|Pusu Rosu|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08| +24|2023-10-06T22:01:38.0800000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2130|81541|81541|1500|10000|||100.30|99.63|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08| +38|2023-10-06T22:01:38.0800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50133|90216|10000|10000|0||99.66|99.99|0.00|2.20|0|0|0||||||||||||||||||| +38|2023-10-06T22:01:38.0800000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|0||100.30|99.63|0.00|-3.13|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:01:38.1240000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|19CF|80307|129844|10000|10000|||99.84|99.44|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08| +37|2023-10-06T22:01:38.1240000-07:00|10FF0007|Kehabiqo Febiqo|00010E4F|101752||||||99.84|99.44|0.00|3.13| +24|2023-10-06T22:01:38.1700000-07:00|40021585|Zeromus|DoT|A92|4BE|13938841|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|64082|81809|7400|10000|||80.77|80.34|-0.02|-2.90| +24|2023-10-06T22:01:38.1700000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1623|64082|81809|7400|10000|||80.77|80.34|-0.02|-2.90|10FF000B|Pusu Rosu|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08| +38|2023-10-06T22:01:38.1700000-07:00|40021585|Zeromus|005A5A00|13937627|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +38|2023-10-06T22:01:38.1700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69749|81809|7400|10000|0||80.77|80.34|-0.02|-2.90|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:38.2140000-07:00|40021585|Zeromus|00010E50|13932325||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:38.2140000-07:00|10FF0006|Wowobora Gogobora|70567|81809|7600|10000|||80.77|80.34|-0.02|-2.90| +21|2023-10-06T22:01:38.2140000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42934|83502|10000|10000|||118.49|82.05|0.00|-1.68|42934|83502|10000|10000|||118.49|82.05|0.00|-1.68|00010E5A|0|1| +261|2023-10-06T22:01:37.7020000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T22:01:38.2140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|42934|83502|10000|10000|0||118.49|82.05|0.00|-1.68|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:38.2140000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +24|2023-10-06T22:01:38.2590000-07:00|10FF0001|Sesuga Sapisuga|HoT|4C3|195A|110366|129071|10000|10000|||100.30|98.44|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08| +37|2023-10-06T22:01:38.2590000-07:00|10FF0001|Sesuga Sapisuga|00010E4F|129071||||||100.30|98.44|0.00|-3.13| +21|2023-10-06T22:01:38.2590000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37754003|3AB10000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|13932325|40478540|10000|10000|||100.00|80.10|0.00|0.00|52217|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E5B|0|1| +37|2023-10-06T22:01:38.3480000-07:00|40021585|Zeromus|00010E53|13932168||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:38.3480000-07:00|40021585|Zeromus|00010E54|13930057||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:38.3480000-07:00|10FF000B|Pusu Rosu|79209|79209|7736|10000|||101.27|99.84|0.00|-3.08| +39|2023-10-06T22:01:38.3480000-07:00|10FF000A|Dukaro Nezikaro|43769|83502|10000|10000|||118.49|82.05|0.00|-1.68| +261|2023-10-06T22:01:37.9420000-07:00|Change|10FF000B||| +21|2023-10-06T22:01:38.3480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|2F7C0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13932325|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1500|10000|||100.30|99.63|0.00|-3.13|00010E5C|0|1| +24|2023-10-06T22:01:38.3920000-07:00|10FF0003|Gegehi Gehi|HoT|4C3|18B5|52217|73814|4500|10000|||102.95|100.57|0.00|-3.00|10FF000B|Pusu Rosu|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08| +37|2023-10-06T22:01:38.3920000-07:00|10FF0003|Gegehi Gehi|00010E4F|73299||||||102.95|100.57|0.00|-3.00| +24|2023-10-06T22:01:38.3920000-07:00|10FF0003|Gegehi Gehi|HoT|0|2C8E|52217|73814|4500|10000|||102.95|100.57|0.00|-3.00|10FF000B|Pusu Rosu|0|79209|79209|7455|10000|||101.27|99.84|0.00|-3.08| +21|2023-10-06T22:01:38.3920000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BE90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13932325|40478540|10000|10000|||100.00|80.10|0.00|0.00|101752|129844|10000|10000|||99.84|99.44|0.00|3.13|00010E5D|0|1| +38|2023-10-06T22:01:38.3920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4500|10000|0||102.95|100.57|0.00|-3.00|0|0|0|||||||||||||||| +37|2023-10-06T22:01:38.4360000-07:00|40021585|Zeromus|00010E57|13923893||||||100.00|80.10|0.00|0.00| +26|2023-10-06T22:01:38.4360000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:01:38.4360000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|39250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13930057|40478540|10000|10000|||100.00|80.10|0.00|0.00|50133|90216|10000|10000|||99.93|99.95|0.00|1.84|00010E5E|0|1| +39|2023-10-06T22:01:38.4810000-07:00|10FF0007|Kehabiqo Febiqo|103050|129844|10000|10000|||99.84|99.44|0.00|3.13| +38|2023-10-06T22:01:38.4830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1100|10000|0||100.30|99.63|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:38.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:01:38.4830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|50133|90216|10000|10000|0||99.93|99.95|0.00|1.84|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:38.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:01:38.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|70567|81809|7600|10000|0||80.77|80.34|0.00|-2.90|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:38.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:38.4830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4500|10000|0||102.95|100.57|0.00|-3.00|0|0|0|||||||||||||||| +26|2023-10-06T22:01:38.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:01:38.4830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43769|83502|10000|10000|0||118.49|82.05|0.00|-1.68|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:38.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:01:38.4830000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7736|10000|0||101.27|99.84|0.00|-3.08|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:38.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:38.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103050|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:38.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:38.4830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:38.4830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T22:01:38.4830000-07:00|10FF000B|Pusu Rosu|HoT|0|3242|79209|79209|7736|10000|||101.27|99.84|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|7736|10000|||101.27|99.84|0.00|-3.08| +21|2023-10-06T22:01:38.4830000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|12350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13930057|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E5F|0|1| +38|2023-10-06T22:01:38.4830000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7736|10000|0||101.27|99.84|0.00|-3.08|0|0|0|||||||||||||||||||||| +24|2023-10-06T22:01:38.5250000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|26F6|50133|90216|10000|10000|||99.93|99.95|0.00|1.84|10FF000B|Pusu Rosu|1|79209|79209|7736|10000|||101.27|99.84|0.00|-3.08| +37|2023-10-06T22:01:38.5250000-07:00|10FF0008|Kokosaze Lulusaze|00010E4F|74936||||||99.93|99.95|0.00|1.84| +37|2023-10-06T22:01:38.5700000-07:00|10FF000B|Pusu Rosu|00010E59|79209|79209|7736|10000|0||101.27|99.84|0.00|-3.08|1800|0|0|01|0700009D|0|41700000|| +26|2023-10-06T22:01:38.5700000-07:00|9D|Presence of Mind|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +24|2023-10-06T22:01:38.5700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2035|101752|129844|10000|10000|||99.84|99.44|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|7736|10000|||101.27|99.84|0.00|-3.08| +21|2023-10-06T22:01:38.5700000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|101752|129844|10000|10000|||99.84|99.44|0.00|3.13|101752|129844|10000|10000|||99.84|99.44|0.00|3.13|00010E60|0|1| +38|2023-10-06T22:01:38.5700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111295|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:38.5700000-07:00|A75|Surging Tempest|60.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:01:38.5700000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T22:01:38.5700000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:01:38.5700000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:01:38.5700000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7736|10000|0||101.27|99.84|0.00|-3.08|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:01:38.6590000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|988|129071|129071|10000|10000|||100.30|98.44|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7736|10000|||101.27|99.84|0.00|-3.08| +38|2023-10-06T22:01:38.6590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:38.1620000-07:00|Change|4002190D||| +37|2023-10-06T22:01:38.7030000-07:00|40021585|Zeromus|00010E58|13915981||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:38.7480000-07:00|40021585|Zeromus|00010E51|13906795|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T22:01:38.7480000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +21|2023-10-06T22:01:38.7480000-07:00|40021914|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|450003|620F0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|13923893|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||80.93|80.79|0.00|1.61|00010E61|0|1| +39|2023-10-06T22:01:38.7480000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03| +21|2023-10-06T22:01:38.7480000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|654003|443F0000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|13923893|40478540|10000|10000|||100.00|80.10|0.00|0.00|43769|83502|10000|10000|||118.49|82.05|0.00|-1.68|00010E62|0|1| +38|2023-10-06T22:01:38.7480000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43769|83502|10000|10000|0||118.49|82.05|0.00|-1.68|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:38.7480000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +26|2023-10-06T22:01:38.7480000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:01:38.8810000-07:00|40021585|Zeromus|00010E5B|13891770||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:38.9260000-07:00|40021585|Zeromus|00010E5D|13888721||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:38.9260000-07:00|10FF0007|Kehabiqo Febiqo|00010E5D|111295|129844|10000|10000|0||99.84|99.44|0.00|3.13|1500|0|0|03|08000499|03|C1700000|||||||||| +39|2023-10-06T22:01:38.9710000-07:00|10FF0003|Gegehi Gehi|73814|73814|4700|10000|||102.95|100.57|0.00|-3.00| +261|2023-10-06T22:01:38.4430000-07:00|Change|10FF0003||| +37|2023-10-06T22:01:39.0590000-07:00|40021585|Zeromus|00010E5E|13874092||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:39.0590000-07:00|40021585|Zeromus|00010E5F|13869431||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:38.5330000-07:00|Change|10FF0004||||||||||||||||||||| +39|2023-10-06T22:01:39.1040000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1300|10000|||100.33|99.63|-0.02|2.16| +21|2023-10-06T22:01:39.1040000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|19A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13869431|40478540|10000|10000|||100.00|80.10|0.00|0.00|74936|90216|10000|10000|||100.05|99.93|0.00|-3.14|00010E63|0|1| +37|2023-10-06T22:01:39.1500000-07:00|40021585|Zeromus|00010E5C|13857275||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:39.1500000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|386F0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|13869431|40478540|10000|10000|||100.00|80.10|0.00|0.00|70567|81809|7600|10000|||80.77|80.34|0.00|-2.90|00010E64|0|1| +38|2023-10-06T22:01:39.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|70567|81809|7300|10000|0||80.77|80.34|0.00|-2.90|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:39.1500000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T22:01:39.1920000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2DE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13869431|40478540|10000|10000|||100.00|80.10|0.00|0.00|111295|129844|10000|10000|||99.84|99.44|0.00|3.13|00010E65|0|1| +261|2023-10-06T22:01:38.6490000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:01:39.3270000-07:00|10FF0007|Kehabiqo Febiqo|00010E60|111295|129844|10000|10000|0||99.84|99.44|0.00|3.13|1500|0|0|03|08000499|03|41700000|||||||||| +21|2023-10-06T22:01:39.3270000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|43769|83502|10000|10000|||118.46|82.05|-0.02|-1.54|00010E66|0|1| +38|2023-10-06T22:01:39.3270000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111295|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T22:01:39.4160000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22200000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|111295|129844|10000|10000|||99.84|99.44|0.00|3.13|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010E67|0|1| +21|2023-10-06T22:01:39.4610000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|74936|90216|10000|10000|||100.05|99.93|0.00|-3.14|00010E68|0|1| +21|2023-10-06T22:01:39.5050000-07:00|4002190C|Automaton Queen|4078|Arm Punch|40021585|Zeromus|732003|30750000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65|00010E69|0|1| +21|2023-10-06T22:01:39.5950000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|750003|756C0000|200004|3CBC8000|0|0|0|0|0|0|0|0|0|0|0|0|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.30|98.44|0.00|-3.13|00010E6A|0|1| +38|2023-10-06T22:01:39.5950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:39.5950000-07:00|558|Requiescat|26.93|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T22:01:39.5950000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T22:01:39.5950000-07:00|10FF0001||||| +261|2023-10-06T22:01:39.2200000-07:00|Change|10FF0001||||||||| +24|2023-10-06T22:01:39.6840000-07:00|40021585|Zeromus|DoT|0|FEB|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||100.30|98.44|0.00|-3.13| +38|2023-10-06T22:01:39.6840000-07:00|40021585|Zeromus|005A5A00|13853200|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T22:01:39.7280000-07:00|40021585|Zeromus|00010E62|13835729||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:39.7280000-07:00|10FF000A|Dukaro Nezikaro|00010E62|43769|83502|10000|10000|0||118.22|83.01|0.00|-0.45|1E00|0|0|01|030001FB|0|41A00000|| +21|2023-10-06T22:01:39.7290000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|A780000|BDA40E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7736|10000|||101.27|99.84|0.00|-3.08|00010E6B|0|1| +38|2023-10-06T22:01:39.7290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43769|83502|10000|10000|0||118.22|83.01|0.00|-0.45|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:01:39.3200000-07:00|Change|10FF000B||| +261|2023-10-06T22:01:39.3200000-07:00|Change|10FF000B||| +37|2023-10-06T22:01:39.7730000-07:00|40021585|Zeromus|00010E64|13821282||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:39.7730000-07:00|10FF0006|Wowobora Gogobora|00010E64|70567|81809|7300|10000|0||80.77|80.34|0.00|1.58|1B00|0|0|01|03000B25|0|0|| +21|2023-10-06T22:01:39.7730000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3A380000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|111295|129844|10000|10000|||99.84|99.44|0.00|3.13|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010E6C|0|1| +21|2023-10-06T22:01:39.7730000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|452003|27730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|70567|81809|7300|10000|||80.77|80.34|0.00|1.58|00010E6D|0|1| +21|2023-10-06T22:01:39.7740000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A752003|779D0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|13857275|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4700|10000|||102.95|100.57|0.00|-3.00|00010E6E|0|1| +38|2023-10-06T22:01:39.7740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|70567|81809|7300|10000|0||80.77|80.34|0.00|1.58|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:39.7740000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:01:39.8170000-07:00|40021585|Zeromus|00010E65|13809538||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:01:39.8170000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.59|99.64|0.00|1.48| +37|2023-10-06T22:01:39.8610000-07:00|40021585|Zeromus|00010E66|13806713||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:39.9060000-07:00|40021585|Zeromus|00010E63|13800145||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:39.9060000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|36390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13809538|40478540|10000|10000|||100.00|80.10|0.00|0.00|74936|90216|10000|10000|||100.05|99.93|0.00|-3.14|00010E6F|0|1| +38|2023-10-06T22:01:39.9060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|74936|90216|10000|10000|0||100.05|99.93|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:39.9060000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +261|2023-10-06T22:01:39.6060000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T22:01:40.0840000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13800145|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.30|98.44|0.00|-3.13|00010E70|0|1| +31|2023-10-06T22:01:40.0840000-07:00|10FF0001||||| +38|2023-10-06T22:01:40.1280000-07:00|4002190C|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.98|81.54|0.00|-1.65|0|0|0||||||| +26|2023-10-06T22:01:40.1280000-07:00|30|Well Fed|1173.94|10FF0008|Kokosaze Lulusaze|4002190C|Automaton Queen|2964|85668|90216| +26|2023-10-06T22:01:40.1280000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|4002190C|Automaton Queen|01|85668|40478540| +38|2023-10-06T22:01:40.1280000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7336|10000|0||101.27|99.84|0.00|-3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:40.1280000-07:00|750|Temperance|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T22:01:40.1730000-07:00|4002190C|Automaton Queen|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65| +39|2023-10-06T22:01:40.1730000-07:00|10FF0008|Kokosaze Lulusaze|75838|90216|10000|10000|||100.05|99.93|0.00|-3.14| +37|2023-10-06T22:01:40.2170000-07:00|10FF0007|Kehabiqo Febiqo|00010E67|120031||||||99.84|99.44|0.00|3.13| +37|2023-10-06T22:01:40.2170000-07:00|40021585|Zeromus|00010E68|13797802||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:40.2170000-07:00|40021585|Zeromus|00010E6A|13767742||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:40.2610000-07:00|40021585|Zeromus|00010E69|13755337||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:40.3060000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13767742|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4700|10000|||102.95|100.57|0.00|-3.00|00010E71|0|1| +261|2023-10-06T22:01:39.8380000-07:00|Remove|4002190D| +04|2023-10-06T22:01:39.8380000-07:00|4002190D|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||81.38|84.06|0.00|-2.38| +261|2023-10-06T22:01:39.8380000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:01:40.3500000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|81C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13767742|40478540|10000|10000|||100.00|80.10|0.00|0.00|120031|129844|10000|10000|||99.84|99.44|0.00|3.13|00010E72|0|1| +21|2023-10-06T22:01:40.3500000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43769|83502|10000|10000|||117.24|86.83|0.00|-0.31|43769|83502|10000|10000|||117.24|86.83|0.00|-0.31|00010E73|0|1| +38|2023-10-06T22:01:40.3500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120031|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:40.3500000-07:00|499|Inner Release|13.93|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +38|2023-10-06T22:01:40.3500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43769|83502|10000|10000|0||117.24|86.83|0.00|-0.31|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:40.3500000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T22:01:40.4390000-07:00|40021585|Zeromus|00010E6E|13724716||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:40.5280000-07:00|40021585|Zeromus|00010E6D|13714617||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:40.5740000-07:00|40021585|Zeromus|00010E6F|13700736||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:40.5740000-07:00|10FF0007|Kehabiqo Febiqo|00010E6C|105127||||||99.84|99.44|0.00|3.13| +21|2023-10-06T22:01:40.5740000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|75838|90216|10000|10000|||100.05|99.95|-0.02|2.88|75838|90216|10000|10000|||100.05|99.95|-0.02|2.88|00010E74|0|1| +38|2023-10-06T22:01:40.5740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|75838|90216|10000|10000|0||100.05|99.95|-0.02|2.88|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:40.5740000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T22:01:40.6180000-07:00|40021585|Zeromus|00010E70|13698478||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:40.1660000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:01:40.1660000-07:00|Change|40021585||||||||||||| +21|2023-10-06T22:01:40.6630000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|714003|16FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13700736|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||100.30|98.44|0.00|-3.13|00010E75|0|1| +37|2023-10-06T22:01:40.7070000-07:00|40021585|Zeromus|00010E61|13673375||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:40.7520000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30EB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13700736|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||100.69|99.66|0.00|-3.11|00010E76|0|1| +21|2023-10-06T22:01:40.7520000-07:00|10FF000B|Pusu Rosu|DF2|Tetragrammaton|10FF000A|Dukaro Nezikaro|4|55FC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43769|83502|10000|10000|||116.57|89.05|0.00|-0.31|79209|79209|7336|10000|||101.27|99.84|0.00|-3.08|00010E77|0|1| +39|2023-10-06T22:01:40.7960000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||100.30|98.44|0.00|-3.13| +261|2023-10-06T22:01:40.3540000-07:00|Change|10FF0001||| +261|2023-10-06T22:01:40.3540000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:01:40.8410000-07:00|40021585|Zeromus|00010E71|13673348||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:40.8860000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|43769|83502|10000|10000|||116.11|90.52|0.00|-0.31|43769|83502|10000|10000|||116.11|90.52|0.00|-0.31|00010E78|0|1| +38|2023-10-06T22:01:40.8860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|43769|83502|10000|10000|0||116.11|90.52|0.00|-0.31|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:40.8860000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +261|2023-10-06T22:01:40.4490000-07:00|Change|10FF000B||||||| +37|2023-10-06T22:01:40.9750000-07:00|40021585|Zeromus|00010E72|13640124||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:40.9760000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13640124|40478540|10000|10000|||100.00|80.10|0.00|0.00|70567|81809|7300|10000|||83.01|81.14|0.00|1.25|00010E79|0|1| +21|2023-10-06T22:01:40.9760000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73814|73814|4700|10000|||102.95|100.57|0.00|-3.00|73814|73814|4700|10000|||102.95|100.57|0.00|-3.00|00010E7A|0|1| +38|2023-10-06T22:01:40.9760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4700|10000|0||102.95|100.57|0.00|-3.00|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:40.9760000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73814|73814| +37|2023-10-06T22:01:41.0200000-07:00|40021585|Zeromus|00010E6B|13637444|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200074F|0|41F00000|| +26|2023-10-06T22:01:41.0200000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +21|2023-10-06T22:01:41.0200000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|11AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13640124|40478540|10000|10000|||100.00|80.10|0.00|0.00|105127|129844|10000|10000|||99.84|99.44|0.00|3.13|00010E7B|0|1| +21|2023-10-06T22:01:41.0640000-07:00|4002190C|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|730003|57F90000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|13640124|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65|00010E7C|0|1| +24|2023-10-06T22:01:41.0640000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9AC|75838|90216|10000|10000|||99.96|100.20|0.00|-1.09|10FF000B|Pusu Rosu|0|79209|79209|7336|10000|||101.27|99.84|0.00|2.82| +24|2023-10-06T22:01:41.0640000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2B02|81541|81541|900|10000|||100.69|99.66|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|7336|10000|||101.27|99.84|0.00|2.82| +38|2023-10-06T22:01:41.0640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|78314|90216|10000|10000|0||99.96|100.20|0.00|-1.09|0|0|0||||||||||||||||||| +38|2023-10-06T22:01:41.0640000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|900|10000|0||100.69|99.66|0.00|-3.11|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:01:40.6660000-07:00|Change|10FF0004||||||||||||||||||||||| +24|2023-10-06T22:01:41.1540000-07:00|40021585|Zeromus|DoT|A92|641|13637444|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|70567|81809|7300|10000|||83.63|81.42|0.00|1.15| +24|2023-10-06T22:01:41.1540000-07:00|10FF0006|Wowobora Gogobora|HoT|0|177D|70567|81809|7300|10000|||83.63|81.42|0.00|1.15|10FF000B|Pusu Rosu|0|79209|79209|7336|10000|||101.27|99.84|0.00|2.64| +38|2023-10-06T22:01:41.1540000-07:00|40021585|Zeromus|005A5A00|13635843|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:01:41.1540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76580|81809|7300|10000|0||83.63|81.42|0.00|1.15|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:41.1980000-07:00|10FF0008|Kokosaze Lulusaze|00010E74|78314|90216|10000|10000|0||99.92|100.28|0.00|-0.30|1F00|0|0|01|02000353|0|40A00000|| +39|2023-10-06T22:01:41.1980000-07:00|10FF0006|Wowobora Gogobora|77398|81809|7500|10000|||84.21|81.69|0.00|1.14| +38|2023-10-06T22:01:41.1980000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|78314|90216|10000|10000|0||99.92|100.28|0.00|-0.30|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:40.6660000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:01:41.2420000-07:00|40021585|Zeromus|00010E75|13629956||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:41.2880000-07:00|10FF000A|Dukaro Nezikaro|00010E77|65781||||||115.95|91.04|0.00|-0.31| +39|2023-10-06T22:01:41.3320000-07:00|10FF000A|Dukaro Nezikaro|66616|83502|10000|10000|||115.89|91.24|-0.02|-0.31| +37|2023-10-06T22:01:41.3780000-07:00|10FF0003|Gegehi Gehi|00010E7A|73814|73814|4700|10000|0||102.95|100.57|0.00|-3.00|2300|0|0|01|050007B3|06|41700000|| +39|2023-10-06T22:01:41.3780000-07:00|10FF000B|Pusu Rosu|79209|79209|7617|10000|||101.27|99.84|0.00|2.43| +24|2023-10-06T22:01:41.3780000-07:00|10FF0003|Gegehi Gehi|HoT|0|24F1|73814|73814|4700|10000|||102.95|100.57|0.00|-3.00|10FF0003|Gegehi Gehi|0|73814|73814|4700|10000|||102.95|100.57|0.00|-3.00| +26|2023-10-06T22:01:41.3780000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T22:01:41.3780000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|10490000|104|6168000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|13629956|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|900|10000|||100.69|99.66|0.00|-3.11|00010E7D|0|1| +38|2023-10-06T22:01:41.3780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4700|10000|0||102.95|100.57|0.00|-3.00|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:40.8930000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:01:41.4220000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|726003|CE270000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|13629956|40478540|10000|10000|||100.00|80.10|0.00|0.00|78314|90216|10000|10000|||99.90|100.33|0.00|0.11|00010E7E|0|1| +38|2023-10-06T22:01:41.4220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|78314|90216|10000|10000|0||99.90|100.33|0.00|0.11|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:41.4220000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T22:01:41.4660000-07:00|10FF0007|Kehabiqo Febiqo|106425|129844|10000|10000|||99.84|99.44|0.00|3.13| +24|2023-10-06T22:01:41.4660000-07:00|10FF000B|Pusu Rosu|HoT|0|2D5C|79209|79209|7617|10000|||101.27|99.84|0.00|2.35|10FF000B|Pusu Rosu|0|79209|79209|7617|10000|||101.27|99.84|0.00|2.35| +38|2023-10-06T22:01:41.4660000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7617|10000|0||101.27|99.84|0.00|2.35|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:41.5120000-07:00|40021585|Zeromus|00010E79|13629810||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:41.5120000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|D3D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13629956|40478540|10000|10000|||100.00|80.10|0.00|0.00|66616|83502|10000|10000|||115.66|91.97|0.00|-0.31|00010E7F|0|1| +37|2023-10-06T22:01:41.5550000-07:00|40021585|Zeromus|00010E76|13617287||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:41.5550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2AD4|106425|129844|10000|10000|||99.84|99.44|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|106425|129844|10000|10000|||99.84|99.44|0.00|3.13| +38|2023-10-06T22:01:41.5550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117389|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:41.6450000-07:00|40021585|Zeromus|00010E7B|13612762||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:41.6450000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9EA|129071|129071|9200|10000|||100.30|98.44|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7617|10000|||101.27|99.84|0.00|2.24| +21|2023-10-06T22:01:41.6450000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|34720000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|13617287|40478540|10000|10000|||100.00|80.10|0.00|0.00|77398|81809|7500|10000|||86.62|82.97|0.00|1.08|00010E80|0|1| +38|2023-10-06T22:01:41.6450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77398|81809|7200|10000|0||86.62|82.97|0.00|1.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:41.6450000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:01:41.6450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:41.2290000-07:00|Change|40021585||| +20|2023-10-06T22:01:41.6890000-07:00|40021585|Zeromus|8B66|Void Bio|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:01:41.6890000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|101.27|99.84|0.00|2.24| +261|2023-10-06T22:01:41.3230000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:01:41.7780000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03| +21|2023-10-06T22:01:41.7780000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BDC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13612762|40478540|10000|10000|||100.00|80.10|0.00|0.00|117389|129844|10000|10000|||99.84|99.44|-0.02|3.13|00010E81|0|1| +261|2023-10-06T22:01:41.4190000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T22:01:41.9570000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|1020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13612762|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|900|10000|||100.69|99.66|0.00|-3.11|00010E82|0|1| +39|2023-10-06T22:01:42.0020000-07:00|10FF0003|Gegehi Gehi|73814|73814|4900|10000|||102.95|100.57|0.00|-3.00| +21|2023-10-06T22:01:42.0020000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40021585|Zeromus|754003|6BA60000|F|4D38000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|13612762|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4700|10000|||102.95|100.57|0.00|-3.00|00010E83|0|1| +38|2023-10-06T22:01:42.0020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4500|10000|0||102.95|100.57|0.00|-3.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:42.0020000-07:00|7B3|Manafication|14.33|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73814|73814| +26|2023-10-06T22:01:42.0020000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:01:41.5170000-07:00|Change|10FF0003||| +261|2023-10-06T22:01:41.5170000-07:00|Change|10FF0003||| +261|2023-10-06T22:01:41.6270000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:01:41.7460000-07:00|Change|40021585||||||||||||| +37|2023-10-06T22:01:42.0460000-07:00|40021585|Zeromus|00010E7F|13609373||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:42.0900000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|750003|5C8C0000|4|25C78000|0|0|0|0|0|0|0|0|0|0|0|0|13612762|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.30|98.44|0.00|-3.13|00010E84|0|1| +38|2023-10-06T22:01:42.0900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:42.0900000-07:00|558|Requiescat|24.43|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T22:01:42.0900000-07:00|10FF0001||||| +39|2023-10-06T22:01:42.1350000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1100|10000|||100.69|99.66|0.00|-3.11| +21|2023-10-06T22:01:42.1350000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13612762|40478540|10000|10000|||100.00|80.10|0.00|0.00|78314|90216|10000|10000|||99.90|100.33|0.00|3.14|00010E85|0|1| +261|2023-10-06T22:01:41.7460000-07:00|Change|10FF0001||| +261|2023-10-06T22:01:41.7460000-07:00|Change|10FF0004||| +20|2023-10-06T22:01:42.2240000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.69|99.66|0.00|-3.11| +37|2023-10-06T22:01:42.2680000-07:00|40021585|Zeromus|00010E80|13595947||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:42.2680000-07:00|10FF0006|Wowobora Gogobora|00010E80|77398|81809|7200|10000|0||88.81|84.35|0.00|1.07|1B00|0|0|01|03000B25|0|0|| +38|2023-10-06T22:01:42.2680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77398|81809|7200|10000|0||88.81|84.35|0.00|1.07|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:42.3120000-07:00|40021585|Zeromus|00010E81|13592911||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:42.3120000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|17760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13609373|40478540|10000|10000|||100.00|80.10|0.00|0.00|77398|81809|7200|10000|||88.81|84.35|0.00|1.07|00010E86|0|1| +38|2023-10-06T22:01:42.3120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77398|81809|7200|10000|0||88.81|84.35|0.00|1.07|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:42.3120000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:01:42.3580000-07:00|40021585|Zeromus|00010E7C|13570390||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:42.3580000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|78314|90216|10000|10000|||99.90|100.33|0.00|3.14|78314|90216|10000|10000|||99.90|100.33|0.00|3.14|00010E87|0|1| +21|2023-10-06T22:01:42.3580000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13609373|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||100.30|98.44|0.00|-3.13|00010E88|0|1| +21|2023-10-06T22:01:42.3580000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|4D490000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|13609373|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7617|10000|||101.27|99.84|0.00|-3.08|00010E89|0|1| +38|2023-10-06T22:01:42.3580000-07:00|4002190C|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.98|81.54|0.00|-1.65|0|0|0|||| +30|2023-10-06T22:01:42.3580000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|4002190C|Automaton Queen|01|85668|40478540| +38|2023-10-06T22:01:42.3580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|78314|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:42.3580000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +31|2023-10-06T22:01:42.3580000-07:00|10FF0001||||| +37|2023-10-06T22:01:42.4010000-07:00|40021585|Zeromus|00010E7D|13566221||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:42.4450000-07:00|40021585|Zeromus|00010E7E|13513446||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:42.4900000-07:00|40021585|Zeromus|00010E82|13513188||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:42.5360000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|550003|4A400000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|13513188|40478540|10000|10000|||100.00|80.10|0.00|0.00|66616|83502|10000|10000|||108.82|95.54|-0.02|-0.31|00010E8A|0|1| +38|2023-10-06T22:01:42.5360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|66616|83502|10000|10000|0||108.82|95.54|-0.02|-0.31|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:42.5360000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:01:42.5360000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +24|2023-10-06T22:01:42.6680000-07:00|40021585|Zeromus|DoT|0|2550|13513188|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|7217|10000|||101.27|99.84|0.00|-3.08| +38|2023-10-06T22:01:42.6680000-07:00|40021585|Zeromus|005A5A00|13503636|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:01:42.7130000-07:00|40021585|Zeromus|00010E84|13479944||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:42.3900000-07:00|Change|40021914||||| +22|2023-10-06T22:01:42.7580000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E8B|0|8| +22|2023-10-06T22:01:42.7580000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000B|Pusu Rosu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7217|10000|||101.27|99.84|0.00|-3.08|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E8B|1|8| +22|2023-10-06T22:01:42.7580000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1100|10000|||100.69|99.66|0.00|-3.11|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E8B|2|8| +22|2023-10-06T22:01:42.7580000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|78314|90216|10000|10000|||99.90|100.33|0.00|3.14|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E8B|3|8| +22|2023-10-06T22:01:42.7580000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|117389|129844|10000|10000|||99.84|99.44|-0.02|3.13|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E8B|4|8| +22|2023-10-06T22:01:42.7580000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8200|10000|||100.30|98.44|0.00|-3.13|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E8B|5|8| +22|2023-10-06T22:01:42.7580000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|66616|83502|10000|10000|||106.53|96.70|0.00|-2.75|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E8B|6|8| +22|2023-10-06T22:01:42.7580000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77398|81809|7200|10000|||91.12|86.07|0.00|1.11|73814|73814|4500|10000|||102.95|100.57|0.00|-3.00|00010E8B|7|8| +38|2023-10-06T22:01:42.8030000-07:00|40021918||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:01:42.8030000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14DF0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|66616|83502|10000|10000|||106.53|96.70|0.00|-2.75|54201|77430|10000|10000|||102.13|99.99|0.00|-3.12|00010E8C|0|1| +21|2023-10-06T22:01:42.8030000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7DA80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13479944|40478540|10000|10000|||100.00|80.10|0.00|0.00|117389|129844|10000|10000|||99.84|99.44|-0.02|3.13|00010E8D|0|1| +38|2023-10-06T22:01:42.8030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117389|129844|10000|10000|0||99.84|99.44|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:42.8030000-07:00|499|Inner Release|11.48|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +38|2023-10-06T22:01:42.8030000-07:00|40021918||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:01:42.3900000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:01:42.8910000-07:00|40021585|Zeromus|00010E85|13477651||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:42.8910000-07:00|40021585|Zeromus|00010E88|13475415||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:42.4830000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:01:42.4830000-07:00|Change|10FF000B||||||||||||||||| +21|2023-10-06T22:01:42.9810000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40021585|Zeromus|6C40E|35D0000|85000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|13475415|40478540|10000|10000|||100.00|80.10|0.00|0.00|78314|90216|10000|10000|||99.90|100.33|0.00|3.14|00010E8E|0|1| +21|2023-10-06T22:01:42.9810000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7217|10000|||101.27|99.84|0.00|-3.08|79209|79209|7217|10000|||101.27|99.84|0.00|-3.08|00010E8F|0|1| +37|2023-10-06T22:01:43.0690000-07:00|40021585|Zeromus|00010E86|13469409||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:43.0690000-07:00|4002190C|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.98|81.54|0.00|-1.65|0|0|0||||||| +26|2023-10-06T22:01:43.0690000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|4002190C|Automaton Queen|01|85668|40478540| +21|2023-10-06T22:01:43.1150000-07:00|4002190C|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|730003|65EF0000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|13475415|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65|00010E90|0|1| +03|2023-10-06T22:01:42.5740000-07:00|40021918|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||93.73|88.31|0.00|-2.29| +261|2023-10-06T22:01:42.5740000-07:00|Add|40021918||||||||||||||||||||||||||||||||||||| +39|2023-10-06T22:01:43.1590000-07:00|4002190C|Automaton Queen|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65| +39|2023-10-06T22:01:43.1590000-07:00|10FF0008|Kokosaze Lulusaze|79216|90216|10000|10000|||99.90|100.33|0.00|3.14| +21|2023-10-06T22:01:43.1590000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30B50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13469409|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1100|10000|||100.69|99.66|0.00|-3.11|00010E91|0|1| +261|2023-10-06T22:01:42.6920000-07:00|Change|40021918||| +261|2023-10-06T22:01:42.8050000-07:00|Change|10FF0004||| +37|2023-10-06T22:01:43.2500000-07:00|40021585|Zeromus|00010E8A|13450401||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:43.2500000-07:00|10FF000A|Dukaro Nezikaro|00010E8A|66616|83502|10000|10000|0||104.74|97.52|0.00|-1.19|1E00|0|0|01|04000A82|01|41F00000|| +21|2023-10-06T22:01:43.2500000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|712003|5B900000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|13450401|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||100.30|98.44|0.00|-3.13|00010E92|0|1| +38|2023-10-06T22:01:43.2500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|66616|83502|10000|10000|0||103.86|97.70|0.00|-1.04|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:43.4280000-07:00|40021585|Zeromus|00010E8D|13418233||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:43.4280000-07:00|40021585|Zeromus|00010E83|13390675||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:43.4280000-07:00|10FF0003|Gegehi Gehi|00010E83|73814|73814|4500|10000|0||102.92|100.59|0.00|-2.91|2300|0|0|01|060004D3|0|41F00000|| +37|2023-10-06T22:01:43.4280000-07:00|10FF0003|Gegehi Gehi|00010E8B|73814|73814|4500|10000|0||102.92|100.59|0.00|-2.91|2300|0|0|01|070004D7|0|41A00000|| +26|2023-10-06T22:01:43.4280000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:01:43.4280000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|714003|17870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13450401|40478540|10000|10000|||100.00|80.10|0.00|0.00|117389|129844|10000|10000|||99.84|99.44|-0.02|3.13|00010E93|0|1| +38|2023-10-06T22:01:43.4280000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4500|10000|0||102.92|100.59|0.00|-2.91|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:01:43.4720000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7217|10000|0||101.29|99.78|-0.02|-3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:43.4720000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:43.4720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|66616|83502|10000|10000|0||103.07|97.86|0.00|-0.91|0|0|0|||||||||||||||| +30|2023-10-06T22:01:43.4720000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:01:43.5180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117389|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:43.5180000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:43.5180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79216|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:43.5180000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:01:43.5180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77398|81809|7200|10000|0||94.46|89.08|0.00|0.84|0|0|0|||||||||||||||| +30|2023-10-06T22:01:43.5180000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:43.5180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:43.5180000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:01:43.5180000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|700|10000|0||100.69|99.66|0.00|-3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:43.5180000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:01:43.5180000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4500|10000|0||102.89|100.60|0.00|-2.83|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:43.5180000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T22:01:43.5610000-07:00|10FF000B|Pusu Rosu|00010E8B|79209|79209|7217|10000|0||101.29|99.71|0.00|3.12|1801|0|0|01|04000511|0|41A00000|| +26|2023-10-06T22:01:43.5610000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|79209|73814| +261|2023-10-06T22:01:43.1560000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:01:43.6060000-07:00|10FF000A|Dukaro Nezikaro|00010E8C|71959||||||101.99|98.75|0.00|-1.06| +37|2023-10-06T22:01:43.6060000-07:00|40021585|Zeromus|00010E8E|13390675|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300035D|0|41200000|| +26|2023-10-06T22:01:43.6060000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|90216| +37|2023-10-06T22:01:43.6060000-07:00|10FF0008|Kokosaze Lulusaze|00010E8E|79216|90216|10000|10000|0||99.90|100.33|0.00|3.14|1F00|0|0|01|0300079A|0|41200000|| +26|2023-10-06T22:01:43.6060000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T22:01:43.6060000-07:00|40021585|Zeromus|00010E92|13367235||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:43.6060000-07:00|10FF0001|Sesuga Sapisuga|00010E92|129071|129071|8700|10000|0||100.30|98.44|0.00|-3.13|1300|0|0|0| +37|2023-10-06T22:01:43.6060000-07:00|10FF000B|Pusu Rosu|00010E8F|79209|79209|7217|10000|0||101.30|99.64|0.00|3.10|1800|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T22:01:43.6060000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:01:43.1560000-07:00|Change|10FF0001||| +261|2023-10-06T22:01:43.1560000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:01:43.6510000-07:00|40021585|Zeromus|00010E89|13347450||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:43.6510000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|11350000|104|66D8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|13390675|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|700|10000|||100.69|99.66|0.00|-3.11|00010E94|0|1| +20|2023-10-06T22:01:43.6510000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|101.30|99.64|0.00|3.10| +38|2023-10-06T22:01:43.6510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|700|10000|0||100.69|99.66|0.00|-3.11|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:43.6510000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +37|2023-10-06T22:01:43.6960000-07:00|10FF0004|Buhojaqe Zijaqe|00010E8B|81541|81541|700|10000|0||100.69|99.66|0.00|-3.11|1C02|0|0|01|04000511|0|41A00000|| +26|2023-10-06T22:01:43.6960000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +21|2023-10-06T22:01:43.6960000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13347450|40478540|10000|10000|||100.00|80.10|0.00|0.00|71959|83502|10000|10000|||101.49|99.28|0.00|-1.20|00010E95|0|1| +38|2023-10-06T22:01:43.6960000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||102.13|99.99|0.00|2.78|0|0|0||||||| +26|2023-10-06T22:01:43.6960000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002185F|Ruby Carbuncle|00|77430|73814| +21|2023-10-06T22:01:43.7840000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13347450|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4500|10000|||102.35|100.81|0.00|-2.81|00010E96|0|1| +37|2023-10-06T22:01:43.8290000-07:00|10FF0008|Kokosaze Lulusaze|00010E8B|79216|90216|10000|10000|0||99.90|100.33|0.00|3.14|1F03|0|0|01|06000511|0|41A00000|| +26|2023-10-06T22:01:43.8290000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +39|2023-10-06T22:01:43.8290000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8900|10000|||100.30|98.44|0.00|-3.13| +34|2023-10-06T22:01:43.8290000-07:00|40021918|Carbuncle|40021918|Carbuncle|01| +38|2023-10-06T22:01:43.8290000-07:00|4002190C|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.98|81.54|0.00|-1.65|0|0|0|||||||||| +26|2023-10-06T22:01:43.8290000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|4002190C|Automaton Queen|00|85668|73814| +261|2023-10-06T22:01:43.3530000-07:00|Change|40021918||| +261|2023-10-06T22:01:43.5420000-07:00|Change|10FF000B||||||||||||||||||| +37|2023-10-06T22:01:43.9630000-07:00|40021585|Zeromus|00010E91|13334981||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:43.9630000-07:00|10FF0007|Kehabiqo Febiqo|00010E8B|117389|129844|10000|10000|0||99.84|99.44|0.00|3.13|1504|0|0|01|02000511|0|41A00000|| +26|2023-10-06T22:01:43.9630000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +26|2023-10-06T22:01:43.9630000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:01:43.9630000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|36B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13347450|40478540|10000|10000|||100.00|80.10|0.00|0.00|79216|90216|10000|10000|||99.90|100.33|0.00|3.14|00010E97|0|1| +37|2023-10-06T22:01:44.0520000-07:00|40021585|Zeromus|00010E93|13328958||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:44.0520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|ED9|79216|90216|10000|10000|||99.90|100.33|0.00|3.14|10FF0003|Gegehi Gehi|0|73814|73814|4500|10000|||101.70|101.06|0.00|-2.82| +24|2023-10-06T22:01:44.0520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2043|81541|81541|700|10000|||100.69|99.66|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|7217|10000|||101.30|99.54|0.00|-3.08| +38|2023-10-06T22:01:44.0520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|83017|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:44.0520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|700|10000|0||100.69|99.66|0.00|-3.11|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:44.0960000-07:00|10FF0001|Sesuga Sapisuga|00010E8B|129071|129071|8900|10000|0||100.30|98.44|0.00|-3.13|1305|0|0|01|05000511|0|41A00000|| +26|2023-10-06T22:01:44.0960000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +21|2023-10-06T22:01:44.0960000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|33760000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|13334981|40478540|10000|10000|||100.00|80.10|0.00|0.00|77398|81809|7200|10000|||97.14|92.20|0.00|0.66|00010E98|0|1| +21|2023-10-06T22:01:44.0960000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13334981|40478540|10000|10000|||100.00|80.10|0.00|0.00|77398|81809|7200|10000|||97.14|92.20|0.00|0.66|00010E99|0|1| +38|2023-10-06T22:01:44.0960000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|77398|81809|6900|10000|0||97.14|92.20|0.00|0.66|0|0|0|||||||||||||||| +26|2023-10-06T22:01:44.0960000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T22:01:44.1400000-07:00|40021585|Zeromus|DoT|A92|A53|13334981|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|77398|81809|7200|10000|||97.14|92.20|0.00|0.66| +24|2023-10-06T22:01:44.1400000-07:00|10FF0006|Wowobora Gogobora|HoT|0|2255|77398|81809|7200|10000|||97.14|92.20|0.00|0.66|10FF0006|Wowobora Gogobora|0|77398|81809|7200|10000|||97.14|92.20|0.00|0.66| +38|2023-10-06T22:01:44.1400000-07:00|40021585|Zeromus|005A5A00|13326315|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T22:01:44.1400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6900|10000|0||97.14|92.20|0.00|0.66|0|0|0|||||||||||||||| +39|2023-10-06T22:01:44.1840000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7100|10000|||97.14|92.20|0.00|0.66| +37|2023-10-06T22:01:44.2300000-07:00|10FF000A|Dukaro Nezikaro|00010E8B|71959|83502|10000|10000|0||100.77|101.33|-0.02|-1.96|1E06|0|0|01|05000511|0|41A00000|| +26|2023-10-06T22:01:44.2300000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|83502|73814| +37|2023-10-06T22:01:44.2300000-07:00|40021585|Zeromus|00010E95|13324045||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:44.3190000-07:00|40021585|Zeromus|00010E96|13324008||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:44.3190000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|35C90000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|13326315|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7217|10000|||101.30|99.53|0.00|-3.07|00010E9A|0|1| +37|2023-10-06T22:01:44.3640000-07:00|10FF0006|Wowobora Gogobora|00010E8B|81809|81809|7100|10000|0||97.56|93.11|0.00|2.98|1B07|0|0|01|05000511|0|41A00000|| +26|2023-10-06T22:01:44.3640000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +39|2023-10-06T22:01:44.3640000-07:00|10FF000B|Pusu Rosu|79209|79209|7098|10000|||101.30|99.53|0.00|-3.07| +39|2023-10-06T22:01:44.3640000-07:00|10FF000A|Dukaro Nezikaro|72794|83502|10000|10000|||101.00|101.25|0.00|-2.32| +24|2023-10-06T22:01:44.3640000-07:00|10FF0003|Gegehi Gehi|HoT|0|211E|73814|73814|4500|10000|||101.70|101.06|0.00|-2.82|10FF0003|Gegehi Gehi|0|73814|73814|4500|10000|||101.70|101.06|0.00|-2.82| +38|2023-10-06T22:01:44.3640000-07:00|40021918|Carbuncle|005A5A00|74223|77698|10000|10000|0||94.09|89.29|0.00|-1.59|0|0|0||||||| +26|2023-10-06T22:01:44.3640000-07:00|30|Well Fed|578.28|10FF0006|Wowobora Gogobora|40021918|Carbuncle|2964|77698|81809| +26|2023-10-06T22:01:44.3640000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|40021918|Carbuncle|00|77698|73814| +38|2023-10-06T22:01:44.3640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4500|10000|0||101.70|101.06|0.00|-2.82|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:01:44.4520000-07:00|10FF0007|Kehabiqo Febiqo|118687|129844|10000|10000|||99.84|99.44|-0.02|3.13| +24|2023-10-06T22:01:44.4520000-07:00|10FF000B|Pusu Rosu|HoT|0|2C54|79209|79209|6817|10000|||101.30|99.53|0.00|-3.07|10FF000B|Pusu Rosu|0|79209|79209|6817|10000|||101.30|99.53|0.00|-3.07| +21|2023-10-06T22:01:44.4520000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|750003|6B2F0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|13324008|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4500|10000|||101.70|101.06|0.00|-2.82|00010E9B|0|1| +38|2023-10-06T22:01:44.4520000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4100|10000|0||101.70|101.06|0.00|-2.82|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:44.4520000-07:00|7B3|Manafication|11.88|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73814|73814| +38|2023-10-06T22:01:44.4520000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7648|10000|0||101.30|99.53|0.00|-3.07|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:01:43.9620000-07:00|Change|10FF0003||||||||| +24|2023-10-06T22:01:44.5410000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2678|118687|129844|10000|10000|||99.84|99.44|-0.02|3.13|10FF0007|Kehabiqo Febiqo|0|118687|129844|10000|10000|||99.84|99.44|-0.02|3.13| +21|2023-10-06T22:01:44.5410000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|726003|2BC50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13324008|40478540|10000|10000|||100.00|80.10|0.00|0.00|83017|90216|10000|10000|||99.90|100.33|0.00|3.14|00010E9C|0|1| +38|2023-10-06T22:01:44.5410000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128535|129844|10000|10000|0||99.84|99.44|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:44.5860000-07:00|40021585|Zeromus|00010E97|13310003|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300035D|01|411051EE|| +26|2023-10-06T22:01:44.5860000-07:00|35D|Wildfire|9.02|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|01|40478540|90216| +21|2023-10-06T22:01:44.5860000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|750003|69060000|4|26208000|0|0|0|0|0|0|0|0|0|0|0|0|13324008|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||100.30|98.44|0.00|-3.13|00010E9D|0|1| +38|2023-10-06T22:01:44.5860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:44.5860000-07:00|558|Requiescat|21.94|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T22:01:44.5860000-07:00|10FF0001||||| +37|2023-10-06T22:01:44.6300000-07:00|40021585|Zeromus|00010E99|13309846||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:44.6300000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|9DE|129071|129071|8900|10000|||100.30|98.44|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|7648|10000|||101.30|99.53|0.00|-3.07| +21|2023-10-06T22:01:44.6300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|B090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13324008|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||100.30|98.44|0.00|-3.13|00010E9E|0|1| +20|2023-10-06T22:01:44.6300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.69|99.66|0.00|-3.11| +38|2023-10-06T22:01:44.6300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +31|2023-10-06T22:01:44.6300000-07:00|10FF0001||||| +261|2023-10-06T22:01:44.1900000-07:00|Change|10FF0001||| +261|2023-10-06T22:01:44.1900000-07:00|Change|10FF0004||||||||||||| +261|2023-10-06T22:01:44.1900000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:01:44.6740000-07:00|40021585|Zeromus|00010E94|13305441||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:44.7200000-07:00|40021585|Zeromus|00010E98|13292267||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:44.7200000-07:00|10FF0006|Wowobora Gogobora|00010E98|81809|81809|7100|10000|0||98.03|94.18|0.00|1.69|1B00|0|0|01|03000B25|0|0|| +21|2023-10-06T22:01:44.7200000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|454003|1F470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13309846|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7100|10000|||98.03|94.18|0.00|1.69|00010E9F|0|1| +38|2023-10-06T22:01:44.7200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7100|10000|0||98.03|94.18|0.00|1.69|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:44.7200000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T22:01:44.7640000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03| +21|2023-10-06T22:01:44.8090000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|92B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13292267|40478540|10000|10000|||100.00|80.10|0.00|0.00|83017|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EA0|0|1| +39|2023-10-06T22:01:44.9860000-07:00|10FF0003|Gegehi Gehi|73814|73814|4300|10000|||101.70|101.06|0.00|-3.06| +261|2023-10-06T22:01:44.4730000-07:00|Change|10FF0003||||| +261|2023-10-06T22:01:44.4730000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:01:45.0750000-07:00|40021585|Zeromus|00010E90|13266172||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:45.0750000-07:00|4002190C|Automaton Queen|005A5A00|82193|85668|10000|10000|0||118.98|81.54|0.00|-1.65|0|0|0|||||||||| +30|2023-10-06T22:01:45.0750000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|4002190C|Automaton Queen|01|85668|40478540| +261|2023-10-06T22:01:44.7110000-07:00|Change|40021918||||||||| +39|2023-10-06T22:01:45.1200000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|900|10000|||100.69|99.66|0.00|-3.11| +37|2023-10-06T22:01:45.1650000-07:00|40021585|Zeromus|00010E9C|13254967||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:45.1650000-07:00|40021585|Zeromus|00010E9E|13252142||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:45.1650000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13266172|40478540|10000|10000|||100.00|80.10|0.00|0.00|128535|129844|10000|10000|||99.84|99.44|-0.02|3.13|00010EA1|0|1| +21|2023-10-06T22:01:45.1650000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|550003|43C20000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|13266172|40478540|10000|10000|||100.00|80.10|0.00|0.00|72794|83502|10000|10000|||99.04|101.27|0.00|-3.12|00010EA2|0|1| +38|2023-10-06T22:01:45.1650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|72794|83502|10000|10000|0||99.04|101.27|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:45.1650000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T22:01:45.2080000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|722003|69B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13266172|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4300|10000|||101.63|101.06|0.00|-3.09|00010EA3|0|1| +21|2023-10-06T22:01:45.2530000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|BEA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13266172|40478540|10000|10000|||100.00|80.10|0.00|0.00|128535|129844|10000|10000|||99.84|99.44|-0.02|3.13|00010EA4|0|1| +38|2023-10-06T22:01:45.2530000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128535|129844|10000|10000|0||99.84|99.44|-0.02|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:45.2530000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:01:45.3870000-07:00|40021918|Carbuncle|005A5A00|74223|77698|10000|10000|0||96.10|93.16|0.00|0.40|0|0|0|||||||||| +26|2023-10-06T22:01:45.3870000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|40021918|Carbuncle|01|77698|81809| +21|2023-10-06T22:01:45.3870000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|7100|10000|||98.53|95.32|0.00|3.05|81809|81809|7100|10000|||98.53|95.32|0.00|3.05|00010EA5|0|1| +26|2023-10-06T22:01:45.4310000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:01:45.4310000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|21E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13252142|40478540|10000|10000|||100.00|80.10|0.00|0.00|83017|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EA6|0|1| +37|2023-10-06T22:01:45.4760000-07:00|40021585|Zeromus|00010E9F|13244135||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:45.4760000-07:00|40021585|Zeromus|00010E9D|13217249||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:45.5200000-07:00|40021918|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|7100|10000|||98.53|95.32|0.00|3.05|74223|77698|10000|10000|||96.26|93.43|0.00|0.44|00010EA7|0|1| +38|2023-10-06T22:01:45.5200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7100|10000|19||98.53|95.32|0.00|3.05|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:45.5200000-07:00|A8E|Radiant Aegis|29.96|40021918|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T22:01:45.5640000-07:00|40021585|Zeromus|00010EA0|13214902||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:45.5640000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|36080000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|13217249|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|900|10000|||100.69|99.66|0.00|-3.11|00010EA8|0|1| +37|2023-10-06T22:01:45.6100000-07:00|40021585|Zeromus|00010E9A|13201133||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:45.1640000-07:00|Change|10FF0004||||||||||||||| +24|2023-10-06T22:01:45.6530000-07:00|40021585|Zeromus|DoT|0|1CCE|13214902|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|83017|90216|10000|10000|||99.90|100.33|0.00|3.14| +20|2023-10-06T22:01:45.6530000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|101.18|99.32|0.00|-2.76| +38|2023-10-06T22:01:45.6530000-07:00|40021585|Zeromus|005A5A00|13193759|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:01:45.6980000-07:00|40021585|Zeromus|00010EA1|13190382||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:45.2580000-07:00|Change|40021585||||| +21|2023-10-06T22:01:45.8750000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13190382|40478540|10000|10000|||100.00|80.10|0.00|0.00|72794|83502|10000|10000|||99.34|101.31|0.00|3.08|00010EA9|0|1| +37|2023-10-06T22:01:45.9200000-07:00|40021585|Zeromus|00010EA2|13173036||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:45.9210000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|720003|120F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13190382|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4300|10000|||100.76|100.37|0.00|-3.10|00010EAA|0|1| +21|2023-10-06T22:01:46.0100000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|754003|33430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13173036|40478540|10000|10000|||100.00|80.10|0.00|0.00|72794|83502|10000|10000|||99.04|101.27|0.00|3.08|00010EAB|0|1| +261|2023-10-06T22:01:45.5380000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:01:46.0530000-07:00|40021585|Zeromus|00010EA6|13164355|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300035D|02|40F1A1D4|| +26|2023-10-06T22:01:46.0530000-07:00|35D|Wildfire|7.55|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|02|40478540|90216| +21|2023-10-06T22:01:46.0530000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|14560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13173036|40478540|10000|10000|||100.00|80.10|0.00|0.00|83017|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EAC|0|1| +39|2023-10-06T22:01:46.1420000-07:00|10FF0008|Kokosaze Lulusaze|83919|90216|10000|10000|||99.90|100.33|0.00|3.14| +39|2023-10-06T22:01:46.1870000-07:00|4002190C|Automaton Queen|82193|85668|10000|10000|||118.98|81.54|0.00|-1.65| +37|2023-10-06T22:01:46.2760000-07:00|40021585|Zeromus|00010E9B|13136916||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:46.3210000-07:00|10FF0006|Wowobora Gogobora|00010EA7|81809|81809|7100|10000|19||99.38|98.45|0.00|0.31|1B00|0|0|01|03000A8E|0|41E9978B|| +21|2023-10-06T22:01:46.3210000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|36EE0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|13164355|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|7648|10000|||101.18|99.32|0.00|-3.08|00010EAD|0|1| +38|2023-10-06T22:01:46.3210000-07:00|40021918|Carbuncle|005A5A00|74223|77698|10000|10000|0||96.76|94.35|0.00|0.79|0|0|0||||||| +30|2023-10-06T22:01:46.3210000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|40021918|Carbuncle|01|77698|81809| +261|2023-10-06T22:01:45.8830000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:01:46.3650000-07:00|40021585|Zeromus|00010EA8|13123084||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:46.3650000-07:00|40021585|Zeromus|00010EA3|13096024||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:46.3650000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|14A00000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|72794|83502|10000|10000|||98.85|101.27|0.00|3.08|54201|77430|10000|10000|||102.13|99.99|0.00|-2.55|00010EAE|0|1| +37|2023-10-06T22:01:46.4110000-07:00|40021585|Zeromus|00010EA4|13047223||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:46.4110000-07:00|40021585|Zeromus|00010EA9|13044984||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:46.5430000-07:00|40021585|Zeromus|00010EAA|13040361||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:46.6330000-07:00|40021585|Zeromus|00010EAB|13027238||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:46.6330000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|454003|482A0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|13040361|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7100|10000|||100.45|100.56|0.00|0.43|00010EAF|0|1| +38|2023-10-06T22:01:46.6330000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6800|10000|19||100.45|100.56|0.00|0.43|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:46.6330000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T22:01:46.6780000-07:00|40021585|Zeromus|8B66|Void Bio|40021585|Zeromus|1B|8B668000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13040361|40478540|10000|10000|||100.00|80.10|0.00|0.00|13040361|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010EB0|0|1| +38|2023-10-06T22:01:46.6780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6800|10000|19||100.45|100.56|0.00|0.43|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:46.6780000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +04|2023-10-06T22:01:46.3210000-07:00|40021914|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||80.93|80.79|0.00|1.61| +261|2023-10-06T22:01:46.3210000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:01:46.3210000-07:00|Remove|40021910| +261|2023-10-06T22:01:46.3210000-07:00|Remove|40021914| +261|2023-10-06T22:01:46.4110000-07:00|Change|40021585||| +39|2023-10-06T22:01:46.8120000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||100.30|98.44|0.00|-3.13| +261|2023-10-06T22:01:46.4110000-07:00|Change|10FF0001||| +37|2023-10-06T22:01:46.8570000-07:00|40021585|Zeromus|00010EAC|13022032||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:46.4110000-07:00|Change|10FF0006||||||||||| +26|2023-10-06T22:01:46.9020000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:01:46.9020000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2DE60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13027238|40478540|10000|10000|||100.00|80.10|0.00|0.00|83919|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EB1|0|1| +21|2023-10-06T22:01:46.9020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13027238|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||100.30|98.44|0.00|-3.13|00010EB2|0|1| +21|2023-10-06T22:01:46.9020000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|756003|E9F50000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|13027238|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4300|10000|||100.76|100.36|0.00|-3.10|00010EB3|0|1| +21|2023-10-06T22:01:46.9020000-07:00|10FF000B|Pusu Rosu|1D06|Thin Air|10FF000B|Pusu Rosu|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7248|10000|||101.18|99.32|0.00|-3.08|79209|79209|7248|10000|||101.18|99.32|0.00|-3.08|00010EB4|0|1| +38|2023-10-06T22:01:46.9020000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:46.9020000-07:00|7B3|Manafication|9.43|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73814|73814| +38|2023-10-06T22:01:46.9020000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7248|10000|0||101.18|99.32|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:01:46.9020000-07:00|4C1|Thin Air|12.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +261|2023-10-06T22:01:46.4110000-07:00|Change|10FF0003||||||||| +31|2023-10-06T22:01:46.9020000-07:00|10FF0001||||| +21|2023-10-06T22:01:47.0340000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|FC20E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|13022032|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|500|10000|||100.69|99.66|0.00|-3.11|00010EB5|0|1| +21|2023-10-06T22:01:47.0340000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|10A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13022032|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|500|10000|||100.69|99.66|0.00|-3.11|00010EB6|0|1| +261|2023-10-06T22:01:46.6020000-07:00|Change|10FF0004||| +261|2023-10-06T22:01:46.6020000-07:00|Change|10FF000B||||||||||||||||| +24|2023-10-06T22:01:47.0780000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|94E|83919|90216|10000|10000|||99.90|100.33|0.00|3.14|10FF0003|Gegehi Gehi|0|73814|73814|3900|10000|||100.76|100.36|0.00|-3.10| +24|2023-10-06T22:01:47.0780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|259D|81541|81541|100|10000|||100.69|99.66|0.00|-3.11|10FF000B|Pusu Rosu|0|79209|79209|7248|10000|||101.18|99.32|0.00|-3.08| +21|2023-10-06T22:01:47.0780000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|750003|74400000|4|25038000|0|0|0|0|0|0|0|0|0|0|0|0|13022032|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||100.30|98.44|0.00|-3.13|00010EB7|0|1| +38|2023-10-06T22:01:47.0780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|86301|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:47.0780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|0||100.30|98.44|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:47.0780000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T22:01:47.0780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|100|10000|0||100.69|99.66|0.00|-3.11|0|0|0||||||||||||||||||||||||| +31|2023-10-06T22:01:47.0780000-07:00|10FF0001||||| +37|2023-10-06T22:01:47.1670000-07:00|10FF000A|Dukaro Nezikaro|00010EAE|78074||||||99.02|101.27|0.00|3.08| +24|2023-10-06T22:01:47.1670000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1583|81809|81809|6800|10000|||100.59|100.93|0.00|1.59|10FF0003|Gegehi Gehi|0|73814|73814|3900|10000|||100.76|100.36|0.00|-3.10| +38|2023-10-06T22:01:47.1670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6800|10000|19||100.59|100.93|0.00|1.59|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:47.1670000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7248|10000|0||101.18|99.32|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:47.1670000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:01:46.7270000-07:00|Change|40021918||||||||| +39|2023-10-06T22:01:47.2120000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7000|10000|||100.59|100.93|0.00|1.59| +21|2023-10-06T22:01:47.2120000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72794|83502|10000|10000|||99.02|101.27|0.00|3.08|72794|83502|10000|10000|||99.02|101.27|0.00|3.08|00010EB8|0|1| +38|2023-10-06T22:01:47.2120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78074|83502|10000|10000|0||99.02|101.27|0.00|3.08|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:47.2120000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:01:47.2560000-07:00|40021585|Zeromus|00010EAF|13003558||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:47.2560000-07:00|10FF0006|Wowobora Gogobora|00010EAF|81809|81809|7000|10000|19||100.59|100.93|0.00|1.59|1B00|0|0|01|06000B25|0|0|| +21|2023-10-06T22:01:47.2570000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13003558|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7000|10000|||100.62|101.01|0.00|1.29|00010EB9|0|1| +21|2023-10-06T22:01:47.2570000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13003558|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3900|10000|||100.76|100.36|0.00|-3.10|00010EBA|0|1| +38|2023-10-06T22:01:47.2570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7000|10000|19||100.62|101.01|0.00|1.29|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:47.2570000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7248|10000|0||101.18|99.32|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:01:47.2570000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:01:47.3000000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|100|10000|0||100.69|99.66|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:47.3000000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +39|2023-10-06T22:01:47.3450000-07:00|10FF000B|Pusu Rosu|79209|79209|7529|10000|||101.18|99.32|0.00|-3.08| +39|2023-10-06T22:01:47.3450000-07:00|10FF000A|Dukaro Nezikaro|78909|83502|10000|10000|||99.02|101.27|0.00|3.08| +21|2023-10-06T22:01:47.3450000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|456003|35750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13003558|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7000|10000|||100.62|101.01|0.00|1.29|00010EBB|0|1| +38|2023-10-06T22:01:47.3450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7000|10000|19||100.62|101.01|0.00|1.29|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:47.3450000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T22:01:47.3900000-07:00|10FF0003|Gegehi Gehi|HoT|0|208E|73814|73814|3900|10000|||100.76|100.36|0.00|-3.10|10FF0003|Gegehi Gehi|0|73814|73814|3900|10000|||100.76|100.36|0.00|-3.10| +38|2023-10-06T22:01:47.3900000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128535|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:47.3900000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:47.3900000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:47.4340000-07:00|40021585|Zeromus|00010EB2|13001248||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:47.4340000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128535|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:47.4340000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:01:47.4340000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78909|83502|10000|10000|0||99.02|101.27|0.00|3.08|0|0|0||||||||||||||||||| +39|2023-10-06T22:01:47.4780000-07:00|10FF0007|Kehabiqo Febiqo|129833|129844|10000|10000|||99.84|99.44|0.00|3.13| +24|2023-10-06T22:01:47.4780000-07:00|10FF000B|Pusu Rosu|HoT|0|F93|79209|79209|7529|10000|||101.18|99.32|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|7529|10000|||101.18|99.32|0.00|-3.08| +21|2023-10-06T22:01:47.4780000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13003558|40478540|10000|10000|||100.00|80.10|0.00|0.00|86301|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EBC|0|1| +38|2023-10-06T22:01:47.4780000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8079|10000|0||101.18|99.32|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:01:47.5220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|100|10000|0||100.69|99.66|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:47.5220000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +37|2023-10-06T22:01:47.5680000-07:00|40021585|Zeromus|00010EB1|12989498|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300035D|03|40C13F7E|| +26|2023-10-06T22:01:47.5680000-07:00|35D|Wildfire|6.04|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|03|40478540|90216| +37|2023-10-06T22:01:47.5680000-07:00|40021585|Zeromus|00010EB6|12989232||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:47.5680000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|F7C|129833|129844|10000|10000|||99.84|99.44|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|129833|129844|10000|10000|||99.84|99.44|0.00|3.13| +21|2023-10-06T22:01:47.5680000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|20E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|13001248|40478540|10000|10000|||100.00|80.10|0.00|0.00|86301|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EBD|0|1| +38|2023-10-06T22:01:47.5690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:01:47.5690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:47.5690000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:01:47.6120000-07:00|40021585|Zeromus|00010EAD|12975170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:47.6120000-07:00|10FF000B|Pusu Rosu|00010EAD|79209|79209|8079|10000|0||101.18|99.32|0.00|-3.08|1800|0|0|01|080004C1|FF9C|C1400000|| +20|2023-10-06T22:01:47.6120000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|101.18|99.32|0.00|-3.08| +37|2023-10-06T22:01:47.6570000-07:00|40021585|Zeromus|00010EB5|12975170|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T22:01:47.6570000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +37|2023-10-06T22:01:47.6570000-07:00|10FF000B|Pusu Rosu|00010EB4|79209|79209|8079|10000|0||101.18|99.32|0.00|-3.08|1800|0|0|01|080004C1|FF9C|41400000|| +24|2023-10-06T22:01:47.6570000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|92D|129071|129071|7100|10000|||100.30|98.44|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|7100|10000|||100.30|98.44|0.00|-3.13| +38|2023-10-06T22:01:47.6570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7000|10000|19||100.65|101.09|0.00|-3.11|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:47.6570000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:01:47.6570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:47.6570000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8079|10000|0||101.18|99.32|0.00|-3.08|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:01:47.7010000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|1AB00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12989232|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3900|10000|||100.76|100.36|0.00|-3.10|00010EBE|0|1| +38|2023-10-06T22:01:47.7010000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:47.7010000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +39|2023-10-06T22:01:47.7460000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-1.32| +21|2023-10-06T22:01:47.7460000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|88100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12975170|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.84|99.44|0.00|3.13|00010EBF|0|1| +38|2023-10-06T22:01:47.7460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:47.7460000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +37|2023-10-06T22:01:47.7910000-07:00|40021585|Zeromus|00010EB9|12974916||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:47.7910000-07:00|40021585|Zeromus|00010EBA|12974858||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:47.7910000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3900|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:47.7910000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T22:01:47.8360000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|407E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.84|99.44|0.00|3.13|12974858|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010EC0|0|1| +38|2023-10-06T22:01:47.8360000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|86301|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:47.8360000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +261|2023-10-06T22:01:47.4840000-07:00|Change|10FF0001||| +261|2023-10-06T22:01:47.4840000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:01:47.4840000-07:00|Add|40021923||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:01:47.4840000-07:00|40021923|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||82.00|80.30|0.00|0.00| +03|2023-10-06T22:01:47.4840000-07:00|40021924|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||86.00|80.30|0.00|0.00| +261|2023-10-06T22:01:47.4840000-07:00|Change|40021923||||| +261|2023-10-06T22:01:47.4840000-07:00|Add|40021924||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:47.9700000-07:00|40021585|Zeromus|00010EB7|12945098||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:47.9700000-07:00|10FF0003|Gegehi Gehi|73814|73814|4100|10000|||100.76|100.36|0.00|-3.10| +21|2023-10-06T22:01:47.9700000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19712003|49140000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|12974858|40478540|10000|10000|||100.00|80.10|0.00|0.00|78909|83502|10000|10000|||99.02|101.27|0.00|3.08|00010EC1|0|1| +38|2023-10-06T22:01:47.9700000-07:00|40021585|Zeromus|005A5A00|12945098|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T22:01:47.9700000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T22:01:47.9700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78909|83502|10000|10000|0||99.02|101.27|0.00|3.08|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:47.9700000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T22:01:47.4840000-07:00|Change|10FF0003||| +261|2023-10-06T22:01:47.5740000-07:00|Change|40021923||| +261|2023-10-06T22:01:47.5740000-07:00|Change|40021924||| +261|2023-10-06T22:01:47.5740000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T22:01:48.0580000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12945098|40478540|10000|10000|||100.00|80.10|0.00|0.00|78909|83502|10000|10000|||99.02|101.27|0.00|3.10|00010EC2|0|1| +37|2023-10-06T22:01:48.1020000-07:00|40021585|Zeromus|00010EBB|12931413|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +39|2023-10-06T22:01:48.1020000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|300|10000|||100.69|99.66|0.00|-3.11| +38|2023-10-06T22:01:48.1470000-07:00|4002190C|Automaton Queen|005A5A00|0|85668|0|10000|0||118.98|81.54|0.00|-1.65|0|0|0|||| +30|2023-10-06T22:01:48.1470000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002190C|Automaton Queen|00|85668|73814| +37|2023-10-06T22:01:48.1920000-07:00|40021585|Zeromus|00010EBD|12922989|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T22:01:48.1920000-07:00|10FF000A|Dukaro Nezikaro|00010EB8|78909|83502|10000|10000|0||99.02|101.27|0.00|3.10|1E00|0|0|01|040001F1|0|41700000|| +38|2023-10-06T22:01:48.1920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78909|83502|10000|10000|0||99.02|101.27|0.00|3.10|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:47.8020000-07:00|Change|4002190C||||| +261|2023-10-06T22:01:47.8020000-07:00|Change|10FF0004||| +37|2023-10-06T22:01:48.2360000-07:00|40021585|Zeromus|00010EBC|12920535|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T22:01:48.2810000-07:00|40021585|Zeromus|00010EBE|12913703|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T22:01:48.2810000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|35380000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|12922989|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8079|10000|||101.18|99.32|0.00|-3.08|00010EC3|0|1| +38|2023-10-06T22:01:48.2810000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8079|10000|0||101.18|99.32|0.00|-3.08|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:48.2810000-07:00|4C1|Thin Air|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +03|2023-10-06T22:01:48.0370000-07:00|40021925|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||90.00|80.30|0.00|0.00| +03|2023-10-06T22:01:48.0370000-07:00|40021926|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||94.00|80.30|0.00|0.00| +37|2023-10-06T22:01:48.3700000-07:00|40021585|Zeromus|00010EBF|12878871|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +261|2023-10-06T22:01:48.0370000-07:00|Add|40021925||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:48.0370000-07:00|Add|40021926||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:48.0370000-07:00|Change|40021925||| +261|2023-10-06T22:01:48.0370000-07:00|Change|40021926||| +26|2023-10-06T22:01:48.4150000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:01:48.4150000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|36F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12878871|40478540|10000|10000|||100.00|80.10|0.00|0.00|86301|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EC4|0|1| +37|2023-10-06T22:01:48.4590000-07:00|40021585|Zeromus|00010EB3|12818978|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T22:01:48.4600000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.84|99.44|0.00|3.13|129844|129844|10000|10000|||99.84|99.44|0.00|3.13|00010EC5|0|1| +38|2023-10-06T22:01:48.4600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:48.4600000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T22:01:48.5500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12818978|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.84|99.44|0.00|3.13|00010EC6|0|1| +37|2023-10-06T22:01:48.5950000-07:00|40021585|Zeromus|00010EC2|12816486|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +38|2023-10-06T22:01:48.5950000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|300|10000|0||100.69|99.66|0.00|-3.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:48.5950000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T22:01:48.5950000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|300|10000|||100.69|99.66|0.00|-3.11|81541|81541|300|10000|||100.69|99.66|0.00|-3.11|00010EC7|0|1| +37|2023-10-06T22:01:48.6380000-07:00|10FF0007|Kehabiqo Febiqo|00010EC0|113334|129844|10000|10000|0||99.84|99.44|0.00|3.13|1500|0|0|01|01000769|0|C1F00000|| +37|2023-10-06T22:01:48.6380000-07:00|40021585|Zeromus|00010EC0|12816486|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +24|2023-10-06T22:01:48.6830000-07:00|40021585|Zeromus|DoT|0|249F|12816486|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|86301|90216|10000|10000|||99.90|100.33|0.00|3.14| +38|2023-10-06T22:01:48.6830000-07:00|40021585|Zeromus|005A5A00|12807111|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +21|2023-10-06T22:01:48.7280000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40021585|Zeromus|710003|13FB0000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|12816486|40478540|10000|10000|||100.00|80.10|0.00|0.00|78909|83502|10000|10000|||99.08|101.29|0.00|3.09|00010EC8|0|1| +38|2023-10-06T22:01:48.7280000-07:00|40021585|Zeromus|005A5A00|12807111|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:48.7280000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +03|2023-10-06T22:01:48.3430000-07:00|40021927|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||98.00|80.30|0.00|0.10| +261|2023-10-06T22:01:48.3430000-07:00|Add|40021927||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:48.7720000-07:00|40021585|Zeromus|00010EC1|12788403|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|04000CB6|0|41700000|||||| +39|2023-10-06T22:01:48.7720000-07:00|40021918|Carbuncle|77698|77698|10000|10000|||99.78|99.38|0.00|1.01| +38|2023-10-06T22:01:48.7720000-07:00|40021585|Zeromus|005A5A00|12788403|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:48.3430000-07:00|Change|40021927||| +261|2023-10-06T22:01:48.4370000-07:00|Change|40021924||||||||| +37|2023-10-06T22:01:48.9960000-07:00|10FF0007|Kehabiqo Febiqo|00010EC5|113334|129844|10000|10000|0||99.84|99.44|0.00|3.13|1500|0|0|01|01000769|0|41F00000|| +38|2023-10-06T22:01:48.9960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113334|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:49.0410000-07:00|40021585|Zeromus|00010EC4|12774337|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|0300035D|04|40921CA6|||||| +26|2023-10-06T22:01:49.0410000-07:00|35D|Wildfire|4.57|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|04|40478540|90216| +21|2023-10-06T22:01:49.0410000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|151F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12788403|40478540|10000|10000|||100.00|80.10|0.00|0.00|86301|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EC9|0|1| +261|2023-10-06T22:01:48.6540000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:01:49.0850000-07:00|40021585|Zeromus|00010EC6|12770987|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500027E|0|C1A00000|| +20|2023-10-06T22:01:49.0850000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|1.491|100.20|98.84|0.00|-2.99| +261|2023-10-06T22:01:48.6540000-07:00|Change|10FF0006||||||||||||||||||| +261|2023-10-06T22:01:48.6540000-07:00|Change|40021925||||||||| +37|2023-10-06T22:01:49.1290000-07:00|10FF0004|Buhojaqe Zijaqe|00010EC7|81541|81541|2300|10000|0||100.69|99.64|0.00|-3.14|1C00|0|0|0| +261|2023-10-06T22:01:48.7670000-07:00|Add|40021929||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:48.7670000-07:00|Add|4002192A||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:01:48.7670000-07:00|4002192A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||106.00|80.30|0.00|0.00| +03|2023-10-06T22:01:48.7670000-07:00|40021929|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||102.00|80.30|0.00|0.00| +39|2023-10-06T22:01:49.1750000-07:00|10FF0008|Kokosaze Lulusaze|87203|90216|10000|10000|||99.90|100.33|0.00|3.14| +21|2023-10-06T22:01:49.1760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12770987|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||100.30|98.44|0.00|-3.13|00010ECA|0|1| +31|2023-10-06T22:01:49.1760000-07:00|10FF0001||||| +261|2023-10-06T22:01:48.7670000-07:00|Change|4002192A||| +261|2023-10-06T22:01:48.7670000-07:00|Change|40021929||| +261|2023-10-06T22:01:48.7670000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:01:49.2640000-07:00|40021585|Zeromus|00010EC8|12765872|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0500027E|0|41A00000|| +38|2023-10-06T22:01:49.2640000-07:00|40021585|Zeromus|005A5A00|12765872|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:48.8870000-07:00|Change|40021926||||||||| +21|2023-10-06T22:01:49.3530000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|750003|2C670000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|12765872|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4100|10000|||100.76|100.36|0.00|-3.10|00010ECB|0|1| +38|2023-10-06T22:01:49.3530000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4100|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:49.3530000-07:00|7B3|Manafication|6.98|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73814|73814| +20|2023-10-06T22:01:49.4420000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.66|99.29|0.00|3.13| +21|2023-10-06T22:01:49.4870000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|78909|83502|10000|10000|||99.14|101.30|0.00|3.10|78909|83502|10000|10000|||99.14|101.30|0.00|3.10|00010ECC|0|1| +38|2023-10-06T22:01:49.4870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78909|83502|10000|10000|0||99.14|101.30|0.00|3.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:49.4870000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +261|2023-10-06T22:01:49.1160000-07:00|Add|4002192B||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:01:49.1160000-07:00|4002192B|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||110.00|80.30|0.00|0.00| +261|2023-10-06T22:01:49.2160000-07:00|Change|4002192B||| +37|2023-10-06T22:01:49.5770000-07:00|40021585|Zeromus|00010EC3|12752248||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:49.5770000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|3C080000|4|25C58000|0|0|0|0|0|0|0|0|0|0|0|0|12765872|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||100.30|98.44|0.00|-3.13|00010ECD|0|1| +20|2023-10-06T22:01:49.5770000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|101.18|99.32|0.00|-3.08| +38|2023-10-06T22:01:49.5770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6100|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:49.5770000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:01:49.2160000-07:00|Change|40021923||||||||| +261|2023-10-06T22:01:49.2160000-07:00|Change|10FF0001||| +37|2023-10-06T22:01:49.7090000-07:00|40021585|Zeromus|00010ECA|12749927||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:49.7990000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6300|10000|||100.30|98.44|0.00|-3.13| +37|2023-10-06T22:01:49.8430000-07:00|40021585|Zeromus|00010EC9|12744520||||||100.00|80.10|0.00|0.00| +03|2023-10-06T22:01:49.5020000-07:00|4002192D|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|80.30|0.00|0.00| +03|2023-10-06T22:01:49.5020000-07:00|4002192C|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||114.00|80.30|0.00|0.00| +261|2023-10-06T22:01:49.5020000-07:00|Add|4002192C||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:49.5020000-07:00|Add|4002192D||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:01:49.9340000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|23610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12744520|40478540|10000|10000|||100.00|80.10|0.00|0.00|87203|90216|10000|10000|||99.90|100.33|0.00|3.14|00010ECE|0|1| +38|2023-10-06T22:01:49.9340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|87203|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:49.9340000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +261|2023-10-06T22:01:49.5020000-07:00|Change|4002192D||| +261|2023-10-06T22:01:49.5020000-07:00|Change|4002192C||| +37|2023-10-06T22:01:49.9780000-07:00|40021585|Zeromus|00010ECB|12733153||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:49.9780000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|15080000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|78909|83502|10000|10000|||99.14|101.30|0.00|3.10|54201|77430|10000|10000|||102.13|99.99|0.00|-2.48|00010ECF|0|1| +21|2023-10-06T22:01:49.9780000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|78909|83502|10000|10000|||99.14|101.30|0.00|3.10|78909|83502|10000|10000|||99.14|101.30|0.00|3.10|00010ED0|0|1| +38|2023-10-06T22:01:49.9780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78909|83502|10000|10000|0||99.14|101.30|0.00|3.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:49.9780000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +261|2023-10-06T22:01:49.6960000-07:00|Change|10FF000B||||||||||||| +24|2023-10-06T22:01:50.0680000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|EEC|87203|90216|10000|10000|||99.90|100.33|0.00|3.14|10FF0003|Gegehi Gehi|0|73814|73814|4100|10000|||100.76|100.36|0.00|-3.10| +24|2023-10-06T22:01:50.0680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|F28|81541|81541|2300|10000|||100.66|98.77|0.00|-3.10|4002185F|Ruby Carbuncle|0|54201|77430|10000|10000|||102.13|99.99|0.00|-1.75| +21|2023-10-06T22:01:50.0680000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|752003|5D9A0000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|12733153|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7000|10000|||100.11|98.56|0.00|-3.14|00010ED1|0|1| +38|2023-10-06T22:01:50.0680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:50.0680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2300|10000|0||100.66|98.77|0.00|-3.10|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:01:50.1550000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|C4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12733153|40478540|10000|10000|||100.00|80.10|0.00|0.00|87203|90216|10000|10000|||99.90|100.33|0.00|3.14|00010ED2|0|1| +39|2023-10-06T22:01:50.2000000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6900|10000|||100.11|98.56|0.00|-3.14| +21|2023-10-06T22:01:50.2000000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|BFFA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12733153|40478540|10000|10000|||100.00|80.10|0.00|0.00|113334|129844|10000|10000|||99.84|99.44|0.00|3.13|00010ED3|0|1| +38|2023-10-06T22:01:50.2000000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113334|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:01:50.2000000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:01:49.8170000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T22:01:49.8170000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:01:50.2440000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|39540000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|12733153|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8079|10000|||101.18|99.32|0.00|-3.08|00010ED4|0|1| +21|2023-10-06T22:01:50.2440000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|A320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12733153|40478540|10000|10000|||100.00|80.10|0.00|0.00|78909|83502|10000|10000|||99.14|101.30|0.00|3.10|00010ED5|0|1| +37|2023-10-06T22:01:50.3330000-07:00|40021585|Zeromus|00010ECD|12717785||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:50.3330000-07:00|10FF000A|Dukaro Nezikaro|79744|83502|10000|10000|||99.14|101.30|0.00|3.10| +39|2023-10-06T22:01:50.3780000-07:00|10FF000B|Pusu Rosu|79209|79209|7960|10000|||101.18|99.32|0.00|-3.08| +24|2023-10-06T22:01:50.3780000-07:00|10FF0003|Gegehi Gehi|HoT|0|950|73814|73814|4100|10000|||100.76|100.36|0.00|-3.10|10FF0003|Gegehi Gehi|0|73814|73814|4100|10000|||100.76|100.36|0.00|-3.10| +21|2023-10-06T22:01:50.3780000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|38080000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|12733153|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2300|10000|||100.66|98.77|0.00|-3.10|00010ED6|0|1| +38|2023-10-06T22:01:50.3780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4100|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:01:50.4670000-07:00|10FF0007|Kehabiqo Febiqo|114632|129844|10000|10000|||99.84|99.44|0.00|3.13| +24|2023-10-06T22:01:50.4670000-07:00|10FF000B|Pusu Rosu|HoT|0|933|79209|79209|7960|10000|||101.18|99.32|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|7960|10000|||101.18|99.32|0.00|-3.08| +21|2023-10-06T22:01:50.4670000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|250003|F3100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12717785|40478540|10000|10000|||100.00|80.10|0.00|0.00|79744|83502|10000|10000|||99.14|101.30|0.00|3.10|00010ED7|0|1| +38|2023-10-06T22:01:50.4670000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8510|10000|0||101.18|99.32|0.00|-3.08|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:01:50.4670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|79744|83502|10000|10000|0||99.14|101.30|0.00|3.10|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:50.4670000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +30|2023-10-06T22:01:50.4670000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +24|2023-10-06T22:01:50.5560000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|9B5|114632|129844|10000|10000|||99.84|99.44|0.00|3.13|10FF0007|Kehabiqo Febiqo|0|114632|129844|10000|10000|||99.84|99.44|0.00|3.13| +21|2023-10-06T22:01:50.5560000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|155A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12717785|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|100.33|0.00|3.14|00010ED8|0|1| +38|2023-10-06T22:01:50.5560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117117|129844|10000|10000|0||99.84|99.44|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:01:50.6010000-07:00|40021585|Zeromus|00010ECE|12708728|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300035D|05|4040623D|| +26|2023-10-06T22:01:50.6010000-07:00|35D|Wildfire|3.01|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|05|40478540|90216| +24|2023-10-06T22:01:50.6450000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|FDA|129071|129071|6300|10000|||100.30|98.44|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|6300|10000|||100.30|98.44|0.00|-3.13| +38|2023-10-06T22:01:50.6450000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:01:50.2470000-07:00|Change|10FF0001||| +21|2023-10-06T22:01:50.7340000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12708728|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4100|10000|||100.76|100.36|0.00|-3.10|00010ED9|0|1| +37|2023-10-06T22:01:50.7790000-07:00|10FF000A|Dukaro Nezikaro|00010ECF|83502||||||99.14|101.30|0.00|3.10| +37|2023-10-06T22:01:50.7790000-07:00|40021585|Zeromus|00010ED5|12706118||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:50.7790000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-1.16| +21|2023-10-06T22:01:50.8230000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37754003|46D30000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|12708728|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4100|10000|||100.76|100.36|0.00|-3.10|00010EDA|0|1| +38|2023-10-06T22:01:50.8240000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4100|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:50.8240000-07:00|7B3|Manafication|5.51|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +37|2023-10-06T22:01:50.8680000-07:00|40021585|Zeromus|00010ED1|12682156||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:50.8680000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|406F0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|117117|129844|10000|10000|||99.84|99.44|0.00|3.13|12706118|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010EDB|0|1| +37|2023-10-06T22:01:50.9120000-07:00|40021585|Zeromus|00010ED2|12679006||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:51.0020000-07:00|10FF0003|Gegehi Gehi|73814|73814|4300|10000|||100.76|100.36|0.00|-3.10| +261|2023-10-06T22:01:50.5340000-07:00|Change|10FF0003||| +37|2023-10-06T22:01:51.0900000-07:00|40021585|Zeromus|00010ED7|12616782||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:50.6480000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:01:51.1350000-07:00|40021585|Zeromus|00010ED3|12567636||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:51.1350000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2100|10000|||100.66|98.77|0.00|-3.10| +21|2023-10-06T22:01:51.1350000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12679006|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1900|10000|||100.66|98.77|0.00|-3.10|00010EDC|0|1| +37|2023-10-06T22:01:51.1800000-07:00|40021585|Zeromus|00010ED8|12562170||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:51.1800000-07:00|40021585|Zeromus|00010ED6|12547826||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:51.2690000-07:00|40021585|Zeromus|00010ED9|12547791||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:50.8710000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T22:01:51.4030000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12547791|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6900|10000|||99.67|96.73|0.00|-3.04|00010EDD|0|1| +37|2023-10-06T22:01:51.4470000-07:00|40021585|Zeromus|00010EDA|12529660||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:51.4470000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|722003|9EDE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12547791|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EDE|0|1| +21|2023-10-06T22:01:51.4470000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12547791|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||100.30|98.44|0.00|-3.13|00010EDF|0|1| +31|2023-10-06T22:01:51.4470000-07:00|10FF0001||||| +37|2023-10-06T22:01:51.5360000-07:00|40021585|Zeromus|00010ED4|12514984||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:51.5360000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40021585|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|12529660|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6900|10000|||99.63|96.55|0.00|3.04|00010EE0|0|1| +20|2023-10-06T22:01:51.5360000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|101.18|99.32|0.00|-3.08| +38|2023-10-06T22:01:51.5360000-07:00|40021918|Carbuncle|005A5A00|0|77698|0|10000|0||99.78|99.38|0.00|1.01|0|0|0|||| +30|2023-10-06T22:01:51.5360000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|40021918|Carbuncle|00|77698|73814| +261|2023-10-06T22:01:51.1030000-07:00|Change|40021918||||||||| +38|2023-10-06T22:01:51.5790000-07:00|4002192E||005A5A00|66800|69928|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T22:01:51.5810000-07:00|4002192E||005A5A00|66800|69928|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T22:01:51.6700000-07:00|10FF0007|Kehabiqo Febiqo|00010EDB|100622||||||99.84|99.44|0.00|3.13| +37|2023-10-06T22:01:51.6700000-07:00|40021585|Zeromus|00010EDC|12514818||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:51.6700000-07:00|40021585|Zeromus|DoT|0|1BFA|12514984|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||99.14|101.30|0.00|3.10| +38|2023-10-06T22:01:51.6700000-07:00|40021585|Zeromus|005A5A00|12507656|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +20|2023-10-06T22:01:51.8480000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.66|98.77|0.00|-3.10| +261|2023-10-06T22:01:51.3830000-07:00|Change|4002192D||||||||| +261|2023-10-06T22:01:51.3830000-07:00|Change|40021929||||||||| +37|2023-10-06T22:01:51.9370000-07:00|40021585|Zeromus|00010EDD|12507448||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:51.9370000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D5D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12507656|40478540|10000|10000|||100.00|80.10|0.00|0.00|100622|129844|10000|10000|||99.84|99.44|0.00|3.13|00010EE1|0|1| +261|2023-10-06T22:01:51.4840000-07:00|Add|4002192E||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:01:51.4840000-07:00|Remove|4002190C| +37|2023-10-06T22:01:51.9810000-07:00|40021585|Zeromus|00010EDF|12505047||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:51.5740000-07:00|Change|4002192E||| +03|2023-10-06T22:01:51.5740000-07:00|4002192E|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||101.24|97.85|0.00|3.11| +261|2023-10-06T22:01:51.6880000-07:00|Change|10FF000B||||||||||||| +21|2023-10-06T22:01:52.0700000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|1C190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12505047|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EE2|0|1| +21|2023-10-06T22:01:52.0710000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|716003|732E0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|12505047|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||100.30|98.44|0.00|-3.13|00010EE3|0|1| +38|2023-10-06T22:01:52.0710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:52.0710000-07:00|76E|Sword Oath|10.54|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +39|2023-10-06T22:01:52.1580000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.90|100.33|0.00|3.14| +22|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|00010EE4|0|8| +22|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6300|10000|||100.30|98.44|0.00|-3.13|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|00010EE4|1|8| +22|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2100|10000|||100.66|98.77|0.00|-3.10|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|00010EE4|2|8| +22|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|100622|129844|10000|10000|||99.84|99.42|0.00|-3.14|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|00010EE4|3|8| +22|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000B|Pusu Rosu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8510|10000|||101.18|99.32|0.00|-3.08|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|00010EE4|4|8| +22|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.90|100.33|0.00|3.14|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|00010EE4|5|8| +22|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4300|10000|||100.76|100.36|0.00|-3.10|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|00010EE4|6|8| +22|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.14|101.30|0.00|3.10|81809|81809|6900|10000|||99.50|96.03|0.00|3.11|00010EE4|7|8| +21|2023-10-06T22:01:52.2030000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|756003|6DE20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|12505047|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8510|10000|||101.18|99.32|0.00|-3.08|00010EE5|0|1| +261|2023-10-06T22:01:51.8070000-07:00|Change|4002192A||||||| +38|2023-10-06T22:01:52.2030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|100622|129844|10000|10000|0||99.84|99.42|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:01:52.2030000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T22:01:52.2030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:52.2030000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T22:01:52.2030000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6900|10000|19||99.50|96.03|0.00|3.11|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:52.2030000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:01:52.2030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:52.2030000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T22:01:52.2030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2100|10000|0||100.66|98.77|0.00|-3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:52.2030000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T22:01:52.2030000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4300|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:52.2030000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T22:01:52.2030000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8110|10000|0||101.18|99.32|0.00|-3.08|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:52.2030000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +38|2023-10-06T22:01:52.2030000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.14|101.30|0.00|3.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:01:52.2030000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +261|2023-10-06T22:01:51.9240000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T22:01:52.3370000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A756003|AE370000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|12505047|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4300|10000|||100.76|100.36|0.00|-3.10|00010EE6|0|1| +38|2023-10-06T22:01:52.3370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4300|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:52.3370000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +261|2023-10-06T22:01:51.9240000-07:00|Change|4002192B||||||||| +21|2023-10-06T22:01:52.4250000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|ACC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12505047|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.14|101.30|0.00|3.10|00010EE7|0|1| +37|2023-10-06T22:01:52.4700000-07:00|40021585|Zeromus|00010EE1|12501626||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:52.4700000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|712003|31230000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|12505047|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.14|101.30|0.00|3.10|00010EE8|0|1| +37|2023-10-06T22:01:52.6030000-07:00|40021585|Zeromus|00010EDE|12460956|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300035D|06|3F80622A|| +26|2023-10-06T22:01:52.6030000-07:00|35D|Wildfire|1.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|90216| +261|2023-10-06T22:01:52.1610000-07:00|Change|4002192C||||||||| +261|2023-10-06T22:01:52.2580000-07:00|Change|4002192E||| +21|2023-10-06T22:01:52.6480000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|2A3F0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|12501626|40478540|10000|10000|||100.00|80.10|0.00|0.00|100622|129844|10000|10000|||99.84|99.27|0.00|-3.11|00010EE9|0|1| +21|2023-10-06T22:01:52.6920000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|1D780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12460956|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EEA|0|1| +261|2023-10-06T22:01:52.3560000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:01:52.3560000-07:00|Change|400215A3||||||||| +21|2023-10-06T22:01:52.7810000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|56970000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|12460956|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2100|10000|||100.66|98.77|0.00|-3.10|00010EEB|0|1| +20|2023-10-06T22:01:52.8250000-07:00|40021585|Zeromus|8B43|Visceral Whirl|40021585|Zeromus|7.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:01:52.8250000-07:00|400215A3|Zeromus|8B45|Visceral Whirl|400215A3|Zeromus|8.500|119.90|80.10|0.00|-0.79| +20|2023-10-06T22:01:52.8250000-07:00|400215A2|Zeromus|8B44|Visceral Whirl|400215A2|Zeromus|8.500|80.10|80.10|0.00|0.79| +39|2023-10-06T22:01:52.8250000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||100.30|98.44|0.00|-3.13| +21|2023-10-06T22:01:52.8250000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|10B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12460956|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EEC|0|1| +261|2023-10-06T22:01:52.4510000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:01:52.4510000-07:00|Change|10FF0001||| +37|2023-10-06T22:01:52.8700000-07:00|40021585|Zeromus|00010EE2|12453763||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:52.8700000-07:00|40021585|Zeromus|00010EE8|12441184||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:52.9590000-07:00|40021585|Zeromus|00010EE6|12396585||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:52.9590000-07:00|40021585|Zeromus|00010EE7|12393821||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:53.0040000-07:00|10FF0006|Wowobora Gogobora|00010EE4|81809|81809|6900|10000|19||99.50|96.03|0.00|3.11|1B00|0|0|01|0A8F|0|41E9F3B3|| +38|2023-10-06T22:01:53.0040000-07:00|4002192E|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.24|97.85|0.00|3.11|0|0|0|||||||||| +26|2023-10-06T22:01:53.0040000-07:00|30|Well Fed|569.64|10FF0006|Wowobora Gogobora|4002192E|Demi-Bahamut|2964|69928|81809| +26|2023-10-06T22:01:53.0040000-07:00|511|Embolden|11.31|10FF0003|Gegehi Gehi|4002192E|Demi-Bahamut|00|69928|73814| +26|2023-10-06T22:01:53.0040000-07:00|A8F|Searing Light|29.20|10FF0006|Wowobora Gogobora|4002192E|Demi-Bahamut|00|69928|81809| +24|2023-10-06T22:01:53.0490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|9F5|90216|90216|10000|10000|||99.90|100.33|0.00|3.14|10FF0003|Gegehi Gehi|0|73814|73814|4300|10000|||100.76|100.36|0.00|-3.10| +24|2023-10-06T22:01:53.0490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9E8|81541|81541|1700|10000|||100.66|98.77|0.00|-3.10|4002185F|Ruby Carbuncle|0|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03| +38|2023-10-06T22:01:53.0490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:53.0490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1700|10000|0||100.66|98.77|0.00|-3.10|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:01:53.1370000-07:00|10FF0001|Sesuga Sapisuga|00010EE4|129071|129071|6500|10000|0||100.30|98.44|0.00|-3.13|1301|0|0|01|03000A8F|0|41E8E144|| +261|2023-10-06T22:01:52.6550000-07:00|Change|4002192A||||| +261|2023-10-06T22:01:52.7730000-07:00|Change|10FF000B||||||||||||||| +39|2023-10-06T22:01:53.1810000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7100|10000|||99.50|96.03|0.00|3.11| +261|2023-10-06T22:01:52.7730000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:01:53.2700000-07:00|40021585|Zeromus|00010EE9|12383006||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:53.2700000-07:00|10FF0004|Buhojaqe Zijaqe|00010EE4|81541|81541|1700|10000|0||100.66|98.77|0.00|-3.10|1C02|0|0|01|05000A8F|0|41E7D0E1|| +21|2023-10-06T22:01:53.2700000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40021585|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12393821|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1700|10000|||100.66|98.77|0.00|-3.10|00010EED|0|1| +38|2023-10-06T22:01:53.2700000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||102.13|99.99|0.00|-2.99|0|0|0|||||||||| +26|2023-10-06T22:01:53.2700000-07:00|A8F|Searing Light|28.93|10FF0006|Wowobora Gogobora|4002185F|Ruby Carbuncle|00|77430|81809| +261|2023-10-06T22:01:52.8860000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:01:52.8860000-07:00|Change|400215A2||||||||||||| +37|2023-10-06T22:01:53.3140000-07:00|40021585|Zeromus|00010EEA|12375462||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:52.8860000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:01:53.3600000-07:00|40021585|Zeromus|00010EE3|12345976||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:53.3600000-07:00|10FF0001|Sesuga Sapisuga|00010EE3|129071|129071|6900|10000|0||100.30|98.44|0.00|-3.13|1300|0|0|0| +39|2023-10-06T22:01:53.3600000-07:00|10FF000B|Pusu Rosu|79209|79209|8391|10000|||101.18|99.32|0.00|-3.08| +39|2023-10-06T22:01:53.3600000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.14|101.30|0.00|3.10| +24|2023-10-06T22:01:53.3600000-07:00|10FF0003|Gegehi Gehi|HoT|0|1032|73814|73814|4300|10000|||100.76|100.36|0.00|-3.10|10FF0003|Gegehi Gehi|0|73814|73814|4300|10000|||100.76|100.36|0.00|-3.10| +38|2023-10-06T22:01:53.3600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4300|10000|0||100.76|100.36|0.00|-3.10|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:53.4030000-07:00|10FF0007|Kehabiqo Febiqo|00010EE4|100622|129844|10000|10000|0||99.82|99.23|0.00|-3.14|1503|0|0|01|01000A8F|0|41E6BE72|| +21|2023-10-06T22:01:53.4030000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14E70000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|100622|129844|10000|10000|||99.82|99.23|0.00|-3.14|54201|77430|10000|10000|||102.13|99.99|0.00|-2.94|00010EEE|0|1| +261|2023-10-06T22:01:52.9990000-07:00|Change|4002192B||||| +39|2023-10-06T22:01:53.4490000-07:00|10FF0007|Kehabiqo Febiqo|101920|129844|10000|10000|||99.79|99.23|0.00|-3.13| +22|2023-10-06T22:01:53.4490000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|716003|2BDB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12345976|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.14|101.30|0.00|3.10|00010EEF|0|3| +22|2023-10-06T22:01:53.4490000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|712003|21FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12345976|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.14|101.30|0.00|3.10|00010EEF|1|3| +22|2023-10-06T22:01:53.4490000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|14300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12345976|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.14|101.30|0.00|3.10|00010EEF|2|3| +37|2023-10-06T22:01:53.4920000-07:00|40021585|Zeromus|00010EE5|12317846||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:53.4920000-07:00|10FF000B|Pusu Rosu|HoT|0|972|79209|79209|8391|10000|||101.18|99.32|0.00|-3.08|10FF000B|Pusu Rosu|0|79209|79209|8391|10000|||101.18|99.32|0.00|-3.08| +20|2023-10-06T22:01:53.4920000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|101.18|99.32|0.00|-3.08| +38|2023-10-06T22:01:53.4920000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8941|10000|0||101.18|99.32|0.00|-3.08|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:01:53.5370000-07:00|10FF000B|Pusu Rosu|00010EE4|79209|79209|8941|10000|0||101.18|99.32|0.00|-3.08|1804|0|0|01|02000A8F|0|41E5B01C|| +38|2023-10-06T22:01:53.5370000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8941|10000|0||101.18|99.32|0.00|-3.08|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:53.5370000-07:00|9D|Presence of Mind|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T22:01:53.5820000-07:00|40021585|Zeromus|00010EEC|12313567||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:53.5820000-07:00|40021585|Zeromus|00010EEB|12291400||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:53.5820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|F80|101920|129844|10000|10000|||99.77|99.23|0.00|-3.12|10FF0007|Kehabiqo Febiqo|0|101920|129844|10000|10000|||99.77|99.23|0.00|-3.12| +24|2023-10-06T22:01:53.5820000-07:00|40021585|Zeromus|DoT|35D|D89A|12317846|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|90216|90216|10000|10000|||99.90|100.33|0.00|3.14| +38|2023-10-06T22:01:53.5820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105888|129844|10000|10000|0||99.77|99.23|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:01:53.5820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.90|100.33|0.00|3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:53.5820000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T22:01:53.5820000-07:00|40021585|Zeromus|005A5A00|12235950|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:53.5820000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|90216| +261|2023-10-06T22:01:53.2030000-07:00|Change|40021918||||||||| +261|2023-10-06T22:01:53.2030000-07:00|Change|4002192C||||||| +37|2023-10-06T22:01:53.6710000-07:00|10FF0008|Kokosaze Lulusaze|00010EE4|90216|90216|10000|10000|0||99.90|100.33|0.00|3.14|1F05|0|0|01|02000A8F|0|41E49BA1|| +24|2023-10-06T22:01:53.6710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|100D|129071|129071|6900|10000|||100.30|98.44|0.00|-3.13|10FF0001|Sesuga Sapisuga|0|129071|129071|6900|10000|||100.30|98.44|0.00|-3.13| +38|2023-10-06T22:01:53.6710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|0||100.30|98.44|0.00|-3.13|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:01:53.3060000-07:00|Change|40021927||||||||| +21|2023-10-06T22:01:53.7160000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|F980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12235950|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||100.30|98.44|0.00|-3.13|00010EF0|0|1| +38|2023-10-06T22:01:53.7160000-07:00|40021585|Zeromus|005A5A00|12235950|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:53.7160000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +31|2023-10-06T22:01:53.7160000-07:00|10FF0001||||| +39|2023-10-06T22:01:53.7610000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-2.18| +37|2023-10-06T22:01:53.8060000-07:00|10FF0003|Gegehi Gehi|00010EE4|73814|73814|4300|10000|0||100.76|100.36|0.00|-3.10|2306|0|0|01|02000A8F|0|41E38932|| +261|2023-10-06T22:01:53.4920000-07:00|Change|10FF0001||| +261|2023-10-06T22:01:53.4920000-07:00|Change|40021929||||| +261|2023-10-06T22:01:53.4920000-07:00|Change|4002192D||||| +37|2023-10-06T22:01:53.9390000-07:00|10FF000A|Dukaro Nezikaro|00010EE4|83502|83502|10000|10000|0||99.14|101.30|0.00|3.10|1E07|0|0|01|03000A8F|0|41E276C3|| +39|2023-10-06T22:01:53.9830000-07:00|10FF0003|Gegehi Gehi|73814|73814|4500|10000|||100.76|100.36|0.00|-3.10| +21|2023-10-06T22:01:53.9830000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C722003|52EF0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|12235950|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|100.33|0.00|3.14|00010EF1|0|1| +21|2023-10-06T22:01:54.0280000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|754003|661F0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|12235950|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7100|10000|||99.22|97.09|0.00|-0.45|00010EF2|0|1| +261|2023-10-06T22:01:53.5890000-07:00|Change|10FF0003||| +261|2023-10-06T22:01:53.5890000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:01:53.7060000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:01:54.0740000-07:00|40021585|Zeromus|00010EED|12235950|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010004C5|0|41700000|| +26|2023-10-06T22:01:54.0740000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +39|2023-10-06T22:01:54.1170000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1900|10000|||100.43|98.61|0.00|-2.11| +37|2023-10-06T22:01:54.1620000-07:00|40021585|Zeromus|00010EEF|12224723||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:54.1630000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|56E50000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|12235950|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8941|10000|||101.18|99.32|0.00|-3.08|00010EF3|0|1| +37|2023-10-06T22:01:54.2070000-07:00|10FF0007|Kehabiqo Febiqo|00010EEE|111239||||||98.35|99.26|0.00|-3.11| +21|2023-10-06T22:01:54.2070000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12235950|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4500|10000|||100.76|100.36|0.00|-3.10|00010EF4|0|1| +261|2023-10-06T22:01:53.9340000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:01:54.2510000-07:00|40021585|Zeromus|00010EF0|12220731||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:54.2960000-07:00|40021585|Zeromus|00010EEF|12212028||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:54.2960000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111239|129844|10000|10000|0||98.37|99.26|0.00|-3.11|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:54.2960000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:01:54.4300000-07:00|40021585|Zeromus|00010EEF|12206860||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:54.5640000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|DA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12206860|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6800|10000|||99.17|97.28|-0.02|3.09|00010EF5|0|1| +21|2023-10-06T22:01:54.5640000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40021585|Zeromus|156003|C5E70000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|12206860|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4500|10000|||100.72|100.36|0.00|-3.12|00010EF6|0|1| +38|2023-10-06T22:01:54.5640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4100|10000|0||100.72|100.36|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:01:54.5640000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:01:54.2500000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:01:54.2500000-07:00|Change|4002192E||||||||||| +21|2023-10-06T22:01:54.6090000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|5B620000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|12206860|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6900|10000|||100.05|98.28|0.00|3.09|00010EF7|0|1| +21|2023-10-06T22:01:54.6090000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|D250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12206860|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.14|101.30|0.00|3.10|00010EF8|0|1| +38|2023-10-06T22:01:54.6090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|0||100.05|98.28|0.00|3.09|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:54.6090000-07:00|76E|Sword Oath|8.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T22:01:54.6530000-07:00|40021585|Zeromus|00010EF2|12180717||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:54.6530000-07:00|40021585|Zeromus|DoT|0|178C|12206860|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||99.14|101.30|0.00|3.10| +38|2023-10-06T22:01:54.6530000-07:00|40021585|Zeromus|005A5A00|12174689|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +21|2023-10-06T22:01:54.6980000-07:00|4002192E|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|16B70000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|12174689|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07|00010EF9|0|1| +37|2023-10-06T22:01:54.7420000-07:00|40021585|Zeromus|00010EF4|12174631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:54.7420000-07:00|10FF0003|Gegehi Gehi|00010EF4|73814|73814|4100|10000|0||100.44|100.34|0.00|3.12|2300|0|0|01|030004D2|0|C1F00000|| +37|2023-10-06T22:01:54.7870000-07:00|40021585|Zeromus|00010EF1|12153400||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:54.7870000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|24C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12174689|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.92|100.53|0.00|0.89|00010EFA|0|1| +261|2023-10-06T22:01:54.5160000-07:00|Change|4002192A||||||||| +37|2023-10-06T22:01:55.1000000-07:00|40021585|Zeromus|00010EF5|12153182||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:55.1440000-07:00|40021585|Zeromus|00010EF8|12149817||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:55.1440000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.93|100.62|0.00|3.14| +21|2023-10-06T22:01:55.1440000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|3ACD0000|143E|340000|4|19B38000|11B|2A8000|0|0|0|0|0|0|0|0|12153400|40478540|10000|10000|||100.00|80.10|0.00|0.00|111239|129844|10000|10000|||101.05|95.91|0.00|2.99|00010EFB|0|1| +261|2023-10-06T22:01:54.7550000-07:00|Change|10FF000B||||||||||||||||||||||| +21|2023-10-06T22:01:55.2340000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12153400|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1900|10000|||99.34|97.78|0.00|-1.98|00010EFC|0|1| +261|2023-10-06T22:01:54.8760000-07:00|Change|40021923||||||||| +21|2023-10-06T22:01:55.3240000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|DE50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12149817|40478540|10000|10000|||100.00|80.10|0.00|0.00|111239|129844|10000|10000|||101.21|95.07|0.00|-3.06|00010EFD|0|1| +261|2023-10-06T22:01:54.9920000-07:00|Change|4002192C||||||||| +261|2023-10-06T22:01:54.9920000-07:00|Change|40021927||||||||| +37|2023-10-06T22:01:55.4580000-07:00|40021585|Zeromus|00010EF3|12127572||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:55.4580000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|1ADF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12149817|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.97|100.63|0.00|2.86|00010EFE|0|1| +21|2023-10-06T22:01:55.5040000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|CB30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12127572|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.01|100.63|0.00|-3.14|00010EFF|0|1| +04|2023-10-06T22:01:55.2030000-07:00|40021918|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.90|99.14|0.00|1.56| +261|2023-10-06T22:01:55.2030000-07:00|Remove|40021918| +37|2023-10-06T22:01:55.5920000-07:00|40021585|Zeromus|00010EFA|12118155||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:55.5920000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|2ECB0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|12127572|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.14|101.24|0.00|3.08|00010F00|0|1| +261|2023-10-06T22:01:55.3030000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:01:55.3970000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:01:55.7260000-07:00|40021585|Zeromus|00010EF9|12112340||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:55.7700000-07:00|40021585|Zeromus|00010EFC|12112166||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:55.8140000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7100|10000|||102.92|94.11|0.00|2.72| +38|2023-10-06T22:01:55.8140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|0||102.92|94.11|0.00|2.72|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:55.8140000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:01:55.8580000-07:00|40021585|Zeromus|00010EFD|12108609||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:55.9030000-07:00|40021585|Zeromus|00010EF7|12085215||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:55.9030000-07:00|10FF0001|Sesuga Sapisuga|00010EF7|129071|129071|7500|10000|0||103.21|93.50|0.00|2.64|1300|0|0|0| +21|2023-10-06T22:01:55.9030000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|2B130000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|12108609|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1900|10000|||100.29|96.70|0.00|2.36|00010F01|0|1| +261|2023-10-06T22:01:55.4870000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:01:55.9920000-07:00|40021585|Zeromus|00010EF6|12034552||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:55.9920000-07:00|10FF0003|Gegehi Gehi|00010EF6|73814|73814|4100|10000|0||97.65|100.57|0.00|2.79|2300|0|0|01|030004D2|0|41F00000|| +37|2023-10-06T22:01:55.9920000-07:00|40021585|Zeromus|00010F00|12022573||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:55.9920000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|CFD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|12085215|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||103.50|92.98|0.00|2.63|00010F02|0|1| +38|2023-10-06T22:01:55.9920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4100|10000|0||97.65|100.57|0.00|2.79|0|0|0||||||||||||||||||||||||| +31|2023-10-06T22:01:55.9920000-07:00|10FF0001||||| +261|2023-10-06T22:01:55.6750000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:01:55.6750000-07:00|Change|40021924||||||||| +38|2023-10-06T22:01:56.0370000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4100|10000|0||97.81|100.86|0.00|2.49|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:01:56.0370000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T22:01:56.0810000-07:00|40021585|Zeromus|00010EFE|12015694||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:01:56.0810000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|986|90216|90216|10000|10000|||100.66|97.63|-0.01|3.09|10FF0003|Gegehi Gehi|0|73814|73814|4100|10000|||97.81|100.86|0.00|2.49| +24|2023-10-06T22:01:56.0810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|9B9|81541|81541|1500|10000|||101.14|96.56|0.00|-3.10|4002185F|Ruby Carbuncle|0|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03| +38|2023-10-06T22:01:56.0810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.66|97.63|-0.01|3.09|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:56.0810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|0||101.14|96.56|0.00|-3.10|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:01:56.1700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1500|10000|0||101.14|96.56|0.00|-3.10|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:56.1700000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +39|2023-10-06T22:01:56.2140000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7000|10000|||100.96|94.47|0.00|2.20| +261|2023-10-06T22:01:55.7690000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:01:56.2590000-07:00|40021585|Zeromus|00010EFF|12012443||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:01:56.3030000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8541|10000|0||103.23|90.44|0.00|2.63|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:56.3030000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +39|2023-10-06T22:01:56.3480000-07:00|10FF000B|Pusu Rosu|79209|79209|8822|10000|||103.23|90.44|0.00|2.63| +39|2023-10-06T22:01:56.3480000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.10|98.23|0.00|2.94| +261|2023-10-06T22:01:56.1200000-07:00|Change|10FF0007||||||||| +38|2023-10-06T22:01:56.4370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111239|129844|10000|10000|0||103.94|89.88|0.00|3.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:56.4370000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +261|2023-10-06T22:01:56.1200000-07:00|Change|4002192A||||||||| +39|2023-10-06T22:01:56.4810000-07:00|10FF0007|Kehabiqo Febiqo|112537|129844|10000|10000|||103.94|89.88|0.00|3.00| +21|2023-10-06T22:01:56.4810000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|6B070000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|12012443|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.97|96.30|0.00|2.75|00010F03|0|1| +38|2023-10-06T22:01:56.4810000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9372|10000|0||103.75|89.97|0.00|2.38|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:56.5260000-07:00|40021585|Zeromus|00010F02|12009118||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:56.5260000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|506D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|12012443|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7000|10000|||102.47|93.02|0.00|2.38|00010F04|0|1| +261|2023-10-06T22:01:56.2140000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T22:01:56.2140000-07:00|Change|10FF0004||||||||| +38|2023-10-06T22:01:56.5700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|0||105.33|89.54|0.00|2.73|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:56.5700000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +21|2023-10-06T22:01:56.6140000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14B20000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|112537|129844|10000|10000|||104.43|89.51|0.00|3.02|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010F05|0|1| +37|2023-10-06T22:01:56.6590000-07:00|40021585|Zeromus|00010EFB|11994065||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:56.6590000-07:00|10FF0007|Kehabiqo Febiqo|00010EFB|119116||||||104.43|89.51|0.00|3.02| +26|2023-10-06T22:01:56.7040000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T22:01:56.7040000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|12CE0000|104|7078000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|12009118|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1500|10000|||102.92|92.82|0.00|2.61|00010F06|0|1| +38|2023-10-06T22:01:56.7040000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||102.51|95.70|0.00|-2.98|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:01:56.7040000-07:00|13B|Whispering Dawn|0.00|4002185F|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +261|2023-10-06T22:01:56.3120000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:01:56.3120000-07:00|Change|10FF0003||||||||| +39|2023-10-06T22:01:56.7480000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-3.09| +21|2023-10-06T22:01:56.7930000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|10870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11994065|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||101.45|94.92|0.00|2.74|00010F07|0|1| +37|2023-10-06T22:01:56.8370000-07:00|40021585|Zeromus|00010F01|11983038||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:56.5070000-07:00|Change|40021926||||||||| +261|2023-10-06T22:01:56.6050000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:01:56.9700000-07:00|10FF0003|Gegehi Gehi|73814|73814|4300|10000|||94.85|99.11|0.00|-3.08| +261|2023-10-06T22:01:56.6050000-07:00|Change|40021923||||||||| +261|2023-10-06T22:01:56.6050000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:01:56.6050000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:01:56.6050000-07:00|Change|4002192C||||||||| +261|2023-10-06T22:01:56.6050000-07:00|Change|40021925||||||||| +261|2023-10-06T22:01:56.7210000-07:00|Change|40021927||||||||| +21|2023-10-06T22:01:57.0600000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|754003|878A0000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|11983038|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4300|10000|||94.18|97.90|0.00|-2.88|00010F08|0|1| +39|2023-10-06T22:01:57.1040000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1700|10000|||103.79|91.22|0.00|-2.81| +37|2023-10-06T22:01:57.1500000-07:00|40021585|Zeromus|00010F04|11962449||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:57.1500000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||102.43|92.71|0.00|2.72|83502|83502|10000|10000|||102.43|92.71|0.00|2.72|00010F09|0|1| +38|2023-10-06T22:01:57.1500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||102.43|92.71|0.00|2.72|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:01:57.1500000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|83502|83502| +26|2023-10-06T22:01:57.1500000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +38|2023-10-06T22:01:57.1950000-07:00|40021932||005A5A00|76288|79156|10000|10000|0||||||0|0|0|||||||||| +21|2023-10-06T22:01:57.1950000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2D780000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|11983038|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||106.19|86.39|0.00|2.94|00010F0A|0|1| +38|2023-10-06T22:01:57.1950000-07:00|40021932||005A5A00|76288|79156|10000|10000|0||||||0|0|0|||||||||| +38|2023-10-06T22:01:57.1950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7500|10000|0||106.19|86.39|0.00|2.94|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:57.1950000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T22:01:57.2830000-07:00|40021585|Zeromus|00010F03|11935050||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:57.3270000-07:00|40021585|Zeromus|00010F07|11930819||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:57.3270000-07:00|10FF000A|Dukaro Nezikaro|00010F07|83502|83502|10000|10000|0||103.17|91.56|0.00|2.67|1E00|0|0|02|040007A2|05|C1F00000|||||| +37|2023-10-06T22:01:57.4170000-07:00|10FF0007|Kehabiqo Febiqo|00010F05|124414||||||106.26|85.91|0.00|3.11| +261|2023-10-06T22:01:57.0710000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:01:57.0710000-07:00|Change|10FF0007||||||||| +39|2023-10-06T22:01:57.5520000-07:00|4002192E|Demi-Bahamut|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07| +03|2023-10-06T22:01:57.1700000-07:00|40021932|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||104.50|89.03|0.00|-0.41| +261|2023-10-06T22:01:57.1700000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:01:57.1700000-07:00|Add|40021932||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:01:57.5960000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|43DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11930819|40478540|10000|10000|||100.00|80.10|0.00|0.00|124414|129844|10000|10000|||106.47|85.23|0.00|-3.06|00010F0B|0|1| +20|2023-10-06T22:01:57.5960000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|105.66|85.54|0.00|3.10| +261|2023-10-06T22:01:57.1700000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:01:57.1700000-07:00|Change|40021932||||| +24|2023-10-06T22:01:57.6850000-07:00|40021585|Zeromus|DoT|0|16BB|11930819|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||103.97|90.00|0.00|2.68| +21|2023-10-06T22:01:57.6850000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11930819|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6700|10000|||106.17|87.69|0.00|2.40|00010F0C|0|1| +21|2023-10-06T22:01:57.6850000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11930819|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3900|10000|||93.20|94.91|0.00|-3.07|00010F0D|0|1| +38|2023-10-06T22:01:57.6850000-07:00|40021585|Zeromus|005A5A00|11925000|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T22:01:57.2660000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:01:57.2660000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:01:57.7300000-07:00|40021585|Zeromus|00010F06|11920186||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:57.2660000-07:00|Change|40021929||||||||| +261|2023-10-06T22:01:57.3610000-07:00|Change|40021924||||||||| +21|2023-10-06T22:01:57.8640000-07:00|4002192E|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|752003|24510000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|11920186|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07|00010F0E|0|1| +37|2023-10-06T22:01:57.9070000-07:00|10FF000A|Dukaro Nezikaro|00010F09|83502|83502|10000|10000|0||104.68|88.41|0.00|2.72|1E00|0|0|02|040007A2|05|41F00000|||||| +38|2023-10-06T22:01:57.9070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||104.68|88.41|0.00|2.72|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:01:57.4510000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:01:57.9960000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40021585|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|11920186|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||105.04|87.57|0.00|2.73|00010F0F|0|1| +38|2023-10-06T22:01:57.9960000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||105.04|87.57|0.00|2.73|0|0|0||||||||||||||||||| +30|2023-10-06T22:01:57.9960000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T22:01:57.6440000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T22:01:58.0850000-07:00|40021932|Bunshin|64AF|Phantom Kamaitachi|40021585|Zeromus|352003|79C10000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|11920186|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||105.97|85.24|0.00|-2.28|00010F10|0|1| +261|2023-10-06T22:01:57.6440000-07:00|Change|40021932||||||||| +39|2023-10-06T22:01:58.1740000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||109.18|88.98|0.00|2.51| +21|2023-10-06T22:01:58.1740000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11920186|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||109.18|88.98|0.00|2.51|00010F11|0|1| +261|2023-10-06T22:01:57.7600000-07:00|Change|4002192A||||||||| +37|2023-10-06T22:01:58.2180000-07:00|40021585|Zeromus|00010F0B|11902811||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:58.2180000-07:00|40021585|Zeromus|00010F0C|11902643||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:58.2180000-07:00|40021585|Zeromus|00010F0D|11902595||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:58.2640000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11920186|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7500|10000|||106.82|83.22|0.00|2.96|00010F12|0|1| +31|2023-10-06T22:01:58.2640000-07:00|10FF0001||||| +21|2023-10-06T22:01:58.3540000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11902595|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1700|10000|||106.79|85.09|0.00|-3.04|00010F13|0|1| +261|2023-10-06T22:01:57.9900000-07:00|Change|10FF0003||||||||| +20|2023-10-06T22:01:58.4430000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|106.40|84.61|-0.02|-2.88| +37|2023-10-06T22:01:58.4870000-07:00|40021585|Zeromus|00010F0A|11890955||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:58.4870000-07:00|10FF0001|Sesuga Sapisuga|00010F0A|129071|129071|7900|10000|0||106.82|83.22|0.00|2.96|1300|0|0|0| +261|2023-10-06T22:01:57.9900000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:01:58.1090000-07:00|Change|4002192D||||||||| +21|2023-10-06T22:01:58.5310000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|5B540000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|11902595|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9372|10000|||105.49|84.70|0.00|-2.27|00010F14|0|1| +261|2023-10-06T22:01:58.1090000-07:00|Change|40021926||||||||| +261|2023-10-06T22:01:58.2060000-07:00|Change|40021923||||||||| +261|2023-10-06T22:01:58.2060000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:01:58.2060000-07:00|Change|4002192C||||||||| +21|2023-10-06T22:01:58.7090000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11890955|40478540|10000|10000|||100.00|80.10|0.00|0.00|124414|129844|10000|10000|||106.58|84.82|0.00|-2.19|00010F15|0|1| +261|2023-10-06T22:01:58.3070000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:01:58.3070000-07:00|Change|40021927||||||||| +37|2023-10-06T22:01:58.7980000-07:00|40021585|Zeromus|00010F12|11889018||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:01:58.7980000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||106.82|83.22|0.00|2.96| +37|2023-10-06T22:01:58.8870000-07:00|40021585|Zeromus|00010F0E|11879721||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:58.8870000-07:00|40021585|Zeromus|00010F13|11879553||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:58.8870000-07:00|40021585|Zeromus|00010F08|11844855||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:58.9320000-07:00|40021585|Zeromus|00010F11|11842221||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:58.9770000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|21B50000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|11844855|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||109.47|88.68|0.00|3.09|00010F16|0|1| +21|2023-10-06T22:01:58.9770000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|750003|53710000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|11844855|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6700|10000|||105.15|83.04|0.00|-2.88|00010F17|0|1| +21|2023-10-06T22:01:58.9770000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|11320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11844855|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||106.00|84.43|0.00|3.12|00010F18|0|1| +261|2023-10-06T22:01:58.4940000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:01:58.6120000-07:00|Change|10FF000B||||||||||||||||||||| +39|2023-10-06T22:01:59.1990000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6600|10000|||105.06|82.90|0.00|-2.07| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|4BF20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11842221|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|0|9| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|327C0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|1|9| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|306D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||106.00|84.43|0.00|3.12|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|2|9| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|4|30E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1700|10000|||105.30|83.30|0.00|-2.12|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|3|9| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|326F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|124414|129844|10000|10000|||106.58|84.82|0.00|-2.19|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|4|9| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|200004|4D980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6400|10000|||105.06|82.90|0.00|-2.07|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|5|9| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|313F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8100|10000|||106.82|83.22|0.00|2.96|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|6|9| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|30710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||110.46|87.70|0.00|-2.20|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|7|9| +22|2023-10-06T22:01:59.1990000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|307F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3900|10000|||101.98|93.87|0.00|1.45|79209|79209|8972|10000|||105.49|84.67|0.00|-2.67|00010F19|8|9| +37|2023-10-06T22:01:59.2450000-07:00|40021585|Zeromus|00010F15|11838776||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:58.8410000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:01:58.8410000-07:00|Change|40021925||||||||| +39|2023-10-06T22:01:59.3320000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||106.00|84.43|0.00|3.12| +39|2023-10-06T22:01:59.3770000-07:00|10FF000B|Pusu Rosu|79209|79209|9253|10000|||105.55|84.42|0.00|3.14| +21|2023-10-06T22:01:59.3770000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|39AB0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|11838776|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1700|10000|||105.30|83.30|0.00|-2.12|00010F1A|0|1| +261|2023-10-06T22:01:58.9580000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:01:58.9580000-07:00|Change|40021929||||||||| +261|2023-10-06T22:01:58.9580000-07:00|Change|40021924||||||||| +39|2023-10-06T22:01:59.4660000-07:00|10FF0007|Kehabiqo Febiqo|125712|129844|10000|10000|||106.58|84.82|0.00|-2.19| +261|2023-10-06T22:01:59.0720000-07:00|Change|10FF0001||||||||||| +38|2023-10-06T22:01:59.4660000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9803|10000|0||105.63|84.18|0.00|3.07|0|0|0||||||||||||||||||| +37|2023-10-06T22:01:59.5100000-07:00|40021585|Zeromus|00010F18|11834374||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:59.6000000-07:00|40021585|Zeromus|00010F17|11813013||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:59.6450000-07:00|40021585|Zeromus|00010F10|11781844||||||100.00|80.10|0.00|0.00| +26|2023-10-06T22:01:59.6450000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T22:01:59.6450000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|754003|4D940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11838776|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6600|10000|||105.06|82.87|0.00|-2.07|00010F1B|0|1| +21|2023-10-06T22:01:59.6900000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|22810000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|11781844|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||106.82|83.22|0.00|-2.00|00010F1C|0|1| +261|2023-10-06T22:01:59.2550000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:01:59.7340000-07:00|40021585|Zeromus|00010F16|11773215||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:59.7340000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|752003|BDE70000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|11781844|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3900|10000|||105.21|94.27|0.00|1.45|00010F1D|0|1| +39|2023-10-06T22:01:59.7800000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03| +37|2023-10-06T22:01:59.8230000-07:00|40021585|Zeromus|00010F14|11749835||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:01:59.8680000-07:00|40021585|Zeromus|00010F19|11730393||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:01:59.8680000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22260000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|125712|129844|10000|10000|||106.58|84.82|0.00|-2.19|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010F1E|0|1| +261|2023-10-06T22:01:59.3460000-07:00|Change|4002192A||||||||| +37|2023-10-06T22:02:00.0010000-07:00|10FF000B|Pusu Rosu|00010F19|79209|79209|10000|10000|0||105.88|83.42|0.00|2.84|1801|0|0|0| +39|2023-10-06T22:02:00.0010000-07:00|10FF0003|Gegehi Gehi|73814|73814|3700|10000|||107.07|93.74|0.00|-2.72| +26|2023-10-06T22:02:00.0010000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T22:02:00.0010000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|752003|1DAA0000|104|B168000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|11730393|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||105.27|83.27|0.00|-2.55|00010F1F|0|1| +261|2023-10-06T22:01:59.5480000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:01:59.5480000-07:00|Change|4002192B||||||||| +261|2023-10-06T22:01:59.6620000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:01:59.6620000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:02:00.0470000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|1C400000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|11730393|40478540|10000|10000|||100.00|80.10|0.00|0.00|125712|129844|10000|10000|||106.58|84.82|0.00|-2.19|00010F20|0|1| +20|2023-10-06T22:02:00.0470000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|105.88|83.42|0.00|2.84| +39|2023-10-06T22:02:00.1340000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1500|10000|||105.27|83.27|0.00|-2.03| +37|2023-10-06T22:02:00.1780000-07:00|40021585|Zeromus|00010F1A|11715630||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:01:59.7810000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:01:59.7810000-07:00|Change|4002192D||||||||| +21|2023-10-06T22:02:00.2670000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|1F310000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|11715630|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||104.12|82.80|0.00|-2.37|00010F21|0|1| +38|2023-10-06T22:02:00.2670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||104.12|82.80|0.00|-2.37|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:00.2670000-07:00|7A2|Bunshin|27.60|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|83502|83502| +261|2023-10-06T22:01:59.7810000-07:00|Change|40021926||||||||| +21|2023-10-06T22:02:00.3560000-07:00|40021932|Bunshin|4405|Spinning Edge|40021585|Zeromus|714003|1AEB0000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|11715630|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||104.35|82.96|0.00|-2.15|00010F22|0|1| +261|2023-10-06T22:01:59.8980000-07:00|Change|40021923||||||||| +261|2023-10-06T22:01:59.8980000-07:00|Change|4002192C||||||||| +37|2023-10-06T22:02:00.4000000-07:00|10FF0007|Kehabiqo Febiqo|00010F19|129844||||||106.58|84.82|0.00|-2.19| +261|2023-10-06T22:02:00.0160000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:02:00.0160000-07:00|Change|40021927||||||||| +37|2023-10-06T22:02:00.4450000-07:00|40021585|Zeromus|00010F1C|11706797||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:00.4450000-07:00|10FF0001|Sesuga Sapisuga|00010F1C|129071|129071|9100|10000|0||106.82|83.22|0.00|-2.00|1300|0|0|0| +261|2023-10-06T22:02:00.0160000-07:00|Change|10FF0001||| +21|2023-10-06T22:02:00.5340000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|9660000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11706797|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9100|10000|||106.82|83.22|0.00|-2.00|00010F23|0|1| +31|2023-10-06T22:02:00.5340000-07:00|10FF0001||||| +37|2023-10-06T22:02:00.5770000-07:00|40021585|Zeromus|00010F20|11699565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:00.5770000-07:00|40021585|Zeromus|00010F1B|11679705||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:00.5770000-07:00|4002192E|Demi-Bahamut|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07| +37|2023-10-06T22:02:00.6680000-07:00|40021585|Zeromus|00010F21|11671720||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:00.6680000-07:00|40021585|Zeromus|DoT|0|17CA|11679705|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||104.29|82.91|0.00|-2.15| +21|2023-10-06T22:02:00.6680000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|756003|831D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11679705|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6600|10000|||105.06|82.87|0.00|-2.07|00010F24|0|1| +38|2023-10-06T22:02:00.6680000-07:00|40021585|Zeromus|005A5A00|11665630|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T22:02:00.6680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6600|10000|19||105.06|82.87|0.00|-2.07|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:00.6680000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +261|2023-10-06T22:02:00.3150000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:02:00.7580000-07:00|40021585|Zeromus|00010F22|11658739||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:00.8030000-07:00|40021585|Zeromus|8B43|Visceral Whirl|40021585|Zeromus|1B|8B438000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11658739|40478540|10000|10000|||100.00|80.10|0.00|0.00|11658739|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010F25|0|1| +21|2023-10-06T22:02:00.8470000-07:00|4002192B|Toxic Bubble|8B67|Burst|10FF0003|Gegehi Gehi|3|39AA0000|100140E|6FD0000|E|5E30000|1B|8B678000|0|0|0|0|0|0|0|0|73814|73814|3700|10000|||110.06|90.06|0.00|2.36|69200|69200|10000|10000|||109.97|87.46|0.00|0.00|00010F26|0|1| +21|2023-10-06T22:02:00.8470000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|FFA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11658739|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||112.64|81.28|0.00|-2.20|00010F27|0|1| +21|2023-10-06T22:02:00.8470000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|11A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11658739|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6600|10000|||105.06|82.87|0.00|-2.07|00010F28|0|1| +20|2023-10-06T22:02:00.8470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|103.99|81.79|0.00|-2.17| +261|2023-10-06T22:02:00.4120000-07:00|Change|40021585||||| +21|2023-10-06T22:02:00.9800000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|756003|6C600000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|11658739|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||105.88|83.42|0.00|-2.08|00010F29|0|1| +261|2023-10-06T22:02:00.5030000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:02:00.5940000-07:00|Change|40021925||||||||| +37|2023-10-06T22:02:01.0250000-07:00|40021585|Zeromus|00010F1F|11651145||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:01.0260000-07:00|4002192E|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|750003|14D30000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|11658739|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07|00010F2A|0|1| +37|2023-10-06T22:02:01.0690000-07:00|40021585|Zeromus|00010F23|11648739||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:00.5940000-07:00|Change|40021929||||||||| +261|2023-10-06T22:02:00.7100000-07:00|Change|40021924||||||||| +261|2023-10-06T22:02:00.7100000-07:00|Change|10FF0003||||||||| +39|2023-10-06T22:02:01.1580000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||110.54|81.61|0.00|-1.50| +21|2023-10-06T22:02:01.1580000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11648739|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3700|10000|||109.93|88.41|0.00|2.26|00010F2B|0|1| +21|2023-10-06T22:02:01.1580000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|15520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11648739|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||104.33|82.93|0.00|-2.15|00010F2C|0|1| +37|2023-10-06T22:02:01.2920000-07:00|10FF0003|Gegehi Gehi|00010F26|59052|73814|3700|10000|0||109.49|87.97|0.00|2.21|2300|0|0|02|010006FD|01|42700000|||||| +26|2023-10-06T22:02:01.2920000-07:00|6FD|Vulnerability Up|60.00|4002192B|Toxic Bubble|10FF0003|Gegehi Gehi|01|73814|69200| +26|2023-10-06T22:02:01.2920000-07:00|5E3|Pollen|15.00|4002192B|Toxic Bubble|10FF0003|Gegehi Gehi|00|73814|69200| +37|2023-10-06T22:02:01.2920000-07:00|40021585|Zeromus|00010F1D|11600124||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:01.3810000-07:00|40021585|Zeromus|00010F28|11599842||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:01.0540000-07:00|Change|10FF000B||||||||||||||||| +21|2023-10-06T22:02:01.4700000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C726003|687D0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|11599842|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||108.77|81.99|0.00|-1.40|00010F2D|0|1| +21|2023-10-06T22:02:01.4700000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|754003|66640000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|11599842|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6600|10000|||105.24|83.08|0.00|0.32|00010F2E|0|1| +261|2023-10-06T22:02:01.0540000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:01.6030000-07:00|40021585|Zeromus|00010F27|11595752||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:01.6030000-07:00|40021585|Zeromus|00010F24|11562187||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:01.6030000-07:00|400215A3|Zeromus|8B45|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||119.90|80.10|0.00|-0.79|00010F2F|0|0| +21|2023-10-06T22:02:01.6030000-07:00|400215A2|Zeromus|8B44|Visceral Whirl|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|80.10|0.00|0.79|00010F30|0|0| +261|2023-10-06T22:02:01.1440000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T22:02:01.1440000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:02:01.1440000-07:00|Change|4002192A||||||||| +37|2023-10-06T22:02:01.6940000-07:00|40021585|Zeromus|00010F2B|11562157||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:01.6940000-07:00|40021585|Zeromus|00010F2C|11556699||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:01.2400000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T22:02:01.7820000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|38950000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|11556699|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1500|10000|||103.87|81.65|0.00|-1.95|00010F31|0|1| +39|2023-10-06T22:02:01.8280000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9300|10000|||106.82|83.22|0.00|-2.00| +261|2023-10-06T22:02:01.3380000-07:00|Change|400215A0||||||||| +261|2023-10-06T22:02:01.3380000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:02:01.3380000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:02:01.3380000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:02:01.3380000-07:00|Change|10FF0001||| +261|2023-10-06T22:02:01.4340000-07:00|Change|10FF0008||||||||| +20|2023-10-06T22:02:01.9160000-07:00|4002159C|Zeromus|8B49|Miasmic Blast|4002159C|Zeromus|7.700|105.00|100.00|0.00|0.00| +20|2023-10-06T22:02:01.9160000-07:00|4002159D|Zeromus|8CF8|unknown_8cf8|4002159D|Zeromus|7.700|95.00|100.00|0.00|0.00| +20|2023-10-06T22:02:01.9160000-07:00|4002159E|Zeromus|8B49|Miasmic Blast|4002159E|Zeromus|7.700|105.00|100.00|0.00|0.00| +20|2023-10-06T22:02:01.9160000-07:00|4002159F|Zeromus|8CF8|unknown_8cf8|4002159F|Zeromus|7.700|95.00|100.00|0.00|0.00| +20|2023-10-06T22:02:01.9160000-07:00|400215A0|Zeromus|8B49|Miasmic Blast|400215A0|Zeromus|7.700|105.00|100.00|0.00|0.00| +20|2023-10-06T22:02:01.9160000-07:00|400215A1|Zeromus|8CF8|unknown_8cf8|400215A1|Zeromus|7.700|95.00|100.00|0.00|0.00| +21|2023-10-06T22:02:01.9160000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|416A0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||106.58|84.82|0.00|-2.19|11556699|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010F32|0|1| +261|2023-10-06T22:02:01.4340000-07:00|Change|4002159E||||||||||||||||| +261|2023-10-06T22:02:01.4340000-07:00|Change|4002159F||||||||||||||||| +261|2023-10-06T22:02:01.4340000-07:00|Change|4002192D||||||||| +261|2023-10-06T22:02:01.4340000-07:00|Change|40021926||||||||| +261|2023-10-06T22:02:01.5250000-07:00|Change|40021923||||||||| +261|2023-10-06T22:02:01.5250000-07:00|Change|4002192C||||||||| +37|2023-10-06T22:02:02.0500000-07:00|40021585|Zeromus|00010F2A|11551368||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:01.6400000-07:00|Change|40021927||||||||| +37|2023-10-06T22:02:02.0950000-07:00|40021585|Zeromus|00010F2E|11525156||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:02.0950000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|1BC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11556699|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.58|84.82|0.00|-2.19|00010F33|0|1| +38|2023-10-06T22:02:02.1390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6300|10000|19||105.33|83.18|0.00|-2.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:02.1390000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T22:02:02.1390000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|750003|238A0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|11525156|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6300|10000|||105.33|83.18|0.00|-2.10|00010F34|0|1| +38|2023-10-06T22:02:02.1390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6300|10000|19||105.33|83.18|0.00|-2.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:02.1390000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T22:02:02.1850000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6500|10000|||105.33|83.18|0.00|-2.10| +21|2023-10-06T22:02:02.1850000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|2E4A0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|11525156|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9300|10000|||106.82|83.22|0.00|-2.00|00010F35|0|1| +38|2023-10-06T22:02:02.1850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9300|10000|0||106.82|83.22|0.00|-2.00|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:02.1850000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:02:02.1850000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:02:01.7590000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:02.2720000-07:00|40021585|Zeromus|00010F2D|11498407||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:02.2720000-07:00|40021585|Zeromus|00010F29|11470663||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:01.8690000-07:00|Change|40021932||||||||| +21|2023-10-06T22:02:02.2730000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|12B40000|104|6FD8000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|11525156|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1100|10000|||103.87|81.65|0.00|-1.95|00010F36|0|1| +38|2023-10-06T22:02:02.2730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1100|10000|0||103.87|81.65|0.00|-1.95|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:02.2730000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +39|2023-10-06T22:02:02.3610000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||104.78|86.03|0.00|-0.45| +39|2023-10-06T22:02:02.3610000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||102.38|83.23|0.00|-1.50| +24|2023-10-06T22:02:02.3610000-07:00|10FF0003|Gegehi Gehi|DoT|0|AE93|59052|73814|3700|10000|||111.19|84.16|0.00|2.04|10FF0003|Gegehi Gehi|FFFFFFFF|59052|73814|3700|10000|||111.19|84.16|0.00|2.04| +38|2023-10-06T22:02:02.3610000-07:00|10FF0003|Gegehi Gehi|005A5A23|14361|73814|3700|10000|0||111.19|84.16|0.00|2.04|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:02:01.9790000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T22:02:01.9790000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:02:01.9790000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:02:01.9790000-07:00|Change|4002159C||||||||||||| +39|2023-10-06T22:02:02.4500000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||106.58|84.82|0.00|-2.19| +261|2023-10-06T22:02:02.0900000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:02:02.4950000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|44D40000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|11470663|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||106.58|84.82|0.00|-2.19|00010F37|0|1| +20|2023-10-06T22:02:02.4950000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|104.21|86.25|-0.02|-0.59| +38|2023-10-06T22:02:02.4950000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||104.21|86.25|-0.02|-0.59|0|0|0||||||||||||||||||| +261|2023-10-06T22:02:02.0900000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:02:02.5840000-07:00|40021585|Zeromus|00010F31|11456178||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:02.5840000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|38000000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|11470663|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.72|83.50|0.00|-1.44|00010F38|0|1| +38|2023-10-06T22:02:02.5840000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.72|83.50|0.00|-1.44|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:02.5840000-07:00|7A2|Bunshin|25.28|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|83502|83502| +37|2023-10-06T22:02:02.6290000-07:00|40021585|Zeromus|00010F33|11449072||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:02.6290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9300|10000|0||105.05|83.04|0.00|-1.61|0|0|0||||||||||||||||||| +21|2023-10-06T22:02:02.6740000-07:00|40021932|Bunshin|4406|Gust Slash|40021585|Zeromus|710003|14FA0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|11470663|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||104.35|82.96|0.00|-2.15|00010F39|0|1| +261|2023-10-06T22:02:02.1810000-07:00|Change|40021932||||||||| +261|2023-10-06T22:02:02.2810000-07:00|Change|40021925||||||||| +37|2023-10-06T22:02:02.7180000-07:00|10FF0007|Kehabiqo Febiqo|00010F32|113098||||||106.58|84.82|0.00|-2.19| +261|2023-10-06T22:02:02.2810000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:02:02.3720000-07:00|Change|40021929||||||||| +37|2023-10-06T22:02:02.7620000-07:00|40021585|Zeromus|00010F35|11437222||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:02.7620000-07:00|10FF0001|Sesuga Sapisuga|00010F35|129071|129071|9300|10000|0||103.71|83.03|0.00|-1.56|1300|0|0|02|0200076E|03|41F00000|||||| +39|2023-10-06T22:02:02.7630000-07:00|4002185F|Ruby Carbuncle|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03| +38|2023-10-06T22:02:02.7630000-07:00|4002192E|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.21|97.83|0.00|-3.07|0|0|0||||||||||||| +26|2023-10-06T22:02:02.7630000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|4002192E|Demi-Bahamut|01|69928|40478540| +21|2023-10-06T22:02:02.7630000-07:00|10FF0006|Wowobora Gogobora|1D05|Enkindle Bahamut|40021585|Zeromus|3D|0|1B|1D058000|0|0|0|0|0|0|0|0|0|0|0|0|11449072|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6500|10000|||105.33|83.18|0.00|-2.10|00010F3A|0|1| +38|2023-10-06T22:02:02.7630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9300|10000|0||103.71|83.03|0.00|-1.56|0|0|0||||||||||||||||||| +21|2023-10-06T22:02:02.8080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11449072|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9300|10000|||103.71|83.03|0.00|-1.56|00010F3B|0|1| +31|2023-10-06T22:02:02.8080000-07:00|10FF0001||||| +261|2023-10-06T22:02:02.3720000-07:00|Change|40021924||||||||| +21|2023-10-06T22:02:02.8520000-07:00|4002192E|Demi-Bahamut|1D19|Akh Morn|40021585|Zeromus|750003|BDC50000|1B|1D198000|0|0|0|0|0|0|0|0|0|0|0|0|11449072|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07|00010F3C|0|1| +261|2023-10-06T22:02:02.3720000-07:00|Change|4002192B||||||| +261|2023-10-06T22:02:02.5520000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:02:02.9850000-07:00|40021585|Zeromus|00010F38|11422886||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:02.9850000-07:00|10FF0003|Gegehi Gehi|15099|73814|3900|10000|||112.98|84.44|0.00|-3.13| +21|2023-10-06T22:02:02.9850000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|722003|60CD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11437222|40478540|10000|10000|||100.00|80.10|0.00|0.00|14361|73814|3700|10000|||112.98|84.44|0.00|-3.13|00010F3D|0|1| +37|2023-10-06T22:02:03.0750000-07:00|40021585|Zeromus|00010F39|11417516||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:03.1190000-07:00|40021585|Zeromus|00010F37|11399896||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:03.1190000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1300|10000|||101.22|82.19|0.00|-1.42| +261|2023-10-06T22:02:02.6720000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:02:03.1640000-07:00|40021585|Zeromus|00010F34|11390798||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:03.1640000-07:00|10FF0006|Wowobora Gogobora|00010F34|81809|81809|6500|10000|19||105.34|83.18|0.00|-1.71|1B00|0|0|01|04000A8D|0|42700000|| +21|2023-10-06T22:02:03.1640000-07:00|4002185F|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|21760000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|15099|73814|3900|10000|||113.01|84.43|0.00|-1.89|54201|77430|10000|10000|||102.13|99.99|0.00|-3.03|00010F3E|0|1| +39|2023-10-06T22:02:03.1640000-07:00|40021932|Bunshin|76288|79156|10000|10000|||99.81|83.66|0.00|3.09| +38|2023-10-06T22:02:03.1640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6500|10000|19||105.34|83.18|0.00|-1.71|0|0|0||||||||||||||||||| +261|2023-10-06T22:02:02.6720000-07:00|Change|4002192B||| +261|2023-10-06T22:02:02.7820000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:02:02.7820000-07:00|Change|4002192A||||||||| +37|2023-10-06T22:02:03.2970000-07:00|40021585|Zeromus|00010F36|11386010||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:03.3410000-07:00|40021585|Zeromus|00010F3B|11384002||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:03.3410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|B260000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11386010|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.65|84.37|0.00|-1.52|00010F3F|0|1| +38|2023-10-06T22:02:03.3850000-07:00|10FF0003|Gegehi Gehi|005A5A23|15099|73814|3900|10000|0||113.02|84.43|0.00|-1.89|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:03.3850000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:02.8930000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:02:03.4290000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|37C60000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|11386010|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||103.35|86.32|0.00|-2.65|00010F40|0|1| +21|2023-10-06T22:02:03.4740000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11384002|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||99.21|82.45|0.00|-1.44|00010F41|0|1| +261|2023-10-06T22:02:03.0130000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:02:03.5190000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11384002|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.64|82.13|0.00|-1.54|00010F42|0|1| +21|2023-10-06T22:02:03.5190000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|2AB40000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|11384002|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1300|10000|||99.21|82.45|0.00|-1.44|00010F43|0|1| +38|2023-10-06T22:02:03.5190000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||103.35|86.32|0.00|-2.65|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:03.5190000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|79209|73814| +39|2023-10-06T22:02:03.5640000-07:00|4002192E|Demi-Bahamut|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07| +261|2023-10-06T22:02:03.1340000-07:00|Change|4002192D||||||||| +261|2023-10-06T22:02:03.1340000-07:00|Change|40021926||||||||| +24|2023-10-06T22:02:03.6530000-07:00|40021585|Zeromus|DoT|0|228F|11384002|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||93.32|84.79|0.00|-1.43| +38|2023-10-06T22:02:03.6530000-07:00|4002185F|Ruby Carbuncle|005A5A00|54201|77430|10000|10000|0||102.13|99.99|0.00|2.56|0|0|0|||||||||| +30|2023-10-06T22:02:03.6530000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002185F|Ruby Carbuncle|00|77430|73814| +38|2023-10-06T22:02:03.6530000-07:00|40021585|Zeromus|005A5A00|11375155|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +38|2023-10-06T22:02:03.6530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|900|10000|0||98.54|82.54|0.00|2.54|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:03.6530000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +261|2023-10-06T22:02:03.2530000-07:00|Change|40021923||||||||| +261|2023-10-06T22:02:03.2530000-07:00|Change|4002192C||||||||| +37|2023-10-06T22:02:03.7420000-07:00|40021585|Zeromus|00010F3C|11326574||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:03.7420000-07:00|4002192E|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.21|97.83|0.00|-3.07|0|0|0|||||||||| +30|2023-10-06T22:02:03.7420000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|4002192E|Demi-Bahamut|01|69928|40478540| +38|2023-10-06T22:02:03.7420000-07:00|40021585|Zeromus|005A5A00|11326574|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:03.7420000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T22:02:03.7870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||98.28|82.53|0.00|-1.40|0|0|0|||||||||| +30|2023-10-06T22:02:03.7870000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +261|2023-10-06T22:02:03.3430000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:02:03.3430000-07:00|Change|40021927||||||||| +37|2023-10-06T22:02:03.8770000-07:00|40021585|Zeromus|00010F3F|11323720||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:03.9200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113098|129844|10000|10000|0||104.41|89.11|0.00|-1.28|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:03.9200000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +37|2023-10-06T22:02:03.9650000-07:00|10FF0003|Gegehi Gehi|00010F3E|23665||||||112.62|85.71|0.00|-1.08| +21|2023-10-06T22:02:03.9650000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3F020000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|11323720|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.88|82.85|0.00|-1.37|00010F44|0|1| +261|2023-10-06T22:02:03.5280000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:02:03.5280000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:03.5280000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:02:03.5280000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:02:04.0090000-07:00|40021585|Zeromus|00010F41|11323538||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:04.0100000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|754003|68920000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|11323720|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6500|10000|||103.88|85.19|-0.01|-1.08|00010F45|0|1| +21|2023-10-06T22:02:04.0100000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11323720|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6500|10000|||103.88|85.19|-0.01|-1.08|00010F46|0|1| +38|2023-10-06T22:02:04.0530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9300|10000|0||96.47|84.50|0.00|-1.23|0|0|0|||||||||||||||| +30|2023-10-06T22:02:04.0530000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +261|2023-10-06T22:02:03.6190000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:02:03.6190000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:02:03.6190000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:02:04.1420000-07:00|40021585|Zeromus|00010F3D|11298757||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:04.1420000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||96.31|82.98|0.00|2.26| +38|2023-10-06T22:02:04.1870000-07:00|40021932|Bunshin|005A5A00|76288|79156|10000|10000|0||99.81|83.66|0.00|3.09|0|0|0||||||| +26|2023-10-06T22:02:04.1870000-07:00|30|Well Fed|1773.89|10FF000A|Dukaro Nezikaro|40021932|Bunshin|294E|79156|83502| +26|2023-10-06T22:02:04.1870000-07:00|A8F|Searing Light|18.02|10FF0006|Wowobora Gogobora|40021932|Bunshin|00|79156|81809| +38|2023-10-06T22:02:04.1870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.21|86.26|0.00|-1.10|0|0|0|||||||||||||||| +30|2023-10-06T22:02:04.1870000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|83502|73814| +37|2023-10-06T22:02:04.2760000-07:00|40021585|Zeromus|00010F42|11296132||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:04.3200000-07:00|4002192E|Demi-Bahamut|005A5A00|66800|69928|10000|10000|0||101.21|97.83|0.00|-3.07|0|0|0|||||||||| +30|2023-10-06T22:02:04.3200000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|4002192E|Demi-Bahamut|00|69928|73814| +38|2023-10-06T22:02:04.3200000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6200|10000|19||102.79|85.25|0.00|-2.04|0|0|0|||||||||||||||| +30|2023-10-06T22:02:04.3200000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +261|2023-10-06T22:02:03.9700000-07:00|Change|40021925||||||||| +37|2023-10-06T22:02:04.4540000-07:00|40021585|Zeromus|00010F43|11285200||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:04.4540000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|900|10000|||96.35|84.08|-0.02|-1.16|81541|81541|900|10000|||96.35|84.08|-0.02|-1.16|00010F47|0|1| +261|2023-10-06T22:02:03.9700000-07:00|Change|40021929||||||||| +261|2023-10-06T22:02:04.0880000-07:00|Change|40021924||||||||| +37|2023-10-06T22:02:04.5420000-07:00|40021585|Zeromus|00010F46|11285036||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:04.5860000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||100.98|86.36|0.00|-1.65|0|0|0|||||||||| +30|2023-10-06T22:02:04.5860000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:02:04.2080000-07:00|Change|40021932||| +21|2023-10-06T22:02:04.6310000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11285036|40478540|10000|10000|||100.00|80.10|0.00|0.00|23665|73814|3900|10000|||109.62|89.23|0.00|-0.77|00010F48|0|1| +37|2023-10-06T22:02:04.6760000-07:00|40021585|Zeromus|00010F45|11258266||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:04.6760000-07:00|10FF0006|Wowobora Gogobora|DFE|Deathflare|40021585|Zeromus|754003|72BA0000|1B|DFE8000|0|0|0|0|0|0|0|0|0|0|0|0|11285036|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6200|10000|||101.69|85.27|0.00|-1.63|00010F49|0|1| +21|2023-10-06T22:02:04.6770000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2B460000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|11285036|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9300|10000|||93.37|85.61|0.00|-0.99|00010F4A|0|1| +38|2023-10-06T22:02:04.6770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9300|10000|0||93.37|85.61|0.00|-0.99|0|0|0|||||||||||||||| +26|2023-10-06T22:02:04.6770000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T22:02:04.7200000-07:00|40021585|Zeromus|00010F40|11243988||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:04.7640000-07:00|40021585|Zeromus|00010F44|11227858||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:04.3200000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:02:04.3200000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:02:04.8090000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9500|10000|||92.74|85.52|0.00|-0.84| +21|2023-10-06T22:02:04.8090000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|413B0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|11243988|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.53|88.75|0.00|-0.83|00010F4B|0|1| +38|2023-10-06T22:02:04.8090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.53|88.75|0.00|-0.83|0|0|0|||||||||||||||| +26|2023-10-06T22:02:04.8090000-07:00|7A2|Bunshin|23.05|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +261|2023-10-06T22:02:04.4160000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:02:04.4160000-07:00|Change|40021932||||||||| +21|2023-10-06T22:02:04.9000000-07:00|4002192E|Demi-Bahamut|1D04|Wyrmwave|40021585|Zeromus|756003|2BBE0000|1B|1D048000|0|0|0|0|0|0|0|0|0|0|0|0|11227858|40478540|10000|10000|||100.00|80.10|0.00|0.00|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07|00010F4C|0|1| +21|2023-10-06T22:02:04.9000000-07:00|40021932|Bunshin|4407|Aeolian Edge|40021585|Zeromus|710003|113F0000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|11227858|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||86.52|89.78|0.00|2.19|00010F4D|0|1| +25|2023-10-06T22:02:04.9000000-07:00|4002192B|Toxic Bubble|E0000000|| +261|2023-10-06T22:02:04.5090000-07:00|Change|40021932||| +261|2023-10-06T22:02:04.5090000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T22:02:04.5090000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:02:04.9430000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F712003|588B0000|143E|340000|200004|2A348000|11B|2A8000|0|0|0|0|0|0|0|0|11227858|40478540|10000|10000|||100.00|80.10|0.00|0.00|113098|129844|10000|10000|||99.10|91.58|0.00|3.01|00010F4E|0|1| +21|2023-10-06T22:02:04.9430000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3EAC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|113098|129844|10000|10000|||99.10|91.58|0.00|3.01|11227858|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010F4F|0|1| +261|2023-10-06T22:02:04.5090000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:02:05.0780000-07:00|10FF0004|Buhojaqe Zijaqe|00010F47|81541|81541|900|10000|0||92.42|85.81|0.00|-1.21|1C00|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T22:02:05.0780000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T22:02:05.0780000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11227858|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9500|10000|||91.02|85.08|0.00|-0.15|00010F50|0|1| +38|2023-10-06T22:02:05.0780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1450|10000|0||92.42|85.81|0.00|-1.21|0|0|0||||||||||||||||||| +31|2023-10-06T22:02:05.0780000-07:00|10FF0001||||| +37|2023-10-06T22:02:05.1660000-07:00|40021585|Zeromus|00010F48|11227828||||||100.00|80.10|0.00|0.00| +04|2023-10-06T22:02:04.7230000-07:00|4002192A|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||105.97|119.66|0.00|-2.43| +261|2023-10-06T22:02:04.7230000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:02:04.7230000-07:00|Remove|4002192A| +39|2023-10-06T22:02:05.2100000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6400|10000|||98.71|86.30|0.00|-2.06| +261|2023-10-06T22:02:04.8460000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:02:04.8460000-07:00|Change|4002192D||||||||| +26|2023-10-06T22:02:05.2990000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T22:02:05.2990000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|754003|48C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11227828|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6400|10000|||98.09|86.56|-0.02|-1.73|00010F51|0|1| +261|2023-10-06T22:02:04.9580000-07:00|Change|40021926||||||||| +37|2023-10-06T22:02:05.3430000-07:00|40021585|Zeromus|00010F4B|11211129||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:05.3430000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||96.36|87.31|0.00|-1.40| +39|2023-10-06T22:02:05.3430000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||85.08|91.21|0.00|0.84| +24|2023-10-06T22:02:05.3880000-07:00|10FF0003|Gegehi Gehi|DoT|0|AD17|23665|73814|3900|10000|||106.42|92.57|0.00|-0.75|10FF0003|Gegehi Gehi|FFFFFFFF|23665|73814|3900|10000|||106.42|92.57|0.00|-0.75| +38|2023-10-06T22:02:05.3880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1450|10000|0||90.75|87.11|0.00|-1.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:05.3880000-07:00|317|Dissipation|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T22:02:05.3880000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T22:02:05.3880000-07:00|10FF0004|Buhojaqe Zijaqe|E03|Dissipation|10FF0004|Buhojaqe Zijaqe|140E|3170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1450|10000|||90.75|87.11|0.00|-1.04|81541|81541|1450|10000|||90.75|87.11|0.00|-1.04|00010F52|0|1| +38|2023-10-06T22:02:05.3890000-07:00|4002185F|Ruby Carbuncle|005A5A00|0|77430|0|10000|0||102.13|99.99|0.00|-3.03|0|0|0|||| +30|2023-10-06T22:02:05.3890000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002185F|Ruby Carbuncle|00|77430|81809| +38|2023-10-06T22:02:05.3890000-07:00|10FF0003|Gegehi Gehi|005A5A23|0|73814|0|10000|0||106.42|92.57|0.00|-0.75|0|0|0|||| +30|2023-10-06T22:02:05.3890000-07:00|6FD|Vulnerability Up|0.00|4002192B|Toxic Bubble|10FF0003|Gegehi Gehi|01|73814|69200| +30|2023-10-06T22:02:05.3890000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +30|2023-10-06T22:02:05.3890000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:02:05.3890000-07:00|5E3|Pollen|0.00|4002192B|Toxic Bubble|10FF0003|Gegehi Gehi|00|73814|69200| +30|2023-10-06T22:02:05.3890000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:04.9580000-07:00|Change|4002185F||||||||| +261|2023-10-06T22:02:04.9580000-07:00|Change|40021923||||||||| +261|2023-10-06T22:02:04.9580000-07:00|Change|4002192C||||||||| +37|2023-10-06T22:02:05.4320000-07:00|40021585|Zeromus|00010F4D|11206714||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:05.4760000-07:00|40021585|Zeromus|00010F49|11177344||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:05.4760000-07:00|10FF0007|Kehabiqo Febiqo|114396|129844|10000|10000|||96.64|92.38|0.00|-2.32| +21|2023-10-06T22:02:05.4760000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|14E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11211129|40478540|10000|10000|||100.00|80.10|0.00|0.00|113098|129844|10000|10000|||96.64|92.38|0.00|-2.32|00010F53|0|1| +21|2023-10-06T22:02:05.5210000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11177344|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||84.80|91.49|0.00|-0.05|00010F54|0|1| +37|2023-10-06T22:02:05.6100000-07:00|40021585|Zeromus|00010F50|11175532||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:05.1920000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:02:05.6540000-07:00|10FF000A|Dukaro Nezikaro|1CEB|Ten Chi Jin|10FF000A|Dukaro Nezikaro|3960F|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||84.68|91.62|0.00|-0.45|83502|83502|10000|10000|||84.68|91.62|0.00|-0.45|00010F55|0|1| +38|2023-10-06T22:02:05.6540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.68|91.62|0.00|-0.45|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:05.6540000-07:00|4A2|Ten Chi Jin|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:02:05.7420000-07:00|10FF0007|Kehabiqo Febiqo|00010F4F|98352||||||94.88|92.67|0.00|-1.72| +261|2023-10-06T22:02:05.4050000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T22:02:05.4050000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:02:05.4050000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:05.5030000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:02:05.9640000-07:00|40021585|Zeromus|00010F4C|11164334||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:05.9640000-07:00|40021585|Zeromus|00010F4A|11153256||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:05.9640000-07:00|10FF0001|Sesuga Sapisuga|00010F4A|129071|129071|9900|10000|0||86.39|87.05|0.00|0.54|1300|0|0|0| +04|2023-10-06T22:02:05.5030000-07:00|40021927|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||97.98|119.67|0.00|3.03| +261|2023-10-06T22:02:05.5030000-07:00|Remove|40021927| +261|2023-10-06T22:02:05.5990000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:02:05.5990000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:06.0090000-07:00|40021585|Zeromus|00010F53|11147903||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:05.5990000-07:00|Change|40021925||||||||| +261|2023-10-06T22:02:05.7140000-07:00|Change|40021929||||||||| +37|2023-10-06T22:02:06.0530000-07:00|10FF0004|Buhojaqe Zijaqe|00010F52|81541|81541|1450|10000|0||86.71|89.21|0.00|-1.04|1C00|0|0|01|04000317|0|41F00000|| +37|2023-10-06T22:02:06.0530000-07:00|40021585|Zeromus|00010F54|11145450||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:06.0530000-07:00|10FF000A|Dukaro Nezikaro|00010F54|83502|83502|10000|10000|0||84.58|91.72|-0.02|-0.78|1E00|0|0|01|050004A2|0|C0C00000|| +37|2023-10-06T22:02:06.0530000-07:00|10FF000A|Dukaro Nezikaro|00010F55|83502|83502|10000|10000|0||84.58|91.72|-0.02|-0.78|1E00|0|0|01|050004A2|0|40C00000|| +38|2023-10-06T22:02:06.0530000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1450|10000|0||86.71|89.21|0.00|-1.04|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:02:06.0530000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.58|91.72|-0.02|-0.78|0|0|0||||||||||||||||||| +39|2023-10-06T22:02:06.0970000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1650|10000|||86.71|89.21|0.00|-1.04| +261|2023-10-06T22:02:05.8310000-07:00|Change|40021924||||||||| +39|2023-10-06T22:02:06.1880000-07:00|40021932|Bunshin|76288|79156|10000|10000|||86.52|89.78|0.00|2.19| +21|2023-10-06T22:02:06.1880000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|10710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11145450|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||86.81|89.84|0.00|-0.91|00010F56|0|1| +37|2023-10-06T22:02:06.2320000-07:00|40021585|Zeromus|00010F51|11126818||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:06.0620000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:06.4550000-07:00|40021585|Zeromus|00010F4E|11104151||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:06.4550000-07:00|10FF0007|Kehabiqo Febiqo|00010F4E|109156||||||90.91|93.28|0.00|-1.54| +21|2023-10-06T22:02:06.4550000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|21D90000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|11126818|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||85.58|90.18|0.00|-1.18|00010F57|0|1| +21|2023-10-06T22:02:06.4990000-07:00|10FF0006|Wowobora Gogobora|64DC|Astral Impulse|40021585|Zeromus|752003|782D0000|1B|64DC8000|0|0|0|0|0|0|0|0|0|0|0|0|11126818|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6400|10000|||90.84|87.21|0.00|-1.51|00010F58|0|1| +39|2023-10-06T22:02:06.5440000-07:00|4002192E|Demi-Bahamut|66800|69928|10000|10000|||101.21|97.83|0.00|-3.07| +38|2023-10-06T22:02:06.5440000-07:00|4002192E|Demi-Bahamut|005A5A00|0|69928|0|10000|0||101.21|97.83|0.00|-3.07|0|0|0|||| +30|2023-10-06T22:02:06.5440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|4002192E|Demi-Bahamut|00|69928|81809| +261|2023-10-06T22:02:06.1810000-07:00|Change|4002192E||||||| +38|2023-10-06T22:02:06.5860000-07:00|4002194C||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T22:02:06.5890000-07:00|4002194C||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T22:02:06.6340000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|1170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11104151|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1650|10000|||84.96|91.31|0.00|-0.79|00010F59|0|1| +261|2023-10-06T22:02:06.2920000-07:00|Change|10FF0001||||||||||| +24|2023-10-06T22:02:06.6780000-07:00|40021585|Zeromus|DoT|0|181B|11104151|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||84.58|91.72|0.00|-0.78| +38|2023-10-06T22:02:06.6780000-07:00|40021585|Zeromus|005A5A00|11097980|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T22:02:06.3960000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:02:06.3960000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:02:06.3960000-07:00|Add|4002194C||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:02:06.3960000-07:00|Remove|4002192C| +261|2023-10-06T22:02:06.4930000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:02:06.4930000-07:00|Change|4002194C||| +261|2023-10-06T22:02:06.4930000-07:00|Change|10FF0007||||||||| +03|2023-10-06T22:02:06.4930000-07:00|4002194C|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||90.58|86.92|0.00|-0.94| +37|2023-10-06T22:02:06.9440000-07:00|40021585|Zeromus|00010F56|11093771||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:06.9440000-07:00|10FF000A|Dukaro Nezikaro|49B9|Fuma Shuriken|40021585|Zeromus|710003|37D70000|100000E|4A28000|0|0|0|0|0|0|0|0|0|0|0|0|11097980|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||84.58|91.72|0.00|-0.78|00010F5A|0|1| +38|2023-10-06T22:02:06.9440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.58|91.72|0.00|-0.78|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:06.9440000-07:00|4A2|Ten Chi Jin|5.07|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:02:06.5910000-07:00|Change|4002192D||||||||| +261|2023-10-06T22:02:06.7100000-07:00|Change|40021926||||||||| +261|2023-10-06T22:02:06.7100000-07:00|Change|40021932||| +37|2023-10-06T22:02:07.1210000-07:00|40021585|Zeromus|00010F58|11063006||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:07.1210000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|82.92|93.16|0.00|-0.82| +37|2023-10-06T22:02:07.1670000-07:00|40021585|Zeromus|00010F59|11062727||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:07.1670000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||81.77|90.26|0.00|-2.42| +21|2023-10-06T22:02:07.1670000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|752003|618E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11093771|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6100|10000|||86.54|88.20|0.00|-1.68|00010F5B|0|1| +21|2023-10-06T22:02:07.1670000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11093771|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6100|10000|||86.54|88.20|0.00|-1.68|00010F5C|0|1| +38|2023-10-06T22:02:07.1670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6100|10000|19||86.54|88.20|0.00|-1.68|0|0|0|||||||||||||||| +30|2023-10-06T22:02:07.1670000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +37|2023-10-06T22:02:07.2550000-07:00|40021585|Zeromus|00010F57|11054062||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:07.3430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|C630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|11054062|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9900|10000|||81.60|91.86|0.00|2.14|00010F5D|0|1| +31|2023-10-06T22:02:07.3430000-07:00|10FF0001||||| +21|2023-10-06T22:02:07.3880000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2B410000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|11054062|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9900|10000|||81.60|91.86|0.00|2.14|00010F5E|0|1| +38|2023-10-06T22:02:07.3880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9900|10000|0||81.60|91.86|0.00|2.14|0|0|0|||||||||||||||| +26|2023-10-06T22:02:07.3880000-07:00|76E|Sword Oath|25.33|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +25|2023-10-06T22:02:07.4330000-07:00|10FF0003|Gegehi Gehi|E0000000|| +21|2023-10-06T22:02:07.4330000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|714003|1E510000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|11054062|40478540|10000|10000|||100.00|80.10|0.00|0.00|109156|129844|10000|10000|||86.31|91.52|0.00|-1.54|00010F5F|0|1| +38|2023-10-06T22:02:07.4330000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109156|129844|10000|10000|0||86.31|91.52|0.00|-1.54|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:07.4330000-07:00|31|Medicated|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|296B|129844|129844| +261|2023-10-06T22:02:07.0580000-07:00|Change|4002185F||||| +261|2023-10-06T22:02:07.1680000-07:00|Change|10FF0004||||||||||||||||||| +04|2023-10-06T22:02:07.2790000-07:00|40021923|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||81.99|119.66|0.00|2.65| +261|2023-10-06T22:02:07.2790000-07:00|Remove|40021923| +261|2023-10-06T22:02:07.2790000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:02:07.2790000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:02:07.2790000-07:00|Change|4002194C||||||||| +34|2023-10-06T22:02:07.6090000-07:00|4002194C|Carbuncle|4002194C|Carbuncle|01| +37|2023-10-06T22:02:07.6980000-07:00|40021585|Zeromus|00010F5C|11053860||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:07.3750000-07:00|Change|40021925||||||||| +39|2023-10-06T22:02:07.7870000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||81.60|91.86|0.00|2.14| +261|2023-10-06T22:02:07.4650000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:07.4650000-07:00|Change|40021929||||||||| +37|2023-10-06T22:02:07.8320000-07:00|40021585|Zeromus|00010F5A|11039565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:07.8320000-07:00|10FF000A|Dukaro Nezikaro|00010F5A|83502|83502|10000|10000|0||84.58|91.72|0.00|2.22|1E00|0|0|01|050004A2|01|40871A96|| +37|2023-10-06T22:02:07.8760000-07:00|40021585|Zeromus|00010F5D|11036394||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:07.9210000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|82.45|91.46|-0.02|-1.47| +21|2023-10-06T22:02:07.9210000-07:00|10FF000A|Dukaro Nezikaro|49BD|Raiton|40021585|Zeromus|550003|530D0000|900000E|4A28000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|11039565|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||84.58|91.72|0.00|2.22|00010F60|0|1| +38|2023-10-06T22:02:07.9210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.58|91.72|0.00|2.22|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:07.9210000-07:00|4A2|Ten Chi Jin|4.09|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:02:07.9210000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T22:02:07.9650000-07:00|40021585|Zeromus|00010F5F|11028633||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:07.9650000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E920000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|109156|129844|10000|10000|||84.32|91.69|0.00|-2.50|11036394|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010F61|0|1| +21|2023-10-06T22:02:08.0550000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|756003|71500000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|11028633|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1650|10000|||82.44|93.58|0.00|2.23|00010F62|0|1| +38|2023-10-06T22:02:08.0550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1800|10000|0||82.44|93.58|0.00|2.23|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:02:08.0990000-07:00|40021585|Zeromus|00010F5B|11003659||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:08.1890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6300|10000|||82.20|91.03|0.00|-0.90| +39|2023-10-06T22:02:08.3670000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||81.86|91.52|0.00|2.86| +39|2023-10-06T22:02:08.3670000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||84.58|91.72|0.00|2.22| +04|2023-10-06T22:02:07.9710000-07:00|40021924|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||85.98|119.66|0.00|2.65| +261|2023-10-06T22:02:07.9710000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:02:07.9710000-07:00|Remove|40021924| +38|2023-10-06T22:02:08.4120000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.58|91.72|0.00|2.22|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:02:08.4570000-07:00|10FF0007|Kehabiqo Febiqo|110454|129844|10000|10000|||83.74|91.83|0.00|-1.65| +261|2023-10-06T22:02:08.0850000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:02:08.2030000-07:00|Change|4002194C||||||||| +261|2023-10-06T22:02:08.3200000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:02:08.3200000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:02:08.3200000-07:00|Change|4002192D||||||||| +37|2023-10-06T22:02:08.6350000-07:00|40021585|Zeromus|00010F60|10982398||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:08.6350000-07:00|10FF000A|Dukaro Nezikaro|00010F60|83502|83502|10000|10000|0||84.58|91.72|0.00|2.22|1E00|0|0|02|050004A2|09|405AD0CF|||||| +38|2023-10-06T22:02:08.6350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.58|91.72|0.00|2.22|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:02:08.6790000-07:00|40021585|Zeromus|00010F5E|10971325||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:08.7670000-07:00|10FF0007|Kehabiqo Febiqo|00010F61|94436||||||83.40|92.02|0.00|-1.47| +37|2023-10-06T22:02:08.8570000-07:00|40021585|Zeromus|00010F62|10942317||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:08.8570000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BE60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10971325|40478540|10000|10000|||100.00|80.10|0.00|0.00|94436|129844|10000|10000|||83.39|92.03|0.00|-1.47|00010F63|0|1| +21|2023-10-06T22:02:08.8570000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10971325|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.22|91.48|0.00|-0.63|00010F64|0|1| +21|2023-10-06T22:02:08.8570000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|53B20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|10971325|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||81.71|91.54|0.00|2.13|00010F65|0|1| +21|2023-10-06T22:02:08.9460000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|720003|68370000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|10971325|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.22|91.48|0.00|-0.63|00010F66|0|1| +21|2023-10-06T22:02:08.9460000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|10971325|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6300|10000|||81.93|91.57|0.00|-0.47|00010F67|0|1| +38|2023-10-06T22:02:08.9460000-07:00|4002194C|Carbuncle|005A5A00|0|77698|0|10000|0||84.73|90.76|0.00|-0.99|0|0|0||||||| +26|2023-10-06T22:02:08.9460000-07:00|30|Well Fed|553.70|10FF0006|Wowobora Gogobora|4002194C|Carbuncle|2964|77698|81809| +38|2023-10-06T22:02:08.9880000-07:00|40021951||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +21|2023-10-06T22:02:08.9900000-07:00|10FF000A|Dukaro Nezikaro|49C1|Suiton|40021585|Zeromus|654003|4E6E0000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|10942317|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||84.58|91.72|0.00|2.22|00010F68|0|1| +38|2023-10-06T22:02:08.9900000-07:00|40021951||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T22:02:08.9900000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.58|91.72|0.00|2.22|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:08.9900000-07:00|4A2|Ten Chi Jin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:02:08.9900000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +38|2023-10-06T22:02:09.0350000-07:00|40021585|Zeromus|005A5A00|10942317|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:09.0350000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +39|2023-10-06T22:02:09.1230000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2000|10000|||82.44|93.58|0.00|2.23| +39|2023-10-06T22:02:09.1680000-07:00|40021932|Bunshin|76288|79156|10000|10000|||86.52|89.78|0.00|2.19| +04|2023-10-06T22:02:08.8300000-07:00|40021926|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||93.98|119.67|0.00|-2.54| +261|2023-10-06T22:02:08.8300000-07:00|Add|40021951||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:02:08.8300000-07:00|Remove|40021926| +261|2023-10-06T22:02:08.8300000-07:00|Remove|4002185F| +261|2023-10-06T22:02:08.8300000-07:00|Change|40021951||||| +38|2023-10-06T22:02:09.2580000-07:00|40021585|Zeromus|005A5A00|10942317|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:02:09.2580000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +03|2023-10-06T22:02:08.9500000-07:00|40021951|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||81.39|94.02|0.00|2.14| +37|2023-10-06T22:02:09.3910000-07:00|40021585|Zeromus|00010F63|10939271||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:09.0690000-07:00|Change|40021925||||||||| +261|2023-10-06T22:02:09.1870000-07:00|Change|10FF0004||| +20|2023-10-06T22:02:09.5230000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|82.44|93.58|0.00|2.23| +261|2023-10-06T22:02:09.1870000-07:00|Change|4002194C||||||||| +261|2023-10-06T22:02:09.1870000-07:00|Change|10FF000B||||||||||||||||||| +37|2023-10-06T22:02:09.6130000-07:00|40021585|Zeromus|00010F64|10934414||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:09.6130000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B6A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10939271|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||81.60|91.86|0.00|2.14|00010F69|0|1| +21|2023-10-06T22:02:09.6130000-07:00|10FF000B|Pusu Rosu|1D06|Thin Air|10FF000B|Pusu Rosu|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||81.71|91.54|0.00|2.13|79209|79209|9600|10000|||81.71|91.54|0.00|2.13|00010F6A|0|1| +38|2023-10-06T22:02:09.6130000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||81.71|91.54|0.00|2.13|0|0|0||||||||||||| +26|2023-10-06T22:02:09.6130000-07:00|4C1|Thin Air|12.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +31|2023-10-06T22:02:09.6130000-07:00|10FF0001||||| +24|2023-10-06T22:02:09.6570000-07:00|40021585|Zeromus|DoT|0|1AF4|10939271|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9600|10000|||81.71|91.54|0.00|2.13| +38|2023-10-06T22:02:09.6570000-07:00|40021585|Zeromus|005A5A00|10927514|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T22:02:09.7460000-07:00|10FF000A|Dukaro Nezikaro|4069|Meisui|10FF000A|Dukaro Nezikaro|323E|9F8000|F|A818000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||84.56|91.74|0.00|0.53|83502|83502|10000|10000|||84.56|91.74|0.00|0.53|00010F6B|0|1| +21|2023-10-06T22:02:09.7460000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B0D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10927514|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||84.56|91.74|0.00|0.53|00010F6C|0|1| +38|2023-10-06T22:02:09.7460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.56|91.74|0.00|0.53|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:09.7460000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +26|2023-10-06T22:02:09.7460000-07:00|A81|Meisui|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +21|2023-10-06T22:02:09.8800000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|38ED0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|10927514|40478540|10000|10000|||100.00|80.10|0.00|0.00|94436|129844|10000|10000|||83.30|92.33|0.00|-2.42|00010F6D|0|1| +21|2023-10-06T22:02:09.8800000-07:00|4002159C|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||114.00|100.00|0.00|0.79|00010F6E|0|0| +21|2023-10-06T22:02:09.8800000-07:00|4002159D|Zeromus|8CF8|unknown_8cf8|4002159D|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||114.00|100.00|0.00|0.79|44|44|0|10000|||114.00|100.00|0.00|0.79|00010F6F|0|1| +21|2023-10-06T22:02:09.8800000-07:00|4002159E|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|100.00|0.00|0.79|00010F70|0|0| +21|2023-10-06T22:02:09.8800000-07:00|4002159F|Zeromus|8CF8|unknown_8cf8|4002159F|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|100.00|0.00|0.79|44|44|0|10000|||100.00|100.00|0.00|0.79|00010F71|0|1| +21|2023-10-06T22:02:09.8800000-07:00|400215A0|Zeromus|8B49|Miasmic Blast|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|86.00|0.00|0.79|00010F72|0|0| +21|2023-10-06T22:02:09.8800000-07:00|400215A1|Zeromus|8CF8|unknown_8cf8|400215A1|Zeromus|1B|8CF88000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|86.00|0.00|0.79|44|44|0|10000|||100.00|86.00|0.00|0.79|00010F73|0|1| +21|2023-10-06T22:02:09.9230000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|36310000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10927514|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||81.60|91.86|0.00|2.14|00010F74|0|1| +38|2023-10-06T22:02:09.9230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||81.60|91.86|0.00|2.14|0|0|0|||||||||||||||| +30|2023-10-06T22:02:09.9230000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:02:09.5990000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T22:02:09.5990000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T22:02:09.5990000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T22:02:09.5990000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:02:09.5990000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:02:09.5990000-07:00|Change|4002159F||||||||||||| +37|2023-10-06T22:02:09.9670000-07:00|40021585|Zeromus|00010F68|10907436||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:09.9670000-07:00|10FF000A|Dukaro Nezikaro|00010F68|83502|83502|10000|10000|0||84.34|91.96|0.00|-0.32|1E00|0|0|01|05000A81|0|C1F00000|| +04|2023-10-06T22:02:09.5990000-07:00|40021929|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||101.98|119.67|0.00|-2.37| +261|2023-10-06T22:02:09.5990000-07:00|Remove|40021929| +261|2023-10-06T22:02:09.6920000-07:00|Change|40021951||| +37|2023-10-06T22:02:10.1000000-07:00|40021585|Zeromus|00010F66|10880757||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:10.1450000-07:00|40021585|Zeromus|00010F69|10877835||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:10.1450000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||81.22|91.48|0.00|2.12| +37|2023-10-06T22:02:10.1910000-07:00|40021585|Zeromus|00010F65|10856409||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:10.1910000-07:00|10FF000B|Pusu Rosu|00010F65|79209|79209|9600|10000|0||81.82|91.61|0.00|1.91|1800|0|0|01|030004C1|FF9C|C1400000|| +37|2023-10-06T22:02:10.2800000-07:00|40021585|Zeromus|00010F6C|10853580||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:10.2800000-07:00|10FF000A|Dukaro Nezikaro|00010F6C|83502|83502|10000|10000|0||84.05|92.25|0.00|-0.65|1E00|0|0|01|05000A81|0|C1F00000|| +21|2023-10-06T22:02:10.2800000-07:00|10FF000B|Pusu Rosu|1D89|Swiftcast|10FF000B|Pusu Rosu|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||81.87|91.65|0.00|1.81|79209|79209|9600|10000|||81.87|91.65|0.00|1.81|00010F75|0|1| +38|2023-10-06T22:02:10.2800000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||81.87|91.65|0.00|1.81|0|0|0|||||||||||||||| +26|2023-10-06T22:02:10.2800000-07:00|A7|Swiftcast|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:02:10.3240000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10853580|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6300|10000|||81.93|91.57|0.00|2.14|00010F76|0|1| +37|2023-10-06T22:02:10.3680000-07:00|10FF000B|Pusu Rosu|00010F6A|79209|79209|9600|10000|0||81.92|91.68|-0.01|1.69|1800|0|0|02|030004C1|FF9C|41400000|||||| +37|2023-10-06T22:02:10.3680000-07:00|10FF000A|Dukaro Nezikaro|00010F6B|83502|83502|10000|10000|0||83.97|92.34|0.00|-0.75|1E00|0|0|01|05000A81|0|41F00000|| +38|2023-10-06T22:02:10.3690000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||81.92|91.68|-0.01|1.69|0|0|0|||||||||||||||| +38|2023-10-06T22:02:10.3690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||83.97|92.34|0.00|-0.75|0|0|0|||||||||||||||||||||| +04|2023-10-06T22:02:10.0370000-07:00|4002192E|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|69928|0|10000|||101.21|97.83|0.00|-3.07| +261|2023-10-06T22:02:10.0370000-07:00|Remove|4002192E| +37|2023-10-06T22:02:10.4130000-07:00|10FF000B|Pusu Rosu|00010F75|79209|79209|9600|10000|0||81.92|91.68|-0.01|1.69|1800|0|0|01|040000A7|0|41200000|| +38|2023-10-06T22:02:10.4130000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||81.92|91.68|-0.01|1.69|0|0|0|||||||||||||||| +21|2023-10-06T22:02:10.4570000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30790000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10853580|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2000|10000|||82.44|93.58|0.00|2.23|00010F77|0|1| +37|2023-10-06T22:02:10.5030000-07:00|40021585|Zeromus|00010F6D|10839007||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:10.1620000-07:00|Change|10FF0004||| +21|2023-10-06T22:02:10.5460000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2C440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10853580|40478540|10000|10000|||100.00|80.10|0.00|0.00|94436|129844|10000|10000|||83.30|92.33|0.00|2.20|00010F78|0|1| +21|2023-10-06T22:02:10.6360000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|556003|86A00000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|10839007|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||83.94|92.36|0.00|-0.78|00010F79|0|1| +38|2023-10-06T22:02:10.6360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||83.94|92.36|0.00|-0.78|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:10.6360000-07:00|7A2|Bunshin|17.23|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +30|2023-10-06T22:02:10.6360000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T22:02:10.7240000-07:00|40021932|Bunshin|6517|Fleeting Raiju|40021585|Zeromus|554003|146C0000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|10839007|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||83.95|92.39|0.00|2.22|00010F7A|0|1| +261|2023-10-06T22:02:10.3860000-07:00|Change|40021932||||||||| +04|2023-10-06T22:02:10.4900000-07:00|4002192D|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||118.00|119.68|0.00|-2.23| +261|2023-10-06T22:02:10.4900000-07:00|Remove|4002192D| +39|2023-10-06T22:02:10.8140000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||81.60|91.86|0.00|2.14| +37|2023-10-06T22:02:10.8580000-07:00|40021585|Zeromus|00010F76|10838857||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:10.5930000-07:00|Change|4002194C||| +21|2023-10-06T22:02:10.9930000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3DFC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|94436|129844|10000|10000|||83.88|92.87|0.00|1.63|10838857|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010F7B|0|1| +21|2023-10-06T22:02:10.9930000-07:00|10FF000B|Pusu Rosu|7D|Raise|10FF0003|Gegehi Gehi|814000E|940000|1B|7D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|0|10000|||105.36|93.86|0.00|-0.67|79209|79209|9600|10000|||81.93|91.69|0.00|1.69|00010F7C|0|1| +38|2023-10-06T22:02:10.9930000-07:00|40021585|Zeromus|005A5A00|10838857|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||| +30|2023-10-06T22:02:10.9930000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +38|2023-10-06T22:02:10.9930000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|0||81.93|91.69|0.00|1.69|0|0|0|||||||||| +30|2023-10-06T22:02:10.9930000-07:00|4C1|Thin Air|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +30|2023-10-06T22:02:10.9930000-07:00|A7|Swiftcast|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:02:11.0370000-07:00|40021951|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|450003|67D30000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|10838857|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||81.39|94.02|0.00|2.14|00010F7D|0|1| +38|2023-10-06T22:02:11.0810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|0||82.44|93.58|0.00|2.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:02:11.1690000-07:00|40021585|Zeromus|00010F78|10827525||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:11.2140000-07:00|40021585|Zeromus|00010F74|10813652||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:11.2140000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6500|10000|||84.81|93.80|0.00|0.97| +21|2023-10-06T22:02:11.2140000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|E640000|131E0E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|10827525|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||81.60|91.86|0.00|2.14|00010F7E|0|1| +37|2023-10-06T22:02:11.2590000-07:00|40021585|Zeromus|00010F77|10801243||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:11.0280000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:02:11.0280000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:02:11.3480000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||81.93|91.69|0.00|1.49| +39|2023-10-06T22:02:11.3480000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||84.26|93.21|0.00|0.90| +37|2023-10-06T22:02:11.3920000-07:00|40021585|Zeromus|00010F79|10766779||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:11.4370000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|35590000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|10801243|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6500|10000|||85.33|94.22|0.00|0.96|00010F7F|0|1| +261|2023-10-06T22:02:11.2520000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:02:11.4370000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|38290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10761551|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||84.55|94.05|0.00|2.33|00010F80|0|1| +38|2023-10-06T22:02:11.4370000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6200|10000|19||85.78|94.55|0.00|2.39|0|0|0|||||||||||||||| +26|2023-10-06T22:02:11.4370000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:02:11.4370000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||84.55|94.05|0.00|2.33|0|0|0|||||||||||||||| +30|2023-10-06T22:02:11.4370000-07:00|A81|Meisui|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:02:11.4810000-07:00|40021585|Zeromus|00010F7A|10761551||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:11.4810000-07:00|10FF0007|Kehabiqo Febiqo|95734|129844|10000|10000|||86.63|94.38|0.00|1.50| +21|2023-10-06T22:02:11.4810000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|724003|75AD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10761551|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.22|91.48|0.00|2.12|00010F81|0|1| +21|2023-10-06T22:02:11.5250000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9730000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10761551|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||81.22|91.48|0.00|2.12|00010F82|0|1| +261|2023-10-06T22:02:11.2520000-07:00|Change|10FF0004||||||||||| +04|2023-10-06T22:02:11.4680000-07:00|40021925|Toxic Bubble|00|5A|0000|00||12588|16559|69200|69200|10000|10000|||89.98|119.68|0.00|-2.89| +261|2023-10-06T22:02:11.4680000-07:00|Remove|40021925| +261|2023-10-06T22:02:11.4680000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:02:11.5610000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:02:11.7480000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10761551|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2150|10000|||84.79|94.70|0.00|1.00|00010F83|0|1| +37|2023-10-06T22:02:11.7940000-07:00|10FF0007|Kehabiqo Febiqo|00010F7B|79866||||||88.31|94.40|0.00|1.49| +21|2023-10-06T22:02:11.8820000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10761551|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||81.72|91.99|0.00|0.78|00010F84|0|1| +31|2023-10-06T22:02:11.8820000-07:00|10FF0001||||| +21|2023-10-06T22:02:11.9270000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|BA80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10761551|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||85.98|95.34|0.00|2.44|00010F85|0|1| +37|2023-10-06T22:02:12.0610000-07:00|40021585|Zeromus|00010F7F|10747894||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:12.0610000-07:00|10FF0006|Wowobora Gogobora|00010F7F|81809|81809|6200|10000|19||88.16|95.36|0.00|2.14|1B00|0|0|01|01000B25|0|0|| +37|2023-10-06T22:02:12.0610000-07:00|40021585|Zeromus|00010F80|10733517||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:12.0610000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|85.55|95.08|0.00|1.12| +38|2023-10-06T22:02:12.0610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6200|10000|19||88.16|95.36|0.00|2.14|0|0|0|||||||||||||||| +39|2023-10-06T22:02:12.1050000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2350|10000|||85.92|95.27|-0.02|1.09| +37|2023-10-06T22:02:12.1500000-07:00|10FF0003|Gegehi Gehi|00010F7C|0|73814|0|10000|0||105.36|93.86|0.00|-0.67|2300|0|0|01|01000094|08|42700000|| +26|2023-10-06T22:02:12.1500000-07:00|94|Raise|60.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|08|73814|79209| +39|2023-10-06T22:02:12.1500000-07:00|40021932|Bunshin|76288|79156|10000|10000|||83.95|92.39|0.00|2.22| +21|2023-10-06T22:02:12.1500000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|454003|21130000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10733517|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6200|10000|||88.76|95.63|0.00|1.83|00010F86|0|1| +38|2023-10-06T22:02:12.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6200|10000|19||88.76|95.63|0.00|1.83|0|0|0|||||||||||||||| +30|2023-10-06T22:02:12.1500000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:02:11.8820000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:02:12.2390000-07:00|40021585|Zeromus|00010F7E|10729833|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|010000F8|0|41700000|| +26|2023-10-06T22:02:12.2390000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +21|2023-10-06T22:02:12.2390000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|E6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10733517|40478540|10000|10000|||100.00|80.10|0.00|0.00|79866|129844|10000|10000|||90.51|94.52|0.00|1.50|00010F87|0|1| +37|2023-10-06T22:02:12.2840000-07:00|40021585|Zeromus|00010F82|10727414||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:12.2840000-07:00|40021585|Zeromus|00010F83|10727169||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:12.3280000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|2FFB0000|143E|340000|4|17448000|11B|2A8000|0|0|0|0|0|0|0|0|10727169|40478540|10000|10000|||100.00|80.10|0.00|0.00|79866|129844|10000|10000|||91.33|94.55|0.00|1.54|00010F88|0|1| +37|2023-10-06T22:02:12.4170000-07:00|40021585|Zeromus|00010F84|10725354||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:12.1130000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:02:12.4180000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|30430000|4|25098000|0|0|0|0|0|0|0|0|0|0|0|0|10727169|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||84.12|93.95|0.00|1.02|00010F89|0|1| +38|2023-10-06T22:02:12.4180000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||84.12|93.95|0.00|1.02|0|0|0||||||||||||| +30|2023-10-06T22:02:12.4180000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:02:12.1130000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:02:12.4620000-07:00|40021585|Zeromus|00010F85|10722370||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:12.5060000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|28050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10722370|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||90.32|97.86|0.00|2.43|00010F8A|0|1| +261|2023-10-06T22:02:12.2310000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:02:12.6390000-07:00|40021585|Zeromus|00010F81|10692245||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:12.3510000-07:00|Change|10FF000B||||||||||||| +24|2023-10-06T22:02:12.6840000-07:00|40021585|Zeromus|DoT|0|1AD2|10722370|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||85.30|94.51|0.00|1.26| +38|2023-10-06T22:02:12.6840000-07:00|40021585|Zeromus|005A5A00|10685379|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T22:02:12.7740000-07:00|40021585|Zeromus|00010F87|10681685||||||100.00|80.10|0.00|0.00| +04|2023-10-06T22:02:12.4500000-07:00|4002192B|Toxic Bubble|00|5A|0000|00||12588|16559|0|69200|0|10000|||109.97|88.58|0.00|0.02| +04|2023-10-06T22:02:12.4500000-07:00|4002194C|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||83.85|91.33|0.00|-1.00| +261|2023-10-06T22:02:12.5510000-07:00|Remove|4002192B| +261|2023-10-06T22:02:12.5510000-07:00|Remove|4002194C| +261|2023-10-06T22:02:12.6500000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:02:12.9060000-07:00|40021585|Zeromus|00010F86|10673218||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:12.6500000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:02:12.9950000-07:00|40021585|Zeromus|00010F7D|10646639||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:12.9950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|32A20000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10681685|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2350|10000|||86.63|95.63|0.00|2.43|00010F8B|0|1| +21|2023-10-06T22:02:13.0410000-07:00|10FF0007|Kehabiqo Febiqo|DE0|Equilibrium|10FF0007|Kehabiqo Febiqo|200004|B4D10000|1CFC0F|A798000|0|0|0|0|0|0|0|0|0|0|0|0|79866|129844|10000|10000|||93.92|94.60|0.00|2.19|79866|129844|10000|10000|||93.92|94.60|0.00|2.19|00010F8C|0|1| +261|2023-10-06T22:02:12.7490000-07:00|Change|40021932||| +37|2023-10-06T22:02:13.1280000-07:00|40021585|Zeromus|00010F8A|10636394||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:13.1730000-07:00|40021585|Zeromus|00010F89|10624039||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:13.1730000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||81.29|91.51|0.00|1.69| +261|2023-10-06T22:02:12.8640000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:02:13.2620000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|2D590000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|10636394|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||88.28|93.87|0.00|1.79|00010F8D|0|1| +261|2023-10-06T22:02:13.0900000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:02:13.3500000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||92.62|98.96|0.00|2.58|83502|83502|10000|10000|||92.62|98.96|0.00|2.58|00010F8E|0|1| +38|2023-10-06T22:02:13.3500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||92.62|98.96|0.00|2.58|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:13.3500000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T22:02:13.4830000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10624039|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6200|10000|||94.88|98.42|0.00|1.23|00010F8F|0|1| +21|2023-10-06T22:02:13.5270000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|AB00000|BDF50E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|10624039|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9881|10000|||90.08|99.28|0.00|0.81|00010F90|0|1| +261|2023-10-06T22:02:13.2040000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:02:13.2990000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:02:13.3890000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:02:13.6620000-07:00|40021585|Zeromus|00010F8D|10612430||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:13.6620000-07:00|10FF0001|Sesuga Sapisuga|00010F8D|129071|129071|9500|10000|0||90.89|93.32|0.00|1.76|1300|0|0|0| +37|2023-10-06T22:02:13.7060000-07:00|10FF0007|Kehabiqo Febiqo|00010F8C|126155|129844|10000|10000|0||98.08|94.44|0.00|1.64|1500|0|0|01|02000A79|0|41700000|| +26|2023-10-06T22:02:13.7060000-07:00|A79|Equilibrium|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:02:13.3890000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:02:13.7940000-07:00|40021585|Zeromus|00010F8B|10599468||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:13.7940000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9700|10000|||91.47|93.20|0.00|1.76| +37|2023-10-06T22:02:13.8390000-07:00|40021585|Zeromus|00010F88|10587185||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:13.8390000-07:00|10FF0007|Kehabiqo Febiqo|00010F88|129844||||||98.70|94.69|0.00|1.91| +21|2023-10-06T22:02:13.8390000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||95.02|99.93|-0.02|2.42|83502|83502|10000|10000|||95.02|99.93|-0.02|2.42|00010F91|0|1| +38|2023-10-06T22:02:13.8390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.02|99.93|-0.02|2.42|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:13.8390000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +21|2023-10-06T22:02:13.9280000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|454003|48660000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|10587185|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5900|10000|||97.38|100.53|-0.02|3.05|00010F92|0|1| +38|2023-10-06T22:02:13.9280000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5900|10000|19||97.38|100.53|-0.02|3.05|0|0|0|||||||||||||||| +26|2023-10-06T22:02:13.9280000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:02:14.0160000-07:00|40021585|Zeromus|00010F8F|10586983||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:14.0160000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|397D0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|10587185|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||86.39|93.16|0.00|1.56|00010F93|0|1| +21|2023-10-06T22:02:14.0160000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3EDE0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.71|95.38|0.00|2.59|10587185|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010F94|0|1| +38|2023-10-06T22:02:14.0610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2500|10000|0||90.14|96.50|0.00|1.36|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:02:14.1050000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AB70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10587185|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.02|99.93|0.00|2.42|00010F95|0|1| +261|2023-10-06T22:02:13.7670000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:02:13.8770000-07:00|Change|10FF0001||||||||||| +21|2023-10-06T22:02:14.1500000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10586983|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9700|10000|||94.08|92.70|0.00|1.76|00010F96|0|1| +38|2023-10-06T22:02:14.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5900|10000|19||97.73|101.00|0.00|3.05|0|0|0|||||||||||||||| +31|2023-10-06T22:02:14.1500000-07:00|10FF0001||||| +39|2023-10-06T22:02:14.1940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6100|10000|||97.73|101.00|0.00|3.05| +21|2023-10-06T22:02:14.1940000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E8C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10586983|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||87.09|93.39|0.00|2.34|00010F97|0|1| +261|2023-10-06T22:02:13.9870000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T22:02:14.3720000-07:00|10FF000B|Pusu Rosu|79209|79209|9762|10000|||94.92|99.20|0.00|1.81| +39|2023-10-06T22:02:14.3720000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||95.02|99.93|-0.02|2.42| +261|2023-10-06T22:02:14.1050000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:02:14.4180000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|550003|4C480000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|10586983|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.02|99.93|-0.02|2.42|00010F98|0|1| +38|2023-10-06T22:02:14.4180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.02|99.93|-0.02|2.42|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:14.4180000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:02:14.4180000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +39|2023-10-06T22:02:14.4610000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||100.27|95.75|0.00|2.96| +261|2023-10-06T22:02:14.2220000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:02:14.5510000-07:00|40021585|Zeromus|00010F92|10568449||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:14.5510000-07:00|10FF0006|Wowobora Gogobora|00010F92|81809|81809|6100|10000|19||98.07|101.46|0.00|3.05|1B00|0|0|01|01000B25|0|0|| +24|2023-10-06T22:02:14.5510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|12D8|129844|129844|10000|10000|||100.27|95.75|0.00|2.96|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||100.27|95.75|0.00|2.96| +21|2023-10-06T22:02:14.5510000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|452003|28050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10586983|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6100|10000|||98.07|101.46|0.00|3.05|00010F99|0|1| +38|2023-10-06T22:02:14.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.27|95.75|0.00|2.96|0|0|0||||||||||||||||||| +38|2023-10-06T22:02:14.5510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6100|10000|19||98.07|101.46|0.00|3.05|0|0|0|||||||||||||||| +30|2023-10-06T22:02:14.5510000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:02:14.6390000-07:00|40021585|Zeromus|00010F95|10565706||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:14.6400000-07:00|10FF000A|Dukaro Nezikaro|00010F95|83502|83502|10000|10000|0||95.02|99.93|0.00|2.90|1E00|0|0|01|05000A82|01|C1F00000|| +261|2023-10-06T22:02:14.3150000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:02:14.6840000-07:00|40021585|Zeromus|00010F96|10563937||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:14.7740000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|17390000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|10565706|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.27|95.75|0.00|2.96|00010F9A|0|1| +21|2023-10-06T22:02:14.7740000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F840E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|10565706|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2500|10000|||93.99|97.37|0.00|1.36|00010F9B|0|1| +37|2023-10-06T22:02:14.8180000-07:00|40021585|Zeromus|00010F93|10549220||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:14.8180000-07:00|10FF0007|Kehabiqo Febiqo|00010F94|113750||||||100.27|95.75|0.00|-3.12| +37|2023-10-06T22:02:14.8180000-07:00|40021585|Zeromus|00010F90|10546484|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200074F|0|41F00000|| +26|2023-10-06T22:02:14.8180000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +21|2023-10-06T22:02:14.9080000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|14520000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|10546484|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9700|10000|||98.49|91.60|0.00|1.87|00010F9C|0|1| +37|2023-10-06T22:02:14.9520000-07:00|40021585|Zeromus|00010F97|10542760||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:14.5930000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:02:14.6840000-07:00|Change|10FF0001||||||||| +38|2023-10-06T22:02:15.0410000-07:00|40021951|Topaz Titan|005A5A00|0|77698|0|10000|0||81.39|94.02|0.00|2.14|0|0|0||||||| +26|2023-10-06T22:02:15.0410000-07:00|30|Well Fed|547.60|10FF0006|Wowobora Gogobora|40021951|Topaz Titan|2964|77698|81809| +261|2023-10-06T22:02:14.6840000-07:00|Change|40021951||||| +261|2023-10-06T22:02:14.6840000-07:00|Change|40021951||||| +38|2023-10-06T22:02:15.0870000-07:00|4002195D||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T22:02:15.0870000-07:00|4002195D||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T22:02:15.1290000-07:00|40021585|Zeromus|00010F98|10523232||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:15.1300000-07:00|10FF000A|Dukaro Nezikaro|00010F98|83502|83502|10000|10000|0||96.03|100.10|0.00|2.64|1E00|0|0|01|05000A82|01|41F00000|| +39|2023-10-06T22:02:15.1300000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2300|10000|||94.61|97.50|0.00|2.84| +38|2023-10-06T22:02:15.1300000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||96.03|100.10|0.00|2.64|0|0|0||||||||||||||||||| +39|2023-10-06T22:02:15.1760000-07:00|40021932|Bunshin|76288|79156|10000|10000|||83.95|92.39|0.00|2.22| +261|2023-10-06T22:02:14.7990000-07:00|Add|4002195D||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:02:14.9120000-07:00|4002195D|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||98.25|99.74|0.00|-0.09| +261|2023-10-06T22:02:14.9120000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:02:14.9120000-07:00|Change|4002195D||| +37|2023-10-06T22:02:15.3080000-07:00|40021585|Zeromus|00010F9A|10517287||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:15.3080000-07:00|40021585|Zeromus|00010F99|10507042||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:15.0240000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:02:15.0240000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:15.3970000-07:00|40021585|Zeromus|00010F9B|10507042|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T22:02:15.3970000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +38|2023-10-06T22:02:15.4850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6100|10000|0||98.07|101.46|0.00|3.05|0|0|0|||||||||||||||| +30|2023-10-06T22:02:15.4850000-07:00|A8E|Radiant Aegis|0.00|40021918|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +37|2023-10-06T22:02:15.5300000-07:00|40021585|Zeromus|00010F9C|10501840||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:15.6190000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10501840|40478540|10000|10000|||100.00|80.10|0.00|0.00|113750|129844|10000|10000|||100.27|95.75|0.00|-3.12|00010F9D|0|1| +24|2023-10-06T22:02:15.6640000-07:00|40021585|Zeromus|DoT|0|1CDD|10501840|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9762|10000|||100.55|100.25|0.00|1.31| +38|2023-10-06T22:02:15.6640000-07:00|40021585|Zeromus|005A5A00|10494451|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:02:15.5290000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:15.5290000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:02:15.8860000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|FE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10494451|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2300|10000|||99.28|99.20|0.00|1.30|00010F9E|0|1| +20|2023-10-06T22:02:15.9760000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.69|100.21|0.00|1.49| +21|2023-10-06T22:02:15.9760000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|554003|54B10000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|10494451|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.41|100.45|-0.02|2.85|00010F9F|0|1| +38|2023-10-06T22:02:15.9760000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||98.41|100.45|-0.02|2.85|0|0|0||||||||||||| +30|2023-10-06T22:02:15.9760000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +30|2023-10-06T22:02:15.9760000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:02:15.6230000-07:00|Change|40021932||||||||| +21|2023-10-06T22:02:16.0640000-07:00|40021932|Bunshin|6517|Fleeting Raiju|40021585|Zeromus|550003|11230000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|10494451|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||98.42|100.46|0.00|3.06|00010FA0|0|1| +34|2023-10-06T22:02:16.1080000-07:00|4002195D|Carbuncle|4002195D|Carbuncle|01| +261|2023-10-06T22:02:15.8180000-07:00|Change|40021932||| +261|2023-10-06T22:02:15.8180000-07:00|Change|4002195D||| +37|2023-10-06T22:02:16.1530000-07:00|40021585|Zeromus|00010F9D|10491505||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:16.1530000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||97.94|99.02|1.35|0.96| +21|2023-10-06T22:02:16.2870000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10494451|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.41|100.45|0.00|3.06|00010FA1|0|1| +261|2023-10-06T22:02:15.9380000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:02:16.4220000-07:00|40021585|Zeromus|00010F9E|10491251||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:16.4220000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|365E0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|10491505|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6100|10000|||98.38|99.60|0.00|2.90|00010FA2|0|1| +21|2023-10-06T22:02:16.4220000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|9200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10491505|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9700|10000|||107.07|89.30|0.00|2.52|00010FA3|0|1| +38|2023-10-06T22:02:16.4220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5800|10000|0||98.38|99.60|0.00|2.90|0|0|0|||||||||||||||| +26|2023-10-06T22:02:16.4220000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +31|2023-10-06T22:02:16.4220000-07:00|10FF0001||||| +261|2023-10-06T22:02:16.0570000-07:00|Change|10FF0006||||||||| +21|2023-10-06T22:02:16.5100000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|64500000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|10491505|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.71|99.59|1.79|0.95|00010FA4|0|1| +21|2023-10-06T22:02:16.6440000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10491251|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5800|10000|||98.47|99.11|0.00|3.06|00010FA5|0|1| +37|2023-10-06T22:02:16.7320000-07:00|40021585|Zeromus|00010F9F|10469570||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:16.3610000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:16.3610000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:02:16.8210000-07:00|40021585|Zeromus|00010FA0|10465183||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:16.8210000-07:00|40021585|Zeromus|00010FA1|10462935||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:16.8210000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9900|10000|||108.97|88.72|0.00|2.81| +27|2023-10-06T22:02:16.8650000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|016C|0000|0000|0000| +27|2023-10-06T22:02:16.8650000-07:00|10FF0001|Sesuga Sapisuga|0000|0000|016C|0000|0000|0000| +21|2023-10-06T22:02:16.8650000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10462935|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.37|100.36|0.00|2.73|00010FA6|0|1| +21|2023-10-06T22:02:16.9100000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|35630000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|10462935|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9762|10000|||100.69|100.21|0.00|-3.11|00010FA7|0|1| +37|2023-10-06T22:02:16.9540000-07:00|40021585|Zeromus|00010FA3|10460599||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:16.9540000-07:00|40021585|Zeromus|8B83|Dark Matter|40021585|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:16.5510000-07:00|Change|40021585||||||||| +37|2023-10-06T22:02:17.0890000-07:00|40021585|Zeromus|00010FA2|10446681||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:17.0890000-07:00|10FF0006|Wowobora Gogobora|00010FA2|81809|81809|5800|10000|0||98.56|98.65|0.00|3.06|1B00|0|0|01|01000B25|0|0|| +21|2023-10-06T22:02:17.0890000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|19C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10460599|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5800|10000|||98.56|98.65|0.00|3.06|00010FA8|0|1| +38|2023-10-06T22:02:17.0890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5800|10000|0||98.56|98.65|0.00|3.06|0|0|0|||||||||||||||| +30|2023-10-06T22:02:17.0890000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:02:17.0890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2850|10000|0||100.66|99.63|0.00|-3.08|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:02:16.7360000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:17.1780000-07:00|40021585|Zeromus|00010FA5|10446530||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:17.1780000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6000|10000|||98.56|98.65|0.00|3.06| +20|2023-10-06T22:02:17.1780000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.66|99.63|0.00|-3.08| +261|2023-10-06T22:02:16.7360000-07:00|Change|10FF0006||||||| +21|2023-10-06T22:02:17.2230000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|356F0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|10446530|40478540|10000|10000|||100.00|80.10|0.00|0.00|113750|129844|10000|10000|||98.45|91.92|-0.02|3.06|00010FA9|0|1| +37|2023-10-06T22:02:17.3130000-07:00|40021585|Zeromus|00010FA4|10420850||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:17.3570000-07:00|10FF000B|Pusu Rosu|79209|79209|9643|10000|||100.69|100.21|0.00|-3.11| +39|2023-10-06T22:02:17.3570000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||98.41|100.45|0.00|3.06| +261|2023-10-06T22:02:16.9710000-07:00|Change|10FF000B||||||||||||||||| +21|2023-10-06T22:02:17.4010000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|20A20000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|10446530|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9900|10000|||110.73|87.66|0.00|3.07|00010FAA|0|1| +39|2023-10-06T22:02:17.4900000-07:00|10FF0007|Kehabiqo Febiqo|115048|129844|10000|10000|||98.41|91.89|0.00|3.00| +24|2023-10-06T22:02:17.5790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1294|115048|129844|10000|10000|||98.39|91.88|0.00|3.00|10FF0007|Kehabiqo Febiqo|0|115048|129844|10000|10000|||98.39|91.88|0.00|3.00| +38|2023-10-06T22:02:17.5790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119804|129844|10000|10000|0||98.39|91.88|0.00|3.00|0|0|0||||||||||||||||||| +37|2023-10-06T22:02:17.6240000-07:00|40021585|Zeromus|00010FA6|10418034||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:17.2990000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T22:02:17.7120000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|6000|10000|||98.56|98.65|0.00|3.06|81809|81809|6000|10000|||98.56|98.65|0.00|3.06|00010FAB|0|1| +261|2023-10-06T22:02:17.3960000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:02:17.8470000-07:00|40021585|Zeromus|00010FA9|10404355||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:17.8470000-07:00|40021585|Zeromus|00010FA8|10397759||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:17.8910000-07:00|10FF0003|Gegehi Gehi|005A5A23|14762|73814|2000|10000|0||84.62|93.89|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:02:17.8910000-07:00|94|Raise|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|08|73814|79209| +26|2023-10-06T22:02:17.8910000-07:00|2B|Weakness|100.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +26|2023-10-06T22:02:17.8910000-07:00|1A2|Transcendent|5.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T22:02:17.4940000-07:00|Change|10FF0003||| +261|2023-10-06T22:02:17.4940000-07:00|Change|10FF0003||| +39|2023-10-06T22:02:18.1130000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3050|10000|||100.66|99.63|0.00|-3.11| +21|2023-10-06T22:02:18.1130000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31970000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10397759|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2850|10000|||100.66|99.63|0.00|-3.11|00010FAC|0|1| +37|2023-10-06T22:02:18.1580000-07:00|40021585|Zeromus|00010FAA|10389405||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:18.1580000-07:00|10FF0001|Sesuga Sapisuga|00010FAA|129071|129071|10000|10000|0||110.88|87.31|0.00|3.06|1300|0|0|0| +39|2023-10-06T22:02:18.1580000-07:00|40021932|Bunshin|76288|79156|10000|10000|||98.42|100.46|0.00|3.06| +21|2023-10-06T22:02:18.1580000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|31400000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|10397759|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.41|100.45|0.00|3.06|00010FAD|0|1| +37|2023-10-06T22:02:18.2020000-07:00|40021585|Zeromus|00010FA7|10375738||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:18.3350000-07:00|10FF0006|Wowobora Gogobora|00010FAB|81809|81809|6000|10000|0||99.20|99.33|0.00|1.49|1B00|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T22:02:18.3350000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:02:17.9250000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:02:18.3800000-07:00|10FF0001|Sesuga Sapisuga|11|Sentinel|10FF0001|Sesuga Sapisuga|E20E|4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||110.88|87.31|0.00|3.06|129071|129071|10000|10000|||110.88|87.31|0.00|3.06|00010FAE|0|1| +261|2023-10-06T22:02:18.0400000-07:00|Change|40021932||| +39|2023-10-06T22:02:18.4690000-07:00|10FF0003|Gegehi Gehi|15500|73814|2200|10000|||84.62|93.89|0.00|0.00| +21|2023-10-06T22:02:18.4690000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10375738|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.41|100.45|0.00|3.06|00010FAF|0|1| +261|2023-10-06T22:02:18.1610000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:02:18.5590000-07:00|40021585|Zeromus|00010FAD|10363130||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:18.5590000-07:00|10FF0007|Kehabiqo Febiqo|2C|Vengeance|10FF0007|Kehabiqo Febiqo|6400E20E|590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|119804|129844|10000|10000|||95.81|89.74|0.00|3.06|119804|129844|10000|10000|||95.81|89.74|0.00|3.06|00010FB0|0|1| +21|2023-10-06T22:02:18.6040000-07:00|10FF000B|Pusu Rosu|4093|Afflatus Solace|10FF0003|Gegehi Gehi|4|65960000|13E|EE8000|1B|40938000|0|0|0|0|0|0|0|0|0|0|15500|73814|2200|10000|||84.62|93.92|0.00|0.38|79209|79209|9643|10000|||100.37|102.87|0.00|-0.20|00010FB1|0|1| +24|2023-10-06T22:02:18.6480000-07:00|40021585|Zeromus|DoT|0|1AAA|10375738|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9643|10000|||100.37|102.87|0.00|-0.20| +38|2023-10-06T22:02:18.6480000-07:00|40021585|Zeromus|005A5A00|10356304|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:02:18.2590000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T22:02:18.6940000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10356304|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||110.89|87.15|0.00|3.10|00010FB2|0|1| +31|2023-10-06T22:02:18.6940000-07:00|10FF0001||||| +04|2023-10-06T22:02:18.3580000-07:00|40021951|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||81.39|94.02|0.00|2.14| +04|2023-10-06T22:02:18.3580000-07:00|40021932|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||98.42|100.46|0.00|3.06| +261|2023-10-06T22:02:18.3580000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:18.3580000-07:00|Change|10FF000B||||||||||||| +261|2023-10-06T22:02:18.3580000-07:00|Remove|40021932| +261|2023-10-06T22:02:18.3580000-07:00|Remove|40021951| +21|2023-10-06T22:02:18.8720000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|454003|44280000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|10356304|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6000|10000|||100.80|101.40|0.00|0.74|00010FB3|0|1| +38|2023-10-06T22:02:18.8720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5700|10000|0||100.80|101.40|0.00|0.74|0|0|0|||||||||||||||| +26|2023-10-06T22:02:18.8720000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:02:18.5450000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:18.9170000-07:00|10FF0001|Sesuga Sapisuga|00010FAE|129071|129071|10000|10000|0||110.89|87.15|0.00|3.10|1300|0|0|01|0200004A|0|41700000|| +26|2023-10-06T22:02:18.9170000-07:00|4A|Sentinel|15.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:02:18.9170000-07:00|40021585|Zeromus|00010FAC|10343609||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:19.0060000-07:00|40021585|Zeromus|00010FAF|10339994||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:19.0060000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|C290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10343609|40478540|10000|10000|||100.00|80.10|0.00|0.00|119804|129844|10000|10000|||95.38|89.69|0.00|3.06|00010FB4|0|1| +21|2023-10-06T22:02:19.0060000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1F220000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|10343609|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.42|100.42|0.00|0.71|00010FB5|0|1| +37|2023-10-06T22:02:19.1400000-07:00|10FF0003|Gegehi Gehi|00010FB1|41506||||||85.42|96.43|0.00|1.74| +39|2023-10-06T22:02:19.1400000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.42|100.44|0.00|-3.12| +37|2023-10-06T22:02:19.1840000-07:00|10FF0007|Kehabiqo Febiqo|00010FB0|119804|129844|10000|10000|0||95.35|89.67|0.00|3.06|1500|0|0|01|04000059|64|41700000|| +26|2023-10-06T22:02:19.1840000-07:00|59|Vengeance|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|129844|129844| +37|2023-10-06T22:02:19.2290000-07:00|40021585|Zeromus|00010FB2|10338290||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:19.4980000-07:00|40021585|Zeromus|00010FB3|10320842||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:19.4980000-07:00|10FF0006|Wowobora Gogobora|00010FB3|81809|81809|5700|10000|0||101.12|101.88|0.00|-3.09|1B00|0|0|01|03000B25|0|0|| +26|2023-10-06T22:02:19.4980000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +22|2023-10-06T22:02:19.4980000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2650|10000|||100.99|99.48|0.00|2.35|81541|81541|2650|10000|||100.99|99.48|0.00|2.35|00010FB6|0|1| +38|2023-10-06T22:02:19.4980000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5700|10000|0||101.12|101.88|0.00|-3.09|0|0|0|||||||||||||||| +261|2023-10-06T22:02:19.1320000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:02:19.5410000-07:00|40021585|Zeromus|00010FB4|10317729||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:19.5410000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10320842|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.42|100.48|0.00|-3.12|00010FB7|0|1| +21|2023-10-06T22:02:19.5410000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|19320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10320842|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5700|10000|||101.12|101.88|0.00|-3.09|00010FB8|0|1| +38|2023-10-06T22:02:19.5410000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5700|10000|0||101.12|101.88|0.00|-3.09|0|0|0|||||||||||||||| +30|2023-10-06T22:02:19.5410000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T22:02:19.6750000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|327F0000|143E|340000|4|17C38000|11B|2A8000|0|0|0|0|0|0|0|0|10317729|40478540|10000|10000|||100.00|80.10|0.00|0.00|119804|129844|10000|10000|||93.61|87.61|0.00|3.01|00010FB9|0|1| +37|2023-10-06T22:02:19.7640000-07:00|40021585|Zeromus|00010FB5|10309759||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:19.7640000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|1030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10317729|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5700|10000|||101.12|101.88|0.00|-3.09|00010FBA|0|1| +39|2023-10-06T22:02:19.8090000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||110.88|87.00|0.00|-3.09| +261|2023-10-06T22:02:19.4380000-07:00|Change|10FF000B||||||||||||| +21|2023-10-06T22:02:19.8980000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41712003|46540000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|10309759|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||110.88|87.00|0.00|-2.14|00010FBB|0|1| +38|2023-10-06T22:02:19.8980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||110.88|87.00|0.00|-2.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:19.8980000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:02:19.8980000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T22:02:20.0320000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10309759|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2650|10000|||101.44|99.06|0.00|2.30|00010FBC|0|1| +21|2023-10-06T22:02:20.0320000-07:00|10FF000B|Pusu Rosu|6505|Aquaveil|10FF0007|Kehabiqo Febiqo|F10E|A940000|1B|65058000|0|0|0|0|0|0|0|0|0|0|0|0|119804|129844|10000|10000|||93.33|87.14|0.00|2.62|79209|79209|9643|10000|||100.30|103.49|0.00|-1.82|00010FBD|0|1| +38|2023-10-06T22:02:20.0760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3200|10000|0||101.44|99.06|0.00|2.30|0|0|0|||||||||||||||||||||| +24|2023-10-06T22:02:20.1210000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D0B|81541|81541|2650|10000|||101.44|99.06|0.00|2.30|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||101.44|99.06|0.00|2.30| +24|2023-10-06T22:02:20.1210000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1512|119804|129844|10000|10000|||93.33|87.14|0.00|2.62|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||101.44|99.06|0.00|2.30| +24|2023-10-06T22:02:20.1210000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D9E|90216|90216|10000|10000|||100.42|100.48|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||101.44|99.06|0.00|2.30| +24|2023-10-06T22:02:20.1210000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|1515|83502|83502|10000|10000|||100.21|100.60|0.00|3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||101.44|99.06|0.00|2.30| +24|2023-10-06T22:02:20.1210000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D9D|129071|129071|10000|10000|||110.88|87.00|0.00|-2.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||101.44|99.06|0.00|2.30| +24|2023-10-06T22:02:20.1210000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15C6|81809|81809|5700|10000|||101.12|101.88|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||101.44|99.06|0.00|2.30| +24|2023-10-06T22:02:20.1210000-07:00|10FF000B|Pusu Rosu|HoT|798|160F|79209|79209|9643|10000|||100.30|103.49|0.00|-1.82|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2650|10000|||101.44|99.06|0.00|2.30| +37|2023-10-06T22:02:20.1210000-07:00|10FF0004|Buhojaqe Zijaqe|00010FB6|81541|81541|3200|10000|0||101.44|99.06|0.00|2.30|1C00|0|0|02|07000798|0|41700000|||||| +26|2023-10-06T22:02:20.1210000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T22:02:20.1210000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:02:19.8090000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T22:02:20.1210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125198|129844|10000|10000|0||93.33|87.14|0.00|2.62|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:20.1210000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:02:20.1210000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.42|100.48|0.00|-3.12|0|0|0||||||||||||| +26|2023-10-06T22:02:20.1210000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:20.1210000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5700|10000|0||101.12|101.88|0.00|-3.09|0|0|0|||||||||||||||| +26|2023-10-06T22:02:20.1210000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:20.1210000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||110.88|87.00|0.00|-2.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:20.1210000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:02:20.1210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3200|10000|0||101.44|99.06|0.00|2.30|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:02:20.1210000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9643|10000|0||100.30|103.49|0.00|-1.82|0|0|0||||||||||||| +26|2023-10-06T22:02:20.1210000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:20.1210000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||100.21|100.60|0.00|3.06|0|0|0|||||||||||||||| +26|2023-10-06T22:02:20.1210000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T22:02:19.8090000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T22:02:20.1650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6250|10000|0||101.12|101.88|0.00|-3.09|0|0|0|||||||||||||||| +39|2023-10-06T22:02:20.2090000-07:00|10FF0006|Wowobora Gogobora|81809|81809|6450|10000|||101.12|101.88|0.00|-3.09| +37|2023-10-06T22:02:20.2980000-07:00|40021585|Zeromus|00010FB7|10306061||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:20.2980000-07:00|40021585|Zeromus|00010FB8|10299611||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:20.2980000-07:00|40021585|Zeromus|00010FBA|10299352||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:20.3430000-07:00|10FF000B|Pusu Rosu|79209|79209|9924|10000|||100.30|103.50|0.00|-2.24| +39|2023-10-06T22:02:20.3430000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||100.21|100.60|0.00|3.06| +21|2023-10-06T22:02:20.3880000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|30190000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|10299352|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.21|100.60|0.00|3.06|00010FBE|0|1| +261|2023-10-06T22:02:20.0340000-07:00|Add|40021976||||||||||||||||||||||||||| +261|2023-10-06T22:02:20.0340000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:02:20.4770000-07:00|40021585|Zeromus|00010FBB|10281348||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:20.4770000-07:00|10FF0001|Sesuga Sapisuga|00010FBB|129071|129071|10000|10000|0||110.88|87.00|0.00|-2.14|1300|0|0|02|0400076E|03|41F00000|||||| +39|2023-10-06T22:02:20.4770000-07:00|10FF0007|Kehabiqo Febiqo|126496|129844|10000|10000|||93.33|86.36|0.00|3.00| +38|2023-10-06T22:02:20.4770000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||110.88|87.00|0.00|-2.14|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:02:20.5660000-07:00|40021585|Zeromus|00010FBC|10281198||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:20.5660000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|134A|126496|129844|10000|10000|||93.36|85.97|0.00|3.01|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3200|10000|||101.49|99.02|0.00|2.19| +38|2023-10-06T22:02:20.5660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.36|85.97|0.00|3.01|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:02:20.1540000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:02:20.3560000-07:00|Change|10FF0006||| +37|2023-10-06T22:02:20.6560000-07:00|10FF0007|Kehabiqo Febiqo|00010FBD|129844|129844|10000|10000|0||93.38|85.62|0.00|3.03|1500|0|0|01|07000A94|0|41000000|| +26|2023-10-06T22:02:20.6560000-07:00|A94|Aquaveil|8.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +21|2023-10-06T22:02:20.6560000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10281198|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.21|100.60|0.00|-3.13|00010FBF|0|1| +21|2023-10-06T22:02:20.7000000-07:00|10FF0001|Sesuga Sapisuga|1CD6|Intervention|10FF0007|Kehabiqo Febiqo|EC0E|4960000|F60E|A730000|13CE0E|A740000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.40|85.28|0.00|3.04|129071|129071|10000|10000|||110.88|87.00|0.00|-1.67|00010FC0|0|1| +31|2023-10-06T22:02:20.7000000-07:00|10FF0001||||| +21|2023-10-06T22:02:20.7450000-07:00|10FF0004|Buhojaqe Zijaqe|650B|Protraction|10FF0007|Kehabiqo Febiqo|A0A0E|A960000|4|32B80000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.40|85.28|0.00|3.04|81541|81541|3200|10000|||101.49|99.02|0.00|2.19|00010FC1|0|1| +21|2023-10-06T22:02:20.7450000-07:00|10FF000B|Pusu Rosu|1D08|Divine Benison|10FF0007|Kehabiqo Febiqo|780E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.40|85.28|0.00|3.04|79209|79209|9924|10000|||100.30|103.50|0.00|-2.52|00010FC2|0|1| +37|2023-10-06T22:02:20.7890000-07:00|40021585|Zeromus|00010FBE|10268885||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:20.4480000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:02:20.9240000-07:00|40021585|Zeromus|8B83|Dark Matter|40021585|Zeromus|1B|8B838000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10268885|40478540|10000|10000|||100.00|80.10|0.00|0.00|10268885|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010FC3|0|1| +261|2023-10-06T22:02:20.5440000-07:00|Change|40021585||||| +21|2023-10-06T22:02:20.9680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|71A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10268885|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||110.88|87.00|0.00|-1.69|00010FC4|0|1| +31|2023-10-06T22:02:20.9680000-07:00|10FF0001||||| +39|2023-10-06T22:02:21.0570000-07:00|4002195D|Carbuncle|77698|77698|10000|10000|||99.23|101.91|0.00|0.41| +39|2023-10-06T22:02:21.1010000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3400|10000|||101.49|99.02|0.00|2.98| +261|2023-10-06T22:02:20.6450000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:21.1910000-07:00|40021585|Zeromus|00010FB9|10255958||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:21.1910000-07:00|40021585|Zeromus|00010FBF|10253741||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:20.8800000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:02:21.3680000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|10253741|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6450|10000|||101.12|101.88|0.00|-3.09|00010FC5|0|1| +38|2023-10-06T22:02:21.3680000-07:00|4002195D|Carbuncle|005A5A00|0|77698|0|10000|0||99.23|101.91|0.00|0.41|0|0|0||||||| +26|2023-10-06T22:02:21.3680000-07:00|30|Well Fed|541.27|10FF0006|Wowobora Gogobora|4002195D|Carbuncle|2964|77698|81809| +38|2023-10-06T22:02:21.3680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6450|10000|0||101.12|101.88|0.00|-3.09|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:21.3680000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:02:20.9980000-07:00|Change|4002195D||||||||| +38|2023-10-06T22:02:21.4110000-07:00|40021977||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T22:02:21.4130000-07:00|40021977||005A5A00|74223|77698|10000|10000|0||||||0|0|0||||||| +20|2023-10-06T22:02:21.4570000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0001|Sesuga Sapisuga|1.926|101.49|99.02|0.00|-2.82| +37|2023-10-06T22:02:21.5020000-07:00|10FF0007|Kehabiqo Febiqo|00010FC0|129844|129844|10000|10000|0||93.43|84.86|0.00|3.06|1500|0|0|03|08000496|0|41000000|||||||||| +26|2023-10-06T22:02:21.5020000-07:00|496|Intervention|8.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +26|2023-10-06T22:02:21.5020000-07:00|A73|Knight's Resolve|4.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +26|2023-10-06T22:02:21.5020000-07:00|A74|Knight's Benediction|12.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +37|2023-10-06T22:02:21.5020000-07:00|40021585|Zeromus|00010FC4|10251923||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:21.5020000-07:00|10FF0007|Kehabiqo Febiqo|00010FC1|142828|142828|10000|10000|0||93.43|84.86|0.00|3.06|1500|0|0|01|0B000A96|0|41200000|| +26|2023-10-06T22:02:21.5020000-07:00|A96|Protraction|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +39|2023-10-06T22:02:21.5020000-07:00|10FF0003|Gegehi Gehi|42244|73814|2400|10000|||94.99|105.38|-0.02|2.27| +21|2023-10-06T22:02:21.5020000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0001|Sesuga Sapisuga|6400F60E|7420000|F60E|A770000|810E|A780000|90A3000F|7418000|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||110.88|87.00|0.00|-1.69|129844|129844|10000|10000|||93.43|84.86|0.00|3.06|00010FC6|0|1| +21|2023-10-06T22:02:21.5020000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2F1B0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|10253741|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.42|100.48|0.00|-3.12|00010FC7|0|1| +38|2023-10-06T22:02:21.5020000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|0||93.43|84.86|0.00|3.06|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:02:21.5460000-07:00|10FF0007|Kehabiqo Febiqo|00010FC2|142828|142828|10000|10000|10||93.43|84.86|0.00|3.06|1500|0|0|01|0C0004C2|0|41700000|| +26|2023-10-06T22:02:21.5460000-07:00|4C2|Divine Benison|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:21.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|10||93.43|84.86|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:02:21.2320000-07:00|Add|40021977||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:02:21.2320000-07:00|40021977|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||103.00|103.57|0.00|-3.09| +261|2023-10-06T22:02:21.3240000-07:00|Change|40021977||||| +24|2023-10-06T22:02:21.6800000-07:00|40021585|Zeromus|DoT|0|2330|10251923|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9924|10000|||100.30|103.50|0.00|-2.79| +38|2023-10-06T22:02:21.6800000-07:00|40021585|Zeromus|005A5A00|10242915|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:02:21.3240000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:02:21.3240000-07:00|Change|400215A2||||||||| +21|2023-10-06T22:02:21.7240000-07:00|400215A3|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|122D0000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|142828|142828|10000|10000|||93.43|84.86|0.00|2.44|44|44|0|10000|||100.00|100.00|0.00|0.00|00010FC8|0|1| +21|2023-10-06T22:02:21.7240000-07:00|400215A2|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750003|81D30000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||110.88|87.00|0.00|-1.69|44|44|0|10000|||100.00|100.00|0.00|0.00|00010FC9|0|1| +21|2023-10-06T22:02:21.8140000-07:00|10FF000B|Pusu Rosu|1D08|Divine Benison|10FF0001|Sesuga Sapisuga|F50E|4C20000|1B|1D088000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||110.88|87.00|0.00|-1.69|79209|79209|9924|10000|||100.30|103.50|0.00|-2.79|00010FCA|0|1| +261|2023-10-06T22:02:21.5090000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:02:21.7020000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:02:22.1260000-07:00|10FF0001|Sesuga Sapisuga|00010FC6|129071|129071|10000|10000|7||110.88|87.00|0.00|-1.69|1300|0|0|03|07000742|64|41000000|||||||||| +26|2023-10-06T22:02:22.1260000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|129071|142828| +26|2023-10-06T22:02:22.1260000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|142828| +26|2023-10-06T22:02:22.1260000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|142828| +37|2023-10-06T22:02:22.1260000-07:00|10FF0007|Kehabiqo Febiqo|00010FC6|142828|142828|10000|10000|10||93.43|84.86|0.00|1.46|1500|0|0|01|0D000741|0190|41000000|| +26|2023-10-06T22:02:22.1260000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|142828|142828| +261|2023-10-06T22:02:21.7020000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:02:21.8120000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:02:22.1270000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16BE0000|204|256B8000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|10242915|40478540|10000|10000|||100.00|80.10|0.00|0.00|142828|142828|10000|10000|||93.43|84.86|0.00|1.69|00010FCB|0|1| +38|2023-10-06T22:02:22.1270000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||110.88|87.00|0.00|-1.69|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T22:02:22.1700000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.25|100.51|0.00|-1.64| +21|2023-10-06T22:02:22.2150000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10242915|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.25|100.51|0.00|-1.64|00010FCC|0|1| +38|2023-10-06T22:02:22.2150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|10||93.43|84.86|0.00|1.69|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:22.2150000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|142828|81809| +38|2023-10-06T22:02:22.2150000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.25|100.51|0.00|-1.64|0|0|0||||||||||||| +30|2023-10-06T22:02:22.2150000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T22:02:22.2150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6450|10000|0||101.12|101.88|0.00|-3.09|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:22.2150000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:02:22.2150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|7||110.88|87.00|0.00|-1.69|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:22.2150000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T22:02:22.2150000-07:00|40021977|Ruby Ifrit|005A5A00|74223|77698|10000|10000|0||103.00|103.57|0.00|-3.09|0|0|0||||||| +26|2023-10-06T22:02:22.2150000-07:00|30|Well Fed|540.43|10FF0006|Wowobora Gogobora|40021977|Ruby Ifrit|2964|77698|81809| +38|2023-10-06T22:02:22.2150000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3400|10000|0||101.49|99.02|0.00|2.48|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:22.2150000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T22:02:22.2150000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9924|10000|0||100.30|103.50|0.00|2.68|0|0|0||||||||||||| +30|2023-10-06T22:02:22.2150000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +38|2023-10-06T22:02:22.2150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|-3.04|0|0|0|||||||||||||||| +30|2023-10-06T22:02:22.2150000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +37|2023-10-06T22:02:22.3030000-07:00|40021585|Zeromus|00010FC7|10230856||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:22.3480000-07:00|10FF0007|Kehabiqo Febiqo|00010FC8|138175|142828|10000|10000|0||93.43|84.86|0.00|2.20|1500|0|0|01|0C000000|0|0|| +37|2023-10-06T22:02:22.3480000-07:00|10FF0001|Sesuga Sapisuga|00010FC9|95836||||||110.88|87.00|0.00|-2.14| +38|2023-10-06T22:02:22.3480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|138175|142828|10000|10000|0||93.43|84.86|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:22.3480000-07:00|4C2|Divine Benison|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|142828|79209| +37|2023-10-06T22:02:22.3930000-07:00|10FF0006|Wowobora Gogobora|00010FC5|81809|81809|6450|10000|0||101.12|101.88|0.00|-3.09|1B00|0|0|01|05000AA4|0|0|| +21|2023-10-06T22:02:22.3930000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|16820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10242915|40478540|10000|10000|||100.00|80.10|0.00|0.00|142828|142828|10000|10000|||93.43|84.86|0.00|2.20|00010FCD|0|1| +38|2023-10-06T22:02:22.3930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6450|10000|0||101.12|101.88|0.00|-3.09|0|0|0||||||||||||||||||| +261|2023-10-06T22:02:22.1640000-07:00|Change|40021977||| +21|2023-10-06T22:02:22.4810000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42714003|39A80000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|10230856|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|-3.04|00010FCE|0|1| +21|2023-10-06T22:02:22.5260000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|28890000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10230856|40478540|10000|10000|||100.00|80.10|0.00|0.00|95836|129071|10000|10000|||110.88|87.00|0.00|-2.14|00010FCF|0|1| +38|2023-10-06T22:02:22.5260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|95836|129071|10000|10000|7||110.88|87.00|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:22.5260000-07:00|76E|Sword Oath|27.91|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +37|2023-10-06T22:02:22.6150000-07:00|10FF0001|Sesuga Sapisuga|00010FCA|95836|129071|10000|10000|19||110.88|87.00|0.00|-2.14|1300|0|0|01|030004C2|0|41700000|| +26|2023-10-06T22:02:22.6150000-07:00|4C2|Divine Benison|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:22.6150000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|95836|129071|10000|10000|19||110.88|87.00|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T22:02:22.6600000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|256B|95836|129071|10000|10000|||110.88|87.00|0.00|-2.14|10FF0007|Kehabiqo Febiqo|0|138175|142828|10000|10000|||93.43|84.86|0.00|2.20| +37|2023-10-06T22:02:22.6600000-07:00|40021585|Zeromus|00010FCB|10225034||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:22.6600000-07:00|10FF0007|Kehabiqo Febiqo|00010FCB|142828||||||93.43|84.86|0.00|2.20| +21|2023-10-06T22:02:22.6600000-07:00|10FF0003|Gegehi Gehi|1D8A|Lucid Dreaming|10FF0003|Gegehi Gehi|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|42244|73814|2400|10000|||100.86|103.37|0.00|2.63|42244|73814|2400|10000|||100.86|103.37|0.00|2.63|00010FD0|0|1| +38|2023-10-06T22:02:22.6600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|105415|129071|10000|10000|19||110.88|87.00|0.00|-2.14|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:02:22.6600000-07:00|10FF0003|Gegehi Gehi|005A5A23|42244|73814|2400|10000|0||100.86|103.37|0.00|2.63|0|0|0|||||||||| +30|2023-10-06T22:02:22.6600000-07:00|1A2|Transcendent|0.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +39|2023-10-06T22:02:22.7940000-07:00|10FF0001|Sesuga Sapisuga|106705|129071|10000|10000|||110.88|87.00|0.00|-2.14| +21|2023-10-06T22:02:22.8380000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0001|Sesuga Sapisuga|4|2F640000|4D0E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|105415|129071|10000|10000|||110.88|87.00|0.00|-2.14|81541|81541|3400|10000|||101.49|99.02|0.00|2.48|00010FD1|0|1| +21|2023-10-06T22:02:22.8380000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|86D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10225034|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00010FD2|0|1| +38|2023-10-06T22:02:22.8380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|106705|129071|10000|10000|36||110.88|87.00|0.00|-2.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:22.8380000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T22:02:22.4520000-07:00|Change|10FF000B||||||| +37|2023-10-06T22:02:22.9270000-07:00|40021585|Zeromus|00010FCD|10219272||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:22.9270000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10225034|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|6450|10000|||101.12|101.88|0.00|-3.09|00010FD3|0|1| +37|2023-10-06T22:02:22.9710000-07:00|40021585|Zeromus|00010FCC|10214483||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:23.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D9D|81541|81541|2400|10000|||101.49|99.02|0.00|2.48|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2400|10000|||101.49|99.02|0.00|2.48| +24|2023-10-06T22:02:23.0620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|15A6|90216|90216|10000|10000|||100.24|100.51|0.00|-1.50|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2400|10000|||101.49|99.02|0.00|2.48| +24|2023-10-06T22:02:23.0620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E3D|142828|142828|10000|10000|||93.43|84.86|0.00|2.20|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2400|10000|||101.49|99.02|0.00|2.48| +24|2023-10-06T22:02:23.0620000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|14F8|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2400|10000|||101.49|99.02|0.00|2.48| +24|2023-10-06T22:02:23.0620000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D51|106705|129071|10000|10000|||110.88|87.00|0.00|-2.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2400|10000|||101.49|99.02|0.00|2.48| +24|2023-10-06T22:02:23.0620000-07:00|10FF0006|Wowobora Gogobora|HoT|798|14D9|81809|81809|6450|10000|||101.12|101.88|0.00|-3.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2400|10000|||101.49|99.02|0.00|2.48| +24|2023-10-06T22:02:23.0620000-07:00|10FF0003|Gegehi Gehi|HoT|798|D69|42244|73814|2400|10000|||101.59|102.41|0.00|2.63|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2400|10000|||101.49|99.02|0.00|2.48| +24|2023-10-06T22:02:23.0620000-07:00|10FF000B|Pusu Rosu|HoT|798|D2C|79209|79209|9924|10000|||100.30|103.50|0.00|2.57|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2400|10000|||101.49|99.02|0.00|2.48| +21|2023-10-06T22:02:23.0620000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.24|100.51|0.00|-1.50|90216|90216|10000|10000|||100.24|100.51|0.00|-1.50|00010FD4|0|1| +38|2023-10-06T22:02:23.0620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|0||93.43|84.86|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:23.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|142828|81541| +38|2023-10-06T22:02:23.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.24|100.51|0.00|-1.50|0|0|0||||||||||||| +26|2023-10-06T22:02:23.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:23.0620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6450|10000|0||101.12|101.88|0.00|-3.09|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:23.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:23.0620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|110114|129071|10000|10000|36||110.88|87.00|0.00|-2.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:23.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:02:23.0620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2950|10000|0||101.49|99.02|0.00|2.48|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:23.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:23.0620000-07:00|10FF0003|Gegehi Gehi|005A5A23|45677|73814|2400|10000|0||101.59|102.41|0.00|2.63|0|0|0|||||||||| +26|2023-10-06T22:02:23.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:02:23.0620000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9924|10000|0||100.30|103.50|0.00|2.57|0|0|0||||||||||||| +26|2023-10-06T22:02:23.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:23.0620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:02:23.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:02:23.1050000-07:00|40021585|Zeromus|00010FCE|10199723||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:22.7620000-07:00|Change|10FF0004||||||||||||||| +38|2023-10-06T22:02:23.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7000|10000|0||101.12|101.85|0.00|-3.08|0|0|0||||||||||||||||||| +261|2023-10-06T22:02:22.7620000-07:00|Change|10FF0006||||||| +39|2023-10-06T22:02:23.1940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7200|10000|||101.12|101.85|0.00|-3.08| +21|2023-10-06T22:02:23.1940000-07:00|10FF000B|Pusu Rosu|4097|Afflatus Misery|40021585|Zeromus|750003|C3550000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|10199723|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9924|10000|||100.30|103.50|0.00|2.57|00010FD5|0|1| +21|2023-10-06T22:02:23.2380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|86C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10199723|40478540|10000|10000|||100.00|80.10|0.00|0.00|110114|129071|10000|10000|||110.88|87.00|0.00|-2.14|00010FD6|0|1| +31|2023-10-06T22:02:23.2380000-07:00|10FF0001||||| +37|2023-10-06T22:02:23.2830000-07:00|10FF0003|Gegehi Gehi|00010FD0|45677|73814|2400|10000|0||101.93|101.95|-0.01|2.63|2300|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T22:02:23.2830000-07:00|4B4|Lucid Dreaming|21.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:02:23.2830000-07:00|400215A3|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|4E660000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|142828|142828|10000|10000|||93.43|84.86|0.00|2.20|44|44|0|10000|||100.00|100.00|0.00|0.00|00010FD7|0|1| +21|2023-10-06T22:02:23.2830000-07:00|400215A2|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|0|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|110114|129071|10000|10000|||110.88|87.00|0.00|-2.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00010FD8|0|1| +37|2023-10-06T22:02:23.3710000-07:00|40021585|Zeromus|00010FD2|10197566||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:23.3710000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||100.30|103.50|0.00|-3.13| +39|2023-10-06T22:02:23.3710000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.99|101.15|0.00|3.14| +38|2023-10-06T22:02:23.3710000-07:00|10FF0003|Gegehi Gehi|005A5A23|45677|73814|2950|10000|0||101.98|101.88|0.00|2.63|0|0|0||||||||||||| +261|2023-10-06T22:02:22.9940000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:02:22.9940000-07:00|Change|4002195D||| +37|2023-10-06T22:02:23.4600000-07:00|40021585|Zeromus|00010FD3|10197414||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:23.4600000-07:00|40021977|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|152003|95E00000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|10197566|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||103.00|103.57|0.00|-3.09|00010FD9|0|1| +39|2023-10-06T22:02:23.4600000-07:00|10FF0007|Kehabiqo Febiqo|142828|142828|10000|10000|||93.43|84.86|0.00|2.20| +38|2023-10-06T22:02:23.5500000-07:00|4002197A||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +24|2023-10-06T22:02:23.5500000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2B6F|142828|142828|10000|10000|||93.43|84.86|0.00|2.20|10FF0007|Kehabiqo Febiqo|0|142828|142828|10000|10000|||93.43|84.86|0.00|2.20| +21|2023-10-06T22:02:23.5500000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|2E0B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10197414|40478540|10000|10000|||100.00|80.10|0.00|0.00|45677|73814|2950|10000|||101.98|101.88|0.00|2.63|00010FDA|0|1| +21|2023-10-06T22:02:23.5500000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10197414|40478540|10000|10000|||100.00|80.10|0.00|0.00|45677|73814|2950|10000|||101.98|101.88|0.00|2.63|00010FDB|0|1| +38|2023-10-06T22:02:23.5500000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|0||93.43|84.86|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:02:23.5500000-07:00|4002197A||005A5A00|82193|85668|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:02:23.2040000-07:00|Add|4002197A||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:02:23.2040000-07:00|4002197A|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||101.88|98.63|0.00|-1.50| +261|2023-10-06T22:02:23.2940000-07:00|Change|4002197A||| +261|2023-10-06T22:02:23.2940000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:23.7710000-07:00|40021585|Zeromus|00010FD6|10195258||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:23.7710000-07:00|40021585|Zeromus|00010FD5|10145253||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:23.8150000-07:00|40021585|Zeromus|00010FCF|10134876||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:23.8150000-07:00|10FF0001|Sesuga Sapisuga|00010FD1|122246|129071|10000|10000|36||110.88|87.00|0.00|-2.14|1300|0|0|01|0A000129|0|41E88B3F|| +20|2023-10-06T22:02:23.8600000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|100.86|100.85|0.00|-2.99| +261|2023-10-06T22:02:23.4860000-07:00|Change|10FF000B||||| +37|2023-10-06T22:02:23.9500000-07:00|10FF0007|Kehabiqo Febiqo|00010FD7|122758||||||93.43|84.86|0.00|2.20| +37|2023-10-06T22:02:23.9500000-07:00|10FF0001|Sesuga Sapisuga|00010FD8|122246|129071|10000|10000|15||110.88|87.00|0.00|-2.14|1300|0|0|02|03000000|0|0|||||| +38|2023-10-06T22:02:23.9500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122246|129071|10000|10000|15||110.88|87.00|0.00|-2.14|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:23.9500000-07:00|4C2|Divine Benison|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +30|2023-10-06T22:02:23.9500000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|142828| +21|2023-10-06T22:02:23.9940000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|394F0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|10134876|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.51|0.00|-1.50|00010FDC|0|1| +37|2023-10-06T22:02:24.0830000-07:00|40021585|Zeromus|00010FDB|10134875||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:24.1280000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3150|10000|||101.49|99.29|0.00|0.71| +20|2023-10-06T22:02:24.1280000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.49|99.29|0.00|0.71| +261|2023-10-06T22:02:23.7660000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T22:02:24.4840000-07:00|10FF0003|Gegehi Gehi|46415|73814|3150|10000|||101.95|101.83|0.00|-2.96| +261|2023-10-06T22:02:24.1180000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:02:24.2090000-07:00|Change|4002197A||| +21|2023-10-06T22:02:24.5720000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|1FDC0000|A3E|340000|200204|3F8B8000|11B|258000|0|0|0|0|0|0|0|0|10134875|40478540|10000|10000|||100.00|80.10|0.00|0.00|122758|142828|10000|10000|||93.43|84.86|0.00|2.20|00010FDD|0|1| +21|2023-10-06T22:02:24.5720000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|726003|1A050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10134875|40478540|10000|10000|||100.00|80.10|0.00|0.00|46415|73814|3150|10000|||101.83|101.56|0.00|-2.83|00010FDE|0|1| +34|2023-10-06T22:02:24.5720000-07:00|4002197A|Automaton Queen|4002197A|Automaton Queen|01| +24|2023-10-06T22:02:24.6610000-07:00|40021585|Zeromus|DoT|0|1C37|10134875|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|10000|10000|||100.30|103.50|0.00|-3.13| +38|2023-10-06T22:02:24.6610000-07:00|40021585|Zeromus|005A5A00|10127652|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:02:24.2090000-07:00|Change|4002197A||| +261|2023-10-06T22:02:24.3060000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T22:02:24.7050000-07:00|40021585|Zeromus|00010FDA|10115865||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:24.7490000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1F440000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|10127652|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00010FDF|0|1| +37|2023-10-06T22:02:24.7940000-07:00|40021585|Zeromus|00010FDC|10101194||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:24.8380000-07:00|400215A3|Zeromus|8B84|Dark Matter|10FF0007|Kehabiqo Febiqo|750203|4CD30000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|122758|142828|10000|10000|||93.43|84.86|0.00|2.20|44|44|0|10000|||100.00|100.00|0.00|0.00|00010FE0|0|1| +21|2023-10-06T22:02:24.8380000-07:00|400215A2|Zeromus|8B84|Dark Matter|10FF0001|Sesuga Sapisuga|750303|17210000|1B|8B848000|0|0|0|0|0|0|0|0|0|0|0|0|122246|129071|10000|10000|||110.88|87.00|0.00|-2.14|44|44|0|10000|||100.00|100.00|0.00|0.00|00010FE1|0|1| +21|2023-10-06T22:02:24.8380000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|19E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10127652|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13|00010FE2|0|1| +21|2023-10-06T22:02:24.8820000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|95E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10101194|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13|00010FE3|0|1| +21|2023-10-06T22:02:25.0170000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|714003|32AF0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|10101194|40478540|10000|10000|||100.00|80.10|0.00|0.00|122246|129071|10000|10000|||110.88|87.00|0.00|-2.14|00010FE4|0|1| +21|2023-10-06T22:02:25.0170000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|ACF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10101194|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00010FE5|0|1| +38|2023-10-06T22:02:25.0170000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122246|129071|10000|10000|15||110.88|87.00|0.00|-2.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:25.0170000-07:00|76E|Sword Oath|25.41|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +21|2023-10-06T22:02:25.0620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|52060000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|10101194|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|3150|10000|||101.49|99.47|0.00|-3.06|00010FE6|0|1| +37|2023-10-06T22:02:25.1500000-07:00|40021585|Zeromus|00010FDF|10093190||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:25.1500000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13| +261|2023-10-06T22:02:24.7190000-07:00|Change|10FF0004||||||||||||||||||| +24|2023-10-06T22:02:25.1950000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|3F8B|122246|129071|10000|10000|||110.88|87.00|0.00|-2.14|10FF0007|Kehabiqo Febiqo|0|122758|142828|10000|10000|||93.43|84.86|0.00|2.20| +37|2023-10-06T22:02:25.1950000-07:00|40021585|Zeromus|00010FDD|10085034||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:25.1950000-07:00|10FF0007|Kehabiqo Febiqo|00010FDD|139025||||||93.43|84.86|0.00|2.20| +37|2023-10-06T22:02:25.1950000-07:00|40021585|Zeromus|00010FDE|10078373||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:25.1950000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|15||110.88|87.00|0.00|-2.14|0|0|0|||||||||||||||||||||||||||||||||| +04|2023-10-06T22:02:24.8300000-07:00|4002195D|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||99.23|101.91|0.00|0.41| +261|2023-10-06T22:02:24.8300000-07:00|Remove|4002195D| +21|2023-10-06T22:02:25.3740000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|722003|1F4A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10078373|40478540|10000|10000|||100.00|80.10|0.00|0.00|46415|73814|3150|10000|||101.70|100.51|0.00|-3.06|00010FE7|0|1| +37|2023-10-06T22:02:25.4190000-07:00|40021585|Zeromus|00010FD9|10040005||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:25.4640000-07:00|10FF0007|Kehabiqo Febiqo|00010FE0|119358||||||93.43|84.86|0.00|2.20| +37|2023-10-06T22:02:25.4640000-07:00|10FF0001|Sesuga Sapisuga|00010FE1|123150|129071|10000|10000|0||110.88|87.00|0.00|-2.14|1300|0|0|01|0A000000|0|0|| +21|2023-10-06T22:02:25.4640000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|143E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10078373|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13|00010FE8|0|1| +38|2023-10-06T22:02:25.4640000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119358|142828|10000|10000|0||93.43|84.86|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:25.4640000-07:00|A73|Knight's Resolve|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|142828|129071| +38|2023-10-06T22:02:25.4640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123150|129071|10000|10000|0||110.88|87.00|0.00|-2.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:25.4640000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +21|2023-10-06T22:02:25.5080000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AA90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10040005|40478540|10000|10000|||100.00|80.10|0.00|0.00|123150|129071|10000|10000|||110.88|87.00|0.00|-2.14|00010FE9|0|1| +31|2023-10-06T22:02:25.5080000-07:00|10FF0001||||| +37|2023-10-06T22:02:25.5520000-07:00|40021585|Zeromus|00010FE5|10037238||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:25.5960000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10040005|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2750|10000|||101.49|99.47|0.00|-3.06|00010FEA|0|1| +37|2023-10-06T22:02:25.6410000-07:00|40021585|Zeromus|00010FE2|10030610||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:25.6410000-07:00|40021585|Zeromus|00010FE3|10028212||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:25.6860000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.30|103.50|0.00|-3.13| +261|2023-10-06T22:02:25.2700000-07:00|Change|10FF000B||||||||||||| +21|2023-10-06T22:02:25.7740000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BD90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|10028212|40478540|10000|10000|||100.00|80.10|0.00|0.00|119358|142828|10000|10000|||93.43|84.86|0.00|2.20|00010FEB|0|1| +39|2023-10-06T22:02:25.8190000-07:00|10FF0001|Sesuga Sapisuga|124440|129071|10000|10000|||110.88|87.00|0.00|-2.14| +37|2023-10-06T22:02:25.8640000-07:00|40021585|Zeromus|00010FE6|10007214||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:25.9510000-07:00|40021585|Zeromus|00010FE7|9999204||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:26.0420000-07:00|40021585|Zeromus|00010FE9|9996475||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:26.0420000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2750|10000|0||101.37|99.78|0.00|-1.38|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:26.0420000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +24|2023-10-06T22:02:26.0860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1534|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38| +24|2023-10-06T22:02:26.0860000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CF6|81809|81809|7200|10000|||100.76|100.45|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38| +24|2023-10-06T22:02:26.0860000-07:00|10FF0003|Gegehi Gehi|HoT|798|D53|46415|73814|3150|10000|||101.64|100.51|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38| +24|2023-10-06T22:02:26.0860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D5C|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38| +24|2023-10-06T22:02:26.0860000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E47|119358|142828|10000|10000|||93.43|84.86|0.00|2.20|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38| +24|2023-10-06T22:02:26.0860000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|15BE|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38| +24|2023-10-06T22:02:26.0860000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CE2|124440|129071|10000|10000|||110.88|87.00|0.00|-2.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38| +24|2023-10-06T22:02:26.0860000-07:00|10FF000B|Pusu Rosu|HoT|798|14EF|79209|79209|10000|10000|||100.30|103.50|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2750|10000|||101.37|99.78|0.00|-1.38| +38|2023-10-06T22:02:26.0860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123013|142828|10000|10000|0||93.43|84.86|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:26.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|142828|81541| +38|2023-10-06T22:02:26.0860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.24|100.51|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T22:02:26.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +261|2023-10-06T22:02:25.7410000-07:00|Change|10FF0003||||||||||||||||||| +38|2023-10-06T22:02:26.0860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7200|10000|0||100.76|100.45|0.00|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:26.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:26.0860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127738|129071|10000|10000|0||110.88|87.00|0.00|-2.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:26.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +30|2023-10-06T22:02:26.0860000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|142828| +38|2023-10-06T22:02:26.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2750|10000|0||101.37|99.78|0.00|-1.38|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:26.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:26.0860000-07:00|10FF0003|Gegehi Gehi|005A5A23|49826|73814|3150|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||| +26|2023-10-06T22:02:26.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:02:26.0860000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.30|103.50|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T22:02:26.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:26.0860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:02:26.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:02:26.1300000-07:00|40021585|Zeromus|00010FE8|9991293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:26.1300000-07:00|40021585|Zeromus|00010FEA|9991146||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:25.7410000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T22:02:26.1300000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|156003|A17D0000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|9999204|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7200|10000|||100.76|100.45|0.00|-3.10|00010FEC|0|1| +20|2023-10-06T22:02:26.1300000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|101.64|100.51|0.00|-3.06| +38|2023-10-06T22:02:26.1750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7450|10000|0||100.76|100.45|0.00|-3.10|0|0|0||||||||||||||||||| +39|2023-10-06T22:02:26.2180000-07:00|10FF0006|Wowobora Gogobora|81809|81809|7650|10000|||100.76|100.45|0.00|-3.10| +37|2023-10-06T22:02:26.3070000-07:00|40021585|Zeromus|00010FEB|9988113||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:26.3070000-07:00|40021585|Zeromus|00010FE4|9975138||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:26.3530000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||100.30|103.50|0.00|-3.13| +39|2023-10-06T22:02:26.3530000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.99|101.15|0.00|3.14| +38|2023-10-06T22:02:26.3970000-07:00|10FF0003|Gegehi Gehi|005A5A23|49826|73814|3700|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||| +39|2023-10-06T22:02:26.4860000-07:00|10FF0007|Kehabiqo Febiqo|124441|142828|10000|10000|||93.43|84.86|0.00|2.20| +21|2023-10-06T22:02:26.4860000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1EAE0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|9975138|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13|00010FED|0|1| +20|2023-10-06T22:02:26.5310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.34|99.90|0.00|-0.60| +261|2023-10-06T22:02:26.0830000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T22:02:26.1790000-07:00|Change|10FF0003||||| +24|2023-10-06T22:02:26.5750000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2A8B|124441|142828|10000|10000|||93.43|84.86|0.00|2.20|10FF0007|Kehabiqo Febiqo|0|124441|142828|10000|10000|||93.43|84.86|0.00|2.20| +38|2023-10-06T22:02:26.5750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|135332|142828|10000|10000|0||93.43|84.86|0.00|2.20|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:02:26.6190000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|2FED0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|9975138|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||100.30|103.50|0.00|-3.13|00010FEE|0|1| +261|2023-10-06T22:02:26.2710000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T22:02:26.7530000-07:00|40021585|Zeromus|00010FEC|9933797||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:26.8420000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|100.76|100.45|0.00|-3.10| +21|2023-10-06T22:02:26.9760000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1A9C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|135332|142828|10000|10000|||93.43|84.86|0.00|2.20|9933797|40478540|10000|10000|||100.00|80.10|0.00|0.00|00010FEF|0|1| +21|2023-10-06T22:02:27.0200000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|3B240000|204|25DB8000|0|0|0|0|0|0|0|0|0|0|0|0|9933797|40478540|10000|10000|||100.00|80.10|0.00|0.00|135332|142828|10000|10000|||93.43|84.86|0.00|2.20|00010FF0|0|1| +21|2023-10-06T22:02:27.0200000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|25A90000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|9933797|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00010FF1|0|1| +39|2023-10-06T22:02:27.1080000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2950|10000|||101.34|99.90|0.00|-3.03| +21|2023-10-06T22:02:27.1990000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|D830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9933797|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00010FF2|0|1| +38|2023-10-06T22:02:27.1990000-07:00|40021585|Zeromus|005A5A00|9933797|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:02:27.1990000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +261|2023-10-06T22:02:26.7780000-07:00|Change|10FF0006||||||||||||||| +37|2023-10-06T22:02:27.2430000-07:00|40021585|Zeromus|00010FED|9925943||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:27.4200000-07:00|40021585|Zeromus|00010FF1|9916302||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:27.4660000-07:00|10FF0003|Gegehi Gehi|50564|73814|3900|10000|||101.64|100.51|0.00|-3.06| +21|2023-10-06T22:02:27.4660000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|325F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|9916302|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2950|10000|||101.34|99.90|0.00|-3.07|00010FF3|0|1| +261|2023-10-06T22:02:26.9990000-07:00|Change|40021977||||| +261|2023-10-06T22:02:26.9990000-07:00|Change|40021977||||| +38|2023-10-06T22:02:27.5080000-07:00|4002197D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:02:27.5100000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|272C0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|9916302|40478540|10000|10000|||100.00|80.10|0.00|0.00|127738|129071|10000|10000|||110.88|87.00|0.00|-2.14|00010FF4|0|1| +38|2023-10-06T22:02:27.5100000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127738|129071|10000|10000|0||110.88|87.00|0.00|-2.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:27.5100000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T22:02:27.5100000-07:00|4002197D||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:02:27.5540000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9916302|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13|00010FF5|0|1| +21|2023-10-06T22:02:27.5540000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|294B0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|9916302|40478540|10000|10000|||100.00|80.10|0.00|0.00|49826|73814|3700|10000|||101.64|100.51|0.00|-3.06|00010FF6|0|1| +38|2023-10-06T22:02:27.5540000-07:00|10FF0003|Gegehi Gehi|005A5A23|50564|73814|3700|10000|0||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||| +26|2023-10-06T22:02:27.5540000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +03|2023-10-06T22:02:27.2010000-07:00|4002197D|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.70|98.70|0.00|0.04| +261|2023-10-06T22:02:27.2010000-07:00|Change|10FF0004||||||||||||||||| +261|2023-10-06T22:02:27.2010000-07:00|Add|4002197D||||||||||||||||||||||||||||||||||||| +24|2023-10-06T22:02:27.6440000-07:00|10FF0001|Sesuga Sapisuga|HoT|742|25DB|127738|129071|10000|10000|||110.88|87.00|0.00|-2.14|10FF0007|Kehabiqo Febiqo|0|135332|142828|10000|10000|||93.43|84.86|-0.02|2.17| +37|2023-10-06T22:02:27.6440000-07:00|40021585|Zeromus|00010FF0|9901162||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:27.6440000-07:00|10FF0007|Kehabiqo Febiqo|00010FF0|142828||||||93.43|84.86|-0.02|2.17| +38|2023-10-06T22:02:27.6440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||110.88|87.00|0.00|-2.14|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:02:27.2010000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T22:02:27.2010000-07:00|Change|4002197D||| +24|2023-10-06T22:02:27.6880000-07:00|40021585|Zeromus|DoT|0|175C|9901162|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9600|10000|||100.30|103.08|0.00|3.14| +38|2023-10-06T22:02:27.6880000-07:00|40021585|Zeromus|005A5A00|9895182|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:02:27.7320000-07:00|40021585|Zeromus|00010FF2|9891723||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:27.7760000-07:00|10FF0007|Kehabiqo Febiqo|00010FEF|136016||||||93.44|84.88|0.00|2.06| +21|2023-10-06T22:02:27.7760000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9901162|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||110.88|87.00|0.00|-2.14|00010FF7|0|1| +31|2023-10-06T22:02:27.7760000-07:00|10FF0001||||| +37|2023-10-06T22:02:27.9090000-07:00|40021585|Zeromus|00010FEE|9879454||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:28.1310000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.30|102.68|0.00|3.14| +261|2023-10-06T22:02:27.6930000-07:00|Change|10FF000B||||||||||||||||| +39|2023-10-06T22:02:28.1760000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13| +37|2023-10-06T22:02:28.2650000-07:00|40021585|Zeromus|00010FF3|9866559||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:28.3100000-07:00|40021585|Zeromus|00010FF5|9864285||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:28.3100000-07:00|40021585|Zeromus|00010FF7|9862636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:28.3100000-07:00|40021585|Zeromus|00010FF6|9852065||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:28.4890000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9852065|40478540|10000|10000|||100.00|80.10|0.00|0.00|50564|73814|3700|10000|||101.64|100.51|0.00|-3.06|00010FF8|0|1| +21|2023-10-06T22:02:28.5340000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|28B50000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|9852065|40478540|10000|10000|||100.00|80.10|0.00|0.00|50564|73814|3700|10000|||101.64|100.51|0.00|-3.06|00010FF9|0|1| +34|2023-10-06T22:02:28.5340000-07:00|4002197D|Carbuncle|4002197D|Carbuncle|01| +38|2023-10-06T22:02:28.5340000-07:00|10FF0003|Gegehi Gehi|005A5A23|50564|73814|3400|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||| +30|2023-10-06T22:02:28.5340000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:28.0350000-07:00|Change|4002197D||| +38|2023-10-06T22:02:28.6230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|136016|142828|10000|10000|0||96.71|87.84|0.00|1.94|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:28.6230000-07:00|A94|Aquaveil|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|142828|79209| +38|2023-10-06T22:02:28.6670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|136016|142828|10000|10000|0||97.28|88.11|0.00|2.18|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:28.6670000-07:00|A79|Equilibrium|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|142828|142828| +261|2023-10-06T22:02:28.2500000-07:00|Change|10FF0003||| +261|2023-10-06T22:02:28.2500000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T22:02:28.8010000-07:00|40021585|Zeromus|00010FF4|9842037||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:28.8010000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||107.97|90.31|0.00|-2.09| +261|2023-10-06T22:02:28.4310000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:02:28.9350000-07:00|4002197A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1DD90000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|9842037|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.85|98.62|0.00|-1.75|00010FFA|0|1| +20|2023-10-06T22:02:28.9350000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.34|99.23|0.00|-3.12| +261|2023-10-06T22:02:28.4310000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T22:02:28.9790000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|39D60000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|9842037|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13|00010FFB|0|1| +37|2023-10-06T22:02:29.0250000-07:00|40021585|Zeromus|00010FF8|9842036||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:29.0700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|17B0|136016|142828|10000|10000|||98.09|89.78|0.00|1.33|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10| +24|2023-10-06T22:02:29.0700000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D6B|129071|129071|10000|10000|||106.99|92.02|0.00|-2.09|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10| +24|2023-10-06T22:02:29.0700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|1611|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10| +24|2023-10-06T22:02:29.0700000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1504|81809|81809|7650|10000|||100.76|100.45|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10| +24|2023-10-06T22:02:29.0700000-07:00|10FF0003|Gegehi Gehi|HoT|798|CE8|50564|73814|3400|10000|||101.64|100.51|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10| +24|2023-10-06T22:02:29.0700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|14EB|90216|90216|10000|10000|||100.24|100.51|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10| +24|2023-10-06T22:02:29.0700000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CFF|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10| +24|2023-10-06T22:02:29.0700000-07:00|10FF000B|Pusu Rosu|HoT|798|D9E|79209|79209|9600|10000|||100.30|102.68|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2550|10000|||101.34|99.23|0.00|-3.10| +261|2023-10-06T22:02:28.6340000-07:00|Change|10FF0006||||||||||||||| +21|2023-10-06T22:02:29.0700000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|507E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|9842036|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9600|10000|||100.30|102.68|0.00|-3.13|00010FFC|0|1| +38|2023-10-06T22:02:29.0700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142080|142828|10000|10000|0||98.09|89.78|0.00|1.33|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:29.0700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|142828|81541| +38|2023-10-06T22:02:29.0700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.24|100.51|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T22:02:29.0700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:29.0700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7650|10000|0||100.76|100.45|0.00|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:29.0700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:29.0700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||106.99|92.02|0.00|-2.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:29.0700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:02:29.0700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2550|10000|0||101.34|99.23|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:29.0700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:29.0700000-07:00|10FF0003|Gegehi Gehi|005A5A23|53868|73814|3400|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||| +26|2023-10-06T22:02:29.0700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:02:29.0700000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9200|10000|0||100.30|102.68|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T22:02:29.0700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:29.0700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:02:29.0700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +21|2023-10-06T22:02:29.1130000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|152003|89770000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|9842036|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|7650|10000|||100.76|100.45|0.00|-3.10|00010FFD|0|1| +261|2023-10-06T22:02:28.6340000-07:00|Change|10FF000B||||||||||||||||| +21|2023-10-06T22:02:29.1570000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9842036|40478540|10000|10000|||100.00|80.10|0.00|0.00|136016|142828|10000|10000|||98.09|89.78|0.00|1.33|00010FFE|0|1| +38|2023-10-06T22:02:29.1570000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|7900|10000|0||100.76|100.45|0.00|-3.10|0|0|0||||||||||||||||||| +39|2023-10-06T22:02:29.2010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8100|10000|||100.76|100.45|0.00|-3.10| +37|2023-10-06T22:02:29.2910000-07:00|40021585|Zeromus|00010FF9|9831615||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:29.3360000-07:00|10FF000B|Pusu Rosu|79209|79209|9481|10000|||100.30|102.68|0.00|-3.13| +39|2023-10-06T22:02:29.3360000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.99|101.15|0.00|3.14| +21|2023-10-06T22:02:29.3360000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|30AB0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|9831615|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00010FFF|0|1| +21|2023-10-06T22:02:29.3800000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A5D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9831615|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011000|0|1| +38|2023-10-06T22:02:29.3800000-07:00|10FF0003|Gegehi Gehi|005A5A23|53868|73814|3950|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||| +39|2023-10-06T22:02:29.4700000-07:00|10FF0007|Kehabiqo Febiqo|142828|142828|10000|10000|||97.93|90.25|0.00|0.42| +21|2023-10-06T22:02:29.4700000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F712003|50160000|A3E|340000|200204|3D838000|11B|2D8000|0|0|0|0|0|0|0|0|9831615|40478540|10000|10000|||100.00|80.10|0.00|0.00|142080|142828|10000|10000|||97.93|90.25|0.00|0.42|00011001|0|1| +38|2023-10-06T22:02:29.4700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|0||97.93|90.25|0.00|0.42|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:29.4700000-07:00|A75|Surging Tempest|39.10|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|142828|142828| +30|2023-10-06T22:02:29.4700000-07:00|496|Intervention|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|142828|129071| +39|2023-10-06T22:02:29.5130000-07:00|4002197A|Automaton Queen|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04| +24|2023-10-06T22:02:29.5580000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|18EA|142080|142828|10000|10000|||97.93|90.25|0.00|0.42|10FF0007|Kehabiqo Febiqo|0|142080|142828|10000|10000|||97.93|90.25|0.00|0.42| +38|2023-10-06T22:02:29.5580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|0||97.93|90.25|0.00|0.42|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:02:29.1990000-07:00|Change|10FF0006||| +37|2023-10-06T22:02:29.6910000-07:00|40021585|Zeromus|00010FFE|9828735||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:29.6910000-07:00|40021585|Zeromus|00010FFA|9821094||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:29.2930000-07:00|Change|10FF0003||| +37|2023-10-06T22:02:29.7350000-07:00|40021585|Zeromus|00010FFD|9785903||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:29.2930000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:02:29.7800000-07:00|40021585|Zeromus|00010FFB|9771097||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:29.8240000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40021585|Zeromus|156003|8D100000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|9771097|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8100|10000|||100.76|100.45|0.00|-3.10|00011002|0|1| +38|2023-10-06T22:02:29.8240000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8100|10000|0||100.76|100.45|0.00|-3.10|0|0|0|||||||||||||||| +30|2023-10-06T22:02:29.8240000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:02:29.8690000-07:00|40021585|Zeromus|00010FFF|9758638||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:29.8690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|327D0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|9771097|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2550|10000|||101.34|99.23|0.00|-3.07|00011003|0|1| +37|2023-10-06T22:02:29.9130000-07:00|40021585|Zeromus|00011000|9755985||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:29.4870000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T22:02:30.0020000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2A5C0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|142828|142828|10000|10000|||97.93|90.39|0.00|2.60|9758638|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011004|0|1| +21|2023-10-06T22:02:30.0020000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|752003|499E0000|200004|3D5C8000|0|0|0|0|0|0|0|0|0|0|0|0|9758638|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||103.62|95.39|0.00|-2.18|00011005|0|1| +38|2023-10-06T22:02:30.0020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||103.62|95.39|0.00|-2.18|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:30.0020000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +00|2023-10-06T22:02:29.0000000-07:00|0044|Zeromus|Her will...my will...shall not be denied.| +21|2023-10-06T22:02:30.0470000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6840000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9755985|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||102.96|95.49|0.00|-2.23|00011006|0|1| +31|2023-10-06T22:02:30.0470000-07:00|10FF0001||||| +20|2023-10-06T22:02:30.0920000-07:00|40021585|Zeromus|8C0D|Rend the Rift|40021585|Zeromus|5.700|100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:30.0920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|142828|142828|10000|10000|0||97.94|90.43|0.00|2.44|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:30.0920000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|142828|142828| +38|2023-10-06T22:02:30.0920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||102.96|95.49|0.00|-2.23|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:30.0920000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|64|129071|142828| +261|2023-10-06T22:02:29.6000000-07:00|Change|40021585||||||||| +261|2023-10-06T22:02:29.7200000-07:00|Change|10FF000B||||||||||| +39|2023-10-06T22:02:30.1360000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2350|10000|||101.34|99.23|0.00|-3.07| +21|2023-10-06T22:02:30.2250000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9755985|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.45|100.73|0.00|0.97|00011007|0|1| +21|2023-10-06T22:02:30.2250000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|756003|4CA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9755985|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011008|0|1| +21|2023-10-06T22:02:30.3140000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.45|100.73|0.00|0.97|90216|90216|10000|10000|||100.45|100.73|0.00|0.97|00011009|0|1| +38|2023-10-06T22:02:30.3140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.45|100.73|0.00|0.97|0|0|0||||||||||||| +26|2023-10-06T22:02:30.3140000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T22:02:30.3580000-07:00|40021585|Zeromus|00010FFC|9735379||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:30.4930000-07:00|4002197A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|23C10000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|9735379|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04|0001100A|0|1| +39|2023-10-06T22:02:30.4930000-07:00|10FF0003|Gegehi Gehi|54606|73814|4150|10000|||101.64|100.51|0.00|-3.06| +37|2023-10-06T22:02:30.5810000-07:00|40021585|Zeromus|00011006|9733711||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:30.5810000-07:00|10FF0003|Gegehi Gehi|1D5E|Acceleration|10FF0003|Gegehi Gehi|E|4D60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53868|73814|3950|10000|||101.64|100.51|0.00|-3.06|53868|73814|3950|10000|||101.64|100.51|0.00|-3.06|0001100B|0|1| +20|2023-10-06T22:02:30.5810000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.11|102.40|0.00|-2.74| +38|2023-10-06T22:02:30.5810000-07:00|10FF0003|Gegehi Gehi|005A5A23|54606|73814|4150|10000|0||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||| +26|2023-10-06T22:02:30.5810000-07:00|4D6|Acceleration|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:30.1750000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:02:30.6720000-07:00|40021585|Zeromus|00011002|9697599||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:30.6720000-07:00|40021585|Zeromus|00011003|9684674||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:30.6720000-07:00|40021585|Zeromus|DoT|0|1F50|9733711|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9481|10000|||100.11|102.40|0.00|-2.74| +38|2023-10-06T22:02:30.6720000-07:00|40021585|Zeromus|005A5A00|9676658|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:02:30.2720000-07:00|Change|10FF0003||| +21|2023-10-06T22:02:30.7160000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9676658|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8100|10000|||100.76|100.45|-0.02|-3.10|0001100C|0|1| +21|2023-10-06T22:02:30.7160000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9676658|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2350|10000|||101.36|99.44|-0.02|-0.95|0001100D|0|1| +261|2023-10-06T22:02:30.2720000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:02:30.7600000-07:00|40021585|Zeromus|00011005|9657812||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:30.8030000-07:00|10FF0007|Kehabiqo Febiqo|00011004|131984||||||98.64|94.51|0.00|0.86| +37|2023-10-06T22:02:30.8490000-07:00|40021585|Zeromus|00011008|9638195||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:30.9380000-07:00|10FF0008|Kokosaze Lulusaze|00011009|90216|90216|10000|10000|0||100.38|100.79|0.00|-0.51|1F00|0|0|01|02000353|0|40A00000|| +38|2023-10-06T22:02:30.9380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.38|100.79|0.00|-0.51|0|0|0||||||||||||| +261|2023-10-06T22:02:30.4570000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:30.9820000-07:00|40021585|Zeromus|00011007|9635354||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:31.1160000-07:00|40021585|Zeromus|00011001|9614852||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:31.1160000-07:00|10FF0007|Kehabiqo Febiqo|00011001|142828||||||98.82|96.11|0.00|0.39| +39|2023-10-06T22:02:31.1610000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.34|100.82|0.00|-0.96| +261|2023-10-06T22:02:30.7550000-07:00|Change|10FF000B||||||||||||||||||||| +04|2023-10-06T22:02:30.7550000-07:00|40021977|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||103.00|103.57|0.00|-3.09| +261|2023-10-06T22:02:30.7550000-07:00|Remove|40021977| +37|2023-10-06T22:02:31.2500000-07:00|40021585|Zeromus|0001100C|9614655||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:31.2500000-07:00|40021585|Zeromus|0001100A|9605502||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:31.2500000-07:00|40021585|Zeromus|0001100D|9605257||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:30.8670000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:02:31.3400000-07:00|10FF0003|Gegehi Gehi|0001100B|54606|73814|4150|10000|0||101.64|100.51|0.00|-3.06|2300|0|0|01|040004D6|0|41A00000|| +20|2023-10-06T22:02:31.3400000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.40|99.75|0.00|0.01| +21|2023-10-06T22:02:31.3400000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|3DBB0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|9605257|40478540|10000|10000|||100.00|80.10|0.00|0.00|54606|73814|4150|10000|||101.64|100.51|0.00|-3.06|0001100E|0|1| +38|2023-10-06T22:02:31.3400000-07:00|10FF0003|Gegehi Gehi|005A5A23|54606|73814|3850|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:31.3400000-07:00|4D6|Acceleration|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:02:31.3400000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:02:31.4740000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|726003|C4210000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9605257|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.30|100.85|0.00|-1.50|0001100F|0|1| +38|2023-10-06T22:02:31.4740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.19|98.95|0.00|0.18|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:31.4740000-07:00|A96|Protraction|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|142828|81541| +38|2023-10-06T22:02:31.4740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.30|100.85|0.00|-1.50|0|0|0||||||||||||| +30|2023-10-06T22:02:31.4740000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T22:02:31.5190000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|30EF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|9605257|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9481|10000|||100.11|102.40|0.00|-3.14|00011010|0|1| +21|2023-10-06T22:02:31.5630000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011011|0|1| +21|2023-10-06T22:02:31.5630000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9605257|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011012|0|1| +38|2023-10-06T22:02:31.5630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:02:31.5630000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:02:31.2900000-07:00|Change|10FF0003||| +39|2023-10-06T22:02:31.7880000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||101.40|96.52|0.00|-2.89| +261|2023-10-06T22:02:31.2900000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:02:31.9230000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|38E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9605257|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.20|98.41|0.00|-1.76|00011013|0|1| +21|2023-10-06T22:02:31.9660000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9605257|40478540|10000|10000|||100.00|80.10|0.00|0.00|54606|73814|3850|10000|||101.64|100.51|0.00|-3.06|00011014|0|1| +261|2023-10-06T22:02:31.4860000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:02:32.0560000-07:00|4002197A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1EE20000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|9605257|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04|00011015|0|1| +24|2023-10-06T22:02:32.0560000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|1595|129071|129071|9200|10000|||101.39|96.49|0.00|-2.89|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07| +24|2023-10-06T22:02:32.0560000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D42|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07| +24|2023-10-06T22:02:32.0560000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|14EA|129844|129844|10000|10000|||98.89|98.84|0.00|-2.87|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07| +24|2023-10-06T22:02:32.0560000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D63|81809|81809|8100|10000|||100.76|100.45|-0.02|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07| +24|2023-10-06T22:02:32.0560000-07:00|10FF0003|Gegehi Gehi|HoT|798|D56|54606|73814|3850|10000|||101.64|100.51|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07| +24|2023-10-06T22:02:32.0560000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|14FB|90216|90216|10000|10000|||100.30|100.85|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07| +24|2023-10-06T22:02:32.0560000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|14ED|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07| +24|2023-10-06T22:02:32.0560000-07:00|10FF000B|Pusu Rosu|HoT|798|1526|79209|79209|9081|10000|||100.11|102.40|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07| +21|2023-10-06T22:02:32.0560000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011016|0|1| +38|2023-10-06T22:02:32.0560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||98.89|98.84|0.00|-2.87|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:32.0560000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:02:32.0560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.30|100.85|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T22:02:32.0560000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:32.0560000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8100|10000|0||100.76|100.45|-0.02|-3.10|0|0|0|||||||||||||||| +26|2023-10-06T22:02:32.0560000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:32.0560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||101.39|96.49|0.00|-2.89|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:32.0560000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:02:32.0560000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|0||101.40|99.75|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:32.0560000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:32.0560000-07:00|10FF0003|Gegehi Gehi|005A5A23|58020|73814|3850|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:32.0560000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:02:32.0560000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9081|10000|0||100.11|102.40|0.00|-3.14|0|0|0||||||||||||| +26|2023-10-06T22:02:32.0560000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:32.0560000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:02:32.0560000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:02:32.0560000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:02:32.1000000-07:00|40021585|Zeromus|0001100E|9589454||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:32.1000000-07:00|10FF0003|Gegehi Gehi|0001100E|58020|73814|3850|10000|0||101.64|100.51|0.00|-3.06|2300|0|0|01|050004D2|0|41F00000|| +37|2023-10-06T22:02:32.1000000-07:00|40021585|Zeromus|00011012|9587169||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:32.1000000-07:00|10FF0003|Gegehi Gehi|005A5A23|58020|73814|3850|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +38|2023-10-06T22:02:32.1450000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8650|10000|0||100.76|100.45|-0.02|-3.10|0|0|0|||||||||||||||| +261|2023-10-06T22:02:31.6930000-07:00|Change|10FF0006||||| +261|2023-10-06T22:02:31.6930000-07:00|Change|10FF000B||||||||||||||||| +39|2023-10-06T22:02:32.1890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8850|10000|||100.76|100.45|-0.02|-3.10| +21|2023-10-06T22:02:32.2790000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4C4A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|9587169|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2350|10000|||101.40|99.75|0.00|-3.07|00011017|0|1| +21|2023-10-06T22:02:32.3240000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40021585|Zeromus|150003|47000000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|9587169|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8650|10000|||100.76|100.45|-0.02|-3.10|00011018|0|1| +21|2023-10-06T22:02:32.3240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|ADC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9587169|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||101.39|96.49|0.00|-2.89|00011019|0|1| +31|2023-10-06T22:02:32.3240000-07:00|10FF0001||||| +39|2023-10-06T22:02:32.3680000-07:00|10FF000B|Pusu Rosu|79209|79209|9362|10000|||100.11|102.40|0.00|-3.14| +39|2023-10-06T22:02:32.3680000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.99|101.15|0.00|3.14| +38|2023-10-06T22:02:32.3680000-07:00|10FF0003|Gegehi Gehi|005A5A23|58020|73814|4400|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +39|2023-10-06T22:02:32.4570000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||97.79|100.79|0.00|-1.66| +37|2023-10-06T22:02:32.5020000-07:00|40021585|Zeromus|00011014|9587168||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:32.5020000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.30|100.85|0.00|-3.13|90216|90216|10000|10000|||100.30|100.85|0.00|-3.13|0001101A|0|1| +21|2023-10-06T22:02:32.5020000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|714003|18B20000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|9587169|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||101.39|96.49|0.00|-3.06|0001101B|0|1| +38|2023-10-06T22:02:32.5020000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.30|100.85|0.00|-3.13|0|0|0||||||||||||| +26|2023-10-06T22:02:32.5020000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +37|2023-10-06T22:02:32.5460000-07:00|40021585|Zeromus|00011013|9572608||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:32.5460000-07:00|4002197A|Automaton Queen|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04| +24|2023-10-06T22:02:32.5460000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|17E3|129844|129844|10000|10000|||97.65|101.03|0.00|-1.52|10FF0001|Sesuga Sapisuga|0|129071|129071|9200|10000|||101.39|96.49|0.00|-3.06| +21|2023-10-06T22:02:32.5460000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9587168|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||97.65|101.03|0.00|-1.52|0001101C|0|1| +21|2023-10-06T22:02:32.5460000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|0001101D|0|1| +38|2023-10-06T22:02:32.5460000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||97.65|101.03|0.00|-1.52|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:02:32.5460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||| +26|2023-10-06T22:02:32.5460000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +37|2023-10-06T22:02:32.6350000-07:00|40021585|Zeromus|0001100F|9522399||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:02:32.6350000-07:00|10FF000B|Pusu Rosu|DF1|Asylum|10FF000B|Pusu Rosu|BD880F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9362|10000|||100.11|102.40|0.00|-3.14|79209|79209|9362|10000|||100.11|102.40|0.00|-3.14|0001101E|0|1| +261|2023-10-06T22:02:32.2520000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:02:32.2520000-07:00|Change|10FF0006||| +261|2023-10-06T22:02:32.3420000-07:00|Change|10FF0003||| +37|2023-10-06T22:02:32.8140000-07:00|40021585|Zeromus|00011015|9514493||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:32.8140000-07:00|40021585|Zeromus|00011010|9501966||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:32.8580000-07:00|40021585|Zeromus|00011019|9499186||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:32.9020000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9499186|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.30|100.85|0.00|-3.13|0001101F|0|1| +261|2023-10-06T22:02:32.5270000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T22:02:33.0360000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|654003|4A200000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|9499186|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011020|0|1| +38|2023-10-06T22:02:33.0360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||| +30|2023-10-06T22:02:33.0360000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +26|2023-10-06T22:02:33.0360000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:02:33.0820000-07:00|40021585|Zeromus|0001101C|9496322||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:33.0820000-07:00|40021585|Zeromus|00011018|9478146||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:33.0820000-07:00|40021585|Zeromus|00011017|9458616||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:33.1250000-07:00|40021585|Zeromus|0001101B|9452294||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:33.1250000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2150|10000|||101.40|99.76|0.00|2.68| +20|2023-10-06T22:02:33.4380000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:33.4830000-07:00|10FF000B|Pusu Rosu|HoT|777|D81|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:33.4830000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DA0|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:33.4830000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E0A|90216|90216|10000|10000|||100.30|100.85|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:33.4830000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DF2|81809|81809|8850|10000|||100.76|100.45|-0.02|-3.10|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:33.4830000-07:00|10FF0003|Gegehi Gehi|HoT|777|DE5|58020|73814|4400|10000|||101.64|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:33.4830000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DD0|81541|81541|2150|10000|||101.42|99.77|0.00|1.28|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:33.4830000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|D96|129071|129071|9200|10000|||101.35|96.55|0.00|-2.89|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:33.4830000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E02|129844|129844|10000|10000|||98.05|96.38|0.00|-2.94|10FF000B|Pusu Rosu|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +37|2023-10-06T22:02:33.4830000-07:00|10FF000B|Pusu Rosu|0001101E|79209|79209|9362|10000|0||100.11|102.40|0.00|-0.80|1800|0|0|02|02000777|0|41C00000|||||| +26|2023-10-06T22:02:33.4830000-07:00|777|Asylum|24.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +26|2023-10-06T22:02:33.4830000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T22:02:33.4830000-07:00|4002197D|Carbuncle|77698|77698|10000|10000|||100.70|98.70|0.00|0.04| +39|2023-10-06T22:02:33.4830000-07:00|10FF0003|Gegehi Gehi|62315|73814|4600|10000|||101.64|100.51|0.00|-3.06| +38|2023-10-06T22:02:33.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||98.05|96.38|0.00|-2.94|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:33.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +30|2023-10-06T22:02:33.4830000-07:00|A74|Knight's Benediction|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +38|2023-10-06T22:02:33.4830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.30|100.85|0.00|-3.13|0|0|0|||||||||||||||| +26|2023-10-06T22:02:33.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:33.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|0||100.76|100.45|-0.02|-3.10|0|0|0|||||||||||||||| +26|2023-10-06T22:02:33.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:33.4830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||101.35|96.55|0.00|-2.89|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:33.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:33.4830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|0||101.42|99.77|0.00|1.28|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:33.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:02:33.4830000-07:00|10FF0003|Gegehi Gehi|005A5A23|62315|73814|4600|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:33.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:02:33.4830000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9362|10000|0||100.11|102.40|0.00|-0.80|0|0|0|||||||||||||||| +38|2023-10-06T22:02:33.4830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:33.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T22:02:33.6170000-07:00|4002197A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|1CFD0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|9452294|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04|00011021|0|1| +261|2023-10-06T22:02:33.1090000-07:00|Add|40021994||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:02:33.6620000-07:00|40021585|Zeromus|0001101F|9449981||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:33.6620000-07:00|40021585|Zeromus|DoT|0|17BD|9452294|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80| +38|2023-10-06T22:02:33.6620000-07:00|40021585|Zeromus|005A5A00|9443904|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:02:33.2250000-07:00|Change|10FF000B||||||||||||||| +20|2023-10-06T22:02:33.7060000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|101.82|100.06|0.00|1.12| +21|2023-10-06T22:02:33.7510000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9443904|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011022|0|1| +261|2023-10-06T22:02:33.3190000-07:00|Change|10FF0003||| +20|2023-10-06T22:02:33.7950000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|101.64|100.51|0.00|-3.06| +21|2023-10-06T22:02:33.8400000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9443904|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8850|10000|||100.76|100.45|-0.02|-3.10|00011023|0|1| +38|2023-10-06T22:02:33.8850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.67|97.16|0.00|-3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:33.8850000-07:00|4A|Sentinel|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T22:02:33.9730000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:02:33.9730000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|21E70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9443904|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.30|100.85|0.00|-3.13|00011024|0|1| +261|2023-10-06T22:02:33.6090000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:02:34.0180000-07:00|40021585|Zeromus|00011020|9424928||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:34.0180000-07:00|10FF000A|Dukaro Nezikaro|00011020|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|1E00|0|0|01|030001FB|0|41A00000|| +38|2023-10-06T22:02:34.0180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||| +39|2023-10-06T22:02:34.1510000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.30|100.85|0.00|-3.13| +38|2023-10-06T22:02:34.1510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||97.66|96.95|0.00|2.33|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:34.1510000-07:00|59|Vengeance|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|64|129844|129844| +37|2023-10-06T22:02:34.2860000-07:00|40021585|Zeromus|00011022|9422194||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:34.3740000-07:00|40021585|Zeromus|00011023|9422045||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:34.3740000-07:00|40021585|Zeromus|00011021|9414624||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:34.3740000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|714003|1B120000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|9424928|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||98.37|97.23|0.00|2.93|00011025|0|1| +37|2023-10-06T22:02:34.5950000-07:00|40021585|Zeromus|00011024|9405945||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:34.5950000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9414624|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.67|97.16|0.00|-3.13|00011026|0|1| +31|2023-10-06T22:02:34.5950000-07:00|10FF0001||||| +21|2023-10-06T22:02:34.6400000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19710000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|9405945|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011027|0|1| +261|2023-10-06T22:02:34.3500000-07:00|Change|10FF0003||||||||||||| +39|2023-10-06T22:02:34.8180000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9400|10000|||100.67|97.16|0.00|-3.13| +21|2023-10-06T22:02:34.8190000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40021585|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|9405945|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8850|10000|||100.76|100.45|-0.02|-3.10|00011028|0|1| +38|2023-10-06T22:02:34.8190000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|0||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:34.8190000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:02:34.4450000-07:00|Change|4002197D||| +38|2023-10-06T22:02:34.8640000-07:00|40021995||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:02:34.8640000-07:00|40021995||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:02:34.4450000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:02:34.9080000-07:00|40021585|Zeromus|00011025|9399015||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:02:34.9080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|200004|35440000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|00011029|0|8| +22|2023-10-06T22:02:34.9080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|200004|32BC0000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|00011029|1|8| +22|2023-10-06T22:02:34.9080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|200004|32D20000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.25|100.61|0.00|-2.91|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|00011029|2|8| +22|2023-10-06T22:02:34.9080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|20FC0000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81809|81809|8850|10000|||100.76|100.45|-0.02|-3.10|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|00011029|3|8| +22|2023-10-06T22:02:34.9080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|222B0000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|62315|73814|4600|10000|||101.64|100.51|0.00|-3.06|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|00011029|4|8| +22|2023-10-06T22:02:34.9080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|21F90000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|00011029|5|8| +22|2023-10-06T22:02:34.9080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|21430000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129071|129071|9400|10000|||100.67|97.16|0.00|-3.10|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|00011029|6|8| +22|2023-10-06T22:02:34.9080000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|21900000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||98.51|97.28|0.00|3.05|79209|79209|9362|10000|||100.11|102.40|0.00|-0.80|00011029|7|8| +261|2023-10-06T22:02:34.5380000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T22:02:34.9970000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35712003|32CE0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|9399015|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9400|10000|||100.67|97.16|0.00|-3.10|0001102A|0|1| +37|2023-10-06T22:02:35.0410000-07:00|40021585|Zeromus|00011027|9392502||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:35.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2150|10000|0||102.31|100.42|0.00|0.94|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:35.0860000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:02:35.1320000-07:00|40021585|Zeromus|00011026|9389677||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|4|22080000|730E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|0001102B|0|8| +22|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|20C10000|680E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|62315|73814|4600|10000|||101.64|100.51|0.00|-3.06|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|0001102B|1|8| +22|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|214D0000|480E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81809|81809|8850|10000|||100.76|100.45|-0.02|-3.10|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|0001102B|2|8| +22|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|38150000|BB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|0001102B|3|8| +22|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|21710000|810E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.21|100.61|0.00|-2.51|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|0001102B|4|8| +22|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|4|213C0000|2C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79209|79209|8362|10000|||100.11|102.40|0.00|-0.80|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|0001102B|5|8| +22|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|35550000|540E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|9400|10000|||100.67|97.16|0.00|-3.10|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|0001102B|6|8| +22|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|21DE0000|300E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||98.53|97.28|0.00|3.05|81541|81541|2150|10000|||102.31|100.42|0.00|0.94|0001102B|7|8| +38|2023-10-06T22:02:35.1320000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|10||98.53|97.28|0.00|3.05|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.1320000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:02:35.1320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||100.21|100.61|0.00|-2.51|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:35.1320000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:35.1320000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8850|10000|16||100.76|100.45|-0.02|-3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.1320000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:35.1320000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|16||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.1320000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:02:35.1320000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|17||102.31|100.42|0.00|0.94|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:35.1320000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:35.1320000-07:00|10FF0003|Gegehi Gehi|005A5A23|62315|73814|4600|10000|18||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.1320000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:02:35.1320000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8362|10000|17||100.11|102.40|0.00|-0.80|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:35.1320000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:35.1320000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|27||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.1320000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T22:02:34.6480000-07:00|Change|10FF0004||||||||||||||| +21|2023-10-06T22:02:35.1750000-07:00|4002197A|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|25760000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|9389677|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04|0001102C|0|1| +38|2023-10-06T22:02:35.1750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|16||100.76|100.45|-0.02|-3.10|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:02:34.7660000-07:00|Change|10FF0006||| +261|2023-10-06T22:02:34.7660000-07:00|Change|10FF0006||| +39|2023-10-06T22:02:35.2200000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||100.76|100.45|-0.02|-3.10| +21|2023-10-06T22:02:35.2200000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|152003|37B70000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|9389677|40478540|10000|10000|||100.00|80.10|0.00|0.00|62315|73814|4600|10000|||101.64|100.51|0.00|-3.06|0001102D|0|1| +38|2023-10-06T22:02:35.2200000-07:00|10FF0003|Gegehi Gehi|005A5A23|62315|73814|4400|10000|18||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:35.2200000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:02:35.2200000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +03|2023-10-06T22:02:34.7660000-07:00|40021995|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||102.59|102.15|0.00|-3.10| +261|2023-10-06T22:02:34.7660000-07:00|Add|40021995||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:02:34.7660000-07:00|Remove|40021976| +261|2023-10-06T22:02:34.8850000-07:00|Change|40021995||||| +39|2023-10-06T22:02:35.3530000-07:00|10FF000B|Pusu Rosu|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +39|2023-10-06T22:02:35.3530000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.99|101.15|0.00|3.14| +38|2023-10-06T22:02:35.3980000-07:00|10FF0003|Gegehi Gehi|005A5A23|62315|73814|4950|10000|18||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.4420000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:02:35.4420000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|22C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9389677|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|100.63|0.00|-1.87|0001102E|0|1| +39|2023-10-06T22:02:35.4880000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||98.64|98.78|-0.02|-1.22| +38|2023-10-06T22:02:35.4880000-07:00|4002197A|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.85|98.62|0.00|-3.04|0|0|0||||||| +26|2023-10-06T22:02:35.4880000-07:00|30|Well Fed|1118.63|10FF0008|Kokosaze Lulusaze|4002197A|Automaton Queen|2964|85668|90216| +26|2023-10-06T22:02:35.4880000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|4002197A|Automaton Queen|01|85668|40478540| +24|2023-10-06T22:02:35.4880000-07:00|10FF000B|Pusu Rosu|HoT|777|DC1|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80|10FF000B|Pusu Rosu|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:35.4880000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DA3|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:35.4880000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E30|90216|90216|10000|10000|||99.90|100.63|-0.02|3.13|10FF000B|Pusu Rosu|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:35.4880000-07:00|10FF0006|Wowobora Gogobora|HoT|777|D92|81809|81809|9600|10000|||100.76|100.45|-0.02|-3.10|10FF000B|Pusu Rosu|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:35.4880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E11|129844|129844|10000|10000|||98.64|98.78|-0.02|-1.22|10FF000B|Pusu Rosu|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:35.4880000-07:00|10FF0003|Gegehi Gehi|HoT|777|D6C|62315|73814|4950|10000|||101.64|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:35.4880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E14|81541|81541|1150|10000|||102.31|100.42|-0.02|0.93|10FF000B|Pusu Rosu|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +24|2023-10-06T22:02:35.4880000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E24|129071|129071|9400|10000|||100.67|97.16|0.00|-3.10|10FF000B|Pusu Rosu|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80| +38|2023-10-06T22:02:35.4880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|10||98.64|98.78|-0.02|-1.22|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:35.4880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.90|100.63|-0.02|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:35.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:35.4880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|16||100.76|100.45|-0.02|-3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:35.4880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9400|10000|16||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:35.4880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|17||102.31|100.42|-0.02|0.93|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:35.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:02:35.4880000-07:00|10FF0003|Gegehi Gehi|005A5A23|65751|73814|4950|10000|18||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:02:35.4880000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8643|10000|17||100.11|102.40|0.00|-0.80|0|0|0||||||||||||||||||| +38|2023-10-06T22:02:35.4880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|27||99.99|101.15|0.00|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:35.4880000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +39|2023-10-06T22:02:35.5310000-07:00|4002197A|Automaton Queen|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04| +21|2023-10-06T22:02:35.5760000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|BAB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9389677|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.90|100.63|-0.02|3.13|0001102F|0|1| +261|2023-10-06T22:02:35.3180000-07:00|Change|10FF0006||| +37|2023-10-06T22:02:35.7530000-07:00|40021585|Zeromus|0001102A|9376671||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:35.7530000-07:00|10FF0001|Sesuga Sapisuga|0001102A|129071|129071|10000|10000|16||100.67|97.16|0.00|-3.10|1300|0|0|0| +37|2023-10-06T22:02:35.7530000-07:00|10FF000B|Pusu Rosu|00011029|79209|79209|8643|10000|17||100.11|102.40|0.00|-0.80|1800|0|0|01|06000096|0|41700000|| +26|2023-10-06T22:02:35.7530000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:02:35.7530000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9400|10000|||100.67|97.16|0.00|-3.10|129071|129071|9400|10000|||100.67|97.16|0.00|-3.10|00011030|0|1| +261|2023-10-06T22:02:35.4110000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T22:02:35.8420000-07:00|10FF0006|Wowobora Gogobora|00011028|81809|81809|9600|10000|16||100.76|100.45|-0.02|-3.10|1B00|0|0|01|05000AA5|0|0|| +38|2023-10-06T22:02:35.8420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|16||100.76|100.45|-0.02|-3.10|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:02:35.8870000-07:00|10FF000A|Dukaro Nezikaro|00011029|83502|83502|10000|10000|27||99.99|101.15|0.00|3.14|1E01|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:02:35.8870000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:02:35.4110000-07:00|Change|10FF0001||| +261|2023-10-06T22:02:35.4110000-07:00|Change|40021995||| +37|2023-10-06T22:02:35.9310000-07:00|40021585|Zeromus|0001102C|9367081||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:35.9310000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9376671|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||98.76|99.01|0.00|-1.81|00011031|0|1| +21|2023-10-06T22:02:35.9310000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9376671|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011032|0|1| +261|2023-10-06T22:02:35.5070000-07:00|Change|10FF000B||| +37|2023-10-06T22:02:36.0210000-07:00|40021585|Zeromus|0001102D|9352818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:36.0210000-07:00|10FF0008|Kokosaze Lulusaze|00011029|90216|90216|10000|10000|15||99.81|100.63|0.00|3.13|1F02|0|0|01|06000096|0|41700000|| +26|2023-10-06T22:02:36.0210000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:36.0210000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|17||102.86|100.95|0.00|0.71|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:36.0210000-07:00|317|Dissipation|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:36.0660000-07:00|40021996||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:02:36.0660000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|13AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|00011033|0|1| +261|2023-10-06T22:02:35.6990000-07:00|Change|40021585||||||||||| +22|2023-10-06T22:02:36.0660000-07:00|40021585|Zeromus|8C0D|Rend the Rift|10FF0001|Sesuga Sapisuga|750603|2D7B0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.67|97.16|0.00|-3.10|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011034|0|8| +22|2023-10-06T22:02:36.0660000-07:00|40021585|Zeromus|8C0D|Rend the Rift|10FF0007|Kehabiqo Febiqo|750603|4CD60000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.14|98.67|0.00|3.05|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011034|1|8| +22|2023-10-06T22:02:36.0660000-07:00|40021585|Zeromus|8C0D|Rend the Rift|10FF0006|Wowobora Gogobora|750603|8FEE0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||100.76|100.45|-0.02|-3.10|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011034|2|8| +22|2023-10-06T22:02:36.0660000-07:00|40021585|Zeromus|8C0D|Rend the Rift|10FF0003|Gegehi Gehi|750603|85960000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|65751|73814|4950|10000|||101.64|100.51|0.00|-3.06|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011034|3|8| +22|2023-10-06T22:02:36.0660000-07:00|40021585|Zeromus|8C0D|Rend the Rift|10FF0008|Kokosaze Lulusaze|750603|91D90000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011034|4|8| +22|2023-10-06T22:02:36.0660000-07:00|40021585|Zeromus|8C0D|Rend the Rift|10FF000A|Dukaro Nezikaro|750603|783C0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011034|5|8| +22|2023-10-06T22:02:36.0660000-07:00|40021585|Zeromus|8C0D|Rend the Rift|10FF0004|Buhojaqe Zijaqe|750603|82670000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1150|10000|||102.86|100.95|0.00|0.71|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011034|6|8| +22|2023-10-06T22:02:36.0660000-07:00|40021585|Zeromus|8C0D|Rend the Rift|10FF000B|Pusu Rosu|750603|88CE0000|1B|8C0D8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8643|10000|||100.11|102.40|0.00|-0.80|9367081|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011034|7|8| +20|2023-10-06T22:02:36.0660000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.11|102.40|0.00|-0.80| +38|2023-10-06T22:02:36.0660000-07:00|40021996||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:02:36.1100000-07:00|40021585|Zeromus|0001102E|9343919||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:36.1100000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1350|10000|||102.86|100.95|0.00|0.71| +20|2023-10-06T22:02:36.1100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|102.86|100.95|0.00|0.71| +37|2023-10-06T22:02:36.1550000-07:00|10FF0006|Wowobora Gogobora|00011029|81809|81809|9600|10000|16||100.76|100.45|-0.02|-3.10|1B03|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:02:36.1550000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +00|2023-10-06T22:02:35.0000000-07:00|0044|Zeromus|By my power shall all know salvation!| +261|2023-10-06T22:02:35.6990000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:02:36.2440000-07:00|10FF0004|Buhojaqe Zijaqe|0001102B|81541|81541|1350|10000|17||102.95|101.04|0.00|1.05|1C00|0|0|01|05000129|0|41E774B8|| +21|2023-10-06T22:02:36.2440000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|265E0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|9343919|40478540|10000|10000|||100.00|80.10|0.00|0.00|65751|73814|4950|10000|||101.64|100.51|0.00|-3.06|00011035|0|1| +38|2023-10-06T22:02:36.2450000-07:00|10FF0003|Gegehi Gehi|005A5A23|65751|73814|4650|10000|18||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:36.2450000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:02:36.2880000-07:00|10FF0003|Gegehi Gehi|00011029|73814|73814|4650|10000|18||101.64|100.51|0.00|-3.06|2304|0|0|01|05000096|0|41700000|| +26|2023-10-06T22:02:36.2880000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T22:02:36.3330000-07:00|40021585|Zeromus|0001102F|9340932||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:36.3760000-07:00|10FF0001|Sesuga Sapisuga|00011030|129071|129071|10000|10000|16||100.67|97.16|0.00|-3.10|1300|0|0|01|0400004C|0|41A00000|| +26|2023-10-06T22:02:36.3760000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:02:36.3760000-07:00|10FF0003|Gegehi Gehi|0001102B|73814|73814|4650|10000|18||101.64|100.51|0.00|-3.06|2301|0|0|01|06000129|0|41E66455|| +37|2023-10-06T22:02:36.4210000-07:00|10FF0004|Buhojaqe Zijaqe|00011029|81541|81541|1350|10000|17||103.00|101.08|0.00|1.69|1C05|0|0|01|04000096|0|41700000|| +26|2023-10-06T22:02:36.4210000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T22:02:35.9390000-07:00|Add|40021996||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:02:35.9390000-07:00|40021996|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||101.32|101.77|0.00|0.60| +261|2023-10-06T22:02:35.9390000-07:00|Change|40021996||| +37|2023-10-06T22:02:36.4660000-07:00|40021585|Zeromus|00011031|9338065||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:36.4660000-07:00|40021585|Zeromus|00011032|9335872||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:36.4660000-07:00|10FF0003|Gegehi Gehi|73814|73814|4850|10000|||101.64|100.51|0.00|-3.06| +21|2023-10-06T22:02:36.4660000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|750003|28620000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|9340932|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.67|97.16|0.00|-3.10|00011036|0|1| +38|2023-10-06T22:02:36.4660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|16||100.67|97.16|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:36.4660000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T22:02:36.4660000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:02:36.0550000-07:00|Change|40021996||||| +37|2023-10-06T22:02:36.5100000-07:00|10FF0006|Wowobora Gogobora|0001102B|81809|81809|9600|10000|16||100.76|100.45|-0.02|-3.10|1B02|0|0|01|06000129|0|41E553F2|| +37|2023-10-06T22:02:36.5550000-07:00|10FF0001|Sesuga Sapisuga|00011029|129071|129071|10000|10000|16||100.67|97.16|0.00|-3.10|1306|0|0|03|05000558|04|C1F00000|||||||||| +26|2023-10-06T22:02:36.5550000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:02:36.6430000-07:00|10FF000A|Dukaro Nezikaro|0001102B|83502|83502|10000|10000|27||99.99|101.15|0.00|3.14|1E03|0|0|01|06000129|0|41E4438F|| +37|2023-10-06T22:02:36.6880000-07:00|10FF0007|Kehabiqo Febiqo|00011029|129844|129844|10000|10000|10||99.92|98.13|0.00|3.05|1507|0|0|01|04000096|0|41700000|| +26|2023-10-06T22:02:36.6880000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +24|2023-10-06T22:02:36.6880000-07:00|40021585|Zeromus|DoT|0|2B3A|9335872|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8643|10000|||100.11|102.40|0.00|-3.13| +38|2023-10-06T22:02:36.6880000-07:00|40021585|Zeromus|005A5A00|9324806|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T22:02:36.7320000-07:00|4002197A|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|736003|A5D60000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|9335872|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04|00011037|0|1| +37|2023-10-06T22:02:36.7760000-07:00|10FF0008|Kokosaze Lulusaze|0001102B|90216|90216|10000|10000|15||99.81|100.63|0.00|3.13|1F04|0|0|01|05000129|0|41E33120|| +21|2023-10-06T22:02:36.8210000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32712003|34F80000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|9324806|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.02|98.09|-0.01|3.05|00011038|0|1| +261|2023-10-06T22:02:36.3500000-07:00|Change|10FF0003||| +37|2023-10-06T22:02:36.8660000-07:00|40021585|Zeromus|00011033|9319772||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:36.8660000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|A970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9324806|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.67|97.16|0.00|-3.10|00011039|0|1| +21|2023-10-06T22:02:36.8660000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|23210000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|9324806|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|0001103A|0|1| +31|2023-10-06T22:02:36.8660000-07:00|10FF0001||||| +261|2023-10-06T22:02:36.4440000-07:00|Change|4002197D||| +37|2023-10-06T22:02:36.9110000-07:00|10FF000B|Pusu Rosu|0001102B|79209|79209|8643|10000|17||100.11|102.40|0.00|-3.14|1805|0|0|01|05000129|0|41E220BD|| +21|2023-10-06T22:02:36.9110000-07:00|40021995|Emerald Garuda|64FE|Aerial Blast|40021585|Zeromus|354003|76FE0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|9319772|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.59|102.15|0.00|-3.10|0001103B|0|1| +26|2023-10-06T22:02:36.9110000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:02:36.9110000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|21750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9319772|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|0001103C|0|1| +21|2023-10-06T22:02:36.9110000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9319772|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||101.64|100.51|0.00|-3.06|0001103D|0|1| +37|2023-10-06T22:02:36.9990000-07:00|40021585|Zeromus|00011035|9309950||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:36.9990000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9319772|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.76|100.45|-0.02|-3.10|0001103E|0|1| +21|2023-10-06T22:02:36.9990000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31770000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|9319772|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8643|10000|||100.11|102.40|0.00|-3.14|0001103F|0|1| +261|2023-10-06T22:02:36.5440000-07:00|Change|10FF000B||||| +37|2023-10-06T22:02:37.0450000-07:00|10FF0001|Sesuga Sapisuga|0001102B|129071|129071|10000|10000|16||100.67|97.16|0.00|-3.10|1306|0|0|03|02000129|0|41E10E4E|||||||||| +21|2023-10-06T22:02:37.0450000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|539A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|9319772|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1350|10000|||103.11|101.18|0.00|-2.99|00011040|0|1| +38|2023-10-06T22:02:37.0450000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|950|10000|17||103.11|101.18|0.00|-2.99|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:37.0450000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:37.0450000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4850|10000|18||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:37.0450000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:02:37.0450000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8243|10000|17||100.11|102.40|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:37.0450000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:37.0450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|27||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:37.0450000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T22:02:36.5440000-07:00|Change|40021996||||||||| +34|2023-10-06T22:02:37.0890000-07:00|40021996|Ruby Carbuncle|40021996|Ruby Carbuncle|01| +38|2023-10-06T22:02:37.0890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|10||100.05|98.07|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:37.0890000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:02:37.0890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|15||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:37.0890000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:37.0890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|16||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:37.0890000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:37.0890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|16||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:37.0890000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T22:02:37.1340000-07:00|40021585|Zeromus|00011036|9299612||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:37.1340000-07:00|10FF0001|Sesuga Sapisuga|00011036|129071|129071|10000|10000|16||100.67|97.16|0.00|-3.10|1300|0|0|02|05000558|04|41F00000|||||| +38|2023-10-06T22:02:37.1340000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|16||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +33|2023-10-06T22:02:37.1780000-07:00|80034E7C|80000001|3DC|00|00|00| +37|2023-10-06T22:02:37.1780000-07:00|10FF0007|Kehabiqo Febiqo|0001102B|129844|129844|10000|10000|10||100.05|98.07|0.00|-3.14|1507|0|0|01|02000129|0|41DFFBDF|| +39|2023-10-06T22:02:37.1780000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.81|100.63|0.00|3.13| +261|2023-10-06T22:02:36.6630000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:02:37.2230000-07:00|10FF0001|Sesuga Sapisuga|00011034|117428|129071|10000|10000|0||100.67|97.16|0.00|-3.10|1300|0|0|01|02000000|0|0|| +38|2023-10-06T22:02:37.2230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|117428|129071|10000|10000|0||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:37.2230000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T22:02:37.2680000-07:00|10FF0007|Kehabiqo Febiqo|00011034|110174|129844|10000|10000|0||100.05|98.07|0.00|-3.14|1501|0|0|01|02000000|0|0|| +37|2023-10-06T22:02:37.2680000-07:00|40021585|Zeromus|0001103A|9290619||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:37.2680000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|2.982|100.76|100.45|-0.02|-3.10| +38|2023-10-06T22:02:37.2680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110174|129844|10000|10000|0||100.05|98.07|0.00|-3.14|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:37.2680000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +261|2023-10-06T22:02:36.7870000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T22:02:37.3120000-07:00|10FF0006|Wowobora Gogobora|00011034|44963|81809|9600|10000|0||100.76|100.45|-0.02|-3.10|1B02|0|0|01|06000000|0|0|| +21|2023-10-06T22:02:37.3120000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9290619|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|950|10000|||103.11|101.18|0.00|-2.99|00011041|0|1| +38|2023-10-06T22:02:37.3120000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|44963|81809|9600|10000|0||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:37.3120000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +37|2023-10-06T22:02:37.3560000-07:00|10FF0003|Gegehi Gehi|00011034|39616|73814|4850|10000|0||101.64|100.51|0.00|-3.06|2303|0|0|01|06000000|0|0|| +38|2023-10-06T22:02:37.3560000-07:00|10FF0003|Gegehi Gehi|005A5A23|39616|73814|4850|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:37.3560000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +37|2023-10-06T22:02:37.4010000-07:00|10FF0008|Kokosaze Lulusaze|00011034|52879|90216|10000|10000|0||99.81|100.63|0.00|3.13|1F04|0|0|01|05000000|0|0|| +37|2023-10-06T22:02:37.4010000-07:00|40021585|Zeromus|00011039|9287908||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:37.4010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|52879|90216|10000|10000|0||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:37.4010000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +37|2023-10-06T22:02:37.4460000-07:00|40021585|Zeromus|00011038|9274348||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:37.4460000-07:00|10FF000A|Dukaro Nezikaro|00011034|52722|83502|10000|10000|0||99.99|101.15|0.00|3.14|1E05|0|0|01|06000000|0|0|| +37|2023-10-06T22:02:37.4460000-07:00|40021585|Zeromus|0001103D|9274347||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:37.4460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52722|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:37.4460000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:02:37.4910000-07:00|10FF0004|Buhojaqe Zijaqe|00011034|48158|81541|950|10000|0||103.11|101.18|0.00|-2.99|1C06|0|0|01|05000000|0|0|| +21|2023-10-06T22:02:37.4910000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|710003|58500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9290619|40478540|10000|10000|||100.00|80.10|0.00|0.00|117428|129071|10000|10000|||100.67|97.16|0.00|-3.10|00011042|0|1| +38|2023-10-06T22:02:37.4910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|48158|81541|950|10000|0||103.11|101.18|0.00|-2.99|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:37.4910000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:02:37.5350000-07:00|40021585|Zeromus|0001103C|9265782||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:37.5350000-07:00|10FF000B|Pusu Rosu|00011034|44187|79209|8243|10000|0||100.11|102.40|0.00|-3.14|1807|0|0|01|05000000|0|0|| +38|2023-10-06T22:02:37.5350000-07:00|40021585|Zeromus|005A5A00|9265782|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T22:02:37.5350000-07:00|808|Unknown_808|9999.00|40021585|Zeromus|40021585|Zeromus|286|40478540|40478540| +37|2023-10-06T22:02:37.5350000-07:00|40021585|Zeromus|0001103E|9265632||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:37.5350000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|14970000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9274347|40478540|10000|10000|||100.00|80.10|0.00|0.00|52879|90216|10000|10000|||99.81|100.63|0.00|3.13|00011043|0|1| +38|2023-10-06T22:02:37.5350000-07:00|10FF000B|Pusu Rosu|005A5A18|44187|79209|8243|10000|0||100.11|102.40|0.00|-3.14|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:37.5350000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +39|2023-10-06T22:02:37.8030000-07:00|10FF0001|Sesuga Sapisuga|118718|129071|10000|10000|||100.67|97.16|0.00|-3.10| +37|2023-10-06T22:02:37.8470000-07:00|40021585|Zeromus|00011040|9244230||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:37.8470000-07:00|40021585|Zeromus|00011041|9244078||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:38.0260000-07:00|40021585|Zeromus|00011042|9221470||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:38.0260000-07:00|40021585|Zeromus|00011037|9179016||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:38.0260000-07:00|4002197A|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.85|98.62|0.00|-3.04|0|0|0|||| +30|2023-10-06T22:02:38.0260000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|4002197A|Automaton Queen|01|85668|40478540| +24|2023-10-06T22:02:38.0710000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|156D|52879|90216|10000|10000|||99.81|100.63|0.00|3.13|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.10|101.99|0.00|-3.14| +24|2023-10-06T22:02:38.0710000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1404|48158|81541|950|10000|||103.13|101.18|0.00|0.95|10FF0004|Buhojaqe Zijaqe|0|48158|81541|950|10000|||103.13|101.18|0.00|0.95| +38|2023-10-06T22:02:38.0710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|58364|90216|10000|10000|0||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:02:38.0710000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|53282|81541|950|10000|0||103.13|101.18|0.00|0.95|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:02:38.1150000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|90A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9244078|40478540|10000|10000|||100.00|80.10|0.00|0.00|52722|83502|10000|10000|||99.99|101.15|0.00|3.14|00011044|0|1| +37|2023-10-06T22:02:38.1600000-07:00|40021585|Zeromus|00011043|9173745||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:38.1600000-07:00|10FF0006|Wowobora Gogobora|HoT|0|13E0|44963|81809|9600|10000|||100.76|100.45|-0.02|-3.10|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.10|101.99|0.00|-3.14| +38|2023-10-06T22:02:38.1600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|50051|81809|10000|10000|0||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:02:37.7110000-07:00|Change|10FF0006||||| +37|2023-10-06T22:02:38.2040000-07:00|40021585|Zeromus|0001103B|9143283||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:38.2040000-07:00|10FF0006|Wowobora Gogobora|50869|81809|10000|10000|||100.76|100.45|-0.02|-3.10| +21|2023-10-06T22:02:38.2490000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9173745|40478540|10000|10000|||100.00|80.10|0.00|0.00|58364|90216|10000|10000|||99.81|100.63|0.00|3.13|00011045|0|1| +37|2023-10-06T22:02:38.2930000-07:00|40021585|Zeromus|0001103F|9130620||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:38.3390000-07:00|10FF000B|Pusu Rosu|44979|79209|8524|10000|||100.08|101.46|-0.01|-3.14| +39|2023-10-06T22:02:38.3390000-07:00|10FF000A|Dukaro Nezikaro|53557|83502|10000|10000|||99.99|101.15|0.00|3.14| +21|2023-10-06T22:02:38.3390000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|12D20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9130620|40478540|10000|10000|||100.00|80.10|0.00|0.00|118718|129071|10000|10000|||100.67|97.16|0.00|-3.10|00011046|0|1| +24|2023-10-06T22:02:38.3830000-07:00|10FF0003|Gegehi Gehi|HoT|0|14BB|39616|73814|4850|10000|||101.64|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +38|2023-10-06T22:02:38.3830000-07:00|10FF0003|Gegehi Gehi|005A5A23|44923|73814|5400|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +24|2023-10-06T22:02:38.4280000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|149F|52722|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +26|2023-10-06T22:02:38.4280000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:02:38.4280000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2BFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9130620|40478540|10000|10000|||100.00|80.10|0.00|0.00|58364|90216|10000|10000|||99.81|100.63|0.00|3.13|00011047|0|1| +38|2023-10-06T22:02:38.4280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|58836|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:02:38.0610000-07:00|Change|10FF0003||| +39|2023-10-06T22:02:38.4740000-07:00|10FF0007|Kehabiqo Febiqo|111472|129844|10000|10000|||100.11|97.55|0.00|3.05| +24|2023-10-06T22:02:38.4740000-07:00|10FF000B|Pusu Rosu|HoT|777|DC3|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +24|2023-10-06T22:02:38.4740000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DC7|52722|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +24|2023-10-06T22:02:38.4740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|DE8|58364|90216|10000|10000|||99.81|100.63|0.00|3.13|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +24|2023-10-06T22:02:38.4740000-07:00|10FF0006|Wowobora Gogobora|HoT|777|D6E|50869|81809|10000|10000|||100.76|100.45|-0.02|-3.10|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +24|2023-10-06T22:02:38.4740000-07:00|10FF0003|Gegehi Gehi|HoT|777|15B5|39616|73814|4850|10000|||101.64|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +24|2023-10-06T22:02:38.4740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|D9D|110174|129844|10000|10000|||100.11|97.55|0.00|3.05|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +24|2023-10-06T22:02:38.4740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DF4|53282|81541|950|10000|||104.42|101.86|0.00|1.22|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +24|2023-10-06T22:02:38.4740000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DCF|118718|129071|10000|10000|||100.67|97.16|0.00|-3.10|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +24|2023-10-06T22:02:38.4740000-07:00|10FF000B|Pusu Rosu|HoT|0|1548|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14|10FF000B|Pusu Rosu|0|44187|79209|8243|10000|||100.08|101.46|-0.01|-3.14| +20|2023-10-06T22:02:38.4740000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|104.42|101.86|0.00|1.22| +38|2023-10-06T22:02:38.4740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|114957|129844|10000|10000|0||100.11|97.55|0.00|3.05|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:38.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:38.4740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|61924|90216|10000|10000|0||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:38.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:38.4740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54307|81809|10000|10000|0||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:38.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:38.4740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122253|129071|10000|10000|0||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:38.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:38.4740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56854|81541|950|10000|0||104.42|101.86|0.00|1.22|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:38.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:02:38.4740000-07:00|10FF0003|Gegehi Gehi|005A5A23|50480|73814|5400|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:38.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:02:38.4740000-07:00|10FF000B|Pusu Rosu|005A5A18|53950|79209|8524|10000|0||100.08|101.46|-0.01|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:38.4740000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:02:38.4740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|62363|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:38.4740000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +39|2023-10-06T22:02:38.5160000-07:00|4002197A|Automaton Queen|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04| +261|2023-10-06T22:02:38.0610000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T22:02:38.0610000-07:00|Change|10FF000B||||||||| +24|2023-10-06T22:02:38.5620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|154B|114957|129844|10000|10000|||100.11|97.55|0.00|3.05|10FF0007|Kehabiqo Febiqo|0|114957|129844|10000|10000|||100.11|97.55|0.00|3.05| +21|2023-10-06T22:02:38.5620000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|114957|129844|10000|10000|||100.11|97.55|0.00|3.05|114957|129844|10000|10000|||100.11|97.55|0.00|3.05|00011048|0|1| +22|2023-10-06T22:02:38.5620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|37540000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011049|0|8| +22|2023-10-06T22:02:38.5620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|360B0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|62363|83502|10000|10000|||99.99|101.15|0.00|3.14|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011049|1|8| +22|2023-10-06T22:02:38.5620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|34E00000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|61924|90216|10000|10000|||99.81|100.63|0.00|3.13|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011049|2|8| +22|2023-10-06T22:02:38.5620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|55C70000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|54307|81809|10000|10000|||100.76|100.45|-0.02|-3.10|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011049|3|8| +22|2023-10-06T22:02:38.5620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|358E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|50480|73814|5400|10000|||101.64|100.51|0.00|-3.06|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011049|4|8| +22|2023-10-06T22:02:38.5620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|35C70000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|114957|129844|10000|10000|||100.11|97.55|0.00|3.05|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011049|5|8| +22|2023-10-06T22:02:38.5620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|363C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|122253|129071|10000|10000|||100.67|97.16|0.00|-3.10|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011049|6|8| +22|2023-10-06T22:02:38.5620000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|200004|54440000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|56854|81541|950|10000|||104.55|101.91|0.00|1.35|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011049|7|8| +38|2023-10-06T22:02:38.5620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120408|129844|10000|10000|0||100.11|97.55|0.00|3.05|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:38.5620000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T22:02:38.5620000-07:00|A75|Surging Tempest|40.01|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:02:38.5620000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:02:38.5620000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:02:38.6510000-07:00|40021585|Zeromus|00011044|9128306||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:38.6510000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1F74|122253|129071|10000|10000|||100.67|97.16|0.00|-3.10|10FF000B|Pusu Rosu|0|53950|79209|8524|10000|||100.08|101.46|0.00|-3.14| +20|2023-10-06T22:02:38.6510000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|101.64|100.51|0.00|-3.06| +38|2023-10-06T22:02:38.6510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:02:38.6960000-07:00|40021996|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|16DE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|61924|90216|10000|10000|||99.81|100.63|0.00|3.13|73956|77430|10000|10000|||98.78|97.65|0.00|-1.37|0001104A|0|1| +38|2023-10-06T22:02:38.7400000-07:00|4002197A|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.85|98.62|0.00|-3.04|0|0|0||||||| +26|2023-10-06T22:02:38.7400000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|4002197A|Automaton Queen|01|85668|40478540| +21|2023-10-06T22:02:38.7840000-07:00|4002197A|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|730003|5FF70000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|9128306|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04|0001104B|0|1| +04|2023-10-06T22:02:38.3480000-07:00|4002197D|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||100.70|98.70|0.00|0.04| +261|2023-10-06T22:02:38.3480000-07:00|Remove|4002197D| +261|2023-10-06T22:02:38.4450000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T22:02:38.9190000-07:00|40021585|Zeromus|00011046|9123488||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:39.0090000-07:00|40021585|Zeromus|00011045|9120650||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:39.0090000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42710003|2F520000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|9128306|40478540|10000|10000|||100.00|80.10|0.00|0.00|62363|83502|10000|10000|||99.99|101.15|0.00|3.14|0001104C|0|1| +37|2023-10-06T22:02:39.0530000-07:00|40021585|Zeromus|00011047|9109390||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:39.0530000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|18CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9120650|40478540|10000|10000|||100.00|80.10|0.00|0.00|61924|90216|10000|10000|||99.81|100.63|0.00|3.13|0001104D|0|1| +21|2023-10-06T22:02:39.0530000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3F150000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|120408|129844|10000|10000|||100.11|97.55|0.00|3.05|9120650|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001104E|0|1| +39|2023-10-06T22:02:39.0980000-07:00|10FF0004|Buhojaqe Zijaqe|57669|81541|1150|10000|||104.86|102.05|0.00|3.08| +37|2023-10-06T22:02:39.1430000-07:00|10FF000B|Pusu Rosu|00011049|68114||||||100.08|101.46|0.00|-3.14| +21|2023-10-06T22:02:39.1430000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|DF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9120650|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.67|97.16|0.00|-3.10|0001104F|0|1| +31|2023-10-06T22:02:39.1430000-07:00|10FF0001||||| +261|2023-10-06T22:02:38.8000000-07:00|Change|40021996||||||||| +37|2023-10-06T22:02:39.2760000-07:00|10FF000A|Dukaro Nezikaro|00011049|76198||||||99.99|101.15|0.00|3.14| +21|2023-10-06T22:02:39.2760000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|753C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9109390|40478540|10000|10000|||100.00|80.10|0.00|0.00|120408|129844|10000|10000|||100.11|97.55|0.00|3.05|00011050|0|1| +38|2023-10-06T22:02:39.2760000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120408|129844|10000|10000|0||100.11|97.55|0.00|3.05|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:39.2760000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +37|2023-10-06T22:02:39.3210000-07:00|10FF0007|Kehabiqo Febiqo|00011048|120408|129844|10000|10000|0||100.11|97.55|0.00|3.05|1500|0|0|03|02000499|02|41700000|||||||||| +21|2023-10-06T22:02:39.3210000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|13160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9109390|40478540|10000|10000|||100.00|80.10|0.00|0.00|120408|129844|10000|10000|||100.11|97.55|0.00|3.05|00011051|0|1| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|200004|53530000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|0|9| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|200004|54C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|62363|83502|10000|10000|||99.99|101.15|0.00|3.14|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|1|9| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|4|36AC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61924|90216|10000|10000|||99.81|100.63|0.00|3.13|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|2|9| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|35E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|54307|81809|10000|10000|||100.76|100.45|-0.02|-3.10|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|3|9| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|42CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9109390|40478540|10000|10000|||100.00|80.10|0.00|0.00|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|4|9| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|34BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|50480|73814|5400|10000|||101.64|100.51|0.00|-3.06|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|5|9| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|35AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|120408|129844|10000|10000|||100.11|97.55|0.00|3.05|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|6|9| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|35C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.67|97.16|0.00|-3.10|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|7|9| +22|2023-10-06T22:02:39.3210000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|53B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|57669|81541|1150|10000|||104.91|102.07|0.00|-2.92|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14|00011052|8|9| +38|2023-10-06T22:02:39.3210000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120408|129844|10000|10000|0||100.11|97.55|0.00|3.05|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:02:39.3210000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54307|81809|10000|10000|0||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:39.3210000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:02:39.4100000-07:00|10FF0008|Kokosaze Lulusaze|00011049|75460||||||99.81|100.63|0.00|3.13| +21|2023-10-06T22:02:39.4100000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4FD50000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|9109390|40478540|10000|10000|||100.00|80.10|0.00|0.00|57669|81541|1150|10000|||104.91|102.07|0.00|-2.92|00011053|0|1| +37|2023-10-06T22:02:39.4990000-07:00|10FF0008|Kokosaze Lulusaze|0001104A|81314||||||99.81|100.63|0.00|3.13| +39|2023-10-06T22:02:39.4990000-07:00|10FF0003|Gegehi Gehi|51218|73814|5600|10000|||101.64|100.51|0.00|-3.06| +37|2023-10-06T22:02:39.5440000-07:00|10FF0006|Wowobora Gogobora|00011049|76266||||||100.76|100.45|-0.02|-3.10| +261|2023-10-06T22:02:39.0340000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:02:39.6330000-07:00|40021585|Zeromus|0001104C|9097276||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:39.6790000-07:00|40021585|Zeromus|0001104F|9093708||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:39.6790000-07:00|10FF0003|Gegehi Gehi|00011049|64928||||||101.64|100.51|0.00|-3.06| +24|2023-10-06T22:02:39.6790000-07:00|40021585|Zeromus|DoT|0|205F|9109390|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|68114|79209|8524|10000|||100.08|101.46|0.00|-3.14| +38|2023-10-06T22:02:39.6790000-07:00|40021585|Zeromus|005A5A00|9085421|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T22:02:39.7230000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|350003|47EF0000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|9085421|40478540|10000|10000|||100.00|80.10|0.00|0.00|76266|81809|10000|10000|||100.76|100.45|-0.02|-3.10|00011054|0|1| +38|2023-10-06T22:02:39.7230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76266|81809|10000|10000|0||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:39.7230000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:02:39.2190000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T22:02:39.8110000-07:00|10FF0007|Kehabiqo Febiqo|00011049|129844||||||100.11|97.55|0.00|-3.13| +37|2023-10-06T22:02:39.8560000-07:00|40021585|Zeromus|00011051|9080535||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:39.8560000-07:00|40021585|Zeromus|0001104D|9074189||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:39.8560000-07:00|10FF0007|Kehabiqo Febiqo|0001104E|113695||||||100.11|97.55|0.00|-3.13| +37|2023-10-06T22:02:39.9010000-07:00|40021585|Zeromus|00011050|9044177||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:39.9010000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|22A60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9085421|40478540|10000|10000|||100.00|80.10|0.00|0.00|81314|90216|10000|10000|||99.81|100.63|0.00|3.13|00011055|0|1| +38|2023-10-06T22:02:39.9010000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81314|90216|10000|10000|0||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:39.9010000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:02:39.9460000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|10620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9044177|40478540|10000|10000|||100.00|80.10|0.00|0.00|113695|129844|10000|10000|||100.11|97.55|0.00|-3.13|00011056|0|1| +261|2023-10-06T22:02:39.4110000-07:00|Change|10FF0003||||| +37|2023-10-06T22:02:39.9890000-07:00|10FF000B|Pusu Rosu|00011052|79209|79209|9024|10000|0||100.08|101.46|0.00|-3.14|1800|0|0|0| +261|2023-10-06T22:02:39.5100000-07:00|Change|10FF000B||| +21|2023-10-06T22:02:40.0390000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|752003|BFB30000|4|29498000|0|0|0|0|0|0|0|0|0|0|0|0|9044177|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.67|97.16|0.00|-3.10|00011057|0|1| +38|2023-10-06T22:02:40.0390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:40.0390000-07:00|558|Requiescat|27.05|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T22:02:40.0390000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T22:02:40.0390000-07:00|10FF0001||||| +37|2023-10-06T22:02:40.0800000-07:00|10FF0004|Buhojaqe Zijaqe|00011049|79241||||||105.16|102.44|0.00|2.65| +21|2023-10-06T22:02:40.0800000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|750003|22640000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|9044177|40478540|10000|10000|||100.00|80.10|0.00|0.00|64928|73814|5600|10000|||101.64|100.51|0.00|-3.06|00011058|0|1| +38|2023-10-06T22:02:40.0800000-07:00|10FF0003|Gegehi Gehi|005A5A23|64928|73814|5400|10000|0||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:40.0800000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:39.6220000-07:00|Change|10FF0001||| +37|2023-10-06T22:02:40.1250000-07:00|10FF000A|Dukaro Nezikaro|00011052|83502||||||99.99|101.15|0.00|3.14| +21|2023-10-06T22:02:40.1250000-07:00|10FF0004|Buhojaqe Zijaqe|40A1|Summon Seraph|10FF0004|Buhojaqe Zijaqe|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79241|81541|750|10000|||105.43|102.85|0.00|1.88|79241|81541|750|10000|||105.43|102.85|0.00|1.88|00011059|0|1| +38|2023-10-06T22:02:40.1710000-07:00|40021999||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +39|2023-10-06T22:02:40.1710000-07:00|10FF0008|Kokosaze Lulusaze|82216|90216|10000|10000|||99.81|100.63|0.00|3.13| +38|2023-10-06T22:02:40.1710000-07:00|40021999||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:02:40.2150000-07:00|40021585|Zeromus|00011053|9023740||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:40.2580000-07:00|10FF0008|Kokosaze Lulusaze|00011052|90216||||||99.81|100.63|0.00|3.13| +261|2023-10-06T22:02:39.7320000-07:00|Change|40021996||||||||||| +21|2023-10-06T22:02:40.3020000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|DAF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|9023740|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|0001105A|0|1| +37|2023-10-06T22:02:40.3910000-07:00|10FF0006|Wowobora Gogobora|00011052|81809||||||100.76|100.45|-0.02|-3.10| +03|2023-10-06T22:02:39.9580000-07:00|40021999|Seraph|00|5A|10FF0004|00||8227|10487|73956|77430|10000|10000|||98.69|97.51|0.00|1.01| +261|2023-10-06T22:02:39.9580000-07:00|Add|40021999||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:02:40.5260000-07:00|40021585|Zeromus|00011055|9014870||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:40.5260000-07:00|40021585|Zeromus|00011052|8997771||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:40.0690000-07:00|Change|40021999||| +261|2023-10-06T22:02:40.0690000-07:00|Change|40021996||||||||| +37|2023-10-06T22:02:40.5710000-07:00|40021585|Zeromus|00011056|8993577||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:40.5710000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|714003|36780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8997771|40478540|10000|10000|||100.00|80.10|0.00|0.00|113695|129844|10000|10000|||100.11|97.55|-0.02|-3.13|0001105B|0|1| +21|2023-10-06T22:02:40.5710000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|206C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8997771|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|0001105C|0|1| +37|2023-10-06T22:02:40.6610000-07:00|40021585|Zeromus|00011057|8944502||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:40.6610000-07:00|10FF0003|Gegehi Gehi|00011052|73814||||||101.64|100.51|0.00|-3.06| +24|2023-10-06T22:02:40.7490000-07:00|40021585|Zeromus|DoT|A92|518|8944502|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|10000|10000|||100.76|100.45|-0.02|-3.10| +37|2023-10-06T22:02:40.7490000-07:00|40021585|Zeromus|00011054|8924783||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:40.7490000-07:00|10FF0006|Wowobora Gogobora|00011054|81809|81809|10000|10000|0||100.76|100.45|-0.02|-3.10|1B00|0|0|01|01000A92|0|41700000|| +26|2023-10-06T22:02:40.7490000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:02:40.7490000-07:00|40021585|Zeromus|0001104B|8900216||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:40.7490000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|354003|30DF0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|8944502|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.76|100.45|-0.02|-3.10|0001105D|0|1| +261|2023-10-06T22:02:40.2560000-07:00|Change|10FF0006||| +38|2023-10-06T22:02:40.7490000-07:00|40021585|Zeromus|005A5A00|8900216|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:02:40.7490000-07:00|4002197A|Automaton Queen|005A5A00|82193|85668|10000|10000|0||101.85|98.62|0.00|-3.04|0|0|0|||| +30|2023-10-06T22:02:40.7490000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|4002197A|Automaton Queen|01|85668|40478540| +37|2023-10-06T22:02:40.7940000-07:00|10FF0007|Kehabiqo Febiqo|00011052|127438||||||100.11|97.55|-0.02|-3.13| +39|2023-10-06T22:02:40.7940000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||100.67|97.16|0.00|-3.10| +37|2023-10-06T22:02:40.8380000-07:00|40021585|Zeromus|00011058|8891412||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:40.8380000-07:00|40021585|Zeromus|0001105A|8887909||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:40.3550000-07:00|Add|4002199A||||||||||||||||||||||||| +20|2023-10-06T22:02:40.8830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|105.63|103.40|0.00|0.31| +261|2023-10-06T22:02:40.3550000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:02:40.9280000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|BB30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8887909|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|0001105E|0|1| +261|2023-10-06T22:02:40.4510000-07:00|Change|40021995||||| +261|2023-10-06T22:02:40.4510000-07:00|Change|10FF0003||||||||||||||| +38|2023-10-06T22:02:40.9720000-07:00|4002199B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:02:40.9720000-07:00|4002199B||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +20|2023-10-06T22:02:41.0160000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.08|101.46|0.00|-3.14| +261|2023-10-06T22:02:40.5690000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:02:41.0610000-07:00|10FF0004|Buhojaqe Zijaqe|00011052|81541||||||105.64|103.41|0.00|0.85| +24|2023-10-06T22:02:41.0610000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1F42|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|9024|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.0610000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1401|79241|81541|750|10000|||105.64|103.41|0.00|0.85|10FF0004|Buhojaqe Zijaqe|0|79241|81541|750|10000|||105.64|103.41|0.00|0.85| +38|2023-10-06T22:02:41.0610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:02:41.0610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|750|10000|0||105.64|103.41|0.00|0.85|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:02:41.1060000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|26E60000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|8887909|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5400|10000|||101.64|100.51|0.00|-3.06|0001105F|0|1| +38|2023-10-06T22:02:41.1060000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5100|10000|0||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:41.1060000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:02:41.1060000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:40.6830000-07:00|Change|10FF0001||| +24|2023-10-06T22:02:41.1500000-07:00|40021585|Zeromus|DoT|A92|51A|8887909|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9700|10000|||100.76|100.45|-0.02|-3.10| +24|2023-10-06T22:02:41.1500000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1531|81809|81809|9700|10000|||100.76|100.45|-0.02|-3.10|10FF000B|Pusu Rosu|0|79209|79209|9024|10000|||100.08|101.46|0.00|-3.14| +38|2023-10-06T22:02:41.1500000-07:00|40021585|Zeromus|005A5A00|8886603|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:02:41.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:02:41.1950000-07:00|40021585|Zeromus|0001105B|8872659||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:41.1950000-07:00|40021585|Zeromus|0001105C|8864359||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:41.1950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||100.76|100.45|-0.02|-3.10| +21|2023-10-06T22:02:41.1950000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|125E0000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|8864359|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.67|97.16|0.00|-3.10|00011060|0|1| +21|2023-10-06T22:02:41.1950000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|33FD0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|8864359|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011061|0|1| +34|2023-10-06T22:02:41.1950000-07:00|40021999|Seraph|40021999|Seraph|01| +261|2023-10-06T22:02:40.6830000-07:00|Add|4002199B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:02:40.8040000-07:00|4002199B|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.70|98.70|0.00|0.04| +261|2023-10-06T22:02:40.8040000-07:00|Change|40021999||| +261|2023-10-06T22:02:40.8040000-07:00|Change|4002199B||| +261|2023-10-06T22:02:40.8040000-07:00|Change|10FF0006||| +37|2023-10-06T22:02:41.3720000-07:00|40021585|Zeromus|0001105D|8851848||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:41.3720000-07:00|10FF000B|Pusu Rosu|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +39|2023-10-06T22:02:41.3720000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.99|101.15|0.00|3.14| +24|2023-10-06T22:02:41.3720000-07:00|10FF0003|Gegehi Gehi|HoT|0|1478|73814|73814|5100|10000|||101.64|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|9024|10000|||100.08|101.46|0.00|-3.14| +38|2023-10-06T22:02:41.3720000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5650|10000|0||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +24|2023-10-06T22:02:41.4190000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1469|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +21|2023-10-06T22:02:41.4190000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|720003|5F220000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|8851848|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|00011062|0|1| +21|2023-10-06T22:02:41.4190000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|AAC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8851848|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.67|97.16|0.00|-3.10|00011063|0|1| +38|2023-10-06T22:02:41.4190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +31|2023-10-06T22:02:41.4190000-07:00|10FF0001||||| +39|2023-10-06T22:02:41.4630000-07:00|10FF0007|Kehabiqo Febiqo|128736|129844|10000|10000|||100.11|97.55|-0.02|-3.13| +24|2023-10-06T22:02:41.4630000-07:00|10FF000B|Pusu Rosu|HoT|777|DE6|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.4630000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|D85|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.4630000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E31|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.4630000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DB8|81809|81809|9900|10000|||100.76|100.45|-0.02|-3.10|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.4630000-07:00|10FF0003|Gegehi Gehi|HoT|777|E02|73814|73814|5650|10000|||101.64|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.4630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|D90|127438|129844|10000|10000|||100.11|97.55|-0.02|-3.13|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.4630000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E1A|81541|81541|750|10000|||105.64|103.41|-0.02|-2.91|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.4630000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|E28|129071|129071|9200|10000|||100.67|97.16|0.00|-3.10|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:41.4630000-07:00|10FF000B|Pusu Rosu|HoT|0|2073|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +38|2023-10-06T22:02:41.4630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.11|97.55|-0.02|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:41.4630000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:41.4630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:41.4630000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:41.4630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|0||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:41.4630000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:41.4630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:41.4630000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:41.4630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|750|10000|0||105.64|103.41|-0.02|-2.91|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:41.4630000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:02:41.4630000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5650|10000|0||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:41.4630000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:02:41.4630000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9305|10000|0||100.08|101.46|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:41.4630000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:02:41.4630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:41.4630000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +39|2023-10-06T22:02:41.5070000-07:00|4002197A|Automaton Queen|82193|85668|10000|10000|||101.85|98.62|0.00|-3.04| +24|2023-10-06T22:02:41.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F9A|129844|129844|10000|10000|||100.11|97.55|-0.02|-3.13|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||100.11|97.55|-0.02|-3.13| +38|2023-10-06T22:02:41.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.11|97.55|-0.02|-3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:02:41.5960000-07:00|40021585|Zeromus|00011061|8838539||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:41.6410000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|15AE|129071|129071|9200|10000|||100.67|97.16|0.00|-3.10|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14| +38|2023-10-06T22:02:41.6410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:02:41.6840000-07:00|40021585|Zeromus|0001105E|8835544||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:41.7300000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|A15B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8838539|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.11|97.55|-0.02|-3.13|00011064|0|1| +38|2023-10-06T22:02:41.7300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.11|97.55|-0.02|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:41.7300000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T22:02:41.8180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4C850000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|8835544|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|750|10000|||105.64|103.41|0.00|-2.90|00011065|0|1| +261|2023-10-06T22:02:41.4180000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:02:41.5100000-07:00|Change|10FF0003||| +37|2023-10-06T22:02:41.8640000-07:00|40021585|Zeromus|0001105F|8825586||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:41.8640000-07:00|10FF0003|Gegehi Gehi|0001105F|73814|73814|5650|10000|0||101.64|100.51|0.00|-3.06|2300|0|0|01|060004D2|0|41F00000|| +21|2023-10-06T22:02:41.8640000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8835544|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5650|10000|||101.64|100.51|0.00|-3.06|00011066|0|1| +38|2023-10-06T22:02:41.8640000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5650|10000|0||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:02:41.9080000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|724003|2FEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8835544|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5650|10000|||101.64|100.51|0.00|-3.06|00011067|0|1| +37|2023-10-06T22:02:41.9530000-07:00|40021585|Zeromus|00011063|8822854||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:41.9530000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|33FF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|8835544|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9305|10000|||100.08|101.46|0.00|-3.14|00011068|0|1| +34|2023-10-06T22:02:41.9970000-07:00|4002199B|Carbuncle|4002199B|Carbuncle|01| +261|2023-10-06T22:02:41.5100000-07:00|Change|10FF000B||||||||||||||||| +261|2023-10-06T22:02:41.6040000-07:00|Change|4002199B||| +261|2023-10-06T22:02:41.6980000-07:00|Change|40021996||||| +21|2023-10-06T22:02:42.0860000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3E5F0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.11|97.55|0.00|-3.13|8822854|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011069|0|1| +39|2023-10-06T22:02:42.1310000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|550|10000|||105.64|103.41|0.00|-2.90| +41|2023-10-06T22:02:42.1310000-07:00|80034E7C|290B|01|00|00| +37|2023-10-06T22:02:42.2200000-07:00|40021585|Zeromus|00011060|8818152|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T22:02:42.2200000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +00|2023-10-06T22:02:41.0000000-07:00|0839||The barrier between worlds weakens...| +21|2023-10-06T22:02:42.2660000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|239F0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|8818152|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||100.76|100.45|-0.02|-3.10|0001106A|0|1| +37|2023-10-06T22:02:42.3980000-07:00|40021585|Zeromus|00011066|8818151||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:42.4420000-07:00|40021585|Zeromus|00011062|8793797||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:42.4420000-07:00|40021999|Seraph|005A5A00|73956|77430|10000|10000|0||98.76|97.56|0.00|1.01|0|0|0||||||| +26|2023-10-06T22:02:42.4420000-07:00|30|Well Fed|1069.91|10FF0004|Buhojaqe Zijaqe|40021999|Seraph|2968|77430|81541| +26|2023-10-06T22:02:42.4420000-07:00|7AD|Summon Order III|30.00|40021999|Seraph|40021999|Seraph|01|77430|77430| +21|2023-10-06T22:02:42.4420000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|550|10000|||105.64|103.41|0.00|-2.90|81541|81541|550|10000|||105.64|103.41|0.00|-2.90|0001106B|0|1| +261|2023-10-06T22:02:41.9280000-07:00|Change|10FF0006||| +261|2023-10-06T22:02:41.9280000-07:00|Change|40021999||||||||| +39|2023-10-06T22:02:42.4870000-07:00|10FF0003|Gegehi Gehi|73814|73814|5850|10000|||101.64|100.51|0.00|-3.06| +21|2023-10-06T22:02:42.4870000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AA70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8793797|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|0001106C|0|1| +21|2023-10-06T22:02:42.5760000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|754003|762D0000|4|29C08000|0|0|0|0|0|0|0|0|0|0|0|0|8793797|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||100.67|97.16|0.00|-3.10|0001106D|0|1| +38|2023-10-06T22:02:42.5760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:42.5760000-07:00|558|Requiescat|24.51|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T22:02:42.5760000-07:00|10FF0001||||| +37|2023-10-06T22:02:42.6200000-07:00|40021585|Zeromus|00011065|8774208||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:42.6210000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8793797|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.76|100.45|-0.02|-3.10|0001106E|0|1| +261|2023-10-06T22:02:42.1340000-07:00|Change|10FF0001||| +22|2023-10-06T22:02:42.6650000-07:00|40021999|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|207D0000|7D0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.11|97.55|0.00|-3.13|73956|77430|10000|10000|||99.14|97.78|0.00|1.02|0001106F|0|8| +22|2023-10-06T22:02:42.6650000-07:00|40021999|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|1F370000|370E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||100.67|97.16|0.00|-3.10|73956|77430|10000|10000|||99.14|97.78|0.00|1.02|0001106F|1|8| +22|2023-10-06T22:02:42.6650000-07:00|40021999|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|1FF90000|F90E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||100.76|100.45|-0.02|-3.10|73956|77430|10000|10000|||99.14|97.78|0.00|1.02|0001106F|2|8| +22|2023-10-06T22:02:42.6650000-07:00|40021999|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|4|1F380000|380E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|73814|73814|5850|10000|||101.64|100.51|0.00|-3.06|73956|77430|10000|10000|||99.14|97.78|0.00|1.02|0001106F|3|8| +22|2023-10-06T22:02:42.6650000-07:00|40021999|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|4|1F820000|820E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|73956|77430|10000|10000|||99.14|97.78|0.00|1.02|0001106F|4|8| +22|2023-10-06T22:02:42.6650000-07:00|40021999|Seraph|40A3|Consolation|10FF000A|Dukaro Nezikaro|4|1EF10000|F10E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|73956|77430|10000|10000|||99.14|97.78|0.00|1.02|0001106F|5|8| +22|2023-10-06T22:02:42.6650000-07:00|40021999|Seraph|40A3|Consolation|10FF000B|Pusu Rosu|4|20690000|690E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|79209|79209|8905|10000|||100.08|101.46|0.00|-3.14|73956|77430|10000|10000|||99.14|97.78|0.00|1.02|0001106F|6|8| +22|2023-10-06T22:02:42.6650000-07:00|40021999|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1FAB0000|AB0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|81541|81541|550|10000|||105.64|103.41|0.00|-2.90|73956|77430|10000|10000|||99.14|97.78|0.00|1.02|0001106F|7|8| +24|2023-10-06T22:02:42.6650000-07:00|40021585|Zeromus|DoT|0|1FD2|8793797|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9200|10000|||100.67|97.16|0.00|-3.10| +38|2023-10-06T22:02:42.6650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||100.11|97.55|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:42.6650000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T22:02:42.6650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:42.6650000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T22:02:42.6650000-07:00|40021585|Zeromus|005A5A00|8766062|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T22:02:42.6650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9600|10000|10||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:42.6650000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T22:02:42.6650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|6||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:42.6650000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T22:02:42.6650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|550|10000|9||105.64|103.41|0.00|-2.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:42.6650000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T22:02:42.6650000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5850|10000|10||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:42.6650000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T22:02:42.6650000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8905|10000|10||100.08|101.46|0.00|-3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:42.6650000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF000B|Pusu Rosu|00|79209|77430| +38|2023-10-06T22:02:42.6650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:42.6650000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF000A|Dukaro Nezikaro|00|83502|77430| +21|2023-10-06T22:02:42.7090000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|ADD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8766062|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.11|97.55|0.00|-3.13|00011070|0|1| +37|2023-10-06T22:02:42.8870000-07:00|40021585|Zeromus|00011064|8724755||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:42.8870000-07:00|10FF0007|Kehabiqo Febiqo|00011069|113877||||||100.11|97.55|0.00|-3.13| +261|2023-10-06T22:02:42.3330000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:42.9310000-07:00|40021585|Zeromus|0001106A|8715636||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:43.0210000-07:00|40021585|Zeromus|0001106C|8712909||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:43.0210000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8905|10000|||100.08|101.46|0.00|-3.14|79209|79209|8905|10000|||100.08|101.46|0.00|-3.14|00011071|0|1| +261|2023-10-06T22:02:42.4310000-07:00|Change|10FF0003||| +37|2023-10-06T22:02:43.0640000-07:00|40021585|Zeromus|00011067|8700641||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:43.1530000-07:00|40021585|Zeromus|0001106E|8700497||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:43.1530000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.81|100.63|0.00|3.13| +37|2023-10-06T22:02:43.2430000-07:00|40021585|Zeromus|00011070|8697716||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:43.2430000-07:00|40021585|Zeromus|0001106D|8667463||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:43.2430000-07:00|40021585|Zeromus|00011068|8654152||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:43.2430000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|113877|129844|10000|10000|||100.11|97.55|-0.02|-3.13|113877|129844|10000|10000|||100.11|97.55|-0.02|-3.13|00011072|0|1| +38|2023-10-06T22:02:43.2430000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113877|129844|10000|10000|6||100.11|97.55|-0.02|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:43.2430000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +21|2023-10-06T22:02:43.2880000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|37320000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|8654152|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||100.67|97.16|0.00|-3.10|00011073|0|1| +261|2023-10-06T22:02:42.7740000-07:00|Change|40021999||||||||| +21|2023-10-06T22:02:43.3320000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|8654152|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|550|10000|||105.15|102.80|0.00|-2.50|00011074|0|1| +21|2023-10-06T22:02:43.4210000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|736003|1450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8654152|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|150|10000|||104.87|102.46|0.00|-2.95|00011075|0|1| +21|2023-10-06T22:02:43.4660000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32716003|48CB0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|8654152|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|00011076|0|1| +20|2023-10-06T22:02:43.5100000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|101.64|100.51|0.00|-3.06| +37|2023-10-06T22:02:43.5550000-07:00|10FF0007|Kehabiqo Febiqo|0001106F|122194|129844|10000|10000|6||100.11|97.55|-0.02|-3.13|1500|0|0|02|0600077D|0|41E8E144|||||| +21|2023-10-06T22:02:43.6000000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8654152|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|00011077|0|1| +37|2023-10-06T22:02:43.6450000-07:00|40021585|Zeromus|00011073|8640022||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:43.6450000-07:00|10FF0001|Sesuga Sapisuga|00011073|129071|129071|8700|10000|6||100.67|97.16|0.00|-3.10|1300|0|0|0| +37|2023-10-06T22:02:43.6450000-07:00|10FF000B|Pusu Rosu|00011071|79209|79209|8905|10000|10||100.08|101.46|0.00|-3.14|1800|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T22:02:43.6450000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:02:43.1230000-07:00|Change|10FF0001||| +37|2023-10-06T22:02:43.6890000-07:00|10FF0001|Sesuga Sapisuga|0001106F|129071|129071|8700|10000|6||100.67|97.16|0.00|-3.10|1301|0|0|01|0200077D|0|41E7CED5|| +21|2023-10-06T22:02:43.6900000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|DAC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8640022|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||100.67|97.16|0.00|-3.10|00011078|0|1| +31|2023-10-06T22:02:43.6900000-07:00|10FF0001||||| +37|2023-10-06T22:02:43.7780000-07:00|10FF0007|Kehabiqo Febiqo|00011072|122194|129844|10000|10000|6||100.11|97.55|-0.02|-3.13|1500|0|0|01|08000769|0|41F00000|| +21|2023-10-06T22:02:43.7780000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|354003|2E1E0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|8640022|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||100.76|100.45|-0.02|-3.10|00011079|0|1| +38|2023-10-06T22:02:43.7780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122194|129844|10000|10000|6||100.11|97.55|-0.02|-3.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:02:43.8220000-07:00|10FF0006|Wowobora Gogobora|0001106F|81809|81809|9300|10000|10||100.76|100.45|-0.02|-3.10|1B02|0|0|01|0300077D|0|41E6BC67|| +261|2023-10-06T22:02:43.3210000-07:00|Change|10FF0006||| +39|2023-10-06T22:02:43.8220000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8900|10000|||100.67|97.16|0.00|-3.10| +261|2023-10-06T22:02:43.3210000-07:00|Change|4002197A||||||||| +37|2023-10-06T22:02:43.8670000-07:00|40021585|Zeromus|00011076|8621387||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:43.8670000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|750003|A600000|BDA40E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|8640022|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8905|10000|||100.08|101.46|0.00|-3.14|0001107A|0|1| +261|2023-10-06T22:02:43.3210000-07:00|Change|10FF000B||| +261|2023-10-06T22:02:43.3210000-07:00|Change|10FF000B||| +261|2023-10-06T22:02:43.4220000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:43.9550000-07:00|10FF0003|Gegehi Gehi|0001106F|73814|73814|5850|10000|10||101.64|100.51|0.00|-3.06|2303|0|0|01|0100077D|0|41E5AE10|| +37|2023-10-06T22:02:43.9550000-07:00|40021585|Zeromus|00011074|8621387|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T22:02:43.9550000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +37|2023-10-06T22:02:43.9550000-07:00|40021585|Zeromus|00011075|8621062||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:43.9550000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44724003|474F0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|8621387|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|0001107B|0|1| +04|2023-10-06T22:02:43.5210000-07:00|40021996|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||98.68|97.49|0.00|2.03| +261|2023-10-06T22:02:43.5210000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T22:02:43.5210000-07:00|Remove|40021996| +37|2023-10-06T22:02:44.0900000-07:00|10FF0008|Kokosaze Lulusaze|0001106F|90216|90216|10000|10000|8||99.81|100.63|0.00|3.13|1F04|0|0|01|0200077D|0|41E49BA1|| +24|2023-10-06T22:02:44.0900000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1409|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|8505|10000|||100.08|101.46|0.00|-3.14| +24|2023-10-06T22:02:44.0900000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|143A|81541|81541|150|10000|||103.37|101.40|0.00|-2.23|10FF0004|Buhojaqe Zijaqe|0|81541|81541|150|10000|||103.37|101.40|0.00|-2.23| +38|2023-10-06T22:02:44.0900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:02:44.0900000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|150|10000|9||103.37|101.40|0.00|-2.23|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:02:43.6400000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:02:43.6400000-07:00|Change|400215A0||||||||| +39|2023-10-06T22:02:44.1780000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9500|10000|||100.76|100.45|-0.02|-3.10| +24|2023-10-06T22:02:44.1780000-07:00|40021585|Zeromus|DoT|A92|4FC|8621062|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9300|10000|||100.76|100.45|-0.02|-3.10| +24|2023-10-06T22:02:44.1780000-07:00|10FF0006|Wowobora Gogobora|HoT|0|13EC|81809|81809|9300|10000|||100.76|100.45|-0.02|-3.10|10FF000B|Pusu Rosu|0|79209|79209|8505|10000|||100.08|101.46|0.00|-3.14| +38|2023-10-06T22:02:44.1780000-07:00|40021585|Zeromus|005A5A00|8619786|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T22:02:44.1780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|10||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:02:44.2230000-07:00|40021585|Zeromus|00011078|8616286||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:44.2230000-07:00|10FF000A|Dukaro Nezikaro|0001106F|83502|83502|10000|10000|9||99.99|101.15|0.00|3.14|1E05|0|0|01|0400077D|0|41E38933|| +20|2023-10-06T22:02:44.2230000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|108.29|87.16|0.00|0.00| +20|2023-10-06T22:02:44.2230000-07:00|400215A1|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|86.83|113.02|0.00|0.00| +20|2023-10-06T22:02:44.2230000-07:00|400215A3|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.70|100.15|0.00|0.00| +20|2023-10-06T22:02:44.2230000-07:00|400215A2|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.71|96.92|0.00|0.00| +21|2023-10-06T22:02:44.2230000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|9B150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8621062|40478540|10000|10000|||100.00|80.10|0.00|0.00|122194|129844|10000|10000|||100.11|97.55|-0.02|-3.13|0001107C|0|1| +38|2023-10-06T22:02:44.2230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122194|129844|10000|10000|6||100.11|97.55|-0.02|-3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:44.2230000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:02:43.7550000-07:00|Change|400215A2||||||||||||||| +261|2023-10-06T22:02:43.7550000-07:00|Change|400215A3||||||||||||||| +38|2023-10-06T22:02:44.2660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5850|10000|10||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:44.2660000-07:00|4B4|Lucid Dreaming|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:02:44.3550000-07:00|40021585|Zeromus|00011077|8613942||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:44.3550000-07:00|10FF000B|Pusu Rosu|0001106F|79209|79209|8505|10000|10||100.08|101.46|0.00|-3.14|1806|0|0|01|0300077D|0|41E27ADD|| +39|2023-10-06T22:02:44.3550000-07:00|10FF000B|Pusu Rosu|79209|79209|8786|10000|||100.08|101.46|0.00|-3.14| +39|2023-10-06T22:02:44.3550000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.99|101.15|0.00|3.14| +24|2023-10-06T22:02:44.4000000-07:00|10FF0003|Gegehi Gehi|HoT|0|1504|73814|73814|5850|10000|||101.64|100.51|0.00|-3.06|10FF0003|Gegehi Gehi|0|73814|73814|5850|10000|||101.64|100.51|0.00|-3.06| +38|2023-10-06T22:02:44.4000000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5850|10000|10||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:02:43.9900000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:02:44.4440000-07:00|40021585|Zeromus|00011079|8602136||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:44.4440000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1599|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +38|2023-10-06T22:02:44.4440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:02:44.4890000-07:00|10FF0004|Buhojaqe Zijaqe|0001106F|81541|81541|150|10000|9||102.62|100.91|0.00|-1.66|1C07|0|0|01|0500077D|0|41E16A7A|| +39|2023-10-06T22:02:44.4890000-07:00|10FF0007|Kehabiqo Febiqo|123492|129844|10000|10000|||100.11|97.55|-0.02|-3.13| +24|2023-10-06T22:02:44.4890000-07:00|10FF000B|Pusu Rosu|HoT|777|DE5|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +24|2023-10-06T22:02:44.4890000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DFA|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +24|2023-10-06T22:02:44.4890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|D64|90216|90216|10000|10000|||99.81|100.63|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +24|2023-10-06T22:02:44.4890000-07:00|10FF0006|Wowobora Gogobora|HoT|777|D8A|81809|81809|9500|10000|||100.76|100.45|-0.02|-3.10|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +24|2023-10-06T22:02:44.4890000-07:00|10FF0003|Gegehi Gehi|HoT|777|DC0|73814|73814|5850|10000|||101.64|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +24|2023-10-06T22:02:44.4890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|E19|81541|81541|150|10000|||102.62|100.91|0.00|-1.66|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +24|2023-10-06T22:02:44.4890000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E19|122194|129844|10000|10000|||100.11|97.55|-0.02|-3.13|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +24|2023-10-06T22:02:44.4890000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|14CB|129071|129071|8900|10000|||100.67|97.16|0.00|-3.10|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +24|2023-10-06T22:02:44.4890000-07:00|10FF000B|Pusu Rosu|HoT|0|14CD|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98|10FF000B|Pusu Rosu|0|79209|79209|8786|10000|||100.08|101.46|-0.02|2.98| +38|2023-10-06T22:02:44.4890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127101|129844|10000|10000|6||100.11|97.55|-0.02|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:44.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:44.4890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||99.81|100.63|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:44.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:44.4890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9500|10000|10||100.76|100.45|-0.02|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:44.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:44.4890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|6||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:44.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:44.4890000-07:00|40021999|Seraph|005A5A00|73956|77430|10000|10000|0||100.76|98.77|0.00|1.14|0|0|0|||| +30|2023-10-06T22:02:44.4890000-07:00|7AD|Summon Order III|0.00|40021999|Seraph|40021999|Seraph|01|77430|77430| +38|2023-10-06T22:02:44.4890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|150|10000|9||102.62|100.91|0.00|-1.66|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:44.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:02:44.4890000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5850|10000|10||101.64|100.51|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:44.4890000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:02:44.4890000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9336|10000|10||100.08|101.46|-0.02|2.98|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:44.4890000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:02:44.4890000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||99.99|101.15|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:44.4890000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +24|2023-10-06T22:02:44.5790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|14FF|127101|129844|10000|10000|||100.08|97.55|0.00|-2.79|10FF0007|Kehabiqo Febiqo|0|127101|129844|10000|10000|||100.08|97.55|0.00|-2.79| +38|2023-10-06T22:02:44.5790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|6||100.08|97.55|0.00|-2.79|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:02:44.6670000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|141E|129071|129071|8900|10000|||100.67|97.16|0.00|-3.10|10FF000B|Pusu Rosu|0|79209|79209|9336|10000|||100.08|101.51|0.00|1.44| +21|2023-10-06T22:02:44.6670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8602136|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.99|101.15|0.00|3.14|0001107D|0|1| +38|2023-10-06T22:02:44.6670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|6||100.67|97.16|0.00|-3.10|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:02:44.2010000-07:00|Change|10FF0001||| +261|2023-10-06T22:02:44.2010000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:02:44.2010000-07:00|Change|400215A1||||||||||| +37|2023-10-06T22:02:44.7570000-07:00|40021585|Zeromus|0001107B|8583881||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:44.8010000-07:00|40021585|Zeromus|005A5A00|8583881|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:02:44.8010000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +261|2023-10-06T22:02:44.3020000-07:00|Change|10FF0006||||||||| +21|2023-10-06T22:02:44.8460000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|102E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8583881|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.94|97.52|0.00|-2.27|0001107E|0|1| +04|2023-10-06T22:02:44.3980000-07:00|40021995|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||102.59|102.15|0.00|-3.10| +261|2023-10-06T22:02:44.3980000-07:00|Remove|40021995| +21|2023-10-06T22:02:44.8910000-07:00|40021999|Seraph|40A4|Seraphic Veil|10FF0007|Kehabiqo Febiqo|4|16940000|94000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.87|97.52|0.00|3.12|73956|77430|10000|10000|||100.76|98.77|0.00|2.22|0001107F|0|1| +21|2023-10-06T22:02:44.9360000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|154003|2DBD0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|8583881|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5850|10000|||101.64|100.51|0.00|-3.06|00011080|0|1| +38|2023-10-06T22:02:44.9360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5650|10000|10||101.64|100.51|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:44.9360000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:02:44.9360000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:44.4890000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T22:02:45.0690000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|750003|65ED0000|4|28CE8000|0|0|0|0|0|0|0|0|0|0|0|0|8583881|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||100.68|96.92|0.00|3.12|00011081|0|1| +38|2023-10-06T22:02:45.0690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|6||100.68|96.92|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:45.0690000-07:00|558|Requiescat|22.02|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T22:02:45.0690000-07:00|10FF0001||||| +39|2023-10-06T22:02:45.1140000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|350|10000|||102.46|100.88|-0.02|-1.58| +21|2023-10-06T22:02:45.1140000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|1F4F0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.86|97.52|0.00|3.12|8583881|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011082|0|1| +37|2023-10-06T22:02:45.1580000-07:00|40021585|Zeromus|0001107C|8544180||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:45.1580000-07:00|40021585|Zeromus|0001107A|8541524|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200074F|0|41F00000|| +26|2023-10-06T22:02:45.1580000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +261|2023-10-06T22:02:44.7240000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:45.2030000-07:00|40021585|Zeromus|0001107D|8537835||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:44.7240000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:02:44.7240000-07:00|Change|4002159B||||||||| +20|2023-10-06T22:02:45.2480000-07:00|4002159B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.00|100.00|0.00|3.14| +20|2023-10-06T22:02:45.2480000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|114.00|100.00|0.00|0.79| +20|2023-10-06T22:02:45.2480000-07:00|4002159D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|114.00|100.00|0.00|0.79| +20|2023-10-06T22:02:45.2480000-07:00|4002159E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|100.00|0.00|0.79| +20|2023-10-06T22:02:45.2480000-07:00|4002159F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|100.00|0.00|0.79| +261|2023-10-06T22:02:44.7240000-07:00|Change|4002159F||||||||||||||||| +261|2023-10-06T22:02:44.7240000-07:00|Change|4002159E||||||||||||||||| +261|2023-10-06T22:02:44.7240000-07:00|Change|4002159C||||||||||||||||| +21|2023-10-06T22:02:45.3370000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|354003|30D90000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|8537835|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9500|10000|||99.65|98.06|0.00|-2.69|00011083|0|1| +261|2023-10-06T22:02:44.9510000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:02:45.4700000-07:00|40021585|Zeromus|0001107E|8533693||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:45.4700000-07:00|10FF0003|Gegehi Gehi|73814|73814|5850|10000|||101.69|100.48|0.00|2.90| +24|2023-10-06T22:02:45.6490000-07:00|40021585|Zeromus|DoT|0|1A48|8533693|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7900|10000|||101.06|93.78|0.00|2.92| +38|2023-10-06T22:02:45.6490000-07:00|40021585|Zeromus|005A5A00|8526965|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T22:02:45.2720000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:45.2720000-07:00|Change|4002159B||||||||||| +261|2023-10-06T22:02:45.2720000-07:00|Change|4002159D||||||||||| +37|2023-10-06T22:02:45.7380000-07:00|40021585|Zeromus|00011080|8515256||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:45.7380000-07:00|40021999|Seraph|005A5A00|73956|77430|10000|10000|0||100.76|98.77|0.00|-2.39|0|0|0||||||| +26|2023-10-06T22:02:45.7380000-07:00|77B|Summon Order|30.00|40021999|Seraph|40021999|Seraph|01|77430|77430| +21|2023-10-06T22:02:45.7380000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|350|10000|||102.27|101.06|0.00|0.27|81541|81541|350|10000|||102.27|101.06|0.00|0.27|00011084|0|1| +21|2023-10-06T22:02:45.7380000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44712003|513D0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|8533693|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.28|101.15|0.00|-2.49|00011085|0|1| +21|2023-10-06T22:02:45.7820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8515256|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||99.27|97.63|0.00|3.09|00011086|0|1| +21|2023-10-06T22:02:45.7820000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|131A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8515256|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||101.28|93.53|0.00|-3.05|00011087|0|1| +261|2023-10-06T22:02:45.3650000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:45.9170000-07:00|10FF0007|Kehabiqo Febiqo|00011082|121829|129844|10000|10000|0||98.52|97.05|0.00|-2.70|1500|0|0|01|06000000|0|0|| +37|2023-10-06T22:02:45.9170000-07:00|10FF0007|Kehabiqo Febiqo|0001107F|127609||||||98.52|97.05|0.00|-2.70| +38|2023-10-06T22:02:45.9170000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127609|129844|10000|10000|0||98.52|97.05|0.00|-2.70|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:45.9170000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +37|2023-10-06T22:02:45.9610000-07:00|40021585|Zeromus|00011083|8502751||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:45.9610000-07:00|40021585|Zeromus|00011081|8476658||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:02:45.9610000-07:00|40021999|Seraph|40A6|Angel's Whisper|10FF0007|Kehabiqo Febiqo|F940E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||98.52|97.05|0.00|-2.70|73956|77430|10000|10000|||100.76|98.77|0.00|-2.39|00011088|0|8| +22|2023-10-06T22:02:45.9610000-07:00|40021999|Seraph|40A6|Angel's Whisper|10FF0008|Kokosaze Lulusaze|F940E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||98.84|101.55|0.00|-1.57|73956|77430|10000|10000|||100.76|98.77|0.00|-2.39|00011088|1|8| +22|2023-10-06T22:02:45.9610000-07:00|40021999|Seraph|40A6|Angel's Whisper|10FF0003|Gegehi Gehi|F940E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5850|10000|||103.51|100.23|0.00|1.98|73956|77430|10000|10000|||100.76|98.77|0.00|-2.39|00011088|2|8| +22|2023-10-06T22:02:45.9610000-07:00|40021999|Seraph|40A6|Angel's Whisper|10FF000A|Dukaro Nezikaro|F940E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||97.57|101.28|0.00|3.01|73956|77430|10000|10000|||100.76|98.77|0.00|-2.39|00011088|3|8| +22|2023-10-06T22:02:45.9610000-07:00|40021999|Seraph|40A6|Angel's Whisper|10FF0006|Wowobora Gogobora|F940E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9200|10000|||99.16|97.63|0.00|3.09|73956|77430|10000|10000|||100.76|98.77|0.00|-2.39|00011088|4|8| +22|2023-10-06T22:02:45.9610000-07:00|40021999|Seraph|40A6|Angel's Whisper|10FF0001|Sesuga Sapisuga|F940E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7900|10000|||101.28|93.53|0.00|-3.05|73956|77430|10000|10000|||100.76|98.77|0.00|-2.39|00011088|5|8| +22|2023-10-06T22:02:45.9610000-07:00|40021999|Seraph|40A6|Angel's Whisper|10FF0004|Buhojaqe Zijaqe|F940E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|350|10000|||103.83|101.19|0.00|0.92|73956|77430|10000|10000|||100.76|98.77|0.00|-2.39|00011088|6|8| +22|2023-10-06T22:02:45.9610000-07:00|40021999|Seraph|40A6|Angel's Whisper|10FF000B|Pusu Rosu|F940E|7520000|1B|40A68000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9336|10000|||96.52|103.92|0.00|-1.03|73956|77430|10000|10000|||100.76|98.77|0.00|-2.39|00011088|7|8| +21|2023-10-06T22:02:45.9610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|DE40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8515256|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||101.28|93.53|0.00|-3.05|00011089|0|1| +31|2023-10-06T22:02:45.9610000-07:00|10FF0001||||| +21|2023-10-06T22:02:46.0050000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|31780000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|8476658|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5850|10000|||104.25|100.14|-0.02|1.81|0001108A|0|1| +38|2023-10-06T22:02:46.0050000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5550|10000|10||104.25|100.14|-0.02|1.81|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:46.0050000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:45.5790000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:02:46.0940000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8476658|40478540|10000|10000|||100.00|80.10|0.00|0.00|127609|129844|10000|10000|||97.08|96.49|-0.01|-2.14|0001108B|0|1| +39|2023-10-06T22:02:46.1390000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||97.56|103.13|0.00|-0.77| +39|2023-10-06T22:02:46.1830000-07:00|40021999|Seraph|73956|77430|10000|10000|||100.76|98.77|0.00|-2.25| +20|2023-10-06T22:02:46.2290000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.00|100.00|0.00|-1.57| +20|2023-10-06T22:02:46.2290000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.00|100.00|0.00|3.14| +20|2023-10-06T22:02:46.2290000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.00|100.00|0.00|1.57| +20|2023-10-06T22:02:46.2290000-07:00|40021599|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.00|100.00|0.00|0.00| +20|2023-10-06T22:02:46.2290000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.00|100.00|0.00|-1.57| +261|2023-10-06T22:02:45.8100000-07:00|Change|4002159A||||||||||||||||||| +261|2023-10-06T22:02:45.8100000-07:00|Change|40021598||||||||||||||||| +38|2023-10-06T22:02:46.2290000-07:00|4002199B|Carbuncle|005A5A00|74223|77698|10000|10000|0||100.35|98.83|0.00|-0.30|0|0|0||||||| +26|2023-10-06T22:02:46.2290000-07:00|30|Well Fed|516.42|10FF0006|Wowobora Gogobora|4002199B|Carbuncle|2964|77698|81809| +26|2023-10-06T22:02:46.2290000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|4002199B|Carbuncle|01|77698|81809| +261|2023-10-06T22:02:45.8100000-07:00|Change|40021599||||||||||||||| +21|2023-10-06T22:02:46.2290000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9200|10000|||97.20|98.95|0.00|-1.79|81809|81809|9200|10000|||97.20|98.95|0.00|-1.79|0001108C|0|1| +261|2023-10-06T22:02:45.8100000-07:00|Change|40021596||||||||||||||||||| +261|2023-10-06T22:02:45.8100000-07:00|Change|40021597||||||||||||||||||| +37|2023-10-06T22:02:46.2720000-07:00|40021585|Zeromus|00011085|8455861||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:46.2720000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8476658|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||97.46|103.72|0.00|-0.54|0001108D|0|1| +37|2023-10-06T22:02:46.3170000-07:00|40021585|Zeromus|00011086|8455713||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:46.3170000-07:00|4002199B|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9200|10000|||96.51|99.73|0.00|-1.37|74223|77698|10000|10000|||100.08|98.95|0.00|-0.48|0001108E|0|1| +38|2023-10-06T22:02:46.3170000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|30||96.51|99.73|0.00|-1.37|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:46.3170000-07:00|A8E|Radiant Aegis|29.96|4002199B|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +261|2023-10-06T22:02:46.0390000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:02:46.3610000-07:00|40021585|Zeromus|00011087|8450823||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:46.3610000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|95.64|104.69|0.00|-1.25| +23|2023-10-06T22:02:46.4040000-07:00|10FF000B|Pusu Rosu|6503|Glare III|Cancelled| +261|2023-10-06T22:02:46.0390000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:02:46.4510000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1DDC0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|8455713|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||97.37|104.20|0.00|-0.83|0001108F|0|1| +261|2023-10-06T22:02:46.0390000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T22:02:46.4950000-07:00|40021585|Zeromus|00011089|8447267||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:46.5850000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|95.34|104.78|0.00|-1.32| +21|2023-10-06T22:02:46.5850000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|28410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8450823|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.26|100.58|0.00|-2.76|00011090|0|1| +261|2023-10-06T22:02:46.1600000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:02:46.6290000-07:00|40021585|Zeromus|0001108B|8442573||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:46.6730000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7FB00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8447267|40478540|10000|10000|||100.00|80.10|0.00|0.00|127609|129844|10000|10000|||94.41|95.83|0.00|-2.17|00011091|0|1| +38|2023-10-06T22:02:46.6730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127609|129844|10000|10000|0||94.41|95.83|0.00|-2.17|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:46.6730000-07:00|499|Inner Release|7.60|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T22:02:46.2580000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:02:46.7620000-07:00|40021585|Zeromus|0001108A|8429909||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:46.8060000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||101.37|91.29|0.00|-3.12| +21|2023-10-06T22:02:46.8060000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8442573|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5550|10000|||108.47|99.52|0.00|2.11|00011092|0|1| +261|2023-10-06T22:02:46.3510000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:02:46.8510000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40021585|Zeromus|754003|54FB0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|8429909|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||94.46|103.28|0.00|-0.48|00011093|0|1| +21|2023-10-06T22:02:46.8510000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8429909|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.20|100.42|0.00|2.86|00011094|0|1| +38|2023-10-06T22:02:46.8510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|30||94.46|103.28|0.00|-0.48|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:46.8510000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:02:46.5340000-07:00|Change|10FF0003||||||||| +23|2023-10-06T22:02:46.9410000-07:00|10FF000B|Pusu Rosu|6503|Glare III|Cancelled| +39|2023-10-06T22:02:46.9410000-07:00|4002199B|Carbuncle|77698|77698|10000|10000|||98.90|99.46|0.00|-0.96| +37|2023-10-06T22:02:46.9840000-07:00|10FF0007|Kehabiqo Febiqo|00011088|127609|129844|10000|10000|0||93.91|96.49|0.00|2.78|1500|0|0|01|06000752|0|41A80000|| +26|2023-10-06T22:02:46.9840000-07:00|752|Angel's Whisper|21.00|40021999|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +37|2023-10-06T22:02:47.0290000-07:00|40021585|Zeromus|0001108D|8427681||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:47.0740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1439|90216|90216|10000|10000|||97.17|106.32|0.00|2.02|10FF000B|Pusu Rosu|0|79209|79209|9336|10000|||93.61|105.18|0.00|-2.87| +24|2023-10-06T22:02:47.0740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|20A0|81541|81541|350|10000|||107.19|104.47|0.00|-0.56|10FF0004|Buhojaqe Zijaqe|0|81541|81541|350|10000|||107.19|104.47|0.00|-0.56| +38|2023-10-06T22:02:47.0740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||97.17|106.32|0.00|2.02|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:02:47.0740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|350|10000|9||107.19|104.47|0.00|-0.56|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:02:47.1190000-07:00|10FF0008|Kokosaze Lulusaze|00011088|90216|90216|10000|10000|8||97.17|106.32|0.00|2.02|1F01|0|0|01|03000752|0|41A80000|| +26|2023-10-06T22:02:47.1190000-07:00|752|Angel's Whisper|21.00|40021999|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T22:02:47.1190000-07:00|10FF0006|Wowobora Gogobora|0001108E|81809|81809|8800|10000|30||93.43|104.80|0.00|-1.84|1B00|0|0|01|05000A8E|0|41E9978C|| +38|2023-10-06T22:02:47.1190000-07:00|4002199B|Carbuncle|005A5A00|77698|77698|10000|10000|0||98.89|99.46|0.00|-0.92|0|0|0|||| +30|2023-10-06T22:02:47.1190000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|4002199B|Carbuncle|01|77698|81809| +24|2023-10-06T22:02:47.1630000-07:00|40021585|Zeromus|DoT|A92|7CF|8427681|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|8800|10000|||93.43|104.80|0.00|-1.84| +24|2023-10-06T22:02:47.1630000-07:00|10FF0006|Wowobora Gogobora|HoT|0|14A1|81809|81809|8800|10000|||93.43|104.80|0.00|-1.84|10FF000B|Pusu Rosu|0|79209|79209|9336|10000|||93.61|105.18|0.00|-2.87| +38|2023-10-06T22:02:47.1630000-07:00|40021585|Zeromus|005A5A00|8425682|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T22:02:47.1630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|30||93.43|104.80|0.00|-1.84|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:02:46.7620000-07:00|Change|40021595||||||||| +261|2023-10-06T22:02:46.7620000-07:00|Change|40021594||||||||| +261|2023-10-06T22:02:46.7620000-07:00|Change|40021593||||||||| +261|2023-10-06T22:02:46.7620000-07:00|Change|40021592||||||||| +261|2023-10-06T22:02:46.7620000-07:00|Change|40021591||||||||| +37|2023-10-06T22:02:47.2060000-07:00|40021585|Zeromus|0001108F|8418038||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:47.2060000-07:00|40021585|Zeromus|00011090|8407733||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:47.2060000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9000|10000|||93.22|105.39|0.00|-1.41| +37|2023-10-06T22:02:47.2520000-07:00|10FF0003|Gegehi Gehi|00011088|73814|73814|5550|10000|10||111.44|98.58|0.00|1.89|2302|0|0|01|03000752|0|41A80000|| +26|2023-10-06T22:02:47.2520000-07:00|752|Angel's Whisper|21.00|40021999|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +20|2023-10-06T22:02:47.2520000-07:00|40021591|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.19|90.87|0.00|0.00| +20|2023-10-06T22:02:47.2520000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.43|104.45|0.00|0.00| +20|2023-10-06T22:02:47.2520000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.67|109.71|0.00|0.00| +20|2023-10-06T22:02:47.2520000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.05|94.98|0.00|0.00| +20|2023-10-06T22:02:47.2520000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.72|91.46|0.00|0.00| +261|2023-10-06T22:02:46.8820000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:47.2950000-07:00|40021585|Zeromus|00011091|8375045||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:47.3400000-07:00|40021585|Zeromus|00011092|8375044||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:47.3400000-07:00|10FF000B|Pusu Rosu|79209|79209|9617|10000|||93.58|105.20|0.00|-1.92| +39|2023-10-06T22:02:47.3400000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||94.00|99.67|0.00|-3.02| +37|2023-10-06T22:02:47.3840000-07:00|10FF000A|Dukaro Nezikaro|00011088|83502|83502|10000|10000|9||94.00|99.67|0.00|-3.02|1E03|0|0|01|06000752|0|41A80000|| +26|2023-10-06T22:02:47.3840000-07:00|752|Angel's Whisper|21.00|40021999|Seraph|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T22:02:47.3840000-07:00|40021585|Zeromus|00011094|8372310||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:47.3840000-07:00|10FF0003|Gegehi Gehi|HoT|0|1FB8|73814|73814|5550|10000|||111.95|98.43|0.00|1.88|10FF000B|Pusu Rosu|0|79209|79209|9336|10000|||93.58|105.20|0.00|-1.92| +38|2023-10-06T22:02:47.3840000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5550|10000|10||111.95|98.43|0.00|1.88|0|0|0||||||||||||||||||| +24|2023-10-06T22:02:47.4290000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|3018|83502|83502|10000|10000|||94.00|99.67|0.00|-3.02|10FF000B|Pusu Rosu|0|79209|79209|9336|10000|||93.58|105.20|0.00|-1.92| +38|2023-10-06T22:02:47.4290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||94.00|99.67|0.00|-3.02|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:02:47.4740000-07:00|10FF0007|Kehabiqo Febiqo|128907|129844|10000|10000|||93.60|95.07|0.00|-3.10| +24|2023-10-06T22:02:47.4740000-07:00|10FF000B|Pusu Rosu|HoT|777|14DA|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54|10FF000B|Pusu Rosu|0|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54| +24|2023-10-06T22:02:47.4740000-07:00|10FF0006|Wowobora Gogobora|HoT|777|D9F|81809|81809|9000|10000|||92.89|106.52|0.00|-0.61|10FF000B|Pusu Rosu|0|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54| +24|2023-10-06T22:02:47.4740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|D73|90216|90216|10000|10000|||97.06|108.77|0.00|0.51|10FF000B|Pusu Rosu|0|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54| +24|2023-10-06T22:02:47.4740000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DC7|83502|83502|10000|10000|||93.76|98.80|0.00|-2.99|10FF000B|Pusu Rosu|0|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54| +24|2023-10-06T22:02:47.4740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|D9D|81541|81541|350|10000|||107.27|104.77|0.00|-0.19|10FF000B|Pusu Rosu|0|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54| +24|2023-10-06T22:02:47.4740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|1532|127609|129844|10000|10000|||93.60|95.07|0.00|-3.10|10FF000B|Pusu Rosu|0|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54| +24|2023-10-06T22:02:47.4740000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|DBB|129071|129071|8100|10000|||100.52|90.41|0.00|-1.99|10FF000B|Pusu Rosu|0|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54| +24|2023-10-06T22:02:47.4740000-07:00|10FF000B|Pusu Rosu|HoT|0|159F|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54|10FF000B|Pusu Rosu|0|79209|79209|9617|10000|||93.23|105.87|0.00|-1.54| +38|2023-10-06T22:02:47.4740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.60|95.07|0.00|-3.10|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:47.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:47.4740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||97.06|108.77|0.00|0.51|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:47.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:47.4740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|30||92.89|106.52|0.00|-0.61|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:47.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:47.4740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|6||100.52|90.41|0.00|-1.99|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:47.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:47.4740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|350|10000|9||107.27|104.77|0.00|-0.19|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:47.4740000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:02:47.4740000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|10||93.23|105.87|0.00|-1.54|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:47.4740000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:02:47.4740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||93.76|98.80|0.00|-2.99|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:47.4740000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:02:47.5180000-07:00|10FF0006|Wowobora Gogobora|00011088|81809|81809|9000|10000|30||92.89|106.52|0.00|-0.61|1B04|0|0|01|04000752|0|41A80000|| +26|2023-10-06T22:02:47.5180000-07:00|752|Angel's Whisper|21.00|40021999|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +24|2023-10-06T22:02:47.5630000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F4B|129844|129844|10000|10000|||93.49|94.34|0.00|-3.08|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||93.49|94.34|0.00|-3.08| +21|2023-10-06T22:02:47.5630000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|750003|73C40000|4|28C88000|0|0|0|0|0|0|0|0|0|0|0|0|8372310|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||100.36|90.76|0.00|-1.99|00011095|0|1| +38|2023-10-06T22:02:47.5630000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.49|94.34|0.00|-3.08|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:02:47.5630000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|6||100.36|90.76|0.00|-1.99|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:47.5630000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T22:02:47.5630000-07:00|10FF0001||||| +261|2023-10-06T22:02:47.2030000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:02:47.6510000-07:00|40021585|Zeromus|00011093|8350555||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:47.6510000-07:00|10FF0001|Sesuga Sapisuga|00011088|129071|129071|7100|10000|6||100.36|90.76|0.00|-1.99|1305|0|0|01|05000752|0|41A80000|| +26|2023-10-06T22:02:47.6510000-07:00|752|Angel's Whisper|21.00|40021999|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +24|2023-10-06T22:02:47.6510000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2A41|129071|129071|8100|10000|||100.36|90.76|0.00|-1.99|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||92.89|106.54|0.00|-1.22| +38|2023-10-06T22:02:47.6510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|6||100.36|90.76|0.00|-1.99|0|0|0|||||||||||||||||||||||||||| +04|2023-10-06T22:02:47.2030000-07:00|4002197A|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||101.85|98.62|0.00|-3.04| +261|2023-10-06T22:02:47.2030000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:02:47.2030000-07:00|Remove|4002197A| +20|2023-10-06T22:02:47.6950000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|92.58|107.15|-0.02|-0.94| +261|2023-10-06T22:02:47.3010000-07:00|Change|40021595||||||||||| +261|2023-10-06T22:02:47.3010000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:02:47.3010000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:02:47.3010000-07:00|Change|40021591||||||||||| +261|2023-10-06T22:02:47.3010000-07:00|Change|40021592||||||||||| +261|2023-10-06T22:02:47.3010000-07:00|Change|4002199B||||||||| +261|2023-10-06T22:02:47.3010000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:02:47.7840000-07:00|10FF0004|Buhojaqe Zijaqe|00011088|81541|81541|350|10000|9||108.03|106.98|0.00|0.18|1C06|0|0|01|07000752|0|41A80000|| +26|2023-10-06T22:02:47.7840000-07:00|752|Angel's Whisper|21.00|40021999|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T22:02:47.4010000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:02:47.4010000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:02:47.9180000-07:00|10FF000B|Pusu Rosu|00011088|79209|79209|10000|10000|10||92.33|107.70|0.00|-1.81|1807|0|0|01|07000752|0|41A80000|| +26|2023-10-06T22:02:47.9180000-07:00|752|Angel's Whisper|21.00|40021999|Seraph|10FF000B|Pusu Rosu|00|79209|77430| +38|2023-10-06T22:02:47.9190000-07:00|40021999|Seraph|005A5A00|73956|77430|10000|10000|0||100.76|98.77|0.00|-2.47|0|0|0|||| +30|2023-10-06T22:02:47.9190000-07:00|77B|Summon Order|0.00|40021999|Seraph|40021999|Seraph|01|77430|77430| +261|2023-10-06T22:02:47.4970000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:02:48.0070000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1E9F0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|8350555|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||93.93|95.35|0.00|3.04|00011096|0|1| +23|2023-10-06T22:02:48.0940000-07:00|10FF000B|Pusu Rosu|6503|Glare III|Cancelled| +39|2023-10-06T22:02:48.0970000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|550|10000|||109.14|108.94|-0.01|0.47| +21|2023-10-06T22:02:48.1420000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|419B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||94.66|93.52|0.00|-3.10|8350555|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011097|0|1| +261|2023-10-06T22:02:47.7250000-07:00|Change|40021590||||||||| +261|2023-10-06T22:02:47.7250000-07:00|Change|4002158D||||||||| +261|2023-10-06T22:02:47.7250000-07:00|Change|4002158C||||||||| +261|2023-10-06T22:02:47.7250000-07:00|Change|4002158E||||||||| +261|2023-10-06T22:02:47.7250000-07:00|Change|4002158F||||||||| +00|2023-10-06T22:02:47.0000000-07:00|0044|Zeromus|Return to me, my beloved star!| +21|2023-10-06T22:02:48.1860000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.29|87.16|0.00|0.00|00011098|0|0| +21|2023-10-06T22:02:48.1860000-07:00|400215A1|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.83|113.02|0.00|0.00|00011099|0|0| +21|2023-10-06T22:02:48.1860000-07:00|400215A3|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.70|100.15|0.00|0.00|0001109A|0|0| +21|2023-10-06T22:02:48.1860000-07:00|400215A2|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.71|96.92|0.00|0.00|0001109B|0|0| +20|2023-10-06T22:02:48.2300000-07:00|40021585|Zeromus|8B6B|Nostalgia|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:48.2300000-07:00|4002158C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.34|105.20|0.00|0.00| +20|2023-10-06T22:02:48.2300000-07:00|4002158D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|87.50|98.32|0.00|0.00| +20|2023-10-06T22:02:48.2300000-07:00|4002158E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.68|114.05|0.00|0.00| +20|2023-10-06T22:02:48.2300000-07:00|4002158F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.97|109.43|0.00|0.00| +20|2023-10-06T22:02:48.2300000-07:00|40021590|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|108.12|109.43|0.00|0.00| +261|2023-10-06T22:02:47.8420000-07:00|Change|400215A3||||||||||| +261|2023-10-06T22:02:47.8420000-07:00|Change|400215A2||||||||||| +21|2023-10-06T22:02:48.2300000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|87F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8350555|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||98.45|90.31|0.00|-1.81|0001109C|0|1| +261|2023-10-06T22:02:47.8420000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:02:47.8420000-07:00|Change|400215A1||||||||||| +31|2023-10-06T22:02:48.2300000-07:00|10FF0001||||| +261|2023-10-06T22:02:47.8420000-07:00|Change|40021585||||||||||||| +26|2023-10-06T22:02:48.3200000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T22:02:48.3200000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|108F0000|104|6308000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|8350555|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|550|10000|||109.29|109.86|0.00|0.39|0001109D|0|1| +37|2023-10-06T22:02:48.4090000-07:00|40021585|Zeromus|00011096|8342716||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:48.4090000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|115.71|96.91|-0.02|2.06| +37|2023-10-06T22:02:48.4540000-07:00|40021585|Zeromus|00011095|8313080||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:48.4970000-07:00|10FF0003|Gegehi Gehi|73814|73814|5750|10000|||115.71|96.91|0.00|2.21| +20|2023-10-06T22:02:48.5430000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|92.01|108.28|0.00|-1.81| +261|2023-10-06T22:02:48.1650000-07:00|Change|4002199B||||||||| +261|2023-10-06T22:02:48.2590000-07:00|Change|10FF000B||||||||||||||||||||| +24|2023-10-06T22:02:48.6760000-07:00|40021585|Zeromus|DoT|0|1A26|8313080|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|7100|10000|||96.68|88.87|0.00|-1.88| +38|2023-10-06T22:02:48.6760000-07:00|40021585|Zeromus|005A5A00|8306386|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T22:02:48.2590000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:02:48.2590000-07:00|Change|4002158E||||||||||| +261|2023-10-06T22:02:48.2590000-07:00|Change|40021590||||||||||| +261|2023-10-06T22:02:48.2590000-07:00|Change|4002158F||||||||||| +261|2023-10-06T22:02:48.2590000-07:00|Change|4002158D||||||||||| +261|2023-10-06T22:02:48.2590000-07:00|Change|4002158C||||||||||| +37|2023-10-06T22:02:48.7640000-07:00|40021585|Zeromus|0001109C|8304211||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:48.3530000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:02:48.3530000-07:00|Change|10FF0003||||||||||||||||||||||| +261|2023-10-06T22:02:48.4480000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:02:48.9430000-07:00|10FF0007|Kehabiqo Febiqo|00011097|113049||||||91.93|92.44|0.00|3.00| +21|2023-10-06T22:02:48.9430000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|722003|94440000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|8304211|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.63|113.46|0.00|0.83|0001109E|0|1| +21|2023-10-06T22:02:48.9430000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8304211|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.63|113.46|0.00|0.83|0001109F|0|1| +261|2023-10-06T22:02:48.5430000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:02:49.0320000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8304211|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||92.02|91.18|0.00|-2.92|000110A0|0|1| +21|2023-10-06T22:02:49.1200000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7EA90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8304211|40478540|10000|10000|||100.00|80.10|0.00|0.00|113049|129844|10000|10000|||91.48|92.16|0.00|2.89|000110A1|0|1| +38|2023-10-06T22:02:49.1200000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113049|129844|10000|10000|0||91.48|92.16|0.00|2.89|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:49.1200000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +39|2023-10-06T22:02:49.1650000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||102.64|114.53|0.00|-3.06| +39|2023-10-06T22:02:49.2090000-07:00|40021999|Seraph|73956|77430|10000|10000|||100.76|98.77|0.00|-3.10| +21|2023-10-06T22:02:49.2090000-07:00|4002159B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.23|81.12|0.00|0.00|000110A2|0|0| +21|2023-10-06T22:02:49.2090000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.42|104.73|0.00|0.00|000110A3|0|0| +21|2023-10-06T22:02:49.2090000-07:00|4002159D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.91|104.76|0.00|0.00|000110A4|0|0| +21|2023-10-06T22:02:49.2090000-07:00|4002159E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.42|98.42|0.00|0.00|000110A5|0|0| +21|2023-10-06T22:02:49.2090000-07:00|4002159F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||101.35|96.07|0.00|0.00|000110A6|0|0| +261|2023-10-06T22:02:48.7810000-07:00|Change|4002159B||||||||||| +261|2023-10-06T22:02:48.7810000-07:00|Change|4002159C||||||||||| +261|2023-10-06T22:02:48.7810000-07:00|Change|4002159D||||||||||| +261|2023-10-06T22:02:48.7810000-07:00|Change|4002159F||||||||||| +261|2023-10-06T22:02:48.7810000-07:00|Change|4002159E||||||||||| +261|2023-10-06T22:02:48.7810000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:02:49.2540000-07:00|40021999|Seraph|40A4|Seraphic Veil|10FF0007|Kehabiqo Febiqo|4|17470000|470E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|113049|129844|10000|10000|||91.42|92.12|0.00|2.51|73956|77430|10000|10000|||100.76|98.77|0.00|-3.10|000110A7|0|1| +38|2023-10-06T22:02:49.2540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113049|129844|10000|10000|4||91.42|92.12|0.00|2.51|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:49.2540000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +37|2023-10-06T22:02:49.3430000-07:00|40021585|Zeromus|0001109D|8299972||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:49.3430000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|1.491|94.50|110.14|0.00|1.72| +261|2023-10-06T22:02:48.9010000-07:00|Change|10FF0006||||||||||||||||||||| +21|2023-10-06T22:02:49.4770000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|11E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8299972|40478540|10000|10000|||100.00|80.10|0.00|0.00|113049|129844|10000|10000|||91.30|92.04|0.00|2.51|000110A8|0|1| +21|2023-10-06T22:02:49.4770000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|2FF50000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|8299972|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||90.75|108.38|0.00|2.83|000110A9|0|1| +38|2023-10-06T22:02:49.5210000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5750|10000|10||115.71|96.91|0.00|-2.39|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:49.5210000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T22:02:49.5660000-07:00|40021585|Zeromus|000110A0|8297739||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:49.5660000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|752003|3D780000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|8299972|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|550|10000|||112.00|112.38|0.00|0.88|000110AA|0|1| +261|2023-10-06T22:02:49.2170000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:02:49.7000000-07:00|40021585|Zeromus|0001109F|8295483||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:49.7450000-07:00|40021585|Zeromus|000110A1|8263058||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:49.7450000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19716003|5E670000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|8297739|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.57|91.14|0.00|-2.83|000110AB|0|1| +38|2023-10-06T22:02:49.7450000-07:00|40021585|Zeromus|005A5A00|8263058|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +26|2023-10-06T22:02:49.7450000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T22:02:49.7450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||91.57|91.14|0.00|-2.83|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:49.7450000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +39|2023-10-06T22:02:49.7890000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7300|10000|||94.79|87.21|0.00|-1.90| +21|2023-10-06T22:02:49.8340000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|2A830000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|8263058|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5750|10000|||115.71|96.91|0.00|-2.39|000110AC|0|1| +38|2023-10-06T22:02:49.8340000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5550|10000|10||115.71|96.91|0.00|-2.39|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:49.8340000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:49.4020000-07:00|Change|10FF0003||||||||||||||||| +21|2023-10-06T22:02:49.8790000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|113049|129844|10000|10000|||91.23|92.00|0.00|2.51|113049|129844|10000|10000|||91.23|92.00|0.00|2.51|000110AD|0|1| +38|2023-10-06T22:02:49.8790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113049|129844|10000|10000|4||91.23|92.00|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:49.8790000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:02:49.4020000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:02:49.9670000-07:00|4002199B|Carbuncle|77698|77698|10000|10000|||95.66|109.03|0.00|0.31| +261|2023-10-06T22:02:49.5950000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:02:50.0130000-07:00|40021585|Zeromus|000110A8|8258480|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +37|2023-10-06T22:02:50.0130000-07:00|10FF0007|Kehabiqo Febiqo|000110A8|113049|129844|10000|10000|4||91.23|92.00|0.00|2.51|1500|0|0|01|08000769|0|C1F00000|| +261|2023-10-06T22:02:49.7050000-07:00|Change|10FF0001||||||||| +24|2023-10-06T22:02:50.0580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1F82|90216|90216|10000|10000|||103.90|115.95|0.00|1.11|10FF000B|Pusu Rosu|0|79209|79209|9600|10000|||90.75|108.38|0.00|2.83| +24|2023-10-06T22:02:50.0580000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|2AF0|81541|81541|150|10000|||113.00|112.33|0.00|3.01|40021999|Seraph|0|73956|77430|10000|10000|||100.76|98.77|0.00|-2.19| +21|2023-10-06T22:02:50.0580000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|30910000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|8258480|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7300|10000|||94.79|87.21|0.00|2.51|000110AE|0|1| +38|2023-10-06T22:02:50.0580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||103.90|115.95|0.00|1.11|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:02:50.0580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7300|10000|6||94.79|87.21|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:50.0580000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:02:50.0580000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T22:02:50.0580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|150|10000|9||113.00|112.33|0.00|3.01|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:02:50.1030000-07:00|40021585|Zeromus|0001109E|8220524|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +24|2023-10-06T22:02:50.1470000-07:00|40021585|Zeromus|DoT|A92|4EB|8258480|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9000|10000|||94.93|109.97|0.00|2.97| +24|2023-10-06T22:02:50.1470000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1F25|81809|81809|9000|10000|||94.93|109.97|0.00|2.97|10FF000B|Pusu Rosu|0|79209|79209|9600|10000|||90.75|108.38|0.00|2.83| +38|2023-10-06T22:02:50.1470000-07:00|40021585|Zeromus|005A5A00|8219265|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T22:02:50.1470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9000|10000|30||94.93|109.97|0.00|2.97|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:02:50.1920000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9200|10000|||94.93|109.97|0.00|2.97| +21|2023-10-06T22:02:50.1920000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.62|116.07|0.00|0.00|000110AF|0|0| +21|2023-10-06T22:02:50.1920000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||87.24|96.02|0.00|0.00|000110B0|0|0| +21|2023-10-06T22:02:50.1920000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.62|99.01|0.00|0.00|000110B1|0|0| +21|2023-10-06T22:02:50.1920000-07:00|40021599|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.74|102.74|0.00|0.00|000110B2|0|0| +21|2023-10-06T22:02:50.1920000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.42|104.74|0.00|0.00|000110B3|0|0| +37|2023-10-06T22:02:50.2790000-07:00|10FF0007|Kehabiqo Febiqo|000110A7|119008|129844|10000|10000|4||91.23|92.00|0.00|2.51|1500|0|0|02|0200077D|0|41E7C8B1|||||| +261|2023-10-06T22:02:49.8230000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:02:49.8230000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:02:49.8230000-07:00|Change|40021598||||||||||| +261|2023-10-06T22:02:49.8230000-07:00|Change|40021599||||||||||| +261|2023-10-06T22:02:49.8230000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:02:49.9330000-07:00|Change|10FF0006||||||||||||| +21|2023-10-06T22:02:50.3240000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|754003|3D920000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|8219265|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9200|10000|||94.93|109.97|0.00|2.97|000110B4|0|1| +39|2023-10-06T22:02:50.3690000-07:00|10FF000B|Pusu Rosu|79209|79209|9881|10000|||90.71|108.35|0.00|-2.82| +39|2023-10-06T22:02:50.3690000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||91.57|91.14|0.00|2.49| +24|2023-10-06T22:02:50.3690000-07:00|10FF0003|Gegehi Gehi|HoT|0|2565|73814|73814|5550|10000|||115.68|96.90|0.00|-2.27|10FF000B|Pusu Rosu|0|79209|79209|9600|10000|||90.71|108.35|0.00|-2.82| +38|2023-10-06T22:02:50.3690000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5550|10000|10||115.68|96.90|0.00|-2.27|0|0|0||||||||||||||||||| +37|2023-10-06T22:02:50.4130000-07:00|10FF0007|Kehabiqo Febiqo|000110AD|119008|129844|10000|10000|4||91.23|92.00|0.00|2.51|1500|0|0|01|08000769|0|41F00000|| +24|2023-10-06T22:02:50.4130000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|332A|83502|83502|10000|10000|||91.57|91.14|0.00|2.49|10FF000B|Pusu Rosu|0|79209|79209|9600|10000|||90.71|108.35|0.00|-2.82| +38|2023-10-06T22:02:50.4130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119008|129844|10000|10000|4||91.23|92.00|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:02:50.4130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||91.57|91.14|0.00|2.49|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:02:50.4590000-07:00|10FF0007|Kehabiqo Febiqo|120306|129844|10000|10000|||91.23|92.00|0.00|2.51| +24|2023-10-06T22:02:50.4590000-07:00|10FF0006|Wowobora Gogobora|HoT|777|E29|81809|81809|8900|10000|||94.93|109.97|0.00|2.97|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||90.70|108.34|0.00|-2.52| +24|2023-10-06T22:02:50.4590000-07:00|10FF000B|Pusu Rosu|HoT|777|1534|79209|79209|9881|10000|||90.70|108.34|0.00|-2.52|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||90.70|108.34|0.00|-2.52| +24|2023-10-06T22:02:50.4590000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E1B|90216|90216|10000|10000|||103.90|115.95|0.00|1.11|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||90.70|108.34|0.00|-2.52| +24|2023-10-06T22:02:50.4590000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E0D|119008|129844|10000|10000|||91.23|92.00|0.00|2.51|10FF000B|Pusu Rosu|0|79209|79209|9881|10000|||90.70|108.34|0.00|-2.52| +24|2023-10-06T22:02:50.4590000-07:00|10FF000B|Pusu Rosu|HoT|0|25D8|79209|79209|9881|10000|||90.70|108.34|0.00|-2.52|40021999|Seraph|0|73956|77430|10000|10000|||100.76|98.77|0.00|-2.19| +21|2023-10-06T22:02:50.4590000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||91.57|91.14|0.00|2.49|83502|83502|10000|10000|||91.57|91.14|0.00|2.49|000110B5|0|1| +38|2023-10-06T22:02:50.4590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123903|129844|10000|10000|4||91.23|92.00|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:50.4590000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:50.4590000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||103.90|115.95|0.00|1.11|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:50.4590000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:50.4590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|30||94.93|109.97|0.00|2.97|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:50.4590000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:50.4590000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|10||90.70|108.34|0.00|-2.52|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:50.4590000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:02:50.4590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||91.57|91.14|0.00|2.49|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:50.4590000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:02:50.5030000-07:00|40021585|Zeromus|000110AA|8203529|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|C1700000|| +21|2023-10-06T22:02:50.5030000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8090000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8219265|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7300|10000|||94.79|87.21|0.00|2.51|000110B6|0|1| +31|2023-10-06T22:02:50.5030000-07:00|10FF0001||||| +37|2023-10-06T22:02:50.5480000-07:00|40021585|Zeromus|000110AB|8179362|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000CB6|0|41700000|| +37|2023-10-06T22:02:50.5480000-07:00|10FF000A|Dukaro Nezikaro|000110AB|83502|83502|10000|10000|9||91.57|91.14|0.00|2.49|1E00|0|0|01|030001F1|0|C1700000|| +24|2023-10-06T22:02:50.5480000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F4D|119008|129844|10000|10000|||91.23|92.00|0.00|2.51|10FF0007|Kehabiqo Febiqo|0|119008|129844|10000|10000|||91.23|92.00|0.00|2.51| +38|2023-10-06T22:02:50.5480000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||91.23|92.00|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:02:50.5480000-07:00|40021585|Zeromus|005A5A00|8179362|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T22:02:50.5920000-07:00|40021585|Zeromus|000110AC|8168479||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:50.6360000-07:00|40021585|Zeromus|000110AE|8156046||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:50.6360000-07:00|10FF0001|Sesuga Sapisuga|000110AE|129071|129071|7300|10000|6||94.79|87.21|0.00|2.51|1300|0|0|02|0600076E|03|41F00000|||||| +24|2023-10-06T22:02:50.6370000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1E9F|129071|129071|7300|10000|||94.79|87.21|0.00|2.51|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||90.52|108.07|0.00|-2.63| +38|2023-10-06T22:02:50.6370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7300|10000|6||94.79|87.21|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:02:50.2590000-07:00|Change|10FF000B||||||||| +38|2023-10-06T22:02:50.7250000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|10||90.52|108.07|0.00|-2.63|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:50.7250000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T22:02:50.7690000-07:00|40021585|Zeromus|000110A9|8143769||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:50.8590000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|318F0000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|8143769|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5550|10000|||113.45|96.29|0.00|-1.92|000110B7|0|1| +38|2023-10-06T22:02:50.8590000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5250|10000|10||113.45|96.29|0.00|-1.92|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:50.8590000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:02:50.8590000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||91.57|91.14|0.00|2.49|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:50.8590000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:02:50.4530000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T22:02:50.9910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||103.90|115.95|0.00|1.11|0|0|0|||||||||||||||| +30|2023-10-06T22:02:50.9910000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:02:51.0350000-07:00|40021585|Zeromus|000110B6|8141712||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:51.1250000-07:00|40021585|Zeromus|000110B4|8125950||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:51.1250000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|350|10000|||115.28|110.22|0.00|2.84| +38|2023-10-06T22:02:51.1250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|30||94.93|109.97|0.00|2.97|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:51.1250000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +261|2023-10-06T22:02:50.7680000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:02:51.2140000-07:00|40021591|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.19|90.87|0.00|0.00|000110B8|0|0| +21|2023-10-06T22:02:51.2140000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.43|104.45|0.00|0.00|000110B9|0|0| +21|2023-10-06T22:02:51.2140000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.67|109.71|0.00|0.00|000110BA|0|0| +261|2023-10-06T22:02:50.7680000-07:00|Change|40021591||||||||||| +261|2023-10-06T22:02:50.7680000-07:00|Change|40021592||||||||||| +261|2023-10-06T22:02:50.7680000-07:00|Change|40021593||||||||||| +21|2023-10-06T22:02:51.2150000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.05|94.98|0.00|0.00|000110BB|0|0| +21|2023-10-06T22:02:51.2150000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.72|91.46|0.00|0.00|000110BC|0|0| +21|2023-10-06T22:02:51.2150000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|C2B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8125950|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.57|91.14|0.00|2.49|000110BD|0|1| +261|2023-10-06T22:02:50.7680000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:02:50.7680000-07:00|Change|40021595||||||||||| +38|2023-10-06T22:02:51.2600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5250|10000|10||112.29|96.09|0.00|-2.02|0|0|0||||||||||||| +30|2023-10-06T22:02:51.2600000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T22:02:51.3480000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|282D0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|8125950|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.57|91.14|0.00|2.49|000110BE|0|1| +261|2023-10-06T22:02:50.8850000-07:00|Change|10FF0006||||||||||||||||||||| +22|2023-10-06T22:02:51.3920000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|350|10000|||115.32|110.18|0.00|2.29|81541|81541|350|10000|||115.32|110.18|0.00|2.29|000110BF|0|1| +38|2023-10-06T22:02:51.3920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|350|10000|9||115.32|110.18|0.00|2.29|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:51.3920000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +30|2023-10-06T22:02:51.3920000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +37|2023-10-06T22:02:51.4350000-07:00|10FF000A|Dukaro Nezikaro|000110B5|83502|83502|10000|10000|9||91.57|91.14|0.00|2.49|1E00|0|0|01|030001F1|0|41700000|| +38|2023-10-06T22:02:51.4360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||91.57|91.14|0.00|2.49|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:02:51.4800000-07:00|10FF0003|Gegehi Gehi|73814|73814|5450|10000|||111.99|96.05|0.00|-1.80| +21|2023-10-06T22:02:51.4800000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|720003|59530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8125950|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.90|115.95|0.00|1.11|000110C0|0|1| +38|2023-10-06T22:02:51.5250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7300|10000|6||94.79|87.21|0.00|2.51|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:51.5250000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T22:02:51.5700000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|93450000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8125950|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||91.23|92.00|0.00|2.51|000110C1|0|1| +38|2023-10-06T22:02:51.5700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||91.23|92.00|0.00|2.51|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:51.5700000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:02:51.6140000-07:00|40021585|Zeromus|000110B7|8113263||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:51.6140000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8125950|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||103.90|115.95|0.00|-3.03|000110C2|0|1| +21|2023-10-06T22:02:51.6140000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|2DAA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8125950|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5450|10000|||111.78|96.03|0.00|-1.65|000110C3|0|1| +24|2023-10-06T22:02:51.6600000-07:00|40021585|Zeromus|DoT|0|1A39|8125950|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||91.57|91.14|0.00|2.49| +38|2023-10-06T22:02:51.6600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||91.23|92.00|0.00|2.51|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:51.6600000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:51.6600000-07:00|40021585|Zeromus|005A5A00|8106550|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T22:02:51.7480000-07:00|40021585|Zeromus|000110BD|8103435||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:51.7480000-07:00|40021585|Zeromus|000110BE|8093150||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:51.7480000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8106550|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5450|10000|||111.77|96.03|0.00|-2.51|000110C4|0|1| +21|2023-10-06T22:02:51.7920000-07:00|10FF0006|Wowobora Gogobora|64E7|Summon Phoenix|40021585|Zeromus|19|10000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|0|0|8106550|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||94.78|109.94|0.00|-1.93|000110C5|0|1| +261|2023-10-06T22:02:51.3950000-07:00|Change|4002199B||||||||| +261|2023-10-06T22:02:51.3950000-07:00|Change|4002199B||||||||| +38|2023-10-06T22:02:51.8350000-07:00|400219A4||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:02:51.8370000-07:00|400219A4||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:02:51.4910000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T22:02:52.0160000-07:00|10FF0003|Gegehi Gehi|HoT|798|14D9|73814|73814|5450|10000|||111.77|96.03|0.00|-2.51|10FF0004|Buhojaqe Zijaqe|0|81541|81541|350|10000|||115.40|110.15|0.00|2.42| +24|2023-10-06T22:02:52.0160000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|E87|81541|81541|350|10000|||115.40|110.15|0.00|2.42|10FF0004|Buhojaqe Zijaqe|0|81541|81541|350|10000|||115.40|110.15|0.00|2.42| +24|2023-10-06T22:02:52.0160000-07:00|10FF0006|Wowobora Gogobora|HoT|798|180A|81809|81809|8900|10000|||94.74|109.94|0.00|2.97|10FF0004|Buhojaqe Zijaqe|0|81541|81541|350|10000|||115.40|110.15|0.00|2.42| +37|2023-10-06T22:02:52.0160000-07:00|10FF0004|Buhojaqe Zijaqe|000110BF|81541|81541|350|10000|9||115.40|110.15|0.00|2.42|1C00|0|0|02|04000798|0|41700000|||||| +26|2023-10-06T22:02:52.0160000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T22:02:52.0160000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +20|2023-10-06T22:02:52.0160000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|89.98|107.26|0.00|-2.96| +38|2023-10-06T22:02:52.0160000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|30||94.74|109.94|0.00|2.97|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:52.0160000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:52.0160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|350|10000|9||115.40|110.15|0.00|2.42|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:02:52.0160000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5450|10000|10||111.77|96.03|0.00|-2.51|0|0|0|||||||||||||||| +26|2023-10-06T22:02:52.0160000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +261|2023-10-06T22:02:51.5820000-07:00|Change|10FF000B||||||||||||||||||| +39|2023-10-06T22:02:52.1490000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||103.88|115.86|0.00|-3.00| +39|2023-10-06T22:02:52.1930000-07:00|40021999|Seraph|73956|77430|10000|10000|||100.76|98.77|0.00|-3.10| +21|2023-10-06T22:02:52.1930000-07:00|4002158C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.34|105.20|0.00|0.00|000110C6|0|0| +21|2023-10-06T22:02:52.1930000-07:00|4002158D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||87.50|98.32|0.00|0.00|000110C7|0|0| +21|2023-10-06T22:02:52.1930000-07:00|4002158E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.68|114.05|0.00|0.00|000110C8|0|0| +21|2023-10-06T22:02:52.1930000-07:00|4002158F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.97|109.43|0.00|0.00|000110C9|0|0| +21|2023-10-06T22:02:52.1930000-07:00|40021590|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.12|109.43|0.00|0.00|000110CA|0|0| +261|2023-10-06T22:02:51.8070000-07:00|Add|400219A5||||||||||||||||||||||||||||||||| +261|2023-10-06T22:02:51.8070000-07:00|Change|4002158E||||||||||| +261|2023-10-06T22:02:51.8070000-07:00|Change|4002158C||||||||||| +261|2023-10-06T22:02:51.8070000-07:00|Change|4002158F||||||||||| +261|2023-10-06T22:02:51.8070000-07:00|Change|40021590||||||||||| +261|2023-10-06T22:02:51.8070000-07:00|Change|4002158D||||||||||| +03|2023-10-06T22:02:51.8070000-07:00|400219A4|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|74223|77698|10000|10000|||96.20|112.00|0.00|2.97| +261|2023-10-06T22:02:51.8070000-07:00|Add|400219A4||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:02:51.8070000-07:00|Change|400219A4||| +38|2023-10-06T22:02:52.2370000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|350|10000|9||115.65|109.43|0.00|2.73|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:52.2370000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T22:02:52.2370000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|350|10000|||115.65|109.43|0.00|2.73|81541|81541|350|10000|||115.65|109.43|0.00|2.73|000110CB|0|1| +37|2023-10-06T22:02:52.2820000-07:00|40021585|Zeromus|000110C4|8093149||||||100.00|80.10|0.00|0.00| +23|2023-10-06T22:02:52.3720000-07:00|10FF000B|Pusu Rosu|85|Medica II|Cancelled| +37|2023-10-06T22:02:52.3720000-07:00|40021585|Zeromus|000110C2|8089514||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:52.3720000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|720003|D9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8093150|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5450|10000|||111.77|96.03|0.00|-2.51|000110CC|0|1| +38|2023-10-06T22:02:52.4610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||91.59|91.20|0.00|2.18|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:52.4610000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:02:52.5060000-07:00|40021585|Zeromus|000110C1|8051813||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:52.5060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7300|10000|6||94.79|87.21|0.00|2.51|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:52.5060000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:52.5060000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|350|10000|9||115.83|108.82|0.00|-2.67|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:52.5060000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +21|2023-10-06T22:02:52.5500000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|754003|456D0000|4|252D8000|0|0|0|0|0|0|0|0|0|0|0|0|8089514|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7300|10000|||94.79|87.21|0.00|2.51|000110CD|0|1| +38|2023-10-06T22:02:52.5500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|6||94.79|87.21|0.00|2.51|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:52.5500000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:02:52.1470000-07:00|Change|10FF0001||| +37|2023-10-06T22:02:52.6400000-07:00|40021585|Zeromus|000110C0|8028946||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:52.6830000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40021585|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8028946|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||94.78|108.44|0.00|3.03|000110CE|0|1| +22|2023-10-06T22:02:52.7280000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000B|Pusu Rosu|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||90.07|107.16|0.00|2.52|79209|79209|10000|10000|||90.07|107.16|0.00|2.52|000110CF|0|5| +22|2023-10-06T22:02:52.7280000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0006|Wowobora Gogobora|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8900|10000|||94.78|108.44|0.00|3.03|79209|79209|10000|10000|||90.07|107.16|0.00|2.52|000110CF|1|5| +22|2023-10-06T22:02:52.7280000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0007|Kehabiqo Febiqo|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||91.23|92.00|0.00|2.51|79209|79209|10000|10000|||90.07|107.16|0.00|2.52|000110CF|2|5| +22|2023-10-06T22:02:52.7280000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000A|Dukaro Nezikaro|BD100E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||93.04|91.81|0.00|1.76|79209|79209|10000|10000|||90.07|107.16|0.00|2.52|000110CF|3|5| +22|2023-10-06T22:02:52.7280000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF0008|Kokosaze Lulusaze|BD910E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||103.81|115.35|0.00|-2.97|79209|79209|10000|10000|||90.07|107.16|0.00|2.52|000110CF|4|5| +37|2023-10-06T22:02:52.7720000-07:00|10FF0004|Buhojaqe Zijaqe|000110CB|81541|81541|2350|10000|9||116.04|108.10|0.00|-2.92|1C00|0|0|0| +37|2023-10-06T22:02:52.7720000-07:00|40021585|Zeromus|000110C3|8017256||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:52.7720000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8028946|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||94.79|87.21|0.00|2.51|000110D0|0|1| +31|2023-10-06T22:02:52.7720000-07:00|10FF0001||||| +261|2023-10-06T22:02:52.3440000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T22:02:52.8170000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||94.79|87.21|0.00|2.51| +22|2023-10-06T22:02:52.8170000-07:00|400219A4|Demi-Phoenix|4085|Everlasting Flight|10FF0006|Wowobora Gogobora|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8900|10000|||94.84|107.80|0.00|2.96|74223|77698|10000|10000|||96.20|112.00|0.00|2.97|000110D1|0|3| +22|2023-10-06T22:02:52.8170000-07:00|400219A4|Demi-Phoenix|4085|Everlasting Flight|10FF0008|Kokosaze Lulusaze|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||103.79|115.26|0.00|-2.96|74223|77698|10000|10000|||96.20|112.00|0.00|2.97|000110D1|1|3| +22|2023-10-06T22:02:52.8170000-07:00|400219A4|Demi-Phoenix|4085|Everlasting Flight|10FF000B|Pusu Rosu|10670E|74C0000|1B|40858000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||90.14|107.04|0.00|2.54|74223|77698|10000|10000|||96.20|112.00|0.00|2.97|000110D1|2|3| +21|2023-10-06T22:02:52.8610000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B5F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8028946|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||91.23|92.00|0.00|2.51|000110D2|0|1| +261|2023-10-06T22:02:52.4380000-07:00|Change|400219A4||||| +20|2023-10-06T22:02:52.9500000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|116.06|108.01|0.00|-2.98| +37|2023-10-06T22:02:52.9950000-07:00|40021585|Zeromus|000110CC|8013774||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:52.6260000-07:00|Change|10FF000B||||||||||||||||||||| +24|2023-10-06T22:02:53.0830000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|A58|90216|90216|10000|10000|||103.27|112.92|0.00|-2.93|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||90.31|106.75|-0.01|2.61| +24|2023-10-06T22:02:53.0830000-07:00|10FF0003|Gegehi Gehi|HoT|798|D53|73814|73814|5450|10000|||111.77|96.03|0.00|-2.51|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||115.76|107.71|0.00|-2.82| +24|2023-10-06T22:02:53.0830000-07:00|10FF0006|Wowobora Gogobora|HoT|798|17EF|81809|81809|8900|10000|||95.40|106.54|0.00|2.91|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||115.76|107.71|0.00|-2.82| +24|2023-10-06T22:02:53.0830000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CDD|83502|83502|10000|10000|||95.40|93.97|0.00|0.96|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||115.76|107.71|0.00|-2.82| +24|2023-10-06T22:02:53.0830000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|17F1|90216|90216|10000|10000|||103.27|112.92|0.00|-2.93|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||115.76|107.71|0.00|-2.82| +24|2023-10-06T22:02:53.0830000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|CFE|81541|81541|2350|10000|||115.76|107.71|0.00|-2.82|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||115.76|107.71|0.00|-2.82| +24|2023-10-06T22:02:53.0830000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A49|81541|81541|2350|10000|||115.76|107.71|0.00|-2.82|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||115.76|107.71|0.00|-2.82| +38|2023-10-06T22:02:53.0830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||103.27|112.92|0.00|-2.93|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:53.0830000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:53.0830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|30||95.40|106.54|0.00|2.91|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:02:53.0830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2350|10000|9||115.76|107.71|0.00|-2.82|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:02:53.0830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5450|10000|10||111.77|96.03|0.00|-2.51|0|0|0|||||||||||||||| +38|2023-10-06T22:02:53.0830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||95.40|93.97|0.00|0.96|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:53.0830000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +24|2023-10-06T22:02:53.1720000-07:00|40021585|Zeromus|DoT|A92|5EB|8013774|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|8900|10000|||95.93|105.67|0.00|2.81| +24|2023-10-06T22:02:53.1720000-07:00|10FF0006|Wowobora Gogobora|HoT|0|AF1|81809|81809|8900|10000|||95.93|105.67|0.00|2.81|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||115.60|107.56|0.00|-2.75| +38|2023-10-06T22:02:53.1720000-07:00|40021585|Zeromus|005A5A00|8012259|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T22:02:53.1720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|30||95.93|105.67|0.00|2.81|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:02:53.2150000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9100|10000|||95.93|105.67|0.00|2.81| +261|2023-10-06T22:02:52.8550000-07:00|Change|40021585||||||||||||| +21|2023-10-06T22:02:53.2150000-07:00|40021585|Zeromus|8B6B|Nostalgia|40021585|Zeromus|1B|8B6B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|8013774|40478540|10000|10000|||100.00|80.10|0.00|0.00|8013774|40478540|10000|10000|||100.00|80.10|0.00|0.00|000110D3|0|1| +261|2023-10-06T22:02:52.8550000-07:00|Change|10FF0006||||||||||| +20|2023-10-06T22:02:53.2610000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|111.77|96.03|0.00|-2.51| +261|2023-10-06T22:02:52.8550000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|4002159E||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|4002159F||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|400215A0||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|10FF0003||||||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:02:52.8550000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:02:53.3040000-07:00|40021585|Zeromus|000110CE|8012259|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|050004B3|0|41200000|| +26|2023-10-06T22:02:53.3040000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|81809| +37|2023-10-06T22:02:53.3040000-07:00|40021585|Zeromus|000110CD|7994486||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:53.3040000-07:00|40021585|Zeromus|000110D0|7992325||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:53.3040000-07:00|4002159D|Zeromus|8B73|Primal Roar|4002159D|Zeromus|9.400|100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:53.3040000-07:00|4002159E|Zeromus|8B72|Roar|4002159E|Zeromus|6.400|100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:53.3040000-07:00|4002159F|Zeromus|8B71|Roar|4002159F|Zeromus|5.400|100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:53.3040000-07:00|400215A0|Zeromus|8B70|Bury|400215A0|Zeromus|3.400|100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:53.3040000-07:00|400215A1|Zeromus|8B6F|Bury|400215A1|Zeromus|2.400|100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:53.3050000-07:00|400215A3|Zeromus|8B6D|Bury|400215A3|Zeromus|0.400|100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:53.3050000-07:00|400215A2|Zeromus|8B6E|Bury|400215A2|Zeromus|1.400|100.00|80.10|0.00|0.00| +22|2023-10-06T22:02:53.3050000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0008|Kokosaze Lulusaze|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|000110D4|0|8| +22|2023-10-06T22:02:53.3050000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0006|Wowobora Gogobora|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9100|10000|||96.49|104.75|0.00|2.70|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|000110D4|1|8| +22|2023-10-06T22:02:53.3050000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0004|Buhojaqe Zijaqe|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2350|10000|||115.44|107.41|0.00|-2.69|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|000110D4|2|8| +22|2023-10-06T22:02:53.3050000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000B|Pusu Rosu|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||90.32|106.74|0.00|2.61|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|000110D4|3|8| +22|2023-10-06T22:02:53.3050000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000A|Dukaro Nezikaro|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||96.33|95.03|0.00|0.82|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|000110D4|4|8| +22|2023-10-06T22:02:53.3050000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0003|Gegehi Gehi|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5450|10000|||111.77|96.03|0.00|-2.51|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|000110D4|5|8| +22|2023-10-06T22:02:53.3050000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0007|Kehabiqo Febiqo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||91.23|92.00|0.00|2.51|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|000110D4|6|8| +22|2023-10-06T22:02:53.3050000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0001|Sesuga Sapisuga|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6500|10000|||94.74|87.21|0.00|-1.45|90216|90216|10000|10000|||102.94|111.60|0.00|-2.91|000110D4|7|8| +39|2023-10-06T22:02:53.3480000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||90.32|106.74|0.00|2.61| +39|2023-10-06T22:02:53.3480000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||96.33|95.03|0.00|0.82| +37|2023-10-06T22:02:53.3930000-07:00|40021585|Zeromus|000110D2|7989414||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:53.3930000-07:00|10FF0003|Gegehi Gehi|HoT|0|A7C|73814|73814|5450|10000|||111.77|96.03|0.00|-2.51|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2350|10000|||115.31|107.28|0.00|-2.64| +21|2023-10-06T22:02:53.3930000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|C4E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7992325|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||96.81|95.55|0.00|0.79|000110D5|0|1| +38|2023-10-06T22:02:53.3930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5450|10000|10||111.77|96.03|0.00|-2.51|0|0|0|||||||||||||||| +24|2023-10-06T22:02:53.4380000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|A4A|83502|83502|10000|10000|||96.81|95.55|0.00|0.79|40021999|Seraph|0|73956|77430|10000|10000|||100.76|98.77|0.00|-3.10| +20|2023-10-06T22:02:53.4380000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|90.32|106.74|0.00|2.61| +38|2023-10-06T22:02:53.4380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||96.81|95.55|0.00|0.79|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:02:53.4830000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||91.23|92.00|0.00|2.51| +24|2023-10-06T22:02:53.4830000-07:00|10FF0006|Wowobora Gogobora|HoT|777|DFD|81809|81809|9100|10000|||97.03|104.01|0.00|2.63|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||90.32|106.74|0.00|2.61| +24|2023-10-06T22:02:53.4830000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|1599|90216|90216|10000|10000|||102.77|110.96|0.00|-2.91|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||90.32|106.74|0.00|2.61| +24|2023-10-06T22:02:53.4830000-07:00|10FF000B|Pusu Rosu|HoT|777|DAD|79209|79209|10000|10000|||90.32|106.74|0.00|2.61|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||90.32|106.74|0.00|2.61| +24|2023-10-06T22:02:53.4830000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|D86|83502|83502|10000|10000|||96.81|95.55|0.00|0.79|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||90.32|106.74|0.00|2.61| +24|2023-10-06T22:02:53.4830000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|D9B|129844|129844|10000|10000|||91.23|92.00|0.00|2.51|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||90.32|106.74|0.00|2.61| +24|2023-10-06T22:02:53.4830000-07:00|10FF000B|Pusu Rosu|HoT|0|A96|79209|79209|10000|10000|||90.32|106.74|0.00|2.61|40021999|Seraph|0|73956|77430|10000|10000|||100.76|98.77|0.00|-3.10| +38|2023-10-06T22:02:53.4830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||91.23|92.00|0.00|2.51|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:53.4830000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:53.4830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||102.77|110.96|0.00|-2.91|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:53.4830000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:53.4830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9100|10000|30||97.03|104.01|0.00|2.63|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:53.4830000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:53.4830000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|10||90.32|106.74|0.00|2.61|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:53.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:02:53.4830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||96.81|95.55|0.00|0.79|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:53.4830000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:02:53.5260000-07:00|10FF000B|Pusu Rosu|000110CF|79209|79209|10000|10000|10||90.32|106.74|0.00|2.61|1800|0|0|01|060004C3|0|41200000|| +26|2023-10-06T22:02:53.5260000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:02:53.1800000-07:00|Change|10FF0001||||||||| +24|2023-10-06T22:02:53.5710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|A49|129844|129844|10000|10000|||91.23|92.00|0.00|2.51|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||91.23|92.00|0.00|2.51| +38|2023-10-06T22:02:53.5710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|4||91.23|92.00|0.00|2.51|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:02:53.6600000-07:00|10FF0006|Wowobora Gogobora|000110CF|81809|81809|9100|10000|30||98.03|102.72|0.00|2.51|1B01|0|0|01|070004C3|0|41200000|| +26|2023-10-06T22:02:53.6600000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +24|2023-10-06T22:02:53.6600000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|B19|129071|129071|6500|10000|||94.77|88.11|0.00|-1.43|10FF0001|Sesuga Sapisuga|0|129071|129071|6500|10000|||94.77|88.11|0.00|-1.43| +38|2023-10-06T22:02:53.6600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|6||94.77|88.11|0.00|-1.43|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:02:53.7490000-07:00|10FF0006|Wowobora Gogobora|000110D1|81809|81809|9100|10000|30||98.03|102.72|0.00|2.51|1B00|0|0|01|0800074C|0|41A80000|| +26|2023-10-06T22:02:53.7490000-07:00|74C|Everlasting Flight|21.00|400219A4|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|77698| +261|2023-10-06T22:02:53.3640000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T22:02:53.3640000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:02:53.3640000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:02:53.3640000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:02:53.3640000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T22:02:53.3640000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T22:02:53.3640000-07:00|Change|4002159F||||||||||||| +37|2023-10-06T22:02:53.7950000-07:00|10FF0007|Kehabiqo Febiqo|000110CF|129844|129844|10000|10000|4||91.23|92.00|0.00|2.51|1502|0|0|01|040004C3|0|41200000|| +26|2023-10-06T22:02:53.7950000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +261|2023-10-06T22:02:53.3640000-07:00|Change|4002199B||| +37|2023-10-06T22:02:53.8830000-07:00|10FF0008|Kokosaze Lulusaze|000110D1|90216|90216|10000|10000|8||102.49|109.86|0.00|-2.90|1F01|0|0|01|0600074C|0|41A80000|| +26|2023-10-06T22:02:53.8830000-07:00|74C|Everlasting Flight|21.00|400219A4|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|77698| +21|2023-10-06T22:02:53.8830000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|52F00000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7989414|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2350|10000|||115.28|107.26|0.00|-2.63|000110D6|0|1| +37|2023-10-06T22:02:53.9270000-07:00|10FF0008|Kokosaze Lulusaze|000110D4|90216|90216|10000|10000|8||102.49|109.86|0.00|-2.90|1F00|0|0|01|0700079F|0|41700000|| +26|2023-10-06T22:02:53.9270000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T22:02:53.9270000-07:00|10FF000A|Dukaro Nezikaro|000110CF|83502|83502|10000|10000|9||98.87|97.77|0.00|0.75|1E03|0|0|01|080004C3|0|41200000|| +26|2023-10-06T22:02:53.9270000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:02:53.9270000-07:00|40021585|Zeromus|000110D5|7986264||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:02:53.9720000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0001|Sesuga Sapisuga|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6500|10000|||94.85|89.90|0.00|-1.01|44|44|0|10000|||100.00|80.10|0.00|0.00|000110D7|0|8| +22|2023-10-06T22:02:53.9720000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0007|Kehabiqo Febiqo|730003|5960000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||91.23|92.00|0.00|2.51|44|44|0|10000|||100.00|80.10|0.00|0.00|000110D7|1|8| +22|2023-10-06T22:02:53.9720000-07:00|400215A3|Zeromus|8B6D|Bury|10FF000A|Dukaro Nezikaro|730003|9A10000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.37|98.30|0.00|0.75|44|44|0|10000|||100.00|80.10|0.00|0.00|000110D7|2|8| +22|2023-10-06T22:02:53.9720000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0003|Gegehi Gehi|730003|D4D0000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5450|10000|||111.77|96.03|0.00|-2.51|44|44|0|10000|||100.00|80.10|0.00|0.00|000110D7|3|8| +22|2023-10-06T22:02:53.9720000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0006|Wowobora Gogobora|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9100|10000|||99.29|101.15|0.00|2.54|44|44|0|10000|||100.00|80.10|0.00|0.00|000110D7|4|8| +22|2023-10-06T22:02:53.9720000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0008|Kokosaze Lulusaze|730003|83E0000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||102.30|109.13|0.00|-2.89|44|44|0|10000|||100.00|80.10|0.00|0.00|000110D7|5|8| +22|2023-10-06T22:02:53.9720000-07:00|400215A3|Zeromus|8B6D|Bury|10FF000B|Pusu Rosu|730003|149A0000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||90.32|106.74|0.00|2.61|44|44|0|10000|||100.00|80.10|0.00|0.00|000110D7|6|8| +22|2023-10-06T22:02:53.9720000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0004|Buhojaqe Zijaqe|730003|DD30000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1950|10000|||115.28|107.26|0.00|-2.63|44|44|0|10000|||100.00|80.10|0.00|0.00|000110D7|7|8| +21|2023-10-06T22:02:53.9720000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.37|98.30|0.00|0.75|83502|83502|10000|10000|||99.37|98.30|0.00|0.75|000110D8|0|1| +38|2023-10-06T22:02:53.9720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||99.37|98.30|0.00|0.75|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:53.9720000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +261|2023-10-06T22:02:53.4610000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:02:54.0160000-07:00|10FF000B|Pusu Rosu|000110D1|79209|79209|10000|10000|10||90.32|106.74|0.00|2.61|1802|0|0|01|0800074C|0|41A80000|| +26|2023-10-06T22:02:54.0160000-07:00|74C|Everlasting Flight|21.00|400219A4|Demi-Phoenix|10FF000B|Pusu Rosu|00|79209|77698| +261|2023-10-06T22:02:53.5590000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:02:53.5590000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:02:53.6820000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:02:54.0170000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|31630000|143E|340000|4|199D8000|11B|2A8000|0|0|0|0|0|0|0|0|7986264|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||91.23|92.00|0.00|2.51|000110D9|0|1| +21|2023-10-06T22:02:54.0170000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C722003|4E0F0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|7986264|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||102.08|108.26|0.00|-2.89|000110DA|0|1| +37|2023-10-06T22:02:54.0610000-07:00|10FF0006|Wowobora Gogobora|000110D4|81809|81809|9100|10000|30||99.68|100.67|0.00|2.56|1B01|0|0|01|0900079F|0|41700000|| +26|2023-10-06T22:02:54.0610000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +37|2023-10-06T22:02:54.0610000-07:00|10FF0008|Kokosaze Lulusaze|000110CF|90216|90216|10000|10000|8||102.08|108.26|0.00|-2.89|1F04|0|0|01|080004C3|0|41200000|| +26|2023-10-06T22:02:54.0610000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +21|2023-10-06T22:02:54.0610000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7986264|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||99.68|100.67|0.00|2.56|000110DB|0|1| +39|2023-10-06T22:02:54.1050000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2150|10000|||115.28|107.26|0.00|-2.63| +37|2023-10-06T22:02:54.1500000-07:00|10FF0001|Sesuga Sapisuga|000110D7|129071|129071|6500|10000|1||95.20|90.46|0.00|-1.01|1300|0|0|0| +37|2023-10-06T22:02:54.1940000-07:00|10FF0004|Buhojaqe Zijaqe|000110D4|81541|81541|2150|10000|9||115.28|107.26|0.00|-2.63|1C02|0|0|01|0300079F|0|41700000|| +26|2023-10-06T22:02:54.1940000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +37|2023-10-06T22:02:54.1940000-07:00|10FF0007|Kehabiqo Febiqo|000110D7|128414|129844|10000|10000|0||91.23|92.00|0.00|2.51|1501|0|0|01|02000000|0|0|| +38|2023-10-06T22:02:54.1940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128414|129844|10000|10000|0||91.23|92.00|0.00|2.51|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:54.1940000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +37|2023-10-06T22:02:54.2390000-07:00|10FF000A|Dukaro Nezikaro|000110D7|81037|83502|10000|10000|0||100.38|99.39|0.00|0.75|1E02|0|0|01|04000000|0|0|| +38|2023-10-06T22:02:54.2390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81037|83502|10000|10000|0||100.38|99.39|0.00|0.75|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:54.2390000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF000A|Dukaro Nezikaro|00|83502|77430| +261|2023-10-06T22:02:53.9130000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:02:54.2830000-07:00|10FF0003|Gegehi Gehi|000110D7|70409|73814|5450|10000|0||111.77|96.03|0.00|-2.51|2303|0|0|01|01000000|0|0|| +21|2023-10-06T22:02:54.2830000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7986264|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.63|106.47|0.00|-3.08|000110DC|0|1| +21|2023-10-06T22:02:54.2830000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|561A0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7986264|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9100|10000|||100.22|99.95|0.00|2.55|000110DD|0|1| +38|2023-10-06T22:02:54.2830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128414|129844|10000|10000|0||91.24|92.00|-0.02|2.37|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:54.2830000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:02:54.2830000-07:00|10FF0003|Gegehi Gehi|005A5A23|70409|73814|5450|10000|0||111.77|96.03|0.00|-2.51|0|0|0|||||||||||||||| +30|2023-10-06T22:02:54.2830000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T22:02:54.3270000-07:00|10FF000B|Pusu Rosu|000110D4|79209|79209|10000|10000|10||90.32|106.74|0.00|2.61|1803|0|0|01|0900079F|0|41700000|| +26|2023-10-06T22:02:54.3270000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|79209|90216| +37|2023-10-06T22:02:54.3270000-07:00|10FF0006|Wowobora Gogobora|000110D7|81809|81809|8800|10000|15||100.22|99.95|0.00|2.55|1B04|0|0|01|03000000|0|0|| +38|2023-10-06T22:02:54.3270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|15||100.22|99.95|0.00|2.55|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:54.3270000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T22:02:54.3720000-07:00|10FF0008|Kokosaze Lulusaze|000110D7|88106|90216|10000|10000|0||101.44|105.73|0.00|-3.06|1F05|0|0|01|02000000|0|0|| +38|2023-10-06T22:02:54.3720000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88106|90216|10000|10000|0||101.44|105.73|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:54.3720000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T22:02:54.4160000-07:00|10FF000B|Pusu Rosu|000110D7|73935|79209|10000|10000|0||90.32|106.74|0.00|2.61|1806|0|0|01|03000000|0|0|| +38|2023-10-06T22:02:54.4160000-07:00|10FF000B|Pusu Rosu|005A5A18|73935|79209|10000|10000|0||90.32|106.74|0.00|2.61|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:54.4160000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF000B|Pusu Rosu|00|79209|77430| +37|2023-10-06T22:02:54.4610000-07:00|10FF000A|Dukaro Nezikaro|000110D4|81037|83502|10000|10000|0||101.28|100.36|0.00|0.75|1E04|0|0|01|0400079F|0|41700000|| +26|2023-10-06T22:02:54.4610000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|83502|90216| +37|2023-10-06T22:02:54.4610000-07:00|10FF0004|Buhojaqe Zijaqe|000110D7|78002|81541|2150|10000|0||115.28|107.26|0.00|-2.63|1C07|0|0|01|05000000|0|0|| +39|2023-10-06T22:02:54.4610000-07:00|10FF0003|Gegehi Gehi|71147|73814|5650|10000|||111.77|96.03|0.00|-2.51| +21|2023-10-06T22:02:54.4610000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81037|83502|10000|10000|||101.28|100.36|0.00|0.75|81037|83502|10000|10000|||101.28|100.36|0.00|0.75|000110DE|0|1| +38|2023-10-06T22:02:54.4610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|78002|81541|2150|10000|0||115.28|107.26|0.00|-2.63|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:54.4610000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T22:02:54.4610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81037|83502|10000|10000|0||101.28|100.36|0.00|0.75|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:54.4610000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +261|2023-10-06T22:02:54.0400000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:54.0400000-07:00|Change|10FF0003||||| +261|2023-10-06T22:02:54.1550000-07:00|Change|40021999||||||||| +37|2023-10-06T22:02:54.5940000-07:00|10FF0003|Gegehi Gehi|000110D4|71147|73814|5650|10000|0||111.77|96.03|0.00|-2.51|2305|0|0|01|0100079F|0|41700000|| +26|2023-10-06T22:02:54.5940000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +37|2023-10-06T22:02:54.5940000-07:00|40021585|Zeromus|000110DB|7986107||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:54.6830000-07:00|40021585|Zeromus|000110D6|7964875||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:54.6830000-07:00|40021585|Zeromus|DoT|0|1C31|7986107|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|81809|81809|8800|10000|||100.46|99.61|0.00|-3.11| +21|2023-10-06T22:02:54.6830000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|2B480000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|7986107|40478540|10000|10000|||100.00|80.10|0.00|0.00|71147|73814|5650|10000|||111.77|96.03|0.00|-2.51|000110DF|0|1| +38|2023-10-06T22:02:54.6830000-07:00|10FF0003|Gegehi Gehi|005A5A23|71147|73814|5450|10000|0||111.77|96.03|0.00|-2.51|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:54.6830000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:02:54.6830000-07:00|40021585|Zeromus|005A5A00|7957658|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +37|2023-10-06T22:02:54.7270000-07:00|10FF0007|Kehabiqo Febiqo|000110D4|128414|129844|10000|10000|0||92.45|92.79|0.00|1.27|1506|0|0|01|0200079F|0|41700000|| +26|2023-10-06T22:02:54.7270000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +21|2023-10-06T22:02:54.7270000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40021585|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7957658|40478540|10000|10000|||100.00|80.10|0.00|0.00|128414|129844|10000|10000|||92.45|92.79|0.00|1.27|000110E0|0|1| +261|2023-10-06T22:02:54.3430000-07:00|Change|400215A3||||||||||||| +37|2023-10-06T22:02:54.8150000-07:00|40021585|Zeromus|000110DA|7937675||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:54.8600000-07:00|10FF0001|Sesuga Sapisuga|000110D4|129071|129071|6500|10000|1||97.56|94.20|0.00|-0.87|1307|0|0|01|0300079F|0|41700000|| +26|2023-10-06T22:02:54.8600000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +261|2023-10-06T22:02:54.4410000-07:00|Change|10FF0008||||||||| +22|2023-10-06T22:02:54.9040000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|21270000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|73935|79209|10000|10000|||90.32|106.74|0.00|2.61|73935|79209|10000|10000|||90.32|106.74|0.00|2.61|000110E1|0|6| +22|2023-10-06T22:02:54.9040000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|4|21970000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|88106|90216|10000|10000|||100.83|103.38|0.00|-2.93|73935|79209|10000|10000|||90.32|106.74|0.00|2.61|000110E1|1|6| +22|2023-10-06T22:02:54.9040000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|21230000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81809|81809|8800|10000|||100.57|99.45|-0.01|-3.11|73935|79209|10000|10000|||90.32|106.74|0.00|2.61|000110E1|2|6| +22|2023-10-06T22:02:54.9040000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|4|21060000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81037|83502|10000|10000|||101.74|100.85|0.00|0.75|73935|79209|10000|10000|||90.32|106.74|0.00|2.61|000110E1|3|6| +22|2023-10-06T22:02:54.9040000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|200004|337F0000|BDAB0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|128414|129844|10000|10000|||93.14|93.24|0.00|0.99|73935|79209|10000|10000|||90.32|106.74|0.00|2.61|000110E1|4|6| +22|2023-10-06T22:02:54.9040000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|1E1B0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129071|129071|6500|10000|||97.56|94.20|0.00|-0.87|73935|79209|10000|10000|||90.32|106.74|0.00|2.61|000110E1|5|6| +21|2023-10-06T22:02:54.9480000-07:00|10FF0006|Wowobora Gogobora|64E6|Rekindle|10FF0006|Wowobora Gogobora|4|2ABC0000|4B102F0E|A900000|1B|64E68000|0|0|0|0|0|0|0|0|0|0|81809|81809|8800|10000|||100.57|99.44|0.00|-3.11|81809|81809|8800|10000|||100.57|99.44|0.00|-3.11|000110E2|0|1| +261|2023-10-06T22:02:54.5350000-07:00|Change|10FF0006||||||||||| +22|2023-10-06T22:02:54.9930000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0001|Sesuga Sapisuga|730003|15810000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6500|10000|||98.02|94.74|0.00|-0.87|44|44|0|10000|||100.00|80.10|0.00|0.00|000110E3|0|8| +22|2023-10-06T22:02:54.9930000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0007|Kehabiqo Febiqo|730003|18F80000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|128414|129844|10000|10000|||93.31|93.34|0.00|0.99|44|44|0|10000|||100.00|80.10|0.00|0.00|000110E3|1|8| +22|2023-10-06T22:02:54.9930000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0006|Wowobora Gogobora|730003|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8800|10000|||100.57|99.44|0.00|-3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|000110E3|2|8| +22|2023-10-06T22:02:54.9930000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0003|Gegehi Gehi|730003|2A270000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|71147|73814|5450|10000|||111.77|96.03|0.00|-2.51|44|44|0|10000|||100.00|80.10|0.00|0.00|000110E3|3|8| +22|2023-10-06T22:02:54.9930000-07:00|400215A2|Zeromus|8B6E|Bury|10FF000A|Dukaro Nezikaro|730003|264B0000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|81037|83502|10000|10000|||101.76|100.88|0.00|1.05|44|44|0|10000|||100.00|80.10|0.00|0.00|000110E3|4|8| +22|2023-10-06T22:02:54.9930000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0008|Kokosaze Lulusaze|730003|27770000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|88106|90216|10000|10000|||100.64|102.63|0.00|-2.91|44|44|0|10000|||100.00|80.10|0.00|0.00|000110E3|5|8| +22|2023-10-06T22:02:54.9930000-07:00|400215A2|Zeromus|8B6E|Bury|10FF000B|Pusu Rosu|730003|2DF50000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|73935|79209|9000|10000|||90.32|106.74|0.00|2.61|44|44|0|10000|||100.00|80.10|0.00|0.00|000110E3|6|8| +22|2023-10-06T22:02:54.9930000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0004|Buhojaqe Zijaqe|730003|2A8D0000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|78002|81541|2150|10000|||114.81|106.86|0.00|-2.56|44|44|0|10000|||100.00|80.10|0.00|0.00|000110E3|7|8| +21|2023-10-06T22:02:54.9930000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|254003|FC1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7937675|40478540|10000|10000|||100.00|80.10|0.00|0.00|81037|83502|10000|10000|||101.76|100.88|0.00|1.05|000110E4|0|1| +38|2023-10-06T22:02:54.9930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|81037|83502|10000|10000|0||101.76|100.88|0.00|1.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:54.9930000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +30|2023-10-06T22:02:54.9930000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +261|2023-10-06T22:02:54.5350000-07:00|Change|400215A2||||||||||||| +37|2023-10-06T22:02:55.0380000-07:00|40021585|Zeromus|000110DC|7934863||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:55.0380000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|342E0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|7937675|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||98.41|95.20|0.00|-0.87|000110E5|0|1| +21|2023-10-06T22:02:55.0380000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7937675|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6500|10000|||98.41|95.20|0.00|-0.87|000110E6|0|1| +38|2023-10-06T22:02:55.0380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|1||98.41|95.20|0.00|-0.87|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:55.0380000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T22:02:55.0380000-07:00|10FF0001||||| +261|2023-10-06T22:02:54.6260000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:02:55.1710000-07:00|10FF0001|Sesuga Sapisuga|000110E3|123566|129071|6500|10000|0||98.85|95.72|0.00|-0.89|1300|0|0|01|02000000|0|0|| +39|2023-10-06T22:02:55.1710000-07:00|10FF0008|Kokosaze Lulusaze|89008|90216|10000|10000|||100.40|101.44|0.00|-2.93| +39|2023-10-06T22:02:55.1710000-07:00|40021999|Seraph|73956|77430|10000|10000|||102.30|99.06|0.00|2.11| +38|2023-10-06T22:02:55.1710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123566|129071|6500|10000|0||98.85|95.72|0.00|-0.89|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:55.1710000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T22:02:55.2150000-07:00|10FF0007|Kehabiqo Febiqo|000110E3|122022||||||93.31|93.34|0.00|0.99| +37|2023-10-06T22:02:55.2600000-07:00|10FF0006|Wowobora Gogobora|000110E3|81809|81809|8800|10000|3||100.57|99.44|0.00|-3.11|1B02|0|0|0| +37|2023-10-06T22:02:55.3050000-07:00|10FF0003|Gegehi Gehi|000110E3|60356||||||111.77|96.06|0.00|-1.82| +261|2023-10-06T22:02:54.9620000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:02:55.3490000-07:00|40021585|Zeromus|000110E0|7934863|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|060004A9|0|41200000|| +26|2023-10-06T22:02:55.3490000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40021585|Zeromus|00|40478540|129844| +37|2023-10-06T22:02:55.3490000-07:00|40021585|Zeromus|000110DD|7912821||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:55.3490000-07:00|10FF000A|Dukaro Nezikaro|000110E3|71234||||||101.77|100.89|0.00|-3.06| +37|2023-10-06T22:02:55.3940000-07:00|10FF0008|Kokosaze Lulusaze|000110E3|78905||||||100.25|100.69|0.00|-2.96| +21|2023-10-06T22:02:55.3940000-07:00|400219A4|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|154003|173C0000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|7934863|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||96.18|111.99|0.00|3.02|000110E7|0|1| +37|2023-10-06T22:02:55.4400000-07:00|10FF000B|Pusu Rosu|000110E3|62170||||||90.34|106.74|0.00|2.35| +37|2023-10-06T22:02:55.4400000-07:00|40021585|Zeromus|000110DF|7901741||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:55.0720000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T22:02:55.4830000-07:00|10FF0004|Buhojaqe Zijaqe|000110E3|67109||||||112.12|104.60|0.00|-2.29| +37|2023-10-06T22:02:55.5280000-07:00|40021585|Zeromus|000110D9|7889098||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:55.5280000-07:00|10FF0007|Kehabiqo Febiqo|000110D9|128579||||||95.06|94.45|0.00|1.01| +261|2023-10-06T22:02:55.1670000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:02:55.5730000-07:00|40021585|Zeromus|000110E6|7886890||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:55.5730000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9D10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7889098|40478540|10000|10000|||100.00|80.10|0.00|0.00|71234|83502|10000|10000|||101.51|100.78|0.00|-2.95|000110E8|0|1| +37|2023-10-06T22:02:55.6170000-07:00|40021585|Zeromus|000110E4|7822351||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:55.1670000-07:00|Change|40021999||||||||| +261|2023-10-06T22:02:55.1670000-07:00|Change|10FF0004||||||||| +20|2023-10-06T22:02:55.6620000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|111.60|104.28|0.00|-2.24| +04|2023-10-06T22:02:55.2680000-07:00|4002199B|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||95.66|109.03|0.00|0.31| +261|2023-10-06T22:02:55.2680000-07:00|Remove|4002199B| +21|2023-10-06T22:02:55.7070000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|3F490000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|7822351|40478540|10000|10000|||100.00|80.10|0.00|0.00|60356|73814|5450|10000|||109.92|97.93|0.00|-1.43|000110E9|0|1| +38|2023-10-06T22:02:55.7070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|3||100.57|99.46|0.00|-2.48|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:55.7070000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:02:55.7070000-07:00|10FF0003|Gegehi Gehi|005A5A23|60356|73814|5150|10000|0||109.92|97.93|0.00|-1.43|0|0|0|||||||||||||||| +30|2023-10-06T22:02:55.7070000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +24|2023-10-06T22:02:55.7510000-07:00|10FF000B|Pusu Rosu|HoT|4C3|1CD3|62170|79209|9000|10000|||90.93|106.46|0.00|1.89|10FF000B|Pusu Rosu|0|62170|79209|9000|10000|||90.93|106.46|0.00|1.89| +37|2023-10-06T22:02:55.7510000-07:00|10FF000B|Pusu Rosu|000110E1|78036|79209|9000|10000|0||90.93|106.46|0.00|1.89|1800|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:02:55.7510000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T22:02:55.7960000-07:00|10FF0001|Sesuga Sapisuga|124856|129071|6700|10000|||99.54|98.56|0.00|-1.72| +24|2023-10-06T22:02:55.8850000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|29F1|78905|90216|10000|10000|||100.14|100.11|0.00|-2.98|10FF000B|Pusu Rosu|1|78036|79209|9000|10000|||91.57|106.13|0.00|2.02| +37|2023-10-06T22:02:55.8850000-07:00|10FF0008|Kokosaze Lulusaze|000110E1|90216|90216|10000|10000|0||100.14|100.11|0.00|-2.98|1F01|0|0|01|02000096|0|41700000|| +26|2023-10-06T22:02:55.8850000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:02:55.9750000-07:00|10FF0006|Wowobora Gogobora|000110E2|81809|81809|8800|10000|3||100.57|99.48|0.00|-0.99|1B00|0|0|01|01000A90|4B|41F00000|| +26|2023-10-06T22:02:55.9750000-07:00|A90|Rekindle|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|4B|81809|81809| +21|2023-10-06T22:02:55.9750000-07:00|40021999|Seraph|40A4|Seraphic Veil|10FF0008|Kokosaze Lulusaze|4|17010000|10E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.11|0.00|-2.98|73956|77430|10000|10000|||104.81|99.56|0.00|0.47|000110EA|0|1| +22|2023-10-06T22:02:55.9760000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0007|Kehabiqo Febiqo|F1730006|13830000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|128579|129844|10000|10000|||96.91|96.25|0.00|1.48|44|44|0|10000|||100.00|80.10|0.00|0.00|000110EB|0|8| +22|2023-10-06T22:02:55.9760000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0001|Sesuga Sapisuga|730003|183A0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|124856|129071|6700|10000|||99.53|98.64|0.00|-1.80|44|44|0|10000|||100.00|80.10|0.00|0.00|000110EB|1|8| +22|2023-10-06T22:02:55.9760000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0003|Gegehi Gehi|730003|26440000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|60356|73814|5150|10000|||108.31|98.03|0.00|-2.68|44|44|0|10000|||100.00|80.10|0.00|0.00|000110EB|2|8| +22|2023-10-06T22:02:55.9760000-07:00|400215A1|Zeromus|8B6F|Bury|10FF000A|Dukaro Nezikaro|730003|21460000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|71234|83502|10000|10000|||99.46|100.11|0.00|-3.04|44|44|0|10000|||100.00|80.10|0.00|0.00|000110EB|3|8| +22|2023-10-06T22:02:55.9760000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0008|Kokosaze Lulusaze|730003|CAE0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.11|0.00|-2.98|44|44|0|10000|||100.00|80.10|0.00|0.00|000110EB|4|8| +22|2023-10-06T22:02:55.9760000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0006|Wowobora Gogobora|730003|1C520000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8800|10000|||100.57|99.48|0.00|-0.99|44|44|0|10000|||100.00|80.10|0.00|0.00|000110EB|5|8| +22|2023-10-06T22:02:55.9760000-07:00|400215A1|Zeromus|8B6F|Bury|10FF000B|Pusu Rosu|F1730006|22740000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|78036|79209|9000|10000|||92.20|105.80|0.00|2.15|44|44|0|10000|||100.00|80.10|0.00|0.00|000110EB|6|8| +22|2023-10-06T22:02:55.9760000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0004|Buhojaqe Zijaqe|730003|24A60000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|67109|81541|2150|10000|||111.05|104.17|0.00|-2.52|44|44|0|10000|||100.00|80.10|0.00|0.00|000110EB|7|8| +38|2023-10-06T22:02:55.9760000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|6||100.14|100.11|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:55.9760000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +261|2023-10-06T22:02:55.5440000-07:00|Change|400215A1||||||||||||| +24|2023-10-06T22:02:56.0200000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|1BA1|81809|81809|8800|10000|||100.61|99.96|0.00|-0.57|10FF000B|Pusu Rosu|0|78036|79209|9000|10000|||92.76|105.32|0.00|2.22| +37|2023-10-06T22:02:56.0200000-07:00|10FF0006|Wowobora Gogobora|000110E1|81809|81809|8800|10000|3||100.61|99.96|0.00|-0.57|1B02|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:02:56.0200000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +24|2023-10-06T22:02:56.0650000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2773|90216|90216|10000|10000|||100.14|100.11|0.00|-2.98|40021999|Seraph|0|73956|77430|10000|10000|||104.86|99.57|0.00|-0.02| +24|2023-10-06T22:02:56.0650000-07:00|10FF0003|Gegehi Gehi|HoT|798|15C4|60356|73814|5150|10000|||108.33|97.98|0.00|-2.68|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +24|2023-10-06T22:02:56.0650000-07:00|10FF0006|Wowobora Gogobora|HoT|798|F04|81809|81809|8800|10000|||100.61|99.96|0.00|-0.57|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +24|2023-10-06T22:02:56.0650000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|E39|90216|90216|10000|10000|||100.14|100.11|0.00|-2.98|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +24|2023-10-06T22:02:56.0650000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D77|124856|129071|6700|10000|||99.53|98.64|0.00|-1.80|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +24|2023-10-06T22:02:56.0650000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|E86|128579|129844|10000|10000|||97.64|96.52|0.00|1.69|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +24|2023-10-06T22:02:56.0650000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|17DB|71234|83502|10000|10000|||98.86|100.00|0.00|2.85|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +24|2023-10-06T22:02:56.0650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|14F3|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +24|2023-10-06T22:02:56.0650000-07:00|10FF000B|Pusu Rosu|HoT|798|EDC|78036|79209|9000|10000|||92.76|105.32|0.00|2.22|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +24|2023-10-06T22:02:56.0650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A50|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64|10FF0004|Buhojaqe Zijaqe|0|67109|81541|2150|10000|||110.96|104.17|-0.01|-2.64| +38|2023-10-06T22:02:56.0650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||97.64|96.52|0.00|1.69|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:56.0650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:02:56.0650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|6||100.14|100.11|0.00|-2.98|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.0650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:56.0650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|3||100.61|99.96|0.00|-0.57|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.0650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:56.0650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128303|129071|6700|10000|0||99.53|98.64|0.00|-1.80|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:56.0650000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:02:56.0650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|75112|81541|2150|10000|0||110.96|104.17|-0.01|-2.64|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.0650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:56.0650000-07:00|10FF0003|Gegehi Gehi|005A5A23|65928|73814|5150|10000|0||108.33|97.98|0.00|-2.68|0|0|0|||||||||||||||| +26|2023-10-06T22:02:56.0650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:02:56.0650000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9000|10000|0||92.76|105.32|0.00|2.22|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.0650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:56.0650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77341|83502|10000|10000|0||98.86|100.00|0.00|2.85|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.0650000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:02:56.1090000-07:00|40021585|Zeromus|000110E8|7819838||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:02:55.6460000-07:00|Remove|4002199A| +37|2023-10-06T22:02:56.1530000-07:00|10FF0007|Kehabiqo Febiqo|000110EB|124849||||||98.55|96.98|0.00|2.16| +24|2023-10-06T22:02:56.1530000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1889|77341|83502|10000|10000|||98.01|99.85|-0.01|2.30|10FF000B|Pusu Rosu|0|79209|79209|9000|10000|||93.78|104.41|0.00|2.33| +37|2023-10-06T22:02:56.1530000-07:00|10FF000A|Dukaro Nezikaro|000110E1|83502|83502|10000|10000|0||98.01|99.85|-0.01|2.30|1E03|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:02:56.1530000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +24|2023-10-06T22:02:56.1530000-07:00|10FF0006|Wowobora Gogobora|HoT|0|38D0|81809|81809|8800|10000|||100.58|100.73|0.00|-0.16|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||100.14|100.11|0.00|-2.98| +38|2023-10-06T22:02:56.1530000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8800|10000|3||100.58|100.73|0.00|-0.16|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:02:56.1970000-07:00|10FF0001|Sesuga Sapisuga|000110EB|122101||||||99.53|98.64|0.00|-1.80| +39|2023-10-06T22:02:56.1970000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9000|10000|||100.58|100.73|0.00|-0.16| +21|2023-10-06T22:02:56.1970000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|28910000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||98.55|96.98|0.00|2.16|7819838|40478540|10000|10000|||100.00|80.10|0.00|0.00|000110EC|0|1| +261|2023-10-06T22:02:55.7740000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:56.2420000-07:00|10FF0003|Gegehi Gehi|000110EB|56132||||||108.68|97.81|0.00|-2.68| +21|2023-10-06T22:02:56.2420000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12EB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7819838|40478540|10000|10000|||100.00|80.10|0.00|0.00|124849|129844|10000|10000|||98.88|97.22|0.00|2.44|000110ED|0|1| +37|2023-10-06T22:02:56.2870000-07:00|10FF000A|Dukaro Nezikaro|000110EB|74984||||||97.98|99.84|0.00|2.27| +24|2023-10-06T22:02:56.2870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1BE4|124849|129844|10000|10000|||98.88|97.22|0.00|2.44|10FF000B|Pusu Rosu|0|79209|79209|9000|10000|||94.21|104.02|-0.01|2.38| +37|2023-10-06T22:02:56.2870000-07:00|10FF0007|Kehabiqo Febiqo|000110E1|129844|129844|10000|10000|0||98.88|97.22|0.00|2.44|1504|0|0|01|08000096|0|41700000|| +26|2023-10-06T22:02:56.2870000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T22:02:56.3320000-07:00|10FF0008|Kokosaze Lulusaze|000110EB|86970|90216|10000|10000|0||100.14|100.11|0.00|-2.98|1F04|0|0|01|09000000|0|0|| +37|2023-10-06T22:02:56.3320000-07:00|40021585|Zeromus|000110E5|7806480||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:56.3320000-07:00|10FF0001|Sesuga Sapisuga|000110E5|122101|129071|7100|10000|0||99.53|98.64|0.00|-1.80|1300|0|0|0| +39|2023-10-06T22:02:56.3320000-07:00|10FF000A|Dukaro Nezikaro|75819|83502|10000|10000|||97.98|99.84|0.00|2.27| +38|2023-10-06T22:02:56.3320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|86970|90216|10000|10000|0||100.14|100.11|0.00|-2.98|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:56.3320000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +261|2023-10-06T22:02:55.8940000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:56.0040000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:02:56.3760000-07:00|10FF0006|Wowobora Gogobora|000110EB|74559|81809|9000|10000|0||100.45|100.95|0.00|0.20|1B05|0|0|01|05000000|0|0|| +39|2023-10-06T22:02:56.3760000-07:00|10FF000B|Pusu Rosu|79209|79209|9281|10000|||94.83|104.11|0.00|2.17| +24|2023-10-06T22:02:56.3760000-07:00|10FF0003|Gegehi Gehi|HoT|0|10D7|56132|73814|5150|10000|||107.81|97.98|0.00|-2.35|10FF0004|Buhojaqe Zijaqe|0|75112|81541|2150|10000|||110.89|104.17|0.00|-2.72| +38|2023-10-06T22:02:56.3760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|74559|81809|9000|10000|0||100.45|100.95|0.00|0.20|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:56.3760000-07:00|A8E|Radiant Aegis|0.00|4002199B|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T22:02:56.3760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122101|129071|7100|10000|0||99.53|98.64|0.00|-1.80|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:56.3760000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T22:02:56.3760000-07:00|10FF0003|Gegehi Gehi|005A5A23|60443|73814|5150|10000|0||107.81|97.98|0.00|-2.35|0|0|0|||||||||||||||| +37|2023-10-06T22:02:56.4200000-07:00|10FF000B|Pusu Rosu|000110EB|70389||||||94.83|104.11|0.00|2.17| +37|2023-10-06T22:02:56.4200000-07:00|40021585|Zeromus|000110E7|7800532||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:56.4200000-07:00|10FF0001|Sesuga Sapisuga|000110E1|129071|129071|7100|10000|0||99.53|98.64|0.00|-1.80|1305|0|0|01|04000096|0|41700000|| +26|2023-10-06T22:02:56.4200000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T22:02:56.4200000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2050|75819|83502|10000|10000|||97.98|99.84|0.00|2.27|10FF000B|Pusu Rosu|0|79209|79209|9000|10000|||94.83|104.11|0.00|2.17| +38|2023-10-06T22:02:56.4200000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||97.98|99.84|0.00|2.27|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:02:56.1180000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:02:56.4650000-07:00|10FF0004|Buhojaqe Zijaqe|000110EB|65730||||||110.89|104.17|0.00|-2.72| +37|2023-10-06T22:02:56.4650000-07:00|40021585|Zeromus|000110E9|7784331||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:56.4650000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.19|97.39|0.00|3.08| +24|2023-10-06T22:02:56.4650000-07:00|10FF000B|Pusu Rosu|HoT|777|152C|70389|79209|9281|10000|||95.47|104.20|0.00|1.96|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +24|2023-10-06T22:02:56.4650000-07:00|10FF0006|Wowobora Gogobora|HoT|777|D73|74559|81809|9000|10000|||100.40|101.05|0.00|0.35|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +24|2023-10-06T22:02:56.4650000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|DED|83502|83502|10000|10000|||97.98|99.84|0.00|2.27|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +24|2023-10-06T22:02:56.4650000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|E02|86970|90216|10000|10000|||100.14|100.11|0.00|-3.02|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +24|2023-10-06T22:02:56.4650000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|1518|129071|129071|7100|10000|||99.53|98.64|0.00|-1.80|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +24|2023-10-06T22:02:56.4650000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|E28|129844|129844|10000|10000|||99.19|97.39|0.00|3.08|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +24|2023-10-06T22:02:56.4650000-07:00|10FF0003|Gegehi Gehi|HoT|777|E28|60443|73814|5150|10000|||106.92|98.16|0.00|-2.01|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +24|2023-10-06T22:02:56.4650000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|DCC|75112|81541|2150|10000|||110.89|104.17|0.00|-2.72|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +24|2023-10-06T22:02:56.4650000-07:00|10FF000B|Pusu Rosu|HoT|0|3207|70389|79209|9281|10000|||95.47|104.20|0.00|1.96|10FF0004|Buhojaqe Zijaqe|0|75112|81541|2150|10000|||110.89|104.17|0.00|-2.72| +21|2023-10-06T22:02:56.4650000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|722003|1C820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7800532|40478540|10000|10000|||100.00|80.10|0.00|0.00|60443|73814|5150|10000|||106.92|98.16|0.00|-2.01|000110EE|0|1| +38|2023-10-06T22:02:56.4650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.19|97.39|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.4650000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:02:56.4650000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.14|100.11|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.4650000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:02:56.4650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|78002|81809|9000|10000|0||100.40|101.05|0.00|0.35|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.4650000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:02:56.4650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|0||99.53|98.64|0.00|-1.80|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:02:56.4650000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:02:56.4650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|69262|81541|2150|10000|0||110.89|104.17|0.00|-2.72|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.4650000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:02:56.4650000-07:00|10FF0003|Gegehi Gehi|005A5A23|64067|73814|5150|10000|0||106.92|98.16|0.00|-2.01|0|0|0||||||||||||||||||| +26|2023-10-06T22:02:56.4650000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:02:56.4650000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9831|10000|0||95.47|104.20|0.00|1.96|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.4650000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:02:56.4650000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||97.98|99.84|0.00|2.27|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.4650000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T22:02:56.5090000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|166F0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|7800532|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.19|97.39|0.00|3.08|000110EF|0|1| +21|2023-10-06T22:02:56.5090000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|61A30000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|7800532|40478540|10000|10000|||100.00|80.10|0.00|0.00|86970|90216|10000|10000|||100.14|100.11|0.00|-3.02|000110F0|0|1| +24|2023-10-06T22:02:56.5540000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|26BE|129844|129844|10000|10000|||99.19|97.39|0.00|3.08|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +38|2023-10-06T22:02:56.5540000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.19|97.39|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:02:56.5980000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30B70000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7800532|40478540|10000|10000|||100.00|80.10|0.00|0.00|75112|81541|2150|10000|||110.89|104.17|0.00|-2.72|000110F1|0|1| +24|2023-10-06T22:02:56.6430000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|2E6E|129071|129071|7100|10000|||99.53|98.64|0.00|-1.80|10FF000B|Pusu Rosu|0|70389|79209|9281|10000|||95.47|104.20|0.00|1.96| +21|2023-10-06T22:02:56.6430000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||97.98|99.84|0.00|2.27|83502|83502|10000|10000|||97.98|99.84|0.00|2.27|000110F2|0|1| +38|2023-10-06T22:02:56.6430000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|0||99.53|98.64|0.00|-1.80|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:02:56.6430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||97.98|99.84|0.00|2.27|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:56.6430000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:02:56.2090000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:02:56.6860000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7784331|40478540|10000|10000|||100.00|80.10|0.00|0.00|64067|73814|5150|10000|||106.27|98.18|0.00|-2.90|000110F3|0|1| +37|2023-10-06T22:02:56.7770000-07:00|40021585|Zeromus|000110ED|7779488||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:56.7770000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|152003|8E840000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7784331|40478540|10000|10000|||100.00|80.10|0.00|0.00|78002|81809|9000|10000|||100.39|101.06|0.00|0.37|000110F4|0|1| +21|2023-10-06T22:02:56.9540000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7779488|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|000110F5|0|1| +37|2023-10-06T22:02:56.9990000-07:00|10FF0007|Kehabiqo Febiqo|000110EC|119459||||||99.40|96.22|0.00|3.13| +22|2023-10-06T22:02:56.9990000-07:00|400215A0|Zeromus|8B70|Bury|10FF0007|Kehabiqo Febiqo|730003|15A90000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.40|96.22|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000110F6|0|8| +22|2023-10-06T22:02:56.9990000-07:00|400215A0|Zeromus|8B70|Bury|10FF0001|Sesuga Sapisuga|730003|15DE0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7100|10000|||99.53|98.64|0.00|-1.80|44|44|0|10000|||100.00|80.10|0.00|0.00|000110F6|1|8| +22|2023-10-06T22:02:56.9990000-07:00|400215A0|Zeromus|8B70|Bury|10FF0003|Gegehi Gehi|F1730006|20BD0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|64067|73814|5150|10000|||104.53|98.25|0.00|-2.90|44|44|0|10000|||100.00|80.10|0.00|0.00|000110F6|2|8| +22|2023-10-06T22:02:56.9990000-07:00|400215A0|Zeromus|8B70|Bury|10FF000A|Dukaro Nezikaro|730003|21420000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||97.98|99.84|0.00|2.27|44|44|0|10000|||100.00|80.10|0.00|0.00|000110F6|3|8| +22|2023-10-06T22:02:56.9990000-07:00|400215A0|Zeromus|8B70|Bury|10FF0008|Kokosaze Lulusaze|730003|225C0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000110F6|4|8| +22|2023-10-06T22:02:56.9990000-07:00|400215A0|Zeromus|8B70|Bury|10FF0006|Wowobora Gogobora|730003|230C0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|78002|81809|8700|10000|||100.39|101.06|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|000110F6|5|8| +22|2023-10-06T22:02:56.9990000-07:00|400215A0|Zeromus|8B70|Bury|10FF000B|Pusu Rosu|730003|26BC0000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9831|10000|||98.03|103.93|0.00|1.78|44|44|0|10000|||100.00|80.10|0.00|0.00|000110F6|6|8| +22|2023-10-06T22:02:56.9990000-07:00|400215A0|Zeromus|8B70|Bury|10FF0004|Buhojaqe Zijaqe|730003|25880000|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|69262|81541|1750|10000|||110.86|104.17|0.00|-2.33|44|44|0|10000|||100.00|80.10|0.00|0.00|000110F6|7|8| +261|2023-10-06T22:02:56.4970000-07:00|Change|400215A0||||||||||||| +37|2023-10-06T22:02:57.0430000-07:00|40021585|Zeromus|000110EF|7773745||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:57.0430000-07:00|40021585|Zeromus|000110EE|7766447||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:57.1320000-07:00|10FF0004|Buhojaqe Zijaqe|70077|81541|1950|10000|||110.86|104.17|0.00|-2.13| +37|2023-10-06T22:02:57.1780000-07:00|10FF0007|Kehabiqo Febiqo|000110F6|113914||||||99.84|95.86|0.00|3.13| +38|2023-10-06T22:02:57.1780000-07:00|40021999|Seraph|005A5A00|73956|77430|10000|10000|0||105.00|99.60|0.00|-1.47|0|0|0||||||| +26|2023-10-06T22:02:57.1780000-07:00|7AD|Summon Order III|30.00|40021999|Seraph|40021999|Seraph|01|77430|77430| +21|2023-10-06T22:02:57.1780000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70077|81541|1950|10000|||110.16|103.97|0.00|-2.07|70077|81541|1950|10000|||110.16|103.97|0.00|-2.07|000110F7|0|1| +21|2023-10-06T22:02:57.1780000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||97.98|99.84|0.00|2.27|83502|83502|10000|10000|||97.98|99.84|0.00|2.27|000110F8|0|1| +38|2023-10-06T22:02:57.1780000-07:00|40021585|Zeromus|005A5A00|7766447|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:02:57.1780000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +38|2023-10-06T22:02:57.1780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||97.98|99.84|0.00|2.27|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.1780000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +37|2023-10-06T22:02:57.2220000-07:00|10FF0001|Sesuga Sapisuga|000110F6|123473||||||99.53|98.64|0.00|-1.80| +37|2023-10-06T22:02:57.2220000-07:00|40021585|Zeromus|000110F3|7766446||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:57.2220000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7766447|40478540|10000|10000|||100.00|80.10|0.00|0.00|78002|81809|8700|10000|||100.39|101.06|0.00|-3.12|000110F9|0|1| +261|2023-10-06T22:02:56.8240000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:02:57.2680000-07:00|10FF0003|Gegehi Gehi|000110F6|55686||||||104.39|98.25|0.00|-2.90| +22|2023-10-06T22:02:57.2680000-07:00|40021999|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|200004|33B90000|B90E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|64067|73814|5150|10000|||104.39|98.25|0.00|-2.90|73956|77430|10000|10000|||105.00|99.60|0.00|-1.47|000110FA|0|8| +22|2023-10-06T22:02:57.2680000-07:00|40021999|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|203F0000|3F0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|78002|81809|8700|10000|||100.39|101.06|0.00|-3.12|73956|77430|10000|10000|||105.00|99.60|0.00|-1.47|000110FA|1|8| +22|2023-10-06T22:02:57.2680000-07:00|40021999|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|4|208C0000|8C0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|73956|77430|10000|10000|||105.00|99.60|0.00|-1.47|000110FA|2|8| +22|2023-10-06T22:02:57.2680000-07:00|40021999|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|20140000|140E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|129071|129071|7100|10000|||99.53|98.64|0.00|-1.80|73956|77430|10000|10000|||105.00|99.60|0.00|-1.47|000110FA|3|8| +22|2023-10-06T22:02:57.2680000-07:00|40021999|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|1EEA0000|EA0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|119459|129844|10000|10000|||99.84|95.86|0.00|3.13|73956|77430|10000|10000|||105.00|99.60|0.00|-1.47|000110FA|4|8| +22|2023-10-06T22:02:57.2680000-07:00|40021999|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1FE50000|E50E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|70077|81541|1950|10000|||110.16|103.97|0.00|-2.07|73956|77430|10000|10000|||105.00|99.60|0.00|-1.47|000110FA|5|8| +22|2023-10-06T22:02:57.2680000-07:00|40021999|Seraph|40A3|Consolation|10FF000B|Pusu Rosu|4|20490000|490E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|79209|79209|9831|10000|||99.00|102.74|0.00|2.10|73956|77430|10000|10000|||105.00|99.60|0.00|-1.47|000110FA|6|8| +22|2023-10-06T22:02:57.2680000-07:00|40021999|Seraph|40A3|Consolation|10FF000A|Dukaro Nezikaro|4|1F240000|240E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||97.98|99.84|0.00|2.27|73956|77430|10000|10000|||105.00|99.60|0.00|-1.47|000110FA|7|8| +38|2023-10-06T22:02:57.2680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113914|129844|10000|10000|6||99.84|95.86|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.2680000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T22:02:57.2680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|9||100.14|100.11|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.2680000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T22:02:57.2680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|78002|81809|8700|10000|10||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.2680000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T22:02:57.2680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123473|129071|7100|10000|6||99.53|98.64|0.00|-1.80|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.2680000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T22:02:57.2680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|70077|81541|1950|10000|10||110.16|103.97|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.2680000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T22:02:57.2680000-07:00|10FF0003|Gegehi Gehi|005A5A23|55686|73814|5150|10000|17||104.39|98.25|0.00|-2.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:57.2680000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T22:02:57.2680000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9831|10000|10||99.00|102.74|0.00|2.10|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.2680000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF000B|Pusu Rosu|00|79209|77430| +38|2023-10-06T22:02:57.2680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||97.98|99.84|0.00|2.27|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.2680000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T22:02:57.3100000-07:00|40021585|Zeromus|000110F0|7741451||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:57.3100000-07:00|10FF000A|Dukaro Nezikaro|000110F6|74988||||||97.98|99.84|0.00|2.27| +21|2023-10-06T22:02:57.3110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7766447|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||99.53|98.64|0.00|-1.80|000110FB|0|1| +31|2023-10-06T22:02:57.3110000-07:00|10FF0001||||| +37|2023-10-06T22:02:57.3560000-07:00|10FF0008|Kokosaze Lulusaze|000110F6|81420||||||100.14|100.11|0.00|-3.13| +37|2023-10-06T22:02:57.4000000-07:00|10FF0006|Wowobora Gogobora|000110F6|69030||||||100.39|101.06|0.00|-3.12| +37|2023-10-06T22:02:57.4000000-07:00|40021585|Zeromus|000110F1|7728980||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:02:57.4000000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.26|102.34|0.00|2.26| +261|2023-10-06T22:02:56.9370000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:02:56.9370000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:02:57.4440000-07:00|10FF000B|Pusu Rosu|000110F6|69293||||||99.17|102.21|-0.02|2.46| +38|2023-10-06T22:02:57.4440000-07:00|10FF000B|Pusu Rosu|005A5A18|69293|79209|9831|10000|10||99.17|102.21|-0.02|2.46|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:57.4440000-07:00|777|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T22:02:57.4890000-07:00|10FF0004|Buhojaqe Zijaqe|000110F6|60469||||||109.04|103.66|0.00|-1.91| +39|2023-10-06T22:02:57.4890000-07:00|10FF0003|Gegehi Gehi|56424|73814|5350|10000|||104.39|98.25|0.00|-2.90| +21|2023-10-06T22:02:57.5330000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|43830000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|7728980|40478540|10000|10000|||100.00|80.10|0.00|0.00|123473|129071|7100|10000|||99.53|98.64|0.00|3.12|000110FC|0|1| +38|2023-10-06T22:02:57.5330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123473|129071|7100|10000|6||99.53|98.64|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:57.5330000-07:00|76E|Sword Oath|23.06|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:02:57.1530000-07:00|Change|10FF0003||||||||||| +24|2023-10-06T22:02:57.6670000-07:00|40021585|Zeromus|DoT|0|1D24|7728980|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|113914|129844|10000|10000|||99.99|96.48|0.00|-1.32| +21|2023-10-06T22:02:57.6670000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|552003|7F1F0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|7728980|40478540|10000|10000|||100.00|80.10|0.00|0.00|74988|83502|10000|10000|||97.98|99.84|0.00|2.27|000110FD|0|1| +38|2023-10-06T22:02:57.6670000-07:00|40021585|Zeromus|005A5A00|7721520|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:02:57.6670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74988|83502|10000|10000|9||97.98|99.84|0.00|2.27|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:57.6670000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:02:57.6670000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:02:57.1530000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:02:57.1530000-07:00|Remove|40021994| +37|2023-10-06T22:02:57.7110000-07:00|40021585|Zeromus|000110F5|7718633||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:57.7560000-07:00|40021585|Zeromus|000110F9|7718484||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:57.7560000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|127E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7718633|40478540|10000|10000|||100.00|80.10|0.00|0.00|74988|83502|10000|10000|||97.98|99.84|0.00|3.04|000110FE|0|1| +39|2023-10-06T22:02:57.7990000-07:00|400219A4|Demi-Phoenix|74223|77698|10000|10000|||96.18|111.99|0.00|3.02| +37|2023-10-06T22:02:57.8440000-07:00|40021585|Zeromus|000110F4|7682000||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:57.8440000-07:00|40021585|Zeromus|000110FB|7680303||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:58.0210000-07:00|400219A4|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|152003|1E850000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|7680303|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||96.18|111.99|0.00|3.02|000110FF|0|1| +37|2023-10-06T22:02:58.1550000-07:00|10FF0003|Gegehi Gehi|000110FA|69665|73814|5350|10000|17||104.39|98.25|0.00|-2.90|2300|0|0|01|0600077D|0|41E8E55D|| +39|2023-10-06T22:02:58.1550000-07:00|10FF0008|Kokosaze Lulusaze|82322|90216|10000|10000|||100.14|100.11|0.00|-3.13| +39|2023-10-06T22:02:58.1990000-07:00|40021999|Seraph|73956|77430|10000|10000|||105.00|99.60|0.00|-2.22| +37|2023-10-06T22:02:58.2880000-07:00|10FF0006|Wowobora Gogobora|000110FA|77285|81809|8700|10000|10||100.39|101.06|0.00|-3.12|1B01|0|0|01|0500077D|0|41E7D4FA|| +37|2023-10-06T22:02:58.2880000-07:00|40021585|Zeromus|000110FE|7675569||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:58.2880000-07:00|10FF000A|Dukaro Nezikaro|000110FE|74988|83502|10000|10000|9||98.32|99.89|0.00|2.99|1E00|0|0|01|09000A82|01|C1F00000|| +20|2023-10-06T22:02:58.3330000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|105.25|102.31|0.00|-1.93| +37|2023-10-06T22:02:58.3780000-07:00|40021585|Zeromus|000110FD|7643026||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:58.3780000-07:00|10FF000A|Dukaro Nezikaro|000110FD|74988|83502|10000|10000|9||98.56|99.92|0.00|3.06|1E00|0|0|01|09000A82|01|41F00000|| +21|2023-10-06T22:02:58.3780000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31A00000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|7675569|40478540|10000|10000|||100.00|80.10|0.00|0.00|69293|79209|9831|10000|||98.89|101.79|0.00|3.09|00011100|0|1| +38|2023-10-06T22:02:58.3780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74988|83502|10000|10000|9||98.56|99.92|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:02:58.4220000-07:00|10FF0008|Kokosaze Lulusaze|000110FA|90216|90216|10000|10000|9||100.14|100.11|0.00|-3.13|1F02|0|0|01|0900077D|0|41E6C28B|| +261|2023-10-06T22:02:57.9850000-07:00|Change|10FF000B||||||||||||||||||||| +22|2023-10-06T22:02:58.4660000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|12800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7675569|40478540|10000|10000|||100.00|80.10|0.00|0.00|74988|83502|10000|10000|||98.56|99.92|0.00|3.06|00011101|0|3| +22|2023-10-06T22:02:58.4660000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|712003|1DEC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7675569|40478540|10000|10000|||100.00|80.10|0.00|0.00|74988|83502|10000|10000|||98.56|99.92|0.00|3.06|00011101|1|3| +22|2023-10-06T22:02:58.4660000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|714003|17170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7675569|40478540|10000|10000|||100.00|80.10|0.00|0.00|74988|83502|10000|10000|||98.56|99.92|0.00|3.06|00011101|2|3| +261|2023-10-06T22:02:58.0990000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:02:58.5560000-07:00|10FF0001|Sesuga Sapisuga|000110FA|129071|129071|7100|10000|6||99.53|98.64|0.00|3.12|1303|0|0|01|0800077D|0|41E5B01C|| +37|2023-10-06T22:02:58.6900000-07:00|10FF0007|Kehabiqo Febiqo|000110FA|121828|129844|10000|10000|6||99.99|96.91|0.00|0.01|1504|0|0|01|0900077D|0|41E49DAD|| +37|2023-10-06T22:02:58.8230000-07:00|40021585|Zeromus|000110FC|7625743||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:58.8230000-07:00|10FF0001|Sesuga Sapisuga|000110FC|129071|129071|7500|10000|6||99.53|98.64|0.00|3.12|1300|0|0|0| +37|2023-10-06T22:02:58.8230000-07:00|10FF0004|Buhojaqe Zijaqe|000110FA|68634|81541|1950|10000|10||103.94|101.47|-0.01|-2.84|1C05|0|0|01|0900077D|0|41E38D4A|| +39|2023-10-06T22:02:58.8230000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7700|10000|||99.53|98.64|0.00|3.12| +261|2023-10-06T22:02:58.3850000-07:00|Change|10FF0001||| +37|2023-10-06T22:02:58.9580000-07:00|10FF000B|Pusu Rosu|000110FA|77558|79209|9431|10000|10||98.89|101.79|0.00|3.09|1806|0|0|01|0B00077D|0|41E278CF|| +21|2023-10-06T22:02:58.9580000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32714003|27AC0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|7625743|40478540|10000|10000|||100.00|80.10|0.00|0.00|121828|129844|10000|10000|||99.99|96.91|0.00|0.01|00011102|0|1| +20|2023-10-06T22:02:58.9580000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|104.39|98.25|0.00|-2.90| +261|2023-10-06T22:02:58.4750000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T22:02:59.0020000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1EE60000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|7625743|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|00011103|0|1| +22|2023-10-06T22:02:59.0020000-07:00|4002159F|Zeromus|8B71|Roar|10FF0007|Kehabiqo Febiqo|750003|14BA0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|121828|129844|10000|10000|||99.99|96.91|0.00|0.01|44|44|0|10000|||100.00|80.10|0.00|0.00|00011104|0|8| +22|2023-10-06T22:02:59.0020000-07:00|4002159F|Zeromus|8B71|Roar|10FF0001|Sesuga Sapisuga|750003|12080000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7700|10000|||99.53|98.64|0.00|3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|00011104|1|8| +22|2023-10-06T22:02:59.0020000-07:00|4002159F|Zeromus|8B71|Roar|10FF0003|Gegehi Gehi|750003|1A120000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|69665|73814|5350|10000|||104.39|98.25|0.00|-2.90|44|44|0|10000|||100.00|80.10|0.00|0.00|00011104|2|8| +22|2023-10-06T22:02:59.0020000-07:00|4002159F|Zeromus|8B71|Roar|10FF000A|Dukaro Nezikaro|750003|38FA0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|74988|83502|10000|10000|||99.37|99.93|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|00011104|3|8| +22|2023-10-06T22:02:59.0020000-07:00|4002159F|Zeromus|8B71|Roar|10FF0008|Kokosaze Lulusaze|750003|30580000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|00011104|4|8| +22|2023-10-06T22:02:59.0020000-07:00|4002159F|Zeromus|8B71|Roar|10FF0006|Wowobora Gogobora|750003|2E560000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|77285|81809|8700|10000|||100.39|101.06|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|00011104|5|8| +22|2023-10-06T22:02:59.0020000-07:00|4002159F|Zeromus|8B71|Roar|10FF0004|Buhojaqe Zijaqe|750003|30770000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97|44|44|0|10000|||100.00|80.10|0.00|0.00|00011104|6|8| +22|2023-10-06T22:02:59.0020000-07:00|4002159F|Zeromus|8B71|Roar|10FF000B|Pusu Rosu|750003|2EA10000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|69293|79209|9431|10000|||98.89|101.79|0.00|3.09|44|44|0|10000|||100.00|80.10|0.00|0.00|00011104|7|8| +261|2023-10-06T22:02:58.4750000-07:00|Change|4002159F||||||||||||| +37|2023-10-06T22:02:59.0460000-07:00|40021585|Zeromus|000110FF|7617930||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:02:59.0910000-07:00|10FF000A|Dukaro Nezikaro|000110FA|82960|83502|10000|10000|9||99.48|99.94|0.00|-3.14|1E07|0|0|01|0A00077D|0|41E1686C|| +24|2023-10-06T22:02:59.0910000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2CE5|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|40021999|Seraph|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.31| +24|2023-10-06T22:02:59.0920000-07:00|10FF0003|Gegehi Gehi|HoT|798|E92|69665|73814|5350|10000|||104.39|98.25|0.00|-2.90|10FF0004|Buhojaqe Zijaqe|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97| +24|2023-10-06T22:02:59.0920000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|17CB|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97|10FF0004|Buhojaqe Zijaqe|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97| +24|2023-10-06T22:02:59.0920000-07:00|10FF0006|Wowobora Gogobora|HoT|798|E60|77285|81809|8700|10000|||100.39|101.06|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97| +24|2023-10-06T22:02:59.0920000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|EC3|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97| +24|2023-10-06T22:02:59.0920000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|17A4|74988|83502|10000|10000|||99.48|99.94|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97| +24|2023-10-06T22:02:59.0920000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|17DB|129071|129071|7700|10000|||99.53|98.64|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97| +24|2023-10-06T22:02:59.0920000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|182C|121828|129844|10000|10000|||99.99|96.91|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97| +24|2023-10-06T22:02:59.0920000-07:00|10FF000B|Pusu Rosu|HoT|798|E57|77558|79209|9431|10000|||98.89|101.79|0.00|3.09|10FF0004|Buhojaqe Zijaqe|0|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97| +24|2023-10-06T22:02:59.0920000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A8F|68634|81541|1950|10000|||103.78|101.37|0.00|-2.97|40021999|Seraph|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.31| +38|2023-10-06T22:02:59.0920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|128016|129844|10000|10000|6||99.99|96.91|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:59.0920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:02:59.0920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|9||100.14|100.11|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:59.0920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:02:59.0920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|80965|81809|8700|10000|10||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:59.0920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:02:59.0920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|6||99.53|98.64|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:02:59.0920000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:02:59.0920000-07:00|40021999|Seraph|005A5A00|73956|77430|10000|10000|0||105.00|99.60|0.00|-2.31|0|0|0|||| +30|2023-10-06T22:02:59.0920000-07:00|7AD|Summon Order III|0.00|40021999|Seraph|40021999|Seraph|01|77430|77430| +38|2023-10-06T22:02:59.0920000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77428|81541|1950|10000|10||103.78|101.37|0.00|-2.97|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:59.0920000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:02:59.0920000-07:00|10FF0003|Gegehi Gehi|005A5A23|73395|73814|5350|10000|17||104.39|98.25|0.00|-2.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:02:59.0920000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:02:59.0920000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9431|10000|10||98.89|101.79|0.00|3.09|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:59.0920000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:02:59.0920000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||99.48|99.94|0.00|-3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:59.0920000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:02:59.1800000-07:00|10FF0007|Kehabiqo Febiqo|00011104|122710|129844|10000|10000|0||99.99|96.91|0.00|-3.14|1500|0|0|01|09000000|0|0|| +37|2023-10-06T22:02:59.1800000-07:00|40021585|Zeromus|00011101|7613194||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:02:59.1800000-07:00|10FF0006|Wowobora Gogobora|81783|81809|8900|10000|||100.39|101.06|0.00|-3.12| +24|2023-10-06T22:02:59.1800000-07:00|10FF0006|Wowobora Gogobora|HoT|0|26AF|80965|81809|8700|10000|||100.39|101.06|0.00|-3.12|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13| +38|2023-10-06T22:02:59.1800000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122710|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:59.1800000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T22:02:59.1800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8900|10000|10||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:02:58.7080000-07:00|Change|10FF0006||| +261|2023-10-06T22:02:58.7080000-07:00|Change|10FF0006||| +37|2023-10-06T22:02:59.2250000-07:00|10FF0001|Sesuga Sapisuga|00011104|124455|129071|7700|10000|0||99.53|98.64|0.00|3.12|1301|0|0|01|08000000|0|0|| +21|2023-10-06T22:02:59.2250000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2A740000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|128016|129844|10000|10000|||99.99|96.91|0.00|-3.14|7617930|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011105|0|1| +38|2023-10-06T22:02:59.2250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|124455|129071|7700|10000|0||99.53|98.64|0.00|3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:02:59.2250000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T22:02:59.2690000-07:00|10FF0003|Gegehi Gehi|00011104|66721|73814|5350|10000|0||104.39|98.25|0.00|-2.90|2302|0|0|01|06000000|0|0|| +21|2023-10-06T22:02:59.2690000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|156003|AE2E0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7613194|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8900|10000|||100.39|101.06|0.00|-3.12|00011106|0|1| +21|2023-10-06T22:02:59.2690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31AC0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7613194|40478540|10000|10000|||100.00|80.10|0.00|0.00|77428|81541|1950|10000|||103.78|101.37|0.00|-2.97|00011107|0|1| +38|2023-10-06T22:02:59.2690000-07:00|10FF0003|Gegehi Gehi|005A5A23|66721|73814|5350|10000|0||104.39|98.25|0.00|-2.90|0|0|0||||||||||||||||||| +30|2023-10-06T22:02:59.2690000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T22:02:59.3140000-07:00|10FF000A|Dukaro Nezikaro|00011104|68916|83502|10000|10000|0||99.61|99.95|0.00|-3.13|1E03|0|0|01|0A000000|0|0|| +37|2023-10-06T22:02:59.3140000-07:00|40021585|Zeromus|00011101|7605534||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:02:59.3140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|68916|83502|10000|10000|0||99.61|99.95|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:59.3140000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T22:02:59.3570000-07:00|10FF0008|Kokosaze Lulusaze|00011104|77840|90216|10000|10000|0||100.14|100.11|0.00|-3.13|1F04|0|0|01|09000000|0|0|| +39|2023-10-06T22:02:59.3570000-07:00|10FF000B|Pusu Rosu|79209|79209|9712|10000|||98.92|101.79|0.00|2.67| +39|2023-10-06T22:02:59.3570000-07:00|10FF000A|Dukaro Nezikaro|69751|83502|10000|10000|||99.61|99.95|0.00|-3.13| +38|2023-10-06T22:02:59.3570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77840|90216|10000|10000|0||100.14|100.11|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:59.3570000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +37|2023-10-06T22:02:59.4020000-07:00|10FF0006|Wowobora Gogobora|00011104|69947|81809|8600|10000|0||100.39|101.06|0.00|-3.12|1B05|0|0|01|05000000|0|0|| +24|2023-10-06T22:02:59.4020000-07:00|10FF0003|Gegehi Gehi|HoT|0|A9D|66721|73814|5350|10000|||104.39|98.25|0.00|-2.90|10FF000B|Pusu Rosu|0|79209|79209|9712|10000|||98.94|101.79|0.00|2.30| +21|2023-10-06T22:02:59.4020000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|554003|5AB70000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|7605534|40478540|10000|10000|||100.00|80.10|0.00|0.00|69751|83502|10000|10000|||99.67|99.96|-0.01|-3.13|00011108|0|1| +38|2023-10-06T22:02:59.4020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|69947|81809|8600|10000|0||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:59.4020000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T22:02:59.4020000-07:00|10FF0003|Gegehi Gehi|005A5A23|69438|73814|5350|10000|0||104.39|98.25|0.00|-2.90|0|0|0||||||||||||||||||| +38|2023-10-06T22:02:59.4020000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69751|83502|10000|10000|0||99.67|99.96|-0.01|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:59.4020000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +37|2023-10-06T22:02:59.4470000-07:00|10FF0004|Buhojaqe Zijaqe|00011104|65021|81541|1550|10000|0||103.78|101.37|0.00|-2.97|1C06|0|0|01|09000000|0|0|| +37|2023-10-06T22:02:59.4470000-07:00|40021585|Zeromus|00011101|7599623||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:59.4470000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|3005|69751|83502|10000|10000|||99.67|99.96|-0.01|-3.13|10FF000B|Pusu Rosu|0|79209|79209|9712|10000|||98.94|101.79|0.00|2.30| +38|2023-10-06T22:02:59.4470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|65021|81541|1550|10000|0||103.78|101.37|0.00|-2.97|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:02:59.4470000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T22:02:59.4470000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82044|83502|10000|10000|0||99.67|99.96|-0.01|-3.13|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:02:59.0670000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:02:59.4910000-07:00|10FF000B|Pusu Rosu|00011104|67272|79209|9712|10000|0||99.21|101.63|-0.02|2.09|1807|0|0|01|0B000000|0|0|| +39|2023-10-06T22:02:59.4910000-07:00|10FF0007|Kehabiqo Febiqo|124008|129844|10000|10000|||99.99|96.91|0.00|-3.14| +24|2023-10-06T22:02:59.4910000-07:00|10FF000B|Pusu Rosu|HoT|0|2FC1|79209|79209|9712|10000|||99.21|101.63|-0.02|2.09|10FF0004|Buhojaqe Zijaqe|0|65021|81541|1550|10000|||103.78|101.37|0.00|-2.97| +38|2023-10-06T22:02:59.4910000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||99.21|101.63|-0.02|2.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:02:59.4910000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF000B|Pusu Rosu|00|79209|77430| +261|2023-10-06T22:02:59.0670000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:02:59.5810000-07:00|40021585|Zeromus|00011102|7589467||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:59.5810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F31|124008|129844|10000|10000|||99.99|96.91|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||99.85|101.20|0.00|2.16| +21|2023-10-06T22:02:59.5810000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B5C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7599623|40478540|10000|10000|||100.00|80.10|0.00|0.00|124455|129071|7700|10000|||99.53|98.64|0.00|3.12|00011109|0|1| +38|2023-10-06T22:02:59.5810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +31|2023-10-06T22:02:59.5810000-07:00|10FF0001||||| +21|2023-10-06T22:02:59.6250000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BD60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7599623|40478540|10000|10000|||100.00|80.10|0.00|0.00|124008|129844|10000|10000|||99.99|96.91|0.00|-3.14|0001110A|0|1| +21|2023-10-06T22:02:59.6250000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7599623|40478540|10000|10000|||100.00|80.10|0.00|0.00|77840|90216|10000|10000|||100.14|100.11|0.00|-3.13|0001110B|0|1| +37|2023-10-06T22:02:59.6700000-07:00|40021585|Zeromus|00011100|7576763||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:02:59.6700000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1D6D|124455|129071|7700|10000|||99.53|98.64|0.00|3.12|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||100.48|100.78|0.00|2.23| +38|2023-10-06T22:02:59.6700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|0||99.53|98.64|0.00|3.12|0|0|0||||||||||||||||||||||||| +21|2023-10-06T22:02:59.7150000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|F40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7589467|40478540|10000|10000|||100.00|80.10|0.00|0.00|65021|81541|1550|10000|||103.75|101.37|0.00|-2.47|0001110C|0|1| +261|2023-10-06T22:02:59.2690000-07:00|Change|10FF0006||| +37|2023-10-06T22:02:59.7600000-07:00|40021585|Zeromus|00011103|7568853||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:02:59.9390000-07:00|40021999|Seraph|40A4|Seraphic Veil|10FF0004|Buhojaqe Zijaqe|4|171E0000|1E0E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|65021|81541|1550|10000|||103.32|101.17|0.00|-2.01|73956|77430|10000|10000|||105.00|99.60|0.00|-1.89|0001110D|0|1| +21|2023-10-06T22:02:59.9390000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|C3A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7568853|40478540|10000|10000|||100.00|80.10|0.00|0.00|82044|83502|10000|10000|||99.69|99.96|-0.02|3.13|0001110E|0|1| +38|2023-10-06T22:02:59.9390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|65021|81541|1550|10000|7||103.32|101.17|0.00|-2.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:02:59.9390000-07:00|77D|Seraphic Veil|29.96|40021999|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +22|2023-10-06T22:02:59.9820000-07:00|4002159E|Zeromus|8B72|Roar|10FF0007|Kehabiqo Febiqo|750003|328C0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.99|96.91|0.00|-3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001110F|0|8| +22|2023-10-06T22:02:59.9820000-07:00|4002159E|Zeromus|8B72|Roar|10FF0001|Sesuga Sapisuga|750003|32C10000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7700|10000|||99.53|98.64|0.00|3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001110F|1|8| +22|2023-10-06T22:02:59.9820000-07:00|4002159E|Zeromus|8B72|Roar|10FF0003|Gegehi Gehi|750003|50050000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|69438|73814|5350|10000|||104.39|98.25|0.00|-2.90|44|44|0|10000|||100.00|80.10|0.00|0.00|0001110F|2|8| +22|2023-10-06T22:02:59.9820000-07:00|4002159E|Zeromus|8B72|Roar|10FF000A|Dukaro Nezikaro|750003|58E00000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|82044|83502|10000|10000|||99.69|99.96|-0.02|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001110F|3|8| +22|2023-10-06T22:02:59.9820000-07:00|4002159E|Zeromus|8B72|Roar|10FF0008|Kokosaze Lulusaze|750003|53990000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|77840|90216|10000|10000|||100.14|100.11|0.00|-3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001110F|4|8| +22|2023-10-06T22:02:59.9820000-07:00|4002159E|Zeromus|8B72|Roar|10FF000B|Pusu Rosu|750003|4D190000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||100.92|100.37|0.00|2.50|44|44|0|10000|||100.00|80.10|0.00|0.00|0001110F|5|8| +22|2023-10-06T22:02:59.9820000-07:00|4002159E|Zeromus|8B72|Roar|10FF0004|Buhojaqe Zijaqe|750003|38E10000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|65021|81541|1550|10000|||103.32|101.17|0.00|-2.01|44|44|0|10000|||100.00|80.10|0.00|0.00|0001110F|6|8| +22|2023-10-06T22:02:59.9820000-07:00|4002159E|Zeromus|8B72|Roar|10FF0006|Wowobora Gogobora|750003|50C30000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|69947|81809|8600|10000|||100.39|101.06|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|0001110F|7|8| +261|2023-10-06T22:02:59.4560000-07:00|Change|4002159E||||||||||||| +37|2023-10-06T22:03:00.0280000-07:00|10FF0007|Kehabiqo Febiqo|00011105|118976||||||99.99|96.91|0.00|-3.14| +21|2023-10-06T22:03:00.0280000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|28680000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|7568853|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||99.53|98.64|0.00|3.12|00011110|0|1| +38|2023-10-06T22:03:00.0280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|0||99.53|98.64|0.00|3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:00.0280000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +37|2023-10-06T22:03:00.0720000-07:00|40021585|Zeromus|00011107|7556137||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:00.1170000-07:00|40021585|Zeromus|00011109|7553229||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:00.1170000-07:00|10FF0004|Buhojaqe Zijaqe|65836|81541|1750|10000|||101.88|100.51|0.00|-2.01| +37|2023-10-06T22:03:00.1600000-07:00|40021585|Zeromus|0001110A|7550199||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:00.1600000-07:00|10FF0007|Kehabiqo Febiqo|0001110F|106036||||||99.99|96.91|0.00|-3.14| +37|2023-10-06T22:03:00.1600000-07:00|40021585|Zeromus|00011108|7526976||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:00.2050000-07:00|10FF0001|Sesuga Sapisuga|0001110F|116078||||||99.53|98.64|0.00|3.12| +37|2023-10-06T22:03:00.2490000-07:00|10FF0003|Gegehi Gehi|0001110F|48953||||||104.39|98.25|0.00|-2.90| +37|2023-10-06T22:03:00.2490000-07:00|40021585|Zeromus|0001110C|7526732||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:00.2940000-07:00|10FF000A|Dukaro Nezikaro|0001110F|59292||||||99.69|99.96|0.00|3.13| +37|2023-10-06T22:03:00.3390000-07:00|40021585|Zeromus|00011106|7482142||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:00.3390000-07:00|10FF0008|Kokosaze Lulusaze|0001110F|56439||||||100.14|100.11|0.00|-3.13| +37|2023-10-06T22:03:00.3830000-07:00|40021585|Zeromus|0001110B|7479926||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:00.3830000-07:00|10FF000B|Pusu Rosu|0001110F|59472||||||100.79|100.11|0.00|3.10| +21|2023-10-06T22:03:00.3830000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7526976|40478540|10000|10000|||100.00|80.10|0.00|0.00|69947|81809|8600|10000|||100.39|101.06|0.00|-3.12|00011111|0|1| +21|2023-10-06T22:03:00.3830000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|29550000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|7526976|40478540|10000|10000|||100.00|80.10|0.00|0.00|69438|73814|5350|10000|||104.39|98.25|0.00|-2.90|00011112|0|1| +38|2023-10-06T22:03:00.3830000-07:00|10FF0003|Gegehi Gehi|005A5A23|48953|73814|5150|10000|0||104.39|98.25|0.00|-2.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:00.3830000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:02:59.8780000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T22:02:59.9910000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:03:00.4280000-07:00|10FF0004|Buhojaqe Zijaqe|0001110F|51275|81541|1750|10000|0||100.66|99.90|0.00|-2.05|1C06|0|0|01|09000000|0|0|| +38|2023-10-06T22:03:00.4280000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|51275|81541|1750|10000|0||100.66|99.90|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:00.4280000-07:00|77D|Seraphic Veil|0.00|40021999|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T22:03:00.4730000-07:00|10FF0006|Wowobora Gogobora|0001110F|49272|81809|8600|10000|0||100.39|101.06|0.00|-3.12|1B07|0|0|01|01000A90|4B|0|| +37|2023-10-06T22:03:00.4730000-07:00|40021585|Zeromus|0001110E|7476796||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:00.4730000-07:00|10FF0003|Gegehi Gehi|49691|73814|5350|10000|||104.39|98.25|0.00|-2.90| +38|2023-10-06T22:03:00.4730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|49272|81809|8600|10000|0||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:00.4730000-07:00|A90|Rekindle|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|4B|81809|81809| +26|2023-10-06T22:03:00.4730000-07:00|A91|Undying Flame|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:00.1050000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T22:03:00.6060000-07:00|400219A4|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||96.18|111.99|0.00|3.02|0|0|0||||||| +26|2023-10-06T22:03:00.6060000-07:00|30|Well Fed|502.04|10FF0006|Wowobora Gogobora|400219A4|Demi-Phoenix|2964|77698|81809| +26|2023-10-06T22:03:00.6060000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|400219A4|Demi-Phoenix|01|77698|40478540| +21|2023-10-06T22:03:00.6060000-07:00|10FF0006|Wowobora Gogobora|4084|Enkindle Phoenix|40021585|Zeromus|3D|0|1B|40848000|0|0|0|0|0|0|0|0|0|0|0|0|7476796|40478540|10000|10000|||100.00|80.10|0.00|0.00|49272|81809|8600|10000|||100.39|101.06|0.00|-3.12|00011113|0|1| +24|2023-10-06T22:03:00.6510000-07:00|40021585|Zeromus|DoT|0|171F|7476796|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|106036|129844|10000|10000|||99.99|96.91|0.00|-3.14| +38|2023-10-06T22:03:00.6510000-07:00|40021585|Zeromus|005A5A00|7470877|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:03:00.6950000-07:00|400219A4|Demi-Phoenix|4086|Revelation|40021585|Zeromus|150003|A6390000|1B|40868000|0|0|0|0|0|0|0|0|0|0|0|0|7470877|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||96.18|111.99|0.00|3.02|00011114|0|1| +20|2023-10-06T22:03:00.7400000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|100.39|99.52|0.00|-2.44| +22|2023-10-06T22:03:00.7400000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|36A40000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|00011115|0|8| +22|2023-10-06T22:03:00.7400000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|36960000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|56439|90216|10000|10000|||100.14|100.11|0.00|-3.13|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|00011115|1|8| +22|2023-10-06T22:03:00.7400000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|4|351C0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|49272|81809|8600|10000|||100.39|101.06|0.00|-3.12|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|00011115|2|8| +22|2023-10-06T22:03:00.7400000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|367A0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|51275|81541|1750|10000|||100.39|99.52|0.00|-2.44|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|00011115|3|8| +22|2023-10-06T22:03:00.7400000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|200004|516D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|59292|83502|10000|10000|||99.69|99.96|0.00|3.13|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|00011115|4|8| +22|2023-10-06T22:03:00.7400000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|35330000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|116078|129071|7700|10000|||99.53|98.64|0.00|3.12|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|00011115|5|8| +22|2023-10-06T22:03:00.7400000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|379F0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|106036|129844|10000|10000|||99.99|96.91|0.00|-3.14|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|00011115|6|8| +22|2023-10-06T22:03:00.7400000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|36ED0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|49691|73814|5350|10000|||104.39|98.25|0.00|-2.90|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|00011115|7|8| +39|2023-10-06T22:03:00.8290000-07:00|400219A4|Demi-Phoenix|74223|77698|10000|10000|||96.18|111.99|0.00|3.02| +37|2023-10-06T22:03:00.9180000-07:00|40021585|Zeromus|00011111|7470635||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:00.9630000-07:00|10FF0004|Buhojaqe Zijaqe|0001110D|57193||||||100.47|99.25|0.00|-2.97| +37|2023-10-06T22:03:01.1410000-07:00|40021585|Zeromus|00011112|7460054||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:01.1410000-07:00|10FF0008|Kokosaze Lulusaze|57341|90216|10000|10000|||100.14|100.11|0.00|-3.13| +39|2023-10-06T22:03:01.1870000-07:00|40021999|Seraph|73956|77430|10000|10000|||105.00|99.60|0.00|-1.73| +37|2023-10-06T22:03:01.3190000-07:00|40021585|Zeromus|00011110|7449710||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:01.3190000-07:00|10FF0001|Sesuga Sapisuga|00011110|116078|129071|8100|10000|0||99.87|98.31|0.00|-2.98|1300|0|0|0| +24|2023-10-06T22:03:01.3190000-07:00|10FF000B|Pusu Rosu|HoT|4C3|2B5B|59472|79209|10000|10000|||100.79|100.11|0.00|3.10|10FF000B|Pusu Rosu|1|59472|79209|10000|10000|||100.79|100.11|0.00|3.10| +37|2023-10-06T22:03:01.3190000-07:00|10FF000B|Pusu Rosu|00011115|79209||||||100.79|100.11|0.00|3.10| +261|2023-10-06T22:03:00.8270000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:03:01.3640000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|2F0D0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|7449710|40478540|10000|10000|||100.00|80.10|0.00|0.00|49691|73814|5350|10000|||103.18|98.43|0.00|-2.35|00011116|0|1| +38|2023-10-06T22:03:01.3640000-07:00|10FF0003|Gegehi Gehi|005A5A23|49691|73814|5050|10000|0||103.18|98.43|0.00|-2.35|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:01.3640000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:03:01.3640000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:03:00.9370000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:03:01.4090000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F714003|3A510000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|7449710|40478540|10000|10000|||100.00|80.10|0.00|0.00|106036|129844|10000|10000|||99.99|96.91|0.00|-3.14|00011117|0|1| +38|2023-10-06T22:03:01.4090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106036|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:01.4090000-07:00|A75|Surging Tempest|47.16|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +24|2023-10-06T22:03:01.4540000-07:00|10FF0008|Kokosaze Lulusaze|HoT|4C3|1AC1|57341|90216|10000|10000|||100.14|100.11|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||100.79|100.11|0.00|3.10| +37|2023-10-06T22:03:01.4540000-07:00|10FF0008|Kokosaze Lulusaze|00011115|78164||||||100.14|100.11|0.00|-3.13| +38|2023-10-06T22:03:01.4540000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.79|100.11|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:01.4540000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:03:01.4540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59292|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:01.4540000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +21|2023-10-06T22:03:01.4990000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|38A60000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|7449710|40478540|10000|10000|||100.00|80.10|0.00|0.00|57341|90216|10000|10000|||100.14|100.11|0.00|-3.13|00011118|0|1| +38|2023-10-06T22:03:01.4990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106036|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:01.4990000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:03:01.4990000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|78164|90216|10000|10000|0||100.14|100.11|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:01.4990000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:03:01.4990000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|49272|81809|8600|10000|0||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:01.4990000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:03:01.4990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|116078|129071|8100|10000|0||100.40|98.22|0.00|-2.98|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:01.4990000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:03:01.4990000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57193|81541|1750|10000|0||100.51|99.14|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:01.4990000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:03:01.4990000-07:00|10FF0003|Gegehi Gehi|005A5A23|49691|73814|5050|10000|0||102.93|98.45|0.00|-3.01|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:01.4990000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T22:03:01.5430000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|59292|83502|10000|10000|||99.69|99.96|0.00|3.13|59292|83502|10000|10000|||99.69|99.96|0.00|3.13|00011119|0|1| +38|2023-10-06T22:03:01.5430000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|59292|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:01.5430000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +24|2023-10-06T22:03:01.5870000-07:00|10FF0006|Wowobora Gogobora|HoT|4C3|1A7C|49272|81809|8600|10000|||100.39|101.06|0.00|-3.12|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||100.79|100.11|0.00|3.10| +37|2023-10-06T22:03:01.5870000-07:00|10FF0006|Wowobora Gogobora|00011115|69648||||||100.39|101.06|0.00|-3.12| +261|2023-10-06T22:03:01.1450000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:03:01.6320000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7449710|40478540|10000|10000|||100.00|80.10|0.00|0.00|49691|73814|5050|10000|||102.77|98.47|0.00|-3.01|0001111A|0|1| +37|2023-10-06T22:03:01.7200000-07:00|40021585|Zeromus|00011114|7407157||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:01.7200000-07:00|10FF0004|Buhojaqe Zijaqe|00011115|71139||||||100.51|99.14|0.00|3.08| +38|2023-10-06T22:03:01.7210000-07:00|400219A4|Demi-Phoenix|005A5A00|74223|77698|10000|10000|0||96.18|111.99|0.00|3.02|0|0|0|||| +30|2023-10-06T22:03:01.7210000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|400219A4|Demi-Phoenix|01|77698|40478540| +39|2023-10-06T22:03:01.8100000-07:00|10FF0001|Sesuga Sapisuga|117368|129071|8300|10000|||100.40|98.22|0.00|-2.98| +21|2023-10-06T22:03:01.8100000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|150003|5BB00000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7407157|40478540|10000|10000|||100.00|80.10|0.00|0.00|69648|81809|8600|10000|||100.39|101.06|0.00|-3.12|0001111B|0|1| +261|2023-10-06T22:03:01.3360000-07:00|Change|10FF0006||| +24|2023-10-06T22:03:01.8540000-07:00|10FF000A|Dukaro Nezikaro|HoT|4C3|1964|59292|83502|10000|10000|||99.69|99.96|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||100.79|100.11|0.00|3.10| +37|2023-10-06T22:03:01.8540000-07:00|10FF000A|Dukaro Nezikaro|00011115|83502||||||99.69|99.96|0.00|3.13| +21|2023-10-06T22:03:01.8540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6BF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7407157|40478540|10000|10000|||100.00|80.10|0.00|0.00|116078|129071|8100|10000|||100.40|98.22|0.00|-2.98|0001111C|0|1| +31|2023-10-06T22:03:01.8540000-07:00|10FF0001||||| +37|2023-10-06T22:03:01.9880000-07:00|10FF0001|Sesuga Sapisuga|00011115|129071||||||100.40|98.22|0.00|-2.98| +21|2023-10-06T22:03:02.0330000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|0001111D|0|1| +38|2023-10-06T22:03:02.0330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.0330000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +24|2023-10-06T22:03:02.0780000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|286D|78164|90216|10000|10000|||100.14|100.11|0.00|-3.13|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||100.79|100.11|0.00|3.10| +24|2023-10-06T22:03:02.0780000-07:00|10FF0003|Gegehi Gehi|HoT|798|D81|49691|73814|5050|10000|||102.37|98.50|0.00|-3.01|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +24|2023-10-06T22:03:02.0780000-07:00|10FF000B|Pusu Rosu|HoT|798|CF6|79209|79209|10000|10000|||100.79|100.11|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +24|2023-10-06T22:03:02.0780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D2F|71139|81541|1750|10000|||100.51|99.14|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +24|2023-10-06T22:03:02.0780000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CDE|129071|129071|8300|10000|||100.40|98.22|0.00|-2.98|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +24|2023-10-06T22:03:02.0780000-07:00|10FF0006|Wowobora Gogobora|HoT|798|CF5|69648|81809|8300|10000|||100.39|101.06|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +24|2023-10-06T22:03:02.0780000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CE6|78164|90216|10000|10000|||100.14|100.11|0.00|-3.13|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +24|2023-10-06T22:03:02.0780000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D59|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +24|2023-10-06T22:03:02.0780000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|158F|106036|129844|10000|10000|||99.99|96.91|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +24|2023-10-06T22:03:02.0780000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|ADC|71139|81541|1750|10000|||100.51|99.14|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|71139|81541|1750|10000|||100.51|99.14|0.00|3.08| +38|2023-10-06T22:03:02.0780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111555|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:02.0780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.14|100.11|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:02.0780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72965|81809|8300|10000|0||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:02.0780000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|0||100.40|98.22|0.00|-2.98|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:02.0780000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:03:02.0780000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77294|81541|1750|10000|0||100.51|99.14|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:03:02.0780000-07:00|10FF0003|Gegehi Gehi|005A5A23|53148|73814|5050|10000|0||102.37|98.50|0.00|-3.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:02.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:02.0780000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.79|100.11|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:03:02.0780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.0780000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:03:02.1230000-07:00|40021585|Zeromus|00011116|7395112||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:02.1230000-07:00|10FF0003|Gegehi Gehi|00011116|53148|73814|5050|10000|0||102.37|98.50|0.00|-3.01|2300|0|0|01|070004D3|0|41F00000|| +24|2023-10-06T22:03:02.1230000-07:00|10FF0007|Kehabiqo Febiqo|HoT|4C3|1BF9|111555|129844|10000|10000|||99.99|96.91|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||100.79|100.11|0.00|3.10| +37|2023-10-06T22:03:02.1230000-07:00|10FF0007|Kehabiqo Febiqo|00011115|129844||||||99.99|96.91|0.00|-3.14| +22|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|29980000|8C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|0001111E|0|8| +22|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|19CF0000|4B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|8300|10000|||100.40|98.22|0.00|-2.98|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|0001111E|1|8| +22|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|4|19EA0000|760E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||100.79|100.11|0.00|3.10|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|0001111E|2|8| +22|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|4|19320000|500E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|0001111E|3|8| +22|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|200004|2AB50000|540E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|0001111E|4|8| +22|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|200004|2A5B0000|C40E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|72965|81809|8300|10000|||100.39|101.06|0.00|-3.12|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|0001111E|5|8| +22|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|192D0000|480E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|53148|73814|5050|10000|||102.37|98.50|0.00|-3.01|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|0001111E|6|8| +22|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|4|19D50000|540E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|111555|129844|10000|10000|||99.99|96.91|0.00|-3.14|77294|81541|1750|10000|||100.51|99.14|0.00|3.08|0001111E|7|8| +21|2023-10-06T22:03:02.1230000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|10160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7407157|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|0001111F|0|1| +38|2023-10-06T22:03:02.1230000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.1230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:02.1230000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|11||100.14|100.11|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.1230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:02.1230000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|72965|81809|8300|10000|21||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.1230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:02.1230000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|8||100.40|98.22|0.00|-2.98|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:02.1230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:03:02.1230000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77294|81541|750|10000|20||100.51|99.14|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.1230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:03:02.1230000-07:00|10FF0003|Gegehi Gehi|005A5A23|53148|73814|5050|10000|13||102.37|98.50|0.00|-3.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:02.1230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:02.1230000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|13||100.79|100.11|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.1230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:03:02.1230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|20||99.69|99.96|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.1230000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:03:02.1670000-07:00|40021585|Zeromus|0001111A|7395111||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:02.1670000-07:00|10FF0006|Wowobora Gogobora|HoT|0|42CB|72965|81809|8300|10000|||100.39|101.06|0.00|-3.12|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13| +38|2023-10-06T22:03:02.1670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|21||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:02.2100000-07:00|400219AD||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:03:01.7500000-07:00|Change|40021999||||||||| +261|2023-10-06T22:03:01.7500000-07:00|Change|40021999||||||||| +39|2023-10-06T22:03:02.2120000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8500|10000|||100.39|101.06|0.00|-3.12| +38|2023-10-06T22:03:02.2120000-07:00|400219AD||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:03:02.2560000-07:00|10FF0003|Gegehi Gehi|00011115|67209||||||102.37|98.50|0.00|-3.01| +21|2023-10-06T22:03:02.2560000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|15E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.99|96.91|0.00|-3.14|7395111|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011120|0|1| +37|2023-10-06T22:03:02.3000000-07:00|40021585|Zeromus|00011118|7380609||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:02.3000000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8B00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7395111|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.14|100.11|0.00|-3.13|00011121|0|1| +261|2023-10-06T22:03:01.8630000-07:00|Change|10FF0001||| +261|2023-10-06T22:03:01.8630000-07:00|Change|10FF0006||| +39|2023-10-06T22:03:02.3450000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||100.79|100.11|0.00|3.10| +39|2023-10-06T22:03:02.3450000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.69|99.96|0.00|3.13| +37|2023-10-06T22:03:02.3900000-07:00|40021585|Zeromus|0001111C|7378882||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:02.3900000-07:00|10FF0003|Gegehi Gehi|HoT|0|A6A|53148|73814|5050|10000|||102.37|98.50|0.00|-3.01|10FF0003|Gegehi Gehi|0|53148|73814|5050|10000|||102.37|98.50|0.00|-3.01| +38|2023-10-06T22:03:02.3900000-07:00|10FF0003|Gegehi Gehi|005A5A23|69875|73814|5050|10000|13||102.37|98.50|0.00|-3.01|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:03:02.4340000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1FEC|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|77294|81541|750|10000|||100.51|99.14|0.00|3.08| +38|2023-10-06T22:03:02.4350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|21||100.39|101.06|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.4350000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T22:03:02.4350000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|754003|281A0000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|7378882|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||100.39|101.06|0.00|-3.12|00011123|0|1| +38|2023-10-06T22:03:02.4350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|21||100.39|101.06|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:02.4350000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:03:02.4350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|20||99.69|99.96|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T22:03:02.4800000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.99|96.91|0.00|-3.14| +24|2023-10-06T22:03:02.4800000-07:00|10FF000B|Pusu Rosu|HoT|0|2D75|79209|79209|10000|10000|||100.79|100.11|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|77294|81541|750|10000|||100.51|99.14|0.00|3.08| +38|2023-10-06T22:03:02.4800000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|13||100.79|100.11|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:01.9780000-07:00|Add|400219AD||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:03:01.9780000-07:00|400219AD|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||105.00|99.60|0.00|-1.97| +21|2023-10-06T22:03:02.5240000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|712003|1FDB0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|7378882|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8300|10000|||100.40|98.22|0.00|-3.12|00011124|0|1| +21|2023-10-06T22:03:02.5250000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|556003|A4670000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|7378882|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|00011125|0|1| +38|2023-10-06T22:03:02.5250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|20||99.69|99.96|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:02.5250000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:03:02.5250000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:03:02.1020000-07:00|Change|400219AD||| +24|2023-10-06T22:03:02.5690000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1F2E|129844|129844|10000|10000|||99.99|96.91|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||100.79|100.11|0.00|3.10| +38|2023-10-06T22:03:02.5690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:03:02.1020000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:03:02.6580000-07:00|40021585|Zeromus|0001111F|7374764||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:02.6580000-07:00|10FF000A|Dukaro Nezikaro|0001111F|83502|83502|10000|10000|20||99.69|99.96|0.00|3.13|1E00|0|0|01|07000A82|01|C1F00000|| +24|2023-10-06T22:03:02.6580000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1CC2|129071|129071|8300|10000|||100.40|98.22|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|77294|81541|750|10000|||100.51|99.14|0.00|3.08| +38|2023-10-06T22:03:02.6580000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|8||100.40|98.22|0.00|-3.12|0|0|0|||||||||||||||||||||| +21|2023-10-06T22:03:02.7490000-07:00|400219A4|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|150003|12970000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|7374764|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||96.18|111.99|0.00|3.02|00011126|0|1| +37|2023-10-06T22:03:02.8810000-07:00|40021585|Zeromus|0001111B|7351292||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:02.8810000-07:00|10FF0006|Wowobora Gogobora|0001111B|81809|81809|8500|10000|21||100.39|101.06|0.00|-3.12|1B00|0|0|01|0A000A8D|0|C2700000|| +22|2023-10-06T22:03:02.9700000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0007|Kehabiqo Febiqo|750603|5B340000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.99|96.91|0.00|-3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|00011127|0|8| +22|2023-10-06T22:03:02.9700000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0001|Sesuga Sapisuga|EC750605|1D4D0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8300|10000|||100.40|98.22|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|00011127|1|8| +22|2023-10-06T22:03:02.9700000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0003|Gegehi Gehi|750603|60860000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|69875|73814|5050|10000|||102.37|98.50|0.00|-3.01|44|44|0|10000|||100.00|80.10|0.00|0.00|00011127|2|8| +22|2023-10-06T22:03:02.9700000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0004|Buhojaqe Zijaqe|750603|43780000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|77294|81541|750|10000|||100.51|99.14|0.00|3.08|44|44|0|10000|||100.00|80.10|0.00|0.00|00011127|3|8| +22|2023-10-06T22:03:02.9700000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF000A|Dukaro Nezikaro|750603|58AF0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|00011127|4|8| +22|2023-10-06T22:03:02.9700000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0008|Kokosaze Lulusaze|750603|694F0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.32|100.08|0.00|2.03|44|44|0|10000|||100.00|80.10|0.00|0.00|00011127|5|8| +22|2023-10-06T22:03:02.9700000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF000B|Pusu Rosu|750603|67270000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|10000|10000|||100.79|100.11|0.00|3.10|44|44|0|10000|||100.00|80.10|0.00|0.00|00011127|6|8| +22|2023-10-06T22:03:02.9700000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0006|Wowobora Gogobora|750603|45F60000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8500|10000|||100.39|101.06|0.00|-3.12|44|44|0|10000|||100.00|80.10|0.00|0.00|00011127|7|8| +261|2023-10-06T22:03:02.5020000-07:00|Change|4002159D||||||||||||| +21|2023-10-06T22:03:03.0150000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12C00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7351292|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.99|96.91|0.00|-3.14|00011128|0|1| +37|2023-10-06T22:03:03.0590000-07:00|40021585|Zeromus|00011117|7336363||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:03.0590000-07:00|40021585|Zeromus|00011121|7334139||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:03.0590000-07:00|10FF0007|Kehabiqo Febiqo|00011120|129494|129844|10000|10000|0||99.99|96.91|0.00|-3.14|1500|0|0|01|01000000|0|0|| +38|2023-10-06T22:03:03.0590000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129494|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.0590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +39|2023-10-06T22:03:03.1040000-07:00|10FF0004|Buhojaqe Zijaqe|78109|81541|950|10000|||100.51|99.14|0.00|3.08| +37|2023-10-06T22:03:03.1490000-07:00|10FF0007|Kehabiqo Febiqo|00011127|106146||||||99.99|96.91|0.00|-3.14| +37|2023-10-06T22:03:03.1490000-07:00|40021585|Zeromus|00011124|7325984||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:03.1490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.51|99.14|0.00|3.08| +37|2023-10-06T22:03:03.1920000-07:00|10FF0001|Sesuga Sapisuga|00011127|121570|129071|8300|10000|0||100.40|98.22|0.00|-3.12|1301|0|0|01|06000000|0|0|| +37|2023-10-06T22:03:03.1920000-07:00|10FF0003|Gegehi Gehi|00011122|73814||||||102.37|98.50|0.00|-3.01| +38|2023-10-06T22:03:03.1920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121570|129071|8300|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:03.1920000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T22:03:03.2370000-07:00|10FF0003|Gegehi Gehi|00011127|49104|73814|5050|10000|0||102.37|98.50|0.00|-3.01|2302|0|0|01|05000000|0|0|| +37|2023-10-06T22:03:03.2370000-07:00|10FF0004|Buhojaqe Zijaqe|0001111E|81541|81541|950|10000|20||100.51|99.14|0.00|3.08|1C00|0|0|01|05000129|0|41E770A0|| +37|2023-10-06T22:03:03.2370000-07:00|40021585|Zeromus|00011125|7283897||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:03.2370000-07:00|10FF000A|Dukaro Nezikaro|00011125|83502|83502|10000|10000|20||99.69|99.96|0.00|3.13|1E00|0|0|01|07000A82|01|41F00000|| +34|2023-10-06T22:03:03.2370000-07:00|400219AD|Ruby Carbuncle|400219AD|Ruby Carbuncle|01| +38|2023-10-06T22:03:03.2370000-07:00|10FF0003|Gegehi Gehi|005A5A23|49104|73814|5050|10000|0||102.37|98.50|0.00|-3.01|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:03.2370000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:03.2370000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|20||99.69|99.96|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:02.7300000-07:00|Change|400219AD||||||| +37|2023-10-06T22:03:03.2820000-07:00|10FF0004|Buhojaqe Zijaqe|00011127|64269|81541|950|10000|0||100.51|99.14|0.00|3.10|1C03|0|0|01|05000000|0|0|| +38|2023-10-06T22:03:03.2820000-07:00|40021585|Zeromus|005A5A00|7283897|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:03.2820000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|81809| +38|2023-10-06T22:03:03.2820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|64269|81541|950|10000|0||100.51|99.14|0.00|3.10|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.2820000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:03:03.3260000-07:00|10FF000A|Dukaro Nezikaro|00011127|60799|83502|10000|10000|0||99.69|99.96|0.00|3.13|1E04|0|0|01|09000000|0|0|| +38|2023-10-06T22:03:03.3260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|60799|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.3260000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:03:03.3710000-07:00|10FF0008|Kokosaze Lulusaze|00011127|63257|90216|10000|10000|0||100.39|100.08|0.00|1.68|1F05|0|0|01|04000000|0|0|| +37|2023-10-06T22:03:03.3710000-07:00|10FF0001|Sesuga Sapisuga|0001111E|128177||||||100.40|98.22|0.00|-3.12| +38|2023-10-06T22:03:03.3710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|63257|90216|10000|10000|0||100.39|100.08|0.00|1.68|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.3710000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +37|2023-10-06T22:03:03.4150000-07:00|10FF000B|Pusu Rosu|00011127|52802|79209|10000|10000|0||100.79|100.11|0.00|3.10|1806|0|0|01|02000000|0|0|| +38|2023-10-06T22:03:03.4150000-07:00|10FF000B|Pusu Rosu|005A5A18|52802|79209|10000|10000|0||100.79|100.11|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.4150000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +37|2023-10-06T22:03:03.4590000-07:00|40021585|Zeromus|00011123|7273631||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:03.4590000-07:00|10FF0006|Wowobora Gogobora|00011123|81809|81809|8500|10000|21||100.41|101.03|0.00|2.69|1B00|0|0|01|0A000A8D|0|42700000|| +37|2023-10-06T22:03:03.4590000-07:00|10FF0006|Wowobora Gogobora|00011127|63899|81809|8500|10000|0||100.41|101.03|0.00|2.69|1B07|0|0|01|0|0|0|| +38|2023-10-06T22:03:03.4590000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|63899|81809|8500|10000|0||100.41|101.03|0.00|2.69|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.4590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +37|2023-10-06T22:03:03.5040000-07:00|10FF000B|Pusu Rosu|0001111E|59436||||||100.79|100.11|0.00|3.10| +39|2023-10-06T22:03:03.5040000-07:00|10FF0003|Gegehi Gehi|49842|73814|5250|10000|||102.37|98.50|0.00|-3.01| +20|2023-10-06T22:03:03.5040000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.79|100.11|0.00|3.10| +38|2023-10-06T22:03:03.5040000-07:00|10FF000B|Pusu Rosu|005A5A18|59436|79209|10000|10000|0||100.79|100.11|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.5040000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:03:03.0800000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:03:03.0800000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:03:03.5520000-07:00|40021585|Zeromus|00011128|7268831||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:03.5520000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7273631|40478540|10000|10000|||100.00|80.10|0.00|0.00|63899|81809|8500|10000|||100.55|100.77|-0.02|2.60|00011129|0|1| +261|2023-10-06T22:03:03.2000000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T22:03:03.6380000-07:00|10FF0008|Kokosaze Lulusaze|0001111E|69707||||||100.39|100.08|0.00|1.68| +38|2023-10-06T22:03:03.6380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|63899|81809|8500|10000|0||100.81|100.27|0.00|2.65|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.6380000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +24|2023-10-06T22:03:03.6840000-07:00|40021585|Zeromus|DoT|0|160D|7268831|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|106146|129844|10000|10000|||99.99|96.91|0.00|-3.14| +38|2023-10-06T22:03:03.6840000-07:00|40021585|Zeromus|005A5A00|7263186|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:03:03.7720000-07:00|40021585|Zeromus|00011126|7258427||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:03.7720000-07:00|10FF000A|Dukaro Nezikaro|0001111E|71732||||||99.69|99.96|0.00|3.13| +38|2023-10-06T22:03:03.7720000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106146|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:03.7720000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +39|2023-10-06T22:03:03.8170000-07:00|400219A4|Demi-Phoenix|74223|77698|10000|10000|||96.18|111.99|0.00|3.02| +20|2023-10-06T22:03:03.8170000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|102.37|98.50|0.00|-3.01| +21|2023-10-06T22:03:03.8610000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|25750000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|7258427|40478540|10000|10000|||100.00|80.10|0.00|0.00|106146|129844|10000|10000|||99.99|96.91|0.00|-3.14|0001112A|0|1| +37|2023-10-06T22:03:03.9060000-07:00|10FF0006|Wowobora Gogobora|0001111E|74742||||||101.05|99.91|0.00|2.78| +38|2023-10-06T22:03:03.9060000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71732|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:03.9060000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:03:03.5830000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T22:03:03.9950000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|38780000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|7258427|40478540|10000|10000|||100.00|80.10|0.00|0.00|69707|90216|10000|10000|||100.39|100.08|0.00|2.21|0001112B|0|1| +37|2023-10-06T22:03:04.0390000-07:00|10FF0003|Gegehi Gehi|0001111E|56287||||||102.37|98.50|0.00|-3.01| +38|2023-10-06T22:03:04.0400000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|69707|90216|10000|10000|0||100.39|100.08|0.00|2.21|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:04.0400000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:03:04.0840000-07:00|40021585|Zeromus|00011129|7258272||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:04.0840000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4FD90000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7258427|40478540|10000|10000|||100.00|80.10|0.00|0.00|64269|81541|950|10000|||100.51|99.14|0.00|-3.11|0001112C|0|1| +21|2023-10-06T22:03:04.1280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7258427|40478540|10000|10000|||100.00|80.10|0.00|0.00|128177|129071|8300|10000|||100.40|98.22|0.00|-3.12|0001112D|0|1| +31|2023-10-06T22:03:04.1280000-07:00|10FF0001||||| +37|2023-10-06T22:03:04.1730000-07:00|10FF0007|Kehabiqo Febiqo|0001111E|112759||||||99.99|96.91|0.00|-3.14| +39|2023-10-06T22:03:04.1730000-07:00|10FF0008|Kokosaze Lulusaze|70609|90216|10000|10000|||100.39|100.08|0.00|2.21| +21|2023-10-06T22:03:04.1730000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|552003|73B40000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|7258427|40478540|10000|10000|||100.00|80.10|0.00|0.00|71732|83502|10000|10000|||99.69|99.96|0.00|3.13|0001112E|0|1| +38|2023-10-06T22:03:04.1730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|71732|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:04.1730000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T22:03:04.2620000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|152003|8C8F0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7258272|40478540|10000|10000|||100.00|80.10|0.00|0.00|74742|81809|8500|10000|||101.24|99.63|0.00|2.88|0001112F|0|1| +261|2023-10-06T22:03:03.7970000-07:00|Change|10FF0006||||||||| +21|2023-10-06T22:03:04.3070000-07:00|400219A4|Demi-Phoenix|4087|Scarlet Flame|40021585|Zeromus|150003|13280000|1B|40878000|0|0|0|0|0|0|0|0|0|0|0|0|7258272|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||96.18|111.99|0.00|3.02|00011130|0|1| +21|2023-10-06T22:03:04.3070000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|FCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7258272|40478540|10000|10000|||100.00|80.10|0.00|0.00|71732|83502|10000|10000|||99.69|99.96|0.00|3.13|00011131|0|1| +37|2023-10-06T22:03:04.3950000-07:00|40021585|Zeromus|0001112A|7248683||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:04.4400000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|32200000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|7258272|40478540|10000|10000|||100.00|80.10|0.00|0.00|59436|79209|10000|10000|||100.79|100.11|0.00|-3.10|00011132|0|1| +261|2023-10-06T22:03:04.0340000-07:00|Change|10FF000B||||||||||||||||| +38|2023-10-06T22:03:04.6180000-07:00|10FF000B|Pusu Rosu|005A5A18|59436|79209|9600|10000|0||100.79|100.11|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:04.6180000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:03:04.1490000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T22:03:04.6620000-07:00|40021585|Zeromus|0001112D|7245795||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:04.7510000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11|64269|81541|550|10000|||100.51|99.14|0.00|-3.11|00011133|0|1| +37|2023-10-06T22:03:04.7950000-07:00|40021585|Zeromus|0001112B|7231339||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:04.7950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8500|10000|||100.40|98.22|0.00|-3.12| +261|2023-10-06T22:03:04.3670000-07:00|Change|10FF0001||||| +37|2023-10-06T22:03:04.8390000-07:00|40021585|Zeromus|00011131|7227293||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:04.8830000-07:00|40021585|Zeromus|0001112C|7206852||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:04.9720000-07:00|40021585|Zeromus|0001112E|7177232||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:04.9720000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|12D10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7206852|40478540|10000|10000|||100.00|80.10|0.00|0.00|70609|90216|10000|10000|||100.39|100.08|0.00|-3.12|00011134|0|1| +21|2023-10-06T22:03:05.0160000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1FA50000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|7177232|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8500|10000|||100.40|98.22|0.00|-3.12|00011135|0|1| +24|2023-10-06T22:03:05.0610000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|26E9|70609|90216|10000|10000|||100.39|100.08|0.00|-3.12|10FF0008|Kokosaze Lulusaze|0|70609|90216|10000|10000|||100.39|100.08|0.00|-3.12| +24|2023-10-06T22:03:05.0610000-07:00|10FF0003|Gegehi Gehi|HoT|798|D0E|56287|73814|5250|10000|||102.37|98.50|0.00|-3.01|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +24|2023-10-06T22:03:05.0620000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1507|74742|81809|8200|10000|||101.24|99.63|0.00|-3.08|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +24|2023-10-06T22:03:05.0620000-07:00|10FF000B|Pusu Rosu|HoT|798|D1B|59436|79209|9600|10000|||100.79|100.11|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +24|2023-10-06T22:03:05.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D83|64269|81541|550|10000|||100.51|99.14|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +24|2023-10-06T22:03:05.0620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D5A|70609|90216|10000|10000|||100.39|100.08|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +24|2023-10-06T22:03:05.0620000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D86|129071|129071|8500|10000|||100.40|98.22|0.00|-3.12|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +24|2023-10-06T22:03:05.0620000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|153C|71732|83502|10000|10000|||99.69|99.96|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +24|2023-10-06T22:03:05.0620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D38|112759|129844|10000|10000|||99.99|96.91|0.00|-3.14|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +24|2023-10-06T22:03:05.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A2B|64269|81541|550|10000|||100.51|99.14|0.00|-3.11|10FF0004|Buhojaqe Zijaqe|0|64269|81541|550|10000|||100.51|99.14|0.00|-3.11| +38|2023-10-06T22:03:05.0620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116143|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:05.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:05.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|83988|90216|10000|10000|0||100.39|100.08|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:05.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:05.0620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|80125|81809|8200|10000|0||101.24|99.63|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:05.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:05.0620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:05.0620000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:03:05.0620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|70331|81541|550|10000|0||100.51|99.14|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:05.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:03:05.0620000-07:00|10FF0003|Gegehi Gehi|005A5A23|59629|73814|5250|10000|0||102.37|98.50|0.00|-3.01|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:05.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:05.0620000-07:00|10FF000B|Pusu Rosu|005A5A18|62791|79209|9600|10000|0||100.79|100.11|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:05.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:03:05.0620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|77168|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:05.0620000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +24|2023-10-06T22:03:05.1500000-07:00|10FF0006|Wowobora Gogobora|HoT|0|4F5F|80125|81809|8200|10000|||101.24|99.63|0.00|-3.08|10FF0006|Wowobora Gogobora|0|80125|81809|8200|10000|||101.24|99.63|0.00|-3.08| +38|2023-10-06T22:03:05.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8200|10000|0||101.24|99.63|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:03:05.1940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8400|10000|||101.24|99.63|0.00|-3.08| +261|2023-10-06T22:03:04.7890000-07:00|Change|10FF0006||||| +21|2023-10-06T22:03:05.2400000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|452003|3AE00000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|7177232|40478540|10000|10000|||100.00|80.10|0.00|0.00|59629|73814|5250|10000|||102.37|98.50|0.00|-3.01|00011136|0|1| +38|2023-10-06T22:03:05.2400000-07:00|10FF0003|Gegehi Gehi|005A5A23|59629|73814|5050|10000|0||102.37|98.50|0.00|-3.01|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:05.2400000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:03:05.2400000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:03:04.7890000-07:00|Change|10FF0003||||||||||||||| +21|2023-10-06T22:03:05.2840000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|2F6E0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|116143|129844|10000|10000|||99.99|96.91|0.00|-3.14|7177232|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011137|0|1| +21|2023-10-06T22:03:05.2840000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|734003|B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7177232|40478540|10000|10000|||100.00|80.10|0.00|0.00|70331|81541|550|10000|||100.51|99.15|0.00|2.34|00011138|0|1| +37|2023-10-06T22:03:05.3290000-07:00|40021585|Zeromus|0001112F|7141249||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:05.3290000-07:00|40021585|Zeromus|005A5A00|7141249|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T22:03:05.3290000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40021585|Zeromus|00|40478540|129844| +37|2023-10-06T22:03:05.3730000-07:00|40021585|Zeromus|00011130|7136345||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:05.3730000-07:00|10FF0004|Buhojaqe Zijaqe|00011133|70331|81541|550|10000|0||100.51|99.15|0.00|1.58|1C00|0|0|01|050004B4|0|41A80000|| +26|2023-10-06T22:03:05.3730000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +39|2023-10-06T22:03:05.3730000-07:00|10FF000B|Pusu Rosu|63583|79209|9881|10000|||100.77|100.06|-0.02|-3.08| +39|2023-10-06T22:03:05.3730000-07:00|10FF000A|Dukaro Nezikaro|78003|83502|10000|10000|||99.69|99.96|0.00|3.13| +24|2023-10-06T22:03:05.3730000-07:00|10FF0003|Gegehi Gehi|HoT|0|11F6|59629|73814|5050|10000|||102.37|98.50|0.00|-3.01|10FF0003|Gegehi Gehi|0|59629|73814|5050|10000|||102.37|98.50|0.00|-3.01| +38|2023-10-06T22:03:05.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|64227|73814|5050|10000|0||102.37|98.50|0.00|-3.01|0|0|0||||||||||||||||||| +24|2023-10-06T22:03:05.4170000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1F6B|77168|83502|10000|10000|||99.69|99.96|0.00|3.13|40021999|Seraph|0|0|77430|0|10000|||105.00|99.60|0.00|-2.89| +38|2023-10-06T22:03:05.4170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:03:05.4620000-07:00|10FF0007|Kehabiqo Febiqo|117441|129844|10000|10000|||99.99|96.91|0.00|-3.14| +24|2023-10-06T22:03:05.4620000-07:00|10FF000B|Pusu Rosu|HoT|0|27C6|63583|79209|9881|10000|||100.70|99.91|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|70331|81541|550|10000|||100.52|99.22|0.00|1.09| +38|2023-10-06T22:03:05.4620000-07:00|10FF000B|Pusu Rosu|005A5A18|73765|79209|9881|10000|0||100.70|99.91|0.00|-3.07|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:05.0160000-07:00|Change|10FF000B||||||||| +38|2023-10-06T22:03:05.5060000-07:00|40021585|Zeromus|005A5A00|7136345|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:03:05.5060000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +24|2023-10-06T22:03:05.5510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|24A5|117441|129844|10000|10000|||99.99|96.91|0.00|-3.14|10FF000B|Pusu Rosu|0|73765|79209|9881|10000|||100.65|99.78|0.00|-3.06| +38|2023-10-06T22:03:05.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126822|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +20|2023-10-06T22:03:05.5950000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.52|99.30|0.00|0.82| +24|2023-10-06T22:03:05.6400000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1D7B|129071|129071|8500|10000|||100.40|98.22|0.00|-3.12|40021999|Seraph|0|0|77430|0|10000|||105.00|99.60|0.00|-2.89| +38|2023-10-06T22:03:05.6400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:05.2440000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:03:05.7280000-07:00|40021585|Zeromus|00011134|7131528||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:05.7280000-07:00|40021585|Zeromus|00011132|7118696||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:05.7280000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|14930000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|83988|90216|10000|10000|||100.39|100.08|0.00|-3.12|73956|77430|10000|10000|||105.00|99.60|0.00|-2.71|00011139|0|1| +37|2023-10-06T22:03:05.7730000-07:00|40021585|Zeromus|00011135|7110595||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:05.7730000-07:00|10FF0001|Sesuga Sapisuga|00011135|129071|129071|9500|10000|0||100.40|98.22|0.00|-3.12|1300|0|0|0| +37|2023-10-06T22:03:05.8170000-07:00|40021585|Zeromus|00011138|7110413||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:05.4330000-07:00|Change|10FF0001||| +22|2023-10-06T22:03:05.9510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|303B0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|0001113A|0|8| +22|2023-10-06T22:03:05.9510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|318D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|70331|81541|550|10000|||100.54|99.46|0.00|2.33|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|0001113A|1|8| +22|2023-10-06T22:03:05.9510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|200004|4D7D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|83988|90216|10000|10000|||100.39|100.08|0.00|-3.12|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|0001113A|2|8| +22|2023-10-06T22:03:05.9510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|4B750000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8400|10000|||101.24|99.63|0.00|-3.08|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|0001113A|3|8| +22|2023-10-06T22:03:05.9510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|30F00000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|0001113A|4|8| +22|2023-10-06T22:03:05.9510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|31E80000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9500|10000|||100.40|98.22|0.00|-3.12|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|0001113A|5|8| +22|2023-10-06T22:03:05.9510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|31FC0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|64227|73814|5050|10000|||102.37|98.50|0.00|-3.01|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|0001113A|6|8| +22|2023-10-06T22:03:05.9510000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|32B30000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|126822|129844|10000|10000|||99.99|96.91|0.00|-3.14|73765|79209|9881|10000|||100.54|99.53|0.00|-3.04|0001113A|7|8| +37|2023-10-06T22:03:06.0400000-07:00|40021585|Zeromus|00011136|7095341||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:06.0860000-07:00|10FF0007|Kehabiqo Febiqo|00011137|114680||||||99.99|96.91|0.00|-3.14| +39|2023-10-06T22:03:06.1300000-07:00|10FF0004|Buhojaqe Zijaqe|71146|81541|750|10000|||100.54|99.53|0.00|-3.13| +04|2023-10-06T22:03:05.7430000-07:00|40021999|Seraph|00|5A|10FF0004|00||8227|10487|0|77430|0|10000|||105.00|99.60|0.00|-2.89| +261|2023-10-06T22:03:05.7430000-07:00|Remove|40021999| +21|2023-10-06T22:03:06.2650000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|26E80000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|64227|73814|5050|10000|||102.37|98.50|0.00|-3.01|0001113B|0|1| +38|2023-10-06T22:03:06.2650000-07:00|10FF0003|Gegehi Gehi|005A5A23|64227|73814|4750|10000|0||102.37|98.50|0.00|-3.01|0|0|0|||||||||||||||| +30|2023-10-06T22:03:06.2650000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:03:05.8630000-07:00|Change|10FF0003||| +21|2023-10-06T22:03:06.3090000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|225C0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|114680|129844|10000|10000|||99.99|96.91|0.00|-3.14|0001113C|0|1| +21|2023-10-06T22:03:06.3090000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42710003|30440000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|0001113D|0|1| +21|2023-10-06T22:03:06.3970000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|12FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|114680|129844|10000|10000|||99.99|96.91|0.00|-3.14|0001113E|0|1| +21|2023-10-06T22:03:06.3970000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|86E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9500|10000|||100.40|98.22|0.00|-3.12|0001113F|0|1| +31|2023-10-06T22:03:06.3970000-07:00|10FF0001||||| +39|2023-10-06T22:03:06.4860000-07:00|10FF0003|Gegehi Gehi|64965|73814|4950|10000|||102.37|98.50|0.00|-3.01| +21|2023-10-06T22:03:06.4860000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1D3F0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|83988|90216|10000|10000|||100.39|100.08|0.00|-3.12|00011140|0|1| +21|2023-10-06T22:03:06.4860000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A460000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|00011141|0|1| +37|2023-10-06T22:03:06.5310000-07:00|10FF0008|Kokosaze Lulusaze|00011139|89255||||||100.39|100.08|0.00|-3.12| +37|2023-10-06T22:03:06.5310000-07:00|10FF000B|Pusu Rosu|0001113A|79209||||||100.54|99.53|0.00|-3.04| +21|2023-10-06T22:03:06.5310000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|756003|601F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|71146|81541|750|10000|||100.54|99.53|0.00|-3.11|00011142|0|1| +21|2023-10-06T22:03:06.5750000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|64965|73814|4950|10000|||102.37|98.50|0.00|-3.01|00011143|0|1| +37|2023-10-06T22:03:06.6640000-07:00|10FF0004|Buhojaqe Zijaqe|0001113A|81541||||||100.54|99.53|0.00|-3.11| +24|2023-10-06T22:03:06.6640000-07:00|40021585|Zeromus|DoT|0|160E|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9881|10000|||100.54|99.53|0.00|-3.04| +38|2023-10-06T22:03:06.6640000-07:00|40021585|Zeromus|005A5A00|7089695|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:03:06.2950000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:03:06.2950000-07:00|Change|10FF0006||||| +21|2023-10-06T22:03:06.7100000-07:00|10FF0006|Wowobora Gogobora|4082|Fountain of Fire|40021585|Zeromus|152003|8ECD0000|1B|40828000|0|0|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||101.24|99.63|0.00|-3.08|00011144|0|1| +21|2023-10-06T22:03:06.7100000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|1270000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7095341|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||101.24|99.63|0.00|-3.08|00011145|0|1| +37|2023-10-06T22:03:06.7990000-07:00|10FF0008|Kokosaze Lulusaze|0001113A|90216||||||100.39|100.08|0.00|-3.12| +39|2023-10-06T22:03:06.7990000-07:00|400219A4|Demi-Phoenix|74223|77698|10000|10000|||96.18|111.99|0.00|3.02| +261|2023-10-06T22:03:06.3900000-07:00|Change|400219A4||||||||| +38|2023-10-06T22:03:06.8440000-07:00|400219AF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:03:06.8440000-07:00|400219AF||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +03|2023-10-06T22:03:06.4850000-07:00|400219AF|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||101.14|97.89|0.00|0.06| +261|2023-10-06T22:03:06.4850000-07:00|Add|400219AF||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:06.9320000-07:00|40021585|Zeromus|0001113C|7080899||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:06.9320000-07:00|40021585|Zeromus|0001113E|7076040||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:06.9320000-07:00|40021585|Zeromus|0001113F|7073882||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:06.9320000-07:00|40021585|Zeromus|0001113D|7061526||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:06.4850000-07:00|Change|400219AF||| +38|2023-10-06T22:03:06.9760000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|350|10000|0||100.54|99.53|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:06.9760000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:03:07.0220000-07:00|40021585|Zeromus|0001113B|7051566||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:07.0220000-07:00|40021585|Zeromus|00011141|7048936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:07.1120000-07:00|40021585|Zeromus|00011143|7048935||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:07.1550000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12| +37|2023-10-06T22:03:07.2430000-07:00|40021585|Zeromus|00011140|7041448||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:07.2430000-07:00|40021585|Zeromus|00011145|7041153||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:06.9340000-07:00|Change|10FF0003||| +261|2023-10-06T22:03:06.9340000-07:00|Remove|400219A5| +37|2023-10-06T22:03:07.3320000-07:00|40021585|Zeromus|00011142|7016546||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:07.3320000-07:00|10FF0003|Gegehi Gehi|0001113A|73814||||||102.37|98.50|0.00|-3.01| +37|2023-10-06T22:03:07.4670000-07:00|10FF0007|Kehabiqo Febiqo|0001113A|127659||||||99.99|96.91|0.00|-3.14| +21|2023-10-06T22:03:07.5090000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|29660000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|7016546|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9500|10000|||100.40|98.22|0.00|-3.12|00011146|0|1| +38|2023-10-06T22:03:07.5090000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9500|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:07.5090000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:03:07.5090000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T22:03:07.6430000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9610000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|7016546|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12|00011147|0|1| +37|2023-10-06T22:03:07.7760000-07:00|40021585|Zeromus|00011144|6979989||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:07.8210000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9700|10000|||100.40|98.22|0.00|-3.12| +261|2023-10-06T22:03:07.4690000-07:00|Change|10FF0001||| +261|2023-10-06T22:03:07.4690000-07:00|Change|400219AF||| +34|2023-10-06T22:03:07.8660000-07:00|400219AF|Carbuncle|400219AF|Carbuncle|01| +38|2023-10-06T22:03:07.9560000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127659|129844|10000|10000|0||99.99|96.91|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:07.9560000-07:00|752|Angel's Whisper|0.00|40021999|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|| +37|2023-10-06T22:03:08.0890000-07:00|40021585|Zeromus|00011146|6969391||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:08.0890000-07:00|10FF0001|Sesuga Sapisuga|00011146|129071|129071|9700|10000|0||100.40|98.22|0.00|-3.12|1300|0|0|02|0600076E|03|41F00000|||||| +24|2023-10-06T22:03:08.0890000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1C75|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12| +24|2023-10-06T22:03:08.0890000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|A63|81541|81541|350|10000|||102.09|99.45|0.00|2.43|10FF0004|Buhojaqe Zijaqe|0|81541|81541|350|10000|||102.09|99.45|0.00|2.43| +38|2023-10-06T22:03:08.0890000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.39|100.08|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:08.0890000-07:00|752|Angel's Whisper|0.00|40021999|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|| +38|2023-10-06T22:03:08.0890000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:03:08.0890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|900|10000|0||102.09|99.45|0.00|2.43|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:03:07.6590000-07:00|Change|10FF0004||||||||| +39|2023-10-06T22:03:08.1780000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8300|10000|||101.24|99.63|0.00|-3.08| +24|2023-10-06T22:03:08.1780000-07:00|10FF0006|Wowobora Gogobora|HoT|0|41F3|81809|81809|8100|10000|||101.24|99.63|0.00|-3.08|10FF0006|Wowobora Gogobora|0|81809|81809|8100|10000|||101.24|99.63|0.00|-3.08| +38|2023-10-06T22:03:08.1780000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|0||101.24|99.63|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:08.2230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||102.37|98.50|0.00|-3.01|0|0|0|||||||||||||||| +30|2023-10-06T22:03:08.2230000-07:00|752|Angel's Whisper|0.00|40021999|Seraph|10FF0003|Gegehi Gehi|00|73814|| +261|2023-10-06T22:03:07.8920000-07:00|Change|10FF0006||| +21|2023-10-06T22:03:08.3120000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|34400000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|127659|129844|10000|10000|||99.89|97.13|0.00|-2.23|6969391|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011148|0|1| +39|2023-10-06T22:03:08.3580000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||100.54|99.53|0.00|-3.04| +39|2023-10-06T22:03:08.3580000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.69|99.96|0.00|3.13| +38|2023-10-06T22:03:08.3580000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:08.3580000-07:00|752|Angel's Whisper|0.00|40021999|Seraph|10FF000A|Dukaro Nezikaro|00|83502|| +37|2023-10-06T22:03:08.4020000-07:00|40021585|Zeromus|00011147|6966990||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:08.0090000-07:00|Change|10FF000B||||||||| +24|2023-10-06T22:03:08.4460000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|15B1|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|900|10000|||102.25|99.41|0.00|2.80| +21|2023-10-06T22:03:08.4460000-07:00|10FF000B|Pusu Rosu|4097|Afflatus Misery|40021585|Zeromus|750003|CA660000|1B|40978000|0|0|0|0|0|0|0|0|0|0|0|0|6966990|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||100.54|99.53|0.00|-3.04|00011149|0|1| +21|2023-10-06T22:03:08.4460000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1ED30000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|6966990|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|0001114A|0|1| +38|2023-10-06T22:03:08.4460000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0||||||||||||||||||| +39|2023-10-06T22:03:08.4910000-07:00|10FF0007|Kehabiqo Febiqo|128957|129844|10000|10000|||99.79|97.35|0.00|-2.17| +24|2023-10-06T22:03:08.4910000-07:00|10FF000B|Pusu Rosu|HoT|0|2DD1|79209|79209|10000|10000|||100.54|99.53|0.00|-3.04|10FF0004|Buhojaqe Zijaqe|0|81541|81541|900|10000|||102.25|99.41|0.00|2.80| +38|2023-10-06T22:03:08.4910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|0||101.24|99.63|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:08.4910000-07:00|752|Angel's Whisper|0.00|40021999|Seraph|10FF0006|Wowobora Gogobora|00|81809|| +38|2023-10-06T22:03:08.4910000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.54|99.53|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T22:03:08.5810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1E58|128957|129844|10000|10000|||99.68|97.57|0.00|-2.10|10FF000B|Pusu Rosu|0|79209|79209|10000|10000|||100.54|99.53|0.00|-3.11| +38|2023-10-06T22:03:08.5810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.68|97.57|0.00|-2.10|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:03:08.6250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:08.6250000-07:00|752|Angel's Whisper|0.00|40021999|Seraph|10FF0001|Sesuga Sapisuga|00|129071|| +24|2023-10-06T22:03:08.6700000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|12C2|129071|129071|9700|10000|||100.40|98.22|0.00|-3.12|10FF0001|Sesuga Sapisuga|0|129071|129071|9700|10000|||100.40|98.22|0.00|-3.12| +21|2023-10-06T22:03:08.6700000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|E2C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6966990|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9700|10000|||100.40|98.22|0.00|-3.12|0001114B|0|1| +20|2023-10-06T22:03:08.6700000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|102.37|98.50|0.00|-3.01| +21|2023-10-06T22:03:08.6700000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B330000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6966990|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|0001114C|0|1| +38|2023-10-06T22:03:08.6700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||||||||| +31|2023-10-06T22:03:08.6700000-07:00|10FF0001||||| +261|2023-10-06T22:03:08.3450000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T22:03:08.7600000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F712003|4EDA0000|143E|340000|200004|26958000|11B|2A8000|0|0|0|0|0|0|0|0|6966990|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.57|97.82|0.00|-2.08|0001114D|0|1| +38|2023-10-06T22:03:08.7600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|900|10000|0||102.25|99.41|0.00|2.80|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:08.7600000-07:00|752|Angel's Whisper|0.00|40021999|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|| +37|2023-10-06T22:03:08.8490000-07:00|40021585|Zeromus|0001114A|6959099||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:08.8940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.39|100.08|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:08.8940000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T22:03:08.8940000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.54|99.53|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:08.8940000-07:00|752|Angel's Whisper|0.00|40021999|Seraph|10FF000B|Pusu Rosu|00|79209|| +21|2023-10-06T22:03:08.9820000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C726003|607B0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|6959099|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12|0001114E|0|1| +37|2023-10-06T22:03:09.0270000-07:00|40021585|Zeromus|00011149|6907285||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:09.0270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|0||101.24|99.63|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:09.0270000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +37|2023-10-06T22:03:09.1160000-07:00|10FF0007|Kehabiqo Febiqo|00011148|116468||||||99.57|97.83|-0.02|3.12| +39|2023-10-06T22:03:09.1160000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1100|10000|||102.25|99.41|0.00|2.80| +261|2023-10-06T22:03:08.7550000-07:00|Change|10FF0004||||||||| +38|2023-10-06T22:03:09.1600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1100|10000|0||102.25|99.41|0.00|2.80|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:09.1600000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +37|2023-10-06T22:03:09.2070000-07:00|40021585|Zeromus|0001114B|6903657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:09.2070000-07:00|40021585|Zeromus|0001114C|6900790||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:09.2070000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:09.2070000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|6907285|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8300|10000|||101.24|99.63|0.00|-3.08|0001114F|0|1| +38|2023-10-06T22:03:09.2070000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|0||101.24|99.63|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:09.2070000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:08.8650000-07:00|Change|400219AF||| +38|2023-10-06T22:03:09.2480000-07:00|400219B2||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:03:09.2500000-07:00|400219B2||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:03:09.2950000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|752003|3D980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6900790|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|00011150|0|1| +38|2023-10-06T22:03:09.2950000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.54|99.53|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:09.2950000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|79209|90216| +03|2023-10-06T22:03:08.9750000-07:00|400219B2|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||103.12|101.28|0.00|-3.08| +261|2023-10-06T22:03:08.9750000-07:00|Add|400219B2||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:03:09.3830000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|FA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6900790|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1100|10000|||102.25|99.41|0.00|2.80|00011151|0|1| +261|2023-10-06T22:03:08.9750000-07:00|Change|400219B2||||| +38|2023-10-06T22:03:09.4280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:09.4280000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|83502|90216| +39|2023-10-06T22:03:09.4720000-07:00|10FF0003|Gegehi Gehi|73814|73814|5150|10000|||102.37|98.50|0.00|-3.01| +38|2023-10-06T22:03:09.5610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5150|10000|0||102.37|98.50|0.00|-3.01|0|0|0|||||||||||||||| +30|2023-10-06T22:03:09.5610000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +21|2023-10-06T22:03:09.6500000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|14830000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|116468|129844|10000|10000|||99.57|97.85|0.00|-1.99|73956|77430|10000|10000|||105.00|99.60|0.00|-2.75|00011152|0|1| +24|2023-10-06T22:03:09.6500000-07:00|40021585|Zeromus|DoT|0|18EB|6900790|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|10000|10000|||100.54|99.53|0.00|-3.11| +20|2023-10-06T22:03:09.6500000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|1.926|102.25|99.41|0.00|2.80| +38|2023-10-06T22:03:09.6500000-07:00|40021585|Zeromus|005A5A00|6894411|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:03:09.3020000-07:00|Change|10FF0007||||||||| +38|2023-10-06T22:03:09.6940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116468|129844|10000|10000|0||99.57|97.85|0.00|-1.99|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:09.6940000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +261|2023-10-06T22:03:09.3020000-07:00|Change|10FF0003||||| +37|2023-10-06T22:03:09.7840000-07:00|40021585|Zeromus|0001114E|6869712||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:09.7840000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|AD70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6894411|40478540|10000|10000|||100.00|80.10|0.00|0.00|116468|129844|10000|10000|||99.75|97.92|0.00|-2.59|00011153|0|1| +38|2023-10-06T22:03:09.8280000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:09.8280000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +21|2023-10-06T22:03:09.8720000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|F50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6869712|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8300|10000|||100.84|98.93|0.00|-2.55|00011154|0|1| +37|2023-10-06T22:03:09.9170000-07:00|40021585|Zeromus|00011151|6869462||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:09.9610000-07:00|40021585|Zeromus|00011150|6853694||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:10.0060000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|42DB0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6869462|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9700|10000|||100.40|98.22|0.00|-3.12|00011155|0|1| +38|2023-10-06T22:03:10.0060000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:10.0060000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T22:03:09.7120000-07:00|Change|10FF0004||||||||||||| +38|2023-10-06T22:03:10.0500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1100|10000|0||102.25|99.41|0.00|2.80|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:10.0500000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:03:10.0500000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5150|10000|0||102.37|98.50|0.00|-3.01|0|0|0|||||||||| +30|2023-10-06T22:03:10.0500000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:10.0500000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.54|99.53|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:10.0500000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:03:10.0500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0||||||||||||| +30|2023-10-06T22:03:10.0500000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +21|2023-10-06T22:03:10.0940000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|750003|1FE40000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|6853694|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5150|10000|||102.37|98.50|0.00|-3.01|00011156|0|1| +38|2023-10-06T22:03:10.0940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||102.37|98.50|0.00|-3.01|0|0|0|||||||||| +26|2023-10-06T22:03:10.0940000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:03:10.0940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|116468|129844|10000|10000|0||100.23|98.09|0.00|2.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:10.0940000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:10.0940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.39|100.08|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:10.0940000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:10.0940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|0||99.66|96.82|-0.01|-2.66|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:10.0940000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:10.0940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9700|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:10.0940000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +39|2023-10-06T22:03:10.1380000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12| +37|2023-10-06T22:03:10.2270000-07:00|10FF0006|Wowobora Gogobora|0001114F|81809|81809|8300|10000|0||99.59|96.37|0.00|-2.71|1B00|0|0|01|0AA4|0|0|| +38|2023-10-06T22:03:10.2270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|0||99.59|96.37|0.00|-2.71|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:10.2730000-07:00|40021585|Zeromus|0001114D|6833508||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:10.2730000-07:00|10FF0007|Kehabiqo Febiqo|0001114D|126345||||||100.33|98.13|0.00|1.75| +35|2023-10-06T22:03:10.2730000-07:00|40021584||40021585|Zeromus|0000|0000|0109|||| +257|2023-10-06T22:03:10.2730000-07:00|80034E7C|00020001|03|00|0000| +37|2023-10-06T22:03:10.3170000-07:00|40021585|Zeromus|00011153|6830733||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:09.9350000-07:00|Change|40021584||||||||| +21|2023-10-06T22:03:10.3170000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E790000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6853694|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12|00011157|0|1| +261|2023-10-06T22:03:09.9350000-07:00|Change|400215A3||||||||| +00|2023-10-06T22:03:10.0000000-07:00|0044|Zeromus|Beyond the veil my home doth lie...| +261|2023-10-06T22:03:10.0450000-07:00|Change|400219B2||| +20|2023-10-06T22:03:10.3620000-07:00|40021585|Zeromus|8CFA|Flow of the Abyss|40021585|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:10.3620000-07:00|400215A3|Zeromus|8B82|Dimensional Surge|400215A3|Zeromus|8.700|80.10|100.00|0.00|1.57| +37|2023-10-06T22:03:10.4060000-07:00|40021585|Zeromus|00011154|6830488||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:10.4500000-07:00|10FF0007|Kehabiqo Febiqo|00011152|129844||||||100.40|98.16|-0.01|1.49| +261|2023-10-06T22:03:10.1560000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:03:10.1560000-07:00|Remove|400219A4| +04|2023-10-06T22:03:10.1560000-07:00|400219A4|Demi-Phoenix|00|5A|10FF0006|00||8228|10488|0|77698|0|10000|||96.18|111.99|0.00|3.02| +21|2023-10-06T22:03:10.5840000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2C750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6830488|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.42|98.16|0.00|1.44|00011158|0|1| +21|2023-10-06T22:03:10.6290000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24AC0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|6830488|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|00011159|0|1| +261|2023-10-06T22:03:10.3650000-07:00|Change|10FF0006||||||||| +38|2023-10-06T22:03:10.7170000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.54|99.53|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:10.7170000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:03:10.3650000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T22:03:10.8060000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9900|10000|||100.40|98.22|0.00|-3.12| +261|2023-10-06T22:03:10.4600000-07:00|Change|10FF0001||| +37|2023-10-06T22:03:10.8500000-07:00|40021585|Zeromus|00011156|6822324||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:10.8500000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6830488|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|0001115A|0|1| +38|2023-10-06T22:03:10.8500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.39|100.08|0.00|-3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:10.8500000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +261|2023-10-06T22:03:10.4600000-07:00|Change|400215A3||||||||||||| +20|2023-10-06T22:03:10.8950000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|100.54|99.53|0.00|-3.11| +261|2023-10-06T22:03:10.5620000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T22:03:10.9400000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|A980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6822324|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9900|10000|||100.40|98.22|0.00|-3.12|0001115B|0|1| +31|2023-10-06T22:03:10.9400000-07:00|10FF0001||||| +38|2023-10-06T22:03:10.9840000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|0||99.82|94.25|-0.01|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:10.9840000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +37|2023-10-06T22:03:11.0290000-07:00|40021585|Zeromus|00011159|6812936||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:11.0740000-07:00|40021585|Zeromus|00011157|6809231||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:11.0740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|C4F|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12|400219A4||0||||||||||| +21|2023-10-06T22:03:11.0740000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|4|26670000|1F0E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|81541|81541|1100|10000|||102.25|99.41|0.00|2.80|81541|81541|1100|10000|||102.25|99.41|0.00|2.80|0001115C|0|1| +38|2023-10-06T22:03:11.0740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.39|100.08|0.00|-3.12|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:03:11.0740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|650|10000|21||102.25|99.41|0.00|2.80|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:11.0740000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T22:03:11.1190000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|3CD00000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|6812936|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4950|10000|||102.37|98.50|0.00|-3.01|0001115D|0|1| +38|2023-10-06T22:03:11.1190000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|0||102.37|98.50|0.00|-3.01|0|0|0||||||||||||| +30|2023-10-06T22:03:11.1190000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:03:11.1190000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:03:11.1190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|99.96|0.00|3.13|0|0|0|||||||||| +30|2023-10-06T22:03:11.1190000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +24|2023-10-06T22:03:11.1630000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1CF7|81809|81809|8300|10000|||99.84|94.19|0.00|-2.91|10FF0006|Wowobora Gogobora|0|81809|81809|8300|10000|||99.84|94.19|0.00|-2.91| +38|2023-10-06T22:03:11.1630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8300|10000|0||99.84|94.19|0.00|-2.91|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:10.7760000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:03:11.2080000-07:00|40021585|Zeromus|00011158|6797850||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:11.2080000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8500|10000|||99.84|94.19|0.00|-2.91| +21|2023-10-06T22:03:11.2080000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|714003|11EA0000|13070E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|6809231|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9900|10000|||100.40|98.22|0.00|-3.12|0001115E|0|1| +21|2023-10-06T22:03:11.2520000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|3ACE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6809231|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.42|98.16|0.00|-3.12|0001115F|0|1| +38|2023-10-06T22:03:11.2520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.42|98.16|0.00|-3.12|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:11.2520000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +261|2023-10-06T22:03:10.8960000-07:00|Change|400219AF||| +37|2023-10-06T22:03:11.2960000-07:00|40021585|Zeromus|00011155|6780735||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:11.2960000-07:00|10FF0001|Sesuga Sapisuga|00011155|129071|129071|10000|10000|0||100.40|98.22|0.00|-3.12|1300|0|0|0| +21|2023-10-06T22:03:11.2970000-07:00|400219B2|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|154003|731F0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|6797850|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||103.12|101.28|0.00|-3.08|00011160|0|1| +39|2023-10-06T22:03:11.3400000-07:00|10FF000B|Pusu Rosu|79209|79209|10000|10000|||100.54|99.53|0.00|-3.11| +39|2023-10-06T22:03:11.3400000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.69|99.96|0.00|3.13| +37|2023-10-06T22:03:11.3850000-07:00|40021585|Zeromus|0001115A|6778438||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:11.3850000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.40|98.22|0.00|-3.12|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:11.3850000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:03:11.3850000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|0||102.37|98.50|0.00|-3.01|0|0|0||||||||||||| +37|2023-10-06T22:03:11.4750000-07:00|40021585|Zeromus|0001115B|6775726||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:11.4750000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||100.42|98.16|0.00|-3.12| +24|2023-10-06T22:03:11.4750000-07:00|10FF000B|Pusu Rosu|HoT|0|870|79209|79209|10000|10000|||100.54|99.53|0.00|-3.11|400219A4||0||||||||||| +21|2023-10-06T22:03:11.4750000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|724003|702A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6778438|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12|00011161|0|1| +38|2023-10-06T22:03:11.4750000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|10000|10000|0||100.54|99.53|0.00|-3.11|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:03:11.5200000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6778438|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4650|10000|||102.37|98.50|0.00|-3.01|00011162|0|1| +20|2023-10-06T22:03:11.6980000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|99.84|94.19|0.00|-2.91| +261|2023-10-06T22:03:11.3490000-07:00|Change|10FF0006||||||||||||||||||||||| +261|2023-10-06T22:03:11.4410000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:03:11.8310000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|32430000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|6775726|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|10000|10000|||100.54|99.53|0.00|-3.11|00011163|0|1| +261|2023-10-06T22:03:11.4410000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:11.4410000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T22:03:11.8760000-07:00|40021585|Zeromus|0001115F|6760672||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:11.8760000-07:00|40021585|Zeromus|0001115D|6745104||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:11.8760000-07:00|10FF0003|Gegehi Gehi|0001115D|73814|73814|4650|10000|0||102.27|98.41|0.00|-2.64|2300|0|0|01|030004D2|0|41F00000|| +38|2023-10-06T22:03:11.8760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|0||102.22|98.36|0.00|-2.53|0|0|0||||||||||||| +22|2023-10-06T22:03:11.9650000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0004|Buhojaqe Zijaqe|9|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|650|10000|||102.46|99.08|0.00|2.66|81541|81541|650|10000|||102.46|99.08|0.00|2.66|00011164|0|8| +22|2023-10-06T22:03:11.9650000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0003|Gegehi Gehi|1F0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4650|10000|||102.22|98.36|0.00|-2.53|81541|81541|650|10000|||102.46|99.08|0.00|2.66|00011164|1|8| +22|2023-10-06T22:03:11.9650000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0007|Kehabiqo Febiqo|1F0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||100.42|98.16|0.00|-3.12|81541|81541|650|10000|||102.46|99.08|0.00|2.66|00011164|2|8| +22|2023-10-06T22:03:11.9650000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF000B|Pusu Rosu|1F0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9600|10000|||100.54|99.53|0.00|-3.11|81541|81541|650|10000|||102.46|99.08|0.00|2.66|00011164|3|8| +22|2023-10-06T22:03:11.9650000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0008|Kokosaze Lulusaze|1F0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12|81541|81541|650|10000|||102.46|99.08|0.00|2.66|00011164|4|8| +22|2023-10-06T22:03:11.9650000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0001|Sesuga Sapisuga|1F0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.21|96.50|0.00|-3.09|81541|81541|650|10000|||102.46|99.08|0.00|2.66|00011164|5|8| +22|2023-10-06T22:03:11.9650000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF000A|Dukaro Nezikaro|1F0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|81541|81541|650|10000|||102.46|99.08|0.00|2.66|00011164|6|8| +22|2023-10-06T22:03:11.9650000-07:00|10FF0004|Buhojaqe Zijaqe|E01|Deployment Tactics|10FF0006|Wowobora Gogobora|1F0E|1290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8500|10000|||99.84|94.19|0.00|-3.01|81541|81541|650|10000|||102.46|99.08|0.00|2.66|00011164|7|8| +261|2023-10-06T22:03:11.8580000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:03:12.0530000-07:00|10FF0004|Buhojaqe Zijaqe|0001115C|81541|81541|650|10000|21||102.57|98.85|0.00|2.82|1C00|0|0|01|03000129|0|41E8851C|| +37|2023-10-06T22:03:12.0530000-07:00|40021585|Zeromus|00011162|6745103||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:12.0980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|850|10000|||102.57|98.85|0.00|2.82| +261|2023-10-06T22:03:11.8580000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:03:12.2310000-07:00|40021585|Zeromus|0001115E|6740517|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T22:03:12.2310000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +39|2023-10-06T22:03:12.2310000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +39|2023-10-06T22:03:12.4990000-07:00|10FF0003|Gegehi Gehi|73814|73814|4850|10000|||102.10|98.25|0.00|-2.30| +21|2023-10-06T22:03:12.5880000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|44A40000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6740517|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.18|96.04|0.00|-3.13|00011165|0|1| +38|2023-10-06T22:03:12.5880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.18|96.04|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:12.5880000-07:00|76E|Sword Oath|25.46|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:03:12.3970000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:03:12.6320000-07:00|40021585|Zeromus|00011161|6711803||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:12.6780000-07:00|40021585|Zeromus|DoT|0|19E9|6740517|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||100.18|96.04|0.00|-3.13| +38|2023-10-06T22:03:12.6780000-07:00|40021585|Zeromus|005A5A00|6705170|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:03:12.8560000-07:00|10FF0003|Gegehi Gehi|00011164|73814|73814|4850|10000|23||102.10|98.25|0.00|-2.30|2301|0|0|01|01000129|0|41E80000|| +26|2023-10-06T22:03:12.8560000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:12.8560000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4850|10000|23||102.10|98.25|0.00|-2.30|0|0|0||||||||||||| +21|2023-10-06T22:03:12.9000000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|3EDB0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|6705170|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|00011166|0|1| +261|2023-10-06T22:03:12.5830000-07:00|Remove|400219AF| +04|2023-10-06T22:03:12.5830000-07:00|400219AF|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||101.14|97.89|0.00|0.06| +37|2023-10-06T22:03:12.9890000-07:00|10FF0007|Kehabiqo Febiqo|00011164|129844|129844|10000|10000|13||100.41|98.15|0.00|-3.08|1502|0|0|01|01000129|0|41E80000|| +26|2023-10-06T22:03:12.9890000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +21|2023-10-06T22:03:12.9890000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8D90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6705170|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12|00011167|0|1| +38|2023-10-06T22:03:12.9890000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|13||100.41|98.15|0.00|-3.08|0|0|0||||||||||||||||||| +21|2023-10-06T22:03:13.0340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A990000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6705170|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|99.96|0.00|3.13|00011168|0|1| +21|2023-10-06T22:03:13.0780000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|6705170|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|850|10000|||103.49|95.77|0.00|2.93|00011169|0|1| +37|2023-10-06T22:03:13.1220000-07:00|10FF000B|Pusu Rosu|00011164|79209|79209|9600|10000|22||99.97|98.60|0.00|2.97|1803|0|0|01|02000129|0|41E80000|| +26|2023-10-06T22:03:13.1220000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +37|2023-10-06T22:03:13.1220000-07:00|40021585|Zeromus|00011163|6692303||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:13.1230000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9600|10000|22||99.97|98.60|0.00|2.97|0|0|0|||||||||||||||||||||||||||| +39|2023-10-06T22:03:13.1670000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.39|100.08|0.00|-3.12| +21|2023-10-06T22:03:13.1670000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6705170|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.40|98.14|0.00|-3.00|0001116A|0|1| +21|2023-10-06T22:03:13.2120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6692303|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.18|96.04|0.00|-3.13|0001116B|0|1| +31|2023-10-06T22:03:13.2120000-07:00|10FF0001||||| +261|2023-10-06T22:03:12.9090000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:03:13.2570000-07:00|40021585|Zeromus|00011160|6662832||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:13.2570000-07:00|10FF0008|Kokosaze Lulusaze|00011164|90216|90216|10000|10000|19||100.39|100.08|0.00|-3.12|1F04|0|0|01|02000129|0|41E80000|| +26|2023-10-06T22:03:13.2570000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:13.2570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|19||100.39|100.08|0.00|-3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:03:13.3910000-07:00|10FF0001|Sesuga Sapisuga|00011164|129071|129071|10000|10000|13||100.18|96.04|0.00|-3.13|1305|0|0|01|02000129|0|41E80000|| +26|2023-10-06T22:03:13.3910000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +20|2023-10-06T22:03:13.3910000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.29|97.63|0.00|-2.77| +38|2023-10-06T22:03:13.3910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|13||100.18|96.04|0.00|-3.13|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:03:13.0220000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:03:13.1330000-07:00|Change|10FF000B||||||||||||||||| +37|2023-10-06T22:03:13.4340000-07:00|40021585|Zeromus|00011166|6646741||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:13.4780000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF0004|Buhojaqe Zijaqe|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:03:13.4780000-07:00|10FF0004|Buhojaqe Zijaqe|0000|0000|003E|0000|0000|0000| +37|2023-10-06T22:03:13.5230000-07:00|10FF000A|Dukaro Nezikaro|00011164|83502|83502|10000|10000|21||99.69|99.96|0.00|3.13|1E06|0|0|01|03000129|0|41E80000|| +26|2023-10-06T22:03:13.5230000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +38|2023-10-06T22:03:13.5230000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|21||99.69|99.96|0.00|3.13|0|0|0||||||||||||| +37|2023-10-06T22:03:13.5670000-07:00|40021585|Zeromus|00011168|6644028||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:13.5670000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|102.10|98.25|0.00|-2.30| +37|2023-10-06T22:03:13.6550000-07:00|10FF0006|Wowobora Gogobora|00011164|81809|81809|8500|10000|21||99.84|94.19|0.00|3.13|1B07|0|0|01|03000129|0|41E80000|| +26|2023-10-06T22:03:13.6550000-07:00|129|Galvanize|29.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:13.6550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8500|10000|21||99.84|94.19|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:13.7010000-07:00|40021585|Zeromus|0001116A|6641083||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:13.7010000-07:00|40021585|Zeromus|00011169|6641083|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T22:03:13.7010000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +21|2023-10-06T22:03:13.7010000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|716003|2C5D0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|6644028|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.31|95.45|0.00|-2.82|0001116C|0|1| +37|2023-10-06T22:03:13.7450000-07:00|40021585|Zeromus|00011167|6638818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:13.7450000-07:00|40021585|Zeromus|0001116B|6637111||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:13.4370000-07:00|Change|10FF0003||||||||||||||| +39|2023-10-06T22:03:13.7910000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.18|96.04|0.00|-3.13| +37|2023-10-06T22:03:13.8790000-07:00|40021585|Zeromus|00011165|6619539||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:13.8800000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|2F660000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|6637111|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.18|96.04|0.00|-3.13|0001116D|0|1| +261|2023-10-06T22:03:13.6330000-07:00|Change|400215A2||||||||||||| +21|2023-10-06T22:03:13.9690000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|152003|8BD40000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|6619539|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8500|10000|||99.84|94.19|0.00|3.13|0001116E|0|1| +261|2023-10-06T22:03:13.6330000-07:00|Change|10FF0006||||||||||||||||| +21|2023-10-06T22:03:14.0130000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44724003|4B3B0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|6619539|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.36|100.04|0.00|-2.99|0001116F|0|1| +21|2023-10-06T22:03:14.0130000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|A10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6619539|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|450|10000|||102.12|95.38|0.00|-1.15|00011170|0|1| +261|2023-10-06T22:03:13.7500000-07:00|Change|10FF0007||||||||| +24|2023-10-06T22:03:14.0580000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|B6C|90216|90216|10000|10000|||100.34|100.00|0.00|-3.13|400219A4||0||||||||||| +38|2023-10-06T22:03:14.0580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|19||100.34|100.00|0.00|-3.13|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:03:14.0580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1000|10000|21||102.00|95.44|0.00|-1.65|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T22:03:14.1480000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1DE4|81809|81809|8200|10000|||99.84|94.19|0.00|3.13|10FF0006|Wowobora Gogobora|0|81809|81809|8200|10000|||99.84|94.19|0.00|3.13| +38|2023-10-06T22:03:14.1480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8200|10000|21||99.84|94.19|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:03:14.1920000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8400|10000|||99.84|94.19|0.00|3.13| +37|2023-10-06T22:03:14.2370000-07:00|40021585|Zeromus|0001116C|6608182||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:14.2370000-07:00|40021585|Zeromus|0001116D|6596048||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:13.9780000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:03:14.3260000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|329E0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|6596048|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9600|10000|||98.99|97.15|0.00|3.08|00011171|0|1| +261|2023-10-06T22:03:13.9780000-07:00|Change|10FF000B||||||||||||||||||| +39|2023-10-06T22:03:14.3700000-07:00|10FF000B|Pusu Rosu|79209|79209|9481|10000|||98.99|97.15|0.00|3.08| +39|2023-10-06T22:03:14.3700000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.69|99.94|0.00|-2.70| +39|2023-10-06T22:03:14.4590000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||97.58|91.11|0.00|-2.83| +24|2023-10-06T22:03:14.4590000-07:00|10FF000B|Pusu Rosu|HoT|0|807|79209|79209|9481|10000|||98.99|97.15|0.00|3.08|400219A4||0||||||||||| +38|2023-10-06T22:03:14.4590000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9481|10000|22||98.99|97.15|0.00|3.08|0|0|0|||||||||||||||||||||||||||| +23|2023-10-06T22:03:14.5040000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|Cancelled| +261|2023-10-06T22:03:14.2080000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:03:14.5480000-07:00|40021585|Zeromus|00011170|6595887||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:14.5920000-07:00|40021585|Zeromus|0001116E|6560091||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:14.7270000-07:00|10FF0006|Wowobora Gogobora|64EB|Crimson Cyclone|40021585|Zeromus|152003|71F70000|1B|64EB8000|0|0|0|0|0|0|0|0|0|0|0|0|6560091|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||99.66|93.23|0.00|-3.00|00011172|0|1| +38|2023-10-06T22:03:14.7270000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|21||99.66|93.23|0.00|-3.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:14.7270000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T22:03:14.7270000-07:00|74C|Everlasting Flight|0.00|400219A4|Demi-Phoenix|10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T22:03:14.4940000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T22:03:14.8160000-07:00|40021585|Zeromus|0001116F|6540832||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:14.8610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|19||100.01|98.81|0.00|-3.08|0|0|0|||||||||| +30|2023-10-06T22:03:14.8610000-07:00|74C|Everlasting Flight|0.00|400219A4|Demi-Phoenix|10FF0008|Kokosaze Lulusaze|00|90216|| +38|2023-10-06T22:03:14.9940000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9481|10000|22||98.99|97.10|0.00|3.10|0|0|0|||||||||| +30|2023-10-06T22:03:14.9940000-07:00|74C|Everlasting Flight|0.00|400219A4|Demi-Phoenix|10FF000B|Pusu Rosu|00|79209|| +261|2023-10-06T22:03:14.6810000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:03:15.0820000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|28210000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|6540832|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.18|93.02|0.00|3.13|00011173|0|1| +38|2023-10-06T22:03:15.0820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|13||100.18|93.02|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:15.0820000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:03:14.8020000-07:00|Change|10FF0007||||||||| +39|2023-10-06T22:03:15.1260000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1200|10000|||101.36|93.64|0.00|-2.95| +38|2023-10-06T22:03:15.1260000-07:00|40021585|Zeromus|005A5A00|6540832|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:03:15.1260000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +39|2023-10-06T22:03:15.2150000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:15.2150000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|17DA0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|6540832|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.88|95.23|0.00|-2.10|00011174|0|1| +21|2023-10-06T22:03:15.2150000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9040000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6540832|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.88|95.23|0.00|-2.10|00011175|0|1| +261|2023-10-06T22:03:14.9150000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:14.9150000-07:00|Change|400219B2||||| +261|2023-10-06T22:03:15.0290000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T22:03:15.3490000-07:00|400219C2||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:03:15.3490000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|1400000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6540832|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||99.42|91.61|0.00|3.10|00011176|0|1| +38|2023-10-06T22:03:15.3490000-07:00|400219C2||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:03:15.0290000-07:00|Change|10FF000B||||||||| +39|2023-10-06T22:03:15.4820000-07:00|10FF0003|Gegehi Gehi|73814|73814|5050|10000|||102.10|98.05|0.00|3.07| +21|2023-10-06T22:03:15.4820000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6AA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6540832|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.22|91.09|0.00|3.09|00011177|0|1| +38|2023-10-06T22:03:15.4820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|21||99.42|91.61|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:15.4820000-07:00|A91|Undying Flame|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +31|2023-10-06T22:03:15.4820000-07:00|10FF0001||||| +37|2023-10-06T22:03:15.5700000-07:00|40021585|Zeromus|00011172|6511657||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:15.6140000-07:00|40021585|Zeromus|00011174|6505551||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:15.6150000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.24|89.44|0.00|-2.89| +37|2023-10-06T22:03:15.6590000-07:00|40021585|Zeromus|00011171|6492593||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:15.6590000-07:00|40021585|Zeromus|DoT|0|F65|6540832|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||100.34|89.17|0.00|3.07| +21|2023-10-06T22:03:15.6590000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9360000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6540832|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.54|93.73|-0.01|3.12|00011178|0|1| +38|2023-10-06T22:03:15.6590000-07:00|40021585|Zeromus|005A5A00|6488652|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:03:15.7490000-07:00|40021585|Zeromus|00011175|6486344||||||100.00|80.10|0.00|0.00| +03|2023-10-06T22:03:15.5450000-07:00|400219C2|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||99.44|89.42|0.00|-0.04| +261|2023-10-06T22:03:15.5450000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:03:15.5450000-07:00|Add|400219C2||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:15.5450000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:03:15.5450000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:03:15.5450000-07:00|Change|400219C2||| +37|2023-10-06T22:03:15.8820000-07:00|40021585|Zeromus|00011176|6486024||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:15.9260000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6486344|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5050|10000|||102.16|96.35|0.00|3.09|00011179|0|1| +261|2023-10-06T22:03:15.6380000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:03:16.0150000-07:00|40021585|Zeromus|00011177|6484318||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:15.7570000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:03:16.1480000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.51|91.15|0.00|-3.14| +261|2023-10-06T22:03:15.8690000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:03:16.1930000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|21BF0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|6484318|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.67|87.05|0.00|-3.07|0001117A|0|1| +261|2023-10-06T22:03:15.9800000-07:00|Change|10FF0004||||||||||||||||||| +34|2023-10-06T22:03:16.3700000-07:00|400219C2|Carbuncle|400219C2|Carbuncle|01| +261|2023-10-06T22:03:16.0970000-07:00|Change|400219C2||| +37|2023-10-06T22:03:16.4150000-07:00|40021585|Zeromus|00011178|6481960||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:16.4150000-07:00|40021585|Zeromus|00011173|6471687||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:16.4610000-07:00|40021585|Zeromus|00011179|6471686||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0001|Sesuga Sapisuga|6B0E|5520000|4|264E0000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|0001117B|0|8| +22|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0006|Wowobora Gogobora|6B0E|5520000|4|27150000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8400|10000|||99.47|86.77|0.00|-3.06|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|0001117B|1|8| +22|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0007|Kehabiqo Febiqo|6B0E|5520000|200004|3CF50000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.66|86.92|0.00|3.09|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|0001117B|2|8| +22|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0004|Buhojaqe Zijaqe|6B0E|5520000|4|26630000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1200|10000|||100.18|87.94|0.00|-3.12|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|0001117B|3|8| +22|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF000B|Pusu Rosu|6B0E|5520000|4|25680000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|9481|10000|||99.44|88.18|0.00|-3.10|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|0001117B|4|8| +22|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF000A|Dukaro Nezikaro|6B0E|5520000|4|25A00000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.20|88.97|0.00|-1.71|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|0001117B|5|8| +22|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0008|Kokosaze Lulusaze|6B0E|5520000|200004|3D080000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.40|89.22|0.00|-3.09|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|0001117B|6|8| +22|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|DD4|Divine Veil|10FF0003|Gegehi Gehi|6B0E|5520000|4|26E90000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5050|10000|||101.55|92.75|0.00|-2.89|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13|0001117B|7|8| +38|2023-10-06T22:03:16.4610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.66|86.92|0.00|3.09|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:16.4610000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +38|2023-10-06T22:03:16.4610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|33||100.40|89.22|0.00|-3.09|0|0|0||||||||||||| +26|2023-10-06T22:03:16.4610000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|90216|129071| +38|2023-10-06T22:03:16.4610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8400|10000|37||99.47|86.77|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:16.4610000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +38|2023-10-06T22:03:16.4610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|23||100.42|84.67|0.00|-3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:16.4610000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T22:03:16.4610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1200|10000|37||100.18|87.94|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:16.4610000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +38|2023-10-06T22:03:16.4610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5050|10000|41||101.55|92.75|0.00|-2.89|0|0|0|||||||||||||||| +26|2023-10-06T22:03:16.4610000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73814|129071| +38|2023-10-06T22:03:16.4610000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9481|10000|38||99.44|88.18|0.00|-3.10|0|0|0||||||||||||| +26|2023-10-06T22:03:16.4610000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF000B|Pusu Rosu|00|79209|129071| +38|2023-10-06T22:03:16.4610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|36||99.20|88.97|0.00|-1.71|0|0|0|||||||||||||||| +26|2023-10-06T22:03:16.4610000-07:00|552|Divine Veil|30.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|83502|129071| +21|2023-10-06T22:03:16.5040000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|726003|40FF0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|6484318|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.40|89.22|0.00|-3.09|0001117C|0|1| +21|2023-10-06T22:03:16.5490000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BE90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6471686|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.66|86.88|0.00|3.09|0001117D|0|1| +21|2023-10-06T22:03:16.5490000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31760000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6471686|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1200|10000|||100.18|87.94|0.00|-3.12|0001117E|0|1| +261|2023-10-06T22:03:16.2990000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:03:16.2990000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:03:16.3950000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:03:16.8160000-07:00|40021585|Zeromus|0001117A|6463047||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:16.8160000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.42|84.67|0.00|-3.13| +20|2023-10-06T22:03:16.8160000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.36|86.28|0.00|-3.10| +37|2023-10-06T22:03:17.0830000-07:00|40021585|Zeromus|0001117D|6459998||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:17.0830000-07:00|10FF0001|Sesuga Sapisuga|0001117B|129071|129071|10000|10000|23||100.42|84.67|0.00|-3.13|1300|0|0|01|03000552|0|41EB603F|| +38|2023-10-06T22:03:17.0830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1350|10000|37||100.18|87.94|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:03:17.1720000-07:00|10FF0006|Wowobora Gogobora|651D|Crimson Strike|40021585|Zeromus|154003|5A030000|11B|651D8000|0|0|0|0|0|0|0|0|0|0|0|0|6459998|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8400|10000|||99.50|86.07|0.00|2.97|0001117F|0|1| +37|2023-10-06T22:03:17.2160000-07:00|10FF0006|Wowobora Gogobora|0001117B|81809|81809|8400|10000|37||99.50|85.91|-0.01|3.06|1B01|0|0|01|0552|0|41EA4DD0|| +39|2023-10-06T22:03:17.2160000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8600|10000|||99.50|85.91|-0.01|3.06| +261|2023-10-06T22:03:16.9100000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:03:16.9100000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:03:17.2610000-07:00|40021585|Zeromus|0001117C|6443359||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:17.0220000-07:00|Change|10FF0004||||||||||||||||| +37|2023-10-06T22:03:17.3520000-07:00|10FF0007|Kehabiqo Febiqo|0001117B|129844|129844|10000|10000|23||99.69|86.84|0.00|3.12|1502|0|0|01|02000552|0|41E93B61|| +37|2023-10-06T22:03:17.3520000-07:00|40021585|Zeromus|0001117E|6430697||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:17.3520000-07:00|10FF000B|Pusu Rosu|79209|79209|9762|10000|||99.32|85.75|-0.01|3.03| +39|2023-10-06T22:03:17.3520000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.17|87.75|0.00|-1.55| +21|2023-10-06T22:03:17.3520000-07:00|40021585|Zeromus|8CFA|Flow of the Abyss|40021585|Zeromus|1B|8CFA8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6443359|40478540|10000|10000|||100.00|80.10|0.00|0.00|6443359|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011180|0|1| +20|2023-10-06T22:03:17.3520000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|100.33|87.68|-0.02|-2.97| +261|2023-10-06T22:03:17.0220000-07:00|Change|40021585||||| +21|2023-10-06T22:03:17.3960000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B2E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6443359|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.17|87.75|0.00|-1.55|00011181|0|1| +21|2023-10-06T22:03:17.4410000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|37E20000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|6430697|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.17|87.75|0.00|-1.55|00011182|0|1| +37|2023-10-06T22:03:17.4850000-07:00|10FF0004|Buhojaqe Zijaqe|0001117B|81541|81541|1350|10000|37||100.18|87.94|0.00|-3.12|1C03|0|0|01|04000552|0|41E828F2|| +39|2023-10-06T22:03:17.4850000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.76|86.84|0.00|3.13| +21|2023-10-06T22:03:17.5750000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|150F0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|6430697|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.42|84.67|0.00|-3.05|00011183|0|1| +37|2023-10-06T22:03:17.6180000-07:00|10FF000B|Pusu Rosu|0001117B|79209|79209|9762|10000|38||99.32|85.74|0.00|3.03|1804|0|0|01|03000552|0|41E71683|| +261|2023-10-06T22:03:17.3450000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T22:03:17.7530000-07:00|10FF000A|Dukaro Nezikaro|0001117B|83502|83502|10000|10000|36||99.17|87.75|0.00|3.04|1E05|0|0|01|04000552|0|41E60620|| +21|2023-10-06T22:03:17.7530000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6430697|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.42|84.67|0.00|-3.05|00011184|0|1| +21|2023-10-06T22:03:17.7530000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|30D20000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|6430697|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9762|10000|||99.32|85.74|0.00|3.03|00011185|0|1| +31|2023-10-06T22:03:17.7530000-07:00|10FF0001||||| +37|2023-10-06T22:03:17.8410000-07:00|40021585|Zeromus|00011182|6416391||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:17.8850000-07:00|10FF0008|Kokosaze Lulusaze|0001117B|90216|90216|10000|10000|33||99.94|86.82|0.00|2.48|1F06|0|0|01|03000552|0|41E4F3B1|| +37|2023-10-06T22:03:17.9300000-07:00|40021585|Zeromus|0001117F|6393348||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:17.9300000-07:00|40021585|Zeromus|00011181|6390486||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:18.0180000-07:00|10FF0003|Gegehi Gehi|0001117B|73814|73814|5050|10000|41||100.18|86.69|0.00|-3.11|2307|0|0|01|04000552|0|41E3E34E|| +20|2023-10-06T22:03:18.0180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.18|87.94|0.00|-3.12| +39|2023-10-06T22:03:18.1070000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1550|10000|||100.18|87.94|0.00|-3.12| +37|2023-10-06T22:03:18.1960000-07:00|40021585|Zeromus|00011183|6385095||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:18.1960000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +261|2023-10-06T22:03:17.9880000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:03:18.1070000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:03:18.2860000-07:00|40021585|Zeromus|00011184|6382174||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:18.3320000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E9E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6385095|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.04|87.17|0.00|0.42|00011186|0|1| +39|2023-10-06T22:03:18.4660000-07:00|10FF0003|Gegehi Gehi|73814|73814|5250|10000|||100.18|86.69|0.00|-3.11| +22|2023-10-06T22:03:18.4660000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF0004|Buhojaqe Zijaqe|750603|5DFD0000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|81541|81541|1550|10000|||100.18|87.94|0.00|-3.12|44|44|0|10000|||100.00|100.00|0.00|0.00|00011187|0|8| +22|2023-10-06T22:03:18.4660000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF0008|Kokosaze Lulusaze|750603|75000000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.07|87.31|0.00|0.23|44|44|0|10000|||100.00|100.00|0.00|0.00|00011187|1|8| +22|2023-10-06T22:03:18.4660000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF000A|Dukaro Nezikaro|750603|68030000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.17|87.75|0.00|3.04|44|44|0|10000|||100.00|100.00|0.00|0.00|00011187|2|8| +22|2023-10-06T22:03:18.4660000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF0007|Kehabiqo Febiqo|750603|179C0000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.90|86.84|0.00|-3.11|44|44|0|10000|||100.00|100.00|0.00|0.00|00011187|3|8| +22|2023-10-06T22:03:18.4660000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF0003|Gegehi Gehi|750603|606F0000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|73814|73814|5050|10000|||100.18|86.69|0.00|-3.11|44|44|0|10000|||100.00|100.00|0.00|0.00|00011187|4|8| +22|2023-10-06T22:03:18.4660000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF0006|Wowobora Gogobora|750603|54020000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|81809|81809|8600|10000|||99.50|85.86|0.00|3.06|44|44|0|10000|||100.00|100.00|0.00|0.00|00011187|5|8| +22|2023-10-06T22:03:18.4660000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF000B|Pusu Rosu|750603|599C0000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|79209|79209|9362|10000|||99.32|85.74|0.00|3.03|44|44|0|10000|||100.00|100.00|0.00|0.00|00011187|6|8| +22|2023-10-06T22:03:18.4660000-07:00|400215A2|Zeromus|8B76|Umbral Rays|10FF0001|Sesuga Sapisuga|750603|18960000|E80E|B7D0000|1B|8B768000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.42|84.67|0.00|-3.05|44|44|0|10000|||100.00|100.00|0.00|0.00|00011187|7|8| +38|2023-10-06T22:03:18.4660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|23||99.90|86.84|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:18.4660000-07:00|B7D|Magic Vulnerability Up|2.00|400215A2|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T22:03:18.4660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|33||100.07|87.31|0.00|0.23|0|0|0|||||||||||||||| +26|2023-10-06T22:03:18.4660000-07:00|B7D|Magic Vulnerability Up|2.00|400215A2|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T22:03:18.4660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8600|10000|37||99.50|85.86|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:18.4660000-07:00|B7D|Magic Vulnerability Up|2.00|400215A2|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T22:03:18.4660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|23||100.42|84.67|0.00|-3.05|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:18.4660000-07:00|B7D|Magic Vulnerability Up|2.00|400215A2|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T22:03:18.4660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1550|10000|37||100.18|87.94|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:18.4660000-07:00|B7D|Magic Vulnerability Up|2.00|400215A2|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T22:03:18.4660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5250|10000|41||100.18|86.69|0.00|-3.11|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:18.3280000-07:00|Change|400215A2||||||||||||| +26|2023-10-06T22:03:18.4660000-07:00|B7D|Magic Vulnerability Up|2.00|400215A2|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T22:03:18.4660000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9362|10000|38||99.32|85.74|0.00|3.03|0|0|0|||||||||||||||| +26|2023-10-06T22:03:18.4660000-07:00|B7D|Magic Vulnerability Up|2.00|400215A2|Zeromus|10FF000B|Pusu Rosu|00|79209|44| +38|2023-10-06T22:03:18.4660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|36||99.17|87.75|0.00|3.04|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:18.4660000-07:00|B7D|Magic Vulnerability Up|2.00|400215A2|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +21|2023-10-06T22:03:18.5100000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6382174|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8600|10000|||99.50|85.86|0.00|3.06|00011188|0|1| +261|2023-10-06T22:03:18.4220000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:03:18.6430000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|30AC0000|143E|340000|4|17428000|11B|2A8000|0|0|0|0|0|0|0|0|6382174|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.90|86.84|0.00|-3.11|00011189|0|1| +24|2023-10-06T22:03:18.6880000-07:00|40021585|Zeromus|DoT|0|15E0|6382174|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||100.42|84.67|0.00|-3.05| +38|2023-10-06T22:03:18.6880000-07:00|40021585|Zeromus|005A5A00|6376574|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +21|2023-10-06T22:03:18.7770000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|156003|494E0000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|6376574|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5250|10000|||100.18|86.69|0.00|-3.11|0001118A|0|1| +38|2023-10-06T22:03:18.7770000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5050|10000|41||100.18|86.69|0.00|-3.11|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:18.7770000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:03:18.7770000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:03:18.9550000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|33630000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6376574|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1550|10000|||100.18|87.94|0.00|-3.12|0001118B|0|1| +21|2023-10-06T22:03:19.0000000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2F9C0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|6376574|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.18|87.75|0.00|0.23|0001118C|0|1| +37|2023-10-06T22:03:19.0440000-07:00|40021585|Zeromus|00011188|6376419||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:19.0440000-07:00|40021585|Zeromus|00011185|6363921||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:19.0890000-07:00|40021585|Zeromus|00011186|6360179||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:19.0890000-07:00|10FF0004|Buhojaqe Zijaqe|00011187|57480|81541|1150|10000|0||100.18|87.94|0.00|-3.12|1C00|0|0|03|03000000|0|0|||||||||| +38|2023-10-06T22:03:19.0890000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57480|81541|1150|10000|0||100.18|87.94|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:19.0890000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +30|2023-10-06T22:03:19.0890000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0004|Buhojaqe Zijaqe|00|81541|129071| +37|2023-10-06T22:03:19.1340000-07:00|10FF0008|Kokosaze Lulusaze|00011187|60264|90216|10000|10000|0||100.18|87.75|0.00|-3.12|1F01|0|0|03|02000000|0|0|||||||||| +21|2023-10-06T22:03:19.1340000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6376574|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1150|10000|||100.18|87.94|0.00|-3.12|0001118D|0|1| +38|2023-10-06T22:03:19.1340000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|60264|90216|10000|10000|0||100.18|87.75|0.00|-3.12|0|0|0|||||||||||||||| +30|2023-10-06T22:03:19.1340000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +30|2023-10-06T22:03:19.1340000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0008|Kokosaze Lulusaze|00|90216|129071| +37|2023-10-06T22:03:19.1780000-07:00|10FF000A|Dukaro Nezikaro|00011187|56875|83502|10000|10000|0||99.17|87.75|0.00|3.04|1E02|0|0|03|03000000|0|0|||||||||| +39|2023-10-06T22:03:19.1780000-07:00|10FF0008|Kokosaze Lulusaze|61166|90216|10000|10000|||100.18|87.75|0.00|-3.12| +38|2023-10-06T22:03:19.1780000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|56875|83502|10000|10000|0||99.17|87.75|0.00|3.04|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:19.1780000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +30|2023-10-06T22:03:19.1780000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF000A|Dukaro Nezikaro|00|83502|129071| +37|2023-10-06T22:03:19.2240000-07:00|10FF0007|Kehabiqo Febiqo|00011187|123800|129844|10000|10000|0||99.90|86.84|0.00|3.13|1503|0|0|03|01000000|0|0|||||||||| +38|2023-10-06T22:03:19.2240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123800|129844|10000|10000|0||99.90|86.84|0.00|3.13|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:19.2240000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +30|2023-10-06T22:03:19.2240000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0007|Kehabiqo Febiqo|00|129844|129071| +37|2023-10-06T22:03:19.2680000-07:00|10FF0003|Gegehi Gehi|00011187|49127|73814|5050|10000|0||100.18|86.69|0.00|-3.11|2304|0|0|03|01000000|0|0|||||||||| +21|2023-10-06T22:03:19.2680000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|200004|213D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|60264|90216|10000|10000|||100.18|87.75|0.00|-3.12|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|0001118E|0|1| +38|2023-10-06T22:03:19.2680000-07:00|10FF0003|Gegehi Gehi|005A5A23|49127|73814|5050|10000|0||100.18|86.69|0.00|-3.11|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:19.2680000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +30|2023-10-06T22:03:19.2680000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0003|Gegehi Gehi|00|73814|129071| +37|2023-10-06T22:03:19.3130000-07:00|10FF0006|Wowobora Gogobora|00011187|60303|81809|8600|10000|0||99.64|86.68|0.00|0.64|1B05|0|0|03|0|0|0|||||||||| +22|2023-10-06T22:03:19.3130000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|200004|4C5F0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|0001118F|0|8| +257|2023-10-06T22:03:19.3130000-07:00|80034E7C|00200004|03|00|0000| +22|2023-10-06T22:03:19.3130000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|30140000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.36|84.75|0.00|-1.46|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|0001118F|1|8| +22|2023-10-06T22:03:19.3130000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|4|318D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|123800|129844|10000|10000|||99.90|86.85|0.00|2.75|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|0001118F|2|8| +22|2023-10-06T22:03:19.3130000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|4|32B70000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|49127|73814|5050|10000|||100.18|86.69|0.00|-3.11|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|0001118F|3|8| +22|2023-10-06T22:03:19.3130000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0006|Wowobora Gogobora|200004|4E1B0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8600|10000|||99.64|86.68|0.00|0.64|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|0001118F|4|8| +22|2023-10-06T22:03:19.3130000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|32320000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|56875|83502|10000|10000|||99.17|87.75|0.00|3.04|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|0001118F|5|8| +22|2023-10-06T22:03:19.3130000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|31350000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|61166|90216|10000|10000|||100.18|87.75|0.00|-3.12|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|0001118F|6|8| +22|2023-10-06T22:03:19.3130000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|200004|4E4D0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|57480|81541|1150|10000|||100.18|87.94|0.00|-3.12|79209|79209|9362|10000|||99.29|85.65|0.00|-3.04|0001118F|7|8| +38|2023-10-06T22:03:19.3130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|60303|81809|8600|10000|0||99.64|86.68|0.00|0.64|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:19.3130000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0006|Wowobora Gogobora|00|81809|129071| +30|2023-10-06T22:03:19.3130000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +04|2023-10-06T22:03:19.0530000-07:00|400219B2|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||103.12|101.28|0.00|-3.08| +261|2023-10-06T22:03:19.0530000-07:00|Remove|400219B2| +37|2023-10-06T22:03:19.3570000-07:00|10FF000B|Pusu Rosu|00011187|56269|79209|9362|10000|0||99.27|85.60|0.00|-3.08|1806|0|0|03|02000000|0|0|||||||||| +21|2023-10-06T22:03:19.3570000-07:00|400215A3|Zeromus|8B82|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|100.00|0.00|1.57|00011190|0|0| +38|2023-10-06T22:03:19.3570000-07:00|10FF000B|Pusu Rosu|005A5A18|56269|79209|9362|10000|0||99.27|85.60|0.00|-3.08|0|0|0|||||||||||||||| +30|2023-10-06T22:03:19.3570000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +30|2023-10-06T22:03:19.3570000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF000B|Pusu Rosu|00|79209|129071| +261|2023-10-06T22:03:19.0530000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T22:03:19.0530000-07:00|Change|400215A3||||||||||||| +37|2023-10-06T22:03:19.4030000-07:00|10FF0001|Sesuga Sapisuga|00011187|122777|129071|10000|10000|0||100.12|85.04|0.00|-1.46|1307|0|0|03|02000000|0|0|||||||||| +38|2023-10-06T22:03:19.4030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|122777|129071|10000|10000|0||100.12|85.04|0.00|-1.46|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:19.4030000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +30|2023-10-06T22:03:19.4030000-07:00|552|Divine Veil|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:03:19.5800000-07:00|40021585|Zeromus|0001118A|6341413||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:19.5800000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|3CE00000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|6360179|40478540|10000|10000|||100.00|80.10|0.00|0.00|56875|83502|10000|10000|||99.17|87.75|0.00|3.04|00011191|0|1| +21|2023-10-06T22:03:19.5800000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|10A20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6360179|40478540|10000|10000|||100.00|80.10|0.00|0.00|56875|83502|10000|10000|||99.17|87.75|0.00|3.04|00011192|0|1| +20|2023-10-06T22:03:19.6230000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|2.783|99.72|87.17|0.00|0.24| +261|2023-10-06T22:03:19.3800000-07:00|Change|10FF0006||||||||||||||||| +37|2023-10-06T22:03:19.6680000-07:00|40021585|Zeromus|0001118D|6341172||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:19.3800000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T22:03:19.4780000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:03:19.7580000-07:00|40021585|Zeromus|0001118B|6328017||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:19.7580000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|28180000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|6341172|40478540|10000|10000|||100.00|80.10|0.00|0.00|49127|73814|5050|10000|||100.18|86.69|0.00|-3.11|00011193|0|1| +38|2023-10-06T22:03:19.7590000-07:00|10FF0003|Gegehi Gehi|005A5A23|49127|73814|4750|10000|0||100.18|86.69|0.00|-3.11|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:19.7590000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:03:19.7590000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:03:19.8020000-07:00|40021585|Zeromus|0001118C|6315829||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:19.8020000-07:00|10FF0001|Sesuga Sapisuga|124067|129071|10000|10000|||100.41|87.63|0.00|-1.48| +21|2023-10-06T22:03:19.8020000-07:00|10FF0008|Kokosaze Lulusaze|20FDD70|item_fdd70|10FF0008|Kokosaze Lulusaze|6C00000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|61166|90216|10000|10000|||100.18|87.75|0.00|-3.12|61166|90216|10000|10000|||100.18|87.75|0.00|-3.12|00011194|0|1| +37|2023-10-06T22:03:19.8900000-07:00|10FF000B|Pusu Rosu|0001118F|75820||||||99.27|85.55|0.00|1.58| +21|2023-10-06T22:03:19.9340000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|ACA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6315829|40478540|10000|10000|||100.00|80.10|0.00|0.00|123800|129844|10000|10000|||99.87|89.66|-0.02|0.14|00011195|0|1| +261|2023-10-06T22:03:19.6720000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:03:20.0240000-07:00|10FF0001|Sesuga Sapisuga|0001118F|129071||||||100.45|88.18|0.00|-1.49| +21|2023-10-06T22:03:20.0240000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6315829|40478540|10000|10000|||100.00|80.10|0.00|0.00|124067|129071|10000|10000|||100.45|88.18|0.00|-1.49|00011196|0|1| +31|2023-10-06T22:03:20.0240000-07:00|10FF0001||||| +37|2023-10-06T22:03:20.0690000-07:00|10FF0008|Kokosaze Lulusaze|0001118E|69675||||||100.18|87.75|0.00|-3.12| +21|2023-10-06T22:03:20.0690000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2EF90000|4|250F8000|0|0|0|0|0|0|0|0|0|0|0|0|6315829|40478540|10000|10000|||100.00|80.10|0.00|0.00|124067|129071|10000|10000|||100.45|88.18|0.00|-1.49|00011197|0|1| +38|2023-10-06T22:03:20.0690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||100.45|88.18|0.00|-1.49|0|0|0|||||||||||||||| +30|2023-10-06T22:03:20.0690000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T22:03:20.0690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57480|81541|1700|10000|0||100.18|87.94|0.00|-3.12|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:03:20.1130000-07:00|40021585|Zeromus|00011191|6300245||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:20.1130000-07:00|40021585|Zeromus|00011192|6295987||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:19.7930000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:20.1570000-07:00|40021585|Zeromus|00011189|6283527||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:20.1570000-07:00|10FF0007|Kehabiqo Febiqo|00011189|129754||||||99.87|90.94|0.00|0.06| +37|2023-10-06T22:03:20.1570000-07:00|10FF0007|Kehabiqo Febiqo|0001118F|129844||||||99.87|90.94|0.00|0.06| +39|2023-10-06T22:03:20.2020000-07:00|10FF0006|Wowobora Gogobora|61121|81809|8800|10000|||99.72|87.17|0.00|3.10| +37|2023-10-06T22:03:20.2910000-07:00|10FF0003|Gegehi Gehi|0001118F|62110|73814|4750|10000|0||100.18|86.69|0.00|-3.11|2303|0|0|01|010004D3|0|C1F00000|| +39|2023-10-06T22:03:20.3370000-07:00|10FF000B|Pusu Rosu|76612|79209|9643|10000|||99.33|88.10|0.00|0.08| +39|2023-10-06T22:03:20.3370000-07:00|10FF000A|Dukaro Nezikaro|57710|83502|10000|10000|||99.17|87.77|0.00|-2.42| +261|2023-10-06T22:03:20.0340000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:03:20.1440000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T22:03:20.3800000-07:00|10FF0003|Gegehi Gehi|005A5A23|62110|73814|4750|10000|0||100.18|86.69|0.00|-3.11|0|0|0||||||||||||||||||| +37|2023-10-06T22:03:20.4240000-07:00|10FF0006|Wowobora Gogobora|0001118F|81116||||||99.72|87.17|0.00|3.10| +261|2023-10-06T22:03:20.2540000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:03:20.4690000-07:00|40021585|Zeromus|00011195|6280765||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:20.4690000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.85|92.89|0.00|0.01| +20|2023-10-06T22:03:20.4690000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|100.20|87.80|0.00|2.84| +38|2023-10-06T22:03:20.4690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.85|92.89|0.00|0.01|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:20.4690000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T22:03:20.4690000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|69675|90216|10000|10000|0||100.18|87.75|0.00|-3.12|0|0|0||||||| +30|2023-10-06T22:03:20.4690000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T22:03:20.4690000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81116|81809|8800|10000|0||99.72|87.17|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:20.4690000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T22:03:20.4690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||100.56|89.51|0.00|-1.49|0|0|0||||||| +30|2023-10-06T22:03:20.4690000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T22:03:20.4690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57480|81541|1700|10000|0||100.20|87.80|0.00|2.84|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:20.4690000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T22:03:20.4690000-07:00|10FF0003|Gegehi Gehi|005A5A23|62110|73814|4750|10000|0||100.18|86.69|0.00|-3.11|0|0|0|||||||||| +30|2023-10-06T22:03:20.4690000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T22:03:20.4690000-07:00|10FF000B|Pusu Rosu|005A5A18|76612|79209|9643|10000|0||98.25|88.97|0.00|-0.39|0|0|0||||||| +30|2023-10-06T22:03:20.4690000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF000B|Pusu Rosu|00|79209|44| +38|2023-10-06T22:03:20.4690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57710|83502|10000|10000|0||99.17|88.15|0.00|-1.74|0|0|0|||||||||| +30|2023-10-06T22:03:20.4690000-07:00|B7D|Magic Vulnerability Up|0.00|400215A2|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +37|2023-10-06T22:03:20.5140000-07:00|40021585|Zeromus|00011193|6270501||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:20.5140000-07:00|10FF0003|Gegehi Gehi|00011193|62110|73814|4750|10000|0||100.18|86.69|0.00|-3.11|2300|0|0|01|010004D3|0|41F00000|| +38|2023-10-06T22:03:20.5140000-07:00|10FF0003|Gegehi Gehi|005A5A23|62110|73814|4750|10000|0||100.18|86.69|0.00|-3.11|0|0|0|||||||||| +37|2023-10-06T22:03:20.5580000-07:00|40021585|Zeromus|00011196|6267568||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:20.5580000-07:00|10FF000A|Dukaro Nezikaro|0001118F|70560||||||99.19|89.04|0.00|-1.69| +21|2023-10-06T22:03:20.5580000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|2F140000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6280765|40478540|10000|10000|||100.00|80.10|0.00|0.00|62110|73814|4750|10000|||100.18|86.69|0.00|-3.11|00011198|0|1| +37|2023-10-06T22:03:20.6910000-07:00|10FF0008|Kokosaze Lulusaze|00011194|69675|90216|10000|10000|0||100.18|87.75|0.00|-3.12|1F00|0|0|01|02000031|296C|41F00000|| +26|2023-10-06T22:03:20.6910000-07:00|31|Medicated|30.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|296C|90216|90216| +37|2023-10-06T22:03:20.6910000-07:00|10FF0008|Kokosaze Lulusaze|0001118F|82272||||||100.18|87.75|0.00|-3.12| +38|2023-10-06T22:03:20.6910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|82272|90216|10000|10000|0||100.18|87.75|0.00|-3.12|0|0|0|||||||||| +261|2023-10-06T22:03:20.4530000-07:00|Change|10FF0003||| +37|2023-10-06T22:03:20.8240000-07:00|40021585|Zeromus|00011197|6255543||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:20.8240000-07:00|10FF0004|Buhojaqe Zijaqe|0001118F|77525||||||100.23|87.69|0.00|3.03| +21|2023-10-06T22:03:20.8690000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6267568|40478540|10000|10000|||100.00|80.10|0.00|0.00|62110|73814|4750|10000|||100.18|86.69|0.00|-3.11|00011199|0|1| +21|2023-10-06T22:03:21.0030000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|98C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6255543|40478540|10000|10000|||100.00|80.10|0.00|0.00|82272|90216|10000|10000|||100.18|87.80|0.00|2.25|0001119A|0|1| +261|2023-10-06T22:03:20.7320000-07:00|Change|10FF0006||||||| +21|2023-10-06T22:03:21.0910000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|38190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6255543|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.81|96.81|0.00|-0.01|0001119B|0|1| +39|2023-10-06T22:03:21.1350000-07:00|10FF0004|Buhojaqe Zijaqe|78340|81541|1900|10000|||100.24|87.63|0.00|-3.11| +261|2023-10-06T22:03:20.9640000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:20.9640000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:03:21.2250000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +39|2023-10-06T22:03:21.3130000-07:00|400219C2|Carbuncle|77698|77698|10000|10000|||98.04|87.11|0.00|-3.02| +261|2023-10-06T22:03:21.1920000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:03:21.4030000-07:00|40021585|Zeromus|00011199|6255542||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:21.4030000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|754003|3CE40000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6255543|40478540|10000|10000|||100.00|80.10|0.00|0.00|78340|81541|1900|10000|||100.24|87.63|0.00|-3.11|0001119C|0|1| +39|2023-10-06T22:03:21.4910000-07:00|10FF0003|Gegehi Gehi|62848|73814|4950|10000|||100.32|87.11|0.00|1.24| +21|2023-10-06T22:03:21.4910000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3EB60000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|6255543|40478540|10000|10000|||100.00|80.10|0.00|0.00|82272|90216|10000|10000|||100.23|89.16|0.00|1.96|0001119D|0|1| +21|2023-10-06T22:03:21.5800000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|265D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6255542|40478540|10000|10000|||100.00|80.10|0.00|0.00|62848|73814|4950|10000|||100.52|87.77|0.00|0.98|0001119E|0|1| +24|2023-10-06T22:03:21.6690000-07:00|40021585|Zeromus|DoT|0|1128|6255542|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||101.08|96.29|0.00|-1.49| +38|2023-10-06T22:03:21.6690000-07:00|40021585|Zeromus|005A5A00|6251150|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:03:21.7140000-07:00|40021585|Zeromus|0001119B|6236789||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:21.7140000-07:00|40021585|Zeromus|00011198|6224737||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:21.4700000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:03:21.7580000-07:00|40021585|Zeromus|0001119A|6222293||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:21.7580000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|17E70000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|6224737|40478540|10000|10000|||100.00|80.10|0.00|0.00|70560|83502|10000|10000|||98.28|96.62|0.00|-0.29|0001119F|0|1| +21|2023-10-06T22:03:21.7580000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6224737|40478540|10000|10000|||100.00|80.10|0.00|0.00|70560|83502|10000|10000|||98.28|96.62|0.00|-0.29|000111A0|0|1| +261|2023-10-06T22:03:21.4700000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:03:21.8920000-07:00|10FF0006|Wowobora Gogobora|64DF|Ruby Rite|40021585|Zeromus|154003|6A120000|1B|64DF8000|0|0|0|0|0|0|0|0|0|0|0|0|6222293|40478540|10000|10000|||100.00|80.10|0.00|0.00|81116|81809|8800|10000|||99.72|87.17|0.00|3.10|000111A1|0|1| +261|2023-10-06T22:03:21.7780000-07:00|Change|10FF0006||||||||||||||||| +21|2023-10-06T22:03:22.1150000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|14E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6222293|40478540|10000|10000|||100.00|80.10|0.00|0.00|82272|90216|10000|10000|||100.34|91.72|0.00|1.64|000111A2|0|1| +37|2023-10-06T22:03:22.1600000-07:00|40021585|Zeromus|0001119F|6216174||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:22.1600000-07:00|10FF0008|Kokosaze Lulusaze|83174|90216|10000|10000|||100.36|92.46|0.00|-3.11| +37|2023-10-06T22:03:22.2040000-07:00|40021585|Zeromus|0001119C|6200586||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:21.8940000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:03:22.2930000-07:00|40021585|Zeromus|0001119D|6184532||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:22.2930000-07:00|40021585|Zeromus|000111A0|6181887||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:22.2930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6E20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6200586|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||101.09|96.35|0.00|-1.49|000111A3|0|1| +31|2023-10-06T22:03:22.2930000-07:00|10FF0001||||| +261|2023-10-06T22:03:22.1260000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T22:03:22.4710000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|22370000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|62848|73814|4950|10000|||102.05|93.08|0.00|0.42|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111A4|0|1| +37|2023-10-06T22:03:22.5150000-07:00|40021585|Zeromus|000111A1|6154733||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:22.5150000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|29760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6181887|40478540|10000|10000|||100.00|80.10|0.00|0.00|70560|83502|10000|10000|||99.21|97.70|0.00|0.89|000111A5|0|1| +261|2023-10-06T22:03:22.2380000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:03:22.5600000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35714003|25960000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|6181887|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||101.09|96.35|0.00|-3.07|000111A6|0|1| +20|2023-10-06T22:03:22.5600000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|97.86|98.00|0.00|0.08| +21|2023-10-06T22:03:22.6940000-07:00|10FF0006|Wowobora Gogobora|64F0|Summon Garuda II|40021585|Zeromus|3E|9D8000|33E|10A8000|F|AA58000|1B|64F08000|0|0|0|0|0|0|0|0|6154733|40478540|10000|10000|||100.00|80.10|0.00|0.00|81116|81809|8500|10000|||99.72|87.17|0.00|1.57|000111A7|0|1| +38|2023-10-06T22:03:22.6940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81116|81809|8500|10000|0||99.72|87.17|0.00|1.57|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:22.6940000-07:00|AA5|Garuda's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:22.4190000-07:00|Change|400219C2||||||||| +38|2023-10-06T22:03:22.7380000-07:00|400219C7||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:03:22.7380000-07:00|40021585|Zeromus|0001119E|6144912||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:22.7380000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|213B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6154733|40478540|10000|10000|||100.00|80.10|0.00|0.00|83174|90216|10000|10000|||100.51|95.83|0.00|1.28|000111A8|0|1| +38|2023-10-06T22:03:22.7380000-07:00|400219C7||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:03:22.4190000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:03:22.8270000-07:00|40021585|Zeromus|000111A3|6143150||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:22.8270000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||101.09|96.35|0.00|-3.07| +261|2023-10-06T22:03:22.6120000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:22.9160000-07:00|40021585|Zeromus|000111A2|6137798||||||100.00|80.10|0.00|0.00| +03|2023-10-06T22:03:22.6120000-07:00|400219C7|Emerald Garuda|00|5A|10FF0006|00||10263|13506|74223|77698|10000|10000|||102.23|90.13|0.00|-3.11| +261|2023-10-06T22:03:22.6120000-07:00|Add|400219C7||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:22.7130000-07:00|Change|400219C7||||| +38|2023-10-06T22:03:23.0490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|78340|81541|2050|10000|0||101.04|95.04|0.00|0.12|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:03:22.8320000-07:00|Change|10FF0008||||||||| +20|2023-10-06T22:03:23.0940000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.04|95.04|0.00|0.12| +20|2023-10-06T22:03:23.0940000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|103.71|96.53|0.00|0.52| +37|2023-10-06T22:03:23.1390000-07:00|40021585|Zeromus|000111A5|6127184||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:23.1390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81116|81809|8500|10000|0||99.89|87.48|0.00|-3.11|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:03:23.1840000-07:00|10FF0006|Wowobora Gogobora|81809|81809|8700|10000|||100.05|87.77|0.00|-3.11| +261|2023-10-06T22:03:22.9460000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:03:23.2730000-07:00|10FF0003|Gegehi Gehi|000111A4|71607||||||103.83|96.72|0.00|1.33| +37|2023-10-06T22:03:23.3170000-07:00|40021585|Zeromus|000111A6|6117562||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:23.3180000-07:00|10FF0001|Sesuga Sapisuga|000111A6|129071|129071|10000|10000|0||101.09|96.35|0.00|-3.07|1300|0|0|0| +21|2023-10-06T22:03:23.3180000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BC20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6127184|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.84|97.95|0.00|0.00|000111A9|0|1| +21|2023-10-06T22:03:23.3180000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8700|10000|||100.20|88.04|0.00|-3.11|81809|81809|8700|10000|||100.20|88.04|0.00|-3.11|000111AA|0|1| +37|2023-10-06T22:03:23.3630000-07:00|40021585|Zeromus|000111A8|6109055||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:23.3630000-07:00|10FF000B|Pusu Rosu|77404|79209|9924|10000|||98.34|99.14|0.00|0.06| +39|2023-10-06T22:03:23.3630000-07:00|10FF000A|Dukaro Nezikaro|71395|83502|10000|10000|||99.26|97.76|0.00|3.10| +35|2023-10-06T22:03:23.4070000-07:00|40021584||40021585|Zeromus|0000|0000|0109|||| +21|2023-10-06T22:03:23.4070000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3DFC0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.84|97.95|0.00|0.00|6117562|40478540|10000|10000|||100.00|80.10|0.00|0.00|000111AB|0|1| +261|2023-10-06T22:03:23.1650000-07:00|Change|400215A2||||||||| +257|2023-10-06T22:03:23.4070000-07:00|80034E7C|00020001|03|00|0000| +261|2023-10-06T22:03:23.1650000-07:00|Change|4002159E||||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|4002159B||||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|40021599||||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|4002159A||||||||| +00|2023-10-06T22:03:23.0000000-07:00|0044|Zeromus|All who oppose me shall be consigned to nothingness.| +39|2023-10-06T22:03:23.4510000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.84|97.95|0.00|0.00| +261|2023-10-06T22:03:23.1650000-07:00|Change|10FF0004||||||||||||||||||||||| +20|2023-10-06T22:03:23.4960000-07:00|40021585|Zeromus|8B78|Chasmic Nails|40021585|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:23.4960000-07:00|40021599|Zeromus|8B7A|Chasmic Nails|40021599|Zeromus|8.100|100.00|80.10|0.00|-1.40| +20|2023-10-06T22:03:23.4960000-07:00|4002159A|Zeromus|8B28|unknown_8b28|4002159A|Zeromus|2.700|100.00|80.10|0.00|-1.40| +20|2023-10-06T22:03:23.4960000-07:00|4002159B|Zeromus|8B7C|Chasmic Nails|4002159B|Zeromus|9.500|100.00|80.10|0.00|-0.70| +20|2023-10-06T22:03:23.4960000-07:00|4002159C|Zeromus|8B2A|unknown_8b2a|4002159C|Zeromus|4.700|100.00|80.10|0.00|-0.70| +20|2023-10-06T22:03:23.4960000-07:00|4002159D|Zeromus|8B7D|Chasmic Nails|4002159D|Zeromus|10.200|100.00|80.10|0.00|1.40| +20|2023-10-06T22:03:23.4960000-07:00|4002159E|Zeromus|8B2B|unknown_8b2b|4002159E|Zeromus|5.700|100.00|80.10|0.00|1.40| +20|2023-10-06T22:03:23.4960000-07:00|4002159F|Zeromus|8B79|Chasmic Nails|4002159F|Zeromus|7.400|100.00|80.10|0.00|0.70| +20|2023-10-06T22:03:23.4960000-07:00|400215A0|Zeromus|8B27|unknown_8b27|400215A0|Zeromus|1.200|100.00|80.10|0.00|0.70| +20|2023-10-06T22:03:23.4960000-07:00|400215A1|Zeromus|8B7B|Chasmic Nails|400215A1|Zeromus|8.800|100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:23.4960000-07:00|400215A3|Zeromus|8B82|Dimensional Surge|400215A3|Zeromus|8.700|80.10|100.00|0.00|1.57| +20|2023-10-06T22:03:23.4960000-07:00|400215A2|Zeromus|8B29|unknown_8b29|400215A2|Zeromus|3.700|100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:23.1650000-07:00|Change|40021585||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|4002159F||||||||||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|400215A0||||||||||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:03:23.1650000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:03:23.2650000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T22:03:23.5400000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16630000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|6109055|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.84|97.95|0.00|0.00|000111AC|0|1| +21|2023-10-06T22:03:23.6740000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|C1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6109055|40478540|10000|10000|||100.00|80.10|0.00|0.00|83174|90216|10000|10000|||100.72|101.10|0.00|0.77|000111AD|0|1| +37|2023-10-06T22:03:23.7180000-07:00|10FF0006|Wowobora Gogobora|000111A7|81809|81809|8700|10000|0||101.03|91.94|0.00|0.11|1B00|0|0|01|0AA5|0|0|| +38|2023-10-06T22:03:23.7180000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|8700|10000|0||101.03|91.94|0.00|0.11|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:23.4490000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:03:23.4490000-07:00|Change|400219C7||| +261|2023-10-06T22:03:23.4490000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:03:23.8510000-07:00|40021585|Zeromus|000111A9|6106045||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:23.5440000-07:00|Change|10FF0001||| +37|2023-10-06T22:03:23.9410000-07:00|10FF0006|Wowobora Gogobora|000111AA|81809|81809|8700|10000|0||101.29|93.36|-0.02|0.12|1B00|0|0|01|010004B4|0|41A80000|| +26|2023-10-06T22:03:23.9410000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T22:03:23.9410000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6106045|40478540|10000|10000|||100.00|80.10|0.00|0.00|71395|83502|10000|10000|||99.26|97.76|0.00|3.10|000111AE|0|1| +261|2023-10-06T22:03:23.6430000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T22:03:23.6430000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T22:03:23.6430000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:03:23.6430000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T22:03:23.6430000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T22:03:23.6430000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T22:03:23.6430000-07:00|Change|40021599||||||||||||| +21|2023-10-06T22:03:23.9850000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|34BA0000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|6106045|40478540|10000|10000|||100.00|80.10|0.00|0.00|83174|90216|10000|10000|||100.78|102.64|0.00|0.11|000111AF|0|1| +21|2023-10-06T22:03:23.9850000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6106045|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|8700|10000|||101.29|93.36|-0.02|0.12|000111B0|0|1| +21|2023-10-06T22:03:23.9850000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|398A0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|6106045|40478540|10000|10000|||100.00|80.10|0.00|0.00|71395|83502|10000|10000|||99.26|97.76|0.00|3.10|000111B1|0|1| +21|2023-10-06T22:03:24.0290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|52390000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|6106045|40478540|10000|10000|||100.00|80.10|0.00|0.00|78340|81541|2050|10000|||101.06|95.48|0.00|-3.07|000111B2|0|1| +22|2023-10-06T22:03:24.0290000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|200004|2ED00000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|000111B3|0|8| +22|2023-10-06T22:03:24.0290000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|4|1F360000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|71395|83502|10000|10000|||99.26|97.76|0.00|3.10|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|000111B3|1|8| +22|2023-10-06T22:03:24.0290000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|1EA40000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.84|97.95|0.00|3.13|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|000111B3|2|8| +22|2023-10-06T22:03:24.0290000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|1E2F0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||101.08|96.29|0.00|-1.87|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|000111B3|3|8| +22|2023-10-06T22:03:24.0290000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|200004|301C0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|83174|90216|10000|10000|||100.78|102.76|0.00|-3.11|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|000111B3|4|8| +22|2023-10-06T22:03:24.0290000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|1ECD0000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|78340|81541|2050|10000|||101.06|95.48|0.00|-3.07|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|000111B3|5|8| +22|2023-10-06T22:03:24.0290000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|1E410000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81809|81809|8700|10000|||101.52|94.79|0.00|0.13|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|000111B3|6|8| +22|2023-10-06T22:03:24.0290000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|1FA80000|BDCA0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|71607|73814|4950|10000|||103.96|96.94|0.00|-2.91|77404|79209|9924|10000|||98.34|99.14|0.00|0.06|000111B3|7|8| +37|2023-10-06T22:03:24.0720000-07:00|40021585|Zeromus|000111AC|6100314||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:24.1170000-07:00|10FF0004|Buhojaqe Zijaqe|79155|81541|1850|10000|||101.06|95.48|0.00|-3.07| +261|2023-10-06T22:03:23.8300000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:03:24.2070000-07:00|10FF0007|Kehabiqo Febiqo|000111AB|113976||||||99.84|97.95|0.00|3.13| +39|2023-10-06T22:03:24.2070000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:24.2510000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|950000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6100314|40478540|10000|10000|||100.00|80.10|0.00|0.00|79155|81541|1850|10000|||101.06|95.48|0.00|-3.07|000111B4|0|1| +37|2023-10-06T22:03:24.3840000-07:00|40021585|Zeromus|000111B1|6085584||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:24.4280000-07:00|40021585|Zeromus|000111AD|6082482||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:24.1470000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:03:24.4720000-07:00|40021585|Zeromus|000111AE|6079584||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:24.4720000-07:00|10FF0003|Gegehi Gehi|72345|73814|5150|10000|||103.96|96.94|0.00|-2.91| +37|2023-10-06T22:03:24.5200000-07:00|40021585|Zeromus|000111B0|6079388||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:24.5200000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|456003|496B0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|6082482|40478540|10000|10000|||100.00|80.10|0.00|0.00|71607|73814|4950|10000|||103.96|96.94|0.00|-2.91|000111B5|0|1| +38|2023-10-06T22:03:24.5200000-07:00|10FF0003|Gegehi Gehi|005A5A23|72345|73814|4950|10000|0||103.96|96.94|0.00|-2.91|0|0|0|||||||||| +30|2023-10-06T22:03:24.5200000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:03:24.5200000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:03:24.5630000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|15160000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6082482|40478540|10000|10000|||100.00|80.10|0.00|0.00|83174|90216|10000|10000|||100.79|102.80|-0.02|-3.11|000111B6|0|1| +21|2023-10-06T22:03:24.5630000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6082482|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.97|94.70|0.00|-1.79|000111B7|0|1| +31|2023-10-06T22:03:24.5630000-07:00|10FF0001||||| +261|2023-10-06T22:03:24.2420000-07:00|Change|10FF0003||||||||||||||||||||| +24|2023-10-06T22:03:24.6510000-07:00|40021585|Zeromus|DoT|0|F9E|6079388|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||100.62|94.19|0.00|-1.74| +38|2023-10-06T22:03:24.6510000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||105.00|99.60|0.00|-2.89|0|0|0||||||| +26|2023-10-06T22:03:24.6510000-07:00|30|Well Fed|1027.70|10FF0004|Buhojaqe Zijaqe|400219AD|Ruby Carbuncle|2968|77430|81541| +26|2023-10-06T22:03:24.6510000-07:00|7AC|Summon Order II|30.00|400219AD|Ruby Carbuncle|400219AD|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:03:24.6510000-07:00|10FF0004|Buhojaqe Zijaqe|409A|Fey Illumination|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79155|81541|1850|10000|||101.21|95.81|0.00|1.42|79155|81541|1850|10000|||101.21|95.81|0.00|1.42|000111B8|0|1| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|41D80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6079388|40478540|10000|10000|||100.00|80.10|0.00|0.00|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|0|9| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|314D0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|1|9| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|32CA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|71395|83502|10000|10000|||99.26|97.76|0.00|3.10|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|2|9| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|32CC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|113976|129844|10000|10000|||99.80|97.93|0.00|-2.62|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|3|9| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0008|Kokosaze Lulusaze|200004|4C080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83174|90216|10000|10000|||100.79|102.80|0.00|-3.11|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|4|9| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0006|Wowobora Gogobora|4|31B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8700|10000|||102.20|97.21|0.00|0.31|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|5|9| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0004|Buhojaqe Zijaqe|200004|49DC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79155|81541|1850|10000|||101.21|95.81|0.00|1.42|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|6|9| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|31FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.62|94.19|0.00|-1.74|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|7|9| +22|2023-10-06T22:03:24.6510000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|30B50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|72345|73814|4950|10000|||103.96|96.94|0.00|-2.91|77404|79209|8924|10000|||98.34|99.18|0.00|0.06|000111B9|8|9| +38|2023-10-06T22:03:24.6510000-07:00|40021585|Zeromus|005A5A00|6075390|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T22:03:24.2420000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:03:24.3370000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T22:03:24.3370000-07:00|Change|400219C2||| +22|2023-10-06T22:03:24.7400000-07:00|400219AD|Ruby Carbuncle|325|Fey Illumination|10FF0006|Wowobora Gogobora|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|8700|10000|||102.76|97.65|0.00|0.59|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111BA|0|8| +22|2023-10-06T22:03:24.7400000-07:00|400219AD|Ruby Carbuncle|325|Fey Illumination|10FF0003|Gegehi Gehi|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|72345|73814|4950|10000|||103.96|96.94|0.00|-2.91|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111BA|1|8| +22|2023-10-06T22:03:24.7400000-07:00|400219AD|Ruby Carbuncle|325|Fey Illumination|10FF0004|Buhojaqe Zijaqe|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|79155|81541|1850|10000|||101.49|96.40|0.00|1.15|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111BA|2|8| +22|2023-10-06T22:03:24.7400000-07:00|400219AD|Ruby Carbuncle|325|Fey Illumination|10FF0008|Kokosaze Lulusaze|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|83174|90216|10000|10000|||100.79|102.80|0.00|-3.11|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111BA|3|8| +22|2023-10-06T22:03:24.7400000-07:00|400219AD|Ruby Carbuncle|325|Fey Illumination|10FF000B|Pusu Rosu|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|77404|79209|8924|10000|||98.34|99.20|0.00|0.05|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111BA|4|8| +22|2023-10-06T22:03:24.7400000-07:00|400219AD|Ruby Carbuncle|325|Fey Illumination|10FF000A|Dukaro Nezikaro|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|71395|83502|10000|10000|||99.26|97.76|0.00|3.10|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111BA|5|8| +22|2023-10-06T22:03:24.7400000-07:00|400219AD|Ruby Carbuncle|325|Fey Illumination|10FF0001|Sesuga Sapisuga|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.42|93.63|0.00|-1.74|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111BA|6|8| +22|2023-10-06T22:03:24.7400000-07:00|400219AD|Ruby Carbuncle|325|Fey Illumination|10FF0007|Kehabiqo Febiqo|FB0A0E|13D0000|1B|3258000|0|0|0|0|0|0|0|0|0|0|0|0|113976|129844|10000|10000|||99.78|97.93|0.00|-2.32|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|000111BA|7|8| +37|2023-10-06T22:03:24.7860000-07:00|40021585|Zeromus|000111AF|6061892||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:24.7860000-07:00|40021585|Zeromus|000111B4|6061743||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:24.7860000-07:00|400219C7|Emerald Garuda|64FE|Aerial Blast|40021585|Zeromus|354003|7ECF0000|1B|64FE8000|0|0|0|0|0|0|0|0|0|0|0|0|6075390|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||102.23|90.13|0.00|-3.11|000111BB|0|1| +37|2023-10-06T22:03:24.8290000-07:00|40021585|Zeromus|000111B2|6040694||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:24.8720000-07:00|10FF000B|Pusu Rosu|000111B3|79209|79209|8924|10000|0||98.52|99.45|0.00|0.19|1800|0|0|01|02000096|0|41700000|| +26|2023-10-06T22:03:24.8720000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:03:24.9630000-07:00|400215A0|Zeromus|8B27|unknown_8b27|400215A0|Zeromus|1B|8B278000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.70|44|44|0|10000|||100.00|80.10|0.00|0.70|000111BC|0|1| +261|2023-10-06T22:03:24.5850000-07:00|Change|400215A0||||||||||||| +37|2023-10-06T22:03:25.0070000-07:00|10FF000A|Dukaro Nezikaro|000111B3|79385|83502|10000|10000|0||99.26|97.76|0.00|3.10|1E01|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:03:25.0070000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:03:24.7050000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:25.0970000-07:00|40021585|Zeromus|000111B7|6038957||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:25.0970000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41714003|336B0000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|6040694|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.29|91.78|0.00|-2.77|000111BD|0|1| +38|2023-10-06T22:03:25.0970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.29|91.78|0.00|-2.77|0|0|0||||||||||||| +26|2023-10-06T22:03:25.0970000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:03:25.0970000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:03:25.1400000-07:00|10FF0007|Kehabiqo Febiqo|000111B3|121820|129844|10000|10000|0||98.67|95.53|0.00|-2.05|1502|0|0|01|01000096|0|41700000|| +26|2023-10-06T22:03:25.1400000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +39|2023-10-06T22:03:25.1400000-07:00|10FF0008|Kokosaze Lulusaze|84076|90216|10000|10000|||100.79|102.80|0.00|-3.11| +20|2023-10-06T22:03:25.1400000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|2.982|104.84|97.72|0.00|1.53| +21|2023-10-06T22:03:25.1860000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|16710000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6038957|40478540|10000|10000|||100.00|80.10|0.00|0.00|83174|90216|10000|10000|||100.79|102.80|0.00|-3.11|000111BE|0|1| +37|2023-10-06T22:03:25.2750000-07:00|10FF0001|Sesuga Sapisuga|000111B3|129071|129071|10000|10000|0||100.35|90.54|0.00|-2.99|1303|0|0|03|0200076E|03|C1F00000|||||||||| +26|2023-10-06T22:03:25.2750000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:03:25.3190000-07:00|40021585|Zeromus|000111B5|6020162||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:25.3190000-07:00|40021585|Zeromus|000111B9|6003306||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:25.3190000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|756003|13B30000|BDA40E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|6038957|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8924|10000|||99.85|100.90|0.00|0.47|000111BF|0|1| +37|2023-10-06T22:03:25.3650000-07:00|40021585|Zeromus|000111B6|5997908||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:25.4080000-07:00|10FF0008|Kokosaze Lulusaze|000111B3|90216|90216|10000|10000|0||100.79|102.83|0.00|2.52|1F04|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:03:25.4080000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:03:25.4540000-07:00|10FF000B|Pusu Rosu|000111B9|79209|79209|9024|10000|0||100.17|101.28|0.00|-3.11|1801|0|0|0| +37|2023-10-06T22:03:25.5420000-07:00|10FF0006|Wowobora Gogobora|000111BA|81809|81809|8700|10000|0||105.59|97.29|0.00|3.12|1B00|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T22:03:25.5420000-07:00|13D|Fey Illumination|20.00|400219AD|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +37|2023-10-06T22:03:25.5420000-07:00|10FF0004|Buhojaqe Zijaqe|000111B3|81541|81541|1850|10000|0||102.33|94.11|0.00|2.33|1C05|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:03:25.5420000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +37|2023-10-06T22:03:25.5870000-07:00|10FF000A|Dukaro Nezikaro|000111B9|83502||||||99.26|97.76|0.00|3.10| +20|2023-10-06T22:03:25.5870000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|102.33|94.11|0.00|2.33| +21|2023-10-06T22:03:25.5870000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|554003|32E90000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|5997908|40478540|10000|10000|||100.00|80.10|0.00|0.00|72345|73814|4950|10000|||103.89|96.85|0.00|-2.57|000111C0|0|1| +38|2023-10-06T22:03:25.5870000-07:00|10FF0003|Gegehi Gehi|005A5A23|72345|73814|4650|10000|0||103.89|96.85|0.00|-2.57|0|0|0|||||||||| +30|2023-10-06T22:03:25.5870000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:03:25.2570000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:03:25.2570000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:03:25.2570000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T22:03:25.6750000-07:00|40021585|Zeromus|000111BD|5984745||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:25.6750000-07:00|10FF0001|Sesuga Sapisuga|000111BD|129071|129071|10000|10000|0||100.09|87.94|0.00|-3.04|1300|0|0|02|0200076E|03|41F00000|||||| +37|2023-10-06T22:03:25.6750000-07:00|10FF0003|Gegehi Gehi|000111BA|72345|73814|4650|10000|0||103.56|96.08|0.00|-2.94|2301|0|0|01|0100013D|0|41A00000|| +26|2023-10-06T22:03:25.6750000-07:00|13D|Fey Illumination|20.00|400219AD|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +37|2023-10-06T22:03:25.6760000-07:00|10FF0006|Wowobora Gogobora|000111B3|81809|81809|8700|10000|0||105.73|97.22|0.00|-2.83|1B06|0|0|01|04000096|0|41700000|| +26|2023-10-06T22:03:25.6760000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:03:25.6760000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.09|87.94|0.00|-3.04|0|0|0|||||||||||||||| +37|2023-10-06T22:03:25.7200000-07:00|10FF0007|Kehabiqo Febiqo|000111B9|129844||||||96.94|92.87|0.00|-2.23| +261|2023-10-06T22:03:25.3590000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:03:25.8090000-07:00|40021585|Zeromus|000111BE|5979000||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:25.8090000-07:00|10FF0004|Buhojaqe Zijaqe|000111BA|81541|81541|1850|10000|0||102.37|92.88|0.00|2.80|1C02|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T22:03:25.8090000-07:00|13D|Fey Illumination|20.00|400219AD|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T22:03:25.8090000-07:00|10FF0003|Gegehi Gehi|000111B3|73814|73814|4650|10000|0||103.24|95.35|0.00|-2.94|2307|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:03:25.8090000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +39|2023-10-06T22:03:25.8090000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.50|87.44|0.00|-3.04| +21|2023-10-06T22:03:25.8090000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5984745|40478540|10000|10000|||100.00|80.10|0.00|0.00|72345|73814|4650|10000|||103.24|95.35|0.00|-2.94|000111C1|0|1| +37|2023-10-06T22:03:25.9420000-07:00|10FF0008|Kokosaze Lulusaze|000111BA|90216|90216|10000|10000|0||102.06|103.90|0.00|0.91|1F03|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T22:03:25.9420000-07:00|13D|Fey Illumination|20.00|400219AD|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +21|2023-10-06T22:03:25.9860000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|20460000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|5979000|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||95.69|91.62|0.00|-2.45|000111C2|0|1| +261|2023-10-06T22:03:25.5530000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:26.0750000-07:00|10FF000B|Pusu Rosu|000111BA|79209|79209|9024|10000|0||100.63|101.82|0.00|-3.11|1804|0|0|01|0300013D|0|41A00000|| +26|2023-10-06T22:03:26.0750000-07:00|13D|Fey Illumination|20.00|400219AD|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +37|2023-10-06T22:03:26.0750000-07:00|40021585|Zeromus|000111BB|5946537||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:26.0750000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1D7C|90216|90216|10000|10000|||103.36|104.83|0.00|0.94|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +24|2023-10-06T22:03:26.0750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|126A|81541|81541|1850|10000|||102.37|91.69|-0.01|-2.94|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1850|10000|||102.37|91.69|-0.01|-2.94| +38|2023-10-06T22:03:26.0750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||103.36|104.83|0.00|0.94|0|0|0|||||||||||||||| +38|2023-10-06T22:03:26.0750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2400|10000|0||102.37|91.69|-0.01|-2.94|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:03:26.1200000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|121B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5979000|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.26|97.72|0.00|2.98|000111C3|0|1| +261|2023-10-06T22:03:25.7420000-07:00|Change|10FF0007||||||||| +24|2023-10-06T22:03:26.1640000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1C9F|81809|81809|8700|10000|||105.73|97.22|0.00|-2.82|10FF0006|Wowobora Gogobora|0|81809|81809|8700|10000|||105.73|97.22|0.00|-2.82| +38|2023-10-06T22:03:26.1640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9250|10000|0||105.73|97.22|0.00|-2.82|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:26.2090000-07:00|10FF000A|Dukaro Nezikaro|000111BA|83502|83502|10000|10000|0||99.29|97.17|0.00|3.11|1E05|0|0|01|0400013D|0|41A00000|| +26|2023-10-06T22:03:26.2090000-07:00|13D|Fey Illumination|20.00|400219AD|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +39|2023-10-06T22:03:26.2090000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9450|10000|||105.73|97.22|0.00|-2.82| +261|2023-10-06T22:03:25.9740000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:03:25.9740000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:03:26.3430000-07:00|10FF0001|Sesuga Sapisuga|000111BA|129071|129071|10000|10000|0||101.28|85.77|0.00|-3.01|1306|0|0|01|0500013D|0|41A00000|| +26|2023-10-06T22:03:26.3430000-07:00|13D|Fey Illumination|20.00|400219AD|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T22:03:26.3430000-07:00|40021585|Zeromus|000111C1|5946536||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:26.3430000-07:00|10FF000B|Pusu Rosu|79209|79209|9305|10000|||100.65|101.78|0.00|2.79| +39|2023-10-06T22:03:26.3430000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.35|96.02|0.00|3.11| +21|2023-10-06T22:03:26.3430000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A050000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5946537|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||104.99|105.90|0.00|0.99|000111C4|0|1| +38|2023-10-06T22:03:26.3430000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2400|10000|0||102.37|91.69|0.00|-2.94|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:26.3430000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:03:26.3880000-07:00|40021585|Zeromus|000111C0|5933503||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:26.3880000-07:00|10FF0003|Gegehi Gehi|HoT|0|1C80|73814|73814|4650|10000|||102.17|91.55|0.00|-2.92|10FF000B|Pusu Rosu|0|79209|79209|9024|10000|||100.65|101.78|0.00|2.79| +38|2023-10-06T22:03:26.3880000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4650|10000|0||102.17|91.55|0.00|-2.92|0|0|0||||||||||||| +24|2023-10-06T22:03:26.4330000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|127C|83502|83502|10000|10000|||99.37|95.66|0.00|3.11|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +38|2023-10-06T22:03:26.4330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.37|95.66|0.00|3.11|0|0|0|||||||||||||||| +37|2023-10-06T22:03:26.4760000-07:00|10FF0007|Kehabiqo Febiqo|000111BA|129844|129844|10000|10000|0||95.26|88.46|0.00|3.09|1507|0|0|01|0200013D|0|41A00000|| +26|2023-10-06T22:03:26.4760000-07:00|13D|Fey Illumination|20.00|400219AD|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +39|2023-10-06T22:03:26.4760000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||95.26|88.46|0.00|3.09| +24|2023-10-06T22:03:26.4760000-07:00|10FF000B|Pusu Rosu|HoT|0|11FD|79209|79209|9305|10000|||100.78|100.98|0.00|2.84|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:26.4760000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|32D70000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|5933503|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||105.49|106.13|0.00|1.02|000111C5|0|1| +21|2023-10-06T22:03:26.4760000-07:00|4002159A|Zeromus|8B28|unknown_8b28|4002159A|Zeromus|1B|8B288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-1.40|44|44|0|10000|||100.00|80.10|0.00|-1.40|000111C6|0|1| +38|2023-10-06T22:03:26.4760000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||105.00|99.60|0.00|-2.89|0|0|0|||| +30|2023-10-06T22:03:26.4760000-07:00|7AC|Summon Order II|0.00|400219AD|Ruby Carbuncle|400219AD|Ruby Carbuncle|01|77430|77430| +38|2023-10-06T22:03:26.4760000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9305|10000|0||100.78|100.98|0.00|2.84|0|0|0||||||||||||| +261|2023-10-06T22:03:26.0900000-07:00|Change|4002159A||||||||||||| +21|2023-10-06T22:03:26.5200000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|32260000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5933503|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2400|10000|||102.37|91.69|0.00|-2.94|000111C7|0|1| +04|2023-10-06T22:03:26.0900000-07:00|400219C2|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||98.04|87.11|0.00|-3.02| +261|2023-10-06T22:03:26.0900000-07:00|Remove|400219C2| +24|2023-10-06T22:03:26.5650000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1223|129844|129844|10000|10000|||95.26|88.46|0.00|3.09|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||95.26|88.46|0.00|3.09| +38|2023-10-06T22:03:26.5650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||95.26|88.46|0.00|3.09|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:26.1900000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:03:26.6100000-07:00|40021585|Zeromus|000111C2|5925241||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:26.6100000-07:00|40021585|Zeromus|000111BF|5920198|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200074F|0|41F00000|| +26|2023-10-06T22:03:26.6100000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +261|2023-10-06T22:03:26.2810000-07:00|Change|10FF0006||||||| +37|2023-10-06T22:03:26.6540000-07:00|40021585|Zeromus|000111C3|5915563||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:26.6540000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|12E6|129071|129071|10000|10000|||100.77|85.63|0.00|-3.02|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +38|2023-10-06T22:03:26.6540000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.77|85.63|0.00|-3.02|0|0|0||||||||||||||||||| +21|2023-10-06T22:03:26.6990000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|E6E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5933503|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||95.75|88.06|0.00|3.06|000111C8|0|1| +261|2023-10-06T22:03:26.3780000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:03:26.8320000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|A9B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5915563|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.63|85.46|0.00|-3.02|000111C9|0|1| +31|2023-10-06T22:03:26.8320000-07:00|10FF0001||||| +261|2023-10-06T22:03:26.5640000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:03:27.0990000-07:00|40021585|Zeromus|000111C4|5912998||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:27.0990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2200|10000|||102.37|91.69|0.00|-2.94| +38|2023-10-06T22:03:27.1890000-07:00|40021585|Zeromus|005A5A00|5912998|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:03:27.1890000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +37|2023-10-06T22:03:27.2320000-07:00|40021585|Zeromus|000111C8|5909304||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:27.2320000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:27.2320000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||106.79|106.61|0.00|1.64|90216|90216|10000|10000|||106.79|106.61|0.00|1.64|000111CA|0|1| +21|2023-10-06T22:03:27.2320000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|410A0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|5912998|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.14|95.68|0.00|-1.98|000111CB|0|1| +261|2023-10-06T22:03:26.7850000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:03:27.2780000-07:00|40021585|Zeromus|000111C5|5896289||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:27.3220000-07:00|40021585|Zeromus|000111C7|5883451||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:27.3660000-07:00|40021585|Zeromus|000111C9|5880736||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:27.0070000-07:00|Change|40021597||||||||| +261|2023-10-06T22:03:27.0070000-07:00|Change|40021598||||||||| +261|2023-10-06T22:03:27.0070000-07:00|Change|40021594||||||||| +261|2023-10-06T22:03:27.0070000-07:00|Change|40021596||||||||| +261|2023-10-06T22:03:27.0070000-07:00|Change|400215A0||||||||| +261|2023-10-06T22:03:27.0070000-07:00|Change|40021595||||||||| +261|2023-10-06T22:03:27.0070000-07:00|Change|40021592||||||||| +261|2023-10-06T22:03:27.0070000-07:00|Change|40021593||||||||| +261|2023-10-06T22:03:27.0070000-07:00|Change|40021591||||||||| +21|2023-10-06T22:03:27.4550000-07:00|400215A2|Zeromus|8B29|unknown_8b29|400215A2|Zeromus|1B|8B298000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.00|44|44|0|10000|||100.00|80.10|0.00|0.00|000111CC|0|1| +261|2023-10-06T22:03:27.0070000-07:00|Change|400215A2||||||||||||| +20|2023-10-06T22:03:27.5000000-07:00|40021591|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|114.33|96.27|0.00|0.00| +20|2023-10-06T22:03:27.5000000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|87.33|100.77|0.00|0.00| +20|2023-10-06T22:03:27.5000000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|85.74|81.27|0.00|0.00| +20|2023-10-06T22:03:27.5000000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.33|114.27|0.00|0.00| +20|2023-10-06T22:03:27.5000000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.83|118.77|0.00|0.00| +20|2023-10-06T22:03:27.5000000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.10|82.06|0.00|0.00| +20|2023-10-06T22:03:27.5000000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|96.33|87.27|0.00|0.00| +20|2023-10-06T22:03:27.5000000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|103.87|95.83|0.00|0.00| +20|2023-10-06T22:03:27.5000000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.24|94.12|0.00|0.00| +39|2023-10-06T22:03:27.5000000-07:00|10FF0003|Gegehi Gehi|73814|73814|4850|10000|||100.49|86.11|0.00|-3.10| +261|2023-10-06T22:03:27.2170000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:03:27.5890000-07:00|10FF0006|Wowobora Gogobora|64ED|Slipstream|40021585|Zeromus|354003|57290000|10EA0F|A928000|1B|64ED8000|0|0|0|0|0|0|0|0|0|0|5880736|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9450|10000|||105.73|97.22|0.00|-2.82|000111CD|0|1| +38|2023-10-06T22:03:27.5890000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9450|10000|0||105.73|97.22|0.00|-2.82|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:27.5890000-07:00|AA5|Garuda's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:27.2170000-07:00|Change|10FF0004||||||||| +24|2023-10-06T22:03:27.6790000-07:00|40021585|Zeromus|DoT|0|1648|5880736|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9305|10000|||100.81|93.98|0.00|-3.09| +38|2023-10-06T22:03:27.6790000-07:00|40021585|Zeromus|005A5A00|5875032|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:03:27.3070000-07:00|Change|10FF0006||||||||||||| +38|2023-10-06T22:03:27.7240000-07:00|400219D2||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +38|2023-10-06T22:03:27.7240000-07:00|400219D2||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +03|2023-10-06T22:03:27.3070000-07:00|400219D2|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||106.80|110.49|0.00|0.36| +261|2023-10-06T22:03:27.3070000-07:00|Add|400219D2||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:27.7690000-07:00|40021585|Zeromus|000111CB|5858382||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:27.7690000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|29280000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|5875032|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.43|84.95|0.00|-3.05|000111CE|0|1| +38|2023-10-06T22:03:27.7690000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.43|84.95|0.00|-3.05|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:27.7690000-07:00|76E|Sword Oath|27.86|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T22:03:27.4030000-07:00|Change|400219D2||| +261|2023-10-06T22:03:27.5020000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|40021595||||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|40021598||||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|40021591||||||||||| +261|2023-10-06T22:03:27.5020000-07:00|Change|40021592||||||||||| +20|2023-10-06T22:03:27.9920000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|102.43|91.51|0.00|2.95| +20|2023-10-06T22:03:27.9920000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|100.27|85.80|0.00|3.14| +261|2023-10-06T22:03:27.6960000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:03:27.8150000-07:00|Change|10FF0003||||||||||||||||||||| +39|2023-10-06T22:03:28.1710000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||109.14|111.78|0.00|0.35| +21|2023-10-06T22:03:28.3050000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|11E40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5858382|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||93.94|91.39|0.00|2.89|000111CF|0|1| +21|2023-10-06T22:03:28.4390000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|33340000|143E|340000|4|17E58000|11B|2A8000|0|0|0|0|0|0|0|0|5858382|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||96.85|83.79|0.00|2.88|000111D0|0|1| +21|2023-10-06T22:03:28.4830000-07:00|4002159C|Zeromus|8B2A|unknown_8b2a|4002159C|Zeromus|1B|8B2A8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-0.70|44|44|0|10000|||100.00|80.10|0.00|-0.70|000111D1|0|1| +261|2023-10-06T22:03:28.0460000-07:00|Change|4002159C||||||||||||| +23|2023-10-06T22:03:28.5280000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +261|2023-10-06T22:03:28.1640000-07:00|Change|10FF000B||||||||| +24|2023-10-06T22:03:28.6170000-07:00|40021585|Zeromus|DoT|A92|4D4|5858382|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9450|10000|||106.75|95.72|0.00|2.80| +37|2023-10-06T22:03:28.6170000-07:00|40021585|Zeromus|000111CD|5834833||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:28.6170000-07:00|10FF0006|Wowobora Gogobora|000111CD|81809|81809|9450|10000|0||106.75|95.72|0.00|2.80|1B00|0|0|01|0A92|0|41700000|| +26|2023-10-06T22:03:28.6170000-07:00|A92|Slipstream|15.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +21|2023-10-06T22:03:28.6170000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|3E600000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|5858382|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9450|10000|||106.75|95.72|0.00|2.80|000111D2|0|1| +38|2023-10-06T22:03:28.6170000-07:00|40021585|Zeromus|005A5A00|5834833|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:03:28.2560000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:03:28.2560000-07:00|Change|10FF0004||||||||||||||||||| +20|2023-10-06T22:03:28.7060000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|101.54|88.53|-0.02|2.90| +261|2023-10-06T22:03:28.3460000-07:00|Change|10FF0006||||||||||| +34|2023-10-06T22:03:28.7510000-07:00|400219D2|Automaton Queen|400219D2|Automaton Queen|01| +261|2023-10-06T22:03:28.3460000-07:00|Change|400219D2||| +39|2023-10-06T22:03:28.7950000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.65|86.83|0.00|0.12| +261|2023-10-06T22:03:28.3460000-07:00|Change|400219C7||||| +38|2023-10-06T22:03:28.8400000-07:00|400219D4||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:03:28.8400000-07:00|40021585|Zeromus|000111CF|5830253||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:28.8400000-07:00|400219D4||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:03:28.9280000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|504A0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5830253|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2200|10000|||102.43|91.51|-0.02|-2.93|000111D3|0|1| +261|2023-10-06T22:03:28.5310000-07:00|Add|400219D4||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:28.5310000-07:00|Add|400219D3||||||||||||||||||||||||||||||| +03|2023-10-06T22:03:28.5310000-07:00|400219D4|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||107.20|92.70|0.00|0.35| +21|2023-10-06T22:03:28.9730000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|724003|7D5B0000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|5830253|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||110.94|115.16|0.00|0.53|000111D4|0|1| +261|2023-10-06T22:03:28.5310000-07:00|Change|400219D4||| +21|2023-10-06T22:03:29.0180000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5830253|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||111.11|115.34|0.00|-2.83|000111D5|0|1| +37|2023-10-06T22:03:29.0620000-07:00|40021585|Zeromus|000111CE|5819717||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:29.0620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1D89|90216|90216|10000|10000|||111.11|115.34|0.00|-2.83|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +24|2023-10-06T22:03:29.0620000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|133A|81541|81541|1800|10000|||102.43|91.50|0.00|-2.93|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1800|10000|||102.43|91.50|0.00|-2.93| +38|2023-10-06T22:03:29.0620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||111.11|115.34|0.00|-2.83|0|0|0|||||||||||||||| +38|2023-10-06T22:03:29.0620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1800|10000|0||102.43|91.50|0.00|-2.93|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:03:29.1070000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6DF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5819717|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.87|88.81|0.00|0.11|000111D6|0|1| +31|2023-10-06T22:03:29.1070000-07:00|10FF0001||||| +24|2023-10-06T22:03:29.1510000-07:00|40021585|Zeromus|DoT|A92|616|5819717|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9150|10000|||108.84|92.73|0.00|2.64| +24|2023-10-06T22:03:29.1510000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1244|81809|81809|9150|10000|||108.84|92.73|0.00|2.64|10FF0006|Wowobora Gogobora|0|81809|81809|9150|10000|||108.84|92.73|0.00|2.64| +38|2023-10-06T22:03:29.1510000-07:00|40021585|Zeromus|005A5A00|5818159|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:03:29.1510000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||108.84|92.73|0.00|2.64|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:03:29.1950000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||108.84|92.73|0.00|2.64| +37|2023-10-06T22:03:29.2400000-07:00|40021585|Zeromus|000111D2|5802191||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:28.8560000-07:00|Change|10FF0003||||||||||||||||||||| +39|2023-10-06T22:03:29.3730000-07:00|10FF000B|Pusu Rosu|79209|79209|9586|10000|||101.85|88.06|0.00|-2.91| +39|2023-10-06T22:03:29.3730000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||96.12|89.22|0.00|1.97| +24|2023-10-06T22:03:29.3730000-07:00|10FF0003|Gegehi Gehi|HoT|0|1214|73814|73814|4850|10000|||100.05|87.60|0.00|-3.04|10FF000B|Pusu Rosu|0|79209|79209|9305|10000|||101.85|88.06|0.00|-2.91| +21|2023-10-06T22:03:29.3730000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|734003|C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5802191|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1800|10000|||102.35|91.08|0.00|-2.95|000111D7|0|1| +38|2023-10-06T22:03:29.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4850|10000|0||100.05|87.60|0.00|-3.04|0|0|0||||||||||||| +24|2023-10-06T22:03:29.4170000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1303|83502|83502|10000|10000|||96.72|89.58|0.00|1.81|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +38|2023-10-06T22:03:29.4170000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||96.72|89.58|0.00|1.81|0|0|0|||||||||||||||| +39|2023-10-06T22:03:29.4620000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.26|83.86|0.00|-2.77| +24|2023-10-06T22:03:29.4620000-07:00|10FF000B|Pusu Rosu|HoT|0|1299|79209|79209|9586|10000|||101.85|88.06|0.00|-2.91|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:29.4620000-07:00|4002159E|Zeromus|8B2B|unknown_8b2b|4002159E|Zeromus|1B|8B2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|1.40|44|44|0|10000|||100.00|80.10|0.00|1.40|000111D8|0|1| +38|2023-10-06T22:03:29.4620000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9586|10000|0||101.85|88.06|0.00|-2.91|0|0|0||||||||||||| +261|2023-10-06T22:03:29.0790000-07:00|Change|4002159E||||||||||||| +24|2023-10-06T22:03:29.5510000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|126D|129844|129844|10000|10000|||93.93|84.62|0.00|-2.05|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||93.93|84.62|0.00|-2.05| +38|2023-10-06T22:03:29.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.93|84.62|0.00|-2.05|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:29.1750000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:03:29.1750000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:03:29.6390000-07:00|40021585|Zeromus|000111D6|5800432||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:29.6390000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1C66|129071|129071|10000|10000|||101.04|90.39|0.00|0.11|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:29.6400000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|BE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5800432|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||110.75|90.18|0.00|2.50|000111D9|0|1| +21|2023-10-06T22:03:29.6400000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|31360000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|5800432|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9586|10000|||101.85|88.06|0.00|-2.91|000111DA|0|1| +38|2023-10-06T22:03:29.6400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||101.04|90.39|0.00|0.11|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:29.2670000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:03:29.7290000-07:00|40021585|Zeromus|000111D3|5779878||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:29.7730000-07:00|40021585|Zeromus|000111D5|5777503||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:29.3570000-07:00|Change|400219D2||| +261|2023-10-06T22:03:29.3570000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:03:29.8180000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5800432|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||99.96|89.70|0.00|-2.91|000111DB|0|1| +34|2023-10-06T22:03:29.8620000-07:00|400219D4|Carbuncle|400219D4|Carbuncle|01| +261|2023-10-06T22:03:29.4470000-07:00|Change|400219D4||||||||| +37|2023-10-06T22:03:29.9070000-07:00|40021585|Zeromus|000111D7|5777310||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:29.9070000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|305A0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|5777503|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.46|90.18|0.00|1.43|000111DC|0|1| +37|2023-10-06T22:03:29.9520000-07:00|40021585|Zeromus|000111D0|5764202||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:29.9960000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|100.55|90.38|0.00|2.84| +261|2023-10-06T22:03:29.6390000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:03:30.0410000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||111.12|117.56|0.00|0.20|90216|90216|10000|10000|||111.12|117.56|0.00|0.20|000111DD|0|1| +38|2023-10-06T22:03:30.0410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||111.12|117.56|0.00|0.20|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:30.0410000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +21|2023-10-06T22:03:30.0850000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B500000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5764202|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||91.81|87.70|0.00|-0.87|000111DE|0|1| +21|2023-10-06T22:03:30.0850000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|259D0000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|5764202|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||112.08|88.14|0.00|2.55|000111DF|0|1| +37|2023-10-06T22:03:30.1290000-07:00|40021585|Zeromus|000111D4|5732111||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:30.1290000-07:00|10FF0008|Kokosaze Lulusaze|000111D4|90216|90216|10000|10000|0||111.12|117.56|0.00|0.20|1F00|0|0|01|05000353|0|C0A00000|| +39|2023-10-06T22:03:30.1290000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2000|10000|||102.16|89.71|0.00|-3.01| +37|2023-10-06T22:03:30.1740000-07:00|40021585|Zeromus|000111D9|5731921||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:29.8740000-07:00|Change|10FF0003||||||||||||||||||||| +39|2023-10-06T22:03:30.2190000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +37|2023-10-06T22:03:30.3070000-07:00|40021585|Zeromus|000111DC|5719543||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:30.3520000-07:00|40021585|Zeromus|000111DB|5719542||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:30.3520000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|286C0000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|5719543|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.04|90.39|0.00|-3.04|000111E0|0|1| +38|2023-10-06T22:03:30.3520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||101.04|90.39|0.00|-3.04|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:30.3520000-07:00|76E|Sword Oath|25.28|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +20|2023-10-06T22:03:30.3970000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|102.16|89.65|0.00|-3.02| +261|2023-10-06T22:03:30.1020000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:03:30.4840000-07:00|10FF0003|Gegehi Gehi|73814|73814|5050|10000|||100.57|90.56|-0.02|-3.09| +21|2023-10-06T22:03:30.4840000-07:00|40021585|Zeromus|8B78|Chasmic Nails|40021585|Zeromus|1B|8B788000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5719542|40478540|10000|10000|||100.00|80.10|0.00|0.00|5719542|40478540|10000|10000|||100.00|80.10|0.00|0.00|000111E1|0|1| +21|2023-10-06T22:03:30.4840000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|D900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5719542|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.92|90.52|0.00|1.65|000111E2|0|1| +261|2023-10-06T22:03:30.1020000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:03:30.1020000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:03:30.6180000-07:00|40021585|Zeromus|000111DE|5716646||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:30.6620000-07:00|40021585|Zeromus|DoT|0|2062|5716646|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9186|10000|||101.82|89.07|0.00|-0.68| +38|2023-10-06T22:03:30.6620000-07:00|40021585|Zeromus|005A5A00|5708356|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:03:30.7060000-07:00|10FF0008|Kokosaze Lulusaze|000111DD|90216|90216|10000|10000|0||111.10|117.81|0.00|0.04|1F00|0|0|01|05000353|0|40A00000|| +38|2023-10-06T22:03:30.7060000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||111.10|117.81|0.00|0.04|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:30.2030000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:03:30.7510000-07:00|40021585|Zeromus|000111DF|5698727||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:30.8840000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|3BBC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5698727|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||90.56|89.01|0.00|-0.76|000111E3|0|1| +37|2023-10-06T22:03:30.9280000-07:00|40021585|Zeromus|000111DA|5686129||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:31.0180000-07:00|40021585|Zeromus|000111E2|5682657||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:30.5020000-07:00|Change|400219D4||||||||| +39|2023-10-06T22:03:31.1510000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||111.10|117.81|0.00|0.04| +21|2023-10-06T22:03:31.1510000-07:00|4002159F|Zeromus|8B79|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.70|000111E4|0|0| +20|2023-10-06T22:03:31.1510000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|101.75|89.57|0.00|-1.11| +261|2023-10-06T22:03:30.7320000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T22:03:30.8470000-07:00|Change|10FF0003||||||||||||| +21|2023-10-06T22:03:31.3300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30DE0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5682657|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2000|10000|||102.16|89.65|0.00|-2.92|000111E5|0|1| +21|2023-10-06T22:03:31.3740000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5682657|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.04|90.39|0.00|-3.04|000111E6|0|1| +31|2023-10-06T22:03:31.3740000-07:00|10FF0001||||| +21|2023-10-06T22:03:31.4190000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|750003|213E0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|5682657|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5050|10000|||100.57|90.56|0.00|-3.09|000111E7|0|1| +38|2023-10-06T22:03:31.4190000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4850|10000|0||100.57|90.56|0.00|-3.09|0|0|0|||||||||||||||| +26|2023-10-06T22:03:31.4190000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:03:31.4630000-07:00|40021591|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||114.33|96.27|0.00|0.00|000111E8|0|0| +21|2023-10-06T22:03:31.4630000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||87.33|100.77|0.00|0.00|000111E9|0|0| +21|2023-10-06T22:03:31.4630000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||85.74|81.27|0.00|0.00|000111EA|0|0| +21|2023-10-06T22:03:31.4630000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.33|114.27|0.00|0.00|000111EB|0|0| +21|2023-10-06T22:03:31.4630000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.83|118.77|0.00|0.00|000111EC|0|0| +21|2023-10-06T22:03:31.4630000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.10|82.06|0.00|0.00|000111ED|0|0| +21|2023-10-06T22:03:31.4630000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||96.33|87.27|0.00|0.00|000111EE|0|0| +21|2023-10-06T22:03:31.4630000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||103.87|95.83|0.00|0.00|000111EF|0|0| +21|2023-10-06T22:03:31.4630000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.24|94.12|0.00|0.00|000111F0|0|0| +261|2023-10-06T22:03:31.0740000-07:00|Change|40021595||||||||||| +261|2023-10-06T22:03:31.0740000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:03:31.0740000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:03:31.0740000-07:00|Change|40021592||||||||||| +37|2023-10-06T22:03:31.5080000-07:00|40021585|Zeromus|000111E3|5667365||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:31.5080000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|726003|E20E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5682657|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||111.10|117.81|0.00|0.04|000111F1|0|1| +261|2023-10-06T22:03:31.0740000-07:00|Change|40021598||||||||||| +38|2023-10-06T22:03:31.5080000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||111.10|117.81|0.00|0.04|0|0|0|||||||||||||||| +30|2023-10-06T22:03:31.5080000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T22:03:31.0740000-07:00|Change|40021591||||||||||| +261|2023-10-06T22:03:31.0740000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:03:31.0740000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:03:31.0740000-07:00|Change|40021594||||||||||| +21|2023-10-06T22:03:31.5970000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|352003|3A070000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|5682657|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||110.75|83.12|0.00|2.43|000111F2|0|1| +261|2023-10-06T22:03:31.1670000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:03:31.1670000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:03:31.6420000-07:00|40021585|Zeromus|000111E0|5657017||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:31.6850000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|104C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5667365|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||111.10|117.81|0.00|-2.86|000111F3|0|1| +261|2023-10-06T22:03:31.2630000-07:00|Change|10FF0004||||||||||||||||||||| +23|2023-10-06T22:03:31.7290000-07:00|10FF000B|Pusu Rosu|6503|Glare III|Cancelled| +39|2023-10-06T22:03:31.8190000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||102.02|89.97|0.00|1.95| +21|2023-10-06T22:03:31.8630000-07:00|40021599|Zeromus|8B7A|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.40|000111F4|0|0| +37|2023-10-06T22:03:31.9070000-07:00|40021585|Zeromus|000111E6|5654089||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:31.4480000-07:00|Change|40021599||||||||||||| +21|2023-10-06T22:03:32.0410000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||111.12|117.77|0.00|3.14|90216|90216|10000|10000|||111.12|117.77|0.00|3.14|000111F5|0|1| +38|2023-10-06T22:03:32.0410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||111.12|117.77|0.00|3.14|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:32.0410000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +24|2023-10-06T22:03:32.0860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1309|90216|90216|10000|10000|||111.12|117.77|0.00|3.14|10FF0008|Kokosaze Lulusaze|0|90216|90216|10000|10000|||111.12|117.77|0.00|3.14| +24|2023-10-06T22:03:32.0860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1D07|81541|81541|1600|10000|||104.40|88.87|0.00|1.92|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1600|10000|||104.40|88.87|0.00|1.92| +38|2023-10-06T22:03:32.0860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||111.12|117.77|0.00|3.14|0|0|0||||||||||||||||||| +38|2023-10-06T22:03:32.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1600|10000|0||104.40|88.87|0.00|1.92|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:03:32.1310000-07:00|40021585|Zeromus|000111E5|5641579||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:32.1760000-07:00|40021585|Zeromus|000111E7|5633069||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:32.1760000-07:00|40021585|Zeromus|DoT|A92|4E6|5654089|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9300|10000|||110.56|83.13|0.00|-1.37| +24|2023-10-06T22:03:32.1760000-07:00|10FF0006|Wowobora Gogobora|HoT|0|11FE|81809|81809|9300|10000|||110.56|83.13|0.00|-1.37|10FF0006|Wowobora Gogobora|0|81809|81809|9300|10000|||110.56|83.13|0.00|-1.37| +38|2023-10-06T22:03:32.1760000-07:00|40021585|Zeromus|005A5A00|5631815|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:03:32.1760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9850|10000|0||110.56|83.13|0.00|-1.37|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:03:32.2200000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||110.54|83.14|0.00|-1.17| +21|2023-10-06T22:03:32.2200000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|39350000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|5631815|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||103.14|89.42|0.00|-2.75|000111F6|0|1| +37|2023-10-06T22:03:32.2640000-07:00|40021585|Zeromus|000111F2|5616960||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:31.8690000-07:00|Change|10FF0003||||||||||||||||||||||| +39|2023-10-06T22:03:32.3530000-07:00|10FF000B|Pusu Rosu|79209|79209|9467|10000|||103.86|89.39|0.00|1.74| +39|2023-10-06T22:03:32.3530000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||103.67|89.13|0.00|-2.71| +24|2023-10-06T22:03:32.3990000-07:00|10FF0003|Gegehi Gehi|HoT|0|1DEE|73814|73814|4850|10000|||102.40|89.24|0.00|2.24|10FF0003|Gegehi Gehi|0|73814|73814|4850|10000|||102.40|89.24|0.00|2.24| +21|2023-10-06T22:03:32.3990000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|26F30000|63E|BA8000|1B|65008000|0|0|0|0|0|0|0|0|0|0|5616960|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4850|10000|||102.40|89.24|0.00|2.24|000111F7|0|1| +38|2023-10-06T22:03:32.3990000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4550|10000|0||102.40|89.24|0.00|2.24|0|0|0||||||||||||| +30|2023-10-06T22:03:32.3990000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:03:32.4420000-07:00|40021585|Zeromus|000111F3|5612788||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:32.4420000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|125D|83502|83502|10000|10000|||103.67|89.13|0.00|-2.71|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +38|2023-10-06T22:03:32.4420000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||103.67|89.13|0.00|-2.71|0|0|0|||||||||||||||| +257|2023-10-06T22:03:32.4420000-07:00|80034E7C|00200004|03|00|0000| +39|2023-10-06T22:03:32.4870000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||91.54|89.77|0.00|2.54| +24|2023-10-06T22:03:32.4870000-07:00|10FF000B|Pusu Rosu|HoT|0|139A|79209|79209|9186|10000|||103.86|89.39|0.00|1.74|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:32.4870000-07:00|400215A3|Zeromus|8B82|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|100.00|0.00|1.57|000111F8|0|0| +38|2023-10-06T22:03:32.4870000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9467|10000|0||103.86|89.39|0.00|1.74|0|0|0||||||||||||| +261|2023-10-06T22:03:31.9870000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:03:32.1000000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:03:32.1000000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:03:32.2100000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:03:32.2100000-07:00|Change|10FF000B||||||||||||||||||||||| +24|2023-10-06T22:03:32.5770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1264|129844|129844|10000|10000|||90.87|88.86|0.00|2.99|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||90.87|88.86|0.00|2.99| +21|2023-10-06T22:03:32.5770000-07:00|400215A1|Zeromus|8B7B|Chasmic Nails|10FF0008|Kokosaze Lulusaze|F1710006|AB9B0000|100140E|6FD0000|C30E|1080000|1B|8B7B8000|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||113.38|116.68|0.00|2.06|44|44|0|10000|||100.00|80.10|0.00|0.00|000111F9|0|1| +38|2023-10-06T22:03:32.5770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||90.87|88.86|0.00|2.99|0|0|0||||||||||||||||||| +37|2023-10-06T22:03:32.6210000-07:00|40021585|Zeromus|000111F6|5598143||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:32.6660000-07:00|40021585|Zeromus|000111F1|5540273||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:32.6660000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1361|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +21|2023-10-06T22:03:32.6660000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5612788|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||104.47|88.31|0.00|-2.46|000111FA|0|1| +04|2023-10-06T22:03:32.2100000-07:00|400219C7|Emerald Garuda|00|5A|10FF0006|00||10263|13506|0|77698|0|10000|||102.23|90.13|0.00|-3.11| +261|2023-10-06T22:03:32.2100000-07:00|Change|400215A1||||||||||||| +38|2023-10-06T22:03:32.6660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||104.06|89.01|0.00|-2.71|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:32.3070000-07:00|Remove|400219C7| +21|2023-10-06T22:03:32.7100000-07:00|10FF0008|Kokosaze Lulusaze|1CF6|Barrel Stabilizer|10FF0008|Kokosaze Lulusaze|323E|A98000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||114.07|116.36|0.00|2.04|90216|90216|10000|10000|||114.07|116.36|0.00|2.04|000111FB|0|1| +20|2023-10-06T22:03:32.7540000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|105.46|89.03|0.00|1.87| +21|2023-10-06T22:03:32.7990000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|E90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5540273|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||108.76|85.82|0.00|-0.62|000111FC|0|1| +20|2023-10-06T22:03:32.7990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|108.19|87.87|0.00|1.87| +261|2023-10-06T22:03:32.5000000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:03:32.9370000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|28E30000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|5540273|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|000111FD|0|1| +38|2023-10-06T22:03:32.9370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||104.06|89.01|0.00|-2.71|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:32.9370000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +39|2023-10-06T22:03:33.1080000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1800|10000|||108.33|87.63|0.00|-2.80| +21|2023-10-06T22:03:33.1080000-07:00|10FF0006|Wowobora Gogobora|64E1|Emerald Rite|40021585|Zeromus|350003|26D10000|1B|64E18000|0|0|0|0|0|0|0|0|0|0|0|0|5540273|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||107.38|87.63|0.00|-0.81|000111FE|0|1| +37|2023-10-06T22:03:33.1990000-07:00|40021585|Zeromus|000111F7|5530302||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:33.1990000-07:00|40021585|Zeromus|000111FA|5528188||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:33.1990000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89| +37|2023-10-06T22:03:33.2430000-07:00|10FF0008|Kokosaze Lulusaze|000111F9|46285|90216|10000|10000|0||116.20|114.93|0.00|2.20|1F00|0|0|02|060006FD|01|42700000|||||| +26|2023-10-06T22:03:33.2430000-07:00|6FD|Vulnerability Up|60.00|400215A1|Zeromus|10FF0008|Kokosaze Lulusaze|01|90216|44| +26|2023-10-06T22:03:33.2430000-07:00|108|Flesh Wound|15.00|400215A1|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +261|2023-10-06T22:03:32.8950000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:03:33.2870000-07:00|4002159B|Zeromus|8B7C|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.70|000111FF|0|0| +37|2023-10-06T22:03:33.3310000-07:00|40021585|Zeromus|000111FC|5527955||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:33.3780000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16D80000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|5528188|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||88.71|86.13|0.00|-2.56|00011200|0|1| +261|2023-10-06T22:03:32.8950000-07:00|Change|4002159B||||||||||||| +21|2023-10-06T22:03:33.4650000-07:00|400219D2|Automaton Queen|4336|Roller Dash|40021585|Zeromus|730003|47180000|1B|43368000|0|0|0|0|0|0|0|0|0|0|0|0|5527955|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||106.77|110.46|0.00|1.99|00011201|0|1| +39|2023-10-06T22:03:33.4650000-07:00|10FF0003|Gegehi Gehi|73814|73814|4750|10000|||106.55|88.15|-0.01|1.87| +21|2023-10-06T22:03:33.4650000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B2A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5527955|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||87.98|85.12|0.00|1.96|00011202|0|1| +21|2023-10-06T22:03:33.4650000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3AEB0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||87.98|85.12|0.00|1.96|5527955|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011203|0|1| +261|2023-10-06T22:03:33.1190000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:03:33.2300000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:03:33.2300000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:03:33.2300000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:03:33.6440000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6CB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5527955|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|00011204|0|1| +31|2023-10-06T22:03:33.6440000-07:00|10FF0001||||| +39|2023-10-06T22:03:33.6880000-07:00|400219D2|Automaton Queen|82193|85668|10000|10000|||106.77|110.46|0.00|-2.92| +24|2023-10-06T22:03:33.6880000-07:00|40021585|Zeromus|DoT|0|17AF|5527955|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|9467|10000|||105.85|88.49|0.00|-2.53| +21|2023-10-06T22:03:33.6880000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|303C0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|5527955|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9467|10000|||105.85|88.49|0.00|-2.53|00011205|0|1| +38|2023-10-06T22:03:33.6880000-07:00|40021585|Zeromus|005A5A00|5521892|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:03:33.7320000-07:00|40021585|Zeromus|000111FE|5511955||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:33.7330000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|4F260000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5527955|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1800|10000|||108.23|87.60|0.00|-2.31|00011206|0|1| +261|2023-10-06T22:03:33.5130000-07:00|Change|400219AD||||||||| +37|2023-10-06T22:03:33.9090000-07:00|40021585|Zeromus|00011200|5506107||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:33.9540000-07:00|4002159D|Zeromus|8B7D|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.40|00011207|0|0| +37|2023-10-06T22:03:33.9980000-07:00|40021585|Zeromus|00011202|5503249||||||100.00|80.10|0.00|0.00| +26|2023-10-06T22:03:34.0440000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:03:34.0440000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|23E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5511955|40478540|10000|10000|||100.00|80.10|0.00|0.00|46285|90216|10000|10000|||116.32|114.31|0.00|3.07|00011208|0|1| +261|2023-10-06T22:03:33.5130000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:03:33.6250000-07:00|Change|400219D2||||||||| +37|2023-10-06T22:03:34.1780000-07:00|40021585|Zeromus|00011204|5501510||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:34.1790000-07:00|10FF0008|Kokosaze Lulusaze|47187|90216|10000|10000|||116.32|114.31|0.00|-2.70| +37|2023-10-06T22:03:34.2670000-07:00|10FF0007|Kehabiqo Febiqo|00011203|114761||||||87.76|84.29|0.00|2.86| +37|2023-10-06T22:03:34.2670000-07:00|40021585|Zeromus|000111FD|5491043||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:34.2670000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|726003|1AA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5501510|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4750|10000|||106.55|88.15|0.00|1.87|00011209|0|1| +37|2023-10-06T22:03:34.3560000-07:00|40021585|Zeromus|00011201|5472843||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:34.3560000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0008|Kokosaze Lulusaze|4|144E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|47187|90216|10000|10000|||116.32|114.31|0.00|-2.70|73956|77430|10000|10000|||105.00|99.60|0.00|2.42|0001120A|0|1| +21|2023-10-06T22:03:34.3560000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9BC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5491043|40478540|10000|10000|||100.00|80.10|0.00|0.00|47187|90216|10000|10000|||116.32|114.31|0.00|-2.70|0001120B|0|1| +21|2023-10-06T22:03:34.3560000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|30770000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|5491043|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||105.49|87.24|0.00|-2.10|0001120C|0|1| +261|2023-10-06T22:03:33.9710000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:03:34.4890000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5472843|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1400|10000|||108.22|87.60|0.00|-1.95|0001120D|0|1| +37|2023-10-06T22:03:34.5340000-07:00|40021585|Zeromus|00011206|5452581||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:34.5790000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|167E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5472843|40478540|10000|10000|||100.00|80.10|0.00|0.00|47187|90216|10000|10000|||116.32|114.31|0.00|-2.70|0001120E|0|1| +261|2023-10-06T22:03:34.1940000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:03:34.6230000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|5452581|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||107.04|88.03|0.00|-2.41|0001120F|0|1| +261|2023-10-06T22:03:34.1940000-07:00|Change|400219D4||||||||| +38|2023-10-06T22:03:34.6680000-07:00|400219D8||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:03:34.6680000-07:00|40021585|Zeromus|00011208|5443389||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:34.6680000-07:00|400219D8||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:03:34.1940000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T22:03:34.7560000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5443389|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4750|10000|||106.55|88.15|-0.02|-2.46|00011210|0|1| +39|2023-10-06T22:03:34.8000000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71| +21|2023-10-06T22:03:34.8450000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B0E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5443389|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||105.49|87.24|0.00|-2.49|00011211|0|1| +37|2023-10-06T22:03:34.8890000-07:00|40021585|Zeromus|00011209|5436572||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:34.8890000-07:00|40021585|Zeromus|0001120C|5424165||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:34.9340000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|726003|26E10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5443389|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4750|10000|||106.55|88.15|-0.02|-2.46|00011212|0|1| +03|2023-10-06T22:03:34.4830000-07:00|400219D8|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||109.55|88.19|0.00|-2.41| +261|2023-10-06T22:03:34.4830000-07:00|Add|400219D8||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:34.9790000-07:00|40021585|Zeromus|00011205|5411817||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:34.4830000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:03:34.4830000-07:00|Change|400219D8||||| +37|2023-10-06T22:03:35.0220000-07:00|40021585|Zeromus|0001120D|5411670||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:35.0680000-07:00|10FF0008|Kokosaze Lulusaze|DoT|0|283F|47187|90216|10000|10000|||116.32|114.31|0.00|-2.70|400215A1|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:35.0680000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1DF1|47187|90216|10000|10000|||116.32|114.31|0.00|-2.70|400215A1|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:35.0680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|128E|81541|81541|1400|10000|||106.81|87.70|-0.02|-1.31|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1400|10000|||106.81|87.70|-0.02|-1.31| +38|2023-10-06T22:03:35.0680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|44549|90216|10000|10000|0||116.32|114.31|0.00|-2.70|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:03:35.0680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1400|10000|0||106.81|87.70|-0.02|-1.31|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:03:35.1120000-07:00|40021585|Zeromus|0001120B|5409178||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:35.1560000-07:00|10FF0008|Kokosaze Lulusaze|0001120A|49747||||||116.32|114.31|0.00|-2.70| +24|2023-10-06T22:03:35.1560000-07:00|40021585|Zeromus|DoT|A92|4C7|5411670|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9700|10000|||107.04|88.03|0.00|-2.41| +24|2023-10-06T22:03:35.1560000-07:00|10FF0006|Wowobora Gogobora|HoT|0|138A|81809|81809|9700|10000|||107.04|88.03|0.00|-2.41|10FF0006|Wowobora Gogobora|0|81809|81809|9700|10000|||107.04|88.03|0.00|-2.41| +38|2023-10-06T22:03:35.1560000-07:00|40021585|Zeromus|005A5A00|5407955|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:03:35.1560000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||107.04|88.03|0.00|-2.41|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:34.7010000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:03:35.2010000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||107.04|88.03|0.00|-2.41| +20|2023-10-06T22:03:35.2010000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|105.85|88.49|0.00|-2.53| +37|2023-10-06T22:03:35.2890000-07:00|40021585|Zeromus|00011210|5407954||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:35.3340000-07:00|10FF000B|Pusu Rosu|79209|79209|9348|10000|||105.85|88.49|0.00|-2.53| +39|2023-10-06T22:03:35.3340000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||105.49|87.24|0.00|-2.49| +37|2023-10-06T22:03:35.3790000-07:00|40021585|Zeromus|0001120E|5402196||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:35.3790000-07:00|40021585|Zeromus|00011211|5399366||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:35.3790000-07:00|10FF0003|Gegehi Gehi|HoT|0|11DD|73814|73814|4750|10000|||106.55|88.15|-0.02|-2.46|10FF000B|Pusu Rosu|0|79209|79209|9067|10000|||105.85|88.49|0.00|-2.53| +38|2023-10-06T22:03:35.3790000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|0||106.55|88.15|-0.02|-2.46|0|0|0||||||||||||| +24|2023-10-06T22:03:35.4240000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1222|83502|83502|10000|10000|||105.48|87.24|0.00|-2.29|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|0.66| +21|2023-10-06T22:03:35.4240000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|14EE0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|5399366|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|00011213|0|1| +38|2023-10-06T22:03:35.4240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||105.48|87.24|0.00|-2.29|0|0|0|||||||||||||||| +39|2023-10-06T22:03:35.4680000-07:00|10FF0007|Kehabiqo Febiqo|116059|129844|10000|10000|||94.06|89.26|0.00|2.57| +24|2023-10-06T22:03:35.4680000-07:00|10FF000B|Pusu Rosu|HoT|0|1C9F|79209|79209|9348|10000|||105.85|88.49|0.00|-2.53|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|0.66| +38|2023-10-06T22:03:35.4680000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|9348|10000|0||105.85|88.49|0.00|-2.53|0|0|0||||||||||||| +37|2023-10-06T22:03:35.5120000-07:00|40021585|Zeromus|00011212|5389413||||||100.00|80.10|0.00|0.00| +26|2023-10-06T22:03:35.5120000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:03:35.5120000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|3B7C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5399366|40478540|10000|10000|||100.00|80.10|0.00|0.00|49747|90216|10000|10000|||116.32|114.31|0.00|-2.70|00011214|0|1| +24|2023-10-06T22:03:35.5570000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|137F|116059|129844|10000|10000|||94.66|89.57|0.00|2.62|10FF0007|Kehabiqo Febiqo|0|116059|129844|10000|10000|||94.66|89.57|0.00|2.62| +38|2023-10-06T22:03:35.5570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121050|129844|10000|10000|0||94.66|89.57|0.00|2.62|0|0|0||||||||||||||||||| +24|2023-10-06T22:03:35.6460000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1236|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|0.78| +38|2023-10-06T22:03:35.6460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||104.06|89.01|0.00|-2.71|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:35.2530000-07:00|Change|10FF000B||||||||||||||| +261|2023-10-06T22:03:35.2530000-07:00|Change|400219D8||| +261|2023-10-06T22:03:35.3430000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:03:35.8240000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22640000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|5389413|40478540|10000|10000|||100.00|80.10|0.00|0.00|121050|129844|10000|10000|||95.84|90.15|0.00|2.65|00011215|0|1| +20|2023-10-06T22:03:35.8690000-07:00|10FF0004|Buhojaqe Zijaqe|1D90|Esuna|10FF0008|Kokosaze Lulusaze|0.963|106.55|87.82|0.00|-0.74| +261|2023-10-06T22:03:35.4350000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T22:03:35.9140000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5389413|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|00011216|0|1| +31|2023-10-06T22:03:35.9140000-07:00|10FF0001||||| +21|2023-10-06T22:03:35.9580000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|736003|13D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5389413|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||107.04|88.03|0.00|-2.41|00011217|0|1| +37|2023-10-06T22:03:36.0460000-07:00|40021585|Zeromus|00011213|5384055||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:36.0900000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|22A50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5384055|40478540|10000|10000|||100.00|80.10|0.00|0.00|49747|90216|10000|10000|||115.38|113.23|0.00|-2.46|00011218|0|1| +37|2023-10-06T22:03:36.1350000-07:00|40021585|Zeromus|00011214|5368827||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:36.1350000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1600|10000|||106.55|87.82|0.00|-0.22| +21|2023-10-06T22:03:36.1350000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|752003|4EC40000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|5384055|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|9348|10000|||105.85|88.49|0.00|-2.53|00011219|0|1| +39|2023-10-06T22:03:36.2250000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|2.39| +21|2023-10-06T22:03:36.2250000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|0001121A|0|1| +21|2023-10-06T22:03:36.3140000-07:00|10FF0004|Buhojaqe Zijaqe|1D90|Esuna|10FF0008|Kokosaze Lulusaze|10|1080000|1B|1D908000|0|0|0|0|0|0|0|0|0|0|0|0|49747|90216|10000|10000|||114.80|112.55|0.00|-2.71|81541|81541|1600|10000|||106.55|87.82|0.00|-0.06|0001121B|0|1| +261|2023-10-06T22:03:35.9730000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:03:36.4490000-07:00|40021585|Zeromus|00011215|5360023||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:36.4490000-07:00|40021585|Zeromus|00011216|5358228||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:36.4920000-07:00|40021585|Zeromus|00011217|5357911||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:36.4930000-07:00|10FF0003|Gegehi Gehi|73814|73814|4950|10000|||107.04|90.28|0.00|-1.41| +21|2023-10-06T22:03:36.4930000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|3BDF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|121050|129844|10000|10000|||98.69|91.52|0.00|2.72|5368827|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001121C|0|1| +261|2023-10-06T22:03:36.0930000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:03:36.0930000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:03:36.5370000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|716003|34710000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|5368827|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||102.54|92.07|0.00|-0.58|0001121D|0|1| +21|2023-10-06T22:03:36.6270000-07:00|400219D2|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|2D130000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|5357911|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||104.57|100.60|0.00|-2.92|0001121E|0|1| +261|2023-10-06T22:03:36.3010000-07:00|Change|10FF000B||||||||||||||||||| +261|2023-10-06T22:03:36.3010000-07:00|Change|400219D4||||||| +261|2023-10-06T22:03:36.3010000-07:00|Change|10FF000A||||||||| +24|2023-10-06T22:03:36.6720000-07:00|40021585|Zeromus|DoT|0|161F|5357911|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8948|10000|||105.85|88.49|0.00|-2.53| +38|2023-10-06T22:03:36.6720000-07:00|40021585|Zeromus|005A5A00|5352248|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:03:36.7160000-07:00|40021585|Zeromus|00011218|5343379||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:36.7160000-07:00|400219D8|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|450003|5D4F0000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|5357911|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||109.55|88.19|0.00|-2.41|0001121F|0|1| +39|2023-10-06T22:03:36.7160000-07:00|400219D2|Automaton Queen|82193|85668|10000|10000|||104.57|100.60|0.00|-2.92| +21|2023-10-06T22:03:36.8060000-07:00|10FF000B|Pusu Rosu|DF2|Tetragrammaton|10FF0008|Kokosaze Lulusaze|4|54A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|49747|90216|10000|10000|||112.45|109.81|0.00|-2.47|79209|79209|8948|10000|||105.85|88.49|0.00|-2.53|00011220|0|1| +37|2023-10-06T22:03:36.8510000-07:00|10FF0001|Sesuga Sapisuga|0001121A|129071|129071|10000|10000|0||104.06|89.01|0.00|-2.71|1300|0|0|01|0200004C|0|41A00000|| +26|2023-10-06T22:03:36.8510000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T22:03:36.8510000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|D9A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5343379|40478540|10000|10000|||100.00|80.10|0.00|0.00|121050|129844|10000|10000|||100.49|91.23|0.00|3.05|00011221|0|1| +37|2023-10-06T22:03:36.9400000-07:00|40021585|Zeromus|0001121D|5329954||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:36.9400000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|750003|2A270000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|5343379|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||104.06|89.01|0.00|-2.71|00011222|0|1| +38|2023-10-06T22:03:36.9400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||104.06|89.01|0.00|-2.71|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:03:36.9400000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T22:03:36.9400000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +26|2023-10-06T22:03:36.9840000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:03:36.9840000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|25C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5343379|40478540|10000|10000|||100.00|80.10|0.00|0.00|49747|90216|10000|10000|||112.02|109.32|0.00|-2.45|00011223|0|1| +21|2023-10-06T22:03:37.0290000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|C510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5329954|40478540|10000|10000|||100.00|80.10|0.00|0.00|49747|90216|10000|10000|||111.83|109.10|0.00|-2.76|00011224|0|1| +21|2023-10-06T22:03:37.0290000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5329954|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||101.82|93.28|-0.02|-2.91|00011225|0|1| +21|2023-10-06T22:03:37.1160000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|35F20000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|5329954|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||104.10|89.42|0.00|-1.15|00011226|0|1| +38|2023-10-06T22:03:37.1160000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||104.10|89.42|0.00|-1.15|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:37.1160000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:36.6940000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:03:37.1610000-07:00|10FF0008|Kokosaze Lulusaze|50649|90216|10000|10000|||111.68|108.94|0.00|-2.76| +37|2023-10-06T22:03:37.2950000-07:00|10FF0007|Kehabiqo Febiqo|0001121C|105723||||||99.88|93.01|0.00|2.46| +37|2023-10-06T22:03:37.3400000-07:00|10FF0008|Kokosaze Lulusaze|00011220|72317||||||111.47|108.71|0.00|-2.76| +37|2023-10-06T22:03:37.3840000-07:00|40021585|Zeromus|00011221|5326472||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:37.3840000-07:00|40021585|Zeromus|0001121E|5314933||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:37.3840000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0008|Kokosaze Lulusaze|6400F60E|7420000|F60E|A770000|A60E|A780000|9069000F|7418000|0|0|0|0|0|0|0|0|50649|90216|10000|10000|||111.47|108.71|0.00|-2.76|105723|129844|10000|10000|||99.67|93.25|0.00|2.77|00011227|0|1| +37|2023-10-06T22:03:37.4290000-07:00|10FF0008|Kokosaze Lulusaze|0001121B|72317|90216|10000|10000|0||111.40|108.63|0.00|-2.76|1F00|0|0|01|07000000|0|0|| +37|2023-10-06T22:03:37.4290000-07:00|40021585|Zeromus|00011219|5294769||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:37.4290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72317|90216|10000|10000|0||111.40|108.63|0.00|-2.76|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:37.4290000-07:00|108|Flesh Wound|0.00|400215A1|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +37|2023-10-06T22:03:37.5640000-07:00|40021585|Zeromus|00011222|5283978||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:37.5640000-07:00|10FF0001|Sesuga Sapisuga|00011222|129071|129071|10000|10000|0||103.94|88.97|0.00|-1.94|1300|0|0|02|06000558|04|41F00000|||||| +37|2023-10-06T22:03:37.5640000-07:00|40021585|Zeromus|00011225|5281673||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:37.5640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||103.94|88.97|0.00|-1.94|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:03:37.6080000-07:00|40021585|Zeromus|00011223|5272008||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:37.6080000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|22530000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|105723|129844|10000|10000|||99.47|93.48|0.00|2.23|73956|77430|10000|10000|||105.00|99.60|0.00|-2.87|00011228|0|1| +21|2023-10-06T22:03:37.6090000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|23D40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5294769|40478540|10000|10000|||100.00|80.10|0.00|0.00|72317|90216|10000|10000|||111.05|108.25|0.00|-2.72|00011229|0|1| +20|2023-10-06T22:03:37.6530000-07:00|10FF000B|Pusu Rosu|1D90|Esuna|10FF0008|Kokosaze Lulusaze|0.985|105.17|89.32|0.00|-0.73| +261|2023-10-06T22:03:37.2540000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T22:03:37.6970000-07:00|10FF000A|Dukaro Nezikaro|406D|Bunshin|10FF000A|Dukaro Nezikaro|3E|9D8000|500000F|7A28000|F|AA38000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.84|97.12|0.00|-0.74|83502|83502|10000|10000|||99.84|97.12|0.00|-0.74|0001122A|0|1| +38|2023-10-06T22:03:37.6970000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.84|97.12|0.00|-0.74|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:37.6970000-07:00|7A2|Bunshin|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|05|83502|83502| +26|2023-10-06T22:03:37.6970000-07:00|AA3|Phantom Kamaitachi Ready|45.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T22:03:37.3540000-07:00|Change|10FF0008||||||||| +38|2023-10-06T22:03:37.7390000-07:00|400219E4||005A5A00|76288|79156|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:03:37.7420000-07:00|40021585|Zeromus|00011226|5258198||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:37.7420000-07:00|10FF0006|Wowobora Gogobora|00011226|81809|81809|9700|10000|0||103.38|90.56|0.00|-2.47|1B00|0|0|01|06000B25|0|0|| +38|2023-10-06T22:03:37.7420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||103.38|90.56|0.00|-2.47|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:37.7420000-07:00|400219E4||005A5A00|76288|79156|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:03:37.3540000-07:00|Add|400219E4||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:03:37.3540000-07:00|400219E4|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||98.63|98.86|0.00|2.49| +37|2023-10-06T22:03:37.7870000-07:00|40021585|Zeromus|00011224|5255045||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:37.7870000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||103.94|88.97|0.00|-2.72| +21|2023-10-06T22:03:37.7870000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|17930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5258198|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||103.09|91.32|0.00|-1.83|0001122B|0|1| +38|2023-10-06T22:03:37.7870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||103.09|91.32|0.00|-1.83|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:37.7870000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:37.3540000-07:00|Change|400219E4||| +21|2023-10-06T22:03:37.8770000-07:00|10FF0003|Gegehi Gehi|20FD613|item_fd613|10FF0003|Gegehi Gehi|5800000E|310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4950|10000|||105.16|94.21|0.00|-1.41|73814|73814|4950|10000|||105.16|94.21|0.00|-1.41|0001122C|0|1| +21|2023-10-06T22:03:37.9190000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|710003|59F70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5255045|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||103.92|88.98|0.00|-1.86|0001122D|0|1| +37|2023-10-06T22:03:38.0100000-07:00|10FF0008|Kokosaze Lulusaze|00011227|72317|90216|10000|10000|17||107.70|104.60|0.00|-2.47|1F00|0|0|03|07000742|64|41000000|||||||||| +26|2023-10-06T22:03:38.0100000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|64|90216|129844| +26|2023-10-06T22:03:38.0100000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +26|2023-10-06T22:03:38.0100000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +37|2023-10-06T22:03:38.0100000-07:00|10FF0007|Kehabiqo Febiqo|00011227|105723|129844|10000|10000|0||99.21|93.55|0.00|2.22|1500|0|0|01|04000741|0190|41000000|| +26|2023-10-06T22:03:38.0100000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T22:03:38.0100000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72317|90216|10000|10000|17||107.70|104.60|0.00|-2.47|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T22:03:38.0540000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1363|72317|90216|10000|10000|||107.70|104.60|0.00|-2.47|10FF0007|Kehabiqo Febiqo|0|105723|129844|10000|10000|||99.21|93.55|0.00|2.22| +24|2023-10-06T22:03:38.0540000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1212|81541|81541|1200|10000|||106.36|92.77|-0.01|0.11|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||106.36|92.77|-0.01|0.11| +26|2023-10-06T22:03:38.0540000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +261|2023-10-06T22:03:37.7810000-07:00|Change|10FF0004||||||||| +22|2023-10-06T22:03:38.0540000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1200|10000|||106.36|92.77|-0.01|0.11|81541|81541|1200|10000|||106.36|92.77|-0.01|0.11|0001122E|0|1| +38|2023-10-06T22:03:38.0540000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|77280|90216|10000|10000|17||107.70|104.60|0.00|-2.47|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:38.0540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1200|10000|0||106.36|92.77|-0.01|0.11|0|0|0|||||||||||||||||||||||||||| +21|2023-10-06T22:03:38.0980000-07:00|10FF000B|Pusu Rosu|1D90|Esuna|10FF0008|Kokosaze Lulusaze|8|0|1B|1D908000|0|0|0|0|0|0|0|0|0|0|0|0|72317|90216|10000|10000|||107.70|104.60|0.00|-2.47|79209|79209|8948|10000|||105.01|89.53|0.00|0.06|0001122F|0|1| +24|2023-10-06T22:03:38.1440000-07:00|40021585|Zeromus|DoT|A92|66F|5255045|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9700|10000|||102.46|93.26|0.00|-2.97| +24|2023-10-06T22:03:38.1440000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1DAC|81809|81809|9700|10000|||102.46|93.26|0.00|-2.97|10FF0006|Wowobora Gogobora|0|81809|81809|9700|10000|||102.46|93.26|0.00|-2.97| +21|2023-10-06T22:03:38.1440000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|1000000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5255045|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1200|10000|||106.36|92.77|-0.01|0.11|00011230|0|1| +38|2023-10-06T22:03:38.1440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||102.46|93.26|0.00|-2.97|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:38.1440000-07:00|40021585|Zeromus|005A5A00|5253398|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +21|2023-10-06T22:03:38.1870000-07:00|400219D2|Automaton Queen|4078|Arm Punch|40021585|Zeromus|736003|4C430000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|5255045|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||104.57|100.60|0.00|-2.92|00011231|0|1| +39|2023-10-06T22:03:38.1870000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||102.46|93.26|0.00|-2.97| +21|2023-10-06T22:03:38.1870000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|DA80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5255045|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||103.34|90.38|0.00|-1.86|00011232|0|1| +31|2023-10-06T22:03:38.1870000-07:00|10FF0001||||| +261|2023-10-06T22:03:37.7810000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:03:37.8990000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:37.8990000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:03:38.2340000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|726003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5253398|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4950|10000|||104.31|95.49|0.00|-1.41|00011233|0|1| +21|2023-10-06T22:03:38.2760000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|2E820000|143E|340000|204|26A68000|4|17588000|11B|2A8000|0|0|0|0|0|0|5253398|40478540|10000|10000|||100.00|80.10|0.00|0.00|105723|129844|10000|10000|||99.06|93.55|0.00|3.08|00011234|0|1| +39|2023-10-06T22:03:38.3650000-07:00|10FF000B|Pusu Rosu|79209|79209|8829|10000|||105.00|89.54|0.00|0.13| +39|2023-10-06T22:03:38.3650000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.69|97.40|0.00|-0.65| +24|2023-10-06T22:03:38.3650000-07:00|10FF0003|Gegehi Gehi|HoT|0|12D0|73814|73814|4950|10000|||104.31|95.49|0.00|-1.41|10FF000B|Pusu Rosu|0|79209|79209|8548|10000|||105.00|89.54|0.00|0.13| +38|2023-10-06T22:03:38.3650000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||104.31|95.49|0.00|-1.41|0|0|0||||||||||||| +37|2023-10-06T22:03:38.4100000-07:00|40021585|Zeromus|00011229|5244226||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:38.4100000-07:00|10FF0007|Kehabiqo Febiqo|00011228|114510||||||99.06|93.55|0.00|3.08| +24|2023-10-06T22:03:38.4100000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|136E|83502|83502|10000|10000|||99.69|97.40|0.00|-0.65|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.41| +38|2023-10-06T22:03:38.4100000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|-0.65|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:03:38.1220000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:03:38.4540000-07:00|40021585|Zeromus|0001122D|5221195||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:38.4540000-07:00|10FF000A|Dukaro Nezikaro|0001122A|83502|83502|10000|10000|0||99.69|97.40|0.00|-0.65|1E00|0|0|02|050007A2|05|41F00000|||||| +39|2023-10-06T22:03:38.4540000-07:00|10FF0007|Kehabiqo Febiqo|115808|129844|10000|10000|||99.05|93.55|0.00|3.07| +24|2023-10-06T22:03:38.4540000-07:00|10FF000B|Pusu Rosu|HoT|0|1D76|79209|79209|8829|10000|||104.98|89.55|0.00|-0.24|400219AD|Ruby Carbuncle|0|73956|77430|10000|10000|||105.00|99.60|0.00|-2.39| +26|2023-10-06T22:03:38.4540000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:03:38.4540000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|256C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5244226|40478540|10000|10000|||100.00|80.10|0.00|0.00|77280|90216|10000|10000|||106.14|103.56|0.00|-2.24|00011235|0|1| +38|2023-10-06T22:03:38.4540000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8829|10000|0||104.98|89.55|0.00|-0.24|0|0|0||||||||||||| +38|2023-10-06T22:03:38.4540000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|-0.65|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:03:38.5430000-07:00|40021585|Zeromus|0001122B|5215160||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:38.5440000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|137A|114510|129844|10000|10000|||99.05|93.55|0.00|3.07|10FF0007|Kehabiqo Febiqo|0|114510|129844|10000|10000|||99.05|93.55|0.00|3.07| +38|2023-10-06T22:03:38.5440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|120794|129844|10000|10000|0||99.05|93.55|0.00|3.07|0|0|0||||||||||||||||||| +04|2023-10-06T22:03:38.2390000-07:00|400219D4|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||107.29|86.11|0.00|-1.23| +261|2023-10-06T22:03:38.2390000-07:00|Remove|400219D4| +261|2023-10-06T22:03:38.3330000-07:00|Change|10FF000B||||||||||||||||||||||| +24|2023-10-06T22:03:38.6330000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1320|129071|129071|10000|10000|||102.88|91.92|0.00|-2.90|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||102.88|91.92|0.00|-2.90| +21|2023-10-06T22:03:38.6330000-07:00|10FF000A|Dukaro Nezikaro|64AE|Phantom Kamaitachi|40021585|Zeromus|53E|9F8000|643E|D48000|0|0|0|0|0|0|0|0|0|0|0|0|5215160|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|97.40|0.00|-0.65|00011236|0|1| +38|2023-10-06T22:03:38.6330000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||102.88|91.92|0.00|-2.90|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:03:38.6330000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|-0.65|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:38.6330000-07:00|AA3|Phantom Kamaitachi Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:03:38.6760000-07:00|40021585|Zeromus|00011230|5214904||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:38.6760000-07:00|40021585|Zeromus|0001121F|5191017||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:38.7220000-07:00|40021585|Zeromus|00011232|5187521||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:38.7220000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D0C|120794|129844|10000|10000|||99.05|93.55|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94| +24|2023-10-06T22:03:38.7220000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|DA1|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94| +24|2023-10-06T22:03:38.7220000-07:00|10FF0003|Gegehi Gehi|HoT|798|D54|73814|73814|4950|10000|||102.52|95.50|0.00|-1.64|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94| +24|2023-10-06T22:03:38.7220000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D3E|81809|81809|10000|10000|||101.52|96.45|0.00|-1.38|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94| +24|2023-10-06T22:03:38.7220000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D6A|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94| +24|2023-10-06T22:03:38.7220000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|14ED|129071|129071|10000|10000|||102.88|91.92|0.00|-2.90|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94| +24|2023-10-06T22:03:38.7220000-07:00|10FF000B|Pusu Rosu|HoT|798|CEF|79209|79209|8829|10000|||104.95|89.55|0.00|-1.03|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94| +24|2023-10-06T22:03:38.7220000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D48|77280|90216|10000|10000|||104.88|102.82|0.00|-2.62|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1200|10000|||104.35|95.42|-0.02|-0.94| +37|2023-10-06T22:03:38.7220000-07:00|10FF0004|Buhojaqe Zijaqe|0001122E|81541|81541|1200|10000|0||104.35|95.42|-0.02|-0.94|1C00|0|0|02|05000798|0|41700000|||||| +26|2023-10-06T22:03:38.7220000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T22:03:38.7220000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T22:03:38.7220000-07:00|400219E4|Bunshin|64AF|Phantom Kamaitachi|40021585|Zeromus|354003|51A60000|53E|9F8000|1B|64AF8000|0|0|0|0|0|0|0|0|0|0|5191017|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.71|97.42|0.00|3.12|00011237|0|1| +21|2023-10-06T22:03:38.7220000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|712003|1E580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5191017|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||102.88|91.92|0.00|-2.90|00011238|0|1| +38|2023-10-06T22:03:38.7220000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124134|129844|10000|10000|0||99.05|93.55|0.00|3.07|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:38.7220000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:38.7220000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|80680|90216|10000|10000|17||104.88|102.82|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:38.7220000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:38.7220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||101.52|96.45|0.00|-1.38|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:38.7220000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:38.7220000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||102.88|91.92|0.00|-2.90|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:38.7220000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:03:38.7220000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1200|10000|0||104.35|95.42|-0.02|-0.94|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:03:38.7220000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8829|10000|0||104.95|89.55|0.00|-1.03|0|0|0|||||||||||||||| +26|2023-10-06T22:03:38.7220000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:03:38.7220000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||102.52|95.50|0.00|-1.64|0|0|0|||||||||||||||| +26|2023-10-06T22:03:38.7220000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:38.7220000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:38.7220000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:03:38.7670000-07:00|10FF0003|Gegehi Gehi|0001122C|73814|73814|4950|10000|0||102.52|95.50|0.00|-1.64|2300|0|0|01|05000031|2958|41F00000|| +26|2023-10-06T22:03:38.7670000-07:00|31|Medicated|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|2958|73814|73814| +37|2023-10-06T22:03:38.7670000-07:00|40021585|Zeromus|00011233|5187520||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:38.7670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|104.35|95.42|-0.02|-0.94| +38|2023-10-06T22:03:38.7670000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||102.52|95.50|0.00|-1.64|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:38.4330000-07:00|Change|10FF0004||||||||||||||||||| +261|2023-10-06T22:03:38.4330000-07:00|Change|400219E4||||||||||||| +37|2023-10-06T22:03:38.9440000-07:00|40021585|Zeromus|00011231|5167997||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:38.5300000-07:00|Add|400219E5||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:38.6260000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:03:39.0780000-07:00|40021585|Zeromus|00011235|5158417||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:39.0780000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|16880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5167997|40478540|10000|10000|||100.00|80.10|0.00|0.00|80680|90216|10000|10000|||102.49|101.49|0.00|-2.17|00011239|0|1| +21|2023-10-06T22:03:39.0780000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5167997|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.14|98.61|0.00|-1.04|0001123A|0|1| +39|2023-10-06T22:03:39.1220000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1400|10000|||102.89|96.30|0.00|-2.61| +261|2023-10-06T22:03:38.8580000-07:00|Change|10FF0008||||||||| +39|2023-10-06T22:03:39.2100000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.76| +21|2023-10-06T22:03:39.2110000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|750003|1E5A0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|5158417|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4950|10000|||101.84|95.67|0.00|-3.04|0001123B|0|1| +21|2023-10-06T22:03:39.2110000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8F60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5158417|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|0001123C|0|1| +37|2023-10-06T22:03:39.3000000-07:00|40021585|Zeromus|00011238|5150649||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:39.4780000-07:00|10FF0003|Gegehi Gehi|73814|73814|5150|10000|||101.79|95.72|0.00|-3.04| +21|2023-10-06T22:03:39.4780000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|124134|129844|10000|10000|||99.05|93.55|0.00|3.07|124134|129844|10000|10000|||99.05|93.55|0.00|3.07|0001123D|0|1| +38|2023-10-06T22:03:39.4780000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|124134|129844|10000|10000|0||99.05|93.55|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:39.4780000-07:00|A75|Surging Tempest|19.09|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:03:39.4780000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T22:03:39.4780000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:03:39.4780000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:03:39.0880000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:03:39.5220000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|39350000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|124134|129844|10000|10000|||99.05|93.55|0.00|3.07|5150649|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001123E|0|1| +261|2023-10-06T22:03:39.2060000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:03:39.5680000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|335B0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|5150649|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||100.69|98.83|0.00|1.15|0001123F|0|1| +38|2023-10-06T22:03:39.5680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||100.69|98.83|0.00|1.15|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:39.5680000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:03:39.6120000-07:00|40021585|Zeromus|0001123A|5150454||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:39.6560000-07:00|400219D2|Automaton Queen|005A5A00|82193|85668|10000|10000|0||104.57|100.60|0.00|-2.92|0|0|0|||||||||| +26|2023-10-06T22:03:39.6560000-07:00|30|Well Fed|1054.46|10FF0008|Kokosaze Lulusaze|400219D2|Automaton Queen|2964|85668|90216| +26|2023-10-06T22:03:39.6560000-07:00|31|Medicated|11.03|10FF0008|Kokosaze Lulusaze|400219D2|Automaton Queen|296C|85668|90216| +26|2023-10-06T22:03:39.6560000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|400219D2|Automaton Queen|01|85668|40478540| +24|2023-10-06T22:03:39.6560000-07:00|40021585|Zeromus|DoT|0|168E|5150649|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|8829|10000|||103.49|94.74|0.00|-0.08| +38|2023-10-06T22:03:39.6560000-07:00|40021585|Zeromus|005A5A00|5144680|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:03:39.7020000-07:00|40021585|Zeromus|00011239|5138912||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:39.7020000-07:00|400219D2|Automaton Queen|82193|85668|10000|10000|||104.57|100.60|0.00|-2.92| +21|2023-10-06T22:03:39.7020000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5138912|40478540|10000|10000|||100.00|80.10|0.00|0.00|80680|90216|10000|10000|||100.93|100.81|0.00|-1.22|00011240|0|1| +21|2023-10-06T22:03:39.7020000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30910000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|5138912|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1400|10000|||102.65|96.45|0.00|-2.98|00011241|0|1| +261|2023-10-06T22:03:39.4020000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:03:39.7460000-07:00|40021585|Zeromus|0001123C|5136618||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:39.7460000-07:00|400219D2|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|730003|6A670000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|5138912|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||104.57|100.60|0.00|-2.92|00011242|0|1| +24|2023-10-06T22:03:39.7900000-07:00|10FF0008|Kokosaze Lulusaze|HoT|742|26A6|80680|90216|10000|10000|||100.93|100.81|0.00|-1.22|10FF0007|Kehabiqo Febiqo|0|124134|129844|10000|10000|||99.05|93.55|0.00|3.07| +37|2023-10-06T22:03:39.7900000-07:00|40021585|Zeromus|00011234|5124712||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:39.7900000-07:00|10FF0007|Kehabiqo Febiqo|00011234|129844|129844|10000|10000|0||99.05|93.55|0.00|3.07|1500|0|0|03|07000499|03|C1700000|||||||||| +38|2023-10-06T22:03:39.7900000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.93|100.81|0.00|-1.22|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:39.8350000-07:00|40021585|Zeromus|0001123B|5116942||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:39.8350000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8829|10000|0||102.85|96.06|0.00|-0.29|0|0|0|||||||||||||||| +30|2023-10-06T22:03:39.8350000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:03:39.4930000-07:00|Change|10FF0004||||||||||||||||||||||| +21|2023-10-06T22:03:39.9240000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|4B860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5116942|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.70|100.76|-0.02|-3.12|00011243|0|1| +38|2023-10-06T22:03:39.9240000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.70|100.76|-0.02|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:39.9240000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +38|2023-10-06T22:03:39.9690000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:39.9690000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:03:39.6820000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T22:03:40.1030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.05|93.55|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:40.1030000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +39|2023-10-06T22:03:40.1480000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.62|100.76|0.00|-3.12| +20|2023-10-06T22:03:40.1480000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|101.87|97.47|0.00|-0.53| +37|2023-10-06T22:03:40.1920000-07:00|40021585|Zeromus|0001123F|5103795||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:40.1920000-07:00|10FF0006|Wowobora Gogobora|0001123F|81809|81809|9700|10000|0||101.12|98.77|0.00|-3.08|1B00|0|0|01|07000B25|0|0|| +38|2023-10-06T22:03:40.1930000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||101.12|98.77|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:40.2380000-07:00|10FF0007|Kehabiqo Febiqo|0001123D|129844|129844|10000|10000|0||99.05|93.55|0.00|3.07|1500|0|0|03|07000499|03|41700000|||||||||| +21|2023-10-06T22:03:40.2380000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5103795|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.05|93.55|0.00|3.07|00011244|0|1| +21|2023-10-06T22:03:40.2380000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|456003|32800000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5103795|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||101.12|98.77|0.00|-3.08|00011245|0|1| +38|2023-10-06T22:03:40.2380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.05|93.55|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:40.2380000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||101.12|98.77|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:40.2380000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:03:40.2380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||101.01|94.56|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:40.2380000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:03:40.2810000-07:00|40021585|Zeromus|00011237|5082893||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:40.3260000-07:00|10FF0007|Kehabiqo Febiqo|0001123E|115199||||||99.05|93.55|0.00|3.07| +38|2023-10-06T22:03:40.3710000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.55|100.76|-0.01|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:40.3710000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:03:40.4610000-07:00|40021585|Zeromus|00011240|5080454||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:40.4610000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|750003|768E0000|4|2A8C8000|0|0|0|0|0|0|0|0|0|0|0|0|5082893|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.01|94.56|0.00|-3.07|00011246|0|1| +21|2023-10-06T22:03:40.4610000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|11860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|5082893|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.01|94.56|0.00|-3.07|00011247|0|1| +38|2023-10-06T22:03:40.4610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||101.01|94.56|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:40.4610000-07:00|558|Requiescat|27.06|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T22:03:40.4610000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T22:03:40.4610000-07:00|10FF0001||||| +37|2023-10-06T22:03:40.5050000-07:00|40021585|Zeromus|00011241|5068021||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:40.5050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1000|10000|0||102.62|96.48|0.00|-1.34|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:40.5050000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T22:03:40.1470000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:40.5500000-07:00|40021585|Zeromus|00011243|5048687||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:40.5500000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.54|100.76|0.00|-3.12|90216|90216|10000|10000|||100.54|100.76|0.00|-3.12|00011248|0|1| +38|2023-10-06T22:03:40.5500000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.54|100.76|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:40.5500000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T22:03:40.6390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||101.12|98.77|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:40.6390000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +21|2023-10-06T22:03:40.6840000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37750003|24EE0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|5048687|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5150|10000|||103.65|98.86|0.00|0.42|00011249|0|1| +21|2023-10-06T22:03:40.7290000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|77BD0000|204|25998000|0|0|0|0|0|0|0|0|0|0|0|0|5048687|40478540|10000|10000|||100.00|80.10|0.00|0.00|115199|129844|10000|10000|||99.05|93.55|0.00|3.07|0001124A|0|1| +21|2023-10-06T22:03:40.7290000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|0001124B|0|1| +38|2023-10-06T22:03:40.7290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115199|129844|10000|10000|0||99.05|93.55|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:40.7290000-07:00|499|Inner Release|14.46|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +261|2023-10-06T22:03:40.3520000-07:00|Change|400219D8||||| +38|2023-10-06T22:03:40.7290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:40.7290000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:03:40.3520000-07:00|Change|10FF000B||||||||||||||||||||| +38|2023-10-06T22:03:40.7730000-07:00|400219E6||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:03:40.7730000-07:00|40021585|Zeromus|00011244|5045634||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:40.7730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5150|10000|0||103.65|98.86|0.00|0.42|0|0|0||||||||||||||||||| +30|2023-10-06T22:03:40.7730000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:03:40.7730000-07:00|400219E6||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +39|2023-10-06T22:03:40.8170000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||101.01|94.56|0.00|-3.07| +21|2023-10-06T22:03:40.8620000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|4|15780000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|115199|129844|10000|10000|||99.05|93.55|0.00|3.07|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|0001124C|0|1| +261|2023-10-06T22:03:40.5370000-07:00|Add|400219E6||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:03:40.5370000-07:00|400219E6|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||101.02|97.04|0.00|0.06| +37|2023-10-06T22:03:40.9970000-07:00|40021585|Zeromus|00011245|5032706||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:40.9970000-07:00|40021585|Zeromus|00011247|5028220||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:40.6330000-07:00|Change|400219E6||| +37|2023-10-06T22:03:41.0410000-07:00|40021585|Zeromus|00011242|5000981||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:41.0410000-07:00|400219D2|Automaton Queen|005A5A00|82193|85668|10000|10000|0||104.57|100.60|0.00|-2.92|0|0|0||||||| +30|2023-10-06T22:03:41.0410000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|400219D2|Automaton Queen|01|85668|40478540| +37|2023-10-06T22:03:41.0860000-07:00|40021585|Zeromus|00011246|4970631||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:41.0860000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D71|115199|129844|10000|10000|||99.05|93.55|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67| +24|2023-10-06T22:03:41.0860000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D34|129071|129071|9200|10000|||101.01|94.56|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67| +24|2023-10-06T22:03:41.0860000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D75|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67| +24|2023-10-06T22:03:41.0860000-07:00|10FF000B|Pusu Rosu|HoT|798|D05|79209|79209|8829|10000|||101.37|98.22|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67| +24|2023-10-06T22:03:41.0860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D03|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67| +24|2023-10-06T22:03:41.0860000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D05|81809|81809|9700|10000|||101.12|98.77|0.00|-3.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67| +24|2023-10-06T22:03:41.0860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|DA6|90216|90216|10000|10000|||100.41|100.72|-0.02|-2.31|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67| +24|2023-10-06T22:03:41.0860000-07:00|10FF0003|Gegehi Gehi|HoT|798|CE2|73814|73814|5150|10000|||103.65|98.86|0.00|-2.95|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1000|10000|||101.33|98.32|0.00|-0.67| +21|2023-10-06T22:03:41.0860000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|306A0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|5028220|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8829|10000|||101.37|98.22|0.00|-3.07|0001124D|0|1| +38|2023-10-06T22:03:41.0860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|118640|129844|10000|10000|0||99.05|93.55|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:41.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:41.0860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.41|100.72|-0.02|-2.31|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:41.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:41.0860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||101.12|98.77|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:41.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:41.0860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||101.01|94.56|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:41.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:03:41.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1000|10000|0||101.33|98.32|0.00|-0.67|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:41.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:03:41.0860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5150|10000|0||103.65|98.86|0.00|-2.95|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:41.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:41.0860000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8429|10000|0||101.37|98.22|0.00|-3.07|0|0|0|||||||||||||||| +26|2023-10-06T22:03:41.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:03:41.0860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:41.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +20|2023-10-06T22:03:41.1300000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|101.22|98.49|0.00|-0.61| +261|2023-10-06T22:03:40.7490000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:03:40.7490000-07:00|Change|400219E4||||||| +37|2023-10-06T22:03:41.1750000-07:00|10FF0008|Kokosaze Lulusaze|00011248|90216|90216|10000|10000|17||100.36|100.64|0.00|-2.41|1F00|0|0|01|03000353|0|40A00000|| +24|2023-10-06T22:03:41.1750000-07:00|40021585|Zeromus|DoT|A92|99D|4970631|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|5|81809|81809|9700|10000|||101.12|98.77|0.00|-3.08| +38|2023-10-06T22:03:41.1750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.36|100.64|0.00|-2.41|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:41.1750000-07:00|40021585|Zeromus|005A5A00|4968170|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:03:41.1750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||101.12|98.77|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:40.8660000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:03:41.2190000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||101.12|98.77|0.00|-3.08| +21|2023-10-06T22:03:41.2190000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|714003|15320000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|4968170|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||101.01|94.56|0.00|-3.07|0001124E|0|1| +21|2023-10-06T22:03:41.2190000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|0001124F|0|1| +38|2023-10-06T22:03:41.2190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:41.2190000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +37|2023-10-06T22:03:41.3080000-07:00|40021585|Zeromus|00011249|4958716||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:41.3080000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|712003|47B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4968170|40478540|10000|10000|||100.00|80.10|0.00|0.00|118640|129844|10000|10000|||99.05|93.55|0.00|3.07|00011250|0|1| +24|2023-10-06T22:03:41.3520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|742|2599|90216|90216|10000|10000|||100.24|100.48|0.00|-2.61|10FF0007|Kehabiqo Febiqo|0|118640|129844|10000|10000|||99.05|93.55|0.00|3.07| +37|2023-10-06T22:03:41.3520000-07:00|40021585|Zeromus|0001124A|4928063||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:41.3520000-07:00|10FF0007|Kehabiqo Febiqo|0001124A|128265||||||99.05|93.55|0.00|3.07| +39|2023-10-06T22:03:41.3520000-07:00|10FF000B|Pusu Rosu|79209|79209|8710|10000|||101.37|98.22|0.00|-3.07| +39|2023-10-06T22:03:41.3520000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.69|97.40|0.00|3.12| +38|2023-10-06T22:03:41.3520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.24|100.48|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T22:03:41.3970000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|726003|D4C60000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|4958716|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.48|0.00|-2.61|00011251|0|1| +21|2023-10-06T22:03:41.3970000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A6B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4958716|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|00011252|0|1| +38|2023-10-06T22:03:41.3970000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.24|100.48|0.00|-2.61|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:41.3970000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +39|2023-10-06T22:03:41.4850000-07:00|10FF0007|Kehabiqo Febiqo|129563|129844|10000|10000|||99.05|93.55|0.00|3.07| +261|2023-10-06T22:03:41.2090000-07:00|Change|10FF0001||| +37|2023-10-06T22:03:41.6630000-07:00|10FF0007|Kehabiqo Febiqo|0001124C|129844||||||99.05|93.55|0.00|3.07| +21|2023-10-06T22:03:41.7090000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4928063|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5150|10000|||103.65|98.86|0.00|-2.95|00011253|0|1| +21|2023-10-06T22:03:41.7090000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|3900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|00011254|0|1| +38|2023-10-06T22:03:41.7090000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:41.7090000-07:00|1F0|Mudra|5.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +38|2023-10-06T22:03:41.7530000-07:00|400219D2|Automaton Queen|005A5A00|82193|85668|10000|10000|0||104.57|100.60|0.00|-2.92|0|0|0|||||||||| +26|2023-10-06T22:03:41.7530000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|400219D2|Automaton Queen|01|85668|40478540| +261|2023-10-06T22:03:41.4040000-07:00|Change|10FF000B||||||||||||||||||||| +261|2023-10-06T22:03:41.4040000-07:00|Change|400219E6||| +21|2023-10-06T22:03:41.7980000-07:00|400219D2|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|732003|B5E40000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|4928063|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||104.57|100.60|0.00|-2.92|00011255|0|1| +21|2023-10-06T22:03:41.7980000-07:00|10FF000B|Pusu Rosu|88|Presence of Mind|10FF000B|Pusu Rosu|EC0E|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8710|10000|||101.37|98.25|0.00|-2.02|79209|79209|8710|10000|||101.37|98.25|0.00|-2.02|00011256|0|1| +34|2023-10-06T22:03:41.7980000-07:00|400219E6|Carbuncle|400219E6|Carbuncle|01| +21|2023-10-06T22:03:41.8880000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|13580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4928063|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||101.01|94.56|0.00|-3.07|00011257|0|1| +37|2023-10-06T22:03:41.9320000-07:00|40021585|Zeromus|00011250|4909702||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:41.9320000-07:00|40021585|Zeromus|00011252|4907035||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:41.9780000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|FEE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4907035|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.05|93.55|0.00|3.07|00011258|0|1| +38|2023-10-06T22:03:41.9780000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.18|100.43|0.00|2.31|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:41.9780000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +21|2023-10-06T22:03:42.0670000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|16340000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4907035|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.19|100.47|0.00|1.59|00011259|0|1| +21|2023-10-06T22:03:42.0670000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|37040000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|4907035|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||99.72|97.49|0.00|-2.62|0001125A|0|1| +21|2023-10-06T22:03:42.0670000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|31140000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4907035|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1000|10000|||101.12|98.65|0.00|-3.08|0001125B|0|1| +38|2023-10-06T22:03:42.0670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||99.72|97.49|0.00|-2.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:42.0670000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T22:03:42.1100000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|800|10000|||101.12|98.65|0.00|-3.08| +261|2023-10-06T22:03:41.7820000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:03:41.8960000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:03:42.2000000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.41| +21|2023-10-06T22:03:42.2000000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4907035|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||99.62|97.39|0.00|3.11|0001125C|0|1| +21|2023-10-06T22:03:42.2010000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A752003|5DD80000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|4907035|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5150|10000|||103.65|98.86|0.00|-2.95|0001125D|0|1| +37|2023-10-06T22:03:42.2450000-07:00|40021585|Zeromus|0001124E|4901609|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030000F8|0|41700000|| +26|2023-10-06T22:03:42.2450000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +37|2023-10-06T22:03:42.2450000-07:00|40021585|Zeromus|00011253|4901608||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:42.2450000-07:00|10FF000A|Dukaro Nezikaro|8DF|Suiton|40021585|Zeromus|652003|5F0F0000|F|1FB8000|0|0|0|0|0|0|0|0|0|0|0|0|4907035|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|0001125E|0|1| +38|2023-10-06T22:03:42.2450000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:42.2450000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|39|83502|83502| +26|2023-10-06T22:03:42.2450000-07:00|1FB|Suiton|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:03:42.3340000-07:00|10FF000B|Pusu Rosu|00011256|79209|79209|8710|10000|0||101.03|99.76|0.00|-0.80|1800|0|0|01|0200009D|0|41700000|| +26|2023-10-06T22:03:42.3340000-07:00|9D|Presence of Mind|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:03:42.3340000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8710|10000|0||101.03|99.76|0.00|-0.80|0|0|0|||||||||||||||| +37|2023-10-06T22:03:42.3770000-07:00|40021585|Zeromus|0001124D|4889214||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:42.3780000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9310000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4901608|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.24|100.81|0.00|-3.13|0001125F|0|1| +37|2023-10-06T22:03:42.4230000-07:00|40021585|Zeromus|00011251|4834744||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:42.1260000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:03:42.4680000-07:00|40021585|Zeromus|00011257|4829792||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:42.4680000-07:00|10FF0003|Gegehi Gehi|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95| +261|2023-10-06T22:03:42.1260000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:03:42.5570000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|36EE0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.05|93.55|0.00|3.07|4829792|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011260|0|1| +261|2023-10-06T22:03:42.1260000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:03:42.1260000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:03:42.1260000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:03:42.1260000-07:00|Change|4002159F||||||||| +261|2023-10-06T22:03:42.1260000-07:00|Change|400215A0||||||||| +37|2023-10-06T22:03:42.6010000-07:00|40021585|Zeromus|00011258|4825714||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:42.6010000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|100.87|99.66|0.00|-0.15| +20|2023-10-06T22:03:42.6460000-07:00|4002159F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.27|86.42|0.00|0.00| +20|2023-10-06T22:03:42.6460000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.96|99.98|0.00|0.00| +20|2023-10-06T22:03:42.6460000-07:00|400215A1|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|108.98|90.99|0.00|0.00| +20|2023-10-06T22:03:42.6460000-07:00|400215A3|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.83|91.77|0.00|0.00| +20|2023-10-06T22:03:42.6460000-07:00|400215A2|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.95|99.96|0.00|0.00| +24|2023-10-06T22:03:42.6460000-07:00|40021585|Zeromus|DoT|0|205E|4825714|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9200|10000|||101.01|94.56|0.00|-3.07| +38|2023-10-06T22:03:42.6460000-07:00|40021585|Zeromus|005A5A00|4817428|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:03:42.6900000-07:00|40021585|Zeromus|0001125A|4803344||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:42.6900000-07:00|10FF0006|Wowobora Gogobora|0001125A|81809|81809|9700|10000|0||99.51|97.28|-0.01|3.11|1B00|0|0|01|04000B25|0|0|| +39|2023-10-06T22:03:42.6900000-07:00|400219D2|Automaton Queen|82193|85668|10000|10000|||104.57|100.60|0.00|-2.92| +21|2023-10-06T22:03:42.6910000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.27|101.02|-0.01|-3.13|90216|90216|10000|10000|||100.27|101.02|-0.01|-3.13|00011261|0|1| +38|2023-10-06T22:03:42.6910000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.27|101.02|-0.01|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:42.6910000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +38|2023-10-06T22:03:42.6910000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||99.51|97.28|-0.01|3.11|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:42.7350000-07:00|40021585|Zeromus|0001125C|4803166||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:42.7350000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|19850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4803344|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||99.50|97.28|0.00|3.11|00011262|0|1| +21|2023-10-06T22:03:42.7350000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8C20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4803344|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||101.01|94.56|0.00|-3.07|00011263|0|1| +38|2023-10-06T22:03:42.7350000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||99.50|97.28|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:42.7350000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +31|2023-10-06T22:03:42.7350000-07:00|10FF0001||||| +261|2023-10-06T22:03:42.4190000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:03:42.8240000-07:00|40021585|Zeromus|0001125D|4779142||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:42.8690000-07:00|40021585|Zeromus|00011259|4773458||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:42.8690000-07:00|40021585|Zeromus|0001125B|4760894||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:42.9590000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|754003|76F80000|4|2A7D8000|0|0|0|0|0|0|0|0|0|0|0|0|4760894|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||101.01|94.56|0.00|-3.07|00011264|0|1| +21|2023-10-06T22:03:42.9590000-07:00|10FF0003|Gegehi Gehi|1D61|Manafication|10FF0003|Gegehi Gehi|600050E|7B30000|32323E|BA8000|1B|1D618000|0|0|0|0|0|0|0|0|0|0|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|00011265|0|1| +38|2023-10-06T22:03:42.9590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||101.01|94.56|0.00|-3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:42.9590000-07:00|558|Requiescat|24.56|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +38|2023-10-06T22:03:42.9590000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|0||103.65|98.86|0.00|-2.95|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:42.9590000-07:00|7B3|Manafication|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|06|73814|73814| +31|2023-10-06T22:03:42.9590000-07:00|10FF0001||||| +261|2023-10-06T22:03:42.5190000-07:00|Change|10FF0001||| +261|2023-10-06T22:03:42.6150000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:03:42.7150000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:03:42.7150000-07:00|Change|400215A1||||||||||| +261|2023-10-06T22:03:42.7150000-07:00|Change|400215A3||||||||||| +261|2023-10-06T22:03:42.7150000-07:00|Change|400215A2||||||||||| +261|2023-10-06T22:03:42.7150000-07:00|Change|4002159F||||||||||| +37|2023-10-06T22:03:43.1370000-07:00|40021585|Zeromus|0001125F|4758541||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:43.1370000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.27|101.03|0.00|-3.13| +21|2023-10-06T22:03:43.1820000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|AA0A0000|200204|3EEC8000|0|0|0|0|0|0|0|0|0|0|0|0|4758541|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.05|93.46|0.00|-3.13|00011266|0|1| +38|2023-10-06T22:03:43.1820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.05|93.46|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:43.1820000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:03:43.2270000-07:00|40021585|Zeromus|0001125E|4734206||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:43.2270000-07:00|10FF000A|Dukaro Nezikaro|0001125E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|1E00|0|0|01|030001FB|0|41A00000|| +21|2023-10-06T22:03:43.2270000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4758541|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|800|10000|||101.90|99.42|0.00|0.84|00011267|0|1| +38|2023-10-06T22:03:43.2270000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:03:43.2700000-07:00|40021585|Zeromus|00011263|4731964||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:43.2700000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|326A0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|4758541|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8710|10000|||100.82|99.63|0.00|-3.10|00011268|0|1| +37|2023-10-06T22:03:43.3610000-07:00|10FF0007|Kehabiqo Febiqo|00011260|115782||||||99.05|93.46|0.00|3.07| +37|2023-10-06T22:03:43.3610000-07:00|10FF0003|Gegehi Gehi|00011265|73814|73814|5350|10000|0||103.65|98.86|0.00|-2.95|2300|0|0|01|030007B3|06|41700000|| +21|2023-10-06T22:03:43.3610000-07:00|10FF0008|Kokosaze Lulusaze|B3E|Wildfire|40021585|Zeromus|6A30E|35D0000|85000F|79A8000|0|0|0|0|0|0|0|0|0|0|0|0|4731964|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.27|101.03|0.00|-3.13|00011269|0|1| +38|2023-10-06T22:03:43.3610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|0||103.65|98.86|0.00|-2.95|0|0|0||||||||||||||||||| +37|2023-10-06T22:03:43.4940000-07:00|40021585|Zeromus|00011262|4725431||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:43.5840000-07:00|40021585|Zeromus|00011264|4694975||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:43.1810000-07:00|Change|4002159E||||||||| +21|2023-10-06T22:03:43.5850000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|4694975|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|800|10000|||102.00|99.84|0.00|0.52|0001126A|0|1| +21|2023-10-06T22:03:43.5850000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4694975|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|0001126B|0|1| +38|2023-10-06T22:03:43.5850000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||99.47|97.29|0.00|-1.95|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:43.5850000-07:00|A92|Slipstream|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:43.1810000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:03:43.1810000-07:00|Change|4002159B||||||||| +261|2023-10-06T22:03:43.1810000-07:00|Change|4002159A||||||||| +261|2023-10-06T22:03:43.1810000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:03:43.2720000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:03:43.6280000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|ACC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4694975|40478540|10000|10000|||100.00|80.10|0.00|0.00|115782|129844|10000|10000|||99.05|93.46|0.00|3.07|0001126C|0|1| +20|2023-10-06T22:03:43.6730000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|-1.40| +20|2023-10-06T22:03:43.6730000-07:00|4002159B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|-0.70| +20|2023-10-06T22:03:43.6730000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|-0.70| +20|2023-10-06T22:03:43.6730000-07:00|4002159D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.00|80.10|0.00|1.40| +20|2023-10-06T22:03:43.6730000-07:00|4002159E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.15|95.61|0.00|0.00| +22|2023-10-06T22:03:43.6730000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0003|Gegehi Gehi|50E|4D70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|0001126D|0|8| +22|2023-10-06T22:03:43.6730000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0004|Buhojaqe Zijaqe|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|800|10000|||102.00|99.84|0.00|0.52|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|0001126D|1|8| +22|2023-10-06T22:03:43.6730000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000B|Pusu Rosu|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8310|10000|||100.82|99.64|0.00|2.38|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|0001126D|2|8| +22|2023-10-06T22:03:43.6730000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0008|Kokosaze Lulusaze|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.27|101.03|0.00|-3.13|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|0001126D|3|8| +22|2023-10-06T22:03:43.6730000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF000A|Dukaro Nezikaro|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|0001126D|4|8| +22|2023-10-06T22:03:43.6730000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0006|Wowobora Gogobora|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||99.47|97.29|0.00|-1.95|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|0001126D|5|8| +22|2023-10-06T22:03:43.6730000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0001|Sesuga Sapisuga|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8200|10000|||100.93|94.70|0.00|-1.10|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|0001126D|6|8| +22|2023-10-06T22:03:43.6730000-07:00|10FF0003|Gegehi Gehi|1D60|Embolden|10FF0007|Kehabiqo Febiqo|50E|5110000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|115782|129844|10000|10000|||99.05|93.46|0.00|3.07|73814|73814|5350|10000|||103.65|98.86|0.00|-2.95|0001126D|7|8| +38|2023-10-06T22:03:43.6730000-07:00|40021585|Zeromus|005A5A00|4694975|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:03:43.6730000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +39|2023-10-06T22:03:43.7170000-07:00|400219E4|Bunshin|76288|79156|10000|10000|||99.69|97.40|0.00|3.12| +37|2023-10-06T22:03:43.7610000-07:00|40021585|Zeromus|00011267|4694828||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:43.7610000-07:00|40021585|Zeromus|00011255|4648264||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:43.7610000-07:00|400219D2|Automaton Queen|005A5A00|82193|85668|10000|10000|0||104.57|100.60|0.00|-2.92|0|0|0||||||| +30|2023-10-06T22:03:43.7610000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|400219D2|Automaton Queen|01|85668|40478540| +261|2023-10-06T22:03:43.3750000-07:00|Remove|400219D3| +39|2023-10-06T22:03:43.8060000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8400|10000|||101.19|95.18|0.00|-1.03| +21|2023-10-06T22:03:43.8060000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24090000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|4694975|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|0001126E|0|1| +38|2023-10-06T22:03:43.8070000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:43.8070000-07:00|7A2|Bunshin|24.60|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|04|83502|83502| +21|2023-10-06T22:03:43.8960000-07:00|400219E4|Bunshin|4406|Gust Slash|40021585|Zeromus|712003|1A360000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|4648264|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.71|97.42|0.00|3.12|0001126F|0|1| +261|2023-10-06T22:03:43.4710000-07:00|Change|400219E4||||||| +21|2023-10-06T22:03:43.9400000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|712003|5BF70000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|4648264|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8400|10000|||101.89|96.15|0.00|-0.16|00011270|0|1| +261|2023-10-06T22:03:43.5620000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:43.9850000-07:00|40021585|Zeromus|00011269|4648264|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|0|41200000|| +26|2023-10-06T22:03:43.9850000-07:00|35D|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|00|40478540|90216| +37|2023-10-06T22:03:43.9850000-07:00|10FF0008|Kokosaze Lulusaze|00011269|90216|90216|10000|10000|17||100.27|101.06|0.00|2.60|1F00|0|0|01|0500079A|0|41200000|| +26|2023-10-06T22:03:43.9850000-07:00|79A|Wildfire|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T22:03:43.6530000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T22:03:43.7490000-07:00|Change|4002159B||||||||||| +261|2023-10-06T22:03:43.7490000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:03:43.7490000-07:00|Change|4002159D||||||||||| +261|2023-10-06T22:03:43.7490000-07:00|Change|4002159C||||||||||| +261|2023-10-06T22:03:43.7490000-07:00|Change|4002159E||||||||||| +26|2023-10-06T22:03:44.0300000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:03:44.0300000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|25F20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4648264|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.29|101.14|0.00|1.05|00011271|0|1| +24|2023-10-06T22:03:44.0740000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|1611|115782|129844|10000|10000|||99.05|93.46|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||104.27|100.25|0.00|1.87| +24|2023-10-06T22:03:44.0740000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|CFB|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||104.27|100.25|0.00|1.87| +24|2023-10-06T22:03:44.0740000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15FD|129071|129071|8400|10000|||103.18|96.36|0.00|-0.16|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||104.27|100.25|0.00|1.87| +24|2023-10-06T22:03:44.0740000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D7B|81809|81809|9700|10000|||96.77|96.95|0.00|-1.72|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||104.27|100.25|0.00|1.87| +24|2023-10-06T22:03:44.0740000-07:00|10FF0003|Gegehi Gehi|HoT|798|D1E|73814|73814|5350|10000|||103.70|98.90|0.00|2.38|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||104.27|100.25|0.00|1.87| +24|2023-10-06T22:03:44.0740000-07:00|10FF000B|Pusu Rosu|HoT|798|D36|79209|79209|8310|10000|||102.47|101.18|0.00|0.80|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||104.27|100.25|0.00|1.87| +24|2023-10-06T22:03:44.0740000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D8F|90216|90216|10000|10000|||100.29|101.14|0.00|1.05|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||104.27|100.25|0.00|1.87| +24|2023-10-06T22:03:44.0740000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|CDE|81541|81541|400|10000|||104.27|100.25|0.00|1.87|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||104.27|100.25|0.00|1.87| +38|2023-10-06T22:03:44.0740000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|121431|129844|10000|10000|0||99.05|93.46|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.0740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:44.0740000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.29|101.14|0.00|1.05|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.0740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:44.0740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||96.77|96.95|0.00|-1.72|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.0740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:44.0740000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8400|10000|0||103.18|96.36|0.00|-0.16|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.0740000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:03:44.0740000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|400|10000|0||104.27|100.25|0.00|1.87|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.0740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:03:43.7490000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T22:03:44.0740000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|0||103.70|98.90|0.00|2.38|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:44.0740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:44.0740000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8310|10000|0||102.47|101.18|0.00|0.80|0|0|0|||||||||||||||| +26|2023-10-06T22:03:44.0740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:03:44.0740000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:44.0740000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:03:44.1180000-07:00|40021585|Zeromus|0001126B|4645943||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:44.1180000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0007|Kehabiqo Febiqo|200004|20D30000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|115782|129844|10000|10000|||99.05|93.46|0.00|3.07|73956|77430|10000|10000|||105.00|99.60|0.00|-2.89|00011272|0|1| +37|2023-10-06T22:03:44.1630000-07:00|40021585|Zeromus|0001126C|4643179||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:44.1630000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|10000|10000|0||96.77|96.95|0.00|-1.72|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:44.2080000-07:00|40021585|Zeromus|0001126A|4643179|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04000767|0|41F00000|| +26|2023-10-06T22:03:44.2080000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +37|2023-10-06T22:03:44.2080000-07:00|40021585|Zeromus|0001126E|4633954||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:44.2080000-07:00|10FF0006|Wowobora Gogobora|81809|81809|10000|10000|||96.77|96.95|0.00|-1.72| +37|2023-10-06T22:03:44.2960000-07:00|40021585|Zeromus|00011270|4610411||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:44.2960000-07:00|10FF0001|Sesuga Sapisuga|00011270|129071|129071|8900|10000|0||104.44|96.56|0.00|-0.22|1300|0|0|0| +37|2023-10-06T22:03:44.2960000-07:00|40021585|Zeromus|0001126F|4603701||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:44.3410000-07:00|10FF0008|Kokosaze Lulusaze|HoT|742|3EEC|90216|90216|10000|10000|||100.29|101.20|0.00|-3.13|10FF0007|Kehabiqo Febiqo|0|121431|129844|10000|10000|||99.05|93.46|0.00|3.07| +37|2023-10-06T22:03:44.3410000-07:00|40021585|Zeromus|00011266|4560171||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:44.3410000-07:00|10FF0007|Kehabiqo Febiqo|00011266|129844||||||99.05|93.46|0.00|3.07| +37|2023-10-06T22:03:44.3410000-07:00|10FF0003|Gegehi Gehi|0001126D|73814|73814|5350|10000|0||103.76|98.94|-0.01|1.23|2300|0|0|01|060004D7|0|41A00000|| +26|2023-10-06T22:03:44.3410000-07:00|4D7|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T22:03:44.3410000-07:00|10FF000B|Pusu Rosu|79209|79209|8591|10000|||103.72|101.42|0.00|1.08| +39|2023-10-06T22:03:44.3410000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.69|97.40|0.00|3.12| +38|2023-10-06T22:03:44.3410000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.29|101.20|0.00|-3.13|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:44.4750000-07:00|10FF0004|Buhojaqe Zijaqe|0001126D|81541|81541|400|10000|0||105.02|100.52|0.00|1.43|1C01|0|0|01|03000511|0|41A00000|| +26|2023-10-06T22:03:44.4750000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +39|2023-10-06T22:03:44.4750000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.05|93.46|0.00|3.07| +38|2023-10-06T22:03:44.4750000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||105.00|99.60|0.00|-2.57|0|0|0||||||| +26|2023-10-06T22:03:44.4750000-07:00|511|Embolden|19.95|10FF0003|Gegehi Gehi|400219AD|Ruby Carbuncle|00|77430|73814| +37|2023-10-06T22:03:44.5650000-07:00|40021585|Zeromus|00011268|4547265||||||100.00|80.10|0.00|0.00| +35|2023-10-06T22:03:44.5660000-07:00|40021584||40021585|Zeromus|0000|0000|0109|||| +21|2023-10-06T22:03:44.5660000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|452003|58850000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|4560171|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|10000|10000|||96.18|99.33|0.00|-0.64|00011273|0|1| +257|2023-10-06T22:03:44.5660000-07:00|80034E7C|00020001|03|00|0000| +22|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0004|Buhojaqe Zijaqe|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|400|10000|||105.07|100.56|0.00|1.41|81541|81541|400|10000|||105.07|100.56|0.00|1.41|00011274|0|8| +22|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0003|Gegehi Gehi|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|5350|10000|||105.12|99.73|0.00|1.15|81541|81541|400|10000|||105.07|100.56|0.00|1.41|00011274|1|8| +22|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF000B|Pusu Rosu|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8591|10000|||104.96|101.36|0.00|1.41|81541|81541|400|10000|||105.07|100.56|0.00|1.41|00011274|2|8| +22|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0001|Sesuga Sapisuga|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8900|10000|||104.79|95.83|0.00|0.47|81541|81541|400|10000|||105.07|100.56|0.00|1.41|00011274|3|8| +22|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF000A|Dukaro Nezikaro|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.69|97.40|0.00|3.12|81541|81541|400|10000|||105.07|100.56|0.00|1.41|00011274|4|8| +22|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0008|Kokosaze Lulusaze|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.36|101.86|0.00|2.55|81541|81541|400|10000|||105.07|100.56|0.00|1.41|00011274|5|8| +22|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0007|Kehabiqo Febiqo|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.05|93.46|0.00|3.07|81541|81541|400|10000|||105.07|100.56|0.00|1.41|00011274|6|8| +22|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|650C|Expedient|10FF0006|Wowobora Gogobora|F60E|A970000|1E00000E|A980000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|10000|10000|||96.18|99.33|0.00|-0.64|81541|81541|400|10000|||105.07|100.56|0.00|1.41|00011274|7|8| +261|2023-10-06T22:03:44.1870000-07:00|Change|40021599||||||||| +38|2023-10-06T22:03:44.5660000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.05|93.46|0.00|3.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.5660000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +26|2023-10-06T22:03:44.5660000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +38|2023-10-06T22:03:44.5660000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.36|101.86|0.00|2.55|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.5660000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +26|2023-10-06T22:03:44.5660000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +38|2023-10-06T22:03:44.5660000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||96.18|99.33|0.00|-0.64|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.5660000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +26|2023-10-06T22:03:44.5660000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +26|2023-10-06T22:03:44.5660000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +38|2023-10-06T22:03:44.5660000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||104.79|95.83|0.00|0.47|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.5660000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +26|2023-10-06T22:03:44.5660000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +38|2023-10-06T22:03:44.5660000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|400|10000|0||105.07|100.56|0.00|1.41|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.5660000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T22:03:44.5660000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +38|2023-10-06T22:03:44.5660000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5350|10000|0||105.12|99.73|0.00|1.15|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.5660000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +26|2023-10-06T22:03:44.5660000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +38|2023-10-06T22:03:44.5660000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8591|10000|0||104.96|101.36|0.00|1.41|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:44.5660000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +26|2023-10-06T22:03:44.5660000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|1E|79209|81541| +38|2023-10-06T22:03:44.5660000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.69|97.40|0.00|3.12|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.5660000-07:00|A97|Desperate Measures|20.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +26|2023-10-06T22:03:44.5660000-07:00|A98|Expedience|10.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|83502|81541| +04|2023-10-06T22:03:44.1870000-07:00|400219D8|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||109.55|88.19|0.00|-2.41| +00|2023-10-06T22:03:44.0000000-07:00|0044|Zeromus|To the last you would deny my heart's desire...| +261|2023-10-06T22:03:44.1870000-07:00|Remove|400219D8| +261|2023-10-06T22:03:44.1870000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:03:44.6090000-07:00|10FF000B|Pusu Rosu|0001126D|79209|79209|8591|10000|0||104.96|101.36|0.00|1.41|1802|0|0|03|05000A97|0|C1A00000|||||||||| +26|2023-10-06T22:03:44.6090000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|79209|73814| +37|2023-10-06T22:03:44.6090000-07:00|10FF0003|Gegehi Gehi|0001126D|73814|73814|5350|10000|0||105.12|99.73|0.00|1.15|2302|0|0|02|07000A97|0|C1A00000|||||| +37|2023-10-06T22:03:44.6540000-07:00|40021585|Zeromus|00011271|4537551|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|01|41154BC8|| +26|2023-10-06T22:03:44.6540000-07:00|35D|Wildfire|9.33|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|01|40478540|90216| +37|2023-10-06T22:03:44.6540000-07:00|10FF0008|Kokosaze Lulusaze|00011271|90216|90216|10000|10000|17||100.36|101.86|0.00|2.55|1F00|0|0|02|08000A97|0|C1A00000|||||| +261|2023-10-06T22:03:44.2950000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:03:44.2950000-07:00|Change|40021585||||||||||||| +20|2023-10-06T22:03:44.6540000-07:00|40021585|Zeromus|8CFA|Flow of the Abyss|40021585|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:44.6540000-07:00|40021599|Zeromus|8B82|Dimensional Surge|40021599|Zeromus|8.700|100.00|80.10|0.00|-1.40| +21|2023-10-06T22:03:44.6550000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|241D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4560171|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.36|101.86|0.00|2.55|00011275|0|1| +21|2023-10-06T22:03:44.6550000-07:00|10FF0003|Gegehi Gehi|1D66|Verholy|40021585|Zeromus|752003|73970000|B3E|BA8000|1B|1D668000|0|0|0|0|0|0|0|0|0|0|4560171|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5350|10000|||105.12|99.73|0.00|1.15|00011276|0|1| +38|2023-10-06T22:03:44.6550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||104.79|95.83|0.00|0.47|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:03:44.6550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||105.12|99.73|0.00|1.15|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:44.6550000-07:00|7B3|Manafication|13.66|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|05|73814|73814| +37|2023-10-06T22:03:44.7430000-07:00|10FF0008|Kokosaze Lulusaze|0001126D|90216|90216|10000|10000|17||100.54|103.53|0.00|-3.11|1F03|0|0|03|08000A97|0|C1A00000|||||||||| +26|2023-10-06T22:03:44.7430000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +37|2023-10-06T22:03:44.7430000-07:00|10FF0003|Gegehi Gehi|0001126D|73814|73814|4950|10000|0||105.98|100.23|0.00|2.66|2303|0|0|02|07000A97|0|C1A00000|||||| +38|2023-10-06T22:03:44.7430000-07:00|400219D2|Automaton Queen|005A5A00|82193|85668|10000|10000|0||104.57|100.60|0.00|-2.92|0|0|0|||||||||| +26|2023-10-06T22:03:44.7430000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|400219D2|Automaton Queen|00|85668|73814| +261|2023-10-06T22:03:44.3960000-07:00|Change|400219AD||||||||| +261|2023-10-06T22:03:44.3960000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:03:44.8770000-07:00|10FF000A|Dukaro Nezikaro|0001126D|83502|83502|10000|10000|0||97.92|96.99|0.00|-2.46|1E04|0|0|03|07000A97|0|C1A00000|||||||||| +26|2023-10-06T22:03:44.8770000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|83502|73814| +37|2023-10-06T22:03:44.8770000-07:00|10FF0003|Gegehi Gehi|0001126D|73814|73814|4950|10000|0||106.21|100.37|0.00|2.07|2304|0|0|02|07000A97|0|C1A00000|||||| +38|2023-10-06T22:03:44.8780000-07:00|400219E4|Bunshin|005A5A00|76288|79156|10000|10000|0||99.71|97.42|0.00|3.12|0|0|0||||||| +26|2023-10-06T22:03:44.8780000-07:00|30|Well Fed|1673.21|10FF000A|Dukaro Nezikaro|400219E4|Bunshin|294E|79156|83502| +26|2023-10-06T22:03:44.8780000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|400219E4|Bunshin|00|79156|73814| +37|2023-10-06T22:03:44.9220000-07:00|10FF0007|Kehabiqo Febiqo|00011272|129844|129844|10000|10000|0||98.24|93.42|0.00|-2.84|1500|0|0|02|01000A97|0|C1A00000|||||| +38|2023-10-06T22:03:44.9220000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||96.11|101.72|0.00|2.23|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:44.9220000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:44.5840000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:44.5840000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:03:45.0110000-07:00|10FF0006|Wowobora Gogobora|0001126D|81809|81809|9700|10000|0||96.08|102.50|0.00|1.49|1B05|0|0|03|01000511|0|41A00000|||||||||| +26|2023-10-06T22:03:45.0110000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +37|2023-10-06T22:03:45.0110000-07:00|10FF0003|Gegehi Gehi|0001126D|73814|73814|4950|10000|0||106.36|100.45|0.00|2.30|2305|0|0|02|07000A97|0|C1A00000|||||| +21|2023-10-06T22:03:45.0110000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8C60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4537551|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||106.55|94.46|0.00|2.04|00011277|0|1| +38|2023-10-06T22:03:45.0110000-07:00|400219E6|Carbuncle|005A5A00|74223|77698|10000|10000|0||98.56|98.27|0.00|-0.97|0|0|0||||||| +26|2023-10-06T22:03:45.0110000-07:00|30|Well Fed|457.62|10FF0006|Wowobora Gogobora|400219E6|Carbuncle|2964|77698|81809| +26|2023-10-06T22:03:45.0110000-07:00|511|Embolden|19.96|10FF0003|Gegehi Gehi|400219E6|Carbuncle|00|77698|73814| +31|2023-10-06T22:03:45.0110000-07:00|10FF0001||||| +261|2023-10-06T22:03:44.7000000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:03:44.7000000-07:00|Change|40021599||||||||||||| +21|2023-10-06T22:03:45.0550000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4537551|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.65|104.54|0.00|-3.11|00011278|0|1| +39|2023-10-06T22:03:45.0990000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|600|10000|||107.05|99.60|0.00|1.92| +37|2023-10-06T22:03:45.1440000-07:00|10FF0001|Sesuga Sapisuga|0001126D|129071|129071|8900|10000|0||106.45|94.49|0.00|-1.20|1306|0|0|03|04000A97|0|C1A00000|||||||||| +26|2023-10-06T22:03:45.1440000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +37|2023-10-06T22:03:45.1440000-07:00|10FF0003|Gegehi Gehi|0001126D|73814|73814|4950|10000|0||106.49|100.52|0.00|2.65|2306|0|0|02|07000A97|0|C1A00000|||||| +37|2023-10-06T22:03:45.1880000-07:00|40021585|Zeromus|00011273|4514890||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:45.1880000-07:00|10FF0006|Wowobora Gogobora|00011273|81809|81809|9700|10000|0||96.06|103.17|0.00|0.84|1B00|0|0|03|0B25|0|0|||||||||| +37|2023-10-06T22:03:45.1880000-07:00|10FF0004|Buhojaqe Zijaqe|00011274|81541|81541|600|10000|0||107.05|99.60|0.00|1.92|1C00|0|0|02|07000A97|0|41A00000|||||| +38|2023-10-06T22:03:45.1880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||96.06|103.17|0.00|0.84|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:45.1880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|600|10000|0||107.05|99.60|0.00|1.92|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T22:03:45.2330000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||105.00|99.60|0.00|-2.27| +21|2023-10-06T22:03:45.2330000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|19B60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4514890|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9700|10000|||96.02|104.02|0.00|0.46|00011279|0|1| +38|2023-10-06T22:03:45.2330000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||96.02|104.02|0.00|0.46|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:45.2330000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:03:45.2780000-07:00|40021585|Zeromus|00011275|4505645||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:45.2780000-07:00|10FF0008|Kokosaze Lulusaze|00011275|90216|90216|10000|10000|17||100.72|105.25|0.00|2.70|1F00|0|0|02|08000A97|0|C1A00000|||||| +37|2023-10-06T22:03:45.2780000-07:00|10FF0007|Kehabiqo Febiqo|0001126D|129844|129844|10000|10000|0||96.19|93.22|0.00|-2.03|1507|0|0|03|01000A97|0|C1A00000|||||||||| +26|2023-10-06T22:03:45.2780000-07:00|511|Embolden|20.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +37|2023-10-06T22:03:45.2780000-07:00|10FF0003|Gegehi Gehi|0001126D|73814|73814|4950|10000|0||106.63|100.60|0.00|3.01|2307|0|0|02|07000A97|0|C1A00000|||||| +261|2023-10-06T22:03:44.9240000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:03:44.9240000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:03:45.3230000-07:00|10FF0003|Gegehi Gehi|00011274|73814|73814|4950|10000|0||107.47|101.09|0.00|2.67|2301|0|0|02|07000A97|0|41A00000|||||| +38|2023-10-06T22:03:45.3230000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||107.47|101.09|0.00|2.67|0|0|0|||||||||||||||||||||||||||| +20|2023-10-06T22:03:45.4120000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|108.00|105.64|0.00|0.58| +37|2023-10-06T22:03:45.4570000-07:00|10FF000B|Pusu Rosu|00011274|79209|79209|8591|10000|0||108.26|106.18|0.00|0.53|1802|0|0|02|05000A97|0|41A00000|||||| +21|2023-10-06T22:03:45.4570000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|750003|6B820000|4|2A238000|0|0|0|0|0|0|0|0|0|0|0|0|4505645|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||105.57|94.83|0.00|-1.21|0001127A|0|1| +38|2023-10-06T22:03:45.4570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||105.57|94.83|0.00|-1.21|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:45.4570000-07:00|558|Requiescat|22.06|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +38|2023-10-06T22:03:45.4570000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8591|10000|0||108.26|106.18|0.00|0.53|0|0|0||||||||||||||||||||||||| +31|2023-10-06T22:03:45.4570000-07:00|10FF0001||||| +39|2023-10-06T22:03:45.5020000-07:00|10FF0003|Gegehi Gehi|73814|73814|5150|10000|||108.44|101.66|0.00|2.20| +26|2023-10-06T22:03:45.5020000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:03:45.5020000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|26620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4505645|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.90|107.05|0.00|1.48|0001127B|0|1| +38|2023-10-06T22:03:45.5020000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|0||95.93|105.48|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:45.5020000-07:00|13D|Fey Illumination|0.00|400219AD|Ruby Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77430| +261|2023-10-06T22:03:45.1590000-07:00|Change|400219E6||||||||| +37|2023-10-06T22:03:45.5460000-07:00|40021585|Zeromus|00011277|4503399||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:45.5460000-07:00|10FF0001|Sesuga Sapisuga|00011277|129071|129071|7900|10000|0||105.53|94.84|0.00|-1.24|1300|0|0|02|04000A97|0|C1A00000|||||| +37|2023-10-06T22:03:45.5910000-07:00|10FF0001|Sesuga Sapisuga|00011274|129071|129071|7900|10000|0||105.53|94.84|0.00|-1.24|1303|0|0|02|04000A97|0|41A00000|||||| +38|2023-10-06T22:03:45.5910000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||105.53|94.84|0.00|-1.24|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T22:03:45.6350000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|80BF0000|200204|3E7C8000|0|0|0|0|0|0|0|0|0|0|0|0|4503399|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||95.05|92.70|0.00|-2.13|0001127C|0|1| +38|2023-10-06T22:03:45.6350000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||95.05|92.70|0.00|-2.13|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:45.6350000-07:00|499|Inner Release|9.56|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +38|2023-10-06T22:03:45.6350000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|5150|10000|0||109.76|102.49|0.00|2.32|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:45.6350000-07:00|13D|Fey Illumination|0.00|400219AD|Ruby Carbuncle|10FF0003|Gegehi Gehi|00|73814|77430| +261|2023-10-06T22:03:45.2540000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T22:03:45.6810000-07:00|400219D2|Automaton Queen|82193|85668|10000|10000|||104.57|100.60|0.00|-2.92| +24|2023-10-06T22:03:45.6810000-07:00|40021585|Zeromus|DoT|0|1B61|4503399|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|600|10000|||110.88|101.89|0.00|1.01| +38|2023-10-06T22:03:45.6810000-07:00|40021585|Zeromus|005A5A00|4496390|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T22:03:45.7250000-07:00|10FF000A|Dukaro Nezikaro|00011274|83502|83502|10000|10000|0||95.63|96.32|0.00|-2.15|1E04|0|0|02|07000A97|0|41A00000|||||| +38|2023-10-06T22:03:45.7250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.63|96.32|0.00|-2.15|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:45.3490000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:03:45.7690000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|92A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4496390|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.31|96.07|0.00|-2.19|0001127D|0|1| +38|2023-10-06T22:03:45.7690000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|600|10000|0||111.44|102.69|0.00|0.76|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:45.7690000-07:00|13D|Fey Illumination|0.00|400219AD|Ruby Carbuncle|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +261|2023-10-06T22:03:45.4390000-07:00|Change|400219E4||| +37|2023-10-06T22:03:45.8130000-07:00|40021585|Zeromus|00011278|4493922||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:45.8130000-07:00|10FF0008|Kokosaze Lulusaze|00011278|90216|90216|10000|10000|17||101.06|108.60|0.00|-3.10|1F00|0|0|02|08000A97|0|C1A00000|||||| +37|2023-10-06T22:03:45.8580000-07:00|10FF0008|Kokosaze Lulusaze|00011274|90216|90216|10000|10000|17||101.09|108.86|0.00|-3.10|1F05|0|0|02|08000A97|0|41A00000|||||| +38|2023-10-06T22:03:45.8580000-07:00|400219E6|Carbuncle|005A5A00|74223|77698|10000|10000|0||95.23|101.05|0.00|-0.72|0|0|0|||||||||| +26|2023-10-06T22:03:45.8580000-07:00|77B|Summon Order|30.00|10FF0006|Wowobora Gogobora|400219E6|Carbuncle|01|77698|81809| +21|2023-10-06T22:03:45.8580000-07:00|10FF0006|Wowobora Gogobora|64C7|Radiant Aegis|10FF0006|Wowobora Gogobora|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||95.86|106.98|0.00|1.04|81809|81809|9700|10000|||95.86|106.98|0.00|1.04|0001127E|0|1| +38|2023-10-06T22:03:45.8580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||101.09|108.86|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:45.9030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||101.09|108.86|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:45.9030000-07:00|13D|Fey Illumination|0.00|400219AD|Ruby Carbuncle|10FF0008|Kokosaze Lulusaze|00|90216|77430| +21|2023-10-06T22:03:45.9470000-07:00|400219E6|Carbuncle|64F1|Radiant Aegis|10FF0006|Wowobora Gogobora|E90E|A8E0000|1B|64F18000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9700|10000|||95.86|106.98|0.00|1.04|74223|77698|10000|10000|||95.23|101.05|0.00|-0.72|0001127F|0|1| +38|2023-10-06T22:03:45.9470000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|19||95.86|106.98|0.00|1.04|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:45.9470000-07:00|A8E|Radiant Aegis|29.96|400219E6|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +37|2023-10-06T22:03:45.9920000-07:00|40021585|Zeromus|00011279|4487340||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:45.9920000-07:00|10FF0006|Wowobora Gogobora|00011279|81809|81809|9700|10000|19||95.84|107.30|0.00|0.61|1B00|0|0|02|04000A97|0|C1A00000|||||| +37|2023-10-06T22:03:45.9920000-07:00|10FF0007|Kehabiqo Febiqo|00011274|129844|129844|10000|10000|0||95.05|92.70|0.00|2.77|1506|0|0|02|01000A97|0|41A00000|||||| +38|2023-10-06T22:03:45.9920000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||95.05|92.70|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:45.9920000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T22:03:45.9920000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||101.11|109.13|-0.01|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:45.9920000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|64|90216|129844| +261|2023-10-06T22:03:45.5380000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:45.5380000-07:00|Change|10FF000B||||||||||||||||||||| +38|2023-10-06T22:03:46.0370000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8591|10000|0||108.51|106.83|0.00|-2.83|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:03:46.0370000-07:00|13D|Fey Illumination|0.00|400219AD|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +37|2023-10-06T22:03:46.0810000-07:00|40021585|Zeromus|00011276|4457749||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:46.0810000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|35FA0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|4487340|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8591|10000|||108.51|106.83|0.00|-2.83|00011280|0|1| +37|2023-10-06T22:03:46.1250000-07:00|40021585|Zeromus|0001127B|4447923|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|02|40FB8526|| +26|2023-10-06T22:03:46.1250000-07:00|35D|Wildfire|7.86|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|02|40478540|90216| +37|2023-10-06T22:03:46.1250000-07:00|10FF0006|Wowobora Gogobora|00011274|81809|81809|9700|10000|19||95.82|107.61|0.00|0.19|1B07|0|0|02|04000A97|0|41A00000|||||| +21|2023-10-06T22:03:46.1250000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|17860000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4487340|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10|00011281|0|1| +38|2023-10-06T22:03:46.1250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|19||95.82|107.61|0.00|0.19|0|0|0|||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:45.6410000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:03:46.1700000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10| +21|2023-10-06T22:03:46.1700000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44716003|649B0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|4447923|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||93.69|94.28|0.00|-2.47|00011282|0|1| +38|2023-10-06T22:03:46.1700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||93.69|94.28|0.00|-2.47|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:46.1700000-07:00|13D|Fey Illumination|0.00|400219AD|Ruby Carbuncle|10FF000A|Dukaro Nezikaro|00|83502|77430| +26|2023-10-06T22:03:46.1700000-07:00|7A2|Bunshin|22.24|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|03|83502|83502| +261|2023-10-06T22:03:45.7570000-07:00|Change|400219E4||||||||| +37|2023-10-06T22:03:46.2590000-07:00|40021585|Zeromus|0001127C|4414964||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:46.2590000-07:00|400219E4|Bunshin|4407|Aeolian Edge|40021585|Zeromus|712003|1CF20000|53E|9F8000|1B|44078000|0|0|0|0|0|0|0|0|0|0|4447923|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||99.71|97.42|0.00|3.12|00011283|0|1| +261|2023-10-06T22:03:45.8670000-07:00|Change|400219E4||| +37|2023-10-06T22:03:46.3040000-07:00|40021585|Zeromus|0001127D|4412618||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:46.3040000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|0||105.53|94.84|0.00|-1.24|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:46.3040000-07:00|13D|Fey Illumination|0.00|400219AD|Ruby Carbuncle|10FF0001|Sesuga Sapisuga|00|129071|77430| +37|2023-10-06T22:03:46.3480000-07:00|40021585|Zeromus|0001127A|4385096||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:45.9880000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:03:45.9880000-07:00|Change|10FF0003||||||||| +38|2023-10-06T22:03:46.4380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||95.05|92.70|0.00|2.77|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:46.4380000-07:00|13D|Fey Illumination|0.00|400219AD|Ruby Carbuncle|10FF0007|Kehabiqo Febiqo|00|129844|77430| +20|2023-10-06T22:03:46.5280000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|112.51|108.35|-0.02|0.36| +21|2023-10-06T22:03:46.6150000-07:00|4002159F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.27|86.42|0.00|0.00|00011284|0|0| +21|2023-10-06T22:03:46.6150000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.96|99.98|0.00|0.00|00011285|0|0| +21|2023-10-06T22:03:46.6150000-07:00|400215A1|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.98|90.99|0.00|0.00|00011286|0|0| +21|2023-10-06T22:03:46.6150000-07:00|400215A3|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.83|91.77|0.00|0.00|00011287|0|0| +21|2023-10-06T22:03:46.6150000-07:00|400215A2|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.95|99.96|0.00|0.00|00011288|0|0| +261|2023-10-06T22:03:46.1950000-07:00|Change|4002159F||||||||||| +261|2023-10-06T22:03:46.1950000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:03:46.1950000-07:00|Change|400215A1||||||||||| +261|2023-10-06T22:03:46.1950000-07:00|Change|400215A2||||||||||| +261|2023-10-06T22:03:46.1950000-07:00|Change|400215A3||||||||||| +21|2023-10-06T22:03:46.6590000-07:00|10FF000B|Pusu Rosu|4098|Temperance|10FF000B|Pusu Rosu|140F|7508000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8191|10000|||108.51|106.83|0.00|-2.83|79209|79209|8191|10000|||108.51|106.83|0.00|-2.83|00011289|0|1| +37|2023-10-06T22:03:46.7040000-07:00|40021585|Zeromus|00011282|4359341||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:46.7040000-07:00|400219E4|Bunshin|76288|79156|10000|10000|||93.10|93.54|0.00|2.67| +37|2023-10-06T22:03:46.7480000-07:00|10FF0006|Wowobora Gogobora|0001127F|81809|81809|9700|10000|19||95.79|107.96|0.00|0.02|1B00|0|0|01|0A8E|0|41E9978B|| +39|2023-10-06T22:03:46.7480000-07:00|400219E6|Carbuncle|77698|77698|10000|10000|||94.42|103.56|0.00|0.23| +38|2023-10-06T22:03:46.7480000-07:00|400219E6|Carbuncle|005A5A00|77698|77698|10000|10000|0||94.42|103.56|0.00|0.23|0|0|0||||||| +30|2023-10-06T22:03:46.7480000-07:00|77B|Summon Order|0.00|10FF0006|Wowobora Gogobora|400219E6|Carbuncle|01|77698|81809| +37|2023-10-06T22:03:46.7930000-07:00|40021585|Zeromus|00011283|4351931||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:46.7930000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8100|10000|||105.43|94.87|0.00|-1.32| +38|2023-10-06T22:03:46.8380000-07:00|400219D2|Automaton Queen|005A5A00|0|0|0|0|0||104.57|100.60|0.00|-2.92|0|0|0|||| +30|2023-10-06T22:03:46.8380000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|400219D2|Automaton Queen|296C|0|90216| +30|2023-10-06T22:03:46.8380000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400219D2|Automaton Queen|00|0|73814| +261|2023-10-06T22:03:46.3960000-07:00|Change|400219D2||||||||||||| +261|2023-10-06T22:03:46.4920000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:03:46.9260000-07:00|40021585|Zeromus|00011281|4345909||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:46.4920000-07:00|Change|400219E6||||||||| +21|2023-10-06T22:03:47.0160000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BA10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4345909|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.33|91.59|0.00|-2.67|0001128A|0|1| +26|2023-10-06T22:03:47.0160000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:03:47.0160000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|31ED0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4345909|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10|0001128B|0|1| +20|2023-10-06T22:03:47.0160000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|1.491|95.70|108.35|0.00|-0.11| +261|2023-10-06T22:03:46.5840000-07:00|Change|10FF0006||||||||||||||||||||| +261|2023-10-06T22:03:46.5840000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:46.5840000-07:00|Change|10FF000B||||||||||||||||||||||| +24|2023-10-06T22:03:47.0610000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15CB|129071|129071|8100|10000|||105.43|94.87|0.00|-1.32|10FF0004|Buhojaqe Zijaqe|0|81541|81541|600|10000|||112.69|109.06|0.00|-2.73| +24|2023-10-06T22:03:47.0610000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D10|129844|129844|10000|10000|||93.98|91.07|0.00|-2.65|10FF0004|Buhojaqe Zijaqe|0|81541|81541|600|10000|||112.69|109.06|0.00|-2.73| +24|2023-10-06T22:03:47.0610000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D90|83502|83502|10000|10000|||90.92|89.05|0.00|-2.72|10FF0004|Buhojaqe Zijaqe|0|81541|81541|600|10000|||112.69|109.06|0.00|-2.73| +24|2023-10-06T22:03:47.0610000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D95|81809|81809|9700|10000|||95.65|108.53|0.00|-0.17|10FF0004|Buhojaqe Zijaqe|0|81541|81541|600|10000|||112.69|109.06|0.00|-2.73| +24|2023-10-06T22:03:47.0610000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D7E|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|600|10000|||112.69|109.06|0.00|-2.73| +21|2023-10-06T22:03:47.0610000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|750003|55450000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|4345909|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|5150|10000|||111.07|109.15|0.00|-1.71|0001128C|0|1| +38|2023-10-06T22:03:47.0610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.98|91.07|0.00|-2.65|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:47.0610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||101.12|109.21|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:47.0610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9700|10000|19||95.65|108.53|0.00|-0.17|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:47.0610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||105.43|94.87|0.00|-1.32|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:03:47.0610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|0||111.07|109.15|0.00|-1.71|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.0610000-07:00|7B3|Manafication|11.26|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|04|73814|73814| +38|2023-10-06T22:03:47.0610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.92|89.05|0.00|-2.72|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.0610000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +39|2023-10-06T22:03:47.1940000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9900|10000|||95.64|108.59|0.00|-0.98| +38|2023-10-06T22:03:47.2830000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|600|10000|0||112.69|109.06|0.00|-2.73|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.2830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:03:47.2830000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||101.12|109.21|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.2830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:03:47.2830000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|19||95.62|108.64|0.00|-1.76|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.2830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:03:47.2830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|0||111.09|109.16|-0.02|-2.99|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.2830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:03:47.2830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.39|87.93|0.00|-2.71|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.2830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:03:47.2830000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8191|10000|0||107.62|107.99|0.00|-0.70|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.2830000-07:00|750|Temperance|20.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +26|2023-10-06T22:03:47.2830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:03:47.2830000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.60|90.48|0.00|-2.64|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.2830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:03:47.2830000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||105.43|94.87|0.00|-1.32|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:47.2830000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:03:47.2830000-07:00|10FF000B|Pusu Rosu|00011289|79209|79209|8191|10000|0||107.62|107.99|0.00|-0.70|1800|0|0|02|03000750|0|41A00000|||||| +21|2023-10-06T22:03:47.2830000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|92A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4345909|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||105.43|94.87|0.00|-1.32|0001128D|0|1| +31|2023-10-06T22:03:47.2830000-07:00|10FF0001||||| +37|2023-10-06T22:03:47.3700000-07:00|40021585|Zeromus|00011280|4332091||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:47.3700000-07:00|10FF000B|Pusu Rosu|79209|79209|8472|10000|||107.62|107.99|0.00|-0.70| +39|2023-10-06T22:03:47.3700000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||90.39|87.93|0.00|-2.71| +261|2023-10-06T22:03:46.9360000-07:00|Change|10FF0004||||||||||||||||||| +39|2023-10-06T22:03:47.4600000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||93.51|90.34|0.00|-2.68| +38|2023-10-06T22:03:47.4600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|600|10000|0||112.69|109.06|0.00|-2.73|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:47.4600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||101.12|109.21|0.00|-3.10|0|0|0|||||||||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:47.4600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9900|10000|19||95.61|108.70|0.00|-2.52|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:47.4600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|0||111.13|109.19|0.00|2.73|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:03:47.4600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.14|87.41|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:47.4600000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8472|10000|0||107.47|108.17|0.00|-0.65|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:03:47.4600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||93.51|90.34|0.00|-2.68|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:03:47.4600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||105.43|94.87|0.00|-1.32|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T22:03:47.4600000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|33300000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|4332091|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|600|10000|||112.69|109.06|0.00|-2.73|0001128E|0|1| +261|2023-10-06T22:03:47.0520000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:03:47.5480000-07:00|40021585|Zeromus|0001128A|4329114||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:47.1660000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T22:03:47.6370000-07:00|40021585|Zeromus|0001128B|4316333|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|03|40CB22D0|| +26|2023-10-06T22:03:47.6370000-07:00|35D|Wildfire|6.35|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|03|40478540|90216| +21|2023-10-06T22:03:47.6370000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|25EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4329114|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10|0001128F|0|1| +21|2023-10-06T22:03:47.6370000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.21|87.92|0.00|0.00|00011290|0|0| +21|2023-10-06T22:03:47.6370000-07:00|4002159B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.83|113.02|0.00|0.00|00011291|0|0| +21|2023-10-06T22:03:47.6370000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.71|96.92|0.00|0.00|00011292|0|0| +21|2023-10-06T22:03:47.6370000-07:00|4002159D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.20|100.15|0.00|0.00|00011293|0|0| +21|2023-10-06T22:03:47.6370000-07:00|4002159E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.15|95.61|0.00|0.00|00011294|0|0| +261|2023-10-06T22:03:47.1660000-07:00|Change|4002159C||||||||||| +261|2023-10-06T22:03:47.1660000-07:00|Change|4002159B||||||||||| +261|2023-10-06T22:03:47.1660000-07:00|Change|4002159E||||||||||| +261|2023-10-06T22:03:47.1660000-07:00|Change|4002159D||||||||||| +261|2023-10-06T22:03:47.1660000-07:00|Change|4002159A||||||||||| +20|2023-10-06T22:03:47.6820000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|107.11|108.23|-0.02|-0.95| +261|2023-10-06T22:03:47.2630000-07:00|Change|40021597||||||||| +261|2023-10-06T22:03:47.2630000-07:00|Change|40021595||||||||| +261|2023-10-06T22:03:47.2630000-07:00|Change|40021598||||||||| +261|2023-10-06T22:03:47.2630000-07:00|Change|40021596||||||||| +21|2023-10-06T22:03:47.7260000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|A580000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4316333|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10|00011295|0|1| +20|2023-10-06T22:03:47.7710000-07:00|40021595|Zeromus|8B77|Umbral Prism|10FF0006|Wowobora Gogobora|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:03:47.7710000-07:00|10FF0006|Wowobora Gogobora|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T22:03:47.7710000-07:00|40021596|Zeromus|8B77|Umbral Prism|10FF0003|Gegehi Gehi|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:03:47.7710000-07:00|10FF0003|Gegehi Gehi|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T22:03:47.7710000-07:00|40021597|Zeromus|8B77|Umbral Prism|10FF000A|Dukaro Nezikaro|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:03:47.7710000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T22:03:47.7710000-07:00|40021598|Zeromus|8B77|Umbral Prism|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:03:47.7710000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|00D3|0000|0000|0000| +37|2023-10-06T22:03:47.8160000-07:00|40021585|Zeromus|0001128D|4313987||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:47.9490000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|750003|7FEE0000|4|269F8000|0|0|0|0|0|0|0|0|0|0|0|0|4313987|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8100|10000|||105.43|94.87|0.00|-2.79|00011296|0|1| +21|2023-10-06T22:03:47.9490000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4313987|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||89.38|85.81|0.00|-2.70|00011297|0|1| +38|2023-10-06T22:03:47.9490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|0||105.43|94.87|0.00|-2.79|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:47.9490000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T22:03:47.9490000-07:00|10FF0001||||| +261|2023-10-06T22:03:47.5450000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:03:47.6430000-07:00|Change|10FF0001||||| +261|2023-10-06T22:03:47.6430000-07:00|Change|10FF000B||||||||||||||||||||||| +21|2023-10-06T22:03:47.9940000-07:00|10FF0006|Wowobora Gogobora|DFB|Ruin III|40021585|Zeromus|750003|33730000|1B|DFB8000|0|0|0|0|0|0|0|0|0|0|0|0|4313987|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9900|10000|||95.60|108.75|0.00|2.99|00011298|0|1| +261|2023-10-06T22:03:47.7570000-07:00|Change|40021596||||||||||||| +261|2023-10-06T22:03:47.7570000-07:00|Change|40021595||||||||||||| +261|2023-10-06T22:03:47.7570000-07:00|Change|40021597||||||||||||| +261|2023-10-06T22:03:47.7570000-07:00|Change|40021598||||||||||||| +21|2023-10-06T22:03:48.0820000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|851D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4313987|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||92.63|86.98|-0.01|-2.95|00011299|0|1| +38|2023-10-06T22:03:48.0820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||92.63|86.98|-0.01|-2.95|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:48.0820000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +39|2023-10-06T22:03:48.1270000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|400|10000|||112.69|109.06|0.00|-2.73| +39|2023-10-06T22:03:48.2160000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.81|100.26|0.00|-1.91| +37|2023-10-06T22:03:48.2600000-07:00|40021585|Zeromus|0001128F|4304281||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:48.2600000-07:00|40021585|Zeromus|0001128E|4291177||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:47.9930000-07:00|Change|10FF0004||||||||||||||||||| +21|2023-10-06T22:03:48.3480000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|35DF0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|4291177|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8472|10000|||106.74|108.23|0.00|-2.91|0001129A|0|1| +21|2023-10-06T22:03:48.3930000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19E30000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|4291177|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||88.11|83.13|0.00|-2.70|0001129B|0|1| +38|2023-10-06T22:03:48.3930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||88.11|83.13|0.00|-2.70|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:48.3930000-07:00|7A2|Bunshin|20.02|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +261|2023-10-06T22:03:47.9930000-07:00|Change|400219E4||||||||| +261|2023-10-06T22:03:48.1100000-07:00|Change|400219E4||| +261|2023-10-06T22:03:48.2260000-07:00|Change|10FF0006||||||||||||||||||||| +37|2023-10-06T22:03:48.4820000-07:00|40021585|Zeromus|00011295|4288529||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:48.4820000-07:00|40021585|Zeromus|00011297|4286242||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:48.4820000-07:00|400219E4|Bunshin|4405|Spinning Edge|40021585|Zeromus|712003|1C830000|53E|9F8000|1B|44058000|0|0|0|0|0|0|0|0|0|0|4291177|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||88.20|83.31|0.00|1.84|0001129C|0|1| +39|2023-10-06T22:03:48.4820000-07:00|10FF0003|Gegehi Gehi|73814|73814|4950|10000|||110.10|109.09|0.00|-2.35| +26|2023-10-06T22:03:48.4820000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:03:48.4820000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2DCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4291177|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10|0001129D|0|1| +24|2023-10-06T22:03:48.6600000-07:00|40021585|Zeromus|DoT|0|239C|4291177|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|400|10000|||112.63|109.07|0.00|-1.98| +38|2023-10-06T22:03:48.6600000-07:00|40021585|Zeromus|005A5A00|4277126|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T22:03:48.2260000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:03:48.2260000-07:00|Change|400219E4||| +37|2023-10-06T22:03:48.7480000-07:00|40021585|Zeromus|00011299|4243049||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:48.7480000-07:00|10FF0006|Wowobora Gogobora|03|Sprint|10FF0006|Wowobora Gogobora|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9600|10000|||95.71|107.56|0.00|-3.02|81809|81809|9600|10000|||95.71|107.56|0.00|-3.02|0001129E|0|1| +37|2023-10-06T22:03:48.7920000-07:00|40021585|Zeromus|00011298|4229878||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:48.7920000-07:00|40021585|Zeromus|0001129B|4223251||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:48.8810000-07:00|10FF0006|Wowobora Gogobora|0001129E|81809|81809|9600|10000|19||95.83|106.59|0.00|3.00|1B00|0|0|01|08000032|1E|41200000|| +26|2023-10-06T22:03:48.8810000-07:00|32|Sprint|10.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|1E|81809|81809| +37|2023-10-06T22:03:48.8810000-07:00|40021585|Zeromus|00011296|4190501||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:48.8810000-07:00|40021585|Zeromus|0001128C|4168672||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:48.8810000-07:00|40021585|Zeromus|0001129C|4161373||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:49.0150000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||92.61|86.90|0.00|2.32|129844|129844|10000|10000|||92.61|86.90|0.00|2.32|0001129F|0|1| +38|2023-10-06T22:03:49.0150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||92.61|86.90|0.00|2.32|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:49.0150000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:03:49.0590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|400|10000|0||112.57|109.09|0.00|-1.21|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:49.0590000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:03:49.0590000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||110.18|108.80|0.00|-2.47|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:49.0590000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:03:49.0590000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8072|10000|0||106.71|108.24|0.00|-2.19|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:49.0590000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +261|2023-10-06T22:03:48.6160000-07:00|Change|10FF000B||||||||||||||||||||||| +37|2023-10-06T22:03:49.1480000-07:00|40021585|Zeromus|0001129D|4149647|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|04|409AC8AB|| +26|2023-10-06T22:03:49.1480000-07:00|35D|Wildfire|4.84|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|04|40478540|90216| +39|2023-10-06T22:03:49.1480000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10| +21|2023-10-06T22:03:49.1920000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|1D060000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4161373|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.12|109.21|0.00|-3.10|000112A0|0|1| +261|2023-10-06T22:03:48.9620000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:03:49.4150000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|FF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4149647|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||96.05|105.17|0.00|2.99|000112A1|0|1| +21|2023-10-06T22:03:49.4150000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|756003|504B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4149647|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||88.06|83.28|0.00|2.52|000112A2|0|1| +261|2023-10-06T22:03:49.0830000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:03:49.0830000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:49.5470000-07:00|10FF0007|Kehabiqo Febiqo|0001129F|129844|129844|10000|10000|0||92.61|86.81|0.00|2.94|1500|0|0|01|04000769|0|41F00000|| +21|2023-10-06T22:03:49.5470000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|DE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4149647|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||101.31|91.79|0.00|-2.21|000112A3|0|1| +20|2023-10-06T22:03:49.5470000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|112.48|109.24|0.00|-0.55| +38|2023-10-06T22:03:49.5470000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||92.61|86.81|0.00|2.94|0|0|0|||||||||||||||||||||||||||||||||| +31|2023-10-06T22:03:49.5470000-07:00|10FF0001||||| +21|2023-10-06T22:03:49.5920000-07:00|10FF0006|Wowobora Gogobora|1D02|Ruin IV|40021585|Zeromus|750003|4AAE0000|1B|1D028000|0|0|0|0|0|0|0|0|0|0|0|0|4149647|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9600|10000|||96.40|103.12|0.00|2.78|000112A4|0|1| +38|2023-10-06T22:03:49.5920000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|19||96.40|103.12|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:49.5920000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:03:49.1740000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:03:49.6800000-07:00|40021585|Zeromus|0001129A|4135856||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:49.2680000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:03:49.3660000-07:00|Change|10FF0003||||||||| +39|2023-10-06T22:03:49.7240000-07:00|400219E4|Bunshin|76288|79156|10000|10000|||88.20|83.31|0.00|1.84| +39|2023-10-06T22:03:49.7690000-07:00|400219E6|Carbuncle|77698|77698|10000|10000|||94.68|106.25|0.00|-0.72| +39|2023-10-06T22:03:49.8140000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7300|10000|||100.03|90.74|0.00|-2.28| +37|2023-10-06T22:03:49.9480000-07:00|40021585|Zeromus|000112A1|4135601||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:49.9920000-07:00|40021585|Zeromus|000112A0|4128171||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:50.0370000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|24910000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4128171|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.42|103.84|0.00|-3.07|000112A5|0|1| +261|2023-10-06T22:03:49.6480000-07:00|Change|10FF0006||||||||||| +38|2023-10-06T22:03:50.0370000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||101.42|103.84|0.00|-3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:50.0370000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +37|2023-10-06T22:03:50.0810000-07:00|40021585|Zeromus|000112A3|4124616||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:50.0810000-07:00|40021585|Zeromus|000112A2|4104061||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:50.0820000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D84|81809|81809|9200|10000|||97.97|99.19|0.00|2.77|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||112.35|109.36|-0.01|-2.71| +24|2023-10-06T22:03:50.0820000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D4B|129071|129071|7300|10000|||98.18|89.01|0.00|-2.38|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||112.35|109.36|-0.01|-2.71| +24|2023-10-06T22:03:50.0820000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D92|90216|90216|10000|10000|||101.42|103.84|0.00|-3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||112.35|109.36|-0.01|-2.71| +24|2023-10-06T22:03:50.0820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D46|129844|129844|10000|10000|||89.92|84.69|0.00|3.10|10FF0004|Buhojaqe Zijaqe|0|81541|81541|400|10000|||112.35|109.36|-0.01|-2.71| +38|2023-10-06T22:03:50.0820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||89.92|84.69|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.0820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:03:50.0820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||101.42|103.84|0.00|-3.07|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.0820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:50.0820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9200|10000|19||97.97|99.19|0.00|2.77|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.0820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:50.0820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7300|10000|0||98.18|89.01|0.00|-2.38|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.0820000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +21|2023-10-06T22:03:50.1260000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4128171|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|000112A6|0|1| +261|2023-10-06T22:03:49.7630000-07:00|Change|10FF0001||||||||||| +39|2023-10-06T22:03:50.2150000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9400|10000|||98.37|98.42|0.00|2.73| +39|2023-10-06T22:03:50.3480000-07:00|10FF000B|Pusu Rosu|79209|79209|8353|10000|||106.29|117.13|0.00|0.03| +39|2023-10-06T22:03:50.3480000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||87.21|83.15|0.00|1.81| +37|2023-10-06T22:03:50.3930000-07:00|40021585|Zeromus|000112A4|4084943||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:50.3930000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|C280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4104061|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||88.31|84.60|0.00|3.02|000112A7|0|1| +21|2023-10-06T22:03:50.3930000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|CD00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4104061|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||101.20|103.41|0.00|-3.09|000112A8|0|1| +23|2023-10-06T22:03:50.4350000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|Cancelled| +21|2023-10-06T22:03:50.4370000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|752003|5F630000|4|25D48000|0|0|0|0|0|0|0|0|0|0|0|0|4104061|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7300|10000|||96.59|87.12|0.00|-2.47|000112A9|0|1| +20|2023-10-06T22:03:50.4370000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|106.30|117.29|0.00|0.05| +38|2023-10-06T22:03:50.4370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||96.59|87.12|0.00|-2.47|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:50.4370000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:03:49.9950000-07:00|Change|400219E4||| +39|2023-10-06T22:03:50.4820000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||88.23|84.57|0.00|3.00| +38|2023-10-06T22:03:50.4820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|400|10000|0||112.49|108.90|-0.02|2.29|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:03:50.4820000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.79|102.71|0.00|-2.97|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:03:50.4820000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|19||99.81|96.09|0.00|2.62|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:03:50.4820000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4950|10000|0||112.52|103.40|0.00|-2.19|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:03:50.4820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:03:50.4820000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8353|10000|0||106.30|117.45|0.00|0.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:03:50.4820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||88.23|84.57|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:03:50.4820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||96.14|86.45|0.00|-2.67|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.4820000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +21|2023-10-06T22:03:50.5260000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|A43F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4084943|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||88.23|84.57|0.00|3.00|000112AA|0|1| +21|2023-10-06T22:03:50.5260000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|750003|60A00000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|4084943|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4950|10000|||112.52|103.40|0.00|-2.19|000112AB|0|1| +38|2023-10-06T22:03:50.5260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||88.23|84.57|0.00|3.00|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:50.5260000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:03:50.5260000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4550|10000|0||112.52|103.40|0.00|-2.19|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.5260000-07:00|7B3|Manafication|7.79|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|03|73814|73814| +04|2023-10-06T22:03:50.1090000-07:00|400219D2|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|0|0|10000|||104.57|100.60|0.00|-2.92| +261|2023-10-06T22:03:50.1090000-07:00|Remove|400219D2| +21|2023-10-06T22:03:50.6150000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|258E0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|4084943|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|000112AC|0|1| +38|2023-10-06T22:03:50.6150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:50.6150000-07:00|7A2|Bunshin|17.79|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:03:50.2070000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:03:50.2070000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:03:50.6590000-07:00|40021585|Zeromus|000112A6|4081263||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:50.2070000-07:00|Change|400219E6||||||||| +38|2023-10-06T22:03:50.6600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||100.32|101.91|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:50.6600000-07:00|31|Medicated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|296C|90216|90216| +37|2023-10-06T22:03:50.7030000-07:00|40021585|Zeromus|000112A5|4071902|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|05|4051FBCD|| +26|2023-10-06T22:03:50.7030000-07:00|35D|Wildfire|3.28|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|05|40478540|90216| +21|2023-10-06T22:03:50.7030000-07:00|400219E4|Bunshin|4406|Gust Slash|40021585|Zeromus|710003|10BA0000|53E|9F8000|1B|44068000|0|0|0|0|0|0|0|0|0|0|4081263|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||87.23|83.17|0.00|1.81|000112AD|0|1| +21|2023-10-06T22:03:50.7030000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|15C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4081263|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.96|101.29|0.00|-2.73|000112AE|0|1| +261|2023-10-06T22:03:50.2970000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:03:50.2970000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:03:50.2970000-07:00|Change|400219E4||||||||| +261|2023-10-06T22:03:50.2970000-07:00|Change|10FF000B||||||||||||||||||||||| +261|2023-10-06T22:03:50.3920000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:03:50.9270000-07:00|40021585|Zeromus|000112A7|4068790||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:51.0160000-07:00|40021585|Zeromus|000112AC|4059176||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:51.1060000-07:00|40021585|Zeromus|000112AD|4054894||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:51.1060000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|600|10000|||113.55|104.54|0.00|2.89| +21|2023-10-06T22:03:51.1060000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|32710000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|4059176|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8353|10000|||106.31|117.75|0.00|-2.98|000112AF|0|1| +37|2023-10-06T22:03:51.1510000-07:00|40021585|Zeromus|000112A8|4051614||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:51.1980000-07:00|40021585|Zeromus|000112A9|4027195||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:51.1980000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98| +261|2023-10-06T22:03:50.7270000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:50.8380000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:03:50.8380000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:03:50.8380000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:03:51.3310000-07:00|40021585|Zeromus|000112AE|4021620||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:51.3310000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|4027195|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4550|10000|||113.13|99.90|0.00|-2.03|000112B0|0|1| +21|2023-10-06T22:03:51.3310000-07:00|10FF000A|Dukaro Nezikaro|8D2|Trick Attack|40021585|Zeromus|19710003|30620000|A0E|CB60000|0|0|0|0|0|0|0|0|0|0|0|0|4027195|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|000112B1|0|1| +38|2023-10-06T22:03:51.3310000-07:00|40021585|Zeromus|005A5A00|4021620|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +26|2023-10-06T22:03:51.3310000-07:00|CB6|Trick Attack|15.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +38|2023-10-06T22:03:51.3310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:51.3310000-07:00|1FB|Suiton|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T22:03:50.9610000-07:00|Change|400219E6||||||||| +37|2023-10-06T22:03:51.4630000-07:00|40021585|Zeromus|000112AA|3979573|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|05000CB6|0|C1700000|| +39|2023-10-06T22:03:51.4630000-07:00|10FF0003|Gegehi Gehi|73814|73814|4750|10000|||113.34|98.95|0.00|-1.96| +21|2023-10-06T22:03:51.5070000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|722003|99780000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3979573|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.48|95.67|0.00|-2.65|000112B2|0|1| +261|2023-10-06T22:03:51.0760000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:03:51.5950000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|752003|3DED0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|3979573|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|600|10000|||114.24|100.25|0.00|3.02|000112B3|0|1| +21|2023-10-06T22:03:51.6400000-07:00|40021585|Zeromus|8CFA|Flow of the Abyss|40021585|Zeromus|1B|8CFA8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3979573|40478540|10000|10000|||100.00|80.10|0.00|0.00|3979573|40478540|10000|10000|||100.00|80.10|0.00|0.00|000112B4|0|1| +261|2023-10-06T22:03:51.1810000-07:00|Change|40021585||||| +24|2023-10-06T22:03:51.6840000-07:00|40021585|Zeromus|DoT|0|20ED|3979573|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|600|10000|||114.24|100.25|0.00|3.02| +38|2023-10-06T22:03:51.6840000-07:00|40021585|Zeromus|005A5A00|3971144|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||||||||| +261|2023-10-06T22:03:51.3660000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T22:03:51.8180000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8EC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3971144|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|6300|10000|||95.87|85.07|0.00|2.74|000112B5|0|1| +31|2023-10-06T22:03:51.8180000-07:00|10FF0001||||| +37|2023-10-06T22:03:51.8620000-07:00|40021585|Zeromus|000112B0|3971143|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|05000CB6|0|C1700000|| +261|2023-10-06T22:03:51.4620000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:03:51.5610000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:03:51.5610000-07:00|Change|400219E6||||||||| +21|2023-10-06T22:03:52.0410000-07:00|10FF0006|Wowobora Gogobora|1D03|Summon Bahamut|40021585|Zeromus|19|10000|3E|CA8000|3E|9D8000|3E|1098000|0|0|0|0|0|0|0|0|3971143|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||105.69|88.97|0.00|1.20|000112B6|0|1| +38|2023-10-06T22:03:52.0410000-07:00|400219E6|Carbuncle|005A5A00|0|77698|0|10000|0||101.90|91.36|0.00|2.46|0|0|0|||| +30|2023-10-06T22:03:52.0410000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400219E6|Carbuncle|00|77698|73814| +38|2023-10-06T22:03:52.0410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:52.0410000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +38|2023-10-06T22:03:52.0830000-07:00|40021A22||005A5A00|66800|69928|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T22:03:52.0850000-07:00|40021585|Zeromus|000112AB|3946407|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|05000CB6|0|C1700000|| +21|2023-10-06T22:03:52.0850000-07:00|10FF000A|Dukaro Nezikaro|8C8|Mug|40021585|Zeromus|710003|14450000|5050E|27E0000|3D|0|283E|9F8000|0|0|0|0|0|0|0|0|3971143|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|000112B7|0|1| +38|2023-10-06T22:03:52.0850000-07:00|40021A22||005A5A00|66800|69928|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T22:03:51.6570000-07:00|Change|10FF0003||||||||| +38|2023-10-06T22:03:52.0850000-07:00|40021585|Zeromus|005A5A00|3946407|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:03:52.0850000-07:00|27E|Vulnerability Up|20.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +37|2023-10-06T22:03:52.1290000-07:00|40021585|Zeromus|000112B1|3934021|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|05000CB6|0|41700000|||||| +38|2023-10-06T22:03:52.1290000-07:00|40021585|Zeromus|005A5A00|3934021|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +39|2023-10-06T22:03:52.1740000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||94.85|91.57|0.00|3.04| +03|2023-10-06T22:03:51.7750000-07:00|40021A22|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|66800|69928|10000|10000|||108.27|89.48|0.00|-2.56| +261|2023-10-06T22:03:51.7750000-07:00|Add|40021A22||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:03:52.2190000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|1AAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3934021|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.85|91.57|0.00|3.04|000112B8|0|1| +261|2023-10-06T22:03:51.7750000-07:00|Change|40021A22||| +21|2023-10-06T22:03:52.3080000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3934021|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|200|10000|||114.75|95.15|0.00|3.09|000112B9|0|1| +21|2023-10-06T22:03:52.3080000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|716003|16190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3934021|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|000112BA|0|1| +37|2023-10-06T22:03:52.3520000-07:00|40021585|Zeromus|000112B5|3931737|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600027E|0|C1A00000|| +37|2023-10-06T22:03:52.3970000-07:00|40021585|Zeromus|000112AF|3918824|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600027E|0|C1A00000|| +37|2023-10-06T22:03:52.4420000-07:00|40021585|Zeromus|000112B4|3918824|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600027E|0|C1A00000|| +37|2023-10-06T22:03:52.5310000-07:00|40021585|Zeromus|000112B3|3902971|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600027E|0|C1A00000|| +21|2023-10-06T22:03:52.5760000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3902971|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|9400|10000|||105.79|88.94|0.00|-2.43|000112BB|0|1| +37|2023-10-06T22:03:52.6200000-07:00|40021585|Zeromus|000112B7|3897782|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0600027E|0|41A00000|| +38|2023-10-06T22:03:52.6200000-07:00|40021585|Zeromus|005A5A00|3897782|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:03:52.6650000-07:00|40021585|Zeromus|000112B2|3858494|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|035D|06|3FA91657|| +26|2023-10-06T22:03:52.6650000-07:00|35D|Wildfire|1.32|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|90216| +261|2023-10-06T22:03:52.2580000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:03:52.2580000-07:00|Change|400219E4||| +39|2023-10-06T22:03:52.7090000-07:00|400219E4|Bunshin|76288|79156|10000|10000|||87.23|83.17|0.00|1.81| +261|2023-10-06T22:03:52.2580000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:03:52.7550000-07:00|40021595|Zeromus|8B77|Umbral Prism|10FF0006|Wowobora Gogobora|E80E|B7D0000|750003|E26E4004|1B|8B778000|0|0|0|0|0|0|0|0|0|0|81809|81809|9400|10000|||105.74|88.91|-0.02|-2.30|44|44|0|10000|||100.00|100.00|0.00|0.00|000112BC|0|1| +22|2023-10-06T22:03:52.7550000-07:00|40021596|Zeromus|8B77|Umbral Prism|10FF0003|Gegehi Gehi|750003|AFFF0000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|73814|73814|4750|10000|||115.49|89.57|0.00|-2.05|44|44|0|10000|||100.00|100.00|0.00|0.00|000112BD|0|2| +22|2023-10-06T22:03:52.7550000-07:00|40021596|Zeromus|8B77|Umbral Prism|10FF0004|Buhojaqe Zijaqe|750003|A8AF0000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|81541|81541|200|10000|||115.64|91.78|0.00|2.90|44|44|0|10000|||100.00|100.00|0.00|0.00|000112BD|1|2| +22|2023-10-06T22:03:52.7550000-07:00|40021597|Zeromus|8B77|Umbral Prism|10FF000A|Dukaro Nezikaro|750003|BAE70000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|44|44|0|10000|||100.00|100.00|0.00|0.00|000112BE|0|2| +22|2023-10-06T22:03:52.7550000-07:00|40021597|Zeromus|8B77|Umbral Prism|10FF0007|Kehabiqo Febiqo|750003|69C30000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||88.06|84.52|0.00|1.93|44|44|0|10000|||100.00|100.00|0.00|0.00|000112BE|1|2| +22|2023-10-06T22:03:52.7550000-07:00|40021598|Zeromus|8B77|Umbral Prism|10FF0008|Kokosaze Lulusaze|750003|8C550000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||94.13|87.17|0.00|2.67|44|44|0|10000|||100.00|100.00|0.00|0.00|000112BF|0|2| +22|2023-10-06T22:03:52.7550000-07:00|40021598|Zeromus|8B77|Umbral Prism|10FF0001|Sesuga Sapisuga|750003|6A380000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|129071|129071|6300|10000|||94.97|86.78|0.00|3.05|44|44|0|10000|||100.00|100.00|0.00|0.00|000112BF|1|2| +38|2023-10-06T22:03:52.7550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||88.06|84.52|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:52.7550000-07:00|B7D|Magic Vulnerability Up|2.00|40021597|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T22:03:52.7550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||94.13|87.17|0.00|2.67|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:52.7550000-07:00|B7D|Magic Vulnerability Up|2.00|40021598|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T22:03:52.7550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|19||105.74|88.91|-0.02|-2.30|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:52.3530000-07:00|Change|40021598||||||||||||| +26|2023-10-06T22:03:52.7550000-07:00|B7D|Magic Vulnerability Up|2.00|40021595|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +38|2023-10-06T22:03:52.7550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6300|10000|0||94.97|86.78|0.00|3.05|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:52.7550000-07:00|B7D|Magic Vulnerability Up|2.00|40021598|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +261|2023-10-06T22:03:52.3530000-07:00|Change|40021597||||||||||||| +38|2023-10-06T22:03:52.7550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|200|10000|0||115.64|91.78|0.00|2.90|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:52.3530000-07:00|Change|40021595||||||||||||| +26|2023-10-06T22:03:52.7550000-07:00|B7D|Magic Vulnerability Up|2.00|40021596|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +261|2023-10-06T22:03:52.3530000-07:00|Change|40021596||||||||||||| +38|2023-10-06T22:03:52.7550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|0||115.49|89.57|0.00|-2.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:52.7550000-07:00|B7D|Magic Vulnerability Up|2.00|40021596|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T22:03:52.7550000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:52.7550000-07:00|B7D|Magic Vulnerability Up|2.00|40021597|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +39|2023-10-06T22:03:52.7990000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|6500|10000|||94.97|86.78|0.00|3.05| +21|2023-10-06T22:03:52.7990000-07:00|10FF000A|Dukaro Nezikaro|8D8|Kassatsu|10FF000A|Dukaro Nezikaro|1E0E|1F10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|000112C0|0|1| +38|2023-10-06T22:03:52.7990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:52.7990000-07:00|1F1|Kassatsu|15.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +261|2023-10-06T22:03:52.3530000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:52.8430000-07:00|40021585|Zeromus|000112B9|3858320||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:52.8430000-07:00|40021585|Zeromus|000112BA|3852663||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:52.8430000-07:00|10FF000A|Dukaro Nezikaro|000112BA|83502|83502|10000|10000|0||87.21|83.15|0.00|1.81|1E00|0|0|01|060001F1|0|C1700000|| +21|2023-10-06T22:03:52.8430000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|16B20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3858494|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.09|86.22|0.00|2.82|000112C1|0|1| +21|2023-10-06T22:03:52.9770000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|27F30000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|3852663|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||88.06|84.52|0.00|1.93|000112C2|0|1| +37|2023-10-06T22:03:53.0220000-07:00|40021585|Zeromus|000112B8|3845833||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:53.0680000-07:00|10FF0006|Wowobora Gogobora|HoT|798|15DA|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|10FF0004|Buhojaqe Zijaqe|0|81541|81541|200|10000|||116.23|90.13|0.00|1.87| +24|2023-10-06T22:03:53.0680000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D7E|129071|129071|6500|10000|||94.95|86.38|0.00|-2.99|10FF0004|Buhojaqe Zijaqe|0|81541|81541|200|10000|||116.23|90.13|0.00|1.87| +24|2023-10-06T22:03:53.0680000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D5F|90216|90216|10000|10000|||94.05|85.24|0.00|2.18|10FF0004|Buhojaqe Zijaqe|0|81541|81541|200|10000|||116.23|90.13|0.00|1.87| +21|2023-10-06T22:03:53.0680000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3845833|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||94.05|85.24|0.00|2.18|000112C3|0|1| +38|2023-10-06T22:03:53.0680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||94.05|85.24|0.00|2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.0680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:53.0680000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|19||105.21|88.55|0.00|-1.85|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.0680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:03:53.0680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|0||94.95|86.38|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.0680000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T22:03:52.6710000-07:00|Change|400219E6||||||||| +37|2023-10-06T22:03:53.1130000-07:00|40021585|Zeromus|000112BB|3845625||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0006|Wowobora Gogobora|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|000112C4|0|8| +22|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0001|Sesuga Sapisuga|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|6500|10000|||94.95|86.38|0.00|-2.99|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|000112C4|1|8| +22|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0003|Gegehi Gehi|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4750|10000|||115.73|88.60|0.00|-2.07|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|000112C4|2|8| +22|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0004|Buhojaqe Zijaqe|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|200|10000|||116.23|90.13|0.00|1.87|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|000112C4|3|8| +22|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0008|Kokosaze Lulusaze|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||94.05|85.24|0.00|2.18|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|000112C4|4|8| +22|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF0007|Kehabiqo Febiqo|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||88.06|84.52|0.00|1.93|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|000112C4|5|8| +22|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000A|Dukaro Nezikaro|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||87.21|83.15|0.00|1.81|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|000112C4|6|8| +22|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|64C9|Searing Light|10FF000B|Pusu Rosu|30E|A8F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7953|10000|||105.10|117.85|0.00|-0.81|81809|81809|9400|10000|||105.21|88.55|0.00|-1.85|000112C4|7|8| +38|2023-10-06T22:03:53.1130000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||88.06|84.52|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.1130000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T22:03:53.1130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|17||94.05|85.24|0.00|2.18|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.1130000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T22:03:53.1130000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|9400|10000|19||105.21|88.55|0.00|-1.85|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.1130000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:03:53.1130000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6500|10000|0||94.95|86.38|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.1130000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T22:03:53.1130000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|200|10000|0||116.23|90.13|0.00|1.87|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.1130000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T22:03:53.1130000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|0||115.73|88.60|0.00|-2.07|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.1130000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T22:03:53.1130000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7953|10000|0||105.10|117.85|0.00|-0.81|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.1130000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +38|2023-10-06T22:03:53.1130000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.1130000-07:00|A8F|Searing Light|30.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +261|2023-10-06T22:03:52.6710000-07:00|Change|40021A22||||| +261|2023-10-06T22:03:52.6710000-07:00|Change|40021A22||| +39|2023-10-06T22:03:53.2020000-07:00|10FF0006|Wowobora Gogobora|81809|81809|9600|10000|||105.12|88.49|-0.01|-1.78| +20|2023-10-06T22:03:53.2020000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.181|105.02|117.88|0.00|-0.59| +261|2023-10-06T22:03:52.7860000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:03:52.7860000-07:00|Change|10FF000B||||||||||||||||||||| +39|2023-10-06T22:03:53.3360000-07:00|10FF000B|Pusu Rosu|79209|79209|8234|10000|||104.95|117.91|0.00|-0.83| +39|2023-10-06T22:03:53.3360000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||87.21|83.15|0.00|1.81| +21|2023-10-06T22:03:53.3360000-07:00|10FF0004|Buhojaqe Zijaqe|1D0C|Chain Stratagem|40021585|Zeromus|F60E|4C50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3845625|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|200|10000|||116.32|89.96|-0.02|1.04|000112C5|0|1| +261|2023-10-06T22:03:52.9040000-07:00|Change|10FF0006||||| +37|2023-10-06T22:03:53.3800000-07:00|10FF0006|Wowobora Gogobora|000112BC|0|81809|0|10000|0||105.12|88.49|0.00|-1.77|1B00|0|0|04|0|0|0|||||||||||||| +37|2023-10-06T22:03:53.3800000-07:00|10FF0003|Gegehi Gehi|000112BD|28759|73814|4750|10000|0||115.80|88.24|0.00|-2.08|2300|0|0|01|04000B7D|0|3FB5A1CC|| +37|2023-10-06T22:03:53.3800000-07:00|10FF000A|Dukaro Nezikaro|000112BE|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|1E00|0|0|02|03000B7D|0|3FB5A1CC|||||| +37|2023-10-06T22:03:53.3800000-07:00|10FF0008|Kokosaze Lulusaze|000112BF|54291|90216|10000|10000|0||94.01|84.75|0.00|1.03|1F00|0|0|02|02000B7D|0|3FB5A1CC|||||| +38|2023-10-06T22:03:53.3800000-07:00|40021A22|Demi-Bahamut|005A5A00|0|69928|0|10000|0||108.27|89.48|0.00|-2.56|0|0|0||||||| +26|2023-10-06T22:03:53.3800000-07:00|30|Well Fed|449.25|10FF0006|Wowobora Gogobora|40021A22|Demi-Bahamut|2964|69928|81809| +38|2023-10-06T22:03:53.3800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54291|90216|10000|10000|0||94.01|84.75|0.00|1.03|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:53.3800000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T22:03:53.3800000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|0|81809|0|10000|0||105.12|88.49|0.00|-1.77|0|0|0|||||||||| +30|2023-10-06T22:03:53.3800000-07:00|A8E|Radiant Aegis|0.00|400219E6|Carbuncle|10FF0006|Wowobora Gogobora|00|81809|77698| +30|2023-10-06T22:03:53.3800000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0006|Wowobora Gogobora|00|81809|73814| +30|2023-10-06T22:03:53.3800000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +30|2023-10-06T22:03:53.3800000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +30|2023-10-06T22:03:53.3800000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +30|2023-10-06T22:03:53.3800000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +30|2023-10-06T22:03:53.3800000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|1E|81809|81541| +30|2023-10-06T22:03:53.3800000-07:00|32|Sprint|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|1E|81809|81809| +30|2023-10-06T22:03:53.3800000-07:00|B7D|Magic Vulnerability Up|0.00|40021595|Zeromus|10FF0006|Wowobora Gogobora|00|81809|44| +30|2023-10-06T22:03:53.3800000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:03:53.4240000-07:00|10FF0004|Buhojaqe Zijaqe|000112BD|38358|81541|200|10000|0||116.35|89.90|-0.02|-2.10|1C01|0|0|01|06000B7D|0|3FB00001|| +37|2023-10-06T22:03:53.4240000-07:00|10FF0007|Kehabiqo Febiqo|000112BE|102769|129844|10000|10000|0||88.06|84.52|0.00|1.93|1501|0|0|01|04000B7D|0|3FB00001|| +37|2023-10-06T22:03:53.4240000-07:00|10FF0001|Sesuga Sapisuga|000112BF|101879|129071|6500|10000|0||94.71|84.79|0.00|-2.99|1301|0|0|01|03000B7D|0|3FB00001|| +38|2023-10-06T22:03:53.4240000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:53.4680000-07:00|40021585|Zeromus|000112C1|3839815||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:53.4680000-07:00|10FF0007|Kehabiqo Febiqo|104067|129844|10000|10000|||88.06|84.52|0.00|1.93| +38|2023-10-06T22:03:53.4680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38358|81541|200|10000|0||116.35|89.90|-0.02|-2.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:03:53.4680000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54291|90216|10000|10000|0||94.01|84.75|0.00|1.03|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:03:53.4680000-07:00|10FF0003|Gegehi Gehi|005A5A23|28759|73814|4750|10000|0||115.80|88.24|0.00|-2.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:03:53.4680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:03:53.4680000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8234|10000|0||104.91|117.92|0.00|-1.46|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:03:53.4680000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104067|129844|10000|10000|0||88.06|84.52|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:03:53.4680000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101879|129071|6500|10000|0||94.71|84.79|0.00|-2.99|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.4680000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:03:53.5120000-07:00|40021585|Zeromus|000112C2|3829588||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:53.5570000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|200000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35655|83502|10000|10000|||87.21|83.15|0.00|1.81|35655|83502|10000|10000|||87.21|83.15|0.00|1.81|000112C6|0|1| +38|2023-10-06T22:03:53.5570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:53.5570000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|02|83502|83502| +257|2023-10-06T22:03:53.6010000-07:00|80034E7C|00200004|03|00|0000| +21|2023-10-06T22:03:53.6460000-07:00|40021599|Zeromus|8B82|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|100.00|0.00|1.57|000112C7|0|0| +261|2023-10-06T22:03:53.2340000-07:00|Change|40021599||||||||||||| +37|2023-10-06T22:03:53.6910000-07:00|10FF000A|Dukaro Nezikaro|000112C6|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|1E00|0|0|01|060001F1|0|C1700000|| +38|2023-10-06T22:03:53.6910000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|38358|81541|200|10000|0||116.41|89.76|0.00|-2.37|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:53.6910000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:03:53.7790000-07:00|10FF000A|Dukaro Nezikaro|000112C0|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|1E00|0|0|01|060001F1|0|41700000|| +21|2023-10-06T22:03:53.7800000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|D560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3829588|40478540|10000|10000|||100.00|80.10|0.00|0.00|104067|129844|10000|10000|||88.06|84.52|0.00|1.93|000112C8|0|1| +38|2023-10-06T22:03:53.7800000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:53.4230000-07:00|Remove|400219E5| +37|2023-10-06T22:03:53.8240000-07:00|40021585|Zeromus|000112C3|3827110||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:53.8690000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|36200000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3829588|40478540|10000|10000|||100.00|80.10|0.00|0.00|28759|73814|4750|10000|||115.80|88.24|0.00|-2.08|000112C9|0|1| +21|2023-10-06T22:03:53.8690000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|382A0000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|3829588|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8234|10000|||104.81|117.97|0.00|-3.01|000112CA|0|1| +24|2023-10-06T22:03:53.9580000-07:00|40021585|Zeromus|DoT|35D|F268|3827110|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0008|Kokosaze Lulusaze|FFFFFFFF|54291|90216|10000|10000|||94.01|84.73|0.00|-0.02| +38|2023-10-06T22:03:53.9580000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54291|90216|10000|10000|0||94.01|84.73|0.00|-0.02|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:53.9580000-07:00|79A|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T22:03:53.9580000-07:00|40021585|Zeromus|005A5A00|3765054|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:53.9580000-07:00|35D|Wildfire|0.00|10FF0008|Kokosaze Lulusaze|40021585|Zeromus|06|40478540|90216| +21|2023-10-06T22:03:54.0040000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|14F10000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|28759|73814|4750|10000|||115.80|88.24|0.00|-2.05|73956|77430|10000|10000|||103.41|100.48|0.00|-3.11|000112CB|0|1| +21|2023-10-06T22:03:54.0480000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44722003|66330000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|3765054|40478540|10000|10000|||100.00|80.10|0.00|0.00|54291|90216|10000|10000|||94.01|84.73|0.00|-0.02|000112CC|0|1| +21|2023-10-06T22:03:54.0930000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|9820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3765054|40478540|10000|10000|||100.00|80.10|0.00|0.00|101879|129071|6500|10000|||94.67|84.50|0.00|-2.99|000112CD|0|1| +21|2023-10-06T22:03:54.0930000-07:00|10FF000A|Dukaro Nezikaro|4977|Jin|10FF000A|Dukaro Nezikaro|E00000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|35655|83502|10000|10000|||87.21|83.15|0.00|1.81|35655|83502|10000|10000|||87.21|83.15|0.00|1.81|000112CE|0|1| +38|2023-10-06T22:03:54.0930000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:54.0930000-07:00|1F0|Mudra|5.46|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +31|2023-10-06T22:03:54.0930000-07:00|10FF0001||||| +37|2023-10-06T22:03:54.1370000-07:00|40021585|Zeromus|000112C5|3765054|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|04C5|0|41700000|| +26|2023-10-06T22:03:54.1370000-07:00|4C5|Chain Stratagem|15.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +39|2023-10-06T22:03:54.1370000-07:00|10FF0004|Buhojaqe Zijaqe|39173|81541|400|10000|||116.46|89.50|0.00|3.06| +261|2023-10-06T22:03:53.6130000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:03:53.7320000-07:00|Change|40021A22||||| +261|2023-10-06T22:03:53.7320000-07:00|Change|400219E6||| +261|2023-10-06T22:03:53.8470000-07:00|Change|10FF000B||||||||||||||||||||||| +39|2023-10-06T22:03:54.2270000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|2.99| +37|2023-10-06T22:03:54.3160000-07:00|40021585|Zeromus|000112C8|3761640||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:54.4500000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|2AAC0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|3761640|40478540|10000|10000|||100.00|80.10|0.00|0.00|101879|129071|6500|10000|||94.67|84.50|0.00|2.26|000112CF|0|1| +39|2023-10-06T22:03:54.4940000-07:00|10FF0003|Gegehi Gehi|29497|73814|4950|10000|||115.80|88.24|0.00|-2.05| +21|2023-10-06T22:03:54.4940000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|A7A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3761640|40478540|10000|10000|||100.00|80.10|0.00|0.00|35655|83502|10000|10000|||87.21|83.15|0.00|1.81|000112D0|0|1| +261|2023-10-06T22:03:54.0760000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:03:54.5830000-07:00|10FF000A|Dukaro Nezikaro|406C|Hyosho Ranryu|40021585|Zeromus|250003|E33E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3761640|40478540|10000|10000|||100.00|80.10|0.00|0.00|35655|83502|10000|10000|||87.21|83.15|0.00|1.81|000112D1|0|1| +38|2023-10-06T22:03:54.5830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:54.5830000-07:00|1F1|Kassatsu|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +30|2023-10-06T22:03:54.5830000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|0E|83502|83502| +37|2023-10-06T22:03:54.6270000-07:00|40021585|Zeromus|000112CD|3759206||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:54.6720000-07:00|40021585|Zeromus|DoT|0|1BAD|3759206|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|35655|83502|10000|10000|||87.21|83.15|0.00|1.81| +38|2023-10-06T22:03:54.6720000-07:00|40021585|Zeromus|005A5A00|3752121|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:03:54.7620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104067|129844|10000|10000|0||88.14|84.78|0.00|1.95|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:54.7620000-07:00|B7D|Magic Vulnerability Up|0.00|40021597|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T22:03:54.7620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|54291|90216|10000|10000|0||94.01|84.73|0.00|2.23|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:54.7620000-07:00|B7D|Magic Vulnerability Up|0.00|40021598|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +38|2023-10-06T22:03:54.7620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101879|129071|6500|10000|0||94.67|84.50|0.00|2.26|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:54.7620000-07:00|B7D|Magic Vulnerability Up|0.00|40021598|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T22:03:54.7620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39173|81541|400|10000|0||116.41|89.27|0.00|3.09|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:54.7620000-07:00|B7D|Magic Vulnerability Up|0.00|40021596|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T22:03:54.7620000-07:00|10FF0003|Gegehi Gehi|005A5A23|29497|73814|4950|10000|0||115.80|88.24|0.00|-2.05|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:54.7620000-07:00|B7D|Magic Vulnerability Up|0.00|40021596|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T22:03:54.7620000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35655|83502|10000|10000|0||87.21|83.15|0.00|1.81|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:54.7620000-07:00|B7D|Magic Vulnerability Up|0.00|40021597|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +37|2023-10-06T22:03:54.8060000-07:00|10FF0003|Gegehi Gehi|000112CB|34858||||||115.80|88.24|0.00|-2.05| +21|2023-10-06T22:03:54.8060000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3752121|40478540|10000|10000|||100.00|80.10|0.00|0.00|29497|73814|4950|10000|||115.80|88.24|0.00|-2.05|000112D2|0|1| +37|2023-10-06T22:03:54.8510000-07:00|40021585|Zeromus|000112CC|3725958||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:55.0290000-07:00|40021585|Zeromus|000112C9|3712102||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:55.0290000-07:00|40021585|Zeromus|000112D0|3709420||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:55.1180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104067|129844|10000|10000|0||88.53|85.95|0.00|1.91|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.1180000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T22:03:55.1620000-07:00|40021585|Zeromus|000112CA|3695042||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:55.1620000-07:00|10FF0008|Kokosaze Lulusaze|55193|90216|10000|10000|||94.01|84.73|0.00|2.23| +38|2023-10-06T22:03:55.1620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39173|81541|400|10000|0||116.41|89.25|0.00|3.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.1620000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +37|2023-10-06T22:03:55.2070000-07:00|40021585|Zeromus|000112CF|3684118||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:55.2070000-07:00|10FF0001|Sesuga Sapisuga|000112CF|101879|129071|7500|10000|0||94.67|84.50|0.00|2.26|1300|0|0|0| +37|2023-10-06T22:03:55.2070000-07:00|40021585|Zeromus|000112D1|3625944||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:55.2070000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104067|129844|10000|10000|0||88.57|86.05|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.2070000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:03:54.7640000-07:00|Change|10FF0001||||||||| +38|2023-10-06T22:03:55.2960000-07:00|10FF0003|Gegehi Gehi|005A5A23|34858|73814|4950|10000|0||115.80|88.24|0.00|-2.05|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.2960000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|1E|73814|81541| +261|2023-10-06T22:03:54.8830000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:03:55.3410000-07:00|40021585|Zeromus|000112D2|3625943||||||100.00|80.10|0.00|0.00| +25|2023-10-06T22:03:55.3860000-07:00|10FF0006|Wowobora Gogobora|40021595|Zeromus| +21|2023-10-06T22:03:55.4310000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|B10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3625943|40478540|10000|10000|||100.00|80.10|0.00|0.00|39173|81541|400|10000|||116.41|89.25|0.00|3.10|000112D3|0|1| +38|2023-10-06T22:03:55.4310000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7834|10000|0||104.26|112.21|0.00|-3.02|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.4310000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|1E|79209|81541| +21|2023-10-06T22:03:55.4760000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|24EF0000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|3625943|40478540|10000|10000|||100.00|80.10|0.00|0.00|104067|129844|10000|10000|||89.00|86.68|0.00|2.00|000112D4|0|1| +21|2023-10-06T22:03:55.5200000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|754003|311C0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|3625943|40478540|10000|10000|||100.00|80.10|0.00|0.00|34858|73814|4950|10000|||115.80|88.24|0.00|-2.05|000112D5|0|1| +38|2023-10-06T22:03:55.5200000-07:00|10FF0003|Gegehi Gehi|005A5A23|34858|73814|4950|10000|0||115.80|88.24|0.00|-2.05|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:55.5200000-07:00|7B3|Manafication|2.80|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|02|73814|73814| +38|2023-10-06T22:03:55.5650000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|101879|129071|7500|10000|0||94.67|84.50|0.00|2.26|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.5650000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|1E|129071|81541| +38|2023-10-06T22:03:55.6100000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.41|100.48|0.00|2.73|0|0|0||||||||||||| +26|2023-10-06T22:03:55.6100000-07:00|A8F|Searing Light|27.50|10FF0006|Wowobora Gogobora|400219AD|Ruby Carbuncle|00|77430|81809| +26|2023-10-06T22:03:55.6100000-07:00|77B|Summon Order|30.00|400219AD|Ruby Carbuncle|400219AD|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:03:55.6100000-07:00|10FF0004|Buhojaqe Zijaqe|4099|Whispering Dawn|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|39173|81541|400|10000|||116.41|89.25|0.00|-2.75|39173|81541|400|10000|||116.41|89.25|0.00|-2.75|000112D6|0|1| +21|2023-10-06T22:03:55.6990000-07:00|400219AD|Ruby Carbuncle|323|Whispering Dawn|10FF000B|Pusu Rosu|F9E0E|13B0000|1B|3238000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7834|10000|||103.69|110.67|0.00|-3.04|73956|77430|10000|10000|||103.41|100.48|0.00|2.95|000112D7|0|1| +39|2023-10-06T22:03:55.6990000-07:00|400219E4|Bunshin|76288|79156|10000|10000|||87.23|83.17|0.00|1.81| +38|2023-10-06T22:03:55.6990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|35655|83502|10000|10000|0||89.02|87.26|0.00|1.73|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.6990000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|1E|83502|81541| +21|2023-10-06T22:03:55.7430000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|FDF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3625943|40478540|10000|10000|||100.00|80.10|0.00|0.00|55193|90216|10000|10000|||94.01|84.73|0.00|2.23|000112D8|0|1| +261|2023-10-06T22:03:55.3050000-07:00|Change|10FF0007||||||||| +39|2023-10-06T22:03:55.7880000-07:00|10FF0001|Sesuga Sapisuga|103169|129071|7700|10000|||94.82|84.57|0.00|2.03| +261|2023-10-06T22:03:55.3050000-07:00|Remove|400219E6| +04|2023-10-06T22:03:55.3050000-07:00|400219E6|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||103.47|89.43|0.00|2.47| +38|2023-10-06T22:03:55.8320000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|55193|90216|10000|10000|0||94.01|84.73|0.00|2.23|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.8320000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|1E|90216|81541| +21|2023-10-06T22:03:55.8770000-07:00|10FF000B|Pusu Rosu|1D09|Plenary Indulgence|10FF000B|Pusu Rosu|BD100E|4C30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7834|10000|||103.31|109.40|0.00|-3.04|79209|79209|7834|10000|||103.31|109.40|0.00|-3.04|000112D9|0|1| +37|2023-10-06T22:03:55.9670000-07:00|40021585|Zeromus|000112D3|3625766||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:55.9670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|104067|129844|10000|10000|0||92.53|90.01|0.00|2.46|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:55.9670000-07:00|A98|Expedience|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|1E|129844|81541| +261|2023-10-06T22:03:55.6220000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:03:55.7320000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:03:56.1000000-07:00|40021585|Zeromus|000112D4|3616311||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:56.1450000-07:00|40021585|Zeromus|000112D5|3603739||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:55.7320000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:55.9620000-07:00|Change|10FF0007||||||||| +39|2023-10-06T22:03:56.3680000-07:00|10FF000B|Pusu Rosu|79209|79209|8115|10000|||102.99|108.12|0.00|-3.05| +39|2023-10-06T22:03:56.3680000-07:00|10FF000A|Dukaro Nezikaro|36490|83502|10000|10000|||90.85|92.20|0.00|1.11| +21|2023-10-06T22:03:56.3680000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|F0D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3603739|40478540|10000|10000|||100.00|80.10|0.00|0.00|103169|129071|7700|10000|||96.28|87.88|0.00|1.45|000112DA|0|1| +31|2023-10-06T22:03:56.3680000-07:00|10FF0001||||| +39|2023-10-06T22:03:56.4570000-07:00|10FF0007|Kehabiqo Febiqo|105365|129844|10000|10000|||95.99|91.46|0.00|2.39| +38|2023-10-06T22:03:56.4570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39173|81541|400|10000|0||114.79|90.17|0.00|-1.94|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:03:56.4570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|55193|90216|10000|10000|0||94.04|84.76|0.00|1.93|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:03:56.4570000-07:00|10FF0003|Gegehi Gehi|005A5A23|34858|73814|4950|10000|0||115.13|88.59|0.00|-1.93|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:03:56.4570000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|36490|83502|10000|10000|0||91.00|92.69|0.00|1.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:03:56.4570000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8115|10000|0||102.94|107.59|0.00|-3.05|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:03:56.4570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105365|129844|10000|10000|0||95.99|91.46|0.00|2.39|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:03:56.4570000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103169|129071|7700|10000|0||96.44|88.42|0.00|1.30|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.4570000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:03:56.5010000-07:00|40021585|Zeromus|000112D8|3599676||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:56.5450000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|22860000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|3599676|40478540|10000|10000|||100.00|80.10|0.00|0.00|55193|90216|10000|10000|||94.07|84.79|0.00|1.57|000112DB|0|1| +37|2023-10-06T22:03:56.5900000-07:00|10FF000B|Pusu Rosu|000112D7|79209|79209|8115|10000|0||102.88|106.94|0.00|-3.05|1800|0|0|01|0600013B|0|41A80000|| +26|2023-10-06T22:03:56.5900000-07:00|13B|Whispering Dawn|21.00|400219AD|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +38|2023-10-06T22:03:56.5910000-07:00|40021585|Zeromus|005A5A00|3599676|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:56.5910000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +38|2023-10-06T22:03:56.5910000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.41|100.48|0.00|-2.98|0|0|0|||||||||| +30|2023-10-06T22:03:56.5910000-07:00|77B|Summon Order|0.00|400219AD|Ruby Carbuncle|400219AD|Ruby Carbuncle|01|77430|77430| +37|2023-10-06T22:03:56.6790000-07:00|10FF000B|Pusu Rosu|000112D9|79209|79209|8115|10000|0||102.81|106.27|0.00|-3.05|1800|0|0|01|090004C3|0|41200000|| +26|2023-10-06T22:03:56.6790000-07:00|4C3|Confession|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:03:56.6790000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36490|83502|10000|10000|||91.56|93.01|0.00|1.10|36490|83502|10000|10000|||91.56|93.01|0.00|1.10|000112DC|0|1| +21|2023-10-06T22:03:56.6790000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|D2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3599676|40478540|10000|10000|||100.00|80.10|0.00|0.00|36490|83502|10000|10000|||91.56|93.01|0.00|1.10|000112DD|0|1| +38|2023-10-06T22:03:56.6790000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|36490|83502|10000|10000|0||91.56|93.01|0.00|1.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.6790000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:03:56.3870000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:03:56.7230000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|29770000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|3599676|40478540|10000|10000|||100.00|80.10|0.00|0.00|39173|81541|400|10000|||113.78|90.57|0.00|-1.49|000112DE|0|1| +38|2023-10-06T22:03:56.8120000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103169|129071|7700|10000|0||96.76|90.17|0.00|1.23|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:56.8120000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:03:56.9010000-07:00|40021585|Zeromus|000112DA|3595823||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:56.9460000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|2DA20000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|3595823|40478540|10000|10000|||100.00|80.10|0.00|0.00|103169|129071|7700|10000|||97.06|90.71|0.00|1.44|000112DF|0|1| +38|2023-10-06T22:03:56.9460000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103169|129071|7700|10000|0||97.06|90.71|0.00|1.44|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:56.9460000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:03:56.9460000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:03:56.5800000-07:00|Remove|40021A22| +04|2023-10-06T22:03:56.5800000-07:00|40021A22|Demi-Bahamut|00|5A|10FF0006|00||6566|6982|0|69928|0|10000|||108.27|89.48|0.00|-2.56| +21|2023-10-06T22:03:57.0350000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37752003|47B90000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|3595823|40478540|10000|10000|||100.00|80.10|0.00|0.00|34858|73814|4950|10000|||112.17|90.60|0.00|-1.76|000112E0|0|1| +38|2023-10-06T22:03:57.0350000-07:00|10FF0003|Gegehi Gehi|005A5A23|34858|73814|4950|10000|0||112.17|90.60|0.00|-1.76|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:57.0350000-07:00|7B3|Manafication|1.28|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +39|2023-10-06T22:03:57.1250000-07:00|10FF0004|Buhojaqe Zijaqe|39988|81541|200|10000|||111.53|91.70|0.00|-1.63| +22|2023-10-06T22:03:57.1250000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000B|Pusu Rosu|4|3AEC0000|13E|EE8000|1B|40968000|0|0|0|0|0|0|0|0|0|0|79209|79209|8115|10000|||102.63|104.36|0.00|-3.05|79209|79209|8115|10000|||102.63|104.36|0.00|-3.05|000112E1|0|7| +22|2023-10-06T22:03:57.1250000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0007|Kehabiqo Febiqo|200004|5DFD0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|105365|129844|10000|10000|||97.10|92.55|0.00|-3.08|79209|79209|8115|10000|||102.63|104.36|0.00|-3.05|000112E1|1|7| +22|2023-10-06T22:03:57.1250000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0004|Buhojaqe Zijaqe|4|3CC20000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|39173|81541|0|10000|||111.53|91.70|0.00|-1.63|79209|79209|8115|10000|||102.63|104.36|0.00|-3.05|000112E1|2|7| +22|2023-10-06T22:03:57.1250000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0001|Sesuga Sapisuga|4|3BDA0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|103169|129071|7700|10000|||97.52|91.23|0.00|1.78|79209|79209|8115|10000|||102.63|104.36|0.00|-3.05|000112E1|3|7| +22|2023-10-06T22:03:57.1250000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF000A|Dukaro Nezikaro|4|3BB20000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|36490|83502|10000|10000|||92.48|93.16|-0.02|1.10|79209|79209|8115|10000|||102.63|104.36|0.00|-3.05|000112E1|4|7| +22|2023-10-06T22:03:57.1250000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0003|Gegehi Gehi|200004|5DBB0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|34858|73814|4950|10000|||112.17|90.60|0.00|-1.76|79209|79209|8115|10000|||102.63|104.36|0.00|-3.05|000112E1|5|7| +22|2023-10-06T22:03:57.1250000-07:00|10FF000B|Pusu Rosu|4096|Afflatus Rapture|10FF0008|Kokosaze Lulusaze|4|3B2E0000|1B|40968000|0|0|0|0|0|0|0|0|0|0|0|0|55193|90216|10000|10000|||95.55|86.25|0.00|1.33|79209|79209|8115|10000|||102.63|104.36|0.00|-3.05|000112E1|6|7| +261|2023-10-06T22:03:56.6940000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:03:56.6940000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:03:57.1700000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|10380000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3595823|40478540|10000|10000|||100.00|80.10|0.00|0.00|105365|129844|10000|10000|||97.55|93.02|0.00|2.56|000112E2|0|1| +21|2023-10-06T22:03:57.1700000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|36490|83502|10000|10000|||92.48|93.16|-0.02|1.10|36490|83502|10000|10000|||92.48|93.16|-0.02|1.10|000112E3|0|1| +38|2023-10-06T22:03:57.1700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|36490|83502|10000|10000|0||92.48|93.16|-0.02|1.10|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:57.1700000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +261|2023-10-06T22:03:56.6940000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:03:57.2140000-07:00|40021585|Zeromus|000112DD|3592450||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:57.2140000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98| +38|2023-10-06T22:03:57.2140000-07:00|40021585|Zeromus|005A5A00|3592450|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:03:57.2140000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +261|2023-10-06T22:03:56.8120000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:03:57.3040000-07:00|40021585|Zeromus|000112DB|3583612||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:03:57.3040000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8115|10000|0||102.47|102.73|0.00|-3.05|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:57.3040000-07:00|9D|Presence of Mind|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:03:57.4380000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|4|150A0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|39988|81541|200|10000|||109.65|92.77|0.00|-1.18|73956|77430|10000|10000|||103.41|100.48|0.00|-3.02|000112E4|0|1| +39|2023-10-06T22:03:57.4830000-07:00|10FF0003|Gegehi Gehi|35596|73814|5150|10000|||110.27|91.25|0.00|-1.89| +37|2023-10-06T22:03:57.5280000-07:00|40021585|Zeromus|000112DF|3571930||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:57.5280000-07:00|10FF0001|Sesuga Sapisuga|000112DF|103169|129071|7700|10000|0||98.92|92.64|0.00|2.81|1300|0|0|02|0200076E|03|41F00000|||||| +38|2023-10-06T22:03:57.5290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|103169|129071|7700|10000|0||98.92|92.64|0.00|2.81|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:03:57.2540000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:03:57.6640000-07:00|40021585|Zeromus|000112DE|3561315||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:57.6640000-07:00|40021585|Zeromus|000112E0|3542954||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:57.6640000-07:00|40021585|Zeromus|DoT|0|12B7|3571930|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|36490|83502|10000|10000|||92.50|93.17|0.00|1.10| +38|2023-10-06T22:03:57.6640000-07:00|40021585|Zeromus|005A5A00|3538163|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:03:57.7080000-07:00|40021585|Zeromus|000112E2|3534011||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:03:57.7080000-07:00|10FF000B|Pusu Rosu|HoT|4C3|199A|79209|79209|8115|10000|||101.91|101.32|0.00|-3.03|10FF000B|Pusu Rosu|0|79209|79209|8115|10000|||101.91|101.32|0.00|-3.03| +35|2023-10-06T22:03:57.7080000-07:00|40021584||40021585|Zeromus|0000|0000|0109|||| +261|2023-10-06T22:03:57.3480000-07:00|Change|40021584||||||||| +21|2023-10-06T22:03:57.7080000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|31BF0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|105365|129844|10000|10000|||98.69|95.22|0.00|-0.29|3538163|40478540|10000|10000|||100.00|80.10|0.00|0.00|000112E5|0|1| +21|2023-10-06T22:03:57.7080000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|552003|97240000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|3538163|40478540|10000|10000|||100.00|80.10|0.00|0.00|36490|83502|10000|10000|||92.51|93.18|-0.02|1.10|000112E6|0|1| +38|2023-10-06T22:03:57.7080000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|36490|83502|10000|10000|0||92.51|93.18|-0.02|1.10|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:57.7080000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:03:57.7080000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:03:57.3480000-07:00|Change|4002159F||||||||| +261|2023-10-06T22:03:57.3480000-07:00|Change|4002159E||||||||| +261|2023-10-06T22:03:57.3480000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:03:57.3480000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:03:57.3480000-07:00|Change|4002159B||||||||| +261|2023-10-06T22:03:57.3480000-07:00|Change|4002159A||||||||| +257|2023-10-06T22:03:57.7080000-07:00|80034E7C|00020001|02|00|0000| +261|2023-10-06T22:03:57.3480000-07:00|Change|400215A0||||||||| +00|2023-10-06T22:03:57.0000000-07:00|0044|Zeromus|Oh, to look upon such splendor once more...| +261|2023-10-06T22:03:57.3480000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:03:57.3480000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:03:57.3480000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:03:57.3480000-07:00|Change|40021599||||||||| +20|2023-10-06T22:03:57.7950000-07:00|40021585|Zeromus|8B78|Chasmic Nails|40021585|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:03:57.7950000-07:00|40021599|Zeromus|8B7C|Chasmic Nails|40021599|Zeromus|9.500|100.00|80.10|0.00|-1.40| +20|2023-10-06T22:03:57.7950000-07:00|4002159A|Zeromus|8B2A|unknown_8b2a|4002159A|Zeromus|4.700|100.00|80.10|0.00|-1.40| +20|2023-10-06T22:03:57.7950000-07:00|4002159B|Zeromus|8B79|Chasmic Nails|4002159B|Zeromus|7.400|100.00|80.10|0.00|-0.70| +20|2023-10-06T22:03:57.7950000-07:00|4002159C|Zeromus|8B27|unknown_8b27|4002159C|Zeromus|1.200|100.00|80.10|0.00|-0.70| +20|2023-10-06T22:03:57.7950000-07:00|4002159D|Zeromus|8B7A|Chasmic Nails|4002159D|Zeromus|8.100|100.00|80.10|0.00|1.40| +20|2023-10-06T22:03:57.7950000-07:00|4002159E|Zeromus|8B28|unknown_8b28|4002159E|Zeromus|2.700|100.00|80.10|0.00|1.40| +20|2023-10-06T22:03:57.7950000-07:00|4002159F|Zeromus|8B7D|Chasmic Nails|4002159F|Zeromus|10.200|100.00|80.10|0.00|0.70| +20|2023-10-06T22:03:57.7950000-07:00|400215A0|Zeromus|8B2B|unknown_8b2b|400215A0|Zeromus|5.700|100.00|80.10|0.00|0.70| +20|2023-10-06T22:03:57.7950000-07:00|400215A1|Zeromus|8B7B|Chasmic Nails|400215A1|Zeromus|8.800|100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:57.3480000-07:00|Change|40021585||||||| +20|2023-10-06T22:03:57.7950000-07:00|400215A3|Zeromus|8B82|Dimensional Surge|400215A3|Zeromus|8.700|80.10|87.00|0.00|1.57| +20|2023-10-06T22:03:57.7950000-07:00|400215A2|Zeromus|8B29|unknown_8b29|400215A2|Zeromus|3.700|100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:57.8400000-07:00|10FF0007|Kehabiqo Febiqo|000112E1|129426||||||98.71|95.40|0.00|-0.13| +261|2023-10-06T22:03:57.4450000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:03:57.9290000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|36180000|A3E|340000|11B|2D8000|0|0|0|0|0|0|0|0|0|0|3534011|40478540|10000|10000|||100.00|80.10|0.00|0.00|129426|129844|10000|10000|||98.73|95.55|0.00|0.02|000112E7|0|1| +38|2023-10-06T22:03:57.9290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129426|129844|10000|10000|0||98.73|95.55|0.00|0.02|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:57.9290000-07:00|A75|Surging Tempest|30.64|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:03:57.9290000-07:00|10FF0003|Gegehi Gehi|005A5A23|35596|73814|5150|10000|0||108.74|92.07|0.00|-1.82|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:57.9290000-07:00|2B|Weakness|0.00|E0000000||10FF0003|Gegehi Gehi|00|73814|| +37|2023-10-06T22:03:57.9740000-07:00|10FF0004|Buhojaqe Zijaqe|000112E1|55542||||||106.83|94.65|0.00|-1.02| +37|2023-10-06T22:03:58.1070000-07:00|10FF0001|Sesuga Sapisuga|000112E1|118491||||||99.78|93.30|0.00|-1.87| +38|2023-10-06T22:03:58.1070000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|55193|90216|10000|10000|0||97.37|92.12|0.00|0.24|0|0|0|||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:58.1070000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:03:58.1070000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118491|129071|7700|10000|0||99.78|93.30|0.00|-1.87|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:58.1070000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T22:03:57.6500000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:03:57.7620000-07:00|Change|10FF000B||||||||| +39|2023-10-06T22:03:58.1510000-07:00|10FF0008|Kokosaze Lulusaze|56095|90216|10000|10000|||97.37|92.12|0.00|0.24| +261|2023-10-06T22:03:57.7620000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:03:58.2390000-07:00|10FF0004|Buhojaqe Zijaqe|000112E4|60928||||||105.82|95.35|0.00|-0.92| +37|2023-10-06T22:03:58.2390000-07:00|10FF000A|Dukaro Nezikaro|000112E1|51772|83502|10000|10000|0||93.30|93.57|0.00|2.72|1E04|0|0|01|03000A82|01|C1F00000|| +261|2023-10-06T22:03:57.8730000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T22:03:57.8730000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T22:03:57.8730000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:03:57.8730000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T22:03:57.8730000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T22:03:57.8730000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T22:03:57.8730000-07:00|Change|4002159F||||||||||||| +21|2023-10-06T22:03:58.2840000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3534011|40478540|10000|10000|||100.00|80.10|0.00|0.00|35596|73814|5150|10000|||107.02|92.97|0.00|-1.85|000112E8|0|1| +261|2023-10-06T22:03:57.8730000-07:00|Change|10FF000A||||||||| +38|2023-10-06T22:03:58.3290000-07:00|10FF0003|Gegehi Gehi|005A5A23|35596|73814|5150|10000|0||106.58|93.34|-0.02|-1.96|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:58.3290000-07:00|7B3|Manafication|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|01|73814|73814| +37|2023-10-06T22:03:58.3730000-07:00|10FF0003|Gegehi Gehi|000112E1|59591||||||106.58|93.34|-0.02|-1.96| +37|2023-10-06T22:03:58.4180000-07:00|40021585|Zeromus|000112E6|3495319||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:58.4180000-07:00|10FF000A|Dukaro Nezikaro|000112E6|51772|83502|10000|10000|0||94.60|94.40|0.00|2.39|1E00|0|0|01|03000A82|01|41F00000|| +21|2023-10-06T22:03:58.4180000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|10480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3534011|40478540|10000|10000|||100.00|80.10|0.00|0.00|56095|90216|10000|10000|||97.34|94.12|0.00|0.11|000112E9|0|1| +38|2023-10-06T22:03:58.4180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|51772|83502|10000|10000|0||94.60|94.40|0.00|2.39|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:58.5060000-07:00|10FF0007|Kehabiqo Febiqo|000112E5|116691||||||98.75|95.66|0.00|3.07| +37|2023-10-06T22:03:58.5060000-07:00|10FF0008|Kokosaze Lulusaze|000112E1|71245||||||97.34|94.12|0.00|0.11| +21|2023-10-06T22:03:58.5500000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A754003|71050000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|3495319|40478540|10000|10000|||100.00|80.10|0.00|0.00|59591|73814|5150|10000|||106.33|94.82|0.00|-1.96|000112EA|0|1| +21|2023-10-06T22:03:58.5940000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|A40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3495319|40478540|10000|10000|||100.00|80.10|0.00|0.00|60928|81541|200|10000|||105.33|95.69|0.00|-0.95|000112EB|0|1| +261|2023-10-06T22:03:58.2090000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:03:58.6390000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|C590000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3495319|40478540|10000|10000|||100.00|80.10|0.00|0.00|118491|129071|7700|10000|||99.65|93.04|0.00|-2.73|000112EC|0|1| +31|2023-10-06T22:03:58.6390000-07:00|10FF0001||||| +261|2023-10-06T22:03:58.2990000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T22:03:58.2990000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:03:58.2990000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:03:58.2990000-07:00|Change|40021599||||||||||||| +39|2023-10-06T22:03:58.7270000-07:00|400219E4|Bunshin|76288|79156|10000|10000|||87.23|83.17|0.00|1.81| +37|2023-10-06T22:03:58.8170000-07:00|40021585|Zeromus|000112E8|3495289||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:03:58.8170000-07:00|10FF0001|Sesuga Sapisuga|119781|129071|7900|10000|||99.64|93.04|0.00|-1.52| +261|2023-10-06T22:03:58.3940000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:03:58.8610000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|B560000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3495319|40478540|10000|10000|||100.00|80.10|0.00|0.00|51772|83502|10000|10000|||96.03|96.07|0.00|2.37|000112ED|0|1| +21|2023-10-06T22:03:59.0400000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C724003|43720000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|3495289|40478540|10000|10000|||100.00|80.10|0.00|0.00|71245|90216|10000|10000|||98.35|97.11|0.00|0.47|000112EE|0|1| +37|2023-10-06T22:03:59.1280000-07:00|40021585|Zeromus|000112EB|3495125||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:58.7020000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:03:59.1730000-07:00|40021585|Zeromus|000112E9|3490957||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:59.1730000-07:00|40021585|Zeromus|000112EC|3487796||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:03:59.1730000-07:00|40021585|Zeromus|000112EA|3458863||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:59.2620000-07:00|4002159C|Zeromus|8B27|unknown_8b27|4002159C|Zeromus|1B|8B278000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-0.70|44|44|0|10000|||100.00|80.10|0.00|-0.70|000112EF|0|1| +261|2023-10-06T22:03:58.8140000-07:00|Change|4002159C||||||||||||| +39|2023-10-06T22:03:59.3510000-07:00|10FF000B|Pusu Rosu|79209|79209|8396|10000|||100.40|98.24|0.00|-1.62| +39|2023-10-06T22:03:59.3510000-07:00|10FF000A|Dukaro Nezikaro|52607|83502|10000|10000|||96.51|96.73|-0.02|2.47| +261|2023-10-06T22:03:58.9270000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:03:58.9270000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:03:59.3960000-07:00|40021585|Zeromus|000112ED|3455961||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:59.4420000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2E700000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|3458863|40478540|10000|10000|||100.00|80.10|0.00|0.00|119781|129071|7900|10000|||99.46|95.32|0.00|-1.65|000112F0|0|1| +38|2023-10-06T22:03:59.4420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|119781|129071|7900|10000|0||99.46|95.32|0.00|-1.65|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:59.4420000-07:00|76E|Sword Oath|28.04|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +261|2023-10-06T22:03:59.0440000-07:00|Change|10FF0008||||||||| +39|2023-10-06T22:03:59.4870000-07:00|10FF0007|Kehabiqo Febiqo|117989|129844|10000|10000|||99.60|94.99|0.00|-2.84| +38|2023-10-06T22:03:59.4870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|60928|81541|200|10000|0||100.85|98.65|0.00|-0.94|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:59.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:03:59.4870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|71245|90216|10000|10000|0||97.54|100.76|0.00|0.16|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:59.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:03:59.4870000-07:00|10FF0003|Gegehi Gehi|005A5A23|59591|73814|5150|10000|0||103.41|98.79|0.00|-2.32|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:59.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:03:59.4870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52607|83502|10000|10000|0||96.51|96.73|0.00|2.63|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:59.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:03:59.4870000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8396|10000|0||98.83|98.53|0.00|-1.44|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:59.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:03:59.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117989|129844|10000|10000|0||99.60|94.99|0.00|-2.84|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:59.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:03:59.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|119781|129071|7900|10000|0||99.41|95.95|0.00|-1.65|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:03:59.4870000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T22:03:59.4870000-07:00|10FF000B|Pusu Rosu|HoT|0|9AA|79209|79209|8396|10000|||98.83|98.53|0.00|-1.44|10FF000B|Pusu Rosu|0|79209|79209|8396|10000|||98.83|98.53|0.00|-1.44| +38|2023-10-06T22:03:59.4870000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8396|10000|0||98.83|98.53|0.00|-1.44|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:03:59.5750000-07:00|40021585|Zeromus|000112E7|3442113||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:03:59.5750000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|556003|9D840000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|3455961|40478540|10000|10000|||100.00|80.10|0.00|0.00|52607|83502|10000|10000|||96.51|96.73|0.00|2.63|000112F1|0|1| +38|2023-10-06T22:03:59.5750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|52607|83502|10000|10000|0||96.51|96.73|0.00|2.63|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:03:59.5750000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +30|2023-10-06T22:03:59.5750000-07:00|7A2|Bunshin|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:03:59.1580000-07:00|Change|400219E4||||||||| +21|2023-10-06T22:03:59.6630000-07:00|400219E4|Bunshin|6517|Fleeting Raiju|40021585|Zeromus|552003|22610000|53E|9F8000|1B|65178000|0|0|0|0|0|0|0|0|0|0|3442113|40478540|10000|10000|||100.00|80.10|0.00|0.00|76288|79156|10000|10000|||96.48|96.77|0.00|2.93|000112F2|0|1| +261|2023-10-06T22:03:59.2570000-07:00|Change|400219E4||| +20|2023-10-06T22:03:59.7520000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|97.70|97.83|0.00|-1.72| +261|2023-10-06T22:03:59.4390000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:03:59.8420000-07:00|40021585|Zeromus|000112EE|3424847||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:00.1090000-07:00|10FF0004|Buhojaqe Zijaqe|61743|81541|400|10000|||97.74|98.83|0.00|-1.46| +39|2023-10-06T22:04:00.1990000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98| +261|2023-10-06T22:03:59.8790000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:04:00.2890000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|754003|3D080000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3424847|40478540|10000|10000|||100.00|80.10|0.00|0.00|52607|83502|10000|10000|||96.12|97.39|0.00|-3.04|000112F3|0|1| +37|2023-10-06T22:04:00.3330000-07:00|40021585|Zeromus|000112F1|3384523||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:03:59.8790000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:03:59.9980000-07:00|Change|10FF000B||||||||||||||||||| +21|2023-10-06T22:04:00.3770000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|44870000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3384523|40478540|10000|10000|||100.00|80.10|0.00|0.00|117989|129844|10000|10000|||100.94|99.16|0.00|1.79|000112F4|0|1| +37|2023-10-06T22:04:00.4210000-07:00|40021585|Zeromus|000112F2|3375722||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:00.4670000-07:00|10FF0003|Gegehi Gehi|60329|73814|5350|10000|||101.15|97.73|0.00|-2.47| +261|2023-10-06T22:04:00.1110000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:04:00.1110000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:04:00.5560000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|712003|14850000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3375722|40478540|10000|10000|||100.00|80.10|0.00|0.00|117989|129844|10000|10000|||100.72|99.29|-0.02|3.00|000112F5|0|1| +24|2023-10-06T22:04:00.6900000-07:00|40021585|Zeromus|DoT|0|C15|3375722|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|52607|83502|10000|10000|||95.73|99.02|0.00|2.34| +38|2023-10-06T22:04:00.6900000-07:00|40021585|Zeromus|005A5A00|3372629|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +37|2023-10-06T22:04:00.7340000-07:00|40021585|Zeromus|000112F0|3360741||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:00.7340000-07:00|10FF0001|Sesuga Sapisuga|000112F0|119781|129071|8300|10000|0||99.29|98.41|0.00|-1.49|1300|0|0|0| +21|2023-10-06T22:04:00.7340000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40021585|Zeromus|152003|A3E60000|F|4D28000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|3372629|40478540|10000|10000|||100.00|80.10|0.00|0.00|60329|73814|5350|10000|||100.76|98.34|0.00|-2.28|000112F6|0|1| +38|2023-10-06T22:04:00.7340000-07:00|10FF0003|Gegehi Gehi|005A5A23|60329|73814|4950|10000|0||100.76|98.34|0.00|-2.28|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:00.7340000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:04:00.7790000-07:00|4002159E|Zeromus|8B28|unknown_8b28|4002159E|Zeromus|1B|8B288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|1.40|44|44|0|10000|||100.00|80.10|0.00|1.40|000112F7|0|1| +261|2023-10-06T22:04:00.3910000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T22:04:00.4840000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:00.9120000-07:00|40021585|Zeromus|000112F3|3345117||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:00.9120000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|154F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|52607|83502|10000|10000|||95.84|99.47|-0.02|1.48|73956|77430|10000|10000|||103.41|100.48|0.00|-2.81|000112F8|0|1| +21|2023-10-06T22:04:00.9120000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|9E30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3360741|40478540|10000|10000|||100.00|80.10|0.00|0.00|119781|129071|8300|10000|||99.32|98.41|0.00|-0.57|000112F9|0|1| +31|2023-10-06T22:04:00.9120000-07:00|10FF0001||||| +37|2023-10-06T22:04:01.0030000-07:00|40021585|Zeromus|000112F4|3327574||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:04:01.0470000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|14E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3327574|40478540|10000|10000|||100.00|80.10|0.00|0.00|52607|83502|10000|10000|||95.91|99.76|0.00|0.91|000112FA|0|3| +22|2023-10-06T22:04:01.0470000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|15960000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3327574|40478540|10000|10000|||100.00|80.10|0.00|0.00|52607|83502|10000|10000|||95.91|99.76|0.00|0.91|000112FA|1|3| +22|2023-10-06T22:04:01.0470000-07:00|10FF000A|Dukaro Nezikaro|DEE|Dream Within a Dream|40021585|Zeromus|710003|14C80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3327574|40478540|10000|10000|||100.00|80.10|0.00|0.00|52607|83502|10000|10000|||95.91|99.76|0.00|0.91|000112FA|2|3| +21|2023-10-06T22:04:01.0470000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|11820000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3327574|40478540|10000|10000|||100.00|80.10|0.00|0.00|52607|83502|10000|10000|||95.91|99.76|0.00|0.91|000112FB|0|1| +37|2023-10-06T22:04:01.0910000-07:00|40021585|Zeromus|000112F5|3322321||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:01.0910000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|726003|14020000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3327574|40478540|10000|10000|||100.00|80.10|0.00|0.00|71245|90216|10000|10000|||93.19|104.72|0.00|-0.22|000112FC|0|1| +39|2023-10-06T22:04:01.1360000-07:00|10FF0008|Kokosaze Lulusaze|72147|90216|10000|10000|||93.19|104.72|0.00|-0.22| +22|2023-10-06T22:04:01.1800000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|200004|3A540000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|79209|79209|8396|10000|||97.22|97.46|0.00|-1.92|79209|79209|8396|10000|||97.22|97.46|0.00|-1.92|000112FD|0|7| +22|2023-10-06T22:04:01.1800000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|245E0000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|61743|81541|400|10000|||95.62|99.03|0.00|-1.48|79209|79209|8396|10000|||97.22|97.46|0.00|-1.92|000112FD|1|7| +22|2023-10-06T22:04:01.1800000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|4|253E0000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|119781|129071|8300|10000|||99.24|98.38|0.00|-2.09|79209|79209|8396|10000|||97.22|97.46|0.00|-1.92|000112FD|2|7| +22|2023-10-06T22:04:01.1800000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|4|242D0000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|52607|83502|10000|10000|||95.94|99.87|0.00|2.94|79209|79209|8396|10000|||97.22|97.46|0.00|-1.92|000112FD|3|7| +22|2023-10-06T22:04:01.1800000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|25CC0000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|117989|129844|10000|10000|||100.49|99.67|0.00|1.25|79209|79209|8396|10000|||97.22|97.46|0.00|-1.92|000112FD|4|7| +22|2023-10-06T22:04:01.1800000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|256E0000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|60329|73814|4950|10000|||98.87|100.72|0.00|-2.37|79209|79209|8396|10000|||97.22|97.46|0.00|-1.92|000112FD|5|7| +22|2023-10-06T22:04:01.1800000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|4|23F40000|BD8C0E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|72147|90216|10000|10000|||93.18|104.74|0.00|-0.25|79209|79209|8396|10000|||97.22|97.46|0.00|-1.92|000112FD|6|7| +261|2023-10-06T22:04:00.8070000-07:00|Change|10FF000B||||||||||||||||||| +261|2023-10-06T22:04:00.9230000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:04:01.0430000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:04:01.4470000-07:00|40021585|Zeromus|000112F9|3319790||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:01.5360000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|44DE0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|3319790|40478540|10000|10000|||100.00|80.10|0.00|0.00|72147|90216|10000|10000|||92.96|105.32|0.00|-0.31|000112FE|0|1| +37|2023-10-06T22:04:01.5800000-07:00|40021585|Zeromus|000112FB|3315308||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:01.6690000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|117989|129844|10000|10000|||102.14|99.55|0.00|2.89|117989|129844|10000|10000|||102.14|99.55|0.00|2.89|000112FF|0|1| +38|2023-10-06T22:04:01.6690000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117989|129844|10000|10000|0||102.14|99.55|0.00|2.89|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:01.6690000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +37|2023-10-06T22:04:01.7130000-07:00|10FF000A|Dukaro Nezikaro|000112F8|58062||||||95.87|100.44|0.00|2.86| +39|2023-10-06T22:04:01.7130000-07:00|400219E4|Bunshin|76288|79156|10000|10000|||96.48|96.77|0.00|2.93| +261|2023-10-06T22:04:01.3400000-07:00|Change|40021596||||||||| +261|2023-10-06T22:04:01.3400000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:04:01.3400000-07:00|Change|40021597||||||||| +261|2023-10-06T22:04:01.3400000-07:00|Change|40021595||||||||| +261|2023-10-06T22:04:01.3400000-07:00|Change|40021594||||||||| +261|2023-10-06T22:04:01.3400000-07:00|Change|40021591||||||||| +261|2023-10-06T22:04:01.3400000-07:00|Change|40021598||||||||| +261|2023-10-06T22:04:01.3400000-07:00|Change|40021593||||||||| +37|2023-10-06T22:04:01.7590000-07:00|40021585|Zeromus|000112FA|3309964||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:01.7590000-07:00|400215A2|Zeromus|8B29|unknown_8b29|400215A2|Zeromus|1B|8B298000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.00|44|44|0|10000|||100.00|80.10|0.00|0.00|00011300|0|1| +21|2023-10-06T22:04:01.7590000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|AF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3315308|40478540|10000|10000|||100.00|80.10|0.00|0.00|61743|81541|400|10000|||94.87|99.60|0.00|-1.30|00011301|0|1| +21|2023-10-06T22:04:01.7590000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1E0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3315308|40478540|10000|10000|||100.00|80.10|0.00|0.00|60329|73814|4950|10000|||96.02|102.82|0.00|-1.81|00011302|0|1| +21|2023-10-06T22:04:01.7590000-07:00|10FF000B|Pusu Rosu|1D89|Swiftcast|10FF000B|Pusu Rosu|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7396|10000|||97.22|97.46|0.00|-1.92|79209|79209|7396|10000|||97.22|97.46|0.00|-1.92|00011303|0|1| +38|2023-10-06T22:04:01.7590000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7396|10000|0||97.22|97.46|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:01.7590000-07:00|A7|Swiftcast|10.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:04:01.3400000-07:00|Change|400215A2||||||||||||| +20|2023-10-06T22:04:01.8040000-07:00|40021591|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.14|87.56|0.00|0.00| +20|2023-10-06T22:04:01.8040000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.81|100.56|0.00|0.00| +20|2023-10-06T22:04:01.8040000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|109.09|113.56|0.00|0.00| +20|2023-10-06T22:04:01.8040000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.62|92.12|0.00|0.00| +20|2023-10-06T22:04:01.8040000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|117.11|100.05|0.00|0.00| +20|2023-10-06T22:04:01.8040000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|118.23|81.12|0.00|0.00| +20|2023-10-06T22:04:01.8040000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|94.59|95.70|0.00|0.00| +20|2023-10-06T22:04:01.8040000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.94|98.33|0.00|0.00| +20|2023-10-06T22:04:01.8040000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|93.79|100.09|0.00|0.00| +39|2023-10-06T22:04:01.8040000-07:00|10FF0001|Sesuga Sapisuga|121071|129071|8500|10000|||96.05|99.71|0.00|-2.23| +261|2023-10-06T22:04:01.4310000-07:00|Change|40021592||||||||||||| +37|2023-10-06T22:04:01.8480000-07:00|40021585|Zeromus|000112FC|3304842||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:01.8930000-07:00|10FF000B|Pusu Rosu|00011303|79209|79209|7396|10000|0||97.22|97.46|0.00|-1.92|1800|0|0|01|020000A7|0|41200000|| +37|2023-10-06T22:04:01.8930000-07:00|40021585|Zeromus|000112FA|3299316||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:01.8930000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7396|10000|0||97.22|97.46|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:01.5240000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:04:01.9370000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|47A70000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|3299316|40478540|10000|10000|||100.00|80.10|0.00|0.00|121071|129071|8500|10000|||95.38|99.78|0.00|-2.28|00011304|0|1| +38|2023-10-06T22:04:01.9370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121071|129071|8500|10000|0||95.38|99.78|0.00|-2.28|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:01.9370000-07:00|76E|Sword Oath|25.55|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:04:01.5240000-07:00|Change|400219E4||| +24|2023-10-06T22:04:02.0250000-07:00|10FF000B|Pusu Rosu|HoT|4C3|1996|79209|79209|7396|10000|||97.22|97.46|0.00|-1.92|10FF000B|Pusu Rosu|0|79209|79209|7396|10000|||97.22|97.46|0.00|-1.92| +37|2023-10-06T22:04:02.0250000-07:00|10FF000B|Pusu Rosu|000112FD|79209|79209|7396|10000|0||97.22|97.46|0.00|-1.92|1800|0|0|01|0A000096|0|41700000|| +26|2023-10-06T22:04:02.0250000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T22:04:02.0250000-07:00|40021585|Zeromus|000112FA|3293996||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:02.1590000-07:00|40021585|Zeromus|000112F6|3252038||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:02.1590000-07:00|10FF0003|Gegehi Gehi|000112F6|60329|73814|4950|10000|0||94.32|103.42|0.00|-1.83|2300|0|0|01|020004D2|0|41F00000|| +37|2023-10-06T22:04:02.1590000-07:00|10FF0004|Buhojaqe Zijaqe|000112FD|71053|81541|400|10000|0||94.52|100.37|0.00|-1.03|1C01|0|0|01|05000096|0|41700000|| +26|2023-10-06T22:04:02.1590000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:02.1590000-07:00|10FF0003|Gegehi Gehi|005A5A23|60329|73814|4950|10000|0||94.32|103.42|0.00|-1.83|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|40021595||||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|4002159C||||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|40021598||||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:04:01.8600000-07:00|Change|40021591||||||||||| +37|2023-10-06T22:04:02.2030000-07:00|10FF0007|Kehabiqo Febiqo|000112FF|117989|129844|10000|10000|0||103.40|99.44|0.00|-3.04|1500|0|0|01|04000769|0|41F00000|| +38|2023-10-06T22:04:02.2030000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|117989|129844|10000|10000|0||103.40|99.44|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:02.2930000-07:00|40021585|Zeromus|00011301|3251863||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:02.2930000-07:00|40021585|Zeromus|00011302|3251833||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:02.2930000-07:00|10FF0001|Sesuga Sapisuga|000112FD|129071|129071|8500|10000|0||93.25|100.85|0.00|-2.47|1302|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:04:02.2930000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +04|2023-10-06T22:04:01.9750000-07:00|400219E4|Bunshin|00|5A|10FF000A|00||8313|10897|76288|79156|10000|10000|||96.48|96.77|0.00|2.93| +261|2023-10-06T22:04:01.9750000-07:00|Remove|400219E4| +37|2023-10-06T22:04:02.3380000-07:00|40021585|Zeromus|000112FE|3234203||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:02.3380000-07:00|10FF000B|Pusu Rosu|79209|79209|7677|10000|||97.22|97.46|0.00|-1.92| +39|2023-10-06T22:04:02.3380000-07:00|10FF000A|Dukaro Nezikaro|58897|83502|10000|10000|||95.95|101.37|0.00|0.49| +37|2023-10-06T22:04:02.4270000-07:00|10FF000A|Dukaro Nezikaro|000112FD|68158|83502|10000|10000|0||95.95|101.37|0.00|0.49|1E03|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:04:02.4270000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +24|2023-10-06T22:04:02.4270000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|16BC|58062|83502|10000|10000|||95.95|101.37|0.00|0.49|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||105.12|88.49|0.00|-1.77| +38|2023-10-06T22:04:02.4270000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|73978|83502|10000|10000|0||95.95|101.37|0.00|0.49|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:04:02.4730000-07:00|10FF0007|Kehabiqo Febiqo|119287|129844|10000|10000|||102.68|99.51|0.00|-3.04| +38|2023-10-06T22:04:02.4730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71053|81541|400|10000|0||93.61|102.27|0.00|-0.42|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:02.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:02.4730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72147|90216|10000|10000|0||90.65|108.86|0.00|-0.64|0|0|0|||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:02.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:02.4730000-07:00|10FF0003|Gegehi Gehi|005A5A23|60329|73814|4950|10000|0||93.83|103.17|-0.01|-1.89|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:02.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:02.4730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|73978|83502|10000|10000|0||95.95|101.37|0.00|0.49|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:02.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:04:02.4730000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7677|10000|0||97.22|97.46|0.00|-1.92|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:02.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:02.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|119287|129844|10000|10000|0||102.68|99.51|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:02.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:02.4730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|0||92.79|101.21|0.00|-2.52|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:02.4730000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T22:04:02.4730000-07:00|10FF000B|Pusu Rosu|HoT|0|3108|79209|79209|7396|10000|||97.22|97.46|0.00|-1.92|10FF000B|Pusu Rosu|0|79209|79209|7396|10000|||97.22|97.46|0.00|-1.92| +21|2023-10-06T22:04:02.4730000-07:00|10FF000B|Pusu Rosu|1D06|Thin Air|10FF000B|Pusu Rosu|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7396|10000|||97.22|97.46|0.00|-1.92|79209|79209|7396|10000|||97.22|97.46|0.00|-1.92|00011305|0|1| +38|2023-10-06T22:04:02.4730000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7677|10000|0||97.22|97.46|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:02.4730000-07:00|4C1|Thin Air|12.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +261|2023-10-06T22:04:02.0970000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:04:02.0970000-07:00|Change|10FF000B||| +37|2023-10-06T22:04:02.5610000-07:00|10FF0007|Kehabiqo Febiqo|000112FD|128963|129844|10000|10000|0||101.83|99.59|0.00|-3.04|1504|0|0|01|06000096|0|41700000|| +26|2023-10-06T22:04:02.5610000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T22:04:02.5610000-07:00|10FF000B|Pusu Rosu|000112FD|79209|79209|7677|10000|0||97.22|97.46|0.00|-1.92|1804|0|0|01|0B0004C1|FF9C|C1400000|| +24|2023-10-06T22:04:02.5610000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1733|119287|129844|10000|10000|||101.83|99.59|0.00|-3.04|10FF0003|Gegehi Gehi|0|60329|73814|4950|10000|||93.83|103.17|0.00|-1.89| +38|2023-10-06T22:04:02.5610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||101.83|99.59|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T22:04:02.6500000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|167C|129071|129071|8500|10000|||92.49|101.34|0.00|-2.79|10FF0003|Gegehi Gehi|0|60329|73814|4950|10000|||93.83|103.17|0.00|-1.89| +38|2023-10-06T22:04:02.6500000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8500|10000|0||92.49|101.34|0.00|-2.79|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:02.6950000-07:00|10FF0003|Gegehi Gehi|000112FD|69911|73814|4950|10000|0||93.83|103.17|0.00|-1.89|2305|0|0|01|03000096|0|41700000|| +26|2023-10-06T22:04:02.6950000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T22:04:02.6950000-07:00|10FF000B|Pusu Rosu|000112FD|79209|79209|7677|10000|0||97.22|97.46|0.00|-1.92|1805|0|0|01|0B0004C1|FF9C|C1400000|| +21|2023-10-06T22:04:02.7830000-07:00|4002159A|Zeromus|8B2A|unknown_8b2a|4002159A|Zeromus|1B|8B2A8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-1.40|44|44|0|10000|||100.00|80.10|0.00|-1.40|00011306|0|1| +261|2023-10-06T22:04:02.3740000-07:00|Change|4002159A||||||||||||| +37|2023-10-06T22:04:02.8280000-07:00|10FF0008|Kokosaze Lulusaze|000112FD|81351|90216|10000|10000|0||89.85|111.02|0.00|-0.38|1F06|0|0|01|02000096|0|41700000|| +26|2023-10-06T22:04:02.8280000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:04:02.8280000-07:00|10FF000B|Pusu Rosu|000112FD|79209|79209|7677|10000|0||97.23|97.46|0.00|-2.70|1806|0|0|01|0B0004C1|FF9C|C1400000|| +21|2023-10-06T22:04:02.8280000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|B5150000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3234203|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||100.61|99.72|0.00|-3.04|00011307|0|1| +38|2023-10-06T22:04:02.8280000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||100.61|99.72|0.00|-3.04|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:02.8280000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:04:02.5640000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:04:03.0070000-07:00|10FF0001|Sesuga Sapisuga|03|Sprint|10FF0001|Sesuga Sapisuga|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|8500|10000|||90.71|101.95|0.00|-2.81|129071|129071|8500|10000|||90.71|101.95|0.00|-2.81|00011308|0|1| +261|2023-10-06T22:04:02.5640000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:04:03.0950000-07:00|10FF0004|Buhojaqe Zijaqe|71868|81541|600|10000|||92.50|106.09|0.00|-0.34| +37|2023-10-06T22:04:03.1400000-07:00|10FF0001|Sesuga Sapisuga|00011308|129071|129071|8500|10000|0||90.05|102.18|0.00|-2.81|1300|0|0|01|08000032|1E|41200000|| +26|2023-10-06T22:04:03.1400000-07:00|32|Sprint|10.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|129071|129071| +37|2023-10-06T22:04:03.2300000-07:00|40021585|Zeromus|00011304|3215860||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:03.2300000-07:00|10FF0001|Sesuga Sapisuga|00011304|129071|129071|8900|10000|0||89.43|102.39|0.00|-2.81|1300|0|0|0| +37|2023-10-06T22:04:03.2300000-07:00|10FF000B|Pusu Rosu|00011305|79209|79209|7677|10000|0||98.24|96.30|0.00|2.61|1800|0|0|01|0B0004C1|FF9C|41400000|| +39|2023-10-06T22:04:03.2300000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98| +261|2023-10-06T22:04:02.7960000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:04:03.2300000-07:00|10FF000B|Pusu Rosu|7D|Raise|10FF0006|Wowobora Gogobora|814000E|940000|1B|7D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|0|10000|||105.12|88.49|0.00|-1.77|79209|79209|7677|10000|||98.24|96.30|0.00|2.61|00011309|0|1| +38|2023-10-06T22:04:03.2300000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7677|10000|0||98.24|96.30|0.00|2.61|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:03.2300000-07:00|A7|Swiftcast|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +30|2023-10-06T22:04:03.2300000-07:00|4C1|Thin Air|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +261|2023-10-06T22:04:02.7960000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:02.7960000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T22:04:03.4970000-07:00|10FF0003|Gegehi Gehi|70649|73814|5150|10000|||93.08|105.45|0.00|-1.88| +261|2023-10-06T22:04:03.2480000-07:00|Change|10FF000A||||||||| +24|2023-10-06T22:04:03.6740000-07:00|40021585|Zeromus|DoT|0|C32|3215860|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|73978|83502|10000|10000|||91.74|107.40|0.00|-2.30| +38|2023-10-06T22:04:03.6740000-07:00|40021585|Zeromus|005A5A00|3212738|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:04:03.3430000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T22:04:03.7670000-07:00|40021585|Zeromus|00011307|3166381||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:03.7670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|108D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3212738|40478540|10000|10000|||100.00|80.10|0.00|0.00|81351|90216|10000|10000|||89.45|113.31|0.00|-0.36|0001130A|0|1| +21|2023-10-06T22:04:03.7670000-07:00|400215A0|Zeromus|8B2B|unknown_8b2b|400215A0|Zeromus|1B|8B2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.70|44|44|0|10000|||100.00|80.10|0.00|0.70|0001130B|0|1| +21|2023-10-06T22:04:03.7670000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|752003|C3620000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|3212738|40478540|10000|10000|||100.00|80.10|0.00|0.00|70649|73814|5150|10000|||92.03|107.11|0.00|-1.77|0001130C|0|1| +261|2023-10-06T22:04:03.3430000-07:00|Change|400215A0||||||||||||| +21|2023-10-06T22:04:03.8530000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|752003|41FE0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|3166381|40478540|10000|10000|||100.00|80.10|0.00|0.00|71868|81541|600|10000|||91.70|109.77|0.00|-0.22|0001130D|0|1| +21|2023-10-06T22:04:03.9450000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|CD10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3166381|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.75|101.35|-0.01|-3.07|0001130E|0|1| +21|2023-10-06T22:04:03.9450000-07:00|10FF000B|Pusu Rosu|1D8A|Lucid Dreaming|10FF000B|Pusu Rosu|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|7677|10000|||99.77|94.52|-0.02|2.66|79209|79209|7677|10000|||99.77|94.52|-0.02|2.66|0001130F|0|1| +21|2023-10-06T22:04:04.0320000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|22100000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|3166381|40478540|10000|10000|||100.00|80.10|0.00|0.00|81351|90216|10000|10000|||88.99|115.01|0.00|-0.33|00011310|0|1| +39|2023-10-06T22:04:04.1650000-07:00|10FF0008|Kokosaze Lulusaze|82253|90216|10000|10000|||89.02|115.21|0.00|2.65| +261|2023-10-06T22:04:03.8560000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:04:03.8560000-07:00|Change|10FF0004||||||||||| +38|2023-10-06T22:04:04.3000000-07:00|10FF0003|Gegehi Gehi|005A5A23|70649|73814|4750|10000|0||90.99|107.73|0.00|-2.69|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:04.3000000-07:00|4D7|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:04:04.3890000-07:00|10FF0006|Wowobora Gogobora|00011309|0|81809|0|10000|0||105.12|88.49|0.00|-1.77|1B00|0|0|01|94|08|42700000|| +26|2023-10-06T22:04:04.3890000-07:00|94|Raise|60.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|08|81809|79209| +38|2023-10-06T22:04:04.4330000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.41|100.48|0.00|-2.75|0|0|0|||||||||| +30|2023-10-06T22:04:04.4330000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|400219AD|Ruby Carbuncle|00|77430|73814| +38|2023-10-06T22:04:04.4330000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|71868|81541|200|10000|0||91.90|110.45|-0.01|2.88|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:04.4330000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0004|Buhojaqe Zijaqe|00|81541|73814| +37|2023-10-06T22:04:04.4770000-07:00|40021585|Zeromus|0001130E|3163100||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:04.5220000-07:00|40021585|Zeromus|0001130A|3158863||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:04.5220000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF000A|Dukaro Nezikaro|4|15530000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|73978|83502|10000|10000|||91.68|108.75|0.00|-2.72|73956|77430|10000|10000|||103.41|100.48|0.00|-2.52|00011311|0|1| +37|2023-10-06T22:04:04.5670000-07:00|10FF000B|Pusu Rosu|0001130F|79209|79209|7677|10000|0||99.93|93.98|0.00|3.13|1800|0|0|01|020004B4|0|41A80000|| +26|2023-10-06T22:04:04.5670000-07:00|4B4|Lucid Dreaming|21.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:04.5670000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7677|10000|0||99.93|93.98|0.00|3.13|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:04.5670000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000B|Pusu Rosu|00|79209|73814| +38|2023-10-06T22:04:04.7000000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|82253|90216|10000|10000|0||89.10|115.55|0.00|1.61|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:04.7000000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0008|Kokosaze Lulusaze|00|90216|73814| +37|2023-10-06T22:04:04.7900000-07:00|40021585|Zeromus|00011310|3150143||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:04.7900000-07:00|40021585|Zeromus|0001130D|3133249||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:04.7900000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9100|10000|||84.45|101.15|0.00|2.51| +21|2023-10-06T22:04:04.7900000-07:00|40021585|Zeromus|8B78|Chasmic Nails|40021585|Zeromus|1B|8B788000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3158863|40478540|10000|10000|||100.00|80.10|0.00|0.00|3158863|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011312|0|1| +261|2023-10-06T22:04:04.3880000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:04:04.3880000-07:00|Change|10FF0001||||||||| +38|2023-10-06T22:04:04.8350000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|73978|83502|10000|10000|0||91.43|108.99|0.00|-2.73|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:04.8350000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF000A|Dukaro Nezikaro|00|83502|73814| +24|2023-10-06T22:04:05.0570000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|16A2|82253|90216|10000|10000|||89.13|115.68|0.00|1.23|10FF0004|Buhojaqe Zijaqe|0|71868|81541|200|10000|||91.91|110.46|0.00|2.88| +24|2023-10-06T22:04:05.0570000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|16C5|71868|81541|200|10000|||91.91|110.46|0.00|2.88|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||105.12|88.49|0.00|-1.77| +38|2023-10-06T22:04:05.0570000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88047|90216|10000|10000|0||89.13|115.68|0.00|1.23|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:05.0570000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77697|81541|200|10000|0||91.91|110.46|0.00|2.88|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:05.1020000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9100|10000|0||84.26|101.59|0.00|1.56|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:05.1020000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0001|Sesuga Sapisuga|00|129071|73814| +38|2023-10-06T22:04:05.1470000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77697|81541|200|10000|0||91.91|110.46|0.00|2.88|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:05.1470000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:04:04.8010000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:04:05.2370000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|2EF40000|4|27218000|0|0|0|0|0|0|0|0|0|0|0|0|3133249|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9100|10000|||84.26|101.59|0.00|0.27|00011313|0|1| +38|2023-10-06T22:04:05.2370000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.50|101.40|0.00|-3.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:05.2370000-07:00|511|Embolden|0.00|10FF0003|Gegehi Gehi|10FF0007|Kehabiqo Febiqo|00|129844|73814| +38|2023-10-06T22:04:05.2370000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||84.26|101.59|0.00|0.27|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:05.2370000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +21|2023-10-06T22:04:05.2810000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|712003|26720000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|3133249|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.50|101.40|0.00|-3.05|00011314|0|1| +38|2023-10-06T22:04:05.2810000-07:00|10FF0003|Gegehi Gehi|005A5A23|70649|73814|4750|10000|0||89.43|108.14|0.00|-2.25|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:05.2810000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +37|2023-10-06T22:04:05.3250000-07:00|10FF000A|Dukaro Nezikaro|00011311|79437||||||91.02|109.21|-0.02|-2.87| +261|2023-10-06T22:04:04.9140000-07:00|Change|10FF000B||||||||||||| +39|2023-10-06T22:04:05.3700000-07:00|10FF000B|Pusu Rosu|79209|79209|7958|10000|||99.87|93.07|0.00|-3.01| +39|2023-10-06T22:04:05.3700000-07:00|10FF000A|Dukaro Nezikaro|80272|83502|10000|10000|||91.02|109.21|0.00|-2.87| +24|2023-10-06T22:04:05.3700000-07:00|10FF0003|Gegehi Gehi|HoT|0|16CB|70649|73814|4750|10000|||89.43|108.14|0.00|-2.25|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||105.12|88.49|0.00|-1.77| +38|2023-10-06T22:04:05.3700000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|0||89.43|108.14|0.00|-2.25|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T22:04:05.4150000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|23E5|79437|83502|10000|10000|||91.02|109.21|0.00|-2.87|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||105.12|88.49|0.00|-1.77| +38|2023-10-06T22:04:05.4150000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7958|10000|0||99.87|93.07|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:05.4150000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:04:05.4150000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||91.02|109.21|0.00|-2.87|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:04:05.4610000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.50|101.40|0.00|3.12| +38|2023-10-06T22:04:05.4610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|77697|81541|200|10000|0||91.91|110.46|0.00|2.88|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:05.4610000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:05.4610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88047|90216|10000|10000|0||89.13|115.68|0.00|1.23|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:05.4610000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:05.4610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4750|10000|0||89.43|108.14|0.00|-2.25|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:05.4610000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:05.4610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||91.02|109.21|0.00|-2.87|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:05.4610000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:04:05.4610000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|7958|10000|0||99.87|93.07|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:05.4610000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:05.4610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.50|101.40|0.00|3.12|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:05.4610000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +261|2023-10-06T22:04:05.0280000-07:00|Change|4002159B||||||||||||| +38|2023-10-06T22:04:05.4610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||84.26|101.59|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:05.4610000-07:00|751|Temperance|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +24|2023-10-06T22:04:05.4610000-07:00|10FF000B|Pusu Rosu|HoT|0|1ED3|79209|79209|7677|10000|||99.87|93.07|0.00|-3.01|10FF000B|Pusu Rosu|0|79209|79209|7677|10000|||99.87|93.07|0.00|-3.01| +22|2023-10-06T22:04:05.4610000-07:00|4002159B|Zeromus|8B79|Chasmic Nails|10FF0001|Sesuga Sapisuga|710003|61EB0000|100140E|6FD0000|350E|1080000|1B|8B798000|0|0|0|0|0|0|0|0|129071|129071|8100|10000|||84.26|101.59|0.00|2.51|44|44|0|10000|||100.00|80.10|0.00|-0.70|00011315|0|2| +22|2023-10-06T22:04:05.4610000-07:00|4002159B|Zeromus|8B79|Chasmic Nails|10FF0003|Gegehi Gehi|710003|BF670000|100140E|6FD0000|40E|1080000|1B|8B798000|0|0|0|0|0|0|0|0|70649|73814|4750|10000|||89.43|108.14|0.00|-2.25|44|44|0|10000|||100.00|80.10|0.00|-0.70|00011315|1|2| +38|2023-10-06T22:04:05.4610000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8508|10000|0||99.87|93.07|0.00|-3.01|0|0|0|||||||||||||||||||||||||||||||||| +24|2023-10-06T22:04:05.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|15DB|129844|129844|10000|10000|||99.50|101.40|0.00|3.12|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||105.12|88.49|0.00|-1.77| +38|2023-10-06T22:04:05.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.50|101.40|0.00|3.12|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:04:05.5490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||84.26|101.59|0.00|2.51|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:05.5490000-07:00|6FD|Vulnerability Up|59.91|4002159B|Zeromus|10FF0001|Sesuga Sapisuga|01|129071|44| +30|2023-10-06T22:04:05.5490000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T22:04:05.5930000-07:00|40021585|Zeromus|0001130C|3083231||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:05.6380000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1686|129071|129071|8100|10000|||84.37|101.61|0.00|2.31|10FF0001|Sesuga Sapisuga|0|129071|129071|8100|10000|||84.37|101.61|0.00|2.31| +38|2023-10-06T22:04:05.6380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8100|10000|0||84.37|101.61|0.00|2.31|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:05.6830000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.99|109.21|-0.02|-2.92|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:05.6830000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +21|2023-10-06T22:04:05.7730000-07:00|40021591|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.14|87.56|0.00|0.00|00011316|0|0| +261|2023-10-06T22:04:05.3320000-07:00|Change|40021591||||||||||| +21|2023-10-06T22:04:05.7730000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.81|100.56|0.00|0.00|00011317|0|0| +21|2023-10-06T22:04:05.7730000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||109.09|113.56|0.00|0.00|00011318|0|0| +21|2023-10-06T22:04:05.7730000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.62|92.12|0.00|0.00|00011319|0|0| +21|2023-10-06T22:04:05.7730000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||117.11|100.05|0.00|0.00|0001131A|0|0| +21|2023-10-06T22:04:05.7730000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||118.23|81.12|0.00|0.00|0001131B|0|0| +261|2023-10-06T22:04:05.3320000-07:00|Change|40021592||||||||| +21|2023-10-06T22:04:05.7730000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.59|95.70|0.00|0.00|0001131C|0|0| +21|2023-10-06T22:04:05.7730000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.94|98.33|0.00|0.00|0001131D|0|0| +21|2023-10-06T22:04:05.7730000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||93.79|100.09|0.00|0.00|0001131E|0|0| +261|2023-10-06T22:04:05.3320000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:04:05.3320000-07:00|Change|40021595||||||||||| +261|2023-10-06T22:04:05.3320000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:04:05.3320000-07:00|Change|4002159C||||||||||| +261|2023-10-06T22:04:05.3320000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:04:05.3320000-07:00|Change|40021598||||||||||| +261|2023-10-06T22:04:05.3320000-07:00|Change|40021593||||||||||| +37|2023-10-06T22:04:05.8180000-07:00|40021585|Zeromus|00011314|3073389||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:05.8180000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|88047|90216|10000|10000|0||89.13|115.68|0.00|1.23|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:05.8180000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +261|2023-10-06T22:04:05.4220000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:04:05.8620000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|752003|121B0000|21810E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|3073389|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8508|10000|||99.84|92.88|0.00|-3.00|0001131F|0|1| +21|2023-10-06T22:04:05.9070000-07:00|10FF0004|Buhojaqe Zijaqe|1D8A|Lucid Dreaming|10FF0004|Buhojaqe Zijaqe|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|77697|81541|200|10000|||91.91|110.46|0.00|2.88|77697|81541|200|10000|||91.91|110.46|0.00|2.88|00011320|0|1| +38|2023-10-06T22:04:05.9510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.47|101.37|0.00|-2.93|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:05.9510000-07:00|A97|Desperate Measures|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T22:04:05.9960000-07:00|40021585|Zeromus|00011313|3061369||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:06.0860000-07:00|10FF0001|Sesuga Sapisuga|00011315|104004|129071|8100|10000|0||86.23|102.72|0.00|1.93|1300|0|0|02|030006FD|01|42700000|||||| +26|2023-10-06T22:04:06.0860000-07:00|108|Flesh Wound|15.00|4002159B|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +37|2023-10-06T22:04:06.1290000-07:00|10FF0003|Gegehi Gehi|00011315|24815|73814|4750|10000|0||90.05|108.77|0.00|0.42|2301|0|0|02|040006FD|01|42700000|||||| +26|2023-10-06T22:04:06.1290000-07:00|6FD|Vulnerability Up|60.00|4002159B|Zeromus|10FF0003|Gegehi Gehi|01|73814|44| +26|2023-10-06T22:04:06.1290000-07:00|108|Flesh Wound|15.00|4002159B|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +39|2023-10-06T22:04:06.1290000-07:00|10FF0004|Buhojaqe Zijaqe|78512|81541|400|10000|||91.91|110.46|0.00|2.88| +21|2023-10-06T22:04:06.1750000-07:00|4002159D|Zeromus|8B7A|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.40|00011321|0|0| +21|2023-10-06T22:04:06.1750000-07:00|10FF0003|Gegehi Gehi|6502|Resolution|40021585|Zeromus|752003|CF550000|4043E|BA8000|11B|65028000|0|0|0|0|0|0|0|0|0|0|3061369|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4750|10000|||90.05|108.77|0.00|0.42|00011322|0|1| +39|2023-10-06T22:04:06.2180000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-1.65| +261|2023-10-06T22:04:05.7890000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:04:05.7890000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:04:05.7890000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:04:05.8990000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:04:06.0190000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:04:06.4420000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9810000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3061369|40478540|10000|10000|||100.00|80.10|0.00|0.00|88047|90216|10000|10000|||89.01|115.65|0.00|-1.35|00011323|0|1| +39|2023-10-06T22:04:06.4850000-07:00|10FF0003|Gegehi Gehi|25553|73814|4550|10000|||90.33|109.07|0.00|2.82| +37|2023-10-06T22:04:06.5300000-07:00|10FF0004|Buhojaqe Zijaqe|00011320|78512|81541|400|10000|0||91.20|110.23|0.00|-2.31|1C00|0|0|01|030004B4|0|41A80000|| +26|2023-10-06T22:04:06.5300000-07:00|4B4|Lucid Dreaming|21.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T22:04:06.5300000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C726003|67C70000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|3061369|40478540|10000|10000|||100.00|80.10|0.00|0.00|88047|90216|10000|10000|||88.62|115.53|0.00|-1.62|00011324|0|1| +261|2023-10-06T22:04:06.1330000-07:00|Change|10FF0006||||||||| +261|2023-10-06T22:04:06.1330000-07:00|Change|10FF0001||||||||| +24|2023-10-06T22:04:06.6650000-07:00|40021585|Zeromus|DoT|0|C46|3061369|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||88.16|109.63|0.00|-2.99| +261|2023-10-06T22:04:06.3330000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:04:06.3330000-07:00|Change|10FF0003||||||||||| +22|2023-10-06T22:04:06.6660000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|750003|454A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3061369|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|8108|10000|||97.83|91.33|0.00|-2.27|00011325|0|4| +22|2023-10-06T22:04:06.6660000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|31EA0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|8108|10000|||97.83|91.33|0.00|-2.27|79209|79209|8108|10000|||97.83|91.33|0.00|-2.27|00011325|1|4| +22|2023-10-06T22:04:06.6660000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|2FFF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||95.59|99.80|0.00|-2.15|79209|79209|8108|10000|||97.83|91.33|0.00|-2.27|00011325|2|4| +22|2023-10-06T22:04:06.6660000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|32A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|104004|129071|8100|10000|||91.22|101.97|0.00|1.79|79209|79209|8108|10000|||97.83|91.33|0.00|-2.27|00011325|3|4| +38|2023-10-06T22:04:06.6660000-07:00|40021585|Zeromus|005A5A00|3058227|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:04:06.6660000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|8108|10000|0||97.83|91.33|0.00|-2.27|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:06.6660000-07:00|4C3|Confession|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +257|2023-10-06T22:04:06.7090000-07:00|80034E7C|00200004|02|00|0000| +21|2023-10-06T22:04:06.7540000-07:00|400215A3|Zeromus|8B82|Dimensional Surge|10FF000B|Pusu Rosu|750003|C4670000|100140E|6FD0000|1B|8B828000|0|0|0|0|0|0|0|0|0|0|79209|79209|8108|10000|||97.83|91.33|0.00|-2.27|44|44|0|10000|||80.10|87.00|0.00|1.57|00011326|0|1| +261|2023-10-06T22:04:06.3330000-07:00|Change|400215A3||||||||||||| +22|2023-10-06T22:04:06.8880000-07:00|400215A1|Zeromus|8B7B|Chasmic Nails|10FF000B|Pusu Rosu|710003|E1DD0000|200140E|6FD0000|9E0E|1080000|1B|8B7B8000|0|0|0|0|0|0|0|0|79209|79209|8108|10000|||97.02|91.39|0.00|-2.02|44|44|0|10000|||100.00|80.10|0.00|0.00|00011327|0|2| +22|2023-10-06T22:04:06.8880000-07:00|400215A1|Zeromus|8B7B|Chasmic Nails|10FF0007|Kehabiqo Febiqo|710003|71F30000|100140E|6FD0000|570E|1080000|1B|8B7B8000|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||94.83|99.45|0.00|-2.12|44|44|0|10000|||100.00|80.10|0.00|0.00|00011327|1|2| +37|2023-10-06T22:04:06.9330000-07:00|10FF000B|Pusu Rosu|00011326|28930|79209|8108|10000|0||97.02|91.39|0.00|-2.02|1800|0|0|01|050006FD|02|42700000|| +26|2023-10-06T22:04:06.9330000-07:00|6FD|Vulnerability Up|60.00|400215A1|Zeromus|10FF000B|Pusu Rosu|02|79209|44| +261|2023-10-06T22:04:06.5240000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:04:06.5240000-07:00|Change|10FF000A||||||||| +38|2023-10-06T22:04:07.1120000-07:00|40021585|Zeromus|005A5A00|3058227|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:07.1120000-07:00|CB6|Trick Attack|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +261|2023-10-06T22:04:06.7330000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:04:07.1560000-07:00|40021585|Zeromus|0001131F|3053592|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0200074F|0|41F00000|| +26|2023-10-06T22:04:07.1560000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +39|2023-10-06T22:04:07.1560000-07:00|10FF0008|Kokosaze Lulusaze|88949|90216|10000|10000|||84.94|114.44|0.00|-2.15| +37|2023-10-06T22:04:07.2010000-07:00|40021585|Zeromus|00011323|3051159||||||100.00|80.10|0.00|0.00| +26|2023-10-06T22:04:07.2460000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +22|2023-10-06T22:04:07.2460000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0004|Buhojaqe Zijaqe|200004|510F0000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|78512|81541|400|10000|||87.54|107.79|0.00|-2.26|78512|81541|400|10000|||87.54|107.79|0.00|-2.26|00011328|0|6| +22|2023-10-06T22:04:07.2460000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0003|Gegehi Gehi|200004|51EE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|25553|73814|4550|10000|||88.18|106.75|0.00|-2.44|78512|81541|400|10000|||87.54|107.79|0.00|-2.26|00011328|1|6| +22|2023-10-06T22:04:07.2460000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF000A|Dukaro Nezikaro|200004|51410000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||85.30|107.05|0.00|2.98|78512|81541|400|10000|||87.54|107.79|0.00|-2.26|00011328|2|6| +22|2023-10-06T22:04:07.2460000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0001|Sesuga Sapisuga|4|341A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|104004|129071|8100|10000|||91.60|101.89|0.00|1.79|78512|81541|400|10000|||87.54|107.79|0.00|-2.26|00011328|3|6| +22|2023-10-06T22:04:07.2460000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0008|Kokosaze Lulusaze|200004|53120000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|88047|90216|10000|10000|||84.94|114.44|0.00|-2.15|78512|81541|400|10000|||87.54|107.79|0.00|-2.26|00011328|4|6| +22|2023-10-06T22:04:07.2460000-07:00|10FF0004|Buhojaqe Zijaqe|DFF|Indomitability|10FF0007|Kehabiqo Febiqo|200004|53AC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||92.91|98.53|0.00|-2.07|78512|81541|400|10000|||87.54|107.79|0.00|-2.26|00011328|5|6| +38|2023-10-06T22:04:07.2470000-07:00|10FF000B|Pusu Rosu|005A5A18|28930|79209|8108|10000|0||95.09|91.90|0.00|-1.46|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:07.2470000-07:00|750|Temperance|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:04:06.8460000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:06.8460000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:04:07.2910000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|EEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3051159|40478540|10000|10000|||100.00|80.10|0.00|0.00|104004|129071|8100|10000|||91.60|101.89|0.00|1.79|00011329|0|1| +31|2023-10-06T22:04:07.2910000-07:00|10FF0001||||| +37|2023-10-06T22:04:07.3350000-07:00|40021585|Zeromus|00011324|3024592||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:07.3350000-07:00|40021585|Zeromus|00011325|3006854||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:07.3350000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|716003|19030000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|3051159|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||92.33|98.23|0.00|-2.07|0001132A|0|1| +37|2023-10-06T22:04:07.4690000-07:00|10FF000B|Pusu Rosu|00011325|41708|79209|8608|10000|0||94.06|92.74|0.00|-1.15|1801|0|0|0| +37|2023-10-06T22:04:07.5140000-07:00|10FF000B|Pusu Rosu|00011327|0|79209|0|10000|0||93.81|93.36|0.00|-0.91|1800|0|0|04|02000000|0|0|||||||||||||| +38|2023-10-06T22:04:07.5140000-07:00|10FF000B|Pusu Rosu|005A5A18|0|79209|0|10000|0||93.81|93.36|0.00|-0.91|0|0|0||||||| +30|2023-10-06T22:04:07.5140000-07:00|4B4|Lucid Dreaming|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +30|2023-10-06T22:04:07.5140000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000B|Pusu Rosu|00|79209|81809| +30|2023-10-06T22:04:07.5140000-07:00|6FD|Vulnerability Up|0.00|400215A1|Zeromus|10FF000B|Pusu Rosu|02|79209|44| +30|2023-10-06T22:04:07.5140000-07:00|13B|Whispering Dawn|0.00|400219AD|Ruby Carbuncle|10FF000B|Pusu Rosu|00|79209|77430| +30|2023-10-06T22:04:07.5140000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +30|2023-10-06T22:04:07.5140000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:04:07.0740000-07:00|Change|10FF0003||||||||| +37|2023-10-06T22:04:07.5570000-07:00|10FF0007|Kehabiqo Febiqo|00011327|100673|129844|10000|10000|0||91.73|97.90|0.00|-2.07|1501|0|0|02|010006FD|01|42700000|||||| +26|2023-10-06T22:04:07.5570000-07:00|6FD|Vulnerability Up|60.00|400215A1|Zeromus|10FF0007|Kehabiqo Febiqo|01|129844|44| +26|2023-10-06T22:04:07.5570000-07:00|108|Flesh Wound|15.00|400215A1|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +21|2023-10-06T22:04:07.5570000-07:00|40021599|Zeromus|8B7C|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.40|0001132B|0|0| +261|2023-10-06T22:04:07.0740000-07:00|Change|40021599||||||||||||| +261|2023-10-06T22:04:07.1890000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:04:07.6020000-07:00|10FF0007|Kehabiqo Febiqo|00011325|112960||||||91.73|97.90|0.00|-2.07| +37|2023-10-06T22:04:07.7350000-07:00|40021585|Zeromus|00011322|2953777||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:07.7350000-07:00|10FF0001|Sesuga Sapisuga|00011325|116964||||||90.53|101.18|0.00|2.80| +21|2023-10-06T22:04:07.7350000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22420000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|3006854|40478540|10000|10000|||100.00|80.10|0.00|0.00|112960|129844|10000|10000|||91.63|97.84|0.00|-2.08|0001132C|0|1| +21|2023-10-06T22:04:07.7800000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|48C20000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|112960|129844|10000|10000|||91.54|97.79|-0.02|2.69|2953777|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001132D|0|1| +37|2023-10-06T22:04:07.8250000-07:00|40021585|Zeromus|00011329|2949959||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:07.8250000-07:00|10FF0001|Sesuga Sapisuga|118254|129071|8300|10000|||89.78|100.83|0.00|2.80| +21|2023-10-06T22:04:07.8250000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|712003|44A50000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2953777|40478540|10000|10000|||100.00|80.10|0.00|0.00|116964|129071|8100|10000|||89.78|100.83|0.00|2.80|0001132E|0|1| +38|2023-10-06T22:04:07.8250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118254|129071|8300|10000|0||89.78|100.83|0.00|2.80|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:07.8250000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:04:07.3780000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:07.8700000-07:00|40021585|Zeromus|0001132A|2943556||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:07.8700000-07:00|10FF0004|Buhojaqe Zijaqe|00011328|81541||||||85.67|104.27|0.00|-2.69| +21|2023-10-06T22:04:07.9140000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|720003|3FEA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2949959|40478540|10000|10000|||100.00|80.10|0.00|0.00|25553|73814|4550|10000|||85.19|105.01|0.00|-2.95|0001132F|0|1| +37|2023-10-06T22:04:08.0040000-07:00|10FF0003|Gegehi Gehi|00011328|46527||||||85.09|104.87|0.00|2.58| +261|2023-10-06T22:04:07.5620000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:04:08.0490000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|15720000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|46527|73814|4550|10000|||85.00|104.76|0.00|2.58|73956|77430|10000|10000|||103.41|100.48|0.00|-2.59|00011330|0|1| +24|2023-10-06T22:04:08.0490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|177B|88949|90216|10000|10000|||83.76|114.09|0.00|-1.86|400215A1|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:08.0490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|177F|81541|81541|400|10000|||85.38|103.26|0.00|-2.77|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:08.0490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||83.76|114.09|0.00|-1.86|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:04:08.0490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|950|10000|0||85.38|103.26|0.00|-2.77|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:08.2720000-07:00|10FF0001|Sesuga Sapisuga|00011328|129071||||||88.27|97.89|0.00|2.78| +21|2023-10-06T22:04:08.2720000-07:00|4002159F|Zeromus|8B7D|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.70|00011331|0|0| +21|2023-10-06T22:04:08.2720000-07:00|10FF000A|Dukaro Nezikaro|8D3|Ten|10FF000A|Dukaro Nezikaro|100000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||85.75|103.19|0.00|2.65|83502|83502|10000|10000|||85.75|103.19|0.00|2.65|00011332|0|1| +38|2023-10-06T22:04:08.2720000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||85.75|103.19|0.00|2.65|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:08.2720000-07:00|1F0|Mudra|6.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:04:07.7960000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T22:04:07.7960000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:04:08.3610000-07:00|40021585|Zeromus|0001132C|2934786||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:08.3610000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||86.25|102.39|0.00|2.37| +24|2023-10-06T22:04:08.3610000-07:00|10FF0003|Gegehi Gehi|DoT|0|270A|46527|73814|4550|10000|||84.85|104.55|-0.01|2.58|10FF0006|Wowobora Gogobora|FFFFFFFF|0|81809|0|10000|||100.01|94.02|0.00|0.00| +24|2023-10-06T22:04:08.3610000-07:00|10FF0003|Gegehi Gehi|HoT|0|2441|46527|73814|4550|10000|||84.85|104.55|-0.01|2.58|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:08.3610000-07:00|10FF0003|Gegehi Gehi|005A5A23|45814|73814|4550|10000|0||84.85|104.55|-0.01|2.58|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T22:04:08.4500000-07:00|10FF0007|Kehabiqo Febiqo|114258|129844|10000|10000|||91.45|97.73|0.00|2.69| +24|2023-10-06T22:04:08.4500000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1675|83502|83502|10000|10000|||86.58|101.99|0.00|2.37|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:08.4500000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||86.58|101.99|0.00|2.37|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:08.5400000-07:00|10FF0007|Kehabiqo Febiqo|00011328|129844||||||91.45|97.73|-0.02|2.70| +24|2023-10-06T22:04:08.5400000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|151B|114258|129844|10000|10000|||91.45|97.73|-0.02|2.70|10FF0006|Wowobora Gogobora|FFFFFFFF|0|81809|0|10000|||100.01|94.02|0.00|0.00| +24|2023-10-06T22:04:08.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|23C5|114258|129844|10000|10000|||91.45|97.73|-0.02|2.70|10FF0006|Wowobora Gogobora|0|0|81809|0|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:08.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||91.45|97.73|-0.02|2.70|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:08.5840000-07:00|10FF0007|Kehabiqo Febiqo|0001132D|111218||||||91.45|97.73|-0.02|2.70| +24|2023-10-06T22:04:08.6290000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|141E|129071|129071|8300|10000|||88.18|97.85|0.00|2.78|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8300|10000|||88.18|97.85|0.00|2.78| +24|2023-10-06T22:04:08.6290000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|16E0|129071|129071|8300|10000|||88.18|97.85|0.00|2.78|10FF0001|Sesuga Sapisuga|0|129071|129071|8300|10000|||88.18|97.85|0.00|2.78| +38|2023-10-06T22:04:08.6290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8300|10000|0||88.18|97.85|0.00|2.78|0|0|0|||||||||||||||||||||||||||| +20|2023-10-06T22:04:08.7190000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|84.79|104.48|0.00|2.58| +261|2023-10-06T22:04:08.3310000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T22:04:08.7630000-07:00|10FF000A|Dukaro Nezikaro|4976|Chi|10FF000A|Dukaro Nezikaro|900000E|1F08000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||87.67|100.93|0.00|2.37|83502|83502|10000|10000|||87.67|100.93|0.00|2.37|00011333|0|1| +38|2023-10-06T22:04:08.7630000-07:00|10FF0003|Gegehi Gehi|005A5A23|45814|73814|4550|10000|0||84.79|104.48|0.00|2.58|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:08.7630000-07:00|31|Medicated|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|2958|73814|73814| +38|2023-10-06T22:04:08.7630000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.67|100.93|0.00|2.37|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:08.7630000-07:00|1F0|Mudra|5.51|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +37|2023-10-06T22:04:08.8510000-07:00|10FF0003|Gegehi Gehi|00011330|51304||||||84.79|104.48|0.00|2.58| +261|2023-10-06T22:04:08.4240000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:04:08.9850000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|9D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2934786|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|950|10000|||87.30|98.17|0.00|2.68|00011334|0|1| +21|2023-10-06T22:04:09.0300000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|722003|9A630000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|2934786|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.76|114.09|0.00|-1.86|00011335|0|1| +37|2023-10-06T22:04:09.0740000-07:00|40021585|Zeromus|0001132F|2918424||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:09.1190000-07:00|40021585|Zeromus|0001132E|2900851||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:09.1190000-07:00|10FF0001|Sesuga Sapisuga|0001132E|129071|129071|8700|10000|0||88.18|97.85|0.00|2.78|1300|0|0|0| +39|2023-10-06T22:04:09.1190000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1150|10000|||87.75|97.57|0.00|2.48| +21|2023-10-06T22:04:09.1190000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|B8A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2934786|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.76|114.09|0.00|2.70|00011336|0|1| +38|2023-10-06T22:04:09.1190000-07:00|40021585|Zeromus|005A5A00|2900851|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:09.1190000-07:00|4C5|Chain Stratagem|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +261|2023-10-06T22:04:08.6380000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:04:09.2090000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-1.36| +20|2023-10-06T22:04:09.2990000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|88.43|97.06|-0.02|2.33| +21|2023-10-06T22:04:09.2990000-07:00|10FF000A|Dukaro Nezikaro|8DB|Raiton|40021585|Zeromus|554003|649A0000|100000F|A828000|0|0|0|0|0|0|0|0|0|0|0|0|2900851|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||89.25|99.34|0.00|2.37|00011337|0|1| +38|2023-10-06T22:04:09.2990000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||89.25|99.34|0.00|2.37|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:09.2990000-07:00|1F0|Mudra|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|09|83502|83502| +26|2023-10-06T22:04:09.2990000-07:00|A82|Raiju Ready|30.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +21|2023-10-06T22:04:09.3870000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9880000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2900851|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||89.25|99.34|0.00|2.37|00011338|0|1| +39|2023-10-06T22:04:09.4770000-07:00|10FF0003|Gegehi Gehi|52042|73814|4750|10000|||84.79|104.48|0.00|2.58| +37|2023-10-06T22:04:09.5220000-07:00|40021585|Zeromus|00011334|2900694||||||100.00|80.10|0.00|0.00| +25|2023-10-06T22:04:09.5220000-07:00|10FF000B|Pusu Rosu|400215A1|Zeromus| +21|2023-10-06T22:04:09.5670000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|71A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2900851|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||88.35|97.50|0.00|2.69|00011339|0|1| +31|2023-10-06T22:04:09.5670000-07:00|10FF0001||||| +24|2023-10-06T22:04:09.6570000-07:00|40021585|Zeromus|DoT|0|1E65|2900694|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000A|Dukaro Nezikaro|FFFFFFFF|83502|83502|10000|10000|||89.59|98.98|0.00|2.49| +38|2023-10-06T22:04:09.6570000-07:00|40021585|Zeromus|005A5A00|2892913|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:04:09.3080000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:04:09.3080000-07:00|Change|10FF0003||||| +21|2023-10-06T22:04:09.7900000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|726003|2C290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2892913|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||83.77|114.07|0.00|2.71|0001133A|0|1| +37|2023-10-06T22:04:09.8800000-07:00|40021585|Zeromus|00011336|2889959||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:09.4960000-07:00|Change|10FF0004||||||||||||||||||||||| +37|2023-10-06T22:04:09.9250000-07:00|40021585|Zeromus|00011338|2887519||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:09.9250000-07:00|10FF000A|Dukaro Nezikaro|00011338|83502|83502|10000|10000|0||89.74|98.84|0.00|2.42|1E00|0|0|01|05000A82|01|C1F00000|| +38|2023-10-06T22:04:09.9250000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|16361|81809|2000|10000|0||100.01|94.02|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:04:09.9250000-07:00|94|Raise|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|08|81809|79209| +26|2023-10-06T22:04:09.9250000-07:00|2B|Weakness|100.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +26|2023-10-06T22:04:09.9250000-07:00|1A2|Transcendent|5.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T22:04:09.4960000-07:00|Change|10FF0006||||| +37|2023-10-06T22:04:10.0140000-07:00|40021585|Zeromus|00011337|2861765||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:10.0140000-07:00|10FF000A|Dukaro Nezikaro|00011337|83502|83502|10000|10000|0||89.78|98.82|0.00|2.41|1E00|0|0|01|05000A82|01|41F00000|| +38|2023-10-06T22:04:10.0140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||89.78|98.82|0.00|2.41|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:10.1030000-07:00|40021585|Zeromus|00011339|2859947||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:10.1490000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||84.39|112.63|0.00|2.71| +21|2023-10-06T22:04:10.1490000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|361E0000|143E|340000|200004|27D78000|11B|2A8000|0|0|0|0|0|0|0|0|2861765|40478540|10000|10000|||100.00|80.10|0.00|0.00|111218|129844|10000|10000|||94.71|98.41|0.00|2.94|0001133B|0|1| +21|2023-10-06T22:04:10.1490000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|154003|43E80000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|2861765|40478540|10000|10000|||100.00|80.10|0.00|0.00|52042|73814|4750|10000|||84.79|104.48|0.00|2.58|0001133C|0|1| +38|2023-10-06T22:04:10.1490000-07:00|10FF0003|Gegehi Gehi|005A5A23|52042|73814|4550|10000|0||84.79|104.48|0.00|2.58|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:10.1490000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:04:10.1490000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:04:10.1930000-07:00|40021585|Zeromus|00011335|2820424||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:10.3270000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|154E0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|2820424|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8700|10000|||88.45|97.31|0.00|2.55|0001133D|0|1| +38|2023-10-06T22:04:10.4160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||90.47|98.61|0.00|2.37|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:10.4160000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +38|2023-10-06T22:04:10.4620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111218|129844|10000|10000|0||94.71|98.41|0.00|2.86|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:10.4620000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:10.4620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||85.01|111.23|0.00|2.72|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:10.4620000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:10.4620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8700|10000|0||88.45|97.31|0.00|2.55|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:10.4620000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:04:10.4620000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1150|10000|0||88.61|96.97|0.00|2.05|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:10.4620000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:10.4620000-07:00|10FF0003|Gegehi Gehi|005A5A23|52042|73814|4550|10000|0||84.79|104.48|0.00|2.58|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:10.4620000-07:00|751|Temperance|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +21|2023-10-06T22:04:10.5510000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|722003|22620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2820424|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||85.29|110.66|0.00|2.71|0001133E|0|1| +23|2023-10-06T22:04:10.5940000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|Cancelled| +37|2023-10-06T22:04:10.5940000-07:00|40021585|Zeromus|0001133A|2809119||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:10.7280000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BB30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2809119|40478540|10000|10000|||100.00|80.10|0.00|0.00|111218|129844|10000|10000|||94.77|98.41|0.00|2.92|0001133F|0|1| +261|2023-10-06T22:04:10.3490000-07:00|Change|10FF0003||||||||||||||||||||||| +39|2023-10-06T22:04:10.8180000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8900|10000|||88.45|97.31|0.00|2.55| +261|2023-10-06T22:04:10.4440000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:04:10.8180000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|50440000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|111218|129844|10000|10000|||94.99|98.29|-0.02|2.93|2809119|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011340|0|1| +21|2023-10-06T22:04:10.8180000-07:00|10FF000A|Dukaro Nezikaro|64B2|Fleeting Raiju|40021585|Zeromus|550003|442F0000|53E|9F8000|0|0|0|0|0|0|0|0|0|0|0|0|2809119|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||92.00|99.25|0.00|2.37|00011341|0|1| +38|2023-10-06T22:04:10.8180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||92.00|99.25|0.00|2.37|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:10.8180000-07:00|A82|Raiju Ready|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|01|83502|83502| +261|2023-10-06T22:04:10.4440000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T22:04:10.9530000-07:00|40021585|Zeromus|0001133D|2803665||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:10.9530000-07:00|40021585|Zeromus|0001133C|2786281||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:10.5390000-07:00|Change|10FF0008||||||||| +24|2023-10-06T22:04:11.0870000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|16B0|90216|90216|10000|10000|||85.97|109.47|0.00|2.68|400215A1|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:11.0870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|15E9|81541|81541|1150|10000|||89.01|97.00|0.00|1.62|10FF0006|Wowobora Gogobora|0|16361|81809|2000|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:11.0870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||85.97|109.47|0.00|2.68|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:04:11.0870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1700|10000|0||89.01|97.00|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T22:04:11.1320000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|550003|388A0000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|2786281|40478540|10000|10000|||100.00|80.10|0.00|0.00|52042|73814|4550|10000|||86.50|104.01|0.00|1.94|00011342|0|1| +38|2023-10-06T22:04:11.1320000-07:00|10FF0003|Gegehi Gehi|005A5A23|52042|73814|4250|10000|0||86.50|104.01|0.00|1.94|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:11.1320000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:04:11.1760000-07:00|40021585|Zeromus|0001133E|2777479||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:11.1760000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|F270000|13450E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|2786281|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||88.45|97.31|0.00|2.55|00011343|0|1| +37|2023-10-06T22:04:11.2650000-07:00|40021585|Zeromus|0001133F|2774484||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:11.2650000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|153D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|16361|81809|2000|10000|||100.01|94.02|0.00|0.00|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98|00011344|0|1| +21|2023-10-06T22:04:11.3100000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2EA90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2777479|40478540|10000|10000|||100.00|80.10|0.00|0.00|111218|129844|10000|10000|||96.16|97.47|0.00|2.94|00011345|0|1| +39|2023-10-06T22:04:11.3540000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||92.45|99.47|-0.01|2.77| +20|2023-10-06T22:04:11.3540000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|1.491|100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:11.3540000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|16361|81809|2000|10000|0||100.01|94.02|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:04:11.3540000-07:00|1A2|Transcendent|0.00|E0000000||10FF0006|Wowobora Gogobora|00|81809|| +261|2023-10-06T22:04:10.9830000-07:00|Change|10FF0006||||||||||||| +24|2023-10-06T22:04:11.3990000-07:00|10FF0003|Gegehi Gehi|DoT|0|278A|52042|73814|4250|10000|||87.32|103.78|0.00|2.65|10FF0006|Wowobora Gogobora|FFFFFFFF|16361|81809|2000|10000|||100.01|94.02|0.00|0.00| +24|2023-10-06T22:04:11.3990000-07:00|10FF0003|Gegehi Gehi|HoT|0|175B|52042|73814|4250|10000|||87.32|103.78|0.00|2.65|10FF0006|Wowobora Gogobora|0|16361|81809|2000|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:11.3990000-07:00|10FF0003|Gegehi Gehi|005A5A23|47899|73814|4250|10000|0||87.32|103.78|0.00|2.65|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T22:04:11.4440000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|169E|83502|83502|10000|10000|||92.47|99.48|0.00|2.68|10FF0006|Wowobora Gogobora|0|16361|81809|2000|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:11.4440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||92.47|99.48|0.00|2.68|0|0|0|||||||||||||||||||||||||||||||||| +39|2023-10-06T22:04:11.4880000-07:00|10FF0007|Kehabiqo Febiqo|112516|129844|10000|10000|||96.30|97.37|0.00|2.93| +37|2023-10-06T22:04:11.5790000-07:00|40021585|Zeromus|00011341|2757029||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:11.5790000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|1639|112516|129844|10000|10000|||96.30|97.37|0.00|2.93|10FF0006|Wowobora Gogobora|FFFFFFFF|16361|81809|2000|10000|||100.01|94.02|0.00|0.00| +24|2023-10-06T22:04:11.5790000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1727|112516|129844|10000|10000|||96.30|97.37|0.00|2.93|10FF0006|Wowobora Gogobora|0|16361|81809|2000|10000|||100.01|94.02|0.00|0.00| +21|2023-10-06T22:04:11.5790000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|720003|63B70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2774484|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||88.31|106.97|0.00|2.52|00011346|0|1| +21|2023-10-06T22:04:11.5790000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|9690000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2774484|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||92.48|99.49|0.00|2.58|00011347|0|1| +38|2023-10-06T22:04:11.5790000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112754|129844|10000|10000|0||96.30|97.37|0.00|2.93|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:11.6220000-07:00|10FF0007|Kehabiqo Febiqo|00011340|92206||||||96.30|97.37|0.00|2.93| +261|2023-10-06T22:04:11.3090000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:04:11.6670000-07:00|40021585|Zeromus|0001133B|2743175||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:11.6670000-07:00|10FF0007|Kehabiqo Febiqo|0001133B|102405||||||96.30|97.37|0.00|2.93| +24|2023-10-06T22:04:11.6670000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|1245|129071|129071|8900|10000|||88.45|97.31|0.00|2.55|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|8900|10000|||88.45|97.31|0.00|2.55| +24|2023-10-06T22:04:11.6670000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1753|129071|129071|8900|10000|||88.45|97.31|0.00|2.55|10FF0001|Sesuga Sapisuga|0|129071|129071|8900|10000|||88.45|97.31|0.00|2.55| +38|2023-10-06T22:04:11.6670000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||88.45|97.31|0.00|2.55|0|0|0|||||||||||||||||||||||||||| +22|2023-10-06T22:04:11.7120000-07:00|10FF0004|Buhojaqe Zijaqe|BC|Sacred Soil|10FF0004|Buhojaqe Zijaqe|F420F|7988000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1700|10000|||93.40|97.05|-0.02|1.58|81541|81541|1700|10000|||93.40|97.05|-0.02|1.58|00011348|0|1| +38|2023-10-06T22:04:11.7120000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1700|10000|0||93.40|97.05|-0.02|1.58|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:11.7120000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +261|2023-10-06T22:04:11.4050000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:11.4050000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:04:11.8010000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9AE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2743175|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||89.42|105.70|0.00|2.64|00011349|0|1| +21|2023-10-06T22:04:11.8460000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|77C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2743175|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||88.45|97.31|0.00|2.55|0001134A|0|1| +31|2023-10-06T22:04:11.8460000-07:00|10FF0001||||| +37|2023-10-06T22:04:11.8910000-07:00|40021585|Zeromus|00011342|2728701||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:11.8910000-07:00|10FF0001|Sesuga Sapisuga|404D|Intervene|40021585|Zeromus|710003|10EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2743175|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||88.45|97.31|0.00|2.55|0001134B|0|1| +37|2023-10-06T22:04:11.9350000-07:00|40021585|Zeromus|00011345|2716756||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:12.0690000-07:00|10FF0006|Wowobora Gogobora|00011344|21798||||||100.01|94.02|0.00|0.00| +37|2023-10-06T22:04:12.1140000-07:00|40021585|Zeromus|00011347|2714347||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:12.1140000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1900|10000|||96.63|97.23|0.00|1.66| +37|2023-10-06T22:04:12.2030000-07:00|40021585|Zeromus|00011343|2710468|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|F8|0|41700000|| +26|2023-10-06T22:04:12.2030000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +39|2023-10-06T22:04:12.2030000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.66| +21|2023-10-06T22:04:12.2480000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|726003|26A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2710468|40478540|10000|10000|||100.00|80.10|0.00|0.00|47899|73814|4250|10000|||92.04|102.51|0.00|1.87|0001134C|0|1| +24|2023-10-06T22:04:12.3390000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D62|21798|81809|2000|10000|||100.01|94.02|0.00|0.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||96.89|97.22|0.00|1.63| +24|2023-10-06T22:04:12.3390000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D64|102405|129844|10000|10000|||98.00|96.37|0.00|2.94|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||96.89|97.22|0.00|1.63| +24|2023-10-06T22:04:12.3390000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D60|81541|81541|1900|10000|||96.89|97.22|0.00|1.63|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||96.89|97.22|0.00|1.63| +24|2023-10-06T22:04:12.3390000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|15AC|83502|83502|10000|10000|||93.43|99.84|0.00|2.38|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||96.89|97.22|0.00|1.63| +24|2023-10-06T22:04:12.3390000-07:00|10FF0003|Gegehi Gehi|HoT|798|D5E|47899|73814|4250|10000|||92.04|102.51|0.00|1.87|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||96.89|97.22|0.00|1.63| +24|2023-10-06T22:04:12.3390000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CF6|90216|90216|10000|10000|||91.65|103.37|0.00|2.41|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||96.89|97.22|0.00|1.63| +24|2023-10-06T22:04:12.3390000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D7A|129071|129071|8900|10000|||88.57|97.12|0.00|2.55|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||96.89|97.22|0.00|1.63| +37|2023-10-06T22:04:12.3390000-07:00|10FF0004|Buhojaqe Zijaqe|00011348|81541|81541|1900|10000|0||96.89|97.22|0.00|1.63|1C00|0|0|02|04000798|0|41700000|||||| +26|2023-10-06T22:04:12.3390000-07:00|798|Sacred Soil|15.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +26|2023-10-06T22:04:12.3390000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T22:04:12.3390000-07:00|10FF0006|Wowobora Gogobora|64C6|Summon Carbuncle|10FF0006|Wowobora Gogobora|3E|9D8000|1B|64C68000|0|0|0|0|0|0|0|0|0|0|0|0|21798|81809|2000|10000|||100.01|94.02|0.00|0.00|21798|81809|2000|10000|||100.01|94.02|0.00|0.00|0001134D|0|1| +38|2023-10-06T22:04:12.3390000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105833|129844|10000|10000|0||98.00|96.37|0.00|2.94|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:12.3390000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:04:12.3390000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||91.65|103.37|0.00|2.41|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:12.3390000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:12.3390000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|25224|81809|1600|10000|0||100.01|94.02|0.00|0.00|0|0|0|||||||||| +26|2023-10-06T22:04:12.3390000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:04:12.3390000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||88.57|97.12|0.00|2.55|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:12.3390000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:04:12.3390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1900|10000|0||96.89|97.22|0.00|1.63|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:12.3390000-07:00|10FF0003|Gegehi Gehi|005A5A23|51321|73814|4250|10000|0||92.04|102.51|0.00|1.87|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:12.3390000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:04:12.3390000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||93.43|99.84|0.00|2.38|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:12.3390000-07:00|12B|Sacred Soil|4.95|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T22:04:11.9440000-07:00|Change|10FF0006||||||||||||||| +261|2023-10-06T22:04:12.0560000-07:00|Change|10FF0007||||||||| +38|2023-10-06T22:04:12.3810000-07:00|40021A5E||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:04:12.3830000-07:00|40021585|Zeromus|0001134A|2708552||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:12.3830000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|720000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2710468|40478540|10000|10000|||100.00|80.10|0.00|0.00|25224|81809|1600|10000|||100.01|94.02|0.00|0.00|0001134E|0|1| +38|2023-10-06T22:04:12.3830000-07:00|40021A5E||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:04:12.4710000-07:00|40021585|Zeromus|0001134B|2704222||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:12.4710000-07:00|10FF0003|Gegehi Gehi|52059|73814|4450|10000|||92.42|102.42|0.00|2.86| +37|2023-10-06T22:04:12.5610000-07:00|40021585|Zeromus|00011349|2701744||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:12.6050000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|17E80000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|2704222|40478540|10000|10000|||100.00|80.10|0.00|0.00|105833|129844|10000|10000|||98.88|95.87|0.00|2.94|0001134F|0|1| +38|2023-10-06T22:04:12.6050000-07:00|40021585|Zeromus|005A5A00|2701744|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T22:04:12.6050000-07:00|27E|Vulnerability Up|0.00|10FF000A|Dukaro Nezikaro|40021585|Zeromus|00|40478540|83502| +261|2023-10-06T22:04:12.2660000-07:00|Change|10FF0008||||||||| +24|2023-10-06T22:04:12.6490000-07:00|40021585|Zeromus|DoT|0|20A3|2701744|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0004|Buhojaqe Zijaqe|FFFFFFFF|81541|81541|1900|10000|||97.15|97.16|0.00|1.62| +261|2023-10-06T22:04:12.2660000-07:00|Add|40021A5F||||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:12.6490000-07:00|40021585|Zeromus|005A5A00|2693389|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +03|2023-10-06T22:04:12.2660000-07:00|40021A5E|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||100.01|95.77|0.00|3.14| +261|2023-10-06T22:04:12.2660000-07:00|Add|40021A5E||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:12.2660000-07:00|Change|40021A5E||| +37|2023-10-06T22:04:12.7380000-07:00|40021585|Zeromus|00011346|2667862||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:12.3590000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:04:12.3590000-07:00|Change|10FF0003||||||||||| +39|2023-10-06T22:04:12.7820000-07:00|10FF0006|Wowobora Gogobora|26042|81809|1800|10000|||100.01|94.02|0.00|0.00| +21|2023-10-06T22:04:12.7820000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1F3A0000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|2667862|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8900|10000|||90.51|97.77|0.00|2.04|00011350|0|1| +37|2023-10-06T22:04:12.8720000-07:00|40021585|Zeromus|0001134C|2657974||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:12.8720000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2667862|40478540|10000|10000|||100.00|80.10|0.00|0.00|52059|73814|4450|10000|||93.47|99.53|0.00|2.86|00011351|0|1| +261|2023-10-06T22:04:12.5450000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:04:12.9170000-07:00|40021585|Zeromus|0001134E|2657860||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:12.9620000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|1ADA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2657860|40478540|10000|10000|||100.00|80.10|0.00|0.00|52059|73814|4450|10000|||93.76|99.60|0.00|2.59|00011352|0|1| +21|2023-10-06T22:04:13.0070000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42710003|31950000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|2657860|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.50|100.39|-0.02|2.37|00011353|0|1| +38|2023-10-06T22:04:13.0970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8900|10000|0||93.02|98.42|0.00|2.18|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:13.0970000-07:00|32|Sprint|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|1E|129071|129071| +261|2023-10-06T22:04:12.7730000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:13.1410000-07:00|40021585|Zeromus|0001134F|2651740||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:13.1410000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||96.92|101.32|0.00|1.92| +261|2023-10-06T22:04:12.8860000-07:00|Change|10FF0004||||||| +261|2023-10-06T22:04:13.0000000-07:00|Change|10FF0006||| +21|2023-10-06T22:04:13.3200000-07:00|10FF0004|Buhojaqe Zijaqe|1D89|Swiftcast|10FF0004|Buhojaqe Zijaqe|E|A70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1900|10000|||97.18|97.15|0.00|1.62|81541|81541|1900|10000|||97.18|97.15|0.00|1.62|00011354|0|1| +38|2023-10-06T22:04:13.3200000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1900|10000|0||97.18|97.15|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:13.3200000-07:00|A7|Swiftcast|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:04:13.1120000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:13.1120000-07:00|Change|40021A5E||| +37|2023-10-06T22:04:13.4090000-07:00|40021585|Zeromus|00011351|2651703||||||100.00|80.10|0.00|0.00| +34|2023-10-06T22:04:13.4090000-07:00|40021A5E|Carbuncle|40021A5E|Carbuncle|01| +37|2023-10-06T22:04:13.4540000-07:00|10FF0004|Buhojaqe Zijaqe|00011354|81541|81541|1900|10000|0||97.18|97.15|0.00|1.62|1C00|0|0|01|070000A7|0|41200000|| +21|2023-10-06T22:04:13.4540000-07:00|10FF0007|Kehabiqo Febiqo|4050|Nascent Flash|10FF0003|Gegehi Gehi|6400F60E|7420000|F60E|A770000|870E|A780000|90DB000F|7418000|0|0|0|0|0|0|0|0|52059|73814|4450|10000|||94.90|99.63|0.00|2.92|105833|129844|10000|10000|||99.05|96.09|0.00|3.08|00011355|0|1| +38|2023-10-06T22:04:13.4540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1900|10000|0||97.18|97.15|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:13.5440000-07:00|40021585|Zeromus|00011350|2643709||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:13.5440000-07:00|10FF0001|Sesuga Sapisuga|00011350|129071|129071|9900|10000|0||95.66|98.62|0.00|2.37|1300|0|0|0| +37|2023-10-06T22:04:13.5440000-07:00|40021585|Zeromus|00011352|2636835||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:13.6340000-07:00|40021585|Zeromus|00011353|2624142||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:13.7220000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|96.88|100.03|0.00|2.44| +261|2023-10-06T22:04:13.3950000-07:00|Change|10FF0003||||||||||||||||||||| +21|2023-10-06T22:04:13.7670000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8B90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2624142|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.50|100.39|0.00|2.88|00011356|0|1| +39|2023-10-06T22:04:13.8120000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||97.56|98.47|0.00|2.50| +21|2023-10-06T22:04:13.8570000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|46A00000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|105833|129844|10000|10000|||99.05|96.09|0.00|-1.93|2624142|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011357|0|1| +261|2023-10-06T22:04:13.5880000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T22:04:14.0810000-07:00|10FF0003|Gegehi Gehi|00011355|52059|73814|4450|10000|20||98.25|100.48|0.00|2.72|2300|0|0|03|02000742|64|41000000|||||||||| +26|2023-10-06T22:04:14.0810000-07:00|742|Nascent Glint|8.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|64|73814|129844| +26|2023-10-06T22:04:14.0810000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +26|2023-10-06T22:04:14.0810000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +37|2023-10-06T22:04:14.0810000-07:00|10FF0007|Kehabiqo Febiqo|00011355|105833|129844|10000|10000|0||99.05|96.09|0.00|-1.27|1500|0|0|01|08000741|0190|41000000|| +26|2023-10-06T22:04:14.0810000-07:00|741|Nascent Flash|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +24|2023-10-06T22:04:14.0810000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|159F|90216|90216|10000|10000|||99.14|99.26|-0.02|2.85|400215A1|Zeromus|0|44|44|0|10000|||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:14.0810000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D9B|26042|81809|1800|10000|||100.01|94.02|0.00|0.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||97.18|97.15|0.00|1.62| +24|2023-10-06T22:04:14.0810000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D45|105833|129844|10000|10000|||99.05|96.09|0.00|-1.27|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||97.18|97.15|0.00|1.62| +24|2023-10-06T22:04:14.0810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D81|81541|81541|1900|10000|||97.18|97.15|0.00|1.62|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||97.18|97.15|0.00|1.62| +24|2023-10-06T22:04:14.0810000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|CE7|90216|90216|10000|10000|||99.14|99.26|-0.02|2.85|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||97.18|97.15|0.00|1.62| +24|2023-10-06T22:04:14.0810000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D7F|129071|129071|10000|10000|||98.80|98.51|0.00|2.62|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||97.18|97.15|0.00|1.62| +24|2023-10-06T22:04:14.0810000-07:00|10FF0003|Gegehi Gehi|HoT|798|D04|52059|73814|4450|10000|||98.25|100.48|0.00|2.72|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||97.18|97.15|0.00|1.62| +24|2023-10-06T22:04:14.0810000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|15D8|83502|83502|10000|10000|||94.52|100.39|0.00|2.95|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1900|10000|||97.18|97.15|0.00|1.62| +24|2023-10-06T22:04:14.0810000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1672|81541|81541|1900|10000|||97.18|97.15|0.00|1.62|10FF0006|Wowobora Gogobora|0|26042|81809|1800|10000|||100.01|94.02|0.00|0.00| +21|2023-10-06T22:04:14.0810000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3EDA0000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|2624142|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.14|99.26|-0.02|2.85|00011358|0|1| +38|2023-10-06T22:04:14.0810000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|109230|129844|10000|10000|0||99.05|96.09|0.00|-1.27|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:14.0810000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.14|99.26|-0.02|2.85|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:04:14.0810000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|29525|81809|1800|10000|0||100.01|94.02|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:04:14.0810000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||98.80|98.51|0.00|2.62|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:04:14.0810000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2450|10000|0||97.18|97.15|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:14.0810000-07:00|10FF0003|Gegehi Gehi|005A5A23|55391|73814|4450|10000|20||98.25|100.48|0.00|2.72|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:14.0810000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||94.52|100.39|0.00|2.95|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T22:04:14.1260000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|F510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2624142|40478540|10000|10000|||100.00|80.10|0.00|0.00|105833|129844|10000|10000|||99.05|96.09|0.00|-1.27|00011359|0|1| +21|2023-10-06T22:04:14.1260000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|7390000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2624142|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||98.80|98.51|0.00|2.62|0001135A|0|1| +31|2023-10-06T22:04:14.1260000-07:00|10FF0001||||| +38|2023-10-06T22:04:14.1700000-07:00|40021585|Zeromus|005A5A00|2624142|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:04:14.1700000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +261|2023-10-06T22:04:13.8100000-07:00|Change|10FF0004||||| +37|2023-10-06T22:04:14.3030000-07:00|40021585|Zeromus|00011356|2621909||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:14.3480000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||95.41|100.45|0.00|3.04| +24|2023-10-06T22:04:14.3920000-07:00|10FF0003|Gegehi Gehi|DoT|0|0|55391|73814|4450|10000|||98.80|100.66|0.00|3.08|10FF0006|Wowobora Gogobora|FFFFFFFF|29525|81809|1800|10000|||100.01|94.02|0.00|0.00| +24|2023-10-06T22:04:14.3920000-07:00|10FF0003|Gegehi Gehi|HoT|0|15B5|55391|73814|4450|10000|||98.80|100.66|0.00|3.08|10FF0006|Wowobora Gogobora|0|29525|81809|1800|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:14.3920000-07:00|10FF0003|Gegehi Gehi|005A5A23|60948|73814|4450|10000|7||98.80|100.66|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T22:04:14.4360000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|17A8|83502|83502|10000|10000|||95.41|100.45|0.00|3.04|10FF0006|Wowobora Gogobora|0|29525|81809|1800|10000|||100.01|94.02|0.00|0.00| +38|2023-10-06T22:04:14.4360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.41|100.45|0.00|3.04|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T22:04:14.4810000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|14520000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|29525|81809|1800|10000|||100.01|94.02|0.00|0.00|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98|0001135B|0|1| +39|2023-10-06T22:04:14.4810000-07:00|10FF0007|Kehabiqo Febiqo|110528|129844|10000|10000|||99.05|96.09|0.00|-0.50| +21|2023-10-06T22:04:14.4810000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|96D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2621909|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.20|99.26|0.00|2.48|0001135C|0|1| +21|2023-10-06T22:04:14.5260000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|710003|2F220000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|2621909|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.48|98.68|0.00|3.11|0001135D|0|1| +24|2023-10-06T22:04:14.5700000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|15C4|109230|129844|10000|10000|||99.05|96.09|0.00|-0.50|10FF0007|Kehabiqo Febiqo|FFFFFFFF|109230|129844|10000|10000|||99.05|96.09|0.00|-0.50| +24|2023-10-06T22:04:14.5700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1629|109230|129844|10000|10000|||99.05|96.09|0.00|-0.50|10FF0007|Kehabiqo Febiqo|0|109230|129844|10000|10000|||99.05|96.09|0.00|-0.50| +38|2023-10-06T22:04:14.5700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110629|129844|10000|10000|0||99.05|96.09|0.00|-0.50|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:04:14.6600000-07:00|40021585|Zeromus|00011359|2617988||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:14.6600000-07:00|10FF0007|Kehabiqo Febiqo|00011357|92549||||||99.05|96.09|0.00|-0.38| +37|2023-10-06T22:04:14.6600000-07:00|40021585|Zeromus|0001135A|2616139||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:14.6600000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|1300|129071|129071|10000|10000|||99.48|98.68|0.00|3.11|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||92.45|93.86|0.00|-1.35| +24|2023-10-06T22:04:14.6600000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1768|129071|129071|10000|10000|||99.48|98.68|0.00|3.11|10FF000B|Pusu Rosu|0|0|79209|0|10000|||92.45|93.86|0.00|-1.35| +38|2023-10-06T22:04:14.6600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.48|98.68|0.00|3.11|0|0|0||||||||||||||||||||||||| +38|2023-10-06T22:04:14.7050000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2450|10000|0||97.18|97.15|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:14.7050000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|03|81541|81541| +21|2023-10-06T22:04:14.7050000-07:00|10FF0004|Buhojaqe Zijaqe|A6|Aetherflow|10FF0004|Buhojaqe Zijaqe|B|7D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2450|10000|||97.18|97.15|0.00|1.62|81541|81541|2450|10000|||97.18|97.15|0.00|1.62|0001135E|0|1| +37|2023-10-06T22:04:14.8840000-07:00|40021585|Zeromus|00011358|2600049||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:14.8840000-07:00|40021585|Zeromus|0001135D|2587983||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:14.8840000-07:00|10FF0006|Wowobora Gogobora|1096|Teraflare|E0000000||4.500|100.01|94.02|0.00|0.00| +261|2023-10-06T22:04:14.4630000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T22:04:15.0620000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|21890000|A3E|340000|200204|3ED18000|11B|258000|0|0|0|0|0|0|0|0|2587983|40478540|10000|10000|||100.00|80.10|0.00|0.00|92549|129844|10000|10000|||99.05|96.09|0.00|-0.06|0001135F|0|1| +39|2023-10-06T22:04:15.1060000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2650|10000|||97.18|97.15|0.00|1.62| +21|2023-10-06T22:04:15.1510000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|756003|5B9E0000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|2587983|40478540|10000|10000|||100.00|80.10|0.00|0.00|60948|73814|4450|10000|||98.80|100.66|0.00|3.08|00011360|0|1| +38|2023-10-06T22:04:15.1510000-07:00|10FF0003|Gegehi Gehi|005A5A23|60948|73814|4250|10000|7||98.80|100.66|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:15.1510000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:04:14.7790000-07:00|Change|10FF0003||||||||||||||||||||||| +39|2023-10-06T22:04:15.1950000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.66| +37|2023-10-06T22:04:15.2400000-07:00|40021585|Zeromus|0001135C|2585570||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:15.2400000-07:00|10FF0004|Buhojaqe Zijaqe|0001135E|81541|81541|4650|10000|0||97.18|97.15|0.00|1.62|1C00|0|0|0| +21|2023-10-06T22:04:15.2400000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41712003|42170000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|2587983|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.95|98.23|0.00|2.85|00011361|0|1| +38|2023-10-06T22:04:15.2400000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.95|98.23|0.00|2.85|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:15.2400000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:04:15.2400000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:04:15.2840000-07:00|10FF0006|Wowobora Gogobora|0001135B|34727||||||99.99|94.01|0.00|-1.60| +21|2023-10-06T22:04:15.2840000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19C80000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|2585570|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||96.54|100.51|0.00|3.08|00011362|0|1| +261|2023-10-06T22:04:14.8940000-07:00|Change|10FF0004||| +21|2023-10-06T22:04:15.3730000-07:00|10FF0004|Buhojaqe Zijaqe|AD|Resurrection|10FF000B|Pusu Rosu|814000E|940000|1B|AD8000|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|0|10000|||92.45|93.86|0.00|-1.35|81541|81541|4650|10000|||97.18|97.15|0.00|1.62|00011363|0|1| +38|2023-10-06T22:04:15.3730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2250|10000|0||97.18|97.15|0.00|1.62|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:15.3730000-07:00|A7|Swiftcast|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +39|2023-10-06T22:04:15.4630000-07:00|10FF0003|Gegehi Gehi|61686|73814|4450|10000|||98.80|100.66|0.00|3.08| +261|2023-10-06T22:04:15.2200000-07:00|Change|10FF0004||||||||||| +24|2023-10-06T22:04:15.6860000-07:00|10FF0003|Gegehi Gehi|HoT|742|3ED1|61686|73814|4450|10000|||98.80|100.66|0.00|3.08|10FF0007|Kehabiqo Febiqo|0|92549|129844|10000|10000|||99.05|96.09|0.00|3.08| +37|2023-10-06T22:04:15.6860000-07:00|40021585|Zeromus|0001135F|2576985||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:15.6860000-07:00|10FF0007|Kehabiqo Febiqo|0001135F|108630||||||99.05|96.09|0.00|3.08| +37|2023-10-06T22:04:15.6860000-07:00|40021585|Zeromus|00011362|2570385||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:15.6860000-07:00|40021585|Zeromus|DoT|0|14DD|2585570|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||92.45|93.86|0.00|-1.35| +38|2023-10-06T22:04:15.6860000-07:00|40021585|Zeromus|005A5A00|2565044|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +38|2023-10-06T22:04:15.6860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4450|10000|7||98.80|100.66|0.00|3.08|0|0|0||||||||||||||||||||||||||||||| +39|2023-10-06T22:04:15.7740000-07:00|10FF0006|Wowobora Gogobora|35545|81809|2000|10000|||99.99|94.01|0.00|-2.23| +261|2023-10-06T22:04:15.3100000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:04:15.8190000-07:00|40021585|Zeromus|00011361|2548125||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:15.8190000-07:00|10FF0001|Sesuga Sapisuga|00011361|129071|129071|10000|10000|0||99.95|98.23|0.00|3.14|1300|0|0|02|0500076E|03|41F00000|||||| +38|2023-10-06T22:04:15.8190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||99.95|98.23|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:04:15.4080000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:04:15.4080000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:04:15.4080000-07:00|Change|400215A0||||||||| +261|2023-10-06T22:04:15.4080000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:04:15.4080000-07:00|Change|400215A2||||||||| +37|2023-10-06T22:04:15.9090000-07:00|40021585|Zeromus|00011360|2524671||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:15.9540000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.75|113.09|0.00|0.00| +20|2023-10-06T22:04:15.9540000-07:00|400215A1|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|86.13|81.69|0.00|0.00| +20|2023-10-06T22:04:15.9540000-07:00|400215A3|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.20|101.05|0.00|0.00| +20|2023-10-06T22:04:15.9540000-07:00|400215A2|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.41|93.94|0.00|0.00| +21|2023-10-06T22:04:15.9540000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8D00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2548125|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||96.54|100.51|0.00|2.97|00011364|0|1| +261|2023-10-06T22:04:15.7010000-07:00|Change|10FF0003||| +39|2023-10-06T22:04:16.1770000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||99.78|99.26|0.00|1.57| +21|2023-10-06T22:04:16.1770000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|45940000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|2524671|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4450|10000|||98.80|100.66|0.00|3.08|00011365|0|1| +38|2023-10-06T22:04:16.1770000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|7||98.80|100.66|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:16.1770000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:04:16.1770000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:04:15.8140000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:04:16.4000000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6C70000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2524671|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.95|98.23|0.00|3.14|00011366|0|1| +31|2023-10-06T22:04:16.4000000-07:00|10FF0001||||| +261|2023-10-06T22:04:15.9280000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:04:15.9280000-07:00|Change|400215A1||||||||||| +261|2023-10-06T22:04:15.9280000-07:00|Change|400215A3||||||||||| +261|2023-10-06T22:04:15.9280000-07:00|Change|400215A2||||||||||| +37|2023-10-06T22:04:16.4900000-07:00|10FF000B|Pusu Rosu|00011363|0|79209|0|10000|0||92.45|93.86|0.00|-1.35|1800|0|0|01|02000094|08|42700000|| +26|2023-10-06T22:04:16.4900000-07:00|94|Raise|60.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|08|79209|81541| +37|2023-10-06T22:04:16.4900000-07:00|40021585|Zeromus|00011364|2522415||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:16.5780000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|720003|1E440000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|2522415|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.78|99.26|0.00|1.61|00011367|0|1| +23|2023-10-06T22:04:16.7550000-07:00|10FF0006|Wowobora Gogobora|1096|Teraflare|Cancelled| +261|2023-10-06T22:04:16.3590000-07:00|Change|10FF0006||||||||||| +39|2023-10-06T22:04:16.8020000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||99.95|98.23|0.00|3.14| +21|2023-10-06T22:04:16.8920000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|47130000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|108630|129844|10000|10000|||99.02|96.06|0.00|-2.81|2522415|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011368|0|1| +261|2023-10-06T22:04:16.4540000-07:00|Change|4002159F||||||||| +261|2023-10-06T22:04:16.4540000-07:00|Change|4002159E||||||||| +261|2023-10-06T22:04:16.4540000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:04:16.4540000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:04:16.4540000-07:00|Change|4002159B||||||||| +37|2023-10-06T22:04:16.9360000-07:00|40021585|Zeromus|00011366|2520680||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:16.9360000-07:00|40021585|Zeromus|00011365|2502868||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:16.9360000-07:00|10FF0003|Gegehi Gehi|00011365|73814|73814|4150|10000|7||98.80|100.66|0.00|3.08|2300|0|0|01|0A0004D3|0|41F00000|| +38|2023-10-06T22:04:16.9360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|7||98.80|100.66|0.00|3.08|0|0|0|||||||||||||||||||||||||||||||||| +20|2023-10-06T22:04:16.9810000-07:00|4002159B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.69|113.61|0.00|0.00| +20|2023-10-06T22:04:16.9810000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.27|103.93|0.00|0.00| +20|2023-10-06T22:04:16.9810000-07:00|4002159D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.08|99.20|0.00|0.00| +20|2023-10-06T22:04:16.9810000-07:00|4002159E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|94.92|94.02|0.00|0.00| +20|2023-10-06T22:04:16.9810000-07:00|4002159F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.81|96.52|0.00|0.00| +24|2023-10-06T22:04:17.0700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|162B|90216|90216|10000|10000|||99.78|99.26|0.00|3.13|400215A1|Zeromus|0|44|44|0|10000|||86.13|81.69|0.00|0.00| +24|2023-10-06T22:04:17.0700000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D7D|35545|81809|2000|10000|||100.01|94.00|0.00|-2.91|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68| +24|2023-10-06T22:04:17.0700000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D91|108630|129844|10000|10000|||99.00|96.04|0.00|-2.60|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68| +24|2023-10-06T22:04:17.0700000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D23|129071|129071|10000|10000|||100.42|97.85|0.00|3.07|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68| +24|2023-10-06T22:04:17.0700000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D4B|90216|90216|10000|10000|||99.78|99.26|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68| +24|2023-10-06T22:04:17.0700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|158C|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68| +24|2023-10-06T22:04:17.0700000-07:00|10FF0003|Gegehi Gehi|HoT|798|D81|73814|73814|4150|10000|||98.78|100.66|0.00|3.08|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68| +24|2023-10-06T22:04:17.0700000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D1D|83502|83502|10000|10000|||96.52|100.52|0.00|3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68| +24|2023-10-06T22:04:17.0700000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1628|81541|81541|2250|10000|||98.12|98.56|-0.01|0.68|10FF0006|Wowobora Gogobora|0|35545|81809|2000|10000|||100.01|94.00|0.00|-2.91| +38|2023-10-06T22:04:17.0700000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|112103|129844|10000|10000|0||98.62|95.95|0.00|-2.42|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:17.0700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:04:17.0700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.80|99.26|0.00|2.94|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:17.0700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:17.0700000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|38998|81809|2000|10000|0||100.01|93.99|0.00|3.02|0|0|0|||||||||| +26|2023-10-06T22:04:17.0700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:04:17.0700000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.92|97.66|0.00|3.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:17.0700000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:04:17.0700000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2800|10000|0||98.16|98.62|0.00|0.71|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:17.0700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:04:17.0700000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|7||98.75|100.66|0.00|3.06|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:17.0700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:04:17.0700000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||96.51|100.53|0.00|3.11|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:17.0700000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +21|2023-10-06T22:04:17.1580000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|95D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2502868|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.80|99.26|0.00|2.94|00011369|0|1| +38|2023-10-06T22:04:17.1580000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2800|10000|0||98.16|98.62|0.00|0.71|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:17.1580000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T22:04:16.7960000-07:00|Change|10FF0003||||||| +26|2023-10-06T22:04:17.2470000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|02|81541|81541| +21|2023-10-06T22:04:17.2470000-07:00|10FF0004|Buhojaqe Zijaqe|BD|Lustrate|10FF0006|Wowobora Gogobora|200004|7DAC0000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|0|0|38998|81809|2000|10000|||100.40|93.52|0.00|2.85|81541|81541|2800|10000|||98.16|98.62|0.00|0.84|0001136A|0|1| +261|2023-10-06T22:04:16.7960000-07:00|Change|10FF0004||||||||| +38|2023-10-06T22:04:17.2920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||102.13|97.31|0.00|3.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:17.2920000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:04:17.3370000-07:00|40021585|Zeromus|00011367|2495120||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:17.3370000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||95.95|100.61|0.00|-3.08| +24|2023-10-06T22:04:17.3820000-07:00|10FF0003|Gegehi Gehi|DoT|0|F79|73814|73814|4150|10000|||98.35|100.62|0.00|3.03|10FF0003|Gegehi Gehi|FFFFFFFF|73814|73814|4150|10000|||98.35|100.62|0.00|3.03| +24|2023-10-06T22:04:17.3820000-07:00|10FF0003|Gegehi Gehi|HoT|0|16F7|73814|73814|4150|10000|||98.35|100.62|0.00|3.03|10FF0003|Gegehi Gehi|0|73814|73814|4150|10000|||98.35|100.62|0.00|3.03| +21|2023-10-06T22:04:17.3820000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2502868|40478540|10000|10000|||100.00|80.10|0.00|0.00|38998|81809|2000|10000|||100.95|92.86|0.00|2.72|0001136B|0|1| +38|2023-10-06T22:04:17.3820000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|0||98.35|100.62|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:17.3820000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +38|2023-10-06T22:04:17.4260000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||95.54|100.67|0.00|-3.06|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:17.4260000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:04:17.0190000-07:00|Change|4002159B||||||||||| +261|2023-10-06T22:04:17.0190000-07:00|Change|4002159D||||||||||| +261|2023-10-06T22:04:17.0190000-07:00|Change|4002159C||||||||||| +261|2023-10-06T22:04:17.0190000-07:00|Change|4002159E||||||||||| +261|2023-10-06T22:04:17.0190000-07:00|Change|4002159F||||||||||| +39|2023-10-06T22:04:17.4710000-07:00|10FF0007|Kehabiqo Febiqo|113401|129844|10000|10000|||96.31|95.57|0.00|-1.74| +261|2023-10-06T22:04:17.1320000-07:00|Change|10FF0001||||||||| +21|2023-10-06T22:04:17.5160000-07:00|10FF0007|Kehabiqo Febiqo|2D|Storm's Eye|40021585|Zeromus|3F710003|311E0000|A3E|340000|204|268D8000|11B|2D8000|0|0|0|0|0|0|0|0|2495120|40478540|10000|10000|||100.00|80.10|0.00|0.00|113401|129844|10000|10000|||95.77|95.81|0.00|-1.62|0001136C|0|1| +21|2023-10-06T22:04:17.5160000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BCE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2495120|40478540|10000|10000|||100.00|80.10|0.00|0.00|113401|129844|10000|10000|||95.77|95.81|0.00|-1.62|0001136D|0|1| +21|2023-10-06T22:04:17.5160000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2DFA0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|2495120|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||95.19|100.72|0.00|-3.04|0001136E|0|1| +38|2023-10-06T22:04:17.5160000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|113401|129844|10000|10000|0||95.77|95.81|0.00|-1.62|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:17.5160000-07:00|A75|Surging Tempest|41.06|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +24|2023-10-06T22:04:17.5600000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|149F|113401|129844|10000|10000|||95.77|95.81|0.00|-1.62|10FF0007|Kehabiqo Febiqo|FFFFFFFF|113401|129844|10000|10000|||95.77|95.81|0.00|-1.62| +38|2023-10-06T22:04:17.5600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|108122|129844|10000|10000|0||95.77|95.81|0.00|-1.62|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:17.5600000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +24|2023-10-06T22:04:17.6490000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|131B|129071|129071|10000|10000|||104.08|97.44|0.00|2.91|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||104.08|97.44|0.00|2.91| +38|2023-10-06T22:04:17.6490000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|124180|129071|10000|10000|0||104.08|97.44|0.00|2.91|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:04:17.6940000-07:00|10FF0007|Kehabiqo Febiqo|00011368|89927||||||95.53|95.94|0.00|2.84| +21|2023-10-06T22:04:17.6940000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|156E0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|38998|81809|2000|10000|||102.25|90.96|0.00|2.52|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98|0001136F|0|1| +38|2023-10-06T22:04:17.6940000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|0||95.99|100.27|0.00|2.99|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:17.6940000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +261|2023-10-06T22:04:17.3230000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:17.4130000-07:00|Change|10FF0006||||||||| +21|2023-10-06T22:04:17.8290000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2495120|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4150|10000|||94.71|100.02|0.00|2.97|00011370|0|1| +38|2023-10-06T22:04:17.8290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||103.48|99.18|0.00|1.66|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:17.8290000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:04:17.8740000-07:00|10FF0006|Wowobora Gogobora|0001136A|71170||||||102.91|89.87|0.00|2.56| +261|2023-10-06T22:04:17.4130000-07:00|Change|40021599||||||||| +261|2023-10-06T22:04:17.5090000-07:00|Change|40021598||||||||| +261|2023-10-06T22:04:17.5090000-07:00|Change|40021596||||||||| +261|2023-10-06T22:04:17.5090000-07:00|Change|40021597||||||||| +261|2023-10-06T22:04:17.5090000-07:00|Change|4002159A||||||||| +37|2023-10-06T22:04:17.9180000-07:00|40021585|Zeromus|00011369|2492723||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:17.9180000-07:00|40021585|Zeromus|0001136B|2492655||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:17.9180000-07:00|40021585|Zeromus|0001136E|2480885||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:17.9620000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|85.84|96.17|0.00|0.00| +20|2023-10-06T22:04:17.9620000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|80.76|89.72|0.00|0.00| +20|2023-10-06T22:04:17.9620000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.97|96.05|0.00|0.00| +20|2023-10-06T22:04:17.9620000-07:00|40021599|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.50|100.02|0.00|0.00| +20|2023-10-06T22:04:17.9620000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.99|100.78|0.00|0.00| +261|2023-10-06T22:04:17.7220000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:04:17.8370000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:04:18.0510000-07:00|40021585|Zeromus|0001136D|2477863||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:18.0510000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4150|10000|0||93.73|100.37|0.00|-1.94|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:18.0510000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +39|2023-10-06T22:04:18.0950000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3000|10000|||102.85|98.46|0.00|1.54| +21|2023-10-06T22:04:18.1400000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|EBE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2480885|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||94.53|100.82|0.00|2.88|00011371|0|1| +39|2023-10-06T22:04:18.2290000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-3.00| +261|2023-10-06T22:04:17.9470000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:04:18.3670000-07:00|40021585|Zeromus|00011370|2477836||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:18.3670000-07:00|40021A5E|Carbuncle|77698|77698|10000|10000|||102.19|93.43|0.00|2.48| +261|2023-10-06T22:04:18.0660000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:04:18.0660000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:04:18.0660000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:04:18.0660000-07:00|Change|40021598||||||||||| +261|2023-10-06T22:04:18.0660000-07:00|Change|40021599||||||||||| +37|2023-10-06T22:04:18.4970000-07:00|10FF0006|Wowobora Gogobora|0001136F|76656||||||105.27|86.92|0.00|2.40| +39|2023-10-06T22:04:18.4970000-07:00|10FF0003|Gegehi Gehi|73814|73814|4350|10000|||93.40|101.43|0.00|-0.22| +21|2023-10-06T22:04:18.5420000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2BB20000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2477836|40478540|10000|10000|||100.00|80.10|0.00|0.00|124180|129071|10000|10000|||107.16|95.01|0.00|2.89|00011372|0|1| +38|2023-10-06T22:04:18.5420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|124180|129071|10000|10000|0||107.16|95.01|0.00|2.89|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:18.5420000-07:00|76E|Sword Oath|27.23|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +20|2023-10-06T22:04:18.5870000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|93.40|101.43|0.00|-0.22| +37|2023-10-06T22:04:18.6770000-07:00|40021585|Zeromus|00011371|2474062||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:18.6770000-07:00|40021585|Zeromus|DoT|0|EC8|2477836|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||92.45|93.86|0.00|-1.35| +21|2023-10-06T22:04:18.6770000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|BCC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2477836|40478540|10000|10000|||100.00|80.10|0.00|0.00|124180|129071|10000|10000|||107.77|94.97|0.00|3.02|00011373|0|1| +38|2023-10-06T22:04:18.6770000-07:00|40021585|Zeromus|005A5A00|2470278|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +31|2023-10-06T22:04:18.6770000-07:00|10FF0001||||| +261|2023-10-06T22:04:18.3730000-07:00|Change|40021A5E||||||||| +261|2023-10-06T22:04:18.3730000-07:00|Change|10FF0006||||||||| +39|2023-10-06T22:04:18.8100000-07:00|10FF0006|Wowobora Gogobora|77474|81809|2200|10000|||106.41|86.32|0.00|2.24| +261|2023-10-06T22:04:18.4640000-07:00|Change|40021595||||||||| +261|2023-10-06T22:04:18.4640000-07:00|Change|40021594||||||||| +261|2023-10-06T22:04:18.4640000-07:00|Change|40021593||||||||| +261|2023-10-06T22:04:18.4640000-07:00|Change|40021592||||||||| +261|2023-10-06T22:04:18.5600000-07:00|Change|10FF0008||||||||| +20|2023-10-06T22:04:18.9900000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|113.25|90.38|0.00|0.00| +20|2023-10-06T22:04:18.9900000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|83.32|119.45|0.00|0.00| +20|2023-10-06T22:04:18.9900000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|91.83|100.77|0.00|0.00| +20|2023-10-06T22:04:18.9900000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|108.50|99.67|0.00|0.00| +21|2023-10-06T22:04:18.9900000-07:00|10FF0006|Wowobora Gogobora|64EF|Summon Titan II|40021585|Zeromus|3E|9D8000|23E|10A8000|1B|64EF8000|0|0|0|0|0|0|0|0|0|0|2470278|40478540|10000|10000|||100.00|80.10|0.00|0.00|77474|81809|2200|10000|||107.57|86.17|0.00|2.03|00011374|0|1| +38|2023-10-06T22:04:19.0350000-07:00|40021A64||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:04:19.0350000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.41|100.48|0.00|3.01|0|0|0|||||||||| +26|2023-10-06T22:04:19.0350000-07:00|7AE|Summon Order IV|30.00|400219AD|Ruby Carbuncle|400219AD|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:04:19.0350000-07:00|10FF0004|Buhojaqe Zijaqe|409F|Fey Blessing|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3000|10000|||107.70|98.52|0.00|1.58|81541|81541|3000|10000|||107.70|98.52|0.00|1.58|00011375|0|1| +38|2023-10-06T22:04:19.0350000-07:00|40021A64||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +21|2023-10-06T22:04:19.0790000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C720003|2F6D0000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|2470278|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||107.87|98.72|0.00|1.70|00011376|0|1| +261|2023-10-06T22:04:18.6600000-07:00|Add|40021A64||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:04:18.6600000-07:00|40021A64|Topaz Titan|00|5A|10FF0006|00||10264|13507|74223|77698|10000|10000|||110.62|85.82|0.00|-2.21| +261|2023-10-06T22:04:18.6600000-07:00|Change|40021A64||||| +261|2023-10-06T22:04:18.7750000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:04:18.7750000-07:00|Change|10FF0003||||||||||||||||||||||| +22|2023-10-06T22:04:19.1240000-07:00|400219AD|Ruby Carbuncle|40A0|Fey Blessing|10FF0004|Buhojaqe Zijaqe|200004|3B060000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3000|10000|||108.15|98.49|0.00|1.56|73956|77430|10000|10000|||103.41|100.48|0.00|3.03|00011377|0|7| +22|2023-10-06T22:04:19.1240000-07:00|400219AD|Ruby Carbuncle|40A0|Fey Blessing|10FF0008|Kokosaze Lulusaze|4|24770000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||108.68|98.62|0.00|-2.68|73956|77430|10000|10000|||103.41|100.48|0.00|3.03|00011377|1|7| +22|2023-10-06T22:04:19.1240000-07:00|400219AD|Ruby Carbuncle|40A0|Fey Blessing|10FF0001|Sesuga Sapisuga|200004|3C660000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|124180|129071|10000|10000|||107.77|94.97|0.00|3.02|73956|77430|10000|10000|||103.41|100.48|0.00|3.03|00011377|2|7| +22|2023-10-06T22:04:19.1240000-07:00|400219AD|Ruby Carbuncle|40A0|Fey Blessing|10FF000A|Dukaro Nezikaro|200004|3BED0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||94.49|100.82|0.00|-3.12|73956|77430|10000|10000|||103.41|100.48|0.00|3.03|00011377|3|7| +22|2023-10-06T22:04:19.1240000-07:00|400219AD|Ruby Carbuncle|40A0|Fey Blessing|10FF0003|Gegehi Gehi|4|25D00000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4350|10000|||93.22|102.31|0.00|2.65|73956|77430|10000|10000|||103.41|100.48|0.00|3.03|00011377|4|7| +22|2023-10-06T22:04:19.1240000-07:00|400219AD|Ruby Carbuncle|40A0|Fey Blessing|10FF0007|Kehabiqo Febiqo|4|255F0000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|89927|129844|10000|10000|||90.72|98.40|-0.01|-2.11|73956|77430|10000|10000|||103.41|100.48|0.00|3.03|00011377|5|7| +22|2023-10-06T22:04:19.1240000-07:00|400219AD|Ruby Carbuncle|40A0|Fey Blessing|10FF0006|Wowobora Gogobora|4|25D80000|1B|40A08000|0|0|0|0|0|0|0|0|0|0|0|0|77474|81809|2200|10000|||107.72|86.17|0.00|-2.21|73956|77430|10000|10000|||103.41|100.48|0.00|3.03|00011377|6|7| +24|2023-10-06T22:04:19.1680000-07:00|10FF0003|Gegehi Gehi|HoT|742|268D|73814|73814|4350|10000|||93.22|102.31|0.00|2.65|10FF0007|Kehabiqo Febiqo|0|89927|129844|10000|10000|||90.72|98.40|-0.01|-2.11| +37|2023-10-06T22:04:19.1680000-07:00|40021585|Zeromus|0001136C|2457704||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:19.1680000-07:00|10FF0007|Kehabiqo Febiqo|0001136C|99796||||||90.72|98.40|-0.01|-2.11| +39|2023-10-06T22:04:19.1680000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||108.68|98.62|0.00|-2.68| +38|2023-10-06T22:04:19.1680000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|0||93.22|102.31|0.00|2.65|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:19.2130000-07:00|40021585|Zeromus|00011373|2454684||||||100.00|80.10|0.00|0.00| +23|2023-10-06T22:04:19.4360000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|Cancelled| +261|2023-10-06T22:04:19.0100000-07:00|Change|40021595||||||||||| +261|2023-10-06T22:04:19.0100000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:04:19.0100000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:04:19.0100000-07:00|Change|40021592||||||||||| +261|2023-10-06T22:04:19.3250000-07:00|Change|40021A5E||||||||| +39|2023-10-06T22:04:19.7930000-07:00|10FF0001|Sesuga Sapisuga|125470|129071|10000|10000|||107.78|94.94|0.00|-2.45| +261|2023-10-06T22:04:19.3250000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:19.8380000-07:00|40021585|Zeromus|00011372|2443498||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:19.8380000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E550000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2454684|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||112.00|98.08|0.00|2.09|00011378|0|1| +261|2023-10-06T22:04:19.4160000-07:00|Change|10FF000A||||||||| +261|2023-10-06T22:04:19.4160000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:04:19.8830000-07:00|40021585|Zeromus|00011376|2431357||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:19.4160000-07:00|Change|40021591||||||||| +261|2023-10-06T22:04:19.4160000-07:00|Change|4002158F||||||||| +261|2023-10-06T22:04:19.4160000-07:00|Change|40021590||||||||| +261|2023-10-06T22:04:19.4160000-07:00|Change|4002158E||||||||| +261|2023-10-06T22:04:19.4160000-07:00|Change|4002158D||||||||| +21|2023-10-06T22:04:19.9270000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|453B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|99796|129844|10000|10000|||90.32|98.92|-0.02|-0.66|2431357|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011379|0|1| +21|2023-10-06T22:04:19.9270000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.75|113.09|0.00|0.00|0001137A|0|0| +21|2023-10-06T22:04:19.9270000-07:00|400215A1|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.13|81.69|0.00|0.00|0001137B|0|0| +21|2023-10-06T22:04:19.9270000-07:00|400215A3|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.20|101.05|0.00|0.00|0001137C|0|0| +21|2023-10-06T22:04:19.9270000-07:00|400215A2|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.41|93.94|0.00|0.00|0001137D|0|0| +261|2023-10-06T22:04:19.5180000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:04:19.5180000-07:00|Change|400215A1||||||||||| +261|2023-10-06T22:04:19.5180000-07:00|Change|400215A2||||||||||| +261|2023-10-06T22:04:19.5180000-07:00|Change|400215A3||||||||||| +20|2023-10-06T22:04:19.9720000-07:00|40021585|Zeromus|8B6B|Nostalgia|40021585|Zeromus|4.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:19.9720000-07:00|4002158D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|86.21|83.42|0.00|0.00| +20|2023-10-06T22:04:19.9720000-07:00|4002158E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|95.21|96.92|0.00|0.00| +20|2023-10-06T22:04:19.9720000-07:00|4002158F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|109.70|86.65|0.00|0.00| +20|2023-10-06T22:04:19.9720000-07:00|40021590|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|86.45|99.97|0.00|0.00| +20|2023-10-06T22:04:19.9720000-07:00|40021591|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|112.81|101.37|0.00|0.00| +261|2023-10-06T22:04:19.5180000-07:00|Change|40021585||||||||||||| +21|2023-10-06T22:04:20.0160000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|38FA0000|200204|3DCF8000|0|0|0|0|0|0|0|0|0|0|0|0|2431357|40478540|10000|10000|||100.00|80.10|0.00|0.00|99796|129844|10000|10000|||90.25|99.17|0.00|-0.53|0001137E|0|1| +261|2023-10-06T22:04:19.6320000-07:00|Change|40021A64||| +261|2023-10-06T22:04:19.6320000-07:00|Change|10FF0004||||||||| +24|2023-10-06T22:04:20.0610000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|CED|125470|129071|10000|10000|||107.54|93.42|0.00|-2.44|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3000|10000|||113.18|100.16|0.00|0.96| +24|2023-10-06T22:04:20.0610000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D9F|77474|81809|2200|10000|||108.14|86.17|0.00|-2.21|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3000|10000|||113.18|100.16|0.00|0.96| +24|2023-10-06T22:04:20.0610000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D8D|99796|129844|10000|10000|||90.20|99.35|0.00|2.68|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3000|10000|||113.18|100.16|0.00|0.96| +24|2023-10-06T22:04:20.0610000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|1580|90216|90216|10000|10000|||112.61|98.04|0.00|1.90|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3000|10000|||113.18|100.16|0.00|0.96| +24|2023-10-06T22:04:20.0610000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|798|D3C|81541|81541|3000|10000|||113.18|100.16|0.00|0.96|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3000|10000|||113.18|100.16|0.00|0.96| +24|2023-10-06T22:04:20.0610000-07:00|10FF0003|Gegehi Gehi|HoT|798|D9E|73814|73814|4350|10000|||92.35|106.53|0.00|-0.03|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3000|10000|||113.18|100.16|0.00|0.96| +24|2023-10-06T22:04:20.0610000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|D8D|83502|83502|10000|10000|||87.89|102.34|0.00|-2.95|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3000|10000|||113.18|100.16|0.00|0.96| +38|2023-10-06T22:04:20.0610000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|103265|129844|10000|10000|0||90.20|99.35|0.00|2.68|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:20.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:04:20.0610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||112.61|98.04|0.00|1.90|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:20.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:20.0610000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|80961|81809|2200|10000|0||108.14|86.17|0.00|-2.21|0|0|0|||||||||| +26|2023-10-06T22:04:20.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:04:20.0610000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|128779|129071|10000|10000|0||107.54|93.42|0.00|-2.44|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:20.0610000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:04:20.0610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3550|10000|0||113.18|100.16|0.00|0.96|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:20.0610000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:04:20.0610000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|0||92.35|106.53|0.00|-0.03|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:20.0610000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:04:20.0610000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||87.89|102.34|0.00|-2.95|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:20.0610000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +38|2023-10-06T22:04:20.1050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|80961|81809|2200|10000|0||108.14|86.17|0.00|-2.21|0|0|0||||||||||||| +26|2023-10-06T22:04:20.1050000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|02|81809|81809| +21|2023-10-06T22:04:20.1050000-07:00|10FF0006|Wowobora Gogobora|407C|Energy Drain|40021585|Zeromus|750003|18D50000|F|A8D8000|0|0|0|0|0|0|0|0|0|0|0|0|2431357|40478540|10000|10000|||100.00|80.10|0.00|0.00|77474|81809|2200|10000|||108.14|86.17|0.00|-2.21|0001137F|0|1| +38|2023-10-06T22:04:20.1050000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|80961|81809|2200|10000|0||108.14|86.17|0.00|-2.21|0|0|0|||||||||||||||| +26|2023-10-06T22:04:20.1050000-07:00|A8D|Further Ruin|60.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:04:20.1500000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|80961|81809|2200|10000|0||108.14|86.17|0.00|-2.21|0|0|0|||||||||||||||| +37|2023-10-06T22:04:20.1940000-07:00|10FF0001|Sesuga Sapisuga|00011377|129071||||||107.54|93.42|0.00|-2.44| +261|2023-10-06T22:04:19.7420000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T22:04:19.8620000-07:00|Change|10FF000B||||||||| +261|2023-10-06T22:04:19.8620000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:19.9780000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T22:04:20.0920000-07:00|Change|4002158E||||||||||| +261|2023-10-06T22:04:20.0920000-07:00|Change|40021590||||||||||| +261|2023-10-06T22:04:20.0920000-07:00|Change|4002158F||||||||||| +261|2023-10-06T22:04:20.0920000-07:00|Change|4002158D||||||||||| +261|2023-10-06T22:04:20.0920000-07:00|Change|40021591||||||||||| +39|2023-10-06T22:04:20.3730000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||86.90|102.53|0.00|-3.04| +24|2023-10-06T22:04:20.3730000-07:00|10FF0003|Gegehi Gehi|DoT|0|2598|73814|73814|4350|10000|||92.89|107.12|0.00|1.78|10FF0003|Gegehi Gehi|FFFFFFFF|73814|73814|4350|10000|||92.89|107.12|0.00|1.78| +38|2023-10-06T22:04:20.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|64190|73814|4350|10000|0||92.89|107.12|0.00|1.78|0|0|0|||||||||||||||||||||||||||||||||| +20|2023-10-06T22:04:20.4180000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|92.89|107.12|0.00|1.78| +37|2023-10-06T22:04:20.4620000-07:00|10FF0003|Gegehi Gehi|00011377|73814||||||92.89|107.12|0.00|1.78| +39|2023-10-06T22:04:20.4620000-07:00|10FF0007|Kehabiqo Febiqo|104563|129844|10000|10000|||90.06|99.85|0.00|2.68| +21|2023-10-06T22:04:20.5070000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|420000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2431357|40478540|10000|10000|||100.00|80.10|0.00|0.00|80961|81809|2200|10000|||108.14|86.17|0.00|-2.21|00011380|0|1| +24|2023-10-06T22:04:20.5510000-07:00|10FF0007|Kehabiqo Febiqo|DoT|0|1537|104563|129844|10000|10000|||90.03|99.87|0.00|2.73|10FF0007|Kehabiqo Febiqo|FFFFFFFF|104563|129844|10000|10000|||90.03|99.87|0.00|2.73| +38|2023-10-06T22:04:20.5510000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|99132|129844|10000|10000|0||90.03|99.87|0.00|2.73|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:04:20.5960000-07:00|40021585|Zeromus|00011378|2427688||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:20.5960000-07:00|10FF0007|Kehabiqo Febiqo|00011377|108699||||||90.03|99.87|0.00|2.73| +24|2023-10-06T22:04:20.6410000-07:00|10FF0003|Gegehi Gehi|HoT|742|3DCF|73814|73814|4350|10000|||93.09|107.25|0.00|2.31|10FF0007|Kehabiqo Febiqo|0|108699|129844|10000|10000|||90.01|99.87|0.00|2.80| +37|2023-10-06T22:04:20.6410000-07:00|40021585|Zeromus|0001137E|2413102||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:20.6410000-07:00|10FF0007|Kehabiqo Febiqo|0001137E|124522||||||90.01|99.87|0.00|2.80| +24|2023-10-06T22:04:20.6410000-07:00|10FF0001|Sesuga Sapisuga|DoT|0|13E4|129071|129071|10000|10000|||107.46|93.33|0.00|-2.63|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|10000|10000|||107.46|93.33|0.00|-2.63| +38|2023-10-06T22:04:20.6410000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123979|129071|10000|10000|0||107.46|93.33|0.00|-2.63|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:20.6410000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|0||93.09|107.25|0.00|2.31|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:20.7300000-07:00|10FF0007|Kehabiqo Febiqo|00011379|106799||||||90.01|99.87|0.00|2.80| +37|2023-10-06T22:04:20.7300000-07:00|10FF0006|Wowobora Gogobora|00011377|81809|81809|2200|10000|0||108.14|86.17|-0.02|-2.10|1B06|0|0|01|04000A8D|0|C2700000|| +38|2023-10-06T22:04:20.7300000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.41|100.48|0.00|-2.98|0|0|0|||||||||| +30|2023-10-06T22:04:20.7300000-07:00|7AE|Summon Order IV|0.00|400219AD|Ruby Carbuncle|400219AD|Ruby Carbuncle|01|77430|77430| +21|2023-10-06T22:04:20.7750000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|200004|21BE0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|2200|10000|||108.14|86.18|0.00|-1.56|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98|00011381|0|1| +261|2023-10-06T22:04:20.3680000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:04:20.9080000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BD60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2413102|40478540|10000|10000|||100.00|80.10|0.00|0.00|106799|129844|10000|10000|||89.96|100.43|0.00|2.32|00011382|0|1| +21|2023-10-06T22:04:20.9540000-07:00|4002159B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.69|113.61|0.00|0.00|00011383|0|0| +21|2023-10-06T22:04:20.9540000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.27|103.93|0.00|0.00|00011384|0|0| +21|2023-10-06T22:04:20.9540000-07:00|4002159D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.08|99.20|0.00|0.00|00011385|0|0| +21|2023-10-06T22:04:20.9540000-07:00|4002159E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.92|94.02|0.00|0.00|00011386|0|0| +21|2023-10-06T22:04:20.9540000-07:00|4002159F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.81|96.52|0.00|0.00|00011387|0|0| +21|2023-10-06T22:04:20.9540000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|716003|E8B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2413102|40478540|10000|10000|||100.00|80.10|0.00|0.00|123979|129071|10000|10000|||107.46|93.33|0.00|-2.63|00011388|0|1| +31|2023-10-06T22:04:20.9540000-07:00|10FF0001||||| +261|2023-10-06T22:04:20.4590000-07:00|Change|4002159C||||||||||| +261|2023-10-06T22:04:20.4590000-07:00|Change|4002159B||||||||||| +261|2023-10-06T22:04:20.4590000-07:00|Change|4002159D||||||||||| +261|2023-10-06T22:04:20.4590000-07:00|Change|4002159F||||||||||| +261|2023-10-06T22:04:20.4590000-07:00|Change|4002159E||||||||||| +21|2023-10-06T22:04:20.9980000-07:00|10FF0001|Sesuga Sapisuga|1CD8|Holy Spirit|40021585|Zeromus|750003|31010000|4|26E78000|0|0|0|0|0|0|0|0|0|0|0|0|2413102|40478540|10000|10000|||100.00|80.10|0.00|0.00|123979|129071|10000|10000|||107.46|93.33|0.00|-2.63|00011389|0|1| +38|2023-10-06T22:04:20.9980000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123979|129071|9000|10000|0||107.46|93.33|0.00|-2.63|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:20.9980000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +261|2023-10-06T22:04:20.5510000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:21.0420000-07:00|40021585|Zeromus|00011380|2413036||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:21.0420000-07:00|10FF0006|Wowobora Gogobora|00011380|81809|81809|2200|10000|0||108.07|86.34|-0.02|-0.68|1B00|0|0|01|04000A8D|0|C2700000|| +38|2023-10-06T22:04:21.0420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|123979|129071|9000|10000|0||107.46|93.33|0.00|-2.63|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:21.0420000-07:00|108|Flesh Wound|0.00|4002159B|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +21|2023-10-06T22:04:21.0870000-07:00|40021A64|Topaz Titan|64FD|Earthen Fury|40021585|Zeromus|456003|C1970000|1B|64FD8000|0|0|0|0|0|0|0|0|0|0|0|0|2413036|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||110.62|85.82|0.00|-2.21|0001138A|0|1| +38|2023-10-06T22:04:21.0870000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|0||93.31|107.41|0.00|2.90|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:21.0870000-07:00|108|Flesh Wound|0.00|4002159B|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +37|2023-10-06T22:04:21.1320000-07:00|40021585|Zeromus|0001137F|2406679||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:21.1320000-07:00|10FF0006|Wowobora Gogobora|0001137F|81809|81809|2200|10000|0||107.73|87.11|0.00|-0.61|1B00|0|0|01|04000A8D|0|42700000|| +39|2023-10-06T22:04:21.1320000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3750|10000|||115.41|105.44|0.00|0.40| +38|2023-10-06T22:04:21.1320000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|2200|10000|0||107.73|87.11|0.00|-0.61|0|0|0|||||||||||||||| +261|2023-10-06T22:04:20.6710000-07:00|Change|40021A5E||| +39|2023-10-06T22:04:21.2210000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|2.95| +261|2023-10-06T22:04:20.7820000-07:00|Change|10FF0004||||||||||| +261|2023-10-06T22:04:20.7820000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T22:04:21.4440000-07:00|40021585|Zeromus|00011382|2403649||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:21.4440000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|25A40000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|2406679|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|2200|10000|||106.81|89.18|0.00|-0.46|0001138B|0|1| +38|2023-10-06T22:04:21.4440000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1900|10000|0||106.81|89.18|0.00|-0.46|0|0|0||||||||||||||||||| +26|2023-10-06T22:04:21.4440000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:04:21.0060000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:04:21.4890000-07:00|40021585|Zeromus|00011388|2399926||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:21.4890000-07:00|10FF0003|Gegehi Gehi|73814|73814|4550|10000|||93.31|107.41|0.00|2.90| +21|2023-10-06T22:04:21.5790000-07:00|10FF0008|Kokosaze Lulusaze|1CF5|Heated Clean Shot|40021585|Zeromus|44720003|3CF40000|53E|A98000|A3E|F58000|11B|B398000|0|0|0|0|0|0|0|0|2399926|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||114.82|98.02|0.00|1.34|0001138C|0|1| +261|2023-10-06T22:04:21.3070000-07:00|Change|10FF0007||||||||| +24|2023-10-06T22:04:21.6680000-07:00|40021585|Zeromus|DoT|0|1513|2399926|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||97.91|98.30|0.00|0.00| +38|2023-10-06T22:04:21.6680000-07:00|40021585|Zeromus|005A5A00|2394531|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +37|2023-10-06T22:04:21.7580000-07:00|40021585|Zeromus|00011389|2381986||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:21.7580000-07:00|10FF0001|Sesuga Sapisuga|00011389|129071||||||107.46|93.33|0.00|-2.63| +39|2023-10-06T22:04:21.8030000-07:00|10FF0006|Wowobora Gogobora|81809|81809|2100|10000|||106.36|90.43|0.00|-2.97| +21|2023-10-06T22:04:21.8480000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|450003|306C0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|2381986|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4550|10000|||93.31|107.41|0.00|2.90|0001138D|0|1| +38|2023-10-06T22:04:21.8480000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|0||93.31|107.41|0.00|2.90|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:21.8480000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:04:21.8480000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:04:21.9370000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||85.84|96.17|0.00|0.00|0001138E|0|0| +21|2023-10-06T22:04:21.9370000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.76|89.72|0.00|0.00|0001138F|0|0| +21|2023-10-06T22:04:21.9370000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.97|96.05|0.00|0.00|00011390|0|0| +21|2023-10-06T22:04:21.9370000-07:00|40021599|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||95.50|100.02|0.00|0.00|00011391|0|0| +21|2023-10-06T22:04:21.9370000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||99.99|100.78|0.00|0.00|00011392|0|0| +261|2023-10-06T22:04:21.4940000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:04:21.4940000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:04:21.4940000-07:00|Change|40021599||||||||||| +261|2023-10-06T22:04:21.4940000-07:00|Change|40021598||||||||||| +261|2023-10-06T22:04:21.4940000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:04:21.4940000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:04:22.0710000-07:00|40021585|Zeromus|0001138B|2372350||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:22.0710000-07:00|10FF0006|Wowobora Gogobora|0001138B|81809|81809|2100|10000|0||106.43|90.89|0.00|2.24|1B00|0|0|01|05000B25|0|0|| +38|2023-10-06T22:04:22.0710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106799|129844|10000|10000|0||93.01|106.08|0.00|1.98|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:22.0710000-07:00|741|Nascent Flash|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +38|2023-10-06T22:04:22.0710000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|2100|10000|0||106.43|90.89|0.00|2.24|0|0|0||||||||||||||||||| +38|2023-10-06T22:04:22.0710000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4350|10000|0||93.31|107.41|0.00|2.90|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:22.0710000-07:00|742|Nascent Glint|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|64|73814|129844| +21|2023-10-06T22:04:22.1150000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|456003|25900000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2381986|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|2100|10000|||106.43|90.89|0.00|2.24|00011393|0|1| +38|2023-10-06T22:04:22.1150000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|2100|10000|0||106.43|90.89|0.00|2.24|0|0|0|||||||||||||||| +30|2023-10-06T22:04:22.1150000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +39|2023-10-06T22:04:22.1600000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||115.63|96.66|0.00|-2.95| +21|2023-10-06T22:04:22.1600000-07:00|10FF0008|Kokosaze Lulusaze|4075|Automaton Queen|10FF0008|Kokosaze Lulusaze|34|128000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||115.63|96.66|0.00|-2.95|90216|90216|10000|10000|||115.63|96.66|0.00|-2.95|00011394|0|1| +261|2023-10-06T22:04:21.8030000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T22:04:22.3840000-07:00|40021585|Zeromus|0001138C|2356746||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:21.9140000-07:00|Change|10FF0004||||||||||||| +21|2023-10-06T22:04:22.5180000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EE30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2356746|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||115.85|95.96|0.00|2.80|00011395|0|1| +38|2023-10-06T22:04:22.5180000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|106799|129844|10000|10000|0||95.13|106.34|-0.02|1.81|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:22.5180000-07:00|108|Flesh Wound|0.00|400215A1|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +261|2023-10-06T22:04:22.2340000-07:00|Change|10FF000A||||||||| +38|2023-10-06T22:04:22.6520000-07:00|40021A66||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +37|2023-10-06T22:04:22.6530000-07:00|40021585|Zeromus|0001138D|2344350||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:22.6530000-07:00|40021A66||005A5A00|82193|85668|10000|10000|0||||||0|0|0||||||| +261|2023-10-06T22:04:22.3250000-07:00|Add|40021A66||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:22.3250000-07:00|Remove|40021A5E| +03|2023-10-06T22:04:22.3250000-07:00|40021A66|Automaton Queen|00|5A|10FF0008|00||8230|10490|82193|85668|10000|10000|||117.00|98.07|0.00|2.80| +261|2023-10-06T22:04:22.3250000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:04:22.3250000-07:00|Change|40021A66||| +39|2023-10-06T22:04:22.7860000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9200|10000|||107.46|93.33|0.00|-2.63| +20|2023-10-06T22:04:22.7860000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0007|Kehabiqo Febiqo|1.926|114.46|110.06|0.00|2.39| +261|2023-10-06T22:04:22.4200000-07:00|Change|10FF0001||| +37|2023-10-06T22:04:22.8760000-07:00|40021585|Zeromus|00011393|2334734||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:22.8760000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|59750000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|2344350|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4350|10000|||95.63|106.75|0.00|1.90|00011396|0|1| +38|2023-10-06T22:04:22.8760000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|0||95.63|106.75|0.00|1.90|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:22.8760000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:04:22.8760000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:04:22.9660000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.25|90.38|0.00|0.00|00011397|0|0| +21|2023-10-06T22:04:22.9660000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||83.32|119.45|0.00|0.00|00011398|0|0| +21|2023-10-06T22:04:22.9660000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||91.83|100.77|0.00|0.00|00011399|0|0| +21|2023-10-06T22:04:22.9660000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.50|99.67|0.00|0.00|0001139A|0|0| +261|2023-10-06T22:04:22.5130000-07:00|Change|40021592||||||||||| +261|2023-10-06T22:04:22.5130000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:04:22.5130000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:04:22.5130000-07:00|Change|40021595||||||||||| +21|2023-10-06T22:04:23.0100000-07:00|10FF0006|Wowobora Gogobora|1D88|Addle|40021585|Zeromus|F6FB0E|4B30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2334734|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|2100|10000|||106.52|91.49|0.00|-1.88|0001139B|0|1| +37|2023-10-06T22:04:23.0550000-07:00|40021585|Zeromus|0001138A|2285175||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:23.0550000-07:00|10FF0006|Wowobora Gogobora|HoT|798|D26|81809|81809|2100|10000|||106.52|91.49|0.00|-1.88|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3750|10000|||114.46|110.06|0.00|3.12| +24|2023-10-06T22:04:23.0550000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|D0A|129071|129071|9200|10000|||107.46|93.33|0.00|-2.63|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3750|10000|||114.46|110.06|0.00|3.12| +24|2023-10-06T22:04:23.0550000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|D55|106799|129844|10000|10000|||97.59|104.13|0.00|2.34|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3750|10000|||114.46|110.06|0.00|3.12| +24|2023-10-06T22:04:23.0550000-07:00|10FF0003|Gegehi Gehi|HoT|798|CE3|73814|73814|4050|10000|||96.03|106.64|0.00|3.00|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3750|10000|||114.46|110.06|0.00|3.12| +21|2023-10-06T22:04:23.0550000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||115.89|95.81|0.00|2.80|90216|90216|10000|10000|||115.89|95.81|0.00|2.80|0001139C|0|1| +38|2023-10-06T22:04:23.0550000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110212|129844|10000|10000|0||97.59|104.13|0.00|2.34|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:23.0550000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:04:23.0550000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||115.89|95.81|0.00|2.80|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:23.0550000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +38|2023-10-06T22:04:23.0550000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|2100|10000|0||106.52|91.49|0.00|-1.88|0|0|0|||||||||||||||| +26|2023-10-06T22:04:23.0550000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:04:23.0550000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||107.46|93.33|0.00|-2.63|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:23.0550000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:04:23.0550000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4300|10000|0||114.46|110.06|0.00|3.12|0|0|0|||||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:23.0550000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|0||96.03|106.64|0.00|3.00|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:23.0550000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:04:23.1440000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|110212|129844|10000|10000|0||98.02|103.70|0.00|2.35|0|0|0||||||||||||||||||| +30|2023-10-06T22:04:23.1440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0007|Kehabiqo Febiqo|00|129844|81809| +38|2023-10-06T22:04:23.1440000-07:00|40021A66|Automaton Queen|005A5A00|82193|85668|10000|10000|0||117.00|98.07|0.00|2.80|0|0|0|||| +26|2023-10-06T22:04:23.1440000-07:00|30|Well Fed|1010.93|10FF0008|Kokosaze Lulusaze|40021A66|Automaton Queen|2964|85668|90216| +38|2023-10-06T22:04:23.1440000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||115.89|95.81|0.00|2.80|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:23.1440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0008|Kokosaze Lulusaze|00|90216|81809| +38|2023-10-06T22:04:23.1440000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||107.46|93.33|0.00|-2.63|0|0|0||||||||||||||||||| +30|2023-10-06T22:04:23.1440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0001|Sesuga Sapisuga|00|129071|81809| +38|2023-10-06T22:04:23.1440000-07:00|400219AD|Ruby Carbuncle|005A5A00|73956|77430|10000|10000|0||103.41|100.48|0.00|-2.98|0|0|0|||| +30|2023-10-06T22:04:23.1440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|400219AD|Ruby Carbuncle|00|77430|81809| +38|2023-10-06T22:04:23.1440000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4300|10000|0||114.46|110.06|0.00|-2.83|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:23.1440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0004|Buhojaqe Zijaqe|00|81541|81809| +38|2023-10-06T22:04:23.1440000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|0||96.05|106.64|0.00|3.00|0|0|0|||||||||||||||| +30|2023-10-06T22:04:23.1440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF0003|Gegehi Gehi|00|73814|81809| +38|2023-10-06T22:04:23.1440000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||93.73|108.42|-0.01|2.73|0|0|0|||||||||||||||| +30|2023-10-06T22:04:23.1440000-07:00|A8F|Searing Light|0.00|10FF0006|Wowobora Gogobora|10FF000A|Dukaro Nezikaro|00|83502|81809| +261|2023-10-06T22:04:22.8430000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:04:23.1880000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|16B00000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|2285175|40478540|10000|10000|||100.00|80.10|0.00|0.00|110212|129844|10000|10000|||98.45|103.29|0.00|2.35|0001139D|0|1| +21|2023-10-06T22:04:23.2330000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2285175|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||107.46|93.33|0.00|-2.63|0001139E|0|1| +31|2023-10-06T22:04:23.2330000-07:00|10FF0001||||| +37|2023-10-06T22:04:23.2770000-07:00|40021585|Zeromus|00011395|2281364||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:23.3670000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||94.79|107.63|0.00|2.80| +38|2023-10-06T22:04:23.3670000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|0||96.43|106.61|0.00|2.80|0|0|0|||||||||||||||| +261|2023-10-06T22:04:22.9530000-07:00|Change|10FF0004||||||||||||||||||||||| +39|2023-10-06T22:04:23.4560000-07:00|10FF0007|Kehabiqo Febiqo|111510|129844|10000|10000|||99.43|102.41|0.00|3.09| +21|2023-10-06T22:04:23.4560000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|2A230000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2281364|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9200|10000|||107.46|93.33|0.00|-2.63|0001139F|0|1| +38|2023-10-06T22:04:23.4560000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9200|10000|0||107.46|93.33|0.00|-2.63|0|0|0||||||||||||||||||| +26|2023-10-06T22:04:23.4560000-07:00|76E|Sword Oath|22.32|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:04:23.0670000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:04:23.6360000-07:00|40021585|Zeromus|0001139B|2281364|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|030004B3|0|41200000|| +26|2023-10-06T22:04:23.6360000-07:00|4B3|Addle|10.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|81809| +37|2023-10-06T22:04:23.6360000-07:00|40021585|Zeromus|00011396|2258463||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:23.6360000-07:00|10FF0003|Gegehi Gehi|00011396|73814|73814|4050|10000|0||97.78|106.49|0.00|2.18|2300|0|0|01|020004D2|0|41F00000|| +21|2023-10-06T22:04:23.6360000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2281364|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|2100|10000|||104.89|93.90|0.00|-1.05|000113A0|0|1| +38|2023-10-06T22:04:23.6360000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4050|10000|0||97.78|106.49|0.00|2.18|0|0|0|||||||||||||||| +38|2023-10-06T22:04:23.6360000-07:00|10FF000B|Pusu Rosu|005A5A18|15841|79209|2000|10000|0||97.91|98.30|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T22:04:23.6360000-07:00|94|Raise|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|08|79209|81541| +26|2023-10-06T22:04:23.6360000-07:00|2B|Weakness|100.00|E0000000||10FF000B|Pusu Rosu|00|79209|| +26|2023-10-06T22:04:23.6360000-07:00|1A2|Transcendent|5.00|E0000000||10FF000B|Pusu Rosu|00|79209|| +261|2023-10-06T22:04:23.1780000-07:00|Change|10FF000B||||| +261|2023-10-06T22:04:23.2690000-07:00|Change|40021A66||| +34|2023-10-06T22:04:23.6800000-07:00|40021A66|Automaton Queen|40021A66|Automaton Queen|01| +37|2023-10-06T22:04:23.7250000-07:00|40021585|Zeromus|0001139D|2252655||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:23.7690000-07:00|40021585|Zeromus|0001139E|2250923||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:23.9480000-07:00|4002158D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.21|83.42|0.00|0.00|000113A1|0|0| +22|2023-10-06T22:04:23.9480000-07:00|4002158E|Zeromus|8B7E|Dimensional Surge|10FF000B|Pusu Rosu|750103|0|114|6FD0000|1B|8B7E8000|0|0|0|0|0|0|0|0|0|0|15841|79209|2000|10000|||97.91|98.30|0.00|0.00|44|44|0|10000|||95.21|96.92|0.00|0.00|000113A2|0|1| +21|2023-10-06T22:04:23.9480000-07:00|4002158F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||109.70|86.65|0.00|0.00|000113A3|0|0| +21|2023-10-06T22:04:23.9480000-07:00|40021590|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||86.45|99.97|0.00|0.00|000113A4|0|0| +21|2023-10-06T22:04:23.9480000-07:00|40021591|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||112.81|101.37|0.00|0.00|000113A5|0|0| +21|2023-10-06T22:04:23.9480000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|454003|2F010000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|2250923|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|2100|10000|||104.49|94.37|0.00|-1.13|000113A6|0|1| +38|2023-10-06T22:04:23.9480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1800|10000|0||104.49|94.37|0.00|-1.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:04:23.9480000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:04:23.4560000-07:00|Change|4002158F||||||||||| +261|2023-10-06T22:04:23.4560000-07:00|Change|4002158E||||||||||| +261|2023-10-06T22:04:23.4560000-07:00|Change|4002158D||||||||||| +261|2023-10-06T22:04:23.4560000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:04:23.4560000-07:00|Change|40021591||||||||||| +261|2023-10-06T22:04:23.4560000-07:00|Change|40021590||||||||||| +261|2023-10-06T22:04:23.6370000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:04:23.6370000-07:00|Change|10FF0003||||||||| +26|2023-10-06T22:04:24.0810000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:04:24.0810000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|392A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2250923|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||114.88|95.65|0.00|-2.06|000113A7|0|1| +21|2023-10-06T22:04:24.0810000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|720003|43980000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2250923|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|4050|10000|||101.10|106.72|0.00|2.03|000113A8|0|1| +39|2023-10-06T22:04:24.1260000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|4500|10000|||114.46|110.06|0.00|-2.08| +37|2023-10-06T22:04:24.1700000-07:00|40021585|Zeromus|000113A0|2250851||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:24.1700000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|4|14D20000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|15841|79209|2000|10000|||97.91|98.30|0.00|0.00|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98|000113A9|0|1| +21|2023-10-06T22:04:24.1710000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0007|Kehabiqo Febiqo|4|27350000|920E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|111510|129844|10000|10000|||101.44|102.28|0.00|2.79|81541|81541|4300|10000|||114.46|110.06|0.00|-2.08|000113AA|0|1| +38|2023-10-06T22:04:24.1710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111510|129844|10000|10000|13||101.44|102.28|0.00|2.79|0|0|0||||||||||||||||||| +26|2023-10-06T22:04:24.1710000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +39|2023-10-06T22:04:24.2140000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.76| +261|2023-10-06T22:04:23.8710000-07:00|Change|10FF000A||||||||| +21|2023-10-06T22:04:24.3050000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|E190000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2250851|40478540|10000|10000|||100.00|80.10|0.00|0.00|111510|129844|10000|10000|||102.07|101.89|0.00|2.83|000113AB|0|1| +261|2023-10-06T22:04:23.9910000-07:00|Change|10FF0004||||||||||||||||| +21|2023-10-06T22:04:24.4380000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8C40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2250851|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||100.07|102.72|0.00|3.09|000113AC|0|1| +39|2023-10-06T22:04:24.4830000-07:00|10FF0003|Gegehi Gehi|73814|73814|4250|10000|||101.97|107.00|0.00|-3.06| +21|2023-10-06T22:04:24.4830000-07:00|10FF000B|Pusu Rosu|8C|Benediction|10FF000B|Pusu Rosu|4|35694001|0|0|0|0|0|0|0|0|0|0|0|0|0|0|15841|79209|2000|10000|||97.91|98.30|0.00|0.00|15841|79209|2000|10000|||97.91|98.30|0.00|0.00|000113AD|0|1| +21|2023-10-06T22:04:24.4830000-07:00|10FF000A|Dukaro Nezikaro|8C1|Shade Shift|10FF000A|Dukaro Nezikaro|3C0E|1E80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.07|102.72|0.00|3.09|83502|83502|10000|10000|||100.07|102.72|0.00|3.09|000113AE|0|1| +38|2023-10-06T22:04:24.4830000-07:00|10FF000B|Pusu Rosu|005A5A18|15841|79209|2000|10000|0||97.91|98.30|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:04:24.4830000-07:00|1A2|Transcendent|0.00|E0000000||10FF000B|Pusu Rosu|00|79209|| +39|2023-10-06T22:04:24.5270000-07:00|10FF000B|Pusu Rosu|16633|79209|2281|10000|||97.91|98.30|0.00|0.00| +261|2023-10-06T22:04:24.1120000-07:00|Change|10FF000B||| +37|2023-10-06T22:04:24.5720000-07:00|40021585|Zeromus|000113A6|2238818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:24.5720000-07:00|10FF0006|Wowobora Gogobora|000113A6|81809|81809|1800|10000|0||104.36|94.53|0.00|-2.85|1B00|0|0|01|05000B25|0|0|| +21|2023-10-06T22:04:24.5720000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|115B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2250851|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|1800|10000|||104.36|94.53|0.00|-2.85|000113AF|0|1| +38|2023-10-06T22:04:24.5720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|1800|10000|0||104.36|94.53|0.00|-2.85|0|0|0|||||||||||||||| +30|2023-10-06T22:04:24.5720000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T22:04:24.6620000-07:00|40021585|Zeromus|DoT|0|113A|2238818|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0006|Wowobora Gogobora|FFFFFFFF|81809|81809|1800|10000|||104.36|94.53|0.00|-2.85| +38|2023-10-06T22:04:24.6620000-07:00|40021585|Zeromus|005A5A00|2234408|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +37|2023-10-06T22:04:24.7070000-07:00|40021585|Zeromus|000113A7|2219774||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:04:24.7070000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0008|Kokosaze Lulusaze|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|000113B0|0|8| +22|2023-10-06T22:04:24.7070000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0001|Sesuga Sapisuga|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9200|10000|||107.46|93.33|0.00|-2.63|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|000113B0|1|8| +22|2023-10-06T22:04:24.7070000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0006|Wowobora Gogobora|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|1800|10000|||104.36|94.53|0.00|-2.85|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|000113B0|2|8| +22|2023-10-06T22:04:24.7070000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0007|Kehabiqo Febiqo|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|111510|129844|10000|10000|||103.18|99.50|0.00|-2.98|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|000113B0|3|8| +22|2023-10-06T22:04:24.7070000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000A|Dukaro Nezikaro|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||100.02|101.03|0.00|3.09|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|000113B0|4|8| +22|2023-10-06T22:04:24.7070000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF000B|Pusu Rosu|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|16633|79209|2281|10000|||97.91|98.30|0.00|0.00|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|000113B0|5|8| +22|2023-10-06T22:04:24.7070000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0003|Gegehi Gehi|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4250|10000|||102.17|107.01|0.00|-3.05|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|000113B0|6|8| +22|2023-10-06T22:04:24.7070000-07:00|10FF0008|Kokosaze Lulusaze|41F9|Tactician|10FF0004|Buhojaqe Zijaqe|F60E|79F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3500|10000|||114.46|110.06|0.00|-2.14|90216|90216|10000|10000|||113.49|95.47|0.00|-2.31|000113B0|7|8| +261|2023-10-06T22:04:24.3090000-07:00|Change|40021A66||| +37|2023-10-06T22:04:24.7510000-07:00|40021585|Zeromus|0001139F|2208987||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:24.7510000-07:00|10FF0001|Sesuga Sapisuga|0001139F|129071|129071|9600|10000|0||107.46|93.33|0.00|-2.63|1300|0|0|0| +39|2023-10-06T22:04:24.7960000-07:00|10FF0006|Wowobora Gogobora|81809|81809|2000|10000|||104.36|94.53|0.00|-2.85| +261|2023-10-06T22:04:24.4010000-07:00|Change|10FF0001||| +261|2023-10-06T22:04:24.4010000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:04:24.8400000-07:00|40021585|Zeromus|000113AB|2205378||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:24.8850000-07:00|10FF000A|Dukaro Nezikaro|000113AE|83502|83502|10000|10000|19||99.91|100.22|0.00|3.09|1E00|0|0|01|030001E8|0|41A00000|| +26|2023-10-06T22:04:24.8850000-07:00|1E8|Shade Shift|20.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +38|2023-10-06T22:04:24.8850000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|19||99.91|100.22|0.00|3.09|0|0|0|||||||||||||||| +21|2023-10-06T22:04:24.9310000-07:00|40021585|Zeromus|8B6B|Nostalgia|40021585|Zeromus|1B|8B6B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2205378|40478540|10000|10000|||100.00|80.10|0.00|0.00|2205378|40478540|10000|10000|||100.00|80.10|0.00|0.00|000113B1|0|1| +37|2023-10-06T22:04:24.9750000-07:00|10FF000B|Pusu Rosu|000113A9|21963||||||97.91|98.30|0.00|0.00| +37|2023-10-06T22:04:24.9750000-07:00|40021585|Zeromus|000113AC|2203134||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:25.0190000-07:00|4002159D|Zeromus|8B73|Primal Roar|4002159D|Zeromus|9.400|100.08|99.20|0.00|0.00| +20|2023-10-06T22:04:25.0190000-07:00|4002159E|Zeromus|8B72|Roar|4002159E|Zeromus|6.400|94.92|94.02|0.00|0.00| +20|2023-10-06T22:04:25.0190000-07:00|4002159F|Zeromus|8B71|Roar|4002159F|Zeromus|5.400|99.81|96.52|0.00|0.00| +20|2023-10-06T22:04:25.0190000-07:00|400215A0|Zeromus|8B70|Bury|400215A0|Zeromus|3.400|82.75|113.09|0.00|0.00| +20|2023-10-06T22:04:25.0190000-07:00|400215A1|Zeromus|8B6F|Bury|400215A1|Zeromus|2.400|86.13|81.69|0.00|0.00| +20|2023-10-06T22:04:25.0190000-07:00|400215A3|Zeromus|8B6D|Bury|400215A3|Zeromus|0.400|100.20|101.05|0.00|0.00| +20|2023-10-06T22:04:25.0190000-07:00|400215A2|Zeromus|8B6E|Bury|400215A2|Zeromus|1.400|100.41|93.94|0.00|0.00| +261|2023-10-06T22:04:24.5950000-07:00|Change|400215A3||||||||||||||||||||| +38|2023-10-06T22:04:25.0190000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|3500|10000|0||112.37|110.00|0.00|-1.79|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:25.0190000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:04:25.0190000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|19||99.88|100.07|0.00|3.09|0|0|0||||||||||||| +261|2023-10-06T22:04:24.5950000-07:00|Change|4002159F||||||||||||||||||||| +30|2023-10-06T22:04:25.0190000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +261|2023-10-06T22:04:24.5950000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:04:24.5950000-07:00|Change|4002159E||||||||||||||||||||| +261|2023-10-06T22:04:24.5950000-07:00|Change|400215A2||||||||||||||||||||| +261|2023-10-06T22:04:24.5950000-07:00|Change|400215A0||||||||||||||||||||| +261|2023-10-06T22:04:24.5950000-07:00|Change|400215A1||||||||||||||||||||| +261|2023-10-06T22:04:24.5950000-07:00|Change|4002159D||||||||||||||||||||| +261|2023-10-06T22:04:24.5950000-07:00|Change|10FF0003||||||||| +38|2023-10-06T22:04:25.0640000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||110.62|95.19|-0.02|-1.66|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:25.0640000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +37|2023-10-06T22:04:25.1070000-07:00|10FF000B|Pusu Rosu|000113AD|79209||||||97.91|98.30|0.00|0.00| +38|2023-10-06T22:04:25.1550000-07:00|40021A67||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:04:25.1550000-07:00|10FF0007|Kehabiqo Febiqo|000113AA|121547|129844|10000|10000|13||101.20|97.87|-0.02|-2.98|1500|0|0|01|04000129|0|41E88103|| +39|2023-10-06T22:04:25.1550000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||110.62|95.19|-0.02|-1.66| +261|2023-10-06T22:04:24.7170000-07:00|Change|40021A64||||| +38|2023-10-06T22:04:25.1550000-07:00|40021A67||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:04:24.7170000-07:00|Change|10FF0007||||||||| +21|2023-10-06T22:04:25.1970000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|E1F0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2203134|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||110.50|95.22|0.00|-1.62|000113B2|0|1| +37|2023-10-06T22:04:25.2410000-07:00|40021585|Zeromus|000113A8|2185830||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:25.2410000-07:00|10FF0006|Wowobora Gogobora|1D8A|Lucid Dreaming|10FF0006|Wowobora Gogobora|260E|4B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|2000|10000|||104.36|94.53|0.00|-2.85|81809|81809|2000|10000|||104.36|94.53|0.00|-2.85|000113B3|0|1| +20|2023-10-06T22:04:25.2850000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|1.944|102.03|104.75|0.00|-3.03| +37|2023-10-06T22:04:25.3310000-07:00|10FF0008|Kokosaze Lulusaze|000113B0|90216|90216|10000|10000|0||110.06|95.30|0.00|-1.57|1F00|0|0|01|0300079F|0|41700000|| +26|2023-10-06T22:04:25.3310000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T22:04:25.3310000-07:00|40021585|Zeromus|000113AF|2181387||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:25.4200000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|32E70000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|2181387|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.09|000113B4|0|1| +261|2023-10-06T22:04:24.9470000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:25.0600000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:04:25.4640000-07:00|10FF0001|Sesuga Sapisuga|000113B0|129071|129071|9600|10000|0||107.46|93.33|0.00|-2.63|1301|0|0|01|0400079F|0|41700000|| +26|2023-10-06T22:04:25.4640000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +21|2023-10-06T22:04:25.5090000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|B6C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2181387|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9600|10000|||107.46|93.33|0.00|-2.63|000113B5|0|1| +31|2023-10-06T22:04:25.5090000-07:00|10FF0001||||| +03|2023-10-06T22:04:25.0600000-07:00|40021A67|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||103.87|92.86|0.00|0.29| +261|2023-10-06T22:04:25.0600000-07:00|Add|40021A67||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:25.5530000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:04:25.5530000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|36DE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2181387|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||108.05|95.67|0.00|-1.44|000113B6|0|1| +261|2023-10-06T22:04:25.0600000-07:00|Change|40021A67||| +37|2023-10-06T22:04:25.5970000-07:00|10FF0006|Wowobora Gogobora|000113B0|81809|81809|2000|10000|0||104.36|94.53|0.00|-2.85|1B02|0|0|01|0500079F|0|41700000|| +26|2023-10-06T22:04:25.5970000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +21|2023-10-06T22:04:25.6420000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22500000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|2181387|40478540|10000|10000|||100.00|80.10|0.00|0.00|121547|129844|10000|10000|||100.17|95.87|0.00|3.13|000113B7|0|1| +22|2023-10-06T22:04:25.6420000-07:00|10FF000B|Pusu Rosu|DF1|Asylum|10FF000B|Pusu Rosu|BD2D0F|7778000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|2281|10000|||97.91|98.30|0.00|0.00|79209|79209|2281|10000|||97.91|98.30|0.00|0.00|000113B8|0|1| +22|2023-10-06T22:04:25.6850000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0006|Wowobora Gogobora|730003|282D0000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|2000|10000|||104.36|94.54|0.00|-2.31|44|44|0|10000|||100.00|80.10|0.00|0.00|000113B9|0|8| +22|2023-10-06T22:04:25.6850000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0001|Sesuga Sapisuga|730003|1D170000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9600|10000|||107.46|93.33|0.00|-2.63|44|44|0|10000|||100.00|80.10|0.00|0.00|000113B9|1|8| +22|2023-10-06T22:04:25.6850000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0007|Kehabiqo Febiqo|730603|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|121547|129844|10000|10000|||100.17|95.87|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113B9|2|8| +22|2023-10-06T22:04:25.6850000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0008|Kokosaze Lulusaze|730003|300D0000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||107.06|95.97|0.00|-2.59|44|44|0|10000|||100.00|80.10|0.00|0.00|000113B9|3|8| +22|2023-10-06T22:04:25.6850000-07:00|400215A3|Zeromus|8B6D|Bury|10FF000B|Pusu Rosu|730003|30880000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|2281|10000|||97.91|98.30|0.00|0.00|44|44|0|10000|||100.00|80.10|0.00|0.00|000113B9|4|8| +22|2023-10-06T22:04:25.6850000-07:00|400215A3|Zeromus|8B6D|Bury|10FF000A|Dukaro Nezikaro|730003|0|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113B9|5|8| +22|2023-10-06T22:04:25.6850000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0003|Gegehi Gehi|730003|38830000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|4250|10000|||101.95|104.03|0.00|-3.05|44|44|0|10000|||100.00|80.10|0.00|0.00|000113B9|6|8| +22|2023-10-06T22:04:25.6850000-07:00|400215A3|Zeromus|8B6D|Bury|10FF0004|Buhojaqe Zijaqe|730003|31ED0000|1B|8B6D8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3500|10000|||108.58|108.85|0.00|-1.89|44|44|0|10000|||100.00|80.10|0.00|0.00|000113B9|7|8| +261|2023-10-06T22:04:25.2700000-07:00|Change|400215A3||||||||||||| +37|2023-10-06T22:04:25.7310000-07:00|10FF0007|Kehabiqo Febiqo|000113B0|121547|129844|10000|10000|13||100.10|95.78|0.00|3.14|1503|0|0|01|0600079F|0|41700000|| +26|2023-10-06T22:04:25.7310000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +39|2023-10-06T22:04:25.8190000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|9800|10000|||107.46|93.33|0.00|-2.63| +37|2023-10-06T22:04:25.8630000-07:00|10FF000A|Dukaro Nezikaro|000113B0|83502|83502|10000|10000|19||99.81|99.78|0.00|3.13|1E04|0|0|01|0400079F|0|41700000|| +26|2023-10-06T22:04:25.8630000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|83502|90216| +37|2023-10-06T22:04:25.8630000-07:00|10FF0006|Wowobora Gogobora|000113B3|81809|81809|2000|10000|0||104.36|94.55|0.00|-1.24|1B00|0|0|01|060004B4|0|41A80000|| +26|2023-10-06T22:04:25.8630000-07:00|4B4|Lucid Dreaming|21.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:04:25.8630000-07:00|10FF0006|Wowobora Gogobora|000113B9|71524||||||104.36|94.55|0.00|-1.24| +261|2023-10-06T22:04:25.4640000-07:00|Change|10FF0001||| +37|2023-10-06T22:04:25.9080000-07:00|10FF0001|Sesuga Sapisuga|000113B9|121624||||||107.46|93.33|0.00|-2.63| +37|2023-10-06T22:04:25.9520000-07:00|40021585|Zeromus|000113B2|2177772||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:25.9520000-07:00|10FF0007|Kehabiqo Febiqo|000113B9|121547|129844|10000|10000|7||99.97|95.62|0.00|3.14|1502|0|0|0| +37|2023-10-06T22:04:25.9520000-07:00|40021585|Zeromus|000113B4|2164741||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:25.9520000-07:00|10FF0001|Sesuga Sapisuga|404C|Atonement|40021585|Zeromus|710003|28D60000|B|1908000|0|0|0|0|0|0|0|0|0|0|0|0|2181387|40478540|10000|10000|||100.00|80.10|0.00|0.00|121624|129071|9800|10000|||107.46|93.33|0.00|-2.63|000113BA|0|1| +38|2023-10-06T22:04:25.9520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|121624|129071|9800|10000|0||107.46|93.33|0.00|-2.63|0|0|0|||||||||||||||| +30|2023-10-06T22:04:25.9520000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +261|2023-10-06T22:04:25.5630000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:25.6590000-07:00|Change|10FF0003||||||||||||||||||| +37|2023-10-06T22:04:25.9960000-07:00|10FF000B|Pusu Rosu|000113B0|79209|79209|2281|10000|0||97.89|98.28|0.00|0.68|1805|0|0|01|0200079F|0|41700000|| +26|2023-10-06T22:04:25.9960000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|79209|90216| +37|2023-10-06T22:04:25.9960000-07:00|10FF0008|Kokosaze Lulusaze|000113B9|77915||||||103.39|97.34|0.00|-1.34| +37|2023-10-06T22:04:26.0420000-07:00|40021585|Zeromus|000113B5|2161817||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:26.0420000-07:00|10FF000B|Pusu Rosu|000113B9|66785||||||97.89|98.28|0.00|0.68| +37|2023-10-06T22:04:26.0860000-07:00|10FF000A|Dukaro Nezikaro|000113B9|83502|83502|10000|10000|5||99.81|99.78|0.00|3.13|1E05|0|0|0| +24|2023-10-06T22:04:26.0860000-07:00|10FF0007|Kehabiqo Febiqo|HoT|798|15CD|121547|129844|10000|10000|||99.93|95.57|-0.02|3.14|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3500|10000|||107.78|108.22|0.00|-2.16| +24|2023-10-06T22:04:26.0860000-07:00|10FF0006|Wowobora Gogobora|HoT|798|1524|71524|81809|2000|10000|||103.23|96.17|0.00|-0.76|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3500|10000|||107.78|108.22|0.00|-2.16| +24|2023-10-06T22:04:26.0860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|798|D9F|90216|90216|10000|10000|||103.39|97.34|0.00|-1.34|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3500|10000|||107.78|108.22|0.00|-2.16| +24|2023-10-06T22:04:26.0860000-07:00|10FF000B|Pusu Rosu|HoT|798|D63|79209|79209|2281|10000|||97.89|98.28|0.00|0.68|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3500|10000|||107.78|108.22|0.00|-2.16| +24|2023-10-06T22:04:26.0860000-07:00|10FF000A|Dukaro Nezikaro|HoT|798|159A|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3500|10000|||107.78|108.22|0.00|-2.16| +24|2023-10-06T22:04:26.0860000-07:00|10FF0001|Sesuga Sapisuga|HoT|798|15C4|121624|129071|9800|10000|||107.46|93.33|0.00|-2.63|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3500|10000|||107.78|108.22|0.00|-2.16| +24|2023-10-06T22:04:26.0860000-07:00|10FF0003|Gegehi Gehi|HoT|798|D27|73814|73814|4250|10000|||101.91|103.68|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|3500|10000|||107.78|108.22|0.00|-2.16| +38|2023-10-06T22:04:26.0860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127128|129844|10000|10000|7||99.93|95.57|-0.02|3.14|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:26.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:04:26.0860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|81402|90216|10000|10000|0||103.39|97.34|0.00|-1.34|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:26.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:26.0860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76936|81809|2000|10000|0||103.23|96.17|0.00|-0.76|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:26.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:04:26.0860000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|127196|129071|9800|10000|0||107.46|93.33|0.00|-2.63|0|0|0|||||||||||||||| +26|2023-10-06T22:04:26.0860000-07:00|12B|Sacred Soil|5.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:04:26.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|4050|10000|0||107.78|108.22|0.00|-2.16|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:26.0860000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|4250|10000|0||101.91|103.68|0.00|-3.06|0|0|0|||||||||||||||| +26|2023-10-06T22:04:26.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:04:26.0860000-07:00|10FF000B|Pusu Rosu|005A5A18|70212|79209|2281|10000|0||97.89|98.28|0.00|0.68|0|0|0|||||||||||||||| +26|2023-10-06T22:04:26.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:04:26.0860000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|5||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||| +26|2023-10-06T22:04:26.0860000-07:00|12B|Sacred Soil|4.96|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:04:26.1300000-07:00|10FF0003|Gegehi Gehi|000113B0|73814|73814|4250|10000|0||101.91|103.68|0.00|-3.06|2306|0|0|01|0300079F|0|41700000|| +26|2023-10-06T22:04:26.1300000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +37|2023-10-06T22:04:26.1300000-07:00|10FF0003|Gegehi Gehi|000113B9|59347||||||101.91|103.68|0.00|-3.06| +37|2023-10-06T22:04:26.1760000-07:00|10FF0004|Buhojaqe Zijaqe|000113B9|68760||||||107.78|108.22|0.00|-2.16| +261|2023-10-06T22:04:25.6590000-07:00|Change|10FF0006||||||||||| +21|2023-10-06T22:04:26.1760000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|750003|27FB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2164741|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|000113BB|0|1| +34|2023-10-06T22:04:26.1760000-07:00|40021A67|Carbuncle|40021A67|Carbuncle|01| +38|2023-10-06T22:04:26.1760000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76936|81809|2550|10000|0||103.23|96.17|0.00|-0.76|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:04:25.7800000-07:00|Change|40021A67||| +37|2023-10-06T22:04:26.2200000-07:00|40021585|Zeromus|000113B6|2147771||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:26.2200000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|19EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2161817|40478540|10000|10000|||100.00|80.10|0.00|0.00|81402|90216|10000|10000|||102.73|97.59|0.00|-1.30|000113BC|0|1| +37|2023-10-06T22:04:26.2640000-07:00|40021585|Zeromus|000113B7|2138987||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:26.2640000-07:00|10FF0004|Buhojaqe Zijaqe|000113B0|68760|81541|4050|10000|0||107.74|108.17|0.00|-2.37|1C07|0|0|01|0500079F|0|41700000|| +26|2023-10-06T22:04:26.2640000-07:00|79F|Tactician|15.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +39|2023-10-06T22:04:26.3530000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.81|99.78|0.00|3.13| +21|2023-10-06T22:04:26.3530000-07:00|10FF0007|Kehabiqo Febiqo|1D6F|Reprisal|40021585|Zeromus|F60E|4A90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2138987|40478540|10000|10000|||100.00|80.10|0.00|0.00|127128|129844|10000|10000|||99.93|95.57|0.00|3.14|000113BD|0|1| +21|2023-10-06T22:04:26.4420000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|454003|32BB0000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|2138987|40478540|10000|10000|||100.00|80.10|0.00|0.00|76936|81809|2550|10000|||102.53|96.93|0.00|-0.71|000113BE|0|1| +38|2023-10-06T22:04:26.4420000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|76936|81809|2250|10000|0||102.53|96.93|0.00|-0.71|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:26.4420000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +24|2023-10-06T22:04:26.4880000-07:00|10FF0003|Gegehi Gehi|HoT|777|A19|59347|73814|4250|10000|||101.91|103.68|0.00|-3.06|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|9EB|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF000B|Pusu Rosu|HoT|777|A5E|70212|79209|2281|10000|||97.95|98.28|0.00|1.34|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A12|81402|90216|10000|10000|||101.40|98.09|0.00|-3.04|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0006|Wowobora Gogobora|HoT|777|F40|76936|81809|2250|10000|||102.35|96.90|0.00|-3.03|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|9CC|127128|129844|10000|10000|||99.93|95.57|0.00|3.14|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A5B|68760|81541|4050|10000|||106.95|107.05|0.00|-2.48|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A0C|127196|129071|9800|10000|||107.20|93.48|0.00|-1.82|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +37|2023-10-06T22:04:26.4880000-07:00|10FF000B|Pusu Rosu|000113B8|72866|79209|2281|10000|0||97.95|98.28|0.00|1.34|1800|0|0|02|05000777|0|41C00000|||||| +26|2023-10-06T22:04:26.4880000-07:00|777|Asylum|24.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +26|2023-10-06T22:04:26.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T22:04:26.4880000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||99.93|95.57|0.00|3.14| +24|2023-10-06T22:04:26.4880000-07:00|10FF0003|Gegehi Gehi|HoT|777|A49|59347|73814|4250|10000|||101.91|103.68|0.00|-3.06|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|A2B|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF000B|Pusu Rosu|HoT|777|A20|70212|79209|2281|10000|||97.95|98.28|0.00|1.34|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|F82|81402|90216|10000|10000|||101.40|98.09|0.00|-3.04|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A46|76936|81809|2250|10000|||102.35|96.90|0.00|-3.03|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A5C|127128|129844|10000|10000|||99.93|95.57|0.00|3.14|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|9F2|68760|81541|4050|10000|||106.95|107.05|0.00|-2.48|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +24|2023-10-06T22:04:26.4880000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A53|127196|129071|9800|10000|||107.20|93.48|0.00|-1.82|10FF000B|Pusu Rosu|0|70212|79209|2281|10000|||97.95|98.28|0.00|1.34| +38|2023-10-06T22:04:26.4880000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|7||99.93|95.57|0.00|3.14|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:26.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:26.4880000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|87950|90216|10000|10000|0||101.40|98.09|0.00|-3.04|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:26.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:26.4880000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|2250|10000|0||102.35|96.90|0.00|-3.03|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:26.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:04:26.4880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9800|10000|0||107.20|93.48|0.00|-1.82|0|0|0||||||||||||||||||| +26|2023-10-06T22:04:26.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:04:26.4880000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|73957|81541|4050|10000|0||106.95|107.05|0.00|-2.48|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:26.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:26.4880000-07:00|10FF0003|Gegehi Gehi|005A5A23|64565|73814|4250|10000|0||101.91|103.68|0.00|-3.06|0|0|0||||||||||||||||||| +26|2023-10-06T22:04:26.4880000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:26.4880000-07:00|10FF000B|Pusu Rosu|005A5A18|75458|79209|2281|10000|0||97.95|98.28|0.00|1.34|0|0|0|||||||||||||||||||||| +38|2023-10-06T22:04:26.4880000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|5||99.81|99.78|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:26.4880000-07:00|778|Asylum|4.95|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:04:26.0120000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:04:26.6210000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AAF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2138987|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|000113BF|0|1| +22|2023-10-06T22:04:26.7110000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0001|Sesuga Sapisuga|730003|1CF40000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|9800|10000|||106.87|94.64|0.00|-1.82|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C0|0|8| +22|2023-10-06T22:04:26.7110000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0007|Kehabiqo Febiqo|730603|0|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|95.57|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C0|1|8| +22|2023-10-06T22:04:26.7110000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0006|Wowobora Gogobora|730003|29200000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|2250|10000|||102.07|96.84|0.00|-3.03|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C0|2|8| +22|2023-10-06T22:04:26.7110000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0008|Kokosaze Lulusaze|730003|2C430000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|87950|90216|10000|10000|||100.36|98.49|0.00|-2.24|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C0|3|8| +22|2023-10-06T22:04:26.7110000-07:00|400215A2|Zeromus|8B6E|Bury|10FF000A|Dukaro Nezikaro|730003|13480000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C0|4|8| +22|2023-10-06T22:04:26.7110000-07:00|400215A2|Zeromus|8B6E|Bury|10FF000B|Pusu Rosu|730003|29B40000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|75458|79209|2281|10000|||98.60|99.03|0.00|0.89|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C0|5|8| +22|2023-10-06T22:04:26.7110000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0003|Gegehi Gehi|730003|30990000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|64565|73814|4250|10000|||101.91|103.68|0.00|-3.06|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C0|6|8| +22|2023-10-06T22:04:26.7110000-07:00|400215A2|Zeromus|8B6E|Bury|10FF0004|Buhojaqe Zijaqe|730003|2C850000|1B|8B6E8000|0|0|0|0|0|0|0|0|0|0|0|0|73957|81541|4050|10000|||106.07|105.77|0.00|-2.51|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C0|7|8| +21|2023-10-06T22:04:26.7110000-07:00|10FF0003|Gegehi Gehi|1D56|Verfire|40021585|Zeromus|152003|4FE30000|5003E|BA8000|1B|1D568000|0|0|0|0|0|0|0|0|0|0|2138987|40478540|10000|10000|||100.00|80.10|0.00|0.00|64565|73814|4250|10000|||101.91|103.68|0.00|-3.06|000113C1|0|1| +261|2023-10-06T22:04:26.2220000-07:00|Change|10FF000B||||||||||||||||| +38|2023-10-06T22:04:26.7110000-07:00|10FF0003|Gegehi Gehi|005A5A23|64565|73814|4050|10000|0||101.91|103.68|0.00|-3.06|0|0|0||||||||||||||||||| +30|2023-10-06T22:04:26.7110000-07:00|4D2|Verfire Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:04:26.7110000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +20|2023-10-06T22:04:26.7110000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|98.60|99.03|0.00|0.89| +261|2023-10-06T22:04:26.2220000-07:00|Add|40021A68||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:26.2220000-07:00|Change|400215A2||||||||||||| +37|2023-10-06T22:04:26.8000000-07:00|40021585|Zeromus|000113BB|2128752||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:26.8000000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|480000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2138987|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|2250|10000|||102.07|96.84|0.00|-3.03|000113C2|0|1| +37|2023-10-06T22:04:26.8880000-07:00|10FF0001|Sesuga Sapisuga|000113C0|121659||||||106.45|95.09|0.00|-1.84| +37|2023-10-06T22:04:26.9330000-07:00|10FF0007|Kehabiqo Febiqo|000113C0|129844|129844|10000|10000|2||99.93|95.57|0.00|3.14|1501|0|0|0| +37|2023-10-06T22:04:26.9780000-07:00|40021585|Zeromus|000113BD|2128752|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|040004A9|0|41200000|| +26|2023-10-06T22:04:26.9780000-07:00|4A9|Reprisal|10.00|10FF0007|Kehabiqo Febiqo|40021585|Zeromus|00|40478540|129844| +37|2023-10-06T22:04:26.9780000-07:00|10FF0006|Wowobora Gogobora|000113C0|71281||||||101.84|96.80|0.00|-3.03| +37|2023-10-06T22:04:27.0230000-07:00|40021585|Zeromus|000113BC|2122118||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:27.0230000-07:00|10FF0008|Kokosaze Lulusaze|000113C0|76619||||||99.47|98.84|0.00|-1.35| +26|2023-10-06T22:04:27.0230000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:04:27.0230000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2B650000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2128752|40478540|10000|10000|||100.00|80.10|0.00|0.00|87950|90216|10000|10000|||99.47|98.84|0.00|-1.35|000113C3|0|1| +37|2023-10-06T22:04:27.0670000-07:00|40021585|Zeromus|000113BE|2109131||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:27.0670000-07:00|10FF0006|Wowobora Gogobora|000113BE|71281|81809|2250|10000|0||101.79|96.79|0.00|-3.03|1B00|0|0|01|07000B25|0|0|| +37|2023-10-06T22:04:27.0670000-07:00|10FF000A|Dukaro Nezikaro|000113C0|78566|83502|10000|10000|0||99.81|99.78|0.00|3.13|1E04|0|0|01|03000000|0|0|| +21|2023-10-06T22:04:27.0670000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|456003|23E00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2128752|40478540|10000|10000|||100.00|80.10|0.00|0.00|71281|81809|2250|10000|||101.79|96.79|0.00|-3.03|000113C4|0|1| +38|2023-10-06T22:04:27.0670000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71281|81809|2250|10000|0||101.79|96.79|0.00|-3.03|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:27.0670000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:04:27.0670000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78566|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:27.0670000-07:00|1E8|Shade Shift|0.00|10FF000A|Dukaro Nezikaro|10FF000A|Dukaro Nezikaro|00|83502|83502| +37|2023-10-06T22:04:27.1110000-07:00|10FF000B|Pusu Rosu|000113C0|64782||||||99.06|99.71|-0.01|0.05| +39|2023-10-06T22:04:27.1110000-07:00|10FF0004|Buhojaqe Zijaqe|74772|81541|4250|10000|||104.37|103.35|0.00|-2.52| +261|2023-10-06T22:04:26.6360000-07:00|Change|10FF0003||||||||||||||||| +37|2023-10-06T22:04:27.1570000-07:00|10FF0003|Gegehi Gehi|000113C0|52124||||||101.91|103.68|0.00|-3.06| +37|2023-10-06T22:04:27.1570000-07:00|40021585|Zeromus|000113BF|2106396||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:26.7460000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:26.7460000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:04:27.2010000-07:00|10FF0004|Buhojaqe Zijaqe|000113C0|63375||||||104.37|103.35|0.00|-2.52| +39|2023-10-06T22:04:27.2010000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98| +38|2023-10-06T22:04:27.2010000-07:00|40021585|Zeromus|005A5A00|2106396|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T22:04:27.2010000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +261|2023-10-06T22:04:26.7460000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:04:27.2450000-07:00|40021585|Zeromus|000113BA|2095942||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:27.2450000-07:00|10FF0001|Sesuga Sapisuga|000113BA|121659|129071|10000|10000|0||104.23|96.31|0.00|-1.87|1300|0|0|0| +20|2023-10-06T22:04:27.2450000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|104.00|102.83|-0.02|-2.53| +261|2023-10-06T22:04:26.8700000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:27.3340000-07:00|40021585|Zeromus|000113C2|2095870||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:27.3340000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63375|81541|4250|10000|0||104.00|102.83|-0.02|-2.53|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:27.3340000-07:00|798|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +39|2023-10-06T22:04:27.4660000-07:00|10FF0003|Gegehi Gehi|52862|73814|4250|10000|||101.90|103.60|0.00|-3.03| +37|2023-10-06T22:04:27.5110000-07:00|40021585|Zeromus|000113C1|2075419||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:27.5110000-07:00|10FF000B|Pusu Rosu|65574|79209|2562|10000|||99.11|99.78|0.00|-0.03| +38|2023-10-06T22:04:27.5110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63375|81541|4250|10000|0||103.80|102.50|0.00|-2.57|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:27.5110000-07:00|4B4|Lucid Dreaming|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:04:27.1010000-07:00|Change|10FF000B||||||||||| +261|2023-10-06T22:04:27.1010000-07:00|Remove|40021A5F| +37|2023-10-06T22:04:27.6900000-07:00|40021585|Zeromus|000113C3|2064310||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:27.6900000-07:00|40021585|Zeromus|DoT|0|10DC|2075419|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|129844|129844|10000|10000|||99.90|96.08|0.00|-0.76| +21|2023-10-06T22:04:27.6900000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2075419|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.90|96.08|0.00|-0.76|000113C5|0|1| +21|2023-10-06T22:04:27.6900000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|13A00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2075419|40478540|10000|10000|||100.00|80.10|0.00|0.00|76619|90216|10000|10000|||99.32|98.89|0.00|3.11|000113C6|0|1| +26|2023-10-06T22:04:27.6900000-07:00|130|Aetherflow|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +21|2023-10-06T22:04:27.6900000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|754003|31AB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2075419|40478540|10000|10000|||100.00|80.10|0.00|0.00|71281|81809|2250|10000|||101.79|96.79|0.00|-3.03|000113C7|0|1| +22|2023-10-06T22:04:27.6900000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0007|Kehabiqo Febiqo|730603|ECD0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.90|96.08|0.00|-0.76|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C8|0|8| +22|2023-10-06T22:04:27.6900000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0006|Wowobora Gogobora|730003|265C0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|71281|81809|2250|10000|||101.79|96.79|0.00|-3.03|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C8|1|8| +22|2023-10-06T22:04:27.6900000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0001|Sesuga Sapisuga|730003|18CC0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|121659|129071|10000|10000|||102.49|97.97|0.00|-2.00|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C8|2|8| +22|2023-10-06T22:04:27.6900000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0008|Kokosaze Lulusaze|730003|289E0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|76619|90216|10000|10000|||99.32|98.89|0.00|3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C8|3|8| +22|2023-10-06T22:04:27.6900000-07:00|400215A1|Zeromus|8B6F|Bury|10FF000A|Dukaro Nezikaro|730003|22D40000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|78566|83502|10000|10000|||99.81|99.78|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C8|4|8| +22|2023-10-06T22:04:27.6900000-07:00|400215A1|Zeromus|8B6F|Bury|10FF000B|Pusu Rosu|730003|26EA0000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|65574|79209|2562|10000|||99.11|99.78|0.00|-0.03|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C8|5|8| +22|2023-10-06T22:04:27.6900000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0004|Buhojaqe Zijaqe|730003|27E70000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|63375|81541|4250|10000|||103.61|102.20|0.00|-2.61|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C8|6|8| +22|2023-10-06T22:04:27.6900000-07:00|400215A1|Zeromus|8B6F|Bury|10FF0003|Gegehi Gehi|730003|2CF50000|1B|8B6F8000|0|0|0|0|0|0|0|0|0|0|0|0|52862|73814|4250|10000|||101.83|103.16|0.00|-3.01|44|44|0|10000|||100.00|80.10|0.00|0.00|000113C8|7|8| +21|2023-10-06T22:04:27.6900000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|350003|33E90000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|2075419|40478540|10000|10000|||100.00|80.10|0.00|0.00|52862|73814|4250|10000|||101.83|103.16|0.00|-3.01|000113C9|0|1| +38|2023-10-06T22:04:27.6900000-07:00|40021585|Zeromus|005A5A00|2059994|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +38|2023-10-06T22:04:27.6900000-07:00|10FF0003|Gegehi Gehi|005A5A23|52862|73814|3950|10000|0||101.83|103.16|0.00|-3.01|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:04:27.6900000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:04:27.6900000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +261|2023-10-06T22:04:27.2030000-07:00|Change|400215A1||||||||||||| +21|2023-10-06T22:04:27.7340000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1F9B0000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|2075419|40478540|10000|10000|||100.00|80.10|0.00|0.00|78566|83502|10000|10000|||99.81|99.78|0.00|3.13|000113CA|0|1| +39|2023-10-06T22:04:27.7780000-07:00|10FF0006|Wowobora Gogobora|72099|81809|2450|10000|||101.79|96.79|0.00|-3.03| +21|2023-10-06T22:04:27.7780000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6940000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2059994|40478540|10000|10000|||100.00|80.10|0.00|0.00|121659|129071|10000|10000|||101.87|98.17|0.00|-2.09|000113CB|0|1| +31|2023-10-06T22:04:27.7780000-07:00|10FF0001||||| +37|2023-10-06T22:04:27.8220000-07:00|40021585|Zeromus|000113C4|2050810||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:27.8670000-07:00|10FF0007|Kehabiqo Febiqo|000113C8|126055|129844|10000|10000|0||99.89|96.27|0.00|-0.48|1500|0|0|01|04000000|0|0|| +21|2023-10-06T22:04:27.8670000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8B40000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2059994|40478540|10000|10000|||100.00|80.10|0.00|0.00|76619|90216|10000|10000|||99.32|98.89|0.00|3.11|000113CC|0|1| +38|2023-10-06T22:04:27.8670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126055|129844|10000|10000|0||99.89|96.27|0.00|-0.48|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:27.8670000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T22:04:27.9120000-07:00|10FF0006|Wowobora Gogobora|000113C8|62279||||||101.79|96.79|0.00|-3.03| +21|2023-10-06T22:04:27.9120000-07:00|40021A66|Automaton Queen|4336|Roller Dash|40021585|Zeromus|730003|40240000|1B|43368000|0|0|0|0|0|0|0|0|0|0|0|0|2050810|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||116.99|98.07|0.00|2.89|000113CD|0|1| +37|2023-10-06T22:04:27.9560000-07:00|10FF0001|Sesuga Sapisuga|000113C8|115311||||||100.96|98.96|0.00|-2.35| +21|2023-10-06T22:04:27.9560000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|321B0000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|126055|129844|10000|10000|||99.87|96.54|0.00|-0.09|2050810|40478540|10000|10000|||100.00|80.10|0.00|0.00|000113CE|0|1| +37|2023-10-06T22:04:28.0010000-07:00|10FF0008|Kokosaze Lulusaze|000113C8|66221||||||99.32|98.89|0.00|3.11| +37|2023-10-06T22:04:28.0460000-07:00|10FF000A|Dukaro Nezikaro|000113C8|69650||||||99.81|99.78|0.00|3.13| +21|2023-10-06T22:04:28.0460000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0004|Buhojaqe Zijaqe|200004|24410000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|63375|81541|4250|10000|||103.56|102.13|0.00|-2.62|73956|77430|10000|10000|||103.41|100.48|0.00|-1.42|000113CF|0|1| +37|2023-10-06T22:04:28.0910000-07:00|10FF000B|Pusu Rosu|000113C8|55612||||||99.11|99.78|0.00|-0.03| +21|2023-10-06T22:04:28.0910000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|2ECB0000|143E|340000|200004|2A798000|11B|2A8000|0|0|0|0|0|0|0|0|2050810|40478540|10000|10000|||100.00|80.10|0.00|0.00|126055|129844|10000|10000|||99.87|96.54|0.00|-0.07|000113D0|0|1| +37|2023-10-06T22:04:28.1360000-07:00|10FF0004|Buhojaqe Zijaqe|000113C8|53160||||||103.56|102.13|0.00|-2.62| +37|2023-10-06T22:04:28.1360000-07:00|40021585|Zeromus|000113CA|2042719||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:28.1360000-07:00|10FF0008|Kokosaze Lulusaze|67123|90216|10000|10000|||99.32|98.89|0.00|3.11| +261|2023-10-06T22:04:27.7140000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:04:27.7140000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:04:27.7140000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:04:28.1810000-07:00|10FF0003|Gegehi Gehi|000113C8|41353|73814|3950|10000|0||101.73|102.43|0.00|-3.06|2307|0|0|01|060004D3|0|C1F00000|| +21|2023-10-06T22:04:28.1810000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2042719|40478540|10000|10000|||100.00|80.10|0.00|0.00|52862|73814|3950|10000|||101.73|102.43|0.00|-3.06|000113D1|0|1| +22|2023-10-06T22:04:28.1810000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|187E0000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|000113D2|0|8| +22|2023-10-06T22:04:28.1810000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|4|18620000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|69650|83502|10000|10000|||99.81|99.78|0.00|3.13|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|000113D2|1|8| +22|2023-10-06T22:04:28.1810000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|200004|269A0000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|67123|90216|10000|10000|||99.38|98.88|0.00|2.56|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|000113D2|2|8| +22|2023-10-06T22:04:28.1810000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|19760000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|126055|129844|10000|10000|||99.87|96.54|0.00|3.13|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|000113D2|3|8| +22|2023-10-06T22:04:28.1810000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|200004|26A70000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|115311|129071|10000|10000|||100.08|99.09|0.00|-2.62|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|000113D2|4|8| +22|2023-10-06T22:04:28.1810000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|4|18C80000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|52862|73814|3950|10000|||101.73|102.43|0.00|-3.06|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|000113D2|5|8| +22|2023-10-06T22:04:28.1810000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|19880000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|62279|81809|2450|10000|||101.77|96.82|0.00|-2.10|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|000113D2|6|8| +22|2023-10-06T22:04:28.1810000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|18FB0000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|53160|81541|4250|10000|||103.56|102.13|0.00|-2.62|55612|79209|2562|10000|||99.11|99.78|0.00|-0.03|000113D2|7|8| +37|2023-10-06T22:04:28.2250000-07:00|40021585|Zeromus|000113C5|2039855||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:28.3140000-07:00|40021585|Zeromus|000113C6|2034831||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:28.3140000-07:00|40021585|Zeromus|000113CB|2033147||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:28.4480000-07:00|40021585|Zeromus|000113C9|2019858||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:28.4480000-07:00|10FF0003|Gegehi Gehi|000113C9|41353|73814|3950|10000|0||101.73|102.43|0.00|-3.06|2300|0|0|01|060004D3|0|41F00000|| +21|2023-10-06T22:04:28.4490000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|714003|1A0E0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|2033147|40478540|10000|10000|||100.00|80.10|0.00|0.00|115311|129071|10000|10000|||100.08|99.09|0.00|-2.62|000113D3|0|1| +38|2023-10-06T22:04:28.4490000-07:00|10FF0003|Gegehi Gehi|005A5A23|41353|73814|3950|10000|0||101.73|102.43|0.00|-3.06|0|0|0|||||||||||||||||||||| +261|2023-10-06T22:04:28.0590000-07:00|Change|10FF000B||||||||||||||| +26|2023-10-06T22:04:28.5380000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:04:28.5380000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2A630000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2033147|40478540|10000|10000|||100.00|80.10|0.00|0.00|67123|90216|10000|10000|||99.52|98.86|0.00|2.18|000113D4|0|1| +37|2023-10-06T22:04:28.6290000-07:00|40021585|Zeromus|000113CC|2017630||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:28.6290000-07:00|40021585|Zeromus|000113C7|2004915||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:28.6290000-07:00|40021A66|Automaton Queen|82193|85668|10000|10000|||114.77|95.72|0.00|-2.38| +22|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|2CBC0000|930E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|000113D5|0|8| +22|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|4|1BD20000|830E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|41353|73814|3950|10000|||101.73|102.43|0.00|-3.06|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|000113D5|1|8| +22|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|1CEB0000|440E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|69650|83502|10000|10000|||99.81|99.78|0.00|3.13|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|000113D5|2|8| +22|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|200004|2CE10000|CE0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|115311|129071|10000|10000|||100.08|99.09|0.00|-2.62|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|000113D5|3|8| +22|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|4|1CB00000|E60E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|55612|79209|1562|10000|||99.11|99.78|0.00|-0.03|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|000113D5|4|8| +22|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|2CC10000|9B0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|67123|90216|10000|10000|||99.56|98.83|0.00|3.13|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|000113D5|5|8| +22|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1C520000|500E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|62279|81809|2450|10000|||101.20|96.93|-0.02|-1.32|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|000113D5|6|8| +22|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|2E480000|C0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|126055|129844|10000|10000|||99.90|96.14|0.00|3.09|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|000113D5|7|8| +38|2023-10-06T22:04:28.6290000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126055|129844|10000|10000|14||99.90|96.14|0.00|3.09|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:28.6290000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:04:28.6290000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|67123|90216|10000|10000|20||99.56|98.83|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:28.6290000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:28.6290000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62279|81809|2450|10000|14||101.20|96.93|-0.02|-1.32|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:28.6290000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:04:28.6290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|115311|129071|10000|10000|14||100.08|99.09|0.00|-2.62|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:28.6290000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:04:28.6290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|53160|81541|3250|10000|22||103.56|102.13|0.00|-2.62|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:28.6290000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:04:28.6290000-07:00|10FF0003|Gegehi Gehi|005A5A23|41353|73814|3950|10000|15||101.73|102.43|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:28.6290000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:04:28.6290000-07:00|10FF000B|Pusu Rosu|005A5A18|55612|79209|1562|10000|14||99.11|99.78|0.00|-0.03|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:28.6290000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:04:28.6290000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|69650|83502|10000|10000|14||99.81|99.78|0.00|3.13|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:28.6290000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:04:28.7170000-07:00|40021585|Zeromus|000113D1|2004886||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:04:28.7170000-07:00|400215A0|Zeromus|8B70|Bury|10FF0007|Kehabiqo Febiqo|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|126055|129844|10000|10000|||99.91|95.94|0.00|3.08|44|44|0|10000|||100.00|80.10|0.00|0.00|000113D6|0|8| +22|2023-10-06T22:04:28.7170000-07:00|400215A0|Zeromus|8B70|Bury|10FF0006|Wowobora Gogobora|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|62279|81809|2450|10000|||100.95|97.00|0.00|-1.64|44|44|0|10000|||100.00|80.10|0.00|0.00|000113D6|1|8| +22|2023-10-06T22:04:28.7170000-07:00|400215A0|Zeromus|8B70|Bury|10FF0008|Kokosaze Lulusaze|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|67123|90216|10000|10000|||99.60|98.83|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113D6|2|8| +22|2023-10-06T22:04:28.7170000-07:00|400215A0|Zeromus|8B70|Bury|10FF0001|Sesuga Sapisuga|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|115311|129071|10000|10000|||100.08|99.09|0.00|-2.62|44|44|0|10000|||100.00|80.10|0.00|0.00|000113D6|3|8| +22|2023-10-06T22:04:28.7170000-07:00|400215A0|Zeromus|8B70|Bury|10FF000A|Dukaro Nezikaro|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|69650|83502|10000|10000|||99.81|99.78|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113D6|4|8| +22|2023-10-06T22:04:28.7170000-07:00|400215A0|Zeromus|8B70|Bury|10FF000B|Pusu Rosu|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|55612|79209|1562|10000|||99.11|99.78|0.00|-0.03|44|44|0|10000|||100.00|80.10|0.00|0.00|000113D6|5|8| +22|2023-10-06T22:04:28.7170000-07:00|400215A0|Zeromus|8B70|Bury|10FF0004|Buhojaqe Zijaqe|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|53160|81541|3250|10000|||103.56|102.13|0.00|-2.62|44|44|0|10000|||100.00|80.10|0.00|0.00|000113D6|6|8| +22|2023-10-06T22:04:28.7170000-07:00|400215A0|Zeromus|8B70|Bury|10FF0003|Gegehi Gehi|730603|0|1B|8B708000|0|0|0|0|0|0|0|0|0|0|0|0|41353|73814|3950|10000|||101.73|102.43|0.00|-3.06|44|44|0|10000|||100.00|80.10|0.00|0.00|000113D6|7|8| +261|2023-10-06T22:04:28.2760000-07:00|Change|400215A0||||||||||||| +37|2023-10-06T22:04:28.7610000-07:00|10FF0007|Kehabiqo Febiqo|000113CE|113228||||||99.91|95.94|0.00|3.08| +21|2023-10-06T22:04:28.7620000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|712003|1A180000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2004915|40478540|10000|10000|||100.00|80.10|0.00|0.00|126055|129844|10000|10000|||99.91|95.94|0.00|3.08|000113D7|0|1| +37|2023-10-06T22:04:28.8070000-07:00|40021585|Zeromus|000113CD|1988466||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:28.8070000-07:00|10FF0001|Sesuga Sapisuga|116601|129071|10000|10000|||100.08|99.09|0.00|-2.62| +21|2023-10-06T22:04:28.8070000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|2004915|40478540|10000|10000|||100.00|80.10|0.00|0.00|69650|83502|10000|10000|||99.81|99.78|0.00|3.13|000113D8|0|1| +37|2023-10-06T22:04:28.8510000-07:00|10FF0004|Buhojaqe Zijaqe|000113CF|62441||||||103.56|102.13|0.00|-2.62| +21|2023-10-06T22:04:28.8510000-07:00|10FF000B|Pusu Rosu|1D06|Thin Air|10FF000B|Pusu Rosu|9C00000F|4C18000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|55612|79209|1562|10000|||99.12|99.79|0.00|0.11|55612|79209|1562|10000|||99.12|99.79|0.00|0.11|000113D9|0|1| +38|2023-10-06T22:04:28.8510000-07:00|10FF000B|Pusu Rosu|005A5A18|55612|79209|1562|10000|14||99.12|99.79|0.00|0.11|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:28.8510000-07:00|4C1|Thin Air|12.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +37|2023-10-06T22:04:28.8950000-07:00|10FF0007|Kehabiqo Febiqo|000113D6|113228|129844|10000|10000|9||99.92|95.89|0.00|3.14|1500|0|0|0| +21|2023-10-06T22:04:28.8950000-07:00|10FF0006|Wowobora Gogobora|64E0|Topaz Rite|40021585|Zeromus|450003|29000000|F|B258000|1B|64E08000|0|0|0|0|0|0|0|0|0|0|1988466|40478540|10000|10000|||100.00|80.10|0.00|0.00|62279|81809|2450|10000|||100.72|97.06|0.00|-1.92|000113DA|0|1| +38|2023-10-06T22:04:28.8950000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62279|81809|2150|10000|14||100.72|97.06|0.00|-1.92|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:28.8950000-07:00|B25|Titan's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +37|2023-10-06T22:04:28.9400000-07:00|10FF0006|Wowobora Gogobora|000113D6|62279|81809|2150|10000|2||100.54|97.10|-0.02|-3.13|1B01|0|0|0| +37|2023-10-06T22:04:28.9840000-07:00|10FF0008|Kokosaze Lulusaze|000113D6|67123|90216|10000|10000|8||99.66|98.83|-0.01|3.13|1F02|0|0|0| +37|2023-10-06T22:04:29.0290000-07:00|10FF0001|Sesuga Sapisuga|000113D6|116601|129071|10000|10000|9||100.08|99.09|0.00|-2.62|1303|0|0|0| +37|2023-10-06T22:04:29.0290000-07:00|10FF000B|Pusu Rosu|000113D2|61882|79209|1562|10000|14||99.17|99.82|0.00|0.04|1800|0|0|02|080004C1|FF9C|C1400000|||||| +26|2023-10-06T22:04:29.0290000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +37|2023-10-06T22:04:29.0740000-07:00|10FF000A|Dukaro Nezikaro|000113D6|69650|83502|10000|10000|3||99.81|99.78|0.00|3.13|1E04|0|0|0| +37|2023-10-06T22:04:29.0740000-07:00|40021585|Zeromus|000113D3|1981796||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:29.1190000-07:00|10FF000B|Pusu Rosu|000113D6|61882|79209|1562|10000|2||99.17|99.82|0.00|0.04|1805|0|0|01|080004C1|FF9C|C1400000|| +04|2023-10-06T22:04:28.6830000-07:00|40021A64|Topaz Titan|00|5A|10FF0006|00||10264|13507|0|77698|0|10000|||110.62|85.82|0.00|-2.21| +261|2023-10-06T22:04:28.6830000-07:00|Remove|40021A64| +37|2023-10-06T22:04:29.1640000-07:00|40021585|Zeromus|000113D4|1970945||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:29.1640000-07:00|10FF0004|Buhojaqe Zijaqe|000113D6|62441|81541|3250|10000|9||103.54|102.10|0.00|-2.62|1C06|0|0|0| +37|2023-10-06T22:04:29.1640000-07:00|10FF000A|Dukaro Nezikaro|000113D2|75892|83502|10000|10000|3||99.81|99.78|0.00|3.13|1E01|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:04:29.1640000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:04:29.1640000-07:00|10FF000B|Pusu Rosu|000113D2|61882|79209|1562|10000|2||99.24|99.90|0.00|0.03|1801|0|0|01|080004C1|FF9C|C1400000|| +21|2023-10-06T22:04:29.1640000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|13C10000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1981796|40478540|10000|10000|||100.00|80.10|0.00|0.00|67123|90216|10000|10000|||99.69|98.83|0.00|3.13|000113DB|0|1| +38|2023-10-06T22:04:29.1640000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62279|81809|2700|10000|2||100.31|97.17|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:29.2080000-07:00|10FF0003|Gegehi Gehi|000113D6|41353|73814|3950|10000|1||101.73|102.43|0.00|-3.06|2307|0|0|0| +261|2023-10-06T22:04:28.7940000-07:00|Change|10FF0006||||||||||| +261|2023-10-06T22:04:28.7940000-07:00|Change|10FF0004||||||||||||||||||||| +37|2023-10-06T22:04:29.2980000-07:00|10FF0008|Kokosaze Lulusaze|000113D2|77005|90216|10000|10000|8||99.69|98.83|0.00|3.13|1F02|0|0|01|08000096|0|41700000|| +26|2023-10-06T22:04:29.2980000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +37|2023-10-06T22:04:29.2980000-07:00|10FF000B|Pusu Rosu|000113D2|61882|79209|1562|10000|2||99.37|100.10|0.00|0.02|1802|0|0|01|080004C1|FF9C|C1400000|| +37|2023-10-06T22:04:29.3420000-07:00|40021585|Zeromus|000113D8|1967245||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:29.3420000-07:00|10FF000A|Dukaro Nezikaro|76727|83502|10000|10000|||99.81|99.78|0.00|3.13| +37|2023-10-06T22:04:29.3860000-07:00|40021585|Zeromus|000113D7|1960565||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:29.4310000-07:00|10FF0007|Kehabiqo Febiqo|000113D2|119746|129844|10000|10000|9||99.92|95.88|0.00|3.14|1503|0|0|01|08000096|0|41700000|| +26|2023-10-06T22:04:29.4310000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +37|2023-10-06T22:04:29.4310000-07:00|10FF000B|Pusu Rosu|000113D2|61882|79209|1562|10000|2||99.50|100.28|0.00|0.01|1803|0|0|01|080004C1|FF9C|C1400000|| +24|2023-10-06T22:04:29.4310000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|177E|76727|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +38|2023-10-06T22:04:29.4310000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|82741|83502|10000|10000|3||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:04:29.4750000-07:00|10FF0007|Kehabiqo Febiqo|121044|129844|10000|10000|||99.92|95.88|0.00|3.14| +24|2023-10-06T22:04:29.4750000-07:00|10FF0003|Gegehi Gehi|HoT|777|A0C|41353|73814|3950|10000|||101.73|102.43|0.00|-3.06|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +24|2023-10-06T22:04:29.4750000-07:00|10FF000B|Pusu Rosu|HoT|777|A64|61882|79209|1562|10000|||99.50|100.28|0.00|0.01|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +24|2023-10-06T22:04:29.4750000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A48|62441|81541|3250|10000|||103.21|101.70|0.00|-2.58|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +24|2023-10-06T22:04:29.4750000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|A58|76727|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +24|2023-10-06T22:04:29.4750000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|F6E|116601|129071|10000|10000|||100.04|99.00|0.00|-2.71|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +24|2023-10-06T22:04:29.4750000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|9CA|77005|90216|10000|10000|||99.69|98.83|0.00|3.13|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +24|2023-10-06T22:04:29.4750000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A3E|62279|81809|2700|10000|||100.13|97.21|-0.01|-3.13|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +24|2023-10-06T22:04:29.4750000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|9FA|113228|129844|10000|10000|||99.92|95.88|0.00|3.14|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +24|2023-10-06T22:04:29.4750000-07:00|10FF000B|Pusu Rosu|HoT|0|E8E|61882|79209|1562|10000|||99.50|100.28|0.00|0.01|10FF000B|Pusu Rosu|0|61882|79209|1562|10000|||99.50|100.28|0.00|0.01| +38|2023-10-06T22:04:29.4750000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|123598|129844|10000|10000|9||99.92|95.88|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:29.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:29.4750000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79511|90216|10000|10000|8||99.69|98.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:29.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:29.4750000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|64901|81809|2700|10000|2||100.13|97.21|-0.01|-3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:29.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:04:29.4750000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|120551|129071|10000|10000|9||100.04|99.00|0.00|-2.71|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:29.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:04:29.4750000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|65073|81541|3250|10000|9||103.21|101.70|0.00|-2.58|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:29.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:29.4750000-07:00|10FF0003|Gegehi Gehi|005A5A23|43925|73814|3950|10000|1||101.73|102.43|0.00|-3.06|0|0|0|||||||||||||||||||||| +26|2023-10-06T22:04:29.4750000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:29.4750000-07:00|10FF000B|Pusu Rosu|005A5A18|68268|79209|1562|10000|2||99.50|100.28|0.00|0.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:29.4750000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:29.4750000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|3||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:29.4750000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:04:29.5180000-07:00|40021585|Zeromus|000113DA|1950069||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:29.5190000-07:00|10FF0006|Wowobora Gogobora|000113DA|64901|81809|2700|10000|2||100.11|97.22|0.00|-3.13|1B00|0|0|01|09000B25|0|0|| +38|2023-10-06T22:04:29.5190000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|64901|81809|2700|10000|2||100.11|97.22|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:29.5640000-07:00|10FF0001|Sesuga Sapisuga|000113D2|129071|129071|10000|10000|9||99.83|98.53|0.00|-2.72|1304|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:04:29.5640000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:04:29.5640000-07:00|10FF000B|Pusu Rosu|000113D2|68268|79209|1562|10000|2||99.65|100.49|0.00|0.00|1804|0|0|01|080004C1|FF9C|C1400000|| +24|2023-10-06T22:04:29.5640000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|FE6|123598|129844|10000|10000|||99.92|95.83|0.00|3.14|10FF000B|Pusu Rosu|0|68268|79209|1562|10000|||99.65|100.49|0.00|0.00| +21|2023-10-06T22:04:29.5640000-07:00|10FF0006|Wowobora Gogobora|64EC|Mountain Buster|40021585|Zeromus|450003|112C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1960565|40478540|10000|10000|||100.00|80.10|0.00|0.00|64901|81809|2700|10000|||100.11|97.22|0.00|-3.13|000113DC|0|1| +20|2023-10-06T22:04:29.5650000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|1.970|99.65|100.49|0.00|0.00| +38|2023-10-06T22:04:29.5650000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|127668|129844|10000|10000|9||99.92|95.83|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:29.5650000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|64901|81809|2700|10000|2||100.11|97.22|0.00|-3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:29.5650000-07:00|B25|Titan's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +261|2023-10-06T22:04:29.1400000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:04:29.6090000-07:00|40021585|Zeromus|000113D0|1938090||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:29.6090000-07:00|10FF0007|Kehabiqo Febiqo|000113D0|129844||||||99.93|95.79|0.00|3.14| +37|2023-10-06T22:04:29.6090000-07:00|10FF000B|Pusu Rosu|000113D9|68268|79209|1562|10000|2||99.76|100.65|-0.01|0.00|1800|0|0|01|080004C1|FF9C|41400000|| +38|2023-10-06T22:04:29.6090000-07:00|10FF000B|Pusu Rosu|005A5A18|68268|79209|1562|10000|2||99.76|100.65|-0.01|0.00|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T22:04:29.6530000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|FE4|129071|129071|10000|10000|||99.57|97.95|0.00|-2.75|10FF000B|Pusu Rosu|0|68268|79209|1562|10000|||99.76|100.65|-0.01|0.00| +38|2023-10-06T22:04:29.6530000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|9||99.57|97.95|0.00|-2.75|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:29.6970000-07:00|10FF0003|Gegehi Gehi|000113D2|50269|73814|3950|10000|1||101.73|102.43|0.00|-3.06|2305|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:04:29.6970000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T22:04:29.7420000-07:00|10FF0004|Buhojaqe Zijaqe|000113D5|76525|81541|3250|10000|9||102.01|100.08|0.00|-2.57|1C00|0|0|01|03000129|0|41E770A0|| +37|2023-10-06T22:04:29.8320000-07:00|10FF0006|Wowobora Gogobora|000113D2|71437|81809|2700|10000|2||100.11|97.22|0.00|-3.13|1B06|0|0|01|09000096|0|41700000|| +26|2023-10-06T22:04:29.8320000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +37|2023-10-06T22:04:29.8760000-07:00|10FF0003|Gegehi Gehi|000113D5|57391|73814|3950|10000|1||101.73|102.43|0.00|-3.06|2301|0|0|01|02000129|0|41E65C25|| +21|2023-10-06T22:04:29.9220000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|734003|520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1938090|40478540|10000|10000|||100.00|80.10|0.00|0.00|71437|81809|2700|10000|||100.11|97.22|0.00|-3.13|000113DD|0|1| +21|2023-10-06T22:04:29.9220000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32712003|38DC0000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|1938090|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|000113DE|0|1| +37|2023-10-06T22:04:29.9660000-07:00|40021585|Zeromus|000113DB|1933033||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:29.9660000-07:00|10FF0004|Buhojaqe Zijaqe|000113D2|81541|81541|3250|10000|9||101.79|99.74|0.00|-2.74|1C07|0|0|01|04000096|0|41700000|| +26|2023-10-06T22:04:29.9660000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +37|2023-10-06T22:04:30.0100000-07:00|10FF000A|Dukaro Nezikaro|000113D5|83502|83502|10000|10000|3||99.81|99.78|0.00|3.13|1E02|0|0|01|03000129|0|41E549B6|| +21|2023-10-06T22:04:30.0560000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|2A530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1933033|40478540|10000|10000|||100.00|80.10|0.00|0.00|79511|90216|10000|10000|||99.69|98.83|0.00|3.13|000113DF|0|1| +21|2023-10-06T22:04:30.0560000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AE60000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1933033|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.46|97.68|0.00|-2.79|000113E0|0|1| +38|2023-10-06T22:04:30.0560000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|79511|90216|10000|10000|8||99.69|98.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:30.0560000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +31|2023-10-06T22:04:30.0560000-07:00|10FF0001||||| +39|2023-10-06T22:04:30.1010000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3450|10000|||101.59|98.97|0.00|-2.84| +37|2023-10-06T22:04:30.1450000-07:00|10FF0001|Sesuga Sapisuga|000113D5|129071|129071|10000|10000|9||99.46|97.68|0.00|-2.79|1303|0|0|01|06000129|0|41E43747|| +20|2023-10-06T22:04:30.1450000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|101.73|102.43|0.00|-3.06| +261|2023-10-06T22:04:29.7500000-07:00|Change|10FF0003||||||||||||||||||| +261|2023-10-06T22:04:29.8690000-07:00|Change|10FF0004||||||||||| +39|2023-10-06T22:04:30.2330000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.62| +21|2023-10-06T22:04:30.2330000-07:00|10FF0006|Wowobora Gogobora|B5|Fester|40021585|Zeromus|750003|26C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1933033|40478540|10000|10000|||100.00|80.10|0.00|0.00|71437|81809|2700|10000|||100.11|97.22|0.00|-3.13|000113E1|0|1| +38|2023-10-06T22:04:30.2330000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71437|81809|2700|10000|2||100.11|97.22|0.00|-3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:30.2330000-07:00|130|Aetherflow|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|01|81809|81809| +37|2023-10-06T22:04:30.2780000-07:00|10FF000B|Pusu Rosu|000113D5|75612|79209|1562|10000|2||99.84|100.76|0.00|-0.01|1804|0|0|01|07000129|0|41E328F1|| +37|2023-10-06T22:04:30.3230000-07:00|40021585|Zeromus|000113DC|1928637||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:30.3230000-07:00|40021585|Zeromus|000113DE|1914081||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:30.4120000-07:00|10FF0008|Kokosaze Lulusaze|000113D5|90216|90216|10000|10000|8||99.69|98.83|0.00|3.13|1F05|0|0|01|07000129|0|41E2126A|| +37|2023-10-06T22:04:30.4560000-07:00|40021585|Zeromus|000113DD|1913999||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:30.5020000-07:00|10FF0003|Gegehi Gehi|58129|73814|4150|10000|||101.73|102.43|0.00|-3.06| +39|2023-10-06T22:04:30.5020000-07:00|10FF000B|Pusu Rosu|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01| +21|2023-10-06T22:04:30.5020000-07:00|10FF0007|Kehabiqo Febiqo|1F|Heavy Swing|40021585|Zeromus|710003|158B0000|1B|1F8000|0|0|0|0|0|0|0|0|0|0|0|0|1914081|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|000113E2|0|1| +37|2023-10-06T22:04:30.5460000-07:00|10FF0006|Wowobora Gogobora|000113D5|78687|81809|2700|10000|2||100.12|97.22|0.00|2.94|1B06|0|0|01|07000129|0|41E10207|| +21|2023-10-06T22:04:30.5460000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8FD0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1914081|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.69|98.83|0.00|3.13|000113E3|0|1| +261|2023-10-06T22:04:30.2020000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:04:30.5900000-07:00|40021585|Zeromus|000113E0|1911209||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:30.2020000-07:00|Change|10FF0004||||||||||||| +37|2023-10-06T22:04:30.6800000-07:00|40021585|Zeromus|000113DF|1900374||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:30.6800000-07:00|10FF0007|Kehabiqo Febiqo|000113D5|129844|129844|10000|10000|9||99.93|95.72|0.00|3.14|1507|0|0|01|04000129|0|41DFF1A4|| +24|2023-10-06T22:04:30.6800000-07:00|40021585|Zeromus|DoT|0|BA8|1911209|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|129844|129844|10000|10000|||99.93|95.72|0.00|3.14| +21|2023-10-06T22:04:30.6800000-07:00|10FF0008|Kokosaze Lulusaze|B3C|Reassemble|10FF0008|Kokosaze Lulusaze|E|3530000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.69|98.83|0.00|3.13|90216|90216|10000|10000|||99.69|98.83|0.00|3.13|000113E4|0|1| +22|2023-10-06T22:04:30.6800000-07:00|4002159F|Zeromus|8B71|Roar|10FF0007|Kehabiqo Febiqo|750603|CFE0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|000113E5|0|8| +22|2023-10-06T22:04:30.6800000-07:00|4002159F|Zeromus|8B71|Roar|10FF0001|Sesuga Sapisuga|750603|FE20000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||99.18|96.88|0.00|3.09|44|44|0|10000|||100.00|80.10|0.00|0.00|000113E5|1|8| +22|2023-10-06T22:04:30.6800000-07:00|4002159F|Zeromus|8B71|Roar|10FF0006|Wowobora Gogobora|750603|42FA0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|78687|81809|2700|10000|||100.13|97.23|0.00|1.82|44|44|0|10000|||100.00|80.10|0.00|0.00|000113E5|2|8| +22|2023-10-06T22:04:30.6800000-07:00|4002159F|Zeromus|8B71|Roar|10FF0008|Kokosaze Lulusaze|750603|442C0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.69|98.83|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113E5|3|8| +22|2023-10-06T22:04:30.6800000-07:00|4002159F|Zeromus|8B71|Roar|10FF0004|Buhojaqe Zijaqe|750603|391F0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3450|10000|||101.56|98.92|0.00|3.11|44|44|0|10000|||100.00|80.10|0.00|0.00|000113E5|4|8| +22|2023-10-06T22:04:30.6800000-07:00|4002159F|Zeromus|8B71|Roar|10FF000A|Dukaro Nezikaro|750603|46170000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113E5|5|8| +22|2023-10-06T22:04:30.6800000-07:00|4002159F|Zeromus|8B71|Roar|10FF000B|Pusu Rosu|750603|496C0000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|44|44|0|10000|||100.00|80.10|0.00|0.00|000113E5|6|8| +22|2023-10-06T22:04:30.6800000-07:00|4002159F|Zeromus|8B71|Roar|10FF0003|Gegehi Gehi|750603|61290000|1B|8B718000|0|0|0|0|0|0|0|0|0|0|0|0|58129|73814|4150|10000|||101.73|102.43|0.00|-3.06|44|44|0|10000|||100.00|80.10|0.00|0.00|000113E5|7|8| +38|2023-10-06T22:04:30.6800000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||99.69|98.83|0.00|3.13|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:30.6800000-07:00|353|Reassembled|5.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +38|2023-10-06T22:04:30.6800000-07:00|40021585|Zeromus|005A5A00|1897390|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +261|2023-10-06T22:04:30.2020000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T22:04:30.3030000-07:00|Change|10FF0003||||| +39|2023-10-06T22:04:30.7680000-07:00|10FF0006|Wowobora Gogobora|79505|81809|2900|10000|||100.13|97.23|0.00|1.82| +261|2023-10-06T22:04:30.3030000-07:00|Change|10FF0006||||||||||| +37|2023-10-06T22:04:30.8580000-07:00|10FF0007|Kehabiqo Febiqo|000113E5|126518|129844|10000|10000|0||99.93|95.72|0.00|3.14|1500|0|0|01|04000000|0|0|| +38|2023-10-06T22:04:30.8580000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126518|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:30.8580000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T22:04:30.9030000-07:00|10FF0001|Sesuga Sapisuga|000113E5|125005|129071|10000|10000|0||99.13|96.71|0.00|-2.82|1301|0|0|01|06000000|0|0|| +21|2023-10-06T22:04:30.9030000-07:00|10FF0001|Sesuga Sapisuga|0F|Riot Blade|40021585|Zeromus|35710003|1DE50000|B|3E88000|11B|F8000|0|0|0|0|0|0|0|0|0|0|1897390|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||99.13|96.71|0.00|-2.82|000113E6|0|1| +38|2023-10-06T22:04:30.9030000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125005|129071|10000|10000|0||99.13|96.71|0.00|-2.82|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:30.9030000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +261|2023-10-06T22:04:30.4980000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:30.9470000-07:00|10FF0006|Wowobora Gogobora|000113E5|62359|81809|2900|10000|0||101.31|97.42|0.00|1.52|1B02|0|0|01|07000000|0|0|| +38|2023-10-06T22:04:30.9480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62359|81809|2900|10000|0||101.31|97.42|0.00|1.52|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:30.9480000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +37|2023-10-06T22:04:30.9930000-07:00|10FF0008|Kokosaze Lulusaze|000113E5|72764|90216|10000|10000|0||99.73|98.83|0.00|2.72|1F03|0|0|02|02000353|0|C0A00000|||||| +21|2023-10-06T22:04:30.9930000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|33C20000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|1897390|40478540|10000|10000|||100.00|80.10|0.00|0.00|000113E7|0|1| +22|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000B|Pusu Rosu|4|26BA0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113E8|0|8| +22|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF000A|Dukaro Nezikaro|4|28500000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113E8|1|8| +22|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0008|Kokosaze Lulusaze|4|276C0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.73|98.83|0.00|2.72|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113E8|2|8| +22|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0003|Gegehi Gehi|4|285E0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|58129|73814|4150|10000|||101.73|102.43|0.00|-3.06|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113E8|3|8| +22|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0004|Buhojaqe Zijaqe|4|26FC0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|3450|10000|||101.54|98.80|0.00|-3.05|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113E8|4|8| +22|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0006|Wowobora Gogobora|200004|3DFA0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|79505|81809|2900|10000|||101.31|97.42|0.00|1.52|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113E8|5|8| +22|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0001|Sesuga Sapisuga|4|282F0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|125005|129071|10000|10000|||98.96|96.21|0.00|-2.82|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113E8|6|8| +22|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|7C|Medica|10FF0007|Kehabiqo Febiqo|4|27CF0000|1B|7C8000|0|0|0|0|0|0|0|0|0|0|0|0|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|76404|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113E8|7|8| +21|2023-10-06T22:04:30.9930000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AF50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1897390|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|000113E9|0|1| +38|2023-10-06T22:04:30.9930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72764|90216|10000|10000|0||99.73|98.83|0.00|2.72|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:30.9930000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:30.9930000-07:00|10FF000B|Pusu Rosu|005A5A18|76404|79209|1843|10000|2||99.84|100.76|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:30.9930000-07:00|4C1|Thin Air|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|FF9C|79209|79209| +37|2023-10-06T22:04:31.0380000-07:00|40021585|Zeromus|000113E2|1891875||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:31.0380000-07:00|10FF0004|Buhojaqe Zijaqe|000113E5|66918|81541|3450|10000|0||101.52|98.74|0.00|-2.98|1C04|0|0|01|03000000|0|0|| +38|2023-10-06T22:04:31.0380000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66918|81541|3450|10000|0||101.52|98.74|0.00|-2.98|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:31.0380000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:04:31.0820000-07:00|10FF000A|Dukaro Nezikaro|000113E5|65559|83502|10000|10000|0||99.81|99.78|0.00|3.13|1E05|0|0|01|03000000|0|0|| +21|2023-10-06T22:04:31.0820000-07:00|40021A66|Automaton Queen|4078|Arm Punch|40021585|Zeromus|730003|21C20000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|1897390|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38|000113EA|0|1| +21|2023-10-06T22:04:31.0820000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|714003|DD80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1897390|40478540|10000|10000|||100.00|80.10|0.00|0.00|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113EB|0|1| +38|2023-10-06T22:04:31.0820000-07:00|10FF0003|Gegehi Gehi|005A5A23|58129|73814|4150|10000|1||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:31.0820000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:04:31.0820000-07:00|10FF000B|Pusu Rosu|005A5A18|76404|79209|1843|10000|2||99.84|100.76|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:31.0820000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:04:31.0820000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65559|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:31.0820000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +30|2023-10-06T22:04:31.0820000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:04:31.1260000-07:00|10FF000B|Pusu Rosu|000113E5|57608|79209|1843|10000|0||99.84|100.76|0.00|-0.01|1806|0|0|01|07000000|0|0|| +39|2023-10-06T22:04:31.1260000-07:00|40021A67|Carbuncle|77698|77698|10000|10000|||101.91|96.54|0.00|-0.21| +38|2023-10-06T22:04:31.1260000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126518|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:31.1260000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:04:31.1260000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72764|90216|10000|10000|0||99.83|99.02|-0.02|1.77|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:31.1260000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:31.1260000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62359|81809|2900|10000|0||102.83|97.34|0.00|1.59|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:31.1260000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:04:31.1260000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125005|129071|10000|10000|0||98.81|95.76|0.00|-2.82|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:31.1260000-07:00|12B|Sacred Soil|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:04:31.1260000-07:00|10FF000B|Pusu Rosu|005A5A18|57608|79209|1843|10000|0||99.84|100.76|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:31.1260000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +37|2023-10-06T22:04:31.1700000-07:00|40021585|Zeromus|000113E1|1881946||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:31.1700000-07:00|10FF0003|Gegehi Gehi|000113E5|33256|73814|4150|10000|0||101.73|102.43|0.00|-3.06|2307|0|0|01|02000000|0|0|| +39|2023-10-06T22:04:31.1700000-07:00|10FF0008|Kokosaze Lulusaze|73666|90216|10000|10000|||99.83|99.02|-0.02|1.77| +38|2023-10-06T22:04:31.1700000-07:00|10FF0003|Gegehi Gehi|005A5A23|33256|73814|4150|10000|0||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:31.1700000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +21|2023-10-06T22:04:31.2590000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0006|Wowobora Gogobora|4|17090000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|62359|81809|2900|10000|||103.05|97.24|0.00|1.68|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98|000113EC|0|1| +37|2023-10-06T22:04:31.3030000-07:00|10FF0008|Kokosaze Lulusaze|000113E4|73666|90216|10000|10000|0||99.88|99.15|0.00|1.35|1F00|0|0|01|02000353|0|40A00000|| +37|2023-10-06T22:04:31.3030000-07:00|40021585|Zeromus|000113E3|1879645||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:31.3030000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|73666|90216|10000|10000|0||99.88|99.15|0.00|1.35|0|0|0|||||||||||||||||||||||||||| +22|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0007|Kehabiqo Febiqo|5140E|5B10000|1C710E|83C0000|4|1F480000|0|0|0|0|0|0|0|0|0|0|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113ED|0|8| +22|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0001|Sesuga Sapisuga|5A00E|5B10000|1C710E|83C0000|4|201A0000|0|0|0|0|0|0|0|0|0|0|125005|129071|10000|10000|||98.81|95.76|0.00|-2.82|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113ED|1|8| +22|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0004|Buhojaqe Zijaqe|5C70E|5B10000|1C710E|83C0000|200004|345F0000|0|0|0|0|0|0|0|0|0|0|66918|81541|3450|10000|||101.49|98.59|0.00|-2.79|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113ED|2|8| +22|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0008|Kokosaze Lulusaze|5DC0E|5B10000|1C710E|83C0000|200004|33AE0000|0|0|0|0|0|0|0|0|0|0|73666|90216|10000|10000|||99.92|99.26|0.00|0.97|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113ED|3|8| +22|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0006|Wowobora Gogobora|5EF0E|5B10000|1C710E|83C0000|4|1E840000|0|0|0|0|0|0|0|0|0|0|62359|81809|2900|10000|||103.25|97.14|0.00|1.77|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113ED|4|8| +22|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF000A|Dukaro Nezikaro|5ED0E|5B10000|1C710E|83C0000|4|1EA90000|0|0|0|0|0|0|0|0|0|0|65559|83502|10000|10000|||99.81|99.78|0.00|3.13|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113ED|5|8| +22|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF000B|Pusu Rosu|5690E|5B10000|1C710E|83C0000|4|1F2B0000|0|0|0|0|0|0|0|0|0|0|57608|79209|1843|10000|||99.84|100.76|0.00|-0.01|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113ED|6|8| +22|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|1CDC|Shake It Off|10FF0003|Gegehi Gehi|5400E|5B10000|1C710E|83C0000|4|1E880000|0|0|0|0|0|0|0|0|0|0|33256|73814|4150|10000|||101.73|102.43|0.00|-3.06|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|000113ED|7|8| +21|2023-10-06T22:04:31.3940000-07:00|10FF0006|Wowobora Gogobora|64EE|Summon Ifrit II|40021585|Zeromus|3E|9D8000|13E|10A8000|F|AA48000|1B|64EE8000|0|0|0|0|0|0|0|0|1879645|40478540|10000|10000|||100.00|80.10|0.00|0.00|62359|81809|2900|10000|||103.25|97.14|0.00|1.77|000113EE|0|1| +38|2023-10-06T22:04:31.3940000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|126518|129844|10000|10000|14||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:31.3940000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:04:31.3940000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:04:31.3940000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|73666|90216|10000|10000|14||99.92|99.26|0.00|0.97|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:31.3940000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +26|2023-10-06T22:04:31.3940000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T22:04:31.3940000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|62359|81809|2900|10000|14||103.25|97.14|0.00|1.77|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:31.3940000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +26|2023-10-06T22:04:31.3940000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +26|2023-10-06T22:04:31.3940000-07:00|AA4|Ifrit's Favor|9999.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +38|2023-10-06T22:04:31.3940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125005|129071|10000|10000|14||98.81|95.76|0.00|-2.82|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:31.3940000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +26|2023-10-06T22:04:31.3940000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +261|2023-10-06T22:04:30.9410000-07:00|Change|40021A67||||||||| +38|2023-10-06T22:04:31.3940000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66918|81541|3450|10000|14||101.49|98.59|0.00|-2.79|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:31.3940000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +26|2023-10-06T22:04:31.3940000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +38|2023-10-06T22:04:31.3940000-07:00|10FF0003|Gegehi Gehi|005A5A23|33256|73814|4150|10000|14||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:31.3940000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +26|2023-10-06T22:04:31.3940000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +38|2023-10-06T22:04:31.3940000-07:00|10FF000B|Pusu Rosu|005A5A18|57608|79209|1843|10000|14||99.84|100.76|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:31.3940000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF000B|Pusu Rosu|00|79209|129844| +26|2023-10-06T22:04:31.3940000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF000B|Pusu Rosu|00|79209|129844| +38|2023-10-06T22:04:31.3940000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|65559|83502|10000|10000|14||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:31.3940000-07:00|5B1|Shake It Off|30.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|83502|129844| +26|2023-10-06T22:04:31.3940000-07:00|83C|Shake It Off (Over Time)|15.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|83502|129844| +38|2023-10-06T22:04:31.4360000-07:00|40021A6A||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:04:31.4370000-07:00|40021A6A||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:04:31.5260000-07:00|40021585|Zeromus|000113E9|1876840||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:31.0610000-07:00|Add|40021A6A||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:04:31.0610000-07:00|40021A6A|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|74223|77698|10000|10000|||105.77|98.30|0.00|-2.93| +21|2023-10-06T22:04:31.5700000-07:00|10FF0008|Kokosaze Lulusaze|4072|Drill|40021585|Zeromus|726003|CE5A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1876840|40478540|10000|10000|||100.00|80.10|0.00|0.00|73666|90216|10000|10000|||99.99|99.45|0.00|0.73|000113EF|0|1| +21|2023-10-06T22:04:31.5700000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|450003|2E450000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|1876840|40478540|10000|10000|||100.00|80.10|0.00|0.00|33256|73814|4150|10000|||101.73|102.43|0.00|-3.06|000113F0|0|1| +38|2023-10-06T22:04:31.5700000-07:00|10FF0003|Gegehi Gehi|005A5A23|33256|73814|3950|10000|14||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:31.5700000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:04:31.5700000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:04:31.5700000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|73666|90216|10000|10000|14||99.99|99.45|0.00|0.73|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:31.5700000-07:00|353|Reassembled|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +261|2023-10-06T22:04:31.1720000-07:00|Change|40021A6A||||| +37|2023-10-06T22:04:31.6150000-07:00|40021585|Zeromus|000113EB|1873296||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:31.6150000-07:00|40021A66|Automaton Queen|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38| +261|2023-10-06T22:04:31.1720000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:04:31.6590000-07:00|40021585|Zeromus|000113E6|1865643||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:04:31.7040000-07:00|4002159E|Zeromus|8B72|Roar|10FF0007|Kehabiqo Febiqo|750003|0|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|126518|129844|10000|10000|||99.93|95.72|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|000113F1|0|8| +22|2023-10-06T22:04:31.7040000-07:00|4002159E|Zeromus|8B72|Roar|10FF0001|Sesuga Sapisuga|750003|0|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|125005|129071|10000|10000|||98.81|95.76|0.00|-2.82|44|44|0|10000|||100.00|80.10|0.00|0.00|000113F1|1|8| +22|2023-10-06T22:04:31.7040000-07:00|4002159E|Zeromus|8B72|Roar|10FF0006|Wowobora Gogobora|750003|24A40000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|62359|81809|2900|10000|||103.54|96.99|0.00|-2.93|44|44|0|10000|||100.00|80.10|0.00|0.00|000113F1|2|8| +22|2023-10-06T22:04:31.7040000-07:00|4002159E|Zeromus|8B72|Roar|10FF0004|Buhojaqe Zijaqe|750003|28FC0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|66918|81541|3450|10000|||101.49|98.59|0.00|-2.79|44|44|0|10000|||100.00|80.10|0.00|0.00|000113F1|3|8| +22|2023-10-06T22:04:31.7040000-07:00|4002159E|Zeromus|8B72|Roar|10FF0008|Kokosaze Lulusaze|750003|37E60000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|73666|90216|10000|10000|||100.00|99.47|0.00|-3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|000113F1|4|8| +22|2023-10-06T22:04:31.7040000-07:00|4002159E|Zeromus|8B72|Roar|10FF000A|Dukaro Nezikaro|750003|294E0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|65559|83502|10000|10000|||99.81|99.78|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|000113F1|5|8| +22|2023-10-06T22:04:31.7040000-07:00|4002159E|Zeromus|8B72|Roar|10FF000B|Pusu Rosu|750003|2C790000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|57608|79209|1843|10000|||99.84|100.76|0.00|-0.01|44|44|0|10000|||100.00|80.10|0.00|0.00|000113F1|6|8| +22|2023-10-06T22:04:31.7040000-07:00|4002159E|Zeromus|8B72|Roar|10FF0003|Gegehi Gehi|750003|3E7A0000|1B|8B728000|0|0|0|0|0|0|0|0|0|0|0|0|33256|73814|3950|10000|||101.73|102.43|0.00|-3.06|44|44|0|10000|||100.00|80.10|0.00|0.00|000113F1|7|8| +20|2023-10-06T22:04:31.7040000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|1.926|101.49|98.59|0.00|-2.79| +261|2023-10-06T22:04:31.2630000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T22:04:31.2630000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:04:31.2630000-07:00|Change|10FF0003||||||||||||||||| +22|2023-10-06T22:04:31.7480000-07:00|10FF000B|Pusu Rosu|6506|Liturgy of the Bell|10FF000B|Pusu Rosu|500000F|A958000|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|57608|79209|1843|10000|||99.84|100.76|0.00|-0.01|57608|79209|1843|10000|||99.84|100.76|0.00|-0.01|000113F2|0|1| +38|2023-10-06T22:04:31.7480000-07:00|10FF000B|Pusu Rosu|005A5A18|57608|79209|1843|10000|14||99.84|100.76|0.00|-0.01|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:31.7480000-07:00|A95|Liturgy of the Bell|20.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|05|79209|79209| +38|2023-10-06T22:04:31.7930000-07:00|40021A6B||005A5A00|72984|75049|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:04:31.7930000-07:00|10FF0007|Kehabiqo Febiqo|000113E7|113268||||||99.93|95.72|0.00|3.14| +39|2023-10-06T22:04:31.7930000-07:00|10FF0001|Sesuga Sapisuga|126295|129071|10000|10000|||98.81|95.76|0.00|-2.82| +38|2023-10-06T22:04:31.7930000-07:00|40021A6B||005A5A00|72984|75049|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:04:31.8820000-07:00|40021585|Zeromus|000113EA|1857001||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:31.8820000-07:00|10FF0007|Kehabiqo Febiqo|000113F1|113268|129844|10000|10000|1||99.93|95.72|0.00|3.14|1500|0|0|0| +37|2023-10-06T22:04:31.9260000-07:00|10FF0001|Sesuga Sapisuga|000113F1|126295|129071|10000|10000|1||98.81|95.76|0.00|-2.82|1301|0|0|0| +261|2023-10-06T22:04:31.4580000-07:00|Add|40021A6B||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:04:31.4580000-07:00|40021A6B|Liturgic Bell|00|5A|10FF000B|00||10349|13961|72984|75049|10000|10000|||99.69|108.42|0.00|3.12| +261|2023-10-06T22:04:31.5550000-07:00|Change|40021A6B||| +37|2023-10-06T22:04:31.9720000-07:00|10FF0006|Wowobora Gogobora|000113F1|52979|81809|2900|10000|0||103.61|96.93|0.00|-2.40|1B02|0|0|01|0|0|0|| +38|2023-10-06T22:04:31.9720000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|52979|81809|2900|10000|0||103.61|96.93|0.00|-2.40|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:31.9720000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +37|2023-10-06T22:04:32.0160000-07:00|10FF0004|Buhojaqe Zijaqe|000113F1|56426|81541|3450|10000|0||101.49|98.59|0.00|-2.79|1C03|0|0|01|03000000|0|0|| +37|2023-10-06T22:04:32.0160000-07:00|10FF000B|Pusu Rosu|000113E8|67522||||||99.84|100.76|0.00|-0.02| +21|2023-10-06T22:04:32.0160000-07:00|10FF000A|Dukaro Nezikaro|DEB|Armor Crush|40021585|Zeromus|42716003|63D90000|2C3E|D48000|A3E|9F8000|53E|9F8000|11B|DEB8000|0|0|0|0|0|0|1857001|40478540|10000|10000|||100.00|80.10|0.00|0.00|65559|83502|10000|10000|||99.81|99.78|0.00|3.13|000113F3|0|1| +38|2023-10-06T22:04:32.0160000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56426|81541|3450|10000|0||101.49|98.59|0.00|-2.79|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:32.0160000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +37|2023-10-06T22:04:32.0600000-07:00|10FF0008|Kokosaze Lulusaze|000113F1|59356|90216|10000|10000|0||100.02|99.53|0.00|-3.14|1F04|0|0|01|04000000|0|0|| +37|2023-10-06T22:04:32.0600000-07:00|10FF0006|Wowobora Gogobora|000113EC|58876||||||103.62|96.91|0.00|-2.17| +24|2023-10-06T22:04:32.0600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|1963|73666|90216|10000|10000|||100.02|99.53|0.00|-3.14|10FF000B|Pusu Rosu|0|67522|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.0600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1A5B|56426|81541|3450|10000|||101.49|98.59|0.00|-2.79|10FF0004|Buhojaqe Zijaqe|0|56426|81541|3450|10000|||101.49|98.59|0.00|-2.79| +38|2023-10-06T22:04:32.0600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|65855|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:32.0600000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T22:04:32.0600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63173|81541|3450|10000|0||101.49|98.59|0.00|-2.79|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:04:32.1040000-07:00|10FF000A|Dukaro Nezikaro|000113F1|54985|83502|10000|10000|0||99.81|99.78|0.00|3.13|1E05|0|0|01|03000000|0|0|| +38|2023-10-06T22:04:32.1040000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|54985|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:32.1040000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|83502|129844| +37|2023-10-06T22:04:32.1480000-07:00|10FF000B|Pusu Rosu|000113F1|56137|79209|1843|10000|0||99.84|100.76|0.00|-0.02|1806|0|0|02|04000000|0|0|||||| +261|2023-10-06T22:04:31.7790000-07:00|Change|10FF0006||||||||||| +26|2023-10-06T22:04:32.1480000-07:00|A95|Liturgy of the Bell|19.64|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|04|79209|79209| +37|2023-10-06T22:04:32.1480000-07:00|10FF000A|Dukaro Nezikaro|000113E8|65305||||||99.81|99.78|0.00|3.13| +24|2023-10-06T22:04:32.1480000-07:00|10FF0006|Wowobora Gogobora|HoT|0|211C|52979|81809|2900|10000|||103.62|96.91|0.00|-2.17|10FF000B|Pusu Rosu|0|67522|79209|1843|10000|||99.84|100.76|0.00|-0.02| +38|2023-10-06T22:04:32.1480000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|67352|81809|3450|10000|0||103.62|96.91|0.00|-2.17|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:32.1480000-07:00|10FF000B|Pusu Rosu|005A5A18|56137|79209|1843|10000|0||99.84|100.76|0.00|-0.02|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:32.1480000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF000B|Pusu Rosu|00|79209|129844| +37|2023-10-06T22:04:32.1920000-07:00|10FF0007|Kehabiqo Febiqo|000113ED|121276|129844|10000|10000|1||99.93|95.72|0.00|3.14|1500|0|0|02|020005B1|0|41E9F5C1|||||| +37|2023-10-06T22:04:32.1920000-07:00|10FF0003|Gegehi Gehi|000113F1|17262|73814|3950|10000|0||101.73|102.43|0.00|-3.06|2307|0|0|01|01000000|0|0|| +22|2023-10-06T22:04:32.1920000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|33090000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|33256|73814|3950|10000|||101.73|102.43|0.00|-3.06|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|000113F4|0|8| +22|2023-10-06T22:04:32.1920000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|33CE0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|67522|79209|1843|10000|||99.84|100.76|0.00|-0.02|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|000113F4|1|8| +22|2023-10-06T22:04:32.1920000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|4|35AD0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|65559|83502|10000|10000|||99.81|99.78|0.00|3.13|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|000113F4|2|8| +22|2023-10-06T22:04:32.1920000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|356F0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|73666|90216|10000|10000|||100.02|99.53|0.00|-3.14|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|000113F4|3|8| +22|2023-10-06T22:04:32.1920000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|35660000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|56426|81541|3450|10000|||101.49|98.59|0.00|-2.79|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|000113F4|4|8| +22|2023-10-06T22:04:32.1920000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|34A80000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|113268|129844|10000|10000|||99.93|95.72|0.00|3.14|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|000113F4|5|8| +22|2023-10-06T22:04:32.1920000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|32EB0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|126295|129071|10000|10000|||98.81|95.76|0.00|-2.82|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|000113F4|6|8| +22|2023-10-06T22:04:32.1920000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|4|33AD0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|52979|81809|2900|10000|||103.62|96.91|0.00|-2.17|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|000113F4|7|8| +21|2023-10-06T22:04:32.1930000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|13C90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1857001|40478540|10000|10000|||100.00|80.10|0.00|0.00|73666|90216|10000|10000|||100.02|99.53|0.00|-3.14|000113F5|0|1| +38|2023-10-06T22:04:32.1930000-07:00|10FF0003|Gegehi Gehi|005A5A23|17262|73814|3950|10000|0||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:32.1930000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +37|2023-10-06T22:04:32.2810000-07:00|10FF0008|Kokosaze Lulusaze|000113E8|75947||||||100.02|99.53|0.00|-3.14| +37|2023-10-06T22:04:32.3260000-07:00|10FF0001|Sesuga Sapisuga|000113ED|129071|129071|10000|10000|1||98.81|95.76|0.00|-2.82|1301|0|0|02|020005B1|0|41E8E76B|||||| +21|2023-10-06T22:04:32.3260000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|6F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1857001|40478540|10000|10000|||100.00|80.10|0.00|0.00|126295|129071|10000|10000|||98.81|95.76|0.00|-2.82|000113F6|0|1| +31|2023-10-06T22:04:32.3260000-07:00|10FF0001||||| +37|2023-10-06T22:04:32.3710000-07:00|40021585|Zeromus|000113F0|1845156||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:32.3710000-07:00|10FF000A|Dukaro Nezikaro|66140|83502|10000|10000|||99.81|99.78|0.00|3.13| +24|2023-10-06T22:04:32.3710000-07:00|10FF0003|Gegehi Gehi|HoT|0|19EA|17262|73814|3950|10000|||101.73|102.43|0.00|-3.06|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +38|2023-10-06T22:04:32.3710000-07:00|10FF0003|Gegehi Gehi|005A5A23|23896|73814|3950|10000|0||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:32.4160000-07:00|10FF0006|Wowobora Gogobora|000113EE|67352|81809|3450|10000|0||102.84|95.43|0.00|-2.43|1B00|0|0|01|07000AA4|0|0|| +37|2023-10-06T22:04:32.4160000-07:00|10FF0003|Gegehi Gehi|000113E8|34230||||||101.73|102.43|0.00|-3.06| +24|2023-10-06T22:04:32.4160000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|21D5|65305|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +38|2023-10-06T22:04:32.4160000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|67352|81809|3450|10000|0||102.84|95.43|0.00|-2.43|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:32.4160000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|74801|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:32.4600000-07:00|10FF0004|Buhojaqe Zijaqe|000113ED|76580|81541|3450|10000|0||101.49|98.59|0.00|-2.79|1C02|0|0|01|0700083C|0|415FA5E6|| +39|2023-10-06T22:04:32.4600000-07:00|10FF0007|Kehabiqo Febiqo|122574|129844|10000|10000|||99.93|95.72|0.00|3.14| +24|2023-10-06T22:04:32.4600000-07:00|10FF0003|Gegehi Gehi|HoT|777|A34|17262|73814|3950|10000|||101.73|102.43|0.00|-3.06|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.4600000-07:00|10FF000B|Pusu Rosu|HoT|777|F3A|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.4600000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|F82|65305|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.4600000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A14|75947|90216|10000|10000|||100.02|99.53|0.00|-3.14|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.4600000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A2D|63173|81541|3450|10000|||101.49|98.59|0.00|-2.79|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.4600000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A64|121276|129844|10000|10000|||99.93|95.72|0.00|3.14|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.4600000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A04|129071|129071|10000|10000|||98.81|95.76|0.00|-2.82|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.4600000-07:00|10FF0006|Wowobora Gogobora|HoT|777|FD2|67352|81809|3450|10000|||102.84|95.43|0.00|-2.43|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +24|2023-10-06T22:04:32.4600000-07:00|10FF000B|Pusu Rosu|HoT|0|18F2|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02|10FF000B|Pusu Rosu|0|56137|79209|1843|10000|||99.84|100.76|0.00|-0.02| +38|2023-10-06T22:04:32.4600000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|125234|129844|10000|10000|1||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:32.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:32.4600000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|78527|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:32.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:32.4600000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|71402|81809|3450|10000|0||102.84|95.43|0.00|-2.43|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:32.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:04:32.4600000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|1||98.81|95.76|0.00|-2.82|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:32.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:04:32.4600000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|79185|81541|3450|10000|0||101.49|98.59|0.00|-2.79|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:32.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:32.4600000-07:00|10FF0003|Gegehi Gehi|005A5A23|36842|73814|3950|10000|0||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:32.4600000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:32.4600000-07:00|10FF000B|Pusu Rosu|005A5A18|66421|79209|1843|10000|0||99.84|100.76|0.00|-0.02|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:32.4600000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:32.4600000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|78771|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:32.4600000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:04:32.1250000-07:00|Change|40021A6A||| +37|2023-10-06T22:04:32.5490000-07:00|10FF0004|Buhojaqe Zijaqe|000113E8|81541||||||101.49|98.59|0.00|-2.79| +24|2023-10-06T22:04:32.5490000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1A74|125234|129844|10000|10000|||99.93|95.72|0.00|3.14|10FF000B|Pusu Rosu|0|66421|79209|1843|10000|||99.84|100.76|0.00|-0.02| +21|2023-10-06T22:04:32.5490000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|5B530000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|1845156|40478540|10000|10000|||100.00|80.10|0.00|0.00|36842|73814|3950|10000|||101.73|102.43|0.00|-3.06|000113F7|0|1| +38|2023-10-06T22:04:32.5490000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|1||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:32.5490000-07:00|10FF0003|Gegehi Gehi|005A5A23|36842|73814|3650|10000|0||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:32.5490000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:04:32.5930000-07:00|10FF0008|Kokosaze Lulusaze|000113ED|90216|90216|10000|10000|0||100.02|99.53|0.00|-3.14|1F03|0|0|01|0700083C|0|415D8522|| +37|2023-10-06T22:04:32.6380000-07:00|10FF0003|Gegehi Gehi|000113F4|49907||||||101.73|102.43|0.00|-3.06| +21|2023-10-06T22:04:32.6380000-07:00|40021A66|Automaton Queen|4078|Arm Punch|40021585|Zeromus|734003|28D70000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|1845156|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38|000113F8|0|1| +24|2023-10-06T22:04:32.6380000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1A0D|129071|129071|10000|10000|||98.81|95.76|0.00|-2.82|10FF000B|Pusu Rosu|0|66421|79209|1843|10000|||99.84|100.76|0.00|-0.02| +38|2023-10-06T22:04:32.6380000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|1||98.81|95.76|0.00|-2.82|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:32.6820000-07:00|10FF0006|Wowobora Gogobora|000113E8|81809||||||102.90|93.75|0.00|-2.88| +37|2023-10-06T22:04:32.6820000-07:00|40021585|Zeromus|000113F3|1819595||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:32.7270000-07:00|10FF0006|Wowobora Gogobora|000113ED|81809|81809|3450|10000|0||102.94|92.83|-0.02|-3.11|1B04|0|0|01|0300083C|0|415B6045|| +37|2023-10-06T22:04:32.7270000-07:00|40021585|Zeromus|000113EF|1766769||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:32.3140000-07:00|Change|10FF0003||| +37|2023-10-06T22:04:32.7720000-07:00|10FF000B|Pusu Rosu|000113F4|79209||||||99.84|100.76|0.00|-0.02| +37|2023-10-06T22:04:32.8150000-07:00|40021585|Zeromus|000113F5|1761704||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:32.8160000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|14700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1766769|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|000113F9|0|1| +37|2023-10-06T22:04:32.8600000-07:00|10FF000A|Dukaro Nezikaro|000113ED|83502|83502|10000|10000|0||99.81|99.78|0.00|3.13|1E05|0|0|01|0500083C|0|41593F81|| +37|2023-10-06T22:04:32.8600000-07:00|40021585|Zeromus|000113F6|1759919||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:32.9040000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.84|100.76|0.00|-0.02| +261|2023-10-06T22:04:32.5110000-07:00|Change|10FF000B||||||||||||||| +21|2023-10-06T22:04:32.9490000-07:00|10FF0007|Kehabiqo Febiqo|25|Maim|40021585|Zeromus|32710003|22F10000|A3E|340000|11B|258000|0|0|0|0|0|0|0|0|0|0|1759919|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|000113FA|0|1| +37|2023-10-06T22:04:32.9940000-07:00|10FF000B|Pusu Rosu|000113ED|79209|79209|1843|10000|0||99.84|100.76|0.00|-0.02|1806|0|0|01|0700083C|0|41571AA4|| +261|2023-10-06T22:04:32.6110000-07:00|Change|10FF000B||||||||| +21|2023-10-06T22:04:33.0840000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1759919|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|3450|10000|||102.73|91.99|0.00|-3.03|000113FB|0|1| +261|2023-10-06T22:04:32.7280000-07:00|Change|10FF0006||||||||| +37|2023-10-06T22:04:33.1290000-07:00|10FF0003|Gegehi Gehi|000113ED|57723|73814|3650|10000|0||101.73|102.43|0.00|-3.06|2307|0|0|01|0200083C|0|4154F5C7|| +39|2023-10-06T22:04:33.1290000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|3650|10000|||101.49|98.59|0.00|-2.79| +22|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0004|Buhojaqe Zijaqe|200004|2E290000|DB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|000113FC|0|8| +22|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0008|Kokosaze Lulusaze|200004|2CA60000|700E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|000113FC|1|8| +22|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000A|Dukaro Nezikaro|4|1BE40000|A00E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|000113FC|2|8| +22|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF000B|Pusu Rosu|4|1BAA0000|430E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|79209|79209|1843|10000|||99.84|100.76|0.00|-0.73|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|000113FC|3|8| +22|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0007|Kehabiqo Febiqo|200004|2D420000|690E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|000113FC|4|8| +22|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0003|Gegehi Gehi|200004|2E0B0000|AB0E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|49907|73814|3650|10000|||101.73|102.43|0.00|-3.06|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|000113FC|5|8| +22|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0001|Sesuga Sapisuga|4|1BB70000|580E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||98.81|95.76|0.00|3.07|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|000113FC|6|8| +22|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|BA|Succor|10FF0006|Wowobora Gogobora|4|1CE40000|390E|1290000|1B|BA8000|0|0|0|0|0|0|0|0|0|0|81809|81809|3450|10000|||102.73|91.99|0.00|-3.03|81541|81541|3450|10000|||101.49|98.59|0.00|-2.79|000113FC|7|8| +21|2023-10-06T22:04:33.1300000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|220000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1759919|40478540|10000|10000|||100.00|80.10|0.00|0.00|49907|73814|3650|10000|||101.73|102.43|0.00|-3.06|000113FD|0|1| +38|2023-10-06T22:04:33.1300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|16||99.93|95.72|0.00|3.14|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:33.1300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +38|2023-10-06T22:04:33.1300000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:33.1300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:33.1300000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|3450|10000|14||102.73|91.99|0.00|-3.03|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:33.1300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +38|2023-10-06T22:04:33.1300000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|10||98.81|95.76|0.00|3.07|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:33.1300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +38|2023-10-06T22:04:33.1300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2650|10000|23||101.49|98.59|0.00|-2.79|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:33.1300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +38|2023-10-06T22:04:33.1300000-07:00|10FF0003|Gegehi Gehi|005A5A23|57723|73814|3650|10000|25||101.73|102.43|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:33.1300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +38|2023-10-06T22:04:33.1300000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|1843|10000|14||99.84|100.76|0.00|-0.73|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:33.1300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +38|2023-10-06T22:04:33.1300000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|13||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:33.1300000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +21|2023-10-06T22:04:33.1730000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|ABB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1759919|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|000113FE|0|1| +261|2023-10-06T22:04:32.7280000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T22:04:33.2170000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-2.98| +21|2023-10-06T22:04:33.2170000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EF00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1759919|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|000113FF|0|1| +38|2023-10-06T22:04:33.2170000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|20||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:33.2170000-07:00|6FD|Vulnerability Up|0.00|400215A1|Zeromus|10FF0008|Kokosaze Lulusaze|01|90216|44| +37|2023-10-06T22:04:33.3070000-07:00|40021585|Zeromus|000113F7|1736540||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:33.3970000-07:00|40021585|Zeromus|000113F8|1726085||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:33.3970000-07:00|10FF0001|Sesuga Sapisuga|DD3|Royal Authority|40021585|Zeromus|41710003|26E00000|300000F|76E8000|F|A718000|11B|DD38000|0|0|0|0|0|0|0|0|1759919|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||98.81|95.76|0.00|3.07|00011400|0|1| +38|2023-10-06T22:04:33.3970000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|10||98.81|95.76|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:33.3970000-07:00|76E|Sword Oath|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +26|2023-10-06T22:04:33.3970000-07:00|A71|Divine Might|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:04:33.4410000-07:00|10FF0001|Sesuga Sapisuga|000113F4|129071|129071|10000|10000|10||98.81|95.76|0.00|3.07|1306|0|0|02|0900076E|03|C1F00000|||||| +261|2023-10-06T22:04:33.0760000-07:00|Change|40021A67||| +261|2023-10-06T22:04:33.0760000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:04:33.4850000-07:00|40021A6A|Ruby Ifrit|64FC|Inferno|40021585|Zeromus|154003|758F0000|1B|64FC8000|0|0|0|0|0|0|0|0|0|0|0|0|1726085|40478540|10000|10000|||100.00|80.10|0.00|0.00|74223|77698|10000|10000|||105.77|98.30|0.00|-2.93|00011401|0|1| +39|2023-10-06T22:04:33.4850000-07:00|10FF0003|Gegehi Gehi|58461|73814|3850|10000|||101.73|102.43|0.00|-3.06| +39|2023-10-06T22:04:33.5300000-07:00|10FF000B|Pusu Rosu|79209|79209|2124|10000|||99.84|100.76|0.00|3.13| +37|2023-10-06T22:04:33.5760000-07:00|40021585|Zeromus|000113FA|1717140||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:33.5760000-07:00|10FF0006|Wowobora Gogobora|1096|Teraflare|E0000000||4.500|102.65|91.69|-0.02|-2.99| +37|2023-10-06T22:04:33.6210000-07:00|40021585|Zeromus|000113F9|1711908||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:33.6210000-07:00|40021585|Zeromus|000113FB|1711841||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:33.6210000-07:00|40021585|Zeromus|005A5A00|1711841|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +30|2023-10-06T22:04:33.6210000-07:00|4B3|Addle|0.00|10FF0006|Wowobora Gogobora|40021585|Zeromus|00|40478540|81809| +37|2023-10-06T22:04:33.6650000-07:00|40021585|Zeromus|000113FD|1711807||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:33.6650000-07:00|40021585|Zeromus|DoT|0|B51|1711841|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|129844|129844|10000|10000|||99.93|95.72|0.00|3.14| +38|2023-10-06T22:04:33.6650000-07:00|40021585|Zeromus|005A5A00|1708910|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +37|2023-10-06T22:04:33.7100000-07:00|40021585|Zeromus|000113FE|1706163||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:33.7550000-07:00|10FF0003|Gegehi Gehi|1D52|Corps-a-corps|40021585|Zeromus|724003|18300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1706163|40478540|10000|10000|||100.00|80.10|0.00|0.00|58461|73814|3850|10000|||101.73|102.43|0.00|-3.06|00011402|0|1| +261|2023-10-06T22:04:33.3710000-07:00|Change|10FF0003||| +39|2023-10-06T22:04:33.8000000-07:00|10FF0006|Wowobora Gogobora|81809|81809|3650|10000|||102.65|91.69|0.00|-2.58| +21|2023-10-06T22:04:33.8440000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|754003|2EF80000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|1706163|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|2124|10000|||99.84|100.76|0.00|3.13|00011403|0|1| +37|2023-10-06T22:04:33.9790000-07:00|40021585|Zeromus|000113FF|1702339||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:33.9790000-07:00|40021585|Zeromus|00011400|1692387||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:33.9790000-07:00|10FF0001|Sesuga Sapisuga|00011400|129071|129071|10000|10000|10||98.81|95.76|0.00|3.07|1300|0|0|02|0900076E|03|41F00000|||||| +38|2023-10-06T22:04:33.9790000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|10||98.81|95.76|0.00|3.07|0|0|0|||||||||||||||||||||||||||||||||| +21|2023-10-06T22:04:34.0240000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|1706163|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011404|0|1| +261|2023-10-06T22:04:33.6770000-07:00|Change|10FF0006||||||||||||||||||| +21|2023-10-06T22:04:34.1140000-07:00|10FF0008|Kokosaze Lulusaze|1CF3|Heated Split Shot|40021585|Zeromus|722003|32000000|53E|A98000|1B|B328000|0|0|0|0|0|0|0|0|0|0|1692387|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|00011405|0|1| +39|2023-10-06T22:04:34.1590000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14| +21|2023-10-06T22:04:34.2030000-07:00|40021A66|Automaton Queen|4078|Arm Punch|40021585|Zeromus|732003|34FC0000|1B|40788000|0|0|0|0|0|0|0|0|0|0|0|0|1692387|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38|00011406|0|1| +37|2023-10-06T22:04:34.2480000-07:00|10FF0004|Buhojaqe Zijaqe|000113FC|81541|81541|2650|10000|23||101.49|98.59|0.00|-2.79|1C00|0|0|01|03000129|0|41E76664|| +21|2023-10-06T22:04:34.2480000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|710003|19740000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|1692387|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|00011407|0|1| +37|2023-10-06T22:04:34.3800000-07:00|10FF0008|Kokosaze Lulusaze|000113FC|90216|90216|10000|10000|20||100.02|99.53|0.00|-3.14|1F01|0|0|01|02000129|0|41E65601|| +37|2023-10-06T22:04:34.3800000-07:00|40021585|Zeromus|00011402|1686195||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:34.3800000-07:00|10FF0004|Buhojaqe Zijaqe|409C|Biolysis|40021585|Zeromus|F270E|7670000|1B|409C8000|0|0|0|0|0|0|0|0|0|0|0|0|1692387|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2650|10000|||101.49|98.59|0.00|-2.79|00011408|0|1| +261|2023-10-06T22:04:33.9090000-07:00|Change|10FF0004||||| +261|2023-10-06T22:04:34.0190000-07:00|Change|10FF000B||||||||||||||||| +21|2023-10-06T22:04:34.4700000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BAA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1686195|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|00011409|0|1| +21|2023-10-06T22:04:34.4700000-07:00|10FF0003|Gegehi Gehi|408F|Engagement|40021585|Zeromus|720003|199C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1686195|40478540|10000|10000|||100.00|80.10|0.00|0.00|58461|73814|3850|10000|||101.58|100.51|0.00|-3.06|0001140A|0|1| +37|2023-10-06T22:04:34.5150000-07:00|10FF000A|Dukaro Nezikaro|000113FC|83502|83502|10000|10000|13||99.81|99.78|0.00|3.13|1E02|0|0|01|03000129|0|41E5459E|| +38|2023-10-06T22:04:34.6050000-07:00|40021A66|Automaton Queen|005A5A00|82193|85668|10000|10000|0||114.43|95.38|0.00|-2.38|0|0|0||||||| +26|2023-10-06T22:04:34.6050000-07:00|7AD|Summon Order III|30.00|40021585|Zeromus|40021A66|Automaton Queen|01|85668|40478540| +21|2023-10-06T22:04:34.6050000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AC80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1686195|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||98.81|95.76|0.00|3.07|0001140B|0|1| +31|2023-10-06T22:04:34.6050000-07:00|10FF0001||||| +37|2023-10-06T22:04:34.6490000-07:00|10FF000B|Pusu Rosu|000113FC|79209|79209|1724|10000|14||99.84|100.76|0.00|3.13|1803|0|0|01|04000129|0|41E42F17|| +37|2023-10-06T22:04:34.6490000-07:00|40021585|Zeromus|00011407|1679679||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:34.6490000-07:00|40021A66|Automaton Queen|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38| +21|2023-10-06T22:04:34.6950000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|13520000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1686195|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|0001140C|0|1| +22|2023-10-06T22:04:34.6950000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0006|Wowobora Gogobora|750603|83A30000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|81809|81809|3650|10000|||102.65|91.69|0.00|-1.94|44|44|0|10000|||100.00|80.10|0.00|0.00|0001140D|0|8| +22|2023-10-06T22:04:34.6950000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0007|Kehabiqo Febiqo|750603|70140000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001140D|1|8| +22|2023-10-06T22:04:34.6950000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0001|Sesuga Sapisuga|750603|4DA00000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||98.81|95.76|0.00|3.07|44|44|0|10000|||100.00|80.10|0.00|0.00|0001140D|2|8| +22|2023-10-06T22:04:34.6950000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0004|Buhojaqe Zijaqe|750603|62150000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|2250|10000|||101.49|98.59|0.00|-3.06|44|44|0|10000|||100.00|80.10|0.00|0.00|0001140D|3|8| +22|2023-10-06T22:04:34.6950000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0008|Kokosaze Lulusaze|750603|67E40000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|44|44|0|10000|||100.00|80.10|0.00|0.00|0001140D|4|8| +22|2023-10-06T22:04:34.6950000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF000A|Dukaro Nezikaro|750603|89D30000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001140D|5|8| +22|2023-10-06T22:04:34.6950000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF0003|Gegehi Gehi|750603|7C310000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|58461|73814|3850|10000|||101.58|100.51|0.00|-3.06|44|44|0|10000|||100.00|80.10|0.00|0.00|0001140D|6|8| +22|2023-10-06T22:04:34.6950000-07:00|4002159D|Zeromus|8B73|Primal Roar|10FF000B|Pusu Rosu|750603|860D0000|1B|8B738000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|1724|10000|||99.84|100.76|0.00|3.13|44|44|0|10000|||100.00|80.10|0.00|0.00|0001140D|7|8| +261|2023-10-06T22:04:34.2380000-07:00|Change|4002159D||||||||||||| +21|2023-10-06T22:04:34.7380000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|4|17220000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|58461|73814|3850|10000|||101.58|100.51|0.00|-3.06|73956|77430|10000|10000|||103.41|100.48|0.00|-2.81|0001140E|0|1| +37|2023-10-06T22:04:34.7830000-07:00|10FF0007|Kehabiqo Febiqo|000113FC|129844|129844|10000|10000|16||99.93|95.72|0.00|3.14|1504|0|0|01|09000129|0|41E31EB4|| +37|2023-10-06T22:04:34.8300000-07:00|10FF0007|Kehabiqo Febiqo|00011404|129844|129844|10000|10000|0||99.93|95.72|0.00|3.14|1500|0|0|02|02000000|0|0|||||| +39|2023-10-06T22:04:34.8300000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||98.80|95.90|0.00|-1.65| +38|2023-10-06T22:04:34.8300000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:34.8300000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +30|2023-10-06T22:04:34.8300000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0007|Kehabiqo Febiqo|00|129844|81541| +37|2023-10-06T22:04:34.8730000-07:00|40021585|Zeromus|00011405|1666879||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:34.8730000-07:00|10FF0006|Wowobora Gogobora|0001140D|48110|81809|3650|10000|0||102.65|91.69|0.00|-1.94|1B00|0|0|01|0|0|0|| +38|2023-10-06T22:04:34.8730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|48110|81809|3650|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:34.8730000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0006|Wowobora Gogobora|00|81809|81541| +37|2023-10-06T22:04:34.9170000-07:00|10FF0007|Kehabiqo Febiqo|0001140D|101152||||||99.93|95.72|0.00|3.14| +37|2023-10-06T22:04:34.9170000-07:00|10FF0003|Gegehi Gehi|000113FC|70248|73814|3850|10000|25||101.58|100.51|0.00|-3.06|2305|0|0|01|01000129|0|41E20A38|| +37|2023-10-06T22:04:34.9620000-07:00|40021585|Zeromus|00011406|1653315||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:34.9620000-07:00|10FF0001|Sesuga Sapisuga|0001140D|109199|129071|10000|10000|0||99.07|96.02|0.00|-1.50|1302|0|0|02|02000000|0|0|||||| +38|2023-10-06T22:04:34.9620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|109199|129071|10000|10000|0||99.07|96.02|0.00|-1.50|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:34.9620000-07:00|5B1|Shake It Off|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +30|2023-10-06T22:04:34.9620000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0001|Sesuga Sapisuga|00|129071|81541| +37|2023-10-06T22:04:35.0070000-07:00|40021585|Zeromus|00011409|1650329||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:35.0070000-07:00|10FF0004|Buhojaqe Zijaqe|0001140D|56432|81541|2250|10000|0||101.49|98.59|0.00|-3.06|1C03|0|0|01|03000000|0|0|| +37|2023-10-06T22:04:35.0070000-07:00|40021585|Zeromus|00011408|1650329|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0767|0|41F00000|| +26|2023-10-06T22:04:35.0070000-07:00|767|Biolysis|30.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +38|2023-10-06T22:04:35.0070000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|56432|81541|2250|10000|0||101.49|98.59|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:35.0070000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +37|2023-10-06T22:04:35.0510000-07:00|10FF0008|Kokosaze Lulusaze|0001140D|63620|90216|10000|10000|0||100.02|99.53|0.00|-3.14|1F04|0|0|01|02000000|0|0|| +37|2023-10-06T22:04:35.0510000-07:00|10FF0001|Sesuga Sapisuga|000113FC|116294||||||99.67|96.06|0.00|-0.71| +37|2023-10-06T22:04:35.0510000-07:00|40021585|Zeromus|0001140A|1643773||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:35.0510000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|19B1|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.0510000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|19C9|81541|81541|2250|10000|||101.49|98.59|0.00|-3.06|10FF0004|Buhojaqe Zijaqe|0|81541|81541|2250|10000|||101.49|98.59|0.00|-3.06| +38|2023-10-06T22:04:35.0510000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|70197|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:35.0510000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0008|Kokosaze Lulusaze|00|90216|81541| +38|2023-10-06T22:04:35.0510000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|63033|81541|2250|10000|0||101.49|98.59|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:04:35.0950000-07:00|10FF000A|Dukaro Nezikaro|0001140D|48219|83502|10000|10000|0||99.81|99.78|0.00|3.13|1E05|0|0|01|03000000|0|0|| +38|2023-10-06T22:04:35.0950000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|48219|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:35.0950000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000A|Dukaro Nezikaro|00|83502|81541| +37|2023-10-06T22:04:35.1400000-07:00|10FF0003|Gegehi Gehi|0001140D|38455|73814|3850|10000|0||101.58|100.51|0.00|-3.06|2306|0|0|01|01000000|0|0|| +37|2023-10-06T22:04:35.1400000-07:00|40021585|Zeromus|0001140B|1641013||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:35.1400000-07:00|40021585|Zeromus|00011403|1628989||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:35.1400000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1963|48110|81809|3650|10000|||102.65|91.69|0.00|-1.94|10FF000B|Pusu Rosu|0|79209|79209|1724|10000|||99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:35.1400000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|54609|81809|4200|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +38|2023-10-06T22:04:35.1400000-07:00|10FF0003|Gegehi Gehi|005A5A23|38455|73814|3850|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:35.1400000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0003|Gegehi Gehi|00|73814|81541| +04|2023-10-06T22:04:34.7600000-07:00|40021A67|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||101.91|96.54|0.00|-0.21| +261|2023-10-06T22:04:34.7600000-07:00|Change|10FF0006||||| +261|2023-10-06T22:04:34.7600000-07:00|Remove|40021A67| +37|2023-10-06T22:04:35.1860000-07:00|10FF000B|Pusu Rosu|0001140D|44892|79209|1724|10000|0||99.84|100.76|0.00|3.13|1807|0|0|02|04000000|0|0|||||| +26|2023-10-06T22:04:35.1860000-07:00|A95|Liturgy of the Bell|16.61|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|03|79209|79209| +37|2023-10-06T22:04:35.1860000-07:00|10FF0006|Wowobora Gogobora|000113FC|62005||||||102.65|91.69|0.00|-1.94| +20|2023-10-06T22:04:35.1860000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|101.58|100.51|0.00|-3.06| +38|2023-10-06T22:04:35.1860000-07:00|10FF000B|Pusu Rosu|005A5A18|44892|79209|1724|10000|0||99.84|100.76|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:35.1860000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF000B|Pusu Rosu|00|79209|81541| +261|2023-10-06T22:04:34.7600000-07:00|Change|10FF0003||||||||||||||||||| +22|2023-10-06T22:04:35.2290000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF000B|Pusu Rosu|4|34B90000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|0001140F|0|8| +22|2023-10-06T22:04:35.2290000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0003|Gegehi Gehi|4|33F80000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|38455|73814|3850|10000|||101.58|100.51|0.00|-3.06|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|0001140F|1|8| +22|2023-10-06T22:04:35.2290000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF000A|Dukaro Nezikaro|200004|4E820000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|48219|83502|10000|10000|||99.81|99.78|0.00|3.13|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|0001140F|2|8| +22|2023-10-06T22:04:35.2290000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0008|Kokosaze Lulusaze|4|35DC0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|70197|90216|10000|10000|||100.02|99.53|0.00|-3.14|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|0001140F|3|8| +22|2023-10-06T22:04:35.2290000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0004|Buhojaqe Zijaqe|4|34230000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|63033|81541|2250|10000|||101.49|98.59|0.00|-3.06|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|0001140F|4|8| +22|2023-10-06T22:04:35.2290000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0001|Sesuga Sapisuga|4|34300000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|116294|129071|10000|10000|||100.40|96.12|0.00|1.39|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|0001140F|5|8| +22|2023-10-06T22:04:35.2290000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0007|Kehabiqo Febiqo|4|345B0000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|101152|129844|10000|10000|||99.93|95.72|0.00|3.14|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|0001140F|6|8| +22|2023-10-06T22:04:35.2290000-07:00|40021A6B|Liturgic Bell|6507|Liturgy of the Bell|10FF0006|Wowobora Gogobora|200004|4E780000|1B|65078000|0|0|0|0|0|0|0|0|0|0|0|0|62005|81809|4200|10000|||102.65|91.69|0.00|-1.94|72984|75049|10000|10000|||99.69|108.42|0.00|3.12|0001140F|7|8| +37|2023-10-06T22:04:35.3180000-07:00|40021585|Zeromus|0001140C|1624043||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:35.3630000-07:00|10FF000A|Dukaro Nezikaro|49054|83502|10000|10000|||99.81|99.78|0.00|3.13| +24|2023-10-06T22:04:35.3630000-07:00|10FF0003|Gegehi Gehi|HoT|0|1F22|38455|73814|3850|10000|||101.58|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +21|2023-10-06T22:04:35.3630000-07:00|10FF0008|Kokosaze Lulusaze|4339|Hypercharge|10FF0008|Kokosaze Lulusaze|500000F|A808000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|70197|90216|10000|10000|||100.02|99.53|0.00|-3.14|70197|90216|10000|10000|||100.02|99.53|0.00|-3.14|00011410|0|1| +20|2023-10-06T22:04:35.3630000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.84|100.76|0.00|3.13| +21|2023-10-06T22:04:35.3630000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AF50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1624043|40478540|10000|10000|||100.00|80.10|0.00|0.00|49054|83502|10000|10000|||99.81|99.78|0.00|3.13|00011411|0|1| +38|2023-10-06T22:04:35.3630000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|70197|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:35.3630000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|05|90216|90216| +38|2023-10-06T22:04:35.3630000-07:00|10FF0003|Gegehi Gehi|005A5A23|46425|73814|3850|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:04:35.4080000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|2109|49054|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +21|2023-10-06T22:04:35.4080000-07:00|10FF0007|Kehabiqo Febiqo|2A|Storm's Path|40021585|Zeromus|3F710003|30660000|143E|340000|4|19AC8000|11B|2A8000|0|0|0|0|0|0|0|0|1624043|40478540|10000|10000|||100.00|80.10|0.00|0.00|101152|129844|10000|10000|||99.93|95.72|0.00|3.14|00011412|0|1| +38|2023-10-06T22:04:35.4080000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|57511|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:35.4520000-07:00|40021585|Zeromus|00011401|1593948||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:35.4520000-07:00|10FF0007|Kehabiqo Febiqo|102450|129844|10000|10000|||99.93|95.72|0.00|3.14| +24|2023-10-06T22:04:35.4520000-07:00|10FF000B|Pusu Rosu|HoT|777|A38|44892|79209|1724|10000|||99.84|100.76|0.00|3.13|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.4520000-07:00|10FF0003|Gegehi Gehi|HoT|777|A09|38455|73814|3850|10000|||101.58|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.4520000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|A1A|49054|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.4520000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|9E7|70197|90216|10000|10000|||100.02|99.53|0.00|-3.14|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.4520000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A20|63033|81541|2250|10000|||101.49|98.59|0.00|-3.06|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.4520000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|9D9|116294|129071|10000|10000|||100.40|96.12|0.00|1.49|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.4520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A58|101152|129844|10000|10000|||99.93|95.72|0.00|3.14|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.4520000-07:00|10FF0006|Wowobora Gogobora|HoT|777|F38|62005|81809|4200|10000|||102.65|91.69|0.00|-1.94|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:35.4520000-07:00|10FF000B|Pusu Rosu|HoT|0|1F4A|44892|79209|1724|10000|||99.84|100.76|0.00|3.13|10FF000B|Pusu Rosu|0|44892|79209|1724|10000|||99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:35.4520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|105098|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:35.4520000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:35.4520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|72732|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:35.4520000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:35.4520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|65901|81809|4200|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:35.4520000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:04:35.4520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|118815|129071|10000|10000|0||100.40|96.12|0.00|1.49|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:35.4520000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:04:35.4520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|65625|81541|2250|10000|0||101.49|98.59|0.00|-3.06|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:35.4520000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:35.4520000-07:00|10FF0003|Gegehi Gehi|005A5A23|48994|73814|3850|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:35.4520000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:35.4520000-07:00|10FF000B|Pusu Rosu|005A5A18|55518|79209|1724|10000|0||99.84|100.76|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:35.4520000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:35.4520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|60097|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:35.4520000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:04:35.1040000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:04:35.5390000-07:00|10FF0003|Gegehi Gehi|0001140E|54916||||||101.58|100.51|0.00|-3.06| +24|2023-10-06T22:04:35.5400000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|1A2E|105098|129844|10000|10000|||99.93|95.72|0.00|3.14|10FF000B|Pusu Rosu|0|55518|79209|1724|10000|||99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:35.5400000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|111800|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T22:04:35.6290000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1994|118815|129071|10000|10000|||100.40|96.12|0.00|-3.12|10FF0001|Sesuga Sapisuga|0|118815|129071|10000|10000|||100.40|96.12|0.00|-3.12| +38|2023-10-06T22:04:35.6290000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|125363|129071|10000|10000|0||100.40|96.12|0.00|-3.12|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:35.6740000-07:00|10FF000B|Pusu Rosu|0001140F|69015||||||99.84|100.76|0.00|3.13| +21|2023-10-06T22:04:35.7180000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1593948|40478540|10000|10000|||100.00|80.10|0.00|0.00|65625|81541|2250|10000|||101.49|98.59|0.00|-3.06|00011413|0|1| +21|2023-10-06T22:04:35.7630000-07:00|40021A66|Automaton Queen|4077|Pile Bunker|40021585|Zeromus|734003|715D0000|1B|40778000|0|0|0|0|0|0|0|0|0|0|0|0|1593948|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38|00011414|0|1| +37|2023-10-06T22:04:35.8070000-07:00|10FF0003|Gegehi Gehi|0001140F|68220||||||101.58|100.51|0.00|-3.06| +21|2023-10-06T22:04:35.8510000-07:00|10FF0001|Sesuga Sapisuga|09|Fast Blade|40021585|Zeromus|710003|136F0000|1B|98000|0|0|0|0|0|0|0|0|0|0|0|0|1593948|40478540|10000|10000|||100.00|80.10|0.00|0.00|125363|129071|10000|10000|||100.40|96.12|0.00|-3.12|00011415|0|1| +37|2023-10-06T22:04:35.8960000-07:00|40021585|Zeromus|00011411|1591143||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:35.8960000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|EDF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1593948|40478540|10000|10000|||100.00|80.10|0.00|0.00|72732|90216|10000|10000|||100.02|99.53|0.00|-3.14|00011416|0|1| +37|2023-10-06T22:04:35.9420000-07:00|10FF000A|Dukaro Nezikaro|0001140F|80195||||||99.81|99.78|0.00|3.13| +37|2023-10-06T22:04:36.0750000-07:00|10FF0008|Kokosaze Lulusaze|0001140F|86520||||||100.02|99.53|0.00|-3.14| +39|2023-10-06T22:04:36.1200000-07:00|10FF0004|Buhojaqe Zijaqe|66440|81541|2450|10000|||101.49|98.59|0.00|-3.06| +261|2023-10-06T22:04:35.6830000-07:00|Change|10FF0004||||||||| +37|2023-10-06T22:04:36.2100000-07:00|10FF0004|Buhojaqe Zijaqe|0001140F|79787||||||101.49|98.59|0.00|-3.06| +39|2023-10-06T22:04:36.2100000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-1.69| +37|2023-10-06T22:04:36.2540000-07:00|40021585|Zeromus|00011413|1590997||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:36.2980000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|25600000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|1591143|40478540|10000|10000|||100.00|80.10|0.00|0.00|69015|79209|1724|10000|||99.84|100.76|0.00|3.13|00011417|0|1| +37|2023-10-06T22:04:36.3420000-07:00|10FF0001|Sesuga Sapisuga|0001140F|129071||||||100.40|96.12|0.00|-3.12| +37|2023-10-06T22:04:36.4770000-07:00|10FF0007|Kehabiqo Febiqo|0001140F|125203||||||99.93|95.72|0.00|3.14| +37|2023-10-06T22:04:36.4770000-07:00|40021585|Zeromus|00011415|1586022||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:36.4770000-07:00|10FF0003|Gegehi Gehi|68958|73814|4050|10000|||101.58|100.51|0.00|-3.06| +261|2023-10-06T22:04:36.0340000-07:00|Change|10FF0003||||| +39|2023-10-06T22:04:36.5210000-07:00|10FF000B|Pusu Rosu|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +21|2023-10-06T22:04:36.5210000-07:00|10FF0001|Sesuga Sapisuga|14|Fight or Flight|10FF0001|Sesuga Sapisuga|190E|4C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12|00011418|0|1| +21|2023-10-06T22:04:36.5210000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24D40000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|1590997|40478540|10000|10000|||100.00|80.10|0.00|0.00|80195|83502|10000|10000|||99.81|99.78|0.00|3.13|00011419|0|1| +261|2023-10-06T22:04:36.1440000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:04:36.6110000-07:00|10FF0006|Wowobora Gogobora|0001140F|81809||||||102.65|91.69|0.00|-1.94| +26|2023-10-06T22:04:36.6110000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|04|90216|90216| +21|2023-10-06T22:04:36.6110000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|720003|21170000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1586022|40478540|10000|10000|||100.00|80.10|0.00|0.00|86520|90216|10000|10000|||100.02|99.53|0.00|-3.14|0001141A|0|1| +21|2023-10-06T22:04:36.6110000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|754003|36790000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|1586022|40478540|10000|10000|||100.00|80.10|0.00|0.00|68958|73814|4050|10000|||101.58|100.51|0.00|-3.06|0001141B|0|1| +38|2023-10-06T22:04:36.6110000-07:00|10FF0003|Gegehi Gehi|005A5A23|68958|73814|3850|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:36.6110000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:04:36.6560000-07:00|40021585|Zeromus|00011416|1582215||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:36.6560000-07:00|40021585|Zeromus|DoT|0|17C7|1586022|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0007|Kehabiqo Febiqo|FFFFFFFF|125203|129844|10000|10000|||99.93|95.72|0.00|3.14| +38|2023-10-06T22:04:36.6560000-07:00|40021585|Zeromus|005A5A00|1576128|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||||||||| +39|2023-10-06T22:04:36.7890000-07:00|10FF0006|Wowobora Gogobora|81809|81809|4400|10000|||102.65|91.69|0.00|-1.94| +261|2023-10-06T22:04:36.3370000-07:00|Change|10FF0006||||| +20|2023-10-06T22:04:36.7890000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|102.47|98.94|0.00|1.45| +261|2023-10-06T22:04:36.3370000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:04:36.8790000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|AFB0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1576128|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12|0001141C|0|1| +31|2023-10-06T22:04:36.8790000-07:00|10FF0001||||| +37|2023-10-06T22:04:36.9240000-07:00|40021585|Zeromus|00011412|1563738||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:36.9240000-07:00|10FF0007|Kehabiqo Febiqo|00011412|129844||||||99.93|95.72|0.00|3.14| +37|2023-10-06T22:04:36.9240000-07:00|40021585|Zeromus|00011419|1554310||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:36.9730000-07:00|40021585|Zeromus|005A5A00|1554310|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +30|2023-10-06T22:04:36.9730000-07:00|4A9|Reprisal|0.00|10FF0007|Kehabiqo Febiqo|40021585|Zeromus|00|40478540|129844| +37|2023-10-06T22:04:37.0580000-07:00|40021585|Zeromus|00011414|1525289||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:37.0580000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|46B90000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|1554310|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001141D|0|1| +38|2023-10-06T22:04:37.0580000-07:00|40021A66|Automaton Queen|005A5A00|82193|85668|10000|10000|0||114.43|95.38|0.00|-2.38|0|0|0|||| +30|2023-10-06T22:04:37.0580000-07:00|7AD|Summon Order III|0.00|40021585|Zeromus|40021A66|Automaton Queen|01|85668|40478540| +37|2023-10-06T22:04:37.1470000-07:00|10FF0001|Sesuga Sapisuga|00011418|129071|129071|10000|10000|0||100.40|96.12|0.00|-3.12|1300|0|0|01|0200004C|0|41A00000|| +26|2023-10-06T22:04:37.1470000-07:00|4C|Fight or Flight|20.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +39|2023-10-06T22:04:37.1480000-07:00|10FF0008|Kokosaze Lulusaze|87422|90216|10000|10000|||100.02|99.53|0.00|-3.14| +38|2023-10-06T22:04:37.1480000-07:00|40021585|Zeromus|005A5A00|1525289|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +30|2023-10-06T22:04:37.1480000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +21|2023-10-06T22:04:37.1920000-07:00|10FF0001|Sesuga Sapisuga|1CD7|Requiescat|40021585|Zeromus|750003|27080000|400000F|5588000|F|BCB8000|0|0|0|0|0|0|0|0|0|0|1525289|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12|0001141E|0|1| +38|2023-10-06T22:04:37.1920000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.40|96.12|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:37.1920000-07:00|558|Requiescat|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|04|129071|129071| +26|2023-10-06T22:04:37.1920000-07:00|BCB|Confiteor Ready|30.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +37|2023-10-06T22:04:37.2370000-07:00|40021585|Zeromus|0001141A|1516818||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:37.3710000-07:00|40021585|Zeromus|0001141B|1502873||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:37.4160000-07:00|40021585|Zeromus|0001141C|1500062||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:37.4160000-07:00|10FF0001|Sesuga Sapisuga|0001141C|129071|129071|10000|10000|0||100.40|96.12|0.00|-3.12|1300|0|0|02|08000558|04|C1F00000|||||| +261|2023-10-06T22:04:37.0850000-07:00|Change|10FF0003||||||||||||||||| +261|2023-10-06T22:04:37.0850000-07:00|Change|40021A6A||||| +38|2023-10-06T22:04:37.5490000-07:00|40021A6F||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +22|2023-10-06T22:04:37.5510000-07:00|10FF0006|Wowobora Gogobora|1096|Teraflare|40021585|Zeromus|780003|D3FC4004|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1500062|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|4400|10000|||102.65|91.69|0.00|-1.94|0001141F|0|1| +36|2023-10-06T22:04:37.5510000-07:00|0000|3| +21|2023-10-06T22:04:37.5510000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8F80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1500062|40478540|10000|10000|||100.00|80.10|0.00|0.00|80195|83502|10000|10000|||99.81|99.78|0.00|3.13|00011420|0|1| +38|2023-10-06T22:04:37.5510000-07:00|40021A6F||005A5A00|74223|77698|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:04:37.0850000-07:00|Add|40021A6F||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:04:37.1830000-07:00|40021A6F|Carbuncle|00|5A|10FF0006|00||10261|13498|74223|77698|10000|10000|||101.03|91.08|0.00|1.21| +261|2023-10-06T22:04:37.1830000-07:00|Change|10FF0006||||||||||||| +37|2023-10-06T22:04:37.5950000-07:00|40021585|Zeromus|00011417|1490494||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:37.1830000-07:00|Change|40021A6F||| +39|2023-10-06T22:04:37.6400000-07:00|40021A66|Automaton Queen|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38| +21|2023-10-06T22:04:37.6400000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|354003|40740000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|1490494|40478540|10000|10000|||100.00|80.10|0.00|0.00|68958|73814|3850|10000|||101.58|100.51|0.00|-3.06|00011421|0|1| +38|2023-10-06T22:04:37.6400000-07:00|10FF0003|Gegehi Gehi|005A5A23|68958|73814|3550|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:37.6400000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:04:37.6400000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +21|2023-10-06T22:04:37.7290000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|756003|61EF0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|1490494|40478540|10000|10000|||100.00|80.10|0.00|0.00|79787|81541|2450|10000|||102.74|99.02|0.00|-3.00|00011422|0|1| +38|2023-10-06T22:04:37.7730000-07:00|40021A66|Automaton Queen|005A5A00|82193|85668|10000|10000|0||114.43|95.38|0.00|-2.38|0|0|0||||||| +26|2023-10-06T22:04:37.7730000-07:00|7AE|Summon Order IV|30.00|40021585|Zeromus|40021A66|Automaton Queen|01|85668|40478540| +39|2023-10-06T22:04:37.7730000-07:00|40021A6B|Liturgic Bell|75049|75049|10000|10000|||99.69|108.42|0.00|3.12| +37|2023-10-06T22:04:37.8190000-07:00|40021585|Zeromus|0001141E|1480502||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:37.8190000-07:00|10FF0001|Sesuga Sapisuga|0001141E|129071|129071|10000|10000|0||100.40|96.12|0.00|-3.12|1300|0|0|02|08000558|04|41F00000|||||| +21|2023-10-06T22:04:37.8190000-07:00|40021A66|Automaton Queen|64BB|Crowned Collider|40021585|Zeromus|734003|8A2A0000|1B|64BB8000|0|0|0|0|0|0|0|0|0|0|0|0|1490494|40478540|10000|10000|||100.00|80.10|0.00|0.00|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38|00011423|0|1| +39|2023-10-06T22:04:37.8190000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12| +20|2023-10-06T22:04:37.8190000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|1.970|99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:37.8190000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.40|96.12|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:37.3730000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:04:37.3730000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:04:37.8620000-07:00|10FF0007|Kehabiqo Febiqo|0001141D|111739||||||99.93|95.72|0.00|3.14| +21|2023-10-06T22:04:37.8620000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|710003|3B7C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1480502|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|00011424|0|1| +21|2023-10-06T22:04:37.8630000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BA20000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1480502|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.93|95.72|0.00|3.14|00011425|0|1| +21|2023-10-06T22:04:38.0410000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1480502|40478540|10000|10000|||100.00|80.10|0.00|0.00|68958|73814|3550|10000|||101.58|100.51|0.00|-3.06|00011426|0|1| +37|2023-10-06T22:04:38.0850000-07:00|40021585|Zeromus|00011420|1478206||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:38.0860000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|2195|87422|90216|10000|10000|||100.02|99.53|0.00|-3.14|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|19FC|79787|81541|2050|10000|||102.74|99.02|0.00|-3.00|10FF0004|Buhojaqe Zijaqe|0|79787|81541|2050|10000|||102.74|99.02|0.00|-3.00| +26|2023-10-06T22:04:38.0860000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|03|90216|90216| +21|2023-10-06T22:04:38.0860000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|726003|47350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1480502|40478540|10000|10000|||100.00|80.10|0.00|0.00|87422|90216|10000|10000|||100.02|99.53|0.00|-3.14|00011427|0|1| +38|2023-10-06T22:04:38.0860000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:38.0860000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2050|10000|0||102.74|99.02|0.00|-3.00|0|0|0|||||||||||||||||||||||||||| +24|2023-10-06T22:04:38.1740000-07:00|10FF0006|Wowobora Gogobora|HoT|0|197F|81809|81809|4400|10000|||102.65|91.69|0.00|-1.94|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:38.1740000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4950|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +21|2023-10-06T22:04:38.2180000-07:00|400219AD|Ruby Carbuncle|322|Embrace|10FF000B|Pusu Rosu|200004|242F0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13|73956|77430|10000|10000|||103.41|100.48|0.00|-2.74|00011428|0|1| +39|2023-10-06T22:04:38.3520000-07:00|10FF000A|Dukaro Nezikaro|81030|83502|10000|10000|||99.81|99.78|0.00|3.13| +21|2023-10-06T22:04:38.3530000-07:00|10FF0001|Sesuga Sapisuga|DD2|Goring Blade|40021585|Zeromus|712003|96750000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1478206|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12|00011429|0|1| +37|2023-10-06T22:04:38.3970000-07:00|40021585|Zeromus|00011425|1475228||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:38.3970000-07:00|40021585|Zeromus|00011421|1458728||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:38.3970000-07:00|10FF0003|Gegehi Gehi|00011421|68958|73814|3550|10000|0||101.58|100.51|0.00|-3.06|2300|0|0|01|060004D3|0|41F00000|| +24|2023-10-06T22:04:38.3970000-07:00|10FF0003|Gegehi Gehi|HoT|0|1993|68958|73814|3550|10000|||101.58|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:38.3970000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3550|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:04:38.4410000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|18E7|80195|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:38.4410000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:38.4870000-07:00|40021585|Zeromus|00011424|1443500||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:38.4870000-07:00|10FF0007|Kehabiqo Febiqo|113037|129844|10000|10000|||99.93|95.72|0.00|3.14| +24|2023-10-06T22:04:38.4870000-07:00|10FF000B|Pusu Rosu|HoT|777|A07|69807|79209|1605|10000|||99.84|100.76|0.00|3.13|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.4870000-07:00|10FF0003|Gegehi Gehi|HoT|777|A28|68958|73814|3550|10000|||101.58|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.4870000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|9DB|80195|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.4870000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A4E|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.4870000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A27|81541|81541|2050|10000|||102.74|99.02|0.00|-3.00|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.4870000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A1C|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.4870000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|9E3|111739|129844|10000|10000|||99.93|95.72|0.00|3.14|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.4870000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A5C|81809|81809|4950|10000|||102.65|91.69|0.00|-1.94|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:38.4870000-07:00|10FF000B|Pusu Rosu|HoT|0|1A68|69807|79209|1605|10000|||99.84|100.76|0.00|3.13|10FF000B|Pusu Rosu|0|69807|79209|1605|10000|||99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:38.4870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|115568|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:38.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:38.4870000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:38.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:38.4870000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|4950|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:38.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:04:38.4870000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.40|96.12|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:38.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:04:38.4870000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|2050|10000|0||102.74|99.02|0.00|-3.00|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:38.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:38.4870000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3550|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:38.4870000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:38.4870000-07:00|10FF000B|Pusu Rosu|005A5A18|79134|79209|1605|10000|0||99.84|100.76|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:38.4870000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:38.4870000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:38.4870000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:04:38.0080000-07:00|Change|10FF0003||| +37|2023-10-06T22:04:38.5300000-07:00|40021585|Zeromus|00011422|1418429||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:38.5770000-07:00|40021585|Zeromus|00011426|1418394||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:38.5770000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|19BC|115568|129844|10000|10000|||99.93|95.72|0.00|3.14|10FF000B|Pusu Rosu|0|79134|79209|1605|10000|||99.84|100.76|0.00|3.13| +21|2023-10-06T22:04:38.5770000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|724003|AAE0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1443500|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|0001142A|0|1| +34|2023-10-06T22:04:38.5770000-07:00|40021A6F|Carbuncle|40021A6F|Carbuncle|01| +38|2023-10-06T22:04:38.5770000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122156|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:04:38.1270000-07:00|Change|10FF0006||| +261|2023-10-06T22:04:38.1270000-07:00|Change|40021A6F||| +24|2023-10-06T22:04:38.6640000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|298D|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12|10FF0001|Sesuga Sapisuga|0|129071|129071|10000|10000|||100.40|96.12|0.00|-3.12| +21|2023-10-06T22:04:38.6640000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|720003|13770000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1418394|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|0001142B|0|1| +38|2023-10-06T22:04:38.6640000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||100.40|96.12|0.00|-3.12|0|0|0||||||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:38.7080000-07:00|40021585|Zeromus|00011427|1400165||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:38.7530000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44710003|31BA0000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|1418394|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|0001142C|0|1| +37|2023-10-06T22:04:38.8890000-07:00|40021585|Zeromus|00011429|1361648||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:39.0200000-07:00|10FF000B|Pusu Rosu|00011428|79209||||||99.84|100.76|0.00|3.13| +39|2023-10-06T22:04:39.1100000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|2250|10000|||102.68|98.85|0.00|-2.92| +261|2023-10-06T22:04:38.6300000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:04:39.1550000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|85D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1361648|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||100.47|96.61|0.00|-1.51|0001142D|0|1| +31|2023-10-06T22:04:39.1550000-07:00|10FF0001||||| +39|2023-10-06T22:04:39.1990000-07:00|400219AD|Ruby Carbuncle|73956|77430|10000|10000|||103.41|100.48|0.00|-1.50| +20|2023-10-06T22:04:39.1990000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|102.64|98.76|0.00|-2.77| +37|2023-10-06T22:04:39.2880000-07:00|40021585|Zeromus|0001142C|1348918||||||100.00|80.10|0.00|0.00| +22|2023-10-06T22:04:39.2880000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000B|Pusu Rosu|4|19940000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|0001142E|0|8| +22|2023-10-06T22:04:39.2880000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF000A|Dukaro Nezikaro|200004|26D10000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|0001142E|1|8| +22|2023-10-06T22:04:39.2880000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0008|Kokosaze Lulusaze|4|18DC0000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|0001142E|2|8| +22|2023-10-06T22:04:39.2880000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0003|Gegehi Gehi|200004|27380000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|73814|73814|3550|10000|||101.58|100.51|0.00|-3.06|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|0001142E|3|8| +22|2023-10-06T22:04:39.2880000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0004|Buhojaqe Zijaqe|4|18E60000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81541|81541|2250|10000|||102.61|98.68|-0.02|-2.64|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|0001142E|4|8| +22|2023-10-06T22:04:39.2880000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0001|Sesuga Sapisuga|200004|25340000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|129071|129071|10000|10000|||101.00|96.58|0.00|-0.99|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|0001142E|5|8| +22|2023-10-06T22:04:39.2880000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0007|Kehabiqo Febiqo|4|196B0000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|122156|129844|10000|10000|||99.93|95.72|0.00|3.14|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|0001142E|6|8| +22|2023-10-06T22:04:39.2880000-07:00|10FF000B|Pusu Rosu|85|Medica II|10FF0006|Wowobora Gogobora|4|19030000|BD250E|960000|1B|858000|0|0|0|0|0|0|0|0|0|0|81809|81809|4950|10000|||102.65|91.69|0.00|-1.94|79209|79209|1605|10000|||99.84|100.76|0.00|3.13|0001142E|7|8| +261|2023-10-06T22:04:38.8600000-07:00|Change|10FF000B||||||||||||||| +37|2023-10-06T22:04:39.3320000-07:00|40021585|Zeromus|0001142A|1346184||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:39.4670000-07:00|40021585|Zeromus|0001142B|1341201||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:39.4670000-07:00|10FF0003|Gegehi Gehi|73814|73814|3750|10000|||101.58|100.51|0.00|-3.06| +21|2023-10-06T22:04:39.4670000-07:00|10FF0007|Kehabiqo Febiqo|1CDD|Inner Release|10FF0007|Kehabiqo Febiqo|300640F|4998000|F|A408000|F|A678000|0|0|0|0|0|0|0|0|0|0|122156|129844|10000|10000|||99.93|95.72|0.00|3.14|122156|129844|10000|10000|||99.93|95.72|0.00|3.14|0001142F|0|1| +38|2023-10-06T22:04:39.4670000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122156|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:39.4670000-07:00|499|Inner Release|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|03|129844|129844| +26|2023-10-06T22:04:39.4670000-07:00|A75|Surging Tempest|29.10|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:04:39.4670000-07:00|A40|Primal Rend Ready|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:04:39.4670000-07:00|A67|Inner Strength|15.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T22:04:39.5100000-07:00|10FF000B|Pusu Rosu|79209|79209|886|10000|||99.84|100.76|0.00|3.13| +261|2023-10-06T22:04:39.0900000-07:00|Change|10FF0003||| +26|2023-10-06T22:04:39.5560000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|02|90216|90216| +21|2023-10-06T22:04:39.5560000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|29600000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1341201|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|00011430|0|1| +21|2023-10-06T22:04:39.5560000-07:00|10FF000A|Dukaro Nezikaro|1CEA|Bhavacakra|40021585|Zeromus|752003|404C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1341201|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|00011431|0|1| +24|2023-10-06T22:04:39.6450000-07:00|40021585|Zeromus|DoT|0|C72|1341201|40478540|10000|10000|||100.00|80.10|0.00|0.00|40021585|Zeromus|FFFFFFFF|1341201|40478540|10000|10000|||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:39.6450000-07:00|40021585|Zeromus|005A5A00|1338015|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||| +37|2023-10-06T22:04:39.6890000-07:00|40021585|Zeromus|0001142D|1335874||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:39.7340000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|B350000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1338015|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|00011432|0|1| +37|2023-10-06T22:04:39.7790000-07:00|40021585|Zeromus|00011423|1300504||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:39.7790000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5150|10000|||102.65|91.69|0.00|-1.94| +38|2023-10-06T22:04:39.7790000-07:00|40021A66|Automaton Queen|005A5A00|82193|85668|10000|10000|0||114.43|95.38|0.00|-2.38|0|0|0|||| +30|2023-10-06T22:04:39.7790000-07:00|7AE|Summon Order IV|0.00|40021585|Zeromus|40021A66|Automaton Queen|01|85668|40478540| +261|2023-10-06T22:04:39.3690000-07:00|Change|10FF0006||| +261|2023-10-06T22:04:39.3690000-07:00|Change|10FF000B||| +261|2023-10-06T22:04:39.5550000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:04:39.5550000-07:00|Change|400215A0||||||||| +261|2023-10-06T22:04:39.5550000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:04:39.5550000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:04:39.5550000-07:00|Change|4002159F||||||||| +261|2023-10-06T22:04:39.6680000-07:00|Change|10FF0004||||||||||||||||||| +20|2023-10-06T22:04:40.0460000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|1.944|101.58|100.51|0.00|-3.06| +20|2023-10-06T22:04:40.0900000-07:00|4002159F|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|94.23|112.62|0.00|0.00| +20|2023-10-06T22:04:40.0900000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|108.71|119.41|0.00|0.00| +20|2023-10-06T22:04:40.0900000-07:00|400215A1|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|99.71|87.92|0.00|0.00| +20|2023-10-06T22:04:40.0900000-07:00|400215A3|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.83|96.27|0.00|0.00| +20|2023-10-06T22:04:40.0900000-07:00|400215A2|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.70|100.15|0.00|0.00| +21|2023-10-06T22:04:40.0900000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0007|Kehabiqo Febiqo|750003|42D50000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|122156|129844|10000|10000|||99.93|95.72|0.00|3.14|1300504|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011433|0|1| +37|2023-10-06T22:04:40.1350000-07:00|10FF000B|Pusu Rosu|0001142E|79209|79209|886|10000|0||99.84|100.76|0.00|3.13|1800|0|0|01|09000096|0|41700000|| +26|2023-10-06T22:04:40.1350000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +39|2023-10-06T22:04:40.1350000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14| +21|2023-10-06T22:04:40.1350000-07:00|10FF0007|Kehabiqo Febiqo|6497|Bloodwhetting|10FF0007|Kehabiqo Febiqo|9000F60F|A768000|F60F|A778000|5B0F|A788000|0|0|0|0|0|0|0|0|0|0|122156|129844|10000|10000|||99.93|95.72|0.00|3.14|122156|129844|10000|10000|||99.93|95.72|0.00|3.14|00011434|0|1| +21|2023-10-06T22:04:40.1350000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|327F0000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|1300504|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|2250|10000|||102.56|98.56|0.00|-3.00|00011435|0|1| +37|2023-10-06T22:04:40.1790000-07:00|40021585|Zeromus|00011430|1289912||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:40.1790000-07:00|40021585|Zeromus|00011431|1273452||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:40.1790000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|724003|17A80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1300504|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|00011436|0|1| +37|2023-10-06T22:04:40.2240000-07:00|10FF0007|Kehabiqo Febiqo|0001142F|122156|129844|10000|10000|0||99.93|95.72|0.00|3.14|1500|0|0|03|02000499|03|41700000|||||||||| +21|2023-10-06T22:04:40.2240000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|730003|440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1300504|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5150|10000|||102.65|91.69|0.00|-1.94|00011437|0|1| +38|2023-10-06T22:04:40.2240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122156|129844|10000|10000|0||99.93|95.72|0.00|3.14|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:40.2680000-07:00|10FF000A|Dukaro Nezikaro|0001142E|83502|83502|10000|10000|0||99.81|99.78|0.00|3.13|1E01|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:04:40.2680000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:04:40.2680000-07:00|40021585|Zeromus|00011432|1270583||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:04:40.3130000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:40.3130000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|00|90216|90216| +37|2023-10-06T22:04:40.4030000-07:00|10FF0008|Kokosaze Lulusaze|0001142E|90216|90216|10000|10000|0||100.02|99.53|0.00|-3.14|1F02|0|0|01|08000096|0|41700000|| +26|2023-10-06T22:04:40.4030000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:40.4470000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|10000|10000|0||101.03|97.03|0.00|-1.52|0|0|0||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:40.4470000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0001|Sesuga Sapisuga|00|129071|90216| +37|2023-10-06T22:04:40.5360000-07:00|10FF0003|Gegehi Gehi|0001142E|73814|73814|3750|10000|0||101.58|100.51|0.00|-3.06|2303|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:04:40.5360000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +36|2023-10-06T22:04:40.5360000-07:00|00DC|3| +261|2023-10-06T22:04:40.1260000-07:00|Change|10FF0003||||||||||||| +38|2023-10-06T22:04:40.5810000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5150|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:40.5810000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0006|Wowobora Gogobora|00|81809|90216| +261|2023-10-06T22:04:40.1260000-07:00|Change|400215A0||||||||||| +261|2023-10-06T22:04:40.1260000-07:00|Change|400215A1||||||||||| +261|2023-10-06T22:04:40.1260000-07:00|Change|400215A3||||||||||| +261|2023-10-06T22:04:40.1260000-07:00|Change|400215A2||||||||||| +261|2023-10-06T22:04:40.1260000-07:00|Change|4002159F||||||||||| +39|2023-10-06T22:04:40.6260000-07:00|40021A66|Automaton Queen|82193|85668|10000|10000|||114.43|95.38|0.00|-2.38| +37|2023-10-06T22:04:40.6700000-07:00|10FF0004|Buhojaqe Zijaqe|0001142E|81541|81541|1850|10000|0||102.56|98.56|0.00|-3.00|1C04|0|0|01|04000096|0|41700000|| +26|2023-10-06T22:04:40.6700000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +20|2023-10-06T22:04:40.6700000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|99.84|100.76|0.00|3.13| +37|2023-10-06T22:04:40.7140000-07:00|10FF0007|Kehabiqo Febiqo|00011434|122156|129844|10000|10000|8||99.93|95.72|0.00|3.14|1500|0|0|03|0B000A76|0190|41000000|||||||||| +26|2023-10-06T22:04:40.7140000-07:00|A76|Bloodwhetting|8.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +26|2023-10-06T22:04:40.7140000-07:00|A77|Stem the Flow|4.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +26|2023-10-06T22:04:40.7140000-07:00|A78|Stem the Tide|20.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:04:40.7140000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122156|129844|10000|10000|8||99.93|95.72|0.00|3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:40.7140000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0007|Kehabiqo Febiqo|00|129844|90216| +37|2023-10-06T22:04:40.7600000-07:00|40021585|Zeromus|00011437|1270515||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:40.7600000-07:00|40021A6B|Liturgic Bell|75049|75049|10000|10000|||99.69|108.42|0.00|3.12| +21|2023-10-06T22:04:40.7600000-07:00|10FF0004|Buhojaqe Zijaqe|40A1|Summon Seraph|10FF0004|Buhojaqe Zijaqe|3E|9D8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1850|10000|||102.56|98.56|0.00|-3.00|81541|81541|1850|10000|||102.56|98.56|0.00|-3.00|00011438|0|1| +261|2023-10-06T22:04:40.3270000-07:00|Change|400219AD||||||||| +261|2023-10-06T22:04:40.3270000-07:00|Change|400219AD||||||||| +38|2023-10-06T22:04:40.8040000-07:00|40021A78||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +37|2023-10-06T22:04:40.8040000-07:00|40021585|Zeromus|00011436|1264459||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:40.8040000-07:00|10FF0001|Sesuga Sapisuga|0001142E|129071|129071|10000|10000|0||101.03|97.03|0.00|-3.08|1305|0|0|01|07000096|0|41700000|| +26|2023-10-06T22:04:40.8040000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +39|2023-10-06T22:04:40.8040000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|10000|10000|||101.03|97.03|0.00|-3.08| +21|2023-10-06T22:04:40.8050000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|78170000|200004|3FD88000|0|0|0|0|0|0|0|0|0|0|0|0|1270515|40478540|10000|10000|||100.00|80.10|0.00|0.00|122156|129844|10000|10000|||99.93|95.70|0.00|3.13|00011439|0|1| +21|2023-10-06T22:04:40.8050000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|730003|930000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1270515|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1850|10000|||102.56|98.56|0.00|-3.00|0001143A|0|1| +38|2023-10-06T22:04:40.8050000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|122156|129844|10000|10000|8||99.93|95.70|0.00|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:40.8050000-07:00|499|Inner Release|14.37|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|02|129844|129844| +38|2023-10-06T22:04:40.8050000-07:00|40021A78||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:04:40.8490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:40.8490000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000A|Dukaro Nezikaro|00|83502|90216| +261|2023-10-06T22:04:40.4290000-07:00|Change|10FF000B||||||||||||| +37|2023-10-06T22:04:40.8940000-07:00|10FF0007|Kehabiqo Febiqo|00011433|105047||||||99.93|95.67|0.00|3.14| +21|2023-10-06T22:04:40.8940000-07:00|10FF0001|Sesuga Sapisuga|404B|Confiteor|40021585|Zeromus|750003|77DF0000|200004|42C18000|0|0|0|0|0|0|0|0|0|0|0|0|1264459|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|10000|10000|||101.03|97.03|0.00|-3.08|0001143B|0|1| +38|2023-10-06T22:04:40.8940000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||101.03|97.03|0.00|-3.08|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:40.8940000-07:00|558|Requiescat|26.88|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T22:04:40.8940000-07:00|BCB|Confiteor Ready|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +31|2023-10-06T22:04:40.8940000-07:00|10FF0001||||| +261|2023-10-06T22:04:40.4290000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:40.9380000-07:00|40021585|Zeromus|00011435|1251532||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:40.9380000-07:00|10FF0007|Kehabiqo Febiqo|0001142E|111554|129844|10000|10000|8||99.93|95.67|0.00|3.14|1506|0|0|01|08000096|0|41700000|| +26|2023-10-06T22:04:40.9380000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:40.9820000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|886|10000|0||99.84|100.76|0.00|3.13|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:40.9820000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF000B|Pusu Rosu|00|79209|90216| +21|2023-10-06T22:04:41.0280000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|712003|29130000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|1251532|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|0001143C|0|1| +261|2023-10-06T22:04:40.5190000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:04:40.5190000-07:00|Change|4002159B||||||||| +261|2023-10-06T22:04:40.5190000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:04:40.5190000-07:00|Change|4002159E||||||||| +261|2023-10-06T22:04:40.5190000-07:00|Change|4002159A||||||||| +37|2023-10-06T22:04:41.0730000-07:00|10FF0006|Wowobora Gogobora|0001142E|81809|81809|5150|10000|0||102.65|91.69|0.00|-1.94|1B07|0|0|01|09000096|0|41700000|| +26|2023-10-06T22:04:41.0730000-07:00|96|Medica II|15.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +24|2023-10-06T22:04:41.0730000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|19A8|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||99.84|100.76|0.00|3.13| +24|2023-10-06T22:04:41.0730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1A09|81541|81541|1850|10000|||102.73|98.62|0.00|2.91|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1850|10000|||102.73|98.62|0.00|2.91| +26|2023-10-06T22:04:41.0730000-07:00|A80|Overheated|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +21|2023-10-06T22:04:41.0730000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|722003|36280000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1251532|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||100.02|99.53|0.00|-3.14|0001143D|0|1| +38|2023-10-06T22:04:41.0730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||100.02|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:41.0730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1850|10000|0||102.73|98.62|0.00|2.91|0|0|0|||||||||||||||||||||||||||| +20|2023-10-06T22:04:41.1170000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.07|85.89|0.00|0.00| +20|2023-10-06T22:04:41.1170000-07:00|4002159B|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|108.59|106.03|0.00|0.00| +20|2023-10-06T22:04:41.1170000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.11|118.04|0.00|0.00| +20|2023-10-06T22:04:41.1170000-07:00|4002159D|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|100.42|98.42|0.00|0.00| +20|2023-10-06T22:04:41.1170000-07:00|4002159E|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|105.20|95.65|0.00|0.00| +38|2023-10-06T22:04:41.1170000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3750|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:41.1170000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0003|Gegehi Gehi|00|73814|90216| +23|2023-10-06T22:04:41.1620000-07:00|10FF000B|Pusu Rosu|6503|Glare III|Cancelled| +04|2023-10-06T22:04:40.7540000-07:00|40021A6A|Ruby Ifrit|00|5A|10FF0006|00||10262|13505|0|77698|0|10000|||105.77|98.30|0.00|-2.93| +24|2023-10-06T22:04:41.1620000-07:00|10FF0006|Wowobora Gogobora|HoT|0|19C0|81809|81809|5150|10000|||102.65|91.69|0.00|-1.94|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||99.84|100.76|0.00|3.13| +38|2023-10-06T22:04:41.1620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5700|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:40.7540000-07:00|Remove|40021A6A| +261|2023-10-06T22:04:40.7540000-07:00|Change|10FF0004||||||||||||||||||||||| +261|2023-10-06T22:04:40.7540000-07:00|Add|40021A78||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:40.7540000-07:00|Change|10FF0006||| +03|2023-10-06T22:04:40.7540000-07:00|40021A78|Seraph|00|5A|10FF0004|00||8227|10487|73956|77430|10000|10000|||103.42|100.51|0.00|-3.00| +261|2023-10-06T22:04:40.7540000-07:00|Change|40021A78||| +21|2023-10-06T22:04:41.2500000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|BD50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1251532|40478540|10000|10000|||100.00|80.10|0.00|0.00|111554|129844|10000|10000|||99.93|95.60|0.00|3.14|0001143E|0|1| +21|2023-10-06T22:04:41.2500000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|95C0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1251532|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.95|99.53|0.00|-3.14|0001143F|0|1| +38|2023-10-06T22:04:41.2500000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1850|10000|0||103.20|98.79|0.00|1.89|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:41.2500000-07:00|79F|Tactician|0.00|10FF0008|Kokosaze Lulusaze|10FF0004|Buhojaqe Zijaqe|00|81541|90216| +37|2023-10-06T22:04:41.3380000-07:00|40021585|Zeromus|0001143A|1251385||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:41.3380000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||99.81|99.78|0.00|3.13| +24|2023-10-06T22:04:41.3830000-07:00|10FF0003|Gegehi Gehi|HoT|0|20F2|73814|73814|3750|10000|||101.58|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||99.42|101.24|0.00|-2.35| +38|2023-10-06T22:04:41.3830000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3750|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:41.4280000-07:00|40021585|Zeromus|00011439|1220642||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:41.4280000-07:00|10FF0007|Kehabiqo Febiqo|00011439|127898||||||99.96|94.43|0.00|-3.14| +37|2023-10-06T22:04:41.4280000-07:00|40021585|Zeromus|0001143C|1210127||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:41.4280000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|1A23|83502|83502|10000|10000|||99.81|99.78|0.00|3.13|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||99.10|101.60|0.00|-1.74| +21|2023-10-06T22:04:41.4280000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|AA80000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1251385|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||99.79|97.09|0.00|-1.52|00011440|0|1| +38|2023-10-06T22:04:41.4280000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.81|99.78|0.00|3.13|0|0|0||||||||||||||||||||||||| +31|2023-10-06T22:04:41.4280000-07:00|10FF0001||||| +39|2023-10-06T22:04:41.4730000-07:00|10FF0007|Kehabiqo Febiqo|129196|129844|10000|10000|||99.98|93.88|0.00|-3.14| +24|2023-10-06T22:04:41.4730000-07:00|10FF000B|Pusu Rosu|HoT|777|9E5|79209|79209|886|10000|||98.84|101.91|0.00|-1.24|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +24|2023-10-06T22:04:41.4730000-07:00|10FF0003|Gegehi Gehi|HoT|777|A1F|73814|73814|3750|10000|||101.58|100.51|0.00|-3.06|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +24|2023-10-06T22:04:41.4730000-07:00|10FF000A|Dukaro Nezikaro|HoT|777|A27|83502|83502|10000|10000|||99.80|99.77|0.00|-2.99|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +24|2023-10-06T22:04:41.4730000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A48|90216|90216|10000|10000|||99.92|99.53|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +24|2023-10-06T22:04:41.4730000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|777|A16|81541|81541|1850|10000|||105.20|99.06|0.00|1.52|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +24|2023-10-06T22:04:41.4730000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A1B|129071|129071|9000|10000|||99.18|97.12|0.00|-1.52|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +24|2023-10-06T22:04:41.4730000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|A30|127898|129844|10000|10000|||99.98|93.88|0.00|-3.14|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +24|2023-10-06T22:04:41.4730000-07:00|10FF0006|Wowobora Gogobora|HoT|777|F7F|81809|81809|5700|10000|||102.65|91.69|0.00|-1.94|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +24|2023-10-06T22:04:41.4730000-07:00|10FF000B|Pusu Rosu|HoT|0|2916|79209|79209|886|10000|||98.84|101.91|0.00|-1.24|10FF000B|Pusu Rosu|0|79209|79209|886|10000|||98.84|101.91|0.00|-1.24| +21|2023-10-06T22:04:41.4730000-07:00|10FF0003|Gegehi Gehi|1D57|Verstone|40021585|Zeromus|452003|4CFA0000|53E|BA8000|1B|1D578000|0|0|0|0|0|0|0|0|0|0|1210127|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3750|10000|||101.58|100.51|0.00|-3.06|00011441|0|1| +38|2023-10-06T22:04:41.4730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3550|10000|0||101.58|100.51|0.00|-3.06|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:41.4730000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +26|2023-10-06T22:04:41.4730000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +30|2023-10-06T22:04:41.4730000-07:00|4D3|Verstone Ready|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:04:41.4730000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||99.98|93.88|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:41.4730000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:41.4730000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||99.92|99.53|0.00|-3.14|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:41.4730000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:41.4730000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|5700|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:41.4730000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:04:41.4730000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||99.18|97.12|0.00|-1.52|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:41.4730000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:04:41.4730000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1850|10000|0||105.20|99.06|0.00|1.52|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:41.4730000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +38|2023-10-06T22:04:41.4730000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|886|10000|0||98.84|101.91|0.00|-1.24|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:41.4730000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:41.4730000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||99.80|99.77|0.00|-2.99|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:41.4730000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +37|2023-10-06T22:04:41.5170000-07:00|40021585|Zeromus|0001143B|1179440||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:41.5170000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|10F90000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1210127|40478540|10000|10000|||100.00|80.10|0.00|0.00|127898|129844|10000|10000|||99.98|93.88|0.00|-3.14|00011442|0|1| +24|2023-10-06T22:04:41.5620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|2239|127898|129844|10000|10000|||99.98|93.88|0.00|-3.14|10FF0007|Kehabiqo Febiqo|0|127898|129844|10000|10000|||99.98|93.88|0.00|-3.14| +38|2023-10-06T22:04:41.5620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||99.98|93.88|0.00|-3.14|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:41.1040000-07:00|Change|10FF0003||||||||||||||| +261|2023-10-06T22:04:41.1040000-07:00|Change|4002159B||||||||||| +261|2023-10-06T22:04:41.1040000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:04:41.1040000-07:00|Change|4002159D||||||||||| +261|2023-10-06T22:04:41.1040000-07:00|Change|4002159C||||||||||| +261|2023-10-06T22:04:41.1040000-07:00|Change|4002159E||||||||||| +21|2023-10-06T22:04:41.6060000-07:00|10FF0001|Sesuga Sapisuga|17|Circle of Scorn|40021585|Zeromus|710003|12020000|13C80E|F80000|0|0|0|0|0|0|0|0|0|0|0|0|1210127|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||99.18|97.12|0.00|-1.52|00011443|0|1| +24|2023-10-06T22:04:41.6510000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|199C|129071|129071|9000|10000|||98.50|97.15|0.00|-1.53|10FF0001|Sesuga Sapisuga|0|129071|129071|9000|10000|||98.50|97.15|0.00|-1.53| +21|2023-10-06T22:04:41.6510000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|24FF0000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|1179440|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1850|10000|||105.64|99.26|0.00|1.40|00011444|0|1| +38|2023-10-06T22:04:41.6510000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|9000|10000|0||98.50|97.15|0.00|-1.53|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:41.6960000-07:00|40021585|Zeromus|0001143D|1165576||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:41.6960000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|724003|19920000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1179440|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||99.94|99.53|0.00|-3.14|00011445|0|1| +37|2023-10-06T22:04:41.7850000-07:00|40021585|Zeromus|0001143E|1162547||||||100.00|80.10|0.00|0.00| +34|2023-10-06T22:04:41.8290000-07:00|40021A78|Seraph|40021A78|Seraph|01| +261|2023-10-06T22:04:41.3990000-07:00|Change|40021A78||| +261|2023-10-06T22:04:41.3990000-07:00|Change|10FF000B||||||||||||||||||||| +21|2023-10-06T22:04:41.8740000-07:00|10FF000B|Pusu Rosu|4094|Dia|40021585|Zeromus|752003|B910000|BDBF0E|74F0000|1B|40948000|0|0|0|0|0|0|0|0|0|0|1162547|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|886|10000|||96.67|101.47|0.00|-1.43|00011446|0|1| +21|2023-10-06T22:04:41.9180000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|A740000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1162547|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||98.20|99.67|0.00|-1.93|00011447|0|1| +37|2023-10-06T22:04:41.9630000-07:00|40021585|Zeromus|00011440|1159819||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:41.6200000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:04:41.7370000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:04:42.0090000-07:00|40021585|Zeromus|0001143F|1157423||||||100.00|80.10|0.00|0.00| +35|2023-10-06T22:04:42.0090000-07:00|40021584||40021585|Zeromus|0000|0000|0109|||| +37|2023-10-06T22:04:42.0530000-07:00|40021585|Zeromus|0001141F|841011||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:42.0980000-07:00|40021585|Zeromus|8CFA|Flow of the Abyss|40021585|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:42.0980000-07:00|40021599|Zeromus|8B82|Dimensional Surge|40021599|Zeromus|8.700|95.50|100.02|0.00|0.00| +39|2023-10-06T22:04:42.0980000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1650|10000|||106.14|99.61|0.00|-2.84| +37|2023-10-06T22:04:42.1420000-07:00|40021585|Zeromus|00011442|836666||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:41.7370000-07:00|Change|40021584||||||||| +261|2023-10-06T22:04:41.7370000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:04:41.7370000-07:00|Change|40021599||||||||||||||||||||| +257|2023-10-06T22:04:42.0090000-07:00|80034E7C|00020001|03|00|0000| +261|2023-10-06T22:04:41.8530000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:04:42.2760000-07:00|40021585|Zeromus|00011441|816960||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:42.3210000-07:00|10FF0007|Kehabiqo Febiqo|1CDB|Upheaval|40021585|Zeromus|710003|2C470000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|836666|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||99.87|92.92|0.00|3.14|00011448|0|1| +38|2023-10-06T22:04:42.3210000-07:00|40021A78|Seraph|005A5A00|73956|77430|10000|10000|0||103.42|100.51|0.00|-3.00|0|0|0||||||| +26|2023-10-06T22:04:42.3210000-07:00|30|Well Fed|950.04|10FF0004|Buhojaqe Zijaqe|40021A78|Seraph|2968|77430|81541| +26|2023-10-06T22:04:42.3210000-07:00|7AD|Summon Order III|30.00|40021A78|Seraph|40021A78|Seraph|01|77430|77430| +21|2023-10-06T22:04:42.3210000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1650|10000|||107.22|100.23|0.00|2.53|81541|81541|1650|10000|||107.22|100.23|0.00|2.53|00011449|0|1| +261|2023-10-06T22:04:42.0850000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:04:42.4550000-07:00|40021585|Zeromus|00011447|814284||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:42.5010000-07:00|40021585|Zeromus|00011445|807738||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:42.5010000-07:00|10FF0003|Gegehi Gehi|73814|73814|3750|10000|||99.12|100.31|0.00|3.05| +39|2023-10-06T22:04:42.5010000-07:00|10FF000B|Pusu Rosu|79209|79209|767|10000|||95.27|101.77|0.00|-2.54| +261|2023-10-06T22:04:42.1840000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:04:42.5450000-07:00|10FF0008|Kokosaze Lulusaze|1CF2|Heat Blast|40021585|Zeromus|724003|28F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|807738|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||93.60|100.47|0.00|-1.34|0001144A|0|1| +21|2023-10-06T22:04:42.5450000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|556003|6D920000|6003E|BA8000|1B|64FF8000|0|0|0|0|0|0|0|0|0|0|807738|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3750|10000|||98.13|100.22|0.00|3.05|0001144B|0|1| +38|2023-10-06T22:04:42.5450000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||93.60|100.47|0.00|-1.34|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:42.5450000-07:00|A80|Overheated|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|01|90216|90216| +38|2023-10-06T22:04:42.5450000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3450|10000|0||98.13|100.22|0.00|3.05|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:42.5450000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:04:42.5880000-07:00|40021585|Zeromus|00011444|798267||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:42.6330000-07:00|40021585|Zeromus|00011443|793657|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|020000F8|0|41700000|| +26|2023-10-06T22:04:42.6330000-07:00|F8|Circle of Scorn|15.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +261|2023-10-06T22:04:42.3700000-07:00|Change|400219AD||||| +24|2023-10-06T22:04:42.6780000-07:00|40021585|Zeromus|DoT|0|F91|793657|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF0001|Sesuga Sapisuga|FFFFFFFF|129071|129071|9000|10000|||93.37|97.37|0.00|-1.53| +38|2023-10-06T22:04:42.6780000-07:00|40021585|Zeromus|005A5A00|789672|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|||||||||| +261|2023-10-06T22:04:42.3700000-07:00|Change|10FF0007||||||||| +39|2023-10-06T22:04:42.8110000-07:00|10FF0006|Wowobora Gogobora|81809|81809|5900|10000|||102.65|91.69|0.00|-1.94| +261|2023-10-06T22:04:42.4600000-07:00|Change|40021A66||||||||| +261|2023-10-06T22:04:42.4600000-07:00|Change|10FF0006||| +261|2023-10-06T22:04:42.4600000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:04:42.9460000-07:00|40021585|Zeromus|00011448|778337||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:42.9900000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|789672|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3450|10000|||95.73|100.02|0.00|3.03|0001144C|0|1| +261|2023-10-06T22:04:42.6780000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:04:43.1680000-07:00|40021585|Zeromus|0001144A|767854||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:43.1680000-07:00|40021585|Zeromus|00011446|764893|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0|01|0300074F|0|41F00000|| +26|2023-10-06T22:04:43.1680000-07:00|74F|Dia|30.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +39|2023-10-06T22:04:43.1680000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||93.07|104.05|0.00|1.08| +21|2023-10-06T22:04:43.1680000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|12EA0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|778337|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||93.07|104.05|0.00|1.08|0001144D|0|1| +261|2023-10-06T22:04:42.7980000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:04:43.2570000-07:00|10FF0007|Kehabiqo Febiqo|6499|Primal Rend|40021585|Zeromus|716003|A0330000|200004|3E218000|0|0|0|0|0|0|0|0|0|0|0|0|764893|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||95.38|92.60|-0.02|3.13|0001144E|0|1| +38|2023-10-06T22:04:43.2570000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||95.38|92.60|-0.02|3.13|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:43.2570000-07:00|A40|Primal Rend Ready|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:04:42.7980000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:04:43.3010000-07:00|40021585|Zeromus|0001144B|736843||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:43.3010000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32710003|24820000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|764893|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||91.43|98.49|0.00|-1.94|0001144F|0|1| +21|2023-10-06T22:04:43.3450000-07:00|10FF0006|Wowobora Gogobora|07|attack|40021585|Zeromus|732003|700000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|764893|40478540|10000|10000|||100.00|80.10|0.00|0.00|81809|81809|5900|10000|||102.65|91.69|0.00|-1.94|00011450|0|1| +21|2023-10-06T22:04:43.3900000-07:00|10FF0001|Sesuga Sapisuga|6494|Blade of Faith|40021585|Zeromus|750003|5CB20000|200004|45528000|0|0|0|0|0|0|0|0|0|0|0|0|736843|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|9000|10000|||93.37|97.37|0.00|2.78|00011451|0|1| +38|2023-10-06T22:04:43.3900000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8000|10000|0||93.37|97.37|0.00|2.78|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:43.3900000-07:00|558|Requiescat|24.38|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|02|129071|129071| +31|2023-10-06T22:04:43.3900000-07:00|10FF0001||||| +261|2023-10-06T22:04:42.9130000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:43.5230000-07:00|40021585|Zeromus|0001144C|736816||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:43.5230000-07:00|40021A6F|Carbuncle|77698|77698|10000|10000|||101.03|91.08|0.00|1.21| +36|2023-10-06T22:04:43.5230000-07:00|01B8|3| +261|2023-10-06T22:04:43.1340000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:04:43.7020000-07:00|40021585|Zeromus|0001144F|727470||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:43.7020000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|82D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|736816|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8000|10000|||93.37|97.37|0.00|2.78|00011452|0|1| +31|2023-10-06T22:04:43.7020000-07:00|10FF0001||||| +37|2023-10-06T22:04:43.7920000-07:00|40021585|Zeromus|0001144D|722628||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:43.7920000-07:00|40021A6B|Liturgic Bell|75049|75049|10000|10000|||99.69|108.42|0.00|3.12| +39|2023-10-06T22:04:43.7920000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|8200|10000|||93.37|97.37|0.00|2.78| +37|2023-10-06T22:04:43.8810000-07:00|40021585|Zeromus|00011450|722516||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:43.5280000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:04:43.9260000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|8830000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|722516|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.73|106.45|0.00|2.36|00011453|0|1| +21|2023-10-06T22:04:43.9260000-07:00|10FF0003|Gegehi Gehi|1D5F|Contre Sixte|40021585|Zeromus|722003|54370000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|722516|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3450|10000|||93.16|99.87|0.00|3.08|00011454|0|1| +37|2023-10-06T22:04:44.0160000-07:00|40021585|Zeromus|00011451|698786||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:43.5280000-07:00|Change|40021A78||||||||| +24|2023-10-06T22:04:44.0610000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|19AE|90216|90216|10000|10000|||92.80|106.46|-0.01|1.76|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||91.36|104.09|0.00|-0.50| +24|2023-10-06T22:04:44.0610000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|19DD|81541|81541|1650|10000|||115.12|105.39|0.00|0.16|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1650|10000|||115.12|105.39|0.00|0.16| +21|2023-10-06T22:04:44.0610000-07:00|10FF0008|Kokosaze Lulusaze|64BC|Chain Saw|40021585|Zeromus|720003|5E800000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|698786|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||92.80|106.46|-0.01|1.76|00011455|0|1| +21|2023-10-06T22:04:44.0610000-07:00|4002159F|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||94.23|112.62|0.00|0.00|00011456|0|0| +21|2023-10-06T22:04:44.0610000-07:00|400215A0|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.71|119.41|0.00|0.00|00011457|0|0| +22|2023-10-06T22:04:44.0610000-07:00|400215A1|Zeromus|8B7E|Dimensional Surge|10FF0006|Wowobora Gogobora|750003|979C0000|100140E|6FD0000|1B|8B7E8000|0|0|0|0|0|0|0|0|0|0|81809|81809|5900|10000|||102.65|91.69|0.00|-1.94|44|44|0|10000|||99.71|87.92|0.00|0.00|00011458|0|1| +22|2023-10-06T22:04:44.0610000-07:00|400215A3|Zeromus|8B7E|Dimensional Surge|10FF0006|Wowobora Gogobora|750003|C5E50000|200140E|6FD0000|1B|8B7E8000|0|0|0|0|0|0|0|0|0|0|81809|81809|5900|10000|||102.65|91.69|0.00|-1.94|44|44|0|10000|||100.83|96.27|0.00|0.00|00011459|0|1| +21|2023-10-06T22:04:44.0610000-07:00|400215A2|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.70|100.15|0.00|0.00|0001145A|0|0| +38|2023-10-06T22:04:44.0610000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||92.80|106.46|-0.01|1.76|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:44.0610000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1650|10000|0||115.12|105.39|0.00|0.16|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:04:43.7610000-07:00|Change|4002159F||||||||||| +261|2023-10-06T22:04:43.7610000-07:00|Change|400215A0||||||||||| +21|2023-10-06T22:04:44.1040000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|710003|8570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|698786|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||88.56|95.29|0.00|-2.73|0001145B|0|1| +261|2023-10-06T22:04:43.7610000-07:00|Change|400215A1||||||||||| +261|2023-10-06T22:04:43.7610000-07:00|Change|400215A3||||||||||| +261|2023-10-06T22:04:43.7610000-07:00|Change|400215A2||||||||||| +24|2023-10-06T22:04:44.1490000-07:00|10FF0006|Wowobora Gogobora|HoT|0|1A47|81809|81809|5900|10000|||102.65|91.69|0.00|-1.94|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||91.24|104.06|0.00|0.18| +38|2023-10-06T22:04:44.1490000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6450|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.1490000-07:00|6FD|Vulnerability Up|59.91|400215A3|Zeromus|10FF0006|Wowobora Gogobora|02|81809|44| +37|2023-10-06T22:04:44.2380000-07:00|40021585|Zeromus|00011452|696693||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:43.8750000-07:00|Change|10FF0006||| +261|2023-10-06T22:04:43.8750000-07:00|Change|10FF000A||||||||| +39|2023-10-06T22:04:44.3730000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||88.00|94.04|0.00|-2.71| +24|2023-10-06T22:04:44.3730000-07:00|10FF0003|Gegehi Gehi|HoT|0|1A23|73814|73814|3450|10000|||93.16|99.87|0.00|2.81|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||91.14|104.04|0.00|0.80| +38|2023-10-06T22:04:44.3730000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3450|10000|0||93.16|99.87|0.00|2.81|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:04:43.9900000-07:00|Change|10FF0001||| +37|2023-10-06T22:04:44.4180000-07:00|40021585|Zeromus|0001144E|655682||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:44.4180000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|19E0|83502|83502|10000|10000|||88.00|94.04|0.00|-2.71|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||91.14|104.04|0.00|0.80| +20|2023-10-06T22:04:44.4180000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|115.49|106.43|0.00|0.20| +38|2023-10-06T22:04:44.4180000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|0||88.00|94.04|0.00|-2.71|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:04:44.4620000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.69|92.58|0.00|2.65| +24|2023-10-06T22:04:44.4620000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A2D|90216|90216|10000|10000|||94.57|106.59|0.00|2.03|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||90.90|103.28|0.00|1.51| +24|2023-10-06T22:04:44.4620000-07:00|10FF0003|Gegehi Gehi|HoT|777|A5C|73814|73814|3450|10000|||93.16|99.87|0.00|2.81|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||90.90|103.28|0.00|1.51| +24|2023-10-06T22:04:44.4620000-07:00|10FF0001|Sesuga Sapisuga|HoT|777|A00|129071|129071|8200|10000|||93.37|97.37|0.00|2.78|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||90.90|103.28|0.00|1.51| +24|2023-10-06T22:04:44.4620000-07:00|10FF000B|Pusu Rosu|HoT|777|F87|79209|79209|767|10000|||90.90|103.28|0.00|1.51|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||90.90|103.28|0.00|1.51| +24|2023-10-06T22:04:44.4620000-07:00|10FF0006|Wowobora Gogobora|HoT|777|A0C|81809|81809|6450|10000|||102.65|91.69|0.00|-1.94|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||90.90|103.28|0.00|1.51| +24|2023-10-06T22:04:44.4620000-07:00|10FF0007|Kehabiqo Febiqo|HoT|777|9D1|129844|129844|10000|10000|||94.69|92.58|0.00|2.65|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||90.90|103.28|0.00|1.51| +24|2023-10-06T22:04:44.4620000-07:00|10FF000B|Pusu Rosu|HoT|0|2962|79209|79209|767|10000|||90.90|103.28|0.00|1.51|10FF000B|Pusu Rosu|0|79209|79209|767|10000|||90.90|103.28|0.00|1.51| +21|2023-10-06T22:04:44.4620000-07:00|10FF0007|Kehabiqo Febiqo|1CDA|Onslaught|40021585|Zeromus|710003|106D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|655682|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.69|92.58|0.00|2.65|0001145C|0|1| +38|2023-10-06T22:04:44.4620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|8||94.69|92.58|0.00|2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:44.4620000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|0||94.57|106.59|0.00|2.03|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:44.4620000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6450|10000|0||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +38|2023-10-06T22:04:44.4620000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|0||93.37|97.37|0.00|2.78|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +38|2023-10-06T22:04:44.4620000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3450|10000|0||93.16|99.87|0.00|2.81|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:44.4620000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:44.4620000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|767|10000|0||90.90|103.28|0.00|1.51|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.4620000-07:00|778|Asylum|4.96|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +22|2023-10-06T22:04:44.5520000-07:00|40021A78|Seraph|40A3|Consolation|10FF0006|Wowobora Gogobora|4|20B80000|B80E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|81809|81809|6450|10000|||102.65|91.69|0.00|-1.94|73956|77430|10000|10000|||104.31|96.28|0.00|2.93|0001145D|0|8| +22|2023-10-06T22:04:44.5520000-07:00|40021A78|Seraph|40A3|Consolation|10FF0001|Sesuga Sapisuga|4|20AD0000|AD0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|129071|129071|8200|10000|||93.37|97.37|0.00|2.78|73956|77430|10000|10000|||104.31|96.28|0.00|2.93|0001145D|1|8| +22|2023-10-06T22:04:44.5520000-07:00|40021A78|Seraph|40A3|Consolation|10FF0007|Kehabiqo Febiqo|4|20CE0000|CE0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||94.45|92.58|0.00|2.65|73956|77430|10000|10000|||104.31|96.28|0.00|2.93|0001145D|2|8| +22|2023-10-06T22:04:44.5520000-07:00|40021A78|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|4|1F830000|830E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|73814|73814|3450|10000|||93.16|99.87|0.00|2.81|73956|77430|10000|10000|||104.31|96.28|0.00|2.93|0001145D|3|8| +22|2023-10-06T22:04:44.5520000-07:00|40021A78|Seraph|40A3|Consolation|10FF0008|Kokosaze Lulusaze|4|1F640000|640E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||94.98|106.63|0.00|1.87|73956|77430|10000|10000|||104.31|96.28|0.00|2.93|0001145D|4|8| +22|2023-10-06T22:04:44.5520000-07:00|40021A78|Seraph|40A3|Consolation|10FF000B|Pusu Rosu|4|1FA80000|A80E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|79209|79209|767|10000|||90.69|102.54|0.00|2.11|73956|77430|10000|10000|||104.31|96.28|0.00|2.93|0001145D|5|8| +22|2023-10-06T22:04:44.5520000-07:00|40021A78|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1EEC0000|EC0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|81541|81541|1650|10000|||115.79|107.41|0.00|-0.67|73956|77430|10000|10000|||104.31|96.28|0.00|2.93|0001145D|6|8| +22|2023-10-06T22:04:44.5520000-07:00|40021A78|Seraph|40A3|Consolation|10FF000A|Dukaro Nezikaro|4|1FFB0000|FB0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||87.56|92.81|0.00|-2.81|73956|77430|10000|10000|||104.31|96.28|0.00|2.93|0001145D|7|8| +24|2023-10-06T22:04:44.5520000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|210A|129844|129844|10000|10000|||94.45|92.58|0.00|2.65|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||94.45|92.58|0.00|2.65| +21|2023-10-06T22:04:44.5520000-07:00|10FF0001|Sesuga Sapisuga|6493|Expiacion|40021585|Zeromus|714003|46E70000|B|1F48000|0|0|0|0|0|0|0|0|0|0|0|0|655682|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|8200|10000|||93.37|97.37|0.00|2.78|0001145E|0|1| +38|2023-10-06T22:04:44.5520000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.45|92.58|0.00|2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.5520000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +38|2023-10-06T22:04:44.5520000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||94.98|106.63|0.00|1.87|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.5520000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +38|2023-10-06T22:04:44.5520000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|81809|81809|6450|10000|10||102.65|91.69|0.00|-1.94|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.5520000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +38|2023-10-06T22:04:44.5520000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|6||93.37|97.37|0.00|2.78|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.5520000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +38|2023-10-06T22:04:44.5520000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1650|10000|9||115.79|107.41|0.00|-0.67|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.5520000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T22:04:44.5520000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3450|10000|10||93.16|99.87|0.00|2.81|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:44.5520000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T22:04:44.5520000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|767|10000|10||90.69|102.54|0.00|2.11|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:44.5520000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF000B|Pusu Rosu|00|79209|77430| +38|2023-10-06T22:04:44.5520000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||87.56|92.81|0.00|-2.81|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:44.5520000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF000A|Dukaro Nezikaro|00|83502|77430| +37|2023-10-06T22:04:44.6420000-07:00|40021585|Zeromus|0001145B|653547||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:44.6420000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|1F88|129071|129071|8200|10000|||93.37|97.37|0.00|2.78|10FF0001|Sesuga Sapisuga|0|129071|129071|8200|10000|||93.37|97.37|0.00|2.78| +21|2023-10-06T22:04:44.6420000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B3B0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|655682|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.45|92.58|0.00|2.65|0001145F|0|1| +38|2023-10-06T22:04:44.6420000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|8200|10000|6||93.37|97.37|0.00|2.78|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:44.6860000-07:00|40021585|Zeromus|00011453|651368||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:44.6860000-07:00|10FF0006|Wowobora Gogobora|00011458|42997|81809|6450|10000|10||102.65|91.69|0.00|-1.94|1B00|0|0|01|06FD|02|426DAD12|| +37|2023-10-06T22:04:44.6860000-07:00|10FF0006|Wowobora Gogobora|00011459|0|81809|0|10000|0||102.65|91.69|0.00|-1.94|1B00|0|0|04|0|0|0|||||||||||||| +21|2023-10-06T22:04:44.6860000-07:00|10FF0008|Kokosaze Lulusaze|B3A|Gauss Round|40021585|Zeromus|722003|20F30000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|653547|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||95.40|106.73|0.00|1.71|00011460|0|1| +38|2023-10-06T22:04:44.6860000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.45|92.58|0.00|2.65|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:44.6860000-07:00|A77|Stem the Flow|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:04:44.6860000-07:00|10FF0006|Wowobora Gogobora|005A5A1B|0|81809|0|10000|0||102.65|91.69|0.00|-1.94|0|0|0|||||||||| +30|2023-10-06T22:04:44.6860000-07:00|6FD|Vulnerability Up|0.00|400215A3|Zeromus|10FF0006|Wowobora Gogobora|02|81809|44| +30|2023-10-06T22:04:44.6860000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0006|Wowobora Gogobora|00|81809|129844| +30|2023-10-06T22:04:44.6860000-07:00|A8D|Further Ruin|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T22:04:44.6860000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF0006|Wowobora Gogobora|00|81809|77430| +261|2023-10-06T22:04:44.3040000-07:00|Change|40021A6F||| +30|2023-10-06T22:04:44.6860000-07:00|4B4|Lucid Dreaming|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T22:04:44.6860000-07:00|AA4|Ifrit's Favor|0.00|10FF0006|Wowobora Gogobora|10FF0006|Wowobora Gogobora|00|81809|81809| +30|2023-10-06T22:04:44.6860000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +30|2023-10-06T22:04:44.6860000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0006|Wowobora Gogobora|00|81809|79209| +261|2023-10-06T22:04:44.3040000-07:00|Change|10FF0006||||| +04|2023-10-06T22:04:44.3960000-07:00|400219AD|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|0|77430|0|10000|||103.41|100.48|0.00|-2.98| +261|2023-10-06T22:04:44.3960000-07:00|Remove|400219AD| +37|2023-10-06T22:04:44.9080000-07:00|40021585|Zeromus|0001145E|633217||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:44.9080000-07:00|10FF0001|Sesuga Sapisuga|0001145E|129071|129071|8700|10000|6||93.10|97.11|0.00|-2.54|1300|0|0|0| +261|2023-10-06T22:04:44.4880000-07:00|Change|10FF0004||||||||||||||||||||| +261|2023-10-06T22:04:44.4880000-07:00|Change|10FF000B||||||||| +20|2023-10-06T22:04:44.9510000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|93.16|99.87|0.00|2.81| +261|2023-10-06T22:04:44.5810000-07:00|Change|10FF0003||||||||||||||||||||| +37|2023-10-06T22:04:45.0860000-07:00|40021585|Zeromus|0001145C|629012||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:45.0860000-07:00|40021585|Zeromus|00011455|604820||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:45.0860000-07:00|40021585|Zeromus|00011454|583261||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:45.0860000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.07|85.89|0.00|0.00|00011461|0|0| +21|2023-10-06T22:04:45.0860000-07:00|4002159B|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||108.59|106.03|0.00|0.00|00011462|0|0| +21|2023-10-06T22:04:45.0860000-07:00|4002159C|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.11|118.04|0.00|0.00|00011463|0|0| +21|2023-10-06T22:04:45.0860000-07:00|4002159D|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.42|98.42|0.00|0.00|00011464|0|0| +21|2023-10-06T22:04:45.0860000-07:00|4002159E|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||105.20|95.65|0.00|0.00|00011465|0|0| +261|2023-10-06T22:04:44.6760000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:04:44.6760000-07:00|Change|4002159B||||||||||| +261|2023-10-06T22:04:44.6760000-07:00|Change|4002159E||||||||||| +261|2023-10-06T22:04:44.6760000-07:00|Change|4002159D||||||||||| +261|2023-10-06T22:04:44.6760000-07:00|Change|4002159C||||||||||| +39|2023-10-06T22:04:45.1300000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1850|10000|||116.08|108.45|0.00|-2.63| +261|2023-10-06T22:04:44.6760000-07:00|Change|40021598||||||||| +261|2023-10-06T22:04:44.6760000-07:00|Change|40021597||||||||| +261|2023-10-06T22:04:44.6760000-07:00|Change|40021595||||||||| +261|2023-10-06T22:04:44.6760000-07:00|Change|40021596||||||||| +37|2023-10-06T22:04:45.1750000-07:00|40021585|Zeromus|0001145F|580386||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:45.2190000-07:00|40021595|Zeromus|8B77|Umbral Prism|10FF0008|Kokosaze Lulusaze|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:04:45.2190000-07:00|10FF0008|Kokosaze Lulusaze|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T22:04:45.2190000-07:00|40021596|Zeromus|8B77|Umbral Prism|10FF0007|Kehabiqo Febiqo|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:04:45.2190000-07:00|10FF0007|Kehabiqo Febiqo|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T22:04:45.2190000-07:00|40021597|Zeromus|8B77|Umbral Prism|10FF000A|Dukaro Nezikaro|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:04:45.2190000-07:00|10FF000A|Dukaro Nezikaro|0000|0000|00D3|0000|0000|0000| +20|2023-10-06T22:04:45.2190000-07:00|40021598|Zeromus|8B77|Umbral Prism|10FF0003|Gegehi Gehi|4.700|100.00|100.00|0.00|0.00| +27|2023-10-06T22:04:45.2190000-07:00|10FF0003|Gegehi Gehi|0000|0000|00D3|0000|0000|0000| +21|2023-10-06T22:04:45.3530000-07:00|10FF0008|Kokosaze Lulusaze|B4A|Ricochet|40021585|Zeromus|720003|137A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|580386|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.76|107.04|0.00|3.02|00011466|0|1| +21|2023-10-06T22:04:45.3530000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|32010000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|580386|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1850|10000|||116.08|108.45|0.00|-2.63|00011467|0|1| +261|2023-10-06T22:04:44.9120000-07:00|Change|10FF0007||||||||| +261|2023-10-06T22:04:45.0290000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:45.4870000-07:00|40021585|Zeromus|00011460|571951||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:45.4870000-07:00|10FF0003|Gegehi Gehi|73814|73814|3650|10000|||93.16|99.87|0.00|2.81| +21|2023-10-06T22:04:45.4870000-07:00|10FF000A|Dukaro Nezikaro|8CF|Aeolian Edge|40021585|Zeromus|44714003|3E820000|A3E|9F8000|53E|9F8000|11B|8CF8000|0|0|0|0|0|0|0|0|580386|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||86.59|90.92|0.00|-3.04|00011468|0|1| +39|2023-10-06T22:04:45.5300000-07:00|10FF000B|Pusu Rosu|79209|79209|1048|10000|||87.85|97.21|0.00|-2.55| +37|2023-10-06T22:04:45.5750000-07:00|10FF0001|Sesuga Sapisuga|0001145D|129071|129071|8700|10000|6||92.83|94.32|0.00|3.06|1301|0|0|01|0400077D|0|41E7CCC9|| +261|2023-10-06T22:04:45.2430000-07:00|Change|10FF000A||||||||| +24|2023-10-06T22:04:45.6650000-07:00|40021585|Zeromus|DoT|0|2ACB|571951|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|1048|10000|||87.86|96.44|0.00|-2.69| +38|2023-10-06T22:04:45.6650000-07:00|40021585|Zeromus|005A5A00|560996|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T22:04:45.2430000-07:00|Change|40021596||||||||||||| +261|2023-10-06T22:04:45.2430000-07:00|Change|40021595||||||||||||| +261|2023-10-06T22:04:45.2430000-07:00|Change|40021597||||||||||||| +261|2023-10-06T22:04:45.2430000-07:00|Change|40021598||||||||||||| +37|2023-10-06T22:04:45.7090000-07:00|10FF0007|Kehabiqo Febiqo|0001145D|129844|129844|10000|10000|14||93.25|92.54|-0.02|2.69|1502|0|0|01|0600077D|0|41E6BA5A|| +21|2023-10-06T22:04:45.7090000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7A190000|200004|3F158000|0|0|0|0|0|0|0|0|0|0|0|0|571951|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||93.25|92.54|-0.02|2.69|00011469|0|1| +38|2023-10-06T22:04:45.7090000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||93.25|92.54|-0.02|2.69|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:45.7090000-07:00|499|Inner Release|9.47|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +261|2023-10-06T22:04:45.3430000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:04:45.8420000-07:00|10FF0003|Gegehi Gehi|0001145D|73814|73814|3650|10000|10||93.16|99.87|0.00|2.81|2303|0|0|01|0100077D|0|41E5A9F7|| +21|2023-10-06T22:04:45.8880000-07:00|10FF0001|Sesuga Sapisuga|6495|Blade of Truth|40021585|Zeromus|750003|6AC50000|200004|44038000|0|0|0|0|0|0|0|0|0|0|0|0|560996|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||93.75|93.18|0.00|3.01|0001146A|0|1| +38|2023-10-06T22:04:45.8880000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|6||93.75|93.18|0.00|3.01|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:45.8880000-07:00|558|Requiescat|21.89|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T22:04:45.8880000-07:00|10FF0001||||| +261|2023-10-06T22:04:45.5350000-07:00|Change|10FF0004||||||||||||||| +261|2023-10-06T22:04:45.5350000-07:00|Change|10FF0003||||| +37|2023-10-06T22:04:45.9760000-07:00|40021585|Zeromus|00011466|556010||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:45.9760000-07:00|10FF0008|Kokosaze Lulusaze|0001145D|90216|90216|10000|10000|8||96.76|107.04|0.00|3.02|1F04|0|0|01|0200077D|0|41E49788|| +21|2023-10-06T22:04:45.9770000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|714003|A510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|560996|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7700|10000|||94.25|93.00|0.00|3.01|0001146B|0|1| +31|2023-10-06T22:04:45.9770000-07:00|10FF0001||||| +37|2023-10-06T22:04:46.0210000-07:00|40021585|Zeromus|00011468|540008||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:46.1090000-07:00|10FF000B|Pusu Rosu|0001145D|79209|79209|1048|10000|10||88.26|93.73|0.00|3.12|1805|0|0|01|0200077D|0|41E38519|| +261|2023-10-06T22:04:45.7230000-07:00|Change|40021A78||||||||| +37|2023-10-06T22:04:46.1540000-07:00|40021585|Zeromus|00011467|527207||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:46.1540000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||96.78|107.06|0.00|2.21| +37|2023-10-06T22:04:46.2440000-07:00|10FF0004|Buhojaqe Zijaqe|0001145D|81541|81541|1450|10000|9||116.08|108.45|0.00|-2.63|1C06|0|0|01|0300077D|0|41E274B7|| +21|2023-10-06T22:04:46.2890000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AD50000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|540008|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||85.35|86.68|0.00|2.80|0001146C|0|1| +37|2023-10-06T22:04:46.3330000-07:00|40021585|Zeromus|00011469|495950||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:45.9580000-07:00|Change|10FF0008||||||||| +261|2023-10-06T22:04:46.0710000-07:00|Change|10FF0001||||||||| +37|2023-10-06T22:04:46.3780000-07:00|10FF000A|Dukaro Nezikaro|0001145D|83502|83502|10000|10000|9||85.85|85.34|0.00|2.59|1E07|0|0|01|0300077D|0|41E16248|| +21|2023-10-06T22:04:46.3780000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|756003|5FF90000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|495950|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3650|10000|||93.16|99.87|0.00|2.81|0001146D|0|1| +38|2023-10-06T22:04:46.3780000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3450|10000|10||93.16|99.87|0.00|2.81|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:46.3780000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +38|2023-10-06T22:04:46.3780000-07:00|40021A78|Seraph|005A5A00|73956|77430|10000|10000|0||104.39|95.90|0.00|3.12|0|0|0|||| +30|2023-10-06T22:04:46.3780000-07:00|7AD|Summon Order III|0.00|40021A78|Seraph|40021A78|Seraph|01|77430|77430| +38|2023-10-06T22:04:46.4250000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||93.09|91.22|0.00|2.88|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:46.4250000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:04:46.4250000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||98.02|107.22|0.00|1.86|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:46.4250000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0008|Kokosaze Lulusaze|00|90216|129844| +38|2023-10-06T22:04:46.4250000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7700|10000|6||95.93|91.87|0.00|2.98|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:46.4250000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0001|Sesuga Sapisuga|00|129071|129844| +38|2023-10-06T22:04:46.4250000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1450|10000|9||116.08|108.45|0.00|-2.63|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:46.4250000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0004|Buhojaqe Zijaqe|00|81541|129844| +38|2023-10-06T22:04:46.4250000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3450|10000|10||93.16|99.87|0.00|2.81|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:46.4250000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF0003|Gegehi Gehi|00|73814|129844| +38|2023-10-06T22:04:46.4250000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|1048|10000|10||89.53|91.76|0.00|2.82|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:46.4250000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF000B|Pusu Rosu|00|79209|129844| +38|2023-10-06T22:04:46.4250000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||85.85|85.34|0.00|2.59|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:46.4250000-07:00|83C|Shake It Off (Over Time)|0.00|10FF0007|Kehabiqo Febiqo|10FF000A|Dukaro Nezikaro|00|83502|129844| +38|2023-10-06T22:04:46.4680000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||85.85|85.34|0.00|2.59|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:46.4680000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:04:46.0710000-07:00|Change|10FF000A||||||||| +37|2023-10-06T22:04:46.5110000-07:00|40021585|Zeromus|0001146B|493309||||||100.00|80.10|0.00|0.00| +36|2023-10-06T22:04:46.5110000-07:00|0294|3| +38|2023-10-06T22:04:46.5110000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1450|10000|9||116.08|108.45|0.00|-2.63|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:46.5110000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +21|2023-10-06T22:04:46.6010000-07:00|10FF0008|Kokosaze Lulusaze|1CF4|Heated Slug Shot|40021585|Zeromus|3C722003|47F90000|53E|A98000|11B|B348000|0|0|0|0|0|0|0|0|0|0|495950|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.80|107.32|0.00|1.78|0001146E|0|1| +21|2023-10-06T22:04:46.6010000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|722003|F100000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|495950|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||98.80|107.32|0.00|1.78|0001146F|0|1| +25|2023-10-06T22:04:46.6900000-07:00|10FF0006|Wowobora Gogobora|400215A3|Zeromus| +261|2023-10-06T22:04:46.2870000-07:00|Change|40021A6F||| +261|2023-10-06T22:04:46.2870000-07:00|Change|10FF000B||||||||| +37|2023-10-06T22:04:46.7800000-07:00|40021585|Zeromus|0001146A|465976||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:46.7800000-07:00|40021A6B|Liturgic Bell|75049|75049|10000|10000|||99.69|108.42|0.00|3.12| +04|2023-10-06T22:04:46.3840000-07:00|40021A66|Automaton Queen|00|5A|10FF0008|00||8230|10490|0|85668|0|10000|||114.43|95.38|0.00|-2.38| +261|2023-10-06T22:04:46.3840000-07:00|Remove|40021A66| +37|2023-10-06T22:04:46.8240000-07:00|40021585|Zeromus|0001146C|463203||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:46.8240000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7900|10000|||96.29|90.20|0.00|3.03| +39|2023-10-06T22:04:46.9140000-07:00|40021A78|Seraph|73956|77430|10000|10000|||104.39|95.90|0.00|-2.87| +21|2023-10-06T22:04:46.9140000-07:00|10FF0004|Buhojaqe Zijaqe|03|Sprint|10FF0004|Buhojaqe Zijaqe|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|81541|81541|1450|10000|||116.08|108.42|0.00|-2.80|81541|81541|1450|10000|||116.08|108.42|0.00|-2.80|00011470|0|1| +261|2023-10-06T22:04:46.5650000-07:00|Change|10FF0003||||||||||||||| +37|2023-10-06T22:04:47.0490000-07:00|10FF0004|Buhojaqe Zijaqe|00011470|81541|81541|1450|10000|9||116.09|108.39|0.00|-3.05|1C00|0|0|01|05000032|1E|41200000|| +26|2023-10-06T22:04:47.0490000-07:00|32|Sprint|10.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +24|2023-10-06T22:04:47.0490000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|178A|90216|90216|10000|10000|||99.48|106.74|0.00|2.97|10FF000B|Pusu Rosu|0|79209|79209|1048|10000|||90.22|88.59|0.00|3.10| +24|2023-10-06T22:04:47.0490000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1783|81541|81541|1450|10000|||116.09|108.39|0.00|-3.05|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1450|10000|||116.09|108.39|0.00|-3.05| +22|2023-10-06T22:04:47.0490000-07:00|10FF000B|Pusu Rosu|DF3|Assize|40021585|Zeromus|754003|3B760000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|463203|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|1048|10000|||90.22|88.59|0.00|3.10|00011471|0|6| +22|2023-10-06T22:04:47.0490000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000B|Pusu Rosu|4|27DE0000|B|1F40000|0|0|0|0|0|0|0|0|0|0|0|0|79209|79209|1048|10000|||90.22|88.59|0.00|3.10|79209|79209|1048|10000|||90.22|88.59|0.00|3.10|00011471|1|6| +22|2023-10-06T22:04:47.0490000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0007|Kehabiqo Febiqo|4|28F00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||93.72|87.99|0.00|-3.09|79209|79209|1048|10000|||90.22|88.59|0.00|3.10|00011471|2|6| +22|2023-10-06T22:04:47.0490000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0001|Sesuga Sapisuga|4|27620000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|129071|129071|7900|10000|||96.08|88.97|0.00|3.04|79209|79209|1048|10000|||90.22|88.59|0.00|3.10|00011471|3|6| +22|2023-10-06T22:04:47.0490000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF000A|Dukaro Nezikaro|4|24510000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||86.35|83.90|0.00|2.15|79209|79209|1048|10000|||90.22|88.59|0.00|3.10|00011471|4|6| +22|2023-10-06T22:04:47.0490000-07:00|10FF000B|Pusu Rosu|DF3|Assize|10FF0003|Gegehi Gehi|4|27290000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|73814|73814|3450|10000|||93.16|99.87|0.00|2.81|79209|79209|1048|10000|||90.22|88.59|0.00|3.10|00011471|5|6| +38|2023-10-06T22:04:47.0490000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||99.48|106.74|0.00|2.97|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:47.0490000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1450|10000|9||116.09|108.39|0.00|-3.05|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:04:46.6810000-07:00|Change|10FF0007||||||||| +37|2023-10-06T22:04:47.1370000-07:00|40021585|Zeromus|0001146D|438634||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:47.1820000-07:00|10FF0008|Kokosaze Lulusaze|03|Sprint|10FF0008|Kokosaze Lulusaze|1E00000E|320000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||99.89|106.25|0.00|2.81|90216|90216|10000|10000|||99.89|106.25|0.00|2.81|00011472|0|1| +37|2023-10-06T22:04:47.3140000-07:00|10FF0008|Kokosaze Lulusaze|00011472|90216|90216|10000|10000|8||100.36|105.71|0.00|-3.04|1F00|0|0|01|03000032|1E|41200000|| +26|2023-10-06T22:04:47.3140000-07:00|32|Sprint|10.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|90216|90216| +37|2023-10-06T22:04:47.3600000-07:00|40021585|Zeromus|0001146F|434778||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:47.3600000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||86.38|83.85|0.00|2.12| +24|2023-10-06T22:04:47.3600000-07:00|10FF0003|Gegehi Gehi|HoT|0|E6E|73814|73814|3450|10000|||93.20|99.76|0.00|2.72|10FF000B|Pusu Rosu|0|79209|79209|1048|10000|||90.63|87.18|0.00|3.11| +38|2023-10-06T22:04:47.3600000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3450|10000|10||93.20|99.76|0.00|2.72|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:04:47.0320000-07:00|Change|10FF0001||||||||||| +37|2023-10-06T22:04:47.4040000-07:00|40021585|Zeromus|0001146E|416353||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:47.4050000-07:00|10FF0003|Gegehi Gehi|6500|Veraero III|40021585|Zeromus|352003|564C0000|63E|BA8000|F|4D38000|1B|65008000|0|0|0|0|0|0|0|0|438634|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3450|10000|||93.20|99.76|0.00|2.72|00011473|0|1| +38|2023-10-06T22:04:47.4050000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3150|10000|10||93.20|99.76|0.00|2.72|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:47.4050000-07:00|4D3|Verstone Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:04:47.4050000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +39|2023-10-06T22:04:47.4490000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||92.77|86.45|-0.02|-3.06| +24|2023-10-06T22:04:47.4490000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|F58|83502|83502|10000|10000|||86.38|83.85|0.00|2.12|10FF000B|Pusu Rosu|0|79209|79209|1048|10000|||90.63|87.18|0.00|3.11| +38|2023-10-06T22:04:47.4490000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||86.38|83.85|0.00|2.12|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:04:47.4930000-07:00|10FF0008|Kokosaze Lulusaze|HoT|777|A47|90216|90216|10000|10000|||100.10|104.66|0.00|-3.04|10FF000B|Pusu Rosu|0|79209|79209|1048|10000|||90.68|86.98|0.00|3.11| +24|2023-10-06T22:04:47.4930000-07:00|10FF0003|Gegehi Gehi|HoT|777|A1E|73814|73814|3150|10000|||93.76|99.45|0.00|2.87|10FF000B|Pusu Rosu|0|79209|79209|1048|10000|||90.68|86.98|0.00|3.11| +24|2023-10-06T22:04:47.4930000-07:00|10FF000B|Pusu Rosu|HoT|0|EF3|79209|79209|1048|10000|||90.68|86.98|0.00|3.11|10FF000B|Pusu Rosu|0|79209|79209|1048|10000|||90.68|86.98|0.00|3.11| +38|2023-10-06T22:04:47.4930000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||100.10|104.66|0.00|-3.04|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:47.4930000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:47.4930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3150|10000|10||93.76|99.45|0.00|2.87|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:47.4930000-07:00|778|Asylum|5.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +38|2023-10-06T22:04:47.4930000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|1048|10000|10||90.68|86.98|0.00|3.11|0|0|0||||||||||||||||||||||||||||||| +24|2023-10-06T22:04:47.5820000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|EDC|129844|129844|10000|10000|||93.50|85.93|0.00|-3.07|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||93.50|85.93|0.00|-3.07| +38|2023-10-06T22:04:47.5820000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||93.50|85.93|0.00|-3.07|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:04:47.6260000-07:00|10FF000A|Dukaro Nezikaro|8C0|Spinning Edge|40021585|Zeromus|714003|1E430000|53E|9F8000|1B|8C08000|0|0|0|0|0|0|0|0|0|0|416353|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||86.38|83.85|0.00|2.12|00011474|0|1| +24|2023-10-06T22:04:47.6710000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|F92|129071|129071|7900|10000|||95.39|85.45|0.00|3.03|10FF0001|Sesuga Sapisuga|0|129071|129071|7900|10000|||95.39|85.45|0.00|3.03| +38|2023-10-06T22:04:47.6710000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7900|10000|6||95.39|85.45|0.00|3.03|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:47.7150000-07:00|40021585|Zeromus|00011471|401131||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:47.3550000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:04:47.8040000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|23700000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|401131|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1450|10000|||116.74|104.47|0.00|3.06|00011475|0|1| +261|2023-10-06T22:04:47.3550000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:04:47.8490000-07:00|10FF000B|Pusu Rosu|00011471|79209|79209|1548|10000|10||90.75|86.78|0.00|1.08|1801|0|0|0| +261|2023-10-06T22:04:47.4470000-07:00|Change|10FF000B||||||||||| +21|2023-10-06T22:04:47.9380000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|230000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|401131|40478540|10000|10000|||100.00|80.10|0.00|0.00|73814|73814|3150|10000|||95.01|98.77|0.00|2.87|00011476|0|1| +261|2023-10-06T22:04:47.5470000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:04:48.0270000-07:00|40021585|Zeromus|00011474|393384||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:48.0270000-07:00|10FF0007|Kehabiqo Febiqo|07|attack|40021585|Zeromus|710003|B5A0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|401131|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.19|85.44|0.00|-3.07|00011477|0|1| +39|2023-10-06T22:04:48.1170000-07:00|10FF0004|Buhojaqe Zijaqe|81541|81541|1250|10000|||116.68|102.97|0.00|-2.50| +37|2023-10-06T22:04:48.1620000-07:00|40021585|Zeromus|00011473|371292||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:48.1620000-07:00|10FF0003|Gegehi Gehi|00011473|73814|73814|3150|10000|10||96.56|97.95|0.00|2.41|2300|0|0|01|020004D3|0|41F00000|| +21|2023-10-06T22:04:48.1620000-07:00|10FF0007|Kehabiqo Febiqo|DDD|Fell Cleave|40021585|Zeromus|716003|7E2C0000|200004|3E938000|0|0|0|0|0|0|0|0|0|0|0|0|393384|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.19|85.44|0.00|3.10|00011478|0|1| +38|2023-10-06T22:04:48.1620000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.19|85.44|0.00|3.10|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:48.1620000-07:00|499|Inner Release|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|01|129844|129844| +38|2023-10-06T22:04:48.1620000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3150|10000|10||96.56|97.95|0.00|2.41|0|0|0||||||||||||||||||||||||| +21|2023-10-06T22:04:48.2500000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|710003|8300000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|393384|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||95.41|85.32|0.00|2.42|00011479|0|1| +31|2023-10-06T22:04:48.2500000-07:00|10FF0001||||| +261|2023-10-06T22:04:47.9950000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:04:48.3840000-07:00|10FF0001|Sesuga Sapisuga|6496|Blade of Valor|40021585|Zeromus|750003|798E0000|200004|45E78000|0|0|0|0|0|0|0|0|0|0|0|0|371292|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7900|10000|||95.41|85.32|0.00|2.42|0001147A|0|1| +38|2023-10-06T22:04:48.3840000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|6||95.41|85.32|0.00|2.42|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:48.3840000-07:00|558|Requiescat|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|01|129071|129071| +31|2023-10-06T22:04:48.3840000-07:00|10FF0001||||| +04|2023-10-06T22:04:47.9950000-07:00|40021A6F|Carbuncle|00|5A|10FF0006|00||10261|13498|0|77698|0|10000|||101.03|91.08|0.00|1.21| +261|2023-10-06T22:04:47.9950000-07:00|Remove|40021A6F| +261|2023-10-06T22:04:47.9950000-07:00|Change|10FF0001||||||||| +261|2023-10-06T22:04:47.9950000-07:00|Change|10FF0008||||||||| +37|2023-10-06T22:04:48.4720000-07:00|40021585|Zeromus|00011476|371257||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:48.4720000-07:00|10FF0003|Gegehi Gehi|73814|73814|3350|10000|||97.40|96.77|0.00|2.41| +21|2023-10-06T22:04:48.4720000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|712003|E430000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|371292|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||86.38|83.85|0.00|1.84|0001147B|0|1| +39|2023-10-06T22:04:48.5160000-07:00|10FF000B|Pusu Rosu|79209|79209|1829|10000|||93.52|88.57|-0.02|0.99| +37|2023-10-06T22:04:48.5600000-07:00|40021585|Zeromus|00011477|368351||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:48.6500000-07:00|40021585|Zeromus|DoT|0|203A|371257|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|79209|79209|1829|10000|||93.07|88.57|0.00|0.50| +38|2023-10-06T22:04:48.6510000-07:00|40021585|Zeromus|005A5A00|360101|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T22:04:48.6950000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.19|85.44|0.00|2.32|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:48.6950000-07:00|A76|Bloodwhetting|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|190|129844|129844| +37|2023-10-06T22:04:48.7400000-07:00|40021585|Zeromus|00011475|351029||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:48.7850000-07:00|40021585|Zeromus|00011479|348933||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:48.4160000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:04:48.8290000-07:00|40021585|Zeromus|00011478|316633||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:48.5080000-07:00|Change|10FF0004||||||||| +261|2023-10-06T22:04:48.5080000-07:00|Change|10FF000B||||||||||| +37|2023-10-06T22:04:49.0070000-07:00|40021585|Zeromus|0001147B|312982||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:49.0070000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|1010000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|316633|40478540|10000|10000|||100.00|80.10|0.00|0.00|81541|81541|1250|10000|||114.61|95.10|0.00|-2.83|0001147C|0|1| +261|2023-10-06T22:04:48.6030000-07:00|Change|10FF0008||||||||| +21|2023-10-06T22:04:49.0970000-07:00|10FF0008|Kokosaze Lulusaze|4074|Air Anchor|40021585|Zeromus|720003|58210000|143E|F58000|0|0|0|0|0|0|0|0|0|0|0|0|312982|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.97|92.22|0.00|-2.93|0001147D|0|1| +21|2023-10-06T22:04:49.0970000-07:00|40021585|Zeromus|8CFA|Flow of the Abyss|40021585|Zeromus|1B|8CFA8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|312982|40478540|10000|10000|||100.00|80.10|0.00|0.00|312982|40478540|10000|10000|||100.00|80.10|0.00|0.00|0001147E|0|1| +20|2023-10-06T22:04:49.0970000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|1.477|90.96|88.19|0.00|-1.11| +261|2023-10-06T22:04:48.7220000-07:00|Change|40021585||||| +39|2023-10-06T22:04:49.1410000-07:00|10FF0008|Kokosaze Lulusaze|90216|90216|10000|10000|||96.97|92.22|0.00|-2.93| +37|2023-10-06T22:04:49.2750000-07:00|40021585|Zeromus|0001147A|281864||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:49.2750000-07:00|10FF0008|Kokosaze Lulusaze|08|Shot|40021585|Zeromus|720003|9440000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|312982|40478540|10000|10000|||100.00|80.10|0.00|0.00|90216|90216|10000|10000|||96.83|91.79|0.00|2.82|0001147F|0|1| +261|2023-10-06T22:04:49.0630000-07:00|Change|10FF0004||||||||| +38|2023-10-06T22:04:49.4530000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|1829|10000|10||90.16|87.83|0.00|3.03|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:49.4530000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +38|2023-10-06T22:04:49.4990000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.19|85.44|0.00|2.32|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:49.4990000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +38|2023-10-06T22:04:49.4990000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|6900|10000|6||95.61|85.22|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:49.4990000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +37|2023-10-06T22:04:49.5420000-07:00|40021585|Zeromus|0001147C|281607||||||100.00|80.10|0.00|0.00| +36|2023-10-06T22:04:49.5420000-07:00|0370|3| +261|2023-10-06T22:04:49.2680000-07:00|Change|10FF0003||||||||| +21|2023-10-06T22:04:49.5870000-07:00|10FF0007|Kehabiqo Febiqo|34|Infuriate|10FF0007|Kehabiqo Febiqo|323E|340000|E|7690000|0|0|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||94.19|85.44|0.00|2.32|129844|129844|10000|10000|||94.19|85.44|0.00|2.32|00011480|0|1| +38|2023-10-06T22:04:49.5870000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.19|85.44|0.00|2.32|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:49.5870000-07:00|769|Nascent Chaos|30.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +39|2023-10-06T22:04:49.7660000-07:00|40021A6B|Liturgic Bell|75049|75049|10000|10000|||99.69|108.42|0.00|3.12| +39|2023-10-06T22:04:49.8110000-07:00|10FF0001|Sesuga Sapisuga|129071|129071|7100|10000|||96.69|85.51|0.00|2.86| +261|2023-10-06T22:04:49.4590000-07:00|Change|10FF0001||||||||| +39|2023-10-06T22:04:49.9000000-07:00|40021A78|Seraph|73956|77430|10000|10000|||104.39|95.90|0.00|-2.87| +21|2023-10-06T22:04:49.9000000-07:00|10FF000A|Dukaro Nezikaro|8C2|Gust Slash|40021585|Zeromus|32714003|2DB10000|53E|9F8000|11B|8C28000|0|0|0|0|0|0|0|0|0|0|281607|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||86.38|83.85|0.00|1.84|00011481|0|1| +261|2023-10-06T22:04:49.5500000-07:00|Change|10FF000B||||||||||||||||||||| +37|2023-10-06T22:04:50.0340000-07:00|40021585|Zeromus|0001147F|279235||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:04:50.0340000-07:00|10FF000B|Pusu Rosu|6503|Glare III|40021585|Zeromus|750003|23820000|1B|65038000|0|0|0|0|0|0|0|0|0|0|0|0|281607|40478540|10000|10000|||100.00|80.10|0.00|0.00|79209|79209|1829|10000|||89.86|87.69|0.00|2.22|00011482|0|1| +24|2023-10-06T22:04:50.0790000-07:00|10FF0008|Kokosaze Lulusaze|HoT|0|FA1|90216|90216|10000|10000|||94.61|91.07|0.00|-0.92|10FF000B|Pusu Rosu|0|79209|79209|1429|10000|||89.86|87.69|0.00|2.22| +24|2023-10-06T22:04:50.0790000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|17E7|81541|81541|1250|10000|||110.38|88.30|0.00|-2.13|10FF0004|Buhojaqe Zijaqe|0|81541|81541|1250|10000|||110.38|88.30|0.00|-2.13| +38|2023-10-06T22:04:50.0790000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||94.61|91.07|0.00|-0.92|0|0|0|||||||||||||||||||||||||||| +38|2023-10-06T22:04:50.0790000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1250|10000|9||110.38|88.30|0.00|-2.13|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:04:50.1240000-07:00|10FF0007|Kehabiqo Febiqo|00011480|129844|129844|10000|10000|14||94.19|85.44|0.00|2.32|1500|0|0|01|02000769|0|41F00000|| +38|2023-10-06T22:04:50.1240000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.19|85.44|0.00|2.32|0|0|0||||||||||||||||||||||||||||||||||||||||||| +261|2023-10-06T22:04:49.7550000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:04:50.2140000-07:00|40021595|Zeromus|8B77|Umbral Prism|10FF0008|Kokosaze Lulusaze|E80E|B7D0000|750003|B1BE4007|1B|8B778000|0|0|0|0|0|0|0|0|0|0|90216|90216|10000|10000|||94.39|91.18|0.00|-0.68|44|44|0|10000|||100.00|100.00|0.00|0.00|00011483|0|1| +22|2023-10-06T22:04:50.2140000-07:00|40021596|Zeromus|8B77|Umbral Prism|10FF0007|Kehabiqo Febiqo|E80E|B7D0000|750003|2D884005|1B|8B778000|0|0|0|0|0|0|0|0|0|0|129844|129844|10000|10000|||94.19|85.44|0.00|2.32|44|44|0|10000|||100.00|100.00|0.00|0.00|00011484|0|3| +22|2023-10-06T22:04:50.2140000-07:00|40021596|Zeromus|8B77|Umbral Prism|10FF0001|Sesuga Sapisuga|E80E|B7D0000|750003|A1214005|1B|8B778000|0|0|0|0|0|0|0|0|0|0|129071|129071|7100|10000|||97.33|85.69|0.00|2.86|44|44|0|10000|||100.00|100.00|0.00|0.00|00011484|1|3| +22|2023-10-06T22:04:50.2140000-07:00|40021596|Zeromus|8B77|Umbral Prism|10FF000B|Pusu Rosu|E80E|B7D0000|750003|E1EB4006|1B|8B778000|0|0|0|0|0|0|0|0|0|0|79209|79209|1429|10000|||89.86|87.69|0.00|2.22|44|44|0|10000|||100.00|100.00|0.00|0.00|00011484|2|3| +21|2023-10-06T22:04:50.2140000-07:00|40021597|Zeromus|8B77|Umbral Prism|10FF000A|Dukaro Nezikaro|E80E|B7D0000|750003|71424007|1B|8B778000|0|0|0|0|0|0|0|0|0|0|83502|83502|10000|10000|||86.39|83.85|-0.02|1.89|44|44|0|10000|||100.00|100.00|0.00|0.00|00011485|0|1| +22|2023-10-06T22:04:50.2140000-07:00|40021598|Zeromus|8B77|Umbral Prism|10FF0003|Gegehi Gehi|750003|DBEA0000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|73814|73814|3350|10000|||105.79|90.21|0.00|1.96|44|44|0|10000|||100.00|100.00|0.00|0.00|00011486|0|2| +22|2023-10-06T22:04:50.2140000-07:00|40021598|Zeromus|8B77|Umbral Prism|10FF0004|Buhojaqe Zijaqe|750003|BCFA0000|E80E|B7D0000|1B|8B778000|0|0|0|0|0|0|0|0|0|0|81541|81541|1250|10000|||109.58|88.33|0.00|-1.95|44|44|0|10000|||100.00|100.00|0.00|0.00|00011486|1|2| +38|2023-10-06T22:04:50.2140000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.19|85.44|0.00|2.32|0|0|0||||||||||||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:50.2140000-07:00|B7D|Magic Vulnerability Up|2.00|40021596|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +38|2023-10-06T22:04:50.2140000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|90216|90216|10000|10000|8||94.39|91.18|0.00|-0.68|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:50.2140000-07:00|B7D|Magic Vulnerability Up|2.00|40021595|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +261|2023-10-06T22:04:49.8660000-07:00|Change|40021595||||||||||||| +38|2023-10-06T22:04:50.2140000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|6||97.33|85.69|0.00|2.86|0|0|0|||||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:50.2140000-07:00|B7D|Magic Vulnerability Up|2.00|40021596|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +38|2023-10-06T22:04:50.2140000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|81541|81541|1250|10000|9||109.58|88.33|0.00|-1.95|0|0|0|||||||||||||||||||||||||||| +261|2023-10-06T22:04:49.8660000-07:00|Change|40021597||||||||||||| +26|2023-10-06T22:04:50.2140000-07:00|B7D|Magic Vulnerability Up|2.00|40021598|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +261|2023-10-06T22:04:49.8660000-07:00|Change|40021598||||||||||||| +261|2023-10-06T22:04:49.8660000-07:00|Change|40021596||||||||||||| +38|2023-10-06T22:04:50.2140000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3350|10000|10||105.79|90.21|0.00|1.96|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:50.2140000-07:00|B7D|Magic Vulnerability Up|2.00|40021598|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +38|2023-10-06T22:04:50.2140000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|1429|10000|10||89.86|87.69|0.00|2.22|0|0|0||||||||||||||||||||||||||||||| +26|2023-10-06T22:04:50.2140000-07:00|B7D|Magic Vulnerability Up|2.00|40021596|Zeromus|10FF000B|Pusu Rosu|00|79209|44| +38|2023-10-06T22:04:50.2140000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||86.39|83.85|-0.02|1.89|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:50.2140000-07:00|B7D|Magic Vulnerability Up|2.00|40021597|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +37|2023-10-06T22:04:50.2580000-07:00|40021585|Zeromus|0001147D|256674||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:50.3020000-07:00|40021585|Zeromus|00011481|244977||||||100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:50.3020000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|108.62|88.57|0.00|-1.78| +261|2023-10-06T22:04:50.0980000-07:00|Change|10FF0003||||||||| +39|2023-10-06T22:04:50.3460000-07:00|10FF000A|Dukaro Nezikaro|83502|83502|10000|10000|||86.42|83.89|0.00|2.21| +20|2023-10-06T22:04:50.3460000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|106.99|89.76|0.00|1.94| +24|2023-10-06T22:04:50.3930000-07:00|10FF0003|Gegehi Gehi|HoT|0|F64|73814|73814|3350|10000|||106.99|89.76|0.00|1.94|10FF000B|Pusu Rosu|0|79209|79209|1429|10000|||89.86|87.69|0.00|2.22| +38|2023-10-06T22:04:50.3930000-07:00|10FF0003|Gegehi Gehi|005A5A23|73814|73814|3350|10000|10||106.99|89.76|0.00|1.94|0|0|0||||||||||||||||||||||||| +24|2023-10-06T22:04:50.4360000-07:00|10FF000A|Dukaro Nezikaro|HoT|0|17E8|83502|83502|10000|10000|||86.57|84.01|0.00|2.30|10FF000B|Pusu Rosu|0|79209|79209|1429|10000|||89.85|87.69|0.00|2.60| +38|2023-10-06T22:04:50.4360000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|83502|83502|10000|10000|9||86.57|84.01|0.00|2.30|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:04:50.4810000-07:00|10FF0007|Kehabiqo Febiqo|129844|129844|10000|10000|||94.19|85.44|0.00|2.32| +24|2023-10-06T22:04:50.4810000-07:00|10FF000B|Pusu Rosu|HoT|0|16D8|79209|79209|1429|10000|||89.85|87.69|0.00|2.60|10FF000B|Pusu Rosu|0|79209|79209|1429|10000|||89.85|87.69|0.00|2.60| +38|2023-10-06T22:04:50.4810000-07:00|10FF000B|Pusu Rosu|005A5A18|79209|79209|1429|10000|10||89.85|87.69|0.00|2.60|0|0|0||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:50.4810000-07:00|777|Asylum|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +21|2023-10-06T22:04:50.5250000-07:00|10FF0001|Sesuga Sapisuga|07|attack|40021585|Zeromus|712003|DE00000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|244977|40478540|10000|10000|||100.00|80.10|0.00|0.00|129071|129071|7100|10000|||97.36|85.58|0.00|2.90|00011487|0|1| +31|2023-10-06T22:04:50.5250000-07:00|10FF0001||||| +24|2023-10-06T22:04:50.5710000-07:00|10FF0007|Kehabiqo Febiqo|HoT|0|EA8|129844|129844|10000|10000|||94.19|85.42|0.00|2.46|10FF0007|Kehabiqo Febiqo|0|129844|129844|10000|10000|||94.19|85.42|0.00|2.46| +38|2023-10-06T22:04:50.5710000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.19|85.42|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||||||||| +21|2023-10-06T22:04:50.6150000-07:00|10FF0007|Kehabiqo Febiqo|4051|Inner Chaos|40021585|Zeromus|716003|A2570000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|244977|40478540|10000|10000|||100.00|80.10|0.00|0.00|129844|129844|10000|10000|||94.19|85.42|0.00|2.46|00011488|0|1| +38|2023-10-06T22:04:50.6150000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|129844|129844|10000|10000|14||94.19|85.42|0.00|2.46|0|0|0||||||||||||||||||||||||||||||||||||||||||| +30|2023-10-06T22:04:50.6150000-07:00|769|Nascent Chaos|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +24|2023-10-06T22:04:50.6590000-07:00|10FF0001|Sesuga Sapisuga|HoT|0|EBE|129071|129071|7100|10000|||97.38|85.50|0.00|2.95|10FF0001|Sesuga Sapisuga|0|129071|129071|7100|10000|||97.38|85.50|0.00|2.95| +21|2023-10-06T22:04:50.6590000-07:00|10FF000A|Dukaro Nezikaro|07|attack|40021585|Zeromus|714003|AFC0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|244977|40478540|10000|10000|||100.00|80.10|0.00|0.00|83502|83502|10000|10000|||87.03|84.38|0.00|2.38|00011489|0|1| +38|2023-10-06T22:04:50.6590000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|129071|129071|7100|10000|6||97.38|85.50|0.00|2.95|0|0|0|||||||||||||||||||||||||||||||||| +37|2023-10-06T22:04:50.8380000-07:00|10FF0008|Kokosaze Lulusaze|00011483|0|90216|0|10000|0||93.71|91.51|0.00|0.09|1F00|0|0|04|02000000|0|0|||||||||||||| +261|2023-10-06T22:04:50.5080000-07:00|Change|10FF0008||||||||||| +261|2023-10-06T22:04:50.5080000-07:00|Change|10FF0007||||||||||| +37|2023-10-06T22:04:50.8380000-07:00|10FF0007|Kehabiqo Febiqo|00011484|0|129844|0|10000|0||94.19|85.37|0.00|2.31|1500|0|0|04|01000000|0|0|||||||||||||| +37|2023-10-06T22:04:50.8380000-07:00|10FF000A|Dukaro Nezikaro|00011485|0|83502|0|10000|0||87.19|84.50|0.00|2.40|1E00|0|0|03|03000000|0|0|||||||||| +37|2023-10-06T22:04:50.8380000-07:00|10FF0003|Gegehi Gehi|00011486|17516|73814|3350|10000|0||108.01|89.36|0.00|-2.70|2300|0|0|02|01000000|0|0|||||| +38|2023-10-06T22:04:50.8380000-07:00|10FF0007|Kehabiqo Febiqo|005A5A15|0|129844|0|10000|0||94.19|85.37|0.00|2.31|0|0|0||||||||||||| +30|2023-10-06T22:04:50.8380000-07:00|6FD|Vulnerability Up|0.00|400215A1|Zeromus|10FF0007|Kehabiqo Febiqo|01|129844|44| +30|2023-10-06T22:04:50.8380000-07:00|B7D|Magic Vulnerability Up|0.00|40021596|Zeromus|10FF0007|Kehabiqo Febiqo|00|129844|44| +30|2023-10-06T22:04:50.8380000-07:00|A75|Surging Tempest|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +30|2023-10-06T22:04:50.8380000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF0007|Kehabiqo Febiqo|00|129844|77430| +30|2023-10-06T22:04:50.8380000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0007|Kehabiqo Febiqo|00|129844|79209| +30|2023-10-06T22:04:50.8380000-07:00|A67|Inner Strength|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +261|2023-10-06T22:04:50.5080000-07:00|Change|10FF000A||||||||||||| +30|2023-10-06T22:04:50.8380000-07:00|A78|Stem the Tide|0.00|10FF0007|Kehabiqo Febiqo|10FF0007|Kehabiqo Febiqo|00|129844|129844| +38|2023-10-06T22:04:50.8380000-07:00|10FF0008|Kokosaze Lulusaze|005A5A1F|0|90216|0|10000|0||93.71|91.51|0.00|0.09|0|0|0||||||| +30|2023-10-06T22:04:50.8380000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF0008|Kokosaze Lulusaze|00|90216|77430| +30|2023-10-06T22:04:50.8380000-07:00|32|Sprint|0.00|10FF0008|Kokosaze Lulusaze|10FF0008|Kokosaze Lulusaze|1E|90216|90216| +30|2023-10-06T22:04:50.8380000-07:00|B7D|Magic Vulnerability Up|0.00|40021595|Zeromus|10FF0008|Kokosaze Lulusaze|00|90216|44| +30|2023-10-06T22:04:50.8380000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +30|2023-10-06T22:04:50.8380000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0008|Kokosaze Lulusaze|00|90216|79209| +38|2023-10-06T22:04:50.8380000-07:00|10FF0003|Gegehi Gehi|005A5A23|17516|73814|3350|10000|0||108.01|89.36|0.00|-2.70|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:50.8380000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +38|2023-10-06T22:04:50.8380000-07:00|10FF000A|Dukaro Nezikaro|005A5A1E|0|83502|0|10000|0||87.19|84.50|0.00|2.40|0|0|0|||||||||| +30|2023-10-06T22:04:50.8380000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF000A|Dukaro Nezikaro|00|83502|77430| +30|2023-10-06T22:04:50.8380000-07:00|B7D|Magic Vulnerability Up|0.00|40021597|Zeromus|10FF000A|Dukaro Nezikaro|00|83502|44| +30|2023-10-06T22:04:50.8380000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000A|Dukaro Nezikaro|00|83502|79209| +261|2023-10-06T22:04:50.5080000-07:00|Change|10FF0008||| +261|2023-10-06T22:04:50.5080000-07:00|Change|10FF0007||| +261|2023-10-06T22:04:50.5080000-07:00|Remove|40021A68| +261|2023-10-06T22:04:50.5080000-07:00|Change|10FF000B||||||||||||||||||||||| +31|2023-10-06T22:04:50.8820000-07:00|10FF0001||||| +37|2023-10-06T22:04:50.8820000-07:00|10FF0001|Sesuga Sapisuga|00011484|0|129071|0|10000|0||97.22|85.58|0.00|-2.04|1301|0|0|04|02000000|0|0|||||||||||||| +37|2023-10-06T22:04:50.8820000-07:00|10FF0004|Buhojaqe Zijaqe|00011486|33163|81541|1250|10000|0||107.65|88.91|0.00|-2.43|1C01|0|0|02|03000000|0|0|||||| +38|2023-10-06T22:04:50.8820000-07:00|10FF0001|Sesuga Sapisuga|005A5A13|0|129071|0|10000|0||97.22|85.58|0.00|-2.04|0|0|0||||||| +30|2023-10-06T22:04:50.8820000-07:00|4C|Fight or Flight|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +30|2023-10-06T22:04:50.8820000-07:00|6FD|Vulnerability Up|0.00|4002159B|Zeromus|10FF0001|Sesuga Sapisuga|01|129071|44| +30|2023-10-06T22:04:50.8820000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF0001|Sesuga Sapisuga|00|129071|77430| +30|2023-10-06T22:04:50.8820000-07:00|B7D|Magic Vulnerability Up|0.00|40021596|Zeromus|10FF0001|Sesuga Sapisuga|00|129071|44| +30|2023-10-06T22:04:50.8820000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0001|Sesuga Sapisuga|00|129071|79209| +30|2023-10-06T22:04:50.8820000-07:00|76E|Sword Oath|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|03|129071|129071| +30|2023-10-06T22:04:50.8820000-07:00|A71|Divine Might|0.00|10FF0001|Sesuga Sapisuga|10FF0001|Sesuga Sapisuga|00|129071|129071| +38|2023-10-06T22:04:50.8820000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|33163|81541|1250|10000|0||107.65|88.91|0.00|-2.43|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:50.8820000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +37|2023-10-06T22:04:50.9260000-07:00|10FF000B|Pusu Rosu|00011484|0|79209|0|10000|0||89.66|87.50|0.00|-2.85|1802|0|0|04|02000000|0|0|||||||||||||| +38|2023-10-06T22:04:50.9260000-07:00|10FF000B|Pusu Rosu|005A5A18|0|79209|0|10000|0||89.66|87.50|0.00|-2.85|0|0|0||||||||||||| +30|2023-10-06T22:04:50.9260000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF000B|Pusu Rosu|00|79209|77430| +30|2023-10-06T22:04:50.9260000-07:00|B7D|Magic Vulnerability Up|0.00|40021596|Zeromus|10FF000B|Pusu Rosu|00|79209|44| +30|2023-10-06T22:04:50.9260000-07:00|A95|Liturgy of the Bell|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|03|79209|79209| +30|2023-10-06T22:04:50.9260000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF000B|Pusu Rosu|00|79209|79209| +261|2023-10-06T22:04:50.6000000-07:00|Change|40021A6B||| +261|2023-10-06T22:04:50.6000000-07:00|Change|40021A6B||| +261|2023-10-06T22:04:50.6000000-07:00|Change|10FF0001||||||||||| +261|2023-10-06T22:04:50.6000000-07:00|Change|10FF000B||||||||||||| +257|2023-10-06T22:04:51.0140000-07:00|80034E7C|00200004|03|00|0000| +21|2023-10-06T22:04:51.0590000-07:00|40021A78|Seraph|40A4|Seraphic Veil|10FF0003|Gegehi Gehi|4|17560000|560E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|17516|73814|3350|10000|||108.14|89.31|0.00|-2.42|73956|77430|10000|10000|||104.39|95.90|0.00|-2.87|0001148A|0|1| +21|2023-10-06T22:04:51.0590000-07:00|40021599|Zeromus|8B82|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|100.00|0.00|1.57|0001148B|0|0| +38|2023-10-06T22:04:51.0590000-07:00|10FF0003|Gegehi Gehi|005A5A23|17516|73814|3350|10000|8||108.14|89.31|0.00|-2.42|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:51.0590000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0003|Gegehi Gehi|00|73814|77430| +39|2023-10-06T22:04:51.1030000-07:00|10FF0004|Buhojaqe Zijaqe|33978|81541|1450|10000|||107.65|88.91|0.00|-2.43| +261|2023-10-06T22:04:50.7140000-07:00|Change|40021599||||||||||||| +261|2023-10-06T22:04:50.8300000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:04:51.2370000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|750003|30E60000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|244977|40478540|10000|10000|||100.00|80.10|0.00|0.00|33978|81541|1450|10000|||107.65|88.91|0.00|-2.43|0001148C|0|1| +261|2023-10-06T22:04:50.8300000-07:00|Change|40021585||||||||||||| +261|2023-10-06T22:04:51.0620000-07:00|Change|10FF0003||||||||||||||||||||| +39|2023-10-06T22:04:51.4600000-07:00|10FF0003|Gegehi Gehi|18254|73814|3550|10000|||108.14|89.31|0.00|-2.42| +24|2023-10-06T22:04:51.6840000-07:00|40021585|Zeromus|DoT|0|1A60|244977|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||89.52|87.36|0.00|-2.92| +38|2023-10-06T22:04:51.6840000-07:00|40021585|Zeromus|005A5A00|238225|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +38|2023-10-06T22:04:51.7730000-07:00|40021A78|Seraph|005A5A00|73956|77430|10000|10000|0||104.39|95.90|0.00|2.67|0|0|0||||||| +26|2023-10-06T22:04:51.7730000-07:00|7AD|Summon Order III|30.00|40021A78|Seraph|40021A78|Seraph|01|77430|77430| +21|2023-10-06T22:04:51.7730000-07:00|10FF0004|Buhojaqe Zijaqe|40A2|Consolation|10FF0004|Buhojaqe Zijaqe|3D|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|33978|81541|1050|10000|||107.65|88.91|0.00|-2.43|33978|81541|1050|10000|||107.65|88.91|0.00|-2.43|0001148D|0|1| +21|2023-10-06T22:04:51.7730000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|756003|57C00000|2023E|BA8000|1B|1D648000|0|0|0|0|0|0|0|0|0|0|238225|40478540|10000|10000|||100.00|80.10|0.00|0.00|18254|73814|3550|10000|||108.14|89.31|0.00|-2.42|0001148E|0|1| +38|2023-10-06T22:04:51.7730000-07:00|10FF0003|Gegehi Gehi|005A5A23|18254|73814|3350|10000|8||108.14|89.31|0.00|-2.42|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:51.7730000-07:00|4E1|Dualcast|15.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +37|2023-10-06T22:04:52.0400000-07:00|40021585|Zeromus|0001148C|225707||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:52.0850000-07:00|10FF0003|Gegehi Gehi|0001148A|24228|73814|3350|10000|8||108.14|89.31|0.00|-2.42|2300|0|0|01|0100077D|0|41E7CABD|| +22|2023-10-06T22:04:52.1300000-07:00|40021A78|Seraph|40A3|Consolation|10FF0003|Gegehi Gehi|200004|34DC0000|DC0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|18254|73814|3350|10000|||108.14|89.31|0.00|-2.42|73956|77430|10000|10000|||104.39|95.90|0.00|2.63|0001148F|0|2| +22|2023-10-06T22:04:52.1300000-07:00|40021A78|Seraph|40A3|Consolation|10FF0004|Buhojaqe Zijaqe|4|1C4F0000|4F0E|77D0000|1B|40A38000|0|0|0|0|0|0|0|0|0|0|33978|81541|1050|10000|||107.65|88.91|0.00|-2.43|73956|77430|10000|10000|||104.39|95.90|0.00|2.63|0001148F|1|2| +38|2023-10-06T22:04:52.1300000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|33978|81541|1050|10000|8||107.65|88.91|0.00|-2.43|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:52.1300000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +38|2023-10-06T22:04:52.1300000-07:00|10FF0003|Gegehi Gehi|005A5A23|24228|73814|3350|10000|18||108.14|89.31|0.00|-2.42|0|0|0||||||||||||||||||||||||| +261|2023-10-06T22:04:51.7860000-07:00|Change|10FF0004||||||||||||||||| +38|2023-10-06T22:04:52.2190000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|33978|81541|1050|10000|8||107.65|88.91|0.00|-2.43|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:52.2190000-07:00|B7D|Magic Vulnerability Up|0.00|40021598|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +38|2023-10-06T22:04:52.2190000-07:00|10FF0003|Gegehi Gehi|005A5A23|24228|73814|3350|10000|18||108.14|89.31|0.00|-2.42|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:52.2190000-07:00|B7D|Magic Vulnerability Up|0.00|40021598|Zeromus|10FF0003|Gegehi Gehi|00|73814|44| +261|2023-10-06T22:04:52.1220000-07:00|Change|10FF0003||||||||||||| +37|2023-10-06T22:04:52.5310000-07:00|40021585|Zeromus|0001148E|203243||||||100.00|80.10|0.00|0.00| +36|2023-10-06T22:04:52.5310000-07:00|044C|3| +38|2023-10-06T22:04:52.5310000-07:00|10FF0003|Gegehi Gehi|005A5A23|24228|73814|3350|10000|18||108.14|89.31|0.00|-2.42|0|0|0||||||||||||||||||||||||| +30|2023-10-06T22:04:52.5310000-07:00|778|Asylum|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +20|2023-10-06T22:04:52.7550000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|1.926|108.12|89.78|0.00|-1.21| +21|2023-10-06T22:04:52.7550000-07:00|10FF0003|Gegehi Gehi|64FF|Verthunder III|40021585|Zeromus|552003|579C0000|6003E|BA8000|F|4D28000|1B|64FF8000|0|0|0|0|0|0|0|0|203243|40478540|10000|10000|||100.00|80.10|0.00|0.00|24228|73814|3350|10000|||108.16|89.32|0.00|-2.71|00011490|0|1| +38|2023-10-06T22:04:52.7550000-07:00|10FF0003|Gegehi Gehi|005A5A23|24228|73814|3050|10000|18||108.16|89.32|0.00|-2.71|0|0|0||||||||||||||||||||||||| +26|2023-10-06T22:04:52.7550000-07:00|4D2|Verfire Ready|30.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +30|2023-10-06T22:04:52.7550000-07:00|4E1|Dualcast|0.00|10FF0003|Gegehi Gehi|10FF0003|Gegehi Gehi|00|73814|73814| +25|2023-10-06T22:04:52.8440000-07:00|10FF0007|Kehabiqo Febiqo|40021596|Zeromus| +25|2023-10-06T22:04:52.8440000-07:00|10FF0008|Kokosaze Lulusaze|40021595|Zeromus| +25|2023-10-06T22:04:52.8440000-07:00|10FF000A|Dukaro Nezikaro|40021597|Zeromus| +25|2023-10-06T22:04:52.8890000-07:00|10FF0001|Sesuga Sapisuga|40021596|Zeromus| +21|2023-10-06T22:04:52.8890000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|722003|2D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|203243|40478540|10000|10000|||100.00|80.10|0.00|0.00|24228|73814|3050|10000|||108.24|89.35|0.00|-2.41|00011491|0|1| +39|2023-10-06T22:04:52.9330000-07:00|40021A78|Seraph|73956|77430|10000|10000|||104.39|95.90|0.00|2.63| +25|2023-10-06T22:04:52.9330000-07:00|10FF000B|Pusu Rosu|40021596|Zeromus| +37|2023-10-06T22:04:53.0230000-07:00|10FF0003|Gegehi Gehi|0001148F|37760|73814|3050|10000|18||108.26|89.36|0.00|-2.41|2300|0|0|02|0100077D|0|41E8DD2D|||||| +24|2023-10-06T22:04:53.0680000-07:00|10FF0004|Buhojaqe Zijaqe|HoT|0|1660|33978|81541|1050|10000|||107.98|90.21|0.00|-0.81|10FF0004|Buhojaqe Zijaqe|0|33978|81541|1050|10000|||107.98|90.21|0.00|-0.81| +38|2023-10-06T22:04:53.0680000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|39706|81541|1050|10000|8||107.98|90.21|0.00|-0.81|0|0|0|||||||||||||||||||||||||||| +37|2023-10-06T22:04:53.1560000-07:00|10FF0004|Buhojaqe Zijaqe|0001148F|46953|81541|1050|10000|8||107.94|90.35|0.00|-0.68|1C01|0|0|01|0300077D|0|41E7CABE|| +38|2023-10-06T22:04:53.1560000-07:00|40021A78|Seraph|005A5A00|73956|77430|10000|10000|0||104.39|95.90|0.00|2.63|0|0|0|||| +30|2023-10-06T22:04:53.1560000-07:00|7AD|Summon Order III|0.00|40021A78|Seraph|40021A78|Seraph|01|77430|77430| +261|2023-10-06T22:04:52.8500000-07:00|Change|10FF0004||||||||||||||||||| +24|2023-10-06T22:04:53.3790000-07:00|10FF0003|Gegehi Gehi|HoT|0|F87|37760|73814|3050|10000|||108.78|89.65|0.00|-2.90|10FF000B|Pusu Rosu|0|0|79209|0|10000|||89.52|87.36|0.00|-2.92| +38|2023-10-06T22:04:53.3790000-07:00|10FF0003|Gegehi Gehi|005A5A23|41735|73814|3050|10000|18||108.78|89.65|0.00|-2.90|0|0|0||||||||||||||||||||||||| +37|2023-10-06T22:04:53.4240000-07:00|40021585|Zeromus|00011491|203198||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:53.4240000-07:00|10FF0003|Gegehi Gehi|00011491|41735|73814|3050|10000|18||109.46|90.02|0.00|2.70|2300|0|0|01|030004D2|0|C1F00000|| +261|2023-10-06T22:04:53.1910000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:04:53.5130000-07:00|40021585|Zeromus|00011490|180770||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:53.5130000-07:00|10FF0003|Gegehi Gehi|00011490|41735|73814|3050|10000|18||109.46|90.02|0.00|2.70|2300|0|0|01|030004D2|0|41F00000|| +38|2023-10-06T22:04:53.5140000-07:00|10FF0003|Gegehi Gehi|005A5A23|41735|73814|3050|10000|18||110.19|90.42|0.00|1.95|0|0|0||||||||||||||||||||||||| +39|2023-10-06T22:04:54.1360000-07:00|10FF0004|Buhojaqe Zijaqe|47768|81541|1250|10000|||107.93|90.38|0.00|-0.66| +21|2023-10-06T22:04:54.1360000-07:00|10FF0004|Buhojaqe Zijaqe|B9|Adloquium|10FF0004|Buhojaqe Zijaqe|4|269F0000|840E|1290000|1B|B98000|0|0|0|0|0|0|0|0|0|0|46953|81541|1050|10000|||107.93|90.38|0.00|-0.66|46953|81541|1050|10000|||107.93|90.38|0.00|-0.66|00011492|0|1| +38|2023-10-06T22:04:54.1360000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|47768|81541|250|10000|30||107.93|90.38|0.00|-0.66|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:54.1360000-07:00|129|Galvanize|30.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +261|2023-10-06T22:04:53.8840000-07:00|Change|10FF0004||||||||||||||| +39|2023-10-06T22:04:54.4950000-07:00|10FF0003|Gegehi Gehi|42473|73814|3250|10000|||109.76|93.95|0.00|-2.22| +261|2023-10-06T22:04:54.2250000-07:00|Change|10FF0003||||||||||| +21|2023-10-06T22:04:54.5390000-07:00|10FF0004|Buhojaqe Zijaqe|07|attack|40021585|Zeromus|732003|EF0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|180770|40478540|10000|10000|||100.00|80.10|0.00|0.00|47768|81541|250|10000|||107.93|90.38|0.00|-0.66|00011493|0|1| +21|2023-10-06T22:04:54.5820000-07:00|40021A78|Seraph|40A4|Seraphic Veil|10FF0003|Gegehi Gehi|4|14630000|63000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|42473|73814|3250|10000|||109.89|94.22|-0.02|-2.10|73956|77430|10000|10000|||104.39|95.90|0.00|-3.13|00011494|0|1| +24|2023-10-06T22:04:54.6720000-07:00|40021585|Zeromus|DoT|0|1779|180770|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||89.52|87.36|0.00|-2.92| +38|2023-10-06T22:04:54.6720000-07:00|40021585|Zeromus|005A5A00|174761|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +04|2023-10-06T22:04:54.5050000-07:00|40021A6B|Liturgic Bell|00|5A|10FF000B|00||10349|13961|0|75049|0|10000|||99.69|108.42|0.00|3.12| +261|2023-10-06T22:04:54.5050000-07:00|Remove|40021A6B| +37|2023-10-06T22:04:55.0730000-07:00|40021585|Zeromus|00011493|174522||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:04:55.1180000-07:00|10FF0004|Buhojaqe Zijaqe|00011492|57655|81541|250|10000|30||107.93|90.38|0.00|-0.66|1C00|0|0|01|06000129|0|41E88103|| +35|2023-10-06T22:04:55.1630000-07:00|40021584||40021585|Zeromus|0000|0000|0109|||| +21|2023-10-06T22:04:55.1630000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0004|Buhojaqe Zijaqe|750603|0|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|57655|81541|250|10000|||107.93|90.38|0.00|-0.66|174522|40478540|10000|10000|||100.00|80.10|0.00|0.00|00011495|0|1| +257|2023-10-06T22:04:55.1630000-07:00|80034E7C|00020001|02|00|0000| +261|2023-10-06T22:04:54.8150000-07:00|Change|400215A3||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|40021599||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|4002159F||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|40021584||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|4002159B||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|4002159C||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|4002159A||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|400215A0||||||||| +20|2023-10-06T22:04:55.1630000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|40021585|Zeromus|1.944|111.28|96.03|0.00|0.75| +261|2023-10-06T22:04:54.8150000-07:00|Change|4002159D||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|400215A2||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|4002159E||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|400215A1||||||||| +261|2023-10-06T22:04:54.8150000-07:00|Change|10FF0004||||| +20|2023-10-06T22:04:55.2520000-07:00|40021585|Zeromus|8B78|Chasmic Nails|40021585|Zeromus|6.700|100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:55.2520000-07:00|40021599|Zeromus|8B79|Chasmic Nails|40021599|Zeromus|7.400|80.10|100.00|0.00|1.57| +20|2023-10-06T22:04:55.2520000-07:00|4002159A|Zeromus|8B27|unknown_8b27|4002159A|Zeromus|1.200|100.00|80.10|0.00|-1.40| +20|2023-10-06T22:04:55.2520000-07:00|4002159B|Zeromus|8B7B|Chasmic Nails|4002159B|Zeromus|8.800|100.00|80.10|0.00|-0.70| +20|2023-10-06T22:04:55.2520000-07:00|4002159C|Zeromus|8B29|unknown_8b29|4002159C|Zeromus|3.700|100.00|80.10|0.00|-0.70| +20|2023-10-06T22:04:55.2520000-07:00|4002159D|Zeromus|8B7C|Chasmic Nails|4002159D|Zeromus|9.500|100.00|80.10|0.00|1.40| +20|2023-10-06T22:04:55.2520000-07:00|4002159E|Zeromus|8B2A|unknown_8b2a|4002159E|Zeromus|4.700|100.00|80.10|0.00|1.40| +20|2023-10-06T22:04:55.2520000-07:00|4002159F|Zeromus|8B7A|Chasmic Nails|4002159F|Zeromus|8.100|100.00|80.10|0.00|0.70| +20|2023-10-06T22:04:55.2520000-07:00|400215A0|Zeromus|8B28|unknown_8b28|400215A0|Zeromus|2.700|100.00|80.10|0.00|0.70| +261|2023-10-06T22:04:54.9320000-07:00|Change|40021585||||||||||||| +20|2023-10-06T22:04:55.2520000-07:00|400215A1|Zeromus|8B7D|Chasmic Nails|400215A1|Zeromus|10.200|100.00|80.10|0.00|0.00| +20|2023-10-06T22:04:55.2520000-07:00|400215A3|Zeromus|8B82|Dimensional Surge|400215A3|Zeromus|8.700|80.10|87.00|0.00|1.57| +20|2023-10-06T22:04:55.2520000-07:00|400215A2|Zeromus|8B2B|unknown_8b2b|400215A2|Zeromus|5.700|100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:55.1590000-07:00|Change|10FF0003||||||||||||||||||| +36|2023-10-06T22:04:55.5210000-07:00|0528|3| +38|2023-10-06T22:04:55.5210000-07:00|10FF0003|Gegehi Gehi|005A5A23|42473|73814|3250|10000|18||111.28|96.03|0.00|2.64|0|0|0|||||||||||||||| +30|2023-10-06T22:04:55.5210000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0003|Gegehi Gehi|00|73814|79209| +37|2023-10-06T22:04:55.6100000-07:00|10FF0003|Gegehi Gehi|00011494|47692||||||111.28|96.03|0.00|-2.97| +38|2023-10-06T22:04:55.6540000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57655|81541|250|10000|30||107.93|90.38|0.00|-0.66|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:55.6540000-07:00|96|Medica II|0.00|10FF000B|Pusu Rosu|10FF0004|Buhojaqe Zijaqe|00|81541|79209| +261|2023-10-06T22:04:55.3400000-07:00|Change|400215A0||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|400215A1||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|4002159A||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|4002159D||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|4002159C||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|400215A2||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|4002159F||||||||||||| +261|2023-10-06T22:04:55.3400000-07:00|Change|40021599||||||||||||| +23|2023-10-06T22:04:55.9230000-07:00|10FF0003|Gegehi Gehi|1D64|Jolt II|Cancelled| +39|2023-10-06T22:04:55.9230000-07:00|40021A78|Seraph|73956|77430|10000|10000|||104.39|95.90|0.00|1.78| +37|2023-10-06T22:04:55.9670000-07:00|10FF0004|Buhojaqe Zijaqe|00011495|57655|81541|250|10000|1||107.93|90.40|0.00|-0.40|1C00|0|0|01|03000000|0|0|| +38|2023-10-06T22:04:55.9670000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57655|81541|250|10000|1||107.93|90.40|0.00|-0.40|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:55.9670000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +21|2023-10-06T22:04:56.0570000-07:00|10FF0003|Gegehi Gehi|1D5D|Fleche|40021585|Zeromus|724003|524D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|174522|40478540|10000|10000|||100.00|80.10|0.00|0.00|47692|73814|3250|10000|||111.26|96.00|0.00|-2.49|00011496|0|1| +261|2023-10-06T22:04:55.7470000-07:00|Change|4002159E||||||||||||| +261|2023-10-06T22:04:56.2070000-07:00|Change|10FF0003||||||||||||||||||||| +261|2023-10-06T22:04:56.3000000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:04:56.7280000-07:00|4002159A|Zeromus|8B27|unknown_8b27|4002159A|Zeromus|1B|8B278000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-1.40|44|44|0|10000|||100.00|80.10|0.00|-1.40|00011497|0|1| +261|2023-10-06T22:04:56.3960000-07:00|Change|4002159A||||||||||||| +21|2023-10-06T22:04:56.9060000-07:00|10FF0003|Gegehi Gehi|1D67|Enchanted Riposte|40021585|Zeromus|750003|28BE0000|13E|1108000|1B|1D508000|0|0|0|0|0|0|0|0|0|0|174522|40478540|10000|10000|||100.00|80.10|0.00|0.00|47692|73814|3250|10000|||110.58|95.26|0.00|-2.38|00011498|0|1| +38|2023-10-06T22:04:57.0390000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|57655|81541|250|10000|1||104.43|96.84|0.00|0.07|0|0|0|||||||||||||||||||||||||||| +30|2023-10-06T22:04:57.0390000-07:00|32|Sprint|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|1E|81541|81541| +39|2023-10-06T22:04:57.1290000-07:00|10FF0004|Buhojaqe Zijaqe|58470|81541|450|10000|||104.43|96.84|0.00|0.07| +21|2023-10-06T22:04:57.1290000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|720003|1D0000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|174522|40478540|10000|10000|||100.00|80.10|0.00|0.00|47692|73814|3250|10000|||110.58|95.26|0.00|-2.53|00011499|0|1| +261|2023-10-06T22:04:56.7980000-07:00|Change|10FF0004||||||||||||||| +37|2023-10-06T22:04:57.2180000-07:00|40021585|Zeromus|00011496|153453||||||100.00|80.10|0.00|0.00| +39|2023-10-06T22:04:57.4840000-07:00|10FF0003|Gegehi Gehi|48430|73814|3450|10000|||110.53|95.26|0.00|-2.48| +37|2023-10-06T22:04:57.5290000-07:00|40021585|Zeromus|00011498|143023||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:57.2520000-07:00|Change|10FF0003||||||||||| +38|2023-10-06T22:04:57.6180000-07:00|40021585|Zeromus|005A5A00|143023|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:04:57.6180000-07:00|F8|Circle of Scorn|0.00|10FF0001|Sesuga Sapisuga|40021585|Zeromus|00|40478540|129071| +37|2023-10-06T22:04:57.6630000-07:00|40021585|Zeromus|00011499|142994||||||100.00|80.10|0.00|0.00| +24|2023-10-06T22:04:57.6630000-07:00|40021585|Zeromus|DoT|0|1713|143023|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||89.52|87.36|0.00|-2.92| +38|2023-10-06T22:04:57.6630000-07:00|40021585|Zeromus|005A5A00|137087|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +26|2023-10-06T22:04:57.7960000-07:00|130|Aetherflow|9999.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +21|2023-10-06T22:04:57.7960000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|FFC0000|104|5F98000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|137087|40478540|10000|10000|||100.00|80.10|0.00|0.00|58470|81541|450|10000|||104.39|97.49|0.00|0.47|0001149A|0|1| +261|2023-10-06T22:04:57.7160000-07:00|Change|40021A78||||||||| +21|2023-10-06T22:04:58.2420000-07:00|400215A0|Zeromus|8B28|unknown_8b28|400215A0|Zeromus|1B|8B288000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.70|44|44|0|10000|||100.00|80.10|0.00|0.70|0001149B|0|1| +261|2023-10-06T22:04:57.9450000-07:00|Change|400215A0||||||||||||| +21|2023-10-06T22:04:58.3760000-07:00|10FF0003|Gegehi Gehi|1D68|Enchanted Zwerchhau|40021585|Zeromus|37752003|4D0A0000|13E|1108000|11B|1D588000|0|0|0|0|0|0|0|0|0|0|137087|40478540|10000|10000|||100.00|80.10|0.00|0.00|48430|73814|3450|10000|||105.58|96.56|0.00|-2.11|0001149C|0|1| +261|2023-10-06T22:04:58.0560000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:04:58.0560000-07:00|Change|40021A78||||||||| +21|2023-10-06T22:04:58.4650000-07:00|40021A78|Seraph|40A4|Seraphic Veil|10FF0004|Buhojaqe Zijaqe|4|15620000|620E|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|58470|81541|450|10000|||104.39|97.51|0.00|1.78|73956|77430|10000|10000|||104.39|95.90|0.00|-1.77|0001149D|0|1| +38|2023-10-06T22:04:58.4650000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|58470|81541|450|10000|8||104.39|97.51|0.00|1.78|0|0|0|||||||||||||||||||||||||||| +26|2023-10-06T22:04:58.4650000-07:00|77D|Seraphic Veil|29.96|40021A78|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +36|2023-10-06T22:04:58.5100000-07:00|0604|3| +261|2023-10-06T22:04:58.3570000-07:00|Change|40021A78||||||||| +37|2023-10-06T22:04:58.8240000-07:00|40021585|Zeromus|0001149A|132995||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:58.4540000-07:00|Change|10FF0004||||||||||||||||||| +37|2023-10-06T22:04:58.8240000-07:00|10FF0004|Buhojaqe Zijaqe|0001149A|59999||||||105.10|99.07|0.00|0.80| +20|2023-10-06T22:04:58.8240000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|1.444|105.10|99.07|0.00|0.80| +39|2023-10-06T22:04:58.9120000-07:00|40021A78|Seraph|73956|77430|10000|10000|||104.39|95.90|0.00|-0.32| +37|2023-10-06T22:04:59.0020000-07:00|40021585|Zeromus|0001149C|113273||||||100.00|80.10|0.00|0.00| +261|2023-10-06T22:04:58.6640000-07:00|Change|40021A78||||||||| +261|2023-10-06T22:04:58.7800000-07:00|Change|4002159A||||||||| +261|2023-10-06T22:04:58.7800000-07:00|Change|40021595||||||||| +261|2023-10-06T22:04:58.7800000-07:00|Change|40021597||||||||| +261|2023-10-06T22:04:58.7800000-07:00|Change|40021598||||||||| +261|2023-10-06T22:04:58.7800000-07:00|Change|40021596||||||||| +261|2023-10-06T22:04:58.7800000-07:00|Change|40021594||||||||| +261|2023-10-06T22:04:58.7800000-07:00|Change|40021593||||||||| +261|2023-10-06T22:04:58.7800000-07:00|Change|40021592||||||||| +21|2023-10-06T22:04:59.2240000-07:00|4002159C|Zeromus|8B29|unknown_8b29|4002159C|Zeromus|1B|8B298000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|-0.70|44|44|0|10000|||100.00|80.10|0.00|-0.70|0001149E|0|1| +261|2023-10-06T22:04:58.7800000-07:00|Change|4002159C||||||||||||| +20|2023-10-06T22:04:59.2690000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|82.75|113.09|0.00|0.00| +20|2023-10-06T22:04:59.2690000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|110.43|86.32|0.00|0.00| +20|2023-10-06T22:04:59.2690000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|113.64|117.46|0.00|0.00| +20|2023-10-06T22:04:59.2690000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|90.61|92.15|0.00|0.00| +20|2023-10-06T22:04:59.2690000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|81.77|96.19|0.00|0.00| +20|2023-10-06T22:04:59.2690000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|114.26|96.91|0.00|0.00| +20|2023-10-06T22:04:59.2690000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.42|104.74|0.00|0.00| +20|2023-10-06T22:04:59.2690000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||3.700|104.34|100.46|0.00|0.00| +37|2023-10-06T22:04:59.4920000-07:00|10FF0004|Buhojaqe Zijaqe|0001149D|65473|81541|450|10000|8||105.73|100.57|0.00|-2.87|1C00|0|0|01|0300077D|0|41E7CABF|| +261|2023-10-06T22:04:59.4200000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:04:59.4200000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:04:59.4200000-07:00|Change|40021595||||||||||| +261|2023-10-06T22:04:59.4200000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:04:59.4200000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:04:59.4200000-07:00|Change|40021598||||||||||| +261|2023-10-06T22:04:59.4200000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:04:59.4200000-07:00|Change|40021592||||||||||| +21|2023-10-06T22:04:59.7600000-07:00|10FF0004|Buhojaqe Zijaqe|6509|Broil IV|40021585|Zeromus|752003|51E60000|1B|65098000|0|0|0|0|0|0|0|0|0|0|0|0|113273|40478540|10000|10000|||100.00|80.10|0.00|0.00|65473|81541|450|10000|||105.73|100.57|0.00|-2.87|0001149F|0|1| +261|2023-10-06T22:04:59.4200000-07:00|Change|10FF0004||||||||||||||||||||| +21|2023-10-06T22:04:59.8940000-07:00|10FF0003|Gegehi Gehi|1D69|Enchanted Redoublement|40021585|Zeromus|4A752003|6EAB0000|13E|1108000|11B|1D698000|0|0|0|0|0|0|0|0|0|0|113273|40478540|10000|10000|||100.00|80.10|0.00|0.00|48430|73814|3450|10000|||103.47|97.76|0.00|-2.22|000114A0|0|1| +261|2023-10-06T22:04:59.6100000-07:00|Change|40021A78||||||||| +261|2023-10-06T22:04:59.7030000-07:00|Change|10FF0004||||||||| +39|2023-10-06T22:05:00.1160000-07:00|10FF0004|Buhojaqe Zijaqe|66288|81541|250|10000|||105.73|100.57|0.00|2.67| +261|2023-10-06T22:04:59.8140000-07:00|Change|40021A78||||||||| +21|2023-10-06T22:05:00.2490000-07:00|4002159E|Zeromus|8B2A|unknown_8b2a|4002159E|Zeromus|1B|8B2A8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|1.40|44|44|0|10000|||100.00|80.10|0.00|1.40|000114A1|0|1| +261|2023-10-06T22:04:59.9320000-07:00|Change|4002159E||||||||||||| +21|2023-10-06T22:05:00.4290000-07:00|10FF0004|Buhojaqe Zijaqe|A7|Energy Drain|40021585|Zeromus|750003|10D50000|104|6498000|A3E|C38000|0|0|0|0|0|0|0|0|0|0|113273|40478540|10000|10000|||100.00|80.10|0.00|0.00|66288|81541|250|10000|||105.99|100.83|0.00|1.06|000114A2|0|1| +38|2023-10-06T22:05:00.4290000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|66288|81541|250|10000|8||105.99|100.83|0.00|1.06|0|0|0|||||||||||||||||||||| +30|2023-10-06T22:05:00.4290000-07:00|130|Aetherflow|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|01|81541|81541| +39|2023-10-06T22:05:00.4720000-07:00|10FF0003|Gegehi Gehi|49168|73814|3650|10000|||103.47|97.71|0.00|-3.00| +261|2023-10-06T22:05:00.1560000-07:00|Change|10FF0003||||||||| +261|2023-10-06T22:05:00.1560000-07:00|Change|40021A78||||||||| +37|2023-10-06T22:05:00.5620000-07:00|40021585|Zeromus|0001149F|92307||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:05:00.5620000-07:00|40021585|Zeromus|000114A0|63976||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:05:00.6070000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|63976|40478540|10000|10000|||100.00|80.10|0.00|0.00|49168|73814|3650|10000|||103.55|97.31|0.00|-3.06|000114A3|0|1| +24|2023-10-06T22:05:00.6520000-07:00|40021585|Zeromus|DoT|0|1798|63976|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||89.52|87.36|0.00|-2.92| +38|2023-10-06T22:05:00.6520000-07:00|40021585|Zeromus|005A5A00|57936|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T22:05:00.6200000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:05:01.1410000-07:00|40021585|Zeromus|000114A3|57899||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:05:01.2300000-07:00|400215A2|Zeromus|8B2B|unknown_8b2b|400215A2|Zeromus|1B|8B2B8000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|44|44|0|10000|||100.00|80.10|0.00|0.00|44|44|0|10000|||100.00|80.10|0.00|0.00|000114A4|0|1| +261|2023-10-06T22:05:00.8240000-07:00|Change|400215A2||||||||||||| +37|2023-10-06T22:05:01.4520000-07:00|40021585|Zeromus|000114A2|53590||||||100.00|80.10|0.00|0.00| +37|2023-10-06T22:05:01.4520000-07:00|10FF0004|Buhojaqe Zijaqe|000114A2|67897||||||110.12|106.53|0.00|0.54| +36|2023-10-06T22:05:01.5410000-07:00|06E0|3| +21|2023-10-06T22:05:01.6730000-07:00|40021A78|Seraph|40A4|Seraphic Veil|10FF0003|Gegehi Gehi|200004|21650000|65000014|77D0000|1B|40A48000|0|0|0|0|0|0|0|0|0|0|49168|73814|3650|10000|||103.30|93.53|0.00|1.71|73956|77430|10000|10000|||104.39|95.90|0.00|-2.87|000114A5|0|1| +261|2023-10-06T22:05:01.4570000-07:00|Change|40021A78||||||||| +261|2023-10-06T22:05:01.4570000-07:00|Change|10FF0004||||||||| +39|2023-10-06T22:05:01.8970000-07:00|40021A78|Seraph|73956|77430|10000|10000|||104.39|95.90|0.00|-2.83| +21|2023-10-06T22:05:02.1210000-07:00|10FF0003|Gegehi Gehi|1D65|Verflare|40021585|Zeromus|150003|54060000|B003E|BA8000|1B|1D658000|0|0|0|0|0|0|0|0|0|0|53590|40478540|10000|10000|||100.00|80.10|0.00|0.00|49168|73814|3650|10000|||104.17|94.86|0.00|0.73|000114A6|0|1| +261|2023-10-06T22:05:01.7410000-07:00|Change|10FF0003||||||||||| +261|2023-10-06T22:05:01.8550000-07:00|Change|40021A78||||||||| +21|2023-10-06T22:05:02.2100000-07:00|40021585|Zeromus|8B78|Chasmic Nails|40021585|Zeromus|1B|8B788000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|53590|40478540|10000|10000|||100.00|80.10|0.00|0.00|53590|40478540|10000|10000|||100.00|80.10|0.00|0.00|000114A7|0|1| +261|2023-10-06T22:05:01.9730000-07:00|Change|40021585||||||||||||| +37|2023-10-06T22:05:02.7000000-07:00|10FF0003|Gegehi Gehi|000114A5|57717||||||104.50|95.37|-0.01|-2.85| +38|2023-10-06T22:05:02.8330000-07:00|40021A81||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +38|2023-10-06T22:05:02.8340000-07:00|40021A81||005A5A00|73956|77430|10000|10000|0||||||0|0|0|||| +261|2023-10-06T22:05:02.5000000-07:00|Add|40021A81||||||||||||||||||||||||||||||||||||| +03|2023-10-06T22:05:02.5000000-07:00|40021A81|Ruby Carbuncle|00|5A|10FF0004|00||5478|1008|73956|77430|10000|10000|||104.41|95.92|0.00|3.07| +21|2023-10-06T22:05:02.8780000-07:00|40021A81|Ruby Carbuncle|322|Embrace|10FF0003|Gegehi Gehi|200004|229D0000|1B|3228000|0|0|0|0|0|0|0|0|0|0|0|0|57717|73814|3250|10000|||104.51|95.38|0.00|-2.85|73956|77430|10000|10000|||104.41|95.92|0.00|3.07|000114A8|0|1| +21|2023-10-06T22:05:02.9230000-07:00|40021599|Zeromus|8B79|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-1.40|000114A9|0|0| +261|2023-10-06T22:05:02.5000000-07:00|Change|40021599||||||||||||| +261|2023-10-06T22:05:02.5920000-07:00|Change|40021A81||| +39|2023-10-06T22:05:03.1000000-07:00|10FF0004|Buhojaqe Zijaqe|68712|81541|450|10000|||111.50|110.92|0.00|-1.13| +261|2023-10-06T22:05:02.7070000-07:00|Change|10FF0004||||||||||| +21|2023-10-06T22:05:03.2350000-07:00|40021592|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||82.75|113.09|0.00|0.00|000114AA|0|0| +21|2023-10-06T22:05:03.2350000-07:00|40021593|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||110.43|86.32|0.00|0.00|000114AB|0|0| +21|2023-10-06T22:05:03.2350000-07:00|40021594|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||113.64|117.46|0.00|0.00|000114AC|0|0| +21|2023-10-06T22:05:03.2350000-07:00|40021595|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||90.61|92.15|0.00|0.00|000114AD|0|0| +21|2023-10-06T22:05:03.2350000-07:00|40021596|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||81.77|96.19|0.00|0.00|000114AE|0|0| +21|2023-10-06T22:05:03.2350000-07:00|40021597|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||114.26|96.91|0.00|0.00|000114AF|0|0| +21|2023-10-06T22:05:03.2350000-07:00|40021598|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.42|104.74|0.00|0.00|000114B0|0|0| +21|2023-10-06T22:05:03.2350000-07:00|4002159A|Zeromus|8B7E|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||104.34|100.46|0.00|0.00|000114B1|0|0| +261|2023-10-06T22:05:02.8220000-07:00|Change|40021592||||||||||| +261|2023-10-06T22:05:02.8220000-07:00|Change|40021595||||||||||| +261|2023-10-06T22:05:02.8220000-07:00|Change|40021594||||||||||| +261|2023-10-06T22:05:02.8220000-07:00|Change|40021593||||||||||| +261|2023-10-06T22:05:02.8220000-07:00|Change|40021598||||||||||| +261|2023-10-06T22:05:02.8220000-07:00|Change|40021597||||||||||| +261|2023-10-06T22:05:02.8220000-07:00|Change|40021596||||||||||| +261|2023-10-06T22:05:02.8220000-07:00|Change|4002159A||||||||||| +261|2023-10-06T22:05:02.9380000-07:00|Change|40021A78||||| +261|2023-10-06T22:05:03.0540000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:05:03.4570000-07:00|10FF0004|Buhojaqe Zijaqe|45CE|Ruin II|40021585|Zeromus|750003|26700000|1B|45CE8000|0|0|0|0|0|0|0|0|0|0|0|0|53590|40478540|10000|10000|||100.00|80.10|0.00|0.00|68712|81541|450|10000|||111.50|110.92|0.00|-0.12|000114B2|0|1| +39|2023-10-06T22:05:03.5010000-07:00|10FF0003|Gegehi Gehi|58455|73814|3450|10000|||104.61|95.34|0.00|-2.85| +261|2023-10-06T22:05:03.1450000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:05:03.5450000-07:00|40021585|Zeromus|000114A6|32080||||||100.00|80.10|0.00|0.00| +21|2023-10-06T22:05:03.6340000-07:00|4002159F|Zeromus|8B7A|Chasmic Nails|10FF0004|Buhojaqe Zijaqe|710603|B9380000|100140E|6FD0000|BE0E|1080000|1B|8B7A8000|0|0|0|0|0|0|0|0|68712|81541|50|10000|||111.51|110.91|-0.02|-2.78|44|44|0|10000|||100.00|80.10|0.00|0.70|000114B3|0|1| +261|2023-10-06T22:05:03.2380000-07:00|Change|4002159F||||||||||||| +37|2023-10-06T22:05:03.6780000-07:00|10FF0003|Gegehi Gehi|000114A8|67316||||||104.67|95.41|0.00|1.91| +24|2023-10-06T22:05:03.6780000-07:00|40021585|Zeromus|DoT|0|142A|32080|40478540|10000|10000|||100.00|80.10|0.00|0.00|10FF000B|Pusu Rosu|FFFFFFFF|0|79209|0|10000|||89.52|87.36|0.00|-2.92| +38|2023-10-06T22:05:03.6790000-07:00|40021585|Zeromus|005A5A00|26918|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +261|2023-10-06T22:05:03.3360000-07:00|Change|40021A81||||||||||| +34|2023-10-06T22:05:03.8560000-07:00|40021A81|Ruby Carbuncle|40021A81|Ruby Carbuncle|01| +261|2023-10-06T22:05:03.4340000-07:00|Change|40021A81||||| +21|2023-10-06T22:05:04.0800000-07:00|10FF0003|Gegehi Gehi|07|attack|40021585|Zeromus|724003|250000|0|0|0|0|0|0|0|0|0|0|0|0|0|0|26918|40478540|10000|10000|||100.00|80.10|0.00|0.00|67316|73814|3450|10000|||105.64|96.05|0.00|3.03|000114B4|0|1| +257|2023-10-06T22:05:04.1680000-07:00|80034E7C|00200004|02|00|0000| +21|2023-10-06T22:05:04.2130000-07:00|400215A3|Zeromus|8B82|Dimensional Surge|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||80.10|87.00|0.00|1.57|000114B5|0|0| +37|2023-10-06T22:05:04.2590000-07:00|10FF0004|Buhojaqe Zijaqe|000114B3|21296|81541|50|10000|0||114.43|109.23|0.00|2.34|1C00|0|0|03|03000108|0|41700000|||||||||| +30|2023-10-06T22:05:04.2590000-07:00|77D|Seraphic Veil|0.00|40021A78|Seraph|10FF0004|Buhojaqe Zijaqe|00|81541|77430| +26|2023-10-06T22:05:04.2590000-07:00|108|Flesh Wound|15.00|4002159F|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +26|2023-10-06T22:05:04.2590000-07:00|6FD|Vulnerability Up|60.00|4002159F|Zeromus|10FF0004|Buhojaqe Zijaqe|01|81541|44| +38|2023-10-06T22:05:04.2590000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|21296|81541|50|10000|0||114.43|109.23|0.00|2.34|0|0|0|||||||||||||||| +30|2023-10-06T22:05:04.2590000-07:00|129|Galvanize|0.00|10FF0004|Buhojaqe Zijaqe|10FF0004|Buhojaqe Zijaqe|00|81541|81541| +21|2023-10-06T22:05:04.3470000-07:00|4002159B|Zeromus|8B7B|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|-0.70|000114B6|0|0| +261|2023-10-06T22:05:03.9710000-07:00|Change|400215A3||||||||||||| +261|2023-10-06T22:05:03.9710000-07:00|Change|4002159B||||||||||||| +261|2023-10-06T22:05:04.0830000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:05:04.3910000-07:00|40021585|Zeromus|000114B2|17078||||||100.00|80.10|0.00|0.00| +36|2023-10-06T22:05:04.5260000-07:00|07BC|3| +21|2023-10-06T22:05:04.5720000-07:00|10FF0003|Gegehi Gehi|4092|Scorch|40021585|Zeromus|754003|7D720000|4043E|BA8000|11B|40928000|0|0|0|0|0|0|0|0|0|0|17078|40478540|10000|10000|||100.00|80.10|0.00|0.00|67316|73814|3450|10000|||108.15|94.77|0.00|-2.73|000114B7|0|1| +261|2023-10-06T22:05:04.2740000-07:00|Change|10FF0003||||||||||| +37|2023-10-06T22:05:04.6160000-07:00|40021585|Zeromus|000114B4|17041||||||100.00|80.10|0.00|0.00| +38|2023-10-06T22:05:04.9740000-07:00|40021585|Zeromus|005A5A00|17041|40478540|10000|10000|0||100.00|80.10|0.00|0.00|0|0|0||||||||||||| +30|2023-10-06T22:05:04.9740000-07:00|767|Biolysis|0.00|10FF0004|Buhojaqe Zijaqe|40021585|Zeromus|00|40478540|81541| +21|2023-10-06T22:05:05.0190000-07:00|4002159D|Zeromus|8B7C|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|1.40|000114B8|0|0| +261|2023-10-06T22:05:04.5580000-07:00|Change|4002159D||||||||||||| +24|2023-10-06T22:05:05.0630000-07:00|10FF0004|Buhojaqe Zijaqe|DoT|0|2A5C|21296|81541|50|10000|||115.71|104.77|0.00|3.06|4002159F|Zeromus|FFFFFFFF|44|44|0|10000|||100.00|80.10|0.00|0.70| +38|2023-10-06T22:05:05.0630000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|10452|81541|50|10000|0||115.71|104.77|0.00|3.06|0|0|0|||||||||||||||| +21|2023-10-06T22:05:05.1960000-07:00|40021585|Zeromus|8C49|unknown_8c49|10FF0004|Buhojaqe Zijaqe|750003|78440000|1B|8C498000|0|0|0|0|0|0|0|0|0|0|0|0|21296|81541|50|10000|||115.71|104.77|0.00|3.06|17041|40478540|10000|10000|||100.00|80.10|0.00|0.00|000114B9|0|1| +261|2023-10-06T22:05:04.7890000-07:00|Change|10FF0004||||||||| +21|2023-10-06T22:05:05.7330000-07:00|400215A1|Zeromus|8B7D|Chasmic Nails|E0000000||0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|||||||||||44|44|0|10000|||100.00|80.10|0.00|0.00|000114BA|0|0| +261|2023-10-06T22:05:05.3130000-07:00|Change|400215A1||||||||||||| +37|2023-10-06T22:05:06.0030000-07:00|10FF0004|Buhojaqe Zijaqe|000114B9|0|81541|0|10000|0||114.57|101.91|0.00|-2.77|1C00|0|0|02|03000000|0|0|||||| +38|2023-10-06T22:05:06.0030000-07:00|10FF0004|Buhojaqe Zijaqe|005A5A1C|0|81541|0|10000|0||114.57|101.91|0.00|-2.77|0|0|0|||||||||| +30|2023-10-06T22:05:06.0030000-07:00|108|Flesh Wound|0.00|4002159F|Zeromus|10FF0004|Buhojaqe Zijaqe|00|81541|44| +30|2023-10-06T22:05:06.0030000-07:00|6FD|Vulnerability Up|0.00|4002159F|Zeromus|10FF0004|Buhojaqe Zijaqe|01|81541|44| +261|2023-10-06T22:05:05.5990000-07:00|Change|40021A81||||| +38|2023-10-06T22:05:06.0910000-07:00|10FF0003|Gegehi Gehi|005A5A23|67316|73814|3050|10000|18||110.73|96.16|0.00|0.28|0|0|0||||||||||||| +30|2023-10-06T22:05:06.0910000-07:00|6FD|Vulnerability Up|0.00|4002159B|Zeromus|10FF0003|Gegehi Gehi|01|73814|44| +261|2023-10-06T22:05:05.8230000-07:00|Change|40021A81||||||||| +261|2023-10-06T22:05:05.8230000-07:00|Change|10FF0004||||||||||| +37|2023-10-06T22:05:06.4060000-07:00|40021585|Zeromus|000114B7|0|40478540|0|10000|0||100.00|80.10|0.00|0.00|0|0|0|02|01000000|0|0|||||| +38|2023-10-06T22:05:06.4060000-07:00|40021585|Zeromus|005A5A00|0|40478540|0|10000|0||100.00|80.10|0.00|0.00|0|0|0| +30|2023-10-06T22:05:06.4060000-07:00|808|Unknown_808|0.00|40021585|Zeromus|40021585|Zeromus|286|40478540|40478540| +30|2023-10-06T22:05:06.4060000-07:00|74F|Dia|0.00|10FF000B|Pusu Rosu|40021585|Zeromus|00|40478540|79209| +261|2023-10-06T22:05:06.0460000-07:00|Change|40021585||| +261|2023-10-06T22:05:06.0460000-07:00|Change|40021585||| +261|2023-10-06T22:05:06.0460000-07:00|Change|10FF0004||| +261|2023-10-06T22:05:06.0460000-07:00|Remove|40021A78| +04|2023-10-06T22:05:06.0460000-07:00|40021A78|Seraph|00|5A|10FF0004|00||8227|10487|0|77430|0|10000|||104.39|95.90|0.00|-3.03| +261|2023-10-06T22:05:06.0460000-07:00|Change|4002156C||| +41|2023-10-06T22:05:06.4560000-07:00|80034E7C|4D1|02|A05D|02| +33|2023-10-06T22:05:06.4560000-07:00|80034E7C|40000003|00|00|00|00| diff --git a/docs/zh-CN/CactbotCustomization.md b/docs/zh-CN/CactbotCustomization.md index 120ed87e36..f20723a2d9 100644 --- a/docs/zh-CN/CactbotCustomization.md +++ b/docs/zh-CN/CactbotCustomization.md @@ -45,6 +45,19 @@ 但这个方式有一定的限制。例如,您无法更改逻辑;而且在大多数情况下,您无法使 `tts` 的播报内容与 `alarmText` 相区别、无法添加更多的参数。如果您想要对触发器做出更加复杂的覆盖操作,那么您需要查看 [Raidboss触发器自定义](#raidboss触发器自定义) 小节。 +每一个引用玩家的参数(通常称为 ${player} ,但不总是),都可以进一步修改输出文本: + +- `${player.job}`:职业缩写,例如 白魔 +- `${player.jobFull}`:职业全名,例如 白魔法师 +- `${player.role}`:职能,例如 治疗 +- `${player.name}`:玩家的全名,例如 吉田直树 +- `${player.nick}`:玩家的昵称/名,例如 吉田直树 (注:国服对于昵称和全名不做区分;国际服的昵称指代“first name”) +- `${player.id}`:玩家的ID(用于测试),例如 1000485F + +当发生错误,或者玩家不在你的队伍中,或者使用了无效的后缀时,系统可能会退而使用默认昵称,以确保能够打印出相应的信息。 + +默认设置下,`${player}` 等同于 `${player.nick}`,但是你可以在 cactbot 配置界面的 raidboss 部分下的 “默认玩家代称” 选项来设置此默认值。 + ## 用户文件夹概览 若cactbot配置界面不存在您所需的选项,您可能需要考虑以用户文件覆盖的方式进行自定义。您需要编写JavaScript代码和CSS样式表,这意味着您可能需要掌握一点点编程知识。 diff --git a/docs/zh-CN/README.md b/docs/zh-CN/README.md index ad0ffffbb9..d126b16f00 100644 --- a/docs/zh-CN/README.md +++ b/docs/zh-CN/README.md @@ -2,7 +2,7 @@ -[![GitHub 工作流程状态(分支)](https://img.shields.io/github/workflow/status/quisquous/cactbot/Test/main)](https://github.com/quisquous/cactbot/actions?query=workflow%3ATest+branch%3Amain) [![GitHub 发行版(最新的 SemVer)](https://img.shields.io/github/v/release/quisquous/cactbot?color=brightgreen\&sort=semver)](https://github.com/quisquous/cactbot/releases/latest) +[![GitHub 工作流程状态(分支)](https://img.shields.io/github/actions/workflow/status/quisquous/cactbot/test.yml?branch=main)](https://github.com/quisquous/cactbot/actions?query=workflow%3ATest+branch%3Amain) [![GitHub 发行版(最新的 SemVer)](https://img.shields.io/github/v/release/quisquous/cactbot?color=brightgreen\&sort=semver)](https://github.com/quisquous/cactbot/releases/latest) 🌎 [[English](../../README.md)] [**简体中文**] [[한국어](../ko-KR/README.md)] diff --git a/package-lock.json b/package-lock.json index 51e3bcd495..5267748eba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cactbot", - "version": "0.30.9", + "version": "0.30.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cactbot", - "version": "0.30.9", + "version": "0.30.10", "license": "Apache-2.0", "dependencies": { "@fast-csv/parse": "^4.3.6", diff --git a/package.json b/package.json index 9f76501a67..4eab6424b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cactbot", - "version": "0.30.9", + "version": "0.30.10", "license": "Apache-2.0", "type": "module", "types": "./types", diff --git a/plugin/CactbotEventSource/Properties/AssemblyInfo.cs b/plugin/CactbotEventSource/Properties/AssemblyInfo.cs index 50826d80f9..b74f3343af 100644 --- a/plugin/CactbotEventSource/Properties/AssemblyInfo.cs +++ b/plugin/CactbotEventSource/Properties/AssemblyInfo.cs @@ -21,5 +21,5 @@ // - Revision // GitHub has only 3 version components, so Revision should always be 0. // CactbotOverlay and CactbotEventSource version should match. -[assembly: AssemblyVersion("0.30.9.0")] -[assembly: AssemblyFileVersion("0.30.9.0")] +[assembly: AssemblyVersion("0.30.10.0")] +[assembly: AssemblyFileVersion("0.30.10.0")] diff --git a/plugin/CactbotOverlay/Properties/AssemblyInfo.cs b/plugin/CactbotOverlay/Properties/AssemblyInfo.cs index acbe3134f1..19b080c14d 100644 --- a/plugin/CactbotOverlay/Properties/AssemblyInfo.cs +++ b/plugin/CactbotOverlay/Properties/AssemblyInfo.cs @@ -20,5 +20,5 @@ // - Build Number // - Revision // GitHub has only 3 version components, so Revision should always be 0. -[assembly: AssemblyVersion("0.30.9.0")] -[assembly: AssemblyFileVersion("0.30.9.0")] +[assembly: AssemblyVersion("0.30.10.0")] +[assembly: AssemblyFileVersion("0.30.10.0")] diff --git a/resources/netlog_defs.ts b/resources/netlog_defs.ts index 297db5a06e..89cc372e19 100644 --- a/resources/netlog_defs.ts +++ b/resources/netlog_defs.ts @@ -598,6 +598,9 @@ const latestLogDefinitions = { y: 7, z: 8, }, + playerIds: { + 4: 5, + }, canAnonymize: true, firstOptionalField: undefined, }, @@ -617,8 +620,8 @@ const latestLogDefinitions = { targetName: 7, }, playerIds: { - 4: null, - 5: null, + 4: 5, + 6: 7, }, firstOptionalField: undefined, }, diff --git a/resources/party.ts b/resources/party.ts index d1a81c274c..de6a461b5a 100644 --- a/resources/party.ts +++ b/resources/party.ts @@ -19,6 +19,7 @@ const emptyRoleToPartyNames = () => { const roleLocalized: Record = { tank: { en: 'tank', + de: 'Verteidiger', fr: 'Tank', ja: 'タンク', cn: '坦克', @@ -26,6 +27,7 @@ const roleLocalized: Record = { }, healer: { en: 'healer', + de: 'Heiler', fr: 'Soigneur', ja: 'ヒーラー', cn: '治疗', @@ -33,6 +35,7 @@ const roleLocalized: Record = { }, dps: { en: 'dps', + de: 'DPS', fr: 'DPS', ja: 'DPS', cn: '输出', @@ -40,6 +43,7 @@ const roleLocalized: Record = { }, crafter: { en: 'crafter', + de: 'Handwerker', fr: 'Artisan', ja: 'クラフター', cn: '能工巧匠', @@ -47,6 +51,7 @@ const roleLocalized: Record = { }, gatherer: { en: 'gatherer', + de: 'Sammler', fr: 'Récolteur', ja: 'ギャザラー', cn: '大地使者', @@ -54,6 +59,7 @@ const roleLocalized: Record = { }, none: { en: 'none', + de: 'Keine', fr: 'Aucun', ja: '冒険者', cn: '冒险者', @@ -64,6 +70,7 @@ const roleLocalized: Record = { const jobLocalizedAbbr: Record = { NONE: { en: 'NONE', + de: 'Keine', fr: 'Aucun', ja: '冒険者', cn: '冒险', @@ -71,6 +78,7 @@ const jobLocalizedAbbr: Record = { }, GLA: { en: 'GLA', + de: 'GLA', fr: 'GLA', ja: '剣術士', cn: '剑术', @@ -78,6 +86,7 @@ const jobLocalizedAbbr: Record = { }, PGL: { en: 'PGL', + de: 'FST', fr: 'PGL', ja: '格闘士', cn: '格斗', @@ -85,6 +94,7 @@ const jobLocalizedAbbr: Record = { }, MRD: { en: 'MRD', + de: 'MAR', fr: 'MRD', ja: '斧術士', cn: '斧术', @@ -92,6 +102,7 @@ const jobLocalizedAbbr: Record = { }, LNC: { en: 'LNC', + de: 'PIK', fr: 'HAS', ja: '槍術士', cn: '枪术', @@ -99,6 +110,7 @@ const jobLocalizedAbbr: Record = { }, ARC: { en: 'ARC', + de: 'WDL', fr: 'ARC', ja: '弓術士', cn: '弓箭', @@ -106,6 +118,7 @@ const jobLocalizedAbbr: Record = { }, CNJ: { en: 'CNJ', + de: 'DRU', fr: 'ÉLM', ja: '幻術士', cn: '幻术', @@ -113,6 +126,7 @@ const jobLocalizedAbbr: Record = { }, THM: { en: 'THM', + de: 'THM', fr: 'OCC', ja: '呪術士', cn: '咒术', @@ -120,6 +134,7 @@ const jobLocalizedAbbr: Record = { }, CRP: { en: 'CRP', + de: 'ZMR', fr: 'MEN', ja: '木工', cn: '刻木', @@ -127,6 +142,7 @@ const jobLocalizedAbbr: Record = { }, BSM: { en: 'BSM', + de: 'GRS', fr: 'FRG', ja: '鍛冶', cn: '锻铁', @@ -134,6 +150,7 @@ const jobLocalizedAbbr: Record = { }, ARM: { en: 'ARM', + de: 'PLA', fr: 'ARM', ja: '甲冑', cn: '铸甲', @@ -141,6 +158,7 @@ const jobLocalizedAbbr: Record = { }, GSM: { en: 'GSM', + de: 'GLD', fr: 'ORF', ja: '彫金', cn: '雕金', @@ -148,6 +166,7 @@ const jobLocalizedAbbr: Record = { }, LTW: { en: 'LTW', + de: 'GER', fr: 'TAN', ja: '革細', cn: '制革', @@ -155,6 +174,7 @@ const jobLocalizedAbbr: Record = { }, WVR: { en: 'WVR', + de: 'WEB', fr: 'COU', ja: '裁縫', cn: '裁衣', @@ -162,6 +182,7 @@ const jobLocalizedAbbr: Record = { }, ALC: { en: 'ALC', + de: 'ALC', fr: 'ALC', ja: '錬金', cn: '炼金', @@ -169,6 +190,7 @@ const jobLocalizedAbbr: Record = { }, CUL: { en: 'CUL', + de: 'GRM', fr: 'CUI', ja: '調理', cn: '烹调', @@ -176,6 +198,7 @@ const jobLocalizedAbbr: Record = { }, MIN: { en: 'MIN', + de: 'MIN', fr: 'MIN', ja: '採掘', cn: '采矿', @@ -183,6 +206,7 @@ const jobLocalizedAbbr: Record = { }, BTN: { en: 'BTN', + de: 'GÄR', fr: 'BOT', ja: '園芸', cn: '园艺', @@ -190,6 +214,7 @@ const jobLocalizedAbbr: Record = { }, FSH: { en: 'FSH', + de: 'FIS', fr: 'PEC', ja: '漁師', cn: '捕鱼', @@ -197,6 +222,7 @@ const jobLocalizedAbbr: Record = { }, PLD: { en: 'PLD', + de: 'PLD', fr: 'PLD', ja: 'ナイト', cn: '骑士', @@ -204,6 +230,7 @@ const jobLocalizedAbbr: Record = { }, MNK: { en: 'MNK', + de: 'MÖN', fr: 'MOI', ja: 'モンク', cn: '武僧', @@ -211,6 +238,7 @@ const jobLocalizedAbbr: Record = { }, WAR: { en: 'WAR', + de: 'KRG', fr: 'GUE', ja: '戦士', cn: '战士', @@ -218,6 +246,7 @@ const jobLocalizedAbbr: Record = { }, DRG: { en: 'DRG', + de: 'DRG', fr: 'DRG', ja: '竜騎士', cn: '龙骑', @@ -225,6 +254,7 @@ const jobLocalizedAbbr: Record = { }, BRD: { en: 'BRD', + de: 'BRD', fr: 'BRD', ja: '詩人', cn: '诗人', @@ -232,6 +262,7 @@ const jobLocalizedAbbr: Record = { }, WHM: { en: 'WHM', + de: 'WMA', fr: 'MBL', ja: '白魔', cn: '白魔', @@ -239,6 +270,7 @@ const jobLocalizedAbbr: Record = { }, BLM: { en: 'BLM', + de: 'SMA', fr: 'MNO', ja: '黒魔', cn: '黑魔', @@ -246,6 +278,7 @@ const jobLocalizedAbbr: Record = { }, ACN: { en: 'ACN', + de: 'HRT', fr: 'ACN', ja: '巴術士', cn: '秘术', @@ -253,6 +286,7 @@ const jobLocalizedAbbr: Record = { }, SMN: { en: 'SMN', + de: 'BSW', fr: 'INV', ja: '召喚', cn: '召唤', @@ -260,6 +294,7 @@ const jobLocalizedAbbr: Record = { }, SCH: { en: 'SCH', + de: 'GLT', fr: 'ERU', ja: '学者', cn: '学者', @@ -267,6 +302,7 @@ const jobLocalizedAbbr: Record = { }, ROG: { en: 'ROG', + de: 'SCH', fr: 'SUR', ja: '双剣士', cn: '双剑', @@ -274,6 +310,7 @@ const jobLocalizedAbbr: Record = { }, NIN: { en: 'NIN', + de: 'NIN', fr: 'NIN', ja: '忍者', cn: '忍者', @@ -281,6 +318,7 @@ const jobLocalizedAbbr: Record = { }, MCH: { en: 'MCH', + de: 'MCH', fr: 'MCH', ja: '機工', cn: '机工', @@ -288,6 +326,7 @@ const jobLocalizedAbbr: Record = { }, DRK: { en: 'DRK', + de: 'DKR', fr: 'CHN', ja: '暗黒', cn: '暗骑', @@ -295,6 +334,7 @@ const jobLocalizedAbbr: Record = { }, AST: { en: 'AST', + de: 'AST', fr: 'AST', ja: '占星', cn: '占星', @@ -302,6 +342,7 @@ const jobLocalizedAbbr: Record = { }, SAM: { en: 'SAM', + de: 'SAM', fr: 'SAM', ja: '侍', cn: '武士', @@ -309,6 +350,7 @@ const jobLocalizedAbbr: Record = { }, RDM: { en: 'RDM', + de: 'RMA', fr: 'MRG', ja: '赤魔', cn: '赤魔', @@ -316,6 +358,7 @@ const jobLocalizedAbbr: Record = { }, BLU: { en: 'BLU', + de: 'BMA', fr: 'MBU', ja: '青魔', cn: '青魔', @@ -323,6 +366,7 @@ const jobLocalizedAbbr: Record = { }, GNB: { en: 'GNB', + de: 'REV', fr: 'PSB', ja: 'ガンブレ', cn: '绝枪', @@ -330,6 +374,7 @@ const jobLocalizedAbbr: Record = { }, DNC: { en: 'DNC', + de: 'TÄN', fr: 'DNS', ja: '踊り子', cn: '舞者', @@ -337,6 +382,7 @@ const jobLocalizedAbbr: Record = { }, RPR: { en: 'RPR', + de: 'SNT', fr: 'FCH', ja: 'リーパー', cn: '钐镰', @@ -344,6 +390,7 @@ const jobLocalizedAbbr: Record = { }, SGE: { en: 'SGE', + de: 'WEI', fr: 'SAG', ja: '賢者', cn: '贤者', @@ -354,6 +401,7 @@ const jobLocalizedAbbr: Record = { const jobLocalizedFull: Record = { NONE: { en: 'Adventurer', + de: 'Abenteurer', fr: 'Aventurier', ja: '冒険者', cn: '冒险者', @@ -361,6 +409,7 @@ const jobLocalizedFull: Record = { }, GLA: { en: 'Gladiator', + de: 'Gladiator', fr: 'Gladiateur', ja: '剣術士', cn: '剑术师', @@ -368,6 +417,7 @@ const jobLocalizedFull: Record = { }, PGL: { en: 'Pugilist', + de: 'Faustkämpfer', fr: 'Pugiliste', ja: '格闘士', cn: '格斗家', @@ -375,6 +425,7 @@ const jobLocalizedFull: Record = { }, MRD: { en: 'Marauder', + de: 'Marodeur', fr: 'Maraudeur', ja: '斧術士', cn: '斧术师', @@ -382,6 +433,7 @@ const jobLocalizedFull: Record = { }, LNC: { en: 'Lancer', + de: 'Pikenier', fr: 'Maître d\'Hast', ja: '槍術士', cn: '枪术师', @@ -389,6 +441,7 @@ const jobLocalizedFull: Record = { }, ARC: { en: 'Archer', + de: 'Waldläufer', fr: 'Archer', ja: '弓術士', cn: '弓箭手', @@ -396,6 +449,7 @@ const jobLocalizedFull: Record = { }, CNJ: { en: 'Conjurer', + de: 'Druide', fr: 'Élémentaliste', ja: '幻術士', cn: '幻术师', @@ -403,6 +457,7 @@ const jobLocalizedFull: Record = { }, THM: { en: 'Thaumaturge', + de: 'Thaumaturg', fr: 'Occultiste', ja: '呪術士', cn: '咒术师', @@ -410,6 +465,7 @@ const jobLocalizedFull: Record = { }, CRP: { en: 'Carpenter', + de: 'Zimmerer', fr: 'Charpentier', ja: '木工師', cn: '刻木匠', @@ -417,6 +473,7 @@ const jobLocalizedFull: Record = { }, BSM: { en: 'Blacksmith', + de: 'Grobschmied', fr: 'Forgeron', ja: '鍛冶師', cn: '锻铁匠', @@ -424,6 +481,7 @@ const jobLocalizedFull: Record = { }, ARM: { en: 'Armorer', + de: 'Plattner', fr: 'Armurier', ja: '甲冑師', cn: '铸甲匠', @@ -431,6 +489,7 @@ const jobLocalizedFull: Record = { }, GSM: { en: 'Goldsmith', + de: 'Goldschmied', fr: 'Orfèvre', ja: '彫金師', cn: '雕金匠', @@ -438,6 +497,7 @@ const jobLocalizedFull: Record = { }, LTW: { en: 'Leatherworker', + de: 'Gerber', fr: 'Tanneur', ja: '革細工師', cn: '制革匠', @@ -445,6 +505,7 @@ const jobLocalizedFull: Record = { }, WVR: { en: 'Weaver', + de: 'Weber', fr: 'Couturier', ja: '裁縫師', cn: '裁衣匠', @@ -452,6 +513,7 @@ const jobLocalizedFull: Record = { }, ALC: { en: 'Alchemist', + de: 'Alchemist', fr: 'Alchimiste', ja: '錬金術師', cn: '炼金术士', @@ -459,6 +521,7 @@ const jobLocalizedFull: Record = { }, CUL: { en: 'Culinarian', + de: 'Gourmet', fr: 'Cuisinier', ja: '調理師', cn: '烹调师', @@ -466,6 +529,7 @@ const jobLocalizedFull: Record = { }, MIN: { en: 'Miner', + de: 'Minenarbeiter', fr: 'Mineur', ja: '採掘師', cn: '采矿工', @@ -473,6 +537,7 @@ const jobLocalizedFull: Record = { }, BTN: { en: 'Botanist', + de: 'Gärtner', fr: 'Botaniste', ja: '園芸師', cn: '园艺工', @@ -480,6 +545,7 @@ const jobLocalizedFull: Record = { }, FSH: { en: 'Fisher', + de: 'Fischer', fr: 'Pêcheur', ja: '漁師', cn: '捕鱼人', @@ -487,6 +553,7 @@ const jobLocalizedFull: Record = { }, PLD: { en: 'Paladin', + de: 'Paladin', fr: 'Paladin', ja: 'ナイト', cn: '骑士', @@ -494,6 +561,7 @@ const jobLocalizedFull: Record = { }, MNK: { en: 'Monk', + de: 'Mönch', fr: 'Moine', ja: 'モンク', cn: '武僧', @@ -501,6 +569,7 @@ const jobLocalizedFull: Record = { }, WAR: { en: 'Warrior', + de: 'Krieger', fr: 'Guerrier', ja: '戦士', cn: '战士', @@ -508,6 +577,7 @@ const jobLocalizedFull: Record = { }, DRG: { en: 'Dragoon', + de: 'Dragoon', fr: 'Chevalier dragon', ja: '竜騎士', cn: '龙骑士', @@ -515,6 +585,7 @@ const jobLocalizedFull: Record = { }, BRD: { en: 'Bard', + de: 'Barde', fr: 'Barde', ja: '吟遊詩人', cn: '吟游诗人', @@ -522,6 +593,7 @@ const jobLocalizedFull: Record = { }, WHM: { en: 'White Mage', + de: 'Weißmagier', fr: 'Mage blanc', ja: '白魔道士', cn: '白魔法师', @@ -529,6 +601,7 @@ const jobLocalizedFull: Record = { }, BLM: { en: 'Black Mage', + de: 'Schwarzmagier', fr: 'Mage noir', ja: '黒魔道士', cn: '黑魔法师', @@ -536,6 +609,7 @@ const jobLocalizedFull: Record = { }, ACN: { en: 'Arcanist', + de: 'Hermetiker', fr: 'Arcaniste', ja: '巴術士', cn: '秘术师', @@ -543,6 +617,7 @@ const jobLocalizedFull: Record = { }, SMN: { en: 'Summoner', + de: 'Beschwörer', fr: 'Invocateur', ja: '召喚士', cn: '召唤师', @@ -550,6 +625,7 @@ const jobLocalizedFull: Record = { }, SCH: { en: 'Scholar', + de: 'Gelehrter', fr: 'Érudit', ja: '学者', cn: '学者', @@ -557,6 +633,7 @@ const jobLocalizedFull: Record = { }, ROG: { en: 'Rogue', + de: 'Schurke', fr: 'Surineur', ja: '双剣士', cn: '双剑师', @@ -564,6 +641,7 @@ const jobLocalizedFull: Record = { }, NIN: { en: 'Ninja', + de: 'Ninja', fr: 'Ninja', ja: '忍者', cn: '忍者', @@ -571,6 +649,7 @@ const jobLocalizedFull: Record = { }, MCH: { en: 'Machinist', + de: 'Maschinist', fr: 'Machiniste', ja: '機工士', cn: '机工士', @@ -578,6 +657,7 @@ const jobLocalizedFull: Record = { }, DRK: { en: 'Dark Knight', + de: 'Dunkelritter', fr: 'Chevalier noir', ja: '暗黒騎士', cn: '暗黑骑士', @@ -585,6 +665,7 @@ const jobLocalizedFull: Record = { }, AST: { en: 'Astrologian', + de: 'Astrologe', fr: 'Astromancien', ja: '占星術師', cn: '占星术士', @@ -592,6 +673,7 @@ const jobLocalizedFull: Record = { }, SAM: { en: 'Samurai', + de: 'Samurai', fr: 'Samuraï', ja: '侍', cn: '武士', @@ -599,6 +681,7 @@ const jobLocalizedFull: Record = { }, RDM: { en: 'Red Mage', + de: 'Rotmagier', fr: 'Mage rouge', ja: '赤魔道士', cn: '赤魔法师', @@ -606,6 +689,7 @@ const jobLocalizedFull: Record = { }, BLU: { en: 'Blue Mage', + de: 'Blaumagier', fr: 'Mage bleu', ja: '青魔道士', cn: '青魔法师', @@ -613,6 +697,7 @@ const jobLocalizedFull: Record = { }, GNB: { en: 'Gunbreaker', + de: 'Revolverklinge', fr: 'Pistosabreur', ja: 'ガンブレイカー', cn: '绝枪战士', @@ -620,6 +705,7 @@ const jobLocalizedFull: Record = { }, DNC: { en: 'Dancer', + de: 'Tänzer', fr: 'Danseur', ja: '踊り子', cn: '舞者', @@ -627,6 +713,7 @@ const jobLocalizedFull: Record = { }, RPR: { en: 'Reaper', + de: 'Schnitter', fr: 'Faucheur', ja: 'リーパー', cn: '钐镰客', @@ -634,6 +721,7 @@ const jobLocalizedFull: Record = { }, SGE: { en: 'Sage', + de: 'Weiser', fr: 'Sage', ja: '賢者', cn: '贤者', diff --git a/test/helper/test_oopsy.ts b/test/helper/test_oopsy.ts index 2711dbcab2..b71ccf99a1 100644 --- a/test/helper/test_oopsy.ts +++ b/test/helper/test_oopsy.ts @@ -155,6 +155,9 @@ const testOopsyFile = (file: string, info: OopsyTriggerSetInfo) => { const abilityIdToId: { [abilityid: string]: string } = {}; for (const field of oopsyMistakeMapKeys) { for (const [id, abilityId] of Object.entries(triggerSet[field] ?? {})) { + // Ignore TODOs from `util/sync_files.ts` that haven't been filled out. + if (abilityId.startsWith('TODO')) + continue; const prevId = abilityIdToId[abilityId]; if (prevId === undefined) { abilityIdToId[abilityId] = id; diff --git a/test/helper/test_timeline.ts b/test/helper/test_timeline.ts index 9ceaf481d4..0851488b51 100644 --- a/test/helper/test_timeline.ts +++ b/test/helper/test_timeline.ts @@ -171,6 +171,13 @@ const testTimelineFiles = (timelineFiles: string[]): void => { assert.isNull(e, `${timelineFile}:${e.error}`); } }); + it('should use netregex parameter style', () => { + // Incorrect: 8.0 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ + // Correct: 8.0 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } + for (const sync of timeline.syncStarts) { + assert.strictEqual(sync.regexType, 'net'); + } + }); it('should not have translation conflicts', () => { const translations = triggerSet.timelineReplace; if (!translations) @@ -332,24 +339,6 @@ const testTimelineFiles = (timelineFiles: string[]): void => { } } }); - it('should have proper sealed sync', () => { - for (const sync of timeline.syncStarts) { - const regex = sync.regex.source; - if (sync.regexType === 'net') - continue; - if (regex.includes('is no longer sealed')) { - assert.isArray( - /00:0839::\.\*is no longer sealed/.exec(regex), - `${timelineFile}:${sync.lineNumber} 'is no longer sealed' sync must be exactly '00:0839::.*is no longer sealed'`, - ); - } else if (regex.includes('will be sealed')) { - assert.isArray( - /00:0839::.*will be sealed/.exec(regex), - `${timelineFile}:${sync.lineNumber} 'will be sealed' sync must be preceded by '00:0839::'`, - ); - } - } - }); }); } }); diff --git a/ui/oopsyraidsy/data/00-misc/general.ts b/ui/oopsyraidsy/data/00-misc/general.ts index 22fdf5ab46..6d3c01cfa1 100644 --- a/ui/oopsyraidsy/data/00-misc/general.ts +++ b/ui/oopsyraidsy/data/00-misc/general.ts @@ -185,6 +185,7 @@ const triggerSet: OopsyTriggerSet = { text: { en: `overwrote ${originalRaiserShort}'s raise`, de: `überschrieb ${originalRaiserShort}'s Wiederbeleben`, + fr: `a écrasé la résurrection de ${originalRaiserShort}`, ja: `${originalRaiserShort}と重複蘇生`, cn: `顶掉了${originalRaiserShort}的复活`, ko: `${originalRaiserShort}의 부활과 겹침`, @@ -218,6 +219,7 @@ const triggerSet: OopsyTriggerSet = { text: { en: `overwrote ${originalRaiserShort}'s raise`, de: `überschrieb ${originalRaiserShort}'s Wiederbeleben`, + fr: `a écrasé la résurrection de ${originalRaiserShort}`, ja: `${originalRaiserShort}と重複蘇生`, cn: `顶掉了${originalRaiserShort}的复活`, ko: `${originalRaiserShort}의 부활과 겹침`, @@ -270,6 +272,7 @@ const triggerSet: OopsyTriggerSet = { text: { en: `overwrote ${lastSourceShort}'s ${matches.ability}`, de: `überschrieb ${lastSourceShort}'s ${matches.ability}`, + fr: `a écrasé la résurrection de ${lastSourceShort} ${matches.ability}`, ja: `${lastSourceShort}の${matches.ability}を上書き`, cn: `顶掉了${lastSourceShort}的${matches.ability}`, ko: `${lastSourceShort}의 ${matches.ability} 덮어씀`, diff --git a/ui/oopsyraidsy/data/00-misc/test.ts b/ui/oopsyraidsy/data/00-misc/test.ts index 157289bad0..00732db47e 100644 --- a/ui/oopsyraidsy/data/00-misc/test.ts +++ b/ui/oopsyraidsy/data/00-misc/test.ts @@ -16,6 +16,9 @@ const triggerSet: OopsyTriggerSet = { id: 'Test Bow', type: 'GameLog', netRegex: NetRegexes.gameNameLog({ line: 'You bow courteously to the striking dummy.*?' }), + netRegexDe: NetRegexes.gameNameLog({ + line: 'Du verbeugst dich hochachtungsvoll vor der Trainingspuppe.*?', + }), netRegexFr: NetRegexes.gameNameLog({ line: 'Vous vous inclinez devant le mannequin d\'entraînement.*?', }), diff --git a/ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island-savage.ts b/ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island-savage.ts new file mode 100644 index 0000000000..3e7f67273f --- /dev/null +++ b/ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island-savage.ts @@ -0,0 +1,182 @@ +// This file was autogenerated from running ts-node util/sync_files.ts. +// DO NOT EDIT THIS FILE DIRECTLY. +// Edit the source file below and then run `npm run sync-files` +// Source: ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island.ts + +import NetRegexes from '../../../../../resources/netregexes'; +import ZoneId from '../../../../../resources/zone_id'; +import { OopsyData } from '../../../../../types/data'; +import { OopsyMistakeType, OopsyTrigger, OopsyTriggerSet } from '../../../../../types/oopsy'; +import { LocaleText } from '../../../../../types/trigger'; +import { playerDamageFields, playerTargetFields } from '../../../oopsy_common'; + +// TODO: people who missed their 8AE2 Burst tower +// TODO: failing 8BEB Radiance orb damage during Analysis +// TODO: failing 8CE1 Targeted Light during Analysis +// TODO: people who failed Subtractive Suppressor Alpha + Beta +// TODO: walking over 8BF2 Arcane Combustion when you don't have Suppressor +// TODO: taking extra 8BEA Inferno Divide squares during Spatial Tactics +// TODO: 01F7(success) and 01F8(fail) check and x markers? +// TODO: players not in Trapshooting stack 8977 +// TODO: players not in Present Box / Pinwheeling Dartboard two person stack + +const renameMistake = ( + triggerId: string, + abilityId: string | string[], + type: OopsyMistakeType, + text: LocaleText, +): OopsyTrigger => { + return { + id: triggerId, + type: 'Ability', + netRegex: NetRegexes.ability({ id: abilityId, ...playerTargetFields }), + mistake: (_data, matches) => { + return { + type: type, + blame: matches.target, + reportId: matches.targetId, + text: text, + }; + }, + }; +}; + +export type Data = OopsyData; + +// TODO: we could probably move these helpers to some oopsy util. +const pushedIntoWall = ( + triggerId: string, + abilityId: string | string[], +): OopsyTrigger => { + return { + id: triggerId, + type: 'Ability', + netRegex: NetRegexes.ability({ id: abilityId, ...playerDamageFields }), + condition: (data, matches) => data.DamageFromMatches(matches) > 0, + deathReason: (_data, matches) => { + return { + id: matches.targetId, + name: matches.target, + text: { + en: 'Pushed into wall', + de: 'Rückstoß in die Wand', + fr: 'Poussé(e) dans le mur', + ja: '壁へノックバック', + cn: '击退至墙', + ko: '넉백', + }, + }; + }, + }; +}; + +const nonzeroDamageMistake = ( + triggerId: string, + abilityId: string | string[], + type: OopsyMistakeType, +): OopsyTrigger => { + return { + id: triggerId, + type: 'Ability', + netRegex: NetRegexes.ability({ id: abilityId, ...playerDamageFields }), + condition: (data, matches) => data.DamageFromMatches(matches) > 0, + mistake: (_data, matches) => { + return { + type: type, + blame: matches.target, + reportId: matches.targetId, + text: matches.ability, + }; + }, + }; +}; + +const triggerSet: OopsyTriggerSet = { + zoneId: ZoneId.AnotherAloaloIslandSavage, + damageWarn: { + // Trash 1 + 'AAIS Twister': '8BCF', // Twister tornados + 'AAIS Kiwakin Tail Screw': '8BC9', // baited circle + 'AAIS Snipper Bubble Shower': '8BCA', // front conal + 'AAIS Snipper Crab Dribble': '8BCB', // fast back conal after Bubble Shower + 'AAIS Ray Hydrocannon': '8C4B', // line aoe + 'AAIS Ray Expulsion': '8BCE', // "get out" + 'AAIS Ray Electric Whorl': '8BCD', // "get in" + + // Ketuduke + 'AAIS Spring Crystal Saturate 1': '8ADB', // orb circle + 'AAIS Spring Crystal Saturate 2': '8ADC', // rupee line laser + 'AAIS Sphere Shatter': '8AE0', // moving arches + 'AAIS Receding Twintides': '8AE7', // initial out during out->in + 'AAIS Near Tide': '8AE8', // second out during in->out with 8AE9 Encroaching Twintides + 'AAIS Encroaching Twintides': '8AE9', // initial in during in->out + 'AAIS Far Tide': '8AEA', // second in during out->in with 8AE7 Receding Twintides + 'AAIS Hydrobomb': '8AEB', // 3x puddles duruing 8ABD Blowing Bubbles + + // Trash 2 + 'AAIS Wood Golem Ovation': '8BD4', // front line aoe + 'AAIS Islekeeper Isle Drop': '8C3C', // front circle + + // Lala + 'AAIS Arcane Blight': '8BE6', // 270 degree rotating cleave + 'AAIS Bright Pulse 1': '8BE8', // initial blue square + 'AAIS Bright Pulse 2': '8BE9', // moving blue square + 'AAIS Arcane Mine': '8BF1', // initial Arcane Mine squares + 'AAIS Golem Aero II': '8BFB', // line damage from Aloalo Golem during Symmetric Surge + 'AAIS Telluric Theorem': '8C00', // puddles from Explosive Theorem spreads + + // Statice + 'AAIS Trigger Happy': '8969', // limit cut dart board + 'AAIS Bomb Burst': '897A', // bomb explosion + 'AAIS Uncommon Ground': '8CC3', // people who are on the same dartboard color with Bull's-eye + 'AAIS Faerie Ring': '8973', // donut rings during Present Box + 'AAIS Fire Spread 1': '896F', // initial rotating fire (from Ball of Fire) + 'AAIS Fire Spread 2': '89FB', // ongoing rotating fire damage (from Statice) + }, + damageFail: { + 'AAIS Big Burst': '8AE3', // tower failure damage + 'AAIS Massive Explosion 1': '8BF3', // failing to resolve Subractive Suppressor Alpha + 'AAIS Massive Explosion 2': '8BF4', // failing to resolve Subractive Suppressor Beta + 'AAIS Burning Chains': '8CC1', // damage from not breaking chains + 'AAIS Surprising Missile Burst': '8974', // running into Surprising Missile tethered add + 'AAIS Surprising Claw Death by Claw': '8975', // running into Surprising Claw tethered add + }, + gainsEffectFail: { + // C03 = 9999 duration, ??? = 15s duration + 'AAIS Dropsy': 'C03', // standing outside Ketuduke + // C05 = 9999 duration, C06 = 15s duration + 'AAIS Bleeding': 'C05', // standing in blue square during Lala + // BF9 = 9999 duration, BFA??? = 15s duration + 'AAIS Burns': 'BF9', // standing outside Lala + }, + shareWarn: { + 'AAIS Hydrobullet': '8ADF', // spread debuffs + 'AAIS Wood Golem Tornado': '8BD3', // headmarker -> bind and heavy aoe + 'AAIS Powerful Light': '8BFD', // spread marker during Symmetric Surge that turns squares blue + 'AAIS Explosive Theorem': '8BFF', // large spreads with Telluric Theorem puddles + 'AAIS Trapshooting Spread': '8978', // spread damage from Trick Reload + 'AAIS Firewords Spread': '897D', // spread damage during Present Box / Pinwheeling Dartboard + }, + soloWarn: { + 'AAIS Snipper Water III': '8BCC', // Snipper stack marker + 'AAIS Islekeeper Gravity Force': '8C3A', // stack + 'AAIS Trapshooting Stack': '8977', // stack damage from Trick Reload + }, + soloFail: { + 'AAIS Hydrofall': '8ADE', // partner stack debuffs + 'AAIS Symmetric Surge': '8BF5', // two person stack that gives magic vuln up + 'AAIS Fireworks Stack': '897C', // two person stack damage during Present Box / Pinwheeling Dartboard + }, + triggers: [ + renameMistake('AAIS Tornado', '8BCF', 'fail', { + // running into a tornado in the initial trash section + en: 'Tornado', + de: 'Tornado', + }), + pushedIntoWall('AAIS Angry Seas', '8AE1'), + pushedIntoWall('AAIS Pop', '896B'), + nonzeroDamageMistake('AAIS Hundred Lashings', ['8AE5', '8AE6'], 'warn'), + ], +}; + +export default triggerSet; diff --git a/ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island.ts b/ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island.ts new file mode 100644 index 0000000000..0b8154e1b4 --- /dev/null +++ b/ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island.ts @@ -0,0 +1,177 @@ +import NetRegexes from '../../../../../resources/netregexes'; +import ZoneId from '../../../../../resources/zone_id'; +import { OopsyData } from '../../../../../types/data'; +import { OopsyMistakeType, OopsyTrigger, OopsyTriggerSet } from '../../../../../types/oopsy'; +import { LocaleText } from '../../../../../types/trigger'; +import { playerDamageFields, playerTargetFields } from '../../../oopsy_common'; + +// TODO: people who missed their 8AC2 Burst tower +// TODO: failing 8894 Radiance orb damage during Analysis +// TODO: failing 8CDF Targeted Light during Analysis +// TODO: people who failed Subtractive Suppressor Alpha + Beta +// TODO: walking over 889B Arcane Combustion when you don't have Suppressor +// TODO: taking extra 8893 Inferno Divide squares during Spatial Tactics +// TODO: 01F7(success) and 01F8(fail) check and x markers? +// TODO: players not in Trapshooting stack 895A +// TODO: players not in Present Box / Pinwheeling Dartboard two person stack + +const renameMistake = ( + triggerId: string, + abilityId: string | string[], + type: OopsyMistakeType, + text: LocaleText, +): OopsyTrigger => { + return { + id: triggerId, + type: 'Ability', + netRegex: NetRegexes.ability({ id: abilityId, ...playerTargetFields }), + mistake: (_data, matches) => { + return { + type: type, + blame: matches.target, + reportId: matches.targetId, + text: text, + }; + }, + }; +}; + +export type Data = OopsyData; + +// TODO: we could probably move these helpers to some oopsy util. +const pushedIntoWall = ( + triggerId: string, + abilityId: string | string[], +): OopsyTrigger => { + return { + id: triggerId, + type: 'Ability', + netRegex: NetRegexes.ability({ id: abilityId, ...playerDamageFields }), + condition: (data, matches) => data.DamageFromMatches(matches) > 0, + deathReason: (_data, matches) => { + return { + id: matches.targetId, + name: matches.target, + text: { + en: 'Pushed into wall', + de: 'Rückstoß in die Wand', + fr: 'Poussé(e) dans le mur', + ja: '壁へノックバック', + cn: '击退至墙', + ko: '넉백', + }, + }; + }, + }; +}; + +const nonzeroDamageMistake = ( + triggerId: string, + abilityId: string | string[], + type: OopsyMistakeType, +): OopsyTrigger => { + return { + id: triggerId, + type: 'Ability', + netRegex: NetRegexes.ability({ id: abilityId, ...playerDamageFields }), + condition: (data, matches) => data.DamageFromMatches(matches) > 0, + mistake: (_data, matches) => { + return { + type: type, + blame: matches.target, + reportId: matches.targetId, + text: matches.ability, + }; + }, + }; +}; + +const triggerSet: OopsyTriggerSet = { + zoneId: ZoneId.AnotherAloaloIsland, + damageWarn: { + // Trash 1 + 'AAI Twister': '8BC0', // Twister tornados + 'AAI Kiwakin Tail Screw': '8BB8', // baited circle + 'AAI Snipper Bubble Shower': '8BB9', // front conal + 'AAI Snipper Crab Dribble': '8BBA', // fast back conal after Bubble Shower + 'AAI Ray Hydrocannon': '8BBD', // line aoe + 'AAI Ray Expulsion': '8BBF', // "get out" + 'AAI Ray Electric Whorl': '8BBE', // "get in" + + // Ketuduke + 'AAI Spring Crystal Saturate 1': '8AAB', // orb circle + 'AAI Spring Crystal Saturate 2': '8AAC', // rupee line laser + 'AAI Sphere Shatter': '8ABC', // moving arches + 'AAI Receding Twintides': '8ACC', // initial out during out->in + 'AAI Near Tide': '8ACD', // second out during in->out with 8ACE Encroaching Twintides + 'AAI Encroaching Twintides': '8ACE', // initial in during in->out + 'AAI Far Tide': '8ACF', // second in during out->in with 8ACC Receding Twintides + 'AAI Hydrobomb': '8AD1', // 3x puddles duruing 8ABD Blowing Bubbles + + // Trash 2 + 'AAI Wood Golem Ovation': '8BC1', // front line aoe + 'AAI Islekeeper Isle Drop': '8C6F', // front circle + + // Lala + 'AAI Arcane Blight': '888F', // 270 degree rotating cleave + 'AAI Bright Pulse 1': '8891', // initial blue square + 'AAI Bright Pulse 2': '8892', // moving blue square + 'AAI Arcane Mine': '889A', // initial Arcane Mine squares + 'AAI Golem Aero II': '88A4', // line damage from Aloalo Golem during Symmetric Surge + 'AAI Telluric Theorem': '88A9', // puddles from Explosive Theorem spreads + + // Statice + 'AAI Trigger Happy': '894C', // limit cut dart board + 'AAI Bomb Burst': '895D', // bomb explosion + 'AAI Uncommon Ground': '8CC2', // people who are on the same dartboard color with Bull's-eye + 'AAI Faerie Ring': '8956', // donut rings during Present Box + 'AAI Fire Spread 1': '8982', // initial rotating fire (from Ball of Fire) + 'AAI Fire Spread 2': '89F9', // ongoing rotating fire damage (from Statice) + }, + damageFail: { + 'AAI Big Burst': '8AC3', // tower failure damage + 'AAI Massive Explosion 1': '889C', // failing to resolve Subractive Suppressor Alpha + 'AAI Massive Explosion 2': '889D', // failing to resolve Subractive Suppressor Beta + 'AAI Burning Chains': '8CBE', // damage from not breaking chains + 'AAI Surprising Missile Burst': '8957', // running into Surprising Missile tethered add + 'AAI Surprising Claw Death by Claw': '8958', // running into Surprising Claw tethered add + }, + gainsEffectFail: { + // C03 = 9999 duration, ??? = 15s duration + 'AAI Dropsy': 'C03', // standing outside Ketuduke + // C05 = 9999 duration, C06 = 15s duration + 'AAI Bleeding': 'C05', // standing in blue square during Lala + // BF9 = 9999 duration, BFA??? = 15s duration + 'AAI Burns': 'BF9', // standing outside Lala + }, + shareWarn: { + 'AAI Hydrobullet': '8ABA', // spread debuffs + 'AAI Wood Golem Tornado': '8C4D', // headmarker -> bind and heavy aoe + 'AAI Powerful Light': '88A6', // spread marker during Symmetric Surge that turns squares blue + 'AAI Explosive Theorem': '88A8', // large spreads with Telluric Theorem puddles + 'AAI Trapshooting Spread': '895B', // spread damage from Trick Reload + 'AAI Firewords Spread': '8960', // spread damage during Present Box / Pinwheeling Dartboard + }, + soloWarn: { + 'AAI Snipper Water III': '8C64', // Snipper stack marker + 'AAI Islekeeper Gravity Force': '8BC5', // stack + 'AAI Trapshooting Stack': '895A', // stack damage from Trick Reload + }, + soloFail: { + 'AAI Hydrofall': '8AB7', // partner stack debuffs + 'AAI Symmetric Surge': '889E', // two person stack that gives magic vuln up + 'AAI Fireworks Stack': '895F', // two person stack damage during Present Box / Pinwheeling Dartboard + }, + triggers: [ + renameMistake('AAI Tornado', '8BC0', 'fail', { + // running into a tornado in the initial trash section + en: 'Tornado', + de: 'Tornado', + }), + pushedIntoWall('AAI Angry Seas', '8AC1'), + pushedIntoWall('AAI Pop', '894E'), + nonzeroDamageMistake('AAI Hundred Lashings', ['8AC9', '8ACB'], 'warn'), + ], +}; + +export default triggerSet; diff --git a/ui/oopsyraidsy/oopsy_common.ts b/ui/oopsyraidsy/oopsy_common.ts index ca34099c18..4691e9a2cb 100644 --- a/ui/oopsyraidsy/oopsy_common.ts +++ b/ui/oopsyraidsy/oopsy_common.ts @@ -22,7 +22,7 @@ export const damageFields = { }; export const playerTargetFields = { - targetId: '[^4].......', + targetId: '1.......', }; export const playerDamageFields = { diff --git a/ui/oopsyraidsy/oopsyraidsy_config.ts b/ui/oopsyraidsy/oopsyraidsy_config.ts index c26744c73f..f7297d4110 100644 --- a/ui/oopsyraidsy/oopsyraidsy_config.ts +++ b/ui/oopsyraidsy/oopsyraidsy_config.ts @@ -280,6 +280,7 @@ const templateOptions: OptionsTemplate = { name: { en: 'Default Player Label', de: 'Standard Spieler Label', + fr: 'Label par défaut du joueur', ja: '基本プレイヤーラベル', cn: '默认玩家代称', ko: '플레이어를 언급하는 기본 방법', @@ -293,6 +294,13 @@ const templateOptions: OptionsTemplate = { 'Full Job (Warrior)': 'jobFull', 'Full Name (Tini Poutini)': 'name', }, + fr: { + 'Pseudo (Tini)': 'nick', + 'Role (Tank)': 'role', + 'Job (GUE)': 'job', + 'Job complet (Guerrier)': 'jobFull', + 'Nom complet (Tini Poutini)': 'name', + }, ja: { 'あだ名 (Tini)': 'nick', 'ロール (ヒーラー)': 'role', @@ -418,6 +426,7 @@ const templateOptions: OptionsTemplate = { name: { en: 'Minimum time to show overwritten mit (seconds)', de: 'Minimum Zeit überschriebene Mitigation anzuzeigen (Sekunden)', + fr: 'Temps minimum pour afficher l\'écrasement des mitigation (s)', ja: 'バフの上書き通知を表示する時間 (秒)', cn: '显示被顶减伤最小时间 (秒)', ko: '파티 생존기 덮어씀 경고를 표시할 기준 시간 (초)', diff --git a/ui/raidboss/data/00-misc/test.ts b/ui/raidboss/data/00-misc/test.ts index 7ea75e4a58..f41da01e60 100644 --- a/ui/raidboss/data/00-misc/test.ts +++ b/ui/raidboss/data/00-misc/test.ts @@ -383,6 +383,7 @@ const triggerSet: TriggerSet = { text: { en: 'player = ${player}, player.job = ${player.job}, player.bogus = ${player.bogus}', de: 'player = ${player}, player.job = ${player.job}, player.bogus = ${player.bogus}', + fr: 'player = ${player}, player.job = ${player.job}, player.bogus = ${player.bogus}', ja: 'player = ${player}, player.job = ${player.job}, player.bogus = ${player.bogus}', cn: 'player = ${player}, player.job = ${player.job}, player.bogus = ${player.bogus}', ko: 'player = ${player}, player.job = ${player.job}, player.bogus = ${player.bogus}', @@ -393,7 +394,6 @@ const triggerSet: TriggerSet = { timelineReplace: [ { locale: 'de', - missingTranslations: true, replaceSync: { 'You bid farewell to the striking dummy': 'Du winkst der Trainingspuppe zum Abschied zu', 'You bow courteously to the striking dummy': @@ -406,6 +406,7 @@ const triggerSet: TriggerSet = { 'cactbot test config': 'cactbot test konfig', 'cactbot test outputStrings': 'cactbot test outputStrings', 'cactbot test combatant cast': 'cactbot test gegner wirken', + 'testNetRegexTimeline': 'testNetRegexTimeline', 'You clap for the striking dummy': 'Du klatschst begeistert Beifall für die Trainingspuppe', 'You psych yourself up alongside the striking dummy': 'Du willst wahren Kampfgeist in der Trainingspuppe entfachen', @@ -554,11 +555,11 @@ const triggerSet: TriggerSet = { }, { locale: 'ko', - missingTranslations: true, replaceSync: { 'You bid farewell to the striking dummy': '.*나무인형에게 작별 인사를 합니다', 'You bow courteously to the striking dummy': '.*나무인형에게 공손하게 인사합니다', 'test sync': '테스트 싱크', + 'testNetRegexTimeline': 'testNetRegexTimeline', 'You burst out laughing at the striking dummy': '.*나무인형을 보고 폭소를 터뜨립니다', 'cactbot test config': 'cactbot 설정 테스트', 'cactbot lang': 'cactbot 언어', diff --git a/ui/raidboss/data/00-misc/test.txt b/ui/raidboss/data/00-misc/test.txt index 7309e805cb..4ff3334697 100644 --- a/ui/raidboss/data/00-misc/test.txt +++ b/ui/raidboss/data/00-misc/test.txt @@ -16,24 +16,24 @@ hideall "--Reset--" hideall "--sync--" -0 "--Reset--" sync / 00:001D:[^:]*:You bid farewell to the striking dummy/ window 10000 jump 0 +0 "--Reset--" GameLog { code: "001D", line: "You bid farewell to the striking dummy.*?" } window 10000 jump 0 # two examples with different quoting which should both be supported 0 "--sync--" GameLog { line: 'testNetRegexTimeline' } window 100000,100000 0 "--sync--" GameLog { "line": "testNetRegexTimeline" } window 100000,100000 -0 "--sync--" sync / 00:0039:[^:]*:Engage!/ window 100000,100000 -0 "--sync--" sync / 00:001D:[^:]*:You bow courteously to the striking dummy/ window 0,1 +0 "--sync--" GameLog { code: "0039", line: "Engage!.*?" } window 100000,100000 +0 "--sync--" GameLog { code: "001D", line: "You bow courteously to the striking dummy.*?" } window 0,1 3 "Almagest" 6 "Angry Dummy" 10 "Long Castbar" duration 10 15 "Final Sting" 18 "Pentacle Sac (DPS)" -25 "Super Tankbuster" sync / 00:0038:[^:]*:test sync1/ window 30,30 +25 "Super Tankbuster" GameLog { code: "0038", line: "test sync1.*?" } window 30,30 30 "Dummy Stands Still" 40 "Death" -50 "--sync--" sync / 00:0038:[^:]*:test sync2/ window 100,1 forcejump "loop" +50 "--sync--" GameLog { code: "0038", line: "test sync2.*?" } window 100,1 forcejump "loop" # Loop test! 100 label "loop" @@ -44,5 +44,5 @@ hideall "--sync--" 106 "Six" 110 "Ten" #duration 100 115 "Fifteen" -118 "Force Jump Three" sync / 00:0038:[^:]*:test sync3/ window 10,10 forcejump "three" -120 "Invisible" sync / 00:0038:[^:]*:test sync4/ forcejump 1000 +118 "Force Jump Three" GameLog { code: "0038", line: "test sync3.*?" } window 10,10 forcejump "three" +120 "Invisible" GameLog { code: "0038", line: "test sync4.*?" } forcejump 1000 diff --git a/ui/raidboss/data/02-arr/raid/t10.txt b/ui/raidboss/data/02-arr/raid/t10.txt index 940c35bcf3..696ef7e0f4 100644 --- a/ui/raidboss/data/02-arr/raid/t10.txt +++ b/ui/raidboss/data/02-arr/raid/t10.txt @@ -10,15 +10,15 @@ hideall "--sync--" # Initial Phase: Tankbuster, Charge, Repeat 0.0 "Start" # Alpha Concourse will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:588:/ window 5,5 -8.0 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ -16.0 "Critical Rip" sync / 1[56]:[^:]*:Imdugud:B56:/ -20.0 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ -32.0 "Wild Charge" sync / 1[56]:[^:]*:Imdugud:B5B:/ window 8,8 -36.0 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ -51.0 "Spike Flail" #sync / 1[56]:[^:]*:Imdugud:B57:/ -56.0 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ -64.0 "Critical Rip" sync / 1[56]:[^:]*:Imdugud:B56:/ window 20,20 jump 20 +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "588" } window 5,5 +8.0 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } +16.0 "Critical Rip" Ability { id: "B56", source: "Imdugud" } +20.0 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } +32.0 "Wild Charge" Ability { id: "B5B", source: "Imdugud" } window 8,8 +36.0 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } +51.0 "Spike Flail" #Ability { id: "B57", source: "Imdugud" } +56.0 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } +64.0 "Critical Rip" Ability { id: "B56", source: "Imdugud" } window 20,20 jump 20 # fake lookahead loop 68.0 "Crackle Hiss" 80.0 "Wild Charge" @@ -26,48 +26,48 @@ hideall "--sync--" 89.0 "Spike Flail" # 85% push into Adds Phase #1 -196.0 "--sync--" sync / 14:[^:]*:Imdugud:B5D:/ window 200,0 -200.0 "Electrocharge" sync / 1[56]:[^:]*:Imdugud:B5D:/ window 200,0 +196.0 "--sync--" StartsUsing { id: "B5D", source: "Imdugud" } window 200,0 +200.0 "Electrocharge" Ability { id: "B5D", source: "Imdugud" } window 200,0 201.0 "2x Son / 2x Daughter Adds" # Mid Phase: Alternates Heat Lightning, Heat Lightning+Charge, Tankbuster, Repeat -497.0 "--sync--" sync / 14:[^:]*:Imdugud:B5E:/ window 500,0 -500.0 "Electric Burst" sync / 1[56]:[^:]*:Imdugud:B5E:/ window 500,0 -509.2 "Heat Lightning" sync / 1[56]:[^:]*:Imdugud:B5F:/ -528.1 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ -535.2 "Heat Lightning" sync / 1[56]:[^:]*:Imdugud:B5F:/ -541.9 "Wild Charge" sync / 1[56]:[^:]*:Imdugud:B5B:/ window 8,8 -545.3 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ -558.3 "Critical Rip" sync / 1[56]:[^:]*:Imdugud:B56:/ -561.5 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ +497.0 "--sync--" StartsUsing { id: "B5E", source: "Imdugud" } window 500,0 +500.0 "Electric Burst" Ability { id: "B5E", source: "Imdugud" } window 500,0 +509.2 "Heat Lightning" Ability { id: "B5F", source: "Imdugud" } +528.1 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } +535.2 "Heat Lightning" Ability { id: "B5F", source: "Imdugud" } +541.9 "Wild Charge" Ability { id: "B5B", source: "Imdugud" } window 8,8 +545.3 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } +558.3 "Critical Rip" Ability { id: "B56", source: "Imdugud" } +561.5 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } # fake lookahead loop -569.8 "Heat Lightning" sync / 1[56]:[^:]*:Imdugud:B5F:/ window 20,20 jump 509.2 +569.8 "Heat Lightning" Ability { id: "B5F", source: "Imdugud" } window 20,20 jump 509.2 588.7 "Crackle Hiss" 595.8 "Heat Lightning" 602.5 "Wild Charge" # 53% push into Adds Phase #2 -696.0 "--sync--" sync / 14:[^:]*:Imdugud:B5D:/ window 200,0 -700.0 "Electrocharge" sync / 1[56]:[^:]*:Imdugud:B5D:/ window 400,0 +696.0 "--sync--" StartsUsing { id: "B5D", source: "Imdugud" } window 200,0 +700.0 "Electrocharge" Ability { id: "B5D", source: "Imdugud" } window 400,0 701.0 "2x Son / 2x Daughter Adds" 736.0 "1x Son / 1x Daughter Adds" # Final Phase: Heat+Tether, Buster, Random Mechanic, Repeat -997.0 "--sync--" sync / 14:[^:]*:Imdugud:B5E:/ window 400,0 -1000.0 "Electric Burst" sync / 1[56]:[^:]*:Imdugud:B5E:/ window 400,0 +997.0 "--sync--" StartsUsing { id: "B5E", source: "Imdugud" } window 400,0 +1000.0 "Electric Burst" Ability { id: "B5E", source: "Imdugud" } window 400,0 -1009.3 "Heat Lightning" sync / 1[56]:[^:]*:Imdugud:B5F:/ -1013.5 "Cyclonic Chaos" sync / 1[56]:[^:]*:Imdugud:B61:/ -1028.5 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ +1009.3 "Heat Lightning" Ability { id: "B5F", source: "Imdugud" } +1013.5 "Cyclonic Chaos" Ability { id: "B61", source: "Imdugud" } +1028.5 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } -1035.8 "Critical Rip" sync / 1[56]:[^:]*:Imdugud:B56:/ window 20,20 -1042.0 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ +1035.8 "Critical Rip" Ability { id: "B56", source: "Imdugud" } window 20,20 +1042.0 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } # Heat + Charge, OR Tether + Charge 1058.0 "Random + Charge" -1061.2 "Crackle Hiss" sync / 1[56]:[^:]*:Imdugud:B55:/ -1089.2 "Heat Lightning" sync / 1[56]:[^:]*:Imdugud:B5F:/ window 20,20 jump 1009.3 +1061.2 "Crackle Hiss" Ability { id: "B55", source: "Imdugud" } +1089.2 "Heat Lightning" Ability { id: "B5F", source: "Imdugud" } window 20,20 jump 1009.3 1093.4 "Cyclonic Chaos" 1108.4 "Crackle Hiss" 1115.7 "Critical Rip" diff --git a/ui/raidboss/data/02-arr/raid/t11.txt b/ui/raidboss/data/02-arr/raid/t11.txt index 5e6e1ef789..2ded9e6c12 100644 --- a/ui/raidboss/data/02-arr/raid/t11.txt +++ b/ui/raidboss/data/02-arr/raid/t11.txt @@ -10,14 +10,14 @@ hideall "--sync--" ### Phase 1 0.0 "Start" # Core Override will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:592:/ window 10,10 -9.4 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ window 10,10 +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "592" } window 10,10 +9.4 "Resonance" Ability { id: "B6B", source: "Kaliya" } window 10,10 19.7 "Nerve Gas" 24.9 "Nerve Gas" 30.1 "Nerve Gas" -33.4 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -38.6 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ +33.4 "Resonance" Ability { id: "B6B", source: "Kaliya" } +38.6 "Resonance" Ability { id: "B6B", source: "Kaliya" } 48.9 "Nerve Gas" 54.1 "Nerve Gas" @@ -26,23 +26,23 @@ hideall "--sync--" 67.8 "Resonance" ### Phase 2 (90%) -200.0 "Barofield" sync / 1[56]:[^:]*:Kaliya:B6F:/ window 200,0 - -208.0 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -213.3 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -217.5 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -220.7 "Secondary Head Stun" sync / 1[56]:[^:]*:Kaliya:B73:/ -225.8 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B72:/ -226.9 "Main Head" sync / 1[56]:[^:]*:Kaliya:B71:/ -231.1 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ +200.0 "Barofield" Ability { id: "B6F", source: "Kaliya" } window 200,0 + +208.0 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +213.3 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } +217.5 "Resonance" Ability { id: "B6B", source: "Kaliya" } +220.7 "Secondary Head Stun" Ability { id: "B73", source: "Kaliya" } +225.8 "Secondary Head" Ability { id: "B72", source: "Kaliya" } +226.9 "Main Head" Ability { id: "B71", source: "Kaliya" } +231.1 "Resonance" Ability { id: "B6B", source: "Kaliya" } 237.4 "Nerve Gas" 242.5 "Nerve Gas" 247.5 "Nerve Gas" -250.8 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ +250.8 "Resonance" Ability { id: "B6B", source: "Kaliya" } -258.0 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -263.3 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -267.5 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ window 10,10 jump 217.5 +258.0 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +263.3 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } +267.5 "Resonance" Ability { id: "B6B", source: "Kaliya" } window 10,10 jump 217.5 270.7 "Secondary Head Stun" 275.8 "Secondary Head" 276.9 "Main Head" @@ -59,108 +59,108 @@ hideall "--sync--" ### Phase 4 (nodes defeated) # this phase has different timings if you are soloing, sorry. # it's possible resonance timings are not reliable either. -595.0 "--sync--" sync / 14:[^:]*:Kaliya:B78:/ window 600,600 -600.0 "Emergency Mode" sync / 1[56]:[^:]*:Kaliya:B78:/ - -606.1 "Nerve Cloud" sync / 1[56]:[^:]*:Kaliya:B79:/ window 100,100 -617.3 "Nanospore Jet" sync / 1[56]:[^:]*:Kaliya:B7B:/ window 50,50 -625.4 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -634.9 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -639.7 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ +595.0 "--sync--" StartsUsing { id: "B78", source: "Kaliya" } window 600,600 +600.0 "Emergency Mode" Ability { id: "B78", source: "Kaliya" } + +606.1 "Nerve Cloud" Ability { id: "B79", source: "Kaliya" } window 100,100 +617.3 "Nanospore Jet" Ability { id: "B7B", source: "Kaliya" } window 50,50 +625.4 "Resonance" Ability { id: "B6B", source: "Kaliya" } +634.9 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +639.7 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } 644.1 "Nerve Gas" 649.2 "Nerve Gas" 654.3 "Nerve Gas" -658.6 "Secondary Head Stun" sync / 1[56]:[^:]*:Kaliya:B73:/ -663.7 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B72:/ -664.8 "Main Head" sync / 1[56]:[^:]*:Kaliya:B71:/ -668.1 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ - -677.2 "Nanospore Jet" sync / 1[56]:[^:]*:Kaliya:B7B:/ window 50,50 -685.3 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -694.6 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -699.6 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ +658.6 "Secondary Head Stun" Ability { id: "B73", source: "Kaliya" } +663.7 "Secondary Head" Ability { id: "B72", source: "Kaliya" } +664.8 "Main Head" Ability { id: "B71", source: "Kaliya" } +668.1 "Resonance" Ability { id: "B6B", source: "Kaliya" } + +677.2 "Nanospore Jet" Ability { id: "B7B", source: "Kaliya" } window 50,50 +685.3 "Resonance" Ability { id: "B6B", source: "Kaliya" } +694.6 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +699.6 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } 704.0 "Nerve Gas" 709.0 "Nerve Gas" 714.1 "Nerve Gas" -718.4 "Secondary Head Stun" sync / 1[56]:[^:]*:Kaliya:B73:/ -723.6 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B72:/ -724.7 "Main Head" sync / 1[56]:[^:]*:Kaliya:B71:/ -727.9 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ +718.4 "Secondary Head Stun" Ability { id: "B73", source: "Kaliya" } +723.6 "Secondary Head" Ability { id: "B72", source: "Kaliya" } +724.7 "Main Head" Ability { id: "B71", source: "Kaliya" } +727.9 "Resonance" Ability { id: "B6B", source: "Kaliya" } -733.9 "Nerve Cloud" sync / 1[56]:[^:]*:Kaliya:B79:/ window 100,100 -745.1 "Nanospore Jet" sync / 1[56]:[^:]*:Kaliya:B7B:/ window 50,50 +733.9 "Nerve Cloud" Ability { id: "B79", source: "Kaliya" } window 100,100 +745.1 "Nanospore Jet" Ability { id: "B7B", source: "Kaliya" } window 50,50 756.2 "Nerve Gas" 761.3 "Nerve Gas" 766.4 "Nerve Gas" -768.6 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -779.7 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -784.8 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -785.0 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -787.1 "Secondary Head Stun" sync / 1[56]:[^:]*:Kaliya:B73:/ -792.2 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B72:/ -793.3 "Main Head" sync / 1[56]:[^:]*:Kaliya:B71:/ - -804.7 "Nanospore Jet" sync / 1[56]:[^:]*:Kaliya:B7B:/ window 50,50 +768.6 "Resonance" Ability { id: "B6B", source: "Kaliya" } +779.7 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +784.8 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } +785.0 "Resonance" Ability { id: "B6B", source: "Kaliya" } +787.1 "Secondary Head Stun" Ability { id: "B73", source: "Kaliya" } +792.2 "Secondary Head" Ability { id: "B72", source: "Kaliya" } +793.3 "Main Head" Ability { id: "B71", source: "Kaliya" } + +804.7 "Nanospore Jet" Ability { id: "B7B", source: "Kaliya" } window 50,50 815.9 "Nerve Gas" 821.0 "Nerve Gas" 826.1 "Nerve Gas" -828.2 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -839.4 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -844.5 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -844.7 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -846.8 "Secondary Head Stun" sync / 1[56]:[^:]*:Kaliya:B73:/ -851.9 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B72:/ -853.0 "Main Head" sync / 1[56]:[^:]*:Kaliya:B71:/ - -861.3 "Nerve Cloud" sync / 1[56]:[^:]*:Kaliya:B79:/ window 100,100 -872.5 "Nanospore Jet" sync / 1[56]:[^:]*:Kaliya:B7B:/ window 50,50 -880.6 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -889.8 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -894.7 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ +828.2 "Resonance" Ability { id: "B6B", source: "Kaliya" } +839.4 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +844.5 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } +844.7 "Resonance" Ability { id: "B6B", source: "Kaliya" } +846.8 "Secondary Head Stun" Ability { id: "B73", source: "Kaliya" } +851.9 "Secondary Head" Ability { id: "B72", source: "Kaliya" } +853.0 "Main Head" Ability { id: "B71", source: "Kaliya" } + +861.3 "Nerve Cloud" Ability { id: "B79", source: "Kaliya" } window 100,100 +872.5 "Nanospore Jet" Ability { id: "B7B", source: "Kaliya" } window 50,50 +880.6 "Resonance" Ability { id: "B6B", source: "Kaliya" } +889.8 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +894.7 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } 899.2 "Nerve Gas" 904.4 "Nerve Gas" 909.5 "Nerve Gas" -913.7 "Secondary Head Stun" sync / 1[56]:[^:]*:Kaliya:B73:/ -918.8 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B72:/ -920.0 "Main Head" sync / 1[56]:[^:]*:Kaliya:B71:/ -923.2 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ +913.7 "Secondary Head Stun" Ability { id: "B73", source: "Kaliya" } +918.8 "Secondary Head" Ability { id: "B72", source: "Kaliya" } +920.0 "Main Head" Ability { id: "B71", source: "Kaliya" } +923.2 "Resonance" Ability { id: "B6B", source: "Kaliya" } -932.4 "Nanospore Jet" sync / 1[56]:[^:]*:Kaliya:B7B:/ window 50,50 +932.4 "Nanospore Jet" Ability { id: "B7B", source: "Kaliya" } window 50,50 943.6 "Nerve Gas" 948.7 "Nerve Gas" 953.7 "Nerve Gas" -955.8 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -967.0 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -972.0 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -972.2 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -974.3 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B73:/ -979.4 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B72:/ -980.5 "Main Head" sync / 1[56]:[^:]*:Kaliya:B71:/ - -988.8 "Nerve Cloud" sync / 1[56]:[^:]*:Kaliya:B79:/ window 100,100 -1000.0 "Nanospore Jet" sync / 1[56]:[^:]*:Kaliya:B7B:/ window 50,50 +955.8 "Resonance" Ability { id: "B6B", source: "Kaliya" } +967.0 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +972.0 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } +972.2 "Resonance" Ability { id: "B6B", source: "Kaliya" } +974.3 "Secondary Head" Ability { id: "B73", source: "Kaliya" } +979.4 "Secondary Head" Ability { id: "B72", source: "Kaliya" } +980.5 "Main Head" Ability { id: "B71", source: "Kaliya" } + +988.8 "Nerve Cloud" Ability { id: "B79", source: "Kaliya" } window 100,100 +1000.0 "Nanospore Jet" Ability { id: "B7B", source: "Kaliya" } window 50,50 1011.2 "Nerve Gas" 1016.2 "Nerve Gas" 1021.3 "Nerve Gas" -1023.5 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -1034.7 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -1039.7 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -1039.9 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -1042.0 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B73:/ -1047.1 "Secondary Head" sync / 1[56]:[^:]*:Kaliya:B72:/ -1048.2 "Main Head" sync / 1[56]:[^:]*:Kaliya:B71:/ - -1059.6 "Nanospore Jet" sync / 1[56]:[^:]*:Kaliya:B7B:/ window 50,50 -1067.8 "Resonance" sync / 1[56]:[^:]*:Kaliya:B6B:/ -1077.2 "Seed Of The Sea/Rivers" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ -1082.2 "Seed Of The Rivers/Sea" sync / 1[56]:[^:]*:Kaliya:B7[67]:/ +1023.5 "Resonance" Ability { id: "B6B", source: "Kaliya" } +1034.7 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +1039.7 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } +1039.9 "Resonance" Ability { id: "B6B", source: "Kaliya" } +1042.0 "Secondary Head" Ability { id: "B73", source: "Kaliya" } +1047.1 "Secondary Head" Ability { id: "B72", source: "Kaliya" } +1048.2 "Main Head" Ability { id: "B71", source: "Kaliya" } + +1059.6 "Nanospore Jet" Ability { id: "B7B", source: "Kaliya" } window 50,50 +1067.8 "Resonance" Ability { id: "B6B", source: "Kaliya" } +1077.2 "Seed Of The Sea/Rivers" Ability { id: "B7[67]", source: "Kaliya" } +1082.2 "Seed Of The Rivers/Sea" Ability { id: "B7[67]", source: "Kaliya" } 1086.5 "Nerve Gas" 1091.7 "Nerve Gas" 1096.9 "Nerve Gas" ### Phase 5 (enrage) -1200.0 "--sync--" sync / 1[56]:[^:]*:Kaliya:B7A:/ window 1200,1200 +1200.0 "--sync--" Ability { id: "B7A", source: "Kaliya" } window 1200,1200 1208.0 "Nerve Cloud Enrage" 1220.2 "Nerve Cloud Enrage" 1232.4 "Nerve Cloud Enrage" diff --git a/ui/raidboss/data/02-arr/raid/t12.txt b/ui/raidboss/data/02-arr/raid/t12.txt index 2ac10fbac1..a7c1e3db4c 100644 --- a/ui/raidboss/data/02-arr/raid/t12.txt +++ b/ui/raidboss/data/02-arr/raid/t12.txt @@ -8,33 +8,33 @@ hideall "Scorched Pinion" ### Phase 1: Blackfire/Whitefire 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 9.0 "Bennu Add" -18.0 "Revelation" sync / 1[56]:[^:]*:Phoenix:B87:/ window 18,10 -32.1 "Blackfire" sync / 1[56]:[^:]*:Phoenix:B8C:/ -42.1 "--sync--" sync / 1[56]:[^:]*:Phoenix:B8F:/ -43.6 "Whitefire" sync / 1[56]:[^:]*:Phoenix:B90:/ +18.0 "Revelation" Ability { id: "B87", source: "Phoenix" } window 18,10 +32.1 "Blackfire" Ability { id: "B8C", source: "Phoenix" } +42.1 "--sync--" Ability { id: "B8F", source: "Phoenix" } +43.6 "Whitefire" Ability { id: "B90", source: "Phoenix" } -77.0 "Revelation" sync / 1[56]:[^:]*:Phoenix:B87:/ window 20,20 jump 18 +77.0 "Revelation" Ability { id: "B87", source: "Phoenix" } window 20,20 jump 18 91.1 "Blackfire" 101.1 "--sync--" 102.6 "Whitefire" ### Phase 2: Bluefire/Redfire -200.0 "Brand Of Purgatory" sync / 1[56]:[^:]*:Phoenix:B88:/ window 200,0 +200.0 "Brand Of Purgatory" Ability { id: "B88", source: "Phoenix" } window 200,0 -210.6 "Bluefire" sync / 1[56]:[^:]*:Phoenix:B91:/ duration 4.1 -223.6 "Flames Of Unforgiveness" sync / 1[56]:[^:]*:Phoenix:B8B:/ -231.0 "Redfire" sync / 1[56]:[^:]*:Phoenix:B93:/ -237.1 "Revelation" sync / 1[56]:[^:]*:Phoenix:B87:/ +210.6 "Bluefire" Ability { id: "B91", source: "Phoenix" } duration 4.1 +223.6 "Flames Of Unforgiveness" Ability { id: "B8B", source: "Phoenix" } +231.0 "Redfire" Ability { id: "B93", source: "Phoenix" } +237.1 "Revelation" Ability { id: "B87", source: "Phoenix" } -248.2 "Bluefire" sync / 1[56]:[^:]*:Phoenix:B91:/ duration 4.1 -261.3 "Flames Of Unforgiveness" sync / 1[56]:[^:]*:Phoenix:B8B:/ -268.3 "Redfire" sync / 1[56]:[^:]*:Phoenix:B93:/ +248.2 "Bluefire" Ability { id: "B91", source: "Phoenix" } duration 4.1 +261.3 "Flames Of Unforgiveness" Ability { id: "B8B", source: "Phoenix" } +268.3 "Redfire" Ability { id: "B93", source: "Phoenix" } -280.6 "Bluefire" sync / 1[56]:[^:]*:Phoenix:B91:/ duration 4.1 -293.6 "Flames Of Unforgiveness" sync / 1[56]:[^:]*:Phoenix:B8B:/ jump 223.6 window 20,20 +280.6 "Bluefire" Ability { id: "B91", source: "Phoenix" } duration 4.1 +293.6 "Flames Of Unforgiveness" Ability { id: "B8B", source: "Phoenix" } jump 223.6 window 20,20 301.0 "Redfire" 307.1 "Revelation" @@ -44,81 +44,81 @@ hideall "Scorched Pinion" ### Phase 3: So Many Bennies -400.0 "--sync--" sync / 1[56]:[^:]*:Phoenix:B96:/ window 400,0 -404.1 "--sync--" sync / 1[56]:[^:]*:Phoenix:B97:/ window 404,5 -407.1 "Flames Of Rebirth" sync / 1[56]:[^:]*:Phoenix:B98:/ -421.3 "Flames Of Rebirth" sync / 1[56]:[^:]*:Phoenix:B99:/ -435.5 "Flames Of Rebirth" sync / 1[56]:[^:]*:Phoenix:B99:/ window 8,8 jump 421.3 +400.0 "--sync--" Ability { id: "B96", source: "Phoenix" } window 400,0 +404.1 "--sync--" Ability { id: "B97", source: "Phoenix" } window 404,5 +407.1 "Flames Of Rebirth" Ability { id: "B98", source: "Phoenix" } +421.3 "Flames Of Rebirth" Ability { id: "B99", source: "Phoenix" } +435.5 "Flames Of Rebirth" Ability { id: "B99", source: "Phoenix" } window 8,8 jump 421.3 449.7 "Flames Of Rebirth" 463.9 "Flames Of Rebirth" 478.1 "Flames Of Rebirth" ### Phase 4: Fountains of Life and Death -996.0 "--sync--" sync / 14:[^:]*:Phoenix:C88:/ window 1000,0 -1000.0 "Rebirth" sync / 1[56]:[^:]*:Phoenix:C88:/ -1005.8 "Brand Of Purgatory" sync / 1[56]:[^:]*:Phoenix:B88:/ +996.0 "--sync--" StartsUsing { id: "C88", source: "Phoenix" } window 1000,0 +1000.0 "Rebirth" Ability { id: "C88", source: "Phoenix" } +1005.8 "Brand Of Purgatory" Ability { id: "B88", source: "Phoenix" } # Fountain 1 -1011.0 "Fountain Of Fire" sync / 1[56]:[^:]*:Phoenix:B9C:/ -1014.1 "Summon" sync / 1[56]:[^:]*:Phoenix:B9F:/ +1011.0 "Fountain Of Fire" Ability { id: "B9C", source: "Phoenix" } +1014.1 "Summon" Ability { id: "B9F", source: "Phoenix" } 1019.1 "Fountain Tick 1" -1020.3 "Scorched Pinion" sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1022.1 "Revelation" sync / 1[56]:[^:]*:Phoenix:B87:/ window 10,10 +1020.3 "Scorched Pinion" Ability { id: "BA0", source: "Phoenix-Egi" } +1022.1 "Revelation" Ability { id: "B87", source: "Phoenix" } window 10,10 1024.3 "Fountain Tick 2" -1026.4 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ +1026.4 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } 1029.3 "Fountain Tick 3" -1032.8 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ +1032.8 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } 1034.3 "Fountain Tick 4" -1038.2 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ +1038.2 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } 1039.3 "Fountain Tick 5" -1044.2 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1044.2 "Flames Of Unforgiveness" sync / 1[56]:[^:]*:Phoenix:B8B:/ window 10,10 +1044.2 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } +1044.2 "Flames Of Unforgiveness" Ability { id: "B8B", source: "Phoenix" } window 10,10 1044.4 "Fountain Tick 6" 1049.5 "Fountain Tick 7" -1050.8 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ +1050.8 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } 1054.6 "Fountain Tick 8" -1059.4 "Flames Of Rebirth" sync / 1[56]:[^:]*:Phoenix:B9A:/ window 10,10 +1059.4 "Flames Of Rebirth" Ability { id: "B9A", source: "Phoenix" } window 10,10 # Fountain 2 -1066.6 "Fountain Of Fire" sync / 1[56]:[^:]*:Phoenix:B9C:/ -1069.6 "Summon" sync / 1[56]:[^:]*:Phoenix:B9F:/ +1066.6 "Fountain Of Fire" Ability { id: "B9C", source: "Phoenix" } +1069.6 "Summon" Ability { id: "B9F", source: "Phoenix" } 1074.8 "Fountain Tick 1" -1075.8 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1077.7 "Revelation" sync / 1[56]:[^:]*:Phoenix:B87:/ window 10,10 +1075.8 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } +1077.7 "Revelation" Ability { id: "B87", source: "Phoenix" } window 10,10 1079.9 "Fountain Tick 2" -1081.8 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ +1081.8 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } 1085.1 "Fountain Tick 3" -1088.4 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ +1088.4 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } 1090.2 "Fountain Tick 4" -1093.8 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ +1093.8 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } 1095.2 "Fountain Tick 5" -1099.8 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1099.8 "Flames Of Unforgiveness" sync / 1[56]:[^:]*:Phoenix:B8B:/ +1099.8 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } +1099.8 "Flames Of Unforgiveness" Ability { id: "B8B", source: "Phoenix" } 1100.3 "Fountain Tick 6" 1105.4 "Fountain Tick 7" -1106.3 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ +1106.3 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } 1110.4 "Fountain Tick 8" -1115.0 "Flames Of Rebirth" sync / 1[56]:[^:]*:Phoenix:B9A:/ +1115.0 "Flames Of Rebirth" Ability { id: "B9A", source: "Phoenix" } # Dance Minigame -1117.2 "--sync--" sync / 1[56]:[^:]*:Phoenix:BA2:/ -1118.3 "--sync--" sync / 1[56]:[^:]*:Phoenix:B96:/ -1119.0 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1121.1 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1121.2 "Redfire Plume" #sync / 1[56]:[^:]*:Phoenix:BA3:/ -1123.0 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1125.1 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1125.7 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ -1127.2 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA0:/ -1127.8 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ -1129.7 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ -1131.8 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ -1133.9 "Scorched Pinion" #sync / 1[56]:[^:]*:Phoenix-Egi:BA1:/ -1137.9 "--sync--" sync / 1[56]:[^:]*:Phoenix:B97:/ window 20,20 +1117.2 "--sync--" Ability { id: "BA2", source: "Phoenix" } +1118.3 "--sync--" Ability { id: "B96", source: "Phoenix" } +1119.0 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } +1121.1 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } +1121.2 "Redfire Plume" #Ability { id: "BA3", source: "Phoenix" } +1123.0 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } +1125.1 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } +1125.7 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } +1127.2 "Scorched Pinion" #Ability { id: "BA0", source: "Phoenix-Egi" } +1127.8 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } +1129.7 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } +1131.8 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } +1133.9 "Scorched Pinion" #Ability { id: "BA1", source: "Phoenix-Egi" } +1137.9 "--sync--" Ability { id: "B97", source: "Phoenix" } window 20,20 # Loop -1143.1 "Fountain Of Fire" sync / 1[56]:[^:]*:Phoenix:B9C:/ window 50,50 jump 1011.1 +1143.1 "Fountain Of Fire" Ability { id: "B9C", source: "Phoenix" } window 50,50 jump 1011.1 1146.2 "Summon" 1151.2 "Fountain Tick 1" 1152.4 "Scorched Pinion" diff --git a/ui/raidboss/data/02-arr/raid/t13.txt b/ui/raidboss/data/02-arr/raid/t13.txt index 841932c0d8..e18112cd30 100644 --- a/ui/raidboss/data/02-arr/raid/t13.txt +++ b/ui/raidboss/data/02-arr/raid/t13.txt @@ -6,20 +6,20 @@ hideall "--sync--" ### Phase 1: Megaflare Warmup 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ window 7,10 -15.1 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ window 80,80 -18.8 "MF Spread" #sync / 1[56]:[^:]*:Bahamut Prime:BB0:/ -20.5 "MF Pepperoni" #sync / 1[56]:[^:]*:Bahamut Prime:BB1:/ -22.6 "MF Share" sync / 1[56]:[^:]*:Bahamut Prime:BB2:/ -25.1 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ window 10,5 -33.1 "Flatten" sync / 1[56]:[^:]*:Bahamut Prime:BAE:/ window 30,30 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } window 7,10 +15.1 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } window 80,80 +18.8 "MF Spread" #Ability { id: "BB0", source: "Bahamut Prime" } +20.5 "MF Pepperoni" #Ability { id: "BB1", source: "Bahamut Prime" } +22.6 "MF Share" Ability { id: "BB2", source: "Bahamut Prime" } +25.1 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } window 10,5 +33.1 "Flatten" Ability { id: "BAE", source: "Bahamut Prime" } window 30,30 35.2 "Flare Breath x3" duration 4 45.4 "Earth Shaker Marker" 50.4 "Earth Shaker x3" duration 4 -56.6 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ -64.7 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ window 80,80 +56.6 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } +64.7 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } window 80,80 68.4 "MF Spread" 70.1 "MF Pepperoni" 72.2 "MF Share" @@ -31,59 +31,59 @@ hideall "--sync--" ### Phase 2 (75%): Flare Star, Rage of Bahamut, Dragons -195.0 "--sync--" sync / 14:[^:]*:Bahamut Prime:BB9:/ window 200,0 -200.0 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:BB9:/ window 200,5 +195.0 "--sync--" StartsUsing { id: "BB9", source: "Bahamut Prime" } window 200,0 +200.0 "Gigaflare" Ability { id: "BB9", source: "Bahamut Prime" } window 200,5 203.0 "Shadow Add (N)" -212.3 "Flare Star" sync / 1[56]:[^:]*:Bahamut Prime:BBB:/ +212.3 "Flare Star" Ability { id: "BBB", source: "Bahamut Prime" } 214.1 "(1x Dark Aether Orb)" -220.5 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +220.5 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } 226.6 "(3x Dark Aether Orbs)" -234.5 "Flatten" sync / 1[56]:[^:]*:Bahamut Prime:BAE:/ -237.8 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +234.5 "Flatten" Ability { id: "BAE", source: "Bahamut Prime" } +237.8 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } 238.4 "(3x Dark Aether Orbs)" -252.8 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +252.8 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 256.0 "MF Spread" 258.0 "MF Pepperoni" 260.3 "MF Share" -261.9 "MF Tower" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ -263.0 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ -269.1 "Rage Of Bahamut" sync / 1[56]:[^:]*:Bahamut Prime:BBD:/ +261.9 "MF Tower" Ability { id: "BB3", source: "Bahamut Prime" } +263.0 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } +269.1 "Rage Of Bahamut" Ability { id: "BBD", source: "Bahamut Prime" } 270.1 "Shadow Add (SW)" -278.3 "Flare Star" sync / 1[56]:[^:]*:Bahamut Prime:BBB:/ +278.3 "Flare Star" Ability { id: "BBB", source: "Bahamut Prime" } 280.1 "(3x Dark Aether Orbs)" -286.5 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +286.5 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } 292.1 "(3x Dark Aether Orbs)" -300.5 "Flatten" sync / 1[56]:[^:]*:Bahamut Prime:BAE:/ -303.8 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +300.5 "Flatten" Ability { id: "BAE", source: "Bahamut Prime" } +303.8 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } 304.6 "(2x Dark Aether Orbs)" -318.8 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +318.8 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 322.0 "MF Spread" 324.0 "MF Pepperoni" 326.3 "MF Share" -327.9 "MF Tower" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ -329.0 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ -335.1 "Rage Of Bahamut" sync / 1[56]:[^:]*:Bahamut Prime:BBD:/ +327.9 "MF Tower" Ability { id: "BB3", source: "Bahamut Prime" } +329.0 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } +335.1 "Rage Of Bahamut" Ability { id: "BBD", source: "Bahamut Prime" } 336.1 "Shadow Add (SE)" -344.3 "Flare Star" sync / 1[56]:[^:]*:Bahamut Prime:BBB:/ +344.3 "Flare Star" Ability { id: "BBB", source: "Bahamut Prime" } 346.1 "(3x Dark Aether Orbs)" -352.5 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +352.5 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } 358.1 "(3x Dark Aether Orbs)" -366.5 "Flatten" sync / 1[56]:[^:]*:Bahamut Prime:BAE:/ -369.8 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +366.5 "Flatten" Ability { id: "BAE", source: "Bahamut Prime" } +369.8 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } 370.6 "(2x Dark Aether Orbs)" -384.8 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +384.8 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 388.0 "MF Spread" 390.0 "MF Pepperoni" 392.3 "MF Share" -393.9 "MF Tower" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ -395.0 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ -401.1 "Rage Of Bahamut" sync / 1[56]:[^:]*:Bahamut Prime:BBD:/ +393.9 "MF Tower" Ability { id: "BB3", source: "Bahamut Prime" } +395.0 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } +401.1 "Rage Of Bahamut" Ability { id: "BBD", source: "Bahamut Prime" } 402.1 "Shadow Add" -410.3 "Flare Star" sync / 1[56]:[^:]*:Bahamut Prime:BBB:/ window 50,50 jump 344.3 +410.3 "Flare Star" Ability { id: "BBB", source: "Bahamut Prime" } window 50,50 jump 344.3 412.1 "(3x Dark Aether Orbs)" 418.5 "Flare Breath" 424.1 "(3x Dark Aether Orbs)" @@ -100,23 +100,23 @@ hideall "--sync--" ### Phase 3 (52%): adds, adds, adds -495.0 "--sync--" sync / 14:[^:]*:Bahamut Prime:BB9:/ window 290,0 -500.0 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:BB9:/ -505.4 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BBE:/ -508.5 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BBF:/ -514.7 "Megaflare Dive" sync / 1[56]:[^:]*:Bahamut Prime:BC0:/ -516.6 "Double Dive" sync / 1[56]:[^:]*:The Storm of Meracydia:BC8:/ -517.8 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BBE:/ +495.0 "--sync--" StartsUsing { id: "BB9", source: "Bahamut Prime" } window 290,0 +500.0 "Gigaflare" Ability { id: "BB9", source: "Bahamut Prime" } +505.4 "--sync--" Ability { id: "BBE", source: "Bahamut Prime" } +508.5 "--sync--" Ability { id: "BBF", source: "Bahamut Prime" } +514.7 "Megaflare Dive" Ability { id: "BC0", source: "Bahamut Prime" } +516.6 "Double Dive" Ability { id: "BC8", source: "The Storm of Meracydia" } +517.8 "--sync--" Ability { id: "BBE", source: "Bahamut Prime" } 518.7 "MF Spread" 520.9 "MF Pepperoni" 523.0 "MF Share" 525.1 "Blood, Pain Adds (E/W)" 545.5 "3x Gust Adds" 571.2 "2x Sin Adds (N/S)" -599.7 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BBF:/ -605.8 "Megaflare Dive" sync / 1[56]:[^:]*:Bahamut Prime:BC0:/ -607.7 "Double Dive" sync / 1[56]:[^:]*:The Storm of Meracydia:BC8:/ -608.9 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BBE:/ +599.7 "--sync--" Ability { id: "BBF", source: "Bahamut Prime" } +605.8 "Megaflare Dive" Ability { id: "BC0", source: "Bahamut Prime" } +607.7 "Double Dive" Ability { id: "BC8", source: "The Storm of Meracydia" } +608.9 "--sync--" Ability { id: "BBE", source: "Bahamut Prime" } 609.8 "MF Spread" 612.0 "MF Pepperoni" 614.1 "MF Share" @@ -125,112 +125,112 @@ hideall "--sync--" 641.1 "2x Gust Adds (S)" 651.6 "Sin Add (E)" 672.2 "Pain Add (W)" -692.8 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BBF:/ -698.9 "Megaflare Dive" sync / 1[56]:[^:]*:Bahamut Prime:BC0:/ -702.1 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BB E:/ +692.8 "--sync--" Ability { id: "BBF", source: "Bahamut Prime" } +698.9 "Megaflare Dive" Ability { id: "BC0", source: "Bahamut Prime" } +702.1 "--sync--" Ability { id: "BB E", source: "Bahamut Prime" } 702.9 "MF Spread" 705.1 "MF Pepperoni" 707.2 "MF Share" -725.4 "Teraflare" sync / 1[56]:[^:]*:Bahamut Prime:BC1:/ window 700,700 +725.4 "Teraflare" Ability { id: "BC1", source: "Bahamut Prime" } window 700,700 ### Phase 4: Akh Morns, Tempest Wings -735.6 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BBE:/ -737.8 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:BBF:/ +735.6 "--sync--" Ability { id: "BBE", source: "Bahamut Prime" } +737.8 "--sync--" Ability { id: "BBF", source: "Bahamut Prime" } -745.1 "Akh Morn x2" sync / 1[56]:[^:]*:Bahamut Prime:BC2:/ window 40,40 duration 2.1 -759.5 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +745.1 "Akh Morn x2" Ability { id: "BC2", source: "Bahamut Prime" } window 40,40 duration 2.1 +759.5 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 764.6 "MF Pepperoni" -766.6 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -767.3 "MF Share" sync / 1[56]:[^:]*:Bahamut Prime:BB2:/ -767.9 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ # Tempest Wing Gust? -768.6 "MF Tower(s)" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ +766.6 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +767.3 "MF Share" Ability { id: "BB2", source: "Bahamut Prime" } +767.9 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } # Tempest Wing Gust? +768.6 "MF Tower(s)" Ability { id: "BB3", source: "Bahamut Prime" } 781.7 "Earth Shaker Marker" 786.7 "Earth Shaker x3" duration 4 787.7 "Tempest Wing Tethers" -793.7 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -794.9 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -795.9 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +793.7 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +794.9 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +795.9 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } -807.1 "Akh Morn x3" sync / 1[56]:[^:]*:Bahamut Prime:BC2:/ window 40,40 duration 3.1 -822.3 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +807.1 "Akh Morn x3" Ability { id: "BC2", source: "Bahamut Prime" } window 40,40 duration 3.1 +822.3 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 827.4 "MF Pepperoni" -829.4 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -830.1 "MF Share" sync / 1[56]:[^:]*:Bahamut Prime:BB2:/ -830.7 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -831.4 "MF Tower(s)" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ +829.4 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +830.1 "MF Share" Ability { id: "BB2", source: "Bahamut Prime" } +830.7 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +831.4 "MF Tower(s)" Ability { id: "BB3", source: "Bahamut Prime" } 844.5 "Earth Shaker Marker" 849.5 "Earth Shaker x3" duration 4 850.5 "Tempest Wing Tethers" -856.5 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -857.7 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -858.7 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +856.5 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +857.7 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +858.7 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } -871.4 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:BB9:/ window 100,100 +871.4 "Gigaflare" Ability { id: "BB9", source: "Bahamut Prime" } window 100,100 -880.8 "Akh Morn x4" sync / 1[56]:[^:]*:Bahamut Prime:BC2:/ window 40,40 duration 4.1 -897.2 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +880.8 "Akh Morn x4" Ability { id: "BC2", source: "Bahamut Prime" } window 40,40 duration 4.1 +897.2 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 902.3 "MF Pepperoni" -904.3 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -905.0 "MF Share" sync / 1[56]:[^:]*:Bahamut Prime:BB2:/ -905.6 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -906.3 "MF Tower(s)" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ +904.3 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +905.0 "MF Share" Ability { id: "BB2", source: "Bahamut Prime" } +905.6 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +906.3 "MF Tower(s)" Ability { id: "BB3", source: "Bahamut Prime" } 919.4 "Earth Shaker Marker" 924.4 "Earth Shaker x3" duration 4 925.4 "Tempest Wing Tethers" -931.4 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -932.6 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -933.6 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +931.4 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +932.6 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +933.6 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } -944.8 "Akh Morn x5" sync / 1[56]:[^:]*:Bahamut Prime:BC2:/ window 40,40 duration 5.1 -962.2 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +944.8 "Akh Morn x5" Ability { id: "BC2", source: "Bahamut Prime" } window 40,40 duration 5.1 +962.2 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 967.3 "MF Pepperoni" -969.3 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -970.0 "MF Share" sync / 1[56]:[^:]*:Bahamut Prime:BB2:/ -970.6 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -971.3 "MF Tower(s)" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ +969.3 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +970.0 "MF Share" Ability { id: "BB2", source: "Bahamut Prime" } +970.6 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +971.3 "MF Tower(s)" Ability { id: "BB3", source: "Bahamut Prime" } 984.4 "Earth Shaker Marker" 989.4 "Earth Shaker x3" duration 4 990.4 "Tempest Wing Tethers" -996.4 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -997.6 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -998.6 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +996.4 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +997.6 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +998.6 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } -1011.3 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:BB9:/ window 100,100 +1011.3 "Gigaflare" Ability { id: "BB9", source: "Bahamut Prime" } window 100,100 -1020.7 "Akh Morn x6" sync / 1[56]:[^:]*:Bahamut Prime:BC2:/ window 40,40 duration 6.1 -1039.1 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +1020.7 "Akh Morn x6" Ability { id: "BC2", source: "Bahamut Prime" } window 40,40 duration 6.1 +1039.1 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 1044.2 "MF Pepperoni" -1046.2 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -1046.9 "MF Share" sync / 1[56]:[^:]*:Bahamut Prime:BB2:/ -1047.5 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -1048.2 "MF Tower(s)" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ +1046.2 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +1046.9 "MF Share" Ability { id: "BB2", source: "Bahamut Prime" } +1047.5 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +1048.2 "MF Tower(s)" Ability { id: "BB3", source: "Bahamut Prime" } 1061.3 "Earth Shaker Marker" 1066.3 "Earth Shaker x3" duration 4 1067.3 "Tempest Wing Tethers" -1073.3 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -1074.5 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -1075.5 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +1073.3 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +1074.5 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +1075.5 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } -1086.7 "Akh Morn x7" sync / 1[56]:[^:]*:Bahamut Prime:BC2:/ window 40,40 duration 7.1 -1106.1 "Megaflare" sync / 1[56]:[^:]*:Bahamut Prime:BAF:/ +1086.7 "Akh Morn x7" Ability { id: "BC2", source: "Bahamut Prime" } window 40,40 duration 7.1 +1106.1 "Megaflare" Ability { id: "BAF", source: "Bahamut Prime" } 1111.2 "MF Pepperoni" -1113.2 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -1113.9 "MF Share" sync / 1[56]:[^:]*:Bahamut Prime:BB2:/ -1114.5 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -1115.2 "MF Tower(s)" sync / 1[56]:[^:]*:Bahamut Prime:BB3:/ +1113.2 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +1113.9 "MF Share" Ability { id: "BB2", source: "Bahamut Prime" } +1114.5 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +1115.2 "MF Tower(s)" Ability { id: "BB3", source: "Bahamut Prime" } 1128.3 "Earth Shaker Marker" 1133.3 "Earth Shaker x3" duration 4 1134.3 "Tempest Wing Tethers" -1140.3 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:BC4:/ -1141.5 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:C89:/ -1142.5 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:BAD:/ +1140.3 "Tempest Wing" Ability { id: "BC4", source: "Bahamut Prime" } +1141.5 "--sync--" Ability { id: "C89", source: "Bahamut Prime" } +1142.5 "Flare Breath" Ability { id: "BAD", source: "Bahamut Prime" } -1155.2 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:BB9:/ window 100,100 +1155.2 "Gigaflare" Ability { id: "BB9", source: "Bahamut Prime" } window 100,100 ### Enrage -2000.0 "--sync--" sync / 14:[^:]*:Bahamut Prime:BBA:/ window 2000,2000 +2000.0 "--sync--" StartsUsing { id: "BBA", source: "Bahamut Prime" } window 2000,2000 2010.0 "Gigaflare Enrage" 2025.2 "Gigaflare Enrage" 2037.4 "Gigaflare Enrage" diff --git a/ui/raidboss/data/02-arr/raid/t4.txt b/ui/raidboss/data/02-arr/raid/t4.txt index 2a9443e0a4..a45f9d5eed 100644 --- a/ui/raidboss/data/02-arr/raid/t4.txt +++ b/ui/raidboss/data/02-arr/raid/t4.txt @@ -1,28 +1,28 @@ ### T4 # http://forum.square-enix.com/ffxiv/threads/103985-EXTREME-BINDING-COIL-OF-BAHAMUT-TURN-4-GUIDE -0.0 "6x Bug" sync / 03:........:Clockwork Bug:/ window 0,1 +0.0 "6x Bug" AddedCombatant { name: "Clockwork Bug" } window 0,1 -63.0 "Knight + Soldier (NW)" sync / 03:........:Clockwork Knight:/ window 70,0 +63.0 "Knight + Soldier (NW)" AddedCombatant { name: "Clockwork Knight" } window 70,0 63.0 "Knight + Soldier (NE)" -123.0 "Dreadnaught (NW)" sync / 03:........:Clockwork Dreadnaught:/ window 130,0 +123.0 "Dreadnaught (NW)" AddedCombatant { name: "Clockwork Dreadnaught" } window 130,0 123.0 "4x Bug (S)" -183.0 "2x Rook (E/W)" sync / 03:........:Spinner-rook:/ window 190,0 +183.0 "2x Rook (E/W)" AddedCombatant { name: "Spinner-rook" } window 190,0 183.0 "4x Bug (outside)" -243.0 "Dreadnaught (NE)" sync / 03:........:Clockwork Dreadnaught:/ window 115,0 +243.0 "Dreadnaught (NE)" AddedCombatant { name: "Clockwork Dreadnaught" } window 115,0 243.0 "Soldier (center)" 243.0 "Knight (SE)" -303.0 "Dreadnaught (NE)" sync / 03:........:Clockwork Dreadnaught:/ window 55,0 +303.0 "Dreadnaught (NE)" AddedCombatant { name: "Clockwork Dreadnaught" } window 55,0 303.0 "Knight (center)" 303.0 "Soldier (SW)" 303.0 "Rook (NE)" 303.0 "2x Bug (SE/NW)" -423.0 "Emergency Override" sync / 1[56]:[^:]*:Drive Cylinder:4EA:/ window 500,500 +423.0 "Emergency Override" Ability { id: "4EA", source: "Drive Cylinder" } window 500,500 427.0 "Emergency Override" 431.0 "Emergency Override" 435.0 "Emergency Override" diff --git a/ui/raidboss/data/02-arr/raid/t5.txt b/ui/raidboss/data/02-arr/raid/t5.txt index ba4d26a6fb..9222b6e39d 100644 --- a/ui/raidboss/data/02-arr/raid/t5.txt +++ b/ui/raidboss/data/02-arr/raid/t5.txt @@ -10,36 +10,36 @@ hideall "--sync--" ### Phase 1 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.5 "Plummet" sync / 1[56]:[^:]*:Twintania:4D8:/ window 10,5 -21.6 "Death Sentence" sync / 1[56]:[^:]*:Twintania:5B2:/ window 22,10 -25.7 "Plummet" sync / 1[56]:[^:]*:Twintania:4D8:/ -38.4 "Plummet" sync / 1[56]:[^:]*:Twintania:4D8:/ -51.8 "Plummet" sync / 1[56]:[^:]*:Twintania:4D8:/ -57.9 "Death Sentence" sync / 1[56]:[^:]*:Twintania:5B2:/ window 22,10 -65.3 "Plummet" sync / 1[56]:[^:]*:Twintania:4D8:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.5 "Plummet" Ability { id: "4D8", source: "Twintania" } window 10,5 +21.6 "Death Sentence" Ability { id: "5B2", source: "Twintania" } window 22,10 +25.7 "Plummet" Ability { id: "4D8", source: "Twintania" } +38.4 "Plummet" Ability { id: "4D8", source: "Twintania" } +51.8 "Plummet" Ability { id: "4D8", source: "Twintania" } +57.9 "Death Sentence" Ability { id: "5B2", source: "Twintania" } window 22,10 +65.3 "Plummet" Ability { id: "4D8", source: "Twintania" } # ??? ### Phase 2 -200.0 "--sync--" sync / 1[56]:[^:]*:Twintania:5AC:/ window 200,0 -205.0 "Fireball" sync / 1[56]:[^:]*:Twintania:4DE:/ -219.0 "Firestorm" sync / 1[56]:[^:]*:Twintania:5AB:/ -229.3 "Fireball" sync / 1[56]:[^:]*:Twintania:4DE:/ -254.9 "Fireball" sync / 1[56]:[^:]*:Twintania:4DE:/ -257.4 "Firestorm" sync / 1[56]:[^:]*:Twintania:5AB:/ -280.0 "Fireball" sync / 1[56]:[^:]*:Twintania:4DE:/ +200.0 "--sync--" Ability { id: "5AC", source: "Twintania" } window 200,0 +205.0 "Fireball" Ability { id: "4DE", source: "Twintania" } +219.0 "Firestorm" Ability { id: "5AB", source: "Twintania" } +229.3 "Fireball" Ability { id: "4DE", source: "Twintania" } +254.9 "Fireball" Ability { id: "4DE", source: "Twintania" } +257.4 "Firestorm" Ability { id: "5AB", source: "Twintania" } +280.0 "Fireball" Ability { id: "4DE", source: "Twintania" } # ??? ### Phase 3 -400.0 "Divebomb" sync / 1[56]:[^:]*:Twintania:5B0:/ window 400,0 -407.9 "Divebomb" sync / 1[56]:[^:]*:Twintania:5B0:/ -415.6 "Divebomb" sync / 1[56]:[^:]*:Twintania:5B0:/ +400.0 "Divebomb" Ability { id: "5B0", source: "Twintania" } window 400,0 +407.9 "Divebomb" Ability { id: "5B0", source: "Twintania" } +415.6 "Divebomb" Ability { id: "5B0", source: "Twintania" } 419.6 "1x Asclepius add" 419.6 "2x Hygieia adds" -465.3 "Divebomb" sync / 1[56]:[^:]*:Twintania:5B0:/ window 30,5 -473.0 "Divebomb" sync / 1[56]:[^:]*:Twintania:5B0:/ -480.9 "Divebomb" sync / 1[56]:[^:]*:Twintania:5B0:/ +465.3 "Divebomb" Ability { id: "5B0", source: "Twintania" } window 30,5 +473.0 "Divebomb" Ability { id: "5B0", source: "Twintania" } +480.9 "Divebomb" Ability { id: "5B0", source: "Twintania" } 484.9 "2x Hygieia adds" @@ -50,20 +50,20 @@ hideall "--sync--" # weird. Having twister timers seems nice though, even if it's not perfect. 546.0 "--targetable--" -600.0 "Aetheric Profusion" sync / 1[56]:[^:]*:Twintania:4E0:/ window 600,0 -616.0 "Unwoven Will" sync / 1[56]:[^:]*:Twintania:4E3:/ window 50,20 -637.8 "Twister" sync / 1[56]:[^:]*:Twintania:4E1:/ -656.2 "Unwoven Will" sync / 1[56]:[^:]*:Twintania:4E3:/ window 30,30 -664.6 "Twister" sync / 1[56]:[^:]*:Twintania:4E1:/ -685.8 "Twister" sync / 1[56]:[^:]*:Twintania:4E1:/ +600.0 "Aetheric Profusion" Ability { id: "4E0", source: "Twintania" } window 600,0 +616.0 "Unwoven Will" Ability { id: "4E3", source: "Twintania" } window 50,20 +637.8 "Twister" Ability { id: "4E1", source: "Twintania" } +656.2 "Unwoven Will" Ability { id: "4E3", source: "Twintania" } window 30,30 +664.6 "Twister" Ability { id: "4E1", source: "Twintania" } +685.8 "Twister" Ability { id: "4E1", source: "Twintania" } -696.0 "Unwoven Will" sync / 1[56]:[^:]*:Twintania:4E3:/ window 30,30 -711.0 "Twister" sync / 1[56]:[^:]*:Twintania:4E1:/ -736.2 "Unwoven Will" sync / 1[56]:[^:]*:Twintania:4E3:/ window 30,30 -744.6 "Twister" sync / 1[56]:[^:]*:Twintania:4E1:/ -765.8 "Twister" sync / 1[56]:[^:]*:Twintania:4E1:/ +696.0 "Unwoven Will" Ability { id: "4E3", source: "Twintania" } window 30,30 +711.0 "Twister" Ability { id: "4E1", source: "Twintania" } +736.2 "Unwoven Will" Ability { id: "4E3", source: "Twintania" } window 30,30 +744.6 "Twister" Ability { id: "4E1", source: "Twintania" } +765.8 "Twister" Ability { id: "4E1", source: "Twintania" } -776.0 "Unwoven Will" sync / 1[56]:[^:]*:Twintania:4E3:/ window 30,30 jump 696 +776.0 "Unwoven Will" Ability { id: "4E3", source: "Twintania" } window 30,30 jump 696 791.0 "Twister" 816.2 "Unwoven Will" 824.6 "Twister" @@ -71,10 +71,10 @@ hideall "--sync--" ### Phase 5 -900.0 "Hatch" sync / 1[56]:[^:]*:Twintania:5AD:/ window 900,0 -904.0 "Liquid Hell" sync / 1[56]:[^:]*:Twintania:5B1:/ duration 8 window 200,200 -912.5 "Hatch" sync / 1[56]:[^:]*:Twintania:5AD:/ -921.0 "Hatch" sync / 1[56]:[^:]*:Twintania:5AD:/ +900.0 "Hatch" Ability { id: "5AD", source: "Twintania" } window 900,0 +904.0 "Liquid Hell" Ability { id: "5B1", source: "Twintania" } duration 8 window 200,200 +912.5 "Hatch" Ability { id: "5AD", source: "Twintania" } +921.0 "Hatch" Ability { id: "5AD", source: "Twintania" } 922.0 "Liquid Hell" 930.5 "Hatch" 939.0 "Hatch" @@ -85,7 +85,7 @@ hideall "--sync--" ### Enrage # There's also plummets in here on a different timer. -1000 "Aetheric Profusion" sync / 1[56]:[^:]*:Twintania:4E0:/ window 399,100 +1000 "Aetheric Profusion" Ability { id: "4E0", source: "Twintania" } window 399,100 1006 "Aetheric Profusion" 1012 "Aetheric Profusion" 1018 "Aetheric Profusion" diff --git a/ui/raidboss/data/02-arr/raid/t6.txt b/ui/raidboss/data/02-arr/raid/t6.txt index a727a6dd21..6944e0aa48 100644 --- a/ui/raidboss/data/02-arr/raid/t6.txt +++ b/ui/raidboss/data/02-arr/raid/t6.txt @@ -10,28 +10,28 @@ hideall "--sync--" ### Phase 1 0.0 "Start" # Scar's Edge will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:51C:/ window 10,10 -7.5 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ window 8,8 -11.5 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -18.5 "Briary Growth" sync / 1[56]:[^:]*:Rafflesia:884:/ window 20,20 -20.6 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -28.6 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -35.3 "Floral Trap" sync / 1[56]:[^:]*:Rafflesia:799:/ -37.4 "Devour" sync / 1[56]:[^:]*:Rafflesia:79A:/ -42.5 "Spit" sync / 1[56]:[^:]*:Rafflesia:79B:/ -46.6 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -55.6 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -58.7 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -63.6 "Briary Growth" sync / 1[56]:[^:]*:Rafflesia:884:/ window 20,20 -70.8 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -73.7 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -80.5 "Floral Trap" sync / 1[56]:[^:]*:Rafflesia:799:/ -82.5 "Devour" sync / 1[56]:[^:]*:Rafflesia:79A:/ -87.6 "Spit" sync / 1[56]:[^:]*:Rafflesia:79B:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "51C" } window 10,10 +7.5 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } window 8,8 +11.5 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +18.5 "Briary Growth" Ability { id: "884", source: "Rafflesia" } window 20,20 +20.6 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +28.6 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +35.3 "Floral Trap" Ability { id: "799", source: "Rafflesia" } +37.4 "Devour" Ability { id: "79A", source: "Rafflesia" } +42.5 "Spit" Ability { id: "79B", source: "Rafflesia" } +46.6 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +55.6 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +58.7 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +63.6 "Briary Growth" Ability { id: "884", source: "Rafflesia" } window 20,20 +70.8 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +73.7 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +80.5 "Floral Trap" Ability { id: "799", source: "Rafflesia" } +82.5 "Devour" Ability { id: "79A", source: "Rafflesia" } +87.6 "Spit" Ability { id: "79B", source: "Rafflesia" } -96.9 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -100.9 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -107.9 "Briary Growth" sync / 1[56]:[^:]*:Rafflesia:884:/ window 20,20 jump 18.5 +96.9 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +100.9 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +107.9 "Briary Growth" Ability { id: "884", source: "Rafflesia" } window 20,20 jump 18.5 110.0 "Bloody Caress" 118.0 "Thorn Whip" 124.7 "Floral Trap" @@ -42,29 +42,29 @@ hideall "--sync--" ### Phase 2 # There is a Bloody Caress (often?) right at the start of this phase before blighted. # But it's hard to sync to it properly, sorry. -200.0 "--sync--" sync / 14:[^:]*:Rafflesia:79D:/ window 200,0 -204.0 "Blighted Bouquet" sync / 1[56]:[^:]*:Rafflesia:79D:/ -209.0 "Briary Growth" sync / 1[56]:[^:]*:Rafflesia:884:/ window 20,20 -214.1 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -219.0 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -225.8 "Floral Trap" sync / 1[56]:[^:]*:Rafflesia:799:/ -227.8 "Devour" sync / 1[56]:[^:]*:Rafflesia:79A:/ -232.8 "Spit" sync / 1[56]:[^:]*:Rafflesia:79B:/ -235.8 "Viscid Emission" sync / 1[56]:[^:]*:Rafflesia:79C:/ -240.9 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -244.9 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -254.0 "Blighted Bouquet" sync / 1[56]:[^:]*:Rafflesia:79D:/ -258.2 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -260.1 "Briary Growth" sync / 1[56]:[^:]*:Rafflesia:884:/ window 20,20 -269.2 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -275.5 "Floral Trap" sync / 1[56]:[^:]*:Rafflesia:799:/ -277.5 "Devour" sync / 1[56]:[^:]*:Rafflesia:79A:/ -282.5 "Spit" sync / 1[56]:[^:]*:Rafflesia:79B:/ -285.3 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ -294.2 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -297.5 "Bloody Caress" sync / 1[56]:[^:]*:Rafflesia:797:/ +200.0 "--sync--" StartsUsing { id: "79D", source: "Rafflesia" } window 200,0 +204.0 "Blighted Bouquet" Ability { id: "79D", source: "Rafflesia" } +209.0 "Briary Growth" Ability { id: "884", source: "Rafflesia" } window 20,20 +214.1 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +219.0 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +225.8 "Floral Trap" Ability { id: "799", source: "Rafflesia" } +227.8 "Devour" Ability { id: "79A", source: "Rafflesia" } +232.8 "Spit" Ability { id: "79B", source: "Rafflesia" } +235.8 "Viscid Emission" Ability { id: "79C", source: "Rafflesia" } +240.9 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +244.9 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +254.0 "Blighted Bouquet" Ability { id: "79D", source: "Rafflesia" } +258.2 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +260.1 "Briary Growth" Ability { id: "884", source: "Rafflesia" } window 20,20 +269.2 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +275.5 "Floral Trap" Ability { id: "799", source: "Rafflesia" } +277.5 "Devour" Ability { id: "79A", source: "Rafflesia" } +282.5 "Spit" Ability { id: "79B", source: "Rafflesia" } +285.3 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } +294.2 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +297.5 "Bloody Caress" Ability { id: "797", source: "Rafflesia" } -304.4 "Blighted Bouquet" sync / 1[56]:[^:]*:Rafflesia:79D:/ window 30,30 jump 204 +304.4 "Blighted Bouquet" Ability { id: "79D", source: "Rafflesia" } window 30,30 jump 204 309.4 "Briary Growth" 314.5 "Bloody Caress" 319.4 "Thorn Whip" @@ -76,32 +76,32 @@ hideall "--sync--" ### Phase 3 # This ignores dinky leafstorms that do like 200 damage. -400.0 "--sync--" sync / 14:[^:]*:Rafflesia:79E:/ window 400,0 -403.0 "Leafstorm" sync / 1[56]:[^:]*:Rafflesia:79E:/ -413.1 "Acid Rain" sync / 1[56]:[^:]*:Rafflesia:86C:/ -420.3 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -432.4 "Swarm" sync / 1[56]:[^:]*:Rafflesia:7A0:/ -445.5 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -450.3 "Rotten Stench" sync / 1[56]:[^:]*:Rafflesia:7A2:/ -465.5 "Swarm" sync / 1[56]:[^:]*:Rafflesia:7A0:/ -478.5 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -490.7 "Swarm" sync / 1[56]:[^:]*:Rafflesia:7A0:/ -495.6 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -500.1 "Rotten Stench" sync / 1[56]:[^:]*:Rafflesia:7A2:/ +400.0 "--sync--" StartsUsing { id: "79E", source: "Rafflesia" } window 400,0 +403.0 "Leafstorm" Ability { id: "79E", source: "Rafflesia" } +413.1 "Acid Rain" Ability { id: "86C", source: "Rafflesia" } +420.3 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +432.4 "Swarm" Ability { id: "7A0", source: "Rafflesia" } +445.5 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +450.3 "Rotten Stench" Ability { id: "7A2", source: "Rafflesia" } +465.5 "Swarm" Ability { id: "7A0", source: "Rafflesia" } +478.5 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +490.7 "Swarm" Ability { id: "7A0", source: "Rafflesia" } +495.6 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +500.1 "Rotten Stench" Ability { id: "7A2", source: "Rafflesia" } # looping leafstorm (the first one has swarm later) -523.2 "Leafstorm" sync / 1[56]:[^:]*:Rafflesia:79E:/ window 100,300 -528.4 "Swarm" sync / 1[56]:[^:]*:Rafflesia:7A0:/ -537.3 "Acid Rain" sync / 1[56]:[^:]*:Rafflesia:86C:/ -544.4 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -556.7 "Swarm" sync / 1[56]:[^:]*:Rafflesia:7A0:/ -569.6 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -574.4 "Rotten Stench" sync / 1[56]:[^:]*:Rafflesia:7A2:/ -589.7 "Swarm" sync / 1[56]:[^:]*:Rafflesia:7A0:/ -602.7 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -614.8 "Swarm" sync / 1[56]:[^:]*:Rafflesia:7A0:/ -619.7 "Thorn Whip" sync / 1[56]:[^:]*:Rafflesia:879:/ -624.5 "Rotten Stench" sync / 1[56]:[^:]*:Rafflesia:7A2:/ +523.2 "Leafstorm" Ability { id: "79E", source: "Rafflesia" } window 100,300 +528.4 "Swarm" Ability { id: "7A0", source: "Rafflesia" } +537.3 "Acid Rain" Ability { id: "86C", source: "Rafflesia" } +544.4 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +556.7 "Swarm" Ability { id: "7A0", source: "Rafflesia" } +569.6 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +574.4 "Rotten Stench" Ability { id: "7A2", source: "Rafflesia" } +589.7 "Swarm" Ability { id: "7A0", source: "Rafflesia" } +602.7 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +614.8 "Swarm" Ability { id: "7A0", source: "Rafflesia" } +619.7 "Thorn Whip" Ability { id: "879", source: "Rafflesia" } +624.5 "Rotten Stench" Ability { id: "7A2", source: "Rafflesia" } 647.6 "Leafstorm" 652.8 "Swarm" @@ -120,8 +120,8 @@ hideall "--sync--" # This does like 60k damage so probably will kill you # if you are so slow to see it, but just for completeness # it repeats every five seconds. -1000.0 "--sync--" sync / 14:[^:]*:Rafflesia:87A:/ window 1000,1000 -1003.0 "Leafstorm" sync / 1[56]:[^:]*:Rafflesia:87A:/ +1000.0 "--sync--" StartsUsing { id: "87A", source: "Rafflesia" } window 1000,1000 +1003.0 "Leafstorm" Ability { id: "87A", source: "Rafflesia" } 1008.0 "Leafstorm" 1013.0 "Leafstorm" 1018.0 "Leafstorm" diff --git a/ui/raidboss/data/02-arr/raid/t7.txt b/ui/raidboss/data/02-arr/raid/t7.txt index c546197c82..f0424c4dd6 100644 --- a/ui/raidboss/data/02-arr/raid/t7.txt +++ b/ui/raidboss/data/02-arr/raid/t7.txt @@ -10,269 +10,269 @@ hideall "--sync--" ### Phase 1 (100%) # Bioweapon Storage will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:51E:/ window 10,10 -6.4 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ window 7,0 -12.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -14.3 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -24.8 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -26.5 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -30.3 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -36.4 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -42.5 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -48.8 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -50.5 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -60.4 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -61.5 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -66.3 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -72.7 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -77.5 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -82.3 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -86.6 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -93.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -97.1 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -99.1 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -110.7 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -111.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -114.8 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -121.2 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -127.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -130.8 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -135.1 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -145.3 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -147.3 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -148.4 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -159.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -163.1 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -164.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -169.1 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -179.1 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -180.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -184.5 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -193.3 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -195.2 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -196.6 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "51E" } window 10,10 +6.4 "Tail Slap" Ability { id: "7A8", source: "Melusine" } window 7,0 +12.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +14.3 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +24.8 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +26.5 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +30.3 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +36.4 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +42.5 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +48.8 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +50.5 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +60.4 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +61.5 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +66.3 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +72.7 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +77.5 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +82.3 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +86.6 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +93.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +97.1 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +99.1 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +110.7 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +111.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +114.8 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +121.2 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +127.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +130.8 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +135.1 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +145.3 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +147.3 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +148.4 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +159.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +163.1 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +164.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +169.1 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +179.1 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +180.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +184.5 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +193.3 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +195.2 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +196.6 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } ### Phase 2 (80%): shriek, 3 adds 30 seconds apart # Note: This used to be synced from a HP% log line that is no longer present. -306.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ window 10,10 -345.6 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ window 155,10 -314.6 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -319.0 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ window 319,30 duration 11 -322.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -328.2 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ +306.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } window 10,10 +345.6 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } window 155,10 +314.6 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +319.0 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } window 319,30 duration 11 +322.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +328.2 "Circle Blade" Ability { id: "7AB", source: "Melusine" } 330.0 "Deathdancer Add (NE)" -330.7 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -336.6 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -338.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -346.7 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +330.7 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +336.6 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +338.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +346.7 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -354.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ +354.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } 360.0 "Deathdancer Add (NW)" -360.8 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -362.6 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -366.8 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ duration 11 -370.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -374.5 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -378.8 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -384.8 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -386.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -394.7 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +360.8 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +362.6 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +366.8 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } duration 11 +370.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +374.5 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +378.8 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +384.8 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +386.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +394.7 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -402.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -408.8 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -410.8 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -415.0 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ duration 11 -420.3 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -422.1 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -426.8 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -432.8 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -438.0 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -442.8 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +402.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +408.8 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +410.8 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +415.0 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } duration 11 +420.3 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +422.1 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +426.8 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +432.8 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +438.0 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +442.8 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -454.2 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -457.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -459.0 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -463.2 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ duration 11 -466.9 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -470.2 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -475.0 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -481.4 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -486.2 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -491.1 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +454.2 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +457.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +459.0 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +463.2 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } duration 11 +466.9 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +470.2 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +475.0 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +481.4 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +486.2 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +491.1 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -502.2 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -505.5 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -507.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -511.4 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ duration 11 -515.1 "Circle Blade" sync / 1[56]:[^:]*:Melusine:7AB:/ -518.3 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -523.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -529.5 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -534.4 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -539.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +502.2 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +505.5 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +507.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +511.4 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } duration 11 +515.1 "Circle Blade" Ability { id: "7AB", source: "Melusine" } +518.3 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +523.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +529.5 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +534.4 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +539.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } ### Phase 3 (59%): 4 archer adds, exploding floor # Note: This used to be synced from a HP% log line that is no longer present. -812.0 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ window 12,10 -814.0 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +812.0 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } window 12,10 +814.0 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -820.1 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ window 820,20 -822.1 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -830.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -836.1 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -840.2 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -843.3 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -846.3 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +820.1 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } window 820,20 +822.1 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +830.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +836.1 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +840.2 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +843.3 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +846.3 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -852.2 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -854.3 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -860.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -862.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -870.3 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -878.4 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -884.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ +852.2 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +854.3 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +860.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +862.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +870.3 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +878.4 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +884.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } -885.4 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -886.5 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -890.5 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -894.4 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -902.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -908.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -910.5 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +885.4 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +886.5 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +890.5 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +894.4 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +902.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +908.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +910.5 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -917.5 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -918.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -926.6 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -932.5 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -934.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -937.8 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -942.7 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +917.5 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +918.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +926.6 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +932.5 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +934.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +937.8 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +942.7 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -949.4 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -950.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -956.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -958.4 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -966.4 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -974.4 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -980.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ +949.4 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +950.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +956.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +958.4 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +966.4 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +974.4 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +980.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } -981.5 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -982.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -985.7 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -990.4 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -998.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1004.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1006.4 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ +981.5 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +982.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +985.7 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +990.4 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +998.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1004.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1006.4 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } -1013.3 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1014.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1022.5 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -1028.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1030.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1033.8 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -1038.5 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ +1013.3 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1014.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1022.5 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +1028.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1030.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1033.8 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +1038.5 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } -1045.4 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1046.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1052.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1054.5 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -1062.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1070.5 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -1076.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ +1045.4 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1046.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1052.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1054.5 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +1062.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1070.5 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +1076.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } -1077.4 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1078.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1081.8 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -1086.7 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -1094.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1100.4 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1102.6 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ +1077.4 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1078.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1081.8 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +1086.7 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +1094.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1100.4 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1102.6 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } -1109.5 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1110.9 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1118.6 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -1124.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1126.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1129.8 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -1134.6 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ +1109.5 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1110.9 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1118.6 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +1124.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1126.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1129.8 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +1134.6 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } -1141.4 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1142.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1148.4 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1150.6 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -1158.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1166.6 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -1172.3 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ +1141.4 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1142.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1148.4 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1150.6 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +1158.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1166.6 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +1172.3 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } -1173.4 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1174.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1177.8 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -1182.6 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ -1190.9 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1196.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1198.6 "Circle Of Flames x2" #sync sync / 1[56]:[^:]*:Melusine:7AA:/ +1173.4 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1174.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1177.8 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +1182.6 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } +1190.9 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1196.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1198.6 "Circle Of Flames x2" #sync Ability { id: "7AA", source: "Melusine" } ### Phase 5 (post-prosecutor): venomous tail -1600.0 "Sacrifice" sync / 1[56]:[^:]*:Lamia Prosector:86E:/ window 1600,0 -1601.0 "Frenzy" sync / 1[56]:[^:]*:Melusine:86D:/ +1600.0 "Sacrifice" Ability { id: "86E", source: "Lamia Prosector" } window 1600,0 +1601.0 "Frenzy" Ability { id: "86D", source: "Melusine" } -1608.1 "Petrifaction" sync / 1[56]:[^:]*:Melusine:7B1:/ window 1610,5 -1611.3 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1617.9 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1624.0 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1627.1 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1630.1 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -1634.1 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1638.9 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1643.0 "Venomous Tail" sync / 1[56]:[^:]*:Melusine:7B2:/ -1644.1 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1647.9 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1650.1 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +1608.1 "Petrifaction" Ability { id: "7B1", source: "Melusine" } window 1610,5 +1611.3 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1617.9 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1624.0 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1627.1 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1630.1 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +1634.1 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1638.9 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1643.0 "Venomous Tail" Ability { id: "7B2", source: "Melusine" } +1644.1 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1647.9 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1650.1 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -1655.3 "Petrifaction" sync / 1[56]:[^:]*:Melusine:7B1:/ -1660.2 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1666.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1672.1 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1673.3 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1677.2 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -1678.5 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1682.2 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1690.2 "Venomous Tail" sync / 1[56]:[^:]*:Melusine:7B2:/ -1696.1 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1697.4 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1698.4 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +1655.3 "Petrifaction" Ability { id: "7B1", source: "Melusine" } +1660.2 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1666.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1672.1 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1673.3 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1677.2 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +1678.5 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1682.2 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1690.2 "Venomous Tail" Ability { id: "7B2", source: "Melusine" } +1696.1 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1697.4 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1698.4 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -1703.5 "Petrifaction" sync / 1[56]:[^:]*:Melusine:7B1:/ -1705.3 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1713.3 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1714.4 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1720.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1724.1 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -1729.2 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1730.5 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1737.2 "Venomous Tail" sync / 1[56]:[^:]*:Melusine:7B2:/ -1740.4 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1744.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1746.8 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1747.9 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +1703.5 "Petrifaction" Ability { id: "7B1", source: "Melusine" } +1705.3 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1713.3 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1714.4 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1720.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1724.1 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +1729.2 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1730.5 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1737.2 "Venomous Tail" Ability { id: "7B2", source: "Melusine" } +1740.4 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1744.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1746.8 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1747.9 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -1752.9 "Petrifaction" sync / 1[56]:[^:]*:Melusine:7B1:/ -1761.4 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1763.8 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1768.4 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1771.5 "Cursed Shriek" sync / 1[56]:[^:]*:Melusine:7AF:/ -1772.8 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1777.6 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1780.0 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1785.2 "Venomous Tail" sync / 1[56]:[^:]*:Melusine:7B2:/ -1792.4 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ -1795.9 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1796.9 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ +1752.9 "Petrifaction" Ability { id: "7B1", source: "Melusine" } +1761.4 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1763.8 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1768.4 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1771.5 "Cursed Shriek" Ability { id: "7AF", source: "Melusine" } +1772.8 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1777.6 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1780.0 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1785.2 "Venomous Tail" Ability { id: "7B2", source: "Melusine" } +1792.4 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } +1795.9 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1796.9 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } -1802.1 "Petrifaction" sync / 1[56]:[^:]*:Melusine:7B1:/ -1804.9 "Red Lotus Blade" sync / 1[56]:[^:]*:Melusine:7A9:/ -1809.7 "Tail Slap" sync / 1[56]:[^:]*:Melusine:7A8:/ -1813.0 "Circle Of Flames x2" #sync / 1[56]:[^:]*:Melusine:7AA:/ -1817.2 "Cursed Voice" sync / 1[56]:[^:]*:Melusine:7AC:/ +1802.1 "Petrifaction" Ability { id: "7B1", source: "Melusine" } +1804.9 "Red Lotus Blade" Ability { id: "7A9", source: "Melusine" } +1809.7 "Tail Slap" Ability { id: "7A8", source: "Melusine" } +1813.0 "Circle Of Flames x2" #Ability { id: "7AA", source: "Melusine" } +1817.2 "Cursed Voice" Ability { id: "7AC", source: "Melusine" } diff --git a/ui/raidboss/data/02-arr/raid/t8.txt b/ui/raidboss/data/02-arr/raid/t8.txt index 2523f484c4..8d1c8e89b0 100644 --- a/ui/raidboss/data/02-arr/raid/t8.txt +++ b/ui/raidboss/data/02-arr/raid/t8.txt @@ -13,63 +13,63 @@ hideall "--sync--" ### Phase 1: introduction to towers 0.0 "Start" # Central Bow will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:532:/ window 10,10 -6.1 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ window 7,10 -26.0 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -27.2 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -34.9 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -42.2 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -57.3 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -65.9 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -75.0 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -76.2 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -91.2 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -106.0 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -107.2 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -115.0 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -122.2 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -137.2 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -146.0 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -155.0 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -156.2 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "532" } window 10,10 +6.1 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } window 7,10 +26.0 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +27.2 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +34.9 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +42.2 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +57.3 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +65.9 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +75.0 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +76.2 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +91.2 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +106.0 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +107.2 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +115.0 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +122.2 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +137.2 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +146.0 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +155.0 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +156.2 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } ### Phase 2 (75%): brainjack + ballistic missile # Inertia Stream hits twice 1 second apart. # Only sync backwards for this first of three. -162.6 "Inertia Stream" sync / 1[56]:[^:]*:The Avatar:7C9:/ window 170,0 -168.9 "Ballistic Missile" sync / 1[56]:[^:]*:The Avatar:7CA:/ -176.6 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -184.5 "Brainjack" sync / 1[56]:[^:]*:The Avatar:7C3:/ duration 11 -191.6 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -199.5 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -206.6 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -215.5 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -224.6 "Brainjack" sync / 1[56]:[^:]*:The Avatar:7C3:/ duration 11 -225.8 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -239.6 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -240.9 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ +162.6 "Inertia Stream" Ability { id: "7C9", source: "The Avatar" } window 170,0 +168.9 "Ballistic Missile" Ability { id: "7CA", source: "The Avatar" } +176.6 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +184.5 "Brainjack" Ability { id: "7C3", source: "The Avatar" } duration 11 +191.6 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +199.5 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +206.6 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +215.5 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +224.6 "Brainjack" Ability { id: "7C3", source: "The Avatar" } duration 11 +225.8 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +239.6 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +240.9 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } 242.0 "Inertia Stream" -248.3 "Ballistic Missile" sync / 1[56]:[^:]*:The Avatar:7CA:/ -255.6 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -256.8 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -264.7 "Brainjack" sync / 1[56]:[^:]*:The Avatar:7C3:/ duration 11 -271.7 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -279.6 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -286.8 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -295.7 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -304.8 "Brainjack" sync / 1[56]:[^:]*:The Avatar:7C3:/ duration 11 -306.0 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -319.7 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -321.0 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ +248.3 "Ballistic Missile" Ability { id: "7CA", source: "The Avatar" } +255.6 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +256.8 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +264.7 "Brainjack" Ability { id: "7C3", source: "The Avatar" } duration 11 +271.7 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +279.6 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +286.8 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +295.7 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +304.8 "Brainjack" Ability { id: "7C3", source: "The Avatar" } duration 11 +306.0 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +319.7 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +321.0 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } 322.2 "Inertia Stream" -328.4 "Ballistic Missile" sync / 1[56]:[^:]*:The Avatar:7CA:/ -335.8 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -337.0 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -344.9 "Brainjack" sync / 1[56]:[^:]*:The Avatar:7C3:/ duration 11 -352.0 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -359.8 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -367.1 "Diffusion Ray" sync / 1[56]:[^:]*:The Avatar:7C2:/ -375.9 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ +328.4 "Ballistic Missile" Ability { id: "7CA", source: "The Avatar" } +335.8 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +337.0 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +344.9 "Brainjack" Ability { id: "7C3", source: "The Avatar" } duration 11 +352.0 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +359.8 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +367.1 "Diffusion Ray" Ability { id: "7C2", source: "The Avatar" } +375.9 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } ### Phase 3 (45%): allagan field # NOTE: there seems to be two different last phase timings @@ -80,38 +80,38 @@ hideall "--sync--" # can instead be the 380/460 pattern, with a different diffusion ray. # The field/missile/bomb/surge timings are all roughly the same, so this # just removes the ray syncs and hopes for the best. -377.0 "--sync--" sync / 14:[^:]*:The Avatar:7C4:/ window 400,0 -380.0 "Allagan Field" sync / 1[56]:[^:]*:The Avatar:7C4:/ duration 31 window 400,10 -386.3 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -387.6 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ -394.2 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -402.5 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ -410.9 "Critical Surge" sync / 1[56]:[^:]*:Allagan Field:7C5:/ +377.0 "--sync--" StartsUsing { id: "7C4", source: "The Avatar" } window 400,0 +380.0 "Allagan Field" Ability { id: "7C4", source: "The Avatar" } duration 31 window 400,10 +386.3 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +387.6 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } +394.2 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +402.5 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } +410.9 "Critical Surge" Ability { id: "7C5", source: "Allagan Field" } -420.0 "Allagan Field" sync / 1[56]:[^:]*:The Avatar:7C4:/ duration 31 -421.2 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ -427.2 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -434.2 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -436.2 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ -450.8 "Critical Surge" sync / 1[56]:[^:]*:Allagan Field:7C5:/ -451.2 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ +420.0 "Allagan Field" Ability { id: "7C4", source: "The Avatar" } duration 31 +421.2 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } +427.2 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +434.2 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +436.2 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } +450.8 "Critical Surge" Ability { id: "7C5", source: "Allagan Field" } +451.2 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } -460.1 "Allagan Field" sync / 1[56]:[^:]*:The Avatar:7C4:/ duration 31 -467.3 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -468.5 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ -474.3 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -483.6 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ -490.9 "Critical Surge" sync / 1[56]:[^:]*:Allagan Field:7C5:/ +460.1 "Allagan Field" Ability { id: "7C4", source: "The Avatar" } duration 31 +467.3 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +468.5 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } +474.3 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +483.6 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } +490.9 "Critical Surge" Ability { id: "7C5", source: "Allagan Field" } -500.0 "Allagan Field" sync / 1[56]:[^:]*:The Avatar:7C4:/ duration 31 -501.2 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ -507.3 "Homing Missile" sync / 1[56]:[^:]*:The Avatar:7C7:/ -514.3 "Gaseous Bomb" sync / 1[56]:[^:]*:The Avatar:7C6:/ -516.2 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ -530.9 "Critical Surge" sync / 1[56]:[^:]*:Allagan Field:7C5:/ -531.2 "Diffusion Ray" #sync / 1[56]:[^:]*:The Avatar:7C2:/ +500.0 "Allagan Field" Ability { id: "7C4", source: "The Avatar" } duration 31 +501.2 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } +507.3 "Homing Missile" Ability { id: "7C7", source: "The Avatar" } +514.3 "Gaseous Bomb" Ability { id: "7C6", source: "The Avatar" } +516.2 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } +530.9 "Critical Surge" Ability { id: "7C5", source: "Allagan Field" } +531.2 "Diffusion Ray" #Ability { id: "7C2", source: "The Avatar" } -540.1 "Allagan Field" sync / 1[56]:[^:]*:The Avatar:7C4:/ duration 31 jump 460.1 +540.1 "Allagan Field" Ability { id: "7C4", source: "The Avatar" } duration 31 jump 460.1 547.3 "Homing Missile" 548.5 "Diffusion Ray" 554.3 "Gaseous Bomb" @@ -120,7 +120,7 @@ hideall "--sync--" ### Phase 4: Enrage -800.0 "Atomic Ray" sync / 1[56]:[^:]*:The Avatar:7C8:/ window 800,800 +800.0 "Atomic Ray" Ability { id: "7C8", source: "The Avatar" } window 800,800 805.1 "Atomic Ray" 810.2 "Atomic Ray" 815.3 "Atomic Ray" diff --git a/ui/raidboss/data/02-arr/raid/t9.txt b/ui/raidboss/data/02-arr/raid/t9.txt index 8664e496cc..8457e2e4fa 100644 --- a/ui/raidboss/data/02-arr/raid/t9.txt +++ b/ui/raidboss/data/02-arr/raid/t9.txt @@ -7,159 +7,159 @@ hideall "--sync--" ### Phase 1 # This phase really doesn't seem to loop anywhere. 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -5.5 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ window 6,5 -16.6 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +5.5 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } window 6,5 +16.6 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } -21.8 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -30.8 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -30.9 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:7D6:/ duration 13 -36.2 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -40.8 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:7D8:/ -42.6 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:7DF:/ -43.6 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -44.0 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:7D7:/ -48.3 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ +21.8 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +30.8 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +30.9 "Ravensbeak" Ability { id: "7D6", source: "Nael deus Darnus" } duration 13 +36.2 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +40.8 "Iron Chariot" Ability { id: "7D8", source: "Nael deus Darnus" } +42.6 "Thermionic Beam" Ability { id: "7DF", source: "Nael deus Darnus" } +43.6 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +44.0 "--sync--" Ability { id: "7D7", source: "Nael deus Darnus" } +48.3 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } -58.6 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -63.4 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ -67.6 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -69.4 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:7DA:/ -71.8 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -74.9 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ -83.7 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:7D6:/ duration 13 -89.5 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ +58.6 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +63.4 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } +67.6 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +69.4 "Lunar Dynamo" Ability { id: "7DA", source: "Nael deus Darnus" } +71.8 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +74.9 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } +83.7 "Ravensbeak" Ability { id: "7D6", source: "Nael deus Darnus" } duration 13 +89.5 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } -95.0 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -96.6 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:7D7:/ -104.0 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -107.2 "Meteor Stream" #sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -112.3 "Meteor Stream" #sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -115.4 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ -119.7 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ -130.2 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:7D6:/ duration 13 +95.0 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +96.6 "--sync--" Ability { id: "7D7", source: "Nael deus Darnus" } +104.0 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +107.2 "Meteor Stream" #Ability { id: "7DE", source: "Nael Geminus" } +112.3 "Meteor Stream" #Ability { id: "7DE", source: "Nael Geminus" } +115.4 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } +119.7 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } +130.2 "Ravensbeak" Ability { id: "7D6", source: "Nael deus Darnus" } duration 13 -135.5 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -140.0 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ -143.2 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:7D7:/ -144.6 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -146.1 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -150.7 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:7D8:/ -152.6 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:7DF:/ -153.6 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -162.6 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ +135.5 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +140.0 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } +143.2 "--sync--" Ability { id: "7D7", source: "Nael deus Darnus" } +144.6 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +146.1 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +150.7 "Iron Chariot" Ability { id: "7D8", source: "Nael deus Darnus" } +152.6 "Thermionic Beam" Ability { id: "7DF", source: "Nael deus Darnus" } +153.6 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +162.6 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } -168.6 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -177.4 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:7D6:/ duration 13 -177.7 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -183.9 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:7DA:/ -186.2 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -189.3 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ -190.4 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:7D7:/ -192.9 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ +168.6 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +177.4 "Ravensbeak" Ability { id: "7D6", source: "Nael deus Darnus" } duration 13 +177.7 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +183.9 "Lunar Dynamo" Ability { id: "7DA", source: "Nael deus Darnus" } +186.2 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +189.3 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } +190.4 "--sync--" Ability { id: "7D7", source: "Nael deus Darnus" } +192.9 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } -203.9 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -208.0 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ -213.0 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -217.5 "Meteor Stream" #sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -222.6 "Meteor Stream" #sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -225.8 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ -234.2 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:7D6:/ duration 13 -239.6 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ +203.9 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +208.0 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } +213.0 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +217.5 "Meteor Stream" #Ability { id: "7DE", source: "Nael Geminus" } +222.6 "Meteor Stream" #Ability { id: "7DE", source: "Nael Geminus" } +225.8 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } +234.2 "Ravensbeak" Ability { id: "7D6", source: "Nael deus Darnus" } duration 13 +239.6 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } -245.8 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -254.8 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -255.5 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -260.1 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:7D8:/ -262.1 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:7DF:/ -263.1 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -266.4 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ -277.3 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:7D6:/ duration 13 +245.8 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +254.8 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +255.5 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +260.1 "Iron Chariot" Ability { id: "7D8", source: "Nael deus Darnus" } +262.1 "Thermionic Beam" Ability { id: "7DF", source: "Nael deus Darnus" } +263.1 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +266.4 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } +277.3 "Ravensbeak" Ability { id: "7D6", source: "Nael deus Darnus" } duration 13 -283.0 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -286.8 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ -292.0 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -294.3 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:7DA:/ -296.7 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -299.9 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ -307.9 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ +283.0 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +286.8 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } +292.0 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +294.3 "Lunar Dynamo" Ability { id: "7DA", source: "Nael deus Darnus" } +296.7 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +299.9 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } +307.9 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } -314.3 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -322.8 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:7D6:/ -323.3 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -332.0 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -335.9 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:7D7:/ -337.0 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -340.2 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ -343.2 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ +314.3 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +322.8 "Ravensbeak" Ability { id: "7D6", source: "Nael deus Darnus" } +323.3 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +332.0 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +335.9 "--sync--" Ability { id: "7D7", source: "Nael deus Darnus" } +337.0 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +340.2 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } +343.2 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } -355.0 "Stardust" sync / 1[56]:[^:]*:Nael deus Darnus:877:/ duration 9 -358.5 "Ravensclaw" sync / 1[56]:[^:]*:Nael deus Darnus:7D5:/ -364.0 "--sync--" sync / 1[56]:[^:]*:(Astral Debris|Umbral Debris):7E9:/ -366.0 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -370.5 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:7D8:/ -372.7 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:7DF:/ -373.7 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ +355.0 "Stardust" Ability { id: "877", source: "Nael deus Darnus" } duration 9 +358.5 "Ravensclaw" Ability { id: "7D5", source: "Nael deus Darnus" } +364.0 "--sync--" Ability { id: "7E9", source: ["Astral Debris", "Umbral Debris"] } +366.0 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +370.5 "Iron Chariot" Ability { id: "7D8", source: "Nael deus Darnus" } +372.7 "Thermionic Beam" Ability { id: "7DF", source: "Nael deus Darnus" } +373.7 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } # Meteors just start exploding here no matter how far away you put them. ### Phase 2: Golem Adds 500.0 "--untargetable--" -503.3 "Golem Meteors" sync / 1B:........:[^:]*:....:....:0007:/ duration 11 window 505,0 -514.3 "--sync--" sync / 1[56]:[^:]*:Dalamud Fragment:7EB:/ -582.3 "Meteor 1/6" duration 7 sync / 1B:........:[^:]*:....:....:000[9A]:/ window 83,0 +503.3 "Golem Meteors" HeadMarker { id: "0007" } duration 11 window 505,0 +514.3 "--sync--" Ability { id: "7EB", source: "Dalamud Fragment" } +582.3 "Meteor 1/6" duration 7 HeadMarker { id: "000[9A]" } window 83,0 584.3 "Meteor 2/6" duration 7 586.3 "Meteor 3/6" duration 7 588.3 "Meteor 4/6" duration 7 590.5 "Meteor 5/6" duration 7 592.5 "Meteor 6/6" duration 7 -598.3 "Golem Meteors" sync / 1B:........:[^:]*:....:....:0007:/ duration 11 window 80,80 -609.3 "--sync--" sync / 1[56]:[^:]*:Dalamud Fragment:7EB:/ -683.5 "Megaflare" sync / 1[56]:[^:]*:Nael deus Darnus:7E7:/ window 700,700 +598.3 "Golem Meteors" HeadMarker { id: "0007" } duration 11 window 80,80 +609.3 "--sync--" Ability { id: "7EB", source: "Dalamud Fragment" } +683.5 "Megaflare" Ability { id: "7E7", source: "Nael deus Darnus" } window 700,700 ### Phase 3: Heavensfall # Phase 3 is on a 54 second nael rotation and a 60 second dragon rotation. # This unrolls the loop for the first few dragons. -693.6 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ window 300,300 +693.6 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } window 300,300 695.6 "--targetable--" -699.2 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:83B:/ -701.9 "Heavensfall" sync / 1[56]:[^:]*:Ragnarok:7E4:/ window 702,10 -714.3 "Bahamut's Claw x2" #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ +699.2 "--sync--" Ability { id: "83B", source: "Nael deus Darnus" } +701.9 "Heavensfall" Ability { id: "7E4", source: "Ragnarok" } window 702,10 +714.3 "Bahamut's Claw x2" #Ability { id: "871", source: "Nael deus Darnus" } 716.0 "Ghost Add 1 (North)" -721.8 "Binding Coil" sync / 1[56]:[^:]*:Nael deus Darnus:7E2:/ -737.0 "Bahamut's Claw x2" #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -744.4 "Binding Coil" sync / 1[56]:[^:]*:Nael deus Darnus:7E2:/ +721.8 "Binding Coil" Ability { id: "7E2", source: "Nael deus Darnus" } +737.0 "Bahamut's Claw x2" #Ability { id: "871", source: "Nael deus Darnus" } +744.4 "Binding Coil" Ability { id: "7E2", source: "Nael deus Darnus" } -749.5 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:83B:/ -752.2 "Heavensfall" sync / 1[56]:[^:]*:Ragnarok:7E4:/ window 40,40 -755.9 "Super Nova x2" duration 2.3 #sync / 1[56]:[^:]*:Nael deus Darnus:7E0:/ -768.7 "Bahamut's Claw x2" #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -775.9 "Binding Coil" sync / 1[56]:[^:]*:Nael deus Darnus:7E2:/ +749.5 "--sync--" Ability { id: "83B", source: "Nael deus Darnus" } +752.2 "Heavensfall" Ability { id: "7E4", source: "Ragnarok" } window 40,40 +755.9 "Super Nova x2" duration 2.3 #Ability { id: "7E0", source: "Nael deus Darnus" } +768.7 "Bahamut's Claw x2" #Ability { id: "871", source: "Nael deus Darnus" } +775.9 "Binding Coil" Ability { id: "7E2", source: "Nael deus Darnus" } 776.0 "Ghost Add 2 (East)" -791.3 "Bahamut's Claw x2" #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -798.5 "Binding Coil" sync / 1[56]:[^:]*:Nael deus Darnus:7E2:/ +791.3 "Bahamut's Claw x2" #Ability { id: "871", source: "Nael deus Darnus" } +798.5 "Binding Coil" Ability { id: "7E2", source: "Nael deus Darnus" } -803.5 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:83B:/ -806.2 "Heavensfall" sync / 1[56]:[^:]*:Ragnarok:7E4:/ window 40,40 -809.9 "Super Nova x2" duration 2.3 #sync / 1[56]:[^:]*:Nael deus Darnus:7E0:/ -822.7 "Bahamut's Claw x2" #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -829.9 "Binding Coil" sync / 1[56]:[^:]*:Nael deus Darnus:7E2:/ +803.5 "--sync--" Ability { id: "83B", source: "Nael deus Darnus" } +806.2 "Heavensfall" Ability { id: "7E4", source: "Ragnarok" } window 40,40 +809.9 "Super Nova x2" duration 2.3 #Ability { id: "7E0", source: "Nael deus Darnus" } +822.7 "Bahamut's Claw x2" #Ability { id: "871", source: "Nael deus Darnus" } +829.9 "Binding Coil" Ability { id: "7E2", source: "Nael deus Darnus" } 836.0 "Ghost Add 3 (South)" -845.3 "Bahamut's Claw x2" #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -852.5 "Binding Coil" sync / 1[56]:[^:]*:Nael deus Darnus:7E2:/ +845.3 "Bahamut's Claw x2" #Ability { id: "871", source: "Nael deus Darnus" } +852.5 "Binding Coil" Ability { id: "7E2", source: "Nael deus Darnus" } -857.5 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:83B:/ -860.2 "Heavensfall" sync / 1[56]:[^:]*:Ragnarok:7E4:/ window 40,40 -863.9 "Super Nova x2" duration 2.3 #sync / 1[56]:[^:]*:Nael deus Darnus:7E0:/ -876.7 "Bahamut's Claw x2" #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -883.9 "Binding Coil" sync / 1[56]:[^:]*:Nael deus Darnus:7E2:/ -899.3 "Bahamut's Claw x2" #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -906.5 "Binding Coil" sync / 1[56]:[^:]*:Nael deus Darnus:7E2:/ +857.5 "--sync--" Ability { id: "83B", source: "Nael deus Darnus" } +860.2 "Heavensfall" Ability { id: "7E4", source: "Ragnarok" } window 40,40 +863.9 "Super Nova x2" duration 2.3 #Ability { id: "7E0", source: "Nael deus Darnus" } +876.7 "Bahamut's Claw x2" #Ability { id: "871", source: "Nael deus Darnus" } +883.9 "Binding Coil" Ability { id: "7E2", source: "Nael deus Darnus" } +899.3 "Bahamut's Claw x2" #Ability { id: "871", source: "Nael deus Darnus" } +906.5 "Binding Coil" Ability { id: "7E2", source: "Nael deus Darnus" } -911.5 "--sync--" sync / 1[56]:[^:]*:Nael deus Darnus:83B:/ window 40,40 jump 857.5 +911.5 "--sync--" Ability { id: "83B", source: "Nael deus Darnus" } window 40,40 jump 857.5 914.2 "Heavensfall" 917.9 "Super Nova x2" 930.7 "Bahamut's Claw x2" @@ -169,79 +169,79 @@ hideall "--sync--" ### Phase 4: Divebombs and Dances -1000.0 "Bahamut's Favor" sync / 1[56]:[^:]*:Nael deus Darnus:7E6:/ window 1000,80 -1003.1 "Bahamut's Claw x5" duration 2.9 #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -1013.9 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1014.4 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -1014.9 "Fireball (Out)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1019.0 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:7DA:/ -1025.9 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1026.9 "Fireball (In)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1038.0 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1039.0 "Fireball (Out)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1040.2 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:7D8:/ -1041.9 "Super Nova x3" duration 3 #sync / 1[56]:[^:]*:Nael deus Darnus:7E0:/ -1047.4 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:7DF:/ -1050.0 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1051.2 "Fireball (In)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1054.2 "Bahamut's Claw x5" duration 2.9 #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ +1000.0 "Bahamut's Favor" Ability { id: "7E6", source: "Nael deus Darnus" } window 1000,80 +1003.1 "Bahamut's Claw x5" duration 2.9 #Ability { id: "871", source: "Nael deus Darnus" } +1013.9 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1014.4 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +1014.9 "Fireball (Out)" Ability { id: "7FB", source: "Firehorn" } +1019.0 "Lunar Dynamo" Ability { id: "7DA", source: "Nael deus Darnus" } +1025.9 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1026.9 "Fireball (In)" Ability { id: "7FB", source: "Firehorn" } +1038.0 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1039.0 "Fireball (Out)" Ability { id: "7FB", source: "Firehorn" } +1040.2 "Iron Chariot" Ability { id: "7D8", source: "Nael deus Darnus" } +1041.9 "Super Nova x3" duration 3 #Ability { id: "7E0", source: "Nael deus Darnus" } +1047.4 "Thermionic Beam" Ability { id: "7DF", source: "Nael deus Darnus" } +1050.0 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1051.2 "Fireball (In)" Ability { id: "7FB", source: "Firehorn" } +1054.2 "Bahamut's Claw x5" duration 2.9 #Ability { id: "871", source: "Nael deus Darnus" } 1061.2 "Divebomb Mark A" duration 5 1067.3 "Divebomb Mark B" duration 5 -1070.5 "Cauterize x2" sync / 1[56]:[^:]*:Thunderwing:801:/ -1070.6 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -1076.6 "Cauterize x1" sync / 1[56]:[^:]*:Firehorn:7FF:/ -1076.7 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -1080.8 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ +1070.5 "Cauterize x2" Ability { id: "801", source: "Thunderwing" } +1070.6 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +1076.6 "Cauterize x1" Ability { id: "7FF", source: "Firehorn" } +1076.7 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +1080.8 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } -1096.6 "Bahamut's Favor" sync / 1[56]:[^:]*:Nael deus Darnus:7E6:/ window 80,80 -1099.7 "Bahamut's Claw x5" duration 2.9 #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -1110.4 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -1110.4 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1111.3 "Fireball (Out)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1114.9 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:7DA:/ -1122.5 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1123.4 "Fireball (In)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1134.4 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1135.5 "Fireball (Out)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1136.0 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:7D8:/ -1137.8 "Super Nova x3" duration 3 #sync / 1[56]:[^:]*:Nael deus Darnus:7E0:/ -1143.8 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:7DF:/ -1146.6 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1147.7 "Fireball (In)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1150.6 "Bahamut's Claw x5" duration 2.9 #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ +1096.6 "Bahamut's Favor" Ability { id: "7E6", source: "Nael deus Darnus" } window 80,80 +1099.7 "Bahamut's Claw x5" duration 2.9 #Ability { id: "871", source: "Nael deus Darnus" } +1110.4 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +1110.4 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1111.3 "Fireball (Out)" Ability { id: "7FB", source: "Firehorn" } +1114.9 "Lunar Dynamo" Ability { id: "7DA", source: "Nael deus Darnus" } +1122.5 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1123.4 "Fireball (In)" Ability { id: "7FB", source: "Firehorn" } +1134.4 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1135.5 "Fireball (Out)" Ability { id: "7FB", source: "Firehorn" } +1136.0 "Iron Chariot" Ability { id: "7D8", source: "Nael deus Darnus" } +1137.8 "Super Nova x3" duration 3 #Ability { id: "7E0", source: "Nael deus Darnus" } +1143.8 "Thermionic Beam" Ability { id: "7DF", source: "Nael deus Darnus" } +1146.6 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1147.7 "Fireball (In)" Ability { id: "7FB", source: "Firehorn" } +1150.6 "Bahamut's Claw x5" duration 2.9 #Ability { id: "871", source: "Nael deus Darnus" } 1157.8 "Divebomb Mark A" duration 5 1163.9 "Divebomb Mark B" duration 5 -1164.3 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:7D8:/ -1167.1 "Cauterize x2" sync / 1[56]:[^:]*:Firehorn:7FF:/ -1168.1 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -1172.7 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:7DA:/ -1173.2 "Cauterize x1" sync / 1[56]:[^:]*:Iceclaw:800:/ +1164.3 "Iron Chariot" Ability { id: "7D8", source: "Nael deus Darnus" } +1167.1 "Cauterize x2" Ability { id: "7FF", source: "Firehorn" } +1168.1 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +1172.7 "Lunar Dynamo" Ability { id: "7DA", source: "Nael deus Darnus" } +1173.2 "Cauterize x1" Ability { id: "800", source: "Iceclaw" } -1193.1 "Bahamut's Favor" sync / 1[56]:[^:]*:Nael deus Darnus:7E6:/ window 80,80 -1196.1 "Bahamut's Claw x5" duration 2.9 #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ -1206.9 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DD:/ -1207.0 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1207.9 "Fireball (Out)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1211.4 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:7DA:/ -1219.0 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1219.9 "Fireball (In)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1231.0 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1232.1 "Fireball (Out)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1232.6 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:7D8:/ -1234.4 "Super Nova x3" duration 3 #sync / 1[56]:[^:]*:Nael deus Darnus:7E0:/ -1240.5 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:7DF:/ -1243.1 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:7FD:/ duration 6 -1244.4 "Fireball (In)" sync / 1[56]:[^:]*:Firehorn:7FB:/ -1247.4 "Bahamut's Claw x5" duration 2.9 #sync / 1[56]:[^:]*:Nael deus Darnus:871:/ +1193.1 "Bahamut's Favor" Ability { id: "7E6", source: "Nael deus Darnus" } window 80,80 +1196.1 "Bahamut's Claw x5" duration 2.9 #Ability { id: "871", source: "Nael deus Darnus" } +1206.9 "Raven Dive" Ability { id: "7DD", source: "Nael deus Darnus" } +1207.0 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1207.9 "Fireball (Out)" Ability { id: "7FB", source: "Firehorn" } +1211.4 "Lunar Dynamo" Ability { id: "7DA", source: "Nael deus Darnus" } +1219.0 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1219.9 "Fireball (In)" Ability { id: "7FB", source: "Firehorn" } +1231.0 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1232.1 "Fireball (Out)" Ability { id: "7FB", source: "Firehorn" } +1232.6 "Iron Chariot" Ability { id: "7D8", source: "Nael deus Darnus" } +1234.4 "Super Nova x3" duration 3 #Ability { id: "7E0", source: "Nael deus Darnus" } +1240.5 "Thermionic Beam" Ability { id: "7DF", source: "Nael deus Darnus" } +1243.1 "Chain Lightning" Ability { id: "7FD", source: "Thunderwing" } duration 6 +1244.4 "Fireball (In)" Ability { id: "7FB", source: "Firehorn" } +1247.4 "Bahamut's Claw x5" duration 2.9 #Ability { id: "871", source: "Nael deus Darnus" } 1254.4 "Divebomb Mark A" duration 5 1260.3 "Divebomb Mark B" duration 5 -1263.7 "Cauterize x2" sync / 1[56]:[^:]*:Thunderwing:801:/ -1263.8 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -1269.6 "Cauterize x1" sync / 1[56]:[^:]*:Firehorn:7FF:/ -1269.9 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:7DE:/ -1274.5 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:7DC:/ +1263.7 "Cauterize x2" Ability { id: "801", source: "Thunderwing" } +1263.8 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +1269.6 "Cauterize x1" Ability { id: "7FF", source: "Firehorn" } +1269.9 "Meteor Stream" Ability { id: "7DE", source: "Nael Geminus" } +1274.5 "Dalamud Dive" Ability { id: "7DC", source: "Nael deus Darnus" } -1289.7 "Bahamut's Favor" sync / 1[56]:[^:]*:Nael deus Darnus:7E6:/ window 80,800 jump 1096.6 +1289.7 "Bahamut's Favor" Ability { id: "7E6", source: "Nael deus Darnus" } window 80,800 jump 1096.6 1292.8 "Bahamut's Claw x5" 1303.5 "Raven Dive" 1303.5 "Chain Lightning" @@ -267,7 +267,7 @@ hideall "--sync--" ### Phase 5: What Took You So Long -2000.0 "Megaflare Enrage" sync / 1[56]:[^:]*:Nael deus Darnus:7E8:/ window 2000,2000 +2000.0 "Megaflare Enrage" Ability { id: "7E8", source: "Nael deus Darnus" } window 2000,2000 2008.5 "Megaflare Enrage" 2017.0 "Megaflare Enrage" 2025.5 "Megaflare Enrage" diff --git a/ui/raidboss/data/02-arr/trial/ifrit-nm.txt b/ui/raidboss/data/02-arr/trial/ifrit-nm.txt index 305e86409f..6975dd6275 100644 --- a/ui/raidboss/data/02-arr/trial/ifrit-nm.txt +++ b/ui/raidboss/data/02-arr/trial/ifrit-nm.txt @@ -6,14 +6,14 @@ hideall "--sync--" # 0% 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -1.2 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ window 10,10 -9.1 "Vulcan Burst" sync / 1[56]:[^:]*:Ifrit:1C6:/ -17.1 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ -30.0 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ -42.9 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +1.2 "Incinerate" Ability { id: "1C5", source: "Ifrit" } window 10,10 +9.1 "Vulcan Burst" Ability { id: "1C6", source: "Ifrit" } +17.1 "Incinerate" Ability { id: "1C5", source: "Ifrit" } +30.0 "Incinerate" Ability { id: "1C5", source: "Ifrit" } +42.9 "Incinerate" Ability { id: "1C5", source: "Ifrit" } -50.7 "Vulcan Burst" sync / 1[56]:[^:]*:Ifrit:1C6:/ window 30,30 jump 9.1 +50.7 "Vulcan Burst" Ability { id: "1C6", source: "Ifrit" } window 30,30 jump 9.1 58.7 "Incinerate" 71.6 "Incinerate" 84.5 "Incinerate" @@ -24,14 +24,14 @@ hideall "--sync--" 126.1 "Incinerate" # 70% -200.0 "--sync--" sync / 00:0044:Ifrit:Succumb to the inferno/ window 200,0 -201.0 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ -209.0 "Eruption" sync / 1[56]:[^:]*:Ifrit:1C7:/ window 210,5 -213.5 "Vulcan Burst" sync / 1[56]:[^:]*:Ifrit:1C6:/ +200.0 "--sync--" GameLog { code: "0044", name: "Ifrit", line: "Succumb to the inferno.*?" } window 200,0 +201.0 "Incinerate" Ability { id: "1C5", source: "Ifrit" } +209.0 "Eruption" Ability { id: "1C7", source: "Ifrit" } window 210,5 +213.5 "Vulcan Burst" Ability { id: "1C6", source: "Ifrit" } -220.4 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ -228.5 "Eruption" sync / 1[56]:[^:]*:Ifrit:1C7:/ -237.1 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ window 10,10 jump 220.4 +220.4 "Incinerate" Ability { id: "1C5", source: "Ifrit" } +228.5 "Eruption" Ability { id: "1C7", source: "Ifrit" } +237.1 "Incinerate" Ability { id: "1C5", source: "Ifrit" } window 10,10 jump 220.4 245.2 "Eruption" 253.8 "Incinerate" 261.9 "Eruption" @@ -39,24 +39,24 @@ hideall "--sync--" 278.6 "Eruption" # 50% -300.0 "--sync--" sync / 00:0044:Ifrit:Surrender thyself to the fires of judgment/ window 300,0 +300.0 "--sync--" GameLog { code: "0044", name: "Ifrit", line: "Surrender thyself to the fires of judgment.*?" } window 300,0 305.0 "Nail Add" -306.7 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ -314.4 "Vulcan Burst" sync / 1[56]:[^:]*:Ifrit:1C6:/ -322.3 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ -335.1 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ +306.7 "Incinerate" Ability { id: "1C5", source: "Ifrit" } +314.4 "Vulcan Burst" Ability { id: "1C6", source: "Ifrit" } +322.3 "Incinerate" Ability { id: "1C5", source: "Ifrit" } +335.1 "Incinerate" Ability { id: "1C5", source: "Ifrit" } 341.7 "--untargetable--" -344.3 "--sync--" sync / 14:[^:]*:Ifrit:1CA:/ window 500,0 -346.3 "Hellfire" sync / 1[56]:[^:]*:Ifrit:1CA:/ +344.3 "--sync--" StartsUsing { id: "1CA", source: "Ifrit" } window 500,0 +346.3 "Hellfire" Ability { id: "1CA", source: "Ifrit" } 350.7 "--targetable--" -352.6 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ -361.7 "Eruption" sync / 1[56]:[^:]*:Ifrit:1C7:/ -370.4 "Radiant Plume (inner)" sync / 1[56]:[^:]*:Ifrit:1C8:/ -378.8 "Radiant Plume (outer)" sync / 1[56]:[^:]*:Ifrit:1C8:/ +352.6 "Incinerate" Ability { id: "1C5", source: "Ifrit" } +361.7 "Eruption" Ability { id: "1C7", source: "Ifrit" } +370.4 "Radiant Plume (inner)" Ability { id: "1C8", source: "Ifrit" } +378.8 "Radiant Plume (outer)" Ability { id: "1C8", source: "Ifrit" } -385.0 "Incinerate" sync / 1[56]:[^:]*:Ifrit:1C5:/ window 20,20 jump 352.6 +385.0 "Incinerate" Ability { id: "1C5", source: "Ifrit" } window 20,20 jump 352.6 394.1 "Eruption" 402.8 "Radiant Plume (inner)" 411.2 "Radiant Plume (outer)" diff --git a/ui/raidboss/data/02-arr/trial/levi-ex.txt b/ui/raidboss/data/02-arr/trial/levi-ex.txt index b89d0ac5aa..a59de41031 100644 --- a/ui/raidboss/data/02-arr/trial/levi-ex.txt +++ b/ui/raidboss/data/02-arr/trial/levi-ex.txt @@ -37,151 +37,151 @@ hideall "--sync--" ### Phase 1: Literally Just Autos (100% -> 90%) 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -25.8 "--untargetable--" sync / 22:........:Leviathan:........:Leviathan:00/ window 30,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +25.8 "--untargetable--" NameToggle { name: "Leviathan", toggle: "00" } window 30,10 ### Phase 2: One Set of Orbs (90% -> 50%?) 33.0 "--targetable--" -33.1 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 40,10 -38.3 "Veil Of The Whorl" sync / 1[56]:[^:]*:Leviathan:875:/ window 40,10 -43.3 "Mantle Of The Whorl" sync / 1[56]:[^:]*:Leviathan's Tail:874:/ +33.1 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 40,10 +38.3 "Veil Of The Whorl" Ability { id: "875", source: "Leviathan" } window 40,10 +43.3 "Mantle Of The Whorl" Ability { id: "874", source: "Leviathan's Tail" } 45.6 "--2x Wavespine Sahagin (N)--" -53.2 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:826:/ -59.3 "Tail Whip" sync / 1[56]:[^:]*:Leviathan's Tail:827:/ -60.4 "Waterspout" sync / 1[56]:[^:]*:Leviathan:742:/ -73.8 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -77.9 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ window 30,30 +53.2 "Aqua Breath" Ability { id: "826", source: "Leviathan" } +59.3 "Tail Whip" Ability { id: "827", source: "Leviathan's Tail" } +60.4 "Waterspout" Ability { id: "742", source: "Leviathan" } +73.8 "Dread Tide" Ability { id: "754", source: "Leviathan" } +77.9 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } window 30,30 85.2 "--untargetable--" -88.3 "Grand Fall" sync / 1[56]:[^:]*:Leviathan:82F:/ -90.8 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ -94.3 "Grand Fall" sync / 1[56]:[^:]*:Leviathan:82F:/ -95.8 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +88.3 "Grand Fall" Ability { id: "82F", source: "Leviathan" } +90.8 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } +94.3 "Grand Fall" Ability { id: "82F", source: "Leviathan" } +95.8 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 101.5 "--targetable--" -101.6 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 30,30 -106.0 "Briny Veil" sync / 1[56]:[^:]*:Leviathan:831:/ +101.6 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 30,30 +106.0 "Briny Veil" Ability { id: "831", source: "Leviathan" } 110.7 "--Wavetooth Sahagin (E)--" -121.0 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -125.1 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:826:/ -126.0 "Tail Whip" sync / 1[56]:[^:]*:Leviathan's Tail:827:/ -132.3 "Waterspout" sync / 1[56]:[^:]*:Leviathan:742:/ -145.7 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -149.8 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ window 30,30 +121.0 "Dread Tide" Ability { id: "754", source: "Leviathan" } +125.1 "Aqua Breath" Ability { id: "826", source: "Leviathan" } +126.0 "Tail Whip" Ability { id: "827", source: "Leviathan's Tail" } +132.3 "Waterspout" Ability { id: "742", source: "Leviathan" } +145.7 "Dread Tide" Ability { id: "754", source: "Leviathan" } +149.8 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } window 30,30 154.9 "--untargetable--" -158.0 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:82F:/ -160.5 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ -165.4 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +158.0 "Grand Fall x3" #Ability { id: "82F", source: "Leviathan" } +160.5 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } +165.4 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 171.1 "--targetable--" -171.2 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 30,30 +171.2 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 30,30 180.8 "--4x Gyre Spume--" -192.7 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -196.3 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:827:/ -196.8 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:826:/ -204.0 "Waterspout" sync / 1[56]:[^:]*:Leviathan:742:/ -217.3 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -221.4 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ window 30,30 +192.7 "Dread Tide" Ability { id: "754", source: "Leviathan" } +196.3 "Tail Whip" #Ability { id: "827", source: "Leviathan's Tail" } +196.8 "Aqua Breath" Ability { id: "826", source: "Leviathan" } +204.0 "Waterspout" Ability { id: "742", source: "Leviathan" } +217.3 "Dread Tide" Ability { id: "754", source: "Leviathan" } +221.4 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } window 30,30 228.9 "--untargetable--" -232.0 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:82F:/ -234.5 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ -239.4 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +232.0 "Grand Fall x3" #Ability { id: "82F", source: "Leviathan" } +234.5 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } +239.4 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 245.1 "--targetable--" -245.2 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 30,30 -267.5 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ +245.2 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 30,30 +267.5 "Dread Tide" Ability { id: "754", source: "Leviathan" } 275.2 "--untargetable--" -278.3 "Grand Fall" sync / 1[56]:[^:]*:Leviathan:82F:/ -280.8 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +278.3 "Grand Fall" Ability { id: "82F", source: "Leviathan" } +280.8 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 280.8 "--untargetable--" -286.5 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:82E:/ window 300,100 +286.5 "Tidal Wave" Ability { id: "82E", source: "Leviathan" } window 300,100 ### Phase 3: Two Sets of Orbs (50% -> 20%?) 299.2 "--targetable--" -299.3 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 30,30 +299.3 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 30,30 301.3 "--2x Wavespine Sahagin (S)--" -318.6 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:826:/ -318.6 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:827:/ -322.7 "Waterspout" sync / 1[56]:[^:]*:Leviathan:742:/ -329.9 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -338.1 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ +318.6 "Aqua Breath" Ability { id: "826", source: "Leviathan" } +318.6 "Tail Whip" #Ability { id: "827", source: "Leviathan's Tail" } +322.7 "Waterspout" Ability { id: "742", source: "Leviathan" } +329.9 "Dread Tide" Ability { id: "754", source: "Leviathan" } +338.1 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } 347.3 "--untargetable--" -350.4 "Grand Fall" sync / 1[56]:[^:]*:Leviathan:82F:/ -352.9 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ -357.8 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +350.4 "Grand Fall" Ability { id: "82F", source: "Leviathan" } +352.9 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } +357.8 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 363.5 "--targetable--" -363.6 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 30,30 +363.6 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 30,30 364.9 "--4x Gyre Spume--" -382.9 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:826:/ -385.0 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:827:/ -387.1 "Waterspout" sync / 1[56]:[^:]*:Leviathan:742:/ -394.3 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ +382.9 "Aqua Breath" Ability { id: "826", source: "Leviathan" } +385.0 "Tail Whip" #Ability { id: "827", source: "Leviathan's Tail" } +387.1 "Waterspout" Ability { id: "742", source: "Leviathan" } +394.3 "Dread Tide" Ability { id: "754", source: "Leviathan" } 402.4 "--4x Wave Spume--" -402.5 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ +402.5 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } 413.8 "--untargetable--" -416.9 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:82F:/ -419.4 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +416.9 "Grand Fall x3" #Ability { id: "82F", source: "Leviathan" } +419.4 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 425.1 "--targetable--" -425.2 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ -435.3 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -439.6 "Aqua Burst" sync / 1[56]:[^:]*:Wave Spume:888:/ -442.5 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:826:/ -446.6 "Waterspout" sync / 1[56]:[^:]*:Leviathan:742:/ -455.8 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ +425.2 "Body Slam" Ability { id: "82A", source: "Leviathan" } +435.3 "Dread Tide" Ability { id: "754", source: "Leviathan" } +439.6 "Aqua Burst" Ability { id: "888", source: "Wave Spume" } +442.5 "Aqua Breath" Ability { id: "826", source: "Leviathan" } +446.6 "Waterspout" Ability { id: "742", source: "Leviathan" } +455.8 "Dread Tide" Ability { id: "754", source: "Leviathan" } 462.5 "--untargetable--" -465.6 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:82F:/ -468.1 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +465.6 "Grand Fall x3" #Ability { id: "82F", source: "Leviathan" } +468.1 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 468.1 "--untargetable--" -473.9 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:82E:/ window 150,100 +473.9 "Tidal Wave" Ability { id: "82E", source: "Leviathan" } window 150,100 ### Phase 4: more adds, enrage 486.6 "--targetable--" -486.7 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 30,30 +486.7 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 30,30 488.2 "--Wavetooth Sahagin (NW)--" -500.3 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ -508.5 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:826:/ -512.6 "Waterspout" sync / 1[56]:[^:]*:Leviathan:742:/ -512.6 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:827:/ -519.8 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -523.9 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ +500.3 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } +508.5 "Aqua Breath" Ability { id: "826", source: "Leviathan" } +512.6 "Waterspout" Ability { id: "742", source: "Leviathan" } +512.6 "Tail Whip" #Ability { id: "827", source: "Leviathan's Tail" } +519.8 "Dread Tide" Ability { id: "754", source: "Leviathan" } +523.9 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } 532.1 "--untargetable--" -535.2 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:82F:/ -537.7 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ -542.6 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +535.2 "Grand Fall x3" #Ability { id: "82F", source: "Leviathan" } +537.7 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } +542.6 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 548.3 "--targetable--" -548.4 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 30,30 -563.6 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -567.7 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ -581.1 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -587.3 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ +548.4 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 30,30 +563.6 "Dread Tide" Ability { id: "754", source: "Leviathan" } +567.7 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } +581.1 "Dread Tide" Ability { id: "754", source: "Leviathan" } +587.3 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } 600.9 "--2x Wavespine Sahagin--" # ? not sure where -601.6 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ -609.8 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:826:/ -613.9 "Waterspout" sync / 1[56]:[^:]*:Leviathan:742:/ -614.8 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:827:/ -621.1 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ -625.2 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:74B:/ +601.6 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } +609.8 "Aqua Breath" Ability { id: "826", source: "Leviathan" } +613.9 "Waterspout" Ability { id: "742", source: "Leviathan" } +614.8 "Tail Whip" #Ability { id: "827", source: "Leviathan's Tail" } +621.1 "Dread Tide" Ability { id: "754", source: "Leviathan" } +625.2 "Tidal Roar" Ability { id: "74B", source: "Leviathan" } 634.1 "--untargetable--" -637.2 "Grand Fall x3" sync / 1[56]:[^:]*:Leviathan:82F:/ -639.7 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ -644.6 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:82C:/ +637.2 "Grand Fall x3" Ability { id: "82F", source: "Leviathan" } +639.7 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } +644.6 "Spinning Dive" Ability { id: "82C", source: "Leviathan" } 650.3 "--targetable--" -650.4 "Body Slam" sync / 1[56]:[^:]*:Leviathan:82A:/ window 30,30 -665.6 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:754:/ +650.4 "Body Slam" Ability { id: "82A", source: "Leviathan" } window 30,30 +665.6 "Dread Tide" Ability { id: "754", source: "Leviathan" } 669.6 "--untargetable--" -676.9 "Tidal Wave Enrage" sync / 1[56]:[^:]*:Leviathan:82E:/ +676.9 "Tidal Wave Enrage" Ability { id: "82E", source: "Leviathan" } diff --git a/ui/raidboss/data/02-arr/trial/shiva-ex.txt b/ui/raidboss/data/02-arr/trial/shiva-ex.txt index d6703d77a6..7456ea63d8 100644 --- a/ui/raidboss/data/02-arr/trial/shiva-ex.txt +++ b/ui/raidboss/data/02-arr/trial/shiva-ex.txt @@ -35,205 +35,205 @@ hideall "--sync--" hideall "--Reset--" # Phase 1: Literally Just Autos (100% -> 95%) -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -2.0 "--sync--" sync / 1[56]:[^:]*:Shiva:BE4:/ window 10,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +2.0 "--sync--" Ability { id: "BE4", source: "Shiva" } window 10,10 # jump to staff -10.0 "--sync--" sync / 1[56]:[^:]*:Shiva:995:/ window 10,100 jump 100 +10.0 "--sync--" Ability { id: "995", source: "Shiva" } window 10,100 jump 100 # jump to sword -10.0 "--sync--" sync / 1[56]:[^:]*:Shiva:993:/ window 10,100 jump 400 +10.0 "--sync--" Ability { id: "993", source: "Shiva" } window 10,100 jump 400 # Phase 2a: Staff (95% -> 90%) -100.0 "Frost Staff" sync / 1[56]:[^:]*:Shiva:995:/ -108.1 "Hailstorm" sync / 1[56]:[^:]*:Shiva:997:/ +100.0 "Frost Staff" Ability { id: "995", source: "Shiva" } +108.1 "Hailstorm" Ability { id: "997", source: "Shiva" } -117.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ -127.0 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ +117.6 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } +127.0 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } -140.5 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ window 8,8 jump 117.6 -149.9 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:BE6:/ +140.5 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } window 8,8 jump 117.6 +149.9 "Absolute Zero" #Ability { id: "BE6", source: "Shiva" } -163.4 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:BE6:/ -173.8 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:BE6:/ +163.4 "Absolute Zero" #Ability { id: "BE6", source: "Shiva" } +173.8 "Absolute Zero" #Ability { id: "BE6", source: "Shiva" } # Phase 3a: Sword (90% -> 80%) -200.0 "Melt" sync / 1[56]:[^:]*:Shiva:C7F:/ window 100,0 +200.0 "Melt" Ability { id: "C7F", source: "Shiva" } window 100,0 # This rolls out x4 over 1.5 seconds, so don't sync -207.2 "Icicle Impact" #sync / 1[56]:[^:]*:Shiva:BEB:/ -212.3 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:BEA:/ +207.2 "Icicle Impact" #Ability { id: "BEB", source: "Shiva" } +212.3 "Dreams Of Ice" Ability { id: "BEA", source: "Shiva" } -225.0 "Frost Blade" sync / 1[56]:[^:]*:Shiva:993:/ -230.1 "Icebrand" sync / 1[56]:[^:]*:Shiva:BE1:/ +225.0 "Frost Blade" Ability { id: "993", source: "Shiva" } +230.1 "Icebrand" Ability { id: "BE1", source: "Shiva" } -235.4 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:BE8:/ -245.0 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:BE9:/ -255.4 "Whiteout" sync / 1[56]:[^:]*:Shiva:BEC:/ +235.4 "Heavenly Strike" Ability { id: "BE8", source: "Shiva" } +245.0 "Glacier Bash" Ability { id: "BE9", source: "Shiva" } +255.4 "Whiteout" Ability { id: "BEC", source: "Shiva" } -263.9 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:BE8:/ -273.5 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:BE9:/ -284.5 "Whiteout" sync / 1[56]:[^:]*:Shiva:BEC:/ +263.9 "Heavenly Strike" Ability { id: "BE8", source: "Shiva" } +273.5 "Glacier Bash" Ability { id: "BE9", source: "Shiva" } +284.5 "Whiteout" Ability { id: "BEC", source: "Shiva" } -292.8 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:BE8:/ window 20,20 jump 235.4 -302.4 "Glacier Bash" #sync / 1[56]:[^:]*:Shiva:BE9:/ -312.8 "Whiteout" #sync / 1[56]:[^:]*:Shiva:BEC:/ +292.8 "Heavenly Strike" Ability { id: "BE8", source: "Shiva" } window 20,20 jump 235.4 +302.4 "Glacier Bash" #Ability { id: "BE9", source: "Shiva" } +312.8 "Whiteout" #Ability { id: "BEC", source: "Shiva" } -321.3 "Heavenly Strike" #sync / 1[56]:[^:]*:Shiva:BE8:/ -330.9 "Glacier Bash" #sync / 1[56]:[^:]*:Shiva:BE9:/ -341.9 "Whiteout" #sync / 1[56]:[^:]*:Shiva:BEC:/ +321.3 "Heavenly Strike" #Ability { id: "BE8", source: "Shiva" } +330.9 "Glacier Bash" #Ability { id: "BE9", source: "Shiva" } +341.9 "Whiteout" #Ability { id: "BEC", source: "Shiva" } # Jump to adds phase from 1a/2a -350.0 "--sync--" sync / 1[56]:[^:]*:Shiva:994:/ window 350,0 jump 800 +350.0 "--sync--" Ability { id: "994", source: "Shiva" } window 350,0 jump 800 # Phase 2b: Sword (95% -> 90%) -400.0 "Frost Blade" sync / 1[56]:[^:]*:Shiva:993:/ -405.1 "Icebrand" sync / 1[56]:[^:]*:Shiva:BE1:/ +400.0 "Frost Blade" Ability { id: "993", source: "Shiva" } +405.1 "Icebrand" Ability { id: "BE1", source: "Shiva" } -410.3 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:BE8:/ -419.9 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:BE9:/ -430.3 "Whiteout" sync / 1[56]:[^:]*:Shiva:BEC:/ +410.3 "Heavenly Strike" Ability { id: "BE8", source: "Shiva" } +419.9 "Glacier Bash" Ability { id: "BE9", source: "Shiva" } +430.3 "Whiteout" Ability { id: "BEC", source: "Shiva" } -438.8 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:BE8:/ -448.4 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:BE9:/ -458.8 "Whiteout" sync / 1[56]:[^:]*:Shiva:BEC:/ +438.8 "Heavenly Strike" Ability { id: "BE8", source: "Shiva" } +448.4 "Glacier Bash" Ability { id: "BE9", source: "Shiva" } +458.8 "Whiteout" Ability { id: "BEC", source: "Shiva" } -467.2 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:BE8:/ window 20,20 jump 410.3 -477.3 "Glacier Bash" #sync / 1[56]:[^:]*:Shiva:BE9:/ -487.7 "Whiteout" #sync / 1[56]:[^:]*:Shiva:BEC:/ +467.2 "Heavenly Strike" Ability { id: "BE8", source: "Shiva" } window 20,20 jump 410.3 +477.3 "Glacier Bash" #Ability { id: "BE9", source: "Shiva" } +487.7 "Whiteout" #Ability { id: "BEC", source: "Shiva" } -496.2 "Heavenly Strike" #sync / 1[56]:[^:]*:Shiva:BE8:/ -505.8 "Glacier Bash" #sync / 1[56]:[^:]*:Shiva:BE9:/ -516.8 "Whiteout" #sync / 1[56]:[^:]*:Shiva:BEC:/ +496.2 "Heavenly Strike" #Ability { id: "BE8", source: "Shiva" } +505.8 "Glacier Bash" #Ability { id: "BE9", source: "Shiva" } +516.8 "Whiteout" #Ability { id: "BEC", source: "Shiva" } # Phase 3b: Staff (90% -> 80%) -600.0 "Melt" sync / 1[56]:[^:]*:Shiva:994:/ window 200,0 +600.0 "Melt" Ability { id: "994", source: "Shiva" } window 200,0 # This rolls out x4 over 1.5 seconds, so don't sync -607.2 "Icicle Impact" #sync / 1[56]:[^:]*:Shiva:BEB:/ -612.3 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:BEA:/ +607.2 "Icicle Impact" #Ability { id: "BEB", source: "Shiva" } +612.3 "Dreams Of Ice" Ability { id: "BEA", source: "Shiva" } -625.0 "Frost Staff" sync / 1[56]:[^:]*:Shiva:995:/ -633.1 "Hailstorm" sync / 1[56]:[^:]*:Shiva:997:/ +625.0 "Frost Staff" Ability { id: "995", source: "Shiva" } +633.1 "Hailstorm" Ability { id: "997", source: "Shiva" } -642.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ -652.0 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ +642.6 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } +652.0 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } -665.5 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ window 8,8 jump 642.6 -674.9 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:BE6:/ +665.5 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } window 8,8 jump 642.6 +674.9 "Absolute Zero" #Ability { id: "BE6", source: "Shiva" } -688.4 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:BE6:/ -698.8 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:BE6:/ +688.4 "Absolute Zero" #Ability { id: "BE6", source: "Shiva" } +698.8 "Absolute Zero" #Ability { id: "BE6", source: "Shiva" } # Jump to adds phase from 1b/2b -750.0 "--sync--" sync / 1[56]:[^:]*:Shiva:C7F:/ window 350,0 jump 801 +750.0 "--sync--" Ability { id: "C7F", source: "Shiva" } window 350,0 jump 801 # Phase 4: Adds -800.0 "--sync--" #sync / 1[56]:[^:]*:Shiva:994:/ -801.0 "--sync--" #sync / 1[56]:[^:]*:Shiva:C7F:/ +800.0 "--sync--" #Ability { id: "994", source: "Shiva" } +801.0 "--sync--" #Ability { id: "C7F", source: "Shiva" } # If you push *really* fast and skip a 3a/3b weapon phase, you'll miss the melt jump. # So, fix that up with a combatant sync here. -806.6 "--adds targetable--" sync / 03:........:Ice Soldier:/ window 807,10 -807.6 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:BEA:/ -813.2 "Frost Blade" sync / 1[56]:[^:]*:Shiva:993:/ -818.5 "Icebrand" sync / 1[56]:[^:]*:Shiva:BE1:/ -828.0 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:BE9:/ -837.5 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:BE8:/ +806.6 "--adds targetable--" AddedCombatant { name: "Ice Soldier" } window 807,10 +807.6 "Dreams Of Ice" Ability { id: "BEA", source: "Shiva" } +813.2 "Frost Blade" Ability { id: "993", source: "Shiva" } +818.5 "Icebrand" Ability { id: "BE1", source: "Shiva" } +828.0 "Glacier Bash" Ability { id: "BE9", source: "Shiva" } +837.5 "Heavenly Strike" Ability { id: "BE8", source: "Shiva" } # Diamond Dust Cutscene -854.4 "Melt" sync / 1[56]:[^:]*:Shiva:994:/ window 60,10 +854.4 "Melt" Ability { id: "994", source: "Shiva" } window 60,10 855.5 "--untargetable--" -866.7 "--frozen--" sync / 1[56]:[^:]*:Shiva:C16:/ window 900,50 -871.6 "Diamond Dust" sync / 1[56]:[^:]*:Shiva:98A:/ +866.7 "--frozen--" Ability { id: "C16", source: "Shiva" } window 900,50 +871.6 "Diamond Dust" Ability { id: "98A", source: "Shiva" } 878.7 "--targetable--" -878.9 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:BEA:/ +878.9 "Dreams Of Ice" Ability { id: "BEA", source: "Shiva" } # Phase 5: Post-Cutscene Staff # Unlike phase 7a staff, this one can only have a single optional Permafrost. -885.8 "Frost Staff" sync / 1[56]:[^:]*:Shiva:995:/ -888.1 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:BEB:/ -893.9 "Hailstorm" sync / 1[56]:[^:]*:Shiva:997:/ -896.0 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:BEB:/ -908.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ -920.2 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ -925.4 "Melt" sync / 1[56]:[^:]*:Shiva:C7F:/ -932.6 "Icicle Impact (circle)" duration 4 #sync / 1[56]:[^:]*:Shiva:BEB:/ -935.5 "Permafrost?" sync / 1[56]:[^:]*:Shiva:BE3:/ -939.7 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:BEA:/ window 20,10 +885.8 "Frost Staff" Ability { id: "995", source: "Shiva" } +888.1 "Icicle Impact (cross)" #Ability { id: "BEB", source: "Shiva" } +893.9 "Hailstorm" Ability { id: "997", source: "Shiva" } +896.0 "Icicle Impact (cross)" #Ability { id: "BEB", source: "Shiva" } +908.6 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } +920.2 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } +925.4 "Melt" Ability { id: "C7F", source: "Shiva" } +932.6 "Icicle Impact (circle)" duration 4 #Ability { id: "BEB", source: "Shiva" } +935.5 "Permafrost?" Ability { id: "BE3", source: "Shiva" } +939.7 "Dreams Of Ice" Ability { id: "BEA", source: "Shiva" } window 20,10 # Phase 6: Bow -942.8 "Frost Bow" sync / 1[56]:[^:]*:Shiva:BDD:/ -947.9 "Glass Dance" sync / 1[56]:[^:]*:Shiva:BDF:/ -970.5 "Avalanche" sync / 1[56]:[^:]*:Shiva:BE0:/ -974.6 "Permafrost?" sync / 1[56]:[^:]*:Shiva:BE3:/ -986.1 "Melt" sync / 1[56]:[^:]*:Shiva:C7E:/ window 20,20 -988.3 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:BEA:/ +942.8 "Frost Bow" Ability { id: "BDD", source: "Shiva" } +947.9 "Glass Dance" Ability { id: "BDF", source: "Shiva" } +970.5 "Avalanche" Ability { id: "BE0", source: "Shiva" } +974.6 "Permafrost?" Ability { id: "BE3", source: "Shiva" } +986.1 "Melt" Ability { id: "C7E", source: "Shiva" } window 20,20 +988.3 "Dreams Of Ice" Ability { id: "BEA", source: "Shiva" } -996.2 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:995:/ window 100,50 jump 1096.2 -996.2 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:993:/ window 100,50 jump 1296.2 +996.2 "Frost Staff?" Ability { id: "995", source: "Shiva" } window 100,50 jump 1096.2 +996.2 "Frost Blade?" Ability { id: "993", source: "Shiva" } window 100,50 jump 1296.2 # Phase 7a: Staff -1096.2 "Frost Staff" sync / 1[56]:[^:]*:Shiva:995:/ -1098.1 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:BEB:/ -1104.3 "Hailstorm" sync / 1[56]:[^:]*:Shiva:997:/ -1106.1 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:BEB:/ -1109.0 "Permafrost?" sync / 1[56]:[^:]*:Shiva:BE3:/ -1117.8 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ window 20,2.5 -1125.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ -1133.0 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:BE6:/ +1096.2 "Frost Staff" Ability { id: "995", source: "Shiva" } +1098.1 "Icicle Impact (cross)" #Ability { id: "BEB", source: "Shiva" } +1104.3 "Hailstorm" Ability { id: "997", source: "Shiva" } +1106.1 "Icicle Impact (cross)" #Ability { id: "BEB", source: "Shiva" } +1109.0 "Permafrost?" Ability { id: "BE3", source: "Shiva" } +1117.8 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } window 20,2.5 +1125.6 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } +1133.0 "Absolute Zero" Ability { id: "BE6", source: "Shiva" } # Note: this last absolute zero can either happen at 1135.8 or 1140.4 depending on # where the permafrost shows up. So, don't sync it. -1138.0 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:BE6:/ -1140.0 "Permafrost?" sync / 1[56]:[^:]*:Shiva:BE3:/ -1149.4 "Melt" sync / 1[56]:[^:]*:Shiva:C7F:/ window 20,20 -1156.6 "Icicle Impact (circle)" duration 4 #sync / 1[56]:[^:]*:Shiva:BEB:/ -1159.5 "Permafrost?" sync / 1[56]:[^:]*:Shiva:BE3:/ -1163.7 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:BEA:/ window 20,20 +1138.0 "Absolute Zero" #Ability { id: "BE6", source: "Shiva" } +1140.0 "Permafrost?" Ability { id: "BE3", source: "Shiva" } +1149.4 "Melt" Ability { id: "C7F", source: "Shiva" } window 20,20 +1156.6 "Icicle Impact (circle)" duration 4 #Ability { id: "BEB", source: "Shiva" } +1159.5 "Permafrost?" Ability { id: "BE3", source: "Shiva" } +1163.7 "Dreams Of Ice" Ability { id: "BEA", source: "Shiva" } window 20,20 -1166.9 "Frost Bow" sync / 1[56]:[^:]*:Shiva:BDD:/ window 100,20 jump 942.8 -1172.0 "Glass Dance" #sync / 1[56]:[^:]*:Shiva:BDF:/ -1194.6 "Avalanche" #sync / 1[56]:[^:]*:Shiva:BE0:/ -1198.7 "Permafrost?" #sync / 1[56]:[^:]*:Shiva:BE3:/ -1210.2 "Melt" #sync / 1[56]:[^:]*:Shiva:C7E:/ window 20,20 -1212.4 "Dreams Of Ice" #sync / 1[56]:[^:]*:Shiva:BEA:/ +1166.9 "Frost Bow" Ability { id: "BDD", source: "Shiva" } window 100,20 jump 942.8 +1172.0 "Glass Dance" #Ability { id: "BDF", source: "Shiva" } +1194.6 "Avalanche" #Ability { id: "BE0", source: "Shiva" } +1198.7 "Permafrost?" #Ability { id: "BE3", source: "Shiva" } +1210.2 "Melt" #Ability { id: "C7E", source: "Shiva" } window 20,20 +1212.4 "Dreams Of Ice" #Ability { id: "BEA", source: "Shiva" } # Phase 7b: Sword -1296.2 "Frost Blade" sync / 1[56]:[^:]*:Shiva:993:/ -1298.5 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:BEB:/ -1302.3 "Icebrand" sync / 1[56]:[^:]*:Shiva:BE1:/ -1306.4 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:BEB:/ -1306.4 "Permafrost?" sync / 1[56]:[^:]*:Shiva:BE3:/ -1316.8 "--sync--" sync / 14:[^:]*:Shiva:BE9:/ window 10,10 -1319.0 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:BE9:/ -1329.4 "Whiteout" sync / 1[56]:[^:]*:Shiva:BEC:/ -1334.7 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:BE8:/ -1338.8 "Permafrost?" sync / 1[56]:[^:]*:Shiva:BE3:/ -1350.7 "Melt" sync / 1[56]:[^:]*:Shiva:994:/ window 20,10 -1357.9 "Icicle Impact (circle)" duration 4 #sync / 1[56]:[^:]*:Shiva:BEB:/ -1360.8 "Permafrost?" sync / 1[56]:[^:]*:Shiva:BE3:/ -1365.0 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:BEA:/ window 20,20 - -1368.2 "Frost Bow" sync / 1[56]:[^:]*:Shiva:BDD:/ window 100,20 jump 942.8 -1373.3 "Glass Dance" #sync / 1[56]:[^:]*:Shiva:BDF:/ -1395.9 "Avalanche" #sync / 1[56]:[^:]*:Shiva:BE0:/ -1400.0 "Permafrost?" #sync / 1[56]:[^:]*:Shiva:BE3:/ -1411.5 "Melt" #sync / 1[56]:[^:]*:Shiva:C7E:/ window 20,20 -1413.7 "Dreams Of Ice" #sync / 1[56]:[^:]*:Shiva:BEA:/ +1296.2 "Frost Blade" Ability { id: "993", source: "Shiva" } +1298.5 "Icicle Impact (cross)" #Ability { id: "BEB", source: "Shiva" } +1302.3 "Icebrand" Ability { id: "BE1", source: "Shiva" } +1306.4 "Icicle Impact (cross)" #Ability { id: "BEB", source: "Shiva" } +1306.4 "Permafrost?" Ability { id: "BE3", source: "Shiva" } +1316.8 "--sync--" StartsUsing { id: "BE9", source: "Shiva" } window 10,10 +1319.0 "Glacier Bash" Ability { id: "BE9", source: "Shiva" } +1329.4 "Whiteout" Ability { id: "BEC", source: "Shiva" } +1334.7 "Heavenly Strike" Ability { id: "BE8", source: "Shiva" } +1338.8 "Permafrost?" Ability { id: "BE3", source: "Shiva" } +1350.7 "Melt" Ability { id: "994", source: "Shiva" } window 20,10 +1357.9 "Icicle Impact (circle)" duration 4 #Ability { id: "BEB", source: "Shiva" } +1360.8 "Permafrost?" Ability { id: "BE3", source: "Shiva" } +1365.0 "Dreams Of Ice" Ability { id: "BEA", source: "Shiva" } window 20,20 + +1368.2 "Frost Bow" Ability { id: "BDD", source: "Shiva" } window 100,20 jump 942.8 +1373.3 "Glass Dance" #Ability { id: "BDF", source: "Shiva" } +1395.9 "Avalanche" #Ability { id: "BE0", source: "Shiva" } +1400.0 "Permafrost?" #Ability { id: "BE3", source: "Shiva" } +1411.5 "Melt" #Ability { id: "C7E", source: "Shiva" } window 20,20 +1413.7 "Dreams Of Ice" #Ability { id: "BEA", source: "Shiva" } # Enrage #1165.6 "--untargetable--" -#1176.7 "--sync--" sync / 1[56]:[^:]*:Shiva:C16:/ -#1176.7 "Diamond Dust" sync / 1[56]:[^:]*:Shiva:9A2:/ -#1181.6 "Diamond Dust" sync / 1[56]:[^:]*:Shiva:98A:/ +#1176.7 "--sync--" Ability { id: "C16", source: "Shiva" } +#1176.7 "Diamond Dust" Ability { id: "9A2", source: "Shiva" } +#1181.6 "Diamond Dust" Ability { id: "98A", source: "Shiva" } diff --git a/ui/raidboss/data/02-arr/trial/shiva-hm.txt b/ui/raidboss/data/02-arr/trial/shiva-hm.txt index 31fc42ba56..aff5869a6c 100644 --- a/ui/raidboss/data/02-arr/trial/shiva-hm.txt +++ b/ui/raidboss/data/02-arr/trial/shiva-hm.txt @@ -30,139 +30,139 @@ hideall "--sync--" hideall "--Reset--" # Phase 1: Literally Just Autos (100% -> 95%) -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -2.0 "--sync--" sync / 1[56]:[^:]*:Shiva:99A:/ window 10,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +2.0 "--sync--" Ability { id: "99A", source: "Shiva" } window 10,10 # jump to staff -10.0 "--sync--" sync / 1[56]:[^:]*:Shiva:995:/ window 10,100 jump 200 +10.0 "--sync--" Ability { id: "995", source: "Shiva" } window 10,100 jump 200 # Phase 2: Staff (95% -> 85%) -200.0 "Frost Staff" sync / 1[56]:[^:]*:Shiva:995:/ -208.1 "Hailstorm" sync / 1[56]:[^:]*:Shiva:997:/ +200.0 "Frost Staff" Ability { id: "995", source: "Shiva" } +208.1 "Hailstorm" Ability { id: "997", source: "Shiva" } -221.7 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:99C:/ window 30,30 jump 221.7 -244.7 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:99C:/ -267.7 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:99C:/ +221.7 "Absolute Zero" Ability { id: "99C", source: "Shiva" } window 30,30 jump 221.7 +244.7 "Absolute Zero" #Ability { id: "99C", source: "Shiva" } +267.7 "Absolute Zero" #Ability { id: "99C", source: "Shiva" } # Phase 3: Sword (85% -> 65%) -400.0 "Melt" sync / 1[56]:[^:]*:Shiva:C7F:/ window 200,0 -409.2 "Icicle Impact (cross)" sync / 1[56]:[^:]*:Shiva:99E:/ -417.3 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:99D:/ +400.0 "Melt" Ability { id: "C7F", source: "Shiva" } window 200,0 +409.2 "Icicle Impact (cross)" Ability { id: "99E", source: "Shiva" } +417.3 "Dreams Of Ice" Ability { id: "99D", source: "Shiva" } -427.9 "Frost Blade" sync / 1[56]:[^:]*:Shiva:993:/ -433.0 "Icebrand" sync / 1[56]:[^:]*:Shiva:996:/ -439.3 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:9A0:/ +427.9 "Frost Blade" Ability { id: "993", source: "Shiva" } +433.0 "Icebrand" Ability { id: "996", source: "Shiva" } +439.3 "Heavenly Strike" Ability { id: "9A0", source: "Shiva" } -451.9 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:9A1:/ -468.7 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:9A0:/ +451.9 "Glacier Bash" Ability { id: "9A1", source: "Shiva" } +468.7 "Heavenly Strike" Ability { id: "9A0", source: "Shiva" } -481.1 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:9A1:/ window 20,20 jump 451.9 -497.9 "Heavenly Strike" #sync / 1[56]:[^:]*:Shiva:9A0:/ +481.1 "Glacier Bash" Ability { id: "9A1", source: "Shiva" } window 20,20 jump 451.9 +497.9 "Heavenly Strike" #Ability { id: "9A0", source: "Shiva" } # Phase 4: Adds -800.0 "Melt" sync / 1[56]:[^:]*:Shiva:994:/ window 800,0 +800.0 "Melt" Ability { id: "994", source: "Shiva" } window 800,0 # If you push *really* fast and skip a weapon phase, you'll miss the melt jump. # So, fix that up with a combatant sync here. -806.2 "--adds targetable--" sync / 03:........:Ice Soldier:/ window 807,2.5 -809.9 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:99D:/ +806.2 "--adds targetable--" AddedCombatant { name: "Ice Soldier" } window 807,2.5 +809.9 "Dreams Of Ice" Ability { id: "99D", source: "Shiva" } # Note: Yes, really. These times are different. -823.6 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:995:/ window 100,100 jump 1023.6 -825.4 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:993:/ window 100,100 jump 1225.4 +823.6 "Frost Staff?" Ability { id: "995", source: "Shiva" } window 100,100 jump 1023.6 +825.4 "Frost Blade?" Ability { id: "993", source: "Shiva" } window 100,100 jump 1225.4 # Phase 4a: Adds (Staff) -1023.6 "Frost Staff" sync / 1[56]:[^:]*:Shiva:995:/ -1031.7 "Hailstorm" sync / 1[56]:[^:]*:Shiva:997:/ -1044.3 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:99C:/ +1023.6 "Frost Staff" Ability { id: "995", source: "Shiva" } +1031.7 "Hailstorm" Ability { id: "997", source: "Shiva" } +1044.3 "Absolute Zero" Ability { id: "99C", source: "Shiva" } -1051.6 "Melt" sync / 1[56]:[^:]*:Shiva:C7F:/ window 100,10 +1051.6 "Melt" Ability { id: "C7F", source: "Shiva" } window 100,10 1052.7 "--untargetable--" -1063.9 "--frozen--" sync / 1[56]:[^:]*:Shiva:C16:/ window 1100,10 -1068.8 "Diamond Dust" sync / 1[56]:[^:]*:Shiva:98A:/ +1063.9 "--frozen--" Ability { id: "C16", source: "Shiva" } window 1100,10 +1068.8 "Diamond Dust" Ability { id: "98A", source: "Shiva" } 1076.0 "--targetable--" -1079.1 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:99D:/ -1088.3 "Icicle Impact (circle)" duration 4 #sync / 1[56]:[^:]*:Shiva:99E:/ +1079.1 "Dreams Of Ice" Ability { id: "99D", source: "Shiva" } +1088.3 "Icicle Impact (circle)" duration 4 #Ability { id: "99E", source: "Shiva" } -1095.3 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:995:/ jump 1400 window 50,90 -1095.3 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:993:/ jump 1600 window 50,90 +1095.3 "Frost Staff?" Ability { id: "995", source: "Shiva" } jump 1400 window 50,90 +1095.3 "Frost Blade?" Ability { id: "993", source: "Shiva" } jump 1600 window 50,90 # Phase 4b: Adds (Blade) -1225.4 "Frost Blade" sync / 1[56]:[^:]*:Shiva:993:/ -1230.5 "Icebrand" sync / 1[56]:[^:]*:Shiva:996:/ -1236.8 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:9A0:/ -1249.2 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:9A1:/ +1225.4 "Frost Blade" Ability { id: "993", source: "Shiva" } +1230.5 "Icebrand" Ability { id: "996", source: "Shiva" } +1236.8 "Heavenly Strike" Ability { id: "9A0", source: "Shiva" } +1249.2 "Glacier Bash" Ability { id: "9A1", source: "Shiva" } # You get 5 extra seconds to kill the adds if it's Blade. -1256.6 "Melt" sync / 1[56]:[^:]*:Shiva:994:/ window 100,10 +1256.6 "Melt" Ability { id: "994", source: "Shiva" } window 100,10 1257.7 "--untargetable--" -1268.9 "--frozen--" sync / 1[56]:[^:]*:Shiva:C16:/ -1273.8 "Diamond Dust" sync / 1[56]:[^:]*:Shiva:98A:/ +1268.9 "--frozen--" Ability { id: "C16", source: "Shiva" } +1273.8 "Diamond Dust" Ability { id: "98A", source: "Shiva" } 1281.0 "--targetable--" -1284.2 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:99D:/ -1293.4 "Icicle Impact (circle)" duration 4 #sync / 1[56]:[^:]*:Shiva:99E:/ +1284.2 "Dreams Of Ice" Ability { id: "99D", source: "Shiva" } +1293.4 "Icicle Impact (circle)" duration 4 #Ability { id: "99E", source: "Shiva" } -1300.6 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:995:/ jump 1400 window 50,90 -1300.6 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:993:/ jump 1600 window 50,90 +1300.6 "Frost Staff?" Ability { id: "995", source: "Shiva" } jump 1400 window 50,90 +1300.6 "Frost Blade?" Ability { id: "993", source: "Shiva" } jump 1600 window 50,90 # Phase 5a: Staff # Note: only one absolute zero here. -1400.0 "Frost Staff" sync / 1[56]:[^:]*:Shiva:995:/ -1408.1 "Hailstorm" sync / 1[56]:[^:]*:Shiva:997:/ -1421.7 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:99C:/ -1432.2 "Melt" sync / 1[56]:[^:]*:Shiva:C7F:/ -1434.3 "Permafrost" sync / 1[56]:[^:]*:Shiva:999:/ -1440.5 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:99D:/ -1450.7 "Icicle Impact" sync / 1[56]:[^:]*:Shiva:99E:/ +1400.0 "Frost Staff" Ability { id: "995", source: "Shiva" } +1408.1 "Hailstorm" Ability { id: "997", source: "Shiva" } +1421.7 "Absolute Zero" Ability { id: "99C", source: "Shiva" } +1432.2 "Melt" Ability { id: "C7F", source: "Shiva" } +1434.3 "Permafrost" Ability { id: "999", source: "Shiva" } +1440.5 "Dreams Of Ice" Ability { id: "99D", source: "Shiva" } +1450.7 "Icicle Impact" Ability { id: "99E", source: "Shiva" } -1454.7 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:995:/ jump 1800 window 50,90 -1454.7 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:993:/ jump 2000 window 50,90 +1454.7 "Frost Staff?" Ability { id: "995", source: "Shiva" } jump 1800 window 50,90 +1454.7 "Frost Blade?" Ability { id: "993", source: "Shiva" } jump 2000 window 50,90 # Phase 5b: Blade # Note: this has the same abilities as 6b, but slightly different timings, # e.g. Heavenly Strike is ~1611 instead of ~1614. -1600.0 "Frost Blade" sync / 1[56]:[^:]*:Shiva:993:/ -1605.3 "Icebrand" sync / 1[56]:[^:]*:Shiva:996:/ -1611.7 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:9A0:/ window 10,10 -1624.2 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:9A1:/ -1634.8 "Melt" sync / 1[56]:[^:]*:Shiva:994:/ -1636.9 "Permafrost" sync / 1[56]:[^:]*:Shiva:999:/ -1643.1 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:99D:/ -1653.3 "Icicle Impact" #sync / 1[56]:[^:]*:Shiva:99E:/ +1600.0 "Frost Blade" Ability { id: "993", source: "Shiva" } +1605.3 "Icebrand" Ability { id: "996", source: "Shiva" } +1611.7 "Heavenly Strike" Ability { id: "9A0", source: "Shiva" } window 10,10 +1624.2 "Glacier Bash" Ability { id: "9A1", source: "Shiva" } +1634.8 "Melt" Ability { id: "994", source: "Shiva" } +1636.9 "Permafrost" Ability { id: "999", source: "Shiva" } +1643.1 "Dreams Of Ice" Ability { id: "99D", source: "Shiva" } +1653.3 "Icicle Impact" #Ability { id: "99E", source: "Shiva" } -1657.6 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:995:/ jump 1800 window 90,90 -1657.6 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:993:/ jump 2000 window 90,90 +1657.6 "Frost Staff?" Ability { id: "995", source: "Shiva" } jump 1800 window 90,90 +1657.6 "Frost Blade?" Ability { id: "993", source: "Shiva" } jump 2000 window 90,90 # Phase 6a: Staff -1800.0 "Frost Staff" sync / 1[56]:[^:]*:Shiva:995:/ -1808.1 "Hailstorm" sync / 1[56]:[^:]*:Shiva:997:/ -1818.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:99C:/ -1823.9 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:99C:/ -1829.2 "Melt" sync / 1[56]:[^:]*:Shiva:C7F:/ -1831.3 "Permafrost" sync / 1[56]:[^:]*:Shiva:999:/ -1837.5 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:99D:/ -1847.8 "Icicle Impact" sync / 1[56]:[^:]*:Shiva:99E:/ +1800.0 "Frost Staff" Ability { id: "995", source: "Shiva" } +1808.1 "Hailstorm" Ability { id: "997", source: "Shiva" } +1818.6 "Absolute Zero" Ability { id: "99C", source: "Shiva" } +1823.9 "Absolute Zero" Ability { id: "99C", source: "Shiva" } +1829.2 "Melt" Ability { id: "C7F", source: "Shiva" } +1831.3 "Permafrost" Ability { id: "999", source: "Shiva" } +1837.5 "Dreams Of Ice" Ability { id: "99D", source: "Shiva" } +1847.8 "Icicle Impact" Ability { id: "99E", source: "Shiva" } -1851.8 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:995:/ jump 1800 window 90,90 -1851.8 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:993:/ jump 2000 window 90,90 +1851.8 "Frost Staff?" Ability { id: "995", source: "Shiva" } jump 1800 window 90,90 +1851.8 "Frost Blade?" Ability { id: "993", source: "Shiva" } jump 2000 window 90,90 # Phase 6b: Blade -2000.0 "Frost Blade" sync / 1[56]:[^:]*:Shiva:993:/ -2005.1 "Icebrand" sync / 1[56]:[^:]*:Shiva:996:/ window 5,5 -2014.5 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:9A0:/ window 5,5 -2024.9 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:9A1:/ -2030.2 "Melt" sync / 1[56]:[^:]*:Shiva:994:/ -2032.3 "Permafrost" sync / 1[56]:[^:]*:Shiva:999:/ -2038.5 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:99D:/ -2048.7 "Icicle Impact" #sync / 1[56]:[^:]*:Shiva:99E:/ - -2053.5 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:995:/ jump 1800 window 90,90 -2053.5 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:993:/ jump 2000 window 90,90 +2000.0 "Frost Blade" Ability { id: "993", source: "Shiva" } +2005.1 "Icebrand" Ability { id: "996", source: "Shiva" } window 5,5 +2014.5 "Heavenly Strike" Ability { id: "9A0", source: "Shiva" } window 5,5 +2024.9 "Glacier Bash" Ability { id: "9A1", source: "Shiva" } +2030.2 "Melt" Ability { id: "994", source: "Shiva" } +2032.3 "Permafrost" Ability { id: "999", source: "Shiva" } +2038.5 "Dreams Of Ice" Ability { id: "99D", source: "Shiva" } +2048.7 "Icicle Impact" #Ability { id: "99E", source: "Shiva" } + +2053.5 "Frost Staff?" Ability { id: "995", source: "Shiva" } jump 1800 window 90,90 +2053.5 "Frost Blade?" Ability { id: "993", source: "Shiva" } jump 2000 window 90,90 diff --git a/ui/raidboss/data/02-arr/trial/titan-ex.txt b/ui/raidboss/data/02-arr/trial/titan-ex.txt index 6e2be98451..942514a61e 100644 --- a/ui/raidboss/data/02-arr/trial/titan-ex.txt +++ b/ui/raidboss/data/02-arr/trial/titan-ex.txt @@ -10,21 +10,21 @@ hideall "--sync--" ### Phase 1: 100->85% 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 - -10.0 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ window 10,10 -18.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ window 20,5 -22.3 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -27.5 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:5B9:/ -37.3 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -41.4 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -48.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ -55.7 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ - -62.0 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ window 15,15 jump 10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 + +10.0 "Landslide" Ability { id: "5BB", source: "Titan" } window 10,10 +18.7 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } window 20,5 +22.3 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +27.5 "Tumult x4" duration 3.5 #Ability { id: "5B9", source: "Titan" } +37.3 "Landslide" Ability { id: "5BB", source: "Titan" } +41.4 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +48.0 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } +55.7 "Mountain Buster" Ability { id: "5B8", source: "Titan" } + +62.0 "Landslide" Ability { id: "5BB", source: "Titan" } window 15,15 jump 10 70.2 "Weight Of The Land" 74.3 "Mountain Buster" -79.5 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:5B9:/ +79.5 "Tumult x4" duration 3.5 #Ability { id: "5B9", source: "Titan" } 89.3 "Landslide" 93.4 "Mountain Buster" 99.5 "Weight Of The Land" @@ -32,38 +32,38 @@ hideall "--sync--" # Phase 2: 85%->55% -200.0 "--sync--" sync / 14:[^:]*:Titan:5C0:/ window 200,0 -203.0 "Geocrush" sync / 1[56]:[^:]*:Titan:5C0:/ - -212.6 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -216.7 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ duration 21.5 -220.8 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -229.8 "Upheaval" sync / 1[56]:[^:]*:Titan:5BA:/ -234.8 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -242.0 "Tumult x4" duration 3.5 # sync / 1[56]:[^:]*:Titan:5B9:/ -251.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ window 15,15 -254.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -262.0 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -271.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ -276.8 "Bury (one side)" sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -278.0 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -287.4 "Burst" sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ - -288.1 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -292.2 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ duration 21.5 -296.3 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -305.4 "Upheaval" sync / 1[56]:[^:]*:Titan:5BA:/ -310.4 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -317.5 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:5B9:/ -326.5 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ window 15,15 -330.1 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -337.3 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -347.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ -351.7 "Bury (clock)" duration 4.2 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -353.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -360.9 "Burst" duration 4.2 #sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ - -363.9 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ window 20,20 jump 212.6 +200.0 "--sync--" StartsUsing { id: "5C0", source: "Titan" } window 200,0 +203.0 "Geocrush" Ability { id: "5C0", source: "Titan" } + +212.6 "Landslide" Ability { id: "5BB", source: "Titan" } +216.7 "Rock Throw" Ability { id: "285", source: "Titan" } duration 21.5 +220.8 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +229.8 "Upheaval" Ability { id: "5BA", source: "Titan" } +234.8 "Landslide" Ability { id: "5BB", source: "Titan" } +242.0 "Tumult x4" duration 3.5 # Ability { id: "5B9", source: "Titan" } +251.0 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } window 15,15 +254.6 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +262.0 "Landslide" Ability { id: "5BB", source: "Titan" } +271.7 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } +276.8 "Bury (one side)" Ability { id: "41B", source: "Bomb Boulder" } +278.0 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +287.4 "Burst" Ability { id: "5BF", source: "Bomb Boulder" } + +288.1 "Landslide" Ability { id: "5BB", source: "Titan" } +292.2 "Rock Throw" Ability { id: "285", source: "Titan" } duration 21.5 +296.3 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +305.4 "Upheaval" Ability { id: "5BA", source: "Titan" } +310.4 "Landslide" Ability { id: "5BB", source: "Titan" } +317.5 "Tumult x4" duration 3.5 #Ability { id: "5B9", source: "Titan" } +326.5 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } window 15,15 +330.1 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +337.3 "Landslide" Ability { id: "5BB", source: "Titan" } +347.0 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } +351.7 "Bury (clock)" duration 4.2 #Ability { id: "41B", source: "Bomb Boulder" } +353.6 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +360.9 "Burst" duration 4.2 #Ability { id: "5BF", source: "Bomb Boulder" } + +363.9 "Landslide" Ability { id: "5BB", source: "Titan" } window 20,20 jump 212.6 368.0 "Rock Throw" 372.1 "Mountain Buster" 381.1 "Upheaval" @@ -78,71 +78,71 @@ hideall "--sync--" ### Phase 3: Heart Phase (at 55%) -500.0 "--sync--" sync / 14:[^:]*:Titan:5C0:/ window 299,0 -503.0 "Geocrush" sync / 1[56]:[^:]*:Titan:5C0:/ -515.6 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ -521.2 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ duration 21.5 -526.0 "Rock Buster" sync / 1[56]:[^:]*:Titan:5B7:/ -533.0 "Upheaval" sync / 1[56]:[^:]*:Titan:5BA:/ -538.0 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -544.0 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:5B9:/ -553.1 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ window 15,15 -561.8 "Rock Buster" sync / 1[56]:[^:]*:Titan:5B7:/ -563.8 "Bury (clock)" duration 3 # sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -570.8 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -572.9 "Burst" duration 3 # sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ -574.9 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:5B9:/ -583.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ +500.0 "--sync--" StartsUsing { id: "5C0", source: "Titan" } window 299,0 +503.0 "Geocrush" Ability { id: "5C0", source: "Titan" } +515.6 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } +521.2 "Rock Throw" Ability { id: "285", source: "Titan" } duration 21.5 +526.0 "Rock Buster" Ability { id: "5B7", source: "Titan" } +533.0 "Upheaval" Ability { id: "5BA", source: "Titan" } +538.0 "Landslide" Ability { id: "5BB", source: "Titan" } +544.0 "Tumult x4" duration 3.5 #Ability { id: "5B9", source: "Titan" } +553.1 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } window 15,15 +561.8 "Rock Buster" Ability { id: "5B7", source: "Titan" } +563.8 "Bury (clock)" duration 3 # Ability { id: "41B", source: "Bomb Boulder" } +570.8 "Landslide" Ability { id: "5BB", source: "Titan" } +572.9 "Burst" duration 3 # Ability { id: "5BF", source: "Bomb Boulder" } +574.9 "Tumult x4" duration 3.5 #Ability { id: "5B9", source: "Titan" } +583.0 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } 593.0 "--untargetable--" ### Phase 4 -700.0 "Earthen Fury" sync / 1[56]:[^:]*:Titan:5C1:/ window 700,0 +700.0 "Earthen Fury" Ability { id: "5C1", source: "Titan" } window 700,0 713.1 "Gaoler Adds (E/W)" -715.8 "Gaoler Tumult" #sync / 1[56]:[^:]*:Granite Gaoler:5C4:/ -716.3 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ - -723.3 "Bury x4" #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -725.8 "Bury x4" #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -730.2 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -732.5 "Burst x4" #sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ -734.9 "Burst x4" #sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ -735.4 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -739.8 "Gaoler Landslide?" #sync / 1[56]:[^:]*:Granite Gaoler:5C3:/ -744.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ - -749.7 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ duration 21.5 -753.9 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ -762.9 "Upheaval" sync / 1[56]:[^:]*:Titan:5BA:/ -767.9 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -779.0 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ window 15,15 -783.2 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:5B9:/ -792.2 "Weight Of The Land 1" #sync / 1[56]:[^:]*:Titan:5BE:/ -794.7 "Weight Of The Land 2" #sync / 1[56]:[^:]*:Titan:5BE:/ -799.9 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ - -804.1 "Bury (row 1)" #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -805.0 "Bury (row 2)" #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -806.1 "Bury (row 3)" #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -811.0 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ -813.1 "Burst 1" #sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ -814.6 "Burst 2" #sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ -816.1 "Burst 3" #sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ -819.2 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ - -832.7 "Bury (all)" sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -837.0 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:5B9:/ -845.9 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:5BE:/ +715.8 "Gaoler Tumult" #Ability { id: "5C4", source: "Granite Gaoler" } +716.3 "Mountain Buster" Ability { id: "5B8", source: "Titan" } + +723.3 "Bury x4" #Ability { id: "41B", source: "Bomb Boulder" } +725.8 "Bury x4" #Ability { id: "41B", source: "Bomb Boulder" } +730.2 "Landslide" Ability { id: "5BB", source: "Titan" } +732.5 "Burst x4" #Ability { id: "5BF", source: "Bomb Boulder" } +734.9 "Burst x4" #Ability { id: "5BF", source: "Bomb Boulder" } +735.4 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +739.8 "Gaoler Landslide?" #Ability { id: "5C3", source: "Granite Gaoler" } +744.0 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } + +749.7 "Rock Throw" Ability { id: "285", source: "Titan" } duration 21.5 +753.9 "Mountain Buster" Ability { id: "5B8", source: "Titan" } +762.9 "Upheaval" Ability { id: "5BA", source: "Titan" } +767.9 "Landslide" Ability { id: "5BB", source: "Titan" } +779.0 "Mountain Buster" Ability { id: "5B8", source: "Titan" } window 15,15 +783.2 "Tumult x4" duration 3.5 #Ability { id: "5B9", source: "Titan" } +792.2 "Weight Of The Land 1" #Ability { id: "5BE", source: "Titan" } +794.7 "Weight Of The Land 2" #Ability { id: "5BE", source: "Titan" } +799.9 "Mountain Buster" Ability { id: "5B8", source: "Titan" } + +804.1 "Bury (row 1)" #Ability { id: "41B", source: "Bomb Boulder" } +805.0 "Bury (row 2)" #Ability { id: "41B", source: "Bomb Boulder" } +806.1 "Bury (row 3)" #Ability { id: "41B", source: "Bomb Boulder" } +811.0 "Landslide" Ability { id: "5BB", source: "Titan" } +813.1 "Burst 1" #Ability { id: "5BF", source: "Bomb Boulder" } +814.6 "Burst 2" #Ability { id: "5BF", source: "Bomb Boulder" } +816.1 "Burst 3" #Ability { id: "5BF", source: "Bomb Boulder" } +819.2 "Mountain Buster" Ability { id: "5B8", source: "Titan" } + +832.7 "Bury (all)" Ability { id: "41B", source: "Bomb Boulder" } +837.0 "Tumult x4" duration 3.5 #Ability { id: "5B9", source: "Titan" } +845.9 "Weight Of The Land" Ability { id: "5BE", source: "Titan" } 852.5 "--untargetable--" -855.1 "Burst" sync / 1[56]:[^:]*:Bomb Boulder:5BF:/ -856.7 "Geocrush" sync / 1[56]:[^:]*:Titan:5C0:/ +855.1 "Burst" Ability { id: "5BF", source: "Bomb Boulder" } +856.7 "Geocrush" Ability { id: "5C0", source: "Titan" } 857.1 "--targetable--" -862.4 "Landslide" sync / 1[56]:[^:]*:Titan:5BB:/ +862.4 "Landslide" Ability { id: "5BB", source: "Titan" } # loop 874.0 "Gaoler Adds (E/W)" -876.7 "Gaoler Tumult" #sync / 1[56]:[^:]*:Granite Gaoler:5C4:/ -877.2 "Mountain Buster" sync / 1[56]:[^:]*:Titan:5B8:/ window 40,40 jump 716.3 +876.7 "Gaoler Tumult" #Ability { id: "5C4", source: "Granite Gaoler" } +877.2 "Mountain Buster" Ability { id: "5B8", source: "Titan" } window 40,40 jump 716.3 884.2 "Bury x4" 886.7 "Bury x4" @@ -155,8 +155,8 @@ hideall "--sync--" ### Enrage -1000.0 "--sync--" sync / 14:[^:]*:Titan:5C2:/ window 1000,1000 -1010.0 "Upheaval Enrage" #sync / 1[56]:[^:]*:Titan:5C2:/ -1022.0 "Upheaval Enrage" #sync / 1[56]:[^:]*:Titan:5C2:/ -1034.0 "Upheaval Enrage" #sync / 1[56]:[^:]*:Titan:5C2:/ -1046.0 "Upheaval Enrage" #sync / 1[56]:[^:]*:Titan:5C2:/ +1000.0 "--sync--" StartsUsing { id: "5C2", source: "Titan" } window 1000,1000 +1010.0 "Upheaval Enrage" #Ability { id: "5C2", source: "Titan" } +1022.0 "Upheaval Enrage" #Ability { id: "5C2", source: "Titan" } +1034.0 "Upheaval Enrage" #Ability { id: "5C2", source: "Titan" } +1046.0 "Upheaval Enrage" #Ability { id: "5C2", source: "Titan" } diff --git a/ui/raidboss/data/02-arr/trial/titan-hm.txt b/ui/raidboss/data/02-arr/trial/titan-hm.txt index 5d380ce43a..40c36b6dd8 100644 --- a/ui/raidboss/data/02-arr/trial/titan-hm.txt +++ b/ui/raidboss/data/02-arr/trial/titan-hm.txt @@ -13,180 +13,180 @@ hideall "--sync--" ### Phase 1: 100->90% 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 -5.0 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ window 5,50 -11.2 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -17.4 "Tumult x2" duration 1.2 #sync / 1[56]:[^:]*:Titan:551:/ +5.0 "Rock Buster" Ability { id: "550", source: "Titan" } window 5,50 +11.2 "Landslide" Ability { id: "554", source: "Titan" } +17.4 "Tumult x2" duration 1.2 #Ability { id: "551", source: "Titan" } -23.7 "Rock Buster" #sync / 1[56]:[^:]*:Titan:550:/ -29.9 "Landslide" #sync / 1[56]:[^:]*:Titan:554:/ -36.1 "Tumult x2" duration 1.2 #sync / 1[56]:[^:]*:Titan:551:/ +23.7 "Rock Buster" #Ability { id: "550", source: "Titan" } +29.9 "Landslide" #Ability { id: "554", source: "Titan" } +36.1 "Tumult x2" duration 1.2 #Ability { id: "551", source: "Titan" } -42.4 "Rock Buster" #sync / 1[56]:[^:]*:Titan:550:/ -48.6 "Landslide" #sync / 1[56]:[^:]*:Titan:554:/ -54.8 "Tumult x2" duration 1.2 #sync / 1[56]:[^:]*:Titan:551:/ +42.4 "Rock Buster" #Ability { id: "550", source: "Titan" } +48.6 "Landslide" #Ability { id: "554", source: "Titan" } +54.8 "Tumult x2" duration 1.2 #Ability { id: "551", source: "Titan" } # Phase 2: 90%->80% -200.0 "--sync--" sync / 14:[^:]*:Titan:555:/ window 200,0 -203.0 "Geocrush" sync / 1[56]:[^:]*:Titan:555:/ +200.0 "--sync--" StartsUsing { id: "555", source: "Titan" } window 200,0 +203.0 "Geocrush" Ability { id: "555", source: "Titan" } -211.4 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ -217.6 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -221.8 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -229.9 "Tumult x3" duration 2.4 #sync / 1[56]:[^:]*:Titan:551:/ +211.4 "Weight Of The Land" Ability { id: "552", source: "Titan" } +217.6 "Rock Buster" Ability { id: "550", source: "Titan" } +221.8 "Landslide" Ability { id: "554", source: "Titan" } +229.9 "Tumult x3" duration 2.4 #Ability { id: "551", source: "Titan" } -239.4 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ window 40,40 jump 211.4 -245.6 "Rock Buster" #sync / 1[56]:[^:]*:Titan:550:/ -249.8 "Landslide" #sync / 1[56]:[^:]*:Titan:554:/ -257.9 "Tumult x3" duration 2.4 #sync / 1[56]:[^:]*:Titan:551:/ +239.4 "Weight Of The Land" Ability { id: "552", source: "Titan" } window 40,40 jump 211.4 +245.6 "Rock Buster" #Ability { id: "550", source: "Titan" } +249.8 "Landslide" #Ability { id: "554", source: "Titan" } +257.9 "Tumult x3" duration 2.4 #Ability { id: "551", source: "Titan" } -267.4 "Weight Of The Land" #sync / 1[56]:[^:]*:Titan:552:/ -273.6 "Rock Buster" #sync / 1[56]:[^:]*:Titan:550:/ -277.8 "Landslide" #sync / 1[56]:[^:]*:Titan:554:/ -285.9 "Tumult x3" duration 2.4 #sync / 1[56]:[^:]*:Titan:551:/ +267.4 "Weight Of The Land" #Ability { id: "552", source: "Titan" } +273.6 "Rock Buster" #Ability { id: "550", source: "Titan" } +277.8 "Landslide" #Ability { id: "554", source: "Titan" } +285.9 "Tumult x3" duration 2.4 #Ability { id: "551", source: "Titan" } # Phase 3: 80%->60% -400.0 "--sync--" sync / 14:[^:]*:Titan:555:/ window 199,0 -403.0 "Geocrush" sync / 1[56]:[^:]*:Titan:555:/ -411.9 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -420.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ - -425.1 "Bury (clock)" duration 4 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -429.9 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -434.3 "Burst" duration 4 #sync / 1[56]:[^:]*:Bomb Boulder:41C:/ - -439.5 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -445.6 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ -449.7 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -456.8 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -459.8 "Tumult x3" duration 2.4 #sync / 1[56]:[^:]*:Titan:551:/ -469.5 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -477.6 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ - -482.7 "Bury (diamond)" duration 2 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -487.5 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -491.9 "Burst" duration 3 #sync / 1[56]:[^:]*:Bomb Boulder:41C:/ - -497.2 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -503.3 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ -507.6 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -514.8 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -517.8 "Tumult x3" duration 2.4 #sync / 1[56]:[^:]*:Titan:551:/ -528.1 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -536.2 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ window 30,30 jump 420.0 - -541.3 "Bury (clock)" duration 4 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -546.1 "Rock Buster" #sync / 1[56]:[^:]*:Titan:550:/ -550.5 "Burst" duration 4 #sync / 1[56]:[^:]*:Bomb Boulder:41C:/ - -555.7 "Landslide" #sync / 1[56]:[^:]*:Titan:554:/ -561.8 "Weight Of The Land" #sync / 1[56]:[^:]*:Titan:552:/ -565.9 "Rock Throw" #sync / 1[56]:[^:]*:Titan:285:/ -573.0 "Rock Buster" #sync / 1[56]:[^:]*:Titan:550:/ -576.0 "Tumult x3" duration 2.4 #sync / 1[56]:[^:]*:Titan:551:/ -585.7 "Landslide" #sync / 1[56]:[^:]*:Titan:554:/ -593.8 "Weight Of The Land" #sync / 1[56]:[^:]*:Titan:552:/ +400.0 "--sync--" StartsUsing { id: "555", source: "Titan" } window 199,0 +403.0 "Geocrush" Ability { id: "555", source: "Titan" } +411.9 "Landslide" Ability { id: "554", source: "Titan" } +420.0 "Weight Of The Land" Ability { id: "552", source: "Titan" } + +425.1 "Bury (clock)" duration 4 #Ability { id: "41B", source: "Bomb Boulder" } +429.9 "Rock Buster" Ability { id: "550", source: "Titan" } +434.3 "Burst" duration 4 #Ability { id: "41C", source: "Bomb Boulder" } + +439.5 "Landslide" Ability { id: "554", source: "Titan" } +445.6 "Weight Of The Land" Ability { id: "552", source: "Titan" } +449.7 "Rock Throw" Ability { id: "285", source: "Titan" } +456.8 "Rock Buster" Ability { id: "550", source: "Titan" } +459.8 "Tumult x3" duration 2.4 #Ability { id: "551", source: "Titan" } +469.5 "Landslide" Ability { id: "554", source: "Titan" } +477.6 "Weight Of The Land" Ability { id: "552", source: "Titan" } + +482.7 "Bury (diamond)" duration 2 #Ability { id: "41B", source: "Bomb Boulder" } +487.5 "Rock Buster" Ability { id: "550", source: "Titan" } +491.9 "Burst" duration 3 #Ability { id: "41C", source: "Bomb Boulder" } + +497.2 "Landslide" Ability { id: "554", source: "Titan" } +503.3 "Weight Of The Land" Ability { id: "552", source: "Titan" } +507.6 "Rock Throw" Ability { id: "285", source: "Titan" } +514.8 "Rock Buster" Ability { id: "550", source: "Titan" } +517.8 "Tumult x3" duration 2.4 #Ability { id: "551", source: "Titan" } +528.1 "Landslide" Ability { id: "554", source: "Titan" } +536.2 "Weight Of The Land" Ability { id: "552", source: "Titan" } window 30,30 jump 420.0 + +541.3 "Bury (clock)" duration 4 #Ability { id: "41B", source: "Bomb Boulder" } +546.1 "Rock Buster" #Ability { id: "550", source: "Titan" } +550.5 "Burst" duration 4 #Ability { id: "41C", source: "Bomb Boulder" } + +555.7 "Landslide" #Ability { id: "554", source: "Titan" } +561.8 "Weight Of The Land" #Ability { id: "552", source: "Titan" } +565.9 "Rock Throw" #Ability { id: "285", source: "Titan" } +573.0 "Rock Buster" #Ability { id: "550", source: "Titan" } +576.0 "Tumult x3" duration 2.4 #Ability { id: "551", source: "Titan" } +585.7 "Landslide" #Ability { id: "554", source: "Titan" } +593.8 "Weight Of The Land" #Ability { id: "552", source: "Titan" } # Phase 4: Heart -800.0 "--sync--" sync / 14:[^:]*:Titan:555:/ window 399,0 -803.0 "Geocrush" sync / 1[56]:[^:]*:Titan:555:/ +800.0 "--sync--" StartsUsing { id: "555", source: "Titan" } window 399,0 +803.0 "Geocrush" Ability { id: "555", source: "Titan" } 805.3 "--targetable--" -812.3 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -816.4 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -820.6 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -828.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ +812.3 "Rock Throw" Ability { id: "285", source: "Titan" } +816.4 "Rock Buster" Ability { id: "550", source: "Titan" } +820.6 "Landslide" Ability { id: "554", source: "Titan" } +828.7 "Weight Of The Land" Ability { id: "552", source: "Titan" } -834.8 "Tumult x3" duration 2.4 #sync / 1[56]:[^:]*:Titan:551:/ +834.8 "Tumult x3" duration 2.4 #Ability { id: "551", source: "Titan" } -842.5 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -846.6 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -850.8 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -858.9 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ +842.5 "Rock Throw" Ability { id: "285", source: "Titan" } +846.6 "Rock Buster" Ability { id: "550", source: "Titan" } +850.8 "Landslide" Ability { id: "554", source: "Titan" } +858.9 "Weight Of The Land" Ability { id: "552", source: "Titan" } 868.2 "--untargetable--" # Phase 5: 60%->0% -873.7 "Earthen Fury" sync / 1[56]:[^:]*:Titan:556:/ window 1000,30 +873.7 "Earthen Fury" Ability { id: "556", source: "Titan" } window 1000,30 878.4 "--targetable--" -882.5 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ -886.6 "Tumult x4" duration 3.6 #sync / 1[56]:[^:]*:Titan:551:/ -895.3 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ - -900.4 "Bury (line)" duration 2 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -908.4 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -909.4 "Burst" duration 3 #sync / 1[56]:[^:]*:Bomb Boulder:41C:/ - -912.6 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -916.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ -922.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ -927.2 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -937.5 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -941.6 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -945.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ -949.7 "Tumult x4" duration 3.6 #sync / 1[56]:[^:]*:Titan:551:/ -958.4 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ - -963.5 "Bury (clock)" duration 4 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -972.0 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -972.7 "Burst" duration 4 #sync / 1[56]:[^:]*:Bomb Boulder:41C:/ - -976.2 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -980.2 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ -986.3 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ -990.9 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -1001.1 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -1005.2 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -1009.2 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ -1013.3 "Tumult x4" duration 3.6 #sync / 1[56]:[^:]*:Titan:551:/ -1022.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ - -1027.1 "Bury (line)" duration 2 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -1035.4 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -1036.2 "Burst" duration 3 #sync / 1[56]:[^:]*:Bomb Boulder:41C:/ - -1039.6 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -1043.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ -1049.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ -1054.5 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -1064.8 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -1068.9 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -1072.9 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ -1077.0 "Tumult x4" duration 3.6 #sync / 1[56]:[^:]*:Titan:551:/ -1085.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ - -1090.8 "Bury (diamond)" duration 2 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -1099.3 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -1100.0 "Burst" duration 3 #sync / 1[56]:[^:]*:Bomb Boulder:41C:/ - -1103.5 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -1107.5 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ -1113.6 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ -1118.2 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -1128.5 "Landslide" sync / 1[56]:[^:]*:Titan:554:/ -1132.6 "Rock Buster" sync / 1[56]:[^:]*:Titan:550:/ -1136.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:283:/ - -1140.7 "Tumult x5" duration 4.8 #sync / 1[56]:[^:]*:Titan:551:/ - -1150.6 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:552:/ window 20,20 jump 895.3 - -1155.7 "Bury (line)" #duration 2 #sync / 1[56]:[^:]*:Bomb Boulder:41B:/ -1163.7 "Landslide" #sync / 1[56]:[^:]*:Titan:554:/ -1164.7 "Burst" duration 3 #sync / 1[56]:[^:]*:Bomb Boulder:41C:/ - -1167.9 "Rock Buster" #sync / 1[56]:[^:]*:Titan:550:/ -1171.9 "Mountain Buster" #sync / 1[56]:[^:]*:Titan:283:/ -1178.0 "Weight Of The Land" #sync / 1[56]:[^:]*:Titan:552:/ -1182.5 "Rock Throw" #sync / 1[56]:[^:]*:Titan:285:/ -1192.8 "Landslide" #sync / 1[56]:[^:]*:Titan:554:/ -1196.9 "Rock Buster" #sync / 1[56]:[^:]*:Titan:550:/ -1200.9 "Mountain Buster" #sync / 1[56]:[^:]*:Titan:283:/ -1205.0 "Tumult x4" duration 3.6 #sync / 1[56]:[^:]*:Titan:551:/ -1213.7 "Weight Of The Land" #sync / 1[56]:[^:]*:Titan:552:/ +882.5 "Mountain Buster" Ability { id: "283", source: "Titan" } +886.6 "Tumult x4" duration 3.6 #Ability { id: "551", source: "Titan" } +895.3 "Weight Of The Land" Ability { id: "552", source: "Titan" } + +900.4 "Bury (line)" duration 2 #Ability { id: "41B", source: "Bomb Boulder" } +908.4 "Landslide" Ability { id: "554", source: "Titan" } +909.4 "Burst" duration 3 #Ability { id: "41C", source: "Bomb Boulder" } + +912.6 "Rock Buster" Ability { id: "550", source: "Titan" } +916.6 "Mountain Buster" Ability { id: "283", source: "Titan" } +922.7 "Weight Of The Land" Ability { id: "552", source: "Titan" } +927.2 "Rock Throw" Ability { id: "285", source: "Titan" } +937.5 "Landslide" Ability { id: "554", source: "Titan" } +941.6 "Rock Buster" Ability { id: "550", source: "Titan" } +945.6 "Mountain Buster" Ability { id: "283", source: "Titan" } +949.7 "Tumult x4" duration 3.6 #Ability { id: "551", source: "Titan" } +958.4 "Weight Of The Land" Ability { id: "552", source: "Titan" } + +963.5 "Bury (clock)" duration 4 #Ability { id: "41B", source: "Bomb Boulder" } +972.0 "Landslide" Ability { id: "554", source: "Titan" } +972.7 "Burst" duration 4 #Ability { id: "41C", source: "Bomb Boulder" } + +976.2 "Rock Buster" Ability { id: "550", source: "Titan" } +980.2 "Mountain Buster" Ability { id: "283", source: "Titan" } +986.3 "Weight Of The Land" Ability { id: "552", source: "Titan" } +990.9 "Rock Throw" Ability { id: "285", source: "Titan" } +1001.1 "Landslide" Ability { id: "554", source: "Titan" } +1005.2 "Rock Buster" Ability { id: "550", source: "Titan" } +1009.2 "Mountain Buster" Ability { id: "283", source: "Titan" } +1013.3 "Tumult x4" duration 3.6 #Ability { id: "551", source: "Titan" } +1022.0 "Weight Of The Land" Ability { id: "552", source: "Titan" } + +1027.1 "Bury (line)" duration 2 #Ability { id: "41B", source: "Bomb Boulder" } +1035.4 "Landslide" Ability { id: "554", source: "Titan" } +1036.2 "Burst" duration 3 #Ability { id: "41C", source: "Bomb Boulder" } + +1039.6 "Rock Buster" Ability { id: "550", source: "Titan" } +1043.6 "Mountain Buster" Ability { id: "283", source: "Titan" } +1049.7 "Weight Of The Land" Ability { id: "552", source: "Titan" } +1054.5 "Rock Throw" Ability { id: "285", source: "Titan" } +1064.8 "Landslide" Ability { id: "554", source: "Titan" } +1068.9 "Rock Buster" Ability { id: "550", source: "Titan" } +1072.9 "Mountain Buster" Ability { id: "283", source: "Titan" } +1077.0 "Tumult x4" duration 3.6 #Ability { id: "551", source: "Titan" } +1085.7 "Weight Of The Land" Ability { id: "552", source: "Titan" } + +1090.8 "Bury (diamond)" duration 2 #Ability { id: "41B", source: "Bomb Boulder" } +1099.3 "Landslide" Ability { id: "554", source: "Titan" } +1100.0 "Burst" duration 3 #Ability { id: "41C", source: "Bomb Boulder" } + +1103.5 "Rock Buster" Ability { id: "550", source: "Titan" } +1107.5 "Mountain Buster" Ability { id: "283", source: "Titan" } +1113.6 "Weight Of The Land" Ability { id: "552", source: "Titan" } +1118.2 "Rock Throw" Ability { id: "285", source: "Titan" } +1128.5 "Landslide" Ability { id: "554", source: "Titan" } +1132.6 "Rock Buster" Ability { id: "550", source: "Titan" } +1136.6 "Mountain Buster" Ability { id: "283", source: "Titan" } + +1140.7 "Tumult x5" duration 4.8 #Ability { id: "551", source: "Titan" } + +1150.6 "Weight Of The Land" Ability { id: "552", source: "Titan" } window 20,20 jump 895.3 + +1155.7 "Bury (line)" #duration 2 #Ability { id: "41B", source: "Bomb Boulder" } +1163.7 "Landslide" #Ability { id: "554", source: "Titan" } +1164.7 "Burst" duration 3 #Ability { id: "41C", source: "Bomb Boulder" } + +1167.9 "Rock Buster" #Ability { id: "550", source: "Titan" } +1171.9 "Mountain Buster" #Ability { id: "283", source: "Titan" } +1178.0 "Weight Of The Land" #Ability { id: "552", source: "Titan" } +1182.5 "Rock Throw" #Ability { id: "285", source: "Titan" } +1192.8 "Landslide" #Ability { id: "554", source: "Titan" } +1196.9 "Rock Buster" #Ability { id: "550", source: "Titan" } +1200.9 "Mountain Buster" #Ability { id: "283", source: "Titan" } +1205.0 "Tumult x4" duration 3.6 #Ability { id: "551", source: "Titan" } +1213.7 "Weight Of The Land" #Ability { id: "552", source: "Titan" } diff --git a/ui/raidboss/data/02-arr/trial/titan-nm.txt b/ui/raidboss/data/02-arr/trial/titan-nm.txt index f2255a5760..e0ab52cd03 100644 --- a/ui/raidboss/data/02-arr/trial/titan-nm.txt +++ b/ui/raidboss/data/02-arr/trial/titan-nm.txt @@ -6,18 +6,18 @@ hideall "--sync--" ### Phase 1 100 -> 85% 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -5.0 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ window 5,5 -7.0 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ -16.1 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ -19.2 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -25.2 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ window 8,8 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +5.0 "Rock Buster" Ability { id: "281", source: "Titan" } window 5,5 +7.0 "Tumult" Ability { id: "282", source: "Titan" } +16.1 "Tumult" Ability { id: "282", source: "Titan" } +19.2 "Rock Buster" Ability { id: "281", source: "Titan" } +25.2 "Tumult" Ability { id: "282", source: "Titan" } window 8,8 -32.3 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -34.3 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ -43.4 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ -46.5 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -52.5 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ window 8,8 jump 25.2 +32.3 "Rock Buster" Ability { id: "281", source: "Titan" } +34.3 "Tumult" Ability { id: "282", source: "Titan" } +43.4 "Tumult" Ability { id: "282", source: "Titan" } +46.5 "Rock Buster" Ability { id: "281", source: "Titan" } +52.5 "Tumult" Ability { id: "282", source: "Titan" } window 8,8 jump 25.2 59.6 "Rock Buster" 61.6 "Tumult" @@ -26,70 +26,70 @@ hideall "--sync--" 79.8 "Tumult" ### Phase 2 85 -> 55% -200.0 "--sync--" sync / 14:[^:]*:Titan:28B:/ window 200,0 -203.0 "Geocrush" sync / 1[56]:[^:]*:Titan:28B:/ +200.0 "--sync--" StartsUsing { id: "28B", source: "Titan" } window 200,0 +203.0 "Geocrush" Ability { id: "28B", source: "Titan" } -211.6 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ window 211,17 -217.8 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -221.8 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ -229.1 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -235.3 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -239.3 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ window 17,16 +211.6 "Landslide" Ability { id: "28A", source: "Titan" } window 211,17 +217.8 "Rock Buster" Ability { id: "281", source: "Titan" } +221.8 "Tumult" Ability { id: "282", source: "Titan" } +229.1 "Landslide" Ability { id: "28A", source: "Titan" } +235.3 "Rock Buster" Ability { id: "281", source: "Titan" } +239.3 "Tumult" Ability { id: "282", source: "Titan" } window 17,16 -246.6 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -252.8 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -256.8 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ window 15,17 -264.1 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -270.2 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -274.2 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ window 17,16 jump 239.3 +246.6 "Landslide" Ability { id: "28A", source: "Titan" } +252.8 "Rock Buster" Ability { id: "281", source: "Titan" } +256.8 "Tumult" Ability { id: "282", source: "Titan" } window 15,17 +264.1 "Landslide" Ability { id: "28A", source: "Titan" } +270.2 "Rock Buster" Ability { id: "281", source: "Titan" } +274.2 "Tumult" Ability { id: "282", source: "Titan" } window 17,16 jump 239.3 ### including syncs until a decision is made to keep or remove them. Potential FIX ME! -281.6 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -287.8 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -291.8 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ window 15,17 -299.1 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -305.2 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -309.2 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ +281.6 "Landslide" Ability { id: "28A", source: "Titan" } +287.8 "Rock Buster" Ability { id: "281", source: "Titan" } +291.8 "Tumult" Ability { id: "282", source: "Titan" } window 15,17 +299.1 "Landslide" Ability { id: "28A", source: "Titan" } +305.2 "Rock Buster" Ability { id: "281", source: "Titan" } +309.2 "Tumult" Ability { id: "282", source: "Titan" } ### Phase 3 Heart Phase (55%) -400.0 "--sync--" sync / 14:[^:]*:Titan:28B:/ window 196,0 -403.0 "Geocrush" sync / 1[56]:[^:]*:Titan:28B:/ -413.6 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -421.5 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -427.6 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ window 20,15 -431.6 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ -435.1 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -442.9 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -449.1 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -453.1 "Tumult" sync / 1[56]:[^:]*:Titan:282:/ window 16,25 -464.6 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ +400.0 "--sync--" StartsUsing { id: "28B", source: "Titan" } window 196,0 +403.0 "Geocrush" Ability { id: "28B", source: "Titan" } +413.6 "Rock Throw" Ability { id: "285", source: "Titan" } +421.5 "Landslide" Ability { id: "28A", source: "Titan" } +427.6 "Rock Buster" Ability { id: "281", source: "Titan" } window 20,15 +431.6 "Tumult" Ability { id: "282", source: "Titan" } +435.1 "Rock Throw" Ability { id: "285", source: "Titan" } +442.9 "Landslide" Ability { id: "28A", source: "Titan" } +449.1 "Rock Buster" Ability { id: "281", source: "Titan" } +453.1 "Tumult" Ability { id: "282", source: "Titan" } window 16,25 +464.6 "Landslide" Ability { id: "28A", source: "Titan" } 473.6 "Enrage" ### Phase 4 55 -> 0% -600.0 "--sync--" sync / 14:[^:]*:Earthen Fury:28C:/ window 600,0 -601.1 "Earthen Fury" sync / 1[56]:[^:]*:Titan:28C:/ +600.0 "--sync--" StartsUsing { id: "28C", source: "Earthen Fury" } window 600,0 +601.1 "Earthen Fury" Ability { id: "28C", source: "Titan" } -614.1 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -620.2 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -624.2 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:284:/ window 626,23 -630.3 "Tumult x2" duration 2.5 #sync / 1[56]:[^:]*:Titan:282:/ -636.5 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -643.6 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -649.7 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -653.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:284:/ window 23,26 -659.8 "Tumult x2" duration 2.5 #sync / 1[56]:[^:]*:Titan:282:/ -667.0 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ +614.1 "Landslide" Ability { id: "28A", source: "Titan" } +620.2 "Rock Buster" Ability { id: "281", source: "Titan" } +624.2 "Weight Of The Land" Ability { id: "284", source: "Titan" } window 626,23 +630.3 "Tumult x2" duration 2.5 #Ability { id: "282", source: "Titan" } +636.5 "Rock Throw" Ability { id: "285", source: "Titan" } +643.6 "Landslide" Ability { id: "28A", source: "Titan" } +649.7 "Rock Buster" Ability { id: "281", source: "Titan" } +653.7 "Weight Of The Land" Ability { id: "284", source: "Titan" } window 23,26 +659.8 "Tumult x2" duration 2.5 #Ability { id: "282", source: "Titan" } +667.0 "Rock Throw" Ability { id: "285", source: "Titan" } -674.1 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -680.2 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -684.2 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:284:/ window 26,24 -690.3 "Tumult x2" duration 2.5 #sync / 1[56]:[^:]*:Titan:282:/ -696.5 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ -703.6 "Landslide" sync / 1[56]:[^:]*:Titan:28A:/ -709.7 "Rock Buster" sync / 1[56]:[^:]*:Titan:281:/ -713.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:284:/ -719.8 "Tumult x2" duration 2.5 #sync / 1[56]:[^:]*:Titan:282:/ window 28,23 -727.0 "Rock Throw" sync / 1[56]:[^:]*:Titan:285:/ window 29,28 jump 667.0 +674.1 "Landslide" Ability { id: "28A", source: "Titan" } +680.2 "Rock Buster" Ability { id: "281", source: "Titan" } +684.2 "Weight Of The Land" Ability { id: "284", source: "Titan" } window 26,24 +690.3 "Tumult x2" duration 2.5 #Ability { id: "282", source: "Titan" } +696.5 "Rock Throw" Ability { id: "285", source: "Titan" } +703.6 "Landslide" Ability { id: "28A", source: "Titan" } +709.7 "Rock Buster" Ability { id: "281", source: "Titan" } +713.7 "Weight Of The Land" Ability { id: "284", source: "Titan" } +719.8 "Tumult x2" duration 2.5 #Ability { id: "282", source: "Titan" } window 28,23 +727.0 "Rock Throw" Ability { id: "285", source: "Titan" } window 29,28 jump 667.0 734.1 "Landslide" 740.2 "Rock Buster" diff --git a/ui/raidboss/data/02-arr/trial/ultima-ex.txt b/ui/raidboss/data/02-arr/trial/ultima-ex.txt index 6fa16441cb..bcf5b8bd41 100644 --- a/ui/raidboss/data/02-arr/trial/ultima-ex.txt +++ b/ui/raidboss/data/02-arr/trial/ultima-ex.txt @@ -4,21 +4,21 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 # Phase 1: 100% - 85% -3.2 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ window 3.2,10 -15.1 "Vulcan Burst" sync / 1[56]:[^:]*:The Ultima Weapon:5EE:/ -16.6 "Mistral Song" sync / 1[56]:[^:]*:Ultima Garuda:5ED:/ -26.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -29.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -33.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ window 10,10 -41.3 "Eye of the Storm" sync / 1[56]:[^:]*:The Ultima Weapon:5EF:/ -43.9 "Geocrush" sync / 1[56]:[^:]*:Ultima Titan:5F0:/ -48.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -51.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ - -55.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ window 10,10 jump 3.2 +3.2 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } window 3.2,10 +15.1 "Vulcan Burst" Ability { id: "5EE", source: "The Ultima Weapon" } +16.6 "Mistral Song" Ability { id: "5ED", source: "Ultima Garuda" } +26.4 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +29.7 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +33.0 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } window 10,10 +41.3 "Eye of the Storm" Ability { id: "5EF", source: "The Ultima Weapon" } +43.9 "Geocrush" Ability { id: "5F0", source: "Ultima Titan" } +48.4 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +51.7 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } + +55.0 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } window 10,10 jump 3.2 66.9 "Vulcan Burst" 68.4 "Mistral Song" 78.2 "Homing Lasers" @@ -29,36 +29,36 @@ hideall "--sync--" # Phase 2: 84.9% - 65% # The animation for Garuda dying precedes this, # but there are no log lines that show for her death. -98.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ window 98.3,5 -100.0 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -103.0 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:5F2:/ -107.1 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ - -115.9 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ window 30,30 -119.3 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -125.6 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -129.6 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:5F2:/ -130.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -134.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -141.3 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -148.6 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -151.6 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:5F2:/ -152.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -156.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ - -164.8 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ window 30,30 -168.2 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -175.5 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -179.5 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:5F2:/ -179.6 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -182.9 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -190.3 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -195.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -198.6 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -201.6 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:5F2:/ -203.7 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ - -212.5 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ window 30,30 jump 164.8 +98.3 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } window 98.3,5 +100.0 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +103.0 "Weight of the Land" Ability { id: "5F2", source: "The Ultima Weapon" } +107.1 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } + +115.9 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } window 30,30 +119.3 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +125.6 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +129.6 "Weight of the Land" Ability { id: "5F2", source: "The Ultima Weapon" } +130.7 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +134.0 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +141.3 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +148.6 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +151.6 "Weight of the Land" Ability { id: "5F2", source: "The Ultima Weapon" } +152.7 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +156.0 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } + +164.8 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } window 30,30 +168.2 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +175.5 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +179.5 "Weight of the Land" Ability { id: "5F2", source: "The Ultima Weapon" } +179.6 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +182.9 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +190.3 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +195.7 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +198.6 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +201.6 "Weight of the Land" Ability { id: "5F2", source: "The Ultima Weapon" } +203.7 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } + +212.5 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } window 30,30 jump 164.8 215.9 "Homing Lasers" 223.2 "Radiant Plume" 227.2 "Weight of the Land" @@ -71,33 +71,33 @@ hideall "--sync--" # The phase opens with what seems to be a *long* set of fixed blocks. # A Viscous Aetheroplasm may or may not be skipped. -297.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F4:/ window 297.3,0 -300.0 "Eruption x5" duration 8 #sync / 1[56]:[^:]*:The Ultima Weapon:5F4:/ -306.6 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -315.3 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ window 15,15 -318.6 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -323.9 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -327.2 "Viscous Aetheroplasm?" #sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -332.4 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ window 10,2.5 -335.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -337.9 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:5F5:/ -339.2 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -343.2 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -345.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ window 15,15 -345.9 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:5F5:/ -347.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -352.7 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ - -360.6 "Eruption x5" duration 8 #sync / 1[56]:[^:]*:The Ultima Weapon:5F4:/ -365.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -368.5 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -377.2 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ window 15,15 -380.6 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ +297.3 "--sync--" StartsUsing { id: "5F4", source: "The Ultima Weapon" } window 297.3,0 +300.0 "Eruption x5" duration 8 #Ability { id: "5F4", source: "The Ultima Weapon" } +306.6 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +315.3 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } window 15,15 +318.6 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +323.9 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +327.2 "Viscous Aetheroplasm?" #Ability { id: "5DF", source: "The Ultima Weapon" } +332.4 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } window 10,2.5 +335.1 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +337.9 "Crimson Cyclone" Ability { id: "5F5", source: "Ultima Ifrit" } +339.2 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +343.2 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +345.4 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } window 15,15 +345.9 "Crimson Cyclone" Ability { id: "5F5", source: "Ultima Ifrit" } +347.1 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +352.7 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } + +360.6 "Eruption x5" duration 8 #Ability { id: "5F4", source: "The Ultima Weapon" } +365.1 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +368.5 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +377.2 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } window 15,15 +380.6 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } # A possible extra block is here, but it doesn't seem to change the rotation. # Ceruleum Vent jumps to a small sidetrack before continuing. -385.2 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ window 15,15 jump 547.3 # Radiant Plume -385.9 "Ceruleum Vent?" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ window 15,15 jump 450 +385.2 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } window 15,15 jump 547.3 # Radiant Plume +385.9 "Ceruleum Vent?" Ability { id: "5E0", source: "The Ultima Weapon" } window 15,15 jump 450 387.9 "Radiant Plume?" 389.2 "Viscous Aetheroplasm?" 390.7 "Crimson Cyclone?" @@ -106,26 +106,26 @@ hideall "--sync--" 396.5 "Homing Lasers?" # Vent sidetrack into normal early Eruption block -450.0 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -453.3 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -460.6 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -466.0 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ +450.0 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +453.3 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +460.6 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +466.0 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } # Normal early Eruption block -466.5 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F4:/ window 30,1 -469.2 "Eruption x5" duration 8 #sync / 1[56]:[^:]*:The Ultima Weapon:5F4:/ -475.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -483.8 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ window 15,15 -487.1 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -492.5 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ +466.5 "--sync--" StartsUsing { id: "5F4", source: "The Ultima Weapon" } window 30,1 +469.2 "Eruption x5" duration 8 #Ability { id: "5F4", source: "The Ultima Weapon" } +475.0 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +483.8 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } window 15,15 +487.1 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +492.5 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } # Eruption and Cyclone blocks will alternate from here. # *However*, at any time, a Viscous Aetheroplasm bridge may follow. # Subesquent blocks are different, ending with an Aetheroplasm rather than a Vent. -492.7 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ window 20,20 jump 547.3 # Radiant Plume +492.7 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } window 20,20 jump 547.3 # Radiant Plume 495.4 "Radiant Plume?" -495.8 "Viscous Aetheroplasm?" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ window 15,15 jump 650 +495.8 "Viscous Aetheroplasm?" Ability { id: "5DF", source: "The Ultima Weapon" } window 15,15 jump 650 498.2 "Crimson Cyclone?" 499.5 "Radiant Plume" 503.1 "Homing Lasers?" @@ -136,22 +136,22 @@ hideall "--sync--" # Ceruleum Vent doesn't always happen during these Cyclone blocks. # However, timings don't seem dependent on its use, # so we can safely just not sync it and leave the block alone. -547.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ -550.0 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -552.8 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:5F5:/ -554.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -558.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -560.9 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:5F5:/ -561.1 "Ceruleum Vent?" #sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -562.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -564.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -571.7 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -577.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ +547.3 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } +550.0 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +552.8 "Crimson Cyclone" Ability { id: "5F5", source: "Ultima Ifrit" } +554.1 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +558.1 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +560.9 "Crimson Cyclone" Ability { id: "5F5", source: "Ultima Ifrit" } +561.1 "Ceruleum Vent?" #Ability { id: "5E0", source: "The Ultima Weapon" } +562.1 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +564.4 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +571.7 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +577.1 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } # Jump to the Aetheroplasm bridge or the early Eruption block -577.4 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F4:/ window 20,20 jump 466.5 +577.4 "--sync--" StartsUsing { id: "5F4", source: "The Ultima Weapon" } window 20,20 jump 466.5 580.1 "Eruption x5?" -580.4 "Viscous Aetheroplasm?" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ window 5,5 jump 650 +580.4 "Viscous Aetheroplasm?" Ability { id: "5DF", source: "The Ultima Weapon" } window 5,5 jump 650 585.9 "Viscous Aetheroplasm?" 587.7 "Homing Lasers?" 593.0 "Ceruleum Vent?" @@ -160,54 +160,54 @@ hideall "--sync--" # An Aetheroplasm immediately following a Vent seems to indicate the start of the late rotation. # If this block follows an Eruption block, Tank Purge is skipped. # If this block follows a Cyclone block, Aetheroplasm is skipped -650.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -658.7 "Tank Purge?" #sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ -662.0 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ window 12,5 -667.3 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -670.7 "Viscous Aetheroplasm?" #sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ +650.0 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +658.7 "Tank Purge?" #Ability { id: "5EA", source: "The Ultima Weapon" } +662.0 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } window 12,5 +667.3 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +670.7 "Viscous Aetheroplasm?" #Ability { id: "5DF", source: "The Ultima Weapon" } # From here, the late Cyclone/EruptionHoming Lasers blocks are added. -669.9 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ window 15,15 jump 697.3 # Radiant Plume -671.0 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F4:/ window 15,15 jump 797.3 # Eruption +669.9 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } window 15,15 jump 697.3 # Radiant Plume +671.0 "--sync--" StartsUsing { id: "5F4", source: "The Ultima Weapon" } window 15,15 jump 797.3 # Eruption 672.6 "Radiant Plume?" 673.7 "Eruption x5?" 675.4 "Crimson Cyclone?" 676.7 "Radiant Plume?" -678.0 "Homing Lasers?" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ window 10,10 jump 900 +678.0 "Homing Lasers?" Ability { id: "5E1", source: "The Ultima Weapon" } window 10,10 jump 900 680.7 "Radiant Plume?" 684.3 "Tank Purge?" # Late Cyclone block -697.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ -700.0 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -702.8 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:5F5:/ -704.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -708.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -710.9 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:5F5:/ -712.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:5F1:/ -716.1 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ window 12,5 -721.4 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -724.7 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ - -727.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F4:/ window 15,15 jump 797.3 # Eruption +697.3 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } +700.0 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +702.8 "Crimson Cyclone" Ability { id: "5F5", source: "Ultima Ifrit" } +704.1 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +708.1 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +710.9 "Crimson Cyclone" Ability { id: "5F5", source: "Ultima Ifrit" } +712.1 "Radiant Plume" Ability { id: "5F1", source: "The Ultima Weapon" } +716.1 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } window 12,5 +721.4 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +724.7 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } + +727.3 "--sync--" StartsUsing { id: "5F4", source: "The Ultima Weapon" } window 15,15 jump 797.3 # Eruption 730.0 "Eruption x5?" -732.0 "Homing Lasers?" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ window 10,10 jump 900 +732.0 "Homing Lasers?" Ability { id: "5E1", source: "The Ultima Weapon" } window 10,10 jump 900 737.3 "Ceruleum Vent?" 740.6 "Viscous Aetheroplasm?" 740.6 "Tank Purge?" 743.9 "Homing Lasers?" # Late Eruption block -797.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F4:/ window 2.5,0 -800.0 "Eruption x5" duration 8 #sync / 1[56]:[^:]*:The Ultima Weapon:5F4:/ -810.6 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ window 15,15 -813.9 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -819.2 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -822.5 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ - -825.1 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ window 15,15 jump 697.3 # Radiant Plume +797.3 "--sync--" StartsUsing { id: "5F4", source: "The Ultima Weapon" } window 2.5,0 +800.0 "Eruption x5" duration 8 #Ability { id: "5F4", source: "The Ultima Weapon" } +810.6 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } window 15,15 +813.9 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +819.2 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +822.5 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } + +825.1 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } window 15,15 jump 697.3 # Radiant Plume 827.8 "Radiant Plume?" -829.8 "Homing Lasers?" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ window 10,10 jump 900 +829.8 "Homing Lasers?" Ability { id: "5E1", source: "The Ultima Weapon" } window 10,10 jump 900 830.6 "Crimson Cyclone?" 831.9 "Radiant Plume?" 835.1 "Ceruleum Vent?" @@ -215,12 +215,12 @@ hideall "--sync--" 838.4 "Viscous Aetheroplasm?" # Late Homing Lasers sidetrack -900.0 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -905.3 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -908.6 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ +900.0 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +905.3 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +908.6 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } -912.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F4:/ window 15,15 jump 797.3 # Eruption -913.2 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5F1:/ window 15,15 jump 697.3 # Radiant Plume +912.3 "--sync--" StartsUsing { id: "5F4", source: "The Ultima Weapon" } window 15,15 jump 797.3 # Eruption +913.2 "--sync--" StartsUsing { id: "5F1", source: "The Ultima Weapon" } window 15,15 jump 697.3 # Radiant Plume 915.0 "Eruption x5?" 915.9 "Radiant Plume?" 918.7 "Crimson Cyclone?" @@ -238,51 +238,51 @@ hideall "--sync--" # Because of this, we add many more sync windows than we normally would. # The opening block is short. -1000.0 "Aetheric Boom" sync / 1[56]:[^:]*:The Ultima Weapon:5E7:/ window 1000,5 -1011.3 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -1015.6 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -1019.9 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -1023.1 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -1034.1 "Magitek Ray 1" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ -1037.1 "Magitek Ray 2" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ -1040.1 "Magitek Ray 3" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ - -1042.7 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5EA:/ window 45,45 -1045.9 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ -1049.2 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -1052.5 "Diffractive Laser" sync / 1[56]:[^:]*:The Ultima Weapon:5E2:/ window 20,20 -1054.8 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ window 20,20 -1059.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -1062.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -1070.5 "Magitek Ray 1" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ window 15,1 -1073.5 "Magitek Ray 2" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ -1076.5 "Magitek Ray 3" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ -1080.8 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -1084.1 "Diffractive Laser" sync / 1[56]:[^:]*:The Ultima Weapon:5E2:/ window 10,20 -1086.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ window 10,20 -1090.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -1094.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -1105.1 "Magitek Ray 1" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ window 15,1 -1108.1 "Magitek Ray 2" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ -1111.0 "Magitek Ray 3" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ - -1113.6 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5EA:/ window 45,45 jump 1042.7 -1116.8 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:5EA:/ -1120.2 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -1123.5 "Diffractive Laser" sync / 1[56]:[^:]*:The Ultima Weapon:5E2:/ -1125.8 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:5E1:/ -1130.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:5E0:/ -1133.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ -1141.5 "Magitek Ray 1" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ -1144.5 "Magitek Ray 2" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ -1147.5 "Magitek Ray 3" sync / 1[56]:[^:]*:The Ultima Weapon:(5E3|5E4|5E5):/ -1151.8 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:5DF:/ +1000.0 "Aetheric Boom" Ability { id: "5E7", source: "The Ultima Weapon" } window 1000,5 +1011.3 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +1015.6 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +1019.9 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +1023.1 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +1034.1 "Magitek Ray 1" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } +1037.1 "Magitek Ray 2" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } +1040.1 "Magitek Ray 3" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } + +1042.7 "--sync--" StartsUsing { id: "5EA", source: "The Ultima Weapon" } window 45,45 +1045.9 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } +1049.2 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +1052.5 "Diffractive Laser" Ability { id: "5E2", source: "The Ultima Weapon" } window 20,20 +1054.8 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } window 20,20 +1059.1 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +1062.4 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +1070.5 "Magitek Ray 1" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } window 15,1 +1073.5 "Magitek Ray 2" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } +1076.5 "Magitek Ray 3" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } +1080.8 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +1084.1 "Diffractive Laser" Ability { id: "5E2", source: "The Ultima Weapon" } window 10,20 +1086.4 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } window 10,20 +1090.7 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +1094.0 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +1105.1 "Magitek Ray 1" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } window 15,1 +1108.1 "Magitek Ray 2" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } +1111.0 "Magitek Ray 3" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } + +1113.6 "--sync--" StartsUsing { id: "5EA", source: "The Ultima Weapon" } window 45,45 jump 1042.7 +1116.8 "Tank Purge" Ability { id: "5EA", source: "The Ultima Weapon" } +1120.2 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +1123.5 "Diffractive Laser" Ability { id: "5E2", source: "The Ultima Weapon" } +1125.8 "Homing Lasers" Ability { id: "5E1", source: "The Ultima Weapon" } +1130.1 "Ceruleum Vent" Ability { id: "5E0", source: "The Ultima Weapon" } +1133.4 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } +1141.5 "Magitek Ray 1" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } +1144.5 "Magitek Ray 2" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } +1147.5 "Magitek Ray 3" Ability { id: ["5E3", "5E4", "5E5"], source: "The Ultima Weapon" } +1151.8 "Viscous Aetheroplasm" Ability { id: "5DF", source: "The Ultima Weapon" } # Enrage appears to be at 10:30. # Ultima Weapon teleports to the center and casts Ultima. -9989.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:5EC:/ window 10000 -10000.0 "Ultima Enrage" sync / 1[56]:[^:]*:The Ultima Weapon:5EC:/ +9989.3 "--sync--" StartsUsing { id: "5EC", source: "The Ultima Weapon" } window 10000 +10000.0 "Ultima Enrage" Ability { id: "5EC", source: "The Ultima Weapon" } diff --git a/ui/raidboss/data/03-hw/alliance/dun_scaith.ts b/ui/raidboss/data/03-hw/alliance/dun_scaith.ts index 56bc522b7e..480634022f 100644 --- a/ui/raidboss/data/03-hw/alliance/dun_scaith.ts +++ b/ui/raidboss/data/03-hw/alliance/dun_scaith.ts @@ -638,7 +638,7 @@ const triggerSet: TriggerSet = { { 'locale': 'de', 'replaceSync': { - 'Aether': 'Äthersphäre', + 'Aether(?!i)': 'Äthersphäre', 'Aether Collector': 'Ätherakkumulator', 'Aetherial Chakram': 'ätherisch(?:e|er|es|en) Chakram', 'Connla': 'Connla', @@ -739,7 +739,7 @@ const triggerSet: TriggerSet = { { 'locale': 'fr', 'replaceSync': { - 'Aether': 'sphère éthérée', + 'Aether(?!i)': 'sphère éthérée', 'Aether Collector': 'accumulateur d\'éther', 'Aetherial Chakram': 'chakram éthéré', 'Connla': 'Connla', @@ -1041,7 +1041,7 @@ const triggerSet: TriggerSet = { { 'locale': 'ko', 'replaceSync': { - 'Aether': '에테르 구체', + 'Aether(?!i)': '에테르 구체', 'Aether Collector': '에테르 집적기', 'Aetherial Chakram': '에테르 차크람', 'Connla': '콘라', diff --git a/ui/raidboss/data/03-hw/alliance/dun_scaith.txt b/ui/raidboss/data/03-hw/alliance/dun_scaith.txt index 62909c2b82..985d338252 100644 --- a/ui/raidboss/data/03-hw/alliance/dun_scaith.txt +++ b/ui/raidboss/data/03-hw/alliance/dun_scaith.txt @@ -10,103 +10,103 @@ hideall "--sync--" # -ii 1C90 1ABC -ic "Fierce Wind" "Void Sprite" # Main Deck will be sealed off -0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:755:/ window 0,5 -6.7 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -11.8 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C91:/ -16.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C92:/ -19.0 "Void Death" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7F:/ -23.6 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -31.6 "Void Aero II" sync / 1[56]:[^:]*:Deathgaze Hollow:1C79:/ -32.4 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8C:/ -34.6 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -39.1 "Void Blizzard III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C75:/ -39.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8A:/ -48.1 "Void Aero III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7B:/ -54.1 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8E:/ -54.1 "Void Aero III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8D:/ -56.1 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -62.1 "Doomsay" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[45]:/ +0 "--sync--" SystemLogMessage { id: "7DC", param1: "755" } window 0,5 +6.7 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +11.8 "--sync--" Ability { id: "1C91", source: "Deathgaze Hollow" } +16.6 "--sync--" Ability { id: "1C92", source: "Deathgaze Hollow" } +19.0 "Void Death" Ability { id: "1C7F", source: "Deathgaze Hollow" } +23.6 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +31.6 "Void Aero II" Ability { id: "1C79", source: "Deathgaze Hollow" } +32.4 "--sync--" Ability { id: "1C8C", source: "Deathgaze Hollow" } +34.6 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +39.1 "Void Blizzard III" Ability { id: "1C75", source: "Deathgaze Hollow" } +39.6 "--sync--" Ability { id: "1C8A", source: "Deathgaze Hollow" } +48.1 "Void Aero III" Ability { id: "1C7B", source: "Deathgaze Hollow" } +54.1 "--sync--" Ability { id: "1C8E", source: "Deathgaze Hollow" } +54.1 "Void Aero III" Ability { id: "1C8D", source: "Deathgaze Hollow" } +56.1 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +62.1 "Doomsay" Ability { id: "1C8[45]", source: "Deathgaze Hollow" } # Logs exist where this section is skipped? HP push? -74.3 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -77.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C91:/ -82.4 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C92:/ -84.9 "Void Death" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7F:/ - -87.8 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C81:/ window 30,5 -94.8 "Void Blizzard IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C77:/ -99.8 "Void Blizzard IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8B:/ -103.8 "Void Aero IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7C:/ -104.3 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8F:/ -113.8 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -123.8 "Void Aero II" sync / 1[56]:[^:]*:Deathgaze Hollow:1C78:/ -124.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8C:/ -129.8 "Void Aero III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7A:/ -139.8 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8E:/ -139.8 "Void Aero III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8D:/ -139.8 "Bolt Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[67]:/ -140.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C93:/ -145.8 "Void Death IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[23]:/ -149.8 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -154.8 "Doomsay" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[45]:/ -159.8 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -168.8 "Void Aero II" sync / 1[56]:[^:]*:Deathgaze Hollow:1C78:/ -169.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8C:/ -172.8 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -178.3 "Void Blizzard III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C74:/ -178.8 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8A:/ -184.3 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -189.3 "Void Death IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[23]:/ -194.3 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C91:/ -199.3 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C92:/ -201.7 "Void Death" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7E:/ -204.3 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -209.3 "Doomsay" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[45]:/ -218.3 "Void Aero II" sync / 1[56]:[^:]*:Deathgaze Hollow:1C78:/ -219.1 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8C:/ -228.3 "Void Blizzard IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C76:/ -233.3 "Void Blizzard IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8B:/ -237.3 "Void Aero IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7D:/ -237.8 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8F:/ -247.3 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -257.3 "Void Aero II" sync / 1[56]:[^:]*:Deathgaze Hollow:1C79:/ -258.1 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8C:/ -263.3 "Void Aero III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7B:/ -273.3 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8E:/ -273.3 "Void Aero III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8D:/ -273.3 "Bolt Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[67]:/ -274.1 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C93:/ -279.3 "Void Death IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[23]:/ -283.3 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -288.3 "Doomsay" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[45]:/ -293.3 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -302.3 "Void Aero II" sync / 1[56]:[^:]*:Deathgaze Hollow:1C79:/ -303.1 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8C:/ -306.3 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -311.8 "Void Blizzard III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C75:/ -312.3 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8A:/ -317.8 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -322.8 "Void Death IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[23]:/ -327.8 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C91:/ -332.8 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C92:/ -335.2 "Void Death" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7F:/ -337.8 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -342.8 "Doomsay" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[45]:/ -351.8 "Void Aero II" sync / 1[56]:[^:]*:Deathgaze Hollow:1C79:/ -352.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8C:/ -361.8 "Void Blizzard IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C77:/ -366.8 "Void Blizzard IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8B:/ -370.8 "Void Aero IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7C:/ -371.3 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8F:/ -380.8 "Spike Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1E51:/ -390.8 "Void Aero II" sync / 1[56]:[^:]*:Deathgaze Hollow:1C78:/ -391.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8C:/ -396.8 "Void Aero III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C7A:/ -406.8 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8E:/ -406.8 "Void Aero III" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8D:/ -406.8 "Bolt Of Darkness" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[67]:/ -407.6 "--sync--" sync / 1[56]:[^:]*:Deathgaze Hollow:1C93:/ -412.8 "Void Death IV" sync / 1[56]:[^:]*:Deathgaze Hollow:1C8[23]:/ +74.3 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +77.6 "--sync--" Ability { id: "1C91", source: "Deathgaze Hollow" } +82.4 "--sync--" Ability { id: "1C92", source: "Deathgaze Hollow" } +84.9 "Void Death" Ability { id: "1C7F", source: "Deathgaze Hollow" } + +87.8 "--sync--" Ability { id: "1C81", source: "Deathgaze Hollow" } window 30,5 +94.8 "Void Blizzard IV" Ability { id: "1C77", source: "Deathgaze Hollow" } +99.8 "Void Blizzard IV" Ability { id: "1C8B", source: "Deathgaze Hollow" } +103.8 "Void Aero IV" Ability { id: "1C7C", source: "Deathgaze Hollow" } +104.3 "--sync--" Ability { id: "1C8F", source: "Deathgaze Hollow" } +113.8 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +123.8 "Void Aero II" Ability { id: "1C78", source: "Deathgaze Hollow" } +124.6 "--sync--" Ability { id: "1C8C", source: "Deathgaze Hollow" } +129.8 "Void Aero III" Ability { id: "1C7A", source: "Deathgaze Hollow" } +139.8 "--sync--" Ability { id: "1C8E", source: "Deathgaze Hollow" } +139.8 "Void Aero III" Ability { id: "1C8D", source: "Deathgaze Hollow" } +139.8 "Bolt Of Darkness" Ability { id: "1C8[67]", source: "Deathgaze Hollow" } +140.6 "--sync--" Ability { id: "1C93", source: "Deathgaze Hollow" } +145.8 "Void Death IV" Ability { id: "1C8[23]", source: "Deathgaze Hollow" } +149.8 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +154.8 "Doomsay" Ability { id: "1C8[45]", source: "Deathgaze Hollow" } +159.8 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +168.8 "Void Aero II" Ability { id: "1C78", source: "Deathgaze Hollow" } +169.6 "--sync--" Ability { id: "1C8C", source: "Deathgaze Hollow" } +172.8 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +178.3 "Void Blizzard III" Ability { id: "1C74", source: "Deathgaze Hollow" } +178.8 "--sync--" Ability { id: "1C8A", source: "Deathgaze Hollow" } +184.3 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +189.3 "Void Death IV" Ability { id: "1C8[23]", source: "Deathgaze Hollow" } +194.3 "--sync--" Ability { id: "1C91", source: "Deathgaze Hollow" } +199.3 "--sync--" Ability { id: "1C92", source: "Deathgaze Hollow" } +201.7 "Void Death" Ability { id: "1C7E", source: "Deathgaze Hollow" } +204.3 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +209.3 "Doomsay" Ability { id: "1C8[45]", source: "Deathgaze Hollow" } +218.3 "Void Aero II" Ability { id: "1C78", source: "Deathgaze Hollow" } +219.1 "--sync--" Ability { id: "1C8C", source: "Deathgaze Hollow" } +228.3 "Void Blizzard IV" Ability { id: "1C76", source: "Deathgaze Hollow" } +233.3 "Void Blizzard IV" Ability { id: "1C8B", source: "Deathgaze Hollow" } +237.3 "Void Aero IV" Ability { id: "1C7D", source: "Deathgaze Hollow" } +237.8 "--sync--" Ability { id: "1C8F", source: "Deathgaze Hollow" } +247.3 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +257.3 "Void Aero II" Ability { id: "1C79", source: "Deathgaze Hollow" } +258.1 "--sync--" Ability { id: "1C8C", source: "Deathgaze Hollow" } +263.3 "Void Aero III" Ability { id: "1C7B", source: "Deathgaze Hollow" } +273.3 "--sync--" Ability { id: "1C8E", source: "Deathgaze Hollow" } +273.3 "Void Aero III" Ability { id: "1C8D", source: "Deathgaze Hollow" } +273.3 "Bolt Of Darkness" Ability { id: "1C8[67]", source: "Deathgaze Hollow" } +274.1 "--sync--" Ability { id: "1C93", source: "Deathgaze Hollow" } +279.3 "Void Death IV" Ability { id: "1C8[23]", source: "Deathgaze Hollow" } +283.3 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +288.3 "Doomsay" Ability { id: "1C8[45]", source: "Deathgaze Hollow" } +293.3 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +302.3 "Void Aero II" Ability { id: "1C79", source: "Deathgaze Hollow" } +303.1 "--sync--" Ability { id: "1C8C", source: "Deathgaze Hollow" } +306.3 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +311.8 "Void Blizzard III" Ability { id: "1C75", source: "Deathgaze Hollow" } +312.3 "--sync--" Ability { id: "1C8A", source: "Deathgaze Hollow" } +317.8 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +322.8 "Void Death IV" Ability { id: "1C8[23]", source: "Deathgaze Hollow" } +327.8 "--sync--" Ability { id: "1C91", source: "Deathgaze Hollow" } +332.8 "--sync--" Ability { id: "1C92", source: "Deathgaze Hollow" } +335.2 "Void Death" Ability { id: "1C7F", source: "Deathgaze Hollow" } +337.8 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +342.8 "Doomsay" Ability { id: "1C8[45]", source: "Deathgaze Hollow" } +351.8 "Void Aero II" Ability { id: "1C79", source: "Deathgaze Hollow" } +352.6 "--sync--" Ability { id: "1C8C", source: "Deathgaze Hollow" } +361.8 "Void Blizzard IV" Ability { id: "1C77", source: "Deathgaze Hollow" } +366.8 "Void Blizzard IV" Ability { id: "1C8B", source: "Deathgaze Hollow" } +370.8 "Void Aero IV" Ability { id: "1C7C", source: "Deathgaze Hollow" } +371.3 "--sync--" Ability { id: "1C8F", source: "Deathgaze Hollow" } +380.8 "Spike Of Darkness" Ability { id: "1E51", source: "Deathgaze Hollow" } +390.8 "Void Aero II" Ability { id: "1C78", source: "Deathgaze Hollow" } +391.6 "--sync--" Ability { id: "1C8C", source: "Deathgaze Hollow" } +396.8 "Void Aero III" Ability { id: "1C7A", source: "Deathgaze Hollow" } +406.8 "--sync--" Ability { id: "1C8E", source: "Deathgaze Hollow" } +406.8 "Void Aero III" Ability { id: "1C8D", source: "Deathgaze Hollow" } +406.8 "Bolt Of Darkness" Ability { id: "1C8[67]", source: "Deathgaze Hollow" } +407.6 "--sync--" Ability { id: "1C93", source: "Deathgaze Hollow" } +412.8 "Void Death IV" Ability { id: "1C8[23]", source: "Deathgaze Hollow" } #~~~~~~~~~~~~~~~~# @@ -117,26 +117,26 @@ hideall "--sync--" # -ic "Ferdiad's Fool" # The Rostrum will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:758:/ window 1000,5 -1014.2 "Black Wind x3" # sync / 1[56]:[^:]*:Ferdiad Hollow:1CAC:/ -1020.3 "Sleight" sync / 1[56]:[^:]*:Ferdiad Hollow:1C99:/ -1028.0 "Wormhole" sync / 1[56]:[^:]*:Ferdiad Hollow:1C9A:/ -1028.3 "--sync--" sync / 1[56]:[^:]*:(Cursing Atomos|Wailing Atomos):1C49:/ -1028.5 "Juggling Sphere" sync / 1[56]:[^:]*:(Aether|Aetherial Chakram):1C(9F|A0):/ -1030.0 "--sync--" sync / 1[56]:[^:]*:(Cursing Atomos|Wailing Atomos):1C9[CD]:/ -1033.2 "Explosion" sync / 1[56]:[^:]*:(Aether|Aetherial Chakram):1CA[12]:/ -1039.2 "Jester's Reap" sync / 1[56]:[^:]*:Ferdiad Hollow:1E41:/ -1047.2 "Jongleur's X" sync / 1[56]:[^:]*:Ferdiad Hollow:1C98:/ -1052.2 "Sleight" sync / 1[56]:[^:]*:Ferdiad Hollow:1C99:/ -1060.5 "Wormhole" sync / 1[56]:[^:]*:Ferdiad Hollow:1C9A:/ -1060.8 "--sync--" sync / 1[56]:[^:]*:(Cursing Atomos|Wailing Atomos):1C49:/ -1061.0 "Juggling Sphere" sync / 1[56]:[^:]*:(Aether|Aetherial Chakram):1C(9F|A0):/ -1062.5 "--sync--" sync / 1[56]:[^:]*:(Cursing Atomos|Wailing Atomos):1C9[CD]:/ -1065.7 "Explosion" sync / 1[56]:[^:]*:(Aether|Aetherial Chakram):1CA[12]:/ -1069.7 "Debilitator" sync / 1[56]:[^:]*:Ferdiad Hollow:1CA6:/ -1079.9 "Jongleur's X" sync / 1[56]:[^:]*:Ferdiad Hollow:1C98:/ -1087.4 "Flameflow" sync / 1[56]:[^:]*:Ferdiad Hollow:1CA7:/ -1089.9 "Sleight" sync / 1[56]:[^:]*:Ferdiad Hollow:1C99:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "758" } window 1000,5 +1014.2 "Black Wind x3" # Ability { id: "1CAC", source: "Ferdiad Hollow" } +1020.3 "Sleight" Ability { id: "1C99", source: "Ferdiad Hollow" } +1028.0 "Wormhole" Ability { id: "1C9A", source: "Ferdiad Hollow" } +1028.3 "--sync--" Ability { id: "1C49", source: ["Cursing Atomos", "Wailing Atomos"] } +1028.5 "Juggling Sphere" Ability { id: "1C(9F|A0)", source: ["Aether", "Aetherial Chakram"] } +1030.0 "--sync--" Ability { id: "1C9[CD]", source: ["Cursing Atomos", "Wailing Atomos"] } +1033.2 "Explosion" Ability { id: "1CA[12]", source: ["Aether", "Aetherial Chakram"] } +1039.2 "Jester's Reap" Ability { id: "1E41", source: "Ferdiad Hollow" } +1047.2 "Jongleur's X" Ability { id: "1C98", source: "Ferdiad Hollow" } +1052.2 "Sleight" Ability { id: "1C99", source: "Ferdiad Hollow" } +1060.5 "Wormhole" Ability { id: "1C9A", source: "Ferdiad Hollow" } +1060.8 "--sync--" Ability { id: "1C49", source: ["Cursing Atomos", "Wailing Atomos"] } +1061.0 "Juggling Sphere" Ability { id: "1C(9F|A0)", source: ["Aether", "Aetherial Chakram"] } +1062.5 "--sync--" Ability { id: "1C9[CD]", source: ["Cursing Atomos", "Wailing Atomos"] } +1065.7 "Explosion" Ability { id: "1CA[12]", source: ["Aether", "Aetherial Chakram"] } +1069.7 "Debilitator" Ability { id: "1CA6", source: "Ferdiad Hollow" } +1079.9 "Jongleur's X" Ability { id: "1C98", source: "Ferdiad Hollow" } +1087.4 "Flameflow" Ability { id: "1CA7", source: "Ferdiad Hollow" } +1089.9 "Sleight" Ability { id: "1C99", source: "Ferdiad Hollow" } # The intermission is extremely complex to figure out. @@ -144,32 +144,32 @@ hideall "--sync--" # The Fool actions don't seem to have strict timers. # It's all a mess, but Ferdiad is guaranteed to do his half-circle on time. 1089.9 "--untargetable--" -1095.9 "--sync--" sync / 1[56]:[^:]*:Wailing Atomos:1C9E:/ window 95.9,5 -1131.1 "Jester's Reward" sync / 1[56]:[^:]*:Ferdiad Hollow:1CA3:/ - - - -1300.0 "--sync--" sync / 14:[^:]*:Ferdiad Hollow:1CA4:/ window 300,5 -1304.7 "Jester's Jig" sync / 1[56]:[^:]*:Ferdiad Hollow:1CA4:/ -1306.7 "--sync--" sync / 1[56]:[^:]*:Ferdiad Hollow:1CA5:/ - -1319.0 "Sleight" sync / 1[56]:[^:]*:Ferdiad Hollow:1C99:/ -1327.5 "Wormhole" sync / 1[56]:[^:]*:Ferdiad Hollow:1C9A:/ -1327.8 "--sync--" sync / 1[56]:[^:]*:(Cursing Atomos|Wailing Atomos):1C49:/ -1328.0 "Juggling Sphere" sync / 1[56]:[^:]*:(Aether|Aetherial Chakram):1C(9F|A0):/ -1329.6 "--sync--" sync / 1[56]:[^:]*:(Cursing Atomos|Wailing Atomos):1C9[CD]:/ -1333.0 "Explosion" sync / 1[56]:[^:]*:(Aether|Aetherial Chakram):1CA[12]:/ window 15,15 -1338.1 "Jester's Reap" sync / 1[56]:[^:]*:Ferdiad Hollow:1E41:/ -1348.8 "Black Wind" # sync / 1[56]:[^:]*:Ferdiad Hollow:1CAC:/ -1362.4 "Blackfire" sync / 1[56]:[^:]*:Ferdiad Hollow:1CAA:/ -1372.7 "Jester's Reap" sync / 1[56]:[^:]*:Ferdiad Hollow:1E41:/ -1380.9 "Jongleur's X" sync / 1[56]:[^:]*:Ferdiad Hollow:1C98:/ window 15,15 -1387.2 "Debilitator" sync / 1[56]:[^:]*:Ferdiad Hollow:1CA6:/ -1394.7 "Blackbolt" sync / 1[56]:[^:]*:Ferdiad Hollow:1CAD:/ -1405.2 "Flameflow" sync / 1[56]:[^:]*:Ferdiad Hollow:1CA7:/ -1411.4 "Jester's Reap" sync / 1[56]:[^:]*:Ferdiad Hollow:1E41:/ - -1420.4 "Sleight" sync / 1[56]:[^:]*:Ferdiad Hollow:1C99:/ window 15,15 jump 1319.0 +1095.9 "--sync--" Ability { id: "1C9E", source: "Wailing Atomos" } window 95.9,5 +1131.1 "Jester's Reward" Ability { id: "1CA3", source: "Ferdiad Hollow" } + + + +1300.0 "--sync--" StartsUsing { id: "1CA4", source: "Ferdiad Hollow" } window 300,5 +1304.7 "Jester's Jig" Ability { id: "1CA4", source: "Ferdiad Hollow" } +1306.7 "--sync--" Ability { id: "1CA5", source: "Ferdiad Hollow" } + +1319.0 "Sleight" Ability { id: "1C99", source: "Ferdiad Hollow" } +1327.5 "Wormhole" Ability { id: "1C9A", source: "Ferdiad Hollow" } +1327.8 "--sync--" Ability { id: "1C49", source: ["Cursing Atomos", "Wailing Atomos"] } +1328.0 "Juggling Sphere" Ability { id: "1C(9F|A0)", source: ["Aether", "Aetherial Chakram"] } +1329.6 "--sync--" Ability { id: "1C9[CD]", source: ["Cursing Atomos", "Wailing Atomos"] } +1333.0 "Explosion" Ability { id: "1CA[12]", source: ["Aether", "Aetherial Chakram"] } window 15,15 +1338.1 "Jester's Reap" Ability { id: "1E41", source: "Ferdiad Hollow" } +1348.8 "Black Wind" # Ability { id: "1CAC", source: "Ferdiad Hollow" } +1362.4 "Blackfire" Ability { id: "1CAA", source: "Ferdiad Hollow" } +1372.7 "Jester's Reap" Ability { id: "1E41", source: "Ferdiad Hollow" } +1380.9 "Jongleur's X" Ability { id: "1C98", source: "Ferdiad Hollow" } window 15,15 +1387.2 "Debilitator" Ability { id: "1CA6", source: "Ferdiad Hollow" } +1394.7 "Blackbolt" Ability { id: "1CAD", source: "Ferdiad Hollow" } +1405.2 "Flameflow" Ability { id: "1CA7", source: "Ferdiad Hollow" } +1411.4 "Jester's Reap" Ability { id: "1E41", source: "Ferdiad Hollow" } + +1420.4 "Sleight" Ability { id: "1C99", source: "Ferdiad Hollow" } window 15,15 jump 1319.0 1428.9 "Wormhole" 1429.4 "Juggling Sphere" 1434.4 "Explosion" @@ -189,56 +189,56 @@ hideall "--sync--" # -ic "Allagan Dreadnaught" "Proto Bit" # The Queen's Pride will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:759:/ window 2000,5 - -2007.8 "Aether Bend" sync / 1[56]:[^:]*:Proto Ultima:1D99:/ -2018.4 "Aetherochemical Laser 1" sync / 1[56]:[^:]*:Proto Ultima:1D96:/ -2022.4 "Aetherochemical Laser 2" sync / 1[56]:[^:]*:Proto Ultima:1D98:/ -2026.4 "Aetherochemical Laser 3" sync / 1[56]:[^:]*:Proto Ultima:1D97:/ -2033.4 "Aetherochemical Flare" sync / 1[56]:[^:]*:Proto Ultima:1E52:/ -2034.6 "Diffractive Laser" # sync / 1[56]:[^:]*:Proto Ultima:1DAA:/ -2036.6 "--sync--" sync / 1[56]:[^:]*:Proto Ultima:1D9A:/ window 36,5 # Logs exist where this is first. -2042.6 "Light Pillar x8" duration 10 # sync / 1[56]:[^:]*:Proto Ultima:1DA8:/ -2053.4 "Aetherochemical Flare" sync / 1[56]:[^:]*:Proto Ultima:1E52:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "759" } window 2000,5 + +2007.8 "Aether Bend" Ability { id: "1D99", source: "Proto Ultima" } +2018.4 "Aetherochemical Laser 1" Ability { id: "1D96", source: "Proto Ultima" } +2022.4 "Aetherochemical Laser 2" Ability { id: "1D98", source: "Proto Ultima" } +2026.4 "Aetherochemical Laser 3" Ability { id: "1D97", source: "Proto Ultima" } +2033.4 "Aetherochemical Flare" Ability { id: "1E52", source: "Proto Ultima" } +2034.6 "Diffractive Laser" # Ability { id: "1DAA", source: "Proto Ultima" } +2036.6 "--sync--" Ability { id: "1D9A", source: "Proto Ultima" } window 36,5 # Logs exist where this is first. +2042.6 "Light Pillar x8" duration 10 # Ability { id: "1DA8", source: "Proto Ultima" } +2053.4 "Aetherochemical Flare" Ability { id: "1E52", source: "Proto Ultima" } # We don't know about this part. Maybe it does this? # Timing might be a little different? -2060.0 "Aether Bend" sync / 1[56]:[^:]*:Proto Ultima:1D99:/ window 30,15 jump 2007.8 +2060.0 "Aether Bend" Ability { id: "1D99", source: "Proto Ultima" } window 30,15 jump 2007.8 2070.6 "Aetherochemical Laser 1" 2074.6 "Aetherochemical Laser 2" 2078.6 "Aetherochemical Laser 3" 2079.8 "Diffractive Laser" 2085.8 "Light Pillar x8" -2100.0 "--untargetable--" sync / 1[56]:[^:]*:Proto Ultima:1DA0:/ window 100,5 -2110.6 "--sync--" sync / 1[56]:[^:]*:Proto Ultima:1DAC:/ -2110.6 "Eikonizer" sync / 1[56]:[^:]*:Proto Ultima:1DAD:/ -2117.5 "Aetherial Pool" sync / 1[56]:[^:]*:Proto Ultima:1DA3:/ -2119.1 "Flare Star" sync / 1[56]:[^:]*:Proto Ultima:1DA4:/ -2125.5 "Aetherial Pool" sync / 1[56]:[^:]*:Proto Ultima:1DA3:/ -2126.2 "--sync--" sync / 1[56]:[^:]*:Proto Ultima:1DA2:/ -2127.1 "Flare Star" sync / 1[56]:[^:]*:Proto Ultima:1DA4:/ -2131.2 "Citadel Buster" sync / 1[56]:[^:]*:Proto Ultima:1DAB:/ -2139.3 "Touchdown" sync / 1[56]:[^:]*:Proto Ultima:1D9C:/ +2100.0 "--untargetable--" Ability { id: "1DA0", source: "Proto Ultima" } window 100,5 +2110.6 "--sync--" Ability { id: "1DAC", source: "Proto Ultima" } +2110.6 "Eikonizer" Ability { id: "1DAD", source: "Proto Ultima" } +2117.5 "Aetherial Pool" Ability { id: "1DA3", source: "Proto Ultima" } +2119.1 "Flare Star" Ability { id: "1DA4", source: "Proto Ultima" } +2125.5 "Aetherial Pool" Ability { id: "1DA3", source: "Proto Ultima" } +2126.2 "--sync--" Ability { id: "1DA2", source: "Proto Ultima" } +2127.1 "Flare Star" Ability { id: "1DA4", source: "Proto Ultima" } +2131.2 "Citadel Buster" Ability { id: "1DAB", source: "Proto Ultima" } +2139.3 "Touchdown" Ability { id: "1D9C", source: "Proto Ultima" } 2139.3 "--targetable--" -2147.4 "Supernova" sync / 1[56]:[^:]*:Proto Ultima:1D9D:/ -2156.6 "--sync--" sync / 1[56]:[^:]*:Proto Ultima:1D9A:/ -2160.7 "Light Pillar x10" # sync / 1[56]:[^:]*:Proto Ultima:1DA5:/ -2194.7 "Aether Bend" sync / 1[56]:[^:]*:Proto Ultima:1D99:/ window 30,5 -2200.7 "Aetherochemical Flare" sync / 1[56]:[^:]*:Proto Ultima:1E52:/ -2204.4 "Aetherochemical Laser 1" sync / 1[56]:[^:]*:Proto Ultima:1D96:/ window 45,5 -2208.4 "Aetherochemical Laser 2" sync / 1[56]:[^:]*:Proto Ultima:1D97:/ -2213.4 "Aetherochemical Laser 3" sync / 1[56]:[^:]*:Proto Ultima:1D98:/ -2214.4 "Diffractive Laser" # sync / 1[56]:[^:]*:Proto Ultima:1DAA:/ +2147.4 "Supernova" Ability { id: "1D9D", source: "Proto Ultima" } +2156.6 "--sync--" Ability { id: "1D9A", source: "Proto Ultima" } +2160.7 "Light Pillar x10" # Ability { id: "1DA5", source: "Proto Ultima" } +2194.7 "Aether Bend" Ability { id: "1D99", source: "Proto Ultima" } window 30,5 +2200.7 "Aetherochemical Flare" Ability { id: "1E52", source: "Proto Ultima" } +2204.4 "Aetherochemical Laser 1" Ability { id: "1D96", source: "Proto Ultima" } window 45,5 +2208.4 "Aetherochemical Laser 2" Ability { id: "1D97", source: "Proto Ultima" } +2213.4 "Aetherochemical Laser 3" Ability { id: "1D98", source: "Proto Ultima" } +2214.4 "Diffractive Laser" # Ability { id: "1DAA", source: "Proto Ultima" } # We don't know, but it seems likely. -2216.4 "--sync--" sync / 1[56]:[^:]*:Proto Ultima:1D9A:/ window 30,30 jump 2156.6 +2216.4 "--sync--" Ability { id: "1D9A", source: "Proto Ultima" } window 30,30 jump 2156.6 2220.5 "Light Pillar x10" # Enrage is a LOOOONG cast alongside Aether Collectors. -2500.0 "--sync--" sync / 14:[^:]*:Proto Ultima:1DA9:/ window 2500,5 -2559.7 "Supernova Enrage" sync / 1[56]:[^:]*:Proto Ultima:1DA9:/ +2500.0 "--sync--" StartsUsing { id: "1DA9", source: "Proto Ultima" } window 2500,5 +2559.7 "Supernova Enrage" Ability { id: "1DA9", source: "Proto Ultima" } #~~~~~~~~~~# @@ -249,36 +249,36 @@ hideall "--sync--" # -ic Shadowcourt Jester" "Chimera Poppet" # The Queen's Graces will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:75A:/ window 3000,5 -3013.1 "Thirty Thorns" sync / 1[56]:[^:]*:Scathach:1D2B:/ -3030.2 "Thirty Arrows" sync / 1[56]:[^:]*:Scathach:1D2F:/ window 30,5 -3037.4 "Manos" sync / 1[56]:[^:]*:Scathach:1CD3:/ window 30,5 -3047.7 "--sync--" sync / 1[56]:[^:]*:Scathach:(1D1[EF]):/ -3049.0 "Shadespin" sync / 1[56]:[^:]*:Scathach:1D20:/ -3052.8 "Thirty Sickles" sync / 1[56]:[^:]*:Scathach:1D31:/ -3056.0 "Soar" sync / 1[56]:[^:]*:Scathach:1D1B:/ -3060.0 "--sync--" sync / 1[56]:[^:]*:Scathach:1D1C:/ -3061.0 "Shadesmite" sync / 1[56]:[^:]*:Scathach:1D1D:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "75A" } window 3000,5 +3013.1 "Thirty Thorns" Ability { id: "1D2B", source: "Scathach" } +3030.2 "Thirty Arrows" Ability { id: "1D2F", source: "Scathach" } window 30,5 +3037.4 "Manos" Ability { id: "1CD3", source: "Scathach" } window 30,5 +3047.7 "--sync--" Ability { id: ["1D1[EF]"], source: "Scathach" } +3049.0 "Shadespin" Ability { id: "1D20", source: "Scathach" } +3052.8 "Thirty Sickles" Ability { id: "1D31", source: "Scathach" } +3056.0 "Soar" Ability { id: "1D1B", source: "Scathach" } +3060.0 "--sync--" Ability { id: "1D1C", source: "Scathach" } +3061.0 "Shadesmite" Ability { id: "1D1D", source: "Scathach" } 3070.8 "--shadows gather--" -3084.8 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ window 30,5 -3088.0 "Shadow Release" sync / 1[56]:[^:]*:Scathach:1CD4:/ window 90,5 -3095.1 "--sync--" sync / 1[56]:[^:]*:Connla:1CD0:/ -3095.1 "Pitfall" sync / 1[56]:[^:]*:Connla:1CD1:/ -3101.1 "Thirty Thorns" sync / 1[56]:[^:]*:Scathach:1D2B:/ -3117.3 "Thirty Arrows" sync / 1[56]:[^:]*:Scathach:1D2F:/ -3130.4 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ window 30,5 -3133.6 "Manos" sync / 1[56]:[^:]*:Scathach:1CD3:/ window 30,5 -3143.7 "--sync--" sync / 1[56]:[^:]*:Scathach:1D1[EF]:/ -3144.9 "Shadespin" sync / 1[56]:[^:]*:Scathach:1D20:/ -3151.9 "Nox x5" sync / 1[56]:[^:]*:Scathach:1D22:/ -3164.1 "Shadethrust" sync / 1[56]:[^:]*:Scathach:1D23:/ -3182.2 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ -3197.4 "Thirty Sickles" sync / 1[56]:[^:]*:Scathach:1D31:/ window 45,5 +3084.8 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } window 30,5 +3088.0 "Shadow Release" Ability { id: "1CD4", source: "Scathach" } window 90,5 +3095.1 "--sync--" Ability { id: "1CD0", source: "Connla" } +3095.1 "Pitfall" Ability { id: "1CD1", source: "Connla" } +3101.1 "Thirty Thorns" Ability { id: "1D2B", source: "Scathach" } +3117.3 "Thirty Arrows" Ability { id: "1D2F", source: "Scathach" } +3130.4 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } window 30,5 +3133.6 "Manos" Ability { id: "1CD3", source: "Scathach" } window 30,5 +3143.7 "--sync--" Ability { id: "1D1[EF]", source: "Scathach" } +3144.9 "Shadespin" Ability { id: "1D20", source: "Scathach" } +3151.9 "Nox x5" Ability { id: "1D22", source: "Scathach" } +3164.1 "Shadethrust" Ability { id: "1D23", source: "Scathach" } +3182.2 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } +3197.4 "Thirty Sickles" Ability { id: "1D31", source: "Scathach" } window 45,5 3199.4 "--shadows gather--" -3203.6 "Soar" sync / 1[56]:[^:]*:Scathach:1D1B:/ -3207.8 "--sync--" sync / 1[56]:[^:]*:Scathach:1D1C:/ -3208.7 "Shadesmite" sync / 1[56]:[^:]*:Scathach:1D1D:/ window 30,30 jump 3061.0 +3203.6 "Soar" Ability { id: "1D1B", source: "Scathach" } +3207.8 "--sync--" Ability { id: "1D1C", source: "Scathach" } +3208.7 "Shadesmite" Ability { id: "1D1D", source: "Scathach" } window 30,30 jump 3061.0 # We don't know 100% that this is the correct rotation, # but based on the available logs and video, it seems likely. @@ -290,56 +290,56 @@ hideall "--sync--" # Intermission at 45% HP. Might be a time push too? but it's uncertain. -3300.0 "--untargetable--" sync / 22:........:Scathach:........:Scathach:00/ window 300,5 -3302.2 "--sync--" sync / 03:........:Shadowcourt Jester:/ window 300,5 +3300.0 "--untargetable--" NameToggle { name: "Scathach", toggle: "00" } window 300,5 +3302.2 "--sync--" AddedCombatant { name: "Shadowcourt Jester" } window 300,5 3323.6 "--towers appear--" -3333.6 "Particle Beam" sync / 1[56]:[^:]*:Scathach:1D2[78]:/ +3333.6 "Particle Beam" Ability { id: "1D2[78]", source: "Scathach" } -3400.5 "--sync--" sync / 14:[^:]*:Scathach:1D34:/ window 100,5 -# 3405.2 "Blinding Shadow" sync / 1[56]:[^:]*:Scathach:1D34:/ -3409.2 "Blinding Shadow" sync / 1[56]:[^:]*:Scathach:1DAE:/ +3400.5 "--sync--" StartsUsing { id: "1D34", source: "Scathach" } window 100,5 +# 3405.2 "Blinding Shadow" Ability { id: "1D34", source: "Scathach" } +3409.2 "Blinding Shadow" Ability { id: "1DAE", source: "Scathach" } # A very long rotation, approximately 192 seconds. # Add spawns and shadows gathering are approximate, # as nothing shows up for them in the log. -3411.4 "Shadow Release" sync / 1[56]:[^:]*:Scathach:1CD4:/ -3421.5 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ -3428.6 "Thirty Arrows" sync / 1[56]:[^:]*:Scathach:1D2F:/ -3435.6 "Particle Beam" sync / 1[56]:[^:]*:Scathach:1D2[78]:/ -3444.8 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ -3453.1 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ -3459.1 "Thirty Arrows" sync / 1[56]:[^:]*:Scathach:1D2F:/ -3469.4 "Thirty Cries" sync / 1[56]:[^:]*:Scathach:1D33:/ -3471.5 "Particle Beam" sync / 1[56]:[^:]*:Scathach:1D2[78]:/ -3480.7 "--sync--" sync / 1[56]:[^:]*:Connla:1CD0:/ -3480.7 "Pitfall" sync / 1[56]:[^:]*:Connla:1CD1:/ -3491.8 "Thirty Cries" sync / 1[56]:[^:]*:Scathach:1D33:/ -3494.9 "Thirty Thorns" sync / 1[56]:[^:]*:Scathach:1D2B:/ -3506.1 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ -3510.4 "Manos" sync / 1[56]:[^:]*:Scathach:1CD3:/ -3520.5 "--sync--" sync / 1[56]:[^:]*:Scathach:1D1[EF]:/ -3521.6 "Shadespin" sync / 1[56]:[^:]*:Scathach:1D20:/ +3411.4 "Shadow Release" Ability { id: "1CD4", source: "Scathach" } +3421.5 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } +3428.6 "Thirty Arrows" Ability { id: "1D2F", source: "Scathach" } +3435.6 "Particle Beam" Ability { id: "1D2[78]", source: "Scathach" } +3444.8 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } +3453.1 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } +3459.1 "Thirty Arrows" Ability { id: "1D2F", source: "Scathach" } +3469.4 "Thirty Cries" Ability { id: "1D33", source: "Scathach" } +3471.5 "Particle Beam" Ability { id: "1D2[78]", source: "Scathach" } +3480.7 "--sync--" Ability { id: "1CD0", source: "Connla" } +3480.7 "Pitfall" Ability { id: "1CD1", source: "Connla" } +3491.8 "Thirty Cries" Ability { id: "1D33", source: "Scathach" } +3494.9 "Thirty Thorns" Ability { id: "1D2B", source: "Scathach" } +3506.1 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } +3510.4 "Manos" Ability { id: "1CD3", source: "Scathach" } +3520.5 "--sync--" Ability { id: "1D1[EF]", source: "Scathach" } +3521.6 "Shadespin" Ability { id: "1D20", source: "Scathach" } 3523.6 "--shadows gather--" -3526.7 "Thirty Sickles" sync / 1[56]:[^:]*:Scathach:1D31:/ +3526.7 "Thirty Sickles" Ability { id: "1D31", source: "Scathach" } 3528.7 "--adds spawn--" -3535.9 "Nox x5" sync / 1[56]:[^:]*:Scathach:1D22:/ -3544.1 "Shadethrust" sync / 1[56]:[^:]*:Scathach:1D23:/ -3552.2 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ +3535.9 "Nox x5" Ability { id: "1D22", source: "Scathach" } +3544.1 "Shadethrust" Ability { id: "1D23", source: "Scathach" } +3552.2 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } 3553.2 "--shadows gather--" -3557.4 "Soar" sync / 1[56]:[^:]*:Scathach:1D1B:/ -3561.4 "--sync--" sync / 1[56]:[^:]*:Scathach:1D1C:/ -3562.4 "Shadesmite" sync / 1[56]:[^:]*:Scathach:1D1D:/ -3571.5 "Shadethrust" sync / 1[56]:[^:]*:Scathach:1D23:/ +3557.4 "Soar" Ability { id: "1D1B", source: "Scathach" } +3561.4 "--sync--" Ability { id: "1D1C", source: "Scathach" } +3562.4 "Shadesmite" Ability { id: "1D1D", source: "Scathach" } +3571.5 "Shadethrust" Ability { id: "1D23", source: "Scathach" } 3575.5 "--shadows gather--" -3580.6 "--sync--" sync / 1[56]:[^:]*:Scathach:1D1[EF]:/ -3581.7 "Shadespin" sync / 1[56]:[^:]*:Scathach:1D20:/ -3588.8 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ -3599.0 "Thirty Souls" sync / 1[56]:[^:]*:Scathach:1D32:/ +3580.6 "--sync--" Ability { id: "1D1[EF]", source: "Scathach" } +3581.7 "Shadespin" Ability { id: "1D20", source: "Scathach" } +3588.8 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } +3599.0 "Thirty Souls" Ability { id: "1D32", source: "Scathach" } # Again, this is presumed based on what we have. # There might be extra adds/shadows. -3603.3 "Shadow Release" sync / 1[56]:[^:]*:Scathach:1CD4:/ window 30,30 jump 3409.2 +3603.3 "Shadow Release" Ability { id: "1CD4", source: "Scathach" } window 30,30 jump 3409.2 3613.4 "Thirty Souls" 3620.5 "Thirty Arrows" 3627.5 "Particle Beam" @@ -357,42 +357,42 @@ hideall "--sync--" # Also, tons of possible micro-skips before and after Ruinous Omen. # We sync off an attack from Diabolos because there are two encounters in The Lunar. -4000.0 "--sync--" sync / 1[56]:[^:]*:Diabolos:1C0C:/ window 4000,1 -4009.9 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4022.1 "Nightmare" sync / 1[56]:[^:]*:Diabolos:1C0E:/ -4032.3 "Ultimate Terror" sync / 1[56]:[^:]*:Diabolos:1C12:/ window 15,5 -4050.5 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4053.5 "Noctoshield" sync / 1[56]:[^:]*:Diabolos:1C0F:/ window 10,5 -4058.7 "Nightmare" sync / 1[56]:[^:]*:Diabolos:1C0E:/ window 10,5 +4000.0 "--sync--" Ability { id: "1C0C", source: "Diabolos" } window 4000,1 +4009.9 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4022.1 "Nightmare" Ability { id: "1C0E", source: "Diabolos" } +4032.3 "Ultimate Terror" Ability { id: "1C12", source: "Diabolos" } window 15,5 +4050.5 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4053.5 "Noctoshield" Ability { id: "1C0F", source: "Diabolos" } window 10,5 +4058.7 "Nightmare" Ability { id: "1C0E", source: "Diabolos" } window 10,5 # This seems like a possible rotation? Maybe? -4064.9 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4075.2 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4078.4 "Noctoshield" sync / 1[56]:[^:]*:Diabolos:1C0F:/ -4083.4 "Nightmare" sync / 1[56]:[^:]*:Diabolos:1C0E:/ window 10,5 jump 4058.7 +4064.9 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4075.2 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4078.4 "Noctoshield" Ability { id: "1C0F", source: "Diabolos" } +4083.4 "Nightmare" Ability { id: "1C0E", source: "Diabolos" } window 10,5 jump 4058.7 4089.6 "Camisado" 4099.9 "Camisado" 4103.1 "Noctoshield" 4108.1 "Nightmare" -4149.0 "--sync--" sync / 14:[^:]*:Diabolos:1C10:/ window 150,5 -4163.7 "Ruinous Omen" sync / 1[56]:[^:]*:Diabolos:1C10:/ -4164.7 "Ruinous Omen" sync / 1[56]:[^:]*:Diabolos:1C11:/ - -4170.3 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4178.7 "Night Terror" sync / 1[56]:[^:]*:Diabolos:1C13:/ -4185.8 "Ultimate Terror" sync / 1[56]:[^:]*:Diabolos:1C12:/ -4190.0 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4195.1 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4203.5 "Nightmare" sync / 1[56]:[^:]*:Diabolos:1C0E:/ -4206.6 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4213.1 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4216.2 "Noctoshield" sync / 1[56]:[^:]*:Diabolos:1C0F:/ -4219.3 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ -4225.8 "Camisado" sync / 1[56]:[^:]*:Diabolos:1C0D:/ - -4233.8 "Ultimate Terror" sync / 1[56]:[^:]*:Diabolos:1C12:/ window 15,15 jump 4185.8 +4149.0 "--sync--" StartsUsing { id: "1C10", source: "Diabolos" } window 150,5 +4163.7 "Ruinous Omen" Ability { id: "1C10", source: "Diabolos" } +4164.7 "Ruinous Omen" Ability { id: "1C11", source: "Diabolos" } + +4170.3 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4178.7 "Night Terror" Ability { id: "1C13", source: "Diabolos" } +4185.8 "Ultimate Terror" Ability { id: "1C12", source: "Diabolos" } +4190.0 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4195.1 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4203.5 "Nightmare" Ability { id: "1C0E", source: "Diabolos" } +4206.6 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4213.1 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4216.2 "Noctoshield" Ability { id: "1C0F", source: "Diabolos" } +4219.3 "Camisado" Ability { id: "1C0D", source: "Diabolos" } +4225.8 "Camisado" Ability { id: "1C0D", source: "Diabolos" } + +4233.8 "Ultimate Terror" Ability { id: "1C12", source: "Diabolos" } window 15,15 jump 4185.8 4238.9 "Camisado" 4244.0 "Camisado" 4252.4 "Nightmare" @@ -402,13 +402,13 @@ hideall "--sync--" # This section leads directly into Diabolos Hollow the first time after Diabolos is defeated. # This is the dueling-lasers part where the party kills the big deathgate and two small ones. -4274.0 "--sync--" sync / 22:........:Diabolos:........:Diabolos:00/ window 100,5 -4286.2 "--lifegate spawn--" sync / 03:........:Lifegate:/ window 300,5 -4300.0 "--sync--" sync / 1[56]:[^:]*:Diabolos:1C16:/ window 300,5 -4320.0 "--deathgate spawn--" sync / 03:........:Deathgate:/ window 50,5 -4477.1 "--sync--" sync / 1[56]:[^:]*:Diabolos:1AFB:/ window 177,5 -4488.5 "--sync--" sync / 1[56]:[^:]*:Diabolos:1AFD:/ -4494.6 "Dream Shroud" sync / 1[56]:[^:]*:Diabolos Hollow:1DB1:/ window 194,5 +4274.0 "--sync--" NameToggle { name: "Diabolos", toggle: "00" } window 100,5 +4286.2 "--lifegate spawn--" AddedCombatant { name: "Lifegate" } window 300,5 +4300.0 "--sync--" Ability { id: "1C16", source: "Diabolos" } window 300,5 +4320.0 "--deathgate spawn--" AddedCombatant { name: "Deathgate" } window 50,5 +4477.1 "--sync--" Ability { id: "1AFB", source: "Diabolos" } window 177,5 +4488.5 "--sync--" Ability { id: "1AFD", source: "Diabolos" } +4494.6 "Dream Shroud" Ability { id: "1DB1", source: "Diabolos Hollow" } window 194,5 #~~~~~~~~~~~~~~~~~# @@ -428,13 +428,13 @@ hideall "--sync--" # so we sync with wider windows than normal. # This first rotation block last until the initial zero-damage shield breaks. -4500.9 "--sync--" sync / 1[56]:[^:]*:Diabolos Hollow:1E3E:/ window 4501,1 -4507.9 "Hollow Camisado" sync / 1[56]:[^:]*:Diabolos Hollow:1C19:/ window 5,5 -4516.2 "Shadethrust" sync / 1[56]:[^:]*:Diabolos Hollow:1C1A:/ window 5,5 -4523.6 "Hollow Camisado" sync / 1[56]:[^:]*:Diabolos Hollow:1C19:/ window 5,5 -4530.8 "Shadethrust" sync / 1[56]:[^:]*:Diabolos Hollow:1C1A:/ window 5,5 +4500.9 "--sync--" Ability { id: "1E3E", source: "Diabolos Hollow" } window 4501,1 +4507.9 "Hollow Camisado" Ability { id: "1C19", source: "Diabolos Hollow" } window 5,5 +4516.2 "Shadethrust" Ability { id: "1C1A", source: "Diabolos Hollow" } window 5,5 +4523.6 "Hollow Camisado" Ability { id: "1C19", source: "Diabolos Hollow" } window 5,5 +4530.8 "Shadethrust" Ability { id: "1C1A", source: "Diabolos Hollow" } window 5,5 -4540.1 "Hollow Camisado" sync / 1[56]:[^:]*:Diabolos Hollow:1C19:/ window 5,5 jump 4507.9 +4540.1 "Hollow Camisado" Ability { id: "1C19", source: "Diabolos Hollow" } window 5,5 jump 4507.9 4547.2 "Shadethrust" 4554.6 "Hollow Camisado" 4561.8 "Shadethrust" @@ -447,47 +447,47 @@ hideall "--sync--" # Lots of possible pushes here, unknown what triggers them. # If not pushed, it *appears* this section flows naturally. -4600.0 "Nox x5" sync / 1[56]:[^:]*:Diabolos Hollow:1C1C:/ window 100,5 -4604.2 "Hollow Night" sync / 1[56]:[^:]*:Diabolos Hollow:1C1D:/ -4613.6 "Shadethrust" sync / 1[56]:[^:]*:Diabolos Hollow:1C1A:/ -4620.4 "Particle Beam" sync / 1[56]:[^:]*:Diabolos Hollow:1C2[456]:/ -4620.8 "Hollow Camisado" sync / 1[56]:[^:]*:Diabolos Hollow:1C19:/ -4624.1 "--deathgate spawn--" sync / 03:........:Deathgate:/ window 25,5 -4627.1 "Hollowshield" sync / 1[56]:[^:]*:Diabolos Hollow:1C1E:/ window 27.1,5 -4637.5 "Hollow Camisado" sync / 1[56]:[^:]*:Diabolos Hollow:1C19:/ -4646.8 "Shadethrust" sync / 1[56]:[^:]*:Diabolos Hollow:1C1A:/ window 20,10 - -4654.9 "Pavor Inanis" sync / 1[56]:[^:]*:Diabolos Hollow:1C1F:/ window 55,5 -4665.3 "Hollow Night" sync / 1[56]:[^:]*:Diabolos Hollow:1C1D:/ -4677.4 "Hollow Nightmare" sync / 1[56]:[^:]*:Diabolos Hollow:1C20:/ -4690.9 "Hollow Camisado" sync / 1[56]:[^:]*:Diabolos Hollow:1C19:/ window 30,5 -4700.2 "Nox x5" sync / 1[56]:[^:]*:Diabolos Hollow:1C1C:/ window 30,5 -4705.2 "Hollow Nightmare" sync / 1[56]:[^:]*:Diabolos Hollow:1C20:/ -4718.4 "Hollow Camisado" sync / 1[56]:[^:]*:Diabolos Hollow:1C19:/ -4727.6 "Hollow Terror" sync / 1[56]:[^:]*:Diabolos Hollow:1C21:/ -4737.2 "Shadethrust" sync / 1[56]:[^:]*:Diabolos Hollow:1C1A:/ window 20,5 -4751.0 "Shadethrust" sync / 1[56]:[^:]*:Diabolos Hollow:1C1A:/ -4753.5 "Particle Beam" sync / 1[56]:[^:]*:Diabolos Hollow:1C2[456]:/ -4760.3 "Pavor Inanis" sync / 1[56]:[^:]*:Diabolos Hollow:1C1F:/ window 30,30 -4766.6 "Hollow Camisado" sync / 1[56]:[^:]*:Diabolos Hollow:1C19:/ -4774.9 "Nightmare/Terror" sync / 1[56]:[^:]*:Diabolos Hollow:1C2[01]:/ +4600.0 "Nox x5" Ability { id: "1C1C", source: "Diabolos Hollow" } window 100,5 +4604.2 "Hollow Night" Ability { id: "1C1D", source: "Diabolos Hollow" } +4613.6 "Shadethrust" Ability { id: "1C1A", source: "Diabolos Hollow" } +4620.4 "Particle Beam" Ability { id: "1C2[456]", source: "Diabolos Hollow" } +4620.8 "Hollow Camisado" Ability { id: "1C19", source: "Diabolos Hollow" } +4624.1 "--deathgate spawn--" AddedCombatant { name: "Deathgate" } window 25,5 +4627.1 "Hollowshield" Ability { id: "1C1E", source: "Diabolos Hollow" } window 27.1,5 +4637.5 "Hollow Camisado" Ability { id: "1C19", source: "Diabolos Hollow" } +4646.8 "Shadethrust" Ability { id: "1C1A", source: "Diabolos Hollow" } window 20,10 + +4654.9 "Pavor Inanis" Ability { id: "1C1F", source: "Diabolos Hollow" } window 55,5 +4665.3 "Hollow Night" Ability { id: "1C1D", source: "Diabolos Hollow" } +4677.4 "Hollow Nightmare" Ability { id: "1C20", source: "Diabolos Hollow" } +4690.9 "Hollow Camisado" Ability { id: "1C19", source: "Diabolos Hollow" } window 30,5 +4700.2 "Nox x5" Ability { id: "1C1C", source: "Diabolos Hollow" } window 30,5 +4705.2 "Hollow Nightmare" Ability { id: "1C20", source: "Diabolos Hollow" } +4718.4 "Hollow Camisado" Ability { id: "1C19", source: "Diabolos Hollow" } +4727.6 "Hollow Terror" Ability { id: "1C21", source: "Diabolos Hollow" } +4737.2 "Shadethrust" Ability { id: "1C1A", source: "Diabolos Hollow" } window 20,5 +4751.0 "Shadethrust" Ability { id: "1C1A", source: "Diabolos Hollow" } +4753.5 "Particle Beam" Ability { id: "1C2[456]", source: "Diabolos Hollow" } +4760.3 "Pavor Inanis" Ability { id: "1C1F", source: "Diabolos Hollow" } window 30,30 +4766.6 "Hollow Camisado" Ability { id: "1C19", source: "Diabolos Hollow" } +4774.9 "Nightmare/Terror" Ability { id: "1C2[01]", source: "Diabolos Hollow" } # Can push early at 50% HP -4785.3 "--sync--" sync / 1[56]:[^:]*:Diabolos Hollow:1C18:/ window 785,5 -4804.1 "--sync--" sync / 1[56]:[^:]*:Diabolos Hollow:1C22:/ -4809.2 "Hollow Omen" sync / 1[56]:[^:]*:Diabolos Hollow:1C23:/ -4818.3 "Double Edge" sync / 1[56]:[^:]*:Diabolos Hollow:1C2B:/ - -4825.6 "Blindside" sync / 1[56]:[^:]*:Diabolos Hollow:1C28:/ -4828.7 "--sync--" sync / 1[56]:[^:]*:Diabolos Hollow:1C18:/ -4836.0 "Earth Shaker" sync / 1[56]:[^:]*:Diabolos Hollow:1C29:/ window 15,15 -4844.0 "Blindside" sync / 1[56]:[^:]*:Diabolos Hollow:1C28:/ -4852.2 "Blindside" sync / 1[56]:[^:]*:Diabolos Hollow:1C28:/ -4855.4 "--sync--" sync / 1[56]:[^:]*:Diabolos Hollow:1C18:/ -4862.7 "Earth Shaker" sync / 1[56]:[^:]*:Diabolos Hollow:1C29:/ - -4870.8 "Blindside" sync / 1[56]:[^:]*:Diabolos Hollow:1C28:/ window 10,5 jump 4825.6 +4785.3 "--sync--" Ability { id: "1C18", source: "Diabolos Hollow" } window 785,5 +4804.1 "--sync--" Ability { id: "1C22", source: "Diabolos Hollow" } +4809.2 "Hollow Omen" Ability { id: "1C23", source: "Diabolos Hollow" } +4818.3 "Double Edge" Ability { id: "1C2B", source: "Diabolos Hollow" } + +4825.6 "Blindside" Ability { id: "1C28", source: "Diabolos Hollow" } +4828.7 "--sync--" Ability { id: "1C18", source: "Diabolos Hollow" } +4836.0 "Earth Shaker" Ability { id: "1C29", source: "Diabolos Hollow" } window 15,15 +4844.0 "Blindside" Ability { id: "1C28", source: "Diabolos Hollow" } +4852.2 "Blindside" Ability { id: "1C28", source: "Diabolos Hollow" } +4855.4 "--sync--" Ability { id: "1C18", source: "Diabolos Hollow" } +4862.7 "Earth Shaker" Ability { id: "1C29", source: "Diabolos Hollow" } + +4870.8 "Blindside" Ability { id: "1C28", source: "Diabolos Hollow" } window 10,5 jump 4825.6 4881.2 "Earth Shaker" 4889.2 "Blindside" 4897.4 "Blindside" diff --git a/ui/raidboss/data/03-hw/alliance/weeping_city.txt b/ui/raidboss/data/03-hw/alliance/weeping_city.txt index 8a36b87157..12d5e9d400 100644 --- a/ui/raidboss/data/03-hw/alliance/weeping_city.txt +++ b/ui/raidboss/data/03-hw/alliance/weeping_city.txt @@ -11,116 +11,116 @@ hideall "--sync--" # -ic "Webmaiden" "Spitting Spider" "Skittering Spider" "Earth Aether" # The Queen's Room will be sealed off -0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6E0:/ -9.8 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -21.6 "Silken Spray" sync / 1[56]:[^:]*:Arachne Eve:1824:/ -30.4 "Arachne Web x3" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:185E:/ +0 "--sync--" SystemLogMessage { id: "7DC", param1: "6E0" } +9.8 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +21.6 "Silken Spray" Ability { id: "1824", source: "Arachne Eve" } +30.4 "Arachne Web x3" duration 5 # Ability { id: "185E", source: "Arachne Eve" } 36.8 "--untargetable--" -41.9 "Tremblor x3" sync / 1[56]:[^:]*:Arachne Eve:1837:/ # 3 separate abilities, 1837/1836/1835 -48.4 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1889:/ -49.9 "Pitfall" sync / 1[56]:[^:]*:Arachne Eve:1825:/ +41.9 "Tremblor x3" Ability { id: "1837", source: "Arachne Eve" } # 3 separate abilities, 1837/1836/1835 +48.4 "--sync--" Ability { id: "1889", source: "Arachne Eve" } +49.9 "Pitfall" Ability { id: "1825", source: "Arachne Eve" } 51.9 "--targetable--" -52.1 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1847:/ # Sticky Wicket head markers -55.7 "Sticky Wicket x3" # sync / 1[56]:[^:]*:Arachne Eve:183F:/ -64.1 "Silken Spray" sync / 1[56]:[^:]*:Arachne Eve:1824:/ +52.1 "--sync--" Ability { id: "1847", source: "Arachne Eve" } # Sticky Wicket head markers +55.7 "Sticky Wicket x3" # Ability { id: "183F", source: "Arachne Eve" } +64.1 "Silken Spray" Ability { id: "1824", source: "Arachne Eve" } # Intermission up in her web. There's a LOT of stuff going on here, # but the add spawns and abilities are dependent on what the team kills. # Implosion is the only real consistency we have through the intermission. -95.7 "Implosion" sync / 1[56]:[^:]*:Arachne Eve:1833:/ window 95.7,2.5 -113.9 "Implosion" sync / 1[56]:[^:]*:Arachne Eve:1833:/ -132.1 "Implosion" sync / 1[56]:[^:]*:Arachne Eve:1833:/ -150.3 "Implosion" sync / 1[56]:[^:]*:Arachne Eve:1833:/ jump 95.7 +95.7 "Implosion" Ability { id: "1833", source: "Arachne Eve" } window 95.7,2.5 +113.9 "Implosion" Ability { id: "1833", source: "Arachne Eve" } +132.1 "Implosion" Ability { id: "1833", source: "Arachne Eve" } +150.3 "Implosion" Ability { id: "1833", source: "Arachne Eve" } jump 95.7 168.5 "Implosion" 186.7 "Implosion" # Back on the ground for a relatively short bridge block # We sync to a 14/20 startsUsing log line instead of a 15/21 ability line. # This lets us jump out of the intermission slightly earlier. -197.3 "Dark Spike" sync / 14:[^:]*:Arachne Eve:1823:/ window 100,5 -206.3 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1847:/ -210.5 "Sticky Wicket x3" # sync / 1[56]:[^:]*:Arachne Eve:183F:/ +197.3 "Dark Spike" StartsUsing { id: "1823", source: "Arachne Eve" } window 100,5 +206.3 "--sync--" Ability { id: "1847", source: "Arachne Eve" } +210.5 "Sticky Wicket x3" # Ability { id: "183F", source: "Arachne Eve" } 212.1 "--untargetable--" -216.7 "Tremblor x3" sync / 1[56]:[^:]*:Arachne Eve:1837:/ -223.9 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1889:/ -225.5 "Pitfall" sync / 1[56]:[^:]*:Arachne Eve:1825:/ +216.7 "Tremblor x3" Ability { id: "1837", source: "Arachne Eve" } +223.9 "--sync--" Ability { id: "1889", source: "Arachne Eve" } +225.5 "Pitfall" Ability { id: "1825", source: "Arachne Eve" } 227.5 "--targetable--" -233.2 "Arachne Web x3" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:185E:/ -246.3 "Shadow Burst" sync / 1[56]:[^:]*:Arachne Eve:1838:/ -253.0 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -264.4 "Frond Affeared" sync / 1[56]:[^:]*:Arachne Eve:183A:/ window 30,30 -271.1 "Silken Spray" sync / 1[56]:[^:]*:Arachne Eve:1824:/ -277.9 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -287.7 "Arachne Web x3" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:185E:/ +233.2 "Arachne Web x3" duration 5 # Ability { id: "185E", source: "Arachne Eve" } +246.3 "Shadow Burst" Ability { id: "1838", source: "Arachne Eve" } +253.0 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +264.4 "Frond Affeared" Ability { id: "183A", source: "Arachne Eve" } window 30,30 +271.1 "Silken Spray" Ability { id: "1824", source: "Arachne Eve" } +277.9 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +287.7 "Arachne Web x3" duration 5 # Ability { id: "185E", source: "Arachne Eve" } 294.2 "--untargetable--" -297.9 "The Widow's Kiss" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:1842:/ -305.9 "The Widow's Embrace" sync / 1[56]:[^:]*:Arachne Eve:1888:/ -308.5 "Pitfall" sync / 1[56]:[^:]*:Arachne Eve:1845:/ +297.9 "The Widow's Kiss" duration 5 # Ability { id: "1842", source: "Arachne Eve" } +305.9 "The Widow's Embrace" Ability { id: "1888", source: "Arachne Eve" } +308.5 "Pitfall" Ability { id: "1845", source: "Arachne Eve" } 310.5 "--targetable--" -317.2 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ +317.2 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } # And up we go again. -347.2 "Implosion" sync / 1[56]:[^:]*:Arachne Eve:1833:/ window 147,5 -365.4 "Implosion" sync / 1[56]:[^:]*:Arachne Eve:1833:/ -383.6 "Implosion" sync / 1[56]:[^:]*:Arachne Eve:1833:/ jump 347.2 +347.2 "Implosion" Ability { id: "1833", source: "Arachne Eve" } window 147,5 +365.4 "Implosion" Ability { id: "1833", source: "Arachne Eve" } +383.6 "Implosion" Ability { id: "1833", source: "Arachne Eve" } jump 347.2 401.8 "Implosion" 420.0 "Implosion" # Back down again for another bridge block -464.9 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ window 120,5 -476.4 "Arachne Web x3" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:185E:/ -483.8 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1847:/ -487.4 "Sticky Wicket x3" # sync / 1[56]:[^:]*:Arachne Eve:183F:/ +464.9 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } window 120,5 +476.4 "Arachne Web x3" duration 5 # Ability { id: "185E", source: "Arachne Eve" } +483.8 "--sync--" Ability { id: "1847", source: "Arachne Eve" } +487.4 "Sticky Wicket x3" # Ability { id: "183F", source: "Arachne Eve" } 489.8 "--untargetable--" -494.4 "Tremblor x3" sync / 1[56]:[^:]*:Arachne Eve:1837:/ -501.3 "The Widow's Kiss x3" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:1842:/ -509.3 "The Widow's Embrace" sync / 1[56]:[^:]*:Arachne Eve:1888:/ -511.9 "Pitfall" sync / 1[56]:[^:]*:Arachne Eve:1845:/ +494.4 "Tremblor x3" Ability { id: "1837", source: "Arachne Eve" } +501.3 "The Widow's Kiss x3" duration 5 # Ability { id: "1842", source: "Arachne Eve" } +509.3 "The Widow's Embrace" Ability { id: "1888", source: "Arachne Eve" } +511.9 "Pitfall" Ability { id: "1845", source: "Arachne Eve" } 513.9 "--targetable--" -520.6 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -526.4 "Silken Spray" sync / 1[56]:[^:]*:Arachne Eve:1824:/ -535.0 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -546.3 "Frond Affeared" sync / 1[56]:[^:]*:Arachne Eve:183A:/ window 30,30 -559.7 "Shadow Burst" sync / 1[56]:[^:]*:Arachne Eve:1838:/ -565.2 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -572.2 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1847:/ -575.9 "Sticky Wicket x3" # sync / 1[56]:[^:]*:Arachne Eve:183F:/ +520.6 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +526.4 "Silken Spray" Ability { id: "1824", source: "Arachne Eve" } +535.0 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +546.3 "Frond Affeared" Ability { id: "183A", source: "Arachne Eve" } window 30,30 +559.7 "Shadow Burst" Ability { id: "1838", source: "Arachne Eve" } +565.2 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +572.2 "--sync--" Ability { id: "1847", source: "Arachne Eve" } +575.9 "Sticky Wicket x3" # Ability { id: "183F", source: "Arachne Eve" } 578.3 "--untargetable--" -582.9 "Tremblor x3" sync / 1[56]:[^:]*:Arachne Eve:1837:/ +582.9 "Tremblor x3" Ability { id: "1837", source: "Arachne Eve" } # And *finally* we get to rotation blocks! # It may not be necessary to sync so widely, but it's probably a safe bet, # since we don't have any network logs that get this far to verify. -589.4 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1889:/ window 100,5 -590.9 "Pitfall" sync / 1[56]:[^:]*:Arachne Eve:1825:/ +589.4 "--sync--" Ability { id: "1889", source: "Arachne Eve" } window 100,5 +590.9 "Pitfall" Ability { id: "1825", source: "Arachne Eve" } 592.9 "--targetable--" -604.6 "Arachne Web x3" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:185E:/ -617.8 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -623.3 "Silken Spray" sync / 1[56]:[^:]*:Arachne Eve:1824:/ -631.8 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -642.8 "Frond Affeared" sync / 1[56]:[^:]*:Arachne Eve:183A:/ window 30,30 -656.5 "Shadow Burst" sync / 1[56]:[^:]*:Arachne Eve:1838:/ -662.0 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -677.0 "Arachne Web x3" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:185E:/ +604.6 "Arachne Web x3" duration 5 # Ability { id: "185E", source: "Arachne Eve" } +617.8 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +623.3 "Silken Spray" Ability { id: "1824", source: "Arachne Eve" } +631.8 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +642.8 "Frond Affeared" Ability { id: "183A", source: "Arachne Eve" } window 30,30 +656.5 "Shadow Burst" Ability { id: "1838", source: "Arachne Eve" } +662.0 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +677.0 "Arachne Web x3" duration 5 # Ability { id: "185E", source: "Arachne Eve" } 681.2 "--untargetable--" -684.9 "The Widow's Kiss x3" duration 5 # sync / 1[56]:[^:]*:Arachne Eve:1842:/ -692.9 "The Widow's Embrace" sync / 1[56]:[^:]*:Arachne Eve:1888:/ -695.4 "Pitfall" sync / 1[56]:[^:]*:Arachne Eve:1845:/ +684.9 "The Widow's Kiss x3" duration 5 # Ability { id: "1842", source: "Arachne Eve" } +692.9 "The Widow's Embrace" Ability { id: "1888", source: "Arachne Eve" } +695.4 "Pitfall" Ability { id: "1845", source: "Arachne Eve" } 697.4 "--targetable--" -703.4 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1847:/ -707.1 "Sticky Wicket x3" # sync / 1[56]:[^:]*:Arachne Eve:183F:/ -716.1 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -721.6 "Silken Spray" sync / 1[56]:[^:]*:Arachne Eve:1824:/ -730.1 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -741.1 "Frond Affeared" sync / 1[56]:[^:]*:Arachne Eve:183A:/ window 30,30 -754.7 "Shadow Burst" sync / 1[56]:[^:]*:Arachne Eve:1838:/ -760.2 "Dark Spike" sync / 1[56]:[^:]*:Arachne Eve:1823:/ -767.2 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1847:/ -770.8 "Sticky Wicket x3" # sync / 1[56]:[^:]*:Arachne Eve:183F:/ +703.4 "--sync--" Ability { id: "1847", source: "Arachne Eve" } +707.1 "Sticky Wicket x3" # Ability { id: "183F", source: "Arachne Eve" } +716.1 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +721.6 "Silken Spray" Ability { id: "1824", source: "Arachne Eve" } +730.1 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +741.1 "Frond Affeared" Ability { id: "183A", source: "Arachne Eve" } window 30,30 +754.7 "Shadow Burst" Ability { id: "1838", source: "Arachne Eve" } +760.2 "Dark Spike" Ability { id: "1823", source: "Arachne Eve" } +767.2 "--sync--" Ability { id: "1847", source: "Arachne Eve" } +770.8 "Sticky Wicket x3" # Ability { id: "183F", source: "Arachne Eve" } 773.0 "--untargetable--" -777.6 "Tremblor x3" # sync / 1[56]:[^:]*:Arachne Eve:1837:/ +777.6 "Tremblor x3" # Ability { id: "1837", source: "Arachne Eve" } -784.1 "--sync--" sync / 1[56]:[^:]*:Arachne Eve:1889:/ jump 589.4 +784.1 "--sync--" Ability { id: "1889", source: "Arachne Eve" } jump 589.4 785.6 "Pitfall" 787.6 "--targetable--" 799.3 "Arachne Web" @@ -134,21 +134,21 @@ hideall "--sync--" # -ii 366 17D5 17C1 17D6 # The Shrine of the Goetic will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6E3:/ window 1000,5 -1014.2 "Necropurge" sync / 1[56]:[^:]*:Shriveled Talon:17D7:/ -1024.4 "Megiddo Flame" sync / 1[56]:[^:]*:Forgall:17C0:/ -1032.4 "Necropurge" sync / 1[56]:[^:]*:Forgall:17BE:/ -1060.7 "Megiddo Flame" sync / 1[56]:[^:]*:Forgall:17C0:/ -1066.7 "Punishing Ray" sync / 1[56]:[^:]*:Forgall:17C4:/ -1081.0 "Brand of the Fallen" sync / 1[56]:[^:]*:Forgall:17CC:/ window 20,20 -1090.3 "Evil Mist" sync / 1[56]:[^:]*:Forgall:17C5:/ -1101.3 "Necropurge" sync / 1[56]:[^:]*:Shriveled Talon:17D7:/ -1118.3 "Necropurge" sync / 1[56]:[^:]*:Forgall:17BE:/ -1131.6 "Necropurge" sync / 1[56]:[^:]*:Forgall:17BF:/ -1132.8 "Brand of the Fallen" sync / 1[56]:[^:]*:Forgall:17CC:/ window 20,20 -1141.1 "--sync--" sync / 1[56]:[^:]*:Forgall:17C2:/ # Dark Eruption markers go out. -1146.3 "Dark Eruption x3" # sync / 1[56]:[^:]*:Forgall:17C3:/ -1163.2 "--sync--" sync / 1[56]:[^:]*:Forgall:17C7:/ window 163.2 # Pushes at 50% HP. +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6E3" } window 1000,5 +1014.2 "Necropurge" Ability { id: "17D7", source: "Shriveled Talon" } +1024.4 "Megiddo Flame" Ability { id: "17C0", source: "Forgall" } +1032.4 "Necropurge" Ability { id: "17BE", source: "Forgall" } +1060.7 "Megiddo Flame" Ability { id: "17C0", source: "Forgall" } +1066.7 "Punishing Ray" Ability { id: "17C4", source: "Forgall" } +1081.0 "Brand of the Fallen" Ability { id: "17CC", source: "Forgall" } window 20,20 +1090.3 "Evil Mist" Ability { id: "17C5", source: "Forgall" } +1101.3 "Necropurge" Ability { id: "17D7", source: "Shriveled Talon" } +1118.3 "Necropurge" Ability { id: "17BE", source: "Forgall" } +1131.6 "Necropurge" Ability { id: "17BF", source: "Forgall" } +1132.8 "Brand of the Fallen" Ability { id: "17CC", source: "Forgall" } window 20,20 +1141.1 "--sync--" Ability { id: "17C2", source: "Forgall" } # Dark Eruption markers go out. +1146.3 "Dark Eruption x3" # Ability { id: "17C3", source: "Forgall" } +1163.2 "--sync--" Ability { id: "17C7", source: "Forgall" } window 163.2 # Pushes at 50% HP. # We don't know how long the intermission goes. # There's no data available to tell us what, if anything, @@ -156,25 +156,25 @@ hideall "--sync--" # It could even be nothing. # If the intermission goes longer than 3 minutes, something is WRONG. -1350.0 "Mana Explosion" sync / 1[56]:[^:]*:Forgall:17C8:/ window 350,5 - -1360.2 "Necropurge" sync / 1[56]:[^:]*:Forgall:17BE:/ window 200,5 -1373.4 "Necropurge" sync / 1[56]:[^:]*:Forgall:17BF:/ -1373.4 "--sync--" sync / 1[56]:[^:]*:Poison Mist:17D8:/ -1377.5 "Mega Death" sync / 1[56]:[^:]*:Forgall:17CA:/ window 20,20 -1388.5 "--sync--" sync / 1[56]:[^:]*:Forgall:17C2:/ -1393.7 "Dark Eruption x3" # sync / 1[56]:[^:]*:Forgall:17C3:/ -1395.7 "Megiddo Flame" sync / 1[56]:[^:]*:Forgall:17C0:/ -1400.9 "Evil Mist" sync / 1[56]:[^:]*:Forgall:17C5:/ -1414.9 "Necropurge" sync / 1[56]:[^:]*:Forgall:17BF:/ -1414.9 "--sync--" sync / 1[56]:[^:]*:Poison Mist:17D8:/ -1419.1 "Mega Death" sync / 1[56]:[^:]*:Forgall:17CA:/ window 20,20 -1439.2 "Hell Wind" sync / 1[56]:[^:]*:Forgall:17CB:/ -1453.3 "Brand of the Fallen" sync / 1[56]:[^:]*:Forgall:17CC:/ -1459.5 "Punishing Ray" sync / 1[56]:[^:]*:Forgall:17C4:/ -1465.6 "Brand of the Fallen" sync / 1[56]:[^:]*:Forgall:17CC:/ - -1481.9 "Necropurge" sync / 1[56]:[^:]*:Forgall:17BE:/ jump 1360.2 +1350.0 "Mana Explosion" Ability { id: "17C8", source: "Forgall" } window 350,5 + +1360.2 "Necropurge" Ability { id: "17BE", source: "Forgall" } window 200,5 +1373.4 "Necropurge" Ability { id: "17BF", source: "Forgall" } +1373.4 "--sync--" Ability { id: "17D8", source: "Poison Mist" } +1377.5 "Mega Death" Ability { id: "17CA", source: "Forgall" } window 20,20 +1388.5 "--sync--" Ability { id: "17C2", source: "Forgall" } +1393.7 "Dark Eruption x3" # Ability { id: "17C3", source: "Forgall" } +1395.7 "Megiddo Flame" Ability { id: "17C0", source: "Forgall" } +1400.9 "Evil Mist" Ability { id: "17C5", source: "Forgall" } +1414.9 "Necropurge" Ability { id: "17BF", source: "Forgall" } +1414.9 "--sync--" Ability { id: "17D8", source: "Poison Mist" } +1419.1 "Mega Death" Ability { id: "17CA", source: "Forgall" } window 20,20 +1439.2 "Hell Wind" Ability { id: "17CB", source: "Forgall" } +1453.3 "Brand of the Fallen" Ability { id: "17CC", source: "Forgall" } +1459.5 "Punishing Ray" Ability { id: "17C4", source: "Forgall" } +1465.6 "Brand of the Fallen" Ability { id: "17CC", source: "Forgall" } + +1481.9 "Necropurge" Ability { id: "17BE", source: "Forgall" } jump 1360.2 1495.1 "Necropurge" 1499.1 "Mega Death" 1515.4 "Dark Eruption x3" @@ -195,12 +195,12 @@ hideall "--sync--" # Cube opening block ----> Intermission --> Sphere bridge block --> (Cube|Sphere) rotation blocks | # The Gloriole will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6E5:/ window 2000,5 +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6E5" } window 2000,5 2015.0 "Meteor Headmarkers" -2024.0 "Meteor Impact" sync / 1[56]:[^:]*:Singularity Fragment:1935:/ +2024.0 "Meteor Impact" Ability { id: "1935", source: "Singularity Fragment" } -2045.5 "Transfiguration (Pyramid/Cube?)" sync / 1[56]:[^:]*:Ozma:1826:/ jump 2150.0 -2045.5 "--sync--" sync / 1[56]:[^:]*:Ozma:1803:/ jump 2250.0 +2045.5 "Transfiguration (Pyramid/Cube?)" Ability { id: "1826", source: "Ozma" } jump 2150.0 +2045.5 "--sync--" Ability { id: "1803", source: "Ozma" } jump 2250.0 2052.6 "Execration?" 2052.6 "Flare Star?" 2059.0 "Explosion x5?" @@ -208,21 +208,21 @@ hideall "--sync--" # Pyramid-first path -2150.0 "Transfiguration (Pyramid)" sync / 1[56]:[^:]*:Ozma:1826:/ -2157.1 "Execration" sync / 1[56]:[^:]*:Ozma:1828:/ -2178.4 "Acceleration Bomb" sync / 1[56]:[^:]*:Ozma:182F:/ -2195.7 "Transfiguration (Sphere)" sync / 1[56]:[^:]*:Ozma:1827:/ -2199.1 "--sync--" sync / 14:[^:]*:Ozma:1800:/ window 48.8,5 -2203.8 "Black Hole" sync / 1[56]:[^:]*:Ozma:1800:/ window 53,5 jump 2400.0 +2150.0 "Transfiguration (Pyramid)" Ability { id: "1826", source: "Ozma" } +2157.1 "Execration" Ability { id: "1828", source: "Ozma" } +2178.4 "Acceleration Bomb" Ability { id: "182F", source: "Ozma" } +2195.7 "Transfiguration (Sphere)" Ability { id: "1827", source: "Ozma" } +2199.1 "--sync--" StartsUsing { id: "1800", source: "Ozma" } window 48.8,5 +2203.8 "Black Hole" Ability { id: "1800", source: "Ozma" } window 53,5 jump 2400.0 # Cube-first path -2250.0 "Transfiguration (Cube)" sync / 1[56]:[^:]*:Ozma:1803:/ -2257.0 "Flare Star" sync / 1[56]:[^:]*:Ozma:1805:/ -2288.0 "Holy" sync / 1[56]:[^:]*:Ozma:182E:/ -2300.0 "Transfiguration (Sphere)" sync / 1[56]:[^:]*:Ozma:1804:/ -2303.3 "--sync--" sync / 14:[^:]*:Ozma:1800:/ window 53.3,5 -2308.0 "Black Hole" sync / 1[56]:[^:]*:Ozma:1800:/ window 58,5 jump 2400.0 +2250.0 "Transfiguration (Cube)" Ability { id: "1803", source: "Ozma" } +2257.0 "Flare Star" Ability { id: "1805", source: "Ozma" } +2288.0 "Holy" Ability { id: "182E", source: "Ozma" } +2300.0 "Transfiguration (Sphere)" Ability { id: "1804", source: "Ozma" } +2303.3 "--sync--" StartsUsing { id: "1800", source: "Ozma" } window 53.3,5 +2308.0 "Black Hole" Ability { id: "1800", source: "Ozma" } window 58,5 jump 2400.0 # Intermission @@ -233,9 +233,9 @@ hideall "--sync--" # Instead, we just let the timeline play on dead space. # The intermission's enrage is probably under 3 minutes, but we have no way to know. -2594.4 "--sync--" sync / 1[56]:[^:]*:Ozma:182D:/ window 194.4,0 -2600.0 "--sync--" sync / 1[56]:[^:]*:Ozma:1826:/ window 200,5 jump 2700.0 -2600.0 "--sync--" sync / 1[56]:[^:]*:Ozma:1803:/ window 200,5 jump 3000.0 +2594.4 "--sync--" Ability { id: "182D", source: "Ozma" } window 194.4,0 +2600.0 "--sync--" Ability { id: "1826", source: "Ozma" } window 200,5 jump 2700.0 +2600.0 "--sync--" Ability { id: "1803", source: "Ozma" } window 200,5 jump 3000.0 # The continuation from the intermission is dependent on whichever was first. # Each has its own bridge block, each one leading into a pair of rotation blocks. @@ -244,14 +244,14 @@ hideall "--sync--" # Cube-first continued -2700.0 "Transfiguration (Pyramid)" sync / 1[56]:[^:]*:Ozma:1826:/ -2707.0 "Execration" sync / 1[56]:[^:]*:Ozma:1828:/ -2728.0 "Acceleration Bomb" sync / 1[56]:[^:]*:Ozma:182F:/ -2745.0 "Transfiguration (Sphere)" sync / 1[56]:[^:]*:Ozma:1827:/ window 45,5 -2763.0 "Meteor Impact" sync / 1[56]:[^:]*:Singularity Fragment:1935:/ - -2790.8 "Transfiguration (Cube/Pyramid?)" sync / 1[56]:[^:]*:Ozma:1826:/ window 50,5 jump 3200 -2790.8 "--sync--" sync / 1[56]:[^:]*:Ozma:1803:/ window 50,5 jump 3400 +2700.0 "Transfiguration (Pyramid)" Ability { id: "1826", source: "Ozma" } +2707.0 "Execration" Ability { id: "1828", source: "Ozma" } +2728.0 "Acceleration Bomb" Ability { id: "182F", source: "Ozma" } +2745.0 "Transfiguration (Sphere)" Ability { id: "1827", source: "Ozma" } window 45,5 +2763.0 "Meteor Impact" Ability { id: "1935", source: "Singularity Fragment" } + +2790.8 "Transfiguration (Cube/Pyramid?)" Ability { id: "1826", source: "Ozma" } window 50,5 jump 3200 +2790.8 "--sync--" Ability { id: "1803", source: "Ozma" } window 50,5 jump 3400 2797.8 "Execration?" 2797.8 "Flare Star?" 2809.8 "Holy?" @@ -261,14 +261,14 @@ hideall "--sync--" # Pyramid-first continued -3000.0 "Transfiguration (Cube)" sync / 1[56]:[^:]*:Ozma:1803:/ -3007.0 "Flare Star" sync / 1[56]:[^:]*:Ozma:1805:/ -3011.0 "Tank Lasers" # sync / 1[56]:[^:]*:Ozma:1831:/ -3029.7 "Transfiguration (Sphere)" sync / 1[56]:[^:]*:Ozma:1804:/ -3047.9 "Meteor Impact" sync / 1[56]:[^:]*:Singularity Fragment:1935:/ +3000.0 "Transfiguration (Cube)" Ability { id: "1803", source: "Ozma" } +3007.0 "Flare Star" Ability { id: "1805", source: "Ozma" } +3011.0 "Tank Lasers" # Ability { id: "1831", source: "Ozma" } +3029.7 "Transfiguration (Sphere)" Ability { id: "1804", source: "Ozma" } +3047.9 "Meteor Impact" Ability { id: "1935", source: "Singularity Fragment" } -3080.8 "Transfiguration (Cube/Pyramid?)" sync / 1[56]:[^:]*:Ozma:1826:/ window 50,5 jump 3200 -3080.8 "--sync--" sync / 1[56]:[^:]*:Ozma:1803:/ window 50,5 jump 3400 +3080.8 "Transfiguration (Cube/Pyramid?)" Ability { id: "1826", source: "Ozma" } window 50,5 jump 3200 +3080.8 "--sync--" Ability { id: "1803", source: "Ozma" } window 50,5 jump 3400 3087.8 "Execration?" 3087.8 "Flare Star?" 3091.8 "Tank Lasers?" @@ -278,16 +278,16 @@ hideall "--sync--" # Pyramid standard rotation -3200.0 "Transfiguration (Pyramid)" sync / 1[56]:[^:]*:Ozma:1826:/ -3207.0 "Execration" sync / 1[56]:[^:]*:Ozma:1828:/ -3223.0 "Acceleration Bomb" sync / 1[56]:[^:]*:Ozma:182F:/ -3226.0 "Meteor Impact" sync / 1[56]:[^:]*:Singularity Fragment:1935:/ -3246.5 "Meteor" # sync / 1[56]:[^:]*:Ozma:182D:/ -3261.0 "Acceleration Bomb" sync / 1[56]:[^:]*:Ozma:182F:/ -3263.0 "Transfiguration (Sphere)" sync / 1[56]:[^:]*:Ozma:1827:/ window 50,5 +3200.0 "Transfiguration (Pyramid)" Ability { id: "1826", source: "Ozma" } +3207.0 "Execration" Ability { id: "1828", source: "Ozma" } +3223.0 "Acceleration Bomb" Ability { id: "182F", source: "Ozma" } +3226.0 "Meteor Impact" Ability { id: "1935", source: "Singularity Fragment" } +3246.5 "Meteor" # Ability { id: "182D", source: "Ozma" } +3261.0 "Acceleration Bomb" Ability { id: "182F", source: "Ozma" } +3263.0 "Transfiguration (Sphere)" Ability { id: "1827", source: "Ozma" } window 50,5 -3275.0 "Transfiguration (Cube/Pyramid?)" sync / 1[56]:[^:]*:Ozma:1826:/ window 50,5 jump 3200 -3275.0 "--sync--" sync / 1[56]:[^:]*:Ozma:1803:/ jump 3400 +3275.0 "Transfiguration (Cube/Pyramid?)" Ability { id: "1826", source: "Ozma" } window 50,5 jump 3200 +3275.0 "--sync--" Ability { id: "1803", source: "Ozma" } jump 3400 3282.0 "Execration?" 3282.0 "Flare Star?" 3286.0 "Tank Lasers?" @@ -297,17 +297,17 @@ hideall "--sync--" # Cube standard rotation -3400.0 "Transfiguration (Cube)" sync / 1[56]:[^:]*:Ozma:1803:/ -3407.0 "Flare Star" sync / 1[56]:[^:]*:Ozma:1805:/ -3411.0 "Tank Lasers" # sync / 1[56]:[^:]*:Ozma:1831:/ -3419.2 "Holy" sync / 1[56]:[^:]*:Ozma:182E:/ -3435.1 "Meteor Impact" sync / 1[56]:[^:]*:Singularity Fragment:1935:/ -3441.3 "Holy" sync / 1[56]:[^:]*:Ozma:182E:/ -3456.6 "Meteor" # sync / 1[56]:[^:]*:Ozma:182D:/ -3463.2 "Transfiguration (Sphere)" sync / 1[56]:[^:]*:Ozma:1804:/ window 50,5 - -3475.2 "Transfiguration (Cube/Pyramid?)" sync / 1[56]:[^:]*:Ozma:1826:/ window 50,5 jump 3200 -3475.2 "--sync--" sync / 1[56]:[^:]*:Ozma:1803:/ window 50,5 jump 3400 +3400.0 "Transfiguration (Cube)" Ability { id: "1803", source: "Ozma" } +3407.0 "Flare Star" Ability { id: "1805", source: "Ozma" } +3411.0 "Tank Lasers" # Ability { id: "1831", source: "Ozma" } +3419.2 "Holy" Ability { id: "182E", source: "Ozma" } +3435.1 "Meteor Impact" Ability { id: "1935", source: "Singularity Fragment" } +3441.3 "Holy" Ability { id: "182E", source: "Ozma" } +3456.6 "Meteor" # Ability { id: "182D", source: "Ozma" } +3463.2 "Transfiguration (Sphere)" Ability { id: "1804", source: "Ozma" } window 50,5 + +3475.2 "Transfiguration (Cube/Pyramid?)" Ability { id: "1826", source: "Ozma" } window 50,5 jump 3200 +3475.2 "--sync--" Ability { id: "1803", source: "Ozma" } window 50,5 jump 3400 3482.2 "Execration?" 3482.2 "Flare Star?" 3486.2 "Tank Lasers?" @@ -326,34 +326,34 @@ hideall "--sync--" # 1811 and 180D are releasing hair after Haircut and Split End cleaves # Tomb of the Nullstone will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6E6:/ window 4000,5 -4004.1 "Bloodied Nail x4" # sync / 1[56]:[^:]*:Calofisteri:181F:/ -4018.8 "Coif Change" sync / 1[56]:[^:]*:Calofisteri:180[AE]:/ window 18.8,5 -4027.8 "Haircut" sync / 1[56]:[^:]*:Calofisteri:180[BF]:/ -4030.8 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4035.8 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4040.8 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4043.8 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4047.8 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4051.9 "--sync--" sync / 1[56]:[^:]*:Calofisteri:18(0D|11):/ window 51,5 -4054.9 "Coif Change" sync / 1[56]:[^:]*:Calofisteri:180[AE]:/ -4063.9 "Haircut" sync / 1[56]:[^:]*:Calofisteri:180[BF]:/ -4066.9 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4071.9 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4076.9 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4079.9 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4083.9 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4090.9 "Haircut" sync / 1[56]:[^:]*:Calofisteri:180[BF]:/ -4093.9 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4096.9 "Aura Burst" sync / 1[56]:[^:]*:Calofisteri:1821:/ -4099.8 "--sync--" sync / 1[56]:[^:]*:Calofisteri:18(0D|11):/ window 40,5 +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6E6" } window 4000,5 +4004.1 "Bloodied Nail x4" # Ability { id: "181F", source: "Calofisteri" } +4018.8 "Coif Change" Ability { id: "180[AE]", source: "Calofisteri" } window 18.8,5 +4027.8 "Haircut" Ability { id: "180[BF]", source: "Calofisteri" } +4030.8 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4035.8 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4040.8 "Extension" Ability { id: "1812", source: "Calofisteri" } +4043.8 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4047.8 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4051.9 "--sync--" Ability { id: "18(0D|11)", source: "Calofisteri" } window 51,5 +4054.9 "Coif Change" Ability { id: "180[AE]", source: "Calofisteri" } +4063.9 "Haircut" Ability { id: "180[BF]", source: "Calofisteri" } +4066.9 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4071.9 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4076.9 "Extension" Ability { id: "1812", source: "Calofisteri" } +4079.9 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4083.9 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4090.9 "Haircut" Ability { id: "180[BF]", source: "Calofisteri" } +4093.9 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4096.9 "Aura Burst" Ability { id: "1821", source: "Calofisteri" } +4099.8 "--sync--" Ability { id: "18(0D|11)", source: "Calofisteri" } window 40,5 4101.4 "--untargetable--" -4103.8 "Dancing Mad" sync / 1[56]:[^:]*:Calofisteri:1818:/ window 103.8,5 +4103.8 "Dancing Mad" Ability { id: "1818", source: "Calofisteri" } window 103.8,5 # An intermission full of SKY LASERS -4112.3 "Feint Particle Beam x16" sync / 1[56]:[^:]*:Calofisteri:1927:/ duration 10 -4131.6 "Feint Particle Beam x16" sync / 1[56]:[^:]*:Calofisteri:1927:/ duration 10 -4140.9 "Feint Particle Beam x16" sync / 1[56]:[^:]*:Calofisteri:1927:/ jump 4112.3 +4112.3 "Feint Particle Beam x16" Ability { id: "1927", source: "Calofisteri" } duration 10 +4131.6 "Feint Particle Beam x16" Ability { id: "1927", source: "Calofisteri" } duration 10 +4140.9 "Feint Particle Beam x16" Ability { id: "1927", source: "Calofisteri" } jump 4112.3 4160.8 "Feint Particle Beam x16" @@ -361,60 +361,60 @@ hideall "--sync--" # It doesn't look like time taken on the intermission affects how many times # Dancing Mad strikes. -4200.0 "Mana Drain" sync / 1[56]:[^:]*:Calofisteri:1819:/ window 80,5 -4204.0 "Dancing Mad" sync / 1[56]:[^:]*:Calofisteri:181A:/ +4200.0 "Mana Drain" Ability { id: "1819", source: "Calofisteri" } window 80,5 +4204.0 "Dancing Mad" Ability { id: "181A", source: "Calofisteri" } 4212.9 "--targetable--" -4215.0 "Coif Change" sync / 1[56]:[^:]*:Calofisteri:180[AE]:/ -4224.0 "Haircut" sync / 1[56]:[^:]*:Calofisteri:180[BF]:/ -4227.0 "--sync--" sync / 1[56]:[^:]*:Calofisteri:18(0D|11):/ -4232.0 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4237.0 "--sync--" sync / 1[56]:[^:]*:Calofisteri:1813:/ -4238.0 "Bloodied Nail x3" # sync / 1[56]:[^:]*:Calofisteri:181F:/ -4249.0 "Evil Curl/Evil Tress" sync / 1[56]:[^:]*:Living Lock:181[67]:/ -4251.5 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4253.5 "Coif Change" sync / 1[56]:[^:]*:Calofisteri:180[AE]:/ window 15,15 +4215.0 "Coif Change" Ability { id: "180[AE]", source: "Calofisteri" } +4224.0 "Haircut" Ability { id: "180[BF]", source: "Calofisteri" } +4227.0 "--sync--" Ability { id: "18(0D|11)", source: "Calofisteri" } +4232.0 "Extension" Ability { id: "1812", source: "Calofisteri" } +4237.0 "--sync--" Ability { id: "1813", source: "Calofisteri" } +4238.0 "Bloodied Nail x3" # Ability { id: "181F", source: "Calofisteri" } +4249.0 "Evil Curl/Evil Tress" Ability { id: "181[67]", source: "Living Lock" } +4251.5 "Extension" Ability { id: "1812", source: "Calofisteri" } +4253.5 "Coif Change" Ability { id: "180[AE]", source: "Calofisteri" } window 15,15 # This section of the bridge may be skipped depending on DPS. HP% for push is unknown. -4262.5 "Haircut" sync / 1[56]:[^:]*:Calofisteri:180[BF]:/ -4268.5 "Aura Burst" sync / 1[56]:[^:]*:Calofisteri:1821:/ -4273.5 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4278.5 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ +4262.5 "Haircut" Ability { id: "180[BF]", source: "Calofisteri" } +4268.5 "Aura Burst" Ability { id: "1821", source: "Calofisteri" } +4273.5 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4278.5 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } -4280.5 "--sync--" sync / 1[56]:[^:]*:Calofisteri:18(0D|11):/ window 27,15 -4285.5 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4290.5 "--sync--" sync / 1[56]:[^:]*:Calofisteri:1813:/ -4293.4 "Penetration" sync / 1[56]:[^:]*:Calofisteri:1822:/ +4280.5 "--sync--" Ability { id: "18(0D|11)", source: "Calofisteri" } window 27,15 +4285.5 "Extension" Ability { id: "1812", source: "Calofisteri" } +4290.5 "--sync--" Ability { id: "1813", source: "Calofisteri" } +4293.4 "Penetration" Ability { id: "1822", source: "Calofisteri" } # Rotation block to 0% -4296.9 "Coif Change" sync / 1[56]:[^:]*:Calofisteri:180[AE]:/ window 15,15 -4307.2 "Depth Charge" sync / 1[56]:[^:]*:Calofisteri:1820:/ -4311.2 "Haircut" sync / 1[56]:[^:]*:Calofisteri:180[BF]:/ -4317.2 "--sync--" sync / 1[56]:[^:]*:Calofisteri:18(0D|11):/ -4322.2 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4325.2 "Bloodied Nail x3" # sync / 1[56]:[^:]*:Calofisteri:181F:/ -4332.2 "Aura Burst" sync / 1[56]:[^:]*:Calofisteri:1821:/ -4338.7 "Coif Change" sync / 1[56]:[^:]*:Calofisteri:180[AE]:/ window 15,15 -4339.2 "Evil Switch" sync / 1[56]:[^:]*:Living Lock:1815:/ -4345.7 "Haircut" sync / 1[56]:[^:]*:Calofisteri:180[BF]:/ -4351.7 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4356.7 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4358.7 "--sync--" sync / 1[56]:[^:]*:Calofisteri:18(0D|11):/ -4363.7 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4367.7 "Bloodied Nail x3" # sync / 1[56]:[^:]*:Calofisteri:181F:/ -4377.2 "Aura Burst" sync / 1[56]:[^:]*:Calofisteri:1821:/ -4379.2 "Coif Change" sync / 1[56]:[^:]*:Calofisteri:180[AE]:/ window 15,15 -4380.7 "Evil Curl/Evil Tress" sync / 1[56]:[^:]*:Living Lock:181[67]:/ -4386.3 "Haircut" sync / 1[56]:[^:]*:Calofisteri:180[BF]:/ -4392.3 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4397.3 "Split End" sync / 1[56]:[^:]*:Calofisteri:18(0C|10):/ -4402.3 "Aura Burst" sync / 1[56]:[^:]*:Calofisteri:1821:/ -4404.3 "--sync--" sync / 1[56]:[^:]*:Calofisteri:18(0D|11):/ -4409.3 "Extension" sync / 1[56]:[^:]*:Calofisteri:1812:/ -4414.3 "--sync--" sync / 1[56]:[^:]*:Calofisteri:1813:/ -4417.7 "Penetration" sync / 1[56]:[^:]*:Calofisteri:1822:/ -4421.2 "Evil Curl/Evil Tress" sync / 1[56]:[^:]*:Living Lock:181[67]:/ - -4421.2 "Coif Change" sync / 1[56]:[^:]*:Calofisteri:180[AE]:/ window 15,15 jump 4296.9 +4296.9 "Coif Change" Ability { id: "180[AE]", source: "Calofisteri" } window 15,15 +4307.2 "Depth Charge" Ability { id: "1820", source: "Calofisteri" } +4311.2 "Haircut" Ability { id: "180[BF]", source: "Calofisteri" } +4317.2 "--sync--" Ability { id: "18(0D|11)", source: "Calofisteri" } +4322.2 "Extension" Ability { id: "1812", source: "Calofisteri" } +4325.2 "Bloodied Nail x3" # Ability { id: "181F", source: "Calofisteri" } +4332.2 "Aura Burst" Ability { id: "1821", source: "Calofisteri" } +4338.7 "Coif Change" Ability { id: "180[AE]", source: "Calofisteri" } window 15,15 +4339.2 "Evil Switch" Ability { id: "1815", source: "Living Lock" } +4345.7 "Haircut" Ability { id: "180[BF]", source: "Calofisteri" } +4351.7 "Extension" Ability { id: "1812", source: "Calofisteri" } +4356.7 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4358.7 "--sync--" Ability { id: "18(0D|11)", source: "Calofisteri" } +4363.7 "Extension" Ability { id: "1812", source: "Calofisteri" } +4367.7 "Bloodied Nail x3" # Ability { id: "181F", source: "Calofisteri" } +4377.2 "Aura Burst" Ability { id: "1821", source: "Calofisteri" } +4379.2 "Coif Change" Ability { id: "180[AE]", source: "Calofisteri" } window 15,15 +4380.7 "Evil Curl/Evil Tress" Ability { id: "181[67]", source: "Living Lock" } +4386.3 "Haircut" Ability { id: "180[BF]", source: "Calofisteri" } +4392.3 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4397.3 "Split End" Ability { id: "18(0C|10)", source: "Calofisteri" } +4402.3 "Aura Burst" Ability { id: "1821", source: "Calofisteri" } +4404.3 "--sync--" Ability { id: "18(0D|11)", source: "Calofisteri" } +4409.3 "Extension" Ability { id: "1812", source: "Calofisteri" } +4414.3 "--sync--" Ability { id: "1813", source: "Calofisteri" } +4417.7 "Penetration" Ability { id: "1822", source: "Calofisteri" } +4421.2 "Evil Curl/Evil Tress" Ability { id: "181[67]", source: "Living Lock" } + +4421.2 "Coif Change" Ability { id: "180[AE]", source: "Calofisteri" } window 15,15 jump 4296.9 4431.5 "Depth Charge" 4435.5 "Haircut" 4446.5 "Extension" diff --git a/ui/raidboss/data/03-hw/dungeon/aetherochemical_research_facility.txt b/ui/raidboss/data/03-hw/dungeon/aetherochemical_research_facility.txt index 5b437a7fc3..6acf7d98ae 100644 --- a/ui/raidboss/data/03-hw/dungeon/aetherochemical_research_facility.txt +++ b/ui/raidboss/data/03-hw/dungeon/aetherochemical_research_facility.txt @@ -7,18 +7,18 @@ hideall "--sync--" # -ii 10E1 # Analysis and Proving will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:63E:/ -6.3 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ window 6.3,5 +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "63E" } +6.3 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } window 6.3,5 -13.4 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DD:/ window 13.4,2.5 -18.6 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DE:/ -25.5 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ -37.8 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ +13.4 "Judgment" Ability { id: "10DD", source: "Regula van Hydrus" } window 13.4,2.5 +18.6 "Judgment" Ability { id: "10DE", source: "Regula van Hydrus" } +25.5 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } +37.8 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } -44.9 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DD:/ window 15,3 -50.1 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DE:/ -57.0 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ -69.3 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ jump 37.8 +44.9 "Judgment" Ability { id: "10DD", source: "Regula van Hydrus" } window 15,3 +50.1 "Judgment" Ability { id: "10DE", source: "Regula van Hydrus" } +57.0 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } +69.3 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } jump 37.8 76.4 "Judgment" 81.6 "Judgment" @@ -26,32 +26,32 @@ hideall "--sync--" 100.8 "Bastardbluss" # First turrets at HP < 80% -150.0 "Magitek Turret" sync / 1[56]:[^:]*:Regula van Hydrus:10E0:/ window 150,5 -152.4 "--sync--" sync / 1[56]:[^:]*:Regula van Hydrus:10DF:/ -157.8 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -161.4 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -165.1 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -166.4 "--sync--" sync / 1[56]:[^:]*:Regula van Hydrus:10DF:/ -171.6 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -175.5 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -179.2 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -180.5 "--sync--" sync / 1[56]:[^:]*:Regula van Hydrus:10DF:/ -185.4 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -188.8 "Self-detonate?" sync / 1[56]:[^:]*:Magitek Turret I:10E3:/ -189.2 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -193.0 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ +150.0 "Magitek Turret" Ability { id: "10E0", source: "Regula van Hydrus" } window 150,5 +152.4 "--sync--" Ability { id: "10DF", source: "Regula van Hydrus" } +157.8 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +161.4 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +165.1 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +166.4 "--sync--" Ability { id: "10DF", source: "Regula van Hydrus" } +171.6 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +175.5 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +179.2 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +180.5 "--sync--" Ability { id: "10DF", source: "Regula van Hydrus" } +185.4 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +188.8 "Self-detonate?" Ability { id: "10E3", source: "Magitek Turret I" } +189.2 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +193.0 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } # Rotation resumes here whether or not turrets are successful -199.3 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ window 50,1 -202.4 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ -209.7 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DD:/ window 15,2.5 -215.0 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DE:/ +199.3 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } window 50,1 +202.4 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } +209.7 "Judgment" Ability { id: "10DD", source: "Regula van Hydrus" } window 15,2.5 +215.0 "Judgment" Ability { id: "10DE", source: "Regula van Hydrus" } -221.9 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ window 10,10 -234.2 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ -237.5 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ -244.7 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DD:/ -249.9 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DE:/ jump 215.0 +221.9 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } window 10,10 +234.2 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } +237.5 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } +244.7 "Judgment" Ability { id: "10DD", source: "Regula van Hydrus" } +249.9 "Judgment" Ability { id: "10DE", source: "Regula van Hydrus" } jump 215.0 256.8 "Bastardbluss" 269.1 "Bastardbluss" @@ -60,40 +60,40 @@ hideall "--sync--" 284.8 "Judgment" # Second turrets at HP < 50% -330.1 "Magitek Turret" sync / 1[56]:[^:]*:Regula van Hydrus:10E0:/ window 130,5 -332.5 "--sync--" sync / 1[56]:[^:]*:Regula van Hydrus:10DF:/ -337.8 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -340.7 "Aetherochemical Grenado" sync / 1[56]:[^:]*:Magitek Turret II:10E2:/ -341.4 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -345.0 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -345.7 "Aetherochemical Grenado" sync / 1[56]:[^:]*:Magitek Turret II:10E2:/ -346.2 "--sync--" sync / 1[56]:[^:]*:Regula van Hydrus:10DF:/ -350.9 "Aetherochemical Grenado" sync / 1[56]:[^:]*:Magitek Turret II:10E2:/ -351.4 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -355.1 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -356.1 "Aetherochemical Grenado" sync / 1[56]:[^:]*:Magitek Turret II:10E2:/ -358.8 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -360.0 "--sync--" sync / 1[56]:[^:]*:Regula van Hydrus:10DF:/ -361.3 "Aetherochemical Grenado" sync / 1[56]:[^:]*:Magitek Turret II:10E2:/ -365.0 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -368.0 "Self-detonate?" sync / 1[56]:[^:]*:(Magitek Turret I|Magitek Turret II):10E3:/ -368.7 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -372.5 "Magitek Slug" sync / 1[56]:[^:]*:Regula van Hydrus:10DB:/ -373.7 "--sync--" sync / 1[56]:[^:]*:Regula van Hydrus:10DF:/ +330.1 "Magitek Turret" Ability { id: "10E0", source: "Regula van Hydrus" } window 130,5 +332.5 "--sync--" Ability { id: "10DF", source: "Regula van Hydrus" } +337.8 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +340.7 "Aetherochemical Grenado" Ability { id: "10E2", source: "Magitek Turret II" } +341.4 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +345.0 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +345.7 "Aetherochemical Grenado" Ability { id: "10E2", source: "Magitek Turret II" } +346.2 "--sync--" Ability { id: "10DF", source: "Regula van Hydrus" } +350.9 "Aetherochemical Grenado" Ability { id: "10E2", source: "Magitek Turret II" } +351.4 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +355.1 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +356.1 "Aetherochemical Grenado" Ability { id: "10E2", source: "Magitek Turret II" } +358.8 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +360.0 "--sync--" Ability { id: "10DF", source: "Regula van Hydrus" } +361.3 "Aetherochemical Grenado" Ability { id: "10E2", source: "Magitek Turret II" } +365.0 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +368.0 "Self-detonate?" Ability { id: "10E3", source: ["Magitek Turret I", "Magitek Turret II"] } +368.7 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +372.5 "Magitek Slug" Ability { id: "10DB", source: "Regula van Hydrus" } +373.7 "--sync--" Ability { id: "10DF", source: "Regula van Hydrus" } # Brief rotation block -379.3 "Magitek Spread" sync / 1[56]:[^:]*:Regula van Hydrus:10DC:/ window 150,5 -386.5 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ -389.6 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ -392.7 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ -399.8 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DD:/ -405.0 "Judgment" sync / 1[56]:[^:]*:Regula van Hydrus:10DE:/ -414.9 "Magitek Spread" sync / 1[56]:[^:]*:Regula van Hydrus:10DC:/ window 15,15 -422.0 "Bastardbluss" sync / 1[56]:[^:]*:Regula van Hydrus:10DA:/ +379.3 "Magitek Spread" Ability { id: "10DC", source: "Regula van Hydrus" } window 150,5 +386.5 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } +389.6 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } +392.7 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } +399.8 "Judgment" Ability { id: "10DD", source: "Regula van Hydrus" } +405.0 "Judgment" Ability { id: "10DE", source: "Regula van Hydrus" } +414.9 "Magitek Spread" Ability { id: "10DC", source: "Regula van Hydrus" } window 15,15 +422.0 "Bastardbluss" Ability { id: "10DA", source: "Regula van Hydrus" } # More turrets, same as the second set # Clean loop to HP = 0 -429.1 "Magitek Turret" sync / 1[56]:[^:]*:Regula van Hydrus:10E0:/ window 50,5 jump 330.1 +429.1 "Magitek Turret" Ability { id: "10E0", source: "Regula van Hydrus" } window 50,5 jump 330.1 436.8 "Magitek Slug" 439.7 "Aetherochemical Grenado" 440.4 "Magitek Slug" @@ -115,43 +115,43 @@ hideall "--sync--" # by a unique version of the skill as well. # Evaluation and Authentication will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:63F:/ window 1000,5 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "63F" } window 1000,5 # Cobra is immediate -1008.6 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:10E8:/ window 9,9 -1011.7 "Steel Scales" sync / 1[56]:[^:]*:Harmachis:10EA:/ -1014.8 "Hood Swing" sync / 1[56]:[^:]*:Harmachis:10E9:/ -1019.0 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:138F:/ +1008.6 "Weighing of the Heart" Ability { id: "10E8", source: "Harmachis" } window 9,9 +1011.7 "Steel Scales" Ability { id: "10EA", source: "Harmachis" } +1014.8 "Hood Swing" Ability { id: "10E9", source: "Harmachis" } +1019.0 "Weighing of the Heart" Ability { id: "138F", source: "Harmachis" } # Base rotation after Cobra -1024.6 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E7:/ -1033.3 "Riddle of The Sphinx" sync / 1[56]:[^:]*:Harmachis:10E4:/ -1040.3 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E7:/ -1049.0 "Riddle of The Sphinx" sync / 1[56]:[^:]*:Harmachis:10E4:/ +1024.6 "Chthonic Hush" Ability { id: "10E7", source: "Harmachis" } +1033.3 "Riddle of The Sphinx" Ability { id: "10E4", source: "Harmachis" } +1040.3 "Chthonic Hush" Ability { id: "10E7", source: "Harmachis" } +1049.0 "Riddle of The Sphinx" Ability { id: "10E4", source: "Harmachis" } -1056.0 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E7:/ -1064.7 "Riddle of The Sphinx" sync / 1[56]:[^:]*:Harmachis:10E4:/ -1071.7 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E7:/ -1080.4 "Riddle of The Sphinx" sync / 1[56]:[^:]*:Harmachis:10E4:/ jump 1049.0 +1056.0 "Chthonic Hush" Ability { id: "10E7", source: "Harmachis" } +1064.7 "Riddle of The Sphinx" Ability { id: "10E4", source: "Harmachis" } +1071.7 "Chthonic Hush" Ability { id: "10E7", source: "Harmachis" } +1080.4 "Riddle of The Sphinx" Ability { id: "10E4", source: "Harmachis" } jump 1049.0 1087.4 "Chthonic Hush" 1096.1 "Riddle of The Sphinx" 1103.1 "Chthonic Hush" # Naga form at HP < 80% -1133.5 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:ECE:/ window 130,5 -1139.6 "Petrifaction" sync / 1[56]:[^:]*:Harmachis:10EB:/ +1133.5 "Weighing of the Heart" Ability { id: "ECE", source: "Harmachis" } window 130,5 +1139.6 "Petrifaction" Ability { id: "10EB", source: "Harmachis" } 1142.8 "Circle of Flames x2" # Same ID for both, syncing breaks things -1145.9 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:138F:/ +1145.9 "Weighing of the Heart" Ability { id: "138F", source: "Harmachis" } # Modified rotation after Naga -1151.5 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E7:/ window 10,10 -1160.1 "Riddle of The Sphinx" sync / 1[56]:[^:]*:Harmachis:10E4:/ -1169.4 "Ka" sync / 1[56]:[^:]*:Harmachis:10E6:/ +1151.5 "Chthonic Hush" Ability { id: "10E7", source: "Harmachis" } window 10,10 +1160.1 "Riddle of The Sphinx" Ability { id: "10E4", source: "Harmachis" } +1169.4 "Ka" Ability { id: "10E6", source: "Harmachis" } -1177.0 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E7:/ window 10,10 -1185.6 "Riddle of The Sphinx" sync / 1[56]:[^:]*:Harmachis:10E4:/ -1194.9 "Ka" sync / 1[56]:[^:]*:Harmachis:10E6:/ jump 1169.4 +1177.0 "Chthonic Hush" Ability { id: "10E7", source: "Harmachis" } window 10,10 +1185.6 "Riddle of The Sphinx" Ability { id: "10E4", source: "Harmachis" } +1194.9 "Ka" Ability { id: "10E6", source: "Harmachis" } jump 1169.4 1202.5 "Chthonic Hush" 1211.1 "Riddle of The Sphinx" @@ -159,33 +159,33 @@ hideall "--sync--" 1228.0 "Chthonic Hush" # Machina at HP < 50% -1250.0 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:ED0:/ window 250,5 -1253.2 "Inertia Stream" sync / 1[56]:[^:]*:Harmachis:10ED:/ -1258.3 "Ballistic Missile 1" sync / 1[56]:[^:]*:Harmachis:10EE:/ -1259.3 "Ballistic Missile 2" sync / 1[56]:[^:]*:Harmachis:12A3:/ -1260.4 "Ballistic Missile 3" sync / 1[56]:[^:]*:Harmachis:10EF:/ -1265.6 "Gaseous Bomb" sync / 1[56]:[^:]*:Harmachis:10F0:/ window 10,10 -1269.7 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:138F:/ +1250.0 "Weighing of the Heart" Ability { id: "ED0", source: "Harmachis" } window 250,5 +1253.2 "Inertia Stream" Ability { id: "10ED", source: "Harmachis" } +1258.3 "Ballistic Missile 1" Ability { id: "10EE", source: "Harmachis" } +1259.3 "Ballistic Missile 2" Ability { id: "12A3", source: "Harmachis" } +1260.4 "Ballistic Missile 3" Ability { id: "10EF", source: "Harmachis" } +1265.6 "Gaseous Bomb" Ability { id: "10F0", source: "Harmachis" } window 10,10 +1269.7 "Weighing of the Heart" Ability { id: "138F", source: "Harmachis" } # Rotation resumes to HP = 0 # Single rotation block is alternated with random form shift blocks -1275.2 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E7:/ -1283.8 "Riddle of The Sphinx" sync / 1[56]:[^:]*:Harmachis:10E4:/ -1293.1 "Ka" sync / 1[56]:[^:]*:Harmachis:10E6:/ +1275.2 "Chthonic Hush" Ability { id: "10E7", source: "Harmachis" } +1283.8 "Riddle of The Sphinx" Ability { id: "10E4", source: "Harmachis" } +1293.1 "Ka" Ability { id: "10E6", source: "Harmachis" } 1300.4 "Weighing of the Heart" -1300.4 "--sync--" sync / 1[56]:[^:]*:Harmachis:ED0:/ jump 1250.0 # Machina -1300.4 "--sync--" sync / 1[56]:[^:]*:Harmachis:10E8:/ jump 1350.0 # Cobra -1300.4 "--sync--" sync / 1[56]:[^:]*:Harmachis:ECE:/ jump 1400.0 # Naga +1300.4 "--sync--" Ability { id: "ED0", source: "Harmachis" } jump 1250.0 # Machina +1300.4 "--sync--" Ability { id: "10E8", source: "Harmachis" } jump 1350.0 # Cobra +1300.4 "--sync--" Ability { id: "ECE", source: "Harmachis" } jump 1400.0 # Naga 1303.5 "Steel Scales?" 1303.6 "Inertia Stream?" 1306.5 "Petrifaction?" # Random shift Cobra -1350.0 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:10E8:/ -1353.3 "Steel Scales" sync / 1[56]:[^:]*:Harmachis:10EA:/ window 10,10 -1356.5 "Hood Swing" sync / 1[56]:[^:]*:Harmachis:10E9:/ -1360.5 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:138F:/ -1366.2 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E7:/ window 10,10 jump 1275.2 +1350.0 "Weighing of the Heart" Ability { id: "10E8", source: "Harmachis" } +1353.3 "Steel Scales" Ability { id: "10EA", source: "Harmachis" } window 10,10 +1356.5 "Hood Swing" Ability { id: "10E9", source: "Harmachis" } +1360.5 "Weighing of the Heart" Ability { id: "138F", source: "Harmachis" } +1366.2 "Chthonic Hush" Ability { id: "10E7", source: "Harmachis" } window 10,10 jump 1275.2 1374.8 "Riddle of The Sphinx" 1384.1 "Ka" 1391.4 "Weighing of the Heart" @@ -194,11 +194,11 @@ hideall "--sync--" 1397.5 "Petrifaction?" # Random shift Naga -1400.0 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:ECE:/ -1406.1 "Petrifaction" sync / 1[56]:[^:]*:Harmachis:10EB:/ +1400.0 "Weighing of the Heart" Ability { id: "ECE", source: "Harmachis" } +1406.1 "Petrifaction" Ability { id: "10EB", source: "Harmachis" } 1409.3 "Circle of Flames x2" # Same ID for both, syncing breaks things -1412.4 "Weighing of the Heart" sync / 1[56]:[^:]*:Harmachis:138F:/ -1418.0 "Chthonic Hush" sync / 1[56]:[^:]*:Harmachis:10E8:/ window 10,10 jump 1275.2 +1412.4 "Weighing of the Heart" Ability { id: "138F", source: "Harmachis" } +1418.0 "Chthonic Hush" Ability { id: "10E8", source: "Harmachis" } window 10,10 jump 1275.2 1426.6 "Riddle of The Sphinx" 1435.9 "Ka" 1443.2 "Weighing of the Heart" @@ -213,23 +213,23 @@ hideall "--sync--" # -ii 10F1 10F3 10F6 10F8 10F9 12DE # We can't sync to the zone seal message because it's a two-part battle -2000.5 "--sync--" sync / 1[56]:[^:]*:Igeyorhm:10F1:/ window 2000.5,0 -2008.6 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ window 9,5 +2000.5 "--sync--" Ability { id: "10F1", source: "Igeyorhm" } window 2000.5,0 +2008.6 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } window 9,5 -2009.0 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2015.8 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2020.9 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ window 15,15 -2023.4 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2024.5 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:12DE:/ -2029.0 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2037.2 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ +2009.0 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2015.8 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2020.9 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } window 15,15 +2023.4 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2024.5 "Sea Of Pitch" Ability { id: "12DE", source: "Igeyorhm" } +2029.0 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2037.2 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } -2037.7 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2044.3 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2049.5 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ window 15,15 -2052.2 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2057.7 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2066.0 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ jump 2037.2 +2037.7 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2044.3 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2049.5 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } window 15,15 +2052.2 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2057.7 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2066.0 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } jump 2037.2 2066.5 "End Of Days" 2073.1 "Dark Orb" @@ -239,67 +239,67 @@ hideall "--sync--" 2094.8 "Dark Orb" # Special attack at HP < 75% -2100.0 "Blizzard Sphere" sync / 1[56]:[^:]*:Igeyorhm:10F5:/ window 100,5 -2105.2 "Blizzard Burst" sync / 1[56]:[^:]*:Blizzardsphere:10FE:/ -2108.3 "Fire Burst" sync / 1[56]:[^:]*:Firesphere:10FF:/ -2115.4 "Blizzard Burst" sync / 1[56]:[^:]*:Blizzardsphere:10FE:/ -2118.5 "Fire Burst" sync / 1[56]:[^:]*:Firesphere:10FF:/ +2100.0 "Blizzard Sphere" Ability { id: "10F5", source: "Igeyorhm" } window 100,5 +2105.2 "Blizzard Burst" Ability { id: "10FE", source: "Blizzardsphere" } +2108.3 "Fire Burst" Ability { id: "10FF", source: "Firesphere" } +2115.4 "Blizzard Burst" Ability { id: "10FE", source: "Blizzardsphere" } +2118.5 "Fire Burst" Ability { id: "10FF", source: "Firesphere" } # Modified rotation to HP < 50% # The two Ascians de-sync here. This section # is super-long to avoid any possibility of choppiness. -2122.6 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ window 20,20 -2123.8 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2131.7 "Shadow Flare" sync / 1[56]:[^:]*:Igeyorhm:10FA:/ -2137.4 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2142.9 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2148.1 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ window 20,20 -2151.9 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2156.3 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2163.5 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ window 20,20 -2165.3 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2172.5 "Shadow Flare" sync / 1[56]:[^:]*:Igeyorhm:10FA:/ -2179.7 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2183.6 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2188.8 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ window 20,20 -2193.0 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2197.0 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ - -2204.2 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ window 20,20 -2207.4 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2213.2 "Shadow Flare" sync / 1[56]:[^:]*:Igeyorhm:10FA:/ -2220.8 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2224.4 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2229.6 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ window 20,20 -2235.3 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2237.9 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2245.0 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ window 20,20 -2248.7 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2254.1 "Shadow Flare" sync / 1[56]:[^:]*:Igeyorhm:10FA:/ -2263.0 "End Of Days" sync / 1[56]:[^:]*:Lahabrea:10FD:/ -2265.5 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2270.6 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ window 20,20 -2276.4 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2278.8 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ +2122.6 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } window 20,20 +2123.8 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2131.7 "Shadow Flare" Ability { id: "10FA", source: "Igeyorhm" } +2137.4 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2142.9 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2148.1 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } window 20,20 +2151.9 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2156.3 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2163.5 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } window 20,20 +2165.3 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2172.5 "Shadow Flare" Ability { id: "10FA", source: "Igeyorhm" } +2179.7 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2183.6 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2188.8 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } window 20,20 +2193.0 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2197.0 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } + +2204.2 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } window 20,20 +2207.4 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2213.2 "Shadow Flare" Ability { id: "10FA", source: "Igeyorhm" } +2220.8 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2224.4 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2229.6 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } window 20,20 +2235.3 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2237.9 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2245.0 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } window 20,20 +2248.7 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2254.1 "Shadow Flare" Ability { id: "10FA", source: "Igeyorhm" } +2263.0 "End Of Days" Ability { id: "10FD", source: "Lahabrea" } +2265.5 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2270.6 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } window 20,20 +2276.4 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2278.8 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } #Lahabrea de-syncs from here, so we just sync to Igeyorhm now -2285.9 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ window 15,15 -2295.0 "Shadow Flare" sync / 1[56]:[^:]*:Igeyorhm:10FA:/ -2306.2 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2311.3 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ -2319.6 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2326.7 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ window 15,15 -2335.8 "Shadow Flare" sync / 1[56]:[^:]*:Igeyorhm:10FA:/ -2346.9 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2352.1 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ -2360.3 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ - -2367.4 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ window 15,15 -2376.6 "Shadow Flare" sync / 1[56]:[^:]*:Igeyorhm:10FA:/ -2387.8 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ -2392.9 "Sea Of Pitch" sync / 1[56]:[^:]*:Igeyorhm:10FB:/ -2401.2 "Dark Orb" sync / 1[56]:[^:]*:Igeyorhm:10FC:/ jump 2360.3 +2285.9 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } window 15,15 +2295.0 "Shadow Flare" Ability { id: "10FA", source: "Igeyorhm" } +2306.2 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2311.3 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } +2319.6 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2326.7 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } window 15,15 +2335.8 "Shadow Flare" Ability { id: "10FA", source: "Igeyorhm" } +2346.9 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2352.1 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } +2360.3 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } + +2367.4 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } window 15,15 +2376.6 "Shadow Flare" Ability { id: "10FA", source: "Igeyorhm" } +2387.8 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } +2392.9 "Sea Of Pitch" Ability { id: "10FB", source: "Igeyorhm" } +2401.2 "Dark Orb" Ability { id: "10FC", source: "Igeyorhm" } jump 2360.3 # Jump here and hope for the best. This should never happen 2408.4 "Dark Blizzard II" 2417.5 "Shadow Flare" @@ -309,19 +309,19 @@ hideall "--sync--" # Ascians swap roles at Igeyorhm HP <= 50% -2500.0 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ window 400,5 -2505.1 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2510.2 "Sea Of Pitch" sync / 1[56]:[^:]*:Lahabrea:10FB:/ -2514.5 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2517.3 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ window 20,20 -2524.4 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ +2500.0 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } window 400,5 +2505.1 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2510.2 "Sea Of Pitch" Ability { id: "10FB", source: "Lahabrea" } +2514.5 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2517.3 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } window 20,20 +2524.4 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } -2528.9 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2534.0 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2539.1 "Sea Of Pitch" sync / 1[56]:[^:]*:Lahabrea:10FB:/ -2543.4 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2546.2 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ window 20,20 -2553.3 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ jump 2274.4 +2528.9 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2534.0 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2539.1 "Sea Of Pitch" Ability { id: "10FB", source: "Lahabrea" } +2543.4 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2546.2 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } window 20,20 +2553.3 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } jump 2274.4 2557.8 "End Of Days" 2562.9 "Dark Orb" @@ -331,59 +331,59 @@ hideall "--sync--" 2582.2 "Dark Orb" # Special attack at HP < 75% -2600.0 "Permafrost" sync / 1[56]:[^:]*:Igeyorhm:10F4:/ window 500,5 -2604.0 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2609.1 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2614.2 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ -2623.4 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ +2600.0 "Permafrost" Ability { id: "10F4", source: "Igeyorhm" } window 500,5 +2604.0 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2609.1 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2614.2 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } +2623.4 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } # Modified rotation to HP < 50% -2624.6 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2632.4 "Shadow Flare" sync / 1[56]:[^:]*:Lahabrea:1381:/ window 20,20 -2638.0 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ -2643.5 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2648.7 "Sea Of Pitch" sync / 1[56]:[^:]*:Lahabrea:10FB:/ window 20,20 -2652.8 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2657.0 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2664.1 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ window 20,20 -2666.3 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ -2673.4 "Shadow Flare" sync / 1[56]:[^:]*:Lahabrea:1381:/ -2680.9 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2684.5 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2689.8 "Sea Of Pitch" sync / 1[56]:[^:]*:Lahabrea:10FB:/ window 20,20 -2694.3 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ -2697.9 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2705.1 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ - -2708.8 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2714.3 "Shadow Flare" sync / 1[56]:[^:]*:Lahabrea:1381:/ window 20,20 -2722.3 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ -2725.4 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2730.5 "Sea Of Pitch" sync / 1[56]:[^:]*:Lahabrea:10FB:/ window 20,20 -2736.9 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2738.7 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2745.9 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ window 20,20 -2750.4 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ -2755.1 "Shadow Flare" sync / 1[56]:[^:]*:Lahabrea:1381:/ -2765.1 "End Of Days" sync / 1[56]:[^:]*:Igeyorhm:10FD:/ -2766.4 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2771.5 "Sea Of Pitch" sync / 1[56]:[^:]*:Lahabrea:10FB:/ window 20,20 -2778.6 "Dark Blizzard II" sync / 1[56]:[^:]*:Igeyorhm:10F2:/ -2779.6 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2786.8 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ +2624.6 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2632.4 "Shadow Flare" Ability { id: "1381", source: "Lahabrea" } window 20,20 +2638.0 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } +2643.5 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2648.7 "Sea Of Pitch" Ability { id: "10FB", source: "Lahabrea" } window 20,20 +2652.8 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2657.0 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2664.1 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } window 20,20 +2666.3 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } +2673.4 "Shadow Flare" Ability { id: "1381", source: "Lahabrea" } +2680.9 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2684.5 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2689.8 "Sea Of Pitch" Ability { id: "10FB", source: "Lahabrea" } window 20,20 +2694.3 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } +2697.9 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2705.1 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } + +2708.8 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2714.3 "Shadow Flare" Ability { id: "1381", source: "Lahabrea" } window 20,20 +2722.3 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } +2725.4 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2730.5 "Sea Of Pitch" Ability { id: "10FB", source: "Lahabrea" } window 20,20 +2736.9 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2738.7 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2745.9 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } window 20,20 +2750.4 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } +2755.1 "Shadow Flare" Ability { id: "1381", source: "Lahabrea" } +2765.1 "End Of Days" Ability { id: "10FD", source: "Igeyorhm" } +2766.4 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2771.5 "Sea Of Pitch" Ability { id: "10FB", source: "Lahabrea" } window 20,20 +2778.6 "Dark Blizzard II" Ability { id: "10F2", source: "Igeyorhm" } +2779.6 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2786.8 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } # Same as before, just sync to Lahabrea now -2795.9 "Shadow Flare" sync / 1[56]:[^:]*:Lahabrea:1381:/ -2807.2 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2812.3 "Sea Of Pitch" sync / 1[56]:[^:]*:Lahabrea:10FB:/ window 20,20 -2820.7 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2827.8 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ - -2837.0 "Shadow Flare" sync / 1[56]:[^:]*:Lahabrea:1381:/ -2848.3 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2853.4 "Sea Of Pitch" sync / 1[56]:[^:]*:Lahabrea:10FB:/ window 20,20 -2861.8 "Dark Orb" sync / 1[56]:[^:]*:Lahabrea:10FC:/ -2868.9 "Dark Fire II" sync / 1[56]:[^:]*:Lahabrea:10F7:/ jump 2827.8 +2795.9 "Shadow Flare" Ability { id: "1381", source: "Lahabrea" } +2807.2 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2812.3 "Sea Of Pitch" Ability { id: "10FB", source: "Lahabrea" } window 20,20 +2820.7 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2827.8 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } + +2837.0 "Shadow Flare" Ability { id: "1381", source: "Lahabrea" } +2848.3 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2853.4 "Sea Of Pitch" Ability { id: "10FB", source: "Lahabrea" } window 20,20 +2861.8 "Dark Orb" Ability { id: "10FC", source: "Lahabrea" } +2868.9 "Dark Fire II" Ability { id: "10F7", source: "Lahabrea" } jump 2827.8 2878.1 "Shadow Flare" 2889.4 "Dark Orb" @@ -398,16 +398,16 @@ hideall "--sync--" # -ii 1104 1108 -ic "Aetherial Tear" "Chaosphere" # We can't sync to the zone seal message because it's a two-part battle -3002.3 "--sync--" sync / 1[56]:[^:]*:Ascian Prime:1100:/ window 3003,2 -3005.8 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ window 5.8,5 -3013.0 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime:1103:/ -3022.1 "Shadow Flare" sync / 1[56]:[^:]*:Ascian Prime:1109:/ window 15,15 -3028.2 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ +3002.3 "--sync--" Ability { id: "1100", source: "Ascian Prime" } window 3003,2 +3005.8 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } window 5.8,5 +3013.0 "Ancient Eruption" Ability { id: "1103", source: "Ascian Prime" } +3022.1 "Shadow Flare" Ability { id: "1109", source: "Ascian Prime" } window 15,15 +3028.2 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } -3038.0 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ -3045.2 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime:1103:/ -3054.3 "Shadow Flare" sync / 1[56]:[^:]*:Ascian Prime:1109:/ window 15,15 -3060.4 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ jump 3028.2 +3038.0 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } +3045.2 "Ancient Eruption" Ability { id: "1103", source: "Ascian Prime" } +3054.3 "Shadow Flare" Ability { id: "1109", source: "Ascian Prime" } window 15,15 +3060.4 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } jump 3028.2 3070.2 "Height Of Chaos" 3077.4 "Ancient Eruption" @@ -415,25 +415,25 @@ hideall "--sync--" 3092.6 "Height Of Chaos" # Intermission 1 at HP < 80% -3100.0 "--sync--" sync / 03:........:Firesphere:/ window 100,5 +3100.0 "--sync--" AddedCombatant { name: "Firesphere" } window 100,5 3110.0 "Ancient Circle Appears" -3115.1 "Ancient Circle" sync / 1[56]:[^:]*:Ascian Prime:1102:/ -3123.1 "Annihilation" sync / 1[56]:[^:]*:Ascian Prime:110A:/ window 25,5 -3132.1 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime:1103:/ -3147.3 "Universal Manipulation" sync / 1[56]:[^:]*:Ascian Prime:1105:/ - -3156.4 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ window 50,5 -3163.5 "Entropic Flame" sync / 1[56]:[^:]*:Ascian Prime:1107:/ -3168.6 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ -3175.7 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime:1103:/ window 15,15 -3184.8 "Shadow Flare" sync / 1[56]:[^:]*:Ascian Prime:1109:/ - -3194.0 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ -3201.1 "Entropic Flame" sync / 1[56]:[^:]*:Ascian Prime:1107:/ window 30,30 -3206.2 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ -3213.3 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime:1103:/ -3222.4 "Shadow Flare" sync / 1[56]:[^:]*:Ascian Prime:1109:/ window 15,15 jump 3184.8 +3115.1 "Ancient Circle" Ability { id: "1102", source: "Ascian Prime" } +3123.1 "Annihilation" Ability { id: "110A", source: "Ascian Prime" } window 25,5 +3132.1 "Ancient Eruption" Ability { id: "1103", source: "Ascian Prime" } +3147.3 "Universal Manipulation" Ability { id: "1105", source: "Ascian Prime" } + +3156.4 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } window 50,5 +3163.5 "Entropic Flame" Ability { id: "1107", source: "Ascian Prime" } +3168.6 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } +3175.7 "Ancient Eruption" Ability { id: "1103", source: "Ascian Prime" } window 15,15 +3184.8 "Shadow Flare" Ability { id: "1109", source: "Ascian Prime" } + +3194.0 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } +3201.1 "Entropic Flame" Ability { id: "1107", source: "Ascian Prime" } window 30,30 +3206.2 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } +3213.3 "Ancient Eruption" Ability { id: "1103", source: "Ascian Prime" } +3222.4 "Shadow Flare" Ability { id: "1109", source: "Ascian Prime" } window 15,15 jump 3184.8 3231.6 "Height Of Chaos" 3238.7 "Entropic Flame" @@ -442,32 +442,32 @@ hideall "--sync--" 3260.0 "Shadow Flare" # Intermission 2 at HP < 40% -3300.0 "--sync--" sync / 03:........:Firesphere:/ window 200,5 +3300.0 "--sync--" AddedCombatant { name: "Firesphere" } window 200,5 3304.6 "Ancient Circle Appears" -3309.7 "Ancient Circle" sync / 1[56]:[^:]*:Ascian Prime:1102:/ +3309.7 "Ancient Circle" Ability { id: "1102", source: "Ascian Prime" } 3314.7 "Ancient Circle Appears" -3319.8 "Ancient Circle" sync / 1[56]:[^:]*:Ascian Prime:1102:/ -3322.8 "Annihilation" sync / 1[56]:[^:]*:Ascian Prime:110A:/ window 30,30 -3331.8 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime:1103:/ -3347.0 "Universal Manipulation" sync / 1[56]:[^:]*:Ascian Prime:1105:/ - -3356.2 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ window 50,5 -3363.3 "Entropic Flame" sync / 1[56]:[^:]*:Ascian Prime:1107:/ -3368.5 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ -3375.6 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime:1103:/ window 15,15 -3384.8 "Shadow Flare" sync / 1[56]:[^:]*:Ascian Prime:1109:/ +3319.8 "Ancient Circle" Ability { id: "1102", source: "Ascian Prime" } +3322.8 "Annihilation" Ability { id: "110A", source: "Ascian Prime" } window 30,30 +3331.8 "Ancient Eruption" Ability { id: "1103", source: "Ascian Prime" } +3347.0 "Universal Manipulation" Ability { id: "1105", source: "Ascian Prime" } + +3356.2 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } window 50,5 +3363.3 "Entropic Flame" Ability { id: "1107", source: "Ascian Prime" } +3368.5 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } +3375.6 "Ancient Eruption" Ability { id: "1103", source: "Ascian Prime" } window 15,15 +3384.8 "Shadow Flare" Ability { id: "1109", source: "Ascian Prime" } 3390.9 "Height Of Chaos x3" duration 5.0 -3402.7 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ -3409.8 "Entropic Flame" sync / 1[56]:[^:]*:Ascian Prime:1107:/ -3415.0 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ -3422.1 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime:1103:/ window 15,15 -3431.3 "Shadow Flare" sync / 1[56]:[^:]*:Ascian Prime:1109:/ +3402.7 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } +3409.8 "Entropic Flame" Ability { id: "1107", source: "Ascian Prime" } +3415.0 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } +3422.1 "Ancient Eruption" Ability { id: "1103", source: "Ascian Prime" } window 15,15 +3431.3 "Shadow Flare" Ability { id: "1109", source: "Ascian Prime" } 3437.4 "Height Of Chaos x3" duration 5.0 # Jumping from a following block to avoid sync issues with Height Of Chaos x3 -3449.2 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime:1101:/ jump 3402.7 +3449.2 "Height Of Chaos" Ability { id: "1101", source: "Ascian Prime" } jump 3402.7 3456.3 "Entropic Flame" 3461.5 "Height Of Chaos" 3468.6 "Ancient Eruption" diff --git a/ui/raidboss/data/03-hw/dungeon/baelsars_wall.txt b/ui/raidboss/data/03-hw/dungeon/baelsars_wall.txt index 8bdb4f5020..1537696bef 100644 --- a/ui/raidboss/data/03-hw/dungeon/baelsars_wall.txt +++ b/ui/raidboss/data/03-hw/dungeon/baelsars_wall.txt @@ -16,18 +16,18 @@ hideall "--sync--" # We sync on Magitek Ray and hope for the best. It's all bad. # Via Praetoria will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:746:/ window 0,1 -10.5 "Magitek Claw" sync / 1[56]:[^:]*:Magitek Predator:1CB2:/ -26.8 "Magitek Ray" sync / 1[56]:[^:]*:Magitek Predator:1CB3:/ -34.1 "Magitek Missile" sync / 1[56]:[^:]*:Magitek Predator:1CB4:/ - -44.4 "Magitek Ray" sync / 1[56]:[^:]*:Magitek Predator:1CB3:/ -54.5 "Magitek Claw" sync / 1[56]:[^:]*:Magitek Predator:1CB2:/ window 5,5 -68.7 "Magitek Missile" sync / 1[56]:[^:]*:Magitek Predator:1CB4:/ -70.8 "Magitek Missile" sync / 1[56]:[^:]*:Magitek Predator:1CB4:/ - -73.2 "--sync--" sync / 14:[^:]*:Magitek Predator:1CB3:/ window 10,10 -75.9 "Magitek Ray" sync / 1[56]:[^:]*:Magitek Predator:1CB3:/ jump 44.4 +0 "Start" SystemLogMessage { id: "7DC", param1: "746" } window 0,1 +10.5 "Magitek Claw" Ability { id: "1CB2", source: "Magitek Predator" } +26.8 "Magitek Ray" Ability { id: "1CB3", source: "Magitek Predator" } +34.1 "Magitek Missile" Ability { id: "1CB4", source: "Magitek Predator" } + +44.4 "Magitek Ray" Ability { id: "1CB3", source: "Magitek Predator" } +54.5 "Magitek Claw" Ability { id: "1CB2", source: "Magitek Predator" } window 5,5 +68.7 "Magitek Missile" Ability { id: "1CB4", source: "Magitek Predator" } +70.8 "Magitek Missile" Ability { id: "1CB4", source: "Magitek Predator" } + +73.2 "--sync--" StartsUsing { id: "1CB3", source: "Magitek Predator" } window 10,10 +75.9 "Magitek Ray" Ability { id: "1CB3", source: "Magitek Predator" } jump 44.4 89.0 "Magitek Claw" 98.4 "Magitek Missile" 100.6 "Magitek Missile" @@ -39,40 +39,40 @@ hideall "--sync--" # -ii 1CB7 1CBA # The Magitek Installation will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:747:/ window 1000,5 -1007.1 "Magitek Cannon" sync / 1[56]:[^:]*:Armored Weapon:1CB8:/ window 7.1,5 -1013.2 "Launcher" sync / 1[56]:[^:]*:Armored Weapon:1CBC:/ -1019.4 "Dynamic Sensory Jammer" sync / 1[56]:[^:]*:Armored Weapon:1CB9:/ duration 6 -1033.7 "Diffractive Laser" sync / 1[56]:[^:]*:Armored Weapon:1CBB:/ - -1039.9 "Distress Beacon?" sync / 1[56]:[^:]*:Armored Weapon:1CBE:/ window 39.9,5 jump 1100 -1039.9 "Magitek Bit?" sync / 1[56]:[^:]*:Armored Weapon:1CBD:/ window 39.9,5 jump 1155.6 +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "747" } window 1000,5 +1007.1 "Magitek Cannon" Ability { id: "1CB8", source: "Armored Weapon" } window 7.1,5 +1013.2 "Launcher" Ability { id: "1CBC", source: "Armored Weapon" } +1019.4 "Dynamic Sensory Jammer" Ability { id: "1CB9", source: "Armored Weapon" } duration 6 +1033.7 "Diffractive Laser" Ability { id: "1CBB", source: "Armored Weapon" } + +1039.9 "Distress Beacon?" Ability { id: "1CBE", source: "Armored Weapon" } window 39.9,5 jump 1100 +1039.9 "Magitek Bit?" Ability { id: "1CBD", source: "Armored Weapon" } window 39.9,5 jump 1155.6 1049.1 "Launcher?" 1051.8 "Assault Cannon?" 1053.2 "Magitek Cannon?" 1054.1 "Diffractive Laser?" -1100.0 "Distress Beacon" sync / 1[56]:[^:]*:Armored Weapon:1CBE:/ -1109.2 "Launcher" sync / 1[56]:[^:]*:Armored Weapon:1CBC:/ -1113.3 "Magitek Cannon" sync / 1[56]:[^:]*:Armored Weapon:1CB8:/ -1120.4 "Launcher" sync / 1[56]:[^:]*:Armored Weapon:1CBC:/ -1125.5 "Dynamic Sensory Jammer" sync / 1[56]:[^:]*:Armored Weapon:1CB9:/ duration 6 -1133.3 "Diffractive Laser" sync / 1[56]:[^:]*:Armored Weapon:1CBB:/ window 10,10 -1137.4 "Magitek Cannon" sync / 1[56]:[^:]*:Armored Weapon:1CB8:/ -1144.4 "Launcher" sync / 1[56]:[^:]*:Armored Weapon:1CBC:/ - -1155.6 "Magitek Bit" sync / 1[56]:[^:]*:Armored Weapon:1CBD:/ window 30,30 -1161.5 "--sync--" sync / 1[56]:[^:]*:Magitek Bit:1CBF:/ -1167.5 "Assault Cannon" sync / 1[56]:[^:]*:Magitek Bit:1CC0:/ -1169.8 "Diffractive Laser" sync / 1[56]:[^:]*:Armored Weapon:1CBB:/ window 10,10 -1175.9 "Launcher" sync / 1[56]:[^:]*:Armored Weapon:1CBC:/ -1181.0 "Dynamic Sensory Jammer" sync / 1[56]:[^:]*:Armored Weapon:1CB9:/ duration 6 -1188.9 "Diffractive Laser" sync / 1[56]:[^:]*:Armored Weapon:1CBB:/ -1193.0 "Magitek Cannon" sync / 1[56]:[^:]*:Armored Weapon:1CB8:/ -1200.0 "Launcher" sync / 1[56]:[^:]*:Armored Weapon:1CBC:/ - -1211.2 "Distress Beacon" sync / 1[56]:[^:]*:Armored Weapon:1CBE:/ window 30,30 jump 1100 +1100.0 "Distress Beacon" Ability { id: "1CBE", source: "Armored Weapon" } +1109.2 "Launcher" Ability { id: "1CBC", source: "Armored Weapon" } +1113.3 "Magitek Cannon" Ability { id: "1CB8", source: "Armored Weapon" } +1120.4 "Launcher" Ability { id: "1CBC", source: "Armored Weapon" } +1125.5 "Dynamic Sensory Jammer" Ability { id: "1CB9", source: "Armored Weapon" } duration 6 +1133.3 "Diffractive Laser" Ability { id: "1CBB", source: "Armored Weapon" } window 10,10 +1137.4 "Magitek Cannon" Ability { id: "1CB8", source: "Armored Weapon" } +1144.4 "Launcher" Ability { id: "1CBC", source: "Armored Weapon" } + +1155.6 "Magitek Bit" Ability { id: "1CBD", source: "Armored Weapon" } window 30,30 +1161.5 "--sync--" Ability { id: "1CBF", source: "Magitek Bit" } +1167.5 "Assault Cannon" Ability { id: "1CC0", source: "Magitek Bit" } +1169.8 "Diffractive Laser" Ability { id: "1CBB", source: "Armored Weapon" } window 10,10 +1175.9 "Launcher" Ability { id: "1CBC", source: "Armored Weapon" } +1181.0 "Dynamic Sensory Jammer" Ability { id: "1CB9", source: "Armored Weapon" } duration 6 +1188.9 "Diffractive Laser" Ability { id: "1CBB", source: "Armored Weapon" } +1193.0 "Magitek Cannon" Ability { id: "1CB8", source: "Armored Weapon" } +1200.0 "Launcher" Ability { id: "1CBC", source: "Armored Weapon" } + +1211.2 "Distress Beacon" Ability { id: "1CBE", source: "Armored Weapon" } window 30,30 jump 1100 1220.4 "Launcher" 1224.5 "Magitek Cannon" 1231.6 "Launcher" @@ -84,32 +84,32 @@ hideall "--sync--" #~~~~~~~~~~~~~# # The Airship Landing will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:748:/ window 2000,5 -2006.1 "Dull Blade" sync / 1[56]:[^:]*:The Griffin:1CC1:/ window 6.1,5 -2012.2 "Beak Of The Griffin" sync / 1[56]:[^:]*:The Griffin:1CC3:/ -2019.3 "Flash Powder" sync / 1[56]:[^:]*:The Griffin:1CC4:/ -2021.4 "--teleport--" sync / 1[56]:[^:]*:The Griffin:1CC6:/ -2026.9 "Sanguine Blade" sync / 1[56]:[^:]*:The Griffin:1CC5:/ - -2036.0 "Claw Of The Griffin" sync / 1[56]:[^:]*:The Griffin:1CC2:/ window 36,6 -2046.2 "Gull Dive x7" duration 5.6 # sync / 1[56]:[^:]*:Blade Of The Griffin:1CCB:/ -2053.1 "Lionshead" sync / 1[56]:[^:]*:The Griffin:1CCA:/ -2060.3 "Dull Blade" sync / 1[56]:[^:]*:The Griffin:1CC1:/ -2066.4 "Flash Powder" sync / 1[56]:[^:]*:The Griffin:1CC4:/ window 30,30 -2071.6 "Big Boot" sync / 1[56]:[^:]*:The Griffin:1CC7:/ -2077.7 "Corrosion" sync / 1[56]:[^:]*:Blade Of The Griffin:1CCC:/ window 30,30 -2077.8 "--teleport--" sync / 1[56]:[^:]*:The Griffin:1CC6:/ -2083.3 "Sanguine Blade" sync / 1[56]:[^:]*:The Griffin:1CC5:/ -2088.5 "Dull Blade" sync / 1[56]:[^:]*:The Griffin:1CC1:/ -2095.6 "Restraint Collar" sync / 1[56]:[^:]*:The Griffin:1CC8:/ window 30,30 -2104.7 "Beak Of The Griffin" sync / 1[56]:[^:]*:The Griffin:1CC3:/ -2108.8 "Dull Blade" sync / 1[56]:[^:]*:The Griffin:1CC1:/ -2111.9 "--teleport 1--" # sync / 1[56]:[^:]*:The Griffin:1CC6:/ -2112.7 "--teleport 2--" # sync / 1[56]:[^:]*:The Griffin:1CC6:/ -2118.2 "Sanguine Blade" sync / 1[56]:[^:]*:The Griffin:1CC5:/ -2125.3 "Beak Of The Griffin" sync / 1[56]:[^:]*:The Griffin:1CC3:/ - -2133.4 "Claw Of The Griffin" sync / 1[56]:[^:]*:The Griffin:1CC2:/ jump 2036.0 window 30,30 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "748" } window 2000,5 +2006.1 "Dull Blade" Ability { id: "1CC1", source: "The Griffin" } window 6.1,5 +2012.2 "Beak Of The Griffin" Ability { id: "1CC3", source: "The Griffin" } +2019.3 "Flash Powder" Ability { id: "1CC4", source: "The Griffin" } +2021.4 "--teleport--" Ability { id: "1CC6", source: "The Griffin" } +2026.9 "Sanguine Blade" Ability { id: "1CC5", source: "The Griffin" } + +2036.0 "Claw Of The Griffin" Ability { id: "1CC2", source: "The Griffin" } window 36,6 +2046.2 "Gull Dive x7" duration 5.6 # Ability { id: "1CCB", source: "Blade Of The Griffin" } +2053.1 "Lionshead" Ability { id: "1CCA", source: "The Griffin" } +2060.3 "Dull Blade" Ability { id: "1CC1", source: "The Griffin" } +2066.4 "Flash Powder" Ability { id: "1CC4", source: "The Griffin" } window 30,30 +2071.6 "Big Boot" Ability { id: "1CC7", source: "The Griffin" } +2077.7 "Corrosion" Ability { id: "1CCC", source: "Blade Of The Griffin" } window 30,30 +2077.8 "--teleport--" Ability { id: "1CC6", source: "The Griffin" } +2083.3 "Sanguine Blade" Ability { id: "1CC5", source: "The Griffin" } +2088.5 "Dull Blade" Ability { id: "1CC1", source: "The Griffin" } +2095.6 "Restraint Collar" Ability { id: "1CC8", source: "The Griffin" } window 30,30 +2104.7 "Beak Of The Griffin" Ability { id: "1CC3", source: "The Griffin" } +2108.8 "Dull Blade" Ability { id: "1CC1", source: "The Griffin" } +2111.9 "--teleport 1--" # Ability { id: "1CC6", source: "The Griffin" } +2112.7 "--teleport 2--" # Ability { id: "1CC6", source: "The Griffin" } +2118.2 "Sanguine Blade" Ability { id: "1CC5", source: "The Griffin" } +2125.3 "Beak Of The Griffin" Ability { id: "1CC3", source: "The Griffin" } + +2133.4 "Claw Of The Griffin" Ability { id: "1CC2", source: "The Griffin" } jump 2036.0 window 30,30 2139.6 "Gull Dive" 2146.5 "Lionshead" 2153.7 "Dull Blade" diff --git a/ui/raidboss/data/03-hw/dungeon/fractal_continuum.txt b/ui/raidboss/data/03-hw/dungeon/fractal_continuum.txt index d38179089b..01ff156640 100644 --- a/ui/raidboss/data/03-hw/dungeon/fractal_continuum.txt +++ b/ui/raidboss/data/03-hw/dungeon/fractal_continuum.txt @@ -5,40 +5,40 @@ hideall "--sync--" #-ii F7D -p F7F:100 # Exhibit Level III will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:60D:/ window 0,1 -10.3 "Rapid Sever" sync / 1[56]:[^:]*:Phantom Ray:F7A:/ window 15,15 -16.6 "Atmospheric Displacement" sync / 1[56]:[^:]*:Phantom Ray:F7E:/ -21.4 "Double Sever 1" sync / 1[56]:[^:]*:Phantom Ray:F7[BC]:/ -25.6 "Double Sever 2" sync / 1[56]:[^:]*:Phantom Ray:F7[BC]:/ -27.4 "Atmospheric Displacement" sync / 1[56]:[^:]*:Phantom Ray:F7E:/ - -41.5 "Rapid Sever" sync / 1[56]:[^:]*:Phantom Ray:F7A:/ window 15,15 -47.7 "Atmospheric Displacement" sync / 1[56]:[^:]*:Phantom Ray:F7E:/ -52.5 "Double Sever 1" sync / 1[56]:[^:]*:Phantom Ray:F7[BC]:/ -56.5 "Double Sever 2" sync / 1[56]:[^:]*:Phantom Ray:F7[BC]:/ -58.3 "Atmospheric Displacement" sync / 1[56]:[^:]*:Phantom Ray:F7E:/ - -72.4 "Rapid Sever" sync / 1[56]:[^:]*:Phantom Ray:F7A:/ window 15,15 jump 41.5 +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "60D" } window 0,1 +10.3 "Rapid Sever" Ability { id: "F7A", source: "Phantom Ray" } window 15,15 +16.6 "Atmospheric Displacement" Ability { id: "F7E", source: "Phantom Ray" } +21.4 "Double Sever 1" Ability { id: "F7[BC]", source: "Phantom Ray" } +25.6 "Double Sever 2" Ability { id: "F7[BC]", source: "Phantom Ray" } +27.4 "Atmospheric Displacement" Ability { id: "F7E", source: "Phantom Ray" } + +41.5 "Rapid Sever" Ability { id: "F7A", source: "Phantom Ray" } window 15,15 +47.7 "Atmospheric Displacement" Ability { id: "F7E", source: "Phantom Ray" } +52.5 "Double Sever 1" Ability { id: "F7[BC]", source: "Phantom Ray" } +56.5 "Double Sever 2" Ability { id: "F7[BC]", source: "Phantom Ray" } +58.3 "Atmospheric Displacement" Ability { id: "F7E", source: "Phantom Ray" } + +72.4 "Rapid Sever" Ability { id: "F7A", source: "Phantom Ray" } window 15,15 jump 41.5 78.6 "Atmospheric Displacement" 83.3 "Double Sever 1" 87.4 "Double Sever 2" 89.2 "Atmospheric Displacement" # Phase 2 at < 75% HP -100.0 "Damage Up" sync / 1[56]:[^:]*:Phantom Ray:F7F:/ window 100,30 #Overclock -104.8 "Double Sever 1" sync / 1[56]:[^:]*:Phantom Ray:F7[BC]:/ -107.6 "Atmospheric Compression" sync / 1[56]:[^:]*:Phantom Ray:F80:/ -109.0 "Double Sever 2" sync / 1[56]:[^:]*:Phantom Ray:F7[BC]:/ -111.8 "Atmospheric Displacement" sync / 1[56]:[^:]*:Phantom Ray:F7E:/ -118.9 "Rapid Sever" sync / 1[56]:[^:]*:Phantom Ray:F7A:/ -124.0 "Rapid Sever" sync / 1[56]:[^:]*:Phantom Ray:F7A:/ -128.2 "Atmospheric Displacement" sync / 1[56]:[^:]*:Phantom Ray:F7E:/ -133.1 "Double Sever 1" sync / 1[56]:[^:]*:Phantom Ray:F7[BC]:/ -137.3 "Double Sever 2" sync / 1[56]:[^:]*:Phantom Ray:F7[BC]:/ -139.0 "Atmospheric Displacement" sync / 1[56]:[^:]*:Phantom Ray:F7E:/ -146.1 "Atmospheric Displacement" sync / 1[56]:[^:]*:Phantom Ray:F7E:/ - -148.4 "Damage Up" sync / 1[56]:[^:]*:Phantom Ray:F7F:/ window 15,15 jump 100.0 +100.0 "Damage Up" Ability { id: "F7F", source: "Phantom Ray" } window 100,30 #Overclock +104.8 "Double Sever 1" Ability { id: "F7[BC]", source: "Phantom Ray" } +107.6 "Atmospheric Compression" Ability { id: "F80", source: "Phantom Ray" } +109.0 "Double Sever 2" Ability { id: "F7[BC]", source: "Phantom Ray" } +111.8 "Atmospheric Displacement" Ability { id: "F7E", source: "Phantom Ray" } +118.9 "Rapid Sever" Ability { id: "F7A", source: "Phantom Ray" } +124.0 "Rapid Sever" Ability { id: "F7A", source: "Phantom Ray" } +128.2 "Atmospheric Displacement" Ability { id: "F7E", source: "Phantom Ray" } +133.1 "Double Sever 1" Ability { id: "F7[BC]", source: "Phantom Ray" } +137.3 "Double Sever 2" Ability { id: "F7[BC]", source: "Phantom Ray" } +139.0 "Atmospheric Displacement" Ability { id: "F7E", source: "Phantom Ray" } +146.1 "Atmospheric Displacement" Ability { id: "F7E", source: "Phantom Ray" } + +148.4 "Damage Up" Ability { id: "F7F", source: "Phantom Ray" } window 15,15 jump 100.0 153.2 "Double Sever 1" 156.0 "Atmospheric Compression" 157.4 "Double Sever 2" @@ -49,38 +49,38 @@ hideall "--sync--" ###Minotaur # High-level Incubation Bay will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:60E:/ window 1999,5 -1008.8 "11-Tonze Swipe" sync / 1[56]:[^:]*:Minotaur:F81:/ window 9,9 -1019.0 "111-Tonze Swing" sync / 1[56]:[^:]*:Minotaur:F82:/ window 20,20 -1028.2 "Disorienting Groan" sync / 1[56]:[^:]*:Minotaur:F84:/ -1029.4 "Zoom In x3" sync / 1[56]:[^:]*:Minotaur:F86:/ duration 3.7 -1034.3 "10-Tonze Slash" sync / 1[56]:[^:]*:Minotaur:F83:/ window 20,20 -1043.5 "11-Tonze Swipe" sync / 1[56]:[^:]*:Minotaur:F81:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "60E" } window 1999,5 +1008.8 "11-Tonze Swipe" Ability { id: "F81", source: "Minotaur" } window 9,9 +1019.0 "111-Tonze Swing" Ability { id: "F82", source: "Minotaur" } window 20,20 +1028.2 "Disorienting Groan" Ability { id: "F84", source: "Minotaur" } +1029.4 "Zoom In x3" Ability { id: "F86", source: "Minotaur" } duration 3.7 +1034.3 "10-Tonze Slash" Ability { id: "F83", source: "Minotaur" } window 20,20 +1043.5 "11-Tonze Swipe" Ability { id: "F81", source: "Minotaur" } # Rotation desyncs here due to timing on cage use -1048.0 "--sync--" sync / 1B:........:Minotaur:....:....:0036:/ window 45,15 jump 1151.0 +1048.0 "--sync--" HeadMarker { id: "0036", target: "Minotaur" } window 45,15 jump 1151.0 1064.2 "Feast?" -1064.3 "1111-Tonze Swing?" sync / 1[56]:[^:]*:Minotaur:F87:/ window 1,10 jump 1167.3 +1064.3 "1111-Tonze Swing?" Ability { id: "F87", source: "Minotaur" } window 1,10 jump 1167.3 1076.4 "11-Tonze Swipe" 1086.7 "111-Tonze Swing" # Second rotation landing spots 1151.0 "--sync--" #landing for correct cage use -1167.2 "Feast" sync / 1[56]:[^:]*:Minotaur:F88:/ window 15,15 +1167.2 "Feast" Ability { id: "F88", source: "Minotaur" } window 15,15 1167.3 "--sync--" #landing for missed cage # Second rotation, same as the first # Necessary for a clean landing after cages -1179.4 "11-Tonze Swipe" sync / 1[56]:[^:]*:Minotaur:F81:/ window 15,15 -1189.7 "111-Tonze Swing" sync / 1[56]:[^:]*:Minotaur:F82:/ window 20,20 -1199.0 "Disorienting Groan" sync / 1[56]:[^:]*:Minotaur:F84:/ -1200.1 "Zoom In x3" sync / 1[56]:[^:]*:Minotaur:F86:/ duration 3.7 -1204.7 "10-Tonze Slash" sync / 1[56]:[^:]*:Minotaur:F83:/ window 20,20 -1214.0 "11-Tonze Swipe" sync / 1[56]:[^:]*:Minotaur:F81:/ -1219.0 "--sync--" sync / 1B:........:Minotaur:....:....:0036:/ window 45,15 jump 1151.0 +1179.4 "11-Tonze Swipe" Ability { id: "F81", source: "Minotaur" } window 15,15 +1189.7 "111-Tonze Swing" Ability { id: "F82", source: "Minotaur" } window 20,20 +1199.0 "Disorienting Groan" Ability { id: "F84", source: "Minotaur" } +1200.1 "Zoom In x3" Ability { id: "F86", source: "Minotaur" } duration 3.7 +1204.7 "10-Tonze Slash" Ability { id: "F83", source: "Minotaur" } window 20,20 +1214.0 "11-Tonze Swipe" Ability { id: "F81", source: "Minotaur" } +1219.0 "--sync--" HeadMarker { id: "0036", target: "Minotaur" } window 45,15 jump 1151.0 1235.2 "Feast?" -1235.3 "1111-Tonze Swing?" sync / 1[56]:[^:]*:Minotaur:F87:/ window 1,10 jump 1167.3 +1235.3 "1111-Tonze Swing?" Ability { id: "F87", source: "Minotaur" } window 1,10 jump 1167.3 1247.4 "11-Tonze Swipe" 1263.6 "111-Tonze Swing" @@ -94,30 +94,30 @@ hideall "--sync--" # Phase length is the same regardless of added abilities. # Reality Augmentation Bay will be sealed off -2000 "--sync--" sync / 29:[^:]*:7DC:[^:]*:612:/ window 2000,0 -2006.2 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ window 7,7 -2011.4 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2020.6 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2028.8 "Aetherochemical Explosive" sync / 1[56]:[^:]*:The Curator:F8B:/ window 15,15 -2033.0 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2035.8 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2042.0 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2044.1 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2053.2 "Aetherochemical Explosive" sync / 1[56]:[^:]*:The Curator:F8B:/ -2066.4 "The Educator" sync / 1[56]:[^:]*:The Curator:F8D:/ window 30,30 - -2073.2 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2078.4 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2087.6 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2095.8 "Aetherochemical Explosive" sync / 1[56]:[^:]*:The Curator:F8B:/ -2100.0 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2102.8 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2109.0 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2111.1 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2120.2 "Aetherochemical Explosive" sync / 1[56]:[^:]*:The Curator:F8B:/ -2133.4 "The Educator" sync / 1[56]:[^:]*:The Curator:F8D:/ window 30,30 - -2140.2 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ window 15,15 jump 2073.2 +2000 "--sync--" SystemLogMessage { id: "7DC", param1: "612" } window 2000,0 +2006.2 "Sanctification" Ability { id: "F89", source: "The Curator" } window 7,7 +2011.4 "Unholy" Ability { id: "F8A", source: "The Curator" } +2020.6 "Sanctification" Ability { id: "F89", source: "The Curator" } +2028.8 "Aetherochemical Explosive" Ability { id: "F8B", source: "The Curator" } window 15,15 +2033.0 "Unholy" Ability { id: "F8A", source: "The Curator" } +2035.8 "Sanctification" Ability { id: "F89", source: "The Curator" } +2042.0 "Unholy" Ability { id: "F8A", source: "The Curator" } +2044.1 "Sanctification" Ability { id: "F89", source: "The Curator" } +2053.2 "Aetherochemical Explosive" Ability { id: "F8B", source: "The Curator" } +2066.4 "The Educator" Ability { id: "F8D", source: "The Curator" } window 30,30 + +2073.2 "Sanctification" Ability { id: "F89", source: "The Curator" } +2078.4 "Unholy" Ability { id: "F8A", source: "The Curator" } +2087.6 "Sanctification" Ability { id: "F89", source: "The Curator" } +2095.8 "Aetherochemical Explosive" Ability { id: "F8B", source: "The Curator" } +2100.0 "Unholy" Ability { id: "F8A", source: "The Curator" } +2102.8 "Sanctification" Ability { id: "F89", source: "The Curator" } +2109.0 "Unholy" Ability { id: "F8A", source: "The Curator" } +2111.1 "Sanctification" Ability { id: "F89", source: "The Curator" } +2120.2 "Aetherochemical Explosive" Ability { id: "F8B", source: "The Curator" } +2133.4 "The Educator" Ability { id: "F8D", source: "The Curator" } window 30,30 + +2140.2 "Sanctification" Ability { id: "F89", source: "The Curator" } window 15,15 jump 2073.2 2145.4 "Unholy" 2154.6 "Sanctification" 2162.8 "Aetherochemical Explosive" @@ -126,21 +126,21 @@ hideall "--sync--" # Phase 2 after first Educator. Maybe HP threshold? -2200.0 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2203.9 "Aetherochemical Mine" sync / 1[56]:[^:]*:Repository Node:F8F:/ window 2200,10 -2205.2 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2214.6 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2222.7 "Aetherochemical Explosive" sync / 1[56]:[^:]*:The Curator:F8B:/ -2225.0 "Aetherochemical Mine" sync / 1[56]:[^:]*:Repository Node:F8F:/ window 10,10 -2226.8 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2229.0 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2235.0 "Unholy" sync / 1[56]:[^:]*:The Curator:F8A:/ -2237.4 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ -2242.0 "Aetherochemical Mine" sync / 1[56]:[^:]*:Repository Node:F8F:/ -2246.5 "Aetherochemical Explosive" sync / 1[56]:[^:]*:The Curator:F8B:/ window 10,10 -2259.7 "The Educator" sync / 1[56]:[^:]*:The Curator:F8D:/ - -2267.0 "Sanctification" sync / 1[56]:[^:]*:The Curator:F89:/ window 15,15 jump 2196.1 +2200.0 "Sanctification" Ability { id: "F89", source: "The Curator" } +2203.9 "Aetherochemical Mine" Ability { id: "F8F", source: "Repository Node" } window 2200,10 +2205.2 "Unholy" Ability { id: "F8A", source: "The Curator" } +2214.6 "Sanctification" Ability { id: "F89", source: "The Curator" } +2222.7 "Aetherochemical Explosive" Ability { id: "F8B", source: "The Curator" } +2225.0 "Aetherochemical Mine" Ability { id: "F8F", source: "Repository Node" } window 10,10 +2226.8 "Unholy" Ability { id: "F8A", source: "The Curator" } +2229.0 "Sanctification" Ability { id: "F89", source: "The Curator" } +2235.0 "Unholy" Ability { id: "F8A", source: "The Curator" } +2237.4 "Sanctification" Ability { id: "F89", source: "The Curator" } +2242.0 "Aetherochemical Mine" Ability { id: "F8F", source: "Repository Node" } +2246.5 "Aetherochemical Explosive" Ability { id: "F8B", source: "The Curator" } window 10,10 +2259.7 "The Educator" Ability { id: "F8D", source: "The Curator" } + +2267.0 "Sanctification" Ability { id: "F89", source: "The Curator" } window 15,15 jump 2196.1 2270.9 "Aetherochemical Mine" 2272.2 "Unholy" 2281.6 "Sanctification" diff --git a/ui/raidboss/data/03-hw/dungeon/gubal_library_hard.txt b/ui/raidboss/data/03-hw/dungeon/gubal_library_hard.txt index e7dbfd9ea4..b65819032e 100644 --- a/ui/raidboss/data/03-hw/dungeon/gubal_library_hard.txt +++ b/ui/raidboss/data/03-hw/dungeon/gubal_library_hard.txt @@ -5,35 +5,35 @@ hideall "--sync--" # -ii 1951 1952 # Hall of Magicks will be sealed off -0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:657:/ -6.1 "Triclip" sync / 1[56]:[^:]*:Demon of the Tome:193A:/ window 6.1,5 -17.3 "Folio" sync / 1[56]:[^:]*:Demon of the Tome:193C:/ -23.4 "--sync--" sync / 1[56]:[^:]*:Top Shelf Tome:193D:/ -24.0 "Book Drop" sync / 1[56]:[^:]*:Top Shelf Tome:193E:/ - -29.5 "Triclip" sync / 1[56]:[^:]*:Demon of the Tome:193A:/ window 15,15 -38.7 "Folio" sync / 1[56]:[^:]*:Demon of the Tome:193C:/ -44.8 "--sync--" sync / 1[56]:[^:]*:Top Shelf Tome:193D:/ -45.4 "Book Drop" sync / 1[56]:[^:]*:Top Shelf Tome:193E:/ -47.0 "Issue" sync / 1[56]:[^:]*:Middle Shelf Tome:193F:/ window 15,15 -52.6 "Discontinue" sync / 1[56]:[^:]*:Middle Shelf Tome:1940:/ -58.3 "Frightful Roar" sync / 1[56]:[^:]*:Demon of the Tome:193B:/ -63.5 "Triclip" sync / 1[56]:[^:]*:Demon of the Tome:193A:/ window 15,15 -71.5 "Folio" sync / 1[56]:[^:]*:Demon of the Tome:193C:/ +0 "--sync--" SystemLogMessage { id: "7DC", param1: "657" } +6.1 "Triclip" Ability { id: "193A", source: "Demon of the Tome" } window 6.1,5 +17.3 "Folio" Ability { id: "193C", source: "Demon of the Tome" } +23.4 "--sync--" Ability { id: "193D", source: "Top Shelf Tome" } +24.0 "Book Drop" Ability { id: "193E", source: "Top Shelf Tome" } + +29.5 "Triclip" Ability { id: "193A", source: "Demon of the Tome" } window 15,15 +38.7 "Folio" Ability { id: "193C", source: "Demon of the Tome" } +44.8 "--sync--" Ability { id: "193D", source: "Top Shelf Tome" } +45.4 "Book Drop" Ability { id: "193E", source: "Top Shelf Tome" } +47.0 "Issue" Ability { id: "193F", source: "Middle Shelf Tome" } window 15,15 +52.6 "Discontinue" Ability { id: "1940", source: "Middle Shelf Tome" } +58.3 "Frightful Roar" Ability { id: "193B", source: "Demon of the Tome" } +63.5 "Triclip" Ability { id: "193A", source: "Demon of the Tome" } window 15,15 +71.5 "Folio" Ability { id: "193C", source: "Demon of the Tome" } 77.6 "Issue" 82.2 "Discontinue" 83.6 "Issue" 84.2 "Discontinue x3" -102.7 "Triclip" sync / 1[56]:[^:]*:Demon of the Tome:193A:/ window 15,15 -111.9 "Folio" sync / 1[56]:[^:]*:Demon of the Tome:193C:/ -118.0 "--sync--" sync / 1[56]:[^:]*:Top Shelf Tome:193D:/ -118.6 "Book Drop" sync / 1[56]:[^:]*:Top Shelf Tome:193E:/ -120.2 "Issue" sync / 1[56]:[^:]*:Middle Shelf Tome:193F:/ window 15,15 -125.8 "Discontinue" sync / 1[56]:[^:]*:Middle Shelf Tome:1940:/ -131.5 "Frightful Roar" sync / 1[56]:[^:]*:Demon of the Tome:193B:/ -136.7 "Triclip" sync / 1[56]:[^:]*:Demon of the Tome:193A:/ -144.7 "Folio" sync / 1[56]:[^:]*:Demon of the Tome:193C:/ +102.7 "Triclip" Ability { id: "193A", source: "Demon of the Tome" } window 15,15 +111.9 "Folio" Ability { id: "193C", source: "Demon of the Tome" } +118.0 "--sync--" Ability { id: "193D", source: "Top Shelf Tome" } +118.6 "Book Drop" Ability { id: "193E", source: "Top Shelf Tome" } +120.2 "Issue" Ability { id: "193F", source: "Middle Shelf Tome" } window 15,15 +125.8 "Discontinue" Ability { id: "1940", source: "Middle Shelf Tome" } +131.5 "Frightful Roar" Ability { id: "193B", source: "Demon of the Tome" } +136.7 "Triclip" Ability { id: "193A", source: "Demon of the Tome" } +144.7 "Folio" Ability { id: "193C", source: "Demon of the Tome" } 150.8 "Issue" 155.4 "Discontinue" 156.8 "Issue" @@ -41,7 +41,7 @@ hideall "--sync--" # Ordinarily we would sync from the end of the last block # However, this tends to break due to multiple identical mechanics close together -175.9 "Triclip" sync / 1[56]:[^:]*:Demon of the Tome:193A:/ window 15,15 jump 102.7 +175.9 "Triclip" Ability { id: "193A", source: "Demon of the Tome" } window 15,15 jump 102.7 185.1 "Folio" 191.8 "Book Drop" 193.4 "Issue" @@ -54,49 +54,49 @@ hideall "--sync--" # Whichever intermission comes second ends up with phantom "Gains Effect" lines # Astrology and Astromancy Camera will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:658:/ window 1000,0 -1007.3 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1944:/ window 7.3,5 -1014.3 "Bibliocide" sync / 1[56]:[^:]*:Liquid Flame:1945:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "658" } window 1000,0 +1007.3 "Searing Wind" Ability { id: "1944", source: "Liquid Flame" } window 7.3,5 +1014.3 "Bibliocide" Ability { id: "1945", source: "Liquid Flame" } 1025.7 "Sea Of Flames x3" -1030.5 "Slosh" sync / 1[56]:[^:]*:Liquid Flame:1947:/ window 10,10 -1034.6 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1944:/ -1042.7 "Bibliocide" sync / 1[56]:[^:]*:Liquid Flame:1945:/ +1030.5 "Slosh" Ability { id: "1947", source: "Liquid Flame" } window 10,10 +1034.6 "Searing Wind" Ability { id: "1944", source: "Liquid Flame" } +1042.7 "Bibliocide" Ability { id: "1945", source: "Liquid Flame" } 1054.3 "Hand/Tornado?" # Hand Form -1100.0 "--sync--" sync / 00:[^:]*::The liquid flame gains the effect of Chiromorph/ window 100,250 -1108.4 "Seal Of Night And Day" sync / 1[56]:[^:]*:Liquid Flame:1949:/ window 10,10 -1112.5 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1948:/ -1116.4 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1948:/ -1126.5 "Seal Of Night And Day" sync / 1[56]:[^:]*:Liquid Flame:1949:/ window 10,10 -1130.6 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1948:/ -1134.7 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1948:/ -1138.9 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1948:/ +1100.0 "--sync--" GameLog { line: "The liquid flame gains the effect of Chiromorph.*?" } window 100,250 +1108.4 "Seal Of Night And Day" Ability { id: "1949", source: "Liquid Flame" } window 10,10 +1112.5 "Searing Wind" Ability { id: "1948", source: "Liquid Flame" } +1116.4 "Searing Wind" Ability { id: "1948", source: "Liquid Flame" } +1126.5 "Seal Of Night And Day" Ability { id: "1949", source: "Liquid Flame" } window 10,10 +1130.6 "Searing Wind" Ability { id: "1948", source: "Liquid Flame" } +1134.7 "Searing Wind" Ability { id: "1948", source: "Liquid Flame" } +1138.9 "Searing Wind" Ability { id: "1948", source: "Liquid Flame" } 1149.1 "Form Shift" # Tornado Form -1200.0 "--sync--" sync / 00:[^:]*::The liquid flame gains the effect of Anemomorph/ window 200,0 -1204.5 "Bibliocide" sync / 1[56]:[^:]*:Liquid Flame:1945:/ window 10,10 -1215.4 "Magnetism/Repel?" sync / 1[56]:[^:]*:Liquid Flame:194[CD]:/ -1226.9 "Bibliocide" sync / 1[56]:[^:]*:Liquid Flame:1945:/ -1237.8 "Magnetism/Repel" sync / 1[56]:[^:]*:Liquid Flame:194[CD]:/ +1200.0 "--sync--" GameLog { line: "The liquid flame gains the effect of Anemomorph.*?" } window 200,0 +1204.5 "Bibliocide" Ability { id: "1945", source: "Liquid Flame" } window 10,10 +1215.4 "Magnetism/Repel?" Ability { id: "194[CD]", source: "Liquid Flame" } +1226.9 "Bibliocide" Ability { id: "1945", source: "Liquid Flame" } +1237.8 "Magnetism/Repel" Ability { id: "194[CD]", source: "Liquid Flame" } 1246.1 "Form Shift" # Human Form -1300.0 "--sync--" sync / 00:[^:]*::The liquid flame gains the effect of Anthropomorph/ window 300,10 -1307.5 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1944:/ window 10,20 -1314.7 "Bibliocide" sync / 1[56]:[^:]*:Liquid Flame:1945:/ +1300.0 "--sync--" GameLog { line: "The liquid flame gains the effect of Anthropomorph.*?" } window 300,10 +1307.5 "Searing Wind" Ability { id: "1944", source: "Liquid Flame" } window 10,20 +1314.7 "Bibliocide" Ability { id: "1945", source: "Liquid Flame" } 1326.0 "Sea Of Flames x3" -1331.3 "Slosh" sync / 1[56]:[^:]*:Liquid Flame:1947:/ window 10,10 -1335.5 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1944:/ -1343.8 "Bibliocide" sync / 1[56]:[^:]*:Liquid Flame:1945:/ +1331.3 "Slosh" Ability { id: "1947", source: "Liquid Flame" } window 10,10 +1335.5 "Searing Wind" Ability { id: "1944", source: "Liquid Flame" } +1343.8 "Bibliocide" Ability { id: "1945", source: "Liquid Flame" } -1355.2 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1944:/ window 10,20 -1362.4 "Bibliocide" sync / 1[56]:[^:]*:Liquid Flame:1945:/ +1355.2 "Searing Wind" Ability { id: "1944", source: "Liquid Flame" } window 10,20 +1362.4 "Bibliocide" Ability { id: "1945", source: "Liquid Flame" } 1373.8 "Sea Of Flames x3" -1379.0 "Slosh" sync / 1[56]:[^:]*:Liquid Flame:1947:/ window 10,10 -1383.2 "Searing Wind" sync / 1[56]:[^:]*:Liquid Flame:1944:/ -1391.5 "Bibliocide" sync / 1[56]:[^:]*:Liquid Flame:1945:/ jump 1343.8 +1379.0 "Slosh" Ability { id: "1947", source: "Liquid Flame" } window 10,10 +1383.2 "Searing Wind" Ability { id: "1944", source: "Liquid Flame" } +1391.5 "Bibliocide" Ability { id: "1945", source: "Liquid Flame" } jump 1343.8 1402.9 "Searing Wind" 1410.1 "Bibliocide" @@ -108,48 +108,48 @@ hideall "--sync--" # -ii 194F 1950 1958 195B 1969 # Rare Tomes Room will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:706:/ window 2000,5 -2009.2 "Check Out" sync / 1[56]:[^:]*:Strix:194E:/ window 9.2,10 -2017.5 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ -2029.6 "Properties Of Quakes" sync / 1[56]:[^:]*:Strix:1956:/ -2033.8 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ -2040.1 "Check Out" sync / 1[56]:[^:]*:Strix:194E:/ window 10,10 -2048.4 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ -2056.7 "Properties Of Darkness II" sync / 1[56]:[^:]*:Strix:1955:/ -2069.9 "Properties Of Tornados" sync / 1[56]:[^:]*:Strix:1957:/ -2074.2 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ -2082.4 "Properties Of Imps" sync / 1[56]:[^:]*:Strix:1959:/ window 30,30 -2085.5 "Properties Of Darkness" sync / 1[56]:[^:]*:Strix:1954:/ -2094.7 "Properties Of Thunder III" sync / 1[56]:[^:]*:Strix:195A:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "706" } window 2000,5 +2009.2 "Check Out" Ability { id: "194E", source: "Strix" } window 9.2,10 +2017.5 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } +2029.6 "Properties Of Quakes" Ability { id: "1956", source: "Strix" } +2033.8 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } +2040.1 "Check Out" Ability { id: "194E", source: "Strix" } window 10,10 +2048.4 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } +2056.7 "Properties Of Darkness II" Ability { id: "1955", source: "Strix" } +2069.9 "Properties Of Tornados" Ability { id: "1957", source: "Strix" } +2074.2 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } +2082.4 "Properties Of Imps" Ability { id: "1959", source: "Strix" } window 30,30 +2085.5 "Properties Of Darkness" Ability { id: "1954", source: "Strix" } +2094.7 "Properties Of Thunder III" Ability { id: "195A", source: "Strix" } # Intermission -2109.2 "Check Out" sync / 1[56]:[^:]*:Strix:194E:/ -2125.6 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ -2126.1 "--sync--" sync / 1[56]:[^:]*:Meteor:1A6A:/ -2126.7 "Meteor Impact" sync / 1[56]:[^:]*:Behemoth Ward:195E:/ -2133.8 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ -2135.1 "--sync--" sync / 1[56]:[^:]*:Meteor:1A6A:/ -2135.6 "Meteor Impact" sync / 1[56]:[^:]*:Behemoth Ward:195E:/ -2143.7 "Ecliptic Meteor" sync / 1[56]:[^:]*:Behemoth Ward:195D:/ -2144.7 "--sync--" sync / 1[56]:[^:]*:Behemoth Ward:195C:/ - -2155.0 "Check Out" sync / 1[56]:[^:]*:Strix:194E:/ window 20,20 -2172.3 "Quakes/Tornados" sync / 1[56]:[^:]*:Strix:195[67]:/ -2178.6 "Properties Of Darkness II" sync / 1[56]:[^:]*:Strix:1955:/ -2181.8 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ -2188.1 "Properties Of Imps" sync / 1[56]:[^:]*:Strix:1959:/ window 30,25 -2196.3 "Properties Of Thunder III" sync / 1[56]:[^:]*:Strix:195A:/ -2203.5 "Properties Of Darkness II" sync / 1[56]:[^:]*:Strix:1955:/ -2207.7 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ - -2214.9 "Check Out" sync / 1[56]:[^:]*:Strix:194E:/ window 20,20 -2232.3 "Quakes/Tornados" sync / 1[56]:[^:]*:Strix:195[67]:/ -2238.6 "Properties Of Darkness II" sync / 1[56]:[^:]*:Strix:1955:/ -2241.8 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ -2248.1 "Properties Of Imps" sync / 1[56]:[^:]*:Strix:1959:/ window 30,25 -2256.3 "Properties Of Thunder III" sync / 1[56]:[^:]*:Strix:195A:/ -2263.5 "Properties Of Darkness II" sync / 1[56]:[^:]*:Strix:1955:/ -2267.7 "Properties Of Darkness (buster)" sync / 1[56]:[^:]*:Strix:1954:/ jump 2207.7 +2109.2 "Check Out" Ability { id: "194E", source: "Strix" } +2125.6 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } +2126.1 "--sync--" Ability { id: "1A6A", source: "Meteor" } +2126.7 "Meteor Impact" Ability { id: "195E", source: "Behemoth Ward" } +2133.8 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } +2135.1 "--sync--" Ability { id: "1A6A", source: "Meteor" } +2135.6 "Meteor Impact" Ability { id: "195E", source: "Behemoth Ward" } +2143.7 "Ecliptic Meteor" Ability { id: "195D", source: "Behemoth Ward" } +2144.7 "--sync--" Ability { id: "195C", source: "Behemoth Ward" } + +2155.0 "Check Out" Ability { id: "194E", source: "Strix" } window 20,20 +2172.3 "Quakes/Tornados" Ability { id: "195[67]", source: "Strix" } +2178.6 "Properties Of Darkness II" Ability { id: "1955", source: "Strix" } +2181.8 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } +2188.1 "Properties Of Imps" Ability { id: "1959", source: "Strix" } window 30,25 +2196.3 "Properties Of Thunder III" Ability { id: "195A", source: "Strix" } +2203.5 "Properties Of Darkness II" Ability { id: "1955", source: "Strix" } +2207.7 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } + +2214.9 "Check Out" Ability { id: "194E", source: "Strix" } window 20,20 +2232.3 "Quakes/Tornados" Ability { id: "195[67]", source: "Strix" } +2238.6 "Properties Of Darkness II" Ability { id: "1955", source: "Strix" } +2241.8 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } +2248.1 "Properties Of Imps" Ability { id: "1959", source: "Strix" } window 30,25 +2256.3 "Properties Of Thunder III" Ability { id: "195A", source: "Strix" } +2263.5 "Properties Of Darkness II" Ability { id: "1955", source: "Strix" } +2267.7 "Properties Of Darkness (buster)" Ability { id: "1954", source: "Strix" } jump 2207.7 2274.9 "Check Out" 2292.2 "Quakes/Tornados" diff --git a/ui/raidboss/data/03-hw/dungeon/sohm_al.txt b/ui/raidboss/data/03-hw/dungeon/sohm_al.txt index 19ee9cb933..d5150788f1 100644 --- a/ui/raidboss/data/03-hw/dungeon/sohm_al.txt +++ b/ui/raidboss/data/03-hw/dungeon/sohm_al.txt @@ -8,64 +8,64 @@ hideall "--Reset--" # -p ED1:6.2 # Greenlinn will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:649:/ window 0,1 -6.2 "Bloody Caress" sync / 1[56]:[^:]*:Raskovnik:ED1:/ window 6.2,0 -12.3 "--sync--" sync / 1[56]:[^:]*:Raskovnik:ED2:/ -17.9 "Acid Rain" sync / 1[56]:[^:]*:Raskovnik:ED7:/ -26.4 "Phytobeam" sync / 1[56]:[^:]*:Raskovnik:ED5:/ -33.6 "Bloody Caress" sync / 1[56]:[^:]*:Raskovnik:ED1:/ jump 6.2 -39.7 "--sync--" # sync / 1[56]:[^:]*:Raskovnik:ED2:/ -45.3 "Acid Rain" # sync / 1[56]:[^:]*:Raskovnik:ED7:/ -53.9 "Phytobeam" # sync / 1[56]:[^:]*:Raskovnik:ED5:/ -61.1 "Bloody Caress" # sync / 1[56]:[^:]*:Raskovnik:ED1:/ +0 "Start" SystemLogMessage { id: "7DC", param1: "649" } window 0,1 +6.2 "Bloody Caress" Ability { id: "ED1", source: "Raskovnik" } window 6.2,0 +12.3 "--sync--" Ability { id: "ED2", source: "Raskovnik" } +17.9 "Acid Rain" Ability { id: "ED7", source: "Raskovnik" } +26.4 "Phytobeam" Ability { id: "ED5", source: "Raskovnik" } +33.6 "Bloody Caress" Ability { id: "ED1", source: "Raskovnik" } jump 6.2 +39.7 "--sync--" # Ability { id: "ED2", source: "Raskovnik" } +45.3 "Acid Rain" # Ability { id: "ED7", source: "Raskovnik" } +53.9 "Phytobeam" # Ability { id: "ED5", source: "Raskovnik" } +61.1 "Bloody Caress" # Ability { id: "ED1", source: "Raskovnik" } # HP push? # Looks like there are two loop groups of skills used repeatly? # Group 1 -100.0 "--sync--" sync / 14:[^:]*:Raskovnik:1395:/ window 100,0 -103.0 "Sweet Scent" sync / 1[56]:[^:]*:Raskovnik:1395:/ window 103,0 -114.6 "Floral Trap" sync / 1[56]:[^:]*:Raskovnik:1391:/ -119.6 "Flower Devour" sync / 1[56]:[^:]*:Raskovnik:1392:/ -125.4 "Spit" sync / 1[56]:[^:]*:Raskovnik:1393:/ -126.5 "--sync--" sync / 1[56]:[^:]*:Raskovnik:1394:/ +100.0 "--sync--" StartsUsing { id: "1395", source: "Raskovnik" } window 100,0 +103.0 "Sweet Scent" Ability { id: "1395", source: "Raskovnik" } window 103,0 +114.6 "Floral Trap" Ability { id: "1391", source: "Raskovnik" } +119.6 "Flower Devour" Ability { id: "1392", source: "Raskovnik" } +125.4 "Spit" Ability { id: "1393", source: "Raskovnik" } +126.5 "--sync--" Ability { id: "1394", source: "Raskovnik" } # Inside Loop # Raskovnik would use this loop 4 times? -136.0 "Floral Trap" sync / 1[56]:[^:]*:Raskovnik:1391:/ jump 114.6 -141.0 "Flower Devour" # sync / 1[56]:[^:]*:Raskovnik:1392:/ -146.8 "Spit" # sync / 1[56]:[^:]*:Raskovnik:1393:/ -147.9 "--sync--" # sync / 1[56]:[^:]*:Raskovnik:1394:/ -157.1 "Floral Trap" # sync / 1[56]:[^:]*:Raskovnik:1391:/ -162.1 "Flower Devour" # sync / 1[56]:[^:]*:Raskovnik:1392:/ -167.9 "Spit" # sync / 1[56]:[^:]*:Raskovnik:1393:/ +136.0 "Floral Trap" Ability { id: "1391", source: "Raskovnik" } jump 114.6 +141.0 "Flower Devour" # Ability { id: "1392", source: "Raskovnik" } +146.8 "Spit" # Ability { id: "1393", source: "Raskovnik" } +147.9 "--sync--" # Ability { id: "1394", source: "Raskovnik" } +157.1 "Floral Trap" # Ability { id: "1391", source: "Raskovnik" } +162.1 "Flower Devour" # Ability { id: "1392", source: "Raskovnik" } +167.9 "Spit" # Ability { id: "1393", source: "Raskovnik" } # Inside Loop # Loop -200.0 "--sync--" sync / 14:[^:]*:Raskovnik:1395:/ window 97,0 jump 100.0 -203.0 "Sweet Scent" sync / 1[56]:[^:]*:Raskovnik:1395:/ window 97,0 jump 103.0 -214.8 "Floral Trap" # sync / 1[56]:[^:]*:Raskovnik:1391:/ -219.8 "Flower Devour" # sync / 1[56]:[^:]*:Raskovnik:1392:/ -225.6 "Spit" # sync / 1[56]:[^:]*:Raskovnik:1393:/ -226.7 "--sync--" # sync / 1[56]:[^:]*:Raskovnik:1394:/ +200.0 "--sync--" StartsUsing { id: "1395", source: "Raskovnik" } window 97,0 jump 100.0 +203.0 "Sweet Scent" Ability { id: "1395", source: "Raskovnik" } window 97,0 jump 103.0 +214.8 "Floral Trap" # Ability { id: "1391", source: "Raskovnik" } +219.8 "Flower Devour" # Ability { id: "1392", source: "Raskovnik" } +225.6 "Spit" # Ability { id: "1393", source: "Raskovnik" } +226.7 "--sync--" # Ability { id: "1394", source: "Raskovnik" } # Group 2 -300.0 "--sync--" sync / 14:[^:]*:Raskovnik:ED6:/ window 300,0 -303.0 "Leafstorm" sync / 1[56]:[^:]*:Raskovnik:ED6:/ -308.2 "Bloody Caress" sync / 1[56]:[^:]*:Raskovnik:ED1:/ -314.3 "--sync--" sync / 1[56]:[^:]*:Raskovnik:ED2:/ -319.9 "Acid Rain" sync / 1[56]:[^:]*:Raskovnik:ED7:/ -328.5 "Phytobeam" sync / 1[56]:[^:]*:Raskovnik:ED5:/ -333.7 "Bloody Caress" sync / 1[56]:[^:]*:Raskovnik:ED1:/ +300.0 "--sync--" StartsUsing { id: "ED6", source: "Raskovnik" } window 300,0 +303.0 "Leafstorm" Ability { id: "ED6", source: "Raskovnik" } +308.2 "Bloody Caress" Ability { id: "ED1", source: "Raskovnik" } +314.3 "--sync--" Ability { id: "ED2", source: "Raskovnik" } +319.9 "Acid Rain" Ability { id: "ED7", source: "Raskovnik" } +328.5 "Phytobeam" Ability { id: "ED5", source: "Raskovnik" } +333.7 "Bloody Caress" Ability { id: "ED1", source: "Raskovnik" } # Loop -342.8 "Leafstorm" sync / 1[56]:[^:]*:Raskovnik:ED6:/ jump 303.0 -348.0 "Bloody Caress" # sync / 1[56]:[^:]*:Raskovnik:ED1:/ -354.1 "--sync--" # sync / 1[56]:[^:]*:Raskovnik:ED2:/ -359.7 "Acid Rain" # sync / 1[56]:[^:]*:Raskovnik:ED7:/ -368.2 "Phytobeam" # sync / 1[56]:[^:]*:Raskovnik:ED5:/ -373.4 "Bloody Caress" # sync / 1[56]:[^:]*:Raskovnik:ED1:/ +342.8 "Leafstorm" Ability { id: "ED6", source: "Raskovnik" } jump 303.0 +348.0 "Bloody Caress" # Ability { id: "ED1", source: "Raskovnik" } +354.1 "--sync--" # Ability { id: "ED2", source: "Raskovnik" } +359.7 "Acid Rain" # Ability { id: "ED7", source: "Raskovnik" } +368.2 "Phytobeam" # Ability { id: "ED5", source: "Raskovnik" } +373.4 "Bloody Caress" # Ability { id: "ED1", source: "Raskovnik" } # jump back to group 1 -500.0 "--sync--" sync / 14:[^:]*:Raskovnik:1395:/ window 500,0 jump 100.0 +500.0 "--sync--" StartsUsing { id: "1395", source: "Raskovnik" } window 500,0 jump 100.0 ### Myath @@ -73,43 +73,43 @@ hideall "--Reset--" # -ic "Chyme Of The Mountain" # The Wound will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:64C:/ window 1000,1 - -1006.1 "Third Leg Forward" sync / 1[56]:[^:]*:Myath:1382:/ window 6.1,5 -1011.2 "Overbite" sync / 1[56]:[^:]*:Myath:EDB:/ -1019.3 "Razor Scales" sync / 1[56]:[^:]*:Myath:EDC:/ -1024.5 "Third Leg Forward" sync / 1[56]:[^:]*:Myath:1382:/ -1031.6 "Third Leg Forward" sync / 1[56]:[^:]*:Myath:1382:/ -1036.7 "Overbite" sync / 1[56]:[^:]*:Myath:EDB:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "64C" } window 1000,1 + +1006.1 "Third Leg Forward" Ability { id: "1382", source: "Myath" } window 6.1,5 +1011.2 "Overbite" Ability { id: "EDB", source: "Myath" } +1019.3 "Razor Scales" Ability { id: "EDC", source: "Myath" } +1024.5 "Third Leg Forward" Ability { id: "1382", source: "Myath" } +1031.6 "Third Leg Forward" Ability { id: "1382", source: "Myath" } +1036.7 "Overbite" Ability { id: "EDB", source: "Myath" } # Loop -1044.8 "Razor Scales" sync / 1[56]:[^:]*:Myath:EDC:/ jump 1019.3 -1050.0 "Third Leg Forward" # sync / 1[56]:[^:]*:Myath:1382:/ -1057.1 "Third Leg Forward" # sync / 1[56]:[^:]*:Myath:1382:/ -1062.2 "Overbite" # sync / 1[56]:[^:]*:Myath:EDB:/ -1070.3 "Razor Scales" # sync / 1[56]:[^:]*:Myath:EDC:/ -1075.5 "Third Leg Forward" # sync / 1[56]:[^:]*:Myath:1382:/ +1044.8 "Razor Scales" Ability { id: "EDC", source: "Myath" } jump 1019.3 +1050.0 "Third Leg Forward" # Ability { id: "1382", source: "Myath" } +1057.1 "Third Leg Forward" # Ability { id: "1382", source: "Myath" } +1062.2 "Overbite" # Ability { id: "EDB", source: "Myath" } +1070.3 "Razor Scales" # Ability { id: "EDC", source: "Myath" } +1075.5 "Third Leg Forward" # Ability { id: "1382", source: "Myath" } # Myath would use Primordial Roar twice: # 1. HP < 90%? # 2. HP < 50%? also summon Chyme Of The Mountain -1200.0 "Primordial Roar" sync / 1[56]:[^:]*:Myath:EE2:/ window 200,0 -1207.1 "Third Leg Forward" sync / 1[56]:[^:]*:Myath:1382:/ -1214.2 "Ensnare" sync / 1[56]:[^:]*:Myath:EDD:/ -1219.2 "Mad Dash" sync / 1[56]:[^:]*:Myath:EE[01]:/ -1221.5 "Ensnare" sync / 1[56]:[^:]*:Myath:EDD:/ -1226.5 "Mad Dash" sync / 1[56]:[^:]*:Myath:EE[01]:/ -1229.0 "Ensnare" sync / 1[56]:[^:]*:Myath:EDD:/ -1236.1 "Mad Dash" sync / 1[56]:[^:]*:Myath:EE[01]:/ -1238.4 "Ensnare" sync / 1[56]:[^:]*:Myath:EDD:/ -1245.4 "Mad Dash" sync / 1[56]:[^:]*:Myath:EE[01]:/ +1200.0 "Primordial Roar" Ability { id: "EE2", source: "Myath" } window 200,0 +1207.1 "Third Leg Forward" Ability { id: "1382", source: "Myath" } +1214.2 "Ensnare" Ability { id: "EDD", source: "Myath" } +1219.2 "Mad Dash" Ability { id: "EE[01]", source: "Myath" } +1221.5 "Ensnare" Ability { id: "EDD", source: "Myath" } +1226.5 "Mad Dash" Ability { id: "EE[01]", source: "Myath" } +1229.0 "Ensnare" Ability { id: "EDD", source: "Myath" } +1236.1 "Mad Dash" Ability { id: "EE[01]", source: "Myath" } +1238.4 "Ensnare" Ability { id: "EDD", source: "Myath" } +1245.4 "Mad Dash" Ability { id: "EE[01]", source: "Myath" } # Jump back to loop -1249.8 "Third Leg Forward" sync / 1[56]:[^:]*:Myath:1382:/ window 30,5 jump 1006.1 -1254.9 "Overbite" # sync / 1[56]:[^:]*:Myath:EDB:/ -1263.0 "Razor Scales" # sync / 1[56]:[^:]*:Myath:EDC:/ -1268.2 "Third Leg Forward" # sync / 1[56]:[^:]*:Myath:1382:/ -1275.3 "Third Leg Forward" # sync / 1[56]:[^:]*:Myath:1382:/ -1280.4 "Overbite" # sync / 1[56]:[^:]*:Myath:EDB:/ +1249.8 "Third Leg Forward" Ability { id: "1382", source: "Myath" } window 30,5 jump 1006.1 +1254.9 "Overbite" # Ability { id: "EDB", source: "Myath" } +1263.0 "Razor Scales" # Ability { id: "EDC", source: "Myath" } +1268.2 "Third Leg Forward" # Ability { id: "1382", source: "Myath" } +1275.3 "Third Leg Forward" # Ability { id: "1382", source: "Myath" } +1280.4 "Overbite" # Ability { id: "EDB", source: "Myath" } ### Tioman @@ -117,37 +117,37 @@ hideall "--Reset--" # -ic "Comet" # Hess Afah will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:64D:/ window 2000,1 - -2006.0 "Abyssic Buster" sync / 1[56]:[^:]*:Tioman:EE3:/ window 6,6 -2013.2 "Chaos Blast" sync / 1[56]:[^:]*:Tioman:EE5:/ -2016.5 "--sync--" sync / 1[56]:[^:]*:Tioman:EEB:/ -2020.4 "Abyssic Buster" sync / 1[56]:[^:]*:Tioman:EE3:/ -2030.0 "Comet" sync / 1[56]:[^:]*:Tioman:EE6:/ -2043.7 "Meteor Impact" sync / 1[56]:[^:]*:Tioman:1387:/ +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "64D" } window 2000,1 + +2006.0 "Abyssic Buster" Ability { id: "EE3", source: "Tioman" } window 6,6 +2013.2 "Chaos Blast" Ability { id: "EE5", source: "Tioman" } +2016.5 "--sync--" Ability { id: "EEB", source: "Tioman" } +2020.4 "Abyssic Buster" Ability { id: "EE3", source: "Tioman" } +2030.0 "Comet" Ability { id: "EE6", source: "Tioman" } +2043.7 "Meteor Impact" Ability { id: "1387", source: "Tioman" } # Loop -2047.3 "Abyssic Buster" sync / 1[56]:[^:]*:Tioman:EE3:/ jump 2006.0 -2054.5 "Chaos Blast" # sync / 1[56]:[^:]*:Tioman:EE5:/ -2057.8 "--sync--" # sync / 1[56]:[^:]*:Tioman:EEB:/ -2061.7 "Abyssic Buster" # sync / 1[56]:[^:]*:Tioman:EE3:/ -2071.3 "Comet" # sync / 1[56]:[^:]*:Tioman:EE6:/ -2084.9 "Meteor Impact" # sync / 1[56]:[^:]*:Tioman:1387:/ +2047.3 "Abyssic Buster" Ability { id: "EE3", source: "Tioman" } jump 2006.0 +2054.5 "Chaos Blast" # Ability { id: "EE5", source: "Tioman" } +2057.8 "--sync--" # Ability { id: "EEB", source: "Tioman" } +2061.7 "Abyssic Buster" # Ability { id: "EE3", source: "Tioman" } +2071.3 "Comet" # Ability { id: "EE6", source: "Tioman" } +2084.9 "Meteor Impact" # Ability { id: "1387", source: "Tioman" } # 00:0044:Tioman:Arrogant insects! Be crushed beneath the weight of my fury! -2200.0 "Heavensfall" sync / 1[56]:[^:]*:Tioman:EE7:/ window 200,0 -2223.5 "Dark Star" sync / 1[56]:[^:]*:Tioman:EE4:/ window 5,5 -2246.9 "Dark Star" sync / 1[56]:[^:]*:Tioman:EE4:/ window 5,5 -2270.4 "Dark Star" sync / 1[56]:[^:]*:Tioman:EE4:/ window 5,5 jump 2223.5 -2293.8 "Dark Star" sync / 1[56]:[^:]*:Tioman:EE4:/ window 5,5 -2317.3 "Dark Star" sync / 1[56]:[^:]*:Tioman:EE4:/ window 5,5 +2200.0 "Heavensfall" Ability { id: "EE7", source: "Tioman" } window 200,0 +2223.5 "Dark Star" Ability { id: "EE4", source: "Tioman" } window 5,5 +2246.9 "Dark Star" Ability { id: "EE4", source: "Tioman" } window 5,5 +2270.4 "Dark Star" Ability { id: "EE4", source: "Tioman" } window 5,5 jump 2223.5 +2293.8 "Dark Star" Ability { id: "EE4", source: "Tioman" } window 5,5 +2317.3 "Dark Star" Ability { id: "EE4", source: "Tioman" } window 5,5 # Tioman keeps using Dark Star every 23.5 seconds, # increasing Damage Up stacks, maximum is 16. # Jump back to normal loop -2300.0 "--sync--" sync / 1[56]:[^:]*:Tioman:366:/ window 100,0 -2305.6 "Abyssic Buster" sync / 1[56]:[^:]*:Tioman:EE3:/ window 101,5 jump 2006.0 -2312.8 "Chaos Blast" # sync / 1[56]:[^:]*:Tioman:EE5:/ -2316.1 "--sync--" # sync / 1[56]:[^:]*:Tioman:EEB:/ -2320.0 "Abyssic Buster" # sync / 1[56]:[^:]*:Tioman:EE3:/ -2329.6 "Comet" # sync / 1[56]:[^:]*:Tioman:EE6:/ -2343.2 "Meteor Impact" # sync / 1[56]:[^:]*:Tioman:1387:/ +2300.0 "--sync--" Ability { id: "366", source: "Tioman" } window 100,0 +2305.6 "Abyssic Buster" Ability { id: "EE3", source: "Tioman" } window 101,5 jump 2006.0 +2312.8 "Chaos Blast" # Ability { id: "EE5", source: "Tioman" } +2316.1 "--sync--" # Ability { id: "EEB", source: "Tioman" } +2320.0 "Abyssic Buster" # Ability { id: "EE3", source: "Tioman" } +2329.6 "Comet" # Ability { id: "EE6", source: "Tioman" } +2343.2 "Meteor Impact" # Ability { id: "1387", source: "Tioman" } diff --git a/ui/raidboss/data/03-hw/dungeon/sohm_al_hard.txt b/ui/raidboss/data/03-hw/dungeon/sohm_al_hard.txt index feda472181..ab2ce4e86a 100644 --- a/ui/raidboss/data/03-hw/dungeon/sohm_al_hard.txt +++ b/ui/raidboss/data/03-hw/dungeon/sohm_al_hard.txt @@ -11,36 +11,36 @@ hideall "--Reset--" # -ic "Spore Sac" # The Wound will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:64C:/ window 0,1 -2.4 "--sync--" sync / 1[56]:[^:]*:The Leightonward:5B5:/ window 2.4,1 -6.1 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ window 6.1,5 -13.2 "Inflammable Fumes (Readies)" sync / 1[56]:[^:]*:The Leightonward:1C30:/ -17.2 "Inflammable Fumes" sync / 1[56]:[^:]*:The Leightonward:1C31:/ window 15,15 -22.4 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ -27.5 "Spore Sac" sync / 1[56]:[^:]*:The Leightonward:1C2F:/ -33.6 "Inflammable Fumes (Readies)" sync / 1[56]:[^:]*:The Leightonward:1C30:/ -37.6 "Inflammable Fumes" sync / 1[56]:[^:]*:The Leightonward:1C31:/ window 15,15 -40.7 "Glorious Blaze" sync / 1[56]:[^:]*:Small Spore Sac:1C33:/ -44.9 "Excretion" sync / 1[56]:[^:]*:The Leightonward:1C2E:/ -49.0 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ -55.1 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ -60.2 "Spore Sac" sync / 1[56]:[^:]*:The Leightonward:1C2F:/ -66.3 "Inflammable Fumes (Readies)" sync / 1[56]:[^:]*:The Leightonward:1C30:/ -70.3 "Inflammable Fumes" sync / 1[56]:[^:]*:The Leightonward:1C31:/ window 15,15 -73.3 "Glorious Blaze" sync / 1[56]:[^:]*:Small Spore Sac:1C33:/ -84.6 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ - -92.9 "Excretion" sync / 1[56]:[^:]*:The Leightonward:1C2E:/ -98.0 "Spore Sac" sync / 1[56]:[^:]*:The Leightonward:1C2F:/ -104.2 "Inflammable Fumes (Readies)" sync / 1[56]:[^:]*:The Leightonward:1C30:/ -108.2 "Inflammable Fumes" sync / 1[56]:[^:]*:The Leightonward:1C31:/ window 15,15 -111.2 "Glorious Blaze" sync / 1[56]:[^:]*:Small Spore Sac:1C33:/ -124.4 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ -130.5 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ -137.6 "Inflammable Fumes (Readies)" sync / 1[56]:[^:]*:The Leightonward:1C30:/ -141.6 "Inflammable Fumes" sync / 1[56]:[^:]*:The Leightonward:1C31:/ window 15,15 -143.8 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ -150.0 "Wild Horn" sync / 1[56]:[^:]*:The Leightonward:1C2D:/ jump 84.6 +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "64C" } window 0,1 +2.4 "--sync--" Ability { id: "5B5", source: "The Leightonward" } window 2.4,1 +6.1 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } window 6.1,5 +13.2 "Inflammable Fumes (Readies)" Ability { id: "1C30", source: "The Leightonward" } +17.2 "Inflammable Fumes" Ability { id: "1C31", source: "The Leightonward" } window 15,15 +22.4 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } +27.5 "Spore Sac" Ability { id: "1C2F", source: "The Leightonward" } +33.6 "Inflammable Fumes (Readies)" Ability { id: "1C30", source: "The Leightonward" } +37.6 "Inflammable Fumes" Ability { id: "1C31", source: "The Leightonward" } window 15,15 +40.7 "Glorious Blaze" Ability { id: "1C33", source: "Small Spore Sac" } +44.9 "Excretion" Ability { id: "1C2E", source: "The Leightonward" } +49.0 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } +55.1 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } +60.2 "Spore Sac" Ability { id: "1C2F", source: "The Leightonward" } +66.3 "Inflammable Fumes (Readies)" Ability { id: "1C30", source: "The Leightonward" } +70.3 "Inflammable Fumes" Ability { id: "1C31", source: "The Leightonward" } window 15,15 +73.3 "Glorious Blaze" Ability { id: "1C33", source: "Small Spore Sac" } +84.6 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } + +92.9 "Excretion" Ability { id: "1C2E", source: "The Leightonward" } +98.0 "Spore Sac" Ability { id: "1C2F", source: "The Leightonward" } +104.2 "Inflammable Fumes (Readies)" Ability { id: "1C30", source: "The Leightonward" } +108.2 "Inflammable Fumes" Ability { id: "1C31", source: "The Leightonward" } window 15,15 +111.2 "Glorious Blaze" Ability { id: "1C33", source: "Small Spore Sac" } +124.4 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } +130.5 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } +137.6 "Inflammable Fumes (Readies)" Ability { id: "1C30", source: "The Leightonward" } +141.6 "Inflammable Fumes" Ability { id: "1C31", source: "The Leightonward" } window 15,15 +143.8 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } +150.0 "Wild Horn" Ability { id: "1C2D", source: "The Leightonward" } jump 84.6 # The timing from Wild Horn to Excretion is the same no matter # whether the lead block is the opener or the rotation block. @@ -64,41 +64,41 @@ hideall "--Reset--" # -ii 1C3F # The Lava Tube will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:763:/ window 2000,1 -2012.0 "Molten Silk (Front)" sync / 1[56]:[^:]*:Lava Scorpion:1C43:/ window 12,5 -2022.2 "Flying Press" sync / 1[56]:[^:]*:Lava Scorpion:1C3E:/ -2038.4 "Deadly Thrust" sync / 1[56]:[^:]*:Lava Scorpion:1C40:/ -2045.6 "Hiss (Adds x2)" sync / 1[56]:[^:]*:Lava Scorpion:1C45:/ window 15,15 -2068.8 "Realm Shaker" sync / 1[56]:[^:]*:Lava Scorpion:1C41:/ -2079.4 "Flying Press" sync / 1[56]:[^:]*:Lava Scorpion:1C3E:/ -2091.6 "Deadly Thrust" sync / 1[56]:[^:]*:Lava Scorpion:1C40:/ -2101.8 "Molten Silk (Front)" sync / 1[56]:[^:]*:Lava Scorpion:1C43:/ -2106.9 "Molten Silk (Back)" sync / 1[56]:[^:]*:Lava Scorpion:1C44:/ -2118.6 "Hiss (Adds x4)" sync / 1[56]:[^:]*:Lava Scorpion:1C45:/ window 15,15 -2123.7 "Molten Silk (Ring)" sync / 1[56]:[^:]*:Lava Scorpion:1C42:/ -2129.8 "Deadly Thrust" sync / 1[56]:[^:]*:Lava Scorpion:1C40:/ -2150.0 "Flying Press" sync / 1[56]:[^:]*:Lava Scorpion:1C3E:/ -2156.1 "Flying Press" sync / 1[56]:[^:]*:Lava Scorpion:1C3E:/ -2167.3 "Molten Silk (Front)" sync / 1[56]:[^:]*:Lava Scorpion:1C43:/ -2172.4 "Molten Silk (Back)" sync / 1[56]:[^:]*:Lava Scorpion:1C44:/ -2182.0 "Deadly Thrust" sync / 1[56]:[^:]*:Lava Scorpion:1C40:/ -2187.1 "Flying Press" sync / 1[56]:[^:]*:Lava Scorpion:1C3E:/ - -2196.3 "Realm Shaker" sync / 1[56]:[^:]*:Lava Scorpion:1C41:/ window 15,15 -2202.0 "Molten Silk (Ring)" sync / 1[56]:[^:]*:Lava Scorpion:1C42:/ -2211.2 "Hiss (Adds x2)" sync / 1[56]:[^:]*:Lava Scorpion:1C45:/ -2221.3 "Deadly Thrust" sync / 1[56]:[^:]*:Lava Scorpion:1C40:/ -2231.5 "Molten Silk (Back)" sync / 1[56]:[^:]*:Lava Scorpion:1C44:/ -2237.1 "Molten Silk (Front)" sync / 1[56]:[^:]*:Lava Scorpion:1C43:/ -2246.3 "Deadly Thrust" sync / 1[56]:[^:]*:Lava Scorpion:1C40:/ - -2254.5 "Realm Shaker" sync / 1[56]:[^:]*:Lava Scorpion:1C41:/ window 15,15 -2260.2 "Molten Silk (Ring)" sync / 1[56]:[^:]*:Lava Scorpion:1C42:/ -2269.4 "Hiss (Adds x2)" sync / 1[56]:[^:]*:Lava Scorpion:1C45:/ -2279.5 "Deadly Thrust" sync / 1[56]:[^:]*:Lava Scorpion:1C40:/ -2289.7 "Molten Silk (Back)" sync / 1[56]:[^:]*:Lava Scorpion:1C44:/ -2295.3 "Molten Silk (Front)" sync / 1[56]:[^:]*:Lava Scorpion:1C43:/ -2304.5 "Deadly Thrust" sync / 1[56]:[^:]*:Lava Scorpion:1C40:/ jump 2246.3 +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "763" } window 2000,1 +2012.0 "Molten Silk (Front)" Ability { id: "1C43", source: "Lava Scorpion" } window 12,5 +2022.2 "Flying Press" Ability { id: "1C3E", source: "Lava Scorpion" } +2038.4 "Deadly Thrust" Ability { id: "1C40", source: "Lava Scorpion" } +2045.6 "Hiss (Adds x2)" Ability { id: "1C45", source: "Lava Scorpion" } window 15,15 +2068.8 "Realm Shaker" Ability { id: "1C41", source: "Lava Scorpion" } +2079.4 "Flying Press" Ability { id: "1C3E", source: "Lava Scorpion" } +2091.6 "Deadly Thrust" Ability { id: "1C40", source: "Lava Scorpion" } +2101.8 "Molten Silk (Front)" Ability { id: "1C43", source: "Lava Scorpion" } +2106.9 "Molten Silk (Back)" Ability { id: "1C44", source: "Lava Scorpion" } +2118.6 "Hiss (Adds x4)" Ability { id: "1C45", source: "Lava Scorpion" } window 15,15 +2123.7 "Molten Silk (Ring)" Ability { id: "1C42", source: "Lava Scorpion" } +2129.8 "Deadly Thrust" Ability { id: "1C40", source: "Lava Scorpion" } +2150.0 "Flying Press" Ability { id: "1C3E", source: "Lava Scorpion" } +2156.1 "Flying Press" Ability { id: "1C3E", source: "Lava Scorpion" } +2167.3 "Molten Silk (Front)" Ability { id: "1C43", source: "Lava Scorpion" } +2172.4 "Molten Silk (Back)" Ability { id: "1C44", source: "Lava Scorpion" } +2182.0 "Deadly Thrust" Ability { id: "1C40", source: "Lava Scorpion" } +2187.1 "Flying Press" Ability { id: "1C3E", source: "Lava Scorpion" } + +2196.3 "Realm Shaker" Ability { id: "1C41", source: "Lava Scorpion" } window 15,15 +2202.0 "Molten Silk (Ring)" Ability { id: "1C42", source: "Lava Scorpion" } +2211.2 "Hiss (Adds x2)" Ability { id: "1C45", source: "Lava Scorpion" } +2221.3 "Deadly Thrust" Ability { id: "1C40", source: "Lava Scorpion" } +2231.5 "Molten Silk (Back)" Ability { id: "1C44", source: "Lava Scorpion" } +2237.1 "Molten Silk (Front)" Ability { id: "1C43", source: "Lava Scorpion" } +2246.3 "Deadly Thrust" Ability { id: "1C40", source: "Lava Scorpion" } + +2254.5 "Realm Shaker" Ability { id: "1C41", source: "Lava Scorpion" } window 15,15 +2260.2 "Molten Silk (Ring)" Ability { id: "1C42", source: "Lava Scorpion" } +2269.4 "Hiss (Adds x2)" Ability { id: "1C45", source: "Lava Scorpion" } +2279.5 "Deadly Thrust" Ability { id: "1C40", source: "Lava Scorpion" } +2289.7 "Molten Silk (Back)" Ability { id: "1C44", source: "Lava Scorpion" } +2295.3 "Molten Silk (Front)" Ability { id: "1C43", source: "Lava Scorpion" } +2304.5 "Deadly Thrust" Ability { id: "1C40", source: "Lava Scorpion" } jump 2246.3 2312.7 "Realm Shaker" 2318.4 "Molten Silk (Ring)" diff --git a/ui/raidboss/data/03-hw/dungeon/the_lost_city_of_amdapor_hard.txt b/ui/raidboss/data/03-hw/dungeon/the_lost_city_of_amdapor_hard.txt index f088acc764..24f06e6a61 100644 --- a/ui/raidboss/data/03-hw/dungeon/the_lost_city_of_amdapor_hard.txt +++ b/ui/raidboss/data/03-hw/dungeon/the_lost_city_of_amdapor_hard.txt @@ -6,7 +6,7 @@ hideall "--sync--" # Use zone-unseal Reset line # Trigger set contains 'resetWhenOutOfCombat: false' # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~# # ACHAMOTH # @@ -17,31 +17,31 @@ hideall "--sync--" # Timings seem to get off if the boss moves around, so extra syncs are added. # Tower of White will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:541:/ window 10000,0 -1022.7 "Psycho Squama" sync / 1[56]:[^:]*:Achamoth:15C6:/ -1044.0 "Psycho Squama" sync / 1[56]:[^:]*:Achamoth:15C6:/ -1055.1 "Neuro Squama" sync / 1[56]:[^:]*:Achamoth:15C5:/ -1063.2 "Toxic Squama" sync / 1[56]:[^:]*:Achamoth:15C7:/ -1068.2 "Enthrallment" sync / 1[56]:[^:]*:Whisper of Existence:15C3:/ -1078.3 "Enthrallment" sync / 1[56]:[^:]*:Whisper of Existence:15C3:/ -1089.4 "Psycho Squama" sync / 1[56]:[^:]*:Achamoth:15C6:/ -1109.8 "Toxic Squama" sync / 1[56]:[^:]*:Achamoth:15C7:/ - -1130.0 "Neuro Squama" sync / 1[56]:[^:]*:Achamoth:15C5:/ -1140.0 "Enthrallment" sync / 1[56]:[^:]*:Whisper of Existence:15C3:/ -1145.1 "Toxic Squama" sync / 1[56]:[^:]*:Achamoth:15C7:/ window 8,8 -1154.1 "Psycho Squama" sync / 1[56]:[^:]*:Achamoth:15C6:/ -1161.1 "Enthrallment" sync / 1[56]:[^:]*:Whisper of Existence:15C3:/ -1183.7 "Toxic Squama" sync / 1[56]:[^:]*:Achamoth:15C7:/ window 8,8 -1194.8 "Psycho Squama" sync / 1[56]:[^:]*:Achamoth:15C6:/ - -1212.0 "Neuro Squama" sync / 1[56]:[^:]*:Achamoth:15C5:/ window 20,20 jump 1130 -1222.0 "Enthrallment" #sync / 1[56]:[^:]*:Whisper of Existence:15C3:/ -1227.1 "Toxic Squama" #sync / 1[56]:[^:]*:Achamoth:15C7:/ -1236.1 "Psycho Squama" #sync / 1[56]:[^:]*:Achamoth:15C6:/ -1243.1 "Enthrallment" #sync / 1[56]:[^:]*:Whisper of Existence:15C3:/ -1265.7 "Toxic Squama" #sync / 1[56]:[^:]*:Achamoth:15C7:/ -1276.8 "Psycho Squama" #sync / 1[56]:[^:]*:Achamoth:15C6:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "541" } window 10000,0 +1022.7 "Psycho Squama" Ability { id: "15C6", source: "Achamoth" } +1044.0 "Psycho Squama" Ability { id: "15C6", source: "Achamoth" } +1055.1 "Neuro Squama" Ability { id: "15C5", source: "Achamoth" } +1063.2 "Toxic Squama" Ability { id: "15C7", source: "Achamoth" } +1068.2 "Enthrallment" Ability { id: "15C3", source: "Whisper of Existence" } +1078.3 "Enthrallment" Ability { id: "15C3", source: "Whisper of Existence" } +1089.4 "Psycho Squama" Ability { id: "15C6", source: "Achamoth" } +1109.8 "Toxic Squama" Ability { id: "15C7", source: "Achamoth" } + +1130.0 "Neuro Squama" Ability { id: "15C5", source: "Achamoth" } +1140.0 "Enthrallment" Ability { id: "15C3", source: "Whisper of Existence" } +1145.1 "Toxic Squama" Ability { id: "15C7", source: "Achamoth" } window 8,8 +1154.1 "Psycho Squama" Ability { id: "15C6", source: "Achamoth" } +1161.1 "Enthrallment" Ability { id: "15C3", source: "Whisper of Existence" } +1183.7 "Toxic Squama" Ability { id: "15C7", source: "Achamoth" } window 8,8 +1194.8 "Psycho Squama" Ability { id: "15C6", source: "Achamoth" } + +1212.0 "Neuro Squama" Ability { id: "15C5", source: "Achamoth" } window 20,20 jump 1130 +1222.0 "Enthrallment" #Ability { id: "15C3", source: "Whisper of Existence" } +1227.1 "Toxic Squama" #Ability { id: "15C7", source: "Achamoth" } +1236.1 "Psycho Squama" #Ability { id: "15C6", source: "Achamoth" } +1243.1 "Enthrallment" #Ability { id: "15C3", source: "Whisper of Existence" } +1265.7 "Toxic Squama" #Ability { id: "15C7", source: "Achamoth" } +1276.8 "Psycho Squama" #Ability { id: "15C6", source: "Achamoth" } #~~~~~~~~~~~~~# @@ -53,64 +53,64 @@ hideall "--sync--" # -ii 15D1 15D3 15D4 15CF 15CC 15D6 1706 15CD 167B # Dark Wings will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:698:/ window 10000,0 -2012.0 "Ancient Aero" sync / 1[56]:[^:]*:Winged Lion:15CE:/ -2025.1 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2033.2 "Ancient Stone" sync / 1[56]:[^:]*:Winged Lion:15D2:/ -2043.3 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "698" } window 10000,0 +2012.0 "Ancient Aero" Ability { id: "15CE", source: "Winged Lion" } +2025.1 "Scratch" Ability { id: "15D5", source: "Winged Lion" } +2033.2 "Ancient Stone" Ability { id: "15D2", source: "Winged Lion" } +2043.3 "Scratch" Ability { id: "15D5", source: "Winged Lion" } # can hp% push here -2049.5 "--sync--" sync / 14:[^:]*:Winged Lion:15C9:/ window 50,5 -2052.5 "--sync--" sync / 1[56]:[^:]*:Winged Lion:15C9:/ +2049.5 "--sync--" StartsUsing { id: "15C9", source: "Winged Lion" } window 50,5 +2052.5 "--sync--" Ability { id: "15C9", source: "Winged Lion" } 2054.5 "--untargetable--" -2072.6 "Ancient Holy" sync / 1[56]:[^:]*:Winged Lion:15CA:/ window 20,20 +2072.6 "Ancient Holy" Ability { id: "15CA", source: "Winged Lion" } window 20,20 2074.6 "--targetable--" -2088.7 "Ancient Stone" sync / 1[56]:[^:]*:Winged Lion:15D2:/ -2097.8 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2105.9 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2120.0 "Ancient Libra" sync / 1[56]:[^:]*:Winged Lion:167D:/ -2125.1 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2133.2 "Ancient Stone" sync / 1[56]:[^:]*:Winged Lion:15D2:/ -2138.3 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ +2088.7 "Ancient Stone" Ability { id: "15D2", source: "Winged Lion" } +2097.8 "Scratch" Ability { id: "15D5", source: "Winged Lion" } +2105.9 "Scratch" Ability { id: "15D5", source: "Winged Lion" } +2120.0 "Ancient Libra" Ability { id: "167D", source: "Winged Lion" } +2125.1 "Scratch" Ability { id: "15D5", source: "Winged Lion" } +2133.2 "Ancient Stone" Ability { id: "15D2", source: "Winged Lion" } +2138.3 "Scratch" Ability { id: "15D5", source: "Winged Lion" } -2143.3 "--sync--" sync / 14:[^:]*:Winged Lion:15C9:/ window 80,5 +2143.3 "--sync--" StartsUsing { id: "15C9", source: "Winged Lion" } window 80,5 2145.6 "--adds--" -2146.3 "--sync--" sync / 1[56]:[^:]*:Winged Lion:15C9:/ +2146.3 "--sync--" Ability { id: "15C9", source: "Winged Lion" } 2148.3 "--untargetable--" -2166.4 "Ancient Holy" sync / 1[56]:[^:]*:Winged Lion:15CA:/ window 20,20 +2166.4 "Ancient Holy" Ability { id: "15CA", source: "Winged Lion" } window 20,20 2168.4 "--targetable--" -2176.5 "Ancient Libra" sync / 1[56]:[^:]*:Winged Lion:167D:/ -2188.6 "Ancient Aero" sync / 1[56]:[^:]*:Winged Lion:15CE:/ -2196.7 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2203.7 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2211.8 "Ancient Stone" sync / 1[56]:[^:]*:Winged Lion:15D2:/ -2218.9 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2228.0 "Ancient Aero" sync / 1[56]:[^:]*:Winged Lion:15CE:/ -2241.1 "Ancient Libra" sync / 1[56]:[^:]*:Winged Lion:167D:/ -2246.1 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2254.2 "Ancient Stone" sync / 1[56]:[^:]*:Winged Lion:15D2:/ -2259.3 "Scratch" sync / 1[56]:[^:]*:Winged Lion:15D5:/ +2176.5 "Ancient Libra" Ability { id: "167D", source: "Winged Lion" } +2188.6 "Ancient Aero" Ability { id: "15CE", source: "Winged Lion" } +2196.7 "Scratch" Ability { id: "15D5", source: "Winged Lion" } +2203.7 "Scratch" Ability { id: "15D5", source: "Winged Lion" } +2211.8 "Ancient Stone" Ability { id: "15D2", source: "Winged Lion" } +2218.9 "Scratch" Ability { id: "15D5", source: "Winged Lion" } +2228.0 "Ancient Aero" Ability { id: "15CE", source: "Winged Lion" } +2241.1 "Ancient Libra" Ability { id: "167D", source: "Winged Lion" } +2246.1 "Scratch" Ability { id: "15D5", source: "Winged Lion" } +2254.2 "Ancient Stone" Ability { id: "15D2", source: "Winged Lion" } +2259.3 "Scratch" Ability { id: "15D5", source: "Winged Lion" } 2266.7 "--adds--" -2264.4 "--sync--" sync / 14:[^:]*:Winged Lion:15C9:/ window 80,5 -2267.4 "--sync--" sync / 1[56]:[^:]*:Winged Lion:15C9:/ +2264.4 "--sync--" StartsUsing { id: "15C9", source: "Winged Lion" } window 80,5 +2267.4 "--sync--" Ability { id: "15C9", source: "Winged Lion" } 2269.4 "--untargetable--" -2287.5 "Ancient Holy" sync / 1[56]:[^:]*:Winged Lion:15CA:/ window 50,50 jump 2166.4 +2287.5 "Ancient Holy" Ability { id: "15CA", source: "Winged Lion" } window 50,50 jump 2166.4 2289.5 "--targetable--" -2297.6 "Ancient Libra" #sync / 1[56]:[^:]*:Winged Lion:167D:/ -2309.7 "Ancient Aero" #sync / 1[56]:[^:]*:Winged Lion:15CE:/ -2317.8 "Scratch" #sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2324.8 "Scratch" #sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2332.9 "Ancient Stone" #sync / 1[56]:[^:]*:Winged Lion:15D2:/ -2340.0 "Scratch" #sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2349.1 "Ancient Aero" #sync / 1[56]:[^:]*:Winged Lion:15CE:/ -2362.2 "Ancient Libra" #sync / 1[56]:[^:]*:Winged Lion:167D:/ -2367.2 "Scratch" #sync / 1[56]:[^:]*:Winged Lion:15D5:/ -2375.3 "Ancient Stone" #sync / 1[56]:[^:]*:Winged Lion:15D2:/ -2380.4 "Scratch" #sync / 1[56]:[^:]*:Winged Lion:15D5:/ +2297.6 "Ancient Libra" #Ability { id: "167D", source: "Winged Lion" } +2309.7 "Ancient Aero" #Ability { id: "15CE", source: "Winged Lion" } +2317.8 "Scratch" #Ability { id: "15D5", source: "Winged Lion" } +2324.8 "Scratch" #Ability { id: "15D5", source: "Winged Lion" } +2332.9 "Ancient Stone" #Ability { id: "15D2", source: "Winged Lion" } +2340.0 "Scratch" #Ability { id: "15D5", source: "Winged Lion" } +2349.1 "Ancient Aero" #Ability { id: "15CE", source: "Winged Lion" } +2362.2 "Ancient Libra" #Ability { id: "167D", source: "Winged Lion" } +2367.2 "Scratch" #Ability { id: "15D5", source: "Winged Lion" } +2375.3 "Ancient Stone" #Ability { id: "15D2", source: "Winged Lion" } +2380.4 "Scratch" #Ability { id: "15D5", source: "Winged Lion" } #~~~~~~~~# @@ -119,63 +119,63 @@ hideall "--sync--" # Phase 1 # The Protectorate will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:69A:/ window 10000,0 -3007.0 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ -3015.1 "Regen" sync / 1[56]:[^:]*:Kuribu:15DC:/ -3022.2 "Transference" sync / 1[56]:[^:]*:Kuribu:15DE:/ -3032.2 "Cure IV" sync / 1[56]:[^:]*:Kuribu:15DF:/ -3042.4 "Cure III" sync / 1[56]:[^:]*:Kuribu:15D9:/ -3050.5 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ -3058.6 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ - -3067.7 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ -3075.8 "Regen" sync / 1[56]:[^:]*:Kuribu:15DC:/ -3082.9 "Transference" sync / 1[56]:[^:]*:Kuribu:15DE:/ window 30,30 jump 3022.2 -3092.9 "Cure IV" #sync / 1[56]:[^:]*:Kuribu:15DF:/ -3103.1 "Cure III" #sync / 1[56]:[^:]*:Kuribu:15D9:/ -3111.2 "Glory" #sync / 1[56]:[^:]*:Kuribu:15E4:/ -3119.3 "Glory" #sync / 1[56]:[^:]*:Kuribu:15E4:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "69A" } window 10000,0 +3007.0 "Glory" Ability { id: "15E4", source: "Kuribu" } +3015.1 "Regen" Ability { id: "15DC", source: "Kuribu" } +3022.2 "Transference" Ability { id: "15DE", source: "Kuribu" } +3032.2 "Cure IV" Ability { id: "15DF", source: "Kuribu" } +3042.4 "Cure III" Ability { id: "15D9", source: "Kuribu" } +3050.5 "Glory" Ability { id: "15E4", source: "Kuribu" } +3058.6 "Glory" Ability { id: "15E4", source: "Kuribu" } + +3067.7 "Glory" Ability { id: "15E4", source: "Kuribu" } +3075.8 "Regen" Ability { id: "15DC", source: "Kuribu" } +3082.9 "Transference" Ability { id: "15DE", source: "Kuribu" } window 30,30 jump 3022.2 +3092.9 "Cure IV" #Ability { id: "15DF", source: "Kuribu" } +3103.1 "Cure III" #Ability { id: "15D9", source: "Kuribu" } +3111.2 "Glory" #Ability { id: "15E4", source: "Kuribu" } +3119.3 "Glory" #Ability { id: "15E4", source: "Kuribu" } # Phase 2 -3300.0 "--untargetable--" sync / 22:........:Kuribu:........:Kuribu:00/ window 300,0 +3300.0 "--untargetable--" NameToggle { name: "Kuribu", toggle: "00" } window 300,0 3306.0 "--targetable--" -3306.0 "Reverse" sync / 1[56]:[^:]*:Kuribu:15D8:/ window 306,5 +3306.0 "Reverse" Ability { id: "15D8", source: "Kuribu" } window 306,5 -3313.0 "Regen" sync / 1[56]:[^:]*:Kuribu:15DD:/ -3326.1 "Cure IV" sync / 1[56]:[^:]*:Kuribu:15E0:/ -3334.2 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ -3344.3 "Cure III" sync / 1[56]:[^:]*:Kuribu:15DA:/ -3355.5 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ +3313.0 "Regen" Ability { id: "15DD", source: "Kuribu" } +3326.1 "Cure IV" Ability { id: "15E0", source: "Kuribu" } +3334.2 "Glory" Ability { id: "15E4", source: "Kuribu" } +3344.3 "Cure III" Ability { id: "15DA", source: "Kuribu" } +3355.5 "Glory" Ability { id: "15E4", source: "Kuribu" } -3365.6 "Regen" sync / 1[56]:[^:]*:Kuribu:15DD:/ window 30,30 jump 3313.0 -3378.7 "Cure IV" #sync / 1[56]:[^:]*:Kuribu:15E0:/ -3386.8 "Glory" #sync / 1[56]:[^:]*:Kuribu:15E4:/ -3396.9 "Cure III" #sync / 1[56]:[^:]*:Kuribu:15DA:/ -3408.2 "Glory" #sync / 1[56]:[^:]*:Kuribu:15E4:/ +3365.6 "Regen" Ability { id: "15DD", source: "Kuribu" } window 30,30 jump 3313.0 +3378.7 "Cure IV" #Ability { id: "15E0", source: "Kuribu" } +3386.8 "Glory" #Ability { id: "15E4", source: "Kuribu" } +3396.9 "Cure III" #Ability { id: "15DA", source: "Kuribu" } +3408.2 "Glory" #Ability { id: "15E4", source: "Kuribu" } # Phase 3 -3500.0 "--untargetable--" sync / 22:........:Kuribu:........:Kuribu:00/ window 200,0 +3500.0 "--untargetable--" NameToggle { name: "Kuribu", toggle: "00" } window 200,0 3506.0 "--targetable--" -3506.0 "Reverse" sync / 1[56]:[^:]*:Kuribu:15D8:/ -3511.0 "Decoy" sync / 1[56]:[^:]*:Kuribu:15E1:/ window 511,10 +3506.0 "Reverse" Ability { id: "15D8", source: "Kuribu" } +3511.0 "Decoy" Ability { id: "15E1", source: "Kuribu" } window 511,10 3511.5 "--targetable--" -3516.1 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ -3518.2 "Transference" sync / 1[56]:[^:]*:Kuribu:15DE:/ -3528.2 "Cure IV" sync / 1[56]:[^:]*:Kuribu:15DF:/ -3536.3 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ +3516.1 "Glory" Ability { id: "15E4", source: "Kuribu" } +3518.2 "Transference" Ability { id: "15DE", source: "Kuribu" } +3528.2 "Cure IV" Ability { id: "15DF", source: "Kuribu" } +3536.3 "Glory" Ability { id: "15E4", source: "Kuribu" } -3541.5 "Reverse" sync / 1[56]:[^:]*:Kuribu:15D8:/ -3546.5 "Decoy" sync / 1[56]:[^:]*:Kuribu:15E2:/ +3541.5 "Reverse" Ability { id: "15D8", source: "Kuribu" } +3546.5 "Decoy" Ability { id: "15E2", source: "Kuribu" } 3547.0 "--targetable--" -3551.6 "Regen" sync / 1[56]:[^:]*:Kuribu:15DD:/ -3579.7 "Cure IV" sync / 1[56]:[^:]*:Kuribu:15E0:/ -3595.8 "Cure III" sync / 1[56]:[^:]*:Kuribu:15DA:/ -3608.0 "Glory" sync / 1[56]:[^:]*:Kuribu:15E4:/ +3551.6 "Regen" Ability { id: "15DD", source: "Kuribu" } +3579.7 "Cure IV" Ability { id: "15E0", source: "Kuribu" } +3595.8 "Cure III" Ability { id: "15DA", source: "Kuribu" } +3608.0 "Glory" Ability { id: "15E4", source: "Kuribu" } -3617.2 "Reverse" sync / 1[56]:[^:]*:Kuribu:15D8:/ window 30,30 jump 3506.0 -3622.2 "Decoy" #sync / 1[56]:[^:]*:Kuribu:15E1:/ +3617.2 "Reverse" Ability { id: "15D8", source: "Kuribu" } window 30,30 jump 3506.0 +3622.2 "Decoy" #Ability { id: "15E1", source: "Kuribu" } 3622.7 "--targetable--" -3627.3 "Glory" #sync / 1[56]:[^:]*:Kuribu:15E4:/ -3629.4 "Transference" #sync / 1[56]:[^:]*:Kuribu:15DE:/ -3639.4 "Cure IV" #sync / 1[56]:[^:]*:Kuribu:15DF:/ -3647.5 "Glory" #sync / 1[56]:[^:]*:Kuribu:15E4:/ +3627.3 "Glory" #Ability { id: "15E4", source: "Kuribu" } +3629.4 "Transference" #Ability { id: "15DE", source: "Kuribu" } +3639.4 "Cure IV" #Ability { id: "15DF", source: "Kuribu" } +3647.5 "Glory" #Ability { id: "15E4", source: "Kuribu" } diff --git a/ui/raidboss/data/03-hw/dungeon/the_vault.txt b/ui/raidboss/data/03-hw/dungeon/the_vault.txt index 3c396a0954..93c3033314 100644 --- a/ui/raidboss/data/03-hw/dungeon/the_vault.txt +++ b/ui/raidboss/data/03-hw/dungeon/the_vault.txt @@ -8,15 +8,15 @@ hideall "--sync--" # Barely worth including, but oh well. # The Quire will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:622:/ window 0,1 -5.4 "Fast Blade" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:2CD:/ window 5.4,5 -12.5 "Bloodstain" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:44B:/ -15.8 "Fast Blade" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:2CD:/ -26.5 "Fast Blade" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:2CD:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "622" } window 0,1 +5.4 "Fast Blade" Ability { id: "2CD", source: "Ser Adelphel Brightblade" } window 5.4,5 +12.5 "Bloodstain" Ability { id: "44B", source: "Ser Adelphel Brightblade" } +15.8 "Fast Blade" Ability { id: "2CD", source: "Ser Adelphel Brightblade" } +26.5 "Fast Blade" Ability { id: "2CD", source: "Ser Adelphel Brightblade" } -33.6 "Bloodstain" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:44B:/ window 10,10 -36.8 "Fast Blade" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:2CD:/ -47.5 "Fast Blade" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:2CD:/ jump 26.5 +33.6 "Bloodstain" Ability { id: "44B", source: "Ser Adelphel Brightblade" } window 10,10 +36.8 "Fast Blade" Ability { id: "2CD", source: "Ser Adelphel Brightblade" } +47.5 "Fast Blade" Ability { id: "2CD", source: "Ser Adelphel Brightblade" } jump 26.5 54.7 "Bloodstain" 57.8 "Fast Blade" @@ -24,20 +24,20 @@ hideall "--sync--" # Phase 1 -100.0 "Advent" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:1373:/ window 100,30 -102.1 "Advent" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:101A:/ +100.0 "Advent" Ability { id: "1373", source: "Ser Adelphel Brightblade" } window 100,30 +102.1 "Advent" Ability { id: "101A", source: "Ser Adelphel Brightblade" } -110.3 "Holiest Of Holy" sync / 1[56]:[^:]*:Ser Adelphel:101E:/ -114.5 "Heavenly Slash" sync / 1[56]:[^:]*:Ser Adelphel:101D:/ -122.8 "Holy Shield Bash" sync / 1[56]:[^:]*:Ser Adelphel:101F:/ window 10,10 -123.9 "Solid Ascension x2" sync / 1[56]:[^:]*:Ser Adelphel:1020:/ -131.8 "Heavenly Slash" sync / 1[56]:[^:]*:Ser Adelphel:101D:/ +110.3 "Holiest Of Holy" Ability { id: "101E", source: "Ser Adelphel" } +114.5 "Heavenly Slash" Ability { id: "101D", source: "Ser Adelphel" } +122.8 "Holy Shield Bash" Ability { id: "101F", source: "Ser Adelphel" } window 10,10 +123.9 "Solid Ascension x2" Ability { id: "1020", source: "Ser Adelphel" } +131.8 "Heavenly Slash" Ability { id: "101D", source: "Ser Adelphel" } -140.0 "Holiest Of Holy" sync / 1[56]:[^:]*:Ser Adelphel:101E:/ -144.2 "Heavenly Slash" sync / 1[56]:[^:]*:Ser Adelphel:101D:/ -152.5 "Holy Shield Bash" sync / 1[56]:[^:]*:Ser Adelphel:101F:/ window 10,10 -153.6 "Solid Ascension x2" sync / 1[56]:[^:]*:Ser Adelphel:1020:/ -161.5 "Heavenly Slash" sync / 1[56]:[^:]*:Ser Adelphel:101D:/ window 10,5 jump 131.8 +140.0 "Holiest Of Holy" Ability { id: "101E", source: "Ser Adelphel" } +144.2 "Heavenly Slash" Ability { id: "101D", source: "Ser Adelphel" } +152.5 "Holy Shield Bash" Ability { id: "101F", source: "Ser Adelphel" } window 10,10 +153.6 "Solid Ascension x2" Ability { id: "1020", source: "Ser Adelphel" } +161.5 "Heavenly Slash" Ability { id: "101D", source: "Ser Adelphel" } window 10,5 jump 131.8 169.7 "Holiest Of Holy" 173.9 "Heavenly Slash" @@ -47,33 +47,33 @@ hideall "--sync--" # Phase 2 at < 70% HP -300.0 "Shining Blade 1" sync / 1[56]:[^:]*:Ser Adelphel:1022:/ window 300,0 -302.4 "Shining Blade 2" sync / 1[56]:[^:]*:Ser Adelphel:1022:/ window 2,2 -304.6 "Shining Blade 3" sync / 1[56]:[^:]*:Ser Adelphel:1022:/ window 2,2 -307.0 "Shining Blade 4" sync / 1[56]:[^:]*:Ser Adelphel:1022:/ window 2,2 +300.0 "Shining Blade 1" Ability { id: "1022", source: "Ser Adelphel" } window 300,0 +302.4 "Shining Blade 2" Ability { id: "1022", source: "Ser Adelphel" } window 2,2 +304.6 "Shining Blade 3" Ability { id: "1022", source: "Ser Adelphel" } window 2,2 +307.0 "Shining Blade 4" Ability { id: "1022", source: "Ser Adelphel" } window 2,2 309.0 "--Untargetable--" 311.7 "--Targetable--" -311.7 "Execution" sync / 1[56]:[^:]*:Ser Adelphel:1023:/ -322.8 "Holiest Of Holy" sync / 1[56]:[^:]*:Ser Adelphel:101E:/ -328.0 "Heavenly Slash" sync / 1[56]:[^:]*:Ser Adelphel:101D:/ -337.2 "Holy Shield Bash" sync / 1[56]:[^:]*:Ser Adelphel:101F:/ window 15,15 -338.3 "Solid Ascension x2" sync / 1[56]:[^:]*:Ser Adelphel:1020:/ -349.1 "Holiest Of Holy" sync / 1[56]:[^:]*:Ser Adelphel:101E:/ -353.3 "Heavenly Slash" sync / 1[56]:[^:]*:Ser Adelphel:101D:/ - -357.4 "Shining Blade 1" sync / 1[56]:[^:]*:Ser Adelphel:1022:/ window 2,2 -359.8 "Shining Blade 2" sync / 1[56]:[^:]*:Ser Adelphel:1022:/ window 2,2 -362.0 "Shining Blade 3" sync / 1[56]:[^:]*:Ser Adelphel:1022:/ window 2,2 -364.4 "Shining Blade 4" sync / 1[56]:[^:]*:Ser Adelphel:1022:/ window 2,2 +311.7 "Execution" Ability { id: "1023", source: "Ser Adelphel" } +322.8 "Holiest Of Holy" Ability { id: "101E", source: "Ser Adelphel" } +328.0 "Heavenly Slash" Ability { id: "101D", source: "Ser Adelphel" } +337.2 "Holy Shield Bash" Ability { id: "101F", source: "Ser Adelphel" } window 15,15 +338.3 "Solid Ascension x2" Ability { id: "1020", source: "Ser Adelphel" } +349.1 "Holiest Of Holy" Ability { id: "101E", source: "Ser Adelphel" } +353.3 "Heavenly Slash" Ability { id: "101D", source: "Ser Adelphel" } + +357.4 "Shining Blade 1" Ability { id: "1022", source: "Ser Adelphel" } window 2,2 +359.8 "Shining Blade 2" Ability { id: "1022", source: "Ser Adelphel" } window 2,2 +362.0 "Shining Blade 3" Ability { id: "1022", source: "Ser Adelphel" } window 2,2 +364.4 "Shining Blade 4" Ability { id: "1022", source: "Ser Adelphel" } window 2,2 366.4 "--Untargetable--" 369.0 "--Targetable--" -369.1 "Execution" sync / 1[56]:[^:]*:Ser Adelphel:1023:/ -380.2 "Holiest Of Holy" sync / 1[56]:[^:]*:Ser Adelphel:101E:/ -385.4 "Heavenly Slash" sync / 1[56]:[^:]*:Ser Adelphel:101D:/ -394.6 "Holy Shield Bash" sync / 1[56]:[^:]*:Ser Adelphel:101F:/ window 15,15 -395.7 "Solid Ascension x2" sync / 1[56]:[^:]*:Ser Adelphel:1020:/ -406.5 "Holiest Of Holy" sync / 1[56]:[^:]*:Ser Adelphel:101E:/ -410.7 "Heavenly Slash" sync / 1[56]:[^:]*:Ser Adelphel:101D:/ window 15,15 jump 353.3 +369.1 "Execution" Ability { id: "1023", source: "Ser Adelphel" } +380.2 "Holiest Of Holy" Ability { id: "101E", source: "Ser Adelphel" } +385.4 "Heavenly Slash" Ability { id: "101D", source: "Ser Adelphel" } +394.6 "Holy Shield Bash" Ability { id: "101F", source: "Ser Adelphel" } window 15,15 +395.7 "Solid Ascension x2" Ability { id: "1020", source: "Ser Adelphel" } +406.5 "Holiest Of Holy" Ability { id: "101E", source: "Ser Adelphel" } +410.7 "Heavenly Slash" Ability { id: "101D", source: "Ser Adelphel" } window 15,15 jump 353.3 414.8 "Shining Blade 1" 417.2 "Shining Blade 2" @@ -83,92 +83,92 @@ hideall "--sync--" 437.6 "Holiest Of Holy" # Closing sequence -441.9 "--sync--" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:10A0:/ window 450,0 +441.9 "--sync--" Ability { id: "10A0", source: "Ser Adelphel Brightblade" } window 450,0 442.0 "Retreating" duration 8.0 -450 "Retreat" sync / 1[56]:[^:]*:Ser Adelphel Brightblade:10A1:/ +450 "Retreat" Ability { id: "10A1", source: "Ser Adelphel Brightblade" } ###Ser Grinneaux the Bull # -ii 101A # Pre-phase # Chapter House will be sealed off -1000 "--sync--" sync / 29:[^:]*:7DC:[^:]*:623:/ window 1000,1 -1006.7 "Overpower" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:88C:/ window 6.7,5 -1015.6 "Rive" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:46F:/ -1018.9 "Overpower" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:88C:/ -1031.2 "Overpower" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:88C:/ -1039.9 "Rive" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:46F:/ +1000 "--sync--" SystemLogMessage { id: "7DC", param1: "623" } window 1000,1 +1006.7 "Overpower" Ability { id: "88C", source: "Ser Grinnaux the Bull" } window 6.7,5 +1015.6 "Rive" Ability { id: "46F", source: "Ser Grinnaux the Bull" } +1018.9 "Overpower" Ability { id: "88C", source: "Ser Grinnaux the Bull" } +1031.2 "Overpower" Ability { id: "88C", source: "Ser Grinnaux the Bull" } +1039.9 "Rive" Ability { id: "46F", source: "Ser Grinnaux the Bull" } -1043.2 "Overpower" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:88C:/ -1055.5 "Overpower" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:88C:/ -1064.2 "Rive" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:46F:/ window 15,15 jump 1039.9 +1043.2 "Overpower" Ability { id: "88C", source: "Ser Grinnaux the Bull" } +1055.5 "Overpower" Ability { id: "88C", source: "Ser Grinnaux the Bull" } +1064.2 "Rive" Ability { id: "46F", source: "Ser Grinnaux the Bull" } window 15,15 jump 1039.9 1067.5 "Overpower" 1079.8 "Overpower" 1088.5 "Rive" # Phase transition -1100.0 "Advent" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:1373:/ window 100,5 -1101.0 "Advent" sync / 1[56]:[^:]*:Ser Grinnaux:1374:/ -1101.9 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:101B:/ +1100.0 "Advent" Ability { id: "1373", source: "Ser Grinnaux the Bull" } window 100,5 +1101.0 "Advent" Ability { id: "1374", source: "Ser Grinnaux" } +1101.9 "--sync--" Ability { id: "101B", source: "Ser Grinnaux" } # Main Phase -1109.6 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:1028:/ -1113.7 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1118.0 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1125.1 "Hyperdimensional Slash" sync / 1[56]:[^:]*:Ser Grinnaux:1026:/ -1130.3 "Hyperdimensional Slash" sync / 1[56]:[^:]*:Ser Grinnaux:1026:/ -1134.4 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1139.4 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:1027:/ window 15,15 - -1144.1 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:1028:/ -1152.3 "Dimensional Rip" sync / 1[56]:[^:]*:Ser Grinnaux:102C:/ -1155.5 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1161.6 "Hyperdimensional Slash" sync / 1[56]:[^:]*:Ser Grinnaux:1026:/ -1166.8 "Hyperdimensional Slash" sync / 1[56]:[^:]*:Ser Grinnaux:1026:/ -1170.8 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1177.4 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:1028:/ window 15,15 -1182.5 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:1027:/ - -1192.7 "Dimensional Rip" sync / 1[56]:[^:]*:Ser Grinnaux:102C:/ window 15,15 -1195.9 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1202.1 "Hyperdimensional Slash" sync / 1[56]:[^:]*:Ser Grinnaux:1026:/ -1207.9 "Hyperdimensional Slash" sync / 1[56]:[^:]*:Ser Grinnaux:1026:/ -1212.1 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1218.7 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:1028:/ window 15,15 -1223.8 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:1027:/ - -1234.0 "Dimensional Rip" sync / 1[56]:[^:]*:Ser Grinnaux:102C:/ window 15,15 -1237.1 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1243.3 "Hyperdimensional Slash" sync / 1[56]:[^:]*:Ser Grinnaux:1026:/ -1248.8 "Hyperdimensional Slash" sync / 1[56]:[^:]*:Ser Grinnaux:1026:/ -1253.0 "Heavy Swing" sync / 1[56]:[^:]*:Ser Grinnaux:1025:/ -1259.6 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:1028:/ window 15,15 -1264.7 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:1027:/ jump 1182.5 +1109.6 "Dimensional Collapse" Ability { id: "1028", source: "Ser Grinnaux" } +1113.7 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1118.0 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1125.1 "Hyperdimensional Slash" Ability { id: "1026", source: "Ser Grinnaux" } +1130.3 "Hyperdimensional Slash" Ability { id: "1026", source: "Ser Grinnaux" } +1134.4 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1139.4 "Faith Unmoving" Ability { id: "1027", source: "Ser Grinnaux" } window 15,15 + +1144.1 "Dimensional Collapse" Ability { id: "1028", source: "Ser Grinnaux" } +1152.3 "Dimensional Rip" Ability { id: "102C", source: "Ser Grinnaux" } +1155.5 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1161.6 "Hyperdimensional Slash" Ability { id: "1026", source: "Ser Grinnaux" } +1166.8 "Hyperdimensional Slash" Ability { id: "1026", source: "Ser Grinnaux" } +1170.8 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1177.4 "Dimensional Collapse" Ability { id: "1028", source: "Ser Grinnaux" } window 15,15 +1182.5 "Faith Unmoving" Ability { id: "1027", source: "Ser Grinnaux" } + +1192.7 "Dimensional Rip" Ability { id: "102C", source: "Ser Grinnaux" } window 15,15 +1195.9 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1202.1 "Hyperdimensional Slash" Ability { id: "1026", source: "Ser Grinnaux" } +1207.9 "Hyperdimensional Slash" Ability { id: "1026", source: "Ser Grinnaux" } +1212.1 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1218.7 "Dimensional Collapse" Ability { id: "1028", source: "Ser Grinnaux" } window 15,15 +1223.8 "Faith Unmoving" Ability { id: "1027", source: "Ser Grinnaux" } + +1234.0 "Dimensional Rip" Ability { id: "102C", source: "Ser Grinnaux" } window 15,15 +1237.1 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1243.3 "Hyperdimensional Slash" Ability { id: "1026", source: "Ser Grinnaux" } +1248.8 "Hyperdimensional Slash" Ability { id: "1026", source: "Ser Grinnaux" } +1253.0 "Heavy Swing" Ability { id: "1025", source: "Ser Grinnaux" } +1259.6 "Dimensional Collapse" Ability { id: "1028", source: "Ser Grinnaux" } window 15,15 +1264.7 "Faith Unmoving" Ability { id: "1027", source: "Ser Grinnaux" } jump 1182.5 # Closing sequence -1441.9 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:10A0:/ window 500,10 +1441.9 "--sync--" Ability { id: "10A0", source: "Ser Grinnaux the Bull" } window 500,10 1442.0 "Retreating" duration 8 -1450.0 "Retreat" sync / 1[56]:[^:]*:Ser Grinnaux the Bull:10A1:/ +1450.0 "Retreat" Ability { id: "10A1", source: "Ser Grinnaux the Bull" } ###Ser Charibert # The Chancel will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:624:/ window 2000,0 -2006.3 "Altar Candle" sync / 1[56]:[^:]*:Ser Charibert:1030:/ window 6.3,5 -2015.0 "Heavensflame" sync / 1[56]:[^:]*:Ser Charibert:1031:/ -2019.2 "Holy Chain" sync / 1[56]:[^:]*:Ser Charibert:1033:/ window 15,15 -2024.4 "Altar Candle" sync / 1[56]:[^:]*:Ser Charibert:1030:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "624" } window 2000,0 +2006.3 "Altar Candle" Ability { id: "1030", source: "Ser Charibert" } window 6.3,5 +2015.0 "Heavensflame" Ability { id: "1031", source: "Ser Charibert" } +2019.2 "Holy Chain" Ability { id: "1033", source: "Ser Charibert" } window 15,15 +2024.4 "Altar Candle" Ability { id: "1030", source: "Ser Charibert" } 2028.7 "Knights Appear" -2037.6 "Altar Pyre" sync / 1[56]:[^:]*:Ser Charibert:1035:/ window 15,15 +2037.6 "Altar Pyre" Ability { id: "1035", source: "Ser Charibert" } window 15,15 -2046.6 "Altar Candle" sync / 1[56]:[^:]*:Ser Charibert:1030:/ -2055.3 "Heavensflame" sync / 1[56]:[^:]*:Ser Charibert:1031:/ -2059.5 "Holy Chain" sync / 1[56]:[^:]*:Ser Charibert:1033:/ window 15,15 -2064.7 "Altar Candle" sync / 1[56]:[^:]*:Ser Charibert:1030:/ +2046.6 "Altar Candle" Ability { id: "1030", source: "Ser Charibert" } +2055.3 "Heavensflame" Ability { id: "1031", source: "Ser Charibert" } +2059.5 "Holy Chain" Ability { id: "1033", source: "Ser Charibert" } window 15,15 +2064.7 "Altar Candle" Ability { id: "1030", source: "Ser Charibert" } 2068.8 "Knights Appear" -2077.9 "Altar Pyre" sync / 1[56]:[^:]*:Ser Charibert:1035:/ window 15,15 jump 2037.6 +2077.9 "Altar Pyre" Ability { id: "1035", source: "Ser Charibert" } window 15,15 jump 2037.6 2086.9 "Altar Candle" 2095.6 "Heavensflame" @@ -177,36 +177,36 @@ hideall "--sync--" # Intermission at < 60% HP -2200.0 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:1019:/ window 200,5 -2205.1 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:1018:/ -2207.2 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:1036:/ -2218.4 "Black Knight's Tour" sync / 1[56]:[^:]*:Dusk Knight:1039:/ -2218.5 "White Knight's Tour" sync / 1[56]:[^:]*:Dawn Knight:1038:/ -2231.7 "Black Knight's Tour" sync / 1[56]:[^:]*:Dusk Knight:1039:/ -2231.9 "White Knight's Tour" sync / 1[56]:[^:]*:Dawn Knight:1038:/ -2245.0 "Black Knight's Tour" sync / 1[56]:[^:]*:Dusk Knight:1039:/ -2245.2 "White Knight's Tour" sync / 1[56]:[^:]*:Dawn Knight:1038:/ +2200.0 "--sync--" Ability { id: "1019", source: "Ser Charibert" } window 200,5 +2205.1 "--sync--" Ability { id: "1018", source: "Ser Charibert" } +2207.2 "--sync--" Ability { id: "1036", source: "Ser Charibert" } +2218.4 "Black Knight's Tour" Ability { id: "1039", source: "Dusk Knight" } +2218.5 "White Knight's Tour" Ability { id: "1038", source: "Dawn Knight" } +2231.7 "Black Knight's Tour" Ability { id: "1039", source: "Dusk Knight" } +2231.9 "White Knight's Tour" Ability { id: "1038", source: "Dawn Knight" } +2245.0 "Black Knight's Tour" Ability { id: "1039", source: "Dusk Knight" } +2245.2 "White Knight's Tour" Ability { id: "1038", source: "Dawn Knight" } 2254.5 "Sacred Flame Enrage?" -2294.0 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:1037:/ window 2294,0 +2294.0 "--sync--" Ability { id: "1037", source: "Ser Charibert" } window 2294,0 # The party might survive an intermission enrage. # This wide window on Candle allows for that. -2300.0 "Altar Candle" sync / 1[56]:[^:]*:Ser Charibert:1030:/ window 100,20 -2309.0 "Altar Pyre" sync / 1[56]:[^:]*:Ser Charibert:1035:/ +2300.0 "Altar Candle" Ability { id: "1030", source: "Ser Charibert" } window 100,20 +2309.0 "Altar Pyre" Ability { id: "1035", source: "Ser Charibert" } 2316.3 "Knights Appear" -2318.6 "Heavensflame" sync / 1[56]:[^:]*:Ser Charibert:1031:/ window 15,15 -2322.8 "Holy Chain" sync / 1[56]:[^:]*:Ser Charibert:1033:/ -2332.0 "Altar Pyre" sync / 1[56]:[^:]*:Ser Charibert:1035:/ -2336.1 "Altar Candle" sync / 1[56]:[^:]*:Ser Charibert:1030:/ +2318.6 "Heavensflame" Ability { id: "1031", source: "Ser Charibert" } window 15,15 +2322.8 "Holy Chain" Ability { id: "1033", source: "Ser Charibert" } +2332.0 "Altar Pyre" Ability { id: "1035", source: "Ser Charibert" } +2336.1 "Altar Candle" Ability { id: "1030", source: "Ser Charibert" } -2345.3 "Altar Candle" sync / 1[56]:[^:]*:Ser Charibert:1030:/ -2354.3 "Altar Pyre" sync / 1[56]:[^:]*:Ser Charibert:1035:/ +2345.3 "Altar Candle" Ability { id: "1030", source: "Ser Charibert" } +2354.3 "Altar Pyre" Ability { id: "1035", source: "Ser Charibert" } 2356.6 "Knights Appear" -2363.9 "Heavensflame" sync / 1[56]:[^:]*:Ser Charibert:1031:/ window 15,15 -2368.1 "Holy Chain" sync / 1[56]:[^:]*:Ser Charibert:1033:/ -2377.3 "Altar Pyre" sync / 1[56]:[^:]*:Ser Charibert:1035:/ -2381.4 "Altar Candle" sync / 1[56]:[^:]*:Ser Charibert:1030:/ window 15,5 jump 2336.1 +2363.9 "Heavensflame" Ability { id: "1031", source: "Ser Charibert" } window 15,15 +2368.1 "Holy Chain" Ability { id: "1033", source: "Ser Charibert" } +2377.3 "Altar Pyre" Ability { id: "1035", source: "Ser Charibert" } +2381.4 "Altar Candle" Ability { id: "1030", source: "Ser Charibert" } window 15,5 jump 2336.1 2390.6 "Altar Candle" 2399.6 "Altar Pyre" diff --git a/ui/raidboss/data/03-hw/dungeon/xelphatol.txt b/ui/raidboss/data/03-hw/dungeon/xelphatol.txt index e18cd1fb68..7dba1e4d2f 100644 --- a/ui/raidboss/data/03-hw/dungeon/xelphatol.txt +++ b/ui/raidboss/data/03-hw/dungeon/xelphatol.txt @@ -11,27 +11,27 @@ hideall "--sync--" # -ic "Ixali Stitcher" "Airstone" # The Cage will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:6FD:/ window 0,1 -7.0 "Short Burst" sync / 1[56]:[^:]*:Nuzal Hueloc:19C6:/ window 7,5 -15.1 "Wind Blast" sync / 1[56]:[^:]*:Nuzal Hueloc:19C7:/ -19.2 "Short Burst" sync / 1[56]:[^:]*:Nuzal Hueloc:19C6:/ -24.3 "Lift" sync / 1[56]:[^:]*:Nuzal Hueloc:19C9:/ window 24.3,5 +0 "Start" SystemLogMessage { id: "7DC", param1: "6FD" } window 0,1 +7.0 "Short Burst" Ability { id: "19C6", source: "Nuzal Hueloc" } window 7,5 +15.1 "Wind Blast" Ability { id: "19C7", source: "Nuzal Hueloc" } +19.2 "Short Burst" Ability { id: "19C6", source: "Nuzal Hueloc" } +24.3 "Lift" Ability { id: "19C9", source: "Nuzal Hueloc" } window 24.3,5 24.8 "--untargetable--" -28.5 "Air Raid" sync / 1[56]:[^:]*:Nuzal Hueloc:19CA:/ window 5,6 -36.6 "Air Raid" sync / 1[56]:[^:]*:Nuzal Hueloc:19CA:/ -48.1 "Air Raid" sync / 1[56]:[^:]*:Nuzal Hueloc:19CA:/ -59.6 "Air Raid" sync / 1[56]:[^:]*:Nuzal Hueloc:19CA:/ jump 36.6 +28.5 "Air Raid" Ability { id: "19CA", source: "Nuzal Hueloc" } window 5,6 +36.6 "Air Raid" Ability { id: "19CA", source: "Nuzal Hueloc" } +48.1 "Air Raid" Ability { id: "19CA", source: "Nuzal Hueloc" } +59.6 "Air Raid" Ability { id: "19CA", source: "Nuzal Hueloc" } jump 36.6 71.1 "Air Raid" 82.6 "Air Raid" 94.1 "Air Raid" -100.0 "--sync--" sync / 22:........:Nuzal Hueloc:........:Nuzal Hueloc:01/ window 100,5 -121.3 "Wind Blast" sync / 1[56]:[^:]*:Nuzal Hueloc:19C7:/ window 21.3,5 -129.5 "Long Burst" sync / 1[56]:[^:]*:Nuzal Hueloc:19C8:/ -132.7 "Short Burst" sync / 1[56]:[^:]*:Nuzal Hueloc:19C6:/ +100.0 "--sync--" NameToggle { name: "Nuzal Hueloc", toggle: "01" } window 100,5 +121.3 "Wind Blast" Ability { id: "19C7", source: "Nuzal Hueloc" } window 21.3,5 +129.5 "Long Burst" Ability { id: "19C8", source: "Nuzal Hueloc" } +132.7 "Short Burst" Ability { id: "19C6", source: "Nuzal Hueloc" } -139.8 "Wind Blast" sync / 1[56]:[^:]*:Nuzal Hueloc:19C7:/ jump 121.3 +139.8 "Wind Blast" Ability { id: "19C7", source: "Nuzal Hueloc" } jump 121.3 148.0 "Long Burst" 151.2 "Short Burst" 158.3 "Wind Blast" @@ -39,24 +39,24 @@ hideall "--sync--" 169.7 "Short Burst" # syncing to a 14/20 line to give the user a little extra warning. -200.0 "--sync--" sync / 14:[^:]*:Nuzal Hueloc:19C9:/ window 100,5 -202.7 "Lift" sync / 1[56]:[^:]*:Nuzal Hueloc:19C9:/ +200.0 "--sync--" StartsUsing { id: "19C9", source: "Nuzal Hueloc" } window 100,5 +202.7 "Lift" Ability { id: "19C9", source: "Nuzal Hueloc" } 203.2 "--untargetable--" -206.9 "Air Raid" sync / 1[56]:[^:]*:Nuzal Hueloc:19CA:/ -214.6 "Air Raid" sync / 1[56]:[^:]*:Nuzal Hueloc:19CA:/ -226.1 "Air Raid" sync / 1[56]:[^:]*:Nuzal Hueloc:19CA:/ -237.6 "Air Raid" sync / 1[56]:[^:]*:Nuzal Hueloc:19CA:/ jump 206.9 +206.9 "Air Raid" Ability { id: "19CA", source: "Nuzal Hueloc" } +214.6 "Air Raid" Ability { id: "19CA", source: "Nuzal Hueloc" } +226.1 "Air Raid" Ability { id: "19CA", source: "Nuzal Hueloc" } +237.6 "Air Raid" Ability { id: "19CA", source: "Nuzal Hueloc" } jump 206.9 249.1 "Air Raid" 260.6 "Air Raid" 272.1 "Air Raid" -300.0 "--sync--" sync / 22:........:Nuzal Hueloc:........:Nuzal Hueloc:01/ window 100,5 -305.3 "Short Burst" sync / 1[56]:[^:]*:Nuzal Hueloc:19C6:/ window 5,10 -314.4 "Wind Blast" sync / 1[56]:[^:]*:Nuzal Hueloc:19C7:/ -323.5 "Long Burst" sync / 1[56]:[^:]*:Nuzal Hueloc:19C8:/ +300.0 "--sync--" NameToggle { name: "Nuzal Hueloc", toggle: "01" } window 100,5 +305.3 "Short Burst" Ability { id: "19C6", source: "Nuzal Hueloc" } window 5,10 +314.4 "Wind Blast" Ability { id: "19C7", source: "Nuzal Hueloc" } +323.5 "Long Burst" Ability { id: "19C8", source: "Nuzal Hueloc" } -330.7 "Short Burst" sync / 1[56]:[^:]*:Nuzal Hueloc:19C6:/ jump 305.3 +330.7 "Short Burst" Ability { id: "19C6", source: "Nuzal Hueloc" } jump 305.3 339.8 "Wind Blast" 348.9 "Long Burst" 356.1 "Short Burst" @@ -71,19 +71,19 @@ hideall "--sync--" # -ii 19D2 # The Tlachtli will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:6FE:/ window 1000,5 -1012.4 "On Low" sync / 1[56]:[^:]*:Dotoli Ciloc:19CE:/ -1024.5 "On High" sync / 1[56]:[^:]*:Dotoli Ciloc:19CF:/ window 24.5,10 - -1036.7 "On Low" sync / 1[56]:[^:]*:Dotoli Ciloc:19CE:/ -1045.2 "Dark Wings" sync / 1[56]:[^:]*:Dotoli Ciloc:19D0:/ -1055.2 "Swiftfeather" sync / 1[56]:[^:]*:Dotoli Ciloc:19D1:/ -1057.6 "On Low" sync / 1[56]:[^:]*:Dotoli Ciloc:19CE:/ -1068.0 "Dark Wings" sync / 1[56]:[^:]*:Dotoli Ciloc:19D0:/ -1074.6 "On High" sync / 1[56]:[^:]*:Dotoli Ciloc:19CF:/ window 20,20 -1076.8 "Dark Wings" sync / 1[56]:[^:]*:Dotoli Ciloc:19D0:/ - -1091.8 "On Low" sync / 1[56]:[^:]*:Dotoli Ciloc:19CE:/ jump 1036.7 +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "6FE" } window 1000,5 +1012.4 "On Low" Ability { id: "19CE", source: "Dotoli Ciloc" } +1024.5 "On High" Ability { id: "19CF", source: "Dotoli Ciloc" } window 24.5,10 + +1036.7 "On Low" Ability { id: "19CE", source: "Dotoli Ciloc" } +1045.2 "Dark Wings" Ability { id: "19D0", source: "Dotoli Ciloc" } +1055.2 "Swiftfeather" Ability { id: "19D1", source: "Dotoli Ciloc" } +1057.6 "On Low" Ability { id: "19CE", source: "Dotoli Ciloc" } +1068.0 "Dark Wings" Ability { id: "19D0", source: "Dotoli Ciloc" } +1074.6 "On High" Ability { id: "19CF", source: "Dotoli Ciloc" } window 20,20 +1076.8 "Dark Wings" Ability { id: "19D0", source: "Dotoli Ciloc" } + +1091.8 "On Low" Ability { id: "19CE", source: "Dotoli Ciloc" } jump 1036.7 1100.3 "Dark Wings" 1110.3 "Swiftfeather" 1112.7 "On Low" @@ -97,41 +97,41 @@ hideall "--sync--" # -ii 19D8 # The Vortex will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:6FF:/ window 2000,5 -2007.1 "Ixali Aero (buster)" sync / 1[56]:[^:]*:Tozol Huatotl:19D3:/ window 7.1,5 -2014.2 "Ixali Aero III (aoe)" sync / 1[56]:[^:]*:Tozol Huatotl:19D5:/ -2023.7 "Bill" sync / 1[56]:[^:]*:Abalathian Hornbill:19DA:/ -2028.5 "Ixali Aero (buster)" sync / 1[56]:[^:]*:Tozol Huatotl:19D3:/ -2035.6 "Ixali Aero II (line)" sync / 1[56]:[^:]*:Tozol Huatotl:19D4:/ -2045.3 "Ingurgitate" sync / 1[56]:[^:]*:Abalathian Hornbill:19D9:/ window 10,10 -2050.9 "Ixali Aero III (aoe)" sync / 1[56]:[^:]*:Tozol Huatotl:19D5:/ -2055.0 "Ixali Aero (buster)" sync / 1[56]:[^:]*:Tozol Huatotl:19D3:/ - -2063.1 "Summon Garuda" sync / 1[56]:[^:]*:Tozol Huatotl:19D7:/ window 63.1,10 -2072.7 "Bill" sync / 1[56]:[^:]*:Abalathian Hornbill:19DA:/ -2072.9 "Eye Of The Storm" sync / 1[56]:[^:]*:Garuda:19DB:/ -2074.8 "Mistral Song" sync / 1[56]:[^:]*:Garuda:19DC:/ window 20,20 -2078.5 "Ixali Aero II (line)" sync / 1[56]:[^:]*:Tozol Huatotl:19D4:/ -2084.7 "Ixali Aero (buster)" sync / 1[56]:[^:]*:Tozol Huatotl:19D3:/ -2091.8 "Ixali Aero III (aoe)" sync / 1[56]:[^:]*:Tozol Huatotl:19D5:/ -2102.5 "Ingurgitate" sync / 1[56]:[^:]*:Abalathian Hornbill:19D9:/ -2107.1 "Ixali Aero II (line)" sync / 1[56]:[^:]*:Tozol Huatotl:19D4:/ -2112.2 "Ixali Aero III (aoe)" sync / 1[56]:[^:]*:Tozol Huatotl:19D5:/ -2115.4 "Ixali Aero (buster)" sync / 1[56]:[^:]*:Tozol Huatotl:19D3:/ -2127.3 "Summon Garuda" sync / 1[56]:[^:]*:Tozol Huatotl:19D7:/ window 30,30 -2136.7 "Bill" sync / 1[56]:[^:]*:Abalathian Hornbill:19DA:/ -2139.0 "Eye Of The Storm" sync / 1[56]:[^:]*:Garuda:19DB:/ -2139.0 "Wicked Wheel" sync / 1[56]:[^:]*:Garuda:19DD:/ -2145.2 "Aerial Blast" sync / 1[56]:[^:]*:Garuda:19DE:/ -2150.7 "Ixali Aero III (aoe)" sync / 1[56]:[^:]*:Tozol Huatotl:19D5:/ -2161.0 "Ixali Aero (buster)" sync / 1[56]:[^:]*:Tozol Huatotl:19D3:/ -2168.1 "Ixali Aero III (aoe)" sync / 1[56]:[^:]*:Tozol Huatotl:19D5:/ -2178.8 "Ingurgitate" sync / 1[56]:[^:]*:Abalathian Hornbill:19D9:/ window 30,30 -2183.4 "Ixali Aero II (line)" sync / 1[56]:[^:]*:Tozol Huatotl:19D4:/ -2188.5 "Ixali Aero III (aoe)" sync / 1[56]:[^:]*:Tozol Huatotl:19D5:/ -2191.7 "Ixali Aero (buster)" sync / 1[56]:[^:]*:Tozol Huatotl:19D3:/ - -2202.5 "Summon Garuda" sync / 1[56]:[^:]*:Tozol Huatotl:19D7:/ jump 2063.1 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "6FF" } window 2000,5 +2007.1 "Ixali Aero (buster)" Ability { id: "19D3", source: "Tozol Huatotl" } window 7.1,5 +2014.2 "Ixali Aero III (aoe)" Ability { id: "19D5", source: "Tozol Huatotl" } +2023.7 "Bill" Ability { id: "19DA", source: "Abalathian Hornbill" } +2028.5 "Ixali Aero (buster)" Ability { id: "19D3", source: "Tozol Huatotl" } +2035.6 "Ixali Aero II (line)" Ability { id: "19D4", source: "Tozol Huatotl" } +2045.3 "Ingurgitate" Ability { id: "19D9", source: "Abalathian Hornbill" } window 10,10 +2050.9 "Ixali Aero III (aoe)" Ability { id: "19D5", source: "Tozol Huatotl" } +2055.0 "Ixali Aero (buster)" Ability { id: "19D3", source: "Tozol Huatotl" } + +2063.1 "Summon Garuda" Ability { id: "19D7", source: "Tozol Huatotl" } window 63.1,10 +2072.7 "Bill" Ability { id: "19DA", source: "Abalathian Hornbill" } +2072.9 "Eye Of The Storm" Ability { id: "19DB", source: "Garuda" } +2074.8 "Mistral Song" Ability { id: "19DC", source: "Garuda" } window 20,20 +2078.5 "Ixali Aero II (line)" Ability { id: "19D4", source: "Tozol Huatotl" } +2084.7 "Ixali Aero (buster)" Ability { id: "19D3", source: "Tozol Huatotl" } +2091.8 "Ixali Aero III (aoe)" Ability { id: "19D5", source: "Tozol Huatotl" } +2102.5 "Ingurgitate" Ability { id: "19D9", source: "Abalathian Hornbill" } +2107.1 "Ixali Aero II (line)" Ability { id: "19D4", source: "Tozol Huatotl" } +2112.2 "Ixali Aero III (aoe)" Ability { id: "19D5", source: "Tozol Huatotl" } +2115.4 "Ixali Aero (buster)" Ability { id: "19D3", source: "Tozol Huatotl" } +2127.3 "Summon Garuda" Ability { id: "19D7", source: "Tozol Huatotl" } window 30,30 +2136.7 "Bill" Ability { id: "19DA", source: "Abalathian Hornbill" } +2139.0 "Eye Of The Storm" Ability { id: "19DB", source: "Garuda" } +2139.0 "Wicked Wheel" Ability { id: "19DD", source: "Garuda" } +2145.2 "Aerial Blast" Ability { id: "19DE", source: "Garuda" } +2150.7 "Ixali Aero III (aoe)" Ability { id: "19D5", source: "Tozol Huatotl" } +2161.0 "Ixali Aero (buster)" Ability { id: "19D3", source: "Tozol Huatotl" } +2168.1 "Ixali Aero III (aoe)" Ability { id: "19D5", source: "Tozol Huatotl" } +2178.8 "Ingurgitate" Ability { id: "19D9", source: "Abalathian Hornbill" } window 30,30 +2183.4 "Ixali Aero II (line)" Ability { id: "19D4", source: "Tozol Huatotl" } +2188.5 "Ixali Aero III (aoe)" Ability { id: "19D5", source: "Tozol Huatotl" } +2191.7 "Ixali Aero (buster)" Ability { id: "19D3", source: "Tozol Huatotl" } + +2202.5 "Summon Garuda" Ability { id: "19D7", source: "Tozol Huatotl" } jump 2063.1 2212.1 "Bill" 2212.3 "Eye Of The Storm" 2214.2 "Mistral Song" diff --git a/ui/raidboss/data/03-hw/raid/a10n.txt b/ui/raidboss/data/03-hw/raid/a10n.txt index 8092201dae..c242176f89 100644 --- a/ui/raidboss/data/03-hw/raid/a10n.txt +++ b/ui/raidboss/data/03-hw/raid/a10n.txt @@ -7,101 +7,101 @@ hideall "--Reset--" hideall "--sync--" # The Excruciationator will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:736:/ window 0,1 -7.0 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ window 7,3 -10.1 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -15.2 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -22.2 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD2:/ -34.4 "Gobslash Slicetops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD1:/ -37.5 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -45.6 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACF:/ -49.7 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -56.7 "Trap" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1AB0|1AB1):/ window 56.7,5 -58.0 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -61.1 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -61.7 "Frostbite/Impact" sync / 1[56]:[^:]*:(Blizzard Arrow|Weight of the World):(1AC7|1AC6):/ -69.0 "Trap" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1AB0|1AB1):/ -70.3 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -74.0 "Impact/Frostbite" sync / 1[56]:[^:]*:(Blizzard Arrow|Weight of the World):(1AC7|1AC6):/ -74.9 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD2:/ -78.0 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -87.1 "Gobslash Slicetops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD1:/ -90.2 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -98.3 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACF:/ -102.4 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "736" } window 0,1 +7.0 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } window 7,3 +10.1 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +15.2 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +22.2 "Illuminati Hand Cannon" Ability { id: "1AD2", source: "Lamebrix Strikebocks" } +34.4 "Gobslash Slicetops" Ability { id: "1AD1", source: "Lamebrix Strikebocks" } +37.5 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +45.6 "Gobrush Rushgob" Ability { id: "1ACF", source: "Lamebrix Strikebocks" } +49.7 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +56.7 "Trap" Ability { id: ["1AB0", "1AB1"], source: "Lamebrix Strikebocks" } window 56.7,5 +58.0 "--sync--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +61.1 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +61.7 "Frostbite/Impact" Ability { id: ["1AC7", "1AC6"], source: ["Blizzard Arrow", "Weight of the World"] } +69.0 "Trap" Ability { id: ["1AB0", "1AB1"], source: "Lamebrix Strikebocks" } +70.3 "--sync--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +74.0 "Impact/Frostbite" Ability { id: ["1AC7", "1AC6"], source: ["Blizzard Arrow", "Weight of the World"] } +74.9 "Illuminati Hand Cannon" Ability { id: "1AD2", source: "Lamebrix Strikebocks" } +78.0 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +87.1 "Gobslash Slicetops" Ability { id: "1AD1", source: "Lamebrix Strikebocks" } +90.2 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +98.3 "Gobrush Rushgob" Ability { id: "1ACF", source: "Lamebrix Strikebocks" } +102.4 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } 105.4 "--untargetable--" -105.4 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ window 20,20 +105.4 "--sync--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } window 20,20 110.7 "--targetable--" -111.1 "--sync--" sync / 14:[^:]*:Gobpress R-VI:1AC9:/ window 112,10 -112.8 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9C:/ -117.8 "Critical Wrath" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACD:/ -122.9 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD2:/ -126.2 "Steam Roller" sync / 1[56]:[^:]*:Gobpress R-VI:1ACA:/ -132.2 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -136.2 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -142.3 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD2:/ -145.5 "Steam Roller" sync / 1[56]:[^:]*:Gobpress R-VI:1ACA:/ -156.2 "Bomb Toss" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACE:/ -161.4 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD2:/ -165.0 "Steam Roller" sync / 1[56]:[^:]*:Gobpress R-VI:1ACA:/ -170.2 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -174.3 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -180.4 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD2:/ -184.3 "Steam Roller" sync / 1[56]:[^:]*:Gobpress R-VI:1ACA:/ +111.1 "--sync--" StartsUsing { id: "1AC9", source: "Gobpress R-VI" } window 112,10 +112.8 "--sync--" Ability { id: "1A9C", source: "Lamebrix Strikebocks" } +117.8 "Critical Wrath" Ability { id: "1ACD", source: "Lamebrix Strikebocks" } +122.9 "Illuminati Hand Cannon" Ability { id: "1AD2", source: "Lamebrix Strikebocks" } +126.2 "Steam Roller" Ability { id: "1ACA", source: "Gobpress R-VI" } +132.2 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +136.2 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +142.3 "Illuminati Hand Cannon" Ability { id: "1AD2", source: "Lamebrix Strikebocks" } +145.5 "Steam Roller" Ability { id: "1ACA", source: "Gobpress R-VI" } +156.2 "Bomb Toss" Ability { id: "1ACE", source: "Lamebrix Strikebocks" } +161.4 "Illuminati Hand Cannon" Ability { id: "1AD2", source: "Lamebrix Strikebocks" } +165.0 "Steam Roller" Ability { id: "1ACA", source: "Gobpress R-VI" } +170.2 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +174.3 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +180.4 "Illuminati Hand Cannon" Ability { id: "1AD2", source: "Lamebrix Strikebocks" } +184.3 "Steam Roller" Ability { id: "1ACA", source: "Gobpress R-VI" } # The Gobpress gains a damage up buff here. The intermission continues and loops if unsynced. -189.7 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -194.8 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -199.9 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -203.6 "Steam Roller Enrage?" sync / 1[56]:[^:]*:Gobpress R-VI:1ACA:/ +189.7 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +194.8 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +199.9 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +203.6 "Steam Roller Enrage?" Ability { id: "1ACA", source: "Gobpress R-VI" } # This targetable entry is the earliest we can re-sync the timeline. -300.0 "--targetable--" sync /22:[^:]*:Lamebrix Strikebocks:[^:]*:Lamebrix Strikebocks:01/ window 190,10 -309.2 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ window 200,10 -317.3 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACF:/ +300.0 "--targetable--" NameToggle { name: "Lamebrix Strikebocks", toggle: "01" } window 190,10 +309.2 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } window 200,10 +317.3 "Gobrush Rushgob" Ability { id: "1ACF", source: "Lamebrix Strikebocks" } -321.4 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1AB8|1AB9):/ -324.6 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A97:/ -325.5 "Gobspin Whooshdrops/Gobswipe Conklops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1ACB|1ACC):/ window 25,10 -331.6 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -335.6 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -339.7 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -344.7 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1AB8|1AB9):/ -347.9 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A97:/ -348.8 "Gobswipe Conklops/Gobspin Whooshdrops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1ACB|1ACC):/ window 10,10 -355.9 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -360.0 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -368.1 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACF:/ -372.3 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -377.3 "Laceration #1" sync / 1[56]:[^:]*:Buzzsaw:1AC8:/ window 30,2.5 -380.3 "Laceration #2" sync / 1[56]:[^:]*:Buzzsaw:1AC8:/ -383.3 "Laceration #3" sync / 1[56]:[^:]*:Buzzsaw:1AC8:/ -385.3 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -389.3 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -393.3 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -398.2 "Trap #1" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1AB0|1AB1):/ window 100,2.5 -402.3 "Trap #2" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1AB0|1AB1):/ -403.2 "Frostbite/Impact" sync / 1[56]:[^:]*:(Blizzard Arrow|Weight of the World):(1AC7|1AC6):/ -403.6 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -407.3 "Impact/Frostbite" sync / 1[56]:[^:]*:(Blizzard Arrow|Weight of the World):(1AC7|1AC6):/ -408.9 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD2:/ -418.1 "Gobslash Slicetops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD1:/ -422.1 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A17:/ -430.2 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACF:/ -434.3 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ -440.4 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9C:/ window 30,30 -444.4 "Laceration #1" sync / 1[56]:[^:]*:Buzzsaw:1AC8:/ -445.4 "Critical Wrath" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACD:/ -447.4 "Laceration #2" sync / 1[56]:[^:]*:Buzzsaw:1AC8:/ -450.4 "Laceration #3" sync / 1[56]:[^:]*:Buzzsaw:1AC8:/ -453.1 "Bomb Toss" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACE:/ -465.1 "Gobbieboom?" sync / 1[56]:[^:]*:Goblin of Fortune:1AD3:/ -467.2 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1ACF:/ -470.3 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AD0:/ +321.4 "--sync--" Ability { id: ["1AB8", "1AB9"], source: "Lamebrix Strikebocks" } +324.6 "--sync--" Ability { id: "1A97", source: "Lamebrix Strikebocks" } +325.5 "Gobspin Whooshdrops/Gobswipe Conklops" Ability { id: ["1ACB", "1ACC"], source: "Lamebrix Strikebocks" } window 25,10 +331.6 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +335.6 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +339.7 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +344.7 "--sync--" Ability { id: ["1AB8", "1AB9"], source: "Lamebrix Strikebocks" } +347.9 "--sync--" Ability { id: "1A97", source: "Lamebrix Strikebocks" } +348.8 "Gobswipe Conklops/Gobspin Whooshdrops" Ability { id: ["1ACB", "1ACC"], source: "Lamebrix Strikebocks" } window 10,10 +355.9 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +360.0 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +368.1 "Gobrush Rushgob" Ability { id: "1ACF", source: "Lamebrix Strikebocks" } +372.3 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +377.3 "Laceration #1" Ability { id: "1AC8", source: "Buzzsaw" } window 30,2.5 +380.3 "Laceration #2" Ability { id: "1AC8", source: "Buzzsaw" } +383.3 "Laceration #3" Ability { id: "1AC8", source: "Buzzsaw" } +385.3 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +389.3 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +393.3 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +398.2 "Trap #1" Ability { id: ["1AB0", "1AB1"], source: "Lamebrix Strikebocks" } window 100,2.5 +402.3 "Trap #2" Ability { id: ["1AB0", "1AB1"], source: "Lamebrix Strikebocks" } +403.2 "Frostbite/Impact" Ability { id: ["1AC7", "1AC6"], source: ["Blizzard Arrow", "Weight of the World"] } +403.6 "--sync--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +407.3 "Impact/Frostbite" Ability { id: ["1AC7", "1AC6"], source: ["Blizzard Arrow", "Weight of the World"] } +408.9 "Illuminati Hand Cannon" Ability { id: "1AD2", source: "Lamebrix Strikebocks" } +418.1 "Gobslash Slicetops" Ability { id: "1AD1", source: "Lamebrix Strikebocks" } +422.1 "Goblin Rush" Ability { id: "1A17", source: "Lamebrix Strikebocks" } +430.2 "Gobrush Rushgob" Ability { id: "1ACF", source: "Lamebrix Strikebocks" } +434.3 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } +440.4 "--sync--" Ability { id: "1A9C", source: "Lamebrix Strikebocks" } window 30,30 +444.4 "Laceration #1" Ability { id: "1AC8", source: "Buzzsaw" } +445.4 "Critical Wrath" Ability { id: "1ACD", source: "Lamebrix Strikebocks" } +447.4 "Laceration #2" Ability { id: "1AC8", source: "Buzzsaw" } +450.4 "Laceration #3" Ability { id: "1AC8", source: "Buzzsaw" } +453.1 "Bomb Toss" Ability { id: "1ACE", source: "Lamebrix Strikebocks" } +465.1 "Gobbieboom?" Ability { id: "1AD3", source: "Goblin of Fortune" } +467.2 "Gobrush Rushgob" Ability { id: "1ACF", source: "Lamebrix Strikebocks" } +470.3 "Gobsway Rumblerocks" Ability { id: "1AD0", source: "Lamebrix Strikebocks" } -474.4 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:(1AB8|1AB9):/ window 30,10 jump 321.4 +474.4 "--sync--" Ability { id: ["1AB8", "1AB9"], source: "Lamebrix Strikebocks" } window 30,10 jump 321.4 477.6 "Single Charge" 478.5 "Gobspin Whooshdrops/Gobswipe Conklops" 484.6 "Gobsway Rumblerocks" diff --git a/ui/raidboss/data/03-hw/raid/a10s.txt b/ui/raidboss/data/03-hw/raid/a10s.txt index a5b0fc23cc..41b5973e95 100644 --- a/ui/raidboss/data/03-hw/raid/a10s.txt +++ b/ui/raidboss/data/03-hw/raid/a10s.txt @@ -8,202 +8,202 @@ hideall "--Reset--" hideall "--sync--" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.5 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ window 7,2.5 -9.6 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -14.7 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -18.8 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[AB]:/ -22.1 "Single Charge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A97:/ -22.9 "--spread/stack--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[CE]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.5 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } window 7,2.5 +9.6 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +14.7 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +18.8 "--sync--" Ability { id: "1AB[AB]", source: "Lamebrix Strikebocks" } +22.1 "Single Charge" Ability { id: "1A97", source: "Lamebrix Strikebocks" } +22.9 "--spread/stack--" Ability { id: "1A9[CE]", source: "Lamebrix Strikebocks" } # trap 1: hp ??% -30.3 "Floor Trap" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB2:/ window 31,5 -31.6 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -35.7 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[AB]:/ -39.0 "Single Charge (Stack/Spread)" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A97:/ -39.8 "--stack/spread--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[CE]:/ -50.0 "Gobslash Slicetops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA1:/ -53.1 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -61.2 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9F:/ -64.4 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA6:/ # discharge puddles appear -67.6 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ +30.3 "Floor Trap" Ability { id: "1AB2", source: "Lamebrix Strikebocks" } window 31,5 +31.6 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +35.7 "--sync--" Ability { id: "1AB[AB]", source: "Lamebrix Strikebocks" } +39.0 "Single Charge (Stack/Spread)" Ability { id: "1A97", source: "Lamebrix Strikebocks" } +39.8 "--stack/spread--" Ability { id: "1A9[CE]", source: "Lamebrix Strikebocks" } +50.0 "Gobslash Slicetops" Ability { id: "1AA1", source: "Lamebrix Strikebocks" } +53.1 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } +61.2 "Gobrush Rushgob" Ability { id: "1A9F", source: "Lamebrix Strikebocks" } +64.4 "--sync--" Ability { id: "1AA6", source: "Lamebrix Strikebocks" } # discharge puddles appear +67.6 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } # trap 2: hp 85% -73.6 "Frost Trap" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB1:/ window 75,5 -74.9 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -76.5 "Discharge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA7:/ -78.5 "Frostbite" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A8E:/ -88.0 "Gobsnick Leghops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA4:/ +73.6 "Frost Trap" Ability { id: "1AB1", source: "Lamebrix Strikebocks" } window 75,5 +74.9 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +76.5 "Discharge" Ability { id: "1AA7", source: "Lamebrix Strikebocks" } +78.5 "Frostbite" Ability { id: "1A8E", source: "Lamebrix Strikebocks" } +88.0 "Gobsnick Leghops" Ability { id: "1AA4", source: "Lamebrix Strikebocks" } 90.2 "Clone Add" -90.2 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -92.5 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB8:/ -95.8 "Single Charge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A97:/ -96.6 "--in--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9A:/ -103.7 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -105.3 "Gobswish Spraymops" sync / 1[56]:[^:]*:Lameprix Strikedocks:1AA3:/ -113.9 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9F:/ -118.5 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -119.5 "Gobswish Spraymops" sync / 1[56]:[^:]*:Lameprix Strikedocks:1AA3:/ -120.7 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA6:/ # discharge puddles appear +90.2 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +92.5 "--sync--" Ability { id: "1AB8", source: "Lamebrix Strikebocks" } +95.8 "Single Charge" Ability { id: "1A97", source: "Lamebrix Strikebocks" } +96.6 "--in--" Ability { id: "1A9A", source: "Lamebrix Strikebocks" } +103.7 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +105.3 "Gobswish Spraymops" Ability { id: "1AA3", source: "Lameprix Strikedocks" } +113.9 "Gobrush Rushgob" Ability { id: "1A9F", source: "Lamebrix Strikebocks" } +118.5 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } +119.5 "Gobswish Spraymops" Ability { id: "1AA3", source: "Lameprix Strikedocks" } +120.7 "--sync--" Ability { id: "1AA6", source: "Lamebrix Strikebocks" } # discharge puddles appear # trap 3: hp ??% -126.6 "Weight Trap" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB0:/ window 127,5 -128.0 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -131.6 "Impact" sync / 1[56]:[^:]*:Weight Of The World:1A8B:/ -135.7 "Discharge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA7:/ -144.3 "Gobslash Slicetops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA1:/ -147.4 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -151.6 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -159.7 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[89]:/ -161.7 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[89]:/ -165.0 "Double Charge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A98:/ -165.8 "--in/out--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[AB]:/ -168.8 "--out/in--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[AB]:/ -171.9 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ +126.6 "Weight Trap" Ability { id: "1AB0", source: "Lamebrix Strikebocks" } window 127,5 +128.0 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +131.6 "Impact" Ability { id: "1A8B", source: "Weight Of The World" } +135.7 "Discharge" Ability { id: "1AA7", source: "Lamebrix Strikebocks" } +144.3 "Gobslash Slicetops" Ability { id: "1AA1", source: "Lamebrix Strikebocks" } +147.4 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +151.6 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +159.7 "--sync--" #Ability { id: "1AB[89]", source: "Lamebrix Strikebocks" } +161.7 "--sync--" #Ability { id: "1AB[89]", source: "Lamebrix Strikebocks" } +165.0 "Double Charge" Ability { id: "1A98", source: "Lamebrix Strikebocks" } +165.8 "--in/out--" Ability { id: "1A9[AB]", source: "Lamebrix Strikebocks" } +168.8 "--out/in--" Ability { id: "1A9[AB]", source: "Lamebrix Strikebocks" } +171.9 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } 178.2 "Leghops?/Charge (In)?" -184.0 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -187.2 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -195.3 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9F:/ -199.5 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ +184.0 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +187.2 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } +195.3 "Gobrush Rushgob" Ability { id: "1A9F", source: "Lamebrix Strikebocks" } +199.5 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } ### Phase 2: Steam Roller (60%) -200.5 "--untargetable--" sync / 22:........:Lamebrix Strikebocks:........:Lamebrix Strikebocks:00/ window 201,5 -201.6 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ window 20,5 -207.0 "Brighteyes Markers" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA9:/ window 210,5 -212.0 "Brighteyes" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AAA:/ -212.1 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA8:/ -216.3 "Brighteyes Markers" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA9:/ -221.2 "Steam Roller" sync / 1[56]:[^:]*:Gobpress R-VI:1A95:/ -221.2 "Brighteyes" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AAA:/ -231.5 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA8:/ -234.7 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -238.9 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -240.5 "Steam Roller" sync / 1[56]:[^:]*:Gobpress R-VI:1A95:/ -241.6 "Brighteyes Markers" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA9:/ -246.6 "Brighteyes" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AAA:/ -246.7 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA8:/ -250.9 "Brighteyes Markers" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA9:/ -255.9 "Brighteyes" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AAA:/ -259.8 "Steam Roller" sync / 1[56]:[^:]*:Gobpress R-VI:1A95:/ -268.1 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA8:/ -271.3 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -275.5 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -279.1 "Steam Roller" sync / 1[56]:[^:]*:Gobpress R-VI:1A95:/ -285.8 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -289.9 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -294.1 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -298.2 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -298.4 "Steam Roller Enrage" sync / 1[56]:[^:]*:Gobpress R-VI:1A95:/ -302.4 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ +200.5 "--untargetable--" NameToggle { name: "Lamebrix Strikebocks", toggle: "00" } window 201,5 +201.6 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } window 20,5 +207.0 "Brighteyes Markers" Ability { id: "1AA9", source: "Lamebrix Strikebocks" } window 210,5 +212.0 "Brighteyes" Ability { id: "1AAA", source: "Lamebrix Strikebocks" } +212.1 "Illuminati Hand Cannon" Ability { id: "1AA8", source: "Lamebrix Strikebocks" } +216.3 "Brighteyes Markers" Ability { id: "1AA9", source: "Lamebrix Strikebocks" } +221.2 "Steam Roller" Ability { id: "1A95", source: "Gobpress R-VI" } +221.2 "Brighteyes" Ability { id: "1AAA", source: "Lamebrix Strikebocks" } +231.5 "Illuminati Hand Cannon" Ability { id: "1AA8", source: "Lamebrix Strikebocks" } +234.7 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +238.9 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +240.5 "Steam Roller" Ability { id: "1A95", source: "Gobpress R-VI" } +241.6 "Brighteyes Markers" Ability { id: "1AA9", source: "Lamebrix Strikebocks" } +246.6 "Brighteyes" Ability { id: "1AAA", source: "Lamebrix Strikebocks" } +246.7 "Illuminati Hand Cannon" Ability { id: "1AA8", source: "Lamebrix Strikebocks" } +250.9 "Brighteyes Markers" Ability { id: "1AA9", source: "Lamebrix Strikebocks" } +255.9 "Brighteyes" Ability { id: "1AAA", source: "Lamebrix Strikebocks" } +259.8 "Steam Roller" Ability { id: "1A95", source: "Gobpress R-VI" } +268.1 "Illuminati Hand Cannon" Ability { id: "1AA8", source: "Lamebrix Strikebocks" } +271.3 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +275.5 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +279.1 "Steam Roller" Ability { id: "1A95", source: "Gobpress R-VI" } +285.8 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +289.9 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +294.1 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +298.2 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +298.4 "Steam Roller Enrage" Ability { id: "1A95", source: "Gobpress R-VI" } +302.4 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } ### Phase 3 -500.0 "--targetable--" sync / 22:........:Lamebrix Strikebocks:........:Lamebrix Strikebocks:01/ window 500,0 -509.0 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ window 305,5 -517.1 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9F:/ -521.3 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[89AB]:/ -523.3 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[89AB]:/ -525.3 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[89AB]:/ +500.0 "--targetable--" NameToggle { name: "Lamebrix Strikebocks", toggle: "01" } window 500,0 +509.0 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } window 305,5 +517.1 "Gobrush Rushgob" Ability { id: "1A9F", source: "Lamebrix Strikebocks" } +521.3 "--sync--" #Ability { id: "1AB[89AB]", source: "Lamebrix Strikebocks" } +523.3 "--sync--" #Ability { id: "1AB[89AB]", source: "Lamebrix Strikebocks" } +525.3 "--sync--" #Ability { id: "1AB[89AB]", source: "Lamebrix Strikebocks" } -528.5 "Triple Charge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A99:/ window 530,10 -529.3 "--mechanic 1--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[ABCE]:/ -532.4 "--mechanic 2--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[ABCE]:/ -536.9 "--mechanic 3--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[ABCE]:/ -542.0 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -546.1 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -550.2 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -554.3 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -559.4 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -561.7 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB8:/ -565.0 "Single Charge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A97:/ -565.8 "--in--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9A:/ +528.5 "Triple Charge" Ability { id: "1A99", source: "Lamebrix Strikebocks" } window 530,10 +529.3 "--mechanic 1--" Ability { id: "1A9[ABCE]", source: "Lamebrix Strikebocks" } +532.4 "--mechanic 2--" Ability { id: "1A9[ABCE]", source: "Lamebrix Strikebocks" } +536.9 "--mechanic 3--" Ability { id: "1A9[ABCE]", source: "Lamebrix Strikebocks" } +542.0 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } +546.1 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +550.2 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } +554.3 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +559.4 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +561.7 "--sync--" Ability { id: "1AB8", source: "Lamebrix Strikebocks" } +565.0 "Single Charge" Ability { id: "1A97", source: "Lamebrix Strikebocks" } +565.8 "--in--" Ability { id: "1A9A", source: "Lamebrix Strikebocks" } -575.0 "Gobspin Zoomdrops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A8F:/ +575.0 "Gobspin Zoomdrops" Ability { id: "1A8F", source: "Lamebrix Strikebocks" } 576.9 "Stoneskin" -580.2 "Gobspin Zoomdrops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -586.2 "Gobspin Zoomdrops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -592.2 "Gobspin Zoomdrops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ window 3,100 -594.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -596.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -598.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -600.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -602.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -604.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -606.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -608.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -610.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -612.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -614.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -616.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -618.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -620.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -622.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -624.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -626.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ -628.2 "Gobspin Zoomdrops" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A91:/ +580.2 "Gobspin Zoomdrops" Ability { id: "1A91", source: "Lamebrix Strikebocks" } +586.2 "Gobspin Zoomdrops" Ability { id: "1A91", source: "Lamebrix Strikebocks" } +592.2 "Gobspin Zoomdrops" Ability { id: "1A91", source: "Lamebrix Strikebocks" } window 3,100 +594.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +596.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +598.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +600.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +602.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +604.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +606.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +608.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +610.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +612.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +614.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +616.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +618.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +620.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +622.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +624.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +626.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } +628.2 "Gobspin Zoomdrops" #Ability { id: "1A91", source: "Lamebrix Strikebocks" } -700.0 "Frostbite" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A8E:/ window 125,0 -712.8 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -720.9 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9F:/ -724.1 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -735.3 "Gobslice Mooncrops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A92:/ -739.4 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ +700.0 "Frostbite" Ability { id: "1A8E", source: "Lamebrix Strikebocks" } window 125,0 +712.8 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +720.9 "Gobrush Rushgob" Ability { id: "1A9F", source: "Lamebrix Strikebocks" } +724.1 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +735.3 "Gobslice Mooncrops" Ability { id: "1A92", source: "Lamebrix Strikebocks" } +739.4 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } 745.7 "Leghops?/Charge (In)?" -749.9 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -754.0 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -758.1 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -762.2 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ +749.9 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +754.0 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +758.1 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } +762.2 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } # Sawblade phase -765.3 "Brighteyes Markers" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA9:/ -769.2 "Laceration" #sync / 1[56]:[^:]*:Buzzsaw:1A94:/ -770.3 "Brighteyes" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AAA:/ -770.9 "Illuminati Hand Cannon" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA8:/ -772.3 "Laceration" #sync / 1[56]:[^:]*:Buzzsaw:1A94:/ -775.1 "Brighteyes Markers" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA9:/ -775.4 "Laceration" #sync / 1[56]:[^:]*:Buzzsaw:1A94:/ -778.2 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB9:/ -778.4 "Laceration" #sync / 1[56]:[^:]*:Buzzsaw:1A94:/ -780.1 "Brighteyes" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AAA:/ -781.5 "Single Charge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A97:/ -782.3 "--out--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9B:/ -786.4 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -795.6 "Gobslash Slicetops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA1:/ -803.7 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9F:/ +765.3 "Brighteyes Markers" Ability { id: "1AA9", source: "Lamebrix Strikebocks" } +769.2 "Laceration" #Ability { id: "1A94", source: "Buzzsaw" } +770.3 "Brighteyes" Ability { id: "1AAA", source: "Lamebrix Strikebocks" } +770.9 "Illuminati Hand Cannon" Ability { id: "1AA8", source: "Lamebrix Strikebocks" } +772.3 "Laceration" #Ability { id: "1A94", source: "Buzzsaw" } +775.1 "Brighteyes Markers" Ability { id: "1AA9", source: "Lamebrix Strikebocks" } +775.4 "Laceration" #Ability { id: "1A94", source: "Buzzsaw" } +778.2 "--sync--" Ability { id: "1AB9", source: "Lamebrix Strikebocks" } +778.4 "Laceration" #Ability { id: "1A94", source: "Buzzsaw" } +780.1 "Brighteyes" Ability { id: "1AAA", source: "Lamebrix Strikebocks" } +781.5 "Single Charge" Ability { id: "1A97", source: "Lamebrix Strikebocks" } +782.3 "--out--" Ability { id: "1A9B", source: "Lamebrix Strikebocks" } +786.4 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } +795.6 "Gobslash Slicetops" Ability { id: "1AA1", source: "Lamebrix Strikebocks" } +803.7 "Gobrush Rushgob" Ability { id: "1A9F", source: "Lamebrix Strikebocks" } # Adds phase -806.9 "--sync--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA6:/ # discharge puddles appear -811.8 "Frost Trap" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB1:/ -814.9 "Discharge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA7:/ -815.9 "Weight Trap" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB0:/ -816.8 "Frostbite" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A8E:/ -820.8 "Impact" sync / 1[56]:[^:]*:Weight Of The World:1A8B:/ -817.2 "--jump--" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -824.9 "Discharge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA7:/ +806.9 "--sync--" Ability { id: "1AA6", source: "Lamebrix Strikebocks" } # discharge puddles appear +811.8 "Frost Trap" Ability { id: "1AB1", source: "Lamebrix Strikebocks" } +814.9 "Discharge" Ability { id: "1AA7", source: "Lamebrix Strikebocks" } +815.9 "Weight Trap" Ability { id: "1AB0", source: "Lamebrix Strikebocks" } +816.8 "Frostbite" Ability { id: "1A8E", source: "Lamebrix Strikebocks" } +820.8 "Impact" Ability { id: "1A8B", source: "Weight Of The World" } +817.2 "--jump--" Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +824.9 "Discharge" Ability { id: "1AA7", source: "Lamebrix Strikebocks" } 827.1 "Gobbie Adds x3 (NE)" -828.4 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -832.5 "Gobsway Rumblerocks" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -840.7 "Gobsnick Leghops" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA4:/ -845.6 "Laceration" #sync / 1[56]:[^:]*:Buzzsaw:1A94:/ -847.8 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -848.6 "Laceration" #sync / 1[56]:[^:]*:Buzzsaw:1A94:/ -851.6 "Laceration" #sync / 1[56]:[^:]*:Buzzsaw:1A94:/ -855.9 "Gobrush Rushgob" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9F:/ -860.0 "Goblin Rush" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ +828.4 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +832.5 "Gobsway Rumblerocks" Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +840.7 "Gobsnick Leghops" Ability { id: "1AA4", source: "Lamebrix Strikebocks" } +845.6 "Laceration" #Ability { id: "1A94", source: "Buzzsaw" } +847.8 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } +848.6 "Laceration" #Ability { id: "1A94", source: "Buzzsaw" } +851.6 "Laceration" #Ability { id: "1A94", source: "Buzzsaw" } +855.9 "Gobrush Rushgob" Ability { id: "1A9F", source: "Lamebrix Strikebocks" } +860.0 "Goblin Rush" Ability { id: "1A16", source: "Lamebrix Strikebocks" } # Loop -868.1 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[89AB]:/ -870.1 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[89AB]:/ -872.1 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB[89AB]:/ -875.3 "Triple Charge" sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A99:/ window 300,300 jump 528.5 -876.1 "--mechanic 1--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[ABCE]:/ -879.2 "--mechanic 2--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[ABCE]:/ -883.7 "--mechanic 3--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9[ABCE]:/ -888.8 "Goblin Rush" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -892.9 "Gobsway Rumblerocks" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -897.0 "Goblin Rush" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A16:/ -901.1 "Gobsway Rumblerocks" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA0:/ -906.2 "--jump--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AA2:/ -908.5 "--sync--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1AB8:/ -911.8 "Single Charge" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A97:/ -912.6 "--in--" #sync / 1[56]:[^:]*:Lamebrix Strikebocks:1A9A:/ +868.1 "--sync--" #Ability { id: "1AB[89AB]", source: "Lamebrix Strikebocks" } +870.1 "--sync--" #Ability { id: "1AB[89AB]", source: "Lamebrix Strikebocks" } +872.1 "--sync--" #Ability { id: "1AB[89AB]", source: "Lamebrix Strikebocks" } +875.3 "Triple Charge" Ability { id: "1A99", source: "Lamebrix Strikebocks" } window 300,300 jump 528.5 +876.1 "--mechanic 1--" #Ability { id: "1A9[ABCE]", source: "Lamebrix Strikebocks" } +879.2 "--mechanic 2--" #Ability { id: "1A9[ABCE]", source: "Lamebrix Strikebocks" } +883.7 "--mechanic 3--" #Ability { id: "1A9[ABCE]", source: "Lamebrix Strikebocks" } +888.8 "Goblin Rush" #Ability { id: "1A16", source: "Lamebrix Strikebocks" } +892.9 "Gobsway Rumblerocks" #Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +897.0 "Goblin Rush" #Ability { id: "1A16", source: "Lamebrix Strikebocks" } +901.1 "Gobsway Rumblerocks" #Ability { id: "1AA0", source: "Lamebrix Strikebocks" } +906.2 "--jump--" #Ability { id: "1AA2", source: "Lamebrix Strikebocks" } +908.5 "--sync--" #Ability { id: "1AB8", source: "Lamebrix Strikebocks" } +911.8 "Single Charge" #Ability { id: "1A97", source: "Lamebrix Strikebocks" } +912.6 "--in--" #Ability { id: "1A9A", source: "Lamebrix Strikebocks" } diff --git a/ui/raidboss/data/03-hw/raid/a11s.txt b/ui/raidboss/data/03-hw/raid/a11s.txt index 5bf7f46bf9..5a243d12ad 100644 --- a/ui/raidboss/data/03-hw/raid/a11s.txt +++ b/ui/raidboss/data/03-hw/raid/a11s.txt @@ -10,212 +10,212 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.2 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A7[A9]:/ window 7,5 -9.2 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.2 "--sync--" StartsUsing { id: "1A7[A9]", source: "Cruise Chaser" } window 7,5 +9.2 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } # skippable -17.3 "Optical Sight (clock/out)" sync / 1[56]:[^:]*:Cruise Chaser:1A6[CD]:/ +17.3 "Optical Sight (clock/out)" Ability { id: "1A6[CD]", source: "Cruise Chaser" } # skippable -33.4 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -40.6 "Spin Crusher" sync / 1[56]:[^:]*:Cruise Chaser:1A85:/ +33.4 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +40.6 "Spin Crusher" Ability { id: "1A85", source: "Cruise Chaser" } # skippable -45.8 "E.D.D. Add" sync / 03:........:E\.D\.D\.:/ window 50,5 +45.8 "E.D.D. Add" AddedCombatant { name: "E\\.D\\.D\\." } window 50,5 # If we jump to this laser sword immediately after first, the timing is: # 9.2 (first sword) 21.7 (second sword) # Sync to somewhere that will catch t=18.7 - 2.5 seconds = ~36 window (at least) -51.8 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A7[A9]:/ window 40,5 -54.8 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ +51.8 "--sync--" StartsUsing { id: "1A7[A9]", source: "Cruise Chaser" } window 40,5 +54.8 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } 55.8 "E.D.D. Armored Pauldron" -64.0 "Spin Crusher" sync / 1[56]:[^:]*:Cruise Chaser:1A85:/ -81.2 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ +64.0 "Spin Crusher" Ability { id: "1A85", source: "Cruise Chaser" } +81.2 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } -85.3 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A7[A9]:/ window 30,5 -88.3 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ +85.3 "--sync--" StartsUsing { id: "1A7[A9]", source: "Cruise Chaser" } window 30,5 +88.3 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } # GA-100 in the first phase. WHO KNEW? # There's a question mark because nobody should ever see this. -101.6 "GA-100?" sync / 1[56]:[^:]*:Cruise Chaser:1A76:/ +101.6 "GA-100?" Ability { id: "1A76", source: "Cruise Chaser" } # can skip add and jump here -112.7 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A6E:/ window 113,5 -114.7 "Optical Sight (bait)" sync / 1[56]:[^:]*:Cruise Chaser:1A6E:/ -119.9 "Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A6F:/ +112.7 "--sync--" StartsUsing { id: "1A6E", source: "Cruise Chaser" } window 113,5 +114.7 "Optical Sight (bait)" Ability { id: "1A6E", source: "Cruise Chaser" } +119.9 "Hawk Blaster" Ability { id: "1A6F", source: "Cruise Chaser" } -129.8 "Optical Sight (clock/out)" sync / 1[56]:[^:]*:Cruise Chaser:1A6[CD]:/ -137.9 "Super Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A71:/ +129.8 "Optical Sight (clock/out)" Ability { id: "1A6[CD]", source: "Cruise Chaser" } +137.9 "Super Hawk Blaster" Ability { id: "1A71", source: "Cruise Chaser" } -143.9 "Optical Sight (out/clock)" sync / 1[56]:[^:]*:Cruise Chaser:1A6[CD]:/ -150.9 "Super Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A71:/ +143.9 "Optical Sight (out/clock)" Ability { id: "1A6[CD]", source: "Cruise Chaser" } +150.9 "Super Hawk Blaster" Ability { id: "1A71", source: "Cruise Chaser" } -159.9 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -168.1 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ +159.9 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +168.1 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } ### Limit Cut Numbers -177.3 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A80:/ window 180,5 -179.3 "Limit Cut (numbers)" sync / 1[56]:[^:]*:Cruise Chaser:1A80:/ +177.3 "--sync--" StartsUsing { id: "1A80", source: "Cruise Chaser" } window 180,5 +179.3 "Limit Cut (numbers)" Ability { id: "1A80", source: "Cruise Chaser" } 179.9 "--invincible--" 183.5 "Markers" -192.1 "Sword 1" sync / 1[56]:[^:]*:Cruise Chaser:1A81:/ -193.2 "Charge 2" sync / 1[56]:[^:]*:Cruise Chaser:1A82:/ -195.4 "Sword 3" sync / 1[56]:[^:]*:Cruise Chaser:1A81:/ -196.5 "Charge 4" sync / 1[56]:[^:]*:Cruise Chaser:1A82:/ -198.7 "Sword 5" sync / 1[56]:[^:]*:Cruise Chaser:1A81:/ -199.8 "Charge 6" sync / 1[56]:[^:]*:Cruise Chaser:1A82:/ -202.0 "Sword 7" sync / 1[56]:[^:]*:Cruise Chaser:1A81:/ -203.1 "Charge 8" sync / 1[56]:[^:]*:Cruise Chaser:1A82:/ +192.1 "Sword 1" Ability { id: "1A81", source: "Cruise Chaser" } +193.2 "Charge 2" Ability { id: "1A82", source: "Cruise Chaser" } +195.4 "Sword 3" Ability { id: "1A81", source: "Cruise Chaser" } +196.5 "Charge 4" Ability { id: "1A82", source: "Cruise Chaser" } +198.7 "Sword 5" Ability { id: "1A81", source: "Cruise Chaser" } +199.8 "Charge 6" Ability { id: "1A82", source: "Cruise Chaser" } +202.0 "Sword 7" Ability { id: "1A81", source: "Cruise Chaser" } +203.1 "Charge 8" Ability { id: "1A82", source: "Cruise Chaser" } 205.2 "--targetable--" -215.3 "Photon" sync / 1[56]:[^:]*:Cruise Chaser:1A73:/ -222.4 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -229.6 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ -237.1 "Blastoff" sync / 1[56]:[^:]*:Cruise Chaser:1A66:/ window 240,10 +215.3 "Photon" Ability { id: "1A73", source: "Cruise Chaser" } +222.4 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +229.6 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } +237.1 "Blastoff" Ability { id: "1A66", source: "Cruise Chaser" } window 240,10 237.9 "--untargetable--" ### Cutscene -240.2 "Transform" sync / 1[56]:[^:]*:Cruise Chaser:1A49:/ -247.9 "--sync--" sync / 1[56]:[^:]*:Cruise Chaser:1A4A:/ -252.8 "Blassty Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A69:/ -258.8 "Transform" sync / 1[56]:[^:]*:Cruise Chaser:1A4E:/ -264.8 "Perfect Landing" sync / 1[56]:[^:]*:Cruise Chaser:1A6B:/ +240.2 "Transform" Ability { id: "1A49", source: "Cruise Chaser" } +247.9 "--sync--" Ability { id: "1A4A", source: "Cruise Chaser" } +252.8 "Blassty Blaster" Ability { id: "1A69", source: "Cruise Chaser" } +258.8 "Transform" Ability { id: "1A4E", source: "Cruise Chaser" } +264.8 "Perfect Landing" Ability { id: "1A6B", source: "Cruise Chaser" } ### ORBS 268.0 "--targetable--" -270.1 "Limit Cut (orbs)" sync / 1[56]:[^:]*:Cruise Chaser:1A80:/ +270.1 "Limit Cut (orbs)" Ability { id: "1A80", source: "Cruise Chaser" } 270.7 "--invincible--" 273.2 "Lapis Lazuli x4" -276.3 "--sync--" sync / 1[56]:[^:]*:Cruise Chaser:1A7B:/ +276.3 "--sync--" Ability { id: "1A7B", source: "Cruise Chaser" } 276.8 "Plasmasphere x1" -283.4 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -287.6 "--sync--" sync / 1[56]:[^:]*:Cruise Chaser:1A5A:/ -292.7 "--sync--" sync / 1[56]:[^:]*:Claster:1A5B:/ -295.7 "--sync--" sync / 1[56]:[^:]*:Cruise Chaser:1A7B:/ +283.4 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +287.6 "--sync--" Ability { id: "1A5A", source: "Cruise Chaser" } +292.7 "--sync--" Ability { id: "1A5B", source: "Claster" } +295.7 "--sync--" Ability { id: "1A7B", source: "Cruise Chaser" } 296.4 "Plasmasphere x2" -297.4 "Assault Cannon" #sync / 1[56]:[^:]*:Claster:1A78:/ -308.0 "Laser X Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7F:/ -308.9 "--sync--" sync / 1[56]:[^:]*:Claster:1A5B:/ -313.7 "Assault Cannon" #sync / 1[56]:[^:]*:Claster:1A78:/ -315.1 "--sync--" sync / 1[56]:[^:]*:Cruise Chaser:1A7B:/ +297.4 "Assault Cannon" #Ability { id: "1A78", source: "Claster" } +308.0 "Laser X Sword" Ability { id: "1A7F", source: "Cruise Chaser" } +308.9 "--sync--" Ability { id: "1A5B", source: "Claster" } +313.7 "Assault Cannon" #Ability { id: "1A78", source: "Claster" } +315.1 "--sync--" Ability { id: "1A7B", source: "Cruise Chaser" } 315.7 "Plasmasphere x2" -321.7 "Assault Cannon" #sync / 1[56]:[^:]*:Claster:1A78:/ -326.2 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ -338.3 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ +321.7 "Assault Cannon" #Ability { id: "1A78", source: "Claster" } +326.2 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } +338.3 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } ### Eternal Darkness 344.4 "--targetable--" -344.5 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A19:/ window 350,10 -352.5 "Eternal Darkness" sync / 1[56]:[^:]*:Cruise Chaser:1A19:/ -361.7 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ -370.8 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -378.9 "Spin Crusher" sync / 1[56]:[^:]*:Cruise Chaser:1A85:/ +344.5 "--sync--" StartsUsing { id: "1A19", source: "Cruise Chaser" } window 350,10 +352.5 "Eternal Darkness" Ability { id: "1A19", source: "Cruise Chaser" } +361.7 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } +370.8 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +378.9 "Spin Crusher" Ability { id: "1A85", source: "Cruise Chaser" } # skippable -386.0 "Optical Sight (bait)" sync / 1[56]:[^:]*:Cruise Chaser:1A6E:/ -391.2 "Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A6F:/ -396.1 "Super Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A71:/ +386.0 "Optical Sight (bait)" Ability { id: "1A6E", source: "Cruise Chaser" } +391.2 "Hawk Blaster" Ability { id: "1A6F", source: "Cruise Chaser" } +396.1 "Super Hawk Blaster" Ability { id: "1A71", source: "Cruise Chaser" } # also skippable -399.2 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A80:/ window 50,10 -401.2 "Limit Cut (shield)" sync / 1[56]:[^:]*:Cruise Chaser:1A80:/ +399.2 "--sync--" StartsUsing { id: "1A80", source: "Cruise Chaser" } window 50,10 +401.2 "Limit Cut (shield)" Ability { id: "1A80", source: "Cruise Chaser" } 401.8 "--invincible--" 406.6 "Plasma Shield" 431.2 "Plasma Shield Enrage" -431.2 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A83:/ window 40,30 -435.2 "Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:1A83:/ +431.2 "--sync--" StartsUsing { id: "1A83", source: "Cruise Chaser" } window 40,30 +435.2 "Blassty Charge" Ability { id: "1A83", source: "Cruise Chaser" } 437.3 "--targetable--" -439.5 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A73:/ window 40,10 -442.5 "Photon (offtank)" sync / 1[56]:[^:]*:Cruise Chaser:1A73:/ -450.9 "Laser X Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7F:/ +439.5 "--sync--" StartsUsing { id: "1A73", source: "Cruise Chaser" } window 40,10 +442.5 "Photon (offtank)" Ability { id: "1A73", source: "Cruise Chaser" } +450.9 "Laser X Sword" Ability { id: "1A7F", source: "Cruise Chaser" } # maybe skippable -458.7 "E.D.D. Add" sync / 03:........:E\.D\.D\.:/ -462.0 "Photon (dps)" sync / 1[56]:[^:]*:Cruise Chaser:1A73:/ -470.2 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ - -478.4 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A7[A9]:/ window 80,5 -481.4 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ -487.5 "Photon (healer)" sync / 1[56]:[^:]*:Cruise Chaser:1A73:/ -495.6 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -502.1 "Blastoff" sync / 1[56]:[^:]*:Cruise Chaser:1A66:/ window 260,10 +458.7 "E.D.D. Add" AddedCombatant { name: "E\\.D\\.D\\." } +462.0 "Photon (dps)" Ability { id: "1A73", source: "Cruise Chaser" } +470.2 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } + +478.4 "--sync--" StartsUsing { id: "1A7[A9]", source: "Cruise Chaser" } window 80,5 +481.4 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } +487.5 "Photon (healer)" Ability { id: "1A73", source: "Cruise Chaser" } +495.6 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +502.1 "Blastoff" Ability { id: "1A66", source: "Cruise Chaser" } window 260,10 502.9 "--untargetable--" ### Cutscene 2 -505.2 "Transform" sync / 1[56]:[^:]*:Cruise Chaser:1A49:/ -513.0 "--sync--" sync / 1[56]:[^:]*:Cruise Chaser:1A4A:/ -517.8 "Blassty Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A69:/ -520.8 "Multifield x3" sync / 03:........:Multifield:/ -523.9 "Transform" sync / 1[56]:[^:]*:Cruise Chaser:1A4E:/ -529.9 "Perfect Landing" sync / 1[56]:[^:]*:Cruise Chaser:1A6B:/ +505.2 "Transform" Ability { id: "1A49", source: "Cruise Chaser" } +513.0 "--sync--" Ability { id: "1A4A", source: "Cruise Chaser" } +517.8 "Blassty Blaster" Ability { id: "1A69", source: "Cruise Chaser" } +520.8 "Multifield x3" AddedCombatant { name: "Multifield" } +523.9 "Transform" Ability { id: "1A4E", source: "Cruise Chaser" } +529.9 "Perfect Landing" Ability { id: "1A6B", source: "Cruise Chaser" } ### Final phase 532.7 "--targetable--" -551.3 "GA-100" sync / 1[56]:[^:]*:Cruise Chaser:1A76:/ -558.4 "Optical Sight (clock/out)" sync / 1[56]:[^:]*:Cruise Chaser:1A6[CD]:/ -565.5 "Super Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A71:/ -573.6 "Optical Sight (out/clock)" sync / 1[56]:[^:]*:Cruise Chaser:1A6[CD]:/ -581.7 "Super Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A71:/ -586.7 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -595.9 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -605.1 "Laser X Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7F:/ -612.2 "Optical Sight (bait)" sync / 1[56]:[^:]*:Cruise Chaser:1A6E:/ -617.4 "Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A6F:/ -622.3 "Super Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:1A71:/ -622.4 "--sync--" sync / 1[56]:[^:]*:Cruise Chaser:1A5A:/ -626.6 "--sync--" sync / 1[56]:[^:]*:Claster:1A5B:/ +551.3 "GA-100" Ability { id: "1A76", source: "Cruise Chaser" } +558.4 "Optical Sight (clock/out)" Ability { id: "1A6[CD]", source: "Cruise Chaser" } +565.5 "Super Hawk Blaster" Ability { id: "1A71", source: "Cruise Chaser" } +573.6 "Optical Sight (out/clock)" Ability { id: "1A6[CD]", source: "Cruise Chaser" } +581.7 "Super Hawk Blaster" Ability { id: "1A71", source: "Cruise Chaser" } +586.7 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +595.9 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +605.1 "Laser X Sword" Ability { id: "1A7F", source: "Cruise Chaser" } +612.2 "Optical Sight (bait)" Ability { id: "1A6E", source: "Cruise Chaser" } +617.4 "Hawk Blaster" Ability { id: "1A6F", source: "Cruise Chaser" } +622.3 "Super Hawk Blaster" Ability { id: "1A71", source: "Cruise Chaser" } +622.4 "--sync--" Ability { id: "1A5A", source: "Cruise Chaser" } +626.6 "--sync--" Ability { id: "1A5B", source: "Claster" } # Well, really everyone but the main tank. But that's too long to write out. -628.6 "Photon (everyone)" sync / 1[56]:[^:]*:Cruise Chaser:1A73:/ -633.1 "Assault Cannon" #sync / 1[56]:[^:]*:Claster:1A78:/ -635.8 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -640.3 "Assault Cannon" #sync / 1[56]:[^:]*:Claster:1A78:/ -647.4 "Assault Cannon" #sync / 1[56]:[^:]*:Claster:1A78:/ -651.8 "Propeller Wind" sync / 1[56]:[^:]*:Cruise Chaser:1A75:/ - -655.0 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A80:/ window 100,20 -657.0 "Limit Cut (numbers)" sync / 1[56]:[^:]*:Cruise Chaser:1A80:/ +628.6 "Photon (everyone)" Ability { id: "1A73", source: "Cruise Chaser" } +633.1 "Assault Cannon" #Ability { id: "1A78", source: "Claster" } +635.8 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +640.3 "Assault Cannon" #Ability { id: "1A78", source: "Claster" } +647.4 "Assault Cannon" #Ability { id: "1A78", source: "Claster" } +651.8 "Propeller Wind" Ability { id: "1A75", source: "Cruise Chaser" } + +655.0 "--sync--" StartsUsing { id: "1A80", source: "Cruise Chaser" } window 100,20 +657.0 "Limit Cut (numbers)" Ability { id: "1A80", source: "Cruise Chaser" } 657.6 "--invincible--" 661.2 "Markers" -669.9 "Sword 1" sync / 1[56]:[^:]*:Cruise Chaser:1A81:/ -671.0 "Charge 2" sync / 1[56]:[^:]*:Cruise Chaser:1A82:/ -673.2 "Sword 3" sync / 1[56]:[^:]*:Cruise Chaser:1A81:/ -674.3 "Charge 4" sync / 1[56]:[^:]*:Cruise Chaser:1A82:/ -676.5 "Sword 5" sync / 1[56]:[^:]*:Cruise Chaser:1A81:/ -677.6 "Charge 6" sync / 1[56]:[^:]*:Cruise Chaser:1A82:/ -679.8 "Sword 7" sync / 1[56]:[^:]*:Cruise Chaser:1A81:/ -680.9 "Charge 8" sync / 1[56]:[^:]*:Cruise Chaser:1A82:/ +669.9 "Sword 1" Ability { id: "1A81", source: "Cruise Chaser" } +671.0 "Charge 2" Ability { id: "1A82", source: "Cruise Chaser" } +673.2 "Sword 3" Ability { id: "1A81", source: "Cruise Chaser" } +674.3 "Charge 4" Ability { id: "1A82", source: "Cruise Chaser" } +676.5 "Sword 5" Ability { id: "1A81", source: "Cruise Chaser" } +677.6 "Charge 6" Ability { id: "1A82", source: "Cruise Chaser" } +679.8 "Sword 7" Ability { id: "1A81", source: "Cruise Chaser" } +680.9 "Charge 8" Ability { id: "1A82", source: "Cruise Chaser" } 683.0 "--targetable--" -693.2 "Laser X Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7F:/ -697.2 "E.D.D. Add" sync / 03:........:E\.D\.D\.:/ -705.4 "Photon (dps)" sync / 1[56]:[^:]*:Cruise Chaser:1A73:/ -714.6 "Left/Right Laser Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7[A9]:/ -722.7 "Photon (healer)" sync / 1[56]:[^:]*:Cruise Chaser:1A73:/ -730.8 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ +693.2 "Laser X Sword" Ability { id: "1A7F", source: "Cruise Chaser" } +697.2 "E.D.D. Add" AddedCombatant { name: "E\\.D\\.D\\." } +705.4 "Photon (dps)" Ability { id: "1A73", source: "Cruise Chaser" } +714.6 "Left/Right Laser Sword" Ability { id: "1A7[A9]", source: "Cruise Chaser" } +722.7 "Photon (healer)" Ability { id: "1A73", source: "Cruise Chaser" } +730.8 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } -733.7 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A80:/ window 70,20 -735.7 "Limit Cut (shield)" sync / 1[56]:[^:]*:Cruise Chaser:1A80:/ +733.7 "--sync--" StartsUsing { id: "1A80", source: "Cruise Chaser" } window 70,20 +735.7 "Limit Cut (shield)" Ability { id: "1A80", source: "Cruise Chaser" } 736.3 "--invincible--" 741.1 "Plasma Shield" 765.7 "Plasma Shield Enrage" -765.7 "--sync--" sync / 14:[^:]*:Cruise Chaser:1A83:/ window 40,30 -769.7 "Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:1A83:/ +765.7 "--sync--" StartsUsing { id: "1A83", source: "Cruise Chaser" } window 40,30 +769.7 "Blassty Charge" Ability { id: "1A83", source: "Cruise Chaser" } 771.8 "--targetable--" -779.7 "Spin Crusher" sync / 1[56]:[^:]*:Cruise Chaser:1A85:/ -789.7 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:1A84:/ -806.4 "Laser X Sword" sync / 1[56]:[^:]*:Cruise Chaser:1A7F:/ +779.7 "Spin Crusher" Ability { id: "1A85", source: "Cruise Chaser" } +789.7 "Whirlwind" Ability { id: "1A84", source: "Cruise Chaser" } +806.4 "Laser X Sword" Ability { id: "1A7F", source: "Cruise Chaser" } # If you destroy a tower with the first GA-100, this is enrage. # FIXME: Guessing that this loops, but unclear. -829.4 "GA-100" sync / 1[56]:[^:]*:Cruise Chaser:1A76:/ window 100,100 jump 551.3 +829.4 "GA-100" Ability { id: "1A76", source: "Cruise Chaser" } window 100,100 jump 551.3 836.5 "Optical Sight (clock/out)" 843.6 "Super Hawk Blaster" 851.7 "Optical Sight (out/clock)" diff --git a/ui/raidboss/data/03-hw/raid/a12n.txt b/ui/raidboss/data/03-hw/raid/a12n.txt index 2de398027d..6fe986045b 100644 --- a/ui/raidboss/data/03-hw/raid/a12n.txt +++ b/ui/raidboss/data/03-hw/raid/a12n.txt @@ -6,72 +6,72 @@ hideall "--sync--" # -ii 1AE2 1AE6 1AF1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.4 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ window 6.4,5 -14.5 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:1AE7:/ -22.6 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:1AE4:/ -31.8 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:1AE5:/ window 30,30 -36.0 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -44.1 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:1AE7:/ -51.2 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:1AE8:/ -53.3 "Blazing Scourge" sync / 1[56]:[^:]*:Alexander Prime:1AE9:/ -56.4 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.4 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } window 6.4,5 +14.5 "Mega Holy" Ability { id: "1AE7", source: "Alexander Prime" } +22.6 "Punishing Heat" Ability { id: "1AE4", source: "Alexander Prime" } +31.8 "Sacrament" Ability { id: "1AE5", source: "Alexander Prime" } window 30,30 +36.0 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +44.1 "Mega Holy" Ability { id: "1AE7", source: "Alexander Prime" } +51.2 "--sync--" Ability { id: "1AE8", source: "Alexander Prime" } +53.3 "Blazing Scourge" Ability { id: "1AE9", source: "Alexander Prime" } +56.4 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } # The intermission can be pushed early at ~75% HP. -61.4 "--untargetable--" sync / 22:........:Alexander Prime:........:Alexander Prime:00/ window 61.4,5 -161.9 "--sync--" sync / 1[56]:[^:]*:Alexander:1A18:/ window 161.9,5 -171.6 "Divine Judgment" sync / 1[56]:[^:]*:Alexander:1AEF:/ +61.4 "--untargetable--" NameToggle { name: "Alexander Prime", toggle: "00" } window 61.4,5 +161.9 "--sync--" Ability { id: "1A18", source: "Alexander" } window 161.9,5 +171.6 "Divine Judgment" Ability { id: "1AEF", source: "Alexander" } # Bridge block to Timegate. 182.4 "--targetable--" -185.4 "Chronofoil" sync / 1[56]:[^:]*:Alexander Prime:19FA:/ window 185.4,5 -199.6 "Temporal Stasis" sync / 1[56]:[^:]*:Alexander Prime:1AF0:/ +185.4 "Chronofoil" Ability { id: "19FA", source: "Alexander Prime" } window 185.4,5 +199.6 "Temporal Stasis" Ability { id: "1AF0", source: "Alexander Prime" } 203.7 "--untargetable--" -203.7 "Plaint Of Solidarity" sync / 1[56]:[^:]*:Alexander Prime:1AF2:/ +203.7 "Plaint Of Solidarity" Ability { id: "1AF2", source: "Alexander Prime" } 206.9 "--targetable--" -212.0 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:1AE5:/ -217.2 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -223.3 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:1AE7:/ -229.6 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:1AE4:/ -234.8 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -244.9 "Temporal Stasis" sync / 1[56]:[^:]*:Alexander Prime:1AF0:/ window 30,30 +212.0 "Sacrament" Ability { id: "1AE5", source: "Alexander Prime" } +217.2 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +223.3 "Mega Holy" Ability { id: "1AE7", source: "Alexander Prime" } +229.6 "Punishing Heat" Ability { id: "1AE4", source: "Alexander Prime" } +234.8 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +244.9 "Temporal Stasis" Ability { id: "1AF0", source: "Alexander Prime" } window 30,30 249.0 "--untargetable--" -249.0 "Plaint Of Solidarity" sync / 1[56]:[^:]*:Alexander Prime:1AF2:/ +249.0 "Plaint Of Solidarity" Ability { id: "1AF2", source: "Alexander Prime" } 252.2 "--targetable--" -257.3 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:1AE5:/ -266.5 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:1AE8:/ -268.7 "Blazing Scourge" sync / 1[56]:[^:]*:Alexander Prime:1AE9:/ -274.6 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:1AE7:/ -278.8 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ +257.3 "Sacrament" Ability { id: "1AE5", source: "Alexander Prime" } +266.5 "--sync--" Ability { id: "1AE8", source: "Alexander Prime" } +268.7 "Blazing Scourge" Ability { id: "1AE9", source: "Alexander Prime" } +274.6 "Mega Holy" Ability { id: "1AE7", source: "Alexander Prime" } +278.8 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } # Timegates seem to push at 50% HP. # Push timings during Timegate seem inconsistent, so we include plenty of windows. # We don't sync to the 22 log line here because Alexander uses it twice in the bridge block. 282.8 "--untargetable--" 286.1 "--targetable--" -290.1 "Timegate" sync / 1[56]:[^:]*:Alexander Prime:1A03:/ window 290,5 -309.7 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -318.8 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:1AE4:/ -325.9 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:1AE8:/ -328.0 "Blazing Scourge" sync / 1[56]:[^:]*:Alexander Prime:1AE9:/ window 30,5 -332.9 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:1AE5:/ -342.1 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:1AE7:/ window 50,5 -346.2 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -354.3 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:1AE4:/ -369.5 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:1AEA:/ -374.6 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:1AE8:/ -375.5 "Gravitational Anomaly" sync / 1[56]:[^:]*:Alexander Prime:1AEB:/ window 100,10 -376.8 "Blazing Scourge" sync / 1[56]:[^:]*:Alexander Prime:1AE9:/ -378.8 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -386.9 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:1AE7:/ -395.0 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:1AE4:/ -399.2 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -408.3 "Temporal Stasis" sync / 1[56]:[^:]*:Alexander Prime:1AF0:/ -412.4 "Plaint Of Solidarity" sync / 1[56]:[^:]*:Alexander Prime:1AF2:/ -415.4 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:1AEA:/ -421.4 "Gravitational Anomaly" sync / 1[56]:[^:]*:Alexander Prime:1AEB:/ -422.6 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:1AE5:/ -429.8 "Incinerating Heat" sync / 1[56]:[^:]*:Alexander Prime:1AF3:/ +290.1 "Timegate" Ability { id: "1A03", source: "Alexander Prime" } window 290,5 +309.7 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +318.8 "Punishing Heat" Ability { id: "1AE4", source: "Alexander Prime" } +325.9 "--sync--" Ability { id: "1AE8", source: "Alexander Prime" } +328.0 "Blazing Scourge" Ability { id: "1AE9", source: "Alexander Prime" } window 30,5 +332.9 "Sacrament" Ability { id: "1AE5", source: "Alexander Prime" } +342.1 "Mega Holy" Ability { id: "1AE7", source: "Alexander Prime" } window 50,5 +346.2 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +354.3 "Punishing Heat" Ability { id: "1AE4", source: "Alexander Prime" } +369.5 "--sync--" Ability { id: "1AEA", source: "Alexander Prime" } +374.6 "--sync--" Ability { id: "1AE8", source: "Alexander Prime" } +375.5 "Gravitational Anomaly" Ability { id: "1AEB", source: "Alexander Prime" } window 100,10 +376.8 "Blazing Scourge" Ability { id: "1AE9", source: "Alexander Prime" } +378.8 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +386.9 "Mega Holy" Ability { id: "1AE7", source: "Alexander Prime" } +395.0 "Punishing Heat" Ability { id: "1AE4", source: "Alexander Prime" } +399.2 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +408.3 "Temporal Stasis" Ability { id: "1AF0", source: "Alexander Prime" } +412.4 "Plaint Of Solidarity" Ability { id: "1AF2", source: "Alexander Prime" } +415.4 "--sync--" Ability { id: "1AEA", source: "Alexander Prime" } +421.4 "Gravitational Anomaly" Ability { id: "1AEB", source: "Alexander Prime" } +422.6 "Sacrament" Ability { id: "1AE5", source: "Alexander Prime" } +429.8 "Incinerating Heat" Ability { id: "1AF3", source: "Alexander Prime" } # Summon Alexander seems to push at 30% HP. # It appears that Alexander has to complete at least a part of the Timegate section first? @@ -79,21 +79,21 @@ hideall "--sync--" # Enrage happens after loop 4 if there have been no phase pushes. # Whether this is the case with pushes is unknown. -436.0 "Summon Alexander" sync / 1[56]:[^:]*:Alexander Prime:1A0A:/ window 412.8,5 -446.2 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -454.3 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:1AE7:/ -461.2 "Communion x4" # sync / 1[56]:[^:]*:Alexander:1AFC:/ -470.6 "Temporal Stasis" sync / 1[56]:[^:]*:Alexander Prime:1AF0:/ window 30,30 +436.0 "Summon Alexander" Ability { id: "1A0A", source: "Alexander Prime" } window 412.8,5 +446.2 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +454.3 "Mega Holy" Ability { id: "1AE7", source: "Alexander Prime" } +461.2 "Communion x4" # Ability { id: "1AFC", source: "Alexander" } +470.6 "Temporal Stasis" Ability { id: "1AF0", source: "Alexander Prime" } window 30,30 474.7 "--untargetable--" -474.7 "Plaint Of Solidarity" sync / 1[56]:[^:]*:Alexander Prime:1AF2:/ +474.7 "Plaint Of Solidarity" Ability { id: "1AF2", source: "Alexander Prime" } 477.9 "--targetable--" -481.4 "Communion x4" # sync / 1[56]:[^:]*:Alexander:1AFC:/ -483.0 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:1AE5:/ -499.2 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:1AE4:/ window 30,30 -503.4 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ -511.5 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:1AE7:/ +481.4 "Communion x4" # Ability { id: "1AFC", source: "Alexander" } +483.0 "Sacrament" Ability { id: "1AE5", source: "Alexander Prime" } +499.2 "Punishing Heat" Ability { id: "1AE4", source: "Alexander Prime" } window 30,30 +503.4 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } +511.5 "Mega Holy" Ability { id: "1AE7", source: "Alexander Prime" } -521.7 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:1AE3:/ jump 446.2 +521.7 "Divine Spear" Ability { id: "1AE3", source: "Alexander Prime" } jump 446.2 529.8 "Mega Holy" 536.7 "Communion x4" 546.1 "Temporal Stasis" diff --git a/ui/raidboss/data/03-hw/raid/a12s.txt b/ui/raidboss/data/03-hw/raid/a12s.txt index 42247e9c10..c8a2143d9a 100644 --- a/ui/raidboss/data/03-hw/raid/a12s.txt +++ b/ui/raidboss/data/03-hw/raid/a12s.txt @@ -8,20 +8,20 @@ hideall "--Reset--" hideall "--sync--" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ window 7,10 -14.1 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:19E9:/ -17.3 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ -23.4 "Blazing Scourge" sync / 1[56]:[^:]*:Alexander Prime:19EF:/ duration 6.3 -30.5 "Incinerating Heat" sync / 1[56]:[^:]*:Alexander Prime:19EA:/ -35.7 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:19EE:/ -40.8 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:19EE:/ -45.9 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:19F1:/ -51.9 "Gravitational Anomaly" sync / 1[56]:[^:]*:Alexander Prime:19F2:/ -54.0 "(Radiant?) Sacrament" sync / 1[56]:[^:]*:Alexander Prime:19E[BD]:/ -58.1 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ -65.2 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:19E9:/ -67.2 "--untargetable--" sync / 22:........:Alexander Prime:........:Alexander Prime:00/ window 70,5 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } window 7,10 +14.1 "Punishing Heat" Ability { id: "19E9", source: "Alexander Prime" } +17.3 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } +23.4 "Blazing Scourge" Ability { id: "19EF", source: "Alexander Prime" } duration 6.3 +30.5 "Incinerating Heat" Ability { id: "19EA", source: "Alexander Prime" } +35.7 "Mega Holy" Ability { id: "19EE", source: "Alexander Prime" } +40.8 "Mega Holy" Ability { id: "19EE", source: "Alexander Prime" } +45.9 "--sync--" Ability { id: "19F1", source: "Alexander Prime" } +51.9 "Gravitational Anomaly" Ability { id: "19F2", source: "Alexander Prime" } +54.0 "(Radiant?) Sacrament" Ability { id: "19E[BD]", source: "Alexander Prime" } +58.1 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } +65.2 "Punishing Heat" Ability { id: "19E9", source: "Alexander Prime" } +67.2 "--untargetable--" NameToggle { name: "Alexander Prime", toggle: "00" } window 70,5 ### Phase 2: Adds Phase (79% push) @@ -29,131 +29,131 @@ hideall "--sync--" 70.4 "Arrhidaeus's Lanner x8" 105.5 "The General's Wing x4" -113.7 "--sync--" sync / 14:[^:]*:The General's Wing:19F7:/ window 114,3 -116.7 "Almost Holy" sync / 1[56]:[^:]*:The General's Wing:19F7:/ -124.9 "Almost Holy" sync / 1[56]:[^:]*:The General's Wing:19F7:/ -133.2 "Almost Holy" sync / 1[56]:[^:]*:The General's Wing:19F7:/ +113.7 "--sync--" StartsUsing { id: "19F7", source: "The General's Wing" } window 114,3 +116.7 "Almost Holy" Ability { id: "19F7", source: "The General's Wing" } +124.9 "Almost Holy" Ability { id: "19F7", source: "The General's Wing" } +133.2 "Almost Holy" Ability { id: "19F7", source: "The General's Wing" } -139.2 "The General's Might (W)" sync / 03:........:The General's Might:/ window 150,5 +139.2 "The General's Might (W)" AddedCombatant { name: "The General's Might" } window 150,5 139.2 "The General's Time (E)" -141.6 "Almost Holy?" sync / 1[56]:[^:]*:The General's Wing:19F7:/ -150.4 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ window 151,3 -154.4 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -158.7 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -163.7 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -167.0 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -172.9 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -175.3 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -182.2 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -183.6 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -191.5 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -191.9 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -200.2 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -200.8 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -208.5 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -210.1 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -216.8 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -219.4 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -225.1 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -228.8 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -233.4 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -238.1 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -241.7 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -247.4 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -250.0 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ -256.7 "Half Gravity" sync / 1[56]:[^:]*:The General's Time:19F5:/ -258.3 "Smash" sync / 1[56]:[^:]*:The General's Might:19F3:/ +141.6 "Almost Holy?" Ability { id: "19F7", source: "The General's Wing" } +150.4 "Smash" Ability { id: "19F3", source: "The General's Might" } window 151,3 +154.4 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +158.7 "Smash" Ability { id: "19F3", source: "The General's Might" } +163.7 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +167.0 "Smash" Ability { id: "19F3", source: "The General's Might" } +172.9 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +175.3 "Smash" Ability { id: "19F3", source: "The General's Might" } +182.2 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +183.6 "Smash" Ability { id: "19F3", source: "The General's Might" } +191.5 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +191.9 "Smash" Ability { id: "19F3", source: "The General's Might" } +200.2 "Smash" Ability { id: "19F3", source: "The General's Might" } +200.8 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +208.5 "Smash" Ability { id: "19F3", source: "The General's Might" } +210.1 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +216.8 "Smash" Ability { id: "19F3", source: "The General's Might" } +219.4 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +225.1 "Smash" Ability { id: "19F3", source: "The General's Might" } +228.8 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +233.4 "Smash" Ability { id: "19F3", source: "The General's Might" } +238.1 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +241.7 "Smash" Ability { id: "19F3", source: "The General's Might" } +247.4 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +250.0 "Smash" Ability { id: "19F3", source: "The General's Might" } +256.7 "Half Gravity" Ability { id: "19F5", source: "The General's Time" } +258.3 "Smash" Ability { id: "19F3", source: "The General's Might" } ### Phase 3: Temporal Stasis -265.5 "--sync--" sync / 1[56]:[^:]*:Alexander:1A18:/ window 300,300 -275.2 "Divine Judgment" sync / 1[56]:[^:]*:Alexander:19F9:/ +265.5 "--sync--" Ability { id: "1A18", source: "Alexander" } window 300,300 +275.2 "Divine Judgment" Ability { id: "19F9", source: "Alexander" } 286.0 "--targetable--" -289.0 "Chronofoil" sync / 1[56]:[^:]*:Alexander Prime:19FA:/ +289.0 "Chronofoil" Ability { id: "19FA", source: "Alexander Prime" } -308.1 "Temporal Stasis" sync / 1[56]:[^:]*:Alexander Prime:19FB:/ window 350,10 +308.1 "Temporal Stasis" Ability { id: "19FB", source: "Alexander Prime" } window 350,10 309.1 "--timestop--" duration 9 -316.2 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:19F1:/ -322.2 "Gravitational Anomaly" sync / 1[56]:[^:]*:Alexander Prime:19F2:/ -324.3 "(Radiant?) Sacrament" sync / 1[56]:[^:]*:Alexander Prime:19E[BD]:/ -329.4 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:19EE:/ -335.6 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ -342.7 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:19E9:/ -345.9 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ - -361.1 "Temporal Stasis" sync / 1[56]:[^:]*:Alexander Prime:19FB:/ window 30,30 +316.2 "--sync--" Ability { id: "19F1", source: "Alexander Prime" } +322.2 "Gravitational Anomaly" Ability { id: "19F2", source: "Alexander Prime" } +324.3 "(Radiant?) Sacrament" Ability { id: "19E[BD]", source: "Alexander Prime" } +329.4 "Mega Holy" Ability { id: "19EE", source: "Alexander Prime" } +335.6 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } +342.7 "Punishing Heat" Ability { id: "19E9", source: "Alexander Prime" } +345.9 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } + +361.1 "Temporal Stasis" Ability { id: "19FB", source: "Alexander Prime" } window 30,30 362.1 "--timestop--" duration 9 -369.2 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:19F1:/ -375.2 "Gravitational Anomaly" sync / 1[56]:[^:]*:Alexander Prime:19F2:/ -377.3 "(Radiant?) Sacrament" sync / 1[56]:[^:]*:Alexander Prime:19E[BD]:/ -382.4 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:19EE:/ -388.5 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ -395.6 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:19E9:/ -398.8 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ +369.2 "--sync--" Ability { id: "19F1", source: "Alexander Prime" } +375.2 "Gravitational Anomaly" Ability { id: "19F2", source: "Alexander Prime" } +377.3 "(Radiant?) Sacrament" Ability { id: "19E[BD]", source: "Alexander Prime" } +382.4 "Mega Holy" Ability { id: "19EE", source: "Alexander Prime" } +388.5 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } +395.6 "Punishing Heat" Ability { id: "19E9", source: "Alexander Prime" } +398.8 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } ### Phase 4: Timegates, Judgment Crystals # FIXME: Add targetable/untargetable precise times here -409.1 "Timegate" sync / 1[56]:[^:]*:Alexander Prime:1A03:/ window 450,30 +409.1 "Timegate" Ability { id: "1A03", source: "Alexander Prime" } window 450,30 # FIXME: make this precise 415.1 "--timegates active--" -430.2 "Judgment Crystal 1" sync / 1[56]:[^:]*:Alexander Prime:1A04:/ -443.8 "Judgment Crystal 2" sync / 1[56]:[^:]*:Alexander Prime:1A04:/ -451.9 "(Radiant?) Sacrament" sync / 1[56]:[^:]*:Alexander Prime:19E[BD]:/ -464.6 "Judgment Crystal 3" sync / 1[56]:[^:]*:Alexander Prime:1A04:/ -470.7 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:19E9:/ -484.3 "Judgment Crystal 4" sync / 1[56]:[^:]*:Alexander Prime:1A04:/ +430.2 "Judgment Crystal 1" Ability { id: "1A04", source: "Alexander Prime" } +443.8 "Judgment Crystal 2" Ability { id: "1A04", source: "Alexander Prime" } +451.9 "(Radiant?) Sacrament" Ability { id: "19E[BD]", source: "Alexander Prime" } +464.6 "Judgment Crystal 3" Ability { id: "1A04", source: "Alexander Prime" } +470.7 "Punishing Heat" Ability { id: "19E9", source: "Alexander Prime" } +484.3 "Judgment Crystal 4" Ability { id: "1A04", source: "Alexander Prime" } ### Phase 5: Inception 501.4 "--untargetable--" -501.4 "Inception" sync / 1[56]:[^:]*:Alexander Prime:1A08:/ window 540,30 -507.6 "Tetrashatter" sync / 1[56]:[^:]*:Judgment Crystal:1A06:/ +501.4 "Inception" Ability { id: "1A08", source: "Alexander Prime" } window 540,30 +507.6 "Tetrashatter" Ability { id: "1A06", source: "Judgment Crystal" } 508.7 "--targetable--" -508.7 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:1A09:/ -516.8 "Radiant Sacrament" sync / 1[56]:[^:]*:Alexander Prime:19ED:/ -527.9 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:19E9:/ -532.1 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ -539.2 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:19F1:/ -545.2 "Gravitational Anomaly" sync / 1[56]:[^:]*:Alexander Prime:19F2:/ -546.4 "Incinerating Heat" sync / 1[56]:[^:]*:Alexander Prime:19EA:/ +508.7 "Sacrament" Ability { id: "1A09", source: "Alexander Prime" } +516.8 "Radiant Sacrament" Ability { id: "19ED", source: "Alexander Prime" } +527.9 "Punishing Heat" Ability { id: "19E9", source: "Alexander Prime" } +532.1 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } +539.2 "--sync--" Ability { id: "19F1", source: "Alexander Prime" } +545.2 "Gravitational Anomaly" Ability { id: "19F2", source: "Alexander Prime" } +546.4 "Incinerating Heat" Ability { id: "19EA", source: "Alexander Prime" } 557.6 "--untargetable--" -557.6 "Inception" sync / 1[56]:[^:]*:Alexander Prime:1A08:/ window 30,30 -563.7 "Tetrashatter" sync / 1[56]:[^:]*:Judgment Crystal:1A06:/ +557.6 "Inception" Ability { id: "1A08", source: "Alexander Prime" } window 30,30 +563.7 "Tetrashatter" Ability { id: "1A06", source: "Judgment Crystal" } 564.9 "--targetable--" -564.9 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:1A09:/ -573.0 "Radiant Sacrament" sync / 1[56]:[^:]*:Alexander Prime:19ED:/ -584.1 "Punishing Heat" sync / 1[56]:[^:]*:Alexander Prime:19E9:/ -588.3 "Divine Spear" sync / 1[56]:[^:]*:Alexander Prime:19E8:/ -595.4 "--sync--" sync / 1[56]:[^:]*:Alexander Prime:19F1:/ -601.4 "Gravitational Anomaly" sync / 1[56]:[^:]*:Alexander Prime:19F2:/ -602.6 "Incinerating Heat" sync / 1[56]:[^:]*:Alexander Prime:19EA:/ +564.9 "Sacrament" Ability { id: "1A09", source: "Alexander Prime" } +573.0 "Radiant Sacrament" Ability { id: "19ED", source: "Alexander Prime" } +584.1 "Punishing Heat" Ability { id: "19E9", source: "Alexander Prime" } +588.3 "Divine Spear" Ability { id: "19E8", source: "Alexander Prime" } +595.4 "--sync--" Ability { id: "19F1", source: "Alexander Prime" } +601.4 "Gravitational Anomaly" Ability { id: "19F2", source: "Alexander Prime" } +602.6 "Incinerating Heat" Ability { id: "19EA", source: "Alexander Prime" } ### Phase 6: Voids of Repentence -611.8 "Summon Alexander" sync / 1[56]:[^:]*:Alexander Prime:1A0A:/ window 650,10 -620.9 "Void Of Repentance" sync / 1[56]:[^:]*:Alexander Prime:1A0E:/ -632.0 "Confession 1" sync / 1[56]:[^:]*:Alexander Prime:1A12:/ window 2,2 -636.0 "Confession 2" sync / 1[56]:[^:]*:Alexander Prime:1A12:/ window 2,2 -640.0 "Confession 3" sync / 1[56]:[^:]*:Alexander Prime:1A12:/ window 2,2 -643.1 "Incinerating Heat" sync / 1[56]:[^:]*:Alexander Prime:19EA:/ window 30,30 -648.9 "Holy Bleed" sync / 1[56]:[^:]*:Alexander:1A13:/ -659.3 "Holy Scourge x4" sync / 1[56]:[^:]*:Alexander Prime:1A0B:/ duration 5.9 -667.5 "Chastening Heat" sync / 1[56]:[^:]*:Alexander Prime:1A0D:/ +611.8 "Summon Alexander" Ability { id: "1A0A", source: "Alexander Prime" } window 650,10 +620.9 "Void Of Repentance" Ability { id: "1A0E", source: "Alexander Prime" } +632.0 "Confession 1" Ability { id: "1A12", source: "Alexander Prime" } window 2,2 +636.0 "Confession 2" Ability { id: "1A12", source: "Alexander Prime" } window 2,2 +640.0 "Confession 3" Ability { id: "1A12", source: "Alexander Prime" } window 2,2 +643.1 "Incinerating Heat" Ability { id: "19EA", source: "Alexander Prime" } window 30,30 +648.9 "Holy Bleed" Ability { id: "1A13", source: "Alexander" } +659.3 "Holy Scourge x4" Ability { id: "1A0B", source: "Alexander Prime" } duration 5.9 +667.5 "Chastening Heat" Ability { id: "1A0D", source: "Alexander Prime" } # loop until enrage -673.7 "Void Of Repentance" sync / 1[56]:[^:]*:Alexander Prime:1A0E:/ -679.4 "Communion x6" sync / 1[56]:[^:]*:Alexander:1A15:/ duration 13 window 2,2 -684.8 "Confession 1" sync / 1[56]:[^:]*:Alexander Prime:1A12:/ window 2,2 -686.0 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:19EB:/ -688.8 "Confession 2" sync / 1[56]:[^:]*:Alexander Prime:1A12:/ window 2,2 -692.8 "Confession 3" sync / 1[56]:[^:]*:Alexander Prime:1A12:/ window 2,2 -695.9 "Incinerating Heat" sync / 1[56]:[^:]*:Alexander Prime:19EA:/ window 30,30 -701.7 "Holy Bleed" sync / 1[56]:[^:]*:Alexander:1A13:/ -712.1 "Holy Scourge x4" sync / 1[56]:[^:]*:Alexander Prime:1A0B:/ duration 5.9 -720.3 "Chastening Heat" sync / 1[56]:[^:]*:Alexander Prime:1A0D:/ - -726.5 "Void Of Repentance" sync / 1[56]:[^:]*:Alexander Prime:1A0E:/ window 40,40 jump 673.7 +673.7 "Void Of Repentance" Ability { id: "1A0E", source: "Alexander Prime" } +679.4 "Communion x6" Ability { id: "1A15", source: "Alexander" } duration 13 window 2,2 +684.8 "Confession 1" Ability { id: "1A12", source: "Alexander Prime" } window 2,2 +686.0 "Sacrament" Ability { id: "19EB", source: "Alexander Prime" } +688.8 "Confession 2" Ability { id: "1A12", source: "Alexander Prime" } window 2,2 +692.8 "Confession 3" Ability { id: "1A12", source: "Alexander Prime" } window 2,2 +695.9 "Incinerating Heat" Ability { id: "19EA", source: "Alexander Prime" } window 30,30 +701.7 "Holy Bleed" Ability { id: "1A13", source: "Alexander" } +712.1 "Holy Scourge x4" Ability { id: "1A0B", source: "Alexander Prime" } duration 5.9 +720.3 "Chastening Heat" Ability { id: "1A0D", source: "Alexander Prime" } + +726.5 "Void Of Repentance" Ability { id: "1A0E", source: "Alexander Prime" } window 40,40 jump 673.7 732.2 "Communion x6" 737.6 "Confession 1" 738.8 "Sacrament" diff --git a/ui/raidboss/data/03-hw/raid/a1s.txt b/ui/raidboss/data/03-hw/raid/a1s.txt index 340ac1252a..4a94544f02 100644 --- a/ui/raidboss/data/03-hw/raid/a1s.txt +++ b/ui/raidboss/data/03-hw/raid/a1s.txt @@ -10,40 +10,40 @@ hideall "--sync--" ### Faust # -p E3C:1006 -ii E3E # Machinery Bay 44 will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:65F:/ window 1000,0 -1006.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ window 1006,5 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "65F" } window 1000,0 +1006.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } window 1006,5 1009.7 "Sturm Doll Add" -1016.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ -1019.0 "Pressure Increase 1" sync / 1[56]:[^:]*:Faust:E3D:/ -1026.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ +1016.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } +1019.0 "Pressure Increase 1" Ability { id: "E3D", source: "Faust" } +1026.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } 1029.7 "Sturm Doll Add" -1036.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ -1039.0 "Pressure Increase 2" sync / 1[56]:[^:]*:Faust:E3D:/ -1046.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ +1036.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } +1039.0 "Pressure Increase 2" Ability { id: "E3D", source: "Faust" } +1046.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } 1049.7 "Sturm Doll Add" -1056.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ -1059.0 "Pressure Increase 3" sync / 1[56]:[^:]*:Faust:E3D:/ -1066.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ +1056.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } +1059.0 "Pressure Increase 3" Ability { id: "E3D", source: "Faust" } +1066.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } 1069.7 "Sturm Doll Add" -1076.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ -1079.0 "Pressure Increase 4" sync / 1[56]:[^:]*:Faust:E3D:/ -1086.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ +1076.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } +1079.0 "Pressure Increase 4" Ability { id: "E3D", source: "Faust" } +1086.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } 1069.7 "Sturm Doll Add" -1096.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ -1099.0 "Pressure Increase 5" sync / 1[56]:[^:]*:Faust:E3D:/ -1106.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ +1096.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } +1099.0 "Pressure Increase 5" Ability { id: "E3D", source: "Faust" } +1106.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } 1109.7 "Sturm Doll Add" -1116.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ -1119.0 "Pressure Increase 6" sync / 1[56]:[^:]*:Faust:E3D:/ -1126.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ +1116.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } +1119.0 "Pressure Increase 6" Ability { id: "E3D", source: "Faust" } +1126.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } 1129.7 "Sturm Doll Add" -1136.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ -1139.0 "Pressure Increase 7" sync / 1[56]:[^:]*:Faust:E3D:/ -1146.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:E3C:/ +1136.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } +1139.0 "Pressure Increase 7" Ability { id: "E3D", source: "Faust" } +1146.0 "Kaltstrahl" Ability { id: "E3C", source: "Faust" } 1149.7 "Sturm Doll Add" -1152.0 "Pressure Increase 16" sync / 1[56]:[^:]*:Faust:E7E:/ -1159.0 "Kaltstrahl Enrage" sync / 1[56]:[^:]*:Faust:E7D:/ -1164.0 "Kaltstrahl Enrage" sync / 1[56]:[^:]*:Faust:E7D:/ +1152.0 "Pressure Increase 16" Ability { id: "E7E", source: "Faust" } +1159.0 "Kaltstrahl Enrage" Ability { id: "E7D", source: "Faust" } +1164.0 "Kaltstrahl Enrage" Ability { id: "E7D", source: "Faust" } # etc @@ -53,61 +53,61 @@ hideall "--sync--" # -ic "Oppressor 0.5" # Hangar 8 will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:660:/ window 2000,0 -2007.0 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ window 2010,5 -2011.1 "Gunnery Pod" sync / 1[56]:[^:]*:Oppressor:E41:/ -2016.2 "Hydrothermal Missile" sync / 1[56]:[^:]*:Oppressor:E43:/ duration 8 -2018.3 "Gunnery Pod" sync / 1[56]:[^:]*:Oppressor:E41:/ -2024.1 "Photon Spaser" sync / 1[56]:[^:]*:Oppressor:E42:/ -2028.2 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ -2036.3 "Resin Bomb" sync / 1[56]:[^:]*:Oppressor:E46:/ -2038.4 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ -2044.2 "Photon Spaser" sync / 1[56]:[^:]*:Oppressor:E42:/ -2046.3 "Gunnery Pod" sync / 1[56]:[^:]*:Oppressor:E41:/ -2049.1 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ -2054.2 "Emergency Deployment" sync / 1[56]:[^:]*:Oppressor:E45:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "660" } window 2000,0 +2007.0 "Royal Fount" Ability { id: "E40", source: "Oppressor" } window 2010,5 +2011.1 "Gunnery Pod" Ability { id: "E41", source: "Oppressor" } +2016.2 "Hydrothermal Missile" Ability { id: "E43", source: "Oppressor" } duration 8 +2018.3 "Gunnery Pod" Ability { id: "E41", source: "Oppressor" } +2024.1 "Photon Spaser" Ability { id: "E42", source: "Oppressor" } +2028.2 "Royal Fount" Ability { id: "E40", source: "Oppressor" } +2036.3 "Resin Bomb" Ability { id: "E46", source: "Oppressor" } +2038.4 "Royal Fount" Ability { id: "E40", source: "Oppressor" } +2044.2 "Photon Spaser" Ability { id: "E42", source: "Oppressor" } +2046.3 "Gunnery Pod" Ability { id: "E41", source: "Oppressor" } +2049.1 "Royal Fount" Ability { id: "E40", source: "Oppressor" } +2054.2 "Emergency Deployment" Ability { id: "E45", source: "Oppressor" } 2054.5 "--targetable--" -2061.3 "Hydrothermal Missile" sync / 1[56]:[^:]*:Oppressor:E43:/ duration 8 -2063.4 "Gunnery Pod" sync / 1[56]:[^:]*:Oppressor:E41:/ -2066.5 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ -2069.6 "Gunnery Pod" sync / 1[56]:[^:]*:Oppressor:E41:/ -2075.2 "Photon Spaser" sync / 1[56]:[^:]*:Oppressor:E42:/ -2077.3 "Gunnery Pod" #sync / 1[56]:[^:]*:Oppressor:E41:/ -2079.4 "Gunnery Pod" #sync / 1[56]:[^:]*:Oppressor:E41:/ -2083.5 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ -2085.6 "Distress Beacon" sync / 1[56]:[^:]*:Oppressor:E48:/ +2061.3 "Hydrothermal Missile" Ability { id: "E43", source: "Oppressor" } duration 8 +2063.4 "Gunnery Pod" Ability { id: "E41", source: "Oppressor" } +2066.5 "Royal Fount" Ability { id: "E40", source: "Oppressor" } +2069.6 "Gunnery Pod" Ability { id: "E41", source: "Oppressor" } +2075.2 "Photon Spaser" Ability { id: "E42", source: "Oppressor" } +2077.3 "Gunnery Pod" #Ability { id: "E41", source: "Oppressor" } +2079.4 "Gunnery Pod" #Ability { id: "E41", source: "Oppressor" } +2083.5 "Royal Fount" Ability { id: "E40", source: "Oppressor" } +2085.6 "Distress Beacon" Ability { id: "E48", source: "Oppressor" } 2096.3 "--targetable--" -2106.4 "3000-Tonze Missile" sync / 1[56]:[^:]*:Oppressor:E4B:/ -2112.6 "Gunnery Pod" sync / 1[56]:[^:]*:Oppressor:E41:/ -2117.7 "Emergency Deployment" sync / 1[56]:[^:]*:Oppressor:E45:/ +2106.4 "3000-Tonze Missile" Ability { id: "E4B", source: "Oppressor" } +2112.6 "Gunnery Pod" Ability { id: "E41", source: "Oppressor" } +2117.7 "Emergency Deployment" Ability { id: "E45", source: "Oppressor" } 2118.0 "--targetable--" -2125.8 "Resin Bomb" sync / 1[56]:[^:]*:Oppressor:E46:/ -2128.0 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ -2133.7 "Photon Spaser" sync / 1[56]:[^:]*:Oppressor:E42:/ -2136.9 "Gunnery Pod" sync / 1[56]:[^:]*:Oppressor:E41:/ -2143.0 "Hydrothermal Missile" sync / 1[56]:[^:]*:Oppressor:E43:/ -2148.2 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ -2156.3 "Hypercompressed Plasma" sync / 1[56]:[^:]*:Oppressor:E4A:/ -2159.9 "Missile Impact" #sync / 1[56]:[^:]*:3000-Tonze Missile:E4[DE]:/ +2125.8 "Resin Bomb" Ability { id: "E46", source: "Oppressor" } +2128.0 "Royal Fount" Ability { id: "E40", source: "Oppressor" } +2133.7 "Photon Spaser" Ability { id: "E42", source: "Oppressor" } +2136.9 "Gunnery Pod" Ability { id: "E41", source: "Oppressor" } +2143.0 "Hydrothermal Missile" Ability { id: "E43", source: "Oppressor" } +2148.2 "Royal Fount" Ability { id: "E40", source: "Oppressor" } +2156.3 "Hypercompressed Plasma" Ability { id: "E4A", source: "Oppressor" } +2159.9 "Missile Impact" #Ability { id: "E4[DE]", source: "3000-Tonze Missile" } -2166.5 "Photon Spaser" sync / 1[56]:[^:]*:Oppressor:E42:/ -2173.7 "Gunnery Pod" sync / 1[56]:[^:]*:Oppressor:E41:/ -2182.8 "Royal Fount" sync / 1[56]:[^:]*:Oppressor:E40:/ +2166.5 "Photon Spaser" Ability { id: "E42", source: "Oppressor" } +2173.7 "Gunnery Pod" Ability { id: "E41", source: "Oppressor" } +2182.8 "Royal Fount" Ability { id: "E40", source: "Oppressor" } 2188.9 "--untargetable--" -2189.0 "Emergency Liftoff" sync / 1[56]:[^:]*:Oppressor:E4F:/ -2203.7 "Resin Bomb 1" #sync / 1[56]:[^:]*:Oppressor 0.5:E52:/ -2204.7 "Resin Bomb 2" #sync / 1[56]:[^:]*:Oppressor:E52:/ -2205.7 "Resin Bomb 3" #sync / 1[56]:[^:]*:Oppressor:E52:/ -2206.7 "Resin Bomb 4" #sync / 1[56]:[^:]*:Oppressor 0.5:E52:/ -2207.7 "Resin Bomb 5" #sync / 1[56]:[^:]*:Oppressor:E52:/ -2208.7 "Resin Bomb 6" #sync / 1[56]:[^:]*:Oppressor:E52:/ -2209.7 "Resin Bomb 7" #sync / 1[56]:[^:]*:Oppressor 0.5:E52:/ -2210.7 "Resin Bomb 8" #sync / 1[56]:[^:]*:Oppressor 0.5:E52:/ -2210.7 "Quick Landing" sync / 1[56]:[^:]*:Oppressor:E51:/ +2189.0 "Emergency Liftoff" Ability { id: "E4F", source: "Oppressor" } +2203.7 "Resin Bomb 1" #Ability { id: "E52", source: "Oppressor 0.5" } +2204.7 "Resin Bomb 2" #Ability { id: "E52", source: "Oppressor" } +2205.7 "Resin Bomb 3" #Ability { id: "E52", source: "Oppressor" } +2206.7 "Resin Bomb 4" #Ability { id: "E52", source: "Oppressor 0.5" } +2207.7 "Resin Bomb 5" #Ability { id: "E52", source: "Oppressor" } +2208.7 "Resin Bomb 6" #Ability { id: "E52", source: "Oppressor" } +2209.7 "Resin Bomb 7" #Ability { id: "E52", source: "Oppressor 0.5" } +2210.7 "Resin Bomb 8" #Ability { id: "E52", source: "Oppressor 0.5" } +2210.7 "Quick Landing" Ability { id: "E51", source: "Oppressor" } 2215.8 "--targetable--" -2226.7 "3000-Tonze Missile" sync / 1[56]:[^:]*:Oppressor:E4B:/ window 100,100 jump 2106.4 +2226.7 "3000-Tonze Missile" Ability { id: "E4B", source: "Oppressor" } window 100,100 jump 2106.4 2232.9 "Gunnery Pod" 2238.0 "Emergency Deployment" 2238.3 "--targetable--" @@ -123,6 +123,6 @@ hideall "--sync--" ## Enrage -3000.0 "--sync--" sync / 14:[^:]*:Oppressor:E49:/ window 3000,0 -3000.0 "--sync--" sync / 14:[^:]*:Oppressor 0\.5:E49:/ window 3000,0 -3010.0 "Self-Destruct Enrage" sync / 1[56]:[^:]*:Oppressor:E49:/ +3000.0 "--sync--" StartsUsing { id: "E49", source: "Oppressor" } window 3000,0 +3000.0 "--sync--" StartsUsing { id: "E49", source: "Oppressor 0\\.5" } window 3000,0 +3010.0 "Self-Destruct Enrage" Ability { id: "E49", source: "Oppressor" } diff --git a/ui/raidboss/data/03-hw/raid/a2s.txt b/ui/raidboss/data/03-hw/raid/a2s.txt index 09374528bd..b2f699d7e4 100644 --- a/ui/raidboss/data/03-hw/raid/a2s.txt +++ b/ui/raidboss/data/03-hw/raid/a2s.txt @@ -13,74 +13,74 @@ hideall "--Reset--" hideall "--sync--" # Wave 1 (pull) -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 0.0 "Soldier x2 (NW)" # Wave 2 (timed push) -20.3 "--Wave 2--" sync / 03:........:Gordian Hardmind:/ window 21,5 +20.3 "--Wave 2--" AddedCombatant { name: "Gordian Hardmind" } window 21,5 20.3 "Sniper, Soldier x2 (NW)" 20.3 "Hardmind (SW)" -42.0 "Brainhurt Breakblock" sync / 1[56]:[^:]*:Gordian Hardmind:FCC:/ +42.0 "Brainhurt Breakblock" Ability { id: "FCC", source: "Gordian Hardmind" } # Wave 3 (timed push) -80.2 "--Wave 3--" sync / 03:........:Gordian Hardhelm:/ window 70,70 +80.2 "--Wave 3--" AddedCombatant { name: "Gordian Hardhelm" } window 70,70 80.2 "Hardhelm, Soldier (SW)" 80.2 "Hardmind, Sniper, Soldier 2x (N)" -101.9 "Brainhurt Breakblock" sync / 1[56]:[^:]*:Gordian Hardmind:FCC:/ -101.9 "Bodyhurt Breakblock" sync / 1[56]:[^:]*:Gordian Hardhelm:FCB:/ +101.9 "Brainhurt Breakblock" Ability { id: "FCC", source: "Gordian Hardmind" } +101.9 "Bodyhurt Breakblock" Ability { id: "FCB", source: "Gordian Hardhelm" } # Wave 4 (triggered push) -2000.0 "--Wave 4--" sync / 03:........:Boomtype Magitek Gobwalker G-VII:/ window 2000,0 +2000.0 "--Wave 4--" AddedCombatant { name: "Boomtype Magitek Gobwalker G-VII" } window 2000,0 2000.0 "Gobwalker (NE)" 2000.0 "Sniper x2, Soldier x2 (mid)" -2012.3 "Carpet Bomb 1" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -2032.5 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ -2040.8 "Carpet Bomb 2" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -2061.0 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ +2012.3 "Carpet Bomb 1" Ability { id: "FDA", source: "King Gobtank G-IV" } +2032.5 "Explosion" #Ability { id: "FDC", source: "Bomb" } +2040.8 "Carpet Bomb 2" Ability { id: "FDA", source: "King Gobtank G-IV" } +2061.0 "Explosion" #Ability { id: "FDC", source: "Bomb" } # Wave 5 (timed push) -2095.5 "--Wave 5--" sync / 03:........:Magitek Gobwidow G-IX:/ window 2070,100 +2095.5 "--Wave 5--" AddedCombatant { name: "Magitek Gobwidow G-IX" } window 2070,100 2095.5 "Gobwidow (N)" 2095.5 "Gobwidow (S)" 2095.5 "Soldier x2 (SW)" -2105.1 "Carpet Bomb 1" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -2107.0 "--sync--" sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:1413:/ -2114.6 "Boomcannon" sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:FD8:/ -2125.3 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ -2126.2 "Carpet Bomb 2" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -2138.3 "--sync--" sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:1413:/ -2146.0 "Boomcannon" sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:FD8:/ -2146.5 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ +2105.1 "Carpet Bomb 1" Ability { id: "FDA", source: "King Gobtank G-IV" } +2107.0 "--sync--" Ability { id: "1413", source: "Magitek Gobwidow G-IX" } +2114.6 "Boomcannon" Ability { id: "FD8", source: "Magitek Gobwidow G-IX" } +2125.3 "Explosion" #Ability { id: "FDC", source: "Bomb" } +2126.2 "Carpet Bomb 2" Ability { id: "FDA", source: "King Gobtank G-IV" } +2138.3 "--sync--" Ability { id: "1413", source: "Magitek Gobwidow G-IX" } +2146.0 "Boomcannon" Ability { id: "FD8", source: "Magitek Gobwidow G-IX" } +2146.5 "Explosion" #Ability { id: "FDC", source: "Bomb" } # Wave 6 (timed push) -2168.0 "--Wave 6--" sync / 03:........:Jagd Doll:/ window 2170,100 +2168.0 "--Wave 6--" AddedCombatant { name: "Jagd Doll" } window 2170,100 2168.0 "Jagd Doll (NE)" 2168.0 "Gobwalker (N)" 2168.0 "Hardhelm (SW)" -2176.3 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -2177.3 "Carpet Bomb" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -2187.4 "Blitzstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -2190.0 "Bodyhurt Breakblock" sync / 1[56]:[^:]*:Gordian Hardhelm:FCB:/ -2195.7 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ -2196.5 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -2198.3 "Carpet Bomb" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -2218.3 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ +2176.3 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +2177.3 "Carpet Bomb" Ability { id: "FDA", source: "King Gobtank G-IV" } +2187.4 "Blitzstrahl" Ability { id: "FD6", source: "Jagd Doll" } +2190.0 "Bodyhurt Breakblock" Ability { id: "FCB", source: "Gordian Hardhelm" } +2195.7 "Explosion" #Ability { id: "FDC", source: "Bomb" } +2196.5 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +2198.3 "Carpet Bomb" Ability { id: "FDA", source: "King Gobtank G-IV" } +2218.3 "Explosion" #Ability { id: "FDC", source: "Bomb" } -2227.7 "Blitzstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -2230.9 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -2239.1 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ +2227.7 "Blitzstrahl" Ability { id: "FD6", source: "Jagd Doll" } +2230.9 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +2239.1 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } -2250.2 "Blitzstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD6:/ window 10,10 jump 2227.7 +2250.2 "Blitzstrahl" Ability { id: "FD6", source: "Jagd Doll" } window 10,10 jump 2227.7 2253.4 "Kaltstrahl" 2261.6 "Kaltstrahl" @@ -94,79 +94,79 @@ hideall "--sync--" # Wave 7 (triggered push) -3000.0 "--Wave 7--" sync / 03:........:Jagd Doll:/ window 825,0 +3000.0 "--Wave 7--" AddedCombatant { name: "Jagd Doll" } window 825,0 3000.0 "Jagd Doll x4 (mid)" -3006.2 "Kaltstrahl" #sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -3010.8 "Carpet Bomb 1" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -3017.4 "Blitzstrahl" #sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -3029.1 "Kaltstrahl" #sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -3029.5 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ -3033.8 "Carpet Bomb 2" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -3040.1 "Blitzstrahl" #sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -3043.3 "Kaltstrahl" #sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -3051.5 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ -3062.6 "Blitzstrahl" #sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -3065.8 "Kaltstrahl" #sync / 1[56]:[^:]*:Jagd Doll:FD4:/ +3006.2 "Kaltstrahl" #Ability { id: "FD4", source: "Jagd Doll" } +3010.8 "Carpet Bomb 1" Ability { id: "FDA", source: "King Gobtank G-IV" } +3017.4 "Blitzstrahl" #Ability { id: "FD6", source: "Jagd Doll" } +3029.1 "Kaltstrahl" #Ability { id: "FD4", source: "Jagd Doll" } +3029.5 "Explosion" #Ability { id: "FDC", source: "Bomb" } +3033.8 "Carpet Bomb 2" Ability { id: "FDA", source: "King Gobtank G-IV" } +3040.1 "Blitzstrahl" #Ability { id: "FD6", source: "Jagd Doll" } +3043.3 "Kaltstrahl" #Ability { id: "FD4", source: "Jagd Doll" } +3051.5 "Explosion" #Ability { id: "FDC", source: "Bomb" } +3062.6 "Blitzstrahl" #Ability { id: "FD6", source: "Jagd Doll" } +3065.8 "Kaltstrahl" #Ability { id: "FD4", source: "Jagd Doll" } # Wave 8 (timed push) # TODO: include additional jagd doll stuff into here? -3080.7 "--Wave 8--" sync / 03:........:Gordian Sniper:/ window 1075,100 +3080.7 "--Wave 8--" AddedCombatant { name: "Gordian Sniper" } window 1075,100 3080.7 "Sniper x3, Soldier (SW)" 3080.7 "Hardmind (N)" 3080.7 "Hardhelm (SE)" -3090.8 "Carpet Bomb 1" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -3104.0 "Bodyhurt Breakblock" sync / 1[56]:[^:]*:Gordian Hardhelm:FCB:/ -3104.0 "Brainhurt Breakblock" sync / 1[56]:[^:]*:Gordian Hardmind:FCC:/ -3111.0 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ -3113.9 "Carpet Bomb 2" sync / 1[56]:[^:]*:King Gobtank G-IV:FDA:/ -3134.2 "Explosion" #sync / 1[56]:[^:]*:Bomb:FDC:/ +3090.8 "Carpet Bomb 1" Ability { id: "FDA", source: "King Gobtank G-IV" } +3104.0 "Bodyhurt Breakblock" Ability { id: "FCB", source: "Gordian Hardhelm" } +3104.0 "Brainhurt Breakblock" Ability { id: "FCC", source: "Gordian Hardmind" } +3111.0 "Explosion" #Ability { id: "FDC", source: "Bomb" } +3113.9 "Carpet Bomb 2" Ability { id: "FDA", source: "King Gobtank G-IV" } +3134.2 "Explosion" #Ability { id: "FDC", source: "Bomb" } # Wave 9 (triggered push) -4000.0 "--Wave 9--" sync / 03:........:Magitek Gobwidow G-IX:/ window 1900,0 +4000.0 "--Wave 9--" AddedCombatant { name: "Magitek Gobwidow G-IX" } window 1900,0 4000.0 "Gobwidow (NW)" 4000.0 "Gobwidow, Jagd Doll (SW)" 4000.0 "Gobwalker (NE)" 4000.0 "Sniper x2, Soldier x2 (SE)" -4014.4 "--sync--" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:1413:/ -4016.3 "Blitzstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -4019.4 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4022.1 "Boomcannon" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:FD8:/ -4027.6 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ +4014.4 "--sync--" #Ability { id: "1413", source: "Magitek Gobwidow G-IX" } +4016.3 "Blitzstrahl" Ability { id: "FD6", source: "Jagd Doll" } +4019.4 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4022.1 "Boomcannon" #Ability { id: "FD8", source: "Magitek Gobwidow G-IX" } +4027.6 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } -4042.6 "--sync--" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:1413:/ -4038.8 "Blitzstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -4041.9 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4050.1 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4050.3 "Boomcannon" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:FD8:/ +4042.6 "--sync--" #Ability { id: "1413", source: "Magitek Gobwidow G-IX" } +4038.8 "Blitzstrahl" Ability { id: "FD6", source: "Jagd Doll" } +4041.9 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4050.1 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4050.3 "Boomcannon" #Ability { id: "FD8", source: "Magitek Gobwidow G-IX" } -4061.3 "Blitzstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -4064.4 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4070.8 "--sync--" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:1413:/ -4072.6 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4078.5 "Boomcannon" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:FD8:/ +4061.3 "Blitzstrahl" Ability { id: "FD6", source: "Jagd Doll" } +4064.4 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4070.8 "--sync--" #Ability { id: "1413", source: "Magitek Gobwidow G-IX" } +4072.6 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4078.5 "Boomcannon" #Ability { id: "FD8", source: "Magitek Gobwidow G-IX" } -4083.8 "Blitzstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -4086.9 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4095.1 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4099.0 "--sync--" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:1413:/ -4106.3 "Blitzstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD6:/ -4106.7 "Boomcannon" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:FD8:/ +4083.8 "Blitzstrahl" Ability { id: "FD6", source: "Jagd Doll" } +4086.9 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4095.1 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4099.0 "--sync--" #Ability { id: "1413", source: "Magitek Gobwidow G-IX" } +4106.3 "Blitzstrahl" Ability { id: "FD6", source: "Jagd Doll" } +4106.7 "Boomcannon" #Ability { id: "FD8", source: "Magitek Gobwidow G-IX" } -4109.4 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4117.6 "Kaltstrahl" sync / 1[56]:[^:]*:Jagd Doll:FD4:/ -4127.2 "--sync--" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:1413:/ -4134.9 "Boomcannon" #sync / 1[56]:[^:]*:Magitek Gobwidow G-IX:FD8:/ +4109.4 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4117.6 "Kaltstrahl" Ability { id: "FD4", source: "Jagd Doll" } +4127.2 "--sync--" #Ability { id: "1413", source: "Magitek Gobwidow G-IX" } +4134.9 "Boomcannon" #Ability { id: "FD8", source: "Magitek Gobwidow G-IX" } # Enrage -5000.0 "--sync--" sync / 03:........:Giant Bomb:/ window 5000,0 -5010.0 "Massive Explosion Enrage" sync / 1[56]:[^:]*:Giant Bomb:FDD:/ +5000.0 "--sync--" AddedCombatant { name: "Giant Bomb" } window 5000,0 +5010.0 "Massive Explosion Enrage" Ability { id: "FDD", source: "Giant Bomb" } # Technically this loops, and has a special dialog where Quickthinx says: # "Uplanders are stubborn, need lesson teachings! Illuminati─reload and fire!" diff --git a/ui/raidboss/data/03-hw/raid/a3n.txt b/ui/raidboss/data/03-hw/raid/a3n.txt index 35868eb42e..2d1ba8c24c 100644 --- a/ui/raidboss/data/03-hw/raid/a3n.txt +++ b/ui/raidboss/data/03-hw/raid/a3n.txt @@ -8,39 +8,39 @@ hideall "--sync--" # -ii 1305 12FA # Condensate Demineralizer #9 will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:66C:/ window 10000,10000 -7.5 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12EE:/ -11.6 "Splash x3" duration 3 #sync / 1[56]:[^:]*:Living Liquid:12EF:/ -19.9 "Protean Wave" sync / 1[56]:[^:]*:Living Liquid:12F0:/ -23.5 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12EE:/ -27.6 "Splash x3" duration 3 #sync / 1[56]:[^:]*:Living Liquid:12EF:/ -32.9 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12EE:/ -39.0 "Sluice" sync / 1[56]:[^:]*:Living Liquid:12F2:/ -42.0 "--sync--" sync / 1[56]:[^:]*:Living Liquid:12F3:/ -44.0 "--sync--" sync / 1[56]:[^:]*:Living Liquid:12F4:/ -47.2 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12EE:/ -53.3 "Splash x3" duration 3 #sync / 1[56]:[^:]*:Living Liquid:12EF:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "66C" } window 10000,10000 +7.5 "Fluid Swing" Ability { id: "12EE", source: "Living Liquid" } +11.6 "Splash x3" duration 3 #Ability { id: "12EF", source: "Living Liquid" } +19.9 "Protean Wave" Ability { id: "12F0", source: "Living Liquid" } +23.5 "Fluid Swing" Ability { id: "12EE", source: "Living Liquid" } +27.6 "Splash x3" duration 3 #Ability { id: "12EF", source: "Living Liquid" } +32.9 "Fluid Swing" Ability { id: "12EE", source: "Living Liquid" } +39.0 "Sluice" Ability { id: "12F2", source: "Living Liquid" } +42.0 "--sync--" Ability { id: "12F3", source: "Living Liquid" } +44.0 "--sync--" Ability { id: "12F4", source: "Living Liquid" } +47.2 "Fluid Swing" Ability { id: "12EE", source: "Living Liquid" } +53.3 "Splash x3" duration 3 #Ability { id: "12EF", source: "Living Liquid" } # Hand phase 57.5 "--untargetable--" -59.5 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:F28:/ -60.6 "--sync--" sync / 1[56]:[^:]*:Living Liquid:F22:/ window 60.6,10 -61.0 "Hydromorph" sync / 1[56]:[^:]*:Hydrate Core:F29:/ -63.0 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:1040:/ +59.5 "--sync--" Ability { id: "F28", source: "Hydrate Core" } +60.6 "--sync--" Ability { id: "F22", source: "Living Liquid" } window 60.6,10 +61.0 "Hydromorph" Ability { id: "F29", source: "Hydrate Core" } +63.0 "--sync--" Ability { id: "1040", source: "Hydrate Core" } 64.5 "--targetable--" -70.6 "Fluid Strike" sync / 1[56]:[^:]*:Living Liquid:12FD:/ -77.7 "Wash Away" sync / 1[56]:[^:]*:Living Liquid:12FF:/ -87.9 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FD:/ -91.0 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FD:/ -94.1 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FD:/ +70.6 "Fluid Strike" Ability { id: "12FD", source: "Living Liquid" } +77.7 "Wash Away" Ability { id: "12FF", source: "Living Liquid" } +87.9 "Fluid Strike" #Ability { id: "12FD", source: "Living Liquid" } +91.0 "Fluid Strike" #Ability { id: "12FD", source: "Living Liquid" } +94.1 "Fluid Strike" #Ability { id: "12FD", source: "Living Liquid" } 98.1 "--Liquid Limb spawns--" -104.2 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FE:/ -109.3 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FE:/ -111.4 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FE:/ -116.5 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FE:/ -118.6 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FE:/ -123.7 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FE:/ -125.8 "Fluid Strike" #sync / 1[56]:[^:]*:Living Liquid:12FE:/ +104.2 "Fluid Strike" #Ability { id: "12FE", source: "Living Liquid" } +109.3 "Fluid Strike" #Ability { id: "12FE", source: "Living Liquid" } +111.4 "Fluid Strike" #Ability { id: "12FE", source: "Living Liquid" } +116.5 "Fluid Strike" #Ability { id: "12FE", source: "Living Liquid" } +118.6 "Fluid Strike" #Ability { id: "12FE", source: "Living Liquid" } +123.7 "Fluid Strike" #Ability { id: "12FE", source: "Living Liquid" } +125.8 "Fluid Strike" #Ability { id: "12FE", source: "Living Liquid" } # Tornado phase # There are several add waves here, but the timing is dependent on kill times, @@ -48,20 +48,20 @@ hideall "--sync--" # Drainage is the only consistent thing through the phase. 128.8 "--untargetable--" -132.1 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:F28:/ window 68,5 -133.2 "--sync--" sync / 1[56]:[^:]*:Living Liquid:F24:/ -133.6 "Hydromorph" sync / 1[56]:[^:]*:Hydrate Core:F29:/ -135.7 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:1040:/ -157.9 "Drainage" sync / 1[56]:[^:]*:Living Liquid:1304:/ -178.6 "Drainage" sync / 1[56]:[^:]*:Living Liquid:1304:/ +132.1 "--sync--" Ability { id: "F28", source: "Hydrate Core" } window 68,5 +133.2 "--sync--" Ability { id: "F24", source: "Living Liquid" } +133.6 "Hydromorph" Ability { id: "F29", source: "Hydrate Core" } +135.7 "--sync--" Ability { id: "1040", source: "Hydrate Core" } +157.9 "Drainage" Ability { id: "1304", source: "Living Liquid" } +178.6 "Drainage" Ability { id: "1304", source: "Living Liquid" } # And back we go to the first phase, which repeats *identically from the beginning*(!!) -200.2 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:F28:/ window 71.4,5 -201.3 "--sync--" sync / 1[56]:[^:]*:Living Liquid:F26:/ -201.7 "Hydromorph" sync / 1[56]:[^:]*:Hydrate Core:F29:/ +200.2 "--sync--" Ability { id: "F28", source: "Hydrate Core" } window 71.4,5 +201.3 "--sync--" Ability { id: "F26", source: "Living Liquid" } +201.7 "Hydromorph" Ability { id: "F29", source: "Hydrate Core" } 205.2 "--targetable--" -211.3 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12EE:/ jump 7.5 +211.3 "Fluid Swing" Ability { id: "12EE", source: "Living Liquid" } jump 7.5 215.4 "Splash x3" 223.7 "Protean Wave" 227.3 "Fluid Swing" @@ -76,26 +76,26 @@ hideall "--sync--" # Under certain circumstances, Ferrofluid/Magnetism can be skipped. # Fluid Swing after is synced to account for that. -300.0 "Valve" sync / 1[56]:[^:]*:Living Liquid:12F6:/ window 300,5 -310.1 "Cascade" sync / 1[56]:[^:]*:Living Liquid:12F7:/ -316.3 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12F5:/ -319.5 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12F5:/ -326.6 "Sluice" sync / 1[56]:[^:]*:Living Liquid:12F2:/ -329.6 "--sync--" sync / 1[56]:[^:]*:Living Liquid:12F3:/ -331.6 "--sync--" sync / 1[56]:[^:]*:Living Liquid:12F4:/ -335.9 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:(1307|1309):/ -344.0 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12F5:/ window 17.4,2.5 -346.1 "Splash x4" # sync / 1[56]:[^:]*:Living Liquid:12EF:/ -350.5 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12F5:/ -359.8 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:(1307|1309):/ -365.9 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12F5:/ window 10,2.5 -372.0 "Sluice" sync / 1[56]:[^:]*:Living Liquid:12F2:/ -375.0 "--sync--" sync / 1[56]:[^:]*:Living Liquid:12F3:/ -377.0 "--sync--" sync / 1[56]:[^:]*:Living Liquid:12F4:/ -378.7 "Protean Wave" sync / 1[56]:[^:]*:Living Liquid:12F0:/ -381.4 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:12F5:/ +300.0 "Valve" Ability { id: "12F6", source: "Living Liquid" } window 300,5 +310.1 "Cascade" Ability { id: "12F7", source: "Living Liquid" } +316.3 "Fluid Swing" Ability { id: "12F5", source: "Living Liquid" } +319.5 "Fluid Swing" Ability { id: "12F5", source: "Living Liquid" } +326.6 "Sluice" Ability { id: "12F2", source: "Living Liquid" } +329.6 "--sync--" Ability { id: "12F3", source: "Living Liquid" } +331.6 "--sync--" Ability { id: "12F4", source: "Living Liquid" } +335.9 "Magnetism/Repel" Ability { id: ["1307", "1309"], source: "Living Liquid" } +344.0 "Fluid Swing" Ability { id: "12F5", source: "Living Liquid" } window 17.4,2.5 +346.1 "Splash x4" # Ability { id: "12EF", source: "Living Liquid" } +350.5 "Fluid Swing" Ability { id: "12F5", source: "Living Liquid" } +359.8 "Magnetism/Repel" Ability { id: ["1307", "1309"], source: "Living Liquid" } +365.9 "Fluid Swing" Ability { id: "12F5", source: "Living Liquid" } window 10,2.5 +372.0 "Sluice" Ability { id: "12F2", source: "Living Liquid" } +375.0 "--sync--" Ability { id: "12F3", source: "Living Liquid" } +377.0 "--sync--" Ability { id: "12F4", source: "Living Liquid" } +378.7 "Protean Wave" Ability { id: "12F0", source: "Living Liquid" } +381.4 "Fluid Swing" Ability { id: "12F5", source: "Living Liquid" } -387.5 "Cascade" sync / 1[56]:[^:]*:Living Liquid:12F7:/ window 60,30 jump 310.1 +387.5 "Cascade" Ability { id: "12F7", source: "Living Liquid" } window 60,30 jump 310.1 393.7 "Fluid Swing" 396.9 "Fluid Swing" 404.0 "Sluice" diff --git a/ui/raidboss/data/03-hw/raid/a3s.txt b/ui/raidboss/data/03-hw/raid/a3s.txt index 0dc89b65f2..f0cc77f901 100644 --- a/ui/raidboss/data/03-hw/raid/a3s.txt +++ b/ui/raidboss/data/03-hw/raid/a3s.txt @@ -11,175 +11,175 @@ hideall "--Reset--" hideall "--sync--" ### Phase 1: Jiggly -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EF3:/ -17.2 "Protean Wave" sync / 1[56]:[^:]*:Living Liquid:EF5:/ -18.8 "Protean Wave" sync / 1[56]:[^:]*:Living Liquid:EF6:/ -21.9 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EF3:/ -25.0 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -32.3 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EF3:/ -44.4 "Sluice" sync / 1[56]:[^:]*:Living Liquid:EFA:/ -49.6 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -54.9 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EF3:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "Fluid Swing" Ability { id: "EF3", source: "Living Liquid" } +17.2 "Protean Wave" Ability { id: "EF5", source: "Living Liquid" } +18.8 "Protean Wave" Ability { id: "EF6", source: "Living Liquid" } +21.9 "Fluid Swing" Ability { id: "EF3", source: "Living Liquid" } +25.0 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +32.3 "Fluid Swing" Ability { id: "EF3", source: "Living Liquid" } +44.4 "Sluice" Ability { id: "EFA", source: "Living Liquid" } +49.6 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +54.9 "Fluid Swing" Ability { id: "EF3", source: "Living Liquid" } 56.8 "--untargetable--" -58.9 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:F28:/ -60.0 "--sync--" sync / 1[56]:[^:]*:Living Liquid:F22:/ +58.9 "--sync--" Ability { id: "F28", source: "Hydrate Core" } +60.0 "--sync--" Ability { id: "F22", source: "Living Liquid" } ### Phase 2: Sound of Two Hands Cleaving -60.4 "Hydromorph" sync / 1[56]:[^:]*:Hydrate Core:F29:/ -62.4 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:1040:/ +60.4 "Hydromorph" Ability { id: "F29", source: "Hydrate Core" } +62.4 "--sync--" Ability { id: "1040", source: "Hydrate Core" } 63.9 "--targetable--" -70.0 "Fluid Strike" sync / 1[56]:[^:]*:Living Liquid:F05:/ -77.1 "Wash Away" sync / 1[56]:[^:]*:Living Liquid:F07:/ -85.2 "Digititis" sync / 1[56]:[^:]*:Living Liquid:F08:/ -90.4 "Fluid Strike" sync / 1[56]:[^:]*:Living Liquid:F05:/ -100.5 "Fluid Strike" sync / 1[56]:[^:]*:Living Liquid:F05:/ -107.6 "Wash Away" sync / 1[56]:[^:]*:Living Liquid:F07:/ +70.0 "Fluid Strike" Ability { id: "F05", source: "Living Liquid" } +77.1 "Wash Away" Ability { id: "F07", source: "Living Liquid" } +85.2 "Digititis" Ability { id: "F08", source: "Living Liquid" } +90.4 "Fluid Strike" Ability { id: "F05", source: "Living Liquid" } +100.5 "Fluid Strike" Ability { id: "F05", source: "Living Liquid" } +107.6 "Wash Away" Ability { id: "F07", source: "Living Liquid" } 109.6 "--split--" -115.8 "Fluid Strike" sync / 1[56]:[^:]*:Living Liquid:F06:/ -125.0 "Hand Of Prayer/Parting" sync / 1[56]:[^:]*:(Living Liquid|Liquid Limb):F0[BC]:/ -136.9 "Digititis" sync / 1[56]:[^:]*:Living Liquid:F08:/ -137.1 "Equal Concentration" sync / 1[56]:[^:]*:Liquid Limb:F09:/ +115.8 "Fluid Strike" Ability { id: "F06", source: "Living Liquid" } +125.0 "Hand Of Prayer/Parting" Ability { id: "F0[BC]", source: ["Living Liquid", "Liquid Limb"] } +136.9 "Digititis" Ability { id: "F08", source: "Living Liquid" } +137.1 "Equal Concentration" Ability { id: "F09", source: "Liquid Limb" } 137.1 "--dps burn--" duration 27.4 # Limb's cleaves are slightly desynced here, so only include the main one. -141.1 "Fluid Strike x2" sync / 1[56]:[^:]*:Living Liquid:F06:/ -149.2 "Fluid Strike x2" sync / 1[56]:[^:]*:Living Liquid:F06:/ -157.4 "Fluid Strike x2" sync / 1[56]:[^:]*:Living Liquid:F06:/ -164.5 "Hand Of Pain" sync / 1[56]:[^:]*:Living Liquid:F0A:/ -174.7 "Hand Of Prayer/Parting" sync / 1[56]:[^:]*:(Living Liquid|Liquid Limb):F0[BC]:/ -178.8 "Fluid Strike x2" sync / 1[56]:[^:]*:Living Liquid:F06:/ -183.8 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:F28:/ -184.9 "--sync--" sync / 1[56]:[^:]*:Living Liquid:F24:/ +141.1 "Fluid Strike x2" Ability { id: "F06", source: "Living Liquid" } +149.2 "Fluid Strike x2" Ability { id: "F06", source: "Living Liquid" } +157.4 "Fluid Strike x2" Ability { id: "F06", source: "Living Liquid" } +164.5 "Hand Of Pain" Ability { id: "F0A", source: "Living Liquid" } +174.7 "Hand Of Prayer/Parting" Ability { id: "F0[BC]", source: ["Living Liquid", "Liquid Limb"] } +178.8 "Fluid Strike x2" Ability { id: "F06", source: "Living Liquid" } +183.8 "--sync--" Ability { id: "F28", source: "Hydrate Core" } +184.9 "--sync--" Ability { id: "F24", source: "Living Liquid" } ### Phase 3: Tornado -185.3 "Hydromorph" sync / 1[56]:[^:]*:Hydrate Core:F29:/ -187.3 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:1040:/ +185.3 "Hydromorph" Ability { id: "F29", source: "Hydrate Core" } +187.3 "--sync--" Ability { id: "1040", source: "Hydrate Core" } 192.0 "Piston Lubricant x2" 201.1 "Gear Lubricant x3" # These happen about 1s apart, so don't sync. -208.4 "Drainage x2" #sync / 1[56]:[^:]*:Living Liquid:F10:/ +208.4 "Drainage x2" #Ability { id: "F10", source: "Living Liquid" } 214.8 "Gear Lubricant x2" 214.8 "Piston Lubricant x1" -227.2 "Ferrofluid" sync / 1[56]:[^:]*:Living Liquid:F12:/ -227.7 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:F1[35]:/ +227.2 "Ferrofluid" Ability { id: "F12", source: "Living Liquid" } +227.7 "Magnetism/Repel" Ability { id: "F1[35]", source: "Living Liquid" } 230.3 "Gear Lubricant x4" -237.5 "Drainage x2" #sync / 1[56]:[^:]*:Living Liquid:F10:/ +237.5 "Drainage x2" #Ability { id: "F10", source: "Living Liquid" } 243.6 "Gear Lubricant x3" -252.0 "Ferrofluid" sync / 1[56]:[^:]*:Living Liquid:F12:/ -252.5 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:F1[35]:/ +252.0 "Ferrofluid" Ability { id: "F12", source: "Living Liquid" } +252.5 "Magnetism/Repel" Ability { id: "F1[35]", source: "Living Liquid" } 254.8 "Piston Lubricant x4" -279.4 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:F28:/ -280.5 "--sync--" sync / 1[56]:[^:]*:Living Liquid:F26:/ -280.9 "Hydromorph" sync / 1[56]:[^:]*:Hydrate Core:F29:/ -282.9 "--sync--" sync / 1[56]:[^:]*:Hydrate Core:1040:/ +279.4 "--sync--" Ability { id: "F28", source: "Hydrate Core" } +280.5 "--sync--" Ability { id: "F26", source: "Living Liquid" } +280.9 "Hydromorph" Ability { id: "F29", source: "Hydrate Core" } +282.9 "--sync--" Ability { id: "1040", source: "Hydrate Core" } ### Phase 4: Jiggly Again 284.5 "--targetable--" -284.5 "--sync--" sync / 1[56]:[^:]*:Living Liquid:EFD:/ - -294.6 "Cascade 1" sync / 1[56]:[^:]*:Living Liquid:EFE:/ window 300,10 -304.8 "Ferrofluid" sync / 1[56]:[^:]*:Living Liquid:F01:/ -306.0 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:F1[35]:/ -310.0 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -315.3 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -325.4 "Sluice" sync / 1[56]:[^:]*:Living Liquid:EFA:/ -328.6 "Protean Wave" sync / 1[56]:[^:]*:Living Liquid:EF5:/ -330.3 "Protean Wave" sync / 1[56]:[^:]*:Living Liquid:EF6:/ -334.4 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -340.5 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -345.8 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -355.9 "Sluice" sync / 1[56]:[^:]*:Living Liquid:EFA:/ -361.0 "Digititis" sync / 1[56]:[^:]*:Living Liquid:F00:/ -364.2 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ - -370.3 "Cascade 2" sync / 1[56]:[^:]*:Living Liquid:EFE:/ window 40,40 -380.1 "Throttle" #sync / 1[56]:[^:]*:Living Liquid:F02:/ -384.0 "Fluid Claw" sync / 1[56]:[^:]*:Liquid Limb:F0D:/ +284.5 "--sync--" Ability { id: "EFD", source: "Living Liquid" } + +294.6 "Cascade 1" Ability { id: "EFE", source: "Living Liquid" } window 300,10 +304.8 "Ferrofluid" Ability { id: "F01", source: "Living Liquid" } +306.0 "Magnetism/Repel" Ability { id: "F1[35]", source: "Living Liquid" } +310.0 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +315.3 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +325.4 "Sluice" Ability { id: "EFA", source: "Living Liquid" } +328.6 "Protean Wave" Ability { id: "EF5", source: "Living Liquid" } +330.3 "Protean Wave" Ability { id: "EF6", source: "Living Liquid" } +334.4 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +340.5 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +345.8 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +355.9 "Sluice" Ability { id: "EFA", source: "Living Liquid" } +361.0 "Digititis" Ability { id: "F00", source: "Living Liquid" } +364.2 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } + +370.3 "Cascade 2" Ability { id: "EFE", source: "Living Liquid" } window 40,40 +380.1 "Throttle" #Ability { id: "F02", source: "Living Liquid" } +384.0 "Fluid Claw" Ability { id: "F0D", source: "Liquid Limb" } 385.0 "--targetable--" -385.3 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -390.6 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -398.7 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -402.8 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -418.1 "Digititis" sync / 1[56]:[^:]*:Living Liquid:F00:/ -422.3 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -426.4 "Splash x6" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 5.5 -435.0 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ - -441.1 "Cascade 3" sync / 1[56]:[^:]*:Living Liquid:EFE:/ window 40,40 -450.3 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -453.5 "Throttle" #sync / 1[56]:[^:]*:Liquid Rage:F1A:/ -455.5 "Protean Wave" sync / 1[56]:[^:]*:Liquid Rage:F19:/ -455.6 "Throttle" #sync / 1[56]:[^:]*:Liquid Rage:F1A:/ -459.4 "Drainage" sync / 1[56]:[^:]*:Liquid Rage:F18:/ -461.6 "Protean Wave" sync / 1[56]:[^:]*:Liquid Rage:F19:/ -463.3 "Ferrofluid" sync / 1[56]:[^:]*:Living Liquid:F01:/ -464.5 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:F1[35]:/ -471.5 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -476.6 "Throttle" #sync / 1[56]:[^:]*:Liquid Rage:F1A:/ -478.7 "Embolus" sync / 1[56]:[^:]*:Liquid Rage:F1B:/ -478.8 "Throttle" #sync / 1[56]:[^:]*:Liquid Rage:F1A:/ -488.7 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -496.9 "Embolus" sync / 1[56]:[^:]*:Liquid Rage:F1B:/ -496.9 "Protean Wave" sync / 1[56]:[^:]*:Liquid Rage:F19:/ -500.8 "Sluice" sync / 1[56]:[^:]*:Living Liquid:EFA:/ -500.8 "Drainage" sync / 1[56]:[^:]*:Liquid Rage:F18:/ -503.2 "Protean Wave" sync / 1[56]:[^:]*:Liquid Rage:F19:/ -508.9 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ - -516.1 "Cascade 4" sync / 1[56]:[^:]*:Living Liquid:EFE:/ window 40,40 -526.3 "Ferrofluid" sync / 1[56]:[^:]*:Living Liquid:F01:/ -527.5 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:F1[35]:/ -531.5 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -537.0 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -547.1 "Sluice" sync / 1[56]:[^:]*:Living Liquid:EFA:/ -550.4 "Protean Wave" sync / 1[56]:[^:]*:Living Liquid:EF5:/ -552.1 "Protean Wave" sync / 1[56]:[^:]*:Living Liquid:EF6:/ -556.2 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -562.3 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -567.6 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -577.7 "Sluice" sync / 1[56]:[^:]*:Living Liquid:EFA:/ -582.8 "Digititis" sync / 1[56]:[^:]*:Living Liquid:F00:/ -586.0 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ - -592.1 "Cascade 5" sync / 1[56]:[^:]*:Living Liquid:EFE:/ window 40,40 -602.0 "Throttle" #sync / 1[56]:[^:]*:Living Liquid:F02:/ -605.9 "Fluid Claw" sync / 1[56]:[^:]*:Liquid Limb:F0D:/ +385.3 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +390.6 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +398.7 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +402.8 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +418.1 "Digititis" Ability { id: "F00", source: "Living Liquid" } +422.3 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +426.4 "Splash x6" #Ability { id: "EF4", source: "Living Liquid" } duration 5.5 +435.0 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } + +441.1 "Cascade 3" Ability { id: "EFE", source: "Living Liquid" } window 40,40 +450.3 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +453.5 "Throttle" #Ability { id: "F1A", source: "Liquid Rage" } +455.5 "Protean Wave" Ability { id: "F19", source: "Liquid Rage" } +455.6 "Throttle" #Ability { id: "F1A", source: "Liquid Rage" } +459.4 "Drainage" Ability { id: "F18", source: "Liquid Rage" } +461.6 "Protean Wave" Ability { id: "F19", source: "Liquid Rage" } +463.3 "Ferrofluid" Ability { id: "F01", source: "Living Liquid" } +464.5 "Magnetism/Repel" Ability { id: "F1[35]", source: "Living Liquid" } +471.5 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +476.6 "Throttle" #Ability { id: "F1A", source: "Liquid Rage" } +478.7 "Embolus" Ability { id: "F1B", source: "Liquid Rage" } +478.8 "Throttle" #Ability { id: "F1A", source: "Liquid Rage" } +488.7 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +496.9 "Embolus" Ability { id: "F1B", source: "Liquid Rage" } +496.9 "Protean Wave" Ability { id: "F19", source: "Liquid Rage" } +500.8 "Sluice" Ability { id: "EFA", source: "Living Liquid" } +500.8 "Drainage" Ability { id: "F18", source: "Liquid Rage" } +503.2 "Protean Wave" Ability { id: "F19", source: "Liquid Rage" } +508.9 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } + +516.1 "Cascade 4" Ability { id: "EFE", source: "Living Liquid" } window 40,40 +526.3 "Ferrofluid" Ability { id: "F01", source: "Living Liquid" } +527.5 "Magnetism/Repel" Ability { id: "F1[35]", source: "Living Liquid" } +531.5 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +537.0 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +547.1 "Sluice" Ability { id: "EFA", source: "Living Liquid" } +550.4 "Protean Wave" Ability { id: "EF5", source: "Living Liquid" } +552.1 "Protean Wave" Ability { id: "EF6", source: "Living Liquid" } +556.2 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +562.3 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +567.6 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +577.7 "Sluice" Ability { id: "EFA", source: "Living Liquid" } +582.8 "Digititis" Ability { id: "F00", source: "Living Liquid" } +586.0 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } + +592.1 "Cascade 5" Ability { id: "EFE", source: "Living Liquid" } window 40,40 +602.0 "Throttle" #Ability { id: "F02", source: "Living Liquid" } +605.9 "Fluid Claw" Ability { id: "F0D", source: "Liquid Limb" } 606.9 "--targetable--" -607.1 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -612.4 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -620.5 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -624.6 "Splash x3" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 2.2 -639.9 "Digititis" sync / 1[56]:[^:]*:Living Liquid:F00:/ -644.0 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -648.1 "Splash x6" #sync / 1[56]:[^:]*:Living Liquid:EF4:/ duration 5.5 -656.7 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ - -662.8 "Cascade 6" sync / 1[56]:[^:]*:Living Liquid:EFE:/ window 40,40 -672.0 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -675.2 "Throttle" #sync / 1[56]:[^:]*:Liquid Rage:F1A:/ -677.2 "Protean Wave" sync / 1[56]:[^:]*:Liquid Rage:F19:/ -677.4 "Throttle" #sync / 1[56]:[^:]*:Liquid Rage:F1A:/ -681.2 "Drainage" sync / 1[56]:[^:]*:Liquid Rage:F18:/ -683.4 "Protean Wave" sync / 1[56]:[^:]*:Liquid Rage:F19:/ -685.2 "Ferrofluid" sync / 1[56]:[^:]*:Living Liquid:F01:/ -686.4 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:F1[35]:/ -693.4 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -698.6 "Throttle" #sync / 1[56]:[^:]*:Liquid Rage:F1A:/ -700.6 "Embolus" sync / 1[56]:[^:]*:Liquid Rage:F1B:/ -700.7 "Throttle" #sync / 1[56]:[^:]*:Liquid Rage:F1A:/ -710.5 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ -718.7 "Protean Wave" sync / 1[56]:[^:]*:Liquid Rage:F19:/ -718.7 "Embolus" sync / 1[56]:[^:]*:Liquid Rage:F1B:/ -722.6 "Sluice" sync / 1[56]:[^:]*:Living Liquid:EFA:/ -722.6 "Drainage" sync / 1[56]:[^:]*:Liquid Rage:F18:/ -725.3 "Protean Wave" sync / 1[56]:[^:]*:Liquid Rage:F19:/ -730.7 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:EFC:/ - -737.8 "Cascade 7" sync / 1[56]:[^:]*:Living Liquid:EFE:/ window 40,40 -748.0 "Ferrofluid" sync / 1[56]:[^:]*:Living Liquid:F01:/ -749.2 "Magnetism/Repel" sync / 1[56]:[^:]*:Living Liquid:F1[35]:/ - -751.2 "--sync--" sync / 14:[^:]*:Living Liquid:EFF:/ window 1000,1000 -761.2 "Cascade Enrage" sync / 1[56]:[^:]*:Living Liquid:EFF:/ +607.1 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +612.4 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +620.5 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +624.6 "Splash x3" #Ability { id: "EF4", source: "Living Liquid" } duration 2.2 +639.9 "Digititis" Ability { id: "F00", source: "Living Liquid" } +644.0 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +648.1 "Splash x6" #Ability { id: "EF4", source: "Living Liquid" } duration 5.5 +656.7 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } + +662.8 "Cascade 6" Ability { id: "EFE", source: "Living Liquid" } window 40,40 +672.0 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +675.2 "Throttle" #Ability { id: "F1A", source: "Liquid Rage" } +677.2 "Protean Wave" Ability { id: "F19", source: "Liquid Rage" } +677.4 "Throttle" #Ability { id: "F1A", source: "Liquid Rage" } +681.2 "Drainage" Ability { id: "F18", source: "Liquid Rage" } +683.4 "Protean Wave" Ability { id: "F19", source: "Liquid Rage" } +685.2 "Ferrofluid" Ability { id: "F01", source: "Living Liquid" } +686.4 "Magnetism/Repel" Ability { id: "F1[35]", source: "Living Liquid" } +693.4 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +698.6 "Throttle" #Ability { id: "F1A", source: "Liquid Rage" } +700.6 "Embolus" Ability { id: "F1B", source: "Liquid Rage" } +700.7 "Throttle" #Ability { id: "F1A", source: "Liquid Rage" } +710.5 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } +718.7 "Protean Wave" Ability { id: "F19", source: "Liquid Rage" } +718.7 "Embolus" Ability { id: "F1B", source: "Liquid Rage" } +722.6 "Sluice" Ability { id: "EFA", source: "Living Liquid" } +722.6 "Drainage" Ability { id: "F18", source: "Liquid Rage" } +725.3 "Protean Wave" Ability { id: "F19", source: "Liquid Rage" } +730.7 "Fluid Swing" Ability { id: "EFC", source: "Living Liquid" } + +737.8 "Cascade 7" Ability { id: "EFE", source: "Living Liquid" } window 40,40 +748.0 "Ferrofluid" Ability { id: "F01", source: "Living Liquid" } +749.2 "Magnetism/Repel" Ability { id: "F1[35]", source: "Living Liquid" } + +751.2 "--sync--" StartsUsing { id: "EFF", source: "Living Liquid" } window 1000,1000 +761.2 "Cascade Enrage" Ability { id: "EFF", source: "Living Liquid" } diff --git a/ui/raidboss/data/03-hw/raid/a4s.txt b/ui/raidboss/data/03-hw/raid/a4s.txt index e2040019ac..f4c98fe749 100644 --- a/ui/raidboss/data/03-hw/raid/a4s.txt +++ b/ui/raidboss/data/03-hw/raid/a4s.txt @@ -9,218 +9,218 @@ # So, I applied that to all perpetual rays. ### Leg 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -3.0 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ window 3,13 -14.1 "Discoid" sync / 1[56]:[^:]*:The Manipulator:F61:/ -21.2 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -21.2 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -26.3 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +3.0 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } window 3,13 +14.1 "Discoid" Ability { id: "F61", source: "The Manipulator" } +21.2 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +21.2 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +26.3 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } 26.4 "--stun--" duration 5 -32.2 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -41.3 "Emergency Quarantine" sync / 1[56]:[^:]*:The Manipulator:F62:/ +32.2 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +41.3 "Emergency Quarantine" Ability { id: "F62", source: "The Manipulator" } -43.4 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -48.5 "Discoid" sync / 1[56]:[^:]*:The Manipulator:F61:/ -53.6 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -58.6 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ +43.4 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +48.5 "Discoid" Ability { id: "F61", source: "The Manipulator" } +53.6 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +58.6 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } 55.6 "--stun--" duration 5 -61.4 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -71.5 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ - -85.6 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -96.7 "Discoid" sync / 1[56]:[^:]*:The Manipulator:F61:/ window 20,20 jump 14.1 -103.8 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -103.8 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ -108.9 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ +61.4 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +71.5 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } + +85.6 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +96.7 "Discoid" Ability { id: "F61", source: "The Manipulator" } window 20,20 jump 14.1 +103.8 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +103.8 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } +108.9 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } 109.0 "--stun--" duration 5 -114.8 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -123.9 "Emergency Quarantine" #sync / 1[56]:[^:]*:The Manipulator:F62:/ +114.8 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +123.9 "Emergency Quarantine" #Ability { id: "F62", source: "The Manipulator" } -126.0 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ -131.1 "Discoid" #sync / 1[56]:[^:]*:The Manipulator:F61:/ -136.2 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -141.2 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ +126.0 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } +131.1 "Discoid" #Ability { id: "F61", source: "The Manipulator" } +136.2 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +141.2 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } 138.2 "--stun--" duration 5 -144.0 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -154.1 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ +144.0 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +154.1 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } ### Leg 2 -500.0 "--sync--" sync / 22:........:The Manipulator:........:The Manipulator:01/ window 500,0 +500.0 "--sync--" NameToggle { name: "The Manipulator", toggle: "01" } window 500,0 512.1 "--untargetable--" -516.2 "--sync--" sync / 14:[^:]*:The Manipulator:13E7:/ window 517,5 -522.2 "Mortal Revolution" sync / 1[56]:[^:]*:The Manipulator:13E7:/ +516.2 "--sync--" StartsUsing { id: "13E7", source: "The Manipulator" } window 517,5 +522.2 "Mortal Revolution" Ability { id: "13E7", source: "The Manipulator" } 524.2 "--targetable--" -532.3 "Emergency Quarantine" sync / 1[56]:[^:]*:The Manipulator:F62:/ -543.4 "Carnage" sync / 1[56]:[^:]*:The Manipulator:F63:/ -545.5 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ +532.3 "Emergency Quarantine" Ability { id: "F62", source: "The Manipulator" } +543.4 "Carnage" Ability { id: "F63", source: "The Manipulator" } +545.5 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } 547.6 "--stun--" duration 5 -553.4 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -564.5 "Carnage" sync / 1[56]:[^:]*:The Manipulator:F63:/ -566.6 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -569.6 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ +553.4 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +564.5 "Carnage" Ability { id: "F63", source: "The Manipulator" } +566.6 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +569.6 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } -578.7 "Emergency Quarantine" sync / 1[56]:[^:]*:The Manipulator:F62:/ +578.7 "Emergency Quarantine" Ability { id: "F62", source: "The Manipulator" } 580.8 "--stun--" duration 5 -586.6 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -590.7 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -597.8 "Carnage" sync / 1[56]:[^:]*:The Manipulator:F63:/ -602.9 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -612.9 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ - -625.0 "Emergency Quarantine" sync / 1[56]:[^:]*:The Manipulator:F62:/ window 30,30 jump 532.3 -636.1 "Carnage" #sync / 1[56]:[^:]*:The Manipulator:F63:/ -638.2 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ +586.6 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +590.7 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +597.8 "Carnage" Ability { id: "F63", source: "The Manipulator" } +602.9 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +612.9 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } + +625.0 "Emergency Quarantine" Ability { id: "F62", source: "The Manipulator" } window 30,30 jump 532.3 +636.1 "Carnage" #Ability { id: "F63", source: "The Manipulator" } +638.2 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } 640.3 "--stun--" duration 5 -646.1 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -657.2 "Carnage" #sync / 1[56]:[^:]*:The Manipulator:F63:/ -659.3 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ -662.3 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ +646.1 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +657.2 "Carnage" #Ability { id: "F63", source: "The Manipulator" } +659.3 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } +662.3 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } -671.4 "Emergency Quarantine" #sync / 1[56]:[^:]*:The Manipulator:F62:/ +671.4 "Emergency Quarantine" #Ability { id: "F62", source: "The Manipulator" } 673.5 "--stun--" duration 5 -679.3 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -683.4 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ -690.5 "Carnage" #sync / 1[56]:[^:]*:The Manipulator:F63:/ -695.6 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -705.6 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ +679.3 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +683.4 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } +690.5 "Carnage" #Ability { id: "F63", source: "The Manipulator" } +695.6 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +705.6 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } ### Leg 3 -1000.0 "--sync--" sync / 22:........:The Manipulator:........:The Manipulator:01/ window 490,0 +1000.0 "--sync--" NameToggle { name: "The Manipulator", toggle: "01" } window 490,0 1012.1 "--untargetable--" -1016.2 "--sync--" sync / 14:[^:]*:The Manipulator:13E7:/ window 490,5 -1022.2 "Mortal Revolution" sync / 1[56]:[^:]*:The Manipulator:13E7:/ +1016.2 "--sync--" StartsUsing { id: "13E7", source: "The Manipulator" } window 490,5 +1022.2 "Mortal Revolution" Ability { id: "13E7", source: "The Manipulator" } 1024.2 "--targetable--" -1027.4 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ window 10,10 -1034.5 "Carnage" sync / 1[56]:[^:]*:The Manipulator:F63:/ +1027.4 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } window 10,10 +1034.5 "Carnage" Ability { id: "F63", source: "The Manipulator" } 1040.2 "Straf Doll x1" 1040.2 "Jagd Doll x3" 1044.6 "--stun--" duration 5 -1050.4 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -1057.6 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1062.6 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -1071.7 "Carnage" sync / 1[56]:[^:]*:The Manipulator:F63:/ +1050.4 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +1057.6 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +1062.6 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +1071.7 "Carnage" Ability { id: "F63", source: "The Manipulator" } 1075.4 "--stun--" duration 5 -1081.2 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5D:/ +1081.2 "Perpetual Ray x2" #Ability { id: "F5D", source: "The Manipulator" } -1098.9 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ window 10,10 +1098.9 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } window 10,10 1107.5 "Straf Doll x1" 1107.5 "Jagd Doll x3" 1108.0 "--stun--" duration 5 -1113.8 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -1120.8 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1124.8 "Carnage" sync / 1[56]:[^:]*:The Manipulator:F63:/ -1129.9 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1129.9 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ +1113.8 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +1120.8 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +1124.8 "Carnage" Ability { id: "F63", source: "The Manipulator" } +1129.9 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +1129.9 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } 1135.6 "--stun--" duration 5 -1141.4 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5D:/ +1141.4 "Perpetual Ray x2" #Ability { id: "F5D", source: "The Manipulator" } -1160.2 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ window 10,10 -1167.3 "Carnage" sync / 1[56]:[^:]*:The Manipulator:F63:/ window 20,20 jump 1034.5 +1160.2 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } window 10,10 +1167.3 "Carnage" Ability { id: "F63", source: "The Manipulator" } window 20,20 jump 1034.5 1173.0 "Straf Doll x1" 1173.0 "Jagd Doll x3" 1177.4 "--stun--" duration 5 -1183.2 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -1190.4 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1195.4 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ -1204.5 "Carnage" #sync / 1[56]:[^:]*:The Manipulator:F63:/ +1183.2 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +1190.4 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +1195.4 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } +1204.5 "Carnage" #Ability { id: "F63", source: "The Manipulator" } 1208.2 "--stun--" duration 5 -1214.0 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5D:/ +1214.0 "Perpetual Ray x2" #Ability { id: "F5D", source: "The Manipulator" } -1231.7 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ +1231.7 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } 1240.3 "Straf Doll x1" 1240.3 "Jagd Doll x3" 1240.8 "--stun--" duration 5 -1246.6 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -1253.6 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1257.6 "Carnage" #sync / 1[56]:[^:]*:The Manipulator:F63:/ -1262.7 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1262.7 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ +1246.6 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +1253.6 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +1257.6 "Carnage" #Ability { id: "F63", source: "The Manipulator" } +1262.7 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +1262.7 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } 1268.4 "--stun--" duration 5 -1274.2 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5D:/ +1274.2 "Perpetual Ray x2" #Ability { id: "F5D", source: "The Manipulator" } ### Leg 4 -1500.0 "--sync--" sync / 22:........:The Manipulator:........:The Manipulator:01/ window 490,0 +1500.0 "--sync--" NameToggle { name: "The Manipulator", toggle: "01" } window 490,0 1512.1 "--untargetable--" -1516.2 "--sync--" sync / 14:[^:]*:The Manipulator:13E7:/ window 490,5 -1522.2 "Mortal Revolution" sync / 1[56]:[^:]*:The Manipulator:13E7:/ +1516.2 "--sync--" StartsUsing { id: "13E7", source: "The Manipulator" } window 490,5 +1522.2 "Mortal Revolution" Ability { id: "13E7", source: "The Manipulator" } 1524.2 "--targetable--" -1528.4 "Judgment Nisi" sync / 1[56]:[^:]*:The Manipulator:F64:/ +1528.4 "Judgment Nisi" Ability { id: "F64", source: "The Manipulator" } 1535.9 "Straf Doll x1" 1535.9 "Jagd Doll x3" 1540.6 "--stun--" duration 5 -1546.4 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -1556.5 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1563.5 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ window 10,10 - -1573.6 "Discoid" sync / 1[56]:[^:]*:The Manipulator:F61:/ -1582.8 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1587.8 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1589.8 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ window 10,10 +1546.4 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +1556.5 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +1563.5 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } window 10,10 + +1573.6 "Discoid" Ability { id: "F61", source: "The Manipulator" } +1582.8 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +1587.8 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +1589.8 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } window 10,10 1598.0 "Straf Doll x1" 1598.0 "Jagd Doll x3" 1605.0 "--stun--" duration 5 -1610.8 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ -1615.9 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ window 10,10 +1610.8 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } +1615.9 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } window 10,10 # ??? Guessing at this loop. -1621.0 "Discoid" sync / 1[56]:[^:]*:The Manipulator:F61:/ window 30,30 jump 1573.6 -1630.2 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1635.2 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -1637.2 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ window 10,10 +1621.0 "Discoid" Ability { id: "F61", source: "The Manipulator" } window 30,30 jump 1573.6 +1630.2 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +1635.2 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +1637.2 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } window 10,10 1645.4 "Straf Doll x1" 1645.4 "Jagd Doll x3" 1652.4 "--stun--" duration 5 -1658.2 "Perpetual Ray x2" #sync / 1[56]:[^:]*:The Manipulator:F5F:/ +1658.2 "Perpetual Ray x2" #Ability { id: "F5F", source: "The Manipulator" } ### Final Phase -2000.0 "--sync--" sync / 22:........:The Manipulator:........:The Manipulator:01/ window 490,0 +2000.0 "--sync--" NameToggle { name: "The Manipulator", toggle: "01" } window 490,0 2012.1 "--untargetable--" -2016.2 "--sync--" sync / 14:[^:]*:The Manipulator:13E7:/ window 490,5 -2022.2 "Mortal Revolution" sync / 1[56]:[^:]*:The Manipulator:13E7:/ +2016.2 "--sync--" StartsUsing { id: "13E7", source: "The Manipulator" } window 490,5 +2022.2 "Mortal Revolution" Ability { id: "13E7", source: "The Manipulator" } 2024.2 "--targetable--" -2033.3 "Carnage Zero" sync / 1[56]:[^:]*:The Manipulator:F5E:/ -2041.4 "Discoid" sync / 1[56]:[^:]*:The Manipulator:F61:/ -2052.5 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -2053.5 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -2058.6 "Carnage Zero" sync / 1[56]:[^:]*:The Manipulator:F5E:/ +2033.3 "Carnage Zero" Ability { id: "F5E", source: "The Manipulator" } +2041.4 "Discoid" Ability { id: "F61", source: "The Manipulator" } +2052.5 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +2053.5 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +2058.6 "Carnage Zero" Ability { id: "F5E", source: "The Manipulator" } -2072.8 "Royal Pentacle" sync / 1[56]:[^:]*:The Manipulator:F66:/ -2074.9 "Perpetual Ray x5" duration 8.4 #sync / 1[56]:[^:]*:The Manipulator:13B6:/ -2085.4 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -2105.6 "Carnage" sync / 1[56]:[^:]*:The Manipulator:F63:/ +2072.8 "Royal Pentacle" Ability { id: "F66", source: "The Manipulator" } +2074.9 "Perpetual Ray x5" duration 8.4 #Ability { id: "13B6", source: "The Manipulator" } +2085.4 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +2105.6 "Carnage" Ability { id: "F63", source: "The Manipulator" } 2114.6 "Straf Doll x1" 2114.6 "Jagd Doll x3" -2116.8 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -2122.9 "Carnage Zero" sync / 1[56]:[^:]*:The Manipulator:F5E:/ -2122.9 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -2128.0 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -2140.0 "Carnage Zero" sync / 1[56]:[^:]*:The Manipulator:F5E:/ -2148.2 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ - -2161.3 "Carnage Zero" sync / 1[56]:[^:]*:The Manipulator:F5E:/ -2169.5 "Discoid" sync / 1[56]:[^:]*:The Manipulator:F61:/ -2180.6 "Seed Of The Sky" sync / 1[56]:[^:]*:The Manipulator:13D0:/ -2181.6 "Hydrothermal Missile" sync / 1[56]:[^:]*:The Manipulator:F5B:/ -2186.7 "Carnage Zero" sync / 1[56]:[^:]*:The Manipulator:F5E:/ - -2200.9 "Royal Pentacle" sync / 1[56]:[^:]*:The Manipulator:F66:/ window 40,40 jump 2072.8 -2203.0 "Perpetual Ray x5" duration 8.4 #sync / 1[56]:[^:]*:The Manipulator:13B6:/ -2213.5 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ -2233.7 "Carnage" #sync / 1[56]:[^:]*:The Manipulator:F63:/ -2244.9 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ -2251.0 "Carnage Zero" #sync / 1[56]:[^:]*:The Manipulator:F5E:/ -2251.0 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -2256.1 "Seed Of The Sky" #sync / 1[56]:[^:]*:The Manipulator:13D0:/ -2268.1 "Carnage Zero" #sync / 1[56]:[^:]*:The Manipulator:F5E:/ -2276.3 "Hydrothermal Missile" #sync / 1[56]:[^:]*:The Manipulator:F5B:/ +2116.8 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +2122.9 "Carnage Zero" Ability { id: "F5E", source: "The Manipulator" } +2122.9 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +2128.0 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +2140.0 "Carnage Zero" Ability { id: "F5E", source: "The Manipulator" } +2148.2 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } + +2161.3 "Carnage Zero" Ability { id: "F5E", source: "The Manipulator" } +2169.5 "Discoid" Ability { id: "F61", source: "The Manipulator" } +2180.6 "Seed Of The Sky" Ability { id: "13D0", source: "The Manipulator" } +2181.6 "Hydrothermal Missile" Ability { id: "F5B", source: "The Manipulator" } +2186.7 "Carnage Zero" Ability { id: "F5E", source: "The Manipulator" } + +2200.9 "Royal Pentacle" Ability { id: "F66", source: "The Manipulator" } window 40,40 jump 2072.8 +2203.0 "Perpetual Ray x5" duration 8.4 #Ability { id: "13B6", source: "The Manipulator" } +2213.5 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } +2233.7 "Carnage" #Ability { id: "F63", source: "The Manipulator" } +2244.9 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } +2251.0 "Carnage Zero" #Ability { id: "F5E", source: "The Manipulator" } +2251.0 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +2256.1 "Seed Of The Sky" #Ability { id: "13D0", source: "The Manipulator" } +2268.1 "Carnage Zero" #Ability { id: "F5E", source: "The Manipulator" } +2276.3 "Hydrothermal Missile" #Ability { id: "F5B", source: "The Manipulator" } ### Enrage # Note: Manipulator won't enrage until all legs have been killed. -2500.0 "--sync--" sync / 14:[^:]*:The Manipulator:13E7:/ window 480,480 -2506.0 "Mortal Revolution Enrage" sync / 1[56]:[^:]*:The Manipulator:13E7:/ +2500.0 "--sync--" StartsUsing { id: "13E7", source: "The Manipulator" } window 480,480 +2506.0 "Mortal Revolution Enrage" Ability { id: "13E7", source: "The Manipulator" } diff --git a/ui/raidboss/data/03-hw/raid/a5s.txt b/ui/raidboss/data/03-hw/raid/a5s.txt index afcaf7cc57..bb01bfaca5 100644 --- a/ui/raidboss/data/03-hw/raid/a5s.txt +++ b/ui/raidboss/data/03-hw/raid/a5s.txt @@ -9,166 +9,166 @@ hideall "Relaxant" ### Hummel and Friends # The Clevering will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6AF:/ window 1000,0 -1009.8 "Kaltstrahl x1" sync / 1[56]:[^:]*:Faust:16CC:/ window 10,5 -1018.9 "Kaltstrahl x2" duration 2.1 sync / 1[56]:[^:]*:Faust:16CC:/ window 5,0.5 -#1021.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:16CC:/ -1032.1 "Kaltstrahl x3" duration 4.2 sync / 1[56]:[^:]*:Faust:16CC:/ window 5,0.5 -#1034.2 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:16CC:/ -#1036.3 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:16CC:/ -1043.4 "Kaltstrahl x3" duration 4.2 sync / 1[56]:[^:]*:Faust:16CC:/ window 5,0.5 -#1045.5 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:16CC:/ -#1047.6 "Kaltstrahl" sync / 1[56]:[^:]*:Faust:16CC:/ - -1051.6 "--sync--" sync / 14:[^:]*:Hummelfaust:16D2:/ window 52,10 -1056.6 "Panzer Vor" sync / 1[56]:[^:]*:Hummelfaust:16D2:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6AF" } window 1000,0 +1009.8 "Kaltstrahl x1" Ability { id: "16CC", source: "Faust" } window 10,5 +1018.9 "Kaltstrahl x2" duration 2.1 Ability { id: "16CC", source: "Faust" } window 5,0.5 +#1021.0 "Kaltstrahl" Ability { id: "16CC", source: "Faust" } +1032.1 "Kaltstrahl x3" duration 4.2 Ability { id: "16CC", source: "Faust" } window 5,0.5 +#1034.2 "Kaltstrahl" Ability { id: "16CC", source: "Faust" } +#1036.3 "Kaltstrahl" Ability { id: "16CC", source: "Faust" } +1043.4 "Kaltstrahl x3" duration 4.2 Ability { id: "16CC", source: "Faust" } window 5,0.5 +#1045.5 "Kaltstrahl" Ability { id: "16CC", source: "Faust" } +#1047.6 "Kaltstrahl" Ability { id: "16CC", source: "Faust" } + +1051.6 "--sync--" StartsUsing { id: "16D2", source: "Hummelfaust" } window 52,10 +1056.6 "Panzer Vor" Ability { id: "16D2", source: "Hummelfaust" } # Note: if previous Fausts haven't been destroyed, # There's a 3.7 second delay for Reducible Complexity + Pressure Increase. # These two have been adjusted backwards in time by this to re-sync for it. # Assume this will not happen in general though. -1053.4 "--sync--" sync / 1[56]:[^:]*:Faust:16CF:/ window 10,10 # Reducible Complexity -1056.0 "--sync--" sync / 1[56]:[^:]*:Hummelfaust:16CD:/ window 10,10 # Pressure Increase. - -1065.2 "Kaltstrahl x2" duration 2.1 sync / 1[56]:[^:]*:Hummelfaust:16CE:/ window 5,0.5 -#1067.3 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ -1085.4 "Kaltstrahl x3" duration 4.2 sync / 1[56]:[^:]*:Hummelfaust:16CE:/ window 5,0.5 -#1087.5 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ -#1089.6 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ -1101.7 "Panzerschreck" sync / 1[56]:[^:]*:Hummelfaust:16D0:/ window 15,15 -1110.9 "Kaltstrahl x4" duration 6.3 sync / 1[56]:[^:]*:Hummelfaust:16CE:/ window 5,0.5 -#1113.0 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ -#1115.1 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ -#1117.2 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ -1128.3 "Panzerschreck" sync / 1[56]:[^:]*:Hummelfaust:16D0:/ -1134.4 "Panzerschreck" sync / 1[56]:[^:]*:Hummelfaust:16D0:/ -1138.5 "Kaltstrahl x4" duration 6.3 sync / 1[56]:[^:]*:Hummelfaust:16CE:/ window 5,0.5 -#1140.6 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ -#1142.7 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ -#1144.8 "Kaltstrahl" sync / 1[56]:[^:]*:Hummelfaust:16CE:/ +1053.4 "--sync--" Ability { id: "16CF", source: "Faust" } window 10,10 # Reducible Complexity +1056.0 "--sync--" Ability { id: "16CD", source: "Hummelfaust" } window 10,10 # Pressure Increase. + +1065.2 "Kaltstrahl x2" duration 2.1 Ability { id: "16CE", source: "Hummelfaust" } window 5,0.5 +#1067.3 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } +1085.4 "Kaltstrahl x3" duration 4.2 Ability { id: "16CE", source: "Hummelfaust" } window 5,0.5 +#1087.5 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } +#1089.6 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } +1101.7 "Panzerschreck" Ability { id: "16D0", source: "Hummelfaust" } window 15,15 +1110.9 "Kaltstrahl x4" duration 6.3 Ability { id: "16CE", source: "Hummelfaust" } window 5,0.5 +#1113.0 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } +#1115.1 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } +#1117.2 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } +1128.3 "Panzerschreck" Ability { id: "16D0", source: "Hummelfaust" } +1134.4 "Panzerschreck" Ability { id: "16D0", source: "Hummelfaust" } +1138.5 "Kaltstrahl x4" duration 6.3 Ability { id: "16CE", source: "Hummelfaust" } window 5,0.5 +#1140.6 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } +#1142.7 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } +#1144.8 "Kaltstrahl" Ability { id: "16CE", source: "Hummelfaust" } # FIXME: maybe more abilities if Fausts are pushed quickly? # Time-based enrage. -1150.7 "--sync--" sync / 14:[^:]*:Hummelfaust:16D1:/ window 151,20 -1154.7 "Panzerschreck Enrage" sync / 1[56]:[^:]*:Hummelfaust:16D1:/ +1150.7 "--sync--" StartsUsing { id: "16D1", source: "Hummelfaust" } window 151,20 +1154.7 "Panzerschreck Enrage" Ability { id: "16D1", source: "Hummelfaust" } ### Ratfinx Twinkledinks # This happens so quickly, no need for "Advanced Clevering will be sealed off". 2000.0 "Start" -2001.0 "Guzzle" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1598:/ window 2001,30 -2005.6 "--big--" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1599:/ -2009.1 "Gobjab 1" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2013.2 "Gobjab 2" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2017.3 "Gobjab 3" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2021.4 "Gobjab 4" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2028.5 "Gobstraight/Cut" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A[AC]:/ -2041.1 "Gobdash" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AF:/ +2001.0 "Guzzle" Ability { id: "1598", source: "Ratfinx Twinkledinks" } window 2001,30 +2005.6 "--big--" Ability { id: "1599", source: "Ratfinx Twinkledinks" } +2009.1 "Gobjab 1" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2013.2 "Gobjab 2" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2017.3 "Gobjab 3" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2021.4 "Gobjab 4" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2028.5 "Gobstraight/Cut" Ability { id: "16A[AC]", source: "Ratfinx Twinkledinks" } +2041.1 "Gobdash" Ability { id: "16AF", source: "Ratfinx Twinkledinks" } # will push at 90% -2047.3 "Relaxant" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159B:/ window 50,20 -2049.4 "--small--" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1687:/ -2058.9 "Glupgloop" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AE:/ +2047.3 "Relaxant" Ability { id: "159B", source: "Ratfinx Twinkledinks" } window 50,20 +2049.4 "--small--" Ability { id: "1687", source: "Ratfinx Twinkledinks" } +2058.9 "Glupgloop" Ability { id: "16AE", source: "Ratfinx Twinkledinks" } 2068.0 "Cobra x2 (NE/SE)" -2069.0 "Glupgloop" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AE:/ -2074.1 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2077.3 "Steel Scales" #sync / 1[56]:[^:]*:Glassy-Eyed Cobra:16A2:/ -2078.5 "Regorge" #sync / 1[56]:[^:]*:Glassy-Eyed Cobra:16A1:/ -2085.3 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ - -2098.5 "Bomb's Away" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1590:/ -2112.4 "Tetra Burst" sync / 1[56]:[^:]*:Bomb:16A3:/ -2112.6 "Big Burst" sync / 1[56]:[^:]*:Smartbomb:16A5:/ -2118.6 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ - -2123.8 "Guzzle" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1598:/ window 110,20 -2128.4 "--big--" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1599:/ -2135.9 "Boost" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A6:/ -2139.1 "Gobswing x4" duration 6.3 #sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A7:/ -2144.9 "Tetra Burst 1" #sync / 1[56]:[^:]*:Bomb:16A3:/ -2145.9 "Tetra Burst 2" #sync / 1[56]:[^:]*:Bomb:16A3:/ -2146.9 "Tetra Burst 3" #sync / 1[56]:[^:]*:Bomb:16A3:/ -2147.9 "Tetra Burst 4" #sync / 1[56]:[^:]*:Bomb:16A3:/ -2158.1 "Gobdash" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AF:/ -2164.2 "Gobhook" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:15A0:/ -2171.4 "Gobjab 1" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2175.5 "Gobjab 2" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2179.6 "Gobjab 3" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2183.7 "Gobjab 4" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2191.8 "Gobcut/Straight" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A[AC]:/ - -2201.0 "Relaxant" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159B:/ window 140,20 -2203.1 "--small--" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1687:/ +2069.0 "Glupgloop" Ability { id: "16AE", source: "Ratfinx Twinkledinks" } +2074.1 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2077.3 "Steel Scales" #Ability { id: "16A2", source: "Glassy-Eyed Cobra" } +2078.5 "Regorge" #Ability { id: "16A1", source: "Glassy-Eyed Cobra" } +2085.3 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } + +2098.5 "Bomb's Away" Ability { id: "1590", source: "Ratfinx Twinkledinks" } +2112.4 "Tetra Burst" Ability { id: "16A3", source: "Bomb" } +2112.6 "Big Burst" Ability { id: "16A5", source: "Smartbomb" } +2118.6 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } + +2123.8 "Guzzle" Ability { id: "1598", source: "Ratfinx Twinkledinks" } window 110,20 +2128.4 "--big--" Ability { id: "1599", source: "Ratfinx Twinkledinks" } +2135.9 "Boost" Ability { id: "16A6", source: "Ratfinx Twinkledinks" } +2139.1 "Gobswing x4" duration 6.3 #Ability { id: "16A7", source: "Ratfinx Twinkledinks" } +2144.9 "Tetra Burst 1" #Ability { id: "16A3", source: "Bomb" } +2145.9 "Tetra Burst 2" #Ability { id: "16A3", source: "Bomb" } +2146.9 "Tetra Burst 3" #Ability { id: "16A3", source: "Bomb" } +2147.9 "Tetra Burst 4" #Ability { id: "16A3", source: "Bomb" } +2158.1 "Gobdash" Ability { id: "16AF", source: "Ratfinx Twinkledinks" } +2164.2 "Gobhook" Ability { id: "15A0", source: "Ratfinx Twinkledinks" } +2171.4 "Gobjab 1" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2175.5 "Gobjab 2" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2179.6 "Gobjab 3" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2183.7 "Gobjab 4" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2191.8 "Gobcut/Straight" Ability { id: "16A[AC]", source: "Ratfinx Twinkledinks" } + +2201.0 "Relaxant" Ability { id: "159B", source: "Ratfinx Twinkledinks" } window 140,20 +2203.1 "--small--" Ability { id: "1687", source: "Ratfinx Twinkledinks" } 2203.6 "Gobbledygroper Add" -2214.1 "The Lion's Breath" #sync / 1[56]:[^:]*:Gobbledygroper:16A8:/ -2230.6 "Glupgloop" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AE:/ -2237.7 "Bomb's Away" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1590:/ -2242.8 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2243.0 "Tetra Burst" sync / 1[56]:[^:]*:Bomb:16A3:/ -2250.9 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2251.8 "Big Burst" sync / 1[56]:[^:]*:Smartbomb:16A5:/ -2252.0 "Tetra Burst" sync / 1[56]:[^:]*:Bomb:16A3:/ -2259.0 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2267.1 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2275.3 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ - -2277.5 "Guzzle" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1598:/ window 140,20 -2282.1 "--big--" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1599:/ -2289.6 "Boost" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A6:/ -2292.8 "Gobswing x4" duration 6.3 #sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A7:/ -2298.7 "Tetra Burst x4" sync / 1[56]:[^:]*:Bomb:16A3:/ -2321.2 "Gobstraight/Cut" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A[AC]:/ -2325.5 "Gobdash" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AF:/ -2329.2 "Gobdash" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AF:/ -2336.0 "Gobhook" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:15A0:/ - -2343.5 "Gobjab 1" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2347.6 "Gobjab 2" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2351.7 "Gobjab 3" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2355.8 "Gobjab 4" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2362.9 "Gobcut/Straight" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A[AC]:/ - -2381.1 "Relaxant" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159B:/ window 170,20 -2383.2 "--small--" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1687:/ +2214.1 "The Lion's Breath" #Ability { id: "16A8", source: "Gobbledygroper" } +2230.6 "Glupgloop" Ability { id: "16AE", source: "Ratfinx Twinkledinks" } +2237.7 "Bomb's Away" Ability { id: "1590", source: "Ratfinx Twinkledinks" } +2242.8 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2243.0 "Tetra Burst" Ability { id: "16A3", source: "Bomb" } +2250.9 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2251.8 "Big Burst" Ability { id: "16A5", source: "Smartbomb" } +2252.0 "Tetra Burst" Ability { id: "16A3", source: "Bomb" } +2259.0 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2267.1 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2275.3 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } + +2277.5 "Guzzle" Ability { id: "1598", source: "Ratfinx Twinkledinks" } window 140,20 +2282.1 "--big--" Ability { id: "1599", source: "Ratfinx Twinkledinks" } +2289.6 "Boost" Ability { id: "16A6", source: "Ratfinx Twinkledinks" } +2292.8 "Gobswing x4" duration 6.3 #Ability { id: "16A7", source: "Ratfinx Twinkledinks" } +2298.7 "Tetra Burst x4" Ability { id: "16A3", source: "Bomb" } +2321.2 "Gobstraight/Cut" Ability { id: "16A[AC]", source: "Ratfinx Twinkledinks" } +2325.5 "Gobdash" Ability { id: "16AF", source: "Ratfinx Twinkledinks" } +2329.2 "Gobdash" Ability { id: "16AF", source: "Ratfinx Twinkledinks" } +2336.0 "Gobhook" Ability { id: "15A0", source: "Ratfinx Twinkledinks" } + +2343.5 "Gobjab 1" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2347.6 "Gobjab 2" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2351.7 "Gobjab 3" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2355.8 "Gobjab 4" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2362.9 "Gobcut/Straight" Ability { id: "16A[AC]", source: "Ratfinx Twinkledinks" } + +2381.1 "Relaxant" Ability { id: "159B", source: "Ratfinx Twinkledinks" } window 170,20 +2383.2 "--small--" Ability { id: "1687", source: "Ratfinx Twinkledinks" } 2386.7 "Minotaur (NW)" 2386.7 "Yorn Pig x6 (NE)" 2390.8 "Gobbledygawker x2 (SE/SW)" -2398.1 "10-Tonze Slash" #sync / 1[56]:[^:]*:Glassy-Eyed Minotaur:16A0:/ -2399.2 "Oogle" #sync / 1[56]:[^:]*:Gobbledygawker:169C:/ +2398.1 "10-Tonze Slash" #Ability { id: "16A0", source: "Glassy-Eyed Minotaur" } +2399.2 "Oogle" #Ability { id: "169C", source: "Gobbledygawker" } 2407.6 "Yorn Pig x3 (NW)" -2410.8 "Glupgloop" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AE:/ +2410.8 "Glupgloop" Ability { id: "16AE", source: "Ratfinx Twinkledinks" } 2411.8 "Cobra (NE)" 2414.4 "Shabti (SE)" -2415.3 "Feast" #sync / 1[56]:[^:]*:Glassy-Eyed Minotaur:169A:/ -2420.4 "Disorienting Groan" #sync / 1[56]:[^:]*:Glassy-Eyed Minotaur:169B:/ -2433.5 "10-Tonze Slash" #sync / 1[56]:[^:]*:Glassy-Eyed Minotaur:16A0:/ -2435.0 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2443.2 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2451.4 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2459.5 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ -2467.7 "Shock Therapy" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ - -2472.9 "Guzzle" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1598:/ window 190,20 -2477.5 "--big--" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1599:/ -2485.0 "Gobjab 1" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2489.1 "Gobjab 2" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2493.2 "Gobjab 3" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2497.3 "Gobjab 4" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A9:/ -2505.4 "Gobstraight/Cut" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16A[AC]:/ - -2513.6 "Relaxant" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159B:/ window 180,20 -2515.7 "--small--" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:1687:/ +2415.3 "Feast" #Ability { id: "169A", source: "Glassy-Eyed Minotaur" } +2420.4 "Disorienting Groan" #Ability { id: "169B", source: "Glassy-Eyed Minotaur" } +2433.5 "10-Tonze Slash" #Ability { id: "16A0", source: "Glassy-Eyed Minotaur" } +2435.0 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2443.2 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2451.4 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2459.5 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } +2467.7 "Shock Therapy" Ability { id: "159C", source: "Ratfinx Twinkledinks" } + +2472.9 "Guzzle" Ability { id: "1598", source: "Ratfinx Twinkledinks" } window 190,20 +2477.5 "--big--" Ability { id: "1599", source: "Ratfinx Twinkledinks" } +2485.0 "Gobjab 1" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2489.1 "Gobjab 2" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2493.2 "Gobjab 3" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2497.3 "Gobjab 4" Ability { id: "16A9", source: "Ratfinx Twinkledinks" } +2505.4 "Gobstraight/Cut" Ability { id: "16A[AC]", source: "Ratfinx Twinkledinks" } + +2513.6 "Relaxant" Ability { id: "159B", source: "Ratfinx Twinkledinks" } window 180,20 +2515.7 "--small--" Ability { id: "1687", source: "Ratfinx Twinkledinks" } 2516.4 "Gobbledygroper Add" -2526.7 "The Lion's Breath" #sync / 1[56]:[^:]*:Gobbledygroper:16A8:/ -2532.9 "The Lion's Breath" #sync / 1[56]:[^:]*:Gobbledygroper:16A8:/ -2543.3 "Glupgloop" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:16AE:/ -2555.7 "Tetra Burst" sync / 1[56]:[^:]*:Bomb:16A3:/ +2526.7 "The Lion's Breath" #Ability { id: "16A8", source: "Gobbledygroper" } +2532.9 "The Lion's Breath" #Ability { id: "16A8", source: "Gobbledygroper" } +2543.3 "Glupgloop" Ability { id: "16AE", source: "Ratfinx Twinkledinks" } +2555.7 "Tetra Burst" Ability { id: "16A3", source: "Bomb" } # TODO: Maybe there are more mechanics here if you pushed the first phase quickly? ### Enrage (time-based) # We could sync down here on an 16A4 ability, which is the damage, # but that point you're dead. -2700.0 "--sync--" sync / 14:[^:]*:Ratfinx Twinkledinks:159C:/ window 200,200 -2703.0 "Shock Therapy Enrage" sync / 1[56]:[^:]*:Ratfinx Twinkledinks:159C:/ +2700.0 "--sync--" StartsUsing { id: "159C", source: "Ratfinx Twinkledinks" } window 200,200 +2703.0 "Shock Therapy Enrage" Ability { id: "159C", source: "Ratfinx Twinkledinks" } diff --git a/ui/raidboss/data/03-hw/raid/a6n.txt b/ui/raidboss/data/03-hw/raid/a6n.txt index bb764a64a4..beae02cc4b 100644 --- a/ui/raidboss/data/03-hw/raid/a6n.txt +++ b/ui/raidboss/data/03-hw/raid/a6n.txt @@ -5,19 +5,19 @@ # -ii 170E # Machinery Bay 67 will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6B7:/ window 1,0 -6.8 "Brute Force" sync / 1[56]:[^:]*:Blaster:170A:/ window 6.8,5 -10.9 "Mind Blast" sync / 1[56]:[^:]*:Blaster:170B:/ -15.0 "Ballistic Missile" sync / 1[56]:[^:]*:Blaster:15F4:/ -19.1 "Brute Force" sync / 1[56]:[^:]*:Blaster:170A:/ -20.0 "Minefield" sync / 1[56]:[^:]*:Blaster:170D:/ -29.2 "Brute Force" sync / 1[56]:[^:]*:Blaster:170A:/ -33.3 "Mind Blast" sync / 1[56]:[^:]*:Blaster:170B:/ -42.5 "Mirage" sync / 1[56]:[^:]*:Blaster Mirage:1712:/ window 15,15 -48.7 "Supercharge" # sync / 1[56]:[^:]*:Blaster Mirage:1713:/ -53.8 "Mind Blast" sync / 1[56]:[^:]*:Blaster:170B:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6B7" } window 1,0 +6.8 "Brute Force" Ability { id: "170A", source: "Blaster" } window 6.8,5 +10.9 "Mind Blast" Ability { id: "170B", source: "Blaster" } +15.0 "Ballistic Missile" Ability { id: "15F4", source: "Blaster" } +19.1 "Brute Force" Ability { id: "170A", source: "Blaster" } +20.0 "Minefield" Ability { id: "170D", source: "Blaster" } +29.2 "Brute Force" Ability { id: "170A", source: "Blaster" } +33.3 "Mind Blast" Ability { id: "170B", source: "Blaster" } +42.5 "Mirage" Ability { id: "1712", source: "Blaster Mirage" } window 15,15 +48.7 "Supercharge" # Ability { id: "1713", source: "Blaster Mirage" } +53.8 "Mind Blast" Ability { id: "170B", source: "Blaster" } -61.9 "Brute Force" sync / 1[56]:[^:]*:Blaster:170A:/ jump 6.8 +61.9 "Brute Force" Ability { id: "170A", source: "Blaster" } jump 6.8 66.0 "Mind Blast" 70.1 "Ballistic Missile" 74.2 "Brute Force" @@ -27,16 +27,16 @@ ### Brawler # Machinery Bay 68 will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6B8:/ window 1000,0 -1008.7 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:1715:/ window 8.7,5 -1010.8 "Attachment" sync / 1[56]:[^:]*:Brawler:1601:/ -1017.0 "Single Buster/Double Buster/Rocket Drill" sync / 1[56]:[^:]*:Brawler:(1717|1718|1719):/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6B8" } window 1000,0 +1008.7 "Magicked Mark" Ability { id: "1715", source: "Brawler" } window 8.7,5 +1010.8 "Attachment" Ability { id: "1601", source: "Brawler" } +1017.0 "Single Buster/Double Buster/Rocket Drill" Ability { id: ["1717", "1718", "1719"], source: "Brawler" } -1022.1 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:1715:/ -1024.2 "Attachment" sync / 1[56]:[^:]*:Brawler:1601:/ window 5,5 -1030.3 "Single Buster/Double Buster/Rocket Drill" sync / 1[56]:[^:]*:Brawler:(1717|1718|1719):/ +1022.1 "Magicked Mark" Ability { id: "1715", source: "Brawler" } +1024.2 "Attachment" Ability { id: "1601", source: "Brawler" } window 5,5 +1030.3 "Single Buster/Double Buster/Rocket Drill" Ability { id: ["1717", "1718", "1719"], source: "Brawler" } -1035.4 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:1715:/ jump 1022.1 +1035.4 "Magicked Mark" Ability { id: "1715", source: "Brawler" } jump 1022.1 1037.5 "Attachment" 1043.6 "Single Buster/Double Buster/Rocket Drill" 1048.7 "Magicked Mark" @@ -47,17 +47,17 @@ ### Swindler # -ii 171D # Machinery Bay 69 will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6B9:/ window 2000,0 -2006.5 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:171B:/ -2015.6 "Height" sync / 1[56]:[^:]*:Swindler:171C:/ window 15.6,20 -2018.8 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:171B:/ -2026.9 "Bio-Arithmeticks" sync / 1[56]:[^:]*:Swindler:171F:/ -2029.0 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:171B:/ -2034.0 "Enumeration" sync / 1[56]:[^:]*:Swindler:171E:/ window 20,20 -2039.1 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:171B:/ -2044.2 "Bio-Arithmeticks" sync / 1[56]:[^:]*:Swindler:171F:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6B9" } window 2000,0 +2006.5 "Magicked Mark" Ability { id: "171B", source: "Swindler" } +2015.6 "Height" Ability { id: "171C", source: "Swindler" } window 15.6,20 +2018.8 "Magicked Mark" Ability { id: "171B", source: "Swindler" } +2026.9 "Bio-Arithmeticks" Ability { id: "171F", source: "Swindler" } +2029.0 "Magicked Mark" Ability { id: "171B", source: "Swindler" } +2034.0 "Enumeration" Ability { id: "171E", source: "Swindler" } window 20,20 +2039.1 "Magicked Mark" Ability { id: "171B", source: "Swindler" } +2044.2 "Bio-Arithmeticks" Ability { id: "171F", source: "Swindler" } -2052.4 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:171B:/ jump 2006.5 +2052.4 "Magicked Mark" Ability { id: "171B", source: "Swindler" } jump 2006.5 2061.5 "Height" 2064.7 "Magicked Mark" 2072.8 "Bio-Arithmeticks" @@ -67,22 +67,22 @@ ### Vortexer # Machinery Bay 70 will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6BA:/ window 3000,0 -3007.3 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1721:/ window 7.3,5 -3017.4 "Elemental Jammer" sync / 1[56]:[^:]*:Vortexer:161B:/ -3019.5 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1622:/ -3023.6 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1721:/ -3025.5 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1726:/ -3031.7 "Super Cyclone" sync / 1[56]:[^:]*:Vortexer:1728:/ window 15,15 -3039.1 "Crashing Wave" sync / 1[56]:[^:]*:Vortexer:1724:/ -3040.9 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1721:/ -3047.0 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1622:/ -3052.3 "Ice Missile" sync / 1[56]:[^:]*:Vortexer:1727:/ -3059.1 "Super Cyclone" sync / 1[56]:[^:]*:Vortexer:1728:/ -3065.3 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1721:/ -3080.4 "Ultra Flash" sync / 1[56]:[^:]*:Vortexer:1722:/ window 30,30 +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6BA" } window 3000,0 +3007.3 "Brute Force" Ability { id: "1721", source: "Vortexer" } window 7.3,5 +3017.4 "Elemental Jammer" Ability { id: "161B", source: "Vortexer" } +3019.5 "Ballistic Missile" Ability { id: "1622", source: "Vortexer" } +3023.6 "Brute Force" Ability { id: "1721", source: "Vortexer" } +3025.5 "Earth Missile" Ability { id: "1726", source: "Vortexer" } +3031.7 "Super Cyclone" Ability { id: "1728", source: "Vortexer" } window 15,15 +3039.1 "Crashing Wave" Ability { id: "1724", source: "Vortexer" } +3040.9 "Brute Force" Ability { id: "1721", source: "Vortexer" } +3047.0 "Ballistic Missile" Ability { id: "1622", source: "Vortexer" } +3052.3 "Ice Missile" Ability { id: "1727", source: "Vortexer" } +3059.1 "Super Cyclone" Ability { id: "1728", source: "Vortexer" } +3065.3 "Brute Force" Ability { id: "1721", source: "Vortexer" } +3080.4 "Ultra Flash" Ability { id: "1722", source: "Vortexer" } window 30,30 -3082.5 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1721:/ jump 3007.3 +3082.5 "Brute Force" Ability { id: "1721", source: "Vortexer" } jump 3007.3 3092.6 "Elemental Jammer" 3094.7 "Ballistic Missile" 3098.8 "Brute Force" diff --git a/ui/raidboss/data/03-hw/raid/a6s.txt b/ui/raidboss/data/03-hw/raid/a6s.txt index 4d7f61af55..d45e6d1eca 100644 --- a/ui/raidboss/data/03-hw/raid/a6s.txt +++ b/ui/raidboss/data/03-hw/raid/a6s.txt @@ -8,54 +8,54 @@ hideall "Ballistic Missile" ### Blaster # Machinery Bay 67 will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6B7:/ window 1,0 -7.0 "Brute Force" sync / 1[56]:[^:]*:Blaster:15F2:/ window 10,10 -14.1 "Mind Blast" sync / 1[56]:[^:]*:Blaster:15F3:/ -18.2 "Ballistic Missile" sync / 1[56]:[^:]*:Blaster:15F4:/ -23.2 "Hidden Minefield" sync / 1[56]:[^:]*:Blaster:15F7:/ -31.4 "Mirage" sync / 1[56]:[^:]*:Blaster Mirage:15FA:/ -39.6 "Brute Force" #sync / 1[56]:[^:]*:Blaster:15F2:/ -43.7 "Brute Force" #sync / 1[56]:[^:]*:Blaster:15F2:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6B7" } window 1,0 +7.0 "Brute Force" Ability { id: "15F2", source: "Blaster" } window 10,10 +14.1 "Mind Blast" Ability { id: "15F3", source: "Blaster" } +18.2 "Ballistic Missile" Ability { id: "15F4", source: "Blaster" } +23.2 "Hidden Minefield" Ability { id: "15F7", source: "Blaster" } +31.4 "Mirage" Ability { id: "15FA", source: "Blaster Mirage" } +39.6 "Brute Force" #Ability { id: "15F2", source: "Blaster" } +43.7 "Brute Force" #Ability { id: "15F2", source: "Blaster" } # add phase 46.7 "--untargetable--" 49.9 "--targetable--" -78.0 "Mind Blast" sync / 1[56]:[^:]*:Blaster Mirage:15FE:/ +78.0 "Mind Blast" Ability { id: "15FE", source: "Blaster Mirage" } -85.2 "Mirage" sync / 1[56]:[^:]*:Blaster:15FA:/ window 40,40 +85.2 "Mirage" Ability { id: "15FA", source: "Blaster" } window 40,40 86.2 "--targetable--" -91.3 "Mind Blast" sync / 1[56]:[^:]*:Blaster:15F3:/ -94.5 "Brute Force" sync / 1[56]:[^:]*:Blaster:15F2:/ - -97.6 "Ballistic Missile" sync / 1[56]:[^:]*:Blaster:15F4:/ -101.7 "Brute Force" sync / 1[56]:[^:]*:Blaster:15F2:/ -102.6 "Hidden Minefield" sync / 1[56]:[^:]*:Blaster:15F7:/ -110.9 "Mirage" sync / 1[56]:[^:]*:Blaster Mirage:15FA:/ -120.2 "Brute Force" sync / 1[56]:[^:]*:Blaster:15F2:/ -128.3 "Mind Blast" sync / 1[56]:[^:]*:Blaster:15F3:/ - -130.4 "Ballistic Missile" sync / 1[56]:[^:]*:Blaster:15F4:/ -134.5 "Brute Force" sync / 1[56]:[^:]*:Blaster:15F2:/ -135.4 "Hidden Minefield" sync / 1[56]:[^:]*:Blaster:15F7:/ -143.6 "Mirage" sync / 1[56]:[^:]*:Blaster Mirage:15FA:/ -151.8 "Brute Force" sync / 1[56]:[^:]*:Blaster:15F2:/ -162.9 "Mind Blast" sync / 1[56]:[^:]*:Blaster:15F3:/ -166.1 "Brute Force" sync / 1[56]:[^:]*:Blaster:15F2:/ - -169.2 "Ballistic Missile" sync / 1[56]:[^:]*:Blaster:15F4:/ window 20,20 jump 97.6 -173.3 "Brute Force" #sync / 1[56]:[^:]*:Blaster:15F2:/ -174.2 "Hidden Minefield" #sync / 1[56]:[^:]*:Blaster:15F7:/ -182.5 "Mirage" #sync / 1[56]:[^:]*:Blaster Mirage:15FA:/ -191.8 "Brute Force" #sync / 1[56]:[^:]*:Blaster:15F2:/ -199.9 "Mind Blast" #sync / 1[56]:[^:]*:Blaster:15F3:/ - -202.0 "Ballistic Missile" #sync / 1[56]:[^:]*:Blaster:15F4:/ -206.1 "Brute Force" #sync / 1[56]:[^:]*:Blaster:15F2:/ -207.0 "Hidden Minefield" #sync / 1[56]:[^:]*:Blaster:15F7:/ -215.2 "Mirage" #sync / 1[56]:[^:]*:Blaster Mirage:15FA:/ -223.4 "Brute Force" #sync / 1[56]:[^:]*:Blaster:15F2:/ -234.5 "Mind Blast" #sync / 1[56]:[^:]*:Blaster:15F3:/ -237.7 "Brute Force" #sync / 1[56]:[^:]*:Blaster:15F2:/ +91.3 "Mind Blast" Ability { id: "15F3", source: "Blaster" } +94.5 "Brute Force" Ability { id: "15F2", source: "Blaster" } + +97.6 "Ballistic Missile" Ability { id: "15F4", source: "Blaster" } +101.7 "Brute Force" Ability { id: "15F2", source: "Blaster" } +102.6 "Hidden Minefield" Ability { id: "15F7", source: "Blaster" } +110.9 "Mirage" Ability { id: "15FA", source: "Blaster Mirage" } +120.2 "Brute Force" Ability { id: "15F2", source: "Blaster" } +128.3 "Mind Blast" Ability { id: "15F3", source: "Blaster" } + +130.4 "Ballistic Missile" Ability { id: "15F4", source: "Blaster" } +134.5 "Brute Force" Ability { id: "15F2", source: "Blaster" } +135.4 "Hidden Minefield" Ability { id: "15F7", source: "Blaster" } +143.6 "Mirage" Ability { id: "15FA", source: "Blaster Mirage" } +151.8 "Brute Force" Ability { id: "15F2", source: "Blaster" } +162.9 "Mind Blast" Ability { id: "15F3", source: "Blaster" } +166.1 "Brute Force" Ability { id: "15F2", source: "Blaster" } + +169.2 "Ballistic Missile" Ability { id: "15F4", source: "Blaster" } window 20,20 jump 97.6 +173.3 "Brute Force" #Ability { id: "15F2", source: "Blaster" } +174.2 "Hidden Minefield" #Ability { id: "15F7", source: "Blaster" } +182.5 "Mirage" #Ability { id: "15FA", source: "Blaster Mirage" } +191.8 "Brute Force" #Ability { id: "15F2", source: "Blaster" } +199.9 "Mind Blast" #Ability { id: "15F3", source: "Blaster" } + +202.0 "Ballistic Missile" #Ability { id: "15F4", source: "Blaster" } +206.1 "Brute Force" #Ability { id: "15F2", source: "Blaster" } +207.0 "Hidden Minefield" #Ability { id: "15F7", source: "Blaster" } +215.2 "Mirage" #Ability { id: "15FA", source: "Blaster Mirage" } +223.4 "Brute Force" #Ability { id: "15F2", source: "Blaster" } +234.5 "Mind Blast" #Ability { id: "15F3", source: "Blaster" } +237.7 "Brute Force" #Ability { id: "15F2", source: "Blaster" } @@ -63,30 +63,30 @@ hideall "Ballistic Missile" # Note: "Brawler Mechanic" drifts relative to attachment depending on type. # Brawler Mechanics seem entirely/mostly random? # Machinery Bay 68 will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6B8:/ window 1000,0 -1008.8 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:1600:/ window 100,100 -1011.0 "Attachment" sync / 1[56]:[^:]*:Brawler:1601:/ -1017.2 "Brawler Mechanic" #sync / 1[56]:[^:]*:Brawler:160[2345]:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6B8" } window 1000,0 +1008.8 "Magicked Mark" Ability { id: "1600", source: "Brawler" } window 100,100 +1011.0 "Attachment" Ability { id: "1601", source: "Brawler" } +1017.2 "Brawler Mechanic" #Ability { id: "160[2345]", source: "Brawler" } -1022.2 "Magicked Mark" #sync / 1[56]:[^:]*:Brawler:1600:/ -1024.4 "Attachment" #sync / 1[56]:[^:]*:Brawler:1601:/ -1030.6 "Brawler Mechanic" #sync / 1[56]:[^:]*:Brawler:160[2345]:/ +1022.2 "Magicked Mark" #Ability { id: "1600", source: "Brawler" } +1024.4 "Attachment" #Ability { id: "1601", source: "Brawler" } +1030.6 "Brawler Mechanic" #Ability { id: "160[2345]", source: "Brawler" } -1035.6 "Magicked Mark" #sync / 1[56]:[^:]*:Brawler:1600:/ -1037.8 "Attachment" #sync / 1[56]:[^:]*:Brawler:1601:/ -1044.0 "Brawler Mechanic" #sync / 1[56]:[^:]*:Brawler:160[2345]:/ +1035.6 "Magicked Mark" #Ability { id: "1600", source: "Brawler" } +1037.8 "Attachment" #Ability { id: "1601", source: "Brawler" } +1044.0 "Brawler Mechanic" #Ability { id: "160[2345]", source: "Brawler" } -1049.0 "Magicked Mark" #sync / 1[56]:[^:]*:Brawler:1600:/ -1051.2 "Attachment" #sync / 1[56]:[^:]*:Brawler:1601:/ -1057.4 "Brawler Mechanic" #sync / 1[56]:[^:]*:Brawler:160[2345]:/ +1049.0 "Magicked Mark" #Ability { id: "1600", source: "Brawler" } +1051.2 "Attachment" #Ability { id: "1601", source: "Brawler" } +1057.4 "Brawler Mechanic" #Ability { id: "160[2345]", source: "Brawler" } ## Brawler Orb Phase -1500.0 "--sync--" sync / 22:........:Brawler:........:Brawler:00/ window 500,0 -1503.4 "Power Plasma Alpha x2" sync / 03:........:Power Plasma Alpha:/ window 500,5 +1500.0 "--sync--" NameToggle { name: "Brawler", toggle: "00" } window 500,0 +1503.4 "Power Plasma Alpha x2" AddedCombatant { name: "Power Plasma Alpha" } window 500,5 1503.4 "Power Plasma Gamma x2" -1508.6 "Attachment" sync / 1[56]:[^:]*:Brawler:1601:/ -1514.7 "Brawler Mechanic" #sync / 1[56]:[^:]*:Brawler:160[2345]:/ +1508.6 "Attachment" Ability { id: "1601", source: "Brawler" } +1514.7 "Brawler Mechanic" #Ability { id: "160[2345]", source: "Brawler" } 1517.5 "Power Plasma Alpha x2" 1517.5 "Power Plasma Beta x2" @@ -95,24 +95,24 @@ hideall "Ballistic Missile" 1529.6 "Power Plasma Alpha x2" 1529.6 "Power Plasma Gamma x1" -1534.0 "Attachment" sync / 1[56]:[^:]*:Brawler:1601:/ -1540.1 "Brawler Mechanic" #sync / 1[56]:[^:]*:Brawler:160[2345]:/ +1534.0 "Attachment" Ability { id: "1601", source: "Brawler" } +1540.1 "Brawler Mechanic" #Ability { id: "160[2345]", source: "Brawler" } 1548.6 "Power Plasma Alpha x3" 1548.6 "Power Plasma Gamma x1" -1551.6 "Attachment" sync / 1[56]:[^:]*:Brawler:1601:/ -1557.7 "Brawler Mechanic" #sync / 1[56]:[^:]*:Brawler:160[2345]:/ +1551.6 "Attachment" Ability { id: "1601", source: "Brawler" } +1557.7 "Brawler Mechanic" #Ability { id: "160[2345]", source: "Brawler" } 1561.2 "--unseal--" ### Swindler # Machinery Bay 69 will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6B9:/ window 2000,0 -2021.2 "Height" sync / 1[56]:[^:]*:Swindler:160D:/ window 22,7 -2021.2 "Enumeration" sync / 1[56]:[^:]*:Swindler:160F:/ -2029.3 "Bio-Arithmeticks" sync / 1[56]:[^:]*:Swindler:1610:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6B9" } window 2000,0 +2021.2 "Height" Ability { id: "160D", source: "Swindler" } window 22,7 +2021.2 "Enumeration" Ability { id: "160F", source: "Swindler" } +2029.3 "Bio-Arithmeticks" Ability { id: "1610", source: "Swindler" } # Add phase 1 2031.4 "Gobwalker x1" @@ -120,82 +120,82 @@ hideall "Ballistic Missile" 2031.4 "Midan Hardmind x1" 2031.4 "Midan Soldier x9" -2040.6 "Auxiliary Power" sync / 1[56]:[^:]*:Swindler:1611:/ +2040.6 "Auxiliary Power" Ability { id: "1611", source: "Swindler" } -2051.8 "Height" sync / 1[56]:[^:]*:Swindler:160D:/ -2061.0 "Enumeration" sync / 1[56]:[^:]*:Swindler:160F:/ -2070.1 "Bio-Arithmeticks" sync / 1[56]:[^:]*:Swindler:1610:/ +2051.8 "Height" Ability { id: "160D", source: "Swindler" } +2061.0 "Enumeration" Ability { id: "160F", source: "Swindler" } +2070.1 "Bio-Arithmeticks" Ability { id: "1610", source: "Swindler" } # Add phase 2 2072.1 "Midan Gunner x4" -2077.4 "Snipethoom" #sync / 1[56]:[^:]*:Midan Gunner:1617:/ -2078.3 "Auxiliary Power" sync / 1[56]:[^:]*:Swindler:1611:/ -2086.4 "Height" sync / 1[56]:[^:]*:Swindler:160D:/ -2087.5 "Snipethoom" #sync / 1[56]:[^:]*:Midan Gunner:1617:/ -2088.6 "Auxiliary Power" sync / 1[56]:[^:]*:Swindler:1611:/ +2077.4 "Snipethoom" #Ability { id: "1617", source: "Midan Gunner" } +2078.3 "Auxiliary Power" Ability { id: "1611", source: "Swindler" } +2086.4 "Height" Ability { id: "160D", source: "Swindler" } +2087.5 "Snipethoom" #Ability { id: "1617", source: "Midan Gunner" } +2088.6 "Auxiliary Power" Ability { id: "1611", source: "Swindler" } -2095.7 "Height" sync / 1[56]:[^:]*:Swindler:160D:/ -2095.7 "Enumeration" sync / 1[56]:[^:]*:Swindler:160F:/ -2102.9 "Bio-Arithmeticks" sync / 1[56]:[^:]*:Swindler:1610:/ +2095.7 "Height" Ability { id: "160D", source: "Swindler" } +2095.7 "Enumeration" Ability { id: "160F", source: "Swindler" } +2102.9 "Bio-Arithmeticks" Ability { id: "1610", source: "Swindler" } # Final loop -2111.1 "Bio-Arithmeticks" sync / 1[56]:[^:]*:Swindler:1610:/ -2133.5 "Height" sync / 1[56]:[^:]*:Swindler:160D:/ -2133.5 "Enumeration" sync / 1[56]:[^:]*:Swindler:160F:/ +2111.1 "Bio-Arithmeticks" Ability { id: "1610", source: "Swindler" } +2133.5 "Height" Ability { id: "160D", source: "Swindler" } +2133.5 "Enumeration" Ability { id: "160F", source: "Swindler" } -2141.7 "Bio-Arithmeticks" sync / 1[56]:[^:]*:Swindler:1610:/ window 20,20 jump 2111.1 -2164.1 "Height" #sync / 1[56]:[^:]*:Swindler:160D:/ -2164.1 "Enumeration" #sync / 1[56]:[^:]*:Swindler:160F:/ +2141.7 "Bio-Arithmeticks" Ability { id: "1610", source: "Swindler" } window 20,20 jump 2111.1 +2164.1 "Height" #Ability { id: "160D", source: "Swindler" } +2164.1 "Enumeration" #Ability { id: "160F", source: "Swindler" } -2172.3 "Bio-Arithmeticks" #sync / 1[56]:[^:]*:Swindler:1610:/ -2194.7 "Height" #sync / 1[56]:[^:]*:Swindler:160D:/ -2194.7 "Enumeration" #sync / 1[56]:[^:]*:Swindler:160F:/ +2172.3 "Bio-Arithmeticks" #Ability { id: "1610", source: "Swindler" } +2194.7 "Height" #Ability { id: "160D", source: "Swindler" } +2194.7 "Enumeration" #Ability { id: "160F", source: "Swindler" } ### Vortexer # Machinery Bay 70 will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:6BA:/ window 3000,0 -3006.7 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1619:/ window 10,10 -3016.8 "Elemental Jammer" sync / 1[56]:[^:]*:Vortexer:161B:/ -3022.0 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1622:/ -3028.0 "Earth Missile x4" sync / 1[56]:[^:]*:Vortexer:1623:/ -3028.0 "Fire Beam x4" sync / 1[56]:[^:]*:Vortexer:1625:/ -3032.2 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1619:/ -3038.4 "Crashing Thunder" sync / 1[56]:[^:]*:Vortexer:161D:/ -3038.4 "Crashing Wave" sync / 1[56]:[^:]*:Vortexer:161C:/ -3041.3 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1622:/ -3046.3 "Ice Missile x2" #sync / 1[56]:[^:]*:Vortexer:1624:/ -3054.3 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1619:/ -3060.1 "Crashing Thunder" sync / 1[56]:[^:]*:Vortexer:161D:/ -3060.2 "Crashing Wave" sync / 1[56]:[^:]*:Vortexer:161C:/ -3066.4 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1622:/ -3072.4 "Earth Missile x4" sync / 1[56]:[^:]*:Vortexer:1623:/ -3072.4 "Fire Beam x4" sync / 1[56]:[^:]*:Vortexer:1625:/ -3077.6 "Super Cyclone" sync / 1[56]:[^:]*:Vortexer:1627:/ -3082.1 "Crashing Thunder" sync / 1[56]:[^:]*:Vortexer:161D:/ -3082.2 "Crashing Wave" sync / 1[56]:[^:]*:Vortexer:161C:/ -3084.8 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1619:/ -3096.9 "Ultra Flash" sync / 1[56]:[^:]*:Vortexer:161A:/ - -3099.7 "Brute Force" #sync / 1[56]:[^:]*:Vortexer:1619:/ -3109.8 "Elemental Jammer" sync / 1[56]:[^:]*:Vortexer:161B:/ window 50,50 jump 3016.8 -3115.0 "Ballistic Missile" #sync / 1[56]:[^:]*:Vortexer:1622:/ -3121.0 "Earth Missile" #sync / 1[56]:[^:]*:Vortexer:1623:/ -3121.0 "Fire Beam" #sync / 1[56]:[^:]*:Vortexer:1625:/ -3125.2 "Brute Force" #sync / 1[56]:[^:]*:Vortexer:1619:/ -3131.4 "Crashing Thunder" #sync / 1[56]:[^:]*:Vortexer:161D:/ -3131.4 "Crashing Wave" #sync / 1[56]:[^:]*:Vortexer:161C:/ -3134.3 "Ballistic Missile" #sync / 1[56]:[^:]*:Vortexer:1622:/ -3139.3 "Ice Missile" #sync / 1[56]:[^:]*:Vortexer:1624:/ -3147.3 "Brute Force" #sync / 1[56]:[^:]*:Vortexer:1619:/ -3153.1 "Crashing Thunder" #sync / 1[56]:[^:]*:Vortexer:161D:/ -3153.2 "Crashing Wave" #sync / 1[56]:[^:]*:Vortexer:161C:/ -3159.4 "Ballistic Missile" #sync / 1[56]:[^:]*:Vortexer:1622:/ -3165.4 "Earth Missile" #sync / 1[56]:[^:]*:Vortexer:1623:/ -3165.4 "Fire Beam" #sync / 1[56]:[^:]*:Vortexer:1625:/ -3170.6 "Super Cyclone" #sync / 1[56]:[^:]*:Vortexer:1627:/ -3175.1 "Crashing Thunder" #sync / 1[56]:[^:]*:Vortexer:161D:/ -3175.2 "Crashing Wave" #sync / 1[56]:[^:]*:Vortexer:161C:/ -3177.8 "Brute Force" #sync / 1[56]:[^:]*:Vortexer:1619:/ -3189.9 "Ultra Flash" #sync / 1[56]:[^:]*:Vortexer:161A:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "6BA" } window 3000,0 +3006.7 "Brute Force" Ability { id: "1619", source: "Vortexer" } window 10,10 +3016.8 "Elemental Jammer" Ability { id: "161B", source: "Vortexer" } +3022.0 "Ballistic Missile" Ability { id: "1622", source: "Vortexer" } +3028.0 "Earth Missile x4" Ability { id: "1623", source: "Vortexer" } +3028.0 "Fire Beam x4" Ability { id: "1625", source: "Vortexer" } +3032.2 "Brute Force" Ability { id: "1619", source: "Vortexer" } +3038.4 "Crashing Thunder" Ability { id: "161D", source: "Vortexer" } +3038.4 "Crashing Wave" Ability { id: "161C", source: "Vortexer" } +3041.3 "Ballistic Missile" Ability { id: "1622", source: "Vortexer" } +3046.3 "Ice Missile x2" #Ability { id: "1624", source: "Vortexer" } +3054.3 "Brute Force" Ability { id: "1619", source: "Vortexer" } +3060.1 "Crashing Thunder" Ability { id: "161D", source: "Vortexer" } +3060.2 "Crashing Wave" Ability { id: "161C", source: "Vortexer" } +3066.4 "Ballistic Missile" Ability { id: "1622", source: "Vortexer" } +3072.4 "Earth Missile x4" Ability { id: "1623", source: "Vortexer" } +3072.4 "Fire Beam x4" Ability { id: "1625", source: "Vortexer" } +3077.6 "Super Cyclone" Ability { id: "1627", source: "Vortexer" } +3082.1 "Crashing Thunder" Ability { id: "161D", source: "Vortexer" } +3082.2 "Crashing Wave" Ability { id: "161C", source: "Vortexer" } +3084.8 "Brute Force" Ability { id: "1619", source: "Vortexer" } +3096.9 "Ultra Flash" Ability { id: "161A", source: "Vortexer" } + +3099.7 "Brute Force" #Ability { id: "1619", source: "Vortexer" } +3109.8 "Elemental Jammer" Ability { id: "161B", source: "Vortexer" } window 50,50 jump 3016.8 +3115.0 "Ballistic Missile" #Ability { id: "1622", source: "Vortexer" } +3121.0 "Earth Missile" #Ability { id: "1623", source: "Vortexer" } +3121.0 "Fire Beam" #Ability { id: "1625", source: "Vortexer" } +3125.2 "Brute Force" #Ability { id: "1619", source: "Vortexer" } +3131.4 "Crashing Thunder" #Ability { id: "161D", source: "Vortexer" } +3131.4 "Crashing Wave" #Ability { id: "161C", source: "Vortexer" } +3134.3 "Ballistic Missile" #Ability { id: "1622", source: "Vortexer" } +3139.3 "Ice Missile" #Ability { id: "1624", source: "Vortexer" } +3147.3 "Brute Force" #Ability { id: "1619", source: "Vortexer" } +3153.1 "Crashing Thunder" #Ability { id: "161D", source: "Vortexer" } +3153.2 "Crashing Wave" #Ability { id: "161C", source: "Vortexer" } +3159.4 "Ballistic Missile" #Ability { id: "1622", source: "Vortexer" } +3165.4 "Earth Missile" #Ability { id: "1623", source: "Vortexer" } +3165.4 "Fire Beam" #Ability { id: "1625", source: "Vortexer" } +3170.6 "Super Cyclone" #Ability { id: "1627", source: "Vortexer" } +3175.1 "Crashing Thunder" #Ability { id: "161D", source: "Vortexer" } +3175.2 "Crashing Wave" #Ability { id: "161C", source: "Vortexer" } +3177.8 "Brute Force" #Ability { id: "1619", source: "Vortexer" } +3189.9 "Ultra Flash" #Ability { id: "161A", source: "Vortexer" } diff --git a/ui/raidboss/data/03-hw/raid/a7s.ts b/ui/raidboss/data/03-hw/raid/a7s.ts index 1a55b7ff5b..4cb8dabe17 100644 --- a/ui/raidboss/data/03-hw/raid/a7s.ts +++ b/ui/raidboss/data/03-hw/raid/a7s.ts @@ -292,10 +292,12 @@ const triggerSet: TriggerSet = { 'replaceText': { 'Bomb': 'Bombe', 'Flamethrower': 'Lance-flammes', + 'Hammertime': 'Coup de marteau', 'Sizzlebeam': 'Gobrayon', 'Sizzlespark': 'Gobétincelle', 'Uplander Doom': 'Fusillade', 'Zoomdoom': 'Gobroquette', + 'Jails': 'Prison', }, }, { diff --git a/ui/raidboss/data/03-hw/raid/a7s.txt b/ui/raidboss/data/03-hw/raid/a7s.txt index 2038009a2a..d473ec03be 100644 --- a/ui/raidboss/data/03-hw/raid/a7s.txt +++ b/ui/raidboss/data/03-hw/raid/a7s.txt @@ -55,7 +55,7 @@ hideall "--sync--" ############################################################## ################# Intro -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 8 "Hammertime x2" 21 "Sizzlebeam" 31 "Sizzlespark" @@ -64,29 +64,29 @@ hideall "--sync--" ################# Version 1 - Phase 1 59 "Bomb x1" 66 "Jails" #White Prey & Green Tether -68 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 60 +68 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 60 69 "Doll" -84 "Resync" sync / 1A:[^:]*:Pyretic:/ window 20 jump 384 +84 "Resync" GainsEffect { effect: "Pyretic" } window 20 jump 384 103 "Sizzlespark" 116 "Uplander Doom" 130 "Bomb x1" 137 "Jails - Get Tether" #Red Prey & Purple Tether -139 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 60 +139 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 60 140 "Small Doll" 178 "Sizzlebeam" 190 "Sizzlespark" ################# Version 1 - Phase 2 -194 "Uplander Doom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15F0:/ window 65,0 -204 "Kill Heart" sync / 14:[^:]*:Shanoa:15EC:/ window 145,10 +194 "Uplander Doom" Ability { id: "15F0", source: "Quickthinx Allthoughts" } window 65,0 +204 "Kill Heart" StartsUsing { id: "15EC", source: "Shanoa" } window 145,10 219 "Stun Heart" 219 "Sizzlespark" -229 "Flamethrower" sync / 1[56]:[^:]*:Quickthinx Allthoughts:1CFA:/ window 20 -234 "Kill Heart" sync / 14:[^:]*:Shanoa:15EC:/ window 20 +229 "Flamethrower" Ability { id: "1CFA", source: "Quickthinx Allthoughts" } window 20 +234 "Kill Heart" StartsUsing { id: "15EC", source: "Shanoa" } window 20 249 "Stun Heart" 249 "Sizzlebeam" 258 "Sizzlespark" #can be skipped -266 "Bomb x1" sync / 03:........:Bomb:/ window 50 jump 561 +266 "Bomb x1" AddedCombatant { name: "Bomb" } window 50 jump 561 267 "" 267 "" 267 "" @@ -102,7 +102,7 @@ hideall "--sync--" ################# Version 2 - Phase 1 359 "Bomb x1" 366 "Jails" #Purple Tether, Red Prey -368 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 60 +368 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 60 369 "Doll" 397 "Uplander Doom" 409 "Sizzlebeam" @@ -114,41 +114,41 @@ hideall "--sync--" 485 "Sizzlespark" ################# Version 2 - Phase 2 -489 "Uplander Doom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15F0:/ window 78,0 -499 "Kill Heart" sync / 14:[^:]*:Shanoa:15EC:/ window 130,10 +489 "Uplander Doom" Ability { id: "15F0", source: "Quickthinx Allthoughts" } window 78,0 +499 "Kill Heart" StartsUsing { id: "15EC", source: "Shanoa" } window 130,10 514 "Stun Heart" 514 "Sizzlespark" -524 "Flamethrower" sync / 1[56]:[^:]*:Quickthinx Allthoughts:1CFA:/ window 20 -529 "Kill Heart" sync / 14:[^:]*:Shanoa:15EC:/ window 10 +524 "Flamethrower" Ability { id: "1CFA", source: "Quickthinx Allthoughts" } window 20 +529 "Kill Heart" StartsUsing { id: "15EC", source: "Shanoa" } window 10 544 "Stun Heart" 544 "Sizzlebeam" 553 "Sizzlespark" #can be skipped ############################################ ################# Version 1 - Phase 3 -561 "Bomb x1" sync / 03:........:Bomb:/ window 50,20 +561 "Bomb x1" AddedCombatant { name: "Bomb" } window 50,20 567 "Jails" #Green Prey & Red Tether -570 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 60 +570 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 60 570 "Doll" -582 "Resync" sync / 1A:[^:]*:Frostbite:/ window 20 jump 983 +582 "Resync" GainsEffect { effect: "Frostbite" } window 20 jump 983 596 "Uplander Doom" 613 "Sizzlespark" 621 "Sizzlespark" 628 "Bomb x1" 636 "Jails - Get Prey" #Purple Prey & White Tether -640 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 60 +640 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 60 640 "Small Dolls x2" 678 "Sizzlebeam" ################# Phase 4 -686 "Sizzlespark" sync / 1[56]:[^:]*:Quickthinx Allthoughts:16F8:/ window 63,0 +686 "Sizzlespark" Ability { id: "16F8", source: "Quickthinx Allthoughts" } window 63,0 694 "Sizzlespark" -707 "Sizzlebeam" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15EE:/ window 20 +707 "Sizzlebeam" Ability { id: "15EE", source: "Quickthinx Allthoughts" } window 20 711 "Bombs x8" 740 "Sizzlespark" 748 "Sizzlespark" 755 "Uplander Doom" -773 "Flamethrower" sync / 1[56]:[^:]*:Quickthinx Allthoughts:1CFA:/ window 30 +773 "Flamethrower" Ability { id: "1CFA", source: "Quickthinx Allthoughts" } window 30 779 "Hammertime x4" 790 "Sizzlespark" 793 "Hammertime x4" @@ -160,19 +160,19 @@ hideall "--sync--" 842 "Sizzlespark" ################# Phase 5 -854 "Flamethrower" sync / 1[56]:[^:]*:Quickthinx Allthoughts:1CFA:/ window 60,10 -858 "Kill Heart" sync / 14:[^:]*:Shanoa:15EC:/ window 200,10 +854 "Flamethrower" Ability { id: "1CFA", source: "Quickthinx Allthoughts" } window 60,10 +858 "Kill Heart" StartsUsing { id: "15EC", source: "Shanoa" } window 200,10 865 "Uplander Doom" 873 "Stun Heart" 879 "Sizzlebeam" 888 "Flamethrower" -888 "Kill Heart" sync / 14:[^:]*:Shanoa:15EC:/ window 10 +888 "Kill Heart" StartsUsing { id: "15EC", source: "Shanoa" } window 10 901 "Sizzlespark" 903 "Stun Heart" 909 "Sizzlespark" 917 "Sizzlespark" -923 "Bombs / Sizzlebeam" sync / 03:........:Bomb:/ window 20 jump 1326 -924 "" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15EE:/ window 20 jump 1526 +923 "Bombs / Sizzlebeam" AddedCombatant { name: "Bomb" } window 20 jump 1326 +924 "" Ability { id: "15EE", source: "Quickthinx Allthoughts" } window 20 jump 1526 924 "" 924 "" 924 "" @@ -189,24 +189,24 @@ hideall "--sync--" 970 "Jails" #White Tether, Purple Prey 972 "Zoomdoom" 972 "Doll" -1011 "Sizzlebeam" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15EE:/ window 10 +1011 "Sizzlebeam" Ability { id: "15EE", source: "Quickthinx Allthoughts" } window 10 1019 "Sizzlespark" 1027 "Sizzlespark" 1034 "Bomb x1" 1041 "Jails" #Red Tether, Green Prey -1043 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 60 +1043 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 60 1043 "Big Doll" 1071 "Uplander Doom" ################# Phase 4 1087 "Sizzlespark" 1095 "Sizzlespark" -1108 "Sizzlebeam" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15EE:/ window 20 +1108 "Sizzlebeam" Ability { id: "15EE", source: "Quickthinx Allthoughts" } window 20 1111 "Bombs x8" 1141 "Sizzlespark" 1149 "Sizzlespark" 1156 "Uplander Doom" -1174 "Flamethrower" sync / 1[56]:[^:]*:Quickthinx Allthoughts:1CFA:/ window 30 +1174 "Flamethrower" Ability { id: "1CFA", source: "Quickthinx Allthoughts" } window 30 1180 "Hammertime x4" 1191 "Sizzlespark" 1194 "Hammertime x4" @@ -219,13 +219,13 @@ hideall "--sync--" ############################################ ################# Phase 5 -1253 "Flamethrower" sync / 1[56]:[^:]*:Quickthinx Allthoughts:1CFA:/ window 60,10 -1258 "Kill Heart" sync / 14:[^:]*:Shanoa:15EC:/ window 200,10 +1253 "Flamethrower" Ability { id: "1CFA", source: "Quickthinx Allthoughts" } window 60,10 +1258 "Kill Heart" StartsUsing { id: "15EC", source: "Shanoa" } window 200,10 1263 "Uplander Doom" 1273 "Stun Heart" 1280 "Sizzlebeam" 1288 "Flamethrower" -1288 "Kill Heart" sync / 14:[^:]*:Shanoa:15EC:/ window 10 +1288 "Kill Heart" StartsUsing { id: "15EC", source: "Shanoa" } window 10 1301 "Sizzlespark" 1303 "Stun Heart" 1308 "Sizzlespark" @@ -233,18 +233,18 @@ hideall "--sync--" ############################################ ################# Version 1 - Phase 6 -1326 "Bombs x2" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15EE:/ window 40,10 jump 1526 +1326 "Bombs x2" Ability { id: "15EE", source: "Quickthinx Allthoughts" } window 40,10 jump 1526 1333 "Jails" #Green Tether, Purple Prey 1335 "Small Doll" -1336 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 55 +1336 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 55 1344 "Big Doll" -1348 "Resync" sync / 1A:[^:]*:Pyretic:/ window 20 jump 1548 -1348 "Resync" sync / 1A:[^:]*:Pyretic:/ window 20 jump 1548 +1348 "Resync" GainsEffect { effect: "Pyretic" } window 20 jump 1548 +1348 "Resync" GainsEffect { effect: "Pyretic" } window 20 jump 1548 1362 "Uplander Doom" 1381 "Sizzlespark" 1392 "Sizzlebeam" 1396 "Jails" #Red Tether, White Prey -1398 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 55 +1398 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 55 1398 "Small Dolls x2" 1426 "Sizzlespark" 1433 "Sizzlebeam" @@ -256,7 +256,7 @@ hideall "--sync--" ################# Version 2 - Phase 6 1526 "Sizzlebeam" 1530 "Jails" #White Prey & Red Tether -1532 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 55 +1532 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 55 1533 "Small Dolls x2" 1560 "Sizzlespark" 1568 "Sizzlebeam" @@ -265,7 +265,7 @@ hideall "--sync--" 1590 "Sizzlespark" 1595 "Bombs x2" 1601 "Jails - Get Prey" #Purple Prey & Green Tether -1603 "Zoomdoom" sync / 1[56]:[^:]*:Quickthinx Allthoughts:15BE:/ window 55 +1603 "Zoomdoom" Ability { id: "15BE", source: "Quickthinx Allthoughts" } window 55 1603 "Small Doll" 1612 "Big Doll" 1630 "Uplander Doom" diff --git a/ui/raidboss/data/03-hw/raid/a8n.txt b/ui/raidboss/data/03-hw/raid/a8n.txt index 82451bc712..9037fef040 100644 --- a/ui/raidboss/data/03-hw/raid/a8n.txt +++ b/ui/raidboss/data/03-hw/raid/a8n.txt @@ -14,29 +14,29 @@ hideall "Brute Force" # ending with a Final Judgment sword drop. # ONSLAUGHTER -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -5.4 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:172F:/ window 5.4,5 -12.6 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:1732:/ - -18.8 "Perpetual Ray" sync / 1[56]:[^:]*:Onslaughter:1730:/ -24.0 "Hydrothermal Missile" # sync / 1[56]:[^:]*:Onslaughter:172F:/ -27.1 "Hydrothermal Missile" # sync / 1[56]:[^:]*:Onslaughter:172F:/ -33.2 "Execution" sync / 1[56]:[^:]*:Onslaughter:1632:/ -37.3 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:172F:/ -45.5 "Seed Of The Sky" sync / 1[56]:[^:]*:Onslaughter:1731:/ -52.5 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:1732:/ -55.2 "--regulator check--" # sync / 1[56]:[^:]*:Steam Regulator B:1735:/ -55.6 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:172F:/ -61.8 "Perpetual Ray" sync / 1[56]:[^:]*:Onslaughter:1730:/ -67.0 "Hydrothermal Missile" # sync / 1[56]:[^:]*:Onslaughter:172F:/ -70.1 "Hydrothermal Missile" # sync / 1[56]:[^:]*:Onslaughter:172F:/ -75.2 "Discoid" sync / 1[56]:[^:]*:Onslaughter:162F:/ -79.3 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:172F:/ -90.5 "Seed Of The Sky" sync / 1[56]:[^:]*:Onslaughter:1731:/ -95.5 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:1732:/ -98.6 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:172F:/ - -104.7 "Perpetual Ray" sync / 1[56]:[^:]*:Onslaughter:1730:/ jump 18.8 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +5.4 "Hydrothermal Missile" Ability { id: "172F", source: "Onslaughter" } window 5.4,5 +12.6 "Mega Beam" Ability { id: "1732", source: "Onslaughter" } + +18.8 "Perpetual Ray" Ability { id: "1730", source: "Onslaughter" } +24.0 "Hydrothermal Missile" # Ability { id: "172F", source: "Onslaughter" } +27.1 "Hydrothermal Missile" # Ability { id: "172F", source: "Onslaughter" } +33.2 "Execution" Ability { id: "1632", source: "Onslaughter" } +37.3 "Hydrothermal Missile" Ability { id: "172F", source: "Onslaughter" } +45.5 "Seed Of The Sky" Ability { id: "1731", source: "Onslaughter" } +52.5 "Mega Beam" Ability { id: "1732", source: "Onslaughter" } +55.2 "--regulator check--" # Ability { id: "1735", source: "Steam Regulator B" } +55.6 "Hydrothermal Missile" Ability { id: "172F", source: "Onslaughter" } +61.8 "Perpetual Ray" Ability { id: "1730", source: "Onslaughter" } +67.0 "Hydrothermal Missile" # Ability { id: "172F", source: "Onslaughter" } +70.1 "Hydrothermal Missile" # Ability { id: "172F", source: "Onslaughter" } +75.2 "Discoid" Ability { id: "162F", source: "Onslaughter" } +79.3 "Hydrothermal Missile" Ability { id: "172F", source: "Onslaughter" } +90.5 "Seed Of The Sky" Ability { id: "1731", source: "Onslaughter" } +95.5 "Mega Beam" Ability { id: "1732", source: "Onslaughter" } +98.6 "Hydrothermal Missile" Ability { id: "172F", source: "Onslaughter" } + +104.7 "Perpetual Ray" Ability { id: "1730", source: "Onslaughter" } jump 18.8 109.9 "Hydrothermal Missile" 113.0 "Hydrothermal Missile" 119.1 "Execution" @@ -47,37 +47,37 @@ hideall "Brute Force" # There's no way to know which robot will die first or when, # so we just do one full rotation and hope for the best. # If it would have looped past here, there are bigger problems! -200.0 "--sync--" sync / 22:........:Onslaughter:........:Onslaughter:00/ window 200,0 -203.8 "--sync--" sync / 03:........:Brawler:/ window 150,30 +200.0 "--sync--" NameToggle { name: "Onslaughter", toggle: "00" } window 200,0 +203.8 "--sync--" AddedCombatant { name: "Brawler" } window 150,30 206.2 "--targetable--" -214.3 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:173B:/ -214.3 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1744:/ -218.5 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1650:/ window 18,10 -223.7 "Ice Missile" sync / 1[56]:[^:]*:Vortexer:1746:/ -224.5 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1745:/ -226.5 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:173B:/ -226.6 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1744:/ - -229.6 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -235.7 "Single Buster/Double Buster" sync / 1[56]:[^:]*:Brawler:173D:/ window 30,30 -238.7 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1744:/ -241.8 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1650:/ window 15,15 -242.8 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:173B:/ -246.8 "Ice Missile" sync / 1[56]:[^:]*:Vortexer:1746:/ -247.8 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1745:/ -253.9 "Super Cyclone" sync / 1[56]:[^:]*:Vortexer:1747:/ -255.9 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -258.0 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1744:/ -262.4 "Single Buster/Double Buster" sync / 1[56]:[^:]*:Brawler:173C:/ window 30,30 -269.1 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1744:/ -269.5 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:173B:/ -273.2 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1650:/ window 15,15 -278.2 "Ice Missile" sync / 1[56]:[^:]*:Vortexer:1746:/ -279.2 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1745:/ -281.3 "Brute Force" sync / 1[56]:[^:]*:Vortexer:1744:/ -281.7 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:173B:/ - -284.9 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ +214.3 "Magicked Mark" Ability { id: "173B", source: "Brawler" } +214.3 "Brute Force" Ability { id: "1744", source: "Vortexer" } +218.5 "Ballistic Missile" Ability { id: "1650", source: "Vortexer" } window 18,10 +223.7 "Ice Missile" Ability { id: "1746", source: "Vortexer" } +224.5 "Earth Missile" Ability { id: "1745", source: "Vortexer" } +226.5 "Magicked Mark" Ability { id: "173B", source: "Brawler" } +226.6 "Brute Force" Ability { id: "1744", source: "Vortexer" } + +229.6 "Attachment" Ability { id: "163C", source: "Brawler" } +235.7 "Single Buster/Double Buster" Ability { id: "173D", source: "Brawler" } window 30,30 +238.7 "Brute Force" Ability { id: "1744", source: "Vortexer" } +241.8 "Ballistic Missile" Ability { id: "1650", source: "Vortexer" } window 15,15 +242.8 "Magicked Mark" Ability { id: "173B", source: "Brawler" } +246.8 "Ice Missile" Ability { id: "1746", source: "Vortexer" } +247.8 "Earth Missile" Ability { id: "1745", source: "Vortexer" } +253.9 "Super Cyclone" Ability { id: "1747", source: "Vortexer" } +255.9 "Attachment" Ability { id: "163C", source: "Brawler" } +258.0 "Brute Force" Ability { id: "1744", source: "Vortexer" } +262.4 "Single Buster/Double Buster" Ability { id: "173C", source: "Brawler" } window 30,30 +269.1 "Brute Force" Ability { id: "1744", source: "Vortexer" } +269.5 "Magicked Mark" Ability { id: "173B", source: "Brawler" } +273.2 "Ballistic Missile" Ability { id: "1650", source: "Vortexer" } window 15,15 +278.2 "Ice Missile" Ability { id: "1746", source: "Vortexer" } +279.2 "Earth Missile" Ability { id: "1745", source: "Vortexer" } +281.3 "Brute Force" Ability { id: "1744", source: "Vortexer" } +281.7 "Magicked Mark" Ability { id: "173B", source: "Brawler" } + +284.9 "Attachment" Ability { id: "163C", source: "Brawler" } 291.0 "Single Buster/Double Buster" 297.1 "Ballistic Missile" 302.1 "Ice Missile" @@ -87,90 +87,90 @@ hideall "Brute Force" # CUTE ROBOTS 2 # One full rotation plus a tail again, for the same reasons. Don't be slow! -500.0 "--sync--" sync / 03:........:Blaster:/ window 300,30 +500.0 "--sync--" AddedCombatant { name: "Blaster" } window 300,30 502.1 "--targetable--" -510.3 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:173F:/ -510.3 "Brute Force" sync / 1[56]:[^:]*:Blaster:1738:/ -520.4 "Height" sync / 1[56]:[^:]*:Swindler:1740:/ window 20.4,20 -523.4 "Brute Force" sync / 1[56]:[^:]*:Blaster:1738:/ -523.6 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:173F:/ -526.5 "Mind Blast" sync / 1[56]:[^:]*:Blaster:1739:/ - -537.7 "Mirage" sync / 1[56]:[^:]*:Blaster Mirage:1748:/ -543.8 "Supercharge" # sync / 1[56]:[^:]*:Blaster Mirage:1749:/ -545.7 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:173F:/ -546.0 "Brute Force" sync / 1[56]:[^:]*:Blaster:1738:/ -549.2 "Mind Blast" sync / 1[56]:[^:]*:Blaster:1739:/ -555.9 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:173F:/ -556.3 "Brute Force" sync / 1[56]:[^:]*:Blaster:1738:/ -558.8 "Enumeration" sync / 1[56]:[^:]*:Swindler:1742:/ -563.4 "Mind Blast" sync / 1[56]:[^:]*:Blaster:1739:/ -565.0 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:173F:/ -565.5 "Brute Force" sync / 1[56]:[^:]*:Blaster:1738:/ -575.1 "Height" sync / 1[56]:[^:]*:Swindler:1740:/ -578.3 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:173F:/ -578.7 "Brute Force" sync / 1[56]:[^:]*:Blaster:1738:/ -581.8 "Mind Blast" sync / 1[56]:[^:]*:Blaster:1739:/ - -593.0 "Mirage" sync / 1[56]:[^:]*:Blaster Mirage:1748:/ +510.3 "Magicked Mark" Ability { id: "173F", source: "Swindler" } +510.3 "Brute Force" Ability { id: "1738", source: "Blaster" } +520.4 "Height" Ability { id: "1740", source: "Swindler" } window 20.4,20 +523.4 "Brute Force" Ability { id: "1738", source: "Blaster" } +523.6 "Magicked Mark" Ability { id: "173F", source: "Swindler" } +526.5 "Mind Blast" Ability { id: "1739", source: "Blaster" } + +537.7 "Mirage" Ability { id: "1748", source: "Blaster Mirage" } +543.8 "Supercharge" # Ability { id: "1749", source: "Blaster Mirage" } +545.7 "Magicked Mark" Ability { id: "173F", source: "Swindler" } +546.0 "Brute Force" Ability { id: "1738", source: "Blaster" } +549.2 "Mind Blast" Ability { id: "1739", source: "Blaster" } +555.9 "Magicked Mark" Ability { id: "173F", source: "Swindler" } +556.3 "Brute Force" Ability { id: "1738", source: "Blaster" } +558.8 "Enumeration" Ability { id: "1742", source: "Swindler" } +563.4 "Mind Blast" Ability { id: "1739", source: "Blaster" } +565.0 "Magicked Mark" Ability { id: "173F", source: "Swindler" } +565.5 "Brute Force" Ability { id: "1738", source: "Blaster" } +575.1 "Height" Ability { id: "1740", source: "Swindler" } +578.3 "Magicked Mark" Ability { id: "173F", source: "Swindler" } +578.7 "Brute Force" Ability { id: "1738", source: "Blaster" } +581.8 "Mind Blast" Ability { id: "1739", source: "Blaster" } + +593.0 "Mirage" Ability { id: "1748", source: "Blaster Mirage" } 599.1 "Supercharge" 604.5 "Mind Blast" 614.1 "Enumeration" 618.7 "Mind Blast" # GO, GO, MEGAZORD MODE (BRUTE JUSTICE) -800.0 "--sync--" sync / 03:........:Brute Justice:/ window 300,30 -810.3 "--sync--" sync / 1[56]:[^:]*:Brute Justice:1758:/ window 610.3,30 +800.0 "--sync--" AddedCombatant { name: "Brute Justice" } window 300,30 +810.3 "--sync--" Ability { id: "1758", source: "Brute Justice" } window 610.3,30 813.0 "--targetable--" -826.9 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:174E:/ window 26,30 -829.0 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -832.4 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:174D:/ -833.0 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:1754:/ -840.5 "Apocalyptic Ray" sync / 1[56]:[^:]*:Brute Justice:1751:/ window 30,30 duration 5 -852.4 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:1750:/ -858.6 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:174D:/ -863.7 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -865.7 "Short Needle x3" duration 6 # sync / 1[56]:[^:]*:Brute Justice:1753:/ -871.8 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:174E:/ window 30,30 -879.0 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:174D:/ -885.1 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -889.1 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:1754:/ -897.1 "Mega Beam" sync / 1[56]:[^:]*:Brute Justice:174F:/ window 30,30 +826.9 "Double Rocket Punch" Ability { id: "174E", source: "Brute Justice" } window 26,30 +829.0 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +832.4 "Flarethrower" Ability { id: "174D", source: "Brute Justice" } +833.0 "Long Needle" Ability { id: "1754", source: "Brute Justice" } +840.5 "Apocalyptic Ray" Ability { id: "1751", source: "Brute Justice" } window 30,30 duration 5 +852.4 "Super Jump" Ability { id: "1750", source: "Brute Justice" } +858.6 "Flarethrower" Ability { id: "174D", source: "Brute Justice" } +863.7 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +865.7 "Short Needle x3" duration 6 # Ability { id: "1753", source: "Brute Justice" } +871.8 "Double Rocket Punch" Ability { id: "174E", source: "Brute Justice" } window 30,30 +879.0 "Flarethrower" Ability { id: "174D", source: "Brute Justice" } +885.1 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +889.1 "Long Needle" Ability { id: "1754", source: "Brute Justice" } +897.1 "Mega Beam" Ability { id: "174F", source: "Brute Justice" } window 30,30 899.2 "--untargetable--" # ABBREVIATED INTERMISSION -902.4 "J Kick" sync / 1[56]:[^:]*:Brute Justice:1756:/ -914.7 "Minefield" sync / 1[56]:[^:]*:Hidden Mine:174A:/ -915.7 "Ice Missile" sync / 1[56]:[^:]*:Vortexer:1746:/ -916.7 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1745:/ -919.9 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -926.1 "Single Buster/Double Buster" sync / 1[56]:[^:]*:Brawler:173D:/ -932.0 "--sync--" sync / 1[56]:[^:]*:Brute Justice:1636:/ -933.1 "100-Megatonze Shock" sync / 1[56]:[^:]*:Onslaughter:1736:/ -936.9 "Height" sync / 1[56]:[^:]*:Swindler:1740:/ -939.4 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:1732:/ +902.4 "J Kick" Ability { id: "1756", source: "Brute Justice" } +914.7 "Minefield" Ability { id: "174A", source: "Hidden Mine" } +915.7 "Ice Missile" Ability { id: "1746", source: "Vortexer" } +916.7 "Earth Missile" Ability { id: "1745", source: "Vortexer" } +919.9 "Attachment" Ability { id: "163C", source: "Brawler" } +926.1 "Single Buster/Double Buster" Ability { id: "173D", source: "Brawler" } +932.0 "--sync--" Ability { id: "1636", source: "Brute Justice" } +933.1 "100-Megatonze Shock" Ability { id: "1736", source: "Onslaughter" } +936.9 "Height" Ability { id: "1740", source: "Swindler" } +939.4 "Mega Beam" Ability { id: "1732", source: "Onslaughter" } # FOR GREAT JUSTICE 947.8 "--targetable--" -957.9 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:174E:/ window 30,30 -960.1 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -964.0 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:174D:/ -964.0 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:1754:/ -972.2 "Apocalyptic Ray" sync / 1[56]:[^:]*:Brute Justice:1751:/ duration 5 window 30,30 -984.1 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:1750:/ -990.3 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:174D:/ -995.4 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -997.4 "Short Needle x3" duration 6 # sync / 1[56]:[^:]*:Brute Justice:1753:/ -1003.4 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:174E:/ window 30,30 -1010.6 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:174D:/ -1016.7 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -1020.7 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:1754:/ -1028.8 "Mega Beam" sync / 1[56]:[^:]*:Brute Justice:174F:/ window 30,30 +957.9 "Double Rocket Punch" Ability { id: "174E", source: "Brute Justice" } window 30,30 +960.1 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +964.0 "Flarethrower" Ability { id: "174D", source: "Brute Justice" } +964.0 "Long Needle" Ability { id: "1754", source: "Brute Justice" } +972.2 "Apocalyptic Ray" Ability { id: "1751", source: "Brute Justice" } duration 5 window 30,30 +984.1 "Super Jump" Ability { id: "1750", source: "Brute Justice" } +990.3 "Flarethrower" Ability { id: "174D", source: "Brute Justice" } +995.4 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +997.4 "Short Needle x3" duration 6 # Ability { id: "1753", source: "Brute Justice" } +1003.4 "Double Rocket Punch" Ability { id: "174E", source: "Brute Justice" } window 30,30 +1010.6 "Flarethrower" Ability { id: "174D", source: "Brute Justice" } +1016.7 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +1020.7 "Long Needle" Ability { id: "1754", source: "Brute Justice" } +1028.8 "Mega Beam" Ability { id: "174F", source: "Brute Justice" } window 30,30 1030.9 "--untargetable--" -1034.1 "J Kick" sync / 1[56]:[^:]*:Brute Justice:1756:/ +1034.1 "J Kick" Ability { id: "1756", source: "Brute Justice" } 1037.1 "--targetable--" -1047.2 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:174E:/ jump 957.9 +1047.2 "Double Rocket Punch" Ability { id: "174E", source: "Brute Justice" } jump 957.9 1049.4 "Missile Command" 1053.3 "Flarethrower" 1053.3 "Long Needle" diff --git a/ui/raidboss/data/03-hw/raid/a8s.txt b/ui/raidboss/data/03-hw/raid/a8s.txt index 684ded7aa9..51ad0ed559 100644 --- a/ui/raidboss/data/03-hw/raid/a8s.txt +++ b/ui/raidboss/data/03-hw/raid/a8s.txt @@ -10,48 +10,48 @@ hideall "Magicked Mark" hideall "Brute Force" ### Phase 1: Onslaughter: Execution and Legislation -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.7 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ window 7,5 -15.9 "Seed Of The Sky" sync / 1[56]:[^:]*:Onslaughter:162D:/ -17.9 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -22.1 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.7 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } window 7,5 +15.9 "Seed Of The Sky" Ability { id: "162D", source: "Onslaughter" } +17.9 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +22.1 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } -29.3 "Execution" sync / 1[56]:[^:]*:Onslaughter:1632:/ +29.3 "Execution" Ability { id: "1632", source: "Onslaughter" } 31.5 "--targetable--" -31.5 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -38.7 "Seed Of The Sky" sync / 1[56]:[^:]*:Onslaughter:162D:/ -40.7 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -47.9 "Perpetual Ray" sync / 1[56]:[^:]*:Onslaughter:162B:/ duration 3.3 -51.5 "--regulator check--" #sync / 1[56]:[^:]*:Steam Regulator B:1634:/ -54.7 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -61.8 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -66.0 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ +31.5 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +38.7 "Seed Of The Sky" Ability { id: "162D", source: "Onslaughter" } +40.7 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +47.9 "Perpetual Ray" Ability { id: "162B", source: "Onslaughter" } duration 3.3 +51.5 "--regulator check--" #Ability { id: "1634", source: "Steam Regulator B" } +54.7 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +61.8 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +66.0 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } -73.2 "Legislation" sync / 1[56]:[^:]*:Onslaughter:1631:/ -78.3 "Discoid" sync / 1[56]:[^:]*:Onslaughter:162F:/ +73.2 "Legislation" Ability { id: "1631", source: "Onslaughter" } +78.3 "Discoid" Ability { id: "162F", source: "Onslaughter" } 79.9 "--orbs--" -80.5 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -90.7 "Seed Of The Sky" sync / 1[56]:[^:]*:Onslaughter:162D:/ -93.0 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -95.4 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ +80.5 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +90.7 "Seed Of The Sky" Ability { id: "162D", source: "Onslaughter" } +93.0 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +95.4 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } -102.5 "Perpetual Ray" sync / 1[56]:[^:]*:Onslaughter:162B:/ duration 3.3 -106.9 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -117.1 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -126.3 "Seed Of The Sky" sync / 1[56]:[^:]*:Onslaughter:162D:/ -127.4 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -132.6 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -138.7 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ +102.5 "Perpetual Ray" Ability { id: "162B", source: "Onslaughter" } duration 3.3 +106.9 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +117.1 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +126.3 "Seed Of The Sky" Ability { id: "162D", source: "Onslaughter" } +127.4 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +132.6 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +138.7 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } -145.8 "Perpetual Ray" sync / 1[56]:[^:]*:Onslaughter:162B:/ duration 3.3 -150.2 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -155.3 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -164.5 "Seed Of The Sky" sync / 1[56]:[^:]*:Onslaughter:162D:/ -165.6 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -170.8 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ -176.9 "Hydrothermal Missile" sync / 1[56]:[^:]*:Onslaughter:162A:/ +145.8 "Perpetual Ray" Ability { id: "162B", source: "Onslaughter" } duration 3.3 +150.2 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +155.3 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +164.5 "Seed Of The Sky" Ability { id: "162D", source: "Onslaughter" } +165.6 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +170.8 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } +176.9 "Hydrothermal Missile" Ability { id: "162A", source: "Onslaughter" } -184.0 "Perpetual Ray" sync / 1[56]:[^:]*:Onslaughter:162B:/ duration 3.3 window 30,30 jump 145.8 +184.0 "Perpetual Ray" Ability { id: "162B", source: "Onslaughter" } duration 3.3 window 30,30 jump 145.8 188.4 "Hydrothermal Missile" 193.5 "Hydrothermal Missile" 202.7 "Seed Of The Sky" @@ -61,205 +61,205 @@ hideall "Brute Force" ### Phase 2: Robots -300.0 "--sync--" sync / 22:........:Onslaughter:........:Onslaughter:00/ window 300,0 -303.0 "--sync--" sync / 03:........:Blaster:/ window 303,30 +300.0 "--sync--" NameToggle { name: "Onslaughter", toggle: "00" } window 300,0 +303.0 "--sync--" AddedCombatant { name: "Blaster" } window 303,30 304.0 "Blaster (north)" 304.0 "Brawler (middle)" 306.2 "--targetable--" -313.5 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:163B:/ window 314,5 -314.5 "Brute Force" sync / 1[56]:[^:]*:Blaster:1638:/ -316.6 "Auxiliary Power" sync / 1[56]:[^:]*:Brawler:164B:/ +313.5 "Magicked Mark" Ability { id: "163B", source: "Brawler" } window 314,5 +314.5 "Brute Force" Ability { id: "1638", source: "Blaster" } +316.6 "Auxiliary Power" Ability { id: "164B", source: "Brawler" } -319.8 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -322.4 "Mind Blast?" #sync / 1[56]:[^:]*:Blaster:1639:/ # 3 second cast, interruptible -324.5 "Brute Force" #sync / 1[56]:[^:]*:Blaster Mirage:1638:/ -325.6 "Brute Force" sync / 1[56]:[^:]*:Blaster:1638:/ -326.0 "Brawler Mechanic" sync / 1[56]:[^:]*:Brawler:(163D|163E|163F|1640):/ +319.8 "Attachment" Ability { id: "163C", source: "Brawler" } +322.4 "Mind Blast?" #Ability { id: "1639", source: "Blaster" } # 3 second cast, interruptible +324.5 "Brute Force" #Ability { id: "1638", source: "Blaster Mirage" } +325.6 "Brute Force" Ability { id: "1638", source: "Blaster" } +326.0 "Brawler Mechanic" Ability { id: ["163D", "163E", "163F", "1640"], source: "Brawler" } -329.4 "Swindler (east)" #sync / 22:........:Swindler:........:Swindler:01/ -330.1 "Auxiliary Power" sync / 1[56]:[^:]*:Brawler:164B:/ -333.7 "Brute Force" sync / 1[56]:[^:]*:Blaster:1638:/ -334.2 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:163B:/ -334.6 "Brute Force" #sync / 1[56]:[^:]*:Blaster Mirage:1638:/ -337.5 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:1646:/ -341.7 "Brute Force" sync / 1[56]:[^:]*:Blaster:1638:/ -343.2 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:163B:/ -346.3 "Auxiliary Power" sync / 1[56]:[^:]*:Brawler:164B:/ -348.5 "Height" sync / 1[56]:[^:]*:Swindler:1647:/ -349.4 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ +329.4 "Swindler (east)" #NameToggle { name: "Swindler", toggle: "01" } +330.1 "Auxiliary Power" Ability { id: "164B", source: "Brawler" } +333.7 "Brute Force" Ability { id: "1638", source: "Blaster" } +334.2 "Magicked Mark" Ability { id: "163B", source: "Brawler" } +334.6 "Brute Force" #Ability { id: "1638", source: "Blaster Mirage" } +337.5 "Magicked Mark" Ability { id: "1646", source: "Swindler" } +341.7 "Brute Force" Ability { id: "1638", source: "Blaster" } +343.2 "Magicked Mark" Ability { id: "163B", source: "Brawler" } +346.3 "Auxiliary Power" Ability { id: "164B", source: "Brawler" } +348.5 "Height" Ability { id: "1647", source: "Swindler" } +349.4 "Attachment" Ability { id: "163C", source: "Brawler" } -352.4 "Vortexer (south)" #sync / 22:........:Vortexer:........:Vortexer:01/ -354.6 "Magicked Mark" sync / 1[56]:[^:]*:Swindler:1646:/ -355.5 "Brawler Mechanic" sync / 1[56]:[^:]*:Brawler:(163D|163E|163F|1640):/ -359.6 "Auxiliary Power" sync / 1[56]:[^:]*:Brawler:164B:/ -360.4 "Brute Force" sync / 1[56]:[^:]*:Vortexer:164D:/ -363.7 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:163B:/ -370.4 "Brute Force" sync / 1[56]:[^:]*:Vortexer:164D:/ -372.8 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:163B:/ -375.9 "Auxiliary Power" sync / 1[56]:[^:]*:Brawler:164B:/ -379.0 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -380.5 "Brute Force" sync / 1[56]:[^:]*:Vortexer:164D:/ -385.0 "Brawler Mechanic" sync / 1[56]:[^:]*:Brawler:(163D|163E|163F|1640):/ -390.2 "Auxiliary Power" sync / 1[56]:[^:]*:Brawler:164B:/ -390.6 "Brute Force" sync / 1[56]:[^:]*:Vortexer:164D:/ -393.4 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -399.5 "Brawler Mechanic" sync / 1[56]:[^:]*:Brawler:(163D|163E|163F|1640):/ -400.7 "Brute Force" sync / 1[56]:[^:]*:Vortexer:164D:/ -403.6 "Auxiliary Power" sync / 1[56]:[^:]*:Brawler:164B:/ -407.7 "Magicked Mark" sync / 1[56]:[^:]*:Brawler:163B:/ +352.4 "Vortexer (south)" #NameToggle { name: "Vortexer", toggle: "01" } +354.6 "Magicked Mark" Ability { id: "1646", source: "Swindler" } +355.5 "Brawler Mechanic" Ability { id: ["163D", "163E", "163F", "1640"], source: "Brawler" } +359.6 "Auxiliary Power" Ability { id: "164B", source: "Brawler" } +360.4 "Brute Force" Ability { id: "164D", source: "Vortexer" } +363.7 "Magicked Mark" Ability { id: "163B", source: "Brawler" } +370.4 "Brute Force" Ability { id: "164D", source: "Vortexer" } +372.8 "Magicked Mark" Ability { id: "163B", source: "Brawler" } +375.9 "Auxiliary Power" Ability { id: "164B", source: "Brawler" } +379.0 "Attachment" Ability { id: "163C", source: "Brawler" } +380.5 "Brute Force" Ability { id: "164D", source: "Vortexer" } +385.0 "Brawler Mechanic" Ability { id: ["163D", "163E", "163F", "1640"], source: "Brawler" } +390.2 "Auxiliary Power" Ability { id: "164B", source: "Brawler" } +390.6 "Brute Force" Ability { id: "164D", source: "Vortexer" } +393.4 "Attachment" Ability { id: "163C", source: "Brawler" } +399.5 "Brawler Mechanic" Ability { id: ["163D", "163E", "163F", "1640"], source: "Brawler" } +400.7 "Brute Force" Ability { id: "164D", source: "Vortexer" } +403.6 "Auxiliary Power" Ability { id: "164B", source: "Brawler" } +407.7 "Magicked Mark" Ability { id: "163B", source: "Brawler" } # All of the robots have their own rotation <50% # Messing up thunder seems the most punishing, so here's Vortexer. -600.0 "--sync--" sync / 14:[^:]*:Vortexer:1657:/ window 600,0 -603.0 "Super Cyclone" sync / 1[56]:[^:]*:Vortexer:1657:/ -608.1 "Elemental Jammer" sync / 1[56]:[^:]*:Vortexer:167E:/ -615.4 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1650:/ -621.4 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1651:/ -645.8 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1650:/ -650.0 "Crashing Thunder" sync / 1[56]:[^:]*:Vortexer:164E:/ -651.7 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1651:/ -671.6 "Crashing Thunder" sync / 1[56]:[^:]*:Vortexer:164E:/ -676.1 "Ballistic Missile" sync / 1[56]:[^:]*:Vortexer:1650:/ -682.1 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1651:/ +600.0 "--sync--" StartsUsing { id: "1657", source: "Vortexer" } window 600,0 +603.0 "Super Cyclone" Ability { id: "1657", source: "Vortexer" } +608.1 "Elemental Jammer" Ability { id: "167E", source: "Vortexer" } +615.4 "Ballistic Missile" Ability { id: "1650", source: "Vortexer" } +621.4 "Earth Missile" Ability { id: "1651", source: "Vortexer" } +645.8 "Ballistic Missile" Ability { id: "1650", source: "Vortexer" } +650.0 "Crashing Thunder" Ability { id: "164E", source: "Vortexer" } +651.7 "Earth Missile" Ability { id: "1651", source: "Vortexer" } +671.6 "Crashing Thunder" Ability { id: "164E", source: "Vortexer" } +676.1 "Ballistic Missile" Ability { id: "1650", source: "Vortexer" } +682.1 "Earth Missile" Ability { id: "1651", source: "Vortexer" } ### Phase 3: Brute Justice -800.0 "Transform" sync / 1[56]:[^:]*:Brute Justice:167C:/ window 800,0 +800.0 "Transform" Ability { id: "167C", source: "Brute Justice" } window 800,0 802.7 "--targetable--" -810.9 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -818.0 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:1663:/ -821.2 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -824.2 "Short Needle" sync / 1[56]:[^:]*:Brute Justice:1669:/ -825.3 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ +810.9 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +818.0 "Double Rocket Punch" Ability { id: "1663", source: "Brute Justice" } +821.2 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +824.2 "Short Needle" Ability { id: "1669", source: "Brute Justice" } +825.3 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } # 166A (ground), 166B (prey), 166C (stack) -828.2 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:166C:/ -831.1 "Short Needle" sync / 1[56]:[^:]*:Brute Justice:1669:/ -831.6 "Mega Beam" sync / 1[56]:[^:]*:Brute Justice:1664:/ -837.0 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:1665:/ -841.6 "Apocalyptic Ray" sync / 1[56]:[^:]*:Brute Justice:1666:/ duration 5 -850.9 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -857.0 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:1663:/ -859.1 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -862.2 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -865.2 "Short Needle" sync / 1[56]:[^:]*:Brute Justice:1669:/ -866.3 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -869.2 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:166C:/ -872.2 "Short Needle" sync / 1[56]:[^:]*:Brute Justice:1669:/ -872.9 "Mega Beam" sync / 1[56]:[^:]*:Brute Justice:1664:/ -878.1 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:1665:/ +828.2 "Long Needle" Ability { id: "166C", source: "Brute Justice" } +831.1 "Short Needle" Ability { id: "1669", source: "Brute Justice" } +831.6 "Mega Beam" Ability { id: "1664", source: "Brute Justice" } +837.0 "Super Jump" Ability { id: "1665", source: "Brute Justice" } +841.6 "Apocalyptic Ray" Ability { id: "1666", source: "Brute Justice" } duration 5 +850.9 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +857.0 "Double Rocket Punch" Ability { id: "1663", source: "Brute Justice" } +859.1 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +862.2 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +865.2 "Short Needle" Ability { id: "1669", source: "Brute Justice" } +866.3 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +869.2 "Long Needle" Ability { id: "166C", source: "Brute Justice" } +872.2 "Short Needle" Ability { id: "1669", source: "Brute Justice" } +872.9 "Mega Beam" Ability { id: "1664", source: "Brute Justice" } +878.1 "Super Jump" Ability { id: "1665", source: "Brute Justice" } 881.2 "--untargetable--" ### Phase 4: First Intermission -884.4 "J Kick" sync / 1[56]:[^:]*:Brute Justice:166D:/ window 890,5 -892.7 "--sync--" sync / 1[56]:[^:]*:Brute Justice:1636:/ -893.9 "100-Megatonze Shock" sync / 1[56]:[^:]*:Onslaughter:1635:/ -894.7 "Mirage" sync / 1[56]:[^:]*:Blaster Mirage:1658:/ -895.7 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -899.7 "Supercharge" #sync / 1[56]:[^:]*:Blaster Mirage:1659:/ -901.9 "Double Buster" sync / 1[56]:[^:]*:Brawler:163E:/ -906.2 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -906.5 "Eye Of The Chakram" sync / 1[56]:[^:]*:Steam Chakram:1654:/ -914.0 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -915.5 "Height" sync / 1[56]:[^:]*:Swindler:1647:/ -915.6 "Ice Missile" #sync / 1[56]:[^:]*:Vortexer:1655:/ -916.4 "Earth Missile" sync / 1[56]:[^:]*:Vortexer:1651:/ -919.5 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -920.6 "Single Buster" sync / 1[56]:[^:]*:Brawler:163D:/ +884.4 "J Kick" Ability { id: "166D", source: "Brute Justice" } window 890,5 +892.7 "--sync--" Ability { id: "1636", source: "Brute Justice" } +893.9 "100-Megatonze Shock" Ability { id: "1635", source: "Onslaughter" } +894.7 "Mirage" Ability { id: "1658", source: "Blaster Mirage" } +895.7 "Attachment" Ability { id: "163C", source: "Brawler" } +899.7 "Supercharge" #Ability { id: "1659", source: "Blaster Mirage" } +901.9 "Double Buster" Ability { id: "163E", source: "Brawler" } +906.2 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +906.5 "Eye Of The Chakram" Ability { id: "1654", source: "Steam Chakram" } +914.0 "Attachment" Ability { id: "163C", source: "Brawler" } +915.5 "Height" Ability { id: "1647", source: "Swindler" } +915.6 "Ice Missile" #Ability { id: "1655", source: "Vortexer" } +916.4 "Earth Missile" Ability { id: "1651", source: "Vortexer" } +919.5 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +920.6 "Single Buster" Ability { id: "163D", source: "Brawler" } ### Phase 5: Round 2, Fighto! 933.1 "--targetable--" -936.2 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -943.3 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:1663:/ -946.5 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -949.5 "Short Needle" sync / 1[56]:[^:]*:Brute Justice:1669:/ -950.6 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -953.5 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:166C:/ -956.4 "Short Needle" sync / 1[56]:[^:]*:Brute Justice:1669:/ -956.9 "Mega Beam" sync / 1[56]:[^:]*:Brute Justice:1664:/ -962.3 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:1665:/ -966.9 "Apocalyptic Ray" sync / 1[56]:[^:]*:Brute Justice:1666:/ duration 5 -976.2 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -982.3 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:1663:/ -984.4 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -987.5 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -990.5 "Short Needle" sync / 1[56]:[^:]*:Brute Justice:1669:/ -991.6 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -994.5 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:166C:/ -997.5 "Short Needle" sync / 1[56]:[^:]*:Brute Justice:1669:/ -998.2 "Mega Beam" sync / 1[56]:[^:]*:Brute Justice:1664:/ -1003.4 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:1665:/ +936.2 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +943.3 "Double Rocket Punch" Ability { id: "1663", source: "Brute Justice" } +946.5 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +949.5 "Short Needle" Ability { id: "1669", source: "Brute Justice" } +950.6 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +953.5 "Long Needle" Ability { id: "166C", source: "Brute Justice" } +956.4 "Short Needle" Ability { id: "1669", source: "Brute Justice" } +956.9 "Mega Beam" Ability { id: "1664", source: "Brute Justice" } +962.3 "Super Jump" Ability { id: "1665", source: "Brute Justice" } +966.9 "Apocalyptic Ray" Ability { id: "1666", source: "Brute Justice" } duration 5 +976.2 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +982.3 "Double Rocket Punch" Ability { id: "1663", source: "Brute Justice" } +984.4 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +987.5 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +990.5 "Short Needle" Ability { id: "1669", source: "Brute Justice" } +991.6 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +994.5 "Long Needle" Ability { id: "166C", source: "Brute Justice" } +997.5 "Short Needle" Ability { id: "1669", source: "Brute Justice" } +998.2 "Mega Beam" Ability { id: "1664", source: "Brute Justice" } +1003.4 "Super Jump" Ability { id: "1665", source: "Brute Justice" } 1006.5 "--untargetable--" -1009.7 "J Kick" sync / 1[56]:[^:]*:Brute Justice:166D:/ +1009.7 "J Kick" Ability { id: "166D", source: "Brute Justice" } # FIXME: some pause here, before looping back to targetable? 1012.0 "--targetable--" ### Phase 6: Second Intermission 1200.0 "--untargetable--" -1203.2 "J Kick" sync / 1[56]:[^:]*:Brute Justice:166D:/ -1211.5 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ window 291.5,5 -1211.5 "--sync--" sync / 1[56]:[^:]*:Brute Justice:1636:/ -1212.6 "100-Megatonze Shock" sync / 1[56]:[^:]*:Onslaughter:1635:/ +1203.2 "J Kick" Ability { id: "166D", source: "Brute Justice" } +1211.5 "Attachment" Ability { id: "163C", source: "Brawler" } window 291.5,5 +1211.5 "--sync--" Ability { id: "1636", source: "Brute Justice" } +1212.6 "100-Megatonze Shock" Ability { id: "1635", source: "Onslaughter" } # First Intermission can be skipped, but this is the first different ability. -1217.5 "Hidden Minefield" sync / 1[56]:[^:]*:Hidden Mine:165E:/ window 1220,5 duration 9 -1217.6 "Double Drill Crush" sync / 1[56]:[^:]*:Brawler:1640:/ -1218.6 "Drill Drive" sync / 1[56]:[^:]*:Brawler:1641:/ -1222.1 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -1223.7 "Attachment" sync / 1[56]:[^:]*:Brawler:163C:/ -1228.5 "Mirage" sync / 1[56]:[^:]*:Blaster Mirage:1658:/ -1229.8 "Rocket Drill" sync / 1[56]:[^:]*:Brawler:163F:/ -1232.6 "Mega Beam" sync / 1[56]:[^:]*:Onslaughter:162E:/ -1232.6 "Eye Of The Chakram" sync / 1[56]:[^:]*:Steam Chakram:1654:/ -1233.6 "Power Tackle" #sync / 1[56]:[^:]*:Blaster Mirage:165B:/ -1233.6 "Blinder" #sync / 1[56]:[^:]*:Blaster Mirage:165A:/ -1241.4 "Enumeration" sync / 1[56]:[^:]*:Swindler:1649:/ -1241.4 "Ultra Flash" sync / 1[56]:[^:]*:Vortexer:1656:/ +1217.5 "Hidden Minefield" Ability { id: "165E", source: "Hidden Mine" } window 1220,5 duration 9 +1217.6 "Double Drill Crush" Ability { id: "1640", source: "Brawler" } +1218.6 "Drill Drive" Ability { id: "1641", source: "Brawler" } +1222.1 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +1223.7 "Attachment" Ability { id: "163C", source: "Brawler" } +1228.5 "Mirage" Ability { id: "1658", source: "Blaster Mirage" } +1229.8 "Rocket Drill" Ability { id: "163F", source: "Brawler" } +1232.6 "Mega Beam" Ability { id: "162E", source: "Onslaughter" } +1232.6 "Eye Of The Chakram" Ability { id: "1654", source: "Steam Chakram" } +1233.6 "Power Tackle" #Ability { id: "165B", source: "Blaster Mirage" } +1233.6 "Blinder" #Ability { id: "165A", source: "Blaster Mirage" } +1241.4 "Enumeration" Ability { id: "1649", source: "Swindler" } +1241.4 "Ultra Flash" Ability { id: "1656", source: "Vortexer" } ### Phase 7: Gavel -1252.1 "--targetable--" sync / 14:[^:]*:Brute Justice:166E:/ window 1255,100 -1257.1 "Justice" sync / 1[56]:[^:]*:Brute Justice:166E:/ -1264.2 "Verdict" sync / 1[56]:[^:]*:Brute Justice:166F:/ -1296.3 "Gavel" sync / 1[56]:[^:]*:Brute Justice:1670:/ +1252.1 "--targetable--" StartsUsing { id: "166E", source: "Brute Justice" } window 1255,100 +1257.1 "Justice" Ability { id: "166E", source: "Brute Justice" } +1264.2 "Verdict" Ability { id: "166F", source: "Brute Justice" } +1296.3 "Gavel" Ability { id: "1670", source: "Brute Justice" } 1304.4 "--untargetable--" ### Phase 8: Final Justice -1307.6 "J Kick" sync / 1[56]:[^:]*:Brute Justice:166D:/ +1307.6 "J Kick" Ability { id: "166D", source: "Brute Justice" } 1310.6 "--targetable--" -1313.7 "Link-Up" sync / 1[56]:[^:]*:Brute Justice:1673:/ -1324.8 "Final Punch" sync / 1[56]:[^:]*:Brute Justice:170C:/ -1326.0 "Final Apocalypse" sync / 1[56]:[^:]*:Brute Justice:1716:/ -1332.1 "Final Beam" sync / 1[56]:[^:]*:Brute Justice:1725:/ -1335.2 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -1339.2 "Hidden Minefield" sync / 1[56]:[^:]*:Hidden Mine:165E:/ duration 9 -1340.3 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -1341.4 "Long Needle" sync / 1[56]:[^:]*:Brute Justice:166C:/ -1353.6 "Eye Of The Chakram" sync / 1[56]:[^:]*:Steam Chakram:1654:/ -1354.6 "Enumeration" sync / 1[56]:[^:]*:Brute Justice:1649:/ -1360.0 "Mega Beam" sync / 1[56]:[^:]*:Brute Justice:1664:/ -1365.1 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:1665:/ -1371.3 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:1662:/ -1376.4 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:1668:/ -1383.5 "Final Punch" sync / 1[56]:[^:]*:Brute Justice:170C:/ -1385.0 "Final Apocalypse" sync / 1[56]:[^:]*:Brute Justice:1716:/ -1391.1 "Final Beam" sync / 1[56]:[^:]*:Brute Justice:1725:/ +1313.7 "Link-Up" Ability { id: "1673", source: "Brute Justice" } +1324.8 "Final Punch" Ability { id: "170C", source: "Brute Justice" } +1326.0 "Final Apocalypse" Ability { id: "1716", source: "Brute Justice" } +1332.1 "Final Beam" Ability { id: "1725", source: "Brute Justice" } +1335.2 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +1339.2 "Hidden Minefield" Ability { id: "165E", source: "Hidden Mine" } duration 9 +1340.3 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +1341.4 "Long Needle" Ability { id: "166C", source: "Brute Justice" } +1353.6 "Eye Of The Chakram" Ability { id: "1654", source: "Steam Chakram" } +1354.6 "Enumeration" Ability { id: "1649", source: "Brute Justice" } +1360.0 "Mega Beam" Ability { id: "1664", source: "Brute Justice" } +1365.1 "Super Jump" Ability { id: "1665", source: "Brute Justice" } +1371.3 "Flarethrower" Ability { id: "1662", source: "Brute Justice" } +1376.4 "Missile Command" Ability { id: "1668", source: "Brute Justice" } +1383.5 "Final Punch" Ability { id: "170C", source: "Brute Justice" } +1385.0 "Final Apocalypse" Ability { id: "1716", source: "Brute Justice" } +1391.1 "Final Beam" Ability { id: "1725", source: "Brute Justice" } 1398.2 "--untargetable--" ### Phase 9: J-Storm -1401.4 "J Storm" sync / 1[56]:[^:]*:Brute Justice:1674:/ window 1500,1000 +1401.4 "J Storm" Ability { id: "1674", source: "Brute Justice" } window 1500,1000 1403.4 "--targetable--" -1407.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ window 100,100 -1412.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ -1417.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ -1422.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ -1427.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ -1432.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ -1437.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ -1442.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ -1447.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ -1452.5 "J Wave" sync / 1[56]:[^:]*:Brute Justice:1675:/ +1407.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } window 100,100 +1412.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } +1417.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } +1422.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } +1427.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } +1432.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } +1437.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } +1442.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } +1447.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } +1452.5 "J Wave" Ability { id: "1675", source: "Brute Justice" } diff --git a/ui/raidboss/data/03-hw/raid/a9s.txt b/ui/raidboss/data/03-hw/raid/a9s.txt index 0c95f82b06..31d6828015 100644 --- a/ui/raidboss/data/03-hw/raid/a9s.txt +++ b/ui/raidboss/data/03-hw/raid/a9s.txt @@ -9,31 +9,31 @@ hideall "--sync--" ### Faust Z # -p 1A2B:1006.5 # The Cranial Plate will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:72F:/ window 10000 -1006.5 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ window 1007,2.5 -1013.6 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1020.7 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1027.8 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1030.9 "Panzerschreck" sync / 1[56]:[^:]*:Faust Z:1A2C:/ -1038.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1045.1 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1052.2 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1055.3 "Panzerschreck x2" duration 2.1 #sync / 1[56]:[^:]*:Faust Z:1A2C:/ -1059.5 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1066.6 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1073.7 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1080.8 "Panzerschreck x2" duration 2.1 #sync / 1[56]:[^:]*:Faust Z:1A2C:/ -1085.0 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1092.2 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1099.3 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1106.4 "Panzerschreck x2" duration 2.1 #sync / 1[56]:[^:]*:Faust Z:1A2C:/ -1110.6 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1117.7 "Kaltstrahl" sync / 1[56]:[^:]*:Faust Z:1A2B:/ -1126.1 "Panzerschreck Enrage" sync / 1[56]:[^:]*:Faust Z:1A2D:/ window 1200,100 -1136.3 "Panzerschreck Enrage" #sync / 1[56]:[^:]*:Faust Z:1A2D:/ -1146.5 "Panzerschreck Enrage" #sync / 1[56]:[^:]*:Faust Z:1A2D:/ -1156.7 "Panzerschreck Enrage" #sync / 1[56]:[^:]*:Faust Z:1A2D:/ -1166.9 "Panzerschreck Enrage" #sync / 1[56]:[^:]*:Faust Z:1A2D:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "72F" } window 10000 +1006.5 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } window 1007,2.5 +1013.6 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1020.7 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1027.8 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1030.9 "Panzerschreck" Ability { id: "1A2C", source: "Faust Z" } +1038.0 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1045.1 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1052.2 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1055.3 "Panzerschreck x2" duration 2.1 #Ability { id: "1A2C", source: "Faust Z" } +1059.5 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1066.6 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1073.7 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1080.8 "Panzerschreck x2" duration 2.1 #Ability { id: "1A2C", source: "Faust Z" } +1085.0 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1092.2 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1099.3 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1106.4 "Panzerschreck x2" duration 2.1 #Ability { id: "1A2C", source: "Faust Z" } +1110.6 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1117.7 "Kaltstrahl" Ability { id: "1A2B", source: "Faust Z" } +1126.1 "Panzerschreck Enrage" Ability { id: "1A2D", source: "Faust Z" } window 1200,100 +1136.3 "Panzerschreck Enrage" #Ability { id: "1A2D", source: "Faust Z" } +1146.5 "Panzerschreck Enrage" #Ability { id: "1A2D", source: "Faust Z" } +1156.7 "Panzerschreck Enrage" #Ability { id: "1A2D", source: "Faust Z" } +1166.9 "Panzerschreck Enrage" #Ability { id: "1A2D", source: "Faust Z" } ### Refurbisher Zero @@ -49,148 +49,148 @@ hideall "--sync--" # Phase 1 # Life Support will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:730:/ window 10000 -2010.0 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ window 2010,5 -2012.1 "Right Arm Reassembly" sync / 1[56]:[^:]*:Refurbisher 0:1A2E:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "730" } window 10000 +2010.0 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } window 2010,5 +2012.1 "Right Arm Reassembly" Ability { id: "1A2E", source: "Refurbisher 0" } 2014.3 "Power Generator x2 (NE)" 2014.3 "Lava (NE)" duration 42 -2023.4 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2034.4 "--rocks fall--" #sync / 03:........:Scrap:/ -2039.6 "Scrap Burst" sync / 1[56]:[^:]*:Refurbisher 0:1A3A:/ -2048.8 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2055.9 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ +2023.4 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2034.4 "--rocks fall--" #AddedCombatant { name: "Scrap" } +2039.6 "Scrap Burst" Ability { id: "1A3A", source: "Refurbisher 0" } +2048.8 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2055.9 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } # Phase 2 -2066.0 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ -2074.2 "Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3[CD]:/ window 30,30 +2066.0 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } +2074.2 "Scrapline" Ability { id: "1A3[CD]", source: "Refurbisher 0" } window 30,30 2078.2 "Power Generator x2 (SE)" 2078.2 "Lava (SE)" duration 42 -2087.5 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2099.7 "Acid Rain" #sync / 1[56]:[^:]*:Refurbisher 0:1C0A:/ -2099.7 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2106.8 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2121.0 "Scrap Bomb" sync / 1[56]:[^:]*:Refurbisher 0:1A3E:/ +2087.5 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2099.7 "Acid Rain" #Ability { id: "1C0A", source: "Refurbisher 0" } +2099.7 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2106.8 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2121.0 "Scrap Bomb" Ability { id: "1A3E", source: "Refurbisher 0" } # Phase 3 -2133.2 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ -2141.4 "Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3[CD]:/ window 30,30 +2133.2 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } +2141.4 "Scrapline" Ability { id: "1A3[CD]", source: "Refurbisher 0" } window 30,30 2145.4 "Lava (NW)" duration 15 2146.6 "Full-Metal Faust Add" -2152.7 "Panzer Vor" sync / 1[56]:[^:]*:Full-Metal Faust:1C05:/ +2152.7 "Panzer Vor" Ability { id: "1C05", source: "Full-Metal Faust" } 2152.7 "--targetable--" 2160.7 "Lava (NE)" duration 15 -2164.9 "Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3C:/ +2164.9 "Scrapline" Ability { id: "1A3C", source: "Refurbisher 0" } 2173.9 "Lava (SW)" duration 15 -2180.2 "Acid Rain" #sync / 1[56]:[^:]*:Refurbisher 0:1C0A:/ +2180.2 "Acid Rain" #Ability { id: "1C0A", source: "Refurbisher 0" } 2189.3 "Lava (SE)" duration 15 -2195.1 "--rocks fall--" #sync / 03:........:Scrap:/ -2200.3 "Scrap Burst" sync / 1[56]:[^:]*:Refurbisher 0:1A3A:/ +2195.1 "--rocks fall--" #AddedCombatant { name: "Scrap" } +2200.3 "Scrap Burst" Ability { id: "1A3A", source: "Refurbisher 0" } # Phase 4 -2215.5 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ +2215.5 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } 2226.5 "Power Generator x1 (SW)" 2226.5 "Alarum x1 (SW)" 2226.5 "Lava (SW)" duration 42 -2238.7 "--rocks fall--" #sync / 03:........:Scrap:/ -2243.9 "Scrap Burst" sync / 1[56]:[^:]*:Refurbisher 0:1A3A:/ -2253.1 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2260.2 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2269.4 "Scrap Bomb" sync / 1[56]:[^:]*:Refurbisher 0:1A3E:/ +2238.7 "--rocks fall--" #AddedCombatant { name: "Scrap" } +2243.9 "Scrap Burst" Ability { id: "1A3A", source: "Refurbisher 0" } +2253.1 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2260.2 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2269.4 "Scrap Bomb" Ability { id: "1A3E", source: "Refurbisher 0" } # Phase 5 -2281.6 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ -2283.7 "Left Arm Reassembly" sync / 1[56]:[^:]*:Refurbisher 0:1A2F:/ -2294.9 "Double Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3[CD]:/ window 40,40 +2281.6 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } +2283.7 "Left Arm Reassembly" Ability { id: "1A2F", source: "Refurbisher 0" } +2294.9 "Double Scrapline" Ability { id: "1A3[CD]", source: "Refurbisher 0" } window 40,40 2298.9 "Power Generator x2 (NW)" 2298.9 "Alarum x1 (NW)" 2298.9 "Bomb x2 (NE)" 2298.9 "Lava (NW)" duration 42 -2306.2 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2313.3 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2320.5 "Acid Rain" #sync / 1[56]:[^:]*:Refurbisher 0:1C0A:/ -2325.5 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2332.6 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2337.1 "Explosion (NE)" sync / 1[56]:[^:]*:Bomb:1A35:/ -2339.7 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2344.7 "Acid Rain" #sync / 1[56]:[^:]*:Refurbisher 0:1C0A:/ +2306.2 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2313.3 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2320.5 "Acid Rain" #Ability { id: "1C0A", source: "Refurbisher 0" } +2325.5 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2332.6 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2337.1 "Explosion (NE)" Ability { id: "1A35", source: "Bomb" } +2339.7 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2344.7 "Acid Rain" #Ability { id: "1C0A", source: "Refurbisher 0" } # Phase 6 -2350.8 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ -2361.0 "Double Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3[CD]:/ window 40,40 +2350.8 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } +2361.0 "Double Scrapline" Ability { id: "1A3[CD]", source: "Refurbisher 0" } window 40,40 2365.0 "Power Generator x1 (SW)" 2365.0 "Alarum x1 (SW)" 2365.0 "Bomb x2 (NW/SE)" 2365.0 "Lava (NE/SW)" duration 42 -2376.4 "Scrap Bomb" sync / 1[56]:[^:]*:Refurbisher 0:1A3E:/ -2384.6 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2403.3 "Explosion (NW/SE)" sync / 1[56]:[^:]*:Bomb:1A35:/ -2398.5 "--rocks fall--" #sync / 03:........:Scrap:/ -2403.7 "Scrap Burst" sync / 1[56]:[^:]*:Refurbisher 0:1A3A:/ +2376.4 "Scrap Bomb" Ability { id: "1A3E", source: "Refurbisher 0" } +2384.6 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2403.3 "Explosion (NW/SE)" Ability { id: "1A35", source: "Bomb" } +2398.5 "--rocks fall--" #AddedCombatant { name: "Scrap" } +2403.7 "Scrap Burst" Ability { id: "1A3A", source: "Refurbisher 0" } # Phase 7 -2418.9 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ -2429.1 "Double Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3[CD]:/ window 40,40 +2418.9 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } +2429.1 "Double Scrapline" Ability { id: "1A3[CD]", source: "Refurbisher 0" } window 40,40 2433.1 "Power Generator x2 (NW)" 2433.1 "Alarum (NW)" 2433.1 "Bomb x2 (NE)" 2433.1 "Lava (NW)" duration 42 -2440.4 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2447.5 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2454.7 "Acid Rain" #sync / 1[56]:[^:]*:Refurbisher 0:1C0A:/ -2459.7 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2466.9 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2471.4 "Explosion (NE)" sync / 1[56]:[^:]*:Bomb:1A35:/ -2474.1 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2479.1 "Acid Rain" #sync / 1[56]:[^:]*:Refurbisher 0:1C0A:/ +2440.4 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2447.5 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2454.7 "Acid Rain" #Ability { id: "1C0A", source: "Refurbisher 0" } +2459.7 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2466.9 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2471.4 "Explosion (NE)" Ability { id: "1A35", source: "Bomb" } +2474.1 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2479.1 "Acid Rain" #Ability { id: "1C0A", source: "Refurbisher 0" } # Phase 8 # TODO: double check this phase timings against a clean pull -2485.2 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ -2495.4 "Double Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3[CD]:/ window 40,40 +2485.2 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } +2495.4 "Double Scrapline" Ability { id: "1A3[CD]", source: "Refurbisher 0" } window 40,40 2499.4 "Power Generator x1 (SW)" 2499.4 "Alarum x1 (SW)" 2499.4 "Bomb x2 (NW/SE)" 2499.4 "Lava (NE/SW)" duration 42 -2510.8 "Scrap Bomb" sync / 1[56]:[^:]*:Refurbisher 0:1A3E:/ -2524.9 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2537.7 "Explosion (NW/SE)" sync / 1[56]:[^:]*:Bomb:1A35:/ -2546.1 "Scrap Storm" sync / 1[56]:[^:]*:Refurbisher 0:1A3B:/ +2510.8 "Scrap Bomb" Ability { id: "1A3E", source: "Refurbisher 0" } +2524.9 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2537.7 "Explosion (NW/SE)" Ability { id: "1A35", source: "Bomb" } +2546.1 "Scrap Storm" Ability { id: "1A3B", source: "Refurbisher 0" } ### Enrage -2554.3 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ -2556.5 "Heat Shielding Reassembly" sync / 1[56]:[^:]*:Refurbisher 0:1A30:/ -2562.6 "Scrap Storm Enrage" sync / 1[56]:[^:]*:Refurbisher 0:1A3B:/ +2554.3 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } +2556.5 "Heat Shielding Reassembly" Ability { id: "1A30", source: "Refurbisher 0" } +2562.6 "Scrap Storm Enrage" Ability { id: "1A3B", source: "Refurbisher 0" } ### Post-enrage timeline science -2572.7 "Double Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3[CD]:/ window 40,40 +2572.7 "Double Scrapline" Ability { id: "1A3[CD]", source: "Refurbisher 0" } window 40,40 2576.7 "Power Generator x1 (NW)" 2576.7 "Alarum x1 (NW)" 2576.7 "Bomb x2 (NE)" 2576.7 "Lava (NW)" duration 42 -2584.0 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2591.1 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2598.3 "Acid Rain" #sync / 1[56]:[^:]*:Refurbisher 0:1C0A:/ -2603.3 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2610.5 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2615.0 "Explosion (NE)" sync / 1[56]:[^:]*:Bomb:1A35:/ -2617.6 "Scrap" sync / 1[56]:[^:]*:Refurbisher 0:1A39:/ -2622.6 "Acid Rain" #sync / 1[56]:[^:]*:Refurbisher 0:1C0A:/ - -2628.7 "Stockpile" sync / 1[56]:[^:]*:Refurbisher 0:1A38:/ -2638.9 "Double Scrapline" sync / 1[56]:[^:]*:Refurbisher 0:1A3[CD]:/ window 40,40 +2584.0 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2591.1 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2598.3 "Acid Rain" #Ability { id: "1C0A", source: "Refurbisher 0" } +2603.3 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2610.5 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2615.0 "Explosion (NE)" Ability { id: "1A35", source: "Bomb" } +2617.6 "Scrap" Ability { id: "1A39", source: "Refurbisher 0" } +2622.6 "Acid Rain" #Ability { id: "1C0A", source: "Refurbisher 0" } + +2628.7 "Stockpile" Ability { id: "1A38", source: "Refurbisher 0" } +2638.9 "Double Scrapline" Ability { id: "1A3[CD]", source: "Refurbisher 0" } window 40,40 2642.9 "Power Generator x1 (SW)" 2642.9 "Alarum x1 (SW)" 2642.9 "Bomb x2 (NW/SE)" 2642.9 "Lava (NE/SW)" duration 42 -2654.4 "Scrap Bomb" sync / 1[56]:[^:]*:Refurbisher 0:1A3E:/ +2654.4 "Scrap Bomb" Ability { id: "1A3E", source: "Refurbisher 0" } # 11 minute less soft enrage, in case you weren't killed by previous enrage. -2659.2 "--sync--" sync / 14:[^:]*:Refurbisher 0:1A3B:/ window 50,10000 -2659.5 "Scrap Storm Enrage" sync / 1[56]:[^:]*:Refurbisher 0:1A3B:/ -2659.5 "Scrap Storm Enrage" #sync / 1[56]:[^:]*:Refurbisher 0:1A3B:/ -2667.7 "Scrap Storm Enrage" #sync / 1[56]:[^:]*:Refurbisher 0:1A3B:/ -2675.9 "Scrap Storm Enrage" #sync / 1[56]:[^:]*:Refurbisher 0:1A3B:/ -2684.1 "Scrap Storm Enrage" #sync / 1[56]:[^:]*:Refurbisher 0:1A3B:/ -2692.3 "Scrap Storm Enrage" #sync / 1[56]:[^:]*:Refurbisher 0:1A3B:/ +2659.2 "--sync--" StartsUsing { id: "1A3B", source: "Refurbisher 0" } window 50,10000 +2659.5 "Scrap Storm Enrage" Ability { id: "1A3B", source: "Refurbisher 0" } +2659.5 "Scrap Storm Enrage" #Ability { id: "1A3B", source: "Refurbisher 0" } +2667.7 "Scrap Storm Enrage" #Ability { id: "1A3B", source: "Refurbisher 0" } +2675.9 "Scrap Storm Enrage" #Ability { id: "1A3B", source: "Refurbisher 0" } +2684.1 "Scrap Storm Enrage" #Ability { id: "1A3B", source: "Refurbisher 0" } +2692.3 "Scrap Storm Enrage" #Ability { id: "1A3B", source: "Refurbisher 0" } # &c &c &c diff --git a/ui/raidboss/data/03-hw/trial/ravana-ex.txt b/ui/raidboss/data/03-hw/trial/ravana-ex.txt index 4087ef8bac..97efad99b0 100644 --- a/ui/raidboss/data/03-hw/trial/ravana-ex.txt +++ b/ui/raidboss/data/03-hw/trial/ravana-ex.txt @@ -9,24 +9,24 @@ hideall "--sync--" # The meter also increases passively during all phases except the opening block. # Any displayed phase lengths are the maximum that could occur with no "extra" Bloodlust. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.1 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ window 7.1,10 -11.9 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -16.0 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -22.2 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ window 20,20 -29.4 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -32.5 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -37.3 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -42.5 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ - -51.7 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -56.5 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -60.6 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -66.8 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ window 20,20 -74.0 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -77.1 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -81.9 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -87.1 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ jump 42.5 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.1 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } window 7.1,10 +11.9 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +16.0 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +22.2 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } window 20,20 +29.4 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +32.5 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +37.3 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +42.5 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } + +51.7 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +56.5 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +60.6 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +66.8 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } window 20,20 +74.0 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +77.1 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +81.9 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +87.1 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } jump 42.5 96.3 "Blinding Blade" 101.1 "The Seeing" @@ -37,138 +37,138 @@ hideall "--sync--" 126.5 "The Seeing" # Block initiates at 100 bloodlust. Loosely linked to HP%, exact connection unknown. -150.0 "Scorpion Avatar" sync / 1[56]:[^:]*:Ravana:E81:/ window 150,5 -155.2 "Blades Of Carnage And Liberation" sync / 1[56]:[^:]*:Ravana:137A:/ -175.3 "Prelude To Liberation" sync / 1[56]:[^:]*:Ravana:EBC:/ +150.0 "Scorpion Avatar" Ability { id: "E81", source: "Ravana" } window 150,5 +155.2 "Blades Of Carnage And Liberation" Ability { id: "137A", source: "Ravana" } +175.3 "Prelude To Liberation" Ability { id: "EBC", source: "Ravana" } 175.3 "--untargetable--" -182.4 "Prelude To Liberation (Flames)" sync / 1[56]:[^:]*:Ravana:EBD:/ -183.4 "--sync--" sync / 1[56]:[^:]*:Ravana:13BC:/ -189.6 "Prelude To Liberation (Circles)" sync / 1[56]:[^:]*:Ravana:EBF:/ +182.4 "Prelude To Liberation (Flames)" Ability { id: "EBD", source: "Ravana" } +183.4 "--sync--" Ability { id: "13BC", source: "Ravana" } +189.6 "Prelude To Liberation (Circles)" Ability { id: "EBF", source: "Ravana" } 194.8 "--targetable--" -195.0 "Blades Of Carnage And Liberation" sync / 1[56]:[^:]*:Ravana:137A:/ -215.6 "Liberation" sync / 1[56]:[^:]*:Ravana:EC0:/ +195.0 "Blades Of Carnage And Liberation" Ability { id: "137A", source: "Ravana" } +215.6 "Liberation" Ability { id: "EC0", source: "Ravana" } 215.6 "--untargetable--" -219.8 "Clone Spawn 1" # sync / 1[56]:[^:]*:Ravana:EC1:/ -220.8 "Clone Spawn 2" # sync / 1[56]:[^:]*:Ravana:EC1:/ -221.8 "Clone Spawn 3" # sync / 1[56]:[^:]*:Ravana:EC1:/ -222.8 "Clone Spawn 4" # sync / 1[56]:[^:]*:Ravana:EC1:/ -226.9 "Clone Dash 1" # sync / 1[56]:[^:]*:Ravana:EC2:/ -228.4 "Clone Dash 2" # sync / 1[56]:[^:]*:Ravana:EC2:/ -229.9 "Clone Dash 3" # sync / 1[56]:[^:]*:Ravana:EC2:/ -231.4 "Clone Dash 4" # sync / 1[56]:[^:]*:Ravana:EC2:/ +219.8 "Clone Spawn 1" # Ability { id: "EC1", source: "Ravana" } +220.8 "Clone Spawn 2" # Ability { id: "EC1", source: "Ravana" } +221.8 "Clone Spawn 3" # Ability { id: "EC1", source: "Ravana" } +222.8 "Clone Spawn 4" # Ability { id: "EC1", source: "Ravana" } +226.9 "Clone Dash 1" # Ability { id: "EC2", source: "Ravana" } +228.4 "Clone Dash 2" # Ability { id: "EC2", source: "Ravana" } +229.9 "Clone Dash 3" # Ability { id: "EC2", source: "Ravana" } +231.4 "Clone Dash 4" # Ability { id: "EC2", source: "Ravana" } 235.6 "--targetable--" # Initiates immediately following Liberation block. -235.7 "Dragonfly Avatar" sync / 1[56]:[^:]*:Ravana:E80:/ -242.8 "Warlord Shell" sync / 1[56]:[^:]*:Ravana:EB1:/ -247.6 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -255.4 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -264.6 "Warlord Flame?" sync / 1[56]:[^:]*:Ravana:EB2:/ # Skipped if Ravana's shield is burned. -267.8 "--sync--" sync / 1[56]:[^:]*:Ravana:EB0:/ -272.0 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ window 30,5 -279.1 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -286.8 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -290.9 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -296.2 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ -303.3 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -306.4 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -309.5 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -312.7 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ -320.8 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -325.5 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -330.7 "Atma-Linga x2" # sync / 1[56]:[^:]*:Ravana:EA6:/ +235.7 "Dragonfly Avatar" Ability { id: "E80", source: "Ravana" } +242.8 "Warlord Shell" Ability { id: "EB1", source: "Ravana" } +247.6 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +255.4 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +264.6 "Warlord Flame?" Ability { id: "EB2", source: "Ravana" } # Skipped if Ravana's shield is burned. +267.8 "--sync--" Ability { id: "EB0", source: "Ravana" } +272.0 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } window 30,5 +279.1 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +286.8 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +290.9 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +296.2 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } +303.3 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +306.4 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +309.5 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +312.7 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } +320.8 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +325.5 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +330.7 "Atma-Linga x2" # Ability { id: "EA6", source: "Ravana" } # The intermission can have 0-10 Laughing Moon charges before Ravana uses the Chandrahas ultimate. # The number is dependent on how many Gana are able to finish their Falling Laughter casts. # More than 1-2 is typically a wipe, as each inflicts a Vulnerability Up stack to the party. -336.8 "Bloody Fuller" sync / 14:[^:]*:Ravana:EB3:/ duration 4.7 window 336.8,5 +336.8 "Bloody Fuller" StartsUsing { id: "EB3", source: "Ravana" } duration 4.7 window 336.8,5 341.1 "--untargetable--" -400.0 "Chandrahas" sync / 1[56]:[^:]*:Ravana:EB5:/ window 400,5 -413.9 "Beetle Avatar" sync / 1[56]:[^:]*:Ravana:E82:/ window 15,15 +400.0 "Chandrahas" Ability { id: "EB5", source: "Ravana" } window 400,5 +413.9 "Beetle Avatar" Ability { id: "E82", source: "Ravana" } window 15,15 414.0 "--targetable--" # Technically slightly before, but invulnerability drops here. -422.0 "Pillars Of Heaven" sync / 1[56]:[^:]*:Ravana:EB8:/ -429.1 "--sync--" sync / 1[56]:[^:]*:Ravana:EB9:/ +422.0 "Pillars Of Heaven" Ability { id: "EB8", source: "Ravana" } +429.1 "--sync--" Ability { id: "EB9", source: "Ravana" } 429.8 "Laughing Rose" # The EB9 skill resolves well before the damage displays -445.4 "Surpanakha x4" # sync / 1[56]:[^:]*:Ravana:EBA:/ -453.1 "The Rose Of Conviction" sync / 1[56]:[^:]*:Ravana:EB6:/ -460.2 "The Rose Of Hate" sync / 1[56]:[^:]*:Ravana:EBB:/ -465.4 "Surpanakha x7" # sync / 1[56]:[^:]*:Ravana:EBA:/ -466.3 "The Rose Of Conquest" sync / 1[56]:[^:]*:Ravana's Will:EB7:/ -485.8 "Pillars Of Heaven" sync / 1[56]:[^:]*:Ravana:EB8:/ -493.0 "--sync--" sync / 1[56]:[^:]*:Ravana:EB9:/ +445.4 "Surpanakha x4" # Ability { id: "EBA", source: "Ravana" } +453.1 "The Rose Of Conviction" Ability { id: "EB6", source: "Ravana" } +460.2 "The Rose Of Hate" Ability { id: "EBB", source: "Ravana" } +465.4 "Surpanakha x7" # Ability { id: "EBA", source: "Ravana" } +466.3 "The Rose Of Conquest" Ability { id: "EB7", source: "Ravana's Will" } +485.8 "Pillars Of Heaven" Ability { id: "EB8", source: "Ravana" } +493.0 "--sync--" Ability { id: "EB9", source: "Ravana" } 493.7 "Laughing Rose" -506.2 "Surpanakha x7?" # sync / 1[56]:[^:]*:Ravana:EBA:/ +506.2 "Surpanakha x7?" # Ability { id: "EBA", source: "Ravana" } # This phase ends at 100 Bloodlust. -514.0 "Scorpion Avatar" sync / 1[56]:[^:]*:Ravana:E81:/ window 114,5 -514.1 "--sync--" sync / 1[56]:[^:]*:Ravana:13BF:/ -519.2 "Blades Of Carnage And Liberation" sync / 1[56]:[^:]*:Ravana:137A:/ -540.4 "Swift Liberation" sync / 1[56]:[^:]*:Ravana:EA7:/ +514.0 "Scorpion Avatar" Ability { id: "E81", source: "Ravana" } window 114,5 +514.1 "--sync--" Ability { id: "13BF", source: "Ravana" } +519.2 "Blades Of Carnage And Liberation" Ability { id: "137A", source: "Ravana" } +540.4 "Swift Liberation" Ability { id: "EA7", source: "Ravana" } 540.4 "--untargetable--" -540.5 "Swift Liberation Dash 1" # sync / 1[56]:[^:]*:Ravana:EA8:/ -543.5 "Swift Liberation Dash 2" # sync / 1[56]:[^:]*:Ravana:EA8:/ -546.5 "Swift Liberation Dash 3" # sync / 1[56]:[^:]*:Ravana:EA8:/ -549.5 "Swift Liberation Dash 4" # sync / 1[56]:[^:]*:Ravana:EA8:/ -552.7 "Swift Liberation (Flames)" # sync / 1[56]:[^:]*:Ravana:EA9:/ -556.9 "Swift Liberation (Circles)" # sync / 1[56]:[^:]*:Ravana:EAB:/ +540.5 "Swift Liberation Dash 1" # Ability { id: "EA8", source: "Ravana" } +543.5 "Swift Liberation Dash 2" # Ability { id: "EA8", source: "Ravana" } +546.5 "Swift Liberation Dash 3" # Ability { id: "EA8", source: "Ravana" } +549.5 "Swift Liberation Dash 4" # Ability { id: "EA8", source: "Ravana" } +552.7 "Swift Liberation (Flames)" # Ability { id: "EA9", source: "Ravana" } +556.9 "Swift Liberation (Circles)" # Ability { id: "EAB", source: "Ravana" } 562.1 "--targetable--" -562.3 "Blades Of Carnage And Liberation" sync / 1[56]:[^:]*:Ravana:137A:/ window 20,20 -583.5 "Final Liberation" sync / 1[56]:[^:]*:Ravana:EAC:/ +562.3 "Blades Of Carnage And Liberation" Ability { id: "137A", source: "Ravana" } window 20,20 +583.5 "Final Liberation" Ability { id: "EAC", source: "Ravana" } 583.5 "--untargetable--" -583.6 "Final Liberation (1st Double Prey)" sync / 1[56]:[^:]*:Ravana:EAD:/ -591.6 "Final Liberation (2nd Double Prey)" sync / 1[56]:[^:]*:Ravana:EAD:/ -597.7 "--sync--" sync / 1[56]:[^:]*:Ravana:13C4:/ -597.7 "Final Liberation (Outer AoE)" sync / 1[56]:[^:]*:Ravana:EAE:/ +583.6 "Final Liberation (1st Double Prey)" Ability { id: "EAD", source: "Ravana" } +591.6 "Final Liberation (2nd Double Prey)" Ability { id: "EAD", source: "Ravana" } +597.7 "--sync--" Ability { id: "13C4", source: "Ravana" } +597.7 "Final Liberation (Outer AoE)" Ability { id: "EAE", source: "Ravana" } 598.9 "--targetable--" -603.9 "Final Liberation (Inner AoE)" sync / 1[56]:[^:]*:Ravana:EAF:/ +603.9 "Final Liberation (Inner AoE)" Ability { id: "EAF", source: "Ravana" } 603.9 "--untargetable--" 610.1 "--targetable--" -610.2 "Dragonfly Avatar" sync / 1[56]:[^:]*:Ravana:E80:/ window 96,20 -610.3 "--sync--" sync / 1[56]:[^:]*:Ravana:1299:/ -617.3 "Warlord Shell" sync / 1[56]:[^:]*:Ravana:EB1:/ -622.5 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ -626.7 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -631.0 "The Seeing" sync / 1[56]:[^:]*:Ravana:EA[012]:/ +610.2 "Dragonfly Avatar" Ability { id: "E80", source: "Ravana" } window 96,20 +610.3 "--sync--" Ability { id: "1299", source: "Ravana" } +617.3 "Warlord Shell" Ability { id: "EB1", source: "Ravana" } +622.5 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } +626.7 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +631.0 "The Seeing" Ability { id: "EA[012]", source: "Ravana" } # If Blessing of Earth is not damaged off Ravana, he uses Warlord Flame at 640.2. # If it is, Flame is skipped and things go directly to Blinding Blade. # We assume the skip, and re-sync if it doesn't happen. -636.4 "--sync--" sync / 1[56]:[^:]*:Ravana:EB2:/ window 15,15 -640.2 "Blinding Blade/Warlord Flame?" sync / 1[56]:[^:]*:Ravana:E9F:/ window 30,2.5 -643.3 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -646.1 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ -652.2 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -655.3 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -658.4 "Atma-Linga x2" # sync / 1[56]:[^:]*:Ravana:EA6:/ -663.1 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ -669.2 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -672.3 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ - -679.5 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -682.6 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -685.0 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ -691.2 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -694.3 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -697.4 "Atma-Linga x2" # sync / 1[56]:[^:]*:Ravana:EA6:/ -701.7 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ -708.1 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ -711.2 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -718.3 "Blinding Blade" sync / 1[56]:[^:]*:Ravana:E9F:/ - -721.4 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ -723.9 "Tapasya x3" sync / 1[56]:[^:]*:Ravana:EA4:/ -730.0 "Atma-Linga" sync / 1[56]:[^:]*:Ravana:EA6:/ - -736.5 "Beetle Avatar" sync / 1[56]:[^:]*:Ravana:E82:/ window 130,10 jump 413.9 +636.4 "--sync--" Ability { id: "EB2", source: "Ravana" } window 15,15 +640.2 "Blinding Blade/Warlord Flame?" Ability { id: "E9F", source: "Ravana" } window 30,2.5 +643.3 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +646.1 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } +652.2 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +655.3 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +658.4 "Atma-Linga x2" # Ability { id: "EA6", source: "Ravana" } +663.1 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } +669.2 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +672.3 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } + +679.5 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +682.6 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +685.0 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } +691.2 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +694.3 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +697.4 "Atma-Linga x2" # Ability { id: "EA6", source: "Ravana" } +701.7 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } +708.1 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } +711.2 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +718.3 "Blinding Blade" Ability { id: "E9F", source: "Ravana" } + +721.4 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } +723.9 "Tapasya x3" Ability { id: "EA4", source: "Ravana" } +730.0 "Atma-Linga" Ability { id: "EA6", source: "Ravana" } + +736.5 "Beetle Avatar" Ability { id: "E82", source: "Ravana" } window 130,10 jump 413.9 744.6 "Pillars Of Heaven" 751.7 "Laughing Rose" 768.0 "Surpanakha x4" # Enrage follows this sequence, but unfortunately there's no way to sync to it. -# 1781.6 "Dragonfly Avatar" sync / 1[56]:[^:]*:Ravana:E80:/ -# 1781.7 "--sync--" sync / 1[56]:[^:]*:Ravana:1299:/ +# 1781.6 "Dragonfly Avatar" Ability { id: "E80", source: "Ravana" } +# 1781.7 "--sync--" Ability { id: "1299", source: "Ravana" } # 1786.7 "--untargetable--" -# 1791.8 "Bloody Fuller" sync / 1[56]:[^:]*:Ravana:EB3:/ +# 1791.8 "Bloody Fuller" Ability { id: "EB3", source: "Ravana" } # Laughing Moon until wipe diff --git a/ui/raidboss/data/03-hw/trial/sephirot-ex.ts b/ui/raidboss/data/03-hw/trial/sephirot-ex.ts index 77a1ab02f1..ca5ee34f3c 100644 --- a/ui/raidboss/data/03-hw/trial/sephirot-ex.ts +++ b/ui/raidboss/data/03-hw/trial/sephirot-ex.ts @@ -45,6 +45,7 @@ const triggerSet: TriggerSet = { text: { en: 'Move to safe quadrant', de: 'Beweg dich in den sicheren Quadranten', + fr: 'Allez dans le quart sur', cn: '移动到安全区域', ko: '안전한 지역으로 이동', }, @@ -58,6 +59,7 @@ const triggerSet: TriggerSet = { text: { en: 'Bait toward puddle', de: 'In Richtung Fläche ködern', + fr: 'Bait vers le puddle', cn: '靠近圈圈集合诱导AOE', ko: '장판 쪽으로 아인 유도', }, @@ -76,12 +78,14 @@ const triggerSet: TriggerSet = { noPillar: { en: 'Bait Yesod', de: 'Yesod ködern', + fr: 'Attirez Yesod', cn: '集合诱导基盘碎击', ko: '예소드 붕괴 유도', }, withPillar: { en: 'Bait Yesod inside puddle', de: 'Yesod in die Fläche ködern', + fr: 'Attirez Yesod dans le puddle', cn: '圈圈内集合诱导基盘碎击', ko: '장판 안에 예소드 유도하기', }, @@ -143,12 +147,14 @@ const triggerSet: TriggerSet = { noStack: { en: 'Don\'t Stack!', de: 'Nicht sammeln!', + fr: 'Ne vous packez pas !', cn: '不要重合!', ko: '겹치면 안됨!', }, stack: { en: 'Group Stacks', de: 'In der Gruppe sammeln', + fr: 'Package en groupe', cn: '分组集合', ko: '그룹 쉐어', }, @@ -258,12 +264,14 @@ const triggerSet: TriggerSet = { getTower: { en: 'Get a tower', de: 'Nimm einen Turm', + fr: 'Prenez une tour', cn: '踩塔', ko: '기둥 밟기', }, avoidTower: { en: 'Avoid towers', de: 'Turm meiden', + fr: 'Évitez les tours', cn: '躲塔', ko: '기둥 피하기', }, @@ -283,12 +291,14 @@ const triggerSet: TriggerSet = { might: { en: 'Get Away, Avoid Puddles + Tethers', de: 'Geh weg, weiche Flächen und Verbindungen aus', + fr: 'Sortez, évitez les puddles et les liens', cn: '远离, 躲避圈圈 + 连线', ko: '멀리 떨어지고, 장판 + 선 피하기', }, magic: { en: 'Go Front; Get Tether', de: 'Geh nach Vorne; Nimm eine Verbindung', + fr: 'Allez devant, prenez les liens', cn: '去前面; 接线', ko: '앞으로 가서 선 가져가기', }, @@ -324,12 +334,14 @@ const triggerSet: TriggerSet = { shakerTarget: { en: 'Earth Shaker (Max Melee)', de: 'Erdstoß (Max Nahkampf)', + fr: 'Secousse (Max CàC)', cn: '大地摇动 (最远近战距离)', ko: '어스징 (칼끝딜 거리)', }, shakerAvoid: { en: 'Avoid Earth Shakers', de: 'Weiche Erdstoß aus', + fr: 'Évitez les secousses', cn: '躲避大地摇动', ko: '어스징 피하기', }, diff --git a/ui/raidboss/data/03-hw/trial/sephirot-ex.txt b/ui/raidboss/data/03-hw/trial/sephirot-ex.txt index 95dca4cdc6..32b6fe368f 100644 --- a/ui/raidboss/data/03-hw/trial/sephirot-ex.txt +++ b/ui/raidboss/data/03-hw/trial/sephirot-ex.txt @@ -7,43 +7,43 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.1 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:1566:/ window 7.1,5 -11.2 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -17.4 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.1 "Triple Trial" Ability { id: "1566", source: "Sephirot" } window 7.1,5 +11.2 "Tiferet" Ability { id: "1568", source: "Sephirot" } +17.4 "Tiferet" Ability { id: "1568", source: "Sephirot" } # Phase 1 rotation block, 76.3 seconds -21.6 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:1566:/ -25.6 "Ein Sof (4 puddles)" sync / 1[56]:[^:]*:Sephirot:156E:/ -29.7 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -38.3 "Fiendish Rage 1" sync / 1[56]:[^:]*:Sephirot:156D:/ -42.0 "Fiendish Rage 2" sync / 1[56]:[^:]*:Sephirot:156D:/ -49.2 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -53.3 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -59.4 "Chesed" sync / 1[56]:[^:]*:Sephirot:1567:/ window 20,20 -61.6 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:1566:/ -67.7 "Ein Sof (1 puddle)" sync / 1[56]:[^:]*:Sephirot:156E:/ -70.9 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -81.3 "Ratzon" # sync / 1[56]:[^:]*:Sephirot:156B:/ -85.5 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -89.6 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -95.7 "Chesed" sync / 1[56]:[^:]*:Sephirot:1567:/ window 20,20 +21.6 "Triple Trial" Ability { id: "1566", source: "Sephirot" } +25.6 "Ein Sof (4 puddles)" Ability { id: "156E", source: "Sephirot" } +29.7 "Tiferet" Ability { id: "1568", source: "Sephirot" } +38.3 "Fiendish Rage 1" Ability { id: "156D", source: "Sephirot" } +42.0 "Fiendish Rage 2" Ability { id: "156D", source: "Sephirot" } +49.2 "Tiferet" Ability { id: "1568", source: "Sephirot" } +53.3 "Tiferet" Ability { id: "1568", source: "Sephirot" } +59.4 "Chesed" Ability { id: "1567", source: "Sephirot" } window 20,20 +61.6 "Triple Trial" Ability { id: "1566", source: "Sephirot" } +67.7 "Ein Sof (1 puddle)" Ability { id: "156E", source: "Sephirot" } +70.9 "Tiferet" Ability { id: "1568", source: "Sephirot" } +81.3 "Ratzon" # Ability { id: "156B", source: "Sephirot" } +85.5 "Tiferet" Ability { id: "1568", source: "Sephirot" } +89.6 "Tiferet" Ability { id: "1568", source: "Sephirot" } +95.7 "Chesed" Ability { id: "1567", source: "Sephirot" } window 20,20 -97.9 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:1566:/ -101.9 "Ein Sof (4 puddles)" sync / 1[56]:[^:]*:Sephirot:156E:/ -106.0 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -114.6 "Fiendish Rage 1" sync / 1[56]:[^:]*:Sephirot:156D:/ -118.3 "Fiendish Rage 2" sync / 1[56]:[^:]*:Sephirot:156D:/ -125.5 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -129.6 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -135.7 "Chesed" sync / 1[56]:[^:]*:Sephirot:1567:/ window 20,20 -137.9 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:1566:/ -144.0 "Ein Sof (1 puddle)" sync / 1[56]:[^:]*:Sephirot:156E:/ -147.2 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -157.6 "Ratzon" # sync / 1[56]:[^:]*:Sephirot:156B:/ -161.8 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -165.9 "Tiferet" sync / 1[56]:[^:]*:Sephirot:1568:/ -172.0 "Chesed" sync / 1[56]:[^:]*:Sephirot:1567:/ window 20,20 jump 95.7 +97.9 "Triple Trial" Ability { id: "1566", source: "Sephirot" } +101.9 "Ein Sof (4 puddles)" Ability { id: "156E", source: "Sephirot" } +106.0 "Tiferet" Ability { id: "1568", source: "Sephirot" } +114.6 "Fiendish Rage 1" Ability { id: "156D", source: "Sephirot" } +118.3 "Fiendish Rage 2" Ability { id: "156D", source: "Sephirot" } +125.5 "Tiferet" Ability { id: "1568", source: "Sephirot" } +129.6 "Tiferet" Ability { id: "1568", source: "Sephirot" } +135.7 "Chesed" Ability { id: "1567", source: "Sephirot" } window 20,20 +137.9 "Triple Trial" Ability { id: "1566", source: "Sephirot" } +144.0 "Ein Sof (1 puddle)" Ability { id: "156E", source: "Sephirot" } +147.2 "Tiferet" Ability { id: "1568", source: "Sephirot" } +157.6 "Ratzon" # Ability { id: "156B", source: "Sephirot" } +161.8 "Tiferet" Ability { id: "1568", source: "Sephirot" } +165.9 "Tiferet" Ability { id: "1568", source: "Sephirot" } +172.0 "Chesed" Ability { id: "1567", source: "Sephirot" } window 20,20 jump 95.7 174.2 "Triple Trial" 178.2 "Ein Sof (4 puddles)" @@ -58,86 +58,86 @@ hideall "--sync--" # Instead we just go straight for the ultimate cast. (It has no cast time.) # However, we don't want timeline triggers firing during the intermission. -500.0 "--sync--" sync / 22:........:Sephirot:........:Sephirot:00/ window 500,0 -1000.0 "Ein Sof Ohr" sync / 1[56]:[^:]*:Sephirot:1571:/ window 1000,5 +500.0 "--sync--" NameToggle { name: "Sephirot", toggle: "00" } window 500,0 +1000.0 "Ein Sof Ohr" Ability { id: "1571", source: "Sephirot" } window 1000,5 # Phase 2 rotation block, 197.3 seconds -1013.2 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ window 30,30 -1016.2 "Force Field" sync / 1[56]:[^:]*:Sephirot:1587:/ -1028.4 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1029.0 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1034.6 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1042.7 "Da'at Tethers" duration 5 #sync / 1[56]:[^:]*:Sephirot:1574:/ -1053.3 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1060.3 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1060.9 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1068.4 "Earth Shaker" sync / 1[56]:[^:]*:Sephirot:157D:/ -1070.1 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ window 20,20 -1077.7 "Da'at spread" duration 3.2 #sync / 1[56]:[^:]*:Sephirot:1573:/ -1085.1 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1092.2 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1092.9 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1101.0 "Pillar of Mercy 1" sync / 1[56]:[^:]*:Sephirot:1580:/ -1101.3 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ window 20,20 -1106.2 "Pillar of Mercy 2" sync / 1[56]:[^:]*:Sephirot:1580:/ -1110.1 "Pillar of Mercy 3" sync / 1[56]:[^:]*:Sephirot:1580:/ -1119.3 "Earth Shaker" sync / 1[56]:[^:]*:Sephirot:157D:/ -1128.8 "Da'at spread" duration 3.2 #sync / 1[56]:[^:]*:Sephirot:1573:/ -1129.7 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ window 20,20 -1136.1 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1143.2 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1143.8 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1149.4 "Malkuth" sync / 1[56]:[^:]*:Sephirot:1582:/ window 30,30 -1150.5 "Adds Spawn" sync / 03:........:Storm Of Words:/ -1158.7 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1159.3 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1164.9 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1166.5 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ -1172.2 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1172.8 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1185.8 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ -1188.4 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1189.0 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1191.6 "Pillar of Severity" sync / 1[56]:[^:]*:Sephirot:1585:/ -1195.3 "Impact of Hod" sync / 1[56]:[^:]*:Sephirot:172C:/ -1199.7 "Ascension" sync / 1[56]:[^:]*:Coronal Wind:1584:/ +1013.2 "Yesod" Ability { id: "157E", source: "Sephirot" } window 30,30 +1016.2 "Force Field" Ability { id: "1587", source: "Sephirot" } +1028.4 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1029.0 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1034.6 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1042.7 "Da'at Tethers" duration 5 #Ability { id: "1574", source: "Sephirot" } +1053.3 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1060.3 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1060.9 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1068.4 "Earth Shaker" Ability { id: "157D", source: "Sephirot" } +1070.1 "Yesod" Ability { id: "157E", source: "Sephirot" } window 20,20 +1077.7 "Da'at spread" duration 3.2 #Ability { id: "1573", source: "Sephirot" } +1085.1 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1092.2 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1092.9 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1101.0 "Pillar of Mercy 1" Ability { id: "1580", source: "Sephirot" } +1101.3 "Yesod" Ability { id: "157E", source: "Sephirot" } window 20,20 +1106.2 "Pillar of Mercy 2" Ability { id: "1580", source: "Sephirot" } +1110.1 "Pillar of Mercy 3" Ability { id: "1580", source: "Sephirot" } +1119.3 "Earth Shaker" Ability { id: "157D", source: "Sephirot" } +1128.8 "Da'at spread" duration 3.2 #Ability { id: "1573", source: "Sephirot" } +1129.7 "Yesod" Ability { id: "157E", source: "Sephirot" } window 20,20 +1136.1 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1143.2 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1143.8 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1149.4 "Malkuth" Ability { id: "1582", source: "Sephirot" } window 30,30 +1150.5 "Adds Spawn" AddedCombatant { name: "Storm Of Words" } +1158.7 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1159.3 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1164.9 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1166.5 "Yesod" Ability { id: "157E", source: "Sephirot" } +1172.2 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1172.8 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1185.8 "Yesod" Ability { id: "157E", source: "Sephirot" } +1188.4 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1189.0 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1191.6 "Pillar of Severity" Ability { id: "1585", source: "Sephirot" } +1195.3 "Impact of Hod" Ability { id: "172C", source: "Sephirot" } +1199.7 "Ascension" Ability { id: "1584", source: "Coronal Wind" } -1210.4 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ window 30,30 -1213.5 "Force Field" sync / 1[56]:[^:]*:Sephirot:1587:/ -1225.7 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1226.3 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1231.9 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1240.0 "Da'at Tethers" duration 5 #sync / 1[56]:[^:]*:Sephirot:1574:/ -1250.6 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1257.6 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1258.2 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1265.7 "Earth Shaker" sync / 1[56]:[^:]*:Sephirot:157D:/ -1267.4 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ window 20,20 -1275.0 "Da'at spread" duration 3.2 #sync / 1[56]:[^:]*:Sephirot:1573:/ -1282.4 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1289.5 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1290.2 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1298.3 "Pillar of Mercy 1" sync / 1[56]:[^:]*:Sephirot:1580:/ -1298.6 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ window 20,20 -1303.5 "Pillar of Mercy 2" sync / 1[56]:[^:]*:Sephirot:1580:/ -1307.4 "Pillar of Mercy 3" sync / 1[56]:[^:]*:Sephirot:1580:/ -1316.6 "Earth Shaker" sync / 1[56]:[^:]*:Sephirot:157D:/ -1326.1 "Da'at spread" duration 3.2 #sync / 1[56]:[^:]*:Sephirot:1573:/ -1327.0 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ window 20,20 -1333.4 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1340.5 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1341.1 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1346.7 "Malkuth" sync / 1[56]:[^:]*:Sephirot:1582:/ -1347.8 "Adds Spawn" sync / 03:........:Storm Of Words:/ -1356.0 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1356.6 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1362.2 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:1576:/ -1363.8 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ -1369.5 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1370.1 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1382.9 "Yesod" sync / 1[56]:[^:]*:Sephirot:157E:/ -1385.7 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(1578|1579):/ -1386.3 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(157A|157B):/ -1388.9 "Pillar of Severity" sync / 1[56]:[^:]*:Sephirot:1585:/ -1392.6 "Impact of Hod" sync / 1[56]:[^:]*:Sephirot:172C:/ -1397.0 "Pillar of Severity Enrage" sync / 1[56]:[^:]*:Sephirot:1585:/ +1210.4 "Yesod" Ability { id: "157E", source: "Sephirot" } window 30,30 +1213.5 "Force Field" Ability { id: "1587", source: "Sephirot" } +1225.7 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1226.3 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1231.9 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1240.0 "Da'at Tethers" duration 5 #Ability { id: "1574", source: "Sephirot" } +1250.6 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1257.6 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1258.2 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1265.7 "Earth Shaker" Ability { id: "157D", source: "Sephirot" } +1267.4 "Yesod" Ability { id: "157E", source: "Sephirot" } window 20,20 +1275.0 "Da'at spread" duration 3.2 #Ability { id: "1573", source: "Sephirot" } +1282.4 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1289.5 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1290.2 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1298.3 "Pillar of Mercy 1" Ability { id: "1580", source: "Sephirot" } +1298.6 "Yesod" Ability { id: "157E", source: "Sephirot" } window 20,20 +1303.5 "Pillar of Mercy 2" Ability { id: "1580", source: "Sephirot" } +1307.4 "Pillar of Mercy 3" Ability { id: "1580", source: "Sephirot" } +1316.6 "Earth Shaker" Ability { id: "157D", source: "Sephirot" } +1326.1 "Da'at spread" duration 3.2 #Ability { id: "1573", source: "Sephirot" } +1327.0 "Yesod" Ability { id: "157E", source: "Sephirot" } window 20,20 +1333.4 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1340.5 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1341.1 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1346.7 "Malkuth" Ability { id: "1582", source: "Sephirot" } +1347.8 "Adds Spawn" AddedCombatant { name: "Storm Of Words" } +1356.0 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1356.6 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1362.2 "Fiendish Wail" Ability { id: "1576", source: "Sephirot" } +1363.8 "Yesod" Ability { id: "157E", source: "Sephirot" } +1369.5 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1370.1 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1382.9 "Yesod" Ability { id: "157E", source: "Sephirot" } +1385.7 "Chesed Gevurah" Ability { id: ["1578", "1579"], source: "Sephirot" } +1386.3 "Life Force + Spirit" Ability { id: ["157A", "157B"], source: "Sephirot" } +1388.9 "Pillar of Severity" Ability { id: "1585", source: "Sephirot" } +1392.6 "Impact of Hod" Ability { id: "172C", source: "Sephirot" } +1397.0 "Pillar of Severity Enrage" Ability { id: "1585", source: "Sephirot" } diff --git a/ui/raidboss/data/03-hw/trial/sophia-ex.txt b/ui/raidboss/data/03-hw/trial/sophia-ex.txt index 217d2c377d..a602efb597 100644 --- a/ui/raidboss/data/03-hw/trial/sophia-ex.txt +++ b/ui/raidboss/data/03-hw/trial/sophia-ex.txt @@ -12,105 +12,105 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.0 "Thunder II" sync / 1[56]:[^:]*:Sophia:19B0:/ window 12,5 -22.4 "Gnosis" sync / 1[56]:[^:]*:Barbelo:19C2:/ -41.4 "Arms Of Wisdom?" sync / 1[56]:[^:]*:Sophia:19C4:/ # May be skipped depending on DPS +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.0 "Thunder II" Ability { id: "19B0", source: "Sophia" } window 12,5 +22.4 "Gnosis" Ability { id: "19C2", source: "Barbelo" } +41.4 "Arms Of Wisdom?" Ability { id: "19C4", source: "Sophia" } # May be skipped depending on DPS # This section will be reached either at 56.0, or at the time she is pushed to 90% -56.0 "--clones appear--" sync / 03:........:Aion Teleos:/ window 56,5 -63.6 "Thunder II/III" sync / 1[56]:[^:]*:Sophia:(19AC|19B0):/ -63.6 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:19AB:/ window 30,2.5 -69.7 "Aero III" sync / 1[56]:[^:]*:Sophia:19AE:/ -69.7 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:19AB:/ -79.8 "Execute" sync / 1[56]:[^:]*:Sophia:19AA:/ -#79.8 "Execute" sync / 1[56]:[^:]*:Aion Teleos:19AF:/ -90.2 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ +56.0 "--clones appear--" AddedCombatant { name: "Aion Teleos" } window 56,5 +63.6 "Thunder II/III" Ability { id: ["19AC", "19B0"], source: "Sophia" } +63.6 "--sync--" Ability { id: "19AB", source: "Aion Teleos" } window 30,2.5 +69.7 "Aero III" Ability { id: "19AE", source: "Sophia" } +69.7 "--sync--" Ability { id: "19AB", source: "Aion Teleos" } +79.8 "Execute" Ability { id: "19AA", source: "Sophia" } +#79.8 "Execute" Ability { id: "19AF", source: "Aion Teleos" } +90.2 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } # Intermission. # Divine Spark can be pushed and thus is not synced. # Gnostic Rant and Infusion are purely HP-based pushes. -110.6 "Cloudy Heavens" sync / 1[56]:[^:]*:Sophia:19BE:/ window 110.6 +110.6 "Cloudy Heavens" Ability { id: "19BE", source: "Sophia" } window 110.6 111.6 "--untargetable--" 111.6 "--adds spawn--" -120.9 "Horizontal Kenoma/Vertical Kenoma" sync / 1[56]:[^:]*:The First Demiurge:(19BB|19BC):/ -121.9 "Gnostic Spear" sync / 1[56]:[^:]*:The Third Demiurge:19B9:/ -125.9 "Divine Spark" # sync / 1[56]:[^:]*:The Second Demiurge:19B6:/ -129.0 "Ring Of Pain" sync / 1[56]:[^:]*:The Third Demiurge:19BA:/ -135.1 "Horizontal Kenoma/Vertical Kenoma" sync / 1[56]:[^:]*:The First Demiurge:(19BB|19BC):/ -147.3 "Gnostic Spear?" sync / 1[56]:[^:]*:The Third Demiurge:19B9:/ -149.2 "Horizontal Kenoma/Vertical Kenoma" sync / 1[56]:[^:]*:The First Demiurge:(19BB|19BC):/ +120.9 "Horizontal Kenoma/Vertical Kenoma" Ability { id: ["19BB", "19BC"], source: "The First Demiurge" } +121.9 "Gnostic Spear" Ability { id: "19B9", source: "The Third Demiurge" } +125.9 "Divine Spark" # Ability { id: "19B6", source: "The Second Demiurge" } +129.0 "Ring Of Pain" Ability { id: "19BA", source: "The Third Demiurge" } +135.1 "Horizontal Kenoma/Vertical Kenoma" Ability { id: ["19BB", "19BC"], source: "The First Demiurge" } +147.3 "Gnostic Spear?" Ability { id: "19B9", source: "The Third Demiurge" } +149.2 "Horizontal Kenoma/Vertical Kenoma" Ability { id: ["19BB", "19BC"], source: "The First Demiurge" } 191.6 "Zombification Enrage?" # There's an introductory block leading into a rotation. -250.0 "The Scales Of Wisdom" sync / 1[56]:[^:]*:Sophia:1981:/ window 250,5 -267.5 "The Scales Of Wisdom" sync / 1[56]:[^:]*:Sophia:1AE1:/ +250.0 "The Scales Of Wisdom" Ability { id: "1981", source: "Sophia" } window 250,5 +267.5 "The Scales Of Wisdom" Ability { id: "1AE1", source: "Sophia" } 272.9 "--targetable--" -280.8 "Quasar (Snapshot)" sync / 1[56]:[^:]*:Sophia:(196E|19A7):/ -286.8 "Quasar (Meteor Detonate)" sync / 1[56]:[^:]*:Sophia:1A87:/ -291.3 "Aero III/Thunder II/Thunder III" sync / 1[56]:[^:]*:Sophia:(19AC|19AE|19B0):/ window 41.3,5 -297.1 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:196E:/ -305.7 "Quasar (Tilt)" sync / 1[56]:[^:]*:Sophia:1A4C:/ -310.7 "Cintamani x2" duration 3 # sync / 1[56]:[^:]*:Sophia:19C5:/ -318.8 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ +280.8 "Quasar (Snapshot)" Ability { id: ["196E", "19A7"], source: "Sophia" } +286.8 "Quasar (Meteor Detonate)" Ability { id: "1A87", source: "Sophia" } +291.3 "Aero III/Thunder II/Thunder III" Ability { id: ["19AC", "19AE", "19B0"], source: "Sophia" } window 41.3,5 +297.1 "Quasar Tethers" Ability { id: "196E", source: "Sophia" } +305.7 "Quasar (Tilt)" Ability { id: "1A4C", source: "Sophia" } +310.7 "Cintamani x2" duration 3 # Ability { id: "19C5", source: "Sophia" } +318.8 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } # Potential landing point if DPS is high. Push seems to be 70%? -328.3 "Thunder II" sync / 1[56]:[^:]*:Sophia:19B0:/ window 35.8,5 -334.0 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:19A7:/ +328.3 "Thunder II" Ability { id: "19B0", source: "Sophia" } window 35.8,5 +334.0 "Quasar Tethers" Ability { id: "19A7", source: "Sophia" } 335.0 "--untargetable--" -341.2 "Onrush" sync / 1[56]:[^:]*:Sophia:19C1:/ -341.8 "Quasar (Tilt)" # sync / 1[56]:[^:]*:Sophia:1A4C:/ +341.2 "Onrush" Ability { id: "19C1", source: "Sophia" } +341.8 "Quasar (Tilt)" # Ability { id: "1A4C", source: "Sophia" } 345.4 "--targetable--" -361.5 "Dischordant Cleansing" # sync / 1[56]:[^:]*:Sophia:(19B3|19B5):/ -361.5 "Cintamani x2" duration 3 # sync / 1[56]:[^:]*:Sophia:19C5:/ -370.8 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ window 30,5 -379.0 "--clones appear--" sync / 03:........:Aion Teleos:/ window 60,20 -382.0 "Cintamani x3" duration 6 # sync / 1[56]:[^:]*:Sophia:19C5:/ -393.3 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:19AB:/ -393.3 "Thunder II/III" sync / 1[56]:[^:]*:Sophia:(19AC|19B0):/ -399.4 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:19AB:/ -399.4 "Aero III" sync / 1[56]:[^:]*:Sophia:19AE:/ window 30,5 -408.5 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ -419.8 "Light Dew" sync / 1[56]:[^:]*:Barbelo:19BF:/ -420.5 "Execute" sync / 1[56]:[^:]*:Sophia:19AA:/ window 30,30 +361.5 "Dischordant Cleansing" # Ability { id: ["19B3", "19B5"], source: "Sophia" } +361.5 "Cintamani x2" duration 3 # Ability { id: "19C5", source: "Sophia" } +370.8 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } window 30,5 +379.0 "--clones appear--" AddedCombatant { name: "Aion Teleos" } window 60,20 +382.0 "Cintamani x3" duration 6 # Ability { id: "19C5", source: "Sophia" } +393.3 "--sync--" Ability { id: "19AB", source: "Aion Teleos" } +393.3 "Thunder II/III" Ability { id: ["19AC", "19B0"], source: "Sophia" } +399.4 "--sync--" Ability { id: "19AB", source: "Aion Teleos" } +399.4 "Aero III" Ability { id: "19AE", source: "Sophia" } window 30,5 +408.5 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } +419.8 "Light Dew" Ability { id: "19BF", source: "Barbelo" } +420.5 "Execute" Ability { id: "19AA", source: "Sophia" } window 30,30 # Rotation block. # Technically it can loop, but unless party DPS is VERY high, # enrage will occur long before the second loop completes. -429.3 "Cintamani x3" duration 6 # sync / 1[56]:[^:]*:Sophia:19C5:/ duration 5 -440.7 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ -446.5 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:196E:/ -455.2 "Quasar (Tilt)" sync / 1[56]:[^:]*:Sophia:1A4C:/ -457.7 "Light Dew" sync / 1[56]:[^:]*:Barbelo:19BF:/ window 30,30 -470.0 "Thunder III" sync / 1[56]:[^:]*:Sophia:19AC:/ -478.3 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ -484.5 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:19A7:/ +429.3 "Cintamani x3" duration 6 # Ability { id: "19C5", source: "Sophia" } duration 5 +440.7 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } +446.5 "Quasar Tethers" Ability { id: "196E", source: "Sophia" } +455.2 "Quasar (Tilt)" Ability { id: "1A4C", source: "Sophia" } +457.7 "Light Dew" Ability { id: "19BF", source: "Barbelo" } window 30,30 +470.0 "Thunder III" Ability { id: "19AC", source: "Sophia" } +478.3 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } +484.5 "Quasar Tethers" Ability { id: "19A7", source: "Sophia" } 485.5 "--untargetable--" -493.2 "Quasar (Tilt)" sync / 1[56]:[^:]*:Sophia:1A4C:/ -494.7 "Onrush" sync / 1[56]:[^:]*:Sophia:19C1:/ -495.7 "Light Dew" sync / 1[56]:[^:]*:Barbelo:19C0:/ window 30,30 +493.2 "Quasar (Tilt)" Ability { id: "1A4C", source: "Sophia" } +494.7 "Onrush" Ability { id: "19C1", source: "Sophia" } +495.7 "Light Dew" Ability { id: "19C0", source: "Barbelo" } window 30,30 499.0 "--targetable--" -507.1 "Cintamani x3" duration 6 # sync / 1[56]:[^:]*:Sophia:19C5:/ -518.3 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ -525.4 "Thunder II" sync / 1[56]:[^:]*:Sophia:19B0:/ -535.9 "Dischordant Cleansing" # sync / 1[56]:[^:]*:Sophia:(19B3|19B5):/ -539.7 "Gnosis" sync / 1[56]:[^:]*:Barbelo:19C2:/ window 30,5 -552.2 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ -567.0 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:196E:/ -568.3 "Dischordant Cleansing" # sync / 1[56]:[^:]*:Sophia:(19B3|19B5):/ -575.7 "Quasar (Tilt)" # sync / 1[56]:[^:]*:Sophia:1A4C:/ -581.5 "Cintamani x3" duration 6 # sync / 1[56]:[^:]*:Sophia:19C5:/ -577.5 "--clones appear--" sync / 03:........:Aion Teleos:/ window 60,5 -592.8 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ -599.9 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:19AB:/ window 10,2.5 -599.9 "Thunder II/III" sync / 1[56]:[^:]*:Sophia:(19AC|19B0):/ -606.1 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:19AB:/ -606.1 "Aero III" sync / 1[56]:[^:]*:Sophia:19AE:/ -611.9 "Quasar (Snapshot)" sync / 1[56]:[^:]*:Sophia:(196E|19A7):/ -617.9 "Quasar (Meteor Detonate)" sync / 1[56]:[^:]*:Sophia:1A87:/ -624.4 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:19C4:/ -636.6 "Dischordant Cleansing" # sync / 1[56]:[^:]*:Sophia:(19B3|19B5):/ -639.0 "Execute" sync / 1[56]:[^:]*:Sophia:19AA:/ window 30,30 jump 420.5 +507.1 "Cintamani x3" duration 6 # Ability { id: "19C5", source: "Sophia" } +518.3 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } +525.4 "Thunder II" Ability { id: "19B0", source: "Sophia" } +535.9 "Dischordant Cleansing" # Ability { id: ["19B3", "19B5"], source: "Sophia" } +539.7 "Gnosis" Ability { id: "19C2", source: "Barbelo" } window 30,5 +552.2 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } +567.0 "Quasar Tethers" Ability { id: "196E", source: "Sophia" } +568.3 "Dischordant Cleansing" # Ability { id: ["19B3", "19B5"], source: "Sophia" } +575.7 "Quasar (Tilt)" # Ability { id: "1A4C", source: "Sophia" } +581.5 "Cintamani x3" duration 6 # Ability { id: "19C5", source: "Sophia" } +577.5 "--clones appear--" AddedCombatant { name: "Aion Teleos" } window 60,5 +592.8 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } +599.9 "--sync--" Ability { id: "19AB", source: "Aion Teleos" } window 10,2.5 +599.9 "Thunder II/III" Ability { id: ["19AC", "19B0"], source: "Sophia" } +606.1 "--sync--" Ability { id: "19AB", source: "Aion Teleos" } +606.1 "Aero III" Ability { id: "19AE", source: "Sophia" } +611.9 "Quasar (Snapshot)" Ability { id: ["196E", "19A7"], source: "Sophia" } +617.9 "Quasar (Meteor Detonate)" Ability { id: "1A87", source: "Sophia" } +624.4 "Arms Of Wisdom" Ability { id: "19C4", source: "Sophia" } +636.6 "Dischordant Cleansing" # Ability { id: ["19B3", "19B5"], source: "Sophia" } +639.0 "Execute" Ability { id: "19AA", source: "Sophia" } window 30,30 jump 420.5 650.9 "Cintamani x3" 662.3 "Arms Of Wisdom" diff --git a/ui/raidboss/data/03-hw/trial/thordan-ex.ts b/ui/raidboss/data/03-hw/trial/thordan-ex.ts index a19a399722..9edfc1570b 100644 --- a/ui/raidboss/data/03-hw/trial/thordan-ex.ts +++ b/ui/raidboss/data/03-hw/trial/thordan-ex.ts @@ -639,7 +639,6 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', - 'missingTranslations': true, 'replaceSync': { 'Comet Circle': 'sceau de la comète', 'King Thordan': 'roi Thordan', @@ -658,6 +657,8 @@ const triggerSet: TriggerSet = { 'Ser Zephirin': 'sire Zéphirin', }, 'replaceText': { + '--chains appear--': '--Apparition des chaines--', + '--towers spawn--': '--Apparition des tours--', 'Absolute Conviction': 'Conviction absolue', 'Ancient Quaga': 'Méga Séisme ancien', 'Ascalon\'s Mercy': 'Grâce d\'Ascalon', diff --git a/ui/raidboss/data/03-hw/trial/thordan-ex.txt b/ui/raidboss/data/03-hw/trial/thordan-ex.txt index 333365131b..a84d41813c 100644 --- a/ui/raidboss/data/03-hw/trial/thordan-ex.txt +++ b/ui/raidboss/data/03-hw/trial/thordan-ex.txt @@ -8,42 +8,42 @@ hideall "--Reset--" hideall "--sync--" # Phase 1. Pushes at 70% HP? -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -5.0 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ -14.8 "Meteorain" sync / 1[56]:[^:]*:King Thordan:1483:/ -15.1 "--sync--" sync / 1[56]:[^:]*:King Thordan:1484:/ # Meteorain -20.0 "--sync--" sync / 1[56]:[^:]*:King Thordan:147F:/ -20.0 "Ascalon's Mercy" sync / 1[56]:[^:]*:King Thordan:1480:/ -22.1 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ -27.2 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:1488:/ -37.3 "the Dragon's Gaze" sync / 1[56]:[^:]*:King Thordan:1489:/ -42.4 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ -51.1 "Lightning Storm" sync / 1[56]:[^:]*:King Thordan:1481:/ -51.5 "--sync--" sync / 1[56]:[^:]*:King Thordan:1482:/ # Lightning Storm -58.2 "the Dragon's Rage" sync / 1[56]:[^:]*:King Thordan:148B:/ -63.3 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:1485:/ -69.4 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ -75.4 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:1487:/ -77.5 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +5.0 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } +14.8 "Meteorain" Ability { id: "1483", source: "King Thordan" } +15.1 "--sync--" Ability { id: "1484", source: "King Thordan" } # Meteorain +20.0 "--sync--" Ability { id: "147F", source: "King Thordan" } +20.0 "Ascalon's Mercy" Ability { id: "1480", source: "King Thordan" } +22.1 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } +27.2 "the Dragon's Eye" Ability { id: "1488", source: "King Thordan" } +37.3 "the Dragon's Gaze" Ability { id: "1489", source: "King Thordan" } +42.4 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } +51.1 "Lightning Storm" Ability { id: "1481", source: "King Thordan" } +51.5 "--sync--" Ability { id: "1482", source: "King Thordan" } # Lightning Storm +58.2 "the Dragon's Rage" Ability { id: "148B", source: "King Thordan" } +63.3 "Ancient Quaga" Ability { id: "1485", source: "King Thordan" } +69.4 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } +75.4 "Heavenly Heel" Ability { id: "1487", source: "King Thordan" } +77.5 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } 79.6 "--untargetable--" # Phase 2 # Intermission part 1 -82.4 "--sync--" sync / 1[56]:[^:]*:King Thordan:105A:/ window 82.4,10 -91.4 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:1018:/ -93.4 "--sync--" sync / 1[56]:[^:]*:Ser Hermenost:1018:/ +82.4 "--sync--" Ability { id: "105A", source: "King Thordan" } window 82.4,10 +91.4 "--sync--" Ability { id: "1018", source: "Ser Charibert" } +93.4 "--sync--" Ability { id: "1018", source: "Ser Hermenost" } 95.7 "--chains appear--" -98.0 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:14AB:/ window 10,10 # Heavensflame cast -98.4 "Heavensflame 1" #sync / 1[56]:[^:]*:Ser Charibert:14AC:/ -99.4 "Heavensflame 2" #sync / 1[56]:[^:]*:Ser Charibert:14AC:/ +98.0 "--sync--" Ability { id: "14AB", source: "Ser Charibert" } window 10,10 # Heavensflame cast +98.4 "Heavensflame 1" #Ability { id: "14AC", source: "Ser Charibert" } +99.4 "Heavensflame 2" #Ability { id: "14AC", source: "Ser Charibert" } 99.4 "--towers spawn--" -100.4 "Heavensflame 3" #sync / 1[56]:[^:]*:Ser Charibert:14AC:/ -101.4 "Heavensflame 4" #sync / 1[56]:[^:]*:Ser Charibert:14AC:/ -101.5 "--sync--" sync / 1[56]:[^:]*:Ser Hermenost:149C:/ # Conviction (model animation, no actual snapshot) -104.3 "Conviction" sync / 1[56]:[^:]*:Ser Hermenost:149D:/ -107.4 "Sacred Cross" sync / 14:[^:]*:Ser Zephirin:1490:/ duration 19.7 -127.1 "--sync--" sync / 1[56]:[^:]*:Ser Zephirin:1490:/ -133.1 "Spiral Thrust" sync / 1[56]:[^:]*:(Ser Ignasse|Ser Paulecrain|Ser Vellguine):14A6:/ +100.4 "Heavensflame 3" #Ability { id: "14AC", source: "Ser Charibert" } +101.4 "Heavensflame 4" #Ability { id: "14AC", source: "Ser Charibert" } +101.5 "--sync--" Ability { id: "149C", source: "Ser Hermenost" } # Conviction (model animation, no actual snapshot) +104.3 "Conviction" Ability { id: "149D", source: "Ser Hermenost" } +107.4 "Sacred Cross" StartsUsing { id: "1490", source: "Ser Zephirin" } duration 19.7 +127.1 "--sync--" Ability { id: "1490", source: "Ser Zephirin" } +133.1 "Spiral Thrust" Ability { id: "14A6", source: ["Ser Ignasse", "Ser Paulecrain", "Ser Vellguine"] } # Intermission part 2 # This loops until both Adelphel and Janlenoux are dead. @@ -54,155 +54,155 @@ hideall "--sync--" # but it's more important that we sync during the loop, # so we accept a small amount of jumpiness in the timeline. 140.2 "--targetable--" -150.2 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1493:/ -159.3 "Holy Bladedance" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1496:/ -175.3 "Skyward Leap 1" sync / 1[56]:[^:]*:Ser Vellguine:14A9:/ -177.3 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1493:/ -178.3 "Skyward Leap 2" sync / 1[56]:[^:]*:Ser Paulecrain:14A9:/ -179.4 "Heavenly Slash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1494:/ -181.3 "Skyward Leap 3" sync / 1[56]:[^:]*:Ser Ignasse:14A9:/ -192.4 "Holiest Of Holy" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1495:/ -198.5 "Holy Bladedance" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1496:/ -205.6 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1493:/ -212.7 "Holiest Of Holy" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1495:/ -216.8 "Heavenly Slash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1494:/ +150.2 "Divine Right" Ability { id: "1493", source: ["Ser Adelphel", "Ser Janlenoux"] } +159.3 "Holy Bladedance" Ability { id: "1496", source: ["Ser Adelphel", "Ser Janlenoux"] } +175.3 "Skyward Leap 1" Ability { id: "14A9", source: "Ser Vellguine" } +177.3 "Divine Right" Ability { id: "1493", source: ["Ser Adelphel", "Ser Janlenoux"] } +178.3 "Skyward Leap 2" Ability { id: "14A9", source: "Ser Paulecrain" } +179.4 "Heavenly Slash" Ability { id: "1494", source: ["Ser Adelphel", "Ser Janlenoux"] } +181.3 "Skyward Leap 3" Ability { id: "14A9", source: "Ser Ignasse" } +192.4 "Holiest Of Holy" Ability { id: "1495", source: ["Ser Adelphel", "Ser Janlenoux"] } +198.5 "Holy Bladedance" Ability { id: "1496", source: ["Ser Adelphel", "Ser Janlenoux"] } +205.6 "Divine Right" Ability { id: "1493", source: ["Ser Adelphel", "Ser Janlenoux"] } +212.7 "Holiest Of Holy" Ability { id: "1495", source: ["Ser Adelphel", "Ser Janlenoux"] } +216.8 "Heavenly Slash" Ability { id: "1494", source: ["Ser Adelphel", "Ser Janlenoux"] } -232.9 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1493:/ -242.0 "Holy Bladedance" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1496:/ -260.0 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1493:/ -262.1 "Heavenly Slash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1494:/ -275.2 "Holiest Of Holy" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1495:/ -281.3 "Holy Bladedance" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1496:/ -288.3 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1493:/ -295.4 "Holiest Of Holy" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1495:/ -299.5 "Heavenly Slash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1494:/ forcejump 216.8 +232.9 "Divine Right" Ability { id: "1493", source: ["Ser Adelphel", "Ser Janlenoux"] } +242.0 "Holy Bladedance" Ability { id: "1496", source: ["Ser Adelphel", "Ser Janlenoux"] } +260.0 "Divine Right" Ability { id: "1493", source: ["Ser Adelphel", "Ser Janlenoux"] } +262.1 "Heavenly Slash" Ability { id: "1494", source: ["Ser Adelphel", "Ser Janlenoux"] } +275.2 "Holiest Of Holy" Ability { id: "1495", source: ["Ser Adelphel", "Ser Janlenoux"] } +281.3 "Holy Bladedance" Ability { id: "1496", source: ["Ser Adelphel", "Ser Janlenoux"] } +288.3 "Divine Right" Ability { id: "1493", source: ["Ser Adelphel", "Ser Janlenoux"] } +295.4 "Holiest Of Holy" Ability { id: "1495", source: ["Ser Adelphel", "Ser Janlenoux"] } +299.5 "Heavenly Slash" Ability { id: "1494", source: ["Ser Adelphel", "Ser Janlenoux"] } forcejump 216.8 # Intermission part 3 -350.0 "--sync--" sync / 1[56]:[^:]*:Ser Paulecrain:1018:/ window 150,10 -352.0 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:1018:/ window 150,10 -353.0 "--sync--" sync / 1[56]:[^:]*:Ser Haumeric:1018:/ window 150,10 -359.6 "Hiemal Storm" sync / 1[56]:[^:]*:Ser Haumeric:14AE:/ window 328,10 -359.8 "--sync--" sync / 1[56]:[^:]*:(Ser Haumeric|Ser Noudenet):14AF:/ # Hiemal Storm -360.2 "Spiral Pierce" sync / 1[56]:[^:]*:(Ser Ignasse|Ser Paulecrain|Ser Vellguine):14A7:/ -361.5 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:1499:/ -361.9 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:149A:/ # Dimensional Collapse -365.0 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:149B:/ +350.0 "--sync--" Ability { id: "1018", source: "Ser Paulecrain" } window 150,10 +352.0 "--sync--" Ability { id: "1018", source: "Ser Grinnaux" } window 150,10 +353.0 "--sync--" Ability { id: "1018", source: "Ser Haumeric" } window 150,10 +359.6 "Hiemal Storm" Ability { id: "14AE", source: "Ser Haumeric" } window 328,10 +359.8 "--sync--" Ability { id: "14AF", source: ["Ser Haumeric", "Ser Noudenet"] } # Hiemal Storm +360.2 "Spiral Pierce" Ability { id: "14A7", source: ["Ser Ignasse", "Ser Paulecrain", "Ser Vellguine"] } +361.5 "Dimensional Collapse" Ability { id: "1499", source: "Ser Grinnaux" } +361.9 "--sync--" Ability { id: "149A", source: "Ser Grinnaux" } # Dimensional Collapse +365.0 "Faith Unmoving" Ability { id: "149B", source: "Ser Grinnaux" } # Intermission part 4 # Two sets of four Heavy Impacts used during this intermission. # They overlap heavily. Because they use different IDs for each ring, # it's safe to leave them all synced. -366.0 "Holy Meteor" sync / 1[56]:[^:]*:Ser Noudenet:14B0:/ window 220,10 -374.6 "Heavy Impact Set 1" sync / 1[56]:[^:]*:Ser Guerrique:149F:/ duration 10 -376.0 "Comet x4" duration 4 #sync / 1[56]:[^:]*:Ser Noudenet:14B5:/ -379.9 "Heavy Impact Set 2" sync / 1[56]:[^:]*:Ser Guerrique:149F:/ duration 10 -383.8 "Comet x4" duration 4 #sync / 1[56]:[^:]*:Ser Noudenet:14B5:/ -398.1 "Comet Impact" sync / 1[56]:[^:]*:Comet Circle:14B3:/ -420.7 "Meteor Impact Enrage" sync / 1[56]:[^:]*:Meteor Circle:14B4:/ +366.0 "Holy Meteor" Ability { id: "14B0", source: "Ser Noudenet" } window 220,10 +374.6 "Heavy Impact Set 1" Ability { id: "149F", source: "Ser Guerrique" } duration 10 +376.0 "Comet x4" duration 4 #Ability { id: "14B5", source: "Ser Noudenet" } +379.9 "Heavy Impact Set 2" Ability { id: "149F", source: "Ser Guerrique" } duration 10 +383.8 "Comet x4" duration 4 #Ability { id: "14B5", source: "Ser Noudenet" } +398.1 "Comet Impact" Ability { id: "14B3", source: "Comet Circle" } +420.7 "Meteor Impact Enrage" Ability { id: "14B4", source: "Meteor Circle" } -427.0 "--sync--" sync / 1[56]:[^:]*:King Thordan:105B:/ window 260,10 -437.7 "The Light Of Ascalon 1" #sync / 1[56]:[^:]*:Ascalon:148F:/ -439.1 "The Light Of Ascalon 2" #sync / 1[56]:[^:]*:Ascalon:148F:/ -440.5 "The Light Of Ascalon 3" #sync / 1[56]:[^:]*:Ascalon:148F:/ -441.9 "The Light Of Ascalon 4" #sync / 1[56]:[^:]*:Ascalon:148F:/ -443.3 "The Light Of Ascalon 5" #sync / 1[56]:[^:]*:Ascalon:148F:/ -444.7 "The Light Of Ascalon 6" #sync / 1[56]:[^:]*:Ascalon:148F:/ -446.1 "The Light Of Ascalon 7" #sync / 1[56]:[^:]*:Ascalon:148F:/ -447.2 "--sync--" sync / 1[56]:[^:]*:King Thordan:148D:/ # Ultimate End wind-up -451.8 "--sync--" sync / 1[56]:[^:]*:[^:]*:1059:/ # All the knights use this unknown attack here -455.8 "Ultimate End" sync / 1[56]:[^:]*:King Thordan:148E:/ +427.0 "--sync--" Ability { id: "105B", source: "King Thordan" } window 260,10 +437.7 "The Light Of Ascalon 1" #Ability { id: "148F", source: "Ascalon" } +439.1 "The Light Of Ascalon 2" #Ability { id: "148F", source: "Ascalon" } +440.5 "The Light Of Ascalon 3" #Ability { id: "148F", source: "Ascalon" } +441.9 "The Light Of Ascalon 4" #Ability { id: "148F", source: "Ascalon" } +443.3 "The Light Of Ascalon 5" #Ability { id: "148F", source: "Ascalon" } +444.7 "The Light Of Ascalon 6" #Ability { id: "148F", source: "Ascalon" } +446.1 "The Light Of Ascalon 7" #Ability { id: "148F", source: "Ascalon" } +447.2 "--sync--" Ability { id: "148D", source: "King Thordan" } # Ultimate End wind-up +451.8 "--sync--" Ability { id: "1059" } # All the knights use this unknown attack here +455.8 "Ultimate End" Ability { id: "148E", source: "King Thordan" } 460.3 "--targetable--" # Phase 3 # Save the [healer]! -466.4 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:1488:/ -476.6 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:148C:/ -481.7 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ -488.1 "Holy Shield Bash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):1497:/ -497.1 "Spear Of the Fury" sync / 1[56]:[^:]*:Ser Zephirin:1492:/ # A smile better suits a hero -499.5 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:1487:/ -504.6 "The Dragon's Gaze/The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:(1489|148A):/ -516.6 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:1485:/ +466.4 "the Dragon's Eye" Ability { id: "1488", source: "King Thordan" } +476.6 "Knights Of the Round" Ability { id: "148C", source: "King Thordan" } +481.7 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } +488.1 "Holy Shield Bash" Ability { id: "1497", source: ["Ser Adelphel", "Ser Janlenoux"] } +497.1 "Spear Of the Fury" Ability { id: "1492", source: "Ser Zephirin" } # A smile better suits a hero +499.5 "Heavenly Heel" Ability { id: "1487", source: "King Thordan" } +504.6 "The Dragon's Gaze/The Dragon's Glory" Ability { id: ["1489", "148A"], source: "King Thordan" } +516.6 "Ancient Quaga" Ability { id: "1485", source: "King Thordan" } #Phase 4 # Conviction Trio -521.8 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:1488:/ -532.0 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:148C:/ -543.1 "The Dragon's Gaze/The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:(1489|148A):/ -543.2 "Conviction" sync / 1[56]:[^:]*:Ser Hermenost:149C:/ -544.1 "Heavy Impact 1" sync / 1[56]:[^:]*:Ser Guerrique:14A0:/ -546.0 "Conviction" sync / 1[56]:[^:]*:Ser Hermenost:149D:/ -546.0 "Heavy Impact 2" sync / 1[56]:[^:]*:Ser Guerrique:14A1:/ -548.0 "Heavy Impact 3" sync / 1[56]:[^:]*:Ser Guerrique:14A2:/ -550.0 "Heavy Impact 4" sync / 1[56]:[^:]*:Ser Guerrique:14A3:/ -552.4 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:1499:/ -552.8 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:149A:/ # Dimensional Collapse -555.9 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:149B:/ -557.9 "the Dragon's Rage" sync / 1[56]:[^:]*:King Thordan:148B:/ -563.0 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ +521.8 "the Dragon's Eye" Ability { id: "1488", source: "King Thordan" } +532.0 "Knights Of the Round" Ability { id: "148C", source: "King Thordan" } +543.1 "The Dragon's Gaze/The Dragon's Glory" Ability { id: ["1489", "148A"], source: "King Thordan" } +543.2 "Conviction" Ability { id: "149C", source: "Ser Hermenost" } +544.1 "Heavy Impact 1" Ability { id: "14A0", source: "Ser Guerrique" } +546.0 "Conviction" Ability { id: "149D", source: "Ser Hermenost" } +546.0 "Heavy Impact 2" Ability { id: "14A1", source: "Ser Guerrique" } +548.0 "Heavy Impact 3" Ability { id: "14A2", source: "Ser Guerrique" } +550.0 "Heavy Impact 4" Ability { id: "14A3", source: "Ser Guerrique" } +552.4 "Dimensional Collapse" Ability { id: "1499", source: "Ser Grinnaux" } +552.8 "--sync--" Ability { id: "149A", source: "Ser Grinnaux" } # Dimensional Collapse +555.9 "Faith Unmoving" Ability { id: "149B", source: "Ser Grinnaux" } +557.9 "the Dragon's Rage" Ability { id: "148B", source: "King Thordan" } +563.0 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } # Phase 5 # Spiral Sky Trio -572.1 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:1488:/ -582.2 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:148C:/ -588.9 "Lightning Storm" sync / 1[56]:[^:]*:King Thordan:1481:/ -589.3 "--sync--" sync / 1[56]:[^:]*:King Thordan:1482:/# Lightning Storm -597.3 "Spiral Thrust" sync / 1[56]:[^:]*:Ser Vellguine:14A6:/ -597.3 "Spiral Pierce" sync / 1[56]:[^:]*:Ser Paulecrain:14A7:/ -597.5 "Skyward Leap" sync / 1[56]:[^:]*:Ser Ignasse:14A9:/ -598.9 "the Dragon's Rage" sync / 1[56]:[^:]*:King Thordan:148B:/ -609.9 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:1487:/ -612.0 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ +572.1 "the Dragon's Eye" Ability { id: "1488", source: "King Thordan" } +582.2 "Knights Of the Round" Ability { id: "148C", source: "King Thordan" } +588.9 "Lightning Storm" Ability { id: "1481", source: "King Thordan" } +589.3 "--sync--" Ability { id: "1482", source: "King Thordan" }# Lightning Storm +597.3 "Spiral Thrust" Ability { id: "14A6", source: "Ser Vellguine" } +597.3 "Spiral Pierce" Ability { id: "14A7", source: "Ser Paulecrain" } +597.5 "Skyward Leap" Ability { id: "14A9", source: "Ser Ignasse" } +598.9 "the Dragon's Rage" Ability { id: "148B", source: "King Thordan" } +609.9 "Heavenly Heel" Ability { id: "1487", source: "King Thordan" } +612.0 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } # Phase 6 # Meteor Trio -622.1 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:1488:/ -632.3 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:148C:/ -638.4 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ +622.1 "the Dragon's Eye" Ability { id: "1488", source: "King Thordan" } +632.3 "Knights Of the Round" Ability { id: "148C", source: "King Thordan" } +638.4 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } 641.5 "--chains appear--" -642.4 "Holy Meteor" sync / 1[56]:[^:]*:Ser Noudenet:14B0:/ -643.5 "Comet x4" duration 4 #sync / 1[56]:[^:]*:Ser Noudenet:14B5:/ -643.5 "The Dragon's Gaze/The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:(1489|148A):/ -643.8 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:14AB:/ # Heavensflame (cast) -644.2 "Heavensflame 1" #sync / 1[56]:[^:]*:Ser Charibert:14AC:/ -645.3 "Heavensflame 2" #sync / 1[56]:[^:]*:Ser Charibert:14AC:/ -646.4 "Heavensflame 3" #sync / 1[56]:[^:]*:Ser Charibert:14AC:/ -646.8 "Hiemal Storm" sync / 1[56]:[^:]*:Ser Haumeric:14AE:/ -647.4 "--sync--" sync / 1[56]:[^:]*:(Ser Haumeric|Ser Noudenet):14AF:/ # Hiemal Storm -648.7 "Ascalon's Mercy" sync / 1[56]:[^:]*:King Thordan:147F:/ -656.8 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:1485:/ -662.9 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:1487:/ -668.0 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:1485:/ +642.4 "Holy Meteor" Ability { id: "14B0", source: "Ser Noudenet" } +643.5 "Comet x4" duration 4 #Ability { id: "14B5", source: "Ser Noudenet" } +643.5 "The Dragon's Gaze/The Dragon's Glory" Ability { id: ["1489", "148A"], source: "King Thordan" } +643.8 "--sync--" Ability { id: "14AB", source: "Ser Charibert" } # Heavensflame (cast) +644.2 "Heavensflame 1" #Ability { id: "14AC", source: "Ser Charibert" } +645.3 "Heavensflame 2" #Ability { id: "14AC", source: "Ser Charibert" } +646.4 "Heavensflame 3" #Ability { id: "14AC", source: "Ser Charibert" } +646.8 "Hiemal Storm" Ability { id: "14AE", source: "Ser Haumeric" } +647.4 "--sync--" Ability { id: "14AF", source: ["Ser Haumeric", "Ser Noudenet"] } # Hiemal Storm +648.7 "Ascalon's Mercy" Ability { id: "147F", source: "King Thordan" } +656.8 "Ancient Quaga" Ability { id: "1485", source: "King Thordan" } +662.9 "Heavenly Heel" Ability { id: "1487", source: "King Thordan" } +668.0 "Ancient Quaga" Ability { id: "1485", source: "King Thordan" } # Phase 7 -- zomg SO MUCH AOE DAMAGE # Heavensward Trio -673.1 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:1488:/ -683.3 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:148C:/ -688.4 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ -693.4 "Holiest Of Holy" sync / 1[56]:[^:]*:Ser Janlenoux:1495:/ -698.5 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:147E:/ -704.6 "Heavensward Leap 1" sync / 1[56]:[^:]*:Ser Vellguine:14AA:/ -707.6 "Heavensward Leap 2" sync / 1[56]:[^:]*:Ser Paulecrain:14AA:/ -710.6 "Heavensward Leap 3" sync / 1[56]:[^:]*:Ser Ignasse:14AA:/ -718.7 "Sacred Cross" sync / 14:[^:]*:Ser Zephirin:1491:/ duration 24.7 -724.6 "Pure Of Soul" sync / 1[56]:[^:]*:(Ser Charibert|Ser Noudenet|Ser Haumeric):(14B1|14B2):/ -732.6 "Absolute Conviction 1" sync / 1[56]:[^:]*:Ser Guerrique:14A4:/ -735.5 "Absolute Conviction 2" sync / 1[56]:[^:]*:Ser Hermenost:14A5:/ -740.6 "The Dragon's Gaze/The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:(1489|148A):/ -743.4 "--sync--" sync / 1[56]:[^:]*:Ser Zephirin:1491:/ # Sacred Cross resolves -750.7 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:1485:/ +673.1 "the Dragon's Eye" Ability { id: "1488", source: "King Thordan" } +683.3 "Knights Of the Round" Ability { id: "148C", source: "King Thordan" } +688.4 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } +693.4 "Holiest Of Holy" Ability { id: "1495", source: "Ser Janlenoux" } +698.5 "Ascalon's Might" Ability { id: "147E", source: "King Thordan" } +704.6 "Heavensward Leap 1" Ability { id: "14AA", source: "Ser Vellguine" } +707.6 "Heavensward Leap 2" Ability { id: "14AA", source: "Ser Paulecrain" } +710.6 "Heavensward Leap 3" Ability { id: "14AA", source: "Ser Ignasse" } +718.7 "Sacred Cross" StartsUsing { id: "1491", source: "Ser Zephirin" } duration 24.7 +724.6 "Pure Of Soul" Ability { id: ["14B1", "14B2"], source: ["Ser Charibert", "Ser Noudenet", "Ser Haumeric"] } +732.6 "Absolute Conviction 1" Ability { id: "14A4", source: "Ser Guerrique" } +735.5 "Absolute Conviction 2" Ability { id: "14A5", source: "Ser Hermenost" } +740.6 "The Dragon's Gaze/The Dragon's Glory" Ability { id: ["1489", "148A"], source: "King Thordan" } +743.4 "--sync--" Ability { id: "1491", source: "Ser Zephirin" } # Sacred Cross resolves +750.7 "Ancient Quaga" Ability { id: "1485", source: "King Thordan" } # Enrage sequence -759.8 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:1487:/ -761.9 "Ascalon's Might 1" sync / 1[56]:[^:]*:King Thordan:147E:/ -767.0 "Ascalon's Might 2" sync / 1[56]:[^:]*:King Thordan:147E:/ -770.1 "Ascalon's Might 3" sync / 1[56]:[^:]*:King Thordan:147E:/ -773.2 "Ascalon's Might 4" sync / 1[56]:[^:]*:King Thordan:147E:/ -776.3 "Ascalon's Might 5" sync / 1[56]:[^:]*:King Thordan:147E:/ -779.4 "Ascalon's Might 6" sync / 1[56]:[^:]*:King Thordan:147E:/ -791.4 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:1486:/ +759.8 "Heavenly Heel" Ability { id: "1487", source: "King Thordan" } +761.9 "Ascalon's Might 1" Ability { id: "147E", source: "King Thordan" } +767.0 "Ascalon's Might 2" Ability { id: "147E", source: "King Thordan" } +770.1 "Ascalon's Might 3" Ability { id: "147E", source: "King Thordan" } +773.2 "Ascalon's Might 4" Ability { id: "147E", source: "King Thordan" } +776.3 "Ascalon's Might 5" Ability { id: "147E", source: "King Thordan" } +779.4 "Ascalon's Might 6" Ability { id: "147E", source: "King Thordan" } +791.4 "Ancient Quaga" Ability { id: "1486", source: "King Thordan" } # IGNORED ABILITIES # 1018 --sync-- diff --git a/ui/raidboss/data/03-hw/trial/zurvan-ex.ts b/ui/raidboss/data/03-hw/trial/zurvan-ex.ts index be78cf28bb..ef7890d32c 100644 --- a/ui/raidboss/data/03-hw/trial/zurvan-ex.ts +++ b/ui/raidboss/data/03-hw/trial/zurvan-ex.ts @@ -52,6 +52,7 @@ const triggerSet: TriggerSet = { waveCannonTarget: { en: 'Wave Cannon on YOU', de: 'Wellenkanone auf DIR', + fr: 'Canon plasma sur VOUS', ja: '波動砲対象', cn: '波动炮点名', ko: '파동포 대상자', @@ -59,6 +60,7 @@ const triggerSet: TriggerSet = { avoidWaveCannon: { en: 'Away from ${target} -- Wave Cannon', de: 'Weg von ${target} -- Wellenkanone', + fr: 'Éloignez-vous de ${target} -- Canon plasma', ja: '${target} から離れる -- 波動砲', cn: '远离 ${target} -- 波动炮', ko: '${target} 피하기 -- 파동포', @@ -102,6 +104,7 @@ const triggerSet: TriggerSet = { demonClawYou: { en: 'Knockback from boss on YOU', de: 'Rückstoß vom Boss auf DIR', + fr: 'Poussée depuis le boss sur VOUS', ja: 'デモンクロー ノックバック対象', cn: 'BOSS击退点名', ko: '넉백공격 대상자', @@ -144,6 +147,7 @@ const triggerSet: TriggerSet = { demonicSpread: { en: 'Spread -- Don\'t stack!', de: 'Verteilen -- Nicht aufeinander!', + fr: 'Écartez-vous - Ne vous packez pas !', ja: '散開 -- 重ならないで!', cn: '分散 -- 不要集合!', ko: '산개 -- 쉐어맞으면 안됨!', @@ -183,6 +187,7 @@ const triggerSet: TriggerSet = { text: { en: 'Stay outside hitbox', de: 'Auserhalb der Hitbox stehen', + fr: 'Restez à l\'extérieur de la hitbox', ja: '範囲攻撃を避ける', cn: '站在判定圈外', ko: '히트박스 밖으로', @@ -211,6 +216,7 @@ const triggerSet: TriggerSet = { baitSouthernCross: { en: 'Bait Ice Puddles', de: 'Eisflächen ködern', + fr: 'Bait les puddles de glace', ja: '氷範囲を捨てる', cn: '诱导冰圈', ko: '얼음장판 유도', @@ -240,6 +246,7 @@ const triggerSet: TriggerSet = { tetherBuddy: { en: 'Tethered with ${buddy}', de: 'Mit ${buddy} verbunden', + fr: 'Lié avec ${buddy}', ja: '${buddy} とペア', cn: '与 ${buddy} 连线', ko: '선 연결 ${buddy}', @@ -269,6 +276,7 @@ const triggerSet: TriggerSet = { infiniteDebuff: { en: '${element} on you', de: '${element} auf dir', + fr: '${element} sur vous', ja: '${element} 付与', cn: '${element} 点名', ko: '${element}', @@ -276,6 +284,7 @@ const triggerSet: TriggerSet = { fire: { en: 'Fire', de: 'Feuer', + fr: 'Feu', ja: '炎', cn: '火', ko: '불', @@ -283,6 +292,7 @@ const triggerSet: TriggerSet = { ice: { en: 'Ice', de: 'Eis', + fr: 'Glace', ja: '氷', cn: '冰', ko: '얼음', @@ -307,6 +317,7 @@ const triggerSet: TriggerSet = { sealTowers: { en: '${element} towers with ${buddy}', de: '${element} Türme mit ${buddy}', + fr: 'Tour de ${element} avec ${buddy}', ja: '${buddy} と ${element} の塔に入る', cn: '与${buddy}踩${element}塔', ko: '${element} 기둥 +${buddy}', @@ -314,6 +325,7 @@ const triggerSet: TriggerSet = { fire: { en: 'Fire', de: 'Feuer', + fr: 'Feu', ja: '炎', cn: '火', ko: '불', @@ -321,6 +333,7 @@ const triggerSet: TriggerSet = { ice: { en: 'Ice', de: 'Eis', + fr: 'Glace', ja: '氷', cn: '冰', ko: '얼음', @@ -379,12 +392,17 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', - 'missingTranslations': true, 'replaceSync': { 'Execrated Wile': 'ruse honnie', 'Zurvan': 'Zurvan', }, 'replaceText': { + '\\(circles\\)': '(Cerles)', + '\\(explosion\\)': '(Explosion)', + '\\(puddle\\)': '(Puddle)', + '\\(snapshot\\)': '(Copie)', + '\\(avoid\\)': '(Évitez)', + '\\(stack\\)': '(Package)', 'Ahura Mazda': 'Ahura Mazda', 'Biting Halberd': 'Hallebarde mordante', 'Broken Seal': 'Marque brisée', diff --git a/ui/raidboss/data/03-hw/trial/zurvan-ex.txt b/ui/raidboss/data/03-hw/trial/zurvan-ex.txt index 571813d21c..2246b6b8c0 100644 --- a/ui/raidboss/data/03-hw/trial/zurvan-ex.txt +++ b/ui/raidboss/data/03-hw/trial/zurvan-ex.txt @@ -17,31 +17,31 @@ hideall "--Reset--" hideall "--sync--" # Preliminary phase. No pushes. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.4 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1E3F:/ window 6.5,2.5 -10.5 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1E3F:/ -16.6 "Flare Star (circles)" sync / 1[56]:[^:]*:Zurvan:1C4E:/ -17.3 "Flare Star (explosion)" sync / 1[56]:[^:]*:Zurvan:1C4F:/ -21.9 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1E3F:/ -28.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1E3F:/ -35.0 "Flare Star (circles)" sync / 1[56]:[^:]*:Zurvan:1C4E:/ -35.7 "Flare Star (explosion)" sync / 1[56]:[^:]*:Zurvan:1C4F:/ -40.6 "the Purge" sync / 1[56]:[^:]*:Zurvan:1C50:/ window 40.6,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.4 "Metal Cutter" Ability { id: "1E3F", source: "Zurvan" } window 6.5,2.5 +10.5 "Metal Cutter" Ability { id: "1E3F", source: "Zurvan" } +16.6 "Flare Star (circles)" Ability { id: "1C4E", source: "Zurvan" } +17.3 "Flare Star (explosion)" Ability { id: "1C4F", source: "Zurvan" } +21.9 "Metal Cutter" Ability { id: "1E3F", source: "Zurvan" } +28.0 "Metal Cutter" Ability { id: "1E3F", source: "Zurvan" } +35.0 "Flare Star (circles)" Ability { id: "1C4E", source: "Zurvan" } +35.7 "Flare Star (explosion)" Ability { id: "1C4F", source: "Zurvan" } +40.6 "the Purge" Ability { id: "1C50", source: "Zurvan" } window 40.6,10 49.6 "--untargetable--" 58.6 "--targetable--" -61.7 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ window 61.7,2.5 # Different from preliminary phase, so this is safe. -66.8 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -73.9 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:1C73:/ +61.7 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } window 61.7,2.5 # Different from preliminary phase, so this is safe. +66.8 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +73.9 "Wave Cannon (avoid)" Ability { id: "1C73", source: "Zurvan" } -80.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -85.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -90.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -95.3 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -102.4 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:1C73:/ +80.0 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +85.1 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +90.2 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +95.3 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +102.4 "Wave Cannon (avoid)" Ability { id: "1C73", source: "Zurvan" } -108.5 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ jump 80.0 +108.5 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } jump 80.0 113.6 "Metal Cutter" 118.7 "Metal Cutter" 123.8 "Metal Cutter" @@ -53,36 +53,36 @@ hideall "--sync--" #Phase push at <90% # It may look like this is two copies of one block, # but it alternates between one and two Metal Cutters after Soar. -200.0 "Sarva" sync / 1[56]:[^:]*:Zurvan:1C51:/ window 200,10 -206.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -211.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ +200.0 "Sarva" Ability { id: "1C51", source: "Zurvan" } window 200,10 +206.1 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +211.2 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } -221.3 "Soar" sync / 1[56]:[^:]*:Zurvan:1E09:/ window 30,30 +221.3 "Soar" Ability { id: "1E09", source: "Zurvan" } window 30,30 221.4 "--untargetable--" -230.4 "Flaming Halberd" sync / 1[56]:[^:]*:Zurvan:1C54:/ -235.5 "Demonic Dive" sync / 1[56]:[^:]*:Zurvan:1C55:/ -236.4 "Cool Flame" sync / 1[56]:[^:]*:Zurvan:1C56:/ +230.4 "Flaming Halberd" Ability { id: "1C54", source: "Zurvan" } +235.5 "Demonic Dive" Ability { id: "1C55", source: "Zurvan" } +236.4 "Cool Flame" Ability { id: "1C56", source: "Zurvan" } 238.5 "--targetable--" -241.6 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -246.7 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -254.8 "The Demon's Claw" sync / 1[56]:[^:]*:Zurvan:1C71:/ -261.9 "Wave Cannon (stack)" sync / 1[56]:[^:]*:Zurvan:1C72:/ -268.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -273.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ - -283.1 "Soar" sync / 1[56]:[^:]*:Zurvan:1E09:/ window 30,30 +241.6 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +246.7 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +254.8 "The Demon's Claw" Ability { id: "1C71", source: "Zurvan" } +261.9 "Wave Cannon (stack)" Ability { id: "1C72", source: "Zurvan" } +268.0 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +273.1 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } + +283.1 "Soar" Ability { id: "1E09", source: "Zurvan" } window 30,30 283.2 "--untargetable--" -292.2 "Flaming Halberd" sync / 1[56]:[^:]*:Zurvan:1C54:/ -297.3 "Demonic Dive" sync / 1[56]:[^:]*:Zurvan:1C55:/ -298.2 "Cool Flame" sync / 1[56]:[^:]*:Zurvan:1C56:/ +292.2 "Flaming Halberd" Ability { id: "1C54", source: "Zurvan" } +297.3 "Demonic Dive" Ability { id: "1C55", source: "Zurvan" } +298.2 "Cool Flame" Ability { id: "1C56", source: "Zurvan" } 300.3 "--targetable--" -303.4 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -311.5 "The Demon's Claw" sync / 1[56]:[^:]*:Zurvan:1C71:/ -318.6 "Wave Cannon (stack)" sync / 1[56]:[^:]*:Zurvan:1C72:/ -324.7 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -329.8 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ +303.4 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +311.5 "The Demon's Claw" Ability { id: "1C71", source: "Zurvan" } +318.6 "Wave Cannon (stack)" Ability { id: "1C72", source: "Zurvan" } +324.7 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +329.8 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } -339.8 "Soar" sync / 1[56]:[^:]*:Zurvan:1E09:/ window 30,30 jump 221.3 +339.8 "Soar" Ability { id: "1E09", source: "Zurvan" } window 30,30 jump 221.3 339.8 "Twin Spirit" 339.9 "--untargetable--" 348.9 "Flaming Halberd" @@ -95,23 +95,23 @@ hideall "--sync--" # Phase push at <75% -400.0 "Sarva" sync / 1[56]:[^:]*:Zurvan:1C57:/ window 150,50 -403.1 "Ice and Fire" sync / 1[56]:[^:]*:Zurvan:1C58:/ window 403.1,10 -407.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -411.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -415.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ +400.0 "Sarva" Ability { id: "1C57", source: "Zurvan" } window 150,50 +403.1 "Ice and Fire" Ability { id: "1C58", source: "Zurvan" } window 403.1,10 +407.2 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +411.2 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +415.2 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } -423.2 "Biting Halberd" sync / 1[56]:[^:]*:Zurvan:1C59:/ -429.3 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:1C5C:/ window 430,10 -432.9 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:1C5D:/ -434.6 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -444.7 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(1C59|1C5A|1C5B):/ +423.2 "Biting Halberd" Ability { id: "1C59", source: "Zurvan" } +429.3 "Southern Cross (snapshot)" Ability { id: "1C5C", source: "Zurvan" } window 430,10 +432.9 "Southern Cross (puddle)" Ability { id: "1C5D", source: "Zurvan" } +434.6 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +444.7 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["1C59", "1C5A", "1C5B"], source: "Zurvan" } # This is the earliest point this phase can push -448.8 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -452.9 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -457.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -465.1 "Biting Halberd" sync / 1[56]:[^:]*:Zurvan:1C59:/ window 15,15 jump 423.2 +448.8 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +452.9 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +457.0 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +465.1 "Biting Halberd" Ability { id: "1C59", source: "Zurvan" } window 15,15 jump 423.2 471.2 "Southern Cross (snapshot)" 474.8 "Southern Cross (puddle)" 476.5 "Metal Cutter" @@ -123,7 +123,7 @@ hideall "--sync--" # Intermission push at <69% # This ability is untranslated, so we ensure it doesn't cause issues in non-JP timelines. # 鬼神:履行技スタート:演出アクション:極 -500.0 "--sync--" sync / 1[56]:[^:]*:Zurvan:1C5E:/ window 500,10 +500.0 "--sync--" Ability { id: "1C5E", source: "Zurvan" } window 500,10 # Intermission gauge increases will vary depnding on how fast mobs die and in what order. # There's no good way to figure out the gauge timing here, @@ -131,95 +131,95 @@ hideall "--sync--" -990.3 "Sarva" sync / 1[56]:[^:]*:Zurvan:1C5F:/ window 500,10 -1000.0 "Ahura Mazda" sync / 1[56]:[^:]*:Zurvan:1C60:/ window 1000,10 +990.3 "Sarva" Ability { id: "1C5F", source: "Zurvan" } window 500,10 +1000.0 "Ahura Mazda" Ability { id: "1C60", source: "Zurvan" } window 1000,10 1018.2 "--targetable--" -1024.4 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(1C67|1C68):/ -1032.5 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:1C73:/ -1039.7 "Tyrfing x5" sync / 1[56]:[^:]*:Zurvan:1C6D:/ duration 5 window 1040,5 -1044.8 "Fire III" sync / 1[56]:[^:]*:Zurvan:1C6F:/ -1050.9 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:1C5C:/ -1054.5 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:1C5D:/ -1056.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1065.3 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:1DC7:/ window 30,30 -1081.0 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(1C59|1C5B|1C5A):/ -1086.3 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1091.1 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(1C67|1C68):/ -1099.5 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:1C73:/ -1106.6 "Tyrfing x6" sync / 1[56]:[^:]*:Zurvan:1C6D:/ duration 6 -1112.7 "Fire III" sync / 1[56]:[^:]*:Zurvan:1C6F:/ -1118.8 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:1C5C:/ -1122.4 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:1C5D:/ -1124.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1133.2 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:1DC7:/ -1147.9 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(1C59|1C5B|1C5A):/ -1154.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1164.1 "Soar" sync / 1[56]:[^:]*:Zurvan:1E09:/ window 100,20 +1024.4 "Infinite Fire/Infinite Ice" Ability { id: ["1C67", "1C68"], source: "Zurvan" } +1032.5 "Wave Cannon (avoid)" Ability { id: "1C73", source: "Zurvan" } +1039.7 "Tyrfing x5" Ability { id: "1C6D", source: "Zurvan" } duration 5 window 1040,5 +1044.8 "Fire III" Ability { id: "1C6F", source: "Zurvan" } +1050.9 "Southern Cross (snapshot)" Ability { id: "1C5C", source: "Zurvan" } +1054.5 "Southern Cross (puddle)" Ability { id: "1C5D", source: "Zurvan" } +1056.2 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1065.3 "Broken Seal" Ability { id: "1DC7", source: "Zurvan" } window 30,30 +1081.0 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["1C59", "1C5B", "1C5A"], source: "Zurvan" } +1086.3 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1091.1 "Infinite Fire/Infinite Ice" Ability { id: ["1C67", "1C68"], source: "Zurvan" } +1099.5 "Wave Cannon (avoid)" Ability { id: "1C73", source: "Zurvan" } +1106.6 "Tyrfing x6" Ability { id: "1C6D", source: "Zurvan" } duration 6 +1112.7 "Fire III" Ability { id: "1C6F", source: "Zurvan" } +1118.8 "Southern Cross (snapshot)" Ability { id: "1C5C", source: "Zurvan" } +1122.4 "Southern Cross (puddle)" Ability { id: "1C5D", source: "Zurvan" } +1124.1 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1133.2 "Broken Seal" Ability { id: "1DC7", source: "Zurvan" } +1147.9 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["1C59", "1C5B", "1C5A"], source: "Zurvan" } +1154.0 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1164.1 "Soar" Ability { id: "1E09", source: "Zurvan" } window 100,20 1164.2 "--untargetable--" -1173.2 "Flaming Halberd" sync / 1[56]:[^:]*:Zurvan:1C54:/ -1178.3 "Demonic Dive" sync / 1[56]:[^:]*:Zurvan:1C55:/ -1179.2 "Cool Flame" sync / 1[56]:[^:]*:Zurvan:1C56:/ +1173.2 "Flaming Halberd" Ability { id: "1C54", source: "Zurvan" } +1178.3 "Demonic Dive" Ability { id: "1C55", source: "Zurvan" } +1179.2 "Cool Flame" Ability { id: "1C56", source: "Zurvan" } 1181.3 "--targetable--" -1187.4 "The Demon's Claw" sync / 1[56]:[^:]*:Zurvan:1C71:/ -1194.5 "Wave Cannon (stack)" sync / 1[56]:[^:]*:Zurvan:1C72:/ -1200.6 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(1C67|1C68):/ -1208.7 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:1C73:/ -1215.8 "Tyrfing x7" sync / 1[56]:[^:]*:Zurvan:1C6D:/ duration 7 -1222.9 "Fire III" sync / 1[56]:[^:]*:Zurvan:1C6F:/ -1229.0 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:1C5C:/ -1232.6 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:1C5D:/ -1234.3 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1243.4 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:1DC7:/ window 30,30 -1258.4 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(1C59|1C5B|1C5A):/ -1264.5 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1269.6 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(1C67|1C68):/ -1277.7 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:1C73:/ -1284.8 "Tyrfing x8" sync / 1[56]:[^:]*:Zurvan:1C6D:/ duration 8 -1292.9 "Fire III" sync / 1[56]:[^:]*:Zurvan:1C6F:/ -1299.0 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:1C5C:/ -1302.6 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:1C5D:/ -1304.3 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1313.4 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:1DC7:/ -1328.6 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(1C59|1C5B|1C5A):/ -1334.8 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1344.8 "Soar" sync / 1[56]:[^:]*:Zurvan:1E09:/ window 100,20 +1187.4 "The Demon's Claw" Ability { id: "1C71", source: "Zurvan" } +1194.5 "Wave Cannon (stack)" Ability { id: "1C72", source: "Zurvan" } +1200.6 "Infinite Fire/Infinite Ice" Ability { id: ["1C67", "1C68"], source: "Zurvan" } +1208.7 "Wave Cannon (avoid)" Ability { id: "1C73", source: "Zurvan" } +1215.8 "Tyrfing x7" Ability { id: "1C6D", source: "Zurvan" } duration 7 +1222.9 "Fire III" Ability { id: "1C6F", source: "Zurvan" } +1229.0 "Southern Cross (snapshot)" Ability { id: "1C5C", source: "Zurvan" } +1232.6 "Southern Cross (puddle)" Ability { id: "1C5D", source: "Zurvan" } +1234.3 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1243.4 "Broken Seal" Ability { id: "1DC7", source: "Zurvan" } window 30,30 +1258.4 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["1C59", "1C5B", "1C5A"], source: "Zurvan" } +1264.5 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1269.6 "Infinite Fire/Infinite Ice" Ability { id: ["1C67", "1C68"], source: "Zurvan" } +1277.7 "Wave Cannon (avoid)" Ability { id: "1C73", source: "Zurvan" } +1284.8 "Tyrfing x8" Ability { id: "1C6D", source: "Zurvan" } duration 8 +1292.9 "Fire III" Ability { id: "1C6F", source: "Zurvan" } +1299.0 "Southern Cross (snapshot)" Ability { id: "1C5C", source: "Zurvan" } +1302.6 "Southern Cross (puddle)" Ability { id: "1C5D", source: "Zurvan" } +1304.3 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1313.4 "Broken Seal" Ability { id: "1DC7", source: "Zurvan" } +1328.6 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["1C59", "1C5B", "1C5A"], source: "Zurvan" } +1334.8 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1344.8 "Soar" Ability { id: "1E09", source: "Zurvan" } window 100,20 1344.9 "--untargetable--" -1353.9 "Flaming Halberd" sync / 1[56]:[^:]*:Zurvan:1C54:/ -1359.0 "Demonic Dive" sync / 1[56]:[^:]*:Zurvan:1C55:/ -1359.9 "Cool Flame" sync / 1[56]:[^:]*:Zurvan:1C56:/ +1353.9 "Flaming Halberd" Ability { id: "1C54", source: "Zurvan" } +1359.0 "Demonic Dive" Ability { id: "1C55", source: "Zurvan" } +1359.9 "Cool Flame" Ability { id: "1C56", source: "Zurvan" } 1362.0 "--targetable--" -1368.1 "The Demon's Claw" sync / 1[56]:[^:]*:Zurvan:1C71:/ -1375.2 "Wave Cannon (stack)" sync / 1[56]:[^:]*:Zurvan:1C72:/ -1381.3 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(1C67|1C68):/ -1389.5 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:1C73:/ -1396.6 "Tyrfing x9" sync / 1[56]:[^:]*:Zurvan:1C6D:/ duration 9 -1405.7 "Fire III" sync / 1[56]:[^:]*:Zurvan:1C6F:/ -1411.8 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:1C5C:/ -1415.4 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:1C5D:/ -1417.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1426.2 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:1DC7:/ window 30,30 -1441.2 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(1C59|1C5B|1C5A):/ +1368.1 "The Demon's Claw" Ability { id: "1C71", source: "Zurvan" } +1375.2 "Wave Cannon (stack)" Ability { id: "1C72", source: "Zurvan" } +1381.3 "Infinite Fire/Infinite Ice" Ability { id: ["1C67", "1C68"], source: "Zurvan" } +1389.5 "Wave Cannon (avoid)" Ability { id: "1C73", source: "Zurvan" } +1396.6 "Tyrfing x9" Ability { id: "1C6D", source: "Zurvan" } duration 9 +1405.7 "Fire III" Ability { id: "1C6F", source: "Zurvan" } +1411.8 "Southern Cross (snapshot)" Ability { id: "1C5C", source: "Zurvan" } +1415.4 "Southern Cross (puddle)" Ability { id: "1C5D", source: "Zurvan" } +1417.1 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1426.2 "Broken Seal" Ability { id: "1DC7", source: "Zurvan" } window 30,30 +1441.2 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["1C59", "1C5B", "1C5A"], source: "Zurvan" } # It should theoretically be impossible to reach here before enrage, # but just in case we'll unroll a bit more to get to 10x Tyrfings. -1447.4 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1452.5 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(1C67|1C68):/ -1460.6 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:1C73:/ -1467.7 "Tyrfing x10" sync / 1[56]:[^:]*:Zurvan:1C6D:/ duration 10 -1475.8 "Fire III" sync / 1[56]:[^:]*:Zurvan:1C6F:/ -1481.9 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:1C5C:/ -1485.5 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:1C5D:/ -1487.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1496.3 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:1DC7:/ -1511.5 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(1C59|1C5B|1C5A):/ -1517.7 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:1C70:/ -1527.7 "Soar" sync / 1[56]:[^:]*:Zurvan:1E09:/ +1447.4 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1452.5 "Infinite Fire/Infinite Ice" Ability { id: ["1C67", "1C68"], source: "Zurvan" } +1460.6 "Wave Cannon (avoid)" Ability { id: "1C73", source: "Zurvan" } +1467.7 "Tyrfing x10" Ability { id: "1C6D", source: "Zurvan" } duration 10 +1475.8 "Fire III" Ability { id: "1C6F", source: "Zurvan" } +1481.9 "Southern Cross (snapshot)" Ability { id: "1C5C", source: "Zurvan" } +1485.5 "Southern Cross (puddle)" Ability { id: "1C5D", source: "Zurvan" } +1487.2 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1496.3 "Broken Seal" Ability { id: "1DC7", source: "Zurvan" } +1511.5 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["1C59", "1C5B", "1C5A"], source: "Zurvan" } +1517.7 "Metal Cutter" Ability { id: "1C70", source: "Zurvan" } +1527.7 "Soar" Ability { id: "1E09", source: "Zurvan" } 1527.8 "--untargetable--" # Enrage at 12 minutes -1989.7 "--sync--" sync / 14:[^:]*:Zurvan:1E59:/ window 2000,100 -1998.8 "Flame Halberd Enrage" sync / 1[56]:[^:]*:Zurvan:1E59:/ +1989.7 "--sync--" StartsUsing { id: "1E59", source: "Zurvan" } window 2000,100 +1998.8 "Flame Halberd Enrage" Ability { id: "1E59", source: "Zurvan" } 1998.8 "--untargetable--" -2000.0 "--sync--" sync / 1[56]:[^:]*:Zurvan:1E58:/ +2000.0 "--sync--" Ability { id: "1E58", source: "Zurvan" } diff --git a/ui/raidboss/data/04-sb/alliance/orbonne_monastery.txt b/ui/raidboss/data/04-sb/alliance/orbonne_monastery.txt index 1f2448b022..dd5fc8f81e 100644 --- a/ui/raidboss/data/04-sb/alliance/orbonne_monastery.txt +++ b/ui/raidboss/data/04-sb/alliance/orbonne_monastery.txt @@ -11,77 +11,77 @@ hideall "--sync--" ### Phase 1 # Realm of the Machinists will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B35:/ window 1000,0 -1012.0 "Energy Burst" sync / 1[56]:[^:]*:Mustadio:373B:/ -1022.7 "Arm Shot" sync / 1[56]:[^:]*:Mustadio:3739:/ -1033.2 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1042.5 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1058.6 "Maintenance" sync / 1[56]:[^:]*:Mustadio:3734:/ -1065.1 "Compress" sync / 1[56]:[^:]*:Iron Construct:3740:/ -1066.2 "Searchlight" sync / 1[56]:[^:]*:Mustadio:373D:/ -1078.9 "Energy Burst" sync / 1[56]:[^:]*:Mustadio:373B:/ -1085.6 "Arm Shot" sync / 1[56]:[^:]*:Mustadio:3739:/ -1099.3 "Analysis" sync / 1[56]:[^:]*:Mustadio:3735:/ -1100.8 "Ballistic Impact" sync / 1[56]:[^:]*:Mustadio:3745:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B35" } window 1000,0 +1012.0 "Energy Burst" Ability { id: "373B", source: "Mustadio" } +1022.7 "Arm Shot" Ability { id: "3739", source: "Mustadio" } +1033.2 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1042.5 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1058.6 "Maintenance" Ability { id: "3734", source: "Mustadio" } +1065.1 "Compress" Ability { id: "3740", source: "Iron Construct" } +1066.2 "Searchlight" Ability { id: "373D", source: "Mustadio" } +1078.9 "Energy Burst" Ability { id: "373B", source: "Mustadio" } +1085.6 "Arm Shot" Ability { id: "3739", source: "Mustadio" } +1099.3 "Analysis" Ability { id: "3735", source: "Mustadio" } +1100.8 "Ballistic Impact" Ability { id: "3745", source: "Mustadio" } 1099.5 "--untargetable--" ### DRAMATIC CUTSCENE~! -1105.0 "--sync--" sync / 1[56]:[^:]*:Mustadio:3746:/ window 100,100 -1117.8 "--sync--" sync / 1[56]:[^:]*:Mustadio:376C:/ -1123.8 "Last Testament" sync / 1[56]:[^:]*:Mustadio:3737:/ +1105.0 "--sync--" Ability { id: "3746", source: "Mustadio" } window 100,100 +1117.8 "--sync--" Ability { id: "376C", source: "Mustadio" } +1123.8 "Last Testament" Ability { id: "3737", source: "Mustadio" } 1131.5 "--targetable--" -1141.4 "Leg Shot" sync / 1[56]:[^:]*:Mustadio:3738:/ duration 20 -1151.1 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1161.7 "Energy Burst" sync / 1[56]:[^:]*:Mustadio:373B:/ -1178.0 "Maintenance" sync / 1[56]:[^:]*:Mustadio:3734:/ -1184.7 "Satellite Beam" sync / 1[56]:[^:]*:Early Turret:3741:/ -1190.7 "Ballistic Missile" sync / 1[56]:[^:]*:Mustadio:373C:/ -1197.6 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1198.7 "Ballistic Impact" sync / 1[56]:[^:]*:Mustadio:3743:/ -1204.0 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1213.4 "Arm Shot" sync / 1[56]:[^:]*:Mustadio:3739:/ -1230.3 "Maintenance" sync / 1[56]:[^:]*:Mustadio:3734:/ -1236.9 "Satellite Beam" sync / 1[56]:[^:]*:Early Turret:3741:/ -1236.9 "Compress" sync / 1[56]:[^:]*:Iron Construct:3740:/ -1241.1 "Ballistic Missile" sync / 1[56]:[^:]*:Mustadio:373C:/ -1249.0 "Ballistic Impact" sync / 1[56]:[^:]*:Mustadio:3743:/ -1256.4 "Maintenance" sync / 1[56]:[^:]*:Mustadio:3734:/ -1263.0 "Satellite Beam" sync / 1[56]:[^:]*:Early Turret:3741:/ -1263.0 "Compress" sync / 1[56]:[^:]*:Iron Construct:3740:/ -1270.1 "Energy Burst" sync / 1[56]:[^:]*:Mustadio:373B:/ +1141.4 "Leg Shot" Ability { id: "3738", source: "Mustadio" } duration 20 +1151.1 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1161.7 "Energy Burst" Ability { id: "373B", source: "Mustadio" } +1178.0 "Maintenance" Ability { id: "3734", source: "Mustadio" } +1184.7 "Satellite Beam" Ability { id: "3741", source: "Early Turret" } +1190.7 "Ballistic Missile" Ability { id: "373C", source: "Mustadio" } +1197.6 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1198.7 "Ballistic Impact" Ability { id: "3743", source: "Mustadio" } +1204.0 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1213.4 "Arm Shot" Ability { id: "3739", source: "Mustadio" } +1230.3 "Maintenance" Ability { id: "3734", source: "Mustadio" } +1236.9 "Satellite Beam" Ability { id: "3741", source: "Early Turret" } +1236.9 "Compress" Ability { id: "3740", source: "Iron Construct" } +1241.1 "Ballistic Missile" Ability { id: "373C", source: "Mustadio" } +1249.0 "Ballistic Impact" Ability { id: "3743", source: "Mustadio" } +1256.4 "Maintenance" Ability { id: "3734", source: "Mustadio" } +1263.0 "Satellite Beam" Ability { id: "3741", source: "Early Turret" } +1263.0 "Compress" Ability { id: "3740", source: "Iron Construct" } +1270.1 "Energy Burst" Ability { id: "373B", source: "Mustadio" } ### Phase 3 Loop -1281.0 "Searchlight" sync / 1[56]:[^:]*:Mustadio:373D:/ -1287.9 "Analysis" sync / 1[56]:[^:]*:Mustadio:3735:/ +1281.0 "Searchlight" Ability { id: "373D", source: "Mustadio" } +1287.9 "Analysis" Ability { id: "3735", source: "Mustadio" } 1288.5 "--untargetable--" -1291.2 "--sync--" sync / 1[56]:[^:]*:Mustadio:3736:/ -1295.3 "--sync--" sync / 1[56]:[^:]*:Mustadio:376C:/ -1301.3 "Last Testament" sync / 1[56]:[^:]*:Mustadio:3737:/ window 100,100 +1291.2 "--sync--" Ability { id: "3736", source: "Mustadio" } +1295.3 "--sync--" Ability { id: "376C", source: "Mustadio" } +1301.3 "Last Testament" Ability { id: "3737", source: "Mustadio" } window 100,100 1308.8 "--targetable--" -1315.0 "Energy Burst" sync / 1[56]:[^:]*:Mustadio:373B:/ -1327.9 "Leg Shot" sync / 1[56]:[^:]*:Mustadio:3738:/ duration 20 -1337.5 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1344.1 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1354.7 "Energy Burst" sync / 1[56]:[^:]*:Mustadio:373B:/ -1361.5 "Arm Shot" sync / 1[56]:[^:]*:Mustadio:3739:/ -1378.7 "Maintenance" sync / 1[56]:[^:]*:Mustadio:3734:/ -1385.2 "Satellite Beam" sync / 1[56]:[^:]*:Early Turret:3741:/ -1385.2 "Compress" sync / 1[56]:[^:]*:Iron Construct:3740:/ -1389.3 "Ballistic Missile" sync / 1[56]:[^:]*:Mustadio:373C:/ -1397.1 "Ballistic Impact" sync / 1[56]:[^:]*:Mustadio:3743:/ -1403.8 "Maintenance" sync / 1[56]:[^:]*:Mustadio:3734:/ -1410.4 "Satellite Beam" sync / 1[56]:[^:]*:Early Turret:3741:/ -1410.4 "Compress" sync / 1[56]:[^:]*:Iron Construct:3740:/ -1417.5 "Energy Burst" sync / 1[56]:[^:]*:Mustadio:373B:/ -1428.4 "Arm Shot" sync / 1[56]:[^:]*:Mustadio:3739:/ -1438.1 "Ballistic Missile" sync / 1[56]:[^:]*:Mustadio:373C:/ -1445.0 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1446.0 "Ballistic Impact" sync / 1[56]:[^:]*:Mustadio:3743:/ -1451.5 "L/R Handgonne" sync / 1[56]:[^:]*:Mustadio:373[EF]:/ -1462.1 "Energy Burst" sync / 1[56]:[^:]*:Mustadio:373B:/ +1315.0 "Energy Burst" Ability { id: "373B", source: "Mustadio" } +1327.9 "Leg Shot" Ability { id: "3738", source: "Mustadio" } duration 20 +1337.5 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1344.1 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1354.7 "Energy Burst" Ability { id: "373B", source: "Mustadio" } +1361.5 "Arm Shot" Ability { id: "3739", source: "Mustadio" } +1378.7 "Maintenance" Ability { id: "3734", source: "Mustadio" } +1385.2 "Satellite Beam" Ability { id: "3741", source: "Early Turret" } +1385.2 "Compress" Ability { id: "3740", source: "Iron Construct" } +1389.3 "Ballistic Missile" Ability { id: "373C", source: "Mustadio" } +1397.1 "Ballistic Impact" Ability { id: "3743", source: "Mustadio" } +1403.8 "Maintenance" Ability { id: "3734", source: "Mustadio" } +1410.4 "Satellite Beam" Ability { id: "3741", source: "Early Turret" } +1410.4 "Compress" Ability { id: "3740", source: "Iron Construct" } +1417.5 "Energy Burst" Ability { id: "373B", source: "Mustadio" } +1428.4 "Arm Shot" Ability { id: "3739", source: "Mustadio" } +1438.1 "Ballistic Missile" Ability { id: "373C", source: "Mustadio" } +1445.0 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1446.0 "Ballistic Impact" Ability { id: "3743", source: "Mustadio" } +1451.5 "L/R Handgonne" Ability { id: "373[EF]", source: "Mustadio" } +1462.1 "Energy Burst" Ability { id: "373B", source: "Mustadio" } # fake loop -1465.0 "Searchlight" sync / 1[56]:[^:]*:Mustadio:373D:/ jump 1281 window 100,100 +1465.0 "Searchlight" Ability { id: "373D", source: "Mustadio" } jump 1281 window 100,100 1471.9 "Analysis" 1475.2 "--sync--" 1479.3 "--sync--" @@ -94,58 +94,58 @@ hideall "--sync--" ### Phase 1 # Realm of the Templars will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B36:/ window 2000,0 -2012.8 "Divine Light" sync / 1[56]:[^:]*:Agrias:3867:/ -2023.3 "Thunder Slash" sync / 1[56]:[^:]*:Agrias:3866:/ -2043.5 "Judgment Blade" sync / 1[56]:[^:]*:Agrias:3857:/ -2054.9 "Divine Light" sync / 1[56]:[^:]*:Agrias:3867:/ -2065.4 "Thunder Slash" sync / 1[56]:[^:]*:Agrias:3866:/ -2076.4 "Cleansing Flame" sync / 1[56]:[^:]*:Agrias:3864:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B36" } window 2000,0 +2012.8 "Divine Light" Ability { id: "3867", source: "Agrias" } +2023.3 "Thunder Slash" Ability { id: "3866", source: "Agrias" } +2043.5 "Judgment Blade" Ability { id: "3857", source: "Agrias" } +2054.9 "Divine Light" Ability { id: "3867", source: "Agrias" } +2065.4 "Thunder Slash" Ability { id: "3866", source: "Agrias" } +2076.4 "Cleansing Flame" Ability { id: "3864", source: "Agrias" } 2085.0 "--ghost stun--" -2091.0 "Cleansing Strike" sync / 1[56]:[^:]*:Agrias:3854:/ -2106.2 "Consecration" sync / 1[56]:[^:]*:Agrias:3850:/ +2091.0 "Cleansing Strike" Ability { id: "3854", source: "Agrias" } +2106.2 "Consecration" Ability { id: "3850", source: "Agrias" } 2106.2 "--crystal stun--" -2123.9 "Northswain's Strike" sync / 1[56]:[^:]*:Agrias:3A86:/ -2131.1 "Divine Light" sync / 1[56]:[^:]*:Agrias:3867:/ -2136.6 "Thunder Slash" sync / 1[56]:[^:]*:Agrias:3866:/ -2147.6 "Hallowed Bolt Marks" sync / 1[56]:[^:]*:Agrias:385A:/ -2151.6 "Hallowed Bolt In/Out" sync / 1[56]:[^:]*:Agrias:385[BC]:/ -2156.1 "Hallowed Bolt Out/In" sync / 1[56]:[^:]*:Agrias:385[BC]:/ -2166.8 "Cleansing Flame" sync / 1[56]:[^:]*:Agrias:3864:/ window 50,50 # extra sync for folks inside -2183.4 "Judgment Blade" sync / 1[56]:[^:]*:Agrias:3857:/ -2189.8 "Divine Light" sync / 1[56]:[^:]*:Agrias:3867:/ +2123.9 "Northswain's Strike" Ability { id: "3A86", source: "Agrias" } +2131.1 "Divine Light" Ability { id: "3867", source: "Agrias" } +2136.6 "Thunder Slash" Ability { id: "3866", source: "Agrias" } +2147.6 "Hallowed Bolt Marks" Ability { id: "385A", source: "Agrias" } +2151.6 "Hallowed Bolt In/Out" Ability { id: "385[BC]", source: "Agrias" } +2156.1 "Hallowed Bolt Out/In" Ability { id: "385[BC]", source: "Agrias" } +2166.8 "Cleansing Flame" Ability { id: "3864", source: "Agrias" } window 50,50 # extra sync for folks inside +2183.4 "Judgment Blade" Ability { id: "3857", source: "Agrias" } +2189.8 "Divine Light" Ability { id: "3867", source: "Agrias" } ### Adds Phase -2196.6 "--sync--" sync / 1[56]:[^:]*:Agrias:385D:/ -2222.3 "Mortal Blow" sync / 1[56]:[^:]*:Sword Knight:385E:/ +2196.6 "--sync--" Ability { id: "385D", source: "Agrias" } +2222.3 "Mortal Blow" Ability { id: "385E", source: "Sword Knight" } 2262.6 "Enrage" -2500.0 "--sync--" sync / 14:[^:]*:Agrias:3861:/ window 500,0 -2508.0 "Heavenly Judgment" sync / 1[56]:[^:]*:Agrias:3861:/ window 10,10 +2500.0 "--sync--" StartsUsing { id: "3861", source: "Agrias" } window 500,0 +2508.0 "Heavenly Judgment" Ability { id: "3861", source: "Agrias" } window 10,10 ### Phase 3 Loop -2524.4 "Divine Ruination" sync / 1[56]:[^:]*:Agrias:3858:/ -2535.6 "Divine Light" sync / 1[56]:[^:]*:Agrias:3867:/ -2546.1 "Thunder Slash" sync / 1[56]:[^:]*:Agrias:3866:/ -2558.1 "Cleansing Flame" sync / 1[56]:[^:]*:Agrias:3864:/ +2524.4 "Divine Ruination" Ability { id: "3858", source: "Agrias" } +2535.6 "Divine Light" Ability { id: "3867", source: "Agrias" } +2546.1 "Thunder Slash" Ability { id: "3866", source: "Agrias" } +2558.1 "Cleansing Flame" Ability { id: "3864", source: "Agrias" } 2567.6 "--ghost stun--" -2573.6 "Cleansing Strike" sync / 1[56]:[^:]*:Agrias:3854:/ -2581.8 "Consecration" sync / 1[56]:[^:]*:Agrias:3850:/ +2573.6 "Cleansing Strike" Ability { id: "3854", source: "Agrias" } +2581.8 "Consecration" Ability { id: "3850", source: "Agrias" } 2581.8 "--crystal stun--" -2599.5 "Northswain's Strike" sync / 1[56]:[^:]*:Agrias:3A86:/ -2606.7 "Divine Light" sync / 1[56]:[^:]*:Agrias:3867:/ -2617.2 "Hallowed Bolt Marks" sync / 1[56]:[^:]*:Agrias:385A:/ -2621.2 "Hallowed Bolt In/Out" sync / 1[56]:[^:]*:Agrias:385[BC]:/ -2624.4 "Cleansing Flame" sync / 1[56]:[^:]*:Agrias:3864:/ -2625.7 "Hallowed Bolt Out/In" sync / 1[56]:[^:]*:Agrias:385[BC]:/ +2599.5 "Northswain's Strike" Ability { id: "3A86", source: "Agrias" } +2606.7 "Divine Light" Ability { id: "3867", source: "Agrias" } +2617.2 "Hallowed Bolt Marks" Ability { id: "385A", source: "Agrias" } +2621.2 "Hallowed Bolt In/Out" Ability { id: "385[BC]", source: "Agrias" } +2624.4 "Cleansing Flame" Ability { id: "3864", source: "Agrias" } +2625.7 "Hallowed Bolt Out/In" Ability { id: "385[BC]", source: "Agrias" } # Ask me how I know that this can desync if everybody who is alive has # been vacuumed up to deal with ghosts and Agrias is left by her lonesome. -2636.6 "Thunder Slash" sync / 1[56]:[^:]*:Agrias:3866:/ window 40,40 -2647.6 "Divine Light" sync / 1[56]:[^:]*:Agrias:3867:/ window 30,5 -2653.1 "Divine Light" sync / 1[56]:[^:]*:Agrias:3867:/ -2667.7 "Judgment Blade" sync / 1[56]:[^:]*:Agrias:3857:/ window 50,50 +2636.6 "Thunder Slash" Ability { id: "3866", source: "Agrias" } window 40,40 +2647.6 "Divine Light" Ability { id: "3867", source: "Agrias" } window 30,5 +2653.1 "Divine Light" Ability { id: "3867", source: "Agrias" } +2667.7 "Judgment Blade" Ability { id: "3857", source: "Agrias" } window 50,50 # fake loop lookahead -2689.6 "Divine Ruination" sync / 1[56]:[^:]*:Agrias:3858:/ window 30,30 jump 2524.4 +2689.6 "Divine Ruination" Ability { id: "3858", source: "Agrias" } window 30,30 jump 2524.4 2700.8 "Divine Light" 2711.3 "Thunder Slash" 2723.3 "Cleansing Flame" @@ -155,24 +155,24 @@ hideall "--sync--" ####################### # -p 377F:3500 -ii 3780 # Lifeless Alley will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B37:/ window 3000,0 -3491.0 "--sync--" sync / 14:[^:]*:Dark Crusader:377F:/ window 500,0 -3500.0 "Dark Rite" sync / 1[56]:[^:]*:Dark Crusader:377F:/ -3509.0 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ -3520.0 "Infernal Wave" #sync / 1[56]:[^:]*:Dark Crusader:3781:/ -3523.5 "Infernal Wave" #sync / 1[56]:[^:]*:Dark Crusader:3781:/ -3528.0 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ -3537.0 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ -3544.0 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ - -3566.0 "Dark Rite" sync / 1[56]:[^:]*:Dark Crusader:377F:/ -3575.0 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ -3584.0 "Infernal Wave" #sync / 1[56]:[^:]*:Dark Crusader:3781:/ -3588.5 "Infernal Wave" #sync / 1[56]:[^:]*:Dark Crusader:3781:/ -3594.0 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ -3603.0 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ -3610.5 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ -3625.5 "Noahionto" sync / 1[56]:[^:]*:Dark Crusader:377E:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B37" } window 3000,0 +3491.0 "--sync--" StartsUsing { id: "377F", source: "Dark Crusader" } window 500,0 +3500.0 "Dark Rite" Ability { id: "377F", source: "Dark Crusader" } +3509.0 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } +3520.0 "Infernal Wave" #Ability { id: "3781", source: "Dark Crusader" } +3523.5 "Infernal Wave" #Ability { id: "3781", source: "Dark Crusader" } +3528.0 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } +3537.0 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } +3544.0 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } + +3566.0 "Dark Rite" Ability { id: "377F", source: "Dark Crusader" } +3575.0 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } +3584.0 "Infernal Wave" #Ability { id: "3781", source: "Dark Crusader" } +3588.5 "Infernal Wave" #Ability { id: "3781", source: "Dark Crusader" } +3594.0 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } +3603.0 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } +3610.5 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } +3625.5 "Noahionto" Ability { id: "377E", source: "Dark Crusader" } # FIXME: not sure what happens after this? # This isn't really a loop as there's 4x Noahionto in round 2. @@ -184,52 +184,52 @@ hideall "--sync--" ### Phase 1 # Realm of the Thunder God will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B38:/ window 4000,0 -4015.0 "Cleansing Strike" sync / 1[56]:[^:]*:The Thunder God:3751:/ -4032.5 "Sword L/R" sync / 1[56]:[^:]*:The Thunder God:374[9A]:/ -4042.5 "Sword In/Out" sync / 1[56]:[^:]*:The Thunder God:37(50|4F):/ -4057.0 "Shadowblade" sync / 1[56]:[^:]*:The Thunder God:375D:/ +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B38" } window 4000,0 +4015.0 "Cleansing Strike" Ability { id: "3751", source: "The Thunder God" } +4032.5 "Sword L/R" Ability { id: "374[9A]", source: "The Thunder God" } +4042.5 "Sword In/Out" Ability { id: "37(50|4F)", source: "The Thunder God" } +4057.0 "Shadowblade" Ability { id: "375D", source: "The Thunder God" } 4062.6 "Crush Helm" duration 7 -4069.6 "--sync--" sync / 1[56]:[^:]*:The Thunder God:3754:/ -4080.1 "Sword L/R" sync / 1[56]:[^:]*:The Thunder God:374[9A]:/ -4090.1 "Sword Out/In" sync / 1[56]:[^:]*:The Thunder God:37(50|4F):/ -4110.2 "Duskblade" sync / 1[56]:[^:]*:The Thunder God:3761:/ # drift -0.045 -4123.2 "Crush Weapon" sync / 1[56]:[^:]*:The Thunder God:3755:/ # drift 0.046 +4069.6 "--sync--" Ability { id: "3754", source: "The Thunder God" } +4080.1 "Sword L/R" Ability { id: "374[9A]", source: "The Thunder God" } +4090.1 "Sword Out/In" Ability { id: "37(50|4F)", source: "The Thunder God" } +4110.2 "Duskblade" Ability { id: "3761", source: "The Thunder God" } # drift -0.045 +4123.2 "Crush Weapon" Ability { id: "3755", source: "The Thunder God" } # drift 0.046 ### Adds Phase 4136.0 "--untargetable--" -4136.0 "Colosseum" sync / 1[56]:[^:]*:The Thunder God:3762:/ +4136.0 "Colosseum" Ability { id: "3762", source: "The Thunder God" } 4143.4 "--targetable--" -4163.0 "Hallowed Bolt" sync / 1[56]:[^:]*:Ephemeral Knight:3765:/ -4173.0 "Stack" sync / 1[56]:[^:]*:Ephemeral Knight:3768:/ -4191.0 "Hallowed Bolt" sync / 1[56]:[^:]*:Ephemeral Knight:3765:/ -4201.0 "Divine Ruination" sync / 1[56]:[^:]*:Ephemeral Knight:3763:/ -4219.0 "Hallowed Bolt" sync / 1[56]:[^:]*:Ephemeral Knight:3765:/ +4163.0 "Hallowed Bolt" Ability { id: "3765", source: "Ephemeral Knight" } +4173.0 "Stack" Ability { id: "3768", source: "Ephemeral Knight" } +4191.0 "Hallowed Bolt" Ability { id: "3765", source: "Ephemeral Knight" } +4201.0 "Divine Ruination" Ability { id: "3763", source: "Ephemeral Knight" } +4219.0 "Hallowed Bolt" Ability { id: "3765", source: "Ephemeral Knight" } 4239.0 "Enrage" -4400.0 "--sync--" sync / 1[56]:[^:]*:The Thunder God:36EB:/ window 400,0 -4401.0 "--sync--" sync / 1[56]:[^:]*:The Thunder God:3824:/ window 400,5 -4403.0 "Balance Asunder" sync / 1[56]:[^:]*:The Thunder God:376A:/ +4400.0 "--sync--" Ability { id: "36EB", source: "The Thunder God" } window 400,0 +4401.0 "--sync--" Ability { id: "3824", source: "The Thunder God" } window 400,5 +4403.0 "Balance Asunder" Ability { id: "376A", source: "The Thunder God" } 4420.0 "--targetable--" ### Phase 3 Loop -4438.5 "Sword L/R" sync / 1[56]:[^:]*:The Thunder God:374[9A]:/ -4448.5 "Sword In/Out" sync / 1[56]:[^:]*:The Thunder God:37(50|4F):/ -4462.5 "Crush Weapon" sync / 1[56]:[^:]*:The Thunder God:3755:/ +4438.5 "Sword L/R" Ability { id: "374[9A]", source: "The Thunder God" } +4448.5 "Sword In/Out" Ability { id: "37(50|4F)", source: "The Thunder God" } +4462.5 "Crush Weapon" Ability { id: "3755", source: "The Thunder God" } 4465.6 "Crush Helm" duration 7 -4472.6 "--sync--" sync / 1[56]:[^:]*:The Thunder God:3754:/ -4483.1 "Sword Out/In" sync / 1[56]:[^:]*:The Thunder God:37(50|4F):/ -4495.2 "Sword Three In A Row" sync / 1[56]:[^:]*:The Thunder God:374[CD]:/ -4509.7 "Cleansing Strike" sync / 1[56]:[^:]*:The Thunder God:3751:/ -4526.2 "Crush Armor" sync / 1[56]:[^:]*:The Thunder God:3758:/ -4560.8 "Shadowblade" sync / 1[56]:[^:]*:The Thunder God:375D:/ +4472.6 "--sync--" Ability { id: "3754", source: "The Thunder God" } +4483.1 "Sword Out/In" Ability { id: "37(50|4F)", source: "The Thunder God" } +4495.2 "Sword Three In A Row" Ability { id: "374[CD]", source: "The Thunder God" } +4509.7 "Cleansing Strike" Ability { id: "3751", source: "The Thunder God" } +4526.2 "Crush Armor" Ability { id: "3758", source: "The Thunder God" } +4560.8 "Shadowblade" Ability { id: "375D", source: "The Thunder God" } 4566.4 "Crush Helm" duration 7 -4573.4 "--sync--" sync / 1[56]:[^:]*:The Thunder God:3754:/ -4587.9 "Duskblade" sync / 1[56]:[^:]*:The Thunder God:3761:/ -4601.4 "Crush Accessory" sync / 1[56]:[^:]*:The Thunder God:375A:/ +4573.4 "--sync--" Ability { id: "3754", source: "The Thunder God" } +4587.9 "Duskblade" Ability { id: "3761", source: "The Thunder God" } +4601.4 "Crush Accessory" Ability { id: "375A", source: "The Thunder God" } # fake loop -4641.2 "Sword L/R" sync / 1[56]:[^:]*:The Thunder God:374[9A]:/ jump 4438.5 +4641.2 "Sword L/R" Ability { id: "374[9A]", source: "The Thunder God" } jump 4438.5 4651.2 "Sword In/Out" 4665.2 "Crush Weapon" 4668.3 "Crush Helm" @@ -241,58 +241,58 @@ hideall "--sync--" ### Phase 1: Throwbacks # Crystalline Gaol will be sealed off -5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B39:/ window 5000,0 -5015.0 "Holy IV Ground" sync / 1[56]:[^:]*:Ultima, the High Seraph:3899:/ -5029.2 "Auralight" sync / 1[56]:[^:]*:Ultima, the High Seraph:3898:/ -5035.7 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ -5045.4 "Grand Cross" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AC:/ duration 15.5 - -5071.8 "Demi-Aquarius" sync / 1[56]:[^:]*:Ultima, the High Seraph:38BF:/ -5080.3 "Dark Ewer" sync / 1[56]:[^:]*:Demi-Famfrit:38CA:/ -5083.5 "Materialize" sync / 1[56]:[^:]*:Aspersory:38CB:/ -5089.1 "Auralight" sync / 1[56]:[^:]*:Ultima, the High Seraph:3898:/ -5095.5 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ - -5102.2 "Demi-Aries" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C0:/ -5116.7 "Time Eruption" sync / 1[56]:[^:]*:Demi-Belias:38D0:/ -5119.5 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ -5119.7 "Time Eruption" sync / 1[56]:[^:]*:Demi-Belias:38D1:/ - -5127.7 "Demi-Leo" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C1:/ -5136.1 "Control Tower" sync / 1[56]:[^:]*:Demi-Hashmal:38D4:/ -5137.1 "Control Tower" sync / 1[56]:[^:]*:Demi-Hashmal:38D5:/ -5139.2 "Sanction" sync / 1[56]:[^:]*:Demi-Hashmal:38D6:/ -5144.9 "Holy IV Ground" sync / 1[56]:[^:]*:Ultima, the High Seraph:3899:/ -5146.7 "Towerfall" sync / 1[56]:[^:]*:Demi-Hashmal:38D7:/ -5147.5 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ - -5160.3 "Grand Cross" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AC:/ duration 15.5 -5189.6 "Auralight" sync / 1[56]:[^:]*:Ultima, the High Seraph:3898:/ -5196.1 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ -5207.8 "Flare IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389C:/ -5208.3 "Flare IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389D:/ +5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B39" } window 5000,0 +5015.0 "Holy IV Ground" Ability { id: "3899", source: "Ultima, the High Seraph" } +5029.2 "Auralight" Ability { id: "3898", source: "Ultima, the High Seraph" } +5035.7 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } +5045.4 "Grand Cross" Ability { id: "38AC", source: "Ultima, the High Seraph" } duration 15.5 + +5071.8 "Demi-Aquarius" Ability { id: "38BF", source: "Ultima, the High Seraph" } +5080.3 "Dark Ewer" Ability { id: "38CA", source: "Demi-Famfrit" } +5083.5 "Materialize" Ability { id: "38CB", source: "Aspersory" } +5089.1 "Auralight" Ability { id: "3898", source: "Ultima, the High Seraph" } +5095.5 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } + +5102.2 "Demi-Aries" Ability { id: "38C0", source: "Ultima, the High Seraph" } +5116.7 "Time Eruption" Ability { id: "38D0", source: "Demi-Belias" } +5119.5 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } +5119.7 "Time Eruption" Ability { id: "38D1", source: "Demi-Belias" } + +5127.7 "Demi-Leo" Ability { id: "38C1", source: "Ultima, the High Seraph" } +5136.1 "Control Tower" Ability { id: "38D4", source: "Demi-Hashmal" } +5137.1 "Control Tower" Ability { id: "38D5", source: "Demi-Hashmal" } +5139.2 "Sanction" Ability { id: "38D6", source: "Demi-Hashmal" } +5144.9 "Holy IV Ground" Ability { id: "3899", source: "Ultima, the High Seraph" } +5146.7 "Towerfall" Ability { id: "38D7", source: "Demi-Hashmal" } +5147.5 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } + +5160.3 "Grand Cross" Ability { id: "38AC", source: "Ultima, the High Seraph" } duration 15.5 +5189.6 "Auralight" Ability { id: "3898", source: "Ultima, the High Seraph" } +5196.1 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } +5207.8 "Flare IV" Ability { id: "389C", source: "Ultima, the High Seraph" } +5208.3 "Flare IV" Ability { id: "389D", source: "Ultima, the High Seraph" } ### Phase 2: 50% Push Remix "Death awaits defiance!" -5400.0 "--sync--" sync / 03:........:Mustadio:/ window 400,0 -5413.0 "Earth Hammer" sync / 1[56]:[^:]*:Demi-Hashmal:38D8:/ window 400,5 -5415.9 "Time Eruption" sync / 1[56]:[^:]*:Demi-Belias:38D0:/ -5418.9 "Time Eruption" sync / 1[56]:[^:]*:Demi-Belias:38D1:/ -5421.3 "Dark Ewer" sync / 1[56]:[^:]*:Demi-Famfrit:38CA:/ -5422.6 "Dark Cannonade" sync / 1[56]:[^:]*:Demi-Famfrit:38CE:/ -5424.3 "Materialize" sync / 1[56]:[^:]*:Aspersory:38CB:/ -5424.4 "Hammerfall" sync / 1[56]:[^:]*:Demi-Hashmal:38D9:/ -5430.4 "Eruption" sync / 1[56]:[^:]*:Demi-Belias:3C77:/ -5433.6 "Extreme Edge" sync / 1[56]:[^:]*:Demi-Hashmal:38DA:/ - -#5446.5 "Crush Weapon" sync / 1[56]:[^:]*:The Thunder God:38B3:/ -#5449.6 "Hallowed Bolt" sync / 1[56]:[^:]*:Agrias:38B2:/ -#5452.6 "Searchlight" sync / 1[56]:[^:]*:Mustadio:38B1:/ -5482.0 "Ultimate Illusion" sync / 1[56]:[^:]*:Ultima, the High Seraph:3895:/ +5400.0 "--sync--" AddedCombatant { name: "Mustadio" } window 400,0 +5413.0 "Earth Hammer" Ability { id: "38D8", source: "Demi-Hashmal" } window 400,5 +5415.9 "Time Eruption" Ability { id: "38D0", source: "Demi-Belias" } +5418.9 "Time Eruption" Ability { id: "38D1", source: "Demi-Belias" } +5421.3 "Dark Ewer" Ability { id: "38CA", source: "Demi-Famfrit" } +5422.6 "Dark Cannonade" Ability { id: "38CE", source: "Demi-Famfrit" } +5424.3 "Materialize" Ability { id: "38CB", source: "Aspersory" } +5424.4 "Hammerfall" Ability { id: "38D9", source: "Demi-Hashmal" } +5430.4 "Eruption" Ability { id: "3C77", source: "Demi-Belias" } +5433.6 "Extreme Edge" Ability { id: "38DA", source: "Demi-Hashmal" } + +#5446.5 "Crush Weapon" Ability { id: "38B3", source: "The Thunder God" } +#5449.6 "Hallowed Bolt" Ability { id: "38B2", source: "Agrias" } +#5452.6 "Searchlight" Ability { id: "38B1", source: "Mustadio" } +5482.0 "Ultimate Illusion" Ability { id: "3895", source: "Ultima, the High Seraph" } 5505.5 "--targetable--" 5523.0 "Enrage" -5963.4 "--sync--" sync / 1[56]:[^:]*:Mustadio:3A79:/ window 1000,0 -5971.0 "--sync--" sync / 1[56]:[^:]*:Ramza:38B5:/ window 1000,5 +5963.4 "--sync--" Ability { id: "3A79", source: "Mustadio" } window 1000,0 +5971.0 "--sync--" Ability { id: "38B5", source: "Ramza" } window 1000,5 # 5991.0 "Few can claim to have endured the might of my will." 5995.6 "--targetable--" @@ -301,72 +301,72 @@ hideall "--sync--" ################# ### Phase 1: March -6004.0 "--sync--" sync / 14:[^:]*:Ultima, the High Seraph:38C2:/ window 1000,0 -6007.0 "Demi-Virgo Line" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ -6016.0 "East/West March" sync / 1[56]:[^:]*:Ultima, the High Seraph:38A[01]:/ -6018.0 "Ray of Light" sync / 1[56]:[^:]*:Dominion:38B7:/ -6026.4 "Redemption" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AA:/ -6035.5 "Grand Cross" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C8:/ duration 15.5 -6043.4 "East/West March" sync / 1[56]:[^:]*:Ultima, the High Seraph:38A[01]:/ - -6062.0 "Demi-Virgo Feet" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ -6073.2 "Redemption" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AA:/ - -6082.4 "Demi-Virgo Tether" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ -6087.5 "Embrace" sync / 1[56]:[^:]*:Dominion:38B8:/ -6098.6 "Holy IV Ground" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C6:/ -6101.1 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ +6004.0 "--sync--" StartsUsing { id: "38C2", source: "Ultima, the High Seraph" } window 1000,0 +6007.0 "Demi-Virgo Line" Ability { id: "38C2", source: "Ultima, the High Seraph" } +6016.0 "East/West March" Ability { id: "38A[01]", source: "Ultima, the High Seraph" } +6018.0 "Ray of Light" Ability { id: "38B7", source: "Dominion" } +6026.4 "Redemption" Ability { id: "38AA", source: "Ultima, the High Seraph" } +6035.5 "Grand Cross" Ability { id: "38C8", source: "Ultima, the High Seraph" } duration 15.5 +6043.4 "East/West March" Ability { id: "38A[01]", source: "Ultima, the High Seraph" } + +6062.0 "Demi-Virgo Feet" Ability { id: "38C2", source: "Ultima, the High Seraph" } +6073.2 "Redemption" Ability { id: "38AA", source: "Ultima, the High Seraph" } + +6082.4 "Demi-Virgo Tether" Ability { id: "38C2", source: "Ultima, the High Seraph" } +6087.5 "Embrace" Ability { id: "38B8", source: "Dominion" } +6098.6 "Holy IV Ground" Ability { id: "38C6", source: "Ultima, the High Seraph" } +6101.1 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } ### Phase 2: Maze Loop -6124.9 "Cataclysm" sync / 1[56]:[^:]*:Ultima, the High Seraph:38A4:/ -6126.8 "Shockwave" sync / 1[56]:[^:]*:Ultima, the High Seraph:3894:/ -6143.4 "East/West March" sync / 1[56]:[^:]*:Ultima, the High Seraph:38A[01]:/ -6157.8 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ -6170.8 "Flare IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389D:/ - -6186.6 "Demi-Virgo Feet" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ -6205.7 "Grand Cross" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C8:/ duration 15.5 -6213.5 "East/West March" sync / 1[56]:[^:]*:Ultima, the High Seraph:38A[01]:/ -6228.2 "Redemption" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AA:/ -6229.7 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ - -6241.3 "Demi-Virgo Tether" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ -6246.5 "Embrace" sync / 1[56]:[^:]*:Dominion:38B8:/ - -6253.6 "Demi-Virgo Line" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ -6262.5 "East/West March" sync / 1[56]:[^:]*:Ultima, the High Seraph:38A[01]:/ -6264.7 "Ray of Light" sync / 1[56]:[^:]*:Dominion:38B7:/ -6271.1 "Redemption" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AA:/ -6272.5 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ - -6280.3 "Demi-Virgo Feet" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ -6290.0 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ -6299.5 "Grand Cross" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C8:/ duration 15.5 -6307.3 "East/West March" sync / 1[56]:[^:]*:Ultima, the High Seraph:38A[01]:/ +6124.9 "Cataclysm" Ability { id: "38A4", source: "Ultima, the High Seraph" } +6126.8 "Shockwave" Ability { id: "3894", source: "Ultima, the High Seraph" } +6143.4 "East/West March" Ability { id: "38A[01]", source: "Ultima, the High Seraph" } +6157.8 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } +6170.8 "Flare IV" Ability { id: "389D", source: "Ultima, the High Seraph" } + +6186.6 "Demi-Virgo Feet" Ability { id: "38C2", source: "Ultima, the High Seraph" } +6205.7 "Grand Cross" Ability { id: "38C8", source: "Ultima, the High Seraph" } duration 15.5 +6213.5 "East/West March" Ability { id: "38A[01]", source: "Ultima, the High Seraph" } +6228.2 "Redemption" Ability { id: "38AA", source: "Ultima, the High Seraph" } +6229.7 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } + +6241.3 "Demi-Virgo Tether" Ability { id: "38C2", source: "Ultima, the High Seraph" } +6246.5 "Embrace" Ability { id: "38B8", source: "Dominion" } + +6253.6 "Demi-Virgo Line" Ability { id: "38C2", source: "Ultima, the High Seraph" } +6262.5 "East/West March" Ability { id: "38A[01]", source: "Ultima, the High Seraph" } +6264.7 "Ray of Light" Ability { id: "38B7", source: "Dominion" } +6271.1 "Redemption" Ability { id: "38AA", source: "Ultima, the High Seraph" } +6272.5 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } + +6280.3 "Demi-Virgo Feet" Ability { id: "38C2", source: "Ultima, the High Seraph" } +6290.0 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } +6299.5 "Grand Cross" Ability { id: "38C8", source: "Ultima, the High Seraph" } duration 15.5 +6307.3 "East/West March" Ability { id: "38A[01]", source: "Ultima, the High Seraph" } # fake loop -6325.4 "Cataclysm" sync / 1[56]:[^:]*:Ultima, the High Seraph:38A4:/ window 200,100 jump 6124.9 +6325.4 "Cataclysm" Ability { id: "38A4", source: "Ultima, the High Seraph" } window 200,100 jump 6124.9 6327.3 "Shockwave" 6343.9 "East/West March" 6358.3 "Holy IV" 6371.3 "Flare IV" ### Phase 3: 15% off Demi-Virgo Combo Platter -6500.0 "--sync--" sync / 00:0044:[^:]*:I see it now/ window 500,0 +6500.0 "--sync--" GameLog { code: "0044", line: "I see it now.*?" } window 500,0 -6503.0 "Demi-Virgo Line/Tether" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ window 8,8 -6509.1 "Redemption" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AA:/ -6510.4 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ -6513.9 "Ray of Light" sync / 1[56]:[^:]*:Dominion:38B7:/ # drift -0.044 +6503.0 "Demi-Virgo Line/Tether" Ability { id: "38C2", source: "Ultima, the High Seraph" } window 8,8 +6509.1 "Redemption" Ability { id: "38AA", source: "Ultima, the High Seraph" } +6510.4 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } +6513.9 "Ray of Light" Ability { id: "38B7", source: "Dominion" } # drift -0.044 -6516.3 "Demi-Virgo Tether/Feet" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ window 8,8 -6518.8 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ -6524.6 "Redemption" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AA:/ -6526.1 "Holy IV" sync / 1[56]:[^:]*:Ultima, the High Seraph:389B:/ -6532.8 "Redemption" sync / 1[56]:[^:]*:Ultima, the High Seraph:38AA:/ +6516.3 "Demi-Virgo Tether/Feet" Ability { id: "38C2", source: "Ultima, the High Seraph" } window 8,8 +6518.8 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } +6524.6 "Redemption" Ability { id: "38AA", source: "Ultima, the High Seraph" } +6526.1 "Holy IV" Ability { id: "389B", source: "Ultima, the High Seraph" } +6532.8 "Redemption" Ability { id: "38AA", source: "Ultima, the High Seraph" } # fake loop -6540.0 "Demi-Virgo Line/Tether" sync / 1[56]:[^:]*:Ultima, the High Seraph:38C2:/ window 20,20 jump 6503 +6540.0 "Demi-Virgo Line/Tether" Ability { id: "38C2", source: "Ultima, the High Seraph" } window 20,20 jump 6503 6546.1 "Redemption" 6547.4 "Holy IV" 6550.9 "Ray of Light" diff --git a/ui/raidboss/data/04-sb/alliance/ridorana_lighthouse.txt b/ui/raidboss/data/04-sb/alliance/ridorana_lighthouse.txt index a45b4c6950..bdf607ceae 100644 --- a/ui/raidboss/data/04-sb/alliance/ridorana_lighthouse.txt +++ b/ui/raidboss/data/04-sb/alliance/ridorana_lighthouse.txt @@ -8,51 +8,51 @@ hideall "--sync--" # Famfrit # ########### # Echoes from Time's Garden will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:998:/ window 0,1 -13 "Tide Pod" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3E:/ window 13,1 -26 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -35 "Briny Cannonade" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C45:/ -47 "Tsunami" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C50:/ +0 "Start" SystemLogMessage { id: "7DC", param1: "998" } window 0,1 +13 "Tide Pod" Ability { id: "2C3E", source: "Famfrit, The Darkening Cloud" } window 13,1 +26 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +35 "Briny Cannonade" Ability { id: "2C45", source: "Famfrit, The Darkening Cloud" } +47 "Tsunami" Ability { id: "2C50", source: "Famfrit, The Darkening Cloud" } 54 "Tsunami" duration 3 66 "Tsunami" duration 3 78 "Tsunami" duration 3 -86 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -97 "Dark Ewer (cross)" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C43:/ -110 "Tide Pod" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3E:/ -118 "Briny Cannonade" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C41:/ -119 "Briny Cannonade" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C45:/ -124 "Dark Ewer (orbit)" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C43:/ -139 "Dark Rain" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C40:/ +86 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +97 "Dark Ewer (cross)" Ability { id: "2C43", source: "Famfrit, The Darkening Cloud" } +110 "Tide Pod" Ability { id: "2C3E", source: "Famfrit, The Darkening Cloud" } +118 "Briny Cannonade" Ability { id: "2C41", source: "Famfrit, The Darkening Cloud" } +119 "Briny Cannonade" Ability { id: "2C45", source: "Famfrit, The Darkening Cloud" } +124 "Dark Ewer (orbit)" Ability { id: "2C43", source: "Famfrit, The Darkening Cloud" } +139 "Dark Rain" Ability { id: "2C40", source: "Famfrit, The Darkening Cloud" } # Begin loop -151 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -164 "Darkening Rainfall" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3F:/ -169 "Darkening Deluge" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C56:/ -176 "Dark Cannonade" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C42:/ -200 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -208 "Tsunami" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C50:/ +151 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +164 "Darkening Rainfall" Ability { id: "2C3F", source: "Famfrit, The Darkening Cloud" } +169 "Darkening Deluge" Ability { id: "2C56", source: "Famfrit, The Darkening Cloud" } +176 "Dark Cannonade" Ability { id: "2C42", source: "Famfrit, The Darkening Cloud" } +200 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +208 "Tsunami" Ability { id: "2C50", source: "Famfrit, The Darkening Cloud" } 215 "Tsunami" duration 3 227 "Tsunami" duration 3 -228 "Briny Cannonade" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C45:/ +228 "Briny Cannonade" Ability { id: "2C45", source: "Famfrit, The Darkening Cloud" } 239 "Tsunami" duration 3 -247 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -259 "Tide Pod" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3E:/ -272 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -279 "Tide Pod" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3E:/ -291 "Dark Ewer (cross)" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C43:/ -302 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -311 "Briny Cannonade" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C45:/ -318 "Dark Ewer (orbit)" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C43:/ -324 "Tsunami" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C48:/ +247 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +259 "Tide Pod" Ability { id: "2C3E", source: "Famfrit, The Darkening Cloud" } +272 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +279 "Tide Pod" Ability { id: "2C3E", source: "Famfrit, The Darkening Cloud" } +291 "Dark Ewer (cross)" Ability { id: "2C43", source: "Famfrit, The Darkening Cloud" } +302 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +311 "Briny Cannonade" Ability { id: "2C45", source: "Famfrit, The Darkening Cloud" } +318 "Dark Ewer (orbit)" Ability { id: "2C43", source: "Famfrit, The Darkening Cloud" } +324 "Tsunami" Ability { id: "2C48", source: "Famfrit, The Darkening Cloud" } 331 "Tsunami" duration 3 343 "Tsunami" duration 3 355 "Tsunami" duration 3 -357 "Briny Cannonade" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C45:/ -364 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -371 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ -386 "Tide Pod" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3E:/ -397 "Tide Pod" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3E:/ -404 "Water IV" sync / 1[56]:[^:]*:Famfrit, The Darkening Cloud:2C3D:/ jump 151 +357 "Briny Cannonade" Ability { id: "2C45", source: "Famfrit, The Darkening Cloud" } +364 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +371 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } +386 "Tide Pod" Ability { id: "2C3E", source: "Famfrit, The Darkening Cloud" } +397 "Tide Pod" Ability { id: "2C3E", source: "Famfrit, The Darkening Cloud" } +404 "Water IV" Ability { id: "2C3D", source: "Famfrit, The Darkening Cloud" } jump 151 # End loop # Dummy loop future @@ -65,54 +65,54 @@ hideall "--sync--" ########## # The Spire's Bounds will be sealed off -1000 "Start" sync / 29:[^:]*:7DC:[^:]*:99A:/ window 1000,0 -1012 "Fire" sync / 1[56]:[^:]*:Belias, the Gigas:2CDB:/ window 1012,5 -1024 "Fire IV" sync / 1[56]:[^:]*:Belias, the Gigas:2CDC:/ -1033 "Time Eruption" sync / 1[56]:[^:]*:Belias, the Gigas:2CDE:/ -1038 "Fast Hands" sync / 1[56]:[^:]*:Belias, the Gigas:2CDF:/ -1041 "Slow Hands" sync / 1[56]:[^:]*:Belias, the Gigas:2CE0:/ +1000 "Start" SystemLogMessage { id: "7DC", param1: "99A" } window 1000,0 +1012 "Fire" Ability { id: "2CDB", source: "Belias, the Gigas" } window 1012,5 +1024 "Fire IV" Ability { id: "2CDC", source: "Belias, the Gigas" } +1033 "Time Eruption" Ability { id: "2CDE", source: "Belias, the Gigas" } +1038 "Fast Hands" Ability { id: "2CDF", source: "Belias, the Gigas" } +1041 "Slow Hands" Ability { id: "2CE0", source: "Belias, the Gigas" } 1041 "--untargetable--" -1048 "Crimson Cyclone" sync / 1[56]:[^:]*:Belias, the Gigas:2CE2:/ -1051 "Crimson Cyclone" sync / 1[56]:[^:]*:Belias, the Gigas:2D5F:/ +1048 "Crimson Cyclone" Ability { id: "2CE2", source: "Belias, the Gigas" } +1051 "Crimson Cyclone" Ability { id: "2D5F", source: "Belias, the Gigas" } 1054 "--targetable--" -1062 "Fire" sync / 1[56]:[^:]*:Belias, the Gigas:2CDB:/ -1070 "Fire IV" sync / 1[56]:[^:]*:Belias, the Gigas:2CDC:/ -1079 "The Hand Of Time" sync / 1[56]:[^:]*:Belias, the Gigas:2CE5:/ -1089 "Fire IV" sync / 1[56]:[^:]*:Belias, the Gigas:2CDC:/ +1062 "Fire" Ability { id: "2CDB", source: "Belias, the Gigas" } +1070 "Fire IV" Ability { id: "2CDC", source: "Belias, the Gigas" } +1079 "The Hand Of Time" Ability { id: "2CE5", source: "Belias, the Gigas" } +1089 "Fire IV" Ability { id: "2CDC", source: "Belias, the Gigas" } 1095 "Eruption" duration 4 -1100 "Fire" sync / 1[56]:[^:]*:Belias, the Gigas:2CDB:/ -1110 "Fire IV" sync / 1[56]:[^:]*:Belias, the Gigas:2CDC:/ +1100 "Fire" Ability { id: "2CDB", source: "Belias, the Gigas" } +1110 "Fire IV" Ability { id: "2CDC", source: "Belias, the Gigas" } 1118 "Gigas spawns" # Adds dead -1300 "Hellfire" sync / 1[56]:[^:]*:Belias, the Gigas:2CE8:/ window 5000,700 +1300 "Hellfire" Ability { id: "2CE8", source: "Belias, the Gigas" } window 5000,700 1313 "Time Bomb" duration 15 -1322 "Fire" sync / 1[56]:[^:]*:Belias, the Gigas:2CDB:/ +1322 "Fire" Ability { id: "2CDB", source: "Belias, the Gigas" } # Begin loop -1342 "The Hand Of Time" sync / 1[56]:[^:]*:Belias, the Gigas:2CE5:/ +1342 "The Hand Of Time" Ability { id: "2CE5", source: "Belias, the Gigas" } 1345 "--untargetable--" -1352 "Crimson Cyclone" sync / 1[56]:[^:]*:Belias, the Gigas:2CE2:/ -1355 "Crimson Cyclone" sync / 1[56]:[^:]*:Belias, the Gigas:2D5F:/ +1352 "Crimson Cyclone" Ability { id: "2CE2", source: "Belias, the Gigas" } +1355 "Crimson Cyclone" Ability { id: "2D5F", source: "Belias, the Gigas" } 1358 "--targetable--" -1365 "Fire IV" sync / 1[56]:[^:]*:Belias, the Gigas:2CDC:/ -1375 "Time Eruption" sync / 1[56]:[^:]*:Belias, the Gigas:2CDE:/ -1380 "Fast Hands" sync / 1[56]:[^:]*:Belias, the Gigas:2CDF:/ +1365 "Fire IV" Ability { id: "2CDC", source: "Belias, the Gigas" } +1375 "Time Eruption" Ability { id: "2CDE", source: "Belias, the Gigas" } +1380 "Fast Hands" Ability { id: "2CDF", source: "Belias, the Gigas" } 1380 "Time Bomb" duration 15 -1383 "Slow Hands" sync / 1[56]:[^:]*:Belias, the Gigas:2CE0:/ -1396 "Fire" sync / 1[56]:[^:]*:Belias, the Gigas:2CDB:/ -1411 "The Hand Of Time" sync / 1[56]:[^:]*:Belias, the Gigas:2CE5:/ -1421 "Fire IV" sync / 1[56]:[^:]*:Belias, the Gigas:2CDC:/ +1383 "Slow Hands" Ability { id: "2CE0", source: "Belias, the Gigas" } +1396 "Fire" Ability { id: "2CDB", source: "Belias, the Gigas" } +1411 "The Hand Of Time" Ability { id: "2CE5", source: "Belias, the Gigas" } +1421 "Fire IV" Ability { id: "2CDC", source: "Belias, the Gigas" } 1422 "Eruption" duration 4 1436 "Time Bomb" duration 15 1442 "--untargetable--" -1449 "Crimson Cyclone" sync / 1[56]:[^:]*:Belias, the Gigas:2CE2:/ -1451 "Crimson Cyclone" sync / 1[56]:[^:]*:Belias, the Gigas:2D5F:/ +1449 "Crimson Cyclone" Ability { id: "2CE2", source: "Belias, the Gigas" } +1451 "Crimson Cyclone" Ability { id: "2D5F", source: "Belias, the Gigas" } 1454 "--targetable--" -1466 "Time Eruption" sync / 1[56]:[^:]*:Belias, the Gigas:2CDE:/ -1471 "Fast Hands" sync / 1[56]:[^:]*:Belias, the Gigas:2CDF:/ -1474 "Slow Hands" sync / 1[56]:[^:]*:Belias, the Gigas:2CE0:/ -1486 "The Hand Of Time" sync / 1[56]:[^:]*:Belias, the Gigas:2CE5:/ jump 1342 +1466 "Time Eruption" Ability { id: "2CDE", source: "Belias, the Gigas" } +1471 "Fast Hands" Ability { id: "2CDF", source: "Belias, the Gigas" } +1474 "Slow Hands" Ability { id: "2CE0", source: "Belias, the Gigas" } +1486 "The Hand Of Time" Ability { id: "2CE5", source: "Belias, the Gigas" } jump 1342 # End loop # Dummy loop future @@ -126,60 +126,60 @@ hideall "--sync--" # Construct 7 # ############### # The Cleft of Profaning Wind will be sealed off -2000 "Start" sync / 29:[^:]*:7DC:[^:]*:99C:/ window 2000,0 -2016 "Destroy" sync / 1[56]:[^:]*:Construct 7:2C5A:/ window 2016,0 -2026 "Ignite" sync / 1[56]:[^:]*:Construct 7:2C67:/ -2029 "Accelerate" sync / 1[56]:[^:]*:Construct 7:2C65:/ -2043 "Pulverize (close)" sync / 1[56]:[^:]*:Construct 7:2C61:/ -2048 "Pulverize (far)" sync / 1[56]:[^:]*:Construct 7:2C62:/ -2049 "Compress" sync / 1[56]:[^:]*:Construct 7:2C5C:/ -2057 "--untargetable--" sync / 1[56]:[^:]*:Construct 7:2C66:/ -2072 "Ignite" sync / 1[56]:[^:]*:Construct 7:2C67:/ -2074 "Lithobrake" sync / 1[56]:[^:]*:Construct 7:2C68:/ +2000 "Start" SystemLogMessage { id: "7DC", param1: "99C" } window 2000,0 +2016 "Destroy" Ability { id: "2C5A", source: "Construct 7" } window 2016,0 +2026 "Ignite" Ability { id: "2C67", source: "Construct 7" } +2029 "Accelerate" Ability { id: "2C65", source: "Construct 7" } +2043 "Pulverize (close)" Ability { id: "2C61", source: "Construct 7" } +2048 "Pulverize (far)" Ability { id: "2C62", source: "Construct 7" } +2049 "Compress" Ability { id: "2C5C", source: "Construct 7" } +2057 "--untargetable--" Ability { id: "2C66", source: "Construct 7" } +2072 "Ignite" Ability { id: "2C67", source: "Construct 7" } +2074 "Lithobrake" Ability { id: "2C68", source: "Construct 7" } 2083 "Dispose" duration 5 -2101 "Incinerate" sync / 1[56]:[^:]*:Construct 7:2C64:/ -2113 "Computation Mode" sync / 1[56]:[^:]*:Construct 7:2C57:/ # drift -0.356 -2120 "Subtract" sync / 1[56]:[^:]*:Construct 7:2C6C:/ # drift 0.204 -2138 "Division" sync / 1[56]:[^:]*:Construct 7:2CC(A|C|D|E):/ # drift 0.246 -2153 "Division" sync / 1[56]:[^:]*:Construct 7:2CC(A|C|D|E):/ # drift 0.355 -2168 "Incinerate" sync / 1[56]:[^:]*:Construct 7:2CC8:/ -2176 "Tartarus Mode" sync / 1[56]:[^:]*:Construct 7:2C58:/ -2178 "--untargetable--" sync / 1[56]:[^:]*:Construct 7:2C63:/ +2101 "Incinerate" Ability { id: "2C64", source: "Construct 7" } +2113 "Computation Mode" Ability { id: "2C57", source: "Construct 7" } # drift -0.356 +2120 "Subtract" Ability { id: "2C6C", source: "Construct 7" } # drift 0.204 +2138 "Division" Ability { id: "2CC(A|C|D|E)", source: "Construct 7" } # drift 0.246 +2153 "Division" Ability { id: "2CC(A|C|D|E)", source: "Construct 7" } # drift 0.355 +2168 "Incinerate" Ability { id: "2CC8", source: "Construct 7" } +2176 "Tartarus Mode" Ability { id: "2C58", source: "Construct 7" } +2178 "--untargetable--" Ability { id: "2C63", source: "Construct 7" } # Adds. This doesn't currently show because of combat dropping 2230 "Area Lockdown" # After adds -2244 "--sync--" sync / 14:[^:]*:Construct 7:2C59:/ window 5000,766 -2254 "Annihilation Mode" sync / 1[56]:[^:]*:Construct 7:2C59:/ window 5000,756 -2264 "Destroy" sync / 1[56]:[^:]*:Construct 7:2C71:/ -2274 "Ignite" sync / 1[56]:[^:]*:Construct 7:2C67:/ -2277 "Accelerate" sync / 1[56]:[^:]*:Construct 7:2C65:/ window 150,150 -2291 "Pulverize (close)" sync / 1[56]:[^:]*:Construct 7:2C61:/ +2244 "--sync--" StartsUsing { id: "2C59", source: "Construct 7" } window 5000,766 +2254 "Annihilation Mode" Ability { id: "2C59", source: "Construct 7" } window 5000,756 +2264 "Destroy" Ability { id: "2C71", source: "Construct 7" } +2274 "Ignite" Ability { id: "2C67", source: "Construct 7" } +2277 "Accelerate" Ability { id: "2C65", source: "Construct 7" } window 150,150 +2291 "Pulverize (close)" Ability { id: "2C61", source: "Construct 7" } 2296 "Pulverize (far)" duration 4 -2297 "Compress" sync / 1[56]:[^:]*:Construct 7:2C5D:/ -2310 "Incinerate" sync / 1[56]:[^:]*:Construct 7:2D5C:/ -2322 "Computation Mode" sync / 1[56]:[^:]*:Construct 7:2C57:/ -2329 "Subtract" sync / 1[56]:[^:]*:Construct 7:2C6C:/ -2347 "Division" sync / 1[56]:[^:]*:Construct 7:2CC(A|C|D|E):/ -2362 "Division" sync / 1[56]:[^:]*:Construct 7:2CC(A|C|D|E):/ -2377 "Incinerate" sync / 1[56]:[^:]*:Construct 7:2D5D:/ +2297 "Compress" Ability { id: "2C5D", source: "Construct 7" } +2310 "Incinerate" Ability { id: "2D5C", source: "Construct 7" } +2322 "Computation Mode" Ability { id: "2C57", source: "Construct 7" } +2329 "Subtract" Ability { id: "2C6C", source: "Construct 7" } +2347 "Division" Ability { id: "2CC(A|C|D|E)", source: "Construct 7" } +2362 "Division" Ability { id: "2CC(A|C|D|E)", source: "Construct 7" } +2377 "Incinerate" Ability { id: "2D5D", source: "Construct 7" } 2383 "--untargetable--" # Begin loop -2392 "Ignite" sync / 1[56]:[^:]*:Construct 7:2C66:/ -2401 "Lithobrake" sync / 1[56]:[^:]*:Construct 7:2D1E:/ +2392 "Ignite" Ability { id: "2C66", source: "Construct 7" } +2401 "Lithobrake" Ability { id: "2D1E", source: "Construct 7" } 2410 "Dispose" duration 9 -2431 "Incinerate" sync / 1[56]:[^:]*:Construct 7:2D5C:/ -2444 "Ventilate" sync / 1[56]:[^:]*:Construct 7:2C69:/ -2454 "Destroy" sync / 1[56]:[^:]*:Construct 7:2C71:/ -2464 "Ignite" sync / 1[56]:[^:]*:Construct 7:2C67:/ -2467 "Accelerate" sync / 1[56]:[^:]*:Construct 7:2C65:/ -2481 "Pulverize (close)" sync / 1[56]:[^:]*:Construct 7:2C61:/ +2431 "Incinerate" Ability { id: "2D5C", source: "Construct 7" } +2444 "Ventilate" Ability { id: "2C69", source: "Construct 7" } +2454 "Destroy" Ability { id: "2C71", source: "Construct 7" } +2464 "Ignite" Ability { id: "2C67", source: "Construct 7" } +2467 "Accelerate" Ability { id: "2C65", source: "Construct 7" } +2481 "Pulverize (close)" Ability { id: "2C61", source: "Construct 7" } 2486 "Pulverize (far)" duration 4 -2487 "Compress" sync / 1[56]:[^:]*:Construct 7:2C5D:/ +2487 "Compress" Ability { id: "2C5D", source: "Construct 7" } 2495 "--untargetable--" -2504 "Ignite" sync / 1[56]:[^:]*:Construct 7:2C66:/ jump 2392 +2504 "Ignite" Ability { id: "2C66", source: "Construct 7" } jump 2392 # End loop # Dummy loop future @@ -189,68 +189,68 @@ hideall "--sync--" ### Yiazmat # The Clockwork Coliseum will be sealed off -3000 "Start" sync / 29:[^:]*:7DC:[^:]*:99D:/ window 3000,0 -3016 "Rake (single)" sync / 1[56]:[^:]*:Yiazmat:2C26:/ window 3016,0 +3000 "Start" SystemLogMessage { id: "7DC", param1: "99D" } window 3000,0 +3016 "Rake (single)" Ability { id: "2C26", source: "Yiazmat" } window 3016,0 3026 "Gust Front" duration 4 -3034 "Stone Breath" sync / 1[56]:[^:]*:Yiazmat:2C29:/ -3046 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ -3059 "White Breath" sync / 1[56]:[^:]*:Yiazmat:2C31:/ -3074 "Magnetic Lysis" sync / 1[56]:[^:]*:Yiazmat:2C2A:/ -3082 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ +3034 "Stone Breath" Ability { id: "2C29", source: "Yiazmat" } +3046 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } +3059 "White Breath" Ability { id: "2C31", source: "Yiazmat" } +3074 "Magnetic Lysis" Ability { id: "2C2A", source: "Yiazmat" } +3082 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } 3088 "Gust Front" duration 4 -3092 "Stone Breath" sync / 1[56]:[^:]*:Yiazmat:2C29:/ -3098 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ -3101 "Magnetic Genesis" sync / 1[56]:[^:]*:Yiazmat:2C2B:/ +3092 "Stone Breath" Ability { id: "2C29", source: "Yiazmat" } +3098 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } +3101 "Magnetic Genesis" Ability { id: "2C2B", source: "Yiazmat" } 3114 "Rake (combo)" duration 14 -3134 "White Breath" sync / 1[56]:[^:]*:Yiazmat:2C31:/ -3149 "Rake (single)" sync / 1[56]:[^:]*:Yiazmat:2C26:/ +3134 "White Breath" Ability { id: "2C31", source: "Yiazmat" } +3149 "Rake (single)" Ability { id: "2C26", source: "Yiazmat" } 3160 "Gust Front" duration 4 -3162 "Stone Breath" sync / 1[56]:[^:]*:Yiazmat:2C29:/ -3175 "Summon" sync / 1[56]:[^:]*:Yiazmat:2C37:/ -3186 "Magnetic Lysis" sync / 1[56]:[^:]*:Yiazmat:2C2A:/ -3194 "White Breath" sync / 1[56]:[^:]*:Yiazmat:2C31:/ -3201 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ -3208 "Death Strike" sync / 1[56]:[^:]*:Yiazmat:2C34:/ -3213 "Magnetic Genesis" sync / 1[56]:[^:]*:Yiazmat:2C2B:/ -3222 "Cyclone" sync / 1[56]:[^:]*:Yiazmat:2C23:/ duration 4 +3162 "Stone Breath" Ability { id: "2C29", source: "Yiazmat" } +3175 "Summon" Ability { id: "2C37", source: "Yiazmat" } +3186 "Magnetic Lysis" Ability { id: "2C2A", source: "Yiazmat" } +3194 "White Breath" Ability { id: "2C31", source: "Yiazmat" } +3201 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } +3208 "Death Strike" Ability { id: "2C34", source: "Yiazmat" } +3213 "Magnetic Genesis" Ability { id: "2C2B", source: "Yiazmat" } +3222 "Cyclone" Ability { id: "2C23", source: "Yiazmat" } duration 4 # Adds 3241 "Archaeodemon spawn" 3248 "Gust Front" duration 4 3250 "Karma/Unholy Darkness" -3258 "Death Strike" sync / 1[56]:[^:]*:Yiazmat:2C33:/ +3258 "Death Strike" Ability { id: "2C33", source: "Yiazmat" } 3262 "Karma/Unholy Darkness" 3301 "Enrage" # Adds complete -3400 "Solar Storm" sync / 1[56]:[^:]*:Yiazmat:2C2C:/ window 5000,600 +3400 "Solar Storm" Ability { id: "2C2C", source: "Yiazmat" } window 5000,600 3420 "Rake (combo)" duration 14 3425 "Gust Front" duration 4 -3439 "White Breath" sync / 1[56]:[^:]*:Yiazmat:2C31:/ -3450 "Rake (single)" sync / 1[56]:[^:]*:Yiazmat:2C26:/ +3439 "White Breath" Ability { id: "2C31", source: "Yiazmat" } +3450 "Rake (single)" Ability { id: "2C26", source: "Yiazmat" } # Begin loop -3456 "Magnetic Lysis" sync / 1[56]:[^:]*:Yiazmat:2C2A:/ +3456 "Magnetic Lysis" Ability { id: "2C2A", source: "Yiazmat" } 3463 "Rake (combo)" duration 14 -3481 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ -3483 "Magnetic Genesis" sync / 1[56]:[^:]*:Yiazmat:2C2B:/ -3493 "Cyclone" sync / 1[56]:[^:]*:Yiazmat:2C23:/ duration 4 -3505 "Death Strike" sync / 1[56]:[^:]*:Yiazmat:2C34:/ +3481 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } +3483 "Magnetic Genesis" Ability { id: "2C2B", source: "Yiazmat" } +3493 "Cyclone" Ability { id: "2C23", source: "Yiazmat" } duration 4 +3505 "Death Strike" Ability { id: "2C34", source: "Yiazmat" } 3510 "Gust Front" duration 4 -3520 "White Breath" sync / 1[56]:[^:]*:Yiazmat:2C31:/ -3531 "Rake (single)" sync / 1[56]:[^:]*:Yiazmat:2C26:/ -3537 "Magnetic Lysis" sync / 1[56]:[^:]*:Yiazmat:2C2A:/ -3544 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ -3551 "White Breath" sync / 1[56]:[^:]*:Yiazmat:2C31:/ +3520 "White Breath" Ability { id: "2C31", source: "Yiazmat" } +3531 "Rake (single)" Ability { id: "2C26", source: "Yiazmat" } +3537 "Magnetic Lysis" Ability { id: "2C2A", source: "Yiazmat" } +3544 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } +3551 "White Breath" Ability { id: "2C31", source: "Yiazmat" } 3553 "Gust Front" duration 4 -3561 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ -3565 "Magnetic Genesis" sync / 1[56]:[^:]*:Yiazmat:2C2B:/ -3577 "Gale Gaol" sync / 1[56]:[^:]*:Yiazmat:2C2D:/ +3561 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } +3565 "Magnetic Genesis" Ability { id: "2C2B", source: "Yiazmat" } +3577 "Gale Gaol" Ability { id: "2C2D", source: "Yiazmat" } 3584 "Gust Front" duration 4 -3587 "Stone Breath" sync / 1[56]:[^:]*:Yiazmat:2C29:/ -3595 "Rake (single)" sync / 1[56]:[^:]*:Yiazmat:2C26:/ -3600 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ -3610 "Magnetic Lysis" sync / 1[56]:[^:]*:Yiazmat:2C2A:/ jump 3456 +3587 "Stone Breath" Ability { id: "2C29", source: "Yiazmat" } +3595 "Rake (single)" Ability { id: "2C26", source: "Yiazmat" } +3600 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } +3610 "Magnetic Lysis" Ability { id: "2C2A", source: "Yiazmat" } jump 3456 # End loop # Dummy loop future @@ -258,13 +258,13 @@ hideall "--sync--" 3634 "Dust Storm" # 9.99% push -3694 "--sync--" sync / 14:[^:]*:Yiazmat:2C32:/ window 5000,306 -3700 "Growing Threat" sync / 1[56]:[^:]*:Yiazmat:2C32:/ window 5000,300 +3694 "--sync--" StartsUsing { id: "2C32", source: "Yiazmat" } window 5000,306 +3700 "Growing Threat" Ability { id: "2C32", source: "Yiazmat" } window 5000,300 3707 "Rake (combo)" duration 14 -3727 "White Breath" sync / 1[56]:[^:]*:Yiazmat:2C31:/ -3734 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ +3727 "White Breath" Ability { id: "2C31", source: "Yiazmat" } +3734 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } 3740 "Rake (combo)" duration 14 3752 "Gust Front" duration 4 -3761 "Stone Breath" sync / 1[56]:[^:]*:Yiazmat:2C29:/ -3767 "Dust Storm" sync / 1[56]:[^:]*:Yiazmat:2C36:/ +3761 "Stone Breath" Ability { id: "2C29", source: "Yiazmat" } +3767 "Dust Storm" Ability { id: "2C36", source: "Yiazmat" } # more? diff --git a/ui/raidboss/data/04-sb/alliance/royal_city_of_rabanastre.txt b/ui/raidboss/data/04-sb/alliance/royal_city_of_rabanastre.txt index cceb95731f..1b976cc816 100644 --- a/ui/raidboss/data/04-sb/alliance/royal_city_of_rabanastre.txt +++ b/ui/raidboss/data/04-sb/alliance/royal_city_of_rabanastre.txt @@ -11,49 +11,49 @@ hideall "--start--" # -it "Mateus, The Corrupt" # Crumbling Bridge will be sealed off -0.0 "--start--" sync / 29:[^:]*:7DC:[^:]*:949:/ window 0,1 +0.0 "--start--" SystemLogMessage { id: "7DC", param1: "949" } window 0,1 # TODO: does this only start when the adds are dead? -22.6 "--sync--" sync / 14:[^:]*:Mateus, The Corrupt:2633:/ window 30,10 +22.6 "--sync--" StartsUsing { id: "2633", source: "Mateus, The Corrupt" } window 30,10 # Ice phase -27.6 "Unbind" sync / 1[56]:[^:]*:Mateus, The Corrupt:2633:/ -33.6 "--sync--" sync / 1[56]:[^:]*:Mateus, The Corrupt:26A2:/ -34.3 "--Aqua Sphere Adds--" sync / 03:........:Aqua Sphere:/ -57.5 "Flash-Freeze" sync / 1[56]:[^:]*:Mateus, The Corrupt:2647:/ -66.7 "--sync--" sync / 1[56]:[^:]*:Mateus, The Corrupt:2637:/ -74.6 "Flash-Freeze" sync / 1[56]:[^:]*:Mateus, The Corrupt:2647:/ -91.8 "Flash-Freeze" sync / 1[56]:[^:]*:Mateus, The Corrupt:2647:/ +27.6 "Unbind" Ability { id: "2633", source: "Mateus, The Corrupt" } +33.6 "--sync--" Ability { id: "26A2", source: "Mateus, The Corrupt" } +34.3 "--Aqua Sphere Adds--" AddedCombatant { name: "Aqua Sphere" } +57.5 "Flash-Freeze" Ability { id: "2647", source: "Mateus, The Corrupt" } +66.7 "--sync--" Ability { id: "2637", source: "Mateus, The Corrupt" } +74.6 "Flash-Freeze" Ability { id: "2647", source: "Mateus, The Corrupt" } +91.8 "Flash-Freeze" Ability { id: "2647", source: "Mateus, The Corrupt" } # Frog phase -114.1 "Rebind" sync / 1[56]:[^:]*:Mateus, The Corrupt:2635:/ window 120,20 -124.5 "Dualcast" sync / 1[56]:[^:]*:Mateus, The Corrupt:263C:/ -127.8 "--sync--" sync / 1[56]:[^:]*:Mateus, The Corrupt:263B:/ -139.9 "Blizzard IV" sync / 1[56]:[^:]*:Mateus, The Corrupt:263D:/ -152.1 "Flash-Freeze" sync / 1[56]:[^:]*:Mateus, The Corrupt:2647:/ -165.4 "--Flume Toad Adds--" sync / 03:........:Flume Toad:/ -192.5 "Snowpierce 1" sync / 1[56]:[^:]*:Icicle:2640:/ +114.1 "Rebind" Ability { id: "2635", source: "Mateus, The Corrupt" } window 120,20 +124.5 "Dualcast" Ability { id: "263C", source: "Mateus, The Corrupt" } +127.8 "--sync--" Ability { id: "263B", source: "Mateus, The Corrupt" } +139.9 "Blizzard IV" Ability { id: "263D", source: "Mateus, The Corrupt" } +152.1 "Flash-Freeze" Ability { id: "2647", source: "Mateus, The Corrupt" } +165.4 "--Flume Toad Adds--" AddedCombatant { name: "Flume Toad" } +192.5 "Snowpierce 1" Ability { id: "2640", source: "Icicle" } # ??? More flume toads, hard to tell from logs -214.6 "Snowpierce 2" sync / 1[56]:[^:]*:Icicle:2640:/ -225.6 "Dendrite" sync / 1[56]:[^:]*:Mateus, The Corrupt:2645:/ +214.6 "Snowpierce 2" Ability { id: "2640", source: "Icicle" } +225.6 "Dendrite" Ability { id: "2645", source: "Mateus, The Corrupt" } 227.5 "--Blizzard Sphere Adds--" # Adds 259.2 "--untargetable--" # ??? from video -259.8 "--sync--" sync / 1[56]:[^:]*:Mateus, The Corrupt:266C:/ window 260,20 -262.9 "--Azure Guard Adds--" sync / 03:........:Azure Guard:/ +259.8 "--sync--" Ability { id: "266C", source: "Mateus, The Corrupt" } window 260,20 +262.9 "--Azure Guard Adds--" AddedCombatant { name: "Azure Guard" } 333.2 "--enrage--" # ??? estimating from video # End of add phase aoe -500.0 "Frostwave" sync / 1[56]:[^:]*:Mateus, The Corrupt:2641:/ +500.0 "Frostwave" Ability { id: "2641", source: "Mateus, The Corrupt" } # loop -524.3 "Unbind" sync / 1[56]:[^:]*:Mateus, The Corrupt:2633:/ window 200,200 jump 27.6 -530.3 "--sync--" #sync / 1[56]:[^:]*:Mateus, The Corrupt:26A2:/ -531.0 "--Aqua Sphere Adds--" #sync / 03:........:Aqua Sphere:/ -554.2 "Flash-Freeze" #sync / 1[56]:[^:]*:Mateus, The Corrupt:2647:/ -563.4 "--sync--" #sync / 1[56]:[^:]*:Mateus, The Corrupt:2637:/ -571.3 "Flash-Freeze" #sync / 1[56]:[^:]*:Mateus, The Corrupt:2647:/ -588.5 "Flash-Freeze" #sync / 1[56]:[^:]*:Mateus, The Corrupt:2647:/ +524.3 "Unbind" Ability { id: "2633", source: "Mateus, The Corrupt" } window 200,200 jump 27.6 +530.3 "--sync--" #Ability { id: "26A2", source: "Mateus, The Corrupt" } +531.0 "--Aqua Sphere Adds--" #AddedCombatant { name: "Aqua Sphere" } +554.2 "Flash-Freeze" #Ability { id: "2647", source: "Mateus, The Corrupt" } +563.4 "--sync--" #Ability { id: "2637", source: "Mateus, The Corrupt" } +571.3 "Flash-Freeze" #Ability { id: "2647", source: "Mateus, The Corrupt" } +588.5 "Flash-Freeze" #Ability { id: "2647", source: "Mateus, The Corrupt" } ### Hashmal, Bringer of Order @@ -62,109 +62,109 @@ hideall "--start--" # -it "Hashmal, Bringer of Order" # Palace Square will be sealed off -1000.0 "--start--" sync / 29:[^:]*:7DC:[^:]*:94C:/ window 10000,0 -1011.0 "--sync--" sync / 14:[^:]*:Hashmal, Bringer of Order:25D8:/ window 20,20 -1015.0 "Quake IV" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D8:/ -1020.4 "Jagged Edge 1" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1022.5 "Jagged Edge 2" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1024.6 "Jagged Edge 3" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ - -1028.6 "Control Tower x1" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C1:/ -1031.8 "Sanction" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C3:/ +1000.0 "--start--" SystemLogMessage { id: "7DC", param1: "94C" } window 10000,0 +1011.0 "--sync--" StartsUsing { id: "25D8", source: "Hashmal, Bringer of Order" } window 20,20 +1015.0 "Quake IV" Ability { id: "25D8", source: "Hashmal, Bringer of Order" } +1020.4 "Jagged Edge 1" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1022.5 "Jagged Edge 2" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1024.6 "Jagged Edge 3" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } + +1028.6 "Control Tower x1" Ability { id: "25C1", source: "Hashmal, Bringer of Order" } +1031.8 "Sanction" Ability { id: "25C3", source: "Hashmal, Bringer of Order" } 1038.1 "--untargetable--" # ??? from video -1039.4 "Towerfall" sync / 1[56]:[^:]*:Control Tower:25C4:/ -1046.2 "Extreme Edge" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:(25CE|25D0):/ +1039.4 "Towerfall" Ability { id: "25C4", source: "Control Tower" } +1046.2 "Extreme Edge" Ability { id: ["25CE", "25D0"], source: "Hashmal, Bringer of Order" } 1050.1 "--targetable--" # ??? from video -1056.1 "Earth Hammer" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CB:/ -1064.3 "Hammerfall" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CC:/ -1073.3 "Quake IV" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D8:/ -1082.6 "Rock Cutter" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D7:/ +1056.1 "Earth Hammer" Ability { id: "25CB", source: "Hashmal, Bringer of Order" } +1064.3 "Hammerfall" Ability { id: "25CC", source: "Hashmal, Bringer of Order" } +1073.3 "Quake IV" Ability { id: "25D8", source: "Hashmal, Bringer of Order" } +1082.6 "Rock Cutter" Ability { id: "25D7", source: "Hashmal, Bringer of Order" } # This can push early. -1087.0 "--sync--" sync / 14:[^:]*:Hashmal, Bringer of Order:25BC:/ window 100,20 -1090.0 "Command Tower" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25BC:/ -1101.3 "Earth Shaker" sync / 1[56]:[^:]*:Command Tower:25C8:/ -1106.2 "Earth Shaker" sync / 1[56]:[^:]*:Command Tower:25C8:/ -1106.6 "Jagged Edge 1" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1108.4 "Impact" sync / 1[56]:[^:]*:Command Tower:25C7:/ window 30,3 -1108.7 "Jagged Edge 2" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1110.7 "Jagged Edge 3" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ +1087.0 "--sync--" StartsUsing { id: "25BC", source: "Hashmal, Bringer of Order" } window 100,20 +1090.0 "Command Tower" Ability { id: "25BC", source: "Hashmal, Bringer of Order" } +1101.3 "Earth Shaker" Ability { id: "25C8", source: "Command Tower" } +1106.2 "Earth Shaker" Ability { id: "25C8", source: "Command Tower" } +1106.6 "Jagged Edge 1" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1108.4 "Impact" Ability { id: "25C7", source: "Command Tower" } window 30,3 +1108.7 "Jagged Edge 2" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1110.7 "Jagged Edge 3" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } 1113.2 "--Sand Sphere Adds--" -1128.5 "Falling Boulder" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D2:/ -1135.8 "Impact" sync / 1[56]:[^:]*:Command Tower:25C7:/ window 24,3 # can push early and skip Sand Spheres -1145.7 "Earth Shaker" #sync / 1[56]:[^:]*:Command Tower:25C8:/ -1147.8 "Earth Shaker" #sync / 1[56]:[^:]*:Command Tower:25C8:/ -1149.8 "Falling Rock" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D3:/ +1128.5 "Falling Boulder" Ability { id: "25D2", source: "Hashmal, Bringer of Order" } +1135.8 "Impact" Ability { id: "25C7", source: "Command Tower" } window 24,3 # can push early and skip Sand Spheres +1145.7 "Earth Shaker" #Ability { id: "25C8", source: "Command Tower" } +1147.8 "Earth Shaker" #Ability { id: "25C8", source: "Command Tower" } +1149.8 "Falling Rock" Ability { id: "25D3", source: "Hashmal, Bringer of Order" } # ??? more earth shaker, more jagged edge (seen on video, but no logs) -1300.0 "--sync--" sync / 14:[^:]*:Hashmal, Bringer of Order:25C5:/ window 300,0 -1305.0 "Landwaster" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C5:/ +1300.0 "--sync--" StartsUsing { id: "25C5", source: "Hashmal, Bringer of Order" } window 300,0 +1305.0 "Landwaster" Ability { id: "25C5", source: "Hashmal, Bringer of Order" } -1314.4 "Control Tower x2" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C1:/ -1317.6 "Sanction" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C3:/ -1325.1 "Towerfall" sync / 1[56]:[^:]*:Control Tower:25C4:/ -1326.0 "Jagged Edge 1" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1328.1 "Jagged Edge 2" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1330.2 "Jagged Edge 3" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ +1314.4 "Control Tower x2" Ability { id: "25C1", source: "Hashmal, Bringer of Order" } +1317.6 "Sanction" Ability { id: "25C3", source: "Hashmal, Bringer of Order" } +1325.1 "Towerfall" Ability { id: "25C4", source: "Control Tower" } +1326.0 "Jagged Edge 1" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1328.1 "Jagged Edge 2" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1330.2 "Jagged Edge 3" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } -1330.9 "Control Tower x2" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C1:/ -1334.1 "Sanction" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C3:/ -1341.7 "Towerfall" sync / 1[56]:[^:]*:Control Tower:25C4:/ +1330.9 "Control Tower x2" Ability { id: "25C1", source: "Hashmal, Bringer of Order" } +1334.1 "Sanction" Ability { id: "25C3", source: "Hashmal, Bringer of Order" } +1341.7 "Towerfall" Ability { id: "25C4", source: "Control Tower" } 1343.9 "--untargetable--" # ??? from video -1348.2 "Jagged Edge 1" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1348.5 "Extreme Edge" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:(25CE|25D0):/ -1350.3 "Jagged Edge 2" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1352.3 "Jagged Edge 3" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ +1348.2 "Jagged Edge 1" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1348.5 "Extreme Edge" Ability { id: ["25CE", "25D0"], source: "Hashmal, Bringer of Order" } +1350.3 "Jagged Edge 2" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1352.3 "Jagged Edge 3" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } 1355.4 "--targetable--" # ??? from video -1360.3 "Quake IV" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D8:/ -1369.5 "Quake IV" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D8:/ -1378.9 "Rock Cutter" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D7:/ -1387.1 "Earth Hammer" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CB:/ -1395.3 "Hammerfall x3" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CC:/ +1360.3 "Quake IV" Ability { id: "25D8", source: "Hashmal, Bringer of Order" } +1369.5 "Quake IV" Ability { id: "25D8", source: "Hashmal, Bringer of Order" } +1378.9 "Rock Cutter" Ability { id: "25D7", source: "Hashmal, Bringer of Order" } +1387.1 "Earth Hammer" Ability { id: "25CB", source: "Hashmal, Bringer of Order" } +1395.3 "Hammerfall x3" Ability { id: "25CC", source: "Hashmal, Bringer of Order" } -1398.3 "Summon" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D4:/ +1398.3 "Summon" Ability { id: "25D4", source: "Hashmal, Bringer of Order" } 1399.1 "--Golem Adds--" -1398.6 "Jagged Edge 1" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1400.7 "Jagged Edge 2" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1402.8 "Jagged Edge 3" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1411.3 "Demolish" sync / 1[56]:[^:]*:Pennantstone Golem:25D6:/ -1414.5 "Might" sync / 1[56]:[^:]*:Pennantstone Golem:25D5:/ -1415.8 "Rock Cutter" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D7:/ -1428.2 "Rock Cutter" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D7:/ -1437.3 "Quake IV" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D8:/ - -1447.8 "Submission Tower" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:266D:/ -1451.0 "Sanction" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:2703:/ +1398.6 "Jagged Edge 1" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1400.7 "Jagged Edge 2" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1402.8 "Jagged Edge 3" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1411.3 "Demolish" Ability { id: "25D6", source: "Pennantstone Golem" } +1414.5 "Might" Ability { id: "25D5", source: "Pennantstone Golem" } +1415.8 "Rock Cutter" Ability { id: "25D7", source: "Hashmal, Bringer of Order" } +1428.2 "Rock Cutter" Ability { id: "25D7", source: "Hashmal, Bringer of Order" } +1437.3 "Quake IV" Ability { id: "25D8", source: "Hashmal, Bringer of Order" } + +1447.8 "Submission Tower" Ability { id: "266D", source: "Hashmal, Bringer of Order" } +1451.0 "Sanction" Ability { id: "2703", source: "Hashmal, Bringer of Order" } 1454.1 "--Sand Sphere Adds--" -# 1459.1 "--sync--" sync / 14:[^:]*:Sand Sphere:25C9:/ # To Dust starts casting, probably the phase over when 20s cast complete -1460.9 "Towerfall" sync / 1[56]:[^:]*:Submission Tower:25CA:/ -1469.7 "Falling Boulder" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D2:/ +# 1459.1 "--sync--" StartsUsing { id: "25C9", source: "Sand Sphere" } # To Dust starts casting, probably the phase over when 20s cast complete +1460.9 "Towerfall" Ability { id: "25CA", source: "Submission Tower" } +1469.7 "Falling Boulder" Ability { id: "25D2", source: "Hashmal, Bringer of Order" } # Starts roughly after Sand Sphere adds are dead, guessing at this natural time if To Dust goes off -1480.6 "--sync--" sync / 14:[^:]*:Hashmal, Bringer of Order:(25CE|25D0):/ window 40,40 -1486.6 "Extreme Edge" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:(25CE|25D0):/ -1489.1 "Falling Rock" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D3:/ -1499.3 "Quake IV" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D8:/ -1508.5 "Rock Cutter" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25D7:/ +1480.6 "--sync--" StartsUsing { id: ["25CE", "25D0"], source: "Hashmal, Bringer of Order" } window 40,40 +1486.6 "Extreme Edge" Ability { id: ["25CE", "25D0"], source: "Hashmal, Bringer of Order" } +1489.1 "Falling Rock" Ability { id: "25D3", source: "Hashmal, Bringer of Order" } +1499.3 "Quake IV" Ability { id: "25D8", source: "Hashmal, Bringer of Order" } +1508.5 "Rock Cutter" Ability { id: "25D7", source: "Hashmal, Bringer of Order" } # loop -1515.8 "Control Tower x2" sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C1:/ window 100,100 jump 1314.4 -1519.0 "Sanction" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C3:/ -1526.5 "Towerfall" #sync / 1[56]:[^:]*:Control Tower:25C4:/ -1527.4 "Jagged Edge 1" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1529.5 "Jagged Edge 2" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1531.6 "Jagged Edge 3" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ - -1532.3 "Control Tower x2" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C1:/ -1535.5 "Sanction" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25C3:/ -1543.1 "Towerfall" #sync / 1[56]:[^:]*:Control Tower:25C4:/ +1515.8 "Control Tower x2" Ability { id: "25C1", source: "Hashmal, Bringer of Order" } window 100,100 jump 1314.4 +1519.0 "Sanction" #Ability { id: "25C3", source: "Hashmal, Bringer of Order" } +1526.5 "Towerfall" #Ability { id: "25C4", source: "Control Tower" } +1527.4 "Jagged Edge 1" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1529.5 "Jagged Edge 2" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1531.6 "Jagged Edge 3" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } + +1532.3 "Control Tower x2" #Ability { id: "25C1", source: "Hashmal, Bringer of Order" } +1535.5 "Sanction" #Ability { id: "25C3", source: "Hashmal, Bringer of Order" } +1543.1 "Towerfall" #Ability { id: "25C4", source: "Control Tower" } 1545.3 "--untargetable--" # ??? from video -1549.6 "Jagged Edge 1" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1549.9 "Extreme Edge" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:(25CE|25D0):/ -1551.7 "Jagged Edge 2" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ -1553.7 "Jagged Edge 3" #sync / 1[56]:[^:]*:Hashmal, Bringer of Order:25CD:/ +1549.6 "Jagged Edge 1" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1549.9 "Extreme Edge" #Ability { id: ["25CE", "25D0"], source: "Hashmal, Bringer of Order" } +1551.7 "Jagged Edge 2" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } +1553.7 "Jagged Edge 3" #Ability { id: "25CD", source: "Hashmal, Bringer of Order" } 1556.8 "--targetable--" # ??? from video @@ -174,107 +174,107 @@ hideall "--start--" # -it "Rofocale" # Lesalia Garden Ruins will be sealed off -2000.0 "--start--" sync / 29:[^:]*:7DC:[^:]*:94D:/ window 10000,0 -2012.8 "--sync--" sync / 14:[^:]*:Rofocale:2680:/ window 20,20 -2015.8 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ duration 3.4 -2035.5 "Chariot" sync / 1[56]:[^:]*:Rofocale:2674:/ -2040.8 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:2675:/ -2052.5 "Crush Weapon x3" sync / 1[56]:[^:]*:Rofocale:2683:/ -2073.4 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ duration 3.2 -2093.9 "Maverick" sync / 1[56]:[^:]*:Rofocale:2689:/ -2104.8 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ duration 3.4 -2117.7 "Crush Weapon x3" sync / 1[56]:[^:]*:Rofocale:2683:/ -2124.5 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ -2142.5 "Chariot" sync / 1[56]:[^:]*:Rofocale:2674:/ -2147.8 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:2675:/ -2154.6 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ duration 3.2 -2165.8 "Crush Weapon x3" sync / 1[56]:[^:]*:Rofocale:2683:/ -2178.5 "Maverick" sync / 1[56]:[^:]*:Rofocale:2689:/ -2189.4 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ duration 3.4 +2000.0 "--start--" SystemLogMessage { id: "7DC", param1: "94D" } window 10000,0 +2012.8 "--sync--" StartsUsing { id: "2680", source: "Rofocale" } window 20,20 +2015.8 "Crush Helm" Ability { id: "2680", source: "Rofocale" } duration 3.4 +2035.5 "Chariot" Ability { id: "2674", source: "Rofocale" } +2040.8 "Cry Of Victory" Ability { id: "2675", source: "Rofocale" } +2052.5 "Crush Weapon x3" Ability { id: "2683", source: "Rofocale" } +2073.4 "Trample" Ability { id: "2676", source: "Rofocale" } duration 3.2 +2093.9 "Maverick" Ability { id: "2689", source: "Rofocale" } +2104.8 "Crush Helm" Ability { id: "2680", source: "Rofocale" } duration 3.4 +2117.7 "Crush Weapon x3" Ability { id: "2683", source: "Rofocale" } +2124.5 "Trample" Ability { id: "2676", source: "Rofocale" } +2142.5 "Chariot" Ability { id: "2674", source: "Rofocale" } +2147.8 "Cry Of Victory" Ability { id: "2675", source: "Rofocale" } +2154.6 "Trample" Ability { id: "2676", source: "Rofocale" } duration 3.2 +2165.8 "Crush Weapon x3" Ability { id: "2683", source: "Rofocale" } +2178.5 "Maverick" Ability { id: "2689", source: "Rofocale" } +2189.4 "Crush Helm" Ability { id: "2680", source: "Rofocale" } duration 3.4 2199.3 "--invulnerable--" # ??? from video, no debuff in logs, can push to this by hp% -2201.3 "Archaeodemon Adds" sync / 03:........:Archaeodemon:/ window 300,300 +2201.3 "Archaeodemon Adds" AddedCombatant { name: "Archaeodemon" } window 300,300 2208.3 "--lock out--" # ??? from video # TODO: could trigger instead off of Rofocale losing Sprint which happens ~here -2400.0 "--sync--" sync / 00:0044:[^:]*:The heavens tremble in my wake/ window 500,0 -2417.6 "--sync--" sync / 14:[^:]*:Rofocale:268A:/ window 500,10 +2400.0 "--sync--" GameLog { code: "0044", line: "The heavens tremble in my wake.*?" } window 500,0 +2417.6 "--sync--" StartsUsing { id: "268A", source: "Rofocale" } window 500,10 2421.1 "Heavenly Subjugation" -2433.5 "Embrace" sync / 1[56]:[^:]*:Rofocale:2685:/ -2450.8 "Chariot" sync / 1[56]:[^:]*:Rofocale:2674:/ -2456.0 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:2675:/ -2466.7 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ duration 3.2 -2473.5 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:274C:/ -2484.6 "Pomp And Circumstance" sync / 1[56]:[^:]*:Rofocale:268D:/ -2492.8 "Embrace" sync / 1[56]:[^:]*:Rofocale:2685:/ -2500.4 "Crush Weapon x4" sync / 1[56]:[^:]*:Rofocale:2683:/ -2512.6 "Maverick" sync / 1[56]:[^:]*:Rofocale:2689:/ # targetable Maverick -2519.6 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ -2531.0 "Embrace" sync / 1[56]:[^:]*:Rofocale:2685:/ -2539.2 "Pomp And Circumstance" sync / 1[56]:[^:]*:Rofocale:268D:/ -2545.4 "Dark Geas" sync / 1[56]:[^:]*:Rofocale:2688:/ +2433.5 "Embrace" Ability { id: "2685", source: "Rofocale" } +2450.8 "Chariot" Ability { id: "2674", source: "Rofocale" } +2456.0 "Cry Of Victory" Ability { id: "2675", source: "Rofocale" } +2466.7 "Trample" Ability { id: "2676", source: "Rofocale" } duration 3.2 +2473.5 "Cry Of Victory" Ability { id: "274C", source: "Rofocale" } +2484.6 "Pomp And Circumstance" Ability { id: "268D", source: "Rofocale" } +2492.8 "Embrace" Ability { id: "2685", source: "Rofocale" } +2500.4 "Crush Weapon x4" Ability { id: "2683", source: "Rofocale" } +2512.6 "Maverick" Ability { id: "2689", source: "Rofocale" } # targetable Maverick +2519.6 "Crush Helm" Ability { id: "2680", source: "Rofocale" } +2531.0 "Embrace" Ability { id: "2685", source: "Rofocale" } +2539.2 "Pomp And Circumstance" Ability { id: "268D", source: "Rofocale" } +2545.4 "Dark Geas" Ability { id: "2688", source: "Rofocale" } # => variable time turning off the lights # Seen 2734 only once in the loop fflogs link below. -2700.0 "--sync--" sync / 14:[^:]*:Rofocale:(2734|2726):/ window 160,0 -2706.0 "Maverick" sync / 1[56]:[^:]*:Rofocale:(2734|2726):/ -2716.9 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ -2726.3 "Embrace" sync / 1[56]:[^:]*:Rofocale:2685:/ -2735.5 "Maverick" sync / 1[56]:[^:]*:Rofocale:2689:/ -2736.5 "Chariot" sync / 1[56]:[^:]*:Rofocale:2674:/ -2741.7 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:2675:/ -2751.0 "Maverick" sync / 1[56]:[^:]*:Rofocale:2689:/ -2753.5 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ -2760.3 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:274C:/ -2774.0 "Crush Weapon x4" sync / 1[56]:[^:]*:Rofocale:2683:/ -2779.1 "Dark Geas" sync / 1[56]:[^:]*:Rofocale:2688:/ +2700.0 "--sync--" StartsUsing { id: ["2734", "2726"], source: "Rofocale" } window 160,0 +2706.0 "Maverick" Ability { id: ["2734", "2726"], source: "Rofocale" } +2716.9 "Crush Helm" Ability { id: "2680", source: "Rofocale" } +2726.3 "Embrace" Ability { id: "2685", source: "Rofocale" } +2735.5 "Maverick" Ability { id: "2689", source: "Rofocale" } +2736.5 "Chariot" Ability { id: "2674", source: "Rofocale" } +2741.7 "Cry Of Victory" Ability { id: "2675", source: "Rofocale" } +2751.0 "Maverick" Ability { id: "2689", source: "Rofocale" } +2753.5 "Trample" Ability { id: "2676", source: "Rofocale" } +2760.3 "Cry Of Victory" Ability { id: "274C", source: "Rofocale" } +2774.0 "Crush Weapon x4" Ability { id: "2683", source: "Rofocale" } +2779.1 "Dark Geas" Ability { id: "2688", source: "Rofocale" } # => variable time turning off the lights -2900.0 "--sync--" sync / 14:[^:]*:Rofocale:(2734|2726):/ window 160,0 -2906.0 "Maverick" sync / 1[56]:[^:]*:Rofocale:(2734|2726):/ -2917.3 "Crush Weapon x4" sync / 1[56]:[^:]*:Rofocale:2683:/ -2924.2 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ -2931.0 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:274C:/ -2937.2 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ -2948.6 "Embrace" sync / 1[56]:[^:]*:Rofocale:2685:/ -2958.9 "Chariot" sync / 1[56]:[^:]*:Rofocale:2674:/ -2964.3 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:2675:/ -2971.4 "Pomp And Circumstance" sync / 1[56]:[^:]*:Rofocale:268D:/ -2983.0 "Crush Weapon x4" sync / 1[56]:[^:]*:Rofocale:2683:/ -2990.1 "Pomp And Circumstance" sync / 1[56]:[^:]*:Rofocale:268D:/ -3006.3 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ -3015.8 "Embrace" sync / 1[56]:[^:]*:Rofocale:2685:/ -3022.7 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ -3029.5 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:274C:/ -3036.4 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ -3043.1 "Cry Of Victory" sync / 1[56]:[^:]*:Rofocale:274C:/ -3056.8 "Crush Weapon x3" sync / 1[56]:[^:]*:Rofocale:2683:/ +2900.0 "--sync--" StartsUsing { id: ["2734", "2726"], source: "Rofocale" } window 160,0 +2906.0 "Maverick" Ability { id: ["2734", "2726"], source: "Rofocale" } +2917.3 "Crush Weapon x4" Ability { id: "2683", source: "Rofocale" } +2924.2 "Trample" Ability { id: "2676", source: "Rofocale" } +2931.0 "Cry Of Victory" Ability { id: "274C", source: "Rofocale" } +2937.2 "Crush Helm" Ability { id: "2680", source: "Rofocale" } +2948.6 "Embrace" Ability { id: "2685", source: "Rofocale" } +2958.9 "Chariot" Ability { id: "2674", source: "Rofocale" } +2964.3 "Cry Of Victory" Ability { id: "2675", source: "Rofocale" } +2971.4 "Pomp And Circumstance" Ability { id: "268D", source: "Rofocale" } +2983.0 "Crush Weapon x4" Ability { id: "2683", source: "Rofocale" } +2990.1 "Pomp And Circumstance" Ability { id: "268D", source: "Rofocale" } +3006.3 "Crush Helm" Ability { id: "2680", source: "Rofocale" } +3015.8 "Embrace" Ability { id: "2685", source: "Rofocale" } +3022.7 "Trample" Ability { id: "2676", source: "Rofocale" } +3029.5 "Cry Of Victory" Ability { id: "274C", source: "Rofocale" } +3036.4 "Trample" Ability { id: "2676", source: "Rofocale" } +3043.1 "Cry Of Victory" Ability { id: "274C", source: "Rofocale" } +3056.8 "Crush Weapon x3" Ability { id: "2683", source: "Rofocale" } # begin loop # Thanks to https://www.fflogs.com/reports/zpg2CQNMqFBmawcW#fight=8 for this loop. @_@;;; -3068.0 "Maverick" sync / 1[56]:[^:]*:Rofocale:2689:/ -3069.2 "Chariot" sync / 1[56]:[^:]*:Rofocale:2674:/ -3074.5 "Cry of Victory" sync / 1[56]:[^:]*:Rofocale:2675:/ -3083.6 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ -3094.8 "Embrace" sync / 1[56]:[^:]*:Rofocale:2685:/ -3102.8 "Pomp and Circumstance" sync / 1[56]:[^:]*:Rofocale:268D:/ -3104.8 "Maverick" sync / 1[56]:[^:]*:Rofocale:2689:/ -3119.3 "Crush Weapon" sync / 1[56]:[^:]*:Rofocale:2683:/ -3126.3 "Pomp and Circumstance" sync / 1[56]:[^:]*:Rofocale:268D:/ -3142.3 "Crush Helm" sync / 1[56]:[^:]*:Rofocale:2680:/ -3149.5 "Embrace" sync / 1[56]:[^:]*:Rofocale:2685:/ -3156.1 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ -3162.9 "Cry of Victory" sync / 1[56]:[^:]*:Rofocale:274C:/ -3169.6 "Trample" sync / 1[56]:[^:]*:Rofocale:2676:/ -3176.4 "Cry of Victory" sync / 1[56]:[^:]*:Rofocale:274C:/ -3189.9 "Crush Weapon" sync / 1[56]:[^:]*:Rofocale:2683:/ +3068.0 "Maverick" Ability { id: "2689", source: "Rofocale" } +3069.2 "Chariot" Ability { id: "2674", source: "Rofocale" } +3074.5 "Cry of Victory" Ability { id: "2675", source: "Rofocale" } +3083.6 "Crush Helm" Ability { id: "2680", source: "Rofocale" } +3094.8 "Embrace" Ability { id: "2685", source: "Rofocale" } +3102.8 "Pomp and Circumstance" Ability { id: "268D", source: "Rofocale" } +3104.8 "Maverick" Ability { id: "2689", source: "Rofocale" } +3119.3 "Crush Weapon" Ability { id: "2683", source: "Rofocale" } +3126.3 "Pomp and Circumstance" Ability { id: "268D", source: "Rofocale" } +3142.3 "Crush Helm" Ability { id: "2680", source: "Rofocale" } +3149.5 "Embrace" Ability { id: "2685", source: "Rofocale" } +3156.1 "Trample" Ability { id: "2676", source: "Rofocale" } +3162.9 "Cry of Victory" Ability { id: "274C", source: "Rofocale" } +3169.6 "Trample" Ability { id: "2676", source: "Rofocale" } +3176.4 "Cry of Victory" Ability { id: "274C", source: "Rofocale" } +3189.9 "Crush Weapon" Ability { id: "2683", source: "Rofocale" } # loop -3200.9 "Maverick" sync / 1[56]:[^:]*:Rofocale:2689:/ window 80,80 jump 3068 -3202.1 "Chariot" #sync / 1[56]:[^:]*:Rofocale:2674:/ -3207.4 "Cry of Victory" #sync / 1[56]:[^:]*:Rofocale:2675:/ -3216.5 "Crush Helm" #sync / 1[56]:[^:]*:Rofocale:2680:/ -3227.7 "Embrace" #sync / 1[56]:[^:]*:Rofocale:2685:/ +3200.9 "Maverick" Ability { id: "2689", source: "Rofocale" } window 80,80 jump 3068 +3202.1 "Chariot" #Ability { id: "2674", source: "Rofocale" } +3207.4 "Cry of Victory" #Ability { id: "2675", source: "Rofocale" } +3216.5 "Crush Helm" #Ability { id: "2680", source: "Rofocale" } +3227.7 "Embrace" #Ability { id: "2685", source: "Rofocale" } ### Argath Thadalfus @@ -290,143 +290,143 @@ hideall "--start--" ## Phase 1 # Lesalia Temple Ruins will be sealed off -4000.0 "--start--" sync / 29:[^:]*:7DC:[^:]*:94E:/ window 10000,0 -4006.7 "--sync--" sync / 14:[^:]*:Argath Thadalfus:262D:/ window 20,20 -4009.7 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -4017.9 "Crush Weapon x3" sync / 1[56]:[^:]*:Argath Thadalfus:2628:/ -4023.9 "Soulfix" sync / 1[56]:[^:]*:Argath Thadalfus:262A:/ -4030.0 "Mask Of Truth" sync / 1[56]:[^:]*:Argath Thadalfus:261A:/ -4038.0 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -4049.8 "Fire IV" sync / 1[56]:[^:]*:Argath Thadalfus:262E:/ -4058.1 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ +4000.0 "--start--" SystemLogMessage { id: "7DC", param1: "94E" } window 10000,0 +4006.7 "--sync--" StartsUsing { id: "262D", source: "Argath Thadalfus" } window 20,20 +4009.7 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +4017.9 "Crush Weapon x3" Ability { id: "2628", source: "Argath Thadalfus" } +4023.9 "Soulfix" Ability { id: "262A", source: "Argath Thadalfus" } +4030.0 "Mask Of Truth" Ability { id: "261A", source: "Argath Thadalfus" } +4038.0 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } +4049.8 "Fire IV" Ability { id: "262E", source: "Argath Thadalfus" } +4058.1 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } # Note: adding a larger sync in case there's a push here just to be safe. -4064.3 "--sync--" sync / 14:[^:]*:Argath Thadalfus:2622:/ window 100,10 -4067.3 "Trepidation" sync / 1[56]:[^:]*:Argath Thadalfus:2622:/ -4075.8 "Unrelenting" sync / 1[56]:[^:]*:Argath Thadalfus:262B:/ -4077.3 "Rail Of The Rat 1" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -4080.3 "Rail Of The Rat 2" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -4083.5 "Rail Of The Rat 3" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -4084.1 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -4086.8 "Mask Of Truth" sync / 1[56]:[^:]*:Argath Thadalfus:261A:/ -4094.9 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ +4064.3 "--sync--" StartsUsing { id: "2622", source: "Argath Thadalfus" } window 100,10 +4067.3 "Trepidation" Ability { id: "2622", source: "Argath Thadalfus" } +4075.8 "Unrelenting" Ability { id: "262B", source: "Argath Thadalfus" } +4077.3 "Rail Of The Rat 1" Ability { id: "2624", source: "Argath Thadalfus" } +4080.3 "Rail Of The Rat 2" Ability { id: "2624", source: "Argath Thadalfus" } +4083.5 "Rail Of The Rat 3" Ability { id: "2624", source: "Argath Thadalfus" } +4084.1 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +4086.8 "Mask Of Truth" Ability { id: "261A", source: "Argath Thadalfus" } +4094.9 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } # Can early push (before Trepidation) to Judgment Blade. # TODO: is this an HP push? or is this a bug? I see this in <5% of logs atmost. -4099.0 "--sync--" sync / 14:[^:]*:Argath Thadalfus:2629:/ window 100,10 -4102.0 "Judgment Blade" sync / 1[56]:[^:]*:Argath Thadalfus:2629:/ -4108.3 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -4110.4 "--sync--" sync / 1[56]:[^:]*:Argath Thadalfus:2625:/ -4117.7 "Heartless" sync / 1[56]:[^:]*:Heartless:2632:/ -4120.4 "Coldblood" sync / 1[56]:[^:]*:Argath Thadalfus:2627:/ -4129.2 "Royal Blood" #sync / 1[56]:[^:]*:Argath Thadalfus:261E:/ +4099.0 "--sync--" StartsUsing { id: "2629", source: "Argath Thadalfus" } window 100,10 +4102.0 "Judgment Blade" Ability { id: "2629", source: "Argath Thadalfus" } +4108.3 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +4110.4 "--sync--" Ability { id: "2625", source: "Argath Thadalfus" } +4117.7 "Heartless" Ability { id: "2632", source: "Heartless" } +4120.4 "Coldblood" Ability { id: "2627", source: "Argath Thadalfus" } +4129.2 "Royal Blood" #Ability { id: "261E", source: "Argath Thadalfus" } ## Phase 2: Shades and Shards (percentage push to this, 72%?) -4500.0 "--sync--" sync / 14:[^:]*:Argath Thadalfus:261E:/ window 500,0 -4505.0 "Royal Blood" sync / 1[56]:[^:]*:Argath Thadalfus:261E:/ +4500.0 "--sync--" StartsUsing { id: "261E", source: "Argath Thadalfus" } window 500,0 +4505.0 "Royal Blood" Ability { id: "261E", source: "Argath Thadalfus" } 4505.3 "--Shade Adds--" -4515.2 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -4525.4 "Unrelenting" sync / 1[56]:[^:]*:Argath Thadalfus:262B:/ +4515.2 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +4525.4 "Unrelenting" Ability { id: "262B", source: "Argath Thadalfus" } # => variable amount of time until all shades are dead or explode -4600.0 "--sync--" sync / 14:[^:]*:Argath Thadalfus:261F:/ window 600,0 -4605.0 "Empty Soul" sync / 1[56]:[^:]*:Argath Thadalfus:261F:/ +4600.0 "--sync--" StartsUsing { id: "261F", source: "Argath Thadalfus" } window 600,0 +4605.0 "Empty Soul" Ability { id: "261F", source: "Argath Thadalfus" } 4605.9 "--Shard Adds--" -4607.1 "--sync--" sync / 1[56]:[^:]*:Argath Thadalfus:270B:/ +4607.1 "--sync--" Ability { id: "270B", source: "Argath Thadalfus" } # => variable amount of time until all shards are dead or you wipe -4700.0 "--sync--" sync / 14:[^:]*:Argath Thadalfus:2620:/ window 700,0 -4702.5 "Dark Ultima" sync / 1[56]:[^:]*:Argath Thadalfus:2620:/ -4715.4 "Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:2619:/ -4723.4 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -4732.5 "Gnawing Dread" sync / 1[56]:[^:]*:Argath Thadalfus:2621:/ -4740.7 "Soulfix" sync / 1[56]:[^:]*:Argath Thadalfus:262A:/ -4746.6 "Unrelenting" sync / 1[56]:[^:]*:Argath Thadalfus:262B:/ -4756.5 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -4762.7 "Soulfix" sync / 1[56]:[^:]*:Argath Thadalfus:262A:/ -4771.9 "Crush Weapon" sync / 1[56]:[^:]*:Argath Thadalfus:2628:/ -4777.2 "Unrelenting" sync / 1[56]:[^:]*:Argath Thadalfus:262B:/ -4786.4 "Fire IV" sync / 1[56]:[^:]*:Argath Thadalfus:262E:/ +4700.0 "--sync--" StartsUsing { id: "2620", source: "Argath Thadalfus" } window 700,0 +4702.5 "Dark Ultima" Ability { id: "2620", source: "Argath Thadalfus" } +4715.4 "Mask Of Lies" Ability { id: "2619", source: "Argath Thadalfus" } +4723.4 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } +4732.5 "Gnawing Dread" Ability { id: "2621", source: "Argath Thadalfus" } +4740.7 "Soulfix" Ability { id: "262A", source: "Argath Thadalfus" } +4746.6 "Unrelenting" Ability { id: "262B", source: "Argath Thadalfus" } +4756.5 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +4762.7 "Soulfix" Ability { id: "262A", source: "Argath Thadalfus" } +4771.9 "Crush Weapon" Ability { id: "2628", source: "Argath Thadalfus" } +4777.2 "Unrelenting" Ability { id: "262B", source: "Argath Thadalfus" } +4786.4 "Fire IV" Ability { id: "262E", source: "Argath Thadalfus" } # => natural push into phase 3 # (probably, based on https://www.fflogs.com/reports/8Wmfp6FZ72DtcjKn#fight=last at hp=67%) ## Phase 3: ~45% (can push early) -4795.0 "Mask Of Truth/Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ window 100,10 -4803.0 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -4813.6 "Mask Of Truth/Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ -4821.8 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -4828.8 "Judgment Blade?" sync / 1[56]:[^:]*:Argath Thadalfus:2629:/ window 100,100 jump 5000 -4830.7 "Gnawing Dread?" sync / 1[56]:[^:]*:Argath Thadalfus:2621:/ window 100,100 jump 5300 +4795.0 "Mask Of Truth/Mask Of Lies" Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } window 100,10 +4803.0 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } +4813.6 "Mask Of Truth/Mask Of Lies" Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } +4821.8 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } +4828.8 "Judgment Blade?" Ability { id: "2629", source: "Argath Thadalfus" } window 100,100 jump 5000 +4830.7 "Gnawing Dread?" Ability { id: "2621", source: "Argath Thadalfus" } window 100,100 jump 5300 ## Phase 4a: Judgment blade first -5000.0 "Judgment Blade" sync / 1[56]:[^:]*:Argath Thadalfus:2629:/ -5006.1 "Unrelenting" sync / 1[56]:[^:]*:Argath Thadalfus:262B:/ -5008.2 "--sync--" sync / 1[56]:[^:]*:Argath Thadalfus:2625:/ -5015.9 "Heartless" sync / 1[56]:[^:]*:Heartless:2632:/ -5018.2 "Coldblood" sync / 1[56]:[^:]*:Argath Thadalfus:2627:/ -5032.2 "Fire IV" sync / 1[56]:[^:]*:Argath Thadalfus:262E:/ -5040.4 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -5045.5 "Trepidation" sync / 1[56]:[^:]*:Argath Thadalfus:2622:/ -5050.6 "Crush Weapon" sync / 1[56]:[^:]*:Argath Thadalfus:2628:/ -5055.6 "Rail Of The Rat 1" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -5058.6 "Rail Of The Rat 2" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -5061.6 "Rail Of The Rat 3" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -5065.8 "Soulfix" sync / 1[56]:[^:]*:Argath Thadalfus:262A:/ -5076.4 "Mask Of Truth/Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ -5084.5 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -5095.0 "Mask Of Truth/Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ -5103.1 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -5112.0 "Gnawing Dread" sync / 1[56]:[^:]*:Argath Thadalfus:2621:/ -5114.1 "--sync--" sync / 1[56]:[^:]*:Argath Thadalfus:2625:/ -5128.1 "Coldblood (Hole In One)" sync / 1[56]:[^:]*:Argath Thadalfus:2626:/ -5135.3 "Soulfix" sync / 1[56]:[^:]*:Argath Thadalfus:262A:/ -5148.2 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -5159.5 "Gnawing Dread" sync / 1[56]:[^:]*:Argath Thadalfus:2621:/ -5168.7 "Crush Weapon" sync / 1[56]:[^:]*:Argath Thadalfus:2628:/ -5173.9 "Unrelenting" sync / 1[56]:[^:]*:Argath Thadalfus:262B:/ -5180.0 "Fire IV" sync / 1[56]:[^:]*:Argath Thadalfus:262E:/ -5189.1 "Fire IV" sync / 1[56]:[^:]*:Argath Thadalfus:262E:/ -5197.1 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ +5000.0 "Judgment Blade" Ability { id: "2629", source: "Argath Thadalfus" } +5006.1 "Unrelenting" Ability { id: "262B", source: "Argath Thadalfus" } +5008.2 "--sync--" Ability { id: "2625", source: "Argath Thadalfus" } +5015.9 "Heartless" Ability { id: "2632", source: "Heartless" } +5018.2 "Coldblood" Ability { id: "2627", source: "Argath Thadalfus" } +5032.2 "Fire IV" Ability { id: "262E", source: "Argath Thadalfus" } +5040.4 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +5045.5 "Trepidation" Ability { id: "2622", source: "Argath Thadalfus" } +5050.6 "Crush Weapon" Ability { id: "2628", source: "Argath Thadalfus" } +5055.6 "Rail Of The Rat 1" Ability { id: "2624", source: "Argath Thadalfus" } +5058.6 "Rail Of The Rat 2" Ability { id: "2624", source: "Argath Thadalfus" } +5061.6 "Rail Of The Rat 3" Ability { id: "2624", source: "Argath Thadalfus" } +5065.8 "Soulfix" Ability { id: "262A", source: "Argath Thadalfus" } +5076.4 "Mask Of Truth/Mask Of Lies" Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } +5084.5 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } +5095.0 "Mask Of Truth/Mask Of Lies" Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } +5103.1 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } +5112.0 "Gnawing Dread" Ability { id: "2621", source: "Argath Thadalfus" } +5114.1 "--sync--" Ability { id: "2625", source: "Argath Thadalfus" } +5128.1 "Coldblood (Hole In One)" Ability { id: "2626", source: "Argath Thadalfus" } +5135.3 "Soulfix" Ability { id: "262A", source: "Argath Thadalfus" } +5148.2 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +5159.5 "Gnawing Dread" Ability { id: "2621", source: "Argath Thadalfus" } +5168.7 "Crush Weapon" Ability { id: "2628", source: "Argath Thadalfus" } +5173.9 "Unrelenting" Ability { id: "262B", source: "Argath Thadalfus" } +5180.0 "Fire IV" Ability { id: "262E", source: "Argath Thadalfus" } +5189.1 "Fire IV" Ability { id: "262E", source: "Argath Thadalfus" } +5197.1 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } # loop -5207.2 "Mask Of Truth/Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ window 100,100 jump 4795 -5215.3 "The Word" #sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -5225.6 "Mask Of Truth/Mask Of Lies" #sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ -5233.7 "The Word" #sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ +5207.2 "Mask Of Truth/Mask Of Lies" Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } window 100,100 jump 4795 +5215.3 "The Word" #Ability { id: "24A0", source: "Argath Thadalfus" } +5225.6 "Mask Of Truth/Mask Of Lies" #Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } +5233.7 "The Word" #Ability { id: "24A0", source: "Argath Thadalfus" } ## Phase 4b: Putt Putt first -5300.0 "Gnawing Dread" sync / 1[56]:[^:]*:Argath Thadalfus:2621:/ -5302.1 "--sync--" sync / 1[56]:[^:]*:Argath Thadalfus:2625:/ -5316.0 "Coldblood (Hole In One)" sync / 1[56]:[^:]*:Argath Thadalfus:2626:/ -5323.2 "Soulfix" sync / 1[56]:[^:]*:Argath Thadalfus:262A:/ -5337.2 "Fire IV" sync / 1[56]:[^:]*:Argath Thadalfus:262E:/ -5345.5 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -5350.7 "Trepidation" sync / 1[56]:[^:]*:Argath Thadalfus:2622:/ -5355.8 "Crush Weapon" sync / 1[56]:[^:]*:Argath Thadalfus:2628:/ -5360.8 "Rail Of The Rat 1" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -5363.8 "Rail Of The Rat 2" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -5366.9 "Rail Of The Rat 3" sync / 1[56]:[^:]*:Argath Thadalfus:2624:/ -5371.1 "Soulfix" sync / 1[56]:[^:]*:Argath Thadalfus:262A:/ -5384.3 "Mask Of Truth/Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ -5392.3 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -5402.9 "Mask Of Truth/Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ -5411.1 "The Word" sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -5418.0 "Judgment Blade" sync / 1[56]:[^:]*:Argath Thadalfus:2629:/ -5424.4 "Unrelenting" sync / 1[56]:[^:]*:Argath Thadalfus:262B:/ -5426.5 "--sync--" sync / 1[56]:[^:]*:Argath Thadalfus:2625:/ -5433.9 "Heartless" sync / 1[56]:[^:]*:Heartless:2632:/ -5436.6 "Coldblood" sync / 1[56]:[^:]*:Argath Thadalfus:2627:/ -5449.5 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ -5460.7 "Gnawing Dread" sync / 1[56]:[^:]*:Argath Thadalfus:2621:/ -5469.9 "Crush Weapon" sync / 1[56]:[^:]*:Argath Thadalfus:2628:/ -5475.1 "Unrelenting" sync / 1[56]:[^:]*:Argath Thadalfus:262B:/ -5481.2 "Fire IV" sync / 1[56]:[^:]*:Argath Thadalfus:262E:/ -5490.3 "Fire IV" sync / 1[56]:[^:]*:Argath Thadalfus:262E:/ -5498.3 "Crippling Blow" sync / 1[56]:[^:]*:Argath Thadalfus:262D:/ +5300.0 "Gnawing Dread" Ability { id: "2621", source: "Argath Thadalfus" } +5302.1 "--sync--" Ability { id: "2625", source: "Argath Thadalfus" } +5316.0 "Coldblood (Hole In One)" Ability { id: "2626", source: "Argath Thadalfus" } +5323.2 "Soulfix" Ability { id: "262A", source: "Argath Thadalfus" } +5337.2 "Fire IV" Ability { id: "262E", source: "Argath Thadalfus" } +5345.5 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +5350.7 "Trepidation" Ability { id: "2622", source: "Argath Thadalfus" } +5355.8 "Crush Weapon" Ability { id: "2628", source: "Argath Thadalfus" } +5360.8 "Rail Of The Rat 1" Ability { id: "2624", source: "Argath Thadalfus" } +5363.8 "Rail Of The Rat 2" Ability { id: "2624", source: "Argath Thadalfus" } +5366.9 "Rail Of The Rat 3" Ability { id: "2624", source: "Argath Thadalfus" } +5371.1 "Soulfix" Ability { id: "262A", source: "Argath Thadalfus" } +5384.3 "Mask Of Truth/Mask Of Lies" Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } +5392.3 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } +5402.9 "Mask Of Truth/Mask Of Lies" Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } +5411.1 "The Word" Ability { id: "24A0", source: "Argath Thadalfus" } +5418.0 "Judgment Blade" Ability { id: "2629", source: "Argath Thadalfus" } +5424.4 "Unrelenting" Ability { id: "262B", source: "Argath Thadalfus" } +5426.5 "--sync--" Ability { id: "2625", source: "Argath Thadalfus" } +5433.9 "Heartless" Ability { id: "2632", source: "Heartless" } +5436.6 "Coldblood" Ability { id: "2627", source: "Argath Thadalfus" } +5449.5 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } +5460.7 "Gnawing Dread" Ability { id: "2621", source: "Argath Thadalfus" } +5469.9 "Crush Weapon" Ability { id: "2628", source: "Argath Thadalfus" } +5475.1 "Unrelenting" Ability { id: "262B", source: "Argath Thadalfus" } +5481.2 "Fire IV" Ability { id: "262E", source: "Argath Thadalfus" } +5490.3 "Fire IV" Ability { id: "262E", source: "Argath Thadalfus" } +5498.3 "Crippling Blow" Ability { id: "262D", source: "Argath Thadalfus" } # loop -5508.4 "Mask Of Truth/Mask Of Lies" sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ window 100,100 jump 4795 -5516.5 "The Word" #sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ -5526.8 "Mask Of Truth/Mask Of Lies" #sync / 1[56]:[^:]*:Argath Thadalfus:(2619|261A):/ -5534.9 "The Word" #sync / 1[56]:[^:]*:Argath Thadalfus:24A0:/ +5508.4 "Mask Of Truth/Mask Of Lies" Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } window 100,100 jump 4795 +5516.5 "The Word" #Ability { id: "24A0", source: "Argath Thadalfus" } +5526.8 "Mask Of Truth/Mask Of Lies" #Ability { id: ["2619", "261A"], source: "Argath Thadalfus" } +5534.9 "The Word" #Ability { id: "24A0", source: "Argath Thadalfus" } diff --git a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_21-30.ts b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_21-30.ts index b5124f1c94..b8a8cdaa47 100644 --- a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_21-30.ts +++ b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_21-30.ts @@ -38,6 +38,7 @@ const triggerSet: TriggerSet = { text: { en: 'Stand under a cloud', de: 'Steh unter einer Wolke', + fr: 'Restez sous un nuage', cn: '站在一朵云下', ko: '구름 아래에 서기', }, diff --git a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_51-60.ts b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_51-60.ts index 9aa2864aae..119bc3d671 100644 --- a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_51-60.ts +++ b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_51-60.ts @@ -25,6 +25,7 @@ const triggerSet: TriggerSet = { text: { en: 'Get Behind or Look Away', de: 'Geh hinter oder schau weg', + fr: 'Allez derrière ou Regardez ailleurs', cn: '去背后或看向其他方向', ko: '보스 뒤로 또는 뒤돌기', }, diff --git a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_61-70.ts b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_61-70.ts index d23af2c651..fa6ce18418 100644 --- a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_61-70.ts +++ b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_61-70.ts @@ -45,6 +45,7 @@ const triggerSet: TriggerSet = { text: { en: 'Avoid Puddle', de: 'Flächen vermeiden', + fr: 'Évitez la zone au sol', cn: '躲避圈圈', ko: '장판 피하기', }, @@ -85,6 +86,7 @@ const triggerSet: TriggerSet = { text: { en: 'Out of Puddle', de: 'Raus aus der Fläche', + fr: 'À l\'extérieur de la zone au sol', cn: '离开圈圈', ko: '장판 밖으로', }, diff --git a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_81-90.ts b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_81-90.ts index 0d8881d46d..bab9304fc3 100644 --- a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_81-90.ts +++ b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_floors_81-90.ts @@ -30,6 +30,7 @@ const triggerSet: TriggerSet = { interruptOrOut: { en: 'Out or interrupt ${name}', de: 'Raus oder unterbreche ${name}', + fr: 'Extérieur ou interrompez ${name}', cn: '出去或打断 ${name}', ko: '밖으로 또는 ${name} 시전 끊기', }, @@ -50,6 +51,7 @@ const triggerSet: TriggerSet = { interruptOrUnder: { en: 'Get Under or interrupt ${name}', de: 'Unter oder unterbreche ${name}', + fr: 'Dessous ou interrompez ${name}', cn: '去脚下或打断 ${name}', ko: '밑으로 또는 ${name} 시전 끊기', }, diff --git a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_general.ts b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_general.ts index e064d01807..345568f130 100644 --- a/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_general.ts +++ b/ui/raidboss/data/04-sb/deepdungeon/heaven-on-high_general.ts @@ -24,6 +24,7 @@ const triggerSet: TriggerSet = { zoneLabel: { en: 'Heaven-on-High (All Floors)', de: 'Himmelssäule (Alle Ebenen)', + fr: 'Pilier des cieux (Tous niveaux)', cn: '天之御柱 (全楼层)', ko: '천궁탑 (전체 층)', }, @@ -43,6 +44,7 @@ const triggerSet: TriggerSet = { text: { en: 'Quivering Coffer spawned!', de: 'zuckende Schnapptruhe ist erschienen', + fr: 'Coffre gigotant apparaît !', cn: '已生成 抖动的宝箱!', ko: '꿈틀거리는 보물상자 등장!', }, @@ -109,6 +111,7 @@ const triggerSet: TriggerSet = { duplicate: { en: '${pomander} duplicate', de: 'Doppelter ${pomander}', + fr: '${pomander} dupliquée', cn: '${pomander} 重复', ko: '${pomander} 중복', }, @@ -116,7 +119,7 @@ const triggerSet: TriggerSet = { safety: { en: 'Safety', de: 'Siegelbruchs', - fr: 'désamorçage', + fr: 'Désamorçage', ja: '呪印解除', cn: '咒印解除', ko: '함정 해제', @@ -124,7 +127,7 @@ const triggerSet: TriggerSet = { sight: { en: 'Sight', de: 'Sicht', - fr: 'localisation', + fr: 'Localisation', ja: 'サイトロ', cn: '全景', ko: '사이트로', @@ -132,7 +135,7 @@ const triggerSet: TriggerSet = { strength: { en: 'Strength', de: 'Stärkung', - fr: 'puissance', + fr: 'Puissance', ja: '自己強化', cn: '强化自身', ko: '자기 강화', @@ -140,7 +143,7 @@ const triggerSet: TriggerSet = { steel: { en: 'Steel', de: 'Abwehr', - fr: 'protection', + fr: 'Protection', ja: '防御強化', cn: '强化防御', ko: '방어 강화', @@ -148,7 +151,7 @@ const triggerSet: TriggerSet = { affluence: { en: 'Affluence', de: 'Schätze', - fr: 'décèlement', + fr: 'Décèlement', ja: '宝箱増加', cn: '宝箱增加', ko: '보물상자 증가', @@ -156,7 +159,7 @@ const triggerSet: TriggerSet = { flight: { en: 'Flight', de: 'Feindtods', - fr: 'sécurisation', + fr: 'Sécurisation', ja: '敵排除', cn: '减少敌人', ko: '적 감소', @@ -164,7 +167,7 @@ const triggerSet: TriggerSet = { alteration: { en: 'Alteration', de: 'Feindwandlung', - fr: 'affaiblissement', + fr: 'Affaiblissement', ja: '敵変化', cn: '改变敌人', ko: '적 대체', @@ -172,7 +175,7 @@ const triggerSet: TriggerSet = { purity: { en: 'Purity', de: 'Entzauberung', - fr: 'anti-maléfice', + fr: 'Anti-maléfice', ja: '解呪', cn: '解咒', ko: '저주 해제', @@ -180,7 +183,7 @@ const triggerSet: TriggerSet = { fortune: { en: 'Fortune', de: 'Glücks', - fr: 'chance', + fr: 'Chance', ja: '運気上昇', cn: '运气上升', ko: '운 상승', @@ -188,7 +191,7 @@ const triggerSet: TriggerSet = { witching: { en: 'Witching', de: 'Wandlung', - fr: 'mutation', + fr: 'Mutation', ja: '形態変化', cn: '形态变化', ko: '적 변형', @@ -196,7 +199,7 @@ const triggerSet: TriggerSet = { serenity: { en: 'Serenity', de: 'Enthexung', - fr: 'dissipation', + fr: 'Dissipation', ja: '魔法効果解除', cn: '魔法效果解除', ko: '마법 효과 해제', @@ -204,7 +207,7 @@ const triggerSet: TriggerSet = { rage: { en: 'Rage', de: 'Manticoren', - fr: 'manticore', + fr: 'Manticore', ja: 'マンティコア化', cn: '曼提克化', ko: '만티코어 변신', @@ -212,7 +215,7 @@ const triggerSet: TriggerSet = { lust: { en: 'Lust', de: 'Sukkuben', - fr: 'succube', + fr: 'Succube', ja: 'サキュバス化', cn: '梦魔化', ko: '서큐버스 변신', @@ -220,7 +223,7 @@ const triggerSet: TriggerSet = { intuition: { en: 'Intuition', de: 'Finders', - fr: 'intuition', + fr: 'Intuition', ja: '財宝感知', cn: '感知宝藏', ko: '보물 탐지', @@ -228,7 +231,7 @@ const triggerSet: TriggerSet = { raising: { en: 'Raising', de: 'Lebens', - fr: 'résurrection', + fr: 'Résurrection', ja: 'リレイズ', cn: '重生', ko: '리레이즈', @@ -244,7 +247,7 @@ const triggerSet: TriggerSet = { frailty: { en: 'Frailty', de: 'Feindschwächung', - fr: 'incapacité', + fr: 'Incapacité', ja: '敵弱体', cn: '弱化敌人', ko: '적 약화', @@ -252,7 +255,7 @@ const triggerSet: TriggerSet = { concealment: { en: 'Concealment', de: 'Verschwindens', - fr: 'invisibilité', + fr: 'Invisibilité', ja: 'バニシュ', cn: '隐形', ko: '배니시', @@ -260,7 +263,7 @@ const triggerSet: TriggerSet = { petrification: { en: 'Petrification', de: 'Feindversteinerung', - fr: 'pétrification', + fr: 'Pétrification', ja: '敵石化', cn: '石化敌人', ko: '적 석화', @@ -289,6 +292,7 @@ const triggerSet: TriggerSet = { duplicate: { en: '${magicite} duplicate', de: 'Doppelter ${magicite} Stein', + fr: '${magicite} dupliquée', cn: '${magicite} 重复', ko: '${magicite} 중복', }, @@ -340,6 +344,7 @@ const triggerSet: TriggerSet = { text: { en: 'Beacon of Passage activated', de: 'Weglaterne aktiviert', + fr: 'La lanterne de téléportation s\'est activée !', cn: '转移灯笼已启动', ko: '전송 등불 활성화', }, @@ -356,7 +361,7 @@ const triggerSet: TriggerSet = { { 'locale': 'fr', 'replaceSync': { - 'Quivering Coffer': 'coffre gigotant', + 'Quivering Coffer': 'Coffre gigotant', }, }, { diff --git a/ui/raidboss/data/04-sb/dungeon/ala_mhigo.txt b/ui/raidboss/data/04-sb/dungeon/ala_mhigo.txt index 47fb0fcc42..6267caed7a 100644 --- a/ui/raidboss/data/04-sb/dungeon/ala_mhigo.txt +++ b/ui/raidboss/data/04-sb/dungeon/ala_mhigo.txt @@ -5,21 +5,21 @@ hideall "--sync--" # -ii 2049 204A 204B 204C # boss will walk center before using 2048 Tail Laser, causes timeline drift # Rhalgr's Gate will be sealed off -0.0 "--Start--" sync / 29:[^:]*:7DC:[^:]*:8F1:/ -9.6 "Electromagnetic Field" sync / 1[56]:[^:]*:Magitek Scorpion:204D:/ window 10,5 -18.8 "Target Search" sync / 1[56]:[^:]*:Magitek Scorpion:2046:/ -29.4 "Lock On" sync / 1[56]:[^:]*:Magitek Scorpion:2047:/ -31.5 "Tail Laser" sync / 1[56]:[^:]*:Magitek Scorpion:2048:/ window 5,5 -56.7 "Electromagnetic Field" sync / 1[56]:[^:]*:Magitek Scorpion:204D:/ - -64.9 "Target Search" sync / 1[56]:[^:]*:Magitek Scorpion:2046:/ -72.2 "Tail Laser" sync / 1[56]:[^:]*:Magitek Scorpion:2048:/ window 5,5 -75.5 "Lock On" sync / 1[56]:[^:]*:Magitek Scorpion:2047:/ -85.5 "Tail Laser" sync / 1[56]:[^:]*:Magitek Scorpion:2048:/ window 5,5 -93.9 "Lock On" sync / 1[56]:[^:]*:Magitek Scorpion:2047:/ -101.6 "Electromagnetic Field" sync / 1[56]:[^:]*:Magitek Scorpion:204D:/ -111.8 "Electromagnetic Field" sync / 1[56]:[^:]*:Magitek Scorpion:204D:/ -126.0 "Electromagnetic Field" sync / 1[56]:[^:]*:Magitek Scorpion:204D:/ jump 56.7 +0.0 "--Start--" SystemLogMessage { id: "7DC", param1: "8F1" } +9.6 "Electromagnetic Field" Ability { id: "204D", source: "Magitek Scorpion" } window 10,5 +18.8 "Target Search" Ability { id: "2046", source: "Magitek Scorpion" } +29.4 "Lock On" Ability { id: "2047", source: "Magitek Scorpion" } +31.5 "Tail Laser" Ability { id: "2048", source: "Magitek Scorpion" } window 5,5 +56.7 "Electromagnetic Field" Ability { id: "204D", source: "Magitek Scorpion" } + +64.9 "Target Search" Ability { id: "2046", source: "Magitek Scorpion" } +72.2 "Tail Laser" Ability { id: "2048", source: "Magitek Scorpion" } window 5,5 +75.5 "Lock On" Ability { id: "2047", source: "Magitek Scorpion" } +85.5 "Tail Laser" Ability { id: "2048", source: "Magitek Scorpion" } window 5,5 +93.9 "Lock On" Ability { id: "2047", source: "Magitek Scorpion" } +101.6 "Electromagnetic Field" Ability { id: "204D", source: "Magitek Scorpion" } +111.8 "Electromagnetic Field" Ability { id: "204D", source: "Magitek Scorpion" } +126.0 "Electromagnetic Field" Ability { id: "204D", source: "Magitek Scorpion" } jump 56.7 134.2 "Target Search" 141.5 "Tail Laser" @@ -30,85 +30,85 @@ hideall "--sync--" # Aulus Mal Asina # -ii 2051 2052 205E # The Chamber of Knowledge will be sealed off -1000.0 "--Start--" sync / 29:[^:]*:7DC:[^:]*:8F2:/ window 1000,5 -1013.0 "Mana Burst" sync / 1[56]:[^:]*:Aulus mal Asina:204F:/ window 14,5 -1019.1 "Order to Charge" sync / 1[56]:[^:]*:Aulus mal Asina:2057:/ -1020.0 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:2053:/ -1025.3 "Order to Fire" sync / 1[56]:[^:]*:Aulus mal Asina:2058:/ -1028.9 "Aetherochemical Grenado" sync / 1[56]:[^:]*:Prototype Bit:205A:/ -1033.3 "Integrated Aetheromodulator" sync / 1[56]:[^:]*:Prototype Bit:205B:/ -1035.3 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:2053:/ -1053.3 "Mana Burst" sync / 1[56]:[^:]*:Aulus mal Asina:204F:/ -1059.4 "Order to Charge" sync / 1[56]:[^:]*:Aulus mal Asina:2057:/ +1000.0 "--Start--" SystemLogMessage { id: "7DC", param1: "8F2" } window 1000,5 +1013.0 "Mana Burst" Ability { id: "204F", source: "Aulus mal Asina" } window 14,5 +1019.1 "Order to Charge" Ability { id: "2057", source: "Aulus mal Asina" } +1020.0 "--sync--" Ability { id: "2053", source: "Prototype Bit" } +1025.3 "Order to Fire" Ability { id: "2058", source: "Aulus mal Asina" } +1028.9 "Aetherochemical Grenado" Ability { id: "205A", source: "Prototype Bit" } +1033.3 "Integrated Aetheromodulator" Ability { id: "205B", source: "Prototype Bit" } +1035.3 "--sync--" Ability { id: "2053", source: "Prototype Bit" } +1053.3 "Mana Burst" Ability { id: "204F", source: "Aulus mal Asina" } +1059.4 "Order to Charge" Ability { id: "2057", source: "Aulus mal Asina" } # Phase 1 loop -1060.3 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:2053:/ jump 1020.0 -1065.6 "Order to Fire" #sync / 1[56]:[^:]*:Aulus mal Asina:2058:/ -1069.2 "Aetherochemical Grenado" #sync / 1[56]:[^:]*:Prototype Bit:205A:/ -1073.7 "Integrated Aetheromodulator" #sync / 1[56]:[^:]*:Prototype Bit:205B:/ -1075.7 "--sync--" #sync / 1[56]:[^:]*:Prototype Bit:2053:/ -1093.7 "Mana Burst" #sync / 1[56]:[^:]*:Aulus mal Asina:204F:/ -1099.8 "Order to Charge" #sync / 1[56]:[^:]*:Aulus mal Asina:2057:/ +1060.3 "--sync--" Ability { id: "2053", source: "Prototype Bit" } jump 1020.0 +1065.6 "Order to Fire" #Ability { id: "2058", source: "Aulus mal Asina" } +1069.2 "Aetherochemical Grenado" #Ability { id: "205A", source: "Prototype Bit" } +1073.7 "Integrated Aetheromodulator" #Ability { id: "205B", source: "Prototype Bit" } +1075.7 "--sync--" #Ability { id: "2053", source: "Prototype Bit" } +1093.7 "Mana Burst" #Ability { id: "204F", source: "Aulus mal Asina" } +1099.8 "Order to Charge" #Ability { id: "2057", source: "Aulus mal Asina" } # Intermission at <= 60% HP -1500.0 "--sync--" sync / 14:[^:]*:Aulus Mal Asina:2050:/ window 500,1 -1503.0 "Magitek Disruptor" sync / 1[56]:[^:]*:Aulus mal Asina:2050:/ -1508.0 "Mindjack" sync / 1[56]:[^:]*:Aulus mal Asina:204E:/ -1509.2 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:2053:/ -1517.8 "Magitek Ray" sync / 1[56]:[^:]*:Prototype Bit:2054:/ -1522.2 "Magitek Ray" sync / 1[56]:[^:]*:Prototype Bit:2054:/ jump 1517.8 +1500.0 "--sync--" StartsUsing { id: "2050", source: "Aulus Mal Asina" } window 500,1 +1503.0 "Magitek Disruptor" Ability { id: "2050", source: "Aulus mal Asina" } +1508.0 "Mindjack" Ability { id: "204E", source: "Aulus mal Asina" } +1509.2 "--sync--" Ability { id: "2053", source: "Prototype Bit" } +1517.8 "Magitek Ray" Ability { id: "2054", source: "Prototype Bit" } +1522.2 "Magitek Ray" Ability { id: "2054", source: "Prototype Bit" } jump 1517.8 1528.3 "Magitek Ray" 1534.3 "Magitek Ray" 1540.3 "Magitek Ray" 1546.3 "Magitek Ray" # Phase 2 -1600.0 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:2053:/ window 85,1 -1615.0 "Mana Burst" sync / 1[56]:[^:]*:Aulus mal Asina:204F:/ -1621.1 "Order to Charge" sync / 1[56]:[^:]*:Aulus mal Asina:2057:/ - -1622.0 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:2053:/ -1627.3 "Order to Fire" sync / 1[56]:[^:]*:Aulus mal Asina:2058:/ -1630.3 "Integrated Aetheromodulator" sync / 1[56]:[^:]*:Prototype Bit:205B:/ -1630.7 "Aetherochemical Grenado" sync / 1[56]:[^:]*:Prototype Bit:205A:/ -1635.2 "Integrated Aetheromodulator" sync / 1[56]:[^:]*:Prototype Bit:205B:/ -1635.2 "Demimagicks" sync / 1[56]:[^:]*:Aulus mal Asina:205D:/ -1637.3 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:2053:/ -1645.3 "Mana Burst" sync / 1[56]:[^:]*:Aulus mal Asina:204F:/ -1658.5 "Mana Burst" sync / 1[56]:[^:]*:Aulus mal Asina:204F:/ -1664.6 "Order to Charge" sync / 1[56]:[^:]*:Aulus mal Asina:2057:/ +1600.0 "--sync--" Ability { id: "2053", source: "Prototype Bit" } window 85,1 +1615.0 "Mana Burst" Ability { id: "204F", source: "Aulus mal Asina" } +1621.1 "Order to Charge" Ability { id: "2057", source: "Aulus mal Asina" } + +1622.0 "--sync--" Ability { id: "2053", source: "Prototype Bit" } +1627.3 "Order to Fire" Ability { id: "2058", source: "Aulus mal Asina" } +1630.3 "Integrated Aetheromodulator" Ability { id: "205B", source: "Prototype Bit" } +1630.7 "Aetherochemical Grenado" Ability { id: "205A", source: "Prototype Bit" } +1635.2 "Integrated Aetheromodulator" Ability { id: "205B", source: "Prototype Bit" } +1635.2 "Demimagicks" Ability { id: "205D", source: "Aulus mal Asina" } +1637.3 "--sync--" Ability { id: "2053", source: "Prototype Bit" } +1645.3 "Mana Burst" Ability { id: "204F", source: "Aulus mal Asina" } +1658.5 "Mana Burst" Ability { id: "204F", source: "Aulus mal Asina" } +1664.6 "Order to Charge" Ability { id: "2057", source: "Aulus mal Asina" } # Phase 2 loop -1665.5 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:2053:/ jump 1622.0 -1670.8 "Order to Fire" #sync / 1[56]:[^:]*:Aulus mal Asina:2058:/ -1673.8 "Integrated Aetheromodulator" #sync / 1[56]:[^:]*:Prototype Bit:205B:/ -1674.4 "Aetherochemical Grenado" #sync / 1[56]:[^:]*:Prototype Bit:205A:/ -1678.8 "Integrated Aetheromodulator" #sync / 1[56]:[^:]*:Prototype Bit:205B:/ -1678.8 "Demimagicks" #sync / 1[56]:[^:]*:Aulus mal Asina:205D:/ -1680.9 "--sync--" #sync / 1[56]:[^:]*:Prototype Bit:2053:/ -1688.9 "Mana Burst" #sync / 1[56]:[^:]*:Aulus mal Asina:204F:/ -1702.1 "Mana Burst" #sync / 1[56]:[^:]*:Aulus mal Asina:204F:/ -1708.2 "Order to Charge" #sync / 1[56]:[^:]*:Aulus mal Asina:2057:/ +1665.5 "--sync--" Ability { id: "2053", source: "Prototype Bit" } jump 1622.0 +1670.8 "Order to Fire" #Ability { id: "2058", source: "Aulus mal Asina" } +1673.8 "Integrated Aetheromodulator" #Ability { id: "205B", source: "Prototype Bit" } +1674.4 "Aetherochemical Grenado" #Ability { id: "205A", source: "Prototype Bit" } +1678.8 "Integrated Aetheromodulator" #Ability { id: "205B", source: "Prototype Bit" } +1678.8 "Demimagicks" #Ability { id: "205D", source: "Aulus mal Asina" } +1680.9 "--sync--" #Ability { id: "2053", source: "Prototype Bit" } +1688.9 "Mana Burst" #Ability { id: "204F", source: "Aulus mal Asina" } +1702.1 "Mana Burst" #Ability { id: "204F", source: "Aulus mal Asina" } +1708.2 "Order to Charge" #Ability { id: "2057", source: "Aulus mal Asina" } # Zenos Yae Galvus # -ii 2061 2062 2064 2067 2069 2589 # boss will walk center before using 2065/2066/2068 Art of the Swell/Storm/Sword, causes timeline drift # The Hall of the Griffin will be sealed off -2000.0 "--Start--" sync / 29:[^:]*:7DC:[^:]*:8F3:/ window 2000,5 -2009.7 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:205F:/ window 10,5 -2023.4 "Storm?/Swell?" sync / 1[56]:[^:]*:Zenos Yae Galvus:206[56]:/ window 5,5 - -2032.8 "Unmoving Troika" sync / 1[56]:[^:]*:Zenos Yae Galvus:2060:/ -2050.6 "Storm?/Swell?" sync / 1[56]:[^:]*:Zenos Yae Galvus:206[56]:/ window 5,5 -2059.3 "Art of the Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:2068:/ window 5,5 -2068.5 "Unmoving Troika" sync / 1[56]:[^:]*:Zenos Yae Galvus:2060:/ - -2088.4 "Storm?/Swell?" sync / 1[56]:[^:]*:Zenos Yae Galvus:206[56]:/ window 5,5 -2097.1 "Art of the Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:2068:/ window 5,5 -2106.4 "Unmoving Troika" sync / 1[56]:[^:]*:Zenos Yae Galvus:2060:/ -2126.2 "Storm?/Swell?" sync / 1[56]:[^:]*:Zenos Yae Galvus:206[56]:/ window 5,5 -2134.9 "Art of the Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:2068:/ window 5,5 -2144.2 "Unmoving Troika" sync / 1[56]:[^:]*:Zenos Yae Galvus:2060:/ jump 2068.5 +2000.0 "--Start--" SystemLogMessage { id: "7DC", param1: "8F3" } window 2000,5 +2009.7 "--sync--" Ability { id: "205F", source: "Zenos Yae Galvus" } window 10,5 +2023.4 "Storm?/Swell?" Ability { id: "206[56]", source: "Zenos Yae Galvus" } window 5,5 + +2032.8 "Unmoving Troika" Ability { id: "2060", source: "Zenos Yae Galvus" } +2050.6 "Storm?/Swell?" Ability { id: "206[56]", source: "Zenos Yae Galvus" } window 5,5 +2059.3 "Art of the Sword" Ability { id: "2068", source: "Zenos Yae Galvus" } window 5,5 +2068.5 "Unmoving Troika" Ability { id: "2060", source: "Zenos Yae Galvus" } + +2088.4 "Storm?/Swell?" Ability { id: "206[56]", source: "Zenos Yae Galvus" } window 5,5 +2097.1 "Art of the Sword" Ability { id: "2068", source: "Zenos Yae Galvus" } window 5,5 +2106.4 "Unmoving Troika" Ability { id: "2060", source: "Zenos Yae Galvus" } +2126.2 "Storm?/Swell?" Ability { id: "206[56]", source: "Zenos Yae Galvus" } window 5,5 +2134.9 "Art of the Sword" Ability { id: "2068", source: "Zenos Yae Galvus" } window 5,5 +2144.2 "Unmoving Troika" Ability { id: "2060", source: "Zenos Yae Galvus" } jump 2068.5 2164.0 "Storm?/Swell?" 2172.7 "Art of the Sword" @@ -118,20 +118,20 @@ hideall "--sync--" 2219.8 "Unmoving Troika" # Phase 2 at <= 65% HP -2300.0 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ window 300,5 -2307.5 "Vein Splitter" sync / 1[56]:[^:]*:Zenos Yae Galvus:24B6:/ -2310.1 "Vein Splitter" sync / 1[56]:[^:]*:Zenos Yae Galvus:206C:/ -2323.3 "Lightless Spark" sync / 1[56]:[^:]*:Zenos Yae Galvus:206B:/ -2331.6 "Unmoving Troika" sync / 1[56]:[^:]*:Zenos Yae Galvus:2060:/ -2341.7 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ -2354.4 "Storm?/Swell?/Sword?" sync / 1[56]:[^:]*:Zenos Yae Galvus:206[568]:/ window 5,5 -2366.5 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ -2371.7 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ +2300.0 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } window 300,5 +2307.5 "Vein Splitter" Ability { id: "24B6", source: "Zenos Yae Galvus" } +2310.1 "Vein Splitter" Ability { id: "206C", source: "Zenos Yae Galvus" } +2323.3 "Lightless Spark" Ability { id: "206B", source: "Zenos Yae Galvus" } +2331.6 "Unmoving Troika" Ability { id: "2060", source: "Zenos Yae Galvus" } +2341.7 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } +2354.4 "Storm?/Swell?/Sword?" Ability { id: "206[568]", source: "Zenos Yae Galvus" } window 5,5 +2366.5 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } +2371.7 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } # Paths diverge into Storm/Swell blocks # Blocks loop at random to 20% HP -2379.3 "Art of the Swell?" sync / 1[56]:[^:]*:Zenos Yae Galvus:2065:/ window 5,5 jump 2600.0 -2379.3 "Art of the Storm?" sync / 1[56]:[^:]*:Zenos Yae Galvus:2066:/ window 5,5 jump 2500.0 +2379.3 "Art of the Swell?" Ability { id: "2065", source: "Zenos Yae Galvus" } window 5,5 jump 2600.0 +2379.3 "Art of the Storm?" Ability { id: "2066", source: "Zenos Yae Galvus" } window 5,5 jump 2500.0 2381.8 "Vein Splitter" 2385.3 "Lightless Spark?" 2388.0 "Art of the Sword" @@ -139,17 +139,17 @@ hideall "--sync--" 2406.3 "Concentrativity" # Storm block -2500.0 "Art of the Storm" sync / 1[56]:[^:]*:Zenos Yae Galvus:2066:/ window 5,5 -2502.5 "Vein Splitter" sync / 1[56]:[^:]*:Zenos Yae Galvus:206C:/ -2508.7 "Art of the Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:2068:/ window 5,5 -2517.0 "Unmoving Troika" sync / 1[56]:[^:]*:Zenos Yae Galvus:2060:/ -2527.0 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ -2539.3 "Storm?/Swell?/Sword?" sync / 1[56]:[^:]*:Zenos Yae Galvus:206[568]:/ window 5,5 -2551.4 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ -2556.4 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ window 20,20 - -2564.0 "Art of the Swell?" sync / 1[56]:[^:]*:Zenos Yae Galvus:2065:/ window 5,5 jump 2600.0 -2564.0 "Art of the Storm?" sync / 1[56]:[^:]*:Zenos Yae Galvus:2066:/ window 5,5 jump 2500.0 +2500.0 "Art of the Storm" Ability { id: "2066", source: "Zenos Yae Galvus" } window 5,5 +2502.5 "Vein Splitter" Ability { id: "206C", source: "Zenos Yae Galvus" } +2508.7 "Art of the Sword" Ability { id: "2068", source: "Zenos Yae Galvus" } window 5,5 +2517.0 "Unmoving Troika" Ability { id: "2060", source: "Zenos Yae Galvus" } +2527.0 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } +2539.3 "Storm?/Swell?/Sword?" Ability { id: "206[568]", source: "Zenos Yae Galvus" } window 5,5 +2551.4 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } +2556.4 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } window 20,20 + +2564.0 "Art of the Swell?" Ability { id: "2065", source: "Zenos Yae Galvus" } window 5,5 jump 2600.0 +2564.0 "Art of the Storm?" Ability { id: "2066", source: "Zenos Yae Galvus" } window 5,5 jump 2500.0 2566.5 "Vein Splitter" 2570.0 "Lightless Spark?" 2572.7 "Art of the Sword" @@ -157,18 +157,18 @@ hideall "--sync--" 2591.0 "Concentrativity" # Swell block -2600.0 "Art of the Swell" sync / 1[56]:[^:]*:Zenos Yae Galvus:2065:/ window 5,5 -2602.5 "Vein Splitter" sync / 1[56]:[^:]*:Zenos Yae Galvus:206C:/ -2606.0 "Lightless Spark" sync / 1[56]:[^:]*:Zenos Yae Galvus:206B:/ -2608.7 "Art of the Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:2068:/ window 5,5 -2617.0 "Unmoving Troika" sync / 1[56]:[^:]*:Zenos Yae Galvus:2060:/ -2627.0 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ -2639.8 "Storm?/Swell?/Sword?" sync / 1[56]:[^:]*:Zenos Yae Galvus:206[568]:/ window 5,5 -2651.8 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ -2656.8 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ window 20,20 - -2664.4 "Art of the Storm?" sync / 1[56]:[^:]*:Zenos Yae Galvus:2066:/ window 5,5 jump 2500.0 -2664.4 "Art of the Swell?" sync / 1[56]:[^:]*:Zenos Yae Galvus:2065:/ window 5,5 jump 2600.0 +2600.0 "Art of the Swell" Ability { id: "2065", source: "Zenos Yae Galvus" } window 5,5 +2602.5 "Vein Splitter" Ability { id: "206C", source: "Zenos Yae Galvus" } +2606.0 "Lightless Spark" Ability { id: "206B", source: "Zenos Yae Galvus" } +2608.7 "Art of the Sword" Ability { id: "2068", source: "Zenos Yae Galvus" } window 5,5 +2617.0 "Unmoving Troika" Ability { id: "2060", source: "Zenos Yae Galvus" } +2627.0 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } +2639.8 "Storm?/Swell?/Sword?" Ability { id: "206[568]", source: "Zenos Yae Galvus" } window 5,5 +2651.8 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } +2656.8 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } window 20,20 + +2664.4 "Art of the Storm?" Ability { id: "2066", source: "Zenos Yae Galvus" } window 5,5 jump 2500.0 +2664.4 "Art of the Swell?" Ability { id: "2065", source: "Zenos Yae Galvus" } window 5,5 jump 2600.0 2666.9 "Vein Splitter" 2670.4 "Lightless Spark?" 2673.1 "Art of the Sword" @@ -176,33 +176,33 @@ hideall "--sync--" 2691.4 "Concentrativity" # Intermission at < 20% HP -2700.0 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:206E:/ window 700,5 -2706.0 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ -2712.7 "Swell/Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:258[68]:/ window 5,5 -2715.1 "Art of the Storm" sync / 1[56]:[^:]*:Zenos Yae Galvus:2587:/ window 5,5 -2732.0 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ -2739.1 "Swell/Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:258[68]:/ window 5,5 -2741.1 "Art of the Storm" sync / 1[56]:[^:]*:Zenos Yae Galvus:2587:/ window 5,5 -2763.0 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ -2769.6 "Swell/Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:258[68]:/ window 5,5 -2772.0 "Art of the Storm" sync / 1[56]:[^:]*:Zenos Yae Galvus:2587:/ window 5,5 -2789.0 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ -2796.0 "Swell/Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:258[68]:/ window 5,5 -2798.0 "Art of the Storm" sync / 1[56]:[^:]*:Zenos Yae Galvus:2587:/ window 5,5 -2815.0 "--sync--" sync / 1[56]:[^:]*:Zenos Yae Galvus:239F:/ -2822.0 "Swell/Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:258[68]:/ window 5,5 -2824.0 "Art of the Storm" sync / 1[56]:[^:]*:Zenos Yae Galvus:2587:/ window 5,5 +2700.0 "--sync--" Ability { id: "206E", source: "Zenos Yae Galvus" } window 700,5 +2706.0 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } +2712.7 "Swell/Sword" Ability { id: "258[68]", source: "Zenos Yae Galvus" } window 5,5 +2715.1 "Art of the Storm" Ability { id: "2587", source: "Zenos Yae Galvus" } window 5,5 +2732.0 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } +2739.1 "Swell/Sword" Ability { id: "258[68]", source: "Zenos Yae Galvus" } window 5,5 +2741.1 "Art of the Storm" Ability { id: "2587", source: "Zenos Yae Galvus" } window 5,5 +2763.0 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } +2769.6 "Swell/Sword" Ability { id: "258[68]", source: "Zenos Yae Galvus" } window 5,5 +2772.0 "Art of the Storm" Ability { id: "2587", source: "Zenos Yae Galvus" } window 5,5 +2789.0 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } +2796.0 "Swell/Sword" Ability { id: "258[68]", source: "Zenos Yae Galvus" } window 5,5 +2798.0 "Art of the Storm" Ability { id: "2587", source: "Zenos Yae Galvus" } window 5,5 +2815.0 "--sync--" Ability { id: "239F", source: "Zenos Yae Galvus" } +2822.0 "Swell/Sword" Ability { id: "258[68]", source: "Zenos Yae Galvus" } window 5,5 +2824.0 "Art of the Storm" Ability { id: "2587", source: "Zenos Yae Galvus" } window 5,5 # The intermission closes here regardless. # Parties reaching here naturally will die to a full boss gauge. -2836.1 "Storm, Swell, Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:206F:/ window 135,10 -2839.0 "--sync--" sync / 1[56]:[^:]*:The Storm:239E:/ -2843.1 "Storm, Swell, Sword" sync / 1[56]:[^:]*:Zenos Yae Galvus:2070:/ window 5,5 - -2855.9 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ window 20,5 -2866.1 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ -2876.3 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ -2886.5 "Concentrativity" sync / 1[56]:[^:]*:Zenos Yae Galvus:206D:/ jump 2855.9 +2836.1 "Storm, Swell, Sword" Ability { id: "206F", source: "Zenos Yae Galvus" } window 135,10 +2839.0 "--sync--" Ability { id: "239E", source: "The Storm" } +2843.1 "Storm, Swell, Sword" Ability { id: "2070", source: "Zenos Yae Galvus" } window 5,5 + +2855.9 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } window 20,5 +2866.1 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } +2876.3 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } +2886.5 "Concentrativity" Ability { id: "206D", source: "Zenos Yae Galvus" } jump 2855.9 2896.7 "Concentrativity" 2906.9 "Concentrativity" 2917.1 "Concentrativity" diff --git a/ui/raidboss/data/04-sb/dungeon/bardams_mettle.txt b/ui/raidboss/data/04-sb/dungeon/bardams_mettle.txt index 1f13469098..0a553f34ed 100644 --- a/ui/raidboss/data/04-sb/dungeon/bardams_mettle.txt +++ b/ui/raidboss/data/04-sb/dungeon/bardams_mettle.txt @@ -10,18 +10,18 @@ hideall "Reconstruct" # -ic "Steppe Coeurl" "Steppe Sheep" "Steppe Yamaa" # Bardam's Hunt will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:7B8:/ -11.7 "Heave" sync / 1[56]:[^:]*:Garula:1EF7:/ window 11.7,5 -20.9 "--sync--" sync / 1[56]:[^:]*:Garula:1EF8:/ -22.4 "Crumbling Crust" sync / 1[56]:[^:]*:Garula:1F13:/ -34.1 "Rush" sync / 1[56]:[^:]*:Garula:1EF9:/ -36.2 "War Cry" sync / 1[56]:[^:]*:Garula:1EFA:/ -38.9 "Earthquake" sync / 1[56]:[^:]*:Garula:1EFB:/ window 15,15 -49.5 "Heave" sync / 1[56]:[^:]*:Garula:1EF7:/ -58.7 "--sync--" sync / 1[56]:[^:]*:Garula:1EF8:/ -60.2 "Crumbling Crust" sync / 1[56]:[^:]*:Garula:1F13:/ +0 "Start" SystemLogMessage { id: "7DC", param1: "7B8" } +11.7 "Heave" Ability { id: "1EF7", source: "Garula" } window 11.7,5 +20.9 "--sync--" Ability { id: "1EF8", source: "Garula" } +22.4 "Crumbling Crust" Ability { id: "1F13", source: "Garula" } +34.1 "Rush" Ability { id: "1EF9", source: "Garula" } +36.2 "War Cry" Ability { id: "1EFA", source: "Garula" } +38.9 "Earthquake" Ability { id: "1EFB", source: "Garula" } window 15,15 +49.5 "Heave" Ability { id: "1EF7", source: "Garula" } +58.7 "--sync--" Ability { id: "1EF8", source: "Garula" } +60.2 "Crumbling Crust" Ability { id: "1F13", source: "Garula" } -66.6 "Heave" sync / 1[56]:[^:]*:Garula:1EF7:/ jump 11.7 +66.6 "Heave" Ability { id: "1EF7", source: "Garula" } jump 11.7 77.3 "Crumbling Crust" 89.0 "Rush" 91.1 "War Cry" @@ -34,36 +34,36 @@ hideall "Reconstruct" # -ii 1EFE 2578 2579 257A 257E 257B # The Rebirth of Bardam the Brave will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:7B9:/ window 1000,5 -1007.8 "Travail" sync / 1[56]:[^:]*:Bardam:1EFF:/ window 7.8,5 -1014.1 "Magnetism" sync / 1[56]:[^:]*:Hunter Of Bardam:1F08:/ -1020.3 "Tremblor" sync / 1[56]:[^:]*:Bardam:257C:/ -1022.8 "Empty Gaze" sync / 1[56]:[^:]*:Hunter Of Bardam:1F04:/ -1025.0 "Travail" sync / 1[56]:[^:]*:Bardam:1EFF:/ -1029.8 "Charge x3" # sync / 1[56]:[^:]*:Throwing Spear:257F:/ -1038.8 "Empty Gaze" sync / 1[56]:[^:]*:Hunter Of Bardam:1F04:/ -1038.9 "Charge" sync / 1[56]:[^:]*:Throwing Spear:257F:/ -1044.6 "--sync--" sync / 1[56]:[^:]*:Bardam:24EA:/ window 15,15 -1052.3 "Travail" sync / 1[56]:[^:]*:Bardam:1EFF:/ -1060.5 "Sacrifice" sync / 1[56]:[^:]*:Bardam:1F01:/ -1060.7 "Travail" sync / 1[56]:[^:]*:Bardam:1EFF:/ -1065.5 "Bardam's Ring" sync / 1[56]:[^:]*:Bardam:2581:/ -1066.2 "Travail" sync / 1[56]:[^:]*:Bardam:1EFF:/ -1076.4 "Comet x8" duration 12 # sync / 1[56]:[^:]*:Bardam:257D:/ -1093.4 "Heavy Strike x3" sync / 1[56]:[^:]*:Hunter Of Bardam:2577:/ duration 4 -1099.0 "Travail" sync / 1[56]:[^:]*:Bardam:1EFF:/ -1105.3 "Comet Impact" sync / 1[56]:[^:]*:Star Shard:2580:/ -1109.3 "--sync--" sync / 1[56]:[^:]*:Bardam:24EA:/ window 15,15 -1116.9 "Travail" sync / 1[56]:[^:]*:Bardam:1EFF:/ -1125.3 "Reconstruct" sync / 1[56]:[^:]*:Bardam:1EFD:/ -1126.7 "--sync--" sync / 1[56]:[^:]*:Star Shard:258B:/ -1128.3 "Travail" sync / 1[56]:[^:]*:Bardam:1EFF:/ -1133.1 "Charge" sync / 1[56]:[^:]*:Throwing Spear:257F:/ -1133.9 "Magnetism" sync / 1[56]:[^:]*:Hunter Of Bardam:1F08:/ -1139.5 "Tremblor" sync / 1[56]:[^:]*:Hunter Of Bardam:2585:/ -1140.0 "Heavy Strike x3" sync / 1[56]:[^:]*:Warrior Of Bardam:2577:/ duration 4 -1153.0 "Meteor Impact" sync / 1[56]:[^:]*:Looming Shadow:2582:/ -1153.4 "--sync--" sync / 1[56]:[^:]*:Star Shard:258B:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "7B9" } window 1000,5 +1007.8 "Travail" Ability { id: "1EFF", source: "Bardam" } window 7.8,5 +1014.1 "Magnetism" Ability { id: "1F08", source: "Hunter Of Bardam" } +1020.3 "Tremblor" Ability { id: "257C", source: "Bardam" } +1022.8 "Empty Gaze" Ability { id: "1F04", source: "Hunter Of Bardam" } +1025.0 "Travail" Ability { id: "1EFF", source: "Bardam" } +1029.8 "Charge x3" # Ability { id: "257F", source: "Throwing Spear" } +1038.8 "Empty Gaze" Ability { id: "1F04", source: "Hunter Of Bardam" } +1038.9 "Charge" Ability { id: "257F", source: "Throwing Spear" } +1044.6 "--sync--" Ability { id: "24EA", source: "Bardam" } window 15,15 +1052.3 "Travail" Ability { id: "1EFF", source: "Bardam" } +1060.5 "Sacrifice" Ability { id: "1F01", source: "Bardam" } +1060.7 "Travail" Ability { id: "1EFF", source: "Bardam" } +1065.5 "Bardam's Ring" Ability { id: "2581", source: "Bardam" } +1066.2 "Travail" Ability { id: "1EFF", source: "Bardam" } +1076.4 "Comet x8" duration 12 # Ability { id: "257D", source: "Bardam" } +1093.4 "Heavy Strike x3" Ability { id: "2577", source: "Hunter Of Bardam" } duration 4 +1099.0 "Travail" Ability { id: "1EFF", source: "Bardam" } +1105.3 "Comet Impact" Ability { id: "2580", source: "Star Shard" } +1109.3 "--sync--" Ability { id: "24EA", source: "Bardam" } window 15,15 +1116.9 "Travail" Ability { id: "1EFF", source: "Bardam" } +1125.3 "Reconstruct" Ability { id: "1EFD", source: "Bardam" } +1126.7 "--sync--" Ability { id: "258B", source: "Star Shard" } +1128.3 "Travail" Ability { id: "1EFF", source: "Bardam" } +1133.1 "Charge" Ability { id: "257F", source: "Throwing Spear" } +1133.9 "Magnetism" Ability { id: "1F08", source: "Hunter Of Bardam" } +1139.5 "Tremblor" Ability { id: "2585", source: "Hunter Of Bardam" } +1140.0 "Heavy Strike x3" Ability { id: "2577", source: "Warrior Of Bardam" } duration 4 +1153.0 "Meteor Impact" Ability { id: "2582", source: "Looming Shadow" } +1153.4 "--sync--" Ability { id: "258B", source: "Star Shard" } #~~~~~# # YOL # @@ -72,61 +72,61 @@ hideall "Reconstruct" # -ii 1F0B 1F0E # The Voiceless Muse will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:7BA:/ window 2000,5 -2008.1 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2015.2 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ -2023.9 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2025.8 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2027.2 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2033.9 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2034.7 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2042.2 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ window 15,15 -2046.4 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2050.9 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2054.0 "Eye Of The Fierce" sync / 1[56]:[^:]*:Yol:1F0D:/ -2059.2 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2060.9 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2069.3 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "7BA" } window 2000,5 +2008.1 "Feathercut" Ability { id: "1F09", source: "Yol" } +2015.2 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } +2023.9 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2025.8 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2027.2 "Feathercut" Ability { id: "1F09", source: "Yol" } +2033.9 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2034.7 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2042.2 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } window 15,15 +2046.4 "Feathercut" Ability { id: "1F09", source: "Yol" } +2050.9 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2054.0 "Eye Of The Fierce" Ability { id: "1F0D", source: "Yol" } +2059.2 "Feathercut" Ability { id: "1F09", source: "Yol" } +2060.9 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2069.3 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } 2071.4 "--untargetable--" -2071.4 "--adds spawn--" sync / 03:........:Corpsecleaner Eagle:/ window 71.4,5 -2078.0 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2088.0 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2098.0 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2108.0 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2118.0 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ jump 2078.0 +2071.4 "--adds spawn--" AddedCombatant { name: "Corpsecleaner Eagle" } window 71.4,5 +2078.0 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2088.0 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2098.0 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2108.0 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2118.0 "Pinion" Ability { id: "1F11", source: "Yol Feather" } jump 2078.0 2128.0 "Pinion" 2138.0 "Pinion" 2148.0 "Pinion" # Unfortunately, because there are two Corpsecleaner Eagles, # we can't just sync to a 04 log line. -2189.7 "--targetable--" sync / 22:........:Yol:........:Yol:01/ window 120,5 -2196.8 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ window 125,5 -2204.0 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ -2212.7 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2214.5 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2215.8 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2222.6 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2223.3 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2230.7 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ window 15,15 -2234.9 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2239.4 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2242.5 "Eye Of The Fierce" sync / 1[56]:[^:]*:Yol:1F0D:/ -2247.7 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2249.4 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ +2189.7 "--targetable--" NameToggle { name: "Yol", toggle: "01" } window 120,5 +2196.8 "Feathercut" Ability { id: "1F09", source: "Yol" } window 125,5 +2204.0 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } +2212.7 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2214.5 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2215.8 "Feathercut" Ability { id: "1F09", source: "Yol" } +2222.6 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2223.3 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2230.7 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } window 15,15 +2234.9 "Feathercut" Ability { id: "1F09", source: "Yol" } +2239.4 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2242.5 "Eye Of The Fierce" Ability { id: "1F0D", source: "Yol" } +2247.7 "Feathercut" Ability { id: "1F09", source: "Yol" } +2249.4 "Pinion" Ability { id: "1F11", source: "Yol Feather" } -2253.8 "--untargetable--" sync / 22:........:Yol:........:Yol:00/ window 60,5 -2260.3 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F10:/ window 60,5 -2267.5 "Wingbeat" sync / 1[56]:[^:]*:Yol:1F0F:/ -2276.9 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2284.3 "Wingbeat" sync / 1[56]:[^:]*:Yol:1F0F:/ -2284.7 "Pinion" sync / 1[56]:[^:]*:Yol Feather:2593:/ -2293.8 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2301.2 "Wingbeat" sync / 1[56]:[^:]*:Yol:1F0F:/ -2301.6 "Pinion" sync / 1[56]:[^:]*:Yol Feather:2593:/ -2310.7 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2318.2 "Wingbeat" sync / 1[56]:[^:]*:Yol:1F0F:/ -2318.6 "Pinion" sync / 1[56]:[^:]*:Yol Feather:2593:/ jump 2284.7 +2253.8 "--untargetable--" NameToggle { name: "Yol", toggle: "00" } window 60,5 +2260.3 "Flutterfall" Ability { id: "1F10", source: "Yol" } window 60,5 +2267.5 "Wingbeat" Ability { id: "1F0F", source: "Yol" } +2276.9 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2284.3 "Wingbeat" Ability { id: "1F0F", source: "Yol" } +2284.7 "Pinion" Ability { id: "2593", source: "Yol Feather" } +2293.8 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2301.2 "Wingbeat" Ability { id: "1F0F", source: "Yol" } +2301.6 "Pinion" Ability { id: "2593", source: "Yol Feather" } +2310.7 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2318.2 "Wingbeat" Ability { id: "1F0F", source: "Yol" } +2318.6 "Pinion" Ability { id: "2593", source: "Yol Feather" } jump 2284.7 2327.7 "Flutterfall" 2335.1 "Wingbeat" 2335.5 "Pinion" @@ -135,34 +135,34 @@ hideall "Reconstruct" 2352.5 "Pinion" -2361.7 "--targetable--" sync / 22:........:Yol:........:Yol:01/ window 110,5 -2368.8 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ window 110,5 -2376.0 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ -2384.7 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2386.6 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2388.0 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2394.7 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2395.5 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2402.9 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ window 15,15 -2407.1 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2411.6 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2414.7 "Eye Of The Fierce" sync / 1[56]:[^:]*:Yol:1F0D:/ -2419.9 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2421.5 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2433.1 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2440.2 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ window 15,15 -2448.9 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2450.7 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2452.1 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2458.9 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2459.6 "Flutterfall" sync / 1[56]:[^:]*:Yol:1F0C:/ -2467.0 "Wind Unbound" sync / 1[56]:[^:]*:Yol:1F0A:/ window 15,15 -2471.1 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2475.7 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2478.7 "Eye Of The Fierce" sync / 1[56]:[^:]*:Yol:1F0D:/ -2483.9 "Feathercut" sync / 1[56]:[^:]*:Yol:1F09:/ -2485.7 "Pinion" sync / 1[56]:[^:]*:Yol Feather:1F11:/ -2490.0 "--untargetable--" sync / 22:........:Yol:........:Yol:00/ jump 2253.8 window 130,5 +2361.7 "--targetable--" NameToggle { name: "Yol", toggle: "01" } window 110,5 +2368.8 "Feathercut" Ability { id: "1F09", source: "Yol" } window 110,5 +2376.0 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } +2384.7 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2386.6 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2388.0 "Feathercut" Ability { id: "1F09", source: "Yol" } +2394.7 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2395.5 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2402.9 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } window 15,15 +2407.1 "Feathercut" Ability { id: "1F09", source: "Yol" } +2411.6 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2414.7 "Eye Of The Fierce" Ability { id: "1F0D", source: "Yol" } +2419.9 "Feathercut" Ability { id: "1F09", source: "Yol" } +2421.5 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2433.1 "Feathercut" Ability { id: "1F09", source: "Yol" } +2440.2 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } window 15,15 +2448.9 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2450.7 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2452.1 "Feathercut" Ability { id: "1F09", source: "Yol" } +2458.9 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2459.6 "Flutterfall" Ability { id: "1F0C", source: "Yol" } +2467.0 "Wind Unbound" Ability { id: "1F0A", source: "Yol" } window 15,15 +2471.1 "Feathercut" Ability { id: "1F09", source: "Yol" } +2475.7 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2478.7 "Eye Of The Fierce" Ability { id: "1F0D", source: "Yol" } +2483.9 "Feathercut" Ability { id: "1F09", source: "Yol" } +2485.7 "Pinion" Ability { id: "1F11", source: "Yol Feather" } +2490.0 "--untargetable--" NameToggle { name: "Yol", toggle: "00" } jump 2253.8 window 130,5 2496.5 "Flutterfall" 2503.7 "Wingbeat" diff --git a/ui/raidboss/data/04-sb/dungeon/castrum_abania.txt b/ui/raidboss/data/04-sb/dungeon/castrum_abania.txt index 516d963c4e..d1e566b965 100644 --- a/ui/raidboss/data/04-sb/dungeon/castrum_abania.txt +++ b/ui/raidboss/data/04-sb/dungeon/castrum_abania.txt @@ -8,68 +8,68 @@ hideall "--sync--" # initial # Terrestrial Weaponry will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:790:/ window 0,1 -13.5 "Magitek Fire II" sync / 1[56]:[^:]*:Magna Roader:1F15:/ -18.6 "Magitek Fire II" sync / 1[56]:[^:]*:Magna Roader:1F15:/ -25.7 "Magitek Fire III" sync / 1[56]:[^:]*:Magna Roader:1F16:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "790" } window 0,1 +13.5 "Magitek Fire II" Ability { id: "1F15", source: "Magna Roader" } +18.6 "Magitek Fire II" Ability { id: "1F15", source: "Magna Roader" } +25.7 "Magitek Fire III" Ability { id: "1F16", source: "Magna Roader" } # Wild Speed Loop (until stunned, max 4 cycles) 35.5 "--untargetable--" -35.5 "--sync--" sync / 1[56]:[^:]*:Magna Roader:207E:/ window 5,5 # boss moves south first, can delay timeline -35.6 "Wild Speed 1" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -36.6 "Wild Speed 2" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -37.6 "Wild Speed 3" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -38.6 "Wild Speed 4" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ - -45.7 "--sync--" sync / 1[56]:[^:]*:Magna Roader:207E:/ -45.8 "Wild Speed 1" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -46.8 "Wild Speed 2" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -47.8 "Wild Speed 3" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -48.8 "Wild Speed 4" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ - -55.9 "--sync--" sync / 1[56]:[^:]*:Magna Roader:207E:/ -56.0 "Wild Speed 1" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -57.0 "Wild Speed 2" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -58.0 "Wild Speed 3" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -59.0 "Wild Speed 4" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ - -66.1 "--sync--" sync / 1[56]:[^:]*:Magna Roader:207E:/ -66.2 "Wild Speed 1" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -67.2 "Wild Speed 2" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -68.2 "Wild Speed 3" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -69.2 "Wild Speed 4" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ +35.5 "--sync--" Ability { id: "207E", source: "Magna Roader" } window 5,5 # boss moves south first, can delay timeline +35.6 "Wild Speed 1" #Ability { id: "1FF8", source: "Magna Roader" } +36.6 "Wild Speed 2" #Ability { id: "1FF8", source: "Magna Roader" } +37.6 "Wild Speed 3" #Ability { id: "1FF8", source: "Magna Roader" } +38.6 "Wild Speed 4" #Ability { id: "1FF8", source: "Magna Roader" } + +45.7 "--sync--" Ability { id: "207E", source: "Magna Roader" } +45.8 "Wild Speed 1" #Ability { id: "1FF8", source: "Magna Roader" } +46.8 "Wild Speed 2" #Ability { id: "1FF8", source: "Magna Roader" } +47.8 "Wild Speed 3" #Ability { id: "1FF8", source: "Magna Roader" } +48.8 "Wild Speed 4" #Ability { id: "1FF8", source: "Magna Roader" } + +55.9 "--sync--" Ability { id: "207E", source: "Magna Roader" } +56.0 "Wild Speed 1" #Ability { id: "1FF8", source: "Magna Roader" } +57.0 "Wild Speed 2" #Ability { id: "1FF8", source: "Magna Roader" } +58.0 "Wild Speed 3" #Ability { id: "1FF8", source: "Magna Roader" } +59.0 "Wild Speed 4" #Ability { id: "1FF8", source: "Magna Roader" } + +66.1 "--sync--" Ability { id: "207E", source: "Magna Roader" } +66.2 "Wild Speed 1" #Ability { id: "1FF8", source: "Magna Roader" } +67.2 "Wild Speed 2" #Ability { id: "1FF8", source: "Magna Roader" } +68.2 "Wild Speed 3" #Ability { id: "1FF8", source: "Magna Roader" } +69.2 "Wild Speed 4" #Ability { id: "1FF8", source: "Magna Roader" } # Post Wild Speed loop -> back into Wild Speed loop 70.2 "--targetable--" -70.2 "--sync--" sync / 14:[^:]*:Magna Roader:1F16:/ window 40,10 -73.2 "Magitek Fire III" sync / 1[56]:[^:]*:Magna Roader:1F16:/ -77.3 "Wheel" sync / 1[56]:[^:]*:Magna Roader:1F14:/ window 47,10 # can jump here instead after being hit with the cannons -84.8 "Magitek Fire II" sync / 1[56]:[^:]*:Magna Roader:1F15:/ -89.9 "Magitek Fire II" sync / 1[56]:[^:]*:Magna Roader:1F15:/ -94.1 "Wheel" sync / 1[56]:[^:]*:Magna Roader:1F14:/ -101.6 "Magitek Fire III" sync / 1[56]:[^:]*:Magna Roader:1F16:/ -105.7 "Wheel" sync / 1[56]:[^:]*:Magna Roader:1F14:/ -113.2 "Magitek Fire II" sync / 1[56]:[^:]*:Magna Roader:1F15:/ -118.4 "Magitek Fire II" sync / 1[56]:[^:]*:Magna Roader:1F15:/ +70.2 "--sync--" StartsUsing { id: "1F16", source: "Magna Roader" } window 40,10 +73.2 "Magitek Fire III" Ability { id: "1F16", source: "Magna Roader" } +77.3 "Wheel" Ability { id: "1F14", source: "Magna Roader" } window 47,10 # can jump here instead after being hit with the cannons +84.8 "Magitek Fire II" Ability { id: "1F15", source: "Magna Roader" } +89.9 "Magitek Fire II" Ability { id: "1F15", source: "Magna Roader" } +94.1 "Wheel" Ability { id: "1F14", source: "Magna Roader" } +101.6 "Magitek Fire III" Ability { id: "1F16", source: "Magna Roader" } +105.7 "Wheel" Ability { id: "1F14", source: "Magna Roader" } +113.2 "Magitek Fire II" Ability { id: "1F15", source: "Magna Roader" } +118.4 "Magitek Fire II" Ability { id: "1F15", source: "Magna Roader" } 133.3 "--untargetable--" -133.3 "--sync--" sync / 1[56]:[^:]*:Magna Roader:207E:/ window 60,60 jump 35.5 -133.4 "Wild Speed 1" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -134.4 "Wild Speed 2" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -135.4 "Wild Speed 3" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -136.4 "Wild Speed 4" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ +133.3 "--sync--" Ability { id: "207E", source: "Magna Roader" } window 60,60 jump 35.5 +133.4 "Wild Speed 1" #Ability { id: "1FF8", source: "Magna Roader" } +134.4 "Wild Speed 2" #Ability { id: "1FF8", source: "Magna Roader" } +135.4 "Wild Speed 3" #Ability { id: "1FF8", source: "Magna Roader" } +136.4 "Wild Speed 4" #Ability { id: "1FF8", source: "Magna Roader" } -143.5 "--sync--" #sync / 1[56]:[^:]*:Magna Roader:207E:/ -143.6 "Wild Speed 1" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -144.6 "Wild Speed 2" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -145.6 "Wild Speed 3" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -146.6 "Wild Speed 4" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ +143.5 "--sync--" #Ability { id: "207E", source: "Magna Roader" } +143.6 "Wild Speed 1" #Ability { id: "1FF8", source: "Magna Roader" } +144.6 "Wild Speed 2" #Ability { id: "1FF8", source: "Magna Roader" } +145.6 "Wild Speed 3" #Ability { id: "1FF8", source: "Magna Roader" } +146.6 "Wild Speed 4" #Ability { id: "1FF8", source: "Magna Roader" } -153.7 "--sync--" #sync / 1[56]:[^:]*:Magna Roader:207E:/ -153.8 "Wild Speed 1" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -154.8 "Wild Speed 2" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -155.8 "Wild Speed 3" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ -156.8 "Wild Speed 4" #sync / 1[56]:[^:]*:Magna Roader:1FF8:/ +153.7 "--sync--" #Ability { id: "207E", source: "Magna Roader" } +153.8 "Wild Speed 1" #Ability { id: "1FF8", source: "Magna Roader" } +154.8 "Wild Speed 2" #Ability { id: "1FF8", source: "Magna Roader" } +155.8 "Wild Speed 3" #Ability { id: "1FF8", source: "Magna Roader" } +156.8 "Wild Speed 4" #Ability { id: "1FF8", source: "Magna Roader" } ### Subject Number XXIV @@ -77,49 +77,49 @@ hideall "--sync--" # -ii 82B1 82B2 83D3 82AE 82AF 82B0 83D4 83D5 83D6 82B9 # Project Aegis will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:791:/ window 10000,0 -1008.3 "--sync--" sync / 14:[^:]*:Subject Number XXIV:82A9:/ window 10,10 jump 1095.0 # fire phase first -1008.3 "--sync--" sync / 14:[^:]*:Subject Number XXIV:82A8:/ window 10,10 jump 1144.7 # ice phase first -1008.3 "--sync--" sync / 14:[^:]*:Subject Number XXIV:82AA:/ window 10,10 jump 1193.6 # thunder phase first +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "791" } window 10000,0 +1008.3 "--sync--" StartsUsing { id: "82A9", source: "Subject Number XXIV" } window 10,10 jump 1095.0 # fire phase first +1008.3 "--sync--" StartsUsing { id: "82A8", source: "Subject Number XXIV" } window 10,10 jump 1144.7 # ice phase first +1008.3 "--sync--" StartsUsing { id: "82AA", source: "Subject Number XXIV" } window 10,10 jump 1193.6 # thunder phase first 1013.2 "Elemental Overload (Random)" # fire phase -1100.0 "Elemental Overload (Fire)" sync / 1[56]:[^:]*:Subject Number XXIV:82A(9|C):/ -1112.2 "Triflame" sync / 1[56]:[^:]*:Subject Number XXIV:82B7:/ -1118.9 "Fire II" sync / 1[56]:[^:]*:Subject Number XXIV:82B6:/ -1130.0 "Triflame" sync / 1[56]:[^:]*:Subject Number XXIV:82B7:/ -1132.6 "Triflame" sync / 1[56]:[^:]*:Subject Number XXIV:82B7:/ -1133.6 "Fire II" sync / 1[56]:[^:]*:Subject Number XXIV:82B6:/ -1134.6 "System Error" sync / 1[56]:[^:]*:Subject Number XXIV:82B3:/ +1100.0 "Elemental Overload (Fire)" Ability { id: "82A(9|C)", source: "Subject Number XXIV" } +1112.2 "Triflame" Ability { id: "82B7", source: "Subject Number XXIV" } +1118.9 "Fire II" Ability { id: "82B6", source: "Subject Number XXIV" } +1130.0 "Triflame" Ability { id: "82B7", source: "Subject Number XXIV" } +1132.6 "Triflame" Ability { id: "82B7", source: "Subject Number XXIV" } +1133.6 "Fire II" Ability { id: "82B6", source: "Subject Number XXIV" } +1134.6 "System Error" Ability { id: "82B3", source: "Subject Number XXIV" } # ice phase -1149.7 "Elemental Overload (Ice)" sync / 1[56]:[^:]*:Subject Number XXIV:82A(8|B):/ -1161.1 "Ice Grid" sync / 1[56]:[^:]*:Subject Number XXIV:82B4:/ -1167.8 "Blizzard II" sync / 1[56]:[^:]*:Subject Number XXIV:82B5:/ -1178.8 "Ice Grid" sync / 1[56]:[^:]*:Subject Number XXIV:82B4:/ -1181.4 "Ice Grid" sync / 1[56]:[^:]*:Subject Number XXIV:82B4:/ -1182.4 "Blizzard II" sync / 1[56]:[^:]*:Subject Number XXIV:82B5:/ -1183.5 "System Error" sync / 1[56]:[^:]*:Subject Number XXIV:82B3:/ +1149.7 "Elemental Overload (Ice)" Ability { id: "82A(8|B)", source: "Subject Number XXIV" } +1161.1 "Ice Grid" Ability { id: "82B4", source: "Subject Number XXIV" } +1167.8 "Blizzard II" Ability { id: "82B5", source: "Subject Number XXIV" } +1178.8 "Ice Grid" Ability { id: "82B4", source: "Subject Number XXIV" } +1181.4 "Ice Grid" Ability { id: "82B4", source: "Subject Number XXIV" } +1182.4 "Blizzard II" Ability { id: "82B5", source: "Subject Number XXIV" } +1183.5 "System Error" Ability { id: "82B3", source: "Subject Number XXIV" } # thunder phase -1198.6 "Elemental Overload (Thunder)" sync / 1[56]:[^:]*:Subject Number XXIV:82A(A|D):/ -1211.6 "Thunder II" sync / 1[56]:[^:]*:Subject Number XXIV:82B8:/ -1213.1 "--sync--" sync / 1[56]:[^:]*:Subject Number XXIV:82BB:/ -1218.1 "Sparking Current" sync / 1[56]:[^:]*:Subject Number XXIV:82BA:/ -1227.0 "--sync--" sync / 1[56]:[^:]*:Subject Number XXIV:82BB:/ -1230.4 "Thunder II" sync / 1[56]:[^:]*:Subject Number XXIV:82B8:/ -1232.1 "Sparking Current" sync / 1[56]:[^:]*:Subject Number XXIV:82BA:/ -1234.5 "Thunder II" sync / 1[56]:[^:]*:Subject Number XXIV:82B8:/ -1236.1 "System Error" sync / 1[56]:[^:]*:Subject Number XXIV:82B3:/ +1198.6 "Elemental Overload (Thunder)" Ability { id: "82A(A|D)", source: "Subject Number XXIV" } +1211.6 "Thunder II" Ability { id: "82B8", source: "Subject Number XXIV" } +1213.1 "--sync--" Ability { id: "82BB", source: "Subject Number XXIV" } +1218.1 "Sparking Current" Ability { id: "82BA", source: "Subject Number XXIV" } +1227.0 "--sync--" Ability { id: "82BB", source: "Subject Number XXIV" } +1230.4 "Thunder II" Ability { id: "82B8", source: "Subject Number XXIV" } +1232.1 "Sparking Current" Ability { id: "82BA", source: "Subject Number XXIV" } +1234.5 "Thunder II" Ability { id: "82B8", source: "Subject Number XXIV" } +1236.1 "System Error" Ability { id: "82B3", source: "Subject Number XXIV" } # loop -1251.2 "Elemental Overload (Fire)" sync / 1[56]:[^:]*:Subject Number XXIV:82AC:/ jump 1100.0 -1262.5 "Triflame" #sync / 1[56]:[^:]*:Subject Number XXIV:82B7:/ -1269.2 "Fire II" #sync / 1[56]:[^:]*:Subject Number XXIV:82B6:/ -1280.2 "Triflame" #sync / 1[56]:[^:]*:Subject Number XXIV:82B7:/ -1282.8 "Triflame" #sync / 1[56]:[^:]*:Subject Number XXIV:82B7:/ -1283.8 "Fire II" #sync / 1[56]:[^:]*:Subject Number XXIV:82B6:/ -1284.9 "System Error" #sync / 1[56]:[^:]*:Subject Number XXIV:82B3:/ +1251.2 "Elemental Overload (Fire)" Ability { id: "82AC", source: "Subject Number XXIV" } jump 1100.0 +1262.5 "Triflame" #Ability { id: "82B7", source: "Subject Number XXIV" } +1269.2 "Fire II" #Ability { id: "82B6", source: "Subject Number XXIV" } +1280.2 "Triflame" #Ability { id: "82B7", source: "Subject Number XXIV" } +1282.8 "Triflame" #Ability { id: "82B7", source: "Subject Number XXIV" } +1283.8 "Fire II" #Ability { id: "82B6", source: "Subject Number XXIV" } +1284.9 "System Error" #Ability { id: "82B3", source: "Subject Number XXIV" } ### Inferno @@ -143,62 +143,62 @@ hideall "--sync--" # * Ketu Cutter (1F27): 180/360 degree pinwheel # * Ketu Cut (2086) / Rahu Cut (2087) is powering up. # Assessment Grounds will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:792:/ window 10000,0 -2010.4 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:1F26:/ -2017.9 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:1F29:/ -2028.8 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ - -2045.0 "Ketu Cut 1" sync / 1[56]:[^:]*:Inferno:2086:/ window 50,50 -2054.7 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208B:/ -2062.3 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:1F29:/ -2069.8 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208B:/ -2079.9 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2087.9 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2096.8 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:1F29:/ -2104.3 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208B:/ - -2119.2 "Rahu Cut 1" sync / 1[56]:[^:]*:Inferno:2087:/ window 50,50 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "792" } window 10000,0 +2010.4 "Ketu Slash" Ability { id: "1F26", source: "Inferno" } +2017.9 "Rahu Blaster" Ability { id: "1F29", source: "Inferno" } +2028.8 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } + +2045.0 "Ketu Cut 1" Ability { id: "2086", source: "Inferno" } window 50,50 +2054.7 "Ketu Slash" Ability { id: "208B", source: "Inferno" } +2062.3 "Rahu Blaster" Ability { id: "1F29", source: "Inferno" } +2069.8 "Ketu Slash" Ability { id: "208B", source: "Inferno" } +2079.9 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2087.9 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2096.8 "Rahu Blaster" Ability { id: "1F29", source: "Inferno" } +2104.3 "Ketu Slash" Ability { id: "208B", source: "Inferno" } + +2119.2 "Rahu Cut 1" Ability { id: "2087", source: "Inferno" } window 50,50 2123.3 "--adds--" -2128.8 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208B:/ -2136.3 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208E:/ -2143.9 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208B:/ -2151.4 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208E:/ +2128.8 "Ketu Slash" Ability { id: "208B", source: "Inferno" } +2136.3 "Rahu Blaster" Ability { id: "208E", source: "Inferno" } +2143.9 "Ketu Slash" Ability { id: "208B", source: "Inferno" } +2151.4 "Rahu Blaster" Ability { id: "208E", source: "Inferno" } # 2159 Quick Charge can go off here, which delays Ketu & Rahu by 30s, throws off timeline. # Hopefully the large sync on Rahu Cut below will get it sorted again. -2159.8 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2167.8 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2175.6 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208E:/ -2183.1 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208B:/ +2159.8 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2167.8 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2175.6 "Rahu Blaster" Ability { id: "208E", source: "Inferno" } +2183.1 "Ketu Slash" Ability { id: "208B", source: "Inferno" } -2197.9 "Ketu Cut 2" sync / 1[56]:[^:]*:Inferno:2086:/ window 50,50 +2197.9 "Ketu Cut 2" Ability { id: "2086", source: "Inferno" } window 50,50 2201.8 "--adds--" -2207.7 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208C:/ -2215.3 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208E:/ -2222.9 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208C:/ -2230.4 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208E:/ +2207.7 "Ketu Slash" Ability { id: "208C", source: "Inferno" } +2215.3 "Rahu Blaster" Ability { id: "208E", source: "Inferno" } +2222.9 "Ketu Slash" Ability { id: "208C", source: "Inferno" } +2230.4 "Rahu Blaster" Ability { id: "208E", source: "Inferno" } # 2237.5 Quick Charge? -2238.5 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2246.5 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2254.3 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208E:/ -2261.9 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208C:/ +2238.5 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2246.5 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2254.3 "Rahu Blaster" Ability { id: "208E", source: "Inferno" } +2261.9 "Ketu Slash" Ability { id: "208C", source: "Inferno" } # Once we get to this Rahu Cut, then it is fully powered. -2276.8 "Rahu Cut 2" sync / 1[56]:[^:]*:Inferno:2087:/ window 150,150 -2286.4 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208C:/ -2294.0 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208F:/ -2301.5 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208C:/ -2309.0 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208F:/ -2317.3 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2325.4 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2333.2 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208F:/ +2276.8 "Rahu Cut 2" Ability { id: "2087", source: "Inferno" } window 150,150 +2286.4 "Ketu Slash" Ability { id: "208C", source: "Inferno" } +2294.0 "Rahu Blaster" Ability { id: "208F", source: "Inferno" } +2301.5 "Ketu Slash" Ability { id: "208C", source: "Inferno" } +2309.0 "Rahu Blaster" Ability { id: "208F", source: "Inferno" } +2317.3 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2325.4 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2333.2 "Rahu Blaster" Ability { id: "208F", source: "Inferno" } # loop -2340.7 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208C:/ -2351.6 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2359.7 "Ketu & Rahu" sync / 1[56]:[^:]*:Inferno:1F25:/ -2367.6 "Rahu Blaster" sync / 1[56]:[^:]*:Inferno:208F:/ - -2375.2 "Ketu Slash" sync / 1[56]:[^:]*:Inferno:208C:/ window 20,200 jump 2340.7 -2386.1 "Ketu & Rahu" #sync / 1[56]:[^:]*:Inferno:1F25:/ -2394.2 "Ketu & Rahu" #sync / 1[56]:[^:]*:Inferno:1F25:/ -2402.1 "Rahu Blaster" #sync / 1[56]:[^:]*:Inferno:208F:/ +2340.7 "Ketu Slash" Ability { id: "208C", source: "Inferno" } +2351.6 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2359.7 "Ketu & Rahu" Ability { id: "1F25", source: "Inferno" } +2367.6 "Rahu Blaster" Ability { id: "208F", source: "Inferno" } + +2375.2 "Ketu Slash" Ability { id: "208C", source: "Inferno" } window 20,200 jump 2340.7 +2386.1 "Ketu & Rahu" #Ability { id: "1F25", source: "Inferno" } +2394.2 "Ketu & Rahu" #Ability { id: "1F25", source: "Inferno" } +2402.1 "Rahu Blaster" #Ability { id: "208F", source: "Inferno" } diff --git a/ui/raidboss/data/04-sb/dungeon/doma_castle.txt b/ui/raidboss/data/04-sb/dungeon/doma_castle.txt index 550b679b64..d97e388d4e 100644 --- a/ui/raidboss/data/04-sb/dungeon/doma_castle.txt +++ b/ui/raidboss/data/04-sb/dungeon/doma_castle.txt @@ -5,37 +5,37 @@ hideall "--sync--" # -ii 209F 20A0 # boss will walk center before using 209D Cermet Pile, causes timeline drift # The Third Armory will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:7C1:/ -7.4 "Cermet Pile" sync / 1[56]:[^:]*:Magitek Rearguard:209D:/ window 10,10 -15.0 "Garlean Fire" sync / 1[56]:[^:]*:Magitek Rearguard:209E:/ -30.6 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -35.6 "Rearguard Mines" #sync / 03:........:Rearguard Mine:/ -37.8 "Cermet Pile" sync / 1[56]:[^:]*:Magitek Rearguard:209D:/ window 10,10 -40.8 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -43.4 "Garlean Fire" sync / 1[56]:[^:]*:Magitek Rearguard:209E:/ -48.9 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -53.9 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -60.9 "Cermet Pile" sync / 1[56]:[^:]*:Magitek Rearguard:209D:/ window 10,5 -68.5 "Rearguard Mines" #sync / 03:........:Rearguard Mine:/ +0 "Start" SystemLogMessage { id: "7DC", param1: "7C1" } +7.4 "Cermet Pile" Ability { id: "209D", source: "Magitek Rearguard" } window 10,10 +15.0 "Garlean Fire" Ability { id: "209E", source: "Magitek Rearguard" } +30.6 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +35.6 "Rearguard Mines" #AddedCombatant { name: "Rearguard Mine" } +37.8 "Cermet Pile" Ability { id: "209D", source: "Magitek Rearguard" } window 10,10 +40.8 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +43.4 "Garlean Fire" Ability { id: "209E", source: "Magitek Rearguard" } +48.9 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +53.9 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +60.9 "Cermet Pile" Ability { id: "209D", source: "Magitek Rearguard" } window 10,5 +68.5 "Rearguard Mines" #AddedCombatant { name: "Rearguard Mine" } -70.7 "Cermet Pile" sync / 1[56]:[^:]*:Magitek Rearguard:209D:/ window 5,10 -73.7 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -76.4 "Garlean Fire" sync / 1[56]:[^:]*:Magitek Rearguard:209E:/ -81.9 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -86.0 "Cermet Pile" sync / 1[56]:[^:]*:Magitek Rearguard:209D:/ window 10,10 -88.9 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -91.6 "Garlean Fire" sync / 1[56]:[^:]*:Magitek Rearguard:209E:/ -97.2 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -98.7 "Rearguard Mines" #sync / 03:........:Rearguard Mine:/ -101.3 "Cermet Pile" sync / 1[56]:[^:]*:Magitek Rearguard:209D:/ window 10,10 -104.3 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -107.0 "Garlean Fire" sync / 1[56]:[^:]*:Magitek Rearguard:209E:/ -112.5 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -115.6 "Cermet Pile" sync / 1[56]:[^:]*:Magitek Rearguard:209D:/ window 10,10 -118.6 "Magitek Ray" sync / 1[56]:[^:]*:Rearguard Bit:20A1:/ -131.3 "Rearguard Mines" #sync / 03:........:Rearguard Mine:/ +70.7 "Cermet Pile" Ability { id: "209D", source: "Magitek Rearguard" } window 5,10 +73.7 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +76.4 "Garlean Fire" Ability { id: "209E", source: "Magitek Rearguard" } +81.9 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +86.0 "Cermet Pile" Ability { id: "209D", source: "Magitek Rearguard" } window 10,10 +88.9 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +91.6 "Garlean Fire" Ability { id: "209E", source: "Magitek Rearguard" } +97.2 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +98.7 "Rearguard Mines" #AddedCombatant { name: "Rearguard Mine" } +101.3 "Cermet Pile" Ability { id: "209D", source: "Magitek Rearguard" } window 10,10 +104.3 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +107.0 "Garlean Fire" Ability { id: "209E", source: "Magitek Rearguard" } +112.5 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +115.6 "Cermet Pile" Ability { id: "209D", source: "Magitek Rearguard" } window 10,10 +118.6 "Magitek Ray" Ability { id: "20A1", source: "Rearguard Bit" } +131.3 "Rearguard Mines" #AddedCombatant { name: "Rearguard Mine" } -133.2 "Cermet Pile" sync / 1[56]:[^:]*:Magitek Rearguard:209D:/ window 5,10 jump 70.7 +133.2 "Cermet Pile" Ability { id: "209D", source: "Magitek Rearguard" } window 5,10 jump 70.7 136.2 "Magitek Ray" 138.9 "Garlean Fire" 144.4 "Magitek Ray" @@ -49,37 +49,37 @@ hideall "--sync--" # -ii 20A4 20A6 20A7 2447 # boss does not re-center # Training Grounds will be sealed off -1000 "Start" sync / 29:[^:]*:7DC:[^:]*:7C2:/ window 1000,0 -1010.6 "Circle Of Death" sync / 1[56]:[^:]*:Magitek Hexadrone:20A2:/ -1018.9 "2-Tonze Magitek Missile" sync / 1[56]:[^:]*:Magitek Hexadrone:20A3:/ -1024.1 "Hexadrone Bits" sync / 03:........:Hexadrone Bit:/ +1000 "Start" SystemLogMessage { id: "7DC", param1: "7C2" } window 1000,0 +1010.6 "Circle Of Death" Ability { id: "20A2", source: "Magitek Hexadrone" } +1018.9 "2-Tonze Magitek Missile" Ability { id: "20A3", source: "Magitek Hexadrone" } +1024.1 "Hexadrone Bits" AddedCombatant { name: "Hexadrone Bit" } 1029.6 "Bits Activate" -1039.6 "Circle Of Death" sync / 1[56]:[^:]*:Magitek Hexadrone:20A2:/ -1045.7 "Hexadrone Bits" sync / 03:........:Hexadrone Bit:/ +1039.6 "Circle Of Death" Ability { id: "20A2", source: "Magitek Hexadrone" } +1045.7 "Hexadrone Bits" AddedCombatant { name: "Hexadrone Bit" } 1051.2 "Bits Activate" -1049.8 "Circle Of Death" sync / 1[56]:[^:]*:Magitek Hexadrone:20A2:/ -1064.5 "Magitek Missiles" sync / 1[56]:[^:]*:Magitek Hexadrone:20A5:/ -1068.9 "Hexadrone Bits" sync / 03:........:Hexadrone Bit:/ +1049.8 "Circle Of Death" Ability { id: "20A2", source: "Magitek Hexadrone" } +1064.5 "Magitek Missiles" Ability { id: "20A5", source: "Magitek Hexadrone" } +1068.9 "Hexadrone Bits" AddedCombatant { name: "Hexadrone Bit" } 1074.4 "Bits Activate" -1077.3 "2-Tonze Magitek Missile" sync / 1[56]:[^:]*:Magitek Hexadrone:20A3:/ +1077.3 "2-Tonze Magitek Missile" Ability { id: "20A3", source: "Magitek Hexadrone" } -1083.9 "Circle Of Death" sync / 1[56]:[^:]*:Magitek Hexadrone:20A2:/ -1090.0 "Hexadrone Bits" sync / 03:........:Hexadrone Bit:/ +1083.9 "Circle Of Death" Ability { id: "20A2", source: "Magitek Hexadrone" } +1090.0 "Hexadrone Bits" AddedCombatant { name: "Hexadrone Bit" } 1095.5 "Bits Activate" -1098.6 "Magitek Missiles" sync / 1[56]:[^:]*:Magitek Hexadrone:20A5:/ -1111.2 "Hexadrone Bits" sync / 03:........:Hexadrone Bit:/ +1098.6 "Magitek Missiles" Ability { id: "20A5", source: "Magitek Hexadrone" } +1111.2 "Hexadrone Bits" AddedCombatant { name: "Hexadrone Bit" } 1116.7 "Bits Activate" -1112.9 "Magitek Missiles" sync / 1[56]:[^:]*:Magitek Hexadrone:20A5:/ -1125.6 "Circle Of Death" sync / 1[56]:[^:]*:Magitek Hexadrone:20A2:/ -1132.0 "Hexadrone Bits" sync / 03:........:Hexadrone Bit:/ +1112.9 "Magitek Missiles" Ability { id: "20A5", source: "Magitek Hexadrone" } +1125.6 "Circle Of Death" Ability { id: "20A2", source: "Magitek Hexadrone" } +1132.0 "Hexadrone Bits" AddedCombatant { name: "Hexadrone Bit" } 1137.5 "Bits Activate" -1140.0 "2-Tonze Magitek Missile" sync / 1[56]:[^:]*:Magitek Hexadrone:20A3:/ -1150.1 "Magitek Missiles" sync / 1[56]:[^:]*:Magitek Hexadrone:20A5:/ -1159.5 "Hexadrone Bits" sync / 03:........:Hexadrone Bit:/ +1140.0 "2-Tonze Magitek Missile" Ability { id: "20A3", source: "Magitek Hexadrone" } +1150.1 "Magitek Missiles" Ability { id: "20A5", source: "Magitek Hexadrone" } +1159.5 "Hexadrone Bits" AddedCombatant { name: "Hexadrone Bit" } 1165.0 "Bits Activate" -1168.0 "2-Tonze Magitek Missile" sync / 1[56]:[^:]*:Magitek Hexadrone:20A3:/ +1168.0 "2-Tonze Magitek Missile" Ability { id: "20A3", source: "Magitek Hexadrone" } -1174.6 "Circle Of Death" sync / 1[56]:[^:]*:Magitek Hexadrone:20A2:/ jump 1083.9 +1174.6 "Circle Of Death" Ability { id: "20A2", source: "Magitek Hexadrone" } jump 1083.9 1180.7 "Hexadrone Bits" 1186.2 "Bits Activate" 1189.3 "Magitek Missiles" @@ -91,53 +91,53 @@ hideall "--sync--" # -ii 20A9 20AB 20AC 20AE 20A7 2447 # boss will walk center on 20B0 and stay center for 20AA Gunsaw, causes timeline drift # Hall of the Scarlet Swallow will be sealed off -2000 "Start" sync / 29:[^:]*:7DC:[^:]*:7C3:/ window 2000,0 -2009.4 "Chainsaw" duration 5.5 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20A8:/ +2000 "Start" SystemLogMessage { id: "7DC", param1: "7C3" } window 2000,0 +2009.4 "Chainsaw" duration 5.5 Ability { id: "20A8", source: "Hypertuned Grynewaht" } 2022.7 "--center--" -2022.7 "Delay-Action Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AD:/ window 10,10 # boss walks center before using -2023.1 "Gunsaw" duration 5.0 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AA:/ -2045.4 "Thermobaric Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AF:/ -2053.8 "--center--" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20B0:/ window 10,10 -2062.0 "Gunsaw" duration 5.0 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AA:/ -2075.3 "Delay-Action Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AD:/ -2075.3 "Clean Cut" #sync / 1[56]:[^:]*:Magitek Chakram:20B1:/ -2076.7 "--center--" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20B0:/ window 10,10 -2084.9 "Gunsaw" duration 5.0 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AA:/ -2098.2 "Delay-Action Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AD:/ -2098.2 "Clean Cut" #sync / 1[56]:[^:]*:Magitek Chakram:20B1:/ -2102.6 "Magitek Bits" sync / 03:........:Retuned Magitek Bit:/ +2022.7 "Delay-Action Charge" Ability { id: "20AD", source: "Hypertuned Grynewaht" } window 10,10 # boss walks center before using +2023.1 "Gunsaw" duration 5.0 Ability { id: "20AA", source: "Hypertuned Grynewaht" } +2045.4 "Thermobaric Charge" Ability { id: "20AF", source: "Hypertuned Grynewaht" } +2053.8 "--center--" Ability { id: "20B0", source: "Hypertuned Grynewaht" } window 10,10 +2062.0 "Gunsaw" duration 5.0 Ability { id: "20AA", source: "Hypertuned Grynewaht" } +2075.3 "Delay-Action Charge" Ability { id: "20AD", source: "Hypertuned Grynewaht" } +2075.3 "Clean Cut" #Ability { id: "20B1", source: "Magitek Chakram" } +2076.7 "--center--" Ability { id: "20B0", source: "Hypertuned Grynewaht" } window 10,10 +2084.9 "Gunsaw" duration 5.0 Ability { id: "20AA", source: "Hypertuned Grynewaht" } +2098.2 "Delay-Action Charge" Ability { id: "20AD", source: "Hypertuned Grynewaht" } +2098.2 "Clean Cut" #Ability { id: "20B1", source: "Magitek Chakram" } +2102.6 "Magitek Bits" AddedCombatant { name: "Retuned Magitek Bit" } 2108.1 "Bits Activate" -2117.9 "Chainsaw" duration 5.5 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20A8:/ -2120.9 "Thermobaric Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AF:/ -2127.9 "--center--" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20B0:/ window 10,10 -2134.2 "Gunsaw" duration 5.0 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AA:/ -2147.5 "Delay-Action Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AD:/ -2149.5 "Clean Cut" sync / 1[56]:[^:]*:Magitek Chakram:20B1:/ -2152.6 "--center--" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20B0:/ window 10,10 -2160.8 "Gunsaw" duration 5.0 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AA:/ -2174.1 "Delay-Action Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AD:/ -2174.1 "Clean Cut" #sync / 1[56]:[^:]*:Magitek Chakram:20B1:/ -2179.7 "--center--" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20B0:/ window 10,10 -2179.7 "Magitek Bits" sync / 03:........:Retuned Magitek Bit:/ +2117.9 "Chainsaw" duration 5.5 Ability { id: "20A8", source: "Hypertuned Grynewaht" } +2120.9 "Thermobaric Charge" Ability { id: "20AF", source: "Hypertuned Grynewaht" } +2127.9 "--center--" Ability { id: "20B0", source: "Hypertuned Grynewaht" } window 10,10 +2134.2 "Gunsaw" duration 5.0 Ability { id: "20AA", source: "Hypertuned Grynewaht" } +2147.5 "Delay-Action Charge" Ability { id: "20AD", source: "Hypertuned Grynewaht" } +2149.5 "Clean Cut" Ability { id: "20B1", source: "Magitek Chakram" } +2152.6 "--center--" Ability { id: "20B0", source: "Hypertuned Grynewaht" } window 10,10 +2160.8 "Gunsaw" duration 5.0 Ability { id: "20AA", source: "Hypertuned Grynewaht" } +2174.1 "Delay-Action Charge" Ability { id: "20AD", source: "Hypertuned Grynewaht" } +2174.1 "Clean Cut" #Ability { id: "20B1", source: "Magitek Chakram" } +2179.7 "--center--" Ability { id: "20B0", source: "Hypertuned Grynewaht" } window 10,10 +2179.7 "Magitek Bits" AddedCombatant { name: "Retuned Magitek Bit" } 2185.2 "Bits Activate" -2194.8 "Chainsaw" duration 5.5 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20A8:/ -2199.9 "Thermobaric Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AF:/ -2201.2 "Clean Cut" sync / 1[56]:[^:]*:Magitek Chakram:20B1:/ +2194.8 "Chainsaw" duration 5.5 Ability { id: "20A8", source: "Hypertuned Grynewaht" } +2199.9 "Thermobaric Charge" Ability { id: "20AF", source: "Hypertuned Grynewaht" } +2201.2 "Clean Cut" Ability { id: "20B1", source: "Magitek Chakram" } -2208.5 "--center--" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20B0:/ window 10,10 -2216.7 "Gunsaw" duration 5.0 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AA:/ -2230.0 "Delay-Action Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AD:/ -2230.0 "Clean Cut" #sync / 1[56]:[^:]*:Magitek Chakram:20B1:/ -2232.5 "Magitek Bits" sync / 03:........:Retuned Magitek Bit:/ +2208.5 "--center--" Ability { id: "20B0", source: "Hypertuned Grynewaht" } window 10,10 +2216.7 "Gunsaw" duration 5.0 Ability { id: "20AA", source: "Hypertuned Grynewaht" } +2230.0 "Delay-Action Charge" Ability { id: "20AD", source: "Hypertuned Grynewaht" } +2230.0 "Clean Cut" #Ability { id: "20B1", source: "Magitek Chakram" } +2232.5 "Magitek Bits" AddedCombatant { name: "Retuned Magitek Bit" } 2238.0 "Bits Activate" -2245.7 "Chainsaw" duration 5.5 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20A8:/ -2253.4 "Thermobaric Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AF:/ -2259.8 "Chainsaw" duration 5.5 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20A8:/ +2245.7 "Chainsaw" duration 5.5 Ability { id: "20A8", source: "Hypertuned Grynewaht" } +2253.4 "Thermobaric Charge" Ability { id: "20AF", source: "Hypertuned Grynewaht" } +2259.8 "Chainsaw" duration 5.5 Ability { id: "20A8", source: "Hypertuned Grynewaht" } -2274.0 "--center--" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20B0:/ window 10,10 +2274.0 "--center--" Ability { id: "20B0", source: "Hypertuned Grynewaht" } window 10,10 # Loop begins here, but the jump is attached to the Delay-Action Charge to preserve the duration timer for Gunsaw -2282.2 "Gunsaw" duration 5.0 sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AA:/ -2295.5 "Delay-Action Charge" sync / 1[56]:[^:]*:Hypertuned Grynewaht:20AD:/ jump 2230.0 +2282.2 "Gunsaw" duration 5.0 Ability { id: "20AA", source: "Hypertuned Grynewaht" } +2295.5 "Delay-Action Charge" Ability { id: "20AD", source: "Hypertuned Grynewaht" } jump 2230.0 2295.5 "Clean Cut" 2298.0 "Magitek Bits" 2303.5 "Bits Activate" diff --git a/ui/raidboss/data/04-sb/dungeon/drowned_city_of_skalla.txt b/ui/raidboss/data/04-sb/dungeon/drowned_city_of_skalla.txt index aa0936deda..74173a2139 100644 --- a/ui/raidboss/data/04-sb/dungeon/drowned_city_of_skalla.txt +++ b/ui/raidboss/data/04-sb/dungeon/drowned_city_of_skalla.txt @@ -9,28 +9,28 @@ hideall "--sync--" # -ii 2655 # The Green Screams will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:93A:/ window 0,1 -7.4 "Torpedo" sync / 1[56]:[^:]*:Kelpie:264F:/ window 7.4,5 -15.0 "Rising Seas" sync / 1[56]:[^:]*:Kelpie:2650:/ -26.7 "Gallop" sync / 1[56]:[^:]*:Kelpie:2653:/ -37.0 "Hydro Pull/Hydro Push" sync / 1[56]:[^:]*:Kelpie:(2651|2652):/ -43.5 "Torpedo" sync / 1[56]:[^:]*:Kelpie:264F:/ -51.1 "Rising Seas" sync / 1[56]:[^:]*:Kelpie:2650:/ -62.7 "Bloody Puddle" sync / 1[56]:[^:]*:Kelpie:2654:/ -65.9 "Gallop" sync / 1[56]:[^:]*:Kelpie:2653:/ window 20,20 -73.9 "Bubble Burst" sync / 1[56]:[^:]*:Hydrosphere:261B:/ -76.2 "Hydro Pull/Hydro Push" sync / 1[56]:[^:]*:Kelpie:(2651|2652):/ -92.6 "Rising Seas" sync / 1[56]:[^:]*:Kelpie:2650:/ +0 "Start" SystemLogMessage { id: "7DC", param1: "93A" } window 0,1 +7.4 "Torpedo" Ability { id: "264F", source: "Kelpie" } window 7.4,5 +15.0 "Rising Seas" Ability { id: "2650", source: "Kelpie" } +26.7 "Gallop" Ability { id: "2653", source: "Kelpie" } +37.0 "Hydro Pull/Hydro Push" Ability { id: ["2651", "2652"], source: "Kelpie" } +43.5 "Torpedo" Ability { id: "264F", source: "Kelpie" } +51.1 "Rising Seas" Ability { id: "2650", source: "Kelpie" } +62.7 "Bloody Puddle" Ability { id: "2654", source: "Kelpie" } +65.9 "Gallop" Ability { id: "2653", source: "Kelpie" } window 20,20 +73.9 "Bubble Burst" Ability { id: "261B", source: "Hydrosphere" } +76.2 "Hydro Pull/Hydro Push" Ability { id: ["2651", "2652"], source: "Kelpie" } +92.6 "Rising Seas" Ability { id: "2650", source: "Kelpie" } # A near-perfect 50-second rotation -102.2 "Torpedo" sync / 1[56]:[^:]*:Kelpie:264F:/ window 20,20 -107.8 "Rising Seas" sync / 1[56]:[^:]*:Kelpie:2650:/ -117.3 "Bloody Puddle" sync / 1[56]:[^:]*:Kelpie:2654:/ -120.5 "Gallop" sync / 1[56]:[^:]*:Kelpie:2653:/ -128.6 "Bubble Burst" sync / 1[56]:[^:]*:Hydrosphere:261B:/ -130.7 "Hydro Pull/Hydro Push" sync / 1[56]:[^:]*:Kelpie:(2651|2652):/ - -152.2 "Torpedo" sync / 1[56]:[^:]*:Kelpie:264F:/ window 20,20 jump 102.2 +102.2 "Torpedo" Ability { id: "264F", source: "Kelpie" } window 20,20 +107.8 "Rising Seas" Ability { id: "2650", source: "Kelpie" } +117.3 "Bloody Puddle" Ability { id: "2654", source: "Kelpie" } +120.5 "Gallop" Ability { id: "2653", source: "Kelpie" } +128.6 "Bubble Burst" Ability { id: "261B", source: "Hydrosphere" } +130.7 "Hydro Pull/Hydro Push" Ability { id: ["2651", "2652"], source: "Kelpie" } + +152.2 "Torpedo" Ability { id: "264F", source: "Kelpie" } window 20,20 jump 102.2 157.8 "Rising Seas" 167.3 "Bloody Puddle" 170.5 "Gallop" @@ -46,47 +46,47 @@ hideall "--sync--" # A Door Unopened will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:93C:/ window 1000,5 -1009.2 "Mystic Light" sync / 1[56]:[^:]*:The Old One:2657:/ -1015.0 "Mystic Flame" sync / 1[56]:[^:]*:The Old One:2658:/ -1018.1 "Order To Detonate (cast)" sync / 14:[^:]*:The Old One:265B:/ window 18.1,5 duration 19.7 -1037.8 "Order To Detonate?" # sync / 1[56]:[^:]*:The Old One:265B:/ -1040.6 "Self-Detonate?" # sync / 1[56]:[^:]*:Subservient:265C:/ -1047.7 "Mystic Flame" sync / 1[56]:[^:]*:The Old One:2658:/ window 20,20 -1058.8 "Mystic Light" sync / 1[56]:[^:]*:The Old One:2657:/ -1074.7 "Mystic Flame" sync / 1[56]:[^:]*:The Old One:2658:/ jump 1047.7 +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "93C" } window 1000,5 +1009.2 "Mystic Light" Ability { id: "2657", source: "The Old One" } +1015.0 "Mystic Flame" Ability { id: "2658", source: "The Old One" } +1018.1 "Order To Detonate (cast)" StartsUsing { id: "265B", source: "The Old One" } window 18.1,5 duration 19.7 +1037.8 "Order To Detonate?" # Ability { id: "265B", source: "The Old One" } +1040.6 "Self-Detonate?" # Ability { id: "265C", source: "Subservient" } +1047.7 "Mystic Flame" Ability { id: "2658", source: "The Old One" } window 20,20 +1058.8 "Mystic Light" Ability { id: "2657", source: "The Old One" } +1074.7 "Mystic Flame" Ability { id: "2658", source: "The Old One" } jump 1047.7 1085.8 "Mystic Light" 1101.7 "Mystic Flame" 1112.8 "Mystic Light" 1128.7 "Mystic Flame" 1139.8 "Mystic Light" -1200.0 "--sync--" sync / 14:[^:]*:The Old One:265A:/ window 200,10 -1202.7 "Shifting Light" sync / 1[56]:[^:]*:The Old One:265A:/ -1205.8 "Order To Detonate (cast)" sync / 14:[^:]*:The Old One:265B:/ duration 19.7 -# 1225.5 "Order To Detonate?" sync / 1[56]:[^:]*:The Old One:265B:/ -1228.3 "Self-Detonate?" # sync / 1[56]:[^:]*:Subservient:265C:/ -1232.6 "--sync--" sync / 14:[^:]*:The Old One:2657:/ window 32.6,5 -1236.3 "Mystic Light" sync / 1[56]:[^:]*:The Old One:2657:/ -1244.1 "Mystic Flame" sync / 1[56]:[^:]*:The Old One:2658:/ -1252.2 "Mystic Light" sync / 1[56]:[^:]*:The Old One:2657:/ -1269.0 "Mystic Light" sync / 1[56]:[^:]*:The Old One:2657:/ jump 1236.3 +1200.0 "--sync--" StartsUsing { id: "265A", source: "The Old One" } window 200,10 +1202.7 "Shifting Light" Ability { id: "265A", source: "The Old One" } +1205.8 "Order To Detonate (cast)" StartsUsing { id: "265B", source: "The Old One" } duration 19.7 +# 1225.5 "Order To Detonate?" Ability { id: "265B", source: "The Old One" } +1228.3 "Self-Detonate?" # Ability { id: "265C", source: "Subservient" } +1232.6 "--sync--" StartsUsing { id: "2657", source: "The Old One" } window 32.6,5 +1236.3 "Mystic Light" Ability { id: "2657", source: "The Old One" } +1244.1 "Mystic Flame" Ability { id: "2658", source: "The Old One" } +1252.2 "Mystic Light" Ability { id: "2657", source: "The Old One" } +1269.0 "Mystic Light" Ability { id: "2657", source: "The Old One" } jump 1236.3 1276.8 "Mystic Flame" 1284.9 "Mystic Light" 1301.7 "Mystic Light" 1309.5 "Mystic Flame" 1317.6 "Mystic Light" -1400.0 "--sync--" sync / 14:[^:]*:The Old One:265A:/ window 190,5 -1402.7 "Shifting Light" sync / 1[56]:[^:]*:The Old One:265A:/ -1405.8 "Order To Detonate (cast)" sync / 14:[^:]*:The Old One:265B:/ duration 19.7 -# 1425.5 "Order To Detonate?" sync / 1[56]:[^:]*:The Old One:265B:/ -1428.3 "Self-Detonate?" # sync / 1[56]:[^:]*:Subservient:265C:/ -1432.6 "--sync--" sync / 14:[^:]*:The Old One:2657:/ window 32.6,5 -1436.3 "Mystic Light" sync / 1[56]:[^:]*:The Old One:2657:/ -1444.1 "Mystic Flame" sync / 1[56]:[^:]*:The Old One:2658:/ -1452.2 "Mystic Light" sync / 1[56]:[^:]*:The Old One:2657:/ -1469.0 "Mystic Light" sync / 1[56]:[^:]*:The Old One:2657:/ jump 1436.3 +1400.0 "--sync--" StartsUsing { id: "265A", source: "The Old One" } window 190,5 +1402.7 "Shifting Light" Ability { id: "265A", source: "The Old One" } +1405.8 "Order To Detonate (cast)" StartsUsing { id: "265B", source: "The Old One" } duration 19.7 +# 1425.5 "Order To Detonate?" Ability { id: "265B", source: "The Old One" } +1428.3 "Self-Detonate?" # Ability { id: "265C", source: "Subservient" } +1432.6 "--sync--" StartsUsing { id: "2657", source: "The Old One" } window 32.6,5 +1436.3 "Mystic Light" Ability { id: "2657", source: "The Old One" } +1444.1 "Mystic Flame" Ability { id: "2658", source: "The Old One" } +1452.2 "Mystic Light" Ability { id: "2657", source: "The Old One" } +1469.0 "Mystic Light" Ability { id: "2657", source: "The Old One" } jump 1436.3 1476.8 "Mystic Flame" 1484.9 "Mystic Light" 1501.7 "Mystic Light" @@ -98,41 +98,41 @@ hideall "--sync--" #~~~~~~~~~~~~~~~~~~~~~~# # The Golden Walls of Ruin will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:93E:/ window 2000,5 -2012.6 "Rusting Claw" sync / 1[56]:[^:]*:Hrodric Poisontongue:2661:/ window 2012.6 -2026.2 "Tail Drive" sync / 1[56]:[^:]*:Hrodric Poisontongue:2663:/ -2035.9 "The Spin" sync / 1[56]:[^:]*:Hrodric Poisontongue:2664:/ window 35.9,5 -2041.6 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ -2046.7 "Ring Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:2667:/ -2052.2 "Eye Of The Fire" sync / 1[56]:[^:]*:Hrodric Poisontongue:2665:/ window 2052.2,10 -2057.9 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ -2063.0 "Cross Of Chaos/Circle Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:(2668|2669):/ -2068.7 "Words Of Woe" sync / 1[56]:[^:]*:Hrodric Poisontongue:2662:/ -2074.4 "Words Of Woe" sync / 1[56]:[^:]*:Hrodric Poisontongue:2662:/ -2080.2 "Words Of Woe" sync / 1[56]:[^:]*:Hrodric Poisontongue:2662:/ -2087.9 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ window 15,2.5 # Solo/duo runners will see only one or two lasers - -2093.0 "Ring Of Chaos/Cross Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:(2667|2668):/ -2095.5 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ -2100.6 "Ring Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:2667:/ -2103.0 "Tail Drive" sync / 1[56]:[^:]*:Hrodric Poisontongue:2663:/ -2115.6 "The Spin" sync / 1[56]:[^:]*:Hrodric Poisontongue:2664:/ window 30,30 -2126.3 "Rusting Claw" sync / 1[56]:[^:]*:Hrodric Poisontongue:2661:/ -2132.0 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ -2137.1 "Cross Of Chaos/Circle Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:(2668|2669):/ -2139.6 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ -2144.7 "Ring Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:2667:/ -2145.2 "Eye Of The Fire" sync / 1[56]:[^:]*:Hrodric Poisontongue:2665:/ window 30,30 -2155.8 "Rusting Claw" sync / 1[56]:[^:]*:Hrodric Poisontongue:2661:/ -2166.4 "Tail Drive" sync / 1[56]:[^:]*:Hrodric Poisontongue:2663:/ -2174.1 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ -2179.2 "Ring Of Chaos/Circle Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:(2667|2669):/ -2181.7 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ -2186.8 "Cross Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:2668:/ -2187.5 "Words Of Woe" sync / 1[56]:[^:]*:Hrodric Poisontongue:2662:/ -2195.2 "--sync--" sync / 1[56]:[^:]*:Hrodric Poisontongue:2666:/ - -2200.3 "Ring Of Chaos/Cross Of Chaos" sync / 1[56]:[^:]*:Hrodric Poisontongue:(2667|2668):/ jump 2093.0 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "93E" } window 2000,5 +2012.6 "Rusting Claw" Ability { id: "2661", source: "Hrodric Poisontongue" } window 2012.6 +2026.2 "Tail Drive" Ability { id: "2663", source: "Hrodric Poisontongue" } +2035.9 "The Spin" Ability { id: "2664", source: "Hrodric Poisontongue" } window 35.9,5 +2041.6 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } +2046.7 "Ring Of Chaos" Ability { id: "2667", source: "Hrodric Poisontongue" } +2052.2 "Eye Of The Fire" Ability { id: "2665", source: "Hrodric Poisontongue" } window 2052.2,10 +2057.9 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } +2063.0 "Cross Of Chaos/Circle Of Chaos" Ability { id: ["2668", "2669"], source: "Hrodric Poisontongue" } +2068.7 "Words Of Woe" Ability { id: "2662", source: "Hrodric Poisontongue" } +2074.4 "Words Of Woe" Ability { id: "2662", source: "Hrodric Poisontongue" } +2080.2 "Words Of Woe" Ability { id: "2662", source: "Hrodric Poisontongue" } +2087.9 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } window 15,2.5 # Solo/duo runners will see only one or two lasers + +2093.0 "Ring Of Chaos/Cross Of Chaos" Ability { id: ["2667", "2668"], source: "Hrodric Poisontongue" } +2095.5 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } +2100.6 "Ring Of Chaos" Ability { id: "2667", source: "Hrodric Poisontongue" } +2103.0 "Tail Drive" Ability { id: "2663", source: "Hrodric Poisontongue" } +2115.6 "The Spin" Ability { id: "2664", source: "Hrodric Poisontongue" } window 30,30 +2126.3 "Rusting Claw" Ability { id: "2661", source: "Hrodric Poisontongue" } +2132.0 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } +2137.1 "Cross Of Chaos/Circle Of Chaos" Ability { id: ["2668", "2669"], source: "Hrodric Poisontongue" } +2139.6 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } +2144.7 "Ring Of Chaos" Ability { id: "2667", source: "Hrodric Poisontongue" } +2145.2 "Eye Of The Fire" Ability { id: "2665", source: "Hrodric Poisontongue" } window 30,30 +2155.8 "Rusting Claw" Ability { id: "2661", source: "Hrodric Poisontongue" } +2166.4 "Tail Drive" Ability { id: "2663", source: "Hrodric Poisontongue" } +2174.1 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } +2179.2 "Ring Of Chaos/Circle Of Chaos" Ability { id: ["2667", "2669"], source: "Hrodric Poisontongue" } +2181.7 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } +2186.8 "Cross Of Chaos" Ability { id: "2668", source: "Hrodric Poisontongue" } +2187.5 "Words Of Woe" Ability { id: "2662", source: "Hrodric Poisontongue" } +2195.2 "--sync--" Ability { id: "2666", source: "Hrodric Poisontongue" } + +2200.3 "Ring Of Chaos/Cross Of Chaos" Ability { id: ["2667", "2668"], source: "Hrodric Poisontongue" } jump 2093.0 2202.8 "--sync--" 2207.9 "Ring Of Chaos" 2210.3 "Tail Drive" diff --git a/ui/raidboss/data/04-sb/dungeon/fractal_continuum_hard.txt b/ui/raidboss/data/04-sb/dungeon/fractal_continuum_hard.txt index e400c68484..0313687d44 100644 --- a/ui/raidboss/data/04-sb/dungeon/fractal_continuum_hard.txt +++ b/ui/raidboss/data/04-sb/dungeon/fractal_continuum_hard.txt @@ -10,21 +10,21 @@ hideall "--sync--" # -ii 27A3 27A7 27A9 # Reality Augmentation Bay will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:612:/ +0 "Start" SystemLogMessage { id: "7DC", param1: "612" } -10.1 "Electrochemical Transfer" sync / 1[56]:[^:]*:Motherbit:27A4:/ window 11,5 -15.7 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:27AB:/ -18.8 "Aetherochemical Laser" # sync / 1[56]:[^:]*:Prototype Bit:27AA:/ -20.1 "Diffractive Laser" sync / 1[56]:[^:]*:Prototype Bit:27A8:/ -20.7 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:27AB:/ -22.8 "Aetherochemical Laser" # sync / 1[56]:[^:]*:Prototype Bit:27AA:/ -29.8 "Allagan Gravity" sync / 1[56]:[^:]*:Motherbit:27A6:/ +10.1 "Electrochemical Transfer" Ability { id: "27A4", source: "Motherbit" } window 11,5 +15.7 "--sync--" Ability { id: "27AB", source: "Prototype Bit" } +18.8 "Aetherochemical Laser" # Ability { id: "27AA", source: "Prototype Bit" } +20.1 "Diffractive Laser" Ability { id: "27A8", source: "Prototype Bit" } +20.7 "--sync--" Ability { id: "27AB", source: "Prototype Bit" } +22.8 "Aetherochemical Laser" # Ability { id: "27AA", source: "Prototype Bit" } +29.8 "Allagan Gravity" Ability { id: "27A6", source: "Motherbit" } -37.9 "Electrochemical Transfer" sync / 1[56]:[^:]*:Motherbit:27A4:/ -43.5 "--sync--" sync / 1[56]:[^:]*:Prototype Bit:27AB:/ -54.2 "Citadel Buster" sync / 1[56]:[^:]*:Motherbit:27A5:/ window 30,30 +37.9 "Electrochemical Transfer" Ability { id: "27A4", source: "Motherbit" } +43.5 "--sync--" Ability { id: "27AB", source: "Prototype Bit" } +54.2 "Citadel Buster" Ability { id: "27A5", source: "Motherbit" } window 30,30 -77.9 "Electrochemical Transfer" sync / 1[56]:[^:]*:Motherbit:27A4:/ jump 10.1 +77.9 "Electrochemical Transfer" Ability { id: "27A4", source: "Motherbit" } jump 10.1 86.6 "Aetherochemical Laser" 87.9 "Diffractive Laser" 90.6 "Aetherochemical Laser" @@ -51,15 +51,15 @@ hideall "--sync--" # regardless of whether X is followed by Y or by Z. # Exhibit Level VIII will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:95D:/ window 1000,5 -1008.5 "Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Warrior:2793:/ window 8.5,5 -1018.9 "Citadel Buster" sync / 1[56]:[^:]*:The Ultima Warrior:2792:/ -1029.8 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Warrior:2794:/ -1042.0 "Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Warrior:2793:/ # skipped if boss is at or below 95% HP - -1053.4 "--sync--" sync / 00:0044:Vocal Guidance System:This humanoid prototype can perfectly replicate/ window 53.4,10 jump 1100.0 -1053.4 "--sync--" sync / 00:0044:Vocal Guidance System:Utilizing our data on Sophia/ window 53.4,10 jump 1200.0 -1053.4 "--sync--" sync / 00:0044:Vocal Guidance System:Successfully mimicking the Demon Zurvan/ window 53.4,10 jump 1300.0 +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "95D" } window 1000,5 +1008.5 "Aetheroplasm" Ability { id: "2793", source: "The Ultima Warrior" } window 8.5,5 +1018.9 "Citadel Buster" Ability { id: "2792", source: "The Ultima Warrior" } +1029.8 "Ceruleum Vent" Ability { id: "2794", source: "The Ultima Warrior" } +1042.0 "Aetheroplasm" Ability { id: "2793", source: "The Ultima Warrior" } # skipped if boss is at or below 95% HP + +1053.4 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "This humanoid prototype can perfectly replicate.*?" } window 53.4,10 jump 1100.0 +1053.4 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Utilizing our data on Sophia.*?" } window 53.4,10 jump 1200.0 +1053.4 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Successfully mimicking the Demon Zurvan.*?" } window 53.4,10 jump 1300.0 1060.9 "Primordial Aether" 1062.0 "Ceruleum Vent?" 1063.5 "Infinite Fire/Infinite Ice?" @@ -71,17 +71,17 @@ hideall "--sync--" # Sephirot's block -1100.0 "--sync--" sync / 00:0044:Vocal Guidance System:This humanoid prototype can perfectly replicate/ -1107.5 "Primordial Aether" sync / 1[56]:[^:]*:The Ultima Warrior:2796:/ window 10,10 -1119.1 "Citadel Buster" sync / 1[56]:[^:]*:The Ultima Warrior:2792:/ -1120.1 "Ratzon" sync / 1[56]:[^:]*:The Ultima Warrior:2797:/ -1125.2 "Citadel Buster" sync / 1[56]:[^:]*:The Ultima Warrior:2792:/ -1139.2 "Mass Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Warrior:2795:/ -1149.7 "Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Warrior:2793:/ - -1154.8 "--sync--" sync / 00:0044:Vocal Guidance System:This humanoid prototype can perfectly replicate/ window 50,10 jump 1100.0 -1154.8 "--sync--" sync / 00:0044:Vocal Guidance System:Utilizing our data on Sophia/ window 50,10 jump 1200.0 -1154.8 "--sync--" sync / 00:0044:Vocal Guidance System:Successfully mimicking the Demon Zurvan/ window 50,10 jump 1300.0 +1100.0 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "This humanoid prototype can perfectly replicate.*?" } +1107.5 "Primordial Aether" Ability { id: "2796", source: "The Ultima Warrior" } window 10,10 +1119.1 "Citadel Buster" Ability { id: "2792", source: "The Ultima Warrior" } +1120.1 "Ratzon" Ability { id: "2797", source: "The Ultima Warrior" } +1125.2 "Citadel Buster" Ability { id: "2792", source: "The Ultima Warrior" } +1139.2 "Mass Aetheroplasm" Ability { id: "2795", source: "The Ultima Warrior" } +1149.7 "Aetheroplasm" Ability { id: "2793", source: "The Ultima Warrior" } + +1154.8 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "This humanoid prototype can perfectly replicate.*?" } window 50,10 jump 1100.0 +1154.8 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Utilizing our data on Sophia.*?" } window 50,10 jump 1200.0 +1154.8 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Successfully mimicking the Demon Zurvan.*?" } window 50,10 jump 1300.0 1162.3 "Primordial Aether" 1163.4 "Ceruleum Vent?" 1164.9 "Infinite Fire/Infinite Ice?" @@ -93,18 +93,18 @@ hideall "--sync--" # Sophia's Block -1200.0 "--sync--" sync / 00:0044:Vocal Guidance System:Utilizing our data on Sophia/ -1207.5 "Primordial Aether" sync / 1[56]:[^:]*:The Ultima Warrior:2796:/ window 10,10 -1218.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Warrior:2794:/ -1225.3 "Citadel Buster" sync / 1[56]:[^:]*:The Ultima Warrior:2792:/ -1226.3 "Dischordant Cleansing" sync / 1[56]:[^:]*:The Ultima Warrior:279C:/ -1231.4 "Citadel Buster" sync / 1[56]:[^:]*:The Ultima Warrior:2792:/ -1232.3 "Dischordant Cleansing" sync / 1[56]:[^:]*:The Ultima Warrior:279A:/ -1242.3 "Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Warrior:2793:/ - -1248.5 "--sync--" sync / 00:0044:Vocal Guidance System:This humanoid prototype can perfectly replicate/ window 50,10 jump 1100.0 -1248.5 "--sync--" sync / 00:0044:Vocal Guidance System:Utilizing our data on Sophia/ window 50,10 jump 1200.0 -1248.5 "--sync--" sync / 00:0044:Vocal Guidance System:Successfully mimicking the Demon Zurvan/ window 50,10 jump 1300.0 +1200.0 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Utilizing our data on Sophia.*?" } +1207.5 "Primordial Aether" Ability { id: "2796", source: "The Ultima Warrior" } window 10,10 +1218.1 "Ceruleum Vent" Ability { id: "2794", source: "The Ultima Warrior" } +1225.3 "Citadel Buster" Ability { id: "2792", source: "The Ultima Warrior" } +1226.3 "Dischordant Cleansing" Ability { id: "279C", source: "The Ultima Warrior" } +1231.4 "Citadel Buster" Ability { id: "2792", source: "The Ultima Warrior" } +1232.3 "Dischordant Cleansing" Ability { id: "279A", source: "The Ultima Warrior" } +1242.3 "Aetheroplasm" Ability { id: "2793", source: "The Ultima Warrior" } + +1248.5 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "This humanoid prototype can perfectly replicate.*?" } window 50,10 jump 1100.0 +1248.5 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Utilizing our data on Sophia.*?" } window 50,10 jump 1200.0 +1248.5 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Successfully mimicking the Demon Zurvan.*?" } window 50,10 jump 1300.0 1256.0 "Primordial Aether" 1257.1 "Ceruleum Vent?" 1258.6 "Infinite Fire/Infinite Ice?" @@ -116,18 +116,18 @@ hideall "--sync--" # Zurvan's Block -1300.0 "--sync--" sync / 00:0044:Vocal Guidance System:Successfully mimicking the Demon Zurvan/ -1308.5 "Primordial Aether" sync / 1[56]:[^:]*:The Ultima Warrior:2796:/ window 10,10 -1311.1 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:The Ultima Warrior:279[DE]:/ -1319.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Warrior:2794:/ -1330.3 "Northern Star/Southern Star" sync / 1[56]:[^:]*:The Ultima Warrior:27A[01]:/ -1336.4 "Mass Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Warrior:2795:/ -1343.0 "Citadel Buster" sync / 1[56]:[^:]*:The Ultima Warrior:2792:/ -1354.0 "Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Warrior:2793:/ - -1365.5 "--sync--" sync / 00:0044:Vocal Guidance System:This humanoid prototype can perfectly replicate/ window 50,10 jump 1100.0 -1365.5 "--sync--" sync / 00:0044:Vocal Guidance System:Utilizing our data on Sophia/ window 50,10 jump 1200.0 -1365.5 "--sync--" sync / 00:0044:Vocal Guidance System:Successfully mimicking the Demon Zurvan/ window 50,10 jump 1300.0 +1300.0 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Successfully mimicking the Demon Zurvan.*?" } +1308.5 "Primordial Aether" Ability { id: "2796", source: "The Ultima Warrior" } window 10,10 +1311.1 "Infinite Fire/Infinite Ice" Ability { id: "279[DE]", source: "The Ultima Warrior" } +1319.1 "Ceruleum Vent" Ability { id: "2794", source: "The Ultima Warrior" } +1330.3 "Northern Star/Southern Star" Ability { id: "27A[01]", source: "The Ultima Warrior" } +1336.4 "Mass Aetheroplasm" Ability { id: "2795", source: "The Ultima Warrior" } +1343.0 "Citadel Buster" Ability { id: "2792", source: "The Ultima Warrior" } +1354.0 "Aetheroplasm" Ability { id: "2793", source: "The Ultima Warrior" } + +1365.5 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "This humanoid prototype can perfectly replicate.*?" } window 50,10 jump 1100.0 +1365.5 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Utilizing our data on Sophia.*?" } window 50,10 jump 1200.0 +1365.5 "--sync--" GameLog { code: "0044", name: "Vocal Guidance System", line: "Successfully mimicking the Demon Zurvan.*?" } window 50,10 jump 1300.0 1373.0 "Primordial Aether" 1374.1 "Ceruleum Vent?" 1375.6 "Infinite Fire/Infinite Ice?" @@ -144,32 +144,32 @@ hideall "--sync--" # -ii 27B9 27BC 27BA 27BB # Genesis Engine will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:95E:/ window 2000,5 -2012.0 "Death Spin" sync / 1[56]:[^:]*:The Ultima Beast:27AD:/ window 12,5 -2025.6 "Aether Bend" sync / 1[56]:[^:]*:The Ultima Beast:27AF:/ -2035.2 "--sync--" sync / 1[56]:[^:]*:The Ultima Beast:27B6:/ -2044.1 "Flare Star" sync / 1[56]:[^:]*:The Ultima Beast:27BD:/ -2044.3 "Allagan Gravity" sync / 1[56]:[^:]*:The Ultima Beast:27B5:/ window 30,30 -2057.9 "Light Pillar" sync / 1[56]:[^:]*:The Ultima Beast:27B7:/ -2076.5 "Forborn Beast" sync / 1[56]:[^:]*:The Ultima Beast:27B1:/ window 76.5,5 -2085.0 "Demi Ultima" sync / 1[56]:[^:]*:The Ultima Beast:27B2:/ -2102.9 "Aether Bend/Death Spin" sync / 1[56]:[^:]*:The Ultima Beast:27(AD|B0):/ -2113.4 "--sync--" sync / 1[56]:[^:]*:The Ultima Beast:27B4:/ -2115.4 "Allagan Flare" sync / 1[56]:[^:]*:The Ultima Beast:27B8:/ - -2128.0 "--sync--" sync / 1[56]:[^:]*:The Ultima Beast:27B6:/ window 30,30 -2136.9 "Flare Star" sync / 1[56]:[^:]*:The Ultima Beast:27BD:/ -2141.5 "--sync--" sync / 1[56]:[^:]*:The Ultima Beast:27B4:/ -2143.5 "Allagan Flare" sync / 1[56]:[^:]*:The Ultima Beast:27B8:/ -2158.1 "Aether Bend/Death Spin" sync / 1[56]:[^:]*:The Ultima Beast:27(AD|B0):/ -2168.7 "Light Pillar" sync / 1[56]:[^:]*:The Ultima Beast:27B7:/ -2176.7 "Allagan Gravity" sync / 1[56]:[^:]*:The Ultima Beast:27B5:/ - -2196.2 "--sync--" sync / 1[56]:[^:]*:The Ultima Beast:27B6:/ window 30,30 jump 2128.0 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "95E" } window 2000,5 +2012.0 "Death Spin" Ability { id: "27AD", source: "The Ultima Beast" } window 12,5 +2025.6 "Aether Bend" Ability { id: "27AF", source: "The Ultima Beast" } +2035.2 "--sync--" Ability { id: "27B6", source: "The Ultima Beast" } +2044.1 "Flare Star" Ability { id: "27BD", source: "The Ultima Beast" } +2044.3 "Allagan Gravity" Ability { id: "27B5", source: "The Ultima Beast" } window 30,30 +2057.9 "Light Pillar" Ability { id: "27B7", source: "The Ultima Beast" } +2076.5 "Forborn Beast" Ability { id: "27B1", source: "The Ultima Beast" } window 76.5,5 +2085.0 "Demi Ultima" Ability { id: "27B2", source: "The Ultima Beast" } +2102.9 "Aether Bend/Death Spin" Ability { id: "27(AD|B0)", source: "The Ultima Beast" } +2113.4 "--sync--" Ability { id: "27B4", source: "The Ultima Beast" } +2115.4 "Allagan Flare" Ability { id: "27B8", source: "The Ultima Beast" } + +2128.0 "--sync--" Ability { id: "27B6", source: "The Ultima Beast" } window 30,30 +2136.9 "Flare Star" Ability { id: "27BD", source: "The Ultima Beast" } +2141.5 "--sync--" Ability { id: "27B4", source: "The Ultima Beast" } +2143.5 "Allagan Flare" Ability { id: "27B8", source: "The Ultima Beast" } +2158.1 "Aether Bend/Death Spin" Ability { id: "27(AD|B0)", source: "The Ultima Beast" } +2168.7 "Light Pillar" Ability { id: "27B7", source: "The Ultima Beast" } +2176.7 "Allagan Gravity" Ability { id: "27B5", source: "The Ultima Beast" } + +2196.2 "--sync--" Ability { id: "27B6", source: "The Ultima Beast" } window 30,30 jump 2128.0 2205.1 "Flare Star" 2211.7 "Allagan Flare" 2226.3 "Aether Bend/Death Spin" -3000.0 "--sync--" sync / 14:[^:]*:The Ultima Beast:27B3:/ window 1000,5 -3039.7 "Demi Ultima (Enrage)" sync / 1[56]:[^:]*:The Ultima Beast:27B3:/ +3000.0 "--sync--" StartsUsing { id: "27B3", source: "The Ultima Beast" } window 1000,5 +3039.7 "Demi Ultima (Enrage)" Ability { id: "27B3", source: "The Ultima Beast" } diff --git a/ui/raidboss/data/04-sb/dungeon/ghimlyt_dark.txt b/ui/raidboss/data/04-sb/dungeon/ghimlyt_dark.txt index 439518e009..6472172b00 100644 --- a/ui/raidboss/data/04-sb/dungeon/ghimlyt_dark.txt +++ b/ui/raidboss/data/04-sb/dungeon/ghimlyt_dark.txt @@ -10,29 +10,29 @@ hideall "--sync--" # -ii 394F 3775 # The Field of Dust will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:AB8:/ window 0,1 -12.9 "Jarring Blow" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:376E:/ -15.0 "--sync--" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3771:/ -22.1 "Wild Fire Beam" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3772:/ window 30,30 -28.8 "Magitek Slash x5" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3774:/ duration 8 -45.5 "Exhaust" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3770:/ -55.7 "Ceruleum Vent" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3773:/ - -68.0 "Magitek Slash x5" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3774:/ duration 8 -80.2 "Magitek Slash x5" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3774:/ duration 8 -97.4 "Magitek Ray" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:376F:/ -102.6 "Exhaust" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3770:/ -116.8 "Ceruleum Vent" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3773:/ window 20,20 -120.0 "--sync--" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3771:/ -127.1 "Wild Fire Beam" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3772:/ -133.1 "Magitek Ray" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:376F:/ -138.3 "Exhaust" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3770:/ -143.7 "Exhaust" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3770:/ -156.0 "Jarring Blow" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:376E:/ window 30,30 -162.1 "Ceruleum Vent" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3773:/ -169.3 "Ceruleum Vent" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3773:/ - -176.5 "Magitek Slash x5" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3774:/ jump 68.0 +0 "Start" SystemLogMessage { id: "7DC", param1: "AB8" } window 0,1 +12.9 "Jarring Blow" Ability { id: "376E", source: "Mark III-B Magitek Colossus" } +15.0 "--sync--" Ability { id: "3771", source: "Mark III-B Magitek Colossus" } +22.1 "Wild Fire Beam" Ability { id: "3772", source: "Mark III-B Magitek Colossus" } window 30,30 +28.8 "Magitek Slash x5" Ability { id: "3774", source: "Mark III-B Magitek Colossus" } duration 8 +45.5 "Exhaust" Ability { id: "3770", source: "Mark III-B Magitek Colossus" } +55.7 "Ceruleum Vent" Ability { id: "3773", source: "Mark III-B Magitek Colossus" } + +68.0 "Magitek Slash x5" Ability { id: "3774", source: "Mark III-B Magitek Colossus" } duration 8 +80.2 "Magitek Slash x5" Ability { id: "3774", source: "Mark III-B Magitek Colossus" } duration 8 +97.4 "Magitek Ray" Ability { id: "376F", source: "Mark III-B Magitek Colossus" } +102.6 "Exhaust" Ability { id: "3770", source: "Mark III-B Magitek Colossus" } +116.8 "Ceruleum Vent" Ability { id: "3773", source: "Mark III-B Magitek Colossus" } window 20,20 +120.0 "--sync--" Ability { id: "3771", source: "Mark III-B Magitek Colossus" } +127.1 "Wild Fire Beam" Ability { id: "3772", source: "Mark III-B Magitek Colossus" } +133.1 "Magitek Ray" Ability { id: "376F", source: "Mark III-B Magitek Colossus" } +138.3 "Exhaust" Ability { id: "3770", source: "Mark III-B Magitek Colossus" } +143.7 "Exhaust" Ability { id: "3770", source: "Mark III-B Magitek Colossus" } +156.0 "Jarring Blow" Ability { id: "376E", source: "Mark III-B Magitek Colossus" } window 30,30 +162.1 "Ceruleum Vent" Ability { id: "3773", source: "Mark III-B Magitek Colossus" } +169.3 "Ceruleum Vent" Ability { id: "3773", source: "Mark III-B Magitek Colossus" } + +176.5 "Magitek Slash x5" Ability { id: "3774", source: "Mark III-B Magitek Colossus" } jump 68.0 188.7 "Magitek Slash x5" 205.9 "Magitek Ray" 211.1 "Exhaust" @@ -47,26 +47,26 @@ hideall "--sync--" # -ii 3AC6 # Impact Crater will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:ABB:/ window 1000,1 -1012.2 "Nitrospin" sync / 1[56]:[^:]*:Prometheus:3455:/ -1023.4 "Needle Gun" sync / 1[56]:[^:]*:Prometheus:345A:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "ABB" } window 1000,1 +1012.2 "Nitrospin" Ability { id: "3455", source: "Prometheus" } +1023.4 "Needle Gun" Ability { id: "345A", source: "Prometheus" } 1031.1 "--untargetable--" -1031.2 "Tunnel" sync / 1[56]:[^:]*:Prometheus:3457:/ window 31.2,5 -1042.8 "Heat" duration 4 # sync / 1[56]:[^:]*:Prometheus:3458:/ +1031.2 "Tunnel" Ability { id: "3457", source: "Prometheus" } window 31.2,5 +1042.8 "Heat" duration 4 # Ability { id: "3458", source: "Prometheus" } 1048.0 "--targetable--" -1056.2 "Unbreakable Cermet Drill" sync / 1[56]:[^:]*:Prometheus:3459:/ window 30,30 -1068.3 "Needle Gun" sync / 1[56]:[^:]*:Prometheus:345A:/ -1075.4 "Needle Gun/Oil Shower" sync / 1[56]:[^:]*:Prometheus:(345A|3456):/ -1086.4 "Nitrospin" sync / 1[56]:[^:]*:Prometheus:3455:/ -1097.8 "Freezing Missile (windup)" sync / 1[56]:[^:]*:Prometheus:345B:/ +1056.2 "Unbreakable Cermet Drill" Ability { id: "3459", source: "Prometheus" } window 30,30 +1068.3 "Needle Gun" Ability { id: "345A", source: "Prometheus" } +1075.4 "Needle Gun/Oil Shower" Ability { id: ["345A", "3456"], source: "Prometheus" } +1086.4 "Nitrospin" Ability { id: "3455", source: "Prometheus" } +1097.8 "Freezing Missile (windup)" Ability { id: "345B", source: "Prometheus" } 1100.4 "--untargetable--" -1100.5 "Tunnel" sync / 1[56]:[^:]*:Prometheus:3457:/ window 30,30 -1108.9 "Freezing Missile (cast)" sync / 1[56]:[^:]*:Prometheus:345C:/ -1113.1 "Heat" duration 4 # sync / 1[56]:[^:]*:Prometheus:3458:/ +1100.5 "Tunnel" Ability { id: "3457", source: "Prometheus" } window 30,30 +1108.9 "Freezing Missile (cast)" Ability { id: "345C", source: "Prometheus" } +1113.1 "Heat" duration 4 # Ability { id: "3458", source: "Prometheus" } 1118.2 "--targetable--" -1131.5 "Unbreakable Cermet Drill" sync / 1[56]:[^:]*:Prometheus:3459:/ jump 1056.2 +1131.5 "Unbreakable Cermet Drill" Ability { id: "3459", source: "Prometheus" } jump 1056.2 1143.6 "Needle Gun" 1150.7 "Needle Gun/Oil Shower" 1161.9 "Nitrospin" @@ -77,9 +77,9 @@ hideall "--sync--" #~~~~~~~~~~~~~# # Provisional Imperial Landing will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:ABD:/ window 2000,5 -2000.4 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ jump 2097.0 -2000.4 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ jump 2297.0 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "ABD" } window 2000,5 +2000.4 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } jump 2097.0 +2000.4 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } jump 2297.0 2003.4 "Artificial Plasma?" 2010.6 "Heirsbane?" 2011.6 "Angry Salamander?" @@ -91,46 +91,46 @@ hideall "--sync--" # Julia active -2097.0 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ -2100.0 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2108.2 "Angry Salamander" # sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2108.4 "Innocence" sync / 1[56]:[^:]*:Julia Quo Soranus:3729:/ -2117.5 "Commence Air Strike" sync / 1[56]:[^:]*:Julia Quo Soranus:3716:/ -2119.3 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ -2121.8 "Roundhouse" sync / 1[56]:[^:]*:Annia Quo Soranus:3718:/ +2097.0 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } +2100.0 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2108.2 "Angry Salamander" # Ability { id: "372C", source: "Annia Quo Soranus" } +2108.4 "Innocence" Ability { id: "3729", source: "Julia Quo Soranus" } +2117.5 "Commence Air Strike" Ability { id: "3716", source: "Julia Quo Soranus" } +2119.3 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } +2121.8 "Roundhouse" Ability { id: "3718", source: "Annia Quo Soranus" } # We have to sync widely here because if Julia is first she skips one Aglaia Bite. -2124.7 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:3719:/ window 15,15 -2127.6 "Burst x5" duration 8 # sync / 1[56]:[^:]*:Ceruleum Tank:371A:/ -2132.3 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2145.2 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2147.9 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2151.4 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ +2124.7 "Heirsbane" Ability { id: "3719", source: "Julia Quo Soranus" } window 15,15 +2127.6 "Burst x5" duration 8 # Ability { id: "371A", source: "Ceruleum Tank" } +2132.3 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2145.2 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2147.9 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2151.4 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } # During the rotation block, we can't sync Aglaia Bite, # since the double usage is just too close together. -2153.2 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ window 30,30 -2158.3 "Order To Fire" sync / 1[56]:[^:]*:Annia Quo Soranus:372D:/ -2158.3 "Missile Impact" sync / 1[56]:[^:]*:Annia Quo Soranus:372E:/ -2159.3 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:39BA:/ -2159.3 "Quaternity" sync / 1[56]:[^:]*:Soranus Duo:3989:/ -2164.6 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2168.8 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2174.9 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2182.2 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2183.2 "Innocence" sync / 1[56]:[^:]*:Julia Quo Soranus:3729:/ -2192.5 "Commence Air Strike" sync / 1[56]:[^:]*:Julia Quo Soranus:3716:/ window 30,30 -2194.1 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ -2194.8 "Aglaia Bite" # sync / 1[56]:[^:]*:Annia Quo Soranus:3717:/ -2196.9 "Aglaia Bite/Roundhouse" # sync / 1[56]:[^:]*:Annia Quo Soranus:371[78]:/ -2199.6 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:3719:/ -2202.5 "Burst x5" duration 12 # sync / 1[56]:[^:]*:Ceruleum Tank:371A:/ -2207.2 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2220.2 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2222.8 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2226.3 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ - -2228.1 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ window 30,30 jump 2153.2 +2153.2 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } window 30,30 +2158.3 "Order To Fire" Ability { id: "372D", source: "Annia Quo Soranus" } +2158.3 "Missile Impact" Ability { id: "372E", source: "Annia Quo Soranus" } +2159.3 "The Order" Ability { id: "39BA", source: "Julia Quo Soranus" } +2159.3 "Quaternity" Ability { id: "3989", source: "Soranus Duo" } +2164.6 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2168.8 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2174.9 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2182.2 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2183.2 "Innocence" Ability { id: "3729", source: "Julia Quo Soranus" } +2192.5 "Commence Air Strike" Ability { id: "3716", source: "Julia Quo Soranus" } window 30,30 +2194.1 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } +2194.8 "Aglaia Bite" # Ability { id: "3717", source: "Annia Quo Soranus" } +2196.9 "Aglaia Bite/Roundhouse" # Ability { id: "371[78]", source: "Annia Quo Soranus" } +2199.6 "Heirsbane" Ability { id: "3719", source: "Julia Quo Soranus" } +2202.5 "Burst x5" duration 12 # Ability { id: "371A", source: "Ceruleum Tank" } +2207.2 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2220.2 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2222.8 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2226.3 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } + +2228.1 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } window 30,30 jump 2153.2 2233.2 "Order To Fire" 2233.2 "Missile Impact" 2234.2 "The Order" @@ -143,32 +143,32 @@ hideall "--sync--" # Annia active -2297.0 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ -2307.2 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:372B:/ -2310.3 "Delta Trance" sync / 1[56]:[^:]*:Annia Quo Soranus:372A:/ -2314.9 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:372B:/ -2321.3 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ -2325.1 "Order To Bombard" sync / 1[56]:[^:]*:Annia Quo Soranus:3710:/ -2327.5 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ - -2329.5 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3714:/ window 30,30 -2329.7 "Crossbones" sync / 1[56]:[^:]*:Soranus Duo:3C80:/ -2331.6 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2332.4 "Bombardment" sync / 1[56]:[^:]*:Annia Quo Soranus:3711:/ -2340.5 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ -2341.9 "Artificial Plasma" sync / 1[56]:[^:]*:Annia Quo Soranus:3728:/ -2347.1 "Quaternity" sync / 1[56]:[^:]*:Soranus Duo:3733:/ -2347.1 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:39BA:/ window 30,30 -2351.7 "Delta Trance" sync / 1[56]:[^:]*:Annia Quo Soranus:372A:/ -2355.8 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:372B:/ -2361.8 "Stunning Sweep" sync / 1[56]:[^:]*:Annia Quo Soranus:3712:/ -2363.1 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:372B:/ -2370.8 "Artificial Plasma" sync / 1[56]:[^:]*:Annia Quo Soranus:3728:/ -2382.3 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ -2386.1 "Order To Bombard" sync / 1[56]:[^:]*:Annia Quo Soranus:3710:/ -2388.5 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ - -2390.5 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3714:/ jump 2329.5 window 30,30 +2297.0 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } +2307.2 "Heirsbane" Ability { id: "372B", source: "Julia Quo Soranus" } +2310.3 "Delta Trance" Ability { id: "372A", source: "Annia Quo Soranus" } +2314.9 "Heirsbane" Ability { id: "372B", source: "Julia Quo Soranus" } +2321.3 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } +2325.1 "Order To Bombard" Ability { id: "3710", source: "Annia Quo Soranus" } +2327.5 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } + +2329.5 "The Order" Ability { id: "3714", source: "Julia Quo Soranus" } window 30,30 +2329.7 "Crossbones" Ability { id: "3C80", source: "Soranus Duo" } +2331.6 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2332.4 "Bombardment" Ability { id: "3711", source: "Annia Quo Soranus" } +2340.5 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } +2341.9 "Artificial Plasma" Ability { id: "3728", source: "Annia Quo Soranus" } +2347.1 "Quaternity" Ability { id: "3733", source: "Soranus Duo" } +2347.1 "The Order" Ability { id: "39BA", source: "Julia Quo Soranus" } window 30,30 +2351.7 "Delta Trance" Ability { id: "372A", source: "Annia Quo Soranus" } +2355.8 "Heirsbane" Ability { id: "372B", source: "Julia Quo Soranus" } +2361.8 "Stunning Sweep" Ability { id: "3712", source: "Annia Quo Soranus" } +2363.1 "Heirsbane" Ability { id: "372B", source: "Julia Quo Soranus" } +2370.8 "Artificial Plasma" Ability { id: "3728", source: "Annia Quo Soranus" } +2382.3 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } +2386.1 "Order To Bombard" Ability { id: "3710", source: "Annia Quo Soranus" } +2388.5 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } + +2390.5 "The Order" Ability { id: "3714", source: "Julia Quo Soranus" } jump 2329.5 window 30,30 2390.7 "Crossbones" 2392.6 "Angry Salamander" 2393.4 "Bombardment" @@ -184,29 +184,29 @@ hideall "--sync--" # Order To Support and Covering Fire are only on the second intermission. -2494.3 "Order To Support" sync / 1[56]:[^:]*:Annia Quo Soranus:371B:/ window 494.3,5 -2500.0 "Crosshatch" sync / 1[56]:[^:]*:Soranus Duo:3721:/ window 500,5 -2506.6 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:3723:/ -2506.8 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:384B:/ -2507.1 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:384C:/ -2507.4 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:3724:/ -2508.2 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:396A:/ -2508.6 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:3969:/ -2508.7 "Crosshatch 1" # sync / 1[56]:[^:]*:Annia Quo Soranus:3722:/ -2508.9 "Crosshatch 2" # sync / 1[56]:[^:]*:Julia Quo Soranus:3722:/ -2509.0 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:384D:/ -2509.4 "Covering Fire?" sync / 1[56]:[^:]*:Annia Quo Soranus:371C:/ -2509.4 "Crosshatch 3" # sync / 1[56]:[^:]*:Annia Quo Soranus:3722:/ -2509.6 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:396B:/ -2509.9 "Crosshatch 4" # sync / 1[56]:[^:]*:Julia Quo Soranus:3722:/ -2511.1 "Crosshatch 5" # sync / 1[56]:[^:]*:Annia Quo Soranus:3722:/ -2511.8 "Crosshatch 6" # sync / 1[56]:[^:]*:Julia Quo Soranus:3722:/ -2512.3 "Crosshatch 7" # sync / 1[56]:[^:]*:Annia Quo Soranus:3722:/ -2512.8 "Crosshatch 8" # sync / 1[56]:[^:]*:Julia Quo Soranus:3722:/ -2515.9 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:3726:/ -2516.0 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:3725:/ -2519.0 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ window 10,10 jump 2097.0 -2519.0 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ window 10,10 jump 2297.0 +2494.3 "Order To Support" Ability { id: "371B", source: "Annia Quo Soranus" } window 494.3,5 +2500.0 "Crosshatch" Ability { id: "3721", source: "Soranus Duo" } window 500,5 +2506.6 "--sync--" Ability { id: "3723", source: "Annia Quo Soranus" } +2506.8 "--sync--" Ability { id: "384B", source: "Julia Quo Soranus" } +2507.1 "--sync--" Ability { id: "384C", source: "Annia Quo Soranus" } +2507.4 "--sync--" Ability { id: "3724", source: "Julia Quo Soranus" } +2508.2 "--sync--" Ability { id: "396A", source: "Annia Quo Soranus" } +2508.6 "--sync--" Ability { id: "3969", source: "Julia Quo Soranus" } +2508.7 "Crosshatch 1" # Ability { id: "3722", source: "Annia Quo Soranus" } +2508.9 "Crosshatch 2" # Ability { id: "3722", source: "Julia Quo Soranus" } +2509.0 "--sync--" Ability { id: "384D", source: "Annia Quo Soranus" } +2509.4 "Covering Fire?" Ability { id: "371C", source: "Annia Quo Soranus" } +2509.4 "Crosshatch 3" # Ability { id: "3722", source: "Annia Quo Soranus" } +2509.6 "--sync--" Ability { id: "396B", source: "Julia Quo Soranus" } +2509.9 "Crosshatch 4" # Ability { id: "3722", source: "Julia Quo Soranus" } +2511.1 "Crosshatch 5" # Ability { id: "3722", source: "Annia Quo Soranus" } +2511.8 "Crosshatch 6" # Ability { id: "3722", source: "Julia Quo Soranus" } +2512.3 "Crosshatch 7" # Ability { id: "3722", source: "Annia Quo Soranus" } +2512.8 "Crosshatch 8" # Ability { id: "3722", source: "Julia Quo Soranus" } +2515.9 "--sync--" Ability { id: "3726", source: "Julia Quo Soranus" } +2516.0 "--sync--" Ability { id: "3725", source: "Annia Quo Soranus" } +2519.0 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } window 10,10 jump 2097.0 +2519.0 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } window 10,10 jump 2297.0 2522.4 "Artificial Plasma?" 2529.6 "Heirsbane?" 2530.6 "Angry Salamander?" @@ -217,10 +217,10 @@ hideall "--sync--" # Enrage after two intermissions. -# 2597.3 "--sync--" sync / 14:[^:]*:Julia Quo Soranus:372F:/ window 597.3 -2597.3 "Artificial Boost" sync / 14:[^:]*:Annia Quo Soranus:3730:/ window 597.3 -# 2600.0 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:372F:/ window 600,5 -2600.0 "Artificial Boost" sync / 1[56]:[^:]*:Annia Quo Soranus:3730:/ window 600,5 -# 2603.2 "--sync--" sync / 14:[^:]*:Julia Quo Soranus:3731:/ -2603.2 "Imperial Authority" sync / 14:[^:]*:Annia Quo Soranus:3732:/ duration 39.7 -2642.9 "Imperial Authority Enrage" sync / 1[56]:[^:]*:Annia Quo Soranus:3732:/ +# 2597.3 "--sync--" StartsUsing { id: "372F", source: "Julia Quo Soranus" } window 597.3 +2597.3 "Artificial Boost" StartsUsing { id: "3730", source: "Annia Quo Soranus" } window 597.3 +# 2600.0 "--sync--" Ability { id: "372F", source: "Julia Quo Soranus" } window 600,5 +2600.0 "Artificial Boost" Ability { id: "3730", source: "Annia Quo Soranus" } window 600,5 +# 2603.2 "--sync--" StartsUsing { id: "3731", source: "Julia Quo Soranus" } +2603.2 "Imperial Authority" StartsUsing { id: "3732", source: "Annia Quo Soranus" } duration 39.7 +2642.9 "Imperial Authority Enrage" Ability { id: "3732", source: "Annia Quo Soranus" } diff --git a/ui/raidboss/data/04-sb/dungeon/ghimlyt_dark64.txt b/ui/raidboss/data/04-sb/dungeon/ghimlyt_dark64.txt index 6e3786563f..981c0a36af 100644 --- a/ui/raidboss/data/04-sb/dungeon/ghimlyt_dark64.txt +++ b/ui/raidboss/data/04-sb/dungeon/ghimlyt_dark64.txt @@ -10,29 +10,29 @@ hideall "--sync--" # -ii 394F 3775 # The Field of Dust will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:AB8:/ window 0,1 -12.9 "Jarring Blow" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:376E:/ -15.0 "--sync--" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3771:/ -22.1 "Wild Fire Beam" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3772:/ window 30,30 -28.8 "Magitek Slash x5" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3774:/ duration 8 -45.5 "Exhaust" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3770:/ -55.7 "Ceruleum Vent" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3773:/ - -68.0 "Magitek Slash x5" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3774:/ duration 8 -80.2 "Magitek Slash x5" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3774:/ duration 8 -97.4 "Magitek Ray" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:376F:/ -102.6 "Exhaust" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3770:/ -116.8 "Ceruleum Vent" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3773:/ window 20,20 -120.0 "--sync--" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3771:/ -127.1 "Wild Fire Beam" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3772:/ -133.1 "Magitek Ray" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:376F:/ -138.3 "Exhaust" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3770:/ -143.7 "Exhaust" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3770:/ -156.0 "Jarring Blow" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:376E:/ window 30,30 -162.1 "Ceruleum Vent" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3773:/ -169.3 "Ceruleum Vent" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3773:/ - -176.5 "Magitek Slash x5" sync / 1[56]:[^:]*:Mark III-B Magitek Colossus:3774:/ jump 68.0 +0 "Start" SystemLogMessage { id: "7DC", param1: "AB8" } window 0,1 +12.9 "Jarring Blow" Ability { id: "376E", source: "Mark III-B Magitek Colossus" } +15.0 "--sync--" Ability { id: "3771", source: "Mark III-B Magitek Colossus" } +22.1 "Wild Fire Beam" Ability { id: "3772", source: "Mark III-B Magitek Colossus" } window 30,30 +28.8 "Magitek Slash x5" Ability { id: "3774", source: "Mark III-B Magitek Colossus" } duration 8 +45.5 "Exhaust" Ability { id: "3770", source: "Mark III-B Magitek Colossus" } +55.7 "Ceruleum Vent" Ability { id: "3773", source: "Mark III-B Magitek Colossus" } + +68.0 "Magitek Slash x5" Ability { id: "3774", source: "Mark III-B Magitek Colossus" } duration 8 +80.2 "Magitek Slash x5" Ability { id: "3774", source: "Mark III-B Magitek Colossus" } duration 8 +97.4 "Magitek Ray" Ability { id: "376F", source: "Mark III-B Magitek Colossus" } +102.6 "Exhaust" Ability { id: "3770", source: "Mark III-B Magitek Colossus" } +116.8 "Ceruleum Vent" Ability { id: "3773", source: "Mark III-B Magitek Colossus" } window 20,20 +120.0 "--sync--" Ability { id: "3771", source: "Mark III-B Magitek Colossus" } +127.1 "Wild Fire Beam" Ability { id: "3772", source: "Mark III-B Magitek Colossus" } +133.1 "Magitek Ray" Ability { id: "376F", source: "Mark III-B Magitek Colossus" } +138.3 "Exhaust" Ability { id: "3770", source: "Mark III-B Magitek Colossus" } +143.7 "Exhaust" Ability { id: "3770", source: "Mark III-B Magitek Colossus" } +156.0 "Jarring Blow" Ability { id: "376E", source: "Mark III-B Magitek Colossus" } window 30,30 +162.1 "Ceruleum Vent" Ability { id: "3773", source: "Mark III-B Magitek Colossus" } +169.3 "Ceruleum Vent" Ability { id: "3773", source: "Mark III-B Magitek Colossus" } + +176.5 "Magitek Slash x5" Ability { id: "3774", source: "Mark III-B Magitek Colossus" } jump 68.0 188.7 "Magitek Slash x5" 205.9 "Magitek Ray" 211.1 "Exhaust" @@ -47,26 +47,26 @@ hideall "--sync--" # -ii 3AC6 # Impact Crater will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:ABB:/ window 1000,1 -1012.2 "Nitrospin" sync / 1[56]:[^:]*:Prometheus:3455:/ -1023.4 "Needle Gun" sync / 1[56]:[^:]*:Prometheus:345A:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "ABB" } window 1000,1 +1012.2 "Nitrospin" Ability { id: "3455", source: "Prometheus" } +1023.4 "Needle Gun" Ability { id: "345A", source: "Prometheus" } 1031.1 "--untargetable--" -1031.2 "Tunnel" sync / 1[56]:[^:]*:Prometheus:3457:/ window 31.2,5 -1042.8 "Heat" duration 4 # sync / 1[56]:[^:]*:Prometheus:3458:/ +1031.2 "Tunnel" Ability { id: "3457", source: "Prometheus" } window 31.2,5 +1042.8 "Heat" duration 4 # Ability { id: "3458", source: "Prometheus" } 1048.0 "--targetable--" -1056.2 "Unbreakable Cermet Drill" sync / 1[56]:[^:]*:Prometheus:3459:/ window 30,30 -1068.3 "Needle Gun" sync / 1[56]:[^:]*:Prometheus:345A:/ -1075.4 "Needle Gun/Oil Shower" sync / 1[56]:[^:]*:Prometheus:(345A|3456):/ -1086.4 "Nitrospin" sync / 1[56]:[^:]*:Prometheus:3455:/ -1097.8 "Freezing Missile (windup)" sync / 1[56]:[^:]*:Prometheus:345B:/ +1056.2 "Unbreakable Cermet Drill" Ability { id: "3459", source: "Prometheus" } window 30,30 +1068.3 "Needle Gun" Ability { id: "345A", source: "Prometheus" } +1075.4 "Needle Gun/Oil Shower" Ability { id: ["345A", "3456"], source: "Prometheus" } +1086.4 "Nitrospin" Ability { id: "3455", source: "Prometheus" } +1097.8 "Freezing Missile (windup)" Ability { id: "345B", source: "Prometheus" } 1100.4 "--untargetable--" -1100.5 "Tunnel" sync / 1[56]:[^:]*:Prometheus:3457:/ window 30,30 -1108.9 "Freezing Missile (cast)" sync / 1[56]:[^:]*:Prometheus:345C:/ -1113.1 "Heat" duration 4 # sync / 1[56]:[^:]*:Prometheus:3458:/ +1100.5 "Tunnel" Ability { id: "3457", source: "Prometheus" } window 30,30 +1108.9 "Freezing Missile (cast)" Ability { id: "345C", source: "Prometheus" } +1113.1 "Heat" duration 4 # Ability { id: "3458", source: "Prometheus" } 1118.2 "--targetable--" -1131.5 "Unbreakable Cermet Drill" sync / 1[56]:[^:]*:Prometheus:3459:/ jump 1056.2 +1131.5 "Unbreakable Cermet Drill" Ability { id: "3459", source: "Prometheus" } jump 1056.2 1143.6 "Needle Gun" 1150.7 "Needle Gun/Oil Shower" 1161.9 "Nitrospin" @@ -77,9 +77,9 @@ hideall "--sync--" #~~~~~~~~~~~~~# # Provisional Imperial Landing will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:ABD:/ window 2000,5 -2000.4 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ jump 2097.0 -2000.4 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ jump 2297.0 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "ABD" } window 2000,5 +2000.4 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } jump 2097.0 +2000.4 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } jump 2297.0 2003.4 "Artificial Plasma?" 2010.6 "Heirsbane?" 2011.6 "Angry Salamander?" @@ -91,46 +91,46 @@ hideall "--sync--" # Julia active -2097.0 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ -2100.0 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2108.2 "Angry Salamander" # sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2108.4 "Innocence" sync / 1[56]:[^:]*:Julia Quo Soranus:3729:/ -2117.5 "Commence Air Strike" sync / 1[56]:[^:]*:Julia Quo Soranus:3716:/ -2119.3 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ -2121.8 "Roundhouse" sync / 1[56]:[^:]*:Annia Quo Soranus:3718:/ +2097.0 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } +2100.0 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2108.2 "Angry Salamander" # Ability { id: "372C", source: "Annia Quo Soranus" } +2108.4 "Innocence" Ability { id: "3729", source: "Julia Quo Soranus" } +2117.5 "Commence Air Strike" Ability { id: "3716", source: "Julia Quo Soranus" } +2119.3 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } +2121.8 "Roundhouse" Ability { id: "3718", source: "Annia Quo Soranus" } # We have to sync widely here because if Julia is first she skips one Aglaia Bite. -2124.7 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:3719:/ window 15,15 -2127.6 "Burst x5" duration 8 # sync / 1[56]:[^:]*:Ceruleum Tank:371A:/ -2132.3 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2145.2 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2147.9 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2151.4 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ +2124.7 "Heirsbane" Ability { id: "3719", source: "Julia Quo Soranus" } window 15,15 +2127.6 "Burst x5" duration 8 # Ability { id: "371A", source: "Ceruleum Tank" } +2132.3 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2145.2 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2147.9 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2151.4 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } # During the rotation block, we can't sync Aglaia Bite, # since the double usage is just too close together. -2153.2 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ window 30,30 -2158.3 "Order To Fire" sync / 1[56]:[^:]*:Annia Quo Soranus:372D:/ -2158.3 "Missile Impact" sync / 1[56]:[^:]*:Annia Quo Soranus:372E:/ -2159.3 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:39BA:/ -2159.3 "Quaternity" sync / 1[56]:[^:]*:Soranus Duo:3989:/ -2164.6 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2168.8 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2174.9 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2182.2 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2183.2 "Innocence" sync / 1[56]:[^:]*:Julia Quo Soranus:3729:/ -2192.5 "Commence Air Strike" sync / 1[56]:[^:]*:Julia Quo Soranus:3716:/ window 30,30 -2194.1 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ -2194.8 "Aglaia Bite" # sync / 1[56]:[^:]*:Annia Quo Soranus:3717:/ -2196.9 "Aglaia Bite/Roundhouse" # sync / 1[56]:[^:]*:Annia Quo Soranus:371[78]:/ -2199.6 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:3719:/ -2202.5 "Burst x5" duration 12 # sync / 1[56]:[^:]*:Ceruleum Tank:371A:/ -2207.2 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2220.2 "Artificial Plasma" sync / 1[56]:[^:]*:Julia Quo Soranus:3727:/ -2222.8 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2226.3 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ - -2228.1 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ window 30,30 jump 2153.2 +2153.2 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } window 30,30 +2158.3 "Order To Fire" Ability { id: "372D", source: "Annia Quo Soranus" } +2158.3 "Missile Impact" Ability { id: "372E", source: "Annia Quo Soranus" } +2159.3 "The Order" Ability { id: "39BA", source: "Julia Quo Soranus" } +2159.3 "Quaternity" Ability { id: "3989", source: "Soranus Duo" } +2164.6 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2168.8 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2174.9 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2182.2 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2183.2 "Innocence" Ability { id: "3729", source: "Julia Quo Soranus" } +2192.5 "Commence Air Strike" Ability { id: "3716", source: "Julia Quo Soranus" } window 30,30 +2194.1 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } +2194.8 "Aglaia Bite" # Ability { id: "3717", source: "Annia Quo Soranus" } +2196.9 "Aglaia Bite/Roundhouse" # Ability { id: "371[78]", source: "Annia Quo Soranus" } +2199.6 "Heirsbane" Ability { id: "3719", source: "Julia Quo Soranus" } +2202.5 "Burst x5" duration 12 # Ability { id: "371A", source: "Ceruleum Tank" } +2207.2 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2220.2 "Artificial Plasma" Ability { id: "3727", source: "Julia Quo Soranus" } +2222.8 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2226.3 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } + +2228.1 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } window 30,30 jump 2153.2 2233.2 "Order To Fire" 2233.2 "Missile Impact" 2234.2 "The Order" @@ -143,32 +143,32 @@ hideall "--sync--" # Annia active -2297.0 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ -2307.2 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:372B:/ -2310.3 "Delta Trance" sync / 1[56]:[^:]*:Annia Quo Soranus:372A:/ -2314.9 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:372B:/ -2321.3 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ -2325.1 "Order To Bombard" sync / 1[56]:[^:]*:Annia Quo Soranus:3710:/ -2327.5 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ - -2329.5 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3714:/ window 30,30 -2329.7 "Crossbones" sync / 1[56]:[^:]*:Soranus Duo:3C80:/ -2331.6 "Angry Salamander" sync / 1[56]:[^:]*:Annia Quo Soranus:372C:/ -2332.4 "Bombardment" sync / 1[56]:[^:]*:Annia Quo Soranus:3711:/ -2340.5 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ -2341.9 "Artificial Plasma" sync / 1[56]:[^:]*:Annia Quo Soranus:3728:/ -2347.1 "Quaternity" sync / 1[56]:[^:]*:Soranus Duo:3733:/ -2347.1 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:39BA:/ window 30,30 -2351.7 "Delta Trance" sync / 1[56]:[^:]*:Annia Quo Soranus:372A:/ -2355.8 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:372B:/ -2361.8 "Stunning Sweep" sync / 1[56]:[^:]*:Annia Quo Soranus:3712:/ -2363.1 "Heirsbane" sync / 1[56]:[^:]*:Julia Quo Soranus:372B:/ -2370.8 "Artificial Plasma" sync / 1[56]:[^:]*:Annia Quo Soranus:3728:/ -2382.3 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3713:/ -2386.1 "Order To Bombard" sync / 1[56]:[^:]*:Annia Quo Soranus:3710:/ -2388.5 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ - -2390.5 "The Order" sync / 1[56]:[^:]*:Julia Quo Soranus:3714:/ jump 2329.5 window 30,30 +2297.0 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } +2307.2 "Heirsbane" Ability { id: "372B", source: "Julia Quo Soranus" } +2310.3 "Delta Trance" Ability { id: "372A", source: "Annia Quo Soranus" } +2314.9 "Heirsbane" Ability { id: "372B", source: "Julia Quo Soranus" } +2321.3 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } +2325.1 "Order To Bombard" Ability { id: "3710", source: "Annia Quo Soranus" } +2327.5 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } + +2329.5 "The Order" Ability { id: "3714", source: "Julia Quo Soranus" } window 30,30 +2329.7 "Crossbones" Ability { id: "3C80", source: "Soranus Duo" } +2331.6 "Angry Salamander" Ability { id: "372C", source: "Annia Quo Soranus" } +2332.4 "Bombardment" Ability { id: "3711", source: "Annia Quo Soranus" } +2340.5 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } +2341.9 "Artificial Plasma" Ability { id: "3728", source: "Annia Quo Soranus" } +2347.1 "Quaternity" Ability { id: "3733", source: "Soranus Duo" } +2347.1 "The Order" Ability { id: "39BA", source: "Julia Quo Soranus" } window 30,30 +2351.7 "Delta Trance" Ability { id: "372A", source: "Annia Quo Soranus" } +2355.8 "Heirsbane" Ability { id: "372B", source: "Julia Quo Soranus" } +2361.8 "Stunning Sweep" Ability { id: "3712", source: "Annia Quo Soranus" } +2363.1 "Heirsbane" Ability { id: "372B", source: "Julia Quo Soranus" } +2370.8 "Artificial Plasma" Ability { id: "3728", source: "Annia Quo Soranus" } +2382.3 "The Order" Ability { id: "3713", source: "Julia Quo Soranus" } +2386.1 "Order To Bombard" Ability { id: "3710", source: "Annia Quo Soranus" } +2388.5 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } + +2390.5 "The Order" Ability { id: "3714", source: "Julia Quo Soranus" } jump 2329.5 window 30,30 2390.7 "Crossbones" 2392.6 "Angry Salamander" 2393.4 "Bombardment" @@ -184,29 +184,29 @@ hideall "--sync--" # Order To Support and Covering Fire are only on the second intermission. -2494.3 "Order To Support" sync / 1[56]:[^:]*:Annia Quo Soranus:371B:/ window 494.3,5 -2500.0 "Crosshatch" sync / 1[56]:[^:]*:Soranus Duo:3721:/ window 500,5 -2506.6 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:3723:/ -2506.8 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:384B:/ -2507.1 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:384C:/ -2507.4 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:3724:/ -2508.2 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:396A:/ -2508.6 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:3969:/ -2508.7 "Crosshatch 1" # sync / 1[56]:[^:]*:Annia Quo Soranus:3722:/ -2508.9 "Crosshatch 2" # sync / 1[56]:[^:]*:Julia Quo Soranus:3722:/ -2509.0 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:384D:/ -2509.4 "Covering Fire?" sync / 1[56]:[^:]*:Annia Quo Soranus:371C:/ -2509.4 "Crosshatch 3" # sync / 1[56]:[^:]*:Annia Quo Soranus:3722:/ -2509.6 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:396B:/ -2509.9 "Crosshatch 4" # sync / 1[56]:[^:]*:Julia Quo Soranus:3722:/ -2511.1 "Crosshatch 5" # sync / 1[56]:[^:]*:Annia Quo Soranus:3722:/ -2511.8 "Crosshatch 6" # sync / 1[56]:[^:]*:Julia Quo Soranus:3722:/ -2512.3 "Crosshatch 7" # sync / 1[56]:[^:]*:Annia Quo Soranus:3722:/ -2512.8 "Crosshatch 8" # sync / 1[56]:[^:]*:Julia Quo Soranus:3722:/ -2515.9 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:3726:/ -2516.0 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:3725:/ -2519.0 "--sync--" sync / 1[56]:[^:]*:Annia Quo Soranus:370F:/ window 10,10 jump 2097.0 -2519.0 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:370E:/ window 10,10 jump 2297.0 +2494.3 "Order To Support" Ability { id: "371B", source: "Annia Quo Soranus" } window 494.3,5 +2500.0 "Crosshatch" Ability { id: "3721", source: "Soranus Duo" } window 500,5 +2506.6 "--sync--" Ability { id: "3723", source: "Annia Quo Soranus" } +2506.8 "--sync--" Ability { id: "384B", source: "Julia Quo Soranus" } +2507.1 "--sync--" Ability { id: "384C", source: "Annia Quo Soranus" } +2507.4 "--sync--" Ability { id: "3724", source: "Julia Quo Soranus" } +2508.2 "--sync--" Ability { id: "396A", source: "Annia Quo Soranus" } +2508.6 "--sync--" Ability { id: "3969", source: "Julia Quo Soranus" } +2508.7 "Crosshatch 1" # Ability { id: "3722", source: "Annia Quo Soranus" } +2508.9 "Crosshatch 2" # Ability { id: "3722", source: "Julia Quo Soranus" } +2509.0 "--sync--" Ability { id: "384D", source: "Annia Quo Soranus" } +2509.4 "Covering Fire?" Ability { id: "371C", source: "Annia Quo Soranus" } +2509.4 "Crosshatch 3" # Ability { id: "3722", source: "Annia Quo Soranus" } +2509.6 "--sync--" Ability { id: "396B", source: "Julia Quo Soranus" } +2509.9 "Crosshatch 4" # Ability { id: "3722", source: "Julia Quo Soranus" } +2511.1 "Crosshatch 5" # Ability { id: "3722", source: "Annia Quo Soranus" } +2511.8 "Crosshatch 6" # Ability { id: "3722", source: "Julia Quo Soranus" } +2512.3 "Crosshatch 7" # Ability { id: "3722", source: "Annia Quo Soranus" } +2512.8 "Crosshatch 8" # Ability { id: "3722", source: "Julia Quo Soranus" } +2515.9 "--sync--" Ability { id: "3726", source: "Julia Quo Soranus" } +2516.0 "--sync--" Ability { id: "3725", source: "Annia Quo Soranus" } +2519.0 "--sync--" Ability { id: "370F", source: "Annia Quo Soranus" } window 10,10 jump 2097.0 +2519.0 "--sync--" Ability { id: "370E", source: "Julia Quo Soranus" } window 10,10 jump 2297.0 2522.4 "Artificial Plasma?" 2529.6 "Heirsbane?" 2530.6 "Angry Salamander?" @@ -217,10 +217,10 @@ hideall "--sync--" # Enrage after two intermissions. -# 2597.3 "--sync--" sync / 14:[^:]*:Julia Quo Soranus:372F:/ window 597.3 -2597.3 "Artificial Boost" sync / 14:[^:]*:Annia Quo Soranus:3730:/ window 597.3 -# 2600.0 "--sync--" sync / 1[56]:[^:]*:Julia Quo Soranus:372F:/ window 600,5 -2600.0 "Artificial Boost" sync / 1[56]:[^:]*:Annia Quo Soranus:3730:/ window 600,5 -# 2603.2 "--sync--" sync / 14:[^:]*:Julia Quo Soranus:3731:/ -2603.2 "Imperial Authority" sync / 14:[^:]*:Annia Quo Soranus:3732:/ duration 39.7 -2642.9 "Imperial Authority Enrage" sync / 1[56]:[^:]*:Annia Quo Soranus:3732:/ +# 2597.3 "--sync--" StartsUsing { id: "372F", source: "Julia Quo Soranus" } window 597.3 +2597.3 "Artificial Boost" StartsUsing { id: "3730", source: "Annia Quo Soranus" } window 597.3 +# 2600.0 "--sync--" Ability { id: "372F", source: "Julia Quo Soranus" } window 600,5 +2600.0 "Artificial Boost" Ability { id: "3730", source: "Annia Quo Soranus" } window 600,5 +# 2603.2 "--sync--" StartsUsing { id: "3731", source: "Julia Quo Soranus" } +2603.2 "Imperial Authority" StartsUsing { id: "3732", source: "Annia Quo Soranus" } duration 39.7 +2642.9 "Imperial Authority Enrage" Ability { id: "3732", source: "Annia Quo Soranus" } diff --git a/ui/raidboss/data/04-sb/dungeon/hells_lid.txt b/ui/raidboss/data/04-sb/dungeon/hells_lid.txt index 6366202569..48f2216184 100644 --- a/ui/raidboss/data/04-sb/dungeon/hells_lid.txt +++ b/ui/raidboss/data/04-sb/dungeon/hells_lid.txt @@ -10,32 +10,32 @@ hideall "--sync--" # -ii 27C0 # Demonsgate will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:954:/ window 0,1 -19.7 "100-Tonze Swing" sync / 1[56]:[^:]*:Otake-Maru:27BE:/ window 19.7,5 -27.3 "Volcanic Debris x8" # sync / 1[56]:[^:]*:Volcanic Debris:27C5:/ -28.3 "10-Tonze Slash" sync / 1[56]:[^:]*:Otake-Maru:27BF:/ -39.4 "100-Tonze Swing" sync / 1[56]:[^:]*:Otake-Maru:27BE:/ window 20,20 -56.2 "Eruptive Leap" sync / 1[56]:[^:]*:Otake-Maru:27C4:/ -57.3 "Disrobe 1" sync / 1[56]:[^:]*:Otake-Maru:27C1:/ -62.1 "Disrobe 2" sync / 1[56]:[^:]*:Otake-Maru:27C2:/ -69.3 "Eruptive Leap" sync / 1[56]:[^:]*:Otake-Maru:27C4:/ -70.4 "Stone Cudgel" sync / 1[56]:[^:]*:Otake-Maru:27C3:/ -73.1 "Eruptive Leap" sync / 1[56]:[^:]*:Otake-Maru:27C4:/ -74.2 "Stone Cudgel" sync / 1[56]:[^:]*:Otake-Maru:27C3:/ -79.9 "10-Tonze Slash" sync / 1[56]:[^:]*:Otake-Maru:27BF:/ - -101.1 "100-Tonze Swing" sync / 1[56]:[^:]*:Otake-Maru:27BE:/ window 20,20 -108.8 "Eruptive Leap" sync / 1[56]:[^:]*:Otake-Maru:27C4:/ -109.9 "Disrobe 1" sync / 1[56]:[^:]*:Otake-Maru:27C1:/ -114.6 "Disrobe 2" sync / 1[56]:[^:]*:Otake-Maru:27C2:/ -115.7 "Volcanic Debris x14" # sync / 1[56]:[^:]*:Volcanic Debris:27C5:/ -121.9 "Eruptive Leap" sync / 1[56]:[^:]*:Otake-Maru:27C4:/ -123.0 "Stone Cudgel" sync / 1[56]:[^:]*:Otake-Maru:27C3:/ -125.6 "Eruptive Leap" sync / 1[56]:[^:]*:Otake-Maru:27C4:/ -126.7 "Stone Cudgel" sync / 1[56]:[^:]*:Otake-Maru:27C3:/ -132.4 "10-Tonze Slash" sync / 1[56]:[^:]*:Otake-Maru:27BF:/ - -168.6 "100-Tonze Swing" sync / 1[56]:[^:]*:Otake-Maru:27BE:/ window 20,20 jump 101.1 +0 "Start" SystemLogMessage { id: "7DC", param1: "954" } window 0,1 +19.7 "100-Tonze Swing" Ability { id: "27BE", source: "Otake-Maru" } window 19.7,5 +27.3 "Volcanic Debris x8" # Ability { id: "27C5", source: "Volcanic Debris" } +28.3 "10-Tonze Slash" Ability { id: "27BF", source: "Otake-Maru" } +39.4 "100-Tonze Swing" Ability { id: "27BE", source: "Otake-Maru" } window 20,20 +56.2 "Eruptive Leap" Ability { id: "27C4", source: "Otake-Maru" } +57.3 "Disrobe 1" Ability { id: "27C1", source: "Otake-Maru" } +62.1 "Disrobe 2" Ability { id: "27C2", source: "Otake-Maru" } +69.3 "Eruptive Leap" Ability { id: "27C4", source: "Otake-Maru" } +70.4 "Stone Cudgel" Ability { id: "27C3", source: "Otake-Maru" } +73.1 "Eruptive Leap" Ability { id: "27C4", source: "Otake-Maru" } +74.2 "Stone Cudgel" Ability { id: "27C3", source: "Otake-Maru" } +79.9 "10-Tonze Slash" Ability { id: "27BF", source: "Otake-Maru" } + +101.1 "100-Tonze Swing" Ability { id: "27BE", source: "Otake-Maru" } window 20,20 +108.8 "Eruptive Leap" Ability { id: "27C4", source: "Otake-Maru" } +109.9 "Disrobe 1" Ability { id: "27C1", source: "Otake-Maru" } +114.6 "Disrobe 2" Ability { id: "27C2", source: "Otake-Maru" } +115.7 "Volcanic Debris x14" # Ability { id: "27C5", source: "Volcanic Debris" } +121.9 "Eruptive Leap" Ability { id: "27C4", source: "Otake-Maru" } +123.0 "Stone Cudgel" Ability { id: "27C3", source: "Otake-Maru" } +125.6 "Eruptive Leap" Ability { id: "27C4", source: "Otake-Maru" } +126.7 "Stone Cudgel" Ability { id: "27C3", source: "Otake-Maru" } +132.4 "10-Tonze Slash" Ability { id: "27BF", source: "Otake-Maru" } + +168.6 "100-Tonze Swing" Ability { id: "27BE", source: "Otake-Maru" } window 20,20 jump 101.1 176.3 "Eruptive Leap" 177.4 "Disrobe1 " 182.1 "Disrobe 2" @@ -54,31 +54,31 @@ hideall "--sync--" # -ic "Tsumuji-Kaze" # The Furnace will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:956:/ window 1000,1 -1011.5 "Whipping Whittret" sync / 1[56]:[^:]*:Kamaitachi:27C6:/ window 11.5,5 -1024.1 "Circling Winds" sync / 1[56]:[^:]*:Kamaitachi:27C8:/ -1037.8 "The Patient Blade" sync / 1[56]:[^:]*:Kamaitachi:27C7:/ -1050.5 "Rolling Winds" sync / 1[56]:[^:]*:Kamaitachi:27C9:/ -1064.2 "Whisper In The Wind" sync / 1[56]:[^:]*:Kamaitachi:27CA:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "956" } window 1000,1 +1011.5 "Whipping Whittret" Ability { id: "27C6", source: "Kamaitachi" } window 11.5,5 +1024.1 "Circling Winds" Ability { id: "27C8", source: "Kamaitachi" } +1037.8 "The Patient Blade" Ability { id: "27C7", source: "Kamaitachi" } +1050.5 "Rolling Winds" Ability { id: "27C9", source: "Kamaitachi" } +1064.2 "Whisper In The Wind" Ability { id: "27CA", source: "Kamaitachi" } 1066.3 "--untargetable--" -1066.4 "--sync--" sync / 1[56]:[^:]*:Kamaitachi:284F:/ window 66.4,5 -1084.2 "Late Harvest" sync / 1[56]:[^:]*:Kamaitachi:27CC:/ window 30,0 -1084.8 "Late Harvest" # sync / 1[56]:[^:]*:Kamaitachi:27CC:/ -1085.4 "Late Harvest" # sync / 1[56]:[^:]*:Kamaitachi:27CC:/ -1092.2 "Late Harvest" sync / 1[56]:[^:]*:Kamaitachi:27CC:/ window 5,0 -1092.8 "Late Harvest" # sync / 1[56]:[^:]*:Kamaitachi:27CC:/ -1093.4 "Late Harvest" # sync / 1[56]:[^:]*:Kamaitachi:27CC:/ -1099.2 "Reaper's Gale" sync / 1[56]:[^:]*:Kamaitachi:27CB:/ -1099.3 "--sync--" sync / 1[56]:[^:]*:Kamaitachi:2967:/ +1066.4 "--sync--" Ability { id: "284F", source: "Kamaitachi" } window 66.4,5 +1084.2 "Late Harvest" Ability { id: "27CC", source: "Kamaitachi" } window 30,0 +1084.8 "Late Harvest" # Ability { id: "27CC", source: "Kamaitachi" } +1085.4 "Late Harvest" # Ability { id: "27CC", source: "Kamaitachi" } +1092.2 "Late Harvest" Ability { id: "27CC", source: "Kamaitachi" } window 5,0 +1092.8 "Late Harvest" # Ability { id: "27CC", source: "Kamaitachi" } +1093.4 "Late Harvest" # Ability { id: "27CC", source: "Kamaitachi" } +1099.2 "Reaper's Gale" Ability { id: "27CB", source: "Kamaitachi" } +1099.3 "--sync--" Ability { id: "2967", source: "Kamaitachi" } 1105.6 "--targetable--" -1110.9 "The Patient Blade" sync / 1[56]:[^:]*:Kamaitachi:27C7:/ window 50,5 -1116.6 "Whipping Whittret" sync / 1[56]:[^:]*:Kamaitachi:27C6:/ -1127.2 "Circling Winds" sync / 1[56]:[^:]*:Kamaitachi:27C8:/ -1138.9 "Rolling Winds" sync / 1[56]:[^:]*:Kamaitachi:27C9:/ +1110.9 "The Patient Blade" Ability { id: "27C7", source: "Kamaitachi" } window 50,5 +1116.6 "Whipping Whittret" Ability { id: "27C6", source: "Kamaitachi" } +1127.2 "Circling Winds" Ability { id: "27C8", source: "Kamaitachi" } +1138.9 "Rolling Winds" Ability { id: "27C9", source: "Kamaitachi" } -1151.6 "The Patient Blade" sync / 1[56]:[^:]*:Kamaitachi:27C7:/ window 30,30 jump 1110.9 +1151.6 "The Patient Blade" Ability { id: "27C7", source: "Kamaitachi" } window 30,30 jump 1110.9 1157.3 "Whipping Whittret" 1167.9 "Circling Winds" 1179.6 "Rolling Winds" @@ -91,37 +91,37 @@ hideall "--sync--" # -ii 27D2 27D5 # The Polished Shell will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:959:/ window 2000,1 -2005.0 "Caduceus" sync / 1[56]:[^:]*:Genbu:27CF:/ window 5,5 -2013.1 "Hell Of Water" sync / 1[56]:[^:]*:Genbu:27D0:/ -2021.9 "Hell Of Waste" sync / 1[56]:[^:]*:Genbu:27D1:/ -2033.6 "Sinister Tide" sync / 1[56]:[^:]*:Genbu:27D4:/ -2050.7 "Caduceus" sync / 1[56]:[^:]*:Genbu:27CF:/ window 20,20 -2055.8 "Sinister Tide" sync / 1[56]:[^:]*:Genbu:27D4:/ -2079.0 "Hell Of Water" sync / 1[56]:[^:]*:Genbu:27D0:/ -2085.7 "Sinister Tide" sync / 1[56]:[^:]*:Genbu:27D4:/ -2092.9 "Hell Of Waste" sync / 1[56]:[^:]*:Genbu:27D1:/ -2103.6 "Caduceus" sync / 1[56]:[^:]*:Genbu:27CF:/ window 20,20 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "959" } window 2000,1 +2005.0 "Caduceus" Ability { id: "27CF", source: "Genbu" } window 5,5 +2013.1 "Hell Of Water" Ability { id: "27D0", source: "Genbu" } +2021.9 "Hell Of Waste" Ability { id: "27D1", source: "Genbu" } +2033.6 "Sinister Tide" Ability { id: "27D4", source: "Genbu" } +2050.7 "Caduceus" Ability { id: "27CF", source: "Genbu" } window 20,20 +2055.8 "Sinister Tide" Ability { id: "27D4", source: "Genbu" } +2079.0 "Hell Of Water" Ability { id: "27D0", source: "Genbu" } +2085.7 "Sinister Tide" Ability { id: "27D4", source: "Genbu" } +2092.9 "Hell Of Waste" Ability { id: "27D1", source: "Genbu" } +2103.6 "Caduceus" Ability { id: "27CF", source: "Genbu" } window 20,20 2109.7 "--untargetable--" # This intermission has a boss limit break charging. # Its progress determines how powerful Divine Cataract will be. # This timeline is the maximum the intermission will run. -2113.9 "Hell Of Waves" sync / 1[56]:[^:]*:Genbu:27D3:/ window 113.9,5 -2125.4 "Shell Shower" sync / 1[56]:[^:]*:Genbu:2850:/ -2140.5 "Shell Shower" sync / 1[56]:[^:]*:Genbu:2850:/ -2155.6 "Shell Shower" sync / 1[56]:[^:]*:Genbu:2850:/ -2170.6 "Shell Shower" sync / 1[56]:[^:]*:Genbu:2850:/ -2175.3 "Divine Cataract" sync / 1[56]:[^:]*:Genbu:27D7:/ window 61.4,10 +2113.9 "Hell Of Waves" Ability { id: "27D3", source: "Genbu" } window 113.9,5 +2125.4 "Shell Shower" Ability { id: "2850", source: "Genbu" } +2140.5 "Shell Shower" Ability { id: "2850", source: "Genbu" } +2155.6 "Shell Shower" Ability { id: "2850", source: "Genbu" } +2170.6 "Shell Shower" Ability { id: "2850", source: "Genbu" } +2175.3 "Divine Cataract" Ability { id: "27D7", source: "Genbu" } window 61.4,10 2178.3 "--targetable--" # Extra-aggressive syncs here, since Waste/Wave timings can drift. -2182.4 "Sinister Tide" sync / 1[56]:[^:]*:Genbu:27D4:/ window 20,20 -2189.5 "Hell Of Waste/Hell Of Waves" sync / 1[56]:[^:]*:Genbu:27(D1|7E):/ -2202.6 "Hell Of Water" sync / 1[56]:[^:]*:Genbu:27D0:/ window 15,15 -2208.3 "Caduceus" sync / 1[56]:[^:]*:Genbu:27CF:/ window 15,15 +2182.4 "Sinister Tide" Ability { id: "27D4", source: "Genbu" } window 20,20 +2189.5 "Hell Of Waste/Hell Of Waves" Ability { id: "27(D1|7E)", source: "Genbu" } +2202.6 "Hell Of Water" Ability { id: "27D0", source: "Genbu" } window 15,15 +2208.3 "Caduceus" Ability { id: "27CF", source: "Genbu" } window 15,15 -2214.4 "Sinister Tide" sync / 1[56]:[^:]*:Genbu:27D4:/ window 20,20 jump 2182.4 +2214.4 "Sinister Tide" Ability { id: "27D4", source: "Genbu" } window 20,20 jump 2182.4 2221.5 "Hell Of Waste/Hell Of Waves" 2234.6 "Hell Of Water" 2240.3 "Caduceus" diff --git a/ui/raidboss/data/04-sb/dungeon/kugane_castle.txt b/ui/raidboss/data/04-sb/dungeon/kugane_castle.txt index db0def7280..c317bc8a3c 100644 --- a/ui/raidboss/data/04-sb/dungeon/kugane_castle.txt +++ b/ui/raidboss/data/04-sb/dungeon/kugane_castle.txt @@ -12,22 +12,22 @@ hideall "--sync--" # The Harakiri Kosho adds seem to be on a separate timer and thus aren't included here. # Keisen Garden will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:7AF:/ window 0,1 -9.6 "Clearout" sync / 1[56]:[^:]*:Zuiko-Maru:1E92:/ window 9.6,5 -21.8 "Kenki Release" sync / 1[56]:[^:]*:Zuiko-Maru:1E93:/ window 21.8,10 -30.9 "Clearout" sync / 1[56]:[^:]*:Zuiko-Maru:1E92:/ - -40.0 "Kenki Release" sync / 1[56]:[^:]*:Zuiko-Maru:1E93:/ -50.2 "Clearout" sync / 1[56]:[^:]*:Zuiko-Maru:1E92:/ -60.4 "Helm Crack" sync / 1[56]:[^:]*:Zuiko-Maru:1E94:/ window 15,15 -65.5 "Kenki Release" sync / 1[56]:[^:]*:Zuiko-Maru:1E93:/ -75.8 "Clearout" sync / 1[56]:[^:]*:Zuiko-Maru:1E92:/ -86.0 "Kenki Release" sync / 1[56]:[^:]*:Zuiko-Maru:1E93:/ -98.2 "Helm Crack" sync / 1[56]:[^:]*:Zuiko-Maru:1E94:/ window 15,15 -103.4 "Clearout" sync / 1[56]:[^:]*:Zuiko-Maru:1E92:/ -113.6 "Kenki Release" sync / 1[56]:[^:]*:Zuiko-Maru:1E93:/ - -121.7 "Kenki Release" sync / 1[56]:[^:]*:Zuiko-Maru:1E93:/ jump 40 +0 "Start" SystemLogMessage { id: "7DC", param1: "7AF" } window 0,1 +9.6 "Clearout" Ability { id: "1E92", source: "Zuiko-Maru" } window 9.6,5 +21.8 "Kenki Release" Ability { id: "1E93", source: "Zuiko-Maru" } window 21.8,10 +30.9 "Clearout" Ability { id: "1E92", source: "Zuiko-Maru" } + +40.0 "Kenki Release" Ability { id: "1E93", source: "Zuiko-Maru" } +50.2 "Clearout" Ability { id: "1E92", source: "Zuiko-Maru" } +60.4 "Helm Crack" Ability { id: "1E94", source: "Zuiko-Maru" } window 15,15 +65.5 "Kenki Release" Ability { id: "1E93", source: "Zuiko-Maru" } +75.8 "Clearout" Ability { id: "1E92", source: "Zuiko-Maru" } +86.0 "Kenki Release" Ability { id: "1E93", source: "Zuiko-Maru" } +98.2 "Helm Crack" Ability { id: "1E94", source: "Zuiko-Maru" } window 15,15 +103.4 "Clearout" Ability { id: "1E92", source: "Zuiko-Maru" } +113.6 "Kenki Release" Ability { id: "1E93", source: "Zuiko-Maru" } + +121.7 "Kenki Release" Ability { id: "1E93", source: "Zuiko-Maru" } jump 40 131.9 "Clearout" 142.1 "Helm Crack" 147.2 "Kenki Release" @@ -42,32 +42,32 @@ hideall "--sync--" # -ii 1E9C 1E9E # Budokan Training Grounds will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:7B3:/ window 1000,5 -1006.5 "Issen" sync / 1[56]:[^:]*:Dojun-Maru:1E97:/ window 1006.5,5 -1016.6 "Clockwork Medium" sync / 1[56]:[^:]*:Dojun-Maru:1E99:/ -1019.8 "Issen" sync / 1[56]:[^:]*:Dojun-Maru:1E97:/ -1025.5 "Tatami-Gaeshi" sync / 1[56]:[^:]*:Elite Onmitsu:1E9D:/ -1027.6 "--sync--" sync / 1[56]:[^:]*:Elite Onmitsu:1E9A:/ -1028.9 "Clockwork Raiton" sync / 1[56]:[^:]*:Dojun-Maru:1E9B:/ window 1028.9,10 - -1036.1 "Issen" sync / 1[56]:[^:]*:Dojun-Maru:1E97:/ -1042.2 "Clockwork Medium" sync / 1[56]:[^:]*:Dojun-Maru:1E99:/ -1051.0 "Juji Shuriken" sync / 1[56]:[^:]*:Dojun-Maru:1E98:/ -1056.7 "Issen" sync / 1[56]:[^:]*:Dojun-Maru:1E97:/ -1061.8 "Issen" sync / 1[56]:[^:]*:Dojun-Maru:1E97:/ -1068.2 "Harakiri?" # sync / 1[56]:[^:]*:Elite Onmitsu:1E9F:/ -1070.1 "Juji Shuriken" sync / 1[56]:[^:]*:Dojun-Maru:1E98:/ -1079.3 "Clockwork Medium" sync / 1[56]:[^:]*:Dojun-Maru:1E99:/ window 15,15 -1088.1 "Tatami-Gaeshi 1" sync / 1[56]:[^:]*:Elite Onmitsu:1E9D:/ -1091.5 "Clockwork Raiton" sync / 1[56]:[^:]*:Dojun-Maru:1E9B:/ -1092.1 "Tatami-Gaeshi 2" sync / 1[56]:[^:]*:Elite Onmitsu:1E9D:/ -1093.4 "Juji Shuriken" sync / 1[56]:[^:]*:Elite Onmitsu:1EA0:/ -1095.5 "--adds spawn--" sync / 1[56]:[^:]*:Elite Onmitsu:1E9A:/ -1096.7 "Juji Shuriken" sync / 1[56]:[^:]*:Dojun-Maru:1E98:/ -1099.4 "--sync--" sync / 1[56]:[^:]*:Elite Onmitsu:1E9A:/ -1103.8 "Issen" sync / 1[56]:[^:]*:Dojun-Maru:1E97:/ window 30,2.5 - -1111.1 "Issen" sync / 1[56]:[^:]*:Dojun-Maru:1E97:/ jump 1036.1 +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "7B3" } window 1000,5 +1006.5 "Issen" Ability { id: "1E97", source: "Dojun-Maru" } window 1006.5,5 +1016.6 "Clockwork Medium" Ability { id: "1E99", source: "Dojun-Maru" } +1019.8 "Issen" Ability { id: "1E97", source: "Dojun-Maru" } +1025.5 "Tatami-Gaeshi" Ability { id: "1E9D", source: "Elite Onmitsu" } +1027.6 "--sync--" Ability { id: "1E9A", source: "Elite Onmitsu" } +1028.9 "Clockwork Raiton" Ability { id: "1E9B", source: "Dojun-Maru" } window 1028.9,10 + +1036.1 "Issen" Ability { id: "1E97", source: "Dojun-Maru" } +1042.2 "Clockwork Medium" Ability { id: "1E99", source: "Dojun-Maru" } +1051.0 "Juji Shuriken" Ability { id: "1E98", source: "Dojun-Maru" } +1056.7 "Issen" Ability { id: "1E97", source: "Dojun-Maru" } +1061.8 "Issen" Ability { id: "1E97", source: "Dojun-Maru" } +1068.2 "Harakiri?" # Ability { id: "1E9F", source: "Elite Onmitsu" } +1070.1 "Juji Shuriken" Ability { id: "1E98", source: "Dojun-Maru" } +1079.3 "Clockwork Medium" Ability { id: "1E99", source: "Dojun-Maru" } window 15,15 +1088.1 "Tatami-Gaeshi 1" Ability { id: "1E9D", source: "Elite Onmitsu" } +1091.5 "Clockwork Raiton" Ability { id: "1E9B", source: "Dojun-Maru" } +1092.1 "Tatami-Gaeshi 2" Ability { id: "1E9D", source: "Elite Onmitsu" } +1093.4 "Juji Shuriken" Ability { id: "1EA0", source: "Elite Onmitsu" } +1095.5 "--adds spawn--" Ability { id: "1E9A", source: "Elite Onmitsu" } +1096.7 "Juji Shuriken" Ability { id: "1E98", source: "Dojun-Maru" } +1099.4 "--sync--" Ability { id: "1E9A", source: "Elite Onmitsu" } +1103.8 "Issen" Ability { id: "1E97", source: "Dojun-Maru" } window 30,2.5 + +1111.1 "Issen" Ability { id: "1E97", source: "Dojun-Maru" } jump 1036.1 1117.2 "Clockwork Medium" 1126.0 "Juji Shuriken" 1131.7 "Issen" @@ -82,71 +82,71 @@ hideall "--sync--" # Short opener # Noh Theater will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:7B5:/ window 2000,5 -2009.5 "Iai-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA2:/ window 2009.5,5 -2012.7 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ -2018.9 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "7B5" } window 2000,5 +2009.5 "Iai-Giri" Ability { id: "1EA2", source: "Yojimbo" } window 2009.5,5 +2012.7 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } +2018.9 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } 2024.9 "--untargetable--" # Intermission 1 -2028.9 "--sync--" sync / 1[56]:[^:]*:Kageyama:2517:/ window 2028.9,5 -2031.0 "Gratuity" sync / 1[56]:[^:]*:Kageyama:1EAE:/ -2037.1 "Gratuity" sync / 1[56]:[^:]*:Kageyama:1EAE:/ -2039.1 "Zeni Masshigura x4" sync / 1[56]:[^:]*:Daigoro:1EA7:/ -2043.1 "--sync--" sync / 1[56]:[^:]*:Kageyama:2517:/ -2047.7 "Zeni Masshigura x4" sync / 1[56]:[^:]*:Daigoro:1EA7:/ -2059.2 "Zanmato" sync / 1[56]:[^:]*:Yojimbo:2072:/ window 2059.2,10 +2028.9 "--sync--" Ability { id: "2517", source: "Kageyama" } window 2028.9,5 +2031.0 "Gratuity" Ability { id: "1EAE", source: "Kageyama" } +2037.1 "Gratuity" Ability { id: "1EAE", source: "Kageyama" } +2039.1 "Zeni Masshigura x4" Ability { id: "1EA7", source: "Daigoro" } +2043.1 "--sync--" Ability { id: "2517", source: "Kageyama" } +2047.7 "Zeni Masshigura x4" Ability { id: "1EA7", source: "Daigoro" } +2059.2 "Zanmato" Ability { id: "2072", source: "Yojimbo" } window 2059.2,10 # Bridge 2062.2 "--targetable--" -2074.7 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ -2079.8 "Metta-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA3:/ -2091.0 "Inoshikacho" sync / 1[56]:[^:]*:Yojimbo:1EA5:/ window 30,30 -2096.2 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ -2100.2 "Fragility (inner)" # sync / 1[56]:[^:]*:Inoshikacho:1EAA:/ -2104.2 "Fragility (outer)" # sync / 1[56]:[^:]*:Inoshikacho:1EAA:/ -2106.2 "Iai-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA2:/ -2115.1 "Dragon's Lair" sync / 1[56]:[^:]*:Yojimbo:1EA6:/ +2074.7 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } +2079.8 "Metta-Giri" Ability { id: "1EA3", source: "Yojimbo" } +2091.0 "Inoshikacho" Ability { id: "1EA5", source: "Yojimbo" } window 30,30 +2096.2 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } +2100.2 "Fragility (inner)" # Ability { id: "1EAA", source: "Inoshikacho" } +2104.2 "Fragility (outer)" # Ability { id: "1EAA", source: "Inoshikacho" } +2106.2 "Iai-Giri" Ability { id: "1EA2", source: "Yojimbo" } +2115.1 "Dragon's Lair" Ability { id: "1EA6", source: "Yojimbo" } 2117.2 "--untargetable--" # Intermission 2 -2121.2 "--sync--" sync / 1[56]:[^:]*:Kageyama:2517:/ -2123.3 "Gratuity" sync / 1[56]:[^:]*:Kageyama:1EAE:/ -2125.3 "Dragonfire" # sync / 1[56]:[^:]*:Dragon's Head:1EAB:/ -2129.4 "Gratuity" sync / 1[56]:[^:]*:Kageyama:1EAE:/ -2131.4 "Zeni Masshigura x4" sync / 1[56]:[^:]*:Daigoro:1EA7:/ window 30,2.5 -2135.4 "Gratuity" sync / 1[56]:[^:]*:Kageyama:1EAE:/ -2135.8 "Dragonfire" # sync / 1[56]:[^:]*:Dragon's Head:1EAB:/ -2138.6 "--sync--" sync / 1[56]:[^:]*:Kageyama:2517:/ -2140.1 "Zeni Masshigura x4" sync / 1[56]:[^:]*:Daigoro:1EA7:/ -2146.2 "Dragonfire" # sync / 1[56]:[^:]*:Dragon's Head:1EAB:/ -2148.8 "Zeni Masshigura x4" sync / 1[56]:[^:]*:Daigoro:1EA7:/ -2155.1 "Dragonstrike?" # sync / 1[56]:[^:]*:Dragon's Head:1EAD:/ -2159.5 "Zanmato" sync / 1[56]:[^:]*:Yojimbo:2072:/ window 90,10 # Making sure of no overlap with previous use. +2121.2 "--sync--" Ability { id: "2517", source: "Kageyama" } +2123.3 "Gratuity" Ability { id: "1EAE", source: "Kageyama" } +2125.3 "Dragonfire" # Ability { id: "1EAB", source: "Dragon's Head" } +2129.4 "Gratuity" Ability { id: "1EAE", source: "Kageyama" } +2131.4 "Zeni Masshigura x4" Ability { id: "1EA7", source: "Daigoro" } window 30,2.5 +2135.4 "Gratuity" Ability { id: "1EAE", source: "Kageyama" } +2135.8 "Dragonfire" # Ability { id: "1EAB", source: "Dragon's Head" } +2138.6 "--sync--" Ability { id: "2517", source: "Kageyama" } +2140.1 "Zeni Masshigura x4" Ability { id: "1EA7", source: "Daigoro" } +2146.2 "Dragonfire" # Ability { id: "1EAB", source: "Dragon's Head" } +2148.8 "Zeni Masshigura x4" Ability { id: "1EA7", source: "Daigoro" } +2155.1 "Dragonstrike?" # Ability { id: "1EAD", source: "Dragon's Head" } +2159.5 "Zanmato" Ability { id: "2072", source: "Yojimbo" } window 90,10 # Making sure of no overlap with previous use. # Rotation 2162.4 "--targetable--" -2176.9 "Metta-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA3:/ -2184.1 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ -2189.2 "Inoshikacho" sync / 1[56]:[^:]*:Yojimbo:1EA5:/ window 30,30 -2194.3 "Metta-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA3:/ -2198.4 "Fragility (inner)" # sync / 1[56]:[^:]*:Inoshikacho:1EAA:/ -2202.4 "Fragility (outer)" # sync / 1[56]:[^:]*:Inoshikacho:1EAA:/ -2205.5 "Iai-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA2:/ -2215.7 "Dragon's Lair" sync / 1[56]:[^:]*:Yojimbo:1EA6:/ -2224.9 "Iai-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA2:/ -2225.9 "Dragonfire" # sync / 1[56]:[^:]*:Dragon's Head:1EAB:/ -2232.0 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ -2236.4 "Dragonfire" # sync / 1[56]:[^:]*:Dragon's Head:1EAB:/ -2238.0 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ -2245.1 "Iai-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA2:/ window 15,15 -2247.2 "Dragonfire" # sync / 1[56]:[^:]*:Dragon's Head:1EAB:/ -2255.2 "Metta-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA3:/ -2255.8 "Dragonstrike?" # sync / 1[56]:[^:]*:Dragon's Head:1EAD:/ -2262.4 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ -2268.5 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:1EA1:/ - -2278.7 "Metta-Giri" sync / 1[56]:[^:]*:Yojimbo:1EA3:/ jump 2176.9 +2176.9 "Metta-Giri" Ability { id: "1EA3", source: "Yojimbo" } +2184.1 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } +2189.2 "Inoshikacho" Ability { id: "1EA5", source: "Yojimbo" } window 30,30 +2194.3 "Metta-Giri" Ability { id: "1EA3", source: "Yojimbo" } +2198.4 "Fragility (inner)" # Ability { id: "1EAA", source: "Inoshikacho" } +2202.4 "Fragility (outer)" # Ability { id: "1EAA", source: "Inoshikacho" } +2205.5 "Iai-Giri" Ability { id: "1EA2", source: "Yojimbo" } +2215.7 "Dragon's Lair" Ability { id: "1EA6", source: "Yojimbo" } +2224.9 "Iai-Giri" Ability { id: "1EA2", source: "Yojimbo" } +2225.9 "Dragonfire" # Ability { id: "1EAB", source: "Dragon's Head" } +2232.0 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } +2236.4 "Dragonfire" # Ability { id: "1EAB", source: "Dragon's Head" } +2238.0 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } +2245.1 "Iai-Giri" Ability { id: "1EA2", source: "Yojimbo" } window 15,15 +2247.2 "Dragonfire" # Ability { id: "1EAB", source: "Dragon's Head" } +2255.2 "Metta-Giri" Ability { id: "1EA3", source: "Yojimbo" } +2255.8 "Dragonstrike?" # Ability { id: "1EAD", source: "Dragon's Head" } +2262.4 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } +2268.5 "Wakizashi" Ability { id: "1EA1", source: "Yojimbo" } + +2278.7 "Metta-Giri" Ability { id: "1EA3", source: "Yojimbo" } jump 2176.9 2285.9 "Wakizashi" 2291.0 "Inoshikacho" 2296.1 "Metta-Giri" diff --git a/ui/raidboss/data/04-sb/dungeon/shisui_of_the_violet_tides.txt b/ui/raidboss/data/04-sb/dungeon/shisui_of_the_violet_tides.txt index de9a29132e..ee0219c1a4 100644 --- a/ui/raidboss/data/04-sb/dungeon/shisui_of_the_violet_tides.txt +++ b/ui/raidboss/data/04-sb/dungeon/shisui_of_the_violet_tides.txt @@ -8,34 +8,34 @@ hideall "--sync--" # Phase 1: 100% -> 90%, autos + mini busters # Harutsuge Gate will be sealed off -0.0 "Start" sync / 29:[^:]*:7DC:[^:]*:796:/ window 10000,0 -4.5 "Sharp Strike" sync / 1[56]:[^:]*:Amikiri:1F72:/ window 20,20 -12.7 "Sharp Strike" #sync / 1[56]:[^:]*:Amikiri:1F72:/ -20.9 "Sharp Strike" #sync / 1[56]:[^:]*:Amikiri:1F72:/ -29.1 "Sharp Strike" #sync / 1[56]:[^:]*:Amikiri:1F72:/ -37.3 "Sharp Strike" #sync / 1[56]:[^:]*:Amikiri:1F72:/ +0.0 "Start" SystemLogMessage { id: "7DC", param1: "796" } window 10000,0 +4.5 "Sharp Strike" Ability { id: "1F72", source: "Amikiri" } window 20,20 +12.7 "Sharp Strike" #Ability { id: "1F72", source: "Amikiri" } +20.9 "Sharp Strike" #Ability { id: "1F72", source: "Amikiri" } +29.1 "Sharp Strike" #Ability { id: "1F72", source: "Amikiri" } +37.3 "Sharp Strike" #Ability { id: "1F72", source: "Amikiri" } # Phase 2: 90% -> 0% # Ignoring Sharp Strike (1F72) at this point, as timing is odd depending on Shuck failure. # There's also Sharp Strikes from the Kamikiri add as well, with its own inconsistent timing. # Also, there's no 0x14 lines for any of these things but Shuck. -100.0 "Mucal Glob" sync / 1[56]:[^:]*:Amikiri:1F73:/ window 100,0 -132.2 "Shuck?" sync / 1[56]:[^:]*:Amikiri:1F75:/ +100.0 "Mucal Glob" Ability { id: "1F73", source: "Amikiri" } window 100,0 +132.2 "Shuck?" Ability { id: "1F75", source: "Amikiri" } 149.1 "--add--" -161.8 "Digest" sync / 1[56]:[^:]*:Amikiri:1F79:/ +161.8 "Digest" Ability { id: "1F79", source: "Amikiri" } # TODO: is there another phase push in here that makes this Mucal Glob come earlier? 181.7 "--add--" -182.2 "Mucal Glob" sync / 1[56]:[^:]*:Amikiri:1F73:/ window 30,30 -194.4 "Digest" sync / 1[56]:[^:]*:Amikiri:1F79:/ -214.4 "Shuck?" sync / 1[56]:[^:]*:Amikiri:1F75:/ -229.5 "Digest" sync / 1[56]:[^:]*:Amikiri:1F79:/ +182.2 "Mucal Glob" Ability { id: "1F73", source: "Amikiri" } window 30,30 +194.4 "Digest" Ability { id: "1F79", source: "Amikiri" } +214.4 "Shuck?" Ability { id: "1F75", source: "Amikiri" } +229.5 "Digest" Ability { id: "1F79", source: "Amikiri" } 249.4 "--add--" -249.9 "Mucal Glob" sync / 1[56]:[^:]*:Amikiri:1F73:/ window 30,30 jump 182.2 -262.1 "Digest" #sync / 1[56]:[^:]*:Amikiri:1F79:/ -282.1 "Shuck?" #sync / 1[56]:[^:]*:Amikiri:1F75:/ -292.2 "Digest" #sync / 1[56]:[^:]*:Amikiri:1F79:/ +249.9 "Mucal Glob" Ability { id: "1F73", source: "Amikiri" } window 30,30 jump 182.2 +262.1 "Digest" #Ability { id: "1F79", source: "Amikiri" } +282.1 "Shuck?" #Ability { id: "1F75", source: "Amikiri" } +292.2 "Digest" #Ability { id: "1F79", source: "Amikiri" } ### Ruby Princess @@ -44,72 +44,72 @@ hideall "--sync--" # Phase 1: 100 -> 90%, autos + mini busters # Akashio Hall will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:797:/ window 10000,0 -1006.4 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ window 20,20 -1013.5 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1020.6 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1027.7 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1034.8 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1041.9 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "797" } window 10000,0 +1006.4 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } window 20,20 +1013.5 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1020.6 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1027.7 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1034.8 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1041.9 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } # Phase 2: 90% -> 75%, one seduce, more mini busters -1100.0 "--sync--" sync / 14:[^:]*:Ruby Princess:1F7A:/ window 100,0 -1107.0 "Seduce" sync / 1[56]:[^:]*:Ruby Princess:1F7A:/ -1115.1 "Coriolis Kick" sync / 1[56]:[^:]*:Ruby Princess:1F7B:/ -1121.3 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ window 20,20 -1126.4 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1131.5 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1136.6 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1141.7 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1146.8 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ +1100.0 "--sync--" StartsUsing { id: "1F7A", source: "Ruby Princess" } window 100,0 +1107.0 "Seduce" Ability { id: "1F7A", source: "Ruby Princess" } +1115.1 "Coriolis Kick" Ability { id: "1F7B", source: "Ruby Princess" } +1121.3 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } window 20,20 +1126.4 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1131.5 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1136.6 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1141.7 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1146.8 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } # Phase 3: 75% -> 60%, introduction to chasing AOE -1200.0 "--sync--" sync / 14:[^:]*:Ruby Princess:1F7C:/ window 200,0 -1203.0 "Abyssal Volcano" sync / 1[56]:[^:]*:Ruby Princess:1F7C:/ -1203.8 "Geothermal Flatulence x11" sync / 1[56]:[^:]*:Ruby Princess:24D7:/ duration 8.1 -1217.2 "Coriolis Kick" sync / 1[56]:[^:]*:Ruby Princess:1F7B:/ -1225.4 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1232.5 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ - -1244.7 "Abyssal Volcano" sync / 1[56]:[^:]*:Ruby Princess:1F7C:/ window 30,30 jump 1203 -1245.5 "Geothermal Flatulence x11" #sync / 1[56]:[^:]*:Ruby Princess:24D7:/ duration 8.1 -1258.9 "Coriolis Kick" #sync / 1[56]:[^:]*:Ruby Princess:1F7B:/ -1267.1 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1274.2 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ +1200.0 "--sync--" StartsUsing { id: "1F7C", source: "Ruby Princess" } window 200,0 +1203.0 "Abyssal Volcano" Ability { id: "1F7C", source: "Ruby Princess" } +1203.8 "Geothermal Flatulence x11" Ability { id: "24D7", source: "Ruby Princess" } duration 8.1 +1217.2 "Coriolis Kick" Ability { id: "1F7B", source: "Ruby Princess" } +1225.4 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } +1232.5 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } + +1244.7 "Abyssal Volcano" Ability { id: "1F7C", source: "Ruby Princess" } window 30,30 jump 1203 +1245.5 "Geothermal Flatulence x11" #Ability { id: "24D7", source: "Ruby Princess" } duration 8.1 +1258.9 "Coriolis Kick" #Ability { id: "1F7B", source: "Ruby Princess" } +1267.1 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1274.2 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } # Phase 4: 60% -> 0%, seduce loop -1400.0 "--sync--" sync / 14:[^:]*:Ruby Princess:1F7A:/ window 290,0 -1407.0 "Seduce" sync / 1[56]:[^:]*:Ruby Princess:1F7A:/ -1415.1 "Coriolis Kick" sync / 1[56]:[^:]*:Ruby Princess:1F7B:/ -1423.3 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1430.4 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1437.5 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ - -1449.7 "Abyssal Volcano" sync / 1[56]:[^:]*:Ruby Princess:1F7C:/ -1450.5 "Geothermal Flatulence x11" sync / 1[56]:[^:]*:Ruby Princess:24D7:/ duration 8.1 -1465.7 "Seduce" sync / 1[56]:[^:]*:Ruby Princess:1F7A:/ -1473.8 "Coriolis Kick" sync / 1[56]:[^:]*:Ruby Princess:1F7B:/ -1482.0 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1489.1 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1496.2 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1512.9 "Seduce" sync / 1[56]:[^:]*:Ruby Princess:1F7A:/ -1521.1 "Coriolis Kick" sync / 1[56]:[^:]*:Ruby Princess:1F7B:/ -1529.3 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1536.4 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1543.5 "Tornadogenesis" sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ - -1555.6 "Abyssal Volcano" sync / 1[56]:[^:]*:Ruby Princess:1F7C:/ window 50,50 jump 1449.7 -1556.4 "Geothermal Flatulence x11" #sync / 1[56]:[^:]*:Ruby Princess:24D7:/ duration 8.1 -1571.4 "Seduce" #sync / 1[56]:[^:]*:Ruby Princess:1F7A:/ -1579.5 "Coriolis Kick" #sync / 1[56]:[^:]*:Ruby Princess:1F7B:/ -1587.7 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1594.8 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1602.0 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1618.9 "Seduce" #sync / 1[56]:[^:]*:Ruby Princess:1F7A:/ -1627.0 "Coriolis Kick" #sync / 1[56]:[^:]*:Ruby Princess:1F7B:/ -1635.2 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1642.3 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ -1649.4 "Tornadogenesis" #sync / 1[56]:[^:]*:Ruby Princess:1F7F:/ +1400.0 "--sync--" StartsUsing { id: "1F7A", source: "Ruby Princess" } window 290,0 +1407.0 "Seduce" Ability { id: "1F7A", source: "Ruby Princess" } +1415.1 "Coriolis Kick" Ability { id: "1F7B", source: "Ruby Princess" } +1423.3 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } +1430.4 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } +1437.5 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } + +1449.7 "Abyssal Volcano" Ability { id: "1F7C", source: "Ruby Princess" } +1450.5 "Geothermal Flatulence x11" Ability { id: "24D7", source: "Ruby Princess" } duration 8.1 +1465.7 "Seduce" Ability { id: "1F7A", source: "Ruby Princess" } +1473.8 "Coriolis Kick" Ability { id: "1F7B", source: "Ruby Princess" } +1482.0 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } +1489.1 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } +1496.2 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } +1512.9 "Seduce" Ability { id: "1F7A", source: "Ruby Princess" } +1521.1 "Coriolis Kick" Ability { id: "1F7B", source: "Ruby Princess" } +1529.3 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } +1536.4 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } +1543.5 "Tornadogenesis" Ability { id: "1F7F", source: "Ruby Princess" } + +1555.6 "Abyssal Volcano" Ability { id: "1F7C", source: "Ruby Princess" } window 50,50 jump 1449.7 +1556.4 "Geothermal Flatulence x11" #Ability { id: "24D7", source: "Ruby Princess" } duration 8.1 +1571.4 "Seduce" #Ability { id: "1F7A", source: "Ruby Princess" } +1579.5 "Coriolis Kick" #Ability { id: "1F7B", source: "Ruby Princess" } +1587.7 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1594.8 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1602.0 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1618.9 "Seduce" #Ability { id: "1F7A", source: "Ruby Princess" } +1627.0 "Coriolis Kick" #Ability { id: "1F7B", source: "Ruby Princess" } +1635.2 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1642.3 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } +1649.4 "Tornadogenesis" #Ability { id: "1F7F", source: "Ruby Princess" } ### Shisui Yohi (and friends) @@ -119,66 +119,66 @@ hideall "--sync--" # Phase 1: 100% -> 90%, autos and mini busters # Shisui Gokagura will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:798:/ window 10000,0 -2006.5 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2013.6 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "798" } window 10000,0 +2006.5 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } +2013.6 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } -2023.8 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ window 5,5 jump 2006.5 -2030.9 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ +2023.8 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } window 5,5 jump 2006.5 +2030.9 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } -2041.1 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2048.2 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ +2041.1 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2048.2 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } # Phase 2: 90% -> 75%, one (1) thick fog -2100.0 "--sync--" sync / 14:[^:]*:Shisui Yohi:1F80:/ window 100,0 -2105.0 "Thick Fog" sync / 1[56]:[^:]*:Shisui Yohi:1F80:/ +2100.0 "--sync--" StartsUsing { id: "1F80", source: "Shisui Yohi" } window 100,0 +2105.0 "Thick Fog" Ability { id: "1F80", source: "Shisui Yohi" } 2108.1 "--untargetable--" -2128.3 "Black Tide" sync / 1[56]:[^:]*:Shisui Yohi:1F81:/ window 30,30 +2128.3 "Black Tide" Ability { id: "1F81", source: "Shisui Yohi" } window 30,30 2131.3 "--targetable--" -2136.4 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2146.5 "Mad Stare" sync / 1[56]:[^:]*:Shisui Yohi:1F82:/ -2153.7 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2160.8 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ +2136.4 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } +2146.5 "Mad Stare" Ability { id: "1F82", source: "Shisui Yohi" } +2153.7 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } +2160.8 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } -2170.9 "Mad Stare" sync / 1[56]:[^:]*:Shisui Yohi:1F82:/ window 10,10 jump 2146.5 -2178.1 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2185.2 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ +2170.9 "Mad Stare" Ability { id: "1F82", source: "Shisui Yohi" } window 10,10 jump 2146.5 +2178.1 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2185.2 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } -2195.3 "Mad Stare" #sync / 1[56]:[^:]*:Shisui Yohi:1F82:/ -2202.5 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2209.6 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ +2195.3 "Mad Stare" #Ability { id: "1F82", source: "Shisui Yohi" } +2202.5 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2209.6 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } # Phase 3: 75% -> 60%, introduction to adds -2300.0 "--adds--" sync / 03:........:Naishi-No-Kami:/ window 300,0 -2303.4 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2313.5 "Mad Stare" sync / 1[56]:[^:]*:Shisui Yohi:1F82:/ +2300.0 "--adds--" AddedCombatant { name: "Naishi-No-Kami" } window 300,0 +2303.4 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } +2313.5 "Mad Stare" Ability { id: "1F82", source: "Shisui Yohi" } -2320.7 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ window 5,30 -2325.8 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2330.9 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2336.0 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2343.1 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2350.2 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ +2320.7 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } window 5,30 +2325.8 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } +2330.9 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2336.0 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2343.1 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2350.2 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } # Phase 4: 60% -> 0%, thick fog and adds loop -2400.0 "--sync--" sync / 14:[^:]*:Shisui Yohi:1F80:/ window 100,0 -2405.0 "Thick Fog" sync / 1[56]:[^:]*:Shisui Yohi:1F80:/ +2400.0 "--sync--" StartsUsing { id: "1F80", source: "Shisui Yohi" } window 100,0 +2405.0 "Thick Fog" Ability { id: "1F80", source: "Shisui Yohi" } 2408.1 "--untargetable--" -2428.3 "Black Tide" sync / 1[56]:[^:]*:Shisui Yohi:1F81:/ +2428.3 "Black Tide" Ability { id: "1F81", source: "Shisui Yohi" } 2431.3 "--targetable--" -2435.4 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2441.5 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2447.7 "Foul Nail" sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2457.8 "Mad Stare" sync / 1[56]:[^:]*:Shisui Yohi:1F82:/ +2435.4 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } +2441.5 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } +2447.7 "Foul Nail" Ability { id: "1F87", source: "Shisui Yohi" } +2457.8 "Mad Stare" Ability { id: "1F82", source: "Shisui Yohi" } 2459.3 "--adds--" -2477.0 "Thick Fog" sync / 1[56]:[^:]*:Shisui Yohi:1F80:/ window 30,30 jump 2405 +2477.0 "Thick Fog" Ability { id: "1F80", source: "Shisui Yohi" } window 30,30 jump 2405 2480.1 "--untargetable--" -2510.4 "Black Tide" #sync / 1[56]:[^:]*:Shisui Yohi:1F81:/ +2510.4 "Black Tide" #Ability { id: "1F81", source: "Shisui Yohi" } 2513.4 "--targetable--" -2517.5 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2523.6 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2529.7 "Foul Nail" #sync / 1[56]:[^:]*:Shisui Yohi:1F87:/ -2539.8 "Mad Stare" #sync / 1[56]:[^:]*:Shisui Yohi:1F82:/ +2517.5 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2523.6 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2529.7 "Foul Nail" #Ability { id: "1F87", source: "Shisui Yohi" } +2539.8 "Mad Stare" #Ability { id: "1F82", source: "Shisui Yohi" } 2541.3 "--adds--" diff --git a/ui/raidboss/data/04-sb/dungeon/sirensong_sea.txt b/ui/raidboss/data/04-sb/dungeon/sirensong_sea.txt index 2e42c7d84b..ee500d7ad4 100644 --- a/ui/raidboss/data/04-sb/dungeon/sirensong_sea.txt +++ b/ui/raidboss/data/04-sb/dungeon/sirensong_sea.txt @@ -8,27 +8,27 @@ hideall "--sync--" # -ii 1F5A # Spae Rock will be sealed off -0.0 "Start" sync / 29:[^:]*:7DC:[^:]*:7A9:/ window 0,1 -18.5 "Amorphous Applause" sync / 1[56]:[^:]*:Lugat:1F56:/ -29.6 "Hydroball" sync / 1[56]:[^:]*:Lugat:1F57:/ - -41.4 "Sea Swallows All" sync / 1[56]:[^:]*:Lugat:1F58:/ -47.1 "Concussive Oscillation" sync / 1[56]:[^:]*:Lugat:1F5B:/ -54.0 "Amorphous Applause" sync / 1[56]:[^:]*:Lugat:1F56:/ -70.2 "Amorphous Applause" sync / 1[56]:[^:]*:Lugat:1F56:/ -80.0 "Overtow" sync / 1[56]:[^:]*:Lugat:1F59:/ -87.3 "Hydroball" sync / 1[56]:[^:]*:Lugat:1F57:/ -94.5 "Amorphous Applause" sync / 1[56]:[^:]*:Lugat:1F56:/ -110.7 "Amorphous Applause" sync / 1[56]:[^:]*:Lugat:1F56:/ - -120.2 "Sea Swallows All" sync / 1[56]:[^:]*:Lugat:1F58:/ window 30,30 jump 41.4 -125.9 "Concussive Oscillation" #sync / 1[56]:[^:]*:Lugat:1F5B:/ -132.8 "Amorphous Applause" #sync / 1[56]:[^:]*:Lugat:1F56:/ -149.0 "Amorphous Applause" #sync / 1[56]:[^:]*:Lugat:1F56:/ -158.8 "Overtow" #sync / 1[56]:[^:]*:Lugat:1F59:/ -166.1 "Hydroball" #sync / 1[56]:[^:]*:Lugat:1F57:/ -173.3 "Amorphous Applause" #sync / 1[56]:[^:]*:Lugat:1F56:/ -189.5 "Amorphous Applause" #sync / 1[56]:[^:]*:Lugat:1F56:/ +0.0 "Start" SystemLogMessage { id: "7DC", param1: "7A9" } window 0,1 +18.5 "Amorphous Applause" Ability { id: "1F56", source: "Lugat" } +29.6 "Hydroball" Ability { id: "1F57", source: "Lugat" } + +41.4 "Sea Swallows All" Ability { id: "1F58", source: "Lugat" } +47.1 "Concussive Oscillation" Ability { id: "1F5B", source: "Lugat" } +54.0 "Amorphous Applause" Ability { id: "1F56", source: "Lugat" } +70.2 "Amorphous Applause" Ability { id: "1F56", source: "Lugat" } +80.0 "Overtow" Ability { id: "1F59", source: "Lugat" } +87.3 "Hydroball" Ability { id: "1F57", source: "Lugat" } +94.5 "Amorphous Applause" Ability { id: "1F56", source: "Lugat" } +110.7 "Amorphous Applause" Ability { id: "1F56", source: "Lugat" } + +120.2 "Sea Swallows All" Ability { id: "1F58", source: "Lugat" } window 30,30 jump 41.4 +125.9 "Concussive Oscillation" #Ability { id: "1F5B", source: "Lugat" } +132.8 "Amorphous Applause" #Ability { id: "1F56", source: "Lugat" } +149.0 "Amorphous Applause" #Ability { id: "1F56", source: "Lugat" } +158.8 "Overtow" #Ability { id: "1F59", source: "Lugat" } +166.1 "Hydroball" #Ability { id: "1F57", source: "Lugat" } +173.3 "Amorphous Applause" #Ability { id: "1F56", source: "Lugat" } +189.5 "Amorphous Applause" #Ability { id: "1F56", source: "Lugat" } ### The Governor @@ -36,33 +36,33 @@ hideall "--sync--" # -ii 1F5D # Warden's Delight will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:7AB:/ window 1000,5 -1017.5 "Shadowflow" sync / 1[56]:[^:]*:The Governor:1F5E:/ -1018.0 "--sync--" sync / 1[56]:[^:]*:The Governor:1F5F:/ -1034.6 "Bloodburst" sync / 1[56]:[^:]*:The Governor:1F5C:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "7AB" } window 1000,5 +1017.5 "Shadowflow" Ability { id: "1F5E", source: "The Governor" } +1018.0 "--sync--" Ability { id: "1F5F", source: "The Governor" } +1034.6 "Bloodburst" Ability { id: "1F5C", source: "The Governor" } -1042.8 "Enter Night" sync / 1[56]:[^:]*:The Governor:1F60:/ window 10,10 +1042.8 "Enter Night" Ability { id: "1F60", source: "The Governor" } window 10,10 # Enter Night can take 12-17 seconds. There is added delay when the mechanic # is failed due to Shadowstrike (1F5D) attacks. -1055.9 "--sync--" sync / 14:[^:]*:The Governor:1F5C:/ window 10,10 -1059.9 "Bloodburst" sync / 1[56]:[^:]*:The Governor:1F5C:/ +1055.9 "--sync--" StartsUsing { id: "1F5C", source: "The Governor" } window 10,10 +1059.9 "Bloodburst" Ability { id: "1F5C", source: "The Governor" } # There is potential delay before Shadow Split due to the boss moving to the middle. -1065.0 "--sync--" sync / 14:[^:]*:The Governor:1F61:/ window 10,10 -1068.0 "Shadow Split" sync / 1[56]:[^:]*:The Governor:1F61:/ -1076.2 "Shadowflow" sync / 1[56]:[^:]*:The Governor:1F5E:/ -1076.7 "--sync--" sync / 1[56]:[^:]*:The Governor:1F5F:/ -1077.1 "Shadowflow" sync / 1[56]:[^:]*:The Groveller:1F62:/ -1093.4 "Bloodburst" sync / 1[56]:[^:]*:The Governor:1F5C:/ - -1102.6 "Enter Night" sync / 1[56]:[^:]*:The Governor:1F60:/ window 30,30 jump 1042.8 -1115.7 "--sync--" #sync / 14:[^:]*:The Governor:1F5C:/ window 10,10 -1119.7 "Bloodburst" #sync / 1[56]:[^:]*:The Governor:1F5C:/ -1124.8 "--sync--" #sync / 14:[^:]*:The Governor:1F61:/ window 10,10 -1127.8 "Shadow Split" #sync / 1[56]:[^:]*:The Governor:1F61:/ -1136.0 "Shadowflow" #sync / 1[56]:[^:]*:The Governor:1F5E:/ -1136.5 "--sync--" #sync / 1[56]:[^:]*:The Governor:1F5F:/ -1136.9 "Shadowflow" #sync / 1[56]:[^:]*:The Groveller:1F62:/ -1153.2 "Bloodburst" #sync / 1[56]:[^:]*:The Governor:1F5C:/ +1065.0 "--sync--" StartsUsing { id: "1F61", source: "The Governor" } window 10,10 +1068.0 "Shadow Split" Ability { id: "1F61", source: "The Governor" } +1076.2 "Shadowflow" Ability { id: "1F5E", source: "The Governor" } +1076.7 "--sync--" Ability { id: "1F5F", source: "The Governor" } +1077.1 "Shadowflow" Ability { id: "1F62", source: "The Groveller" } +1093.4 "Bloodburst" Ability { id: "1F5C", source: "The Governor" } + +1102.6 "Enter Night" Ability { id: "1F60", source: "The Governor" } window 30,30 jump 1042.8 +1115.7 "--sync--" #StartsUsing { id: "1F5C", source: "The Governor" } window 10,10 +1119.7 "Bloodburst" #Ability { id: "1F5C", source: "The Governor" } +1124.8 "--sync--" #StartsUsing { id: "1F61", source: "The Governor" } window 10,10 +1127.8 "Shadow Split" #Ability { id: "1F61", source: "The Governor" } +1136.0 "Shadowflow" #Ability { id: "1F5E", source: "The Governor" } +1136.5 "--sync--" #Ability { id: "1F5F", source: "The Governor" } +1136.9 "Shadowflow" #Ability { id: "1F62", source: "The Groveller" } +1153.2 "Bloodburst" #Ability { id: "1F5C", source: "The Governor" } ### Lorelei @@ -70,39 +70,39 @@ hideall "--sync--" # -ii 1F63 # Glowering Krautz will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:7AD:/ window 2000,5 -2011.5 "Virgin Tears" sync / 1[56]:[^:]*:Lorelei:1F69:/ -2024.7 "Morbid Advance/Morbid Retreat" sync / 1[56]:[^:]*:Lorelei:1F6[56]:/ -2033.9 "Head Butt" sync / 1[56]:[^:]*:Lorelei:1F64:/ - -2041.1 "Virgin Tears" sync / 1[56]:[^:]*:Lorelei:1F69:/ -2054.2 "Morbid Advance/Morbid Retreat" sync / 1[56]:[^:]*:Lorelei:1F6[56]:/ -2062.3 "Somber Melody" sync / 1[56]:[^:]*:Lorelei:1F67:/ -2066.0 "Head Butt" sync / 1[56]:[^:]*:Lorelei:1F64:/ - -2072.2 "Virgin Tears" sync / 1[56]:[^:]*:Lorelei:1F69:/ -2085.4 "Morbid Advance/Morbid Retreat" sync / 1[56]:[^:]*:Lorelei:1F6[56]:/ -2094.6 "Head Butt" sync / 1[56]:[^:]*:Lorelei:1F64:/ - -2102.8 "Virgin Tears" sync / 1[56]:[^:]*:Lorelei:1F69:/ window 10,10 -2116.5 "Morbid Advance/Morbid Retreat" sync / 1[56]:[^:]*:Lorelei:1F6[56]:/ -2123.7 "Void Water III" sync / 1[56]:[^:]*:Lorelei:1F68:/ -2129.8 "Somber Melody" sync / 1[56]:[^:]*:Lorelei:1F67:/ -2135.0 "Head Butt" sync / 1[56]:[^:]*:Lorelei:1F64:/ -2143.6 "Void Water III" sync / 1[56]:[^:]*:Lorelei:1F68:/ +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "7AD" } window 2000,5 +2011.5 "Virgin Tears" Ability { id: "1F69", source: "Lorelei" } +2024.7 "Morbid Advance/Morbid Retreat" Ability { id: "1F6[56]", source: "Lorelei" } +2033.9 "Head Butt" Ability { id: "1F64", source: "Lorelei" } + +2041.1 "Virgin Tears" Ability { id: "1F69", source: "Lorelei" } +2054.2 "Morbid Advance/Morbid Retreat" Ability { id: "1F6[56]", source: "Lorelei" } +2062.3 "Somber Melody" Ability { id: "1F67", source: "Lorelei" } +2066.0 "Head Butt" Ability { id: "1F64", source: "Lorelei" } + +2072.2 "Virgin Tears" Ability { id: "1F69", source: "Lorelei" } +2085.4 "Morbid Advance/Morbid Retreat" Ability { id: "1F6[56]", source: "Lorelei" } +2094.6 "Head Butt" Ability { id: "1F64", source: "Lorelei" } + +2102.8 "Virgin Tears" Ability { id: "1F69", source: "Lorelei" } window 10,10 +2116.5 "Morbid Advance/Morbid Retreat" Ability { id: "1F6[56]", source: "Lorelei" } +2123.7 "Void Water III" Ability { id: "1F68", source: "Lorelei" } +2129.8 "Somber Melody" Ability { id: "1F67", source: "Lorelei" } +2135.0 "Head Butt" Ability { id: "1F64", source: "Lorelei" } +2143.6 "Void Water III" Ability { id: "1F68", source: "Lorelei" } # the first 2x void water section above has a slightly different timing # on advance/retreat (0.5s longer?) so extend this out one more loop. -2155.9 "Virgin Tears" sync / 1[56]:[^:]*:Lorelei:1F69:/ window 10,10 -2169.1 "Morbid Advance/Morbid Retreat" sync / 1[56]:[^:]*:Lorelei:1F6[56]:/ -2176.4 "Void Water III" sync / 1[56]:[^:]*:Lorelei:1F68:/ -2182.5 "Somber Melody" sync / 1[56]:[^:]*:Lorelei:1F67:/ -2187.7 "Head Butt" sync / 1[56]:[^:]*:Lorelei:1F64:/ -2196.3 "Void Water III" sync / 1[56]:[^:]*:Lorelei:1F68:/ - -2208.5 "Virgin Tears" sync / 1[56]:[^:]*:Lorelei:1F69:/ window 30,30 jump 2155.9 -2221.7 "Morbid Advance/Morbid Retreat" #sync / 1[56]:[^:]*:Lorelei:1F6[56]:/ -2229.0 "Void Water III" #sync / 1[56]:[^:]*:Lorelei:1F68:/ -2235.1 "Somber Melody" #sync / 1[56]:[^:]*:Lorelei:1F67:/ -2240.3 "Head Butt" #sync / 1[56]:[^:]*:Lorelei:1F64:/ -2248.9 "Void Water III" #sync / 1[56]:[^:]*:Lorelei:1F68:/ +2155.9 "Virgin Tears" Ability { id: "1F69", source: "Lorelei" } window 10,10 +2169.1 "Morbid Advance/Morbid Retreat" Ability { id: "1F6[56]", source: "Lorelei" } +2176.4 "Void Water III" Ability { id: "1F68", source: "Lorelei" } +2182.5 "Somber Melody" Ability { id: "1F67", source: "Lorelei" } +2187.7 "Head Butt" Ability { id: "1F64", source: "Lorelei" } +2196.3 "Void Water III" Ability { id: "1F68", source: "Lorelei" } + +2208.5 "Virgin Tears" Ability { id: "1F69", source: "Lorelei" } window 30,30 jump 2155.9 +2221.7 "Morbid Advance/Morbid Retreat" #Ability { id: "1F6[56]", source: "Lorelei" } +2229.0 "Void Water III" #Ability { id: "1F68", source: "Lorelei" } +2235.1 "Somber Melody" #Ability { id: "1F67", source: "Lorelei" } +2240.3 "Head Butt" #Ability { id: "1F64", source: "Lorelei" } +2248.9 "Void Water III" #Ability { id: "1F68", source: "Lorelei" } diff --git a/ui/raidboss/data/04-sb/dungeon/st_mocianne_hard.txt b/ui/raidboss/data/04-sb/dungeon/st_mocianne_hard.txt index 8f1fc23226..e1f1716845 100644 --- a/ui/raidboss/data/04-sb/dungeon/st_mocianne_hard.txt +++ b/ui/raidboss/data/04-sb/dungeon/st_mocianne_hard.txt @@ -9,36 +9,36 @@ hideall "--sync--" # -ii 2E51 2E4C # Zymology will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:68D:/ window 0,1 -9.7 "Odious Air" sync / 1[56]:[^:]*:Nullchu:2E49:/ window 9.7,5 -21.8 "Vine Whip" sync / 1[56]:[^:]*:Nullchu:2E48:/ -33.9 "--sync--" sync / 1[56]:[^:]*:Nullchu:2E4D:/ -36.9 "Sludge Bomb" sync / 1[56]:[^:]*:Nullchu:2E4E:/ -42.4 "Fault Warren" sync / 1[56]:[^:]*:Nullchu:2E4A:/ - -53.9 "Devour" sync / 1[56]:[^:]*:Nullchu:2E4F:/ window 53.9,10 -57.8 "Odious Atmosphere" sync / 1[56]:[^:]*:Nullchu:2E50:/ duration 6 -74.3 "Vine Whip" sync / 1[56]:[^:]*:Nullchu:2E48:/ -84.8 "Taproot" sync / 1[56]:[^:]*:Nullchu:2E4B:/ -95.3 "Devour" sync / 1[56]:[^:]*:Nullchu:2E4F:/ window 15,15 -99.2 "Odious Atmosphere" sync / 1[56]:[^:]*:Nullchu:2E50:/ duration 6 -116.7 "Vine Whip" sync / 1[56]:[^:]*:Nullchu:2E48:/ -122.7 "--sync--" sync / 1[56]:[^:]*:Nullchu:2E4D:/ -125.7 "Sludge Bomb" sync / 1[56]:[^:]*:Nullchu:2E4E:/ -130.2 "Devour" sync / 1[56]:[^:]*:Nullchu:2E4F:/ window 15,15 -134.1 "Odious Atmosphere" sync / 1[56]:[^:]*:Nullchu:2E50:/ duration 6 -146.9 "Odious Air" sync / 1[56]:[^:]*:Nullchu:2E49:/ -157.6 "--sync--" sync / 1[56]:[^:]*:Nullchu:2E4D:/ -160.6 "Sludge Bomb" sync / 1[56]:[^:]*:Nullchu:2E4E:/ -166.1 "Fault Warren" sync / 1[56]:[^:]*:Nullchu:2E4A:/ window 30,30 -174.6 "Devour" sync / 1[56]:[^:]*:Nullchu:2E4F:/ -178.3 "Odious Atmosphere" sync / 1[56]:[^:]*:Nullchu:2E50:/ duration 6 -190.8 "Taproot" sync / 1[56]:[^:]*:Nullchu:2E4B:/ -205.9 "--sync--" sync / 1[56]:[^:]*:Nullchu:2E4D:/ -208.9 "Sludge Bomb" sync / 1[56]:[^:]*:Nullchu:2E4E:/ -214.3 "Fault Warren" sync / 1[56]:[^:]*:Nullchu:2E4A:/ - -225.8 "Devour" sync / 1[56]:[^:]*:Nullchu:2E4F:/ window 30,30 jump 53.9 +0 "Start" SystemLogMessage { id: "7DC", param1: "68D" } window 0,1 +9.7 "Odious Air" Ability { id: "2E49", source: "Nullchu" } window 9.7,5 +21.8 "Vine Whip" Ability { id: "2E48", source: "Nullchu" } +33.9 "--sync--" Ability { id: "2E4D", source: "Nullchu" } +36.9 "Sludge Bomb" Ability { id: "2E4E", source: "Nullchu" } +42.4 "Fault Warren" Ability { id: "2E4A", source: "Nullchu" } + +53.9 "Devour" Ability { id: "2E4F", source: "Nullchu" } window 53.9,10 +57.8 "Odious Atmosphere" Ability { id: "2E50", source: "Nullchu" } duration 6 +74.3 "Vine Whip" Ability { id: "2E48", source: "Nullchu" } +84.8 "Taproot" Ability { id: "2E4B", source: "Nullchu" } +95.3 "Devour" Ability { id: "2E4F", source: "Nullchu" } window 15,15 +99.2 "Odious Atmosphere" Ability { id: "2E50", source: "Nullchu" } duration 6 +116.7 "Vine Whip" Ability { id: "2E48", source: "Nullchu" } +122.7 "--sync--" Ability { id: "2E4D", source: "Nullchu" } +125.7 "Sludge Bomb" Ability { id: "2E4E", source: "Nullchu" } +130.2 "Devour" Ability { id: "2E4F", source: "Nullchu" } window 15,15 +134.1 "Odious Atmosphere" Ability { id: "2E50", source: "Nullchu" } duration 6 +146.9 "Odious Air" Ability { id: "2E49", source: "Nullchu" } +157.6 "--sync--" Ability { id: "2E4D", source: "Nullchu" } +160.6 "Sludge Bomb" Ability { id: "2E4E", source: "Nullchu" } +166.1 "Fault Warren" Ability { id: "2E4A", source: "Nullchu" } window 30,30 +174.6 "Devour" Ability { id: "2E4F", source: "Nullchu" } +178.3 "Odious Atmosphere" Ability { id: "2E50", source: "Nullchu" } duration 6 +190.8 "Taproot" Ability { id: "2E4B", source: "Nullchu" } +205.9 "--sync--" Ability { id: "2E4D", source: "Nullchu" } +208.9 "Sludge Bomb" Ability { id: "2E4E", source: "Nullchu" } +214.3 "Fault Warren" Ability { id: "2E4A", source: "Nullchu" } + +225.8 "Devour" Ability { id: "2E4F", source: "Nullchu" } window 30,30 jump 53.9 229.7 "Odious Atmosphere" 246.2 "Vine Whip" 256.7 "Taproot" @@ -53,54 +53,54 @@ hideall "--sync--" # The Soil Bed will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:AAA:/ window 1000,5 -1008.9 "Stone II" sync / 1[56]:[^:]*:Lakhamu:312A:/ window 1008.9,10 -1019.5 "Tectonics" sync / 1[56]:[^:]*:Lakhamu:312C:/ -1039.1 "Landslip" sync / 1[56]:[^:]*:Lakhamu:3132:/ -1041.1 "Rockslide" sync / 1[56]:[^:]*:Silt Golem:3134:/ window 1041.1,10 -1049.2 "Earthquake (inner)" sync / 1[56]:[^:]*:Lakhamu:312E:/ -1051.8 "Earthquake (outer)" sync / 1[56]:[^:]*:Lakhamu:312F:/ -1062.3 "Earth Shaker" sync / 1[56]:[^:]*:Lakhamu:3130:/ -1074.0 "Empty Gaze" sync / 1[56]:[^:]*:Lakhamu:312B:/ window 1074.0,10 -1086.1 "Landslip" sync / 1[56]:[^:]*:Lakhamu:3132:/ -1088.2 "Rockslide" sync / 1[56]:[^:]*:Silt Golem:3134:/ - -1091.3 "Earthquake (inner)?" sync / 1[56]:[^:]*:Lakhamu:312E:/ jump 1200 +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "AAA" } window 1000,5 +1008.9 "Stone II" Ability { id: "312A", source: "Lakhamu" } window 1008.9,10 +1019.5 "Tectonics" Ability { id: "312C", source: "Lakhamu" } +1039.1 "Landslip" Ability { id: "3132", source: "Lakhamu" } +1041.1 "Rockslide" Ability { id: "3134", source: "Silt Golem" } window 1041.1,10 +1049.2 "Earthquake (inner)" Ability { id: "312E", source: "Lakhamu" } +1051.8 "Earthquake (outer)" Ability { id: "312F", source: "Lakhamu" } +1062.3 "Earth Shaker" Ability { id: "3130", source: "Lakhamu" } +1074.0 "Empty Gaze" Ability { id: "312B", source: "Lakhamu" } window 1074.0,10 +1086.1 "Landslip" Ability { id: "3132", source: "Lakhamu" } +1088.2 "Rockslide" Ability { id: "3134", source: "Silt Golem" } + +1091.3 "Earthquake (inner)?" Ability { id: "312E", source: "Lakhamu" } jump 1200 1093.8 "Earthquake (outer)?" -1094.8 "Earth Shaker?" sync / 1[56]:[^:]*:Lakhamu:3130:/ jump 1400 +1094.8 "Earth Shaker?" Ability { id: "3130", source: "Lakhamu" } jump 1400 1110.9 "Tectonics" 1120.0 "Stone II" 1132.7 "Empty Gaze" 1144.8 "Landslip" -1200.0 "Earthquake (inner)" sync / 1[56]:[^:]*:Lakhamu:312E:/ -1202.5 "Earthquake (outer)" sync / 1[56]:[^:]*:Lakhamu:312F:/ -1219.6 "Tectonics" sync / 1[56]:[^:]*:Lakhamu:312C:/ window 30,30 -1228.7 "Stone II" sync / 1[56]:[^:]*:Lakhamu:312A:/ -1241.4 "Empty Gaze" sync / 1[56]:[^:]*:Lakhamu:312B:/ -1253.5 "Landslip" sync / 1[56]:[^:]*:Lakhamu:3132:/ window 30,30 -1255.6 "Rockslide" sync / 1[56]:[^:]*:Silt Golem:3134:/ +1200.0 "Earthquake (inner)" Ability { id: "312E", source: "Lakhamu" } +1202.5 "Earthquake (outer)" Ability { id: "312F", source: "Lakhamu" } +1219.6 "Tectonics" Ability { id: "312C", source: "Lakhamu" } window 30,30 +1228.7 "Stone II" Ability { id: "312A", source: "Lakhamu" } +1241.4 "Empty Gaze" Ability { id: "312B", source: "Lakhamu" } +1253.5 "Landslip" Ability { id: "3132", source: "Lakhamu" } window 30,30 +1255.6 "Rockslide" Ability { id: "3134", source: "Silt Golem" } -1258.7 "Earthquake (inner)?" sync / 1[56]:[^:]*:Lakhamu:312E:/ jump 1200 +1258.7 "Earthquake (inner)?" Ability { id: "312E", source: "Lakhamu" } jump 1200 1261.3 "Earthquake (outer)?" -1261.3 "Earth Shaker?" sync / 1[56]:[^:]*:Lakhamu:3130:/ jump 1400 +1261.3 "Earth Shaker?" Ability { id: "3130", source: "Lakhamu" } jump 1400 1278.4 "Tectonics" 1287.4 "Stone II" 1300.1 "Empty Gaze" 1312.2 "Landslip" -1400.0 "Earth Shaker" sync / 1[56]:[^:]*:Lakhamu:3130:/ -1414.7 "Tectonics" sync / 1[56]:[^:]*:Lakhamu:312C:/ window 30,30 -1423.8 "Stone II" sync / 1[56]:[^:]*:Lakhamu:312A:/ -1436.5 "Empty Gaze" sync / 1[56]:[^:]*:Lakhamu:312B:/ -1448.7 "Landslip" sync / 1[56]:[^:]*:Lakhamu:3132:/ window 30,30 -1450.7 "Rockslide" sync / 1[56]:[^:]*:Silt Golem:3134:/ +1400.0 "Earth Shaker" Ability { id: "3130", source: "Lakhamu" } +1414.7 "Tectonics" Ability { id: "312C", source: "Lakhamu" } window 30,30 +1423.8 "Stone II" Ability { id: "312A", source: "Lakhamu" } +1436.5 "Empty Gaze" Ability { id: "312B", source: "Lakhamu" } +1448.7 "Landslip" Ability { id: "3132", source: "Lakhamu" } window 30,30 +1450.7 "Rockslide" Ability { id: "3134", source: "Silt Golem" } -1453.8 "Earthquake (inner)?" sync / 1[56]:[^:]*:Lakhamu:312E:/ jump 1200 +1453.8 "Earthquake (inner)?" Ability { id: "312E", source: "Lakhamu" } jump 1200 1455.8 "Earthquake (outer)?" -1455.8 "Earth Shaker?" sync / 1[56]:[^:]*:Lakhamu:3130:/ jump 1400 +1455.8 "Earth Shaker?" Ability { id: "3130", source: "Lakhamu" } jump 1400 1469.5 "Tectonics" 1478.6 "Stone II" 1491.2 "Empty Gaze" @@ -114,31 +114,31 @@ hideall "--sync--" # -ii 3139 321C 33A0 # Kingsloam will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:AAF:/ window 2000,5 -2008.6 "Mudsling" sync / 1[56]:[^:]*:Tokkapchi:3135:/ -2021.8 "Quickmire" sync / 1[56]:[^:]*:Tokkapchi:3136:/ -2028.8 "Quagmire" sync / 1[56]:[^:]*:Tokkapchi:3138:/ -2042.4 "Quickmire" sync / 1[56]:[^:]*:Tokkapchi:3136:/ -2043.7 "--center--" sync / 1[56]:[^:]*:Tokkapchi:313E:/ window 2043.7,10 -2048.5 "Mud Pie" sync / 1[56]:[^:]*:Tokkapchi:3137:/ -2060.7 "Quickmire" sync / 1[56]:[^:]*:Tokkapchi:3136:/ -2068.7 "Quagmire" sync / 1[56]:[^:]*:Tokkapchi:3138:/ -2084.3 "Quickmire" sync / 1[56]:[^:]*:Tokkapchi:3136:/ -2091.3 "Bog Bequest" sync / 1[56]:[^:]*:Tokkapchi:313B:/ window 2091.3,30 -2098.9 "From Mud" sync / 1[56]:[^:]*:Tokkapchi:313D:/ - -2106.3 "--center--" sync / 1[56]:[^:]*:Tokkapchi:313E:/ window 30,30 -2111.1 "Mud Pie" sync / 1[56]:[^:]*:Tokkapchi:3137:/ -2123.2 "Quickmire" sync / 1[56]:[^:]*:Tokkapchi:3136:/ -2133.2 "Quagmire" sync / 1[56]:[^:]*:Tokkapchi:3138:/ -2147.4 "Feculent Flood" sync / 1[56]:[^:]*:Tokkapchi:313C:/ window 30,30 -2157.5 "Quagmire" sync / 1[56]:[^:]*:Tokkapchi:3138:/ -2169.1 "Quickmire" sync / 1[56]:[^:]*:Tokkapchi:3136:/ -2174.1 "Bog Bequest" sync / 1[56]:[^:]*:Tokkapchi:313B:/ window 30,30 -2187.7 "Quickmire" sync / 1[56]:[^:]*:Tokkapchi:3136:/ -2190.7 "Mudsling" sync / 1[56]:[^:]*:Tokkapchi:3135:/ - -2195.0 "--center--" sync / 1[56]:[^:]*:Tokkapchi:313E:/ window 30,30 jump 2106.3 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "AAF" } window 2000,5 +2008.6 "Mudsling" Ability { id: "3135", source: "Tokkapchi" } +2021.8 "Quickmire" Ability { id: "3136", source: "Tokkapchi" } +2028.8 "Quagmire" Ability { id: "3138", source: "Tokkapchi" } +2042.4 "Quickmire" Ability { id: "3136", source: "Tokkapchi" } +2043.7 "--center--" Ability { id: "313E", source: "Tokkapchi" } window 2043.7,10 +2048.5 "Mud Pie" Ability { id: "3137", source: "Tokkapchi" } +2060.7 "Quickmire" Ability { id: "3136", source: "Tokkapchi" } +2068.7 "Quagmire" Ability { id: "3138", source: "Tokkapchi" } +2084.3 "Quickmire" Ability { id: "3136", source: "Tokkapchi" } +2091.3 "Bog Bequest" Ability { id: "313B", source: "Tokkapchi" } window 2091.3,30 +2098.9 "From Mud" Ability { id: "313D", source: "Tokkapchi" } + +2106.3 "--center--" Ability { id: "313E", source: "Tokkapchi" } window 30,30 +2111.1 "Mud Pie" Ability { id: "3137", source: "Tokkapchi" } +2123.2 "Quickmire" Ability { id: "3136", source: "Tokkapchi" } +2133.2 "Quagmire" Ability { id: "3138", source: "Tokkapchi" } +2147.4 "Feculent Flood" Ability { id: "313C", source: "Tokkapchi" } window 30,30 +2157.5 "Quagmire" Ability { id: "3138", source: "Tokkapchi" } +2169.1 "Quickmire" Ability { id: "3136", source: "Tokkapchi" } +2174.1 "Bog Bequest" Ability { id: "313B", source: "Tokkapchi" } window 30,30 +2187.7 "Quickmire" Ability { id: "3136", source: "Tokkapchi" } +2190.7 "Mudsling" Ability { id: "3135", source: "Tokkapchi" } + +2195.0 "--center--" Ability { id: "313E", source: "Tokkapchi" } window 30,30 jump 2106.3 2199.8 "Mud Pie" 2211.9 "Quickmire" 2221.9 "Quagmire" diff --git a/ui/raidboss/data/04-sb/dungeon/swallows_compass.txt b/ui/raidboss/data/04-sb/dungeon/swallows_compass.txt index c23052b4b0..5c7a8e9df9 100644 --- a/ui/raidboss/data/04-sb/dungeon/swallows_compass.txt +++ b/ui/raidboss/data/04-sb/dungeon/swallows_compass.txt @@ -10,26 +10,26 @@ hideall "--sync--" # -ii 2B99 # The Heart of the Dragon will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:98B:/ window 0,1 -11.6 "Clout Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B95:/ -22.5 "Yama-Kagura" sync / 1[56]:[^:]*:Otengu:2B96:/ window 22.5,5 -33.1 "Might Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B94:/ -53.1 "Yama-Kagura" sync / 1[56]:[^:]*:Otengu:2B96:/ window 20,20 -64.2 "Wile Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B97:/ -76.7 "Clout Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B95:/ -85.5 "Flames Of Hate" sync / 1[56]:[^:]*:Tengu Ember:2B98:/ window 85.5,5 -93.1 "Might Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B94:/ -106.1 "Clout Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B95:/ - -125.0 "Yama-Kagura" sync / 1[56]:[^:]*:Otengu:2B96:/ window 30,30 -136.1 "Wile Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B97:/ -148.6 "Clout Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B95:/ -157.4 "Flames Of Hate" sync / 1[56]:[^:]*:Tengu Ember:2B98:/ -164.9 "Might Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B94:/ -177.9 "Clout Of The Tengu" sync / 1[56]:[^:]*:Otengu:2B95:/ -189.8 "Yama-Kagura" sync / 1[56]:[^:]*:Otengu:2B96:/ window 30,10 - -211.2 "Yama-Kagura" sync / 1[56]:[^:]*:Otengu:2B96:/ jump 125.0 +0 "Start" SystemLogMessage { id: "7DC", param1: "98B" } window 0,1 +11.6 "Clout Of The Tengu" Ability { id: "2B95", source: "Otengu" } +22.5 "Yama-Kagura" Ability { id: "2B96", source: "Otengu" } window 22.5,5 +33.1 "Might Of The Tengu" Ability { id: "2B94", source: "Otengu" } +53.1 "Yama-Kagura" Ability { id: "2B96", source: "Otengu" } window 20,20 +64.2 "Wile Of The Tengu" Ability { id: "2B97", source: "Otengu" } +76.7 "Clout Of The Tengu" Ability { id: "2B95", source: "Otengu" } +85.5 "Flames Of Hate" Ability { id: "2B98", source: "Tengu Ember" } window 85.5,5 +93.1 "Might Of The Tengu" Ability { id: "2B94", source: "Otengu" } +106.1 "Clout Of The Tengu" Ability { id: "2B95", source: "Otengu" } + +125.0 "Yama-Kagura" Ability { id: "2B96", source: "Otengu" } window 30,30 +136.1 "Wile Of The Tengu" Ability { id: "2B97", source: "Otengu" } +148.6 "Clout Of The Tengu" Ability { id: "2B95", source: "Otengu" } +157.4 "Flames Of Hate" Ability { id: "2B98", source: "Tengu Ember" } +164.9 "Might Of The Tengu" Ability { id: "2B94", source: "Otengu" } +177.9 "Clout Of The Tengu" Ability { id: "2B95", source: "Otengu" } +189.8 "Yama-Kagura" Ability { id: "2B96", source: "Otengu" } window 30,10 + +211.2 "Yama-Kagura" Ability { id: "2B96", source: "Otengu" } jump 125.0 222.3 "Wile Of The Tengu" 234.8 "Clout Of The Tengu" 243.6 "Flames Of Hate" @@ -41,28 +41,28 @@ hideall "--sync--" # -ii 2CD1 2B9B 2B9C 2B9F # The Dragon's Mouth will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:98E:/ window 1000,1 -1011.2 "Greater Palm" sync / 1[56]:[^:]*:Daidarabotchi:2B9[DE]:/ window 11.2,5 -1023.1 "Greater Palm" sync / 1[56]:[^:]*:Daidarabotchi:2B9[DE]:/ -1035.3 "Tributary" sync / 1[56]:[^:]*:Daidarabotchi:2BA0:/ window 35,0 -1035.5 "Mountain Falls" sync / 1[56]:[^:]*:Daidarabotchi:2BA5:/ window 35,5 -1051.4 "Mirage x5" sync / 1[56]:[^:]*:Daidarabotchi:2BA1:/ duration 5 - -1062.5 "--sync--" sync / 1[56]:[^:]*:Daidarabotchi:2BA3:/ window 62.5,10 -1067.5 "Mythmaker" sync / 1[56]:[^:]*:Daidarabotchi:2BA4:/ -1085.6 "Mountain Falls" sync / 1[56]:[^:]*:Daidarabotchi:2BA5:/ -1091.1 "Greater Palm" sync / 1[56]:[^:]*:Daidarabotchi:2B9[DE]:/ window 30,10 -1104.4 "Tributary" sync / 1[56]:[^:]*:Daidarabotchi:2BA0:/ -1121.4 "Mirage x5" sync / 1[56]:[^:]*:Daidarabotchi:2BA1:/ duration 5 -1131.9 "Greater Palm 1" sync / 1[56]:[^:]*:Daidarabotchi:2B9[DE]:/ -1138.7 "Greater Palm 2" sync / 1[56]:[^:]*:Daidarabotchi:2B9[DE]:/ -1151.9 "Tributary" sync / 1[56]:[^:]*:Daidarabotchi:2BA0:/ -1152.1 "Mountain Falls" sync / 1[56]:[^:]*:Daidarabotchi:2BA5:/ window 30,30 -1164.4 "Greater Palm" sync / 1[56]:[^:]*:Daidarabotchi:2B9[DE]:/ -1181.8 "Mirage x5" sync / 1[56]:[^:]*:Daidarabotchi:2BA1:/ duration 5 -1191.3 "Greater Palm" sync / 1[56]:[^:]*:Daidarabotchi:2B9[DE]:/ - -1203.7 "--sync--" sync / 1[56]:[^:]*:Daidarabotchi:2BA3:/ window 100,10 jump 1062.5 +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "98E" } window 1000,1 +1011.2 "Greater Palm" Ability { id: "2B9[DE]", source: "Daidarabotchi" } window 11.2,5 +1023.1 "Greater Palm" Ability { id: "2B9[DE]", source: "Daidarabotchi" } +1035.3 "Tributary" Ability { id: "2BA0", source: "Daidarabotchi" } window 35,0 +1035.5 "Mountain Falls" Ability { id: "2BA5", source: "Daidarabotchi" } window 35,5 +1051.4 "Mirage x5" Ability { id: "2BA1", source: "Daidarabotchi" } duration 5 + +1062.5 "--sync--" Ability { id: "2BA3", source: "Daidarabotchi" } window 62.5,10 +1067.5 "Mythmaker" Ability { id: "2BA4", source: "Daidarabotchi" } +1085.6 "Mountain Falls" Ability { id: "2BA5", source: "Daidarabotchi" } +1091.1 "Greater Palm" Ability { id: "2B9[DE]", source: "Daidarabotchi" } window 30,10 +1104.4 "Tributary" Ability { id: "2BA0", source: "Daidarabotchi" } +1121.4 "Mirage x5" Ability { id: "2BA1", source: "Daidarabotchi" } duration 5 +1131.9 "Greater Palm 1" Ability { id: "2B9[DE]", source: "Daidarabotchi" } +1138.7 "Greater Palm 2" Ability { id: "2B9[DE]", source: "Daidarabotchi" } +1151.9 "Tributary" Ability { id: "2BA0", source: "Daidarabotchi" } +1152.1 "Mountain Falls" Ability { id: "2BA5", source: "Daidarabotchi" } window 30,30 +1164.4 "Greater Palm" Ability { id: "2B9[DE]", source: "Daidarabotchi" } +1181.8 "Mirage x5" Ability { id: "2BA1", source: "Daidarabotchi" } duration 5 +1191.3 "Greater Palm" Ability { id: "2B9[DE]", source: "Daidarabotchi" } + +1203.7 "--sync--" Ability { id: "2BA3", source: "Daidarabotchi" } window 100,10 jump 1062.5 1208.7 "Mythmaker" 1226.8 "Mountain Falls" 1232.3 "Greater Palm" @@ -79,49 +79,49 @@ hideall "--sync--" # The opening block repeats without interrruption above 50% HP. # Note that Dasheng's abilities are not the same as those of the shadows! # Serenity will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:98F:/ window 2000,5 -2011.8 "The Short End" sync / 1[56]:[^:]*:Qitian Dasheng:2BA6:/ window 11.8,5 -2025.5 "Both Ends" sync / 1[56]:[^:]*:Qitian Dasheng:2BA[89]:/ -2036.1 "Mount Huaguo" sync / 1[56]:[^:]*:Qitian Dasheng:2BAA:/ window 36.1,5 -2052.3 "Both Ends" sync / 1[56]:[^:]*:Qitian Dasheng:2BA[89]:/ -2069.2 "The Long End" sync / 1[56]:[^:]*:Qitian Dasheng:2BA7:/ -2076.3 "Five-Fingered Punishment" sync / 1[56]:[^:]*:Qitian Dasheng:2BAB:/ window 76.3,10 -2084.9 "Both Ends" sync / 1[56]:[^:]*:Qitian Dasheng:2BA[89]:/ - -2102.7 "Both Ends" sync / 1[56]:[^:]*:Qitian Dasheng:2BA[89]:/ -2113.3 "Mount Huaguo" sync / 1[56]:[^:]*:Qitian Dasheng:2BAA:/ -2132.6 "Both Ends" sync / 1[56]:[^:]*:Qitian Dasheng:2BA[89]:/ -2143.2 "The Short End" sync / 1[56]:[^:]*:Qitian Dasheng:2BA6:/ window 30,30 - -2162.2 "Both Ends" sync / 1[56]:[^:]*:Qitian Dasheng:2BA[89]:/ jump 2102.7 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "98F" } window 2000,5 +2011.8 "The Short End" Ability { id: "2BA6", source: "Qitian Dasheng" } window 11.8,5 +2025.5 "Both Ends" Ability { id: "2BA[89]", source: "Qitian Dasheng" } +2036.1 "Mount Huaguo" Ability { id: "2BAA", source: "Qitian Dasheng" } window 36.1,5 +2052.3 "Both Ends" Ability { id: "2BA[89]", source: "Qitian Dasheng" } +2069.2 "The Long End" Ability { id: "2BA7", source: "Qitian Dasheng" } +2076.3 "Five-Fingered Punishment" Ability { id: "2BAB", source: "Qitian Dasheng" } window 76.3,10 +2084.9 "Both Ends" Ability { id: "2BA[89]", source: "Qitian Dasheng" } + +2102.7 "Both Ends" Ability { id: "2BA[89]", source: "Qitian Dasheng" } +2113.3 "Mount Huaguo" Ability { id: "2BAA", source: "Qitian Dasheng" } +2132.6 "Both Ends" Ability { id: "2BA[89]", source: "Qitian Dasheng" } +2143.2 "The Short End" Ability { id: "2BA6", source: "Qitian Dasheng" } window 30,30 + +2162.2 "Both Ends" Ability { id: "2BA[89]", source: "Qitian Dasheng" } jump 2102.7 2172.8 "Mount Huaguo" 2192.1 "Both Ends" 2202.7 "The Short End" # Intermission at <50% HP. -2300.0 "--sync--" sync / 1[56]:[^:]*:Qitian Dasheng:2CC7:/ window 300,5 -2310.3 "Equal Of Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB4:/ -2324.3 "Equal Of Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB4:/ -2338.3 "Equal Of Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB4:/ -2373.9 "Second Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB1:/ window 73.9,5 +2300.0 "--sync--" Ability { id: "2CC7", source: "Qitian Dasheng" } window 300,5 +2310.3 "Equal Of Heaven" Ability { id: "2BB4", source: "Qitian Dasheng" } +2324.3 "Equal Of Heaven" Ability { id: "2BB4", source: "Qitian Dasheng" } +2338.3 "Equal Of Heaven" Ability { id: "2BB4", source: "Qitian Dasheng" } +2373.9 "Second Heaven" Ability { id: "2BB1", source: "Qitian Dasheng" } window 73.9,5 # An interruptible rotation continues to the end. -2383.9 "Splitting Hairs" sync / 1[56]:[^:]*:Qitian Dasheng:2BB2:/ - -2392.0 "Equal Of Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB4:/ window 30,15 -2396.0 "Both Ends" sync / 1[56]:[^:]*:Shadow Of The Sage:2BA[EF]:/ -2407.6 "Mount Huaguo" sync / 1[56]:[^:]*:Shadow Of The Sage:2D08:/ -2421.9 "Equal Of Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB4:/ -2424.0 "The Long End" sync / 1[56]:[^:]*:Shadow Of The Sage:2BAD:/ window 30,30 -2435.2 "The Short End" sync / 1[56]:[^:]*:Shadow Of The Sage:2D07:/ -2449.1 "Equal Of Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB4:/ -2451.1 "Five-Fingered Punishment" sync / 1[56]:[^:]*:Shadow Of The Sage:2BB0:/ window 30,30 -2453.1 "Both Ends" sync / 1[56]:[^:]*:Shadow Of The Sage:2BA[EF]:/ -2464.7 "Mount Huaguo" sync / 1[56]:[^:]*:Shadow Of The Sage:2D08:/ -2464.7 "The Short End" sync / 1[56]:[^:]*:Shadow Of The Sage:2D07:/ - -2479.0 "Equal Of Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB4:/ window 15,15 jump 2392.0 +2383.9 "Splitting Hairs" Ability { id: "2BB2", source: "Qitian Dasheng" } + +2392.0 "Equal Of Heaven" Ability { id: "2BB4", source: "Qitian Dasheng" } window 30,15 +2396.0 "Both Ends" Ability { id: "2BA[EF]", source: "Shadow Of The Sage" } +2407.6 "Mount Huaguo" Ability { id: "2D08", source: "Shadow Of The Sage" } +2421.9 "Equal Of Heaven" Ability { id: "2BB4", source: "Qitian Dasheng" } +2424.0 "The Long End" Ability { id: "2BAD", source: "Shadow Of The Sage" } window 30,30 +2435.2 "The Short End" Ability { id: "2D07", source: "Shadow Of The Sage" } +2449.1 "Equal Of Heaven" Ability { id: "2BB4", source: "Qitian Dasheng" } +2451.1 "Five-Fingered Punishment" Ability { id: "2BB0", source: "Shadow Of The Sage" } window 30,30 +2453.1 "Both Ends" Ability { id: "2BA[EF]", source: "Shadow Of The Sage" } +2464.7 "Mount Huaguo" Ability { id: "2D08", source: "Shadow Of The Sage" } +2464.7 "The Short End" Ability { id: "2D07", source: "Shadow Of The Sage" } + +2479.0 "Equal Of Heaven" Ability { id: "2BB4", source: "Qitian Dasheng" } window 15,15 jump 2392.0 2483.0 "Both Ends" 2494.6 "Mount Huaguo" 2508.9 "Equal Of Heaven" @@ -137,9 +137,9 @@ hideall "--sync--" # This is a safe sync. The usage immediately after the intermission is 2BB2 from Dasheng. # -2590.3 "--sync--" sync / 14:[^:]*:Shadow Of The Sage:2BB3:/ window 2590.3,10 -2600.0 "Splitting Hairs" sync / 1[56]:[^:]*:Shadow Of The Sage:2BB3:/ window 2600,5 -2608.0 "Equal Of Heaven" sync / 1[56]:[^:]*:Qitian Dasheng:2BB4:/ -2610.0 "Five-Fingered Punishment?" sync / 1[56]:[^:]*:Shadow Of The Sage:2BB0:/ jump 2451.1 -2610.0 "The Long End?" sync / 1[56]:[^:]*:Shadow Of The Sage:2BAD:/ jump 2424.0 -2612.0 "Both Ends?" sync / 1[56]:[^:]*:Shadow Of The Sage:2BA[EF]:/ jump 2396.0 +2590.3 "--sync--" StartsUsing { id: "2BB3", source: "Shadow Of The Sage" } window 2590.3,10 +2600.0 "Splitting Hairs" Ability { id: "2BB3", source: "Shadow Of The Sage" } window 2600,5 +2608.0 "Equal Of Heaven" Ability { id: "2BB4", source: "Qitian Dasheng" } +2610.0 "Five-Fingered Punishment?" Ability { id: "2BB0", source: "Shadow Of The Sage" } jump 2451.1 +2610.0 "The Long End?" Ability { id: "2BAD", source: "Shadow Of The Sage" } jump 2424.0 +2612.0 "Both Ends?" Ability { id: "2BA[EF]", source: "Shadow Of The Sage" } jump 2396.0 diff --git a/ui/raidboss/data/04-sb/dungeon/temple_of_the_fist.txt b/ui/raidboss/data/04-sb/dungeon/temple_of_the_fist.txt index 3fdb937a00..7a9b958343 100644 --- a/ui/raidboss/data/04-sb/dungeon/temple_of_the_fist.txt +++ b/ui/raidboss/data/04-sb/dungeon/temple_of_the_fist.txt @@ -5,21 +5,21 @@ hideall "--sync--" # -ii 1FD2 1FD8 # Tourmaline Pond will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:788:/ -6.4 "Pounce" sync / 1[56]:[^:]*:Coeurl Sruti:1FD1:/ window 7,7 -17.8 "Radial Blaster" sync / 1[56]:[^:]*:Coeurl Sruti:1FD3:/ -22.0 "Pounce" sync / 1[56]:[^:]*:Coeurl Sruti:1FD1:/ - -38.5 "--Smriti Appears--" sync / 03:........:Coeurl Smriti:/ window 10,10 -46.5 "Wide Blaster" sync / 1[56]:[^:]*:Coeurl Smriti:1FD4:/ window 15,15 -46.5 "Radial Blaster" sync / 1[56]:[^:]*:Coeurl Sruti:1FD3:/ -52.6 "Pounce x2" sync / 1[56]:[^:]*:Coeurl Smriti:1FD1:/ -60.7 "Pounce x2" sync / 1[56]:[^:]*:Coeurl Smriti:1FD1:/ - -72.3 "Wide Blaster" sync / 1[56]:[^:]*:Coeurl Smriti:1FD4:/ window 15,15 -72.3 "Radial Blaster" sync / 1[56]:[^:]*:Coeurl Sruti:1FD3:/ -78.4 "Pounce x2" sync / 1[56]:[^:]*:Coeurl Smriti:1FD1:/ -86.5 "Pounce x2" sync / 1[56]:[^:]*:Coeurl Smriti:1FD1:/ jump 60.7 +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "788" } +6.4 "Pounce" Ability { id: "1FD1", source: "Coeurl Sruti" } window 7,7 +17.8 "Radial Blaster" Ability { id: "1FD3", source: "Coeurl Sruti" } +22.0 "Pounce" Ability { id: "1FD1", source: "Coeurl Sruti" } + +38.5 "--Smriti Appears--" AddedCombatant { name: "Coeurl Smriti" } window 10,10 +46.5 "Wide Blaster" Ability { id: "1FD4", source: "Coeurl Smriti" } window 15,15 +46.5 "Radial Blaster" Ability { id: "1FD3", source: "Coeurl Sruti" } +52.6 "Pounce x2" Ability { id: "1FD1", source: "Coeurl Smriti" } +60.7 "Pounce x2" Ability { id: "1FD1", source: "Coeurl Smriti" } + +72.3 "Wide Blaster" Ability { id: "1FD4", source: "Coeurl Smriti" } window 15,15 +72.3 "Radial Blaster" Ability { id: "1FD3", source: "Coeurl Sruti" } +78.4 "Pounce x2" Ability { id: "1FD1", source: "Coeurl Smriti" } +86.5 "Pounce x2" Ability { id: "1FD1", source: "Coeurl Smriti" } jump 60.7 98.1 "Wide Blaster" 98.1 "Radial Blaster" @@ -29,19 +29,19 @@ hideall "--sync--" 123.9 "Radial Blaster" # Phase change after one dies -150.0 "Basic Instinct" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD5:/ window 150,10 +150.0 "Basic Instinct" Ability { id: "1FD5", source: ["Coeurl Sruti", "Coeurl Smriti"] } window 150,10 -156.2 "Electric Burst" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD6:/ -160.3 "Pounce" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD1:/ -167.8 "Heat Lightning" sync / 1[56]:[^:]*:Coeurl Sruti:1FD7:/ -175.2 "Radial/Wide Blaster" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD[34]:/ -180.4 "Pounce" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD1:/ +156.2 "Electric Burst" Ability { id: "1FD6", source: ["Coeurl Sruti", "Coeurl Smriti"] } +160.3 "Pounce" Ability { id: "1FD1", source: ["Coeurl Sruti", "Coeurl Smriti"] } +167.8 "Heat Lightning" Ability { id: "1FD7", source: "Coeurl Sruti" } +175.2 "Radial/Wide Blaster" Ability { id: "1FD[34]", source: ["Coeurl Sruti", "Coeurl Smriti"] } +180.4 "Pounce" Ability { id: "1FD1", source: ["Coeurl Sruti", "Coeurl Smriti"] } -191.6 "Electric Burst" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD6:/ window 20,20 -195.7 "Pounce" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD1:/ -203.2 "Heat Lightning" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD7:/ -210.6 "Radial/Wide Blaster" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD[34]:/ -215.8 "Pounce" sync / 1[56]:[^:]*:(Coeurl Sruti|Coeurl Smriti):1FD1:/ jump 180.4 +191.6 "Electric Burst" Ability { id: "1FD6", source: ["Coeurl Sruti", "Coeurl Smriti"] } window 20,20 +195.7 "Pounce" Ability { id: "1FD1", source: ["Coeurl Sruti", "Coeurl Smriti"] } +203.2 "Heat Lightning" Ability { id: "1FD7", source: ["Coeurl Sruti", "Coeurl Smriti"] } +210.6 "Radial/Wide Blaster" Ability { id: "1FD[34]", source: ["Coeurl Sruti", "Coeurl Smriti"] } +215.8 "Pounce" Ability { id: "1FD1", source: ["Coeurl Sruti", "Coeurl Smriti"] } jump 180.4 227.0 "Electric Burst" 231.1 "Pounce" @@ -53,33 +53,33 @@ hideall "--sync--" # Arbuda # Harmony will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:789:/ window 1000,10 -1006.5 "Cardinal Shift" sync / 1[56]:[^:]*:Arbuda:1FDA:/ window 7,7 -1014.6 "Fourfold Shear" sync / 1[56]:[^:]*:Arbuda:1FD9:/ -1022.6 "Front/Back?Sides?" sync / 1[56]:[^:]*:Arbuda:1FD[BC]:/ -1026.7 "Cardinal Shift" sync / 1[56]:[^:]*:Arbuda:1FDA:/ -1033.8 "Killer Instinct" sync / 1[56]:[^:]*:Arbuda:1FDE:/ -1046.8 "Front/Back?Sides?" sync / 1[56]:[^:]*:Arbuda:1FD[BC]:/ -1055.0 "Fourfold Shear" sync / 1[56]:[^:]*:Arbuda:1FD9:/ -1064.9 "Hellseal" sync / 1[56]:[^:]*:Arbuda:1FE1:/ -1071.5 "Front/Back?Sides?" sync / 1[56]:[^:]*:Arbuda:1FD[BC]:/ -1075.6 "Cardinal Shift" sync / 1[56]:[^:]*:Arbuda:1FDA:/ -1079.7 "Cardinal Shift" sync / 1[56]:[^:]*:Arbuda:1FDA:/ -1088.9 "Tapas" sync / 1[56]:[^:]*:Arbuda:1FE3:/ - -1094.9 "Front/Back?Sides?" sync / 1[56]:[^:]*:Arbuda:1FD[BC]:/ -1099.0 "Cardinal Shift" sync / 1[56]:[^:]*:Arbuda:1FDA:/ -1107.2 "Fourfold Shear" sync / 1[56]:[^:]*:Arbuda:1FD9:/ -1115.2 "Front/Back?Sides?" sync / 1[56]:[^:]*:Arbuda:1FD[BC]:/ -1119.3 "Cardinal Shift" sync / 1[56]:[^:]*:Arbuda:1FDA:/ -1126.4 "Killer Instinct" sync / 1[56]:[^:]*:Arbuda:1FDE:/ -1139.4 "Front/Back?Sides?" sync / 1[56]:[^:]*:Arbuda:1FD[BC]:/ -1147.7 "Fourfold Shear" sync / 1[56]:[^:]*:Arbuda:1FD9:/ -1157.4 "Hellseal" sync / 1[56]:[^:]*:Arbuda:1FE1:/ -1163.5 "Front/Back?Sides?" sync / 1[56]:[^:]*:Arbuda:1FD[BC]:/ -1167.6 "Cardinal Shift" sync / 1[56]:[^:]*:Arbuda:1FDA:/ -1171.7 "Cardinal Shift" sync / 1[56]:[^:]*:Arbuda:1FDA:/ -1180.9 "Tapas" sync / 1[56]:[^:]*:Arbuda:1FE3:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "789" } window 1000,10 +1006.5 "Cardinal Shift" Ability { id: "1FDA", source: "Arbuda" } window 7,7 +1014.6 "Fourfold Shear" Ability { id: "1FD9", source: "Arbuda" } +1022.6 "Front/Back?Sides?" Ability { id: "1FD[BC]", source: "Arbuda" } +1026.7 "Cardinal Shift" Ability { id: "1FDA", source: "Arbuda" } +1033.8 "Killer Instinct" Ability { id: "1FDE", source: "Arbuda" } +1046.8 "Front/Back?Sides?" Ability { id: "1FD[BC]", source: "Arbuda" } +1055.0 "Fourfold Shear" Ability { id: "1FD9", source: "Arbuda" } +1064.9 "Hellseal" Ability { id: "1FE1", source: "Arbuda" } +1071.5 "Front/Back?Sides?" Ability { id: "1FD[BC]", source: "Arbuda" } +1075.6 "Cardinal Shift" Ability { id: "1FDA", source: "Arbuda" } +1079.7 "Cardinal Shift" Ability { id: "1FDA", source: "Arbuda" } +1088.9 "Tapas" Ability { id: "1FE3", source: "Arbuda" } + +1094.9 "Front/Back?Sides?" Ability { id: "1FD[BC]", source: "Arbuda" } +1099.0 "Cardinal Shift" Ability { id: "1FDA", source: "Arbuda" } +1107.2 "Fourfold Shear" Ability { id: "1FD9", source: "Arbuda" } +1115.2 "Front/Back?Sides?" Ability { id: "1FD[BC]", source: "Arbuda" } +1119.3 "Cardinal Shift" Ability { id: "1FDA", source: "Arbuda" } +1126.4 "Killer Instinct" Ability { id: "1FDE", source: "Arbuda" } +1139.4 "Front/Back?Sides?" Ability { id: "1FD[BC]", source: "Arbuda" } +1147.7 "Fourfold Shear" Ability { id: "1FD9", source: "Arbuda" } +1157.4 "Hellseal" Ability { id: "1FE1", source: "Arbuda" } +1163.5 "Front/Back?Sides?" Ability { id: "1FD[BC]", source: "Arbuda" } +1167.6 "Cardinal Shift" Ability { id: "1FDA", source: "Arbuda" } +1171.7 "Cardinal Shift" Ability { id: "1FDA", source: "Arbuda" } +1180.9 "Tapas" Ability { id: "1FE3", source: "Arbuda" } 1186.9 "Front/Back?Sides?" 1191.0 "Cardinal Shift" @@ -92,42 +92,42 @@ hideall "--sync--" # -ii 1FF0 1FE8 1FEC # Guidance will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:78A:/ window 2000,10 -2010.9 "Spirit Wave" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE7:/ -2018.6 "Hurricane Kick" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE5:/ -2026.7 "Touch of Slaughter" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE6:/ -2030.9 "Coeurl Whisper" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE9:/ -2042.0 "Silent Roar" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEB:/ -2062.0 "Rhalgr's Piece" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FED:/ -2069.1 "The Rose Of Destruction" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEE:/ window 20,20 -2073.7 "Hurricane Kick" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE5:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "78A" } window 2000,10 +2010.9 "Spirit Wave" Ability { id: "1FE7", source: "Ivon Coeurlfist" } +2018.6 "Hurricane Kick" Ability { id: "1FE5", source: "Ivon Coeurlfist" } +2026.7 "Touch of Slaughter" Ability { id: "1FE6", source: "Ivon Coeurlfist" } +2030.9 "Coeurl Whisper" Ability { id: "1FE9", source: "Ivon Coeurlfist" } +2042.0 "Silent Roar" Ability { id: "1FEB", source: "Ivon Coeurlfist" } +2062.0 "Rhalgr's Piece" Ability { id: "1FED", source: "Ivon Coeurlfist" } +2069.1 "The Rose Of Destruction" Ability { id: "1FEE", source: "Ivon Coeurlfist" } window 20,20 +2073.7 "Hurricane Kick" Ability { id: "1FE5", source: "Ivon Coeurlfist" } # Intermission happens here naturally, or at HP < 50% -2086.1 "--sync--" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEC:/ window 80,5 -2106.2 "Furious Fists" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEF:/ -2114.6 "Impact" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FF1:/ window 120,20 - -2125.3 "Spirit Wave" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE7:/ -2127.5 "Coeurl Whisper" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE9:/ -2137.4 "Rhalgr's Piece" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FED:/ -2142.8 "Silent Roar" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEB:/ -2156.9 "Touch of Slaughter" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE6:/ window 30,30 -2161.6 "Hurricane Kick" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE5:/ -2175.8 "Spirit Wave" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE7:/ -2178.0 "Coeurl Whisper" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE9:/ -2187.2 "The Rose Of Destruction" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEE:/ -2192.3 "Silent Roar" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEB:/ - -2210.5 "Spirit Wave" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE7:/ window 30,30 -2212.7 "Coeurl Whisper" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE9:/ -2222.6 "Rhalgr's Piece" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FED:/ -2228.0 "Silent Roar" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEB:/ -2242.1 "Touch of Slaughter" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE6:/ window 30,30 -2246.8 "Hurricane Kick" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE5:/ -2261.0 "Spirit Wave" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE7:/ -2263.2 "Coeurl Whisper" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FE9:/ -2272.4 "The Rose Of Destruction" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEE:/ -2277.5 "Silent Roar" sync / 1[56]:[^:]*:Ivon Coeurlfist:1FEB:/ jump 2192.3 +2086.1 "--sync--" Ability { id: "1FEC", source: "Ivon Coeurlfist" } window 80,5 +2106.2 "Furious Fists" Ability { id: "1FEF", source: "Ivon Coeurlfist" } +2114.6 "Impact" Ability { id: "1FF1", source: "Ivon Coeurlfist" } window 120,20 + +2125.3 "Spirit Wave" Ability { id: "1FE7", source: "Ivon Coeurlfist" } +2127.5 "Coeurl Whisper" Ability { id: "1FE9", source: "Ivon Coeurlfist" } +2137.4 "Rhalgr's Piece" Ability { id: "1FED", source: "Ivon Coeurlfist" } +2142.8 "Silent Roar" Ability { id: "1FEB", source: "Ivon Coeurlfist" } +2156.9 "Touch of Slaughter" Ability { id: "1FE6", source: "Ivon Coeurlfist" } window 30,30 +2161.6 "Hurricane Kick" Ability { id: "1FE5", source: "Ivon Coeurlfist" } +2175.8 "Spirit Wave" Ability { id: "1FE7", source: "Ivon Coeurlfist" } +2178.0 "Coeurl Whisper" Ability { id: "1FE9", source: "Ivon Coeurlfist" } +2187.2 "The Rose Of Destruction" Ability { id: "1FEE", source: "Ivon Coeurlfist" } +2192.3 "Silent Roar" Ability { id: "1FEB", source: "Ivon Coeurlfist" } + +2210.5 "Spirit Wave" Ability { id: "1FE7", source: "Ivon Coeurlfist" } window 30,30 +2212.7 "Coeurl Whisper" Ability { id: "1FE9", source: "Ivon Coeurlfist" } +2222.6 "Rhalgr's Piece" Ability { id: "1FED", source: "Ivon Coeurlfist" } +2228.0 "Silent Roar" Ability { id: "1FEB", source: "Ivon Coeurlfist" } +2242.1 "Touch of Slaughter" Ability { id: "1FE6", source: "Ivon Coeurlfist" } window 30,30 +2246.8 "Hurricane Kick" Ability { id: "1FE5", source: "Ivon Coeurlfist" } +2261.0 "Spirit Wave" Ability { id: "1FE7", source: "Ivon Coeurlfist" } +2263.2 "Coeurl Whisper" Ability { id: "1FE9", source: "Ivon Coeurlfist" } +2272.4 "The Rose Of Destruction" Ability { id: "1FEE", source: "Ivon Coeurlfist" } +2277.5 "Silent Roar" Ability { id: "1FEB", source: "Ivon Coeurlfist" } jump 2192.3 2295.7 "Spirit Wave" 2297.9 "Coeurl Whisper" diff --git a/ui/raidboss/data/04-sb/dungeon/the_burn.txt b/ui/raidboss/data/04-sb/dungeon/the_burn.txt index 687f9c3372..6b4e6ed111 100644 --- a/ui/raidboss/data/04-sb/dungeon/the_burn.txt +++ b/ui/raidboss/data/04-sb/dungeon/the_burn.txt @@ -10,24 +10,24 @@ hideall "--sync--" # -ii 3198 3199 # The Scorpion's Den will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:9B7:/ window 0,1 -10.4 "Crystal Needle" sync / 1[56]:[^:]*:Hedetet:3193:/ -25.8 "Hailfire" sync / 1[56]:[^:]*:Hedetet:3194:/ window 25,30 -29.8 "Resonant Frequency" sync / 1[56]:[^:]*:Dim Crystal:3198:/ -39.8 "Shardstrike" sync / 1[56]:[^:]*:Hedetet:3195:/ -53.9 "Shardfall" sync / 1[56]:[^:]*:Hedetet:3191:/ -62.0 "Dissonance" sync / 1[56]:[^:]*:Hedetet:3192:/ window 30,30 -69.1 "Crystalline Fracture" sync / 1[56]:[^:]*:Dim Crystal:3197:/ - -74.2 "Crystal Needle" sync / 1[56]:[^:]*:Hedetet:3193:/ window 20,20 -83.4 "--jump--" sync / 1[56]:[^:]*:Hedetet:3196:/ -92.8 "Hailfire" sync / 1[56]:[^:]*:Hedetet:3194:/ window 30,30 -103.9 "Shardstrike" sync / 1[56]:[^:]*:Hedetet:3195:/ -118.1 "Shardfall" sync / 1[56]:[^:]*:Hedetet:3191:/ -126.1 "Dissonance" sync / 1[56]:[^:]*:Hedetet:3192:/ window 30,30 -133.2 "Crystalline Fracture" sync / 1[56]:[^:]*:Dim Crystal:3197:/ - -138.3 "Crystal Needle" sync / 1[56]:[^:]*:Hedetet:3193:/ window 20,20 jump 74.2 +0 "Start" SystemLogMessage { id: "7DC", param1: "9B7" } window 0,1 +10.4 "Crystal Needle" Ability { id: "3193", source: "Hedetet" } +25.8 "Hailfire" Ability { id: "3194", source: "Hedetet" } window 25,30 +29.8 "Resonant Frequency" Ability { id: "3198", source: "Dim Crystal" } +39.8 "Shardstrike" Ability { id: "3195", source: "Hedetet" } +53.9 "Shardfall" Ability { id: "3191", source: "Hedetet" } +62.0 "Dissonance" Ability { id: "3192", source: "Hedetet" } window 30,30 +69.1 "Crystalline Fracture" Ability { id: "3197", source: "Dim Crystal" } + +74.2 "Crystal Needle" Ability { id: "3193", source: "Hedetet" } window 20,20 +83.4 "--jump--" Ability { id: "3196", source: "Hedetet" } +92.8 "Hailfire" Ability { id: "3194", source: "Hedetet" } window 30,30 +103.9 "Shardstrike" Ability { id: "3195", source: "Hedetet" } +118.1 "Shardfall" Ability { id: "3191", source: "Hedetet" } +126.1 "Dissonance" Ability { id: "3192", source: "Hedetet" } window 30,30 +133.2 "Crystalline Fracture" Ability { id: "3197", source: "Dim Crystal" } + +138.3 "Crystal Needle" Ability { id: "3193", source: "Hedetet" } window 20,20 jump 74.2 147.5 "--jump--" 156.9 "Hailfire" 168.0 "Shardstrike" @@ -40,24 +40,24 @@ hideall "--sync--" # -ii 2D76 2D77 34D5 34D6 34D9 # The Gamma Segregate will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:9BA:/ window 1000,5 -1012.7 "Aetherochemical Flame" sync / 1[56]:[^:]*:Defective Drone:2D73:/ -1026.7 "Aetherochemical Residue" sync / 1[56]:[^:]*:Defective Drone:2D74:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "9BA" } window 1000,5 +1012.7 "Aetherochemical Flame" Ability { id: "2D73", source: "Defective Drone" } +1026.7 "Aetherochemical Residue" Ability { id: "2D74", source: "Defective Drone" } 1030.9 "--untargetable--" -1039.1 "Full Throttle" sync / 1[56]:[^:]*:Defective Drone:2D75:/ window 39,30 +1039.1 "Full Throttle" Ability { id: "2D75", source: "Defective Drone" } window 39,30 1042.2 "--targetable--" -1059.3 "Aetherochemical Coil" sync / 1[56]:[^:]*:Defective Drone:2D72:/ window 30,15 -1074.5 "Adit Driver" # sync / 1[56]:[^:]*:Rock Biter:2D78:/ -1080.4 "Aetherochemical Flame" sync / 1[56]:[^:]*:Defective Drone:2D73:/ -1094.5 "Aetherochemical Coil" sync / 1[56]:[^:]*:Defective Drone:2D72:/ -1111.7 "Aetherochemical Residue" sync / 1[56]:[^:]*:Defective Drone:2D74:/ +1059.3 "Aetherochemical Coil" Ability { id: "2D72", source: "Defective Drone" } window 30,15 +1074.5 "Adit Driver" # Ability { id: "2D78", source: "Rock Biter" } +1080.4 "Aetherochemical Flame" Ability { id: "2D73", source: "Defective Drone" } +1094.5 "Aetherochemical Coil" Ability { id: "2D72", source: "Defective Drone" } +1111.7 "Aetherochemical Residue" Ability { id: "2D74", source: "Defective Drone" } 1115.6 "--untargetable--" -1123.8 "Full Throttle" sync / 1[56]:[^:]*:Defective Drone:2D75:/ window 30,30 -1123.8 "Adit Driver" # sync / 1[56]:[^:]*:Rock Biter:2D78:/ +1123.8 "Full Throttle" Ability { id: "2D75", source: "Defective Drone" } window 30,30 +1123.8 "Adit Driver" # Ability { id: "2D78", source: "Rock Biter" } 1126.9 "--targetable--" -1144.0 "Aetherochemical Coil" sync / 1[56]:[^:]*:Defective Drone:2D72:/ window 30,15 jump 1059.3 +1144.0 "Aetherochemical Coil" Ability { id: "2D72", source: "Defective Drone" } window 30,15 jump 1059.3 1159.2 "Adit Driver" 1165.1 "Aetherochemical Flame" 1179.2 "Aetherochemical Coil" @@ -69,43 +69,43 @@ hideall "--sync--" # -ii 3142 3145 3146 3149 # The Aspersory will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:9BD:/ window 2000,5 -2013.2 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2021.4 "Frost Breath" sync / 1[56]:[^:]*:Mist Dragon:314C:/ -2030.7 "Fog Plume" sync / 1[56]:[^:]*:Mist Dragon:3144:/ -2050.9 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "9BD" } window 2000,5 +2013.2 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2021.4 "Frost Breath" Ability { id: "314C", source: "Mist Dragon" } +2030.7 "Fog Plume" Ability { id: "3144", source: "Mist Dragon" } +2050.9 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } -2061.9 "Vaporize" sync / 1[56]:[^:]*:Mist Dragon:3140:/ window 62,30 +2061.9 "Vaporize" Ability { id: "3140", source: "Mist Dragon" } window 62,30 2064.1 "--untargetable--" 2073.1 "--targetable--" -2093.1 "Cold Fog" sync / 1[56]:[^:]*:Mist Dragon:3141:/ -2104.4 "Chilling Aspiration" sync / 1[56]:[^:]*:Mist Dragon:314D:/ -2111.6 "Frost Breath" sync / 1[56]:[^:]*:Mist Dragon:314C:/ -2119.7 "Fog Plume" sync / 1[56]:[^:]*:Mist Dragon:3144:/ -2137.9 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2152.2 "Deep Fog" sync / 1[56]:[^:]*:Mist Dragon:3147:/ window 150,30 +2093.1 "Cold Fog" Ability { id: "3141", source: "Mist Dragon" } +2104.4 "Chilling Aspiration" Ability { id: "314D", source: "Mist Dragon" } +2111.6 "Frost Breath" Ability { id: "314C", source: "Mist Dragon" } +2119.7 "Fog Plume" Ability { id: "3144", source: "Mist Dragon" } +2137.9 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2152.2 "Deep Fog" Ability { id: "3147", source: "Mist Dragon" } window 150,30 2157.3 "--untargetable--" -2167.4 "Cauterize" sync / 1[56]:[^:]*:Mist Dragon:3148:/ -2178.0 "Cauterize" sync / 1[56]:[^:]*:Mist Dragon:3148:/ -2187.0 "--targetable--" sync / 1[56]:[^:]*:Mist Dragon:314A:/ -2196.2 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2205.4 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2214.6 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2224.8 "Chilling Aspiration" sync / 1[56]:[^:]*:Mist Dragon:314D:/ window 30,30 -2232.0 "Frost Breath" sync / 1[56]:[^:]*:Mist Dragon:314C:/ -2240.1 "Fog Plume" sync / 1[56]:[^:]*:Mist Dragon:3144:/ -2254.3 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2263.5 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2273.7 "Deep Fog" sync / 1[56]:[^:]*:Mist Dragon:3147:/ window 30,30 +2167.4 "Cauterize" Ability { id: "3148", source: "Mist Dragon" } +2178.0 "Cauterize" Ability { id: "3148", source: "Mist Dragon" } +2187.0 "--targetable--" Ability { id: "314A", source: "Mist Dragon" } +2196.2 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2205.4 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2214.6 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2224.8 "Chilling Aspiration" Ability { id: "314D", source: "Mist Dragon" } window 30,30 +2232.0 "Frost Breath" Ability { id: "314C", source: "Mist Dragon" } +2240.1 "Fog Plume" Ability { id: "3144", source: "Mist Dragon" } +2254.3 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2263.5 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2273.7 "Deep Fog" Ability { id: "3147", source: "Mist Dragon" } window 30,30 2278.8 "--untargetable--" -2288.9 "Cauterize" sync / 1[56]:[^:]*:Mist Dragon:3148:/ -2299.5 "Cauterize" sync / 1[56]:[^:]*:Mist Dragon:3148:/ -2308.5 "--targetable--" sync / 1[56]:[^:]*:Mist Dragon:314A:/ -2317.7 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ +2288.9 "Cauterize" Ability { id: "3148", source: "Mist Dragon" } +2299.5 "Cauterize" Ability { id: "3148", source: "Mist Dragon" } +2308.5 "--targetable--" Ability { id: "314A", source: "Mist Dragon" } +2317.7 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } -2329.8 "Vaporize" sync / 1[56]:[^:]*:Mist Dragon:3140:/ window 30,30 jump 2061.9 +2329.8 "Vaporize" Ability { id: "3140", source: "Mist Dragon" } window 30,30 jump 2061.9 2332.0 "--untargetable--" 2341.0 "--targetable--" 2361.0 "Cold Fog" diff --git a/ui/raidboss/data/04-sb/dungeon/the_burn64.txt b/ui/raidboss/data/04-sb/dungeon/the_burn64.txt index 793806f641..bacd96f677 100644 --- a/ui/raidboss/data/04-sb/dungeon/the_burn64.txt +++ b/ui/raidboss/data/04-sb/dungeon/the_burn64.txt @@ -10,24 +10,24 @@ hideall "--sync--" # -ii 3198 3199 # The Scorpion's Den will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:9B7:/ window 0,1 -10.4 "Crystal Needle" sync / 1[56]:[^:]*:Hedetet:3193:/ -25.8 "Hailfire" sync / 1[56]:[^:]*:Hedetet:3194:/ window 25,30 -29.8 "Resonant Frequency" sync / 1[56]:[^:]*:Dim Crystal:3198:/ -39.8 "Shardstrike" sync / 1[56]:[^:]*:Hedetet:3195:/ -53.9 "Shardfall" sync / 1[56]:[^:]*:Hedetet:3191:/ -62.0 "Dissonance" sync / 1[56]:[^:]*:Hedetet:3192:/ window 30,30 -69.1 "Crystalline Fracture" sync / 1[56]:[^:]*:Dim Crystal:3197:/ - -74.2 "Crystal Needle" sync / 1[56]:[^:]*:Hedetet:3193:/ window 20,20 -83.4 "--jump--" sync / 1[56]:[^:]*:Hedetet:3196:/ -92.8 "Hailfire" sync / 1[56]:[^:]*:Hedetet:3194:/ window 30,30 -103.9 "Shardstrike" sync / 1[56]:[^:]*:Hedetet:3195:/ -118.1 "Shardfall" sync / 1[56]:[^:]*:Hedetet:3191:/ -126.1 "Dissonance" sync / 1[56]:[^:]*:Hedetet:3192:/ window 30,30 -133.2 "Crystalline Fracture" sync / 1[56]:[^:]*:Dim Crystal:3197:/ - -138.3 "Crystal Needle" sync / 1[56]:[^:]*:Hedetet:3193:/ window 20,20 jump 74.2 +0 "Start" SystemLogMessage { id: "7DC", param1: "9B7" } window 0,1 +10.4 "Crystal Needle" Ability { id: "3193", source: "Hedetet" } +25.8 "Hailfire" Ability { id: "3194", source: "Hedetet" } window 25,30 +29.8 "Resonant Frequency" Ability { id: "3198", source: "Dim Crystal" } +39.8 "Shardstrike" Ability { id: "3195", source: "Hedetet" } +53.9 "Shardfall" Ability { id: "3191", source: "Hedetet" } +62.0 "Dissonance" Ability { id: "3192", source: "Hedetet" } window 30,30 +69.1 "Crystalline Fracture" Ability { id: "3197", source: "Dim Crystal" } + +74.2 "Crystal Needle" Ability { id: "3193", source: "Hedetet" } window 20,20 +83.4 "--jump--" Ability { id: "3196", source: "Hedetet" } +92.8 "Hailfire" Ability { id: "3194", source: "Hedetet" } window 30,30 +103.9 "Shardstrike" Ability { id: "3195", source: "Hedetet" } +118.1 "Shardfall" Ability { id: "3191", source: "Hedetet" } +126.1 "Dissonance" Ability { id: "3192", source: "Hedetet" } window 30,30 +133.2 "Crystalline Fracture" Ability { id: "3197", source: "Dim Crystal" } + +138.3 "Crystal Needle" Ability { id: "3193", source: "Hedetet" } window 20,20 jump 74.2 147.5 "--jump--" 156.9 "Hailfire" 168.0 "Shardstrike" @@ -40,24 +40,24 @@ hideall "--sync--" # -ii 2D76 2D77 34D5 34D6 34D9 # The Gamma Segregate will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:9BA:/ window 1000,5 -1012.7 "Aetherochemical Flame" sync / 1[56]:[^:]*:Defective Drone:2D73:/ -1026.7 "Aetherochemical Residue" sync / 1[56]:[^:]*:Defective Drone:2D74:/ +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "9BA" } window 1000,5 +1012.7 "Aetherochemical Flame" Ability { id: "2D73", source: "Defective Drone" } +1026.7 "Aetherochemical Residue" Ability { id: "2D74", source: "Defective Drone" } 1030.9 "--untargetable--" -1039.1 "Full Throttle" sync / 1[56]:[^:]*:Defective Drone:2D75:/ window 39,30 +1039.1 "Full Throttle" Ability { id: "2D75", source: "Defective Drone" } window 39,30 1042.2 "--targetable--" -1059.3 "Aetherochemical Coil" sync / 1[56]:[^:]*:Defective Drone:2D72:/ window 30,15 -1074.5 "Adit Driver" # sync / 1[56]:[^:]*:Rock Biter:2D78:/ -1080.4 "Aetherochemical Flame" sync / 1[56]:[^:]*:Defective Drone:2D73:/ -1094.5 "Aetherochemical Coil" sync / 1[56]:[^:]*:Defective Drone:2D72:/ -1111.7 "Aetherochemical Residue" sync / 1[56]:[^:]*:Defective Drone:2D74:/ +1059.3 "Aetherochemical Coil" Ability { id: "2D72", source: "Defective Drone" } window 30,15 +1074.5 "Adit Driver" # Ability { id: "2D78", source: "Rock Biter" } +1080.4 "Aetherochemical Flame" Ability { id: "2D73", source: "Defective Drone" } +1094.5 "Aetherochemical Coil" Ability { id: "2D72", source: "Defective Drone" } +1111.7 "Aetherochemical Residue" Ability { id: "2D74", source: "Defective Drone" } 1115.6 "--untargetable--" -1123.8 "Full Throttle" sync / 1[56]:[^:]*:Defective Drone:2D75:/ window 30,30 -1123.8 "Adit Driver" # sync / 1[56]:[^:]*:Rock Biter:2D78:/ +1123.8 "Full Throttle" Ability { id: "2D75", source: "Defective Drone" } window 30,30 +1123.8 "Adit Driver" # Ability { id: "2D78", source: "Rock Biter" } 1126.9 "--targetable--" -1144.0 "Aetherochemical Coil" sync / 1[56]:[^:]*:Defective Drone:2D72:/ window 30,15 jump 1059.3 +1144.0 "Aetherochemical Coil" Ability { id: "2D72", source: "Defective Drone" } window 30,15 jump 1059.3 1159.2 "Adit Driver" 1165.1 "Aetherochemical Flame" 1179.2 "Aetherochemical Coil" @@ -69,43 +69,43 @@ hideall "--sync--" # -ii 3142 3145 3146 3149 # The Aspersory will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:9BD:/ window 2000,5 -2013.2 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2021.4 "Frost Breath" sync / 1[56]:[^:]*:Mist Dragon:314C:/ -2030.7 "Fog Plume" sync / 1[56]:[^:]*:Mist Dragon:3144:/ -2050.9 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "9BD" } window 2000,5 +2013.2 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2021.4 "Frost Breath" Ability { id: "314C", source: "Mist Dragon" } +2030.7 "Fog Plume" Ability { id: "3144", source: "Mist Dragon" } +2050.9 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } -2061.9 "Vaporize" sync / 1[56]:[^:]*:Mist Dragon:3140:/ window 62,30 +2061.9 "Vaporize" Ability { id: "3140", source: "Mist Dragon" } window 62,30 2064.1 "--untargetable--" 2073.1 "--targetable--" -2093.1 "Cold Fog" sync / 1[56]:[^:]*:Mist Dragon:3141:/ -2104.4 "Chilling Aspiration" sync / 1[56]:[^:]*:Mist Dragon:314D:/ -2111.6 "Frost Breath" sync / 1[56]:[^:]*:Mist Dragon:314C:/ -2119.7 "Fog Plume" sync / 1[56]:[^:]*:Mist Dragon:3144:/ -2137.9 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2152.2 "Deep Fog" sync / 1[56]:[^:]*:Mist Dragon:3147:/ window 150,30 +2093.1 "Cold Fog" Ability { id: "3141", source: "Mist Dragon" } +2104.4 "Chilling Aspiration" Ability { id: "314D", source: "Mist Dragon" } +2111.6 "Frost Breath" Ability { id: "314C", source: "Mist Dragon" } +2119.7 "Fog Plume" Ability { id: "3144", source: "Mist Dragon" } +2137.9 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2152.2 "Deep Fog" Ability { id: "3147", source: "Mist Dragon" } window 150,30 2157.3 "--untargetable--" -2167.4 "Cauterize" sync / 1[56]:[^:]*:Mist Dragon:3148:/ -2178.0 "Cauterize" sync / 1[56]:[^:]*:Mist Dragon:3148:/ -2187.0 "--targetable--" sync / 1[56]:[^:]*:Mist Dragon:314A:/ -2196.2 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2205.4 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2214.6 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2224.8 "Chilling Aspiration" sync / 1[56]:[^:]*:Mist Dragon:314D:/ window 30,30 -2232.0 "Frost Breath" sync / 1[56]:[^:]*:Mist Dragon:314C:/ -2240.1 "Fog Plume" sync / 1[56]:[^:]*:Mist Dragon:3144:/ -2254.3 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2263.5 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ -2273.7 "Deep Fog" sync / 1[56]:[^:]*:Mist Dragon:3147:/ window 30,30 +2167.4 "Cauterize" Ability { id: "3148", source: "Mist Dragon" } +2178.0 "Cauterize" Ability { id: "3148", source: "Mist Dragon" } +2187.0 "--targetable--" Ability { id: "314A", source: "Mist Dragon" } +2196.2 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2205.4 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2214.6 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2224.8 "Chilling Aspiration" Ability { id: "314D", source: "Mist Dragon" } window 30,30 +2232.0 "Frost Breath" Ability { id: "314C", source: "Mist Dragon" } +2240.1 "Fog Plume" Ability { id: "3144", source: "Mist Dragon" } +2254.3 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2263.5 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } +2273.7 "Deep Fog" Ability { id: "3147", source: "Mist Dragon" } window 30,30 2278.8 "--untargetable--" -2288.9 "Cauterize" sync / 1[56]:[^:]*:Mist Dragon:3148:/ -2299.5 "Cauterize" sync / 1[56]:[^:]*:Mist Dragon:3148:/ -2308.5 "--targetable--" sync / 1[56]:[^:]*:Mist Dragon:314A:/ -2317.7 "Rime Wreath" sync / 1[56]:[^:]*:Mist Dragon:314B:/ +2288.9 "Cauterize" Ability { id: "3148", source: "Mist Dragon" } +2299.5 "Cauterize" Ability { id: "3148", source: "Mist Dragon" } +2308.5 "--targetable--" Ability { id: "314A", source: "Mist Dragon" } +2317.7 "Rime Wreath" Ability { id: "314B", source: "Mist Dragon" } -2329.8 "Vaporize" sync / 1[56]:[^:]*:Mist Dragon:3140:/ window 30,30 jump 2061.9 +2329.8 "Vaporize" Ability { id: "3140", source: "Mist Dragon" } window 30,30 jump 2061.9 2332.0 "--untargetable--" 2341.0 "--targetable--" 2361.0 "Cold Fog" diff --git a/ui/raidboss/data/04-sb/eureka/eureka_hydatos.txt b/ui/raidboss/data/04-sb/eureka/eureka_hydatos.txt index 977052431c..d598b461af 100644 --- a/ui/raidboss/data/04-sb/eureka/eureka_hydatos.txt +++ b/ui/raidboss/data/04-sb/eureka/eureka_hydatos.txt @@ -9,8 +9,8 @@ hideall "--sync--" # Trigger set contains 'resetWhenOutOfCombat: false' # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 -0.0 "--Reset--" sync / 04:........:Proto Ozma:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 +0.0 "--Reset--" RemovedCombatant { name: "Proto Ozma" } window 100000 jump 0 ##################### @@ -20,41 +20,41 @@ hideall "--sync--" # Note: This checks that Art's auto hits a target close enough for you to see. # You can see Owain's auto abilities, but the target is listed as empty. -1002.5 "--sync--" sync / 1[56]:[^:]*:Art:3956:[^:]*:[^:]*:[^:]+:/ window 1500,0 -1014.5 "Thricecull" sync / 1[56]:[^:]*:Art:3934:/ -1023.1 "Legendcarver" sync / 1[56]:[^:]*:Art:3928:/ -1030.7 "Legendspinner" sync / 1[56]:[^:]*:Art:3929:/ -1038.8 "Acallam Na Senorach" sync / 1[56]:[^:]*:Art:3935:/ -1047.5 "Mythcall" sync / 1[56]:[^:]*:Art:3927:/ -1058.1 "Carver/Spinner" sync / 1[56]:[^:]*:Art:392[89]:/ -1061.1 "Spear Copy" sync / 1[56]:[^:]*:Orlasrach:392[AB]:/ -1068.2 "Acallam Na Senorach" sync / 1[56]:[^:]*:Art:3935:/ -1075.3 "Thricecull" sync / 1[56]:[^:]*:Art:3934:/ -1081.7 "Mythcall" sync / 1[56]:[^:]*:Art:3927:/ -1092.3 "Carver/Spinner" sync / 1[56]:[^:]*:Art:392[89]:/ -1095.3 "Spear Copy" sync / 1[56]:[^:]*:Orlasrach:392B:/ -1102.4 "Legendary Geas" sync / 1[56]:[^:]*:Art:3932:/ -1109.2 "--sync--" sync / 1[56]:[^:]*:Art:3933:/ -1113.7 "Acallam Na Senorach" sync / 1[56]:[^:]*:Art:3935:/ +1002.5 "--sync--" Ability { id: "3956", source: "Art", target: "[^|]+" } window 1500,0 +1014.5 "Thricecull" Ability { id: "3934", source: "Art" } +1023.1 "Legendcarver" Ability { id: "3928", source: "Art" } +1030.7 "Legendspinner" Ability { id: "3929", source: "Art" } +1038.8 "Acallam Na Senorach" Ability { id: "3935", source: "Art" } +1047.5 "Mythcall" Ability { id: "3927", source: "Art" } +1058.1 "Carver/Spinner" Ability { id: "392[89]", source: "Art" } +1061.1 "Spear Copy" Ability { id: "392[AB]", source: "Orlasrach" } +1068.2 "Acallam Na Senorach" Ability { id: "3935", source: "Art" } +1075.3 "Thricecull" Ability { id: "3934", source: "Art" } +1081.7 "Mythcall" Ability { id: "3927", source: "Art" } +1092.3 "Carver/Spinner" Ability { id: "392[89]", source: "Art" } +1095.3 "Spear Copy" Ability { id: "392B", source: "Orlasrach" } +1102.4 "Legendary Geas" Ability { id: "3932", source: "Art" } +1109.2 "--sync--" Ability { id: "3933", source: "Art" } +1113.7 "Acallam Na Senorach" Ability { id: "3935", source: "Art" } 1116.7 "--untargetable--" -1123.3 "Orb x5" sync / 1[56]:[^:]*:Art:392C:/ duration 6 -1125.8 "Pitfall" sync / 1[56]:[^:]*:Art:392F:/ +1123.3 "Orb x5" Ability { id: "392C", source: "Art" } duration 6 +1125.8 "Pitfall" Ability { id: "392F", source: "Art" } 1126.8 "--targetable--" -1138.3 "Thricecull" sync / 1[56]:[^:]*:Art:3934:/ -1145.4 "Acallam Na Senorach" sync / 1[56]:[^:]*:Art:3935:/ -1155.1 "Mythcall" sync / 1[56]:[^:]*:Art:3927:/ +1138.3 "Thricecull" Ability { id: "3934", source: "Art" } +1145.4 "Acallam Na Senorach" Ability { id: "3935", source: "Art" } +1155.1 "Mythcall" Ability { id: "3927", source: "Art" } 1155.1 "(Legendary Geas)" -1165.6 "Carver/Spinner" sync / 1[56]:[^:]*:Art:392[89]:/ -1168.7 "Spear Copy" sync / 1[56]:[^:]*:Orlasrach:392[AB]:/ -1175.7 "Thricecull" sync / 1[56]:[^:]*:Art:3934:/ -1182.8 "Acallam Na Senorach" sync / 1[56]:[^:]*:Art:3935:/ -1189.2 "Mythcall" sync / 1[56]:[^:]*:Art:3927:/ -1197.8 "Piercing Dark" sync / 1[56]:[^:]*:Art:3930:/ duration 6.5 +1165.6 "Carver/Spinner" Ability { id: "392[89]", source: "Art" } +1168.7 "Spear Copy" Ability { id: "392[AB]", source: "Orlasrach" } +1175.7 "Thricecull" Ability { id: "3934", source: "Art" } +1182.8 "Acallam Na Senorach" Ability { id: "3935", source: "Art" } +1189.2 "Mythcall" Ability { id: "3927", source: "Art" } +1197.8 "Piercing Dark" Ability { id: "3930", source: "Art" } duration 6.5 # FIXME: is this one always spinner because piercing dark? -1203.9 "Carver/Spinner" sync / 1[56]:[^:]*:Art:392[89]:/ -1204.3 "--sync--" sync / 1[56]:[^:]*:Art:3931:/ -1206.9 "Spear Shade" sync / 1[56]:[^:]*:Orlasrach:392[AB]:/ -1218.0 "Legendary Geas" sync / 1[56]:[^:]*:Art:3932:/ +1203.9 "Carver/Spinner" Ability { id: "392[89]", source: "Art" } +1204.3 "--sync--" Ability { id: "3931", source: "Art" } +1206.9 "Spear Shade" Ability { id: "392[AB]", source: "Orlasrach" } +1218.0 "Legendary Geas" Ability { id: "3932", source: "Art" } # FIXME: spiritcall somewhere in here, and then a loop? @@ -63,48 +63,48 @@ hideall "--sync--" # EAST BRANCH / OWAIN # ####################### # -ic Orlasrach Art -ii 3957 3941 3939 393C 393D 3938 -p 3945:2016.0 -2002.5 "--sync--" sync / 1[56]:[^:]*:Owain:3957:[^:]*:[^:]*:[^:]+:/ window 2500,0 -2016.0 "Thricecull" sync / 1[56]:[^:]*:Owain:3945:/ -2028.1 "Acallam Na Senorach" sync / 1[56]:[^:]*:Owain:3946:/ #3:29 -2037.7 "Mythcall" sync / 1[56]:[^:]*:Owain:3936:/ #3:39 -2041.7 "Elemental Shift" sync / 1[56]:[^:]*:Owain:3937:/ -2052.8 "Elemental Magicks" sync / 1[56]:[^:]*:Owain:393[AB]:/ -2067.8 "Thricecull" sync / 1[56]:[^:]*:Owain:3945:/ -2079.9 "Acallam Na Senorach" sync / 1[56]:[^:]*:Owain:3946:/ -2089.3 "Elemental Shift" sync / 1[56]:[^:]*:Owain:3937:/ -2100.4 "Elemental Magicks" sync / 1[56]:[^:]*:Owain:393[AB]:/ -2116.4 "Thricecull" sync / 1[56]:[^:]*:Owain:3945:/ -2127.5 "Spiritcull" sync / 1[56]:[^:]*:Owain:393E:/ -2132.5 "Legendary Imbas" sync / 1[56]:[^:]*:Owain:3940:/ -2132.5 "Piercing Light" sync / 1[56]:[^:]*:Owain:393F:/ -2142.5 "Thricecull" sync / 1[56]:[^:]*:Owain:3945:/ -2153.6 "Acallam Na Senorach" sync / 1[56]:[^:]*:Owain:3946:/ +2002.5 "--sync--" Ability { id: "3957", source: "Owain", target: "[^|]+" } window 2500,0 +2016.0 "Thricecull" Ability { id: "3945", source: "Owain" } +2028.1 "Acallam Na Senorach" Ability { id: "3946", source: "Owain" } #3:29 +2037.7 "Mythcall" Ability { id: "3936", source: "Owain" } #3:39 +2041.7 "Elemental Shift" Ability { id: "3937", source: "Owain" } +2052.8 "Elemental Magicks" Ability { id: "393[AB]", source: "Owain" } +2067.8 "Thricecull" Ability { id: "3945", source: "Owain" } +2079.9 "Acallam Na Senorach" Ability { id: "3946", source: "Owain" } +2089.3 "Elemental Shift" Ability { id: "3937", source: "Owain" } +2100.4 "Elemental Magicks" Ability { id: "393[AB]", source: "Owain" } +2116.4 "Thricecull" Ability { id: "3945", source: "Owain" } +2127.5 "Spiritcull" Ability { id: "393E", source: "Owain" } +2132.5 "Legendary Imbas" Ability { id: "3940", source: "Owain" } +2132.5 "Piercing Light" Ability { id: "393F", source: "Owain" } +2142.5 "Thricecull" Ability { id: "3945", source: "Owain" } +2153.6 "Acallam Na Senorach" Ability { id: "3946", source: "Owain" } 2157.7 "--untargetable--" -2164.7 "Piercing Light" sync / 1[56]:[^:]*:Owain:3944:/ -2165.7 "Pitfall" sync / 1[56]:[^:]*:Owain:394D:/ +2164.7 "Piercing Light" Ability { id: "3944", source: "Owain" } +2165.7 "Pitfall" Ability { id: "394D", source: "Owain" } 2166.0 "--targetable--" -2180.3 "Acallam Na Senorach" sync / 1[56]:[^:]*:Owain:3946:/ -2190.3 "Acallam Na Senorach" sync / 1[56]:[^:]*:Owain:3946:/ -2199.9 "Elemental Shift" sync / 1[56]:[^:]*:Owain:3937:/ -2209.0 "Spiritcull" sync / 1[56]:[^:]*:Owain:393E:/ -2214.0 "Legendary Imbas" sync / 1[56]:[^:]*:Owain:3940:/ -2214.0 "Piercing Light" sync / 1[56]:[^:]*:Owain:393F:/ -2216.0 "Elemental Magicks" sync / 1[56]:[^:]*:Owain:393[AB]:/ -2230.0 "Thricecull" sync / 1[56]:[^:]*:Owain:3945:/ -2252.1 "Acallam Na Senorach" sync / 1[56]:[^:]*:Owain:3946:/ -2261.4 "Elemental Shift" sync / 1[56]:[^:]*:Owain:3937:/ -2267.5 "Ivory Palm Adds" # sync / 1[56]:[^:]*:Ivory Palm:3941:/ -2272.5 "Elemental Magicks" sync / 1[56]:[^:]*:Owain:393[AB]:/ +2180.3 "Acallam Na Senorach" Ability { id: "3946", source: "Owain" } +2190.3 "Acallam Na Senorach" Ability { id: "3946", source: "Owain" } +2199.9 "Elemental Shift" Ability { id: "3937", source: "Owain" } +2209.0 "Spiritcull" Ability { id: "393E", source: "Owain" } +2214.0 "Legendary Imbas" Ability { id: "3940", source: "Owain" } +2214.0 "Piercing Light" Ability { id: "393F", source: "Owain" } +2216.0 "Elemental Magicks" Ability { id: "393[AB]", source: "Owain" } +2230.0 "Thricecull" Ability { id: "3945", source: "Owain" } +2252.1 "Acallam Na Senorach" Ability { id: "3946", source: "Owain" } +2261.4 "Elemental Shift" Ability { id: "3937", source: "Owain" } +2267.5 "Ivory Palm Adds" # Ability { id: "3941", source: "Ivory Palm" } +2272.5 "Elemental Magicks" Ability { id: "393[AB]", source: "Owain" } 2290.5 "(Explosion Enrage)" -2283.5 "Thricecull" sync / 1[56]:[^:]*:Owain:3945:/ -2291.6 "Spiritcull" sync / 1[56]:[^:]*:Owain:393E:/ -2296.6 "Legendary Imbas" sync / 1[56]:[^:]*:Owain:3940:/ -2296.6 "Piercing Light" sync / 1[56]:[^:]*:Owain:393F:/ -2306.6 "Thricecull" sync / 1[56]:[^:]*:Owain:3945:/ -2317.6 "Acallam Na Senorach" sync / 1[56]:[^:]*:Owain:3946:/ -2328.6 "Piercing Light" sync / 1[56]:[^:]*:Owain:3944:/ -2329.6 "Pitfall" sync / 1[56]:[^:]*:Owain:394D:/ -2344.2 "Acallam Na Senorach" sync / 1[56]:[^:]*:Owain:3946:/ +2283.5 "Thricecull" Ability { id: "3945", source: "Owain" } +2291.6 "Spiritcull" Ability { id: "393E", source: "Owain" } +2296.6 "Legendary Imbas" Ability { id: "3940", source: "Owain" } +2296.6 "Piercing Light" Ability { id: "393F", source: "Owain" } +2306.6 "Thricecull" Ability { id: "3945", source: "Owain" } +2317.6 "Acallam Na Senorach" Ability { id: "3946", source: "Owain" } +2328.6 "Piercing Light" Ability { id: "3944", source: "Owain" } +2329.6 "Pitfall" Ability { id: "394D", source: "Owain" } +2344.2 "Acallam Na Senorach" Ability { id: "3946", source: "Owain" } @@ -113,59 +113,59 @@ hideall "--sync--" ########## # -ii 39B9 3994 3996 3995 3997 3872 3871 3873 -p 387A:3013 386D:3091 # Shin-Zantetsuken Containment Unit will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B51:/ window 3000,0 -3013.0 "Spirits of the Fallen" sync / 1[56]:[^:]*:Raiden:387A:/ # drift -0.041 -3023.0 "Shingan" sync / 1[56]:[^:]*:Raiden:387B:/ # drift 0.05 -3034.1 "Thundercall" sync / 1[56]:[^:]*:Raiden:387F:/ -3044.2 "--sync--" sync / 14:[^:]*:Raiden:3868:/ window 10,10 -3048.7 "Ame-no-Sakahoko" sync / 1[56]:[^:]*:Raiden:3868:/ -3051.7 "--sync--" sync / 1[56]:[^:]*:Raiden:3869:/ -3058.3 "Whirling Zantetsuken" sync / 1[56]:[^:]*:Raiden:386A:/ -3065.4 "--sync--" sync / 14:[^:]*:Raiden:3868:/ window 10,10 -3069.9 "Ame-no-Sakahoko" sync / 1[56]:[^:]*:Raiden:3868:/ -3072.9 "--sync--" sync / 1[56]:[^:]*:Raiden:3869:/ -3079.5 "Whirling Zantetsuken" sync / 1[56]:[^:]*:Raiden:386A:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B51" } window 3000,0 +3013.0 "Spirits of the Fallen" Ability { id: "387A", source: "Raiden" } # drift -0.041 +3023.0 "Shingan" Ability { id: "387B", source: "Raiden" } # drift 0.05 +3034.1 "Thundercall" Ability { id: "387F", source: "Raiden" } +3044.2 "--sync--" StartsUsing { id: "3868", source: "Raiden" } window 10,10 +3048.7 "Ame-no-Sakahoko" Ability { id: "3868", source: "Raiden" } +3051.7 "--sync--" Ability { id: "3869", source: "Raiden" } +3058.3 "Whirling Zantetsuken" Ability { id: "386A", source: "Raiden" } +3065.4 "--sync--" StartsUsing { id: "3868", source: "Raiden" } window 10,10 +3069.9 "Ame-no-Sakahoko" Ability { id: "3868", source: "Raiden" } +3072.9 "--sync--" Ability { id: "3869", source: "Raiden" } +3079.5 "Whirling Zantetsuken" Ability { id: "386A", source: "Raiden" } # FIXME: does this loop doing Ame forever or does it naturally go into Lateral? # FIXME: Are these always Whirling? # Adds Phase at 60% -3095.0 "--sync--" sync / 1[56]:[^:]*:Ball Lightning:386D:/ window 100,10 -3099.1 "Lateral Zantetsuken" sync / 1[56]:[^:]*:Raiden:386[BC]:/ -3109.8 "Spirits of the Fallen" sync / 1[56]:[^:]*:Raiden:387A:/ -3118.9 "Lancing Bolt" sync / 1[56]:[^:]*:Raiden:3876:/ -3124.4 "Streak Lightning" #sync / 1[56]:[^:]*:Streak Lightning:3877:/ -3134.9 "Ultimate Zantetsuken" sync / 14:[^:]*:Raiden:3878:/ duration 20 - -3154.9 "--sync--" sync / 17:[^:]*:Raiden:3878:/ window 40,0 -3164.9 "Spirits of the Fallen" sync / 1[56]:[^:]*:Raiden:387A:/ window 40,5 -3171.2 "Booming Lament" sync / 1[56]:[^:]*:Raiden:387D:/ -3177.3 "Cloud to Ground" sync / 1[56]:[^:]*:Raiden:3870:/ -3193.4 "Bitter Barbs" sync / 1[56]:[^:]*:Raiden:3874:/ -3210.5 "Whirling Zantetsuken" sync / 1[56]:[^:]*:Raiden:386A:/ -3220.5 "Spirits of the Fallen" sync / 1[56]:[^:]*:Raiden:387A:/ - -3233.6 "Cloud to Ground" sync / 1[56]:[^:]*:Raiden:3870:/ -3247.7 "Levinwhorl" sync / 1[56]:[^:]*:Raiden:386E:/ -3247.7 "--sync--" sync / 1[56]:[^:]*:Raiden:386F:/ -3266.3 "Ame-no-Sakahoko" sync / 1[56]:[^:]*:Raiden:3868:/ -3269.3 "--sync--" sync / 1[56]:[^:]*:Raiden:3869:/ -3275.9 "Whirling Zantetsuken" sync / 1[56]:[^:]*:Raiden:386A:/ -3283.1 "Booming Lament" sync / 1[56]:[^:]*:Raiden:387D:/ -3293.2 "Spirits of the Fallen" sync / 1[56]:[^:]*:Raiden:387A:/ - -3308.5 "--sync--" sync / 1[56]:[^:]*:Ball Lightning:386D:/ window 100,10 -3310.7 "Streak Lightning" sync / 1[56]:[^:]*:Streak Lightning:3877:/ # drift 0.043 -3316.0 "Lateral Zantetsuken" sync / 1[56]:[^:]*:Raiden:386[BC]:/ -3321.7 "Ultimate Zantetsuken" sync / 14:[^:]*:Raiden:3878:/ duration 20 - -3341.7 "--sync--" sync / 17:[^:]*:Raiden:3878:/ window 40,0 -3347.7 "Spirits of the Fallen" sync / 1[56]:[^:]*:Raiden:387A:/ window 40,5 -3353.8 "Shingan" sync / 1[56]:[^:]*:Raiden:387B:/ -3365.4 "Ame-no-Sakahoko" sync / 1[56]:[^:]*:Raiden:3868:/ -3368.4 "--sync--" sync / 1[56]:[^:]*:Raiden:3869:/ -3373.9 "For Honor" sync / 1[56]:[^:]*:Raiden:387C:/ -3381.5 "Whirling Zantetsuken" sync / 1[56]:[^:]*:Raiden:386A:/ # drift -0.048 -3390.7 "Booming Lament" sync / 1[56]:[^:]*:Raiden:387D:/ +3095.0 "--sync--" Ability { id: "386D", source: "Ball Lightning" } window 100,10 +3099.1 "Lateral Zantetsuken" Ability { id: "386[BC]", source: "Raiden" } +3109.8 "Spirits of the Fallen" Ability { id: "387A", source: "Raiden" } +3118.9 "Lancing Bolt" Ability { id: "3876", source: "Raiden" } +3124.4 "Streak Lightning" #Ability { id: "3877", source: "Streak Lightning" } +3134.9 "Ultimate Zantetsuken" StartsUsing { id: "3878", source: "Raiden" } duration 20 + +3154.9 "--sync--" NetworkCancelAbility { id: "3878", source: "Raiden" } window 40,0 +3164.9 "Spirits of the Fallen" Ability { id: "387A", source: "Raiden" } window 40,5 +3171.2 "Booming Lament" Ability { id: "387D", source: "Raiden" } +3177.3 "Cloud to Ground" Ability { id: "3870", source: "Raiden" } +3193.4 "Bitter Barbs" Ability { id: "3874", source: "Raiden" } +3210.5 "Whirling Zantetsuken" Ability { id: "386A", source: "Raiden" } +3220.5 "Spirits of the Fallen" Ability { id: "387A", source: "Raiden" } + +3233.6 "Cloud to Ground" Ability { id: "3870", source: "Raiden" } +3247.7 "Levinwhorl" Ability { id: "386E", source: "Raiden" } +3247.7 "--sync--" Ability { id: "386F", source: "Raiden" } +3266.3 "Ame-no-Sakahoko" Ability { id: "3868", source: "Raiden" } +3269.3 "--sync--" Ability { id: "3869", source: "Raiden" } +3275.9 "Whirling Zantetsuken" Ability { id: "386A", source: "Raiden" } +3283.1 "Booming Lament" Ability { id: "387D", source: "Raiden" } +3293.2 "Spirits of the Fallen" Ability { id: "387A", source: "Raiden" } + +3308.5 "--sync--" Ability { id: "386D", source: "Ball Lightning" } window 100,10 +3310.7 "Streak Lightning" Ability { id: "3877", source: "Streak Lightning" } # drift 0.043 +3316.0 "Lateral Zantetsuken" Ability { id: "386[BC]", source: "Raiden" } +3321.7 "Ultimate Zantetsuken" StartsUsing { id: "3878", source: "Raiden" } duration 20 + +3341.7 "--sync--" NetworkCancelAbility { id: "3878", source: "Raiden" } window 40,0 +3347.7 "Spirits of the Fallen" Ability { id: "387A", source: "Raiden" } window 40,5 +3353.8 "Shingan" Ability { id: "387B", source: "Raiden" } +3365.4 "Ame-no-Sakahoko" Ability { id: "3868", source: "Raiden" } +3368.4 "--sync--" Ability { id: "3869", source: "Raiden" } +3373.9 "For Honor" Ability { id: "387C", source: "Raiden" } +3381.5 "Whirling Zantetsuken" Ability { id: "386A", source: "Raiden" } # drift -0.048 +3390.7 "Booming Lament" Ability { id: "387D", source: "Raiden" } @@ -174,74 +174,74 @@ hideall "--sync--" ################### # -p 3799:4016 -ii 38C4 378F 3791 3792 3954 378C # Lance of Virtue Containment Unit will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B52:/ window 4000,0 -4016.0 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ -4022.0 "Eidos" sync / 1[56]:[^:]*:Absolute Virtue:378[67]:/ -4033.6 "Hostile Aspect" sync / 1[56]:[^:]*:Absolute Virtue:378B:/ -4039.8 "Medusa Javelin" sync / 1[56]:[^:]*:Absolute Virtue:379B:/ -4046.8 "Eidos" sync / 1[56]:[^:]*:Absolute Virtue:378[67]:/ -4053.6 "Impact Stream" sync / 1[56]:[^:]*:Absolute Virtue:3788:/ -4064.6 "Auroral Wind" sync / 1[56]:[^:]*:Absolute Virtue:379A:/ -4078.7 "Eidos" sync / 1[56]:[^:]*:Absolute Virtue:378[67]:/ -4090.5 "Hostile Aspect" sync / 1[56]:[^:]*:Absolute Virtue:378B:/ -4108.5 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ -4118.6 "Turbulent Aether" sync / 1[56]:[^:]*:Absolute Virtue:3790:/ -4126.9 "Medusa Javelin" sync / 1[56]:[^:]*:Absolute Virtue:379B:/ -4134.9 "Auroral Wind" sync / 1[56]:[^:]*:Absolute Virtue:379A:/ -4142.9 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ -4151.9 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B52" } window 4000,0 +4016.0 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } +4022.0 "Eidos" Ability { id: "378[67]", source: "Absolute Virtue" } +4033.6 "Hostile Aspect" Ability { id: "378B", source: "Absolute Virtue" } +4039.8 "Medusa Javelin" Ability { id: "379B", source: "Absolute Virtue" } +4046.8 "Eidos" Ability { id: "378[67]", source: "Absolute Virtue" } +4053.6 "Impact Stream" Ability { id: "3788", source: "Absolute Virtue" } +4064.6 "Auroral Wind" Ability { id: "379A", source: "Absolute Virtue" } +4078.7 "Eidos" Ability { id: "378[67]", source: "Absolute Virtue" } +4090.5 "Hostile Aspect" Ability { id: "378B", source: "Absolute Virtue" } +4108.5 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } +4118.6 "Turbulent Aether" Ability { id: "3790", source: "Absolute Virtue" } +4126.9 "Medusa Javelin" Ability { id: "379B", source: "Absolute Virtue" } +4134.9 "Auroral Wind" Ability { id: "379A", source: "Absolute Virtue" } +4142.9 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } +4151.9 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } # Triple Stream 4161.0 "--untargetable--" -4166.5 "Explosive Impulse" sync / 1[56]:[^:]*:Relative Virtue:3793:/ +4166.5 "Explosive Impulse" Ability { id: "3793", source: "Relative Virtue" } 4174.5 "Impact Stream" 4175.5 "Impact Stream" 4184.5 "Impact Stream" -4190.5 "Explosive Impulse" sync / 1[56]:[^:]*:Absolute Virtue:3794:/ +4190.5 "Explosive Impulse" Ability { id: "3794", source: "Absolute Virtue" } 4191.0 "--targetable--" -4196.5 "Medusa Javelin" sync / 1[56]:[^:]*:Absolute Virtue:379B:/ -4208.5 "Auroral Wind" sync / 1[56]:[^:]*:Absolute Virtue:379A:/ -4216.5 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ +4196.5 "Medusa Javelin" Ability { id: "379B", source: "Absolute Virtue" } +4208.5 "Auroral Wind" Ability { id: "379A", source: "Absolute Virtue" } +4216.5 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } # Wyvern Pair 1 -4225.6 "Call Wyvern" sync / 1[56]:[^:]*:Absolute Virtue:3798:/ -4231.6 "Turbulent Aether" sync / 1[56]:[^:]*:Absolute Virtue:3790:/ -4239.8 "Medusa Javelin" sync / 1[56]:[^:]*:Absolute Virtue:379B:/ +4225.6 "Call Wyvern" Ability { id: "3798", source: "Absolute Virtue" } +4231.6 "Turbulent Aether" Ability { id: "3790", source: "Absolute Virtue" } +4239.8 "Medusa Javelin" Ability { id: "379B", source: "Absolute Virtue" } 4241.6 "(Wyvern Explosion)" -4247.8 "Auroral Wind" sync / 1[56]:[^:]*:Absolute Virtue:379A:/ -4264.8 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ -4270.8 "Eidos" sync / 1[56]:[^:]*:Absolute Virtue:378[67]:/ -4283.0 "Hostile Aspect" sync / 1[56]:[^:]*:Absolute Virtue:378B:/ +4247.8 "Auroral Wind" Ability { id: "379A", source: "Absolute Virtue" } +4264.8 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } +4270.8 "Eidos" Ability { id: "378[67]", source: "Absolute Virtue" } +4283.0 "Hostile Aspect" Ability { id: "378B", source: "Absolute Virtue" } # Double Stream 1 -4286.9 "Explosive Impulse" sync / 1[56]:[^:]*:Relative Virtue:3793:/ -4294.1 "Eidos" sync / 1[56]:[^:]*:Absolute Virtue:378[67]:/ -4296.1 "Impact Stream" sync / 1[56]:[^:]*:Absolute Virtue:3797:/ -4300.8 "Impact Stream" sync / 1[56]:[^:]*:Absolute Virtue:3788:/ -4311.8 "Medusa Javelin" sync / 1[56]:[^:]*:Absolute Virtue:379B:/ -4318.8 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ +4286.9 "Explosive Impulse" Ability { id: "3793", source: "Relative Virtue" } +4294.1 "Eidos" Ability { id: "378[67]", source: "Absolute Virtue" } +4296.1 "Impact Stream" Ability { id: "3797", source: "Absolute Virtue" } +4300.8 "Impact Stream" Ability { id: "3788", source: "Absolute Virtue" } +4311.8 "Medusa Javelin" Ability { id: "379B", source: "Absolute Virtue" } +4318.8 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } # Wyvern Pair 2 -4333.8 "Call Wyvern" sync / 1[56]:[^:]*:Absolute Virtue:3798:/ -4339.8 "Turbulent Aether" sync / 1[56]:[^:]*:Absolute Virtue:3790:/ -4348.1 "Medusa Javelin" sync / 1[56]:[^:]*:Absolute Virtue:379B:/ +4333.8 "Call Wyvern" Ability { id: "3798", source: "Absolute Virtue" } +4339.8 "Turbulent Aether" Ability { id: "3790", source: "Absolute Virtue" } +4348.1 "Medusa Javelin" Ability { id: "379B", source: "Absolute Virtue" } 4349.8 "(Wyvern Explosion)" -4356.1 "Auroral Wind" sync / 1[56]:[^:]*:Absolute Virtue:379A:/ -4373.1 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ -4379.1 "Eidos" sync / 1[56]:[^:]*:Absolute Virtue:378[67]:/ -4391.2 "Hostile Aspect" sync / 1[56]:[^:]*:Absolute Virtue:378B:/ +4356.1 "Auroral Wind" Ability { id: "379A", source: "Absolute Virtue" } +4373.1 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } +4379.1 "Eidos" Ability { id: "378[67]", source: "Absolute Virtue" } +4391.2 "Hostile Aspect" Ability { id: "378B", source: "Absolute Virtue" } # Double Stream 2 -4395.1 "Explosive Impulse" sync / 1[56]:[^:]*:Relative Virtue:3793:/ -4402.3 "Eidos" sync / 1[56]:[^:]*:Absolute Virtue:378[67]:/ -4404.3 "Impact Stream" sync / 1[56]:[^:]*:Absolute Virtue:3797:/ -4408.4 "Impact Stream" sync / 1[56]:[^:]*:Absolute Virtue:3788:/ -4419.6 "Medusa Javelin" sync / 1[56]:[^:]*:Absolute Virtue:379B:/ -4426.6 "Meteor" sync / 1[56]:[^:]*:Absolute Virtue:3799:/ +4395.1 "Explosive Impulse" Ability { id: "3793", source: "Relative Virtue" } +4402.3 "Eidos" Ability { id: "378[67]", source: "Absolute Virtue" } +4404.3 "Impact Stream" Ability { id: "3797", source: "Absolute Virtue" } +4408.4 "Impact Stream" Ability { id: "3788", source: "Absolute Virtue" } +4419.6 "Medusa Javelin" Ability { id: "379B", source: "Absolute Virtue" } +4426.6 "Meteor" Ability { id: "3799", source: "Absolute Virtue" } -4443.4 "Meteor Enrage" sync / 1[56]:[^:]*:Absolute Virtue:396C:/ -4446.4 "Meteor Enrage" sync / 1[56]:[^:]*:Absolute Virtue:396F:/ -4451.4 "Meteor Enrage" sync / 1[56]:[^:]*:Absolute Virtue:396F:/ +4443.4 "Meteor Enrage" Ability { id: "396C", source: "Absolute Virtue" } +4446.4 "Meteor Enrage" Ability { id: "396F", source: "Absolute Virtue" } +4451.4 "Meteor Enrage" Ability { id: "396F", source: "Absolute Virtue" } @@ -250,31 +250,31 @@ hideall "--sync--" ############## # -ii 37AB 37B8 37A2 37AC 396E 397B 397C -p 37B2:5021.5 # Proto Ozma Containment Unit will be sealed off -5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B53:/ window 5000,0 +5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B53" } window 5000,0 ### Initial Star Form (no meteor) -5021.5 "Star Form" sync / 1[56]:[^:]*:Proto Ozma:37B2:/ -5028.5 "--sync--" sync / 1[56]:[^:]*:Proto Ozma:37B4:/ -5029.5 "Mourning Star" sync / 1[56]:[^:]*:Ozma:37B5:/ +5021.5 "Star Form" Ability { id: "37B2", source: "Proto Ozma" } +5028.5 "--sync--" Ability { id: "37B4", source: "Proto Ozma" } +5029.5 "Mourning Star" Ability { id: "37B5", source: "Ozma" } -5032.5 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ -5038.5 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ -5044.5 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ +5032.5 "Soak Attack" Ability { id: "37B6", source: "Ozma" } +5038.5 "Soak Attack" Ability { id: "37B6", source: "Ozma" } +5044.5 "Soak Attack" Ability { id: "37B6", source: "Ozma" } -5051.5 "Shooting Star" sync / 1[56]:[^:]*:Proto Ozma:37B7:/ +5051.5 "Shooting Star" Ability { id: "37B7", source: "Proto Ozma" } -5056.5 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ -5062.5 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ -5068.5 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ +5056.5 "Soak Attack" Ability { id: "37B6", source: "Ozma" } +5062.5 "Soak Attack" Ability { id: "37B6", source: "Ozma" } +5068.5 "Soak Attack" Ability { id: "37B6", source: "Ozma" } -5070.5 "Sphere Form" sync / 1[56]:[^:]*:Proto Ozma:(37B3|37A5|379F):/ -5079.5 "Black Hole" sync / 1[56]:[^:]*:Proto Ozma:379D:/ +5070.5 "Sphere Form" Ability { id: ["37B3", "37A5", "379F"], source: "Proto Ozma" } +5079.5 "Black Hole" Ability { id: "379D", source: "Proto Ozma" } -5092.5 "Random Shade" sync / 1[56]:[^:]*:Ozmashade:(37A4|37B2|379E):/ -5099.5 "--sync--" sync / 1[56]:[^:]*:Ozmashade:(37A6|37B4|37A0):/ -5101.0 "Shade Ability" # sync / 1[56]:[^:]*:Shadow:(37A7|37B5|37A1):/ +5092.5 "Random Shade" Ability { id: ["37A4", "37B2", "379E"], source: "Ozmashade" } +5099.5 "--sync--" Ability { id: ["37A6", "37B4", "37A0"], source: "Ozmashade" } +5101.0 "Shade Ability" # Ability { id: ["37A7", "37B5", "37A1"], source: "Shadow" } -5121.5 "Random Shade" sync / 1[56]:[^:]*:Ozmashade:(37A4|37B2|379E):/ +5121.5 "Random Shade" Ability { id: ["37A4", "37B2", "379E"], source: "Ozmashade" } # fake loop 5125.5 "Random Form" @@ -292,33 +292,33 @@ hideall "--sync--" ### Pyramid Phase -5300.0 "Pyramid Form" sync / 1[56]:[^:]*:Proto Ozma:37A4:/ window 800,800 -5303.0 "--sync--" sync / 1[56]:[^:]*:Ozmashade:(37A6|37B4|37A0):/ -5304.5 "Shade Ability" # sync / 1[56]:[^:]*:Shadow:(37A7|37B5|37A1):/ +5300.0 "Pyramid Form" Ability { id: "37A4", source: "Proto Ozma" } window 800,800 +5303.0 "--sync--" Ability { id: ["37A6", "37B4", "37A0"], source: "Ozmashade" } +5304.5 "Shade Ability" # Ability { id: ["37A7", "37B5", "37A1"], source: "Shadow" } -5307.0 "--sync--" sync / 1[56]:[^:]*:Proto Ozma:37A6:/ -5308.7 "Execration" sync / 1[56]:[^:]*:Ozma:37A7:/ +5307.0 "--sync--" Ability { id: "37A6", source: "Proto Ozma" } +5308.7 "Execration" Ability { id: "37A7", source: "Ozma" } -5311.0 "Acceleration Bomb" sync / 1[56]:[^:]*:Proto Ozma:37AA:/ -5313.0 "Bleed Attack" sync / 1[56]:[^:]*:Ozma:37AD:/ -5319.0 "Bleed Attack" sync / 1[56]:[^:]*:Ozma:37AD:/ +5311.0 "Acceleration Bomb" Ability { id: "37AA", source: "Proto Ozma" } +5313.0 "Bleed Attack" Ability { id: "37AD", source: "Ozma" } +5319.0 "Bleed Attack" Ability { id: "37AD", source: "Ozma" } -5332.0 "Meteor (Adds)" sync / 1[56]:[^:]*:Arsenal urolith:37B0:/ -5337.0 "Bleed Attack" sync / 1[56]:[^:]*:Ozma:37AD:/ -5343.0 "Bleed Attack" sync / 1[56]:[^:]*:Ozma:37AD:/ +5332.0 "Meteor (Adds)" Ability { id: "37B0", source: "Arsenal urolith" } +5337.0 "Bleed Attack" Ability { id: "37AD", source: "Ozma" } +5343.0 "Bleed Attack" Ability { id: "37AD", source: "Ozma" } -5346.0 "Random Shade" sync / 1[56]:[^:]*:Ozmashade:(37A4|37B2|379E):/ -5349.0 "Acceleration Bomb" sync / 1[56]:[^:]*:Proto Ozma:37AA:/ -5353.0 "--sync--" sync / 1[56]:[^:]*:Ozmashade:(37A6|37B4|37A0):/ -5354.5 "Shade Ability" # sync / 1[56]:[^:]*:Shadow:(37A7|37B5|37A1):/ +5346.0 "Random Shade" Ability { id: ["37A4", "37B2", "379E"], source: "Ozmashade" } +5349.0 "Acceleration Bomb" Ability { id: "37AA", source: "Proto Ozma" } +5353.0 "--sync--" Ability { id: ["37A6", "37B4", "37A0"], source: "Ozmashade" } +5354.5 "Shade Ability" # Ability { id: ["37A7", "37B5", "37A1"], source: "Shadow" } -5364.0 "Meteor (Stack)" sync / 1[56]:[^:]*:Ozma:37A8:/ -5370.0 "Bleed Attack" sync / 1[56]:[^:]*:Ozma:37AD:/ +5364.0 "Meteor (Stack)" Ability { id: "37A8", source: "Ozma" } +5370.0 "Bleed Attack" Ability { id: "37AD", source: "Ozma" } -5373.0 "Sphere Form" sync / 1[56]:[^:]*:Proto Ozma:(37B3|37A5|379F):/ -5382.0 "Black Hole" sync / 1[56]:[^:]*:Proto Ozma:379D:/ +5373.0 "Sphere Form" Ability { id: ["37B3", "37A5", "379F"], source: "Proto Ozma" } +5382.0 "Black Hole" Ability { id: "379D", source: "Proto Ozma" } -5395.0 "Random Shade" sync / 1[56]:[^:]*:Ozmashade:(37A4|37B2|379E):/ +5395.0 "Random Shade" Ability { id: ["37A4", "37B2", "379E"], source: "Ozmashade" } # fake loop 5399.0 "Random Form" @@ -336,27 +336,27 @@ hideall "--sync--" ### Cube Phase -5600.0 "Cube Form" sync / 1[56]:[^:]*:Proto Ozma:379E:/ window 800,800 +5600.0 "Cube Form" Ability { id: "379E", source: "Proto Ozma" } window 800,800 -5603.0 "--sync--" sync / 1[56]:[^:]*:Ozmashade:(37A6|37B4|37A0):/ -5604.5 "Shade Ability" # sync / 1[56]:[^:]*:Shadow:(37A7|37B5|37A1):/ +5603.0 "--sync--" Ability { id: ["37A6", "37B4", "37A0"], source: "Ozmashade" } +5604.5 "Shade Ability" # Ability { id: ["37A7", "37B5", "37A1"], source: "Shadow" } -5607.0 "--sync--" sync / 1[56]:[^:]*:Proto Ozma:37A0:/ -5608.5 "Flare Star" sync / 1[56]:[^:]*:Ozma:37A1:/ +5607.0 "--sync--" Ability { id: "37A0", source: "Proto Ozma" } +5608.5 "Flare Star" Ability { id: "37A1", source: "Ozma" } -5619.0 "Meteor (Stack)" sync / 1[56]:[^:]*:Ozma:37A8:/ -5622.0 "Holy" sync / 1[56]:[^:]*:Proto Ozma:37A9:/ +5619.0 "Meteor (Stack)" Ability { id: "37A8", source: "Ozma" } +5622.0 "Holy" Ability { id: "37A9", source: "Proto Ozma" } -5649.0 "Random Shade" sync / 1[56]:[^:]*:Ozmashade:(37A4|37B2|379E):/ -5655.0 "Meteor (Stack)" sync / 1[56]:[^:]*:Ozma:37A8:/ -5656.0 "Holy" sync / 1[56]:[^:]*:Proto Ozma:37A9:/ -5656.0 "--sync--" sync / 1[56]:[^:]*:Ozmashade:(37A6|37B4|37A0):/ -5657.5 "Shade Ability" # sync / 1[56]:[^:]*:Shadow:(37A7|37B5|37A1):/ +5649.0 "Random Shade" Ability { id: ["37A4", "37B2", "379E"], source: "Ozmashade" } +5655.0 "Meteor (Stack)" Ability { id: "37A8", source: "Ozma" } +5656.0 "Holy" Ability { id: "37A9", source: "Proto Ozma" } +5656.0 "--sync--" Ability { id: ["37A6", "37B4", "37A0"], source: "Ozmashade" } +5657.5 "Shade Ability" # Ability { id: ["37A7", "37B5", "37A1"], source: "Shadow" } -5673.0 "Sphere Form" sync / 1[56]:[^:]*:Proto Ozma:(37B3|37A5|379F):/ -5682.0 "Black Hole" sync / 1[56]:[^:]*:Proto Ozma:379D:/ +5673.0 "Sphere Form" Ability { id: ["37B3", "37A5", "379F"], source: "Proto Ozma" } +5682.0 "Black Hole" Ability { id: "379D", source: "Proto Ozma" } -5695.0 "Random Shade" sync / 1[56]:[^:]*:Ozmashade:(37A4|37B2|379E):/ +5695.0 "Random Shade" Ability { id: ["37A4", "37B2", "379E"], source: "Ozmashade" } # fake loop 5699.0 "Random Form" @@ -374,30 +374,30 @@ hideall "--sync--" ### Star Phase -5900.0 "Star Form" sync / 1[56]:[^:]*:Proto Ozma:37B2:/ window 800,800 -5903.0 "--sync--" sync / 1[56]:[^:]*:Ozmashade:(37A6|37B4|37A0):/ -5904.5 "Shade Ability" # sync / 1[56]:[^:]*:Shadow:(37A7|37B5|37A1):/ -5907.0 "--sync--" sync / 1[56]:[^:]*:Proto Ozma:37B4:/ -5908.0 "Mourning Star" sync / 1[56]:[^:]*:Ozma:37B5:/ -5911.0 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ +5900.0 "Star Form" Ability { id: "37B2", source: "Proto Ozma" } window 800,800 +5903.0 "--sync--" Ability { id: ["37A6", "37B4", "37A0"], source: "Ozmashade" } +5904.5 "Shade Ability" # Ability { id: ["37A7", "37B5", "37A1"], source: "Shadow" } +5907.0 "--sync--" Ability { id: "37B4", source: "Proto Ozma" } +5908.0 "Mourning Star" Ability { id: "37B5", source: "Ozma" } +5911.0 "Soak Attack" Ability { id: "37B6", source: "Ozma" } #5917.1 "Shooting Star Enrage" (if this is the enrage) -5926.0 "Meteor (Adds)" sync / 1[56]:[^:]*:Arsenal urolith:37B0:/ -5929.0 "Shooting Star" sync / 1[56]:[^:]*:Proto Ozma:37B7:/ -5938.0 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ -5944.0 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ +5926.0 "Meteor (Adds)" Ability { id: "37B0", source: "Arsenal urolith" } +5929.0 "Shooting Star" Ability { id: "37B7", source: "Proto Ozma" } +5938.0 "Soak Attack" Ability { id: "37B6", source: "Ozma" } +5944.0 "Soak Attack" Ability { id: "37B6", source: "Ozma" } -5949.0 "Random Shade" sync / 1[56]:[^:]*:Ozmashade:(37A4|37B2|379E):/ -5954.0 "Shooting Star" sync / 1[56]:[^:]*:Proto Ozma:37B7:/ -5956.0 "--sync--" sync / 1[56]:[^:]*:Ozmashade:(37A6|37B4|37A0):/ -5957.5 "Shade Ability" # sync / 1[56]:[^:]*:Shadow:(37A7|37B5|37A1):/ -5959.0 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ -5959.0 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ -5965.0 "Soak Attack" sync / 1[56]:[^:]*:Ozma:37B6:/ +5949.0 "Random Shade" Ability { id: ["37A4", "37B2", "379E"], source: "Ozmashade" } +5954.0 "Shooting Star" Ability { id: "37B7", source: "Proto Ozma" } +5956.0 "--sync--" Ability { id: ["37A6", "37B4", "37A0"], source: "Ozmashade" } +5957.5 "Shade Ability" # Ability { id: ["37A7", "37B5", "37A1"], source: "Shadow" } +5959.0 "Soak Attack" Ability { id: "37B6", source: "Ozma" } +5959.0 "Soak Attack" Ability { id: "37B6", source: "Ozma" } +5965.0 "Soak Attack" Ability { id: "37B6", source: "Ozma" } -5973.0 "Sphere Form" sync / 1[56]:[^:]*:Proto Ozma:(37B3|37A5|379F):/ -5982.0 "Black Hole" sync / 1[56]:[^:]*:Proto Ozma:379D:/ +5973.0 "Sphere Form" Ability { id: ["37B3", "37A5", "379F"], source: "Proto Ozma" } +5982.0 "Black Hole" Ability { id: "379D", source: "Proto Ozma" } -5995.0 "Random Shade" sync / 1[56]:[^:]*:Ozmashade:(37A4|37B2|379E):/ +5995.0 "Random Shade" Ability { id: ["37A4", "37B2", "379E"], source: "Ozmashade" } # fake loop 5999.0 "Random Form" @@ -415,5 +415,5 @@ hideall "--sync--" ### Star Form Enrage -6200.0 "--sync--" sync / 14:[^:]*:Proto Ozma:396D:/ window 300,0 -6210.0 "Shooting Star Enrage" sync / 1[56]:[^:]*:Proto Ozma:396D:/ +6200.0 "--sync--" StartsUsing { id: "396D", source: "Proto Ozma" } window 300,0 +6210.0 "Shooting Star Enrage" Ability { id: "396D", source: "Proto Ozma" } diff --git a/ui/raidboss/data/04-sb/raid/o10n.txt b/ui/raidboss/data/04-sb/raid/o10n.txt index 31a6b9ffbb..74468e19e2 100644 --- a/ui/raidboss/data/04-sb/raid/o10n.txt +++ b/ui/raidboss/data/04-sb/raid/o10n.txt @@ -6,42 +6,42 @@ hideall "--sync--" ## Common start 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -13.1 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31C7:/ window 14,5 -19.2 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31C9:/ -22.9 "Out" sync / 1[56]:[^:]*:Midgardsormr:31CD:/ -31.6 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31C7:/ -37.7 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31C9:/ -41.3 "Out" sync / 1[56]:[^:]*:Midgardsormr:31CD:/ -45.8 "Earth Shaker" sync / 1[56]:[^:]*:Midgardsormr:31D1:/ -57.1 "Akh Morn" sync / 1[56]:[^:]*:Midgardsormr:31C6:/ duration 4 -62.5 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:3249:/ -68.9 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31C7:/ -75.0 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31CB:/ -78.6 "In" sync / 1[56]:[^:]*:Midgardsormr:31CF:/ -87.3 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31C7:/ -93.4 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31C[B9]:/ -96.9 "In/Out" sync / 1[56]:[^:]*:Midgardsormr:31C[FD]:/ -100.4 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31D2:/ -104.9 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31D3:/ -117.3 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31C8:/ -123.4 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31CB:/ -127.5 "Corners" sync / 1[56]:[^:]*:Midgardsormr:31D0:/ -140.6 "Dry Ice" sync / 1[56]:[^:]*:Midgardsormr:3632:/ -142.8 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31C8:/ -149.0 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31CB:/ -151.4 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:35BB:/ -153.1 "Corners" sync / 1[56]:[^:]*:Midgardsormr:31D0:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +13.1 "Spin" Ability { id: "31C7", source: "Midgardsormr" } window 14,5 +19.2 "Spin" Ability { id: "31C9", source: "Midgardsormr" } +22.9 "Out" Ability { id: "31CD", source: "Midgardsormr" } +31.6 "Spin" Ability { id: "31C7", source: "Midgardsormr" } +37.7 "Spin" Ability { id: "31C9", source: "Midgardsormr" } +41.3 "Out" Ability { id: "31CD", source: "Midgardsormr" } +45.8 "Earth Shaker" Ability { id: "31D1", source: "Midgardsormr" } +57.1 "Akh Morn" Ability { id: "31C6", source: "Midgardsormr" } duration 4 +62.5 "--sync--" Ability { id: "3249", source: "Midgardsormr" } +68.9 "Spin" Ability { id: "31C7", source: "Midgardsormr" } +75.0 "Flip" Ability { id: "31CB", source: "Midgardsormr" } +78.6 "In" Ability { id: "31CF", source: "Midgardsormr" } +87.3 "Spin" Ability { id: "31C7", source: "Midgardsormr" } +93.4 "Flip/Spin" Ability { id: "31C[B9]", source: "Midgardsormr" } +96.9 "In/Out" Ability { id: "31C[FD]", source: "Midgardsormr" } +100.4 "Thunderstorm" Ability { id: "31D2", source: "Midgardsormr" } +104.9 "Horrid Roar" Ability { id: "31D3", source: "Midgardsormr" } +117.3 "Flip" Ability { id: "31C8", source: "Midgardsormr" } +123.4 "Flip" Ability { id: "31CB", source: "Midgardsormr" } +127.5 "Corners" Ability { id: "31D0", source: "Midgardsormr" } +140.6 "Dry Ice" Ability { id: "3632", source: "Midgardsormr" } +142.8 "Flip" Ability { id: "31C8", source: "Midgardsormr" } +149.0 "Flip" Ability { id: "31CB", source: "Midgardsormr" } +151.4 "--sync--" Ability { id: "35BB", source: "Midgardsormr" } +153.1 "Corners" Ability { id: "31D0", source: "Midgardsormr" } 156.3 "--untargetable--" -159.4 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:35BC:/ -167.2 "Cauterize" sync / 1[56]:[^:]*:Midgardsormr:3241:/ +159.4 "--sync--" Ability { id: "35BC", source: "Midgardsormr" } +167.2 "Cauterize" Ability { id: "3241", source: "Midgardsormr" } -183.5 "Frost Breath" sync / 1[56]:[^:]*:Ancient Dragon:33EE:/ window 30,30 +183.5 "Frost Breath" Ability { id: "33EE", source: "Ancient Dragon" } window 30,30 195.5 "Frost Breath ready" -500.0 "Protostar x4" sync / 1[56]:[^:]*:Midgardsormr:31C3:/ window 500,500 duration 12 +500.0 "Protostar x4" Ability { id: "31C3", source: "Midgardsormr" } window 500,500 duration 12 523.4 "--targetable--" -536.6 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31C5:/ +536.6 "Tail End" Ability { id: "31C5", source: "Midgardsormr" } 544.6 "Exaflare" 547.6 "Exaflare" 550.6 "Exaflare" @@ -49,47 +49,47 @@ hideall "--sync--" 556.6 "Exaflare" # Loop -559.1 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31D3:/ -570.6 "Northern Cross" sync / 1[56]:[^:]*:Midgardsormr:3629:/ -575.2 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31C[78]:/ -581.2 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31C[B9]:/ -584.7 "In/Out/Corners" sync / 1[56]:[^:]*:Midgardsormr:31(CF|CD|D0):/ -596.2 "Akh Rhai" sync / 1[56]:[^:]*:Midgardsormr:3622:/ -598.2 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31C8:/ -604.2 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31CB:/ -608.2 "Corners" sync / 1[56]:[^:]*:Midgardsormr:31D0:/ -611.2 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31D2:/ +559.1 "Horrid Roar" Ability { id: "31D3", source: "Midgardsormr" } +570.6 "Northern Cross" Ability { id: "3629", source: "Midgardsormr" } +575.2 "Flip/Spin" Ability { id: "31C[78]", source: "Midgardsormr" } +581.2 "Flip/Spin" Ability { id: "31C[B9]", source: "Midgardsormr" } +584.7 "In/Out/Corners" Ability { id: "31(CF|CD|D0)", source: "Midgardsormr" } +596.2 "Akh Rhai" Ability { id: "3622", source: "Midgardsormr" } +598.2 "Flip" Ability { id: "31C8", source: "Midgardsormr" } +604.2 "Flip" Ability { id: "31CB", source: "Midgardsormr" } +608.2 "Corners" Ability { id: "31D0", source: "Midgardsormr" } +611.2 "Thunderstorm" Ability { id: "31D2", source: "Midgardsormr" } 615.4 "--untargetable--" 621.2 "Exaflare" 624.2 "Exaflare" -624.7 "Cauterize" sync / 1[56]:[^:]*:Midgardsormr:3241:/ +624.7 "Cauterize" Ability { id: "3241", source: "Midgardsormr" } 627.2 "Exaflare" 630.2 "Exaflare" 633.2 "Exaflare" -635.3 "Cauterize" sync / 1[56]:[^:]*:Midgardsormr:3241:/ +635.3 "Cauterize" Ability { id: "3241", source: "Midgardsormr" } 642.7 "--targetable--" -646.9 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31C[78]:/ -652.9 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31C[B9]:/ -656.9 "In/Out/Corners" sync / 1[56]:[^:]*:Midgardsormr:31(CF|CD|D0):/ -660.9 "Earth Shaker" sync / 1[56]:[^:]*:Midgardsormr:31D1:/ +646.9 "Flip/Spin" Ability { id: "31C[78]", source: "Midgardsormr" } +652.9 "Flip/Spin" Ability { id: "31C[B9]", source: "Midgardsormr" } +656.9 "In/Out/Corners" Ability { id: "31(CF|CD|D0)", source: "Midgardsormr" } +660.9 "Earth Shaker" Ability { id: "31D1", source: "Midgardsormr" } -669.4 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31D3:/ -671.1 "Akh Morn" sync / 1[56]:[^:]*:Midgardsormr:31C6:/ duration 4 -676.3 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:3249:/ -687.3 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31C5:/ -698.3 "Northern Cross" sync / 1[56]:[^:]*:Midgardsormr:3629:/ -706.8 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:320F:/ -707.3 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31D2:/ -713.8 "Dry Ice" sync / 1[56]:[^:]*:Midgardsormr:3632:/ +669.4 "Horrid Roar" Ability { id: "31D3", source: "Midgardsormr" } +671.1 "Akh Morn" Ability { id: "31C6", source: "Midgardsormr" } duration 4 +676.3 "--sync--" Ability { id: "3249", source: "Midgardsormr" } +687.3 "Tail End" Ability { id: "31C5", source: "Midgardsormr" } +698.3 "Northern Cross" Ability { id: "3629", source: "Midgardsormr" } +706.8 "Thunderstorm" Ability { id: "320F", source: "Midgardsormr" } +707.3 "Thunderstorm" Ability { id: "31D2", source: "Midgardsormr" } +713.8 "Dry Ice" Ability { id: "3632", source: "Midgardsormr" } 721.8 "Exaflare" -724.4 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:35BB:/ +724.4 "--sync--" Ability { id: "35BB", source: "Midgardsormr" } 724.8 "Exaflare" 727.8 "Exaflare" 730.8 "Exaflare" -732.4 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:35BC:/ +732.4 "--sync--" Ability { id: "35BC", source: "Midgardsormr" } 733.8 "Exaflare" -736.3 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31D3:/ window 50,50 jump 559.1 +736.3 "Horrid Roar" Ability { id: "31D3", source: "Midgardsormr" } window 50,50 jump 559.1 747.8 "Northern Cross" 752.4 "Flip/Spin" 758.4 "Flip/Spin" diff --git a/ui/raidboss/data/04-sb/raid/o10s.txt b/ui/raidboss/data/04-sb/raid/o10s.txt index 6488c094c2..44603417ef 100644 --- a/ui/raidboss/data/04-sb/raid/o10s.txt +++ b/ui/raidboss/data/04-sb/raid/o10s.txt @@ -4,96 +4,96 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.3 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31AD:/ window 13,10 -23.5 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31AE:/ -27.4 "Cardinals" sync / 1[56]:[^:]*:Midgardsormr:31B3:/ # X hit, not sure of sync yet - -35.9 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ # drift 0.029 -47.1 "Akh Morn" sync / 1[56]:[^:]*:Midgardsormr:31AB:/ -53.6 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31AE:/ -57.2 "Out" sync / 1[56]:[^:]*:Midgardsormr:31B2:/ -69.9 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31AA:/ - -78.2 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ # drift 0.039 -89.4 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31(AE|B0):/ -92.9 "In/Out" sync / 1[56]:[^:]*:(Midgardsormr)?:31B(2|4):/ # Sometimes missing actor name -92.9 "Earth Shaker" sync / 1[56]:[^:]*:Midgardsormr:31B6:/ # Missing actor name on all but one - -101.8 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31AD:/ -112.0 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31AA:/ -114.1 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31(AE|B0):/ -118.1 "Corners/Cardinals" sync / 1[56]:[^:]*:Midgardsormr:31B(3|5):/ -118.7 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31B8:/ - -131.2 "Time Immemorial" sync / 1[56]:[^:]*:Midgardsormr:32EF:/ -141.5 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31AA:/ -149.8 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ # drift 0.041 -158.9 "Northern Cross" sync / 1[56]:[^:]*:Midgardsormr:3625:/ -163.1 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31AE:/ # drift 0.021 -166.6 "In/Out" sync / 1[56]:[^:]*:Midgardsormr:31B(2|4):/ -173.4 "Akh Rhai" sync / 1[56]:[^:]*:Midgardsormr:3622:/ -175.3 "Dry Ice" sync / 1[56]:[^:]*:Midgardsormr:3631:/ - -179.7 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ # drift 0.036 -191.0 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31(AE|B0):/ -194.5 "In/Out" sync / 1[56]:[^:]*:Midgardsormr:31B(2|4):/ -194.9 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.3 "Flip" Ability { id: "31AD", source: "Midgardsormr" } window 13,10 +23.5 "Spin" Ability { id: "31AE", source: "Midgardsormr" } +27.4 "Cardinals" Ability { id: "31B3", source: "Midgardsormr" } # X hit, not sure of sync yet + +35.9 "Spin" Ability { id: "31AC", source: "Midgardsormr" } # drift 0.029 +47.1 "Akh Morn" Ability { id: "31AB", source: "Midgardsormr" } +53.6 "Spin" Ability { id: "31AE", source: "Midgardsormr" } +57.2 "Out" Ability { id: "31B2", source: "Midgardsormr" } +69.9 "Tail End" Ability { id: "31AA", source: "Midgardsormr" } + +78.2 "Spin" Ability { id: "31AC", source: "Midgardsormr" } # drift 0.039 +89.4 "Flip/Spin" Ability { id: "31(AE|B0)", source: "Midgardsormr" } +92.9 "In/Out" Ability { id: "31B(2|4)", source: "(Midgardsormr)?" } # Sometimes missing actor name +92.9 "Earth Shaker" Ability { id: "31B6", source: "Midgardsormr" } # Missing actor name on all but one + +101.8 "Flip" Ability { id: "31AD", source: "Midgardsormr" } +112.0 "Tail End" Ability { id: "31AA", source: "Midgardsormr" } +114.1 "Flip/Spin" Ability { id: "31(AE|B0)", source: "Midgardsormr" } +118.1 "Corners/Cardinals" Ability { id: "31B(3|5)", source: "Midgardsormr" } +118.7 "Thunderstorm" Ability { id: "31B8", source: "Midgardsormr" } + +131.2 "Time Immemorial" Ability { id: "32EF", source: "Midgardsormr" } +141.5 "Tail End" Ability { id: "31AA", source: "Midgardsormr" } +149.8 "Spin" Ability { id: "31AC", source: "Midgardsormr" } # drift 0.041 +158.9 "Northern Cross" Ability { id: "3625", source: "Midgardsormr" } +163.1 "Flip/Spin" Ability { id: "31AE", source: "Midgardsormr" } # drift 0.021 +166.6 "In/Out" Ability { id: "31B(2|4)", source: "Midgardsormr" } +173.4 "Akh Rhai" Ability { id: "3622", source: "Midgardsormr" } +175.3 "Dry Ice" Ability { id: "3631", source: "Midgardsormr" } + +179.7 "Spin" Ability { id: "31AC", source: "Midgardsormr" } # drift 0.036 +191.0 "Flip/Spin" Ability { id: "31(AE|B0)", source: "Midgardsormr" } +194.5 "In/Out" Ability { id: "31B(2|4)", source: "Midgardsormr" } +194.9 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } 202.9 "--untargetable--" # Add phase -215.9 "Frost Breath" sync / 1[56]:[^:]*:Ancient Dragon:33F1:/ window 2.5,30 +215.9 "Frost Breath" Ability { id: "33F1", source: "Ancient Dragon" } window 2.5,30 226.2 "Frost Breath ready" -282.0 "--sync--" sync / 1[56]:[^:]*:Ancient Dragon:341A:/ window 80,10 -284.2 "Protostar" sync / 1[56]:[^:]*:Midgardsormr:31C3:/ window 500,500 +282.0 "--sync--" Ability { id: "341A", source: "Ancient Dragon" } window 80,10 +284.2 "Protostar" Ability { id: "31C3", source: "Midgardsormr" } window 500,500 294.8 "Protostar" # Damage instances 295.9 "Protostar" 297.0 "Protostar" -310.9 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ -312.5 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31B8:/ -313.0 "Cauterize" sync / 1[56]:[^:]*:Midgardsormr:3240:/ -321.8 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ -323.3 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31B8:/ -323.9 "Cauterize" sync / 1[56]:[^:]*:Midgardsormr:3240:/ -328.0 "Touchdown" sync / 1[56]:[^:]*:Midgardsormr:31BB:/ +310.9 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } +312.5 "Thunderstorm" Ability { id: "31B8", source: "Midgardsormr" } +313.0 "Cauterize" Ability { id: "3240", source: "Midgardsormr" } +321.8 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } +323.3 "Thunderstorm" Ability { id: "31B8", source: "Midgardsormr" } +323.9 "Cauterize" Ability { id: "3240", source: "Midgardsormr" } +328.0 "Touchdown" Ability { id: "31BB", source: "Midgardsormr" } 332.5 "--targetable--" -339.2 "Time Immemorial" sync / 1[56]:[^:]*:Midgardsormr:31BF:/ -350.7 "Crimson Breath" sync / 1[56]:[^:]*:Midgardsormr:31BC:/ -357.9 "Crimson Breath" sync / 1[56]:[^:]*:Midgardsormr:31BC:/ -365.3 "Crimson Breath" sync / 1[56]:[^:]*:Midgardsormr:31BC:/ -372.5 "Crimson Breath" sync / 1[56]:[^:]*:Midgardsormr:31BC:/ -390.3 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:3414:/ +339.2 "Time Immemorial" Ability { id: "31BF", source: "Midgardsormr" } +350.7 "Crimson Breath" Ability { id: "31BC", source: "Midgardsormr" } +357.9 "Crimson Breath" Ability { id: "31BC", source: "Midgardsormr" } +365.3 "Crimson Breath" Ability { id: "31BC", source: "Midgardsormr" } +372.5 "Crimson Breath" Ability { id: "31BC", source: "Midgardsormr" } +390.3 "Horrid Roar" Ability { id: "3414", source: "Midgardsormr" } 390.3 "Flame Blast" 392.9 "Flame Blast" 395.3 "Flame Blast" -396.9 "Hot Tail" sync / 1[56]:[^:]*:Midgardsormr:31BD:/ +396.9 "Hot Tail" Ability { id: "31BD", source: "Midgardsormr" } 408.1 "--untargetable--" 412.3 "Exaflare" -412.8 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ -414.9 "Cauterize" sync / 1[56]:[^:]*:Midgardsormr:3240:/ +412.8 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } +414.9 "Cauterize" Ability { id: "3240", source: "Midgardsormr" } 415.3 "Exaflare" 418.3 "Exaflare" 421.4 "Exaflare" -423.7 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ # drift 0.033 +423.7 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } # drift 0.033 424.4 "Exaflare" -425.8 "Cauterize" sync / 1[56]:[^:]*:Midgardsormr:3240:/ # drift 0.048 +425.8 "Cauterize" Ability { id: "3240", source: "Midgardsormr" } # drift 0.048 431.8 "--targetable--" -444.8 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31AA:/ -456.0 "Akh Morn" sync / 1[56]:[^:]*:Midgardsormr:31AB:/ # drift -0.033 -466.0 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ -467.6 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31B8:/ +444.8 "Tail End" Ability { id: "31AA", source: "Midgardsormr" } +456.0 "Akh Morn" Ability { id: "31AB", source: "Midgardsormr" } # drift -0.033 +466.0 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } +467.6 "Thunderstorm" Ability { id: "31B8", source: "Midgardsormr" } ################## ## Branch point ## ################## -474.4 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ jump 1474.4 # C means spin -474.4 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:31AD:/ jump 2474.4 # D means flip +474.4 "Flip/Spin" Ability { id: "31AC", source: "Midgardsormr" } jump 1474.4 # C means spin +474.4 "--sync--" Ability { id: "31AD", source: "Midgardsormr" } jump 2474.4 # D means flip 484.5 "Tail End" # Cosmetic 486.6 "Flip/Spin" 490.6 "Signal?" @@ -101,12 +101,12 @@ hideall "--sync--" ## Branch A1: Spin->Earthshaker -1474.4 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ -1484.5 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31AA:/ -1486.6 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31AE:/ -1490.6 "In/Out" sync / 1[56]:[^:]*:Midgardsormr:31B(2|4):/ -1490.6 "Earth Shaker" sync / 1[56]:[^:]*:Midgardsormr:31B6:/ -1502.3 "Time Immemorial" sync / 1[56]:[^:]*:Midgardsormr:32EF:/ jump 502.3 +1474.4 "Spin" Ability { id: "31AC", source: "Midgardsormr" } +1484.5 "Tail End" Ability { id: "31AA", source: "Midgardsormr" } +1486.6 "Flip/Spin" Ability { id: "31AE", source: "Midgardsormr" } +1490.6 "In/Out" Ability { id: "31B(2|4)", source: "Midgardsormr" } +1490.6 "Earth Shaker" Ability { id: "31B6", source: "Midgardsormr" } +1502.3 "Time Immemorial" Ability { id: "32EF", source: "Midgardsormr" } jump 502.3 1512.6 "Exaflare" # Cosmetic 1513.7 "Dry Ice" 1515.7 "Exaflare" @@ -116,12 +116,12 @@ hideall "--sync--" ## Branch B1: Flip->Thunderstorm -2474.4 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31AD:/ -2484.5 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31AA:/ -2486.6 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31AE:/ -2490.6 "Corners/Cardinals" sync / 1[56]:[^:]*:Midgardsormr:31B(3|5):/ -2492.1 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31B8:/ -2502.3 "Time Immemorial" sync / 1[56]:[^:]*:Midgardsormr:32EF:/ jump 502.3 +2474.4 "Flip" Ability { id: "31AD", source: "Midgardsormr" } +2484.5 "Tail End" Ability { id: "31AA", source: "Midgardsormr" } +2486.6 "Flip/Spin" Ability { id: "31AE", source: "Midgardsormr" } +2490.6 "Corners/Cardinals" Ability { id: "31B(3|5)", source: "Midgardsormr" } +2492.1 "Thunderstorm" Ability { id: "31B8", source: "Midgardsormr" } +2502.3 "Time Immemorial" Ability { id: "32EF", source: "Midgardsormr" } jump 502.3 2512.6 "Exaflare" # Cosmetic 2513.7 "Dry Ice" 2515.7 "Exaflare" @@ -133,12 +133,12 @@ hideall "--sync--" ## Branches A1/B1 converge back ## ################################## -502.3 "Time Immemorial" sync / 1[56]:[^:]*:Midgardsormr:32EF:/ +502.3 "Time Immemorial" Ability { id: "32EF", source: "Midgardsormr" } 512.6 "Exaflare" -513.7 "Dry Ice" sync / 1[56]:[^:]*:Midgardsormr:3631:/ +513.7 "Dry Ice" Ability { id: "3631", source: "Midgardsormr" } 515.7 "Exaflare" 518.6 "Exaflare" -520.8 "Akh Morn" sync / 1[56]:[^:]*:Midgardsormr:31AB:/ +520.8 "Akh Morn" Ability { id: "31AB", source: "Midgardsormr" } 521.7 "Exaflare" 524.7 "Exaflare" @@ -146,31 +146,31 @@ hideall "--sync--" ## Branch point ## ################## -536.8 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ jump 1536.8 # C means spin->shaker -536.8 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:31AD:/ jump 2536.8 # D means flip->thunder +536.8 "Flip/Spin" Ability { id: "31AC", source: "Midgardsormr" } jump 1536.8 # C means spin->shaker +536.8 "--sync--" Ability { id: "31AD", source: "Midgardsormr" } jump 2536.8 # D means flip->thunder 545.9 "Northern Cross" # Cosmetic 550.1 "Spin/Flip" 553.6 "Position" 553.6 "Shaker/Thunder" ## Branch A2: Spin->Earthshaker -1536.8 "Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ -1545.9 "Northern Cross" sync / 1[56]:[^:]*:Midgardsormr:3625:/ -1550.1 "Spin/Flip" sync / 1[56]:[^:]*:Midgardsormr:31AE:/ -1553.6 "In/Out" sync / 1[56]:[^:]*:Midgardsormr:31B(2|4):/ -1553.6 "Earth Shaker" sync / 1[56]:[^:]*:Midgardsormr:31B6:/ -1562.3 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ jump 562.3 +1536.8 "Spin" Ability { id: "31AC", source: "Midgardsormr" } +1545.9 "Northern Cross" Ability { id: "3625", source: "Midgardsormr" } +1550.1 "Spin/Flip" Ability { id: "31AE", source: "Midgardsormr" } +1553.6 "In/Out" Ability { id: "31B(2|4)", source: "Midgardsormr" } +1553.6 "Earth Shaker" Ability { id: "31B6", source: "Midgardsormr" } +1562.3 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } jump 562.3 1573.4 "Akh Rhai" # Cosmetic 1579.6 "Tail End" 1587.9 "Flip/Spin" ## Branch B2: Flip->Thunderstorm -2536.8 "Flip" sync / 1[56]:[^:]*:Midgardsormr:31AD:/ -2545.9 "Northern Cross" sync / 1[56]:[^:]*:Midgardsormr:3625:/ -2550.1 "Spin/Flip" sync / 1[56]:[^:]*:Midgardsormr:31AE:/ -2553.6 "Corners/Cardinals" sync / 1[56]:[^:]*:Midgardsormr:31B(3|5):/ -2555.1 "Thunderstorm" sync / 1[56]:[^:]*:Midgardsormr:31B8:/ -2562.3 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ jump 562.3 +2536.8 "Flip" Ability { id: "31AD", source: "Midgardsormr" } +2545.9 "Northern Cross" Ability { id: "3625", source: "Midgardsormr" } +2550.1 "Spin/Flip" Ability { id: "31AE", source: "Midgardsormr" } +2553.6 "Corners/Cardinals" Ability { id: "31B(3|5)", source: "Midgardsormr" } +2555.1 "Thunderstorm" Ability { id: "31B8", source: "Midgardsormr" } +2562.3 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } jump 562.3 2573.4 "Akh Rhai" # Cosmetic 2579.6 "Tail End" 2587.9 "Flip/Spin" @@ -179,17 +179,17 @@ hideall "--sync--" ## Branches A2/B2 converge back ## ################################## -562.3 "Horrid Roar" sync / 1[56]:[^:]*:Midgardsormr:31B9:/ -573.4 "Akh Rhai" sync / 1[56]:[^:]*:Midgardsormr:3622:/ -579.6 "Tail End" sync / 1[56]:[^:]*:Midgardsormr:31AA:/ # drift 0.026 +562.3 "Horrid Roar" Ability { id: "31B9", source: "Midgardsormr" } +573.4 "Akh Rhai" Ability { id: "3622", source: "Midgardsormr" } +579.6 "Tail End" Ability { id: "31AA", source: "Midgardsormr" } # drift 0.026 ################## ## Branch point ## ################## # Return to A1/B1 -587.9 "Flip/Spin" sync / 1[56]:[^:]*:Midgardsormr:31AC:/ jump 1474.4 # C means spin->shaker -587.9 "--sync--" sync / 1[56]:[^:]*:Midgardsormr:31AD:/ jump 2474.4 # D means flip->thunder +587.9 "Flip/Spin" Ability { id: "31AC", source: "Midgardsormr" } jump 1474.4 # C means spin->shaker +587.9 "--sync--" Ability { id: "31AD", source: "Midgardsormr" } jump 2474.4 # D means flip->thunder 598.0 "Tail End" # Cosmetic 600.1 "Flip/Spin" 604.1 "Signal?" @@ -197,7 +197,7 @@ hideall "--sync--" 615.8 "Time Immemorial" # Enrage -700.0 "--sync--" sync / 14:[^:]*:Midgardsormr:3247:/ window 700,3000 +700.0 "--sync--" StartsUsing { id: "3247", source: "Midgardsormr" } window 700,3000 704.9 "Enrage Hit 1" 707.2 "Enrage Hit 2" 708.5 "Enrage Hit 3" diff --git a/ui/raidboss/data/04-sb/raid/o11n.ts b/ui/raidboss/data/04-sb/raid/o11n.ts index 065d728daf..f923e0f5d3 100644 --- a/ui/raidboss/data/04-sb/raid/o11n.ts +++ b/ui/raidboss/data/04-sb/raid/o11n.ts @@ -178,6 +178,7 @@ const triggerSet: TriggerSet = { timelineReplace: [ { 'locale': 'de', + 'missingTranslations': true, 'replaceSync': { 'Engaging Delta Attack protocol': 'Reinitialisiere Deltaprotokoll', 'Level Checker': 'Monitor', @@ -205,6 +206,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', + 'missingTranslations': true, 'replaceSync': { 'Engaging Delta Attack protocol': 'Nécessité d\'utiliser l\'attaque Delta', 'Level Checker': 'vérifiniveau', @@ -233,6 +235,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ja', + 'missingTranslations': true, 'replaceSync': { 'Engaging Delta Attack protocol': 'デルタアタックの必要性を認定します', 'Level Checker': 'レベルチェッカー', @@ -260,6 +263,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'cn', + 'missingTranslations': true, 'replaceSync': { 'Engaging Delta Attack protocol': '认定有必要使用三角攻击。', 'Level Checker': '等级检测仪', @@ -287,6 +291,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ko', + 'missingTranslations': true, 'replaceSync': { 'Engaging Delta Attack protocol': '델타 공격의 필요성을 인정합니다', 'Level Checker': '레벨 측정기', diff --git a/ui/raidboss/data/04-sb/raid/o11n.txt b/ui/raidboss/data/04-sb/raid/o11n.txt index 92f3496126..60a377aba7 100644 --- a/ui/raidboss/data/04-sb/raid/o11n.txt +++ b/ui/raidboss/data/04-sb/raid/o11n.txt @@ -4,99 +4,99 @@ hideall "--Reset--" hideall "--sync--" ## Common start -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.8 "Atomic Ray" sync / 1[56]:[^:]*:Omega:3286:/ window 20,80 -24.9 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:3287:/ -27.0 "Ballistic Missile?" sync / 1[56]:[^:]*:Omega:327E:/ window 30,40 jump 227.0 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.8 "Atomic Ray" Ability { id: "3286", source: "Omega" } window 20,80 +24.9 "Mustard Bomb" Ability { id: "3287", source: "Omega" } +27.0 "Ballistic Missile?" Ability { id: "327E", source: "Omega" } window 30,40 jump 227.0 37.1 "Flamethrower?" -38.1 "Starboard/Larboard Cannon?" sync / 1[56]:[^:]*:Omega:328[13]:/ window 40,40 jump 138.1 +38.1 "Starboard/Larboard Cannon?" Ability { id: "328[13]", source: "Omega" } window 40,40 jump 138.1 43.8 "Starboard/Larboard Cannon?" ## Starboard/Larboard first path -138.1 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[13]:/ -143.8 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[24]:/ -146.5 "Ballistic Missile" sync / 1[56]:[^:]*:Omega:327E:/ -156.7 "Flamethrower" sync / 1[56]:[^:]*:Omega:327D:/ -156.7 "Ballistic Impact" sync / 1[56]:[^:]*:Omega:327F:/ -167.8 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:3287:/ # drift 0.044 -178.7 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ window 50,10 jump 478.7 +138.1 "Starboard/Larboard Cannon" Ability { id: "328[13]", source: "Omega" } +143.8 "Starboard/Larboard Cannon" Ability { id: "328[24]", source: "Omega" } +146.5 "Ballistic Missile" Ability { id: "327E", source: "Omega" } +156.7 "Flamethrower" Ability { id: "327D", source: "Omega" } +156.7 "Ballistic Impact" Ability { id: "327F", source: "Omega" } +167.8 "Mustard Bomb" Ability { id: "3287", source: "Omega" } # drift 0.044 +178.7 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } window 50,10 jump 478.7 203.5 "Peripheral Synthesis" 217.6 "Flamethrower" 227.8 "Atomic Ray" ## Ballistic Missile first path -227.0 "Ballistic Missile" sync / 1[56]:[^:]*:Omega:327E:/ -237.1 "Flamethrower" sync / 1[56]:[^:]*:Omega:327D:/ -237.1 "Ballistic Impact" sync / 1[56]:[^:]*:Omega:327F:/ -248.2 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:3287:/ -261.4 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[13]:/ -267.0 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[24]:/ -278.7 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ window 50,10 jump 478.7 +227.0 "Ballistic Missile" Ability { id: "327E", source: "Omega" } +237.1 "Flamethrower" Ability { id: "327D", source: "Omega" } +237.1 "Ballistic Impact" Ability { id: "327F", source: "Omega" } +248.2 "Mustard Bomb" Ability { id: "3287", source: "Omega" } +261.4 "Starboard/Larboard Cannon" Ability { id: "328[13]", source: "Omega" } +267.0 "Starboard/Larboard Cannon" Ability { id: "328[24]", source: "Omega" } +278.7 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } window 50,10 jump 478.7 303.5 "Peripheral Synthesis" 317.6 "Flamethrower" 327.8 "Atomic Ray" ## Paths converge -478.7 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ -503.5 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ -517.6 "Flamethrower" sync / 1[56]:[^:]*:Omega:327D:/ -527.8 "Atomic Ray" sync / 1[56]:[^:]*:Omega:3286:/ +478.7 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } +503.5 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } +517.6 "Flamethrower" Ability { id: "327D", source: "Omega" } +527.8 "Atomic Ray" Ability { id: "3286", source: "Omega" } ## Midphase -534.5 "Program Loop" sync / 1[56]:[^:]*:Omega:3273:/ window 150,150 +534.5 "Program Loop" Ability { id: "3273", source: "Omega" } window 150,150 534.5 "--untargetable--" -549.6 "Executable 1" sync / 1[56]:[^:]*:Level Checker:35A8:/ -570.6 "Executable 2" sync / 1[56]:[^:]*:Level Checker:35A8:/ -574.6 "Reset" sync / 1[56]:[^:]*:Level Checker:35AA:/ -578.6 "Reformat" sync / 1[56]:[^:]*:Level Checker:35A9:/ -587.6 "--sync--" sync / 14:[^:]*:Level Checker:327A:/ -611.6 "Force Quit" sync / 1[56]:[^:]*:Level Checker:327A:/ +549.6 "Executable 1" Ability { id: "35A8", source: "Level Checker" } +570.6 "Executable 2" Ability { id: "35A8", source: "Level Checker" } +574.6 "Reset" Ability { id: "35AA", source: "Level Checker" } +578.6 "Reformat" Ability { id: "35A9", source: "Level Checker" } +587.6 "--sync--" StartsUsing { id: "327A", source: "Level Checker" } +611.6 "Force Quit" Ability { id: "327A", source: "Level Checker" } ## Delta Attack -1000.0 "--sync--" sync / 00:0044:Omega:Program failure detected/ window 1500,100 -1007.0 "--sync--" sync / 14:[^:]*:Omega:327B:/ window 1500,100 -1037.0 "Delta Attack" sync / 1[56]:[^:]*:Omega:327B:/ window 1500,100 +1000.0 "--sync--" GameLog { code: "0044", name: "Omega", line: "Program failure detected.*?" } window 1500,100 +1007.0 "--sync--" StartsUsing { id: "327B", source: "Omega" } window 1500,100 +1037.0 "Delta Attack" Ability { id: "327B", source: "Omega" } window 1500,100 1048.4 "--targetable--" ## Loop -1060.3 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ window 10,10 -1070.5 "Flamethrower" sync / 1[56]:[^:]*:Omega:327D:/ -1072.9 "Rush" sync / 1[56]:[^:]*:Rocket Punch:359C:/ -1078.7 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ -1081.8 "Ballistic Missile" sync / 1[56]:[^:]*:Omega:327E:/ -1091.3 "Rush" sync / 1[56]:[^:]*:Rocket Punch:359C:/ # drift -0.041999 -1091.9 "Ballistic Impact" sync / 1[56]:[^:]*:Omega:327F:/ -1101.0 "Electric Slide" sync / 1[56]:[^:]*:Omega:3285:/ -1115.3 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:3287:/ -1117.6 "Blaster" sync / 1[56]:[^:]*:Omega:3280:/ -1127.7 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[13]:/ -1133.4 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[24]:/ -1140.1 "Atomic Ray" sync / 1[56]:[^:]*:Omega:3286:/ -1150.3 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ # drift 0.046 -1163.0 "Rush" sync / 1[56]:[^:]*:Rocket Punch:359C:/ -1175.1 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ -1185.3 "Flamethrower" sync / 1[56]:[^:]*:Omega:327D:/ -1187.6 "Rush" sync / 1[56]:[^:]*:Rocket Punch:359C:/ -1196.4 "Atomic Ray" sync / 1[56]:[^:]*:Omega:3286:/ -1204.5 "Ballistic Missile" sync / 1[56]:[^:]*:Omega:327E:/ # drift 0.042 -1214.6 "Flamethrower" sync / 1[56]:[^:]*:Omega:327D:/ -1214.6 "Ballistic Impact" sync / 1[56]:[^:]*:Omega:327F:/ -1221.7 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[13]:/ -1227.3 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[24]:/ -1237.1 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ -1249.8 "Rush" sync / 1[56]:[^:]*:Rocket Punch:359C:/ -1255.6 "Electric Slide" sync / 1[56]:[^:]*:Omega:3285:/ # drift -0.049 -1262.7 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[13]:/ -1268.4 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:328[24]:/ -1275.0 "Atomic Ray" sync / 1[56]:[^:]*:Omega:3286:/ # drift 0.042999 -1290.3 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:3287:/ -1303.5 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:3287:/ -1305.6 "Blaster" sync / 1[56]:[^:]*:Omega:3280:/ # drift 0.046001 -1314.8 "Atomic Ray" sync / 1[56]:[^:]*:Omega:3286:/ -1320.9 "Atomic Ray" sync / 1[56]:[^:]*:Omega:3286:/ +1060.3 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } window 10,10 +1070.5 "Flamethrower" Ability { id: "327D", source: "Omega" } +1072.9 "Rush" Ability { id: "359C", source: "Rocket Punch" } +1078.7 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } +1081.8 "Ballistic Missile" Ability { id: "327E", source: "Omega" } +1091.3 "Rush" Ability { id: "359C", source: "Rocket Punch" } # drift -0.041999 +1091.9 "Ballistic Impact" Ability { id: "327F", source: "Omega" } +1101.0 "Electric Slide" Ability { id: "3285", source: "Omega" } +1115.3 "Mustard Bomb" Ability { id: "3287", source: "Omega" } +1117.6 "Blaster" Ability { id: "3280", source: "Omega" } +1127.7 "Starboard/Larboard Cannon" Ability { id: "328[13]", source: "Omega" } +1133.4 "Starboard/Larboard Cannon" Ability { id: "328[24]", source: "Omega" } +1140.1 "Atomic Ray" Ability { id: "3286", source: "Omega" } +1150.3 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } # drift 0.046 +1163.0 "Rush" Ability { id: "359C", source: "Rocket Punch" } +1175.1 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } +1185.3 "Flamethrower" Ability { id: "327D", source: "Omega" } +1187.6 "Rush" Ability { id: "359C", source: "Rocket Punch" } +1196.4 "Atomic Ray" Ability { id: "3286", source: "Omega" } +1204.5 "Ballistic Missile" Ability { id: "327E", source: "Omega" } # drift 0.042 +1214.6 "Flamethrower" Ability { id: "327D", source: "Omega" } +1214.6 "Ballistic Impact" Ability { id: "327F", source: "Omega" } +1221.7 "Starboard/Larboard Cannon" Ability { id: "328[13]", source: "Omega" } +1227.3 "Starboard/Larboard Cannon" Ability { id: "328[24]", source: "Omega" } +1237.1 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } +1249.8 "Rush" Ability { id: "359C", source: "Rocket Punch" } +1255.6 "Electric Slide" Ability { id: "3285", source: "Omega" } # drift -0.049 +1262.7 "Starboard/Larboard Cannon" Ability { id: "328[13]", source: "Omega" } +1268.4 "Starboard/Larboard Cannon" Ability { id: "328[24]", source: "Omega" } +1275.0 "Atomic Ray" Ability { id: "3286", source: "Omega" } # drift 0.042999 +1290.3 "Mustard Bomb" Ability { id: "3287", source: "Omega" } +1303.5 "Mustard Bomb" Ability { id: "3287", source: "Omega" } +1305.6 "Blaster" Ability { id: "3280", source: "Omega" } # drift 0.046001 +1314.8 "Atomic Ray" Ability { id: "3286", source: "Omega" } +1320.9 "Atomic Ray" Ability { id: "3286", source: "Omega" } # Loop lookahead -1334.2 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:3270:/ window 50,50 jump 1060.3 +1334.2 "Peripheral Synthesis" Ability { id: "3270", source: "Omega" } window 50,50 jump 1060.3 1344.4 "Flamethrower" 1346.8 "Rush" 1352.6 "Peripheral Synthesis" diff --git a/ui/raidboss/data/04-sb/raid/o11s.txt b/ui/raidboss/data/04-sb/raid/o11s.txt index f26a850678..9d550d7817 100644 --- a/ui/raidboss/data/04-sb/raid/o11s.txt +++ b/ui/raidboss/data/04-sb/raid/o11s.txt @@ -8,108 +8,108 @@ hideall "--Reset--" hideall "--sync--" # Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -8.0 "--sync--" sync / 14:[^:]*:Omega:326C:/ window 8,8 -12.0 "Atomic Ray" sync / 1[56]:[^:]*:Omega:326C:/ -24.0 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:326D:/ -30.0 "Flamethrower" sync / 1[56]:[^:]*:Omega:325C:/ -32.0 "Afterburner" sync / 1[56]:[^:]*:Omega:325E:/ -39.5 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:326[24]:/ -45.0 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:326[35]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +8.0 "--sync--" StartsUsing { id: "326C", source: "Omega" } window 8,8 +12.0 "Atomic Ray" Ability { id: "326C", source: "Omega" } +24.0 "Mustard Bomb" Ability { id: "326D", source: "Omega" } +30.0 "Flamethrower" Ability { id: "325C", source: "Omega" } +32.0 "Afterburner" Ability { id: "325E", source: "Omega" } +39.5 "Starboard/Larboard Cannon" Ability { id: "326[24]", source: "Omega" } +45.0 "Starboard/Larboard Cannon" Ability { id: "326[35]", source: "Omega" } # Note: this looks like it can push early. -53.5 "--sync--" sync / 14:[^:]*:Omega:324A:/ window 60,10 -56.5 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:324A:/ -72.5 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:326D:/ +53.5 "--sync--" StartsUsing { id: "324A", source: "Omega" } window 60,10 +56.5 "Peripheral Synthesis" Ability { id: "324A", source: "Omega" } +72.5 "Mustard Bomb" Ability { id: "326D", source: "Omega" } ### Phase 2: Tower Dance -87.5 "--sync--" sync / 14:[^:]*:Omega:3251:/ window 90,10 +87.5 "--sync--" StartsUsing { id: "3251", source: "Omega" } window 90,10 91.5 "--untargetable--" -91.5 "Program Loop" sync / 1[56]:[^:]*:Omega:3251:/ +91.5 "Program Loop" Ability { id: "3251", source: "Omega" } 101.6 "--targetable--" -106.5 "Executable" sync / 1[56]:[^:]*:Level Checker:3626:/ -115.5 "Ferrofluid" sync / 1[56]:[^:]*:Level Checker:3253:/ -116.5 "Magnetism" sync / 1[56]:[^:]*:Level Checker:3254:/ -116.5 "Repel" sync / 1[56]:[^:]*:Level Checker:3255:/ -116.5 "Magnetism" sync / 1[56]:[^:]*:Level Checker:3254:/ -118.5 "Dual Storage Violation" sync / 1[56]:[^:]*:Omega:3258:/ -128.5 "Executable" sync / 1[56]:[^:]*:Level Checker:3626:/ -139.5 "Dual Storage Violation" sync / 1[56]:[^:]*:Omega:3258:/ -145.5 "Storage Violation" sync / 1[56]:[^:]*:Omega:3256:/ -147.5 "Dual Storage Violation" sync / 1[56]:[^:]*:Omega:3258:/ -153.5 "Storage Violation" sync / 1[56]:[^:]*:Omega:3256:/ -155.5 "Dual Storage Violation" sync / 1[56]:[^:]*:Omega:3258:/ -158.4 "Reset" sync / 1[56]:[^:]*:Level Checker:3628:/ -161.4 "Storage Violation" sync / 1[56]:[^:]*:Omega:3256:/ -164.4 "Reformat" sync / 1[56]:[^:]*:Level Checker:3627:/ +106.5 "Executable" Ability { id: "3626", source: "Level Checker" } +115.5 "Ferrofluid" Ability { id: "3253", source: "Level Checker" } +116.5 "Magnetism" Ability { id: "3254", source: "Level Checker" } +116.5 "Repel" Ability { id: "3255", source: "Level Checker" } +116.5 "Magnetism" Ability { id: "3254", source: "Level Checker" } +118.5 "Dual Storage Violation" Ability { id: "3258", source: "Omega" } +128.5 "Executable" Ability { id: "3626", source: "Level Checker" } +139.5 "Dual Storage Violation" Ability { id: "3258", source: "Omega" } +145.5 "Storage Violation" Ability { id: "3256", source: "Omega" } +147.5 "Dual Storage Violation" Ability { id: "3258", source: "Omega" } +153.5 "Storage Violation" Ability { id: "3256", source: "Omega" } +155.5 "Dual Storage Violation" Ability { id: "3258", source: "Omega" } +158.4 "Reset" Ability { id: "3628", source: "Level Checker" } +161.4 "Storage Violation" Ability { id: "3256", source: "Omega" } +164.4 "Reformat" Ability { id: "3627", source: "Level Checker" } 185.9 "Force Quit Enrage" ### Phase 3 -300.0 "--sync--" sync / 14:[^:]*:Omega:325B:/ window 200,200 -310.0 "Delta Attack" sync / 1[56]:[^:]*:Omega:325B:/ +300.0 "--sync--" StartsUsing { id: "325B", source: "Omega" } window 200,200 +310.0 "Delta Attack" Ability { id: "325B", source: "Omega" } 321.4 "--targetable--" -330.1 "Ballistic Missile" sync / 1[56]:[^:]*:Omega:325F:/ -337.2 "Flamethrower" sync / 1[56]:[^:]*:Omega:325C:/ -339.3 "Afterburner" sync / 1[56]:[^:]*:Omega:325E:/ -340.3 "Ballistic Impact" sync / 1[56]:[^:]*:Omega:3260:/ -346.8 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:326[24]:/ -352.3 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:326[35]:/ -366.8 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:326D:/ -368.9 "Blaster" sync / 1[56]:[^:]*:Omega:3261:/ -377.0 "Atomic Ray" sync / 1[56]:[^:]*:Omega:326C:/ +330.1 "Ballistic Missile" Ability { id: "325F", source: "Omega" } +337.2 "Flamethrower" Ability { id: "325C", source: "Omega" } +339.3 "Afterburner" Ability { id: "325E", source: "Omega" } +340.3 "Ballistic Impact" Ability { id: "3260", source: "Omega" } +346.8 "Starboard/Larboard Cannon" Ability { id: "326[24]", source: "Omega" } +352.3 "Starboard/Larboard Cannon" Ability { id: "326[35]", source: "Omega" } +366.8 "Mustard Bomb" Ability { id: "326D", source: "Omega" } +368.9 "Blaster" Ability { id: "3261", source: "Omega" } +377.0 "Atomic Ray" Ability { id: "326C", source: "Omega" } -387.0 "--sync--" sync / 14:[^:]*:Omega:324A:/ window 90,10 -390.0 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:324A:/ -403.0 "Rush" sync / 1[56]:[^:]*:Rocket Punch:3250:/ -410.0 "Electric Slide" sync / 1[56]:[^:]*:Omega:326B:/ -419.0 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:324A:/ -432.0 "Rush" sync / 1[56]:[^:]*:Rocket Punch:3250:/ -438.0 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:326[24]:/ -443.5 "Starboard/Larboard Cannon" sync / 1[56]:[^:]*:Omega:326[35]:/ +387.0 "--sync--" StartsUsing { id: "324A", source: "Omega" } window 90,10 +390.0 "Peripheral Synthesis" Ability { id: "324A", source: "Omega" } +403.0 "Rush" Ability { id: "3250", source: "Rocket Punch" } +410.0 "Electric Slide" Ability { id: "326B", source: "Omega" } +419.0 "Peripheral Synthesis" Ability { id: "324A", source: "Omega" } +432.0 "Rush" Ability { id: "3250", source: "Rocket Punch" } +438.0 "Starboard/Larboard Cannon" Ability { id: "326[24]", source: "Omega" } +443.5 "Starboard/Larboard Cannon" Ability { id: "326[35]", source: "Omega" } ### Phase 4: Updated Program Light Show -457.0 "Update Program" sync / 1[56]:[^:]*:Omega:36FC:/ -469.0 "Flamethrower" sync / 1[56]:[^:]*:Omega:36FE:/ -471.0 "Afterburner" sync / 1[56]:[^:]*:Omega:3700:/ -477.5 "Starboard/Larboard Surge" sync / 1[56]:[^:]*:Omega:326[68]:/ -480.0 "Starboard/Larboard Surge" sync / 1[56]:[^:]*:Omega:326[79]:/ +457.0 "Update Program" Ability { id: "36FC", source: "Omega" } +469.0 "Flamethrower" Ability { id: "36FE", source: "Omega" } +471.0 "Afterburner" Ability { id: "3700", source: "Omega" } +477.5 "Starboard/Larboard Surge" Ability { id: "326[68]", source: "Omega" } +480.0 "Starboard/Larboard Surge" Ability { id: "326[79]", source: "Omega" } -496.0 "Pantokrator 1" sync / 1[56]:[^:]*:Omega:3702:/ +496.0 "Pantokrator 1" Ability { id: "3702", source: "Omega" } 500.0 "Ballistic Impact" duration 8 -510.1 "Condensed Wave Cannon Kyrios" sync / 1[56]:[^:]*:Omega:3704:/ -519.1 "Wave Cannon Kyrios 1" sync / 1[56]:[^:]*:Omega:3706:/ -526.2 "Wave Cannon Kyrios 2" sync / 1[56]:[^:]*:Omega:3706:/ -535.2 "Long Needle Kyrios" sync / 1[56]:[^:]*:Omega:370C:/ -544.6 "Blaster" sync / 1[56]:[^:]*:Omega:3261:/ -550.7 "Atomic Ray" sync / 1[56]:[^:]*:Omega:326C:/ +510.1 "Condensed Wave Cannon Kyrios" Ability { id: "3704", source: "Omega" } +519.1 "Wave Cannon Kyrios 1" Ability { id: "3706", source: "Omega" } +526.2 "Wave Cannon Kyrios 2" Ability { id: "3706", source: "Omega" } +535.2 "Long Needle Kyrios" Ability { id: "370C", source: "Omega" } +544.6 "Blaster" Ability { id: "3261", source: "Omega" } +550.7 "Atomic Ray" Ability { id: "326C", source: "Omega" } -561.8 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:324A:/ -565.8 "Unmitigated Explosion" # sync / 1[56]:[^:]*:Omega:36F8:/ # no sync -586.8 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:326D:/ -598.8 "Atomic Ray" sync / 1[56]:[^:]*:Omega:326C:/ -600.8 "Ballistic Missile" sync / 1[56]:[^:]*:Omega:325F:/ -607.8 "Flamethrower" sync / 1[56]:[^:]*:Omega:36FE:/ -609.8 "Afterburner" sync / 1[56]:[^:]*:Omega:3700:/ -610.8 "Ballistic Impact" sync / 1[56]:[^:]*:Omega:3260:/ -616.3 "Starboard/Larboard Surge" sync / 1[56]:[^:]*:Omega:326[68]:/ -618.8 "Starboard/Larboard Surge" sync / 1[56]:[^:]*:Omega:326[79]:/ +561.8 "Peripheral Synthesis" Ability { id: "324A", source: "Omega" } +565.8 "Unmitigated Explosion" # Ability { id: "36F8", source: "Omega" } # no sync +586.8 "Mustard Bomb" Ability { id: "326D", source: "Omega" } +598.8 "Atomic Ray" Ability { id: "326C", source: "Omega" } +600.8 "Ballistic Missile" Ability { id: "325F", source: "Omega" } +607.8 "Flamethrower" Ability { id: "36FE", source: "Omega" } +609.8 "Afterburner" Ability { id: "3700", source: "Omega" } +610.8 "Ballistic Impact" Ability { id: "3260", source: "Omega" } +616.3 "Starboard/Larboard Surge" Ability { id: "326[68]", source: "Omega" } +618.8 "Starboard/Larboard Surge" Ability { id: "326[79]", source: "Omega" } -634.7 "Pantokrator 2" sync / 1[56]:[^:]*:Omega:3702:/ +634.7 "Pantokrator 2" Ability { id: "3702", source: "Omega" } 639.7 "Ballistic Impact" duration 18 # +5 642.7 "Flamethrower" duration 5.5 # +3 -646.7 "Guided Missile Kyrios" sync / 1[56]:[^:]*:Omega:3709:/ duration 6.5 -660.7 "Condensed Wave Cannon Kyrios" sync / 1[56]:[^:]*:Omega:3704:/ +646.7 "Guided Missile Kyrios" Ability { id: "3709", source: "Omega" } duration 6.5 +660.7 "Condensed Wave Cannon Kyrios" Ability { id: "3704", source: "Omega" } 662.7 "Diffuse Wave Cannon Kyrios" duration 16 # +2 -670.7 "Wave Cannon Kyrios 1" sync / 1[56]:[^:]*:Omega:3706:/ -677.7 "Wave Cannon Kyrios 2" sync / 1[56]:[^:]*:Omega:3706:/ -700.8 "Starboard/Larboard Surge" sync / 1[56]:[^:]*:Omega:326[68]:/ -703.3 "Starboard/Larboard Surge" sync / 1[56]:[^:]*:Omega:326[79]:/ -709.8 "Starboard/Larboard Surge" sync / 1[56]:[^:]*:Omega:326[68]:/ -712.3 "Starboard/Larboard Surge" sync / 1[56]:[^:]*:Omega:326[79]:/ +670.7 "Wave Cannon Kyrios 1" Ability { id: "3706", source: "Omega" } +677.7 "Wave Cannon Kyrios 2" Ability { id: "3706", source: "Omega" } +700.8 "Starboard/Larboard Surge" Ability { id: "326[68]", source: "Omega" } +703.3 "Starboard/Larboard Surge" Ability { id: "326[79]", source: "Omega" } +709.8 "Starboard/Larboard Surge" Ability { id: "326[68]", source: "Omega" } +712.3 "Starboard/Larboard Surge" Ability { id: "326[79]", source: "Omega" } -724.8 "Charybdis" sync / 1[56]:[^:]*:Omega:326E:/ window 10,10 -738.8 "Mustard Bomb" sync / 1[56]:[^:]*:Omega:326D:/ -740.9 "Blaster" sync / 1[56]:[^:]*:Omega:3261:/ -748.9 "Atomic Ray" sync / 1[56]:[^:]*:Omega:326A:/ -754.9 "Atomic Ray" sync / 1[56]:[^:]*:Omega:326A:/ -760.9 "Atomic Ray" sync / 1[56]:[^:]*:Omega:326A:/ +724.8 "Charybdis" Ability { id: "326E", source: "Omega" } window 10,10 +738.8 "Mustard Bomb" Ability { id: "326D", source: "Omega" } +740.9 "Blaster" Ability { id: "3261", source: "Omega" } +748.9 "Atomic Ray" Ability { id: "326A", source: "Omega" } +754.9 "Atomic Ray" Ability { id: "326A", source: "Omega" } +760.9 "Atomic Ray" Ability { id: "326A", source: "Omega" } 780.9 "Loop Enrage" # guessing at time diff --git a/ui/raidboss/data/04-sb/raid/o12n.ts b/ui/raidboss/data/04-sb/raid/o12n.ts index 6067a146f4..fc89d521b7 100644 --- a/ui/raidboss/data/04-sb/raid/o12n.ts +++ b/ui/raidboss/data/04-sb/raid/o12n.ts @@ -182,6 +182,7 @@ const triggerSet: TriggerSet = { timelineReplace: [ { 'locale': 'de', + 'missingTranslations': true, 'replaceSync': { 'Calculations indicate increased probability of defeat': 'Warnung. Erhöhte Wahrscheinlichkeit einer Niederlage', @@ -223,6 +224,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', + 'missingTranslations': true, 'replaceSync': { '\\\\ Warning\\\\\. Calculations indicate': 'Alerte... Alerte... Forte augmentation', @@ -264,6 +266,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ja', + 'missingTranslations': true, 'replaceSync': { 'Omega(?!-)': 'オメガ', 'Omega-M': 'オメガM', @@ -302,6 +305,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'cn', + 'missingTranslations': true, 'replaceSync': { 'Calculations indicate increased probability of defeat': '警告……警告……失败的危险性上升……', 'Omega(?!-)': '欧米茄', @@ -341,6 +345,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ko', + 'missingTranslations': true, 'replaceSync': { 'Omega(?!-)': '오메가', 'Omega-M': '오메가 M', diff --git a/ui/raidboss/data/04-sb/raid/o12n.txt b/ui/raidboss/data/04-sb/raid/o12n.txt index adabdf7c07..283f504f55 100644 --- a/ui/raidboss/data/04-sb/raid/o12n.txt +++ b/ui/raidboss/data/04-sb/raid/o12n.txt @@ -6,42 +6,42 @@ hideall "--sync--" ### Phase 1 (loops until low%) 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -15.3 "Solar Ray" sync / 1[56]:[^:]*:Omega-M:330F:/ window 16,3 -20.4 "Program Alpha" sync / 1[56]:[^:]*:Omega-M:3308:/ -23.5 "Floodlight" sync / 1[56]:[^:]*:Omega-M:3309:/ -27.5 "Spotlight" sync / 1[56]:[^:]*:Omega-M:330A:/ -27.7 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32FF:/ -38.0 "Subject Simulation F" sync / 1[56]:[^:]*:Omega-M:32F1:/ -50.4 "Discharger" sync / 1[56]:[^:]*:Omega-M:32F6:/ -61.7 "Optimized Fire III" sync / 1[56]:[^:]*:Omega-M:330D:/ -66.9 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega-M:3303:/ -75.1 "Laser Shower" sync / 1[56]:[^:]*:Omega-M:3312:/ -92.5 "Synthetic Blades" sync / 1[56]:[^:]*:Omega-M:3301:/ -100.6 "Optimized Fire III" sync / 1[56]:[^:]*:Omega-M:330D:/ -105.9 "Superliminal Steel" sync / 1[56]:[^:]*:Omega-M:3305:/ -111.0 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega-M:3303:/ -122.3 "Subject Simulation M" sync / 1[56]:[^:]*:Omega-M:32F4:/ -134.7 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32F3:/ -141.0 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ -149.1 "Program Alpha" sync / 1[56]:[^:]*:Omega-M:3308:/ -152.2 "Floodlight" sync / 1[56]:[^:]*:Omega-M:3309:/ -156.2 "Spotlight" sync / 1[56]:[^:]*:Omega-M:330A:/ -156.4 "Beyond Strength" sync / 1[56]:[^:]*:Omega-M:3300:/ -162.6 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32FF:/ -175.9 "Laser Shower" sync / 1[56]:[^:]*:Omega-M:3311:/ -184.2 "Solar Ray" sync / 1[56]:[^:]*:Omega-M:330F:/ # drift -0.047 -191.4 "Laser Shower" sync / 1[56]:[^:]*:Omega-M:3311:/ # drift 0.045 -196.7 "Subject Simulation F" sync / 1[56]:[^:]*:Omega-M:32F1:/ -209.1 "Discharger" sync / 1[56]:[^:]*:Omega-M:32F6:/ -215.3 "Synthetic Blades" sync / 1[56]:[^:]*:Omega-M:3301:/ -223.5 "Optimized Fire III" sync / 1[56]:[^:]*:Omega-M:330D:/ # drift -0.043001 -228.7 "Superliminal Steel" sync / 1[56]:[^:]*:Omega-M:3305:/ # drift -0.046 -233.8 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega-M:3303:/ -246.9 "Laser Shower" sync / 1[56]:[^:]*:Omega-M:3312:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +15.3 "Solar Ray" Ability { id: "330F", source: "Omega-M" } window 16,3 +20.4 "Program Alpha" Ability { id: "3308", source: "Omega-M" } +23.5 "Floodlight" Ability { id: "3309", source: "Omega-M" } +27.5 "Spotlight" Ability { id: "330A", source: "Omega-M" } +27.7 "Efficient Bladework" Ability { id: "32FF", source: "Omega-M" } +38.0 "Subject Simulation F" Ability { id: "32F1", source: "Omega-M" } +50.4 "Discharger" Ability { id: "32F6", source: "Omega-M" } +61.7 "Optimized Fire III" Ability { id: "330D", source: "Omega-M" } +66.9 "Optimized Blizzard III" Ability { id: "3303", source: "Omega-M" } +75.1 "Laser Shower" Ability { id: "3312", source: "Omega-M" } +92.5 "Synthetic Blades" Ability { id: "3301", source: "Omega-M" } +100.6 "Optimized Fire III" Ability { id: "330D", source: "Omega-M" } +105.9 "Superliminal Steel" Ability { id: "3305", source: "Omega-M" } +111.0 "Optimized Blizzard III" Ability { id: "3303", source: "Omega-M" } +122.3 "Subject Simulation M" Ability { id: "32F4", source: "Omega-M" } +134.7 "Efficient Bladework" Ability { id: "32F3", source: "Omega-M" } +141.0 "Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } +149.1 "Program Alpha" Ability { id: "3308", source: "Omega-M" } +152.2 "Floodlight" Ability { id: "3309", source: "Omega-M" } +156.2 "Spotlight" Ability { id: "330A", source: "Omega-M" } +156.4 "Beyond Strength" Ability { id: "3300", source: "Omega-M" } +162.6 "Efficient Bladework" Ability { id: "32FF", source: "Omega-M" } +175.9 "Laser Shower" Ability { id: "3311", source: "Omega-M" } +184.2 "Solar Ray" Ability { id: "330F", source: "Omega-M" } # drift -0.047 +191.4 "Laser Shower" Ability { id: "3311", source: "Omega-M" } # drift 0.045 +196.7 "Subject Simulation F" Ability { id: "32F1", source: "Omega-M" } +209.1 "Discharger" Ability { id: "32F6", source: "Omega-M" } +215.3 "Synthetic Blades" Ability { id: "3301", source: "Omega-M" } +223.5 "Optimized Fire III" Ability { id: "330D", source: "Omega-M" } # drift -0.043001 +228.7 "Superliminal Steel" Ability { id: "3305", source: "Omega-M" } # drift -0.046 +233.8 "Optimized Blizzard III" Ability { id: "3303", source: "Omega-M" } +246.9 "Laser Shower" Ability { id: "3312", source: "Omega-M" } # Fake lookahead window before loop back to beginning -282.2 "Solar Ray" sync / 1[56]:[^:]*:Omega-M:330F:/ window 20,20 jump 15.3 +282.2 "Solar Ray" Ability { id: "330F", source: "Omega-M" } window 20,20 jump 15.3 287.3 "Program Alpha" 290.4 "Floodlight" 294.4 "Spotlight" @@ -51,28 +51,28 @@ hideall "--sync--" ### Phase 2: Passage of Arms -500.0 "--sync--" sync / 00:0044:Omega-M:\ Limits of single combatant/ window 500,0 -514.0 "Ground Zero" sync / 1[56]:[^:]*:Omega-M:3313:/ # drift 0.045001 -514.0 "Electric Slide" sync / 1[56]:[^:]*:Omega:3314:/ -522.0 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32F3:/ # drift -0.045 -522.0 "Discharger" sync / 1[56]:[^:]*:Omega:32F6:/ +500.0 "--sync--" GameLog { code: "0044", name: "Omega-M", line: "\ Limits of single combatant.*?" } window 500,0 +514.0 "Ground Zero" Ability { id: "3313", source: "Omega-M" } # drift 0.045001 +514.0 "Electric Slide" Ability { id: "3314", source: "Omega" } +522.0 "Efficient Bladework" Ability { id: "32F3", source: "Omega-M" } # drift -0.045 +522.0 "Discharger" Ability { id: "32F6", source: "Omega" } -526.3 "Optimized Passage of Arms" sync / 1[56]:[^:]*:Omega-M:3316:/ window 550,50 +526.3 "Optimized Passage of Arms" Ability { id: "3316", source: "Omega-M" } window 550,50 587.5 "Laser Shower Enrage" ### Phase 3: Everyone dies, loops forever # Post-passage of arms startup -700.0 "--sync--" sync / 1[56]:[^:]*:Omega:3319:/ window 700,0 -711.0 "Ground Zero" sync / 1[56]:[^:]*:Omega-M:3313:/ -711.0 "Electric Slide" sync / 1[56]:[^:]*:Omega:3314:/ -719.1 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32F3:/ # drift -0.044 -719.1 "Discharger" sync / 1[56]:[^:]*:Omega:32F6:/ -725.1 "Firewall" sync / 1[56]:[^:]*:Omega-M:3392:/ window 100,10 +700.0 "--sync--" Ability { id: "3319", source: "Omega" } window 700,0 +711.0 "Ground Zero" Ability { id: "3313", source: "Omega-M" } +711.0 "Electric Slide" Ability { id: "3314", source: "Omega" } +719.1 "Efficient Bladework" Ability { id: "32F3", source: "Omega-M" } # drift -0.044 +719.1 "Discharger" Ability { id: "32F6", source: "Omega" } +725.1 "Firewall" Ability { id: "3392", source: "Omega-M" } window 100,10 737.1 "Synthetic Blades/Shield" # branching -737.1 "--sync--" sync / 1[56]:[^:]*:Omega-M:32FD:/ jump 937.1 window 20,20 # shield -737.1 "--sync--" sync / 1[56]:[^:]*:Omega:3301:/ jump 1137.1 window 20,20 # blades +737.1 "--sync--" Ability { id: "32FD", source: "Omega-M" } jump 937.1 window 20,20 # shield +737.1 "--sync--" Ability { id: "3301", source: "Omega" } jump 1137.1 window 20,20 # blades 739.1 "Laser Shower" # Two paths here. The 1st Shield/Blades has a Solar Ray that the others don't. @@ -81,21 +81,21 @@ hideall "--sync--" # PoA -> Firewall -> 1st Blades -> 2nd Shield -> 2nd Blades -> 2nd Shield -> etc # first time shield loop (with solar ray) -937.1 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ -939.1 "Laser Shower" sync / 1[56]:[^:]*:Omega:3312:/ -947.1 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:330D:/ -947.1 "Beyond Strength" sync / 1[56]:[^:]*:Omega-M:3300:/ -952.1 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega:3303:/ -953.1 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32FF:/ -963.1 "Solar Ray" sync / 1[56]:[^:]*:Omega-M:330F:/ -985.4 "Cosmo Memory" sync / 1[56]:[^:]*:Omega-M:331B:/ -992.5 "Resonance" sync / 1[56]:[^:]*:Omega-M:3394:/ # drift -0.046001 -1008.6 "Suppression" sync / 1[56]:[^:]*:Omega-M:331E:/ # drift -0.044999 -1013.6 "Optical Laser" sync / 1[56]:[^:]*:Optical Unit:3320:/ -1016.6 "Optimized Meteor" sync / 1[56]:[^:]*:Omega-M:3325:/ -1016.8 "Optimized Sagittarius Arrow" sync / 1[56]:[^:]*:Omega-M:3323:/ # drift -0.044 -1027.7 "Optimized Blade Dance" sync / 1[56]:[^:]*:Omega:3322:/ -1035.7 "Synthetic Blades" sync / 1[56]:[^:]*:Omega:3301:/ window 20,20 jump 1478.4 +937.1 "Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } +939.1 "Laser Shower" Ability { id: "3312", source: "Omega" } +947.1 "Optimized Fire III" Ability { id: "330D", source: "Omega" } +947.1 "Beyond Strength" Ability { id: "3300", source: "Omega-M" } +952.1 "Optimized Blizzard III" Ability { id: "3303", source: "Omega" } +953.1 "Efficient Bladework" Ability { id: "32FF", source: "Omega-M" } +963.1 "Solar Ray" Ability { id: "330F", source: "Omega-M" } +985.4 "Cosmo Memory" Ability { id: "331B", source: "Omega-M" } +992.5 "Resonance" Ability { id: "3394", source: "Omega-M" } # drift -0.046001 +1008.6 "Suppression" Ability { id: "331E", source: "Omega-M" } # drift -0.044999 +1013.6 "Optical Laser" Ability { id: "3320", source: "Optical Unit" } +1016.6 "Optimized Meteor" Ability { id: "3325", source: "Omega-M" } +1016.8 "Optimized Sagittarius Arrow" Ability { id: "3323", source: "Omega-M" } # drift -0.044 +1027.7 "Optimized Blade Dance" Ability { id: "3322", source: "Omega" } +1035.7 "Synthetic Blades" Ability { id: "3301", source: "Omega" } window 20,20 jump 1478.4 # fake lookahead into 2nd blades loop 1037.7 "Laser Shower" @@ -108,24 +108,24 @@ hideall "--sync--" 1056.1 "Optimized Blizzard III" # first time blades loop (with solar ray) -1137.1 "Synthetic Blades" sync / 1[56]:[^:]*:Omega:3301:/ -1139.1 "Laser Shower" sync / 1[56]:[^:]*:Omega-M:3311:/ -1146.4 "Program Alpha" sync / 1[56]:[^:]*:Omega-M:3308:/ -1146.5 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:330D:/ -1149.5 "Floodlight" sync / 1[56]:[^:]*:Omega-M:3309:/ -1152.9 "Superliminal Steel" sync / 1[56]:[^:]*:Omega:3305:/ -1153.5 "Spotlight" sync / 1[56]:[^:]*:Omega-M:331A:/ # drift -0.049001 -1157.6 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32FF:/ -1158.1 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega:3303:/ -1168.9 "Solar Ray" sync / 1[56]:[^:]*:Omega-M:330F:/ -1192.0 "Cosmo Memory" sync / 1[56]:[^:]*:Omega-M:331B:/ -1199.3 "Resonance" sync / 1[56]:[^:]*:Omega-M:3394:/ -1215.8 "Suppression" sync / 1[56]:[^:]*:Omega-M:331E:/ -1220.9 "Optical Laser" sync / 1[56]:[^:]*:Optical Unit:3320:/ -1224.1 "Optimized Meteor" sync / 1[56]:[^:]*:Omega-M:3325:/ -1224.3 "Optimized Sagittarius Arrow" sync / 1[56]:[^:]*:Omega-M:3323:/ -1235.4 "Optimized Blade Dance" sync / 1[56]:[^:]*:Omega:3322:/ -1243.6 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ window 20,20 jump 1400 +1137.1 "Synthetic Blades" Ability { id: "3301", source: "Omega" } +1139.1 "Laser Shower" Ability { id: "3311", source: "Omega-M" } +1146.4 "Program Alpha" Ability { id: "3308", source: "Omega-M" } +1146.5 "Optimized Fire III" Ability { id: "330D", source: "Omega" } +1149.5 "Floodlight" Ability { id: "3309", source: "Omega-M" } +1152.9 "Superliminal Steel" Ability { id: "3305", source: "Omega" } +1153.5 "Spotlight" Ability { id: "331A", source: "Omega-M" } # drift -0.049001 +1157.6 "Efficient Bladework" Ability { id: "32FF", source: "Omega-M" } +1158.1 "Optimized Blizzard III" Ability { id: "3303", source: "Omega" } +1168.9 "Solar Ray" Ability { id: "330F", source: "Omega-M" } +1192.0 "Cosmo Memory" Ability { id: "331B", source: "Omega-M" } +1199.3 "Resonance" Ability { id: "3394", source: "Omega-M" } +1215.8 "Suppression" Ability { id: "331E", source: "Omega-M" } +1220.9 "Optical Laser" Ability { id: "3320", source: "Optical Unit" } +1224.1 "Optimized Meteor" Ability { id: "3325", source: "Omega-M" } +1224.3 "Optimized Sagittarius Arrow" Ability { id: "3323", source: "Omega-M" } +1235.4 "Optimized Blade Dance" Ability { id: "3322", source: "Omega" } +1243.6 "Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } window 20,20 jump 1400 # fake lookahead into 2nd shield loop 1245.6 "Laser Shower" @@ -137,40 +137,40 @@ hideall "--sync--" 1277.8 "Resonance" # second time shield loop (no solar ray) -1400.0 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ -1402.0 "Laser Shower" sync / 1[56]:[^:]*:Omega:3312:/ -1410.5 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:330D:/ -1410.6 "Beyond Strength" sync / 1[56]:[^:]*:Omega-M:3300:/ -1415.7 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega:3303:/ -1416.7 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32FF:/ -1427.0 "Cosmo Memory" sync / 1[56]:[^:]*:Omega-M:331B:/ -1434.2 "Resonance" sync / 1[56]:[^:]*:Omega-M:3394:/ # drift 0.045001 -1450.8 "Suppression" sync / 1[56]:[^:]*:Omega-M:331E:/ -1455.8 "Optical Laser" sync / 1[56]:[^:]*:Optical Unit:3320:/ -1459.0 "Optimized Meteor" sync / 1[56]:[^:]*:Omega-M:3325:/ -1459.2 "Optimized Sagittarius Arrow" sync / 1[56]:[^:]*:Omega-M:3323:/ -1470.3 "Optimized Blade Dance" sync / 1[56]:[^:]*:Omega:3322:/ +1400.0 "Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } +1402.0 "Laser Shower" Ability { id: "3312", source: "Omega" } +1410.5 "Optimized Fire III" Ability { id: "330D", source: "Omega" } +1410.6 "Beyond Strength" Ability { id: "3300", source: "Omega-M" } +1415.7 "Optimized Blizzard III" Ability { id: "3303", source: "Omega" } +1416.7 "Efficient Bladework" Ability { id: "32FF", source: "Omega-M" } +1427.0 "Cosmo Memory" Ability { id: "331B", source: "Omega-M" } +1434.2 "Resonance" Ability { id: "3394", source: "Omega-M" } # drift 0.045001 +1450.8 "Suppression" Ability { id: "331E", source: "Omega-M" } +1455.8 "Optical Laser" Ability { id: "3320", source: "Optical Unit" } +1459.0 "Optimized Meteor" Ability { id: "3325", source: "Omega-M" } +1459.2 "Optimized Sagittarius Arrow" Ability { id: "3323", source: "Omega-M" } +1470.3 "Optimized Blade Dance" Ability { id: "3322", source: "Omega" } # second time blades loop (no solar ray) -1478.4 "Synthetic Blades" sync / 1[56]:[^:]*:Omega:3301:/ -1480.4 "Laser Shower" sync / 1[56]:[^:]*:Omega-M:3311:/ -1487.6 "Program Alpha" sync / 1[56]:[^:]*:Omega-M:3308:/ -1487.6 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:330D:/ -1490.6 "Floodlight" sync / 1[56]:[^:]*:Omega-M:3309:/ -1493.8 "Superliminal Steel" sync / 1[56]:[^:]*:Omega:3305:/ -1494.6 "Spotlight" sync / 1[56]:[^:]*:Omega-M:331A:/ -1498.6 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:32FF:/ -1498.8 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega:3303:/ -1509.8 "Cosmo Memory" sync / 1[56]:[^:]*:Omega-M:331B:/ -1516.8 "Resonance" sync / 1[56]:[^:]*:Omega-M:3394:/ -1532.9 "Suppression" sync / 1[56]:[^:]*:Omega-M:331E:/ -1537.9 "Optical Laser" sync / 1[56]:[^:]*:Optical Unit:3320:/ -1540.9 "Optimized Meteor" sync / 1[56]:[^:]*:Omega-M:3325:/ -1541.1 "Optimized Sagittarius Arrow" sync / 1[56]:[^:]*:Omega-M:3323:/ -1551.9 "Optimized Blade Dance" sync / 1[56]:[^:]*:Omega:3322:/ +1478.4 "Synthetic Blades" Ability { id: "3301", source: "Omega" } +1480.4 "Laser Shower" Ability { id: "3311", source: "Omega-M" } +1487.6 "Program Alpha" Ability { id: "3308", source: "Omega-M" } +1487.6 "Optimized Fire III" Ability { id: "330D", source: "Omega" } +1490.6 "Floodlight" Ability { id: "3309", source: "Omega-M" } +1493.8 "Superliminal Steel" Ability { id: "3305", source: "Omega" } +1494.6 "Spotlight" Ability { id: "331A", source: "Omega-M" } +1498.6 "Efficient Bladework" Ability { id: "32FF", source: "Omega-M" } +1498.8 "Optimized Blizzard III" Ability { id: "3303", source: "Omega" } +1509.8 "Cosmo Memory" Ability { id: "331B", source: "Omega-M" } +1516.8 "Resonance" Ability { id: "3394", source: "Omega-M" } +1532.9 "Suppression" Ability { id: "331E", source: "Omega-M" } +1537.9 "Optical Laser" Ability { id: "3320", source: "Optical Unit" } +1540.9 "Optimized Meteor" Ability { id: "3325", source: "Omega-M" } +1541.1 "Optimized Sagittarius Arrow" Ability { id: "3323", source: "Omega-M" } +1551.9 "Optimized Blade Dance" Ability { id: "3322", source: "Omega" } # Loop with fake lookahead window -1560.0 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ window 20,20 jump 1400 +1560.0 "Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } window 20,20 jump 1400 1562.0 "Laser Shower" 1570.5 "Optimized Fire III" 1570.6 "Beyond Strength" @@ -181,10 +181,10 @@ hideall "--sync--" ### Phase 4: Laser Show Forever -1800.0 "Enrage" sync / 00:0044:[^:]*:\ Warning\. Calculations indicate/ window 1800,0 +1800.0 "Enrage" GameLog { code: "0044", line: "\ Warning\. Calculations indicate.*?" } window 1800,0 -1806.0 "Laser Shower Enrage" sync / 1[56]:[^:]*:Omega-M:3311:/ window 20,20 -1806.0 "Laser Shower Enrage" sync / 1[56]:[^:]*:Omega:3312:/ window 20,20 +1806.0 "Laser Shower Enrage" Ability { id: "3311", source: "Omega-M" } window 20,20 +1806.0 "Laser Shower Enrage" Ability { id: "3312", source: "Omega" } window 20,20 1812.0 "Laser Shower Enrage" 1818.0 "Laser Shower Enrage" 1824.0 "Laser Shower Enrage" diff --git a/ui/raidboss/data/04-sb/raid/o12s.txt b/ui/raidboss/data/04-sb/raid/o12s.txt index f6f1a8ee38..a1482eab60 100644 --- a/ui/raidboss/data/04-sb/raid/o12s.txt +++ b/ui/raidboss/data/04-sb/raid/o12s.txt @@ -9,50 +9,50 @@ hideall "--sync--" # Use autos/chatlog instead of InCombat lines to start timelines for door & final boss # as timeline resets out of combat. -0.0 "Start" sync / 00:0044:[^:]*:I am the Omega/ window 1,0 -2.4 "--sync--" sync / 1[56]:[^:]*:Omega-M:337D:/ window 2.4,0.5 # first auto -11.7 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ window 12,5 -19.7 "Suppression" sync / 1[56]:[^:]*:Omega-M:3345:/ -26.6 "Beyond Defense" sync / 1[56]:[^:]*:Omega-M:332B:/ -26.7 "Optical Laser" sync / 1[56]:[^:]*:Optical Unit:3347:/ -26.9 "Beyond Defense" sync / 1[56]:[^:]*:Omega-M:332C:/ -30.1 "Pile Pitch" sync / 1[56]:[^:]*:Omega-M:332E:/ +0.0 "Start" GameLog { code: "0044", line: "I am the Omega.*?" } window 1,0 +2.4 "--sync--" Ability { id: "337D", source: "Omega-M" } window 2.4,0.5 # first auto +11.7 "Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } window 12,5 +19.7 "Suppression" Ability { id: "3345", source: "Omega-M" } +26.6 "Beyond Defense" Ability { id: "332B", source: "Omega-M" } +26.7 "Optical Laser" Ability { id: "3347", source: "Optical Unit" } +26.9 "Beyond Defense" Ability { id: "332C", source: "Omega-M" } +30.1 "Pile Pitch" Ability { id: "332E", source: "Omega-M" } # F phase -49.1 "Subject Simulation F" sync / 1[56]:[^:]*:Omega-M:32F1:/ -61.2 "Discharger" sync / 1[56]:[^:]*:Omega-M:3327:/ # drift -0.044 -73.2 "Synthetic Blades" sync / 1[56]:[^:]*:Omega-M:3301:/ -81.2 "Advanced Suppression" sync / 1[56]:[^:]*:Omega-M:3349:/ -87.2 "Superliminal Motion" sync / 1[56]:[^:]*:Omega-M:3334:/ -88.2 "Advanced Optical Laser" sync / 1[56]:[^:]*:Optical Unit:334A:/ -90.3 "Optimized Fire III" sync / 1[56]:[^:]*:Omega-M:3335:/ # drift 0.047 +49.1 "Subject Simulation F" Ability { id: "32F1", source: "Omega-M" } +61.2 "Discharger" Ability { id: "3327", source: "Omega-M" } # drift -0.044 +73.2 "Synthetic Blades" Ability { id: "3301", source: "Omega-M" } +81.2 "Advanced Suppression" Ability { id: "3349", source: "Omega-M" } +87.2 "Superliminal Motion" Ability { id: "3334", source: "Omega-M" } +88.2 "Advanced Optical Laser" Ability { id: "334A", source: "Optical Unit" } +90.3 "Optimized Fire III" Ability { id: "3335", source: "Omega-M" } # drift 0.047 # Twin phase -102.6 "Subject Simulation M" sync / 1[56]:[^:]*:Omega-M:32F4:/ window 200,10 +102.6 "Subject Simulation M" Ability { id: "32F4", source: "Omega-M" } window 200,10 108.9 "--untargetable--" -114.1 "Electric Slide" sync / 1[56]:[^:]*:Omega:3354:/ -122.7 "Discharger" sync / 1[56]:[^:]*:Omega:3327:/ -122.7 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:3329:/ +114.1 "Electric Slide" Ability { id: "3354", source: "Omega" } +122.7 "Discharger" Ability { id: "3327", source: "Omega" } +122.7 "Efficient Bladework" Ability { id: "3329", source: "Omega-M" } 125.7 "--targetable--" -132.0 "Firewall" sync / 1[56]:[^:]*:Omega:3339:/ window 132.0 -141.2 "Resonance" sync / 1[56]:[^:]*:Omega:333B:/ -155.6 "Fundamental Synergy" sync / 1[56]:[^:]*:Omega:333D:/ +132.0 "Firewall" Ability { id: "3339", source: "Omega" } window 132.0 +141.2 "Resonance" Ability { id: "333B", source: "Omega" } +155.6 "Fundamental Synergy" Ability { id: "333D", source: "Omega" } # Slides -160.7 "Advanced Suppression" sync / 1[56]:[^:]*:Omega:3349:/ +160.7 "Advanced Suppression" Ability { id: "3349", source: "Omega" } 163.9 "--untargetable--" 164.2 "Electric Slide 1" 166.0 "Electric Slide 2" 167.7 "Electric Slide 3" -167.8 "Advanced Optical Laser" sync / 1[56]:[^:]*:Optical Unit:334A:/ +167.8 "Advanced Optical Laser" Ability { id: "334A", source: "Optical Unit" } 169.4 "Electric Slide 4" 170.7 "--targetable--" -180.1 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -189.3 "Solar Ray" sync / 1[56]:[^:]*:Omega:3351:/ +180.1 "Laser Shower" Ability { id: "3353", source: "Omega" } +189.3 "Solar Ray" Ability { id: "3351", source: "Omega" } # Branch point -200.5 "Synthetic Blades/Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ jump 1200.5 # shield -> blades path -200.5 "--sync--" sync / 1[56]:[^:]*:Omega:3301:/ jump 2200.5 # blades -> shield path +200.5 "Synthetic Blades/Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } jump 1200.5 # shield -> blades path +200.5 "--sync--" Ability { id: "3301", source: "Omega" } jump 2200.5 # blades -> shield path 212.2 "Operational Synergy" 218.2 "Beyond Defense?" 218.2 "Superliminal Steel?" @@ -61,40 +61,40 @@ hideall "--sync--" 228.8 "Optimized Fire III" # Shield-first path -1200.5 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ -1212.2 "Operational Synergy" sync / 1[56]:[^:]*:Omega:3341:/ -1219.2 "Beyond Defense" sync / 1[56]:[^:]*:Omega-M:332B:/ -1219.4 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega:3333:/ -1222.7 "Pile Pitch" sync / 1[56]:[^:]*:Omega-M:332E:/ -1227.4 "Optimized Fire III" sync / 1[56]:[^:]*:Omega-F:3337:/ -1230.7 "Beyond Strength" sync / 1[56]:[^:]*:Omega-M:3328:/ -1233.7 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:3329:/ -1234.4 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -1241.4 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -1250.9 "Firewall" sync / 1[56]:[^:]*:Omega:3339:/ -1260.1 "Resonance" sync / 1[56]:[^:]*:Omega:333B:/ -1274.5 "Fundamental Synergy" sync / 1[56]:[^:]*:Omega:333D:/ -1279.6 "Advanced Suppression" sync / 1[56]:[^:]*:Omega:3349:/ +1200.5 "Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } +1212.2 "Operational Synergy" Ability { id: "3341", source: "Omega" } +1219.2 "Beyond Defense" Ability { id: "332B", source: "Omega-M" } +1219.4 "Optimized Blizzard III" Ability { id: "3333", source: "Omega" } +1222.7 "Pile Pitch" Ability { id: "332E", source: "Omega-M" } +1227.4 "Optimized Fire III" Ability { id: "3337", source: "Omega-F" } +1230.7 "Beyond Strength" Ability { id: "3328", source: "Omega-M" } +1233.7 "Efficient Bladework" Ability { id: "3329", source: "Omega-M" } +1234.4 "Laser Shower" Ability { id: "3353", source: "Omega" } +1241.4 "Laser Shower" Ability { id: "3353", source: "Omega" } +1250.9 "Firewall" Ability { id: "3339", source: "Omega" } +1260.1 "Resonance" Ability { id: "333B", source: "Omega" } +1274.5 "Fundamental Synergy" Ability { id: "333D", source: "Omega" } +1279.6 "Advanced Suppression" Ability { id: "3349", source: "Omega" } 1282.3 "--untargetable--" -1282.6 "Electric Slide 1" #sync / 1[56]:[^:]*:Omega:333F:/ -1284.3 "Electric Slide 2" #sync / 1[56]:[^:]*:Omega:333F:/ -1286.0 "Electric Slide 3" #sync / 1[56]:[^:]*:Omega:333F:/ -1286.5 "Advanced Optical Laser" sync / 1[56]:[^:]*:Optical Unit:334A:/ -1287.7 "Electric Slide 4" #sync / 1[56]:[^:]*:Omega:333F:/ +1282.6 "Electric Slide 1" #Ability { id: "333F", source: "Omega" } +1284.3 "Electric Slide 2" #Ability { id: "333F", source: "Omega" } +1286.0 "Electric Slide 3" #Ability { id: "333F", source: "Omega" } +1286.5 "Advanced Optical Laser" Ability { id: "334A", source: "Optical Unit" } +1287.7 "Electric Slide 4" #Ability { id: "333F", source: "Omega" } 1289.0 "--targetable--" -1298.4 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -1307.4 "Solar Ray" sync / 1[56]:[^:]*:Omega:3351:/ -1318.4 "Synthetic Blades" sync / 1[56]:[^:]*:Omega:3301:/ -1329.4 "Operational Synergy" sync / 1[56]:[^:]*:Omega:3341:/ -1334.4 "Superliminal Steel" sync / 1[56]:[^:]*:Omega-F:3331:/ -1337.6 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega:3332:/ -1337.7 "Pile Pitch" sync / 1[56]:[^:]*:Omega-M:332E:/ -1343.8 "Superliminal Motion" sync / 1[56]:[^:]*:Omega:3334:/ -1347.0 "Optimized Fire III" sync / 1[56]:[^:]*:Omega-F:3337:/ -1348.2 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:332A:/ -1356.4 "Laser Shower" sync / 1[56]:[^:]*:Omega-M:3352:/ -1363.4 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -1378.0 "Suppression" sync / 1[56]:[^:]*:Omega:3346:/ jump 378.0 +1298.4 "Laser Shower" Ability { id: "3353", source: "Omega" } +1307.4 "Solar Ray" Ability { id: "3351", source: "Omega" } +1318.4 "Synthetic Blades" Ability { id: "3301", source: "Omega" } +1329.4 "Operational Synergy" Ability { id: "3341", source: "Omega" } +1334.4 "Superliminal Steel" Ability { id: "3331", source: "Omega-F" } +1337.6 "Optimized Blizzard III" Ability { id: "3332", source: "Omega" } +1337.7 "Pile Pitch" Ability { id: "332E", source: "Omega-M" } +1343.8 "Superliminal Motion" Ability { id: "3334", source: "Omega" } +1347.0 "Optimized Fire III" Ability { id: "3337", source: "Omega-F" } +1348.2 "Efficient Bladework" Ability { id: "332A", source: "Omega-M" } +1356.4 "Laser Shower" Ability { id: "3352", source: "Omega-M" } +1363.4 "Laser Shower" Ability { id: "3353", source: "Omega" } +1378.0 "Suppression" Ability { id: "3346", source: "Omega" } jump 378.0 1385.1 "Optical Laser" # Cosmetic 1385.4 "Optimized Meteor" 1385.6 "Optimized Sagittarius Arrow" @@ -102,39 +102,39 @@ hideall "--sync--" 1404.4 "Laser Shower" # Blades-first path -2200.5 "Synthetic Blades" sync / 1[56]:[^:]*:Omega:3301:/ -2212.2 "Operational Synergy" sync / 1[56]:[^:]*:Omega:3341:/ -2217.2 "Superliminal Steel" sync / 1[56]:[^:]*:Omega:332F:/ -2220.3 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega:3332:/ -2220.3 "Pile Pitch" sync / 1[56]:[^:]*:Omega-M:332E:/ -2226.2 "Superliminal Motion" sync / 1[56]:[^:]*:Omega:3334:/ -2229.2 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:3335:/ -2230.4 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:332A:/ -2238.2 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -2250.4 "Firewall" sync / 1[56]:[^:]*:Omega:3339:/ -2259.4 "Resonance" sync / 1[56]:[^:]*:Omega:333B:/ -2273.4 "Fundamental Synergy" sync / 1[56]:[^:]*:Omega:333D:/ -2278.4 "Advanced Suppression" sync / 1[56]:[^:]*:Omega:3349:/ +2200.5 "Synthetic Blades" Ability { id: "3301", source: "Omega" } +2212.2 "Operational Synergy" Ability { id: "3341", source: "Omega" } +2217.2 "Superliminal Steel" Ability { id: "332F", source: "Omega" } +2220.3 "Optimized Blizzard III" Ability { id: "3332", source: "Omega" } +2220.3 "Pile Pitch" Ability { id: "332E", source: "Omega-M" } +2226.2 "Superliminal Motion" Ability { id: "3334", source: "Omega" } +2229.2 "Optimized Fire III" Ability { id: "3335", source: "Omega" } +2230.4 "Efficient Bladework" Ability { id: "332A", source: "Omega-M" } +2238.2 "Laser Shower" Ability { id: "3353", source: "Omega" } +2250.4 "Firewall" Ability { id: "3339", source: "Omega" } +2259.4 "Resonance" Ability { id: "333B", source: "Omega" } +2273.4 "Fundamental Synergy" Ability { id: "333D", source: "Omega" } +2278.4 "Advanced Suppression" Ability { id: "3349", source: "Omega" } 2281.6 "--untargetable--" -2282.0 "Electric Slide 1" #sync / 1[56]:[^:]*:Omega:333F:/ -2283.9 "Electric Slide 2" #sync / 1[56]:[^:]*:Omega:333F:/ -2285.5 "Advanced Optical Laser" sync / 1[56]:[^:]*:Optical Unit:334A:/ -2285.8 "Electric Slide 3" #sync / 1[56]:[^:]*:Omega:333F:/ -2287.7 "Electric Slide 4" #sync / 1[56]:[^:]*:Omega:333F:/ +2282.0 "Electric Slide 1" #Ability { id: "333F", source: "Omega" } +2283.9 "Electric Slide 2" #Ability { id: "333F", source: "Omega" } +2285.5 "Advanced Optical Laser" Ability { id: "334A", source: "Optical Unit" } +2285.8 "Electric Slide 3" #Ability { id: "333F", source: "Omega" } +2287.7 "Electric Slide 4" #Ability { id: "333F", source: "Omega" } 2288.8 "--targetable--" -2298.2 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -2306.2 "Solar Ray" sync / 1[56]:[^:]*:Omega:3351:/ -2317.2 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:32FD:/ -2328.2 "Operational Synergy" sync / 1[56]:[^:]*:Omega:3341:/ -2335.1 "Beyond Defense" sync / 1[56]:[^:]*:Omega-M:332B:/ -2335.4 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega:3333:/ -2338.6 "Pile Pitch" sync / 1[56]:[^:]*:Omega-M:332E:/ -2343.4 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:3336:/ -2346.6 "Beyond Strength" sync / 1[56]:[^:]*:Omega-M:3328:/ -2349.6 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:3329:/ -2350.4 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -2357.4 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -2375.7 "Suppression" sync / 1[56]:[^:]*:Omega:3346:/ jump 378.0 +2298.2 "Laser Shower" Ability { id: "3353", source: "Omega" } +2306.2 "Solar Ray" Ability { id: "3351", source: "Omega" } +2317.2 "Synthetic Shield" Ability { id: "32FD", source: "Omega-M" } +2328.2 "Operational Synergy" Ability { id: "3341", source: "Omega" } +2335.1 "Beyond Defense" Ability { id: "332B", source: "Omega-M" } +2335.4 "Optimized Blizzard III" Ability { id: "3333", source: "Omega" } +2338.6 "Pile Pitch" Ability { id: "332E", source: "Omega-M" } +2343.4 "Optimized Fire III" Ability { id: "3336", source: "Omega" } +2346.6 "Beyond Strength" Ability { id: "3328", source: "Omega-M" } +2349.6 "Efficient Bladework" Ability { id: "3329", source: "Omega-M" } +2350.4 "Laser Shower" Ability { id: "3353", source: "Omega" } +2357.4 "Laser Shower" Ability { id: "3353", source: "Omega" } +2375.7 "Suppression" Ability { id: "3346", source: "Omega" } jump 378.0 2382.7 "Optical Laser" # Cosmetic 2382.7 "Optimized Meteor" 2382.8 "Optimized Sagittarius Arrow" @@ -142,132 +142,132 @@ hideall "--sync--" 2401.3 "Laser Shower" # Paths converge to enrage sequence -378.0 "Suppression" sync / 1[56]:[^:]*:Omega:3346:/ -385.1 "Optical Laser" sync / 1[56]:[^:]*:Optical Unit:3347:/ -385.4 "Optimized Meteor" sync / 1[56]:[^:]*:Omega-F:334F:/ -385.6 "Optimized Sagittarius Arrow" sync / 1[56]:[^:]*:Omega-M:334D:/ -396.4 "Cosmo Memory" sync / 1[56]:[^:]*:Omega:3343:/ -404.4 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -412.4 "Optimized Blade Dance" sync / 1[56]:[^:]*:Omega:334C:/ -430.4 "Advanced Suppression" sync / 1[56]:[^:]*:Omega:3349:/ -437.4 "Advanced Optical Laser" sync / 1[56]:[^:]*:Optical Unit:334A:/ -437.4 "Optimized Meteor" sync / 1[56]:[^:]*:Omega-F:334F:/ -437.4 "Optimized Sagittarius Arrow" sync / 1[56]:[^:]*:Omega-M:334D:/ -447.9 "Cosmo Memory" sync / 1[56]:[^:]*:Omega:3343:/ -455.9 "Laser Shower" sync / 1[56]:[^:]*:Omega:3353:/ -463.9 "Optimized Blade Dance" sync / 1[56]:[^:]*:Omega:334C:/ -479.4 "Cosmo Memory" sync / 1[56]:[^:]*:Omega:33EC:/ +378.0 "Suppression" Ability { id: "3346", source: "Omega" } +385.1 "Optical Laser" Ability { id: "3347", source: "Optical Unit" } +385.4 "Optimized Meteor" Ability { id: "334F", source: "Omega-F" } +385.6 "Optimized Sagittarius Arrow" Ability { id: "334D", source: "Omega-M" } +396.4 "Cosmo Memory" Ability { id: "3343", source: "Omega" } +404.4 "Laser Shower" Ability { id: "3353", source: "Omega" } +412.4 "Optimized Blade Dance" Ability { id: "334C", source: "Omega" } +430.4 "Advanced Suppression" Ability { id: "3349", source: "Omega" } +437.4 "Advanced Optical Laser" Ability { id: "334A", source: "Optical Unit" } +437.4 "Optimized Meteor" Ability { id: "334F", source: "Omega-F" } +437.4 "Optimized Sagittarius Arrow" Ability { id: "334D", source: "Omega-M" } +447.9 "Cosmo Memory" Ability { id: "3343", source: "Omega" } +455.9 "Laser Shower" Ability { id: "3353", source: "Omega" } +463.9 "Optimized Blade Dance" Ability { id: "334C", source: "Omega" } +479.4 "Cosmo Memory" Ability { id: "33EC", source: "Omega" } # Final Omega - Alphascape V4.0 (Savage) - O12S+ # -r ch1gtabdwN7QYDR6 -p 336C:3016 -ii 3380 3369 3366 335F 3377 336B 33B5 -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 3000.0 "Start" -3002.5 "--sync--" sync / 1[56]:[^:]*:Omega:3380:/ window 3003,0 -3016.0 "Target Analysis" sync / 1[56]:[^:]*:Omega:336C:/ -3019.0 "Savage Wave Cannon" sync / 1[56]:[^:]*:Omega:336D:/ -3027.5 "Patch" sync / 1[56]:[^:]*:Omega:3376:/ -3034.5 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:336[78]:/ # drift 0.046001 -3042.5 "Oversampled Wave Cannon" sync / 1[56]:[^:]*:Omega:336[45]:/ -3054.5 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3357:/ -3062.6 "--sync--" sync / 1[56]:[^:]*:Omega:3381:/ -3069.9 "Hello, World" sync / 1[56]:[^:]*:Omega:336E:/ -3078.0 "Critical Synchronization Bug" #sync / 1[56]:[^:]*:Omega:336F:/ -3078.0 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3082.9 "Critical Synchronization Bug" #sync / 1[56]:[^:]*:Omega:336F:/ -3086.1 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3086.1 "Critical Synchronization Bug" #sync / 1[56]:[^:]*:Omega:336F:/ -3094.2 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3097.0 "Critical Error" sync / 1[56]:[^:]*:Omega:337E:/ -3105.1 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3105.1 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3113.1 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3357:/ -3119.3 "--sync--" sync / 1[56]:[^:]*:Omega:3381:/ -3124.4 "Archive Peripheral" sync / 1[56]:[^:]*:Omega:3358:/ # drift -0.042999 -3140.5 "Hyper Pulse" sync / 1[56]:[^:]*:Right Arm Unit:335A:/ -3145.6 "Target Analysis" sync / 1[56]:[^:]*:Omega:336C:/ -3149.0 "Savage Wave Cannon" sync / 1[56]:[^:]*:Omega:336D:/ -3152.0 "--sync--" sync / 1[56]:[^:]*:Omega:3359:/ # drift 0.05 -3161.2 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:336[78]:/ -3169.4 "Oversampled Wave Cannon" sync / 1[56]:[^:]*:Omega:336[45]:/ -3183.6 "Index and Archive Peripheral" sync / 1[56]:[^:]*:Omega:339A:/ -3188.8 "--sync--" sync / 1[56]:[^:]*:Omega:3381:/ -3197.8 "Hyper Pulse" sync / 1[56]:[^:]*:Right Arm Unit:335C:/ duration 6.5 -3198.0 "Wave Cannon" sync / 1[56]:[^:]*:Omega:336A:/ -3206.2 "Target Analysis" sync / 1[56]:[^:]*:Omega:336C:/ -3209.2 "Savage Wave Cannon" sync / 1[56]:[^:]*:Omega:336D:/ # drift 0.047 -3212.2 "--sync--" sync / 1[56]:[^:]*:Omega:3359:/ -3234.2 "Patch" sync / 1[56]:[^:]*:Omega:3376:/ -3241.2 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:336[78]:/ -3249.4 "Oversampled Wave Cannon" sync / 1[56]:[^:]*:Omega:336[45]:/ -3261.5 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3357:/ # drift -0.049001 -3269.8 "Archive All" sync / 1[56]:[^:]*:Omega:335D:/ -3283.0 "Electric Slide" sync / 1[56]:[^:]*:Omega:3363:/ # drift 0.05 -3289.1 "Delta Attack" sync / 1[56]:[^:]*:Omega:3378:/ -3292.2 "Floodlight" sync / 1[56]:[^:]*:Omega:337A:/ -3294.1 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:3379:/ # drift 0.042001 -3294.1 "Spotlight" sync / 1[56]:[^:]*:Omega:337B:/ -3297.0 "Colossal Blow" sync / 1[56]:[^:]*:Left Arm Unit:3360:/ -3299.3 "--sync--" sync / 1[56]:[^:]*:Omega:335E:/ -3307.5 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:336[78]:/ -3320.8 "--sync--" sync / 1[56]:[^:]*:Omega:3381:/ -3328.0 "Hello, World" sync / 1[56]:[^:]*:Omega:336E:/ -3336.1 "Critical Synchronization Bug" #sync / 1[56]:[^:]*:Omega:336F:/ -3336.1 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3341.1 "Critical Synchronization Bug" #sync / 1[56]:[^:]*:Omega:336F:/ -3343.2 "Critical Underflow Bug" #sync / 1[56]:[^:]*:Omega:3371:/ -3344.2 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3344.2 "Critical Synchronization Bug" #sync / 1[56]:[^:]*:Omega:336F:/ -3344.2 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3345.8 "Critical Underflow Bug" #sync / 1[56]:[^:]*:Omega:3371:/ -3349.2 "Critical Underflow Bug" #sync / 1[56]:[^:]*:Omega:3371:/ -3352.2 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ -3353.3 "Critical Underflow Bug" #sync / 1[56]:[^:]*:Omega:3371:/ -3355.3 "Critical Error" sync / 1[56]:[^:]*:Omega:337E:/ -3358.3 "Cascading Latent Defect" sync / 1[56]:[^:]*:Omega:3373:/ -3360.9 "Critical Underflow Bug" #sync / 1[56]:[^:]*:Omega:3371:/ # drift 0.042999 -3362.6 "Critical Underflow Bug" #sync / 1[56]:[^:]*:Omega:3371:/ -3362.8 "Critical Underflow Bug" #sync / 1[56]:[^:]*:Omega:3371:/ -3363.4 "Critical Overflow Bug" #sync / 1[56]:[^:]*:Omega:34E7:/ # drift -0.041 -3371.5 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3357:/ -3377.7 "--sync--" sync / 1[56]:[^:]*:Omega:3381:/ # drift 0.042001 -3382.7 "Archive Peripheral" sync / 1[56]:[^:]*:Omega:3358:/ -3399.0 "Hyper Pulse" sync / 1[56]:[^:]*:Right Arm Unit:335A:/ duration 6.5 -3403.9 "Target Analysis" sync / 1[56]:[^:]*:Omega:336C:/ -3407.4 "Savage Wave Cannon" sync / 1[56]:[^:]*:Omega:336D:/ # drift 0.043999 -3410.5 "--sync--" sync / 1[56]:[^:]*:Omega:3359:/ -3419.6 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:336[78]:/ -3427.8 "Oversampled Wave Cannon" sync / 1[56]:[^:]*:Omega:336[45]:/ -3442.0 "Index and Archive Peripheral" sync / 1[56]:[^:]*:Omega:339A:/ -3447.2 "--sync--" sync / 1[56]:[^:]*:Omega:3381:/ -3456.3 "Hyper Pulse" sync / 1[56]:[^:]*:Right Arm Unit:335C:/ duration 6.5 -3456.4 "Wave Cannon" sync / 1[56]:[^:]*:Omega:336A:/ -3464.5 "Target Analysis" sync / 1[56]:[^:]*:Omega:336C:/ -3467.8 "Savage Wave Cannon" sync / 1[56]:[^:]*:Omega:336D:/ -3470.9 "--sync--" sync / 1[56]:[^:]*:Omega:3359:/ # drift -0.047 -3493.1 "Patch" sync / 1[56]:[^:]*:Omega:3376:/ -3500.2 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:336[78]:/ -3508.4 "Oversampled Wave Cannon" sync / 1[56]:[^:]*:Omega:336[45]:/ -3520.7 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3357:/ -3529.0 "Archive All" sync / 1[56]:[^:]*:Omega:335D:/ # drift -0.045999 -3542.1 "Electric Slide" sync / 1[56]:[^:]*:Omega:3363:/ -3548.2 "Delta Attack" sync / 1[56]:[^:]*:Omega:3378:/ -3551.3 "Floodlight" sync / 1[56]:[^:]*:Omega:337A:/ -3553.3 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:3379:/ # drift 0.043999 -3553.3 "Spotlight" sync / 1[56]:[^:]*:Omega:337B:/ -3556.1 "Colossal Blow" sync / 1[56]:[^:]*:Left Arm Unit:3360:/ -3558.3 "--sync--" sync / 1[56]:[^:]*:Omega:335E:/ -3566.5 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:336[78]:/ # drift -0.042 -3579.8 "--sync--" sync / 1[56]:[^:]*:Omega:3381:/ -3585.2 "Program Omega" sync / 1[56]:[^:]*:Omega:360A:/ -3587.3 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3355:/ +3002.5 "--sync--" Ability { id: "3380", source: "Omega" } window 3003,0 +3016.0 "Target Analysis" Ability { id: "336C", source: "Omega" } +3019.0 "Savage Wave Cannon" Ability { id: "336D", source: "Omega" } +3027.5 "Patch" Ability { id: "3376", source: "Omega" } +3034.5 "Diffuse Wave Cannon" Ability { id: "336[78]", source: "Omega" } # drift 0.046001 +3042.5 "Oversampled Wave Cannon" Ability { id: "336[45]", source: "Omega" } +3054.5 "Ion Efflux" Ability { id: "3357", source: "Omega" } +3062.6 "--sync--" Ability { id: "3381", source: "Omega" } +3069.9 "Hello, World" Ability { id: "336E", source: "Omega" } +3078.0 "Critical Synchronization Bug" #Ability { id: "336F", source: "Omega" } +3078.0 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3082.9 "Critical Synchronization Bug" #Ability { id: "336F", source: "Omega" } +3086.1 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3086.1 "Critical Synchronization Bug" #Ability { id: "336F", source: "Omega" } +3094.2 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3097.0 "Critical Error" Ability { id: "337E", source: "Omega" } +3105.1 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3105.1 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3113.1 "Ion Efflux" Ability { id: "3357", source: "Omega" } +3119.3 "--sync--" Ability { id: "3381", source: "Omega" } +3124.4 "Archive Peripheral" Ability { id: "3358", source: "Omega" } # drift -0.042999 +3140.5 "Hyper Pulse" Ability { id: "335A", source: "Right Arm Unit" } +3145.6 "Target Analysis" Ability { id: "336C", source: "Omega" } +3149.0 "Savage Wave Cannon" Ability { id: "336D", source: "Omega" } +3152.0 "--sync--" Ability { id: "3359", source: "Omega" } # drift 0.05 +3161.2 "Diffuse Wave Cannon" Ability { id: "336[78]", source: "Omega" } +3169.4 "Oversampled Wave Cannon" Ability { id: "336[45]", source: "Omega" } +3183.6 "Index and Archive Peripheral" Ability { id: "339A", source: "Omega" } +3188.8 "--sync--" Ability { id: "3381", source: "Omega" } +3197.8 "Hyper Pulse" Ability { id: "335C", source: "Right Arm Unit" } duration 6.5 +3198.0 "Wave Cannon" Ability { id: "336A", source: "Omega" } +3206.2 "Target Analysis" Ability { id: "336C", source: "Omega" } +3209.2 "Savage Wave Cannon" Ability { id: "336D", source: "Omega" } # drift 0.047 +3212.2 "--sync--" Ability { id: "3359", source: "Omega" } +3234.2 "Patch" Ability { id: "3376", source: "Omega" } +3241.2 "Diffuse Wave Cannon" Ability { id: "336[78]", source: "Omega" } +3249.4 "Oversampled Wave Cannon" Ability { id: "336[45]", source: "Omega" } +3261.5 "Ion Efflux" Ability { id: "3357", source: "Omega" } # drift -0.049001 +3269.8 "Archive All" Ability { id: "335D", source: "Omega" } +3283.0 "Electric Slide" Ability { id: "3363", source: "Omega" } # drift 0.05 +3289.1 "Delta Attack" Ability { id: "3378", source: "Omega" } +3292.2 "Floodlight" Ability { id: "337A", source: "Omega" } +3294.1 "Optimized Fire III" Ability { id: "3379", source: "Omega" } # drift 0.042001 +3294.1 "Spotlight" Ability { id: "337B", source: "Omega" } +3297.0 "Colossal Blow" Ability { id: "3360", source: "Left Arm Unit" } +3299.3 "--sync--" Ability { id: "335E", source: "Omega" } +3307.5 "Diffuse Wave Cannon" Ability { id: "336[78]", source: "Omega" } +3320.8 "--sync--" Ability { id: "3381", source: "Omega" } +3328.0 "Hello, World" Ability { id: "336E", source: "Omega" } +3336.1 "Critical Synchronization Bug" #Ability { id: "336F", source: "Omega" } +3336.1 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3341.1 "Critical Synchronization Bug" #Ability { id: "336F", source: "Omega" } +3343.2 "Critical Underflow Bug" #Ability { id: "3371", source: "Omega" } +3344.2 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3344.2 "Critical Synchronization Bug" #Ability { id: "336F", source: "Omega" } +3344.2 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3345.8 "Critical Underflow Bug" #Ability { id: "3371", source: "Omega" } +3349.2 "Critical Underflow Bug" #Ability { id: "3371", source: "Omega" } +3352.2 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } +3353.3 "Critical Underflow Bug" #Ability { id: "3371", source: "Omega" } +3355.3 "Critical Error" Ability { id: "337E", source: "Omega" } +3358.3 "Cascading Latent Defect" Ability { id: "3373", source: "Omega" } +3360.9 "Critical Underflow Bug" #Ability { id: "3371", source: "Omega" } # drift 0.042999 +3362.6 "Critical Underflow Bug" #Ability { id: "3371", source: "Omega" } +3362.8 "Critical Underflow Bug" #Ability { id: "3371", source: "Omega" } +3363.4 "Critical Overflow Bug" #Ability { id: "34E7", source: "Omega" } # drift -0.041 +3371.5 "Ion Efflux" Ability { id: "3357", source: "Omega" } +3377.7 "--sync--" Ability { id: "3381", source: "Omega" } # drift 0.042001 +3382.7 "Archive Peripheral" Ability { id: "3358", source: "Omega" } +3399.0 "Hyper Pulse" Ability { id: "335A", source: "Right Arm Unit" } duration 6.5 +3403.9 "Target Analysis" Ability { id: "336C", source: "Omega" } +3407.4 "Savage Wave Cannon" Ability { id: "336D", source: "Omega" } # drift 0.043999 +3410.5 "--sync--" Ability { id: "3359", source: "Omega" } +3419.6 "Diffuse Wave Cannon" Ability { id: "336[78]", source: "Omega" } +3427.8 "Oversampled Wave Cannon" Ability { id: "336[45]", source: "Omega" } +3442.0 "Index and Archive Peripheral" Ability { id: "339A", source: "Omega" } +3447.2 "--sync--" Ability { id: "3381", source: "Omega" } +3456.3 "Hyper Pulse" Ability { id: "335C", source: "Right Arm Unit" } duration 6.5 +3456.4 "Wave Cannon" Ability { id: "336A", source: "Omega" } +3464.5 "Target Analysis" Ability { id: "336C", source: "Omega" } +3467.8 "Savage Wave Cannon" Ability { id: "336D", source: "Omega" } +3470.9 "--sync--" Ability { id: "3359", source: "Omega" } # drift -0.047 +3493.1 "Patch" Ability { id: "3376", source: "Omega" } +3500.2 "Diffuse Wave Cannon" Ability { id: "336[78]", source: "Omega" } +3508.4 "Oversampled Wave Cannon" Ability { id: "336[45]", source: "Omega" } +3520.7 "Ion Efflux" Ability { id: "3357", source: "Omega" } +3529.0 "Archive All" Ability { id: "335D", source: "Omega" } # drift -0.045999 +3542.1 "Electric Slide" Ability { id: "3363", source: "Omega" } +3548.2 "Delta Attack" Ability { id: "3378", source: "Omega" } +3551.3 "Floodlight" Ability { id: "337A", source: "Omega" } +3553.3 "Optimized Fire III" Ability { id: "3379", source: "Omega" } # drift 0.043999 +3553.3 "Spotlight" Ability { id: "337B", source: "Omega" } +3556.1 "Colossal Blow" Ability { id: "3360", source: "Left Arm Unit" } +3558.3 "--sync--" Ability { id: "335E", source: "Omega" } +3566.5 "Diffuse Wave Cannon" Ability { id: "336[78]", source: "Omega" } # drift -0.042 +3579.8 "--sync--" Ability { id: "3381", source: "Omega" } +3585.2 "Program Omega" Ability { id: "360A", source: "Omega" } +3587.3 "Ion Efflux" Ability { id: "3355", source: "Omega" } # Skipping the 3356 small explosions -3596.4 "Ion Efflux" sync / 1[56]:[^:]*:Omega:35E1:/ -3599.6 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3355:/ -3608.7 "Ion Efflux" sync / 1[56]:[^:]*:Omega:35E1:/ -3611.8 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3355:/ -3620.9 "Ion Efflux" sync / 1[56]:[^:]*:Omega:35E1:/ -3624.1 "Ion Efflux" sync / 1[56]:[^:]*:Omega:3355:/ -3633.3 "Ion Efflux" sync / 1[56]:[^:]*:Omega:35E1:/ -3646.4 "Enrage" sync / 1[56]:[^:]*:Omega:337C:/ +3596.4 "Ion Efflux" Ability { id: "35E1", source: "Omega" } +3599.6 "Ion Efflux" Ability { id: "3355", source: "Omega" } +3608.7 "Ion Efflux" Ability { id: "35E1", source: "Omega" } +3611.8 "Ion Efflux" Ability { id: "3355", source: "Omega" } +3620.9 "Ion Efflux" Ability { id: "35E1", source: "Omega" } +3624.1 "Ion Efflux" Ability { id: "3355", source: "Omega" } +3633.3 "Ion Efflux" Ability { id: "35E1", source: "Omega" } +3646.4 "Enrage" Ability { id: "337C", source: "Omega" } diff --git a/ui/raidboss/data/04-sb/raid/o1n.txt b/ui/raidboss/data/04-sb/raid/o1n.txt index 03f380a21b..5a7db6d38f 100644 --- a/ui/raidboss/data/04-sb/raid/o1n.txt +++ b/ui/raidboss/data/04-sb/raid/o1n.txt @@ -5,141 +5,141 @@ # Enrage is approximately 13:40. Yes, Normal has an enrage. # -ii 1ED9 1EDA 23D7 23D9 2583 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.6 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ window 6.6,2.5 -12.8 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -19.0 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ window 19,10 -29.1 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -37.3 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -38.1 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -52.6 "Breath Wing" sync / 1[56]:[^:]*:Alte Roite:23DE:/ window 30,30 -56.8 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -62.7 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -68.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -75.0 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -82.7 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -87.2 "Clamp" sync / 1[56]:[^:]*:Alte Roite:23E2:/ window 30,30 -93.4 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -99.5 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:23DF:/ -112.7 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:23DA:/ window 30,30 -118.7 "Blaze" sync / 1[56]:[^:]*:Alte Roite:23E1:/ -125.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.6 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } window 6.6,2.5 +12.8 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +19.0 "Flame" Ability { id: "23DD", source: "Alte Roite" } window 19,10 +29.1 "Roar" Ability { id: "23DC", source: "Alte Roite" } +37.3 "Flame" Ability { id: "23DD", source: "Alte Roite" } +38.1 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +52.6 "Breath Wing" Ability { id: "23DE", source: "Alte Roite" } window 30,30 +56.8 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +62.7 "Roar" Ability { id: "23DC", source: "Alte Roite" } +68.9 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +75.0 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +82.7 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +87.2 "Clamp" Ability { id: "23E2", source: "Alte Roite" } window 30,30 +93.4 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +99.5 "Flash Freeze" Ability { id: "23DF", source: "Alte Roite" } +112.7 "Levinbolt" Ability { id: "23DA", source: "Alte Roite" } window 30,30 +118.7 "Blaze" Ability { id: "23E1", source: "Alte Roite" } +125.9 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } -140.3 "The Classical Elements" sync / 1[56]:[^:]*:Alte Roite:23E0:/ window 30,30 -143.4 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -145.5 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:23DF:/ -155.6 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -162.9 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -166.9 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:23DA:/ window 30,30 -171.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -178.0 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -185.7 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -191.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -194.3 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -209.7 "Breath Wing" sync / 1[56]:[^:]*:Alte Roite:23DE:/ window 30,30 -210.4 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -213.8 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -216.8 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -223.0 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -229.1 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -236.2 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:23DB:/ window 30,30 -243.3 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -249.4 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -257.1 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -261.6 "Clamp" sync / 1[56]:[^:]*:Alte Roite:23E2:/ -267.7 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ +140.3 "The Classical Elements" Ability { id: "23E0", source: "Alte Roite" } window 30,30 +143.4 "Flame" Ability { id: "23DD", source: "Alte Roite" } +145.5 "Flash Freeze" Ability { id: "23DF", source: "Alte Roite" } +155.6 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +162.9 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +166.9 "Levinbolt" Ability { id: "23DA", source: "Alte Roite" } window 30,30 +171.9 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +178.0 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +185.7 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +191.2 "Flame" Ability { id: "23DD", source: "Alte Roite" } +194.3 "Flame" Ability { id: "23DD", source: "Alte Roite" } +209.7 "Breath Wing" Ability { id: "23DE", source: "Alte Roite" } window 30,30 +210.4 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +213.8 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +216.8 "Roar" Ability { id: "23DC", source: "Alte Roite" } +223.0 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +229.1 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +236.2 "Charybdis" Ability { id: "23DB", source: "Alte Roite" } window 30,30 +243.3 "Roar" Ability { id: "23DC", source: "Alte Roite" } +249.4 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +257.1 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +261.6 "Clamp" Ability { id: "23E2", source: "Alte Roite" } +267.7 "Roar" Ability { id: "23DC", source: "Alte Roite" } -278.1 "The Classical Elements" sync / 1[56]:[^:]*:Alte Roite:23E0:/ window 30,30 -281.3 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -284.4 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -289.5 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:23DF:/ -299.6 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ window 30,30 -300.4 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -303.9 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -309.8 "Blaze" sync / 1[56]:[^:]*:Alte Roite:23E1:/ -322.0 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:23DB:/ window 30,30 -329.1 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -331.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -333.3 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:23DF:/ -343.4 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -350.7 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -354.7 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:23DA:/ window 30,30 -361.3 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -366.8 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -372.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -380.6 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -386.1 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -389.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -404.6 "Breath Wing" sync / 1[56]:[^:]*:Alte Roite:23DE:/ window 30,30 -405.3 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -408.7 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -411.7 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -417.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -424.0 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -431.1 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:23DB:/ -438.2 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -444.3 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -452.0 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -456.5 "Clamp" sync / 1[56]:[^:]*:Alte Roite:23E2:/ -462.6 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ +278.1 "The Classical Elements" Ability { id: "23E0", source: "Alte Roite" } window 30,30 +281.3 "Flame" Ability { id: "23DD", source: "Alte Roite" } +284.4 "Flame" Ability { id: "23DD", source: "Alte Roite" } +289.5 "Flash Freeze" Ability { id: "23DF", source: "Alte Roite" } +299.6 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } window 30,30 +300.4 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +303.9 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +309.8 "Blaze" Ability { id: "23E1", source: "Alte Roite" } +322.0 "Charybdis" Ability { id: "23DB", source: "Alte Roite" } window 30,30 +329.1 "Roar" Ability { id: "23DC", source: "Alte Roite" } +331.2 "Flame" Ability { id: "23DD", source: "Alte Roite" } +333.3 "Flash Freeze" Ability { id: "23DF", source: "Alte Roite" } +343.4 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +350.7 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +354.7 "Levinbolt" Ability { id: "23DA", source: "Alte Roite" } window 30,30 +361.3 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +366.8 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +372.9 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +380.6 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +386.1 "Flame" Ability { id: "23DD", source: "Alte Roite" } +389.2 "Flame" Ability { id: "23DD", source: "Alte Roite" } +404.6 "Breath Wing" Ability { id: "23DE", source: "Alte Roite" } window 30,30 +405.3 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +408.7 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +411.7 "Roar" Ability { id: "23DC", source: "Alte Roite" } +417.9 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +424.0 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +431.1 "Charybdis" Ability { id: "23DB", source: "Alte Roite" } +438.2 "Roar" Ability { id: "23DC", source: "Alte Roite" } +444.3 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +452.0 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +456.5 "Clamp" Ability { id: "23E2", source: "Alte Roite" } +462.6 "Roar" Ability { id: "23DC", source: "Alte Roite" } -473.0 "The Classical Elements" sync / 1[56]:[^:]*:Alte Roite:23E0:/ -476.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -479.3 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -484.4 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:23DF:/ -494.5 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -495.3 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -498.8 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -504.7 "Blaze" sync / 1[56]:[^:]*:Alte Roite:23E1:/ -516.8 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:23DB:/ window 30,30 -523.9 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -526.0 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -528.1 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:23DF:/ -538.2 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -545.5 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -549.6 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:23DA:/ window 30,30 -556.2 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -561.7 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -567.8 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -575.5 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -581.0 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -584.1 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -599.5 "Breath Wing" sync / 1[56]:[^:]*:Alte Roite:23DE:/ window 30,30 -600.2 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -603.6 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -606.6 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -612.8 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -618.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -626.0 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:23DB:/ window 30,30 -633.1 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -639.2 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -646.9 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -651.4 "Clamp" sync / 1[56]:[^:]*:Alte Roite:23E2:/ -657.5 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ +473.0 "The Classical Elements" Ability { id: "23E0", source: "Alte Roite" } +476.2 "Flame" Ability { id: "23DD", source: "Alte Roite" } +479.3 "Flame" Ability { id: "23DD", source: "Alte Roite" } +484.4 "Flash Freeze" Ability { id: "23DF", source: "Alte Roite" } +494.5 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +495.3 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +498.8 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +504.7 "Blaze" Ability { id: "23E1", source: "Alte Roite" } +516.8 "Charybdis" Ability { id: "23DB", source: "Alte Roite" } window 30,30 +523.9 "Roar" Ability { id: "23DC", source: "Alte Roite" } +526.0 "Flame" Ability { id: "23DD", source: "Alte Roite" } +528.1 "Flash Freeze" Ability { id: "23DF", source: "Alte Roite" } +538.2 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +545.5 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +549.6 "Levinbolt" Ability { id: "23DA", source: "Alte Roite" } window 30,30 +556.2 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +561.7 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +567.8 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +575.5 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +581.0 "Flame" Ability { id: "23DD", source: "Alte Roite" } +584.1 "Flame" Ability { id: "23DD", source: "Alte Roite" } +599.5 "Breath Wing" Ability { id: "23DE", source: "Alte Roite" } window 30,30 +600.2 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +603.6 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +606.6 "Roar" Ability { id: "23DC", source: "Alte Roite" } +612.8 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +618.9 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +626.0 "Charybdis" Ability { id: "23DB", source: "Alte Roite" } window 30,30 +633.1 "Roar" Ability { id: "23DC", source: "Alte Roite" } +639.2 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +646.9 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +651.4 "Clamp" Ability { id: "23E2", source: "Alte Roite" } +657.5 "Roar" Ability { id: "23DC", source: "Alte Roite" } -667.9 "The Classical Elements" sync / 1[56]:[^:]*:Alte Roite:23E0:/ -671.1 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -674.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -679.3 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:23DF:/ -689.4 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -690.2 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -693.6 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -699.5 "Blaze" sync / 1[56]:[^:]*:Alte Roite:23E1:/ -711.7 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:23DB:/ window 30,30 -718.8 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -720.9 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ -723.0 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:23DF:/ -733.1 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -740.4 "Burn" sync / 1[56]:[^:]*:Ball Of Fire:23D5:/ -744.5 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:23DA:/ window 30,30 -751.1 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -756.6 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -762.7 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -769.8 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:23DB:/ -776.9 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ window 30,15 -783.0 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:23D6:/ -790.7 "Twin Bolt x2" # sync / 1[56]:[^:]*:Alte Roite:23D8:/ -795.2 "Clamp" sync / 1[56]:[^:]*:Alte Roite:23E2:/ -801.3 "Roar" sync / 1[56]:[^:]*:Alte Roite:23DC:/ -803.5 "Flame" sync / 1[56]:[^:]*:Alte Roite:23DD:/ window 50,5 -820.7 "Burn Enrage" sync / 1[56]:[^:]*:Ball Of Fire:23E4:/ +667.9 "The Classical Elements" Ability { id: "23E0", source: "Alte Roite" } +671.1 "Flame" Ability { id: "23DD", source: "Alte Roite" } +674.2 "Flame" Ability { id: "23DD", source: "Alte Roite" } +679.3 "Flash Freeze" Ability { id: "23DF", source: "Alte Roite" } +689.4 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +690.2 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +693.6 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +699.5 "Blaze" Ability { id: "23E1", source: "Alte Roite" } +711.7 "Charybdis" Ability { id: "23DB", source: "Alte Roite" } window 30,30 +718.8 "Roar" Ability { id: "23DC", source: "Alte Roite" } +720.9 "Flame" Ability { id: "23DD", source: "Alte Roite" } +723.0 "Flash Freeze" Ability { id: "23DF", source: "Alte Roite" } +733.1 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +740.4 "Burn" Ability { id: "23D5", source: "Ball Of Fire" } +744.5 "Levinbolt" Ability { id: "23DA", source: "Alte Roite" } window 30,30 +751.1 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +756.6 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +762.7 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +769.8 "Charybdis" Ability { id: "23DB", source: "Alte Roite" } +776.9 "Roar" Ability { id: "23DC", source: "Alte Roite" } window 30,15 +783.0 "Wyrm Tail" Ability { id: "23D6", source: "Alte Roite" } +790.7 "Twin Bolt x2" # Ability { id: "23D8", source: "Alte Roite" } +795.2 "Clamp" Ability { id: "23E2", source: "Alte Roite" } +801.3 "Roar" Ability { id: "23DC", source: "Alte Roite" } +803.5 "Flame" Ability { id: "23DD", source: "Alte Roite" } window 50,5 +820.7 "Burn Enrage" Ability { id: "23E4", source: "Ball Of Fire" } diff --git a/ui/raidboss/data/04-sb/raid/o1s.txt b/ui/raidboss/data/04-sb/raid/o1s.txt index 0295134367..332397e98d 100644 --- a/ui/raidboss/data/04-sb/raid/o1s.txt +++ b/ui/raidboss/data/04-sb/raid/o1s.txt @@ -10,116 +10,116 @@ hideall "Flame" ###### 1st Classical Elements # spread: knockback => in => spread+lightning -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ window 7,3 -13.0 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -20.1 "Twin Bolt" sync / 1[56]:[^:]*:Alte Roite:1ECF:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.9 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } window 7,3 +13.0 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +20.1 "Twin Bolt" Ability { id: "1ECF", source: "Alte Roite" } -34.6 "Classical (spread)" sync / 1[56]:[^:]*:Alte Roite:1EDC:/ window 80,80 -37.7 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -41.8 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:1ED7:/ -51.9 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -57.2 "Outer Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -60.5 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:1ED1:/ -66.6 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ -72.8 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -78.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -90.0 "Twin Bolt" sync / 1[56]:[^:]*:Alte Roite:1ECF:/ -96.1 "Clamp" sync / 1[56]:[^:]*:Alte Roite:1EDE:/ -98.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -103.3 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -109.4 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -117.4 "Outer Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -120.5 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:1ED1:/ -122.5 "Inner Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -127.6 "Blaze" sync / 1[56]:[^:]*:Alte Roite:1EDD:/ -134.8 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -140.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -148.0 "Twin Bolt" sync / 1[56]:[^:]*:Alte Roite:1ECF:/ -158.1 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ -164.2 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ -170.4 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -177.5 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:1ED3:/ -184.7 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ +34.6 "Classical (spread)" Ability { id: "1EDC", source: "Alte Roite" } window 80,80 +37.7 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +41.8 "Flash Freeze" Ability { id: "1ED7", source: "Alte Roite" } +51.9 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +57.2 "Outer Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +60.5 "Levinbolt" Ability { id: "1ED1", source: "Alte Roite" } +66.6 "Roar" Ability { id: "1ED4", source: "Alte Roite" } +72.8 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +78.9 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +90.0 "Twin Bolt" Ability { id: "1ECF", source: "Alte Roite" } +96.1 "Clamp" Ability { id: "1EDE", source: "Alte Roite" } +98.2 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +103.3 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +109.4 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +117.4 "Outer Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +120.5 "Levinbolt" Ability { id: "1ED1", source: "Alte Roite" } +122.5 "Inner Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +127.6 "Blaze" Ability { id: "1EDD", source: "Alte Roite" } +134.8 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +140.9 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +148.0 "Twin Bolt" Ability { id: "1ECF", source: "Alte Roite" } +158.1 "Roar" Ability { id: "1ED4", source: "Alte Roite" } +164.2 "Roar" Ability { id: "1ED4", source: "Alte Roite" } +170.4 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +177.5 "Charybdis" Ability { id: "1ED3", source: "Alte Roite" } +184.7 "Roar" Ability { id: "1ED4", source: "Alte Roite" } ###### 2nd Classical Elements # safe: knockback safe spot => spread+lightning -195.1 "Classical (safe)" sync / 1[56]:[^:]*:Alte Roite:1EDC:/ window 80,80 -198.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -204.8 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:1ED7:/ -213.9 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -217.7 "Outer Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -223.0 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:1ED1:/ -225.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -230.3 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:1ED7:/ -240.7 "Breath Wing" sync / 1[56]:[^:]*:Alte Roite:1ED6:/ -244.8 "Inner Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -248.6 "Clamp" sync / 1[56]:[^:]*:Alte Roite:1EDE:/ -255.7 "Blaze" sync / 1[56]:[^:]*:Alte Roite:1EDD:/ -262.8 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ -269.0 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -275.1 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -286.2 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:1ED3:/ -294.3 "Twin Bolt" sync / 1[56]:[^:]*:Alte Roite:1ECF:/ -300.5 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -308.6 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -317.7 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:1ED1:/ -319.7 "Inner Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -327.4 "Clamp" sync / 1[56]:[^:]*:Alte Roite:1EDE:/ -327.8 "Outer Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -333.5 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ -339.6 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ +195.1 "Classical (safe)" Ability { id: "1EDC", source: "Alte Roite" } window 80,80 +198.2 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +204.8 "Flash Freeze" Ability { id: "1ED7", source: "Alte Roite" } +213.9 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +217.7 "Outer Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +223.0 "Levinbolt" Ability { id: "1ED1", source: "Alte Roite" } +225.2 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +230.3 "Flash Freeze" Ability { id: "1ED7", source: "Alte Roite" } +240.7 "Breath Wing" Ability { id: "1ED6", source: "Alte Roite" } +244.8 "Inner Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +248.6 "Clamp" Ability { id: "1EDE", source: "Alte Roite" } +255.7 "Blaze" Ability { id: "1EDD", source: "Alte Roite" } +262.8 "Roar" Ability { id: "1ED4", source: "Alte Roite" } +269.0 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +275.1 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +286.2 "Charybdis" Ability { id: "1ED3", source: "Alte Roite" } +294.3 "Twin Bolt" Ability { id: "1ECF", source: "Alte Roite" } +300.5 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +308.6 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +317.7 "Levinbolt" Ability { id: "1ED1", source: "Alte Roite" } +319.7 "Inner Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +327.4 "Clamp" Ability { id: "1EDE", source: "Alte Roite" } +327.8 "Outer Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +333.5 "Roar" Ability { id: "1ED4", source: "Alte Roite" } +339.6 "Roar" Ability { id: "1ED4", source: "Alte Roite" } ###### 3rd Classical Elements # stack: knockback => in => blaze stack -350.0 "Classical (stack)" sync / 1[56]:[^:]*:Alte Roite:1EDC:/ window 80,80 -353.1 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -356.2 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -361.3 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:1ED7:/ -371.4 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -372.3 "Outer Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -375.8 "Inner Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -380.6 "Blaze" sync / 1[56]:[^:]*:Alte Roite:1EDD:/ -387.7 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ -393.9 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -400.0 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -411.1 "Twin Bolt" sync / 1[56]:[^:]*:Alte Roite:1ECF:/ -417.2 "Clamp" sync / 1[56]:[^:]*:Alte Roite:1EDE:/ -419.4 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -424.5 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -430.6 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -438.6 "Outer Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -441.7 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:1ED1:/ -443.7 "Inner Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -448.9 "Blaze" sync / 1[56]:[^:]*:Alte Roite:1EDD:/ +350.0 "Classical (stack)" Ability { id: "1EDC", source: "Alte Roite" } window 80,80 +353.1 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +356.2 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +361.3 "Flash Freeze" Ability { id: "1ED7", source: "Alte Roite" } +371.4 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +372.3 "Outer Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +375.8 "Inner Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +380.6 "Blaze" Ability { id: "1EDD", source: "Alte Roite" } +387.7 "Roar" Ability { id: "1ED4", source: "Alte Roite" } +393.9 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +400.0 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +411.1 "Twin Bolt" Ability { id: "1ECF", source: "Alte Roite" } +417.2 "Clamp" Ability { id: "1EDE", source: "Alte Roite" } +419.4 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +424.5 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +430.6 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +438.6 "Outer Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +441.7 "Levinbolt" Ability { id: "1ED1", source: "Alte Roite" } +443.7 "Inner Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +448.9 "Blaze" Ability { id: "1EDD", source: "Alte Roite" } ##### 4th Classical Elements # spread: knockback => in => spread+lightning -460.3 "Classical (spread)" sync / 1[56]:[^:]*:Alte Roite:1EDC:/ window 80,80 -463.4 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -467.5 "Flash Freeze" sync / 1[56]:[^:]*:Alte Roite:1ED7:/ -477.6 "Downburst" sync / 1[56]:[^:]*:Alte Roite:1ED8:/ -483.0 "Outer Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -486.3 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:1ED1:/ -492.4 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ -498.6 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -504.7 "Wyrm Tail" sync / 1[56]:[^:]*:Alte Roite:1ECE:/ -515.8 "Charybdis" sync / 1[56]:[^:]*:Alte Roite:1ED3:/ -523.9 "Twin Bolt" sync / 1[56]:[^:]*:Alte Roite:1ECF:/ -530.1 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -538.3 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -547.4 "Levinbolt" sync / 1[56]:[^:]*:Alte Roite:1ED1:/ -549.4 "Inner Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -557.1 "Clamp" sync / 1[56]:[^:]*:Alte Roite:1EDE:/ -557.6 "Outer Fireballs" sync / 1[56]:[^:]*:Ball Of Fire:1ECB:/ -563.3 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ -569.5 "Roar" sync / 1[56]:[^:]*:Alte Roite:1ED4:/ +460.3 "Classical (spread)" Ability { id: "1EDC", source: "Alte Roite" } window 80,80 +463.4 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +467.5 "Flash Freeze" Ability { id: "1ED7", source: "Alte Roite" } +477.6 "Downburst" Ability { id: "1ED8", source: "Alte Roite" } +483.0 "Outer Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +486.3 "Levinbolt" Ability { id: "1ED1", source: "Alte Roite" } +492.4 "Roar" Ability { id: "1ED4", source: "Alte Roite" } +498.6 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +504.7 "Wyrm Tail" Ability { id: "1ECE", source: "Alte Roite" } +515.8 "Charybdis" Ability { id: "1ED3", source: "Alte Roite" } +523.9 "Twin Bolt" Ability { id: "1ECF", source: "Alte Roite" } +530.1 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +538.3 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +547.4 "Levinbolt" Ability { id: "1ED1", source: "Alte Roite" } +549.4 "Inner Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +557.1 "Clamp" Ability { id: "1EDE", source: "Alte Roite" } +557.6 "Outer Fireballs" Ability { id: "1ECB", source: "Ball Of Fire" } +563.3 "Roar" Ability { id: "1ED4", source: "Alte Roite" } +569.5 "Roar" Ability { id: "1ED4", source: "Alte Roite" } -571.7 "Flame" sync / 1[56]:[^:]*:Alte Roite:1ED5:/ -589.0 "Enrage" sync / 1[56]:[^:]*:Ball Of Fire:23E4:/ +571.7 "Flame" Ability { id: "1ED5", source: "Alte Roite" } +589.0 "Enrage" Ability { id: "23E4", source: "Ball Of Fire" } diff --git a/ui/raidboss/data/04-sb/raid/o2n.txt b/ui/raidboss/data/04-sb/raid/o2n.txt index 36228b219e..d3dcf10222 100644 --- a/ui/raidboss/data/04-sb/raid/o2n.txt +++ b/ui/raidboss/data/04-sb/raid/o2n.txt @@ -7,104 +7,104 @@ hideall "--sync--" # Unlike O1N and O3N, Catastrophe has no enrage. # -ii 24E8 24FC 2500 2501 2505 2514 2515 2516 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -5.6 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2511:/ window 5.6,2 -9.2 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2511:/ -17.8 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2512:/ -25.0 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -32.1 "Evilsphere" sync / 1[56]:[^:]*:Catastrophe:250F:/ -37.3 "Gravitational Distortion" sync / 1[56]:[^:]*:Catastrophe:250A:/ -53.4 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -65.5 "Gravitational Manipulation" sync / 1[56]:[^:]*:Catastrophe:2504:/ -72.7 "Gravitational Explosion" sync / 1[56]:[^:]*:Catastrophe:2506:/ -79.7 "Paranormal Wave" sync / 1[56]:[^:]*:Catastrophe:250E:/ -87.8 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -98.0 "Maniacal Probe" sync / 1[56]:[^:]*:Catastrophe:258F:/ -104.1 "Erosion" sync / 1[56]:[^:]*:Fleshy Member:2590:/ window 30,30 -108.2 "Epicenter" sync / 1[56]:[^:]*:Catastrophe:24A2:/ -116.3 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2510:/ -126.3 "Main Quake" sync / 1[56]:[^:]*:Catastrophe:24A5:/ -133.4 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -141.5 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -153.6 "Demon Eye" sync / 1[56]:[^:]*:Catastrophe:250D:/ -154.6 "Explosion" sync / 1[56]:[^:]*:Petrosphere:2513:/ -156.8 "Paranormal Wave" sync / 1[56]:[^:]*:Catastrophe:250E:/ -165.9 "Evilsphere" sync / 1[56]:[^:]*:Catastrophe:250F:/ -171.1 "Paranormal Wave" sync / 1[56]:[^:]*:Catastrophe:250E:/ -179.3 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -189.4 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -# 192.5 "Explosion" sync / 1[56]:[^:]*:Petrosphere:2513:/ -192.5 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ -199.6 "Demon Eye" sync / 1[56]:[^:]*:Catastrophe:250D:/ -207.8 "Maniacal Probe" sync / 1[56]:[^:]*:Catastrophe:258F:/ -213.9 "Erosion" sync / 1[56]:[^:]*:Fleshy Member:2590:/ window 30,30 -218.0 "Epicenter" sync / 1[56]:[^:]*:Catastrophe:24A2:/ -236.2 "Main Quake" sync / 1[56]:[^:]*:Catastrophe:24A5:/ -243.1 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -257.3 " -100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FF:/ -# 264.8 "Explosion" sync / 1[56]:[^:]*:Petrosphere:2513:/ -264.8 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +5.6 "Tremblor" Ability { id: "2511", source: "Catastrophe" } window 5.6,2 +9.2 "Tremblor" Ability { id: "2511", source: "Catastrophe" } +17.8 "Earthquake" Ability { id: "2512", source: "Catastrophe" } +25.0 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +32.1 "Evilsphere" Ability { id: "250F", source: "Catastrophe" } +37.3 "Gravitational Distortion" Ability { id: "250A", source: "Catastrophe" } +53.4 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +65.5 "Gravitational Manipulation" Ability { id: "2504", source: "Catastrophe" } +72.7 "Gravitational Explosion" Ability { id: "2506", source: "Catastrophe" } +79.7 "Paranormal Wave" Ability { id: "250E", source: "Catastrophe" } +87.8 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +98.0 "Maniacal Probe" Ability { id: "258F", source: "Catastrophe" } +104.1 "Erosion" Ability { id: "2590", source: "Fleshy Member" } window 30,30 +108.2 "Epicenter" Ability { id: "24A2", source: "Catastrophe" } +116.3 "Gravitational Wave" Ability { id: "2510", source: "Catastrophe" } +126.3 "Main Quake" Ability { id: "24A5", source: "Catastrophe" } +133.4 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +141.5 "Antilight" Ability { id: "2502", source: "Catastrophe" } +153.6 "Demon Eye" Ability { id: "250D", source: "Catastrophe" } +154.6 "Explosion" Ability { id: "2513", source: "Petrosphere" } +156.8 "Paranormal Wave" Ability { id: "250E", source: "Catastrophe" } +165.9 "Evilsphere" Ability { id: "250F", source: "Catastrophe" } +171.1 "Paranormal Wave" Ability { id: "250E", source: "Catastrophe" } +179.3 "Antilight" Ability { id: "2502", source: "Catastrophe" } +189.4 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +# 192.5 "Explosion" Ability { id: "2513", source: "Petrosphere" } +192.5 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } +199.6 "Demon Eye" Ability { id: "250D", source: "Catastrophe" } +207.8 "Maniacal Probe" Ability { id: "258F", source: "Catastrophe" } +213.9 "Erosion" Ability { id: "2590", source: "Fleshy Member" } window 30,30 +218.0 "Epicenter" Ability { id: "24A2", source: "Catastrophe" } +236.2 "Main Quake" Ability { id: "24A5", source: "Catastrophe" } +243.1 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +257.3 " -100 Gs" Ability { id: "24FF", source: "Catastrophe" } +# 264.8 "Explosion" Ability { id: "2513", source: "Petrosphere" } +264.8 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } # A short intermission block after -100Gs -268.4 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2510:/ window 30,30 -280.5 "Evilsphere" sync / 1[56]:[^:]*:Catastrophe:250F:/ -290.7 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -298.8 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -308.0 "Gravitational Distortion" sync / 1[56]:[^:]*:Catastrophe:250A:/ -312.0 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ -329.1 "Maniacal Probe" sync / 1[56]:[^:]*:Catastrophe:258F:/ -335.2 "Erosion" sync / 1[56]:[^:]*:Fleshy Member:2590:/ -339.2 "Epicenter" sync / 1[56]:[^:]*:Catastrophe:24A2:/ -344.3 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -354.5 "Demon Eye" sync / 1[56]:[^:]*:Catastrophe:250D:/ -357.4 "Main Quake" sync / 1[56]:[^:]*:Catastrophe:24A5:/ +268.4 "Gravitational Wave" Ability { id: "2510", source: "Catastrophe" } window 30,30 +280.5 "Evilsphere" Ability { id: "250F", source: "Catastrophe" } +290.7 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +298.8 "Antilight" Ability { id: "2502", source: "Catastrophe" } +308.0 "Gravitational Distortion" Ability { id: "250A", source: "Catastrophe" } +312.0 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } +329.1 "Maniacal Probe" Ability { id: "258F", source: "Catastrophe" } +335.2 "Erosion" Ability { id: "2590", source: "Fleshy Member" } +339.2 "Epicenter" Ability { id: "24A2", source: "Catastrophe" } +344.3 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +354.5 "Demon Eye" Ability { id: "250D", source: "Catastrophe" } +357.4 "Main Quake" Ability { id: "24A5", source: "Catastrophe" } # Rotation block -362.7 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2510:/ window 30,30 -372.8 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -379.9 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2511:/ -383.6 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2511:/ -386.0 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ -392.3 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2512:/ window 30,30 -400.5 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2510:/ -410.6 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -415.7 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -# 423.7 "Explosion" sync / 1[56]:[^:]*:Petrosphere:2513:/ -423.7 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ -425.8 "Demon Eye" sync / 1[56]:[^:]*:Catastrophe:250D:/ window 30,30 -441.0 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -449.1 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -458.3 "Gravitational Distortion" sync / 1[56]:[^:]*:Catastrophe:250A:/ -462.3 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ -479.4 "Maniacal Probe" sync / 1[56]:[^:]*:Catastrophe:258F:/ -485.5 "Erosion" sync / 1[56]:[^:]*:Fleshy Member:2590:/ -489.5 "Epicenter" sync / 1[56]:[^:]*:Catastrophe:24A2:/ -494.7 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -504.9 "Demon Eye" sync / 1[56]:[^:]*:Catastrophe:250D:/ -507.8 "Main Quake" sync / 1[56]:[^:]*:Catastrophe:24A5:/ window 30,30 +362.7 "Gravitational Wave" Ability { id: "2510", source: "Catastrophe" } window 30,30 +372.8 "Antilight" Ability { id: "2502", source: "Catastrophe" } +379.9 "Tremblor" Ability { id: "2511", source: "Catastrophe" } +383.6 "Tremblor" Ability { id: "2511", source: "Catastrophe" } +386.0 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } +392.3 "Earthquake" Ability { id: "2512", source: "Catastrophe" } window 30,30 +400.5 "Gravitational Wave" Ability { id: "2510", source: "Catastrophe" } +410.6 "Antilight" Ability { id: "2502", source: "Catastrophe" } +415.7 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +# 423.7 "Explosion" Ability { id: "2513", source: "Petrosphere" } +423.7 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } +425.8 "Demon Eye" Ability { id: "250D", source: "Catastrophe" } window 30,30 +441.0 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +449.1 "Antilight" Ability { id: "2502", source: "Catastrophe" } +458.3 "Gravitational Distortion" Ability { id: "250A", source: "Catastrophe" } +462.3 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } +479.4 "Maniacal Probe" Ability { id: "258F", source: "Catastrophe" } +485.5 "Erosion" Ability { id: "2590", source: "Fleshy Member" } +489.5 "Epicenter" Ability { id: "24A2", source: "Catastrophe" } +494.7 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +504.9 "Demon Eye" Ability { id: "250D", source: "Catastrophe" } +507.8 "Main Quake" Ability { id: "24A5", source: "Catastrophe" } window 30,30 -513.1 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2510:/ window 30,30 -523.2 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -530.3 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2511:/ -534.0 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2511:/ -536.4 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ -542.7 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2512:/ window 30,30 -550.9 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2510:/ -561.0 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -566.1 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -# 574.1 "Explosion" sync / 1[56]:[^:]*:Petrosphere:2513:/ -574.1 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ -576.2 "Demon Eye" sync / 1[56]:[^:]*:Catastrophe:250D:/ window 30,30 -591.4 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -599.5 "Antilight" sync / 1[56]:[^:]*:Catastrophe:2502:/ -608.7 "Gravitational Distortion" sync / 1[56]:[^:]*:Catastrophe:250A:/ window 30,30 -612.7 "Explosion" sync / 1[56]:[^:]*:Potent Petrosphere:2503:/ -629.8 "Maniacal Probe" sync / 1[56]:[^:]*:Catastrophe:258F:/ -635.9 "Erosion" sync / 1[56]:[^:]*:Fleshy Member:2590:/ -639.9 "Epicenter" sync / 1[56]:[^:]*:Catastrophe:24A2:/ -645.1 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:24FB:/ -655.3 "Demon Eye" sync / 1[56]:[^:]*:Catastrophe:250D:/ window 30,30 -658.2 "Main Quake" sync / 1[56]:[^:]*:Catastrophe:24A5:/ jump 507.8 +513.1 "Gravitational Wave" Ability { id: "2510", source: "Catastrophe" } window 30,30 +523.2 "Antilight" Ability { id: "2502", source: "Catastrophe" } +530.3 "Tremblor" Ability { id: "2511", source: "Catastrophe" } +534.0 "Tremblor" Ability { id: "2511", source: "Catastrophe" } +536.4 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } +542.7 "Earthquake" Ability { id: "2512", source: "Catastrophe" } window 30,30 +550.9 "Gravitational Wave" Ability { id: "2510", source: "Catastrophe" } +561.0 "Antilight" Ability { id: "2502", source: "Catastrophe" } +566.1 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +# 574.1 "Explosion" Ability { id: "2513", source: "Petrosphere" } +574.1 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } +576.2 "Demon Eye" Ability { id: "250D", source: "Catastrophe" } window 30,30 +591.4 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +599.5 "Antilight" Ability { id: "2502", source: "Catastrophe" } +608.7 "Gravitational Distortion" Ability { id: "250A", source: "Catastrophe" } window 30,30 +612.7 "Explosion" Ability { id: "2503", source: "Potent Petrosphere" } +629.8 "Maniacal Probe" Ability { id: "258F", source: "Catastrophe" } +635.9 "Erosion" Ability { id: "2590", source: "Fleshy Member" } +639.9 "Epicenter" Ability { id: "24A2", source: "Catastrophe" } +645.1 "100 Gs" Ability { id: "24FB", source: "Catastrophe" } +655.3 "Demon Eye" Ability { id: "250D", source: "Catastrophe" } window 30,30 +658.2 "Main Quake" Ability { id: "24A5", source: "Catastrophe" } jump 507.8 663.5 "Gravitational Wave" 673.6 "Antilight" diff --git a/ui/raidboss/data/04-sb/raid/o2s.txt b/ui/raidboss/data/04-sb/raid/o2s.txt index e2f9183cbc..2f8a5f829e 100644 --- a/ui/raidboss/data/04-sb/raid/o2s.txt +++ b/ui/raidboss/data/04-sb/raid/o2s.txt @@ -8,130 +8,130 @@ hideall "--sync--" hideall "--Reset--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -5.0 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2373:/ window 5,2.5 -8.7 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2373:/ -17.4 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2374:/ window 18,10 -24.6 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -32.8 "Antilight (center)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -50.0 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2372:/ -60.3 "Gravitational Manipulation" sync / 1[56]:[^:]*:Catastrophe:2363:/ -63.4 "Gravitational Distortion" sync / 1[56]:[^:]*:Catastrophe:2369:/ -67.5 "Gravitational Explosion" sync / 1[56]:[^:]*:Catastrophe:2367:/ - -73.6 "Paranormal Wave 1" sync / 1[56]:[^:]*:Catastrophe:2370:/ -78.8 "Paranormal Wave 2" sync / 1[56]:[^:]*:Catastrophe:2370:/ -89.0 "Evilsphere" sync / 1[56]:[^:]*:Catastrophe:2371:/ -96.2 "Paranormal Wave 3" sync / 1[56]:[^:]*:Catastrophe:2370:/ - -106.3 "Maniacal Probe (T/H)" sync / 1[56]:[^:]*:Catastrophe:235A:/ -116.4 "Erosion" sync / 1[56]:[^:]*:Fleshy Member:235B:/ -117.5 "Death's Gaze" sync / 1[56]:[^:]*:Catastrophe:236F:/ -122.7 "Epicenter" sync / 1[56]:[^:]*:Catastrophe:2357:/ -129.9 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2372:/ -137.1 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -140.9 "Main Quake" sync / 1[56]:[^:]*:Catastrophe:2359:/ -145.2 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2372:/ - -150.5 "Paranormal Wave 1" sync / 1[56]:[^:]*:Catastrophe:2370:/ -160.7 "Gravitational Manipulation" sync / 1[56]:[^:]*:Catastrophe:2363:/ -167.9 "Gravitational Explosion" sync / 1[56]:[^:]*:Catastrophe:2367:/ -175.8 "Paranormal Wave 2" sync / 1[56]:[^:]*:Catastrophe:2370:/ -185.8 "Evilsphere" sync / 1[56]:[^:]*:Catastrophe:2371:/ -192.8 "Paranormal Wave 3" sync / 1[56]:[^:]*:Catastrophe:2370:/ - -207.8 "-100 Gs" sync / 1[56]:[^:]*:Catastrophe:235E:/ -217.8 "Death's Gaze" sync / 1[56]:[^:]*:Catastrophe:236F:/ -227.8 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ - -235.8 "Antilight (center)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -238.3 "Unstable Gravity (T/H)" sync / 1[56]:[^:]*:Catastrophe:236C:/ -243.3 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2372:/ -254.3 "Long Drop" sync / 1[56]:[^:]*:Catastrophe:236B:/ -265.2 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ - -273.2 "Antilight (ground)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -277.2 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2373:/ -280.7 "Tremblor" sync / 1[56]:[^:]*:Catastrophe:2373:/ -289.2 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2374:/ -299.2 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ - -314.2 "Maniacal Probe (DPS)" sync / 1[56]:[^:]*:Catastrophe:235A:/ -324.2 "Erosion" sync / 1[56]:[^:]*:Fleshy Member:235B:/ -325.2 "Death's Gaze" sync / 1[56]:[^:]*:Catastrophe:236F:/ -330.2 "Epicenter" sync / 1[56]:[^:]*:Catastrophe:2357:/ -339.2 "Gravitational Manipulation" sync / 1[56]:[^:]*:Catastrophe:2363:/ -346.2 "Gravitational Explosion" sync / 1[56]:[^:]*:Catastrophe:2367:/ -348.2 "Main Quake" sync / 1[56]:[^:]*:Catastrophe:2359:/ - -349.2 "Antilight (center)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -351.7 "Unstable Gravity (DPS)" sync / 1[56]:[^:]*:Catastrophe:236C:/ -356.7 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -367.7 "Long Drop" sync / 1[56]:[^:]*:Catastrophe:236B:/ -377.6 "Paranormal Wave 1" sync / 1[56]:[^:]*:Catastrophe:2370:/ -382.6 "Paranormal Wave 2" sync / 1[56]:[^:]*:Catastrophe:2370:/ -392.6 "Evilsphere" sync / 1[56]:[^:]*:Catastrophe:2371:/ -399.6 "Paranormal Wave 3" sync / 1[56]:[^:]*:Catastrophe:2370:/ - -409.6 "Antilight (ground)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -416.6 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -427.6 "Maniacal Probe (T/H)" sync / 1[56]:[^:]*:Catastrophe:235A:/ -437.6 "Erosion" sync / 1[56]:[^:]*:Fleshy Member:235B:/ -438.6 "Death's Gaze" sync / 1[56]:[^:]*:Catastrophe:236F:/ -443.6 "Epicenter" sync / 1[56]:[^:]*:Catastrophe:2357:/ -452.6 "Gravitational Manipulation" sync / 1[56]:[^:]*:Catastrophe:2363:/ -459.6 "Gravitational Explosion" sync / 1[56]:[^:]*:Catastrophe:2367:/ -461.6 "Main Quake" sync / 1[56]:[^:]*:Catastrophe:2359:/ - -462.6 "Antilight (center)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -465.1 "Unstable Gravity (T/H)" sync / 1[56]:[^:]*:Catastrophe:236C:/ -470.1 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -481.1 "Long Drop" sync / 1[56]:[^:]*:Catastrophe:236B:/ -482.0 "Gravitational Distortion" sync / 1[56]:[^:]*:Catastrophe:2369:/ -489.0 "Death's Gaze" sync / 1[56]:[^:]*:Catastrophe:236F:/ -497.0 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2372:/ - -499.0 "Paranormal Wave 1" sync / 1[56]:[^:]*:Catastrophe:2370:/ -507.0 "Antilight (ground)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -514.0 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -519.0 "Paranormal Wave 2" sync / 1[56]:[^:]*:Catastrophe:2370:/ -531.0 "Evilsphere" sync / 1[56]:[^:]*:Catastrophe:2371:/ -538.0 "Paranormal Wave 3" sync / 1[56]:[^:]*:Catastrophe:2370:/ -548.0 "Gravitational Manipulation" sync / 1[56]:[^:]*:Catastrophe:2363:/ -550.0 "Gravitational Distortion" sync / 1[56]:[^:]*:Catastrophe:2369:/ -555.0 "Gravitational Explosion" sync / 1[56]:[^:]*:Catastrophe:2367:/ - -562.0 "Antilight (ground)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -568.0 "Tremblor" #sync / 1[56]:[^:]*:Catastrophe:2373:/ -568.5 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -570.5 "Tremblor" #sync / 1[56]:[^:]*:Catastrophe:2373:/ -579.0 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2374:/ -587.0 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2372:/ -600.0 "Gravitational Collapse" sync / 1[56]:[^:]*:Catastrophe:235D:/ -600.0 "-100 Gs" sync / 1[56]:[^:]*:Catastrophe:235E:/ -610.0 "Death's Gaze" sync / 1[56]:[^:]*:Catastrophe:236F:/ - -615.0 "Antilight (ground)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -621.0 "Tremblor" #sync / 1[56]:[^:]*:Catastrophe:2373:/ -621.5 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -623.5 "Tremblor" #sync / 1[56]:[^:]*:Catastrophe:2373:/ -632.0 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2374:/ - -562.0 "Antilight (ground)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -568.0 "Tremblor" #sync / 1[56]:[^:]*:Catastrophe:2373:/ -568.5 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -570.5 "Tremblor" #sync / 1[56]:[^:]*:Catastrophe:2373:/ -579.0 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2374:/ -587.0 "Gravitational Wave" sync / 1[56]:[^:]*:Catastrophe:2372:/ -600.0 "Gravitational Collapse" sync / 1[56]:[^:]*:Catastrophe:235D:/ -600.0 "-100 Gs" sync / 1[56]:[^:]*:Catastrophe:235E:/ -610.0 "Death's Gaze" sync / 1[56]:[^:]*:Catastrophe:236F:/ - -615.0 "Antilight (ground)" sync / 1[56]:[^:]*:Catastrophe:2361:/ -621.0 "Tremblor" #sync / 1[56]:[^:]*:Catastrophe:2373:/ -621.5 "100 Gs" sync / 1[56]:[^:]*:Catastrophe:2355:/ -623.5 "Tremblor" #sync / 1[56]:[^:]*:Catastrophe:2373:/ -632.0 "Earthquake" sync / 1[56]:[^:]*:Catastrophe:2374:/ - -633.3 "--sync--" sync / 14:[^:]*:Catastrophe:25A2:/ -643.3 "Gravitational Wave Enrage" sync / 1[56]:[^:]*:Catastrophe:25A2:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +5.0 "Tremblor" Ability { id: "2373", source: "Catastrophe" } window 5,2.5 +8.7 "Tremblor" Ability { id: "2373", source: "Catastrophe" } +17.4 "Earthquake" Ability { id: "2374", source: "Catastrophe" } window 18,10 +24.6 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +32.8 "Antilight (center)" Ability { id: "2361", source: "Catastrophe" } +50.0 "Gravitational Wave" Ability { id: "2372", source: "Catastrophe" } +60.3 "Gravitational Manipulation" Ability { id: "2363", source: "Catastrophe" } +63.4 "Gravitational Distortion" Ability { id: "2369", source: "Catastrophe" } +67.5 "Gravitational Explosion" Ability { id: "2367", source: "Catastrophe" } + +73.6 "Paranormal Wave 1" Ability { id: "2370", source: "Catastrophe" } +78.8 "Paranormal Wave 2" Ability { id: "2370", source: "Catastrophe" } +89.0 "Evilsphere" Ability { id: "2371", source: "Catastrophe" } +96.2 "Paranormal Wave 3" Ability { id: "2370", source: "Catastrophe" } + +106.3 "Maniacal Probe (T/H)" Ability { id: "235A", source: "Catastrophe" } +116.4 "Erosion" Ability { id: "235B", source: "Fleshy Member" } +117.5 "Death's Gaze" Ability { id: "236F", source: "Catastrophe" } +122.7 "Epicenter" Ability { id: "2357", source: "Catastrophe" } +129.9 "Gravitational Wave" Ability { id: "2372", source: "Catastrophe" } +137.1 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +140.9 "Main Quake" Ability { id: "2359", source: "Catastrophe" } +145.2 "Gravitational Wave" Ability { id: "2372", source: "Catastrophe" } + +150.5 "Paranormal Wave 1" Ability { id: "2370", source: "Catastrophe" } +160.7 "Gravitational Manipulation" Ability { id: "2363", source: "Catastrophe" } +167.9 "Gravitational Explosion" Ability { id: "2367", source: "Catastrophe" } +175.8 "Paranormal Wave 2" Ability { id: "2370", source: "Catastrophe" } +185.8 "Evilsphere" Ability { id: "2371", source: "Catastrophe" } +192.8 "Paranormal Wave 3" Ability { id: "2370", source: "Catastrophe" } + +207.8 "-100 Gs" Ability { id: "235E", source: "Catastrophe" } +217.8 "Death's Gaze" Ability { id: "236F", source: "Catastrophe" } +227.8 "100 Gs" Ability { id: "2355", source: "Catastrophe" } + +235.8 "Antilight (center)" Ability { id: "2361", source: "Catastrophe" } +238.3 "Unstable Gravity (T/H)" Ability { id: "236C", source: "Catastrophe" } +243.3 "Gravitational Wave" Ability { id: "2372", source: "Catastrophe" } +254.3 "Long Drop" Ability { id: "236B", source: "Catastrophe" } +265.2 "100 Gs" Ability { id: "2355", source: "Catastrophe" } + +273.2 "Antilight (ground)" Ability { id: "2361", source: "Catastrophe" } +277.2 "Tremblor" Ability { id: "2373", source: "Catastrophe" } +280.7 "Tremblor" Ability { id: "2373", source: "Catastrophe" } +289.2 "Earthquake" Ability { id: "2374", source: "Catastrophe" } +299.2 "100 Gs" Ability { id: "2355", source: "Catastrophe" } + +314.2 "Maniacal Probe (DPS)" Ability { id: "235A", source: "Catastrophe" } +324.2 "Erosion" Ability { id: "235B", source: "Fleshy Member" } +325.2 "Death's Gaze" Ability { id: "236F", source: "Catastrophe" } +330.2 "Epicenter" Ability { id: "2357", source: "Catastrophe" } +339.2 "Gravitational Manipulation" Ability { id: "2363", source: "Catastrophe" } +346.2 "Gravitational Explosion" Ability { id: "2367", source: "Catastrophe" } +348.2 "Main Quake" Ability { id: "2359", source: "Catastrophe" } + +349.2 "Antilight (center)" Ability { id: "2361", source: "Catastrophe" } +351.7 "Unstable Gravity (DPS)" Ability { id: "236C", source: "Catastrophe" } +356.7 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +367.7 "Long Drop" Ability { id: "236B", source: "Catastrophe" } +377.6 "Paranormal Wave 1" Ability { id: "2370", source: "Catastrophe" } +382.6 "Paranormal Wave 2" Ability { id: "2370", source: "Catastrophe" } +392.6 "Evilsphere" Ability { id: "2371", source: "Catastrophe" } +399.6 "Paranormal Wave 3" Ability { id: "2370", source: "Catastrophe" } + +409.6 "Antilight (ground)" Ability { id: "2361", source: "Catastrophe" } +416.6 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +427.6 "Maniacal Probe (T/H)" Ability { id: "235A", source: "Catastrophe" } +437.6 "Erosion" Ability { id: "235B", source: "Fleshy Member" } +438.6 "Death's Gaze" Ability { id: "236F", source: "Catastrophe" } +443.6 "Epicenter" Ability { id: "2357", source: "Catastrophe" } +452.6 "Gravitational Manipulation" Ability { id: "2363", source: "Catastrophe" } +459.6 "Gravitational Explosion" Ability { id: "2367", source: "Catastrophe" } +461.6 "Main Quake" Ability { id: "2359", source: "Catastrophe" } + +462.6 "Antilight (center)" Ability { id: "2361", source: "Catastrophe" } +465.1 "Unstable Gravity (T/H)" Ability { id: "236C", source: "Catastrophe" } +470.1 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +481.1 "Long Drop" Ability { id: "236B", source: "Catastrophe" } +482.0 "Gravitational Distortion" Ability { id: "2369", source: "Catastrophe" } +489.0 "Death's Gaze" Ability { id: "236F", source: "Catastrophe" } +497.0 "Gravitational Wave" Ability { id: "2372", source: "Catastrophe" } + +499.0 "Paranormal Wave 1" Ability { id: "2370", source: "Catastrophe" } +507.0 "Antilight (ground)" Ability { id: "2361", source: "Catastrophe" } +514.0 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +519.0 "Paranormal Wave 2" Ability { id: "2370", source: "Catastrophe" } +531.0 "Evilsphere" Ability { id: "2371", source: "Catastrophe" } +538.0 "Paranormal Wave 3" Ability { id: "2370", source: "Catastrophe" } +548.0 "Gravitational Manipulation" Ability { id: "2363", source: "Catastrophe" } +550.0 "Gravitational Distortion" Ability { id: "2369", source: "Catastrophe" } +555.0 "Gravitational Explosion" Ability { id: "2367", source: "Catastrophe" } + +562.0 "Antilight (ground)" Ability { id: "2361", source: "Catastrophe" } +568.0 "Tremblor" #Ability { id: "2373", source: "Catastrophe" } +568.5 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +570.5 "Tremblor" #Ability { id: "2373", source: "Catastrophe" } +579.0 "Earthquake" Ability { id: "2374", source: "Catastrophe" } +587.0 "Gravitational Wave" Ability { id: "2372", source: "Catastrophe" } +600.0 "Gravitational Collapse" Ability { id: "235D", source: "Catastrophe" } +600.0 "-100 Gs" Ability { id: "235E", source: "Catastrophe" } +610.0 "Death's Gaze" Ability { id: "236F", source: "Catastrophe" } + +615.0 "Antilight (ground)" Ability { id: "2361", source: "Catastrophe" } +621.0 "Tremblor" #Ability { id: "2373", source: "Catastrophe" } +621.5 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +623.5 "Tremblor" #Ability { id: "2373", source: "Catastrophe" } +632.0 "Earthquake" Ability { id: "2374", source: "Catastrophe" } + +562.0 "Antilight (ground)" Ability { id: "2361", source: "Catastrophe" } +568.0 "Tremblor" #Ability { id: "2373", source: "Catastrophe" } +568.5 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +570.5 "Tremblor" #Ability { id: "2373", source: "Catastrophe" } +579.0 "Earthquake" Ability { id: "2374", source: "Catastrophe" } +587.0 "Gravitational Wave" Ability { id: "2372", source: "Catastrophe" } +600.0 "Gravitational Collapse" Ability { id: "235D", source: "Catastrophe" } +600.0 "-100 Gs" Ability { id: "235E", source: "Catastrophe" } +610.0 "Death's Gaze" Ability { id: "236F", source: "Catastrophe" } + +615.0 "Antilight (ground)" Ability { id: "2361", source: "Catastrophe" } +621.0 "Tremblor" #Ability { id: "2373", source: "Catastrophe" } +621.5 "100 Gs" Ability { id: "2355", source: "Catastrophe" } +623.5 "Tremblor" #Ability { id: "2373", source: "Catastrophe" } +632.0 "Earthquake" Ability { id: "2374", source: "Catastrophe" } + +633.3 "--sync--" StartsUsing { id: "25A2", source: "Catastrophe" } +643.3 "Gravitational Wave Enrage" Ability { id: "25A2", source: "Catastrophe" } diff --git a/ui/raidboss/data/04-sb/raid/o3n.txt b/ui/raidboss/data/04-sb/raid/o3n.txt index 5aec01f278..135a5b0ce1 100644 --- a/ui/raidboss/data/04-sb/raid/o3n.txt +++ b/ui/raidboss/data/04-sb/raid/o3n.txt @@ -5,131 +5,131 @@ # Enrage is approximately 13:10-13:30, depending on intermission length. Yes, Normal has an enrage. # -ii 230C 2470 2472 2473 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.7 "Ribbit (avoid)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ window 9.7,10 -17.3 "Spellblade Thunder III" sync / 1[56]:[^:]*:Halicarnassus:2462:/ -22.4 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -31.4 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ window 30,30 -36.5 "Spellblade Blizzard III" sync / 1[56]:[^:]*:Halicarnassus:2461:/ -41.6 "Spellblade Fire III" sync / 1[56]:[^:]*:Halicarnassus:2460:/ -49.8 "Place Dark Token" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -61.9 "The Queen's Waltz (Sword Dance)" sync / 1[56]:[^:]*:Halicarnassus:246F:/ window 30,30 -62.2 "Cross Reaper" sync / 1[56]:[^:]*:Soul Reaper:246B:/ -70.0 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -80.2 "The Game (symbols)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.7 "Ribbit (avoid)" Ability { id: "2466", source: "Halicarnassus" } window 9.7,10 +17.3 "Spellblade Thunder III" Ability { id: "2462", source: "Halicarnassus" } +22.4 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +31.4 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } window 30,30 +36.5 "Spellblade Blizzard III" Ability { id: "2461", source: "Halicarnassus" } +41.6 "Spellblade Fire III" Ability { id: "2460", source: "Halicarnassus" } +49.8 "Place Dark Token" Ability { id: "22FC", source: "Halicarnassus" } +61.9 "The Queen's Waltz (Sword Dance)" Ability { id: "246F", source: "Halicarnassus" } window 30,30 +62.2 "Cross Reaper" Ability { id: "246B", source: "Soul Reaper" } +70.0 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +80.2 "The Game (symbols)" Ability { id: "246D", source: "Halicarnassus" } # Cave phase -89.4 "Panel Swap" sync / 1[56]:[^:]*:Halicarnassus:2304:/ -100.5 "The Queen's Waltz" sync / 1[56]:[^:]*:Halicarnassus:2471:/ -110.7 "Place Token" sync / 1[56]:[^:]*:Halicarnassus:22FB:/ window 30,30 -126.7 "Frost Breath?" # sync / 1[56]:[^:]*:Great Dragon:2476:/ -128.8 "The Queen's Waltz (Uplift)" sync / 1[56]:[^:]*:Halicarnassus:2471:/ -133.9 "Spellblade Blizzard III" sync / 1[56]:[^:]*:Halicarnassus:2461:/ -134.7 "Frost Breath?" # sync / 1[56]:[^:]*:Great Dragon:2476:/ -139.0 "Spellblade Fire III" sync / 1[56]:[^:]*:Halicarnassus:2460:/ -142.8 "Frost Breath?" # sync / 1[56]:[^:]*:Great Dragon:2476:/ -143.7 "Spellblade Thunder III" sync / 1[56]:[^:]*:Halicarnassus:2462:/ -150.9 "Frost Breath?" # sync / 1[56]:[^:]*:Great Dragon:2476:/ -151.8 "Mindjack" sync / 1[56]:[^:]*:Halicarnassus:246[789A]:/ window 30,30 -158.9 "The Queen's Waltz (Uplift)" sync / 1[56]:[^:]*:Halicarnassus:2471:/ -165.1 "Ribbit (avoid)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ -172.2 "Place Dark Token" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -177.3 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -184.6 "Cross Reaper" sync / 1[56]:[^:]*:Soul Reaper:246B:/ -186.3 "Holy Edge" sync / 1[56]:[^:]*:Halicarnassus:2463:/ -190.4 "The Queen's Waltz (Uplift)" sync / 1[56]:[^:]*:Halicarnassus:2471:/ -202.4 "Aetherial Tear" sync / 1[56]:[^:]*:Halicarnassus:2474:/ window 202.4,5 +89.4 "Panel Swap" Ability { id: "2304", source: "Halicarnassus" } +100.5 "The Queen's Waltz" Ability { id: "2471", source: "Halicarnassus" } +110.7 "Place Token" Ability { id: "22FB", source: "Halicarnassus" } window 30,30 +126.7 "Frost Breath?" # Ability { id: "2476", source: "Great Dragon" } +128.8 "The Queen's Waltz (Uplift)" Ability { id: "2471", source: "Halicarnassus" } +133.9 "Spellblade Blizzard III" Ability { id: "2461", source: "Halicarnassus" } +134.7 "Frost Breath?" # Ability { id: "2476", source: "Great Dragon" } +139.0 "Spellblade Fire III" Ability { id: "2460", source: "Halicarnassus" } +142.8 "Frost Breath?" # Ability { id: "2476", source: "Great Dragon" } +143.7 "Spellblade Thunder III" Ability { id: "2462", source: "Halicarnassus" } +150.9 "Frost Breath?" # Ability { id: "2476", source: "Great Dragon" } +151.8 "Mindjack" Ability { id: "246[789A]", source: "Halicarnassus" } window 30,30 +158.9 "The Queen's Waltz (Uplift)" Ability { id: "2471", source: "Halicarnassus" } +165.1 "Ribbit (avoid)" Ability { id: "2466", source: "Halicarnassus" } +172.2 "Place Dark Token" Ability { id: "22FC", source: "Halicarnassus" } +177.3 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +184.6 "Cross Reaper" Ability { id: "246B", source: "Soul Reaper" } +186.3 "Holy Edge" Ability { id: "2463", source: "Halicarnassus" } +190.4 "The Queen's Waltz (Uplift)" Ability { id: "2471", source: "Halicarnassus" } +202.4 "Aetherial Tear" Ability { id: "2474", source: "Halicarnassus" } window 202.4,5 206.5 "--untargetable--" # Intermission. Nothing of import happens here. -216.6 "Aetherial Pull" sync / 1[56]:[^:]*:Aetherial Tear:2475:/ -272.9 "Ultimum (Starry End)" # sync / 1[56]:[^:]*:Halicarnassus:2477:/ +216.6 "Aetherial Pull" Ability { id: "2475", source: "Aetherial Tear" } +272.9 "Ultimum (Starry End)" # Ability { id: "2477", source: "Halicarnassus" } # There is unfortunately no way to continue to display # Ultimum if another player escapes before the user # We also haven't got a good way to display exactly when # Halicarnassus is targetable again. # Post-intermission. -300.0 "Panel Swap" sync / 1[56]:[^:]*:Halicarnassus:2304:/ window 150.10 -305.1 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -313.3 "Ribbit (avoid)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ -320.5 "The Game (symbols)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ -329.6 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -334.7 "Mindjack" sync / 1[56]:[^:]*:Halicarnassus:246[789A]:/ window 30,30 -338.6 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ -340.4 "Spellblade Thunder III" sync / 1[56]:[^:]*:Halicarnassus:2462:/ -347.6 "Place Dark Token" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -360.0 "Gusting Gouge" sync / 1[56]:[^:]*:Soul Reaper:246C:/ -361.7 "Spellblade Blizzard III" sync / 1[56]:[^:]*:Halicarnassus:2461:/ -368.9 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -377.1 "Ribbit (take)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ window 30,30 -384.2 "The Game (toad)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ -394.3 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:2465:/ -403.5 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -407.6 "Spellblade Fire III" sync / 1[56]:[^:]*:Halicarnassus:2460:/ -412.5 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ -412.7 "The Queen's Waltz (Sword Dance)" sync / 1[56]:[^:]*:Halicarnassus:246F:/ window 30,30 -421.8 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:2465:/ +300.0 "Panel Swap" Ability { id: "2304", source: "Halicarnassus" } window 150.10 +305.1 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +313.3 "Ribbit (avoid)" Ability { id: "2466", source: "Halicarnassus" } +320.5 "The Game (symbols)" Ability { id: "246D", source: "Halicarnassus" } +329.6 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +334.7 "Mindjack" Ability { id: "246[789A]", source: "Halicarnassus" } window 30,30 +338.6 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } +340.4 "Spellblade Thunder III" Ability { id: "2462", source: "Halicarnassus" } +347.6 "Place Dark Token" Ability { id: "22FC", source: "Halicarnassus" } +360.0 "Gusting Gouge" Ability { id: "246C", source: "Soul Reaper" } +361.7 "Spellblade Blizzard III" Ability { id: "2461", source: "Halicarnassus" } +368.9 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +377.1 "Ribbit (take)" Ability { id: "2466", source: "Halicarnassus" } window 30,30 +384.2 "The Game (toad)" Ability { id: "246D", source: "Halicarnassus" } +394.3 "Dimensional Wave" Ability { id: "2465", source: "Halicarnassus" } +403.5 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +407.6 "Spellblade Fire III" Ability { id: "2460", source: "Halicarnassus" } +412.5 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } +412.7 "The Queen's Waltz (Sword Dance)" Ability { id: "246F", source: "Halicarnassus" } window 30,30 +421.8 "Dimensional Wave" Ability { id: "2465", source: "Halicarnassus" } # The blocks don't change, but if we don't track them we can't note the enrage. -430.0 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -438.2 "Ribbit (avoid)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ -445.3 "The Game (symbols)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ -454.4 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -459.6 "Mindjack" sync / 1[56]:[^:]*:Halicarnassus:246[789A]:/ window 30,30 -463.5 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ -465.3 "Spellblade Thunder III" sync / 1[56]:[^:]*:Halicarnassus:2462:/ -472.4 "Place Dark Token" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -484.8 "Gusting Gouge" sync / 1[56]:[^:]*:Soul Reaper:246C:/ -486.5 "Spellblade Blizzard III" sync / 1[56]:[^:]*:Halicarnassus:2461:/ -493.7 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -501.9 "Ribbit (take)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ window 30,30 -509.1 "The Game (toad)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ -519.3 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:2465:/ -528.5 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -532.6 "Spellblade Fire III" sync / 1[56]:[^:]*:Halicarnassus:2460:/ -537.5 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ -537.7 "The Queen's Waltz (Sword Dance)" sync / 1[56]:[^:]*:Halicarnassus:246F:/ window 30,30 -546.8 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:2465:/ +430.0 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +438.2 "Ribbit (avoid)" Ability { id: "2466", source: "Halicarnassus" } +445.3 "The Game (symbols)" Ability { id: "246D", source: "Halicarnassus" } +454.4 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +459.6 "Mindjack" Ability { id: "246[789A]", source: "Halicarnassus" } window 30,30 +463.5 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } +465.3 "Spellblade Thunder III" Ability { id: "2462", source: "Halicarnassus" } +472.4 "Place Dark Token" Ability { id: "22FC", source: "Halicarnassus" } +484.8 "Gusting Gouge" Ability { id: "246C", source: "Soul Reaper" } +486.5 "Spellblade Blizzard III" Ability { id: "2461", source: "Halicarnassus" } +493.7 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +501.9 "Ribbit (take)" Ability { id: "2466", source: "Halicarnassus" } window 30,30 +509.1 "The Game (toad)" Ability { id: "246D", source: "Halicarnassus" } +519.3 "Dimensional Wave" Ability { id: "2465", source: "Halicarnassus" } +528.5 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +532.6 "Spellblade Fire III" Ability { id: "2460", source: "Halicarnassus" } +537.5 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } +537.7 "The Queen's Waltz (Sword Dance)" Ability { id: "246F", source: "Halicarnassus" } window 30,30 +546.8 "Dimensional Wave" Ability { id: "2465", source: "Halicarnassus" } -555.0 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -563.2 "Ribbit (avoid)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ -570.3 "The Game (symbols)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ -579.5 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -584.6 "Mindjack" sync / 1[56]:[^:]*:Halicarnassus:246[789A]:/ window 30,30 -588.5 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ -590.3 "Spellblade Thunder III" sync / 1[56]:[^:]*:Halicarnassus:2462:/ -597.4 "Place Dark Token" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -609.9 "Gusting Gouge" sync / 1[56]:[^:]*:Soul Reaper:246C:/ -611.6 "Spellblade Blizzard III" sync / 1[56]:[^:]*:Halicarnassus:2461:/ -618.8 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -626.9 "Ribbit (take)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ window 30,30 -634.0 "The Game (toad)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ -644.1 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:2465:/ -653.3 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -657.4 "Spellblade Fire III" sync / 1[56]:[^:]*:Halicarnassus:2460:/ -662.3 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ -662.5 "The Queen's Waltz (Sword Dance)" sync / 1[56]:[^:]*:Halicarnassus:246F:/ window 30,30 -671.7 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:2465:/ +555.0 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +563.2 "Ribbit (avoid)" Ability { id: "2466", source: "Halicarnassus" } +570.3 "The Game (symbols)" Ability { id: "246D", source: "Halicarnassus" } +579.5 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +584.6 "Mindjack" Ability { id: "246[789A]", source: "Halicarnassus" } window 30,30 +588.5 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } +590.3 "Spellblade Thunder III" Ability { id: "2462", source: "Halicarnassus" } +597.4 "Place Dark Token" Ability { id: "22FC", source: "Halicarnassus" } +609.9 "Gusting Gouge" Ability { id: "246C", source: "Soul Reaper" } +611.6 "Spellblade Blizzard III" Ability { id: "2461", source: "Halicarnassus" } +618.8 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +626.9 "Ribbit (take)" Ability { id: "2466", source: "Halicarnassus" } window 30,30 +634.0 "The Game (toad)" Ability { id: "246D", source: "Halicarnassus" } +644.1 "Dimensional Wave" Ability { id: "2465", source: "Halicarnassus" } +653.3 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +657.4 "Spellblade Fire III" Ability { id: "2460", source: "Halicarnassus" } +662.3 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } +662.5 "The Queen's Waltz (Sword Dance)" Ability { id: "246F", source: "Halicarnassus" } window 30,30 +671.7 "Dimensional Wave" Ability { id: "2465", source: "Halicarnassus" } -679.9 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -688.0 "Ribbit (avoid)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ -695.1 "The Game (symbols)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ -704.3 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -709.4 "Mindjack" sync / 1[56]:[^:]*:Halicarnassus:246[789A]:/ window 30,30 -713.3 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ -715.0 "Spellblade Thunder III" sync / 1[56]:[^:]*:Halicarnassus:2462:/ -722.1 "Place Dark Token" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -734.6 "Gusting Gouge" sync / 1[56]:[^:]*:Soul Reaper:246C:/ -736.3 "Spellblade Blizzard III" sync / 1[56]:[^:]*:Halicarnassus:2461:/ -743.5 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -751.6 "Ribbit (take)" sync / 1[56]:[^:]*:Halicarnassus:2466:/ window 30,30 -758.7 "The Game (toad)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ -768.8 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:2465:/ -777.9 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -782.1 "Spellblade Fire III" sync / 1[56]:[^:]*:Halicarnassus:2460:/ -787.0 "Holy Blur" sync / 1[56]:[^:]*:Halicarnassus:2464:/ -787.2 "The Queen's Waltz (Sword Dance)" sync / 1[56]:[^:]*:Halicarnassus:246F:/ window 30,30 -796.3 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:2465:/ -804.5 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -811.6 "The Game (enrage)" sync / 1[56]:[^:]*:Halicarnassus:246D:/ +679.9 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +688.0 "Ribbit (avoid)" Ability { id: "2466", source: "Halicarnassus" } +695.1 "The Game (symbols)" Ability { id: "246D", source: "Halicarnassus" } +704.3 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +709.4 "Mindjack" Ability { id: "246[789A]", source: "Halicarnassus" } window 30,30 +713.3 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } +715.0 "Spellblade Thunder III" Ability { id: "2462", source: "Halicarnassus" } +722.1 "Place Dark Token" Ability { id: "22FC", source: "Halicarnassus" } +734.6 "Gusting Gouge" Ability { id: "246C", source: "Soul Reaper" } +736.3 "Spellblade Blizzard III" Ability { id: "2461", source: "Halicarnassus" } +743.5 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +751.6 "Ribbit (take)" Ability { id: "2466", source: "Halicarnassus" } window 30,30 +758.7 "The Game (toad)" Ability { id: "246D", source: "Halicarnassus" } +768.8 "Dimensional Wave" Ability { id: "2465", source: "Halicarnassus" } +777.9 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +782.1 "Spellblade Fire III" Ability { id: "2460", source: "Halicarnassus" } +787.0 "Holy Blur" Ability { id: "2464", source: "Halicarnassus" } +787.2 "The Queen's Waltz (Sword Dance)" Ability { id: "246F", source: "Halicarnassus" } window 30,30 +796.3 "Dimensional Wave" Ability { id: "2465", source: "Halicarnassus" } +804.5 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +811.6 "The Game (enrage)" Ability { id: "246D", source: "Halicarnassus" } diff --git a/ui/raidboss/data/04-sb/raid/o3s.txt b/ui/raidboss/data/04-sb/raid/o3s.txt index 616384d1da..efe2092287 100644 --- a/ui/raidboss/data/04-sb/raid/o3s.txt +++ b/ui/raidboss/data/04-sb/raid/o3s.txt @@ -6,128 +6,128 @@ hideall "--sync--" # -ii 22EA 22FE 2309 230C 230F 2315 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.7 "Critical Hit" sync / 1[56]:[^:]*:Halicarnassus:22EB:/ window 10.7,5 -19.7 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -25.4 "Pole Shift" # sync / 1[56]:[^:]*:Halicarnassus:22F[23]:/ -28.4 "Holy Blur/Holy Edge" sync / 1[56]:[^:]*:Halicarnassus:22F[01]:/ -37.4 "The Queen's Waltz (Clock)" sync / 1[56]:[^:]*:Halicarnassus:2306:/ window 37.4,5 -37.9 "Sword Dance" sync / 1[56]:[^:]*:Halicarnassus:2307:/ -41.4 "Haste" sync / 1[56]:[^:]*:Halicarnassus:22F4:/ -44.8 "Spellblade Thunder III" sync / 1[56]:[^:]*:Halicarnassus:22EE:/ -50.3 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -59.3 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -65.3 "Oink" sync / 1[56]:[^:]*:Halicarnassus:22F9:/ -72.3 "The Game" sync / 1[56]:[^:]*:Halicarnassus:2301:/ window 72.3,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.7 "Critical Hit" Ability { id: "22EB", source: "Halicarnassus" } window 10.7,5 +19.7 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +25.4 "Pole Shift" # Ability { id: "22F[23]", source: "Halicarnassus" } +28.4 "Holy Blur/Holy Edge" Ability { id: "22F[01]", source: "Halicarnassus" } +37.4 "The Queen's Waltz (Clock)" Ability { id: "2306", source: "Halicarnassus" } window 37.4,5 +37.9 "Sword Dance" Ability { id: "2307", source: "Halicarnassus" } +41.4 "Haste" Ability { id: "22F4", source: "Halicarnassus" } +44.8 "Spellblade Thunder III" Ability { id: "22EE", source: "Halicarnassus" } +50.3 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } +59.3 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +65.3 "Oink" Ability { id: "22F9", source: "Halicarnassus" } +72.3 "The Game" Ability { id: "2301", source: "Halicarnassus" } window 72.3,10 -81.2 "Panel Swap (Thorns)" sync / 1[56]:[^:]*:Halicarnassus:2304:/ -83.2 "--center--" sync / 1[56]:[^:]*:Halicarnassus:2305:/ -89.5 "The Queen's Waltz (Tethers)" sync / 1[56]:[^:]*:Halicarnassus:2308:/ -94.2 "Spellblade Fire III" sync / 1[56]:[^:]*:Halicarnassus:22EC:/ -98.2 "Haste" sync / 1[56]:[^:]*:Halicarnassus:22F4:/ -101.5 "Spellblade Thunder III" sync / 1[56]:[^:]*:Halicarnassus:22EE:/ -107.0 "Critical Hit" sync / 1[56]:[^:]*:Halicarnassus:22EB:/ -113.0 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ window 30,30 -119.0 "Place Token (White Flame)" sync / 1[56]:[^:]*:Halicarnassus:22FB:/ -124.9 "Ray of White" # sync / 1[56]:[^:]*:White Flame:2310:/ -129.9 "White Wind" # sync / 1[56]:[^:]*:White Flame:2311:/ -130.0 "Haste" sync / 1[56]:[^:]*:Halicarnassus:22F4:/ -131.9 "Ray of White" # sync / 1[56]:[^:]*:White Flame:2310:/ -133.5 "Spellblade Blizzard III" sync / 1[56]:[^:]*:Halicarnassus:22ED:/ -135.9 "Ray of White" # sync / 1[56]:[^:]*:White Flame:2310:/ -140.5 "Mindjack" sync / 1[56]:[^:]*:Halicarnassus:22FA:/ window 140,10 -146.0 "--center--" sync / 1[56]:[^:]*:Halicarnassus:2305:/ -152.6 "The Queen's Waltz (Tethers)" sync / 1[56]:[^:]*:Halicarnassus:2308:/ -157.6 "Spellblade Fire III" sync / 1[56]:[^:]*:Halicarnassus:22EC:/ -163.6 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ +81.2 "Panel Swap (Thorns)" Ability { id: "2304", source: "Halicarnassus" } +83.2 "--center--" Ability { id: "2305", source: "Halicarnassus" } +89.5 "The Queen's Waltz (Tethers)" Ability { id: "2308", source: "Halicarnassus" } +94.2 "Spellblade Fire III" Ability { id: "22EC", source: "Halicarnassus" } +98.2 "Haste" Ability { id: "22F4", source: "Halicarnassus" } +101.5 "Spellblade Thunder III" Ability { id: "22EE", source: "Halicarnassus" } +107.0 "Critical Hit" Ability { id: "22EB", source: "Halicarnassus" } +113.0 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } window 30,30 +119.0 "Place Token (White Flame)" Ability { id: "22FB", source: "Halicarnassus" } +124.9 "Ray of White" # Ability { id: "2310", source: "White Flame" } +129.9 "White Wind" # Ability { id: "2311", source: "White Flame" } +130.0 "Haste" Ability { id: "22F4", source: "Halicarnassus" } +131.9 "Ray of White" # Ability { id: "2310", source: "White Flame" } +133.5 "Spellblade Blizzard III" Ability { id: "22ED", source: "Halicarnassus" } +135.9 "Ray of White" # Ability { id: "2310", source: "White Flame" } +140.5 "Mindjack" Ability { id: "22FA", source: "Halicarnassus" } window 140,10 +146.0 "--center--" Ability { id: "2305", source: "Halicarnassus" } +152.6 "The Queen's Waltz (Tethers)" Ability { id: "2308", source: "Halicarnassus" } +157.6 "Spellblade Fire III" Ability { id: "22EC", source: "Halicarnassus" } +163.6 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } -171.1 "Panel Swap (Cave)" sync / 1[56]:[^:]*:Halicarnassus:2304:/ window 85,10 -176.1 "Place Token (Great Dragon)" sync / 1[56]:[^:]*:Halicarnassus:22FB:/ -187.1 "The Queen's Waltz (Crystals)" sync / 1[56]:[^:]*:Halicarnassus:230A:/ -187.9 "Frost Breath" # sync / 1[56]:[^:]*:Great Dragon:2312:/ -188.0 "--sync--" sync / 1[56]:[^:]*:Halicarnassus:230B:/ -188.4 "Uplift" sync / 1[56]:[^:]*:Halicarnassus:230D:/ -193.3 "Ribbit" sync / 1[56]:[^:]*:Halicarnassus:22F7:/ window 193.3,10 -197.9 "Frost Breath" # sync / 1[56]:[^:]*:Great Dragon:2312:/ -199.3 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -212.3 "Critical Hit" sync / 1[56]:[^:]*:Halicarnassus:22EB:/ -223.3 "Place Dark Token (Soul Reapers)" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -235.3 "The Queen's Waltz (Crystals)" sync / 1[56]:[^:]*:Halicarnassus:230A:/ -236.2 "--sync--" sync / 1[56]:[^:]*:Halicarnassus:230B:/ -236.6 "Uplift" sync / 1[56]:[^:]*:Halicarnassus:230D:/ -236.6 "Cross Reaper/Gusting Gouge" sync / 1[56]:[^:]*:Soul Reaper:22F[DF]:/ -239.3 "Haste" sync / 1[56]:[^:]*:Halicarnassus:22F4:/ -242.9 "Spellblade Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Halicarnassus:22E[CDE]:/ -248.3 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ window 30,30 +171.1 "Panel Swap (Cave)" Ability { id: "2304", source: "Halicarnassus" } window 85,10 +176.1 "Place Token (Great Dragon)" Ability { id: "22FB", source: "Halicarnassus" } +187.1 "The Queen's Waltz (Crystals)" Ability { id: "230A", source: "Halicarnassus" } +187.9 "Frost Breath" # Ability { id: "2312", source: "Great Dragon" } +188.0 "--sync--" Ability { id: "230B", source: "Halicarnassus" } +188.4 "Uplift" Ability { id: "230D", source: "Halicarnassus" } +193.3 "Ribbit" Ability { id: "22F7", source: "Halicarnassus" } window 193.3,10 +197.9 "Frost Breath" # Ability { id: "2312", source: "Great Dragon" } +199.3 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } +212.3 "Critical Hit" Ability { id: "22EB", source: "Halicarnassus" } +223.3 "Place Dark Token (Soul Reapers)" Ability { id: "22FC", source: "Halicarnassus" } +235.3 "The Queen's Waltz (Crystals)" Ability { id: "230A", source: "Halicarnassus" } +236.2 "--sync--" Ability { id: "230B", source: "Halicarnassus" } +236.6 "Uplift" Ability { id: "230D", source: "Halicarnassus" } +236.6 "Cross Reaper/Gusting Gouge" Ability { id: "22F[DF]", source: "Soul Reaper" } +239.3 "Haste" Ability { id: "22F4", source: "Halicarnassus" } +242.9 "Spellblade Blizzard/Fire/Thunder" Ability { id: "22E[CDE]", source: "Halicarnassus" } +248.3 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } window 30,30 -254.3 "Panel Swap (library)" sync / 1[56]:[^:]*:Halicarnassus:2304:/ -261.3 "The Queen's Waltz (Books)" sync / 1[56]:[^:]*:Halicarnassus:230E:/ window 261.3,10 -268.3 "Oink" sync / 1[56]:[^:]*:Halicarnassus:22F9:/ -273.3 "Place Token (Apanda)" sync / 1[56]:[^:]*:Halicarnassus:22FB:/ -281.2 "Pummel" # sync / 1[56]:[^:]*:Apanda:2313:/ -286.4 "The Queen's Waltz (Books)" sync / 1[56]:[^:]*:Halicarnassus:230E:/ -288.7 "Magic Hammer" sync / 1[56]:[^:]*:Apanda:2314:/ -292.4 "Squelch" sync / 1[56]:[^:]*:Halicarnassus:22F8:/ window 292.4,10 -294.8 "Pummel" # sync / 1[56]:[^:]*:Apanda:2313:/ -298.5 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -302.9 "Pummel" # sync / 1[56]:[^:]*:Apanda:2313:/ -304.6 "Critical Hit" sync / 1[56]:[^:]*:Halicarnassus:22EB:/ -316.6 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -321.6 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -329.6 "The Queen's Waltz (Spellblade Books)" sync / 1[56]:[^:]*:Halicarnassus:230E:/ window 30,30 -330.5 "Holy Blur/Holy Edge" sync / 1[56]:[^:]*:Halicarnassus:22F[01]:/ -339.5 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ +254.3 "Panel Swap (library)" Ability { id: "2304", source: "Halicarnassus" } +261.3 "The Queen's Waltz (Books)" Ability { id: "230E", source: "Halicarnassus" } window 261.3,10 +268.3 "Oink" Ability { id: "22F9", source: "Halicarnassus" } +273.3 "Place Token (Apanda)" Ability { id: "22FB", source: "Halicarnassus" } +281.2 "Pummel" # Ability { id: "2313", source: "Apanda" } +286.4 "The Queen's Waltz (Books)" Ability { id: "230E", source: "Halicarnassus" } +288.7 "Magic Hammer" Ability { id: "2314", source: "Apanda" } +292.4 "Squelch" Ability { id: "22F8", source: "Halicarnassus" } window 292.4,10 +294.8 "Pummel" # Ability { id: "2313", source: "Apanda" } +298.5 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } +302.9 "Pummel" # Ability { id: "2313", source: "Apanda" } +304.6 "Critical Hit" Ability { id: "22EB", source: "Halicarnassus" } +316.6 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } +321.6 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +329.6 "The Queen's Waltz (Spellblade Books)" Ability { id: "230E", source: "Halicarnassus" } window 30,30 +330.5 "Holy Blur/Holy Edge" Ability { id: "22F[01]", source: "Halicarnassus" } +339.5 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } -347.5 "Panel Swap (thorns)" sync / 1[56]:[^:]*:Halicarnassus:2304:/ -352.5 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ window 250,20 -362.5 "Oink/Ribbit/Squelch 1" sync / 1[56]:[^:]*:Halicarnassus:22F[789]:/ -368.7 "Oink/Ribbit/Squelch 2" sync / 1[56]:[^:]*:Halicarnassus:22F[789]:/ -374.7 "Oink/Ribbit/Squelch 3" sync / 1[56]:[^:]*:Halicarnassus:22F[789]:/ -381.7 "The Game" sync / 1[56]:[^:]*:Halicarnassus:2301:/ -388.0 "--teleport--" sync / 1[56]:[^:]*:Halicarnassus:2305:/ -394.5 "The Queen's Waltz (Random)" sync / 1[56]:[^:]*:Halicarnassus:230[68AE]:/ -403.8 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -409.9 "Pole Shift" # sync / 1[56]:[^:]*:Halicarnassus:22F[23]:/ -412.9 "Holy Blur/Holy Edge" sync / 1[56]:[^:]*:Halicarnassus:22F[01]:/ -420.1 "Critical Hit" sync / 1[56]:[^:]*:Halicarnassus:22EB:/ -429.3 "Mindjack" sync / 1[56]:[^:]*:Halicarnassus:22FA:/ -434.5 "Place Dark Token (Soul Reapers)" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -448.1 "Cross Reaper/Gusting Gouge" sync / 1[56]:[^:]*:Soul Reaper:22F[DF]:/ -449.7 "--teleport--" sync / 1[56]:[^:]*:Halicarnassus:2305:/ -456.0 "The Queen's Waltz (Random)" sync / 1[56]:[^:]*:Halicarnassus:230[68AE]:/ -469.0 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -477.1 "Haste" sync / 1[56]:[^:]*:Halicarnassus:22F4:/ window 30,30 -480.8 "Spellblade Blizzard/Fire/Thunder 1" sync / 1[56]:[^:]*:Halicarnassus:22E[CDE]:/ -485.4 "Spellblade Blizzard/Fire/Thunder 2" sync / 1[56]:[^:]*:Halicarnassus:22E[CDE]:/ -491.5 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -501.7 "Place Token (Ninjas/Giant)" sync / 1[56]:[^:]*:Halicarnassus:22FB:/ -512.0 "Haste III" sync / 1[56]:[^:]*:Halicarnassus:22F5:/ -512.7 "Grand Sword" # sync / 1[56]:[^:]*:Iron Giant:2316:/ -516.5 "Dimensional Wave 1" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -518.7 "Grand Sword" # sync / 1[56]:[^:]*:Iron Giant:2316:/ -522.1 "Dimensional Wave 2" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -527.7 "Dimensional Wave 3" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -533.3 "Dimensional Wave 4" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -535.5 "--teleport--" sync / 1[56]:[^:]*:Halicarnassus:2305:/ -540.9 "The Queen's Waltz (Random)" sync / 1[56]:[^:]*:Halicarnassus:230[68AE]:/ -545.5 "Spellblade Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Halicarnassus:22E[CDE]:/ -555.6 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -561.7 "Critical Hit" sync / 1[56]:[^:]*:Halicarnassus:22EB:/ window 30,15 -567.0 "--teleport--" sync / 1[56]:[^:]*:Halicarnassus:2305:/ -573.3 "The Queen's Waltz (Random)" sync / 1[56]:[^:]*:Halicarnassus:230[68AE]:/ -582.6 "Spellblade Holy" sync / 1[56]:[^:]*:Halicarnassus:22EF:/ -588.6 "Pole Shift" # sync / 1[56]:[^:]*:Halicarnassus:22F[23]:/ -591.6 "Holy Blur/Holy Edge" sync / 1[56]:[^:]*:Halicarnassus:22F[01]:/ -598.8 "Critical Hit" sync / 1[56]:[^:]*:Halicarnassus:22EB:/ -608.0 "Mindjack" sync / 1[56]:[^:]*:Halicarnassus:22FA:/ -613.2 "Place Dark Token (Soul Reapers)" sync / 1[56]:[^:]*:Halicarnassus:22FC:/ -626.7 "Cross Reaper/Gusting Gouge" sync / 1[56]:[^:]*:Soul Reaper:22F[DF]:/ -628.5 "--teleport--" sync / 1[56]:[^:]*:Halicarnassus:2305:/ -635.2 "The Queen's Waltz (Random)" sync / 1[56]:[^:]*:Halicarnassus:230[68AE]:/ -648.4 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ window 30,15 -656.5 "Haste" sync / 1[56]:[^:]*:Halicarnassus:22F4:/ -660.1 "Spellblade Blizzard/Fire/Thunder 1" sync / 1[56]:[^:]*:Halicarnassus:22E[CDE]:/ -665.0 "Spellblade Blizzard/Fire/Thunder 2" sync / 1[56]:[^:]*:Halicarnassus:22E[CDE]:/ -671.1 "Dimensional Wave" sync / 1[56]:[^:]*:Halicarnassus:22F6:/ -681.2 "The Playing Field" sync / 1[56]:[^:]*:Halicarnassus:2300:/ -688.3 "The Game (Enrage)" sync / 1[56]:[^:]*:Halicarnassus:2301:/ +347.5 "Panel Swap (thorns)" Ability { id: "2304", source: "Halicarnassus" } +352.5 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } window 250,20 +362.5 "Oink/Ribbit/Squelch 1" Ability { id: "22F[789]", source: "Halicarnassus" } +368.7 "Oink/Ribbit/Squelch 2" Ability { id: "22F[789]", source: "Halicarnassus" } +374.7 "Oink/Ribbit/Squelch 3" Ability { id: "22F[789]", source: "Halicarnassus" } +381.7 "The Game" Ability { id: "2301", source: "Halicarnassus" } +388.0 "--teleport--" Ability { id: "2305", source: "Halicarnassus" } +394.5 "The Queen's Waltz (Random)" Ability { id: "230[68AE]", source: "Halicarnassus" } +403.8 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +409.9 "Pole Shift" # Ability { id: "22F[23]", source: "Halicarnassus" } +412.9 "Holy Blur/Holy Edge" Ability { id: "22F[01]", source: "Halicarnassus" } +420.1 "Critical Hit" Ability { id: "22EB", source: "Halicarnassus" } +429.3 "Mindjack" Ability { id: "22FA", source: "Halicarnassus" } +434.5 "Place Dark Token (Soul Reapers)" Ability { id: "22FC", source: "Halicarnassus" } +448.1 "Cross Reaper/Gusting Gouge" Ability { id: "22F[DF]", source: "Soul Reaper" } +449.7 "--teleport--" Ability { id: "2305", source: "Halicarnassus" } +456.0 "The Queen's Waltz (Random)" Ability { id: "230[68AE]", source: "Halicarnassus" } +469.0 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } +477.1 "Haste" Ability { id: "22F4", source: "Halicarnassus" } window 30,30 +480.8 "Spellblade Blizzard/Fire/Thunder 1" Ability { id: "22E[CDE]", source: "Halicarnassus" } +485.4 "Spellblade Blizzard/Fire/Thunder 2" Ability { id: "22E[CDE]", source: "Halicarnassus" } +491.5 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } +501.7 "Place Token (Ninjas/Giant)" Ability { id: "22FB", source: "Halicarnassus" } +512.0 "Haste III" Ability { id: "22F5", source: "Halicarnassus" } +512.7 "Grand Sword" # Ability { id: "2316", source: "Iron Giant" } +516.5 "Dimensional Wave 1" Ability { id: "22F6", source: "Halicarnassus" } +518.7 "Grand Sword" # Ability { id: "2316", source: "Iron Giant" } +522.1 "Dimensional Wave 2" Ability { id: "22F6", source: "Halicarnassus" } +527.7 "Dimensional Wave 3" Ability { id: "22F6", source: "Halicarnassus" } +533.3 "Dimensional Wave 4" Ability { id: "22F6", source: "Halicarnassus" } +535.5 "--teleport--" Ability { id: "2305", source: "Halicarnassus" } +540.9 "The Queen's Waltz (Random)" Ability { id: "230[68AE]", source: "Halicarnassus" } +545.5 "Spellblade Blizzard/Fire/Thunder" Ability { id: "22E[CDE]", source: "Halicarnassus" } +555.6 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } +561.7 "Critical Hit" Ability { id: "22EB", source: "Halicarnassus" } window 30,15 +567.0 "--teleport--" Ability { id: "2305", source: "Halicarnassus" } +573.3 "The Queen's Waltz (Random)" Ability { id: "230[68AE]", source: "Halicarnassus" } +582.6 "Spellblade Holy" Ability { id: "22EF", source: "Halicarnassus" } +588.6 "Pole Shift" # Ability { id: "22F[23]", source: "Halicarnassus" } +591.6 "Holy Blur/Holy Edge" Ability { id: "22F[01]", source: "Halicarnassus" } +598.8 "Critical Hit" Ability { id: "22EB", source: "Halicarnassus" } +608.0 "Mindjack" Ability { id: "22FA", source: "Halicarnassus" } +613.2 "Place Dark Token (Soul Reapers)" Ability { id: "22FC", source: "Halicarnassus" } +626.7 "Cross Reaper/Gusting Gouge" Ability { id: "22F[DF]", source: "Soul Reaper" } +628.5 "--teleport--" Ability { id: "2305", source: "Halicarnassus" } +635.2 "The Queen's Waltz (Random)" Ability { id: "230[68AE]", source: "Halicarnassus" } +648.4 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } window 30,15 +656.5 "Haste" Ability { id: "22F4", source: "Halicarnassus" } +660.1 "Spellblade Blizzard/Fire/Thunder 1" Ability { id: "22E[CDE]", source: "Halicarnassus" } +665.0 "Spellblade Blizzard/Fire/Thunder 2" Ability { id: "22E[CDE]", source: "Halicarnassus" } +671.1 "Dimensional Wave" Ability { id: "22F6", source: "Halicarnassus" } +681.2 "The Playing Field" Ability { id: "2300", source: "Halicarnassus" } +688.3 "The Game (Enrage)" Ability { id: "2301", source: "Halicarnassus" } diff --git a/ui/raidboss/data/04-sb/raid/o4n.txt b/ui/raidboss/data/04-sb/raid/o4n.txt index 38aa39df49..3411eacd28 100644 --- a/ui/raidboss/data/04-sb/raid/o4n.txt +++ b/ui/raidboss/data/04-sb/raid/o4n.txt @@ -9,29 +9,29 @@ hideall "--sync--" # -ii 24BA 24BC 24BE 24C3 24C5 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.5 "Doom" sync / 1[56]:[^:]*:Exdeath:24B7:/ window 9.5,5 -19.1 "Blizzard/Fire III" sync / 1[56]:[^:]*:Exdeath:24B[9B]:/ -28.8 "Thunder III (Buster)" sync / 1[56]:[^:]*:Exdeath:24BD:/ -37.4 "Blizzard/Fire III" sync / 1[56]:[^:]*:Exdeath:24B[9B]:/ -50.3 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ -63.6 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ -74.8 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ -87.0 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ -92.6 "Blizzard/Fire III" sync / 1[56]:[^:]*:Exdeath:24B[9B]:/ -103.2 "Thunder III (Buster)" sync / 1[56]:[^:]*:Exdeath:24BD:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.5 "Doom" Ability { id: "24B7", source: "Exdeath" } window 9.5,5 +19.1 "Blizzard/Fire III" Ability { id: "24B[9B]", source: "Exdeath" } +28.8 "Thunder III (Buster)" Ability { id: "24BD", source: "Exdeath" } +37.4 "Blizzard/Fire III" Ability { id: "24B[9B]", source: "Exdeath" } +50.3 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } +63.6 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } +74.8 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } +87.0 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } +92.6 "Blizzard/Fire III" Ability { id: "24B[9B]", source: "Exdeath" } +103.2 "Thunder III (Buster)" Ability { id: "24BD", source: "Exdeath" } -113.3 "Vacuum Wave" sync / 1[56]:[^:]*:Exdeath:24B8:/ window 40,30 -121.5 "Holy" sync / 1[56]:[^:]*:Exdeath:24C4:/ -132.8 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ -138.4 "Blizzard/Fire III" sync / 1[56]:[^:]*:Exdeath:24B[9B]:/ -149.1 "Thunder III (Buster)" sync / 1[56]:[^:]*:Exdeath:24BD:/ +113.3 "Vacuum Wave" Ability { id: "24B8", source: "Exdeath" } window 40,30 +121.5 "Holy" Ability { id: "24C4", source: "Exdeath" } +132.8 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } +138.4 "Blizzard/Fire III" Ability { id: "24B[9B]", source: "Exdeath" } +149.1 "Thunder III (Buster)" Ability { id: "24BD", source: "Exdeath" } -159.2 "Vacuum Wave" sync / 1[56]:[^:]*:Exdeath:24B8:/ window 20,20 -167.4 "Holy" sync / 1[56]:[^:]*:Exdeath:24C4:/ -178.7 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ -184.3 "Blizzard/Fire III" sync / 1[56]:[^:]*:Exdeath:24B[9B]:/ -195.0 "Thunder III (Buster)" sync / 1[56]:[^:]*:Exdeath:24BD:/ jump 149.1 +159.2 "Vacuum Wave" Ability { id: "24B8", source: "Exdeath" } window 20,20 +167.4 "Holy" Ability { id: "24C4", source: "Exdeath" } +178.7 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } +184.3 "Blizzard/Fire III" Ability { id: "24B[9B]", source: "Exdeath" } +195.0 "Thunder III (Buster)" Ability { id: "24BD", source: "Exdeath" } jump 149.1 205.1 "Vacuum Wave" 213.3 "Holy" @@ -40,58 +40,58 @@ hideall "--sync--" # Phase change appears to be 65% HP. # This first section is not quite the same as the main rotation. -300.0 "The Decisive Battle" sync / 1[56]:[^:]*:Exdeath:2408:/ window 300,5 +300.0 "The Decisive Battle" Ability { id: "2408", source: "Exdeath" } window 300,5 301.4 "--untargetable--" -305.9 "--sync--" sync / 1[56]:[^:]*:Exdeath:240A:/ -307.0 "Collision" sync / 1[56]:[^:]*:Exdeath:24CA:/ -312.0 "Zombie Breath" sync / 1[56]:[^:]*:Exdeath:24CB:/ +305.9 "--sync--" Ability { id: "240A", source: "Exdeath" } +307.0 "Collision" Ability { id: "24CA", source: "Exdeath" } +312.0 "Zombie Breath" Ability { id: "24CB", source: "Exdeath" } 317.0 "--targetable--" -322.4 "Holy" sync / 1[56]:[^:]*:Exdeath:24C4:/ window 20,20 -329.5 "Flare" sync / 1[56]:[^:]*:Exdeath:24C2:/ -338.6 "Meteor" sync / 1[56]:[^:]*:Exdeath:24C6:/ -353.8 "Black Hole" sync / 1[56]:[^:]*:Exdeath:24C8:/ window 30,30 -365.1 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ +322.4 "Holy" Ability { id: "24C4", source: "Exdeath" } window 20,20 +329.5 "Flare" Ability { id: "24C2", source: "Exdeath" } +338.6 "Meteor" Ability { id: "24C6", source: "Exdeath" } +353.8 "Black Hole" Ability { id: "24C8", source: "Exdeath" } window 30,30 +365.1 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } # This section has choices. -370.7 "Blizzard/Fire III?" sync / 1[56]:[^:]*:Exdeath:24B[9B]:/ -372.2 "Holy?" sync / 1[56]:[^:]*:Exdeath:24C4:/ -386.3 "Meteor" sync / 1[56]:[^:]*:Exdeath:24C6:/ -396.4 "Thunder III (Buster)" sync / 1[56]:[^:]*:Exdeath:24BD:/ window 30,30 -410.7 "Black Hole" sync / 1[56]:[^:]*:Exdeath:24C8:/ -421.0 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ -427.1 "Flare?" sync / 1[56]:[^:]*:Exdeath:24C2:/ -427.1 "Vacuum Wave?" sync / 1[56]:[^:]*:Exdeath:24B8:/ -442.3 "Meteor" sync / 1[56]:[^:]*:Exdeath:24C6:/ window 30,30 -452.4 "Thunder III (Buster)" sync / 1[56]:[^:]*:Exdeath:24BD:/ +370.7 "Blizzard/Fire III?" Ability { id: "24B[9B]", source: "Exdeath" } +372.2 "Holy?" Ability { id: "24C4", source: "Exdeath" } +386.3 "Meteor" Ability { id: "24C6", source: "Exdeath" } +396.4 "Thunder III (Buster)" Ability { id: "24BD", source: "Exdeath" } window 30,30 +410.7 "Black Hole" Ability { id: "24C8", source: "Exdeath" } +421.0 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } +427.1 "Flare?" Ability { id: "24C2", source: "Exdeath" } +427.1 "Vacuum Wave?" Ability { id: "24B8", source: "Exdeath" } +442.3 "Meteor" Ability { id: "24C6", source: "Exdeath" } window 30,30 +452.4 "Thunder III (Buster)" Ability { id: "24BD", source: "Exdeath" } # Actual rotation block begins. Consistent first half... -466.8 "The Decisive Battle" sync / 1[56]:[^:]*:Exdeath:2408:/ window 30,30 +466.8 "The Decisive Battle" Ability { id: "2408", source: "Exdeath" } window 30,30 468.2 "--untargetable--" -472.6 "--sync--" sync / 1[56]:[^:]*:Exdeath:240A:/ -473.7 "Collision" sync / 1[56]:[^:]*:Exdeath:24CA:/ -475.1 "Clearout" sync / 1[56]:[^:]*:Deathly Vine:24CC:/ -478.8 "Zombie Breath" sync / 1[56]:[^:]*:Exdeath:24CB:/ +472.6 "--sync--" Ability { id: "240A", source: "Exdeath" } +473.7 "Collision" Ability { id: "24CA", source: "Exdeath" } +475.1 "Clearout" Ability { id: "24CC", source: "Deathly Vine" } +478.8 "Zombie Breath" Ability { id: "24CB", source: "Exdeath" } 483.8 "--targetable--" -488.3 "Vacuum Wave" sync / 1[56]:[^:]*:Exdeath:24B8:/ -496.5 "Holy" sync / 1[56]:[^:]*:Exdeath:24C4:/ window 30,30 -503.6 "Flare" sync / 1[56]:[^:]*:Exdeath:24C2:/ -512.7 "Meteor" sync / 1[56]:[^:]*:Exdeath:24C6:/ -528.0 "Black Hole" sync / 1[56]:[^:]*:Exdeath:24C8:/ -538.2 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ +488.3 "Vacuum Wave" Ability { id: "24B8", source: "Exdeath" } +496.5 "Holy" Ability { id: "24C4", source: "Exdeath" } window 30,30 +503.6 "Flare" Ability { id: "24C2", source: "Exdeath" } +512.7 "Meteor" Ability { id: "24C6", source: "Exdeath" } +528.0 "Black Hole" Ability { id: "24C8", source: "Exdeath" } +538.2 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } # Leading into choices in the second half. -543.8 "Blizzard/Fire III?" sync / 1[56]:[^:]*:Exdeath:24B[9B]:/ -545.3 "Holy?" sync / 1[56]:[^:]*:Exdeath:24C4:/ -557.5 "Meteor" sync / 1[56]:[^:]*:Exdeath:24C6:/ -567.7 "Thunder III (Buster)" sync / 1[56]:[^:]*:Exdeath:24BD:/ window 30,30 -582.0 "Black Hole" sync / 1[56]:[^:]*:Exdeath:24C8:/ -592.3 "Mega Blizzard/Fire/Thunder" sync / 1[56]:[^:]*:Exdeath:24(BF|C[01]):/ -599.4 "Flare?" sync / 1[56]:[^:]*:Exdeath:24C2:/ -599.4 "Vacuum Wave?" sync / 1[56]:[^:]*:Exdeath:24B8:/ -613.5 "Meteor" sync / 1[56]:[^:]*:Exdeath:24C6:/ window 30,30 -623.7 "Thunder III (Buster)" sync / 1[56]:[^:]*:Exdeath:24BD:/ +543.8 "Blizzard/Fire III?" Ability { id: "24B[9B]", source: "Exdeath" } +545.3 "Holy?" Ability { id: "24C4", source: "Exdeath" } +557.5 "Meteor" Ability { id: "24C6", source: "Exdeath" } +567.7 "Thunder III (Buster)" Ability { id: "24BD", source: "Exdeath" } window 30,30 +582.0 "Black Hole" Ability { id: "24C8", source: "Exdeath" } +592.3 "Mega Blizzard/Fire/Thunder" Ability { id: "24(BF|C[01])", source: "Exdeath" } +599.4 "Flare?" Ability { id: "24C2", source: "Exdeath" } +599.4 "Vacuum Wave?" Ability { id: "24B8", source: "Exdeath" } +613.5 "Meteor" Ability { id: "24C6", source: "Exdeath" } window 30,30 +623.7 "Thunder III (Buster)" Ability { id: "24BD", source: "Exdeath" } -637.9 "The Decisive Battle" sync / 1[56]:[^:]*:Exdeath:2408:/ jump 466.8 +637.9 "The Decisive Battle" Ability { id: "2408", source: "Exdeath" } jump 466.8 639.3 "--untargetable--" 644.8 "Collision" 646.2 "Clearout" @@ -103,5 +103,5 @@ hideall "--sync--" # Enrage. Exdeath is untargetable at this point. # "Nothingness is my weapon, and nothingness alone can strike me down!" -1000.0 "--sync--" sync / 14:[^:]*:Exdeath:24C7:/ window 1000,0 -1005.0 "Meteor Enrage" sync / 1[56]:[^:]*:Exdeath:24C7:/ +1000.0 "--sync--" StartsUsing { id: "24C7", source: "Exdeath" } window 1000,0 +1005.0 "Meteor Enrage" Ability { id: "24C7", source: "Exdeath" } diff --git a/ui/raidboss/data/04-sb/raid/o4s.txt b/ui/raidboss/data/04-sb/raid/o4s.txt index 0d84ab7265..e7ae72d8c9 100644 --- a/ui/raidboss/data/04-sb/raid/o4s.txt +++ b/ui/raidboss/data/04-sb/raid/o4s.txt @@ -9,70 +9,70 @@ hideall "--sync--" # as timeline resets out of combat. # Exfaust -3.8 "--sync--" sync / 1[56]:[^:]*:Exdeath:23F2:/ window 3.8,0 -12.2 "Dualcast" sync / 1[56]:[^:]*:Exdeath:23F4:/ window 12.2,5 -16.8 "--sync--" sync / 1[56]:[^:]*:Exdeath:23F7:/ -17.3 "Blizzard III" # sync / 1[56]:[^:]*:Exdeath:23F8:/ -19.9 "Blizzard III" # sync / 1[56]:[^:]*:Exdeath:23F8:/ -24.8 "Dualcast" sync / 1[56]:[^:]*:Exdeath:23F4:/ -30.8 "--sync--" sync / 1[56]:[^:]*:Exdeath:23F9:/ -31.5 "Thunder III" # sync / 1[56]:[^:]*:Exdeath:23FA:/ -32.6 "Thunder III" # sync / 1[56]:[^:]*:Exdeath:23FA:/ -37.9 "Dualcast" sync / 1[56]:[^:]*:Exdeath:23F4:/ -42.5 "--sync--" sync / 1[56]:[^:]*:Exdeath:23F5:/ -43.1 "Fire III" # sync / 1[56]:[^:]*:Exdeath:23F6:/ -47.1 "Fire III" # sync / 1[56]:[^:]*:Exdeath:23F6:/ -53.6 "White Hole" sync / 1[56]:[^:]*:Exdeath:23FF:/ -64.7 "The Decisive Battle" sync / 1[56]:[^:]*:Exdeath:2408:/ +3.8 "--sync--" Ability { id: "23F2", source: "Exdeath" } window 3.8,0 +12.2 "Dualcast" Ability { id: "23F4", source: "Exdeath" } window 12.2,5 +16.8 "--sync--" Ability { id: "23F7", source: "Exdeath" } +17.3 "Blizzard III" # Ability { id: "23F8", source: "Exdeath" } +19.9 "Blizzard III" # Ability { id: "23F8", source: "Exdeath" } +24.8 "Dualcast" Ability { id: "23F4", source: "Exdeath" } +30.8 "--sync--" Ability { id: "23F9", source: "Exdeath" } +31.5 "Thunder III" # Ability { id: "23FA", source: "Exdeath" } +32.6 "Thunder III" # Ability { id: "23FA", source: "Exdeath" } +37.9 "Dualcast" Ability { id: "23F4", source: "Exdeath" } +42.5 "--sync--" Ability { id: "23F5", source: "Exdeath" } +43.1 "Fire III" # Ability { id: "23F6", source: "Exdeath" } +47.1 "Fire III" # Ability { id: "23F6", source: "Exdeath" } +53.6 "White Hole" Ability { id: "23FF", source: "Exdeath" } +64.7 "The Decisive Battle" Ability { id: "2408", source: "Exdeath" } 66.5 "--untargetable--" -70.6 "--sync--" sync / 1[56]:[^:]*:Exdeath:240A:/ -71.8 "Collision" sync / 1[56]:[^:]*:Exdeath:2409:/ -73.8 "Holy" sync / 1[56]:[^:]*:Exdeath:2403:/ -77.7 "Zombie Breath" sync / 1[56]:[^:]*:Exdeath:240B:/ -82.4 "Flare" sync / 1[56]:[^:]*:Exdeath:2401:/ +70.6 "--sync--" Ability { id: "240A", source: "Exdeath" } +71.8 "Collision" Ability { id: "2409", source: "Exdeath" } +73.8 "Holy" Ability { id: "2403", source: "Exdeath" } +77.7 "Zombie Breath" Ability { id: "240B", source: "Exdeath" } +82.4 "Flare" Ability { id: "2401", source: "Exdeath" } 85.2 "--targetable--" -89.2 "Blizzard III/Fire III/Thunder III" sync / 1[56]:[^:]*:Exdeath:23F[BCD]:/ window 10,10 -95.4 "Vacuum Wave" sync / 1[56]:[^:]*:Exdeath:23FE:/ -105.6 "White Hole" sync / 1[56]:[^:]*:Exdeath:23FF:/ -118.0 "Black Hole" sync / 1[56]:[^:]*:Exdeath:2406:/ -123.1 "Dualcast" sync / 1[56]:[^:]*:Exdeath:23F4:/ -127.7 "--sync--" sync / 1[56]:[^:]*:Exdeath:23F5:/ -128.3 "Fire III" # sync / 1[56]:[^:]*:Exdeath:23F6:/ -132.2 "Fire III" # sync / 1[56]:[^:]*:Exdeath:23F6:/ -134.8 "Holy" sync / 1[56]:[^:]*:Exdeath:240[23]:/ -144.0 "White Hole" sync / 1[56]:[^:]*:Exdeath:23FF:/ -153.1 "Dualcast" sync / 1[56]:[^:]*:Exdeath:23F4:/ -159.1 "--sync--" sync / 1[56]:[^:]*:Exdeath:23F9:/ -159.8 "Thunder III" # sync / 1[56]:[^:]*:Exdeath:23FA:/ -160.9 "Thunder III" # sync / 1[56]:[^:]*:Exdeath:23FA:/ -166.1 "Meteor" sync / 1[56]:[^:]*:Exdeath:2404:/ -179.4 "The Decisive Battle" sync / 1[56]:[^:]*:Exdeath:2408:/ +89.2 "Blizzard III/Fire III/Thunder III" Ability { id: "23F[BCD]", source: "Exdeath" } window 10,10 +95.4 "Vacuum Wave" Ability { id: "23FE", source: "Exdeath" } +105.6 "White Hole" Ability { id: "23FF", source: "Exdeath" } +118.0 "Black Hole" Ability { id: "2406", source: "Exdeath" } +123.1 "Dualcast" Ability { id: "23F4", source: "Exdeath" } +127.7 "--sync--" Ability { id: "23F5", source: "Exdeath" } +128.3 "Fire III" # Ability { id: "23F6", source: "Exdeath" } +132.2 "Fire III" # Ability { id: "23F6", source: "Exdeath" } +134.8 "Holy" Ability { id: "240[23]", source: "Exdeath" } +144.0 "White Hole" Ability { id: "23FF", source: "Exdeath" } +153.1 "Dualcast" Ability { id: "23F4", source: "Exdeath" } +159.1 "--sync--" Ability { id: "23F9", source: "Exdeath" } +159.8 "Thunder III" # Ability { id: "23FA", source: "Exdeath" } +160.9 "Thunder III" # Ability { id: "23FA", source: "Exdeath" } +166.1 "Meteor" Ability { id: "2404", source: "Exdeath" } +179.4 "The Decisive Battle" Ability { id: "2408", source: "Exdeath" } 181.5 "--untargetable--" -185.3 "--sync--" sync / 1[56]:[^:]*:Exdeath:240A:/ -186.4 "Collision" sync / 1[56]:[^:]*:Exdeath:2409:/ -188.7 "Holy" sync / 1[56]:[^:]*:Exdeath:2403:/ -192.4 "Zombie Breath" sync / 1[56]:[^:]*:Exdeath:240B:/ -197.1 "Flare" sync / 1[56]:[^:]*:Exdeath:2401:/ +185.3 "--sync--" Ability { id: "240A", source: "Exdeath" } +186.4 "Collision" Ability { id: "2409", source: "Exdeath" } +188.7 "Holy" Ability { id: "2403", source: "Exdeath" } +192.4 "Zombie Breath" Ability { id: "240B", source: "Exdeath" } +197.1 "Flare" Ability { id: "2401", source: "Exdeath" } 200.0 "--targetable--" -203.9 "Blizzard III/Fire III/Thunder III" sync / 1[56]:[^:]*:Exdeath:23F[BCD]:/ -210.3 "Vacuum Wave" sync / 1[56]:[^:]*:Exdeath:23FE:/ -220.5 "White Hole" sync / 1[56]:[^:]*:Exdeath:23FF:/ -232.8 "Black Hole" sync / 1[56]:[^:]*:Exdeath:2406:/ -237.9 "Dualcast" sync / 1[56]:[^:]*:Exdeath:23F4:/ -242.5 "--sync--" sync / 1[56]:[^:]*:Exdeath:23F7:/ -243.0 "Blizzard III" # sync / 1[56]:[^:]*:Exdeath:23F8:/ -245.6 "Blizzard III" # sync / 1[56]:[^:]*:Exdeath:23F8:/ -249.6 "Flare" sync / 1[56]:[^:]*:Exdeath:2401:/ -258.8 "White Hole" sync / 1[56]:[^:]*:Exdeath:23FF:/ -267.9 "Dualcast" sync / 1[56]:[^:]*:Exdeath:23F4:/ -274.0 "--sync--" sync / 1[56]:[^:]*:Exdeath:23F9:/ -274.7 "Thunder III" # sync / 1[56]:[^:]*:Exdeath:23FA:/ -275.8 "Thunder III" # sync / 1[56]:[^:]*:Exdeath:23FA:/ -281.0 "Meteor" sync / 1[56]:[^:]*:Exdeath:2404:/ +203.9 "Blizzard III/Fire III/Thunder III" Ability { id: "23F[BCD]", source: "Exdeath" } +210.3 "Vacuum Wave" Ability { id: "23FE", source: "Exdeath" } +220.5 "White Hole" Ability { id: "23FF", source: "Exdeath" } +232.8 "Black Hole" Ability { id: "2406", source: "Exdeath" } +237.9 "Dualcast" Ability { id: "23F4", source: "Exdeath" } +242.5 "--sync--" Ability { id: "23F7", source: "Exdeath" } +243.0 "Blizzard III" # Ability { id: "23F8", source: "Exdeath" } +245.6 "Blizzard III" # Ability { id: "23F8", source: "Exdeath" } +249.6 "Flare" Ability { id: "2401", source: "Exdeath" } +258.8 "White Hole" Ability { id: "23FF", source: "Exdeath" } +267.9 "Dualcast" Ability { id: "23F4", source: "Exdeath" } +274.0 "--sync--" Ability { id: "23F9", source: "Exdeath" } +274.7 "Thunder III" # Ability { id: "23FA", source: "Exdeath" } +275.8 "Thunder III" # Ability { id: "23FA", source: "Exdeath" } +281.0 "Meteor" Ability { id: "2404", source: "Exdeath" } 282.0 "--untargetable--" @@ -80,139 +80,139 @@ hideall "--sync--" # -p 242C:1116 242D:1339.5 2426:1652.1 # Neo Exdeath -1002.0 "--sync--" sync / 14:[^:]*:Neo Exdeath:2417:/ window 1002,5 -1007.7 "Almagest" sync / 1[56]:[^:]*:Neo Exdeath:2417:/ window 1008,5 -1016.7 "Aero III" sync / 1[56]:[^:]*:Neo Exdeath:2419:/ -1026.7 "Delta Attack" sync / 1[56]:[^:]*:Neo Exdeath:241E:/ -1027.2 "Blizzard III" # sync / 1[56]:[^:]*:Neo Exdeath:23F8:/ -1027.4 "Thunder III" # sync / 1[56]:[^:]*:Neo Exdeath:23FA:/ -1027.7 "Fire III" # sync / 1[56]:[^:]*:Neo Exdeath:23F6:/ -1028.4 "Thunder III" # sync / 1[56]:[^:]*:Neo Exdeath:23FA:/ -1030.2 "Blizzard III" # sync / 1[56]:[^:]*:Neo Exdeath:23F8:/ -1030.7 "Fire III" # sync / 1[56]:[^:]*:Neo Exdeath:23F6:/ - -1042.7 "Grand Cross Alpha" sync / 1[56]:[^:]*:Neo Exdeath:242B:/ +1002.0 "--sync--" StartsUsing { id: "2417", source: "Neo Exdeath" } window 1002,5 +1007.7 "Almagest" Ability { id: "2417", source: "Neo Exdeath" } window 1008,5 +1016.7 "Aero III" Ability { id: "2419", source: "Neo Exdeath" } +1026.7 "Delta Attack" Ability { id: "241E", source: "Neo Exdeath" } +1027.2 "Blizzard III" # Ability { id: "23F8", source: "Neo Exdeath" } +1027.4 "Thunder III" # Ability { id: "23FA", source: "Neo Exdeath" } +1027.7 "Fire III" # Ability { id: "23F6", source: "Neo Exdeath" } +1028.4 "Thunder III" # Ability { id: "23FA", source: "Neo Exdeath" } +1030.2 "Blizzard III" # Ability { id: "23F8", source: "Neo Exdeath" } +1030.7 "Fire III" # Ability { id: "23F6", source: "Neo Exdeath" } + +1042.7 "Grand Cross Alpha" Ability { id: "242B", source: "Neo Exdeath" } 1045.8 "--untargetable--" 1048.9 "--targetable--" -1053.7 "Flood Of Naught (charge)" sync / 1[56]:[^:]*:Neo Exdeath:2416:/ -1061.7 "Flood Of Naught (colors)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412):/ -1073.2 "Double Attack" sync / 1[56]:[^:]*:Neo Exdeath:241C:/ -1083.8 "Emptiness x8" sync / 1[56]:[^:]*:Neo Exdeath:2420:/ duration 10 -1091.8 "Flood Of Naught (lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(240E|240F):/ -1101.9 "Aero III" sync / 1[56]:[^:]*:Neo Exdeath:2419:/ - -1116.0 "Grand Cross Delta" sync / 1[56]:[^:]*:Neo Exdeath:242C:/ window 116,10 -1129.0 "Flood Of Naught (colors/lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412|240E|240F):/ -1138.0 "Almagest" sync / 1[56]:[^:]*:Neo Exdeath:2417:/ -1149.1 "Aero III" sync / 1[56]:[^:]*:Neo Exdeath:2419:/ -1158.9 "Earth Shaker" sync / 1[56]:[^:]*:Neo Exdeath:241A:/ -1164.4 "Vacuum Wave" sync / 1[56]:[^:]*:Neo Exdeath:241D:/ -1178.4 "Emptiness x8" sync / 1[56]:[^:]*:Neo Exdeath:2420:/ duration 10 -1186.4 "Light And Darkness" sync / 1[56]:[^:]*:Neo Exdeath:241F:/ +1053.7 "Flood Of Naught (charge)" Ability { id: "2416", source: "Neo Exdeath" } +1061.7 "Flood Of Naught (colors)" Ability { id: ["2411", "2412"], source: "Neo Exdeath" } +1073.2 "Double Attack" Ability { id: "241C", source: "Neo Exdeath" } +1083.8 "Emptiness x8" Ability { id: "2420", source: "Neo Exdeath" } duration 10 +1091.8 "Flood Of Naught (lasers)" Ability { id: ["240E", "240F"], source: "Neo Exdeath" } +1101.9 "Aero III" Ability { id: "2419", source: "Neo Exdeath" } + +1116.0 "Grand Cross Delta" Ability { id: "242C", source: "Neo Exdeath" } window 116,10 +1129.0 "Flood Of Naught (colors/lasers)" Ability { id: ["2411", "2412", "240E", "240F"], source: "Neo Exdeath" } +1138.0 "Almagest" Ability { id: "2417", source: "Neo Exdeath" } +1149.1 "Aero III" Ability { id: "2419", source: "Neo Exdeath" } +1158.9 "Earth Shaker" Ability { id: "241A", source: "Neo Exdeath" } +1164.4 "Vacuum Wave" Ability { id: "241D", source: "Neo Exdeath" } +1178.4 "Emptiness x8" Ability { id: "2420", source: "Neo Exdeath" } duration 10 +1186.4 "Light And Darkness" Ability { id: "241F", source: "Neo Exdeath" } 1189.5 "--untargetable--" -1192.4 "Flare" sync / 1[56]:[^:]*:Neo Exdeath:2401:/ -1192.4 "Holy" sync / 1[56]:[^:]*:Neo Exdeath:2403:/ +1192.4 "Flare" Ability { id: "2401", source: "Neo Exdeath" } +1192.4 "Holy" Ability { id: "2403", source: "Neo Exdeath" } 1192.8 "--targetable--" -1197.6 "Flood Of Naught (lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(240E|240F):/ -1211.6 "Meteor" sync / 1[56]:[^:]*:Neo Exdeath:2424:/ +1197.6 "Flood Of Naught (lasers)" Ability { id: ["240E", "240F"], source: "Neo Exdeath" } +1211.6 "Meteor" Ability { id: "2424", source: "Neo Exdeath" } 1212.3 "--adds targetable--" -1224.7 "Flood Of Naught (colors)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412):/ -1237.4 "Charybdis" sync / 1[56]:[^:]*:Neo Exdeath:2423:/ -1244.9 "Double Attack" sync / 1[56]:[^:]*:Neo Exdeath:241C:/ -1260.4 "Almagest" sync / 1[56]:[^:]*:Neo Exdeath:2417:/ -1266.4 "Vacuum Wave" sync / 1[56]:[^:]*:Neo Exdeath:241D:/ -1272.4 "Aero III" sync / 1[56]:[^:]*:Neo Exdeath:2419:/ -1277.5 "Emptiness x8" sync / 1[56]:[^:]*:Neo Exdeath:2420:/ duration 10 - -1286.5 "Grand Cross Alpha" sync / 1[56]:[^:]*:Neo Exdeath:242B:/ window 170,10 +1224.7 "Flood Of Naught (colors)" Ability { id: ["2411", "2412"], source: "Neo Exdeath" } +1237.4 "Charybdis" Ability { id: "2423", source: "Neo Exdeath" } +1244.9 "Double Attack" Ability { id: "241C", source: "Neo Exdeath" } +1260.4 "Almagest" Ability { id: "2417", source: "Neo Exdeath" } +1266.4 "Vacuum Wave" Ability { id: "241D", source: "Neo Exdeath" } +1272.4 "Aero III" Ability { id: "2419", source: "Neo Exdeath" } +1277.5 "Emptiness x8" Ability { id: "2420", source: "Neo Exdeath" } duration 10 + +1286.5 "Grand Cross Alpha" Ability { id: "242B", source: "Neo Exdeath" } window 170,10 1289.6 "--untargetable--" 1292.7 "--targetable--" -1297.5 "Flood Of Naught (charge)" sync / 1[56]:[^:]*:Neo Exdeath:2416:/ -1305.5 "Flood Of Naught (colors)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412):/ -1322.5 "Delta Attack" sync / 1[56]:[^:]*:Neo Exdeath:241E:/ -1323.0 "Blizzard III" # sync / 1[56]:[^:]*:Neo Exdeath:23F8:/ -1323.2 "Thunder III" # sync / 1[56]:[^:]*:Neo Exdeath:23FA:/ -1323.5 "Fire III" # sync / 1[56]:[^:]*:Neo Exdeath:23F6:/ -1324.2 "Thunder III" # sync / 1[56]:[^:]*:Neo Exdeath:23FA:/ -1326.0 "Blizzard III" # sync / 1[56]:[^:]*:Neo Exdeath:23F8:/ -1326.5 "Fire III" # sync / 1[56]:[^:]*:Neo Exdeath:23F6:/ -1330.5 "Flood Of Naught (lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(240E|240F):/ - -1339.5 "Grand Cross Omega" sync / 1[56]:[^:]*:Neo Exdeath:242D:/ window 340,10 +1297.5 "Flood Of Naught (charge)" Ability { id: "2416", source: "Neo Exdeath" } +1305.5 "Flood Of Naught (colors)" Ability { id: ["2411", "2412"], source: "Neo Exdeath" } +1322.5 "Delta Attack" Ability { id: "241E", source: "Neo Exdeath" } +1323.0 "Blizzard III" # Ability { id: "23F8", source: "Neo Exdeath" } +1323.2 "Thunder III" # Ability { id: "23FA", source: "Neo Exdeath" } +1323.5 "Fire III" # Ability { id: "23F6", source: "Neo Exdeath" } +1324.2 "Thunder III" # Ability { id: "23FA", source: "Neo Exdeath" } +1326.0 "Blizzard III" # Ability { id: "23F8", source: "Neo Exdeath" } +1326.5 "Fire III" # Ability { id: "23F6", source: "Neo Exdeath" } +1330.5 "Flood Of Naught (lasers)" Ability { id: ["240E", "240F"], source: "Neo Exdeath" } + +1339.5 "Grand Cross Omega" Ability { id: "242D", source: "Neo Exdeath" } window 340,10 1345.5 "--untargetable--" -1346.5 "The Final Battle" sync / 1[56]:[^:]*:Neo Exdeath:242A:/ -1354.6 "Flood Of Naught (colors/lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412|240E|240F):/ -1359.6 "Flood Of Naught (colors/lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412|240E|240F):/ -1365.6 "Flood Of Naught (lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(240E|240F):/ +1346.5 "The Final Battle" Ability { id: "242A", source: "Neo Exdeath" } +1354.6 "Flood Of Naught (colors/lasers)" Ability { id: ["2411", "2412", "240E", "240F"], source: "Neo Exdeath" } +1359.6 "Flood Of Naught (colors/lasers)" Ability { id: ["2411", "2412", "240E", "240F"], source: "Neo Exdeath" } +1365.6 "Flood Of Naught (lasers)" Ability { id: ["240E", "240F"], source: "Neo Exdeath" } 1371.7 "--targetable--" -1378.1 "Flood Of Naught (charge)" sync / 1[56]:[^:]*:Neo Exdeath:2416:/ -1389.1 "Almagest" sync / 1[56]:[^:]*:Neo Exdeath:2417:/ - -1396.3 "Emptiness x8" sync / 1[56]:[^:]*:Neo Exdeath:2420:/ duration 10 -1404.4 "Flood Of Naught" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412|240E|240F):/ -1414.6 "Aero III" sync / 1[56]:[^:]*:Neo Exdeath:2419:/ - -1428.6 "Grand Cross Delta" sync / 1[56]:[^:]*:Neo Exdeath:242C:/ window 90,10 -1441.6 "Flood Of Naught (colors/lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412|240E|240F):/ -1450.6 "Almagest" sync / 1[56]:[^:]*:Neo Exdeath:2417:/ -1461.6 "Aero III" sync / 1[56]:[^:]*:Neo Exdeath:2419:/ -1471.3 "Earth Shaker" sync / 1[56]:[^:]*:Neo Exdeath:241A:/ -1476.8 "Vacuum Wave" sync / 1[56]:[^:]*:Neo Exdeath:241D:/ -1490.8 "Emptiness x8" sync / 1[56]:[^:]*:Neo Exdeath:2420:/ duration 10 -1498.8 "Light And Darkness" sync / 1[56]:[^:]*:Neo Exdeath:241F:/ +1378.1 "Flood Of Naught (charge)" Ability { id: "2416", source: "Neo Exdeath" } +1389.1 "Almagest" Ability { id: "2417", source: "Neo Exdeath" } + +1396.3 "Emptiness x8" Ability { id: "2420", source: "Neo Exdeath" } duration 10 +1404.4 "Flood Of Naught" Ability { id: ["2411", "2412", "240E", "240F"], source: "Neo Exdeath" } +1414.6 "Aero III" Ability { id: "2419", source: "Neo Exdeath" } + +1428.6 "Grand Cross Delta" Ability { id: "242C", source: "Neo Exdeath" } window 90,10 +1441.6 "Flood Of Naught (colors/lasers)" Ability { id: ["2411", "2412", "240E", "240F"], source: "Neo Exdeath" } +1450.6 "Almagest" Ability { id: "2417", source: "Neo Exdeath" } +1461.6 "Aero III" Ability { id: "2419", source: "Neo Exdeath" } +1471.3 "Earth Shaker" Ability { id: "241A", source: "Neo Exdeath" } +1476.8 "Vacuum Wave" Ability { id: "241D", source: "Neo Exdeath" } +1490.8 "Emptiness x8" Ability { id: "2420", source: "Neo Exdeath" } duration 10 +1498.8 "Light And Darkness" Ability { id: "241F", source: "Neo Exdeath" } 1501.9 "--untargetable--" -1504.8 "Flare" sync / 1[56]:[^:]*:Neo Exdeath:2401:/ -1504.8 "Holy" sync / 1[56]:[^:]*:Neo Exdeath:2403:/ +1504.8 "Flare" Ability { id: "2401", source: "Neo Exdeath" } +1504.8 "Holy" Ability { id: "2403", source: "Neo Exdeath" } 1505.2 "--targetable--" -1509.8 "Flood Of Naught (lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(240E|240F):/ -1523.8 "Meteor" sync / 1[56]:[^:]*:Neo Exdeath:2424:/ +1509.8 "Flood Of Naught (lasers)" Ability { id: ["240E", "240F"], source: "Neo Exdeath" } +1523.8 "Meteor" Ability { id: "2424", source: "Neo Exdeath" } 1524.5 "--adds targetable--" -1536.8 "Flood Of Naught (colors)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412):/ -1549.8 "Charybdis" sync / 1[56]:[^:]*:Neo Exdeath:2423:/ -1557.3 "Double Attack" sync / 1[56]:[^:]*:Neo Exdeath:241C:/ -1572.8 "Almagest" sync / 1[56]:[^:]*:Neo Exdeath:2417:/ -1578.8 "Vacuum Wave" sync / 1[56]:[^:]*:Neo Exdeath:241D:/ -1584.8 "Aero III" sync / 1[56]:[^:]*:Neo Exdeath:2419:/ -1589.9 "Emptiness x8" sync / 1[56]:[^:]*:Neo Exdeath:2420:/ duration 10 - -1598.9 "Grand Cross Alpha" sync / 1[56]:[^:]*:Neo Exdeath:242B:/ window 170,10 +1536.8 "Flood Of Naught (colors)" Ability { id: ["2411", "2412"], source: "Neo Exdeath" } +1549.8 "Charybdis" Ability { id: "2423", source: "Neo Exdeath" } +1557.3 "Double Attack" Ability { id: "241C", source: "Neo Exdeath" } +1572.8 "Almagest" Ability { id: "2417", source: "Neo Exdeath" } +1578.8 "Vacuum Wave" Ability { id: "241D", source: "Neo Exdeath" } +1584.8 "Aero III" Ability { id: "2419", source: "Neo Exdeath" } +1589.9 "Emptiness x8" Ability { id: "2420", source: "Neo Exdeath" } duration 10 + +1598.9 "Grand Cross Alpha" Ability { id: "242B", source: "Neo Exdeath" } window 170,10 1602.0 "--untargetable--" 1605.3 "--targetable--" -1609.9 "Flood Of Naught (charge)" sync / 1[56]:[^:]*:Neo Exdeath:2416:/ -1617.9 "Flood Of Naught (colors)" sync / 1[56]:[^:]*:Neo Exdeath:(2411|2412):/ -1634.9 "Delta Attack" sync / 1[56]:[^:]*:Neo Exdeath:241E:/ -1635.4 "Blizzard III" # sync / 1[56]:[^:]*:Neo Exdeath:23F8:/ -1635.6 "Thunder III" # sync / 1[56]:[^:]*:Neo Exdeath:23FA:/ -1635.9 "Fire III" # sync / 1[56]:[^:]*:Neo Exdeath:23F6:/ -1636.6 "Thunder III" # sync / 1[56]:[^:]*:Neo Exdeath:23FA:/ -1638.4 "Blizzard III" # sync / 1[56]:[^:]*:Neo Exdeath:23F8:/ -1638.9 "Fire III" # sync / 1[56]:[^:]*:Neo Exdeath:23F6:/ -1642.9 "Flood Of Naught (lasers)" sync / 1[56]:[^:]*:Neo Exdeath:(240E|240F):/ - -1652.1 "Neverwhere" sync / 1[56]:[^:]*:Neo Exdeath:2426:/ window 652.1,10 -1660.2 "Charybdis" sync / 1[56]:[^:]*:Neo Exdeath:2423:/ -1663.4 "Flying Frenzy" sync / 1[56]:[^:]*:Neo Exdeath:2427:/ -1664.4 "Frenzied Fist x9" # sync / 1[56]:[^:]*:Neo Exdeath:2428:/ -1671.2 "Frenzied Sphere 1" sync / 1[56]:[^:]*:Neo Exdeath:2429:/ -1673.2 "Flying Frenzy" sync / 1[56]:[^:]*:Neo Exdeath:2427:/ -1674.1 "Frenzied Fist x9" # sync / 1[56]:[^:]*:Neo Exdeath:2428:/ -1681.0 "Frenzied Sphere 2" sync / 1[56]:[^:]*:Neo Exdeath:2429:/ -1683.2 "Flying Frenzy" sync / 1[56]:[^:]*:Neo Exdeath:2427:/ -1684.1 "Frenzied Fist x9" # sync / 1[56]:[^:]*:Neo Exdeath:2428:/ -1691.0 "Frenzied Sphere 3" sync / 1[56]:[^:]*:Neo Exdeath:2429:/ -1693.2 "Flying Frenzy" sync / 1[56]:[^:]*:Neo Exdeath:2427:/ -1694.1 "Frenzied Fist x9" # sync / 1[56]:[^:]*:Neo Exdeath:2428:/ -1701.0 "Frenzied Sphere 4" sync / 1[56]:[^:]*:Neo Exdeath:2429:/ -1703.2 "Flying Frenzy" sync / 1[56]:[^:]*:Neo Exdeath:2427:/ -1704.1 "Frenzied Fist x9" # sync / 1[56]:[^:]*:Neo Exdeath:2428:/ -1711.0 "Frenzied Sphere 5" sync / 1[56]:[^:]*:Neo Exdeath:2429:/ -1713.2 "Flying Frenzy" sync / 1[56]:[^:]*:Neo Exdeath:2427:/ -1714.1 "Frenzied Fist x9" # sync / 1[56]:[^:]*:Neo Exdeath:2428:/ -1721.0 "Frenzied Sphere 6" sync / 1[56]:[^:]*:Neo Exdeath:2429:/ -1723.2 "Flying Frenzy" sync / 1[56]:[^:]*:Neo Exdeath:2427:/ -1724.1 "Frenzied Fist x9" # sync / 1[56]:[^:]*:Neo Exdeath:2428:/ -1731.0 "Frenzied Sphere 7" sync / 1[56]:[^:]*:Neo Exdeath:2429:/ -1733.2 "Flying Frenzy" sync / 1[56]:[^:]*:Neo Exdeath:2427:/ -1734.1 "Frenzied Fist x9" # sync / 1[56]:[^:]*:Neo Exdeath:2428:/ -1741.0 "Frenzied Sphere 8" sync / 1[56]:[^:]*:Neo Exdeath:2429:/ -1753.2 "Almagest (enrage)" sync / 1[56]:[^:]*:Neo Exdeath:2418:/ +1609.9 "Flood Of Naught (charge)" Ability { id: "2416", source: "Neo Exdeath" } +1617.9 "Flood Of Naught (colors)" Ability { id: ["2411", "2412"], source: "Neo Exdeath" } +1634.9 "Delta Attack" Ability { id: "241E", source: "Neo Exdeath" } +1635.4 "Blizzard III" # Ability { id: "23F8", source: "Neo Exdeath" } +1635.6 "Thunder III" # Ability { id: "23FA", source: "Neo Exdeath" } +1635.9 "Fire III" # Ability { id: "23F6", source: "Neo Exdeath" } +1636.6 "Thunder III" # Ability { id: "23FA", source: "Neo Exdeath" } +1638.4 "Blizzard III" # Ability { id: "23F8", source: "Neo Exdeath" } +1638.9 "Fire III" # Ability { id: "23F6", source: "Neo Exdeath" } +1642.9 "Flood Of Naught (lasers)" Ability { id: ["240E", "240F"], source: "Neo Exdeath" } + +1652.1 "Neverwhere" Ability { id: "2426", source: "Neo Exdeath" } window 652.1,10 +1660.2 "Charybdis" Ability { id: "2423", source: "Neo Exdeath" } +1663.4 "Flying Frenzy" Ability { id: "2427", source: "Neo Exdeath" } +1664.4 "Frenzied Fist x9" # Ability { id: "2428", source: "Neo Exdeath" } +1671.2 "Frenzied Sphere 1" Ability { id: "2429", source: "Neo Exdeath" } +1673.2 "Flying Frenzy" Ability { id: "2427", source: "Neo Exdeath" } +1674.1 "Frenzied Fist x9" # Ability { id: "2428", source: "Neo Exdeath" } +1681.0 "Frenzied Sphere 2" Ability { id: "2429", source: "Neo Exdeath" } +1683.2 "Flying Frenzy" Ability { id: "2427", source: "Neo Exdeath" } +1684.1 "Frenzied Fist x9" # Ability { id: "2428", source: "Neo Exdeath" } +1691.0 "Frenzied Sphere 3" Ability { id: "2429", source: "Neo Exdeath" } +1693.2 "Flying Frenzy" Ability { id: "2427", source: "Neo Exdeath" } +1694.1 "Frenzied Fist x9" # Ability { id: "2428", source: "Neo Exdeath" } +1701.0 "Frenzied Sphere 4" Ability { id: "2429", source: "Neo Exdeath" } +1703.2 "Flying Frenzy" Ability { id: "2427", source: "Neo Exdeath" } +1704.1 "Frenzied Fist x9" # Ability { id: "2428", source: "Neo Exdeath" } +1711.0 "Frenzied Sphere 5" Ability { id: "2429", source: "Neo Exdeath" } +1713.2 "Flying Frenzy" Ability { id: "2427", source: "Neo Exdeath" } +1714.1 "Frenzied Fist x9" # Ability { id: "2428", source: "Neo Exdeath" } +1721.0 "Frenzied Sphere 6" Ability { id: "2429", source: "Neo Exdeath" } +1723.2 "Flying Frenzy" Ability { id: "2427", source: "Neo Exdeath" } +1724.1 "Frenzied Fist x9" # Ability { id: "2428", source: "Neo Exdeath" } +1731.0 "Frenzied Sphere 7" Ability { id: "2429", source: "Neo Exdeath" } +1733.2 "Flying Frenzy" Ability { id: "2427", source: "Neo Exdeath" } +1734.1 "Frenzied Fist x9" # Ability { id: "2428", source: "Neo Exdeath" } +1741.0 "Frenzied Sphere 8" Ability { id: "2429", source: "Neo Exdeath" } +1753.2 "Almagest (enrage)" Ability { id: "2418", source: "Neo Exdeath" } diff --git a/ui/raidboss/data/04-sb/raid/o5n.txt b/ui/raidboss/data/04-sb/raid/o5n.txt index dfc3895e46..a2b7426b48 100644 --- a/ui/raidboss/data/04-sb/raid/o5n.txt +++ b/ui/raidboss/data/04-sb/raid/o5n.txt @@ -9,64 +9,64 @@ hideall "--sync--" # Use ActorControl (0x21) Reset line # Trigger set contains 'resetWhenOutOfCombat: false' -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -8 "--sync--" sync / 14:[^:]*:Wroth Ghost:28AE:/ window 8,3 -13 "Encumber" sync / 1[56]:[^:]*:Wroth Ghost:28AE:/ -27 "Head On" sync / 1[56]:[^:]*:Phantom Train:28AF:/ -38 "Ghost Beams" sync / 1[56]:[^:]*:Phantom Train:28AA:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +8 "--sync--" StartsUsing { id: "28AE", source: "Wroth Ghost" } window 8,3 +13 "Encumber" Ability { id: "28AE", source: "Wroth Ghost" } +27 "Head On" Ability { id: "28AF", source: "Phantom Train" } +38 "Ghost Beams" Ability { id: "28AA", source: "Phantom Train" } 47 "Saintly Beam" duration 12 -63 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B0:/ window 5,5 -73 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +63 "Diabolic Headlamp" Ability { id: "28B0", source: "Phantom Train" } window 5,5 +73 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } 80 "Saintly Beam" duration 12 -102 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28A3:/ -116 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28B9:/ -119 "Crossing Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +102 "Doom Strike" Ability { id: "28A3", source: "Phantom Train" } +116 "Diabolic Wind" Ability { id: "28B9", source: "Phantom Train" } +119 "Crossing Whistle" Ability { id: "28A5", source: "Phantom Train" } 139 "Diabolic Light" duration 13 -162 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28AB:/ +162 "Acid Rain" Ability { id: "28AB", source: "Phantom Train" } # add phase start -163 "--untargetable--" sync / 1[56]:[^:]*:Phantom Train:28A7:/ +163 "--untargetable--" Ability { id: "28A7", source: "Phantom Train" } 178 "Add Wave" -193 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28B9:/ -250 "Diabolic Chimney" sync / 1[56]:[^:]*:Phantom Train:28A9:/ window 100,100 +193 "Diabolic Wind" Ability { id: "28B9", source: "Phantom Train" } +250 "Diabolic Chimney" Ability { id: "28A9", source: "Phantom Train" } window 100,100 260 "Ghosts" # add phase end -320 "--sync--" sync / 1[56]:[^:]*:Phantom Train:28A8:/ window 320,320 # boss reappears +320 "--sync--" Ability { id: "28A8", source: "Phantom Train" } window 320,320 # boss reappears 324 "--targetable--" -338 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +338 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } 342 "Saintly Beam" duration 12 -346 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28AB:/ -366 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28A3:/ -376 "Crossing Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ -386 "Head On" sync / 1[56]:[^:]*:Phantom Train:28AF:/ -391 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28AB:/ +346 "Acid Rain" Ability { id: "28AB", source: "Phantom Train" } +366 "Doom Strike" Ability { id: "28A3", source: "Phantom Train" } +376 "Crossing Whistle" Ability { id: "28A5", source: "Phantom Train" } +386 "Head On" Ability { id: "28AF", source: "Phantom Train" } +391 "Acid Rain" Ability { id: "28AB", source: "Phantom Train" } 398 "Diabolic Light" duration 13 -403 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B0:/ -425 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28A3:/ +403 "Diabolic Headlamp" Ability { id: "28B0", source: "Phantom Train" } +425 "Doom Strike" Ability { id: "28A3", source: "Phantom Train" } # Loop starts here -433 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +433 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } 437 "Saintly Beam" duration 12 -441 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28AB:/ -463 "Head On" sync / 1[56]:[^:]*:Phantom Train:28AF:/ -465 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28B9:/ -470 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28AB:/ -477 "Crossing Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ -483 "Encumber" sync / 1[56]:[^:]*:Wroth Ghost:28AE:/ -491 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28B9:/ -498 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B0:/ -504 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28AB:/ +441 "Acid Rain" Ability { id: "28AB", source: "Phantom Train" } +463 "Head On" Ability { id: "28AF", source: "Phantom Train" } +465 "Diabolic Wind" Ability { id: "28B9", source: "Phantom Train" } +470 "Acid Rain" Ability { id: "28AB", source: "Phantom Train" } +477 "Crossing Whistle" Ability { id: "28A5", source: "Phantom Train" } +483 "Encumber" Ability { id: "28AE", source: "Wroth Ghost" } +491 "Diabolic Wind" Ability { id: "28B9", source: "Phantom Train" } +498 "Diabolic Headlamp" Ability { id: "28B0", source: "Phantom Train" } +504 "Acid Rain" Ability { id: "28AB", source: "Phantom Train" } 509 "Diabolic Light" duration 13 -513 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28A3:/ +513 "Doom Strike" Ability { id: "28A3", source: "Phantom Train" } 527 "Saintly Beam" duration 12 -528 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28AB:/ -544 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28B9:/ -559 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28A3:/ +528 "Acid Rain" Ability { id: "28AB", source: "Phantom Train" } +544 "Diabolic Wind" Ability { id: "28B9", source: "Phantom Train" } +559 "Doom Strike" Ability { id: "28A3", source: "Phantom Train" } -567 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ jump 433 # repeats after this? +567 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } jump 433 # repeats after this? # Visual continuity 571 "Saintly Beam" duration 12 diff --git a/ui/raidboss/data/04-sb/raid/o5s.txt b/ui/raidboss/data/04-sb/raid/o5s.txt index 5f08ea50b0..822a09b5c3 100644 --- a/ui/raidboss/data/04-sb/raid/o5s.txt +++ b/ui/raidboss/data/04-sb/raid/o5s.txt @@ -9,91 +9,91 @@ hideall "--sync--" # Use ActorControl (0x21) Reset line # Trigger set contains 'resetWhenOutOfCombat: false' -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11 "Encumber" sync / 1[56]:[^:]*:Wroth Ghost:28B6:/ window 11,5 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11 "Encumber" Ability { id: "28B6", source: "Wroth Ghost" } window 11,5 18 "Saintly Beam" duration 10 -31 "Knockback Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ -41 "All In The Mind" sync / 1[56]:[^:]*:Remorse:28AD:/ -50 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28B1:/ -64 "Head On" sync / 1[56]:[^:]*:Phantom Train:28B7:/ -65 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28BD:/ -71 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28B5:/ -80 "Crossing Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +31 "Knockback Whistle" Ability { id: "28A5", source: "Phantom Train" } +41 "All In The Mind" Ability { id: "28AD", source: "Remorse" } +50 "Doom Strike" Ability { id: "28B1", source: "Phantom Train" } +64 "Head On" Ability { id: "28B7", source: "Phantom Train" } +65 "Diabolic Wind" Ability { id: "28BD", source: "Phantom Train" } +71 "Acid Rain" Ability { id: "28B5", source: "Phantom Train" } +80 "Crossing Whistle" Ability { id: "28A5", source: "Phantom Train" } 90 "Saintly Beam" duration 10 -104 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B8:/ -116 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +104 "Diabolic Headlamp" Ability { id: "28B8", source: "Phantom Train" } +116 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } 125 "Saintly Beam" duration 10 141 "Diabolic Light" duration 13 -152 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28B1:/ -159 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28B5:/ +152 "Doom Strike" Ability { id: "28B1", source: "Phantom Train" } +159 "Acid Rain" Ability { id: "28B5", source: "Phantom Train" } # add phase -168 "--untargetable--" sync / 1[56]:[^:]*:Phantom Train:28A7:/ window 500,500 +168 "--untargetable--" Ability { id: "28A7", source: "Phantom Train" } window 500,500 180 "Add Wave" -196 "(DPS) Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28BD:/ -203 "(T/H) Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28BD:/ +196 "(DPS) Diabolic Wind" Ability { id: "28BD", source: "Phantom Train" } +203 "(T/H) Diabolic Wind" Ability { id: "28BD", source: "Phantom Train" } # chimney + train cars -300 "--sync--" sync / 1[56]:[^:]*:Phantom Train:28B3:/ window 500,500 -305 "(T/H) Ghosts" sync / 03:........:Agony:/ -309 "(DPS) Ghosts" sync / 03:........:Malice:/ +300 "--sync--" Ability { id: "28B3", source: "Phantom Train" } window 500,500 +305 "(T/H) Ghosts" AddedCombatant { name: "Agony" } +309 "(DPS) Ghosts" AddedCombatant { name: "Malice" } -491 "--sync--" sync / 1[56]:[^:]*:Phantom Train:28A8:/ window 500,500 +491 "--sync--" Ability { id: "28A8", source: "Phantom Train" } window 500,500 500 "--targetable--" -517 "Encumber" sync / 1[56]:[^:]*:Wroth Ghost:28B6:/ window 80,80 +517 "Encumber" Ability { id: "28B6", source: "Wroth Ghost" } window 80,80 525 "Diabolic Light" duration 13 -530 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B8:/ +530 "Diabolic Headlamp" Ability { id: "28B8", source: "Phantom Train" } 534 "Saintly Beam" duration 10 -547 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28B1:/ +547 "Doom Strike" Ability { id: "28B1", source: "Phantom Train" } -556 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +556 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } 563 "Saintly Beam" duration 10 -580 "Knockback Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ -589 "All In The Mind" sync / 1[56]:[^:]*:Remorse:28AD:/ -593 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B8:/ -611 "Head On" sync / 1[56]:[^:]*:Phantom Train:28B7:/ +580 "Knockback Whistle" Ability { id: "28A5", source: "Phantom Train" } +589 "All In The Mind" Ability { id: "28AD", source: "Remorse" } +593 "Diabolic Headlamp" Ability { id: "28B8", source: "Phantom Train" } +611 "Head On" Ability { id: "28B7", source: "Phantom Train" } 612 "Saintly Beam" duration 10 616 "Ghosts spawn" -629 "Crossing Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ -637 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B8:/ -645 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28BD:/ -646 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +629 "Crossing Whistle" Ability { id: "28A5", source: "Phantom Train" } +637 "Diabolic Headlamp" Ability { id: "28B8", source: "Phantom Train" } +645 "Diabolic Wind" Ability { id: "28BD", source: "Phantom Train" } +646 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } 653 "Saintly Beam" duration 10 -659 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28BD:/ +659 "Diabolic Wind" Ability { id: "28BD", source: "Phantom Train" } 665 "Diabolic Light" duration 13 -676 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28B1:/ -683 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28B5:/ -697 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B8:/ +676 "Doom Strike" Ability { id: "28B1", source: "Phantom Train" } +683 "Acid Rain" Ability { id: "28B5", source: "Phantom Train" } +697 "Diabolic Headlamp" Ability { id: "28B8", source: "Phantom Train" } 699 "Saintly Beam" duration 10 -704 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28B5:/ +704 "Acid Rain" Ability { id: "28B5", source: "Phantom Train" } -718 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +718 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } 728 "Saintly Beam" duration 10 -731 "Encumber" sync / 1[56]:[^:]*:Wroth Ghost:28B6:/ -732 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28BD:/ +731 "Encumber" Ability { id: "28B6", source: "Wroth Ghost" } +732 "Diabolic Wind" Ability { id: "28BD", source: "Phantom Train" } 737 "Diabolic Light" duration 13 -748 "Doom Strike" sync / 1[56]:[^:]*:Phantom Train:28B1:/ -760 "Knockback Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ -769 "All In The Mind" sync / 1[56]:[^:]*:Remorse:28AD:/ -774 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B8:/ - -789 "Head On" sync / 1[56]:[^:]*:Phantom Train:28B7:/ -791 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28BD:/ -797 "Acid Rain" sync / 1[56]:[^:]*:Phantom Train:28B5:/ -808 "Encumber" sync / 1[56]:[^:]*:Wroth Ghost:28B6:/ -811 "Crossing Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ -819 "Diabolic Headlamp" sync / 1[56]:[^:]*:Phantom Train:28B8:/ -827 "Diabolic Wind" sync / 1[56]:[^:]*:Phantom Train:28BD:/ -828 "Tether Whistle" sync / 1[56]:[^:]*:Phantom Train:28A5:/ +748 "Doom Strike" Ability { id: "28B1", source: "Phantom Train" } +760 "Knockback Whistle" Ability { id: "28A5", source: "Phantom Train" } +769 "All In The Mind" Ability { id: "28AD", source: "Remorse" } +774 "Diabolic Headlamp" Ability { id: "28B8", source: "Phantom Train" } + +789 "Head On" Ability { id: "28B7", source: "Phantom Train" } +791 "Diabolic Wind" Ability { id: "28BD", source: "Phantom Train" } +797 "Acid Rain" Ability { id: "28B5", source: "Phantom Train" } +808 "Encumber" Ability { id: "28B6", source: "Wroth Ghost" } +811 "Crossing Whistle" Ability { id: "28A5", source: "Phantom Train" } +819 "Diabolic Headlamp" Ability { id: "28B8", source: "Phantom Train" } +827 "Diabolic Wind" Ability { id: "28BD", source: "Phantom Train" } +828 "Tether Whistle" Ability { id: "28A5", source: "Phantom Train" } # 10:00 enrage, final phase length depends on add phase time -821 "--sync--" sync / 14:[^:]*:Phantom Train:2A87:/ window 821,500 -831 "Saintly Beam" sync / 1[56]:[^:]*:Phantom Train:2A87:/ +821 "--sync--" StartsUsing { id: "2A87", source: "Phantom Train" } window 821,500 +831 "Saintly Beam" Ability { id: "2A87", source: "Phantom Train" } diff --git a/ui/raidboss/data/04-sb/raid/o6n.txt b/ui/raidboss/data/04-sb/raid/o6n.txt index a3baa9bccd..f799fd101f 100644 --- a/ui/raidboss/data/04-sb/raid/o6n.txt +++ b/ui/raidboss/data/04-sb/raid/o6n.txt @@ -6,62 +6,62 @@ hideall "--sync--" # Note: Although there is a 18 sec. delay between the chatlog line and the boss being targetable # the player's InCombat status is changed at nearly the same time and can be reliably used to start the timeline. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 18 "--targetable--" -21 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282C:/ window 21,2.5 -30 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:282A:/ +21 "Demonic Howl" Ability { id: "282C", source: "Demon Chadarnook" } window 21,2.5 +30 "Demonic Shear" Ability { id: "282A", source: "Demon Chadarnook" } -54 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ -59 "Flash Fire" sync / 1[56]:[^:]*:Portrayal of Fire:280B:/ -66 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282C:/ -76 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:282A:/ -86 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +54 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } +59 "Flash Fire" Ability { id: "280B", source: "Portrayal of Fire" } +66 "Demonic Howl" Ability { id: "282C", source: "Demon Chadarnook" } +76 "Demonic Shear" Ability { id: "282A", source: "Demon Chadarnook" } +86 "Release" Ability { id: "2804", source: "Demon Chadarnook" } -99 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ -104 "Earthquake" sync / 1[56]:[^:]*:Portrayal of Earth:2811:/ -118 "Demonic Stone" sync / 1[56]:[^:]*:Demon Chadarnook:2847:/ -125 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282C:/ -138 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:282A:/ -146 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +99 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } +104 "Earthquake" Ability { id: "2811", source: "Portrayal of Earth" } +118 "Demonic Stone" Ability { id: "2847", source: "Demon Chadarnook" } +125 "Demonic Howl" Ability { id: "282C", source: "Demon Chadarnook" } +138 "Demonic Shear" Ability { id: "282A", source: "Demon Chadarnook" } +146 "Release" Ability { id: "2804", source: "Demon Chadarnook" } -159 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ -170 "Demonic Wave" sync / 1[56]:[^:]*:Portrayal of Water:2831:/ -179 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282C:/ -187 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:282A:/ -195 "Demonic Spout" sync / 1[56]:[^:]*:Demon Chadarnook:2835:/ -200 "Demonic Spout" sync / 1[56]:[^:]*:Demon Chadarnook:2837:/ -209 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +159 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } +170 "Demonic Wave" Ability { id: "2831", source: "Portrayal of Water" } +179 "Demonic Howl" Ability { id: "282C", source: "Demon Chadarnook" } +187 "Demonic Shear" Ability { id: "282A", source: "Demon Chadarnook" } +195 "Demonic Spout" Ability { id: "2835", source: "Demon Chadarnook" } +200 "Demonic Spout" Ability { id: "2837", source: "Demon Chadarnook" } +209 "Release" Ability { id: "2804", source: "Demon Chadarnook" } -222 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ -227 "Demonic Typhoon" sync / 1[56]:[^:]*:Demon Chadarnook:283D:/ -244 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282C:/ -245 "Featherlance" sync / 1[56]:[^:]*:Easterly:2AE8:/ -253 "Demonic Pain" sync / 1[56]:[^:]*:Demon Chadarnook:2AEB:/ -264 "Flash Gale" sync / 1[56]:[^:]*:Demon Chadarnook:2842:/ -275 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +222 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } +227 "Demonic Typhoon" Ability { id: "283D", source: "Demon Chadarnook" } +244 "Demonic Howl" Ability { id: "282C", source: "Demon Chadarnook" } +245 "Featherlance" Ability { id: "2AE8", source: "Easterly" } +253 "Demonic Pain" Ability { id: "2AEB", source: "Demon Chadarnook" } +264 "Flash Gale" Ability { id: "2842", source: "Demon Chadarnook" } +275 "Release" Ability { id: "2804", source: "Demon Chadarnook" } # loop starts here -288 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ -293 "Flash Fire" sync / 1[56]:[^:]*:Portrayal of Fire:280B:/ -299 "Demonic Wave" sync / 1[56]:[^:]*:Portrayal of Water:2831:/ -308 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282C:/ -318 "Demonic Spout" sync / 1[56]:[^:]*:Demon Chadarnook:2835:/ -323 "Demonic Spout" sync / 1[56]:[^:]*:Demon Chadarnook:2837:/ -330 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:282A:/ -341 "Release" sync / 1[56]:[^:]*:Haunt:2809:/ +288 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } +293 "Flash Fire" Ability { id: "280B", source: "Portrayal of Fire" } +299 "Demonic Wave" Ability { id: "2831", source: "Portrayal of Water" } +308 "Demonic Howl" Ability { id: "282C", source: "Demon Chadarnook" } +318 "Demonic Spout" Ability { id: "2835", source: "Demon Chadarnook" } +323 "Demonic Spout" Ability { id: "2837", source: "Demon Chadarnook" } +330 "Demonic Shear" Ability { id: "282A", source: "Demon Chadarnook" } +341 "Release" Ability { id: "2809", source: "Haunt" } -354 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ -359 "Earthquake" sync / 1[56]:[^:]*:Portrayal of Earth:2811:/ -359 "Flash Fire" sync / 1[56]:[^:]*:Portrayal of Fire:280B:/ -368 "Materialize" sync / 1[56]:[^:]*:Demon Chadarnook:282D:/ -381 "Demonic Stone" sync / 1[56]:[^:]*:Demon Chadarnook:2847:/ -384 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282C:/ -394 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:282A:/ -404 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282C:/ -415 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +354 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } +359 "Earthquake" Ability { id: "2811", source: "Portrayal of Earth" } +359 "Flash Fire" Ability { id: "280B", source: "Portrayal of Fire" } +368 "Materialize" Ability { id: "282D", source: "Demon Chadarnook" } +381 "Demonic Stone" Ability { id: "2847", source: "Demon Chadarnook" } +384 "Demonic Howl" Ability { id: "282C", source: "Demon Chadarnook" } +394 "Demonic Shear" Ability { id: "282A", source: "Demon Chadarnook" } +404 "Demonic Howl" Ability { id: "282C", source: "Demon Chadarnook" } +415 "Release" Ability { id: "2804", source: "Demon Chadarnook" } # loop ends here -428 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ jump 288 +428 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } jump 288 433 "Flash Fire" 439 "Demonic Wave" 448 "Demonic Howl" diff --git a/ui/raidboss/data/04-sb/raid/o6s.txt b/ui/raidboss/data/04-sb/raid/o6s.txt index b712c4cb92..92829dbd64 100644 --- a/ui/raidboss/data/04-sb/raid/o6s.txt +++ b/ui/raidboss/data/04-sb/raid/o6s.txt @@ -6,98 +6,98 @@ hideall "--sync--" # Note: Although there is a 18 sec. delay between the chatlog line and the boss being targetable # the player's InCombat status is changed at nearly the same time and can be reliably used to start the timeline. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 18 "--targetable--" -21 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ window 21,0 -31 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:2829:/ +21 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } window 21,0 +31 "Demonic Shear" Ability { id: "2829", source: "Demon Chadarnook" } -57 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ window 20,20 -62 "Flash Fire" sync / 1[56]:[^:]*:Portrayal of Fire:280A:/ -71 "Flash Gale" sync / 1[56]:[^:]*:Portrayal of Wind:2ABA:/ -73 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -87 "Poltergeist" sync / 1[56]:[^:]*:Goddess Chadarnook:2824:/ -92 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:2829:/ -98 "Divine Lure" sync / 1[56]:[^:]*:Goddess Chadarnook:2822:/ -100 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -109 "Demonic Pain" sync / 1[56]:[^:]*:Demon Chadarnook:2AEC:/ -121 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -130 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +57 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } window 20,20 +62 "Flash Fire" Ability { id: "280A", source: "Portrayal of Fire" } +71 "Flash Gale" Ability { id: "2ABA", source: "Portrayal of Wind" } +73 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +87 "Poltergeist" Ability { id: "2824", source: "Goddess Chadarnook" } +92 "Demonic Shear" Ability { id: "2829", source: "Demon Chadarnook" } +98 "Divine Lure" Ability { id: "2822", source: "Goddess Chadarnook" } +100 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +109 "Demonic Pain" Ability { id: "2AEC", source: "Demon Chadarnook" } +121 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +130 "Release" Ability { id: "2804", source: "Demon Chadarnook" } -143 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ window 20 -150 "Easterlies" sync / 03:........:Easterly:/ -153 "Rock Hard" sync / 1[56]:[^:]*:Portrayal of Earth:2812:/ -155 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:2829:/ -164 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -166 "Featherlance" sync / 1[56]:[^:]*:Easterly:283E:/ -171 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -184 "Last Kiss" sync / 1[56]:[^:]*:Demon Chadarnook:2826:/ -195 "The Price" sync / 1[56]:[^:]*:Demon Chadarnook:2827:/ -198 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -200 "Poltergeist" sync / 1[56]:[^:]*:Goddess Chadarnook:2824:/ -208 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:2829:/ -211 "Divine Lure" sync / 1[56]:[^:]*:Goddess Chadarnook:2822:/ -216 "Demonic Storm" sync / 1[56]:[^:]*:Demon Chadarnook:2840:/ -225 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -238 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +143 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } window 20 +150 "Easterlies" AddedCombatant { name: "Easterly" } +153 "Rock Hard" Ability { id: "2812", source: "Portrayal of Earth" } +155 "Demonic Shear" Ability { id: "2829", source: "Demon Chadarnook" } +164 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +166 "Featherlance" Ability { id: "283E", source: "Easterly" } +171 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +184 "Last Kiss" Ability { id: "2826", source: "Demon Chadarnook" } +195 "The Price" Ability { id: "2827", source: "Demon Chadarnook" } +198 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +200 "Poltergeist" Ability { id: "2824", source: "Goddess Chadarnook" } +208 "Demonic Shear" Ability { id: "2829", source: "Demon Chadarnook" } +211 "Divine Lure" Ability { id: "2822", source: "Goddess Chadarnook" } +216 "Demonic Storm" Ability { id: "2840", source: "Demon Chadarnook" } +225 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +238 "Release" Ability { id: "2804", source: "Demon Chadarnook" } -251 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ window 20 -256 "Earthquake" sync / 1[56]:[^:]*:Portrayal of Earth:2810:/ -256 "Flash Fire" sync / 1[56]:[^:]*:Portrayal of Fire:280A:/ -261 "Flash Torrent" sync / 1[56]:[^:]*:Portrayal of Water:2AB9:/ -270 "Materialize" sync / 1[56]:[^:]*:Demon Chadarnook:282D:/ -281 "Demonic Pain" sync / 1[56]:[^:]*:Haunt:2AEC:/ -286 "Lullaby" sync / 1[56]:[^:]*:Goddess Chadarnook:2828:/ -294 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -300 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -306 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:2829:/ +251 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } window 20 +256 "Earthquake" Ability { id: "2810", source: "Portrayal of Earth" } +256 "Flash Fire" Ability { id: "280A", source: "Portrayal of Fire" } +261 "Flash Torrent" Ability { id: "2AB9", source: "Portrayal of Water" } +270 "Materialize" Ability { id: "282D", source: "Demon Chadarnook" } +281 "Demonic Pain" Ability { id: "2AEC", source: "Haunt" } +286 "Lullaby" Ability { id: "2828", source: "Goddess Chadarnook" } +294 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +300 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +306 "Demonic Shear" Ability { id: "2829", source: "Demon Chadarnook" } 319 "Demonic Stone" duration 5 -329 "Last Kiss" sync / 1[56]:[^:]*:Demon Chadarnook:2826:/ -333 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -340 "The Price" sync / 1[56]:[^:]*:Demon Chadarnook:2827:/ -352 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +329 "Last Kiss" Ability { id: "2826", source: "Demon Chadarnook" } +333 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +340 "The Price" Ability { id: "2827", source: "Demon Chadarnook" } +352 "Release" Ability { id: "2804", source: "Demon Chadarnook" } -365 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ window 20 -373 "Easterlies" sync / 03:........:Easterly:/ -375 "Rock Hard" sync / 1[56]:[^:]*:Portrayal of Earth:2812:/ -376 "Demonic Wave" sync / 1[56]:[^:]*:Portrayal of Water:2830:/ -384 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -388 "Featherlance" sync / 1[56]:[^:]*:Easterly:283E:/ -396 "Materialize" sync / 1[56]:[^:]*:Demon Chadarnook:282D:/ -403 "Demonic Spout" sync / 1[56]:[^:]*:Demon Chadarnook:2834:/ -408 "Demonic Storm" sync / 1[56]:[^:]*:Demon Chadarnook:2840:/ -408 "Demonic Spout" sync / 1[56]:[^:]*:Demon Chadarnook:2836:/ -425 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -438 "Demonic Pain" sync / 1[56]:[^:]*:Demon Chadarnook:2AEC:/ -443 "Last Kiss" sync / 1[56]:[^:]*:Demon Chadarnook:2826:/ -447 "Flash Torrent" sync / 1[56]:[^:]*:Demon Chadarnook:280C:/ -449 "Flash Flood" sync / 1[56]:[^:]*:Haunt:2AEA:/ -454 "The Price" sync / 1[56]:[^:]*:Demon Chadarnook:2827:/ -454 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -469 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:2829:/ -482 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +365 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } window 20 +373 "Easterlies" AddedCombatant { name: "Easterly" } +375 "Rock Hard" Ability { id: "2812", source: "Portrayal of Earth" } +376 "Demonic Wave" Ability { id: "2830", source: "Portrayal of Water" } +384 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +388 "Featherlance" Ability { id: "283E", source: "Easterly" } +396 "Materialize" Ability { id: "282D", source: "Demon Chadarnook" } +403 "Demonic Spout" Ability { id: "2834", source: "Demon Chadarnook" } +408 "Demonic Storm" Ability { id: "2840", source: "Demon Chadarnook" } +408 "Demonic Spout" Ability { id: "2836", source: "Demon Chadarnook" } +425 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +438 "Demonic Pain" Ability { id: "2AEC", source: "Demon Chadarnook" } +443 "Last Kiss" Ability { id: "2826", source: "Demon Chadarnook" } +447 "Flash Torrent" Ability { id: "280C", source: "Demon Chadarnook" } +449 "Flash Flood" Ability { id: "2AEA", source: "Haunt" } +454 "The Price" Ability { id: "2827", source: "Demon Chadarnook" } +454 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +469 "Demonic Shear" Ability { id: "2829", source: "Demon Chadarnook" } +482 "Release" Ability { id: "2804", source: "Demon Chadarnook" } -495 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ window 20 -500 "Earthquake" sync / 1[56]:[^:]*:Portrayal of Earth:2810:/ -500 "Flash Fire" sync / 1[56]:[^:]*:Portrayal of Fire:280A:/ -509 "Flash Gale" sync / 1[56]:[^:]*:Portrayal of Wind:2ABA:/ -511 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -519 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:2829:/ -531 "Materialize" sync / 1[56]:[^:]*:Demon Chadarnook:282D:/ -538 "Poltergeist" sync / 1[56]:[^:]*:Goddess Chadarnook:2824:/ +495 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } window 20 +500 "Earthquake" Ability { id: "2810", source: "Portrayal of Earth" } +500 "Flash Fire" Ability { id: "280A", source: "Portrayal of Fire" } +509 "Flash Gale" Ability { id: "2ABA", source: "Portrayal of Wind" } +511 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +519 "Demonic Shear" Ability { id: "2829", source: "Demon Chadarnook" } +531 "Materialize" Ability { id: "282D", source: "Demon Chadarnook" } +538 "Poltergeist" Ability { id: "2824", source: "Goddess Chadarnook" } 546 "Demonic Stone" duration 5 -552 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -554 "Divine Lure" sync / 1[56]:[^:]*:Goddess Chadarnook:2822:/ -560 "Demonic Shear" sync / 1[56]:[^:]*:Demon Chadarnook:2829:/ -573 "Demonic Pain" sync / 1[56]:[^:]*:Demon Chadarnook:2AEC:/ -581 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -590 "Release" sync / 1[56]:[^:]*:Demon Chadarnook:2804:/ +552 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +554 "Divine Lure" Ability { id: "2822", source: "Goddess Chadarnook" } +560 "Demonic Shear" Ability { id: "2829", source: "Demon Chadarnook" } +573 "Demonic Pain" Ability { id: "2AEC", source: "Demon Chadarnook" } +581 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +590 "Release" Ability { id: "2804", source: "Demon Chadarnook" } -603 "Possession" sync / 1[56]:[^:]*:Demon Chadarnook:2803:/ window 20 -611 "Easterlies" sync / 03:........:Easterly:/ -613 "Rock Hard" sync / 1[56]:[^:]*:Portrayal of Earth:2812:/ -614 "Demonic Wave" sync / 1[56]:[^:]*:Portrayal of Water:2830:/ -622 "Demonic Howl" sync / 1[56]:[^:]*:Demon Chadarnook:282B:/ -626 "Featherlance" sync / 1[56]:[^:]*:Easterly:283E:/ +603 "Possession" Ability { id: "2803", source: "Demon Chadarnook" } window 20 +611 "Easterlies" AddedCombatant { name: "Easterly" } +613 "Rock Hard" Ability { id: "2812", source: "Portrayal of Earth" } +614 "Demonic Wave" Ability { id: "2830", source: "Portrayal of Water" } +622 "Demonic Howl" Ability { id: "282B", source: "Demon Chadarnook" } +626 "Featherlance" Ability { id: "283E", source: "Easterly" } -626 "--sync--" sync / 14:[^:]*:Demon Chadarnook:284D:/ +626 "--sync--" StartsUsing { id: "284D", source: "Demon Chadarnook" } 641 "Enrage" diff --git a/ui/raidboss/data/04-sb/raid/o7n.txt b/ui/raidboss/data/04-sb/raid/o7n.txt index 1e4908815d..70bb8c9402 100644 --- a/ui/raidboss/data/04-sb/raid/o7n.txt +++ b/ui/raidboss/data/04-sb/raid/o7n.txt @@ -3,84 +3,84 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:276B:/ window 11,10 -21 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:276C:/ -31 "Prey" sync / 1[56]:[^:]*:Guardian:276D:/ -39 "Load" sync / 1[56]:[^:]*:Guardian:275C:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11 "Magitek Ray" Ability { id: "276B", source: "Guardian" } window 11,10 +21 "Arm And Hammer" Ability { id: "276C", source: "Guardian" } +31 "Prey" Ability { id: "276D", source: "Guardian" } +39 "Load" Ability { id: "275C", source: "Guardian" } # Ultros -200 "--sync--" sync / 1A:5D1:Ultros Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ window 2000,2000 -203 "Ink" sync / 1[56]:[^:]*:Guardian:275D:/ -209 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:276E:/ -219 "Tentacle Simulation" sync / 1[56]:[^:]*:Guardian:275E:/ -223 "Tentacle" sync / 1[56]:[^:]*:Tentacle:275F:/ -229 "Wallop" sync / 1[56]:[^:]*:Tentacle:2760:/ -231 "Run Program" sync / 1[56]:[^:]*:Guardian:276F:/ -237 "--untargetable--" sync / 1[56]:[^:]*:Guardian:2937:/ +200 "--sync--" GainsEffect { effectId: "5D1", effect: "Ultros Simulation", target: "Guardian" } window 2000,2000 +203 "Ink" Ability { id: "275D", source: "Guardian" } +209 "Diffractive Plasma" Ability { id: "276E", source: "Guardian" } +219 "Tentacle Simulation" Ability { id: "275E", source: "Guardian" } +223 "Tentacle" Ability { id: "275F", source: "Tentacle" } +229 "Wallop" Ability { id: "2760", source: "Tentacle" } +231 "Run Program" Ability { id: "276F", source: "Guardian" } +237 "--untargetable--" Ability { id: "2937", source: "Guardian" } 244 "Chain Cannon" duration 2 -250 "Main Cannon" sync / 1[56]:[^:]*:Guardian:2771:/ -253 "--targetable--" sync / 1[56]:[^:]*:Guardian:2938:/ -260 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:276E:/ -266 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:276B:/ # drift 0.35 -275 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:276C:/ -284 "Load" sync / 1[56]:[^:]*:Guardian:275C:/ +250 "Main Cannon" Ability { id: "2771", source: "Guardian" } +253 "--targetable--" Ability { id: "2938", source: "Guardian" } +260 "Diffractive Plasma" Ability { id: "276E", source: "Guardian" } +266 "Magitek Ray" Ability { id: "276B", source: "Guardian" } # drift 0.35 +275 "Arm And Hammer" Ability { id: "276C", source: "Guardian" } +284 "Load" Ability { id: "275C", source: "Guardian" } # Dadaluma -400 "--sync--" sync / 1A:5D3:Dadaluma Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ window 2000,2000 -404 "Shockwave" sync / 1[56]:[^:]*:Guardian:2766:/ -415 "--sync--" sync / 1[56]:[^:]*:Guardian:276B:/ jump 1215 # rare version -424 "Chakra Burst" sync / 1[56]:[^:]*:Guardian:276A:/ -427 "Run Program" sync / 1[56]:[^:]*:Guardian:276F:/ +400 "--sync--" GainsEffect { effectId: "5D3", effect: "Dadaluma Simulation", target: "Guardian" } window 2000,2000 +404 "Shockwave" Ability { id: "2766", source: "Guardian" } +415 "--sync--" Ability { id: "276B", source: "Guardian" } jump 1215 # rare version +424 "Chakra Burst" Ability { id: "276A", source: "Guardian" } +427 "Run Program" Ability { id: "276F", source: "Guardian" } 436 "Aura Cannon" -441 "Prey" sync / 1[56]:[^:]*:Guardian:276D:/ -449 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:276B:/ -460 "Load" sync / 1[56]:[^:]*:Guardian:275C:/ +441 "Prey" Ability { id: "276D", source: "Guardian" } +449 "Magitek Ray" Ability { id: "276B", source: "Guardian" } +460 "Load" Ability { id: "275C", source: "Guardian" } # Air Force -600 "--sync--" sync / 1A:5D2:Air Force Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ window 2000,2000 -604 "Diffractive Laser" sync / 1[56]:[^:]*:Guardian:2761:/ -613 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ -614 "--sync--" sync / 1[56]:[^:]*:Guardian:276F:/ jump 1014 # rare version -623 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:276E:/ -637 "Bomb Deployment" sync / 1[56]:[^:]*:Guardian:2762:/ -648 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:276C:/ -659 "Run Program" sync / 1[56]:[^:]*:Guardian:276F:/ -672 "Prey" sync / 1[56]:[^:]*:Guardian:276D:/ +600 "--sync--" GainsEffect { effectId: "5D2", effect: "Air Force Simulation", target: "Guardian" } window 2000,2000 +604 "Diffractive Laser" Ability { id: "2761", source: "Guardian" } +613 "Missile Simulation" Ability { id: "2764", source: "Guardian" } +614 "--sync--" Ability { id: "276F", source: "Guardian" } jump 1014 # rare version +623 "Diffractive Plasma" Ability { id: "276E", source: "Guardian" } +637 "Bomb Deployment" Ability { id: "2762", source: "Guardian" } +648 "Arm And Hammer" Ability { id: "276C", source: "Guardian" } +659 "Run Program" Ability { id: "276F", source: "Guardian" } +672 "Prey" Ability { id: "276D", source: "Guardian" } 678 "Plane Laser" -682 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:276E:/ -688 "Load" sync / 1[56]:[^:]*:Guardian:275C:/ +682 "Diffractive Plasma" Ability { id: "276E", source: "Guardian" } +688 "Load" Ability { id: "275C", source: "Guardian" } # Bibliotaph -800 "--sync--" sync / 1A:5D4:Bibliotaph Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ window 2000,2000 -817 "Demon Simulation" sync / 1[56]:[^:]*:Guardian:2752:/ -824 "Run Program" sync / 1[56]:[^:]*:Guardian:276F:/ -838 "Burst/Darkness" sync / 1[56]:[^:]*:Bibliotaph:29(BF|C0):/ -840 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:276B:/ -851 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:276C:/ -860 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:276E:/ -870 "Load" sync / 1[56]:[^:]*:Guardian:275C:/ +800 "--sync--" GainsEffect { effectId: "5D4", effect: "Bibliotaph Simulation", target: "Guardian" } window 2000,2000 +817 "Demon Simulation" Ability { id: "2752", source: "Guardian" } +824 "Run Program" Ability { id: "276F", source: "Guardian" } +838 "Burst/Darkness" Ability { id: "29(BF|C0)", source: "Bibliotaph" } +840 "Magitek Ray" Ability { id: "276B", source: "Guardian" } +851 "Arm And Hammer" Ability { id: "276C", source: "Guardian" } +860 "Diffractive Plasma" Ability { id: "276E", source: "Guardian" } +870 "Load" Ability { id: "275C", source: "Guardian" } # Air Force later 1000 "--sync--" -1004 "Diffractive Laser" sync / 1[56]:[^:]*:Guardian:2761:/ -1014 "Run Program" sync / 1[56]:[^:]*:Guardian:276F:/ -1033 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ +1004 "Diffractive Laser" Ability { id: "2761", source: "Guardian" } +1014 "Run Program" Ability { id: "276F", source: "Guardian" } +1033 "Missile Simulation" Ability { id: "2764", source: "Guardian" } 1034 "Plane Laser" -1036 "--untargetable--" sync / 1[56]:[^:]*:Guardian:2937:/ +1036 "--untargetable--" Ability { id: "2937", source: "Guardian" } 1043 "Chain Cannon" duration 2 -1049 "Main Cannon" sync / 1[56]:[^:]*:Guardian:2771:/ -1052 "--targetable--" sync / 1[56]:[^:]*:Guardian:2938:/ -1062 "Bomb Deployment" sync / 1[56]:[^:]*:Guardian:2762:/ -1085 "Load" sync / 1[56]:[^:]*:Guardian:275C:/ +1049 "Main Cannon" Ability { id: "2771", source: "Guardian" } +1052 "--targetable--" Ability { id: "2938", source: "Guardian" } +1062 "Bomb Deployment" Ability { id: "2762", source: "Guardian" } +1085 "Load" Ability { id: "275C", source: "Guardian" } # Dadaluma later 1200 "--sync--" -1204 "Shockwave" sync / 1[56]:[^:]*:Guardian:2766:/ -1215 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:276B:/ -1224 "Chakra Burst" sync / 1[56]:[^:]*:Guardian:276A:/ -1227 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:276B:/ -1238 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:276E:/ -1246 "Prey" sync / 1[56]:[^:]*:Guardian:276D:/ -1254 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:276C:/ -1266 "Load" sync / 1[56]:[^:]*:Guardian:275C:/ +1204 "Shockwave" Ability { id: "2766", source: "Guardian" } +1215 "Magitek Ray" Ability { id: "276B", source: "Guardian" } +1224 "Chakra Burst" Ability { id: "276A", source: "Guardian" } +1227 "Magitek Ray" Ability { id: "276B", source: "Guardian" } +1238 "Diffractive Plasma" Ability { id: "276E", source: "Guardian" } +1246 "Prey" Ability { id: "276D", source: "Guardian" } +1254 "Arm And Hammer" Ability { id: "276C", source: "Guardian" } +1266 "Load" Ability { id: "275C", source: "Guardian" } diff --git a/ui/raidboss/data/04-sb/raid/o7s.txt b/ui/raidboss/data/04-sb/raid/o7s.txt index 3d830acd7e..ed3e282e9d 100644 --- a/ui/raidboss/data/04-sb/raid/o7s.txt +++ b/ui/raidboss/data/04-sb/raid/o7s.txt @@ -2,98 +2,98 @@ hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ window 11,10 -21 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ -31 "Atomic Ray" sync / 1[56]:[^:]*:Guardian:278D:/ -40 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -49 "Load?" sync / 1[56]:[^:]*:Guardian:275C:/ -50 "--sync--" sync / 1A:5D3:Dadaluma Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ jump 1050 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11 "Magitek Ray" Ability { id: "2788", source: "Guardian" } window 11,10 +21 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } +31 "Atomic Ray" Ability { id: "278D", source: "Guardian" } +40 "Prey" Ability { id: "278A", source: "Guardian" } +49 "Load?" Ability { id: "275C", source: "Guardian" } +50 "--sync--" GainsEffect { effectId: "5D3", effect: "Dadaluma Simulation", target: "Guardian" } jump 1050 52 "Shockwave?" # This is Version A of the encounter, with Bibliotaph first -59 "Demon Simulation" sync / 1[56]:[^:]*:Guardian:2B36:/ +59 "Demon Simulation" Ability { id: "2B36", source: "Guardian" } # Dadaluma -67 "Load Dada / Skip Ultros" sync / 1[56]:[^:]*:Guardian:2773:/ -70 "Shockwave" sync / 1[56]:[^:]*:Guardian:2783:/ -77 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ -92 "Chakra Burst" sync / 1[56]:[^:]*:Guardian:2787:/ -95 "Run Dada (NW)" sync / 1[56]:[^:]*:Guardian:276F:/ -108 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ +67 "Load Dada / Skip Ultros" Ability { id: "2773", source: "Guardian" } +70 "Shockwave" Ability { id: "2783", source: "Guardian" } +77 "Missile Simulation" Ability { id: "2764", source: "Guardian" } +92 "Chakra Burst" Ability { id: "2787", source: "Guardian" } +95 "Run Dada (NW)" Ability { id: "276F", source: "Guardian" } +108 "Magitek Ray" Ability { id: "2788", source: "Guardian" } 113 "(H) Aura Cannon" 123 "(DPS) Aura Cannon" -124 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ -136 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -144 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ +124 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } +136 "Prey" Ability { id: "278A", source: "Guardian" } +144 "Magitek Ray" Ability { id: "2788", source: "Guardian" } # Ultros -153 "Retrieve Ultros" sync / 1[56]:[^:]*:Guardian:2774:/ -154 "Ink" sync / 1[56]:[^:]*:Guardian:277D:/ -163 "Copy Ultros" sync / 1[56]:[^:]*:Guardian:2775:/ -170 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -179 "Tentacle Simulation" sync / 1[56]:[^:]*:Guardian:275E:/ +153 "Retrieve Ultros" Ability { id: "2774", source: "Guardian" } +154 "Ink" Ability { id: "277D", source: "Guardian" } +163 "Copy Ultros" Ability { id: "2775", source: "Guardian" } +170 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +179 "Tentacle Simulation" Ability { id: "275E", source: "Guardian" } 183 "Tentacle" 189 "Wallop" -191 "Run Ultros (NE)" sync / 1[56]:[^:]*:Guardian:276F:/ +191 "Run Ultros (NE)" Ability { id: "276F", source: "Guardian" } 198 "Interrupt Stoneskin" duration 4 -200 "--untargetable--" sync / 1[56]:[^:]*:Guardian:2937:/ +200 "--untargetable--" Ability { id: "2937", source: "Guardian" } 207 "Chain Cannon" duration 2 -213 "Main Cannon" sync / 1[56]:[^:]*:Guardian:2790:/ window 10,10 -216 "--targetable--" sync / 1[56]:[^:]*:Guardian:2938:/ -228 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +213 "Main Cannon" Ability { id: "2790", source: "Guardian" } window 10,10 +216 "--targetable--" Ability { id: "2938", source: "Guardian" } +228 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Air Force -236 "Load Air Force" sync / 1[56]:[^:]*:Guardian:275C:/ -239 "Diffractive Laser" sync / 1[56]:[^:]*:Guardian:2780:/ -254 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ -264 "Run Air Force" sync / 1[56]:[^:]*:Guardian:276F:/ -278 "Bomb Deployment" sync / 1[56]:[^:]*:Guardian:2762:/ +236 "Load Air Force" Ability { id: "275C", source: "Guardian" } +239 "Diffractive Laser" Ability { id: "2780", source: "Guardian" } +254 "Missile Simulation" Ability { id: "2764", source: "Guardian" } +264 "Run Air Force" Ability { id: "276F", source: "Guardian" } +278 "Bomb Deployment" Ability { id: "2762", source: "Guardian" } 279 "Plane Laser" duration 2 287 "Plane Laser" duration 2 -290 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ -298 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ +290 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } +298 "Magitek Ray" Ability { id: "2788", source: "Guardian" } # Virus -306 "Virus" sync / 1[56]:[^:]*:Guardian:2773:/ +306 "Virus" Ability { id: "2773", source: "Guardian" } 309 "Aether Rot" -319 "Magnetism/Repel" sync / 1[56]:[^:]*:Fire Control System:2779:/ -332 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -344 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -356 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -366 "Viral Weapon" sync / 1[56]:[^:]*:Guardian:277C:/ +319 "Magnetism/Repel" Ability { id: "2779", source: "Fire Control System" } +332 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +344 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +356 "Prey" Ability { id: "278A", source: "Guardian" } +366 "Viral Weapon" Ability { id: "277C", source: "Guardian" } 367 "Temporary Misdirection" duration 15 -372 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -375 "--untargetable--" sync / 1[56]:[^:]*:Guardian:2937:/ +372 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +375 "--untargetable--" Ability { id: "2937", source: "Guardian" } 382 "Chain Cannon" duration 2 -388 "Main Cannon" sync / 1[56]:[^:]*:Guardian:2790:/ +388 "Main Cannon" Ability { id: "2790", source: "Guardian" } 389 "Radar" duration 2 -391 "--targetable--" sync / 1[56]:[^:]*:Guardian:2938:/ -400 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ -408 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +391 "--targetable--" Ability { id: "2938", source: "Guardian" } +400 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } +408 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Ultros -416 "Paste Ultros" sync / 1[56]:[^:]*:Guardian:2776:/ -417 "Ink" sync / 1[56]:[^:]*:Guardian:277D:/ -424 "Tentacle Simulation" sync / 1[56]:[^:]*:Guardian:275E:/ -430 "Bomb Deployment" sync / 1[56]:[^:]*:Guardian:2762:/ -439 "Atomic Ray" sync / 1[56]:[^:]*:Guardian:278D:/ -444 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -453 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -463 "Run Ultros (SW)" sync / 1[56]:[^:]*:Guardian:276F:/ -469 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ +416 "Paste Ultros" Ability { id: "2776", source: "Guardian" } +417 "Ink" Ability { id: "277D", source: "Guardian" } +424 "Tentacle Simulation" Ability { id: "275E", source: "Guardian" } +430 "Bomb Deployment" Ability { id: "2762", source: "Guardian" } +439 "Atomic Ray" Ability { id: "278D", source: "Guardian" } +444 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +453 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +463 "Run Ultros (SW)" Ability { id: "276F", source: "Guardian" } +469 "Missile Simulation" Ability { id: "2764", source: "Guardian" } 472 "Interrupt Stoneskin" duration 4 -474 "--untargetable--" sync / 1[56]:[^:]*:Guardian:2937:/ +474 "--untargetable--" Ability { id: "2937", source: "Guardian" } 481 "Chain Cannon" duration 2 -487 "Main Cannon" sync / 1[56]:[^:]*:Guardian:2790:/ -490 "--targetable--" sync / 1[56]:[^:]*:Guardian:2937:/ -499 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +487 "Main Cannon" Ability { id: "2790", source: "Guardian" } +490 "--targetable--" Ability { id: "2937", source: "Guardian" } +499 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Divergence point -509 "Load/Skip?" sync / 1[56]:[^:]*:Guardian:(275C|2773):/ -510 "--sync--" sync / 1A:5D4:Bibliotaph Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ jump 2510 # Bibliotaph buff, jump to A1 -510 "--sync--" sync / 1A:5D3:Dadaluma Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ jump 3510 # Dadaluma buff, jump to A2 +509 "Load/Skip?" Ability { id: ["275C", "2773"], source: "Guardian" } +510 "--sync--" GainsEffect { effectId: "5D4", effect: "Bibliotaph Simulation", target: "Guardian" } jump 2510 # Bibliotaph buff, jump to A1 +510 "--sync--" GainsEffect { effectId: "5D3", effect: "Dadaluma Simulation", target: "Guardian" } jump 3510 # Dadaluma buff, jump to A2 512 "Shockwave?" 519 "Demon Simulation?" @@ -102,28 +102,28 @@ hideall "--sync--" ######################################################## # Bibliotaph -2509 "Load Biblio" sync / 1[56]:[^:]*:Guardian:(275C|2773):/ +2509 "Load Biblio" Ability { id: ["275C", "2773"], source: "Guardian" } 2518 "Radar" duration 2 -2519 "Demon Simulation" sync / 1[56]:[^:]*:Guardian:2B36:/ -2532 "Run Biblio" sync / 1[56]:[^:]*:Guardian:276F:/ -2539 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -2546 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -2553 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -2561 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -2570 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -2579 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +2519 "Demon Simulation" Ability { id: "2B36", source: "Guardian" } +2532 "Run Biblio" Ability { id: "276F", source: "Guardian" } +2539 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +2546 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +2553 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +2561 "Prey" Ability { id: "278A", source: "Guardian" } +2570 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +2579 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Dadaluma -2590 "Load Dada" sync / 1[56]:[^:]*:Guardian:(275C|2774):/ -2593 "Shockwave" sync / 1[56]:[^:]*:Guardian:2783:/ +2590 "Load Dada" Ability { id: ["275C", "2774"], source: "Guardian" } +2593 "Shockwave" Ability { id: "2783", source: "Guardian" } 2597 "Radar" duration 2 -2603 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ -2612 "Atomic Ray" sync / 1[56]:[^:]*:Guardian:278D:/ -2617 "Chakra Burst" sync / 1[56]:[^:]*:Guardian:2787:/ -2629 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -2635 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -2643 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -2648 "--sync--" sync / 14:[^:]*:Guardian:(275C|2773):/ jump 648 # Load/Skip starts casting, return to A +2603 "Missile Simulation" Ability { id: "2764", source: "Guardian" } +2612 "Atomic Ray" Ability { id: "278D", source: "Guardian" } +2617 "Chakra Burst" Ability { id: "2787", source: "Guardian" } +2629 "Prey" Ability { id: "278A", source: "Guardian" } +2635 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +2643 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +2648 "--sync--" StartsUsing { id: ["275C", "2773"], source: "Guardian" } jump 648 # Load/Skip starts casting, return to A # Should be unreachable, only here for visual continuity before/after jump 2653 "Load Air Force" @@ -135,28 +135,28 @@ hideall "--sync--" #### Divergent path, Version A2: Dadaluma->Biblio # Dadaluma -3509 "Load Dada" sync / 1[56]:[^:]*:Guardian:(275C|2773):/ -3512 "Shockwave" sync / 1[56]:[^:]*:Guardian:2783:/ +3509 "Load Dada" Ability { id: ["275C", "2773"], source: "Guardian" } +3512 "Shockwave" Ability { id: "2783", source: "Guardian" } 3516 "Radar" duration 2 -3522 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ -3531 "Atomic Ray" sync / 1[56]:[^:]*:Guardian:278D:/ -3536 "Chakra Burst" sync / 1[56]:[^:]*:Guardian:2787:/ -3548 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -3554 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -3562 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +3522 "Missile Simulation" Ability { id: "2764", source: "Guardian" } +3531 "Atomic Ray" Ability { id: "278D", source: "Guardian" } +3536 "Chakra Burst" Ability { id: "2787", source: "Guardian" } +3548 "Prey" Ability { id: "278A", source: "Guardian" } +3554 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +3562 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Bibliotaph -3572 "Load Biblio" sync / 1[56]:[^:]*:Guardian:(275C|2774):/ +3572 "Load Biblio" Ability { id: ["275C", "2774"], source: "Guardian" } 3581 "Radar" duration 2 -3582 "Demon Simulation" sync / 1[56]:[^:]*:Guardian:2B36:/ -3595 "Run Biblio" sync / 1[56]:[^:]*:Guardian:276F:/ -3602 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -3609 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -3616 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -3624 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -3633 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -3642 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -3648 "--sync--" sync / 14:[^:]*:Guardian:(275C|2773):/ jump 648 # Load/Skip starts casting, return to A +3582 "Demon Simulation" Ability { id: "2B36", source: "Guardian" } +3595 "Run Biblio" Ability { id: "276F", source: "Guardian" } +3602 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +3609 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +3616 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +3624 "Prey" Ability { id: "278A", source: "Guardian" } +3633 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +3642 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +3648 "--sync--" StartsUsing { id: ["275C", "2773"], source: "Guardian" } jump 648 # Load/Skip starts casting, return to A # Should be unreachable, only here for visual continuity before/after jump 3653 "Load Air Force" @@ -171,19 +171,19 @@ hideall "--sync--" ########################################################## # Air Force -653 "Load Air Force" sync / 1[56]:[^:]*:Guardian:(275C|2773):/ -656 "Diffractive Laser" sync / 1[56]:[^:]*:Guardian:2780:/ +653 "Load Air Force" Ability { id: ["275C", "2773"], source: "Guardian" } +656 "Diffractive Laser" Ability { id: "2780", source: "Guardian" } 659 "Radar" duration 2 -666 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -678 "Run Air Force" sync / 1[56]:[^:]*:Guardian:276F:/ -684 "Bomb Deployment" sync / 1[56]:[^:]*:Guardian:2762:/ +666 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +678 "Run Air Force" Ability { id: "276F", source: "Guardian" } +684 "Bomb Deployment" Ability { id: "2762", source: "Guardian" } 685 "Plane Laser" duration 2 -691 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ +691 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } 693 "Plane Laser" duration 2 -699 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +699 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } -700 "--sync--" sync / 14:[^:]*:Guardian:2791:/ window 100,100 -715 "Enrage" sync / 1[56]:[^:]*:Guardian:2791:/ jump 0 +700 "--sync--" StartsUsing { id: "2791", source: "Guardian" } window 100,100 +715 "Enrage" Ability { id: "2791", source: "Guardian" } jump 0 ###################################### ########## END of Version A ########## @@ -200,82 +200,82 @@ hideall "--sync--" # This is Version B of the encounter, with Dadaluma first -1052 "Shockwave" sync / 1[56]:[^:]*:Guardian:2783:/ -1059 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ -1074 "Chakra Burst" sync / 1[56]:[^:]*:Guardian:2787:/ -1077 "Run Dada (NW)" sync / 1[56]:[^:]*:Guardian:276F:/ -1090 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ +1052 "Shockwave" Ability { id: "2783", source: "Guardian" } +1059 "Missile Simulation" Ability { id: "2764", source: "Guardian" } +1074 "Chakra Burst" Ability { id: "2787", source: "Guardian" } +1077 "Run Dada (NW)" Ability { id: "276F", source: "Guardian" } +1090 "Magitek Ray" Ability { id: "2788", source: "Guardian" } 1095 "(H) Aura Cannon" 1105 "(DPS) Aura Cannon" -1106 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ -1118 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -1126 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ +1106 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } +1118 "Prey" Ability { id: "278A", source: "Guardian" } +1126 "Magitek Ray" Ability { id: "2788", source: "Guardian" } # Bibliotaph -1135 "Load Biblio / Skip Air Force" sync / 1[56]:[^:]*:Guardian:2773:/ -1145 "Demon Simulation" sync / 1[56]:[^:]*:Guardian:2B36:/ -1153 "Retrieve Air Force" sync / 1[56]:[^:]*:Guardian:2774:/ -1156 "Diffractive Laser" sync / 1[56]:[^:]*:Guardian:2780:/ -1164 "Copy Air Force" sync / 1[56]:[^:]*:Guardian:2775:/ -1171 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ +1135 "Load Biblio / Skip Air Force" Ability { id: "2773", source: "Guardian" } +1145 "Demon Simulation" Ability { id: "2B36", source: "Guardian" } +1153 "Retrieve Air Force" Ability { id: "2774", source: "Guardian" } +1156 "Diffractive Laser" Ability { id: "2780", source: "Guardian" } +1164 "Copy Air Force" Ability { id: "2775", source: "Guardian" } +1171 "Missile Simulation" Ability { id: "2764", source: "Guardian" } # Air Force -1181 "Run Air Force" sync / 1[56]:[^:]*:Guardian:276F:/ -1195 "Bomb Deployment" sync / 1[56]:[^:]*:Guardian:2762:/ +1181 "Run Air Force" Ability { id: "276F", source: "Guardian" } +1195 "Bomb Deployment" Ability { id: "2762", source: "Guardian" } 1196 "Plane Laser" duration 2 1204 "Plane Laser" duration 2 -1206 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ -1214 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ +1206 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } +1214 "Magitek Ray" Ability { id: "2788", source: "Guardian" } # Ultros -1222 "Load Ultros" sync / 1[56]:[^:]*:Guardian:275C:/ -1223 "Ink" sync / 1[56]:[^:]*:Guardian:277D:/ -1239 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -1248 "Tentacle Simulation" sync / 1[56]:[^:]*:Guardian:275E:/ +1222 "Load Ultros" Ability { id: "275C", source: "Guardian" } +1223 "Ink" Ability { id: "277D", source: "Guardian" } +1239 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +1248 "Tentacle Simulation" Ability { id: "275E", source: "Guardian" } 1252 "Tentacle" 1258 "Wallop" -1260 "Run Ultros (SE)" sync / 1[56]:[^:]*:Guardian:276F:/ +1260 "Run Ultros (SE)" Ability { id: "276F", source: "Guardian" } 1267 "Interrupt Stoneskin" duration 4 -1269 "--targetable--" sync / 1[56]:[^:]*:Guardian:2937:/ +1269 "--targetable--" Ability { id: "2937", source: "Guardian" } 1276 "Chain Cannon" duration 2 -1282 "Main Cannon" sync / 1[56]:[^:]*:Guardian:2790:/ -1285 "--untargetable--" sync / 1[56]:[^:]*:Guardian:2938:/ -1297 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +1282 "Main Cannon" Ability { id: "2790", source: "Guardian" } +1285 "--untargetable--" Ability { id: "2938", source: "Guardian" } +1297 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Virus -1305 "Virus" sync / 1[56]:[^:]*:Guardian:2773:/ +1305 "Virus" Ability { id: "2773", source: "Guardian" } 1308 "Aether Rot" -1318 "Magnetism/Repel" sync / 1[56]:[^:]*:Fire Control System:2779:/ # optional? -1331 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -1343 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -1355 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -1365 "Viral Weapon" sync / 1[56]:[^:]*:Guardian:277C:/ +1318 "Magnetism/Repel" Ability { id: "2779", source: "Fire Control System" } # optional? +1331 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +1343 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +1355 "Prey" Ability { id: "278A", source: "Guardian" } +1365 "Viral Weapon" Ability { id: "277C", source: "Guardian" } 1366 "Temporary Misdirection" duration 15 -1371 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -1375 "--untargetable--" sync / 1[56]:[^:]*:Guardian:2937:/ +1371 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +1375 "--untargetable--" Ability { id: "2937", source: "Guardian" } 1382 "Chain Cannon" duration 2 -1388 "Main Cannon" sync / 1[56]:[^:]*:Guardian:2790:/ +1388 "Main Cannon" Ability { id: "2790", source: "Guardian" } 1389 "Radar" duration 2 -1391 "--targetable--" sync / 1[56]:[^:]*:Guardian:2938:/ -1400 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ -1408 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +1391 "--targetable--" Ability { id: "2938", source: "Guardian" } +1400 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } +1408 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Air Force -1416 "Paste Air Force" sync / 1[56]:[^:]*:Guardian:2776:/ window 10,10 -1419 "Diffractive Laser" sync / 1[56]:[^:]*:Guardian:2780:/ +1416 "Paste Air Force" Ability { id: "2776", source: "Guardian" } window 10,10 +1419 "Diffractive Laser" Ability { id: "2780", source: "Guardian" } 1422 "Radar" duration 2 -1431 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -1441 "Run Air Force" sync / 1[56]:[^:]*:Guardian:276F:/ -1447 "Bomb Deployment" sync / 1[56]:[^:]*:Guardian:2762:/ +1431 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +1441 "Run Air Force" Ability { id: "276F", source: "Guardian" } +1447 "Bomb Deployment" Ability { id: "2762", source: "Guardian" } 1454 "Plane Laser" duration 2 1462 "Plane Laser" duration 2 -1462 "Arm And Hammer" sync / 1[56]:[^:]*:Guardian:2789:/ -1470 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +1462 "Arm And Hammer" Ability { id: "2789", source: "Guardian" } +1470 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Divergence point -1481 "Load/Skip?" sync / 1[56]:[^:]*:Guardian:(275C|2773):/ -1482 "--sync--" sync / 1A:5D4:Bibliotaph Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ jump 4482 # Bibliotaph buff, jump to B1 -1482 "--sync--" sync / 1A:5D3:Dadaluma Simulation:[^:]*:[^:]*:[^:]*:[^:]*:Guardian:/ jump 5482 # Dadaluma buff, jump to B2 +1481 "Load/Skip?" Ability { id: ["275C", "2773"], source: "Guardian" } +1482 "--sync--" GainsEffect { effectId: "5D4", effect: "Bibliotaph Simulation", target: "Guardian" } jump 4482 # Bibliotaph buff, jump to B1 +1482 "--sync--" GainsEffect { effectId: "5D3", effect: "Dadaluma Simulation", target: "Guardian" } jump 5482 # Dadaluma buff, jump to B2 1484 "Shockwave?" 1491 "Demon Simulation?" @@ -284,28 +284,28 @@ hideall "--sync--" ########################################################## # Bibliotaph -4481 "Load Biblio" sync / 1[56]:[^:]*:Guardian:(275C|2773):/ +4481 "Load Biblio" Ability { id: ["275C", "2773"], source: "Guardian" } 4490 "Radar" duration 2 -4491 "Demon Simulation" sync / 1[56]:[^:]*:Guardian:2B36:/ -4504 "Run Biblio" sync / 1[56]:[^:]*:Guardian:276F:/ -4511 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -4518 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -4525 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -4533 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -4542 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -4551 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +4491 "Demon Simulation" Ability { id: "2B36", source: "Guardian" } +4504 "Run Biblio" Ability { id: "276F", source: "Guardian" } +4511 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +4518 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +4525 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +4533 "Prey" Ability { id: "278A", source: "Guardian" } +4542 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +4551 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Dadaluma -4562 "Load Dada" sync / 1[56]:[^:]*:Guardian:(275C|2774):/ -4565 "Shockwave" sync / 1[56]:[^:]*:Guardian:2783:/ +4562 "Load Dada" Ability { id: ["275C", "2774"], source: "Guardian" } +4565 "Shockwave" Ability { id: "2783", source: "Guardian" } 4569 "Radar" duration 2 -4575 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ -4584 "Atomic Ray" sync / 1[56]:[^:]*:Guardian:278D:/ -4589 "Chakra Burst" sync / 1[56]:[^:]*:Guardian:2787:/ -4601 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -4607 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -4615 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -4620 "--sync--" sync / 14:[^:]*:Guardian:(275C|2773):/ jump 1620 # Load/Skip casting, return to B +4575 "Missile Simulation" Ability { id: "2764", source: "Guardian" } +4584 "Atomic Ray" Ability { id: "278D", source: "Guardian" } +4589 "Chakra Burst" Ability { id: "2787", source: "Guardian" } +4601 "Prey" Ability { id: "278A", source: "Guardian" } +4607 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +4615 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +4620 "--sync--" StartsUsing { id: ["275C", "2773"], source: "Guardian" } jump 1620 # Load/Skip casting, return to B # Should be unreachable, only here for visual continuity before/after jump 4625 "Load Ultros" @@ -319,28 +319,28 @@ hideall "--sync--" #### Divergent path, Version B2: Dadaluma -> Bibliotaph # Dadaluma -5481 "Load Dada" sync / 1[56]:[^:]*:Guardian:(275C|2773):/ -5484 "Shockwave" sync / 1[56]:[^:]*:Guardian:2783:/ +5481 "Load Dada" Ability { id: ["275C", "2773"], source: "Guardian" } +5484 "Shockwave" Ability { id: "2783", source: "Guardian" } 5488 "Radar" duration 2 -5494 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ -5503 "Atomic Ray" sync / 1[56]:[^:]*:Guardian:278D:/ -5508 "Chakra Burst" sync / 1[56]:[^:]*:Guardian:2787:/ -5520 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -5526 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -5534 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +5494 "Missile Simulation" Ability { id: "2764", source: "Guardian" } +5503 "Atomic Ray" Ability { id: "278D", source: "Guardian" } +5508 "Chakra Burst" Ability { id: "2787", source: "Guardian" } +5520 "Prey" Ability { id: "278A", source: "Guardian" } +5526 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +5534 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Bibliotaph -5544 "Load Biblio" sync / 1[56]:[^:]*:Guardian:(275C|2774):/ +5544 "Load Biblio" Ability { id: ["275C", "2774"], source: "Guardian" } 5553 "Radar" duration 2 -5554 "Demon Simulation" sync / 1[56]:[^:]*:Guardian:2B36:/ -5567 "Run Biblio" sync / 1[56]:[^:]*:Guardian:276F:/ -5574 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -5581 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -5588 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -5596 "Prey" sync / 1[56]:[^:]*:Guardian:278A:/ -5605 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -5614 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -5620 "--sync--" sync / 14:[^:]*:Guardian:(275C|2773):/ jump 1620 # Load/Skip casting, return to B +5554 "Demon Simulation" Ability { id: "2B36", source: "Guardian" } +5567 "Run Biblio" Ability { id: "276F", source: "Guardian" } +5574 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +5581 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +5588 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +5596 "Prey" Ability { id: "278A", source: "Guardian" } +5605 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +5614 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +5620 "--sync--" StartsUsing { id: ["275C", "2773"], source: "Guardian" } jump 1620 # Load/Skip casting, return to B # Should be unreachable, only here for visual continuity before/after jump 5625 "Load Ultros" @@ -356,24 +356,24 @@ hideall "--sync--" ########################################################## # Ultros -1625 "Load Ultros" sync / 1[56]:[^:]*:Guardian:(275C|2773):/ -1626 "Ink" sync / 1[56]:[^:]*:Guardian:277D:/ -1633 "Tentacle Simulation" sync / 1[56]:[^:]*:Guardian:275E:/ +1625 "Load Ultros" Ability { id: ["275C", "2773"], source: "Guardian" } +1626 "Ink" Ability { id: "277D", source: "Guardian" } +1633 "Tentacle Simulation" Ability { id: "275E", source: "Guardian" } 1637 "Tentacle" -1639 "Bomb Deployment" sync / 1[56]:[^:]*:Guardian:2762:/ +1639 "Bomb Deployment" Ability { id: "2762", source: "Guardian" } 1643 "Wallop" -1648 "Atomic Ray" sync / 1[56]:[^:]*:Guardian:278D:/ -1653 "Magitek Ray" sync / 1[56]:[^:]*:Guardian:2788:/ -1662 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ -1672 "Run Ultros (NE)" sync / 1[56]:[^:]*:Guardian:276F:/ -1678 "Missile Simulation" sync / 1[56]:[^:]*:Guardian:2764:/ +1648 "Atomic Ray" Ability { id: "278D", source: "Guardian" } +1653 "Magitek Ray" Ability { id: "2788", source: "Guardian" } +1662 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } +1672 "Run Ultros (NE)" Ability { id: "276F", source: "Guardian" } +1678 "Missile Simulation" Ability { id: "2764", source: "Guardian" } 1681 "Interrupt Stoneskin" duration 4 -1681 "--untargetable--" sync / 1[56]:[^:]*:Guardian:2937:/ +1681 "--untargetable--" Ability { id: "2937", source: "Guardian" } 1688 "Chain Cannon" duration 2 -1694 "Main Cannon" sync / 1[56]:[^:]*:Guardian:2790:/ -1697 "--targetable--" sync / 1[56]:[^:]*:Guardian:2938:/ -1706 "Diffractive Plasma" sync / 1[56]:[^:]*:Guardian:278B:/ +1694 "Main Cannon" Ability { id: "2790", source: "Guardian" } +1697 "--targetable--" Ability { id: "2938", source: "Guardian" } +1706 "Diffractive Plasma" Ability { id: "278B", source: "Guardian" } # Enrage -1711 "--sync--" sync / 14:[^:]*:Guardian:2791:/ window 100,100 -1726 "Enrage" sync / 1[56]:[^:]*:Guardian:2791:/ jump 0 +1711 "--sync--" StartsUsing { id: "2791", source: "Guardian" } window 100,100 +1726 "Enrage" Ability { id: "2791", source: "Guardian" } jump 0 diff --git a/ui/raidboss/data/04-sb/raid/o8n.txt b/ui/raidboss/data/04-sb/raid/o8n.txt index 0015c78deb..958659f202 100644 --- a/ui/raidboss/data/04-sb/raid/o8n.txt +++ b/ui/raidboss/data/04-sb/raid/o8n.txt @@ -3,77 +3,77 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -15 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:292E:/ window 16,3 -23 "Blizzard Blitz" sync / 1[56]:[^:]*:Kefka:291(4|6|8|9):/ -36 "Flagrant Fire" sync / 1[56]:[^:]*:Kefka:291F:/ -38 "Thrumming Thunder" sync / 1[56]:[^:]*:Kefka:291(B|D):/ -54 "Blizzard Blitz" sync / 1[56]:[^:]*:Kefka:291(4|6|8|9):/ -62 "Thrumming Thunder" sync / 1[56]:[^:]*:Kefka:291(B|D):/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +15 "Hyperdrive" Ability { id: "292E", source: "Kefka" } window 16,3 +23 "Blizzard Blitz" Ability { id: "291(4|6|8|9)", source: "Kefka" } +36 "Flagrant Fire" Ability { id: "291F", source: "Kefka" } +38 "Thrumming Thunder" Ability { id: "291(B|D)", source: "Kefka" } +54 "Blizzard Blitz" Ability { id: "291(4|6|8|9)", source: "Kefka" } +62 "Thrumming Thunder" Ability { id: "291(B|D)", source: "Kefka" } -82 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ -94 "Wave Cannon" sync / 1[56]:[^:]*:Graven Image:2928:/ -95 "Shockwave" sync / 1[56]:[^:]*:Graven Image:2927:/ -107 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:292D:/ -115 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:292E:/ -129 "Flagrant Fire" sync / 1[56]:[^:]*:Kefka:2920:/ -131 "Blizzard Blitz" sync / 1[56]:[^:]*:Kefka:291(4|6|8|9):/ -137 "Timely Teleport" sync / 1[56]:[^:]*:Kefka:2922:/ +82 "Graven Image" Ability { id: "2925", source: "Kefka" } +94 "Wave Cannon" Ability { id: "2928", source: "Graven Image" } +95 "Shockwave" Ability { id: "2927", source: "Graven Image" } +107 "Ultima Upsurge" Ability { id: "292D", source: "Kefka" } +115 "Hyperdrive" Ability { id: "292E", source: "Kefka" } +129 "Flagrant Fire" Ability { id: "2920", source: "Kefka" } +131 "Blizzard Blitz" Ability { id: "291(4|6|8|9)", source: "Kefka" } +137 "Timely Teleport" Ability { id: "2922", source: "Kefka" } 137 "--untargetable--" 140 "--targetable--" 140 "Aero/Ruin" duration 3 -148 "Aero Assault" sync / 1[56]:[^:]*:Kefka:2924:/ +148 "Aero Assault" Ability { id: "2924", source: "Kefka" } -160 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ -170 "Thrumming Thunder" sync / 1[56]:[^:]*:Kefka:291(B|D):/ -172 "Wave Cannon" sync / 1[56]:[^:]*:Graven Image:2928:/ -173 "Shockwave" sync / 1[56]:[^:]*:Graven Image:2927:/ -183 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:292D:/ -190 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:292E:/ +160 "Graven Image" Ability { id: "2925", source: "Kefka" } +170 "Thrumming Thunder" Ability { id: "291(B|D)", source: "Kefka" } +172 "Wave Cannon" Ability { id: "2928", source: "Graven Image" } +173 "Shockwave" Ability { id: "2927", source: "Graven Image" } +183 "Ultima Upsurge" Ability { id: "292D", source: "Kefka" } +190 "Hyperdrive" Ability { id: "292E", source: "Kefka" } -204 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ -210 "Half Arena" sync / 1[56]:[^:]*:Graven Image:(292A|2929):/ -218 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:292D:/ +204 "Graven Image" Ability { id: "2925", source: "Kefka" } +210 "Half Arena" Ability { id: ["292A", "2929"], source: "Graven Image" } +218 "Ultima Upsurge" Ability { id: "292D", source: "Kefka" } -228 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ -234 "Half Arena" sync / 1[56]:[^:]*:Graven Image:(292A|2929):/ -240 "Flagrant Fire" sync / 1[56]:[^:]*:Kefka:291F:/ -242 "Thrumming Thunder" sync / 1[56]:[^:]*:Kefka:291(B|D):/ -248 "Timely Teleport" sync / 1[56]:[^:]*:Kefka:2922:/ +228 "Graven Image" Ability { id: "2925", source: "Kefka" } +234 "Half Arena" Ability { id: ["292A", "2929"], source: "Graven Image" } +240 "Flagrant Fire" Ability { id: "291F", source: "Kefka" } +242 "Thrumming Thunder" Ability { id: "291(B|D)", source: "Kefka" } +248 "Timely Teleport" Ability { id: "2922", source: "Kefka" } 248 "--untargetable--" 251 "--targetable--" 251 "Aero/Ruin" duration 3 -268 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ -274 "Half Arena" sync / 1[56]:[^:]*:Graven Image:292(9|A):/ -275 "Thrumming Thunder" sync / 1[56]:[^:]*:Kefka:291(B|D):/ -282 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:292D:/ -289 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:292E:/ +268 "Graven Image" Ability { id: "2925", source: "Kefka" } +274 "Half Arena" Ability { id: "292(9|A)", source: "Graven Image" } +275 "Thrumming Thunder" Ability { id: "291(B|D)", source: "Kefka" } +282 "Ultima Upsurge" Ability { id: "292D", source: "Kefka" } +289 "Hyperdrive" Ability { id: "292E", source: "Kefka" } -302 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ -308 "Statue Gaze" sync / 1[56]:[^:]*:Graven Image:292C:/ -318 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:292D:/ -325 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:292D:/ +302 "Graven Image" Ability { id: "2925", source: "Kefka" } +308 "Statue Gaze" Ability { id: "292C", source: "Graven Image" } +318 "Ultima Upsurge" Ability { id: "292D", source: "Kefka" } +325 "Ultima Upsurge" Ability { id: "292D", source: "Kefka" } # loop here -335 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ -341 "Statue Gaze" sync / 1[56]:[^:]*:Graven Image:292(B|C):/ -342 "Thrumming Thunder" sync / 1[56]:[^:]*:Kefka:291(B|D):/ -348 "Timely Teleport" sync / 1[56]:[^:]*:Kefka:2922:/ +335 "Graven Image" Ability { id: "2925", source: "Kefka" } +341 "Statue Gaze" Ability { id: "292(B|C)", source: "Graven Image" } +342 "Thrumming Thunder" Ability { id: "291(B|D)", source: "Kefka" } +348 "Timely Teleport" Ability { id: "2922", source: "Kefka" } 348 "--untargetable--" 351 "--targetable--" 351 "Aero/Ruin" duration 3 -366 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:292E:/ +366 "Hyperdrive" Ability { id: "292E", source: "Kefka" } -374 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ -380 "Statue Gaze" sync / 1[56]:[^:]*:Graven Image:292(B|C):/ -386 "Flagrant Fire" sync / 1[56]:[^:]*:Kefka:291F:/ -388 "Blizzard Blitz" sync / 1[56]:[^:]*:Kefka:291(4|6|8|9):/ -401 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:292D:/ -408 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:292D:/ +374 "Graven Image" Ability { id: "2925", source: "Kefka" } +380 "Statue Gaze" Ability { id: "292(B|C)", source: "Graven Image" } +386 "Flagrant Fire" Ability { id: "291F", source: "Kefka" } +388 "Blizzard Blitz" Ability { id: "291(4|6|8|9)", source: "Kefka" } +401 "Ultima Upsurge" Ability { id: "292D", source: "Kefka" } +408 "Ultima Upsurge" Ability { id: "292D", source: "Kefka" } # end loop -418 "Graven Image" sync / 1[56]:[^:]*:Kefka:2925:/ jump 333 +418 "Graven Image" Ability { id: "2925", source: "Kefka" } jump 333 424 "Statue Gaze" 425 "Thrumming Thunder" 431 "Timely Teleport" diff --git a/ui/raidboss/data/04-sb/raid/o8s.txt b/ui/raidboss/data/04-sb/raid/o8s.txt index aa0fe3d86d..5e69762ec3 100644 --- a/ui/raidboss/data/04-sb/raid/o8s.txt +++ b/ui/raidboss/data/04-sb/raid/o8s.txt @@ -6,200 +6,200 @@ hideall "--sync--" # Use autos instead of InCombat lines to start timelines for door & final boss # as timeline resets out of combat. -4 "--sync--" sync / 1[56]:[^:]*:Kefka:28C2:/ window 5,0 -13 "Mana Charge" sync / 1[56]:[^:]*:Kefka:28D1:/ window 20,20 # drift 0.476 -19 "Flagrant Fire" #sync / 1[56]:[^:]*:Kefka:28CE:/ # drift 0.215 -28 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:28E8:/ -36 "Mana Release" sync / 1[56]:[^:]*:Kefka:28D2:/ -41 "Flagrant Fire" #sync / 1[56]:[^:]*:Kefka:2B32:/ -44 "Thrumming Thunder" #sync / 1[56]:[^:]*:Kefka:28CA:/ -50 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:28E7:/ +4 "--sync--" Ability { id: "28C2", source: "Kefka" } window 5,0 +13 "Mana Charge" Ability { id: "28D1", source: "Kefka" } window 20,20 # drift 0.476 +19 "Flagrant Fire" #Ability { id: "28CE", source: "Kefka" } # drift 0.215 +28 "Hyperdrive" Ability { id: "28E8", source: "Kefka" } +36 "Mana Release" Ability { id: "28D2", source: "Kefka" } +41 "Flagrant Fire" #Ability { id: "2B32", source: "Kefka" } +44 "Thrumming Thunder" #Ability { id: "28CA", source: "Kefka" } +50 "Ultima Upsurge" Ability { id: "28E7", source: "Kefka" } # First Graven -71 "Graven Image" sync / 1[56]:[^:]*:Kefka:28D7:/ -73 "--untargetable--" sync / 14:[^:]*:Kefka:2B34:/ -75 "Inexorable Will" sync / 1[56]:[^:]*:Graven Image:28DA:/ -76 "Wave Cannon" sync / 1[56]:[^:]*:Graven Image:28DC:/ -79 "Inexorable Will" sync / 1[56]:[^:]*:Graven Image:28DA:/ -81 "Wave Cannon" sync / 1[56]:[^:]*:Graven Image:28DC:/ -83 "Pulse Wave" sync / 1[56]:[^:]*:Graven Image:28DD:/ -83 "Inexorable Will" sync / 1[56]:[^:]*:Graven Image:28DA:/ -86 "Indomitable Will" sync / 1[56]:[^:]*:Graven Image:28D9:/ -87 "Timely Teleport" sync / 1[56]:[^:]*:Kefka:28D3:/ -90 "Revolting Ruin" sync / 1[56]:[^:]*:Kefka:28D5:/ -98 "Light Of Judgment" sync / 1[56]:[^:]*:Kefka:28D8:/ +71 "Graven Image" Ability { id: "28D7", source: "Kefka" } +73 "--untargetable--" StartsUsing { id: "2B34", source: "Kefka" } +75 "Inexorable Will" Ability { id: "28DA", source: "Graven Image" } +76 "Wave Cannon" Ability { id: "28DC", source: "Graven Image" } +79 "Inexorable Will" Ability { id: "28DA", source: "Graven Image" } +81 "Wave Cannon" Ability { id: "28DC", source: "Graven Image" } +83 "Pulse Wave" Ability { id: "28DD", source: "Graven Image" } +83 "Inexorable Will" Ability { id: "28DA", source: "Graven Image" } +86 "Indomitable Will" Ability { id: "28D9", source: "Graven Image" } +87 "Timely Teleport" Ability { id: "28D3", source: "Kefka" } +90 "Revolting Ruin" Ability { id: "28D5", source: "Kefka" } +98 "Light Of Judgment" Ability { id: "28D8", source: "Kefka" } # Second Graven -108 "Mana Charge" sync / 1[56]:[^:]*:Kefka:28D1:/ -115 "Thrumming Thunder" #sync / 1[56]:[^:]*:Kefka:28CA:/ -122 "Blizzard Blitz" #sync / 1[56]:[^:]*:Kefka:28C7:/ -130 "Graven Image" sync / 1[56]:[^:]*:Kefka:28D7:/ -139 "Mana Release" sync / 1[56]:[^:]*:Kefka:28D2:/ -140 "Shockwave" sync / 1[56]:[^:]*:Graven Image:28DB:/ -146 "Blizzard+Thunder" #sync / 1[56]:[^:]*:Kefka:2B2(E|F):/ -156 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:28E7:/ -163 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:28E8:/ +108 "Mana Charge" Ability { id: "28D1", source: "Kefka" } +115 "Thrumming Thunder" #Ability { id: "28CA", source: "Kefka" } +122 "Blizzard Blitz" #Ability { id: "28C7", source: "Kefka" } +130 "Graven Image" Ability { id: "28D7", source: "Kefka" } +139 "Mana Release" Ability { id: "28D2", source: "Kefka" } +140 "Shockwave" Ability { id: "28DB", source: "Graven Image" } +146 "Blizzard+Thunder" #Ability { id: "2B2(E|F)", source: "Kefka" } +156 "Ultima Upsurge" Ability { id: "28E7", source: "Kefka" } +163 "Hyperdrive" Ability { id: "28E8", source: "Kefka" } # Third Graven -178 "Graven Image" sync / 1[56]:[^:]*:Kefka:28D7:/ -181 "--untargetable--" sync / 14:[^:]*:Kefka:2B34:/ -183 "Gravitas" sync / 1[56]:[^:]*:Graven Image:28E0:/ -186 "Vitrophyre" sync / 1[56]:[^:]*:Graven Image:28E2:/ -190 "Half Arena" sync / 1[56]:[^:]*:Graven Image:28D(E|F):/ -193 "Gravitas" sync / 1[56]:[^:]*:Graven Image:28E0:/ +178 "Graven Image" Ability { id: "28D7", source: "Kefka" } +181 "--untargetable--" StartsUsing { id: "2B34", source: "Kefka" } +183 "Gravitas" Ability { id: "28E0", source: "Graven Image" } +186 "Vitrophyre" Ability { id: "28E2", source: "Graven Image" } +190 "Half Arena" Ability { id: "28D(E|F)", source: "Graven Image" } +193 "Gravitas" Ability { id: "28E0", source: "Graven Image" } 195 "--targetable--" -196 "Vitrophyre" sync / 1[56]:[^:]*:Graven Image:28E2:/ -200 "Aero Assault" sync / 1[56]:[^:]*:Kefka:28D6:/ -208 "Light Of Judgment" sync / 1[56]:[^:]*:Kefka:28D8:/ +196 "Vitrophyre" Ability { id: "28E2", source: "Graven Image" } +200 "Aero Assault" Ability { id: "28D6", source: "Kefka" } +208 "Light Of Judgment" Ability { id: "28D8", source: "Kefka" } # Fourth Graven -218 "Mana Charge" sync / 1[56]:[^:]*:Kefka:28D1:/ # drift 0.296 -224 "Flagrant Fire" #sync / 1[56]:[^:]*:Kefka:28CE:/ # drift 0.304 -232 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:28E7:/ -240 "Graven Image" sync / 1[56]:[^:]*:Kefka:28D7:/ # drift 0.203 -245 "Half Arena" sync / 1[56]:[^:]*:Graven Image:28D(E|F):/ -246 "Mana Release" sync / 1[56]:[^:]*:Kefka:28D2:/ # drift 0.302 -251 "Flagrant Fire" #sync / 1[56]:[^:]*:Kefka:2B32:/ -254 "Thrumming Thunder" #sync / 1[56]:[^:]*:Kefka:28CA:/ -261 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:28E7:/ -268 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:28E8:/ +218 "Mana Charge" Ability { id: "28D1", source: "Kefka" } # drift 0.296 +224 "Flagrant Fire" #Ability { id: "28CE", source: "Kefka" } # drift 0.304 +232 "Ultima Upsurge" Ability { id: "28E7", source: "Kefka" } +240 "Graven Image" Ability { id: "28D7", source: "Kefka" } # drift 0.203 +245 "Half Arena" Ability { id: "28D(E|F)", source: "Graven Image" } +246 "Mana Release" Ability { id: "28D2", source: "Kefka" } # drift 0.302 +251 "Flagrant Fire" #Ability { id: "2B32", source: "Kefka" } +254 "Thrumming Thunder" #Ability { id: "28CA", source: "Kefka" } +261 "Ultima Upsurge" Ability { id: "28E7", source: "Kefka" } +268 "Hyperdrive" Ability { id: "28E8", source: "Kefka" } # Fifth Graven -288 "Graven Image" sync / 1[56]:[^:]*:Kefka:28D7:/ # drift 0.259 -290 "--untargetable--" sync / 14:[^:]*:Kefka:2B34:/ -293 "Inexorable Will" sync / 1[56]:[^:]*:Graven Image:28DA:/ -293 "Statue Gaze" #sync / 1[56]:[^:]*:Graven Image:28E(3|4):/ -308 "Statue Gaze" sync / 1[56]:[^:]*:Graven Image:28E(3|4):/ # drift -0.387 -310 "Timely Teleport" sync / 1[56]:[^:]*:Kefka:28D3:/ -313 "Revolting Ruin" sync / 1[56]:[^:]*:Kefka:28D5:/ # drift 0.227 -322 "Light Of Judgment" sync / 1[56]:[^:]*:Kefka:28D8:/ -329 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:28E7:/ # drift 0.31 +288 "Graven Image" Ability { id: "28D7", source: "Kefka" } # drift 0.259 +290 "--untargetable--" StartsUsing { id: "2B34", source: "Kefka" } +293 "Inexorable Will" Ability { id: "28DA", source: "Graven Image" } +293 "Statue Gaze" #Ability { id: "28E(3|4)", source: "Graven Image" } +308 "Statue Gaze" Ability { id: "28E(3|4)", source: "Graven Image" } # drift -0.387 +310 "Timely Teleport" Ability { id: "28D3", source: "Kefka" } +313 "Revolting Ruin" Ability { id: "28D5", source: "Kefka" } # drift 0.227 +322 "Light Of Judgment" Ability { id: "28D8", source: "Kefka" } +329 "Ultima Upsurge" Ability { id: "28E7", source: "Kefka" } # drift 0.31 # Sixth Graven -336 "Mana Charge" sync / 1[56]:[^:]*:Kefka:28D1:/ # drift 0.256 -343 "Thrumming Thunder" #sync / 1[56]:[^:]*:Kefka:28CA:/ -350 "Blizzard Blitz" #sync / 1[56]:[^:]*:Kefka:28C7:/ -358 "Graven Image" sync / 1[56]:[^:]*:Kefka:28D7:/ -363 "Statue Gaze" sync / 1[56]:[^:]*:Graven Image:28E(3|4):/ -364 "Mana Release" sync / 1[56]:[^:]*:Kefka:28D2:/ -371 "Blizzard+Thunder" #sync / 1[56]:[^:]*:Kefka:2B2(E|F):/ -377 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:28E8:/ +336 "Mana Charge" Ability { id: "28D1", source: "Kefka" } # drift 0.256 +343 "Thrumming Thunder" #Ability { id: "28CA", source: "Kefka" } +350 "Blizzard Blitz" #Ability { id: "28C7", source: "Kefka" } +358 "Graven Image" Ability { id: "28D7", source: "Kefka" } +363 "Statue Gaze" Ability { id: "28E(3|4)", source: "Graven Image" } +364 "Mana Release" Ability { id: "28D2", source: "Kefka" } +371 "Blizzard+Thunder" #Ability { id: "2B2(E|F)", source: "Kefka" } +377 "Hyperdrive" Ability { id: "28E8", source: "Kefka" } # Enrage -384 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:28E7:/ # drift 0.285 -392 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:28E7:/ -400 "Ultima Upsurge" sync / 1[56]:[^:]*:Kefka:28E7:/ +384 "Ultima Upsurge" Ability { id: "28E7", source: "Kefka" } # drift 0.285 +392 "Ultima Upsurge" Ability { id: "28E7", source: "Kefka" } +400 "Ultima Upsurge" Ability { id: "28E7", source: "Kefka" } 404 "--untargetable--" -408 "Light Of Judgment" sync / 1[56]:[^:]*:Kefka:2A51:/ +408 "Light Of Judgment" Ability { id: "2A51", source: "Kefka" } ############# # GOD KEFKA # ############# 1000 "Start" -1001 "--sync--" sync / 1[56]:[^:]*:Kefka:28EC:/ window 1001,0 -1006 "--sync--" sync / 14:[^:]*:Kefka:28FA:/ window 10,0 -1010 "Heartless Angel" sync / 1[56]:[^:]*:Kefka:28FA:/ -1016 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1023 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:2912:/ -1032 "Celestriad" sync / 1[56]:[^:]*:Kefka:2907:/ -1034 "Thunder III" sync / 1[56]:[^:]*:Kefka:290A:/ -1035 "(DPS) Fire III" sync / 1[56]:[^:]*:Kefka:290B:/ -1041 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ +1001 "--sync--" Ability { id: "28EC", source: "Kefka" } window 1001,0 +1006 "--sync--" StartsUsing { id: "28FA", source: "Kefka" } window 10,0 +1010 "Heartless Angel" Ability { id: "28FA", source: "Kefka" } +1016 "Ultima" Ability { id: "2911", source: "Kefka" } +1023 "Hyperdrive" Ability { id: "2912", source: "Kefka" } +1032 "Celestriad" Ability { id: "2907", source: "Kefka" } +1034 "Thunder III" Ability { id: "290A", source: "Kefka" } +1035 "(DPS) Fire III" Ability { id: "290B", source: "Kefka" } +1041 "Ultima" Ability { id: "2911", source: "Kefka" } # Forsaken 1 -1048 "--sync--" sync / 14:[^:]*:Kefka:28E9:/ window 120,60 -1053 "Forsaken #1" sync / 1[56]:[^:]*:Kefka:28E9:/ -1064 "Heartless Archangel" sync / 1[56]:[^:]*:Kefka:28FB:/ -1067 "Soak" sync / 1[56]:[^:]*:Light Of Consecration:28EA:/ -1077 "2x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:2900:/ -1083 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1093 "Heartless Archangel" sync / 1[56]:[^:]*:Kefka:28FB:/ -1096 "Soak" sync / 1[56]:[^:]*:Light Of Consecration:28EA:/ +1048 "--sync--" StartsUsing { id: "28E9", source: "Kefka" } window 120,60 +1053 "Forsaken #1" Ability { id: "28E9", source: "Kefka" } +1064 "Heartless Archangel" Ability { id: "28FB", source: "Kefka" } +1067 "Soak" Ability { id: "28EA", source: "Light Of Consecration" } +1077 "2x Wings Of Destruction" Ability { id: "2900", source: "Kefka" } +1083 "Ultima" Ability { id: "2911", source: "Kefka" } +1093 "Heartless Archangel" Ability { id: "28FB", source: "Kefka" } +1096 "Soak" Ability { id: "28EA", source: "Light Of Consecration" } # Light 1 -1108 "Light Of Judgment" sync / 1[56]:[^:]*:Kefka:28ED:/ -1122 "Trine (small)" sync / 1[56]:[^:]*:Kefka:290D:/ -1129 "1x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:28FE:/ -1140 "2x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:2900:/ -1157 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1165 "Past/Future" sync / 1[56]:[^:]*:Kefka:28(EF|F1):/ -1175 "Ultimate Embrace" sync / 1[56]:[^:]*:Kefka:2910:/ -1182 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:2912:/ -1189 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ +1108 "Light Of Judgment" Ability { id: "28ED", source: "Kefka" } +1122 "Trine (small)" Ability { id: "290D", source: "Kefka" } +1129 "1x Wings Of Destruction" Ability { id: "28FE", source: "Kefka" } +1140 "2x Wings Of Destruction" Ability { id: "2900", source: "Kefka" } +1157 "Ultima" Ability { id: "2911", source: "Kefka" } +1165 "Past/Future" Ability { id: "28(EF|F1)", source: "Kefka" } +1175 "Ultimate Embrace" Ability { id: "2910", source: "Kefka" } +1182 "Hyperdrive" Ability { id: "2912", source: "Kefka" } +1189 "Ultima" Ability { id: "2911", source: "Kefka" } # Forsaken 2 -1201 "--sync--" sync / 14:[^:]*:Kefka:28E9:/ window 120,60 -1206 "Forsaken #2" sync / 1[56]:[^:]*:Kefka:28E9:/ -1214 "Starstrafe" sync / 1[56]:[^:]*:Kefka:2902:/ -1221 "Past/Future End" sync / 1[56]:[^:]*:Kefka:28F(5|8):/ -1228 "All Things Ending" sync / 1[56]:[^:]*:Kefka:28F6:/ -1233 "Meteor" sync / 1[56]:[^:]*:Kefka:2905:/ +1201 "--sync--" StartsUsing { id: "28E9", source: "Kefka" } window 120,60 +1206 "Forsaken #2" Ability { id: "28E9", source: "Kefka" } +1214 "Starstrafe" Ability { id: "2902", source: "Kefka" } +1221 "Past/Future End" Ability { id: "28F(5|8)", source: "Kefka" } +1228 "All Things Ending" Ability { id: "28F6", source: "Kefka" } +1233 "Meteor" Ability { id: "2905", source: "Kefka" } # Light 2 -1240 "Light Of Judgment" sync / 1[56]:[^:]*:Kefka:28ED:/ -1256 "Celestriad" sync / 1[56]:[^:]*:Kefka:2907:/ -1258 "Thunder III" sync / 1[56]:[^:]*:Kefka:290A:/ -1259 "(DPS) Fire III" sync / 1[56]:[^:]*:Kefka:290B:/ -1264 "1x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:28FF:/ -1271 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1287 "Trine (big)" sync / 1[56]:[^:]*:Kefka:290D:/ -1297 "Past/Future" sync / 1[56]:[^:]*:Kefka:28(EF|F1):/ -1307 "2x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:2900:/ -1313 "Ultimate Embrace" sync / 1[56]:[^:]*:Kefka:2910:/ -1320 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:2912:/ -1328 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ +1240 "Light Of Judgment" Ability { id: "28ED", source: "Kefka" } +1256 "Celestriad" Ability { id: "2907", source: "Kefka" } +1258 "Thunder III" Ability { id: "290A", source: "Kefka" } +1259 "(DPS) Fire III" Ability { id: "290B", source: "Kefka" } +1264 "1x Wings Of Destruction" Ability { id: "28FF", source: "Kefka" } +1271 "Ultima" Ability { id: "2911", source: "Kefka" } +1287 "Trine (big)" Ability { id: "290D", source: "Kefka" } +1297 "Past/Future" Ability { id: "28(EF|F1)", source: "Kefka" } +1307 "2x Wings Of Destruction" Ability { id: "2900", source: "Kefka" } +1313 "Ultimate Embrace" Ability { id: "2910", source: "Kefka" } +1320 "Hyperdrive" Ability { id: "2912", source: "Kefka" } +1328 "Ultima" Ability { id: "2911", source: "Kefka" } # Forsaken 3 -1340 "--sync--" sync / 14:[^:]*:Kefka:28E9:/ window 120,60 -1345 "Forsaken #3" sync / 1[56]:[^:]*:Kefka:28E9:/ -1358 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1359 "Knockback Tethers" sync / 1[56]:[^:]*:Graven Image:28DD:/ -1362 "Soak" sync / 1[56]:[^:]*:Light Of Consecration:28EA:/ -1364 "Ultimate Embrace" sync / 1[56]:[^:]*:Kefka:2910:/ -1371 "Sleep/Confuse Tethers" sync / 1[56]:[^:]*:Graven Image:28E(5|6):/ -1377 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1386 "Heartless Archangel" sync / 1[56]:[^:]*:Kefka:28FB:/ -1389 "Soak" sync / 1[56]:[^:]*:Light Of Consecration:28EA:/ -1399 "2x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:2900:/ +1340 "--sync--" StartsUsing { id: "28E9", source: "Kefka" } window 120,60 +1345 "Forsaken #3" Ability { id: "28E9", source: "Kefka" } +1358 "Ultima" Ability { id: "2911", source: "Kefka" } +1359 "Knockback Tethers" Ability { id: "28DD", source: "Graven Image" } +1362 "Soak" Ability { id: "28EA", source: "Light Of Consecration" } +1364 "Ultimate Embrace" Ability { id: "2910", source: "Kefka" } +1371 "Sleep/Confuse Tethers" Ability { id: "28E(5|6)", source: "Graven Image" } +1377 "Ultima" Ability { id: "2911", source: "Kefka" } +1386 "Heartless Archangel" Ability { id: "28FB", source: "Kefka" } +1389 "Soak" Ability { id: "28EA", source: "Light Of Consecration" } +1399 "2x Wings Of Destruction" Ability { id: "2900", source: "Kefka" } 1400 "Soak" -1405 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1412 "Statue Half Cleave" sync / 1[56]:[^:]*:Graven Image:28D(E|F):/ -1413 "1x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:28FF:/ +1405 "Ultima" Ability { id: "2911", source: "Kefka" } +1412 "Statue Half Cleave" Ability { id: "28D(E|F)", source: "Graven Image" } +1413 "1x Wings Of Destruction" Ability { id: "28FF", source: "Kefka" } # Light 3 -1421 "Light Of Judgment" sync / 1[56]:[^:]*:Kefka:28ED:/ -1435 "Trine (small)" sync / 1[56]:[^:]*:Kefka:290D:/ -1442 "1x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:28FF:/ -1453 "2x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:2900:/ -1459 "Ultimate Embrace" sync / 1[56]:[^:]*:Kefka:2910:/ -1475 "Trine (big)" sync / 1[56]:[^:]*:Kefka:290D:/ -1485 "Past/Future" sync / 1[56]:[^:]*:Kefka:28(EF|F1):/ -1496 "Hyperdrive" sync / 1[56]:[^:]*:Kefka:2912:/ -1504 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1512 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ +1421 "Light Of Judgment" Ability { id: "28ED", source: "Kefka" } +1435 "Trine (small)" Ability { id: "290D", source: "Kefka" } +1442 "1x Wings Of Destruction" Ability { id: "28FF", source: "Kefka" } +1453 "2x Wings Of Destruction" Ability { id: "2900", source: "Kefka" } +1459 "Ultimate Embrace" Ability { id: "2910", source: "Kefka" } +1475 "Trine (big)" Ability { id: "290D", source: "Kefka" } +1485 "Past/Future" Ability { id: "28(EF|F1)", source: "Kefka" } +1496 "Hyperdrive" Ability { id: "2912", source: "Kefka" } +1504 "Ultima" Ability { id: "2911", source: "Kefka" } +1512 "Ultima" Ability { id: "2911", source: "Kefka" } # Forsaken 4 (repeats #3) -1525 "--sync--" sync / 14:[^:]*:Kefka:28E9:/ window 120,60 -1530 "Forsaken #4" sync / 1[56]:[^:]*:Kefka:28E9:/ -1543 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1544 "Knockback Tethers" sync / 1[56]:[^:]*:Graven Image:28DD:/ -1547 "Soak" sync / 1[56]:[^:]*:Light Of Consecration:28EA:/ -1549 "Ultimate Embrace" sync / 1[56]:[^:]*:Kefka:2910:/ -1556 "Sleep/Confuse Tethers" sync / 1[56]:[^:]*:Graven Image:28E(5|6):/ -1562 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ -1571 "Heartless Archangel" sync / 1[56]:[^:]*:Kefka:28FB:/ +1525 "--sync--" StartsUsing { id: "28E9", source: "Kefka" } window 120,60 +1530 "Forsaken #4" Ability { id: "28E9", source: "Kefka" } +1543 "Ultima" Ability { id: "2911", source: "Kefka" } +1544 "Knockback Tethers" Ability { id: "28DD", source: "Graven Image" } +1547 "Soak" Ability { id: "28EA", source: "Light Of Consecration" } +1549 "Ultimate Embrace" Ability { id: "2910", source: "Kefka" } +1556 "Sleep/Confuse Tethers" Ability { id: "28E(5|6)", source: "Graven Image" } +1562 "Ultima" Ability { id: "2911", source: "Kefka" } +1571 "Heartless Archangel" Ability { id: "28FB", source: "Kefka" } 1574 "Soak" -1584 "2x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:2900:/ +1584 "2x Wings Of Destruction" Ability { id: "2900", source: "Kefka" } 1586 "Soak" -1590 "Ultima" sync / 1[56]:[^:]*:Kefka:2911:/ +1590 "Ultima" Ability { id: "2911", source: "Kefka" } 1595 "Statue Half Cleave" -1596 "1x Wings Of Destruction" sync / 1[56]:[^:]*:Kefka:28FF:/ +1596 "1x Wings Of Destruction" Ability { id: "28FF", source: "Kefka" } # Enrage -1602 "Ultima" sync / 1[56]:[^:]*:Kefka:283D:/ -1610 "Ultima" sync / 1[56]:[^:]*:Kefka:283D:/ -1618 "Ultima" sync / 1[56]:[^:]*:Kefka:283D:/ -1626 "Ultima" sync / 1[56]:[^:]*:Kefka:283D:/ -1630 "--sync--" sync / 14:[^:]*:Kefka:2A52:/ -1640 "Enrage" sync / 1[56]:[^:]*:Kefka:2A52:/ jump 0 +1602 "Ultima" Ability { id: "283D", source: "Kefka" } +1610 "Ultima" Ability { id: "283D", source: "Kefka" } +1618 "Ultima" Ability { id: "283D", source: "Kefka" } +1626 "Ultima" Ability { id: "283D", source: "Kefka" } +1630 "--sync--" StartsUsing { id: "2A52", source: "Kefka" } +1640 "Enrage" Ability { id: "2A52", source: "Kefka" } jump 0 diff --git a/ui/raidboss/data/04-sb/raid/o9n.ts b/ui/raidboss/data/04-sb/raid/o9n.ts index c5d4e8c284..280be61b61 100644 --- a/ui/raidboss/data/04-sb/raid/o9n.ts +++ b/ui/raidboss/data/04-sb/raid/o9n.ts @@ -164,6 +164,7 @@ const triggerSet: TriggerSet = { timelineReplace: [ { 'locale': 'de', + 'missingTranslations': true, 'replaceSync': { 'Chaos': 'Chaos', 'YOU DARE!': 'Wie könnt ihr es wagen?!', @@ -188,6 +189,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', + 'missingTranslations': true, 'replaceSync': { 'Chaos': 'Chaos', 'YOU DARE!': '... Mon cristal !? Impossible !', @@ -212,6 +214,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ja', + 'missingTranslations': true, 'replaceSync': { 'Chaos': 'カオス', 'YOU DARE!': 'まさか……黒水晶を……!?', @@ -236,6 +239,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'cn', + 'missingTranslations': true, 'replaceSync': { 'Chaos': '卡奥斯', 'YOU DARE!': '居然……把黑水晶给……', @@ -260,6 +264,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ko', + 'missingTranslations': true, 'replaceSync': { 'Chaos': '카오스', 'YOU DARE!': '네 이노오오옴', diff --git a/ui/raidboss/data/04-sb/raid/o9n.txt b/ui/raidboss/data/04-sb/raid/o9n.txt index 609ac2075b..d79f2d2d99 100644 --- a/ui/raidboss/data/04-sb/raid/o9n.txt +++ b/ui/raidboss/data/04-sb/raid/o9n.txt @@ -1,86 +1,86 @@ # Omega - Alphascape V1.0 - O9N # -r v7g6rkfjhNGDzLn8 -rf 2 -ii 314E 3202 3161 3164 3157 316E 315F 3162 3163 3204 3160 3203 3158 3164 3205 3148 3153 -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 hideall "--Reset--" hideall "--sync--" # Start branch 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 # This buster at slightly different times depending on the window. -15.0 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ window 15,10 -25.7 "Long/Lat Implosion?" sync / 1[56]:[^:]*:Chaos:315[12]:/ window 30,10 jump 1025.7 -28.0 "Damning Edict?" sync / 1[56]:[^:]*:Chaos:3150:/ window 30,10 jump 2028.0 +15.0 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } window 15,10 +25.7 "Long/Lat Implosion?" Ability { id: "315[12]", source: "Chaos" } window 30,10 jump 1025.7 +28.0 "Damning Edict?" Ability { id: "3150", source: "Chaos" } window 30,10 jump 2028.0 ## Fire -> Air start -1014.4 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ -1025.7 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:315[12]:/ -1040.0 "Blaze" sync / 1[56]:[^:]*:Chaos:3165:/ -1040.0 "--sync--" sync / 1[56]:[^:]*:Chaos:319A:/ -1050.0 "(T/H) Stray Flames" sync / 1[56]:[^:]*:Chaos:316B:/ -1056.2 "Chaosphere" sync / 1[56]:[^:]*:Chaos:3155:/ -1056.2 "(DPS) Stray Flames" sync / 1[56]:[^:]*:Chaos:316B:/ +1014.4 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } +1025.7 "Long/Lat Implosion" Ability { id: "315[12]", source: "Chaos" } +1040.0 "Blaze" Ability { id: "3165", source: "Chaos" } +1040.0 "--sync--" Ability { id: "319A", source: "Chaos" } +1050.0 "(T/H) Stray Flames" Ability { id: "316B", source: "Chaos" } +1056.2 "Chaosphere" Ability { id: "3155", source: "Chaos" } +1056.2 "(DPS) Stray Flames" Ability { id: "316B", source: "Chaos" } 1064.3 "Knock" 1070.9 "Knock" -1080.0 "Big Bang" sync / 1[56]:[^:]*:Chaos:3159:/ -1089.5 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:315B:/ -1111.7 "Cyclone" sync / 1[56]:[^:]*:Chaos:3167:/ -1111.7 "--sync--" sync / 1[56]:[^:]*:Chaos:319C:/ -1127.1 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3150:/ -1140.3 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ -1152.4 "Chaosphere" sync / 1[56]:[^:]*:Chaos:3156:/ -1152.5 "Cyclone" sync / 1[56]:[^:]*:Chaos:316D:/ -1160.5 "Knock" sync / 1[56]:[^:]*:Chaos:315E:/ -1166.6 "Big Bang" sync / 1[56]:[^:]*:Chaos:315A:/ -1178.8 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:315C:/ +1080.0 "Big Bang" Ability { id: "3159", source: "Chaos" } +1089.5 "Fiendish Orbs" Ability { id: "315B", source: "Chaos" } +1111.7 "Cyclone" Ability { id: "3167", source: "Chaos" } +1111.7 "--sync--" Ability { id: "319C", source: "Chaos" } +1127.1 "Damning Edict" Ability { id: "3150", source: "Chaos" } +1140.3 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } +1152.4 "Chaosphere" Ability { id: "3156", source: "Chaos" } +1152.5 "Cyclone" Ability { id: "316D", source: "Chaos" } +1160.5 "Knock" Ability { id: "315E", source: "Chaos" } +1166.6 "Big Bang" Ability { id: "315A", source: "Chaos" } +1178.8 "Fiendish Orbs" Ability { id: "315C", source: "Chaos" } ## Fire->Water Midphase -1204.1 "Bowels of Agony" sync / 1[56]:[^:]*:Chaos:3169:/ +1204.1 "Bowels of Agony" Ability { id: "3169", source: "Chaos" } 1208.1 "--untargetable--" -1211.6 "--sync--" sync / 1[56]:[^:]*:Chaos:3215:/ -1218.3 "Stray Flames" sync / 1[56]:[^:]*:Chaos:316B:/ -1224.2 "Stray Spray" sync / 1[56]:[^:]*:Chaos:316C:/ -1500.0 "--sync--" sync / 00:0044:Chaos:The crystal\.\.\.destroyed\!\?/ window 500,10 -1503.0 "Soul of Chaos" sync / 1[56]:[^:]*:Chaos:316A:/ window 500,10 +1211.6 "--sync--" Ability { id: "3215", source: "Chaos" } +1218.3 "Stray Flames" Ability { id: "316B", source: "Chaos" } +1224.2 "Stray Spray" Ability { id: "316C", source: "Chaos" } +1500.0 "--sync--" GameLog { code: "0044", name: "Chaos", line: "The crystal\.\.\.destroyed\!\?.*?" } window 500,10 +1503.0 "Soul of Chaos" Ability { id: "316A", source: "Chaos" } window 500,10 1513.1 "--targetable--" # fake window into Water->Earth loop -1530.0 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ window 50,50 jump 3015.7 +1530.0 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } window 50,50 jump 3015.7 ## Water -> Earth start -2015.7 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ -2028.0 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3150:/ -2041.1 "Tsunami" sync / 1[56]:[^:]*:Chaos:3166:/ -2041.1 "--sync--" sync / 1[56]:[^:]*:Chaos:319B:/ -2050.0 "(T/H) Stray Spray" sync / 1[56]:[^:]*:Chaos:316C:/ -2056.2 "(DPS) Stray Spray" sync / 1[56]:[^:]*:Chaos:316C:/ -2057.3 "Chaosphere" sync / 1[56]:[^:]*:Chaos:3156:/ -2065.4 "Knock" sync / 1[56]:[^:]*:Chaos:315E:/ -2076.6 "Big Bang" sync / 1[56]:[^:]*:Chaos:315A:/ -2088.8 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:315C:/ - -2111.1 "Earthquake" sync / 1[56]:[^:]*:Chaos:3168:/ -2111.1 "--sync--" sync / 1[56]:[^:]*:Chaos:319D:/ -2125.4 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:315[12]:/ -2139.6 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ -2151.8 "Earthquake" sync / 1[56]:[^:]*:Chaos:3418:/ -2151.8 "Chaosphere" sync / 1[56]:[^:]*:Chaos:3155:/ -2159.9 "Knock" sync / 1[56]:[^:]*:Chaos:315D:/ -2166.6 "Knock" sync / 1[56]:[^:]*:Chaos:315D:/ -2170.8 "Big Bang" sync / 1[56]:[^:]*:Chaos:3159:/ -2180.3 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:315B:/ - -2205.3 "Bowels of Agony" sync / 1[56]:[^:]*:Chaos:3169:/ -2212.8 "--sync--" sync / 1[56]:[^:]*:Chaos:3215:/ -2219.5 "Stray Flames" sync / 1[56]:[^:]*:Chaos:316B:/ -2225.4 "Stray Spray" sync / 1[56]:[^:]*:Chaos:316C:/ -2500.0 "--sync--" sync / 00:0044:Chaos:The crystal\.\.\.destroyed\!\?/ window 500,10 -2503.0 "Soul of Chaos" sync / 1[56]:[^:]*:Chaos:316A:/ window 500,10 +2015.7 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } +2028.0 "Damning Edict" Ability { id: "3150", source: "Chaos" } +2041.1 "Tsunami" Ability { id: "3166", source: "Chaos" } +2041.1 "--sync--" Ability { id: "319B", source: "Chaos" } +2050.0 "(T/H) Stray Spray" Ability { id: "316C", source: "Chaos" } +2056.2 "(DPS) Stray Spray" Ability { id: "316C", source: "Chaos" } +2057.3 "Chaosphere" Ability { id: "3156", source: "Chaos" } +2065.4 "Knock" Ability { id: "315E", source: "Chaos" } +2076.6 "Big Bang" Ability { id: "315A", source: "Chaos" } +2088.8 "Fiendish Orbs" Ability { id: "315C", source: "Chaos" } + +2111.1 "Earthquake" Ability { id: "3168", source: "Chaos" } +2111.1 "--sync--" Ability { id: "319D", source: "Chaos" } +2125.4 "Long/Lat Implosion" Ability { id: "315[12]", source: "Chaos" } +2139.6 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } +2151.8 "Earthquake" Ability { id: "3418", source: "Chaos" } +2151.8 "Chaosphere" Ability { id: "3155", source: "Chaos" } +2159.9 "Knock" Ability { id: "315D", source: "Chaos" } +2166.6 "Knock" Ability { id: "315D", source: "Chaos" } +2170.8 "Big Bang" Ability { id: "3159", source: "Chaos" } +2180.3 "Fiendish Orbs" Ability { id: "315B", source: "Chaos" } + +2205.3 "Bowels of Agony" Ability { id: "3169", source: "Chaos" } +2212.8 "--sync--" Ability { id: "3215", source: "Chaos" } +2219.5 "Stray Flames" Ability { id: "316B", source: "Chaos" } +2225.4 "Stray Spray" Ability { id: "316C", source: "Chaos" } +2500.0 "--sync--" GameLog { code: "0044", name: "Chaos", line: "The crystal\.\.\.destroyed\!\?.*?" } window 500,10 +2503.0 "Soul of Chaos" Ability { id: "316A", source: "Chaos" } window 500,10 # fake window into Fire->Air loop -2529.5 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ window 50,50 jump 3212.6 +2529.5 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } window 50,50 jump 3212.6 #### Water -> Earth -> Fire -> Air loop @@ -89,52 +89,52 @@ hideall "--sync--" 2983.7 "Fiendish Orbs" ## Water -3015.7 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ -3028.0 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3150:/ -3041.1 "Tsunami" sync / 1[56]:[^:]*:Chaos:3166:/ -3041.1 "--sync--" sync / 1[56]:[^:]*:Chaos:319B:/ -3050.0 "(T/H) Stray Spray" sync / 1[56]:[^:]*:Chaos:316C:/ -3056.2 "(DPS) Stray Spray" sync / 1[56]:[^:]*:Chaos:316C:/ -3057.3 "Chaosphere" sync / 1[56]:[^:]*:Chaos:3156:/ -3065.4 "Knock" sync / 1[56]:[^:]*:Chaos:315E:/ -3076.6 "Big Bang" sync / 1[56]:[^:]*:Chaos:315A:/ -3088.8 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:315C:/ +3015.7 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } +3028.0 "Damning Edict" Ability { id: "3150", source: "Chaos" } +3041.1 "Tsunami" Ability { id: "3166", source: "Chaos" } +3041.1 "--sync--" Ability { id: "319B", source: "Chaos" } +3050.0 "(T/H) Stray Spray" Ability { id: "316C", source: "Chaos" } +3056.2 "(DPS) Stray Spray" Ability { id: "316C", source: "Chaos" } +3057.3 "Chaosphere" Ability { id: "3156", source: "Chaos" } +3065.4 "Knock" Ability { id: "315E", source: "Chaos" } +3076.6 "Big Bang" Ability { id: "315A", source: "Chaos" } +3088.8 "Fiendish Orbs" Ability { id: "315C", source: "Chaos" } ## Earth -3111.1 "Earthquake" sync / 1[56]:[^:]*:Chaos:3168:/ -3111.1 "--sync--" sync / 1[56]:[^:]*:Chaos:319D:/ -3125.4 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:315[12]:/ -3139.6 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ -3151.8 "Earthquake" sync / 1[56]:[^:]*:Chaos:3418:/ -3151.8 "Chaosphere" sync / 1[56]:[^:]*:Chaos:3155:/ -3159.9 "Knock" sync / 1[56]:[^:]*:Chaos:315D:/ -3166.6 "Knock" sync / 1[56]:[^:]*:Chaos:315D:/ -3170.8 "Big Bang" sync / 1[56]:[^:]*:Chaos:3159:/ -3180.3 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:315B:/ +3111.1 "Earthquake" Ability { id: "3168", source: "Chaos" } +3111.1 "--sync--" Ability { id: "319D", source: "Chaos" } +3125.4 "Long/Lat Implosion" Ability { id: "315[12]", source: "Chaos" } +3139.6 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } +3151.8 "Earthquake" Ability { id: "3418", source: "Chaos" } +3151.8 "Chaosphere" Ability { id: "3155", source: "Chaos" } +3159.9 "Knock" Ability { id: "315D", source: "Chaos" } +3166.6 "Knock" Ability { id: "315D", source: "Chaos" } +3170.8 "Big Bang" Ability { id: "3159", source: "Chaos" } +3180.3 "Fiendish Orbs" Ability { id: "315B", source: "Chaos" } ## Fire -3212.6 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ -3223.9 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:315[12]:/ -3238.2 "Blaze" sync / 1[56]:[^:]*:Chaos:3165:/ -3238.2 "--sync--" sync / 1[56]:[^:]*:Chaos:319A:/ -3248.2 "(T/H) Stray Flames" sync / 1[56]:[^:]*:Chaos:316B:/ -3254.4 "Chaosphere" sync / 1[56]:[^:]*:Chaos:3155:/ -3254.4 "(DPS) Stray Flames" sync / 1[56]:[^:]*:Chaos:316B:/ +3212.6 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } +3223.9 "Long/Lat Implosion" Ability { id: "315[12]", source: "Chaos" } +3238.2 "Blaze" Ability { id: "3165", source: "Chaos" } +3238.2 "--sync--" Ability { id: "319A", source: "Chaos" } +3248.2 "(T/H) Stray Flames" Ability { id: "316B", source: "Chaos" } +3254.4 "Chaosphere" Ability { id: "3155", source: "Chaos" } +3254.4 "(DPS) Stray Flames" Ability { id: "316B", source: "Chaos" } 3262.5 "Knock" 3269.1 "Knock" -3278.2 "Big Bang" sync / 1[56]:[^:]*:Chaos:3159:/ -3287.7 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:315B:/ +3278.2 "Big Bang" Ability { id: "3159", source: "Chaos" } +3287.7 "Fiendish Orbs" Ability { id: "315B", source: "Chaos" } ## Air -3309.9 "Cyclone" sync / 1[56]:[^:]*:Chaos:3167:/ -3309.9 "--sync--" sync / 1[56]:[^:]*:Chaos:319C:/ -3325.3 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3150:/ -3338.5 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:314F:/ -3350.6 "Chaosphere" sync / 1[56]:[^:]*:Chaos:3156:/ -3350.7 "Cyclone" sync / 1[56]:[^:]*:Chaos:316D:/ -3358.7 "Knock" sync / 1[56]:[^:]*:Chaos:315E:/ -3364.8 "Big Bang" sync / 1[56]:[^:]*:Chaos:315A:/ -3377.0 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:315C:/ window 50,50 jump 2983.7 +3309.9 "Cyclone" Ability { id: "3167", source: "Chaos" } +3309.9 "--sync--" Ability { id: "319C", source: "Chaos" } +3325.3 "Damning Edict" Ability { id: "3150", source: "Chaos" } +3338.5 "Chaotic Dispersion" Ability { id: "314F", source: "Chaos" } +3350.6 "Chaosphere" Ability { id: "3156", source: "Chaos" } +3350.7 "Cyclone" Ability { id: "316D", source: "Chaos" } +3358.7 "Knock" Ability { id: "315E", source: "Chaos" } +3364.8 "Big Bang" Ability { id: "315A", source: "Chaos" } +3377.0 "Fiendish Orbs" Ability { id: "315C", source: "Chaos" } window 50,50 jump 2983.7 # fake lookahead window into water 3409.0 "Chaotic Dispersion" diff --git a/ui/raidboss/data/04-sb/raid/o9s.txt b/ui/raidboss/data/04-sb/raid/o9s.txt index 4dea2e8678..aee81eaaac 100644 --- a/ui/raidboss/data/04-sb/raid/o9s.txt +++ b/ui/raidboss/data/04-sb/raid/o9s.txt @@ -5,11 +5,11 @@ hideall "--Reset--" hideall "--sync--" 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 ## Branch between Fire/Water paths -10.7 "--sync--" sync / 14:[^:]*:Chaos:317(2|3):/ window 12,12 jump 2010.1 # Long/lat means water path -10.7 "--sync--" sync / 14:[^:]*:Chaos:3171:/ window 12,12 jump 1010.7 # Edict means fire path +10.7 "--sync--" StartsUsing { id: "317(2|3)", source: "Chaos" } window 12,12 jump 2010.1 # Long/lat means water path +10.7 "--sync--" StartsUsing { id: "3171", source: "Chaos" } window 12,12 jump 1010.7 # Edict means fire path # Fake water path 15.7 "Long/Lat Implosion?" @@ -26,69 +26,69 @@ hideall "--sync--" ############# # Fire phase -1016.7 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3171:/ -1029.9 "Blaze" sync / 1[56]:[^:]*:Chaos:3206:/ -1041.7 "(T/H) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -1047.6 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:317(2|3):/ -1055.8 "(DPS) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -1066.8 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:3170:/ -1079.1 "Blaze" sync / 1[56]:[^:]*:Chaos:3206:/ # drift 0.028 -1090.9 "(T/H) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -1098.8 "Knock" sync / 1[56]:[^:]*:Chaos:317E:/ -1104.9 "(DPS) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -1109.8 "Big Bang" sync / 1[56]:[^:]*:Chaos:3180:/ -1118.6 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:317C:/ +1016.7 "Damning Edict" Ability { id: "3171", source: "Chaos" } +1029.9 "Blaze" Ability { id: "3206", source: "Chaos" } +1041.7 "(T/H) Stray Flames" Ability { id: "318C", source: "Chaos" } +1047.6 "Long/Lat Implosion" Ability { id: "317(2|3)", source: "Chaos" } +1055.8 "(DPS) Stray Flames" Ability { id: "318C", source: "Chaos" } +1066.8 "Chaotic Dispersion" Ability { id: "3170", source: "Chaos" } +1079.1 "Blaze" Ability { id: "3206", source: "Chaos" } # drift 0.028 +1090.9 "(T/H) Stray Flames" Ability { id: "318C", source: "Chaos" } +1098.8 "Knock" Ability { id: "317E", source: "Chaos" } +1104.9 "(DPS) Stray Flames" Ability { id: "318C", source: "Chaos" } +1109.8 "Big Bang" Ability { id: "3180", source: "Chaos" } +1118.6 "Fiendish Orbs" Ability { id: "317C", source: "Chaos" } # Wind phase -1141.0 "Cyclone" sync / 1[56]:[^:]*:Chaos:3208:/ -1153.2 "Umbra Smash" sync / 1[56]:[^:]*:Chaos:3175:/ -1160.7 "Cyclone" sync / 1[56]:[^:]*:Chaos:318F:/ -1163.4 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3171:/ -1181.6 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:3170:/ -1194.0 "Cyclone" sync / 1[56]:[^:]*:Chaos:3208:/ -1207.2 "Knock" sync / 1[56]:[^:]*:Chaos:317F:/ -1214.2 "Big Bang" sync / 1[56]:[^:]*:Chaos:3181:/ -1225.6 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:317D:/ +1141.0 "Cyclone" Ability { id: "3208", source: "Chaos" } +1153.2 "Umbra Smash" Ability { id: "3175", source: "Chaos" } +1160.7 "Cyclone" Ability { id: "318F", source: "Chaos" } +1163.4 "Damning Edict" Ability { id: "3171", source: "Chaos" } +1181.6 "Chaotic Dispersion" Ability { id: "3170", source: "Chaos" } +1194.0 "Cyclone" Ability { id: "3208", source: "Chaos" } +1207.2 "Knock" Ability { id: "317F", source: "Chaos" } +1214.2 "Big Bang" Ability { id: "3181", source: "Chaos" } +1225.6 "Fiendish Orbs" Ability { id: "317D", source: "Chaos" } # Orb phase -1251.0 "Bowels of Agony" sync / 1[56]:[^:]*:Chaos:318A:/ # drift 0.04 -1265.1 "(DPS) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -1268.1 "(T/H) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -1293.1 "Soul of Chaos" sync / 1[56]:[^:]*:Chaos:318B:/ window 500,500 +1251.0 "Bowels of Agony" Ability { id: "318A", source: "Chaos" } # drift 0.04 +1265.1 "(DPS) Stray Flames" Ability { id: "318C", source: "Chaos" } +1268.1 "(T/H) Stray Spray" Ability { id: "318D", source: "Chaos" } +1293.1 "Soul of Chaos" Ability { id: "318B", source: "Chaos" } window 500,500 # Water phase -1320.1 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:317(2|3):/ -1334.5 "Tsunami" sync / 1[56]:[^:]*:Chaos:3207:/ -1343.6 "Umbra Smash" sync / 1[56]:[^:]*:Chaos:3175:/ -1345.1 "(T/H) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -1352.1 "(DPS) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -1353.8 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3171:/ -1371.9 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:3170:/ -1384.3 "Tsunami" sync / 1[56]:[^:]*:Chaos:3207:/ -1395.0 "(T/H) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -1395.4 "Knock" sync / 1[56]:[^:]*:Chaos:317F:/ -1402.0 "(DPS) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -1402.3 "Big Bang" sync / 1[56]:[^:]*:Chaos:3181:/ -1413.7 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:317D:/ +1320.1 "Long/Lat Implosion" Ability { id: "317(2|3)", source: "Chaos" } +1334.5 "Tsunami" Ability { id: "3207", source: "Chaos" } +1343.6 "Umbra Smash" Ability { id: "3175", source: "Chaos" } +1345.1 "(T/H) Stray Spray" Ability { id: "318D", source: "Chaos" } +1352.1 "(DPS) Stray Spray" Ability { id: "318D", source: "Chaos" } +1353.8 "Damning Edict" Ability { id: "3171", source: "Chaos" } +1371.9 "Chaotic Dispersion" Ability { id: "3170", source: "Chaos" } +1384.3 "Tsunami" Ability { id: "3207", source: "Chaos" } +1395.0 "(T/H) Stray Spray" Ability { id: "318D", source: "Chaos" } +1395.4 "Knock" Ability { id: "317F", source: "Chaos" } +1402.0 "(DPS) Stray Spray" Ability { id: "318D", source: "Chaos" } +1402.3 "Big Bang" Ability { id: "3181", source: "Chaos" } +1413.7 "Fiendish Orbs" Ability { id: "317D", source: "Chaos" } # Earth phase -1436.0 "Earthquake" sync / 1[56]:[^:]*:Chaos:3209:/ -1446.0 "Earthquake" sync / 1[56]:[^:]*:Chaos:3190:/ -1449.6 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:317(2|3):/ -1468.8 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:3170:/ -1491.1 "Earthquake" sync / 1[56]:[^:]*:Chaos:3190:/ -1494.2 "Knock" sync / 1[56]:[^:]*:Chaos:317E:/ -1499.1 "Big Bang" sync / 1[56]:[^:]*:Chaos:3180:/ -1507.9 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:317C:/ +1436.0 "Earthquake" Ability { id: "3209", source: "Chaos" } +1446.0 "Earthquake" Ability { id: "3190", source: "Chaos" } +1449.6 "Long/Lat Implosion" Ability { id: "317(2|3)", source: "Chaos" } +1468.8 "Chaotic Dispersion" Ability { id: "3170", source: "Chaos" } +1491.1 "Earthquake" Ability { id: "3190", source: "Chaos" } +1494.2 "Knock" Ability { id: "317E", source: "Chaos" } +1499.1 "Big Bang" Ability { id: "3180", source: "Chaos" } +1507.9 "Fiendish Orbs" Ability { id: "317C", source: "Chaos" } # Enrage phase -1538.4 "Blaze" sync / 1[56]:[^:]*:Chaos:3206:/ -1546.1 "(ALL) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -1551.4 "Tsunami" sync / 1[56]:[^:]*:Chaos:3207:/ -1558.0 "(ALL) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -1564.6 "Cyclone" sync / 1[56]:[^:]*:Chaos:3208:/ +1538.4 "Blaze" Ability { id: "3206", source: "Chaos" } +1546.1 "(ALL) Stray Flames" Ability { id: "318C", source: "Chaos" } +1551.4 "Tsunami" Ability { id: "3207", source: "Chaos" } +1558.0 "(ALL) Stray Spray" Ability { id: "318D", source: "Chaos" } +1564.6 "Cyclone" Ability { id: "3208", source: "Chaos" } 1571.3 "Stray Gusts" -1577.6 "Earthquake" sync / 1[56]:[^:]*:Chaos:3209:/ +1577.6 "Earthquake" Ability { id: "3209", source: "Chaos" } 1585.9 "Stray Earth" ############## @@ -96,68 +96,68 @@ hideall "--sync--" ############## # Water phase -2015.7 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:317(2|3):/ -2029.7 "Tsunami" sync / 1[56]:[^:]*:Chaos:3207:/ -2038.7 "Umbra Smash" sync / 1[56]:[^:]*:Chaos:3175:/ -2040.2 "(T/H) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -2048.8 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3171:/ -2066.8 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:3170:/ -2078.8 "Tsunami" sync / 1[56]:[^:]*:Chaos:3207:/ -2096.3 "(T/H) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -2089.6 "Knock" sync / 1[56]:[^:]*:Chaos:317F:/ -2096.3 "(DPS) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -2096.5 "Big Bang" sync / 1[56]:[^:]*:Chaos:3181:/ -2107.8 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:317D:/ +2015.7 "Long/Lat Implosion" Ability { id: "317(2|3)", source: "Chaos" } +2029.7 "Tsunami" Ability { id: "3207", source: "Chaos" } +2038.7 "Umbra Smash" Ability { id: "3175", source: "Chaos" } +2040.2 "(T/H) Stray Spray" Ability { id: "318D", source: "Chaos" } +2048.8 "Damning Edict" Ability { id: "3171", source: "Chaos" } +2066.8 "Chaotic Dispersion" Ability { id: "3170", source: "Chaos" } +2078.8 "Tsunami" Ability { id: "3207", source: "Chaos" } +2096.3 "(T/H) Stray Spray" Ability { id: "318D", source: "Chaos" } +2089.6 "Knock" Ability { id: "317F", source: "Chaos" } +2096.3 "(DPS) Stray Spray" Ability { id: "318D", source: "Chaos" } +2096.5 "Big Bang" Ability { id: "3181", source: "Chaos" } +2107.8 "Fiendish Orbs" Ability { id: "317D", source: "Chaos" } # Earth phase -2129.8 "Earthquake" sync / 1[56]:[^:]*:Chaos:3209:/ -2139.8 "Earthquake" sync / 1[56]:[^:]*:Chaos:3190:/ -2143.3 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:317(2|3):/ -2162.3 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:3170:/ -2174.3 "Earthquake" sync / 1[56]:[^:]*:Chaos:3209:/ -2184.3 "Earthquake" sync / 1[56]:[^:]*:Chaos:3190:/ -2187.2 "Knock" sync / 1[56]:[^:]*:Chaos:317E:/ -2192.0 "Big Bang" sync / 1[56]:[^:]*:Chaos:3180:/ -2200.6 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:317C:/ +2129.8 "Earthquake" Ability { id: "3209", source: "Chaos" } +2139.8 "Earthquake" Ability { id: "3190", source: "Chaos" } +2143.3 "Long/Lat Implosion" Ability { id: "317(2|3)", source: "Chaos" } +2162.3 "Chaotic Dispersion" Ability { id: "3170", source: "Chaos" } +2174.3 "Earthquake" Ability { id: "3209", source: "Chaos" } +2184.3 "Earthquake" Ability { id: "3190", source: "Chaos" } +2187.2 "Knock" Ability { id: "317E", source: "Chaos" } +2192.0 "Big Bang" Ability { id: "3180", source: "Chaos" } +2200.6 "Fiendish Orbs" Ability { id: "317C", source: "Chaos" } # Orb phase -2225.6 "Bowels of Agony" sync / 1[56]:[^:]*:Chaos:318A:/ # drift 0.038 -2239.6 "(DPS) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -2242.6 "(T/H) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -2267.6 "Soul of Chaos" sync / 1[56]:[^:]*:Chaos:318B:/ window 500,500 +2225.6 "Bowels of Agony" Ability { id: "318A", source: "Chaos" } # drift 0.038 +2239.6 "(DPS) Stray Flames" Ability { id: "318C", source: "Chaos" } +2242.6 "(T/H) Stray Spray" Ability { id: "318D", source: "Chaos" } +2267.6 "Soul of Chaos" Ability { id: "318B", source: "Chaos" } window 500,500 # Fire phase -2295.3 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3171:/ -2308.3 "Blaze" sync / 1[56]:[^:]*:Chaos:3206:/ -2320.0 "(T/H) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -2325.8 "Long/Lat Implosion" sync / 1[56]:[^:]*:Chaos:317(2|3):/ -2334.0 "(DPS) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -2344.8 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:3170:/ -2356.8 "Blaze" sync / 1[56]:[^:]*:Chaos:3206:/ -2368.5 "(T/H) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -2376.2 "Knock" sync / 1[56]:[^:]*:Chaos:317E:/ -2382.5 "(DPS) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -2387.0 "Big Bang" sync / 1[56]:[^:]*:Chaos:3180:/ -2395.6 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:317C:/ +2295.3 "Damning Edict" Ability { id: "3171", source: "Chaos" } +2308.3 "Blaze" Ability { id: "3206", source: "Chaos" } +2320.0 "(T/H) Stray Flames" Ability { id: "318C", source: "Chaos" } +2325.8 "Long/Lat Implosion" Ability { id: "317(2|3)", source: "Chaos" } +2334.0 "(DPS) Stray Flames" Ability { id: "318C", source: "Chaos" } +2344.8 "Chaotic Dispersion" Ability { id: "3170", source: "Chaos" } +2356.8 "Blaze" Ability { id: "3206", source: "Chaos" } +2368.5 "(T/H) Stray Flames" Ability { id: "318C", source: "Chaos" } +2376.2 "Knock" Ability { id: "317E", source: "Chaos" } +2382.5 "(DPS) Stray Flames" Ability { id: "318C", source: "Chaos" } +2387.0 "Big Bang" Ability { id: "3180", source: "Chaos" } +2395.6 "Fiendish Orbs" Ability { id: "317C", source: "Chaos" } # Wind phase -2417.6 "Cyclone" sync / 1[56]:[^:]*:Chaos:3208:/ -2429.6 "Umbra Smash" sync / 1[56]:[^:]*:Chaos:3175:/ -2437.1 "Cyclone" sync / 1[56]:[^:]*:Chaos:318F:/ -2439.7 "Damning Edict" sync / 1[56]:[^:]*:Chaos:3171:/ -2457.7 "Chaotic Dispersion" sync / 1[56]:[^:]*:Chaos:3170:/ -2469.7 "Cyclone" sync / 1[56]:[^:]*:Chaos:3208:/ -2482.6 "Knock" sync / 1[56]:[^:]*:Chaos:317F:/ -2482.7 "Cyclone" sync / 1[56]:[^:]*:Chaos:318F:/ -2489.4 "Big Bang" sync / 1[56]:[^:]*:Chaos:3181:/ -2500.7 "Fiendish Orbs" sync / 1[56]:[^:]*:Chaos:317D:/ +2417.6 "Cyclone" Ability { id: "3208", source: "Chaos" } +2429.6 "Umbra Smash" Ability { id: "3175", source: "Chaos" } +2437.1 "Cyclone" Ability { id: "318F", source: "Chaos" } +2439.7 "Damning Edict" Ability { id: "3171", source: "Chaos" } +2457.7 "Chaotic Dispersion" Ability { id: "3170", source: "Chaos" } +2469.7 "Cyclone" Ability { id: "3208", source: "Chaos" } +2482.6 "Knock" Ability { id: "317F", source: "Chaos" } +2482.7 "Cyclone" Ability { id: "318F", source: "Chaos" } +2489.4 "Big Bang" Ability { id: "3181", source: "Chaos" } +2500.7 "Fiendish Orbs" Ability { id: "317D", source: "Chaos" } # Enrage phase -2530.8 "Blaze" sync / 1[56]:[^:]*:Chaos:3206:/ -2538.5 "(ALL) Stray Flames" sync / 1[56]:[^:]*:Chaos:318C:/ -2543.8 "Tsunami" sync / 1[56]:[^:]*:Chaos:3207:/ -2550.4 "(ALL) Stray Spray" sync / 1[56]:[^:]*:Chaos:318D:/ -2556.9 "Cyclone" sync / 1[56]:[^:]*:Chaos:3208:/ +2530.8 "Blaze" Ability { id: "3206", source: "Chaos" } +2538.5 "(ALL) Stray Flames" Ability { id: "318C", source: "Chaos" } +2543.8 "Tsunami" Ability { id: "3207", source: "Chaos" } +2550.4 "(ALL) Stray Spray" Ability { id: "318D", source: "Chaos" } +2556.9 "Cyclone" Ability { id: "3208", source: "Chaos" } 2563.5 "Stray Gusts" -2569.7 "Earthquake" sync / 1[56]:[^:]*:Chaos:3209:/ +2569.7 "Earthquake" Ability { id: "3209", source: "Chaos" } 2578.0 "Stray Earth" diff --git a/ui/raidboss/data/04-sb/trial/byakko-ex.txt b/ui/raidboss/data/04-sb/trial/byakko-ex.txt index 290d345c83..1bc0e10f84 100644 --- a/ui/raidboss/data/04-sb/trial/byakko-ex.txt +++ b/ui/raidboss/data/04-sb/trial/byakko-ex.txt @@ -9,137 +9,137 @@ hideall "--Reset--" hideall "Answer On High" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.9 "Storm Pulse" sync / 1[56]:[^:]*:Byakko:27DC:/ window 11,5 -17.1 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:27DA:/ -27.3 "State of Shock 1" sync / 1[56]:[^:]*:Byakko:27E0:/ -28.5 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -34.7 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ -37.5 "State of Shock 2" sync / 1[56]:[^:]*:Byakko:2756:/ -38.5 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -44.7 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.9 "Storm Pulse" Ability { id: "27DC", source: "Byakko" } window 11,5 +17.1 "Heavenly Strike" Ability { id: "27DA", source: "Byakko" } +27.3 "State of Shock 1" Ability { id: "27E0", source: "Byakko" } +28.5 "Clutch" Ability { id: "27E1", source: "Byakko" } +34.7 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } +37.5 "State of Shock 2" Ability { id: "2756", source: "Byakko" } +38.5 "Clutch" Ability { id: "27E1", source: "Byakko" } +44.7 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } -55.5 "--middle--" sync / 1[56]:[^:]*:Byakko:2757:/ -59.6 "Unrelenting Anguish" sync / 1[56]:[^:]*:Byakko:27ED:/ -65.8 "Storm Pulse" sync / 1[56]:[^:]*:Byakko:27DC:/ -68.0 "Ominous Wind" sync / 1[56]:[^:]*:Byakko:27EB:/ -77.4 "Fire and Lightning" sync / 1[56]:[^:]*:Byakko:27D9:/ -85.7 "--leap north--" sync / 1[56]:[^:]*:Byakko:2757:/ -87.3 "Dance Of The Incomplete" sync / 1[56]:[^:]*:Byakko:25D1:/ +55.5 "--middle--" Ability { id: "2757", source: "Byakko" } +59.6 "Unrelenting Anguish" Ability { id: "27ED", source: "Byakko" } +65.8 "Storm Pulse" Ability { id: "27DC", source: "Byakko" } +68.0 "Ominous Wind" Ability { id: "27EB", source: "Byakko" } +77.4 "Fire and Lightning" Ability { id: "27D9", source: "Byakko" } +85.7 "--leap north--" Ability { id: "2757", source: "Byakko" } +87.3 "Dance Of The Incomplete" Ability { id: "25D1", source: "Byakko" } 92.2 "--Hakutei Add--" -103.4 "Storm Pulse" sync / 1[56]:[^:]*:Byakko:27DC:/ -103.4 "Steel Claw" sync / 1[56]:[^:]*:Hakutei:27DF:/ -109.6 "Steel Claw" sync / 1[56]:[^:]*:Hakutei:27DF:/ -113.7 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:27DA:/ +103.4 "Storm Pulse" Ability { id: "27DC", source: "Byakko" } +103.4 "Steel Claw" Ability { id: "27DF", source: "Hakutei" } +109.6 "Steel Claw" Ability { id: "27DF", source: "Hakutei" } +113.7 "Heavenly Strike" Ability { id: "27DA", source: "Byakko" } 116.6 "--tiger untargetable--" -122.4 "White Herald" sync / 1[56]:[^:]*:Hakutei:27FA:/ +122.4 "White Herald" Ability { id: "27FA", source: "Hakutei" } 124.4 "--tiger targetable--" -124.8 "Distant Clap" sync / 1[56]:[^:]*:Byakko:27DD:/ -128.6 "Fire and Lightning" sync / 1[56]:[^:]*:Hakutei:27DE:/ -133.0 "Storm Pulse" sync / 1[56]:[^:]*:Byakko:27DC:/ +124.8 "Distant Clap" Ability { id: "27DD", source: "Byakko" } +128.6 "Fire and Lightning" Ability { id: "27DE", source: "Hakutei" } +133.0 "Storm Pulse" Ability { id: "27DC", source: "Byakko" } 135.1 "--untargetable--" -135.2 "--sync--" sync / 1[56]:[^:]*:Hakutei:265E:/ -136.6 "The Voice Of Thunder" sync / 1[56]:[^:]*:Hakutei:27F7:/ -159.8 "The Roar Of Thunder" sync / 1[56]:[^:]*:Hakutei:27F9:/ +135.2 "--sync--" Ability { id: "265E", source: "Hakutei" } +136.6 "The Voice Of Thunder" Ability { id: "27F7", source: "Hakutei" } +159.8 "The Roar Of Thunder" Ability { id: "27F9", source: "Hakutei" } 162.9 "--untargetable--" ### Phase 2: zzz x infinity -191.1 "--sync--" sync / 1[56]:[^:]*:Byakko:27EE:/ window 200,5 -197.2 "Sweep the Leg" sync / 1[56]:[^:]*:Byakko:27F3:/ -208.1 "Imperial Guard" sync / 1[56]:[^:]*:Hakutei:27F1:/ -208.4 "--sync--" sync / 1[56]:[^:]*:Byakko:27EE:/ -220.2 "Imperial Guard" sync / 1[56]:[^:]*:Hakutei:27F1:/ -222.6 "--sync--" sync / 1[56]:[^:]*:Byakko:27EE:/ -228.7 "Sweep the Leg" sync / 1[56]:[^:]*:Byakko:27F3:/ -237.3 "Imperial Guard" sync / 1[56]:[^:]*:Hakutei:27F1:/ +191.1 "--sync--" Ability { id: "27EE", source: "Byakko" } window 200,5 +197.2 "Sweep the Leg" Ability { id: "27F3", source: "Byakko" } +208.1 "Imperial Guard" Ability { id: "27F1", source: "Hakutei" } +208.4 "--sync--" Ability { id: "27EE", source: "Byakko" } +220.2 "Imperial Guard" Ability { id: "27F1", source: "Hakutei" } +222.6 "--sync--" Ability { id: "27EE", source: "Byakko" } +228.7 "Sweep the Leg" Ability { id: "27F3", source: "Byakko" } +237.3 "Imperial Guard" Ability { id: "27F1", source: "Hakutei" } ### Phase 3: More Bubbles -250.1 "--sync--" sync / 1[56]:[^:]*:Byakko:2A2A:/ -265.1 "Fell Swoop" sync / 1[56]:[^:]*:Byakko:27FB:/ window 300,10 -284.4 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:27DA:/ -290.5 "Answer On High" sync / 1[56]:[^:]*:Byakko:27E4:/ -295.6 "Hundredfold Havoc" sync / 1[56]:[^:]*:Byakko:27E5:/ duration 3.2 -296.6 "State of Shock 1" sync / 1[56]:[^:]*:Byakko:27E0:/ -297.7 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -298.6 "Hundredfold Havoc" sync / 1[56]:[^:]*:Byakko:27E5:/ duration 3.2 -304.0 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ -306.9 "State of Shock 2" sync / 1[56]:[^:]*:Byakko:2756:/ -307.9 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -314.1 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ -320.8 "Sweep the Leg" sync / 1[56]:[^:]*:Byakko:27DB:/ +250.1 "--sync--" Ability { id: "2A2A", source: "Byakko" } +265.1 "Fell Swoop" Ability { id: "27FB", source: "Byakko" } window 300,10 +284.4 "Heavenly Strike" Ability { id: "27DA", source: "Byakko" } +290.5 "Answer On High" Ability { id: "27E4", source: "Byakko" } +295.6 "Hundredfold Havoc" Ability { id: "27E5", source: "Byakko" } duration 3.2 +296.6 "State of Shock 1" Ability { id: "27E0", source: "Byakko" } +297.7 "Clutch" Ability { id: "27E1", source: "Byakko" } +298.6 "Hundredfold Havoc" Ability { id: "27E5", source: "Byakko" } duration 3.2 +304.0 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } +306.9 "State of Shock 2" Ability { id: "2756", source: "Byakko" } +307.9 "Clutch" Ability { id: "27E1", source: "Byakko" } +314.1 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } +320.8 "Sweep the Leg" Ability { id: "27DB", source: "Byakko" } -330.9 "--sync--" sync / 1[56]:[^:]*:Byakko:2757:/ window 10,10 -335.2 "Unrelenting Anguish" sync / 1[56]:[^:]*:Byakko:27ED:/ -341.4 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:27DC:/ -345.6 "Bombogenesis" sync / 1[56]:[^:]*:Byakko:27E7:/ -351.6 "Ominous Wind" sync / 1[56]:[^:]*:Byakko:27EB:/ -353.6 "Gale Force" sync / 1[56]:[^:]*:Byakko:27E8:/ -361.0 "Fire and Lightning" sync / 1[56]:[^:]*:Byakko:27D9:/ -364.1 "--north--" sync / 1[56]:[^:]*:Byakko:2757:/ -369.9 "Fire and Lightning" sync / 1[56]:[^:]*:Byakko:27D9:/ +330.9 "--sync--" Ability { id: "2757", source: "Byakko" } window 10,10 +335.2 "Unrelenting Anguish" Ability { id: "27ED", source: "Byakko" } +341.4 "Storm Pulse x2" Ability { id: "27DC", source: "Byakko" } +345.6 "Bombogenesis" Ability { id: "27E7", source: "Byakko" } +351.6 "Ominous Wind" Ability { id: "27EB", source: "Byakko" } +353.6 "Gale Force" Ability { id: "27E8", source: "Byakko" } +361.0 "Fire and Lightning" Ability { id: "27D9", source: "Byakko" } +364.1 "--north--" Ability { id: "2757", source: "Byakko" } +369.9 "Fire and Lightning" Ability { id: "27D9", source: "Byakko" } -373.1 "--sync--" sync / 1[56]:[^:]*:Byakko:2757:/ -374.5 "Dance Of The Incomplete" sync / 1[56]:[^:]*:Byakko:25D1:/ +373.1 "--sync--" Ability { id: "2757", source: "Byakko" } +374.5 "Dance Of The Incomplete" Ability { id: "25D1", source: "Byakko" } 379.5 "--tiger targetable--" 388.8 "--tiger untargetable--" -394.5 "White Herald" sync / 1[56]:[^:]*:Hakutei:27FA:/ +394.5 "White Herald" Ability { id: "27FA", source: "Hakutei" } 396.5 "--tiger targetable--" -396.8 "Distant Clap" sync / 1[56]:[^:]*:Byakko:27DD:/ -400.7 "Fire and Lightning" sync / 1[56]:[^:]*:Hakutei:27DE:/ -405.0 "Distant Clap" sync / 1[56]:[^:]*:Byakko:27DD:/ -408.9 "Fire and Lightning" sync / 1[56]:[^:]*:Hakutei:27DE:/ -416.1 "Steel Claw" sync / 1[56]:[^:]*:Hakutei:27DF:/ -416.4 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:27DA:/ -422.4 "--sync--" sync / 1[56]:[^:]*:Hakutei:265E:/ -423.9 "The Voice Of Thunder" sync / 1[56]:[^:]*:Hakutei:27F7:/ -436.5 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:27DC:/ -447.1 "The Roar Of Thunder" sync / 1[56]:[^:]*:Hakutei:27F9:/ -450.6 "--sync--" sync / 1[56]:[^:]*:Hakutei:29E5:/ +396.8 "Distant Clap" Ability { id: "27DD", source: "Byakko" } +400.7 "Fire and Lightning" Ability { id: "27DE", source: "Hakutei" } +405.0 "Distant Clap" Ability { id: "27DD", source: "Byakko" } +408.9 "Fire and Lightning" Ability { id: "27DE", source: "Hakutei" } +416.1 "Steel Claw" Ability { id: "27DF", source: "Hakutei" } +416.4 "Heavenly Strike" Ability { id: "27DA", source: "Byakko" } +422.4 "--sync--" Ability { id: "265E", source: "Hakutei" } +423.9 "The Voice Of Thunder" Ability { id: "27F7", source: "Hakutei" } +436.5 "Storm Pulse x2" Ability { id: "27DC", source: "Byakko" } +447.1 "The Roar Of Thunder" Ability { id: "27F9", source: "Hakutei" } +450.6 "--sync--" Ability { id: "29E5", source: "Hakutei" } -451.5 "--sync--" sync / 1[56]:[^:]*:Byakko:29E4:/ -453.5 "--sync--" sync / 1[56]:[^:]*:Byakko:2757:/ -459.3 "Fire and Lightning" sync / 1[56]:[^:]*:Byakko:27D9:/ -474.5 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:27DC:/ -484.8 "Bombogenesis" sync / 1[56]:[^:]*:Byakko:27E7:/ -487.0 "Answer On High" sync / 1[56]:[^:]*:Byakko:27E4:/ -492.0 "Hundredfold Havoc" sync / 1[56]:[^:]*:Byakko:27E5:/ duration 3.2 -492.9 "Gale Force" sync / 1[56]:[^:]*:Byakko:27E8:/ -495.1 "Hundredfold Havoc" sync / 1[56]:[^:]*:Byakko:27E5:/ duration 3.2 -495.8 "State of Shock 1" sync / 1[56]:[^:]*:Byakko:27E0:/ -496.9 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -503.2 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ -505.8 "State of Shock 2" sync / 1[56]:[^:]*:Byakko:2756:/ -506.9 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -513.2 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ -519.7 "Sweep the Leg" sync / 1[56]:[^:]*:Byakko:27DB:/ -534.2 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:27DA:/ -544.5 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:27DC:/ -557.9 "Distant Clap" sync / 1[56]:[^:]*:Byakko:27DD:/ -564.1 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:27DA:/ +451.5 "--sync--" Ability { id: "29E4", source: "Byakko" } +453.5 "--sync--" Ability { id: "2757", source: "Byakko" } +459.3 "Fire and Lightning" Ability { id: "27D9", source: "Byakko" } +474.5 "Storm Pulse x2" Ability { id: "27DC", source: "Byakko" } +484.8 "Bombogenesis" Ability { id: "27E7", source: "Byakko" } +487.0 "Answer On High" Ability { id: "27E4", source: "Byakko" } +492.0 "Hundredfold Havoc" Ability { id: "27E5", source: "Byakko" } duration 3.2 +492.9 "Gale Force" Ability { id: "27E8", source: "Byakko" } +495.1 "Hundredfold Havoc" Ability { id: "27E5", source: "Byakko" } duration 3.2 +495.8 "State of Shock 1" Ability { id: "27E0", source: "Byakko" } +496.9 "Clutch" Ability { id: "27E1", source: "Byakko" } +503.2 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } +505.8 "State of Shock 2" Ability { id: "2756", source: "Byakko" } +506.9 "Clutch" Ability { id: "27E1", source: "Byakko" } +513.2 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } +519.7 "Sweep the Leg" Ability { id: "27DB", source: "Byakko" } +534.2 "Heavenly Strike" Ability { id: "27DA", source: "Byakko" } +544.5 "Storm Pulse x2" Ability { id: "27DC", source: "Byakko" } +557.9 "Distant Clap" Ability { id: "27DD", source: "Byakko" } +564.1 "Heavenly Strike" Ability { id: "27DA", source: "Byakko" } -572.2 "--middle--" sync / 1[56]:[^:]*:Byakko:2757:/ -576.3 "Unrelenting Anguish" sync / 1[56]:[^:]*:Byakko:27ED:/ -582.4 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:27DC:/ -586.7 "Bombogenesis" sync / 1[56]:[^:]*:Byakko:27E7:/ -592.8 "Ominous Wind" sync / 1[56]:[^:]*:Byakko:27EB:/ -594.7 "Gale Force" sync / 1[56]:[^:]*:Byakko:27E8:/ -602.1 "Fire and Lightning" sync / 1[56]:[^:]*:Byakko:27D9:/ -605.3 "--north--" sync / 1[56]:[^:]*:Byakko:2757:/ -611.0 "Fire and Lightning" sync / 1[56]:[^:]*:Byakko:27D9:/ -626.2 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:27DC:/ -634.4 "Answer On High" sync / 1[56]:[^:]*:Byakko:27E4:/ -639.4 "Hundredfold Havoc" sync / 1[56]:[^:]*:Byakko:27E5:/ -640.5 "State of Shock 1" sync / 1[56]:[^:]*:Byakko:27E0:/ -641.6 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -642.5 "Hundredfold Havoc" sync / 1[56]:[^:]*:Byakko:27E5:/ -647.9 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ -650.8 "State of Shock 2" sync / 1[56]:[^:]*:Byakko:2756:/ -651.8 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -658.1 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ -664.8 "Sweep the Leg" sync / 1[56]:[^:]*:Byakko:27DB:/ +572.2 "--middle--" Ability { id: "2757", source: "Byakko" } +576.3 "Unrelenting Anguish" Ability { id: "27ED", source: "Byakko" } +582.4 "Storm Pulse x2" Ability { id: "27DC", source: "Byakko" } +586.7 "Bombogenesis" Ability { id: "27E7", source: "Byakko" } +592.8 "Ominous Wind" Ability { id: "27EB", source: "Byakko" } +594.7 "Gale Force" Ability { id: "27E8", source: "Byakko" } +602.1 "Fire and Lightning" Ability { id: "27D9", source: "Byakko" } +605.3 "--north--" Ability { id: "2757", source: "Byakko" } +611.0 "Fire and Lightning" Ability { id: "27D9", source: "Byakko" } +626.2 "Storm Pulse x2" Ability { id: "27DC", source: "Byakko" } +634.4 "Answer On High" Ability { id: "27E4", source: "Byakko" } +639.4 "Hundredfold Havoc" Ability { id: "27E5", source: "Byakko" } +640.5 "State of Shock 1" Ability { id: "27E0", source: "Byakko" } +641.6 "Clutch" Ability { id: "27E1", source: "Byakko" } +642.5 "Hundredfold Havoc" Ability { id: "27E5", source: "Byakko" } +647.9 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } +650.8 "State of Shock 2" Ability { id: "2756", source: "Byakko" } +651.8 "Clutch" Ability { id: "27E1", source: "Byakko" } +658.1 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } +664.8 "Sweep the Leg" Ability { id: "27DB", source: "Byakko" } -674.9 "--middle--" sync / 1[56]:[^:]*:Byakko:2757:/ -680.2 "Storm Pulse x4" sync / 1[56]:[^:]*:Byakko:27DC:/ -696.3 "Storm Pulse Enrage" sync / 1[56]:[^:]*:Byakko:2A09:/ +674.9 "--middle--" Ability { id: "2757", source: "Byakko" } +680.2 "Storm Pulse x4" Ability { id: "27DC", source: "Byakko" } +696.3 "Storm Pulse Enrage" Ability { id: "2A09", source: "Byakko" } diff --git a/ui/raidboss/data/04-sb/trial/byakko.txt b/ui/raidboss/data/04-sb/trial/byakko.txt index e0547c989b..498d997381 100644 --- a/ui/raidboss/data/04-sb/trial/byakko.txt +++ b/ui/raidboss/data/04-sb/trial/byakko.txt @@ -11,103 +11,103 @@ hideall "Answer On High" hideall "Clutch" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.4 "Storm Pulse" sync / 1[56]:[^:]*:Byakko:2A2F:/ window 12,5 -17.6 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:2A2D:/ -28.7 "State Of Shock" sync / 1[56]:[^:]*:Byakko:27E0:/ -29.8 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -36.1 "Highest Stakes" sync / 1[56]:[^:]*:Byakko:27E2:/ -42.7 "Sweep The Leg" sync / 1[56]:[^:]*:Byakko:2A2E:/ -54.9 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:2A2D:/ -62.0 "--middle--" sync / 1[56]:[^:]*:Byakko:2757:/ -66.1 "Unrelenting Anguish" sync / 1[56]:[^:]*:Byakko:27ED:/ -71.4 "Aratama" sync / 1[56]:[^:]*:Aratama Force:2A48:/ -72.3 "Storm Pulse" sync / 1[56]:[^:]*:Byakko:2A2F:/ -78.5 "Fire And Lightning" sync / 1[56]:[^:]*:Byakko:2A2C:/ -85.8 "Fire And Lightning" sync / 1[56]:[^:]*:Byakko:2A2C:/ -89.0 "--jump--" sync / 1[56]:[^:]*:Byakko:2757:/ -94.7 "Fire And Lightning" sync / 1[56]:[^:]*:Byakko:2A2C:/ -105.9 "--sync--" sync / 1[56]:[^:]*:Byakko:2757:/ -107.7 "Dance Of The Incomplete" sync / 1[56]:[^:]*:Byakko:25D1:/ -107.8 "--sync--" sync / 1[56]:[^:]*:Hakutei:25CF:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.4 "Storm Pulse" Ability { id: "2A2F", source: "Byakko" } window 12,5 +17.6 "Heavenly Strike" Ability { id: "2A2D", source: "Byakko" } +28.7 "State Of Shock" Ability { id: "27E0", source: "Byakko" } +29.8 "Clutch" Ability { id: "27E1", source: "Byakko" } +36.1 "Highest Stakes" Ability { id: "27E2", source: "Byakko" } +42.7 "Sweep The Leg" Ability { id: "2A2E", source: "Byakko" } +54.9 "Heavenly Strike" Ability { id: "2A2D", source: "Byakko" } +62.0 "--middle--" Ability { id: "2757", source: "Byakko" } +66.1 "Unrelenting Anguish" Ability { id: "27ED", source: "Byakko" } +71.4 "Aratama" Ability { id: "2A48", source: "Aratama Force" } +72.3 "Storm Pulse" Ability { id: "2A2F", source: "Byakko" } +78.5 "Fire And Lightning" Ability { id: "2A2C", source: "Byakko" } +85.8 "Fire And Lightning" Ability { id: "2A2C", source: "Byakko" } +89.0 "--jump--" Ability { id: "2757", source: "Byakko" } +94.7 "Fire And Lightning" Ability { id: "2A2C", source: "Byakko" } +105.9 "--sync--" Ability { id: "2757", source: "Byakko" } +107.7 "Dance Of The Incomplete" Ability { id: "25D1", source: "Byakko" } +107.8 "--sync--" Ability { id: "25CF", source: "Hakutei" } 111.7 "--untargetable--" ### Hakutei add 112.7 "--targetable--" -119.3 "Aratama" sync / 1[56]:[^:]*:Hakutei:2A29:/ -121.9 "Steel Claw 1" sync / 1[56]:[^:]*:Hakutei:2A32:/ -128.0 "Steel Claw 2" sync / 1[56]:[^:]*:Hakutei:2A32:/ +119.3 "Aratama" Ability { id: "2A29", source: "Hakutei" } +121.9 "Steel Claw 1" Ability { id: "2A32", source: "Hakutei" } +128.0 "Steel Claw 2" Ability { id: "2A32", source: "Hakutei" } 134.0 "--untargetable--" -139.8 "White Herald" sync / 1[56]:[^:]*:Hakutei:2A4C:/ +139.8 "White Herald" Ability { id: "2A4C", source: "Hakutei" } 141.8 "--targetable--" -145.9 "Fire And Lightning" sync / 1[56]:[^:]*:Hakutei:2A31:/ -149.1 "--sync--" sync / 1[56]:[^:]*:Hakutei:265E:/ -150.3 "The Voice Of Thunder" sync / 1[56]:[^:]*:Hakutei:2A49:/ -173.4 "The Roar Of Thunder" sync / 1[56]:[^:]*:Hakutei:2A4B:/ +145.9 "Fire And Lightning" Ability { id: "2A31", source: "Hakutei" } +149.1 "--sync--" Ability { id: "265E", source: "Hakutei" } +150.3 "The Voice Of Thunder" Ability { id: "2A49", source: "Hakutei" } +173.4 "The Roar Of Thunder" Ability { id: "2A4B", source: "Hakutei" } 176.5 "--untargetable--" ### Midphase -204.3 "--sync--" sync / 1[56]:[^:]*:Byakko:27EE:/ window 210,10 -218.6 "Sweep The Leg" sync / 1[56]:[^:]*:Byakko:2A46:/ -222.6 "--sync--" sync / 1[56]:[^:]*:Byakko:27EE:/ -224.3 "Imperial Guard" sync / 1[56]:[^:]*:Hakutei:2A43:/ -238.3 "Imperial Guard" sync / 1[56]:[^:]*:Hakutei:2A43:/ -242.8 "Sweep The Leg" sync / 1[56]:[^:]*:Byakko:2A46:/ -248.3 "Imperial Guard" sync / 1[56]:[^:]*:Hakutei:2A43:/ +204.3 "--sync--" Ability { id: "27EE", source: "Byakko" } window 210,10 +218.6 "Sweep The Leg" Ability { id: "2A46", source: "Byakko" } +222.6 "--sync--" Ability { id: "27EE", source: "Byakko" } +224.3 "Imperial Guard" Ability { id: "2A43", source: "Hakutei" } +238.3 "Imperial Guard" Ability { id: "2A43", source: "Hakutei" } +242.8 "Sweep The Leg" Ability { id: "2A46", source: "Byakko" } +248.3 "Imperial Guard" Ability { id: "2A43", source: "Hakutei" } ### Final phase loop -259.3 "--sync--" sync / 1[56]:[^:]*:Byakko:2A2A:/ window 260,100 -274.3 "Fell Swoop" sync / 1[56]:[^:]*:Byakko:2A4D:/ +259.3 "--sync--" Ability { id: "2A2A", source: "Byakko" } window 260,100 +274.3 "Fell Swoop" Ability { id: "2A4D", source: "Byakko" } -294.5 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:2A2D:/ -300.6 "Answer On High" sync / 1[56]:[^:]*:Byakko:27E4:/ -305.6 "Hundredfold Havoc 1" sync / 1[56]:[^:]*:Byakko:2A38:/ -308.6 "Hundredfold Havoc 2" sync / 1[56]:[^:]*:Byakko:2A38:/ -316.7 "Bombogenesis" sync / 1[56]:[^:]*:Byakko:2A3B:/ -320.8 "Distant Clap" sync / 1[56]:[^:]*:Byakko:2A30:/ +294.5 "Heavenly Strike" Ability { id: "2A2D", source: "Byakko" } +300.6 "Answer On High" Ability { id: "27E4", source: "Byakko" } +305.6 "Hundredfold Havoc 1" Ability { id: "2A38", source: "Byakko" } +308.6 "Hundredfold Havoc 2" Ability { id: "2A38", source: "Byakko" } +316.7 "Bombogenesis" Ability { id: "2A3B", source: "Byakko" } +320.8 "Distant Clap" Ability { id: "2A30", source: "Byakko" } -326.9 "Answer On High" sync / 1[56]:[^:]*:Byakko:27E4:/ -331.9 "Hundredfold Havoc 1" sync / 1[56]:[^:]*:Byakko:2A38:/ -333.0 "State Of Shock 1" sync / 1[56]:[^:]*:Byakko:27E0:/ -334.1 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -334.9 "Hundredfold Havoc 2" sync / 1[56]:[^:]*:Byakko:2A38:/ -340.3 "Highest Stakes 1" sync / 1[56]:[^:]*:Byakko:27E2:/ -342.9 "State Of Shock 2" sync / 1[56]:[^:]*:Byakko:2756:/ -344.0 "Clutch" sync / 1[56]:[^:]*:Byakko:27E1:/ -350.3 "Highest Stakes 2" sync / 1[56]:[^:]*:Byakko:27E2:/ -356.9 "Sweep The Leg" sync / 1[56]:[^:]*:Byakko:2A2E:/ -362.2 "--sync--" sync / 1[56]:[^:]*:Byakko:2757:/ -367.0 "Bombogenesis" sync / 1[56]:[^:]*:Byakko:2A3B:/ -367.8 "Fire And Lightning" sync / 1[56]:[^:]*:Byakko:2A2C:/ -383.1 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:2A2D:/ -393.2 "Sweep The Leg" sync / 1[56]:[^:]*:Byakko:2A2E:/ +326.9 "Answer On High" Ability { id: "27E4", source: "Byakko" } +331.9 "Hundredfold Havoc 1" Ability { id: "2A38", source: "Byakko" } +333.0 "State Of Shock 1" Ability { id: "27E0", source: "Byakko" } +334.1 "Clutch" Ability { id: "27E1", source: "Byakko" } +334.9 "Hundredfold Havoc 2" Ability { id: "2A38", source: "Byakko" } +340.3 "Highest Stakes 1" Ability { id: "27E2", source: "Byakko" } +342.9 "State Of Shock 2" Ability { id: "2756", source: "Byakko" } +344.0 "Clutch" Ability { id: "27E1", source: "Byakko" } +350.3 "Highest Stakes 2" Ability { id: "27E2", source: "Byakko" } +356.9 "Sweep The Leg" Ability { id: "2A2E", source: "Byakko" } +362.2 "--sync--" Ability { id: "2757", source: "Byakko" } +367.0 "Bombogenesis" Ability { id: "2A3B", source: "Byakko" } +367.8 "Fire And Lightning" Ability { id: "2A2C", source: "Byakko" } +383.1 "Heavenly Strike" Ability { id: "2A2D", source: "Byakko" } +393.2 "Sweep The Leg" Ability { id: "2A2E", source: "Byakko" } -399.4 "--middle--" sync / 1[56]:[^:]*:Byakko:2757:/ -403.7 "Unrelenting Anguish" sync / 1[56]:[^:]*:Byakko:27ED:/ -409.8 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:2A2F:/ -418.2 "Fire And Lightning" sync / 1[56]:[^:]*:Byakko:2A2C:/ -424.5 "--sync--" sync / 1[56]:[^:]*:Byakko:2757:/ -429.4 "Bombogenesis" sync / 1[56]:[^:]*:Byakko:2A3B:/ -430.3 "Fire And Lightning" sync / 1[56]:[^:]*:Byakko:2A2C:/ -445.6 "Heavenly Strike" sync / 1[56]:[^:]*:Byakko:2A2D:/ -455.7 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:2A2F:/ -463.9 "Sweep The Leg" sync / 1[56]:[^:]*:Byakko:2A2E:/ -474.0 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:2A2F:/ +399.4 "--middle--" Ability { id: "2757", source: "Byakko" } +403.7 "Unrelenting Anguish" Ability { id: "27ED", source: "Byakko" } +409.8 "Storm Pulse x2" Ability { id: "2A2F", source: "Byakko" } +418.2 "Fire And Lightning" Ability { id: "2A2C", source: "Byakko" } +424.5 "--sync--" Ability { id: "2757", source: "Byakko" } +429.4 "Bombogenesis" Ability { id: "2A3B", source: "Byakko" } +430.3 "Fire And Lightning" Ability { id: "2A2C", source: "Byakko" } +445.6 "Heavenly Strike" Ability { id: "2A2D", source: "Byakko" } +455.7 "Storm Pulse x2" Ability { id: "2A2F", source: "Byakko" } +463.9 "Sweep The Leg" Ability { id: "2A2E", source: "Byakko" } +474.0 "Storm Pulse x2" Ability { id: "2A2F", source: "Byakko" } -483.3 "Answer On High" sync / 1[56]:[^:]*:Byakko:27E4:/ -488.3 "Hundredfold Havoc 1" sync / 1[56]:[^:]*:Byakko:2A38:/ -491.3 "Hundredfold Havoc 2" sync / 1[56]:[^:]*:Byakko:2A38:/ -499.4 "Bombogenesis" sync / 1[56]:[^:]*:Byakko:2A3B:/ -503.5 "Distant Clap" sync / 1[56]:[^:]*:Byakko:2A30:/ -509.6 "Storm Pulse x2" sync / 1[56]:[^:]*:Byakko:2A2F:/ +483.3 "Answer On High" Ability { id: "27E4", source: "Byakko" } +488.3 "Hundredfold Havoc 1" Ability { id: "2A38", source: "Byakko" } +491.3 "Hundredfold Havoc 2" Ability { id: "2A38", source: "Byakko" } +499.4 "Bombogenesis" Ability { id: "2A3B", source: "Byakko" } +503.5 "Distant Clap" Ability { id: "2A30", source: "Byakko" } +509.6 "Storm Pulse x2" Ability { id: "2A2F", source: "Byakko" } # loop -517.8 "Answer On High" sync / 1[56]:[^:]*:Byakko:27E4:/ window 20,20 jump 326.9 -522.8 "Hundredfold Havoc 1" #sync / 1[56]:[^:]*:Byakko:2A38:/ -523.9 "State Of Shock 1" #sync / 1[56]:[^:]*:Byakko:27E0:/ -525.0 "Clutch" #sync / 1[56]:[^:]*:Byakko:27E1:/ -525.8 "Hundredfold Havoc 2" #sync / 1[56]:[^:]*:Byakko:2A38:/ -531.2 "Highest Stakes 1" #sync / 1[56]:[^:]*:Byakko:27E2:/ -533.8 "State Of Shock 2" #sync / 1[56]:[^:]*:Byakko:2756:/ -534.9 "Clutch" #sync / 1[56]:[^:]*:Byakko:27E1:/ -541.2 "Highest Stakes 2" #sync / 1[56]:[^:]*:Byakko:27E2:/ +517.8 "Answer On High" Ability { id: "27E4", source: "Byakko" } window 20,20 jump 326.9 +522.8 "Hundredfold Havoc 1" #Ability { id: "2A38", source: "Byakko" } +523.9 "State Of Shock 1" #Ability { id: "27E0", source: "Byakko" } +525.0 "Clutch" #Ability { id: "27E1", source: "Byakko" } +525.8 "Hundredfold Havoc 2" #Ability { id: "2A38", source: "Byakko" } +531.2 "Highest Stakes 1" #Ability { id: "27E2", source: "Byakko" } +533.8 "State Of Shock 2" #Ability { id: "2756", source: "Byakko" } +534.9 "Clutch" #Ability { id: "27E1", source: "Byakko" } +541.2 "Highest Stakes 2" #Ability { id: "27E2", source: "Byakko" } diff --git a/ui/raidboss/data/04-sb/trial/lakshmi-ex.txt b/ui/raidboss/data/04-sb/trial/lakshmi-ex.txt index 6eff089131..48384ae7bc 100644 --- a/ui/raidboss/data/04-sb/trial/lakshmi-ex.txt +++ b/ui/raidboss/data/04-sb/trial/lakshmi-ex.txt @@ -8,96 +8,96 @@ hideall "--sync--" hideall "Alluring Arm" ### Adds -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -4.0 "Vril" sync / 1[56]:[^:]*:Dreaming Kshatriya:2146:/ window 10,10 -12.1 "Tail Slap" sync / 1[56]:[^:]*:Dreaming Kshatriya:258C:/ -16.0 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2147:/ -16.9 "Inner Demons" sync / 1[56]:[^:]*:Dreaming Kshatriya:258D:/ -28.1 "Inner Demons" sync / 1[56]:[^:]*:Dreaming Kshatriya:258D:/ -29.0 "Tail Slap" sync / 1[56]:[^:]*:Dreaming Kshatriya:258C:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +4.0 "Vril" Ability { id: "2146", source: "Dreaming Kshatriya" } window 10,10 +12.1 "Tail Slap" Ability { id: "258C", source: "Dreaming Kshatriya" } +16.0 "Stotram" Ability { id: "2147", source: "Lakshmi" } +16.9 "Inner Demons" Ability { id: "258D", source: "Dreaming Kshatriya" } +28.1 "Inner Demons" Ability { id: "258D", source: "Dreaming Kshatriya" } +29.0 "Tail Slap" Ability { id: "258C", source: "Dreaming Kshatriya" } ### Warmup # first auto comes out before rp text. -500.0 "Hand Of Grace" sync / 1[56]:[^:]*:Lakshmi:214C:/ window 500,0 -507.2 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215E:/ -514.2 "Blissful Arrow" sync / 1[56]:[^:]*:Lakshmi:214F:/ -514.8 "Blissful Spear" sync / 1[56]:[^:]*:Lakshmi:2151:/ -517.4 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2147:/ -528.6 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215E:/ -535.9 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:215A:/ -546.0 "Alluring Arm" sync / 1[56]:[^:]*:Lakshmi:214E:/ -553.2 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215E:/ -560.3 "Blissful Hammer" sync / 1[56]:[^:]*:Lakshmi:21DC:/ -563.4 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2147:/ -570.6 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:215C:/ -579.8 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215E:/ +500.0 "Hand Of Grace" Ability { id: "214C", source: "Lakshmi" } window 500,0 +507.2 "The Pull Of Light" Ability { id: "215E", source: "Lakshmi" } +514.2 "Blissful Arrow" Ability { id: "214F", source: "Lakshmi" } +514.8 "Blissful Spear" Ability { id: "2151", source: "Lakshmi" } +517.4 "Stotram" Ability { id: "2147", source: "Lakshmi" } +528.6 "The Pull Of Light" Ability { id: "215E", source: "Lakshmi" } +535.9 "The Path Of Light" Ability { id: "215A", source: "Lakshmi" } +546.0 "Alluring Arm" Ability { id: "214E", source: "Lakshmi" } +553.2 "The Pull Of Light" Ability { id: "215E", source: "Lakshmi" } +560.3 "Blissful Hammer" Ability { id: "21DC", source: "Lakshmi" } +563.4 "Stotram" Ability { id: "2147", source: "Lakshmi" } +570.6 "The Pall Of Light" Ability { id: "215C", source: "Lakshmi" } +579.8 "The Pull Of Light" Ability { id: "215E", source: "Lakshmi" } ### Chanchala #1 -588.0 "Chanchala #1" sync / 1[56]:[^:]*:Lakshmi:2148:/ -601.8 "Divine Denial" sync / 1[56]:[^:]*:Lakshmi:2149:/ -610.0 "Hand Of Beauty" sync / 1[56]:[^:]*:Lakshmi:214D:/ -617.2 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215F:/ -624.2 "Blissful Hammer" sync / 1[56]:[^:]*:Lakshmi:21DD:/ -624.5 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:215B:/ -637.8 "Divine Desire" sync / 1[56]:[^:]*:Lakshmi:214B:/ +588.0 "Chanchala #1" Ability { id: "2148", source: "Lakshmi" } +601.8 "Divine Denial" Ability { id: "2149", source: "Lakshmi" } +610.0 "Hand Of Beauty" Ability { id: "214D", source: "Lakshmi" } +617.2 "The Pull Of Light" Ability { id: "215F", source: "Lakshmi" } +624.2 "Blissful Hammer" Ability { id: "21DD", source: "Lakshmi" } +624.5 "The Path Of Light" Ability { id: "215B", source: "Lakshmi" } +637.8 "Divine Desire" Ability { id: "214B", source: "Lakshmi" } 639.9 "--chanchala end--" -650.1 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215E:/ -662.5 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:215A:/ -670.6 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2147:/ +650.1 "The Pull Of Light" Ability { id: "215E", source: "Lakshmi" } +662.5 "The Path Of Light" Ability { id: "215A", source: "Lakshmi" } +670.6 "Stotram" Ability { id: "2147", source: "Lakshmi" } 674.3 "--untargetable--" ### More Adds 679.9 "--targetable--" ### Hugging -2000.0 "Jagadishwari" sync / 1[56]:[^:]*:Lakshmi:2342:/ window 2000,0 +2000.0 "Jagadishwari" Ability { id: "2342", source: "Lakshmi" } window 2000,0 2021.4 "/dance" -2021.4 "--sync--" sync / 1[56]:[^:]*:Lakshmi:2159:/ -2037.1 "Alluring Embrace" sync / 1[56]:[^:]*:Lakshmi:2343:/ +2021.4 "--sync--" Ability { id: "2159", source: "Lakshmi" } +2037.1 "Alluring Embrace" Ability { id: "2343", source: "Lakshmi" } 2041.5 "--targetable--" ### Chanchala #2 -2041.7 "--sync--" sync / 14:[^:]*:Lakshmi:2148:/ window 50,10 -2044.7 "Chanchala #2" sync / 1[56]:[^:]*:Lakshmi:2148:/ -2058.5 "Divine Doubt" sync / 1[56]:[^:]*:Lakshmi:214A:/ -2073.9 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:215B:/ -2084.0 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215F:/ +2041.7 "--sync--" StartsUsing { id: "2148", source: "Lakshmi" } window 50,10 +2044.7 "Chanchala #2" Ability { id: "2148", source: "Lakshmi" } +2058.5 "Divine Doubt" Ability { id: "214A", source: "Lakshmi" } +2073.9 "The Path Of Light" Ability { id: "215B", source: "Lakshmi" } +2084.0 "The Pull Of Light" Ability { id: "215F", source: "Lakshmi" } 2086.0 "--chanchala end--" -2109.5 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215E:/ -2111.5 "Blissful Spear (Z)" sync / 1[56]:[^:]*:Lakshmi:2166:/ +2109.5 "The Pull Of Light" Ability { id: "215E", source: "Lakshmi" } +2111.5 "Blissful Spear (Z)" Ability { id: "2166", source: "Lakshmi" } -2125.9 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:215A:/ -2128.8 "Blissful Spear (mid)" sync / 1[56]:[^:]*:Lakshmi:2156:/ -2133.1 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:215C:/ -2144.3 "Alluring Arm" sync / 1[56]:[^:]*:Lakshmi:214E:/ -2151.5 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215E:/ -2158.6 "Blissful Hammer" sync / 1[56]:[^:]*:Lakshmi:21DC:/ -2158.9 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:215A:/ -2169.0 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2147:/ +2125.9 "The Path Of Light" Ability { id: "215A", source: "Lakshmi" } +2128.8 "Blissful Spear (mid)" Ability { id: "2156", source: "Lakshmi" } +2133.1 "The Pall Of Light" Ability { id: "215C", source: "Lakshmi" } +2144.3 "Alluring Arm" Ability { id: "214E", source: "Lakshmi" } +2151.5 "The Pull Of Light" Ability { id: "215E", source: "Lakshmi" } +2158.6 "Blissful Hammer" Ability { id: "21DC", source: "Lakshmi" } +2158.9 "The Path Of Light" Ability { id: "215A", source: "Lakshmi" } +2169.0 "Stotram" Ability { id: "2147", source: "Lakshmi" } ### Chanchala #3 -2180.3 "Chanchala #3" sync / 1[56]:[^:]*:Lakshmi:2148:/ -2195.6 "Divine Doubt" sync / 1[56]:[^:]*:Lakshmi:214A:/ -2210.8 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:215D:/ -2236.5 "Divine Desire" sync / 1[56]:[^:]*:Lakshmi:214B:/ -2238.2 "Blissful Spear (out)" sync / 1[56]:[^:]*:Lakshmi:2154:/ -2250.8 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:215D:/ -2251.8 "Blissful Spear (Z)" sync / 1[56]:[^:]*:Lakshmi:2166:/ -2264.0 "Stotram" sync / 1[56]:[^:]*:Lakshmi:249D:/ +2180.3 "Chanchala #3" Ability { id: "2148", source: "Lakshmi" } +2195.6 "Divine Doubt" Ability { id: "214A", source: "Lakshmi" } +2210.8 "The Pall Of Light" Ability { id: "215D", source: "Lakshmi" } +2236.5 "Divine Desire" Ability { id: "214B", source: "Lakshmi" } +2238.2 "Blissful Spear (out)" Ability { id: "2154", source: "Lakshmi" } +2250.8 "The Pall Of Light" Ability { id: "215D", source: "Lakshmi" } +2251.8 "Blissful Spear (Z)" Ability { id: "2166", source: "Lakshmi" } +2264.0 "Stotram" Ability { id: "249D", source: "Lakshmi" } 2266.1 "--chanchala end--" -2275.3 "Alluring Arm" sync / 1[56]:[^:]*:Lakshmi:214E:/ -2282.5 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:215C:/ -2289.5 "Blissful Hammer" sync / 1[56]:[^:]*:Lakshmi:21DC:/ -2289.8 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:215A:/ -2297.9 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2147:/ +2275.3 "Alluring Arm" Ability { id: "214E", source: "Lakshmi" } +2282.5 "The Pall Of Light" Ability { id: "215C", source: "Lakshmi" } +2289.5 "Blissful Hammer" Ability { id: "21DC", source: "Lakshmi" } +2289.8 "The Path Of Light" Ability { id: "215A", source: "Lakshmi" } +2297.9 "Stotram" Ability { id: "2147", source: "Lakshmi" } -2308.1 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:215E:/ -2318.3 "Alluring Arm" sync / 1[56]:[^:]*:Lakshmi:214E:/ -2332.6 "Blissful Hammer" sync / 1[56]:[^:]*:Lakshmi:21DD:/ +2308.1 "The Pull Of Light" Ability { id: "215E", source: "Lakshmi" } +2318.3 "Alluring Arm" Ability { id: "214E", source: "Lakshmi" } +2332.6 "Blissful Hammer" Ability { id: "21DD", source: "Lakshmi" } ### Chanchala #4 -2332.8 "Chanchala #4" sync / 1[56]:[^:]*:Lakshmi:2148:/ -2335.0 "--sync--" sync / 14:[^:]*:Lakshmi:2560:/ window 1000,1000 -2350.0 "Divine Denial Enrage" sync / 1[56]:[^:]*:Lakshmi:2560:/ +2332.8 "Chanchala #4" Ability { id: "2148", source: "Lakshmi" } +2335.0 "--sync--" StartsUsing { id: "2560", source: "Lakshmi" } window 1000,1000 +2350.0 "Divine Denial Enrage" Ability { id: "2560", source: "Lakshmi" } diff --git a/ui/raidboss/data/04-sb/trial/lakshmi.txt b/ui/raidboss/data/04-sb/trial/lakshmi.txt index 9009180183..3b935eea63 100644 --- a/ui/raidboss/data/04-sb/trial/lakshmi.txt +++ b/ui/raidboss/data/04-sb/trial/lakshmi.txt @@ -7,88 +7,88 @@ hideall "Alluring Arm" # -ii 2157 248B 248D -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -3.9 "Vril" sync / 1[56]:[^:]*:Dreaming Kshatriya:2482:/ window 3.9,5 -13.0 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2483:/ window 13,5 -16.1 "Inner Demons" # sync / 1[56]:[^:]*:Dreaming Kshatriya:258D:/ -19.0 "Aether Drain" sync / 1[56]:[^:]*:Vril:248D:/ -29.3 "Tail Slap" # sync / 1[56]:[^:]*:Dreaming Kshatriya:258C:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +3.9 "Vril" Ability { id: "2482", source: "Dreaming Kshatriya" } window 3.9,5 +13.0 "Stotram" Ability { id: "2483", source: "Lakshmi" } window 13,5 +16.1 "Inner Demons" # Ability { id: "258D", source: "Dreaming Kshatriya" } +19.0 "Aether Drain" Ability { id: "248D", source: "Vril" } +29.3 "Tail Slap" # Ability { id: "258C", source: "Dreaming Kshatriya" } # We can't sync to abilities here to make the loop visible, # since two adds are present, and the timeline would jerk around. # A group that actually manages to bridge this gap is doing so deliberately, # and it's probably not necessary to account for that edge case. -1000.0 "--sync--" sync / 1[56]:[^:]*:Lakshmi:2157:/ window 1000,5 -1007.1 "Hand Of Grace" sync / 1[56]:[^:]*:Lakshmi:2486:/ -1021.3 "Blissful Arrow" sync / 1[56]:[^:]*:Lakshmi:2489:/ -1021.9 "Blissful Spear" sync / 1[56]:[^:]*:Lakshmi:248B:/ -1032.3 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:2492:/ -1044.5 "Hand Of Beauty" sync / 1[56]:[^:]*:Lakshmi:2487:/ -1058.8 "Blissful Spear" sync / 1[56]:[^:]*:Lakshmi:2494:/ -1065.7 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2483:/ +1000.0 "--sync--" Ability { id: "2157", source: "Lakshmi" } window 1000,5 +1007.1 "Hand Of Grace" Ability { id: "2486", source: "Lakshmi" } +1021.3 "Blissful Arrow" Ability { id: "2489", source: "Lakshmi" } +1021.9 "Blissful Spear" Ability { id: "248B", source: "Lakshmi" } +1032.3 "The Pull Of Light" Ability { id: "2492", source: "Lakshmi" } +1044.5 "Hand Of Beauty" Ability { id: "2487", source: "Lakshmi" } +1058.8 "Blissful Spear" Ability { id: "2494", source: "Lakshmi" } +1065.7 "Stotram" Ability { id: "2483", source: "Lakshmi" } 1067.9 "--vril spawn--" 1069.0 "--untargetable--" -1069.9 "Jagadishwari" sync / 1[56]:[^:]*:Lakshmi:2342:/ window 169.9,30 -1086.1 "--sync--" sync / 1[56]:[^:]*:Lakshmi:2459:/ +1069.9 "Jagadishwari" Ability { id: "2342", source: "Lakshmi" } window 169.9,30 +1086.1 "--sync--" Ability { id: "2459", source: "Lakshmi" } 1089.6 "--stun--" -1090.4 "--sync--" sync / 1[56]:[^:]*:Lakshmi:245A:/ -1091.2 "--sync--" sync / 1[56]:[^:]*:Lakshmi:248E:/ -1106.9 "Alluring Embrace" sync / 1[56]:[^:]*:Lakshmi:2496:/ +1090.4 "--sync--" Ability { id: "245A", source: "Lakshmi" } +1091.2 "--sync--" Ability { id: "248E", source: "Lakshmi" } +1106.9 "Alluring Embrace" Ability { id: "2496", source: "Lakshmi" } 1111.3 "--targetable--" -1114.5 "Chanchala" sync / 1[56]:[^:]*:Lakshmi:2484:/ window 214.5,15 +1114.5 "Chanchala" Ability { id: "2484", source: "Lakshmi" } window 214.5,15 1116.7 "--chanchala start--" -1122.6 "Stotram" sync / 1[56]:[^:]*:Lakshmi:249E:/ +1122.6 "Stotram" Ability { id: "249E", source: "Lakshmi" } 1124.5 "--vril spawn--" -1134.9 "Divine Denial" sync / 1[56]:[^:]*:Lakshmi:2485:/ window 234.9,30 +1134.9 "Divine Denial" Ability { id: "2485", source: "Lakshmi" } window 234.9,30 1134.9 "--vril despawn--" -1147.1 "Hand Of Beauty" sync / 1[56]:[^:]*:Lakshmi:2487:/ -1154.3 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:2493:/ -1161.4 "Blissful Spear" sync / 1[56]:[^:]*:Lakshmi:2495:/ -1170.7 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:24A1:/ window 270.7,30 -1184.9 "Hand Of Grace" sync / 1[56]:[^:]*:Lakshmi:2486:/ -1192.1 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:2491:/ -1199.1 "Blissful Arrow" sync / 1[56]:[^:]*:Lakshmi:248A:/ -1199.7 "Blissful Spear" sync / 1[56]:[^:]*:Lakshmi:248C:/ -1205.3 "Stotram" sync / 1[56]:[^:]*:Lakshmi:249E:/ +1147.1 "Hand Of Beauty" Ability { id: "2487", source: "Lakshmi" } +1154.3 "The Pull Of Light" Ability { id: "2493", source: "Lakshmi" } +1161.4 "Blissful Spear" Ability { id: "2495", source: "Lakshmi" } +1170.7 "The Path Of Light" Ability { id: "24A1", source: "Lakshmi" } window 270.7,30 +1184.9 "Hand Of Grace" Ability { id: "2486", source: "Lakshmi" } +1192.1 "The Pall Of Light" Ability { id: "2491", source: "Lakshmi" } +1199.1 "Blissful Arrow" Ability { id: "248A", source: "Lakshmi" } +1199.7 "Blissful Spear" Ability { id: "248C", source: "Lakshmi" } +1205.3 "Stotram" Ability { id: "249E", source: "Lakshmi" } 1207.6 "--vril spawn--" -1220.2 "Divine Denial" sync / 1[56]:[^:]*:Lakshmi:2485:/ window 30,30 +1220.2 "Divine Denial" Ability { id: "2485", source: "Lakshmi" } window 30,30 1220.2 "--vril despawn--" 1221.6 "--chanchala end--" -1234.5 "Alluring Arm" sync / 1[56]:[^:]*:Lakshmi:2488:/ -1248.8 "Blissful Arrow/Spear" sync / 1[56]:[^:]*:Lakshmi:(2489|2494):/ -1256.8 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:2492:/ +1234.5 "Alluring Arm" Ability { id: "2488", source: "Lakshmi" } +1248.8 "Blissful Arrow/Spear" Ability { id: ["2489", "2494"], source: "Lakshmi" } +1256.8 "The Pull Of Light" Ability { id: "2492", source: "Lakshmi" } -1265.0 "Chanchala" sync / 1[56]:[^:]*:Lakshmi:2484:/ window 30,30 +1265.0 "Chanchala" Ability { id: "2484", source: "Lakshmi" } window 30,30 1265.9 "--chanchala start--" -1279.2 "Hand Of Grace" sync / 1[56]:[^:]*:Lakshmi:2486:/ -1292.4 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:2491:/ -1293.4 "Blissful Arrow" sync / 1[56]:[^:]*:Lakshmi:248A:/ -1294.0 "Blissful Spear" sync / 1[56]:[^:]*:Lakshmi:248C:/ -1302.6 "Stotram" sync / 1[56]:[^:]*:Lakshmi:249E:/ +1279.2 "Hand Of Grace" Ability { id: "2486", source: "Lakshmi" } +1292.4 "The Pall Of Light" Ability { id: "2491", source: "Lakshmi" } +1293.4 "Blissful Arrow" Ability { id: "248A", source: "Lakshmi" } +1294.0 "Blissful Spear" Ability { id: "248C", source: "Lakshmi" } +1302.6 "Stotram" Ability { id: "249E", source: "Lakshmi" } 1304.4 "--vril spawn--" -1317.9 "Divine Denial" sync / 1[56]:[^:]*:Lakshmi:2485:/ window 30,30 +1317.9 "Divine Denial" Ability { id: "2485", source: "Lakshmi" } window 30,30 1317.9 "--vril despawn--" -1332.1 "Alluring Arm" sync / 1[56]:[^:]*:Lakshmi:2488:/ -1346.4 "Blissful Arrow/Spear" sync / 1[56]:[^:]*:Lakshmi:(248A|2495):/ -1348.4 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:2491:/ window 30,30 -1360.5 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:2493:/ +1332.1 "Alluring Arm" Ability { id: "2488", source: "Lakshmi" } +1346.4 "Blissful Arrow/Spear" Ability { id: ["248A", "2495"], source: "Lakshmi" } +1348.4 "The Pall Of Light" Ability { id: "2491", source: "Lakshmi" } window 30,30 +1360.5 "The Pull Of Light" Ability { id: "2493", source: "Lakshmi" } 1360.9 "--chanchala end--" -1378.9 "Alluring Arm" sync / 1[56]:[^:]*:Lakshmi:2488:/ -1392.1 "Stotram" sync / 1[56]:[^:]*:Lakshmi:2483:/ window 30,30 +1378.9 "Alluring Arm" Ability { id: "2488", source: "Lakshmi" } +1392.1 "Stotram" Ability { id: "2483", source: "Lakshmi" } window 30,30 1393.9 "--vril spawn--" -1393.2 "Blissful Spear" sync / 1[56]:[^:]*:Lakshmi:2494:/ -1402.3 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:2492:/ +1393.2 "Blissful Spear" Ability { id: "2494", source: "Lakshmi" } +1402.3 "The Pull Of Light" Ability { id: "2492", source: "Lakshmi" } 1407.4 "--vril despawn--" -1421.5 "Alluring Arm" sync / 1[56]:[^:]*:Lakshmi:2488:/ -1430.9 "The Path Of Light" sync / 1[56]:[^:]*:Lakshmi:248F:/ window 30,30 -1435.7 "Blissful Spear" sync / 1[56]:[^:]*:Lakshmi:2494:/ -1440.0 "The Pall Of Light" sync / 1[56]:[^:]*:Lakshmi:2490:/ -1452.2 "The Pull Of Light" sync / 1[56]:[^:]*:Lakshmi:2492:/ +1421.5 "Alluring Arm" Ability { id: "2488", source: "Lakshmi" } +1430.9 "The Path Of Light" Ability { id: "248F", source: "Lakshmi" } window 30,30 +1435.7 "Blissful Spear" Ability { id: "2494", source: "Lakshmi" } +1440.0 "The Pall Of Light" Ability { id: "2490", source: "Lakshmi" } +1452.2 "The Pull Of Light" Ability { id: "2492", source: "Lakshmi" } -1465.5 "Chanchala" sync / 1[56]:[^:]*:Lakshmi:2484:/ window 30,30 jump 1365.0 +1465.5 "Chanchala" Ability { id: "2484", source: "Lakshmi" } window 30,30 jump 1365.0 1466.4 "--chanchala start--" 1479.7 "Hand Of Grace" 1492.9 "The Pall Of Light" diff --git a/ui/raidboss/data/04-sb/trial/seiryu-ex.txt b/ui/raidboss/data/04-sb/trial/seiryu-ex.txt index 70f9a56e83..b3ea0f51d1 100644 --- a/ui/raidboss/data/04-sb/trial/seiryu-ex.txt +++ b/ui/raidboss/data/04-sb/trial/seiryu-ex.txt @@ -5,115 +5,115 @@ hideall "--Reset--" hideall "--sync--" # Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.5 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ window 13,5 -#18.5 "Serpent Ascending" sync / 1[56]:[^:]*:Seiryu:37DC:/ # towers later, but nothing here -20.5 "--rotate--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -27.0 "Kuji-kiri" sync / 1[56]:[^:]*:Seiryu:37E1:/ -30.0 "--jump--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -#33.5 "Onmyo Sigil" sync / 1[56]:[^:]*:Seiryu:37D6:/ -36.5 "Onmyo Sigil" sync / 1[56]:[^:]*:Seiryu:3A01:/ -46.5 "Cursekeeper" sync / 1[56]:[^:]*:Seiryu:37D2:/ -62.8 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37CE:/ -#64.8 "--rotate--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -69.8 "--sync--" sync / 1[56]:[^:]*:Seiryu:37EF:/ -75.8 "Red Rush" sync / 1[56]:[^:]*:Aka-no-shiki:37F1:/ -75.8 "Blue Bolt" sync / 1[56]:[^:]*:Ao-no-shiki:37F0:/ -80.5 "100-tonze Swing" sync / 1[56]:[^:]*:Iwa-no-shiki:37ED:/ -89.5 "Kanabo" sync / 1[56]:[^:]*:Iwa-no-shiki:37EE:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.5 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } window 13,5 +#18.5 "Serpent Ascending" Ability { id: "37DC", source: "Seiryu" } # towers later, but nothing here +20.5 "--rotate--" Ability { id: "37C4", source: "Seiryu" } +27.0 "Kuji-kiri" Ability { id: "37E1", source: "Seiryu" } +30.0 "--jump--" Ability { id: "37D5", source: "Seiryu" } +#33.5 "Onmyo Sigil" Ability { id: "37D6", source: "Seiryu" } +36.5 "Onmyo Sigil" Ability { id: "3A01", source: "Seiryu" } +46.5 "Cursekeeper" Ability { id: "37D2", source: "Seiryu" } +62.8 "Summon Shiki" Ability { id: "37CE", source: "Seiryu" } +#64.8 "--rotate--" Ability { id: "37C4", source: "Seiryu" } +69.8 "--sync--" Ability { id: "37EF", source: "Seiryu" } +75.8 "Red Rush" Ability { id: "37F1", source: "Aka-no-shiki" } +75.8 "Blue Bolt" Ability { id: "37F0", source: "Ao-no-shiki" } +80.5 "100-tonze Swing" Ability { id: "37ED", source: "Iwa-no-shiki" } +89.5 "Kanabo" Ability { id: "37EE", source: "Iwa-no-shiki" } # Phase 2 160.0 "Enrage" # Phase 3 -400.0 "Strength of Spirit" sync / 1[56]:[^:]*:Seiryu:37C9:/ window 400,0 -427.0 "Dragon's Wake" sync / 1[56]:[^:]*:Seiryu:37CB:/ -#429.5 "--rotate--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -437.5 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -448.0 "Coursing River" sync / 1[56]:[^:]*:Seiryu:37F6:/ -462.0 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -466.5 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -470.0 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -478.0 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -478.0 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -486.5 "Force of Nature" sync / 1[56]:[^:]*:Seiryu:37EB:/ -488.5 "Coursing River" sync / 1[56]:[^:]*:Seiryu:37F6:/ -494.3 "Forbidden Arts" sync / 1[56]:[^:]*:Seiryu:37C7:/ -496.3 "Forbidden Arts" sync / 1[56]:[^:]*:Seiryu:37C8:/ -504.3 "--rotate--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -511.9 "Blazing Aramitama" sync / 1[56]:[^:]*:Seiryu:37E4:/ -515.9 "--jump--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -#519.4 "In/Out" sync / 1[56]:[^:]*:Seiryu:(37DA|37D8):/ -522.4 "In/Out" sync / 1[56]:[^:]*:Seiryu:(3A05|3A03):/ -#524.9 "Out/In" sync / 1[56]:[^:]*:Seiryu:(37DB|37D9):/ -525.4 "Out/In" sync / 1[56]:[^:]*:Seiryu:(3A06|3A04):/ -531.9 "--rotate--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -538.6 "Kuji-kiri" sync / 1[56]:[^:]*:Seiryu:37E1:/ -541.6 "--jump--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -#545.1 "In/Out" sync / 1[56]:[^:]*:Seiryu:(37DA|37D8):/ -548.1 "In/Out" sync / 1[56]:[^:]*:Seiryu:(3A05|3A03):/ -#550.6 "Out/In" sync / 1[56]:[^:]*:Seiryu:(37DB|37D9):/ -551.1 "Out/In" sync / 1[56]:[^:]*:Seiryu:(3A06|3A04):/ -558.6 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -572.6 "Serpent Ascending" sync / 1[56]:[^:]*:Seiryu:3C25:/ -578.6 "Serpent Descending" sync / 1[56]:[^:]*:Seiryu:37DE:/ -582.6 "Serpent's Fang" sync / 1[56]:[^:]*:Seiryu:37DF:/ -589.8 "Forbidden Arts 1" sync / 1[56]:[^:]*:Seiryu:3C22:/ -592.0 "Forbidden Arts 2" sync / 1[56]:[^:]*:Seiryu:3C23:/ -599.0 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -611.0 "Cursekeeper" sync / 1[56]:[^:]*:Seiryu:37D2:/ -624.1 "Cursekeeper" sync / 1[56]:[^:]*:Seiryu:37D2:/ -633.3 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -646.3 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37CD:/ -652.3 "--jump--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -#655.8 "In/Out" sync / 1[56]:[^:]*:Seiryu:(37DA|37D8):/ -658.4 "100-tonze Swing" sync / 1[56]:[^:]*:Iwa-no-shiki:37ED:/ -658.8 "In/Out" sync / 1[56]:[^:]*:Seiryu:(3A05|3A03):/ -#661.3 "Out/In" sync / 1[56]:[^:]*:Seiryu:(37DB|37D9):/ -661.8 "Out/In" sync / 1[56]:[^:]*:Seiryu:(3A06|3A04):/ -667.5 "Kanabo" sync / 1[56]:[^:]*:Iwa-no-shiki:37EE:/ -671.3 "--sync--" sync / 1[56]:[^:]*:Seiryu:37EF:/ -676.3 "Serpent Ascending" sync / 1[56]:[^:]*:Seiryu:37DC:/ -677.3 "Red Rush" sync / 1[56]:[^:]*:Aka-no-shiki:37F1:/ -677.3 "Blue Bolt" sync / 1[56]:[^:]*:Ao-no-shiki:37F0:/ -678.3 "--rotate--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -685.0 "Kuji-kiri" sync / 1[56]:[^:]*:Seiryu:37E1:/ -691.9 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -697.1 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -700.0 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -708.0 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -708.6 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -716.5 "Force of Nature" sync / 1[56]:[^:]*:Seiryu:37EB:/ -719.1 "Coursing River" sync / 1[56]:[^:]*:Seiryu:37F6:/ -721.6 "--jump--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -#725.1 "In/Out" sync / 1[56]:[^:]*:Seiryu:(37DA|37D8):/ -728.1 "In/Out" sync / 1[56]:[^:]*:Seiryu:(3A05|3A03):/ -#730.6 "Out/In" sync / 1[56]:[^:]*:Seiryu:(37DB|37D9):/ -731.1 "Out/In" sync / 1[56]:[^:]*:Seiryu:(3A06|3A04):/ -733.9 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -741.9 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -749.9 "Handprint" sync / 1[56]:[^:]*:Seiryu:37E8:/ -751.0 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -758.4 "Force of Nature" sync / 1[56]:[^:]*:Seiryu:37EB:/ -761.5 "Coursing River" sync / 1[56]:[^:]*:Seiryu:37F6:/ -768.6 "Forbidden Arts 1" sync / 1[56]:[^:]*:Seiryu:3C22:/ -770.6 "Forbidden Arts 2" sync / 1[56]:[^:]*:Seiryu:3C23:/ -777.6 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -794.6 "Cursekeeper" sync / 1[56]:[^:]*:Seiryu:37D2:/ -807.8 "Cursekeeper" sync / 1[56]:[^:]*:Seiryu:37D2:/ -817.0 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -823.0 "--jump--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -#826.5 "In/Out" sync / 1[56]:[^:]*:Seiryu:(37DA|37D8):/ -829.5 "In/Out" sync / 1[56]:[^:]*:Seiryu:(3A05|3A03):/ -#832.0 "Out/In" sync / 1[56]:[^:]*:Seiryu:(37DB|37D9):/ -832.5 "Out/In" sync / 1[56]:[^:]*:Seiryu:(3A06|3A04):/ -839.0 "Serpent Ascending" sync / 1[56]:[^:]*:Seiryu:3C25:/ -842.5 "--rotate--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -845.0 "Serpent Descending" sync / 1[56]:[^:]*:Seiryu:37DE:/ -849.0 "Serpent's Fang" sync / 1[56]:[^:]*:Seiryu:37DF:/ -849.0 "Kuji-kiri" sync / 1[56]:[^:]*:Seiryu:37E1:/ -857.6 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -869.6 "--rotate--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -876.9 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -883.9 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37C3:/ -906.0 "Enrage" sync / 1[56]:[^:]*:Seiryu:3CA9:/ +400.0 "Strength of Spirit" Ability { id: "37C9", source: "Seiryu" } window 400,0 +427.0 "Dragon's Wake" Ability { id: "37CB", source: "Seiryu" } +#429.5 "--rotate--" Ability { id: "37C4", source: "Seiryu" } +437.5 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +448.0 "Coursing River" Ability { id: "37F6", source: "Seiryu" } +462.0 "Handprint" Ability { id: "37E8", source: "Seiryu" } +466.5 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +470.0 "Handprint" Ability { id: "37E8", source: "Seiryu" } +478.0 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +478.0 "Handprint" Ability { id: "37E8", source: "Seiryu" } +486.5 "Force of Nature" Ability { id: "37EB", source: "Seiryu" } +488.5 "Coursing River" Ability { id: "37F6", source: "Seiryu" } +494.3 "Forbidden Arts" Ability { id: "37C7", source: "Seiryu" } +496.3 "Forbidden Arts" Ability { id: "37C8", source: "Seiryu" } +504.3 "--rotate--" Ability { id: "37C4", source: "Seiryu" } +511.9 "Blazing Aramitama" Ability { id: "37E4", source: "Seiryu" } +515.9 "--jump--" Ability { id: "37D5", source: "Seiryu" } +#519.4 "In/Out" Ability { id: ["37DA", "37D8"], source: "Seiryu" } +522.4 "In/Out" Ability { id: ["3A05", "3A03"], source: "Seiryu" } +#524.9 "Out/In" Ability { id: ["37DB", "37D9"], source: "Seiryu" } +525.4 "Out/In" Ability { id: ["3A06", "3A04"], source: "Seiryu" } +531.9 "--rotate--" Ability { id: "37C4", source: "Seiryu" } +538.6 "Kuji-kiri" Ability { id: "37E1", source: "Seiryu" } +541.6 "--jump--" Ability { id: "37D5", source: "Seiryu" } +#545.1 "In/Out" Ability { id: ["37DA", "37D8"], source: "Seiryu" } +548.1 "In/Out" Ability { id: ["3A05", "3A03"], source: "Seiryu" } +#550.6 "Out/In" Ability { id: ["37DB", "37D9"], source: "Seiryu" } +551.1 "Out/In" Ability { id: ["3A06", "3A04"], source: "Seiryu" } +558.6 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +572.6 "Serpent Ascending" Ability { id: "3C25", source: "Seiryu" } +578.6 "Serpent Descending" Ability { id: "37DE", source: "Seiryu" } +582.6 "Serpent's Fang" Ability { id: "37DF", source: "Seiryu" } +589.8 "Forbidden Arts 1" Ability { id: "3C22", source: "Seiryu" } +592.0 "Forbidden Arts 2" Ability { id: "3C23", source: "Seiryu" } +599.0 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +611.0 "Cursekeeper" Ability { id: "37D2", source: "Seiryu" } +624.1 "Cursekeeper" Ability { id: "37D2", source: "Seiryu" } +633.3 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +646.3 "Summon Shiki" Ability { id: "37CD", source: "Seiryu" } +652.3 "--jump--" Ability { id: "37D5", source: "Seiryu" } +#655.8 "In/Out" Ability { id: ["37DA", "37D8"], source: "Seiryu" } +658.4 "100-tonze Swing" Ability { id: "37ED", source: "Iwa-no-shiki" } +658.8 "In/Out" Ability { id: ["3A05", "3A03"], source: "Seiryu" } +#661.3 "Out/In" Ability { id: ["37DB", "37D9"], source: "Seiryu" } +661.8 "Out/In" Ability { id: ["3A06", "3A04"], source: "Seiryu" } +667.5 "Kanabo" Ability { id: "37EE", source: "Iwa-no-shiki" } +671.3 "--sync--" Ability { id: "37EF", source: "Seiryu" } +676.3 "Serpent Ascending" Ability { id: "37DC", source: "Seiryu" } +677.3 "Red Rush" Ability { id: "37F1", source: "Aka-no-shiki" } +677.3 "Blue Bolt" Ability { id: "37F0", source: "Ao-no-shiki" } +678.3 "--rotate--" Ability { id: "37C4", source: "Seiryu" } +685.0 "Kuji-kiri" Ability { id: "37E1", source: "Seiryu" } +691.9 "Handprint" Ability { id: "37E8", source: "Seiryu" } +697.1 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +700.0 "Handprint" Ability { id: "37E8", source: "Seiryu" } +708.0 "Handprint" Ability { id: "37E8", source: "Seiryu" } +708.6 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +716.5 "Force of Nature" Ability { id: "37EB", source: "Seiryu" } +719.1 "Coursing River" Ability { id: "37F6", source: "Seiryu" } +721.6 "--jump--" Ability { id: "37D5", source: "Seiryu" } +#725.1 "In/Out" Ability { id: ["37DA", "37D8"], source: "Seiryu" } +728.1 "In/Out" Ability { id: ["3A05", "3A03"], source: "Seiryu" } +#730.6 "Out/In" Ability { id: ["37DB", "37D9"], source: "Seiryu" } +731.1 "Out/In" Ability { id: ["3A06", "3A04"], source: "Seiryu" } +733.9 "Handprint" Ability { id: "37E8", source: "Seiryu" } +741.9 "Handprint" Ability { id: "37E8", source: "Seiryu" } +749.9 "Handprint" Ability { id: "37E8", source: "Seiryu" } +751.0 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +758.4 "Force of Nature" Ability { id: "37EB", source: "Seiryu" } +761.5 "Coursing River" Ability { id: "37F6", source: "Seiryu" } +768.6 "Forbidden Arts 1" Ability { id: "3C22", source: "Seiryu" } +770.6 "Forbidden Arts 2" Ability { id: "3C23", source: "Seiryu" } +777.6 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +794.6 "Cursekeeper" Ability { id: "37D2", source: "Seiryu" } +807.8 "Cursekeeper" Ability { id: "37D2", source: "Seiryu" } +817.0 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +823.0 "--jump--" Ability { id: "37D5", source: "Seiryu" } +#826.5 "In/Out" Ability { id: ["37DA", "37D8"], source: "Seiryu" } +829.5 "In/Out" Ability { id: ["3A05", "3A03"], source: "Seiryu" } +#832.0 "Out/In" Ability { id: ["37DB", "37D9"], source: "Seiryu" } +832.5 "Out/In" Ability { id: ["3A06", "3A04"], source: "Seiryu" } +839.0 "Serpent Ascending" Ability { id: "3C25", source: "Seiryu" } +842.5 "--rotate--" Ability { id: "37C4", source: "Seiryu" } +845.0 "Serpent Descending" Ability { id: "37DE", source: "Seiryu" } +849.0 "Serpent's Fang" Ability { id: "37DF", source: "Seiryu" } +849.0 "Kuji-kiri" Ability { id: "37E1", source: "Seiryu" } +857.6 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +869.6 "--rotate--" Ability { id: "37C4", source: "Seiryu" } +876.9 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +883.9 "Fifth Element" Ability { id: "37C3", source: "Seiryu" } +906.0 "Enrage" Ability { id: "3CA9", source: "Seiryu" } diff --git a/ui/raidboss/data/04-sb/trial/seiryu.txt b/ui/raidboss/data/04-sb/trial/seiryu.txt index 5dde0f396b..a8809c2436 100644 --- a/ui/raidboss/data/04-sb/trial/seiryu.txt +++ b/ui/raidboss/data/04-sb/trial/seiryu.txt @@ -7,116 +7,116 @@ hideall "--Reset--" hideall "--sync--" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.7 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ window 13,10 -24.8 "Infirm Soul" sync / 1[56]:[^:]*:Seiryu:37FD:/ -33.1 "--sync--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -39.8 "Onmyo Sigil / Serpent-Eye Sigil" sync / 1[56]:[^:]*:Seiryu:3A0[78]:/ -52.9 "Serpent Descending" sync / 1[56]:[^:]*:Seiryu:3804:/ -54.1 "--sync--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -60.8 "Serpent-Eye Sigil / Onmyo Sigil" sync / 1[56]:[^:]*:Seiryu:3A0[78]:/ -62.9 "--sync--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -69.3 "Kuji-Kiri" sync / 1[56]:[^:]*:Seiryu:37E1:/ -71.8 "Fortune-Blade Sigil" sync / 1[56]:[^:]*:Seiryu:3806:/ -88.6 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37CE:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.7 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } window 13,10 +24.8 "Infirm Soul" Ability { id: "37FD", source: "Seiryu" } +33.1 "--sync--" Ability { id: "37D5", source: "Seiryu" } +39.8 "Onmyo Sigil / Serpent-Eye Sigil" Ability { id: "3A0[78]", source: "Seiryu" } +52.9 "Serpent Descending" Ability { id: "3804", source: "Seiryu" } +54.1 "--sync--" Ability { id: "37D5", source: "Seiryu" } +60.8 "Serpent-Eye Sigil / Onmyo Sigil" Ability { id: "3A0[78]", source: "Seiryu" } +62.9 "--sync--" Ability { id: "37C4", source: "Seiryu" } +69.3 "Kuji-Kiri" Ability { id: "37E1", source: "Seiryu" } +71.8 "Fortune-Blade Sigil" Ability { id: "3806", source: "Seiryu" } +88.6 "Summon Shiki" Ability { id: "37CE", source: "Seiryu" } 90.7 "--untargetable--" ### Add Phase -90.7 "--sync--" sync / 1[56]:[^:]*:Seiryu:37C4:/ window 20,50 -95.7 "--sync--" sync / 1[56]:[^:]*:Ao-No-Shiki:37EF:/ -100.7 "--sync--" sync / 1[56]:[^:]*:Iwa-No-Shiki:37EC:/ -101.7 "Red Rush" sync / 1[56]:[^:]*:Aka-No-Shiki:3C1D:/ -101.7 "Blue Bolt" sync / 1[56]:[^:]*:Ao-No-Shiki:3C1C:/ -106.5 "100-Tonze Swing" sync / 1[56]:[^:]*:Iwa-No-Shiki:3C1E:/ +90.7 "--sync--" Ability { id: "37C4", source: "Seiryu" } window 20,50 +95.7 "--sync--" Ability { id: "37EF", source: "Ao-No-Shiki" } +100.7 "--sync--" Ability { id: "37EC", source: "Iwa-No-Shiki" } +101.7 "Red Rush" Ability { id: "3C1D", source: "Aka-No-Shiki" } +101.7 "Blue Bolt" Ability { id: "3C1C", source: "Ao-No-Shiki" } +106.5 "100-Tonze Swing" Ability { id: "3C1E", source: "Iwa-No-Shiki" } 107.4 "3x Doro-No-Shiki" 107.4 "1x Numa-No-Shiki" -112.7 "Yama-Kagura" sync / 1[56]:[^:]*:Ten-No-Shiki:3813:/ -118.8 "Kanabo" sync / 1[56]:[^:]*:Iwa-No-Shiki:3C1F:/ +112.7 "Yama-Kagura" Ability { id: "3813", source: "Ten-No-Shiki" } +118.8 "Kanabo" Ability { id: "3C1F", source: "Iwa-No-Shiki" } 123.8 "3x Doro-No-Shiki" 123.8 "1x Numa-No-Shiki" ### Final Phase -200.0 "--sync--" sync / 14:[^:]*:Seiryu:37C9:/ window 200,0 -205.0 "Strength Of Spirit" sync / 1[56]:[^:]*:Seiryu:37C9:/ -208.1 "--sync--" sync / 1[56]:[^:]*:Seiryu:37CA:/ -232.1 "Dragon's Wake" sync / 1[56]:[^:]*:Seiryu:3800:/ +200.0 "--sync--" StartsUsing { id: "37C9", source: "Seiryu" } window 200,0 +205.0 "Strength Of Spirit" Ability { id: "37C9", source: "Seiryu" } +208.1 "--sync--" Ability { id: "37CA", source: "Seiryu" } +232.1 "Dragon's Wake" Ability { id: "3800", source: "Seiryu" } 234.6 "--targetable--" -234.7 "--sync--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -243.9 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -251.9 "Coursing River" sync / 1[56]:[^:]*:Blue Orochi:37F5:/ -262.0 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -270.0 "Coursing River" sync / 1[56]:[^:]*:Blue Orochi:37F5:/ -271.2 "Forbidden Arts 1" sync / 1[56]:[^:]*:Seiryu:37C5:/ -278.6 "Forbidden Arts 2" sync / 1[56]:[^:]*:Seiryu:3C72:/ +234.7 "--sync--" Ability { id: "37C4", source: "Seiryu" } +243.9 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +251.9 "Coursing River" Ability { id: "37F5", source: "Blue Orochi" } +262.0 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +270.0 "Coursing River" Ability { id: "37F5", source: "Blue Orochi" } +271.2 "Forbidden Arts 1" Ability { id: "37C5", source: "Seiryu" } +278.6 "Forbidden Arts 2" Ability { id: "3C72", source: "Seiryu" } -283.7 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37CF:/ -293.8 "Handprint" sync / 1[56]:[^:]*:Yama-No-Shiki:37E[56]:/ -302.0 "Handprint" sync / 1[56]:[^:]*:Yama-No-Shiki:37E[56]:/ -309.8 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ -310.1 "Handprint" sync / 1[56]:[^:]*:Yama-No-Shiki:37E[56]:/ -318.2 "Force Of Nature" sync / 1[56]:[^:]*:Yama-No-Shiki:37E9:/ -334.1 "--sync--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -340.7 "Onmyo Sigil / Serpent-Eye Sigil" sync / 1[56]:[^:]*:Seiryu:3A0[78]:/ -342.9 "--sync--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -349.0 "Serpent Descending" sync / 1[56]:[^:]*:Seiryu:3804:/ -349.7 "Kuji-Kiri" sync / 1[56]:[^:]*:Seiryu:37E1:/ -352.2 "Fortune-Blade Sigil" sync / 1[56]:[^:]*:Seiryu:3806:/ -356.8 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ -370.0 "Infirm Soul" sync / 1[56]:[^:]*:Seiryu:37FD:/ -376.1 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ +283.7 "Summon Shiki" Ability { id: "37CF", source: "Seiryu" } +293.8 "Handprint" Ability { id: "37E[56]", source: "Yama-No-Shiki" } +302.0 "Handprint" Ability { id: "37E[56]", source: "Yama-No-Shiki" } +309.8 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } +310.1 "Handprint" Ability { id: "37E[56]", source: "Yama-No-Shiki" } +318.2 "Force Of Nature" Ability { id: "37E9", source: "Yama-No-Shiki" } +334.1 "--sync--" Ability { id: "37D5", source: "Seiryu" } +340.7 "Onmyo Sigil / Serpent-Eye Sigil" Ability { id: "3A0[78]", source: "Seiryu" } +342.9 "--sync--" Ability { id: "37C4", source: "Seiryu" } +349.0 "Serpent Descending" Ability { id: "3804", source: "Seiryu" } +349.7 "Kuji-Kiri" Ability { id: "37E1", source: "Seiryu" } +352.2 "Fortune-Blade Sigil" Ability { id: "3806", source: "Seiryu" } +356.8 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } +370.0 "Infirm Soul" Ability { id: "37FD", source: "Seiryu" } +376.1 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } # More adds -387.3 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37CD:/ -393.4 "--sync--" sync / 1[56]:[^:]*:Iwa-No-Shiki:37EC:/ -394.6 "--sync--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -399.2 "100-Tonze Swing" sync / 1[56]:[^:]*:Iwa-No-Shiki:3C1E:/ -401.2 "Onmyo Sigil / Serpent-Eye Sigil" sync / 1[56]:[^:]*:Seiryu:3A0[78]:/ -411.5 "Kanabo" sync / 1[56]:[^:]*:Iwa-No-Shiki:3C1F:/ -415.3 "--sync--" sync / 1[56]:[^:]*:Ao-No-Shiki:37EF:/ -421.3 "Red Rush" sync / 1[56]:[^:]*:Aka-No-Shiki:3C1D:/ -421.3 "Blue Bolt" sync / 1[56]:[^:]*:Ao-No-Shiki:3C1C:/ -424.4 "--sync--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -429.3 "Serpent Descending" sync / 1[56]:[^:]*:Seiryu:3804:/ -430.3 "Yama-Kagura" sync / 1[56]:[^:]*:Ten-No-Shiki:3813:/ -431.0 "Kuji-Kiri" sync / 1[56]:[^:]*:Seiryu:37E1:/ -433.5 "Fortune-Blade Sigil" sync / 1[56]:[^:]*:Seiryu:3806:/ -443.2 "Handprint" sync / 1[56]:[^:]*:Yama-No-Shiki:37E[56]:/ +387.3 "Summon Shiki" Ability { id: "37CD", source: "Seiryu" } +393.4 "--sync--" Ability { id: "37EC", source: "Iwa-No-Shiki" } +394.6 "--sync--" Ability { id: "37D5", source: "Seiryu" } +399.2 "100-Tonze Swing" Ability { id: "3C1E", source: "Iwa-No-Shiki" } +401.2 "Onmyo Sigil / Serpent-Eye Sigil" Ability { id: "3A0[78]", source: "Seiryu" } +411.5 "Kanabo" Ability { id: "3C1F", source: "Iwa-No-Shiki" } +415.3 "--sync--" Ability { id: "37EF", source: "Ao-No-Shiki" } +421.3 "Red Rush" Ability { id: "3C1D", source: "Aka-No-Shiki" } +421.3 "Blue Bolt" Ability { id: "3C1C", source: "Ao-No-Shiki" } +424.4 "--sync--" Ability { id: "37C4", source: "Seiryu" } +429.3 "Serpent Descending" Ability { id: "3804", source: "Seiryu" } +430.3 "Yama-Kagura" Ability { id: "3813", source: "Ten-No-Shiki" } +431.0 "Kuji-Kiri" Ability { id: "37E1", source: "Seiryu" } +433.5 "Fortune-Blade Sigil" Ability { id: "3806", source: "Seiryu" } +443.2 "Handprint" Ability { id: "37E[56]", source: "Yama-No-Shiki" } -448.1 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -451.4 "Handprint" sync / 1[56]:[^:]*:Yama-No-Shiki:37E[56]:/ -456.2 "Coursing River" sync / 1[56]:[^:]*:Blue Orochi:37F5:/ -459.5 "Handprint" sync / 1[56]:[^:]*:Yama-No-Shiki:37E[56]:/ -467.7 "Force Of Nature" sync / 1[56]:[^:]*:Yama-No-Shiki:37E9:/ +448.1 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +451.4 "Handprint" Ability { id: "37E[56]", source: "Yama-No-Shiki" } +456.2 "Coursing River" Ability { id: "37F5", source: "Blue Orochi" } +459.5 "Handprint" Ability { id: "37E[56]", source: "Yama-No-Shiki" } +467.7 "Force Of Nature" Ability { id: "37E9", source: "Yama-No-Shiki" } # towers -470.2 "Serpent Ascending" sync / 1[56]:[^:]*:Seiryu:3C25:/ -480.4 "Serpent's Fang" sync / 1[56]:[^:]*:Seiryu:3A8C:/ -484.4 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ -498.7 "--sync--" sync / 1[56]:[^:]*:Seiryu:37C4:/ -505.2 "Kuji-Kiri" sync / 1[56]:[^:]*:Seiryu:37E1:/ -505.6 "Serpent Descending" sync / 1[56]:[^:]*:Seiryu:3804:/ -507.7 "Fortune-Blade Sigil" sync / 1[56]:[^:]*:Seiryu:3806:/ -508.4 "--sync--" sync / 1[56]:[^:]*:Seiryu:37D5:/ -515.0 "Onmyo Sigil / Serpent-Eye Sigil" sync / 1[56]:[^:]*:Seiryu:3A0[78]:/ -524.1 "Infirm Soul" sync / 1[56]:[^:]*:Seiryu:37FD:/ -530.2 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ -540.4 "--sync--" sync / 1[56]:[^:]*:Seiryu:37C4:/ +470.2 "Serpent Ascending" Ability { id: "3C25", source: "Seiryu" } +480.4 "Serpent's Fang" Ability { id: "3A8C", source: "Seiryu" } +484.4 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } +498.7 "--sync--" Ability { id: "37C4", source: "Seiryu" } +505.2 "Kuji-Kiri" Ability { id: "37E1", source: "Seiryu" } +505.6 "Serpent Descending" Ability { id: "3804", source: "Seiryu" } +507.7 "Fortune-Blade Sigil" Ability { id: "3806", source: "Seiryu" } +508.4 "--sync--" Ability { id: "37D5", source: "Seiryu" } +515.0 "Onmyo Sigil / Serpent-Eye Sigil" Ability { id: "3A0[78]", source: "Seiryu" } +524.1 "Infirm Soul" Ability { id: "37FD", source: "Seiryu" } +530.2 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } +540.4 "--sync--" Ability { id: "37C4", source: "Seiryu" } -547.6 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -555.7 "Coursing River" sync / 1[56]:[^:]*:Blue Orochi:37F5:/ -558.8 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ -565.9 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37D0:/ -573.9 "Coursing River" sync / 1[56]:[^:]*:Blue Orochi:37F5:/ -575.1 "Forbidden Arts" sync / 1[56]:[^:]*:Seiryu:37C5:/ -582.4 "Forbidden Arts" sync / 1[56]:[^:]*:Seiryu:3C72:/ -588.5 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ -595.6 "Fifth Element" sync / 1[56]:[^:]*:Seiryu:37FE:/ +547.6 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +555.7 "Coursing River" Ability { id: "37F5", source: "Blue Orochi" } +558.8 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } +565.9 "Summon Shiki" Ability { id: "37D0", source: "Seiryu" } +573.9 "Coursing River" Ability { id: "37F5", source: "Blue Orochi" } +575.1 "Forbidden Arts" Ability { id: "37C5", source: "Seiryu" } +582.4 "Forbidden Arts" Ability { id: "3C72", source: "Seiryu" } +588.5 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } +595.6 "Fifth Element" Ability { id: "37FE", source: "Seiryu" } # adds loop -610.8 "Summon Shiki" sync / 1[56]:[^:]*:Seiryu:37CD:/ window 100,100 jump 387.3 -616.9 "--sync--" #sync / 1[56]:[^:]*:Iwa-No-Shiki:37EC:/ -618.1 "--sync--" #sync / 1[56]:[^:]*:Seiryu:37D5:/ -622.7 "100-Tonze Swing" #sync / 1[56]:[^:]*:Iwa-No-Shiki:3C1E:/ +610.8 "Summon Shiki" Ability { id: "37CD", source: "Seiryu" } window 100,100 jump 387.3 +616.9 "--sync--" #Ability { id: "37EC", source: "Iwa-No-Shiki" } +618.1 "--sync--" #Ability { id: "37D5", source: "Seiryu" } +622.7 "100-Tonze Swing" #Ability { id: "3C1E", source: "Iwa-No-Shiki" } 624.7 "Onmyo Sigil / Serpent-Eye Sigil" #ync /:Seiryu:3A0[78]:/ -635.0 "Kanabo" #sync / 1[56]:[^:]*:Iwa-No-Shiki:3C1F:/ -638.8 "--sync--" #sync / 1[56]:[^:]*:Ao-No-Shiki:37EF:/ +635.0 "Kanabo" #Ability { id: "3C1F", source: "Iwa-No-Shiki" } +638.8 "--sync--" #Ability { id: "37EF", source: "Ao-No-Shiki" } diff --git a/ui/raidboss/data/04-sb/trial/shinryu-ex.txt b/ui/raidboss/data/04-sb/trial/shinryu-ex.txt index 925b9b5747..b389b61743 100644 --- a/ui/raidboss/data/04-sb/trial/shinryu-ex.txt +++ b/ui/raidboss/data/04-sb/trial/shinryu-ex.txt @@ -12,113 +12,113 @@ hideall "--sync--" ### PHASE 1: Elemental carousel ### -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.3 "--sync--" sync / 14:[^:]*:Shinryu:25FD:/ window 20,20 -21.3 "Earthen Fury" sync / 1[56]:[^:]*:Shinryu:25DE:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.3 "--sync--" StartsUsing { id: "25FD", source: "Shinryu" } window 20,20 +21.3 "Earthen Fury" Ability { id: "25DE", source: "Shinryu" } 36.4 "--Tethers--" # Burning Chains (301) effect -44.5 "Tidal Wave" sync / 1[56]:[^:]*:Shinryu:25F9:/ +44.5 "Tidal Wave" Ability { id: "25F9", source: "Shinryu" } 49.7 "--Tail Marker (healer)--" # 007E headmarker -61.7 "Summon Icicle" sync / 1[56]:[^:]*:Left Wing:25EE:/ -62.4 "Icicle Impact" sync / 1[56]:[^:]*:Icicle:25EF:/ -67.0 "Spikesicle" sync / 1[56]:[^:]*:Icicle:25F0:/ -67.9 "Tail Slap" sync / 1[56]:[^:]*:Tail:25E2:/ -79.8 "Hypernova / Levinbolt" sync / 1[56]:[^:]*:Right Wing:(25E8|25EA):/ -90.9 "Dragonfist" sync / 1[56]:[^:]*:Shinryu:2610:/ -97.8 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:25F1:/ # sometimes 3 seconds earlier? -108.0 "Akh Morn 1" sync / 1[56]:[^:]*:Shinryu:25F3:/ duration 3.2 -110.1 "Akh Rhai" sync / 1[56]:[^:]*:Shinryu:25F5:/ duration 5.3 -116.3 "Summon Icicle" sync / 1[56]:[^:]*:Left Wing:25EE:/ -116.9 "Icicle Impact" sync / 1[56]:[^:]*:Icicle:25EF:/ -121.4 "Spikesicle" sync / 1[56]:[^:]*:Icicle:25F0:/ -123.3 "Judgment Bolt / Hellfire" sync / 1[56]:[^:]*:Shinryu:(25FA|25DC):/ +61.7 "Summon Icicle" Ability { id: "25EE", source: "Left Wing" } +62.4 "Icicle Impact" Ability { id: "25EF", source: "Icicle" } +67.0 "Spikesicle" Ability { id: "25F0", source: "Icicle" } +67.9 "Tail Slap" Ability { id: "25E2", source: "Tail" } +79.8 "Hypernova / Levinbolt" Ability { id: ["25E8", "25EA"], source: "Right Wing" } +90.9 "Dragonfist" Ability { id: "2610", source: "Shinryu" } +97.8 "Ice Storm" Ability { id: "25F1", source: "Left Wing" } # sometimes 3 seconds earlier? +108.0 "Akh Morn 1" Ability { id: "25F3", source: "Shinryu" } duration 3.2 +110.1 "Akh Rhai" Ability { id: "25F5", source: "Shinryu" } duration 5.3 +116.3 "Summon Icicle" Ability { id: "25EE", source: "Left Wing" } +116.9 "Icicle Impact" Ability { id: "25EF", source: "Icicle" } +121.4 "Spikesicle" Ability { id: "25F0", source: "Icicle" } +123.3 "Judgment Bolt / Hellfire" Ability { id: ["25FA", "25DC"], source: "Shinryu" } 138.4 "--Tail Marker (dps)--" -149.5 "Levinbolt" sync / 1[56]:[^:]*:Right Wing:25EA:/ -156.6 "Tail Slap" sync / 1[56]:[^:]*:Tail:25E2:/ -164.5 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:25F1:/ +149.5 "Levinbolt" Ability { id: "25EA", source: "Right Wing" } +156.6 "Tail Slap" Ability { id: "25E2", source: "Tail" } +164.5 "Ice Storm" Ability { id: "25F1", source: "Left Wing" } 171.8 "--Tethers (T/H)--" -180.6 "Earth Breath" sync / 1[56]:[^:]*:Shinryu:25EC:/ -188.0 "Akh Morn 2" sync / 1[56]:[^:]*:Shinryu:25F3:/ duration 3.2 -190.1 "Akh Rhai" sync / 1[56]:[^:]*:Shinryu:25F5:/ duration 5.3 -194.0 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:25F1:/ +180.6 "Earth Breath" Ability { id: "25EC", source: "Shinryu" } +188.0 "Akh Morn 2" Ability { id: "25F3", source: "Shinryu" } duration 3.2 +190.1 "Akh Rhai" Ability { id: "25F5", source: "Shinryu" } duration 5.3 +194.0 "Ice Storm" Ability { id: "25F1", source: "Left Wing" } 206.6 "--Tethers (healers)--" -208.2 "Diamond Dust" sync / 1[56]:[^:]*:Shinryu:25FC:/ +208.2 "Diamond Dust" Ability { id: "25FC", source: "Shinryu" } 224.9 "--Reiryu Adds--" 233.3 "--Tail Marker (tank)--" -251.5 "Tail Slap" sync / 1[56]:[^:]*:Tail:260D:/ -268.5 "Summon Icicle" sync / 1[56]:[^:]*:Left Wing:25EE:/ -269.1 "Icicle Impact" sync / 1[56]:[^:]*:Icicle:25EF:/ -272.4 "Akh Morn 3" sync / 1[56]:[^:]*:Shinryu:25F3:/ duration 3.2 -273.6 "Spikesicle" sync / 1[56]:[^:]*:Icicle:25F0:/ -274.5 "Akh Rhai" sync / 1[56]:[^:]*:Shinryu:25F5:/ duration 5.3 -285.3 "Super Cyclone 1" #sync / 1[56]:[^:]*:Shinryu:260C:/ -287.4 "Super Cyclone 2" #sync / 1[56]:[^:]*:Shinryu:260C:/ -289.5 "Super Cyclone 3" #sync / 1[56]:[^:]*:Shinryu:260C:/ -291.7 "Aerial Blast" sync / 1[56]:[^:]*:Shinryu:25FE:/ +251.5 "Tail Slap" Ability { id: "260D", source: "Tail" } +268.5 "Summon Icicle" Ability { id: "25EE", source: "Left Wing" } +269.1 "Icicle Impact" Ability { id: "25EF", source: "Icicle" } +272.4 "Akh Morn 3" Ability { id: "25F3", source: "Shinryu" } duration 3.2 +273.6 "Spikesicle" Ability { id: "25F0", source: "Icicle" } +274.5 "Akh Rhai" Ability { id: "25F5", source: "Shinryu" } duration 5.3 +285.3 "Super Cyclone 1" #Ability { id: "260C", source: "Shinryu" } +287.4 "Super Cyclone 2" #Ability { id: "260C", source: "Shinryu" } +289.5 "Super Cyclone 3" #Ability { id: "260C", source: "Shinryu" } +291.7 "Aerial Blast" Ability { id: "25FE", source: "Shinryu" } 292.7 "--Tethers (dps)--" -318.9 "Earth Breath" sync / 1[56]:[^:]*:Shinryu:25EC:/ -321.9 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:25F1:/ +318.9 "Earth Breath" Ability { id: "25EC", source: "Shinryu" } +321.9 "Ice Storm" Ability { id: "25F1", source: "Left Wing" } 325.3 "--untargetable--" -334.7 "--sync--" sync / 1[56]:[^:]*:Shinryu:25F7:/ -335.9 "Gyre Charge" sync / 1[56]:[^:]*:Shinryu:2603:/ +334.7 "--sync--" Ability { id: "25F7", source: "Shinryu" } +335.9 "Gyre Charge" Ability { id: "2603", source: "Shinryu" } 341.8 "--targetable--" -350.9 "Hypernova" sync / 1[56]:[^:]*:Right Wing:25E8:/ -363.0 "Akh Morn 4" sync / 1[56]:[^:]*:Shinryu:25F3:/ duration 4.3 -365.1 "Akh Rhai" sync / 1[56]:[^:]*:Shinryu:25F5:/ duration 5.3 -378.3 "Hypernova / Levinbolt" sync / 1[56]:[^:]*:Right Wing:(25E8|25EA):/ -384.3 "Tidal Wave" sync / 1[56]:[^:]*:Shinryu:25F9:/ +350.9 "Hypernova" Ability { id: "25E8", source: "Right Wing" } +363.0 "Akh Morn 4" Ability { id: "25F3", source: "Shinryu" } duration 4.3 +365.1 "Akh Rhai" Ability { id: "25F5", source: "Shinryu" } duration 5.3 +378.3 "Hypernova / Levinbolt" Ability { id: ["25E8", "25EA"], source: "Right Wing" } +384.3 "Tidal Wave" Ability { id: "25F9", source: "Shinryu" } 387.4 "--untargetable--" -394.8 "Dark Matter" #sync / 1[56]:[^:]*:Shinryu:25E7:/ +394.8 "Dark Matter" #Ability { id: "25E7", source: "Shinryu" } ### PHASE 2: Adds, explosions, dramatic tail climbing ### -500.0 "--Phase 2--" sync / 14:[^:]*:Shinryu:25E7:/ window 500,500 -503.0 "Dark Matter" sync / 1[56]:[^:]*:Shinryu:25E7:/ +500.0 "--Phase 2--" StartsUsing { id: "25E7", source: "Shinryu" } window 500,500 +503.0 "Dark Matter" Ability { id: "25E7", source: "Shinryu" } 513.0 "TAP BUTTON OR ELSE" duration 5 -540.7 "Touchdown" sync / 1[56]:[^:]*:Shinryu:2613:/ -545.2 "--sync--" sync / 1[56]:[^:]*:Shinryu:25D9:/ -552.3 "Meteor Impact 1" sync / 1[56]:[^:]*:Cocoon:25E5:/ -553.9 "--sync--" sync / 1[56]:[^:]*:Cocoon:2605:/ -571.1 "Meteor Impact 2" sync / 1[56]:[^:]*:Cocoon:25E5:/ -572.7 "--sync--" sync / 1[56]:[^:]*:Cocoon:2605:/ +540.7 "Touchdown" Ability { id: "2613", source: "Shinryu" } +545.2 "--sync--" Ability { id: "25D9", source: "Shinryu" } +552.3 "Meteor Impact 1" Ability { id: "25E5", source: "Cocoon" } +553.9 "--sync--" Ability { id: "2605", source: "Cocoon" } +571.1 "Meteor Impact 2" Ability { id: "25E5", source: "Cocoon" } +572.7 "--sync--" Ability { id: "2605", source: "Cocoon" } 588.0 "--Cocoon Markers--" -601.0 "Meteor Impact 3" sync / 1[56]:[^:]*:Cocoon:25E5:/ -602.6 "--sync--" sync / 1[56]:[^:]*:Cocoon:2605:/ +601.0 "Meteor Impact 3" Ability { id: "25E5", source: "Cocoon" } +602.6 "--sync--" Ability { id: "2605", source: "Cocoon" } ### PHASE 3: Anticlimax ### -800.0 "--Phase 3--" sync / 14:[^:]*:Shinryu:25E4:/ window 500,500 -806.0 "Protostar" sync / 1[56]:[^:]*:Shinryu:25E4:/ -813.1 "Tail Spit" sync / 1[56]:[^:]*:Shinryu:2615:/ -837.4 "Shatter" sync / 1[56]:[^:]*:Shinryu:2617:/ window 50,50 +800.0 "--Phase 3--" StartsUsing { id: "25E4", source: "Shinryu" } window 500,500 +806.0 "Protostar" Ability { id: "25E4", source: "Shinryu" } +813.1 "Tail Spit" Ability { id: "2615", source: "Shinryu" } +837.4 "Shatter" Ability { id: "2617", source: "Shinryu" } window 50,50 843.4 "--targetable--" # Loop 1 -855.5 "--sync--" sync / 14:[^:]*:Shinryu:264B:/ window 20,20 -859.5 "Tera Slash" sync / 1[56]:[^:]*:Shinryu:264B:/ -868.2 "Atomic Ray" sync / 1[56]:[^:]*:Shinryu:264C:/ -885.9 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:2722:/ -889.9 "Levinbolt / Hypernova" sync / 1[56]:[^:]*:Right Wing:(2720|271F):/ -897.9 "Wormwail / Benighting Breath" sync / 1[56]:[^:]*:Shinryu:(2648|2649):/ -907.1 "Tera Slash" sync / 1[56]:[^:]*:Shinryu:264B:/ +855.5 "--sync--" StartsUsing { id: "264B", source: "Shinryu" } window 20,20 +859.5 "Tera Slash" Ability { id: "264B", source: "Shinryu" } +868.2 "Atomic Ray" Ability { id: "264C", source: "Shinryu" } +885.9 "Ice Storm" Ability { id: "2722", source: "Left Wing" } +889.9 "Levinbolt / Hypernova" Ability { id: ["2720", "271F"], source: "Right Wing" } +897.9 "Wormwail / Benighting Breath" Ability { id: ["2648", "2649"], source: "Shinryu" } +907.1 "Tera Slash" Ability { id: "264B", source: "Shinryu" } 910.8 "--Reiryu Adds--" # Loop 2 -957.4 "Tera Slash" sync / 1[56]:[^:]*:Shinryu:264B:/ window 20,20 -966.1 "Atomic Ray" sync / 1[56]:[^:]*:Shinryu:264C:/ -983.8 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:2722:/ -987.8 "Levinbolt / Hypernova" sync / 1[56]:[^:]*:Right Wing:(2720|271F):/ -995.9 "Wormwail / Benighting Breath" sync / 1[56]:[^:]*:Shinryu:(2648|2649):/ -1005.1 "Tera Slash" sync / 1[56]:[^:]*:Shinryu:264B:/ +957.4 "Tera Slash" Ability { id: "264B", source: "Shinryu" } window 20,20 +966.1 "Atomic Ray" Ability { id: "264C", source: "Shinryu" } +983.8 "Ice Storm" Ability { id: "2722", source: "Left Wing" } +987.8 "Levinbolt / Hypernova" Ability { id: ["2720", "271F"], source: "Right Wing" } +995.9 "Wormwail / Benighting Breath" Ability { id: ["2648", "2649"], source: "Shinryu" } +1005.1 "Tera Slash" Ability { id: "264B", source: "Shinryu" } 1009.1 "--Reiryu Adds--" ### PHASE 4: Race to the finish! ### -1046.0 "--sync--" sync / 14:[^:]*:Shinryu:264E:/ window 300,300 +1046.0 "--sync--" StartsUsing { id: "264E", source: "Shinryu" } window 300,300 1085.0 "First Wing" # 35 second cast, starts 4 seconds later, 2718/2719 1090.0 "Second Wing" # 35 second cast, starts 9 seconds later, 2719/2718 -1116.0 "Tidal Wave" sync / 1[56]:[^:]*:Shinryu:264E:/ # 70 second cast +1116.0 "Tidal Wave" Ability { id: "264E", source: "Shinryu" } # 70 second cast diff --git a/ui/raidboss/data/04-sb/trial/shinryu.txt b/ui/raidboss/data/04-sb/trial/shinryu.txt index e98d4e0c70..2457454f78 100644 --- a/ui/raidboss/data/04-sb/trial/shinryu.txt +++ b/ui/raidboss/data/04-sb/trial/shinryu.txt @@ -6,80 +6,80 @@ hideall "--sync--" # Elemental Attack is one of: # Aerial Blast, Judgment Bolt, Diamond Dust, Hellfire, Earthen Fury, Tidal Wave -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -20.6 "Tidal Wave" sync / 1[56]:[^:]*:Shinryu:1FAA:/ window 20.6,5 -38.8 "Hypernova/Levinbolt" sync / 1[56]:[^:]*:Right Wing:1F9[9B]:/ -49.9 "Akh Morn" sync / 1[56]:[^:]*:Shinryu:1FA4:/ -59.2 "Summon Icicle" sync / 1[56]:[^:]*:Left Wing:1F9F:/ -59.9 "Icicle Impact x2" # sync / 1[56]:[^:]*:Icicle:1FA0:/ -64.4 "Spikesicle x2" # sync / 1[56]:[^:]*:Icicle:1FA1:/ -75.2 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:1FA2:/ -88.3 "Earth Breath" sync / 1[56]:[^:]*:Shinryu:1F9D:/ # May be skipped with high DPS -115.8 "Hellfire/Judgment Bolt"sync / 1[56]:[^:]*:Shinryu:1FA[BC]:/ window 30,30 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +20.6 "Tidal Wave" Ability { id: "1FAA", source: "Shinryu" } window 20.6,5 +38.8 "Hypernova/Levinbolt" Ability { id: "1F9[9B]", source: "Right Wing" } +49.9 "Akh Morn" Ability { id: "1FA4", source: "Shinryu" } +59.2 "Summon Icicle" Ability { id: "1F9F", source: "Left Wing" } +59.9 "Icicle Impact x2" # Ability { id: "1FA0", source: "Icicle" } +64.4 "Spikesicle x2" # Ability { id: "1FA1", source: "Icicle" } +75.2 "Ice Storm" Ability { id: "1FA2", source: "Left Wing" } +88.3 "Earth Breath" Ability { id: "1F9D", source: "Shinryu" } # May be skipped with high DPS +115.8 "Hellfire/Judgment Bolt"Ability { id: "1FA[BC]", source: "Shinryu" } window 30,30 118.1 "--untargetable--" # Intermission. # The given times for Meteor Impact are the latest they can occur. -119.0 "--sync--" sync / 1[56]:[^:]*:Shinryu:1F8A:/ window 120,5 -125.4 "--sync--" sync / 14:[^:]*:Cocoon:1F96:/ window 10,5 -129.1 "Meteor Impact" sync / 1[56]:[^:]*:Cocoon:1F96:/ -130.6 "--adds spawn--" sync / 1[56]:[^:]*:Cocoon:2142:/ -146.2 "--sync--" sync / 14:[^:]*:Cocoon:1F96:/ window 15,5 -150.9 "Meteor Impact" sync / 1[56]:[^:]*:Cocoon:1F96:/ -152.5 "--adds spawn--" sync / 1[56]:[^:]*:Cocoon:2142:/ -176.1 "--sync--" sync / 14:[^:]*:Cocoon:1F96:/ window 25,5 -180.8 "Meteor Impact" sync / 1[56]:[^:]*:Cocoon:1F96:/ -182.4 "--adds spawn--" sync / 1[56]:[^:]*:Cocoon:2142:/ -219.7 "--sync--" sync / 14:[^:]*:Shinryu:1F95:/ window 220,5 -225.2 "Protostar" sync / 1[56]:[^:]*:Shinryu:1F95:/ -234.3 "Dark Matter" sync / 1[56]:[^:]*:Shinryu:1F98:/ -240.5 "--sync--" sync / 1[56]:[^:]*:Shinryu:2128:/ +119.0 "--sync--" Ability { id: "1F8A", source: "Shinryu" } window 120,5 +125.4 "--sync--" StartsUsing { id: "1F96", source: "Cocoon" } window 10,5 +129.1 "Meteor Impact" Ability { id: "1F96", source: "Cocoon" } +130.6 "--adds spawn--" Ability { id: "2142", source: "Cocoon" } +146.2 "--sync--" StartsUsing { id: "1F96", source: "Cocoon" } window 15,5 +150.9 "Meteor Impact" Ability { id: "1F96", source: "Cocoon" } +152.5 "--adds spawn--" Ability { id: "2142", source: "Cocoon" } +176.1 "--sync--" StartsUsing { id: "1F96", source: "Cocoon" } window 25,5 +180.8 "Meteor Impact" Ability { id: "1F96", source: "Cocoon" } +182.4 "--adds spawn--" Ability { id: "2142", source: "Cocoon" } +219.7 "--sync--" StartsUsing { id: "1F95", source: "Shinryu" } window 220,5 +225.2 "Protostar" Ability { id: "1F95", source: "Shinryu" } +234.3 "Dark Matter" Ability { id: "1F98", source: "Shinryu" } +240.5 "--sync--" Ability { id: "2128", source: "Shinryu" } 244.9 "TAP BUTTON OR ELSE" # Doesn't seem to have an actual log line to sync # Post-intermission block -271.9 "Gyre Charge" sync / 1[56]:[^:]*:Shinryu:1FA8:/ +271.9 "Gyre Charge" Ability { id: "1FA8", source: "Shinryu" } 279.1 "--targetable--" -290.3 "Tail Slap" sync / 1[56]:[^:]*:Tail:1F93:/ -311.3 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:1FA2:/ -317.4 "Tail Slap" sync / 1[56]:[^:]*:Tail:1F93:/ -328.4 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:1FA2:/ -335.5 "Dragonfist" sync / 1[56]:[^:]*:Shinryu:24EF:/ window 30,30 -353.6 "Elemental Attack" sync / 1[56]:[^:]*:Shinryu:1FA[ABCDEF]:/ -360.8 "--sync--" sync / 1[56]:[^:]*:Shinryu:1F9[12]:/ window 30,15 -363.7 "Summon Icicle" sync / 1[56]:[^:]*:Left Wing:1F9F:/ -364.3 "Icicle Impact x2" # sync / 1[56]:[^:]*:Icicle:1FA0:/ -368.8 "Spikesicle x2" # sync / 1[56]:[^:]*:Icicle:1FA1:/ -370.8 "Tail Slap" sync / 1[56]:[^:]*:Tail:1F93:/ -377.8 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:1FA2:/ -387.8 "Hypernova/Levinbolt" sync / 1[56]:[^:]*:Right Wing:1F9[9B]:/ -388.0 "--sync--" sync / 1[56]:[^:]*:Shinryu:1F9[12]:/ -398.1 "Tail Slap" sync / 1[56]:[^:]*:Tail:1F93:/ -425.2 "Elemental Attack" sync / 1[56]:[^:]*:Shinryu:1FA[ABCDEF]:/ -425.2 "--sync--" sync / 1[56]:[^:]*:Shinryu:23BA:/ +290.3 "Tail Slap" Ability { id: "1F93", source: "Tail" } +311.3 "Ice Storm" Ability { id: "1FA2", source: "Left Wing" } +317.4 "Tail Slap" Ability { id: "1F93", source: "Tail" } +328.4 "Ice Storm" Ability { id: "1FA2", source: "Left Wing" } +335.5 "Dragonfist" Ability { id: "24EF", source: "Shinryu" } window 30,30 +353.6 "Elemental Attack" Ability { id: "1FA[ABCDEF]", source: "Shinryu" } +360.8 "--sync--" Ability { id: "1F9[12]", source: "Shinryu" } window 30,15 +363.7 "Summon Icicle" Ability { id: "1F9F", source: "Left Wing" } +364.3 "Icicle Impact x2" # Ability { id: "1FA0", source: "Icicle" } +368.8 "Spikesicle x2" # Ability { id: "1FA1", source: "Icicle" } +370.8 "Tail Slap" Ability { id: "1F93", source: "Tail" } +377.8 "Ice Storm" Ability { id: "1FA2", source: "Left Wing" } +387.8 "Hypernova/Levinbolt" Ability { id: "1F9[9B]", source: "Right Wing" } +388.0 "--sync--" Ability { id: "1F9[12]", source: "Shinryu" } +398.1 "Tail Slap" Ability { id: "1F93", source: "Tail" } +425.2 "Elemental Attack" Ability { id: "1FA[ABCDEF]", source: "Shinryu" } +425.2 "--sync--" Ability { id: "23BA", source: "Shinryu" } # Rotation to 0% HP -434.4 "Akh Morn x3" sync / 1[56]:[^:]*:Shinryu:1FA4:/ window 30,30 +434.4 "Akh Morn x3" Ability { id: "1FA4", source: "Shinryu" } window 30,30 440.7 "--untargetable--" -450.1 "Gyre Charge" sync / 1[56]:[^:]*:Shinryu:1FA8:/ +450.1 "Gyre Charge" Ability { id: "1FA8", source: "Shinryu" } 457.2 "--targetable--" -466.4 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:1FA2:/ -478.4 "Dragonfist" sync / 1[56]:[^:]*:Shinryu:24EF:/ window 30,30 -484.4 "Hypernova/Levinbolt" sync / 1[56]:[^:]*:Right Wing:1F9[9B]:/ -496.5 "Elemental Attack" sync / 1[56]:[^:]*:Shinryu:1FA[ABCDEF]:/ -507.7 "--sync--" sync / 1[56]:[^:]*:Shinryu:1F9[12]:/ window 30,15 -509.7 "Summon Icicle" sync / 1[56]:[^:]*:Left Wing:1F9F:/ -510.3 "Icicle Impact" # sync / 1[56]:[^:]*:Icicle:1FA0:/ -514.8 "Spikesicle x2" # sync / 1[56]:[^:]*:Icicle:1FA1:/ -517.9 "Tail Slap" sync / 1[56]:[^:]*:Tail:1F93:/ -527.8 "Hypernova/Levinbolt" sync / 1[56]:[^:]*:Right Wing:1F9[9B]:/ -540.8 "Akh Morn x3" # sync / 1[56]:[^:]*:Shinryu:1FA4:/ duration 5 -548.9 "Ice Storm" sync / 1[56]:[^:]*:Left Wing:1FA2:/ -555.2 "Earth Breath" sync / 1[56]:[^:]*:Shinryu:1F9D:/ -569.6 "Elemental Attack" sync / 1[56]:[^:]*:Shinryu:1FA[ABCDEF]:/ +466.4 "Ice Storm" Ability { id: "1FA2", source: "Left Wing" } +478.4 "Dragonfist" Ability { id: "24EF", source: "Shinryu" } window 30,30 +484.4 "Hypernova/Levinbolt" Ability { id: "1F9[9B]", source: "Right Wing" } +496.5 "Elemental Attack" Ability { id: "1FA[ABCDEF]", source: "Shinryu" } +507.7 "--sync--" Ability { id: "1F9[12]", source: "Shinryu" } window 30,15 +509.7 "Summon Icicle" Ability { id: "1F9F", source: "Left Wing" } +510.3 "Icicle Impact" # Ability { id: "1FA0", source: "Icicle" } +514.8 "Spikesicle x2" # Ability { id: "1FA1", source: "Icicle" } +517.9 "Tail Slap" Ability { id: "1F93", source: "Tail" } +527.8 "Hypernova/Levinbolt" Ability { id: "1F9[9B]", source: "Right Wing" } +540.8 "Akh Morn x3" # Ability { id: "1FA4", source: "Shinryu" } duration 5 +548.9 "Ice Storm" Ability { id: "1FA2", source: "Left Wing" } +555.2 "Earth Breath" Ability { id: "1F9D", source: "Shinryu" } +569.6 "Elemental Attack" Ability { id: "1FA[ABCDEF]", source: "Shinryu" } -578.8 "Akh Morn x3" sync / 1[56]:[^:]*:Shinryu:1FA4:/ jump 434.4 +578.8 "Akh Morn x3" Ability { id: "1FA4", source: "Shinryu" } jump 434.4 585.1 "--untargetable--" 594.5 "Gyre Charge" 601.6 "--targetable--" diff --git a/ui/raidboss/data/04-sb/trial/susano-ex.txt b/ui/raidboss/data/04-sb/trial/susano-ex.txt index f06398ac0b..d286238b5a 100644 --- a/ui/raidboss/data/04-sb/trial/susano-ex.txt +++ b/ui/raidboss/data/04-sb/trial/susano-ex.txt @@ -11,25 +11,25 @@ hideall "Yasakani-No-Magatama" hideall "--knockback cloud--" ### Phase 1 ### -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.1 "Assail" sync / 1[56]:[^:]*:Susano:202C:/ window 10,10 -12.3 "Churn" sync / 1[56]:[^:]*:Susano:203E:/ -36.4 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:202F:/ -40.7 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -42.5 "Brightstorm" sync / 1[56]:[^:]*:Susano:2030:/ -47.7 "Assail" sync / 1[56]:[^:]*:Susano:202C:/ -50.8 "Churn" sync / 1[56]:[^:]*:Susano:203E:/ -58.8 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:202D:/ -70.0 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:2040:/ -77.1 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:202F:/ -81.4 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -81.5 "The Parting Clouds" sync / 1[56]:[^:]*:Thunderhead:2041:/ -88.2 "Assail" sync / 1[56]:[^:]*:Susano:202C:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.1 "Assail" Ability { id: "202C", source: "Susano" } window 10,10 +12.3 "Churn" Ability { id: "203E", source: "Susano" } +36.4 "Yata-No-Kagami" Ability { id: "202F", source: "Susano" } +40.7 "Seasplitter" Ability { id: "25BD", source: "Susano" } +42.5 "Brightstorm" Ability { id: "2030", source: "Susano" } +47.7 "Assail" Ability { id: "202C", source: "Susano" } +50.8 "Churn" Ability { id: "203E", source: "Susano" } +58.8 "Rasen Kaikyo" Ability { id: "202D", source: "Susano" } +70.0 "Yasakani-No-Magatama" Ability { id: "2040", source: "Susano" } +77.1 "Yata-No-Kagami" Ability { id: "202F", source: "Susano" } +81.4 "Seasplitter" Ability { id: "25BD", source: "Susano" } +81.5 "The Parting Clouds" Ability { id: "2041", source: "Thunderhead" } +88.2 "Assail" Ability { id: "202C", source: "Susano" } 93.8 "--untargetable--" ### Phase 2 (hp push at ???% / time push) # sync to touching the Blade's Shadow, this happens twice -300.0 "--sync--" sync / 1[56]:[^:]*:Susano:21C6:/ window 300,100 +300.0 "--sync--" Ability { id: "21C6", source: "Susano" } window 300,100 305.6 "--targetable--" 305.6 "--Dark Levin 1--" 308.4 "--Dark Levin 2--" @@ -37,94 +37,94 @@ hideall "--knockback cloud--" 314.4 "--Dark Levin 4--" ### Phase 3 ### -400.0 "Ame-No-Murakumo" sync / 1[56]:[^:]*:Susano:2032:/ window 400,100 -404.1 "Ame-No-Murakumo" sync / 1[56]:[^:]*:Susano:218C:/ +400.0 "Ame-No-Murakumo" Ability { id: "2032", source: "Susano" } window 400,100 +404.1 "Ame-No-Murakumo" Ability { id: "218C", source: "Susano" } 413.6 "--targetable--" -425.9 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2033:/ -432.6 "Levinbolt 1" sync / 1[56]:[^:]*:Susano:203C:/ -438.1 "Levinbolt 2" sync / 1[56]:[^:]*:Susano:203C:/ -443.5 "Levinbolt 3" sync / 1[56]:[^:]*:Susano:203C:/ -449.0 "Levinbolt 4" sync / 1[56]:[^:]*:Susano:203C:/ -458.9 "Ukehi x2" sync / 1[56]:[^:]*:Susano:2036:/ -467.2 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:2040:/ +425.9 "Stormsplitter" Ability { id: "2033", source: "Susano" } +432.6 "Levinbolt 1" Ability { id: "203C", source: "Susano" } +438.1 "Levinbolt 2" Ability { id: "203C", source: "Susano" } +443.5 "Levinbolt 3" Ability { id: "203C", source: "Susano" } +449.0 "Levinbolt 4" Ability { id: "203C", source: "Susano" } +458.9 "Ukehi x2" Ability { id: "2036", source: "Susano" } +467.2 "Yasakani-No-Magatama" Ability { id: "2040", source: "Susano" } 474.5 "--knockback cloud--" -474.5 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:202F:/ -478.8 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -478.9 "The Parting Clouds" sync / 1[56]:[^:]*:Thunderhead:2041:/ -480.6 "Brightstorm" sync / 1[56]:[^:]*:Susano:2030:/ +474.5 "Yata-No-Kagami" Ability { id: "202F", source: "Susano" } +478.8 "Seasplitter" Ability { id: "25BD", source: "Susano" } +478.9 "The Parting Clouds" Ability { id: "2041", source: "Thunderhead" } +480.6 "Brightstorm" Ability { id: "2030", source: "Susano" } -490.8 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2033:/ -495.9 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:2040:/ -497.5 "Levinbolt 1" sync / 1[56]:[^:]*:Susano:203C:/ -503.0 "Levinbolt 2" sync / 1[56]:[^:]*:Susano:203C:/ -506.7 "The Parting Clouds" sync / 1[56]:[^:]*:Thunderhead:2041:/ -508.5 "Levinbolt 3" sync / 1[56]:[^:]*:Susano:203C:/ -514.0 "Levinbolt 4" sync / 1[56]:[^:]*:Susano:203C:/ -521.1 "Ukehi x3" sync / 1[56]:[^:]*:Susano:2036:/ +490.8 "Stormsplitter" Ability { id: "2033", source: "Susano" } +495.9 "Yasakani-No-Magatama" Ability { id: "2040", source: "Susano" } +497.5 "Levinbolt 1" Ability { id: "203C", source: "Susano" } +503.0 "Levinbolt 2" Ability { id: "203C", source: "Susano" } +506.7 "The Parting Clouds" Ability { id: "2041", source: "Thunderhead" } +508.5 "Levinbolt 3" Ability { id: "203C", source: "Susano" } +514.0 "Levinbolt 4" Ability { id: "203C", source: "Susano" } +521.1 "Ukehi x3" Ability { id: "2036", source: "Susano" } -531.5 "The Hidden Gate" sync / 1[56]:[^:]*:Susano:2034:/ -547.2 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:202D:/ -554.5 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2033:/ -557.1 "The Sealed Gate" sync / 1[56]:[^:]*:Ama-No-Iwato:2035:/ -566.7 "Levinbolt Stun 1" sync / 1[56]:[^:]*:Susano:203C:/ -573.2 "Levinbolt Stun 2" sync / 1[56]:[^:]*:Susano:203C:/ -579.7 "Levinbolt Stun 3" sync / 1[56]:[^:]*:Susano:203C:/ -586.2 "Levinbolt Stun 4" sync / 1[56]:[^:]*:Susano:203C:/ -592.6 "Ukehi x3" sync / 1[56]:[^:]*:Susano:2036:/ -604.0 "Churn" sync / 1[56]:[^:]*:Susano:203E:/ -611.2 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:202F:/ -615.5 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -617.3 "Brightstorm" sync / 1[56]:[^:]*:Susano:2030:/ -622.4 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:202D:/ +531.5 "The Hidden Gate" Ability { id: "2034", source: "Susano" } +547.2 "Rasen Kaikyo" Ability { id: "202D", source: "Susano" } +554.5 "Stormsplitter" Ability { id: "2033", source: "Susano" } +557.1 "The Sealed Gate" Ability { id: "2035", source: "Ama-No-Iwato" } +566.7 "Levinbolt Stun 1" Ability { id: "203C", source: "Susano" } +573.2 "Levinbolt Stun 2" Ability { id: "203C", source: "Susano" } +579.7 "Levinbolt Stun 3" Ability { id: "203C", source: "Susano" } +586.2 "Levinbolt Stun 4" Ability { id: "203C", source: "Susano" } +592.6 "Ukehi x3" Ability { id: "2036", source: "Susano" } +604.0 "Churn" Ability { id: "203E", source: "Susano" } +611.2 "Yata-No-Kagami" Ability { id: "202F", source: "Susano" } +615.5 "Seasplitter" Ability { id: "25BD", source: "Susano" } +617.3 "Brightstorm" Ability { id: "2030", source: "Susano" } +622.4 "Rasen Kaikyo" Ability { id: "202D", source: "Susano" } -632.7 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2033:/ -642.9 "Levinbolt Stun 1" sync / 1[56]:[^:]*:Susano:203C:/ -649.3 "Levinbolt Stun 2" sync / 1[56]:[^:]*:Susano:203C:/ -655.9 "Levinbolt Stun 3" sync / 1[56]:[^:]*:Susano:203C:/ -662.4 "Levinbolt Stun 4" sync / 1[56]:[^:]*:Susano:203C:/ -669.8 "Ukehi x3" sync / 1[56]:[^:]*:Susano:2036:/ -676.1 "Churn" sync / 1[56]:[^:]*:Susano:203E:/ -684.1 "Rasen Kaikyo 1" sync / 1[56]:[^:]*:Susano:202D:/ -689.3 "Rasen Kaikyo 2" sync / 1[56]:[^:]*:Susano:202D:/ +632.7 "Stormsplitter" Ability { id: "2033", source: "Susano" } +642.9 "Levinbolt Stun 1" Ability { id: "203C", source: "Susano" } +649.3 "Levinbolt Stun 2" Ability { id: "203C", source: "Susano" } +655.9 "Levinbolt Stun 3" Ability { id: "203C", source: "Susano" } +662.4 "Levinbolt Stun 4" Ability { id: "203C", source: "Susano" } +669.8 "Ukehi x3" Ability { id: "2036", source: "Susano" } +676.1 "Churn" Ability { id: "203E", source: "Susano" } +684.1 "Rasen Kaikyo 1" Ability { id: "202D", source: "Susano" } +689.3 "Rasen Kaikyo 2" Ability { id: "202D", source: "Susano" } -701.6 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2033:/ -706.7 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:2040:/ -708.3 "Levinbolt 1" sync / 1[56]:[^:]*:Susano:203C:/ -713.8 "Levinbolt 2" sync / 1[56]:[^:]*:Susano:203C:/ -713.8 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:202D:/ -717.4 "The Parting Clouds" sync / 1[56]:[^:]*:Thunderhead:2041:/ -719.2 "Levinbolt 3" sync / 1[56]:[^:]*:Susano:203C:/ -723.9 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:202D:/ -724.7 "Levinbolt 4" sync / 1[56]:[^:]*:Susano:203C:/ -728.1 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:2040:/ +701.6 "Stormsplitter" Ability { id: "2033", source: "Susano" } +706.7 "Yasakani-No-Magatama" Ability { id: "2040", source: "Susano" } +708.3 "Levinbolt 1" Ability { id: "203C", source: "Susano" } +713.8 "Levinbolt 2" Ability { id: "203C", source: "Susano" } +713.8 "Rasen Kaikyo" Ability { id: "202D", source: "Susano" } +717.4 "The Parting Clouds" Ability { id: "2041", source: "Thunderhead" } +719.2 "Levinbolt 3" Ability { id: "203C", source: "Susano" } +723.9 "Rasen Kaikyo" Ability { id: "202D", source: "Susano" } +724.7 "Levinbolt 4" Ability { id: "203C", source: "Susano" } +728.1 "Yasakani-No-Magatama" Ability { id: "2040", source: "Susano" } 735.3 "--knockback cloud--" -735.3 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:202F:/ -739.6 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -739.7 "The Parting Clouds" sync / 1[56]:[^:]*:Thunderhead:2041:/ -741.4 "Brightstorm" sync / 1[56]:[^:]*:Susano:2030:/ -748.5 "Ukehi x3" sync / 1[56]:[^:]*:Susano:2036:/ +735.3 "Yata-No-Kagami" Ability { id: "202F", source: "Susano" } +739.6 "Seasplitter" Ability { id: "25BD", source: "Susano" } +739.7 "The Parting Clouds" Ability { id: "2041", source: "Thunderhead" } +741.4 "Brightstorm" Ability { id: "2030", source: "Susano" } +748.5 "Ukehi x3" Ability { id: "2036", source: "Susano" } -760.0 "The Hidden Gate" sync / 1[56]:[^:]*:Susano:2034:/ -776.0 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2033:/ -781.1 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:2040:/ -782.7 "Levinbolt 1" sync / 1[56]:[^:]*:Susano:203C:/ -785.6 "The Sealed Gate" sync / 1[56]:[^:]*:Ama-No-Iwato:2035:/ -788.2 "Levinbolt 2" sync / 1[56]:[^:]*:Susano:203C:/ -791.9 "The Parting Clouds" sync / 1[56]:[^:]*:Thunderhead:2041:/ -793.7 "Levinbolt 3" sync / 1[56]:[^:]*:Susano:203C:/ -797.3 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -799.2 "Levinbolt 4" sync / 1[56]:[^:]*:Susano:203C:/ -807.3 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:2040:/ -812.4 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:202D:/ -814.8 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:202F:/ -819.1 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -819.2 "The Parting Clouds" sync / 1[56]:[^:]*:Thunderhead:2041:/ -820.9 "Brightstorm" sync / 1[56]:[^:]*:Susano:2030:/ -826.0 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:202D:/ -832.1 "Ukehi x3" sync / 1[56]:[^:]*:Susano:2036:/ +760.0 "The Hidden Gate" Ability { id: "2034", source: "Susano" } +776.0 "Stormsplitter" Ability { id: "2033", source: "Susano" } +781.1 "Yasakani-No-Magatama" Ability { id: "2040", source: "Susano" } +782.7 "Levinbolt 1" Ability { id: "203C", source: "Susano" } +785.6 "The Sealed Gate" Ability { id: "2035", source: "Ama-No-Iwato" } +788.2 "Levinbolt 2" Ability { id: "203C", source: "Susano" } +791.9 "The Parting Clouds" Ability { id: "2041", source: "Thunderhead" } +793.7 "Levinbolt 3" Ability { id: "203C", source: "Susano" } +797.3 "Seasplitter" Ability { id: "25BD", source: "Susano" } +799.2 "Levinbolt 4" Ability { id: "203C", source: "Susano" } +807.3 "Yasakani-No-Magatama" Ability { id: "2040", source: "Susano" } +812.4 "Rasen Kaikyo" Ability { id: "202D", source: "Susano" } +814.8 "Yata-No-Kagami" Ability { id: "202F", source: "Susano" } +819.1 "Seasplitter" Ability { id: "25BD", source: "Susano" } +819.2 "The Parting Clouds" Ability { id: "2041", source: "Thunderhead" } +820.9 "Brightstorm" Ability { id: "2030", source: "Susano" } +826.0 "Rasen Kaikyo" Ability { id: "202D", source: "Susano" } +832.1 "Ukehi x3" Ability { id: "2036", source: "Susano" } -843.6 "The Hidden Gate" sync / 1[56]:[^:]*:Susano:2034:/ window 40,40 jump 531.5 -859.3 "Rasen Kaikyo" #sync / 1[56]:[^:]*:Susano:202D:/ -866.6 "Stormsplitter" #sync / 1[56]:[^:]*:Susano:2033:/ -869.2 "The Sealed Gate" #sync / 1[56]:[^:]*:Ama-No-Iwato:2035:/ +843.6 "The Hidden Gate" Ability { id: "2034", source: "Susano" } window 40,40 jump 531.5 +859.3 "Rasen Kaikyo" #Ability { id: "202D", source: "Susano" } +866.6 "Stormsplitter" #Ability { id: "2033", source: "Susano" } +869.2 "The Sealed Gate" #Ability { id: "2035", source: "Ama-No-Iwato" } diff --git a/ui/raidboss/data/04-sb/trial/susano.txt b/ui/raidboss/data/04-sb/trial/susano.txt index 1844a459bf..9717a70250 100644 --- a/ui/raidboss/data/04-sb/trial/susano.txt +++ b/ui/raidboss/data/04-sb/trial/susano.txt @@ -9,83 +9,83 @@ hideall "Yata-No-Kagami" hideall "Yasakani-No-Magatama" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -8.5 "Assail" sync / 1[56]:[^:]*:Susano:201C:/ window 10,0 -19.6 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:201D:/ -32.8 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:201F:/ -38.9 "Brightstorm" sync / 1[56]:[^:]*:Susano:2020:/ -47.1 "Assail" sync / 1[56]:[^:]*:Susano:201C:/ -54.3 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:25A1:/ -63.0 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -73.5 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:201F:/ -77.8 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -82.6 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:201D:/ -89.8 "Brightstorm" sync / 1[56]:[^:]*:Susano:2020:/ -98.9 "Assail" sync / 1[56]:[^:]*:Susano:201C:/ -112.1 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:201F:/ -116.4 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -118.2 "Brightstorm" sync / 1[56]:[^:]*:Susano:2020:/ -125.4 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:25A1:/ -134.1 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -138.5 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -142.9 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -147.5 "Assail" sync / 1[56]:[^:]*:Susano:201C:/ -160.7 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:201F:/ -165.0 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -166.8 "Brightstorm" sync / 1[56]:[^:]*:Susano:2020:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +8.5 "Assail" Ability { id: "201C", source: "Susano" } window 10,0 +19.6 "Rasen Kaikyo" Ability { id: "201D", source: "Susano" } +32.8 "Yata-No-Kagami" Ability { id: "201F", source: "Susano" } +38.9 "Brightstorm" Ability { id: "2020", source: "Susano" } +47.1 "Assail" Ability { id: "201C", source: "Susano" } +54.3 "Yasakani-No-Magatama" Ability { id: "25A1", source: "Susano" } +63.0 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +73.5 "Yata-No-Kagami" Ability { id: "201F", source: "Susano" } +77.8 "Seasplitter" Ability { id: "25BD", source: "Susano" } +82.6 "Rasen Kaikyo" Ability { id: "201D", source: "Susano" } +89.8 "Brightstorm" Ability { id: "2020", source: "Susano" } +98.9 "Assail" Ability { id: "201C", source: "Susano" } +112.1 "Yata-No-Kagami" Ability { id: "201F", source: "Susano" } +116.4 "Seasplitter" Ability { id: "25BD", source: "Susano" } +118.2 "Brightstorm" Ability { id: "2020", source: "Susano" } +125.4 "Yasakani-No-Magatama" Ability { id: "25A1", source: "Susano" } +134.1 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +138.5 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +142.9 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +147.5 "Assail" Ability { id: "201C", source: "Susano" } +160.7 "Yata-No-Kagami" Ability { id: "201F", source: "Susano" } +165.0 "Seasplitter" Ability { id: "25BD", source: "Susano" } +166.8 "Brightstorm" Ability { id: "2020", source: "Susano" } 174.6 "--untargetable--" ### Phase 2 (hp push at ???% / time push) # sync to touching the Blade's Shadow, this happens twice -300.0 "--sync--" sync / 1[56]:[^:]*:Susano:21C6:/ window 300,100 +300.0 "--sync--" Ability { id: "21C6", source: "Susano" } window 300,100 305.2 "--targetable--" 305.2 "--Dark Levin--" 308.2 "--Dark Levin--" 312.2 "--Dark Levin--" ### Phase 3 -400.0 "Ame-No-Murakumo" sync / 1[56]:[^:]*:Susano:2022:/ window 400,0 -404.0 "Ame-No-Murakumo" sync / 1[56]:[^:]*:Susano:218C:/ +400.0 "Ame-No-Murakumo" Ability { id: "2022", source: "Susano" } window 400,0 +404.0 "Ame-No-Murakumo" Ability { id: "218C", source: "Susano" } 413.6 "--targetable--" -425.9 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2023:/ -431.1 "The Hidden Gate" sync / 1[56]:[^:]*:Susano:2024:/ -456.6 "The Sealed Gate" sync / 1[56]:[^:]*:Ama-No-Iwato:2025:/ -458.7 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:201D:/ -466.8 "Ukehi" sync / 1[56]:[^:]*:Susano:2026:/ +425.9 "Stormsplitter" Ability { id: "2023", source: "Susano" } +431.1 "The Hidden Gate" Ability { id: "2024", source: "Susano" } +456.6 "The Sealed Gate" Ability { id: "2025", source: "Ama-No-Iwato" } +458.7 "Rasen Kaikyo" Ability { id: "201D", source: "Susano" } +466.8 "Ukehi" Ability { id: "2026", source: "Susano" } -478.1 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2023:/ -488.3 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:201F:/ -492.6 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -494.4 "Brightstorm" sync / 1[56]:[^:]*:Susano:2020:/ -499.5 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:201D:/ -507.6 "Ukehi" sync / 1[56]:[^:]*:Susano:2026:/ -514.9 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:25A1:/ -523.6 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -528.0 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -532.4 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -540.1 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2023:/ -548.3 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:201D:/ -552.4 "Brightstorm" sync / 1[56]:[^:]*:Susano:2020:/ -554.5 "The Hidden Gate" sync / 1[56]:[^:]*:Susano:2024:/ -573.1 "Ukehi" sync / 1[56]:[^:]*:Susano:2026:/ -580.0 "The Sealed Gate" sync / 1[56]:[^:]*:Ama-No-Iwato:2025:/ -588.4 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2023:/ -593.5 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:201D:/ -595.8 "Yata-No-Kagami" sync / 1[56]:[^:]*:Susano:201F:/ -600.1 "Seasplitter" sync / 1[56]:[^:]*:Susano:25BD:/ -601.9 "Brightstorm" sync / 1[56]:[^:]*:Susano:2020:/ -605.1 "Yasakani-No-Magatama" sync / 1[56]:[^:]*:Susano:25A1:/ -613.8 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -618.2 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -622.6 "The Parting Clouds" sync / 1[56]:[^:]*:Dark Cloud:259F:/ -624.2 "Rasen Kaikyo" sync / 1[56]:[^:]*:Susano:201D:/ -633.3 "Ukehi" sync / 1[56]:[^:]*:Susano:2026:/ +478.1 "Stormsplitter" Ability { id: "2023", source: "Susano" } +488.3 "Yata-No-Kagami" Ability { id: "201F", source: "Susano" } +492.6 "Seasplitter" Ability { id: "25BD", source: "Susano" } +494.4 "Brightstorm" Ability { id: "2020", source: "Susano" } +499.5 "Rasen Kaikyo" Ability { id: "201D", source: "Susano" } +507.6 "Ukehi" Ability { id: "2026", source: "Susano" } +514.9 "Yasakani-No-Magatama" Ability { id: "25A1", source: "Susano" } +523.6 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +528.0 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +532.4 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +540.1 "Stormsplitter" Ability { id: "2023", source: "Susano" } +548.3 "Rasen Kaikyo" Ability { id: "201D", source: "Susano" } +552.4 "Brightstorm" Ability { id: "2020", source: "Susano" } +554.5 "The Hidden Gate" Ability { id: "2024", source: "Susano" } +573.1 "Ukehi" Ability { id: "2026", source: "Susano" } +580.0 "The Sealed Gate" Ability { id: "2025", source: "Ama-No-Iwato" } +588.4 "Stormsplitter" Ability { id: "2023", source: "Susano" } +593.5 "Rasen Kaikyo" Ability { id: "201D", source: "Susano" } +595.8 "Yata-No-Kagami" Ability { id: "201F", source: "Susano" } +600.1 "Seasplitter" Ability { id: "25BD", source: "Susano" } +601.9 "Brightstorm" Ability { id: "2020", source: "Susano" } +605.1 "Yasakani-No-Magatama" Ability { id: "25A1", source: "Susano" } +613.8 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +618.2 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +622.6 "The Parting Clouds" Ability { id: "259F", source: "Dark Cloud" } +624.2 "Rasen Kaikyo" Ability { id: "201D", source: "Susano" } +633.3 "Ukehi" Ability { id: "2026", source: "Susano" } -646.6 "Stormsplitter" sync / 1[56]:[^:]*:Susano:2023:/ window 40,100 jump 478.1 -656.8 "Yata-No-Kagami" #sync / 1[56]:[^:]*:Susano:201F:/ -661.1 "Seasplitter" #sync / 1[56]:[^:]*:Susano:25BD:/ -662.9 "Brightstorm" #sync / 1[56]:[^:]*:Susano:2020:/ -668.0 "Rasen Kaikyo" #sync / 1[56]:[^:]*:Susano:201D:/ -676.1 "Ukehi" #sync / 1[56]:[^:]*:Susano:2026:/ -683.4 "Yasakani-No-Magatama" #sync / 1[56]:[^:]*:Susano:25A1:/ +646.6 "Stormsplitter" Ability { id: "2023", source: "Susano" } window 40,100 jump 478.1 +656.8 "Yata-No-Kagami" #Ability { id: "201F", source: "Susano" } +661.1 "Seasplitter" #Ability { id: "25BD", source: "Susano" } +662.9 "Brightstorm" #Ability { id: "2020", source: "Susano" } +668.0 "Rasen Kaikyo" #Ability { id: "201D", source: "Susano" } +676.1 "Ukehi" #Ability { id: "2026", source: "Susano" } +683.4 "Yasakani-No-Magatama" #Ability { id: "25A1", source: "Susano" } diff --git a/ui/raidboss/data/04-sb/trial/suzaku-ex.txt b/ui/raidboss/data/04-sb/trial/suzaku-ex.txt index a3ed964744..5c732ae3a6 100644 --- a/ui/raidboss/data/04-sb/trial/suzaku-ex.txt +++ b/ui/raidboss/data/04-sb/trial/suzaku-ex.txt @@ -4,29 +4,29 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.5 "Screams Of The Damned" sync / 1[56]:[^:]*:Suzaku:32D2:/ window 12,20 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.5 "Screams Of The Damned" Ability { id: "32D2", source: "Suzaku" } window 12,20 18.9 "--untargetable--" -24.5 "Rout" sync / 1[56]:[^:]*:Suzaku:32F0:/ -26.2 "Rekindle" sync / 1[56]:[^:]*:Suzaku:32E0:/ +24.5 "Rout" Ability { id: "32F0", source: "Suzaku" } +26.2 "Rekindle" Ability { id: "32E0", source: "Suzaku" } 29.0 "--targetable--" -35.3 "Fleeting Summer" sync / 1[56]:[^:]*:Suzaku:32D3:/ -42.8 "Cremate" sync / 1[56]:[^:]*:Suzaku:32D1:/ -54.3 "Phoenix Down" sync / 1[56]:[^:]*:Suzaku:3224:/ -67.4 "Rekindle" sync / 1[56]:[^:]*:Suzaku:32E0:/ -78.5 "Cremate" sync / 1[56]:[^:]*:Suzaku:32D1:/ -79.6 "Wing And A Prayer" sync / 1[56]:[^:]*:Scarlet Tail Feather:32D4:/ -92.2 "Screams Of The Damned" sync / 1[56]:[^:]*:Suzaku:32D2:/ -109.2 "Eternal Flame" sync / 1[56]:[^:]*:Suzaku:3222:/ # drift 0.023 +35.3 "Fleeting Summer" Ability { id: "32D3", source: "Suzaku" } +42.8 "Cremate" Ability { id: "32D1", source: "Suzaku" } +54.3 "Phoenix Down" Ability { id: "3224", source: "Suzaku" } +67.4 "Rekindle" Ability { id: "32E0", source: "Suzaku" } +78.5 "Cremate" Ability { id: "32D1", source: "Suzaku" } +79.6 "Wing And A Prayer" Ability { id: "32D4", source: "Scarlet Tail Feather" } +92.2 "Screams Of The Damned" Ability { id: "32D2", source: "Suzaku" } +109.2 "Eternal Flame" Ability { id: "3222", source: "Suzaku" } # drift 0.023 111.3 "--untargetable--" # DDR phase -126.5 "--sync--" sync / 1[56]:[^:]*:Suzaku:3226:/ -132.7 "--sync--" sync / 1[56]:[^:]*:Suzaku:3485:/ +126.5 "--sync--" Ability { id: "3226", source: "Suzaku" } +132.7 "--sync--" Ability { id: "3485", source: "Suzaku" } 137.8 "Scarlet Hymn" 138.9 "Scarlet Hymn" 140.0 "Scarlet Hymn" -144.6 "--sync--" sync / 1[56]:[^:]*:Suzaku:3486:/ +144.6 "--sync--" Ability { id: "3486", source: "Suzaku" } 147.7 "Scarlet Hymn" 149.8 "Scarlet Hymn" 150.9 "Scarlet Hymn" @@ -34,96 +34,96 @@ hideall "--sync--" 154.2 "Scarlet Hymn" 156.3 "Scarlet Hymn" 157.5 "Scarlet Hymn" -174.7 "Scarlet Fever" sync / 1[56]:[^:]*:Suzaku:32D9:/ window 165,20 +174.7 "Scarlet Fever" Ability { id: "32D9", source: "Suzaku" } window 165,20 # Main phase 179.9 "--targetable--" -189.4 "Southron Star" sync / 1[56]:[^:]*:Suzaku:32DF:/ window 20,20 -195.0 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -200.1 "Mesmerizing Melody" sync / 1[56]:[^:]*:Suzaku:32DA:/ -208.1 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:32E1:/ -208.8 "Rekindle" sync / 1[56]:[^:]*:Suzaku:32E0:/ -215.2 "Scathing Net" sync / 1[56]:[^:]*:Suzaku:3243:/ -220.2 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:32DD:/ # drift 0.035 -226.3 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:32DE:/ +189.4 "Southron Star" Ability { id: "32DF", source: "Suzaku" } window 20,20 +195.0 "--sync--" Ability { id: "322E", source: "Suzaku" } +200.1 "Mesmerizing Melody" Ability { id: "32DA", source: "Suzaku" } +208.1 "Well Of Flame" Ability { id: "32E1", source: "Suzaku" } +208.8 "Rekindle" Ability { id: "32E0", source: "Suzaku" } +215.2 "Scathing Net" Ability { id: "3243", source: "Suzaku" } +220.2 "Phantom Flurry" Ability { id: "32DD", source: "Suzaku" } # drift 0.035 +226.3 "Phantom Half" Ability { id: "32DE", source: "Suzaku" } # Simon says 1 (8+8) -231.0 "Scarlet Hymn" sync / 1[56]:[^:]*:Suzaku:3237:/ +231.0 "Scarlet Hymn" Ability { id: "3237", source: "Suzaku" } 252.1 "Hotspot x8" duration 7.7 269.9 "Hotspot x8" duration 7.7 # Back to center -286.7 "--sync--" sync / 1[56]:[^:]*:Suzaku:323A:/ window 20,20 -288.8 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -294.2 "Ruthless/Mesmerizing" sync / 1[56]:[^:]*:Suzaku:32D(A|B):/ -305.3 "Close-Quarter Crescendo" sync / 1[56]:[^:]*:Suzaku:32E4:/ +286.7 "--sync--" Ability { id: "323A", source: "Suzaku" } window 20,20 +288.8 "--sync--" Ability { id: "322E", source: "Suzaku" } +294.2 "Ruthless/Mesmerizing" Ability { id: "32D(A|B)", source: "Suzaku" } +305.3 "Close-Quarter Crescendo" Ability { id: "32E4", source: "Suzaku" } 317.4 "Pay The Piper" -321.1 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -327.0 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:32E1:/ -327.6 "Rekindle" sync / 1[56]:[^:]*:Suzaku:32E0:/ -334.1 "Scathing Net" sync / 1[56]:[^:]*:Suzaku:3243:/ -338.2 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:32DD:/ -344.4 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:32DE:/ +321.1 "--sync--" Ability { id: "322E", source: "Suzaku" } +327.0 "Well Of Flame" Ability { id: "32E1", source: "Suzaku" } +327.6 "Rekindle" Ability { id: "32E0", source: "Suzaku" } +334.1 "Scathing Net" Ability { id: "3243", source: "Suzaku" } +338.2 "Phantom Flurry" Ability { id: "32DD", source: "Suzaku" } +344.4 "Phantom Half" Ability { id: "32DE", source: "Suzaku" } # Simon Says 2 (8+8 with aoe) -350.7 "Scarlet Hymn" sync / 1[56]:[^:]*:Suzaku:3237:/ -360.2 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -365.3 "Ruthless/Mesmerizing" sync / 1[56]:[^:]*:Suzaku:32D(A|B):/ +350.7 "Scarlet Hymn" Ability { id: "3237", source: "Suzaku" } +360.2 "--sync--" Ability { id: "322E", source: "Suzaku" } +365.3 "Ruthless/Mesmerizing" Ability { id: "32D(A|B)", source: "Suzaku" } 370.4 "Hotspot x8" duration 7.7 -385.9 "Southron Star" sync / 1[56]:[^:]*:Suzaku:32DF:/ +385.9 "Southron Star" Ability { id: "32DF", source: "Suzaku" } 391.0 "Hotspot x8" duration 7.7 # Back to center -407.5 "--sync--" sync / 1[56]:[^:]*:Suzaku:323A:/ -413.6 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:32DD:/ -419.7 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:32DE:/ -430.4 "Southron Star" sync / 1[56]:[^:]*:Suzaku:32DF:/ -442.0 "Incandescent Interlude" sync / 1[56]:[^:]*:Suzaku:323C:/ -446.1 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -452.1 "Ruthless Refrain" sync / 1[56]:[^:]*:Suzaku:32DB:/ -454.6 "Rekindle" sync / 1[56]:[^:]*:Suzaku:32E0:/ -459.5 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:32E1:/ +407.5 "--sync--" Ability { id: "323A", source: "Suzaku" } +413.6 "Phantom Flurry" Ability { id: "32DD", source: "Suzaku" } +419.7 "Phantom Half" Ability { id: "32DE", source: "Suzaku" } +430.4 "Southron Star" Ability { id: "32DF", source: "Suzaku" } +442.0 "Incandescent Interlude" Ability { id: "323C", source: "Suzaku" } +446.1 "--sync--" Ability { id: "322E", source: "Suzaku" } +452.1 "Ruthless Refrain" Ability { id: "32DB", source: "Suzaku" } +454.6 "Rekindle" Ability { id: "32E0", source: "Suzaku" } +459.5 "Well Of Flame" Ability { id: "32E1", source: "Suzaku" } # Simon Says 2 (4+4+4+4 with forced march, knock/draw, phantom half) -466.7 "Scarlet Hymn" sync / 1[56]:[^:]*:Suzaku:3237:/ -483.6 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:32E1:/ -484.3 "Rekindle" sync / 1[56]:[^:]*:Suzaku:32E0:/ +466.7 "Scarlet Hymn" Ability { id: "3237", source: "Suzaku" } +483.6 "Well Of Flame" Ability { id: "32E1", source: "Suzaku" } +484.3 "Rekindle" Ability { id: "32E0", source: "Suzaku" } 489.4 "Hotspot x4" duration 3.3 -496.6 "Close-Quarter Crescendo" sync / 1[56]:[^:]*:Suzaku:32E4:/ +496.6 "Close-Quarter Crescendo" Ability { id: "32E4", source: "Suzaku" } 508.7 "Pay the Piper" 508.8 "Hotspot x4" duration 3.3 -517.9 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -523.4 "Ruthless/Mesmerizing" sync / 1[56]:[^:]*:Suzaku:32D(A|B):/ +517.9 "--sync--" Ability { id: "322E", source: "Suzaku" } +523.4 "Ruthless/Mesmerizing" Ability { id: "32D(A|B)", source: "Suzaku" } 528.5 "Hotspot x4" duration 3.3 -539.6 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:32DD:/ -545.8 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:32DE:/ +539.6 "Phantom Flurry" Ability { id: "32DD", source: "Suzaku" } +545.8 "Phantom Half" Ability { id: "32DE", source: "Suzaku" } 547.9 "Hotspot x4" duration 3.3 # Back to center -562.4 "--sync--" sync / 1[56]:[^:]*:Suzaku:323A:/ -572.5 "Southron Star" sync / 1[56]:[^:]*:Suzaku:32DF:/ -580.0 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -585.5 "Ruthless/Mesmerizing" sync / 1[56]:[^:]*:Suzaku:32D(A|B):/ -597.9 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:32E1:/ -598.5 "Rekindle" sync / 1[56]:[^:]*:Suzaku:32E0:/ -605.1 "Scathing Net" sync / 1[56]:[^:]*:Suzaku:3243:/ -610.2 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:32DD:/ -616.4 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:32DE:/ -626.5 "Southron Star" sync / 1[56]:[^:]*:Suzaku:32DF:/ -633.6 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -639.0 "Ruthless/Mesmerizing" sync / 1[56]:[^:]*:Suzaku:32D(A|B):/ -652.0 "Southron Star" sync / 1[56]:[^:]*:Suzaku:32DF:/ -658.4 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:32DD:/ -664.5 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:32DE:/ -674.1 "Scarlet Hymn" sync / 1[56]:[^:]*:Suzaku:3237:/ -683.6 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -689.0 "Ruthless/Mesmerizing" sync / 1[56]:[^:]*:Suzaku:32D(A|B):/ +562.4 "--sync--" Ability { id: "323A", source: "Suzaku" } +572.5 "Southron Star" Ability { id: "32DF", source: "Suzaku" } +580.0 "--sync--" Ability { id: "322E", source: "Suzaku" } +585.5 "Ruthless/Mesmerizing" Ability { id: "32D(A|B)", source: "Suzaku" } +597.9 "Well Of Flame" Ability { id: "32E1", source: "Suzaku" } +598.5 "Rekindle" Ability { id: "32E0", source: "Suzaku" } +605.1 "Scathing Net" Ability { id: "3243", source: "Suzaku" } +610.2 "Phantom Flurry" Ability { id: "32DD", source: "Suzaku" } +616.4 "Phantom Half" Ability { id: "32DE", source: "Suzaku" } +626.5 "Southron Star" Ability { id: "32DF", source: "Suzaku" } +633.6 "--sync--" Ability { id: "322E", source: "Suzaku" } +639.0 "Ruthless/Mesmerizing" Ability { id: "32D(A|B)", source: "Suzaku" } +652.0 "Southron Star" Ability { id: "32DF", source: "Suzaku" } +658.4 "Phantom Flurry" Ability { id: "32DD", source: "Suzaku" } +664.5 "Phantom Half" Ability { id: "32DE", source: "Suzaku" } +674.1 "Scarlet Hymn" Ability { id: "3237", source: "Suzaku" } +683.6 "--sync--" Ability { id: "322E", source: "Suzaku" } +689.0 "Ruthless/Mesmerizing" Ability { id: "32D(A|B)", source: "Suzaku" } 695.0 "Hotspot x8" duration 7.7 -708.8 "Southron Star" sync / 1[56]:[^:]*:Suzaku:32DF:/ # drift -0.047 +708.8 "Southron Star" Ability { id: "32DF", source: "Suzaku" } # drift -0.047 714.2 "Hotspot x8" duration 7.7 -730.1 "--sync--" sync / 1[56]:[^:]*:Suzaku:323A:/ -736.1 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:32DD:/ -742.2 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:32DE:/ -743.8 "Scarlet Hymn" sync / 1[56]:[^:]*:Suzaku:3237:/ -755.3 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ +730.1 "--sync--" Ability { id: "323A", source: "Suzaku" } +736.1 "Phantom Flurry" Ability { id: "32DD", source: "Suzaku" } +742.2 "Phantom Half" Ability { id: "32DE", source: "Suzaku" } +743.8 "Scarlet Hymn" Ability { id: "3237", source: "Suzaku" } +755.3 "--sync--" Ability { id: "322E", source: "Suzaku" } 766.7 "Hotspot Enrage" diff --git a/ui/raidboss/data/04-sb/trial/suzaku.txt b/ui/raidboss/data/04-sb/trial/suzaku.txt index ce0734a40b..85db5b18e1 100644 --- a/ui/raidboss/data/04-sb/trial/suzaku.txt +++ b/ui/raidboss/data/04-sb/trial/suzaku.txt @@ -4,100 +4,100 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.1 "Cremate" sync / 1[56]:[^:]*:Suzaku:3220:/ window 9.1,5 -18.7 "Eternal Flame" sync / 1[56]:[^:]*:Suzaku:3222:/ -29.9 "Fleeting Summer" sync / 1[56]:[^:]*:Suzaku:3223:/ -40.0 "Ashes To Ashes?" # sync / 1[56]:[^:]*:Scarlet Lady:321F:/ -42.5 "Screams Of The Damned" sync / 1[56]:[^:]*:Suzaku:3221:/ -50.6 "Phoenix Down" sync / 1[56]:[^:]*:Suzaku:3224:/ -62.1 "Cremate" sync / 1[56]:[^:]*:Suzaku:3220:/ -71.2 "Wing And A Prayer" sync / 1[56]:[^:]*:Scarlet Plume:3225:/ -71.6 "Screams Of The Damned" sync / 1[56]:[^:]*:Suzaku:3221:/ -85.1 "Fleeting Summer" sync / 1[56]:[^:]*:Suzaku:3223:/ -93.7 "Ashes To Ashes?" # sync / 1[56]:[^:]*:Scarlet Lady:321F:/ -100.0 "Eternal Flame" sync / 1[56]:[^:]*:Suzaku:3222:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.1 "Cremate" Ability { id: "3220", source: "Suzaku" } window 9.1,5 +18.7 "Eternal Flame" Ability { id: "3222", source: "Suzaku" } +29.9 "Fleeting Summer" Ability { id: "3223", source: "Suzaku" } +40.0 "Ashes To Ashes?" # Ability { id: "321F", source: "Scarlet Lady" } +42.5 "Screams Of The Damned" Ability { id: "3221", source: "Suzaku" } +50.6 "Phoenix Down" Ability { id: "3224", source: "Suzaku" } +62.1 "Cremate" Ability { id: "3220", source: "Suzaku" } +71.2 "Wing And A Prayer" Ability { id: "3225", source: "Scarlet Plume" } +71.6 "Screams Of The Damned" Ability { id: "3221", source: "Suzaku" } +85.1 "Fleeting Summer" Ability { id: "3223", source: "Suzaku" } +93.7 "Ashes To Ashes?" # Ability { id: "321F", source: "Scarlet Lady" } +100.0 "Eternal Flame" Ability { id: "3222", source: "Suzaku" } 102.0 "--untargetable--" -117.3 "--sync--" sync / 1[56]:[^:]*:Suzaku:3226:/ window 117.3 -132.4 "--sync--" sync / 1[56]:[^:]*:Suzaku:3485:/ -133.9 "Scarlet Hymn 1" sync / 1[56]:[^:]*:Rapturous Echo:3228:/ -144.0 "Scarlet Hymn 2" sync / 1[56]:[^:]*:Rapturous Echo:3228:/ -153.2 "--sync--" sync / 1[56]:[^:]*:Suzaku:3486:/ -153.5 "Scarlet Hymn 3" sync / 1[56]:[^:]*:Rapturous Echo:3228:/ -156.5 "Scarlet Hymn 4" sync / 1[56]:[^:]*:Rapturous Echo:3228:/ -165.6 "Scarlet Hymn 5" sync / 1[56]:[^:]*:Rapturous Echo:3228:/ -167.6 "Scarlet Hymn 6" sync / 1[56]:[^:]*:Rapturous Echo:3228:/ -169.6 "Scarlet Hymn 7" sync / 1[56]:[^:]*:Rapturous Echo:3228:/ -182.8 "Scarlet Fever" sync / 1[56]:[^:]*:Suzaku:322C:/ window 182.8 +117.3 "--sync--" Ability { id: "3226", source: "Suzaku" } window 117.3 +132.4 "--sync--" Ability { id: "3485", source: "Suzaku" } +133.9 "Scarlet Hymn 1" Ability { id: "3228", source: "Rapturous Echo" } +144.0 "Scarlet Hymn 2" Ability { id: "3228", source: "Rapturous Echo" } +153.2 "--sync--" Ability { id: "3486", source: "Suzaku" } +153.5 "Scarlet Hymn 3" Ability { id: "3228", source: "Rapturous Echo" } +156.5 "Scarlet Hymn 4" Ability { id: "3228", source: "Rapturous Echo" } +165.6 "Scarlet Hymn 5" Ability { id: "3228", source: "Rapturous Echo" } +167.6 "Scarlet Hymn 6" Ability { id: "3228", source: "Rapturous Echo" } +169.6 "Scarlet Hymn 7" Ability { id: "3228", source: "Rapturous Echo" } +182.8 "Scarlet Fever" Ability { id: "322C", source: "Suzaku" } window 182.8 187.4 "--targetable--" -197.6 "Southron Star" sync / 1[56]:[^:]*:Suzaku:3234:/ -205.2 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -210.7 "Ruthless Refrain" sync / 1[56]:[^:]*:Suzaku:3230:/ -222.9 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:3231:/ -229.0 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:3233:/ -239.7 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:3236:/ -246.9 "Scarlet Hymn" sync / 1[56]:[^:]*:Suzaku:3237:/ window 246.9 -270.8 "Hotspot 1" sync / 1[56]:[^:]*:Suzaku:3238:/ -286.0 "Hotspot 2" sync / 1[56]:[^:]*:Suzaku:3238:/ -291.6 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:3236:/ -302.3 "Hotspot 3" sync / 1[56]:[^:]*:Suzaku:3238:/ -304.8 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -310.3 "Ruthless Refrain" sync / 1[56]:[^:]*:Suzaku:3230:/ -318.6 "Hotspot 4" sync / 1[56]:[^:]*:Suzaku:3238:/ -329.5 "--sync--" sync / 1[56]:[^:]*:Suzaku:323A:/ -335.6 "Southron Star" sync / 1[56]:[^:]*:Suzaku:3234:/ +197.6 "Southron Star" Ability { id: "3234", source: "Suzaku" } +205.2 "--sync--" Ability { id: "322E", source: "Suzaku" } +210.7 "Ruthless Refrain" Ability { id: "3230", source: "Suzaku" } +222.9 "Phantom Flurry" Ability { id: "3231", source: "Suzaku" } +229.0 "Phantom Half" Ability { id: "3233", source: "Suzaku" } +239.7 "Well Of Flame" Ability { id: "3236", source: "Suzaku" } +246.9 "Scarlet Hymn" Ability { id: "3237", source: "Suzaku" } window 246.9 +270.8 "Hotspot 1" Ability { id: "3238", source: "Suzaku" } +286.0 "Hotspot 2" Ability { id: "3238", source: "Suzaku" } +291.6 "Well Of Flame" Ability { id: "3236", source: "Suzaku" } +302.3 "Hotspot 3" Ability { id: "3238", source: "Suzaku" } +304.8 "--sync--" Ability { id: "322E", source: "Suzaku" } +310.3 "Ruthless Refrain" Ability { id: "3230", source: "Suzaku" } +318.6 "Hotspot 4" Ability { id: "3238", source: "Suzaku" } +329.5 "--sync--" Ability { id: "323A", source: "Suzaku" } +335.6 "Southron Star" Ability { id: "3234", source: "Suzaku" } -346.2 "Incandescent Interlude" sync / 1[56]:[^:]*:Suzaku:323C:/ window 346.2 -355.6 "Rekindle" sync / 1[56]:[^:]*:Suzaku:3235:/ -358.6 "Immolate" sync / 1[56]:[^:]*:Suzaku:323E:/ -366.6 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:3231:/ -372.9 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:3233:/ -378.5 "--sync--" sync / 1[56]:[^:]*:Suzaku:3239:/ -380.7 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -386.5 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:3236:/ -387.0 "Swoop" sync / 1[56]:[^:]*:Suzaku:323B:/ window 30,30 -389.7 "--sync--" sync / 1[56]:[^:]*:Suzaku:323A:/ -395.8 "Southron Star" sync / 1[56]:[^:]*:Suzaku:3234:/ -402.4 "Scarlet Hymn" sync / 1[56]:[^:]*:Suzaku:3237:/ -420.0 "Southron Star" sync / 1[56]:[^:]*:Suzaku:3234:/ -430.8 "Hotspot 1" # sync / 1[56]:[^:]*:Suzaku:3238:/ -432.9 "Hotspot 2" # sync / 1[56]:[^:]*:Suzaku:3238:/ -435.0 "Hotspot 3" # sync / 1[56]:[^:]*:Suzaku:3238:/ -437.0 "Hotspot 4" # sync / 1[56]:[^:]*:Suzaku:3238:/ -443.6 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:3231:/ window 30,30 -449.9 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:3233:/ -462.7 "Hotspot 1" # sync / 1[56]:[^:]*:Suzaku:3238:/ -464.8 "Hotspot 2" # sync / 1[56]:[^:]*:Suzaku:3238:/ -466.8 "Hotspot 3" # sync / 1[56]:[^:]*:Suzaku:3238:/ -468.9 "Hotspot 4" # sync / 1[56]:[^:]*:Suzaku:3238:/ -474.6 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -480.2 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:3236:/ window 30,30 -481.1 "Rekindle" sync / 1[56]:[^:]*:Suzaku:3235:/ -493.7 "Hotspot 1" # sync / 1[56]:[^:]*:Suzaku:3238:/ -494.4 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:3231:/ -495.7 "Hotspot 2" # sync / 1[56]:[^:]*:Suzaku:3238:/ -497.8 "Hotspot 3" # sync / 1[56]:[^:]*:Suzaku:3238:/ -499.8 "Hotspot 4" # sync / 1[56]:[^:]*:Suzaku:3238:/ -500.5 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:3233:/ -512.1 "Southron Star" sync / 1[56]:[^:]*:Suzaku:3234:/ -519.7 "--sync--" sync / 1[56]:[^:]*:Suzaku:322E:/ -525.3 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:3236:/ window 30,30 -525.3 "Hotspot 1" # sync / 1[56]:[^:]*:Suzaku:3238:/ -527.4 "Hotspot 2" # sync / 1[56]:[^:]*:Suzaku:3238:/ -529.5 "Hotspot 3" # sync / 1[56]:[^:]*:Suzaku:3238:/ -531.6 "Hotspot 4" # sync / 1[56]:[^:]*:Suzaku:3238:/ -542.5 "Southron Star" sync / 1[56]:[^:]*:Suzaku:3234:/ -548.1 "--sync--" sync / 1[56]:[^:]*:Suzaku:323A:/ -554.2 "Southron Star" sync / 1[56]:[^:]*:Suzaku:3234:/ -566.9 "Phantom Flurry" sync / 1[56]:[^:]*:Suzaku:3231:/ -573.1 "Phantom Half" sync / 1[56]:[^:]*:Suzaku:3233:/ -584.8 "Well Of Flame" sync / 1[56]:[^:]*:Suzaku:3236:/ -585.7 "Rekindle" sync / 1[56]:[^:]*:Suzaku:3235:/ -596.9 "Southron Star" sync / 1[56]:[^:]*:Suzaku:3234:/ +346.2 "Incandescent Interlude" Ability { id: "323C", source: "Suzaku" } window 346.2 +355.6 "Rekindle" Ability { id: "3235", source: "Suzaku" } +358.6 "Immolate" Ability { id: "323E", source: "Suzaku" } +366.6 "Phantom Flurry" Ability { id: "3231", source: "Suzaku" } +372.9 "Phantom Half" Ability { id: "3233", source: "Suzaku" } +378.5 "--sync--" Ability { id: "3239", source: "Suzaku" } +380.7 "--sync--" Ability { id: "322E", source: "Suzaku" } +386.5 "Well Of Flame" Ability { id: "3236", source: "Suzaku" } +387.0 "Swoop" Ability { id: "323B", source: "Suzaku" } window 30,30 +389.7 "--sync--" Ability { id: "323A", source: "Suzaku" } +395.8 "Southron Star" Ability { id: "3234", source: "Suzaku" } +402.4 "Scarlet Hymn" Ability { id: "3237", source: "Suzaku" } +420.0 "Southron Star" Ability { id: "3234", source: "Suzaku" } +430.8 "Hotspot 1" # Ability { id: "3238", source: "Suzaku" } +432.9 "Hotspot 2" # Ability { id: "3238", source: "Suzaku" } +435.0 "Hotspot 3" # Ability { id: "3238", source: "Suzaku" } +437.0 "Hotspot 4" # Ability { id: "3238", source: "Suzaku" } +443.6 "Phantom Flurry" Ability { id: "3231", source: "Suzaku" } window 30,30 +449.9 "Phantom Half" Ability { id: "3233", source: "Suzaku" } +462.7 "Hotspot 1" # Ability { id: "3238", source: "Suzaku" } +464.8 "Hotspot 2" # Ability { id: "3238", source: "Suzaku" } +466.8 "Hotspot 3" # Ability { id: "3238", source: "Suzaku" } +468.9 "Hotspot 4" # Ability { id: "3238", source: "Suzaku" } +474.6 "--sync--" Ability { id: "322E", source: "Suzaku" } +480.2 "Well Of Flame" Ability { id: "3236", source: "Suzaku" } window 30,30 +481.1 "Rekindle" Ability { id: "3235", source: "Suzaku" } +493.7 "Hotspot 1" # Ability { id: "3238", source: "Suzaku" } +494.4 "Phantom Flurry" Ability { id: "3231", source: "Suzaku" } +495.7 "Hotspot 2" # Ability { id: "3238", source: "Suzaku" } +497.8 "Hotspot 3" # Ability { id: "3238", source: "Suzaku" } +499.8 "Hotspot 4" # Ability { id: "3238", source: "Suzaku" } +500.5 "Phantom Half" Ability { id: "3233", source: "Suzaku" } +512.1 "Southron Star" Ability { id: "3234", source: "Suzaku" } +519.7 "--sync--" Ability { id: "322E", source: "Suzaku" } +525.3 "Well Of Flame" Ability { id: "3236", source: "Suzaku" } window 30,30 +525.3 "Hotspot 1" # Ability { id: "3238", source: "Suzaku" } +527.4 "Hotspot 2" # Ability { id: "3238", source: "Suzaku" } +529.5 "Hotspot 3" # Ability { id: "3238", source: "Suzaku" } +531.6 "Hotspot 4" # Ability { id: "3238", source: "Suzaku" } +542.5 "Southron Star" Ability { id: "3234", source: "Suzaku" } +548.1 "--sync--" Ability { id: "323A", source: "Suzaku" } +554.2 "Southron Star" Ability { id: "3234", source: "Suzaku" } +566.9 "Phantom Flurry" Ability { id: "3231", source: "Suzaku" } +573.1 "Phantom Half" Ability { id: "3233", source: "Suzaku" } +584.8 "Well Of Flame" Ability { id: "3236", source: "Suzaku" } +585.7 "Rekindle" Ability { id: "3235", source: "Suzaku" } +596.9 "Southron Star" Ability { id: "3234", source: "Suzaku" } -609.4 "Incandescent Interlude" sync / 1[56]:[^:]*:Suzaku:323C:/ window 30,30 jump 346.2 +609.4 "Incandescent Interlude" Ability { id: "323C", source: "Suzaku" } window 30,30 jump 346.2 618.8 "Rekindle" 621.8 "Immolate" 629.9 "Phantom Flurry" diff --git a/ui/raidboss/data/04-sb/trial/tsukuyomi-ex.txt b/ui/raidboss/data/04-sb/trial/tsukuyomi-ex.txt index 82029777c3..ed1780348a 100644 --- a/ui/raidboss/data/04-sb/trial/tsukuyomi-ex.txt +++ b/ui/raidboss/data/04-sb/trial/tsukuyomi-ex.txt @@ -9,146 +9,146 @@ hideall "--sync--" hideall "--Reset--" # Timings get slightly off if there's lead or steel first, so do a split. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.8 "--sync--" sync / 14:[^:]*:Tsukuyomi:2BBA:/ window 30,30 -14.8 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ -25.0 "Nightfall (gun/spear)" sync / 1[56]:[^:]*:Tsukuyomi:2BB[CD]:/ -25.0 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2BBC:/ window 30,30 jump 225 -25.0 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2BBD:/ window 30,30 jump 525 -31.1 "Lead Of The Underworld?" sync / 1[56]:[^:]*:Tsukuyomi:2BBE:/ -31.8 "Steel Of The Underworld 1?" sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -33.6 "Steel Of The Underworld 2?" sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -35.4 "Steel Of The Underworld 3?" sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.8 "--sync--" StartsUsing { id: "2BBA", source: "Tsukuyomi" } window 30,30 +14.8 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } +25.0 "Nightfall (gun/spear)" Ability { id: "2BB[CD]", source: "Tsukuyomi" } +25.0 "--sync--" Ability { id: "2BBC", source: "Tsukuyomi" } window 30,30 jump 225 +25.0 "--sync--" Ability { id: "2BBD", source: "Tsukuyomi" } window 30,30 jump 525 +31.1 "Lead Of The Underworld?" Ability { id: "2BBE", source: "Tsukuyomi" } +31.8 "Steel Of The Underworld 1?" Ability { id: "2BBF", source: "Tsukuyomi" } +33.6 "Steel Of The Underworld 2?" Ability { id: "2BBF", source: "Tsukuyomi" } +35.4 "Steel Of The Underworld 3?" Ability { id: "2BBF", source: "Tsukuyomi" } # Lead first -214.8 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ -225.0 "Nightfall (gun)" sync / 1[56]:[^:]*:Tsukuyomi:2BBC:/ -231.1 "Lead Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BBE:/ -236.2 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2CCF:/ -242.3 "Nightfall (spear)" sync / 1[56]:[^:]*:Tsukuyomi:2BBD:/ -249.1 "Steel Of The Underworld 1" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -250.9 "Steel Of The Underworld 2" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -252.7 "Steel Of The Underworld 3" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -255.9 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2BC0:/ -267.0 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ -281.0 "Nightbloom" #sync / 1[56]:[^:]*:Tsukuyomi:2BC7:/ +214.8 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } +225.0 "Nightfall (gun)" Ability { id: "2BBC", source: "Tsukuyomi" } +231.1 "Lead Of The Underworld" Ability { id: "2BBE", source: "Tsukuyomi" } +236.2 "--sync--" Ability { id: "2CCF", source: "Tsukuyomi" } +242.3 "Nightfall (spear)" Ability { id: "2BBD", source: "Tsukuyomi" } +249.1 "Steel Of The Underworld 1" #Ability { id: "2BBF", source: "Tsukuyomi" } +250.9 "Steel Of The Underworld 2" #Ability { id: "2BBF", source: "Tsukuyomi" } +252.7 "Steel Of The Underworld 3" #Ability { id: "2BBF", source: "Tsukuyomi" } +255.9 "--sync--" Ability { id: "2BC0", source: "Tsukuyomi" } +267.0 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } +281.0 "Nightbloom" #Ability { id: "2BC7", source: "Tsukuyomi" } 281.8 "--untargetable--" # Steel first -514.8 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ -525.0 "Nightfall (spear)" sync / 1[56]:[^:]*:Tsukuyomi:2BBD:/ -531.8 "Steel Of The Underworld 1" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -533.6 "Steel Of The Underworld 2" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -535.4 "Steel Of The Underworld 3" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -538.5 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2BC0:/ -545.6 "Nightfall (gun)" sync / 1[56]:[^:]*:Tsukuyomi:2BBC:/ -551.8 "Lead Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BBE:/ -556.9 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2CCF:/ -567.0 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ -581.0 "Nightbloom" #sync / 1[56]:[^:]*:Tsukuyomi:2BC7:/ +514.8 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } +525.0 "Nightfall (spear)" Ability { id: "2BBD", source: "Tsukuyomi" } +531.8 "Steel Of The Underworld 1" #Ability { id: "2BBF", source: "Tsukuyomi" } +533.6 "Steel Of The Underworld 2" #Ability { id: "2BBF", source: "Tsukuyomi" } +535.4 "Steel Of The Underworld 3" #Ability { id: "2BBF", source: "Tsukuyomi" } +538.5 "--sync--" Ability { id: "2BC0", source: "Tsukuyomi" } +545.6 "Nightfall (gun)" Ability { id: "2BBC", source: "Tsukuyomi" } +551.8 "Lead Of The Underworld" Ability { id: "2BBE", source: "Tsukuyomi" } +556.9 "--sync--" Ability { id: "2CCF", source: "Tsukuyomi" } +567.0 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } +581.0 "Nightbloom" #Ability { id: "2BC7", source: "Tsukuyomi" } 581.8 "--untargetable--" # Add phase -781.0 "Nightbloom" sync / 1[56]:[^:]*:Tsukuyomi:2BC7:/ window 800,0 +781.0 "Nightbloom" Ability { id: "2BC7", source: "Tsukuyomi" } window 800,0 781.8 "--untargetable--" -792.3 "Homeland adds (E->W)" sync / 03:........:Specter Of The Patriarch:/ window 40,20 -852.3 "Empire adds (SW->NW)" sync / 03:........:Specter Of Asahi:/ window 160,20 +792.3 "Homeland adds (E->W)" AddedCombatant { name: "Specter Of The Patriarch" } window 40,20 +852.3 "Empire adds (SW->NW)" AddedCombatant { name: "Specter Of Asahi" } window 160,20 886.3 "Enrage" -1000.0 "Concentrativity" sync / 1[56]:[^:]*:Specter of Zenos:2BC8:/ window 1000,0 -1006.7 "Unmoving Troika" sync / 1[56]:[^:]*:Specter Of Zenos:2CA8:/ -1013.7 "--sync--" sync / 1[56]:[^:]*:Specter Of Zenos:2BCA:/ -1013.7 "--sync--" sync / 1[56]:[^:]*:Specter Of Gosetsu:2BCB:/ -1023.7 "Dispersivity" sync / 1[56]:[^:]*:Specter:2BCC:/ -1029.8 "Dispersivity" sync / 1[56]:[^:]*:Specter:2BCC:/ -1035.9 "Dispersivity" sync / 1[56]:[^:]*:Specter:2BCC:/ -1042.0 "Dispersivity" sync / 1[56]:[^:]*:Specter:2BCC:/ -1048.1 "Dispersivity" sync / 1[56]:[^:]*:Specter:2BCC:/ +1000.0 "Concentrativity" Ability { id: "2BC8", source: "Specter of Zenos" } window 1000,0 +1006.7 "Unmoving Troika" Ability { id: "2CA8", source: "Specter Of Zenos" } +1013.7 "--sync--" Ability { id: "2BCA", source: "Specter Of Zenos" } +1013.7 "--sync--" Ability { id: "2BCB", source: "Specter Of Gosetsu" } +1023.7 "Dispersivity" Ability { id: "2BCC", source: "Specter" } +1029.8 "Dispersivity" Ability { id: "2BCC", source: "Specter" } +1035.9 "Dispersivity" Ability { id: "2BCC", source: "Specter" } +1042.0 "Dispersivity" Ability { id: "2BCC", source: "Specter" } +1048.1 "Dispersivity" Ability { id: "2BCC", source: "Specter" } # Adds complete, crescent phase -1100.0 "--sync--" sync / 1[56]:[^:]*:Specter Of Gosetsu:2CD6:/ window 1200,0 -1114.3 "Nightbloom" sync / 1[56]:[^:]*:Tsukuyomi:2CAF:/ window 1200,0 +1100.0 "--sync--" Ability { id: "2CD6", source: "Specter Of Gosetsu" } window 1200,0 +1114.3 "Nightbloom" Ability { id: "2CAF", source: "Tsukuyomi" } window 1200,0 1120.1 "--targetable--" -1134.5 "Supreme Selenomancy" sync / 1[56]:[^:]*:Tsukuyomi:2EB0:/ -1143.5 "Lunar Halo" sync / 1[56]:[^:]*:Moonlight:2BD6:/ -1153.8 "Tsuki-No-Kakera" sync / 1[56]:[^:]*:Tsukuyomi:2BD0:/ -1159.9 "Nightfall (gun)" sync / 1[56]:[^:]*:Tsukuyomi:2BBC:/ -1166.4 "Lead Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BBE:/ -1179.0 "Moonfall" sync / 1[56]:[^:]*:Moondust:2BD1:/ -1180.8 "Midnight Rain" sync / 1[56]:[^:]*:Tsukuyomi:2BCE:/ -1189.7 "Lunar Halo" sync / 1[56]:[^:]*:Moonlight:2BD6:/ -1195.2 "Lunar Rays" sync / 1[56]:[^:]*:Tsukuyomi:2BD3:/ -1196.8 "Lunar Halo" sync / 1[56]:[^:]*:Moonlight:2BD6:/ -1197.2 "Crater" sync / 1[56]:[^:]*:Moondust:2CD7:/ -1197.2 "Moonbeam" sync / 1[56]:[^:]*:Moondust:2BD4:/ -1208.3 "Antitwilight/Perilune" sync / 1[56]:[^:]*:Tsukuyomi:(2BD7|2BD8):/ - -1223.4 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ -1230.6 "Zashiki-Asobi" sync / 1[56]:[^:]*:Tsukuyomi:2BC5:/ -1239.8 "Nightfall (gun/spear)" sync / 1[56]:[^:]*:Tsukuyomi:2BB[CD]:/ -1241.7 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BC6:/ -1244.7 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BC6:/ +1134.5 "Supreme Selenomancy" Ability { id: "2EB0", source: "Tsukuyomi" } +1143.5 "Lunar Halo" Ability { id: "2BD6", source: "Moonlight" } +1153.8 "Tsuki-No-Kakera" Ability { id: "2BD0", source: "Tsukuyomi" } +1159.9 "Nightfall (gun)" Ability { id: "2BBC", source: "Tsukuyomi" } +1166.4 "Lead Of The Underworld" Ability { id: "2BBE", source: "Tsukuyomi" } +1179.0 "Moonfall" Ability { id: "2BD1", source: "Moondust" } +1180.8 "Midnight Rain" Ability { id: "2BCE", source: "Tsukuyomi" } +1189.7 "Lunar Halo" Ability { id: "2BD6", source: "Moonlight" } +1195.2 "Lunar Rays" Ability { id: "2BD3", source: "Tsukuyomi" } +1196.8 "Lunar Halo" Ability { id: "2BD6", source: "Moonlight" } +1197.2 "Crater" Ability { id: "2CD7", source: "Moondust" } +1197.2 "Moonbeam" Ability { id: "2BD4", source: "Moondust" } +1208.3 "Antitwilight/Perilune" Ability { id: ["2BD7", "2BD8"], source: "Tsukuyomi" } + +1223.4 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } +1230.6 "Zashiki-Asobi" Ability { id: "2BC5", source: "Tsukuyomi" } +1239.8 "Nightfall (gun/spear)" Ability { id: "2BB[CD]", source: "Tsukuyomi" } +1241.7 "Tsuki-No-Maiogi" Ability { id: "2BC6", source: "Dancing Fan" } +1244.7 "Tsuki-No-Maiogi" Ability { id: "2BC6", source: "Dancing Fan" } # don't match 2BBF here because there's three of them, close in time. -1246.3 "Lead Of The Underworld/Steel Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BBE:/ +1246.3 "Lead Of The Underworld/Steel Of The Underworld" Ability { id: "2BBE", source: "Tsukuyomi" } # Torment Unto Death can be delayed by ~2s if it's Steel -1257.5 "--sync--" sync / 14:[^:]*:Tsukuyomi:2BBB:/ window 10,10 -1262.5 "Torment Unto Death" sync / 1[56]:[^:]*:Tsukuyomi:2BBB:/ -1273.8 "Supreme Selenomancy" sync / 1[56]:[^:]*:Tsukuyomi:2EB0:/ -1282.8 "Lunar Halo" sync / 1[56]:[^:]*:Moonlight:2BD6:/ -1292.8 "Tsuki-No-Kakera" sync / 1[56]:[^:]*:Tsukuyomi:2BD0:/ -1298.8 "Nightfall (spear)" sync / 1[56]:[^:]*:Tsukuyomi:2BBD:/ -1305.4 "Steel Of The Underworld 1" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -1307.2 "Steel Of The Underworld 2" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -1308.8 "Steel Of The Underworld 3" #sync / 1[56]:[^:]*:Tsukuyomi:2BBF:/ -1317.8 "Moonfall" sync / 1[56]:[^:]*:Moondust:2BD1:/ -1318.9 "Midnight Rain" sync / 1[56]:[^:]*:Tsukuyomi:2BCE:/ -1328.9 "Lunar Halo" sync / 1[56]:[^:]*:Moonlight:2BD6:/ -1332.9 "Lunar Rays" sync / 1[56]:[^:]*:Tsukuyomi:2BD3:/ -1334.9 "Moonbeam" sync / 1[56]:[^:]*:Moondust:2BD4:/ -1334.9 "Crater" sync / 1[56]:[^:]*:Moondust:2CD7:/ -1335.9 "Lunar Halo" sync / 1[56]:[^:]*:Moonlight:2BD6:/ -1346.0 "Antitwilight/Perilune" sync / 1[56]:[^:]*:Tsukuyomi:(2BD7|2BD8):/ +1257.5 "--sync--" StartsUsing { id: "2BBB", source: "Tsukuyomi" } window 10,10 +1262.5 "Torment Unto Death" Ability { id: "2BBB", source: "Tsukuyomi" } +1273.8 "Supreme Selenomancy" Ability { id: "2EB0", source: "Tsukuyomi" } +1282.8 "Lunar Halo" Ability { id: "2BD6", source: "Moonlight" } +1292.8 "Tsuki-No-Kakera" Ability { id: "2BD0", source: "Tsukuyomi" } +1298.8 "Nightfall (spear)" Ability { id: "2BBD", source: "Tsukuyomi" } +1305.4 "Steel Of The Underworld 1" #Ability { id: "2BBF", source: "Tsukuyomi" } +1307.2 "Steel Of The Underworld 2" #Ability { id: "2BBF", source: "Tsukuyomi" } +1308.8 "Steel Of The Underworld 3" #Ability { id: "2BBF", source: "Tsukuyomi" } +1317.8 "Moonfall" Ability { id: "2BD1", source: "Moondust" } +1318.9 "Midnight Rain" Ability { id: "2BCE", source: "Tsukuyomi" } +1328.9 "Lunar Halo" Ability { id: "2BD6", source: "Moonlight" } +1332.9 "Lunar Rays" Ability { id: "2BD3", source: "Tsukuyomi" } +1334.9 "Moonbeam" Ability { id: "2BD4", source: "Moondust" } +1334.9 "Crater" Ability { id: "2CD7", source: "Moondust" } +1335.9 "Lunar Halo" Ability { id: "2BD6", source: "Moonlight" } +1346.0 "Antitwilight/Perilune" Ability { id: ["2BD7", "2BD8"], source: "Tsukuyomi" } # 35% push -1361.3 "Dance Of The Dead" sync / 1[56]:[^:]*:Tsukuyomi:2CD0:/ window 1400,20 -1378.6 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:2BD(A|B):/ -1379.5 "Waning Grudge/Waxing Grudge" sync / 1[56]:[^:]*:Tsukuyomi:2BD(E|F):/ -1392.0 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:2BD(A|B):/ -1393.0 "Waning Grudge/Waxing Grudge" sync / 1[56]:[^:]*:Tsukuyomi:2BD(E|F):/ +1361.3 "Dance Of The Dead" Ability { id: "2CD0", source: "Tsukuyomi" } window 1400,20 +1378.6 "Bright Blade/Dark Blade" Ability { id: "2BD(A|B)", source: "Tsukuyomi" } +1379.5 "Waning Grudge/Waxing Grudge" Ability { id: "2BD(E|F)", source: "Tsukuyomi" } +1392.0 "Bright Blade/Dark Blade" Ability { id: "2BD(A|B)", source: "Tsukuyomi" } +1393.0 "Waning Grudge/Waxing Grudge" Ability { id: "2BD(E|F)", source: "Tsukuyomi" } # loop begins -1403.1 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ -1415.3 "Lunacy" sync / 1[56]:[^:]*:Tsukuyomi:2BDC:/ -1416.1 "Tsuki-No-Maiogi" duration 4 #sync / 1[56]:[^:]*:Dancing Fan:2BC6:/ -1417.4 "Lunacy x3" #sync / 1[56]:[^:]*:Tsukuyomi:2BDD:/ -#1418.4 "Lunacy" sync / 1[56]:[^:]*:Tsukuyomi:2BDD:/ -#1419.4 "Lunacy" sync / 1[56]:[^:]*:Tsukuyomi:2BDD:/ +1403.1 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } +1415.3 "Lunacy" Ability { id: "2BDC", source: "Tsukuyomi" } +1416.1 "Tsuki-No-Maiogi" duration 4 #Ability { id: "2BC6", source: "Dancing Fan" } +1417.4 "Lunacy x3" #Ability { id: "2BDD", source: "Tsukuyomi" } +#1418.4 "Lunacy" Ability { id: "2BDD", source: "Tsukuyomi" } +#1419.4 "Lunacy" Ability { id: "2BDD", source: "Tsukuyomi" } -1427.4 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:2BD(A|B):/ -1428.4 "Waning Grudge/Waxing Grudge" sync / 1[56]:[^:]*:Tsukuyomi:2BD(E|F):/ -1437.5 "Torment Unto Death" sync / 1[56]:[^:]*:Tsukuyomi:2EB2:/ +1427.4 "Bright Blade/Dark Blade" Ability { id: "2BD(A|B)", source: "Tsukuyomi" } +1428.4 "Waning Grudge/Waxing Grudge" Ability { id: "2BD(E|F)", source: "Tsukuyomi" } +1437.5 "Torment Unto Death" Ability { id: "2EB2", source: "Tsukuyomi" } -1450.7 "Hagetsu" sync / 1[56]:[^:]*:Tsukuyomi:2D1C:/ -1452.5 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BC6:/ -1455.5 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BC6:/ +1450.7 "Hagetsu" Ability { id: "2D1C", source: "Tsukuyomi" } +1452.5 "Tsuki-No-Maiogi" Ability { id: "2BC6", source: "Dancing Fan" } +1455.5 "Tsuki-No-Maiogi" Ability { id: "2BC6", source: "Dancing Fan" } -1460.9 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:2BD(A|B):/ -1461.9 "Waning Grudge/Waxing Grudge" sync / 1[56]:[^:]*:Tsukuyomi:2BD(E|F):/ -1469.9 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ +1460.9 "Bright Blade/Dark Blade" Ability { id: "2BD(A|B)", source: "Tsukuyomi" } +1461.9 "Waning Grudge/Waxing Grudge" Ability { id: "2BD(E|F)", source: "Tsukuyomi" } +1469.9 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } # loop -1476.9 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BBA:/ -1489.2 "Lunacy" sync / 1[56]:[^:]*:Tsukuyomi:2BDC:/ window 50,50 jump 1415.3 -1490.0 "Tsuki-No-Maiogi" #duration 4 #sync / 1[56]:[^:]*:Dancing Fan:2BC6:/ -1491.3 "Lunacy x3" #sync / 1[56]:[^:]*:Tsukuyomi:2BDD:/ -#1492.3 "Lunacy" sync / 1[56]:[^:]*:Tsukuyomi:2BDD:/ -#1493.3 "Lunacy" sync / 1[56]:[^:]*:Tsukuyomi:2BDD:/ - -1501.3 "Bright Blade/Dark Blade" #sync / 1[56]:[^:]*:Tsukuyomi:2BD(A|B):/ -1502.3 "Waning Grudge/Waxing Grudge" #sync / 1[56]:[^:]*:Tsukuyomi:2BD(E|F):/ -1511.4 "Torment Unto Death" #sync / 1[56]:[^:]*:Tsukuyomi:2EB2:/ - -1524.6 "Hagetsu" #sync / 1[56]:[^:]*:Tsukuyomi:2D1C:/ -1526.4 "Tsuki-No-Maiogi" #sync / 1[56]:[^:]*:Dancing Fan:2BC6:/ -1529.4 "Tsuki-No-Maiogi" #sync / 1[56]:[^:]*:Dancing Fan:2BC6:/ +1476.9 "Reprimand" Ability { id: "2BBA", source: "Tsukuyomi" } +1489.2 "Lunacy" Ability { id: "2BDC", source: "Tsukuyomi" } window 50,50 jump 1415.3 +1490.0 "Tsuki-No-Maiogi" #duration 4 #Ability { id: "2BC6", source: "Dancing Fan" } +1491.3 "Lunacy x3" #Ability { id: "2BDD", source: "Tsukuyomi" } +#1492.3 "Lunacy" Ability { id: "2BDD", source: "Tsukuyomi" } +#1493.3 "Lunacy" Ability { id: "2BDD", source: "Tsukuyomi" } + +1501.3 "Bright Blade/Dark Blade" #Ability { id: "2BD(A|B)", source: "Tsukuyomi" } +1502.3 "Waning Grudge/Waxing Grudge" #Ability { id: "2BD(E|F)", source: "Tsukuyomi" } +1511.4 "Torment Unto Death" #Ability { id: "2EB2", source: "Tsukuyomi" } + +1524.6 "Hagetsu" #Ability { id: "2D1C", source: "Tsukuyomi" } +1526.4 "Tsuki-No-Maiogi" #Ability { id: "2BC6", source: "Dancing Fan" } +1529.4 "Tsuki-No-Maiogi" #Ability { id: "2BC6", source: "Dancing Fan" } diff --git a/ui/raidboss/data/04-sb/trial/tsukuyomi.txt b/ui/raidboss/data/04-sb/trial/tsukuyomi.txt index 0986a564b3..8e755d3a64 100644 --- a/ui/raidboss/data/04-sb/trial/tsukuyomi.txt +++ b/ui/raidboss/data/04-sb/trial/tsukuyomi.txt @@ -7,110 +7,110 @@ hideall "--sync--" hideall "--Reset--" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.2 "--sync--" sync / 14:[^:]*:Tsukuyomi:2BE3:/ window 20,20 -14.2 "Torment Unto Death" sync / 1[56]:[^:]*:Tsukuyomi:2BE3:/ -24.3 "Zashiki-Asobi" sync / 1[56]:[^:]*:Tsukuyomi:2BEC:/ -30.4 "Nightfall" sync / 1[56]:[^:]*:Tsukuyomi:2BE5:/ -35.3 "Tsuki-No-Maiogi" duration 4 #sync / 1[56]:[^:]*:Dancing Fan:2BED:/ -36.6 "Steel Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BE7:/ -39.8 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2BC0:/ -49.9 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -65.2 "Midnight Haze 1" sync / 1[56]:[^:]*:Tsukuyomi:2BE8:/ -69.6 "Midnight Haze 2" sync / 1[56]:[^:]*:Tsukuyomi:2BE9:/ -77.7 "Nightfall" sync / 1[56]:[^:]*:Tsukuyomi:2BE4:/ -79.9 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2CB1:/ -85.0 "Lead Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BE6:/ -88.1 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2CCF:/ -107.0 "Nightbloom" sync / 1[56]:[^:]*:Tsukuyomi:2BEE:/ window 110,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.2 "--sync--" StartsUsing { id: "2BE3", source: "Tsukuyomi" } window 20,20 +14.2 "Torment Unto Death" Ability { id: "2BE3", source: "Tsukuyomi" } +24.3 "Zashiki-Asobi" Ability { id: "2BEC", source: "Tsukuyomi" } +30.4 "Nightfall" Ability { id: "2BE5", source: "Tsukuyomi" } +35.3 "Tsuki-No-Maiogi" duration 4 #Ability { id: "2BED", source: "Dancing Fan" } +36.6 "Steel Of The Underworld" Ability { id: "2BE7", source: "Tsukuyomi" } +39.8 "--sync--" Ability { id: "2BC0", source: "Tsukuyomi" } +49.9 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } +65.2 "Midnight Haze 1" Ability { id: "2BE8", source: "Tsukuyomi" } +69.6 "Midnight Haze 2" Ability { id: "2BE9", source: "Tsukuyomi" } +77.7 "Nightfall" Ability { id: "2BE4", source: "Tsukuyomi" } +79.9 "--sync--" Ability { id: "2CB1", source: "Tsukuyomi" } +85.0 "Lead Of The Underworld" Ability { id: "2BE6", source: "Tsukuyomi" } +88.1 "--sync--" Ability { id: "2CCF", source: "Tsukuyomi" } +107.0 "Nightbloom" Ability { id: "2BEE", source: "Tsukuyomi" } window 110,10 108.0 "--untargetable--" ### Phase 2: Adds -127.8 "--Patriarch/Matriarch Adds--" sync / 03:........:Specter Of The Matriarch:/ window 30,10 -174.5 "--Empire/Homeland Adds--" sync / 03:........:Specter Of The Empire:/ window 80,10 +127.8 "--Patriarch/Matriarch Adds--" AddedCombatant { name: "Specter Of The Matriarch" } window 30,10 +174.5 "--Empire/Homeland Adds--" AddedCombatant { name: "Specter Of The Empire" } window 80,10 # TODO: Specter of Asahi shows up alone after all other adds are dead, so can't have a timeline entry. -400.0 "Concentrativity" sync / 1[56]:[^:]*:Specter of Zenos:2BEF:/ window 400,0 -406.7 "Unmoving Troika" sync / 1[56]:[^:]*:Specter of Zenos:2CAB:/ -413.6 "--sync--" sync / 1[56]:[^:]*:Specter of Zenos:2BCA:/ +400.0 "Concentrativity" Ability { id: "2BEF", source: "Specter of Zenos" } window 400,0 +406.7 "Unmoving Troika" Ability { id: "2CAB", source: "Specter of Zenos" } +413.6 "--sync--" Ability { id: "2BCA", source: "Specter of Zenos" } 416.6 "--targetable--" -423.7 "Dispersivity" sync / 1[56]:[^:]*:Specter:2BF0:/ window 40,40 -429.7 "Dispersivity" #sync / 1[56]:[^:]*:Specter:2BF0:/ -435.7 "Dispersivity" #sync / 1[56]:[^:]*:Specter:2BF0:/ -441.7 "Dispersivity" #sync / 1[56]:[^:]*:Specter:2BF0:/ -447.7 "Dispersivity" #sync / 1[56]:[^:]*:Specter:2BF0:/ -453.7 "Dispersivity" #sync / 1[56]:[^:]*:Specter:2BF0:/ +423.7 "Dispersivity" Ability { id: "2BF0", source: "Specter" } window 40,40 +429.7 "Dispersivity" #Ability { id: "2BF0", source: "Specter" } +435.7 "Dispersivity" #Ability { id: "2BF0", source: "Specter" } +441.7 "Dispersivity" #Ability { id: "2BF0", source: "Specter" } +447.7 "Dispersivity" #Ability { id: "2BF0", source: "Specter" } +453.7 "Dispersivity" #Ability { id: "2BF0", source: "Specter" } ### Phase 3: Selenomancy -500.0 "--sync--" sync / 14:[^:]*:Tsukuyomi:2CB0:/ window 500,0 -504.0 "Nightbloom" sync / 1[56]:[^:]*:Tsukuyomi:2CB0:/ +500.0 "--sync--" StartsUsing { id: "2CB0", source: "Tsukuyomi" } window 500,0 +504.0 "Nightbloom" Ability { id: "2CB0", source: "Tsukuyomi" } 509.9 "--targetable--" -524.4 "Selenomancy" sync / 1[56]:[^:]*:Tsukuyomi:2BF1:/ -541.6 "Nightfall" sync / 1[56]:[^:]*:Tsukuyomi:2BE4:/ -543.6 "Lunar Halo" sync / 1[56]:[^:]*:Moonlight:2C73:/ -543.8 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2CB1:/ -549.0 "Lead Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BE6:/ -552.1 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2CCF:/ -565.3 "Antitwilight" sync / 1[56]:[^:]*:Tsukuyomi:2BF8:/ -575.5 "Torment Unto Death" sync / 1[56]:[^:]*:Tsukuyomi:2BE3:/ -582.7 "Zashiki-Asobi" sync / 1[56]:[^:]*:Tsukuyomi:2BEC:/ -588.8 "Nightfall" sync / 1[56]:[^:]*:Tsukuyomi:2BE4:/ -591.0 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2CB1:/ -593.7 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BED:/ duration 4 -596.2 "Lead Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BE6:/ -599.3 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2CCF:/ -611.5 "Torment Unto Death" sync / 1[56]:[^:]*:Tsukuyomi:2BE3:/ -623.2 "Selenomancy" sync / 1[56]:[^:]*:Tsukuyomi:2BF1:/ -630.5 "Midnight Haze" sync / 1[56]:[^:]*:Tsukuyomi:2BE8:/ -635.0 "Midnight Haze" sync / 1[56]:[^:]*:Tsukuyomi:2BE9:/ -643.1 "Nightfall" sync / 1[56]:[^:]*:Tsukuyomi:2BE5:/ -649.3 "Steel Of The Underworld" sync / 1[56]:[^:]*:Tsukuyomi:2BE7:/ -652.2 "Lunar Halo" sync / 1[56]:[^:]*:Moonlight:2C73:/ -652.5 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2BC0:/ -667.7 "Perilune" sync / 1[56]:[^:]*:Tsukuyomi:2BF7:/ +524.4 "Selenomancy" Ability { id: "2BF1", source: "Tsukuyomi" } +541.6 "Nightfall" Ability { id: "2BE4", source: "Tsukuyomi" } +543.6 "Lunar Halo" Ability { id: "2C73", source: "Moonlight" } +543.8 "--sync--" Ability { id: "2CB1", source: "Tsukuyomi" } +549.0 "Lead Of The Underworld" Ability { id: "2BE6", source: "Tsukuyomi" } +552.1 "--sync--" Ability { id: "2CCF", source: "Tsukuyomi" } +565.3 "Antitwilight" Ability { id: "2BF8", source: "Tsukuyomi" } +575.5 "Torment Unto Death" Ability { id: "2BE3", source: "Tsukuyomi" } +582.7 "Zashiki-Asobi" Ability { id: "2BEC", source: "Tsukuyomi" } +588.8 "Nightfall" Ability { id: "2BE4", source: "Tsukuyomi" } +591.0 "--sync--" Ability { id: "2CB1", source: "Tsukuyomi" } +593.7 "Tsuki-No-Maiogi" Ability { id: "2BED", source: "Dancing Fan" } duration 4 +596.2 "Lead Of The Underworld" Ability { id: "2BE6", source: "Tsukuyomi" } +599.3 "--sync--" Ability { id: "2CCF", source: "Tsukuyomi" } +611.5 "Torment Unto Death" Ability { id: "2BE3", source: "Tsukuyomi" } +623.2 "Selenomancy" Ability { id: "2BF1", source: "Tsukuyomi" } +630.5 "Midnight Haze" Ability { id: "2BE8", source: "Tsukuyomi" } +635.0 "Midnight Haze" Ability { id: "2BE9", source: "Tsukuyomi" } +643.1 "Nightfall" Ability { id: "2BE5", source: "Tsukuyomi" } +649.3 "Steel Of The Underworld" Ability { id: "2BE7", source: "Tsukuyomi" } +652.2 "Lunar Halo" Ability { id: "2C73", source: "Moonlight" } +652.5 "--sync--" Ability { id: "2BC0", source: "Tsukuyomi" } +667.7 "Perilune" Ability { id: "2BF7", source: "Tsukuyomi" } ### Phase 4: Dance Of The Dead -> Bright/Dark Blade (hp push and timed) -677.3 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2BFD:/ window 700,50 -678.3 "--sync--" sync / 1[56]:[^:]*:Tsukuyomi:2D1F:/ -683.2 "Dance Of The Dead" sync / 1[56]:[^:]*:Tsukuyomi:2E79:/ -693.5 "Lunacy x3" sync / 1[56]:[^:]*:Tsukuyomi:2BFB:/ -701.8 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:(2BF9|2BFA):/ -709.0 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -719.2 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:(2BF9|2BFA):/ -725.2 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BED:/ duration 4 -726.5 "Lunacy x4" sync / 1[56]:[^:]*:Tsukuyomi:2BFB:/ -738.8 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -749.1 "Torment Unto Death" sync / 1[56]:[^:]*:Tsukuyomi:2EB3:/ -758.2 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -759.0 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BED:/ duration 4 -763.4 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:(2BF9|2BFA):/ -770.6 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -780.7 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:(2BF9|2BFA):/ -786.7 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BED:/ duration 4 -788.1 "Lunacy x5" sync / 1[56]:[^:]*:Tsukuyomi:2BFB:/ -801.5 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ +677.3 "--sync--" Ability { id: "2BFD", source: "Tsukuyomi" } window 700,50 +678.3 "--sync--" Ability { id: "2D1F", source: "Tsukuyomi" } +683.2 "Dance Of The Dead" Ability { id: "2E79", source: "Tsukuyomi" } +693.5 "Lunacy x3" Ability { id: "2BFB", source: "Tsukuyomi" } +701.8 "Bright Blade/Dark Blade" Ability { id: ["2BF9", "2BFA"], source: "Tsukuyomi" } +709.0 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } +719.2 "Bright Blade/Dark Blade" Ability { id: ["2BF9", "2BFA"], source: "Tsukuyomi" } +725.2 "Tsuki-No-Maiogi" Ability { id: "2BED", source: "Dancing Fan" } duration 4 +726.5 "Lunacy x4" Ability { id: "2BFB", source: "Tsukuyomi" } +738.8 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } +749.1 "Torment Unto Death" Ability { id: "2EB3", source: "Tsukuyomi" } +758.2 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } +759.0 "Tsuki-No-Maiogi" Ability { id: "2BED", source: "Dancing Fan" } duration 4 +763.4 "Bright Blade/Dark Blade" Ability { id: ["2BF9", "2BFA"], source: "Tsukuyomi" } +770.6 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } +780.7 "Bright Blade/Dark Blade" Ability { id: ["2BF9", "2BFA"], source: "Tsukuyomi" } +786.7 "Tsuki-No-Maiogi" Ability { id: "2BED", source: "Dancing Fan" } duration 4 +788.1 "Lunacy x5" Ability { id: "2BFB", source: "Tsukuyomi" } +801.5 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } # begin loop -811.7 "Torment Unto Death" sync / 1[56]:[^:]*:Tsukuyomi:2EB3:/ -820.8 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -821.7 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BED:/ duration 4 -826.1 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:(2BF9|2BFA):/ -833.2 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -843.4 "Bright Blade/Dark Blade" sync / 1[56]:[^:]*:Tsukuyomi:(2BF9|2BFA):/ -849.4 "Tsuki-No-Maiogi" sync / 1[56]:[^:]*:Dancing Fan:2BED:/ duration 4 -850.7 "Lunacy x5" sync / 1[56]:[^:]*:Tsukuyomi:2BFB:/ -864.1 "Reprimand" sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ +811.7 "Torment Unto Death" Ability { id: "2EB3", source: "Tsukuyomi" } +820.8 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } +821.7 "Tsuki-No-Maiogi" Ability { id: "2BED", source: "Dancing Fan" } duration 4 +826.1 "Bright Blade/Dark Blade" Ability { id: ["2BF9", "2BFA"], source: "Tsukuyomi" } +833.2 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } +843.4 "Bright Blade/Dark Blade" Ability { id: ["2BF9", "2BFA"], source: "Tsukuyomi" } +849.4 "Tsuki-No-Maiogi" Ability { id: "2BED", source: "Dancing Fan" } duration 4 +850.7 "Lunacy x5" Ability { id: "2BFB", source: "Tsukuyomi" } +864.1 "Reprimand" Ability { id: "2BE2", source: "Tsukuyomi" } # loop -874.3 "Torment Unto Death" sync / 1[56]:[^:]*:Tsukuyomi:2EB3:/ window 50,50 jump 811.7 -883.4 "Reprimand" #sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -884.3 "Tsuki-No-Maiogi" #sync / 1[56]:[^:]*:Dancing Fan:2BED:/ duration 4 -888.7 "Bright Blade/Dark Blade" #sync / 1[56]:[^:]*:Tsukuyomi:(2BF9|2BFA):/ -895.8 "Reprimand" #sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ -906.0 "Bright Blade/Dark Blade" #sync / 1[56]:[^:]*:Tsukuyomi:(2BF9|2BFA):/ -912.0 "Tsuki-No-Maiogi" #sync / 1[56]:[^:]*:Dancing Fan:2BED:/ duration 4 -913.3 "Lunacy x5" #sync / 1[56]:[^:]*:Tsukuyomi:2BFB:/ -926.7 "Reprimand" #sync / 1[56]:[^:]*:Tsukuyomi:2BE2:/ +874.3 "Torment Unto Death" Ability { id: "2EB3", source: "Tsukuyomi" } window 50,50 jump 811.7 +883.4 "Reprimand" #Ability { id: "2BE2", source: "Tsukuyomi" } +884.3 "Tsuki-No-Maiogi" #Ability { id: "2BED", source: "Dancing Fan" } duration 4 +888.7 "Bright Blade/Dark Blade" #Ability { id: ["2BF9", "2BFA"], source: "Tsukuyomi" } +895.8 "Reprimand" #Ability { id: "2BE2", source: "Tsukuyomi" } +906.0 "Bright Blade/Dark Blade" #Ability { id: ["2BF9", "2BFA"], source: "Tsukuyomi" } +912.0 "Tsuki-No-Maiogi" #Ability { id: "2BED", source: "Dancing Fan" } duration 4 +913.3 "Lunacy x5" #Ability { id: "2BFB", source: "Tsukuyomi" } +926.7 "Reprimand" #Ability { id: "2BE2", source: "Tsukuyomi" } diff --git a/ui/raidboss/data/04-sb/trial/yojimbo.txt b/ui/raidboss/data/04-sb/trial/yojimbo.txt index d8891e1b1e..49d3148b3d 100644 --- a/ui/raidboss/data/04-sb/trial/yojimbo.txt +++ b/ui/raidboss/data/04-sb/trial/yojimbo.txt @@ -26,100 +26,100 @@ hideall "--Reset--" hideall "--sync--" 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.4 "Wakizashi" sync / 1[56]:[^:]*:Yojimbo:3827:/ window 7,7 -14.5 "Inoshikacho" sync / 1[56]:[^:]*:Yojimbo:3829:/ duration 9.2 -23.7 "--sync--" sync / 1[56]:[^:]*:Inoshikacho:382A:/ -28.8 "Metta-giri" sync / 1[56]:[^:]*:Yojimbo:3828:/ -32.0 "--untargetable--" sync / 1[56]:[^:]*:Yojimbo:382B:/ -37.2 "--sync--" sync / 1[56]:[^:]*:Yojimbo:382C:/ -44.0 "Unveiling" sync / 1[56]:[^:]*:Yojimbo:382D:/ -55.6 "--sync--" sync / 1[56]:[^:]*:Yojimbo:382F:/ -58.5 "Yukikaze" #sync / 1[56]:[^:]*:Yojimbo:3832:/ -59.6 "--sync--" sync / 1[56]:[^:]*:Yojimbo:3830:/ -62.1 "Yukikaze" #sync / 1[56]:[^:]*:Yojimbo:3832:/ -63.7 "Gekko" sync / 1[56]:[^:]*:Yojimbo:3833:/ -67.7 "Kasha" sync / 1[56]:[^:]*:Gilgamesh:3834:/ -73.7 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:31DE:/ -84.2 "Tiny Song" sync / 1[56]:[^:]*:Yojimbo:3835:/ -88.8 "Dragon's Lair" sync / 1[56]:[^:]*:Yojimbo:3836:/ -97.4 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:382E:/ -103.8 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:382E:/ -106.8 "Dragon Night" sync / 1[56]:[^:]*:Yojimbo:3838:/ -123.2 "Tiny Song" sync / 1[56]:[^:]*:Yojimbo:3835:/ -128.8 "--sync--" sync / 1[56]:[^:]*:Yojimbo:382F:/ -131.8 "Yukikaze" #sync / 1[56]:[^:]*:Yojimbo:3832:/ -132.9 "--sync--" sync / 1[56]:[^:]*:Yojimbo:3830:/ -135.4 "Yukikaze" #sync / 1[56]:[^:]*:Yojimbo:3832:/ -136.9 "Gekko" sync / 1[56]:[^:]*:Yojimbo:3833:/ -141.0 "Kasha" sync / 1[56]:[^:]*:Gilgamesh:3834:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.4 "Wakizashi" Ability { id: "3827", source: "Yojimbo" } window 7,7 +14.5 "Inoshikacho" Ability { id: "3829", source: "Yojimbo" } duration 9.2 +23.7 "--sync--" Ability { id: "382A", source: "Inoshikacho" } +28.8 "Metta-giri" Ability { id: "3828", source: "Yojimbo" } +32.0 "--untargetable--" Ability { id: "382B", source: "Yojimbo" } +37.2 "--sync--" Ability { id: "382C", source: "Yojimbo" } +44.0 "Unveiling" Ability { id: "382D", source: "Yojimbo" } +55.6 "--sync--" Ability { id: "382F", source: "Yojimbo" } +58.5 "Yukikaze" #Ability { id: "3832", source: "Yojimbo" } +59.6 "--sync--" Ability { id: "3830", source: "Yojimbo" } +62.1 "Yukikaze" #Ability { id: "3832", source: "Yojimbo" } +63.7 "Gekko" Ability { id: "3833", source: "Yojimbo" } +67.7 "Kasha" Ability { id: "3834", source: "Gilgamesh" } +73.7 "Bitter End" Ability { id: "31DE", source: "Yojimbo" } +84.2 "Tiny Song" Ability { id: "3835", source: "Yojimbo" } +88.8 "Dragon's Lair" Ability { id: "3836", source: "Yojimbo" } +97.4 "Bitter End" Ability { id: "382E", source: "Yojimbo" } +103.8 "Bitter End" Ability { id: "382E", source: "Yojimbo" } +106.8 "Dragon Night" Ability { id: "3838", source: "Yojimbo" } +123.2 "Tiny Song" Ability { id: "3835", source: "Yojimbo" } +128.8 "--sync--" Ability { id: "382F", source: "Yojimbo" } +131.8 "Yukikaze" #Ability { id: "3832", source: "Yojimbo" } +132.9 "--sync--" Ability { id: "3830", source: "Yojimbo" } +135.4 "Yukikaze" #Ability { id: "3832", source: "Yojimbo" } +136.9 "Gekko" Ability { id: "3833", source: "Yojimbo" } +141.0 "Kasha" Ability { id: "3834", source: "Gilgamesh" } -147.1 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:382E:/ -151.5 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:382E:/ +147.1 "Bitter End" Ability { id: "382E", source: "Yojimbo" } +151.5 "Bitter End" Ability { id: "382E", source: "Yojimbo" } # """Adds""" phase 157.3 "--untargetable--" # starts 100 seconds of gauge -157.7 "--sync--" sync / 1[56]:[^:]*:Yojimbo:383A:/ window 200,200 -161.2 "Giga Jump" sync / 1[56]:[^:]*:Embodiment:383B:/ +157.7 "--sync--" Ability { id: "383A", source: "Yojimbo" } window 200,200 +161.2 "Giga Jump" Ability { id: "383B", source: "Embodiment" } 164.0 "--targetable--" -169.6 "Bitter End" #sync / 1[56]:[^:]*:Embodiment:382E:/ -175.1 "Bitter End" #sync / 1[56]:[^:]*:Embodiment:382E:/ -175.3 "A Giant Me" sync / 1[56]:[^:]*:Embodiment:3830:/ -179.3 "Gekko" sync / 1[56]:[^:]*:Yojimbo:3833:/ -182.4 "Bitter End" #sync / 1[56]:[^:]*:Embodiment:382E:/ -183.4 "Kasha" sync / 1[56]:[^:]*:Gilgamesh:3834:/ -187.5 "Bitter End" #sync / 1[56]:[^:]*:Embodiment:382E:/ -198.9 "Kasha" sync / 1[56]:[^:]*:Yojimbo:3834:/ -203.2 "Gekko" sync / 1[56]:[^:]*:Yojimbo:3833:/ -206.0 "Bitter End" #sync / 1[56]:[^:]*:Embodiment:382E:/ -210.3 "Bitter End" #sync / 1[56]:[^:]*:Embodiment:382E:/ -223.7 "Bitter End" #sync / 1[56]:[^:]*:Embodiment:382E:/ -229.1 "Bitter End" #sync / 1[56]:[^:]*:Embodiment:382E:/ +169.6 "Bitter End" #Ability { id: "382E", source: "Embodiment" } +175.1 "Bitter End" #Ability { id: "382E", source: "Embodiment" } +175.3 "A Giant Me" Ability { id: "3830", source: "Embodiment" } +179.3 "Gekko" Ability { id: "3833", source: "Yojimbo" } +182.4 "Bitter End" #Ability { id: "382E", source: "Embodiment" } +183.4 "Kasha" Ability { id: "3834", source: "Gilgamesh" } +187.5 "Bitter End" #Ability { id: "382E", source: "Embodiment" } +198.9 "Kasha" Ability { id: "3834", source: "Yojimbo" } +203.2 "Gekko" Ability { id: "3833", source: "Yojimbo" } +206.0 "Bitter End" #Ability { id: "382E", source: "Embodiment" } +210.3 "Bitter End" #Ability { id: "382E", source: "Embodiment" } +223.7 "Bitter End" #Ability { id: "382E", source: "Embodiment" } +229.1 "Bitter End" #Ability { id: "382E", source: "Embodiment" } # ??? -296.0 "--sync--" sync / 14:[^:]*:Gilgamesh:383D:/ window 100,0 -300.0 "Ame-no-Murakumo" sync / 1[56]:[^:]*:Gilgamesh:383D:/ window 300,300 -316.4 "Giga Jump" sync / 1[56]:[^:]*:Yojimbo:383E:/ # drift -0.048 +296.0 "--sync--" StartsUsing { id: "383D", source: "Gilgamesh" } window 100,0 +300.0 "Ame-no-Murakumo" Ability { id: "383D", source: "Gilgamesh" } window 300,300 +316.4 "Giga Jump" Ability { id: "383E", source: "Yojimbo" } # drift -0.048 316.4 "--targetable--" -319.0 "Electrogenetic Force" sync / 1[56]:[^:]*:Yojimbo:383F:/ duration 9.6 -328.6 "--sync--" sync / 1[56]:[^:]*:Electrogenetic Force:3840:/ -338.6 "Enchain" sync / 1[56]:[^:]*:Yojimbo:3841:/ -361.1 "Hell's Gate" sync / 1[56]:[^:]*:Yojimbo:3842:/ +319.0 "Electrogenetic Force" Ability { id: "383F", source: "Yojimbo" } duration 9.6 +328.6 "--sync--" Ability { id: "3840", source: "Electrogenetic Force" } +338.6 "Enchain" Ability { id: "3841", source: "Yojimbo" } +361.1 "Hell's Gate" Ability { id: "3842", source: "Yojimbo" } # final loop -374.5 "Masamune" sync / 1[56]:[^:]*:Yojimbo:3843:/ -380.4 "Zanma Zanmai" sync / 1[56]:[^:]*:Yojimbo:3844:/ -388.0 "Epic Stormsplitter" sync / 1[56]:[^:]*:Yojimbo:3845:/ -396.5 "Dragon's Lair" sync / 1[56]:[^:]*:Yojimbo:3836:/ -399.0 "Electrogenetic Force" sync / 1[56]:[^:]*:Yojimbo:383F:/ duration 9.6 -408.7 "--sync--" sync / 1[56]:[^:]*:Electrogenetic Force:3840:/ -414.5 "Dragon Night" sync / 1[56]:[^:]*:Yojimbo:3838:/ -416.6 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:382E:/ -422.0 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:382E:/ +374.5 "Masamune" Ability { id: "3843", source: "Yojimbo" } +380.4 "Zanma Zanmai" Ability { id: "3844", source: "Yojimbo" } +388.0 "Epic Stormsplitter" Ability { id: "3845", source: "Yojimbo" } +396.5 "Dragon's Lair" Ability { id: "3836", source: "Yojimbo" } +399.0 "Electrogenetic Force" Ability { id: "383F", source: "Yojimbo" } duration 9.6 +408.7 "--sync--" Ability { id: "3840", source: "Electrogenetic Force" } +414.5 "Dragon Night" Ability { id: "3838", source: "Yojimbo" } +416.6 "Bitter End" Ability { id: "382E", source: "Yojimbo" } +422.0 "Bitter End" Ability { id: "382E", source: "Yojimbo" } -433.5 "--sync--" sync / 1[56]:[^:]*:Yojimbo:382F:/ -436.5 "Yukikaze" #sync / 1[56]:[^:]*:Yojimbo:3832:/ -437.6 "--sync--" sync / 1[56]:[^:]*:Yojimbo:3830:/ -430.0 "Yukikaze" #sync / 1[56]:[^:]*:Yojimbo:3832:/ -441.6 "Gekko" sync / 1[56]:[^:]*:Yojimbo:3833:/ -445.7 "Kasha" sync / 1[56]:[^:]*:Gilgamesh:3834:/ -445.8 "Dragon's Lair" sync / 1[56]:[^:]*:Yojimbo:3836:/ -456.5 "Tiny Song" sync / 1[56]:[^:]*:Yojimbo:3835:/ -463.8 "Dragon Night" sync / 1[56]:[^:]*:Yojimbo:3838:/ -469.1 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:382E:/ +433.5 "--sync--" Ability { id: "382F", source: "Yojimbo" } +436.5 "Yukikaze" #Ability { id: "3832", source: "Yojimbo" } +437.6 "--sync--" Ability { id: "3830", source: "Yojimbo" } +430.0 "Yukikaze" #Ability { id: "3832", source: "Yojimbo" } +441.6 "Gekko" Ability { id: "3833", source: "Yojimbo" } +445.7 "Kasha" Ability { id: "3834", source: "Gilgamesh" } +445.8 "Dragon's Lair" Ability { id: "3836", source: "Yojimbo" } +456.5 "Tiny Song" Ability { id: "3835", source: "Yojimbo" } +463.8 "Dragon Night" Ability { id: "3838", source: "Yojimbo" } +469.1 "Bitter End" Ability { id: "382E", source: "Yojimbo" } -474.4 "--sync--" sync / 1[56]:[^:]*:Yojimbo:382F:/ -477.4 "Yukikaze" sync / 1[56]:[^:]*:Yojimbo:3832:/ -478.5 "--sync--" sync / 1[56]:[^:]*:Yojimbo:3830:/ -480.9 "Yukikaze" sync / 1[56]:[^:]*:Yojimbo:3832:/ -482.5 "Gekko" sync / 1[56]:[^:]*:Yojimbo:3833:/ -486.6 "Kasha" sync / 1[56]:[^:]*:Gilgamesh:3834:/ -489.8 "Bitter End" sync / 1[56]:[^:]*:Yojimbo:382E:/ +474.4 "--sync--" Ability { id: "382F", source: "Yojimbo" } +477.4 "Yukikaze" Ability { id: "3832", source: "Yojimbo" } +478.5 "--sync--" Ability { id: "3830", source: "Yojimbo" } +480.9 "Yukikaze" Ability { id: "3832", source: "Yojimbo" } +482.5 "Gekko" Ability { id: "3833", source: "Yojimbo" } +486.6 "Kasha" Ability { id: "3834", source: "Gilgamesh" } +489.8 "Bitter End" Ability { id: "382E", source: "Yojimbo" } # fake loop lookahead -505.0 "Masamune" sync / 1[56]:[^:]*:Yojimbo:3843:/ window 40,40 jump 374.5 +505.0 "Masamune" Ability { id: "3843", source: "Yojimbo" } window 40,40 jump 374.5 510.9 "Zanma Zanmai" 518.5 "Epic Stormsplitter" 527.0 "Dragon's Lair" diff --git a/ui/raidboss/data/04-sb/ultimate/ultima_weapon_ultimate.ts b/ui/raidboss/data/04-sb/ultimate/ultima_weapon_ultimate.ts index 67fe6b49df..d320de36fe 100644 --- a/ui/raidboss/data/04-sb/ultimate/ultima_weapon_ultimate.ts +++ b/ui/raidboss/data/04-sb/ultimate/ultima_weapon_ultimate.ts @@ -845,9 +845,16 @@ const triggerSet: TriggerSet = { en: `If the first nail is SE, this will call SE/NW for both reverse-Z and normal-Z. If the first nail is S, this will call SE/NW for reverse-Z and SW/NE for normal-Z. Other nail orders are also supported, these are just examples.`, + de: + `Wenn der erste Nagel SO ist, wird dies SO/NW sowohl für Umgekehrtes-Z als auch für Normal-Z aufgerufen. + Wenn der erste Nagel S ist, wird dies SO/NW für Umgekehrtes-Z und SW/NO für Normal-Z aufgerufen. + Andere Nagelreihenfolgen werden ebenfalls unterstützt, dies sind nur Beispiele.`, cn: `如果第一个火神柱在东南,则反向 Z 和正常 Z 都会提示东南/西北 如果第一个火神柱在南, 则反向 Z 将提示东南/西北,正常 Z 将提示西南/东北。 这些只是示例, 还支持其他火神柱顺序。`, + ko: `첫 번째 기둥이 남동쪽인 경우, 역방향 Z와 일반 Z 모두에 대해 남동/북서를 호출합니다. + 첫 번째 기둥이 남쪽인 경우, 역방향 Z는 남동/북서를, 일반 Z는 남서/북동를 호출합니다. + 다른 기둥 순서도 지원되며, 이는 예시일 뿐입니다.`, }, type: 'NameToggle', netRegex: { name: 'Ifrit', toggle: '00', capture: false }, @@ -890,9 +897,16 @@ const triggerSet: TriggerSet = { en: `If the first nail was on an intercard, then the first Ifrit dash is on an intercard and this optional call is to move to be adjacent to that first dash. If you are already safe, this will not be called.`, + de: + `Wenn der erste Nagel Interkardinal war, dann ist der erste Ifrit-Ansturm auf einer Interkardinalen + und dieser optionale Aufruf besteht darin, sich in die Nähe dieses ersten Ansturms zu bewegen. + Wenn man bereits in Sicherheit ist, wird dies nicht aufgerufen.`, cn: `如果第一个火神柱在对角线上,那么第一次火神冲也在对角线上。 这个可选提示会提示你移动到第一次火神冲附近的位置。 如果你已在安全区,则不会输出此提示。`, + ko: `첫 번째 기둥이 대각선에 있으면 첫 번째 이프리트 돌진도 대각선에 있으며, + 이 알람은 첫 번째 돌진 옆으로 이동하라는 것이 됩니다. + 이미 안전하다면 이 알람은 호출되지 않습니다.`, }, type: 'NameToggle', netRegex: { name: 'Ifrit', toggle: '00', capture: false }, @@ -933,10 +947,19 @@ const triggerSet: TriggerSet = { Both the party and the healer will move either 45 or 90 degrees. It is a "fast" movement if you need to move fast to avoid the Ifrit follow-up dash. It is a "slow" movement if you have extra time to do this.`, + de: + `Dies ist die Hauptbewegung für die Ifrit-Anstürme, die in der Nähe des ersten Ansturms beginnt. + Sowohl die Gruppe als auch der Heiler bewegen sich entweder um 45 oder 90 Grad. + Es ist eine "schnelle" Bewegung, wenn man sich schnell bewegen muss, um dem Ifrit-Folgeschlag auszuweichen. + Es ist eine "langsame" Bewegung, wenn man mehr Zeit hat, dies zu tun.`, cn: `这是从第一次火神冲附近开始的火神冲主要移动。 人群和奶妈都将移动 45 度或 90 度。 "快" 可以让你快速移动,躲避第二次火神冲。 "慢" 当你有足够的时间来移动时使用。`, + ko: `첫 번째 돌진 직후부터 시작되는 이프리트 돌진의 주요 동선입니다. + 본대와 힐러 모두 45도 또는 90도로 움직입니다. + 이프리트의 후속 돌진을 피하기 위해 빠르게 이동해야 하는 경우 "빠른" 이동입니다. + 시간적 여유가 있다면 "느린" 이동입니다.`, }, type: 'NameToggle', netRegex: { name: 'Ifrit', toggle: '00', capture: false }, @@ -1004,25 +1027,25 @@ const triggerSet: TriggerSet = { en: '${rotation} 45° to ${dir} (fast)', de: '${rotation} 45° nach ${dir} (schnell)', cn: '${rotation} 45° 到 ${dir} (快)', - ko: '${rotation} 45° ${dir}까지 (빠르게)', + ko: '${rotation} 45° ${dir}까지 (빠름)', }, awokenDash2: { en: '${rotation} 90° to ${dir} (fast)', de: '${rotation} 90° nach ${dir} (schnell)', cn: '${rotation} 90° 到 ${dir} (快)', - ko: '${rotation} 90° ${dir}까지 (빠르게)', + ko: '${rotation} 90° ${dir}까지 (빠름)', }, awokenDash3: { en: '${rotation} 45° to ${dir} (slow)', de: '${rotation} 45° nach ${dir} (langsam)', cn: '${rotation} 45° 到 ${dir} (慢)', - ko: '${rotation} 45° ${dir}까지 (천천히)', + ko: '${rotation} 45° ${dir}까지 (느림)', }, awokenDash4: { en: '${rotation} 90° to ${dir} (slow)', de: '${rotation} 90° nach ${dir} (langsam)', cn: '${rotation} 90° 到 ${dir} (慢)', - ko: '${rotation} 90° ${dir}까지 (천천히)', + ko: '${rotation} 90° ${dir}까지 (느림)', }, clockwise: Outputs.clockwise, counterclockwise: Outputs.counterclockwise, diff --git a/ui/raidboss/data/04-sb/ultimate/ultima_weapon_ultimate.txt b/ui/raidboss/data/04-sb/ultimate/ultima_weapon_ultimate.txt index 24b90be704..3201398c77 100644 --- a/ui/raidboss/data/04-sb/ultimate/ultima_weapon_ultimate.txt +++ b/ui/raidboss/data/04-sb/ultimate/ultima_weapon_ultimate.txt @@ -14,316 +14,316 @@ hideall "--Reset--" ### Phase 1: Garuda ### -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.3 "--sync--" sync / 14:[^:]*:Garuda:2B53:/ window 10,10 -8.8 "Slipstream" sync / 1[56]:[^:]*:Garuda:2B53:/ -11.4 "Mistral Song" sync / 1[56]:[^:]*:Garuda:2B42:/ -17.5 "Great Whirlwind" sync / 1[56]:[^:]*:Garuda:2B41:/ -23.6 "Great Whirlwind" sync / 1[56]:[^:]*:Garuda:2B41:/ -24.2 "Slipstream" sync / 1[56]:[^:]*:Garuda:2B53:/ -27.6 "Downburst" sync / 1[56]:[^:]*:Garuda:2B50:/ -29.7 "Great Whirlwind" sync / 1[56]:[^:]*:Garuda:2B41:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.3 "--sync--" StartsUsing { id: "2B53", source: "Garuda" } window 10,10 +8.8 "Slipstream" Ability { id: "2B53", source: "Garuda" } +11.4 "Mistral Song" Ability { id: "2B42", source: "Garuda" } +17.5 "Great Whirlwind" Ability { id: "2B41", source: "Garuda" } +23.6 "Great Whirlwind" Ability { id: "2B41", source: "Garuda" } +24.2 "Slipstream" Ability { id: "2B53", source: "Garuda" } +27.6 "Downburst" Ability { id: "2B50", source: "Garuda" } +29.7 "Great Whirlwind" Ability { id: "2B41", source: "Garuda" } 34.9 "--untargetable--" -37.5 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ +37.5 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } 39.2 "--targetable--" -42.2 "Mistral Shriek" sync / 1[56]:[^:]*:Garuda:2B54:/ -51.5 "Friction 1" sync / 1[56]:[^:]*:Garuda:2B48:/ -57.6 "Friction 2" sync / 1[56]:[^:]*:Garuda:2B48:/ +42.2 "Mistral Shriek" Ability { id: "2B54", source: "Garuda" } +51.5 "Friction 1" Ability { id: "2B48", source: "Garuda" } +57.6 "Friction 2" Ability { id: "2B48", source: "Garuda" } 69.5 "--untargetable--" -72.1 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ +72.1 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } 73.8 "--targetable--" -76.8 "Aerial Blast" sync / 1[56]:[^:]*:Garuda:2B55:/ -92.9 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ -99.8 "Mistral Song x2" sync / 1[56]:[^:]*:Chirada:2B4B:/ -100.1 "Eye of the Storm" sync / 1[56]:[^:]*:Garuda:2B52:/ -100.2 "Wicked Wheel" sync / 1[56]:[^:]*:Garuda:2B4E:/ -104.2 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ -105.8 "Great Whirlwind" sync / 1[56]:[^:]*:Suparna:2B41:/ -121.8 "Slipstream" sync / 1[56]:[^:]*:Garuda:2B53:/ -123.0 "Eye of the Storm" sync / 1[56]:[^:]*:Garuda:2B52:/ -125.0 "Mesohigh x2" sync / 1[56]:[^:]*:Chirada:2B49:/ -125.1 "Downburst" sync / 1[56]:[^:]*:Garuda:2B50:/ -129.6 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ -142.2 "Slipstream" sync / 1[56]:[^:]*:Garuda:2B53:/ -150.6 "Wicked Wheel" sync / 1[56]:[^:]*:Garuda:2B4E:/ -152.6 "Wicked Tornado" sync / 1[56]:[^:]*:Garuda:2B4F:/ -155.4 "Downburst" sync / 1[56]:[^:]*:Garuda:2B50:/ -163.4 "Slipstream" sync / 1[56]:[^:]*:Garuda:2B53:/ +76.8 "Aerial Blast" Ability { id: "2B55", source: "Garuda" } +92.9 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } +99.8 "Mistral Song x2" Ability { id: "2B4B", source: "Chirada" } +100.1 "Eye of the Storm" Ability { id: "2B52", source: "Garuda" } +100.2 "Wicked Wheel" Ability { id: "2B4E", source: "Garuda" } +104.2 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } +105.8 "Great Whirlwind" Ability { id: "2B41", source: "Suparna" } +121.8 "Slipstream" Ability { id: "2B53", source: "Garuda" } +123.0 "Eye of the Storm" Ability { id: "2B52", source: "Garuda" } +125.0 "Mesohigh x2" Ability { id: "2B49", source: "Chirada" } +125.1 "Downburst" Ability { id: "2B50", source: "Garuda" } +129.6 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } +142.2 "Slipstream" Ability { id: "2B53", source: "Garuda" } +150.6 "Wicked Wheel" Ability { id: "2B4E", source: "Garuda" } +152.6 "Wicked Tornado" Ability { id: "2B4F", source: "Garuda" } +155.4 "Downburst" Ability { id: "2B50", source: "Garuda" } +163.4 "Slipstream" Ability { id: "2B53", source: "Garuda" } # retime below -176.5 "--untargetable--" sync / 1[56]:[^:]*:Garuda:2B4D:/ -181.5 "Aerial Blast" sync / 1[56]:[^:]*:Garuda:2B55:/ +176.5 "--untargetable--" Ability { id: "2B4D", source: "Garuda" } +181.5 "Aerial Blast" Ability { id: "2B55", source: "Garuda" } ### Phase 2: Ifrit ### -300.0 "--sync--" sync / 14:[^:]*:Ifrit:2B5F:/ window 300,0 -303.0 "Crimson Cyclone" sync / 1[56]:[^:]*:Ifrit:2B5F:/ -304.0 "Radiant Plume" sync / 1[56]:[^:]*:Ifrit:2B61:/ +300.0 "--sync--" StartsUsing { id: "2B5F", source: "Ifrit" } window 300,0 +303.0 "Crimson Cyclone" Ability { id: "2B5F", source: "Ifrit" } +304.0 "Radiant Plume" Ability { id: "2B61", source: "Ifrit" } 307.1 "--targetable--" -310.1 "Hellfire" sync / 1[56]:[^:]*:Ifrit:2B5E:/ -318.3 "Vulcan Burst" sync / 1[56]:[^:]*:Ifrit:2B57:/ -321.2 "Incinerate 1" sync / 1[56]:[^:]*:Ifrit:2B56:/ -324.3 "Incinerate 2" sync / 1[56]:[^:]*:Ifrit:2B56:/ -328.4 "Incinerate 3" sync / 1[56]:[^:]*:Ifrit:2B56:/ -331.5 "--nail adds--" sync / 1[56]:[^:]*:Ifrit:1CD:/ -340.6 "Infernal Fetters" sync / 1[56]:[^:]*:Ifrit:2C19:/ -342.7 "Inferno Howl" sync / 1[56]:[^:]*:Ifrit:2B5B:/ duration 18 -348.8 "Eruption 1" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -350.8 "Eruption 2" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -352.8 "Eruption 3" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -354.8 "Eruption 4" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ +310.1 "Hellfire" Ability { id: "2B5E", source: "Ifrit" } +318.3 "Vulcan Burst" Ability { id: "2B57", source: "Ifrit" } +321.2 "Incinerate 1" Ability { id: "2B56", source: "Ifrit" } +324.3 "Incinerate 2" Ability { id: "2B56", source: "Ifrit" } +328.4 "Incinerate 3" Ability { id: "2B56", source: "Ifrit" } +331.5 "--nail adds--" Ability { id: "1CD", source: "Ifrit" } +340.6 "Infernal Fetters" Ability { id: "2C19", source: "Ifrit" } +342.7 "Inferno Howl" Ability { id: "2B5B", source: "Ifrit" } duration 18 +348.8 "Eruption 1" #Ability { id: "2B5A", source: "Ifrit" } +350.8 "Eruption 2" #Ability { id: "2B5A", source: "Ifrit" } +352.8 "Eruption 3" #Ability { id: "2B5A", source: "Ifrit" } +354.8 "Eruption 4" #Ability { id: "2B5A", source: "Ifrit" } 365.7 "--untargetable--" 369.9 "--targetable--" -369.9 "--sync--" sync / 14:[^:]*:Ifrit:2B5E:/ window 10,10 -372.9 "Hellfire" sync / 1[56]:[^:]*:Ifrit:2B5E:/ -381.2 "Inferno Howl 1" sync / 1[56]:[^:]*:Ifrit:2B5B:/ duration 30 -387.3 "Eruption 1" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -389.3 "Eruption 2" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -391.3 "Eruption 3" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -393.3 "Eruption 4" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -394.3 "Crimson Cyclone" sync / 1[56]:[^:]*:Ifrit:2B5F:/ -399.2 "Inferno Howl 2" sync / 1[56]:[^:]*:Ifrit:2B5B:/ duration 30 -409.6 "Flaming Crush" sync / 1[56]:[^:]*:Ifrit:2B5D:/ +369.9 "--sync--" StartsUsing { id: "2B5E", source: "Ifrit" } window 10,10 +372.9 "Hellfire" Ability { id: "2B5E", source: "Ifrit" } +381.2 "Inferno Howl 1" Ability { id: "2B5B", source: "Ifrit" } duration 30 +387.3 "Eruption 1" #Ability { id: "2B5A", source: "Ifrit" } +389.3 "Eruption 2" #Ability { id: "2B5A", source: "Ifrit" } +391.3 "Eruption 3" #Ability { id: "2B5A", source: "Ifrit" } +393.3 "Eruption 4" #Ability { id: "2B5A", source: "Ifrit" } +394.3 "Crimson Cyclone" Ability { id: "2B5F", source: "Ifrit" } +399.2 "Inferno Howl 2" Ability { id: "2B5B", source: "Ifrit" } duration 30 +409.6 "Flaming Crush" Ability { id: "2B5D", source: "Ifrit" } 413.6 "--untargetable--" -421.1 "Crimson Cyclone 1" #sync / 1[56]:[^:]*:Ifrit:2B5F:/ -422.5 "Crimson Cyclone 2" #sync / 1[56]:[^:]*:Ifrit:2B5F:/ -424.0 "Crimson Cyclone 3" #sync / 1[56]:[^:]*:Ifrit:2B5F:/ -425.4 "Crimson Cyclone 4" #sync / 1[56]:[^:]*:Ifrit:2B5F:/ +421.1 "Crimson Cyclone 1" #Ability { id: "2B5F", source: "Ifrit" } +422.5 "Crimson Cyclone 2" #Ability { id: "2B5F", source: "Ifrit" } +424.0 "Crimson Cyclone 3" #Ability { id: "2B5F", source: "Ifrit" } +425.4 "Crimson Cyclone 4" #Ability { id: "2B5F", source: "Ifrit" } 429.5 "--targetable--" -433.6 "Incinerate 1" sync / 1[56]:[^:]*:Ifrit:2B56:/ -436.7 "Incinerate 2" sync / 1[56]:[^:]*:Ifrit:2B56:/ -440.8 "Incinerate 3" sync / 1[56]:[^:]*:Ifrit:2B56:/ +433.6 "Incinerate 1" Ability { id: "2B56", source: "Ifrit" } +436.7 "Incinerate 2" Ability { id: "2B56", source: "Ifrit" } +440.8 "Incinerate 3" Ability { id: "2B56", source: "Ifrit" } # retime below -447.0 "Eruption 1" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -449.0 "Eruption 2" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -451.0 "Eruption 3" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -453.0 "Eruption 4" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -456.0 "Flaming Crush" sync / 1[56]:[^:]*:Ifrit:2B5D:/ +447.0 "Eruption 1" #Ability { id: "2B5A", source: "Ifrit" } +449.0 "Eruption 2" #Ability { id: "2B5A", source: "Ifrit" } +451.0 "Eruption 3" #Ability { id: "2B5A", source: "Ifrit" } +453.0 "Eruption 4" #Ability { id: "2B5A", source: "Ifrit" } +456.0 "Flaming Crush" Ability { id: "2B5D", source: "Ifrit" } # ??? unknown enrage ### Phase 3: Titan ### -600.0 "--sync--" sync / 14:[^:]*:Titan:2CFD:/ window 600,0 -603.0 "Geocrush" sync / 1[56]:[^:]*:Titan:2CFD:/ +600.0 "--sync--" StartsUsing { id: "2CFD", source: "Titan" } window 600,0 +603.0 "Geocrush" Ability { id: "2CFD", source: "Titan" } 605.3 "--targetable--" -608.3 "Earthen Fury" sync / 1[56]:[^:]*:Titan:2B90:/ -616.4 "Rock Buster" sync / 1[56]:[^:]*:Titan:2B62:/ -619.5 "Mountain Buster" sync / 1[56]:[^:]*:Titan:2B63:/ -624.5 "Weight of the Land 1" sync / 1[56]:[^:]*:Titan:2B65:/ -627.5 "Weight of the Land 2" sync / 1[56]:[^:]*:Titan:2B65:/ +608.3 "Earthen Fury" Ability { id: "2B90", source: "Titan" } +616.4 "Rock Buster" Ability { id: "2B62", source: "Titan" } +619.5 "Mountain Buster" Ability { id: "2B63", source: "Titan" } +624.5 "Weight of the Land 1" Ability { id: "2B65", source: "Titan" } +627.5 "Weight of the Land 2" Ability { id: "2B65", source: "Titan" } 627.6 "--untargetable--" -632.8 "Geocrush" sync / 1[56]:[^:]*:Titan:2B66:/ +632.8 "Geocrush" Ability { id: "2B66", source: "Titan" } 635.1 "--targetable--" -635.1 "--sync--" sync / 1[56]:[^:]*:Titan:2B68:/ -638.1 "Bury" sync / 1[56]:[^:]*:Bomb Boulder:2B69:/ -641.1 "Upheaval" sync / 1[56]:[^:]*:Titan:2B67:/ -643.2 "Rock Throw" sync / 1[56]:[^:]*:Titan:2B6B:/ -646.1 "Bury" sync / 1[56]:[^:]*:Bomb Boulder:2B69:/ -647.7 "Landslide 1" sync / 1[56]:[^:]*:Titan:2B70:/ -652.1 "Landslide 2" sync / 1[56]:[^:]*:Titan:2B70:/ -654.2 "Tumult x8" duration 7.7 #sync / 1[56]:[^:]*:Titan:2C18:/ -670.0 "Weight of the Land 1" sync / 1[56]:[^:]*:Titan:2B65:/ -673.0 "Weight of the Land 2" sync / 1[56]:[^:]*:Titan:2B65:/ -675.0 "Landslide 1" sync / 1[56]:[^:]*:Titan:2B70:/ -677.0 "Landslide 2" sync / 1[56]:[^:]*:Titan:2C22:/ +635.1 "--sync--" Ability { id: "2B68", source: "Titan" } +638.1 "Bury" Ability { id: "2B69", source: "Bomb Boulder" } +641.1 "Upheaval" Ability { id: "2B67", source: "Titan" } +643.2 "Rock Throw" Ability { id: "2B6B", source: "Titan" } +646.1 "Bury" Ability { id: "2B69", source: "Bomb Boulder" } +647.7 "Landslide 1" Ability { id: "2B70", source: "Titan" } +652.1 "Landslide 2" Ability { id: "2B70", source: "Titan" } +654.2 "Tumult x8" duration 7.7 #Ability { id: "2C18", source: "Titan" } +670.0 "Weight of the Land 1" Ability { id: "2B65", source: "Titan" } +673.0 "Weight of the Land 2" Ability { id: "2B65", source: "Titan" } +675.0 "Landslide 1" Ability { id: "2B70", source: "Titan" } +677.0 "Landslide 2" Ability { id: "2C22", source: "Titan" } 681.1 "--untargetable--" -686.3 "Geocrush" sync / 1[56]:[^:]*:Titan:2B66:/ +686.3 "Geocrush" Ability { id: "2B66", source: "Titan" } 688.6 "--targetable--" -688.6 "Rock Throw" sync / 1[56]:[^:]*:Titan:2B6B:/ -702.9 "Landslide 1" sync / 1[56]:[^:]*:Titan:2B70:/ -704.9 "Landslide 2" sync / 1[56]:[^:]*:Titan:2C22:/ -708.0 "Tumult x6" duration 5.5 #sync / 1[56]:[^:]*:Titan:2C18:/ -715.6 "Rock Buster" sync / 1[56]:[^:]*:Titan:2B62:/ -719.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:2B63:/ -721.6 "--sync--" sync / 1[56]:[^:]*:Titan:2B68:/ -724.6 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:2B69:/ -726.6 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:2B69:/ -726.6 "Weight of the Land 1" sync / 1[56]:[^:]*:Titan:2B65:/ -728.6 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:2B69:/ -729.6 "Weight of the Land 2" sync / 1[56]:[^:]*:Titan:2B65:/ -730.6 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:2B69:/ -731.9 "Landslide 1" sync / 1[56]:[^:]*:Titan:2B70:/ -732.7 "Weight of the Land 3" sync / 1[56]:[^:]*:Titan:2B65:/ -733.9 "Landslide 2" sync / 1[56]:[^:]*:Titan:2C22:/ -740.0 "Rock Buster" sync / 1[56]:[^:]*:Titan:2B62:/ -744.0 "Mountain Buster" sync / 1[56]:[^:]*:Titan:2B63:/ -749.1 "Weight of the Land 1" sync / 1[56]:[^:]*:Titan:2B65:/ -752.1 "Weight of the Land 2" sync / 1[56]:[^:]*:Titan:2B65:/ -755.1 "Weight of the Land 3" sync / 1[56]:[^:]*:Titan:2B65:/ -756.8 "Tumult x8" duration 7.7 #sync / 1[56]:[^:]*:Titan:2C18:/ +688.6 "Rock Throw" Ability { id: "2B6B", source: "Titan" } +702.9 "Landslide 1" Ability { id: "2B70", source: "Titan" } +704.9 "Landslide 2" Ability { id: "2C22", source: "Titan" } +708.0 "Tumult x6" duration 5.5 #Ability { id: "2C18", source: "Titan" } +715.6 "Rock Buster" Ability { id: "2B62", source: "Titan" } +719.6 "Mountain Buster" Ability { id: "2B63", source: "Titan" } +721.6 "--sync--" Ability { id: "2B68", source: "Titan" } +724.6 "Bury" #Ability { id: "2B69", source: "Bomb Boulder" } +726.6 "Bury" #Ability { id: "2B69", source: "Bomb Boulder" } +726.6 "Weight of the Land 1" Ability { id: "2B65", source: "Titan" } +728.6 "Bury" #Ability { id: "2B69", source: "Bomb Boulder" } +729.6 "Weight of the Land 2" Ability { id: "2B65", source: "Titan" } +730.6 "Bury" #Ability { id: "2B69", source: "Bomb Boulder" } +731.9 "Landslide 1" Ability { id: "2B70", source: "Titan" } +732.7 "Weight of the Land 3" Ability { id: "2B65", source: "Titan" } +733.9 "Landslide 2" Ability { id: "2C22", source: "Titan" } +740.0 "Rock Buster" Ability { id: "2B62", source: "Titan" } +744.0 "Mountain Buster" Ability { id: "2B63", source: "Titan" } +749.1 "Weight of the Land 1" Ability { id: "2B65", source: "Titan" } +752.1 "Weight of the Land 2" Ability { id: "2B65", source: "Titan" } +755.1 "Weight of the Land 3" Ability { id: "2B65", source: "Titan" } +756.8 "Tumult x8" duration 7.7 #Ability { id: "2C18", source: "Titan" } 772.5 "--untargetable--" -779.8 "Earthen Fury Enrage" sync / 1[56]:[^:]*:Titan:2B90:/ +779.8 "Earthen Fury Enrage" Ability { id: "2B90", source: "Titan" } ### Phase 4: Snacks ### -800.0 "Freefire" sync / 1[56]:[^:]*:[^:]*:2CF5:/ window 800,0 +800.0 "Freefire" Ability { id: "2CF5" } window 800,0 802.0 "--targetable--" -803.0 "--sync--" sync / 14:[^:]*:Magitek Bit:2B72:/ -815.0 "Self-detonate" sync / 1[56]:[^:]*:Magitek Bit:2B72:/ -815.2 "Blight" sync / 1[56]:[^:]*:Lahabrea:2B73:/ window 50,10 -824.2 "--sync--" sync / 14:[^:]*:Lahabrea:2B74:/ window 50,10 -841.2 "Dark IV" sync / 1[56]:[^:]*:Lahabrea:2B74:/ window 50,10 -845.4 "--sync--" sync / 14:[^:]*:The Ultima Weapon:2B8B:/ window 50,10 -850.4 "Ultima" sync / 1[56]:[^:]*:The Ultima Weapon:2B8B:/ window 50,10 forcejump 960.3 +803.0 "--sync--" StartsUsing { id: "2B72", source: "Magitek Bit" } +815.0 "Self-detonate" Ability { id: "2B72", source: "Magitek Bit" } +815.2 "Blight" Ability { id: "2B73", source: "Lahabrea" } window 50,10 +824.2 "--sync--" StartsUsing { id: "2B74", source: "Lahabrea" } window 50,10 +841.2 "Dark IV" Ability { id: "2B74", source: "Lahabrea" } window 50,10 +845.4 "--sync--" StartsUsing { id: "2B8B", source: "The Ultima Weapon" } window 50,10 +850.4 "Ultima" Ability { id: "2B8B", source: "The Ultima Weapon" } window 50,10 forcejump 960.3 ### Phase 5: Ultima ### -960.3 "Ultima" sync / 1[56]:[^:]*:The Ultima Weapon:2B8B:/ -1000 "--targetable--" sync / 14:[^:]*:The Ultima Weapon:2B87:/ window 1000,100 -1004.0 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:2B87:/ -1006.3 "--apply viscous--" sync / 1[56]:[^:]*:The Ultima Weapon:2B79:/ -1012.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:2B7B:/ -1017.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:2B7A:/ +960.3 "Ultima" Ability { id: "2B8B", source: "The Ultima Weapon" } +1000 "--targetable--" StartsUsing { id: "2B87", source: "The Ultima Weapon" } window 1000,100 +1004.0 "Tank Purge" Ability { id: "2B87", source: "The Ultima Weapon" } +1006.3 "--apply viscous--" Ability { id: "2B79", source: "The Ultima Weapon" } +1012.4 "Homing Lasers" Ability { id: "2B7B", source: "The Ultima Weapon" } +1017.4 "Viscous Aetheroplasm" Ability { id: "2B7A", source: "The Ultima Weapon" } ## Ultimate Predation -1020.5 "--sync--" sync / 14:[^:]*:The Ultima Weapon:2B76:/ window 30,30 -1023.5 "Ultimate Predation" sync / 1[56]:[^:]*:The Ultima Weapon:2B76:/ +1020.5 "--sync--" StartsUsing { id: "2B76", source: "The Ultima Weapon" } window 30,30 +1023.5 "Ultimate Predation" Ability { id: "2B76", source: "The Ultima Weapon" } 1027.9 "--untargetable--" -1038.2 "Landslide" sync / 1[56]:[^:]*:Titan:2B70:/ -1038.2 "Crimson Cyclone" sync / 1[56]:[^:]*:Ifrit:2B5F:/ -1038.2 "Wicked Wheel" sync / 1[56]:[^:]*:Garuda:2B4E:/ -1040.2 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:2B7C:/ -1040.2 "Landslide" sync / 1[56]:[^:]*:Titan:2C22:/ -1040.2 "Wicked Tornado" sync / 1[56]:[^:]*:Garuda:2B4F:/ -1045.4 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ +1038.2 "Landslide" Ability { id: "2B70", source: "Titan" } +1038.2 "Crimson Cyclone" Ability { id: "2B5F", source: "Ifrit" } +1038.2 "Wicked Wheel" Ability { id: "2B4E", source: "Garuda" } +1040.2 "Ceruleum Vent" Ability { id: "2B7C", source: "The Ultima Weapon" } +1040.2 "Landslide" Ability { id: "2C22", source: "Titan" } +1040.2 "Wicked Tornado" Ability { id: "2B4F", source: "Garuda" } +1045.4 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } ## Interlude Dance 1047.4 "--targetable--" -1059.8 "Eruption 1" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1061.8 "Eruption 2" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1063.8 "Eruption 3" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1064.8 "Infernal Fetters" sync / 1[56]:[^:]*:Ifrit:2C19:/ -1065.8 "Eruption 4" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1067.9 "--sync--" sync / 1[56]:[^:]*:Titan:2B68:/ -1069.9 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:2B7D:/ -1070.9 "Bury x6" duration 10 #sync / 1[56]:[^:]*:Bomb Boulder:2B69:/ -#1074.2 "Landslide 1" sync / 1[56]:[^:]*:Titan:2B70:/ -1074.9 "Landslide 1" sync / 1[56]:[^:]*:The Ultima Weapon:2B7E:/ -1076.2 "Landslide 2" sync / 1[56]:[^:]*:Titan:2C22:/ -1079.3 "Tumult x7" duration 6.9 #sync / 1[56]:[^:]*:Titan:2C18:/ -1082.3 "--apply viscous--" sync / 1[56]:[^:]*:The Ultima Weapon:2B79:/ -1087.3 "Wicked Wheel" sync / 1[56]:[^:]*:Chirada:2B4C:/ -1089.3 "Mistral Shriek" sync / 1[56]:[^:]*:Garuda:2B54:/ -1092.6 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ -1093.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:2B7A:/ -1094.5 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:2B7B:/ -1096.2 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ +1059.8 "Eruption 1" #Ability { id: "2B5A", source: "Ifrit" } +1061.8 "Eruption 2" #Ability { id: "2B5A", source: "Ifrit" } +1063.8 "Eruption 3" #Ability { id: "2B5A", source: "Ifrit" } +1064.8 "Infernal Fetters" Ability { id: "2C19", source: "Ifrit" } +1065.8 "Eruption 4" #Ability { id: "2B5A", source: "Ifrit" } +1067.9 "--sync--" Ability { id: "2B68", source: "Titan" } +1069.9 "Radiant Plume" Ability { id: "2B7D", source: "The Ultima Weapon" } +1070.9 "Bury x6" duration 10 #Ability { id: "2B69", source: "Bomb Boulder" } +#1074.2 "Landslide 1" Ability { id: "2B70", source: "Titan" } +1074.9 "Landslide 1" Ability { id: "2B7E", source: "The Ultima Weapon" } +1076.2 "Landslide 2" Ability { id: "2C22", source: "Titan" } +1079.3 "Tumult x7" duration 6.9 #Ability { id: "2C18", source: "Titan" } +1082.3 "--apply viscous--" Ability { id: "2B79", source: "The Ultima Weapon" } +1087.3 "Wicked Wheel" Ability { id: "2B4C", source: "Chirada" } +1089.3 "Mistral Shriek" Ability { id: "2B54", source: "Garuda" } +1092.6 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } +1093.4 "Viscous Aetheroplasm" Ability { id: "2B7A", source: "The Ultima Weapon" } +1094.5 "Homing Lasers" Ability { id: "2B7B", source: "The Ultima Weapon" } +1096.2 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } ## Ultimate Annihilation -1098.8 "--sync--" sync / 14:[^:]*:The Ultima Weapon:2D4C:/ window 30,30 -1101.8 "Ultimate Annihilation" sync / 1[56]:[^:]*:The Ultima Weapon:2D4C:/ +1098.8 "--sync--" StartsUsing { id: "2D4C", source: "The Ultima Weapon" } window 30,30 +1101.8 "Ultimate Annihilation" Ability { id: "2D4C", source: "The Ultima Weapon" } 1106.2 "--untargetable--" 1110.4 "--targetable--" -1113.4 "Weight of the Land 1" sync / 1[56]:[^:]*:Titan:2B65:/ -1115.4 "Flaming Crush" sync / 1[56]:[^:]*:Ifrit:2B5D:/ -1116.4 "Weight of the Land 2" sync / 1[56]:[^:]*:Titan:2B65:/ -1116.5 "Eye of the Storm" sync / 1[56]:[^:]*:Garuda:2B52:/ +1113.4 "Weight of the Land 1" Ability { id: "2B65", source: "Titan" } +1115.4 "Flaming Crush" Ability { id: "2B5D", source: "Ifrit" } +1116.4 "Weight of the Land 2" Ability { id: "2B65", source: "Titan" } +1116.5 "Eye of the Storm" Ability { id: "2B52", source: "Garuda" } # This damage is when the orb is taken, but the timing is the first moment it could be taken. -1118.2 "Aetheroplasm 1" #sync / 1[56]:[^:]*:Aetheroplasm:2B81:/ -1118.6 "Mesohigh" sync / 1[56]:[^:]*:Garuda:2B49:/ -1119.5 "Weight of the Land 3" sync / 1[56]:[^:]*:Titan:2B65:/ -1119.5 "Inferno Howl" sync / 1[56]:[^:]*:Ifrit:2B5B:/ -1123.2 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ -1123.6 "Aetheroplasm 2" #sync / 1[56]:[^:]*:Aetheroplasm:2B81:/ -1127.7 "Crimson Cyclone" sync / 1[56]:[^:]*:Ifrit:2B5F:/ -1128.6 "Landslide 1" sync / 1[56]:[^:]*:Titan:2B70:/ -1130.6 "Landslide 2" sync / 1[56]:[^:]*:Titan:2C22:/ -1132.6 "Aetheroplasm 3" #sync / 1[56]:[^:]*:Aetheroplasm:2B81:/ -1133.7 "Eye of the Storm" sync / 1[56]:[^:]*:Garuda:2B52:/ -1135.9 "Aetheroplasm 4" #sync / 1[56]:[^:]*:Aetheroplasm:2B81:/ -1136.0 "Mesohigh" sync / 1[56]:[^:]*:Garuda:2B49:/ -1138.8 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:2B87:/ -1140.7 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ +1118.2 "Aetheroplasm 1" #Ability { id: "2B81", source: "Aetheroplasm" } +1118.6 "Mesohigh" Ability { id: "2B49", source: "Garuda" } +1119.5 "Weight of the Land 3" Ability { id: "2B65", source: "Titan" } +1119.5 "Inferno Howl" Ability { id: "2B5B", source: "Ifrit" } +1123.2 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } +1123.6 "Aetheroplasm 2" #Ability { id: "2B81", source: "Aetheroplasm" } +1127.7 "Crimson Cyclone" Ability { id: "2B5F", source: "Ifrit" } +1128.6 "Landslide 1" Ability { id: "2B70", source: "Titan" } +1130.6 "Landslide 2" Ability { id: "2C22", source: "Titan" } +1132.6 "Aetheroplasm 3" #Ability { id: "2B81", source: "Aetheroplasm" } +1133.7 "Eye of the Storm" Ability { id: "2B52", source: "Garuda" } +1135.9 "Aetheroplasm 4" #Ability { id: "2B81", source: "Aetheroplasm" } +1136.0 "Mesohigh" Ability { id: "2B49", source: "Garuda" } +1138.8 "Tank Purge" Ability { id: "2B87", source: "The Ultima Weapon" } +1140.7 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } 1142.9 "--untargetable--" 1147.1 "--targetable--" -1150.5 "Eye of the Storm" sync / 1[56]:[^:]*:Garuda:2B52:/ -1154.2 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:2B7B:/ -1162.3 "Eye of the Storm" sync / 1[56]:[^:]*:Garuda:2B52:/ -1164.4 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:2B7D:/ -1167.5 "Diffractive Laser" sync / 1[56]:[^:]*:The Ultima Weapon:2B78:/ -1171.6 "Vulcan Burst" sync / 1[56]:[^:]*:The Ultima Weapon:2CF4:/ +1150.5 "Eye of the Storm" Ability { id: "2B52", source: "Garuda" } +1154.2 "Homing Lasers" Ability { id: "2B7B", source: "The Ultima Weapon" } +1162.3 "Eye of the Storm" Ability { id: "2B52", source: "Garuda" } +1164.4 "Radiant Plume" Ability { id: "2B7D", source: "The Ultima Weapon" } +1167.5 "Diffractive Laser" Ability { id: "2B78", source: "The Ultima Weapon" } +1171.6 "Vulcan Burst" Ability { id: "2CF4", source: "The Ultima Weapon" } -1173.6 "Eye of the Storm" sync / 1[56]:[^:]*:Garuda:2B52:/ -1179.2 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:2B7B:/ -1183.3 "Vulcan Burst" sync / 1[56]:[^:]*:The Ultima Weapon:2CF4:/ -1185.5 "Eye of the Storm" sync / 1[56]:[^:]*:Garuda:2B52:/ +1173.6 "Eye of the Storm" Ability { id: "2B52", source: "Garuda" } +1179.2 "Homing Lasers" Ability { id: "2B7B", source: "The Ultima Weapon" } +1183.3 "Vulcan Burst" Ability { id: "2CF4", source: "The Ultima Weapon" } +1185.5 "Eye of the Storm" Ability { id: "2B52", source: "Garuda" } # retime from here, into natural push below 1190 "Diffractive Laser" ## Ultimate Suppression (50%) -1192.0 "--sync--" sync / 14:[^:]*:The Ultima Weapon:2D4D:/ window 1200,100 -1195.0 "Ultimate Suppression" sync / 1[56]:[^:]*:The Ultima Weapon:2D4D:/ +1192.0 "--sync--" StartsUsing { id: "2D4D", source: "The Ultima Weapon" } window 1200,100 +1195.0 "Ultimate Suppression" Ability { id: "2D4D", source: "The Ultima Weapon" } 1199.4 "--untargetable--" -1205.7 "Rock Throw" sync / 1[56]:[^:]*:Titan:2B6B:/ -1206.7 "Eruption 1" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1208.7 "Eruption 2" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1209.8 "Mistral Song" sync / 1[56]:[^:]*:Suparna:2B4B:/ -1210.7 "Eruption 3" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1211.7 "Light Pillar x6" sync / 1[56]:[^:]*:The Ultima Weapon:2B82:/ duration 8 -1212.0 "Mistral Song" sync / 1[56]:[^:]*:Garuda:2B8E:/ -1212.6 "Eruption 4" #sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1214.4 "Feather Rain 1" #sync / 1[56]:[^:]*:Garuda:2B4D:/ -1216.0 "Great Whirlwind" sync / 1[56]:[^:]*:Suparna:2B41:/ -1216.4 "Feather Rain 2" #sync / 1[56]:[^:]*:Garuda:2B4D:/ -1216.8 "Aetherochemical Laser" sync / 1[56]:[^:]*:The Ultima Weapon:2B8[456]:/ -1221.0 "Aetherochemical Laser" sync / 1[56]:[^:]*:The Ultima Weapon:2B8[456]:/ -1224.3 "Landslide 1" sync / 1[56]:[^:]*:Titan:2B70:/ -1225.1 "Aetherochemical Laser" sync / 1[56]:[^:]*:The Ultima Weapon:2B8[456]:/ -1226.3 "Landslide 2" sync / 1[56]:[^:]*:Titan:2C22:/ -1227.1 "Mesohigh" sync / 1[56]:[^:]*:Garuda:2B49:/ -1228.0 "Flaming Crush" sync / 1[56]:[^:]*:Ifrit:2B5D:/ -1232.8 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ -1233.2 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:2B87:/ +1205.7 "Rock Throw" Ability { id: "2B6B", source: "Titan" } +1206.7 "Eruption 1" #Ability { id: "2B5A", source: "Ifrit" } +1208.7 "Eruption 2" #Ability { id: "2B5A", source: "Ifrit" } +1209.8 "Mistral Song" Ability { id: "2B4B", source: "Suparna" } +1210.7 "Eruption 3" #Ability { id: "2B5A", source: "Ifrit" } +1211.7 "Light Pillar x6" Ability { id: "2B82", source: "The Ultima Weapon" } duration 8 +1212.0 "Mistral Song" Ability { id: "2B8E", source: "Garuda" } +1212.6 "Eruption 4" #Ability { id: "2B5A", source: "Ifrit" } +1214.4 "Feather Rain 1" #Ability { id: "2B4D", source: "Garuda" } +1216.0 "Great Whirlwind" Ability { id: "2B41", source: "Suparna" } +1216.4 "Feather Rain 2" #Ability { id: "2B4D", source: "Garuda" } +1216.8 "Aetherochemical Laser" Ability { id: "2B8[456]", source: "The Ultima Weapon" } +1221.0 "Aetherochemical Laser" Ability { id: "2B8[456]", source: "The Ultima Weapon" } +1224.3 "Landslide 1" Ability { id: "2B70", source: "Titan" } +1225.1 "Aetherochemical Laser" Ability { id: "2B8[456]", source: "The Ultima Weapon" } +1226.3 "Landslide 2" Ability { id: "2C22", source: "Titan" } +1227.1 "Mesohigh" Ability { id: "2B49", source: "Garuda" } +1228.0 "Flaming Crush" Ability { id: "2B5D", source: "Ifrit" } +1232.8 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } +1233.2 "Tank Purge" Ability { id: "2B87", source: "The Ultima Weapon" } 1239.5 "--targetable--" -1244.5 "Ultima" sync / 1[56]:[^:]*:The Ultima Weapon:2B8B:/ -1254.7 "Aetheric Boom" sync / 1[56]:[^:]*:The Ultima Weapon:2B88:/ -1275.9 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:2B8F:/ -1279.9 "Summon Random Primal" #sync / 1[56]:[^:]*:The Ultima Weapon:2CD[345]:/ +1244.5 "Ultima" Ability { id: "2B8B", source: "The Ultima Weapon" } +1254.7 "Aetheric Boom" Ability { id: "2B88", source: "The Ultima Weapon" } +1275.9 "Viscous Aetheroplasm" Ability { id: "2B8F", source: "The Ultima Weapon" } +1279.9 "Summon Random Primal" #Ability { id: "2CD[345]", source: "The Ultima Weapon" } ## Random Primal Finale (summon all three in random order) # Note: 2CD3/2CD4/2CD5 get used at other points in the fight so can't have big syncs. ## Summon Garuda (random order) -1300.0 "--sync--" sync / 1[56]:[^:]*:The Ultima Weapon:2CD3:/ window 50,300 -1307.2 "Wicked Wheel" sync / 1[56]:[^:]*:Garuda:2B4E:/ -1308.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:2B7A:/ -1309.3 "Wicked Tornado" sync / 1[56]:[^:]*:Ifrit:2B4F:/ -1314.1 "Aerial Blast" sync / 1[56]:[^:]*:Garuda:2B55:/ +1300.0 "--sync--" Ability { id: "2CD3", source: "The Ultima Weapon" } window 50,300 +1307.2 "Wicked Wheel" Ability { id: "2B4E", source: "Garuda" } +1308.4 "Viscous Aetheroplasm" Ability { id: "2B7A", source: "The Ultima Weapon" } +1309.3 "Wicked Tornado" Ability { id: "2B4F", source: "Ifrit" } +1314.1 "Aerial Blast" Ability { id: "2B55", source: "Garuda" } # ??? is this timing correct if Garuda is not last? -1318.1 "Summon Random Primal" #sync / 1[56]:[^:]*:The Ultima Weapon:2CD[345]:/ -1321.8 "Feather Rain" sync / 1[56]:[^:]*:Garuda:2B4D:/ +1318.1 "Summon Random Primal" #Ability { id: "2CD[345]", source: "The Ultima Weapon" } +1321.8 "Feather Rain" Ability { id: "2B4D", source: "Garuda" } ## Summon Ifrit (random order) -1400.0 "--sync--" sync / 1[56]:[^:]*:The Ultima Weapon:2CD4:/ window 150,300 -1407.2 "Crimson Cyclone" sync / 1[56]:[^:]*:Ifrit:2B5F:/ -1407.2 "Eruption" sync / 1[56]:[^:]*:Ifrit:2B5A:/ -1408.5 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:Ifrit:2B7A:/ -1415.2 "Hellfire" sync / 1[56]:[^:]*:Ifrit:2B5E:/ -1420.1 "Summon Random Primal" #sync / 1[56]:[^:]*:The Ultima Weapon:2CD[345]:/ +1400.0 "--sync--" Ability { id: "2CD4", source: "The Ultima Weapon" } window 150,300 +1407.2 "Crimson Cyclone" Ability { id: "2B5F", source: "Ifrit" } +1407.2 "Eruption" Ability { id: "2B5A", source: "Ifrit" } +1408.5 "Viscous Aetheroplasm" Ability { id: "2B7A", source: "Ifrit" } +1415.2 "Hellfire" Ability { id: "2B5E", source: "Ifrit" } +1420.1 "Summon Random Primal" #Ability { id: "2CD[345]", source: "The Ultima Weapon" } ## Summon Titan (random order) -1500.0 "--sync--" sync / 1[56]:[^:]*:The Ultima Weapon:2CD5:/ window 250,300 -1505.1 "Weight of the Land 1" sync / 1[56]:[^:]*:Titan:2B65:/ -1508.1 "Weight of the Land 2" sync / 1[56]:[^:]*:Titan:2B65:/ -1508.8 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:Titan:2B7A:/ -1511.1 "Weight of the Land 3" sync / 1[56]:[^:]*:Titan:2B65:/ -1514.2 "Earthen Fury" sync / 1[56]:[^:]*:Titan:2B90:/ -1520.1 "Summon Random Primal" #sync / 1[56]:[^:]*:The Ultima Weapon:2CD4:/ +1500.0 "--sync--" Ability { id: "2CD5", source: "The Ultima Weapon" } window 250,300 +1505.1 "Weight of the Land 1" Ability { id: "2B65", source: "Titan" } +1508.1 "Weight of the Land 2" Ability { id: "2B65", source: "Titan" } +1508.8 "Viscous Aetheroplasm" Ability { id: "2B7A", source: "Titan" } +1511.1 "Weight of the Land 3" Ability { id: "2B65", source: "Titan" } +1514.2 "Earthen Fury" Ability { id: "2B90", source: "Titan" } +1520.1 "Summon Random Primal" #Ability { id: "2CD4", source: "The Ultima Weapon" } ## Enrage -1600.0 "Enrage" sync / 1[56]:[^:]*:The Ultima Weapon:2B8C:/ window 400,0 +1600.0 "Enrage" Ability { id: "2B8C", source: "The Ultima Weapon" } window 400,0 # FIXME: this waits until 100% aether, but unclear when that happens in the log. # The only indication is a 122 Damage Up ability 2 seconds before this. -1625.0 "Citadel Siege 1" sync / 1[56]:[^:]*:[^:]*:2B92:/ window 30,0 -1628.0 "Citadel Siege 2" sync / 1[56]:[^:]*:[^:]*:2B92:/ -1631.0 "Citadel Siege 3" sync / 1[56]:[^:]*:[^:]*:2B92:/ -1634.0 "Citadel Siege 4" sync / 1[56]:[^:]*:[^:]*:2B92:/ -1637.0 "Citadel Siege 5" sync / 1[56]:[^:]*:[^:]*:2B92:/ -1640.0 "Citadel Siege 6" sync / 1[56]:[^:]*:[^:]*:2B92:/ -1643.0 "Citadel Siege 7" sync / 1[56]:[^:]*:[^:]*:2B92:/ +1625.0 "Citadel Siege 1" Ability { id: "2B92" } window 30,0 +1628.0 "Citadel Siege 2" Ability { id: "2B92" } +1631.0 "Citadel Siege 3" Ability { id: "2B92" } +1634.0 "Citadel Siege 4" Ability { id: "2B92" } +1637.0 "Citadel Siege 5" Ability { id: "2B92" } +1640.0 "Citadel Siege 6" Ability { id: "2B92" } +1643.0 "Citadel Siege 7" Ability { id: "2B92" } # Is this really 6 seconds on the last person? -1649.0 "Citadel Siege 8" sync / 1[56]:[^:]*:[^:]*:2B92:/ -1651.0 "Sabik Enrage" sync / 1[56]:[^:]*:The Ultima Weapon:2B93:/ +1649.0 "Citadel Siege 8" Ability { id: "2B92" } +1651.0 "Sabik Enrage" Ability { id: "2B93", source: "The Ultima Weapon" } diff --git a/ui/raidboss/data/04-sb/ultimate/unending_coil_ultimate.txt b/ui/raidboss/data/04-sb/ultimate/unending_coil_ultimate.txt index a898840224..c45444d10c 100644 --- a/ui/raidboss/data/04-sb/ultimate/unending_coil_ultimate.txt +++ b/ui/raidboss/data/04-sb/ultimate/unending_coil_ultimate.txt @@ -8,289 +8,289 @@ hideall "--sync--" ##### TWINTANIA ##### ### Twintania P1: 100% -> 75% -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "Plummet" sync / 1[56]:[^:]*:Twintania:26A8:/ window 12,12 -13.1 "Twister" sync / 1[56]:[^:]*:Twintania:26AA:/ -16.3 "Fireball" sync / 1[56]:[^:]*:Twintania:26AC:/ -24.5 "Death Sentence" sync / 1[56]:[^:]*:Twintania:26A9:/ -27.6 "Plummet" sync / 1[56]:[^:]*:Twintania:26A8:/ -32.8 "Twister" sync / 1[56]:[^:]*:Twintania:26AA:/ -36.0 "Fireball" sync / 1[56]:[^:]*:Twintania:26AC:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "Plummet" Ability { id: "26A8", source: "Twintania" } window 12,12 +13.1 "Twister" Ability { id: "26AA", source: "Twintania" } +16.3 "Fireball" Ability { id: "26AC", source: "Twintania" } +24.5 "Death Sentence" Ability { id: "26A9", source: "Twintania" } +27.6 "Plummet" Ability { id: "26A8", source: "Twintania" } +32.8 "Twister" Ability { id: "26AA", source: "Twintania" } +36.0 "Fireball" Ability { id: "26AC", source: "Twintania" } 40.0 "--push--" -#44.2 "Death Sentence" sync / 1[56]:[^:]*:Twintania:26A9:/ +#44.2 "Death Sentence" Ability { id: "26A9", source: "Twintania" } # TODO: presumably 44.2 is a loop back to 24.5. ### Twintania P2: 75% -> 45% -47.5 "Liquid Hell x5" duration 4.5 sync / 1[56]:[^:]*:Twintania:26AD:/ window 50,0 -53.0 "--sync--" sync / 14:[^:]*:Twintania:26AE:/ window 53,10 -56.0 "Generate" sync / 1[56]:[^:]*:Twintania:26AE:/ -59.1 "Liquid Hell x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ -70.6 "Death Sentence" sync / 1[56]:[^:]*:Twintania:26A9:/ -77.6 "Generate" sync / 1[56]:[^:]*:Twintania:26AE:/ -80.6 "Twister" sync / 1[56]:[^:]*:Twintania:26AA:/ -86.6 "Plummet" sync / 1[56]:[^:]*:Twintania:26A8:/ -91.7 "Liquid Hell x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ +47.5 "Liquid Hell x5" duration 4.5 Ability { id: "26AD", source: "Twintania" } window 50,0 +53.0 "--sync--" StartsUsing { id: "26AE", source: "Twintania" } window 53,10 +56.0 "Generate" Ability { id: "26AE", source: "Twintania" } +59.1 "Liquid Hell x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } +70.6 "Death Sentence" Ability { id: "26A9", source: "Twintania" } +77.6 "Generate" Ability { id: "26AE", source: "Twintania" } +80.6 "Twister" Ability { id: "26AA", source: "Twintania" } +86.6 "Plummet" Ability { id: "26A8", source: "Twintania" } +91.7 "Liquid Hell x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } 99.0 "--push--" # TODO: presumably 91.7 is a loop back to 47.5. ### Twintania P3: 45% -> 0% -106.4 "Liquid Hell x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ -111.9 "--sync--" sync / 14:[^:]*:Twintania:26AE:/ window 30,10 -114.9 "Generate x2" sync / 1[56]:[^:]*:Twintania:26AE:/ -118.0 "Targeted Fire x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ -124.6 "Fireball" sync / 1[56]:[^:]*:Twintania:26AC:/ window 70,10 -133.6 "Death Sentence" sync / 1[56]:[^:]*:Twintania:26A9:/ -136.6 "Plummet" sync / 1[56]:[^:]*:Twintania:26A8:/ -143.6 "Generate x2" sync / 1[56]:[^:]*:Twintania:26AE:/ -146.6 "Twister" sync / 1[56]:[^:]*:Twintania:26AA:/ -151.6 "Plummet" sync / 1[56]:[^:]*:Twintania:26A8:/ - -153.8 "Liquid Hell x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ -162.3 "Generate x2" sync / 1[56]:[^:]*:Twintania:26AE:/ -165.4 "Targeted Fire x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ -172.0 "Fireball" sync / 1[56]:[^:]*:Twintania:26AC:/ window 20,20 jump 124.6 -181.0 "Death Sentence" #sync / 1[56]:[^:]*:Twintania:26A9:/ -184.0 "Plummet" #sync / 1[56]:[^:]*:Twintania:26A8:/ -191.0 "Generate x2" #sync / 1[56]:[^:]*:Twintania:26AE:/ -194.0 "Twister" #sync / 1[56]:[^:]*:Twintania:26AA:/ -199.0 "Plummet" #sync / 1[56]:[^:]*:Twintania:26A8:/ +106.4 "Liquid Hell x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } +111.9 "--sync--" StartsUsing { id: "26AE", source: "Twintania" } window 30,10 +114.9 "Generate x2" Ability { id: "26AE", source: "Twintania" } +118.0 "Targeted Fire x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } +124.6 "Fireball" Ability { id: "26AC", source: "Twintania" } window 70,10 +133.6 "Death Sentence" Ability { id: "26A9", source: "Twintania" } +136.6 "Plummet" Ability { id: "26A8", source: "Twintania" } +143.6 "Generate x2" Ability { id: "26AE", source: "Twintania" } +146.6 "Twister" Ability { id: "26AA", source: "Twintania" } +151.6 "Plummet" Ability { id: "26A8", source: "Twintania" } + +153.8 "Liquid Hell x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } +162.3 "Generate x2" Ability { id: "26AE", source: "Twintania" } +165.4 "Targeted Fire x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } +172.0 "Fireball" Ability { id: "26AC", source: "Twintania" } window 20,20 jump 124.6 +181.0 "Death Sentence" #Ability { id: "26A9", source: "Twintania" } +184.0 "Plummet" #Ability { id: "26A8", source: "Twintania" } +191.0 "Generate x2" #Ability { id: "26AE", source: "Twintania" } +194.0 "Twister" #Ability { id: "26AA", source: "Twintania" } +199.0 "Plummet" #Ability { id: "26A8", source: "Twintania" } ##### NAEL ##### -200.0 "Heavensfall" sync / 1[56]:[^:]*:Ragnarok:26B8:/ window 200,0 -205.5 "Meteor Stream x4" sync / 1[56]:[^:]*:Nael Geminus:26C0:/ -207.0 "Thermionic Burst" sync / 1[56]:[^:]*:Ragnarok:26B9:/ -208.5 "Meteor Stream x4" sync / 1[56]:[^:]*:Nael Geminus:26C0:/ -211.0 "Thermionic Burst" sync / 1[56]:[^:]*:Ragnarok:26B9:/ -211.5 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26C1:/ +200.0 "Heavensfall" Ability { id: "26B8", source: "Ragnarok" } window 200,0 +205.5 "Meteor Stream x4" Ability { id: "26C0", source: "Nael Geminus" } +207.0 "Thermionic Burst" Ability { id: "26B9", source: "Ragnarok" } +208.5 "Meteor Stream x4" Ability { id: "26C0", source: "Nael Geminus" } +211.0 "Thermionic Burst" Ability { id: "26B9", source: "Ragnarok" } +211.5 "Dalamud Dive" Ability { id: "26C1", source: "Nael deus Darnus" } 213.5 "--targetable--" -213.6 "Bahamut's Claw x5" duration 2.8 #sync / 1[56]:[^:]*:Nael deus Darnus:26B5:/ -222.1 "Bahamut's Favor" sync / 1[56]:[^:]*:Nael deus Darnus:26C2:/ +213.6 "Bahamut's Claw x5" duration 2.8 #Ability { id: "26B5", source: "Nael deus Darnus" } +222.1 "Bahamut's Favor" Ability { id: "26C2", source: "Nael deus Darnus" } 230.6 "Dynamo + Beam/Chariot" duration 8 -235.1 "Chain Lightning x2" sync / 1[56]:[^:]*:Thunderwing:26C8:/ -#235.1 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:26BC:/ -#238.3 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:26BD:/ -239.1 "Doom x2" sync / 1[56]:[^:]*:Tail of Darkness:26C9:/ -241.1 "Fireball (1)" sync / 1[56]:[^:]*:Firehorn:26C5:/ -242.1 "Wings Of Salvation x2" duration 4 sync / 1[56]:[^:]*:Fang of Light:26CA:/ -249.3 "Bahamut's Claw x5" duration 2.8 #sync / 1[56]:[^:]*:Nael deus Darnus:26B5:/ -256.0 "Fireball (2)" sync / 1[56]:[^:]*:Firehorn:26C5:/ +235.1 "Chain Lightning x2" Ability { id: "26C8", source: "Thunderwing" } +#235.1 "Lunar Dynamo" Ability { id: "26BC", source: "Nael deus Darnus" } +#238.3 "Thermionic Beam" Ability { id: "26BD", source: "Nael deus Darnus" } +239.1 "Doom x2" Ability { id: "26C9", source: "Tail of Darkness" } +241.1 "Fireball (1)" Ability { id: "26C5", source: "Firehorn" } +242.1 "Wings Of Salvation x2" duration 4 Ability { id: "26CA", source: "Fang of Light" } +249.3 "Bahamut's Claw x5" duration 2.8 #Ability { id: "26B5", source: "Nael deus Darnus" } +256.0 "Fireball (2)" Ability { id: "26C5", source: "Firehorn" } 258.0 "Thermionic + Dynamo/Chariot" duration 8 -260.0 "Chain Lightning" sync / 1[56]:[^:]*:Thunderwing:26C8:/ -#262.8 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:26BD:/ -#265.8 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:26BC:/ -268.0 "Doom x3" sync / 1[56]:[^:]*:Tail of Darkness:26C9:/ -270.0 "Wings Of Salvation x3" duration 8 sync / 1[56]:[^:]*:Fang of Light:26CA:/ -278.9 "Chain Lightning x2" sync / 1[56]:[^:]*:Thunderwing:26C8:/ -281.9 "Fireball (3)" sync / 1[56]:[^:]*:Firehorn:26C5:/ +260.0 "Chain Lightning" Ability { id: "26C8", source: "Thunderwing" } +#262.8 "Thermionic Beam" Ability { id: "26BD", source: "Nael deus Darnus" } +#265.8 "Lunar Dynamo" Ability { id: "26BC", source: "Nael deus Darnus" } +268.0 "Doom x3" Ability { id: "26C9", source: "Tail of Darkness" } +270.0 "Wings Of Salvation x3" duration 8 Ability { id: "26CA", source: "Fang of Light" } +278.9 "Chain Lightning x2" Ability { id: "26C8", source: "Thunderwing" } +281.9 "Fireball (3)" Ability { id: "26C5", source: "Firehorn" } 290.4 "Dive + Dynamo/Chariot" duration 8 -284.7 "Bahamut's Claw x5" duration 2.8 sync / 1[56]:[^:]*:Nael deus Darnus:26B5:/ -#295.3 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26BE:/ -#298.3 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:26BC:/ -302.9 "Fireball (4)" sync / 1[56]:[^:]*:Firehorn:26C5:/ -303.9 "Doom x3" sync / 1[56]:[^:]*:Tail of Darkness:26C9:/ -305.9 "Chain Lightning x2" sync / 1[56]:[^:]*:Thunderwing:26C8:/ -306.0 "Wings Of Salvation x3" duration 8 sync / 1[56]:[^:]*:Fang of Light:26CA:/ -323.3 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:26B6:/ -333.5 "Hypernova x4" duration 6 #sync / 1[56]:[^:]*:Nael deus Darnus:26BF:/ +284.7 "Bahamut's Claw x5" duration 2.8 Ability { id: "26B5", source: "Nael deus Darnus" } +#295.3 "Raven Dive" Ability { id: "26BE", source: "Nael deus Darnus" } +#298.3 "Lunar Dynamo" Ability { id: "26BC", source: "Nael deus Darnus" } +302.9 "Fireball (4)" Ability { id: "26C5", source: "Firehorn" } +303.9 "Doom x3" Ability { id: "26C9", source: "Tail of Darkness" } +305.9 "Chain Lightning x2" Ability { id: "26C8", source: "Thunderwing" } +306.0 "Wings Of Salvation x3" duration 8 Ability { id: "26CA", source: "Fang of Light" } +323.3 "Ravensbeak" Ability { id: "26B6", source: "Nael deus Darnus" } +333.5 "Hypernova x4" duration 6 #Ability { id: "26BF", source: "Nael deus Darnus" } 328.5 "Marker 1" 332.5 "Marker 2" 336.5 "Marker 3" -339.5 "Cauterize" #sync / 1[56]:[^:]*:Thunderwing:26CD:/ -#339.5 "Cauterize" #sync / 1[56]:[^:]*:Tail of Darkness:26CE:/ +339.5 "Cauterize" #Ability { id: "26CD", source: "Thunderwing" } +#339.5 "Cauterize" #Ability { id: "26CE", source: "Tail of Darkness" } 341.0 "--untargetable--" 341.0 "Meteor/Dive or Dive/Beam" duration 3 # first mechanic -> second -#342.7 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:26C0:/ -343.5 "Cauterize" #sync / 1[56]:[^:]*:Firehorn:26CB:/ -#345.7 "Dalamud Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26C1:/ -347.4 "Cauterize" #sync / 1[56]:[^:]*:Iceclaw:26CC:/ -#347.5 "Cauterize" #sync / 1[56]:[^:]*:Fang of Light:26CF:/ +#342.7 "Meteor Stream" Ability { id: "26C0", source: "Nael Geminus" } +343.5 "Cauterize" #Ability { id: "26CB", source: "Firehorn" } +#345.7 "Dalamud Dive" Ability { id: "26C1", source: "Nael deus Darnus" } +347.4 "Cauterize" #Ability { id: "26CC", source: "Iceclaw" } +#347.5 "Cauterize" #Ability { id: "26CF", source: "Fang of Light" } -349.7 "Bahamut's Claw x5" duration 2.8 #sync / 1[56]:[^:]*:Nael deus Darnus:26B5:/ +349.7 "Bahamut's Claw x5" duration 2.8 #Ability { id: "26B5", source: "Nael deus Darnus" } 361.2 "Random Combo Attack" duration 8 -#366.2 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:26BD:/ -#369.2 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:26BC:/ +#366.2 "Thermionic Beam" Ability { id: "26BD", source: "Nael deus Darnus" } +#369.2 "Lunar Dynamo" Ability { id: "26BC", source: "Nael deus Darnus" } 372.7 "Random Combo Attack" duration 8 -#377.3 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26BE:/ -#380.3 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:26BC:/ +#377.3 "Raven Dive" Ability { id: "26BE", source: "Nael deus Darnus" } +#380.3 "Lunar Dynamo" Ability { id: "26BC", source: "Nael deus Darnus" } -388.7 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:26B6:/ -395.7 "Bahamut's Claw x5" duration 2.8 #sync / 1[56]:[^:]*:Nael deus Darnus:26B5:/ +388.7 "Ravensbeak" Ability { id: "26B6", source: "Nael deus Darnus" } +395.7 "Bahamut's Claw x5" duration 2.8 #Ability { id: "26B5", source: "Nael deus Darnus" } 403.2 "--untargetable--" -408.2 "Megaflare Enrage" sync / 1[56]:[^:]*:Nael deus Darnus:26BA:/ +408.2 "Megaflare Enrage" Ability { id: "26BA", source: "Nael deus Darnus" } ##### BAHAMUT ##### -500.0 "Seventh Umbral Era" sync / 1[56]:[^:]*:Bahamut Prime:26D1:/ window 500,0 -503.0 "Calamitous Flame x3" sync / 1[56]:[^:]*:Bahamut Prime:26D2:/ duration 2 -508.0 "Calamitous Blaze" sync / 1[56]:[^:]*:Bahamut Prime:26D3:/ +500.0 "Seventh Umbral Era" Ability { id: "26D1", source: "Bahamut Prime" } window 500,0 +503.0 "Calamitous Flame x3" Ability { id: "26D2", source: "Bahamut Prime" } duration 2 +508.0 "Calamitous Blaze" Ability { id: "26D3", source: "Bahamut Prime" } 511.0 "--targetable--" -517.0 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ -525.0 "Flatten" sync / 1[56]:[^:]*:Bahamut Prime:26D5:/ +517.0 "Flare Breath" Ability { id: "26D4", source: "Bahamut Prime" } +525.0 "Flatten" Ability { id: "26D5", source: "Bahamut Prime" } ### QUICKMARCH -532.0 "Quickmarch Trio" sync / 1[56]:[^:]*:Bahamut Prime:26E2:/ window 30,10 +532.0 "Quickmarch Trio" Ability { id: "26E2", source: "Bahamut Prime" } window 30,10 534.0 "--untargetable--" -#540.0 "Megaflare Dive" sync / 1[56]:[^:]*:Bahamut Prime:26E1:/ -#540.0 "Lunar Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26C3:/ -540.0 "Twisting Dive" sync / 1[56]:[^:]*:Twintania:26B2:/ -544.0 "Spread" sync / 1[56]:[^:]*:Bahamut Prime:26DC:/ +#540.0 "Megaflare Dive" Ability { id: "26E1", source: "Bahamut Prime" } +#540.0 "Lunar Dive" Ability { id: "26C3", source: "Nael deus Darnus" } +540.0 "Twisting Dive" Ability { id: "26B2", source: "Twintania" } +544.0 "Spread" Ability { id: "26DC", source: "Bahamut Prime" } 545.0 "--targetable--" -546.0 "Pepperoni" sync / 1[56]:[^:]*:Bahamut Prime:26DD:/ -548.0 "Stack" sync / 1[56]:[^:]*:Bahamut Prime:26DE:/ -550.0 "Earth Shaker x3" sync / 1[56]:[^:]*:Bahamut Prime:26D9:/ -552.0 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:26D7:/ +546.0 "Pepperoni" Ability { id: "26DD", source: "Bahamut Prime" } +548.0 "Stack" Ability { id: "26DE", source: "Bahamut Prime" } +550.0 "Earth Shaker x3" Ability { id: "26D9", source: "Bahamut Prime" } +552.0 "Tempest Wing" Ability { id: "26D7", source: "Bahamut Prime" } -555.9 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ -563.9 "Flatten" sync / 1[56]:[^:]*:Bahamut Prime:26D5:/ +555.9 "Flare Breath" Ability { id: "26D4", source: "Bahamut Prime" } +563.9 "Flatten" Ability { id: "26D5", source: "Bahamut Prime" } ### BLACKFIRE -572.0 "Blackfire Trio" sync / 1[56]:[^:]*:Bahamut Prime:26E3:/ window 70,10 +572.0 "Blackfire Trio" Ability { id: "26E3", source: "Bahamut Prime" } window 70,10 574.0 "--untargetable--" -576.0 "Liquid Hell x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ -579.0 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:26BD:/ -580.0 "Megaflare Dive" sync / 1[56]:[^:]*:Bahamut Prime:26E1:/ -586.1 "Hypernova x4" duration 4.5 #sync / 1[56]:[^:]*:Nael deus Darnus:26BF:/ -588.0 "Stack" sync / 1[56]:[^:]*:Bahamut Prime:26DE:/ -590.0 "Towers" sync / 1[56]:[^:]*:Bahamut Prime:26DF:/ +576.0 "Liquid Hell x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } +579.0 "Thermionic Beam" Ability { id: "26BD", source: "Nael deus Darnus" } +580.0 "Megaflare Dive" Ability { id: "26E1", source: "Bahamut Prime" } +586.1 "Hypernova x4" duration 4.5 #Ability { id: "26BF", source: "Nael deus Darnus" } +588.0 "Stack" Ability { id: "26DE", source: "Bahamut Prime" } +590.0 "Towers" Ability { id: "26DF", source: "Bahamut Prime" } 590.0 "--targetable--" -596.0 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:26D6:/ -605.0 "Flare Breath 1" #sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ -607.0 "Flare Breath 2" #sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ -609.0 "Flare Breath 3" #sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ +596.0 "Gigaflare" Ability { id: "26D6", source: "Bahamut Prime" } +605.0 "Flare Breath 1" #Ability { id: "26D4", source: "Bahamut Prime" } +607.0 "Flare Breath 2" #Ability { id: "26D4", source: "Bahamut Prime" } +609.0 "Flare Breath 3" #Ability { id: "26D4", source: "Bahamut Prime" } ### FELLRUIN -622.0 "Fellruin Trio" sync / 1[56]:[^:]*:Bahamut Prime:26E4:/ window 130,10 +622.0 "Fellruin Trio" Ability { id: "26E4", source: "Bahamut Prime" } window 130,10 624.0 "--untargetable--" 626.6 "Dive Dynamo Combo" duration 8 -#631.1 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:26BC:/ -#634.1 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26BE:/ -637.1 "Tempest Wing" sync / 1[56]:[^:]*:Bahamut Prime:26D7:/ -638.1 "Aetheric Profusion" sync / 1[56]:[^:]*:Twintania:26B1:/ +#631.1 "Lunar Dynamo" Ability { id: "26BC", source: "Nael deus Darnus" } +#634.1 "Raven Dive" Ability { id: "26BE", source: "Nael deus Darnus" } +637.1 "Tempest Wing" Ability { id: "26D7", source: "Bahamut Prime" } +638.1 "Aetheric Profusion" Ability { id: "26B1", source: "Twintania" } 640.1 "--targetable--" -641.1 "Meteor Stream" sync / 1[56]:[^:]*:Nael Geminus:26C0:/ -646.1 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:26D6:/ -651.4 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ -660.4 "Flatten" sync / 1[56]:[^:]*:Bahamut Prime:26D5:/ -665.4 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ +641.1 "Meteor Stream" Ability { id: "26C0", source: "Nael Geminus" } +646.1 "Gigaflare" Ability { id: "26D6", source: "Bahamut Prime" } +651.4 "Flare Breath" Ability { id: "26D4", source: "Bahamut Prime" } +660.4 "Flatten" Ability { id: "26D5", source: "Bahamut Prime" } +665.4 "Flare Breath" Ability { id: "26D4", source: "Bahamut Prime" } #### HEAVENSFALL -673.4 "Heavensfall Trio" sync / 1[56]:[^:]*:Bahamut Prime:26E5:/ window 170,10 +673.4 "Heavensfall Trio" Ability { id: "26E5", source: "Bahamut Prime" } window 170,10 675.4 "--untargetable--" -#681.4 "Megaflare Dive" sync / 1[56]:[^:]*:Bahamut Prime:26E1:/ -681.4 "Twisting Dive" sync / 1[56]:[^:]*:Twintania:26B2:/ -686.9 "Heavensfall" sync / 1[56]:[^:]*:Nael deus Darnus:26B7:/ -687.4 "Pepperoni" sync / 1[56]:[^:]*:Bahamut Prime:26DD:/ -688.9 "Heavensfall" sync / 1[56]:[^:]*:Ragnarok:26B8:/ -691.4 "Towers" sync / 1[56]:[^:]*:Bahamut Prime:26DF:/ -694.5 "Hypernova x3" duration 3.2 #sync / 1[56]:[^:]*:Nael deus Darnus:26BF:/ -696.0 "Thermionic Burst x8" duration 5 #sync / 1[56]:[^:]*:Ragnarok:26B9:/ +#681.4 "Megaflare Dive" Ability { id: "26E1", source: "Bahamut Prime" } +681.4 "Twisting Dive" Ability { id: "26B2", source: "Twintania" } +686.9 "Heavensfall" Ability { id: "26B7", source: "Nael deus Darnus" } +687.4 "Pepperoni" Ability { id: "26DD", source: "Bahamut Prime" } +688.9 "Heavensfall" Ability { id: "26B8", source: "Ragnarok" } +691.4 "Towers" Ability { id: "26DF", source: "Bahamut Prime" } +694.5 "Hypernova x3" duration 3.2 #Ability { id: "26BF", source: "Nael deus Darnus" } +696.0 "Thermionic Burst x8" duration 5 #Ability { id: "26B9", source: "Ragnarok" } 702.5 "--targetable--" -703.5 "Fireball" sync / 1[56]:[^:]*:Twintania:26AC:/ -708.5 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:26D6:/ -717.5 "Flare Breath 1" #sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ -719.5 "Flare Breath 2" #sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ -721.5 "Flare Breath 3" #sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ +703.5 "Fireball" Ability { id: "26AC", source: "Twintania" } +708.5 "Gigaflare" Ability { id: "26D6", source: "Bahamut Prime" } +717.5 "Flare Breath 1" #Ability { id: "26D4", source: "Bahamut Prime" } +719.5 "Flare Breath 2" #Ability { id: "26D4", source: "Bahamut Prime" } +721.5 "Flare Breath 3" #Ability { id: "26D4", source: "Bahamut Prime" } ### TENSTRIKE -733.5 "Tenstrike Trio" sync / 1[56]:[^:]*:Bahamut Prime:26E6:/ window 200,10 +733.5 "Tenstrike Trio" Ability { id: "26E6", source: "Bahamut Prime" } window 200,10 735.5 "--untargetable--" -740.5 "Generate x3" sync / 1[56]:[^:]*:Twintania:26AE:/ -741.5 "Meteor Stream (dps)" duration 3 #sync / 1[56]:[^:]*:Nael Geminus:26C0:/ -744.5 "Generate x3" sync / 1[56]:[^:]*:Twintania:26AE:/ -745.5 "Meteor Stream (T/H)" duration 3 #sync / 1[56]:[^:]*:Nael Geminus:26C0:/ +740.5 "Generate x3" Ability { id: "26AE", source: "Twintania" } +741.5 "Meteor Stream (dps)" duration 3 #Ability { id: "26C0", source: "Nael Geminus" } +744.5 "Generate x3" Ability { id: "26AE", source: "Twintania" } +745.5 "Meteor Stream (T/H)" duration 3 #Ability { id: "26C0", source: "Nael Geminus" } 754.4 "--targetable--" -754.4 "Earth Shaker x4" sync / 1[56]:[^:]*:Bahamut Prime:26D9:/ -759.4 "Earth Shaker x4" sync / 1[56]:[^:]*:Bahamut Prime:26D9:/ +754.4 "Earth Shaker x4" Ability { id: "26D9", source: "Bahamut Prime" } +759.4 "Earth Shaker x4" Ability { id: "26D9", source: "Bahamut Prime" } -767.4 "Gigaflare" sync / 1[56]:[^:]*:Bahamut Prime:26D6:/ -778.4 "Flatten" sync / 1[56]:[^:]*:Bahamut Prime:26D5:/ -781.4 "Flare Breath" sync / 1[56]:[^:]*:Bahamut Prime:26D4:/ +767.4 "Gigaflare" Ability { id: "26D6", source: "Bahamut Prime" } +778.4 "Flatten" Ability { id: "26D5", source: "Bahamut Prime" } +781.4 "Flare Breath" Ability { id: "26D4", source: "Bahamut Prime" } ### GRAND OCTET -789.4 "Grand Octet" sync / 1[56]:[^:]*:Bahamut Prime:26E7:/ window 200,10 +789.4 "Grand Octet" Ability { id: "26E7", source: "Bahamut Prime" } window 200,10 791.4 "--untargetable--" 797.4 "Nael Marker" -801.4 "Lunar Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26C3:/ -808.4 "Cauterize" #sync / 1[56]:[^:]*:Firehorn:26CB:/ -810.6 "Cauterize" #sync / 1[56]:[^:]*:Iceclaw:26CC:/ -812.6 "Cauterize" #sync / 1[56]:[^:]*:Fang of Light:26CF:/ +801.4 "Lunar Dive" Ability { id: "26C3", source: "Nael deus Darnus" } +808.4 "Cauterize" #Ability { id: "26CB", source: "Firehorn" } +810.6 "Cauterize" #Ability { id: "26CC", source: "Iceclaw" } +812.6 "Cauterize" #Ability { id: "26CF", source: "Fang of Light" } 814.4 "Bahamut Marker" -814.6 "Cauterize" #sync / 1[56]:[^:]*:Thunderwing:26CD:/ -816.6 "Cauterize" #sync / 1[56]:[^:]*:Tail of Darkness:26CE:/ -818.6 "Megaflare Dive" sync / 1[56]:[^:]*:Bahamut Prime:26E1:/ +814.6 "Cauterize" #Ability { id: "26CD", source: "Thunderwing" } +816.6 "Cauterize" #Ability { id: "26CE", source: "Tail of Darkness" } +818.6 "Megaflare Dive" Ability { id: "26E1", source: "Bahamut Prime" } 823.4 "Twin Marker" -826.4 "Stack" sync / 1[56]:[^:]*:Bahamut Prime:26DE:/ -827.6 "Twisting Dive" sync / 1[56]:[^:]*:Twintania:26B2:/ -828.4 "Towers" sync / 1[56]:[^:]*:Bahamut Prime:26DF:/ +826.4 "Stack" Ability { id: "26DE", source: "Bahamut Prime" } +827.6 "Twisting Dive" Ability { id: "26B2", source: "Twintania" } +828.4 "Towers" Ability { id: "26DF", source: "Bahamut Prime" } ##### ADDS PHASE: NAEL + TWIN ##### -843.4 "Bahamut's Favor" sync / 1[56]:[^:]*:Bahamut Prime:26E8:/ window 1000,100 +843.4 "Bahamut's Favor" Ability { id: "26E8", source: "Bahamut Prime" } window 1000,100 844.9 "--targetable--" -852.9 "Bahamut's Claw x5" duration 2.8 #sync / 1[56]:[^:]*:Nael deus Darnus:26B5:/ -852.9 "Plummet" sync / 1[56]:[^:]*:Twintania:26A8:/ +852.9 "Bahamut's Claw x5" duration 2.8 #Ability { id: "26B5", source: "Nael deus Darnus" } +852.9 "Plummet" Ability { id: "26A8", source: "Twintania" } -856.0 "Liquid Hell x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ -864.5 "Generate x3" sync / 1[56]:[^:]*:Twintania:26AE:/ -868.6 "Twister" sync / 1[56]:[^:]*:Twintania:26AA:/ +856.0 "Liquid Hell x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } +864.5 "Generate x3" Ability { id: "26AE", source: "Twintania" } +868.6 "Twister" Ability { id: "26AA", source: "Twintania" } 871.6 "Triple Nael Quote" -#876.3 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:26BB:/ -#879.3 "Thermionic Beam" sync / 1[56]:[^:]*:Nael deus Darnus:26BD:/ -#882.4 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26BE:/ -885.5 "Twister" sync / 1[56]:[^:]*:Twintania:26AA:/ - -896.5 "Megaflare" sync / 1[56]:[^:]*:Nael deus Darnus:26BA:/ -904.6 "Death Sentence" sync / 1[56]:[^:]*:Twintania:26A9:/ -904.6 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:26B6:/ -908.6 "Plummet" sync / 1[56]:[^:]*:Twintania:26A8:/ -908.6 "Bahamut's Claw x5" duration 2.8 #sync / 1[56]:[^:]*:Nael deus Darnus:26B5:/ - -917.7 "Liquid Hell x5" duration 4.5 #sync / 1[56]:[^:]*:Twintania:26AD:/ -926.5 "Generate x3" sync / 1[56]:[^:]*:Twintania:26AE:/ -930.7 "Twister" sync / 1[56]:[^:]*:Twintania:26AA:/ +#876.3 "Iron Chariot" Ability { id: "26BB", source: "Nael deus Darnus" } +#879.3 "Thermionic Beam" Ability { id: "26BD", source: "Nael deus Darnus" } +#882.4 "Raven Dive" Ability { id: "26BE", source: "Nael deus Darnus" } +885.5 "Twister" Ability { id: "26AA", source: "Twintania" } + +896.5 "Megaflare" Ability { id: "26BA", source: "Nael deus Darnus" } +904.6 "Death Sentence" Ability { id: "26A9", source: "Twintania" } +904.6 "Ravensbeak" Ability { id: "26B6", source: "Nael deus Darnus" } +908.6 "Plummet" Ability { id: "26A8", source: "Twintania" } +908.6 "Bahamut's Claw x5" duration 2.8 #Ability { id: "26B5", source: "Nael deus Darnus" } + +917.7 "Liquid Hell x5" duration 4.5 #Ability { id: "26AD", source: "Twintania" } +926.5 "Generate x3" Ability { id: "26AE", source: "Twintania" } +930.7 "Twister" Ability { id: "26AA", source: "Twintania" } 934.7 "Triple Nael Quote" -#938.3 "Lunar Dynamo" sync / 1[56]:[^:]*:Nael deus Darnus:26BC:/ -#941.4 "Iron Chariot" sync / 1[56]:[^:]*:Nael deus Darnus:26BB:/ -#944.6 "Raven Dive" sync / 1[56]:[^:]*:Nael deus Darnus:26BE:/ -947.9 "Twister" sync / 1[56]:[^:]*:Twintania:26AA:/ - -960.1 "Death Sentence" sync / 1[56]:[^:]*:Twintania:26A9:/ -960.7 "Ravensbeak" sync / 1[56]:[^:]*:Nael deus Darnus:26B6:/ -973.0 "Megaflare" sync / 1[56]:[^:]*:Nael deus Darnus:26BA:/ +#938.3 "Lunar Dynamo" Ability { id: "26BC", source: "Nael deus Darnus" } +#941.4 "Iron Chariot" Ability { id: "26BB", source: "Nael deus Darnus" } +#944.6 "Raven Dive" Ability { id: "26BE", source: "Nael deus Darnus" } +947.9 "Twister" Ability { id: "26AA", source: "Twintania" } + +960.1 "Death Sentence" Ability { id: "26A9", source: "Twintania" } +960.7 "Ravensbeak" Ability { id: "26B6", source: "Nael deus Darnus" } +973.0 "Megaflare" Ability { id: "26BA", source: "Nael deus Darnus" } 984.0 "Enrage" # ??? ##### GOLDEN BAHAMUT ##### -1200.0 "Teraflare" sync / 1[56]:[^:]*:Bahamut Prime:26E9:/ window 1200,0 -1225.1 "Flames Of Rebirth" #sync / 1[56]:[^:]*:Phoenix:26F2:/ -1230.9 "--sync--" sync / 1[56]:[^:]*:Bahamut Prime:2707:/ window 30,30 # Glowing ball +1200.0 "Teraflare" Ability { id: "26E9", source: "Bahamut Prime" } window 1200,0 +1225.1 "Flames Of Rebirth" #Ability { id: "26F2", source: "Phoenix" } +1230.9 "--sync--" Ability { id: "2707", source: "Bahamut Prime" } window 30,30 # Glowing ball 1245.0 "--targetable--" -1251.1 "Morn Afah #1" sync / 1[56]:[^:]*:Bahamut Prime:26EC:/ -1257.5 "Akh Morn #1" sync / 1[56]:[^:]*:Bahamut Prime:26EA:/ duration 3.3 -1270.0 "Exaflare #1" sync / 1[56]:[^:]*:Bahamut Prime:26EF:/ window 10,10 -1289.3 "Akh Morn #2" sync / 1[56]:[^:]*:Bahamut Prime:26EA:/ duration 4.4 -1306.9 "Morn Afah #2" sync / 1[56]:[^:]*:Bahamut Prime:26EC:/ -1319.2 "Exaflare #2" sync / 1[56]:[^:]*:Bahamut Prime:26EF:/ window 10,10 -1340.5 "Morn Afah #3" sync / 1[56]:[^:]*:Bahamut Prime:26EC:/ -1352.7 "Akh Morn #3" sync / 1[56]:[^:]*:Bahamut Prime:26EA:/ duration 5.5 -1369.4 "Exaflare #3" sync / 1[56]:[^:]*:Bahamut Prime:26EF:/ window 10,10 -1390.6 "Morn Afah #4" sync / 1[56]:[^:]*:Bahamut Prime:26EC:/ -1402.7 "Akh Morn #4" sync / 1[56]:[^:]*:Bahamut Prime:26EA:/ duration 6.6 -1420.5 "Exaflare #4" sync / 1[56]:[^:]*:Bahamut Prime:26EF:/ window 10,10 -1441.6 "Morn Afah #5" sync / 1[56]:[^:]*:Bahamut Prime:26EC:/ -1453.7 "Morn Afah Enrage" sync / 1[56]:[^:]*:Bahamut Prime:26ED:/ -#1455.9 "Morn Afah" sync / 1[56]:[^:]*:Bahamut Prime:26EE:/ -#1457.2 "Morn Afah" sync / 1[56]:[^:]*:Bahamut Prime:26EE:/ +1251.1 "Morn Afah #1" Ability { id: "26EC", source: "Bahamut Prime" } +1257.5 "Akh Morn #1" Ability { id: "26EA", source: "Bahamut Prime" } duration 3.3 +1270.0 "Exaflare #1" Ability { id: "26EF", source: "Bahamut Prime" } window 10,10 +1289.3 "Akh Morn #2" Ability { id: "26EA", source: "Bahamut Prime" } duration 4.4 +1306.9 "Morn Afah #2" Ability { id: "26EC", source: "Bahamut Prime" } +1319.2 "Exaflare #2" Ability { id: "26EF", source: "Bahamut Prime" } window 10,10 +1340.5 "Morn Afah #3" Ability { id: "26EC", source: "Bahamut Prime" } +1352.7 "Akh Morn #3" Ability { id: "26EA", source: "Bahamut Prime" } duration 5.5 +1369.4 "Exaflare #3" Ability { id: "26EF", source: "Bahamut Prime" } window 10,10 +1390.6 "Morn Afah #4" Ability { id: "26EC", source: "Bahamut Prime" } +1402.7 "Akh Morn #4" Ability { id: "26EA", source: "Bahamut Prime" } duration 6.6 +1420.5 "Exaflare #4" Ability { id: "26EF", source: "Bahamut Prime" } window 10,10 +1441.6 "Morn Afah #5" Ability { id: "26EC", source: "Bahamut Prime" } +1453.7 "Morn Afah Enrage" Ability { id: "26ED", source: "Bahamut Prime" } +#1455.9 "Morn Afah" Ability { id: "26EE", source: "Bahamut Prime" } +#1457.2 "Morn Afah" Ability { id: "26EE", source: "Bahamut Prime" } # victory ezpz diff --git a/ui/raidboss/data/05-shb/alliance/the_copied_factory.txt b/ui/raidboss/data/05-shb/alliance/the_copied_factory.txt index 9f0abab469..afcf324ed8 100644 --- a/ui/raidboss/data/05-shb/alliance/the_copied_factory.txt +++ b/ui/raidboss/data/05-shb/alliance/the_copied_factory.txt @@ -7,45 +7,45 @@ hideall "--sync--" # -ic 2P -p 48B2:108.5 -ii 4B31 48B3 48B4 48B7 48B6 48CB 48CC 48BA 4B32 48FA 48BC 48BD 48BE 48BF 48C0 48C1 48C2 48C9 # Warehouse A will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D4C:/ window 100,0 -108.5 "Systematic Siege" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B2:/ window 108.5,10 -122.6 "Clanging Blow" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CE:/ -134.1 "Energy Bombardment" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B8:/ -143.3 "Forceful Impact" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CF:/ -156.1 "Energy Assault" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B5:/ duration 6.5 -163.2 "--sync--" sync / 1[56]:[^:]*:Serial-jointed Command Model:4A10:/ -176.0 "Systematic Targeting" sync / 1[56]:[^:]*:Serial-jointed Command Model:48C4:/ -188.5 "High-Powered Laser" #sync / 1[56]:[^:]*:Serial-jointed Service Model:48C5:/ -193.8 "Forceful Impact" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CF:/ -206.7 "Spin" sync / 1[56]:[^:]*:Serial-jointed Command Model:48C[A8]:/ -220.3 "Systematic Airstrike" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B9:/ duration 24.8 -234.2 "Clanging Blow" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CE:/ -259.1 "Systematic Suppression" sync / 1[56]:[^:]*:Serial-jointed Command Model:48C6:/ -272.0 "High-Caliber Laser" #sync / 1[56]:[^:]*:Serial-jointed Service Model:48C7:/ -276.0 "High-Caliber Laser" #sync / 1[56]:[^:]*:Serial-jointed Service Model:48C7:/ -281.9 "Forceful Impact" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CF:/ +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D4C" } window 100,0 +108.5 "Systematic Siege" Ability { id: "48B2", source: "Serial-jointed Command Model" } window 108.5,10 +122.6 "Clanging Blow" Ability { id: "48CE", source: "Serial-jointed Command Model" } +134.1 "Energy Bombardment" Ability { id: "48B8", source: "Serial-jointed Command Model" } +143.3 "Forceful Impact" Ability { id: "48CF", source: "Serial-jointed Command Model" } +156.1 "Energy Assault" Ability { id: "48B5", source: "Serial-jointed Command Model" } duration 6.5 +163.2 "--sync--" Ability { id: "4A10", source: "Serial-jointed Command Model" } +176.0 "Systematic Targeting" Ability { id: "48C4", source: "Serial-jointed Command Model" } +188.5 "High-Powered Laser" #Ability { id: "48C5", source: "Serial-jointed Service Model" } +193.8 "Forceful Impact" Ability { id: "48CF", source: "Serial-jointed Command Model" } +206.7 "Spin" Ability { id: "48C[A8]", source: "Serial-jointed Command Model" } +220.3 "Systematic Airstrike" Ability { id: "48B9", source: "Serial-jointed Command Model" } duration 24.8 +234.2 "Clanging Blow" Ability { id: "48CE", source: "Serial-jointed Command Model" } +259.1 "Systematic Suppression" Ability { id: "48C6", source: "Serial-jointed Command Model" } +272.0 "High-Caliber Laser" #Ability { id: "48C7", source: "Serial-jointed Service Model" } +276.0 "High-Caliber Laser" #Ability { id: "48C7", source: "Serial-jointed Service Model" } +281.9 "Forceful Impact" Ability { id: "48CF", source: "Serial-jointed Command Model" } # Maybe an HP push? -292.3 "Systematic Siege" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B2:/ window 150,5 -303.2 "Energy Bombardment" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B8:/ -306.8 "Systematic Targeting" sync / 1[56]:[^:]*:Serial-jointed Command Model:48C4:/ -317.8 "Clanging Blow" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CE:/ -319.3 "High-Powered Laser" #sync / 1[56]:[^:]*:Serial-jointed Service Model:48C5:/ -332.1 "Spin" sync / 1[56]:[^:]*:Serial-jointed Command Model:48C[A8]:/ -343.2 "Forceful Impact" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CF:/ -352.6 "Systematic Airstrike" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B9:/ duration 24.8 -371.5 "Shockwave" sync / 1[56]:[^:]*:Serial-jointed Command Model:48C3:/ -387.9 "Energy Ring" sync / 1[56]:[^:]*:Serial-jointed Command Model:48BB:/ duration 7.2 -404.9 "Energy Assault" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B5:/ duration 6.5 -412.1 "--sync--" sync / 1[56]:[^:]*:Serial-jointed Command Model:4A10:/ -420.7 "Systematic Suppression" sync / 1[56]:[^:]*:Serial-jointed Command Model:48C6:/ -433.5 "High-Caliber Laser" #sync / 1[56]:[^:]*:Serial-jointed Service Model:48C7:/ -437.6 "High-Caliber Laser" #sync / 1[56]:[^:]*:Serial-jointed Service Model:48C7:/ -442.6 "Forceful Impact" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CF:/ -457.4 "Spin" sync / 1[56]:[^:]*:Serial-jointed Command Model:48C[A8]:/ -468.5 "Clanging Blow" sync / 1[56]:[^:]*:Serial-jointed Command Model:48CE:/ - -478.4 "Systematic Siege" sync / 1[56]:[^:]*:Serial-jointed Command Model:48B2:/ window 100,100 jump 292.3 +292.3 "Systematic Siege" Ability { id: "48B2", source: "Serial-jointed Command Model" } window 150,5 +303.2 "Energy Bombardment" Ability { id: "48B8", source: "Serial-jointed Command Model" } +306.8 "Systematic Targeting" Ability { id: "48C4", source: "Serial-jointed Command Model" } +317.8 "Clanging Blow" Ability { id: "48CE", source: "Serial-jointed Command Model" } +319.3 "High-Powered Laser" #Ability { id: "48C5", source: "Serial-jointed Service Model" } +332.1 "Spin" Ability { id: "48C[A8]", source: "Serial-jointed Command Model" } +343.2 "Forceful Impact" Ability { id: "48CF", source: "Serial-jointed Command Model" } +352.6 "Systematic Airstrike" Ability { id: "48B9", source: "Serial-jointed Command Model" } duration 24.8 +371.5 "Shockwave" Ability { id: "48C3", source: "Serial-jointed Command Model" } +387.9 "Energy Ring" Ability { id: "48BB", source: "Serial-jointed Command Model" } duration 7.2 +404.9 "Energy Assault" Ability { id: "48B5", source: "Serial-jointed Command Model" } duration 6.5 +412.1 "--sync--" Ability { id: "4A10", source: "Serial-jointed Command Model" } +420.7 "Systematic Suppression" Ability { id: "48C6", source: "Serial-jointed Command Model" } +433.5 "High-Caliber Laser" #Ability { id: "48C7", source: "Serial-jointed Service Model" } +437.6 "High-Caliber Laser" #Ability { id: "48C7", source: "Serial-jointed Service Model" } +442.6 "Forceful Impact" Ability { id: "48CF", source: "Serial-jointed Command Model" } +457.4 "Spin" Ability { id: "48C[A8]", source: "Serial-jointed Command Model" } +468.5 "Clanging Blow" Ability { id: "48CE", source: "Serial-jointed Command Model" } + +478.4 "Systematic Siege" Ability { id: "48B2", source: "Serial-jointed Command Model" } window 100,100 jump 292.3 489.3 "Energy Bombardment" 492.9 "Systematic Targeting" 503.9 "Clanging Blow" @@ -57,20 +57,20 @@ hideall "--sync--" ### Trash # -ic 2P -ii 491D 491C -p 491B:715.5 # Warehouse B will be sealed off -600.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D4D:/ window 600,0 -700.0 "--sync--" sync / 22:........:Small Flyer:........:Small Flyer:01/ window 100,0 -715.5 "Frontal Somersault" sync / 1[56]:[^:]*:Small Biped:491B:/ window 116,2.5 -721.4 "Frontal Somersault" sync / 1[56]:[^:]*:Small Biped:491B:/ -725.7 "High-Frequency Laser" sync / 1[56]:[^:]*:Multi-leg Medium Model:491E:/ -732.1 "High-Frequency Laser" sync / 1[56]:[^:]*:Multi-leg Medium Model:491E:/ -738.5 "High-Frequency Laser" sync / 1[56]:[^:]*:Multi-leg Medium Model:491E:/ -740.8 "Frontal Somersault" sync / 1[56]:[^:]*:Small Biped:491B:/ -746.9 "Frontal Somersault" sync / 1[56]:[^:]*:Small Biped:491B:/ -751.2 "High-Frequency Laser" sync / 1[56]:[^:]*:Multi-leg Medium Model:491E:/ -757.5 "High-Frequency Laser" sync / 1[56]:[^:]*:Multi-leg Medium Model:491E:/ -763.9 "High-Frequency Laser" sync / 1[56]:[^:]*:Multi-leg Medium Model:491E:/ -770.1 "High-Frequency Laser" sync / 1[56]:[^:]*:Multi-leg Medium Model:491E:/ -776.3 "High-Frequency Laser" sync / 1[56]:[^:]*:Multi-leg Medium Model:491E:/ +600.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D4D" } window 600,0 +700.0 "--sync--" NameToggle { name: "Small Flyer", toggle: "01" } window 100,0 +715.5 "Frontal Somersault" Ability { id: "491B", source: "Small Biped" } window 116,2.5 +721.4 "Frontal Somersault" Ability { id: "491B", source: "Small Biped" } +725.7 "High-Frequency Laser" Ability { id: "491E", source: "Multi-leg Medium Model" } +732.1 "High-Frequency Laser" Ability { id: "491E", source: "Multi-leg Medium Model" } +738.5 "High-Frequency Laser" Ability { id: "491E", source: "Multi-leg Medium Model" } +740.8 "Frontal Somersault" Ability { id: "491B", source: "Small Biped" } +746.9 "Frontal Somersault" Ability { id: "491B", source: "Small Biped" } +751.2 "High-Frequency Laser" Ability { id: "491E", source: "Multi-leg Medium Model" } +757.5 "High-Frequency Laser" Ability { id: "491E", source: "Multi-leg Medium Model" } +763.9 "High-Frequency Laser" Ability { id: "491E", source: "Multi-leg Medium Model" } +770.1 "High-Frequency Laser" Ability { id: "491E", source: "Multi-leg Medium Model" } +776.3 "High-Frequency Laser" Ability { id: "491E", source: "Multi-leg Medium Model" } ### Hobbes @@ -111,80 +111,80 @@ hideall "--sync--" # branch out to six timelines again for the second half, but it'd be, well, a lot. # Quality Assurance will be sealed off -900.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D4E:/ window 900,0 -913.0 "Laser-Resistance Test x3" sync / 1[56]:[^:]*:Hobbes:4805:/ duration 2.3 window 913,10 +900.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D4E" } window 900,0 +913.0 "Laser-Resistance Test x3" Ability { id: "4805", source: "Hobbes" } duration 2.3 window 913,10 -924.5 "--sync--" sync / 1[56]:[^:]*:Hobbes:480A:/ -926.0 "--sync--" sync / 1[56]:[^:]*:Hobbes:4913:/ +924.5 "--sync--" Ability { id: "480A", source: "Hobbes" } +926.0 "--sync--" Ability { id: "4913", source: "Hobbes" } 934.0 "Wall Mechanic 1" -969.6 "--sync--" sync / 1[56]:[^:]*:Hobbes:480A:/ -971.1 "--sync--" sync / 1[56]:[^:]*:Hobbes:4913:/ +969.6 "--sync--" Ability { id: "480A", source: "Hobbes" } +971.1 "--sync--" Ability { id: "4913", source: "Hobbes" } 979.1 "Wall Mechanic 2" -996.8 "Ring Laser" sync / 1[56]:[^:]*:Hobbes:47FF:/ duration 8.1 +996.8 "Ring Laser" Ability { id: "47FF", source: "Hobbes" } duration 8.1 -1030.5 "--sync--" sync / 1[56]:[^:]*:Hobbes:480A:/ -1032.1 "--sync--" sync / 1[56]:[^:]*:Hobbes:4913:/ +1030.5 "--sync--" Ability { id: "480A", source: "Hobbes" } +1032.1 "--sync--" Ability { id: "4913", source: "Hobbes" } 1040.1 "Wall Mechanic 3" -1061.3 "Laser Sight" sync / 1[56]:[^:]*:Hobbes:4807:/ +1061.3 "Laser Sight" Ability { id: "4807", source: "Hobbes" } -1090.7 "Floor 1" sync / 1[56]:[^:]*:Hobbes:481B:/ -1097.3 "Floor 2" sync / 1[56]:[^:]*:Hobbes:481B:/ +1090.7 "Floor 1" Ability { id: "481B", source: "Hobbes" } +1097.3 "Floor 2" Ability { id: "481B", source: "Hobbes" } -1114.1 "Laser-Resistance Test x4" sync / 1[56]:[^:]*:Hobbes:4805:/ duration 3.3 +1114.1 "Laser-Resistance Test x4" Ability { id: "4805", source: "Hobbes" } duration 3.3 -1128.6 "Floor 1" sync / 1[56]:[^:]*:Hobbes:481B:/ -1130.5 "Short-Range Missile" sync / 1[56]:[^:]*:Hobbes:4815:/ -1135.2 "Floor 2" sync / 1[56]:[^:]*:Hobbes:481B:/ +1128.6 "Floor 1" Ability { id: "481B", source: "Hobbes" } +1130.5 "Short-Range Missile" Ability { id: "4815", source: "Hobbes" } +1135.2 "Floor 2" Ability { id: "481B", source: "Hobbes" } -1143.7 "--sync--" sync / 1[56]:[^:]*:Hobbes:480A:/ -1149.2 "--sync--" sync / 1[56]:[^:]*:Hobbes:4913:/ -1149.6 "Laser Sight" sync / 1[56]:[^:]*:Hobbes:4807:/ +1143.7 "--sync--" Ability { id: "480A", source: "Hobbes" } +1149.2 "--sync--" Ability { id: "4913", source: "Hobbes" } +1149.6 "Laser Sight" Ability { id: "4807", source: "Hobbes" } 1157.2 "Wall Mechanic A" -1187.9 "Laser-Resistance Test x5" sync / 1[56]:[^:]*:Hobbes:4805:/ duration 4.3 +1187.9 "Laser-Resistance Test x5" Ability { id: "4805", source: "Hobbes" } duration 4.3 -1200.8 "Ring Laser" sync / 1[56]:[^:]*:Hobbes:47FF:/ duration 8.1 -1203.4 "Floor 1" sync / 1[56]:[^:]*:Hobbes:481B:/ -1209.9 "Floor 2" sync / 1[56]:[^:]*:Hobbes:481B:/ +1200.8 "Ring Laser" Ability { id: "47FF", source: "Hobbes" } duration 8.1 +1203.4 "Floor 1" Ability { id: "481B", source: "Hobbes" } +1209.9 "Floor 2" Ability { id: "481B", source: "Hobbes" } -1218.2 "--sync--" sync / 1[56]:[^:]*:Hobbes:480A:/ -1223.8 "--sync--" sync / 1[56]:[^:]*:Hobbes:4913:/ -1224.2 "Short-Range Missile" sync / 1[56]:[^:]*:Hobbes:4815:/ +1218.2 "--sync--" Ability { id: "480A", source: "Hobbes" } +1223.8 "--sync--" Ability { id: "4913", source: "Hobbes" } +1224.2 "Short-Range Missile" Ability { id: "4815", source: "Hobbes" } 1231.8 "Wall Mechanic B" -1262.6 "Laser-Resistance Test x6" sync / 1[56]:[^:]*:Hobbes:4805:/ duration 5.3 +1262.6 "Laser-Resistance Test x6" Ability { id: "4805", source: "Hobbes" } duration 5.3 -1279.2 "Floor 1" sync / 1[56]:[^:]*:Hobbes:481B:/ -1281.2 "Laser Sight" sync / 1[56]:[^:]*:Hobbes:4807:/ -1285.8 "Floor 2" sync / 1[56]:[^:]*:Hobbes:481B:/ +1279.2 "Floor 1" Ability { id: "481B", source: "Hobbes" } +1281.2 "Laser Sight" Ability { id: "4807", source: "Hobbes" } +1285.8 "Floor 2" Ability { id: "481B", source: "Hobbes" } -1294.5 "--sync--" sync / 1[56]:[^:]*:Hobbes:480A:/ -1300.0 "--sync--" sync / 1[56]:[^:]*:Hobbes:4913:/ -1301.9 "Ring Laser" sync / 1[56]:[^:]*:Hobbes:47FF:/ duration 8.1 +1294.5 "--sync--" Ability { id: "480A", source: "Hobbes" } +1300.0 "--sync--" Ability { id: "4913", source: "Hobbes" } +1301.9 "Ring Laser" Ability { id: "47FF", source: "Hobbes" } duration 8.1 1308.0 "Wall Mechanic C" -1339.0 "Laser-Resistance Test x6" sync / 1[56]:[^:]*:Hobbes:4805:/ duration 5.3 +1339.0 "Laser-Resistance Test x6" Ability { id: "4805", source: "Hobbes" } duration 5.3 -1355.7 "Floor 1" sync / 1[56]:[^:]*:Hobbes:481B:/ -1357.7 "Short-Range Missile" sync / 1[56]:[^:]*:Hobbes:4815:/ -1362.3 "Floor 2" sync / 1[56]:[^:]*:Hobbes:481B:/ +1355.7 "Floor 1" Ability { id: "481B", source: "Hobbes" } +1357.7 "Short-Range Missile" Ability { id: "4815", source: "Hobbes" } +1362.3 "Floor 2" Ability { id: "481B", source: "Hobbes" } -1370.9 "--sync--" sync / 1[56]:[^:]*:Hobbes:480A:/ -1376.4 "--sync--" sync / 1[56]:[^:]*:Hobbes:4913:/ -1376.8 "Laser Sight" sync / 1[56]:[^:]*:Hobbes:4807:/ +1370.9 "--sync--" Ability { id: "480A", source: "Hobbes" } +1376.4 "--sync--" Ability { id: "4913", source: "Hobbes" } +1376.8 "Laser Sight" Ability { id: "4807", source: "Hobbes" } 1384.4 "Wall Mechanic A" -1414.9 "Laser-Resistance Test x6" sync / 1[56]:[^:]*:Hobbes:4805:/ duration 5.3 +1414.9 "Laser-Resistance Test x6" Ability { id: "4805", source: "Hobbes" } duration 5.3 -1429.0 "Ring Laser" sync / 1[56]:[^:]*:Hobbes:47FF:/ duration 8.1 window 100,100 jump 1200.8 +1429.0 "Ring Laser" Ability { id: "47FF", source: "Hobbes" } duration 8.1 window 100,100 jump 1200.8 1431.6 "Floor 1" 1438.1 "Floor 2" @@ -199,32 +199,32 @@ hideall "--sync--" ### Goliath Tank # -ic 2P -p 4932:1509 493D:1800 -ii 4937 4934 4938 4935 4939 4936 493A 4933 470D 4943 493E # Warehouse C will be sealed off -1500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D50:/ window 1500,0 -1509.0 "Energy Ring" sync / 1[56]:[^:]*:Goliath Tank:4932:/ duration 15.1 window 1509,10 +1500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D50" } window 1500,0 +1509.0 "Energy Ring" Ability { id: "4932", source: "Goliath Tank" } duration 15.1 window 1509,10 1516.9 "Exploding Tethers" -1526.0 "Convenient Self-Destruction" sync / 1[56]:[^:]*:Medium Exploder:493C:/ -1533.9 "Laser Turret" sync / 1[56]:[^:]*:Goliath Tank:493B:/ -1547.2 "Energy Ring" sync / 1[56]:[^:]*:Goliath Tank:4932:/ duration 30 +1526.0 "Convenient Self-Destruction" Ability { id: "493C", source: "Medium Exploder" } +1533.9 "Laser Turret" Ability { id: "493B", source: "Goliath Tank" } +1547.2 "Energy Ring" Ability { id: "4932", source: "Goliath Tank" } duration 30 1561.1 "Exploding Tethers" -1570.2 "Convenient Self-Destruction" sync / 1[56]:[^:]*:Medium Exploder:493C:/ -1584.2 "Laser Turret" sync / 1[56]:[^:]*:Goliath Tank:493B:/ -1593.6 "Laser Turret" sync / 1[56]:[^:]*:Goliath Tank:493B:/ -1603.0 "Laser Turret" sync / 1[56]:[^:]*:Goliath Tank:493B:/ +1570.2 "Convenient Self-Destruction" Ability { id: "493C", source: "Medium Exploder" } +1584.2 "Laser Turret" Ability { id: "493B", source: "Goliath Tank" } +1593.6 "Laser Turret" Ability { id: "493B", source: "Goliath Tank" } +1603.0 "Laser Turret" Ability { id: "493B", source: "Goliath Tank" } -1800.0 "--sync--" sync / 1[56]:[^:]*:Flight Unit:493D:/ window 300,0 +1800.0 "--sync--" Ability { id: "493D", source: "Flight Unit" } window 300,0 1810.0 "--targetable--" -1817.2 "--sync--" sync / 1[56]:[^:]*:Flight Unit:493F:/ -1821.7 "Area Bombing Maneuver" sync / 1[56]:[^:]*:Flight Unit:4942:/ duration 9.1 -1835.9 "360-Degree Bombing Maneuver" sync / 1[56]:[^:]*:Flight Unit:4941:/ -1851.3 "Lightfast Blade" sync / 1[56]:[^:]*:Flight Unit:4940:/ -1857.5 "--sync--" sync / 1[56]:[^:]*:Flight Unit:493F:/ -1861.8 "Area Bombing Maneuver" sync / 1[56]:[^:]*:Flight Unit:4942:/ duration 9.1 -1871.1 "Lightfast Blade" sync / 1[56]:[^:]*:Flight Unit:4940:/ -1873.2 "--jump--" sync / 1[56]:[^:]*:Flight Unit:493F:/ -1879.7 "Lightfast Blade" sync / 1[56]:[^:]*:Flight Unit:4940:/ -1888.8 "360-Degree Bombing Maneuver" sync / 1[56]:[^:]*:Flight Unit:4941:/ -1899.1 "360-Degree Bombing Maneuver" sync / 1[56]:[^:]*:Flight Unit:4941:/ -1918.5 "Lightfast Blade" sync / 1[56]:[^:]*:Flight Unit:4940:/ +1817.2 "--sync--" Ability { id: "493F", source: "Flight Unit" } +1821.7 "Area Bombing Maneuver" Ability { id: "4942", source: "Flight Unit" } duration 9.1 +1835.9 "360-Degree Bombing Maneuver" Ability { id: "4941", source: "Flight Unit" } +1851.3 "Lightfast Blade" Ability { id: "4940", source: "Flight Unit" } +1857.5 "--sync--" Ability { id: "493F", source: "Flight Unit" } +1861.8 "Area Bombing Maneuver" Ability { id: "4942", source: "Flight Unit" } duration 9.1 +1871.1 "Lightfast Blade" Ability { id: "4940", source: "Flight Unit" } +1873.2 "--jump--" Ability { id: "493F", source: "Flight Unit" } +1879.7 "Lightfast Blade" Ability { id: "4940", source: "Flight Unit" } +1888.8 "360-Degree Bombing Maneuver" Ability { id: "4941", source: "Flight Unit" } +1899.1 "360-Degree Bombing Maneuver" Ability { id: "4941", source: "Flight Unit" } +1918.5 "Lightfast Blade" Ability { id: "4940", source: "Flight Unit" } ### Engels @@ -234,88 +234,88 @@ hideall "--sync--" # One log has 472[6,7,7,A] as the four. Left as all random for now. # Forward Deck will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D52:/ window 2000,0 -2015.7 "Marx Smash L/R" sync / 1[56]:[^:]*:Engels:472[67]:/ window 2015.7,5 -2029.6 "Marx Smash R/L" sync / 1[56]:[^:]*:Engels:472[67]:/ -2044.4 "Precision Guided Missile" sync / 1[56]:[^:]*:Engels:4754:/ -2055.8 "Incendiary Bombing" sync / 1[56]:[^:]*:Engels:4739:/ -2070.5 "Guided Missile" sync / 1[56]:[^:]*:Engels:4736:/ duration 3.4 -2078.8 "Diffuse Laser" sync / 1[56]:[^:]*:Engels:4755:/ -2097.3 "Marx Smash Back" sync / 1[56]:[^:]*:Engels:472[AE]:/ -2115.9 "Marx Smash Front" sync / 1[56]:[^:]*:Engels:472[AE]:/ -2135.6 "Energy Barrage" sync / 1[56]:[^:]*:Engels:473C:/ -2143.4 "Laser Sight" sync / 1[56]:[^:]*:Engels:473A:/ -2154.1 "Energy Blast" sync / 1[56]:[^:]*:Engels:473E:/ -2156.7 "Surface Missile" sync / 1[56]:[^:]*:Engels:4733:/ -2171.6 "Precision Guided Missile" sync / 1[56]:[^:]*:Engels:4754:/ -2178.0 "Diffuse Laser" sync / 1[56]:[^:]*:Engels:4755:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D52" } window 2000,0 +2015.7 "Marx Smash L/R" Ability { id: "472[67]", source: "Engels" } window 2015.7,5 +2029.6 "Marx Smash R/L" Ability { id: "472[67]", source: "Engels" } +2044.4 "Precision Guided Missile" Ability { id: "4754", source: "Engels" } +2055.8 "Incendiary Bombing" Ability { id: "4739", source: "Engels" } +2070.5 "Guided Missile" Ability { id: "4736", source: "Engels" } duration 3.4 +2078.8 "Diffuse Laser" Ability { id: "4755", source: "Engels" } +2097.3 "Marx Smash Back" Ability { id: "472[AE]", source: "Engels" } +2115.9 "Marx Smash Front" Ability { id: "472[AE]", source: "Engels" } +2135.6 "Energy Barrage" Ability { id: "473C", source: "Engels" } +2143.4 "Laser Sight" Ability { id: "473A", source: "Engels" } +2154.1 "Energy Blast" Ability { id: "473E", source: "Engels" } +2156.7 "Surface Missile" Ability { id: "4733", source: "Engels" } +2171.6 "Precision Guided Missile" Ability { id: "4754", source: "Engels" } +2178.0 "Diffuse Laser" Ability { id: "4755", source: "Engels" } # TODO: Maybe time-based or hp-based? 2193.1 "--untargetable--" -2193.2 "--sync--" sync / 1[56]:[^:]*:Engels:473F:/ window 200,50 +2193.2 "--sync--" Ability { id: "473F", source: "Engels" } window 200,50 2197.0 "Adds" 2198.3 "--targetable--" # These arm lasers can get desynced. -2214.5 "Arm Laser" #sync / 1[56]:[^:]*:Reverse-jointed Goliath:4757:/ -2229.7 "Arm Laser" #sync / 1[56]:[^:]*:Reverse-jointed Goliath:4757:/ -2244.9 "Arm Laser" #sync / 1[56]:[^:]*:Reverse-jointed Goliath:4757:/ +2214.5 "Arm Laser" #Ability { id: "4757", source: "Reverse-jointed Goliath" } +2229.7 "Arm Laser" #Ability { id: "4757", source: "Reverse-jointed Goliath" } +2244.9 "Arm Laser" #Ability { id: "4757", source: "Reverse-jointed Goliath" } 2258.3 "Enrage" # 60 seconds ??? -2400.0 "Wide-Angle Diffuse Laser" sync / 1[56]:[^:]*:Engels:4740:/ window 200,0 -2402.1 "Diffuse Laser" sync / 1[56]:[^:]*:Engels:4741:/ -2412.2 "--sync--" sync / 1[56]:[^:]*:Engels:4743:/ -2433.0 "Demolish Structure" sync / 1[56]:[^:]*:Engels:4744:/ +2400.0 "Wide-Angle Diffuse Laser" Ability { id: "4740", source: "Engels" } window 200,0 +2402.1 "Diffuse Laser" Ability { id: "4741", source: "Engels" } +2412.2 "--sync--" Ability { id: "4743", source: "Engels" } +2433.0 "Demolish Structure" Ability { id: "4744", source: "Engels" } 2442.2 "--targetable--" -2448.2 "Marx Activation" sync / 1[56]:[^:]*:Engels:48A8:/ -2466.3 "Marx Thrust" sync / 1[56]:[^:]*:Marx:4756:/ -2476.3 "Marx Thrust" sync / 1[56]:[^:]*:Marx:4756:/ -2478.5 "Area Bombardment" sync / 1[56]:[^:]*:Engels:4750:/ -2486.3 "Marx Thrust" sync / 1[56]:[^:]*:Marx:4756:/ -2491.1 "Incendiary Bombing" sync / 1[56]:[^:]*:Engels:4739:/ -2505.1 "Guided Missile" sync / 1[56]:[^:]*:Engels:4736:/ -2511.4 "Diffuse Laser" sync / 1[56]:[^:]*:Engels:4755:/ -2529.2 "Incendiary Bombing" sync / 1[56]:[^:]*:Engels:4739:/ -2533.7 "Marx Smash" sync / 1[56]:[^:]*:Engels:472E:/ -2553.9 "Incendiary Bombing" sync / 1[56]:[^:]*:Engels:4739:/ -2558.5 "Marx Smash" sync / 1[56]:[^:]*:Engels:472A:/ -2572.5 "Incendiary Saturation Bombing" sync / 1[56]:[^:]*:Engels:474E:/ +2448.2 "Marx Activation" Ability { id: "48A8", source: "Engels" } +2466.3 "Marx Thrust" Ability { id: "4756", source: "Marx" } +2476.3 "Marx Thrust" Ability { id: "4756", source: "Marx" } +2478.5 "Area Bombardment" Ability { id: "4750", source: "Engels" } +2486.3 "Marx Thrust" Ability { id: "4756", source: "Marx" } +2491.1 "Incendiary Bombing" Ability { id: "4739", source: "Engels" } +2505.1 "Guided Missile" Ability { id: "4736", source: "Engels" } +2511.4 "Diffuse Laser" Ability { id: "4755", source: "Engels" } +2529.2 "Incendiary Bombing" Ability { id: "4739", source: "Engels" } +2533.7 "Marx Smash" Ability { id: "472E", source: "Engels" } +2553.9 "Incendiary Bombing" Ability { id: "4739", source: "Engels" } +2558.5 "Marx Smash" Ability { id: "472A", source: "Engels" } +2572.5 "Incendiary Saturation Bombing" Ability { id: "474E", source: "Engels" } 2581.2 "Crusher Adds" -2584.7 "Marx Crush" sync / 1[56]:[^:]*:Engels:4746:/ -2586.8 "Radiate Heat" sync / 1[56]:[^:]*:Engels:474C:/ -2586.8 "Radiate Heat" sync / 1[56]:[^:]*:Engels:474C:/ -2593.9 "Radiate Heat" sync / 1[56]:[^:]*:Engels:474C:/ -2600.0 "Crushing Wheel" sync / 1[56]:[^:]*:Marx [LR]:474B:/ -2600.7 "Radiate Heat" sync / 1[56]:[^:]*:Engels:474C:/ -2607.8 "Radiate Heat" sync / 1[56]:[^:]*:Engels:474C:/ -2614.1 "Crushing Wheel" sync / 1[56]:[^:]*:Marx [LR]:474B:/ +2584.7 "Marx Crush" Ability { id: "4746", source: "Engels" } +2586.8 "Radiate Heat" Ability { id: "474C", source: "Engels" } +2586.8 "Radiate Heat" Ability { id: "474C", source: "Engels" } +2593.9 "Radiate Heat" Ability { id: "474C", source: "Engels" } +2600.0 "Crushing Wheel" Ability { id: "474B", source: "Marx [LR]" } +2600.7 "Radiate Heat" Ability { id: "474C", source: "Engels" } +2607.8 "Radiate Heat" Ability { id: "474C", source: "Engels" } +2614.1 "Crushing Wheel" Ability { id: "474B", source: "Marx [LR]" } # guessing here for enrage ??? -2621.8 "Radiate Heat" sync / 1[56]:[^:]*:Engels:474C:/ -2625.2 "Crushing Wheel Enrage?" sync / 1[56]:[^:]*:Marx [LR]:474B:/ - -2700.0 "--targetable--" sync / 22:........:Engels:........:Engels:01/ window 150,0 -2706.2 "--sync--" sync / 14:[^:]*:Engels:4733:/ window 150,5 -2709.7 "Surface Missile" sync / 1[56]:[^:]*:Engels:4733:/ -2718.9 "Marx Smash" sync / 1[56]:[^:]*:Engels:472[67AE]:/ -2728.6 "Surface Missile" sync / 1[56]:[^:]*:Engels:4733:/ -2737.9 "Marx Smash" sync / 1[56]:[^:]*:Engels:472[67AE]:/ -2747.0 "Energy Barrage" sync / 1[56]:[^:]*:Engels:473C:/ -2754.8 "Laser Sight" sync / 1[56]:[^:]*:Engels:473A:/ -2765.5 "Energy Blast" sync / 1[56]:[^:]*:Engels:473E:/ -2768.1 "Surface Missile" sync / 1[56]:[^:]*:Engels:4733:/ -2776.8 "Diffuse Laser" sync / 1[56]:[^:]*:Engels:4755:/ -2790.6 "Precision Guided Missile" sync / 1[56]:[^:]*:Engels:4754:/ -2795.0 "Diffuse Laser" sync / 1[56]:[^:]*:Engels:4755:/ -2816.3 "Surface Missile" sync / 1[56]:[^:]*:Engels:4733:/ -2825.5 "Marx Smash" sync / 1[56]:[^:]*:Engels:472[67AE]:/ -2840.7 "Incendiary Bombing" sync / 1[56]:[^:]*:Engels:4739:/ -2845.5 "Marx Smash" sync / 1[56]:[^:]*:Engels:472[67AE]:/ +2621.8 "Radiate Heat" Ability { id: "474C", source: "Engels" } +2625.2 "Crushing Wheel Enrage?" Ability { id: "474B", source: "Marx [LR]" } + +2700.0 "--targetable--" NameToggle { name: "Engels", toggle: "01" } window 150,0 +2706.2 "--sync--" StartsUsing { id: "4733", source: "Engels" } window 150,5 +2709.7 "Surface Missile" Ability { id: "4733", source: "Engels" } +2718.9 "Marx Smash" Ability { id: "472[67AE]", source: "Engels" } +2728.6 "Surface Missile" Ability { id: "4733", source: "Engels" } +2737.9 "Marx Smash" Ability { id: "472[67AE]", source: "Engels" } +2747.0 "Energy Barrage" Ability { id: "473C", source: "Engels" } +2754.8 "Laser Sight" Ability { id: "473A", source: "Engels" } +2765.5 "Energy Blast" Ability { id: "473E", source: "Engels" } +2768.1 "Surface Missile" Ability { id: "4733", source: "Engels" } +2776.8 "Diffuse Laser" Ability { id: "4755", source: "Engels" } +2790.6 "Precision Guided Missile" Ability { id: "4754", source: "Engels" } +2795.0 "Diffuse Laser" Ability { id: "4755", source: "Engels" } +2816.3 "Surface Missile" Ability { id: "4733", source: "Engels" } +2825.5 "Marx Smash" Ability { id: "472[67AE]", source: "Engels" } +2840.7 "Incendiary Bombing" Ability { id: "4739", source: "Engels" } +2845.5 "Marx Smash" Ability { id: "472[67AE]", source: "Engels" } # TODO: it is unclear if this is the actual loop. # The log needs to be about ~14 min to verify if the # crusher phase happens again or if that's a one time thing. -2859.3 "Marx Activation" sync / 1[56]:[^:]*:Engels:48A8:/ window 200,200 jump 2448.2 +2859.3 "Marx Activation" Ability { id: "48A8", source: "Engels" } window 200,200 jump 2448.2 2877.4 "Marx Thrust" 2887.4 "Marx Thrust" 2889.6 "Area Bombardment" @@ -327,48 +327,48 @@ hideall "--sync--" ### 9S # -ic 2P -p 48F5:3013.3 48E7:3310 48EB:3510 -ii 49C4 48F9 48F7 48DC 485E 48E3 48E6 48E0 48EC 48A5 48A7 48D6 4ABE # Rear Deck will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D53:/ window 3000,0 -3013.3 "Neutralization" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F5:/ window 3013.3,10 -3021.5 "Laser Saturation" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F6:/ -3030.2 "Laser Turret" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4A74:/ -3039.7 "Ground-To-Ground Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4974:/ -3049.3 "Cannons" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D[EF]:/ -3056.5 "Cannons" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D[EF]:/ -3065.7 "Engage Marx Support" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D3:/ -3081.9 "Marx Impact" sync / 1[56]:[^:]*:Marx:48D4:/ -3087.5 "Ground-To-Ground Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4974:/ -3088.8 "Laser Turret" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4A74:/ -3094.7 "Laser Saturation" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F6:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D53" } window 3000,0 +3013.3 "Neutralization" Ability { id: "48F5", source: "9S-Operated Walking Fortress" } window 3013.3,10 +3021.5 "Laser Saturation" Ability { id: "48F6", source: "9S-Operated Walking Fortress" } +3030.2 "Laser Turret" Ability { id: "4A74", source: "9S-Operated Walking Fortress" } +3039.7 "Ground-To-Ground Missile" Ability { id: "4974", source: "9S-Operated Walking Fortress" } +3049.3 "Cannons" Ability { id: "48D[EF]", source: "9S-Operated Walking Fortress" } +3056.5 "Cannons" Ability { id: "48D[EF]", source: "9S-Operated Walking Fortress" } +3065.7 "Engage Marx Support" Ability { id: "48D3", source: "9S-Operated Walking Fortress" } +3081.9 "Marx Impact" Ability { id: "48D4", source: "Marx" } +3087.5 "Ground-To-Ground Missile" Ability { id: "4974", source: "9S-Operated Walking Fortress" } +3088.8 "Laser Turret" Ability { id: "4A74", source: "9S-Operated Walking Fortress" } +3094.7 "Laser Saturation" Ability { id: "48F6", source: "9S-Operated Walking Fortress" } # Dodging Phase 3108.2 "--untargetable--" -3108.2 "Undock" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4B37:/ -3108.5 "--sync--" sync / 1[56]:[^:]*:9S-Operated Flight Unit:4A5D:/ -3123.6 "--sync--" sync / 1[56]:[^:]*:9S-Operated Flight Unit:48D8:/ -3125.7 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D9:/ -3128.2 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DA:/ -3130.7 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DB:/ -3136.7 "--sync--" sync / 1[56]:[^:]*:9S-Operated Flight Unit:4B17:/ -3138.9 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D9:/ -3141.4 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DA:/ -3143.9 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DB:/ -3146.8 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DD:/ +3108.2 "Undock" Ability { id: "4B37", source: "9S-Operated Walking Fortress" } +3108.5 "--sync--" Ability { id: "4A5D", source: "9S-Operated Flight Unit" } +3123.6 "--sync--" Ability { id: "48D8", source: "9S-Operated Flight Unit" } +3125.7 "--sync--" Ability { id: "48D9", source: "9S-Operated Walking Fortress" } +3128.2 "--sync--" Ability { id: "48DA", source: "9S-Operated Walking Fortress" } +3130.7 "--sync--" Ability { id: "48DB", source: "9S-Operated Walking Fortress" } +3136.7 "--sync--" Ability { id: "4B17", source: "9S-Operated Flight Unit" } +3138.9 "--sync--" Ability { id: "48D9", source: "9S-Operated Walking Fortress" } +3141.4 "--sync--" Ability { id: "48DA", source: "9S-Operated Walking Fortress" } +3143.9 "--sync--" Ability { id: "48DB", source: "9S-Operated Walking Fortress" } +3146.8 "--sync--" Ability { id: "48DD", source: "9S-Operated Walking Fortress" } 3151.7 "--targetable--" -3152.0 "--sync--" sync / 14:[^:]*:9S-Operated Walking Fortress:48F5:/ -3156.0 "Neutralization" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F5:/ -3170.7 "Anti-Personnel Missile" #sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E4:/ -3172.7 "Anti-Personnel Missile" #sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E4:/ -3178.3 "Laser Turret" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4A74:/ +3152.0 "--sync--" StartsUsing { id: "48F5", source: "9S-Operated Walking Fortress" } +3156.0 "Neutralization" Ability { id: "48F5", source: "9S-Operated Walking Fortress" } +3170.7 "Anti-Personnel Missile" #Ability { id: "48E4", source: "9S-Operated Walking Fortress" } +3172.7 "Anti-Personnel Missile" #Ability { id: "48E4", source: "9S-Operated Walking Fortress" } +3178.3 "Laser Turret" Ability { id: "4A74", source: "9S-Operated Walking Fortress" } # Tank Adds -3187.6 "Engage Goliath Tank Support" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E5:/ +3187.6 "Engage Goliath Tank Support" Ability { id: "48E5", source: "9S-Operated Walking Fortress" } 3190.8 "Tank Adds" -3196.9 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F8:/ -3202.5 "Ground-To-Ground Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4974:/ -3209.2 "Laser Saturation" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F6:/ +3196.9 "--sync--" Ability { id: "48F8", source: "9S-Operated Walking Fortress" } +3202.5 "Ground-To-Ground Missile" Ability { id: "4974", source: "9S-Operated Walking Fortress" } +3209.2 "Laser Saturation" Ability { id: "48F6", source: "9S-Operated Walking Fortress" } -3217.4 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F8:/ window 10,10 jump 3196.9 +3217.4 "--sync--" Ability { id: "48F8", source: "9S-Operated Walking Fortress" } window 10,10 jump 3196.9 3223.0 "Ground-To-Ground Missile" 3229.7 "Laser Saturation" @@ -379,81 +379,81 @@ hideall "--sync--" 3270.7 "Laser Saturation" # Tank Explosions -3300.0 "--sync--" sync / 14:[^:]*:9S-Operated Walking Fortress:48E7:/ window 200,0 -3310.0 "Hack Goliath Tank" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E7:/ -3310.0 "Convenient Self-Destruction" sync / 1[56]:[^:]*:Goliath Tank:48E8:/ -3313.2 "Ground-To-Ground Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F8:/ -3318.9 "Convenient Self-Destruction" sync / 1[56]:[^:]*:Goliath Tank:48E9:/ -3325.4 "Cannons" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D[EF]:/ -3336.5 "Laser Saturation" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F6:/ -3342.6 "Neutralization" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F5:/ +3300.0 "--sync--" StartsUsing { id: "48E7", source: "9S-Operated Walking Fortress" } window 200,0 +3310.0 "Hack Goliath Tank" Ability { id: "48E7", source: "9S-Operated Walking Fortress" } +3310.0 "Convenient Self-Destruction" Ability { id: "48E8", source: "Goliath Tank" } +3313.2 "Ground-To-Ground Missile" Ability { id: "48F8", source: "9S-Operated Walking Fortress" } +3318.9 "Convenient Self-Destruction" Ability { id: "48E9", source: "Goliath Tank" } +3325.4 "Cannons" Ability { id: "48D[EF]", source: "9S-Operated Walking Fortress" } +3336.5 "Laser Saturation" Ability { id: "48F6", source: "9S-Operated Walking Fortress" } +3342.6 "Neutralization" Ability { id: "48F5", source: "9S-Operated Walking Fortress" } # Three Adds # Adds independently can do Sidestriking or Centrifugal spin. 3353.5 "--untargetable--" -3353.6 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48EA:/ +3353.6 "--sync--" Ability { id: "48EA", source: "9S-Operated Walking Fortress" } 3360.0 "Serial-Jointed Adds" 3362.7 "--targetable--" -3379.8 "Clanging Blow" sync / 1[56]:[^:]*:Serial-jointed Service Model:48F0:/ -3392.0 "Shrapnel Impact" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F3:/ -3398.0 "Spin" sync / 1[56]:[^:]*:Serial-jointed Service Model:4A8[46]:/ -3407.1 "Clanging Blow" sync / 1[56]:[^:]*:Serial-jointed Service Model:48F0:/ -3421.4 "Shrapnel Impact" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F3:/ -3422.3 "Spin" sync / 1[56]:[^:]*:Serial-jointed Service Model:4A8[46]:/ +3379.8 "Clanging Blow" Ability { id: "48F0", source: "Serial-jointed Service Model" } +3392.0 "Shrapnel Impact" Ability { id: "48F3", source: "9S-Operated Walking Fortress" } +3398.0 "Spin" Ability { id: "4A8[46]", source: "Serial-jointed Service Model" } +3407.1 "Clanging Blow" Ability { id: "48F0", source: "Serial-jointed Service Model" } +3421.4 "Shrapnel Impact" Ability { id: "48F3", source: "9S-Operated Walking Fortress" } +3422.3 "Spin" Ability { id: "4A8[46]", source: "Serial-jointed Service Model" } 3432.7 "Enrage?" # 70s ??? -3500.0 "--sync--" sync / 14:[^:]*:9S-Operated Walking Fortress:48EB:/ window 300,0 -3510.0 "Total Annihilation Maneuver" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48EB:/ +3500.0 "--sync--" StartsUsing { id: "48EB", source: "9S-Operated Walking Fortress" } window 300,0 +3510.0 "Total Annihilation Maneuver" Ability { id: "48EB", source: "9S-Operated Walking Fortress" } 3520.0 "--targetable--" -3530.1 "Neutralization" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F5:/ -3541.9 "Ground-To-Ground Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4974:/ -3543.2 "Laser Turret" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4A74:/ -3562.0 "Anti-Personnel Missile" # sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E4:/ -3564.0 "Anti-Personnel Missile" # sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E4:/ -3566.0 "Anti-Personnel Missile" # sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E4:/ -3573.0 "Cannons" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D[EF]:/ -3581.1 "Laser Saturation" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F6:/ +3530.1 "Neutralization" Ability { id: "48F5", source: "9S-Operated Walking Fortress" } +3541.9 "Ground-To-Ground Missile" Ability { id: "4974", source: "9S-Operated Walking Fortress" } +3543.2 "Laser Turret" Ability { id: "4A74", source: "9S-Operated Walking Fortress" } +3562.0 "Anti-Personnel Missile" # Ability { id: "48E4", source: "9S-Operated Walking Fortress" } +3564.0 "Anti-Personnel Missile" # Ability { id: "48E4", source: "9S-Operated Walking Fortress" } +3566.0 "Anti-Personnel Missile" # Ability { id: "48E4", source: "9S-Operated Walking Fortress" } +3573.0 "Cannons" Ability { id: "48D[EF]", source: "9S-Operated Walking Fortress" } +3581.1 "Laser Saturation" Ability { id: "48F6", source: "9S-Operated Walking Fortress" } 3591.1 "--untargetable--" -3591.1 "Undock" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D5:/ -3600.3 "--sync--" sync / 1[56]:[^:]*:9S-Operated Flight Unit:48D8:/ -3602.4 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D9:/ -3604.9 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DA:/ -3607.4 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DB:/ -3611.4 "Anti-Personnel Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4B11:/ -3614.6 "--sync--" sync / 1[56]:[^:]*:9S-Operated Flight Unit:48D8:/ -3616.7 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D9:/ -3619.2 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DA:/ -3621.7 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DB:/ -3627.6 "Anti-Personnel Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4B11:/ -3628.7 "--sync--" sync / 1[56]:[^:]*:9S-Operated Flight Unit:4B17:/ -3630.8 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D9:/ -3633.3 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DA:/ -3635.8 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DB:/ -3638.8 "--sync--" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48DD:/ +3591.1 "Undock" Ability { id: "48D5", source: "9S-Operated Walking Fortress" } +3600.3 "--sync--" Ability { id: "48D8", source: "9S-Operated Flight Unit" } +3602.4 "--sync--" Ability { id: "48D9", source: "9S-Operated Walking Fortress" } +3604.9 "--sync--" Ability { id: "48DA", source: "9S-Operated Walking Fortress" } +3607.4 "--sync--" Ability { id: "48DB", source: "9S-Operated Walking Fortress" } +3611.4 "Anti-Personnel Missile" Ability { id: "4B11", source: "9S-Operated Walking Fortress" } +3614.6 "--sync--" Ability { id: "48D8", source: "9S-Operated Flight Unit" } +3616.7 "--sync--" Ability { id: "48D9", source: "9S-Operated Walking Fortress" } +3619.2 "--sync--" Ability { id: "48DA", source: "9S-Operated Walking Fortress" } +3621.7 "--sync--" Ability { id: "48DB", source: "9S-Operated Walking Fortress" } +3627.6 "Anti-Personnel Missile" Ability { id: "4B11", source: "9S-Operated Walking Fortress" } +3628.7 "--sync--" Ability { id: "4B17", source: "9S-Operated Flight Unit" } +3630.8 "--sync--" Ability { id: "48D9", source: "9S-Operated Walking Fortress" } +3633.3 "--sync--" Ability { id: "48DA", source: "9S-Operated Walking Fortress" } +3635.8 "--sync--" Ability { id: "48DB", source: "9S-Operated Walking Fortress" } +3638.8 "--sync--" Ability { id: "48DD", source: "9S-Operated Walking Fortress" } 3643.8 "--targetable--" -3643.9 "--sync--" sync / 14:[^:]*:9S-Operated Walking Fortress:48F6:/ window 10,10 -3647.9 "Laser Saturation" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F6:/ -3659.3 "Engage Marx Support" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D3:/ -3674.5 "Ground-To-Ground Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F8:/ -3675.6 "Marx Impact" sync / 1[56]:[^:]*:Marx:48D4:/ -3681.6 "Cannons" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D[EF]:/ -3693.9 "Neutralization" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F5:/ -3705.7 "Ground-To-Ground Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4974:/ -3706.9 "Laser Turret" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4A74:/ -3724.3 "Anti-Personnel Missile" #sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E4:/ -3726.3 "Anti-Personnel Missile" #sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E4:/ -3728.3 "Anti-Personnel Missile" #sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48E4:/ -3735.4 "Cannons" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D[EF]:/ -3743.5 "Laser Saturation" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F6:/ -3755.3 "Ground-To-Ground Missile" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4974:/ -3756.5 "Laser Turret" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:4A74:/ -3763.4 "Cannons" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D[EF]:/ -3773.5 "Neutralization" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F5:/ -3783.6 "Laser Saturation" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48F6:/ - -3794.8 "Engage Marx Support" sync / 1[56]:[^:]*:9S-Operated Walking Fortress:48D3:/ window 100,100 jump 3659.3 +3643.9 "--sync--" StartsUsing { id: "48F6", source: "9S-Operated Walking Fortress" } window 10,10 +3647.9 "Laser Saturation" Ability { id: "48F6", source: "9S-Operated Walking Fortress" } +3659.3 "Engage Marx Support" Ability { id: "48D3", source: "9S-Operated Walking Fortress" } +3674.5 "Ground-To-Ground Missile" Ability { id: "48F8", source: "9S-Operated Walking Fortress" } +3675.6 "Marx Impact" Ability { id: "48D4", source: "Marx" } +3681.6 "Cannons" Ability { id: "48D[EF]", source: "9S-Operated Walking Fortress" } +3693.9 "Neutralization" Ability { id: "48F5", source: "9S-Operated Walking Fortress" } +3705.7 "Ground-To-Ground Missile" Ability { id: "4974", source: "9S-Operated Walking Fortress" } +3706.9 "Laser Turret" Ability { id: "4A74", source: "9S-Operated Walking Fortress" } +3724.3 "Anti-Personnel Missile" #Ability { id: "48E4", source: "9S-Operated Walking Fortress" } +3726.3 "Anti-Personnel Missile" #Ability { id: "48E4", source: "9S-Operated Walking Fortress" } +3728.3 "Anti-Personnel Missile" #Ability { id: "48E4", source: "9S-Operated Walking Fortress" } +3735.4 "Cannons" Ability { id: "48D[EF]", source: "9S-Operated Walking Fortress" } +3743.5 "Laser Saturation" Ability { id: "48F6", source: "9S-Operated Walking Fortress" } +3755.3 "Ground-To-Ground Missile" Ability { id: "4974", source: "9S-Operated Walking Fortress" } +3756.5 "Laser Turret" Ability { id: "4A74", source: "9S-Operated Walking Fortress" } +3763.4 "Cannons" Ability { id: "48D[EF]", source: "9S-Operated Walking Fortress" } +3773.5 "Neutralization" Ability { id: "48F5", source: "9S-Operated Walking Fortress" } +3783.6 "Laser Saturation" Ability { id: "48F6", source: "9S-Operated Walking Fortress" } + +3794.8 "Engage Marx Support" Ability { id: "48D3", source: "9S-Operated Walking Fortress" } window 100,100 jump 3659.3 3810.0 "Ground-To-Ground Missile" 3811.1 "Marx Impact" 3817.1 "Cannons" diff --git a/ui/raidboss/data/05-shb/alliance/the_puppets_bunker.txt b/ui/raidboss/data/05-shb/alliance/the_puppets_bunker.txt index b7b0cc262f..2fa01e9eb4 100644 --- a/ui/raidboss/data/05-shb/alliance/the_puppets_bunker.txt +++ b/ui/raidboss/data/05-shb/alliance/the_puppets_bunker.txt @@ -7,125 +7,125 @@ hideall "--sync--" # -p 508D:112.8 -ii 5074 5075 5076 5091 5092 5081 5099 507E 5090 51BC # Elevated Detritus will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DB0:/ window 100,0 -112.8 "Firing Order: Anti-Personnel Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508D:/ window 112.8,20 -125.1 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[789A]:/ -140.1 "Maneuver: Beam Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:5073:/ -158.4 "Maneuver: Collider Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[BCD]:/ -170.6 "Firing Order: Surface Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508E:/ -177.7 "Aerial Support: Swoop" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:50D2:/ -187.8 "Flight Path" sync / 1[56]:[^:]*:Flight Unit:508C:/ -197.9 "Maneuver: Refraction Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:(507F|5080):/ -206.2 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[789A]:/ -220.2 "Maneuver: Beam Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:5073:/ -239.6 "Aerial Support: Bombardment" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:50D3:/ +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DB0" } window 100,0 +112.8 "Firing Order: Anti-Personnel Laser" Ability { id: "508D", source: "813P-Operated Aegis Unit" } window 112.8,20 +125.1 "--sync--" Ability { id: "507[789A]", source: "813P-Operated Aegis Unit" } +140.1 "Maneuver: Beam Cannons" Ability { id: "5073", source: "813P-Operated Aegis Unit" } +158.4 "Maneuver: Collider Cannons" Ability { id: "507[BCD]", source: "813P-Operated Aegis Unit" } +170.6 "Firing Order: Surface Laser" Ability { id: "508E", source: "813P-Operated Aegis Unit" } +177.7 "Aerial Support: Swoop" Ability { id: "50D2", source: "813P-Operated Aegis Unit" } +187.8 "Flight Path" Ability { id: "508C", source: "Flight Unit" } +197.9 "Maneuver: Refraction Cannons" Ability { id: ["507F", "5080"], source: "813P-Operated Aegis Unit" } +206.2 "--sync--" Ability { id: "507[789A]", source: "813P-Operated Aegis Unit" } +220.2 "Maneuver: Beam Cannons" Ability { id: "5073", source: "813P-Operated Aegis Unit" } +239.6 "Aerial Support: Bombardment" Ability { id: "50D3", source: "813P-Operated Aegis Unit" } 244.4 "--adds targetable--" -249.8 "Firing Order: Surface Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508E:/ -256.0 "Firing Order: High-Powered Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508F:/ -263.3 "High-Powered Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:5093:/ -269.5 "Maneuver: Saturation Bombing?" sync / 1[56]:[^:]*:Flight Unit:5097:/ +249.8 "Firing Order: Surface Laser" Ability { id: "508E", source: "813P-Operated Aegis Unit" } +256.0 "Firing Order: High-Powered Laser" Ability { id: "508F", source: "813P-Operated Aegis Unit" } +263.3 "High-Powered Laser" Ability { id: "5093", source: "813P-Operated Aegis Unit" } +269.5 "Maneuver: Saturation Bombing?" Ability { id: "5097", source: "Flight Unit" } # Singing Rotation 1 -280.3 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -287.8 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -288.3 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -295.8 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -296.3 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -303.8 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -309.3 "Aerial Support: Swoop" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:50D2:/ -317.4 "Maneuver: Refraction Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:(507F|5080):/ -319.4 "Flight Path" sync / 1[56]:[^:]*:Flight Unit:508C:/ -328.5 "Firing Order: Surface Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508E:/ -330.7 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[789A]:/ -345.7 "Maneuver: Beam Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:5073:/ -349.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ +280.3 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +287.8 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +288.3 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +295.8 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +296.3 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +303.8 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +309.3 "Aerial Support: Swoop" Ability { id: "50D2", source: "813P-Operated Aegis Unit" } +317.4 "Maneuver: Refraction Cannons" Ability { id: ["507F", "5080"], source: "813P-Operated Aegis Unit" } +319.4 "Flight Path" Ability { id: "508C", source: "Flight Unit" } +328.5 "Firing Order: Surface Laser" Ability { id: "508E", source: "813P-Operated Aegis Unit" } +330.7 "--sync--" Ability { id: "507[789A]", source: "813P-Operated Aegis Unit" } +345.7 "Maneuver: Beam Cannons" Ability { id: "5073", source: "813P-Operated Aegis Unit" } +349.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } # Singing Rotation 2 -354.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -357.3 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -359.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -362.3 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -364.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -367.3 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -369.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -372.3 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -377.3 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -382.8 "Aerial Support: Swoop" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:50D2:/ -392.9 "Flight Path" sync / 1[56]:[^:]*:Flight Unit:508C:/ -394.4 "Maneuver: Collider Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[BCD]:/ -411.7 "Firing Order: Anti-Personnel Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508D:/ -422.3 "Maneuver: Collider Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[BCD]:/ -441.6 "Firing Order: Surface Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508E:/ -443.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[789A]:/ -458.8 "Maneuver: Beam Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:5073:/ -462.9 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ +354.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +357.3 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +359.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +362.3 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +364.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +367.3 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +369.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +372.3 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +377.3 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +382.8 "Aerial Support: Swoop" Ability { id: "50D2", source: "813P-Operated Aegis Unit" } +392.9 "Flight Path" Ability { id: "508C", source: "Flight Unit" } +394.4 "Maneuver: Collider Cannons" Ability { id: "507[BCD]", source: "813P-Operated Aegis Unit" } +411.7 "Firing Order: Anti-Personnel Laser" Ability { id: "508D", source: "813P-Operated Aegis Unit" } +422.3 "Maneuver: Collider Cannons" Ability { id: "507[BCD]", source: "813P-Operated Aegis Unit" } +441.6 "Firing Order: Surface Laser" Ability { id: "508E", source: "813P-Operated Aegis Unit" } +443.8 "--sync--" Ability { id: "507[789A]", source: "813P-Operated Aegis Unit" } +458.8 "Maneuver: Beam Cannons" Ability { id: "5073", source: "813P-Operated Aegis Unit" } +462.9 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } # Singing Rotation Loop -467.9 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -470.3 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -472.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -475.3 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -477.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -480.3 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -482.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -485.2 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -490.2 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -495.7 "Aerial Support: Swoop" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:50D2:/ -503.8 "Maneuver: Refraction Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:(507F|5080):/ -505.8 "Flight Path" sync / 1[56]:[^:]*:Flight Unit:508C:/ -521.1 "Firing Order: Anti-Personnel Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508D:/ -531.1 "Maneuver: Collider Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[BCD]:/ -550.5 "Firing Order: Surface Laser" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508E:/ -552.7 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[789A]:/ -566.7 "Maneuver: Beam Cannons" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:5073:/ -570.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ +467.9 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +470.3 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +472.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +475.3 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +477.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +480.3 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +482.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +485.2 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +490.2 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +495.7 "Aerial Support: Swoop" Ability { id: "50D2", source: "813P-Operated Aegis Unit" } +503.8 "Maneuver: Refraction Cannons" Ability { id: ["507F", "5080"], source: "813P-Operated Aegis Unit" } +505.8 "Flight Path" Ability { id: "508C", source: "Flight Unit" } +521.1 "Firing Order: Anti-Personnel Laser" Ability { id: "508D", source: "813P-Operated Aegis Unit" } +531.1 "Maneuver: Collider Cannons" Ability { id: "507[BCD]", source: "813P-Operated Aegis Unit" } +550.5 "Firing Order: Surface Laser" Ability { id: "508E", source: "813P-Operated Aegis Unit" } +552.7 "--sync--" Ability { id: "507[789A]", source: "813P-Operated Aegis Unit" } +566.7 "Maneuver: Beam Cannons" Ability { id: "5073", source: "813P-Operated Aegis Unit" } +570.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } # lookahead loop -575.8 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -578.2 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -580.7 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -583.2 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -585.7 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -588.2 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -590.7 "--sync--" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ -593.1 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -598.1 "Life's Last Song" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B3:/ -603.6 "Aerial Support: Swoop" sync / 1[56]:[^:]*:813P-Operated Aegis Unit:50D2:/ window 100,100 jump 495.7 -611.7 "Maneuver: Refraction Cannons" #sync / 1[56]:[^:]*:813P-Operated Aegis Unit:(507F|5080):/ -613.7 "Flight Path" #sync / 1[56]:[^:]*:Flight Unit:508C:/ -629.0 "Firing Order: Anti-Personnel Laser" #sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508D:/ -639.0 "Maneuver: Collider Cannons" #sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[BCD]:/ -658.4 "Firing Order: Surface Laser" #sync / 1[56]:[^:]*:813P-Operated Aegis Unit:508E:/ -660.6 "--sync--" #sync / 1[56]:[^:]*:813P-Operated Aegis Unit:507[789A]:/ -674.6 "Maneuver: Beam Cannons" #sync / 1[56]:[^:]*:813P-Operated Aegis Unit:5073:/ -678.7 "--sync--" #sync / 1[56]:[^:]*:813P-Operated Aegis Unit:53B2:/ +575.8 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +578.2 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +580.7 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +583.2 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +585.7 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +588.2 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +590.7 "--sync--" Ability { id: "53B2", source: "813P-Operated Aegis Unit" } +593.1 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +598.1 "Life's Last Song" Ability { id: "53B3", source: "813P-Operated Aegis Unit" } +603.6 "Aerial Support: Swoop" Ability { id: "50D2", source: "813P-Operated Aegis Unit" } window 100,100 jump 495.7 +611.7 "Maneuver: Refraction Cannons" #Ability { id: ["507F", "5080"], source: "813P-Operated Aegis Unit" } +613.7 "Flight Path" #Ability { id: "508C", source: "Flight Unit" } +629.0 "Firing Order: Anti-Personnel Laser" #Ability { id: "508D", source: "813P-Operated Aegis Unit" } +639.0 "Maneuver: Collider Cannons" #Ability { id: "507[BCD]", source: "813P-Operated Aegis Unit" } +658.4 "Firing Order: Surface Laser" #Ability { id: "508E", source: "813P-Operated Aegis Unit" } +660.6 "--sync--" #Ability { id: "507[789A]", source: "813P-Operated Aegis Unit" } +674.6 "Maneuver: Beam Cannons" #Ability { id: "5073", source: "813P-Operated Aegis Unit" } +678.7 "--sync--" #Ability { id: "53B2", source: "813P-Operated Aegis Unit" } ### Light Artillery Unit x3 and friends # -ic "Yorha Close-Combat Unit: Spear" "Yorha Close-Combat Unit: Blade" "Yorha Close-Combat Unit: Martial" # -p 5212:1013.9 -ii 5214 # Sunken Detritus will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DB1:/ window 1000,0 -1013.9 "Maneuver: Long-Barreled Laser" sync / 1[56]:[^:]*:Light Artillery Unit:5212:/ window 1013.9,20 -1025.7 "Maneuver: Volt Array" sync / 1[56]:[^:]*:Light Artillery Unit:5211:/ -1036.0 "Authorization: No Restrictions" sync / 1[56]:[^:]*:Light Artillery Unit:520E:/ -1041.7 "Surface Missile Impact" sync / 1[56]:[^:]*:Light Artillery Unit:520F:/ -1043.7 "Homing Missile Impact" sync / 1[56]:[^:]*:Light Artillery Unit:5210:/ - -1052.7 "Maneuver: Long-Barreled Laser" sync / 1[56]:[^:]*:Light Artillery Unit:5212:/ -1059.5 "Maneuver: Long-Barreled Laser" sync / 1[56]:[^:]*:Light Artillery Unit:5212:/ -1070.2 "Maneuver: Volt Array" sync / 1[56]:[^:]*:Light Artillery Unit:5211:/ -1086.7 "Maneuver: Martial Arm" sync / 1[56]:[^:]*:Light Artillery Unit:5213:/ -1097.1 "Maneuver: Martial Arm" sync / 1[56]:[^:]*:Light Artillery Unit:5213:/ -1103.5 "Maneuver: Long-Barreled Laser" sync / 1[56]:[^:]*:Light Artillery Unit:5212:/ - -1103.7 "Maneuver: Long-Barreled Laser" sync / 1[56]:[^:]*:Light Artillery Unit:5212:/ -1119.6 "Maneuver: Volt Array" sync / 1[56]:[^:]*:Light Artillery Unit:5211:/ -1129.9 "Authorization: No Restrictions" sync / 1[56]:[^:]*:Light Artillery Unit:520E:/ window 50,50 jump 1036.0 -1135.6 "Surface Missile Impact" #sync / 1[56]:[^:]*:Light Artillery Unit:520F:/ -1137.6 "Homing Missile Impact" #sync / 1[56]:[^:]*:Light Artillery Unit:5210:/ -1153.7 "Initiate Self-Destruct" #sync / 1[56]:[^:]*:Light Artillery Unit:5215:/ -1153.7 "Initiate Self-Destruct" #sync / 1[56]:[^:]*:Light Artillery Unit:5215:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DB1" } window 1000,0 +1013.9 "Maneuver: Long-Barreled Laser" Ability { id: "5212", source: "Light Artillery Unit" } window 1013.9,20 +1025.7 "Maneuver: Volt Array" Ability { id: "5211", source: "Light Artillery Unit" } +1036.0 "Authorization: No Restrictions" Ability { id: "520E", source: "Light Artillery Unit" } +1041.7 "Surface Missile Impact" Ability { id: "520F", source: "Light Artillery Unit" } +1043.7 "Homing Missile Impact" Ability { id: "5210", source: "Light Artillery Unit" } + +1052.7 "Maneuver: Long-Barreled Laser" Ability { id: "5212", source: "Light Artillery Unit" } +1059.5 "Maneuver: Long-Barreled Laser" Ability { id: "5212", source: "Light Artillery Unit" } +1070.2 "Maneuver: Volt Array" Ability { id: "5211", source: "Light Artillery Unit" } +1086.7 "Maneuver: Martial Arm" Ability { id: "5213", source: "Light Artillery Unit" } +1097.1 "Maneuver: Martial Arm" Ability { id: "5213", source: "Light Artillery Unit" } +1103.5 "Maneuver: Long-Barreled Laser" Ability { id: "5212", source: "Light Artillery Unit" } + +1103.7 "Maneuver: Long-Barreled Laser" Ability { id: "5212", source: "Light Artillery Unit" } +1119.6 "Maneuver: Volt Array" Ability { id: "5211", source: "Light Artillery Unit" } +1129.9 "Authorization: No Restrictions" Ability { id: "520E", source: "Light Artillery Unit" } window 50,50 jump 1036.0 +1135.6 "Surface Missile Impact" #Ability { id: "520F", source: "Light Artillery Unit" } +1137.6 "Homing Missile Impact" #Ability { id: "5210", source: "Light Artillery Unit" } +1153.7 "Initiate Self-Destruct" #Ability { id: "5215", source: "Light Artillery Unit" } +1153.7 "Initiate Self-Destruct" #Ability { id: "5215", source: "Light Artillery Unit" } ### Superior Flight Unit Swordy Boi Trio @@ -139,84 +139,84 @@ hideall "--sync--" # * however, syncing against multiple planes simultaneously might cause timeline jitter # Launch Deck will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DB2:/ window 2000,0 -2005.1 "Apply Shield Protocol" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FA6:/ window 2005.1,20 -2018.3 "Maneuver: Missile Command" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBD:/ -2031.5 "Maneuver: Incendiary Bombing" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC3:/ -2040.7 "Maneuver: High-Powered Laser" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB4:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DB2" } window 2000,0 +2005.1 "Apply Shield Protocol" Ability { id: "4FA6", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } window 2005.1,20 +2018.3 "Maneuver: Missile Command" Ability { id: "4FBD", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2031.5 "Maneuver: Incendiary Bombing" Ability { id: "4FC3", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2040.7 "Maneuver: High-Powered Laser" Ability { id: "4FB4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } -2060.4 "Formation: Sharp Turn" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FAB:/ -2073.6 "Sharp Turn" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FA[9A]:/ +2060.4 "Formation: Sharp Turn" Ability { id: "4FAB", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2073.6 "Sharp Turn" Ability { id: "4FA[9A]", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } -2090.4 "Maneuver: Precision Guided Missile" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC4:/ -2104.7 "Formation: Air Raid" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB0:/ +2090.4 "Maneuver: Precision Guided Missile" Ability { id: "4FC4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2104.7 "Formation: Air Raid" Ability { id: "4FB0", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } # Technically 2 missiles (4FB1/4FB2) come out during the 2.2s before this cast?? -2114.0 "Lethal Revolution" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB3:/ duration 5.8 +2114.0 "Lethal Revolution" Ability { id: "4FB3", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } duration 5.8 -2142.4 "Formation: Sliding Swipe" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FAE:/ +2142.4 "Formation: Sliding Swipe" Ability { id: "4FAE", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } 2144.4 "--untargetable--" -2153.5 "Incendiary Barrage" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FAF:/ -2155.0 "Sliding Swipe 1" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FA[CD]:/ -2157.0 "Sliding Swipe 2" sync / 1[56]:[^:]*:767P-Operated Superior Flight Unit \(B-Eta\):550[DE]:/ -2159.0 "Sliding Swipe 3" sync / 1[56]:[^:]*:772P-Operated Superior Flight Unit \(C-Hi\):(550F|5510):/ +2153.5 "Incendiary Barrage" Ability { id: "4FAF", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2155.0 "Sliding Swipe 1" Ability { id: "4FA[CD]", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2157.0 "Sliding Swipe 2" Ability { id: "550[DE]", source: "767P-Operated Superior Flight Unit \\(B-Eta\\)" } +2159.0 "Sliding Swipe 3" Ability { id: ["550F", "5510"], source: "772P-Operated Superior Flight Unit \\(C-Hi\\)" } 2161.3 "--targetable--" -2172.7 "--sync--" sync / 14:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC4:/ window 70,20 -2172.7 "--sync--" sync / 14:[^:]*:767P-Operated Superior Flight Unit \(B-Eta\):4FC4:/ window 70,20 -2172.7 "--sync--" sync / 14:[^:]*:772P-Operated Superior Flight Unit \(C-Hi\):4FC4:/ window 70,20 -2176.7 "Maneuver: Precision Guided Missile" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC4:/ window 10,10 -2191.0 "Maneuver: Area Bombardment" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB7:/ duration 15 -2206.2 "Maneuver: High-Powered Laser" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB4:/ -2224.8 "Maneuver: Missile Command" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBD:/ +2172.7 "--sync--" StartsUsing { id: "4FC4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } window 70,20 +2172.7 "--sync--" StartsUsing { id: "4FC4", source: "767P-Operated Superior Flight Unit \\(B-Eta\\)" } window 70,20 +2172.7 "--sync--" StartsUsing { id: "4FC4", source: "772P-Operated Superior Flight Unit \\(C-Hi\\)" } window 70,20 +2176.7 "Maneuver: Precision Guided Missile" Ability { id: "4FC4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } window 10,10 +2191.0 "Maneuver: Area Bombardment" Ability { id: "4FB7", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } duration 15 +2206.2 "Maneuver: High-Powered Laser" Ability { id: "4FB4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2224.8 "Maneuver: Missile Command" Ability { id: "4FBD", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } -2243.1 "Formation: Air Raid" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB0:/ -2252.5 "Lethal Revolution" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB3:/ duration 5.8 +2243.1 "Formation: Air Raid" Ability { id: "4FB0", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2252.5 "Lethal Revolution" Ability { id: "4FB3", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } duration 5.8 -2273.8 "Maneuver: Area Bombardment" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB7:/ duration 15 +2273.8 "Maneuver: Area Bombardment" Ability { id: "4FB7", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } duration 15 -2304.1 "Maneuver: Precision Guided Missile" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC4:/ -2315.3 "Maneuver: Incendiary Bombing" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC3:/ +2304.1 "Maneuver: Precision Guided Missile" Ability { id: "4FC4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2315.3 "Maneuver: Incendiary Bombing" Ability { id: "4FC3", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } # Loop begins roughly here: -2321.5 "Maneuver: High-Order Explosive Blast" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBF:/ -2339.8 "Maneuver: Missile Command" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBD:/ +2321.5 "Maneuver: High-Order Explosive Blast" Ability { id: "4FBF", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2339.8 "Maneuver: Missile Command" Ability { id: "4FBD", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } -2356.1 "Formation: Sharp Turn" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FAB:/ -2369.2 "Sharp Turn" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FA[9A]:/ +2356.1 "Formation: Sharp Turn" Ability { id: "4FAB", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2369.2 "Sharp Turn" Ability { id: "4FA[9A]", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } -2392.0 "Formation: Sliding Swipe" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FAE:/ +2392.0 "Formation: Sliding Swipe" Ability { id: "4FAE", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } 2394.0 "--untargetable--" -2400.0 "Anti-Personnel Missile" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBB:/ -2403.1 "Incendiary Barrage" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FAF:/ -2404.6 "Sliding Swipe 1" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FA[CD]:/ -2406.6 "Sliding Swipe 2" sync / 1[56]:[^:]*:767P-Operated Superior Flight Unit \(B-Eta\):550[DE]:/ -2408.6 "Sliding Swipe 3" sync / 1[56]:[^:]*:772P-Operated Superior Flight Unit \(C-Hi\):(550F|5510):/ +2400.0 "Anti-Personnel Missile" Ability { id: "4FBB", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2403.1 "Incendiary Barrage" Ability { id: "4FAF", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2404.6 "Sliding Swipe 1" Ability { id: "4FA[CD]", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2406.6 "Sliding Swipe 2" Ability { id: "550[DE]", source: "767P-Operated Superior Flight Unit \\(B-Eta\\)" } +2408.6 "Sliding Swipe 3" Ability { id: ["550F", "5510"], source: "772P-Operated Superior Flight Unit \\(C-Hi\\)" } 2410.9 "--targetable--" -2427.2 "--sync--" sync / 14:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBD:/ window 70,20 -2427.2 "--sync--" sync / 14:[^:]*:767P-Operated Superior Flight Unit \(B-Eta\):4FBD:/ window 70,20 -2427.2 "--sync--" sync / 14:[^:]*:772P-Operated Superior Flight Unit \(C-Hi\):4FBD:/ window 70,20 -2431.2 "Maneuver: Missile Command" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBD:/ window 10,10 -2447.4 "Maneuver: Precision Guided Missile" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC4:/ -2467.7 "Maneuver: Area Bombardment" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB7:/ duration 15 -2482.9 "Maneuver: High-Powered Laser" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB4:/ -2501.5 "Maneuver: Missile Command" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBD:/ -2519.8 "Formation: Air Raid" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB0:/ -2529.0 "Lethal Revolution" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB3:/ duration 5.8 -2550.5 "Maneuver: Area Bombardment" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FB7:/ duration 15 -2565.6 "Anti-Personnel Missile" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBB:/ -2580.8 "Maneuver: Precision Guided Missile" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC4:/ -2592.0 "Maneuver: Incendiary Bombing" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FC3:/ - -2598.2 "--sync--" sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBF:/ window 90,90 jump 2321.5 -2598.2 "--sync--" sync / 1[56]:[^:]*:767P-Operated Superior Flight Unit \(B-Eta\):4FBF:/ window 90,90 jump 2321.5 -2598.2 "--sync--" sync / 1[56]:[^:]*:772P-Operated Superior Flight Unit \(C-Hi\):4FBF:/ window 90,90 jump 2321.5 - -2598.2 "Maneuver: High-Order Explosive Blast" #sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBF:/ jump 2321.5 -2616.5 "Maneuver: Missile Command" #sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FBD:/ -2632.8 "Formation: Sharp Turn" #sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FAB:/ -2645.9 "Sharp Turn" #sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FA[9A]:/ -2668.7 "Formation: Sliding Swipe" #sync / 1[56]:[^:]*:724P-Operated Superior Flight Unit \(A-Lpha\):4FAE:/ +2427.2 "--sync--" StartsUsing { id: "4FBD", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } window 70,20 +2427.2 "--sync--" StartsUsing { id: "4FBD", source: "767P-Operated Superior Flight Unit \\(B-Eta\\)" } window 70,20 +2427.2 "--sync--" StartsUsing { id: "4FBD", source: "772P-Operated Superior Flight Unit \\(C-Hi\\)" } window 70,20 +2431.2 "Maneuver: Missile Command" Ability { id: "4FBD", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } window 10,10 +2447.4 "Maneuver: Precision Guided Missile" Ability { id: "4FC4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2467.7 "Maneuver: Area Bombardment" Ability { id: "4FB7", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } duration 15 +2482.9 "Maneuver: High-Powered Laser" Ability { id: "4FB4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2501.5 "Maneuver: Missile Command" Ability { id: "4FBD", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2519.8 "Formation: Air Raid" Ability { id: "4FB0", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2529.0 "Lethal Revolution" Ability { id: "4FB3", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } duration 5.8 +2550.5 "Maneuver: Area Bombardment" Ability { id: "4FB7", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } duration 15 +2565.6 "Anti-Personnel Missile" Ability { id: "4FBB", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2580.8 "Maneuver: Precision Guided Missile" Ability { id: "4FC4", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2592.0 "Maneuver: Incendiary Bombing" Ability { id: "4FC3", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } + +2598.2 "--sync--" Ability { id: "4FBF", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } window 90,90 jump 2321.5 +2598.2 "--sync--" Ability { id: "4FBF", source: "767P-Operated Superior Flight Unit \\(B-Eta\\)" } window 90,90 jump 2321.5 +2598.2 "--sync--" Ability { id: "4FBF", source: "772P-Operated Superior Flight Unit \\(C-Hi\\)" } window 90,90 jump 2321.5 + +2598.2 "Maneuver: High-Order Explosive Blast" #Ability { id: "4FBF", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } jump 2321.5 +2616.5 "Maneuver: Missile Command" #Ability { id: "4FBD", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2632.8 "Formation: Sharp Turn" #Ability { id: "4FAB", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2645.9 "Sharp Turn" #Ability { id: "4FA[9A]", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } +2668.7 "Formation: Sliding Swipe" #Ability { id: "4FAE", source: "724P-Operated Superior Flight Unit \\(A-Lpha\\)" } @@ -224,83 +224,83 @@ hideall "--sync--" # -p 5006:3012.1 -ii 4FF6 4FF7 4FF8 4FF9 4FFC 5004 4FFA 4FFF 4FFE 5002 # Core Command will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DB3:/ window 3000,0 -3012.1 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ window 3012.1,20 -3024.5 "Operation: Activate Laser Turret" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FED:/ -3028.2 "Lower Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5086:/ duration 3.5 -3028.2 "Upper Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5087:/ duration 2.5 -3031.2 "Upper Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5088:/ duration 2.5 -3034.2 "Upper Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5089:/ duration 2.5 -3038.5 "Maneuver: High-Powered Laser x2" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5001:/ duration 2.3 -3048.3 "--sync--" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5005:/ -3054.3 "Maneuver: Unconventional Voltage" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5003:/ -3061.4 "Energy Bombardment" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FFB:/ duration 9.2 -3072.5 "Maneuver: Impact Crusher x3" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FFD:/ duration 3.3 - -3078.8 "Maneuver: Revolving Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5000:/ -3087.9 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3109.9 "Operation: Access Self-Consciousness Data" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEF:/ -3126.2 "Operation: Activate Suppressive Unit" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEE:/ duration 30 - -3156.2 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3172.4 "Support: Pod" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FE9:/ -3182.7 "Operation: Pod Program" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEA:/ -3194.6 "R010: Laser / R030: Hammer" sync / 1[56]:[^:]*:Pod:4FF[01]:/ -3199.6 "Support: Pod" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FE9:/ -3210.8 "Operation: Pod Program" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEA:/ -3222.7 "R030: Hammer / R010: Laser" sync / 1[56]:[^:]*:Pod:4FF[01]:/ -3232.8 "Operation: Synthesize Compound" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEC:/ -3249.8 "Chemical Burn" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FF4:/ -3254.8 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ - -3266.1 "--sync--" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5005:/ -3272.1 "Maneuver: Unconventional Voltage" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5003:/ -3276.2 "Energy Bombardment" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FFB:/ duration 9.2 -3297.1 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3309.3 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3313.4 "Support: Pod" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FE9:/ -3323.7 "Operation: Pod Program" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEA:/ -3335.6 "R010: Laser" sync / 1[56]:[^:]*:Pod:4FF0:/ -3335.6 "R030: Hammer" sync / 1[56]:[^:]*:Pod:4FF1:/ -3340.6 "Support: Pod" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FE9:/ -3351.9 "Operation: Pod Program" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEA:/ -3363.9 "R010: Laser" sync / 1[56]:[^:]*:Pod:4FF0:/ -3363.9 "R030: Hammer" sync / 1[56]:[^:]*:Pod:4FF1:/ -3370.4 "Operation: Activate Laser Turret" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FED:/ -3374.1 "Lower Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5086:/ duration 3.5 -3374.1 "Upper Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5087:/ duration 2.5 -3377.1 "Upper Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5088:/ duration 2.5 -3380.1 "Upper Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5089:/ duration 2.5 - -3381.3 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3395.5 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3404.7 "Operation: Synthesize Compound" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEC:/ -3421.7 "Chemical Conflagration" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FF5:/ - -3424.7 "Maneuver: Impact Crusher x3" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FFD:/ duration 3.3 -3431.0 "Maneuver: Revolving Laser" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5000:/ -3439.1 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3456.4 "Operation: Activate Suppressive Unit" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEE:/ duration 30 - -3480.4 "--sync--" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5005:/ -3486.4 "Maneuver: Unconventional Voltage" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5003:/ -3495.5 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3503.6 "Maneuver: Volt Array" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DB3" } window 3000,0 +3012.1 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } window 3012.1,20 +3024.5 "Operation: Activate Laser Turret" Ability { id: "4FED", source: "905P-Operated Heavy Artillery Unit" } +3028.2 "Lower Laser" Ability { id: "5086", source: "905P-Operated Heavy Artillery Unit" } duration 3.5 +3028.2 "Upper Laser" Ability { id: "5087", source: "905P-Operated Heavy Artillery Unit" } duration 2.5 +3031.2 "Upper Laser" Ability { id: "5088", source: "905P-Operated Heavy Artillery Unit" } duration 2.5 +3034.2 "Upper Laser" Ability { id: "5089", source: "905P-Operated Heavy Artillery Unit" } duration 2.5 +3038.5 "Maneuver: High-Powered Laser x2" Ability { id: "5001", source: "905P-Operated Heavy Artillery Unit" } duration 2.3 +3048.3 "--sync--" Ability { id: "5005", source: "905P-Operated Heavy Artillery Unit" } +3054.3 "Maneuver: Unconventional Voltage" Ability { id: "5003", source: "905P-Operated Heavy Artillery Unit" } +3061.4 "Energy Bombardment" Ability { id: "4FFB", source: "905P-Operated Heavy Artillery Unit" } duration 9.2 +3072.5 "Maneuver: Impact Crusher x3" Ability { id: "4FFD", source: "905P-Operated Heavy Artillery Unit" } duration 3.3 + +3078.8 "Maneuver: Revolving Laser" Ability { id: "5000", source: "905P-Operated Heavy Artillery Unit" } +3087.9 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3109.9 "Operation: Access Self-Consciousness Data" Ability { id: "4FEF", source: "905P-Operated Heavy Artillery Unit" } +3126.2 "Operation: Activate Suppressive Unit" Ability { id: "4FEE", source: "905P-Operated Heavy Artillery Unit" } duration 30 + +3156.2 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3172.4 "Support: Pod" Ability { id: "4FE9", source: "905P-Operated Heavy Artillery Unit" } +3182.7 "Operation: Pod Program" Ability { id: "4FEA", source: "905P-Operated Heavy Artillery Unit" } +3194.6 "R010: Laser / R030: Hammer" Ability { id: "4FF[01]", source: "Pod" } +3199.6 "Support: Pod" Ability { id: "4FE9", source: "905P-Operated Heavy Artillery Unit" } +3210.8 "Operation: Pod Program" Ability { id: "4FEA", source: "905P-Operated Heavy Artillery Unit" } +3222.7 "R030: Hammer / R010: Laser" Ability { id: "4FF[01]", source: "Pod" } +3232.8 "Operation: Synthesize Compound" Ability { id: "4FEC", source: "905P-Operated Heavy Artillery Unit" } +3249.8 "Chemical Burn" Ability { id: "4FF4", source: "905P-Operated Heavy Artillery Unit" } +3254.8 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } + +3266.1 "--sync--" Ability { id: "5005", source: "905P-Operated Heavy Artillery Unit" } +3272.1 "Maneuver: Unconventional Voltage" Ability { id: "5003", source: "905P-Operated Heavy Artillery Unit" } +3276.2 "Energy Bombardment" Ability { id: "4FFB", source: "905P-Operated Heavy Artillery Unit" } duration 9.2 +3297.1 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3309.3 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3313.4 "Support: Pod" Ability { id: "4FE9", source: "905P-Operated Heavy Artillery Unit" } +3323.7 "Operation: Pod Program" Ability { id: "4FEA", source: "905P-Operated Heavy Artillery Unit" } +3335.6 "R010: Laser" Ability { id: "4FF0", source: "Pod" } +3335.6 "R030: Hammer" Ability { id: "4FF1", source: "Pod" } +3340.6 "Support: Pod" Ability { id: "4FE9", source: "905P-Operated Heavy Artillery Unit" } +3351.9 "Operation: Pod Program" Ability { id: "4FEA", source: "905P-Operated Heavy Artillery Unit" } +3363.9 "R010: Laser" Ability { id: "4FF0", source: "Pod" } +3363.9 "R030: Hammer" Ability { id: "4FF1", source: "Pod" } +3370.4 "Operation: Activate Laser Turret" Ability { id: "4FED", source: "905P-Operated Heavy Artillery Unit" } +3374.1 "Lower Laser" Ability { id: "5086", source: "905P-Operated Heavy Artillery Unit" } duration 3.5 +3374.1 "Upper Laser" Ability { id: "5087", source: "905P-Operated Heavy Artillery Unit" } duration 2.5 +3377.1 "Upper Laser" Ability { id: "5088", source: "905P-Operated Heavy Artillery Unit" } duration 2.5 +3380.1 "Upper Laser" Ability { id: "5089", source: "905P-Operated Heavy Artillery Unit" } duration 2.5 + +3381.3 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3395.5 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3404.7 "Operation: Synthesize Compound" Ability { id: "4FEC", source: "905P-Operated Heavy Artillery Unit" } +3421.7 "Chemical Conflagration" Ability { id: "4FF5", source: "905P-Operated Heavy Artillery Unit" } + +3424.7 "Maneuver: Impact Crusher x3" Ability { id: "4FFD", source: "905P-Operated Heavy Artillery Unit" } duration 3.3 +3431.0 "Maneuver: Revolving Laser" Ability { id: "5000", source: "905P-Operated Heavy Artillery Unit" } +3439.1 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3456.4 "Operation: Activate Suppressive Unit" Ability { id: "4FEE", source: "905P-Operated Heavy Artillery Unit" } duration 30 + +3480.4 "--sync--" Ability { id: "5005", source: "905P-Operated Heavy Artillery Unit" } +3486.4 "Maneuver: Unconventional Voltage" Ability { id: "5003", source: "905P-Operated Heavy Artillery Unit" } +3495.5 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3503.6 "Maneuver: Volt Array" Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } # loop back to the first hammer+laser combo deal pod program -3515.8 "--sync--" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5005:/ -3521.8 "Maneuver: Unconventional Voltage" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5003:/ -3525.9 "Energy Bombardment" sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FFB:/ window 100,100 jump 3276.2 -3538.1 "Maneuver: High-Powered Laser" #sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5001:/ -3546.9 "Maneuver: Volt Array" #sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3559.1 "Maneuver: Volt Array" #sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:5006:/ -3563.2 "Support: Pod" #sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FE9:/ -3573.5 "Operation: Pod Program" #sync / 1[56]:[^:]*:905P-Operated Heavy Artillery Unit:4FEA:/ +3515.8 "--sync--" Ability { id: "5005", source: "905P-Operated Heavy Artillery Unit" } +3521.8 "Maneuver: Unconventional Voltage" Ability { id: "5003", source: "905P-Operated Heavy Artillery Unit" } +3525.9 "Energy Bombardment" Ability { id: "4FFB", source: "905P-Operated Heavy Artillery Unit" } window 100,100 jump 3276.2 +3538.1 "Maneuver: High-Powered Laser" #Ability { id: "5001", source: "905P-Operated Heavy Artillery Unit" } +3546.9 "Maneuver: Volt Array" #Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3559.1 "Maneuver: Volt Array" #Ability { id: "5006", source: "905P-Operated Heavy Artillery Unit" } +3563.2 "Support: Pod" #Ability { id: "4FE9", source: "905P-Operated Heavy Artillery Unit" } +3573.5 "Operation: Pod Program" #Ability { id: "4FEA", source: "905P-Operated Heavy Artillery Unit" } ### Heavy Artillery Unit: caster-friendly hallway section # Passage will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DB4:/ window 4000,0 +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DB4" } window 4000,0 ### The Compound @@ -310,35 +310,35 @@ hideall "--sync--" # * Can't use "The Bridge" area sync due to checkpoint with Compound 2P. # The bridge will be sealed off -#5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DB5:/ window 5000,0 -5002.0 "--sync--" sync / 1[56]:[^:]*:The Compound:53CA:/ window 5002,0 -5013.2 "Mechanical Laceration" sync / 1[56]:[^:]*:The Compound:51B8:/ window 6000,20 -5024.4 "Mechanical Decapitation/Dissection" sync / 1[56]:[^:]*:The Compound:51B[34]:/ -5034.9 "Mechanical Dissection/Decapitation" sync / 1[56]:[^:]*:The Compound:51B[34]:/ -5043.9 "Mechanical Contusion" sync / 1[56]:[^:]*:The Compound:51B5:/ +#5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DB5" } window 5000,0 +5002.0 "--sync--" Ability { id: "53CA", source: "The Compound" } window 5002,0 +5013.2 "Mechanical Laceration" Ability { id: "51B8", source: "The Compound" } window 6000,20 +5024.4 "Mechanical Decapitation/Dissection" Ability { id: "51B[34]", source: "The Compound" } +5034.9 "Mechanical Dissection/Decapitation" Ability { id: "51B[34]", source: "The Compound" } +5043.9 "Mechanical Contusion" Ability { id: "51B5", source: "The Compound" } 5058.0 "--untargetable--" -5068.7 "Incongruous Spin x2" #sync / 1[56]:[^:]*:The Compound:51B2:/ +5068.7 "Incongruous Spin x2" #Ability { id: "51B2", source: "The Compound" } 5073.9 "--targetable--" -5088.0 "Mechanical Laceration" sync / 1[56]:[^:]*:The Compound:51B8:/ -5099.1 "Mechanical Decapitation" sync / 1[56]:[^:]*:The Compound:51B4:/ -5105.1 "Mechanical Contusion" sync / 1[56]:[^:]*:The Compound:51B5:/ -5115.3 "Mechanical Dissection" sync / 1[56]:[^:]*:The Compound:51B3:/ -5125.6 "Mechanical Laceration" sync / 1[56]:[^:]*:The Compound:51B8:/ -5141.7 "Mechanical Decapitation" sync / 1[56]:[^:]*:The Compound:51B4:/ -5147.7 "Mechanical Contusion" sync / 1[56]:[^:]*:The Compound:51B5:/ -5157.9 "Mechanical Dissection" sync / 1[56]:[^:]*:The Compound:51B3:/ +5088.0 "Mechanical Laceration" Ability { id: "51B8", source: "The Compound" } +5099.1 "Mechanical Decapitation" Ability { id: "51B4", source: "The Compound" } +5105.1 "Mechanical Contusion" Ability { id: "51B5", source: "The Compound" } +5115.3 "Mechanical Dissection" Ability { id: "51B3", source: "The Compound" } +5125.6 "Mechanical Laceration" Ability { id: "51B8", source: "The Compound" } +5141.7 "Mechanical Decapitation" Ability { id: "51B4", source: "The Compound" } +5147.7 "Mechanical Contusion" Ability { id: "51B5", source: "The Compound" } +5157.9 "Mechanical Dissection" Ability { id: "51B3", source: "The Compound" } -5168.2 "Mechanical Laceration" sync / 1[56]:[^:]*:The Compound:51B8:/ -5184.5 "Mechanical Dissection" sync / 1[56]:[^:]*:The Compound:51B3:/ -5190.8 "Mechanical Contusion" sync / 1[56]:[^:]*:The Compound:51B5:/ -5200.9 "Mechanical Decapitation" sync / 1[56]:[^:]*:The Compound:51B4:/ +5168.2 "Mechanical Laceration" Ability { id: "51B8", source: "The Compound" } +5184.5 "Mechanical Dissection" Ability { id: "51B3", source: "The Compound" } +5190.8 "Mechanical Contusion" Ability { id: "51B5", source: "The Compound" } +5200.9 "Mechanical Decapitation" Ability { id: "51B4", source: "The Compound" } -5210.9 "Mechanical Laceration" sync / 1[56]:[^:]*:The Compound:51B8:/ window 30,30 jump 5168.2 -5227.2 "Mechanical Dissection" #sync / 1[56]:[^:]*:The Compound:51B3:/ -5233.5 "Mechanical Contusion" #sync / 1[56]:[^:]*:The Compound:51B5:/ -5243.6 "Mechanical Decapitation" #sync / 1[56]:[^:]*:The Compound:51B4:/ +5210.9 "Mechanical Laceration" Ability { id: "51B8", source: "The Compound" } window 30,30 jump 5168.2 +5227.2 "Mechanical Dissection" #Ability { id: "51B3", source: "The Compound" } +5233.5 "Mechanical Contusion" #Ability { id: "51B5", source: "The Compound" } +5243.6 "Mechanical Decapitation" #Ability { id: "51B4", source: "The Compound" } ### Compound 2P @@ -349,84 +349,84 @@ hideall "--sync--" # * 53D0 / 53D1 are included here as stand-ins for "Forced Transfer" when there is no ability. # * However, 53D0 / 53D1 are noisy so they're not included everywhere. -6000.0 "Mechanical Laceration" sync / 1[56]:[^:]*:The Compound:53D5:/ window 6000,0 +6000.0 "Mechanical Laceration" Ability { id: "53D5", source: "The Compound" } window 6000,0 6051.1 "--targetable--" -6068.3 "Centrifugal Slice" sync / 1[56]:[^:]*:Compound 2P:51B0:/ window 7000,0 -6080.1 "Relentless Spiral x3" sync / 1[56]:[^:]*:Compound 2P:51A9:/ duration 4.1 -6099.9 "Prime Blade (Out)" sync / 1[56]:[^:]*:Compound 2P:541F:/ -6110.5 "Prime Blade (Behind)" sync / 1[56]:[^:]*:Compound 2P:5420:/ -6121.0 "Prime Blade (In)" sync / 1[56]:[^:]*:Compound 2P:5421:/ +6068.3 "Centrifugal Slice" Ability { id: "51B0", source: "Compound 2P" } window 7000,0 +6080.1 "Relentless Spiral x3" Ability { id: "51A9", source: "Compound 2P" } duration 4.1 +6099.9 "Prime Blade (Out)" Ability { id: "541F", source: "Compound 2P" } +6110.5 "Prime Blade (Behind)" Ability { id: "5420", source: "Compound 2P" } +6121.0 "Prime Blade (In)" Ability { id: "5421", source: "Compound 2P" } -6131.5 "--sync--" sync / 1[56]:[^:]*:Compound 2P:51A3:/ -6140.1 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:53D0:/ -6143.6 "Prime Blade (In)" sync / 1[56]:[^:]*:Compound 2P:519A:/ -6153.1 "Centrifugal Slice" sync / 1[56]:[^:]*:Compound 2P:51B0:/ +6131.5 "--sync--" Ability { id: "51A3", source: "Compound 2P" } +6140.1 "Forced Transfer" Ability { id: "53D0", source: "Compound 2P" } +6143.6 "Prime Blade (In)" Ability { id: "519A", source: "Compound 2P" } +6153.1 "Centrifugal Slice" Ability { id: "51B0", source: "Compound 2P" } -6166.6 "Three Parts Disdain" sync / 1[56]:[^:]*:Compound 2P:519B:/ duration 3.6 +6166.6 "Three Parts Disdain" Ability { id: "519B", source: "Compound 2P" } duration 3.6 -6179.5 "Compound Pod: R012" sync / 1[56]:[^:]*:Compound 2P:51AB:/ -6183.3 "R012: Laser" sync / 1[56]:[^:]*:Compound Pod:51AC:/ +6179.5 "Compound Pod: R012" Ability { id: "51AB", source: "Compound 2P" } +6183.3 "R012: Laser" Ability { id: "51AC", source: "Compound Pod" } -6204.6 "Four Parts Resolve" sync / 1[56]:[^:]*:Compound 2P:519E:/ duration 9.4 +6204.6 "Four Parts Resolve" Ability { id: "519E", source: "Compound 2P" } duration 9.4 -6224.4 "--sync--" sync / 1[56]:[^:]*:Compound 2P:51A3:/ -6230.6 "Reproduce" sync / 1[56]:[^:]*:Compound 2P:51A1:/ -6240.3 "Prime Blade (In)" sync / 1[56]:[^:]*:Compound 2P:5421:/ -6250.7 "Prime Blade (In)" sync / 1[56]:[^:]*:Puppet 2P:5421:/ +6224.4 "--sync--" Ability { id: "51A3", source: "Compound 2P" } +6230.6 "Reproduce" Ability { id: "51A1", source: "Compound 2P" } +6240.3 "Prime Blade (In)" Ability { id: "5421", source: "Compound 2P" } +6250.7 "Prime Blade (In)" Ability { id: "5421", source: "Puppet 2P" } -6255.8 "--sync--" sync / 1[56]:[^:]*:Compound 2P:51A3:/ -6261.9 "Energy Compression" sync / 1[56]:[^:]*:Compound 2P:51A6:/ -6272.9 "Explosion" sync / 1[56]:[^:]*:Compound 2P:51A7:/ -6287.4 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:51A2:/ -6291.2 "Explosion" sync / 1[56]:[^:]*:Compound 2P:51A7:/ +6255.8 "--sync--" Ability { id: "51A3", source: "Compound 2P" } +6261.9 "Energy Compression" Ability { id: "51A6", source: "Compound 2P" } +6272.9 "Explosion" Ability { id: "51A7", source: "Compound 2P" } +6287.4 "Forced Transfer" Ability { id: "51A2", source: "Compound 2P" } +6291.2 "Explosion" Ability { id: "51A7", source: "Compound 2P" } -6299.2 "Compound Pod: R011" sync / 1[56]:[^:]*:Compound 2P:51A4:/ -6315.6 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:543A:/ -6318.5 "R011: Laser" sync / 1[56]:[^:]*:Compound Pod:51A5:/ -6329.9 "Relentless Spiral x3" sync / 1[56]:[^:]*:Compound 2P:51A9:/ duration 4.1 +6299.2 "Compound Pod: R011" Ability { id: "51A4", source: "Compound 2P" } +6315.6 "Forced Transfer" Ability { id: "543A", source: "Compound 2P" } +6318.5 "R011: Laser" Ability { id: "51A5", source: "Compound Pod" } +6329.9 "Relentless Spiral x3" Ability { id: "51A9", source: "Compound 2P" } duration 4.1 -6332.7 "--sync--" sync / 1[56]:[^:]*:Compound 2P:51A3:/ -6341.3 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:53D1:/ -6344.7 "Prime Blade (Out/Behind)" sync / 1[56]:[^:]*:Compound 2P:519[89]:/ +6332.7 "--sync--" Ability { id: "51A3", source: "Compound 2P" } +6341.3 "Forced Transfer" Ability { id: "53D1", source: "Compound 2P" } +6344.7 "Prime Blade (Out/Behind)" Ability { id: "519[89]", source: "Compound 2P" } # beginning of loop -6350.2 "--sync--" sync / 1[56]:[^:]*:Compound 2P:51A3:/ -6356.3 "Reproduce" sync / 1[56]:[^:]*:Compound 2P:51A1:/ -6366.0 "Prime Blade (In/Out)" sync / 1[56]:[^:]*:Compound 2P:(541F|5421):/ -6375.9 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:51A2:/ -6379.4 "Prime Blade (In/Out)" sync / 1[56]:[^:]*:Puppet 2P:(5198|519A):/ +6350.2 "--sync--" Ability { id: "51A3", source: "Compound 2P" } +6356.3 "Reproduce" Ability { id: "51A1", source: "Compound 2P" } +6366.0 "Prime Blade (In/Out)" Ability { id: ["541F", "5421"], source: "Compound 2P" } +6375.9 "Forced Transfer" Ability { id: "51A2", source: "Compound 2P" } +6379.4 "Prime Blade (In/Out)" Ability { id: ["5198", "519A"], source: "Puppet 2P" } # Random Three Parts/ Four Parts -6391.8 "--sync--" sync / 14:[^:]*:Compound 2P:519E:/ window 50,50 -6399.8 "Four Parts Resolve?" sync / 1[56]:[^:]*:Compound 2P:519E:/ +6391.8 "--sync--" StartsUsing { id: "519E", source: "Compound 2P" } window 50,50 +6399.8 "Four Parts Resolve?" Ability { id: "519E", source: "Compound 2P" } # This is adjusted 9 seconds ahead so that Compound Pod: R012 lines up. @_@;; -6400.7 "--sync--" sync / 14:[^:]*:Compound 2P:519B:/ window 50,50 -6406.7 "Three Parts Disdain?" sync / 1[56]:[^:]*:Compound 2P:519B:/ - - -6420.5 "Compound Pod: R012" sync / 1[56]:[^:]*:Compound 2P:51AB:/ -6423.4 "--sync--" sync / 1[56]:[^:]*:Compound 2P:51A3:/ -6424.3 "R012: Laser" sync / 1[56]:[^:]*:Compound Pod:51AC:/ -6429.6 "Energy Compression" sync / 1[56]:[^:]*:Compound 2P:51A6:/ -6440.6 "Explosion" sync / 1[56]:[^:]*:Compound 2P:51A7:/ - -6455.1 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:51A2:/ -6458.9 "Explosion" sync / 1[56]:[^:]*:Compound 2P:51A7:/ - -6471.9 "Centrifugal Slice" sync / 1[56]:[^:]*:Compound 2P:51B0:/ -6490.2 "Compound Pod: R011" sync / 1[56]:[^:]*:Compound 2P:51A4:/ -6506.6 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:543A:/ -6509.5 "R011: Laser" sync / 1[56]:[^:]*:Compound Pod:51A5:/ -6520.9 "Relentless Spiral x3" sync / 1[56]:[^:]*:Compound 2P:51A9:/ duration 4.1 - -6523.7 "--sync--" sync / 1[56]:[^:]*:Compound 2P:51A3:/ -6532.5 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:53D[01]:/ -6535.8 "Prime Blade (In/Out)" sync / 1[56]:[^:]*:Compound 2P:(5198|519A):/ - -6541.3 "--sync--" sync / 1[56]:[^:]*:Compound 2P:51A3:/ -6547.4 "Reproduce" sync / 1[56]:[^:]*:Compound 2P:51A1:/ window 100,100 jump 6356.3 -6557.2 "Prime Blade (In/Out)" sync / 1[56]:[^:]*:Compound 2P:(541F|5421):/ -6567.1 "Forced Transfer" sync / 1[56]:[^:]*:Compound 2P:51A2:/ -6570.6 "Prime Blade (In/Out)" sync / 1[56]:[^:]*:Puppet 2P:(5198|519A):/ +6400.7 "--sync--" StartsUsing { id: "519B", source: "Compound 2P" } window 50,50 +6406.7 "Three Parts Disdain?" Ability { id: "519B", source: "Compound 2P" } + + +6420.5 "Compound Pod: R012" Ability { id: "51AB", source: "Compound 2P" } +6423.4 "--sync--" Ability { id: "51A3", source: "Compound 2P" } +6424.3 "R012: Laser" Ability { id: "51AC", source: "Compound Pod" } +6429.6 "Energy Compression" Ability { id: "51A6", source: "Compound 2P" } +6440.6 "Explosion" Ability { id: "51A7", source: "Compound 2P" } + +6455.1 "Forced Transfer" Ability { id: "51A2", source: "Compound 2P" } +6458.9 "Explosion" Ability { id: "51A7", source: "Compound 2P" } + +6471.9 "Centrifugal Slice" Ability { id: "51B0", source: "Compound 2P" } +6490.2 "Compound Pod: R011" Ability { id: "51A4", source: "Compound 2P" } +6506.6 "Forced Transfer" Ability { id: "543A", source: "Compound 2P" } +6509.5 "R011: Laser" Ability { id: "51A5", source: "Compound Pod" } +6520.9 "Relentless Spiral x3" Ability { id: "51A9", source: "Compound 2P" } duration 4.1 + +6523.7 "--sync--" Ability { id: "51A3", source: "Compound 2P" } +6532.5 "Forced Transfer" Ability { id: "53D[01]", source: "Compound 2P" } +6535.8 "Prime Blade (In/Out)" Ability { id: ["5198", "519A"], source: "Compound 2P" } + +6541.3 "--sync--" Ability { id: "51A3", source: "Compound 2P" } +6547.4 "Reproduce" Ability { id: "51A1", source: "Compound 2P" } window 100,100 jump 6356.3 +6557.2 "Prime Blade (In/Out)" Ability { id: ["541F", "5421"], source: "Compound 2P" } +6567.1 "Forced Transfer" Ability { id: "51A2", source: "Compound 2P" } +6570.6 "Prime Blade (In/Out)" Ability { id: ["5198", "519A"], source: "Puppet 2P" } diff --git a/ui/raidboss/data/05-shb/alliance/the_tower_at_paradigms_breach.txt b/ui/raidboss/data/05-shb/alliance/the_tower_at_paradigms_breach.txt index 6032539d18..5e14eb803f 100644 --- a/ui/raidboss/data/05-shb/alliance/the_tower_at_paradigms_breach.txt +++ b/ui/raidboss/data/05-shb/alliance/the_tower_at_paradigms_breach.txt @@ -16,77 +16,77 @@ hideall "--sync--" # So, give up, and add extra syncs on abilities after. # Closed Area A will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E46:/ window 10000,0 -1012.0 "Roar" sync / 1[56]:[^:]*:Knave Of Hearts:5EB5:/ window 1012,10 -1022.1 "Colossal Impact" sync / 1[56]:[^:]*:Knave Of Hearts:5EA7:/ -1033.2 "Colossal Impact" sync / 1[56]:[^:]*:Knave Of Hearts:5EA4:/ -1040.3 "--sync--" sync / 1[56]:[^:]*:Knave Of Hearts:5EB2:/ # Magic Artillery Beta cast -1047.4 "Magic Artillery Beta" sync / 1[56]:[^:]*:Knave Of Hearts:5EB3:/ # damage - -1050.5 "Replicate" sync / 1[56]:[^:]*:Knave Of Hearts:5EA9:/ -1061.8 "Stacking The Deck" sync / 1[56]:[^:]*:Copied Knave:60F0:/ -1072.0 "Colossal Impact 1" sync / 1[56]:[^:]*:Knave Of Hearts:5EA[47]:/ window 4,4 -1077.0 "Colossal Impact 2" sync / 1[56]:[^:]*:Copied Knave:5EA[47]:/ window 4,4 -1085.2 "--sync--" sync / 14:[^:]*:Knave Of Hearts:5EA8:/ window 10,10 -1089.2 "Spheroids" sync / 1[56]:[^:]*:Knave Of Hearts:5EA8:/ -1093.4 "Knavish Bullets" sync / 1[56]:[^:]*:Spheroid:5EAD:/ -1094.2 "--sync--" sync / 1[56]:[^:]*:Knave Of Hearts:5EAA:/ # Magic Artillery Alpha cast -1102.3 "Magic Artillery Alpha" sync / 1[56]:[^:]*:Knave Of Hearts:5EAB:/ # damage -1116.4 "Light Leap" sync / 1[56]:[^:]*:Knave Of Hearts:5EAE:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E46" } window 10000,0 +1012.0 "Roar" Ability { id: "5EB5", source: "Knave Of Hearts" } window 1012,10 +1022.1 "Colossal Impact" Ability { id: "5EA7", source: "Knave Of Hearts" } +1033.2 "Colossal Impact" Ability { id: "5EA4", source: "Knave Of Hearts" } +1040.3 "--sync--" Ability { id: "5EB2", source: "Knave Of Hearts" } # Magic Artillery Beta cast +1047.4 "Magic Artillery Beta" Ability { id: "5EB3", source: "Knave Of Hearts" } # damage + +1050.5 "Replicate" Ability { id: "5EA9", source: "Knave Of Hearts" } +1061.8 "Stacking The Deck" Ability { id: "60F0", source: "Copied Knave" } +1072.0 "Colossal Impact 1" Ability { id: "5EA[47]", source: "Knave Of Hearts" } window 4,4 +1077.0 "Colossal Impact 2" Ability { id: "5EA[47]", source: "Copied Knave" } window 4,4 +1085.2 "--sync--" StartsUsing { id: "5EA8", source: "Knave Of Hearts" } window 10,10 +1089.2 "Spheroids" Ability { id: "5EA8", source: "Knave Of Hearts" } +1093.4 "Knavish Bullets" Ability { id: "5EAD", source: "Spheroid" } +1094.2 "--sync--" Ability { id: "5EAA", source: "Knave Of Hearts" } # Magic Artillery Alpha cast +1102.3 "Magic Artillery Alpha" Ability { id: "5EAB", source: "Knave Of Hearts" } # damage +1116.4 "Light Leap" Ability { id: "5EAE", source: "Knave Of Hearts" } 1116.4 "--untargetable--" -1118.5 "--sync--" sync / 1[56]:[^:]*:Knave Of Hearts:5EB0:/ +1118.5 "--sync--" Ability { id: "5EB0", source: "Knave Of Hearts" } 1120.5 "--targetable--" -1123.6 "Replicate" sync / 1[56]:[^:]*:Knave Of Hearts:5EA9:/ -1134.9 "Stacking The Deck" sync / 1[56]:[^:]*:Copied Knave:60F0:/ -1145.1 "Lunge 1" sync / 1[56]:[^:]*:Knave Of Hearts:5EB1:/ -1146.2 "--sync--" sync / 1[56]:[^:]*:Knave Of Hearts:5EB0:/ -1155.1 "Lunge 2" sync / 1[56]:[^:]*:Copied Knave:5EB1:/ -1167.3 "Roar" sync / 1[56]:[^:]*:Knave Of Hearts:5EB5:/ - -1178.5 "Replicate" sync / 1[56]:[^:]*:Knave Of Hearts:5EA9:/ -1189.8 "Stacking The Deck" sync / 1[56]:[^:]*:Copied Knave:60F0:/ -1200.0 "Colossal Impact 1" sync / 1[56]:[^:]*:Knave Of Hearts:5EA[47]:/ window 4,4 -1206.0 "Colossal Impact 2" sync / 1[56]:[^:]*:Copied Knave:5EA[47]:/ window 4,4 -1208.1 "Spheroids" sync / 1[56]:[^:]*:Knave Of Hearts:5EA8:/ window 10,10 -1211.0 "Colossal Impact 3" #sync / 1[56]:[^:]*:Copied Knave:5EA[47]:/ -1213.2 "--sync--" sync / 1[56]:[^:]*:Knave Of Hearts:5EAA:/ # Magic Artillery Alpha cast -1221.2 "Magic Barrage 1" #sync / 1[56]:[^:]*:Spheroid:5EAC:/ -1221.3 "Magic Artillery Alpha" sync / 1[56]:[^:]*:Knave Of Hearts:5EAB:/ # damage -1224.2 "Magic Barrage 2" #sync / 1[56]:[^:]*:Spheroid:5EAC:/ -1239.4 "Light Leap" sync / 1[56]:[^:]*:Knave Of Hearts:5EAE:/ +1123.6 "Replicate" Ability { id: "5EA9", source: "Knave Of Hearts" } +1134.9 "Stacking The Deck" Ability { id: "60F0", source: "Copied Knave" } +1145.1 "Lunge 1" Ability { id: "5EB1", source: "Knave Of Hearts" } +1146.2 "--sync--" Ability { id: "5EB0", source: "Knave Of Hearts" } +1155.1 "Lunge 2" Ability { id: "5EB1", source: "Copied Knave" } +1167.3 "Roar" Ability { id: "5EB5", source: "Knave Of Hearts" } + +1178.5 "Replicate" Ability { id: "5EA9", source: "Knave Of Hearts" } +1189.8 "Stacking The Deck" Ability { id: "60F0", source: "Copied Knave" } +1200.0 "Colossal Impact 1" Ability { id: "5EA[47]", source: "Knave Of Hearts" } window 4,4 +1206.0 "Colossal Impact 2" Ability { id: "5EA[47]", source: "Copied Knave" } window 4,4 +1208.1 "Spheroids" Ability { id: "5EA8", source: "Knave Of Hearts" } window 10,10 +1211.0 "Colossal Impact 3" #Ability { id: "5EA[47]", source: "Copied Knave" } +1213.2 "--sync--" Ability { id: "5EAA", source: "Knave Of Hearts" } # Magic Artillery Alpha cast +1221.2 "Magic Barrage 1" #Ability { id: "5EAC", source: "Spheroid" } +1221.3 "Magic Artillery Alpha" Ability { id: "5EAB", source: "Knave Of Hearts" } # damage +1224.2 "Magic Barrage 2" #Ability { id: "5EAC", source: "Spheroid" } +1239.4 "Light Leap" Ability { id: "5EAE", source: "Knave Of Hearts" } 1239.4 "--untargetable--" -1241.5 "--sync--" sync / 1[56]:[^:]*:Knave Of Hearts:5EB0:/ +1241.5 "--sync--" Ability { id: "5EB0", source: "Knave Of Hearts" } 1243.5 "--targetable--" -1246.6 "Replicate" sync / 1[56]:[^:]*:Knave Of Hearts:5EA9:/ -1257.9 "Stacking The Deck" sync / 1[56]:[^:]*:Copied Knave:60F0:/ -1268.1 "Lunge 1" sync / 1[56]:[^:]*:Knave Of Hearts:5EB1:/ -1269.2 "--sync--" sync / 1[56]:[^:]*:Knave Of Hearts:5EB0:/ -1278.1 "Lunge 2" sync / 1[56]:[^:]*:Copied Knave:5EB1:/ -1280.1 "Colossal Impact" sync / 1[56]:[^:]*:Knave Of Hearts:(60C8|5CFD):/ -1287.2 "--sync--" sync / 1[56]:[^:]*:Knave Of Hearts:5EB2:/ # Magic Artillery Beta cast -1294.3 "Magic Artillery Beta" sync / 1[56]:[^:]*:Knave Of Hearts:5EB3:/ # damage +1246.6 "Replicate" Ability { id: "5EA9", source: "Knave Of Hearts" } +1257.9 "Stacking The Deck" Ability { id: "60F0", source: "Copied Knave" } +1268.1 "Lunge 1" Ability { id: "5EB1", source: "Knave Of Hearts" } +1269.2 "--sync--" Ability { id: "5EB0", source: "Knave Of Hearts" } +1278.1 "Lunge 2" Ability { id: "5EB1", source: "Copied Knave" } +1280.1 "Colossal Impact" Ability { id: ["60C8", "5CFD"], source: "Knave Of Hearts" } +1287.2 "--sync--" Ability { id: "5EB2", source: "Knave Of Hearts" } # Magic Artillery Beta cast +1294.3 "Magic Artillery Beta" Ability { id: "5EB3", source: "Knave Of Hearts" } # damage -1305.4 "Spheroids" sync / 1[56]:[^:]*:Knave Of Hearts:5EA8:/ -1309.6 "Knavish Bullets" sync / 1[56]:[^:]*:Spheroid:5EAD:/ -1318.3 "Colossal Impact" sync / 1[56]:[^:]*:Knave Of Hearts:5EA[47]:/ -1332.5 "Roar" sync / 1[56]:[^:]*:Knave Of Hearts:5EB5:/ +1305.4 "Spheroids" Ability { id: "5EA8", source: "Knave Of Hearts" } +1309.6 "Knavish Bullets" Ability { id: "5EAD", source: "Spheroid" } +1318.3 "Colossal Impact" Ability { id: "5EA[47]", source: "Knave Of Hearts" } +1332.5 "Roar" Ability { id: "5EB5", source: "Knave Of Hearts" } # loop -1342.7 "Replicate" sync / 1[56]:[^:]*:Knave Of Hearts:5EA9:/ window 50,50 jump 1178.5 -1354.0 "Stacking The Deck" #sync / 1[56]:[^:]*:Copied Knave:60F0:/ -1364.2 "Colossal Impact 1" #sync / 1[56]:[^:]*:Knave Of Hearts:5EA7:/ window 4,4 -1370.2 "Colossal Impact 2" #sync / 1[56]:[^:]*:Copied Knave:5EA7:/ window 4,4 -1372.3 "Spheroids" #sync / 1[56]:[^:]*:Knave Of Hearts:5EA8:/ window 10,10 -1375.2 "Colossal Impact 3" #sync / 1[56]:[^:]*:Copied Knave:5EA4:/ -1377.4 "--sync--" #sync / 1[56]:[^:]*:Knave Of Hearts:5EAA:/ # Magic Artillery Alpha cast -1385.4 "Magic Barrage 1" #sync / 1[56]:[^:]*:Spheroid:5EAC:/ -1385.5 "Magic Artillery Alpha" sync / 1[56]:[^:]*:Knave Of Hearts:5EAB:/ # damage -1388.4 "Magic Barrage 2" #sync / 1[56]:[^:]*:Spheroid:5EAC:/ -1403.6 "Light Leap" #sync / 1[56]:[^:]*:Knave Of Hearts:5EAE:/ +1342.7 "Replicate" Ability { id: "5EA9", source: "Knave Of Hearts" } window 50,50 jump 1178.5 +1354.0 "Stacking The Deck" #Ability { id: "60F0", source: "Copied Knave" } +1364.2 "Colossal Impact 1" #Ability { id: "5EA7", source: "Knave Of Hearts" } window 4,4 +1370.2 "Colossal Impact 2" #Ability { id: "5EA7", source: "Copied Knave" } window 4,4 +1372.3 "Spheroids" #Ability { id: "5EA8", source: "Knave Of Hearts" } window 10,10 +1375.2 "Colossal Impact 3" #Ability { id: "5EA4", source: "Copied Knave" } +1377.4 "--sync--" #Ability { id: "5EAA", source: "Knave Of Hearts" } # Magic Artillery Alpha cast +1385.4 "Magic Barrage 1" #Ability { id: "5EAC", source: "Spheroid" } +1385.5 "Magic Artillery Alpha" Ability { id: "5EAB", source: "Knave Of Hearts" } # damage +1388.4 "Magic Barrage 2" #Ability { id: "5EAC", source: "Spheroid" } +1403.6 "Light Leap" #Ability { id: "5EAE", source: "Knave Of Hearts" } 1403.6 "--untargetable--" -1405.7 "--sync--" #sync / 1[56]:[^:]*:Knave Of Hearts:5EB0:/ +1405.7 "--sync--" #Ability { id: "5EB0", source: "Knave Of Hearts" } 1407.7 "--targetable--" @@ -98,130 +98,130 @@ hideall "--sync--" # -it "Hansel" # Staging Node B will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E49:/ window 2000,0 -2012.0 "Upgraded Shield" sync / 1[56]:[^:]*:Gretel:5C6[89]:/ window 2012,10 -2012.0 "Upgraded Lance" sync / 1[56]:[^:]*:Hansel:5C6[AB]:/ window 2012,10 -2025.2 "Wail" sync / 1[56]:[^:]*:Hansel:5C77:/ -2025.3 "Crippling Blow (G)" sync / 1[56]:[^:]*:Gretel:5C78:/ -2035.5 "Wail" sync / 1[56]:[^:]*:Gretel:5C76:/ -2035.6 "Crippling Blow (H)" sync / 1[56]:[^:]*:Hansel:5C79:/ - -2043.8 "Tandem Assault: Bloody Sweep" sync / 1[56]:[^:]*:Gretel:61B8:/ -2046.0 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2056.2 "Bloody Sweep" sync / 1[56]:[^:]*:Gretel:5C54:/ - -2070.4 "Upgraded Shield" sync / 1[56]:[^:]*:Gretel:5C6[89]:/ -2070.4 "Upgraded Lance" sync / 1[56]:[^:]*:Hansel:5C6[AB]:/ -2083.6 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7A:/ # Seed Of Magic Alpha cast -2083.6 "--sync--" sync / 1[56]:[^:]*:Hansel:5C7B:/ # Riot Of Magic cast -2089.4 "Seed Of Magic Alpha" sync / 1[56]:[^:]*:Gretel:5C61:/ # damage -2089.4 "Riot Of Magic" sync / 1[56]:[^:]*:Hansel:5C63:/ # damage - -2098.9 "Tandem Assault: Passing Lance" sync / 1[56]:[^:]*:Gretel:61BC:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E49" } window 2000,0 +2012.0 "Upgraded Shield" Ability { id: "5C6[89]", source: "Gretel" } window 2012,10 +2012.0 "Upgraded Lance" Ability { id: "5C6[AB]", source: "Hansel" } window 2012,10 +2025.2 "Wail" Ability { id: "5C77", source: "Hansel" } +2025.3 "Crippling Blow (G)" Ability { id: "5C78", source: "Gretel" } +2035.5 "Wail" Ability { id: "5C76", source: "Gretel" } +2035.6 "Crippling Blow (H)" Ability { id: "5C79", source: "Hansel" } + +2043.8 "Tandem Assault: Bloody Sweep" Ability { id: "61B8", source: "Gretel" } +2046.0 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2056.2 "Bloody Sweep" Ability { id: "5C54", source: "Gretel" } + +2070.4 "Upgraded Shield" Ability { id: "5C6[89]", source: "Gretel" } +2070.4 "Upgraded Lance" Ability { id: "5C6[AB]", source: "Hansel" } +2083.6 "--sync--" Ability { id: "5C7A", source: "Gretel" } # Seed Of Magic Alpha cast +2083.6 "--sync--" Ability { id: "5C7B", source: "Hansel" } # Riot Of Magic cast +2089.4 "Seed Of Magic Alpha" Ability { id: "5C61", source: "Gretel" } # damage +2089.4 "Riot Of Magic" Ability { id: "5C63", source: "Hansel" } # damage + +2098.9 "Tandem Assault: Passing Lance" Ability { id: "61BC", source: "Gretel" } 2101.0 "--untargetable--" -2101.1 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2111.3 "Passing Lance" sync / 1[56]:[^:]*:Gretel:5C64:/ +2101.1 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2111.3 "Passing Lance" Ability { id: "5C64", source: "Gretel" } 2116.1 "--targetable--" -2126.2 "Upgraded Shield" sync / 1[56]:[^:]*:Gretel:5C6[89]:/ -2126.2 "Upgraded Lance" sync / 1[56]:[^:]*:Hansel:5C6[AB]:/ -2139.5 "Wail" sync / 1[56]:[^:]*:Hansel:5C77:/ -2139.6 "Crippling Blow (G)" sync / 1[56]:[^:]*:Gretel:5C78:/ -2149.8 "Wail" sync / 1[56]:[^:]*:Gretel:5C76:/ -2149.9 "Crippling Blow (H)" sync / 1[56]:[^:]*:Hansel:5C79:/ - -2162.2 "Tandem Assault: Bloody Sweep" sync / 1[56]:[^:]*:Gretel:61B8:/ -2164.4 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2166.5 "Tandem" sync / 1[56]:[^:]*:Gretel:5C58:/ -2176.7 "Transference" sync / 1[56]:[^:]*:Gretel:5CF1:/ -2181.6 "Bloody Sweep" sync / 1[56]:[^:]*:Gretel:5C56:/ - -2184.9 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2192.1 "Wandering Trail" sync / 1[56]:[^:]*:Gretel:5C5A:/ -2199.3 "Tandem Assault: Breakthrough" sync / 1[56]:[^:]*:Gretel:61BA:/ +2126.2 "Upgraded Shield" Ability { id: "5C6[89]", source: "Gretel" } +2126.2 "Upgraded Lance" Ability { id: "5C6[AB]", source: "Hansel" } +2139.5 "Wail" Ability { id: "5C77", source: "Hansel" } +2139.6 "Crippling Blow (G)" Ability { id: "5C78", source: "Gretel" } +2149.8 "Wail" Ability { id: "5C76", source: "Gretel" } +2149.9 "Crippling Blow (H)" Ability { id: "5C79", source: "Hansel" } + +2162.2 "Tandem Assault: Bloody Sweep" Ability { id: "61B8", source: "Gretel" } +2164.4 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2166.5 "Tandem" Ability { id: "5C58", source: "Gretel" } +2176.7 "Transference" Ability { id: "5CF1", source: "Gretel" } +2181.6 "Bloody Sweep" Ability { id: "5C56", source: "Gretel" } + +2184.9 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2192.1 "Wandering Trail" Ability { id: "5C5A", source: "Gretel" } +2199.3 "Tandem Assault: Breakthrough" Ability { id: "61BA", source: "Gretel" } 2201.4 "--untargetable--" -2201.5 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2212.8 "Breakthrough" sync / 1[56]:[^:]*:Hansel:5C5E:/ -2213.1 "Uneven Footing" sync / 1[56]:[^:]*:Hansel & Gretel:5C5F:/ +2201.5 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2212.8 "Breakthrough" Ability { id: "5C5E", source: "Hansel" } +2213.1 "Uneven Footing" Ability { id: "5C5F", source: "Hansel & Gretel" } 2214.9 "--targetable--" -2227.0 "Upgraded Shield" sync / 1[56]:[^:]*:Gretel:5C6[89]:/ -2227.0 "Upgraded Lance" sync / 1[56]:[^:]*:Hansel:5C6[AB]:/ -2240.2 "Wail" sync / 1[56]:[^:]*:Hansel:5C77:/ -2240.3 "Crippling Blow (G)" sync / 1[56]:[^:]*:Gretel:5C78:/ -2250.5 "Wail" sync / 1[56]:[^:]*:Gretel:5C76:/ -2250.6 "Crippling Blow (H)" sync / 1[56]:[^:]*:Hansel:5C79:/ +2227.0 "Upgraded Shield" Ability { id: "5C6[89]", source: "Gretel" } +2227.0 "Upgraded Lance" Ability { id: "5C6[AB]", source: "Hansel" } +2240.2 "Wail" Ability { id: "5C77", source: "Hansel" } +2240.3 "Crippling Blow (G)" Ability { id: "5C78", source: "Gretel" } +2250.5 "Wail" Ability { id: "5C76", source: "Gretel" } +2250.6 "Crippling Blow (H)" Ability { id: "5C79", source: "Hansel" } -2262.9 "Tandem Assault: Passing Lance" sync / 1[56]:[^:]*:Gretel:61BC:/ +2262.9 "Tandem Assault: Passing Lance" Ability { id: "61BC", source: "Gretel" } 2266.1 "--untargetable--" -2266.2 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2267.9 "Seed Of Magic Alpha" sync / 1[56]:[^:]*:Gretel:5C61:/ -2267.9 "Riot Of Magic" sync / 1[56]:[^:]*:Hansel:5C63:/ -2276.4 "Passing Lance" sync / 1[56]:[^:]*:Gretel:5C64:/ +2266.2 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2267.9 "Seed Of Magic Alpha" Ability { id: "5C61", source: "Gretel" } +2267.9 "Riot Of Magic" Ability { id: "5C63", source: "Hansel" } +2276.4 "Passing Lance" Ability { id: "5C64", source: "Gretel" } 2281.2 "--targetable--" -2291.3 "Upgraded Shield" sync / 1[56]:[^:]*:Gretel:5C6[89]:/ -2291.3 "Upgraded Lance" sync / 1[56]:[^:]*:Hansel:5C6A:/ -2307.6 "Wandering Trail" sync / 1[56]:[^:]*:Gretel:5C5A:/ -2315.8 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2322.5 "Hungry Lance" sync / 1[56]:[^:]*:Gretel:5C71:/ +2291.3 "Upgraded Shield" Ability { id: "5C6[89]", source: "Gretel" } +2291.3 "Upgraded Lance" Ability { id: "5C6A", source: "Hansel" } +2307.6 "Wandering Trail" Ability { id: "5C5A", source: "Gretel" } +2315.8 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2322.5 "Hungry Lance" Ability { id: "5C71", source: "Gretel" } -2334.7 "Upgraded Shield" sync / 1[56]:[^:]*:Gretel:5C6[89]:/ -2334.7 "Upgraded Lance" sync / 1[56]:[^:]*:Hansel:5C6[AB]:/ -2351.0 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7C:/ # Seed Of Magic Beta cast -2353.2 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2359.9 "Wandering Trail" sync / 1[56]:[^:]*:Gretel:5C5A:/ -2361.8 "Seed Of Magic Beta" sync / 1[56]:[^:]*:Gretel:5C75:/ # damage +2334.7 "Upgraded Shield" Ability { id: "5C6[89]", source: "Gretel" } +2334.7 "Upgraded Lance" Ability { id: "5C6[AB]", source: "Hansel" } +2351.0 "--sync--" Ability { id: "5C7C", source: "Gretel" } # Seed Of Magic Beta cast +2353.2 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2359.9 "Wandering Trail" Ability { id: "5C5A", source: "Gretel" } +2361.8 "Seed Of Magic Beta" Ability { id: "5C75", source: "Gretel" } # damage -2367.1 "Tandem Assault: Breakthrough" sync / 1[56]:[^:]*:Gretel:61BA:/ +2367.1 "Tandem Assault: Breakthrough" Ability { id: "61BA", source: "Gretel" } 2369.2 "--untargetable--" -2369.3 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2380.6 "Breakthrough" sync / 1[56]:[^:]*:Hansel:5C5E:/ -2380.9 "Uneven Footing" sync / 1[56]:[^:]*:Hansel & Gretel:5C5F:/ +2369.3 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2380.6 "Breakthrough" Ability { id: "5C5E", source: "Hansel" } +2380.9 "Uneven Footing" Ability { id: "5C5F", source: "Hansel & Gretel" } 2382.7 "--targetable--" -2394.8 "Upgraded Shield" sync / 1[56]:[^:]*:Gretel:5C6[89]:/ -2394.8 "Upgraded Lance" sync / 1[56]:[^:]*:Hansel:5C6[AB]:/ -2408.1 "Wail" sync / 1[56]:[^:]*:Hansel:5C77:/ -2408.2 "Crippling Blow (G)" sync / 1[56]:[^:]*:Gretel:5C78:/ -2418.4 "Wail" sync / 1[56]:[^:]*:Gretel:5C76:/ -2418.5 "Crippling Blow (H)" sync / 1[56]:[^:]*:Hansel:5C79:/ - -2430.8 "Tandem Assault: Bloody Sweep" sync / 1[56]:[^:]*:Gretel:61B8:/ -2433.0 "--sync--" sync / 1[56]:[^:]*:Gretel:5C7E:/ -2435.3 "Tandem" sync / 1[56]:[^:]*:Gretel:5C58:/ -2445.5 "Transference" sync / 1[56]:[^:]*:Gretel:5CF1:/ -2450.4 "Bloody Sweep" sync / 1[56]:[^:]*:Gretel:5C56:/ -2464.6 "Upgraded Shield" sync / 1[56]:[^:]*:Gretel:5C6[89]:/ -2464.6 "Upgraded Lance" sync / 1[56]:[^:]*:Hansel:5C6[AB]:/ +2394.8 "Upgraded Shield" Ability { id: "5C6[89]", source: "Gretel" } +2394.8 "Upgraded Lance" Ability { id: "5C6[AB]", source: "Hansel" } +2408.1 "Wail" Ability { id: "5C77", source: "Hansel" } +2408.2 "Crippling Blow (G)" Ability { id: "5C78", source: "Gretel" } +2418.4 "Wail" Ability { id: "5C76", source: "Gretel" } +2418.5 "Crippling Blow (H)" Ability { id: "5C79", source: "Hansel" } + +2430.8 "Tandem Assault: Bloody Sweep" Ability { id: "61B8", source: "Gretel" } +2433.0 "--sync--" Ability { id: "5C7E", source: "Gretel" } +2435.3 "Tandem" Ability { id: "5C58", source: "Gretel" } +2445.5 "Transference" Ability { id: "5CF1", source: "Gretel" } +2450.4 "Bloody Sweep" Ability { id: "5C56", source: "Gretel" } +2464.6 "Upgraded Shield" Ability { id: "5C6[89]", source: "Gretel" } +2464.6 "Upgraded Lance" Ability { id: "5C6[AB]", source: "Hansel" } # loop -2476.9 "Tandem Assault: Passing Lance" sync / 1[56]:[^:]*:Gretel:61BC:/ window 100,100 jump 2262.9 +2476.9 "Tandem Assault: Passing Lance" Ability { id: "61BC", source: "Gretel" } window 100,100 jump 2262.9 2480.1 "--untargetable--" -2480.2 "--sync--" #sync / 1[56]:[^:]*:Gretel:5C7E:/ -2481.9 "Seed Of Magic Alpha" #sync / 1[56]:[^:]*:Gretel:5C61:/ -2481.9 "Riot Of Magic" #sync / 1[56]:[^:]*:Hansel:5C63:/ -2490.4 "Passing Lance" #sync / 1[56]:[^:]*:Gretel:5C64:/ +2480.2 "--sync--" #Ability { id: "5C7E", source: "Gretel" } +2481.9 "Seed Of Magic Alpha" #Ability { id: "5C61", source: "Gretel" } +2481.9 "Riot Of Magic" #Ability { id: "5C63", source: "Hansel" } +2490.4 "Passing Lance" #Ability { id: "5C64", source: "Gretel" } 2495.2 "--targetable--" -2505.3 "Upgraded Shield" #sync / 1[56]:[^:]*:Gretel:5C6[89]:/ -2505.3 "Upgraded Lance" #sync / 1[56]:[^:]*:Hansel:5C6A:/ -2521.6 "Wandering Trail" #sync / 1[56]:[^:]*:Gretel:5C5A:/ -2529.8 "--sync--" #sync / 1[56]:[^:]*:Gretel:5C7E:/ -2536.5 "Hungry Lance" #sync / 1[56]:[^:]*:Gretel:5C71:/ +2505.3 "Upgraded Shield" #Ability { id: "5C6[89]", source: "Gretel" } +2505.3 "Upgraded Lance" #Ability { id: "5C6A", source: "Hansel" } +2521.6 "Wandering Trail" #Ability { id: "5C5A", source: "Gretel" } +2529.8 "--sync--" #Ability { id: "5C7E", source: "Gretel" } +2536.5 "Hungry Lance" #Ability { id: "5C71", source: "Gretel" } # Enrage (when one dies) -2700.0 "--sync--" sync / 14:[^:]*:Gretel:5C73:/ window 700,0 -2700.0 "--sync--" sync / 14:[^:]*:Hansel:5C74:/ window 700,0 +2700.0 "--sync--" StartsUsing { id: "5C73", source: "Gretel" } window 700,0 +2700.0 "--sync--" StartsUsing { id: "5C74", source: "Hansel" } window 700,0 # Gretel does 57C3 and Hansel does 57C4, and they both do 5C75 -2708.0 "Lamentation" sync / 1[56]:[^:]*:(Gretel|Hansel):(5C73|5C74):/ window 100,100 -2713.8 "Seed Of Magic Beta" sync / 1[56]:[^:]*:(Gretel|Hansel):5C75:/ -2718.1 "Lamentation" #sync / 1[56]:[^:]*:(Gretel|Hansel):(5C73|5C74):/ -2723.9 "Seed Of Magic Beta" #sync / 1[56]:[^:]*:(Gretel|Hansel):5C75:/ -2728.2 "Lamentation" #sync / 1[56]:[^:]*:(Gretel|Hansel):(5C73|5C74):/ -2734.0 "Seed Of Magic Beta" #sync / 1[56]:[^:]*:(Gretel|Hansel):5C75:/ -2738.3 "Lamentation" #sync / 1[56]:[^:]*:(Gretel|Hansel):(5C73|5C74):/ +2708.0 "Lamentation" Ability { id: ["5C73", "5C74"], source: ["Gretel", "Hansel"] } window 100,100 +2713.8 "Seed Of Magic Beta" Ability { id: "5C75", source: ["Gretel", "Hansel"] } +2718.1 "Lamentation" #Ability { id: ["5C73", "5C74"], source: ["Gretel", "Hansel"] } +2723.9 "Seed Of Magic Beta" #Ability { id: "5C75", source: ["Gretel", "Hansel"] } +2728.2 "Lamentation" #Ability { id: ["5C73", "5C74"], source: ["Gretel", "Hansel"] } +2734.0 "Seed Of Magic Beta" #Ability { id: "5C75", source: ["Gretel", "Hansel"] } +2738.3 "Lamentation" #Ability { id: ["5C73", "5C74"], source: ["Gretel", "Hansel"] } ### Assorted Trash @@ -230,7 +230,7 @@ hideall "--sync--" # -ii 5BFD 5BF7 5BF8 592A # -p 5BFE:3513.1 # Staging Node C will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E4A:/ window 10000,0 +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E4A" } window 10000,0 # A bunch of 2P doing 5FB7/5BF8 blade flurry, but hard to sync this. # Presumably once they die, then flight units show up. @@ -239,17 +239,17 @@ hideall "--sync--" 3031.6 "Lightfast Blade 1?" 3500.0 "--targetable--" -3501.1 "--sync--" sync / 14:[^:]*:2P-Operated Flight Unit:5BFE:/ window 3501.1,0 +3501.1 "--sync--" StartsUsing { id: "5BFE", source: "2P-Operated Flight Unit" } window 3501.1,0 3505.0 "--targetable--" 3510.0 "--targetable--" -3513.1 "Lightfast Blade 1" sync / 1[56]:[^:]*:2P-Operated Flight Unit:5BFE:/ window 3513.1,3 +3513.1 "Lightfast Blade 1" Ability { id: "5BFE", source: "2P-Operated Flight Unit" } window 3513.1,3 3515.0 "--targetable--" -3518.1 "Lightfast Blade 2" sync / 1[56]:[^:]*:2P-Operated Flight Unit:5BFE:/ -3523.1 "Lightfast Blade 3" sync / 1[56]:[^:]*:2P-Operated Flight Unit:5BFE:/ -3528.1 "Lightfast Blade 4" sync / 1[56]:[^:]*:2P-Operated Flight Unit:5BFE:/ -3539.2 "Maneuver: Standard Laser" sync / 1[56]:[^:]*:2P-Operated Flight Unit:5BFF:/ -3549.4 "Maneuver: Standard Laser" sync / 1[56]:[^:]*:2P-Operated Flight Unit:5BFF:/ -3568.6 "Maneuver: Standard Laser" sync / 1[56]:[^:]*:2P-Operated Flight Unit:5BFF:/ +3518.1 "Lightfast Blade 2" Ability { id: "5BFE", source: "2P-Operated Flight Unit" } +3523.1 "Lightfast Blade 3" Ability { id: "5BFE", source: "2P-Operated Flight Unit" } +3528.1 "Lightfast Blade 4" Ability { id: "5BFE", source: "2P-Operated Flight Unit" } +3539.2 "Maneuver: Standard Laser" Ability { id: "5BFF", source: "2P-Operated Flight Unit" } +3549.4 "Maneuver: Standard Laser" Ability { id: "5BFF", source: "2P-Operated Flight Unit" } +3568.6 "Maneuver: Standard Laser" Ability { id: "5BFF", source: "2P-Operated Flight Unit" } ### ??? more lasers? # After flight units die, then a bunch more 2P doing 5BFA Balanced Edge/5BFB Whirling Assault @@ -264,97 +264,97 @@ hideall "--sync--" # Phase 1 # Staging Node D will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E4B:/ window 4000,0 -4009.0 "--sync--" sync / 14:[^:]*:Red Girl:6012:/ window 4009,10 -4014.0 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6012:/ -4019.9 "Shockwave" sync / 1[56]:[^:]*:Red Girl:600E:/ -4026.0 "Generate: Barrier" sync / 1[56]:[^:]*:Red Girl:6004:/ -4031.0 "Shock: White" sync / 1[56]:[^:]*:Red Girl:600F:/ -4037.1 "Generate: Barrier" sync / 1[56]:[^:]*:Red Girl:6004:/ -4041.1 "Point: White" sync / 1[56]:[^:]*:White Lance:601F:/ -4043.2 "Shockwave" sync / 1[56]:[^:]*:Red Girl:600E:/ -4054.3 "Shock: Black" sync / 1[56]:[^:]*:Red Girl:6011:/ -4060.4 "Generate: Barrier" sync / 1[56]:[^:]*:Red Girl:6004:/ -4064.5 "Point: Black" sync / 1[56]:[^:]*:Black Lance:6020:/ -4074.7 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6012:/ - -4086.7 "Vortex" sync / 1[56]:[^:]*:Red Girl:6017:/ -4088.7 "Generate: Barrier" sync / 1[56]:[^:]*:Red Girl:6004:/ -4092.8 "Recreate Meteor" sync / 1[56]:[^:]*:Red Girl:6147:/ -4099.9 "Shockwave" sync / 1[56]:[^:]*:Red Girl:600E:/ -4106.0 "Shock: White" sync / 1[56]:[^:]*:Red Girl:600F:/ -4111.8 "Wipe: White" sync / 1[56]:[^:]*:Red Girl:600C:/ -4118.1 "Manipulate Energy" sync / 1[56]:[^:]*:Red Girl:6018:/ -4129.3 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6012:/ -4142.5 "Replicate" sync / 1[56]:[^:]*:Red Girl:600A:/ -4153.6 "Diffuse Energy" sync / 1[56]:[^:]*:Red Girl:6023:/ duration 13.7 -4173.9 "Manipulate Energy" sync / 1[56]:[^:]*:Red Girl:6018:/ +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E4B" } window 4000,0 +4009.0 "--sync--" StartsUsing { id: "6012", source: "Red Girl" } window 4009,10 +4014.0 "Cruelty" Ability { id: "6012", source: "Red Girl" } +4019.9 "Shockwave" Ability { id: "600E", source: "Red Girl" } +4026.0 "Generate: Barrier" Ability { id: "6004", source: "Red Girl" } +4031.0 "Shock: White" Ability { id: "600F", source: "Red Girl" } +4037.1 "Generate: Barrier" Ability { id: "6004", source: "Red Girl" } +4041.1 "Point: White" Ability { id: "601F", source: "White Lance" } +4043.2 "Shockwave" Ability { id: "600E", source: "Red Girl" } +4054.3 "Shock: Black" Ability { id: "6011", source: "Red Girl" } +4060.4 "Generate: Barrier" Ability { id: "6004", source: "Red Girl" } +4064.5 "Point: Black" Ability { id: "6020", source: "Black Lance" } +4074.7 "Cruelty" Ability { id: "6012", source: "Red Girl" } + +4086.7 "Vortex" Ability { id: "6017", source: "Red Girl" } +4088.7 "Generate: Barrier" Ability { id: "6004", source: "Red Girl" } +4092.8 "Recreate Meteor" Ability { id: "6147", source: "Red Girl" } +4099.9 "Shockwave" Ability { id: "600E", source: "Red Girl" } +4106.0 "Shock: White" Ability { id: "600F", source: "Red Girl" } +4111.8 "Wipe: White" Ability { id: "600C", source: "Red Girl" } +4118.1 "Manipulate Energy" Ability { id: "6018", source: "Red Girl" } +4129.3 "Cruelty" Ability { id: "6012", source: "Red Girl" } +4142.5 "Replicate" Ability { id: "600A", source: "Red Girl" } +4153.6 "Diffuse Energy" Ability { id: "6023", source: "Red Girl" } duration 13.7 +4173.9 "Manipulate Energy" Ability { id: "6018", source: "Red Girl" } # Phase 2: hacking -4189.1 "Sublime Transcendence" sync / 1[56]:[^:]*:Red Girl:620A:/ +4189.1 "Sublime Transcendence" Ability { id: "620A", source: "Red Girl" } 4193.2 "--untargetable--" -4204.5 "--sync--" sync / 1[56]:[^:]*:Red Girl:601D:/ window 300,10 -4219.5 "Wave: White / Wave: Black" sync / 1[56]:[^:]*:Red Sphere:618[DE]:/ -4229.7 "Wave: White / Wave: Black" sync / 1[56]:[^:]*:Red Sphere:618[DE]:/ -4239.8 "Wave: Black / Wave: Black" sync / 1[56]:[^:]*:Red Sphere:618[DE]:/ -4249.9 "Wave: White / Wave: Black" sync / 1[56]:[^:]*:Red Sphere:618[DE]:/ window 10,100 -4260.0 "Wave: Black / Wave: Black" #sync / 1[56]:[^:]*:Red Sphere:618[DE]:/ -4270.1 "Wave: Black / Wave: Black" #sync / 1[56]:[^:]*:Red Sphere:618[DE]:/ -4280.2 "Wave: Black / Wave: Black" #sync / 1[56]:[^:]*:Red Sphere:618[DE]:/ +4204.5 "--sync--" Ability { id: "601D", source: "Red Girl" } window 300,10 +4219.5 "Wave: White / Wave: Black" Ability { id: "618[DE]", source: "Red Sphere" } +4229.7 "Wave: White / Wave: Black" Ability { id: "618[DE]", source: "Red Sphere" } +4239.8 "Wave: Black / Wave: Black" Ability { id: "618[DE]", source: "Red Sphere" } +4249.9 "Wave: White / Wave: Black" Ability { id: "618[DE]", source: "Red Sphere" } window 10,100 +4260.0 "Wave: Black / Wave: Black" #Ability { id: "618[DE]", source: "Red Sphere" } +4270.1 "Wave: Black / Wave: Black" #Ability { id: "618[DE]", source: "Red Sphere" } +4280.2 "Wave: Black / Wave: Black" #Ability { id: "618[DE]", source: "Red Sphere" } # Phase 3 -4500.0 "--sync--" sync / 14:[^:]*:Red Girl:6013:/ window 300,10 -4505.0 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6013:/ -4521.2 "Child's Play" sync / 1[56]:[^:]*:Red Girl:6024:/ -4527.1 "Explosion" sync / 1[56]:[^:]*:Black Pylon:6026:/ -4533.3 "Shockwave" sync / 1[56]:[^:]*:Red Girl:600E:/ -4545.4 "Shock: Black" sync / 1[56]:[^:]*:Red Girl:6011:/ -4545.5 "Child's Play" sync / 1[56]:[^:]*:Red Girl:6025:/ -4551.4 "Explosion" sync / 1[56]:[^:]*:Black Pylon:6026:/ -4559.7 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6013:/ -4572.9 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6013:/ - -4581.0 "Generate: Barrier" sync / 1[56]:[^:]*:Red Girl:6005:/ -4591.1 "Point: Black" sync / 1[56]:[^:]*:Black Lance:6020:/ -4591.1 "Point: White" sync / 1[56]:[^:]*:White Lance:601F:/ -4597.2 "Generate: Barrier" sync / 1[56]:[^:]*:Red Girl:6005:/ -4601.3 "Point: Black" sync / 1[56]:[^:]*:Black Lance:6020:/ -4601.3 "Point: White" sync / 1[56]:[^:]*:White Lance:601F:/ -4601.3 "Recreate Meteor" sync / 1[56]:[^:]*:Red Girl:6147:/ -4611.4 "Point: Black" sync / 1[56]:[^:]*:Black Lance:6020:/ -4620.4 "Wipe: Black" sync / 1[56]:[^:]*:Red Girl:600D:/ -4620.4 "Wipe: White" sync / 1[56]:[^:]*:Red Girl:600C:/ -4628.6 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6013:/ - -4647.9 "Replicate" sync / 1[56]:[^:]*:Red Girl:600B:/ -4658.9 "Diffuse Energy" sync / 1[56]:[^:]*:Red Girl:6023:/ duration 13.7 -4663.1 "Child's Play" sync / 1[56]:[^:]*:Red Girl:6024:/ -4676.2 "Manipulate Energy" sync / 1[56]:[^:]*:Red Girl:6019:/ -4691.4 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6013:/ -4707.6 "Child's Play" sync / 1[56]:[^:]*:Red Girl:6025:/ -4713.5 "Explosion" sync / 1[56]:[^:]*:Black Pylon:6026:/ -4719.7 "Shockwave" sync / 1[56]:[^:]*:Red Girl:600E:/ -4731.8 "Shock: Black" sync / 1[56]:[^:]*:Red Girl:6011:/ -4731.9 "Child's Play" sync / 1[56]:[^:]*:Red Girl:6025:/ -4737.8 "Explosion" sync / 1[56]:[^:]*:Black Pylon:6026:/ -4746.1 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6013:/ -4756.3 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6013:/ -4763.4 "Manipulate Energy" sync / 1[56]:[^:]*:Red Girl:6018:/ -4780.7 "Cruelty" sync / 1[56]:[^:]*:Red Girl:6013:/ +4500.0 "--sync--" StartsUsing { id: "6013", source: "Red Girl" } window 300,10 +4505.0 "Cruelty" Ability { id: "6013", source: "Red Girl" } +4521.2 "Child's Play" Ability { id: "6024", source: "Red Girl" } +4527.1 "Explosion" Ability { id: "6026", source: "Black Pylon" } +4533.3 "Shockwave" Ability { id: "600E", source: "Red Girl" } +4545.4 "Shock: Black" Ability { id: "6011", source: "Red Girl" } +4545.5 "Child's Play" Ability { id: "6025", source: "Red Girl" } +4551.4 "Explosion" Ability { id: "6026", source: "Black Pylon" } +4559.7 "Cruelty" Ability { id: "6013", source: "Red Girl" } +4572.9 "Cruelty" Ability { id: "6013", source: "Red Girl" } + +4581.0 "Generate: Barrier" Ability { id: "6005", source: "Red Girl" } +4591.1 "Point: Black" Ability { id: "6020", source: "Black Lance" } +4591.1 "Point: White" Ability { id: "601F", source: "White Lance" } +4597.2 "Generate: Barrier" Ability { id: "6005", source: "Red Girl" } +4601.3 "Point: Black" Ability { id: "6020", source: "Black Lance" } +4601.3 "Point: White" Ability { id: "601F", source: "White Lance" } +4601.3 "Recreate Meteor" Ability { id: "6147", source: "Red Girl" } +4611.4 "Point: Black" Ability { id: "6020", source: "Black Lance" } +4620.4 "Wipe: Black" Ability { id: "600D", source: "Red Girl" } +4620.4 "Wipe: White" Ability { id: "600C", source: "Red Girl" } +4628.6 "Cruelty" Ability { id: "6013", source: "Red Girl" } + +4647.9 "Replicate" Ability { id: "600B", source: "Red Girl" } +4658.9 "Diffuse Energy" Ability { id: "6023", source: "Red Girl" } duration 13.7 +4663.1 "Child's Play" Ability { id: "6024", source: "Red Girl" } +4676.2 "Manipulate Energy" Ability { id: "6019", source: "Red Girl" } +4691.4 "Cruelty" Ability { id: "6013", source: "Red Girl" } +4707.6 "Child's Play" Ability { id: "6025", source: "Red Girl" } +4713.5 "Explosion" Ability { id: "6026", source: "Black Pylon" } +4719.7 "Shockwave" Ability { id: "600E", source: "Red Girl" } +4731.8 "Shock: Black" Ability { id: "6011", source: "Red Girl" } +4731.9 "Child's Play" Ability { id: "6025", source: "Red Girl" } +4737.8 "Explosion" Ability { id: "6026", source: "Black Pylon" } +4746.1 "Cruelty" Ability { id: "6013", source: "Red Girl" } +4756.3 "Cruelty" Ability { id: "6013", source: "Red Girl" } +4763.4 "Manipulate Energy" Ability { id: "6018", source: "Red Girl" } +4780.7 "Cruelty" Ability { id: "6013", source: "Red Girl" } # loop -4788.8 "Generate: Barrier" sync / 1[56]:[^:]*:Red Girl:6005:/ window 100,100 jump 4581.0 -4798.9 "Point: Black" #sync / 1[56]:[^:]*:Black Lance:6020:/ -4798.9 "Point: White" #sync / 1[56]:[^:]*:White Lance:601F:/ -4805.0 "Generate: Barrier" #sync / 1[56]:[^:]*:Red Girl:6005:/ -4809.1 "Point: Black" #sync / 1[56]:[^:]*:Black Lance:6020:/ -4809.1 "Point: White" #sync / 1[56]:[^:]*:White Lance:601F:/ -4809.1 "Recreate Meteor" #sync / 1[56]:[^:]*:Red Girl:6147:/ -4819.2 "Point: Black" #sync / 1[56]:[^:]*:Black Lance:6020:/ -4828.2 "Wipe: Black" #sync / 1[56]:[^:]*:Red Girl:600D:/ -4828.2 "Wipe: White" #sync / 1[56]:[^:]*:Red Girl:600C:/ -4836.4 "Cruelty" #sync / 1[56]:[^:]*:Red Girl:6013:/ +4788.8 "Generate: Barrier" Ability { id: "6005", source: "Red Girl" } window 100,100 jump 4581.0 +4798.9 "Point: Black" #Ability { id: "6020", source: "Black Lance" } +4798.9 "Point: White" #Ability { id: "601F", source: "White Lance" } +4805.0 "Generate: Barrier" #Ability { id: "6005", source: "Red Girl" } +4809.1 "Point: Black" #Ability { id: "6020", source: "Black Lance" } +4809.1 "Point: White" #Ability { id: "601F", source: "White Lance" } +4809.1 "Recreate Meteor" #Ability { id: "6147", source: "Red Girl" } +4819.2 "Point: Black" #Ability { id: "6020", source: "Black Lance" } +4828.2 "Wipe: Black" #Ability { id: "600D", source: "Red Girl" } +4828.2 "Wipe: White" #Ability { id: "600C", source: "Red Girl" } +4836.4 "Cruelty" #Ability { id: "6013", source: "Red Girl" } ### Trash-talking Philosophers @@ -363,37 +363,37 @@ hideall "--sync--" # -p 5C00:5013.3 # -ii 5CEC 5CED 5CEE 5C02 5C05 5C07 5C08 # Ascension Platform will be sealed off -5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E4C:/ window 5000,0 -5013.3 "Deploy Armaments" sync / 1[56]:[^:]*:Xun-Zi:5C0[03]:/ window 5013.3,7 -5023.4 "Deploy Armaments" sync / 1[56]:[^:]*:Xun-Zi:5C0[03]:/ -5036.4 "Universal Assault" sync / 1[56]:[^:]*:Xun-Zi:5C06:/ +5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E4C" } window 5000,0 +5013.3 "Deploy Armaments" Ability { id: "5C0[03]", source: "Xun-Zi" } window 5013.3,7 +5023.4 "Deploy Armaments" Ability { id: "5C0[03]", source: "Xun-Zi" } +5036.4 "Universal Assault" Ability { id: "5C06", source: "Xun-Zi" } # ??? # ~70% HP push? -5200.0 "--untargetable--" sync / 22:........:Xun-Zi:........:Xun-Zi:00/ window 200,0 +5200.0 "--untargetable--" NameToggle { name: "Xun-Zi", toggle: "00" } window 200,0 5210.9 "--targetable--" -5221.0 "Deploy Armaments" sync / 1[56]:[^:]*:Xun-Zi:5C0[03]:/ -5224.0 "Deploy Armaments" sync / 1[56]:[^:]*:Meng-Zi:5C0[03]:/ +5221.0 "Deploy Armaments" Ability { id: "5C0[03]", source: "Xun-Zi" } +5224.0 "Deploy Armaments" Ability { id: "5C0[03]", source: "Meng-Zi" } -5235.9 "Deploy Armaments" sync / 1[56]:[^:]*:Meng-Zi:5C0[03]:/ -5238.9 "Deploy Armaments" sync / 1[56]:[^:]*:Xun-Zi:5C0[03]:/ +5235.9 "Deploy Armaments" Ability { id: "5C0[03]", source: "Meng-Zi" } +5238.9 "Deploy Armaments" Ability { id: "5C0[03]", source: "Xun-Zi" } -5250.1 "Deploy Armaments" sync / 1[56]:[^:]*:Xun-Zi:5C0[14]:/ -5250.1 "Deploy Armaments" sync / 1[56]:[^:]*:Meng-Zi:5C0[14]:/ +5250.1 "Deploy Armaments" Ability { id: "5C0[14]", source: "Xun-Zi" } +5250.1 "Deploy Armaments" Ability { id: "5C0[14]", source: "Meng-Zi" } -5256.8 "High-Powered Laser" sync / 1[56]:[^:]*:Serial-Jointed Model:5C09:/ +5256.8 "High-Powered Laser" Ability { id: "5C09", source: "Serial-Jointed Model" } -5267.1 "Universal Assault" sync / 1[56]:[^:]*:Xun-Zi:5C06:/ -5270.1 "Universal Assault" sync / 1[56]:[^:]*:Meng-Zi:5C06:/ -5290.3 "Universal Assault" sync / 1[56]:[^:]*:Meng-Zi:5C06:/ -5293.3 "Universal Assault" sync / 1[56]:[^:]*:Xun-Zi:5C06:/ +5267.1 "Universal Assault" Ability { id: "5C06", source: "Xun-Zi" } +5270.1 "Universal Assault" Ability { id: "5C06", source: "Meng-Zi" } +5290.3 "Universal Assault" Ability { id: "5C06", source: "Meng-Zi" } +5293.3 "Universal Assault" Ability { id: "5C06", source: "Xun-Zi" } # loop? # not sure what happens if Xun-Zi is still alive here? -5312.7 "Deploy Armaments" sync / 1[56]:[^:]*:Meng-Zi:5C0[03]:/ -5322.8 "Deploy Armaments" sync / 1[56]:[^:]*:Meng-Zi:5C0[03]:/ -5333.9 "Deploy Armaments" sync / 1[56]:[^:]*:Meng-Zi:5C01:/ -5340.6 "High-Powered Laser" sync / 1[56]:[^:]*:Serial-Jointed Model:5C09:/ +5312.7 "Deploy Armaments" Ability { id: "5C0[03]", source: "Meng-Zi" } +5322.8 "Deploy Armaments" Ability { id: "5C0[03]", source: "Meng-Zi" } +5333.9 "Deploy Armaments" Ability { id: "5C01", source: "Meng-Zi" } +5340.6 "High-Powered Laser" Ability { id: "5C09", source: "Serial-Jointed Model" } @@ -403,49 +403,49 @@ hideall "--sync--" # -p 5BDD:6012.3 # -ii 5CEC 5CED 5CEE 5CEF 5FFC 5FFF 5BDA 5BDC # Beyond will be sealed off -6000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E4D:/ window 6000,0 -6007.3 "--sync--" sync / 14:[^:]*:False Idol:5BDD:/ window 6007.3,10 -6012.3 "Screaming Score" sync / 1[56]:[^:]*:False Idol:5BDD:/ -6025.5 "Made Magic" sync / 1[56]:[^:]*:False Idol:5BD[67]:/ -6035.7 "Made Magic" sync / 1[56]:[^:]*:False Idol:5BD[67]:/ -6044.9 "--sync--" sync / 1[56]:[^:]*:False Idol:5BD8:/ # Lighter Note castbar -6053.9 "Lighter Note" sync / 1[56]:[^:]*:False Idol:5BD9:/ duration 6.2 -6063.1 "Rhythm Rings" sync / 1[56]:[^:]*:False Idol:5BD4:/ -6074.1 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6076.1 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6078.1 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6080.1 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6082.1 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6092.3 "Seed Of Magic" sync / 1[56]:[^:]*:False Idol:5BDE:/ -6093.4 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6095.4 "Scattered Magic" sync / 1[56]:[^:]*:False Idol:5BDF:/ -6097.0 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6107.6 "Made Magic" sync / 1[56]:[^:]*:False Idol:5BD[67]:/ -6115.8 "Screaming Score" sync / 1[56]:[^:]*:False Idol:5BDD:/ - -6128.0 "Darker Note" sync / 1[56]:[^:]*:False Idol:5BDB:/ -6137.2 "--sync--" sync / 1[56]:[^:]*:False Idol:5BD8:/ # Lighter Note castbar -6146.2 "Lighter Note" sync / 1[56]:[^:]*:False Idol:5BD9:/ duration 6.2 -6159.4 "Made Magic" sync / 1[56]:[^:]*:False Idol:5BD[67]:/ -6167.6 "Rhythm Rings" sync / 1[56]:[^:]*:False Idol:5BD4:/ -6173.8 "Seed Of Magic" sync / 1[56]:[^:]*:False Idol:5BDE:/ -6176.8 "Scattered Magic" sync / 1[56]:[^:]*:False Idol:5BDF:/ -6178.6 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6180.6 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6182.6 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6184.6 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6190.9 "Seed Of Magic" sync / 1[56]:[^:]*:False Idol:5BDE:/ -6193.9 "Scattered Magic" sync / 1[56]:[^:]*:False Idol:5BDF:/ -6197.0 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6200.5 "Magical Interference" #sync / 1[56]:[^:]*:False Idol:5BD5:/ -6209.0 "Made Magic" sync / 1[56]:[^:]*:False Idol:5BD[67]:/ -6217.2 "Screaming Score" sync / 1[56]:[^:]*:False Idol:5BDD:/ -6225.4 "Screaming Score" sync / 1[56]:[^:]*:False Idol:5BDD:/ +6000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E4D" } window 6000,0 +6007.3 "--sync--" StartsUsing { id: "5BDD", source: "False Idol" } window 6007.3,10 +6012.3 "Screaming Score" Ability { id: "5BDD", source: "False Idol" } +6025.5 "Made Magic" Ability { id: "5BD[67]", source: "False Idol" } +6035.7 "Made Magic" Ability { id: "5BD[67]", source: "False Idol" } +6044.9 "--sync--" Ability { id: "5BD8", source: "False Idol" } # Lighter Note castbar +6053.9 "Lighter Note" Ability { id: "5BD9", source: "False Idol" } duration 6.2 +6063.1 "Rhythm Rings" Ability { id: "5BD4", source: "False Idol" } +6074.1 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6076.1 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6078.1 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6080.1 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6082.1 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6092.3 "Seed Of Magic" Ability { id: "5BDE", source: "False Idol" } +6093.4 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6095.4 "Scattered Magic" Ability { id: "5BDF", source: "False Idol" } +6097.0 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6107.6 "Made Magic" Ability { id: "5BD[67]", source: "False Idol" } +6115.8 "Screaming Score" Ability { id: "5BDD", source: "False Idol" } + +6128.0 "Darker Note" Ability { id: "5BDB", source: "False Idol" } +6137.2 "--sync--" Ability { id: "5BD8", source: "False Idol" } # Lighter Note castbar +6146.2 "Lighter Note" Ability { id: "5BD9", source: "False Idol" } duration 6.2 +6159.4 "Made Magic" Ability { id: "5BD[67]", source: "False Idol" } +6167.6 "Rhythm Rings" Ability { id: "5BD4", source: "False Idol" } +6173.8 "Seed Of Magic" Ability { id: "5BDE", source: "False Idol" } +6176.8 "Scattered Magic" Ability { id: "5BDF", source: "False Idol" } +6178.6 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6180.6 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6182.6 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6184.6 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6190.9 "Seed Of Magic" Ability { id: "5BDE", source: "False Idol" } +6193.9 "Scattered Magic" Ability { id: "5BDF", source: "False Idol" } +6197.0 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6200.5 "Magical Interference" #Ability { id: "5BD5", source: "False Idol" } +6209.0 "Made Magic" Ability { id: "5BD[67]", source: "False Idol" } +6217.2 "Screaming Score" Ability { id: "5BDD", source: "False Idol" } +6225.4 "Screaming Score" Ability { id: "5BDD", source: "False Idol" } # loop ??? (plz confirm) -6239.6 "Darker Note" sync / 1[56]:[^:]*:False Idol:5BDB:/ -6248.8 "--sync--" sync / 1[56]:[^:]*:False Idol:5BD8:/ # Lighter Note castbar -6257.8 "Lighter Note" sync / 1[56]:[^:]*:False Idol:5BD9:/ duration 6.2 +6239.6 "Darker Note" Ability { id: "5BDB", source: "False Idol" } +6248.8 "--sync--" Ability { id: "5BD8", source: "False Idol" } # Lighter Note castbar +6257.8 "Lighter Note" Ability { id: "5BD9", source: "False Idol" } duration 6.2 ### Her Inflorescence @@ -455,88 +455,88 @@ hideall "--sync--" # -ii 5CEC 5CED 5CEE 5CEF 5FFF 5BDA 5BDC 5BEF 5BF2 5BE6 5BE8 5BE7 # Whether there is a checkpoint is unclear, but sync as if there is. -6963.3 "--sync--" sync / 14:[^:]*:False Idol:5DD5:/ window 1000,0 -6968.3 "Eminence" sync / 1[56]:[^:]*:False Idol:5DD5:/ +6963.3 "--sync--" StartsUsing { id: "5DD5", source: "False Idol" } window 1000,0 +6968.3 "Eminence" Ability { id: "5DD5", source: "False Idol" } 6968.3 "--untargetable--" 7000.0 "--targetable--" -7010.2 "--sync--" sync / 14:[^:]*:Her Inflorescence:5BE0:/ window 7010.2,0 -7013.2 "Pervasion" sync / 1[56]:[^:]*:Her Inflorescence:5BE0:/ -7019.3 "Recreate Structure" sync / 1[56]:[^:]*:Her Inflorescence:5BE1:/ -7030.4 "Uneven Footing" sync / 1[56]:[^:]*:Her Inflorescence:5BE2:/ -7033.9 "Recreate Structure" sync / 1[56]:[^:]*:Her Inflorescence:5BE1:/ -7045.0 "Uneven Footing" sync / 1[56]:[^:]*:Her Inflorescence:5BE2:/ - -7050.6 "Recreate Signal" sync / 1[56]:[^:]*:Her Inflorescence:5BE3:/ -7056.7 "Mixed Signals" sync / 1[56]:[^:]*:Her Inflorescence:5BE4:/ -7066.6 "Crash" sync / 1[56]:[^:]*:Her Inflorescence:5BE5:/ -7074.8 "Mixed Signals" sync / 1[56]:[^:]*:Her Inflorescence:5BE4:/ -7082.7 "Crash" sync / 1[56]:[^:]*:Her Inflorescence:5BE5:/ -7086.9 "--sync--" sync / 1[56]:[^:]*:Her Inflorescence:5C0C:/ # Lighter Note castbar -7095.9 "Lighter Note" sync / 1[56]:[^:]*:Her Inflorescence:5BD9:/ # duration 6.2 -7105.0 "Screaming Score" sync / 1[56]:[^:]*:Her Inflorescence:5BF5:/ -7113.2 "Darker Note" sync / 1[56]:[^:]*:Her Inflorescence:5C0A:/ -7128.4 "Heavy Arms" sync / 1[56]:[^:]*:Her Inflorescence:5BE[DE]:/ -7138.6 "Heavy Arms" sync / 1[56]:[^:]*:Her Inflorescence:5BE[DE]:/ - -7151.4 "Distortion" sync / 1[56]:[^:]*:Her Inflorescence:5BE9:/ -7157.6 "Place Of Power" sync / 1[56]:[^:]*:Her Inflorescence:5C0D:/ -7157.6 "The Final Song" sync / 1[56]:[^:]*:Her Inflorescence:5BEA:/ -7167.7 "White Dissonance / Black Dissonance" sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ -7173.7 "White Dissonance / Black Dissonance" sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ -7179.7 "White Dissonance / Black Dissonance" sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ - -7200.5 "Pillar Impact" sync / 1[56]:[^:]*:Her Inflorescence:5BF0:/ -7202.0 "Shockwave" sync / 1[56]:[^:]*:Her Inflorescence:5BF1:/ -7204.6 "Pillar Impact" sync / 1[56]:[^:]*:Her Inflorescence:5C0E:/ -7206.0 "Shockwave" sync / 1[56]:[^:]*:Her Inflorescence:5BF1:/ -7211.6 "Towerfall" sync / 1[56]:[^:]*:Her Inflorescence:5BF3:/ -7220.8 "Towerfall" sync / 1[56]:[^:]*:Her Inflorescence:5BF4:/ - -7231.2 "Recreate Signal" sync / 1[56]:[^:]*:Her Inflorescence:5BE3:/ -7237.3 "Mixed Signals" sync / 1[56]:[^:]*:Her Inflorescence:5BE4:/ -7255.4 "Distortion" sync / 1[56]:[^:]*:Her Inflorescence:6058:/ -7261.6 "The Final Song" sync / 1[56]:[^:]*:Her Inflorescence:5BEA:/ -7270.7 "White Dissonance / Black Dissonance" #sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ -7272.7 "White Dissonance / Black Dissonance" #sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ -7274.7 "White Dissonance / Black Dissonance" #sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ -7283.7 "Heavy Arms" sync / 1[56]:[^:]*:Her Inflorescence:5BE[DE]:/ -7289.8 "--sync--" sync / 1[56]:[^:]*:Her Inflorescence:5C0C:/ # Lighter Note castbar -7298.8 "Lighter Note" sync / 1[56]:[^:]*:Her Inflorescence:5BD9:/ duration 6.2 -7309.9 "Heavy Arms" sync / 1[56]:[^:]*:Her Inflorescence:5BE[DE]:/ - -7316.0 "Recreate Signal" sync / 1[56]:[^:]*:Her Inflorescence:5BE3:/ -7322.1 "Mixed Signals" sync / 1[56]:[^:]*:Her Inflorescence:5BE4:/ -7328.2 "Rhythm Rings" sync / 1[56]:[^:]*:Her Inflorescence:5C0B:/ -7330.0 "Crash" sync / 1[56]:[^:]*:Her Inflorescence:5BE5:/ -7338.2 "Magical Interference" sync / 1[56]:[^:]*:Her Inflorescence:5BD5:/ -7344.3 "Screaming Score" sync / 1[56]:[^:]*:Her Inflorescence:5BF5:/ -7352.5 "Darker Note" sync / 1[56]:[^:]*:Her Inflorescence:5C0A:/ -7364.7 "Pervasion" sync / 1[56]:[^:]*:Her Inflorescence:5BE0:/ - -7370.8 "Recreate Structure" sync / 1[56]:[^:]*:Her Inflorescence:5BE1:/ -7381.0 "Rhythm Rings" sync / 1[56]:[^:]*:Her Inflorescence:5C0B:/ -7383.0 "Uneven Footing" sync / 1[56]:[^:]*:Her Inflorescence:5BE2:/ -7391.0 "Magical Interference" sync / 1[56]:[^:]*:Her Inflorescence:5BD5:/ -7398.2 "Heavy Arms" sync / 1[56]:[^:]*:Her Inflorescence:5BE[DE]:/ -7406.4 "Screaming Score" sync / 1[56]:[^:]*:Her Inflorescence:5BF5:/ - -7425.3 "Pillar Impact" sync / 1[56]:[^:]*:Her Inflorescence:5BF0:/ -7426.8 "Shockwave" sync / 1[56]:[^:]*:Her Inflorescence:5BF1:/ -7429.4 "Pillar Impact" sync / 1[56]:[^:]*:Her Inflorescence:5C0E:/ -7430.8 "Shockwave" sync / 1[56]:[^:]*:Her Inflorescence:5BF1:/ -7436.4 "Towerfall" sync / 1[56]:[^:]*:Her Inflorescence:5BF3:/ -7445.6 "Towerfall" sync / 1[56]:[^:]*:Her Inflorescence:5BF4:/ +7010.2 "--sync--" StartsUsing { id: "5BE0", source: "Her Inflorescence" } window 7010.2,0 +7013.2 "Pervasion" Ability { id: "5BE0", source: "Her Inflorescence" } +7019.3 "Recreate Structure" Ability { id: "5BE1", source: "Her Inflorescence" } +7030.4 "Uneven Footing" Ability { id: "5BE2", source: "Her Inflorescence" } +7033.9 "Recreate Structure" Ability { id: "5BE1", source: "Her Inflorescence" } +7045.0 "Uneven Footing" Ability { id: "5BE2", source: "Her Inflorescence" } + +7050.6 "Recreate Signal" Ability { id: "5BE3", source: "Her Inflorescence" } +7056.7 "Mixed Signals" Ability { id: "5BE4", source: "Her Inflorescence" } +7066.6 "Crash" Ability { id: "5BE5", source: "Her Inflorescence" } +7074.8 "Mixed Signals" Ability { id: "5BE4", source: "Her Inflorescence" } +7082.7 "Crash" Ability { id: "5BE5", source: "Her Inflorescence" } +7086.9 "--sync--" Ability { id: "5C0C", source: "Her Inflorescence" } # Lighter Note castbar +7095.9 "Lighter Note" Ability { id: "5BD9", source: "Her Inflorescence" } # duration 6.2 +7105.0 "Screaming Score" Ability { id: "5BF5", source: "Her Inflorescence" } +7113.2 "Darker Note" Ability { id: "5C0A", source: "Her Inflorescence" } +7128.4 "Heavy Arms" Ability { id: "5BE[DE]", source: "Her Inflorescence" } +7138.6 "Heavy Arms" Ability { id: "5BE[DE]", source: "Her Inflorescence" } + +7151.4 "Distortion" Ability { id: "5BE9", source: "Her Inflorescence" } +7157.6 "Place Of Power" Ability { id: "5C0D", source: "Her Inflorescence" } +7157.6 "The Final Song" Ability { id: "5BEA", source: "Her Inflorescence" } +7167.7 "White Dissonance / Black Dissonance" Ability { id: "5BE[BC]", source: "Her Inflorescence" } +7173.7 "White Dissonance / Black Dissonance" Ability { id: "5BE[BC]", source: "Her Inflorescence" } +7179.7 "White Dissonance / Black Dissonance" Ability { id: "5BE[BC]", source: "Her Inflorescence" } + +7200.5 "Pillar Impact" Ability { id: "5BF0", source: "Her Inflorescence" } +7202.0 "Shockwave" Ability { id: "5BF1", source: "Her Inflorescence" } +7204.6 "Pillar Impact" Ability { id: "5C0E", source: "Her Inflorescence" } +7206.0 "Shockwave" Ability { id: "5BF1", source: "Her Inflorescence" } +7211.6 "Towerfall" Ability { id: "5BF3", source: "Her Inflorescence" } +7220.8 "Towerfall" Ability { id: "5BF4", source: "Her Inflorescence" } + +7231.2 "Recreate Signal" Ability { id: "5BE3", source: "Her Inflorescence" } +7237.3 "Mixed Signals" Ability { id: "5BE4", source: "Her Inflorescence" } +7255.4 "Distortion" Ability { id: "6058", source: "Her Inflorescence" } +7261.6 "The Final Song" Ability { id: "5BEA", source: "Her Inflorescence" } +7270.7 "White Dissonance / Black Dissonance" #Ability { id: "5BE[BC]", source: "Her Inflorescence" } +7272.7 "White Dissonance / Black Dissonance" #Ability { id: "5BE[BC]", source: "Her Inflorescence" } +7274.7 "White Dissonance / Black Dissonance" #Ability { id: "5BE[BC]", source: "Her Inflorescence" } +7283.7 "Heavy Arms" Ability { id: "5BE[DE]", source: "Her Inflorescence" } +7289.8 "--sync--" Ability { id: "5C0C", source: "Her Inflorescence" } # Lighter Note castbar +7298.8 "Lighter Note" Ability { id: "5BD9", source: "Her Inflorescence" } duration 6.2 +7309.9 "Heavy Arms" Ability { id: "5BE[DE]", source: "Her Inflorescence" } + +7316.0 "Recreate Signal" Ability { id: "5BE3", source: "Her Inflorescence" } +7322.1 "Mixed Signals" Ability { id: "5BE4", source: "Her Inflorescence" } +7328.2 "Rhythm Rings" Ability { id: "5C0B", source: "Her Inflorescence" } +7330.0 "Crash" Ability { id: "5BE5", source: "Her Inflorescence" } +7338.2 "Magical Interference" Ability { id: "5BD5", source: "Her Inflorescence" } +7344.3 "Screaming Score" Ability { id: "5BF5", source: "Her Inflorescence" } +7352.5 "Darker Note" Ability { id: "5C0A", source: "Her Inflorescence" } +7364.7 "Pervasion" Ability { id: "5BE0", source: "Her Inflorescence" } + +7370.8 "Recreate Structure" Ability { id: "5BE1", source: "Her Inflorescence" } +7381.0 "Rhythm Rings" Ability { id: "5C0B", source: "Her Inflorescence" } +7383.0 "Uneven Footing" Ability { id: "5BE2", source: "Her Inflorescence" } +7391.0 "Magical Interference" Ability { id: "5BD5", source: "Her Inflorescence" } +7398.2 "Heavy Arms" Ability { id: "5BE[DE]", source: "Her Inflorescence" } +7406.4 "Screaming Score" Ability { id: "5BF5", source: "Her Inflorescence" } + +7425.3 "Pillar Impact" Ability { id: "5BF0", source: "Her Inflorescence" } +7426.8 "Shockwave" Ability { id: "5BF1", source: "Her Inflorescence" } +7429.4 "Pillar Impact" Ability { id: "5C0E", source: "Her Inflorescence" } +7430.8 "Shockwave" Ability { id: "5BF1", source: "Her Inflorescence" } +7436.4 "Towerfall" Ability { id: "5BF3", source: "Her Inflorescence" } +7445.6 "Towerfall" Ability { id: "5BF4", source: "Her Inflorescence" } # loop -7455.8 "Recreate Signal" sync / 1[56]:[^:]*:Her Inflorescence:5BE3:/ window 100,100 jump 7231.2 -7461.9 "Mixed Signals" #sync / 1[56]:[^:]*:Her Inflorescence:5BE4:/ -7480.0 "Distortion" #sync / 1[56]:[^:]*:Her Inflorescence:6058:/ -7486.2 "The Final Song" #sync / 1[56]:[^:]*:Her Inflorescence:5BEA:/ -7495.3 "White Dissonance / Black Dissonance" #sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ -7497.3 "White Dissonance / Black Dissonance" #sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ -7499.3 "White Dissonance / Black Dissonance" #sync / 1[56]:[^:]*:Her Inflorescence:5BE[BC]:/ -7508.3 "Heavy Arms" #sync / 1[56]:[^:]*:Her Inflorescence:5BE[DE]:/ -7514.4 "--sync--" #sync / 1[56]:[^:]*:Her Inflorescence:5C0C:/ # Lighter Note castbar -7523.4 "Lighter Note" #sync / 1[56]:[^:]*:Her Inflorescence:5BD9:/ duration 6.2 -7534.5 "Heavy Arms" #sync / 1[56]:[^:]*:Her Inflorescence:5BE[DE]:/ +7455.8 "Recreate Signal" Ability { id: "5BE3", source: "Her Inflorescence" } window 100,100 jump 7231.2 +7461.9 "Mixed Signals" #Ability { id: "5BE4", source: "Her Inflorescence" } +7480.0 "Distortion" #Ability { id: "6058", source: "Her Inflorescence" } +7486.2 "The Final Song" #Ability { id: "5BEA", source: "Her Inflorescence" } +7495.3 "White Dissonance / Black Dissonance" #Ability { id: "5BE[BC]", source: "Her Inflorescence" } +7497.3 "White Dissonance / Black Dissonance" #Ability { id: "5BE[BC]", source: "Her Inflorescence" } +7499.3 "White Dissonance / Black Dissonance" #Ability { id: "5BE[BC]", source: "Her Inflorescence" } +7508.3 "Heavy Arms" #Ability { id: "5BE[DE]", source: "Her Inflorescence" } +7514.4 "--sync--" #Ability { id: "5C0C", source: "Her Inflorescence" } # Lighter Note castbar +7523.4 "Lighter Note" #Ability { id: "5BD9", source: "Her Inflorescence" } duration 6.2 +7534.5 "Heavy Arms" #Ability { id: "5BE[DE]", source: "Her Inflorescence" } diff --git a/ui/raidboss/data/05-shb/dungeon/akadaemia_anyder.txt b/ui/raidboss/data/05-shb/dungeon/akadaemia_anyder.txt index dc93c674f8..54ef8507c1 100644 --- a/ui/raidboss/data/05-shb/dungeon/akadaemia_anyder.txt +++ b/ui/raidboss/data/05-shb/dungeon/akadaemia_anyder.txt @@ -11,30 +11,30 @@ hideall "--sync--" # This is maybe like +/- 1-2 seconds? # Ichthyology will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BC0:/ window 100,0 -110.5 "Protolithic Puncture" sync / 1[56]:[^:]*:Cladoselache:3E04:/ window 111,8 -119.5 "Tidal Guillotine" sync / 1[56]:[^:]*:Cladoselache:3E08:/ -128.7 "--2x targetable--" sync / 22:........:Doliodus:........:Doliodus:01/ -129.7 "--1x targetable--" sync / 22:........:Cladoselache:........:Cladoselache:00/ - -138.5 "Pelagic Cleaver" sync / 1[56]:[^:]*:Doliodus:3E09:/ -150.5 "Tidal Guillotine" sync / 1[56]:[^:]*:Cladoselache:3E0A:/ window 10,10 -152.7 "--2x targetable--" sync / 22:........:Cladoselache:........:Cladoselache:01/ -154.7 "--1x targetable--" sync / 22:........:Doliodus:........:Doliodus:00/ - -162.4 "Aquatic Lance" sync / 1[56]:[^:]*:Cladoselache:3E05:/ -173.5 "Protolithic Puncture" sync / 1[56]:[^:]*:Cladoselache:3E04:/ -179.9 "Pelagic Cleaver" sync / 1[56]:[^:]*:Doliodus:3E0B:/ window 10,10 -181.5 "--untargetable--" sync / 22:........:Cladoselache:........:Cladoselache:00/ -183.3 "--targetable--" sync / 22:........:Doliodus:........:Doliodus:01/ - -189.4 "Marine Mayhem" sync / 1[56]:[^:]*:Doliodus:3E06:/ -199.8 "Protolithic Puncture" sync / 1[56]:[^:]*:Doliodus:3E04:/ -201.4 "Tidal Guillotine" sync / 1[56]:[^:]*:Cladoselache:3E0A:/ window 10,10 -203.8 "--2x targetable--" sync / 22:........:Cladoselache:........:Cladoselache:01/ -205.1 "--1x targetable--" sync / 22:........:Doliodus:........:Doliodus:00/ - -213.2 "Aquatic Lance" sync / 1[56]:[^:]*:Cladoselache:3E05:/ window 30,30 jump 162.4 +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BC0" } window 100,0 +110.5 "Protolithic Puncture" Ability { id: "3E04", source: "Cladoselache" } window 111,8 +119.5 "Tidal Guillotine" Ability { id: "3E08", source: "Cladoselache" } +128.7 "--2x targetable--" NameToggle { name: "Doliodus", toggle: "01" } +129.7 "--1x targetable--" NameToggle { name: "Cladoselache", toggle: "00" } + +138.5 "Pelagic Cleaver" Ability { id: "3E09", source: "Doliodus" } +150.5 "Tidal Guillotine" Ability { id: "3E0A", source: "Cladoselache" } window 10,10 +152.7 "--2x targetable--" NameToggle { name: "Cladoselache", toggle: "01" } +154.7 "--1x targetable--" NameToggle { name: "Doliodus", toggle: "00" } + +162.4 "Aquatic Lance" Ability { id: "3E05", source: "Cladoselache" } +173.5 "Protolithic Puncture" Ability { id: "3E04", source: "Cladoselache" } +179.9 "Pelagic Cleaver" Ability { id: "3E0B", source: "Doliodus" } window 10,10 +181.5 "--untargetable--" NameToggle { name: "Cladoselache", toggle: "00" } +183.3 "--targetable--" NameToggle { name: "Doliodus", toggle: "01" } + +189.4 "Marine Mayhem" Ability { id: "3E06", source: "Doliodus" } +199.8 "Protolithic Puncture" Ability { id: "3E04", source: "Doliodus" } +201.4 "Tidal Guillotine" Ability { id: "3E0A", source: "Cladoselache" } window 10,10 +203.8 "--2x targetable--" NameToggle { name: "Cladoselache", toggle: "01" } +205.1 "--1x targetable--" NameToggle { name: "Doliodus", toggle: "00" } + +213.2 "Aquatic Lance" Ability { id: "3E05", source: "Cladoselache" } window 30,30 jump 162.4 224.3 "Protolithic Puncture" 230.7 "Pelagic Cleaver" 232.3 "--untargetable--" @@ -48,52 +48,52 @@ hideall "--sync--" # When one dies, the other powers up and starts casting stuff after it jumps back in. # However, I've never seen this cast get off, so just guessing on Marine Mayhem cast length. -300.0 "--sync--" sync / 14:[^:]*:(Doliodus|Cladoselache):3E07:/ window 300,0 -302.0 "Carcharian Verve" sync / 1[56]:[^:]*:(Doliodus|Cladoselache):3E07:/ window 300,0 -305.5 "Marine Mayhem" sync / 1[56]:[^:]*:(Doliodus|Cladoselache):3E06:/ +300.0 "--sync--" StartsUsing { id: "3E07", source: ["Doliodus", "Cladoselache"] } window 300,0 +302.0 "Carcharian Verve" Ability { id: "3E07", source: ["Doliodus", "Cladoselache"] } window 300,0 +305.5 "Marine Mayhem" Ability { id: "3E06", source: ["Doliodus", "Cladoselache"] } ### Morbol Marquis # -p 3E16:508.5 -ii 3E11 3E14 # Phytobiology will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BC1:/ window 500,0 -505.0 "--sync--" sync / 1[56]:[^:]*:Morbol Marquis:3E14:/ window 505,5 -508.5 "Lash" sync / 1[56]:[^:]*:Morbol Marquis:3E16:/ -516.1 "Sap Shower" sync / 1[56]:[^:]*:Morbol Marquis:3E15:/ -524.7 "Arbor Storm" sync / 1[56]:[^:]*:Morbol Marquis:3E17:/ +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BC1" } window 500,0 +505.0 "--sync--" Ability { id: "3E14", source: "Morbol Marquis" } window 505,5 +508.5 "Lash" Ability { id: "3E16", source: "Morbol Marquis" } +516.1 "Sap Shower" Ability { id: "3E15", source: "Morbol Marquis" } +524.7 "Arbor Storm" Ability { id: "3E17", source: "Morbol Marquis" } # extensible tendrils appears to have some variation on start time -532.3 "--sync--" sync / 14:[^:]*:Morbol Marquis:3E10:/ window 30,10 -537.3 "Extensible Tendrils" sync / 1[56]:[^:]*:Morbol Marquis:3E10:/ duration 25 -564.7 "Putrid Breath" sync / 1[56]:[^:]*:Morbol Marquis:3E12:/ -569.0 "Lash" #sync / 1[56]:[^:]*:Morbol Marquis:3E16:/ -575.0 "Lash" #sync / 1[56]:[^:]*:Morbol Marquis:3E16:/ -581.1 "Blossom" sync / 1[56]:[^:]*:Morbol Marquis:3E13:/ -589.7 "Arbor Storm" sync / 1[56]:[^:]*:Morbol Marquis:3E17:/ - -598.3 "--sync--" sync / 14:[^:]*:Morbol Marquis:3E10:/ window 10,10 -603.3 "Extensible Tendrils" sync / 1[56]:[^:]*:Morbol Marquis:3E10:/ duration 25 -611.4 "Sap Shower" sync / 1[56]:[^:]*:Morbol Marquis:3E15:/ -630.8 "Putrid Breath" sync / 1[56]:[^:]*:Morbol Marquis:3E12:/ -634.2 "Lash" sync / 1[56]:[^:]*:Morbol Marquis:3E16:/ -646.6 "Blossom" sync / 1[56]:[^:]*:Morbol Marquis:3E13:/ -653.3 "Sap Shower" sync / 1[56]:[^:]*:Morbol Marquis:3E15:/ -657.1 "Lash" sync / 1[56]:[^:]*:Morbol Marquis:3E16:/ - -660.3 "--sync--" sync / 14:[^:]*:Morbol Marquis:3E10:/ window 10,10 -665.3 "Extensible Tendrils" sync / 1[56]:[^:]*:Morbol Marquis:3E10:/ -692.6 "Putrid Breath" sync / 1[56]:[^:]*:Morbol Marquis:3E12:/ -699.0 "Arbor Storm" sync / 1[56]:[^:]*:Morbol Marquis:3E17:/ -707.6 "Blossom" sync / 1[56]:[^:]*:Morbol Marquis:3E13:/ -716.1 "Arbor Storm" sync / 1[56]:[^:]*:Morbol Marquis:3E17:/ - -724.8 "--sync--" sync / 14:[^:]*:Morbol Marquis:3E10:/ window 10,10 -729.8 "Extensible Tendrils" sync / 1[56]:[^:]*:Morbol Marquis:3E10:/ duration 25 -737.9 "Sap Shower" sync / 1[56]:[^:]*:Morbol Marquis:3E15:/ -757.3 "Putrid Breath" sync / 1[56]:[^:]*:Morbol Marquis:3E12:/ -760.7 "Lash" sync / 1[56]:[^:]*:Morbol Marquis:3E16:/ -773.1 "Blossom" sync / 1[56]:[^:]*:Morbol Marquis:3E13:/ window 50,50 jump 646.6 +532.3 "--sync--" StartsUsing { id: "3E10", source: "Morbol Marquis" } window 30,10 +537.3 "Extensible Tendrils" Ability { id: "3E10", source: "Morbol Marquis" } duration 25 +564.7 "Putrid Breath" Ability { id: "3E12", source: "Morbol Marquis" } +569.0 "Lash" #Ability { id: "3E16", source: "Morbol Marquis" } +575.0 "Lash" #Ability { id: "3E16", source: "Morbol Marquis" } +581.1 "Blossom" Ability { id: "3E13", source: "Morbol Marquis" } +589.7 "Arbor Storm" Ability { id: "3E17", source: "Morbol Marquis" } + +598.3 "--sync--" StartsUsing { id: "3E10", source: "Morbol Marquis" } window 10,10 +603.3 "Extensible Tendrils" Ability { id: "3E10", source: "Morbol Marquis" } duration 25 +611.4 "Sap Shower" Ability { id: "3E15", source: "Morbol Marquis" } +630.8 "Putrid Breath" Ability { id: "3E12", source: "Morbol Marquis" } +634.2 "Lash" Ability { id: "3E16", source: "Morbol Marquis" } +646.6 "Blossom" Ability { id: "3E13", source: "Morbol Marquis" } +653.3 "Sap Shower" Ability { id: "3E15", source: "Morbol Marquis" } +657.1 "Lash" Ability { id: "3E16", source: "Morbol Marquis" } + +660.3 "--sync--" StartsUsing { id: "3E10", source: "Morbol Marquis" } window 10,10 +665.3 "Extensible Tendrils" Ability { id: "3E10", source: "Morbol Marquis" } +692.6 "Putrid Breath" Ability { id: "3E12", source: "Morbol Marquis" } +699.0 "Arbor Storm" Ability { id: "3E17", source: "Morbol Marquis" } +707.6 "Blossom" Ability { id: "3E13", source: "Morbol Marquis" } +716.1 "Arbor Storm" Ability { id: "3E17", source: "Morbol Marquis" } + +724.8 "--sync--" StartsUsing { id: "3E10", source: "Morbol Marquis" } window 10,10 +729.8 "Extensible Tendrils" Ability { id: "3E10", source: "Morbol Marquis" } duration 25 +737.9 "Sap Shower" Ability { id: "3E15", source: "Morbol Marquis" } +757.3 "Putrid Breath" Ability { id: "3E12", source: "Morbol Marquis" } +760.7 "Lash" Ability { id: "3E16", source: "Morbol Marquis" } +773.1 "Blossom" Ability { id: "3E13", source: "Morbol Marquis" } window 50,50 jump 646.6 779.8 "Sap Shower" 783.6 "Lash" @@ -108,25 +108,25 @@ hideall "--sync--" ### Quetzalcoatl # -ii 3E1A 3E1B 3E22 3E20 -p 3E23:1008.2 # Phantomology will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BC2:/ window 1000,0 -1008.2 "Shockbolt" sync / 1[56]:[^:]*:Quetzalcoatl:3E23:/ window 1010,5 -1017.9 "Thunderbolt" sync / 1[56]:[^:]*:Quetzalcoatl:3E24:/ -1031.4 "Thunderstorm" sync / 1[56]:[^:]*:Quetzalcoatl:3E1C:/ -1045.2 "Shocking Plumage" sync / 1[56]:[^:]*:Quetzalcoatl:3E21:/ -1057.5 "Thunderstorm" sync / 1[56]:[^:]*:Quetzalcoatl:3E1C:/ - -1067.6 "Reverse Current" sync / 1[56]:[^:]*:Quetzalcoatl:3E1E:/ -1085.0 "Winding Current" sync / 1[56]:[^:]*:Quetzalcoatl:3E1F:/ -1099.2 "Thunderstorm" sync / 1[56]:[^:]*:Quetzalcoatl:3E1C:/ -1107.0 "Shocking Plumage" sync / 1[56]:[^:]*:Quetzalcoatl:3E21:/ -1113.5 "Shockbolt" sync / 1[56]:[^:]*:Quetzalcoatl:3E23:/ -1122.1 "Thunderbolt" sync / 1[56]:[^:]*:Quetzalcoatl:3E24:/ -1131.5 "Thunderstorm" sync / 1[56]:[^:]*:Quetzalcoatl:3E1C:/ -1140.3 "Shocking Plumage" sync / 1[56]:[^:]*:Quetzalcoatl:3E21:/ -1148.8 "Shocking Plumage" sync / 1[56]:[^:]*:Quetzalcoatl:3E21:/ -1155.2 "Thunderbolt" sync / 1[56]:[^:]*:Quetzalcoatl:3E24:/ - -1163.6 "Reverse Current" sync / 1[56]:[^:]*:Quetzalcoatl:3E1E:/ window 50,50 jump 1067.6 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BC2" } window 1000,0 +1008.2 "Shockbolt" Ability { id: "3E23", source: "Quetzalcoatl" } window 1010,5 +1017.9 "Thunderbolt" Ability { id: "3E24", source: "Quetzalcoatl" } +1031.4 "Thunderstorm" Ability { id: "3E1C", source: "Quetzalcoatl" } +1045.2 "Shocking Plumage" Ability { id: "3E21", source: "Quetzalcoatl" } +1057.5 "Thunderstorm" Ability { id: "3E1C", source: "Quetzalcoatl" } + +1067.6 "Reverse Current" Ability { id: "3E1E", source: "Quetzalcoatl" } +1085.0 "Winding Current" Ability { id: "3E1F", source: "Quetzalcoatl" } +1099.2 "Thunderstorm" Ability { id: "3E1C", source: "Quetzalcoatl" } +1107.0 "Shocking Plumage" Ability { id: "3E21", source: "Quetzalcoatl" } +1113.5 "Shockbolt" Ability { id: "3E23", source: "Quetzalcoatl" } +1122.1 "Thunderbolt" Ability { id: "3E24", source: "Quetzalcoatl" } +1131.5 "Thunderstorm" Ability { id: "3E1C", source: "Quetzalcoatl" } +1140.3 "Shocking Plumage" Ability { id: "3E21", source: "Quetzalcoatl" } +1148.8 "Shocking Plumage" Ability { id: "3E21", source: "Quetzalcoatl" } +1155.2 "Thunderbolt" Ability { id: "3E24", source: "Quetzalcoatl" } + +1163.6 "Reverse Current" Ability { id: "3E1E", source: "Quetzalcoatl" } window 50,50 jump 1067.6 1181.0 "Winding Current" 1195.2 "Thunderstorm" 1203.0 "Shocking Plumage" diff --git a/ui/raidboss/data/05-shb/dungeon/amaurot.txt b/ui/raidboss/data/05-shb/dungeon/amaurot.txt index ea22433c4e..feb84c9805 100644 --- a/ui/raidboss/data/05-shb/dungeon/amaurot.txt +++ b/ui/raidboss/data/05-shb/dungeon/amaurot.txt @@ -7,24 +7,24 @@ hideall "--sync--" # -p 3CCE:113.5 -ii 3CC6 3CCA 3CC8 # The First Doom will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:C8B:/ window 100,0 -113.5 "Venomous Breath" sync / 1[56]:[^:]*:The First Beast:3CCE:/ window 114,9 -122.7 "Meteor Rain" sync / 1[56]:[^:]*:The First Beast:3CC4:/ -132.9 "The Falling Sky" sync / 1[56]:[^:]*:The First Beast:3CC9:/ -136.3 "Cosmic Kiss" sync / 1[56]:[^:]*:Fallen Star:42D4:/ -151.6 "The Final Sky" sync / 1[56]:[^:]*:The First Beast:3CCB:/ +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "C8B" } window 100,0 +113.5 "Venomous Breath" Ability { id: "3CCE", source: "The First Beast" } window 114,9 +122.7 "Meteor Rain" Ability { id: "3CC4", source: "The First Beast" } +132.9 "The Falling Sky" Ability { id: "3CC9", source: "The First Beast" } +136.3 "Cosmic Kiss" Ability { id: "42D4", source: "Fallen Star" } +151.6 "The Final Sky" Ability { id: "3CCB", source: "The First Beast" } -153.0 "Cosmic Shrapnel" sync / 1[56]:[^:]*:Fallen Star:42D6:/ -171.0 "Venomous Breath" sync / 1[56]:[^:]*:The First Beast:3CCE:/ -181.2 "Earthquake" sync / 1[56]:[^:]*:The First Beast:3CCD:/ -190.4 "Venomous Breath" sync / 1[56]:[^:]*:The First Beast:3CCE:/ -200.8 "Meteor Rain" sync / 1[56]:[^:]*:The First Beast:3CC4:/ -211.1 "The Falling Sky" sync / 1[56]:[^:]*:The First Beast:3CC9:/ -214.5 "Cosmic Kiss" sync / 1[56]:[^:]*:Fallen Star:42D4:/ -220.5 "The Burning Sky" sync / 1[56]:[^:]*:The First Beast:3CC7:/ -239.0 "The Final Sky" sync / 1[56]:[^:]*:The First Beast:3CCB:/ +153.0 "Cosmic Shrapnel" Ability { id: "42D6", source: "Fallen Star" } +171.0 "Venomous Breath" Ability { id: "3CCE", source: "The First Beast" } +181.2 "Earthquake" Ability { id: "3CCD", source: "The First Beast" } +190.4 "Venomous Breath" Ability { id: "3CCE", source: "The First Beast" } +200.8 "Meteor Rain" Ability { id: "3CC4", source: "The First Beast" } +211.1 "The Falling Sky" Ability { id: "3CC9", source: "The First Beast" } +214.5 "Cosmic Kiss" Ability { id: "42D4", source: "Fallen Star" } +220.5 "The Burning Sky" Ability { id: "3CC7", source: "The First Beast" } +239.0 "The Final Sky" Ability { id: "3CCB", source: "The First Beast" } -240.4 "Cosmic Shrapnel" sync / 1[56]:[^:]*:Fallen Star:42D6:/ window 30,30 jump 153 +240.4 "Cosmic Shrapnel" Ability { id: "42D6", source: "Fallen Star" } window 30,30 jump 153 258.4 "Venomous Breath" 268.6 "Earthquake" 277.8 "Venomous Breath" @@ -38,49 +38,49 @@ hideall "--sync--" ### Terminus Bellwether # -p 3CCF:523 -ii 465D 3CE4 3CD3 3CD2 3CD5 417D # The Second Doom will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:C8C:/ window 500,0 -523.0 "Shrill Shriek" sync / 1[56]:[^:]*:Terminus Bellwether:3CCF:/ window 523,5 +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "C8C" } window 500,0 +523.0 "Shrill Shriek" Ability { id: "3CCF", source: "Terminus Bellwether" } window 523,5 525.0 "--untargetable--" 525.0 "Adds (N)" -561.3 "Adds (SW)" sync / 03:........:Terminus Roiler:/ window 60,60 -610.9 "Adds (S)" sync / 03:........:Terminus Pursuer:/ window 100,100 -800.0 "--sync--" sync / 14:[^:]*:Terminus Bellwether:3CD0:/ window 300,00 -840.0 "Burst" sync / 1[56]:[^:]*:Terminus Bellwether:3CD0:/ window 40,40 +561.3 "Adds (SW)" AddedCombatant { name: "Terminus Roiler" } window 60,60 +610.9 "Adds (S)" AddedCombatant { name: "Terminus Pursuer" } window 100,100 +800.0 "--sync--" StartsUsing { id: "3CD0", source: "Terminus Bellwether" } window 300,00 +840.0 "Burst" Ability { id: "3CD0", source: "Terminus Bellwether" } window 40,40 ### Therion # -ii 3CD6 3CDD 3CD9 3CDE 3CE1 3CDB 4191 4192 -p 3CE3:1013 # The Third Doom will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:C8D:/ window 1000,0 -1013.0 "Shadow Wreck" sync / 1[56]:[^:]*:Therion:3CE3:/ window 1013,10 -1026.2 "Apokalypsis" sync / 1[56]:[^:]*:Therion:3CD7:/ duration 5.9 -1042.8 "Therion Charge" sync / 1[56]:[^:]*:Therion:3CDA:/ -1051.1 "Shadow Wreck" sync / 1[56]:[^:]*:Therion:3CE3:/ -1060.0 "Deathly Ray" sync / 1[56]:[^:]*:The Face of the Beast:3CDC:/ duration 4.4 -1068.9 "Deathly Ray" sync / 1[56]:[^:]*:The Face of the Beast:3CDC:/ duration 4.4 -1081.6 "Shadow Wreck" sync / 1[56]:[^:]*:Therion:3CE3:/ -1091.5 "Deathly Ray" sync / 1[56]:[^:]*:Therion:3CDF:/ duration 4.3 -1096.5 "--sync--" sync / 1[56]:[^:]*:Therion:42D3:/ -1099.2 "Misfortune" sync / 1[56]:[^:]*:Therion:3CE2:/ -1100.2 "Deathly Ray" sync / 1[56]:[^:]*:Therion:3CDF:/ duration 4.3 -1105.3 "--sync--" sync / 1[56]:[^:]*:Therion:42D3:/ -1115.1 "Apokalypsis" sync / 1[56]:[^:]*:Therion:3CD7:/ duration 5.9 -1131.7 "Therion Charge" sync / 1[56]:[^:]*:Therion:3CDA:/ -1140.0 "Shadow Wreck" sync / 1[56]:[^:]*:Therion:3CE3:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "C8D" } window 1000,0 +1013.0 "Shadow Wreck" Ability { id: "3CE3", source: "Therion" } window 1013,10 +1026.2 "Apokalypsis" Ability { id: "3CD7", source: "Therion" } duration 5.9 +1042.8 "Therion Charge" Ability { id: "3CDA", source: "Therion" } +1051.1 "Shadow Wreck" Ability { id: "3CE3", source: "Therion" } +1060.0 "Deathly Ray" Ability { id: "3CDC", source: "The Face of the Beast" } duration 4.4 +1068.9 "Deathly Ray" Ability { id: "3CDC", source: "The Face of the Beast" } duration 4.4 +1081.6 "Shadow Wreck" Ability { id: "3CE3", source: "Therion" } +1091.5 "Deathly Ray" Ability { id: "3CDF", source: "Therion" } duration 4.3 +1096.5 "--sync--" Ability { id: "42D3", source: "Therion" } +1099.2 "Misfortune" Ability { id: "3CE2", source: "Therion" } +1100.2 "Deathly Ray" Ability { id: "3CDF", source: "Therion" } duration 4.3 +1105.3 "--sync--" Ability { id: "42D3", source: "Therion" } +1115.1 "Apokalypsis" Ability { id: "3CD7", source: "Therion" } duration 5.9 +1131.7 "Therion Charge" Ability { id: "3CDA", source: "Therion" } +1140.0 "Shadow Wreck" Ability { id: "3CE3", source: "Therion" } -1148.8 "Deathly Ray" sync / 1[56]:[^:]*:The Face of the Beast:3CDC:/ duration 4.4 -1156.6 "Misfortune" sync / 1[56]:[^:]*:Therion:3CE2:/ -1157.6 "Deathly Ray" sync / 1[56]:[^:]*:The Face of the Beast:3CDC:/ duration 4.4 -1170.3 "Shadow Wreck" sync / 1[56]:[^:]*:Therion:3CE3:/ -1180.2 "Deathly Ray" sync / 1[56]:[^:]*:Therion:3CDF:/ duration 4.3 -1185.2 "--sync--" sync / 1[56]:[^:]*:Therion:42D3:/ -1188.0 "Misfortune" sync / 1[56]:[^:]*:Therion:3CE2:/ -1188.8 "Deathly Ray" sync / 1[56]:[^:]*:Therion:3CDF:/ duration 4.3 -1193.9 "--sync--" sync / 1[56]:[^:]*:Therion:42D3:/ -1202.5 "Shadow Wreck" sync / 1[56]:[^:]*:Therion:3CE3:/ -1213.7 "Apokalypsis" sync / 1[56]:[^:]*:Therion:3CD7:/ duration 5.9 +1148.8 "Deathly Ray" Ability { id: "3CDC", source: "The Face of the Beast" } duration 4.4 +1156.6 "Misfortune" Ability { id: "3CE2", source: "Therion" } +1157.6 "Deathly Ray" Ability { id: "3CDC", source: "The Face of the Beast" } duration 4.4 +1170.3 "Shadow Wreck" Ability { id: "3CE3", source: "Therion" } +1180.2 "Deathly Ray" Ability { id: "3CDF", source: "Therion" } duration 4.3 +1185.2 "--sync--" Ability { id: "42D3", source: "Therion" } +1188.0 "Misfortune" Ability { id: "3CE2", source: "Therion" } +1188.8 "Deathly Ray" Ability { id: "3CDF", source: "Therion" } duration 4.3 +1193.9 "--sync--" Ability { id: "42D3", source: "Therion" } +1202.5 "Shadow Wreck" Ability { id: "3CE3", source: "Therion" } +1213.7 "Apokalypsis" Ability { id: "3CD7", source: "Therion" } duration 5.9 -1230.7 "Deathly Ray" sync / 1[56]:[^:]*:The Face of the Beast:3CDC:/ duration 4.4 window 50,50 jump 1148.8 +1230.7 "Deathly Ray" Ability { id: "3CDC", source: "The Face of the Beast" } duration 4.4 window 50,50 jump 1148.8 1238.5 "Misfortune" 1239.5 "Deathly Ray" 1252.2 "Shadow Wreck" diff --git a/ui/raidboss/data/05-shb/dungeon/anamnesis_anyder.txt b/ui/raidboss/data/05-shb/dungeon/anamnesis_anyder.txt index 444cc8a0db..22b57ae5ce 100644 --- a/ui/raidboss/data/05-shb/dungeon/anamnesis_anyder.txt +++ b/ui/raidboss/data/05-shb/dungeon/anamnesis_anyder.txt @@ -7,57 +7,57 @@ hideall "--sync--" # -p 4B69:1013.5 4E4B:1313 # -ii 4B78 4B6D 4B6F # Katharsis will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D86:/ window 1000,0 -1013.5 "Fetid Fang" sync / 1[56]:[^:]*:Unknown:4B69:/ window 1014,10 -1032.3 "Scrutiny" sync / 1[56]:[^:]*:Unknown:4E25:/ -1034.3 "Explosion" sync / 1[56]:[^:]*:Sinister Bubble:4B6E:/ -1042.2 "Luminous Ray" sync / 1[56]:[^:]*:Unknown:4E26:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D86" } window 1000,0 +1013.5 "Fetid Fang" Ability { id: "4B69", source: "Unknown" } window 1014,10 +1032.3 "Scrutiny" Ability { id: "4E25", source: "Unknown" } +1034.3 "Explosion" Ability { id: "4B6E", source: "Sinister Bubble" } +1042.2 "Luminous Ray" Ability { id: "4E26", source: "Unknown" } # ??? # Two Adds (hp push???) # hopefully there's not an inscrutability cast before the one preceding the add? -1047.4 "--sync--" sync / 14:[^:]*:Unknown:4B6A:/ window 50,0 -1051.4 "Inscrutability" sync / 1[56]:[^:]*:Unknown:4B6A:/ -1059.8 "Unknown Add" sync / 1[56]:[^:]*:Unknown:4B77:/ window 60,60 -1064.8 "Ectoplasmic Ray" sync / 1[56]:[^:]*:Unknown:4B7A:/ -1072.1 "Scrutiny" sync / 1[56]:[^:]*:Unknown:4E25:/ -1074.1 "Explosion" sync / 1[56]:[^:]*:Sinister Bubble:4B6E:/ -1082.3 "Luminous Ray" sync / 1[56]:[^:]*:Unknown:4E27:/ -1090.9 "Inscrutability" sync / 1[56]:[^:]*:Unknown:4B6A:/ -1100.2 "Fetid Fang" sync / 1[56]:[^:]*:Unknown:4B69:/ -1108.9 "Clearout" sync / 1[56]:[^:]*:Unknown:4B74:/ -1114.9 "Clearout" sync / 1[56]:[^:]*:Unknown:4B6B:/ -1120.1 "Setback" sync / 1[56]:[^:]*:Unknown:4B6C:/ -1126.3 "--sync--" sync / 1[56]:[^:]*:Unknown:4B70:/ -1131.3 "Ectoplasmic Ray" sync / 1[56]:[^:]*:Unknown:4B79:/ -1131.7 "Ectoplasmic Ray" sync / 1[56]:[^:]*:Unknown:4B71:/ -1138.2 "Luminous Ray" sync / 1[56]:[^:]*:Unknown:4E27:/ -1147.8 "Inscrutability" sync / 1[56]:[^:]*:Unknown:4B6A:/ +1047.4 "--sync--" StartsUsing { id: "4B6A", source: "Unknown" } window 50,0 +1051.4 "Inscrutability" Ability { id: "4B6A", source: "Unknown" } +1059.8 "Unknown Add" Ability { id: "4B77", source: "Unknown" } window 60,60 +1064.8 "Ectoplasmic Ray" Ability { id: "4B7A", source: "Unknown" } +1072.1 "Scrutiny" Ability { id: "4E25", source: "Unknown" } +1074.1 "Explosion" Ability { id: "4B6E", source: "Sinister Bubble" } +1082.3 "Luminous Ray" Ability { id: "4E27", source: "Unknown" } +1090.9 "Inscrutability" Ability { id: "4B6A", source: "Unknown" } +1100.2 "Fetid Fang" Ability { id: "4B69", source: "Unknown" } +1108.9 "Clearout" Ability { id: "4B74", source: "Unknown" } +1114.9 "Clearout" Ability { id: "4B6B", source: "Unknown" } +1120.1 "Setback" Ability { id: "4B6C", source: "Unknown" } +1126.3 "--sync--" Ability { id: "4B70", source: "Unknown" } +1131.3 "Ectoplasmic Ray" Ability { id: "4B79", source: "Unknown" } +1131.7 "Ectoplasmic Ray" Ability { id: "4B71", source: "Unknown" } +1138.2 "Luminous Ray" Ability { id: "4E27", source: "Unknown" } +1147.8 "Inscrutability" Ability { id: "4B6A", source: "Unknown" } -1156.9 "--sync--" sync / 1[56]:[^:]*:Unknown:4B77:/ window 50,50 jump 1059.8 -1161.9 "Ectoplasmic Ray" sync / 1[56]:[^:]*:Unknown:4B7A:/ -1169.5 "Scrutiny" sync / 1[56]:[^:]*:Unknown:4E25:/ -1171.5 "Explosion" sync / 1[56]:[^:]*:Sinister Bubble:4B6E:/ -1179.3 "Luminous Ray" sync / 1[56]:[^:]*:Unknown:4E27:/ -1187.4 "Inscrutability" sync / 1[56]:[^:]*:Unknown:4B6A:/ -1196.7 "Fetid Fang" sync / 1[56]:[^:]*:Unknown:4B69:/ -1206.0 "Clearout" sync / 1[56]:[^:]*:Unknown:4B74:/ -1212.0 "Clearout" sync / 1[56]:[^:]*:Unknown:4B6B:/ -1217.2 "Setback" sync / 1[56]:[^:]*:Unknown:4B6C:/ +1156.9 "--sync--" Ability { id: "4B77", source: "Unknown" } window 50,50 jump 1059.8 +1161.9 "Ectoplasmic Ray" Ability { id: "4B7A", source: "Unknown" } +1169.5 "Scrutiny" Ability { id: "4E25", source: "Unknown" } +1171.5 "Explosion" Ability { id: "4B6E", source: "Sinister Bubble" } +1179.3 "Luminous Ray" Ability { id: "4E27", source: "Unknown" } +1187.4 "Inscrutability" Ability { id: "4B6A", source: "Unknown" } +1196.7 "Fetid Fang" Ability { id: "4B69", source: "Unknown" } +1206.0 "Clearout" Ability { id: "4B74", source: "Unknown" } +1212.0 "Clearout" Ability { id: "4B6B", source: "Unknown" } +1217.2 "Setback" Ability { id: "4B6C", source: "Unknown" } # One add (???) # starts 3 second cast 10 seconds after other add dies? -1310.0 "--sync--" sync / 14:[^:]*:Unknown:4E4B:/ window 310,0 -1313.0 "Plain Weirdness" sync / 1[56]:[^:]*:Unknown:4E4B:/ -1319.2 "Inscrutability" sync / 1[56]:[^:]*:Unknown:4B73:/ -1329.4 "--sync--" sync / 1[56]:[^:]*:Unknown:4B77:/ -1334.4 "Ectoplasmic Ray" sync / 1[56]:[^:]*:Unknown:4B7A:/ -1342.0 "Luminous Ray" sync / 1[56]:[^:]*:Unknown:4E27:/ -1354.3 "Fetid Fang" sync / 1[56]:[^:]*:Unknown:4B72:/ -1362.5 "Inscrutability" sync / 1[56]:[^:]*:Unknown:4B73:/ -1383.6 "Scrutiny" sync / 1[56]:[^:]*:Unknown:4E25:/ -1385.6 "Explosion" sync / 1[56]:[^:]*:Sinister Bubble:4B6E:/ -1401.5 "Inscrutability" sync / 1[56]:[^:]*:Unknown:4B73:/ +1310.0 "--sync--" StartsUsing { id: "4E4B", source: "Unknown" } window 310,0 +1313.0 "Plain Weirdness" Ability { id: "4E4B", source: "Unknown" } +1319.2 "Inscrutability" Ability { id: "4B73", source: "Unknown" } +1329.4 "--sync--" Ability { id: "4B77", source: "Unknown" } +1334.4 "Ectoplasmic Ray" Ability { id: "4B7A", source: "Unknown" } +1342.0 "Luminous Ray" Ability { id: "4E27", source: "Unknown" } +1354.3 "Fetid Fang" Ability { id: "4B72", source: "Unknown" } +1362.5 "Inscrutability" Ability { id: "4B73", source: "Unknown" } +1383.6 "Scrutiny" Ability { id: "4E25", source: "Unknown" } +1385.6 "Explosion" Ability { id: "4B6E", source: "Sinister Bubble" } +1401.5 "Inscrutability" Ability { id: "4B73", source: "Unknown" } @@ -65,26 +65,26 @@ hideall "--sync--" # -p 4B58:2011 # -ii 4B53 4B5C 4B5B # Doxa will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D87:/ window 2000,0 -2011.0 "The Final Verse" sync / 1[56]:[^:]*:Kyklops:4B58:/ window 2012,5 -2020.6 "Swing/Swipe/Cyclone" sync / 1[56]:[^:]*:Kyklops:4B5[457]:/ -2030.9 "Hammer/Blade Mark" sync / 1[56]:[^:]*:Kyklops:4B5[9A]:/ -2035.5 "Blade/Hammer Mark" sync / 1[56]:[^:]*:Kyklops:4B5[9A]:/ -2044.2 "Swing/Swipe/Cyclone" sync / 1[56]:[^:]*:Kyklops:4B5[457]:/ -2047.9 "Terrible Hammer/Blade" #sync / 1[56]:[^:]*:Kyklops:4B5[DE]:/ -2050.0 "Terrible Blade/Hammer" #sync / 1[56]:[^:]*:Kyklops:4B5[DE]:/ -2054.9 "Raging Glower" sync / 1[56]:[^:]*:Kyklops:4B56:/ -2064.5 "Swing/Swipe/Cyclone" sync / 1[56]:[^:]*:Kyklops:4B5[457]:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D87" } window 2000,0 +2011.0 "The Final Verse" Ability { id: "4B58", source: "Kyklops" } window 2012,5 +2020.6 "Swing/Swipe/Cyclone" Ability { id: "4B5[457]", source: "Kyklops" } +2030.9 "Hammer/Blade Mark" Ability { id: "4B5[9A]", source: "Kyklops" } +2035.5 "Blade/Hammer Mark" Ability { id: "4B5[9A]", source: "Kyklops" } +2044.2 "Swing/Swipe/Cyclone" Ability { id: "4B5[457]", source: "Kyklops" } +2047.9 "Terrible Hammer/Blade" #Ability { id: "4B5[DE]", source: "Kyklops" } +2050.0 "Terrible Blade/Hammer" #Ability { id: "4B5[DE]", source: "Kyklops" } +2054.9 "Raging Glower" Ability { id: "4B56", source: "Kyklops" } +2064.5 "Swing/Swipe/Cyclone" Ability { id: "4B5[457]", source: "Kyklops" } -2073.2 "The Final Verse" sync / 1[56]:[^:]*:Kyklops:4B58:/ -2083.1 "Hammer/Blade Mark" sync / 1[56]:[^:]*:Kyklops:4B5[9A]:/ -2087.7 "Blade/Hammer Mark" sync / 1[56]:[^:]*:Kyklops:4B5[9A]:/ -2095.4 "Pyre/Hearth" sync / 1[56]:[^:]*:Kyklops:(4B5F|4B60):/ -2100.1 "Terrible Hammer/Blade" #sync / 1[56]:[^:]*:Kyklops:4B5[DE]:/ -2102.2 "Terrible Blade/Hammer" #sync / 1[56]:[^:]*:Kyklops:4B5[DE]:/ -2107.0 "Swing/Swipe/Cyclone" sync / 1[56]:[^:]*:Kyklops:4B5[457]:/ +2073.2 "The Final Verse" Ability { id: "4B58", source: "Kyklops" } +2083.1 "Hammer/Blade Mark" Ability { id: "4B5[9A]", source: "Kyklops" } +2087.7 "Blade/Hammer Mark" Ability { id: "4B5[9A]", source: "Kyklops" } +2095.4 "Pyre/Hearth" Ability { id: ["4B5F", "4B60"], source: "Kyklops" } +2100.1 "Terrible Hammer/Blade" #Ability { id: "4B5[DE]", source: "Kyklops" } +2102.2 "Terrible Blade/Hammer" #Ability { id: "4B5[DE]", source: "Kyklops" } +2107.0 "Swing/Swipe/Cyclone" Ability { id: "4B5[457]", source: "Kyklops" } -2117.5 "The Final Verse" sync / 1[56]:[^:]*:Kyklops:4B58:/ window 20,20 jump 2073.2 +2117.5 "The Final Verse" Ability { id: "4B58", source: "Kyklops" } window 20,20 jump 2073.2 2127.4 "Hammer/Blade Mark" 2132.0 "Blade/Hammer Mark" 2139.7 "Pyre/Hearth" @@ -97,43 +97,43 @@ hideall "--sync--" # -p 4B8C:3013 # -ii 4B7C 4B7E 4B8A 4B86 4B85 4B80 4B82 4B87 # Noesis will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D89:/ window 3000,0 -3013.0 "Bonebreaker" sync / 1[56]:[^:]*:Rukshs Dheem:4B8C:/ window 3013,10 -3019.2 "Swift Shift" sync / 1[56]:[^:]*:Rukshs Dheem:4B83:/ -3026.5 "Seabed Ceremony" sync / 1[56]:[^:]*:Rukshs Dheem:4B7B:/ -3032.6 "Depth Grip" sync / 1[56]:[^:]*:Rukshs Dheem:4B84:/ -3040.7 "Falling Water" sync / 1[56]:[^:]*:Rukshs Dheem:4B7D:/ -3042.4 "Wavebreaker x4" duration 3 #sync / 1[56]:[^:]*:Depth Grip:33D4:/ -3045.9 "Rising Tide" sync / 1[56]:[^:]*:Rukshs Dheem:4B8B:/ -3056.2 "Swift Shift" sync / 1[56]:[^:]*:Rukshs Dheem:4B83:/ -3063.6 "Seabed Ceremony" sync / 1[56]:[^:]*:Rukshs Dheem:4B7B:/ window 30,10 -3074.8 "Falling Water" sync / 1[56]:[^:]*:Rukshs Dheem:4B7D:/ -3087.0 "Bonebreaker" sync / 1[56]:[^:]*:Rukshs Dheem:4B8C:/ -3099.1 "Seabed Ceremony" sync / 1[56]:[^:]*:Rukshs Dheem:4B7B:/ window 30,10 -3105.2 "Depth Grip" sync / 1[56]:[^:]*:Rukshs Dheem:4B84:/ -3115.5 "Wavebreaker x8" duration 7 #sync / 1[56]:[^:]*:Depth Grip:33D4:/ -3131.8 "Bonebreaker" sync / 1[56]:[^:]*:Rukshs Dheem:4B8C:/ -3141.0 "Swift Shift" sync / 1[56]:[^:]*:Rukshs Dheem:4B83:/ -3148.4 "Depth Grip" sync / 1[56]:[^:]*:Rukshs Dheem:4B84:/ -3158.5 "Seabed Ceremony" sync / 1[56]:[^:]*:Rukshs Dheem:4B7B:/ -3160.5 "Wavebreaker" #sync / 1[56]:[^:]*:Depth Grip:33D5:/ -3171.6 "Flying Fount" sync / 1[56]:[^:]*:Rukshs Dheem:4B7F:/ -3178.8 "Swift Shift" sync / 1[56]:[^:]*:Rukshs Dheem:4B83:/ -3186.9 "Command Current" sync / 1[56]:[^:]*:Rukshs Dheem:4B81:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D89" } window 3000,0 +3013.0 "Bonebreaker" Ability { id: "4B8C", source: "Rukshs Dheem" } window 3013,10 +3019.2 "Swift Shift" Ability { id: "4B83", source: "Rukshs Dheem" } +3026.5 "Seabed Ceremony" Ability { id: "4B7B", source: "Rukshs Dheem" } +3032.6 "Depth Grip" Ability { id: "4B84", source: "Rukshs Dheem" } +3040.7 "Falling Water" Ability { id: "4B7D", source: "Rukshs Dheem" } +3042.4 "Wavebreaker x4" duration 3 #Ability { id: "33D4", source: "Depth Grip" } +3045.9 "Rising Tide" Ability { id: "4B8B", source: "Rukshs Dheem" } +3056.2 "Swift Shift" Ability { id: "4B83", source: "Rukshs Dheem" } +3063.6 "Seabed Ceremony" Ability { id: "4B7B", source: "Rukshs Dheem" } window 30,10 +3074.8 "Falling Water" Ability { id: "4B7D", source: "Rukshs Dheem" } +3087.0 "Bonebreaker" Ability { id: "4B8C", source: "Rukshs Dheem" } +3099.1 "Seabed Ceremony" Ability { id: "4B7B", source: "Rukshs Dheem" } window 30,10 +3105.2 "Depth Grip" Ability { id: "4B84", source: "Rukshs Dheem" } +3115.5 "Wavebreaker x8" duration 7 #Ability { id: "33D4", source: "Depth Grip" } +3131.8 "Bonebreaker" Ability { id: "4B8C", source: "Rukshs Dheem" } +3141.0 "Swift Shift" Ability { id: "4B83", source: "Rukshs Dheem" } +3148.4 "Depth Grip" Ability { id: "4B84", source: "Rukshs Dheem" } +3158.5 "Seabed Ceremony" Ability { id: "4B7B", source: "Rukshs Dheem" } +3160.5 "Wavebreaker" #Ability { id: "33D5", source: "Depth Grip" } +3171.6 "Flying Fount" Ability { id: "4B7F", source: "Rukshs Dheem" } +3178.8 "Swift Shift" Ability { id: "4B83", source: "Rukshs Dheem" } +3186.9 "Command Current" Ability { id: "4B81", source: "Rukshs Dheem" } -3193.6 "Swift Shift" sync / 1[56]:[^:]*:Rukshs Dheem:4B83:/ -3200.9 "Seabed Ceremony" sync / 1[56]:[^:]*:Rukshs Dheem:4B7B:/ -3207.0 "Depth Grip" sync / 1[56]:[^:]*:Rukshs Dheem:4B84:/ -3215.1 "Falling Water" sync / 1[56]:[^:]*:Rukshs Dheem:4B7D:/ -3216.8 "Wavebreaker x4" duration 3 #sync / 1[56]:[^:]*:Depth Grip:33D4:/ -3220.2 "Rising Tide" sync / 1[56]:[^:]*:Rukshs Dheem:4B8B:/ -3229.4 "Bonebreaker" sync / 1[56]:[^:]*:Rukshs Dheem:4B8C:/ -3241.7 "Seabed Ceremony" sync / 1[56]:[^:]*:Rukshs Dheem:4B7B:/ -3247.6 "Depth Grip" sync / 1[56]:[^:]*:Rukshs Dheem:4B84:/ -3257.8 "Wavebreaker x8" duration 7 #sync / 1[56]:[^:]*:Depth Grip:33D4:/ -3275.1 "Bonebreaker" sync / 1[56]:[^:]*:Rukshs Dheem:4B8C:/ +3193.6 "Swift Shift" Ability { id: "4B83", source: "Rukshs Dheem" } +3200.9 "Seabed Ceremony" Ability { id: "4B7B", source: "Rukshs Dheem" } +3207.0 "Depth Grip" Ability { id: "4B84", source: "Rukshs Dheem" } +3215.1 "Falling Water" Ability { id: "4B7D", source: "Rukshs Dheem" } +3216.8 "Wavebreaker x4" duration 3 #Ability { id: "33D4", source: "Depth Grip" } +3220.2 "Rising Tide" Ability { id: "4B8B", source: "Rukshs Dheem" } +3229.4 "Bonebreaker" Ability { id: "4B8C", source: "Rukshs Dheem" } +3241.7 "Seabed Ceremony" Ability { id: "4B7B", source: "Rukshs Dheem" } +3247.6 "Depth Grip" Ability { id: "4B84", source: "Rukshs Dheem" } +3257.8 "Wavebreaker x8" duration 7 #Ability { id: "33D4", source: "Depth Grip" } +3275.1 "Bonebreaker" Ability { id: "4B8C", source: "Rukshs Dheem" } -3282.3 "Swift Shift" sync / 1[56]:[^:]*:Rukshs Dheem:4B83:/ window 50,50 jump 3193.6 +3282.3 "Swift Shift" Ability { id: "4B83", source: "Rukshs Dheem" } window 50,50 jump 3193.6 3289.6 "Seabed Ceremony" 3295.7 "Depth Grip" 3303.8 "Falling Water" diff --git a/ui/raidboss/data/05-shb/dungeon/dohn_mheg.txt b/ui/raidboss/data/05-shb/dungeon/dohn_mheg.txt index ac6e7aa9dd..7605a94fa8 100644 --- a/ui/raidboss/data/05-shb/dungeon/dohn_mheg.txt +++ b/ui/raidboss/data/05-shb/dungeon/dohn_mheg.txt @@ -6,24 +6,24 @@ hideall "--sync--" ### Aenc Thon, Lord of the Lingering Gaze # -ii 1EDB 22BD -p 2299:112.2 # Teag Gye will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B93:/ window 100,0 +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B93" } window 100,0 -112.2 "Candy Cane" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:2299:/ window 113,5 -120.4 "Hydrofall" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:22A7:/ -128.7 "Laughing Leap" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:2294:/ -133.8 "Landsblood" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:1E8E:/ +112.2 "Candy Cane" Ability { id: "2299", source: "Aenc Thon, Lord of the Lingering Gaze" } window 113,5 +120.4 "Hydrofall" Ability { id: "22A7", source: "Aenc Thon, Lord of the Lingering Gaze" } +128.7 "Laughing Leap" Ability { id: "2294", source: "Aenc Thon, Lord of the Lingering Gaze" } +133.8 "Landsblood" Ability { id: "1E8E", source: "Aenc Thon, Lord of the Lingering Gaze" } 139.6 "Geyser x6" duration 12.5 -161.1 "Candy Cane" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:2299:/ +161.1 "Candy Cane" Ability { id: "2299", source: "Aenc Thon, Lord of the Lingering Gaze" } -170.4 "Hydrofall" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:22A7:/ -179.7 "Laughing Leap Stack" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:2288:/ -189.9 "Candy Cane" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:2299:/ -201.1 "Laughing Leap" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:2294:/ -206.2 "Landsblood" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:1E8E:/ +170.4 "Hydrofall" Ability { id: "22A7", source: "Aenc Thon, Lord of the Lingering Gaze" } +179.7 "Laughing Leap Stack" Ability { id: "2288", source: "Aenc Thon, Lord of the Lingering Gaze" } +189.9 "Candy Cane" Ability { id: "2299", source: "Aenc Thon, Lord of the Lingering Gaze" } +201.1 "Laughing Leap" Ability { id: "2294", source: "Aenc Thon, Lord of the Lingering Gaze" } +206.2 "Landsblood" Ability { id: "1E8E", source: "Aenc Thon, Lord of the Lingering Gaze" } 212.0 "Geyser x6" duration 12.5 -233.4 "Candy Cane" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:2299:/ +233.4 "Candy Cane" Ability { id: "2299", source: "Aenc Thon, Lord of the Lingering Gaze" } -242.6 "Hydrofall" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lingering Gaze:22A7:/ window 50,50 jump 170.4 +242.6 "Hydrofall" Ability { id: "22A7", source: "Aenc Thon, Lord of the Lingering Gaze" } window 50,50 jump 170.4 251.9 "Laughing Leap Stack" 262.1 "Candy Cane" 273.3 "Laughing Leap" @@ -35,32 +35,32 @@ hideall "--sync--" ### Griaule # -p 2873:507.5 # The Atelier will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B96:/ window 500,0 - -507.5 "Rake" sync / 1[56]:[^:]*:Griaule:2873:/ window 508,5 -518.0 "Swinge" sync / 1[56]:[^:]*:Griaule:22CA:/ -525.4 "Fodder" sync / 1[56]:[^:]*:Griaule:22C1:/ -533.5 "Tiiimbeeer" sync / 1[56]:[^:]*:Griaule:22D3:/ -538.6 "Feeding Time" sync / 1[56]:[^:]*:Painted Sapling:22C3:/ -541.7 "Tiiimbeeer" sync / 1[56]:[^:]*:Griaule:22D3:/ -554.0 "Swinge" sync / 1[56]:[^:]*:Griaule:22CA:/ -568.3 "Tiiimbeeer" sync / 1[56]:[^:]*:Griaule:22D3:/ -573.5 "Coiling Ivy" sync / 1[56]:[^:]*:Griaule:22C5:/ -580.7 "Rake" sync / 1[56]:[^:]*:Griaule:2873:/ - -591.1 "Swinge" sync / 1[56]:[^:]*:Griaule:22CA:/ -605.4 "Tiiimbeeer" sync / 1[56]:[^:]*:Griaule:22D3:/ -614.5 "Rake" sync / 1[56]:[^:]*:Griaule:2873:/ -623.9 "Coiling Ivy" sync / 1[56]:[^:]*:Griaule:22C5:/ -631.1 "Fodder" sync / 1[56]:[^:]*:Griaule:22C1:/ -639.4 "Tiiimbeeer" sync / 1[56]:[^:]*:Griaule:22D3:/ -644.6 "Feeding Time" sync / 1[56]:[^:]*:Painted Sapling:22C3:/ -647.6 "Tiiimbeeer" sync / 1[56]:[^:]*:Griaule:22D3:/ -658.1 "Swinge" sync / 1[56]:[^:]*:Griaule:22CA:/ -665.4 "Coiling Ivy" sync / 1[56]:[^:]*:Griaule:22C5:/ -672.6 "Rake" sync / 1[56]:[^:]*:Griaule:2873:/ - -682.8 "Swinge" sync / 1[56]:[^:]*:Griaule:22CA:/ window 10,10 jump 591.1 +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B96" } window 500,0 + +507.5 "Rake" Ability { id: "2873", source: "Griaule" } window 508,5 +518.0 "Swinge" Ability { id: "22CA", source: "Griaule" } +525.4 "Fodder" Ability { id: "22C1", source: "Griaule" } +533.5 "Tiiimbeeer" Ability { id: "22D3", source: "Griaule" } +538.6 "Feeding Time" Ability { id: "22C3", source: "Painted Sapling" } +541.7 "Tiiimbeeer" Ability { id: "22D3", source: "Griaule" } +554.0 "Swinge" Ability { id: "22CA", source: "Griaule" } +568.3 "Tiiimbeeer" Ability { id: "22D3", source: "Griaule" } +573.5 "Coiling Ivy" Ability { id: "22C5", source: "Griaule" } +580.7 "Rake" Ability { id: "2873", source: "Griaule" } + +591.1 "Swinge" Ability { id: "22CA", source: "Griaule" } +605.4 "Tiiimbeeer" Ability { id: "22D3", source: "Griaule" } +614.5 "Rake" Ability { id: "2873", source: "Griaule" } +623.9 "Coiling Ivy" Ability { id: "22C5", source: "Griaule" } +631.1 "Fodder" Ability { id: "22C1", source: "Griaule" } +639.4 "Tiiimbeeer" Ability { id: "22D3", source: "Griaule" } +644.6 "Feeding Time" Ability { id: "22C3", source: "Painted Sapling" } +647.6 "Tiiimbeeer" Ability { id: "22D3", source: "Griaule" } +658.1 "Swinge" Ability { id: "22CA", source: "Griaule" } +665.4 "Coiling Ivy" Ability { id: "22C5", source: "Griaule" } +672.6 "Rake" Ability { id: "2873", source: "Griaule" } + +682.8 "Swinge" Ability { id: "22CA", source: "Griaule" } window 10,10 jump 591.1 697.1 "Tiiimbeeer" 706.2 "Rake" 715.6 "Coiling Ivy" @@ -76,37 +76,37 @@ hideall "--sync--" ### Aenc Thon, Lord of the Lengthsome Gate # -p 35A4:1011 34D2:1300 -ii 34EC 3681 3396 # The Throne Room will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B98:/ window 1000,0 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B98" } window 1000,0 -1011.0 "Crippling Blow" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:35A4:/ window 1011,5 -1018.2 "Virtuosic Capriccio" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:358C:/ -1027.5 "Imp Choir" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34F0:/ -1033.9 "Toad Choir" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34EF:/ -1044.1 "Crippling Blow" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:35A4:/ +1011.0 "Crippling Blow" Ability { id: "35A4", source: "Aenc Thon, Lord of the Lengthsome Gait" } window 1011,5 +1018.2 "Virtuosic Capriccio" Ability { id: "358C", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1027.5 "Imp Choir" Ability { id: "34F0", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1033.9 "Toad Choir" Ability { id: "34EF", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1044.1 "Crippling Blow" Ability { id: "35A4", source: "Aenc Thon, Lord of the Lengthsome Gait" } -1052.7 "Funambulist's Fantasia" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34BA:/ -1052.7 "--stun--" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34CF:/ +1052.7 "Funambulist's Fantasia" Ability { id: "34BA", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1052.7 "--stun--" Ability { id: "34CF", source: "Aenc Thon, Lord of the Lengthsome Gait" } 1112.7 "Enrage" -1300.0 "--sync--" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34D2:/ window 300,0 - -1302.1 "Changeling's Fantasia" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34D1:/ -1312.4 "Malaise" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34ED:/ -1318.5 "Bile Bombardment" sync / 1[56]:[^:]*:Shade of Fear:34EE:/ -1326.7 "Corrosive Bile" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34EB:/ -1338.0 "Malaise" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34ED:/ -1344.1 "Bile Bombardment" sync / 1[56]:[^:]*:Shade of Fear:34EE:/ -1345.1 "Flailing Tentacles" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:3680:/ -1354.4 "Corrosive Bile" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34EB:/ - -1375.7 "Crippling Blow" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:35A4:/ -1389.0 "Virtuosic Capriccio" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:358C:/ window 3,3 -1396.1 "Virtuosic Capriccio" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:358C:/ window 3,3 -1403.2 "Virtuosic Capriccio" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:358C:/ window 3,3 -1414.5 "Imp Choir" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34F0:/ -1420.9 "Toad Choir" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34EF:/ - -1438.3 "Crippling Blow" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:35A4:/ window 20,20 jump 1375.7 +1300.0 "--sync--" Ability { id: "34D2", source: "Aenc Thon, Lord of the Lengthsome Gait" } window 300,0 + +1302.1 "Changeling's Fantasia" Ability { id: "34D1", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1312.4 "Malaise" Ability { id: "34ED", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1318.5 "Bile Bombardment" Ability { id: "34EE", source: "Shade of Fear" } +1326.7 "Corrosive Bile" Ability { id: "34EB", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1338.0 "Malaise" Ability { id: "34ED", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1344.1 "Bile Bombardment" Ability { id: "34EE", source: "Shade of Fear" } +1345.1 "Flailing Tentacles" Ability { id: "3680", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1354.4 "Corrosive Bile" Ability { id: "34EB", source: "Aenc Thon, Lord of the Lengthsome Gait" } + +1375.7 "Crippling Blow" Ability { id: "35A4", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1389.0 "Virtuosic Capriccio" Ability { id: "358C", source: "Aenc Thon, Lord of the Lengthsome Gait" } window 3,3 +1396.1 "Virtuosic Capriccio" Ability { id: "358C", source: "Aenc Thon, Lord of the Lengthsome Gait" } window 3,3 +1403.2 "Virtuosic Capriccio" Ability { id: "358C", source: "Aenc Thon, Lord of the Lengthsome Gait" } window 3,3 +1414.5 "Imp Choir" Ability { id: "34F0", source: "Aenc Thon, Lord of the Lengthsome Gait" } +1420.9 "Toad Choir" Ability { id: "34EF", source: "Aenc Thon, Lord of the Lengthsome Gait" } + +1438.3 "Crippling Blow" Ability { id: "35A4", source: "Aenc Thon, Lord of the Lengthsome Gait" } window 20,20 jump 1375.7 1451.6 "Virtuosic Capriccio" 1458.7 "Virtuosic Capriccio" 1465.8 "Virtuosic Capriccio" @@ -114,5 +114,5 @@ hideall "--sync--" 1483.5 "Toad Choir" -1800.0 "--sync--" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34D2:/ window 590,0 -1802.0 "Changeling's Fantasia" sync / 1[56]:[^:]*:Aenc Thon, Lord of the Lengthsome Gait:34D1:/ +1800.0 "--sync--" Ability { id: "34D2", source: "Aenc Thon, Lord of the Lengthsome Gait" } window 590,0 +1802.0 "Changeling's Fantasia" Ability { id: "34D1", source: "Aenc Thon, Lord of the Lengthsome Gait" } diff --git a/ui/raidboss/data/05-shb/dungeon/heroes_gauntlet.txt b/ui/raidboss/data/05-shb/dungeon/heroes_gauntlet.txt index b8e3e23290..7fa903d144 100644 --- a/ui/raidboss/data/05-shb/dungeon/heroes_gauntlet.txt +++ b/ui/raidboss/data/05-shb/dungeon/heroes_gauntlet.txt @@ -10,34 +10,34 @@ hideall "--sync--" # -ii 4FCD 4FCE 4FCF 4FD0 4FD5 5015 # Mount Argai Mines will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:DBB:/ window 0,1 -9.8 "Spectral Dream" sync / 1[56]:[^:]*:Spectral Thief:4FCB:/ window 9.8,5 -16.9 "Dash" sync / 1[56]:[^:]*:Spectral Thief:4FD3:/ -26.7 "Vacuum Blade" sync / 1[56]:[^:]*:Spectral Thief:506[12]:/ -37.8 "Spectral Whirlwind" sync / 1[56]:[^:]*:Spectral Thief:4FCC:/ -44.0 "--sync--" sync / 1[56]:[^:]*:Spectral Thief:53CE:/ -51.1 "Spectral Gust" sync / 1[56]:[^:]*:Spectral Thief:53CF:/ -52.1 "Chicken Knife" sync / 1[56]:[^:]*:Spectral Thief:4FD6:/ -59.2 "Shadowdash" sync / 1[56]:[^:]*:Spectral Thief:4FD4:/ -63.4 "Coward's Cunning" sync / 1[56]:[^:]*:Chicken Knife:4FD7:/ - -69.0 "Papercutter" sync / 1[56]:[^:]*:Spectral Thief:4FD[12]:/ -83.2 "Spectral Dream" sync / 1[56]:[^:]*:Spectral Thief:4FCB:/ -88.4 "Chicken Knife" sync / 1[56]:[^:]*:Spectral Thief:4FD6:/ window 20,30 -95.5 "Shadowdash" sync / 1[56]:[^:]*:Spectral Thief:4FD4:/ -97.2 "Spectral Gust" sync / 1[56]:[^:]*:Spectral Thief:53CE:/ -99.7 "Coward's Cunning" sync / 1[56]:[^:]*:Chicken Knife:4FD7:/ -104.2 "Spectral Gust" sync / 1[56]:[^:]*:Spectral Thief:53CF:/ - -107.4 "Vacuum Blade" sync / 1[56]:[^:]*:Spectral Thief:506[12]:/ -121.5 "Spectral Whirlwind" sync / 1[56]:[^:]*:Spectral Thief:4FCC:/ -129.6 "Chicken Knife" sync / 1[56]:[^:]*:Spectral Thief:4FD6:/ window 30,30 -136.8 "Shadowdash" sync / 1[56]:[^:]*:Spectral Thief:4FD4:/ -138.5 "Spectral Gust" sync / 1[56]:[^:]*:Spectral Thief:53CE:/ -141.0 "Coward's Cunning" sync / 1[56]:[^:]*:Chicken Knife:4FD7:/ -145.6 "Spectral Gust" sync / 1[56]:[^:]*:Spectral Thief:53CF:/ - -148.8 "Papercutter" sync / 1[56]:[^:]*:Spectral Thief:4FD[12]:/ jump 69.0 +0 "Start" SystemLogMessage { id: "7DC", param1: "DBB" } window 0,1 +9.8 "Spectral Dream" Ability { id: "4FCB", source: "Spectral Thief" } window 9.8,5 +16.9 "Dash" Ability { id: "4FD3", source: "Spectral Thief" } +26.7 "Vacuum Blade" Ability { id: "506[12]", source: "Spectral Thief" } +37.8 "Spectral Whirlwind" Ability { id: "4FCC", source: "Spectral Thief" } +44.0 "--sync--" Ability { id: "53CE", source: "Spectral Thief" } +51.1 "Spectral Gust" Ability { id: "53CF", source: "Spectral Thief" } +52.1 "Chicken Knife" Ability { id: "4FD6", source: "Spectral Thief" } +59.2 "Shadowdash" Ability { id: "4FD4", source: "Spectral Thief" } +63.4 "Coward's Cunning" Ability { id: "4FD7", source: "Chicken Knife" } + +69.0 "Papercutter" Ability { id: "4FD[12]", source: "Spectral Thief" } +83.2 "Spectral Dream" Ability { id: "4FCB", source: "Spectral Thief" } +88.4 "Chicken Knife" Ability { id: "4FD6", source: "Spectral Thief" } window 20,30 +95.5 "Shadowdash" Ability { id: "4FD4", source: "Spectral Thief" } +97.2 "Spectral Gust" Ability { id: "53CE", source: "Spectral Thief" } +99.7 "Coward's Cunning" Ability { id: "4FD7", source: "Chicken Knife" } +104.2 "Spectral Gust" Ability { id: "53CF", source: "Spectral Thief" } + +107.4 "Vacuum Blade" Ability { id: "506[12]", source: "Spectral Thief" } +121.5 "Spectral Whirlwind" Ability { id: "4FCC", source: "Spectral Thief" } +129.6 "Chicken Knife" Ability { id: "4FD6", source: "Spectral Thief" } window 30,30 +136.8 "Shadowdash" Ability { id: "4FD4", source: "Spectral Thief" } +138.5 "Spectral Gust" Ability { id: "53CE", source: "Spectral Thief" } +141.0 "Coward's Cunning" Ability { id: "4FD7", source: "Chicken Knife" } +145.6 "Spectral Gust" Ability { id: "53CF", source: "Spectral Thief" } + +148.8 "Papercutter" Ability { id: "4FD[12]", source: "Spectral Thief" } jump 69.0 163.0 "Spectral Dream" 168.2 "Chicken Knife" 175.3 "Shadowdash" @@ -53,37 +53,37 @@ hideall "--sync--" # -ii 4F51 4F62 4F64 53B5 53B6 53B7 53B8 53B9 53BA # Summer Ballroom will be sealed off -1000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:DBC:/ window 1000,5 -1012.8 "Absolute Dark II" sync / 1[56]:[^:]*:Spectral Necromancer:4F61:/ window 1012.8,5 -1020.0 "Necromancy" sync / 1[56]:[^:]*:Spectral Necromancer:4F57:/ -1030.2 "Twisted Touch" sync / 1[56]:[^:]*:Spectral Necromancer:4F5E:/ window 30,30 -1046.7 "Necroburst" sync / 1[56]:[^:]*:Spectral Necromancer:4F5[9A]:/ -1051.4 "--sync--" sync / 1[56]:[^:]*:Spectral Necromancer:4FA3:/ -1059.0 "Pain Mire" sync / 1[56]:[^:]*:Spectral Necromancer:4FA4:/ -1066.7 "Necromancy" sync / 1[56]:[^:]*:Spectral Necromancer:4F58:/ -1074.2 "Death Throes" # sync / 1[56]:[^:]*:Necrobomb:4F63:/ -1085.7 "Necroburst" sync / 1[56]:[^:]*:Spectral Necromancer:4F5[9A]:/ - -1096.8 "Chaos Storm" sync / 1[56]:[^:]*:Spectral Necromancer:4F60:/ window 100,30 -1105.4 "Necromancy" sync / 1[56]:[^:]*:Spectral Necromancer:4F57:/ -1111.6 "Necromancy" sync / 1[56]:[^:]*:Spectral Necromancer:4F58:/ -1121.7 "--sync--" sync / 1[56]:[^:]*:Spectral Necromancer:4F5C:/ -1122.7 "Dark Deluge" sync / 1[56]:[^:]*:Spectral Necromancer:4F5D:/ window 30,30 -1124.0 "Death Throes" # sync / 1[56]:[^:]*:Necrobomb:4F63:/ -1130.1 "Necroburst" sync / 1[56]:[^:]*:Spectral Necromancer:4F5[9A]:/ -1142.6 "Absolute Dark II" sync / 1[56]:[^:]*:Spectral Necromancer:4F61:/ -1149.8 "--sync--" sync / 1[56]:[^:]*:Spectral Necromancer:4FA3:/ -1157.4 "Pain Mire" sync / 1[56]:[^:]*:Spectral Necromancer:4FA4:/ -1164.9 "Chaos Storm" sync / 1[56]:[^:]*:Spectral Necromancer:4F60:/ window 30,30 -1176.0 "Twisted Touch" sync / 1[56]:[^:]*:Spectral Necromancer:4F5E:/ -1182.4 "--sync--" sync / 1[56]:[^:]*:Spectral Necromancer:4FA3:/ -1189.9 "Pain Mire" sync / 1[56]:[^:]*:Spectral Necromancer:4FA4:/ -1196.4 "Necromancy" sync / 1[56]:[^:]*:Spectral Necromancer:4F57:/ -1208.5 "--sync--" sync / 1[56]:[^:]*:Spectral Necromancer:4F5C:/ -1209.5 "Dark Deluge" sync / 1[56]:[^:]*:Spectral Necromancer:4F5D:/ -1218.9 "Necroburst" sync / 1[56]:[^:]*:Spectral Necromancer:4F59:/ - -1230.1 "Chaos Storm" sync / 1[56]:[^:]*:Spectral Necromancer:4F60:/ window 30,30 jump 1096.8 +1000.0 "Start" SystemLogMessage { id: "7DC", param1: "DBC" } window 1000,5 +1012.8 "Absolute Dark II" Ability { id: "4F61", source: "Spectral Necromancer" } window 1012.8,5 +1020.0 "Necromancy" Ability { id: "4F57", source: "Spectral Necromancer" } +1030.2 "Twisted Touch" Ability { id: "4F5E", source: "Spectral Necromancer" } window 30,30 +1046.7 "Necroburst" Ability { id: "4F5[9A]", source: "Spectral Necromancer" } +1051.4 "--sync--" Ability { id: "4FA3", source: "Spectral Necromancer" } +1059.0 "Pain Mire" Ability { id: "4FA4", source: "Spectral Necromancer" } +1066.7 "Necromancy" Ability { id: "4F58", source: "Spectral Necromancer" } +1074.2 "Death Throes" # Ability { id: "4F63", source: "Necrobomb" } +1085.7 "Necroburst" Ability { id: "4F5[9A]", source: "Spectral Necromancer" } + +1096.8 "Chaos Storm" Ability { id: "4F60", source: "Spectral Necromancer" } window 100,30 +1105.4 "Necromancy" Ability { id: "4F57", source: "Spectral Necromancer" } +1111.6 "Necromancy" Ability { id: "4F58", source: "Spectral Necromancer" } +1121.7 "--sync--" Ability { id: "4F5C", source: "Spectral Necromancer" } +1122.7 "Dark Deluge" Ability { id: "4F5D", source: "Spectral Necromancer" } window 30,30 +1124.0 "Death Throes" # Ability { id: "4F63", source: "Necrobomb" } +1130.1 "Necroburst" Ability { id: "4F5[9A]", source: "Spectral Necromancer" } +1142.6 "Absolute Dark II" Ability { id: "4F61", source: "Spectral Necromancer" } +1149.8 "--sync--" Ability { id: "4FA3", source: "Spectral Necromancer" } +1157.4 "Pain Mire" Ability { id: "4FA4", source: "Spectral Necromancer" } +1164.9 "Chaos Storm" Ability { id: "4F60", source: "Spectral Necromancer" } window 30,30 +1176.0 "Twisted Touch" Ability { id: "4F5E", source: "Spectral Necromancer" } +1182.4 "--sync--" Ability { id: "4FA3", source: "Spectral Necromancer" } +1189.9 "Pain Mire" Ability { id: "4FA4", source: "Spectral Necromancer" } +1196.4 "Necromancy" Ability { id: "4F57", source: "Spectral Necromancer" } +1208.5 "--sync--" Ability { id: "4F5C", source: "Spectral Necromancer" } +1209.5 "Dark Deluge" Ability { id: "4F5D", source: "Spectral Necromancer" } +1218.9 "Necroburst" Ability { id: "4F59", source: "Spectral Necromancer" } + +1230.1 "Chaos Storm" Ability { id: "4F60", source: "Spectral Necromancer" } window 30,30 jump 1096.8 1238.7 "Necromancy" 1244.9 "Necromancy" 1256.0 "Dark Deluge" @@ -98,34 +98,34 @@ hideall "--sync--" # -ic "Steelarm Cerigg" "Giott The Aleforged" "Lue-Reeq Of The Gilded Bow" "Granson Of The Mournful Blade" # Illuminated Plaza will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:DBD:/ window 2000,5 -2012.0 "Beastly Fury" sync / 1[56]:[^:]*:Spectral Berserker:520C:/ window 2012,5 -2024.4 "Wild Anguish" sync / 1[56]:[^:]*:Spectral Berserker:5208:/ -2036.3 "Raging Slice" sync / 1[56]:[^:]*:Spectral Berserker:520A:/ -2041.0 "Raging Slice" sync / 1[56]:[^:]*:Spectral Berserker:520B:/ -2051.8 "Beastly Fury" sync / 1[56]:[^:]*:Spectral Berserker:520C:/ -2066.0 "Wild Rage" sync / 1[56]:[^:]*:Spectral Berserker:5202:/ window 66,30 -2076.1 "Falling Rock" sync / 1[56]:[^:]*:Rubble:5205:/ -2082.3 "Wild Anguish x4" sync / 1[56]:[^:]*:Spectral Berserker:5208:/ -2105.7 "--sync--" sync / 1[56]:[^:]*:Spectral Berserker:5206:/ -2106.2 "Wild Rampage" sync / 1[56]:[^:]*:Spectral Berserker:5207:/ window 106.2,5 -2117.7 "Raging Slice" sync / 1[56]:[^:]*:Spectral Berserker:520A:/ -2122.6 "Raging Slice" sync / 1[56]:[^:]*:Spectral Berserker:520B:/ -2127.7 "Raging Slice" sync / 1[56]:[^:]*:Spectral Berserker:520B:/ -2137.6 "Wild Rage" sync / 1[56]:[^:]*:Spectral Berserker:5202:/ window 30,30 -2149.4 "--sync--" sync / 1[56]:[^:]*:Spectral Berserker:5206:/ -2149.9 "Wild Rampage" sync / 1[56]:[^:]*:Spectral Berserker:5207:/ -2157.4 "Falling Rock" sync / 1[56]:[^:]*:Rubble:5205:/ -2162.6 "Wild Anguish x4" sync / 1[56]:[^:]*:Spectral Berserker:5208:/ - -2182.5 "Beastly Fury" sync / 1[56]:[^:]*:Spectral Berserker:520C:/ window 30,5 -2198.7 "Beastly Fury" sync / 1[56]:[^:]*:Spectral Berserker:520C:/ -2207.8 "Raging Slice" sync / 1[56]:[^:]*:Spectral Berserker:520A:/ -2212.3 "Raging Slice" sync / 1[56]:[^:]*:Spectral Berserker:520B:/ -2217.2 "Raging Slice" sync / 1[56]:[^:]*:Spectral Berserker:520B:/ -2226.1 "Wild Anguish" sync / 1[56]:[^:]*:Spectral Berserker:5208:/ - -2240.2 "Beastly Fury" sync / 1[56]:[^:]*:Spectral Berserker:520C:/ window 30,5 jump 2182.5 +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "DBD" } window 2000,5 +2012.0 "Beastly Fury" Ability { id: "520C", source: "Spectral Berserker" } window 2012,5 +2024.4 "Wild Anguish" Ability { id: "5208", source: "Spectral Berserker" } +2036.3 "Raging Slice" Ability { id: "520A", source: "Spectral Berserker" } +2041.0 "Raging Slice" Ability { id: "520B", source: "Spectral Berserker" } +2051.8 "Beastly Fury" Ability { id: "520C", source: "Spectral Berserker" } +2066.0 "Wild Rage" Ability { id: "5202", source: "Spectral Berserker" } window 66,30 +2076.1 "Falling Rock" Ability { id: "5205", source: "Rubble" } +2082.3 "Wild Anguish x4" Ability { id: "5208", source: "Spectral Berserker" } +2105.7 "--sync--" Ability { id: "5206", source: "Spectral Berserker" } +2106.2 "Wild Rampage" Ability { id: "5207", source: "Spectral Berserker" } window 106.2,5 +2117.7 "Raging Slice" Ability { id: "520A", source: "Spectral Berserker" } +2122.6 "Raging Slice" Ability { id: "520B", source: "Spectral Berserker" } +2127.7 "Raging Slice" Ability { id: "520B", source: "Spectral Berserker" } +2137.6 "Wild Rage" Ability { id: "5202", source: "Spectral Berserker" } window 30,30 +2149.4 "--sync--" Ability { id: "5206", source: "Spectral Berserker" } +2149.9 "Wild Rampage" Ability { id: "5207", source: "Spectral Berserker" } +2157.4 "Falling Rock" Ability { id: "5205", source: "Rubble" } +2162.6 "Wild Anguish x4" Ability { id: "5208", source: "Spectral Berserker" } + +2182.5 "Beastly Fury" Ability { id: "520C", source: "Spectral Berserker" } window 30,5 +2198.7 "Beastly Fury" Ability { id: "520C", source: "Spectral Berserker" } +2207.8 "Raging Slice" Ability { id: "520A", source: "Spectral Berserker" } +2212.3 "Raging Slice" Ability { id: "520B", source: "Spectral Berserker" } +2217.2 "Raging Slice" Ability { id: "520B", source: "Spectral Berserker" } +2226.1 "Wild Anguish" Ability { id: "5208", source: "Spectral Berserker" } + +2240.2 "Beastly Fury" Ability { id: "520C", source: "Spectral Berserker" } window 30,5 jump 2182.5 2256.4 "Beastly Fury" 2265.5 "Raging Slice" 2270.0 "Raging Slice" diff --git a/ui/raidboss/data/05-shb/dungeon/holminster_switch.txt b/ui/raidboss/data/05-shb/dungeon/holminster_switch.txt index a7876eb58e..d416d12658 100644 --- a/ui/raidboss/data/05-shb/dungeon/holminster_switch.txt +++ b/ui/raidboss/data/05-shb/dungeon/holminster_switch.txt @@ -6,36 +6,36 @@ hideall "--sync--" ### Forgiven Dissonance # -p 3DC5:112 # The Wound will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:CD4:/ window 100,0 -112.0 "The Path Of Light" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC5:/ window 112,0 -120.4 "Brazen Bull" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC9:/ -126.5 "Gibbet Cage" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC8:/ -134.4 "Thumbscrew" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC6:/ -134.6 "Heretic's Fork" sync / 1[56]:[^:]*:Forgiven Dissonance:3DCE:/ -139.7 "Light Shot" sync / 1[56]:[^:]*:Forgiven Dissonance:3DCB:/ -142.0 "Wooden Horse" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC7:/ - -154.2 "The Path Of Light" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC5:/ -162.5 "Pillory" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC4:/ -173.0 "Brazen Bull" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC9:/ -182.3 "Gibbet Cage" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC8:/ -187.2 "Heretic's Fork" sync / 1[56]:[^:]*:Forgiven Dissonance:3DCE:/ -190.3 "Thumbscrew" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC6:/ -192.3 "Light Shot" sync / 1[56]:[^:]*:Forgiven Dissonance:3DCB:/ - -202.8 "The Path Of Light" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC5:/ -211.1 "Pillory" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC4:/ -218.9 "Brazen Bull" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC9:/ -226.8 "Thumbscrew" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC6:/ -233.0 "Heretic's Fork" sync / 1[56]:[^:]*:Forgiven Dissonance:3DCE:/ -234.5 "Wooden Horse" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC7:/ -238.2 "Light Shot" sync / 1[56]:[^:]*:Forgiven Dissonance:3DCB:/ -241.4 "Thumbscrew" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC6:/ -243.2 "Heretic's Fork" sync / 1[56]:[^:]*:Forgiven Dissonance:3DCE:/ -248.4 "Light Shot" sync / 1[56]:[^:]*:Forgiven Dissonance:3DCB:/ -249.0 "Wooden Horse" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC7:/ - -261.3 "The Path Of Light" sync / 1[56]:[^:]*:Forgiven Dissonance:3DC5:/ window 30,30 jump 154.2 +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "CD4" } window 100,0 +112.0 "The Path Of Light" Ability { id: "3DC5", source: "Forgiven Dissonance" } window 112,0 +120.4 "Brazen Bull" Ability { id: "3DC9", source: "Forgiven Dissonance" } +126.5 "Gibbet Cage" Ability { id: "3DC8", source: "Forgiven Dissonance" } +134.4 "Thumbscrew" Ability { id: "3DC6", source: "Forgiven Dissonance" } +134.6 "Heretic's Fork" Ability { id: "3DCE", source: "Forgiven Dissonance" } +139.7 "Light Shot" Ability { id: "3DCB", source: "Forgiven Dissonance" } +142.0 "Wooden Horse" Ability { id: "3DC7", source: "Forgiven Dissonance" } + +154.2 "The Path Of Light" Ability { id: "3DC5", source: "Forgiven Dissonance" } +162.5 "Pillory" Ability { id: "3DC4", source: "Forgiven Dissonance" } +173.0 "Brazen Bull" Ability { id: "3DC9", source: "Forgiven Dissonance" } +182.3 "Gibbet Cage" Ability { id: "3DC8", source: "Forgiven Dissonance" } +187.2 "Heretic's Fork" Ability { id: "3DCE", source: "Forgiven Dissonance" } +190.3 "Thumbscrew" Ability { id: "3DC6", source: "Forgiven Dissonance" } +192.3 "Light Shot" Ability { id: "3DCB", source: "Forgiven Dissonance" } + +202.8 "The Path Of Light" Ability { id: "3DC5", source: "Forgiven Dissonance" } +211.1 "Pillory" Ability { id: "3DC4", source: "Forgiven Dissonance" } +218.9 "Brazen Bull" Ability { id: "3DC9", source: "Forgiven Dissonance" } +226.8 "Thumbscrew" Ability { id: "3DC6", source: "Forgiven Dissonance" } +233.0 "Heretic's Fork" Ability { id: "3DCE", source: "Forgiven Dissonance" } +234.5 "Wooden Horse" Ability { id: "3DC7", source: "Forgiven Dissonance" } +238.2 "Light Shot" Ability { id: "3DCB", source: "Forgiven Dissonance" } +241.4 "Thumbscrew" Ability { id: "3DC6", source: "Forgiven Dissonance" } +243.2 "Heretic's Fork" Ability { id: "3DCE", source: "Forgiven Dissonance" } +248.4 "Light Shot" Ability { id: "3DCB", source: "Forgiven Dissonance" } +249.0 "Wooden Horse" Ability { id: "3DC7", source: "Forgiven Dissonance" } + +261.3 "The Path Of Light" Ability { id: "3DC5", source: "Forgiven Dissonance" } window 30,30 jump 154.2 269.6 "Pillory" 280.1 "Brazen Bull" 289.4 "Gibbet Cage" @@ -48,25 +48,25 @@ hideall "--sync--" ### Tesleen, the Forgiven # -ii 3DD6 3DD3 -p 3DCF:513.5 # The Auction will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:CD5:/ window 500,0 -513.5 "The Tickler" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DCF:/ window 514,5 -523.6 "Scold's Bridle" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD0:/ -533.8 "Fevered Flagellation" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD5:/ -548.3 "Scold's Bridle" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD0:/ -558.6 "Exorcise" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD2:/ -560.4 "Holy Water" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD4:/ -573.8 "Fevered Flagellation" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD5:/ - -578.7 "--sync--" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD1:/ -594.8 "Scold's Bridle" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD0:/ window 3,3 -602.0 "Scold's Bridle" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD0:/ window 3,3 -612.1 "The Tickler" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DCF:/ -619.2 "Scold's Bridle" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD0:/ -636.4 "Exorcise" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD2:/ -638.3 "Holy Water" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD4:/ -651.6 "Fevered Flagellation" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD5:/ - -656.7 "--sync--" sync / 1[56]:[^:]*:Tesleen, the Forgiven:3DD1:/ window 30,30 jump 578.7 +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "CD5" } window 500,0 +513.5 "The Tickler" Ability { id: "3DCF", source: "Tesleen, the Forgiven" } window 514,5 +523.6 "Scold's Bridle" Ability { id: "3DD0", source: "Tesleen, the Forgiven" } +533.8 "Fevered Flagellation" Ability { id: "3DD5", source: "Tesleen, the Forgiven" } +548.3 "Scold's Bridle" Ability { id: "3DD0", source: "Tesleen, the Forgiven" } +558.6 "Exorcise" Ability { id: "3DD2", source: "Tesleen, the Forgiven" } +560.4 "Holy Water" Ability { id: "3DD4", source: "Tesleen, the Forgiven" } +573.8 "Fevered Flagellation" Ability { id: "3DD5", source: "Tesleen, the Forgiven" } + +578.7 "--sync--" Ability { id: "3DD1", source: "Tesleen, the Forgiven" } +594.8 "Scold's Bridle" Ability { id: "3DD0", source: "Tesleen, the Forgiven" } window 3,3 +602.0 "Scold's Bridle" Ability { id: "3DD0", source: "Tesleen, the Forgiven" } window 3,3 +612.1 "The Tickler" Ability { id: "3DCF", source: "Tesleen, the Forgiven" } +619.2 "Scold's Bridle" Ability { id: "3DD0", source: "Tesleen, the Forgiven" } +636.4 "Exorcise" Ability { id: "3DD2", source: "Tesleen, the Forgiven" } +638.3 "Holy Water" Ability { id: "3DD4", source: "Tesleen, the Forgiven" } +651.6 "Fevered Flagellation" Ability { id: "3DD5", source: "Tesleen, the Forgiven" } + +656.7 "--sync--" Ability { id: "3DD1", source: "Tesleen, the Forgiven" } window 30,30 jump 578.7 672.8 "Scold's Bridle" 680.0 "Scold's Bridle" 690.1 "The Tickler" @@ -79,40 +79,40 @@ hideall "--sync--" ### Philia # -ii 3DDD 3DDF 3DDE 3DDC 3DDB 3DE1 3DE0 3DE9 4196 3DE5 4181 -p 3DD8:1012.5 # The Manor House Courtyard will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:CD7:/ window 1000,0 -1012.5 "Scavenger's Daughter" sync / 1[56]:[^:]*:Philia:3DD8:/ window 1012.5,10 -1022.8 "Head Crusher" sync / 1[56]:[^:]*:Philia:3DD7:/ -1032.9 "Pendulum Tank" sync / 1[56]:[^:]*:Philia:4189:/ -1035.0 "Pendulum Center" sync / 1[56]:[^:]*:Philia:3DD9:/ - -1035.5 "--sync--" sync / 1[56]:[^:]*:Philia:418A:/ -1042.1 "Chain Down" sync / 1[56]:[^:]*:Philia:429C:/ -1059.5 "Aethersup" sync / 1[56]:[^:]*:Philia:3DE8:/ duration 3.5 - -1070.1 "Left/Right Knout" sync / 1[56]:[^:]*:Philia:3DE[67]:/ -1077.1 "Right/Left Knout" sync / 1[56]:[^:]*:Philia:3DE[67]:/ -1088.4 "Head Crusher" sync / 1[56]:[^:]*:Philia:3DD7:/ -1095.0 "Taphephobia" sync / 1[56]:[^:]*:Philia:3DE2:/ - -1097.2 "--sync--" sync / 1[56]:[^:]*:Philia:3DE4:/ -1102.1 "Into The Light" sync / 1[56]:[^:]*:Philia:4350:/ -1122.8 "Pendulum Tank" sync / 1[56]:[^:]*:Philia:4189:/ -1125.0 "Pendulum Center" sync / 1[56]:[^:]*:Philia:3DD9:/ - -1125.4 "--sync--" sync / 1[56]:[^:]*:Philia:418A:/ -1132.3 "Fierce Beating" sync / 1[56]:[^:]*:Philia:3DDA:/ duration 42 - -1165.8 "--sync--" sync / 1[56]:[^:]*:Philia:3DE4:/ -1170.8 "Into The Light" sync / 1[56]:[^:]*:Philia:4350:/ -1178.5 "Left/Right Knout" sync / 1[56]:[^:]*:Philia:3DE[67]:/ -1185.7 "Right/Left Knout" sync / 1[56]:[^:]*:Philia:3DE[67]:/ -1192.9 "Chain Down" sync / 1[56]:[^:]*:Philia:429C:/ -1210.3 "Aethersup" sync / 1[56]:[^:]*:Philia:3DE8:/ duration 3.5 -1225.6 "Scavenger's Daughter" sync / 1[56]:[^:]*:Philia:3DD8:/ -1244.9 "Head Crusher" sync / 1[56]:[^:]*:Philia:3DD7:/ -1251.6 "Taphephobia" sync / 1[56]:[^:]*:Philia:3DE2:/ - -1253.8 "--sync--" sync / 1[56]:[^:]*:Philia:3DE4:/ window 30,30 jump 1097.2 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "CD7" } window 1000,0 +1012.5 "Scavenger's Daughter" Ability { id: "3DD8", source: "Philia" } window 1012.5,10 +1022.8 "Head Crusher" Ability { id: "3DD7", source: "Philia" } +1032.9 "Pendulum Tank" Ability { id: "4189", source: "Philia" } +1035.0 "Pendulum Center" Ability { id: "3DD9", source: "Philia" } + +1035.5 "--sync--" Ability { id: "418A", source: "Philia" } +1042.1 "Chain Down" Ability { id: "429C", source: "Philia" } +1059.5 "Aethersup" Ability { id: "3DE8", source: "Philia" } duration 3.5 + +1070.1 "Left/Right Knout" Ability { id: "3DE[67]", source: "Philia" } +1077.1 "Right/Left Knout" Ability { id: "3DE[67]", source: "Philia" } +1088.4 "Head Crusher" Ability { id: "3DD7", source: "Philia" } +1095.0 "Taphephobia" Ability { id: "3DE2", source: "Philia" } + +1097.2 "--sync--" Ability { id: "3DE4", source: "Philia" } +1102.1 "Into The Light" Ability { id: "4350", source: "Philia" } +1122.8 "Pendulum Tank" Ability { id: "4189", source: "Philia" } +1125.0 "Pendulum Center" Ability { id: "3DD9", source: "Philia" } + +1125.4 "--sync--" Ability { id: "418A", source: "Philia" } +1132.3 "Fierce Beating" Ability { id: "3DDA", source: "Philia" } duration 42 + +1165.8 "--sync--" Ability { id: "3DE4", source: "Philia" } +1170.8 "Into The Light" Ability { id: "4350", source: "Philia" } +1178.5 "Left/Right Knout" Ability { id: "3DE[67]", source: "Philia" } +1185.7 "Right/Left Knout" Ability { id: "3DE[67]", source: "Philia" } +1192.9 "Chain Down" Ability { id: "429C", source: "Philia" } +1210.3 "Aethersup" Ability { id: "3DE8", source: "Philia" } duration 3.5 +1225.6 "Scavenger's Daughter" Ability { id: "3DD8", source: "Philia" } +1244.9 "Head Crusher" Ability { id: "3DD7", source: "Philia" } +1251.6 "Taphephobia" Ability { id: "3DE2", source: "Philia" } + +1253.8 "--sync--" Ability { id: "3DE4", source: "Philia" } window 30,30 jump 1097.2 1258.7 "Into The Light" 1279.4 "Pendulum Tank" 1281.6 "Pendulum Center" diff --git a/ui/raidboss/data/05-shb/dungeon/malikahs_well.txt b/ui/raidboss/data/05-shb/dungeon/malikahs_well.txt index 4fbe346480..e74a379aba 100644 --- a/ui/raidboss/data/05-shb/dungeon/malikahs_well.txt +++ b/ui/raidboss/data/05-shb/dungeon/malikahs_well.txt @@ -6,33 +6,33 @@ hideall "--sync--" ### Greater Armadillo # -ii 3CEA 3CE8 -p 3CE5:115 # Terminus will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BD5:/ window 100,0 +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BD5" } window 100,0 -115.0 "Stone Flail" sync / 1[56]:[^:]*:Greater Armadillo:3CE5:/ window 115,5 -133.6 "Head Toss" sync / 1[56]:[^:]*:Greater Armadillo:3CE6:/ -138.6 "Right Round" sync / 1[56]:[^:]*:Greater Armadillo:3CE7:/ -144.2 "Flail Smash" sync / 1[56]:[^:]*:Greater Armadillo:3CE9:/ -148.9 "Earthshake" sync / 1[56]:[^:]*:Greater Armadillo:3E39:/ +115.0 "Stone Flail" Ability { id: "3CE5", source: "Greater Armadillo" } window 115,5 +133.6 "Head Toss" Ability { id: "3CE6", source: "Greater Armadillo" } +138.6 "Right Round" Ability { id: "3CE7", source: "Greater Armadillo" } +144.2 "Flail Smash" Ability { id: "3CE9", source: "Greater Armadillo" } +148.9 "Earthshake" Ability { id: "3E39", source: "Greater Armadillo" } 160.7 "2x Pack Armadillo" -175.3 "Stone Flail" sync / 1[56]:[^:]*:Greater Armadillo:3CE5:/ -198.0 "Head Toss" sync / 1[56]:[^:]*:Greater Armadillo:3CE6:/ -203.0 "Right Round" sync / 1[56]:[^:]*:Greater Armadillo:3CE7:/ -208.6 "Flail Smash" sync / 1[56]:[^:]*:Greater Armadillo:3CE9:/ -213.3 "Earthshake" sync / 1[56]:[^:]*:Greater Armadillo:3E39:/ +175.3 "Stone Flail" Ability { id: "3CE5", source: "Greater Armadillo" } +198.0 "Head Toss" Ability { id: "3CE6", source: "Greater Armadillo" } +203.0 "Right Round" Ability { id: "3CE7", source: "Greater Armadillo" } +208.6 "Flail Smash" Ability { id: "3CE9", source: "Greater Armadillo" } +213.3 "Earthshake" Ability { id: "3E39", source: "Greater Armadillo" } 225.1 "2x Pack Armadillo" -239.6 "Stone Flail" sync / 1[56]:[^:]*:Greater Armadillo:3CE5:/ -262.0 "Head Toss" sync / 1[56]:[^:]*:Greater Armadillo:3CE6:/ -266.9 "Right Round" sync / 1[56]:[^:]*:Greater Armadillo:3CE7:/ -272.5 "Flail Smash" sync / 1[56]:[^:]*:Greater Armadillo:3CE9:/ -277.2 "Earthshake" sync / 1[56]:[^:]*:Greater Armadillo:3E39:/ +239.6 "Stone Flail" Ability { id: "3CE5", source: "Greater Armadillo" } +262.0 "Head Toss" Ability { id: "3CE6", source: "Greater Armadillo" } +266.9 "Right Round" Ability { id: "3CE7", source: "Greater Armadillo" } +272.5 "Flail Smash" Ability { id: "3CE9", source: "Greater Armadillo" } +277.2 "Earthshake" Ability { id: "3E39", source: "Greater Armadillo" } 289.0 "2x Pack Armadillo" -303.5 "Stone Flail" sync / 1[56]:[^:]*:Greater Armadillo:3CE5:/ window 20,20 jump 175.3 +303.5 "Stone Flail" Ability { id: "3CE5", source: "Greater Armadillo" } window 20,20 jump 175.3 326.2 "Head Toss" 331.2 "Right Round" 336.8 "Flail Smash" @@ -44,23 +44,23 @@ hideall "--sync--" ### Amphibious Talos # -ii 3CF0 -p 3CEB:515.5 # Malikah's Gift will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BD6:/ window 500,0 -515.5 "Efface" sync / 1[56]:[^:]*:Amphibious Talos:3CEB:/ window 515.5,10 -527.1 "Wellbore" sync / 1[56]:[^:]*:Amphibious Talos:3CED:/ -531.3 "Geyser Eruption" sync / 1[56]:[^:]*:Amphibious Talos:3CEE:/ -534.1 "High Pressure" sync / 1[56]:[^:]*:Amphibious Talos:3CEC:/ -544.5 "Swift Spill x6" sync / 1[56]:[^:]*:Amphibious Talos:3CEF:/ duration 6.4 -562.4 "Efface" sync / 1[56]:[^:]*:Amphibious Talos:3CEB:/ -575.1 "Efface" sync / 1[56]:[^:]*:Amphibious Talos:3CEB:/ - -590.4 "Wellbore" sync / 1[56]:[^:]*:Amphibious Talos:3CED:/ -594.6 "Geyser Eruption" sync / 1[56]:[^:]*:Amphibious Talos:3CEE:/ -597.4 "High Pressure" sync / 1[56]:[^:]*:Amphibious Talos:3CEC:/ -608.0 "Swift Spill x6" sync / 1[56]:[^:]*:Amphibious Talos:3CEF:/ duration 6.4 -625.9 "Efface" sync / 1[56]:[^:]*:Amphibious Talos:3CEB:/ -638.6 "Efface" sync / 1[56]:[^:]*:Amphibious Talos:3CEB:/ - -653.9 "Wellbore" sync / 1[56]:[^:]*:Amphibious Talos:3CED:/ window 20,20 jump 590.4 +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BD6" } window 500,0 +515.5 "Efface" Ability { id: "3CEB", source: "Amphibious Talos" } window 515.5,10 +527.1 "Wellbore" Ability { id: "3CED", source: "Amphibious Talos" } +531.3 "Geyser Eruption" Ability { id: "3CEE", source: "Amphibious Talos" } +534.1 "High Pressure" Ability { id: "3CEC", source: "Amphibious Talos" } +544.5 "Swift Spill x6" Ability { id: "3CEF", source: "Amphibious Talos" } duration 6.4 +562.4 "Efface" Ability { id: "3CEB", source: "Amphibious Talos" } +575.1 "Efface" Ability { id: "3CEB", source: "Amphibious Talos" } + +590.4 "Wellbore" Ability { id: "3CED", source: "Amphibious Talos" } +594.6 "Geyser Eruption" Ability { id: "3CEE", source: "Amphibious Talos" } +597.4 "High Pressure" Ability { id: "3CEC", source: "Amphibious Talos" } +608.0 "Swift Spill x6" Ability { id: "3CEF", source: "Amphibious Talos" } duration 6.4 +625.9 "Efface" Ability { id: "3CEB", source: "Amphibious Talos" } +638.6 "Efface" Ability { id: "3CEB", source: "Amphibious Talos" } + +653.9 "Wellbore" Ability { id: "3CED", source: "Amphibious Talos" } window 20,20 jump 590.4 658.1 "Geyser Eruption" 660.9 "High Pressure" 671.5 "Swift Spill x6" duration 6.4 @@ -71,40 +71,40 @@ hideall "--sync--" ### Storge # -ii 3CF7 3CA8 41A8 -p 3CF1:1015 # Unquestioned Acceptance will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BD7:/ window 1000,0 -1015.0 "Intestinal Crank" sync / 1[56]:[^:]*:Storge:3CF1:/ window 1015,5 -1028.2 "Heretic's Fork" sync / 1[56]:[^:]*:Storge:3CF2:/ -1043.0 "Breaking Wheel" sync / 1[56]:[^:]*:Storge:3CF5:/ - -1056.1 "Crystal Nail" sync / 1[56]:[^:]*:Storge:3CF6:/ -1063.2 "Heretic's Fork?" sync / 1[56]:[^:]*:Storge:3CF2:/ window 10,10 jump 2063.2 -1065.7 "Breaking Wheel?" sync / 1[56]:[^:]*:Storge:3CF5:/ window 10,10 jump 2156.2 - -2056.1 "Crystal Nail" sync / 1[56]:[^:]*:Storge:3CF6:/ -2063.2 "Heretic's Fork" sync / 1[56]:[^:]*:Storge:3CF2:/ -2068.3 "Censure" sync / 1[56]:[^:]*:Storge:3CF8:/ -2078.5 "Heretic's Fork" #sync / 1[56]:[^:]*:Rhapsodic Nail:3CF9:/ -2082.5 "Heretic's Fork" #sync / 1[56]:[^:]*:Rhapsodic Nail:3CF9:/ -2086.5 "Heretic's Fork" #sync / 1[56]:[^:]*:Rhapsodic Nail:3CF9:/ -2090.5 "Heretic's Fork" #sync / 1[56]:[^:]*:Rhapsodic Nail:3CF9:/ -2093.4 "Heretic's Fork" sync / 1[56]:[^:]*:Storge:3E0E:/ -2105.6 "Intestinal Crank" sync / 1[56]:[^:]*:Storge:3CF1:/ -2119.7 "Intestinal Crank" sync / 1[56]:[^:]*:Storge:3CF1:/ -2133.8 "Intestinal Crank" sync / 1[56]:[^:]*:Storge:3CF1:/ - -2146.6 "Crystal Nail" sync / 1[56]:[^:]*:Storge:3CF6:/ -2156.2 "Breaking Wheel" sync / 1[56]:[^:]*:Storge:3CF5:/ -2161.4 "Censure" sync / 1[56]:[^:]*:Storge:3E37:/ -2172.5 "Breaking Wheel" #sync / 1[56]:[^:]*:Rhapsodic Nail:3CFA:/ -2177.7 "Breaking Wheel" #sync / 1[56]:[^:]*:Rhapsodic Nail:3CFA:/ -2182.7 "Breaking Wheel" #sync / 1[56]:[^:]*:Rhapsodic Nail:3CFA:/ -2187.7 "Breaking Wheel" #sync / 1[56]:[^:]*:Rhapsodic Nail:3CFA:/ -2192.6 "Breaking Wheel" sync / 1[56]:[^:]*:Storge:3E0F:/ -2212.4 "Intestinal Crank" sync / 1[56]:[^:]*:Storge:3CF1:/ -2226.5 "Intestinal Crank" sync / 1[56]:[^:]*:Storge:3CF1:/ -2240.6 "Intestinal Crank" sync / 1[56]:[^:]*:Storge:3CF1:/ - -2253.4 "Crystal Nail" sync / 1[56]:[^:]*:Storge:3CF6:/ window 50,50 jump 2056.1 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BD7" } window 1000,0 +1015.0 "Intestinal Crank" Ability { id: "3CF1", source: "Storge" } window 1015,5 +1028.2 "Heretic's Fork" Ability { id: "3CF2", source: "Storge" } +1043.0 "Breaking Wheel" Ability { id: "3CF5", source: "Storge" } + +1056.1 "Crystal Nail" Ability { id: "3CF6", source: "Storge" } +1063.2 "Heretic's Fork?" Ability { id: "3CF2", source: "Storge" } window 10,10 jump 2063.2 +1065.7 "Breaking Wheel?" Ability { id: "3CF5", source: "Storge" } window 10,10 jump 2156.2 + +2056.1 "Crystal Nail" Ability { id: "3CF6", source: "Storge" } +2063.2 "Heretic's Fork" Ability { id: "3CF2", source: "Storge" } +2068.3 "Censure" Ability { id: "3CF8", source: "Storge" } +2078.5 "Heretic's Fork" #Ability { id: "3CF9", source: "Rhapsodic Nail" } +2082.5 "Heretic's Fork" #Ability { id: "3CF9", source: "Rhapsodic Nail" } +2086.5 "Heretic's Fork" #Ability { id: "3CF9", source: "Rhapsodic Nail" } +2090.5 "Heretic's Fork" #Ability { id: "3CF9", source: "Rhapsodic Nail" } +2093.4 "Heretic's Fork" Ability { id: "3E0E", source: "Storge" } +2105.6 "Intestinal Crank" Ability { id: "3CF1", source: "Storge" } +2119.7 "Intestinal Crank" Ability { id: "3CF1", source: "Storge" } +2133.8 "Intestinal Crank" Ability { id: "3CF1", source: "Storge" } + +2146.6 "Crystal Nail" Ability { id: "3CF6", source: "Storge" } +2156.2 "Breaking Wheel" Ability { id: "3CF5", source: "Storge" } +2161.4 "Censure" Ability { id: "3E37", source: "Storge" } +2172.5 "Breaking Wheel" #Ability { id: "3CFA", source: "Rhapsodic Nail" } +2177.7 "Breaking Wheel" #Ability { id: "3CFA", source: "Rhapsodic Nail" } +2182.7 "Breaking Wheel" #Ability { id: "3CFA", source: "Rhapsodic Nail" } +2187.7 "Breaking Wheel" #Ability { id: "3CFA", source: "Rhapsodic Nail" } +2192.6 "Breaking Wheel" Ability { id: "3E0F", source: "Storge" } +2212.4 "Intestinal Crank" Ability { id: "3CF1", source: "Storge" } +2226.5 "Intestinal Crank" Ability { id: "3CF1", source: "Storge" } +2240.6 "Intestinal Crank" Ability { id: "3CF1", source: "Storge" } + +2253.4 "Crystal Nail" Ability { id: "3CF6", source: "Storge" } window 50,50 jump 2056.1 2260.5 "Heretic's Fork" 2265.5 "Censure" 2275.7 "Heretic's Fork" diff --git a/ui/raidboss/data/05-shb/dungeon/matoyas_relict.txt b/ui/raidboss/data/05-shb/dungeon/matoyas_relict.txt index ecfcc8e30f..a91c635d86 100644 --- a/ui/raidboss/data/05-shb/dungeon/matoyas_relict.txt +++ b/ui/raidboss/data/05-shb/dungeon/matoyas_relict.txt @@ -7,104 +7,104 @@ hideall "--sync--" # -p 547F:1011 # -ii 368 5481 5487 548E 548F 5490 5492 # Clayclot Cauldron will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E02:/ window 1000,0 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E02" } window 1000,0 # Loop 3 times -1011.0 "Hard Rock" sync / 1[56]:[^:]*:Mudman:547F:/ window 1012,10 -1020.2 "Petrified Peat" sync / 1[56]:[^:]*:Mudman:5480:/ -1032.3 "Peat Pelt" sync / 1[56]:[^:]*:Mudman:5482:/ -1041.4 "Rocky Roll" sync / 1[56]:[^:]*:Mud Bubble:548(3|4):/ -1050.7 "Brittle Breccia" sync / 1[56]:[^:]*:Mudman:548D:/ -1051.1 "Rocky Roll" sync / 1[56]:[^:]*:Mud Bubble:548(3|5):/ -1066.7 "Stone Age" sync / 1[56]:[^:]*:Mudman:5491:/ - -1077.8 "Hard Rock" sync / 1[56]:[^:]*:Mudman:547F:/ window 10,10 -1087.0 "Petrified Peat" sync / 1[56]:[^:]*:Mudman:5480:/ -1099.1 "Peat Pelt" sync / 1[56]:[^:]*:Mudman:5482:/ -1108.2 "Rocky Roll" sync / 1[56]:[^:]*:Mud Bubble:548(3|4):/ -1117.5 "Brittle Breccia" sync / 1[56]:[^:]*:Mudman:548D:/ -1117.9 "Rocky Roll" sync / 1[56]:[^:]*:Mud Bubble:548(3|5):/ -1133.5 "Stone Age" sync / 1[56]:[^:]*:Mudman:5491:/ +1011.0 "Hard Rock" Ability { id: "547F", source: "Mudman" } window 1012,10 +1020.2 "Petrified Peat" Ability { id: "5480", source: "Mudman" } +1032.3 "Peat Pelt" Ability { id: "5482", source: "Mudman" } +1041.4 "Rocky Roll" Ability { id: "548(3|4)", source: "Mud Bubble" } +1050.7 "Brittle Breccia" Ability { id: "548D", source: "Mudman" } +1051.1 "Rocky Roll" Ability { id: "548(3|5)", source: "Mud Bubble" } +1066.7 "Stone Age" Ability { id: "5491", source: "Mudman" } + +1077.8 "Hard Rock" Ability { id: "547F", source: "Mudman" } window 10,10 +1087.0 "Petrified Peat" Ability { id: "5480", source: "Mudman" } +1099.1 "Peat Pelt" Ability { id: "5482", source: "Mudman" } +1108.2 "Rocky Roll" Ability { id: "548(3|4)", source: "Mud Bubble" } +1117.5 "Brittle Breccia" Ability { id: "548D", source: "Mudman" } +1117.9 "Rocky Roll" Ability { id: "548(3|5)", source: "Mud Bubble" } +1133.5 "Stone Age" Ability { id: "5491", source: "Mudman" } # After this loop, each loop with "Falling Rock" -1144.6 "Hard Rock" sync / 1[56]:[^:]*:Mudman:547F:/ window 10,10 -1153.8 "Petrified Peat" sync / 1[56]:[^:]*:Mudman:5480:/ -1165.9 "Peat Pelt" sync / 1[56]:[^:]*:Mudman:5482:/ -1175.0 "Rocky Roll" sync / 1[56]:[^:]*:Mud Bubble:548(3|4):/ -1184.3 "Brittle Breccia" sync / 1[56]:[^:]*:Mudman:548D:/ -1184.7 "Rocky Roll" sync / 1[56]:[^:]*:Mud Bubble:548(3|5):/ -1200.3 "Stone Age" sync / 1[56]:[^:]*:Mudman:5491:/ +1144.6 "Hard Rock" Ability { id: "547F", source: "Mudman" } window 10,10 +1153.8 "Petrified Peat" Ability { id: "5480", source: "Mudman" } +1165.9 "Peat Pelt" Ability { id: "5482", source: "Mudman" } +1175.0 "Rocky Roll" Ability { id: "548(3|4)", source: "Mud Bubble" } +1184.3 "Brittle Breccia" Ability { id: "548D", source: "Mudman" } +1184.7 "Rocky Roll" Ability { id: "548(3|5)", source: "Mud Bubble" } +1200.3 "Stone Age" Ability { id: "5491", source: "Mudman" } -1212.3 "Falling Rock" sync / 1[56]:[^:]*:Mudman:549(3|4):/ +1212.3 "Falling Rock" Ability { id: "549(3|4)", source: "Mudman" } -1223.5 "Hard Rock" sync / 1[56]:[^:]*:Mudman:547F:/ window 10,10 jump 1144.6 -1232.7 "Petrified Peat" # sync / 1[56]:[^:]*:Mudman:5480:/ -1244.8 "Peat Pelt" # sync / 1[56]:[^:]*:Mudman:5482:/ -1253.9 "Rocky Roll" # sync / 1[56]:[^:]*:Mud Bubble:548(3|4):/ -1263.2 "Brittle Breccia" # sync / 1[56]:[^:]*:Mudman:548D:/ +1223.5 "Hard Rock" Ability { id: "547F", source: "Mudman" } window 10,10 jump 1144.6 +1232.7 "Petrified Peat" # Ability { id: "5480", source: "Mudman" } +1244.8 "Peat Pelt" # Ability { id: "5482", source: "Mudman" } +1253.9 "Rocky Roll" # Ability { id: "548(3|4)", source: "Mud Bubble" } +1263.2 "Brittle Breccia" # Ability { id: "548D", source: "Mudman" } ### Nixie # -p 598F:2009.2 # -ii 598E 5990 5992 5993 5994 5995 5996 5BB9 # Clearnote Cauldron will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E03:/ window 2000,0 +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E03" } window 2000,0 -2009.2 "Crash-Smash" sync / 1[56]:[^:]*:Nixie:598F:/ window 2010,10 -2023.4 "Shower Power" sync / 1[56]:[^:]*:Nixie:5991:/ +2009.2 "Crash-Smash" Ability { id: "598F", source: "Nixie" } window 2010,10 +2023.4 "Shower Power" Ability { id: "5991", source: "Nixie" } 2038.1 "--untargetable--" -2044.1 "Pitter-Patter" sync / 1[56]:[^:]*:Nixie:5988:/ -2072.2 "Sea Shanty" sync / 1[56]:[^:]*:Nixie:598[AC]:/ -2092.4 "Shower Power" sync / 1[56]:[^:]*:Nixie:5991:/ +2044.1 "Pitter-Patter" Ability { id: "5988", source: "Nixie" } +2072.2 "Sea Shanty" Ability { id: "598[AC]", source: "Nixie" } +2092.4 "Shower Power" Ability { id: "5991", source: "Nixie" } -2110.5 "Crash-Smash" sync / 1[56]:[^:]*:Nixie:598F:/ window 10,10 -2130.7 "Shower Power" sync / 1[56]:[^:]*:Nixie:5991:/ -2134.9 "Splish-Splash" sync / 1[56]:[^:]*:Nixie:598D:/ -2160.0 "Shower Power" sync / 1[56]:[^:]*:Nixie:5991:/ +2110.5 "Crash-Smash" Ability { id: "598F", source: "Nixie" } window 10,10 +2130.7 "Shower Power" Ability { id: "5991", source: "Nixie" } +2134.9 "Splish-Splash" Ability { id: "598D", source: "Nixie" } +2160.0 "Shower Power" Ability { id: "5991", source: "Nixie" } -2178.2 "Crash-Smash" sync / 1[56]:[^:]*:Nixie:598F:/ window 10,10 jump 2110.5 -2198.4 "Shower Power" # sync / 1[56]:[^:]*:Nixie:5991:/ -2202.6 "Splish-Splash" # sync / 1[56]:[^:]*:Nixie:598D:/ -2227.7 "Shower Power" # sync / 1[56]:[^:]*:Nixie:5991:/ +2178.2 "Crash-Smash" Ability { id: "598F", source: "Nixie" } window 10,10 jump 2110.5 +2198.4 "Shower Power" # Ability { id: "5991", source: "Nixie" } +2202.6 "Splish-Splash" # Ability { id: "598D", source: "Nixie" } +2227.7 "Shower Power" # Ability { id: "5991", source: "Nixie" } ### Mother Porxie # -p 5913:3010.0 # -ii 4A8F 5912 5914 5917 5918 591E 591F 5923 5925 # Woebegone Workshop will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E05:/ window 3000,0 +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E05" } window 3000,0 -3011.3 "Tender Loin" sync / 1[56]:[^:]*:Mother Porxie:5913:/ window 3012,10 -3029.5 "Huff And Puff" sync / 1[56]:[^:]*:Mother Porxie:5919:/ -3031.6 "Medium Rear" sync / 1[56]:[^:]*:Mother Porxie:591D:/ -3045.7 "Meat Mallet" sync / 1[56]:[^:]*:Mother Porxie:5916:/ +3011.3 "Tender Loin" Ability { id: "5913", source: "Mother Porxie" } window 3012,10 +3029.5 "Huff And Puff" Ability { id: "5919", source: "Mother Porxie" } +3031.6 "Medium Rear" Ability { id: "591D", source: "Mother Porxie" } +3045.7 "Meat Mallet" Ability { id: "5916", source: "Mother Porxie" } 3045.7 "--untargetable--" -3050.4 "Barbeque" sync / 1[56]:[^:]*:Mother Porxie:5B23:/ -3072.4 "To A Crisp" sync / 1[56]:[^:]*:Mother Porxie:5924:/ +3050.4 "Barbeque" Ability { id: "5B23", source: "Mother Porxie" } +3072.4 "To A Crisp" Ability { id: "5924", source: "Mother Porxie" } 3074.4 "--targetable--" -3086.5 "Minced Meat" sync / 1[56]:[^:]*:Mother Porxie:5911:/ window 50,10 +3086.5 "Minced Meat" Ability { id: "5911", source: "Mother Porxie" } window 50,10 3093.6 "--untargetable--" -3096.6 "Huff And Puff" sync / 14:[^:]*:Mother Porxie:591A:/ window 96.6,5 duration 33.7 -3101.6 "Buffet" sync / 1[56]:[^:]*:Aeolian Cave Sprite:5926:/ -3107.3 "Buffet" sync / 1[56]:[^:]*:Aeolian Cave Sprite:5926:/ -3112.8 "Buffet" sync / 1[56]:[^:]*:Aeolian Cave Sprite:5926:/ -3118.4 "Buffet" sync / 1[56]:[^:]*:Aeolian Cave Sprite:5926:/ -3124.0 "Buffet" sync / 1[56]:[^:]*:Aeolian Cave Sprite:5926:/ -3129.6 "Buffet" sync / 1[56]:[^:]*:Aeolian Cave Sprite:5926:/ -3130.3 "Huff And Puff Enrage?" sync / 1[56]:[^:]*:Mother Porxie:591B:/ window 50,5 +3096.6 "Huff And Puff" StartsUsing { id: "591A", source: "Mother Porxie" } window 96.6,5 duration 33.7 +3101.6 "Buffet" Ability { id: "5926", source: "Aeolian Cave Sprite" } +3107.3 "Buffet" Ability { id: "5926", source: "Aeolian Cave Sprite" } +3112.8 "Buffet" Ability { id: "5926", source: "Aeolian Cave Sprite" } +3118.4 "Buffet" Ability { id: "5926", source: "Aeolian Cave Sprite" } +3124.0 "Buffet" Ability { id: "5926", source: "Aeolian Cave Sprite" } +3129.6 "Buffet" Ability { id: "5926", source: "Aeolian Cave Sprite" } +3130.3 "Huff And Puff Enrage?" Ability { id: "591B", source: "Mother Porxie" } window 50,5 3132.3 "--targetable--" # Loop -3132.4 "Medium Rear" sync / 1[56]:[^:]*:Mother Porxie:591D:/ -3148.5 "Open Flame" sync / 1[56]:[^:]*:Mother Porxie:5922:/ -3160.6 "Minced Meat" sync / 1[56]:[^:]*:Mother Porxie:5911:/ -3172.7 "Tender Loin" sync / 1[56]:[^:]*:Mother Porxie:5913:/ -3186.8 "Tender Loin" sync / 1[56]:[^:]*:Mother Porxie:5913:/ -3207.1 "Huff And Puff" sync / 1[56]:[^:]*:Mother Porxie:5919:/ - -3209.2 "Medium Rear" sync / 1[56]:[^:]*:Mother Porxie:591D:/ -3225.3 "Open Flame" sync / 1[56]:[^:]*:Mother Porxie:5922:/ -3237.5 "Minced Meat" sync / 1[56]:[^:]*:Mother Porxie:5911:/ jump 3160.6 -3249.6 "Tender Loin" # sync / 1[56]:[^:]*:Mother Porxie:5913:/ -3263.7 "Tender Loin" # sync / 1[56]:[^:]*:Mother Porxie:5913:/ -3281.9 "Huff And Puff" # sync / 1[56]:[^:]*:Mother Porxie:5919:/ +3132.4 "Medium Rear" Ability { id: "591D", source: "Mother Porxie" } +3148.5 "Open Flame" Ability { id: "5922", source: "Mother Porxie" } +3160.6 "Minced Meat" Ability { id: "5911", source: "Mother Porxie" } +3172.7 "Tender Loin" Ability { id: "5913", source: "Mother Porxie" } +3186.8 "Tender Loin" Ability { id: "5913", source: "Mother Porxie" } +3207.1 "Huff And Puff" Ability { id: "5919", source: "Mother Porxie" } + +3209.2 "Medium Rear" Ability { id: "591D", source: "Mother Porxie" } +3225.3 "Open Flame" Ability { id: "5922", source: "Mother Porxie" } +3237.5 "Minced Meat" Ability { id: "5911", source: "Mother Porxie" } jump 3160.6 +3249.6 "Tender Loin" # Ability { id: "5913", source: "Mother Porxie" } +3263.7 "Tender Loin" # Ability { id: "5913", source: "Mother Porxie" } +3281.9 "Huff And Puff" # Ability { id: "5919", source: "Mother Porxie" } diff --git a/ui/raidboss/data/05-shb/dungeon/mt_gulg.txt b/ui/raidboss/data/05-shb/dungeon/mt_gulg.txt index 6c2978ec06..7b3d7b12dc 100644 --- a/ui/raidboss/data/05-shb/dungeon/mt_gulg.txt +++ b/ui/raidboss/data/05-shb/dungeon/mt_gulg.txt @@ -9,29 +9,29 @@ hideall "Rite Of The Sacrament" ### Forgiven Cruelty # -p 3CFB:113 -ii 3CFE 3CFD 4301 3CFF # The Perished Path will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BB6:/ window 100,0 -113.0 "Rake" sync / 1[56]:[^:]*:Forgiven Cruelty:3CFB:/ window 115,5 -121.2 "Lumen Infinitum" sync / 1[56]:[^:]*:Forgiven Cruelty:41B2:/ -138.3 "Typhoon Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3D00:/ -147.2 "Cyclone Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3CFC:/ -160.8 "Typhoon Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3D00:/ -171.6 "Lumen Infinitum" sync / 1[56]:[^:]*:Forgiven Cruelty:41B2:/ -188.2 "Typhoon Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3D01:/ -188.2 "Hurricane Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3D03:/ -197.0 "Cyclone Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3CFC:/ +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BB6" } window 100,0 +113.0 "Rake" Ability { id: "3CFB", source: "Forgiven Cruelty" } window 115,5 +121.2 "Lumen Infinitum" Ability { id: "41B2", source: "Forgiven Cruelty" } +138.3 "Typhoon Wing" Ability { id: "3D00", source: "Forgiven Cruelty" } +147.2 "Cyclone Wing" Ability { id: "3CFC", source: "Forgiven Cruelty" } +160.8 "Typhoon Wing" Ability { id: "3D00", source: "Forgiven Cruelty" } +171.6 "Lumen Infinitum" Ability { id: "41B2", source: "Forgiven Cruelty" } +188.2 "Typhoon Wing" Ability { id: "3D01", source: "Forgiven Cruelty" } +188.2 "Hurricane Wing" Ability { id: "3D03", source: "Forgiven Cruelty" } +197.0 "Cyclone Wing" Ability { id: "3CFC", source: "Forgiven Cruelty" } -205.3 "Rake" sync / 1[56]:[^:]*:Forgiven Cruelty:3CFB:/ -214.4 "Lumen Infinitum" sync / 1[56]:[^:]*:Forgiven Cruelty:41B2:/ -231.0 "Typhoon Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3D0[12]:/ -231.0 "Hurricane Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3D03:/ -239.8 "Cyclone Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3CFC:/ -248.2 "Rake" sync / 1[56]:[^:]*:Forgiven Cruelty:3CFB:/ -257.5 "Lumen Infinitum" sync / 1[56]:[^:]*:Forgiven Cruelty:41B2:/ -274.2 "Typhoon Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3D0[12]:/ -274.2 "Hurricane Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3D03:/ -283.0 "Cyclone Wing" sync / 1[56]:[^:]*:Forgiven Cruelty:3CFC:/ +205.3 "Rake" Ability { id: "3CFB", source: "Forgiven Cruelty" } +214.4 "Lumen Infinitum" Ability { id: "41B2", source: "Forgiven Cruelty" } +231.0 "Typhoon Wing" Ability { id: "3D0[12]", source: "Forgiven Cruelty" } +231.0 "Hurricane Wing" Ability { id: "3D03", source: "Forgiven Cruelty" } +239.8 "Cyclone Wing" Ability { id: "3CFC", source: "Forgiven Cruelty" } +248.2 "Rake" Ability { id: "3CFB", source: "Forgiven Cruelty" } +257.5 "Lumen Infinitum" Ability { id: "41B2", source: "Forgiven Cruelty" } +274.2 "Typhoon Wing" Ability { id: "3D0[12]", source: "Forgiven Cruelty" } +274.2 "Hurricane Wing" Ability { id: "3D03", source: "Forgiven Cruelty" } +283.0 "Cyclone Wing" Ability { id: "3CFC", source: "Forgiven Cruelty" } -291.3 "Rake" sync / 1[56]:[^:]*:Forgiven Cruelty:3CFB:/ window 20,20 jump 205.3 +291.3 "Rake" Ability { id: "3CFB", source: "Forgiven Cruelty" } window 20,20 jump 205.3 300.4 "Lumen Infinitum" 317.0 "Typhoon Wing" 317.0 "Hurricane Wing" @@ -46,30 +46,30 @@ hideall "Rite Of The Sacrament" ### Forgiven Whimsy # -p 3D0B:514.5 -ii 3D0C 3D07 3D0A # The White Gate will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BB7:/ window 500,0 -514.5 "Sacrament Of Penance" sync / 1[56]:[^:]*:Forgiven Whimsy:3D0B:/ window 515,5 -518.3 "Reformation" sync / 1[56]:[^:]*:Forgiven Whimsy:3D04:/ -530.4 "Exegesis" sync / 1[56]:[^:]*:Forgiven Whimsy:425C:/ -534.1 "Reformation" sync / 1[56]:[^:]*:Forgiven Whimsy:3D04:/ -546.2 "Exegesis" sync / 1[56]:[^:]*:Forgiven Whimsy:425D:/ -557.0 "Catechism" sync / 1[56]:[^:]*:Forgiven Whimsy:3D09:/ -563.7 "Judgment Day" sync / 1[56]:[^:]*:Forgiven Whimsy:3D0F:/ -575.3 "Judged" sync / 1[56]:[^:]*:Forgiven Whimsy:3D11:/ -580.3 "Catechism" sync / 1[56]:[^:]*:Forgiven Whimsy:3D09:/ -580.3 "Judged" sync / 1[56]:[^:]*:Forgiven Whimsy:3D11:/ -584.0 "Reformation" sync / 1[56]:[^:]*:Forgiven Whimsy:3D04:/ +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BB7" } window 500,0 +514.5 "Sacrament Of Penance" Ability { id: "3D0B", source: "Forgiven Whimsy" } window 515,5 +518.3 "Reformation" Ability { id: "3D04", source: "Forgiven Whimsy" } +530.4 "Exegesis" Ability { id: "425C", source: "Forgiven Whimsy" } +534.1 "Reformation" Ability { id: "3D04", source: "Forgiven Whimsy" } +546.2 "Exegesis" Ability { id: "425D", source: "Forgiven Whimsy" } +557.0 "Catechism" Ability { id: "3D09", source: "Forgiven Whimsy" } +563.7 "Judgment Day" Ability { id: "3D0F", source: "Forgiven Whimsy" } +575.3 "Judged" Ability { id: "3D11", source: "Forgiven Whimsy" } +580.3 "Catechism" Ability { id: "3D09", source: "Forgiven Whimsy" } +580.3 "Judged" Ability { id: "3D11", source: "Forgiven Whimsy" } +584.0 "Reformation" Ability { id: "3D04", source: "Forgiven Whimsy" } -591.3 "Rite Of The Sacrament" sync / 1[56]:[^:]*:Forgiven Whimsy:3D0D:/ -603.6 "Exegesis" sync / 1[56]:[^:]*:Forgiven Whimsy:425B:/ -604.1 "Perfect Contrition" sync / 1[56]:[^:]*:Brightsphere:3D0E:/ -607.2 "Reformation" sync / 1[56]:[^:]*:Forgiven Whimsy:3D04:/ -614.4 "Rite Of The Sacrament" sync / 1[56]:[^:]*:Forgiven Whimsy:3D0D:/ -626.8 "Exegesis" sync / 1[56]:[^:]*:Forgiven Whimsy:3D06:/ -627.2 "Perfect Contrition" sync / 1[56]:[^:]*:Brightsphere:3D0E:/ -636.9 "Sacrament Of Penance" sync / 1[56]:[^:]*:Forgiven Whimsy:3D0B:/ -640.6 "Reformation" sync / 1[56]:[^:]*:Forgiven Whimsy:3D04:/ +591.3 "Rite Of The Sacrament" Ability { id: "3D0D", source: "Forgiven Whimsy" } +603.6 "Exegesis" Ability { id: "425B", source: "Forgiven Whimsy" } +604.1 "Perfect Contrition" Ability { id: "3D0E", source: "Brightsphere" } +607.2 "Reformation" Ability { id: "3D04", source: "Forgiven Whimsy" } +614.4 "Rite Of The Sacrament" Ability { id: "3D0D", source: "Forgiven Whimsy" } +626.8 "Exegesis" Ability { id: "3D06", source: "Forgiven Whimsy" } +627.2 "Perfect Contrition" Ability { id: "3D0E", source: "Brightsphere" } +636.9 "Sacrament Of Penance" Ability { id: "3D0B", source: "Forgiven Whimsy" } +640.6 "Reformation" Ability { id: "3D04", source: "Forgiven Whimsy" } -647.7 "Rite Of The Sacrament" sync / 1[56]:[^:]*:Forgiven Whimsy:3D0D:/ window 20,20 jump 591.3 +647.7 "Rite Of The Sacrament" Ability { id: "3D0D", source: "Forgiven Whimsy" } window 20,20 jump 591.3 660.0 "Exegesis" 660.5 "Perfect Contrition" 663.6 "Reformation" @@ -83,31 +83,31 @@ hideall "Rite Of The Sacrament" ### Forgiven Obscenity # -ii 3D15 4669 3D19 3D19 3D21 3D13 41CE 3D1B 3D20 -p 3D14:1014 # The Winding Flare will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BB8:/ window 1000,0 -1014.0 "Orison Fortissimo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D14:/ window 1014,5 -1023.2 "Divine Diminuendo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D16:/ -1032.4 "--sync--" sync / 1[56]:[^:]*:Forgiven Obscenity:3D17:/ -1040.6 "Divine Diminuendo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D18:/ -1051.0 "Conviction Marcato" sync / 1[56]:[^:]*:Forgiven Obscenity:3D1A:/ -1062.2 "Penance Pianissimo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D1C:/ -1070.4 "Feather Marionette" sync / 1[56]:[^:]*:Forgiven Obscenity:3D1D:/ -1083.3 "Divine Diminuendo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D18:/ -1093.5 "Conviction Marcato" sync / 1[56]:[^:]*:Forgiven Obscenity:3D1A:/ -1107.7 "Orison Fortissimo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D14:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BB8" } window 1000,0 +1014.0 "Orison Fortissimo" Ability { id: "3D14", source: "Forgiven Obscenity" } window 1014,5 +1023.2 "Divine Diminuendo" Ability { id: "3D16", source: "Forgiven Obscenity" } +1032.4 "--sync--" Ability { id: "3D17", source: "Forgiven Obscenity" } +1040.6 "Divine Diminuendo" Ability { id: "3D18", source: "Forgiven Obscenity" } +1051.0 "Conviction Marcato" Ability { id: "3D1A", source: "Forgiven Obscenity" } +1062.2 "Penance Pianissimo" Ability { id: "3D1C", source: "Forgiven Obscenity" } +1070.4 "Feather Marionette" Ability { id: "3D1D", source: "Forgiven Obscenity" } +1083.3 "Divine Diminuendo" Ability { id: "3D18", source: "Forgiven Obscenity" } +1093.5 "Conviction Marcato" Ability { id: "3D1A", source: "Forgiven Obscenity" } +1107.7 "Orison Fortissimo" Ability { id: "3D14", source: "Forgiven Obscenity" } -1124.5 "Solitaire Ring" sync / 1[56]:[^:]*:Forgiven Obscenity:42AA:/ -1129.5 "Ringsmith" sync / 1[56]:[^:]*:Forgiven Obscenity:3D24:/ -1135.5 "Gold Chaser" sync / 1[56]:[^:]*:Forgiven Obscenity:3D25:/ -1147.5 "Sacrament Sforzando" sync / 1[56]:[^:]*:Forgiven Obscenity:3D12:/ -1158.6 "Orison Fortissimo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D14:/ -1169.8 "Divine Diminuendo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D18:/ -1189.2 "Penance Pianissimo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D1C:/ -1197.4 "Feather Marionette" sync / 1[56]:[^:]*:Forgiven Obscenity:3D1D:/ -1210.5 "Divine Diminuendo" sync / 1[56]:[^:]*:Forgiven Obscenity:3D18:/ -1220.6 "Conviction Marcato" sync / 1[56]:[^:]*:Forgiven Obscenity:3D1A:/ -1234.9 "Sacrament Sforzando" sync / 1[56]:[^:]*:Forgiven Obscenity:3D12:/ +1124.5 "Solitaire Ring" Ability { id: "42AA", source: "Forgiven Obscenity" } +1129.5 "Ringsmith" Ability { id: "3D24", source: "Forgiven Obscenity" } +1135.5 "Gold Chaser" Ability { id: "3D25", source: "Forgiven Obscenity" } +1147.5 "Sacrament Sforzando" Ability { id: "3D12", source: "Forgiven Obscenity" } +1158.6 "Orison Fortissimo" Ability { id: "3D14", source: "Forgiven Obscenity" } +1169.8 "Divine Diminuendo" Ability { id: "3D18", source: "Forgiven Obscenity" } +1189.2 "Penance Pianissimo" Ability { id: "3D1C", source: "Forgiven Obscenity" } +1197.4 "Feather Marionette" Ability { id: "3D1D", source: "Forgiven Obscenity" } +1210.5 "Divine Diminuendo" Ability { id: "3D18", source: "Forgiven Obscenity" } +1220.6 "Conviction Marcato" Ability { id: "3D1A", source: "Forgiven Obscenity" } +1234.9 "Sacrament Sforzando" Ability { id: "3D12", source: "Forgiven Obscenity" } -1251.6 "Solitaire Ring" sync / 1[56]:[^:]*:Forgiven Obscenity:42AA:/ window 100,100 jump 1124.5 +1251.6 "Solitaire Ring" Ability { id: "42AA", source: "Forgiven Obscenity" } window 100,100 jump 1124.5 1256.6 "Ringsmith" 1262.6 "Gold Chaser" 1274.6 "Sacrament Sforzando" diff --git a/ui/raidboss/data/05-shb/dungeon/paglthan.txt b/ui/raidboss/data/05-shb/dungeon/paglthan.txt index 2c6c4d29e6..055689ea43 100644 --- a/ui/raidboss/data/05-shb/dungeon/paglthan.txt +++ b/ui/raidboss/data/05-shb/dungeon/paglthan.txt @@ -10,32 +10,32 @@ hideall "--sync--" # -ii 5C52 5C53 # Gathering Ring will be sealed off -0 "Start" sync / 29:[^:]*:7DC:[^:]*:B7B:/ window 0,1 -12.6 "Critical Rip" sync / 1[56]:[^:]*:Amhuluk:5C4E:/ window 12.6,10 -18.8 "--sync--" sync / 1[56]:[^:]*:Amhuluk:5C51:/ -30.2 "Lightning Bolt" sync / 1[56]:[^:]*:Amhuluk:5C4B:/ -31.0 "--sync--" sync / 1[56]:[^:]*:Amhuluk:5C4C:/ -36.8 "Electric Burst" sync / 1[56]:[^:]*:Amhuluk:5C4D:/ -48.0 "Thundercall" sync / 1[56]:[^:]*:Amhuluk:5C50:/ window 48,10 +0 "Start" SystemLogMessage { id: "7DC", param1: "B7B" } window 0,1 +12.6 "Critical Rip" Ability { id: "5C4E", source: "Amhuluk" } window 12.6,10 +18.8 "--sync--" Ability { id: "5C51", source: "Amhuluk" } +30.2 "Lightning Bolt" Ability { id: "5C4B", source: "Amhuluk" } +31.0 "--sync--" Ability { id: "5C4C", source: "Amhuluk" } +36.8 "Electric Burst" Ability { id: "5C4D", source: "Amhuluk" } +48.0 "Thundercall" Ability { id: "5C50", source: "Amhuluk" } window 48,10 48.5 "--Levin orbs--" -61.3 "Wide Blaster" sync / 1[56]:[^:]*:Amhuluk:60C5:/ window 61.3,10 -63.9 "Spike Flail" sync / 1[56]:[^:]*:Amhuluk:5C4F:/ -66.1 "--sync--" sync / 1[56]:[^:]*:Amhuluk:5C51:/ -77.6 "Lightning Bolt" sync / 1[56]:[^:]*:Amhuluk:5C4B:/ -78.4 "--sync--" sync / 1[56]:[^:]*:Amhuluk:5C4C:/ -84.2 "Electric Burst" sync / 1[56]:[^:]*:Amhuluk:5C4D:/ +61.3 "Wide Blaster" Ability { id: "60C5", source: "Amhuluk" } window 61.3,10 +63.9 "Spike Flail" Ability { id: "5C4F", source: "Amhuluk" } +66.1 "--sync--" Ability { id: "5C51", source: "Amhuluk" } +77.6 "Lightning Bolt" Ability { id: "5C4B", source: "Amhuluk" } +78.4 "--sync--" Ability { id: "5C4C", source: "Amhuluk" } +84.2 "Electric Burst" Ability { id: "5C4D", source: "Amhuluk" } -95.4 "Critical Rip" sync / 1[56]:[^:]*:Amhuluk:5C4E:/ window 45,30 -107.5 "Thundercall" sync / 1[56]:[^:]*:Amhuluk:5C50:/ +95.4 "Critical Rip" Ability { id: "5C4E", source: "Amhuluk" } window 45,30 +107.5 "Thundercall" Ability { id: "5C50", source: "Amhuluk" } 108.0 "--Levin orbs--" -109.6 "--sync--" sync / 1[56]:[^:]*:Amhuluk:5C51:/ -121.0 "Lightning Bolt" sync / 1[56]:[^:]*:Amhuluk:5C4B:/ -121.8 "--sync--" sync / 1[56]:[^:]*:Amhuluk:5C4C:/ -127.6 "Electric Burst" sync / 1[56]:[^:]*:Amhuluk:5C4D:/ -137.7 "Wide Blaster" sync / 1[56]:[^:]*:Amhuluk:60C5:/ window 30,30 -140.3 "Spike Flail" sync / 1[56]:[^:]*:Amhuluk:5C4F:/ +109.6 "--sync--" Ability { id: "5C51", source: "Amhuluk" } +121.0 "Lightning Bolt" Ability { id: "5C4B", source: "Amhuluk" } +121.8 "--sync--" Ability { id: "5C4C", source: "Amhuluk" } +127.6 "Electric Burst" Ability { id: "5C4D", source: "Amhuluk" } +137.7 "Wide Blaster" Ability { id: "60C5", source: "Amhuluk" } window 30,30 +140.3 "Spike Flail" Ability { id: "5C4F", source: "Amhuluk" } -160.4 "Critical Rip" sync / 1[56]:[^:]*:Amhuluk:5C4E:/ jump 95.4 +160.4 "Critical Rip" Ability { id: "5C4E", source: "Amhuluk" } jump 95.4 172.5 "Thundercall" 173.0 "--Levin orbs--" 186.0 "Lightning Bolt" @@ -51,36 +51,36 @@ hideall "--sync--" # -ii 5B56 5B50 # Sunseat will be sealed off -2000.0 "Start" sync / 29:[^:]*:7DC:[^:]*:B7D:/ window 2000,5 -2010.0 "Twisted Scream" sync / 1[56]:[^:]*:Lunar Bahamut:5B47:/ window 2010,10 -2015.0 "Upburst x4" # sync / 1[56]:[^:]*:Lunar Nail:605B:/ -2021.6 "Big Burst x4" # sync / 1[56]:[^:]*:Lunar Nail:5B48:/ -2029.2 "Perigean Breath" sync / 1[56]:[^:]*:Lunar Bahamut:5B59:/ window 30,10 -2042.4 "Akh Morn x4" sync / 1[56]:[^:]*:Lunar Bahamut:5B55:/ duration 5 -2062.8 "Megaflare x3" sync / 1[56]:[^:]*:Lunar Bahamut:5B4C:/ -2064.8 "--sync--" sync / 1[56]:[^:]*:Lunar Bahamut:5B4D:/ -2068.9 "--sync--" sync / 1[56]:[^:]*:Lunar Bahamut:5B4E:/ -2071.0 "Twisted Scream" sync / 1[56]:[^:]*:Lunar Bahamut:5B47:/ -2076.0 "Upburst x4" # sync / 1[56]:[^:]*:Lunar Nail:605B:/ -2082.6 "Big Burst x4" # sync / 1[56]:[^:]*:Lunar Nail:5B48:/ -2083.9 "Megaflare Dive" sync / 1[56]:[^:]*:Lunar Bahamut:5B52:/ window 30,30 -2095.7 "Kan Rhai" sync / 1[56]:[^:]*:Lunar Bahamut:5B4F:/ -2097.3 "--sync--" sync / 1[56]:[^:]*:Lunar Bahamut:5B51:/ -2107.4 "Lunar Flare (circles)" sync / 1[56]:[^:]*:Lunar Bahamut:5B49:/ -2119.5 "Lunar Flare (explosions)" sync / 1[56]:[^:]*:Lunar Bahamut:5B4A:/ +2000.0 "Start" SystemLogMessage { id: "7DC", param1: "B7D" } window 2000,5 +2010.0 "Twisted Scream" Ability { id: "5B47", source: "Lunar Bahamut" } window 2010,10 +2015.0 "Upburst x4" # Ability { id: "605B", source: "Lunar Nail" } +2021.6 "Big Burst x4" # Ability { id: "5B48", source: "Lunar Nail" } +2029.2 "Perigean Breath" Ability { id: "5B59", source: "Lunar Bahamut" } window 30,10 +2042.4 "Akh Morn x4" Ability { id: "5B55", source: "Lunar Bahamut" } duration 5 +2062.8 "Megaflare x3" Ability { id: "5B4C", source: "Lunar Bahamut" } +2064.8 "--sync--" Ability { id: "5B4D", source: "Lunar Bahamut" } +2068.9 "--sync--" Ability { id: "5B4E", source: "Lunar Bahamut" } +2071.0 "Twisted Scream" Ability { id: "5B47", source: "Lunar Bahamut" } +2076.0 "Upburst x4" # Ability { id: "605B", source: "Lunar Nail" } +2082.6 "Big Burst x4" # Ability { id: "5B48", source: "Lunar Nail" } +2083.9 "Megaflare Dive" Ability { id: "5B52", source: "Lunar Bahamut" } window 30,30 +2095.7 "Kan Rhai" Ability { id: "5B4F", source: "Lunar Bahamut" } +2097.3 "--sync--" Ability { id: "5B51", source: "Lunar Bahamut" } +2107.4 "Lunar Flare (circles)" Ability { id: "5B49", source: "Lunar Bahamut" } +2119.5 "Lunar Flare (explosions)" Ability { id: "5B4A", source: "Lunar Bahamut" } -2131.6 "Gigaflare" sync / 1[56]:[^:]*:Lunar Bahamut:5B57:/ window 131.6,10 -2150.7 "Akh Morn x4" sync / 1[56]:[^:]*:Lunar Bahamut:5B55:/ duration 5 -2168.1 "Twisted Scream" sync / 1[56]:[^:]*:Lunar Bahamut:5B47:/ -2173.1 "Upburst x4" # sync / 1[56]:[^:]*:Lunar Nail:605B:/ -2179.7 "Big Burst x4" # sync / 1[56]:[^:]*:Lunar Nail:5B48:/ -2191.3 "Lunar Flare (circles)" sync / 1[56]:[^:]*:Lunar Bahamut:5B49:/ window 30,30 -2203.4 "Lunar Flare (explosions)" sync / 1[56]:[^:]*:Lunar Bahamut:(5B4A|5B4B):/ -2215.5 "Kan Rhai" sync / 1[56]:[^:]*:Lunar Bahamut:5B4F:/ -2217.1 "--sync--" sync / 1[56]:[^:]*:Lunar Bahamut:5B51:/ -2223.5 "Flatten" sync / 1[56]:[^:]*:Lunar Bahamut:5B58:/ +2131.6 "Gigaflare" Ability { id: "5B57", source: "Lunar Bahamut" } window 131.6,10 +2150.7 "Akh Morn x4" Ability { id: "5B55", source: "Lunar Bahamut" } duration 5 +2168.1 "Twisted Scream" Ability { id: "5B47", source: "Lunar Bahamut" } +2173.1 "Upburst x4" # Ability { id: "605B", source: "Lunar Nail" } +2179.7 "Big Burst x4" # Ability { id: "5B48", source: "Lunar Nail" } +2191.3 "Lunar Flare (circles)" Ability { id: "5B49", source: "Lunar Bahamut" } window 30,30 +2203.4 "Lunar Flare (explosions)" Ability { id: ["5B4A", "5B4B"], source: "Lunar Bahamut" } +2215.5 "Kan Rhai" Ability { id: "5B4F", source: "Lunar Bahamut" } +2217.1 "--sync--" Ability { id: "5B51", source: "Lunar Bahamut" } +2223.5 "Flatten" Ability { id: "5B58", source: "Lunar Bahamut" } -2241.6 "Gigaflare" sync / 1[56]:[^:]*:Lunar Bahamut:5B57:/ jump 2131.6 +2241.6 "Gigaflare" Ability { id: "5B57", source: "Lunar Bahamut" } jump 2131.6 2260.7 "Akh Morn x4" 2278.1 "Twisted Scream" 2283.1 "Upburst x4" diff --git a/ui/raidboss/data/05-shb/dungeon/qitana_ravel.txt b/ui/raidboss/data/05-shb/dungeon/qitana_ravel.txt index 15e95f111d..8e662a8464 100644 --- a/ui/raidboss/data/05-shb/dungeon/qitana_ravel.txt +++ b/ui/raidboss/data/05-shb/dungeon/qitana_ravel.txt @@ -6,33 +6,33 @@ hideall "--sync--" ### Lozatl # -p 3C89:113.7 # The Divine Threshold will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BCC:/ window 100,0 - -113.7 "Stonefist" sync / 1[56]:[^:]*:Lozatl:3C89:/ window 114,5 -121.0 "Sun Toss" sync / 1[56]:[^:]*:Lozatl:3C8A:/ -127.2 "Lozatl's Scorn" sync / 1[56]:[^:]*:Lozatl:3C8B:/ -137.5 "Sun Toss" sync / 1[56]:[^:]*:Lozatl:3C8A:/ -137.5 "Ronkan Light" sync / 1[56]:[^:]*:Lozatl:(3D6D|3C8C):/ -145.1 "Heat Up" sync / 1[56]:[^:]*:Lozatl:3C8[DE]:/ -151.5 "Lozatl's Fury" sync / 1[56]:[^:]*:Lozatl:(3C8F|3C90):/ - -161.2 "Stonefist" sync / 1[56]:[^:]*:Lozatl:3C89:/ -168.1 "Heat Up" sync / 1[56]:[^:]*:Lozatl:3C8[DE]:/ -173.2 "Lozatl's Scorn" sync / 1[56]:[^:]*:Lozatl:3C8B:/ -182.7 "Lozatl's Fury" sync / 1[56]:[^:]*:Lozatl:(3C8F|3C90):/ -183.4 "Ronkan Light" sync / 1[56]:[^:]*:Lozatl:(3D6D|3C8C):/ -191.4 "Sun Toss" #sync / 1[56]:[^:]*:Lozatl:3C8A:/ -196.7 "Sun Toss" #sync / 1[56]:[^:]*:Lozatl:3C8A:/ - -207.9 "Stonefist" sync / 1[56]:[^:]*:Lozatl:3C89:/ -222.9 "Heat Up" sync / 1[56]:[^:]*:Lozatl:3C8[DE]:/ -228.1 "Lozatl's Scorn" sync / 1[56]:[^:]*:Lozatl:3C8B:/ -237.4 "Lozatl's Fury" sync / 1[56]:[^:]*:Lozatl:(3C8F|3C90):/ -238.5 "Ronkan Light" sync / 1[56]:[^:]*:Lozatl:(3D6D|3C8C):/ -246.2 "Sun Toss" #sync / 1[56]:[^:]*:Lozatl:3C8A:/ -251.5 "Sun Toss" #sync / 1[56]:[^:]*:Lozatl:3C8A:/ - -262.9 "Stonefist" sync / 1[56]:[^:]*:Lozatl:3C89:/ window 50,50 jump 207.9 +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BCC" } window 100,0 + +113.7 "Stonefist" Ability { id: "3C89", source: "Lozatl" } window 114,5 +121.0 "Sun Toss" Ability { id: "3C8A", source: "Lozatl" } +127.2 "Lozatl's Scorn" Ability { id: "3C8B", source: "Lozatl" } +137.5 "Sun Toss" Ability { id: "3C8A", source: "Lozatl" } +137.5 "Ronkan Light" Ability { id: ["3D6D", "3C8C"], source: "Lozatl" } +145.1 "Heat Up" Ability { id: "3C8[DE]", source: "Lozatl" } +151.5 "Lozatl's Fury" Ability { id: ["3C8F", "3C90"], source: "Lozatl" } + +161.2 "Stonefist" Ability { id: "3C89", source: "Lozatl" } +168.1 "Heat Up" Ability { id: "3C8[DE]", source: "Lozatl" } +173.2 "Lozatl's Scorn" Ability { id: "3C8B", source: "Lozatl" } +182.7 "Lozatl's Fury" Ability { id: ["3C8F", "3C90"], source: "Lozatl" } +183.4 "Ronkan Light" Ability { id: ["3D6D", "3C8C"], source: "Lozatl" } +191.4 "Sun Toss" #Ability { id: "3C8A", source: "Lozatl" } +196.7 "Sun Toss" #Ability { id: "3C8A", source: "Lozatl" } + +207.9 "Stonefist" Ability { id: "3C89", source: "Lozatl" } +222.9 "Heat Up" Ability { id: "3C8[DE]", source: "Lozatl" } +228.1 "Lozatl's Scorn" Ability { id: "3C8B", source: "Lozatl" } +237.4 "Lozatl's Fury" Ability { id: ["3C8F", "3C90"], source: "Lozatl" } +238.5 "Ronkan Light" Ability { id: ["3D6D", "3C8C"], source: "Lozatl" } +246.2 "Sun Toss" #Ability { id: "3C8A", source: "Lozatl" } +251.5 "Sun Toss" #Ability { id: "3C8A", source: "Lozatl" } + +262.9 "Stonefist" Ability { id: "3C89", source: "Lozatl" } window 50,50 jump 207.9 277.9 "Heat Up" 283.1 "Lozatl's Scorn" 292.4 "Lozatl's Fury" @@ -44,25 +44,25 @@ hideall "--sync--" ### Batsquatch # -ii 3C94 3C96 3C97 3C95 -p 3C91:514.5 # Shadowed Hollow will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BCF:/ window 500,0 +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BCF" } window 500,0 -514.5 "Ripper Fang" sync / 1[56]:[^:]*:Batsquatch:3C91:/ window 515,5 -525.7 "Soundwave" sync / 1[56]:[^:]*:Batsquatch:3C92:/ -542.2 "Subsonics" sync / 1[56]:[^:]*:Batsquatch:3C93:/ duration 6.1 -559.8 "Soundwave" sync / 1[56]:[^:]*:Batsquatch:3C92:/ -563.6 "Towerfall" sync / 1[56]:[^:]*:Batsquatch:3C98:/ +514.5 "Ripper Fang" Ability { id: "3C91", source: "Batsquatch" } window 515,5 +525.7 "Soundwave" Ability { id: "3C92", source: "Batsquatch" } +542.2 "Subsonics" Ability { id: "3C93", source: "Batsquatch" } duration 6.1 +559.8 "Soundwave" Ability { id: "3C92", source: "Batsquatch" } +563.6 "Towerfall" Ability { id: "3C98", source: "Batsquatch" } -571.4 "Ripper Fang" sync / 1[56]:[^:]*:Batsquatch:3C91:/ -588.0 "Subsonics" sync / 1[56]:[^:]*:Batsquatch:3C93:/ duration 6.1 -605.6 "Soundwave" sync / 1[56]:[^:]*:Batsquatch:3C92:/ -609.4 "Towerfall" sync / 1[56]:[^:]*:Batsquatch:3C98:/ +571.4 "Ripper Fang" Ability { id: "3C91", source: "Batsquatch" } +588.0 "Subsonics" Ability { id: "3C93", source: "Batsquatch" } duration 6.1 +605.6 "Soundwave" Ability { id: "3C92", source: "Batsquatch" } +609.4 "Towerfall" Ability { id: "3C98", source: "Batsquatch" } -616.5 "Ripper Fang" sync / 1[56]:[^:]*:Batsquatch:3C91:/ -636.9 "Subsonics" sync / 1[56]:[^:]*:Batsquatch:3C93:/ duration 6.1 -654.5 "Soundwave" sync / 1[56]:[^:]*:Batsquatch:3C92:/ -658.3 "Towerfall" sync / 1[56]:[^:]*:Batsquatch:3C98:/ +616.5 "Ripper Fang" Ability { id: "3C91", source: "Batsquatch" } +636.9 "Subsonics" Ability { id: "3C93", source: "Batsquatch" } duration 6.1 +654.5 "Soundwave" Ability { id: "3C92", source: "Batsquatch" } +658.3 "Towerfall" Ability { id: "3C98", source: "Batsquatch" } -666.1 "Ripper Fang" sync / 1[56]:[^:]*:Batsquatch:3C91:/ window 20,20 jump 571.4 +666.1 "Ripper Fang" Ability { id: "3C91", source: "Batsquatch" } window 20,20 jump 571.4 682.7 "Subsonics" 700.3 "Soundwave" 704.1 "Towerfall" @@ -76,34 +76,34 @@ hideall "--sync--" ### Eros # # The Song of Ox'Gatorl will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BD2:/ window 1000,0 - -1015.0 "Rend" sync / 1[56]:[^:]*:Eros:3C99:/ window 1015,5 -1026.2 "Hound Out Of Heaven" sync / 1[56]:[^:]*:Eros:3C9A:/ -1036.1 "Glossolalia" sync / 1[56]:[^:]*:Eros:3C9B:/ -1048.3 "Viper Poison" sync / 1[56]:[^:]*:Eros:3C9C:/ -1050.9 "Jump" sync / 1[56]:[^:]*:Eros:3C9F:/ -1057.6 "Inhale" sync / 1[56]:[^:]*:Eros:4310:/ -1063.2 "Heaving Breath" sync / 1[56]:[^:]*:Eros:3CA0:/ -1075.9 "Rend" sync / 1[56]:[^:]*:Eros:3C99:/ -1083.3 "Jump" sync / 1[56]:[^:]*:Eros:3C9F:/ -1092.0 "Confession Of Faith" sync / 1[56]:[^:]*:Eros:3CA[14]:/ -1107.8 "Hound Out Of Heaven" sync / 1[56]:[^:]*:Eros:3C9A:/ - -1122.6 "Viper Poison" sync / 1[56]:[^:]*:Eros:3C9C:/ -1125.5 "Jump" sync / 1[56]:[^:]*:Eros:3C9F:/ -1132.1 "Inhale" sync / 1[56]:[^:]*:Eros:4310:/ -1137.7 "Heaving Breath" sync / 1[56]:[^:]*:Eros:3CA0:/ -1150.5 "Rend" sync / 1[56]:[^:]*:Eros:3C99:/ -1162.8 "Hound Out Of Heaven" sync / 1[56]:[^:]*:Eros:3C9A:/ -1170.7 "Jump" sync / 1[56]:[^:]*:Eros:3C9F:/ -1179.3 "Confession Of Faith" sync / 1[56]:[^:]*:Eros:3CA[14]:/ -1193.1 "Glossolalia" sync / 1[56]:[^:]*:Eros:3C9B:/ -1202.3 "Glossolalia" sync / 1[56]:[^:]*:Eros:3C9B:/ -1213.5 "Hound Out Of Heaven" sync / 1[56]:[^:]*:Eros:3C9A:/ -1224.4 "Rend" sync / 1[56]:[^:]*:Eros:3C99:/ - -1237.6 "Viper Poison" sync / 1[56]:[^:]*:Eros:3C9C:/ window 100,100 jump 1122.6 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BD2" } window 1000,0 + +1015.0 "Rend" Ability { id: "3C99", source: "Eros" } window 1015,5 +1026.2 "Hound Out Of Heaven" Ability { id: "3C9A", source: "Eros" } +1036.1 "Glossolalia" Ability { id: "3C9B", source: "Eros" } +1048.3 "Viper Poison" Ability { id: "3C9C", source: "Eros" } +1050.9 "Jump" Ability { id: "3C9F", source: "Eros" } +1057.6 "Inhale" Ability { id: "4310", source: "Eros" } +1063.2 "Heaving Breath" Ability { id: "3CA0", source: "Eros" } +1075.9 "Rend" Ability { id: "3C99", source: "Eros" } +1083.3 "Jump" Ability { id: "3C9F", source: "Eros" } +1092.0 "Confession Of Faith" Ability { id: "3CA[14]", source: "Eros" } +1107.8 "Hound Out Of Heaven" Ability { id: "3C9A", source: "Eros" } + +1122.6 "Viper Poison" Ability { id: "3C9C", source: "Eros" } +1125.5 "Jump" Ability { id: "3C9F", source: "Eros" } +1132.1 "Inhale" Ability { id: "4310", source: "Eros" } +1137.7 "Heaving Breath" Ability { id: "3CA0", source: "Eros" } +1150.5 "Rend" Ability { id: "3C99", source: "Eros" } +1162.8 "Hound Out Of Heaven" Ability { id: "3C9A", source: "Eros" } +1170.7 "Jump" Ability { id: "3C9F", source: "Eros" } +1179.3 "Confession Of Faith" Ability { id: "3CA[14]", source: "Eros" } +1193.1 "Glossolalia" Ability { id: "3C9B", source: "Eros" } +1202.3 "Glossolalia" Ability { id: "3C9B", source: "Eros" } +1213.5 "Hound Out Of Heaven" Ability { id: "3C9A", source: "Eros" } +1224.4 "Rend" Ability { id: "3C99", source: "Eros" } + +1237.6 "Viper Poison" Ability { id: "3C9C", source: "Eros" } window 100,100 jump 1122.6 1240.5 "Jump" 1247.1 "Inhale" 1252.7 "Heaving Breath" diff --git a/ui/raidboss/data/05-shb/dungeon/the_grand_cosmos.txt b/ui/raidboss/data/05-shb/dungeon/the_grand_cosmos.txt index 5bb04a2140..7812b2e202 100644 --- a/ui/raidboss/data/05-shb/dungeon/the_grand_cosmos.txt +++ b/ui/raidboss/data/05-shb/dungeon/the_grand_cosmos.txt @@ -6,27 +6,27 @@ hideall "--sync--" ### Seeker of Solitude # -ii 4768 49A4 476C 476F 4771 4770 -p 4769:111.7 # The Martial Court will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D2F:/ window 100,0 -111.7 "Shadowbolt" sync / 1[56]:[^:]*:Seeker of Solitude:4769:/ window 112,5 -119.4 "Immortal Anathema" sync / 1[56]:[^:]*:Seeker of Solitude:49A3:/ +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D2F" } window 100,0 +111.7 "Shadowbolt" Ability { id: "4769", source: "Seeker of Solitude" } window 112,5 +119.4 "Immortal Anathema" Ability { id: "49A3", source: "Seeker of Solitude" } -126.8 "Tribulation" sync / 1[56]:[^:]*:Seeker of Solitude:476B:/ -135.5 "Dark Shock" sync / 1[56]:[^:]*:Seeker of Solitude:476E:/ -155.4 "Dark Pulse" sync / 1[56]:[^:]*:Seeker of Solitude:476A:/ -162.1 "Dark Well" sync / 1[56]:[^:]*:Seeker of Solitude:476D:/ -172.9 "Shadowbolt" sync / 1[56]:[^:]*:Seeker of Solitude:4769:/ -183.6 "Immortal Anathema" sync / 1[56]:[^:]*:Seeker of Solitude:49A3:/ +126.8 "Tribulation" Ability { id: "476B", source: "Seeker of Solitude" } +135.5 "Dark Shock" Ability { id: "476E", source: "Seeker of Solitude" } +155.4 "Dark Pulse" Ability { id: "476A", source: "Seeker of Solitude" } +162.1 "Dark Well" Ability { id: "476D", source: "Seeker of Solitude" } +172.9 "Shadowbolt" Ability { id: "4769", source: "Seeker of Solitude" } +183.6 "Immortal Anathema" Ability { id: "49A3", source: "Seeker of Solitude" } -190.5 "Tribulation" sync / 1[56]:[^:]*:Seeker of Solitude:476B:/ -199.2 "Dark Well" sync / 1[56]:[^:]*:Seeker of Solitude:476D:/ -214.0 "Dark Shock" sync / 1[56]:[^:]*:Seeker of Solitude:476E:/ -224.6 "Shadowbolt" sync / 1[56]:[^:]*:Seeker of Solitude:4769:/ -236.4 "Dark Pulse" sync / 1[56]:[^:]*:Seeker of Solitude:476A:/ -243.1 "Dark Well" sync / 1[56]:[^:]*:Seeker of Solitude:476D:/ -252.9 "Immortal Anathema" sync / 1[56]:[^:]*:Seeker of Solitude:49A3:/ +190.5 "Tribulation" Ability { id: "476B", source: "Seeker of Solitude" } +199.2 "Dark Well" Ability { id: "476D", source: "Seeker of Solitude" } +214.0 "Dark Shock" Ability { id: "476E", source: "Seeker of Solitude" } +224.6 "Shadowbolt" Ability { id: "4769", source: "Seeker of Solitude" } +236.4 "Dark Pulse" Ability { id: "476A", source: "Seeker of Solitude" } +243.1 "Dark Well" Ability { id: "476D", source: "Seeker of Solitude" } +252.9 "Immortal Anathema" Ability { id: "49A3", source: "Seeker of Solitude" } # TODO: not 100% sure this is the loop -262.7 "Tribulation" sync / 1[56]:[^:]*:Seeker of Solitude:476B:/ window 50,50 jump 190.5 +262.7 "Tribulation" Ability { id: "476B", source: "Seeker of Solitude" } window 50,50 jump 190.5 271.4 "Dark Well" 286.2 "Dark Shock" 296.8 "Shadowbolt" @@ -38,33 +38,33 @@ hideall "--sync--" ### Leannan Sith # -ii 4724 471F -p 471B:512 # The Font of Quintessence will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D30:/ window 500,0 -512.0 "Storm Of Color" sync / 1[56]:[^:]*:Leannan Sith:471B:/ window 512,10 -522.3 "Ode To Lost Love" sync / 1[56]:[^:]*:Leannan Sith:471C:/ +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D30" } window 500,0 +512.0 "Storm Of Color" Ability { id: "471B", source: "Leannan Sith" } window 512,10 +522.3 "Ode To Lost Love" Ability { id: "471C", source: "Leannan Sith" } -529.9 "Direct Seeding" sync / 1[56]:[^:]*:Leannan Sith:471D:/ -546.4 "Gardener's Hymn" sync / 1[56]:[^:]*:Leannan Sith:471E:/ -552.9 "Storm Of Color" sync / 1[56]:[^:]*:Leannan Sith:471B:/ -562.1 "Ode To Lost Love" sync / 1[56]:[^:]*:Leannan Sith:471C:/ -572.3 "Ode To Far Winds" sync / 1[56]:[^:]*:Leannan Sith:4722:/ -577.4 "Far Wind" sync / 1[56]:[^:]*:Leannan Sith:4723:/ -583.4 "Ode To Fallen Petals" sync / 1[56]:[^:]*:Leannan Sith:4950:/ -594.5 "Ode To Lost Love" sync / 1[56]:[^:]*:Leannan Sith:471C:/ +529.9 "Direct Seeding" Ability { id: "471D", source: "Leannan Sith" } +546.4 "Gardener's Hymn" Ability { id: "471E", source: "Leannan Sith" } +552.9 "Storm Of Color" Ability { id: "471B", source: "Leannan Sith" } +562.1 "Ode To Lost Love" Ability { id: "471C", source: "Leannan Sith" } +572.3 "Ode To Far Winds" Ability { id: "4722", source: "Leannan Sith" } +577.4 "Far Wind" Ability { id: "4723", source: "Leannan Sith" } +583.4 "Ode To Fallen Petals" Ability { id: "4950", source: "Leannan Sith" } +594.5 "Ode To Lost Love" Ability { id: "471C", source: "Leannan Sith" } -601.2 "Direct Seeding" sync / 1[56]:[^:]*:Leannan Sith:471D:/ -616.7 "Ireful Wind" sync / 1[56]:[^:]*:Enslaved Love:4721:/ -617.6 "Gardener's Hymn" sync / 1[56]:[^:]*:Leannan Sith:471E:/ -623.1 "Ode To Far Winds" sync / 1[56]:[^:]*:Leannan Sith:4722:/ -628.2 "Far Wind" sync / 1[56]:[^:]*:Leannan Sith:4723:/ -634.1 "Ode To Fallen Petals" sync / 1[56]:[^:]*:Leannan Sith:4950:/ -646.5 "Storm Of Color" sync / 1[56]:[^:]*:Leannan Sith:471B:/ -653.7 "Ode To Lost Love" sync / 1[56]:[^:]*:Leannan Sith:471C:/ -668.8 "Ode To Far Winds" sync / 1[56]:[^:]*:Leannan Sith:4722:/ -673.9 "Far Wind" sync / 1[56]:[^:]*:Leannan Sith:4723:/ -679.9 "Ode To Fallen Petals" sync / 1[56]:[^:]*:Leannan Sith:4950:/ -691.1 "Ode To Lost Love" sync / 1[56]:[^:]*:Leannan Sith:471C:/ +601.2 "Direct Seeding" Ability { id: "471D", source: "Leannan Sith" } +616.7 "Ireful Wind" Ability { id: "4721", source: "Enslaved Love" } +617.6 "Gardener's Hymn" Ability { id: "471E", source: "Leannan Sith" } +623.1 "Ode To Far Winds" Ability { id: "4722", source: "Leannan Sith" } +628.2 "Far Wind" Ability { id: "4723", source: "Leannan Sith" } +634.1 "Ode To Fallen Petals" Ability { id: "4950", source: "Leannan Sith" } +646.5 "Storm Of Color" Ability { id: "471B", source: "Leannan Sith" } +653.7 "Ode To Lost Love" Ability { id: "471C", source: "Leannan Sith" } +668.8 "Ode To Far Winds" Ability { id: "4722", source: "Leannan Sith" } +673.9 "Far Wind" Ability { id: "4723", source: "Leannan Sith" } +679.9 "Ode To Fallen Petals" Ability { id: "4950", source: "Leannan Sith" } +691.1 "Ode To Lost Love" Ability { id: "471C", source: "Leannan Sith" } -697.7 "Direct Seeding" sync / 1[56]:[^:]*:Leannan Sith:471D:/ window 50,50 jump 601.2 +697.7 "Direct Seeding" Ability { id: "471D", source: "Leannan Sith" } window 50,50 jump 601.2 713.2 "Ireful Wind" 714.1 "Gardener's Hymn" 719.6 "Ode To Far Winds" @@ -81,52 +81,52 @@ hideall "--sync--" ### Lugus # -ii 475B 4766 475A 475E -p 475D:1026.8 # The Chamber of Celestial Song will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:D31:/ window 1000,0 -1015.3 "Scorching Left/Right" sync / 1[56]:[^:]*:Lugus:476[23]:/ window 1015.3,10 -1026.8 "Black Flame" sync / 1[56]:[^:]*:Lugus:475D:/ -1030.3 "Otherworldly Heat" sync / 1[56]:[^:]*:Lugus:475C:/ -1037.8 "Captive Bolt" sync / 1[56]:[^:]*:Lugus:4764:/ -1048.2 "Mortal Flame" sync / 1[56]:[^:]*:Lugus:4759:/ window 30,0 -1077.1 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1080.2 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1081.7 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1084.7 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1086.2 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1089.2 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1090.7 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1093.7 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1106.4 "Scorching Left/Right" sync / 1[56]:[^:]*:Lugus:476[23]:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "D31" } window 1000,0 +1015.3 "Scorching Left/Right" Ability { id: "476[23]", source: "Lugus" } window 1015.3,10 +1026.8 "Black Flame" Ability { id: "475D", source: "Lugus" } +1030.3 "Otherworldly Heat" Ability { id: "475C", source: "Lugus" } +1037.8 "Captive Bolt" Ability { id: "4764", source: "Lugus" } +1048.2 "Mortal Flame" Ability { id: "4759", source: "Lugus" } window 30,0 +1077.1 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1080.2 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1081.7 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1084.7 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1086.2 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1089.2 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1090.7 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1093.7 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1106.4 "Scorching Left/Right" Ability { id: "476[23]", source: "Lugus" } -1122.9 "Culling Blade" sync / 1[56]:[^:]*:Lugus:4765:/ window 25,20 -1126.2 "Plummet" sync / 1[56]:[^:]*:Lugus:4767:/ -1133.3 "Black Flame" sync / 1[56]:[^:]*:Lugus:475D:/ -1136.7 "Otherworldly Heat" sync / 1[56]:[^:]*:Lugus:475C:/ -1142.4 "Mortal Flame" sync / 1[56]:[^:]*:Lugus:4759:/ -1169.1 "Scorching Left/Right" sync / 1[56]:[^:]*:Lugus:476[23]:/ -1181.8 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1184.9 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1186.4 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1189.4 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1190.9 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1193.9 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1195.4 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1198.4 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ +1122.9 "Culling Blade" Ability { id: "4765", source: "Lugus" } window 25,20 +1126.2 "Plummet" Ability { id: "4767", source: "Lugus" } +1133.3 "Black Flame" Ability { id: "475D", source: "Lugus" } +1136.7 "Otherworldly Heat" Ability { id: "475C", source: "Lugus" } +1142.4 "Mortal Flame" Ability { id: "4759", source: "Lugus" } +1169.1 "Scorching Left/Right" Ability { id: "476[23]", source: "Lugus" } +1181.8 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1184.9 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1186.4 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1189.4 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1190.9 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1193.9 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1195.4 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1198.4 "Fire's Ire" Ability { id: "4761", source: "Lugus" } -1205.9 "Captive Bolt" sync / 1[56]:[^:]*:Lugus:4764:/ window 20,20 -1215.0 "Black Flame" sync / 1[56]:[^:]*:Lugus:475D:/ -1218.5 "Otherworldly Heat" sync / 1[56]:[^:]*:Lugus:475C:/ -1226.1 "Culling Blade" sync / 1[56]:[^:]*:Lugus:4765:/ -1238.9 "Scorching Left/Right" sync / 1[56]:[^:]*:Lugus:476[23]:/ -1251.6 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1254.7 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1256.2 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1259.2 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1260.7 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1263.7 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ -1265.0 "Fire's Domain" sync / 1[56]:[^:]*:Lugus:47(5F|60):/ -1268.2 "Fire's Ire" sync / 1[56]:[^:]*:Lugus:4761:/ +1205.9 "Captive Bolt" Ability { id: "4764", source: "Lugus" } window 20,20 +1215.0 "Black Flame" Ability { id: "475D", source: "Lugus" } +1218.5 "Otherworldly Heat" Ability { id: "475C", source: "Lugus" } +1226.1 "Culling Blade" Ability { id: "4765", source: "Lugus" } +1238.9 "Scorching Left/Right" Ability { id: "476[23]", source: "Lugus" } +1251.6 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1254.7 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1256.2 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1259.2 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1260.7 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1263.7 "Fire's Ire" Ability { id: "4761", source: "Lugus" } +1265.0 "Fire's Domain" Ability { id: "47(5F|60)", source: "Lugus" } +1268.2 "Fire's Ire" Ability { id: "4761", source: "Lugus" } -1275.7 "Captive Bolt" sync / 1[56]:[^:]*:Lugus:4764:/ window 50,50 jump 1205.9 +1275.7 "Captive Bolt" Ability { id: "4764", source: "Lugus" } window 50,50 jump 1205.9 1284.8 "Black Flame" 1288.3 "Otherworldly Heat" 1295.9 "Culling Blade" diff --git a/ui/raidboss/data/05-shb/dungeon/twinning.txt b/ui/raidboss/data/05-shb/dungeon/twinning.txt index e47574ceea..89149d2fee 100644 --- a/ui/raidboss/data/05-shb/dungeon/twinning.txt +++ b/ui/raidboss/data/05-shb/dungeon/twinning.txt @@ -6,22 +6,22 @@ hideall "--sync--" ### Alpha Zaghnal # -p 3D65:108.5 -ii 3D66 3D67 3D68 3D69 3D6A 41CA 3D6C # Repurposing will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:B9F:/ window 100,0 -108.5 "Augurium" sync / 1[56]:[^:]*:Alpha Zaghnal:3D65:/ window 109,9 -117.6 "Beastly Roar" sync / 1[56]:[^:]*:Alpha Zaghnal:3D64:/ -122.9 "Beast Rampant" sync / 1[56]:[^:]*:Alpha Zaghnal:3D60:/ - -136.4 "Forlorn Impact x4" sync / 1[56]:[^:]*:Alpha Zaghnal:3D61:/ duration 4 -141.3 "Beast Passant" sync / 1[56]:[^:]*:Alpha Zaghnal:3D62:/ -149.3 "Beastly Roar" sync / 1[56]:[^:]*:Alpha Zaghnal:3D64:/ -158.3 "Pounce Errant x4" sync / 1[56]:[^:]*:Alpha Zaghnal:3D5F:/ duration 5.2 +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "B9F" } window 100,0 +108.5 "Augurium" Ability { id: "3D65", source: "Alpha Zaghnal" } window 109,9 +117.6 "Beastly Roar" Ability { id: "3D64", source: "Alpha Zaghnal" } +122.9 "Beast Rampant" Ability { id: "3D60", source: "Alpha Zaghnal" } + +136.4 "Forlorn Impact x4" Ability { id: "3D61", source: "Alpha Zaghnal" } duration 4 +141.3 "Beast Passant" Ability { id: "3D62", source: "Alpha Zaghnal" } +149.3 "Beastly Roar" Ability { id: "3D64", source: "Alpha Zaghnal" } +158.3 "Pounce Errant x4" Ability { id: "3D5F", source: "Alpha Zaghnal" } duration 5.2 # I've seen this Augurium skipped?? -170.5 "Augurium" sync / 1[56]:[^:]*:Alpha Zaghnal:3D65:/ -178.8 "Charge Eradicated" sync / 1[56]:[^:]*:Alpha Zaghnal:3D63:/ window 50,5 -185.9 "Charge Eradicated" sync / 1[56]:[^:]*:Alpha Zaghnal:3D63:/ -195.2 "Beast Rampant" sync / 1[56]:[^:]*:Alpha Zaghnal:3D60:/ +170.5 "Augurium" Ability { id: "3D65", source: "Alpha Zaghnal" } +178.8 "Charge Eradicated" Ability { id: "3D63", source: "Alpha Zaghnal" } window 50,5 +185.9 "Charge Eradicated" Ability { id: "3D63", source: "Alpha Zaghnal" } +195.2 "Beast Rampant" Ability { id: "3D60", source: "Alpha Zaghnal" } -208.6 "Forlorn Impact x4" sync / 1[56]:[^:]*:Alpha Zaghnal:3D61:/ duration 4 jump 136.4 +208.6 "Forlorn Impact x4" Ability { id: "3D61", source: "Alpha Zaghnal" } duration 4 jump 136.4 213.5 "Beast Passant" 221.5 "Beastly Roar" 230.5 "Pounce Errant x4" @@ -34,21 +34,21 @@ hideall "--sync--" ### Mithridates # -p 3DED:512 -ii 3DEC 3DEF # Aetherial Observation will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BA0:/ window 500,0 +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BA0" } window 500,0 -512.0 "Thunder Beam" sync / 1[56]:[^:]*:Mithridates:3DED:/ window 512,10 -522.2 "Electric Discharge" sync / 1[56]:[^:]*:Mithridates:3DF0:/ -531.1 "Shock" sync / 1[56]:[^:]*:Levinball:3DF1:/ -543.8 "Laserblade" sync / 1[56]:[^:]*:Mithridates:3DEB:/ -555.9 "Thunder Beam" sync / 1[56]:[^:]*:Mithridates:3DED:/ -569.5 "Allagan Thunder" sync / 1[56]:[^:]*:Mithridates:3DEE:/ +512.0 "Thunder Beam" Ability { id: "3DED", source: "Mithridates" } window 512,10 +522.2 "Electric Discharge" Ability { id: "3DF0", source: "Mithridates" } +531.1 "Shock" Ability { id: "3DF1", source: "Levinball" } +543.8 "Laserblade" Ability { id: "3DEB", source: "Mithridates" } +555.9 "Thunder Beam" Ability { id: "3DED", source: "Mithridates" } +569.5 "Allagan Thunder" Ability { id: "3DEE", source: "Mithridates" } -582.1 "Electric Discharge" sync / 1[56]:[^:]*:Mithridates:3DF0:/ -590.2 "Laserblade" sync / 1[56]:[^:]*:Mithridates:3DEB:/ -591.0 "Shock" sync / 1[56]:[^:]*:Levinball:3DF1:/ -602.4 "Thunder Beam" sync / 1[56]:[^:]*:Mithridates:3DED:/ +582.1 "Electric Discharge" Ability { id: "3DF0", source: "Mithridates" } +590.2 "Laserblade" Ability { id: "3DEB", source: "Mithridates" } +591.0 "Shock" Ability { id: "3DF1", source: "Levinball" } +602.4 "Thunder Beam" Ability { id: "3DED", source: "Mithridates" } -617.5 "Electric Discharge" sync / 1[56]:[^:]*:Mithridates:3DF0:/ window 20,20 jump 582.1 +617.5 "Electric Discharge" Ability { id: "3DF0", source: "Mithridates" } window 20,20 jump 582.1 625.6 "Laserblade" 626.4 "Shock" 637.8 "Thunder Beam" @@ -66,35 +66,35 @@ hideall "Temporal Paradox" hideall "Temporal Flow" # The Cornice will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:BA2:/ window 1000,0 - -1013.8 "Magitek Crossray" sync / 1[56]:[^:]*:The Tycoon:3DF8:/ window 1013.8,5 -1016.2 "Temporal Paradox" sync / 1[56]:[^:]*:The Tycoon:3DF7:/ -1023.1 "Temporal Flow" sync / 1[56]:[^:]*:The Tycoon:3DF5:/ -1024.4 "Magitek Ray" sync / 1[56]:[^:]*:The Tycoon:3DF3:/ - -1034.2 "Defensive Array" sync / 1[56]:[^:]*:The Tycoon:3DF2:/ -1042.3 "Temporal Flow" sync / 1[56]:[^:]*:The Tycoon:3DF5:/ -1043.4 "Magitek Ray" sync / 1[56]:[^:]*:The Tycoon:3DF3:/ -1049.6 "Artificial Gravity" sync / 1[56]:[^:]*:The Tycoon:3DF9:/ -1056.3 "High Gravity" sync / 1[56]:[^:]*:The Tycoon:3DFA:/ -1065.9 "Rail Cannon" sync / 1[56]:[^:]*:The Tycoon:3DFB:/ - -1079.1 "Defensive Array" sync / 1[56]:[^:]*:The Tycoon:3DF2:/ -1086.3 "Magicrystal" sync / 1[56]:[^:]*:The Tycoon:3E0C:/ -1093.0 "Shattered Crystal" sync / 1[56]:[^:]*:The Tycoon:439A:/ -1093.6 "Temporal Flow" sync / 1[56]:[^:]*:The Tycoon:3DF5:/ -1094.9 "Magitek Ray" sync / 1[56]:[^:]*:The Tycoon:3DF3:/ - -1105.9 "High-Tension Discharger" sync / 1[56]:[^:]*:The Tycoon:3DFC:/ -1119.2 "Magitek Crossray" sync / 1[56]:[^:]*:The Tycoon:3DF8:/ -1129.3 "Artificial Gravity" sync / 1[56]:[^:]*:The Tycoon:3DF9:/ -1135.5 "Temporal Flow" sync / 1[56]:[^:]*:The Tycoon:3DF5:/ -1136.0 "High Gravity" sync / 1[56]:[^:]*:The Tycoon:3DFA:/ -1136.6 "Magitek Ray" sync / 1[56]:[^:]*:The Tycoon:3DF3:/ -1147.7 "Rail Cannon" sync / 1[56]:[^:]*:The Tycoon:3DFB:/ - -1161.2 "Defensive Array" sync / 1[56]:[^:]*:The Tycoon:3DF2:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "BA2" } window 1000,0 + +1013.8 "Magitek Crossray" Ability { id: "3DF8", source: "The Tycoon" } window 1013.8,5 +1016.2 "Temporal Paradox" Ability { id: "3DF7", source: "The Tycoon" } +1023.1 "Temporal Flow" Ability { id: "3DF5", source: "The Tycoon" } +1024.4 "Magitek Ray" Ability { id: "3DF3", source: "The Tycoon" } + +1034.2 "Defensive Array" Ability { id: "3DF2", source: "The Tycoon" } +1042.3 "Temporal Flow" Ability { id: "3DF5", source: "The Tycoon" } +1043.4 "Magitek Ray" Ability { id: "3DF3", source: "The Tycoon" } +1049.6 "Artificial Gravity" Ability { id: "3DF9", source: "The Tycoon" } +1056.3 "High Gravity" Ability { id: "3DFA", source: "The Tycoon" } +1065.9 "Rail Cannon" Ability { id: "3DFB", source: "The Tycoon" } + +1079.1 "Defensive Array" Ability { id: "3DF2", source: "The Tycoon" } +1086.3 "Magicrystal" Ability { id: "3E0C", source: "The Tycoon" } +1093.0 "Shattered Crystal" Ability { id: "439A", source: "The Tycoon" } +1093.6 "Temporal Flow" Ability { id: "3DF5", source: "The Tycoon" } +1094.9 "Magitek Ray" Ability { id: "3DF3", source: "The Tycoon" } + +1105.9 "High-Tension Discharger" Ability { id: "3DFC", source: "The Tycoon" } +1119.2 "Magitek Crossray" Ability { id: "3DF8", source: "The Tycoon" } +1129.3 "Artificial Gravity" Ability { id: "3DF9", source: "The Tycoon" } +1135.5 "Temporal Flow" Ability { id: "3DF5", source: "The Tycoon" } +1136.0 "High Gravity" Ability { id: "3DFA", source: "The Tycoon" } +1136.6 "Magitek Ray" Ability { id: "3DF3", source: "The Tycoon" } +1147.7 "Rail Cannon" Ability { id: "3DFB", source: "The Tycoon" } + +1161.2 "Defensive Array" Ability { id: "3DF2", source: "The Tycoon" } 1167.3 "Gravity/Crossray??" # ??? @@ -105,19 +105,19 @@ hideall "Temporal Flow" # and then possibly another discharger?? # Path A? -#1161.2 "Defensive Array" sync / 1[56]:[^:]*:The Tycoon:3DF2:/ -#1167.3 "Artificial Gravity" sync / 1[56]:[^:]*:The Tycoon:3DF9:/ -#1170.5 "Magicrystal" sync / 1[56]:[^:]*:The Tycoon:3E0C:/ -#1174.0 "High Gravity" sync / 1[56]:[^:]*:The Tycoon:3DFA:/ -#1176.7 "Temporal Flow" sync / 1[56]:[^:]*:The Tycoon:3DF5:/ -#1177.2 "Shattered Crystal" sync / 1[56]:[^:]*:The Tycoon:439A:/ -#1178.0 "Magitek Ray" sync / 1[56]:[^:]*:The Tycoon:3DF3:/ +#1161.2 "Defensive Array" Ability { id: "3DF2", source: "The Tycoon" } +#1167.3 "Artificial Gravity" Ability { id: "3DF9", source: "The Tycoon" } +#1170.5 "Magicrystal" Ability { id: "3E0C", source: "The Tycoon" } +#1174.0 "High Gravity" Ability { id: "3DFA", source: "The Tycoon" } +#1176.7 "Temporal Flow" Ability { id: "3DF5", source: "The Tycoon" } +#1177.2 "Shattered Crystal" Ability { id: "439A", source: "The Tycoon" } +#1178.0 "Magitek Ray" Ability { id: "3DF3", source: "The Tycoon" } # Path B? -#1161.0 "Defensive Array" sync / 1[56]:[^:]*:The Tycoon:3DF2:/ -#1172.2 "Magitek Crossray" sync / 1[56]:[^:]*:The Tycoon:3DF8:/ -#1179.5 "Magicrystal" sync / 1[56]:[^:]*:The Tycoon:3E0C:/ -#1186.2 "Shattered Crystal" sync / 1[56]:[^:]*:The Tycoon:439A:/ -#1186.7 "Temporal Flow" sync / 1[56]:[^:]*:The Tycoon:3DF5:/ -#1188.0 "Magitek Ray" sync / 1[56]:[^:]*:The Tycoon:3DF3:/ -#1199.0 "Rail Cannon" sync / 1[56]:[^:]*:The Tycoon:3DFB:/ +#1161.0 "Defensive Array" Ability { id: "3DF2", source: "The Tycoon" } +#1172.2 "Magitek Crossray" Ability { id: "3DF8", source: "The Tycoon" } +#1179.5 "Magicrystal" Ability { id: "3E0C", source: "The Tycoon" } +#1186.2 "Shattered Crystal" Ability { id: "439A", source: "The Tycoon" } +#1186.7 "Temporal Flow" Ability { id: "3DF5", source: "The Tycoon" } +#1188.0 "Magitek Ray" Ability { id: "3DF3", source: "The Tycoon" } +#1199.0 "Rail Cannon" Ability { id: "3DFB", source: "The Tycoon" } diff --git a/ui/raidboss/data/05-shb/eureka/bozjan_southern_front.txt b/ui/raidboss/data/05-shb/eureka/bozjan_southern_front.txt index f2212ce0e0..b7cb7ee122 100644 --- a/ui/raidboss/data/05-shb/eureka/bozjan_southern_front.txt +++ b/ui/raidboss/data/05-shb/eureka/bozjan_southern_front.txt @@ -7,9 +7,9 @@ hideall "--sync--" # Use zone-unseal and 0x21 Reset lines # Trigger set contains 'resetWhenOutOfCombat: false' -0.0 "--Reset--" sync / 21:........:80000014:00:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "80000014", data0: "00" } window 100000 jump 0 # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 # TODO: fill in CEs # The idea with each of them is that you have at most two minutes of standing @@ -18,58 +18,58 @@ hideall "--sync--" # abilities from there. ### Kill It with Fire -1000.0 "--sync--" sync / 21:........:80000014:1D4:/ window 100000,0 +1000.0 "--sync--" ActorControl { command: "80000014", data0: "1D4" } window 100000,0 ### The Baying of the Hound(s) -2000.0 "--sync--" sync / 21:........:80000014:1CC:/ window 100000,0 +2000.0 "--sync--" ActorControl { command: "80000014", data0: "1CC" } window 100000,0 ### Vigil for the Lost -3000.0 "--sync--" sync / 21:........:80000014:1D0:/ window 100000,0 +3000.0 "--sync--" ActorControl { command: "80000014", data0: "1D0" } window 100000,0 ### Aces High -4000.0 "--sync--" sync / 21:........:80000014:1D2:/ window 100000,0 +4000.0 "--sync--" ActorControl { command: "80000014", data0: "1D2" } window 100000,0 ### The Shadow of Death's Hand -5000.0 "--sync--" sync / 21:........:80000014:1CD:/ window 100000,0 +5000.0 "--sync--" ActorControl { command: "80000014", data0: "1CD" } window 100000,0 ### The Final Furlong -6000.0 "--sync--" sync / 21:........:80000014:1D5:/ window 100000,0 +6000.0 "--sync--" ActorControl { command: "80000014", data0: "1D5" } window 100000,0 ### The Hunt for Red Choctober -7000.0 "--sync--" sync / 21:........:80000014:1CA:/ window 100000,0 +7000.0 "--sync--" ActorControl { command: "80000014", data0: "1CA" } window 100000,0 ### Beast of Man -8000.0 "--sync--" sync / 21:........:80000014:1DB:/ window 100000,0 +8000.0 "--sync--" ActorControl { command: "80000014", data0: "1DB" } window 100000,0 ### Fires of War -9000.0 "--sync--" sync / 21:........:80000014:1D6:/ window 100000,0 +9000.0 "--sync--" ActorControl { command: "80000014", data0: "1D6" } window 100000,0 ### Patriot Games -10000.0 "--sync--" sync / 21:........:80000014:1D1:/ window 100000,0 +10000.0 "--sync--" ActorControl { command: "80000014", data0: "1D1" } window 100000,0 ### Trampled under Hoof -11000.0 "--sync--" sync / 21:........:80000014:1CE:/ window 100000,0 +11000.0 "--sync--" ActorControl { command: "80000014", data0: "1CE" } window 100000,0 ### And the Flames Went Higher -12000.0 "--sync--" sync / 21:........:80000014:1D3:/ window 100000,0 +12000.0 "--sync--" ActorControl { command: "80000014", data0: "1D3" } window 100000,0 ### Metal Fox Chaos -13000.0 "--sync--" sync / 21:........:80000014:1CB:/ window 100000,0 +13000.0 "--sync--" ActorControl { command: "80000014", data0: "1CB" } window 100000,0 ### Rise of the Robots -14000.0 "--sync--" sync / 21:........:80000014:1DF:/ window 100000,0 +14000.0 "--sync--" ActorControl { command: "80000014", data0: "1DF" } window 100000,0 ### Where Strode the Behemoth -15000.0 "--sync--" sync / 21:........:80000014:1DC:/ window 100000,0 +15000.0 "--sync--" ActorControl { command: "80000014", data0: "1DC" } window 100000,0 ### The Battle of Castrum Lacus Litore -#16000.0 "--sync--" sync / 21:........:80000014:1D7:/ window 100000,0 +#16000.0 "--sync--" ActorControl { command: "80000014", data0: "1D7" } window 100000,0 ### Brionac / 4th Legion Helldiver # The Grand Gates will be sealed off -20000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DD9:/ window 100000,0 +20000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DD9" } window 100000,0 # Eaglesight will be sealed off -20000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DD8:/ window 100000,0 +20000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DD8" } window 100000,0 # JavaScript will insert a sync to jump to 4th Legion Helldiver if you are on the bottom. # Unfortunately, there is nothing in the log to differentiate otherwise. @@ -80,55 +80,55 @@ hideall "--sync--" # # 53C5 Lightning Shower is the first obvious "you are on the top" damage # Anti-Warchmachina Weaponry summons an add; once dead, the timeline resumes. -20014.7 "Electric Anvil" sync / 1[56]:[^:]*:Brionac:51DC:/ -20026.8 "False Thunder" sync / 1[56]:[^:]*:Brionac:51C[EF]:/ -20035.0 "Anti-Warmachina Weaponry" sync / 1[56]:[^:]*:Brionac:51CD:/ -20135.0 "--sync--" sync / 14:[^:]*:Brionac:53C4:/ window 100,50 -20139.0 "Lightning Shower" sync / 1[56]:[^:]*:Brionac:53C4:/ - -20146.1 "Energy Generation" sync / 1[56]:[^:]*:Brionac:51D0:/ -20158.2 "Lightburst" sync / 1[56]:[^:]*:Lightsphere:51D1:/ - -20171.2 "False Thunder" sync / 1[56]:[^:]*:Brionac:51C[EF]:/ - -20177.3 "Energy Generation" sync / 1[56]:[^:]*:Brionac:51D0:/ -20189.5 "Shadow Burst" sync / 1[56]:[^:]*:Shadowsphere:51D2:/ - -20203.5 "Electric Anvil" sync / 1[56]:[^:]*:Brionac:51DC:/ -20218.8 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ -20222.8 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ -20226.9 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ -20230.9 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ - -20238.8 "Energy Generation" sync / 1[56]:[^:]*:Brionac:51D0:/ -20250.9 "Pole Shift" sync / 1[56]:[^:]*:Brionac:51D3:/ -20254.9 "Shadow Burst" sync / 1[56]:[^:]*:Shadowsphere:51D2:/ -20254.9 "Lightburst" sync / 1[56]:[^:]*:Lightsphere:51D1:/ - -20263.2 "Anti-Warmachina Weaponry" sync / 1[56]:[^:]*:Brionac:51CD:/ -20363.2 "--sync--" sync / 14:[^:]*:Brionac:53C4:/ window 100,50 -20367.2 "Lightning Shower" sync / 1[56]:[^:]*:Brionac:53C4:/ -20374.3 "Energy Generation" sync / 1[56]:[^:]*:Brionac:51D0:/ -20384.4 "Magitek Magnetism" sync / 1[56]:[^:]*:Brionac:51D5:/ -20388.6 "Magnetic Jolt" sync / 1[56]:[^:]*:Brionac:51D7:/ -20389.4 "Lightburst" sync / 1[56]:[^:]*:Lightsphere:51D1:/ -20389.4 "Shadow Burst" sync / 1[56]:[^:]*:Shadowsphere:51D2:/ -20399.6 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ -20403.6 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ -20407.7 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ -20411.7 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ -20418.6 "False Thunder" sync / 1[56]:[^:]*:Brionac:51CF:/ -20427.9 "Anti-Warmachina Weaponry" sync / 1[56]:[^:]*:Brionac:51CD:/ -20527.9 "--sync--" sync / 14:[^:]*:Brionac:51DC:/ window 100,50 -20531.9 "Electric Anvil" sync / 1[56]:[^:]*:Brionac:51DC:/ - -20539.0 "Energy Generation" sync / 1[56]:[^:]*:Brionac:51D0:/ -20549.1 "Polar Magnetism" sync / 1[56]:[^:]*:Brionac:51D9:/ -20554.2 "Shadow Burst" sync / 1[56]:[^:]*:Shadowsphere:51D2:/ -20554.2 "Lightburst" sync / 1[56]:[^:]*:Lightsphere:51D1:/ - -20565.4 "Energy Generation" sync / 1[56]:[^:]*:Brionac:51D0:/ -20565.4 "Voltstream" sync / 1[56]:[^:]*:Brionac:51DB:/ +20014.7 "Electric Anvil" Ability { id: "51DC", source: "Brionac" } +20026.8 "False Thunder" Ability { id: "51C[EF]", source: "Brionac" } +20035.0 "Anti-Warmachina Weaponry" Ability { id: "51CD", source: "Brionac" } +20135.0 "--sync--" StartsUsing { id: "53C4", source: "Brionac" } window 100,50 +20139.0 "Lightning Shower" Ability { id: "53C4", source: "Brionac" } + +20146.1 "Energy Generation" Ability { id: "51D0", source: "Brionac" } +20158.2 "Lightburst" Ability { id: "51D1", source: "Lightsphere" } + +20171.2 "False Thunder" Ability { id: "51C[EF]", source: "Brionac" } + +20177.3 "Energy Generation" Ability { id: "51D0", source: "Brionac" } +20189.5 "Shadow Burst" Ability { id: "51D2", source: "Shadowsphere" } + +20203.5 "Electric Anvil" Ability { id: "51DC", source: "Brionac" } +20218.8 "Voltstream" Ability { id: "51DB", source: "Brionac" } +20222.8 "Voltstream" Ability { id: "51DB", source: "Brionac" } +20226.9 "Voltstream" Ability { id: "51DB", source: "Brionac" } +20230.9 "Voltstream" Ability { id: "51DB", source: "Brionac" } + +20238.8 "Energy Generation" Ability { id: "51D0", source: "Brionac" } +20250.9 "Pole Shift" Ability { id: "51D3", source: "Brionac" } +20254.9 "Shadow Burst" Ability { id: "51D2", source: "Shadowsphere" } +20254.9 "Lightburst" Ability { id: "51D1", source: "Lightsphere" } + +20263.2 "Anti-Warmachina Weaponry" Ability { id: "51CD", source: "Brionac" } +20363.2 "--sync--" StartsUsing { id: "53C4", source: "Brionac" } window 100,50 +20367.2 "Lightning Shower" Ability { id: "53C4", source: "Brionac" } +20374.3 "Energy Generation" Ability { id: "51D0", source: "Brionac" } +20384.4 "Magitek Magnetism" Ability { id: "51D5", source: "Brionac" } +20388.6 "Magnetic Jolt" Ability { id: "51D7", source: "Brionac" } +20389.4 "Lightburst" Ability { id: "51D1", source: "Lightsphere" } +20389.4 "Shadow Burst" Ability { id: "51D2", source: "Shadowsphere" } +20399.6 "Voltstream" Ability { id: "51DB", source: "Brionac" } +20403.6 "Voltstream" Ability { id: "51DB", source: "Brionac" } +20407.7 "Voltstream" Ability { id: "51DB", source: "Brionac" } +20411.7 "Voltstream" Ability { id: "51DB", source: "Brionac" } +20418.6 "False Thunder" Ability { id: "51CF", source: "Brionac" } +20427.9 "Anti-Warmachina Weaponry" Ability { id: "51CD", source: "Brionac" } +20527.9 "--sync--" StartsUsing { id: "51DC", source: "Brionac" } window 100,50 +20531.9 "Electric Anvil" Ability { id: "51DC", source: "Brionac" } + +20539.0 "Energy Generation" Ability { id: "51D0", source: "Brionac" } +20549.1 "Polar Magnetism" Ability { id: "51D9", source: "Brionac" } +20554.2 "Shadow Burst" Ability { id: "51D2", source: "Shadowsphere" } +20554.2 "Lightburst" Ability { id: "51D1", source: "Lightsphere" } + +20565.4 "Energy Generation" Ability { id: "51D0", source: "Brionac" } +20565.4 "Voltstream" Ability { id: "51DB", source: "Brionac" } # ??? @@ -143,62 +143,62 @@ hideall "--sync--" # Uncomment this to more easily test this timeline. # Eaglesight will be sealed off -# 30000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DD8:/ window 100000,0 +# 30000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DD8" } window 100000,0 # Fake intro, where you don't know if you're on the top or the bottom. # Don't sync because sometimes these bosses are +/- 3 seconds @_@ -20022.2 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -20036.9 "Mrv Missile" #sync / 1[56]:[^:]*:4Th Legion Helldiver:51FD:/ - -30022.2 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30036.9 "Mrv Missile" sync / 1[56]:[^:]*:4Th Legion Helldiver:51FD:/ window 50,50 -30049.1 "Command: Lateral Dive" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EA:/ -30057.1 "Lateral Dive" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EB:/ -30065.3 "Command: Suppressive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F5:/ -30073.3 "Command: Suppressive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F6:/ -30082.6 "Magitek Missiles" sync / 1[56]:[^:]*:4Th Legion Helldiver:51FE:/ -30097.8 "Command: Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EC:/ -30102.4 "Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EE:/ -30106.4 "Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EE:/ -30110.4 "Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EE:/ -30114.4 "Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EE:/ -30134.1 "Command: Chain Cannon" sync / 1[56]:[^:]*:4Th Legion Helldiver:51FB:/ -30138.9 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30140.8 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30142.9 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30144.9 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30153.4 "Magitek Missiles" sync / 1[56]:[^:]*:4Th Legion Helldiver:51FE:/ window 15,15 -30167.6 "Command: Dive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EF:/ -30179.6 "Dive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F0:/ -30183.6 "Dive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F0:/ -30187.6 "Dive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F0:/ -30197.8 "Command: Lateral Dive" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EA:/ -30203.9 "Command: Suppressive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F5:/ -30205.8 "Lateral Dive" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EB:/ -30209.8 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30211.9 "Command: Suppressive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F6:/ -30232.6 "Magitek Missiles" sync / 1[56]:[^:]*:4Th Legion Helldiver:51FE:/ -30246.8 "Command: Joint Attack" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F2:/ -30255.0 "Command: Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EC:/ -30259.6 "Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EE:/ -30263.6 "Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EE:/ -30265.3 "Surface Missile" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F8:/ -30267.7 "Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EE:/ -30270.4 "Surface Missile" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F8:/ -30271.6 "Infrared Blast" sync / 1[56]:[^:]*:4Th Legion Helldiver:51EE:/ -30278.2 "Command: Chain Cannon" sync / 1[56]:[^:]*:4Th Legion Helldiver:51FB:/ -30282.8 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30284.3 "Command: Suppressive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F5:/ -30284.9 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30286.8 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30288.9 "Chain Cannon" duration 6.5 #sync / 1[56]:[^:]*:4Th Legion Helldiver:51F9:/ -30292.3 "Command: Suppressive Formation" sync / 1[56]:[^:]*:4Th Legion Helldiver:51F6:/ +20022.2 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +20036.9 "Mrv Missile" #Ability { id: "51FD", source: "4Th Legion Helldiver" } + +30022.2 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30036.9 "Mrv Missile" Ability { id: "51FD", source: "4Th Legion Helldiver" } window 50,50 +30049.1 "Command: Lateral Dive" Ability { id: "51EA", source: "4Th Legion Helldiver" } +30057.1 "Lateral Dive" Ability { id: "51EB", source: "4Th Legion Helldiver" } +30065.3 "Command: Suppressive Formation" Ability { id: "51F5", source: "4Th Legion Helldiver" } +30073.3 "Command: Suppressive Formation" Ability { id: "51F6", source: "4Th Legion Helldiver" } +30082.6 "Magitek Missiles" Ability { id: "51FE", source: "4Th Legion Helldiver" } +30097.8 "Command: Infrared Blast" Ability { id: "51EC", source: "4Th Legion Helldiver" } +30102.4 "Infrared Blast" Ability { id: "51EE", source: "4Th Legion Helldiver" } +30106.4 "Infrared Blast" Ability { id: "51EE", source: "4Th Legion Helldiver" } +30110.4 "Infrared Blast" Ability { id: "51EE", source: "4Th Legion Helldiver" } +30114.4 "Infrared Blast" Ability { id: "51EE", source: "4Th Legion Helldiver" } +30134.1 "Command: Chain Cannon" Ability { id: "51FB", source: "4Th Legion Helldiver" } +30138.9 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30140.8 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30142.9 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30144.9 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30153.4 "Magitek Missiles" Ability { id: "51FE", source: "4Th Legion Helldiver" } window 15,15 +30167.6 "Command: Dive Formation" Ability { id: "51EF", source: "4Th Legion Helldiver" } +30179.6 "Dive Formation" Ability { id: "51F0", source: "4Th Legion Helldiver" } +30183.6 "Dive Formation" Ability { id: "51F0", source: "4Th Legion Helldiver" } +30187.6 "Dive Formation" Ability { id: "51F0", source: "4Th Legion Helldiver" } +30197.8 "Command: Lateral Dive" Ability { id: "51EA", source: "4Th Legion Helldiver" } +30203.9 "Command: Suppressive Formation" Ability { id: "51F5", source: "4Th Legion Helldiver" } +30205.8 "Lateral Dive" Ability { id: "51EB", source: "4Th Legion Helldiver" } +30209.8 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30211.9 "Command: Suppressive Formation" Ability { id: "51F6", source: "4Th Legion Helldiver" } +30232.6 "Magitek Missiles" Ability { id: "51FE", source: "4Th Legion Helldiver" } +30246.8 "Command: Joint Attack" Ability { id: "51F2", source: "4Th Legion Helldiver" } +30255.0 "Command: Infrared Blast" Ability { id: "51EC", source: "4Th Legion Helldiver" } +30259.6 "Infrared Blast" Ability { id: "51EE", source: "4Th Legion Helldiver" } +30263.6 "Infrared Blast" Ability { id: "51EE", source: "4Th Legion Helldiver" } +30265.3 "Surface Missile" Ability { id: "51F8", source: "4Th Legion Helldiver" } +30267.7 "Infrared Blast" Ability { id: "51EE", source: "4Th Legion Helldiver" } +30270.4 "Surface Missile" Ability { id: "51F8", source: "4Th Legion Helldiver" } +30271.6 "Infrared Blast" Ability { id: "51EE", source: "4Th Legion Helldiver" } +30278.2 "Command: Chain Cannon" Ability { id: "51FB", source: "4Th Legion Helldiver" } +30282.8 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30284.3 "Command: Suppressive Formation" Ability { id: "51F5", source: "4Th Legion Helldiver" } +30284.9 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30286.8 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30288.9 "Chain Cannon" duration 6.5 #Ability { id: "51F9", source: "4Th Legion Helldiver" } +30292.3 "Command: Suppressive Formation" Ability { id: "51F6", source: "4Th Legion Helldiver" } # ??? ### Albeleo the Maleficent # Bladesmeet will be sealed off -40000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DD5:/ window 100000,0 +40000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DD5" } window 100000,0 ### Adrammelech @@ -207,67 +207,67 @@ hideall "--sync--" # note: accursed becoming IV casts have different ability ids the first time through. # The airship landing will be sealed off -50000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DDA:/ window 100000,0 -50014.3 "Holy IV" sync / 1[56]:[^:]*:Adrammelech:4F96:/ +50000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DDA" } window 100000,0 +50014.3 "Holy IV" Ability { id: "4F96", source: "Adrammelech" } -50021.8 "Curse Of The Fiend" sync / 1[56]:[^:]*:Adrammelech:4F7A:/ -50028.9 "Accursed Becoming" sync / 1[56]:[^:]*:Adrammelech:4F7B:/ -50036.1 "Water IV" sync / 1[56]:[^:]*:Adrammelech:53D8:/ +50021.8 "Curse Of The Fiend" Ability { id: "4F7A", source: "Adrammelech" } +50028.9 "Accursed Becoming" Ability { id: "4F7B", source: "Adrammelech" } +50036.1 "Water IV" Ability { id: "53D8", source: "Adrammelech" } -50044.4 "Curse Of The Fiend" sync / 1[56]:[^:]*:Adrammelech:4F7A:/ -50051.5 "Accursed Becoming" sync / 1[56]:[^:]*:Adrammelech:4F7B:/ -50058.7 "Fire IV/Blizzard IV" sync / 1[56]:[^:]*:Adrammelech:545[AD]:/ +50044.4 "Curse Of The Fiend" Ability { id: "4F7A", source: "Adrammelech" } +50051.5 "Accursed Becoming" Ability { id: "4F7B", source: "Adrammelech" } +50058.7 "Fire IV/Blizzard IV" Ability { id: "545[AD]", source: "Adrammelech" } -50067.0 "Curse Of The Fiend" sync / 1[56]:[^:]*:Adrammelech:4F7A:/ -50074.1 "Accursed Becoming" sync / 1[56]:[^:]*:Adrammelech:4F7B:/ -50081.3 "Stone IV/Aero IV/Thunder IV" sync / 1[56]:[^:]*:Adrammelech:4F(7F|80|81):/ +50067.0 "Curse Of The Fiend" Ability { id: "4F7A", source: "Adrammelech" } +50074.1 "Accursed Becoming" Ability { id: "4F7B", source: "Adrammelech" } +50081.3 "Stone IV/Aero IV/Thunder IV" Ability { id: "4F(7F|80|81)", source: "Adrammelech" } -50091.4 "Burst II" sync / 1[56]:[^:]*:Adrammelech:4F8A:/ -50102.5 "Warped Light" sync / 1[56]:[^:]*:Adrammelech:4F8C:/ -50105.5 "Shock" sync / 1[56]:[^:]*:Adrammelech:4F8E:/ +50091.4 "Burst II" Ability { id: "4F8A", source: "Adrammelech" } +50102.5 "Warped Light" Ability { id: "4F8C", source: "Adrammelech" } +50105.5 "Shock" Ability { id: "4F8E", source: "Adrammelech" } -50116.0 "Curse Of The Fiend" sync / 1[56]:[^:]*:Adrammelech:4F7A:/ -50123.1 "Accursed Becoming" sync / 1[56]:[^:]*:Adrammelech:4F7B:/ -50130.3 "Orb 1" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ -50132.1 "Orb 2" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ +50116.0 "Curse Of The Fiend" Ability { id: "4F7A", source: "Adrammelech" } +50123.1 "Accursed Becoming" Ability { id: "4F7B", source: "Adrammelech" } +50130.3 "Orb 1" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } +50132.1 "Orb 2" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } -50144.3 "Tornado" sync / 1[56]:[^:]*:Adrammelech:4F8F:/ -50151.4 "Flare" sync / 1[56]:[^:]*:Adrammelech:4F95:/ -50160.5 "Holy IV" sync / 1[56]:[^:]*:Adrammelech:4F96:/ -50168.7 "Meteor" sync / 1[56]:[^:]*:Adrammelech:4F92:/ duration 20.7 +50144.3 "Tornado" Ability { id: "4F8F", source: "Adrammelech" } +50151.4 "Flare" Ability { id: "4F95", source: "Adrammelech" } +50160.5 "Holy IV" Ability { id: "4F96", source: "Adrammelech" } +50168.7 "Meteor" Ability { id: "4F92", source: "Adrammelech" } duration 20.7 # HP push? I have seen Meteor and Tornado->Meteor all skipped. -50194.3 "--sync--" sync / 14:[^:]*:Adrammelech:4F7A:/ window 70,20 -50197.3 "Curse Of The Fiend" sync / 1[56]:[^:]*:Adrammelech:4F7A:/ -50204.4 "Accursed Becoming" sync / 1[56]:[^:]*:Adrammelech:4F7B:/ -50211.6 "Orb 1" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ -50213.4 "Orb 2" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ -50213.5 "Accursed Becoming" sync / 1[56]:[^:]*:Adrammelech:4F7B:/ -50220.7 "Orb 3" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ -50222.5 "Orb 4" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ - -50230.7 "Flare" sync / 1[56]:[^:]*:Adrammelech:4F95:/ -50237.8 "Tornado" sync / 1[56]:[^:]*:Adrammelech:4F8F:/ -50244.9 "Meteor" sync / 1[56]:[^:]*:Adrammelech:4F92:/ duration 20.7 -50262.6 "Burst II" sync / 1[56]:[^:]*:Adrammelech:4F8A:/ -50273.8 "Warped Light" sync / 1[56]:[^:]*:Adrammelech:4F8C:/ -50276.8 "Shock" sync / 1[56]:[^:]*:Adrammelech:4F8E:/ -50288.0 "Holy IV" sync / 1[56]:[^:]*:Adrammelech:4F96:/ -50295.1 "Holy IV" sync / 1[56]:[^:]*:Adrammelech:4F96:/ -50304.2 "Flare" sync / 1[56]:[^:]*:Adrammelech:4F95:/ - -50316.7 "Curse Of The Fiend" sync / 1[56]:[^:]*:Adrammelech:4F7A:/ -50323.8 "Accursed Becoming" sync / 1[56]:[^:]*:Adrammelech:4F7B:/ -50331.0 "Orb 1" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ -50332.8 "Orb 2" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ -50332.9 "Accursed Becoming" sync / 1[56]:[^:]*:Adrammelech:4F7B:/ -50340.1 "Orb 3" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ -50341.9 "Orb 4" #sync / 1[56]:[^:]*:Adrammelech:(504D|504A|4F7D|4F8[5-7]):/ +50194.3 "--sync--" StartsUsing { id: "4F7A", source: "Adrammelech" } window 70,20 +50197.3 "Curse Of The Fiend" Ability { id: "4F7A", source: "Adrammelech" } +50204.4 "Accursed Becoming" Ability { id: "4F7B", source: "Adrammelech" } +50211.6 "Orb 1" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } +50213.4 "Orb 2" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } +50213.5 "Accursed Becoming" Ability { id: "4F7B", source: "Adrammelech" } +50220.7 "Orb 3" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } +50222.5 "Orb 4" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } + +50230.7 "Flare" Ability { id: "4F95", source: "Adrammelech" } +50237.8 "Tornado" Ability { id: "4F8F", source: "Adrammelech" } +50244.9 "Meteor" Ability { id: "4F92", source: "Adrammelech" } duration 20.7 +50262.6 "Burst II" Ability { id: "4F8A", source: "Adrammelech" } +50273.8 "Warped Light" Ability { id: "4F8C", source: "Adrammelech" } +50276.8 "Shock" Ability { id: "4F8E", source: "Adrammelech" } +50288.0 "Holy IV" Ability { id: "4F96", source: "Adrammelech" } +50295.1 "Holy IV" Ability { id: "4F96", source: "Adrammelech" } +50304.2 "Flare" Ability { id: "4F95", source: "Adrammelech" } + +50316.7 "Curse Of The Fiend" Ability { id: "4F7A", source: "Adrammelech" } +50323.8 "Accursed Becoming" Ability { id: "4F7B", source: "Adrammelech" } +50331.0 "Orb 1" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } +50332.8 "Orb 2" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } +50332.9 "Accursed Becoming" Ability { id: "4F7B", source: "Adrammelech" } +50340.1 "Orb 3" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } +50341.9 "Orb 4" #Ability { id: ["504D", "504A", "4F7D", "4F8[5-7]"], source: "Adrammelech" } # Loop # TODO: if anybody ever finds the enrage, we can unroll this. -50350.1 "Flare" sync / 1[56]:[^:]*:Adrammelech:4F95:/ -50357.2 "Tornado" sync / 1[56]:[^:]*:Adrammelech:4F8F:/ window 100,100 jump 50237.8 +50350.1 "Flare" Ability { id: "4F95", source: "Adrammelech" } +50357.2 "Tornado" Ability { id: "4F8F", source: "Adrammelech" } window 100,100 jump 50237.8 50364.3 "Meteor" 50382.0 "Burst II" 50385.0 "Meteor" @@ -285,29 +285,29 @@ hideall "--sync--" # Phase 1 # Majesty's Auspice will be sealed off -60000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:DDB:/ window 100000,0 -60014.3 "Molting Plumage" sync / 1[56]:[^:]*:Dawon:517A:/ -60025.9 "Explosion" sync / 1[56]:[^:]*:Verdant Plume:5182:/ -60033.5 "Scratch" sync / 1[56]:[^:]*:Dawon:517B:/ -60042.1 "Fervid Pulse" sync / 1[56]:[^:]*:Dawon:5179:/ -60050.6 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:5175:/ -60058.4 "Frigid Pulse" sync / 1[56]:[^:]*:Dawon:5178:/ -60067.9 "Ready x3" duration 4.1 #sync / 1[56]:[^:]*:Lyon The Beast King:5191:/ -60074.9 "Obey" sync / 1[56]:[^:]*:Dawon:517C:/ -60077.0 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:517E:/ -60079.8 "Frigid Pulse/Fervid Pulse" sync / 1[56]:[^:]*:Dawon:51(7F|80):/ -60082.2 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:517E:/ -60085.0 "Frigid Pulse/Fervid Pulse" sync / 1[56]:[^:]*:Dawon:51(7F|80):/ -60087.4 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:517E:/ -60090.2 "Frigid Pulse/Fervid Pulse" sync / 1[56]:[^:]*:Dawon:51(7F|80):/ -60101.6 "Call Beast" sync / 1[56]:[^:]*:Lyon The Beast King:5192:/ -60107.6 "Molting Plumage" sync / 1[56]:[^:]*:Dawon:517A:/ -60119.2 "Explosion" sync / 1[56]:[^:]*:Verdant Plume:5182:/ -60128.9 "Pentagust" sync / 1[56]:[^:]*:Dawon:5176:/ -60139.6 "Scratch" sync / 1[56]:[^:]*:Dawon:517B:/ +60000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "DDB" } window 100000,0 +60014.3 "Molting Plumage" Ability { id: "517A", source: "Dawon" } +60025.9 "Explosion" Ability { id: "5182", source: "Verdant Plume" } +60033.5 "Scratch" Ability { id: "517B", source: "Dawon" } +60042.1 "Fervid Pulse" Ability { id: "5179", source: "Dawon" } +60050.6 "Swooping Frenzy" Ability { id: "5175", source: "Dawon" } +60058.4 "Frigid Pulse" Ability { id: "5178", source: "Dawon" } +60067.9 "Ready x3" duration 4.1 #Ability { id: "5191", source: "Lyon The Beast King" } +60074.9 "Obey" Ability { id: "517C", source: "Dawon" } +60077.0 "Swooping Frenzy" Ability { id: "517E", source: "Dawon" } +60079.8 "Frigid Pulse/Fervid Pulse" Ability { id: "51(7F|80)", source: "Dawon" } +60082.2 "Swooping Frenzy" Ability { id: "517E", source: "Dawon" } +60085.0 "Frigid Pulse/Fervid Pulse" Ability { id: "51(7F|80)", source: "Dawon" } +60087.4 "Swooping Frenzy" Ability { id: "517E", source: "Dawon" } +60090.2 "Frigid Pulse/Fervid Pulse" Ability { id: "51(7F|80)", source: "Dawon" } +60101.6 "Call Beast" Ability { id: "5192", source: "Lyon The Beast King" } +60107.6 "Molting Plumage" Ability { id: "517A", source: "Dawon" } +60119.2 "Explosion" Ability { id: "5182", source: "Verdant Plume" } +60128.9 "Pentagust" Ability { id: "5176", source: "Dawon" } +60139.6 "Scratch" Ability { id: "517B", source: "Dawon" } # This only sometimes happens?? Is there a loop here? -# 60158.4 "Call Beast" sync / 1[56]:[^:]*:Lyon The Beast King:5192:/ +# 60158.4 "Call Beast" Ability { id: "5192", source: "Lyon The Beast King" } # Phase 2 # Raging Winds starts and ends the phase, even if you win. @@ -316,47 +316,47 @@ hideall "--sync--" # Regardless, everything seems to sync ok after that. # TODO: is there some way to isolate the top?? 60153.6 "--Lyon Passage--" # ??? double check this timing -60166.5 "Raging Winds" sync / 1[56]:[^:]*:Lyon The Beast King:5164:/ window 100,20 -60172.6 "Winds' Peak" sync / 1[56]:[^:]*:Lyon The Beast King:516F:/ -60183.8 "Heart Of Nature" sync / 1[56]:[^:]*:Lyon The Beast King:515E:/ -60188.8 "Nature's Pulse" sync / 1[56]:[^:]*:Lyon The Beast King:5161:/ -60190.3 "Nature's Pulse" sync / 1[56]:[^:]*:Lyon The Beast King:5162:/ -60191.8 "Nature's Pulse" sync / 1[56]:[^:]*:Lyon The Beast King:5163:/ -60198.0 "Taste Of Blood" sync / 1[56]:[^:]*:Lyon The Beast King:5173:/ -60210.2 "Heart Of Nature" sync / 1[56]:[^:]*:Lyon The Beast King:515E:/ duration 6.6 -60218.2 "Nature's Blood" sync / 1[56]:[^:]*:Lyon The Beast King:515F:/ -60218.3 "Winds' Peak" sync / 1[56]:[^:]*:Lyon The Beast King:516F:/ -60228.4 "Twin Agonies" sync / 1[56]:[^:]*:Lyon The Beast King:5174:/ -60241.6 "Heart Of Nature" sync / 1[56]:[^:]*:Lyon The Beast King:515E:/ duration 6.6 -60248.7 "The King's Notice" sync / 1[56]:[^:]*:Lyon The Beast King:516E:/ -60249.6 "Nature's Blood" sync / 1[56]:[^:]*:Lyon The Beast King:515F:/ -60256.6 "Taste Of Blood" sync / 1[56]:[^:]*:Lyon The Beast King:5173:/ -60275.7 "Raging Winds Enrage" #sync / 1[56]:[^:]*:Lyon The Beast King:5164:/ +60166.5 "Raging Winds" Ability { id: "5164", source: "Lyon The Beast King" } window 100,20 +60172.6 "Winds' Peak" Ability { id: "516F", source: "Lyon The Beast King" } +60183.8 "Heart Of Nature" Ability { id: "515E", source: "Lyon The Beast King" } +60188.8 "Nature's Pulse" Ability { id: "5161", source: "Lyon The Beast King" } +60190.3 "Nature's Pulse" Ability { id: "5162", source: "Lyon The Beast King" } +60191.8 "Nature's Pulse" Ability { id: "5163", source: "Lyon The Beast King" } +60198.0 "Taste Of Blood" Ability { id: "5173", source: "Lyon The Beast King" } +60210.2 "Heart Of Nature" Ability { id: "515E", source: "Lyon The Beast King" } duration 6.6 +60218.2 "Nature's Blood" Ability { id: "515F", source: "Lyon The Beast King" } +60218.3 "Winds' Peak" Ability { id: "516F", source: "Lyon The Beast King" } +60228.4 "Twin Agonies" Ability { id: "5174", source: "Lyon The Beast King" } +60241.6 "Heart Of Nature" Ability { id: "515E", source: "Lyon The Beast King" } duration 6.6 +60248.7 "The King's Notice" Ability { id: "516E", source: "Lyon The Beast King" } +60249.6 "Nature's Blood" Ability { id: "515F", source: "Lyon The Beast King" } +60256.6 "Taste Of Blood" Ability { id: "5173", source: "Lyon The Beast King" } +60275.7 "Raging Winds Enrage" #Ability { id: "5164", source: "Lyon The Beast King" } # Phase 3 -61000.0 "--sync--" sync / 14:[^:]*:Dawon:517D:/ window 1000,0 -61002.0 "Ready x4" duration 6.1 #sync / 1[56]:[^:]*:Lyon The Beast King:5191:/ -61012.0 "Obey" sync / 1[56]:[^:]*:Dawon:517D:/ -61014.1 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:517E:/ -61016.9 "Frigid/Fervid Pulse" sync / 1[56]:[^:]*:Dawon:51(7F|80):/ -61019.3 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:517E:/ -61022.1 "Frigid/Fervid Pulse" sync / 1[56]:[^:]*:Dawon:51(7F|80):/ -61024.5 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:517E:/ -61027.3 "Frigid/Fervid Pulse" sync / 1[56]:[^:]*:Dawon:51(7F|80):/ -61029.7 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:517E:/ -61032.5 "Frigid/Fervid Pulse" sync / 1[56]:[^:]*:Dawon:51(7F|80):/ - -61042.9 "Call Beast" sync / 1[56]:[^:]*:Lyon The Beast King:5192:/ -61048.9 "Molting Plumage" sync / 1[56]:[^:]*:Dawon:517A:/ -61060.5 "Explosion" sync / 1[56]:[^:]*:Verdant Plume:5182:/ - -61070.0 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon:5175:/ -61075.8 "Pentagust" sync / 1[56]:[^:]*:Dawon:5176:/ -61087.5 "Scratch" sync / 1[56]:[^:]*:Dawon:517B:/ +61000.0 "--sync--" StartsUsing { id: "517D", source: "Dawon" } window 1000,0 +61002.0 "Ready x4" duration 6.1 #Ability { id: "5191", source: "Lyon The Beast King" } +61012.0 "Obey" Ability { id: "517D", source: "Dawon" } +61014.1 "Swooping Frenzy" Ability { id: "517E", source: "Dawon" } +61016.9 "Frigid/Fervid Pulse" Ability { id: "51(7F|80)", source: "Dawon" } +61019.3 "Swooping Frenzy" Ability { id: "517E", source: "Dawon" } +61022.1 "Frigid/Fervid Pulse" Ability { id: "51(7F|80)", source: "Dawon" } +61024.5 "Swooping Frenzy" Ability { id: "517E", source: "Dawon" } +61027.3 "Frigid/Fervid Pulse" Ability { id: "51(7F|80)", source: "Dawon" } +61029.7 "Swooping Frenzy" Ability { id: "517E", source: "Dawon" } +61032.5 "Frigid/Fervid Pulse" Ability { id: "51(7F|80)", source: "Dawon" } + +61042.9 "Call Beast" Ability { id: "5192", source: "Lyon The Beast King" } +61048.9 "Molting Plumage" Ability { id: "517A", source: "Dawon" } +61060.5 "Explosion" Ability { id: "5182", source: "Verdant Plume" } + +61070.0 "Swooping Frenzy" Ability { id: "5175", source: "Dawon" } +61075.8 "Pentagust" Ability { id: "5176", source: "Dawon" } +61087.5 "Scratch" Ability { id: "517B", source: "Dawon" } # Loop! -61100.7 "Ready x4" duration 6.1 #sync / 1[56]:[^:]*:Lyon The Beast King:5191:/ -61110.7 "Obey" sync / 1[56]:[^:]*:Dawon:517D:/ window 90,90 jump 61012.0 +61100.7 "Ready x4" duration 6.1 #Ability { id: "5191", source: "Lyon The Beast King" } +61110.7 "Obey" Ability { id: "517D", source: "Dawon" } window 90,90 jump 61012.0 61112.8 "Swooping Frenzy" 61115.6 "Frigid/Fervid Pulse" 61118.0 "Swooping Frenzy" diff --git a/ui/raidboss/data/05-shb/eureka/delubrum_reginae.txt b/ui/raidboss/data/05-shb/eureka/delubrum_reginae.txt index 1fd63d1dc4..80a364fba4 100644 --- a/ui/raidboss/data/05-shb/eureka/delubrum_reginae.txt +++ b/ui/raidboss/data/05-shb/eureka/delubrum_reginae.txt @@ -18,192 +18,192 @@ hideall "--sync--" # Initial Merciful Air # The Theater of One will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1B:/ window 10000,0 -1012.2 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AB6:/ -1019.4 "First Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B5D:/ -1022.6 "Second Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B5E:/ -1025.8 "Third Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B5F:/ -1029.0 "Fourth Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B60:/ -1031.4 "Mercy Fourfold" #sync / 1[56]:[^:]*:Trinity Seeker:5B34:/ -1033.3 "Mercy Fourfold" #sync / 1[56]:[^:]*:Trinity Seeker:5B34:/ -1035.2 "Mercy Fourfold" #sync / 1[56]:[^:]*:Trinity Seeker:5B34:/ -1037.1 "Mercy Fourfold" #sync / 1[56]:[^:]*:Trinity Seeker:5B34:/ -1047.4 "Merciful Arc" sync / 1[56]:[^:]*:Trinity Seeker:5AB7:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1B" } window 10000,0 +1012.2 "Verdant Tempest" Ability { id: "5AB6", source: "Trinity Seeker" } +1019.4 "First Mercy" Ability { id: "5B5D", source: "Trinity Seeker" } +1022.6 "Second Mercy" Ability { id: "5B5E", source: "Trinity Seeker" } +1025.8 "Third Mercy" Ability { id: "5B5F", source: "Trinity Seeker" } +1029.0 "Fourth Mercy" Ability { id: "5B60", source: "Trinity Seeker" } +1031.4 "Mercy Fourfold" #Ability { id: "5B34", source: "Trinity Seeker" } +1033.3 "Mercy Fourfold" #Ability { id: "5B34", source: "Trinity Seeker" } +1035.2 "Mercy Fourfold" #Ability { id: "5B34", source: "Trinity Seeker" } +1037.1 "Mercy Fourfold" #Ability { id: "5B34", source: "Trinity Seeker" } +1047.4 "Merciful Arc" Ability { id: "5AB7", source: "Trinity Seeker" } # Initial Baleful Air -1056.5 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A98:/ window 80,80 -1064.1 "Baleful Swathe" sync / 1[56]:[^:]*:Trinity Seeker:5AB3:/ -1069.3 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1078.4 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5AA1:/ -1086.6 "Phantom Edge" sync / 1[56]:[^:]*:Trinity Seeker:5AA0:/ -1096.7 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5AA2:/ -1107.8 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AB6:/ +1056.5 "Verdant Path" Ability { id: "5A98", source: "Trinity Seeker" } window 80,80 +1064.1 "Baleful Swathe" Ability { id: "5AB3", source: "Trinity Seeker" } +1069.3 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +1078.4 "Baleful Blade" Ability { id: "5AA1", source: "Trinity Seeker" } +1086.6 "Phantom Edge" Ability { id: "5AA0", source: "Trinity Seeker" } +1096.7 "Baleful Blade" Ability { id: "5AA2", source: "Trinity Seeker" } +1107.8 "Verdant Tempest" Ability { id: "5AB6", source: "Trinity Seeker" } # Initial Iron Air -1117.0 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A99:/ window 80,80 -1126.6 "Iron Impact" sync / 1[56]:[^:]*:Trinity Seeker:5ADB:/ -1131.6 "--jump--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1138.5 "Iron Splitter" sync / 1[56]:[^:]*:Trinity Seeker:5AA3:/ -1141.7 "--jump--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1148.6 "Iron Splitter" sync / 1[56]:[^:]*:Trinity Seeker:5AA3:/ -1159.7 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AB6:/ +1117.0 "Verdant Path" Ability { id: "5A99", source: "Trinity Seeker" } window 80,80 +1126.6 "Iron Impact" Ability { id: "5ADB", source: "Trinity Seeker" } +1131.6 "--jump--" Ability { id: "5A9A", source: "Trinity Seeker" } +1138.5 "Iron Splitter" Ability { id: "5AA3", source: "Trinity Seeker" } +1141.7 "--jump--" Ability { id: "5A9A", source: "Trinity Seeker" } +1148.6 "Iron Splitter" Ability { id: "5AA3", source: "Trinity Seeker" } +1159.7 "Verdant Tempest" Ability { id: "5AB6", source: "Trinity Seeker" } 1168.9 "Verdant Path" # -> baleful / merciful jump # (Baleful jump?) -1168.9 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A98:/ jump 1300 window 80,80 -1176.5 "Baleful Swathe?" #sync / 1[56]:[^:]*:Trinity Seeker:5AB3:/ -1186.7 "Phantom Edge?" #sync / 1[56]:[^:]*:Trinity Seeker:5AA0:/ -1188.9 "--sync--" #sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1198.0 "Baleful Blade?" #sync / 1[56]:[^:]*:Trinity Seeker:5AA[12]:/ +1168.9 "--sync--" Ability { id: "5A98", source: "Trinity Seeker" } jump 1300 window 80,80 +1176.5 "Baleful Swathe?" #Ability { id: "5AB3", source: "Trinity Seeker" } +1186.7 "Phantom Edge?" #Ability { id: "5AA0", source: "Trinity Seeker" } +1188.9 "--sync--" #Ability { id: "5A9A", source: "Trinity Seeker" } +1198.0 "Baleful Blade?" #Ability { id: "5AA[12]", source: "Trinity Seeker" } # (Merciful jump?) -1168.9 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A97:/ jump 1500 window 80,80 -1176.5 "Act Of Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5AB2:/ -1183.7 "First Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5D:/ -1186.9 "Second Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5E:/ -1190.1 "Third Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5F:/ -1193.3 "Fourth Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B60:/ +1168.9 "--sync--" Ability { id: "5A97", source: "Trinity Seeker" } jump 1500 window 80,80 +1176.5 "Act Of Mercy?" #Ability { id: "5AB2", source: "Trinity Seeker" } +1183.7 "First Mercy?" #Ability { id: "5B5D", source: "Trinity Seeker" } +1186.9 "Second Mercy?" #Ability { id: "5B5E", source: "Trinity Seeker" } +1190.1 "Third Mercy?" #Ability { id: "5B5F", source: "Trinity Seeker" } +1193.3 "Fourth Mercy?" #Ability { id: "5B60", source: "Trinity Seeker" } # Baleful Air v2 (randomized, with chains) -1300.0 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A98:/ -1307.6 "Baleful Swathe" sync / 1[56]:[^:]*:Trinity Seeker:5AB3:/ -1317.8 "Phantom Edge?" sync / 1[56]:[^:]*:Trinity Seeker:5AA0:/ -1320.0 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1329.1 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5AA[12]:/ -1339.3 "Phantom Edge?" sync / 1[56]:[^:]*:Trinity Seeker:5AA0:/ -1341.5 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1350.6 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5AA[12]:/ -1361.7 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AB6:/ +1300.0 "Verdant Path" Ability { id: "5A98", source: "Trinity Seeker" } +1307.6 "Baleful Swathe" Ability { id: "5AB3", source: "Trinity Seeker" } +1317.8 "Phantom Edge?" Ability { id: "5AA0", source: "Trinity Seeker" } +1320.0 "--sync--" Ability { id: "5A9A", source: "Trinity Seeker" } +1329.1 "Baleful Blade" Ability { id: "5AA[12]", source: "Trinity Seeker" } +1339.3 "Phantom Edge?" Ability { id: "5AA0", source: "Trinity Seeker" } +1341.5 "--sync--" Ability { id: "5A9A", source: "Trinity Seeker" } +1350.6 "Baleful Blade" Ability { id: "5AA[12]", source: "Trinity Seeker" } +1361.7 "Verdant Tempest" Ability { id: "5AB6", source: "Trinity Seeker" } 1370.9 "Verdant Path" # -> iron / merciful jump # (Iron jump?) -1370.9 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A99:/ jump 1700 window 80,80 -1380.5 "Iron Impact?" #sync / 1[56]:[^:]*:Trinity Seeker:5ADB:/ -1390.5 "Dead Iron?" #sync / 1[56]:[^:]*:Trinity Seeker:5AAF:/ -1397.7 "Dead Iron?" #sync / 1[56]:[^:]*:Trinity Seeker:5B44:/ +1370.9 "--sync--" Ability { id: "5A99", source: "Trinity Seeker" } jump 1700 window 80,80 +1380.5 "Iron Impact?" #Ability { id: "5ADB", source: "Trinity Seeker" } +1390.5 "Dead Iron?" #Ability { id: "5AAF", source: "Trinity Seeker" } +1397.7 "Dead Iron?" #Ability { id: "5B44", source: "Trinity Seeker" } # (Merciful jump?) -1370.9 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A97:/ jump 1500 window 80,80 -1378.5 "Act Of Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5AB2:/ -1385.7 "First Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5D:/ -1388.9 "Second Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5E:/ -1392.1 "Third Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5F:/ -1395.3 "Fourth Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B60:/ +1370.9 "--sync--" Ability { id: "5A97", source: "Trinity Seeker" } jump 1500 window 80,80 +1378.5 "Act Of Mercy?" #Ability { id: "5AB2", source: "Trinity Seeker" } +1385.7 "First Mercy?" #Ability { id: "5B5D", source: "Trinity Seeker" } +1388.9 "Second Mercy?" #Ability { id: "5B5E", source: "Trinity Seeker" } +1392.1 "Third Mercy?" #Ability { id: "5B5F", source: "Trinity Seeker" } +1395.3 "Fourth Mercy?" #Ability { id: "5B60", source: "Trinity Seeker" } # Merciful Air v2 (with seasons of mercy)) -1500.0 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A97:/ -1507.6 "Act Of Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5AB2:/ -1514.8 "First Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B5D:/ -1518.0 "Second Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B5E:/ -1521.2 "Third Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B5F:/ -1524.4 "Fourth Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B60:/ -1526.8 "Mercy Fourfold" #sync / 1[56]:[^:]*:Trinity Seeker:5B34:/ -1528.7 "Mercy Fourfold" #sync / 1[56]:[^:]*:Trinity Seeker:5B34:/ -1530.6 "Mercy Fourfold" #sync / 1[56]:[^:]*:Trinity Seeker:5B34:/ -1532.5 "Mercy Fourfold" #sync / 1[56]:[^:]*:Trinity Seeker:5B34:/ -1540.7 "Seasons Of Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5AAA:/ -1545.2 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AAB:/ -1545.2 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AAB:/ -1547.7 "Merciful Moon" sync / 1[56]:[^:]*:Aetherial Orb:5AAC:/ -1549.3 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AAB:/ -1549.3 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AAB:/ -1552.7 "Merciful Blooms" sync / 1[56]:[^:]*:Trinity Seeker:5AAD:/ -1559.9 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AB6:/ -1569.1 "Merciful Arc" sync / 1[56]:[^:]*:Trinity Seeker:5AB7:/ +1500.0 "Verdant Path" Ability { id: "5A97", source: "Trinity Seeker" } +1507.6 "Act Of Mercy" Ability { id: "5AB2", source: "Trinity Seeker" } +1514.8 "First Mercy" Ability { id: "5B5D", source: "Trinity Seeker" } +1518.0 "Second Mercy" Ability { id: "5B5E", source: "Trinity Seeker" } +1521.2 "Third Mercy" Ability { id: "5B5F", source: "Trinity Seeker" } +1524.4 "Fourth Mercy" Ability { id: "5B60", source: "Trinity Seeker" } +1526.8 "Mercy Fourfold" #Ability { id: "5B34", source: "Trinity Seeker" } +1528.7 "Mercy Fourfold" #Ability { id: "5B34", source: "Trinity Seeker" } +1530.6 "Mercy Fourfold" #Ability { id: "5B34", source: "Trinity Seeker" } +1532.5 "Mercy Fourfold" #Ability { id: "5B34", source: "Trinity Seeker" } +1540.7 "Seasons Of Mercy" Ability { id: "5AAA", source: "Trinity Seeker" } +1545.2 "Merciful Breeze" Ability { id: "5AAB", source: "Trinity Seeker" } +1545.2 "Merciful Breeze" Ability { id: "5AAB", source: "Trinity Seeker" } +1547.7 "Merciful Moon" Ability { id: "5AAC", source: "Aetherial Orb" } +1549.3 "Merciful Breeze" Ability { id: "5AAB", source: "Trinity Seeker" } +1549.3 "Merciful Breeze" Ability { id: "5AAB", source: "Trinity Seeker" } +1552.7 "Merciful Blooms" Ability { id: "5AAD", source: "Trinity Seeker" } +1559.9 "Verdant Tempest" Ability { id: "5AB6", source: "Trinity Seeker" } +1569.1 "Merciful Arc" Ability { id: "5AB7", source: "Trinity Seeker" } 1576.2 "Verdant Path" # -> baleful / iron jump # (Baleful jump?) -1576.2 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A98:/ jump 1300 window 80,80 -1583.8 "Baleful Swathe?" #sync / 1[56]:[^:]*:Trinity Seeker:5AB3:/ -1594.0 "Phantom Edge?" #sync / 1[56]:[^:]*:Trinity Seeker:5AA0:/ -1596.2 "--sync--" #sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1605.3 "Baleful Blade?" #sync / 1[56]:[^:]*:Trinity Seeker:5AA[12]:/ +1576.2 "--sync--" Ability { id: "5A98", source: "Trinity Seeker" } jump 1300 window 80,80 +1583.8 "Baleful Swathe?" #Ability { id: "5AB3", source: "Trinity Seeker" } +1594.0 "Phantom Edge?" #Ability { id: "5AA0", source: "Trinity Seeker" } +1596.2 "--sync--" #Ability { id: "5A9A", source: "Trinity Seeker" } +1605.3 "Baleful Blade?" #Ability { id: "5AA[12]", source: "Trinity Seeker" } # (Iron jump?) -1576.2 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A99:/ jump 1700 window 80,80 -1585.8 "Iron Impact?" #sync / 1[56]:[^:]*:Trinity Seeker:5ADB:/ -1595.8 "Dead Iron?" #sync / 1[56]:[^:]*:Trinity Seeker:5AAF:/ -1603.0 "Dead Iron?" #sync / 1[56]:[^:]*:Trinity Seeker:5B44:/ +1576.2 "--sync--" Ability { id: "5A99", source: "Trinity Seeker" } jump 1700 window 80,80 +1585.8 "Iron Impact?" #Ability { id: "5ADB", source: "Trinity Seeker" } +1595.8 "Dead Iron?" #Ability { id: "5AAF", source: "Trinity Seeker" } +1603.0 "Dead Iron?" #Ability { id: "5B44", source: "Trinity Seeker" } # Iron Air v2 (with iron impact / dead iron) -1700.0 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A99:/ -1709.6 "Iron Impact" sync / 1[56]:[^:]*:Trinity Seeker:5ADB:/ -1719.6 "Dead Iron" sync / 1[56]:[^:]*:Trinity Seeker:5AAF:/ -1726.8 "Dead Iron" sync / 1[56]:[^:]*:Trinity Seeker:5B44:/ -1732.0 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1738.7 "Iron Splitter" sync / 1[56]:[^:]*:Trinity Seeker:5AA3:/ -1740.9 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1747.0 "Iron Splitter" sync / 1[56]:[^:]*:Trinity Seeker:5AA3:/ -1758.1 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AB6:/ +1700.0 "Verdant Path" Ability { id: "5A99", source: "Trinity Seeker" } +1709.6 "Iron Impact" Ability { id: "5ADB", source: "Trinity Seeker" } +1719.6 "Dead Iron" Ability { id: "5AAF", source: "Trinity Seeker" } +1726.8 "Dead Iron" Ability { id: "5B44", source: "Trinity Seeker" } +1732.0 "--sync--" Ability { id: "5A9A", source: "Trinity Seeker" } +1738.7 "Iron Splitter" Ability { id: "5AA3", source: "Trinity Seeker" } +1740.9 "--sync--" Ability { id: "5A9A", source: "Trinity Seeker" } +1747.0 "Iron Splitter" Ability { id: "5AA3", source: "Trinity Seeker" } +1758.1 "Verdant Tempest" Ability { id: "5AB6", source: "Trinity Seeker" } 1767.3 "Verdant Path" # -> baleful / merciful jump # (Baleful jump?) -1767.3 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A98:/ jump 1300 window 80,80 -1774.9 "Baleful Swathe?" #sync / 1[56]:[^:]*:Trinity Seeker:5AB3:/ -1785.1 "Phantom Edge?" #sync / 1[56]:[^:]*:Trinity Seeker:5AA0:/ -1787.3 "--sync--" #sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -1796.4 "Baleful Blade?" #sync / 1[56]:[^:]*:Trinity Seeker:5AA[12]:/ +1767.3 "--sync--" Ability { id: "5A98", source: "Trinity Seeker" } jump 1300 window 80,80 +1774.9 "Baleful Swathe?" #Ability { id: "5AB3", source: "Trinity Seeker" } +1785.1 "Phantom Edge?" #Ability { id: "5AA0", source: "Trinity Seeker" } +1787.3 "--sync--" #Ability { id: "5A9A", source: "Trinity Seeker" } +1796.4 "Baleful Blade?" #Ability { id: "5AA[12]", source: "Trinity Seeker" } # (Merciful jump?) -1767.3 "--sync--" sync / 1[56]:[^:]*:Trinity Seeker:5A97:/ jump 1500 window 80,80 -1774.9 "Act Of Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5AB2:/ -1782.1 "First Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5D:/ -1785.3 "Second Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5E:/ -1788.5 "Third Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B5F:/ -1791.7 "Fourth Mercy?" #sync / 1[56]:[^:]*:Trinity Seeker:5B60:/ +1767.3 "--sync--" Ability { id: "5A97", source: "Trinity Seeker" } jump 1500 window 80,80 +1774.9 "Act Of Mercy?" #Ability { id: "5AB2", source: "Trinity Seeker" } +1782.1 "First Mercy?" #Ability { id: "5B5D", source: "Trinity Seeker" } +1785.3 "Second Mercy?" #Ability { id: "5B5E", source: "Trinity Seeker" } +1788.5 "Third Mercy?" #Ability { id: "5B5F", source: "Trinity Seeker" } +1791.7 "Fourth Mercy?" #Ability { id: "5B60", source: "Trinity Seeker" } ### Dahu # -p 5755:2023 # -ii 575A 575C # The Hall of Supplication will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1D:/ window 10000,0 -2007.0 "--sync--" sync / 14:[^:]*:Dahu:576[12]:/ window 10,2 -2010.0 "Right-Sided Shockwave/Left-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:576[12]:/ -2012.6 "Left-Sided Shockwave/Right-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:576[12]:/ -2023.0 "Feral Howl" sync / 1[56]:[^:]*:Dahu:5755:/ window 30,10 -2033.4 "Firebreathe" sync / 1[56]:[^:]*:Dahu:5765:/ -2045.7 "--sync--" sync / 1[56]:[^:]*:Marchosias:5758:/ -2051.9 "Head Down" sync / 1[56]:[^:]*:Marchosias:5756:/ -2058.8 "Head Down" sync / 1[56]:[^:]*:Marchosias:5756:/ -2065.3 "Feral Howl" sync / 1[56]:[^:]*:Dahu:5755:/ -2068.8 "Hunter's Claw" sync / 1[56]:[^:]*:Marchosias:5757:/ -2075.5 "Firebreathe x5" sync / 1[56]:[^:]*:Dahu:5759:/ duration 8.7 -2091.5 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:575B:/ -2105.0 "Hot Charge" sync / 1[56]:[^:]*:Dahu:5764:/ -2109.8 "Hot Charge" sync / 1[56]:[^:]*:Dahu:5764:/ - -2116.6 "Firebreathe" sync / 1[56]:[^:]*:Dahu:5765:/ -2129.8 "--sync--" sync / 1[56]:[^:]*:Marchosias:5758:/ -2130.8 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:575B:/ -2136.1 "Head Down" sync / 1[56]:[^:]*:Marchosias:5756:/ -2142.8 "Head Down" sync / 1[56]:[^:]*:Marchosias:5756:/ -2149.0 "Right-Sided Shockwave/Left-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:576[12]:/ -2149.5 "Head Down" sync / 1[56]:[^:]*:Marchosias:5756:/ -2151.5 "Left-Sided Shockwave/Right-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:576[12]:/ -2156.2 "Head Down" sync / 1[56]:[^:]*:Marchosias:5756:/ -2162.7 "Feral Howl" sync / 1[56]:[^:]*:Dahu:5755:/ -2166.2 "Hunter's Claw" sync / 1[56]:[^:]*:Marchosias:5757:/ -2172.9 "Firebreathe x5" sync / 1[56]:[^:]*:Dahu:5759:/ -2195.1 "Heat Breath" sync / 1[56]:[^:]*:Dahu:5766:/ -2205.7 "Tail Swing" sync / 1[56]:[^:]*:Dahu:575F:/ -2217.9 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:575B:/ -2231.8 "Hot Charge" sync / 1[56]:[^:]*:Dahu:5764:/ -2236.7 "Hot Charge" sync / 1[56]:[^:]*:Dahu:5764:/ - -2243.6 "Firebreathe" sync / 1[56]:[^:]*:Dahu:5765:/ window 50,50 jump 2116.6 -2256.8 "--sync--" #sync / 1[56]:[^:]*:Marchosias:5758:/ -2257.8 "Reverberating Roar" #sync / 1[56]:[^:]*:Dahu:575B:/ -2263.1 "Head Down" #sync / 1[56]:[^:]*:Marchosias:5756:/ -2269.8 "Head Down" #sync / 1[56]:[^:]*:Marchosias:5756:/ -2276.0 "Right-Sided Shockwave/Left-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:576[12]:/ -2276.5 "Head Down" #sync / 1[56]:[^:]*:#Marchosias:5756:/ -2278.5 "Left-Sided Shockwave/Right-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:576[12]:/ -2283.2 "Head Down" #sync / 1[56]:[^:]*:Marchosias:5756:/ -2289.7 "Feral Howl" #sync / 1[56]:[^:]*:Dahu:5755:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1D" } window 10000,0 +2007.0 "--sync--" StartsUsing { id: "576[12]", source: "Dahu" } window 10,2 +2010.0 "Right-Sided Shockwave/Left-Sided Shockwave" #Ability { id: "576[12]", source: "Dahu" } +2012.6 "Left-Sided Shockwave/Right-Sided Shockwave" #Ability { id: "576[12]", source: "Dahu" } +2023.0 "Feral Howl" Ability { id: "5755", source: "Dahu" } window 30,10 +2033.4 "Firebreathe" Ability { id: "5765", source: "Dahu" } +2045.7 "--sync--" Ability { id: "5758", source: "Marchosias" } +2051.9 "Head Down" Ability { id: "5756", source: "Marchosias" } +2058.8 "Head Down" Ability { id: "5756", source: "Marchosias" } +2065.3 "Feral Howl" Ability { id: "5755", source: "Dahu" } +2068.8 "Hunter's Claw" Ability { id: "5757", source: "Marchosias" } +2075.5 "Firebreathe x5" Ability { id: "5759", source: "Dahu" } duration 8.7 +2091.5 "Reverberating Roar" Ability { id: "575B", source: "Dahu" } +2105.0 "Hot Charge" Ability { id: "5764", source: "Dahu" } +2109.8 "Hot Charge" Ability { id: "5764", source: "Dahu" } + +2116.6 "Firebreathe" Ability { id: "5765", source: "Dahu" } +2129.8 "--sync--" Ability { id: "5758", source: "Marchosias" } +2130.8 "Reverberating Roar" Ability { id: "575B", source: "Dahu" } +2136.1 "Head Down" Ability { id: "5756", source: "Marchosias" } +2142.8 "Head Down" Ability { id: "5756", source: "Marchosias" } +2149.0 "Right-Sided Shockwave/Left-Sided Shockwave" #Ability { id: "576[12]", source: "Dahu" } +2149.5 "Head Down" Ability { id: "5756", source: "Marchosias" } +2151.5 "Left-Sided Shockwave/Right-Sided Shockwave" #Ability { id: "576[12]", source: "Dahu" } +2156.2 "Head Down" Ability { id: "5756", source: "Marchosias" } +2162.7 "Feral Howl" Ability { id: "5755", source: "Dahu" } +2166.2 "Hunter's Claw" Ability { id: "5757", source: "Marchosias" } +2172.9 "Firebreathe x5" Ability { id: "5759", source: "Dahu" } +2195.1 "Heat Breath" Ability { id: "5766", source: "Dahu" } +2205.7 "Tail Swing" Ability { id: "575F", source: "Dahu" } +2217.9 "Reverberating Roar" Ability { id: "575B", source: "Dahu" } +2231.8 "Hot Charge" Ability { id: "5764", source: "Dahu" } +2236.7 "Hot Charge" Ability { id: "5764", source: "Dahu" } + +2243.6 "Firebreathe" Ability { id: "5765", source: "Dahu" } window 50,50 jump 2116.6 +2256.8 "--sync--" #Ability { id: "5758", source: "Marchosias" } +2257.8 "Reverberating Roar" #Ability { id: "575B", source: "Dahu" } +2263.1 "Head Down" #Ability { id: "5756", source: "Marchosias" } +2269.8 "Head Down" #Ability { id: "5756", source: "Marchosias" } +2276.0 "Right-Sided Shockwave/Left-Sided Shockwave" #Ability { id: "576[12]", source: "Dahu" } +2276.5 "Head Down" #Ability { id: "5756", source: "#Marchosias" } +2278.5 "Left-Sided Shockwave/Right-Sided Shockwave" #Ability { id: "576[12]", source: "Dahu" } +2283.2 "Head Down" #Ability { id: "5756", source: "Marchosias" } +2289.7 "Feral Howl" #Ability { id: "5755", source: "Dahu" } ### Queen's Guard @@ -213,9 +213,9 @@ hideall "--sync--" # All four (just autos) -> randomly each individually -> final phase with aetherial wards # The Hall of Hieromancy will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1E:/ window 10000,0 +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1E" } window 10000,0 # ranged auto should be reasonably timed -3002.5 "--sync--" sync / 1[56]:[^:]*:Queen's Gunner:5857:/ window 3,1 +3002.5 "--sync--" Ability { id: "5857", source: "Queen's Gunner" } window 3,1 # can't sync this untargetable as the mobs will hop away sooner if they are damaged enough. 3025.7 "--untargetable--" 3028.7 "--targetable--" @@ -226,143 +226,143 @@ hideall "--sync--" # We can't have huge syncs on these because many of these are used # multiple times. So, 22 lines get huge syncs and ability lines # get more local windows here and in each block. -3036.8 "--sync--" sync / 14:[^:]*:Queen's Soldier:5805:/ window 50,50 jump 3108.1 -3039.8 "Double Gambit?" #sync / 1[56]:[^:]*:Queen's Soldier:5805:/ +3036.8 "--sync--" StartsUsing { id: "5805", source: "Queen's Soldier" } window 50,50 jump 3108.1 +3039.8 "Double Gambit?" #Ability { id: "5805", source: "Queen's Soldier" } -3036.8 "--sync--" sync / 14:[^:]*:Queen's Gunner:580B:/ window 50,50 jump 3308.1 -3039.8 "Automatic Turret?" #sync / 1[56]:[^:]*:Queen's Gunner:580B:/ +3036.8 "--sync--" StartsUsing { id: "580B", source: "Queen's Gunner" } window 50,50 jump 3308.1 +3039.8 "Automatic Turret?" #Ability { id: "580B", source: "Queen's Gunner" } -3036.8 "--sync--" sync / 14:[^:]*:Queen's Warrior:5AFD:/ window 50,50 jump 3508.1 -3039.8 "Bombslinger?" #sync / 1[56]:[^:]*:Queen's Warrior:5AFD:/ +3036.8 "--sync--" StartsUsing { id: "5AFD", source: "Queen's Warrior" } window 50,50 jump 3508.1 +3039.8 "Bombslinger?" #Ability { id: "5AFD", source: "Queen's Warrior" } -3036.8 "--sync--" sync / 14:[^:]*:Queen's Knight:57F[01]:/ window 50,50 jump 3708.1 -3039.8 "Shield Omen/Sword Omen?" #sync / 1[56]:[^:]*:Queen's Knight:57F[01]:/ +3036.8 "--sync--" StartsUsing { id: "57F[01]", source: "Queen's Knight" } window 50,50 jump 3708.1 +3039.8 "Shield Omen/Sword Omen?" #Ability { id: "57F[01]", source: "Queen's Knight" } # Queen's Soldier # (local jumps to other blocks) -3100.0 "--sync--" sync / 14:[^:]*:Queen's Gunner:580B:/ window 0,200 jump 3308.1 -3100.0 "--sync--" sync / 14:[^:]*:Queen's Warrior:5AFD:/ window 0,200 jump 3508.1 -3100.0 "--sync--" sync / 14:[^:]*:Queen's Knight:57F[01]:/ window 0,200 jump 3708.1 - -3100.0 "--targetable--" sync / 22:........:Queen's Soldier:........:Queen's Soldier:01/ window 500,500 -3108.1 "--sync--" sync / 14:[^:]*:Queen's Soldier:5805:/ window 10,10 -3111.1 "Double Gambit" sync / 1[56]:[^:]*:Queen's Soldier:5805:/ -3119.3 "Secrets Revealed" sync / 1[56]:[^:]*:Queen's Soldier:5B6E:/ -3130.6 "Pawn Off" sync / 1[56]:[^:]*:Soldier Avatar:5807:/ -3142.4 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Soldier:5809:/ - -3149.6 "Double Gambit" sync / 1[56]:[^:]*:Queen's Soldier:5805:/ -3157.8 "Secrets Revealed" sync / 1[56]:[^:]*:Queen's Soldier:5B6E:/ -3175.2 "Pawn Off" sync / 1[56]:[^:]*:Soldier Avatar:5807:/ -3187.0 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5808:/ -3197.2 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Soldier:5809:/ +3100.0 "--sync--" StartsUsing { id: "580B", source: "Queen's Gunner" } window 0,200 jump 3308.1 +3100.0 "--sync--" StartsUsing { id: "5AFD", source: "Queen's Warrior" } window 0,200 jump 3508.1 +3100.0 "--sync--" StartsUsing { id: "57F[01]", source: "Queen's Knight" } window 0,200 jump 3708.1 + +3100.0 "--targetable--" NameToggle { name: "Queen's Soldier", toggle: "01" } window 500,500 +3108.1 "--sync--" StartsUsing { id: "5805", source: "Queen's Soldier" } window 10,10 +3111.1 "Double Gambit" Ability { id: "5805", source: "Queen's Soldier" } +3119.3 "Secrets Revealed" Ability { id: "5B6E", source: "Queen's Soldier" } +3130.6 "Pawn Off" Ability { id: "5807", source: "Soldier Avatar" } +3142.4 "Rapid Sever" Ability { id: "5809", source: "Queen's Soldier" } + +3149.6 "Double Gambit" Ability { id: "5805", source: "Queen's Soldier" } +3157.8 "Secrets Revealed" Ability { id: "5B6E", source: "Queen's Soldier" } +3175.2 "Pawn Off" Ability { id: "5807", source: "Soldier Avatar" } +3187.0 "Blood And Bone" Ability { id: "5808", source: "Queen's Soldier" } +3197.2 "Rapid Sever" Ability { id: "5809", source: "Queen's Soldier" } # (probably a loop, as this has more jumping) -3204.5 "Double Gambit" sync / 1[56]:[^:]*:Queen's Soldier:5805:/ window 30,30 jump 3149.6 -3212.7 "Secrets Revealed" #sync / 1[56]:[^:]*:Queen's Soldier:5B6E:/ -3230.1 "Pawn Off" #sync / 1[56]:[^:]*:Soldier Avatar:5807:/ -3241.9 "Blood And Bone" #sync / 1[56]:[^:]*:Queen's Soldier:5808:/ -3252.1 "Rapid Sever" #sync / 1[56]:[^:]*:Queen's Soldier:5809:/ +3204.5 "Double Gambit" Ability { id: "5805", source: "Queen's Soldier" } window 30,30 jump 3149.6 +3212.7 "Secrets Revealed" #Ability { id: "5B6E", source: "Queen's Soldier" } +3230.1 "Pawn Off" #Ability { id: "5807", source: "Soldier Avatar" } +3241.9 "Blood And Bone" #Ability { id: "5808", source: "Queen's Soldier" } +3252.1 "Rapid Sever" #Ability { id: "5809", source: "Queen's Soldier" } # Queen's Gunner # (local jumps to other blocks) -3300.0 "--sync--" sync / 14:[^:]*:Queen's Soldier:5805:/ window 0,200 jump 3108.1 -3300.0 "--sync--" sync / 14:[^:]*:Queen's Warrior:5AFD:/ window 0,200 jump 3508.1 -3300.0 "--sync--" sync / 14:[^:]*:Queen's Knight:57F[01]:/ window 0,200 jump 3708.1 - -3300.0 "--targetable--" sync / 22:........:Queen's Gunner:........:Queen's Gunner:01/ window 500,500 -3308.1 "--sync--" sync / 14:[^:]*:Queen's Gunner:580B:/ window 10,10 -3311.1 "Automatic Turret" sync / 1[56]:[^:]*:Queen's Gunner:580B:/ -3319.2 "Turret's Tour" sync / 1[56]:[^:]*:Queen's Gunner:580C:/ -3319.8 "Turret's Tour" sync / 1[56]:[^:]*:Automatic Turret:580E:/ -3320.3 "Turret's Tour" sync / 1[56]:[^:]*:Automatic Turret:580F:/ - -3329.3 "Queen's Shot" sync / 1[56]:[^:]*:Queen's Gunner:5810:/ -3337.4 "Automatic Turret" sync / 1[56]:[^:]*:Queen's Gunner:580B:/ -3345.6 "Turret's Tour" sync / 1[56]:[^:]*:Queen's Gunner:580C:/ -3346.2 "Turret's Tour" sync / 1[56]:[^:]*:Automatic Turret:580E:/ -3355.7 "Shot In The Dark" sync / 1[56]:[^:]*:Queen's Gunner:5811:/ +3300.0 "--sync--" StartsUsing { id: "5805", source: "Queen's Soldier" } window 0,200 jump 3108.1 +3300.0 "--sync--" StartsUsing { id: "5AFD", source: "Queen's Warrior" } window 0,200 jump 3508.1 +3300.0 "--sync--" StartsUsing { id: "57F[01]", source: "Queen's Knight" } window 0,200 jump 3708.1 + +3300.0 "--targetable--" NameToggle { name: "Queen's Gunner", toggle: "01" } window 500,500 +3308.1 "--sync--" StartsUsing { id: "580B", source: "Queen's Gunner" } window 10,10 +3311.1 "Automatic Turret" Ability { id: "580B", source: "Queen's Gunner" } +3319.2 "Turret's Tour" Ability { id: "580C", source: "Queen's Gunner" } +3319.8 "Turret's Tour" Ability { id: "580E", source: "Automatic Turret" } +3320.3 "Turret's Tour" Ability { id: "580F", source: "Automatic Turret" } + +3329.3 "Queen's Shot" Ability { id: "5810", source: "Queen's Gunner" } +3337.4 "Automatic Turret" Ability { id: "580B", source: "Queen's Gunner" } +3345.6 "Turret's Tour" Ability { id: "580C", source: "Queen's Gunner" } +3346.2 "Turret's Tour" Ability { id: "580E", source: "Automatic Turret" } +3355.7 "Shot In The Dark" Ability { id: "5811", source: "Queen's Gunner" } # (probably a loop?) -3364.9 "Queen's Shot" sync / 1[56]:[^:]*:Queen's Gunner:5810:/ window 20,20 jump 3329.3 -3373.0 "Automatic Turret" #sync / 1[56]:[^:]*:Queen's Gunner:580B:/ -3381.2 "Turret's Tour" #sync / 1[56]:[^:]*:Queen's Gunner:580C:/ -3381.8 "Turret's Tour" #sync / 1[56]:[^:]*:Automatic Turret:580E:/ -3391.3 "Shot In The Dark" #sync / 1[56]:[^:]*:Queen's Gunner:5811:/ +3364.9 "Queen's Shot" Ability { id: "5810", source: "Queen's Gunner" } window 20,20 jump 3329.3 +3373.0 "Automatic Turret" #Ability { id: "580B", source: "Queen's Gunner" } +3381.2 "Turret's Tour" #Ability { id: "580C", source: "Queen's Gunner" } +3381.8 "Turret's Tour" #Ability { id: "580E", source: "Automatic Turret" } +3391.3 "Shot In The Dark" #Ability { id: "5811", source: "Queen's Gunner" } # Queen's Warrior # (local jumps to other blocks) -3500.0 "--sync--" sync / 14:[^:]*:Queen's Soldier:5805:/ window 0,200 jump 3108.1 -3500.0 "--sync--" sync / 14:[^:]*:Queen's Gunner:580B:/ window 0,200 jump 3308.1 -3500.0 "--sync--" sync / 14:[^:]*:Queen's Knight:57F[01]:/ window 0,200 jump 3708.1 - -3500.0 "--targetable--" sync / 22:........:Queen's Warrior:........:Queen's Warrior:01/ window 500,500 -3508.1 "--sync--" sync / 14:[^:]*:Queen's Warrior:5AFD:/ window 10,10 -3511.1 "Bombslinger" sync / 1[56]:[^:]*:Queen's Warrior:5AFD:/ -3520.2 "Above Board" sync / 1[56]:[^:]*:Queen's Warrior:57FC:/ +3500.0 "--sync--" StartsUsing { id: "5805", source: "Queen's Soldier" } window 0,200 jump 3108.1 +3500.0 "--sync--" StartsUsing { id: "580B", source: "Queen's Gunner" } window 0,200 jump 3308.1 +3500.0 "--sync--" StartsUsing { id: "57F[01]", source: "Queen's Knight" } window 0,200 jump 3708.1 + +3500.0 "--targetable--" NameToggle { name: "Queen's Warrior", toggle: "01" } window 500,500 +3508.1 "--sync--" StartsUsing { id: "5AFD", source: "Queen's Warrior" } window 10,10 +3511.1 "Bombslinger" Ability { id: "5AFD", source: "Queen's Warrior" } +3520.2 "Above Board" Ability { id: "57FC", source: "Queen's Warrior" } 3521.2 "--stunned--" -3523.2 "Lots Cast" sync / 1[56]:[^:]*:Aetherial Burst:5B6B:/ -3526.2 "Lots Cast" sync / 1[56]:[^:]*:Aetherial Bolt:5B6A:/ +3523.2 "Lots Cast" Ability { id: "5B6B", source: "Aetherial Burst" } +3526.2 "Lots Cast" Ability { id: "5B6A", source: "Aetherial Bolt" } 3527.9 "--unstunned--" -3536.5 "Bombslinger" sync / 1[56]:[^:]*:Queen's Warrior:5AFD:/ window 10,10 -3543.6 "Reversal Of Forces" sync / 1[56]:[^:]*:Queen's Warrior:57FF:/ -3552.7 "Above Board" sync / 1[56]:[^:]*:Queen's Warrior:57FC:/ +3536.5 "Bombslinger" Ability { id: "5AFD", source: "Queen's Warrior" } window 10,10 +3543.6 "Reversal Of Forces" Ability { id: "57FF", source: "Queen's Warrior" } +3552.7 "Above Board" Ability { id: "57FC", source: "Queen's Warrior" } 3553.7 "--stunned--" -3555.7 "Lots Cast" sync / 1[56]:[^:]*:Aetherial Bolt:57FE:/ -3558.7 "Lots Cast" sync / 1[56]:[^:]*:Aetherial Burst:57FD:/ +3555.7 "Lots Cast" Ability { id: "57FE", source: "Aetherial Bolt" } +3558.7 "Lots Cast" Ability { id: "57FD", source: "Aetherial Burst" } 3559.4 "--unstunned--" -3567.8 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5800:/ -3578.0 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5800:/ +3567.8 "Blood And Bone" Ability { id: "5800", source: "Queen's Warrior" } +3578.0 "Blood And Bone" Ability { id: "5800", source: "Queen's Warrior" } # FIXME: is this a loop back to the beginning? # The Bombslinger/Above Board timings don't seem like there can fit # an optional Reversal Of Forces here, but not clear if this is random. -3586.2 "Bombslinger" sync / 1[56]:[^:]*:Queen's Warrior:5AFD:/ window 30,30 jump 3511.1 -3595.3 "Above Board" #sync / 1[56]:[^:]*:Queen's Warrior:57FC:/ +3586.2 "Bombslinger" Ability { id: "5AFD", source: "Queen's Warrior" } window 30,30 jump 3511.1 +3595.3 "Above Board" #Ability { id: "57FC", source: "Queen's Warrior" } 3596.3 "--stunned--" -3598.3 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Burst:5B6B:/ -3601.3 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Bolt:5B6A:/ +3598.3 "Lots Cast" #Ability { id: "5B6B", source: "Aetherial Burst" } +3601.3 "Lots Cast" #Ability { id: "5B6A", source: "Aetherial Bolt" } 3603.0 "--unstunned--" -3614.6 "Bombslinger" #sync / 1[56]:[^:]*:Queen's Warrior:5AFD:/ -3621.7 "Reversal Of Forces" #sync / 1[56]:[^:]*:Queen's Warrior:57FF:/ +3614.6 "Bombslinger" #Ability { id: "5AFD", source: "Queen's Warrior" } +3621.7 "Reversal Of Forces" #Ability { id: "57FF", source: "Queen's Warrior" } # Queen's Knight # (local jumps to other blocks) -3700.0 "--sync--" sync / 14:[^:]*:Queen's Soldier:5805:/ window 0,200 jump 3108.1 -3700.0 "--sync--" sync / 14:[^:]*:Queen's Gunner:580B:/ window 0,200 jump 3308.1 -3700.0 "--sync--" sync / 14:[^:]*:Queen's Warrior:5AFD:/ window 0,200 jump 3508.1 - -3700.0 "--targetable--" sync / 22:........:Queen's Knight:........:Queen's Knight:01/ window 500,500 -3708.1 "--sync--" sync / 14:[^:]*:Queen's Knight:57F[01]:/ window 10,10 -3711.1 "Shield Omen/Sword Omen" sync / 1[56]:[^:]*:Queen's Knight:57F[01]:/ -3719.3 "Optimal Play" sync / 1[56]:[^:]*:Queen's Knight:57F4:/ -3727.5 "Sword Omen/Shield Omen" sync / 1[56]:[^:]*:Queen's Knight:57F[01]:/ -3735.7 "Optimal Play" sync / 1[56]:[^:]*:Queen's Knight:57F4:/ - -3746.9 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Knight:57FB:/ -3756.1 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Knight:57FA:/ -3764.3 "Shield Omen/Sword Omen" sync / 1[56]:[^:]*:Queen's Knight:57F[01]:/ -3772.5 "Optimal Play" sync / 1[56]:[^:]*:Queen's Knight:57F4:/ -3780.7 "Sword Omen/Shield Omen" sync / 1[56]:[^:]*:Queen's Knight:57F[01]:/ -3788.9 "Optimal Play" sync / 1[56]:[^:]*:Queen's Knight:57F4:/ +3700.0 "--sync--" StartsUsing { id: "5805", source: "Queen's Soldier" } window 0,200 jump 3108.1 +3700.0 "--sync--" StartsUsing { id: "580B", source: "Queen's Gunner" } window 0,200 jump 3308.1 +3700.0 "--sync--" StartsUsing { id: "5AFD", source: "Queen's Warrior" } window 0,200 jump 3508.1 + +3700.0 "--targetable--" NameToggle { name: "Queen's Knight", toggle: "01" } window 500,500 +3708.1 "--sync--" StartsUsing { id: "57F[01]", source: "Queen's Knight" } window 10,10 +3711.1 "Shield Omen/Sword Omen" Ability { id: "57F[01]", source: "Queen's Knight" } +3719.3 "Optimal Play" Ability { id: "57F4", source: "Queen's Knight" } +3727.5 "Sword Omen/Shield Omen" Ability { id: "57F[01]", source: "Queen's Knight" } +3735.7 "Optimal Play" Ability { id: "57F4", source: "Queen's Knight" } + +3746.9 "Rapid Sever" Ability { id: "57FB", source: "Queen's Knight" } +3756.1 "Blood And Bone" Ability { id: "57FA", source: "Queen's Knight" } +3764.3 "Shield Omen/Sword Omen" Ability { id: "57F[01]", source: "Queen's Knight" } +3772.5 "Optimal Play" Ability { id: "57F4", source: "Queen's Knight" } +3780.7 "Sword Omen/Shield Omen" Ability { id: "57F[01]", source: "Queen's Knight" } +3788.9 "Optimal Play" Ability { id: "57F4", source: "Queen's Knight" } # (maybe a loop?) -3800.1 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Knight:57FB:/ window 30,30 jump 3746.9 -3809.3 "Blood And Bone" #sync / 1[56]:[^:]*:Queen's Knight:57FA:/ -3817.5 "Shield Omen/Sword Omen" #sync / 1[56]:[^:]*:Queen's Knight:57F[01]:/ -3825.7 "Optimal Play" #sync / 1[56]:[^:]*:Queen's Knight:57F4:/ -3833.9 "Sword Omen/Shield Omen" #sync / 1[56]:[^:]*:Queen's Knight:57F[01]:/ -3842.1 "Optimal Play" #sync / 1[56]:[^:]*:Queen's Knight:57F4:/ +3800.1 "Rapid Sever" Ability { id: "57FB", source: "Queen's Knight" } window 30,30 jump 3746.9 +3809.3 "Blood And Bone" #Ability { id: "57FA", source: "Queen's Knight" } +3817.5 "Shield Omen/Sword Omen" #Ability { id: "57F[01]", source: "Queen's Knight" } +3825.7 "Optimal Play" #Ability { id: "57F4", source: "Queen's Knight" } +3833.9 "Sword Omen/Shield Omen" #Ability { id: "57F[01]", source: "Queen's Knight" } +3842.1 "Optimal Play" #Ability { id: "57F4", source: "Queen's Knight" } # Aetherial Warded Knights -4000.0 "--sync--" sync / 14:[^:]*:Queen's Knight:57F5:/ window 1000,0 -4005.0 "Strongpoint Defense" sync / 1[56]:[^:]*:Queen's Knight:57F5:/ +4000.0 "--sync--" StartsUsing { id: "57F5", source: "Queen's Knight" } window 1000,0 +4005.0 "Strongpoint Defense" Ability { id: "57F5", source: "Queen's Knight" } # 60s enrage cast of 5812, 580A, 5802, 57F9 -4008.0 "Enrage Cast" sync / 14:[^:]*:Queen's Gunner:5812:/ duration 60 -4018.8 "Coat Of Arms" sync / 1[56]:[^:]*:Aetherial Ward:57F6:/ -4036.0 "Coat Of Arms" sync / 1[56]:[^:]*:Aetherial Ward:57F6:/ -4053.1 "Coat Of Arms" sync / 1[56]:[^:]*:Aetherial Ward:57F6:/ +4008.0 "Enrage Cast" StartsUsing { id: "5812", source: "Queen's Gunner" } duration 60 +4018.8 "Coat Of Arms" Ability { id: "57F6", source: "Aetherial Ward" } +4036.0 "Coat Of Arms" Ability { id: "57F6", source: "Aetherial Ward" } +4053.1 "Coat Of Arms" Ability { id: "57F6", source: "Aetherial Ward" } 4068.0 "Enrage" @@ -370,163 +370,163 @@ hideall "--sync--" # -p 57A3:5011.3 # (no -ii, a refreshingly direct timeline) # Pride of the Lion will be sealed off -5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1F:/ window 10000,0 +5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1F" } window 10000,0 # one circle, one square -5008.3 "--sync--" sync / 14:[^:]*:Bozjan Phantom:57A3:/ window 10,10 -5011.3 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A3:/ -5025.5 "Manipulate Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A4:/ -5026.5 "Swirling Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57A9:/ -5028.1 "Swirling Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5029.7 "Swirling Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5030.5 "Creeping Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A5:/ -5031.3 "Swirling Miasma 4" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5032.9 "Swirling Miasma 5" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5034.5 "Swirling Miasma 6" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5036.1 "Swirling Miasma 7" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5037.7 "Swirling Miasma 8" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ +5008.3 "--sync--" StartsUsing { id: "57A3", source: "Bozjan Phantom" } window 10,10 +5011.3 "Weave Miasma" Ability { id: "57A3", source: "Bozjan Phantom" } +5025.5 "Manipulate Miasma" Ability { id: "57A4", source: "Bozjan Phantom" } +5026.5 "Swirling Miasma 1" Ability { id: "57A9", source: "Bozjan Phantom" } +5028.1 "Swirling Miasma 2" #Ability { id: "57AA", source: "Bozjan Phantom" } +5029.7 "Swirling Miasma 3" #Ability { id: "57AA", source: "Bozjan Phantom" } +5030.5 "Creeping Miasma" Ability { id: "57A5", source: "Bozjan Phantom" } +5031.3 "Swirling Miasma 4" #Ability { id: "57AA", source: "Bozjan Phantom" } +5032.9 "Swirling Miasma 5" #Ability { id: "57AA", source: "Bozjan Phantom" } +5034.5 "Swirling Miasma 6" #Ability { id: "57AA", source: "Bozjan Phantom" } +5036.1 "Swirling Miasma 7" #Ability { id: "57AA", source: "Bozjan Phantom" } +5037.7 "Swirling Miasma 8" #Ability { id: "57AA", source: "Bozjan Phantom" } # two circles, two squares -5038.6 "Malediction Of Agony" sync / 1[56]:[^:]*:Bozjan Phantom:57AF:/ -5049.8 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A3:/ -5064.0 "Manipulate Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A4:/ -5065.0 "Swirling Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57A9:/ -5066.6 "Swirling Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5068.2 "Swirling Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5069.0 "Creeping Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A5:/ -5069.8 "Swirling Miasma 4" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5071.4 "Swirling Miasma 5" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5073.0 "Swirling Miasma 6" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5074.6 "Swirling Miasma 7" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5076.2 "Swirling Miasma 8" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ +5038.6 "Malediction Of Agony" Ability { id: "57AF", source: "Bozjan Phantom" } +5049.8 "Weave Miasma" Ability { id: "57A3", source: "Bozjan Phantom" } +5064.0 "Manipulate Miasma" Ability { id: "57A4", source: "Bozjan Phantom" } +5065.0 "Swirling Miasma 1" Ability { id: "57A9", source: "Bozjan Phantom" } +5066.6 "Swirling Miasma 2" #Ability { id: "57AA", source: "Bozjan Phantom" } +5068.2 "Swirling Miasma 3" #Ability { id: "57AA", source: "Bozjan Phantom" } +5069.0 "Creeping Miasma" Ability { id: "57A5", source: "Bozjan Phantom" } +5069.8 "Swirling Miasma 4" #Ability { id: "57AA", source: "Bozjan Phantom" } +5071.4 "Swirling Miasma 5" #Ability { id: "57AA", source: "Bozjan Phantom" } +5073.0 "Swirling Miasma 6" #Ability { id: "57AA", source: "Bozjan Phantom" } +5074.6 "Swirling Miasma 7" #Ability { id: "57AA", source: "Bozjan Phantom" } +5076.2 "Swirling Miasma 8" #Ability { id: "57AA", source: "Bozjan Phantom" } # learn about knockbacks -5083.1 "Summon" sync / 1[56]:[^:]*:Bozjan Phantom:57AB:/ -5095.2 "Undying Hatred" sync / 1[56]:[^:]*:Stuffy Wraith:57AC:/ -5096.3 "Transference" sync / 1[56]:[^:]*:Bozjan Phantom:57AD:/ -5103.5 "Vile Wave" sync / 1[56]:[^:]*:Bozjan Phantom:57B1:/ +5083.1 "Summon" Ability { id: "57AB", source: "Bozjan Phantom" } +5095.2 "Undying Hatred" Ability { id: "57AC", source: "Stuffy Wraith" } +5096.3 "Transference" Ability { id: "57AD", source: "Bozjan Phantom" } +5103.5 "Vile Wave" Ability { id: "57B1", source: "Bozjan Phantom" } # knockback into weave miasma -5114.7 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A3:/ -5120.8 "Summon" sync / 1[56]:[^:]*:Bozjan Phantom:57AB:/ -5132.9 "Undying Hatred" sync / 1[56]:[^:]*:Stuffy Wraith:57AC:/ -5137.0 "Manipulate Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A4:/ -5138.0 "Swirling Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57A9:/ -5139.6 "Swirling Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5141.2 "Swirling Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5142.0 "Creeping Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A5:/ -5142.8 "Swirling Miasma 4" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5144.4 "Swirling Miasma 5" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5146.0 "Swirling Miasma 6" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5147.1 "Transference" sync / 1[56]:[^:]*:Bozjan Phantom:57AD:/ -5147.6 "Swirling Miasma 7" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5149.2 "Swirling Miasma 8" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5154.4 "Vile Wave" sync / 1[56]:[^:]*:Bozjan Phantom:57B1:/ - -5162.5 "Malediction Of Agony" sync / 1[56]:[^:]*:Bozjan Phantom:57AF:/ -5175.7 "Excruciation" sync / 1[56]:[^:]*:Bozjan Phantom:57B0:/ -5184.8 "Malediction Of Agony" sync / 1[56]:[^:]*:Bozjan Phantom:57AF:/ -5191.9 "Malediction Of Agony" sync / 1[56]:[^:]*:Bozjan Phantom:57AF:/ +5114.7 "Weave Miasma" Ability { id: "57A3", source: "Bozjan Phantom" } +5120.8 "Summon" Ability { id: "57AB", source: "Bozjan Phantom" } +5132.9 "Undying Hatred" Ability { id: "57AC", source: "Stuffy Wraith" } +5137.0 "Manipulate Miasma" Ability { id: "57A4", source: "Bozjan Phantom" } +5138.0 "Swirling Miasma 1" Ability { id: "57A9", source: "Bozjan Phantom" } +5139.6 "Swirling Miasma 2" #Ability { id: "57AA", source: "Bozjan Phantom" } +5141.2 "Swirling Miasma 3" #Ability { id: "57AA", source: "Bozjan Phantom" } +5142.0 "Creeping Miasma" Ability { id: "57A5", source: "Bozjan Phantom" } +5142.8 "Swirling Miasma 4" #Ability { id: "57AA", source: "Bozjan Phantom" } +5144.4 "Swirling Miasma 5" #Ability { id: "57AA", source: "Bozjan Phantom" } +5146.0 "Swirling Miasma 6" #Ability { id: "57AA", source: "Bozjan Phantom" } +5147.1 "Transference" Ability { id: "57AD", source: "Bozjan Phantom" } +5147.6 "Swirling Miasma 7" #Ability { id: "57AA", source: "Bozjan Phantom" } +5149.2 "Swirling Miasma 8" #Ability { id: "57AA", source: "Bozjan Phantom" } +5154.4 "Vile Wave" Ability { id: "57B1", source: "Bozjan Phantom" } + +5162.5 "Malediction Of Agony" Ability { id: "57AF", source: "Bozjan Phantom" } +5175.7 "Excruciation" Ability { id: "57B0", source: "Bozjan Phantom" } +5184.8 "Malediction Of Agony" Ability { id: "57AF", source: "Bozjan Phantom" } +5191.9 "Malediction Of Agony" Ability { id: "57AF", source: "Bozjan Phantom" } # loop -5205.1 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57A3:/ window 50,50 jump 5114.7 -5211.2 "Summon" #sync / 1[56]:[^:]*:Bozjan Phantom:57AB:/ -5223.3 "Undying Hatred" #sync / 1[56]:[^:]*:Stuffy Wraith:57AC:/ -5227.4 "Manipulate Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57A4:/ -5228.4 "Swirling Miasma 1" #sync / 1[56]:[^:]*:Bozjan Phantom:57A9:/ -5230.0 "Swirling Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5231.6 "Swirling Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5232.4 "Creeping Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57A5:/ -5233.2 "Swirling Miasma 4" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5234.8 "Swirling Miasma 5" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ -5236.4 "Swirling Miasma 6" #sync / 1[56]:[^:]*:Bozjan Phantom:57AA:/ +5205.1 "Weave Miasma" Ability { id: "57A3", source: "Bozjan Phantom" } window 50,50 jump 5114.7 +5211.2 "Summon" #Ability { id: "57AB", source: "Bozjan Phantom" } +5223.3 "Undying Hatred" #Ability { id: "57AC", source: "Stuffy Wraith" } +5227.4 "Manipulate Miasma" #Ability { id: "57A4", source: "Bozjan Phantom" } +5228.4 "Swirling Miasma 1" #Ability { id: "57A9", source: "Bozjan Phantom" } +5230.0 "Swirling Miasma 2" #Ability { id: "57AA", source: "Bozjan Phantom" } +5231.6 "Swirling Miasma 3" #Ability { id: "57AA", source: "Bozjan Phantom" } +5232.4 "Creeping Miasma" #Ability { id: "57A5", source: "Bozjan Phantom" } +5233.2 "Swirling Miasma 4" #Ability { id: "57AA", source: "Bozjan Phantom" } +5234.8 "Swirling Miasma 5" #Ability { id: "57AA", source: "Bozjan Phantom" } +5236.4 "Swirling Miasma 6" #Ability { id: "57AA", source: "Bozjan Phantom" } ### Trinity Avowed # -p 5975:7013 # -ii 5962 4F55 4F99 5B24 5968 4F56 4F9A 5964 5969 5965 5967 596A 596C # The Vault of Singing Crystal will be sealed off -7000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E20:/ window 10000,0 -7008.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5975:/ window 10,10 -7013.0 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5975:/ -7021.1 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5976:/ -7029.3 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ -7037.5 "Fury Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5973:/ +7000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E20" } window 10000,0 +7008.0 "--sync--" StartsUsing { id: "5975", source: "Trinity Avowed" } window 10,10 +7013.0 "Wrath Of Bozja" Ability { id: "5975", source: "Trinity Avowed" } +7021.1 "Glory Of Bozja" Ability { id: "5976", source: "Trinity Avowed" } +7029.3 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } +7037.5 "Fury Of Bozja" Ability { id: "5973", source: "Trinity Avowed" } # meteors, 1 level of temperature -7046.8 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:597B:/ -7053.9 "Freedom Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597C:/ -7061.1 "Elemental Impact" sync / 1[56]:[^:]*:Swirling Orb:5960:/ -7070.1 "Elemental Blast" sync / 1[56]:[^:]*:Blazing Orb:5966:/ -7077.0 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ +7046.8 "Hot And Cold" Ability { id: "597B", source: "Trinity Avowed" } +7053.9 "Freedom Of Bozja" Ability { id: "597C", source: "Trinity Avowed" } +7061.1 "Elemental Impact" Ability { id: "5960", source: "Swirling Orb" } +7070.1 "Elemental Blast" Ability { id: "5966", source: "Blazing Orb" } +7077.0 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } -7087.5 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5986:/ -7095.7 "Flashvane" sync / 1[56]:[^:]*:Trinity Avowed:5972:/ +7087.5 "Allegiant Arsenal" Ability { id: "5986", source: "Trinity Avowed" } +7095.7 "Flashvane" Ability { id: "5972", source: "Trinity Avowed" } # swords, 1 level of temperature -7103.9 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597E:/ duration 8 -7112.0 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5B39:/ -7117.1 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BB0:/ -7124.9 "Shimmering Shot" sync / 1[56]:[^:]*:Trinity Avowed:597F:/ -7139.2 "Elemental Arrow" sync / 1[56]:[^:]*:Frost Arrow:596B:/ -7147.8 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ +7103.9 "Flames Of Bozja" Ability { id: "597E", source: "Trinity Avowed" } duration 8 +7112.0 "--sync--" Ability { id: "5B39", source: "Trinity Avowed" } +7117.1 "Hot And Cold" Ability { id: "5BB0", source: "Trinity Avowed" } +7124.9 "Shimmering Shot" Ability { id: "597F", source: "Trinity Avowed" } +7139.2 "Elemental Arrow" Ability { id: "596B", source: "Frost Arrow" } +7147.8 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } -7154.9 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5976:/ -7168.1 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5985:/ -7176.3 "Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:5971:/ +7154.9 "Glory Of Bozja" Ability { id: "5976", source: "Trinity Avowed" } +7168.1 "Allegiant Arsenal" Ability { id: "5985", source: "Trinity Avowed" } +7176.3 "Infernal Slash" Ability { id: "5971", source: "Trinity Avowed" } # cleaves, 2 levels of temperature -7182.5 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BAF:/ -7193.7 "Blade Of Entropy" sync / 1[56]:[^:]*:Trinity Avowed:(5B6[5-8]|596[D-F]|5970):/ -7201.9 "Blade Of Entropy" sync / 1[56]:[^:]*:Trinity Avowed:(5B6[5-8]|596[D-F]|5970):/ -7210.0 "Blade Of Entropy" sync / 1[56]:[^:]*:Trinity Avowed:(5B6[5-8]|596[D-F]|5970):/ -7218.2 "Blade Of Entropy" sync / 1[56]:[^:]*:Trinity Avowed:(5B6[5-8]|596[D-F]|5970):/ +7182.5 "Hot And Cold" Ability { id: "5BAF", source: "Trinity Avowed" } +7193.7 "Blade Of Entropy" Ability { id: ["5B6[5-8]", "596[D-F]", "5970"], source: "Trinity Avowed" } +7201.9 "Blade Of Entropy" Ability { id: ["5B6[5-8]", "596[D-F]", "5970"], source: "Trinity Avowed" } +7210.0 "Blade Of Entropy" Ability { id: ["5B6[5-8]", "596[D-F]", "5970"], source: "Trinity Avowed" } +7218.2 "Blade Of Entropy" Ability { id: ["5B6[5-8]", "596[D-F]", "5970"], source: "Trinity Avowed" } -7221.3 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5982:/ -7227.4 "Unseen Eye" sync / 1[56]:[^:]*:Trinity Avowed:5980:/ -7238.7 "Gleaming Arrow" sync / 1[56]:[^:]*:Avowed Avatar:5974:/ +7221.3 "--sync--" Ability { id: "5982", source: "Trinity Avowed" } +7227.4 "Unseen Eye" Ability { id: "5980", source: "Trinity Avowed" } +7238.7 "Gleaming Arrow" Ability { id: "5974", source: "Avowed Avatar" } -7246.3 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5975:/ -7254.4 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5976:/ -7264.8 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ -7273.0 "Fury Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5973:/ +7246.3 "Wrath Of Bozja" Ability { id: "5975", source: "Trinity Avowed" } +7254.4 "Glory Of Bozja" Ability { id: "5976", source: "Trinity Avowed" } +7264.8 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } +7273.0 "Fury Of Bozja" Ability { id: "5973", source: "Trinity Avowed" } # meteors, 2 levels of temperature -7279.2 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:597B:/ -7286.3 "Freedom Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597C:/ -7293.5 "Elemental Impact" sync / 1[56]:[^:]*:Tempestuous Orb:5960:/ -7302.5 "Heated Blast" sync / 1[56]:[^:]*:Blazing Orb:5966:/ - -7304.9 "Unseen Eye" sync / 1[56]:[^:]*:Trinity Avowed:5980:/ -7316.2 "Gleaming Arrow" sync / 1[56]:[^:]*:Avowed Avatar:5974:/ -7318.7 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ -7325.8 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5976:/ -7334.2 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5975:/ -7345.1 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5986:/ -7353.3 "Flashvane" sync / 1[56]:[^:]*:Trinity Avowed:5972:/ -7359.5 "Unseen Eye" sync / 1[56]:[^:]*:Trinity Avowed:5BB4:/ -7370.8 "Gleaming Arrow" sync / 1[56]:[^:]*:Avowed Avatar:5974:/ -7370.8 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597E:/ duration 8 -7379.0 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5B39:/ +7279.2 "Hot And Cold" Ability { id: "597B", source: "Trinity Avowed" } +7286.3 "Freedom Of Bozja" Ability { id: "597C", source: "Trinity Avowed" } +7293.5 "Elemental Impact" Ability { id: "5960", source: "Tempestuous Orb" } +7302.5 "Heated Blast" Ability { id: "5966", source: "Blazing Orb" } + +7304.9 "Unseen Eye" Ability { id: "5980", source: "Trinity Avowed" } +7316.2 "Gleaming Arrow" Ability { id: "5974", source: "Avowed Avatar" } +7318.7 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } +7325.8 "Glory Of Bozja" Ability { id: "5976", source: "Trinity Avowed" } +7334.2 "Wrath Of Bozja" Ability { id: "5975", source: "Trinity Avowed" } +7345.1 "Allegiant Arsenal" Ability { id: "5986", source: "Trinity Avowed" } +7353.3 "Flashvane" Ability { id: "5972", source: "Trinity Avowed" } +7359.5 "Unseen Eye" Ability { id: "5BB4", source: "Trinity Avowed" } +7370.8 "Gleaming Arrow" Ability { id: "5974", source: "Avowed Avatar" } +7370.8 "Flames Of Bozja" Ability { id: "597E", source: "Trinity Avowed" } duration 8 +7379.0 "--sync--" Ability { id: "5B39", source: "Trinity Avowed" } # swords, 2 levels of temperature -7383.8 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BB0:/ -7391.4 "Shimmering Shot" sync / 1[56]:[^:]*:Trinity Avowed:597F:/ -7405.7 "Elemental Arrow" sync / 1[56]:[^:]*:Frost Arrow:596B:/ -7411.0 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ +7383.8 "Hot And Cold" Ability { id: "5BB0", source: "Trinity Avowed" } +7391.4 "Shimmering Shot" Ability { id: "597F", source: "Trinity Avowed" } +7405.7 "Elemental Arrow" Ability { id: "596B", source: "Frost Arrow" } +7411.0 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } -7418.1 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5976:/ -7426.4 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5975:/ -7434.5 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5976:/ -7449.7 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5985:/ -7457.8 "Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:5971:/ +7418.1 "Glory Of Bozja" Ability { id: "5976", source: "Trinity Avowed" } +7426.4 "Wrath Of Bozja" Ability { id: "5975", source: "Trinity Avowed" } +7434.5 "Glory Of Bozja" Ability { id: "5976", source: "Trinity Avowed" } +7449.7 "Allegiant Arsenal" Ability { id: "5985", source: "Trinity Avowed" } +7457.8 "Infernal Slash" Ability { id: "5971", source: "Trinity Avowed" } # (probably a loop, back to cleaves, 2 levels of temperature) -7463.9 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BAF:/ window 100,100 jump 7182.5 -7475.1 "Blade Of Entropy" #sync / 1[56]:[^:]*:Trinity Avowed:(5B6[5-8]|596[D-F]|5970):/ -7483.3 "Blade Of Entropy" #sync / 1[56]:[^:]*:Trinity Avowed:(5B6[5-8]|596[D-F]|5970):/ -7491.4 "Blade Of Entropy" #sync / 1[56]:[^:]*:Trinity Avowed:(5B6[5-8]|596[D-F]|5970):/ -7499.6 "Blade Of Entropy" #sync / 1[56]:[^:]*:Trinity Avowed:(5B6[5-8]|596[D-F]|5970):/ +7463.9 "Hot And Cold" Ability { id: "5BAF", source: "Trinity Avowed" } window 100,100 jump 7182.5 +7475.1 "Blade Of Entropy" #Ability { id: ["5B6[5-8]", "596[D-F]", "5970"], source: "Trinity Avowed" } +7483.3 "Blade Of Entropy" #Ability { id: ["5B6[5-8]", "596[D-F]", "5970"], source: "Trinity Avowed" } +7491.4 "Blade Of Entropy" #Ability { id: ["5B6[5-8]", "596[D-F]", "5970"], source: "Trinity Avowed" } +7499.6 "Blade Of Entropy" #Ability { id: ["5B6[5-8]", "596[D-F]", "5970"], source: "Trinity Avowed" } ### The Queen @@ -534,102 +534,102 @@ hideall "--sync--" # -p 59C8:9015.5 # -ii 5B83 5B82 59E0 59E2 59DA 59CC 5B40 59CD 5B8D # Queensheart will be sealed off -9000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E23:/ window 10000,0 -9010.5 "--sync--" sync / 14:[^:]*:The Queen:59C8:/ window 15,15 -9015.5 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59C8:/ -9025.7 "Cleansing Slash" sync / 1[56]:[^:]*:The Queen:59C5:/ -9036.0 "--middle--" sync / 1[56]:[^:]*:The Queen:5BCB:/ - -9044.2 "Queen's Will" sync / 1[56]:[^:]*:The Queen:59B9:/ -9052.4 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B99:/ -9056.7 "The Means" sync / 1[56]:[^:]*:(Queen's Gunner|Queen's Warrior):59B[BD]:/ -9056.7 "The Ends" sync / 1[56]:[^:]*:(Queen's Soldier|Queen's Knight):59B[AC]:/ - -9066.6 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59C8:/ -9074.8 "--middle--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -9081.2 "Northswain's Glow" sync / 1[56]:[^:]*:The Queen:59C3:/ -9092.0 "--explosion--" sync / 1[56]:[^:]*:The Queen:59C4:/ -9094.4 "Heaven's Wrath" sync / 1[56]:[^:]*:The Queen:59C6:/ -9102.2 "--knockback--" sync / 1[56]:[^:]*:The Queen:59C7:/ -9112.6 "Cleansing Slash" sync / 1[56]:[^:]*:The Queen:59C5:/ -9123.9 "--middle--" sync / 1[56]:[^:]*:The Queen:5BCB:/ - -9132.1 "Queen's Will" sync / 1[56]:[^:]*:The Queen:59B9:/ -9140.2 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B99:/ +9000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E23" } window 10000,0 +9010.5 "--sync--" StartsUsing { id: "59C8", source: "The Queen" } window 15,15 +9015.5 "Empyrean Iniquity" Ability { id: "59C8", source: "The Queen" } +9025.7 "Cleansing Slash" Ability { id: "59C5", source: "The Queen" } +9036.0 "--middle--" Ability { id: "5BCB", source: "The Queen" } + +9044.2 "Queen's Will" Ability { id: "59B9", source: "The Queen" } +9052.4 "Beck And Call To Arms" Ability { id: "5B99", source: "The Queen" } +9056.7 "The Means" Ability { id: "59B[BD]", source: ["Queen's Gunner", "Queen's Warrior"] } +9056.7 "The Ends" Ability { id: "59B[AC]", source: ["Queen's Soldier", "Queen's Knight"] } + +9066.6 "Empyrean Iniquity" Ability { id: "59C8", source: "The Queen" } +9074.8 "--middle--" Ability { id: "5BCB", source: "The Queen" } +9081.2 "Northswain's Glow" Ability { id: "59C3", source: "The Queen" } +9092.0 "--explosion--" Ability { id: "59C4", source: "The Queen" } +9094.4 "Heaven's Wrath" Ability { id: "59C6", source: "The Queen" } +9102.2 "--knockback--" Ability { id: "59C7", source: "The Queen" } +9112.6 "Cleansing Slash" Ability { id: "59C5", source: "The Queen" } +9123.9 "--middle--" Ability { id: "5BCB", source: "The Queen" } + +9132.1 "Queen's Will" Ability { id: "59B9", source: "The Queen" } +9140.2 "Beck And Call To Arms" Ability { id: "5B99", source: "The Queen" } 9143.3 "--untargetable--" -9144.5 "The Means" sync / 1[56]:[^:]*:(Queen's Gunner|Queen's Warrior):59B[BD]:/ -9144.5 "The Ends" sync / 1[56]:[^:]*:(Queen's Soldier|Queen's Knight):59B[AC]:/ -9151.5 "Judgment Blade" sync / 1[56]:[^:]*:The Queen:59C[12]:/ +9144.5 "The Means" Ability { id: "59B[BD]", source: ["Queen's Gunner", "Queen's Warrior"] } +9144.5 "The Ends" Ability { id: "59B[AC]", source: ["Queen's Soldier", "Queen's Knight"] } +9151.5 "Judgment Blade" Ability { id: "59C[12]", source: "The Queen" } 9156.2 "--targetable--" # HP% push here. -9160.5 "--middle--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -9163.9 "--sync--" sync / 1[56]:[^:]*:The Queen:55A8:/ window 200,10 -9171.0 "Gods Save The Queen" sync / 1[56]:[^:]*:The Queen:59C9:/ -9192.3 "--middle--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -9200.7 "Queen's Edict" sync / 1[56]:[^:]*:The Queen:59BE:/ +9160.5 "--middle--" Ability { id: "5BCB", source: "The Queen" } +9163.9 "--sync--" Ability { id: "55A8", source: "The Queen" } window 200,10 +9171.0 "Gods Save The Queen" Ability { id: "59C9", source: "The Queen" } +9192.3 "--middle--" Ability { id: "5BCB", source: "The Queen" } +9200.7 "Queen's Edict" Ability { id: "59BE", source: "The Queen" } 9223.4 "--stunned--" -9225.5 "Queen's Justice" sync / 1[56]:[^:]*:The Queen:59BF:/ # only on failure +9225.5 "Queen's Justice" Ability { id: "59BF", source: "The Queen" } # only on failure 9229.3 "--unstunned--" -9239.9 "Cleansing Slash" sync / 1[56]:[^:]*:The Queen:59C5:/ - -9253.1 "Relentless Play" sync / 1[56]:[^:]*:The Queen:59FC:/ -9259.3 "Automatic Turret" sync / 1[56]:[^:]*:Queen's Gunner:59DE:/ -9267.3 "Bombslinger" sync / 1[56]:[^:]*:Queen's Warrior:5B3E:/ -9267.4 "Turret's Tour" sync / 1[56]:[^:]*:Queen's Gunner:59DF:/ -9268.0 "Turret's Tour" sync / 1[56]:[^:]*:Automatic Turret:59E1:/ -9271.2 "Heaven's Wrath" sync / 1[56]:[^:]*:The Queen:59C6:/ -9274.3 "Reversal Of Forces?" sync / 1[56]:[^:]*:Queen's Warrior:59D4:/ -9279.0 "--knockback--" sync / 1[56]:[^:]*:The Queen:59C7:/ -9283.5 "Above Board" sync / 1[56]:[^:]*:Queen's Warrior:59D1:/ +9239.9 "Cleansing Slash" Ability { id: "59C5", source: "The Queen" } + +9253.1 "Relentless Play" Ability { id: "59FC", source: "The Queen" } +9259.3 "Automatic Turret" Ability { id: "59DE", source: "Queen's Gunner" } +9267.3 "Bombslinger" Ability { id: "5B3E", source: "Queen's Warrior" } +9267.4 "Turret's Tour" Ability { id: "59DF", source: "Queen's Gunner" } +9268.0 "Turret's Tour" Ability { id: "59E1", source: "Automatic Turret" } +9271.2 "Heaven's Wrath" Ability { id: "59C6", source: "The Queen" } +9274.3 "Reversal Of Forces?" Ability { id: "59D4", source: "Queen's Warrior" } +9279.0 "--knockback--" Ability { id: "59C7", source: "The Queen" } +9283.5 "Above Board" Ability { id: "59D1", source: "Queen's Warrior" } 9284.5 "--stunned--" # Note: these can be in either order, so can't sync. -9286.5 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Bolt:(59D3|5B86):/ -9289.5 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Burst:(59D2|5B87):/ +9286.5 "Lots Cast" #Ability { id: ["59D3", "5B86"], source: "Aetherial Bolt" } +9289.5 "Lots Cast" #Ability { id: ["59D2", "5B87"], source: "Aetherial Burst" } 9291.2 "--unstunned--" -9300.4 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59C8:/ -9308.6 "--middle--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -9316.8 "Queen's Edict" sync / 1[56]:[^:]*:The Queen:59BE:/ -9338.0 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B99:/ +9300.4 "Empyrean Iniquity" Ability { id: "59C8", source: "The Queen" } +9308.6 "--middle--" Ability { id: "5BCB", source: "The Queen" } +9316.8 "Queen's Edict" Ability { id: "59BE", source: "The Queen" } +9338.0 "Beck And Call To Arms" Ability { id: "5B99", source: "The Queen" } 9339.5 "--stunned--" -9341.7 "Queen's Justice" sync / 1[56]:[^:]*:Queen's Warrior:59BF:/ # only on failure -9342.4 "The Means" sync / 1[56]:[^:]*:(Queen's Gunner|Queen's Warrior):59B[BD]:/ -9342.4 "The Ends" sync / 1[56]:[^:]*:(Queen's Soldier|Queen's Knight):59B[AC]:/ +9341.7 "Queen's Justice" Ability { id: "59BF", source: "Queen's Warrior" } # only on failure +9342.4 "The Means" Ability { id: "59B[BD]", source: ["Queen's Gunner", "Queen's Warrior"] } +9342.4 "The Ends" Ability { id: "59B[AC]", source: ["Queen's Soldier", "Queen's Knight"] } 9345.4 "--unstunned--" -9354.5 "Cleansing Slash" sync / 1[56]:[^:]*:The Queen:59C5:/ +9354.5 "Cleansing Slash" Ability { id: "59C5", source: "The Queen" } -9367.7 "Relentless Play" sync / 1[56]:[^:]*:The Queen:59FC:/ -9373.8 "Double Gambit" sync / 1[56]:[^:]*:Queen's Soldier:59D9:/ -9382.0 "Secrets Revealed" sync / 1[56]:[^:]*:Queen's Soldier:5B8A:/ -9382.1 "--sync--" sync / 1[56]:[^:]*:Soldier Avatar:5B8C:/ +9367.7 "Relentless Play" Ability { id: "59FC", source: "The Queen" } +9373.8 "Double Gambit" Ability { id: "59D9", source: "Queen's Soldier" } +9382.0 "Secrets Revealed" Ability { id: "5B8A", source: "Queen's Soldier" } +9382.1 "--sync--" Ability { id: "5B8C", source: "Soldier Avatar" } 9388.9 "--untargetable--" -9391.9 "Pawn Off" sync / 1[56]:[^:]*:Soldier Avatar:59DB:/ -9397.1 "Judgment Blade" sync / 1[56]:[^:]*:The Queen:59C[12]:/ -9397.9 "Sword Omen/Shield Omen" sync / 1[56]:[^:]*:Queen's Knight:59C[AB]:/ +9391.9 "Pawn Off" Ability { id: "59DB", source: "Soldier Avatar" } +9397.1 "Judgment Blade" Ability { id: "59C[12]", source: "The Queen" } +9397.9 "Sword Omen/Shield Omen" Ability { id: "59C[AB]", source: "Queen's Knight" } 9401.9 "--targetable--" -9406.1 "Optimal Play" sync / 1[56]:[^:]*:Queen's Knight:59CE:/ - -9415.0 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59C8:/ -9423.2 "--sync--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -9429.4 "Northswain's Glow" sync / 1[56]:[^:]*:The Queen:59C3:/ -9437.6 "Queen's Will" sync / 1[56]:[^:]*:The Queen:59B9:/ -9440.2 "--explosion--" sync / 1[56]:[^:]*:The Queen:59C4:/ -9445.7 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B99:/ -9450.0 "The Means" sync / 1[56]:[^:]*:(Queen's Gunner|Queen's Warrior):59B[BD]:/ -9450.0 "The Ends" sync / 1[56]:[^:]*:(Queen's Soldier|Queen's Knight):59B[AC]:/ -9459.9 "Cleansing Slash" sync / 1[56]:[^:]*:The Queen:59C5:/ - -9473.1 "Relentless Play" sync / 1[56]:[^:]*:The Queen:59FC:/ window 50,50 jump 9253.1 -9479.3 "Automatic Turret" #sync / 1[56]:[^:]*:Queen's Gunner:59DE:/ -9487.3 "Bombslinger" #sync / 1[56]:[^:]*:Queen's Warrior:5B3E:/ -9487.4 "Turret's Tour" #sync / 1[56]:[^:]*:Queen's Gunner:59DF:/ -9488.0 "Turret's Tour" #sync / 1[56]:[^:]*:Automatic Turret:59E1:/ -9491.2 "Heaven's Wrath" #sync / 1[56]:[^:]*:The Queen:59C6:/ -9494.3 "Reversal Of Forces?" #sync / 1[56]:[^:]*:Queen's Warrior:59D4:/ -9499.0 "--knockback--" #sync / 1[56]:[^:]*:The Queen:59C7:/ -9503.5 "Above Board" #sync / 1[56]:[^:]*:Queen's Warrior:59D1:/ +9406.1 "Optimal Play" Ability { id: "59CE", source: "Queen's Knight" } + +9415.0 "Empyrean Iniquity" Ability { id: "59C8", source: "The Queen" } +9423.2 "--sync--" Ability { id: "5BCB", source: "The Queen" } +9429.4 "Northswain's Glow" Ability { id: "59C3", source: "The Queen" } +9437.6 "Queen's Will" Ability { id: "59B9", source: "The Queen" } +9440.2 "--explosion--" Ability { id: "59C4", source: "The Queen" } +9445.7 "Beck And Call To Arms" Ability { id: "5B99", source: "The Queen" } +9450.0 "The Means" Ability { id: "59B[BD]", source: ["Queen's Gunner", "Queen's Warrior"] } +9450.0 "The Ends" Ability { id: "59B[AC]", source: ["Queen's Soldier", "Queen's Knight"] } +9459.9 "Cleansing Slash" Ability { id: "59C5", source: "The Queen" } + +9473.1 "Relentless Play" Ability { id: "59FC", source: "The Queen" } window 50,50 jump 9253.1 +9479.3 "Automatic Turret" #Ability { id: "59DE", source: "Queen's Gunner" } +9487.3 "Bombslinger" #Ability { id: "5B3E", source: "Queen's Warrior" } +9487.4 "Turret's Tour" #Ability { id: "59DF", source: "Queen's Gunner" } +9488.0 "Turret's Tour" #Ability { id: "59E1", source: "Automatic Turret" } +9491.2 "Heaven's Wrath" #Ability { id: "59C6", source: "The Queen" } +9494.3 "Reversal Of Forces?" #Ability { id: "59D4", source: "Queen's Warrior" } +9499.0 "--knockback--" #Ability { id: "59C7", source: "The Queen" } +9503.5 "Above Board" #Ability { id: "59D1", source: "Queen's Warrior" } 9504.5 "--stunned--" -9506.5 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Bolt:(59D3|5B86):/ -9509.5 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Burst:(59D2|5B87):/ +9506.5 "Lots Cast" #Ability { id: ["59D3", "5B86"], source: "Aetherial Bolt" } +9509.5 "Lots Cast" #Ability { id: ["59D2", "5B87"], source: "Aetherial Burst" } 9511.2 "--unstunned--" diff --git a/ui/raidboss/data/05-shb/eureka/delubrum_reginae_savage.txt b/ui/raidboss/data/05-shb/eureka/delubrum_reginae_savage.txt index 6fbedebae5..7b478dcfda 100644 --- a/ui/raidboss/data/05-shb/eureka/delubrum_reginae_savage.txt +++ b/ui/raidboss/data/05-shb/eureka/delubrum_reginae_savage.txt @@ -9,123 +9,123 @@ hideall "--sync--" # boss, as the Stygimoloch Warrior and Dahu areas can be seen from one # another, and so a generic "is no longer sealed" from one would stop # any timeline running for those in the other. -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 ### Slimes (The Barracks, left side) -1000.0 "--sync--" sync / 03:........:Viscous Clot:/ window 1000,0 -1000.0 "--Reset--" sync / 03:........:Trinity Seeker:/ window 0,1000 jump 0 -1000.0 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ window 1000,0 -1005.3 "Sanguine Clot x4" sync / 03:........:Sanguine Clot:/ -1012.1 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1024.1 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1025.4 "Sanguine Clot x4" sync / 03:........:Sanguine Clot:/ -1027.5 "Bozjan Soldier x2" sync / 03:........:Bozjan Soldier:/ -1036.1 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1044.9 "Sanguine Clot x4" sync / 03:........:Sanguine Clot:/ -1048.2 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1060.2 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1065.1 "Sanguine Clot x4" sync / 03:........:Sanguine Clot:/ -1072.4 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1077.1 "Bozjan Soldier x2" sync / 03:........:Bozjan Soldier:/ -1084.3 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1085.0 "Sanguine Clot x4" sync / 03:........:Sanguine Clot:/ -1096.1 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1105.2 "Sanguine Clot x3" sync / 03:........:Sanguine Clot:/ -1108.3 "Viscous Clot x2" sync / 03:........:Viscous Clot:/ -1120.0 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1125.2 "Sanguine Clot x4" sync / 03:........:Sanguine Clot:/ -1127.4 "Bozjan Soldier x2" sync / 03:........:Bozjan Soldier:/ -1132.2 "Viscous Clot" sync / 03:........:Viscous Clot:/ -1144.2 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1156.2 "Viscous Clot x3" sync / 03:........:Viscous Clot:/ -1162.1 "Viscous Clot" sync / 03:........:Viscous Clot:/ -1165.4 "Sanguine Clot x2" sync / 03:........:Sanguine Clot:/ -1168.2 "Viscous Clot x2" sync / 03:........:Viscous Clot:/ -1172.7 "Sanguine Clot x4" sync / 03:........:Sanguine Clot:/ -1177.4 "Bozjan Soldier x2" sync / 03:........:Bozjan Soldier:/ -1192.2 "Viscous Clot" sync / 03:........:Viscous Clot:/ -1204.2 "Viscous Clot x2" sync / 03:........:Viscous Clot:/ -1225.1 "Sanguine Clot" sync / 03:........:Sanguine Clot:/ -1227.2 "Bozjan Soldier x2" sync / 03:........:Bozjan Soldier:/ -1233.1 "Sanguine Clot x4" sync / 03:........:Sanguine Clot:/ -1277.3 "Bozjan Soldier x2" sync / 03:........:Bozjan Soldier:/ -1297.3 "Grim Reaper Enrage" sync / 03:........:Grim Reaper:/ window 300,10 -1302.3 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1305.3 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1308.3 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1311.3 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1314.4 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1317.4 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1320.4 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1323.5 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1326.5 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1327.3 "Bozjan Soldier x2" sync / 03:........:Bozjan Soldier:/ -1329.5 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1332.6 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1335.6 "Death Scythe" sync / 1[56]:[^:]*:Grim Reaper:5747:/ window 5,10 -1338.6 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1341.7 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ window 10,10 -1341.7 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1344.7 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1347.7 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1350.8 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1353.8 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1356.8 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -1359.8 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ +1000.0 "--sync--" AddedCombatant { name: "Viscous Clot" } window 1000,0 +1000.0 "--Reset--" AddedCombatant { name: "Trinity Seeker" } window 0,1000 jump 0 +1000.0 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } window 1000,0 +1005.3 "Sanguine Clot x4" AddedCombatant { name: "Sanguine Clot" } +1012.1 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1024.1 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1025.4 "Sanguine Clot x4" AddedCombatant { name: "Sanguine Clot" } +1027.5 "Bozjan Soldier x2" AddedCombatant { name: "Bozjan Soldier" } +1036.1 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1044.9 "Sanguine Clot x4" AddedCombatant { name: "Sanguine Clot" } +1048.2 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1060.2 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1065.1 "Sanguine Clot x4" AddedCombatant { name: "Sanguine Clot" } +1072.4 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1077.1 "Bozjan Soldier x2" AddedCombatant { name: "Bozjan Soldier" } +1084.3 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1085.0 "Sanguine Clot x4" AddedCombatant { name: "Sanguine Clot" } +1096.1 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1105.2 "Sanguine Clot x3" AddedCombatant { name: "Sanguine Clot" } +1108.3 "Viscous Clot x2" AddedCombatant { name: "Viscous Clot" } +1120.0 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1125.2 "Sanguine Clot x4" AddedCombatant { name: "Sanguine Clot" } +1127.4 "Bozjan Soldier x2" AddedCombatant { name: "Bozjan Soldier" } +1132.2 "Viscous Clot" AddedCombatant { name: "Viscous Clot" } +1144.2 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1156.2 "Viscous Clot x3" AddedCombatant { name: "Viscous Clot" } +1162.1 "Viscous Clot" AddedCombatant { name: "Viscous Clot" } +1165.4 "Sanguine Clot x2" AddedCombatant { name: "Sanguine Clot" } +1168.2 "Viscous Clot x2" AddedCombatant { name: "Viscous Clot" } +1172.7 "Sanguine Clot x4" AddedCombatant { name: "Sanguine Clot" } +1177.4 "Bozjan Soldier x2" AddedCombatant { name: "Bozjan Soldier" } +1192.2 "Viscous Clot" AddedCombatant { name: "Viscous Clot" } +1204.2 "Viscous Clot x2" AddedCombatant { name: "Viscous Clot" } +1225.1 "Sanguine Clot" AddedCombatant { name: "Sanguine Clot" } +1227.2 "Bozjan Soldier x2" AddedCombatant { name: "Bozjan Soldier" } +1233.1 "Sanguine Clot x4" AddedCombatant { name: "Sanguine Clot" } +1277.3 "Bozjan Soldier x2" AddedCombatant { name: "Bozjan Soldier" } +1297.3 "Grim Reaper Enrage" AddedCombatant { name: "Grim Reaper" } window 300,10 +1302.3 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1305.3 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1308.3 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1311.3 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1314.4 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1317.4 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1320.4 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1323.5 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1326.5 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1327.3 "Bozjan Soldier x2" AddedCombatant { name: "Bozjan Soldier" } +1329.5 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1332.6 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1335.6 "Death Scythe" Ability { id: "5747", source: "Grim Reaper" } window 5,10 +1338.6 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1341.7 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } window 10,10 +1341.7 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1344.7 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1347.7 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1350.8 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1353.8 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1356.8 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +1359.8 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } ### Golems (The Granary, right side) -2000.0 "--sync--" sync / 22:........:Bicolor Golem:........:Bicolor Golem:01/ window 2000,0 -2000.0 "--Reset--" sync / 03:........:Trinity Seeker:/ window 0,1000 jump 0 -2025.2 "Core Combustion" sync / 1[56]:[^:]*:Bicolor Golem:5745:/ window 2030,10 +2000.0 "--sync--" NameToggle { name: "Bicolor Golem", toggle: "01" } window 2000,0 +2000.0 "--Reset--" AddedCombatant { name: "Trinity Seeker" } window 0,1000 jump 0 +2025.2 "Core Combustion" Ability { id: "5745", source: "Bicolor Golem" } window 2030,10 2026.1 "--bleed--" # from blue golem -2029.9 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2032.1 "--sync--" sync / 14:[^:]*:Bicolor Golem:5558:/ window 20,10 -2037.1 "Metamorphose" sync / 1[56]:[^:]*:Bicolor Golem:5558:/ -2069.9 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2071.3 "--sync--" sync / 14:[^:]*:Bicolor Golem:5558:/ window 20,10 -2076.3 "Metamorphose" sync / 1[56]:[^:]*:Bicolor Golem:5558:/ -2109.7 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2140.1 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2160.2 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2170.3 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2180.3 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2189.9 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2199.9 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2209.9 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2220.0 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2230.0 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2240.0 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2250.1 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2260.0 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2270.0 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2280.1 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2290.1 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2299.7 "Grim Reaper Enrage" sync / 03:........:Grim Reaper:/ -2300.2 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2305.0 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2308.0 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2310.1 "Ruins Golem x2" sync / 03:........:Ruins Golem:/ -2311.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2314.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2317.1 "Death Scythe" sync / 1[56]:[^:]*:Grim Reaper:5747:/ window 5,10 -2320.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2323.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2326.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2329.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2332.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2335.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ -2338.1 "Death Scythe" #sync / 1[56]:[^:]*:Grim Reaper:5747:/ +2029.9 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2032.1 "--sync--" StartsUsing { id: "5558", source: "Bicolor Golem" } window 20,10 +2037.1 "Metamorphose" Ability { id: "5558", source: "Bicolor Golem" } +2069.9 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2071.3 "--sync--" StartsUsing { id: "5558", source: "Bicolor Golem" } window 20,10 +2076.3 "Metamorphose" Ability { id: "5558", source: "Bicolor Golem" } +2109.7 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2140.1 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2160.2 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2170.3 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2180.3 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2189.9 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2199.9 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2209.9 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2220.0 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2230.0 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2240.0 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2250.1 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2260.0 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2270.0 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2280.1 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2290.1 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2299.7 "Grim Reaper Enrage" AddedCombatant { name: "Grim Reaper" } +2300.2 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2305.0 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2308.0 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2310.1 "Ruins Golem x2" AddedCombatant { name: "Ruins Golem" } +2311.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2314.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2317.1 "Death Scythe" Ability { id: "5747", source: "Grim Reaper" } window 5,10 +2320.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2323.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2326.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2329.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2332.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2335.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } +2338.1 "Death Scythe" #Ability { id: "5747", source: "Grim Reaper" } ### Trinity Seeker # -p 5AD3:4011.4 5A98:4079.5 5A99:4171.7 5A97:4265.8 # -ii 1961 1963 5B33 5AB8 5AB9 5ABA 5ABB 5ABC 5AD1 5B2A 5B2B 5AC1 5AC2 5AC3 5AC4 5AC5 5AC6 5ACB 5BBC 5ACD # The Theater of One will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1B:/ window 20000,0 +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1B" } window 20000,0 # .*is no longer sealed -4000.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 0,2000 jump 0 +4000.0 "--Reset--" SystemLogMessage { id: "7DE" } window 0,2000 jump 0 # Note: it is likely that there are additional hp pushes on later Verdant Paths. # It is known that the first one is 80%, but I have seen 0-10 second variations @@ -133,173 +133,173 @@ hideall "--sync--" # but with lots of extra syncs to future proof possible hp pushes. # Initial Merciful Air -4006.4 "--sync--" sync / 14:[^:]*:Trinity Seeker:5AD3:/ window 20,20 -4011.4 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AD3:/ -4015.6 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4020.0 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4028.2 "First Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B61:/ -4031.4 "Second Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B62:/ -4034.6 "Third Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B63:/ -4037.8 "Fourth Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B64:/ -4040.2 "Mercy Fourfold 1" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4042.1 "Mercy Fourfold 2" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4042.8 "Seasons Of Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5AC7:/ -4044.0 "Mercy Fourfold 3" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4045.9 "Mercy Fourfold 4" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4047.3 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AC8:/ -4048.8 "Merciful Moon" sync / 1[56]:[^:]*:Aetherial Orb:5AC9:/ -4051.3 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AC8:/ -4054.7 "Merciful Blooms" sync / 1[56]:[^:]*:Trinity Seeker:5ACA:/ -4062.0 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AD3:/ -4074.2 "Merciful Arc" sync / 1[56]:[^:]*:Trinity Seeker:5AD4:/ +4006.4 "--sync--" StartsUsing { id: "5AD3", source: "Trinity Seeker" } window 20,20 +4011.4 "Verdant Tempest" Ability { id: "5AD3", source: "Trinity Seeker" } +4015.6 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4020.0 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4028.2 "First Mercy" Ability { id: "5B61", source: "Trinity Seeker" } +4031.4 "Second Mercy" Ability { id: "5B62", source: "Trinity Seeker" } +4034.6 "Third Mercy" Ability { id: "5B63", source: "Trinity Seeker" } +4037.8 "Fourth Mercy" Ability { id: "5B64", source: "Trinity Seeker" } +4040.2 "Mercy Fourfold 1" #Ability { id: "5B94", source: "Trinity Seeker" } +4042.1 "Mercy Fourfold 2" #Ability { id: "5B94", source: "Trinity Seeker" } +4042.8 "Seasons Of Mercy" Ability { id: "5AC7", source: "Seeker Avatar" } +4044.0 "Mercy Fourfold 3" #Ability { id: "5B94", source: "Trinity Seeker" } +4045.9 "Mercy Fourfold 4" #Ability { id: "5B94", source: "Trinity Seeker" } +4047.3 "Merciful Breeze" Ability { id: "5AC8", source: "Trinity Seeker" } +4048.8 "Merciful Moon" Ability { id: "5AC9", source: "Aetherial Orb" } +4051.3 "Merciful Breeze" Ability { id: "5AC8", source: "Trinity Seeker" } +4054.7 "Merciful Blooms" Ability { id: "5ACA", source: "Trinity Seeker" } +4062.0 "Verdant Tempest" Ability { id: "5AD3", source: "Trinity Seeker" } +4074.2 "Merciful Arc" Ability { id: "5AD4", source: "Trinity Seeker" } # Initial Baleful Air (80% or time push) -4076.5 "--sync--" sync / 14:[^:]*:Trinity Seeker:5A98:/ window 80,20 -4079.5 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A98:/ -4084.1 "Baleful Swathe" sync / 1[56]:[^:]*:Trinity Seeker:5AD0:/ -4092.2 "Baleful Onslaught" sync / 1[56]:[^:]*:Trinity Seeker:5AD5:/ -4099.3 "Phantom Edge" sync / 1[56]:[^:]*:Trinity Seeker:5ABD:/ -4105.5 "Baleful Onslaught" sync / 1[56]:[^:]*:Trinity Seeker:5AD6:/ -4115.6 "Phantom Edge?" sync / 1[56]:[^:]*:Trinity Seeker:5ABD:/ -4117.8 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ +4076.5 "--sync--" StartsUsing { id: "5A98", source: "Trinity Seeker" } window 80,20 +4079.5 "Verdant Path" Ability { id: "5A98", source: "Trinity Seeker" } +4084.1 "Baleful Swathe" Ability { id: "5AD0", source: "Trinity Seeker" } +4092.2 "Baleful Onslaught" Ability { id: "5AD5", source: "Trinity Seeker" } +4099.3 "Phantom Edge" Ability { id: "5ABD", source: "Trinity Seeker" } +4105.5 "Baleful Onslaught" Ability { id: "5AD6", source: "Trinity Seeker" } +4115.6 "Phantom Edge?" Ability { id: "5ABD", source: "Trinity Seeker" } +4117.8 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } 4118.4 "--chains--" duration 3.1 -4126.9 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5AB[EF]:/ -4132.1 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4138.8 "Baleful Comet 1" #sync / 1[56]:[^:]*:Seeker Avatar:5AD7:/ -4139.8 "Baleful Comet 2" #sync / 1[56]:[^:]*:Seeker Avatar:5AD7:/ -4140.8 "Baleful Comet 3" #sync / 1[56]:[^:]*:Seeker Avatar:5AD7:/ -4141.8 "Baleful Comet 4" #sync / 1[56]:[^:]*:Seeker Avatar:5AD7:/ -4142.2 "Phantom Edge?" sync / 1[56]:[^:]*:Trinity Seeker:5ABD:/ -4144.4 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4146.4 "Baleful Firestorm 1" #sync / 1[56]:[^:]*:Seeker Avatar:5AD8:/ -4148.4 "Baleful Firestorm 2" #sync / 1[56]:[^:]*:Seeker Avatar:5AD8:/ -4150.4 "Baleful Firestorm 3" #sync / 1[56]:[^:]*:Seeker Avatar:5AD8:/ -4152.4 "Baleful Firestorm 4" #sync / 1[56]:[^:]*:Seeker Avatar:5AD8:/ -4153.5 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5AB[EF]:/ -4162.6 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AD3:/ +4126.9 "Baleful Blade" Ability { id: "5AB[EF]", source: "Trinity Seeker" } +4132.1 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4138.8 "Baleful Comet 1" #Ability { id: "5AD7", source: "Seeker Avatar" } +4139.8 "Baleful Comet 2" #Ability { id: "5AD7", source: "Seeker Avatar" } +4140.8 "Baleful Comet 3" #Ability { id: "5AD7", source: "Seeker Avatar" } +4141.8 "Baleful Comet 4" #Ability { id: "5AD7", source: "Seeker Avatar" } +4142.2 "Phantom Edge?" Ability { id: "5ABD", source: "Trinity Seeker" } +4144.4 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4146.4 "Baleful Firestorm 1" #Ability { id: "5AD8", source: "Seeker Avatar" } +4148.4 "Baleful Firestorm 2" #Ability { id: "5AD8", source: "Seeker Avatar" } +4150.4 "Baleful Firestorm 3" #Ability { id: "5AD8", source: "Seeker Avatar" } +4152.4 "Baleful Firestorm 4" #Ability { id: "5AD8", source: "Seeker Avatar" } +4153.5 "Baleful Blade" Ability { id: "5AB[EF]", source: "Trinity Seeker" } +4162.6 "Verdant Tempest" Ability { id: "5AD3", source: "Trinity Seeker" } # Initial Iron Air -4168.7 "--sync--" sync / 14:[^:]*:Trinity Seeker:5A99:/ window 200,20 -4171.7 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A99:/ -4176.6 "Iron Impact" sync / 1[56]:[^:]*:Trinity Seeker:5AD2:/ -4180.7 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4184.9 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4196.6 "--jump--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4197.7 "Iron Rose" sync / 1[56]:[^:]*:Seeker Avatar:5AD9:/ -4203.5 "Iron Splitter" sync / 1[56]:[^:]*:Trinity Seeker:5AC0:/ -4207.7 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4211.9 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4216.1 "--jump--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4223.0 "Iron Splitter" sync / 1[56]:[^:]*:Trinity Seeker:5AC0:/ -4225.2 "Dead Iron" sync / 1[56]:[^:]*:Seeker Avatar:5ACC:/ -4228.3 "--jump--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4232.5 "Dead Iron" sync / 1[56]:[^:]*:Seeker Avatar:5B44:/ -4235.1 "Iron Splitter" sync / 1[56]:[^:]*:Trinity Seeker:5AC0:/ -4239.9 "Iron Rose" sync / 1[56]:[^:]*:Seeker Avatar:5AD9:/ -4251.3 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AD3:/ +4168.7 "--sync--" StartsUsing { id: "5A99", source: "Trinity Seeker" } window 200,20 +4171.7 "Verdant Path" Ability { id: "5A99", source: "Trinity Seeker" } +4176.6 "Iron Impact" Ability { id: "5AD2", source: "Trinity Seeker" } +4180.7 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4184.9 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4196.6 "--jump--" Ability { id: "5A9A", source: "Trinity Seeker" } +4197.7 "Iron Rose" Ability { id: "5AD9", source: "Seeker Avatar" } +4203.5 "Iron Splitter" Ability { id: "5AC0", source: "Trinity Seeker" } +4207.7 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4211.9 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4216.1 "--jump--" Ability { id: "5A9A", source: "Trinity Seeker" } +4223.0 "Iron Splitter" Ability { id: "5AC0", source: "Trinity Seeker" } +4225.2 "Dead Iron" Ability { id: "5ACC", source: "Seeker Avatar" } +4228.3 "--jump--" Ability { id: "5A9A", source: "Trinity Seeker" } +4232.5 "Dead Iron" Ability { id: "5B44", source: "Seeker Avatar" } +4235.1 "Iron Splitter" Ability { id: "5AC0", source: "Trinity Seeker" } +4239.9 "Iron Rose" Ability { id: "5AD9", source: "Seeker Avatar" } +4251.3 "Verdant Tempest" Ability { id: "5AD3", source: "Trinity Seeker" } # Merciful Air v2 -4262.8 "--sync--" sync / 14:[^:]*:Trinity Seeker:5A97:/ window 300,10 -4265.8 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A97:/ -4270.4 "Act Of Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5ACF:/ -4276.5 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4280.8 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4286.9 "Baleful Comet 1" #sync / 1[56]:[^:]*:Seeker Avatar:5AD7:/ -4287.9 "Baleful Comet 2" #sync / 1[56]:[^:]*:Seeker Avatar:5AD7:/ -4288.9 "Baleful Comet 3" #sync / 1[56]:[^:]*: Seeker Avatar:5AD7:/ -4289.9 "Baleful Comet 4" #sync / 1[56]:[^:]*:Seeker Avatar:5AD7:/ -4290.9 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4294.5 "Baleful Firestorm" #sync / 1[56]:[^:]*:Seeker Avatar:5AD8:/ -4295.1 "First Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B61:/ -4296.5 "Baleful Firestorm" #sync / 1[56]:[^:]*:Seeker Avatar:5AD8:/ -4298.3 "Second Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B62:/ -4298.5 "Baleful Firestorm" #sync / 1[56]:[^:]*:Seeker Avatar:5AD8:/ -4300.5 "Baleful Firestorm" #sync / 1[56]:[^:]*:Seeker Avatar:5AD8:/ -4301.5 "Third Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B63:/ -4304.7 "Fourth Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B64:/ -4307.1 "Mercy Fourfold 1" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4309.0 "Mercy Fourfold 2" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4309.7 "Seasons Of Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5AC7:/ -4311.0 "Mercy Fourfold 3" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4312.9 "Mercy Fourfold 4" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4314.3 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AC8:/ -4315.8 "Merciful Moon" sync / 1[56]:[^:]*:Aetherial Orb:5AC9:/ -4318.4 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AC8:/ -4321.8 "Merciful Blooms" sync / 1[56]:[^:]*:Trinity Seeker:5ACA:/ +4262.8 "--sync--" StartsUsing { id: "5A97", source: "Trinity Seeker" } window 300,10 +4265.8 "Verdant Path" Ability { id: "5A97", source: "Trinity Seeker" } +4270.4 "Act Of Mercy" Ability { id: "5ACF", source: "Trinity Seeker" } +4276.5 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4280.8 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4286.9 "Baleful Comet 1" #Ability { id: "5AD7", source: "Seeker Avatar" } +4287.9 "Baleful Comet 2" #Ability { id: "5AD7", source: "Seeker Avatar" } +4288.9 "Baleful Comet 3" #Ability { id: "5AD7", source: " Seeker Avatar" } +4289.9 "Baleful Comet 4" #Ability { id: "5AD7", source: "Seeker Avatar" } +4290.9 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4294.5 "Baleful Firestorm" #Ability { id: "5AD8", source: "Seeker Avatar" } +4295.1 "First Mercy" Ability { id: "5B61", source: "Trinity Seeker" } +4296.5 "Baleful Firestorm" #Ability { id: "5AD8", source: "Seeker Avatar" } +4298.3 "Second Mercy" Ability { id: "5B62", source: "Trinity Seeker" } +4298.5 "Baleful Firestorm" #Ability { id: "5AD8", source: "Seeker Avatar" } +4300.5 "Baleful Firestorm" #Ability { id: "5AD8", source: "Seeker Avatar" } +4301.5 "Third Mercy" Ability { id: "5B63", source: "Trinity Seeker" } +4304.7 "Fourth Mercy" Ability { id: "5B64", source: "Trinity Seeker" } +4307.1 "Mercy Fourfold 1" #Ability { id: "5B94", source: "Trinity Seeker" } +4309.0 "Mercy Fourfold 2" #Ability { id: "5B94", source: "Trinity Seeker" } +4309.7 "Seasons Of Mercy" Ability { id: "5AC7", source: "Seeker Avatar" } +4311.0 "Mercy Fourfold 3" #Ability { id: "5B94", source: "Trinity Seeker" } +4312.9 "Mercy Fourfold 4" #Ability { id: "5B94", source: "Trinity Seeker" } +4314.3 "Merciful Breeze" Ability { id: "5AC8", source: "Trinity Seeker" } +4315.8 "Merciful Moon" Ability { id: "5AC9", source: "Aetherial Orb" } +4318.4 "Merciful Breeze" Ability { id: "5AC8", source: "Trinity Seeker" } +4321.8 "Merciful Blooms" Ability { id: "5ACA", source: "Trinity Seeker" } 4325.1 "--chains--" duration 3.1 -4335.2 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AD3:/ -4346.5 "Merciful Arc" sync / 1[56]:[^:]*:Trinity Seeker:5AD4:/ -4349.7 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4354.0 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4361.2 "First Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B61:/ -4364.4 "Second Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B62:/ -4365.4 "--jump--" sync / 1[56]:[^:]*:Seeker Avatar:5A9A:/ -4367.6 "Third Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B63:/ -4370.8 "Fourth Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5B64:/ -4371.6 "Iron Splitter" sync / 1[56]:[^:]*:Seeker Avatar:5AC0:/ -4373.2 "Mercy Fourfold 1" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4375.1 "Mercy Fourfold 2" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4377.0 "Mercy Fourfold 3" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4378.9 "Mercy Fourfold 4" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4380.6 "Iron Splitter" sync / 1[56]:[^:]*:Seeker Avatar:5AC0:/ -4382.8 "--jump--" sync / 1[56]:[^:]*:Seeker Avatar:5A9A:/ -4389.5 "Iron Splitter" sync / 1[56]:[^:]*:Seeker Avatar:5AC0:/ -4390.3 "Seasons Of Mercy" sync / 1[56]:[^:]*:Trinity Seeker:5AC7:/ -4394.8 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AC8:/ -4396.3 "Merciful Moon" sync / 1[56]:[^:]*:Aetherial Orb:5AC9:/ -4398.9 "Merciful Breeze" sync / 1[56]:[^:]*:Trinity Seeker:5AC8:/ -4400.9 "Iron Rose" sync / 1[56]:[^:]*:Seeker Avatar:5AD9:/ -4402.2 "Merciful Blooms" sync / 1[56]:[^:]*:Trinity Seeker:5ACA:/ -4412.3 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AD3:/ +4335.2 "Verdant Tempest" Ability { id: "5AD3", source: "Trinity Seeker" } +4346.5 "Merciful Arc" Ability { id: "5AD4", source: "Trinity Seeker" } +4349.7 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4354.0 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4361.2 "First Mercy" Ability { id: "5B61", source: "Trinity Seeker" } +4364.4 "Second Mercy" Ability { id: "5B62", source: "Trinity Seeker" } +4365.4 "--jump--" Ability { id: "5A9A", source: "Seeker Avatar" } +4367.6 "Third Mercy" Ability { id: "5B63", source: "Trinity Seeker" } +4370.8 "Fourth Mercy" Ability { id: "5B64", source: "Trinity Seeker" } +4371.6 "Iron Splitter" Ability { id: "5AC0", source: "Seeker Avatar" } +4373.2 "Mercy Fourfold 1" #Ability { id: "5B94", source: "Trinity Seeker" } +4375.1 "Mercy Fourfold 2" #Ability { id: "5B94", source: "Trinity Seeker" } +4377.0 "Mercy Fourfold 3" #Ability { id: "5B94", source: "Trinity Seeker" } +4378.9 "Mercy Fourfold 4" #Ability { id: "5B94", source: "Trinity Seeker" } +4380.6 "Iron Splitter" Ability { id: "5AC0", source: "Seeker Avatar" } +4382.8 "--jump--" Ability { id: "5A9A", source: "Seeker Avatar" } +4389.5 "Iron Splitter" Ability { id: "5AC0", source: "Seeker Avatar" } +4390.3 "Seasons Of Mercy" Ability { id: "5AC7", source: "Trinity Seeker" } +4394.8 "Merciful Breeze" Ability { id: "5AC8", source: "Trinity Seeker" } +4396.3 "Merciful Moon" Ability { id: "5AC9", source: "Aetherial Orb" } +4398.9 "Merciful Breeze" Ability { id: "5AC8", source: "Trinity Seeker" } +4400.9 "Iron Rose" Ability { id: "5AD9", source: "Seeker Avatar" } +4402.2 "Merciful Blooms" Ability { id: "5ACA", source: "Trinity Seeker" } +4412.3 "Verdant Tempest" Ability { id: "5AD3", source: "Trinity Seeker" } # Baleful Air v2 -4422.5 "--sync--" sync / 14:[^:]*:Trinity Seeker:5A98:/ window 300,10 -4425.5 "Verdant Path" sync / 1[56]:[^:]*:Trinity Seeker:5A98:/ -4430.2 "Baleful Swathe" sync / 1[56]:[^:]*:Trinity Seeker:5AD0:/ -4433.4 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4437.8 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4448.0 "Phantom Edge" sync / 1[56]:[^:]*:Trinity Seeker:5ABD:/ -4450.2 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4451.1 "First Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5B61:/ -4454.3 "Second Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5B62:/ -4457.5 "Third Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5B63:/ -4459.2 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5ABF:/ -4460.7 "Fourth Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5B64:/ -4463.1 "Mercy Fourfold 1" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4465.0 "Mercy Fourfold 2" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4466.9 "Mercy Fourfold 3" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4468.8 "Mercy Fourfold 4" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ +4422.5 "--sync--" StartsUsing { id: "5A98", source: "Trinity Seeker" } window 300,10 +4425.5 "Verdant Path" Ability { id: "5A98", source: "Trinity Seeker" } +4430.2 "Baleful Swathe" Ability { id: "5AD0", source: "Trinity Seeker" } +4433.4 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4437.8 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4448.0 "Phantom Edge" Ability { id: "5ABD", source: "Trinity Seeker" } +4450.2 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4451.1 "First Mercy" Ability { id: "5B61", source: "Seeker Avatar" } +4454.3 "Second Mercy" Ability { id: "5B62", source: "Seeker Avatar" } +4457.5 "Third Mercy" Ability { id: "5B63", source: "Seeker Avatar" } +4459.2 "Baleful Blade" Ability { id: "5ABF", source: "Trinity Seeker" } +4460.7 "Fourth Mercy" Ability { id: "5B64", source: "Seeker Avatar" } +4463.1 "Mercy Fourfold 1" #Ability { id: "5B94", source: "Trinity Seeker" } +4465.0 "Mercy Fourfold 2" #Ability { id: "5B94", source: "Trinity Seeker" } +4466.9 "Mercy Fourfold 3" #Ability { id: "5B94", source: "Trinity Seeker" } +4468.8 "Mercy Fourfold 4" #Ability { id: "5B94", source: "Trinity Seeker" } 4472.2 "--chains--" duration 3.1 -4482.4 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5AD3:/ -4484.6 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4488.8 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4498.4 "Phantom Edge?" sync / 1[56]:[^:]*:Trinity Seeker:5ABD:/ -4500.1 "--jump--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4504.9 "Iron Splitter" sync / 1[56]:[^:]*:Seeker Avatar:5AC0:/ -4509.2 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5AB[EF]:/ -4514.5 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4518.7 "Manifest Avatar" sync / 1[56]:[^:]*:Trinity Seeker:5ADA:/ -4530.9 "First Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5B61:/ -4534.1 "Second Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5B62:/ +4482.4 "Verdant Tempest" Ability { id: "5AD3", source: "Trinity Seeker" } +4484.6 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4488.8 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4498.4 "Phantom Edge?" Ability { id: "5ABD", source: "Trinity Seeker" } +4500.1 "--jump--" Ability { id: "5A9A", source: "Trinity Seeker" } +4504.9 "Iron Splitter" Ability { id: "5AC0", source: "Seeker Avatar" } +4509.2 "Baleful Blade" Ability { id: "5AB[EF]", source: "Trinity Seeker" } +4514.5 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4518.7 "Manifest Avatar" Ability { id: "5ADA", source: "Trinity Seeker" } +4530.9 "First Mercy" Ability { id: "5B61", source: "Seeker Avatar" } +4534.1 "Second Mercy" Ability { id: "5B62", source: "Seeker Avatar" } 4534.7 "--chains--" duration 3.1 -4537.3 "Third Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5B63:/ -4540.5 "Fourth Mercy" sync / 1[56]:[^:]*:Seeker Avatar:5B64:/ -4541.8 "Phantom Edge?" sync / 1[56]:[^:]*:Trinity Seeker:5ABD:/ -4543.0 "Mercy Fourfold 1" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4544.0 "--middle--" sync / 1[56]:[^:]*:Trinity Seeker:5A9A:/ -4544.9 "Mercy Fourfold 2" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4546.8 "Mercy Fourfold 3" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4548.7 "Mercy Fourfold 4" #sync / 1[56]:[^:]*:Trinity Seeker:5B94:/ -4553.1 "Baleful Blade" sync / 1[56]:[^:]*:Trinity Seeker:5AB[EF]:/ -4562.3 "Phantom Edge?" sync / 1[56]:[^:]*:Trinity Seeker:5ABD:/ -4568.4 "Baleful Onslaught" sync / 1[56]:[^:]*:Trinity Seeker:5AD[56]:/ +4537.3 "Third Mercy" Ability { id: "5B63", source: "Seeker Avatar" } +4540.5 "Fourth Mercy" Ability { id: "5B64", source: "Seeker Avatar" } +4541.8 "Phantom Edge?" Ability { id: "5ABD", source: "Trinity Seeker" } +4543.0 "Mercy Fourfold 1" #Ability { id: "5B94", source: "Trinity Seeker" } +4544.0 "--middle--" Ability { id: "5A9A", source: "Trinity Seeker" } +4544.9 "Mercy Fourfold 2" #Ability { id: "5B94", source: "Trinity Seeker" } +4546.8 "Mercy Fourfold 3" #Ability { id: "5B94", source: "Trinity Seeker" } +4548.7 "Mercy Fourfold 4" #Ability { id: "5B94", source: "Trinity Seeker" } +4553.1 "Baleful Blade" Ability { id: "5AB[EF]", source: "Trinity Seeker" } +4562.3 "Phantom Edge?" Ability { id: "5ABD", source: "Trinity Seeker" } +4568.4 "Baleful Onslaught" Ability { id: "5AD[56]", source: "Trinity Seeker" } # Enrage -4580.9 "--sync--" sync / 14:[^:]*:Trinity Seeker:5BBA:/ window 1000,10 -4590.9 "Verdant Tempest Enrage" sync / 1[56]:[^:]*:Trinity Seeker:5BBA:/ -4593.0 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5BBB:/ window 10,10 # x infinity -4595.0 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5BBB:/ -4597.0 "Verdant Tempest" sync / 1[56]:[^:]*:Trinity Seeker:5BBB:/ +4580.9 "--sync--" StartsUsing { id: "5BBA", source: "Trinity Seeker" } window 1000,10 +4590.9 "Verdant Tempest Enrage" Ability { id: "5BBA", source: "Trinity Seeker" } +4593.0 "Verdant Tempest" Ability { id: "5BBB", source: "Trinity Seeker" } window 10,10 # x infinity +4595.0 "Verdant Tempest" Ability { id: "5BBB", source: "Trinity Seeker" } +4597.0 "Verdant Tempest" Ability { id: "5BBB", source: "Trinity Seeker" } ### Dahu @@ -311,97 +311,97 @@ hideall "--sync--" # override it. Dahu will only end when Dahu is killed, which can only be seen if you # are in the Dahu fight. # The Hall of Supplication will be sealed off -6000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1D:/ window 6000,0 -6000.0 "--Reset--" sync / 19:[^:]*:Dahu:/ window 0,2000 jump 0 -6008.4 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:576D:/ window 10,2.5 -6014.5 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:576D:/ -6022.7 "Hot Charge 1" sync / 1[56]:[^:]*:Dahu:5773:/ -6027.5 "Hot Charge 2" sync / 1[56]:[^:]*:Dahu:5773:/ -6034.3 "Firebreathe" sync / 1[56]:[^:]*:Dahu:5774:/ -6046.5 "--sync--" sync / 1[56]:[^:]*:Marchosias:576A:/ -6051.8 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6057.5 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ - -6061.4 "Spit Flame" sync / 1[56]:[^:]*:Dahu:5776:/ -6061.6 "Spit Flame 1" #sync / 1[56]:[^:]*:Dahu:5777:/ -6062.7 "Spit Flame 2" #sync / 1[56]:[^:]*:Dahu:5777:/ -6063.8 "Spit Flame 3" #sync / 1[56]:[^:]*:Dahu:5777:/ -6065.0 "Spit Flame 4" #sync / 1[56]:[^:]*:Dahu:5777:/ -6069.1 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6071.1 "Right-Sided Shockwave/Left-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:57(70|6F):/ -6073.7 "Left-Sided Shockwave/Right-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:577[12]:/ -6074.8 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6081.4 "Feral Howl" sync / 1[56]:[^:]*:Dahu:5767:/ -6083.5 "--knockback--" sync / 1[56]:[^:]*:Dahu:5B35:/ -6084.9 "Hunter's Claw" sync / 1[56]:[^:]*:Marchosias:5769:/ -6091.5 "Firebreathe x5" sync / 1[56]:[^:]*:Dahu:576B:/ duration 8.7 -6112.5 "--sync--" sync / 1[56]:[^:]*:Crowned Marchosias:576A:/ -6117.5 "--sync--" sync / 1[56]:[^:]*:Crowned Marchosias:576A:/ -6122.5 "--sync--" sync / 1[56]:[^:]*:Crowned Marchosias:576A:/ -6142.5 "--sync--" sync / 1[56]:[^:]*:Marchosias:576A:/ -6142.5 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:576D:/ -6147.6 "Falling Rock x6" duration 10 #sync / 1[56]:[^:]*:Dahu:576E:/ -6147.7 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6151.6 "Right-Sided Shockwave/Left-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:57(70|6F):/ -6153.4 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6154.1 "Left-Sided Shockwave/Right-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:577[12]:/ -6159.1 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ - -6164.7 "Spit Flame" sync / 1[56]:[^:]*:Dahu:5776:/ -6165.0 "Spit Flame 1" #sync / 1[56]:[^:]*:Dahu:5777:/ -6166.1 "Spit Flame 2" #sync / 1[56]:[^:]*:Dahu:5777:/ -6167.3 "Spit Flame 3" #sync / 1[56]:[^:]*:Dahu:5777:/ -6168.4 "Spit Flame 4" #sync / 1[56]:[^:]*:Dahu:5777:/ -6174.6 "Hysteric Assault" sync / 1[56]:[^:]*:Dahu:5778:/ -6175.5 "--knockback--" sync / 1[56]:[^:]*:Dahu:5B43:/ -6177.7 "Burn x2" sync / 1[56]:[^:]*:Dahu:5463:/ -6178.1 "Hunter's Claw" sync / 1[56]:[^:]*:Marchosias:5769:/ -6187.6 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6188.9 "Firebreathe x5" sync / 1[56]:[^:]*:Dahu:576B:/ duration 8.7 -6209.9 "Right-Sided Shockwave/Left-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:57(70|6F):/ -6212.5 "Left-Sided Shockwave/Right-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:577[12]:/ +6000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1D" } window 6000,0 +6000.0 "--Reset--" WasDefeated { target: "Dahu" } window 0,2000 jump 0 +6008.4 "Reverberating Roar" Ability { id: "576D", source: "Dahu" } window 10,2.5 +6014.5 "Reverberating Roar" Ability { id: "576D", source: "Dahu" } +6022.7 "Hot Charge 1" Ability { id: "5773", source: "Dahu" } +6027.5 "Hot Charge 2" Ability { id: "5773", source: "Dahu" } +6034.3 "Firebreathe" Ability { id: "5774", source: "Dahu" } +6046.5 "--sync--" Ability { id: "576A", source: "Marchosias" } +6051.8 "Head Down" Ability { id: "5768", source: "Marchosias" } +6057.5 "Head Down" Ability { id: "5768", source: "Marchosias" } + +6061.4 "Spit Flame" Ability { id: "5776", source: "Dahu" } +6061.6 "Spit Flame 1" #Ability { id: "5777", source: "Dahu" } +6062.7 "Spit Flame 2" #Ability { id: "5777", source: "Dahu" } +6063.8 "Spit Flame 3" #Ability { id: "5777", source: "Dahu" } +6065.0 "Spit Flame 4" #Ability { id: "5777", source: "Dahu" } +6069.1 "Head Down" Ability { id: "5768", source: "Marchosias" } +6071.1 "Right-Sided Shockwave/Left-Sided Shockwave" #Ability { id: "57(70|6F)", source: "Dahu" } +6073.7 "Left-Sided Shockwave/Right-Sided Shockwave" #Ability { id: "577[12]", source: "Dahu" } +6074.8 "Head Down" Ability { id: "5768", source: "Marchosias" } +6081.4 "Feral Howl" Ability { id: "5767", source: "Dahu" } +6083.5 "--knockback--" Ability { id: "5B35", source: "Dahu" } +6084.9 "Hunter's Claw" Ability { id: "5769", source: "Marchosias" } +6091.5 "Firebreathe x5" Ability { id: "576B", source: "Dahu" } duration 8.7 +6112.5 "--sync--" Ability { id: "576A", source: "Crowned Marchosias" } +6117.5 "--sync--" Ability { id: "576A", source: "Crowned Marchosias" } +6122.5 "--sync--" Ability { id: "576A", source: "Crowned Marchosias" } +6142.5 "--sync--" Ability { id: "576A", source: "Marchosias" } +6142.5 "Reverberating Roar" Ability { id: "576D", source: "Dahu" } +6147.6 "Falling Rock x6" duration 10 #Ability { id: "576E", source: "Dahu" } +6147.7 "Head Down" Ability { id: "5768", source: "Marchosias" } +6151.6 "Right-Sided Shockwave/Left-Sided Shockwave" #Ability { id: "57(70|6F)", source: "Dahu" } +6153.4 "Head Down" Ability { id: "5768", source: "Marchosias" } +6154.1 "Left-Sided Shockwave/Right-Sided Shockwave" #Ability { id: "577[12]", source: "Dahu" } +6159.1 "Head Down" Ability { id: "5768", source: "Marchosias" } + +6164.7 "Spit Flame" Ability { id: "5776", source: "Dahu" } +6165.0 "Spit Flame 1" #Ability { id: "5777", source: "Dahu" } +6166.1 "Spit Flame 2" #Ability { id: "5777", source: "Dahu" } +6167.3 "Spit Flame 3" #Ability { id: "5777", source: "Dahu" } +6168.4 "Spit Flame 4" #Ability { id: "5777", source: "Dahu" } +6174.6 "Hysteric Assault" Ability { id: "5778", source: "Dahu" } +6175.5 "--knockback--" Ability { id: "5B43", source: "Dahu" } +6177.7 "Burn x2" Ability { id: "5463", source: "Dahu" } +6178.1 "Hunter's Claw" Ability { id: "5769", source: "Marchosias" } +6187.6 "Head Down" Ability { id: "5768", source: "Marchosias" } +6188.9 "Firebreathe x5" Ability { id: "576B", source: "Dahu" } duration 8.7 +6209.9 "Right-Sided Shockwave/Left-Sided Shockwave" #Ability { id: "57(70|6F)", source: "Dahu" } +6212.5 "Left-Sided Shockwave/Right-Sided Shockwave" #Ability { id: "577[12]", source: "Dahu" } # This is a single or a double hot charge. -6221.4 "Hot Charge 1" sync / 1[56]:[^:]*:Dahu:5773:/ -6226.2 "Hot Charge 2?" sync / 1[56]:[^:]*:Dahu:5773:/ -6228.0 "--sync--" sync / 14:[^:]*:Dahu:5774:/ window 20,20 -6233.0 "Firebreathe" sync / 1[56]:[^:]*:Dahu:5774:/ -6246.3 "--sync--" sync / 1[56]:[^:]*:Crowned Marchosias:576A:/ -6251.3 "--sync--" sync / 1[56]:[^:]*:Crowned Marchosias:576A:/ -6252.2 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:576D:/ -6256.3 "--sync--" sync / 1[56]:[^:]*:Crowned Marchosias:576A:/ -6261.3 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:576D:/ -6289.5 "Reverberating Roar" sync / 1[56]:[^:]*:Dahu:576D:/ -6289.5 "--sync--" sync / 1[56]:[^:]*:Marchosias:576A:/ -6289.5 "--sync--" sync / 1[56]:[^:]*:Marchosias:576A:/ -6294.7 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6298.6 "Right-Sided Shockwave/Left-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:57(70|6F):/ -6300.4 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6301.1 "Left-Sided Shockwave/Right-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:577[12]:/ -6306.0 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6306.0 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ - -6311.7 "Spit Flame 1" sync / 1[56]:[^:]*:Dahu:5776:/ -6312.1 "Spit Flame 2" sync / 1[56]:[^:]*:Dahu:5777:/ -6313.3 "Spit Flame 3" sync / 1[56]:[^:]*:Dahu:5777:/ -6314.4 "Spit Flame 4" sync / 1[56]:[^:]*:Dahu:5777:/ -6320.6 "Hysteric Assault" sync / 1[56]:[^:]*:Dahu:5778:/ -6321.5 "--knockback--" sync / 1[56]:[^:]*:Dahu:5B43:/ -6323.7 "Burn x2" sync / 1[56]:[^:]*:Dahu:5463:/ -6324.1 "Hunter's Claw" sync / 1[56]:[^:]*:Marchosias:5769:/ -6334.4 "Head Down" sync / 1[56]:[^:]*:Marchosias:5768:/ -6335.2 "Firebreathe" sync / 1[56]:[^:]*:Dahu:576B:/ -6356.2 "Right-Sided Shockwave/Left-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:57(70|6F):/ -6358.8 "Left-Sided Shockwave/Right-Sided Shockwave" #sync / 1[56]:[^:]*:Dahu:577[12]:/ +6221.4 "Hot Charge 1" Ability { id: "5773", source: "Dahu" } +6226.2 "Hot Charge 2?" Ability { id: "5773", source: "Dahu" } +6228.0 "--sync--" StartsUsing { id: "5774", source: "Dahu" } window 20,20 +6233.0 "Firebreathe" Ability { id: "5774", source: "Dahu" } +6246.3 "--sync--" Ability { id: "576A", source: "Crowned Marchosias" } +6251.3 "--sync--" Ability { id: "576A", source: "Crowned Marchosias" } +6252.2 "Reverberating Roar" Ability { id: "576D", source: "Dahu" } +6256.3 "--sync--" Ability { id: "576A", source: "Crowned Marchosias" } +6261.3 "Reverberating Roar" Ability { id: "576D", source: "Dahu" } +6289.5 "Reverberating Roar" Ability { id: "576D", source: "Dahu" } +6289.5 "--sync--" Ability { id: "576A", source: "Marchosias" } +6289.5 "--sync--" Ability { id: "576A", source: "Marchosias" } +6294.7 "Head Down" Ability { id: "5768", source: "Marchosias" } +6298.6 "Right-Sided Shockwave/Left-Sided Shockwave" #Ability { id: "57(70|6F)", source: "Dahu" } +6300.4 "Head Down" Ability { id: "5768", source: "Marchosias" } +6301.1 "Left-Sided Shockwave/Right-Sided Shockwave" #Ability { id: "577[12]", source: "Dahu" } +6306.0 "Head Down" Ability { id: "5768", source: "Marchosias" } +6306.0 "Head Down" Ability { id: "5768", source: "Marchosias" } + +6311.7 "Spit Flame 1" Ability { id: "5776", source: "Dahu" } +6312.1 "Spit Flame 2" Ability { id: "5777", source: "Dahu" } +6313.3 "Spit Flame 3" Ability { id: "5777", source: "Dahu" } +6314.4 "Spit Flame 4" Ability { id: "5777", source: "Dahu" } +6320.6 "Hysteric Assault" Ability { id: "5778", source: "Dahu" } +6321.5 "--knockback--" Ability { id: "5B43", source: "Dahu" } +6323.7 "Burn x2" Ability { id: "5463", source: "Dahu" } +6324.1 "Hunter's Claw" Ability { id: "5769", source: "Marchosias" } +6334.4 "Head Down" Ability { id: "5768", source: "Marchosias" } +6335.2 "Firebreathe" Ability { id: "576B", source: "Dahu" } +6356.2 "Right-Sided Shockwave/Left-Sided Shockwave" #Ability { id: "57(70|6F)", source: "Dahu" } +6358.8 "Left-Sided Shockwave/Right-Sided Shockwave" #Ability { id: "577[12]", source: "Dahu" } # Probably a loop, but you shouldn't see this charge, let alone the previous one. -6367.8 "Hot Charge 1" sync / 1[56]:[^:]*:Dahu:5773:/ -6372.6 "Hot Charge 2?" sync / 1[56]:[^:]*:Dahu:5773:/ -6374.4 "--sync--" sync / 14:[^:]*:Dahu:5774:/ window 100,100 jump 6228.0 -6379.4 "Firebreathe" sync / 1[56]:[^:]*:Dahu:5774:/ -6398.6 "Reverberating Roar" #sync / 1[56]:[^:]*:Dahu:576D:/ -6407.7 "Reverberating Roar" #sync / 1[56]:[^:]*:Dahu:576D:/ -6435.9 "Reverberating Roar" #sync / 1[56]:[^:]*:Dahu:576D:/ +6367.8 "Hot Charge 1" Ability { id: "5773", source: "Dahu" } +6372.6 "Hot Charge 2?" Ability { id: "5773", source: "Dahu" } +6374.4 "--sync--" StartsUsing { id: "5774", source: "Dahu" } window 100,100 jump 6228.0 +6379.4 "Firebreathe" Ability { id: "5774", source: "Dahu" } +6398.6 "Reverberating Roar" #Ability { id: "576D", source: "Dahu" } +6407.7 "Reverberating Roar" #Ability { id: "576D", source: "Dahu" } +6435.9 "Reverberating Roar" #Ability { id: "576D", source: "Dahu" } ### Stygimoloch Warrior @@ -411,82 +411,82 @@ hideall "--sync--" # This is the zone, but can't use this sync as it can be seen by Dahu. Sync to autos instead. # Pride of the Lioness will be sealed off -#8000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1C:/ window 20000,0 -8000.0 "--Reset--" sync / 00:0044:Stygimoloch Warrior:Why\.\.\.won't\.\.\.you\.\.\./ window 0,2000 jump 0 +#8000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1C" } window 20000,0 +8000.0 "--Reset--" GameLog { code: "0044", name: "Stygimoloch Warrior", line: "Why\.\.\.won't\.\.\.you\.\.\..*?" } window 0,2000 jump 0 # TODO: is there a reset dialog line for losing? # Alternatively, we could always insert " 19:${data.me} was defeated by" from script. -8002.1 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Warrior:1961:/ window 20000,0 -8009.1 "--sync--" sync / 14:[^:]*:Stygimoloch Warrior:5796:/ window 20,20 -8012.1 "Surge of Vigor" sync / 1[56]:[^:]*:Stygimoloch Warrior:5796:/ -8024.3 "Unrelenting Charge x3" sync / 1[56]:[^:]*:Stygimoloch Warrior:5799:/ -8035.4 "--north--" sync / 1[56]:[^:]*:Stygimoloch Warrior:577C:/ -8039.7 "Entrapment" sync / 1[56]:[^:]*:Stygimoloch Warrior:577D:/ -8040.5 "--knockback--" sync / 1[56]:[^:]*:Stygimoloch Warrior:577E:/ -8061.8 "Lethal Blow" sync / 1[56]:[^:]*:Stygimoloch Warrior:577F:/ -8067.9 "Vicious Swipe" sync / 1[56]:[^:]*:Stygimoloch Warrior:5797:/ +8002.1 "--sync--" Ability { id: "1961", source: "Stygimoloch Warrior" } window 20000,0 +8009.1 "--sync--" StartsUsing { id: "5796", source: "Stygimoloch Warrior" } window 20,20 +8012.1 "Surge of Vigor" Ability { id: "5796", source: "Stygimoloch Warrior" } +8024.3 "Unrelenting Charge x3" Ability { id: "5799", source: "Stygimoloch Warrior" } +8035.4 "--north--" Ability { id: "577C", source: "Stygimoloch Warrior" } +8039.7 "Entrapment" Ability { id: "577D", source: "Stygimoloch Warrior" } +8040.5 "--knockback--" Ability { id: "577E", source: "Stygimoloch Warrior" } +8061.8 "Lethal Blow" Ability { id: "577F", source: "Stygimoloch Warrior" } +8067.9 "Vicious Swipe" Ability { id: "5797", source: "Stygimoloch Warrior" } 8069.9 "--knockback--" -8069.9 "Crazed Rampage" sync / 1[56]:[^:]*:Stygimoloch Warrior:5798:/ -8081.0 "Focused Tremor" sync / 1[56]:[^:]*:Stygimoloch Warrior:578E:/ -8083.2 "--corner--" sync / 1[56]:[^:]*:Stygimoloch Warrior:577C:/ -8089.8 "Focused Tremor 1" #sync / 1[56]:[^:]*:Stygimoloch Warrior:578F:/ -8091.8 "Focused Tremor 2" #sync / 1[56]:[^:]*:Stygimoloch Warrior:578F:/ -8093.8 "Focused Tremor 3" #sync / 1[56]:[^:]*:Stygimoloch Warrior:578F:/ -8095.8 "Focused Tremor 4" #sync / 1[56]:[^:]*:Stygimoloch Warrior:578F:/ -8099.4 "Forceful Strike" sync / 1[56]:[^:]*:Stygimoloch Warrior:5792:/ -8109.5 "--middle--" sync / 1[56]:[^:]*:Stygimoloch Warrior:577C:/ -8113.7 "Inescapable Entrapment" sync / 1[56]:[^:]*:Stygimoloch Warrior:5780:/ +8069.9 "Crazed Rampage" Ability { id: "5798", source: "Stygimoloch Warrior" } +8081.0 "Focused Tremor" Ability { id: "578E", source: "Stygimoloch Warrior" } +8083.2 "--corner--" Ability { id: "577C", source: "Stygimoloch Warrior" } +8089.8 "Focused Tremor 1" #Ability { id: "578F", source: "Stygimoloch Warrior" } +8091.8 "Focused Tremor 2" #Ability { id: "578F", source: "Stygimoloch Warrior" } +8093.8 "Focused Tremor 3" #Ability { id: "578F", source: "Stygimoloch Warrior" } +8095.8 "Focused Tremor 4" #Ability { id: "578F", source: "Stygimoloch Warrior" } +8099.4 "Forceful Strike" Ability { id: "5792", source: "Stygimoloch Warrior" } +8109.5 "--middle--" Ability { id: "577C", source: "Stygimoloch Warrior" } +8113.7 "Inescapable Entrapment" Ability { id: "5780", source: "Stygimoloch Warrior" } # Single Trap -8120.8 "--sync--" sync / 14:[^:]*:Stygimoloch Warrior:578[15]:/ window 20,20 -8133.8 "Surging Flames/Withering Curse?" sync / 1[56]:[^:]*:Stygimoloch Warrior:578[15]:/ -8133.8 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Warrior:5781:/ jump 8137.3 # if Surging Flames, skip +3.5s ahead -8136.4 "Devour?" sync / 1[56]:[^:]*:Stygimoloch Warrior:5789:/ # only if Withering Curse +8120.8 "--sync--" StartsUsing { id: "578[15]", source: "Stygimoloch Warrior" } window 20,20 +8133.8 "Surging Flames/Withering Curse?" Ability { id: "578[15]", source: "Stygimoloch Warrior" } +8133.8 "--sync--" Ability { id: "5781", source: "Stygimoloch Warrior" } jump 8137.3 # if Surging Flames, skip +3.5s ahead +8136.4 "Devour?" Ability { id: "5789", source: "Stygimoloch Warrior" } # only if Withering Curse # Round 2 -8146.6 "--sync--" sync / 14:[^:]*:Stygimoloch Warrior:5796:/ window 20,20 -8149.6 "Surge of Vigor" sync / 1[56]:[^:]*:Stygimoloch Warrior:5796:/ -8163.7 "Focused Tremor x16" sync / 1[56]:[^:]*:Stygimoloch Warrior:578E:/ duration 30.7 -8167.8 "--middle--" sync / 1[56]:[^:]*:Stygimoloch Warrior:577C:/ -8178.2 "Flailing Strike x7" sync / 1[56]:[^:]*:Stygimoloch Warrior:578C:/ duration 8.7 -8191.7 "Vicious Swipe" sync / 1[56]:[^:]*:Stygimoloch Warrior:5797:/ +8146.6 "--sync--" StartsUsing { id: "5796", source: "Stygimoloch Warrior" } window 20,20 +8149.6 "Surge of Vigor" Ability { id: "5796", source: "Stygimoloch Warrior" } +8163.7 "Focused Tremor x16" Ability { id: "578E", source: "Stygimoloch Warrior" } duration 30.7 +8167.8 "--middle--" Ability { id: "577C", source: "Stygimoloch Warrior" } +8178.2 "Flailing Strike x7" Ability { id: "578C", source: "Stygimoloch Warrior" } duration 8.7 +8191.7 "Vicious Swipe" Ability { id: "5797", source: "Stygimoloch Warrior" } 8193.7 "--knockback--" -8193.7 "Crazed Rampage" sync / 1[56]:[^:]*:Stygimoloch Warrior:5798:/ -8202.9 "--middle--" sync / 1[56]:[^:]*:Stygimoloch Warrior:577C:/ -8207.2 "Inescapable Entrapment" sync / 1[56]:[^:]*:Stygimoloch Warrior:5780:/ +8193.7 "Crazed Rampage" Ability { id: "5798", source: "Stygimoloch Warrior" } +8202.9 "--middle--" Ability { id: "577C", source: "Stygimoloch Warrior" } +8207.2 "Inescapable Entrapment" Ability { id: "5780", source: "Stygimoloch Warrior" } # Triple Trap -8210.4 "--sync--" sync / 14:[^:]*:Stygimoloch Warrior:578[15]:/ window 20,20 -8223.4 "Surging Flames/Withering Curse?" sync / 1[56]:[^:]*:Stygimoloch Warrior:578[15]:/ -8223.4 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Warrior:5781:/ jump 8223.9 # if Surging Flames, skip +3.5s ahead -8225.8 "Devour?" sync / 1[56]:[^:]*:Stygimoloch Warrior:5789:/ # only if Withering Curse -8229.9 "--sync--" sync / 14:[^:]*:Stygimoloch Warrior:5783:/ window 20,20 -8239.9 "Surging Flood" sync / 1[56]:[^:]*:Stygimoloch Warrior:5783:/ -8248.1 "Leaping Spark x3" sync / 1[56]:[^:]*:Stygimoloch Warrior:578A:/ +8210.4 "--sync--" StartsUsing { id: "578[15]", source: "Stygimoloch Warrior" } window 20,20 +8223.4 "Surging Flames/Withering Curse?" Ability { id: "578[15]", source: "Stygimoloch Warrior" } +8223.4 "--sync--" Ability { id: "5781", source: "Stygimoloch Warrior" } jump 8223.9 # if Surging Flames, skip +3.5s ahead +8225.8 "Devour?" Ability { id: "5789", source: "Stygimoloch Warrior" } # only if Withering Curse +8229.9 "--sync--" StartsUsing { id: "5783", source: "Stygimoloch Warrior" } window 20,20 +8239.9 "Surging Flood" Ability { id: "5783", source: "Stygimoloch Warrior" } +8248.1 "Leaping Spark x3" Ability { id: "578A", source: "Stygimoloch Warrior" } # From here on is without log # Unsure which ID Coerce is: 5795, 5794, 5793 -8263.1 "Coerce" sync / 1[56]:[^:]*:Stygimoloch Warrior:579[345]:/ window 20,20 +8263.1 "Coerce" Ability { id: "579[345]", source: "Stygimoloch Warrior" } window 20,20 # Round 3 -8269.1 "Surge of Vigor" sync / 1[56]:[^:]*:Stygimoloch Warrior:5796:/ window 20,20 -8284.0 "Focused Tremor" sync / 1[56]:[^:]*:Stygimoloch Warrior:578E:/ -8286.3 "--corner--" sync / 1[56]:[^:]*:Stygimoloch Warrior:577C:/ -8292.8 "Focused Tremor 1" sync / 1[56]:[^:]*:Stygimoloch Warrior:578F:/ -8294.8 "Focused Tremor 2" #sync / 1[56]:[^:]*:Stygimoloch Warrior:578F:/ -8296.8 "Focused Tremor 3" #sync / 1[56]:[^:]*:Stygimoloch Warrior:578F:/ -8298.8 "Focused Tremor 4" #sync / 1[56]:[^:]*:Stygimoloch Warrior:578F:/ -8302.4 "Forceful Strike" sync / 1[56]:[^:]*:Stygimoloch Warrior:5792:/ +8269.1 "Surge of Vigor" Ability { id: "5796", source: "Stygimoloch Warrior" } window 20,20 +8284.0 "Focused Tremor" Ability { id: "578E", source: "Stygimoloch Warrior" } +8286.3 "--corner--" Ability { id: "577C", source: "Stygimoloch Warrior" } +8292.8 "Focused Tremor 1" Ability { id: "578F", source: "Stygimoloch Warrior" } +8294.8 "Focused Tremor 2" #Ability { id: "578F", source: "Stygimoloch Warrior" } +8296.8 "Focused Tremor 3" #Ability { id: "578F", source: "Stygimoloch Warrior" } +8298.8 "Focused Tremor 4" #Ability { id: "578F", source: "Stygimoloch Warrior" } +8302.4 "Forceful Strike" Ability { id: "5792", source: "Stygimoloch Warrior" } # Round 4 -8315.1 "Surge of Vigor" sync / 1[56]:[^:]*:Stygimoloch Warrior:5796:/ window 20,20 -8327.3 "Unrelenting Charge x3" sync / 1[56]:[^:]*:Stygimoloch Warrior:5799:/ -8336.3 "Vicious Swipe" sync / 1[56]:[^:]*:Stygimoloch Warrior:5797:/ +8315.1 "Surge of Vigor" Ability { id: "5796", source: "Stygimoloch Warrior" } window 20,20 +8327.3 "Unrelenting Charge x3" Ability { id: "5799", source: "Stygimoloch Warrior" } +8336.3 "Vicious Swipe" Ability { id: "5797", source: "Stygimoloch Warrior" } 8338.3 "--knockback--" -8338.3 "Crazed Rampage" sync / 1[56]:[^:]*:Stygimoloch Warrior:5798:/ -8348.3 "--middle--" sync / 1[56]:[^:]*:Stygimoloch Warrior:577C:/ +8338.3 "Crazed Rampage" Ability { id: "5798", source: "Stygimoloch Warrior" } +8348.3 "--middle--" Ability { id: "577C", source: "Stygimoloch Warrior" } -8359.1 "Sun's Ire (Enrage)" sync / 1[56]:[^:]*:Stygimoloch Warrior:577A:/ window 20,20 +8359.1 "Sun's Ire (Enrage)" Ability { id: "577A", source: "Stygimoloch Warrior" } window 20,20 ### Queen's Guard @@ -505,168 +505,168 @@ hideall "--sync--" # - 5823 (59BE) # The Hall of Hieromancy will be sealed off -10000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1E:/ window 20000,0 +10000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1E" } window 20000,0 # .*is no longer sealed -10000.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 0,2000 jump 0 +10000.0 "--Reset--" SystemLogMessage { id: "7DE" } window 0,2000 jump 0 # ranged auto should be reasonably timed -10002.5 "--sync--" sync / 1[56]:[^:]*:Queen's Gunner:5858:/ window 3,1 +10002.5 "--sync--" Ability { id: "5858", source: "Queen's Gunner" } window 3,1 # Phase 1: aoes (to 80%) -10011.5 "--sync--" sync / 14:[^:]*:Queen's Warrior:5831:/ window 20,20 -10016.6 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5831:/ -10025.6 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5841:/ +10011.5 "--sync--" StartsUsing { id: "5831", source: "Queen's Warrior" } window 20,20 +10016.6 "Blood And Bone" Ability { id: "5831", source: "Queen's Warrior" } +10025.6 "Blood And Bone" Ability { id: "5841", source: "Queen's Soldier" } 10030.6 "--untargetable--" # Phase 2: Warrior + Knight section -10033.9 "--targetable--" sync / 22:........:Queen's Knight:........:Queen's Knight:01/ window 25,0 -10051.1 "--sync--" sync / 14:[^:]*:Queen's Warrior:5825:/ window 60,20 -10056.1 "Relentless Battery" sync / 1[56]:[^:]*:Queen's Warrior:5825:/ -10062.2 "Shield Omen/Sword Omen" sync / 1[56]:[^:]*:Queen's Knight:581[45]:/ +10033.9 "--targetable--" NameToggle { name: "Queen's Knight", toggle: "01" } window 25,0 +10051.1 "--sync--" StartsUsing { id: "5825", source: "Queen's Warrior" } window 60,20 +10056.1 "Relentless Battery" Ability { id: "5825", source: "Queen's Warrior" } +10062.2 "Shield Omen/Sword Omen" Ability { id: "581[45]", source: "Queen's Knight" } -10063.2 "Bombslinger" sync / 1[56]:[^:]*:Queen's Warrior:5AFE:/ +10063.2 "Bombslinger" Ability { id: "5AFE", source: "Queen's Warrior" } 10066.3 "--tethers--" 10069.3 "--untargetable--" # knight -10070.3 "Reversal Of Forces" sync / 1[56]:[^:]*:Queen's Warrior:5829:/ -10070.3 "--sync--" sync / 1[56]:[^:]*:Queen's Warrior:5A94:/ -10079.5 "Optimal Offensive" sync / 1[56]:[^:]*:Queen's Knight:581[9A]:/ -10081.1 "Unlucky Lot" #sync / 1[56]:[^:]*:Aetherial Sphere:581D:/ -10081.4 "Above Board" sync / 1[56]:[^:]*:Queen's Warrior:5826:/ +10070.3 "Reversal Of Forces" Ability { id: "5829", source: "Queen's Warrior" } +10070.3 "--sync--" Ability { id: "5A94", source: "Queen's Warrior" } +10079.5 "Optimal Offensive" Ability { id: "581[9A]", source: "Queen's Knight" } +10081.1 "Unlucky Lot" #Ability { id: "581D", source: "Aetherial Sphere" } +10081.4 "Above Board" Ability { id: "5826", source: "Queen's Warrior" } 10082.4 "--stunned--" # 3 or 7 second stun -10084.5 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Bolt:5828:/ +10084.5 "Lots Cast" #Ability { id: "5828", source: "Aetherial Bolt" } #10085.8 "--targetable--" # knight, everybody stunned, so not listed -10087.5 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Burst:5827:/ -10088.7 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Burst:5BB7:/ +10087.5 "Lots Cast" #Ability { id: "5827", source: "Aetherial Burst" } +10088.7 "Lots Cast" #Ability { id: "5BB7", source: "Aetherial Burst" } 10089.4 "--unstunned--" -10097.6 "Boost" sync / 1[56]:[^:]*:Queen's Warrior:582D:/ -10105.8 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5831:/ -10121.0 "Relentless Battery" sync / 1[56]:[^:]*:Queen's Warrior:5825:/ +10097.6 "Boost" Ability { id: "582D", source: "Queen's Warrior" } +10105.8 "Blood And Bone" Ability { id: "5831", source: "Queen's Warrior" } +10121.0 "Relentless Battery" Ability { id: "5825", source: "Queen's Warrior" } 10124.1 "--tethers--" -10128.1 "Reversal Of Forces" sync / 1[56]:[^:]*:Queen's Warrior:5829:/ -10136.2 "Shield Omen/Sword Omen" sync / 1[56]:[^:]*:Queen's Knight:581[45]:/ -10137.3 "Winds Of Weight" sync / 1[56]:[^:]*:Queen's Warrior:582A:/ -10137.3 "Winds Of Fate" sync / 1[56]:[^:]*:Queen's Warrior:582C:/ -10137.3 "Weight Of Fortune" sync / 1[56]:[^:]*:Queen's Warrior:582B:/ -10144.4 "Optimal Play" sync / 1[56]:[^:]*:Queen's Knight:581[67]:/ -10146.4 "Boost" sync / 1[56]:[^:]*:Queen's Warrior:582D:/ -10154.6 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5831:/ -10163.7 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Warrior:5832:/ +10128.1 "Reversal Of Forces" Ability { id: "5829", source: "Queen's Warrior" } +10136.2 "Shield Omen/Sword Omen" Ability { id: "581[45]", source: "Queen's Knight" } +10137.3 "Winds Of Weight" Ability { id: "582A", source: "Queen's Warrior" } +10137.3 "Winds Of Fate" Ability { id: "582C", source: "Queen's Warrior" } +10137.3 "Weight Of Fortune" Ability { id: "582B", source: "Queen's Warrior" } +10144.4 "Optimal Play" Ability { id: "581[67]", source: "Queen's Knight" } +10146.4 "Boost" Ability { id: "582D", source: "Queen's Warrior" } +10154.6 "Blood And Bone" Ability { id: "5831", source: "Queen's Warrior" } +10163.7 "Rapid Sever" Ability { id: "5832", source: "Queen's Warrior" } # loop, unrolled so there can be an explicit enrage -10185.9 "Relentless Battery" sync / 1[56]:[^:]*:Queen's Warrior:5825:/ -10192.1 "Shield Omen/Sword Omen" sync / 1[56]:[^:]*:Queen's Knight:581[45]:/ +10185.9 "Relentless Battery" Ability { id: "5825", source: "Queen's Warrior" } +10192.1 "Shield Omen/Sword Omen" Ability { id: "581[45]", source: "Queen's Knight" } -10193.0 "Bombslinger" sync / 1[56]:[^:]*:Queen's Warrior:5AFE:/ +10193.0 "Bombslinger" Ability { id: "5AFE", source: "Queen's Warrior" } 10196.1 "--tethers--" 10199.1 "--untargetable--" # knight -10200.1 "Reversal Of Forces" sync / 1[56]:[^:]*:Queen's Warrior:5829:/ -10209.4 "Optimal Offensive" sync / 1[56]:[^:]*:Queen's Knight:581[9A]:/ -10211.0 "Unlucky Lot" #sync / 1[56]:[^:]*:Aetherial Sphere:581D:/ -10211.2 "Above Board" sync / 1[56]:[^:]*:Queen's Warrior:5826:/ +10200.1 "Reversal Of Forces" Ability { id: "5829", source: "Queen's Warrior" } +10209.4 "Optimal Offensive" Ability { id: "581[9A]", source: "Queen's Knight" } +10211.0 "Unlucky Lot" #Ability { id: "581D", source: "Aetherial Sphere" } +10211.2 "Above Board" Ability { id: "5826", source: "Queen's Warrior" } 10212.2 "--stunned--" # 3 or 7 second stun -10211.2 "--sync--" sync / 1[56]:[^:]*:Queen's Warrior:5B72:/ -10214.2 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Burst:5B6D:/ +10211.2 "--sync--" Ability { id: "5B72", source: "Queen's Warrior" } +10214.2 "Lots Cast" #Ability { id: "5B6D", source: "Aetherial Burst" } #10215.5 "--targetable--" # knight, everybody stunned, so not listed -10217.2 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Bolt:5B6C:/ -10218.4 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Bolt:5BB7:/ +10217.2 "Lots Cast" #Ability { id: "5B6C", source: "Aetherial Bolt" } +10218.4 "Lots Cast" #Ability { id: "5BB7", source: "Aetherial Bolt" } 10219.2 "--unstunned--" -10227.3 "Boost" sync / 1[56]:[^:]*:Queen's Warrior:582D:/ -10235.5 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5831:/ -10250.7 "Relentless Battery" sync / 1[56]:[^:]*:Queen's Warrior:5825:/ +10227.3 "Boost" Ability { id: "582D", source: "Queen's Warrior" } +10235.5 "Blood And Bone" Ability { id: "5831", source: "Queen's Warrior" } +10250.7 "Relentless Battery" Ability { id: "5825", source: "Queen's Warrior" } 10253.8 "--tethers--" -10257.8 "Reversal Of Forces" sync / 1[56]:[^:]*:Queen's Warrior:5829:/ -10265.9 "Shield Omen/Sword Omen" sync / 1[56]:[^:]*:Queen's Knight:581[45]:/ -10267.0 "Winds Of Weight" sync / 1[56]:[^:]*:Queen's Warrior:582A:/ -10267.0 "Winds Of Fate" sync / 1[56]:[^:]*:Queen's Warrior:582C:/ -10267.0 "Winds Of Fate" sync / 1[56]:[^:]*:Queen's Warrior:582C:/ -10267.0 "Weight Of Fortune" sync / 1[56]:[^:]*:Queen's Warrior:582B:/ -10274.1 "Optimal Play" sync / 1[56]:[^:]*:Queen's Knight:581[67]:/ -10276.1 "Boost" sync / 1[56]:[^:]*:Queen's Warrior:582D:/ -10284.3 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5831:/ -10293.4 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Warrior:5832:/ +10257.8 "Reversal Of Forces" Ability { id: "5829", source: "Queen's Warrior" } +10265.9 "Shield Omen/Sword Omen" Ability { id: "581[45]", source: "Queen's Knight" } +10267.0 "Winds Of Weight" Ability { id: "582A", source: "Queen's Warrior" } +10267.0 "Winds Of Fate" Ability { id: "582C", source: "Queen's Warrior" } +10267.0 "Winds Of Fate" Ability { id: "582C", source: "Queen's Warrior" } +10267.0 "Weight Of Fortune" Ability { id: "582B", source: "Queen's Warrior" } +10274.1 "Optimal Play" Ability { id: "581[67]", source: "Queen's Knight" } +10276.1 "Boost" Ability { id: "582D", source: "Queen's Warrior" } +10284.3 "Blood And Bone" Ability { id: "5831", source: "Queen's Warrior" } +10293.4 "Rapid Sever" Ability { id: "5832", source: "Queen's Warrior" } # If either die, they will start casting enrage. -10302.9 "--sync--" sync / 14:[^:]*:Queen's Knight:5823:/ window 300,10 -10302.9 "--sync--" sync / 14:[^:]*:Queen's Warrior:5833:/ window 300,10 -10312.9 "Blood and Bone Enrage" sync / 1[56]:[^:]*:Queen's Warrior:5833:/ -10316.0 "Blood and Bone Enrage" sync / 1[56]:[^:]*:Queen's Knight:5B9D:/ window 10,10 # x infinity -10319.1 "Blood and Bone Enrage" sync / 1[56]:[^:]*:Queen's Knight:5B9D:/ -10322.2 "Blood and Bone Enrage" sync / 1[56]:[^:]*:Queen's Knight:5B9D:/ +10302.9 "--sync--" StartsUsing { id: "5823", source: "Queen's Knight" } window 300,10 +10302.9 "--sync--" StartsUsing { id: "5833", source: "Queen's Warrior" } window 300,10 +10312.9 "Blood and Bone Enrage" Ability { id: "5833", source: "Queen's Warrior" } +10316.0 "Blood and Bone Enrage" Ability { id: "5B9D", source: "Queen's Knight" } window 10,10 # x infinity +10319.1 "Blood and Bone Enrage" Ability { id: "5B9D", source: "Queen's Knight" } +10322.2 "Blood and Bone Enrage" Ability { id: "5B9D", source: "Queen's Knight" } # Phase 3: Soldier + Gunner section -10600.0 "--sync--" sync / 22:........:Queen's Gunner:........:Queen's Gunner:01/ window 600,0 -10612.0 "--sync--" sync / 14:[^:]*:Queen's Gunner:5844:/ window 600,0 -10617.0 "Relentless Battery" sync / 1[56]:[^:]*:Queen's Gunner:5844:/ -10623.2 "Great Ball Of Fire" sync / 1[56]:[^:]*:Queen's Soldier:583B:/ -10632.3 "Fool's Gambit" sync / 1[56]:[^:]*:Queen's Soldier:583C:/ -10635.2 "Automatic Turret" sync / 1[56]:[^:]*:Queen's Gunner:584A:/ -10641.3 "Reading" sync / 1[56]:[^:]*:Queen's Gunner:584B:/ -10647.9 "Burn" sync / 1[56]:[^:]*:Immolating Flame:583E:/ -10651.5 "Queen's Shot" sync / 1[56]:[^:]*:Queen's Gunner:584C:/ -10655.0 "Turret's Tour" sync / 1[56]:[^:]*:Automatic Turret:584E:/ -10665.6 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Soldier:5842:/ -10665.6 "Shot In The Dark" sync / 1[56]:[^:]*:Queen's Gunner:5855:/ -10674.7 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5841:/ -10689.9 "Relentless Battery" sync / 1[56]:[^:]*:Queen's Gunner:5844:/ -10696.0 "Gun Turret" sync / 1[56]:[^:]*:Queen's Gunner:584F:/ +10600.0 "--sync--" NameToggle { name: "Queen's Gunner", toggle: "01" } window 600,0 +10612.0 "--sync--" StartsUsing { id: "5844", source: "Queen's Gunner" } window 600,0 +10617.0 "Relentless Battery" Ability { id: "5844", source: "Queen's Gunner" } +10623.2 "Great Ball Of Fire" Ability { id: "583B", source: "Queen's Soldier" } +10632.3 "Fool's Gambit" Ability { id: "583C", source: "Queen's Soldier" } +10635.2 "Automatic Turret" Ability { id: "584A", source: "Queen's Gunner" } +10641.3 "Reading" Ability { id: "584B", source: "Queen's Gunner" } +10647.9 "Burn" Ability { id: "583E", source: "Immolating Flame" } +10651.5 "Queen's Shot" Ability { id: "584C", source: "Queen's Gunner" } +10655.0 "Turret's Tour" Ability { id: "584E", source: "Automatic Turret" } +10665.6 "Rapid Sever" Ability { id: "5842", source: "Queen's Soldier" } +10665.6 "Shot In The Dark" Ability { id: "5855", source: "Queen's Gunner" } +10674.7 "Blood And Bone" Ability { id: "5841", source: "Queen's Soldier" } +10689.9 "Relentless Battery" Ability { id: "5844", source: "Queen's Gunner" } +10696.0 "Gun Turret" Ability { id: "584F", source: "Queen's Gunner" } 10696.8 "--targetable--" # gun turret -10703.1 "Higher Power" sync / 1[56]:[^:]*:Queen's Gunner:5853:/ -10710.1 "Sniper Shot" sync / 1[56]:[^:]*:Gun Turret:5850:/ -10715.0 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5841:/ +10703.1 "Higher Power" Ability { id: "5853", source: "Queen's Gunner" } +10710.1 "Sniper Shot" Ability { id: "5850", source: "Gun Turret" } +10715.0 "Blood And Bone" Ability { id: "5841", source: "Queen's Soldier" } 10728.4 "--gun turret enrage--" -10732.2 "Icy Portent/Fiery Portent" sync / 1[56]:[^:]*:Queen's Soldier:(583F|5840):/ -10747.4 "Relentless Battery" sync / 1[56]:[^:]*:Queen's Gunner:5844:/ -10753.5 "Double Gambit" sync / 1[56]:[^:]*:Queen's Soldier:5837:/ -10761.5 "Automatic Turret" sync / 1[56]:[^:]*:Queen's Gunner:584A:/ -10761.7 "Secrets Revealed" sync / 1[56]:[^:]*:Queen's Soldier:5B6F:/ -10767.7 "Reading" sync / 1[56]:[^:]*:Queen's Gunner:584B:/ -10777.9 "Queen's Shot" sync / 1[56]:[^:]*:Queen's Gunner:584C:/ -10778.3 "Pawn Off" sync / 1[56]:[^:]*:Soldier Avatar:5839:/ -10781.4 "Turret's Tour" sync / 1[56]:[^:]*:Automatic Turret:584E:/ -10792.1 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5841:/ -10801.3 "Shot In The Dark" sync / 1[56]:[^:]*:Queen's Gunner:5855:/ -10801.3 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Soldier:5842:/ -10816.5 "Relentless Battery" sync / 1[56]:[^:]*:Queen's Gunner:5844:/ -10822.6 "Automatic Turret" sync / 1[56]:[^:]*:Queen's Gunner:5845:/ -10830.8 "Turret's Tour 1" sync / 1[56]:[^:]*:Queen's Gunner:5846:/ -10831.4 "Turret's Tour 2" sync / 1[56]:[^:]*:Automatic Turret:5848:/ -10837.6 "Fiery Portent/Icy Portent" sync / 1[56]:[^:]*:Queen's Soldier:(583F|5840):/ -10847.8 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5841:/ -10856.9 "Rapid Sever" sync / 1[56]:[^:]*:Queen's Soldier:5842:/ -10856.9 "Shot In The Dark" sync / 1[56]:[^:]*:Queen's Gunner:5855:/ +10732.2 "Icy Portent/Fiery Portent" Ability { id: ["583F", "5840"], source: "Queen's Soldier" } +10747.4 "Relentless Battery" Ability { id: "5844", source: "Queen's Gunner" } +10753.5 "Double Gambit" Ability { id: "5837", source: "Queen's Soldier" } +10761.5 "Automatic Turret" Ability { id: "584A", source: "Queen's Gunner" } +10761.7 "Secrets Revealed" Ability { id: "5B6F", source: "Queen's Soldier" } +10767.7 "Reading" Ability { id: "584B", source: "Queen's Gunner" } +10777.9 "Queen's Shot" Ability { id: "584C", source: "Queen's Gunner" } +10778.3 "Pawn Off" Ability { id: "5839", source: "Soldier Avatar" } +10781.4 "Turret's Tour" Ability { id: "584E", source: "Automatic Turret" } +10792.1 "Blood And Bone" Ability { id: "5841", source: "Queen's Soldier" } +10801.3 "Shot In The Dark" Ability { id: "5855", source: "Queen's Gunner" } +10801.3 "Rapid Sever" Ability { id: "5842", source: "Queen's Soldier" } +10816.5 "Relentless Battery" Ability { id: "5844", source: "Queen's Gunner" } +10822.6 "Automatic Turret" Ability { id: "5845", source: "Queen's Gunner" } +10830.8 "Turret's Tour 1" Ability { id: "5846", source: "Queen's Gunner" } +10831.4 "Turret's Tour 2" Ability { id: "5848", source: "Automatic Turret" } +10837.6 "Fiery Portent/Icy Portent" Ability { id: ["583F", "5840"], source: "Queen's Soldier" } +10847.8 "Blood And Bone" Ability { id: "5841", source: "Queen's Soldier" } +10856.9 "Rapid Sever" Ability { id: "5842", source: "Queen's Soldier" } +10856.9 "Shot In The Dark" Ability { id: "5855", source: "Queen's Gunner" } # If either die, they will start casting enrage. -10865.7 "--sync--" sync / 14:[^:]*:Queen's Soldier:5843:/ window 300,10 -10865.7 "--sync--" sync / 14:[^:]*:Queen's Gunner:5856:/ window 300,10 -10875.7 "Blood And Bone Enrage" sync / 1[56]:[^:]*:Queen's Soldier:5843:/ -10878.8 "Blood And Bone Enrage" sync / 1[56]:[^:]*:Queen's Soldier:5B9F:/ window 10,10 # x infinity -10881.9 "Blood And Bone Enrage" sync / 1[56]:[^:]*:Queen's Soldier:5B9F:/ -10885.0 "Blood And Bone Enrage" sync / 1[56]:[^:]*:Queen's Soldier:5B9F:/ -10888.1 "Blood And Bone Enrage" sync / 1[56]:[^:]*:Queen's Soldier:5B9F:/ +10865.7 "--sync--" StartsUsing { id: "5843", source: "Queen's Soldier" } window 300,10 +10865.7 "--sync--" StartsUsing { id: "5856", source: "Queen's Gunner" } window 300,10 +10875.7 "Blood And Bone Enrage" Ability { id: "5843", source: "Queen's Soldier" } +10878.8 "Blood And Bone Enrage" Ability { id: "5B9F", source: "Queen's Soldier" } window 10,10 # x infinity +10881.9 "Blood And Bone Enrage" Ability { id: "5B9F", source: "Queen's Soldier" } +10885.0 "Blood And Bone Enrage" Ability { id: "5B9F", source: "Queen's Soldier" } +10888.1 "Blood And Bone Enrage" Ability { id: "5B9F", source: "Queen's Soldier" } # Phase 4: Aetherial Wards -11000.0 "--sync--" sync / 14:[^:]*:Queen's Knight:581E:/ window 1000,0 -11005.0 "Strongpoint Defense" sync / 1[56]:[^:]*:Queen's Knight:581E:/ -11005.0 "Spiteful Spirit" sync / 1[56]:[^:]*:Queen's Warrior:582E:/ +11000.0 "--sync--" StartsUsing { id: "581E", source: "Queen's Knight" } window 1000,0 +11005.0 "Strongpoint Defense" Ability { id: "581E", source: "Queen's Knight" } +11005.0 "Spiteful Spirit" Ability { id: "582E", source: "Queen's Warrior" } 11006.0 "--2x Aura Sphere--" 11007.9 "--12x Spiritual Sphere--" -11014.8 "Coat Of Arms" sync / 1[56]:[^:]*:Aetherial Ward:5820:/ -11016.0 "Fracture 1" sync / 1[56]:[^:]*:Spiritual Sphere:5B95:/ -11020.0 "Fracture 2" sync / 1[56]:[^:]*:Spiritual Sphere:5B95:/ +11014.8 "Coat Of Arms" Ability { id: "5820", source: "Aetherial Ward" } +11016.0 "Fracture 1" Ability { id: "5B95", source: "Spiritual Sphere" } +11020.0 "Fracture 2" Ability { id: "5B95", source: "Spiritual Sphere" } 11020.0 "--Spite Check--" -11032.0 "Coat Of Arms" sync / 1[56]:[^:]*:Aetherial Ward:5820:/ +11032.0 "Coat Of Arms" Ability { id: "5820", source: "Aetherial Ward" } 11037.9 "--12x Spiritual Sphere--" 11039.9 "--2x Aura Sphere--" -11046.0 "Fracture 1" sync / 1[56]:[^:]*:Spiritual Sphere:5B95:/ -11049.0 "Coat Of Arms" sync / 1[56]:[^:]*:Aetherial Ward:5820:/ -11050.0 "Fracture 2" sync / 1[56]:[^:]*:Spiritual Sphere:5B95:/ +11046.0 "Fracture 1" Ability { id: "5B95", source: "Spiritual Sphere" } +11049.0 "Coat Of Arms" Ability { id: "5820", source: "Aetherial Ward" } +11050.0 "Fracture 2" Ability { id: "5B95", source: "Spiritual Sphere" } 11054.1 "--Spite Check--" -11066.1 "Coat Of Arms" sync / 1[56]:[^:]*:Aetherial Ward:5820:/ +11066.1 "Coat Of Arms" Ability { id: "5820", source: "Aetherial Ward" } # 70s enrage cast, started 3 seconds after Strongpoint Defense. -11078.0 "Blood And Bone Enrage" sync / 1[56]:[^:]*:Queen's Knight:5909:/ +11078.0 "Blood And Bone Enrage" Ability { id: "5909", source: "Queen's Knight" } ### Bozjan Phantom @@ -682,58 +682,58 @@ hideall "--sync--" # Manipulate -> Invert -> Adds -> then loop Manipulate+Buster OR Invert+Buster # Pride of the Lion will be sealed off -12000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E1F:/ window 20000,0 +12000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E1F" } window 20000,0 # .*is no longer sealed -12000.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 0,2000 jump 0 -12007.1 "--sync--" sync / 14:[^:]*:Bozjan Phantom:57BD:/ window 20000,0 -12011.1 "Malediction of Agony" sync / 1[56]:[^:]*:Bozjan Phantom:57BD:/ -12019.2 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57B2:/ +12000.0 "--Reset--" SystemLogMessage { id: "7DE" } window 0,2000 jump 0 +12007.1 "--sync--" StartsUsing { id: "57BD", source: "Bozjan Phantom" } window 20000,0 +12011.1 "Malediction of Agony" Ability { id: "57BD", source: "Bozjan Phantom" } +12019.2 "Weave Miasma" Ability { id: "57B2", source: "Bozjan Phantom" } # Manipulate Miasma Phase (go Swirling -> Creeping lanes) -12035.4 "Manipulate Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57B3:/ -12036.4 "Swirling Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57B8:/ -12038.0 "Swirling Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12039.6 "Swirling Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12041.2 "Swirling Miasma 4" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12042.8 "Swirling Miasma 5" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12044.4 "Swirling Miasma 6" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12046.0 "Swirling Miasma 7" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12046.4 "Creeping Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57B4:/ -12047.6 "Swirling Miasma 8" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12047.9 "Creeping Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12049.5 "Creeping Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12051.1 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12052.7 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12054.3 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12055.9 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12057.5 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12063.5 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57B2:/ +12035.4 "Manipulate Miasma" Ability { id: "57B3", source: "Bozjan Phantom" } +12036.4 "Swirling Miasma 1" Ability { id: "57B8", source: "Bozjan Phantom" } +12038.0 "Swirling Miasma 2" #Ability { id: "57B9", source: "Bozjan Phantom" } +12039.6 "Swirling Miasma 3" #Ability { id: "57B9", source: "Bozjan Phantom" } +12041.2 "Swirling Miasma 4" #Ability { id: "57B9", source: "Bozjan Phantom" } +12042.8 "Swirling Miasma 5" #Ability { id: "57B9", source: "Bozjan Phantom" } +12044.4 "Swirling Miasma 6" #Ability { id: "57B9", source: "Bozjan Phantom" } +12046.0 "Swirling Miasma 7" #Ability { id: "57B9", source: "Bozjan Phantom" } +12046.4 "Creeping Miasma 1" Ability { id: "57B4", source: "Bozjan Phantom" } +12047.6 "Swirling Miasma 8" #Ability { id: "57B9", source: "Bozjan Phantom" } +12047.9 "Creeping Miasma 2" #Ability { id: "57B5", source: "Bozjan Phantom" } +12049.5 "Creeping Miasma 3" #Ability { id: "57B5", source: "Bozjan Phantom" } +12051.1 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12052.7 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12054.3 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12055.9 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12057.5 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12063.5 "Weave Miasma" Ability { id: "57B2", source: "Bozjan Phantom" } # Invert Miasma Phase (go Lingering -> Creeping -> Creeping lanes) -12079.6 "Invert Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:59EE:/ -12080.6 "Creeping Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57B4:/ -12082.2 "Creeping Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12083.8 "Creeping Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12085.4 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12087.0 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12088.6 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12090.2 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12090.6 "Creeping Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57B4:/ -12091.8 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12092.0 "Creeping Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12093.6 "Creeping Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12095.2 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12096.8 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12098.4 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12100.0 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12100.7 "--middle--" sync / 1[56]:[^:]*:Bozjan Phantom:57AD:/ -12101.6 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ +12079.6 "Invert Miasma" Ability { id: "59EE", source: "Bozjan Phantom" } +12080.6 "Creeping Miasma 1" Ability { id: "57B4", source: "Bozjan Phantom" } +12082.2 "Creeping Miasma 2" #Ability { id: "57B5", source: "Bozjan Phantom" } +12083.8 "Creeping Miasma 3" #Ability { id: "57B5", source: "Bozjan Phantom" } +12085.4 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12087.0 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12088.6 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12090.2 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12090.6 "Creeping Miasma 1" Ability { id: "57B4", source: "Bozjan Phantom" } +12091.8 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12092.0 "Creeping Miasma 2" #Ability { id: "57B5", source: "Bozjan Phantom" } +12093.6 "Creeping Miasma 3" #Ability { id: "57B5", source: "Bozjan Phantom" } +12095.2 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12096.8 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12098.4 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12100.0 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12100.7 "--middle--" Ability { id: "57AD", source: "Bozjan Phantom" } +12101.6 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } # Add phase # TODO: unclear if these adds are on a timer (~3 logs were +/- 1 second) or if # they just pop when previous set is done. Include here for clarity, but # don't bother syncing so that the enrage is correct, regardless. -12105.1 "Summon Adds" sync / 1[56]:[^:]*:Bozjan Phantom:57C0:/ +12105.1 "Summon Adds" Ability { id: "57C0", source: "Bozjan Phantom" } 12105.8 "1x Misty Wraith" 12105.8 "2x Bloody Wraith" 12106.1 "--untargetable--" @@ -741,79 +741,79 @@ hideall "--sync--" 12115.8 "2x Bloody Wraith" 12128.0 "3x Misty Wraith" 12128.0 "3x Bloody Wraith" -12155.2 "Malediction of Ruin Enrage" sync / 1[56]:[^:]*:Bozjan Phantom:57C1:/ +12155.2 "Malediction of Ruin Enrage" Ability { id: "57C1", source: "Bozjan Phantom" } 12157.2 "--targetable--" # Start of loop block -12162.3 "--sync--" sync / 14:[^:]*:Bozjan Phantom:57B2:/ window 100,50 -12165.3 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57B2:/ -12171.5 "Summon" sync / 1[56]:[^:]*:Bozjan Phantom:57BA:/ -12187.6 "Undying Hatred" sync / 1[56]:[^:]*:Stuffy Wraith:57C2:/ +12162.3 "--sync--" StartsUsing { id: "57B2", source: "Bozjan Phantom" } window 100,50 +12165.3 "Weave Miasma" Ability { id: "57B2", source: "Bozjan Phantom" } +12171.5 "Summon" Ability { id: "57BA", source: "Bozjan Phantom" } +12187.6 "Undying Hatred" Ability { id: "57C2", source: "Stuffy Wraith" } -12191.5 "Manipulate Miasma?" sync / 1[56]:[^:]*:Bozjan Phantom:57B3:/ jump 12300 -12191.5 "Invert Miasma?" sync / 1[56]:[^:]*:Bozjan Phantom:59EE:/ jump 12500 +12191.5 "Manipulate Miasma?" Ability { id: "57B3", source: "Bozjan Phantom" } jump 12300 +12191.5 "Invert Miasma?" Ability { id: "59EE", source: "Bozjan Phantom" } jump 12500 # Manipulate Miasma Phase (go Swirling -> Creeping lanes) -12300.0 "Manipulate Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57B3:/ -12301.0 "Swirling Miasma 1" #sync / 1[56]:[^:]*:Bozjan Phantom:57B8:/ -12302.7 "Swirling Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12304.3 "Swirling Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12305.9 "Swirling Miasma 4" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12307.5 "Swirling Miasma 5" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12309.1 "Swirling Miasma 6" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12310.7 "Swirling Miasma 7" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12311.0 "Creeping Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57B4:/ -12312.2 "Swirling Miasma 8" #sync / 1[56]:[^:]*:Bozjan Phantom:57B9:/ -12312.4 "Creeping Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12314.0 "Creeping Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12314.0 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12315.6 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12317.0 "--middle--" sync / 1[56]:[^:]*:Bozjan Phantom:57AD:/ # "Transference" -12317.2 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12318.8 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12320.4 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12322.0 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ +12300.0 "Manipulate Miasma" Ability { id: "57B3", source: "Bozjan Phantom" } +12301.0 "Swirling Miasma 1" #Ability { id: "57B8", source: "Bozjan Phantom" } +12302.7 "Swirling Miasma 2" #Ability { id: "57B9", source: "Bozjan Phantom" } +12304.3 "Swirling Miasma 3" #Ability { id: "57B9", source: "Bozjan Phantom" } +12305.9 "Swirling Miasma 4" #Ability { id: "57B9", source: "Bozjan Phantom" } +12307.5 "Swirling Miasma 5" #Ability { id: "57B9", source: "Bozjan Phantom" } +12309.1 "Swirling Miasma 6" #Ability { id: "57B9", source: "Bozjan Phantom" } +12310.7 "Swirling Miasma 7" #Ability { id: "57B9", source: "Bozjan Phantom" } +12311.0 "Creeping Miasma 1" Ability { id: "57B4", source: "Bozjan Phantom" } +12312.2 "Swirling Miasma 8" #Ability { id: "57B9", source: "Bozjan Phantom" } +12312.4 "Creeping Miasma 2" #Ability { id: "57B5", source: "Bozjan Phantom" } +12314.0 "Creeping Miasma 3" #Ability { id: "57B5", source: "Bozjan Phantom" } +12314.0 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12315.6 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12317.0 "--middle--" Ability { id: "57AD", source: "Bozjan Phantom" } # "Transference" +12317.2 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12318.8 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12320.4 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12322.0 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } # Tank buster and AoE Intermediary Loop -12324.3 "Vile Wave" sync / 1[56]:[^:]*:Bozjan Phantom:57BF:/ -12340.4 "Ice Spikes" sync / 1[56]:[^:]*:Bozjan Phantom:57BC:/ -12351.5 "Excruciation" sync / 1[56]:[^:]*:Bozjan Phantom:57BE:/ -12357.6 "Malediction of Agony" sync / 1[56]:[^:]*:Bozjan Phantom:57BD:/ -12368.9 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57B2:/ window 100,100 jump 12165.3 -12375.0 "Summon" #sync / 1[56]:[^:]*:Bozjan Phantom:57BA:/ -12391.1 "Undying Hatred" #sync / 1[56]:[^:]*:Stuffy Wraith:57C2:/ -12395.0 "Manipulate Miasma?" #sync / 1[56]:[^:]*:Bozjan Phantom:57B3:/ -12395.0 "Invert Miasma?" #sync / 1[56]:[^:]*:Bozjan Phantom:59EE:/ +12324.3 "Vile Wave" Ability { id: "57BF", source: "Bozjan Phantom" } +12340.4 "Ice Spikes" Ability { id: "57BC", source: "Bozjan Phantom" } +12351.5 "Excruciation" Ability { id: "57BE", source: "Bozjan Phantom" } +12357.6 "Malediction of Agony" Ability { id: "57BD", source: "Bozjan Phantom" } +12368.9 "Weave Miasma" Ability { id: "57B2", source: "Bozjan Phantom" } window 100,100 jump 12165.3 +12375.0 "Summon" #Ability { id: "57BA", source: "Bozjan Phantom" } +12391.1 "Undying Hatred" #Ability { id: "57C2", source: "Stuffy Wraith" } +12395.0 "Manipulate Miasma?" #Ability { id: "57B3", source: "Bozjan Phantom" } +12395.0 "Invert Miasma?" #Ability { id: "59EE", source: "Bozjan Phantom" } # Invert Miasma Phase (go Lingering -> Creeping -> Creeping lanes) -12500.0 "Invert Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:59EE:/ -12501.0 "Creeping Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57B4:/ -12502.6 "Creeping Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12504.2 "Creeping Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12505.8 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12507.4 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12509.0 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12510.6 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12511.0 "Creeping Miasma 1" sync / 1[56]:[^:]*:Bozjan Phantom:57B4:/ -12512.5 "Creeping Miasma 2" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12514.1 "Creeping Miasma 3" #sync / 1[56]:[^:]*:Bozjan Phantom:57B5:/ -12515.7 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12517.1 "--middle--" sync / 1[56]:[^:]*:Bozjan Phantom:57AD:/ # "Transference" -12517.3 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12518.9 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12520.5 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ -12522.1 "Lingering Miasma" #sync / 1[56]:[^:]*:Bozjan Phantom:57B7:/ +12500.0 "Invert Miasma" Ability { id: "59EE", source: "Bozjan Phantom" } +12501.0 "Creeping Miasma 1" Ability { id: "57B4", source: "Bozjan Phantom" } +12502.6 "Creeping Miasma 2" #Ability { id: "57B5", source: "Bozjan Phantom" } +12504.2 "Creeping Miasma 3" #Ability { id: "57B5", source: "Bozjan Phantom" } +12505.8 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12507.4 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12509.0 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12510.6 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12511.0 "Creeping Miasma 1" Ability { id: "57B4", source: "Bozjan Phantom" } +12512.5 "Creeping Miasma 2" #Ability { id: "57B5", source: "Bozjan Phantom" } +12514.1 "Creeping Miasma 3" #Ability { id: "57B5", source: "Bozjan Phantom" } +12515.7 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12517.1 "--middle--" Ability { id: "57AD", source: "Bozjan Phantom" } # "Transference" +12517.3 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12518.9 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12520.5 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } +12522.1 "Lingering Miasma" #Ability { id: "57B7", source: "Bozjan Phantom" } # Invert Miasma Loop -12524.4 "Vile Wave" sync / 1[56]:[^:]*:Bozjan Phantom:57BF:/ -12540.5 "Ice Spikes" sync / 1[56]:[^:]*:Bozjan Phantom:57BC:/ -12551.6 "Excruciation" sync / 1[56]:[^:]*:Bozjan Phantom:57BE:/ -12557.7 "Malediction of Agony" sync / 1[56]:[^:]*:Bozjan Phantom:57BD:/ -12568.9 "Weave Miasma" sync / 1[56]:[^:]*:Bozjan Phantom:57B2:/ window 100,100 jump 12165.3 -12575.1 "Summon" #sync / 1[56]:[^:]*:Bozjan Phantom:57BA:/ -12591.2 "Undying Hatred" #sync / 1[56]:[^:]*:Stuffy Wraith:57C2:/ -12395.1 "Manipulate Miasma?" #sync / 1[56]:[^:]*:Bozjan Phantom:57B3:/ -12395.1 "Invert Miasma?" #sync / 1[56]:[^:]*:Bozjan Phantom:59EE:/ +12524.4 "Vile Wave" Ability { id: "57BF", source: "Bozjan Phantom" } +12540.5 "Ice Spikes" Ability { id: "57BC", source: "Bozjan Phantom" } +12551.6 "Excruciation" Ability { id: "57BE", source: "Bozjan Phantom" } +12557.7 "Malediction of Agony" Ability { id: "57BD", source: "Bozjan Phantom" } +12568.9 "Weave Miasma" Ability { id: "57B2", source: "Bozjan Phantom" } window 100,100 jump 12165.3 +12575.1 "Summon" #Ability { id: "57BA", source: "Bozjan Phantom" } +12591.2 "Undying Hatred" #Ability { id: "57C2", source: "Stuffy Wraith" } +12395.1 "Manipulate Miasma?" #Ability { id: "57B3", source: "Bozjan Phantom" } +12395.1 "Invert Miasma?" #Ability { id: "59EE", source: "Bozjan Phantom" } ### Trinity Avowed @@ -847,407 +847,407 @@ hideall "--sync--" # Note: various "Blast" are renamed "Elemental Blast" and various "Arrow" are renamed # to be "Elemental Arrow" to avoid having too many skills on the timeline. -# Note: Blade of Entropy is `sync / 1[56]:[^:]*:(Trinity Avowed|Avowed Avatar):594[23456789]|595[6789ABCD]:/`` +# Note: Blade of Entropy is `Ability { id: "594[23456789]|595[6789ABCD]", source: ["Trinity Avowed", "Avowed Avatar"] }`` # The Vault of Singing Crystal will be sealed off -14000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E20:/ window 20000,0 +14000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E20" } window 20000,0 # .*is no longer sealed -14000.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 0,2000 jump 0 -14006.7 "--sync--" sync / 14:[^:]*:Trinity Avowed:594E:/ window 10,10 -14011.8 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594E:/ -14019.9 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14000.0 "--Reset--" SystemLogMessage { id: "7DE" } window 0,2000 jump 0 +14006.7 "--sync--" StartsUsing { id: "594E", source: "Trinity Avowed" } window 10,10 +14011.8 "Wrath Of Bozja" Ability { id: "594E", source: "Trinity Avowed" } +14019.9 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # Initial Phase -14029.2 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:598[567]:/ -14034.4 "Flashvane/Fury Of Bozja/Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:(594B|594C|594A):/ -14037.5 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ -14042.6 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:598[567]:/ -14047.8 "Flashvane/Fury Of Bozja/Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:(594B|594C|594A):/ -14050.9 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ +14029.2 "Allegiant Arsenal" Ability { id: "598[567]", source: "Trinity Avowed" } +14034.4 "Flashvane/Fury Of Bozja/Infernal Slash" Ability { id: ["594B", "594C", "594A"], source: "Trinity Avowed" } +14037.5 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } +14042.6 "Allegiant Arsenal" Ability { id: "598[567]", source: "Trinity Avowed" } +14047.8 "Flashvane/Fury Of Bozja/Infernal Slash" Ability { id: ["594B", "594C", "594A"], source: "Trinity Avowed" } +14050.9 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } 14056.0 "Allegiant Arsenal" # -> random jump to initial weapon phase # -> Sword v1 (initial)? -14053.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 10,10 jump 14100 -14061.2 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +14053.0 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 10,10 jump 14100 +14061.2 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v1 (initial)? -14053.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 10,10 jump 14700 -14061.2 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +14053.0 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 10,10 jump 14700 +14061.2 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v1 (initial)? -14053.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 10,10 jump 15300 -14061.2 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +14053.0 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 10,10 jump 15300 +14061.2 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Sword v1 (initial) -14100.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ -14103.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5985:/ -14108.2 "Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:594A:/ -14115.6 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BAF:/ -14122.7 "Unwavering Apparition" sync / 1[56]:[^:]*:Trinity Avowed:5B3A:/ +14100.0 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } +14103.0 "Allegiant Arsenal" Ability { id: "5985", source: "Trinity Avowed" } +14108.2 "Infernal Slash" Ability { id: "594A", source: "Trinity Avowed" } +14115.6 "Hot And Cold" Ability { id: "5BAF", source: "Trinity Avowed" } +14122.7 "Unwavering Apparition" Ability { id: "5B3A", source: "Trinity Avowed" } 14128.7 "--untargetable--" -14138.8 "Blade Of Entropy 1" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ -14152.5 "Blade Of Entropy 2" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ +14138.8 "Blade Of Entropy 1" #Ability { id: "5959", source: "Trinity Avowed" } +14152.5 "Blade Of Entropy 2" #Ability { id: "5959", source: "Trinity Avowed" } 14155.6 "--targetable--" -14160.3 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5982:/ -14167.4 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14160.3 "--sync--" Ability { id: "5982", source: "Trinity Avowed" } +14167.4 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # -> Bow v1 (seen sword)? -14175.3 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 70,10 jump 14900 -14183.5 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +14175.3 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 70,10 jump 14900 +14183.5 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v1 (seen sword)? -14175.3 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 70,10 jump 15500 -14183.5 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +14175.3 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 70,10 jump 15500 +14183.5 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Sword v1 (seen bow) -14300.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ -14303.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5985:/ -14308.2 "Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:594A:/ -14315.6 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BAF:/ -14322.7 "Unwavering Apparition" sync / 1[56]:[^:]*:Trinity Avowed:5B3A:/ +14300.0 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } +14303.0 "Allegiant Arsenal" Ability { id: "5985", source: "Trinity Avowed" } +14308.2 "Infernal Slash" Ability { id: "594A", source: "Trinity Avowed" } +14315.6 "Hot And Cold" Ability { id: "5BAF", source: "Trinity Avowed" } +14322.7 "Unwavering Apparition" Ability { id: "5B3A", source: "Trinity Avowed" } 14328.7 "--untargetable--" -14338.8 "Blade Of Entropy 1" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ -14352.5 "Blade Of Entropy 2" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ +14338.8 "Blade Of Entropy 1" #Ability { id: "5959", source: "Trinity Avowed" } +14352.5 "Blade Of Entropy 2" #Ability { id: "5959", source: "Trinity Avowed" } 14355.6 "--targetable--" -14360.3 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5982:/ -14367.4 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14360.3 "--sync--" Ability { id: "5982", source: "Trinity Avowed" } +14367.4 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # -> roll into Staff v1 (final) -14375.3 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 70,10 -14378.3 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ -14383.5 "Fury Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594C:/ -14389.6 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:597B:/ -14396.7 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5981:/ -14402.9 "Freedom Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597C:/ -14410.3 "Elemental Impact" sync / 1[56]:[^:]*:Tempestuous Orb:4F52:/ -14420.1 "Elemental Blast" sync / 1[56]:[^:]*:Tempestuous Orb:592E:/ -14425.9 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ -14433.0 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14375.3 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 70,10 +14378.3 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } +14383.5 "Fury Of Bozja" Ability { id: "594C", source: "Trinity Avowed" } +14389.6 "Hot And Cold" Ability { id: "597B", source: "Trinity Avowed" } +14396.7 "Quick March" Ability { id: "5981", source: "Trinity Avowed" } +14402.9 "Freedom Of Bozja" Ability { id: "597C", source: "Trinity Avowed" } +14410.3 "Elemental Impact" Ability { id: "4F52", source: "Tempestuous Orb" } +14420.1 "Elemental Blast" Ability { id: "592E", source: "Tempestuous Orb" } +14425.9 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } +14433.0 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 14444.5 "Allegiant Arsenal" # -> Sword v2? -14441.5 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 40,10 jump 15900 -14449.7 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +14441.5 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 40,10 jump 15900 +14449.7 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v2? -14441.5 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 40,10 jump 16100 -14449.7 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +14441.5 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 40,10 jump 16100 +14449.7 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v2? -14441.5 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 40,10 jump 16300 -14449.7 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +14441.5 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 40,10 jump 16300 +14449.7 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Sword v1 (seen staff) -14500.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ -14503.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5985:/ -14508.2 "Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:594A:/ -14515.6 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BAF:/ -14522.7 "Unwavering Apparition" sync / 1[56]:[^:]*:Trinity Avowed:5B3A:/ +14500.0 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } +14503.0 "Allegiant Arsenal" Ability { id: "5985", source: "Trinity Avowed" } +14508.2 "Infernal Slash" Ability { id: "594A", source: "Trinity Avowed" } +14515.6 "Hot And Cold" Ability { id: "5BAF", source: "Trinity Avowed" } +14522.7 "Unwavering Apparition" Ability { id: "5B3A", source: "Trinity Avowed" } 14528.7 "--untargetable--" -14538.8 "Blade Of Entropy 1" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ -14552.5 "Blade Of Entropy 2" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ +14538.8 "Blade Of Entropy 1" #Ability { id: "5959", source: "Trinity Avowed" } +14552.5 "Blade Of Entropy 2" #Ability { id: "5959", source: "Trinity Avowed" } 14555.6 "--targetable--" -14560.3 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5982:/ -14567.4 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14560.3 "--sync--" Ability { id: "5982", source: "Trinity Avowed" } +14567.4 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # -> roll into Bow v1 (final) -14575.3 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 70,10 -14578.3 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5986:/ -14583.5 "Flashvane" sync / 1[56]:[^:]*:Trinity Avowed:594B:/ -14589.6 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5BB3:/ -14597.9 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5BB5:/ -14604.0 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597E:/ -14614.1 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5B3D:/ -14614.1 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5939:/ -14617.3 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BB0:/ -14625.1 "Shimmering Shot" sync / 1[56]:[^:]*:Trinity Avowed:597F:/ -14641.4 "Elemental Arrow" sync / 1[56]:[^:]*:Spark Arrow:593A:/ -14646.7 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ window 10,10 # some variance here -14653.8 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14575.3 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 70,10 +14578.3 "Allegiant Arsenal" Ability { id: "5986", source: "Trinity Avowed" } +14583.5 "Flashvane" Ability { id: "594B", source: "Trinity Avowed" } +14589.6 "Quick March" Ability { id: "5BB3", source: "Trinity Avowed" } +14597.9 "Wrath Of Bozja" Ability { id: "5BB5", source: "Trinity Avowed" } +14604.0 "Flames Of Bozja" Ability { id: "597E", source: "Trinity Avowed" } +14614.1 "--sync--" Ability { id: "5B3D", source: "Trinity Avowed" } +14614.1 "Flames Of Bozja" Ability { id: "5939", source: "Trinity Avowed" } +14617.3 "Hot And Cold" Ability { id: "5BB0", source: "Trinity Avowed" } +14625.1 "Shimmering Shot" Ability { id: "597F", source: "Trinity Avowed" } +14641.4 "Elemental Arrow" Ability { id: "593A", source: "Spark Arrow" } +14646.7 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } window 10,10 # some variance here +14653.8 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 14664.2 "Allegiant Arsenal" # -> Sword v2? -14661.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 40,10 jump 15900 -14669.4 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +14661.2 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 40,10 jump 15900 +14669.4 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v2? -14661.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 40,10 jump 16100 -14669.4 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +14661.2 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 40,10 jump 16100 +14669.4 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v2? -14661.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 40,10 jump 16300 -14669.4 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +14661.2 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 40,10 jump 16300 +14669.4 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Bow v1 (initial) -14700.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ -14703.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5986:/ -14708.2 "Flashvane" sync / 1[56]:[^:]*:Trinity Avowed:594B:/ -14714.3 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5BB3:/ -14722.6 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5BB5:/ -14728.7 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597E:/ -14738.8 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5B3D:/ -14738.8 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5939:/ -14742.0 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BB0:/ -14749.8 "Shimmering Shot" sync / 1[56]:[^:]*:Trinity Avowed:597F:/ -14766.1 "Elemental Arrow" sync / 1[56]:[^:]*:Spark Arrow:593A:/ -14771.4 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ window 10,10 # some variance here -14778.5 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14700.0 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } +14703.0 "Allegiant Arsenal" Ability { id: "5986", source: "Trinity Avowed" } +14708.2 "Flashvane" Ability { id: "594B", source: "Trinity Avowed" } +14714.3 "Quick March" Ability { id: "5BB3", source: "Trinity Avowed" } +14722.6 "Wrath Of Bozja" Ability { id: "5BB5", source: "Trinity Avowed" } +14728.7 "Flames Of Bozja" Ability { id: "597E", source: "Trinity Avowed" } +14738.8 "--sync--" Ability { id: "5B3D", source: "Trinity Avowed" } +14738.8 "Flames Of Bozja" Ability { id: "5939", source: "Trinity Avowed" } +14742.0 "Hot And Cold" Ability { id: "5BB0", source: "Trinity Avowed" } +14749.8 "Shimmering Shot" Ability { id: "597F", source: "Trinity Avowed" } +14766.1 "Elemental Arrow" Ability { id: "593A", source: "Spark Arrow" } +14771.4 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } window 10,10 # some variance here +14778.5 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 14788.9 "Allegiant Arsenal" # -> Sword v1 (seen bow)? -14785.9 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 70,10 jump 14300 -14794.1 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +14785.9 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 70,10 jump 14300 +14794.1 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Staff v1 (seen bow)? -14785.9 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 70,10 jump 15700 -14794.1 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +14785.9 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 70,10 jump 15700 +14794.1 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Bow v1 (seen sword) -14900.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ -14903.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5986:/ -14908.2 "Flashvane" sync / 1[56]:[^:]*:Trinity Avowed:594B:/ -14914.3 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5BB3:/ -14922.6 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5BB5:/ -14928.7 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597E:/ -14938.8 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5B3D:/ -14938.8 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5939:/ -14942.0 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BB0:/ -14949.8 "Shimmering Shot" sync / 1[56]:[^:]*:Trinity Avowed:597F:/ -14966.1 "Elemental Arrow" sync / 1[56]:[^:]*:Spark Arrow:593A:/ -14971.4 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ window 10,10 # some variance here -14978.5 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14900.0 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } +14903.0 "Allegiant Arsenal" Ability { id: "5986", source: "Trinity Avowed" } +14908.2 "Flashvane" Ability { id: "594B", source: "Trinity Avowed" } +14914.3 "Quick March" Ability { id: "5BB3", source: "Trinity Avowed" } +14922.6 "Wrath Of Bozja" Ability { id: "5BB5", source: "Trinity Avowed" } +14928.7 "Flames Of Bozja" Ability { id: "597E", source: "Trinity Avowed" } +14938.8 "--sync--" Ability { id: "5B3D", source: "Trinity Avowed" } +14938.8 "Flames Of Bozja" Ability { id: "5939", source: "Trinity Avowed" } +14942.0 "Hot And Cold" Ability { id: "5BB0", source: "Trinity Avowed" } +14949.8 "Shimmering Shot" Ability { id: "597F", source: "Trinity Avowed" } +14966.1 "Elemental Arrow" Ability { id: "593A", source: "Spark Arrow" } +14971.4 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } window 10,10 # some variance here +14978.5 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # -> roll into Staff v1 (final) -14985.9 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 70,10 -14988.9 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ -14994.1 "Fury Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594C:/ -15000.2 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:597B:/ -15007.3 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5981:/ -15013.5 "Freedom Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597C:/ -15020.9 "Elemental Impact" sync / 1[56]:[^:]*:Tempestuous Orb:4F52:/ -15030.7 "Elemental Blast" sync / 1[56]:[^:]*:Tempestuous Orb:592E:/ -15036.5 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ -15043.6 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +14985.9 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 70,10 +14988.9 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } +14994.1 "Fury Of Bozja" Ability { id: "594C", source: "Trinity Avowed" } +15000.2 "Hot And Cold" Ability { id: "597B", source: "Trinity Avowed" } +15007.3 "Quick March" Ability { id: "5981", source: "Trinity Avowed" } +15013.5 "Freedom Of Bozja" Ability { id: "597C", source: "Trinity Avowed" } +15020.9 "Elemental Impact" Ability { id: "4F52", source: "Tempestuous Orb" } +15030.7 "Elemental Blast" Ability { id: "592E", source: "Tempestuous Orb" } +15036.5 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } +15043.6 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 15055.1 "Allegiant Arsenal" # -> Sword v2? -15052.1 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 40,10 jump 15900 -15060.3 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +15052.1 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 40,10 jump 15900 +15060.3 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v2? -15052.1 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 40,10 jump 16100 -15060.3 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +15052.1 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 40,10 jump 16100 +15060.3 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v2? -15052.1 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 40,10 jump 16300 -15060.3 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +15052.1 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 40,10 jump 16300 +15060.3 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Bow v1 (seen staff) -15100.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ -15103.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5986:/ -15108.2 "Flashvane" sync / 1[56]:[^:]*:Trinity Avowed:594B:/ -15114.3 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5BB3:/ -15122.6 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5BB5:/ -15128.7 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597E:/ -15138.8 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5B3D:/ -15138.8 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5939:/ -15142.0 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BB0:/ -15149.8 "Shimmering Shot" sync / 1[56]:[^:]*:Trinity Avowed:597F:/ -15166.1 "Elemental Arrow" sync / 1[56]:[^:]*:Spark Arrow:593A:/ -15171.4 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ window 10,10 # some variance here -15178.5 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +15100.0 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } +15103.0 "Allegiant Arsenal" Ability { id: "5986", source: "Trinity Avowed" } +15108.2 "Flashvane" Ability { id: "594B", source: "Trinity Avowed" } +15114.3 "Quick March" Ability { id: "5BB3", source: "Trinity Avowed" } +15122.6 "Wrath Of Bozja" Ability { id: "5BB5", source: "Trinity Avowed" } +15128.7 "Flames Of Bozja" Ability { id: "597E", source: "Trinity Avowed" } +15138.8 "--sync--" Ability { id: "5B3D", source: "Trinity Avowed" } +15138.8 "Flames Of Bozja" Ability { id: "5939", source: "Trinity Avowed" } +15142.0 "Hot And Cold" Ability { id: "5BB0", source: "Trinity Avowed" } +15149.8 "Shimmering Shot" Ability { id: "597F", source: "Trinity Avowed" } +15166.1 "Elemental Arrow" Ability { id: "593A", source: "Spark Arrow" } +15171.4 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } window 10,10 # some variance here +15178.5 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # -> roll into Sword v1 (final) -15185.9 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 70,10 -15188.9 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5985:/ -15194.1 "Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:594A:/ -15201.5 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BAF:/ -15208.6 "Unwavering Apparition" sync / 1[56]:[^:]*:Trinity Avowed:5B3A:/ +15185.9 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 70,10 +15188.9 "Allegiant Arsenal" Ability { id: "5985", source: "Trinity Avowed" } +15194.1 "Infernal Slash" Ability { id: "594A", source: "Trinity Avowed" } +15201.5 "Hot And Cold" Ability { id: "5BAF", source: "Trinity Avowed" } +15208.6 "Unwavering Apparition" Ability { id: "5B3A", source: "Trinity Avowed" } 15214.6 "--untargetable--" -15224.7 "Blade Of Entropy 1" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ -15238.4 "Blade Of Entropy 2" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ +15224.7 "Blade Of Entropy 1" #Ability { id: "5959", source: "Trinity Avowed" } +15238.4 "Blade Of Entropy 2" #Ability { id: "5959", source: "Trinity Avowed" } 15241.5 "--targetable--" -15246.2 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5982:/ -15253.3 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +15246.2 "--sync--" Ability { id: "5982", source: "Trinity Avowed" } +15253.3 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # -> Sword v2? -15261.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 40,10 jump 15900 -15269.4 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +15261.2 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 40,10 jump 15900 +15269.4 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v2? -15261.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 40,10 jump 16100 -15269.4 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +15261.2 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 40,10 jump 16100 +15269.4 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v2? -15261.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 40,10 jump 16300 -15269.4 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +15261.2 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 40,10 jump 16300 +15269.4 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Staff v1 (initial) -15300.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ -15303.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ -15308.2 "Fury Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594C:/ -15314.3 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:597B:/ -15321.4 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5981:/ -15327.6 "Freedom Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597C:/ -15335.0 "Elemental Impact" sync / 1[56]:[^:]*:Tempestuous Orb:4F52:/ -15344.8 "Elemental Blast" sync / 1[56]:[^:]*:Tempestuous Orb:592E:/ -15350.6 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ -15357.7 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +15300.0 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } +15303.0 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } +15308.2 "Fury Of Bozja" Ability { id: "594C", source: "Trinity Avowed" } +15314.3 "Hot And Cold" Ability { id: "597B", source: "Trinity Avowed" } +15321.4 "Quick March" Ability { id: "5981", source: "Trinity Avowed" } +15327.6 "Freedom Of Bozja" Ability { id: "597C", source: "Trinity Avowed" } +15335.0 "Elemental Impact" Ability { id: "4F52", source: "Tempestuous Orb" } +15344.8 "Elemental Blast" Ability { id: "592E", source: "Tempestuous Orb" } +15350.6 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } +15357.7 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 15369.2 "Allegiant Arsenal" # -> Sword v1 (seen staff) -15366.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 70,10 jump 14500 -15374.4 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +15366.2 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 70,10 jump 14500 +15374.4 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v1 (seen staff) -15366.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 70,10 jump 15100 -15374.4 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +15366.2 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 70,10 jump 15100 +15374.4 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # Staff v1 (seen sword) -15500.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ -15503.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ -15508.2 "Fury Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594C:/ -15514.3 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:597B:/ -15521.4 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5981:/ -15527.6 "Freedom Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597C:/ -15535.0 "Elemental Impact" sync / 1[56]:[^:]*:Tempestuous Orb:4F52:/ -15544.8 "Elemental Blast" sync / 1[56]:[^:]*:Tempestuous Orb:592E:/ -15550.6 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ -15557.7 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +15500.0 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } +15503.0 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } +15508.2 "Fury Of Bozja" Ability { id: "594C", source: "Trinity Avowed" } +15514.3 "Hot And Cold" Ability { id: "597B", source: "Trinity Avowed" } +15521.4 "Quick March" Ability { id: "5981", source: "Trinity Avowed" } +15527.6 "Freedom Of Bozja" Ability { id: "597C", source: "Trinity Avowed" } +15535.0 "Elemental Impact" Ability { id: "4F52", source: "Tempestuous Orb" } +15544.8 "Elemental Blast" Ability { id: "592E", source: "Tempestuous Orb" } +15550.6 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } +15557.7 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # -> roll into Bow v1 (final) -15566.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 70,10 -15569.2 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5986:/ -15574.4 "Flashvane" sync / 1[56]:[^:]*:Trinity Avowed:594B:/ -15580.5 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5BB3:/ -15588.8 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5BB5:/ -15594.9 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597E:/ -15605.0 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5B3D:/ -15605.0 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5939:/ -15608.2 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BB0:/ -15616.0 "Shimmering Shot" sync / 1[56]:[^:]*:Trinity Avowed:597F:/ -15632.3 "Elemental Arrow" sync / 1[56]:[^:]*:Spark Arrow:593A:/ -15637.6 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ window 10,10 # some variance here -15644.7 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +15566.2 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 70,10 +15569.2 "Allegiant Arsenal" Ability { id: "5986", source: "Trinity Avowed" } +15574.4 "Flashvane" Ability { id: "594B", source: "Trinity Avowed" } +15580.5 "Quick March" Ability { id: "5BB3", source: "Trinity Avowed" } +15588.8 "Wrath Of Bozja" Ability { id: "5BB5", source: "Trinity Avowed" } +15594.9 "Flames Of Bozja" Ability { id: "597E", source: "Trinity Avowed" } +15605.0 "--sync--" Ability { id: "5B3D", source: "Trinity Avowed" } +15605.0 "Flames Of Bozja" Ability { id: "5939", source: "Trinity Avowed" } +15608.2 "Hot And Cold" Ability { id: "5BB0", source: "Trinity Avowed" } +15616.0 "Shimmering Shot" Ability { id: "597F", source: "Trinity Avowed" } +15632.3 "Elemental Arrow" Ability { id: "593A", source: "Spark Arrow" } +15637.6 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } window 10,10 # some variance here +15644.7 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 15655.1 "Allegiant Arsenal" # -> Sword v2? -15652.1 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 40,10 jump 15900 -15660.3 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +15652.1 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 40,10 jump 15900 +15660.3 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v2? -15652.1 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 40,10 jump 16100 -15660.3 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +15652.1 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 40,10 jump 16100 +15660.3 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v2? -15652.1 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 40,10 jump 16300 -15660.3 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +15652.1 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 40,10 jump 16300 +15660.3 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Staff v1 (seen bow) -15700.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ -15703.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ -15708.2 "Fury Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594C:/ -15714.3 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:597B:/ -15721.4 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5981:/ -15727.6 "Freedom Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597C:/ -15735.0 "Elemental Impact" sync / 1[56]:[^:]*:Tempestuous Orb:4F52:/ -15744.8 "Elemental Blast" sync / 1[56]:[^:]*:Tempestuous Orb:592E:/ -15750.6 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ -15757.7 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +15700.0 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } +15703.0 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } +15708.2 "Fury Of Bozja" Ability { id: "594C", source: "Trinity Avowed" } +15714.3 "Hot And Cold" Ability { id: "597B", source: "Trinity Avowed" } +15721.4 "Quick March" Ability { id: "5981", source: "Trinity Avowed" } +15727.6 "Freedom Of Bozja" Ability { id: "597C", source: "Trinity Avowed" } +15735.0 "Elemental Impact" Ability { id: "4F52", source: "Tempestuous Orb" } +15744.8 "Elemental Blast" Ability { id: "592E", source: "Tempestuous Orb" } +15750.6 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } +15757.7 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } # -> roll into Sword v1 (final) -15766.2 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 70,10 -15769.2 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5985:/ -15774.4 "Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:594A:/ -15781.8 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BAF:/ -15788.9 "Unwavering Apparition" sync / 1[56]:[^:]*:Trinity Avowed:5B3A:/ +15766.2 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 70,10 +15769.2 "Allegiant Arsenal" Ability { id: "5985", source: "Trinity Avowed" } +15774.4 "Infernal Slash" Ability { id: "594A", source: "Trinity Avowed" } +15781.8 "Hot And Cold" Ability { id: "5BAF", source: "Trinity Avowed" } +15788.9 "Unwavering Apparition" Ability { id: "5B3A", source: "Trinity Avowed" } 15794.9 "--untargetable--" -15805.0 "Blade Of Entropy 1" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ -15818.7 "Blade Of Entropy 2" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ +15805.0 "Blade Of Entropy 1" #Ability { id: "5959", source: "Trinity Avowed" } +15818.7 "Blade Of Entropy 2" #Ability { id: "5959", source: "Trinity Avowed" } 15821.8 "--targetable--" -15826.5 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5982:/ -15833.6 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +15826.5 "--sync--" Ability { id: "5982", source: "Trinity Avowed" } +15833.6 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 15844.5 "Allegiant Arsenal" # -> Sword v2? -15841.5 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 40,10 jump 15900 -15849.7 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +15841.5 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 40,10 jump 15900 +15849.7 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v2? -15841.5 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 40,10 jump 16100 -15849.7 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +15841.5 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 40,10 jump 16100 +15849.7 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v2? -15841.5 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 40,10 jump 16300 -15849.7 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +15841.5 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 40,10 jump 16300 +15849.7 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Sword v2 -15900.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ -15903.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5985:/ -15908.2 "Infernal Slash" sync / 1[56]:[^:]*:Trinity Avowed:594A:/ -15915.4 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BAF:/ -15922.5 "Elemental Brand" sync / 1[56]:[^:]*:Trinity Avowed:5BB1:/ -15928.6 "Unwavering Apparition" sync / 1[56]:[^:]*:Trinity Avowed:5B3A:/ +15900.0 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } +15903.0 "Allegiant Arsenal" Ability { id: "5985", source: "Trinity Avowed" } +15908.2 "Infernal Slash" Ability { id: "594A", source: "Trinity Avowed" } +15915.4 "Hot And Cold" Ability { id: "5BAF", source: "Trinity Avowed" } +15922.5 "Elemental Brand" Ability { id: "5BB1", source: "Trinity Avowed" } +15928.6 "Unwavering Apparition" Ability { id: "5B3A", source: "Trinity Avowed" } 15934.6 "--untargetable--" -15944.7 "Blade Of Entropy 1" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ -15958.7 "Blade Of Entropy 2" #sync / 1[56]:[^:]*:Trinity Avowed:5959:/ +15944.7 "Blade Of Entropy 1" #Ability { id: "5959", source: "Trinity Avowed" } +15958.7 "Blade Of Entropy 2" #Ability { id: "5959", source: "Trinity Avowed" } 15961.8 "--targetable--" -15966.2 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5982:/ -15973.3 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +15966.2 "--sync--" Ability { id: "5982", source: "Trinity Avowed" } +15973.3 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 15984.6 "Allegiant Arsenal" # -> Bow v2? -15981.6 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 70,10 jump 16100 -15989.8 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +15981.6 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 70,10 jump 16100 +15989.8 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # -> Staff v2? -15981.6 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 70,10 jump 16300 -15989.8 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +15981.6 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 70,10 jump 16300 +15989.8 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Bow v2 -16100.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ -16103.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5986:/ -16108.2 "Flashvane" sync / 1[56]:[^:]*:Trinity Avowed:594B:/ -16114.3 "Unseen Eye" sync / 1[56]:[^:]*:Trinity Avowed:5BB4:/ -16120.5 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597E:/ -16125.6 "Gleaming Arrow" sync / 1[56]:[^:]*:Avowed Avatar:594D:/ -16130.6 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5B3D:/ -16130.6 "Flames Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:5939:/ -16133.9 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:5BB0:/ -16141.0 "Elemental Brand" sync / 1[56]:[^:]*:Trinity Avowed:5BB2:/ -16147.2 "Quick March" sync / 1[56]:[^:]*:Trinity Avowed:5BB3:/ -16154.0 "Shimmering Shot" sync / 1[56]:[^:]*:Trinity Avowed:597F:/ -16171.3 "Elemental Arrow" sync / 1[56]:[^:]*:Spark Arrow:593A:/ -16176.7 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5983:/ window 10,10 # some variance here -16183.8 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ -16192.3 "Wrath Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594E:/ -16203.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ +16100.0 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } +16103.0 "Allegiant Arsenal" Ability { id: "5986", source: "Trinity Avowed" } +16108.2 "Flashvane" Ability { id: "594B", source: "Trinity Avowed" } +16114.3 "Unseen Eye" Ability { id: "5BB4", source: "Trinity Avowed" } +16120.5 "Flames Of Bozja" Ability { id: "597E", source: "Trinity Avowed" } +16125.6 "Gleaming Arrow" Ability { id: "594D", source: "Avowed Avatar" } +16130.6 "--sync--" Ability { id: "5B3D", source: "Trinity Avowed" } +16130.6 "Flames Of Bozja" Ability { id: "5939", source: "Trinity Avowed" } +16133.9 "Hot And Cold" Ability { id: "5BB0", source: "Trinity Avowed" } +16141.0 "Elemental Brand" Ability { id: "5BB2", source: "Trinity Avowed" } +16147.2 "Quick March" Ability { id: "5BB3", source: "Trinity Avowed" } +16154.0 "Shimmering Shot" Ability { id: "597F", source: "Trinity Avowed" } +16171.3 "Elemental Arrow" Ability { id: "593A", source: "Spark Arrow" } +16176.7 "--sync--" Ability { id: "5983", source: "Trinity Avowed" } window 10,10 # some variance here +16183.8 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } +16192.3 "Wrath Of Bozja" Ability { id: "594E", source: "Trinity Avowed" } +16203.0 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } # -> Sword v2? -16200.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 70,10 jump 15900 -16208.2 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +16200.0 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 70,10 jump 15900 +16208.2 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Staff v2? -16200.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ window 70,10 jump 16300 -16208.2 "Fury Of Bozja?" #sync / 1[56]:[^:]*:Trinity Avowed:594C:/ +16200.0 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } window 70,10 jump 16300 +16208.2 "Fury Of Bozja?" #Ability { id: "594C", source: "Trinity Avowed" } # Staff v2 -16300.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5987:/ -16303.0 "Allegiant Arsenal" sync / 1[56]:[^:]*:Trinity Avowed:5987:/ -16308.2 "Fury Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594C:/ -16314.3 "Hot And Cold" sync / 1[56]:[^:]*:Trinity Avowed:597B:/ -16321.4 "Elemental Brand" sync / 1[56]:[^:]*:Trinity Avowed:597D:/ -16327.6 "Freedom Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:597C:/ -16333.7 "Unseen Eye" sync / 1[56]:[^:]*:Trinity Avowed:5980:/ -16335.0 "Elemental Impact" sync / 1[56]:[^:]*:Tempestuous Orb:4F52:/ -16344.8 "Elemental Blast" sync / 1[56]:[^:]*:Tempestuous Orb:592E:/ -16345.0 "Gleaming Arrow" sync / 1[56]:[^:]*:Avowed Avatar:594D:/ -16350.5 "--sync--" sync / 1[56]:[^:]*:Trinity Avowed:5984:/ -16357.6 "Glory Of Bozja" sync / 1[56]:[^:]*:Trinity Avowed:594F:/ +16300.0 "--sync--" StartsUsing { id: "5987", source: "Trinity Avowed" } +16303.0 "Allegiant Arsenal" Ability { id: "5987", source: "Trinity Avowed" } +16308.2 "Fury Of Bozja" Ability { id: "594C", source: "Trinity Avowed" } +16314.3 "Hot And Cold" Ability { id: "597B", source: "Trinity Avowed" } +16321.4 "Elemental Brand" Ability { id: "597D", source: "Trinity Avowed" } +16327.6 "Freedom Of Bozja" Ability { id: "597C", source: "Trinity Avowed" } +16333.7 "Unseen Eye" Ability { id: "5980", source: "Trinity Avowed" } +16335.0 "Elemental Impact" Ability { id: "4F52", source: "Tempestuous Orb" } +16344.8 "Elemental Blast" Ability { id: "592E", source: "Tempestuous Orb" } +16345.0 "Gleaming Arrow" Ability { id: "594D", source: "Avowed Avatar" } +16350.5 "--sync--" Ability { id: "5984", source: "Trinity Avowed" } +16357.6 "Glory Of Bozja" Ability { id: "594F", source: "Trinity Avowed" } 16369.4 "Allegiant Arsenal" # -> Sword v2? -16366.4 "--sync--" sync / 14:[^:]*:Trinity Avowed:5985:/ window 70,10 jump 15900 -16374.6 "Infernal Slash?" #sync / 1[56]:[^:]*:Trinity Avowed:594A:/ +16366.4 "--sync--" StartsUsing { id: "5985", source: "Trinity Avowed" } window 70,10 jump 15900 +16374.6 "Infernal Slash?" #Ability { id: "594A", source: "Trinity Avowed" } # -> Bow v2? -16366.4 "--sync--" sync / 14:[^:]*:Trinity Avowed:5986:/ window 70,10 jump 16100 -16374.6 "Flashvane?" #sync / 1[56]:[^:]*:Trinity Avowed:594B:/ +16366.4 "--sync--" StartsUsing { id: "5986", source: "Trinity Avowed" } window 70,10 jump 16100 +16374.6 "Flashvane?" #Ability { id: "594B", source: "Trinity Avowed" } # Enrage # This happens ~10 seconds after when the allegiant arsenal would have cast. # We could...technically...break up phase 2 into the same blocks like phase 1, but no. # TODO: Alternatively we could add this in as "Enrage?" to each block? -16500.0 "--sync--" sync / 14:[^:]*:Trinity Avowed:5954:/ window 2500,0 -16512.0 "Glory Of Bozja Enrage" sync / 1[56]:[^:]*:Trinity Avowed:5954:/ +16500.0 "--sync--" StartsUsing { id: "5954", source: "Trinity Avowed" } window 2500,0 +16512.0 "Glory Of Bozja Enrage" Ability { id: "5954", source: "Trinity Avowed" } 16512.0 "--untargetable--" @@ -1256,27 +1256,27 @@ hideall "--sync--" # -ii 1961 55A6 57D0 57CE 57DD 57DC 57C8 57CA 57C6 57CC 5B38 57D3 57D6 57E2 501B 57DF 501A # -it "Stygimoloch Lord" # The Path of Divine Clarity will be sealed off -18000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E22:/ window 20000,0 +18000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E22" } window 20000,0 # .*is no longer sealed -18000.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 0,2000 jump 0 +18000.0 "--Reset--" SystemLogMessage { id: "7DE" } window 0,2000 jump 0 # Note: 57CF is the cast for Whack but 57D1 is the instant damage. # Similarly, 57C4 is the cast for Devastating Bolt, but 57C5/57C6 is the delayed damage. # Both of these casts are renamed as --sync-- to clean up the timeline. # Phase 1 -18008.3 "--sync--" sync / 14:[^:]*:Stygimoloch Lord:57D7:/ window 15,15 -18015.3 "Foe Splitter" sync / 1[56]:[^:]*:Stygimoloch Lord:57D7:/ -18023.4 "Vicious Swipe" sync / 1[56]:[^:]*:Stygimoloch Lord:5552:/ -18028.5 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57CF:/ -18028.5 "Whack 1" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ -18030.5 "Whack 2" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ -18032.5 "Whack 3" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ -18042.8 "1111-Tonze Swing" sync / 1[56]:[^:]*:Stygimoloch Lord:57D8:/ -18056.0 "Rapid Bolts" sync / 1[56]:[^:]*:Stygimoloch Lord:57CD:/ duration 12.8 -18063.1 "Rapid Bolts" sync / 1[56]:[^:]*:Stygimoloch Lord:57CD:/ duration 12.8 -18070.4 "Rush" sync / 1[56]:[^:]*:Stygimoloch Lord:57D9:/ -18074.7 "Rush" sync / 1[56]:[^:]*:Stygimoloch Lord:57D9:/ +18008.3 "--sync--" StartsUsing { id: "57D7", source: "Stygimoloch Lord" } window 15,15 +18015.3 "Foe Splitter" Ability { id: "57D7", source: "Stygimoloch Lord" } +18023.4 "Vicious Swipe" Ability { id: "5552", source: "Stygimoloch Lord" } +18028.5 "--sync--" Ability { id: "57CF", source: "Stygimoloch Lord" } +18028.5 "Whack 1" #Ability { id: "57D1", source: "Stygimoloch Lord" } +18030.5 "Whack 2" #Ability { id: "57D1", source: "Stygimoloch Lord" } +18032.5 "Whack 3" #Ability { id: "57D1", source: "Stygimoloch Lord" } +18042.8 "1111-Tonze Swing" Ability { id: "57D8", source: "Stygimoloch Lord" } +18056.0 "Rapid Bolts" Ability { id: "57CD", source: "Stygimoloch Lord" } duration 12.8 +18063.1 "Rapid Bolts" Ability { id: "57CD", source: "Stygimoloch Lord" } duration 12.8 +18070.4 "Rush" Ability { id: "57D9", source: "Stygimoloch Lord" } +18074.7 "Rush" Ability { id: "57D9", source: "Stygimoloch Lord" } # ??? does this loop? is there a natural push here? # Phase 2: Adds (70%) @@ -1284,98 +1284,98 @@ hideall "--sync--" # in a loop, but the adds are on an 18s timer which doesn't line up with the # loop. Therefore, we'll just unroll this loop a few times and drop the # Mana Flame after a while. Most logs don't even see the 2nd Fateful Words. -18200.0 "--untargetable--" sync / 1[56]:[^:]*:Stygimoloch Lord:57DA:/ -18201.5 "--sync--" sync / 14:[^:]*:Stygimoloch Lord:57C3:/ window 210,0 -18204.5 "Memory of the Labyrinth" sync / 1[56]:[^:]*:Stygimoloch Lord:57C3:/ +18200.0 "--untargetable--" Ability { id: "57DA", source: "Stygimoloch Lord" } +18201.5 "--sync--" StartsUsing { id: "57C3", source: "Stygimoloch Lord" } window 210,0 +18204.5 "Memory of the Labyrinth" Ability { id: "57C3", source: "Stygimoloch Lord" } 18205.1 "--adds--" -18215.4 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18223.2 "Entrapment" sync / 1[56]:[^:]*:Stygimoloch Monk:57DB:/ -18232.8 "Labyrinthine Fate" sync / 1[56]:[^:]*:Stygimoloch Lord:57C7:/ -18233.4 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ - -18241.1 "Fateful Words" sync / 1[56]:[^:]*:Stygimoloch Lord:57C9:/ -18247.2 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18251.3 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18251.7 "Devastating Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18257.5 "Rending Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ -18269.3 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18271.7 "Labyrinthine Fate" sync / 1[56]:[^:]*:Stygimoloch Lord:57C7:/ -18277.9 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18282.4 "Devastating Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18287.2 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18288.3 "Rending Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ -18296.4 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ - -18296.6 "Fateful Words" sync / 1[56]:[^:]*:Stygimoloch Lord:57C9:/ -18304.7 "Rending Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ -18305.2 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18309.1 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18313.6 "Devastating Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18323.3 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18327.4 "Labyrinthine Fate" sync / 1[56]:[^:]*:Stygimoloch Lord:57C7:/ -18333.7 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18338.2 "Devastating Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18341.3 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18344.0 "Rending Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ - -18352.3 "Fateful Words" sync / 1[56]:[^:]*:Stygimoloch Lord:57C9:/ -18359.3 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18360.5 "Rending Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ -18364.8 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18369.3 "Devastating Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18377.4 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18383.1 "Labyrinthine Fate" sync / 1[56]:[^:]*:Stygimoloch Lord:57C7:/ -18389.4 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18393.9 "Devastating Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18395.4 "Mana Flame" sync / 1[56]:[^:]*:Ball Of Fire:57DE:/ -18399.7 "Rending Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ +18215.4 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18223.2 "Entrapment" Ability { id: "57DB", source: "Stygimoloch Monk" } +18232.8 "Labyrinthine Fate" Ability { id: "57C7", source: "Stygimoloch Lord" } +18233.4 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } + +18241.1 "Fateful Words" Ability { id: "57C9", source: "Stygimoloch Lord" } +18247.2 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18251.3 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18251.7 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } +18257.5 "Rending Bolt" Ability { id: "57CB", source: "Stygimoloch Lord" } +18269.3 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18271.7 "Labyrinthine Fate" Ability { id: "57C7", source: "Stygimoloch Lord" } +18277.9 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18282.4 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } +18287.2 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18288.3 "Rending Bolt" Ability { id: "57CB", source: "Stygimoloch Lord" } +18296.4 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } + +18296.6 "Fateful Words" Ability { id: "57C9", source: "Stygimoloch Lord" } +18304.7 "Rending Bolt" Ability { id: "57CB", source: "Stygimoloch Lord" } +18305.2 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18309.1 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18313.6 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } +18323.3 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18327.4 "Labyrinthine Fate" Ability { id: "57C7", source: "Stygimoloch Lord" } +18333.7 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18338.2 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } +18341.3 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18344.0 "Rending Bolt" Ability { id: "57CB", source: "Stygimoloch Lord" } + +18352.3 "Fateful Words" Ability { id: "57C9", source: "Stygimoloch Lord" } +18359.3 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18360.5 "Rending Bolt" Ability { id: "57CB", source: "Stygimoloch Lord" } +18364.8 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18369.3 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } +18377.4 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18383.1 "Labyrinthine Fate" Ability { id: "57C7", source: "Stygimoloch Lord" } +18389.4 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18393.9 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } +18395.4 "Mana Flame" Ability { id: "57DE", source: "Ball Of Fire" } +18399.7 "Rending Bolt" Ability { id: "57CB", source: "Stygimoloch Lord" } # Drop Mana Flame callouts in order to make a loop. -18408.0 "Fateful Words" sync / 1[56]:[^:]*:Stygimoloch Lord:57C9:/ -18416.2 "Rending Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ -18420.5 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18425.0 "Devastating Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18438.8 "Labyrinthine Fate" sync / 1[56]:[^:]*:Stygimoloch Lord:57C7:/ -18445.1 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18449.6 "Devastating Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18455.4 "Rending Bolt" sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ - -18463.7 "Fateful Words" sync / 1[56]:[^:]*:Stygimoloch Lord:57C9:/ window 50,50 jump 18408 -18471.9 "Rending Bolt" #sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ -18476.2 "--sync--" #sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18480.7 "Devastating Bolt" #sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18494.5 "Labyrinthine Fate" #sync / 1[56]:[^:]*:Stygimoloch Lord:57C7:/ -18500.8 "--sync--" #sync / 1[56]:[^:]*:Stygimoloch Lord:57C4:/ -18505.3 "Devastating Bolt" #sync / 1[56]:[^:]*:Stygimoloch Lord:57C5:/ -18511.1 "Rending Bolt" #sync / 1[56]:[^:]*:Stygimoloch Lord:57CB:/ +18408.0 "Fateful Words" Ability { id: "57C9", source: "Stygimoloch Lord" } +18416.2 "Rending Bolt" Ability { id: "57CB", source: "Stygimoloch Lord" } +18420.5 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18425.0 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } +18438.8 "Labyrinthine Fate" Ability { id: "57C7", source: "Stygimoloch Lord" } +18445.1 "--sync--" Ability { id: "57C4", source: "Stygimoloch Lord" } +18449.6 "Devastating Bolt" Ability { id: "57C5", source: "Stygimoloch Lord" } +18455.4 "Rending Bolt" Ability { id: "57CB", source: "Stygimoloch Lord" } + +18463.7 "Fateful Words" Ability { id: "57C9", source: "Stygimoloch Lord" } window 50,50 jump 18408 +18471.9 "Rending Bolt" #Ability { id: "57CB", source: "Stygimoloch Lord" } +18476.2 "--sync--" #Ability { id: "57C4", source: "Stygimoloch Lord" } +18480.7 "Devastating Bolt" #Ability { id: "57C5", source: "Stygimoloch Lord" } +18494.5 "Labyrinthine Fate" #Ability { id: "57C7", source: "Stygimoloch Lord" } +18500.8 "--sync--" #Ability { id: "57C4", source: "Stygimoloch Lord" } +18505.3 "Devastating Bolt" #Ability { id: "57C5", source: "Stygimoloch Lord" } +18511.1 "Rending Bolt" #Ability { id: "57CB", source: "Stygimoloch Lord" } # Phase 3: Victory Lap (once adds are dead) -19000.0 "--targetable--" sync / 22:........:Stygimoloch Lord:........:Stygimoloch Lord:01/ window 800,0 -19008.2 "--sync--" sync / 14:[^:]*:Stygimoloch Lord:57D2:/ window 1010,0 -19013.2 "Thunderous Discharge" sync / 1[56]:[^:]*:Stygimoloch Lord:57D2:/ -19028.4 "Rapid Bolts 1" sync / 1[56]:[^:]*:Stygimoloch Lord:57CD:/ duration 12.8 -19040.5 "1111-Tonze Swing" sync / 1[56]:[^:]*:Stygimoloch Lord:57D8:/ -19051.6 "Rapid Bolts 2" sync / 1[56]:[^:]*:Stygimoloch Lord:57CD:/ duration 12.8 -19058.7 "Rapid Bolts 3" sync / 1[56]:[^:]*:Stygimoloch Lord:57CD:/ duration 12.8 -19065.8 "Crushing Hoof" sync / 1[56]:[^:]*:Stygimoloch Lord:57D5:/ -19072.0 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57CF:/ -19072.0 "Whack 1" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ -19074.0 "Whack 2" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ -19076.0 "Whack 3" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ -19092.5 "Foe Splitter" sync / 1[56]:[^:]*:Stygimoloch Lord:57D7:/ -19097.7 "Vicious Swipe" sync / 1[56]:[^:]*:Stygimoloch Lord:5552:/ -19102.8 "--sync--" sync / 1[56]:[^:]*:Stygimoloch Lord:57CF:/ -19102.8 "Whack 1" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ -19104.8 "Whack 2" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ -19106.8 "Whack 3" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D1:/ +19000.0 "--targetable--" NameToggle { name: "Stygimoloch Lord", toggle: "01" } window 800,0 +19008.2 "--sync--" StartsUsing { id: "57D2", source: "Stygimoloch Lord" } window 1010,0 +19013.2 "Thunderous Discharge" Ability { id: "57D2", source: "Stygimoloch Lord" } +19028.4 "Rapid Bolts 1" Ability { id: "57CD", source: "Stygimoloch Lord" } duration 12.8 +19040.5 "1111-Tonze Swing" Ability { id: "57D8", source: "Stygimoloch Lord" } +19051.6 "Rapid Bolts 2" Ability { id: "57CD", source: "Stygimoloch Lord" } duration 12.8 +19058.7 "Rapid Bolts 3" Ability { id: "57CD", source: "Stygimoloch Lord" } duration 12.8 +19065.8 "Crushing Hoof" Ability { id: "57D5", source: "Stygimoloch Lord" } +19072.0 "--sync--" Ability { id: "57CF", source: "Stygimoloch Lord" } +19072.0 "Whack 1" #Ability { id: "57D1", source: "Stygimoloch Lord" } +19074.0 "Whack 2" #Ability { id: "57D1", source: "Stygimoloch Lord" } +19076.0 "Whack 3" #Ability { id: "57D1", source: "Stygimoloch Lord" } +19092.5 "Foe Splitter" Ability { id: "57D7", source: "Stygimoloch Lord" } +19097.7 "Vicious Swipe" Ability { id: "5552", source: "Stygimoloch Lord" } +19102.8 "--sync--" Ability { id: "57CF", source: "Stygimoloch Lord" } +19102.8 "Whack 1" #Ability { id: "57D1", source: "Stygimoloch Lord" } +19104.8 "Whack 2" #Ability { id: "57D1", source: "Stygimoloch Lord" } +19106.8 "Whack 3" #Ability { id: "57D1", source: "Stygimoloch Lord" } # loop block -19121.3 "Thunderous Discharge" sync / 1[56]:[^:]*:Stygimoloch Lord:57D2:/ window 80,80 jump 19013.2 -19136.5 "Rapid Bolts 1" #sync / 1[56]:[^:]*:Stygimoloch Lord:57CD:/ duration 12.8 -19148.6 "1111-Tonze Swing" #sync / 1[56]:[^:]*:Stygimoloch Lord:57D8:/ -19159.7 "Rapid Bolts 2" #sync / 1[56]:[^:]*:Stygimoloch Lord:57CD:/ duration 12.8 -19166.8 "Rapid Bolts 3" #sync / 1[56]:[^:]*:Stygimoloch Lord:57CD:/ duration 12.8 +19121.3 "Thunderous Discharge" Ability { id: "57D2", source: "Stygimoloch Lord" } window 80,80 jump 19013.2 +19136.5 "Rapid Bolts 1" #Ability { id: "57CD", source: "Stygimoloch Lord" } duration 12.8 +19148.6 "1111-Tonze Swing" #Ability { id: "57D8", source: "Stygimoloch Lord" } +19159.7 "Rapid Bolts 2" #Ability { id: "57CD", source: "Stygimoloch Lord" } duration 12.8 +19166.8 "Rapid Bolts 3" #Ability { id: "57CD", source: "Stygimoloch Lord" } duration 12.8 ### The Queen @@ -1385,137 +1385,137 @@ hideall "--sync--" # TODO: what is 5BCB? (--middle--?) # TODO: what is 55A8? # Queensheart will be sealed off -20000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E23:/ window 20000,0 +20000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E23" } window 20000,0 # .*is no longer sealed -20000.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 0,2000 jump 0 -20010.3 "--sync--" sync / 14:[^:]*:The Queen:59F9:/ window 20,20 -20015.3 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59F9:/ -20025.5 "--sync--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -20033.9 "Queen's Will" sync / 1[56]:[^:]*:The Queen:59E6:/ -20040.0 "Northswain's Glow" sync / 1[56]:[^:]*:The Queen:59F3:/ -20048.2 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B99:/ -20050.8 "Northswain's Glow" sync / 1[56]:[^:]*:The Queen:59F4:/ -20052.5 "The Means" sync / 1[56]:[^:]*:Queen's Warrior:59E8:/ -20052.5 "The Ends" sync / 1[56]:[^:]*:Queen's Knight:59E7:/ -20056.3 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B9A:/ -20060.6 "The Means" sync / 1[56]:[^:]*:Queen's Gunner:59EA:/ -20060.6 "The Ends" sync / 1[56]:[^:]*:Queen's Soldier:59E9:/ -20076.5 "Cleansing Slash 1" sync / 1[56]:[^:]*:The Queen:59F5:/ -20079.7 "Cleansing Slash 2" sync / 1[56]:[^:]*:The Queen:5BB8:/ -20088.8 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59F9:/ -20097.0 "--sync--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -20105.2 "Queen's Edict" sync / 1[56]:[^:]*:The Queen:59EC:/ +20000.0 "--Reset--" SystemLogMessage { id: "7DE" } window 0,2000 jump 0 +20010.3 "--sync--" StartsUsing { id: "59F9", source: "The Queen" } window 20,20 +20015.3 "Empyrean Iniquity" Ability { id: "59F9", source: "The Queen" } +20025.5 "--sync--" Ability { id: "5BCB", source: "The Queen" } +20033.9 "Queen's Will" Ability { id: "59E6", source: "The Queen" } +20040.0 "Northswain's Glow" Ability { id: "59F3", source: "The Queen" } +20048.2 "Beck And Call To Arms" Ability { id: "5B99", source: "The Queen" } +20050.8 "Northswain's Glow" Ability { id: "59F4", source: "The Queen" } +20052.5 "The Means" Ability { id: "59E8", source: "Queen's Warrior" } +20052.5 "The Ends" Ability { id: "59E7", source: "Queen's Knight" } +20056.3 "Beck And Call To Arms" Ability { id: "5B9A", source: "The Queen" } +20060.6 "The Means" Ability { id: "59EA", source: "Queen's Gunner" } +20060.6 "The Ends" Ability { id: "59E9", source: "Queen's Soldier" } +20076.5 "Cleansing Slash 1" Ability { id: "59F5", source: "The Queen" } +20079.7 "Cleansing Slash 2" Ability { id: "5BB8", source: "The Queen" } +20088.8 "Empyrean Iniquity" Ability { id: "59F9", source: "The Queen" } +20097.0 "--sync--" Ability { id: "5BCB", source: "The Queen" } +20105.2 "Queen's Edict" Ability { id: "59EC", source: "The Queen" } 20108.3 "--untargetable--" -20124.7 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B9B:/ -20129.0 "The Means" sync / 1[56]:[^:]*:Queen's Warrior:59E8:/ -20129.0 "The Ends" sync / 1[56]:[^:]*:Queen's Knight:59E7:/ -20136.5 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B9C:/ -20140.8 "The Means" sync / 1[56]:[^:]*:Queen's Gunner:59EA:/ -20140.8 "The Ends" sync / 1[56]:[^:]*:Queen's Soldier:59E9:/ - -20141.0 "Queen's Justice" sync / 1[56]:[^:]*:The Queen:59EB:/ -20156.0 "Queen's Justice" sync / 1[56]:[^:]*:The Queen:59EB:/ -20157.6 "Gunnhildr's Blades" sync / 1[56]:[^:]*:The Queen:5B21:/ +20124.7 "Beck And Call To Arms" Ability { id: "5B9B", source: "The Queen" } +20129.0 "The Means" Ability { id: "59E8", source: "Queen's Warrior" } +20129.0 "The Ends" Ability { id: "59E7", source: "Queen's Knight" } +20136.5 "Beck And Call To Arms" Ability { id: "5B9C", source: "The Queen" } +20140.8 "The Means" Ability { id: "59EA", source: "Queen's Gunner" } +20140.8 "The Ends" Ability { id: "59E9", source: "Queen's Soldier" } + +20141.0 "Queen's Justice" Ability { id: "59EB", source: "The Queen" } +20156.0 "Queen's Justice" Ability { id: "59EB", source: "The Queen" } +20157.6 "Gunnhildr's Blades" Ability { id: "5B21", source: "The Queen" } 20160.7 "--targetable--" -20167.9 "--sync--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -20171.3 "--sync--" sync / 1[56]:[^:]*:The Queen:55A8:/ -20178.4 "Gods Save The Queen" sync / 1[56]:[^:]*:The Queen:59FA:/ -20194.7 "--sync--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -20198.1 "--sync--" sync / 1[56]:[^:]*:The Queen:55A8:/ -20203.1 "Unlucky Lot x5" duration 8 #sync / 1[56]:[^:]*:Ball Lightning:55B6:/ -20198.1 "--sync--" sync / 1[56]:[^:]*:The Queen:55A8:/ -20210.0 "Maelstrom's Bolt" sync / 1[56]:[^:]*:The Queen:59EF:/ - -20224.2 "Relentless Play 1" sync / 1[56]:[^:]*:The Queen:59FC:/ window 20,20 +20167.9 "--sync--" Ability { id: "5BCB", source: "The Queen" } +20171.3 "--sync--" Ability { id: "55A8", source: "The Queen" } +20178.4 "Gods Save The Queen" Ability { id: "59FA", source: "The Queen" } +20194.7 "--sync--" Ability { id: "5BCB", source: "The Queen" } +20198.1 "--sync--" Ability { id: "55A8", source: "The Queen" } +20203.1 "Unlucky Lot x5" duration 8 #Ability { id: "55B6", source: "Ball Lightning" } +20198.1 "--sync--" Ability { id: "55A8", source: "The Queen" } +20210.0 "Maelstrom's Bolt" Ability { id: "59EF", source: "The Queen" } + +20224.2 "Relentless Play 1" Ability { id: "59FC", source: "The Queen" } window 20,20 20227.3 "--tethers--" -20231.3 "Reversal Of Forces" sync / 1[56]:[^:]*:Queen's Warrior:5A0E:/ -20231.3 "Automatic Turret" sync / 1[56]:[^:]*:Queen's Gunner:5A2B:/ -20235.3 "Northswain's Glow" sync / 1[56]:[^:]*:The Queen:59F3:/ -20237.4 "Reading" sync / 1[56]:[^:]*:Queen's Gunner:5A2C:/ -20246.0 "Northswain's Glow" sync / 1[56]:[^:]*:The Queen:59F4:/ -20246.3 "Winds Of Weight" sync / 1[56]:[^:]*:Queen's Warrior:5A0F:/ -20246.3 "Winds Of Fate" sync / 1[56]:[^:]*:Queen's Warrior:5A11:/ -20246.3 "Weight Of Fortune" sync / 1[56]:[^:]*:Queen's Warrior:5A10:/ -20247.5 "Queen's Shot" sync / 1[56]:[^:]*:Queen's Gunner:5A2D:/ -20251.0 "Turret's Tour" sync / 1[56]:[^:]*:Automatic Turret:5A2F:/ -20260.4 "Cleansing Slash 1" sync / 1[56]:[^:]*:The Queen:59F5:/ -20263.6 "Cleansing Slash 2" sync / 1[56]:[^:]*:The Queen:5BB8:/ - -20276.8 "Relentless Play 2" sync / 1[56]:[^:]*:The Queen:59FC:/ window 20,20 -20282.9 "Sword Omen/Shield Omen" sync / 1[56]:[^:]*:Queen's Knight:59F[DE]:/ +20231.3 "Reversal Of Forces" Ability { id: "5A0E", source: "Queen's Warrior" } +20231.3 "Automatic Turret" Ability { id: "5A2B", source: "Queen's Gunner" } +20235.3 "Northswain's Glow" Ability { id: "59F3", source: "The Queen" } +20237.4 "Reading" Ability { id: "5A2C", source: "Queen's Gunner" } +20246.0 "Northswain's Glow" Ability { id: "59F4", source: "The Queen" } +20246.3 "Winds Of Weight" Ability { id: "5A0F", source: "Queen's Warrior" } +20246.3 "Winds Of Fate" Ability { id: "5A11", source: "Queen's Warrior" } +20246.3 "Weight Of Fortune" Ability { id: "5A10", source: "Queen's Warrior" } +20247.5 "Queen's Shot" Ability { id: "5A2D", source: "Queen's Gunner" } +20251.0 "Turret's Tour" Ability { id: "5A2F", source: "Automatic Turret" } +20260.4 "Cleansing Slash 1" Ability { id: "59F5", source: "The Queen" } +20263.6 "Cleansing Slash 2" Ability { id: "5BB8", source: "The Queen" } + +20276.8 "Relentless Play 2" Ability { id: "59FC", source: "The Queen" } window 20,20 +20282.9 "Sword Omen/Shield Omen" Ability { id: "59F[DE]", source: "Queen's Knight" } 20287.9 "--untargetable--" -20292.5 "Double Gambit" sync / 1[56]:[^:]*:Queen's Soldier:5A1B:/ -20296.3 "Optimal Offensive" sync / 1[56]:[^:]*:Queen's Knight:5A0[23]:/ -20298.2 "Judgment Blade" sync / 1[56]:[^:]*:The Queen:59F[12]:/ -20298.9 "Unlucky Lot" sync / 1[56]:[^:]*:Aetherial Sphere:5A06:/ -20300.7 "Secrets Revealed" sync / 1[56]:[^:]*:Queen's Soldier:5B8B:/ -20300.8 "--sync--" sync / 1[56]:[^:]*:Soldier Avatar:5B8C:/ -20309.9 "Judgment Blade" sync / 1[56]:[^:]*:The Queen:59F[12]:/ -20312.6 "Pawn Off" sync / 1[56]:[^:]*:Soldier Avatar:5A1D:/ +20292.5 "Double Gambit" Ability { id: "5A1B", source: "Queen's Soldier" } +20296.3 "Optimal Offensive" Ability { id: "5A0[23]", source: "Queen's Knight" } +20298.2 "Judgment Blade" Ability { id: "59F[12]", source: "The Queen" } +20298.9 "Unlucky Lot" Ability { id: "5A06", source: "Aetherial Sphere" } +20300.7 "Secrets Revealed" Ability { id: "5B8B", source: "Queen's Soldier" } +20300.8 "--sync--" Ability { id: "5B8C", source: "Soldier Avatar" } +20309.9 "Judgment Blade" Ability { id: "59F[12]", source: "The Queen" } +20312.6 "Pawn Off" Ability { id: "5A1D", source: "Soldier Avatar" } 20314.6 "--targetable--" -20324.7 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59F9:/ -20332.9 "--sync--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -20341.3 "Queen's Edict" sync / 1[56]:[^:]*:The Queen:59EC:/ +20324.7 "Empyrean Iniquity" Ability { id: "59F9", source: "The Queen" } +20332.9 "--sync--" Ability { id: "5BCB", source: "The Queen" } +20341.3 "Queen's Edict" Ability { id: "59EC", source: "The Queen" } 20344.4 "--untargetable--" -20360.8 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B9B:/ -20365.1 "The Means" sync / 1[56]:[^:]*:Queen's Warrior:59E8:/ -20365.1 "The Ends" sync / 1[56]:[^:]*:Queen's Knight:59E7:/ -20372.6 "Beck And Call To Arms" sync / 1[56]:[^:]*:The Queen:5B9C:/ -20376.9 "The Means" sync / 1[56]:[^:]*:Queen's Gunner:59EA:/ -20376.9 "The Ends" sync / 1[56]:[^:]*:Queen's Soldier:59E9:/ -20377.1 "Queen's Justice" sync / 1[56]:[^:]*:The Queen:59EB:/ -20392.1 "Queen's Justice" sync / 1[56]:[^:]*:The Queen:59EB:/ -20393.8 "Gunnhildr's Blades" sync / 1[56]:[^:]*:The Queen:5B21:/ +20360.8 "Beck And Call To Arms" Ability { id: "5B9B", source: "The Queen" } +20365.1 "The Means" Ability { id: "59E8", source: "Queen's Warrior" } +20365.1 "The Ends" Ability { id: "59E7", source: "Queen's Knight" } +20372.6 "Beck And Call To Arms" Ability { id: "5B9C", source: "The Queen" } +20376.9 "The Means" Ability { id: "59EA", source: "Queen's Gunner" } +20376.9 "The Ends" Ability { id: "59E9", source: "Queen's Soldier" } +20377.1 "Queen's Justice" Ability { id: "59EB", source: "The Queen" } +20392.1 "Queen's Justice" Ability { id: "59EB", source: "The Queen" } +20393.8 "Gunnhildr's Blades" Ability { id: "5B21", source: "The Queen" } 20396.9 "--targetable--" -20404.1 "Cleansing Slash 1" sync / 1[56]:[^:]*:The Queen:59F5:/ -20407.3 "Cleansing Slash 2" sync / 1[56]:[^:]*:The Queen:5BB8:/ - -20422.5 "Relentless Play 3" sync / 1[56]:[^:]*:The Queen:59FC:/ window 20,20 -20428.6 "Sword Omen/Shield Omen" sync / 1[56]:[^:]*:Queen's Knight:59F[DE]:/ -20437.9 "Automatic Turret" sync / 1[56]:[^:]*:Queen's Gunner:5A26:/ -20440.0 "Optimal Play" sync / 1[56]:[^:]*:Queen's Knight:(5A00|59FF):/ -20446.0 "Turret's Tour" sync / 1[56]:[^:]*:Queen's Gunner:5A27:/ -20446.6 "--sync--" sync / 1[56]:[^:]*:The Queen:5BCB:/ -20446.6 "Turret's Tour" #sync / 1[56]:[^:]*:Automatic Turret:5A29:/ -20447.6 "Turret's Tour" #sync / 1[56]:[^:]*:Automatic Turret:5A29:/ -20449.9 "--sync--" sync / 1[56]:[^:]*:The Queen:55A8:/ -20454.9 "Unlucky Lot x5" duration 8 #sync / 1[56]:[^:]*:Ball Lightning:55B6:/ -20461.8 "Maelstrom's Bolt" sync / 1[56]:[^:]*:The Queen:59EF:/ -20474.9 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59F9:/ - -20488.1 "Relentless Play 4" sync / 1[56]:[^:]*:The Queen:59FC:/ window 20,20 -20494.2 "Bombslinger" sync / 1[56]:[^:]*:Queen's Warrior:5B3F:/ +20404.1 "Cleansing Slash 1" Ability { id: "59F5", source: "The Queen" } +20407.3 "Cleansing Slash 2" Ability { id: "5BB8", source: "The Queen" } + +20422.5 "Relentless Play 3" Ability { id: "59FC", source: "The Queen" } window 20,20 +20428.6 "Sword Omen/Shield Omen" Ability { id: "59F[DE]", source: "Queen's Knight" } +20437.9 "Automatic Turret" Ability { id: "5A26", source: "Queen's Gunner" } +20440.0 "Optimal Play" Ability { id: ["5A00", "59FF"], source: "Queen's Knight" } +20446.0 "Turret's Tour" Ability { id: "5A27", source: "Queen's Gunner" } +20446.6 "--sync--" Ability { id: "5BCB", source: "The Queen" } +20446.6 "Turret's Tour" #Ability { id: "5A29", source: "Automatic Turret" } +20447.6 "Turret's Tour" #Ability { id: "5A29", source: "Automatic Turret" } +20449.9 "--sync--" Ability { id: "55A8", source: "The Queen" } +20454.9 "Unlucky Lot x5" duration 8 #Ability { id: "55B6", source: "Ball Lightning" } +20461.8 "Maelstrom's Bolt" Ability { id: "59EF", source: "The Queen" } +20474.9 "Empyrean Iniquity" Ability { id: "59F9", source: "The Queen" } + +20488.1 "Relentless Play 4" Ability { id: "59FC", source: "The Queen" } window 20,20 +20494.2 "Bombslinger" Ability { id: "5B3F", source: "Queen's Warrior" } 20497.3 "--tethers--" -20501.3 "Reversal Of Forces" sync / 1[56]:[^:]*:Queen's Warrior:5A0E:/ -20503.2 "Heaven's Wrath" sync / 1[56]:[^:]*:The Queen:59F6:/ -20509.0 "--knockback--" sync / 1[56]:[^:]*:The Queen:59F8:/ +20501.3 "Reversal Of Forces" Ability { id: "5A0E", source: "Queen's Warrior" } +20503.2 "Heaven's Wrath" Ability { id: "59F6", source: "The Queen" } +20509.0 "--knockback--" Ability { id: "59F8", source: "The Queen" } 20511.3 "--untargetable--" -20512.2 "Icy Portent/Fiery Portent" sync / 1[56]:[^:]*:Queen's Soldier:5A2[12]:/ -20515.5 "Above Board" sync / 1[56]:[^:]*:Queen's Warrior:5A0B:/ -20515.5 "--sync--" sync / 1[56]:[^:]*:Queen's Warrior:5B8E:/ +20512.2 "Icy Portent/Fiery Portent" Ability { id: "5A2[12]", source: "Queen's Soldier" } +20515.5 "Above Board" Ability { id: "5A0B", source: "Queen's Warrior" } +20515.5 "--sync--" Ability { id: "5B8E", source: "Queen's Warrior" } 20516.5 "--stunned--" # 3 or 7 second stun # Aetherial Burst does 5B89 and Aetherial Bolt does 5A0D -20518.5 "Lots Cast" sync / 1[56]:[^:]*:(Aetherial Burst|Aetherial Bolt):(5B89|5A0D):/ -20521.5 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Bolt:5B88:/ -20522.7 "Lots Cast" #sync / 1[56]:[^:]*:Aetherial Bolt:5BB6:/ +20518.5 "Lots Cast" Ability { id: ["5B89", "5A0D"], source: ["Aetherial Burst", "Aetherial Bolt"] } +20521.5 "Lots Cast" #Ability { id: "5B88", source: "Aetherial Bolt" } +20522.7 "Lots Cast" #Ability { id: "5BB6", source: "Aetherial Bolt" } 20523.5 "--unstunned--" 20525.6 "--targetable--" -20530.7 "Relentless Play 5" sync / 1[56]:[^:]*:The Queen:59FC:/ -20538.8 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Knight:5A08:/ -20538.8 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5A16:/ -20541.8 "Queen's Shot" sync / 1[56]:[^:]*:Queen's Gunner:5A35:/ -20541.8 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5A23:/ -20546.9 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Knight:5A08:/ -20546.9 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5A16:/ -20549.9 "Queen's Shot" sync / 1[56]:[^:]*:Queen's Gunner:5A35:/ -20549.9 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5A23:/ -20552.7 "Empyrean Iniquity" sync / 1[56]:[^:]*:The Queen:59F9:/ -20558.9 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Knight:5A08:/ -20561.9 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Warrior:5A16:/ -20565.0 "Blood And Bone" sync / 1[56]:[^:]*:Queen's Soldier:5A23:/ -20567.9 "Queen's Shot" sync / 1[56]:[^:]*:Queen's Gunner:5A35:/ -20574.6 "--sync--" sync / 1[56]:[^:]*:The Queen:55A8:/ -20586.7 "Gods Save The Queen Enrage" sync / 1[56]:[^:]*:The Queen:5B5A:/ +20530.7 "Relentless Play 5" Ability { id: "59FC", source: "The Queen" } +20538.8 "Blood And Bone" Ability { id: "5A08", source: "Queen's Knight" } +20538.8 "Blood And Bone" Ability { id: "5A16", source: "Queen's Warrior" } +20541.8 "Queen's Shot" Ability { id: "5A35", source: "Queen's Gunner" } +20541.8 "Blood And Bone" Ability { id: "5A23", source: "Queen's Soldier" } +20546.9 "Blood And Bone" Ability { id: "5A08", source: "Queen's Knight" } +20546.9 "Blood And Bone" Ability { id: "5A16", source: "Queen's Warrior" } +20549.9 "Queen's Shot" Ability { id: "5A35", source: "Queen's Gunner" } +20549.9 "Blood And Bone" Ability { id: "5A23", source: "Queen's Soldier" } +20552.7 "Empyrean Iniquity" Ability { id: "59F9", source: "The Queen" } +20558.9 "Blood And Bone" Ability { id: "5A08", source: "Queen's Knight" } +20561.9 "Blood And Bone" Ability { id: "5A16", source: "Queen's Warrior" } +20565.0 "Blood And Bone" Ability { id: "5A23", source: "Queen's Soldier" } +20567.9 "Queen's Shot" Ability { id: "5A35", source: "Queen's Gunner" } +20574.6 "--sync--" Ability { id: "55A8", source: "The Queen" } +20586.7 "Gods Save The Queen Enrage" Ability { id: "5B5A", source: "The Queen" } 20586.7 "--untargetable--" diff --git a/ui/raidboss/data/05-shb/eureka/zadnor.txt b/ui/raidboss/data/05-shb/eureka/zadnor.txt index 9ca53535a1..bfa8f41059 100644 --- a/ui/raidboss/data/05-shb/eureka/zadnor.txt +++ b/ui/raidboss/data/05-shb/eureka/zadnor.txt @@ -7,9 +7,9 @@ hideall "--sync--" # Use zone-unseal and 0x21 Reset lines # Trigger set contains 'resetWhenOutOfCombat: false' -0.0 "--Reset--" sync / 21:........:80000014:00:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "80000014", data0: "00" } window 100000 jump 0 # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 # TODO: fill in CEs # The idea with each of them is that you have at most two minutes of standing @@ -18,52 +18,52 @@ hideall "--sync--" # abilities from there. ### On Serpents' Wings -1000.0 "--sync--" sync / 21:........:80000014:211:/ window 100000,0 +1000.0 "--sync--" ActorControl { command: "80000014", data0: "211" } window 100000,0 ### Feeling the Burn -2000.0 "--sync--" sync / 21:........:80000014:20E:/ window 100000,0 +2000.0 "--sync--" ActorControl { command: "80000014", data0: "20E" } window 100000,0 ### The Broken Blade -3000.0 "--sync--" sync / 21:........:80000014:21F:/ window 100000,0 +3000.0 "--sync--" ActorControl { command: "80000014", data0: "21F" } window 100000,0 ### From Beyond the Grave -4000.0 "--sync--" sync / 21:........:80000014:21B:/ window 100000,0 +4000.0 "--sync--" ActorControl { command: "80000014", data0: "21B" } window 100000,0 ### With Diremite and Main -5000.0 "--sync--" sync / 21:........:80000014:221:/ window 100000,0 +5000.0 "--sync--" ActorControl { command: "80000014", data0: "221" } window 100000,0 ### Here Comes the Cavalry -6000.0 "--sync--" sync / 21:........:80000014:21C:/ window 100000,0 +6000.0 "--sync--" ActorControl { command: "80000014", data0: "21C" } window 100000,0 ### Head of the Snake -7000.0 "--sync--" sync / 21:........:80000014:21E:/ window 100000,0 +7000.0 "--sync--" ActorControl { command: "80000014", data0: "21E" } window 100000,0 ### There Would Be Blood -8000.0 "--sync--" sync / 21:........:80000014:210:/ window 100000,0 +8000.0 "--sync--" ActorControl { command: "80000014", data0: "210" } window 100000,0 ### Never Cry Wolf -9000.0 "--sync--" sync / 21:........:80000014:20F:/ window 100000,0 +9000.0 "--sync--" ActorControl { command: "80000014", data0: "20F" } window 100000,0 ### Time To Burn -10000.0 "--sync--" sync / 21:........:80000014:21D:/ window 100000,0 +10000.0 "--sync--" ActorControl { command: "80000014", data0: "21D" } window 100000,0 ### Lean, Mean, Magitek Machines -11000.0 "--sync--" sync / 21:........:80000014:218:/ window 100000,0 +11000.0 "--sync--" ActorControl { command: "80000014", data0: "218" } window 100000,0 ### Worn to a Shadow -12000.0 "--sync--" sync / 21:........:80000014:222:/ window 100000,0 +12000.0 "--sync--" ActorControl { command: "80000014", data0: "222" } window 100000,0 ### A Familiar Face -13000.0 "--sync--" sync / 21:........:80000014:212:/ window 100000,0 +13000.0 "--sync--" ActorControl { command: "80000014", data0: "212" } window 100000,0 ### Looks to Die For -14000.0 "--sync--" sync / 21:........:80000014:207:/ window 100000,0 +14000.0 "--sync--" ActorControl { command: "80000014", data0: "207" } window 100000,0 ### Taking the Lyon's Share -15000.0 "--sync--" sync / 21:........:80000014:220:/ window 100000,0 +15000.0 "--sync--" ActorControl { command: "80000014", data0: "220" } window 100000,0 ### The Dalriada -#20000.0 "--sync--" sync / 21:........:80000014:213:/ window 100000,0 +#20000.0 "--sync--" ActorControl { command: "80000014", data0: "213" } window 100000,0 ### Sartauvoir (up) # Note: can't sync to the zone closing here, as you (of course) can see the @@ -75,48 +75,48 @@ hideall "--sync--" # -p 5E7C:21016 5E7E:21300 # -ii 61BE 5E7D 5E75 5E88 5E8A 5E79 5E7B # Loading Dock will be sealed off -#21000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E5C:/ window 100000,0 -21016.0 "Pyrokinesis" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E7C:/ window 100000,0 -21028.2 "--sync--" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E6C:/ -21034.3 "Time Eruption 1" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E6E:/ -21036.3 "Time Eruption 2" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E6F:/ -21045.4 "Phenex" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E72:/ -21053.6 "Thermal Gust" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E74:/ -21057.6 "Flamedive" sync / 1[56]:[^:]*:Huma:5E73:/ +#21000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E5C" } window 100000,0 +21016.0 "Pyrokinesis" Ability { id: "5E7C", source: "Sartauvoir The Inferno" } window 100000,0 +21028.2 "--sync--" Ability { id: "5E6C", source: "Sartauvoir The Inferno" } +21034.3 "Time Eruption 1" Ability { id: "5E6E", source: "Sartauvoir The Inferno" } +21036.3 "Time Eruption 2" Ability { id: "5E6F", source: "Sartauvoir The Inferno" } +21045.4 "Phenex" Ability { id: "5E72", source: "Sartauvoir The Inferno" } +21053.6 "Thermal Gust" Ability { id: "5E74", source: "Sartauvoir The Inferno" } +21057.6 "Flamedive" Ability { id: "5E73", source: "Huma" } # This can push. -21059.8 "--sync--" sync / 14:[^:]*:Sartauvoir The Inferno:5E6D:/ window 70,10 -21066.8 "--sync--" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E6D:/ -21072.9 "Reverse Time Eruption 1" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E71:/ -21074.9 "Reverse Time Eruption 2" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E70:/ +21059.8 "--sync--" StartsUsing { id: "5E6D", source: "Sartauvoir The Inferno" } window 70,10 +21066.8 "--sync--" Ability { id: "5E6D", source: "Sartauvoir The Inferno" } +21072.9 "Reverse Time Eruption 1" Ability { id: "5E71", source: "Sartauvoir The Inferno" } +21074.9 "Reverse Time Eruption 2" Ability { id: "5E70", source: "Sartauvoir The Inferno" } # This too? -21078.0 "--sync--" sync / 14:[^:]*:Sartauvoir The Inferno:5E7C:/ window 80,10 -21083.0 "Pyrokinesis" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E7C:/ -21091.2 "Hyperpyroplexy" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E76:/ -21101.4 "Pyroplexy" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E77:/ -21106.7 "Grand Crossflame" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E7A:/ +21078.0 "--sync--" StartsUsing { id: "5E7C", source: "Sartauvoir The Inferno" } window 80,10 +21083.0 "Pyrokinesis" Ability { id: "5E7C", source: "Sartauvoir The Inferno" } +21091.2 "Hyperpyroplexy" Ability { id: "5E76", source: "Sartauvoir The Inferno" } +21101.4 "Pyroplexy" Ability { id: "5E77", source: "Sartauvoir The Inferno" } +21106.7 "Grand Crossflame" Ability { id: "5E7A", source: "Sartauvoir The Inferno" } # ??? # transformation (hp% push) -21300.0 "--sync--" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E7E:/ window 300,0 -21306.1 "Burn" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E7F:/ -21311.1 "Burn" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E7F:/ -21316.1 "Immolate" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E80:/ -21319.1 "--sync--" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E81:/ -21334.6 "Burning Blade" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E90:/ -21343.9 "Mannatheihwon Flame" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E87:/ -21356.8 "Ignis Est" sync / 1[56]:[^:]*:Ignis Est:5E89:/ -21366.2 "Left Brand/Right Brand" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E8[BC]:/ -21374.5 "Double Cast" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E8D:/ -21382.6 "Pyrodoxy" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E8E:/ -21382.6 "Pyrocrisis" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E8F:/ -21389.9 "Left Brand/Right Brand" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E8[BC]:/ -21398.3 "Phenex" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E85:/ -21408.6 "Time Eruption/Reverse Time Eruption" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E8[34]:/ -21411.6 "Flamedive" sync / 1[56]:[^:]*:Huma:5E73:/ -21415.9 "Time Eruption 1" sync / 1[56]:[^:]*:Sartauvoir The Inferno:(5E6E|5E71):/ -21417.9 "Time Eruption 2" sync / 1[56]:[^:]*:Sartauvoir The Inferno:(5E6F|5E70):/ -21425.9 "Pyrokinesis" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E82:/ -21437.3 "Hyperpyroplexy" sync / 1[56]:[^:]*:Sartauvoir The Inferno:5E86:/ +21300.0 "--sync--" Ability { id: "5E7E", source: "Sartauvoir The Inferno" } window 300,0 +21306.1 "Burn" Ability { id: "5E7F", source: "Sartauvoir The Inferno" } +21311.1 "Burn" Ability { id: "5E7F", source: "Sartauvoir The Inferno" } +21316.1 "Immolate" Ability { id: "5E80", source: "Sartauvoir The Inferno" } +21319.1 "--sync--" Ability { id: "5E81", source: "Sartauvoir The Inferno" } +21334.6 "Burning Blade" Ability { id: "5E90", source: "Sartauvoir The Inferno" } +21343.9 "Mannatheihwon Flame" Ability { id: "5E87", source: "Sartauvoir The Inferno" } +21356.8 "Ignis Est" Ability { id: "5E89", source: "Ignis Est" } +21366.2 "Left Brand/Right Brand" Ability { id: "5E8[BC]", source: "Sartauvoir The Inferno" } +21374.5 "Double Cast" Ability { id: "5E8D", source: "Sartauvoir The Inferno" } +21382.6 "Pyrodoxy" Ability { id: "5E8E", source: "Sartauvoir The Inferno" } +21382.6 "Pyrocrisis" Ability { id: "5E8F", source: "Sartauvoir The Inferno" } +21389.9 "Left Brand/Right Brand" Ability { id: "5E8[BC]", source: "Sartauvoir The Inferno" } +21398.3 "Phenex" Ability { id: "5E85", source: "Sartauvoir The Inferno" } +21408.6 "Time Eruption/Reverse Time Eruption" Ability { id: "5E8[34]", source: "Sartauvoir The Inferno" } +21411.6 "Flamedive" Ability { id: "5E73", source: "Huma" } +21415.9 "Time Eruption 1" Ability { id: ["5E6E", "5E71"], source: "Sartauvoir The Inferno" } +21417.9 "Time Eruption 2" Ability { id: ["5E6F", "5E70"], source: "Sartauvoir The Inferno" } +21425.9 "Pyrokinesis" Ability { id: "5E82", source: "Sartauvoir The Inferno" } +21437.3 "Hyperpyroplexy" Ability { id: "5E86", source: "Sartauvoir The Inferno" } # ??? @@ -126,62 +126,62 @@ hideall "--sync--" # -ii 6226 6227 6228 6229 5F13 5F1D 5F20 5F15 5F1C 5F29 5F31 # Flagship Landing will be sealed off -#22000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E5B:/ window 100000,0 +#22000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E5B" } window 100000,0 # Blackburn -22011.0 "--sync--" sync / 14:[^:]*:4Th Legion Blackburn:5F12:/ window 100000,0 -22016.0 "Suppressive Magitek Rays" sync / 1[56]:[^:]*:4Th Legion Blackburn:5F12:/ -22031.7 "Anti-Personnel Missile" sync / 1[56]:[^:]*:4Th Legion Blackburn:5F0D:/ -22033.8 "Ballistic Impact 1" #sync / 1[56]:[^:]*:4Th Legion Blackburn:5F0E:/ -22036.8 "Ballistic Impact 2" #sync / 1[56]:[^:]*:4Th Legion Blackburn:5F0E:/ -22039.8 "Ballistic Impact 3" #sync / 1[56]:[^:]*:4Th Legion Blackburn:5F0E:/ -22047.9 "Read Orders: Field Support" sync / 1[56]:[^:]*:4Th Legion Blackburn:5F0C:/ -22054.6 "Terminus Est" #sync / 1[56]:[^:]*:4Th Legion Infantry:5F03:/ -22057.6 "Analysis" sync / 1[56]:[^:]*:4Th Legion Blackburn:5F0F:/ window 10,10 -22064.7 "Terminus Est" #sync / 1[56]:[^:]*:Terminus Est:5F07:/ -22073.2 "Suppressive Magitek Rays" sync / 1[56]:[^:]*:4Th Legion Blackburn:5F12:/ -22083.4 "Surface Missile" sync / 1[56]:[^:]*:4Th Legion Blackburn:5F10:/ -22089.5 "Surface Missile" sync / 1[56]:[^:]*:4Th Legion Blackburn:5F11:/ +22011.0 "--sync--" StartsUsing { id: "5F12", source: "4Th Legion Blackburn" } window 100000,0 +22016.0 "Suppressive Magitek Rays" Ability { id: "5F12", source: "4Th Legion Blackburn" } +22031.7 "Anti-Personnel Missile" Ability { id: "5F0D", source: "4Th Legion Blackburn" } +22033.8 "Ballistic Impact 1" #Ability { id: "5F0E", source: "4Th Legion Blackburn" } +22036.8 "Ballistic Impact 2" #Ability { id: "5F0E", source: "4Th Legion Blackburn" } +22039.8 "Ballistic Impact 3" #Ability { id: "5F0E", source: "4Th Legion Blackburn" } +22047.9 "Read Orders: Field Support" Ability { id: "5F0C", source: "4Th Legion Blackburn" } +22054.6 "Terminus Est" #Ability { id: "5F03", source: "4Th Legion Infantry" } +22057.6 "Analysis" Ability { id: "5F0F", source: "4Th Legion Blackburn" } window 10,10 +22064.7 "Terminus Est" #Ability { id: "5F07", source: "Terminus Est" } +22073.2 "Suppressive Magitek Rays" Ability { id: "5F12", source: "4Th Legion Blackburn" } +22083.4 "Surface Missile" Ability { id: "5F10", source: "4Th Legion Blackburn" } +22089.5 "Surface Missile" Ability { id: "5F11", source: "4Th Legion Blackburn" } # ??? # Augur # this cast starts almost immediately after the Augur apperas -22300.0 "--sync--" sync / 14:[^:]*:4Th Legion Augur:5F1F:/ window 300,0 -22305.0 "Sanctified Quake III" sync / 1[56]:[^:]*:4Th Legion Augur:5F1F:/ -22313.2 "Void Call" sync / 1[56]:[^:]*:4Th Legion Augur:5F1E:/ -22325.5 "Turbine" sync / 1[56]:[^:]*:Flameborne Zirnitra:5F14:/ -22328.0 "Flaming Cyclone" sync / 1[56]:[^:]*:Stormborne Zirnitra:5F19:/ -22328.6 "74 Degrees" sync / 1[56]:[^:]*:Waveborne Zirnitra:5F17:/ -22332.5 "Pyroplexy" sync / 1[56]:[^:]*:4Th Legion Augur:5F1B:/ -22358.7 "Sanctified Quake III" sync / 1[56]:[^:]*:4Th Legion Augur:5F1F:/ +22300.0 "--sync--" StartsUsing { id: "5F1F", source: "4Th Legion Augur" } window 300,0 +22305.0 "Sanctified Quake III" Ability { id: "5F1F", source: "4Th Legion Augur" } +22313.2 "Void Call" Ability { id: "5F1E", source: "4Th Legion Augur" } +22325.5 "Turbine" Ability { id: "5F14", source: "Flameborne Zirnitra" } +22328.0 "Flaming Cyclone" Ability { id: "5F19", source: "Stormborne Zirnitra" } +22328.6 "74 Degrees" Ability { id: "5F17", source: "Waveborne Zirnitra" } +22332.5 "Pyroplexy" Ability { id: "5F1B", source: "4Th Legion Augur" } +22358.7 "Sanctified Quake III" Ability { id: "5F1F", source: "4Th Legion Augur" } # ??? # Tamed Alkonost / Tamed Carrion Crow -22500.0 "--sync--" sync / 03:........:Tamed Carrion Crow:/ window 600,0 -22507.0 "--sync--" sync / 14:[^:]*:Tamed Alkonost:5F26:/ window 600,10 -22512.0 "Stormcall" sync / 1[56]:[^:]*:Tamed Alkonost:5F26:/ -22526.9 "Orb 1" sync / 1[56]:[^:]*:Vortical Orb:5F27:/ -22526.9 "North Wind/South Wind" sync / 1[56]:[^:]*:Tamed Carrion Crow:5F2[12]:/ -22527.0 "--sync--" sync / 1[56]:[^:]*:Tamed Carrion Crow:5F23:/ -22527.6 "--knockback--" sync / 1[56]:[^:]*:Tamed Carrion Crow:60E[EF]:/ -22534.0 "Orb 2" sync / 1[56]:[^:]*:Vortical Orb:5F27:/ -22548.7 "Painful Gust/Pain Storm" sync / 1[56]:[^:]*:Tamed Alkonost:5F2[BC]:/ -22557.8 "Frigid Pulse" sync / 1[56]:[^:]*:Tamed Alkonost:5F2A:/ -22568.2 "North Wind/South Wind" sync / 1[56]:[^:]*:Tamed Carrion Crow:5F2[12]:/ -22568.3 "--sync--" sync / 1[56]:[^:]*:Tamed Carrion Crow:5F23:/ -22568.9 "--knockback--" sync / 1[56]:[^:]*:Tamed Carrion Crow:60E[EF]:/ -22572.9 "Foreshadowing" sync / 1[56]:[^:]*:Tamed Alkonost:5F30:/ -22572.9 "Painful Gust/Pain Storm" sync / 1[56]:[^:]*:Tamed Alkonost's Shadow:5F2[EF]:/ -22572.9 "Frigid Pulse" sync / 1[56]:[^:]*:Tamed Alkonost's Shadow:5F2D:/ - -22586.1 "Nihility's Song" sync / 1[56]:[^:]*:Tamed Alkonost:5F28:/ -22597.8 "Broadside Barrage" sync / 1[56]:[^:]*:Tamed Carrion Crow:5F25:/ -22605.7 "Painful Gust" sync / 1[56]:[^:]*:Tamed Alkonost:5F2C:/ -22612.8 "Nihility's Song" sync / 1[56]:[^:]*:Tamed Alkonost:5F28:/ -22613.1 "Broadside Barrage" sync / 1[56]:[^:]*:Tamed Carrion Crow:5F25:/ -22613.4 "Nihility's Song" sync / 1[56]:[^:]*:Tamed Alkonost:5F29:/ -22629.0 "Frigid Pulse" sync / 1[56]:[^:]*:Tamed Alkonost:5F2A:/ -22635.5 "Broadside Barrage" sync / 1[56]:[^:]*:Tamed Carrion Crow:5F25:/ +22500.0 "--sync--" AddedCombatant { name: "Tamed Carrion Crow" } window 600,0 +22507.0 "--sync--" StartsUsing { id: "5F26", source: "Tamed Alkonost" } window 600,10 +22512.0 "Stormcall" Ability { id: "5F26", source: "Tamed Alkonost" } +22526.9 "Orb 1" Ability { id: "5F27", source: "Vortical Orb" } +22526.9 "North Wind/South Wind" Ability { id: "5F2[12]", source: "Tamed Carrion Crow" } +22527.0 "--sync--" Ability { id: "5F23", source: "Tamed Carrion Crow" } +22527.6 "--knockback--" Ability { id: "60E[EF]", source: "Tamed Carrion Crow" } +22534.0 "Orb 2" Ability { id: "5F27", source: "Vortical Orb" } +22548.7 "Painful Gust/Pain Storm" Ability { id: "5F2[BC]", source: "Tamed Alkonost" } +22557.8 "Frigid Pulse" Ability { id: "5F2A", source: "Tamed Alkonost" } +22568.2 "North Wind/South Wind" Ability { id: "5F2[12]", source: "Tamed Carrion Crow" } +22568.3 "--sync--" Ability { id: "5F23", source: "Tamed Carrion Crow" } +22568.9 "--knockback--" Ability { id: "60E[EF]", source: "Tamed Carrion Crow" } +22572.9 "Foreshadowing" Ability { id: "5F30", source: "Tamed Alkonost" } +22572.9 "Painful Gust/Pain Storm" Ability { id: "5F2[EF]", source: "Tamed Alkonost's Shadow" } +22572.9 "Frigid Pulse" Ability { id: "5F2D", source: "Tamed Alkonost's Shadow" } + +22586.1 "Nihility's Song" Ability { id: "5F28", source: "Tamed Alkonost" } +22597.8 "Broadside Barrage" Ability { id: "5F25", source: "Tamed Carrion Crow" } +22605.7 "Painful Gust" Ability { id: "5F2C", source: "Tamed Alkonost" } +22612.8 "Nihility's Song" Ability { id: "5F28", source: "Tamed Alkonost" } +22613.1 "Broadside Barrage" Ability { id: "5F25", source: "Tamed Carrion Crow" } +22613.4 "Nihility's Song" Ability { id: "5F29", source: "Tamed Alkonost" } +22629.0 "Frigid Pulse" Ability { id: "5F2A", source: "Tamed Alkonost" } +22635.5 "Broadside Barrage" Ability { id: "5F25", source: "Tamed Carrion Crow" } # ??? @@ -189,46 +189,46 @@ hideall "--sync--" # -p 5C8F:23013.3 # -ii 5C89 5C90 5C83 5C84 5C85 6179 614E 5C8C 5C87 # Magitek Development will be sealed off -23000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E5E:/ window 100000,0 -23013.3 "Putrified Soul" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8F:/ -23022.4 "Burgeoning Dread" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C88:/ -23043.7 "Putrified Soul" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8F:/ -23055.9 "Fleshy Necromass" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C82:/ duration 8.7 -23082.7 "Necrotic Billow" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C86:/ duration 8.7 -23099.9 "--sync--" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8D:/ -23108.7 "Ambient Pulsation 1" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ -23110.2 "Ambient Pulsation 2" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ -23111.7 "Ambient Pulsation 3" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ - -23126.1 "Might Of Malice" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C92:/ -23140.2 "Necrotic Billow?" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C86:/ -23143.3 "Fleshy Necromass?" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C82:/ +23000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E5E" } window 100000,0 +23013.3 "Putrified Soul" Ability { id: "5C8F", source: "4Th-Make Cuchulainn" } +23022.4 "Burgeoning Dread" Ability { id: "5C88", source: "4Th-Make Cuchulainn" } +23043.7 "Putrified Soul" Ability { id: "5C8F", source: "4Th-Make Cuchulainn" } +23055.9 "Fleshy Necromass" Ability { id: "5C82", source: "4Th-Make Cuchulainn" } duration 8.7 +23082.7 "Necrotic Billow" Ability { id: "5C86", source: "4Th-Make Cuchulainn" } duration 8.7 +23099.9 "--sync--" Ability { id: "5C8D", source: "4Th-Make Cuchulainn" } +23108.7 "Ambient Pulsation 1" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } +23110.2 "Ambient Pulsation 2" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } +23111.7 "Ambient Pulsation 3" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } + +23126.1 "Might Of Malice" Ability { id: "5C92", source: "4Th-Make Cuchulainn" } +23140.2 "Necrotic Billow?" Ability { id: "5C86", source: "4Th-Make Cuchulainn" } +23143.3 "Fleshy Necromass?" Ability { id: "5C82", source: "4Th-Make Cuchulainn" } # this timing can be 8 seconds earlier if it's Billow instead of Necromass. -23163.2 "--sync--" sync / 14:[^:]*:4Th-Make Cuchulainn:5C88:/ window 20,20 -23168.2 "Burgeoning Dread" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C88:/ - -23179.3 "--sync--" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8D:/ -23188.1 "Ambient Pulsation 1" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ -23189.6 "Ambient Pulsation 2" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ -23191.1 "Ambient Pulsation 3" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ -23195.5 "Might Of Malice" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C92:/ -23210.6 "Putrified Soul" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8F:/ - -23217.7 "Ghastly Aura" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:614D:/ -23226.8 "Necrotic Billow?" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C86:/ -23230.9 "Fleshy Necromass?" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C82:/ +23163.2 "--sync--" StartsUsing { id: "5C88", source: "4Th-Make Cuchulainn" } window 20,20 +23168.2 "Burgeoning Dread" Ability { id: "5C88", source: "4Th-Make Cuchulainn" } + +23179.3 "--sync--" Ability { id: "5C8D", source: "4Th-Make Cuchulainn" } +23188.1 "Ambient Pulsation 1" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } +23189.6 "Ambient Pulsation 2" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } +23191.1 "Ambient Pulsation 3" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } +23195.5 "Might Of Malice" Ability { id: "5C92", source: "4Th-Make Cuchulainn" } +23210.6 "Putrified Soul" Ability { id: "5C8F", source: "4Th-Make Cuchulainn" } + +23217.7 "Ghastly Aura" Ability { id: "614D", source: "4Th-Make Cuchulainn" } +23226.8 "Necrotic Billow?" Ability { id: "5C86", source: "4Th-Make Cuchulainn" } +23230.9 "Fleshy Necromass?" Ability { id: "5C82", source: "4Th-Make Cuchulainn" } # this timing can be 8 seconds earlier if it's Billow instead of Necromass. -23249.1 "--sync--" sync / 14:[^:]*:4Th-Make Cuchulainn:5C8B:/ window 20,5 -23254.1 "Fell Flow 1" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8B:/ -23261.4 "Fell Flow 2" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8B:/ -23275.6 "Burgeoning Dread" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C88:/ +23249.1 "--sync--" StartsUsing { id: "5C8B", source: "4Th-Make Cuchulainn" } window 20,5 +23254.1 "Fell Flow 1" Ability { id: "5C8B", source: "4Th-Make Cuchulainn" } +23261.4 "Fell Flow 2" Ability { id: "5C8B", source: "4Th-Make Cuchulainn" } +23275.6 "Burgeoning Dread" Ability { id: "5C88", source: "4Th-Make Cuchulainn" } # TODO: is this a loop??? guessing it goes back to the previous burgeoning+ambient -23286.7 "--sync--" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8D:/ window 30,30 jump 23179.3 -23295.5 "Ambient Pulsation 1" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ -23297.0 "Ambient Pulsation 2" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ -23298.5 "Ambient Pulsation 3" #sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C8E:/ -23303.0 "Might Of Malice" sync / 1[56]:[^:]*:4Th-Make Cuchulainn:5C92:/ +23286.7 "--sync--" Ability { id: "5C8D", source: "4Th-Make Cuchulainn" } window 30,30 jump 23179.3 +23295.5 "Ambient Pulsation 1" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } +23297.0 "Ambient Pulsation 2" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } +23298.5 "Ambient Pulsation 3" #Ability { id: "5C8E", source: "4Th-Make Cuchulainn" } +23303.0 "Might Of Malice" Ability { id: "5C92", source: "4Th-Make Cuchulainn" } ### Saunion & Dawon @@ -236,90 +236,90 @@ hideall "--sync--" # -it "Saunion" # -ii 5DB6 5DB8 6150 5DC7 60C4 5DCF 5DB3 5DD2 61E4 61E5 # The Greater Hold will be sealed off -24000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E60:/ window 100000,0 -24011.7 "Magitek Halo/Magitek Crossray" sync / 1[56]:[^:]*:Saunion:5DB[57]:/ -24022.9 "High-Powered Magitek Ray" sync / 1[56]:[^:]*:Saunion:5DC5:/ -24034.1 "Magitek Crossray/Magitek Halo" sync / 1[56]:[^:]*:Saunion:5DB[57]:/ -24040.3 "--sync--" sync / 1[56]:[^:]*:Saunion:5DD7:/ -24050.5 "Mobile Halo/Mobile Crossray" sync / 1[56]:[^:]*:Saunion:(5DB[9ABCDEF]|5DC0):/ -24063.7 "Missile Command" sync / 1[56]:[^:]*:Saunion:5DC1:/ -24069.9 "Surface Missile" sync / 1[56]:[^:]*:Saunion:5DC4:/ -24069.9 "Anti-Personnel Missile" sync / 1[56]:[^:]*:Saunion:5DC2:/ -24074.9 "Missile Salvo" sync / 1[56]:[^:]*:Saunion:5DC3:/ -24078.9 "--sync--" sync / 1[56]:[^:]*:Saunion:5DD7:/ -24089.0 "Mobile Crossray/Mobile Halo" sync / 1[56]:[^:]*:Saunion:(5DB[9ABCDEF]|5DC0):/ -24099.8 "--sync--" sync / 1[56]:[^:]*:Saunion:5DD7:/ +24000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E60" } window 100000,0 +24011.7 "Magitek Halo/Magitek Crossray" Ability { id: "5DB[57]", source: "Saunion" } +24022.9 "High-Powered Magitek Ray" Ability { id: "5DC5", source: "Saunion" } +24034.1 "Magitek Crossray/Magitek Halo" Ability { id: "5DB[57]", source: "Saunion" } +24040.3 "--sync--" Ability { id: "5DD7", source: "Saunion" } +24050.5 "Mobile Halo/Mobile Crossray" Ability { id: ["5DB[9ABCDEF]", "5DC0"], source: "Saunion" } +24063.7 "Missile Command" Ability { id: "5DC1", source: "Saunion" } +24069.9 "Surface Missile" Ability { id: "5DC4", source: "Saunion" } +24069.9 "Anti-Personnel Missile" Ability { id: "5DC2", source: "Saunion" } +24074.9 "Missile Salvo" Ability { id: "5DC3", source: "Saunion" } +24078.9 "--sync--" Ability { id: "5DD7", source: "Saunion" } +24089.0 "Mobile Crossray/Mobile Halo" Ability { id: ["5DB[9ABCDEF]", "5DC0"], source: "Saunion" } +24099.8 "--sync--" Ability { id: "5DD7", source: "Saunion" } # ? -24300.0 "--sync--" sync / 14:[^:]*:Dawon The Younger:5DC6:/ window 300,0 -24306.0 "Touchdown" sync / 1[56]:[^:]*:Dawon The Younger:5DC6:/ +24300.0 "--sync--" StartsUsing { id: "5DC6", source: "Dawon The Younger" } window 300,0 +24306.0 "Touchdown" Ability { id: "5DC6", source: "Dawon The Younger" } 24323.3 "--targetable--" -24342.5 "--sync--" sync / 1[56]:[^:]*:Saunion:5DD7:/ -24348.5 "Wildfire Winds" sync / 1[56]:[^:]*:Dawon The Younger:5DCD:/ -24352.5 "Mobile Halo/Mobile Crossray" sync / 1[56]:[^:]*:Saunion:(5DB[9ABCDEF]|5DC0):/ -24361.2 "Raw Heat" sync / 1[56]:[^:]*:Vermilion Flame:5DCE:/ -24362.7 "Missile Command" sync / 1[56]:[^:]*:Saunion:5DC1:/ -24368.9 "Surface Missile" sync / 1[56]:[^:]*:Saunion:5DC4:/ -24368.9 "Anti-Personnel Missile" sync / 1[56]:[^:]*:Saunion:5DC2:/ -24372.1 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon The Younger:5DD0:/ -24373.9 "Missile Salvo" sync / 1[56]:[^:]*:Saunion:5DC3:/ -24380.2 "Frigid Pulse" sync / 1[56]:[^:]*:Dawon The Younger:607D:/ -24402.5 "--sync--" sync / 1[56]:[^:]*:Saunion:5DD7:/ +24342.5 "--sync--" Ability { id: "5DD7", source: "Saunion" } +24348.5 "Wildfire Winds" Ability { id: "5DCD", source: "Dawon The Younger" } +24352.5 "Mobile Halo/Mobile Crossray" Ability { id: ["5DB[9ABCDEF]", "5DC0"], source: "Saunion" } +24361.2 "Raw Heat" Ability { id: "5DCE", source: "Vermilion Flame" } +24362.7 "Missile Command" Ability { id: "5DC1", source: "Saunion" } +24368.9 "Surface Missile" Ability { id: "5DC4", source: "Saunion" } +24368.9 "Anti-Personnel Missile" Ability { id: "5DC2", source: "Saunion" } +24372.1 "Swooping Frenzy" Ability { id: "5DD0", source: "Dawon The Younger" } +24373.9 "Missile Salvo" Ability { id: "5DC3", source: "Saunion" } +24380.2 "Frigid Pulse" Ability { id: "607D", source: "Dawon The Younger" } +24402.5 "--sync--" Ability { id: "5DD7", source: "Saunion" } # spiral scourge + obey -24412.1 "Spiral Scourge" sync / 1[56]:[^:]*:Saunion:5DB2:/ duration 20.5 +24412.1 "Spiral Scourge" Ability { id: "5DB2", source: "Saunion" } duration 20.5 24412.1 "--untargetable--" -24413.4 "Obey" sync / 1[56]:[^:]*:Dawon The Younger:5DC9:/ -24415.5 "Swooping Frenzy 1" sync / 1[56]:[^:]*:Dawon The Younger:5DCA:/ -24418.6 "Frigid Pulse/Fire Brand" sync / 1[56]:[^:]*:Dawon The Younger:5DC[BC]:/ -24421.9 "Swooping Frenzy 2" sync / 1[56]:[^:]*:Dawon The Younger:5DCA:/ -24425.0 "Frigid Pulse/Fire Brand" sync / 1[56]:[^:]*:Dawon The Younger:5DC[BC]:/ -24428.4 "Swooping Frenzy 3" sync / 1[56]:[^:]*:Dawon The Younger:5DCA:/ -24431.5 "Frigid Pulse/Fire Brand" sync / 1[56]:[^:]*:Dawon The Younger:5DC[BC]:/ -24432.2 "--sync--" sync / 1[56]:[^:]*:Saunion:5DB4:/ +24413.4 "Obey" Ability { id: "5DC9", source: "Dawon The Younger" } +24415.5 "Swooping Frenzy 1" Ability { id: "5DCA", source: "Dawon The Younger" } +24418.6 "Frigid Pulse/Fire Brand" Ability { id: "5DC[BC]", source: "Dawon The Younger" } +24421.9 "Swooping Frenzy 2" Ability { id: "5DCA", source: "Dawon The Younger" } +24425.0 "Frigid Pulse/Fire Brand" Ability { id: "5DC[BC]", source: "Dawon The Younger" } +24428.4 "Swooping Frenzy 3" Ability { id: "5DCA", source: "Dawon The Younger" } +24431.5 "Frigid Pulse/Fire Brand" Ability { id: "5DC[BC]", source: "Dawon The Younger" } +24432.2 "--sync--" Ability { id: "5DB4", source: "Saunion" } 24432.2 "--targetable--" -24450.0 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon The Younger:5DD0:/ -24452.2 "Missile Command" sync / 1[56]:[^:]*:Saunion:5DC1:/ -24458.1 "Pentagust" sync / 1[56]:[^:]*:Dawon The Younger:5DD1:/ -24458.4 "Surface Missile" sync / 1[56]:[^:]*:Saunion:5DC4:/ -24458.4 "Anti-Personnel Missile" sync / 1[56]:[^:]*:Saunion:5DC2:/ -24463.4 "Missile Salvo" sync / 1[56]:[^:]*:Saunion:5DC3:/ -24479.9 "Tooth And Talon" sync / 1[56]:[^:]*:Dawon The Younger:5DD4:/ -24479.9 "High-Powered Magitek Ray" sync / 1[56]:[^:]*:Saunion:5DC5:/ -24500.4 "--sync--" sync / 1[56]:[^:]*:Saunion:5DD7:/ -24501.3 "Wildfire Winds 1" sync / 1[56]:[^:]*:Dawon The Younger:5DCD:/ +24450.0 "Swooping Frenzy" Ability { id: "5DD0", source: "Dawon The Younger" } +24452.2 "Missile Command" Ability { id: "5DC1", source: "Saunion" } +24458.1 "Pentagust" Ability { id: "5DD1", source: "Dawon The Younger" } +24458.4 "Surface Missile" Ability { id: "5DC4", source: "Saunion" } +24458.4 "Anti-Personnel Missile" Ability { id: "5DC2", source: "Saunion" } +24463.4 "Missile Salvo" Ability { id: "5DC3", source: "Saunion" } +24479.9 "Tooth And Talon" Ability { id: "5DD4", source: "Dawon The Younger" } +24479.9 "High-Powered Magitek Ray" Ability { id: "5DC5", source: "Saunion" } +24500.4 "--sync--" Ability { id: "5DD7", source: "Saunion" } +24501.3 "Wildfire Winds 1" Ability { id: "5DCD", source: "Dawon The Younger" } # spiral scourge + wildfire winds -24510.1 "Spiral Scourge" sync / 1[56]:[^:]*:Saunion:5DB2:/ duration 20.5 +24510.1 "Spiral Scourge" Ability { id: "5DB2", source: "Saunion" } duration 20.5 24510.1 "--untargetable--" -24514.1 "Raw Heat 1" sync / 1[56]:[^:]*:Vermilion Flame:5DCE:/ -24516.5 "Wildfire Winds 2" sync / 1[56]:[^:]*:Dawon The Younger:5DCD:/ -24529.3 "Raw Heat 2" sync / 1[56]:[^:]*:Vermilion Flame:5DCE:/ -24530.1 "--sync--" sync / 1[56]:[^:]*:Saunion:5DB4:/ +24514.1 "Raw Heat 1" Ability { id: "5DCE", source: "Vermilion Flame" } +24516.5 "Wildfire Winds 2" Ability { id: "5DCD", source: "Dawon The Younger" } +24529.3 "Raw Heat 2" Ability { id: "5DCE", source: "Vermilion Flame" } +24530.1 "--sync--" Ability { id: "5DB4", source: "Saunion" } 24530.1 "--targetable--" -24549.9 "--sync--" sync / 1[56]:[^:]*:Saunion:5DD7:/ -24555.8 "Wildfire Winds" sync / 1[56]:[^:]*:Dawon The Younger:5DCD:/ -24559.9 "Mobile Crossray/Mobile Halo" sync / 1[56]:[^:]*:Saunion:(5DB[9ABCDEF]|5DC0):/ -24568.6 "Raw Heat" sync / 1[56]:[^:]*:Vermilion Flame:5DCE:/ -24570.1 "Missile Command" sync / 1[56]:[^:]*:Saunion:5DC1:/ -24576.3 "Surface Missile" sync / 1[56]:[^:]*:Saunion:5DC4:/ -24576.3 "Anti-Personnel Missile" sync / 1[56]:[^:]*:Saunion:5DC2:/ -24579.5 "Swooping Frenzy" sync / 1[56]:[^:]*:Dawon The Younger:5DD0:/ -24581.3 "Missile Salvo" sync / 1[56]:[^:]*:Saunion:5DC3:/ -24587.6 "Frigid Pulse" sync / 1[56]:[^:]*:Dawon The Younger:607D:/ -24609.7 "--sync--" sync / 1[56]:[^:]*:Saunion:5DD7:/ +24549.9 "--sync--" Ability { id: "5DD7", source: "Saunion" } +24555.8 "Wildfire Winds" Ability { id: "5DCD", source: "Dawon The Younger" } +24559.9 "Mobile Crossray/Mobile Halo" Ability { id: ["5DB[9ABCDEF]", "5DC0"], source: "Saunion" } +24568.6 "Raw Heat" Ability { id: "5DCE", source: "Vermilion Flame" } +24570.1 "Missile Command" Ability { id: "5DC1", source: "Saunion" } +24576.3 "Surface Missile" Ability { id: "5DC4", source: "Saunion" } +24576.3 "Anti-Personnel Missile" Ability { id: "5DC2", source: "Saunion" } +24579.5 "Swooping Frenzy" Ability { id: "5DD0", source: "Dawon The Younger" } +24581.3 "Missile Salvo" Ability { id: "5DC3", source: "Saunion" } +24587.6 "Frigid Pulse" Ability { id: "607D", source: "Dawon The Younger" } +24609.7 "--sync--" Ability { id: "5DD7", source: "Saunion" } # loop -24619.2 "Spiral Scourge" sync / 1[56]:[^:]*:Saunion:5DB2:/ window 50,50 jump 24412.1 +24619.2 "Spiral Scourge" Ability { id: "5DB2", source: "Saunion" } window 50,50 jump 24412.1 24619.2 "--untargetable--" -24620.5 "Obey" #sync / 1[56]:[^:]*:Dawon The Younger:5DC9:/ -24622.6 "Swooping Frenzy 1" #sync / 1[56]:[^:]*:Dawon The Younger:5DCA:/ -24625.7 "Frigid Pulse/Fire Brand" #sync / 1[56]:[^:]*:Dawon The Younger:5DC{BC]}:/ -24629.0 "Swooping Frenzy 2" #sync / 1[56]:[^:]*:Dawon The Younger:5DCA:/ -24632.1 "Frigid Pulse/Fire Brand" #sync / 1[56]:[^:]*:Dawon The Younger:5DC[BC]:/ -24635.5 "Swooping Frenzy 3" #sync / 1[56]:[^:]*:Dawon The Younger:5DCA:/ -24638.6 "Frigid Pulse/Fire Brand" #sync / 1[56]:[^:]*:Dawon The Younger:5DC[BC]:/ -24639.3 "--sync--" #sync / 1[56]:[^:]*:Saunion:5DB4:/ +24620.5 "Obey" #Ability { id: "5DC9", source: "Dawon The Younger" } +24622.6 "Swooping Frenzy 1" #Ability { id: "5DCA", source: "Dawon The Younger" } +24625.7 "Frigid Pulse/Fire Brand" #Ability { id: "5DC{BC]}", source: "Dawon The Younger" } +24629.0 "Swooping Frenzy 2" #Ability { id: "5DCA", source: "Dawon The Younger" } +24632.1 "Frigid Pulse/Fire Brand" #Ability { id: "5DC[BC]", source: "Dawon The Younger" } +24635.5 "Swooping Frenzy 3" #Ability { id: "5DCA", source: "Dawon The Younger" } +24638.6 "Frigid Pulse/Fire Brand" #Ability { id: "5DC[BC]", source: "Dawon The Younger" } +24639.3 "--sync--" #Ability { id: "5DB4", source: "Saunion" } 24639.3 "--targetable--" # TODO: not enough data for what happens when one of them dies? @@ -330,106 +330,106 @@ hideall "--sync--" # -p 5CC6:25013 5CB7:25805 # -ii 6143 61A2 5CC7 61C4 5CB2 5CB8 5CC5 6092 6091 6093 5CC3 5CB4 5CB5 5CC1 5CAD 5CA1 5CA2 # The Fallen Ring will be sealed off -25000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E61:/ window 100000,0 -25013.0 "Aetheric Explosion" sync / 1[56]:[^:]*:The Diablo Armament:5CC6:/ -25023.4 "Aetherochemical Laser 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25027.5 "Aetherochemical Laser 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25034.5 "Explosion 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[67]:/ -25036.6 "Explosion 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[89]:/ -25046.0 "Advanced Death Ray" sync / 1[56]:[^:]*:The Diablo Armament:5CC4:/ -25057.3 "Aetheric Explosion" sync / 1[56]:[^:]*:The Diablo Armament:5CC6:/ +25000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E61" } window 100000,0 +25013.0 "Aetheric Explosion" Ability { id: "5CC6", source: "The Diablo Armament" } +25023.4 "Aetherochemical Laser 1" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25027.5 "Aetherochemical Laser 2" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25034.5 "Explosion 1" Ability { id: "5CA[67]", source: "The Diablo Armament" } +25036.6 "Explosion 2" Ability { id: "5CA[89]", source: "The Diablo Armament" } +25046.0 "Advanced Death Ray" Ability { id: "5CC4", source: "The Diablo Armament" } +25057.3 "Aetheric Explosion" Ability { id: "5CC6", source: "The Diablo Armament" } # If you are in a cutscene and don't make it down in time, you miss the zone seal. # Add one extra "really big" sync a little bit in. -25068.6 "Diabolic Gate" sync / 1[56]:[^:]*:The Diablo Armament:5C9F:/ window 100000,100 -25091.1 "--sync--" sync / 1[56]:[^:]*:The Diablo Armament:5CA0:/ -25092.7 "Ruinous Pseudomen 1" sync / 1[56]:[^:]*:The Diablo Armament:61A3:/ -25096.7 "Ruinous Pseudomen 2" #sync / 1[56]:[^:]*:The Diablo Armament:614C:/ -25099.7 "Ruinous Pseudomen 3" #sync / 1[56]:[^:]*:The Diablo Armament:614C:/ -25104.0 "Ruinous Pseudomen 4" sync / 1[56]:[^:]*:The Diablo Armament:614F:/ -25111.0 "Ultimate Pseudoterror" sync / 1[56]:[^:]*:The Diablo Armament:5CA3:/ - -25125.4 "Aetheric Explosion" sync / 1[56]:[^:]*:The Diablo Armament:5CC6:/ -25139.8 "Advanced Death Ray" sync / 1[56]:[^:]*:The Diablo Armament:5CC4:/ -25147.0 "Magitek Bit" sync / 1[56]:[^:]*:The Diablo Armament:5CAC:/ -25161.5 "Assault Cannon" sync / 1[56]:[^:]*:Diabolic Bit:5CAE:/ -25163.4 "Aetheric Explosion" sync / 1[56]:[^:]*:The Diablo Armament:5CC6:/ -25175.7 "--sync--" sync / 1[56]:[^:]*:The Diablo Armament:5CAF:/ -25183.8 "Advanced Death IV" sync / 1[56]:[^:]*:The Diablo Armament:5CB0:/ -25190.8 "Advanced Death IV" sync / 1[56]:[^:]*:The Diablo Armament:5CB0:/ -25196.5 "Light Pseudopillar" sync / 1[56]:[^:]*:The Diablo Armament:5CB1:/ duration 2.5 -25203.6 "Advanced Death Ray" sync / 1[56]:[^:]*:The Diablo Armament:5CC4:/ -25209.9 "Aetherochemical Laser 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25214.0 "Aetherochemical Laser 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25219.5 "Aetherochemical Laser 3" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25221.0 "Explosion 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[67]:/ -25223.1 "Explosion 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[89]:/ -25226.6 "Explosion 3" sync / 1[56]:[^:]*:The Diablo Armament:5CA[AB]:/ -25242.2 "Aetheric Boom" sync / 1[56]:[^:]*:The Diablo Armament:5CB3:/ - -25265.0 "Diabolic Gate" sync / 1[56]:[^:]*:The Diablo Armament:5C9F:/ window 100,100 -25287.5 "--sync--" sync / 1[56]:[^:]*:The Diablo Armament:5CA0:/ -25289.1 "Ruinous Pseudomen 1" sync / 1[56]:[^:]*:The Diablo Armament:61A3:/ -25293.1 "Ruinous Pseudomen 2" #sync / 1[56]:[^:]*:The Diablo Armament:614C:/ -25296.1 "Ruinous Pseudomen 3" #sync / 1[56]:[^:]*:The Diablo Armament:614C:/ -25300.3 "Ruinous Pseudomen 4" sync / 1[56]:[^:]*:The Diablo Armament:614F:/ -25307.4 "Ultimate Pseudoterror" sync / 1[56]:[^:]*:The Diablo Armament:5CA3:/ - -25321.8 "Aetheric Explosion" sync / 1[56]:[^:]*:The Diablo Armament:5CC6:/ -25327.9 "--sync--" sync / 1[56]:[^:]*:The Diablo Armament:5CAF:/ -25336.0 "Advanced Death IV" sync / 1[56]:[^:]*:The Diablo Armament:5CB0:/ -25344.0 "Advanced Death IV" sync / 1[56]:[^:]*:The Diablo Armament:5CB0:/ -25346.6 "Magitek Bit" sync / 1[56]:[^:]*:The Diablo Armament:5CAC:/ -25353.8 "Aetherochemical Laser 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25357.9 "Aetherochemical Laser 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25361.3 "Assault Cannon" sync / 1[56]:[^:]*:Diabolic Bit:5CAE:/ -25364.8 "Explosion 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[67]:/ -25366.9 "Explosion 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[89]:/ -25373.1 "Assault Cannon" sync / 1[56]:[^:]*:Diabolic Bit:5CAE:/ -25380.4 "Deadly Dealing" sync / 1[56]:[^:]*:The Diablo Armament:5CC2:/ -25384.6 "Assault Cannon" sync / 1[56]:[^:]*:Diabolic Bit:5CAE:/ -25397.9 "Aetheric Explosion" sync / 1[56]:[^:]*:The Diablo Armament:5CC6:/ -25404.1 "Light Pseudopillar" sync / 1[56]:[^:]*:The Diablo Armament:5CB1:/ duration 2.5 - -25407.3 "Aetherochemical Laser 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25411.4 "Aetherochemical Laser 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25416.9 "Aetherochemical Laser 3" sync / 1[56]:[^:]*:The Diablo Armament:5CA[45]:/ -25418.4 "Explosion 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[67]:/ -25420.5 "Explosion 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[89]:/ -25424.0 "Explosion 3" sync / 1[56]:[^:]*:The Diablo Armament:5CA[AB]:/ -25426.0 "Advanced Death Ray" sync / 1[56]:[^:]*:The Diablo Armament:5CC4:/ -25438.3 "--sync--" sync / 1[56]:[^:]*:The Diablo Armament:5CBF:/ -25447.4 "Deadly Dealing" sync / 1[56]:[^:]*:The Diablo Armament:5CC2:/ -25449.0 "Advanced Nox" sync / 1[56]:[^:]*:The Diablo Armament:5CC0:/ duration 4.5 -25461.7 "Aetheric Boom" sync / 1[56]:[^:]*:The Diablo Armament:5CB3:/ -25463.8 "Aetherochemical Laser 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA5:/ -25467.9 "Aetherochemical Laser 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA4:/ -25474.9 "Explosion 1" sync / 1[56]:[^:]*:The Diablo Armament:5CA[67]:/ -25477.0 "Explosion 2" sync / 1[56]:[^:]*:The Diablo Armament:5CA[89]:/ +25068.6 "Diabolic Gate" Ability { id: "5C9F", source: "The Diablo Armament" } window 100000,100 +25091.1 "--sync--" Ability { id: "5CA0", source: "The Diablo Armament" } +25092.7 "Ruinous Pseudomen 1" Ability { id: "61A3", source: "The Diablo Armament" } +25096.7 "Ruinous Pseudomen 2" #Ability { id: "614C", source: "The Diablo Armament" } +25099.7 "Ruinous Pseudomen 3" #Ability { id: "614C", source: "The Diablo Armament" } +25104.0 "Ruinous Pseudomen 4" Ability { id: "614F", source: "The Diablo Armament" } +25111.0 "Ultimate Pseudoterror" Ability { id: "5CA3", source: "The Diablo Armament" } + +25125.4 "Aetheric Explosion" Ability { id: "5CC6", source: "The Diablo Armament" } +25139.8 "Advanced Death Ray" Ability { id: "5CC4", source: "The Diablo Armament" } +25147.0 "Magitek Bit" Ability { id: "5CAC", source: "The Diablo Armament" } +25161.5 "Assault Cannon" Ability { id: "5CAE", source: "Diabolic Bit" } +25163.4 "Aetheric Explosion" Ability { id: "5CC6", source: "The Diablo Armament" } +25175.7 "--sync--" Ability { id: "5CAF", source: "The Diablo Armament" } +25183.8 "Advanced Death IV" Ability { id: "5CB0", source: "The Diablo Armament" } +25190.8 "Advanced Death IV" Ability { id: "5CB0", source: "The Diablo Armament" } +25196.5 "Light Pseudopillar" Ability { id: "5CB1", source: "The Diablo Armament" } duration 2.5 +25203.6 "Advanced Death Ray" Ability { id: "5CC4", source: "The Diablo Armament" } +25209.9 "Aetherochemical Laser 1" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25214.0 "Aetherochemical Laser 2" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25219.5 "Aetherochemical Laser 3" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25221.0 "Explosion 1" Ability { id: "5CA[67]", source: "The Diablo Armament" } +25223.1 "Explosion 2" Ability { id: "5CA[89]", source: "The Diablo Armament" } +25226.6 "Explosion 3" Ability { id: "5CA[AB]", source: "The Diablo Armament" } +25242.2 "Aetheric Boom" Ability { id: "5CB3", source: "The Diablo Armament" } + +25265.0 "Diabolic Gate" Ability { id: "5C9F", source: "The Diablo Armament" } window 100,100 +25287.5 "--sync--" Ability { id: "5CA0", source: "The Diablo Armament" } +25289.1 "Ruinous Pseudomen 1" Ability { id: "61A3", source: "The Diablo Armament" } +25293.1 "Ruinous Pseudomen 2" #Ability { id: "614C", source: "The Diablo Armament" } +25296.1 "Ruinous Pseudomen 3" #Ability { id: "614C", source: "The Diablo Armament" } +25300.3 "Ruinous Pseudomen 4" Ability { id: "614F", source: "The Diablo Armament" } +25307.4 "Ultimate Pseudoterror" Ability { id: "5CA3", source: "The Diablo Armament" } + +25321.8 "Aetheric Explosion" Ability { id: "5CC6", source: "The Diablo Armament" } +25327.9 "--sync--" Ability { id: "5CAF", source: "The Diablo Armament" } +25336.0 "Advanced Death IV" Ability { id: "5CB0", source: "The Diablo Armament" } +25344.0 "Advanced Death IV" Ability { id: "5CB0", source: "The Diablo Armament" } +25346.6 "Magitek Bit" Ability { id: "5CAC", source: "The Diablo Armament" } +25353.8 "Aetherochemical Laser 1" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25357.9 "Aetherochemical Laser 2" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25361.3 "Assault Cannon" Ability { id: "5CAE", source: "Diabolic Bit" } +25364.8 "Explosion 1" Ability { id: "5CA[67]", source: "The Diablo Armament" } +25366.9 "Explosion 2" Ability { id: "5CA[89]", source: "The Diablo Armament" } +25373.1 "Assault Cannon" Ability { id: "5CAE", source: "Diabolic Bit" } +25380.4 "Deadly Dealing" Ability { id: "5CC2", source: "The Diablo Armament" } +25384.6 "Assault Cannon" Ability { id: "5CAE", source: "Diabolic Bit" } +25397.9 "Aetheric Explosion" Ability { id: "5CC6", source: "The Diablo Armament" } +25404.1 "Light Pseudopillar" Ability { id: "5CB1", source: "The Diablo Armament" } duration 2.5 + +25407.3 "Aetherochemical Laser 1" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25411.4 "Aetherochemical Laser 2" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25416.9 "Aetherochemical Laser 3" Ability { id: "5CA[45]", source: "The Diablo Armament" } +25418.4 "Explosion 1" Ability { id: "5CA[67]", source: "The Diablo Armament" } +25420.5 "Explosion 2" Ability { id: "5CA[89]", source: "The Diablo Armament" } +25424.0 "Explosion 3" Ability { id: "5CA[AB]", source: "The Diablo Armament" } +25426.0 "Advanced Death Ray" Ability { id: "5CC4", source: "The Diablo Armament" } +25438.3 "--sync--" Ability { id: "5CBF", source: "The Diablo Armament" } +25447.4 "Deadly Dealing" Ability { id: "5CC2", source: "The Diablo Armament" } +25449.0 "Advanced Nox" Ability { id: "5CC0", source: "The Diablo Armament" } duration 4.5 +25461.7 "Aetheric Boom" Ability { id: "5CB3", source: "The Diablo Armament" } +25463.8 "Aetherochemical Laser 1" Ability { id: "5CA5", source: "The Diablo Armament" } +25467.9 "Aetherochemical Laser 2" Ability { id: "5CA4", source: "The Diablo Armament" } +25474.9 "Explosion 1" Ability { id: "5CA[67]", source: "The Diablo Armament" } +25477.0 "Explosion 2" Ability { id: "5CA[89]", source: "The Diablo Armament" } # TODO: this is probably a loop?? guessing it goes back to first gate??? -25489.6 "Diabolic Gate" sync / 1[56]:[^:]*:The Diablo Armament:5C9F:/ window 100,100 jump 25068.6 -25512.1 "--sync--" sync / 1[56]:[^:]*:The Diablo Armament:5CA0:/ -25513.7 "Ruinous Pseudomen 1" sync / 1[56]:[^:]*:The Diablo Armament:61A3:/ -25517.7 "Ruinous Pseudomen 2" #sync / 1[56]:[^:]*:The Diablo Armament:614C:/ -25520.7 "Ruinous Pseudomen 3" #sync / 1[56]:[^:]*:The Diablo Armament:614C:/ -25525.0 "Ruinous Pseudomen 4" sync / 1[56]:[^:]*:The Diablo Armament:614F:/ -25532.0 "Ultimate Pseudoterror" sync / 1[56]:[^:]*:The Diablo Armament:5CA3:/ +25489.6 "Diabolic Gate" Ability { id: "5C9F", source: "The Diablo Armament" } window 100,100 jump 25068.6 +25512.1 "--sync--" Ability { id: "5CA0", source: "The Diablo Armament" } +25513.7 "Ruinous Pseudomen 1" Ability { id: "61A3", source: "The Diablo Armament" } +25517.7 "Ruinous Pseudomen 2" #Ability { id: "614C", source: "The Diablo Armament" } +25520.7 "Ruinous Pseudomen 3" #Ability { id: "614C", source: "The Diablo Armament" } +25525.0 "Ruinous Pseudomen 4" Ability { id: "614F", source: "The Diablo Armament" } +25532.0 "Ultimate Pseudoterror" Ability { id: "5CA3", source: "The Diablo Armament" } # final phase (hp%?) -25800.0 "--sync--" sync / 14:[^:]*:The Diablo Armament:5CB7:/ window 1000,0 -25805.0 "Void Systems Overload" sync / 1[56]:[^:]*:The Diablo Armament:5CB7:/ -25815.1 "Pillar Of Shamash" sync / 1[56]:[^:]*:The Diablo Armament:5CB9:/ -25816.6 "Pillar Of Shamash" sync / 1[56]:[^:]*:The Diablo Armament:5CBA:/ -25818.1 "Pillar Of Shamash" sync / 1[56]:[^:]*:The Diablo Armament:5CBB:/ -25822.2 "Pillar Of Shamash" sync / 1[56]:[^:]*:The Diablo Armament:5CBD:/ -25824.2 "--lasers--" sync / 1[56]:[^:]*:The Diablo Armament:5CBC:/ -25828.2 "--line stack--" sync / 1[56]:[^:]*:The Diablo Armament:5CBE:/ - -25842.2 "Void Systems Overload" sync / 1[56]:[^:]*:The Diablo Armament:6314:/ window 100,100 jump 25805.0 -25852.3 "Pillar Of Shamash" sync / 1[56]:[^:]*:The Diablo Armament:5CB9:/ -25853.8 "Pillar Of Shamash" sync / 1[56]:[^:]*:The Diablo Armament:5CBA:/ -25855.3 "Pillar Of Shamash" sync / 1[56]:[^:]*:The Diablo Armament:5CBB:/ -25859.4 "Pillar Of Shamash" sync / 1[56]:[^:]*:The Diablo Armament:5CBD:/ -25861.4 "--lasers--" sync / 1[56]:[^:]*:The Diablo Armament:5CBC:/ -25865.4 "--line stack--" sync / 1[56]:[^:]*:The Diablo Armament:5CBE:/ +25800.0 "--sync--" StartsUsing { id: "5CB7", source: "The Diablo Armament" } window 1000,0 +25805.0 "Void Systems Overload" Ability { id: "5CB7", source: "The Diablo Armament" } +25815.1 "Pillar Of Shamash" Ability { id: "5CB9", source: "The Diablo Armament" } +25816.6 "Pillar Of Shamash" Ability { id: "5CBA", source: "The Diablo Armament" } +25818.1 "Pillar Of Shamash" Ability { id: "5CBB", source: "The Diablo Armament" } +25822.2 "Pillar Of Shamash" Ability { id: "5CBD", source: "The Diablo Armament" } +25824.2 "--lasers--" Ability { id: "5CBC", source: "The Diablo Armament" } +25828.2 "--line stack--" Ability { id: "5CBE", source: "The Diablo Armament" } + +25842.2 "Void Systems Overload" Ability { id: "6314", source: "The Diablo Armament" } window 100,100 jump 25805.0 +25852.3 "Pillar Of Shamash" Ability { id: "5CB9", source: "The Diablo Armament" } +25853.8 "Pillar Of Shamash" Ability { id: "5CBA", source: "The Diablo Armament" } +25855.3 "Pillar Of Shamash" Ability { id: "5CBB", source: "The Diablo Armament" } +25859.4 "Pillar Of Shamash" Ability { id: "5CBD", source: "The Diablo Armament" } +25861.4 "--lasers--" Ability { id: "5CBC", source: "The Diablo Armament" } +25865.4 "--line stack--" Ability { id: "5CBE", source: "The Diablo Armament" } diff --git a/ui/raidboss/data/05-shb/hunts/kholusia.ts b/ui/raidboss/data/05-shb/hunts/kholusia.ts index 944c6aa883..183708ce1d 100644 --- a/ui/raidboss/data/05-shb/hunts/kholusia.ts +++ b/ui/raidboss/data/05-shb/hunts/kholusia.ts @@ -79,6 +79,7 @@ const triggerSet: TriggerSet = { text: { en: 'In => Sides', de: 'Rein => Seiten', + fr: 'Intérieur => Côtés', cn: '中间 => 两侧', ko: '안으로 => 옆으로', }, @@ -94,6 +95,7 @@ const triggerSet: TriggerSet = { text: { en: 'Sides => Sides (again)', de: 'Seiten => Seiten (nochmal)', + fr: 'Côtés => Côtés (encore)', cn: '两侧 => 两侧 (重复)', ko: '옆으로 => 옆으로 (반복)', }, diff --git a/ui/raidboss/data/05-shb/hunts/lakeland.ts b/ui/raidboss/data/05-shb/hunts/lakeland.ts index bb8300840f..816c8c5eb6 100644 --- a/ui/raidboss/data/05-shb/hunts/lakeland.ts +++ b/ui/raidboss/data/05-shb/hunts/lakeland.ts @@ -39,6 +39,7 @@ const triggerSet: TriggerSet = { avoidStack: { en: 'Avoid Stack', de: 'Vermeide Sammeln', + fr: 'Évitez le package', cn: '远离分摊', ko: '쉐어징 피하기', }, @@ -92,6 +93,7 @@ const triggerSet: TriggerSet = { text: { en: 'Away from Dash', de: 'Weg vom Anstrum', + fr: 'Éloignez-vous du dash', cn: '躲避冲锋', ko: '돌진한 곳 피하기', }, @@ -107,6 +109,7 @@ const triggerSet: TriggerSet = { text: { en: 'Go Back/Right', de: 'Geh nach Hinten/Rechts', + fr: 'Allez à l\'arrière/droite', cn: '去背后/右侧', ko: '뒤/오른쪽으로', }, @@ -129,6 +132,7 @@ const triggerSet: TriggerSet = { text: { en: 'Go Back/Left', de: 'Geh nach Hinten/Links', + fr: 'Allez à l\'arrière/gauche', cn: '去背后/左侧', ko: '뒤/왼쪽으로', }, diff --git a/ui/raidboss/data/05-shb/hunts/the_raktika_greatwood.ts b/ui/raidboss/data/05-shb/hunts/the_raktika_greatwood.ts index d0fc48e820..a589638df3 100644 --- a/ui/raidboss/data/05-shb/hunts/the_raktika_greatwood.ts +++ b/ui/raidboss/data/05-shb/hunts/the_raktika_greatwood.ts @@ -45,6 +45,7 @@ const triggerSet: TriggerSet = { text: { en: 'GTFO + Look Away', de: 'Schnell raus + weg schauen', + fr: 'Allez vous-en et regardez ailleurs', cn: '快出去 + 看向其他方向', ko: '멀리 빠지기 + 뒤돌기', }, @@ -96,6 +97,7 @@ const triggerSet: TriggerSet = { text: { en: 'Heal to Full', de: 'Voll heilen', + fr: 'Soignez au maximum', cn: '奶满全员', ko: '체력 풀피로', }, diff --git a/ui/raidboss/data/05-shb/hunts/the_tempest.ts b/ui/raidboss/data/05-shb/hunts/the_tempest.ts index bcb2465933..1fffaccf4c 100644 --- a/ui/raidboss/data/05-shb/hunts/the_tempest.ts +++ b/ui/raidboss/data/05-shb/hunts/the_tempest.ts @@ -98,6 +98,7 @@ const triggerSet: TriggerSet = { avoidStack: { en: 'Avoid Stack', de: 'Vermeide Sammeln', + fr: 'Ne vous packez pas', cn: '远离分摊', ko: '쉐어징 피하기', }, diff --git a/ui/raidboss/data/05-shb/map/the_dungeons_of_lyhe_ghiah.ts b/ui/raidboss/data/05-shb/map/the_dungeons_of_lyhe_ghiah.ts index 1f62594fbc..f9d291502a 100644 --- a/ui/raidboss/data/05-shb/map/the_dungeons_of_lyhe_ghiah.ts +++ b/ui/raidboss/data/05-shb/map/the_dungeons_of_lyhe_ghiah.ts @@ -11,6 +11,7 @@ const lyheGhiahOutputStrings = { spawn: { en: '${name} spawned!', de: '${name} erscheint!', + fr: '${name} vient d\'apparaitre !', cn: '已生成 ${name}!', ko: '${name} 등장!', }, diff --git a/ui/raidboss/data/05-shb/map/the_shifting_oubliettes_of_lyhe_ghiah.ts b/ui/raidboss/data/05-shb/map/the_shifting_oubliettes_of_lyhe_ghiah.ts index 2dac490da7..c4d8776738 100644 --- a/ui/raidboss/data/05-shb/map/the_shifting_oubliettes_of_lyhe_ghiah.ts +++ b/ui/raidboss/data/05-shb/map/the_shifting_oubliettes_of_lyhe_ghiah.ts @@ -12,12 +12,14 @@ const lyheGhiahOutputStrings = { spawn: { en: '${name} spawned!', de: '${name} erscheint!', + fr: '${name} vient d\'apparaitre !', cn: '已生成 ${name}!', ko: '${name} 등장!', }, adds: { en: 'Adds soon', de: 'Bald Adds', + fr: 'Adds bientôt', cn: '小怪即将出现', ko: '곧 쫄 나옴', }, @@ -68,6 +70,7 @@ const triggerSet: TriggerSet = { text: { en: 'Dungeon Crew spawned, kill in order!', de: 'Verlies-Mandragora erscheinen, in Reihenfolge besiegen!', + fr: 'L\'équipe du donjon vient d\'apparaitre, tuez les dans l\'ordre !', cn: '已生成 宝库蔓德拉战队, 依次击杀!', ko: '만드라즈 등장, 순서대로 잡기!', }, diff --git a/ui/raidboss/data/05-shb/raid/e10n.txt b/ui/raidboss/data/05-shb/raid/e10n.txt index 11195731c8..52db55ece0 100644 --- a/ui/raidboss/data/05-shb/raid/e10n.txt +++ b/ui/raidboss/data/05-shb/raid/e10n.txt @@ -6,59 +6,59 @@ hideall "--sync--" # -ii 56B0 56B6 56B9 56BA 56BB 56BD 56BE 56C0 56C1 56CC 56D4 56D5 56D8 56D9 56E1 56E7 5B09 5B0D 5B26 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -17.0 "Forward Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56B4:/ window 17,5 -30.5 "Forward Shadow Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56B5:/ -41.8 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:56E5:/ -55.0 "Backward Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56B7:/ -68.5 "Backward Shadow Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56B8:/ -74.9 "--center--" sync / 1[56]:[^:]*:Shadowkeeper:5B08:/ window 74.9,10 -80.3 "Spawn Shadow" sync / 1[56]:[^:]*:Shadowkeeper:56D6:/ -82.0 "--sync--" sync / 1[56]:[^:]*:Shadowkeeper:56D7:/ -86.4 "Shadow Warrior" sync / 1[56]:[^:]*:Shadowkeeper:56E2:/ -99.6 "Barbs Of Agony" sync / 1[56]:[^:]*:Shadowkeeper:5743:/ -112.7 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:56E5:/ window 30,30 -118.9 "--center--" sync / 1[56]:[^:]*:Shadowkeeper:5B08:/ -124.3 "Fade To Shadow" sync / 1[56]:[^:]*:Shadowkeeper:56DA:/ -135.4 "--sync--" sync / 1[56]:[^:]*:Shadowkeeper:56DB:/ -137.9 "Cloak Of Shadows" sync / 1[56]:[^:]*:Shadowkeeper:5B11:/ window 50,50 -149.1 "Throne Of Shadow" sync / 1[56]:[^:]*:Shadowkeeper:56C7:/ -157.7 "Umbra Smash x4" duration 5 # sync / 1[56]:[^:]*:Shadowkeeper:5BAB:/ -169.2 "Shadow's Edge" sync / 1[56]:[^:]*:Shadowkeeper:5B0B:/ -180.6 "Left/Right Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:56(AE|B1):/ -194.1 "Left/Right Shadow Slash" sync / 1[56]:[^:]*:Shadowkeeper:56(AF|B2):/ -205.5 "Voidgate" sync / 1[56]:[^:]*:Shadowkeeper:56DD:/ window 50,50 -219.6 "Void Pulse" sync / 1[56]:[^:]*:Shadowkeeper:56DE:/ -230.8 "Left/Right Shadow Slash" sync / 1[56]:[^:]*:Shadowkeeper:56(AF|B2):/ -233.9 "Left/Right Shadow Slash" sync / 1[56]:[^:]*:Shadowkeeper:56(AF|B2):/ -246.6 "Distant Scream" sync / 1[56]:[^:]*:Shadowkeeper:56C6:/ window 246.6,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +17.0 "Forward Implosion" Ability { id: "56B4", source: "Shadowkeeper" } window 17,5 +30.5 "Forward Shadow Implosion" Ability { id: "56B5", source: "Shadowkeeper" } +41.8 "Deepshadow Nova" Ability { id: "56E5", source: "Shadowkeeper" } +55.0 "Backward Implosion" Ability { id: "56B7", source: "Shadowkeeper" } +68.5 "Backward Shadow Implosion" Ability { id: "56B8", source: "Shadowkeeper" } +74.9 "--center--" Ability { id: "5B08", source: "Shadowkeeper" } window 74.9,10 +80.3 "Spawn Shadow" Ability { id: "56D6", source: "Shadowkeeper" } +82.0 "--sync--" Ability { id: "56D7", source: "Shadowkeeper" } +86.4 "Shadow Warrior" Ability { id: "56E2", source: "Shadowkeeper" } +99.6 "Barbs Of Agony" Ability { id: "5743", source: "Shadowkeeper" } +112.7 "Deepshadow Nova" Ability { id: "56E5", source: "Shadowkeeper" } window 30,30 +118.9 "--center--" Ability { id: "5B08", source: "Shadowkeeper" } +124.3 "Fade To Shadow" Ability { id: "56DA", source: "Shadowkeeper" } +135.4 "--sync--" Ability { id: "56DB", source: "Shadowkeeper" } +137.9 "Cloak Of Shadows" Ability { id: "5B11", source: "Shadowkeeper" } window 50,50 +149.1 "Throne Of Shadow" Ability { id: "56C7", source: "Shadowkeeper" } +157.7 "Umbra Smash x4" duration 5 # Ability { id: "5BAB", source: "Shadowkeeper" } +169.2 "Shadow's Edge" Ability { id: "5B0B", source: "Shadowkeeper" } +180.6 "Left/Right Giga Slash" Ability { id: "56(AE|B1)", source: "Shadowkeeper" } +194.1 "Left/Right Shadow Slash" Ability { id: "56(AF|B2)", source: "Shadowkeeper" } +205.5 "Voidgate" Ability { id: "56DD", source: "Shadowkeeper" } window 50,50 +219.6 "Void Pulse" Ability { id: "56DE", source: "Shadowkeeper" } +230.8 "Left/Right Shadow Slash" Ability { id: "56(AF|B2)", source: "Shadowkeeper" } +233.9 "Left/Right Shadow Slash" Ability { id: "56(AF|B2)", source: "Shadowkeeper" } +246.6 "Distant Scream" Ability { id: "56C6", source: "Shadowkeeper" } window 246.6,10 -253.2 "--center--" sync / 1[56]:[^:]*:Shadowkeeper:5B08:/ -258.6 "Spawn Shadow" sync / 1[56]:[^:]*:Shadowkeeper:56D6:/ -260.3 "--sync--" sync / 1[56]:[^:]*:Shadowkeeper:56D7:/ -264.7 "Shadow Warrior" sync / 1[56]:[^:]*:Shadowkeeper:56E2:/ -276.9 "Shadowy Eruption" sync / 1[56]:[^:]*:Shadowkeeper:56(DF|E4):/ -278.0 "Barbs Of Agony" sync / 1[56]:[^:]*:Shadowkeeper:5743:/ -295.1 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:56E5:/ -309.4 "Front/Back Shadow Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56B[58]:/ -312.5 "Front/Back Shadow Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56B[58]:/ -320.7 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:56E5:/ -328.9 "--center--" sync / 1[56]:[^:]*:Shadowkeeper:5B08:/ -334.3 "Fade To Shadow" sync / 1[56]:[^:]*:Shadowkeeper:56DA:/ -345.4 "--sync--" sync / 1[56]:[^:]*:Shadowkeeper:56DB:/ -347.1 "Forward/Backward Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56B[47]:/ -347.9 "Cloak Of Shadows" sync / 1[56]:[^:]*:Shadowkeeper:5B11:/ -359.0 "Throne Of Shadow" sync / 1[56]:[^:]*:Shadowkeeper:56C7:/ -367.6 "Voidgate" sync / 1[56]:[^:]*:Shadowkeeper:56DD:/ -381.7 "Void Pulse" sync / 1[56]:[^:]*:Shadowkeeper:56DE:/ -384.8 "Left/Right Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:56(AE|B1):/ -395.2 "Shadowy Eruption" sync / 1[56]:[^:]*:Shadowkeeper:56(DF|E4):/ -404.4 "Left/Right Shadow Slash" sync / 1[56]:[^:]*:Shadowkeeper:56(AF|B2):/ -407.5 "Left/Right Shadow Slash" sync / 1[56]:[^:]*:Shadowkeeper:56(AF|B2):/ -418.6 "Umbra Smash x4" duration 5 # sync / 1[56]:[^:]*:Shadowkeeper:5BAB:/ -430.0 "Shadow's Edge" sync / 1[56]:[^:]*:Shadowkeeper:5B0B:/ -439.3 "Shadowy Eruption x3" # sync / 1[56]:[^:]*:Shadowkeeper:56E0:/ -449.0 "Distant Scream" sync / 1[56]:[^:]*:Shadowkeeper:56C6:/ jump 246.6 +253.2 "--center--" Ability { id: "5B08", source: "Shadowkeeper" } +258.6 "Spawn Shadow" Ability { id: "56D6", source: "Shadowkeeper" } +260.3 "--sync--" Ability { id: "56D7", source: "Shadowkeeper" } +264.7 "Shadow Warrior" Ability { id: "56E2", source: "Shadowkeeper" } +276.9 "Shadowy Eruption" Ability { id: "56(DF|E4)", source: "Shadowkeeper" } +278.0 "Barbs Of Agony" Ability { id: "5743", source: "Shadowkeeper" } +295.1 "Deepshadow Nova" Ability { id: "56E5", source: "Shadowkeeper" } +309.4 "Front/Back Shadow Implosion" Ability { id: "56B[58]", source: "Shadowkeeper" } +312.5 "Front/Back Shadow Implosion" Ability { id: "56B[58]", source: "Shadowkeeper" } +320.7 "Deepshadow Nova" Ability { id: "56E5", source: "Shadowkeeper" } +328.9 "--center--" Ability { id: "5B08", source: "Shadowkeeper" } +334.3 "Fade To Shadow" Ability { id: "56DA", source: "Shadowkeeper" } +345.4 "--sync--" Ability { id: "56DB", source: "Shadowkeeper" } +347.1 "Forward/Backward Implosion" Ability { id: "56B[47]", source: "Shadowkeeper" } +347.9 "Cloak Of Shadows" Ability { id: "5B11", source: "Shadowkeeper" } +359.0 "Throne Of Shadow" Ability { id: "56C7", source: "Shadowkeeper" } +367.6 "Voidgate" Ability { id: "56DD", source: "Shadowkeeper" } +381.7 "Void Pulse" Ability { id: "56DE", source: "Shadowkeeper" } +384.8 "Left/Right Giga Slash" Ability { id: "56(AE|B1)", source: "Shadowkeeper" } +395.2 "Shadowy Eruption" Ability { id: "56(DF|E4)", source: "Shadowkeeper" } +404.4 "Left/Right Shadow Slash" Ability { id: "56(AF|B2)", source: "Shadowkeeper" } +407.5 "Left/Right Shadow Slash" Ability { id: "56(AF|B2)", source: "Shadowkeeper" } +418.6 "Umbra Smash x4" duration 5 # Ability { id: "5BAB", source: "Shadowkeeper" } +430.0 "Shadow's Edge" Ability { id: "5B0B", source: "Shadowkeeper" } +439.3 "Shadowy Eruption x3" # Ability { id: "56E0", source: "Shadowkeeper" } +449.0 "Distant Scream" Ability { id: "56C6", source: "Shadowkeeper" } jump 246.6 461.0 "Spawn Shadow" 467.1 "Shadow Warrior" diff --git a/ui/raidboss/data/05-shb/raid/e10s.txt b/ui/raidboss/data/05-shb/raid/e10s.txt index 0204f7476f..48a080ba3f 100644 --- a/ui/raidboss/data/05-shb/raid/e10s.txt +++ b/ui/raidboss/data/05-shb/raid/e10s.txt @@ -13,104 +13,104 @@ hideall "--Reset--" hideall "--sync--" 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.3 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ window 12,10 -24.5 "Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56F[03]:/ -33.3 "Throne Of Shadow" sync / 1[56]:[^:]*:Shadowkeeper:5717:/ -40.9 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:56E[AD]:/ -53.2 "Umbra Smash" sync / 1[56]:[^:]*:Shadowkeeper:5BAA:/ -54.8 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -56.4 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -58.0 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -66.1 "Darkness Unleashed / Shadow's Edge" sync / 1[56]:[^:]*:Shadowkeeper:5B0[CE]:/ -80.9 "Shadow Cleave" sync / 1[56]:[^:]*:Shadowkeeper:5718:/ -94.0 "Dualspell" sync / 1[56]:[^:]*:Shadowkeeper:573A:/ -94.0 "Blighting Blitz" sync / 1[56]:[^:]*:Shadowkeeper:573B:/ -97.0 "Blighting Blitz" sync / 1[56]:[^:]*:Shadowkeeper:573B:/ -100.0 "Blighting Blitz" sync / 1[56]:[^:]*:Shadowkeeper:573B:/ -107.4 "Shadowkeeper" sync / 1[56]:[^:]*:Shadowkeeper:5720:/ -110.5 "Swath Of Silence" sync / 1[56]:[^:]*:Shadow Of A Hero:5BBF:/ -119.8 "Umbra Smash" sync / 1[56]:[^:]*:Shadowkeeper:5BAA:/ -121.4 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -123.0 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -124.6 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -132.7 "Darkness Unleashed / Shadow's Edge" sync / 1[56]:[^:]*:Shadowkeeper:5B0[CE]:/ -144.3 "Shadow Servant" sync / 1[56]:[^:]*:Shadowkeeper:5704:/ -159.4 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:5B2[CD]:/ -177.5 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:5B2[CD]:/ -191.2 "Distant Scream" sync / 1[56]:[^:]*:Shadowkeeper:5716:/ -199.7 "Umbral Orbs" sync / 1[56]:[^:]*:Shadowkeeper:5730:/ -209.5 "Flameshadow" sync / 1[56]:[^:]*:Shadefire:5733:/ -211.9 "--sync--" sync / 1[56]:[^:]*:Shadowkeeper:5B08:/ -217.3 "Spawn Shadow" sync / 1[56]:[^:]*:Shadowkeeper:5727:/ -223.4 "Shadow Warrior" sync / 1[56]:[^:]*:Shadowkeeper:5739:/ -229.5 "Umbral Orbs" sync / 1[56]:[^:]*:Shadowkeeper:5730:/ -239.3 "Flameshadow" sync / 1[56]:[^:]*:Shadefire:5733:/ -253.7 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ -261.9 "--sync--" sync / 1[56]:[^:]*:Shadowkeeper:5B08:/ -267.1 "Fade To Shadow" sync / 1[56]:[^:]*:Shadowkeeper:572B:/ -279.4 "Implosion" sync / 1[56]:[^:]*:Shadowkeeper:56F[03]:/ -280.7 "Cloak Of Shadows" sync / 1[56]:[^:]*:Shadowkeeper:5B13:/ -285.7 "Cloak Of Shadows" sync / 1[56]:[^:]*:Shadowkeeper:5B14:/ -290.7 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ -306.0 "Implosion" sync / 1[56]:[^:]*:Shadowkeeper:(5700|56FC):/ -309.1 "Implosion" sync / 1[56]:[^:]*:Shadowkeeper:(5701|56FD):/ -312.2 "Implosion" sync / 1[56]:[^:]*:Shadowkeeper:(5701|56FD):/ -315.3 "Implosion" sync / 1[56]:[^:]*:Shadowkeeper:(5702|56FE):/ -323.4 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ -335.1 "Throne Of Shadow" sync / 1[56]:[^:]*:Shadowkeeper:5717:/ -341.6 "Umbra Smash" sync / 1[56]:[^:]*:Shadowkeeper:5BAA:/ -343.2 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -344.8 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -346.4 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -354.5 "Darkness Unleashed / Shadow's Edge" sync / 1[56]:[^:]*:Shadowkeeper:5B0[CE]:/ -367.1 "Voidgate" sync / 1[56]:[^:]*:Shadowkeeper:5734:/ -373.3 "Shadow Servant" sync / 1[56]:[^:]*:Shadowkeeper:5704:/ -384.2 "Void Pulse" sync / 1[56]:[^:]*:Shadowkeeper:5735:/ -388.4 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:5B2[CD]:/ -401.9 "Void Pulse" sync / 1[56]:[^:]*:Shadowkeeper:5735:/ -409.5 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:5B2[CD]:/ -425.7 "Pitch Bog" sync / 1[56]:[^:]*:Shadowkeeper:5721:/ -431.0 "Umbral Orbs" sync / 1[56]:[^:]*:Shadowkeeper:5731:/ -438.9 "Distant Scream" sync / 1[56]:[^:]*:Shadowkeeper:5716:/ -440.9 "Flameshadow" sync / 1[56]:[^:]*:Shadefire:5733:/ -449.6 "Implosion" sync / 1[56]:[^:]*:Shadowkeeper:(5700|56FC):/ -452.7 "Implosion" sync / 1[56]:[^:]*:Shadowkeeper:(5702|5701|56FE):/ -464.8 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ -476.0 "Shackled Apart" sync / 1[56]:[^:]*:Shadowkeeper:5BAC:/ -478.5 "--sync--" sync / 1[56]:[^:]*:Shadowkeeper:5B08:/ -483.7 "Fade To Shadow" sync / 1[56]:[^:]*:Shadowkeeper:572B:/ -491.9 "Umbral Orbs" sync / 1[56]:[^:]*:Shadowkeeper:5730:/ -497.3 "Cloak Of Shadows" sync / 1[56]:[^:]*:Shadowkeeper:5B13:/ -502.3 "Cloak Of Shadows" sync / 1[56]:[^:]*:Shadowkeeper:5B14:/ -503.7 "Flameshadow" sync / 1[56]:[^:]*:Shadefire:5733:/ -516.0 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ -531.6 "Throne Of Shadow" sync / 1[56]:[^:]*:Shadowkeeper:5717:/ -538.2 "Pitch Bog" sync / 1[56]:[^:]*:Shadowkeeper:5721:/ -546.6 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:(56F8|56F4):/ -549.7 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:(56F9|56F5):/ -552.8 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:(56F9|56F5):/ -555.9 "Giga Slash" sync / 1[56]:[^:]*:Shadowkeeper:(56FA|56F6):/ -563.0 "Voidgate Amplifier" sync / 1[56]:[^:]*:Shadowkeeper:5BCF:/ -570.1 "Shadowkeeper" sync / 1[56]:[^:]*:Shadowkeeper:5720:/ -573.2 "Swath Of Silence" sync / 1[56]:[^:]*:Shadow Of A Hero:5BBF:/ -577.6 "Void Pulse" sync / 1[56]:[^:]*:Shadowkeeper:5735:/ -581.6 "Shadowy Eruption" sync / 1[56]:[^:]*:Shadowkeeper:5737:/ -585.4 "Shadowy Eruption" sync / 1[56]:[^:]*:Shadowkeeper:5738:/ -587.0 "Shackled Together" sync / 1[56]:[^:]*:Shadowkeeper:572E:/ -592.8 "Void Pulse" sync / 1[56]:[^:]*:Shadowkeeper:5735:/ -601.4 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5BAA:/ -603.0 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -604.6 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -606.2 "Umbra Smash" #sync / 1[56]:[^:]*:Shadowkeeper:5724:/ -614.3 "Darkness Unleashed / Shadow's Edge" sync / 1[56]:[^:]*:Shadowkeeper:5B0[CE]:/ -621.9 "Umbral Orbs" sync / 1[56]:[^:]*:Shadowkeeper:5731:/ -629.8 "Distant Scream" sync / 1[56]:[^:]*:Shadowkeeper:5716:/ -631.7 "Flameshadow" sync / 1[56]:[^:]*:Shadefire:5733:/ -642.3 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ -654.5 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ -662.7 "Deepshadow Nova" sync / 1[56]:[^:]*:Shadowkeeper:573E:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.3 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } window 12,10 +24.5 "Implosion" Ability { id: "56F[03]", source: "Shadowkeeper" } +33.3 "Throne Of Shadow" Ability { id: "5717", source: "Shadowkeeper" } +40.9 "Giga Slash" Ability { id: "56E[AD]", source: "Shadowkeeper" } +53.2 "Umbra Smash" Ability { id: "5BAA", source: "Shadowkeeper" } +54.8 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +56.4 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +58.0 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +66.1 "Darkness Unleashed / Shadow's Edge" Ability { id: "5B0[CE]", source: "Shadowkeeper" } +80.9 "Shadow Cleave" Ability { id: "5718", source: "Shadowkeeper" } +94.0 "Dualspell" Ability { id: "573A", source: "Shadowkeeper" } +94.0 "Blighting Blitz" Ability { id: "573B", source: "Shadowkeeper" } +97.0 "Blighting Blitz" Ability { id: "573B", source: "Shadowkeeper" } +100.0 "Blighting Blitz" Ability { id: "573B", source: "Shadowkeeper" } +107.4 "Shadowkeeper" Ability { id: "5720", source: "Shadowkeeper" } +110.5 "Swath Of Silence" Ability { id: "5BBF", source: "Shadow Of A Hero" } +119.8 "Umbra Smash" Ability { id: "5BAA", source: "Shadowkeeper" } +121.4 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +123.0 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +124.6 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +132.7 "Darkness Unleashed / Shadow's Edge" Ability { id: "5B0[CE]", source: "Shadowkeeper" } +144.3 "Shadow Servant" Ability { id: "5704", source: "Shadowkeeper" } +159.4 "Giga Slash" Ability { id: "5B2[CD]", source: "Shadowkeeper" } +177.5 "Giga Slash" Ability { id: "5B2[CD]", source: "Shadowkeeper" } +191.2 "Distant Scream" Ability { id: "5716", source: "Shadowkeeper" } +199.7 "Umbral Orbs" Ability { id: "5730", source: "Shadowkeeper" } +209.5 "Flameshadow" Ability { id: "5733", source: "Shadefire" } +211.9 "--sync--" Ability { id: "5B08", source: "Shadowkeeper" } +217.3 "Spawn Shadow" Ability { id: "5727", source: "Shadowkeeper" } +223.4 "Shadow Warrior" Ability { id: "5739", source: "Shadowkeeper" } +229.5 "Umbral Orbs" Ability { id: "5730", source: "Shadowkeeper" } +239.3 "Flameshadow" Ability { id: "5733", source: "Shadefire" } +253.7 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } +261.9 "--sync--" Ability { id: "5B08", source: "Shadowkeeper" } +267.1 "Fade To Shadow" Ability { id: "572B", source: "Shadowkeeper" } +279.4 "Implosion" Ability { id: "56F[03]", source: "Shadowkeeper" } +280.7 "Cloak Of Shadows" Ability { id: "5B13", source: "Shadowkeeper" } +285.7 "Cloak Of Shadows" Ability { id: "5B14", source: "Shadowkeeper" } +290.7 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } +306.0 "Implosion" Ability { id: ["5700", "56FC"], source: "Shadowkeeper" } +309.1 "Implosion" Ability { id: ["5701", "56FD"], source: "Shadowkeeper" } +312.2 "Implosion" Ability { id: ["5701", "56FD"], source: "Shadowkeeper" } +315.3 "Implosion" Ability { id: ["5702", "56FE"], source: "Shadowkeeper" } +323.4 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } +335.1 "Throne Of Shadow" Ability { id: "5717", source: "Shadowkeeper" } +341.6 "Umbra Smash" Ability { id: "5BAA", source: "Shadowkeeper" } +343.2 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +344.8 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +346.4 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +354.5 "Darkness Unleashed / Shadow's Edge" Ability { id: "5B0[CE]", source: "Shadowkeeper" } +367.1 "Voidgate" Ability { id: "5734", source: "Shadowkeeper" } +373.3 "Shadow Servant" Ability { id: "5704", source: "Shadowkeeper" } +384.2 "Void Pulse" Ability { id: "5735", source: "Shadowkeeper" } +388.4 "Giga Slash" Ability { id: "5B2[CD]", source: "Shadowkeeper" } +401.9 "Void Pulse" Ability { id: "5735", source: "Shadowkeeper" } +409.5 "Giga Slash" Ability { id: "5B2[CD]", source: "Shadowkeeper" } +425.7 "Pitch Bog" Ability { id: "5721", source: "Shadowkeeper" } +431.0 "Umbral Orbs" Ability { id: "5731", source: "Shadowkeeper" } +438.9 "Distant Scream" Ability { id: "5716", source: "Shadowkeeper" } +440.9 "Flameshadow" Ability { id: "5733", source: "Shadefire" } +449.6 "Implosion" Ability { id: ["5700", "56FC"], source: "Shadowkeeper" } +452.7 "Implosion" Ability { id: ["5702", "5701", "56FE"], source: "Shadowkeeper" } +464.8 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } +476.0 "Shackled Apart" Ability { id: "5BAC", source: "Shadowkeeper" } +478.5 "--sync--" Ability { id: "5B08", source: "Shadowkeeper" } +483.7 "Fade To Shadow" Ability { id: "572B", source: "Shadowkeeper" } +491.9 "Umbral Orbs" Ability { id: "5730", source: "Shadowkeeper" } +497.3 "Cloak Of Shadows" Ability { id: "5B13", source: "Shadowkeeper" } +502.3 "Cloak Of Shadows" Ability { id: "5B14", source: "Shadowkeeper" } +503.7 "Flameshadow" Ability { id: "5733", source: "Shadefire" } +516.0 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } +531.6 "Throne Of Shadow" Ability { id: "5717", source: "Shadowkeeper" } +538.2 "Pitch Bog" Ability { id: "5721", source: "Shadowkeeper" } +546.6 "Giga Slash" Ability { id: ["56F8", "56F4"], source: "Shadowkeeper" } +549.7 "Giga Slash" Ability { id: ["56F9", "56F5"], source: "Shadowkeeper" } +552.8 "Giga Slash" Ability { id: ["56F9", "56F5"], source: "Shadowkeeper" } +555.9 "Giga Slash" Ability { id: ["56FA", "56F6"], source: "Shadowkeeper" } +563.0 "Voidgate Amplifier" Ability { id: "5BCF", source: "Shadowkeeper" } +570.1 "Shadowkeeper" Ability { id: "5720", source: "Shadowkeeper" } +573.2 "Swath Of Silence" Ability { id: "5BBF", source: "Shadow Of A Hero" } +577.6 "Void Pulse" Ability { id: "5735", source: "Shadowkeeper" } +581.6 "Shadowy Eruption" Ability { id: "5737", source: "Shadowkeeper" } +585.4 "Shadowy Eruption" Ability { id: "5738", source: "Shadowkeeper" } +587.0 "Shackled Together" Ability { id: "572E", source: "Shadowkeeper" } +592.8 "Void Pulse" Ability { id: "5735", source: "Shadowkeeper" } +601.4 "Umbra Smash" #Ability { id: "5BAA", source: "Shadowkeeper" } +603.0 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +604.6 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +606.2 "Umbra Smash" #Ability { id: "5724", source: "Shadowkeeper" } +614.3 "Darkness Unleashed / Shadow's Edge" Ability { id: "5B0[CE]", source: "Shadowkeeper" } +621.9 "Umbral Orbs" Ability { id: "5731", source: "Shadowkeeper" } +629.8 "Distant Scream" Ability { id: "5716", source: "Shadowkeeper" } +631.7 "Flameshadow" Ability { id: "5733", source: "Shadefire" } +642.3 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } +654.5 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } +662.7 "Deepshadow Nova" Ability { id: "573E", source: "Shadowkeeper" } ### TODO: is this enrage?? -675.8 "Doom Arc" sync / 1[56]:[^:]*:Shadowkeeper:5741:/ -677.5 "Doom Arc" sync / 1[56]:[^:]*:Shadowkeeper:5742:/ +675.8 "Doom Arc" Ability { id: "5741", source: "Shadowkeeper" } +677.5 "Doom Arc" Ability { id: "5742", source: "Shadowkeeper" } diff --git a/ui/raidboss/data/05-shb/raid/e11n.txt b/ui/raidboss/data/05-shb/raid/e11n.txt index 6b77e973b4..a4bcf5bc3d 100644 --- a/ui/raidboss/data/05-shb/raid/e11n.txt +++ b/ui/raidboss/data/05-shb/raid/e11n.txt @@ -7,88 +7,88 @@ hideall "--sync--" # -ii 366 4B18 4B19 4B1B # Opening Block. Introduces Fire/Lightning in a random order. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.0 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ window 11,5 -21.8 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:562[CE]:/ -23.5 "Blastburn/Burnout" # sync / 1[56]:[^:]*:Fatebreaker:562[DF]:/ -39.3 "Floating Fetters" sync / 1[56]:[^:]*:Fatebreaker:58F4:/ -41.4 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:563[24]:/ -42.7 "Sinsmite/Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker:563[35]:/ -54.5 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ window 54.5,5 -65.0 "Powder Mark" sync / 1[56]:[^:]*:Fatebreaker:564E:/ -67.5 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ window 30,30 -78.7 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:562[CE]:/ -78.9 "Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:564F:/ -80.4 "Blastburn/Burnout" # sync / 1[56]:[^:]*:Fatebreaker:562[DF]:/ -88.8 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ -103.6 "Floating Fetters" sync / 1[56]:[^:]*:Fatebreaker:58F4:/ -105.6 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:563[24]:/ -106.9 "Sinsmite/Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker:563[35]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.0 "--center--" Ability { id: "5908", source: "Fatebreaker" } window 11,5 +21.8 "Burnt Strike" Ability { id: "562[CE]", source: "Fatebreaker" } +23.5 "Blastburn/Burnout" # Ability { id: "562[DF]", source: "Fatebreaker" } +39.3 "Floating Fetters" Ability { id: "58F4", source: "Fatebreaker" } +41.4 "Solemn Charge" Ability { id: "563[24]", source: "Fatebreaker" } +42.7 "Sinsmite/Sinsmoke" Ability { id: "563[35]", source: "Fatebreaker" } +54.5 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } window 54.5,5 +65.0 "Powder Mark" Ability { id: "564E", source: "Fatebreaker" } +67.5 "--center--" Ability { id: "5908", source: "Fatebreaker" } window 30,30 +78.7 "Burnt Strike" Ability { id: "562[CE]", source: "Fatebreaker" } +78.9 "Burn Mark" Ability { id: "564F", source: "Fatebreaker" } +80.4 "Blastburn/Burnout" # Ability { id: "562[DF]", source: "Fatebreaker" } +88.8 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } +103.6 "Floating Fetters" Ability { id: "58F4", source: "Fatebreaker" } +105.6 "Solemn Charge" Ability { id: "563[24]", source: "Fatebreaker" } +106.9 "Sinsmite/Sinsmoke" Ability { id: "563[35]", source: "Fatebreaker" } # Turn of the Heavens introduced, random element. -121.7 "Turn Of The Heavens" sync / 1[56]:[^:]*:Fatebreaker:563[9A]:/ window 121.7,5 -133.5 "Brightfire" # sync / 1[56]:[^:]*:Halo Of Flame:563[BC]:/ -146.2 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ -159.7 "Shifting Sky" sync / 1[56]:[^:]*:Fatebreaker:563F:/ window 159.7,5 +121.7 "Turn Of The Heavens" Ability { id: "563[9A]", source: "Fatebreaker" } window 121.7,5 +133.5 "Brightfire" # Ability { id: "563[BC]", source: "Halo Of Flame" } +146.2 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } +159.7 "Shifting Sky" Ability { id: "563F", source: "Fatebreaker" } window 159.7,5 162.1 "--untargetable--" # Single serpent intermission. Lightning Burnt Strike is always first. -167.2 "--sync--" sync / 1[56]:[^:]*:Demi-Gukumatz:564B:/ -167.3 "Ageless Serpent" sync / 1[56]:[^:]*:Demi-Gukumatz:564C:/ window 167.3,5 -174.7 "Resounding Crack" sync / 1[56]:[^:]*:Demi-Gukumatz:564D:/ -183.9 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker's Image:5645:/ -185.6 "Burnout" sync / 1[56]:[^:]*:Fatebreaker's Image:5646:/ -187.9 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker's Image:5643:/ -189.9 "Blastburn" sync / 1[56]:[^:]*:Fatebreaker's Image:5644:/ +167.2 "--sync--" Ability { id: "564B", source: "Demi-Gukumatz" } +167.3 "Ageless Serpent" Ability { id: "564C", source: "Demi-Gukumatz" } window 167.3,5 +174.7 "Resounding Crack" Ability { id: "564D", source: "Demi-Gukumatz" } +183.9 "Burnt Strike" Ability { id: "5645", source: "Fatebreaker's Image" } +185.6 "Burnout" Ability { id: "5646", source: "Fatebreaker's Image" } +187.9 "Burnt Strike" Ability { id: "5643", source: "Fatebreaker's Image" } +189.9 "Blastburn" Ability { id: "5644", source: "Fatebreaker's Image" } 195.7 "--targetable--" # Holy introduction block. -201.9 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ window 40,5 -213.5 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -224.5 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:5630:/ -229.5 "Shining Blade" sync / 1[56]:[^:]*:Fatebreaker:5631:/ -236.6 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ -250.4 "Floating Fetters" sync / 1[56]:[^:]*:Fatebreaker:58F4:/ window 50,30 -252.4 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:5636:/ -253.7 "Sinsight" sync / 1[56]:[^:]*:Fatebreaker:5637:/ -259.3 "Mortal Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:5638:/ -260.5 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -269.1 "Prismatic Deception" sync / 1[56]:[^:]*:Fatebreaker:563D:/ window 269.1,5 +201.9 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } window 40,5 +213.5 "--center--" Ability { id: "5908", source: "Fatebreaker" } +224.5 "Burnt Strike" Ability { id: "5630", source: "Fatebreaker" } +229.5 "Shining Blade" Ability { id: "5631", source: "Fatebreaker" } +236.6 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } +250.4 "Floating Fetters" Ability { id: "58F4", source: "Fatebreaker" } window 50,30 +252.4 "Solemn Charge" Ability { id: "5636", source: "Fatebreaker" } +253.7 "Sinsight" Ability { id: "5637", source: "Fatebreaker" } +259.3 "Mortal Burn Mark" Ability { id: "5638", source: "Fatebreaker" } +260.5 "--center--" Ability { id: "5908", source: "Fatebreaker" } +269.1 "Prismatic Deception" Ability { id: "563D", source: "Fatebreaker" } window 269.1,5 272.2 "--untargetable--" # Clone intermission. -294.5 "Blasting Zone" sync / 1[56]:[^:]*:Fatebreaker's Image:563E:/ +294.5 "Blasting Zone" Ability { id: "563E", source: "Fatebreaker's Image" } 300.4 "--targetable--" # Multi-Strike rotation block -306.5 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ -319.1 "Powder Mark" sync / 1[56]:[^:]*:Fatebreaker:564E:/ -329.6 "Turn Of The Heavens" sync / 1[56]:[^:]*:Fatebreaker:563[9A]:/ window 30,30 -333.0 "Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:564F:/ -341.4 "Brightfire" # sync / 1[56]:[^:]*:Halo Of Flame:563[BC]:/ -346.1 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -356.8 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:56(2C|2E|30):/ -358.5 "Blastburn/Burnout" # sync / 1[56]:[^:]*:Fatebreaker:(2D|2F|31):/ -369.2 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:56(2C|2E|30):/ -370.9 "Blastburn/Burnout" # sync / 1[56]:[^:]*:Fatebreaker:(2D|2F|31):/ -381.2 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ +306.5 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } +319.1 "Powder Mark" Ability { id: "564E", source: "Fatebreaker" } +329.6 "Turn Of The Heavens" Ability { id: "563[9A]", source: "Fatebreaker" } window 30,30 +333.0 "Burn Mark" Ability { id: "564F", source: "Fatebreaker" } +341.4 "Brightfire" # Ability { id: "563[BC]", source: "Halo Of Flame" } +346.1 "--center--" Ability { id: "5908", source: "Fatebreaker" } +356.8 "Burnt Strike" Ability { id: "56(2C|2E|30)", source: "Fatebreaker" } +358.5 "Blastburn/Burnout" # Ability { id: "56(2D|2F|31)", source: "Fatebreaker" } +369.2 "Burnt Strike" Ability { id: "56(2C|2E|30)", source: "Fatebreaker" } +370.9 "Blastburn/Burnout" # Ability { id: "56(2D|2F|31)", source: "Fatebreaker" } +381.2 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } # Fetters rotation block -391.7 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ -404.2 "Powder Mark" sync / 1[56]:[^:]*:Fatebreaker:564E:/ -414.7 "Turn Of The Heavens" sync / 1[56]:[^:]*:Fatebreaker:563[9A]:/ window 30,30 -418.1 "Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:564F:/ -426.5 "Brightfire" # sync / 1[56]:[^:]*:Halo Of Flame:563[BC]:/ -431.2 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -442.1 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:56(2C|2E|30):/ -446.9 "Shining Blade" # sync / 1[56]:[^:]*:Fatebreaker:5631:/ -454.2 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ -466.9 "Floating Fetters" sync / 1[56]:[^:]*:Fatebreaker:58F4:/ -469.0 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:563[246]:/ -470.3 "Sinsmite/Sinsmoke/Sinsight" sync / 1[56]:[^:]*:Fatebreaker:563[357]:/ -475.9 "Mortal Burn Mark?" sync / 1[56]:[^:]*:Fatebreaker:5638:/ +391.7 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } +404.2 "Powder Mark" Ability { id: "564E", source: "Fatebreaker" } +414.7 "Turn Of The Heavens" Ability { id: "563[9A]", source: "Fatebreaker" } window 30,30 +418.1 "Burn Mark" Ability { id: "564F", source: "Fatebreaker" } +426.5 "Brightfire" # Ability { id: "563[BC]", source: "Halo Of Flame" } +431.2 "--center--" Ability { id: "5908", source: "Fatebreaker" } +442.1 "Burnt Strike" Ability { id: "56(2C|2E|30)", source: "Fatebreaker" } +446.9 "Shining Blade" # Ability { id: "5631", source: "Fatebreaker" } +454.2 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } +466.9 "Floating Fetters" Ability { id: "58F4", source: "Fatebreaker" } +469.0 "Solemn Charge" Ability { id: "563[246]", source: "Fatebreaker" } +470.3 "Sinsmite/Sinsmoke/Sinsight" Ability { id: "563[357]", source: "Fatebreaker" } +475.9 "Mortal Burn Mark?" Ability { id: "5638", source: "Fatebreaker" } -480.1 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:5650:/ jump 306.5 +480.1 "Burnished Glory" Ability { id: "5650", source: "Fatebreaker" } jump 306.5 492.7 "Powder Mark" 503.2 "Turn Of The Heavens" 506.6 "Burn Mark" diff --git a/ui/raidboss/data/05-shb/raid/e11s.txt b/ui/raidboss/data/05-shb/raid/e11s.txt index a957475e0a..75fb3ec31b 100644 --- a/ui/raidboss/data/05-shb/raid/e11s.txt +++ b/ui/raidboss/data/05-shb/raid/e11s.txt @@ -8,24 +8,24 @@ hideall "--Reset--" hideall "--sync--" # example lightning bound of faith -# 46.7 "Bound Of Faith" sync / 1[56]:[^:]*:Fatebreaker:565[8B]:/ -# 46.8 "Floating Fetters" sync / 1[56]:[^:]*:Fatebreaker:58F4:/ -# 48.8 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:565C:/ -# 50.1 "Sinsmite" sync / 1[56]:[^:]*:Fatebreaker:565D:/ -# 50.5 "Bow Shock" sync / 1[56]:[^:]*:Fatebreaker:565E:/ +# 46.7 "Bound Of Faith" Ability { id: "565[8B]", source: "Fatebreaker" } +# 46.8 "Floating Fetters" Ability { id: "58F4", source: "Fatebreaker" } +# 48.8 "Solemn Charge" Ability { id: "565C", source: "Fatebreaker" } +# 50.1 "Sinsmite" Ability { id: "565D", source: "Fatebreaker" } +# 50.5 "Bow Shock" Ability { id: "565E", source: "Fatebreaker" } # example fire bound of faith -# 46.6 "Bound Of Faith" sync / 1[56]:[^:]*:Fatebreaker:5658:/ -# 46.9 "Floating Fetters" sync / 1[56]:[^:]*:Fatebreaker:58F4:/ -# 49.0 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:5659:/ -# 50.3 "Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker:565A:/ +# 46.6 "Bound Of Faith" Ability { id: "5658", source: "Fatebreaker" } +# 46.9 "Floating Fetters" Ability { id: "58F4", source: "Fatebreaker" } +# 49.0 "Solemn Charge" Ability { id: "5659", source: "Fatebreaker" } +# 50.3 "Sinsmoke" Ability { id: "565A", source: "Fatebreaker" } # example holy bound of faith -# 46.7 "Bound Of Faith" sync / 1[56]:[^:]*:Fatebreaker:565F:/ -# 46.9 "Floating Fetters" sync / 1[56]:[^:]*:Fatebreaker:58F4:/ -# 49.0 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:5660:/ -# 50.3 "Sinsight" sync / 1[56]:[^:]*:Fatebreaker:5661:/ -# 55.9 "Mortal Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:5662:/ +# 46.7 "Bound Of Faith" Ability { id: "565F", source: "Fatebreaker" } +# 46.9 "Floating Fetters" Ability { id: "58F4", source: "Fatebreaker" } +# 49.0 "Solemn Charge" Ability { id: "5660", source: "Fatebreaker" } +# 50.3 "Sinsight" Ability { id: "5661", source: "Fatebreaker" } +# 55.9 "Mortal Burn Mark" Ability { id: "5662", source: "Fatebreaker" } # Burnt Strike timings: # * Burnout, lightning, 5655, 1.7s delay @@ -34,121 +34,121 @@ hideall "--sync--" # Time these to burnout where it's random, and comment out the sync. # If testing were smarter we could have an optional sync here, otherwise test_timeline.py will be weird. -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 # Phase 1 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -17.4 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:566[36]:/ window 18,5 -19.9 "Sinsmoke/Sinsmite" sync / 1[56]:[^:]*:Fatebreaker:566[57]:/ -23.9 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -33.0 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:565[24]:/ -34.7 "Burnout/Blastburn" #sync / 1[56]:[^:]*:Fatebreaker:565[35]:/ -46.7 "Bound Of Faith" sync / 1[56]:[^:]*:Fatebreaker:565[8B]:/ -50.1 "Sinsmoke/Sinsmite" sync / 1[56]:[^:]*:Fatebreaker:565[AD]:/ - -59.9 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:56A4:/ -70.4 "Powder Mark" sync / 1[56]:[^:]*:Fatebreaker:56A2:/ -77.9 "Turn Of The Heavens" sync / 1[56]:[^:]*:Fatebreaker:566A:/ -89.3 "Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:56A3:/ -89.7 "Brightfire" # sync / 1[56]:[^:]*:Halo of Flame:566D:/ - -94.4 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -103.9 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:565[24]:/ -105.6 "Burnout/Blastburn" #sync / 1[56]:[^:]*:Fatebreaker:565[35]:/ -117.6 "Bound Of Faith" sync / 1[56]:[^:]*:Fatebreaker:565[8B]:/ -121.3 "Sinsmoke/Sinsmite" sync / 1[56]:[^:]*:Fatebreaker:565[AD]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +17.4 "Elemental Break" Ability { id: "566[36]", source: "Fatebreaker" } window 18,5 +19.9 "Sinsmoke/Sinsmite" Ability { id: "566[57]", source: "Fatebreaker" } +23.9 "--center--" Ability { id: "5908", source: "Fatebreaker" } +33.0 "Burnt Strike" Ability { id: "565[24]", source: "Fatebreaker" } +34.7 "Burnout/Blastburn" #Ability { id: "565[35]", source: "Fatebreaker" } +46.7 "Bound Of Faith" Ability { id: "565[8B]", source: "Fatebreaker" } +50.1 "Sinsmoke/Sinsmite" Ability { id: "565[AD]", source: "Fatebreaker" } + +59.9 "Burnished Glory" Ability { id: "56A4", source: "Fatebreaker" } +70.4 "Powder Mark" Ability { id: "56A2", source: "Fatebreaker" } +77.9 "Turn Of The Heavens" Ability { id: "566A", source: "Fatebreaker" } +89.3 "Burn Mark" Ability { id: "56A3", source: "Fatebreaker" } +89.7 "Brightfire" # Ability { id: "566D", source: "Halo of Flame" } + +94.4 "--center--" Ability { id: "5908", source: "Fatebreaker" } +103.9 "Burnt Strike" Ability { id: "565[24]", source: "Fatebreaker" } +105.6 "Burnout/Blastburn" #Ability { id: "565[35]", source: "Fatebreaker" } +117.6 "Bound Of Faith" Ability { id: "565[8B]", source: "Fatebreaker" } +121.3 "Sinsmoke/Sinsmite" Ability { id: "565[AD]", source: "Fatebreaker" } # Dragon trio -132.6 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:566[36]:/ -135.1 "Sinsmite/Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker:56(5A|57|65|67):/ window 10,10 -147.1 "Shifting Sky" sync / 1[56]:[^:]*:Fatebreaker:567[56]:/ +132.6 "Elemental Break" Ability { id: "566[36]", source: "Fatebreaker" } +135.1 "Sinsmite/Sinsmoke" Ability { id: "56(5A|57|65|67)", source: "Fatebreaker" } window 10,10 +147.1 "Shifting Sky" Ability { id: "567[56]", source: "Fatebreaker" } 149.5 "--untargetable--" -154.7 "Ageless Serpent" sync / 1[56]:[^:]*:Demi-Gukumatz:5687:/ -165.8 "Resonant Winds" sync / 1[56]:[^:]*:Demi-Gukumatz:5689:/ -169.4 "Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker's Image:5681:/ -169.4 "Sinsmite" sync / 1[56]:[^:]*:Fatebreaker's Image:5684:/ -169.8 "Bow Shock" sync / 1[56]:[^:]*:Fatebreaker's Image:5685:/ -173.0 "Burnt Strike " sync / 1[56]:[^:]*:Fatebreaker's Image:567B:/ -174.7 "Burnout" sync / 1[56]:[^:]*:Fatebreaker's Image:567C:/ -176.0 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker's Image:5679:/ -178.0 "Blastburn" sync / 1[56]:[^:]*:Fatebreaker's Image:567A:/ +154.7 "Ageless Serpent" Ability { id: "5687", source: "Demi-Gukumatz" } +165.8 "Resonant Winds" Ability { id: "5689", source: "Demi-Gukumatz" } +169.4 "Sinsmoke" Ability { id: "5681", source: "Fatebreaker's Image" } +169.4 "Sinsmite" Ability { id: "5684", source: "Fatebreaker's Image" } +169.8 "Bow Shock" Ability { id: "5685", source: "Fatebreaker's Image" } +173.0 "Burnt Strike " Ability { id: "567B", source: "Fatebreaker's Image" } +174.7 "Burnout" Ability { id: "567C", source: "Fatebreaker's Image" } +176.0 "Burnt Strike" Ability { id: "5679", source: "Fatebreaker's Image" } +178.0 "Blastburn" Ability { id: "567A", source: "Fatebreaker's Image" } 180.7 "--targetable--" # Phase 2: light sparkles -191.5 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:566[368]:/ -194.1 "Sinsmite/Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker:56(5A|57|65|67):/ -204.0 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:56A4:/ - -221.1 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:5668:/ -223.6 "Sinsight" sync / 1[56]:[^:]*:Fatebreaker:5669:/ -227.6 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -237.0 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:5656:/ -242.0 "Shining Blade" sync / 1[56]:[^:]*:Fatebreaker:5657:/ -250.7 "Bound Of Faith" sync / 1[56]:[^:]*:Fatebreaker:565F:/ -254.3 "Sinsight" sync / 1[56]:[^:]*:Fatebreaker:5661:/ -259.9 "Mortal Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:5662:/ - -264.1 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:56A4:/ -274.6 "Powder Mark" sync / 1[56]:[^:]*:Fatebreaker:56A2:/ -282.1 "Right Of The Heavens" sync / 1[56]:[^:]*:Fatebreaker:566[EF]:/ window 50,50 -293.5 "Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:56A3:/ - -298.6 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -308.2 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:565[246]:/ -309.9 "Burnout/Blastburn" #sync / 1[56]:[^:]*:Fatebreaker:565[35]:/ -321.9 "Bound Of Faith" sync / 1[56]:[^:]*:Fatebreaker:565[8BF]:/ -325.6 "Sinsmoke/Sinsmite/Sinsight" sync / 1[56]:[^:]*:Fatebreaker:56(5[AD]|6[159]):/ -331.2 "Mortal Burn Mark?" # sync / 1[56]:[^:]*:Fatebreaker:5662:/ -336.9 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:566[368]:/ -339.4 "Sinsmoke/Sinsmite/Sinsight" sync / 1[56]:[^:]*:Fatebreaker:56(5[AD]|6[1579]):/ +191.5 "Elemental Break" Ability { id: "566[368]", source: "Fatebreaker" } +194.1 "Sinsmite/Sinsmoke" Ability { id: "56(5A|57|65|67)", source: "Fatebreaker" } +204.0 "Burnished Glory" Ability { id: "56A4", source: "Fatebreaker" } + +221.1 "Elemental Break" Ability { id: "5668", source: "Fatebreaker" } +223.6 "Sinsight" Ability { id: "5669", source: "Fatebreaker" } +227.6 "--center--" Ability { id: "5908", source: "Fatebreaker" } +237.0 "Burnt Strike" Ability { id: "5656", source: "Fatebreaker" } +242.0 "Shining Blade" Ability { id: "5657", source: "Fatebreaker" } +250.7 "Bound Of Faith" Ability { id: "565F", source: "Fatebreaker" } +254.3 "Sinsight" Ability { id: "5661", source: "Fatebreaker" } +259.9 "Mortal Burn Mark" Ability { id: "5662", source: "Fatebreaker" } + +264.1 "Burnished Glory" Ability { id: "56A4", source: "Fatebreaker" } +274.6 "Powder Mark" Ability { id: "56A2", source: "Fatebreaker" } +282.1 "Right Of The Heavens" Ability { id: "566[EF]", source: "Fatebreaker" } window 50,50 +293.5 "Burn Mark" Ability { id: "56A3", source: "Fatebreaker" } + +298.6 "--center--" Ability { id: "5908", source: "Fatebreaker" } +308.2 "Burnt Strike" Ability { id: "565[246]", source: "Fatebreaker" } +309.9 "Burnout/Blastburn" #Ability { id: "565[35]", source: "Fatebreaker" } +321.9 "Bound Of Faith" Ability { id: "565[8BF]", source: "Fatebreaker" } +325.6 "Sinsmoke/Sinsmite/Sinsight" Ability { id: "56(5[AD]|6[159])", source: "Fatebreaker" } +331.2 "Mortal Burn Mark?" # Ability { id: "5662", source: "Fatebreaker" } +336.9 "Elemental Break" Ability { id: "566[368]", source: "Fatebreaker" } +339.4 "Sinsmoke/Sinsmite/Sinsight" Ability { id: "56(5[AD]|6[1579])", source: "Fatebreaker" } # dragon trio 2 -351.4 "Sundered Sky" sync / 1[56]:[^:]*:Fatebreaker:567[78]:/ window 50,50 +351.4 "Sundered Sky" Ability { id: "567[78]", source: "Fatebreaker" } window 50,50 353.8 "--untargetable--" -359.0 "Ageless Serpent" sync / 1[56]:[^:]*:Demi-Gukumatz:5687:/ -370.5 "Resounding Crack" sync / 1[56]:[^:]*:Demi-Gukumatz:5688:/ -372.5 "Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker's Image:5681:/ -372.6 "Sinsight" sync / 1[56]:[^:]*:Fatebreaker's Image:5BC7:/ -376.5 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker's Image:567D:/ -378.2 "Mortal Burn Mark" sync / 1[56]:[^:]*:Fatebreaker's Image:5BC8:/ -380.1 "Burnt Strike " sync / 1[56]:[^:]*:Fatebreaker's Image:567B:/ -381.6 "Shining Blade" sync / 1[56]:[^:]*:Fatebreaker's Image:567E:/ -381.8 "Burnout" sync / 1[56]:[^:]*:Fatebreaker's Image:567C:/ -383.6 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker's Image:5679:/ -385.6 "Blastburn" sync / 1[56]:[^:]*:Fatebreaker's Image:567A:/ +359.0 "Ageless Serpent" Ability { id: "5687", source: "Demi-Gukumatz" } +370.5 "Resounding Crack" Ability { id: "5688", source: "Demi-Gukumatz" } +372.5 "Sinsmoke" Ability { id: "5681", source: "Fatebreaker's Image" } +372.6 "Sinsight" Ability { id: "5BC7", source: "Fatebreaker's Image" } +376.5 "Burnt Strike" Ability { id: "567D", source: "Fatebreaker's Image" } +378.2 "Mortal Burn Mark" Ability { id: "5BC8", source: "Fatebreaker's Image" } +380.1 "Burnt Strike " Ability { id: "567B", source: "Fatebreaker's Image" } +381.6 "Shining Blade" Ability { id: "567E", source: "Fatebreaker's Image" } +381.8 "Burnout" Ability { id: "567C", source: "Fatebreaker's Image" } +383.6 "Burnt Strike" Ability { id: "5679", source: "Fatebreaker's Image" } +385.6 "Blastburn" Ability { id: "567A", source: "Fatebreaker's Image" } 386.4 "--targetable--" -397.1 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:566[368]:/ -399.6 "Sinsight/Sinsmite" sync / 1[56]:[^:]*:Fatebreaker:566[579]:/ -409.6 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:56A4:/ - -427.1 "Turn Of The Heavens" sync / 1[56]:[^:]*:Fatebreaker:566[AB]:/ window 50,50 -429.6 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -438.6 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:566[368]:/ -441.1 "Sinsmite/Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker:56(5A|57|65|67):/ -450.6 "Powder Mark" sync / 1[56]:[^:]*:Fatebreaker:56A2:/ -458.1 "Right Of The Heavens" sync / 1[56]:[^:]*:Fatebreaker:566[EF]:/ -460.6 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -469.5 "Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:56A3:/ -469.5 "Bound Of Faith" sync / 1[56]:[^:]*:Fatebreaker:565[8F]:/ -471.6 "Solemn Charge" # sync / 1[56]:[^:]*:Fatebreaker:56(59|60):/ -472.9 "Sinsight/Sinsmoke" # sync / 1[56]:[^:]*:Fatebreaker:56[56][159A]:/ -478.5 "Mortal Burn Mark?" # sync / 1[56]:[^:]*:Fatebreaker:5662:/ -488.3 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ - -493.7 "Prismatic Deception" sync / 1[56]:[^:]*:Fatebreaker:5672:/ window 493.7,10 +397.1 "Elemental Break" Ability { id: "566[368]", source: "Fatebreaker" } +399.6 "Sinsight/Sinsmite" Ability { id: "566[579]", source: "Fatebreaker" } +409.6 "Burnished Glory" Ability { id: "56A4", source: "Fatebreaker" } + +427.1 "Turn Of The Heavens" Ability { id: "566[AB]", source: "Fatebreaker" } window 50,50 +429.6 "--center--" Ability { id: "5908", source: "Fatebreaker" } +438.6 "Elemental Break" Ability { id: "566[368]", source: "Fatebreaker" } +441.1 "Sinsmite/Sinsmoke" Ability { id: "56(5A|57|65|67)", source: "Fatebreaker" } +450.6 "Powder Mark" Ability { id: "56A2", source: "Fatebreaker" } +458.1 "Right Of The Heavens" Ability { id: "566[EF]", source: "Fatebreaker" } +460.6 "--center--" Ability { id: "5908", source: "Fatebreaker" } +469.5 "Burn Mark" Ability { id: "56A3", source: "Fatebreaker" } +469.5 "Bound Of Faith" Ability { id: "565[8F]", source: "Fatebreaker" } +471.6 "Solemn Charge" # Ability { id: "56(59|60)", source: "Fatebreaker" } +472.9 "Sinsight/Sinsmoke" # Ability { id: "56[56][159A]", source: "Fatebreaker" } +478.5 "Mortal Burn Mark?" # Ability { id: "5662", source: "Fatebreaker" } +488.3 "--center--" Ability { id: "5908", source: "Fatebreaker" } + +493.7 "Prismatic Deception" Ability { id: "5672", source: "Fatebreaker" } window 493.7,10 496.8 "--untargetable--" -513.9 "Blasting Zone" sync / 1[56]:[^:]*:Fatebreaker's Image:56A5:/ -532.0 "Blasting Zone" sync / 1[56]:[^:]*:Fatebreaker's Image:56A5:/ +513.9 "Blasting Zone" Ability { id: "56A5", source: "Fatebreaker's Image" } +532.0 "Blasting Zone" Ability { id: "56A5", source: "Fatebreaker's Image" } 537.9 "--targetable--" -549.2 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:56A4:/ window 30,30 +549.2 "Burnished Glory" Ability { id: "56A4", source: "Fatebreaker" } window 30,30 -561.7 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -570.7 "Cycle Of Faith" sync / 1[56]:[^:]*:Fatebreaker:5692:/ jump 700 -570.7 "--sync--" sync / 1[56]:[^:]*:Fatebreaker:569A:/ jump 800 -570.7 "--sync--" sync / 1[56]:[^:]*:Fatebreaker:568B:/ jump 900 +561.7 "--center--" Ability { id: "5908", source: "Fatebreaker" } +570.7 "Cycle Of Faith" Ability { id: "5692", source: "Fatebreaker" } jump 700 +570.7 "--sync--" Ability { id: "569A", source: "Fatebreaker" } jump 800 +570.7 "--sync--" Ability { id: "568B", source: "Fatebreaker" } jump 900 570.8 "Elemental Break" 573.3 "Sinsight/Sinsmite/Sinsmoke" 575.2 "Burnt Strike" @@ -159,20 +159,20 @@ hideall "--sync--" # Lightning Cycle -691.0 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -700.0 "Cycle Of Faith" sync / 1[56]:[^:]*:Fatebreaker:5692:/ -700.1 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:5693:/ -702.7 "Sinsmite" sync / 1[56]:[^:]*:Fatebreaker:5694:/ -704.5 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:5695:/ -706.2 "Burnout" sync / 1[56]:[^:]*:Fatebreaker:5696:/ -711.6 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:5697:/ -713.1 "Sinsmite" sync / 1[56]:[^:]*:Fatebreaker:5698:/ -713.2 "--sync--" sync / 1[56]:[^:]*:Fatebreaker:5699:/ -725.7 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:56A4:/ - -728.2 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ window 30,30 -737.2 "Cycle Of Faith" sync / 1[56]:[^:]*:Fatebreaker:568A:/ jump 900.0 -737.2 "--sync--" sync / 1[56]:[^:]*:Fatebreaker:569A:/ jump 800.0 +691.0 "--center--" Ability { id: "5908", source: "Fatebreaker" } +700.0 "Cycle Of Faith" Ability { id: "5692", source: "Fatebreaker" } +700.1 "Elemental Break" Ability { id: "5693", source: "Fatebreaker" } +702.7 "Sinsmite" Ability { id: "5694", source: "Fatebreaker" } +704.5 "Burnt Strike" Ability { id: "5695", source: "Fatebreaker" } +706.2 "Burnout" Ability { id: "5696", source: "Fatebreaker" } +711.6 "Solemn Charge" Ability { id: "5697", source: "Fatebreaker" } +713.1 "Sinsmite" Ability { id: "5698", source: "Fatebreaker" } +713.2 "--sync--" Ability { id: "5699", source: "Fatebreaker" } +725.7 "Burnished Glory" Ability { id: "56A4", source: "Fatebreaker" } + +728.2 "--center--" Ability { id: "5908", source: "Fatebreaker" } window 30,30 +737.2 "Cycle Of Faith" Ability { id: "568A", source: "Fatebreaker" } jump 900.0 +737.2 "--sync--" Ability { id: "569A", source: "Fatebreaker" } jump 800.0 737.3 "Elemental Break" 739.8 "Sinsight/Sinsmite/Sinsmoke" 741.7 "Burnt Strike" @@ -181,20 +181,20 @@ hideall "--sync--" # Holy Cycle -791.0 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -800.0 "Cycle Of Faith" sync / 1[56]:[^:]*:Fatebreaker:569A:/ -800.1 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:56[89]B:/ -802.7 "Sinsight" sync / 1[56]:[^:]*:Fatebreaker:569C:/ -804.5 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:569D:/ -809.5 "Shining Blade" sync / 1[56]:[^:]*:Fatebreaker:569E:/ -811.6 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:569F:/ -813.1 "Sinsight" sync / 1[56]:[^:]*:Fatebreaker:56A0:/ -818.7 "Mortal Burn Mark" sync / 1[56]:[^:]*:Fatebreaker:56A1:/ -825.7 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:56A4:/ - -828.2 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ window 30,30 -837.2 "Cycle Of Faith" sync / 1[56]:[^:]*:Fatebreaker:5692:/ jump 700.0 -837.2 "--sync--" sync / 1[56]:[^:]*:Fatebreaker:568A:/ jump 900.0 +791.0 "--center--" Ability { id: "5908", source: "Fatebreaker" } +800.0 "Cycle Of Faith" Ability { id: "569A", source: "Fatebreaker" } +800.1 "Elemental Break" Ability { id: "56[89]B", source: "Fatebreaker" } +802.7 "Sinsight" Ability { id: "569C", source: "Fatebreaker" } +804.5 "Burnt Strike" Ability { id: "569D", source: "Fatebreaker" } +809.5 "Shining Blade" Ability { id: "569E", source: "Fatebreaker" } +811.6 "Solemn Charge" Ability { id: "569F", source: "Fatebreaker" } +813.1 "Sinsight" Ability { id: "56A0", source: "Fatebreaker" } +818.7 "Mortal Burn Mark" Ability { id: "56A1", source: "Fatebreaker" } +825.7 "Burnished Glory" Ability { id: "56A4", source: "Fatebreaker" } + +828.2 "--center--" Ability { id: "5908", source: "Fatebreaker" } window 30,30 +837.2 "Cycle Of Faith" Ability { id: "5692", source: "Fatebreaker" } jump 700.0 +837.2 "--sync--" Ability { id: "568A", source: "Fatebreaker" } jump 900.0 837.3 "Elemental Break" 839.8 "Sinsight/Sinsmite/Sinsmoke" 841.7 "Burnt Strike" @@ -202,19 +202,19 @@ hideall "--sync--" 846.7 "Shining Blade?" # Fire Cycle -891.0 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ -900.0 "Cycle Of Faith" sync / 1[56]:[^:]*:Fatebreaker:568A:/ -900.1 "Elemental Break" sync / 1[56]:[^:]*:Fatebreaker:568B:/ -902.7 "Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker:568D:/ -904.5 "Burnt Strike" sync / 1[56]:[^:]*:Fatebreaker:568E:/ -906.5 "Blastburn" sync / 1[56]:[^:]*:Fatebreaker:568F:/ -911.6 "Solemn Charge" sync / 1[56]:[^:]*:Fatebreaker:5690:/ -913.1 "Sinsmoke" sync / 1[56]:[^:]*:Fatebreaker:5691:/ -925.7 "Burnished Glory" sync / 1[56]:[^:]*:Fatebreaker:56A4:/ - -928.2 "--center--" sync / 1[56]:[^:]*:Fatebreaker:5908:/ window 30,30 -937.2 "Cycle Of Faith" sync / 1[56]:[^:]*:Fatebreaker:5692:/ jump 700 -937.2 "--sync--" sync / 1[56]:[^:]*:Fatebreaker:569A:/ jump 800 +891.0 "--center--" Ability { id: "5908", source: "Fatebreaker" } +900.0 "Cycle Of Faith" Ability { id: "568A", source: "Fatebreaker" } +900.1 "Elemental Break" Ability { id: "568B", source: "Fatebreaker" } +902.7 "Sinsmoke" Ability { id: "568D", source: "Fatebreaker" } +904.5 "Burnt Strike" Ability { id: "568E", source: "Fatebreaker" } +906.5 "Blastburn" Ability { id: "568F", source: "Fatebreaker" } +911.6 "Solemn Charge" Ability { id: "5690", source: "Fatebreaker" } +913.1 "Sinsmoke" Ability { id: "5691", source: "Fatebreaker" } +925.7 "Burnished Glory" Ability { id: "56A4", source: "Fatebreaker" } + +928.2 "--center--" Ability { id: "5908", source: "Fatebreaker" } window 30,30 +937.2 "Cycle Of Faith" Ability { id: "5692", source: "Fatebreaker" } jump 700 +937.2 "--sync--" Ability { id: "569A", source: "Fatebreaker" } jump 800 937.3 "Elemental Break" 939.8 "Sinsight/Sinsmite/Sinsmoke" 941.7 "Burnt Strike" @@ -222,5 +222,5 @@ hideall "--sync--" 946.7 "Shining Blade?" -992.3 "Burnished Glory" sync / 14:[^:]*:Fatebreaker:5529:/ window 1000,0 -1000.0 "Burnished Glory Enrage" sync / 1[56]:[^:]*:Fatebreaker:5529:/ +992.3 "Burnished Glory" StartsUsing { id: "5529", source: "Fatebreaker" } window 1000,0 +1000.0 "Burnished Glory Enrage" Ability { id: "5529", source: "Fatebreaker" } diff --git a/ui/raidboss/data/05-shb/raid/e12n.txt b/ui/raidboss/data/05-shb/raid/e12n.txt index 4aca1b1a47..79cea80a20 100644 --- a/ui/raidboss/data/05-shb/raid/e12n.txt +++ b/ui/raidboss/data/05-shb/raid/e12n.txt @@ -10,55 +10,55 @@ hideall "--sync--" # Can use InCombat line to start timeline since the multiple phases do not # change the player's InCombat status. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -14.9 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:5872:/ window 14.9,5 -22.1 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ -25.3 "Initialize Recall" sync / 1[56]:[^:]*:Eden's Promise:5859:/ -34.9 "Judgment Jolt" sync / 1[56]:[^:]*:Eden's Promise:585F:/ -45.6 "Temporary Current" sync / 1[56]:[^:]*:Eden's Promise:585C:/ -56.3 "Judgment Jolt" sync / 1[56]:[^:]*:Eden's Promise:585F:/ -67.0 "Temporary Current" sync / 1[56]:[^:]*:Eden's Promise:585C:/ -80.0 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:5873:/ -87.3 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ -96.7 "Conflag Strike" sync / 1[56]:[^:]*:Eden's Promise:585D:/ -107.4 "Ferostorm" sync / 1[56]:[^:]*:Eden's Promise:585E:/ -118.1 "Conflag Strike" sync / 1[56]:[^:]*:Eden's Promise:585D:/ -128.7 "Ferostorm" sync / 1[56]:[^:]*:Eden's Promise:585E:/ -140.1 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:5872:/ -145.9 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:585A:/ window 145.9 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +14.9 "Maleficium" Ability { id: "5872", source: "Eden's Promise" } window 14.9,5 +22.1 "--sync--" Ability { id: "5879", source: "Eden's Promise" } +25.3 "Initialize Recall" Ability { id: "5859", source: "Eden's Promise" } +34.9 "Judgment Jolt" Ability { id: "585F", source: "Eden's Promise" } +45.6 "Temporary Current" Ability { id: "585C", source: "Eden's Promise" } +56.3 "Judgment Jolt" Ability { id: "585F", source: "Eden's Promise" } +67.0 "Temporary Current" Ability { id: "585C", source: "Eden's Promise" } +80.0 "Formless Judgment" Ability { id: "5873", source: "Eden's Promise" } +87.3 "--sync--" Ability { id: "5879", source: "Eden's Promise" } +96.7 "Conflag Strike" Ability { id: "585D", source: "Eden's Promise" } +107.4 "Ferostorm" Ability { id: "585E", source: "Eden's Promise" } +118.1 "Conflag Strike" Ability { id: "585D", source: "Eden's Promise" } +128.7 "Ferostorm" Ability { id: "585E", source: "Eden's Promise" } +140.1 "Maleficium" Ability { id: "5872", source: "Eden's Promise" } +145.9 "--sync--" Ability { id: "585A", source: "Eden's Promise" } window 145.9 148.4 "--untargetable--" # Intermission. Can be pushed, unknown threshold, maybe 70% HP? -196.5 "Eternal Oblivion" sync / 1[56]:[^:]*:Eden's Promise:587A:/ window 200,10 -204.3 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:4B20:/ -232.9 "Earth Shaker" sync / 1[56]:[^:]*:Eden's Promise:5885:/ -232.9 "Obliteration" sync / 1[56]:[^:]*:Eden's Promise:4B43:/ -251.2 "Eternal Oblivion" sync / 1[56]:[^:]*:Eden's Promise:587B:/ window 20,20 -259.0 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:4B21:/ -267.3 "Classical Sculpture" sync / 1[56]:[^:]*:Chiseled Sculpture:5886:/ -290.2 "Rapturous Reach" sync / 1[56]:[^:]*:Eden's Promise:5889:/ -290.2 "Palm Of Temperance" sync / 1[56]:[^:]*:Eden's Promise:4B44:/ -308.4 "Eternal Oblivion" sync / 1[56]:[^:]*:Eden's Promise:587C:/ window 20,20 -316.2 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:4B22:/ -337.5 "Laser Eye" sync / 1[56]:[^:]*:Eden's Promise:4B47:/ -356.3 "Eternal Oblivion" sync / 1[56]:[^:]*:Eden's Promise:587D:/ window 20,20 -364.1 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:4B23:/ +196.5 "Eternal Oblivion" Ability { id: "587A", source: "Eden's Promise" } window 200,10 +204.3 "--sync--" Ability { id: "4B20", source: "Eden's Promise" } +232.9 "Earth Shaker" Ability { id: "5885", source: "Eden's Promise" } +232.9 "Obliteration" Ability { id: "4B43", source: "Eden's Promise" } +251.2 "Eternal Oblivion" Ability { id: "587B", source: "Eden's Promise" } window 20,20 +259.0 "--sync--" Ability { id: "4B21", source: "Eden's Promise" } +267.3 "Classical Sculpture" Ability { id: "5886", source: "Chiseled Sculpture" } +290.2 "Rapturous Reach" Ability { id: "5889", source: "Eden's Promise" } +290.2 "Palm Of Temperance" Ability { id: "4B44", source: "Eden's Promise" } +308.4 "Eternal Oblivion" Ability { id: "587C", source: "Eden's Promise" } window 20,20 +316.2 "--sync--" Ability { id: "4B22", source: "Eden's Promise" } +337.5 "Laser Eye" Ability { id: "4B47", source: "Eden's Promise" } +356.3 "Eternal Oblivion" Ability { id: "587D", source: "Eden's Promise" } window 20,20 +364.1 "--sync--" Ability { id: "4B23", source: "Eden's Promise" } # Post-intermission initial block. -500.0 "--sync--" sync / 14:[^:]*:Eden's Promise:4B48:/ window 500,10 -504.9 "Paradise Lost" sync / 1[56]:[^:]*:Eden's Promise:4B48:/ +500.0 "--sync--" StartsUsing { id: "4B48", source: "Eden's Promise" } window 500,10 +504.9 "Paradise Lost" Ability { id: "4B48", source: "Eden's Promise" } 511.9 "--targetable--" -522.0 "Initialize Recall" sync / 1[56]:[^:]*:Eden's Promise:5859:/ window 30,30 -534.1 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5860:/ -542.8 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:5873:/ window 30,30 -545.6 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ -555.7 "Release" sync / 1[56]:[^:]*:Eden's Promise:5861:/ +522.0 "Initialize Recall" Ability { id: "5859", source: "Eden's Promise" } window 30,30 +534.1 "Stock" Ability { id: "5860", source: "Eden's Promise" } +542.8 "Formless Judgment" Ability { id: "5873", source: "Eden's Promise" } window 30,30 +545.6 "--sync--" Ability { id: "5879", source: "Eden's Promise" } +555.7 "Release" Ability { id: "5861", source: "Eden's Promise" } -568.6 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5860:/ window 15,30 -578.3 "Junction Shiva?" sync / 1[56]:[^:]*:Eden's Promise:5862:/ jump 700.0 -578.3 "Junction Titan?" sync / 1[56]:[^:]*:Eden's Promise:5863:/ jump 800.0 +568.6 "Stock" Ability { id: "5860", source: "Eden's Promise" } window 15,30 +578.3 "Junction Shiva?" Ability { id: "5862", source: "Eden's Promise" } jump 700.0 +578.3 "Junction Titan?" Ability { id: "5863", source: "Eden's Promise" } jump 800.0 589.0 "Diamond Dust?" 589.0 "Earthen Fury?" 594.0 "Impact 1?" @@ -81,20 +81,20 @@ hideall "--sync--" # The time between Release and Stock is consistent at 14 seconds. # Shiva Block -690.4 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5860:/ -700.0 "Junction Shiva" sync / 1[56]:[^:]*:Eden's Promise:5862:/ -710.7 "Diamond Dust" sync / 1[56]:[^:]*:Eden's Promise:5864:/ window 30,30 -716.8 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5866:/ -721.9 "Frigid Stone" sync / 1[56]:[^:]*:Eden's Promise:5867:/ -727.9 "Ice Floe" sync / 1[56]:[^:]*:Eden's Promise:5868:/ -732.9 "Rapturous Reach" sync / 1[56]:[^:]*:Eden's Promise:587[78]:/ window 30,30 -735.4 "Frigid Stone" # sync / 1[56]:[^:]*:Eden's Promise:5869:/ -735.6 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5871:/ -738.2 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ -747.6 "Release" sync / 1[56]:[^:]*:Eden's Promise:5861:/ - -756.6 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ jump 900.0 -761.5 "Stock?" sync / 1[56]:[^:]*:Eden's Promise:5860:/ jump 1000.0 +690.4 "Stock" Ability { id: "5860", source: "Eden's Promise" } +700.0 "Junction Shiva" Ability { id: "5862", source: "Eden's Promise" } +710.7 "Diamond Dust" Ability { id: "5864", source: "Eden's Promise" } window 30,30 +716.8 "--sync--" Ability { id: "5866", source: "Eden's Promise" } +721.9 "Frigid Stone" Ability { id: "5867", source: "Eden's Promise" } +727.9 "Ice Floe" Ability { id: "5868", source: "Eden's Promise" } +732.9 "Rapturous Reach" Ability { id: "587[78]", source: "Eden's Promise" } window 30,30 +735.4 "Frigid Stone" # Ability { id: "5869", source: "Eden's Promise" } +735.6 "--sync--" Ability { id: "5871", source: "Eden's Promise" } +738.2 "--sync--" Ability { id: "5879", source: "Eden's Promise" } +747.6 "Release" Ability { id: "5861", source: "Eden's Promise" } + +756.6 "--sync--" Ability { id: "5879", source: "Eden's Promise" } jump 900.0 +761.5 "Stock?" Ability { id: "5860", source: "Eden's Promise" } jump 1000.0 766.2 "Cast?" 770.2 "Formless Judgment?" 776.9 "Cast?" @@ -103,21 +103,21 @@ hideall "--sync--" # Titan Block -790.3 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5860:/ -800.0 "Junction Titan" sync / 1[56]:[^:]*:Eden's Promise:5863:/ -810.7 "Earthen Fury" sync / 1[56]:[^:]*:Eden's Promise:586A:/ window 30,30 -815.7 "Impact 1" sync / 1[56]:[^:]*:Titanic Bomb Boulder:586E:/ -818.7 "Impact 2" # sync / 1[56]:[^:]*:Bomb Boulder:586C:/ -822.7 "Explosion 1" sync / 1[56]:[^:]*:Titanic Bomb Boulder:586F:/ -825.7 "Explosion 2" # sync / 1[56]:[^:]*:Bomb Boulder:586D:/ -831.7 "Rapturous Reach" sync / 1[56]:[^:]*:Eden's Promise:587[78]:/ window 30,30 -834.2 "Under The Weight" sync / 1[56]:[^:]*:Eden's Promise:5870:/ -834.3 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5871:/ -836.9 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ -846.3 "Release" sync / 1[56]:[^:]*:Eden's Promise:5861:/ - -855.3 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ jump 900.0 -860.2 "Stock?" sync / 1[56]:[^:]*:Eden's Promise:5860:/ jump 1000.0 +790.3 "Stock" Ability { id: "5860", source: "Eden's Promise" } +800.0 "Junction Titan" Ability { id: "5863", source: "Eden's Promise" } +810.7 "Earthen Fury" Ability { id: "586A", source: "Eden's Promise" } window 30,30 +815.7 "Impact 1" Ability { id: "586E", source: "Titanic Bomb Boulder" } +818.7 "Impact 2" # Ability { id: "586C", source: "Bomb Boulder" } +822.7 "Explosion 1" Ability { id: "586F", source: "Titanic Bomb Boulder" } +825.7 "Explosion 2" # Ability { id: "586D", source: "Bomb Boulder" } +831.7 "Rapturous Reach" Ability { id: "587[78]", source: "Eden's Promise" } window 30,30 +834.2 "Under The Weight" Ability { id: "5870", source: "Eden's Promise" } +834.3 "--sync--" Ability { id: "5871", source: "Eden's Promise" } +836.9 "--sync--" Ability { id: "5879", source: "Eden's Promise" } +846.3 "Release" Ability { id: "5861", source: "Eden's Promise" } + +855.3 "--sync--" Ability { id: "5879", source: "Eden's Promise" } jump 900.0 +860.2 "Stock?" Ability { id: "5860", source: "Eden's Promise" } jump 1000.0 864.9 "Cast?" 868.9 "Formless Judgment?" 875.6 "Cast?" @@ -125,14 +125,14 @@ hideall "--sync--" 883.3 "Maleficium?" # Maleficium Block -900.0 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ -909.6 "Cast" sync / 1[56]:[^:]*:Eden's Promise:4E2C:/ -920.3 "Cast" sync / 1[56]:[^:]*:Eden's Promise:4E2C:/ -928.0 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:5872:/ window 15,15 - -940.9 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5860:/ -950.5 "Junction Shiva?" sync / 1[56]:[^:]*:Eden's Promise:5862:/ window 15,15 jump 700.0 -950.5 "Junction Titan?" sync / 1[56]:[^:]*:Eden's Promise:5863:/ window 15,15 jump 800.0 +900.0 "--sync--" Ability { id: "5879", source: "Eden's Promise" } +909.6 "Cast" Ability { id: "4E2C", source: "Eden's Promise" } +920.3 "Cast" Ability { id: "4E2C", source: "Eden's Promise" } +928.0 "Maleficium" Ability { id: "5872", source: "Eden's Promise" } window 15,15 + +940.9 "Stock" Ability { id: "5860", source: "Eden's Promise" } +950.5 "Junction Shiva?" Ability { id: "5862", source: "Eden's Promise" } window 15,15 jump 700.0 +950.5 "Junction Titan?" Ability { id: "5863", source: "Eden's Promise" } window 15,15 jump 800.0 961.2 "Diamond Dust?" 961.2 "Earthen Fury?" 966.2 "Impact 1?" @@ -142,14 +142,14 @@ hideall "--sync--" # Formless Judgment Block -1000.0 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5860:/ -1008.7 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:5873:/ window 15,15 -1011.5 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5879:/ -1020.9 "Release" sync / 1[56]:[^:]*:Eden's Promise:5861:/ - -1034.8 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5860:/ -1044.4 "Junction Shiva?" sync / 1[56]:[^:]*:Eden's Promise:5862:/ jump 700.0 -1044.4 "Junction Titan?" sync / 1[56]:[^:]*:Eden's Promise:5863:/ jump 800.0 +1000.0 "Stock" Ability { id: "5860", source: "Eden's Promise" } +1008.7 "Formless Judgment" Ability { id: "5873", source: "Eden's Promise" } window 15,15 +1011.5 "--sync--" Ability { id: "5879", source: "Eden's Promise" } +1020.9 "Release" Ability { id: "5861", source: "Eden's Promise" } + +1034.8 "Stock" Ability { id: "5860", source: "Eden's Promise" } +1044.4 "Junction Shiva?" Ability { id: "5862", source: "Eden's Promise" } jump 700.0 +1044.4 "Junction Titan?" Ability { id: "5863", source: "Eden's Promise" } jump 800.0 1055.1 "Diamond Dust?" 1055.1 "Earthen Fury?" 1060.1 "Impact 1?" diff --git a/ui/raidboss/data/05-shb/raid/e12s.ts b/ui/raidboss/data/05-shb/raid/e12s.ts index c36e8b866f..8c3e1973f5 100644 --- a/ui/raidboss/data/05-shb/raid/e12s.ts +++ b/ui/raidboss/data/05-shb/raid/e12s.ts @@ -319,7 +319,10 @@ const triggerSet: TriggerSet = { }, formlessBusterBLU: { en: 'Buster on YOU (w/${player})', + de: 'Tankbuster auf DIR (mit ${player})', + fr: 'Tankbuster sur VOUS (avec ${player})', cn: '死刑点名 (与${player})', + ko: '탱버 대상자 (+${player})', }, formlessBusterOnYOU: Outputs.tankBusterOnYou, }; @@ -451,11 +454,17 @@ const triggerSet: TriggerSet = { output.responseOutputStrings = { stackOnYou: { en: 'Stack on YOU (w/${player})', + de: 'Auf DIR sammeln (mit ${player})', + fr: 'Package sur VOUS (avec ${player})', cn: '分摊点名 (与${player})', + ko: '쉐어 대상자 (+${player})', }, stacks: { en: 'Stacks: ${players}', + de: 'Sammeln: ${players}', + fr: 'Package: ${players}', cn: '分摊: ${players}', + ko: '쉐어: ${players}', }, }; @@ -1298,47 +1307,50 @@ const triggerSet: TriggerSet = { output.responseOutputStrings = { shadoweye: { en: 'Eye (w/${player})', - de: 'Auge auf DIR (w/${player})', // FIXME - fr: 'Œil sur VOUS (w/${player})', // FIXME + de: 'Auge (mit ${player})', + fr: 'Œil (avec ${player})', ja: '自分に目 (w/${player})', // FIXME cn: '石化眼点名 (与${player})', - ko: '시선징 대상자 (w/${player})', // FIXME + ko: '시선징 (+${player})', }, water: { en: 'Stack (w/${player})', + de: 'Sammeln (mit ${player})', + fr: 'Pack (avec ${player})', cn: '分摊 (与${player})', + ko: '쉐어징 (+${player})', }, longFire: { en: 'Long Fire (w/${player})', - de: 'langes Feuer (w/${player})', // FIXME - fr: 'Feu long (w/${player})', // FIXME + de: 'langes Feuer (w/${player})', + fr: 'Feu long (avec ${player})', ja: 'ファイガ(遅い) (w/${player})', // FIXME cn: '长火 (与${player})', - ko: '느린 파이가 (w/${player})', // FIXME + ko: '느린 파이가 (+${player})', }, shortFire: { en: 'Short Fire (w/${player})', - de: 'kurzes Feuer (w/${player})', // FIXME - fr: 'Feu court (w/${player})', // FIXME + de: 'kurzes Feuer (w/${player})', + fr: 'Feu court (avec ${player})', ja: 'ファイガ(早い) (w/${player})', // FIXME cn: '短火 (与${player})', - ko: '빠른 파이가 (w/${player})', // FIXME + ko: '빠른 파이가 (+${player})', }, longIce: { en: 'Long Ice (w/${player})', - de: 'langes Eis (w/${player})', // FIXME - fr: 'Glace longue (w/${player})', // FIXME + de: 'langes Eis (w/${player})', + fr: 'Glace longue (avec ${player})', ja: 'ブリザガ(遅い) (w/${player})', // FIXME cn: '长冰 (与${player})', - ko: '느린 블리자가 (w/${player})', // FIXME + ko: '느린 블리자가 (+${player})', }, shortIce: { en: 'Short Ice (w/${player})', - de: 'kurzes Eis (w/${player})', // FIXME - fr: 'Glace courte (w/${player})', // FIXME + de: 'kurzes Eis (w/${player})', + fr: 'Glace courte (avec ${player})', ja: 'ブリザガ(早い) (w/${player})', // FIXME cn: '短冰 (与${player})', - ko: '빠른 블리자가 (w/${player})', // FIXME + ko: '빠른 블리자가 (+${player})', }, unknown: Outputs.unknown, }; @@ -1657,7 +1669,10 @@ const triggerSet: TriggerSet = { }, stacksOn: { en: 'Stacks (${player1}, ${player2})', + de: 'Sammeln (${player1}, ${player2})', + fr: 'Packages (${player1}, ${player2})', cn: '分摊 (${player1}, ${player2})', + ko: '쉐어 (${player1}, ${player2})', }, knockbackIntoStackGroups: { en: 'Knockback Into Stack Groups', @@ -1669,7 +1684,10 @@ const triggerSet: TriggerSet = { }, knockbackIntoStacksOn: { en: 'Knockback => Stacks (${player1}, ${player2})', + de: 'Rückstoß => Sammeln (${player1}, ${player2})', + fr: 'Poussée => Package (${player1}, ${player2})', cn: '击退 => 分摊 (${player1}, ${player2})', + ko: '넉백 => 쉐어 (${player1}, ${player2})', }, }, }, @@ -1734,7 +1752,10 @@ const triggerSet: TriggerSet = { }, stacksOn: { en: 'Stacks (${player1}, ${player2})', + de: 'Sammeln (${player1}, ${player2})', + fr: 'Packages (${player1}, ${player2})', cn: '分摊 (${player1}, ${player2})', + ko: '쉐어 (${player1}, ${player2})', }, }, }, @@ -1758,27 +1779,27 @@ const triggerSet: TriggerSet = { output.responseOutputStrings = { shadoweye: { en: 'Eye (w/${player})', - de: 'Auge auf DIR (w/${player})', // FIXME - fr: 'Œil sur VOUS (w/${player})', // FIXME + de: 'Auge (mit ${player})', + fr: 'Œil(avec ${player})', ja: '自分に目 (w/${player})', // FIXME cn: '石化眼点名 (与${player})', - ko: '시선징 대상자 (w/${player})', // FIXME + ko: '시선징 (+${player})', }, doubleAero: { en: 'Double Aero (w/${player})', - de: 'Doppel Windga auf DIR (w/${player})', // FIXME - fr: 'Double Vent sur VOUS (w/${player})', // FIXME + de: 'Doppel Windga (mit ${player})', + fr: 'Double Vent(avec ${player})', ja: '自分にエアロガ×2 (w/${player})', // FIXME cn: '双风点名 (与${player})', - ko: '더블 에어로가 대상자 (w/${player})', // FIXME + ko: '더블 에어로가 (+${player})', }, spread: { en: 'Spread (w/${player1}, ${player2}, ${player3})', - de: 'Verteilen auf DIR (w/${player1}, ${player2}, ${player3})', // FIXME - fr: 'Dispersion sur VOUS (w/${player1}, ${player2}, ${player3})', // FIXME + de: 'Verteilen (mit ${player1}, ${player2}, ${player3})', + fr: 'Dispersion (avec ${player1}, ${player2}, ${player3})', ja: '自分に散開 (w/${player1}, ${player2}, ${player3})', // FIXME cn: '分散点名 (与${player1}, ${player2}, ${player3})', - ko: '산개징 대상자 (w/${player1}, ${player2}, ${player3})', // FIXME + ko: '산개징 (+${player1}, ${player2}, ${player3})', }, unknown: Outputs.unknown, }; diff --git a/ui/raidboss/data/05-shb/raid/e12s.txt b/ui/raidboss/data/05-shb/raid/e12s.txt index 3e9e1918ce..976f5e2dd8 100644 --- a/ui/raidboss/data/05-shb/raid/e12s.txt +++ b/ui/raidboss/data/05-shb/raid/e12s.txt @@ -11,106 +11,106 @@ hideall "--sync--" # as timeline resets out of combat. 0 "Start" -0.8 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:4B1E:/ window 1,0 -11.0 "--sync--" sync / 14:[^:]*:Eden's Promise:58A8:/ window 11,20 -16.0 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ -23.2 "--middle--" sync / 1[56]:[^:]*:Eden's Promise:58AF:/ -25.8 "Initialize Recall" sync / 1[56]:[^:]*:Eden's Promise:588C:/ -32.4 "Junction Shiva/Titan" sync / 1[56]:[^:]*:Eden's Promise:589[45]:/ -40.1 "Rapturous Reach" sync / 1[56]:[^:]*:Eden's Promise:58A[DE]:/ -43.6 "Frigid Stone/Under The Weight" sync / 1[56]:[^:]*:Eden's Promise:(589E|58A6):/ -53.3 "Cast" sync / 1[56]:[^:]*:Eden's Promise:4E43:/ -56.8 "Frigid Stone/Under The Weight" sync / 1[56]:[^:]*:Eden's Promise:(589E|58A6):/ -57.5 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:58A7:/ -68.7 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:58A9:/ -#69.0 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:58AC:/ -71.4 "Formless Judgment" #sync / 1[56]:[^:]*:Eden's Promise:58AC:/ -81.9 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ -90.2 "--middle--" sync / 1[56]:[^:]*:Eden's Promise:58AF:/ - -95.6 "Junction Shiva" sync / 1[56]:[^:]*:Eden's Promise:5894:/ -106.5 "Diamond Dust" sync / 1[56]:[^:]*:Eden's Promise:5896:/ -112.6 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:5898:/ -118.8 "Ice Floe" sync / 1[56]:[^:]*:Eden's Promise:5899:/ -125.8 "Ice Pillar" sync / 1[56]:[^:]*:Ice Pillar:589A:/ -137.8 "Plunging Ice" sync / 1[56]:[^:]*:Eden's Promise:589D:/ -141.8 "Pillar Pierce" sync / 1[56]:[^:]*:Ice Pillar:4B3F:/ -143.9 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:58A7:/ -155.0 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ - -163.3 "--middle--" sync / 1[56]:[^:]*:Eden's Promise:58AF:/ -168.7 "Junction Titan" sync / 1[56]:[^:]*:Eden's Promise:5895:/ -179.6 "Earthen Fury" sync / 1[56]:[^:]*:Eden's Promise:589F:/ - -184.6 "Impact" sync / 1[56]:[^:]*:Bomb Boulder:58A1:/ -193.3 "Pulse Of The Land" sync / 1[56]:[^:]*:Eden's Promise:58A3:/ -193.3 "Force Of The Land" sync / 1[56]:[^:]*:Eden's Promise:58A4:/ -193.3 "Weight Of The World" sync / 1[56]:[^:]*:Eden's Promise:58A5:/ - -197.8 "Impact" sync / 1[56]:[^:]*:Bomb Boulder:58A1:/ -206.4 "Force Of The Land" sync / 1[56]:[^:]*:Eden's Promise:58A4:/ -206.4 "Weight Of The World" sync / 1[56]:[^:]*:Eden's Promise:58A5:/ - -210.9 "Impact" sync / 1[56]:[^:]*:Bomb Boulder:58A1:/ -219.5 "Pulse Of The Land" sync / 1[56]:[^:]*:Eden's Promise:58A3:/ -219.5 "Force Of The Land" sync / 1[56]:[^:]*:Eden's Promise:58A4:/ -219.5 "Weight Of The World" sync / 1[56]:[^:]*:Eden's Promise:58A5:/ - -222.0 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:58A7:/ -239.2 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ -248.4 "--middle--" sync / 1[56]:[^:]*:Eden's Promise:58AF:/ -258.5 "Cast" sync / 1[56]:[^:]*:Eden's Promise:4E43:/ -259.6 "Obliteration Laser" sync / 1[56]:[^:]*:Guardian Of Eden:4E36:/ -269.8 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ - -283.0 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5892:/ -288.1 "Classical Sculpture" sync / 1[56]:[^:]*:Chiseled Sculpture:58B2:/ -298.8 "Blade Of Flame 1" #sync / 1[56]:[^:]*:Chiseled Sculpture:58B3:/ -299.2 "Rapturous Reach" sync / 1[56]:[^:]*:Eden's Promise:58A[DE]:/ -301.9 "Blade Of Flame 2" #sync / 1[56]:[^:]*:Chiseled Sculpture:58B3:/ -305.0 "Blade Of Flame 3" #sync / 1[56]:[^:]*:Chiseled Sculpture:58B3:/ -307.1 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:58AF:/ -308.0 "Blade Of Flame 4" #sync / 1[56]:[^:]*:Chiseled Sculpture:58B3:/ -310.2 "Palm Of Temperance" sync / 1[56]:[^:]*:Eden's Promise:58B6:/ -316.5 "Release" sync / 1[56]:[^:]*:Eden's Promise:5893:/ -327.7 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ - -335.4 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:58A9:/ -#335.7 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:58AC:/ -338.1 "Formless Judgment" #sync / 1[56]:[^:]*:Eden's Promise:58AC:/ - -352.1 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5892:/ -362.3 "Rapturous Reach" sync / 1[56]:[^:]*:Eden's Promise:58A[DE]:/ -365.4 "Lionsblaze 1" sync / 1[56]:[^:]*:Beastly Sculpture:58B9:/ -369.5 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:58AF:/ -370.3 "Laser Eye" sync / 1[56]:[^:]*:Guardian Of Eden:58B7:/ -374.5 "Lionsblaze 2" sync / 1[56]:[^:]*:Beastly Sculpture:58B9:/ -379.7 "Release" sync / 1[56]:[^:]*:Eden's Promise:5893:/ -383.8 "Lionsblaze 3" sync / 1[56]:[^:]*:Beastly Sculpture:58B9:/ -388.9 "Rapturous Reach" sync / 1[56]:[^:]*:Eden's Promise:58A[DE]:/ -401.7 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ - -414.9 "Stock" sync / 1[56]:[^:]*:Eden's Promise:5892:/ -418.2 "--middle--" sync / 1[56]:[^:]*:Eden's Promise:58AF:/ -424.3 "Junction Shiva/Titan" sync / 1[56]:[^:]*:Eden's Promise:589[45]:/ -434.0 "Cast" sync / 1[56]:[^:]*:Eden's Promise:4E43:/ -437.5 "Frigid Stone/Under The Weight" sync / 1[56]:[^:]*:Eden's Promise:(589E|58A6):/ -438.2 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:58A7:/ -445.8 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ - -453.0 "Junction Shiva/Titan" sync / 1[56]:[^:]*:Eden's Promise:589[45]:/ -462.7 "Release" sync / 1[56]:[^:]*:Eden's Promise:5893:/ -466.2 "Frigid Stone/Under The Weight" sync / 1[56]:[^:]*:Eden's Promise:(589E|58A6):/ -466.9 "--sync--" sync / 1[56]:[^:]*:Eden's Promise:58A7:/ - -478.1 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:58A9:/ -#478.4 "Formless Judgment" sync / 1[56]:[^:]*:Eden's Promise:58AC:/ -480.9 "Formless Judgment" #sync / 1[56]:[^:]*:Eden's Promise:58AC:/ - -489.4 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ -498.6 "Maleficium" sync / 1[56]:[^:]*:Eden's Promise:58A8:/ +0.8 "--sync--" Ability { id: "4B1E", source: "Eden's Promise" } window 1,0 +11.0 "--sync--" StartsUsing { id: "58A8", source: "Eden's Promise" } window 11,20 +16.0 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } +23.2 "--middle--" Ability { id: "58AF", source: "Eden's Promise" } +25.8 "Initialize Recall" Ability { id: "588C", source: "Eden's Promise" } +32.4 "Junction Shiva/Titan" Ability { id: "589[45]", source: "Eden's Promise" } +40.1 "Rapturous Reach" Ability { id: "58A[DE]", source: "Eden's Promise" } +43.6 "Frigid Stone/Under The Weight" Ability { id: ["589E", "58A6"], source: "Eden's Promise" } +53.3 "Cast" Ability { id: "4E43", source: "Eden's Promise" } +56.8 "Frigid Stone/Under The Weight" Ability { id: ["589E", "58A6"], source: "Eden's Promise" } +57.5 "--sync--" Ability { id: "58A7", source: "Eden's Promise" } +68.7 "Formless Judgment" Ability { id: "58A9", source: "Eden's Promise" } +#69.0 "Formless Judgment" Ability { id: "58AC", source: "Eden's Promise" } +71.4 "Formless Judgment" #Ability { id: "58AC", source: "Eden's Promise" } +81.9 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } +90.2 "--middle--" Ability { id: "58AF", source: "Eden's Promise" } + +95.6 "Junction Shiva" Ability { id: "5894", source: "Eden's Promise" } +106.5 "Diamond Dust" Ability { id: "5896", source: "Eden's Promise" } +112.6 "--sync--" Ability { id: "5898", source: "Eden's Promise" } +118.8 "Ice Floe" Ability { id: "5899", source: "Eden's Promise" } +125.8 "Ice Pillar" Ability { id: "589A", source: "Ice Pillar" } +137.8 "Plunging Ice" Ability { id: "589D", source: "Eden's Promise" } +141.8 "Pillar Pierce" Ability { id: "4B3F", source: "Ice Pillar" } +143.9 "--sync--" Ability { id: "58A7", source: "Eden's Promise" } +155.0 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } + +163.3 "--middle--" Ability { id: "58AF", source: "Eden's Promise" } +168.7 "Junction Titan" Ability { id: "5895", source: "Eden's Promise" } +179.6 "Earthen Fury" Ability { id: "589F", source: "Eden's Promise" } + +184.6 "Impact" Ability { id: "58A1", source: "Bomb Boulder" } +193.3 "Pulse Of The Land" Ability { id: "58A3", source: "Eden's Promise" } +193.3 "Force Of The Land" Ability { id: "58A4", source: "Eden's Promise" } +193.3 "Weight Of The World" Ability { id: "58A5", source: "Eden's Promise" } + +197.8 "Impact" Ability { id: "58A1", source: "Bomb Boulder" } +206.4 "Force Of The Land" Ability { id: "58A4", source: "Eden's Promise" } +206.4 "Weight Of The World" Ability { id: "58A5", source: "Eden's Promise" } + +210.9 "Impact" Ability { id: "58A1", source: "Bomb Boulder" } +219.5 "Pulse Of The Land" Ability { id: "58A3", source: "Eden's Promise" } +219.5 "Force Of The Land" Ability { id: "58A4", source: "Eden's Promise" } +219.5 "Weight Of The World" Ability { id: "58A5", source: "Eden's Promise" } + +222.0 "--sync--" Ability { id: "58A7", source: "Eden's Promise" } +239.2 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } +248.4 "--middle--" Ability { id: "58AF", source: "Eden's Promise" } +258.5 "Cast" Ability { id: "4E43", source: "Eden's Promise" } +259.6 "Obliteration Laser" Ability { id: "4E36", source: "Guardian Of Eden" } +269.8 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } + +283.0 "Stock" Ability { id: "5892", source: "Eden's Promise" } +288.1 "Classical Sculpture" Ability { id: "58B2", source: "Chiseled Sculpture" } +298.8 "Blade Of Flame 1" #Ability { id: "58B3", source: "Chiseled Sculpture" } +299.2 "Rapturous Reach" Ability { id: "58A[DE]", source: "Eden's Promise" } +301.9 "Blade Of Flame 2" #Ability { id: "58B3", source: "Chiseled Sculpture" } +305.0 "Blade Of Flame 3" #Ability { id: "58B3", source: "Chiseled Sculpture" } +307.1 "--sync--" Ability { id: "58AF", source: "Eden's Promise" } +308.0 "Blade Of Flame 4" #Ability { id: "58B3", source: "Chiseled Sculpture" } +310.2 "Palm Of Temperance" Ability { id: "58B6", source: "Eden's Promise" } +316.5 "Release" Ability { id: "5893", source: "Eden's Promise" } +327.7 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } + +335.4 "Formless Judgment" Ability { id: "58A9", source: "Eden's Promise" } +#335.7 "Formless Judgment" Ability { id: "58AC", source: "Eden's Promise" } +338.1 "Formless Judgment" #Ability { id: "58AC", source: "Eden's Promise" } + +352.1 "Stock" Ability { id: "5892", source: "Eden's Promise" } +362.3 "Rapturous Reach" Ability { id: "58A[DE]", source: "Eden's Promise" } +365.4 "Lionsblaze 1" Ability { id: "58B9", source: "Beastly Sculpture" } +369.5 "--sync--" Ability { id: "58AF", source: "Eden's Promise" } +370.3 "Laser Eye" Ability { id: "58B7", source: "Guardian Of Eden" } +374.5 "Lionsblaze 2" Ability { id: "58B9", source: "Beastly Sculpture" } +379.7 "Release" Ability { id: "5893", source: "Eden's Promise" } +383.8 "Lionsblaze 3" Ability { id: "58B9", source: "Beastly Sculpture" } +388.9 "Rapturous Reach" Ability { id: "58A[DE]", source: "Eden's Promise" } +401.7 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } + +414.9 "Stock" Ability { id: "5892", source: "Eden's Promise" } +418.2 "--middle--" Ability { id: "58AF", source: "Eden's Promise" } +424.3 "Junction Shiva/Titan" Ability { id: "589[45]", source: "Eden's Promise" } +434.0 "Cast" Ability { id: "4E43", source: "Eden's Promise" } +437.5 "Frigid Stone/Under The Weight" Ability { id: ["589E", "58A6"], source: "Eden's Promise" } +438.2 "--sync--" Ability { id: "58A7", source: "Eden's Promise" } +445.8 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } + +453.0 "Junction Shiva/Titan" Ability { id: "589[45]", source: "Eden's Promise" } +462.7 "Release" Ability { id: "5893", source: "Eden's Promise" } +466.2 "Frigid Stone/Under The Weight" Ability { id: ["589E", "58A6"], source: "Eden's Promise" } +466.9 "--sync--" Ability { id: "58A7", source: "Eden's Promise" } + +478.1 "Formless Judgment" Ability { id: "58A9", source: "Eden's Promise" } +#478.4 "Formless Judgment" Ability { id: "58AC", source: "Eden's Promise" } +480.9 "Formless Judgment" #Ability { id: "58AC", source: "Eden's Promise" } + +489.4 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } +498.6 "Maleficium" Ability { id: "58A8", source: "Eden's Promise" } 506.9 "--untargetable--" -512.0 "Paradise Lost" sync / 1[56]:[^:]*:Eden's Promise:58BA:/ +512.0 "Paradise Lost" Ability { id: "58BA", source: "Eden's Promise" } ### Oracle of Darkness @@ -119,107 +119,107 @@ hideall "--sync--" # -ii 4B1F 58C5 58C6 58D7 58BF 58C9 58CB 58CC 58CE 1000.0 "Start" -1011.0 "--sync--" sync / 14:[^:]*:Oracle Of Darkness:58EF:/ window 1011,0 -1015.0 "Hell's Judgment" sync / 1[56]:[^:]*:Oracle Of Darkness:58EF:/ -1023.2 "Shockwave Pulsar" sync / 1[56]:[^:]*:Oracle Of Darkness:58F0:/ - -1032.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Oracle Of Darkness:58C8:/ -1045.6 "Spell-In-Waiting" sync / 1[56]:[^:]*:Oracle Of Darkness:58C8:/ -1053.3 "Dark Water III / Dark Eruption" sync / 1[56]:[^:]*:Oracle Of Darkness:58C[AD]:/ -1064.9 "Darkest Dance" sync / 1[56]:[^:]*:Oracle Of Darkness:58BE:/ -1067.9 "Darkest Dance" sync / 1[56]:[^:]*:Oracle Of Darkness:58C1:/ -1071.5 "Dark Eruption / Dark Water III" sync / 1[56]:[^:]*:Oracle Of Darkness:58C[AD]:/ -1080.7 "Shockwave Pulsar" sync / 1[56]:[^:]*:Oracle Of Darkness:58F0:/ - -1101.9 "Basic Relativity" sync / 1[56]:[^:]*:Oracle Of Darkness:58E0:/ window 200,100 -1110.0 "Speed" sync / 1[56]:[^:]*:Oracle Of Darkness:58DD:/ -1110.0 "Slow" sync / 1[56]:[^:]*:Oracle Of Darkness:58DF:/ -1110.0 "Quicken" sync / 1[56]:[^:]*:Oracle Of Darkness:58DE:/ -1117.0 "Dark Current" sync / 1[56]:[^:]*:Sorrow's Hourglass:58D7:/ -1124.0 "Dark Current" sync / 1[56]:[^:]*:Sorrow's Hourglass:58D7:/ -1124.8 "Return" sync / 1[56]:[^:]*:Oracle Of Darkness:58D6:/ -1124.8 "Shadoweye" sync / 1[56]:[^:]*:Oracle Of Darkness:58D2:/ -1131.0 "Dark Current" sync / 1[56]:[^:]*:Sorrow's Hourglass:58D7:/ -1131.0 "Empty Rage" sync / 1[56]:[^:]*:Sorrow's Hourglass:58DB:/ -1135.1 "Empty Hate" sync / 1[56]:[^:]*:Sorrow's Hourglass:58DC:/ -1138.8 "Dark Water III" sync / 1[56]:[^:]*:Oracle Of Darkness:58CA:/ -1148.1 "Shockwave Pulsar" sync / 1[56]:[^:]*:Oracle Of Darkness:58F0:/ - -1163.3 "Singular Apocalypse" sync / 1[56]:[^:]*:Oracle Of Darkness:58E5:/ window 200,100 -1172.7 "Cataclysm" sync / 1[56]:[^:]*:Oracle Of Darkness:58C2:/ -1181.3 "Black Halo" sync / 1[56]:[^:]*:Oracle Of Darkness:58C7:/ -1185.6 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1187.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1188.6 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1189.0 "Shell Crusher" sync / 1[56]:[^:]*:Oracle Of Darkness:58C3:/ -1190.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1191.6 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1193.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1194.6 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1195.0 "Spirit Taker" sync / 1[56]:[^:]*:Oracle Of Darkness:58C4:/ -1196.0 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1197.5 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1199.0 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1206.2 "Shockwave Pulsar" sync / 1[56]:[^:]*:Oracle Of Darkness:58F0:/ - -1224.4 "Intermediate Relativity" sync / 1[56]:[^:]*:Oracle Of Darkness:58E1:/ window 300,100 +1011.0 "--sync--" StartsUsing { id: "58EF", source: "Oracle Of Darkness" } window 1011,0 +1015.0 "Hell's Judgment" Ability { id: "58EF", source: "Oracle Of Darkness" } +1023.2 "Shockwave Pulsar" Ability { id: "58F0", source: "Oracle Of Darkness" } + +1032.3 "Spell-In-Waiting" Ability { id: "58C8", source: "Oracle Of Darkness" } +1045.6 "Spell-In-Waiting" Ability { id: "58C8", source: "Oracle Of Darkness" } +1053.3 "Dark Water III / Dark Eruption" Ability { id: "58C[AD]", source: "Oracle Of Darkness" } +1064.9 "Darkest Dance" Ability { id: "58BE", source: "Oracle Of Darkness" } +1067.9 "Darkest Dance" Ability { id: "58C1", source: "Oracle Of Darkness" } +1071.5 "Dark Eruption / Dark Water III" Ability { id: "58C[AD]", source: "Oracle Of Darkness" } +1080.7 "Shockwave Pulsar" Ability { id: "58F0", source: "Oracle Of Darkness" } + +1101.9 "Basic Relativity" Ability { id: "58E0", source: "Oracle Of Darkness" } window 200,100 +1110.0 "Speed" Ability { id: "58DD", source: "Oracle Of Darkness" } +1110.0 "Slow" Ability { id: "58DF", source: "Oracle Of Darkness" } +1110.0 "Quicken" Ability { id: "58DE", source: "Oracle Of Darkness" } +1117.0 "Dark Current" Ability { id: "58D7", source: "Sorrow's Hourglass" } +1124.0 "Dark Current" Ability { id: "58D7", source: "Sorrow's Hourglass" } +1124.8 "Return" Ability { id: "58D6", source: "Oracle Of Darkness" } +1124.8 "Shadoweye" Ability { id: "58D2", source: "Oracle Of Darkness" } +1131.0 "Dark Current" Ability { id: "58D7", source: "Sorrow's Hourglass" } +1131.0 "Empty Rage" Ability { id: "58DB", source: "Sorrow's Hourglass" } +1135.1 "Empty Hate" Ability { id: "58DC", source: "Sorrow's Hourglass" } +1138.8 "Dark Water III" Ability { id: "58CA", source: "Oracle Of Darkness" } +1148.1 "Shockwave Pulsar" Ability { id: "58F0", source: "Oracle Of Darkness" } + +1163.3 "Singular Apocalypse" Ability { id: "58E5", source: "Oracle Of Darkness" } window 200,100 +1172.7 "Cataclysm" Ability { id: "58C2", source: "Oracle Of Darkness" } +1181.3 "Black Halo" Ability { id: "58C7", source: "Oracle Of Darkness" } +1185.6 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1187.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1188.6 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1189.0 "Shell Crusher" Ability { id: "58C3", source: "Oracle Of Darkness" } +1190.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1191.6 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1193.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1194.6 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1195.0 "Spirit Taker" Ability { id: "58C4", source: "Oracle Of Darkness" } +1196.0 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1197.5 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1199.0 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1206.2 "Shockwave Pulsar" Ability { id: "58F0", source: "Oracle Of Darkness" } + +1224.4 "Intermediate Relativity" Ability { id: "58E1", source: "Oracle Of Darkness" } window 300,100 # TODO: fill this in better with where the rewinds drop -1237.3 "Return IV" sync / 1[56]:[^:]*:Oracle Of Darkness:4E59:/ -1265.6 "Shockwave Pulsar" sync / 1[56]:[^:]*:Oracle Of Darkness:58F0:/ - -1280.8 "Dual Apocalypse" sync / 1[56]:[^:]*:Oracle Of Darkness:501C:/ window 300,100 -1290.2 "Cataclysm" sync / 1[56]:[^:]*:Oracle Of Darkness:58C2:/ -1295.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1297.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1299.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1301.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1302.4 "Somber Dance" sync / 1[56]:[^:]*:Oracle Of Darkness:58BD:/ -1303.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1305.1 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1305.9 "Somber Dance" sync / 1[56]:[^:]*:Oracle Of Darkness:58C0:/ -1316.2 "Shell Crusher" sync / 1[56]:[^:]*:Oracle Of Darkness:58C3:/ -1322.1 "Spirit Taker" sync / 1[56]:[^:]*:Oracle Of Darkness:58C4:/ -1330.7 "Shockwave Pulsar" sync / 1[56]:[^:]*:Oracle Of Darkness:58F0:/ - -1349.9 "Advanced Relativity" sync / 1[56]:[^:]*:Oracle Of Darkness:58E2:/ window 400,100 +1237.3 "Return IV" Ability { id: "4E59", source: "Oracle Of Darkness" } +1265.6 "Shockwave Pulsar" Ability { id: "58F0", source: "Oracle Of Darkness" } + +1280.8 "Dual Apocalypse" Ability { id: "501C", source: "Oracle Of Darkness" } window 300,100 +1290.2 "Cataclysm" Ability { id: "58C2", source: "Oracle Of Darkness" } +1295.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1297.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1299.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1301.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1302.4 "Somber Dance" Ability { id: "58BD", source: "Oracle Of Darkness" } +1303.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1305.1 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1305.9 "Somber Dance" Ability { id: "58C0", source: "Oracle Of Darkness" } +1316.2 "Shell Crusher" Ability { id: "58C3", source: "Oracle Of Darkness" } +1322.1 "Spirit Taker" Ability { id: "58C4", source: "Oracle Of Darkness" } +1330.7 "Shockwave Pulsar" Ability { id: "58F0", source: "Oracle Of Darkness" } + +1349.9 "Advanced Relativity" Ability { id: "58E2", source: "Oracle Of Darkness" } window 400,100 1353.9 "--untargetable--" -1358.0 "Speed" sync / 1[56]:[^:]*:Oracle Of Darkness:58DD:/ -1358.1 "Slow" sync / 1[56]:[^:]*:Oracle Of Darkness:58DF:/ -1358.1 "Quicken" sync / 1[56]:[^:]*:Oracle Of Darkness:58DE:/ -1362.8 "Return IV" sync / 1[56]:[^:]*:Oracle Of Darkness:4E59:/ -1362.8 "Dark Water III" sync / 1[56]:[^:]*:Oracle Of Darkness:58CA:/ -1373.1 "Maelstrom" sync / 1[56]:[^:]*:Sorrow's Hourglass:58DA:/ -1373.9 "Dark Fire III" sync / 1[56]:[^:]*:Oracle Of Darkness:58CF:/ -1373.9 "Dark Aero III" sync / 1[56]:[^:]*:Oracle Of Darkness:58D4:/ -1377.1 "Maelstrom" sync / 1[56]:[^:]*:Sorrow's Hourglass:58DA:/ -1377.9 "Shadoweye" sync / 1[56]:[^:]*:Oracle Of Darkness:58D2:/ -1381.2 "Maelstrom" sync / 1[56]:[^:]*:Sorrow's Hourglass:58DA:/ -1382.0 "Dark Aero III" sync / 1[56]:[^:]*:Oracle Of Darkness:58D4:/ -1386.0 "Dark Water III" sync / 1[56]:[^:]*:Oracle Of Darkness:58CA:/ +1358.0 "Speed" Ability { id: "58DD", source: "Oracle Of Darkness" } +1358.1 "Slow" Ability { id: "58DF", source: "Oracle Of Darkness" } +1358.1 "Quicken" Ability { id: "58DE", source: "Oracle Of Darkness" } +1362.8 "Return IV" Ability { id: "4E59", source: "Oracle Of Darkness" } +1362.8 "Dark Water III" Ability { id: "58CA", source: "Oracle Of Darkness" } +1373.1 "Maelstrom" Ability { id: "58DA", source: "Sorrow's Hourglass" } +1373.9 "Dark Fire III" Ability { id: "58CF", source: "Oracle Of Darkness" } +1373.9 "Dark Aero III" Ability { id: "58D4", source: "Oracle Of Darkness" } +1377.1 "Maelstrom" Ability { id: "58DA", source: "Sorrow's Hourglass" } +1377.9 "Shadoweye" Ability { id: "58D2", source: "Oracle Of Darkness" } +1381.2 "Maelstrom" Ability { id: "58DA", source: "Sorrow's Hourglass" } +1382.0 "Dark Aero III" Ability { id: "58D4", source: "Oracle Of Darkness" } +1386.0 "Dark Water III" Ability { id: "58CA", source: "Oracle Of Darkness" } 1387.2 "--targetable--" -1395.4 "Shockwave Pulsar" sync / 1[56]:[^:]*:Oracle Of Darkness:58F0:/ - -1412.6 "Triple Apocalypse" sync / 1[56]:[^:]*:Oracle Of Darkness:501D:/ window 500,100 -1421.3 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1422.8 "Darkest Dance" sync / 1[56]:[^:]*:Oracle Of Darkness:58BE:/ -1424.3 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1425.9 "Darkest Dance" sync / 1[56]:[^:]*:Oracle Of Darkness:58C1:/ -1427.3 "Apocalypse" #sync / 1[56]:[^:]*:Oracle Of Darkness:58E6:/ -1439.3 "Shockwave Pulsar" sync / 1[56]:[^:]*:Oracle Of Darkness:58F0:/ -1447.9 "Black Halo" sync / 1[56]:[^:]*:Oracle Of Darkness:58C7:/ - -1471.1 "Terminal Relativity" sync / 1[56]:[^:]*:Oracle Of Darkness:58E3:/ window 500,100 -1477.9 "--1--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1481.0 "--2--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1484.0 "--3--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1486.2 "Shockwave Pulsar 1" sync / 1[56]:[^:]*:Oracle Of Darkness:58D5:/ -1491.0 "--1--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1493.9 "--2--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1496.9 "--3--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1499.7 "Shockwave Pulsar 2" sync / 1[56]:[^:]*:Oracle Of Darkness:58D5:/ -1503.9 "--1--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1506.9 "--2--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1509.9 "--3--" #sync / 1[56]:[^:]*:Oracle Of Darkness:501E:/ -1513.2 "Shockwave Pulsar 3" sync / 1[56]:[^:]*:Oracle Of Darkness:58D5:/ - -1533.7 "Memory's End" sync / 1[56]:[^:]*:Oracle Of Darkness:58E4:/ +1395.4 "Shockwave Pulsar" Ability { id: "58F0", source: "Oracle Of Darkness" } + +1412.6 "Triple Apocalypse" Ability { id: "501D", source: "Oracle Of Darkness" } window 500,100 +1421.3 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1422.8 "Darkest Dance" Ability { id: "58BE", source: "Oracle Of Darkness" } +1424.3 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1425.9 "Darkest Dance" Ability { id: "58C1", source: "Oracle Of Darkness" } +1427.3 "Apocalypse" #Ability { id: "58E6", source: "Oracle Of Darkness" } +1439.3 "Shockwave Pulsar" Ability { id: "58F0", source: "Oracle Of Darkness" } +1447.9 "Black Halo" Ability { id: "58C7", source: "Oracle Of Darkness" } + +1471.1 "Terminal Relativity" Ability { id: "58E3", source: "Oracle Of Darkness" } window 500,100 +1477.9 "--1--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1481.0 "--2--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1484.0 "--3--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1486.2 "Shockwave Pulsar 1" Ability { id: "58D5", source: "Oracle Of Darkness" } +1491.0 "--1--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1493.9 "--2--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1496.9 "--3--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1499.7 "Shockwave Pulsar 2" Ability { id: "58D5", source: "Oracle Of Darkness" } +1503.9 "--1--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1506.9 "--2--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1509.9 "--3--" #Ability { id: "501E", source: "Oracle Of Darkness" } +1513.2 "Shockwave Pulsar 3" Ability { id: "58D5", source: "Oracle Of Darkness" } + +1533.7 "Memory's End" Ability { id: "58E4", source: "Oracle Of Darkness" } diff --git a/ui/raidboss/data/05-shb/raid/e1n.txt b/ui/raidboss/data/05-shb/raid/e1n.txt index 370326457d..770024a6f5 100644 --- a/ui/raidboss/data/05-shb/raid/e1n.txt +++ b/ui/raidboss/data/05-shb/raid/e1n.txt @@ -8,78 +8,78 @@ hideall "Vice And Virtue" ### Phase 1 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.0 "Spear Of Paradise" sync / 1[56]:[^:]*:Eden Prime:3DA1:/ window 12,5 -13.5 "Heavensunder" sync / 1[56]:[^:]*:Eden Prime:3DA2:/ -22.5 "Eden's Gravity" sync / 1[56]:[^:]*:Eden Prime:3D94:/ -34.1 "Vice And Virtue" sync / 1[56]:[^:]*:Eden Prime:44E5:/ -34.1 "Vice Of Apathy" sync / 1[56]:[^:]*:Eden Prime:44E8:/ -40.5 "Eden's Flare" sync / 1[56]:[^:]*:Eden Prime:3D97:/ -56.1 "Vice And Virtue" sync / 1[56]:[^:]*:Eden Prime:44E4:/ -56.9 "Vice Of Vanity" sync / 1[56]:[^:]*:Eden Prime:44E7:/ -66.7 "Spear Of Paradise" sync / 1[56]:[^:]*:Eden Prime:3DA1:/ -68.2 "Heavensunder" sync / 1[56]:[^:]*:Eden Prime:3DA2:/ -73.2 "--corner--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -86.5 "Pure Light" sync / 1[56]:[^:]*:Eden Prime:3DA3:/ -92.4 "--center--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -101.6 "Delta Attack" sync / 1[56]:[^:]*:Eden Prime:44EA:/ -102.2 "Eden's Thunder III" sync / 1[56]:[^:]*:Eden Prime:44ED:/ -102.2 "Eden's Blizzard III" sync / 1[56]:[^:]*:Eden Prime:44EC:/ -102.2 "Eden's Fire III" sync / 1[56]:[^:]*:Eden Prime:44EB:/ -108.3 "--sync--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -114.8 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D9C:/ -123.3 "Pure Beam x6" sync / 1[56]:[^:]*:Eden Prime:3D9D:/ duration 17.3 -128.7 "Paradise Lost x3" sync / 1[56]:[^:]*:Eden Prime:3D9F:/ duration 11.2 -131.2 "--corner--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -144.5 "Pure Light" sync / 1[56]:[^:]*:Eden Prime:3DA3:/ -147.3 "--center--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -153.9 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D9C:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.0 "Spear Of Paradise" Ability { id: "3DA1", source: "Eden Prime" } window 12,5 +13.5 "Heavensunder" Ability { id: "3DA2", source: "Eden Prime" } +22.5 "Eden's Gravity" Ability { id: "3D94", source: "Eden Prime" } +34.1 "Vice And Virtue" Ability { id: "44E5", source: "Eden Prime" } +34.1 "Vice Of Apathy" Ability { id: "44E8", source: "Eden Prime" } +40.5 "Eden's Flare" Ability { id: "3D97", source: "Eden Prime" } +56.1 "Vice And Virtue" Ability { id: "44E4", source: "Eden Prime" } +56.9 "Vice Of Vanity" Ability { id: "44E7", source: "Eden Prime" } +66.7 "Spear Of Paradise" Ability { id: "3DA1", source: "Eden Prime" } +68.2 "Heavensunder" Ability { id: "3DA2", source: "Eden Prime" } +73.2 "--corner--" Ability { id: "4683", source: "Eden Prime" } +86.5 "Pure Light" Ability { id: "3DA3", source: "Eden Prime" } +92.4 "--center--" Ability { id: "4683", source: "Eden Prime" } +101.6 "Delta Attack" Ability { id: "44EA", source: "Eden Prime" } +102.2 "Eden's Thunder III" Ability { id: "44ED", source: "Eden Prime" } +102.2 "Eden's Blizzard III" Ability { id: "44EC", source: "Eden Prime" } +102.2 "Eden's Fire III" Ability { id: "44EB", source: "Eden Prime" } +108.3 "--sync--" Ability { id: "4683", source: "Eden Prime" } +114.8 "Dimensional Shift" Ability { id: "3D9C", source: "Eden Prime" } +123.3 "Pure Beam x6" Ability { id: "3D9D", source: "Eden Prime" } duration 17.3 +128.7 "Paradise Lost x3" Ability { id: "3D9F", source: "Eden Prime" } duration 11.2 +131.2 "--corner--" Ability { id: "4683", source: "Eden Prime" } +144.5 "Pure Light" Ability { id: "3DA3", source: "Eden Prime" } +147.3 "--center--" Ability { id: "4683", source: "Eden Prime" } +153.9 "Dimensional Shift" Ability { id: "3D9C", source: "Eden Prime" } ### Phase 2: cleavy adds 166.5 "--untargetable--" -166.5 "Fragor Maximus" sync / 1[56]:[^:]*:Eden Prime:3DA4:/ window 200,5 +166.5 "Fragor Maximus" Ability { id: "3DA4", source: "Eden Prime" } window 200,5 182.7 "--targetable--" -182.7 "Paradisal Dive" sync / 1[56]:[^:]*:Guardian of Paradise:3DA9:/ -193.8 "Mana Slice" sync / 1[56]:[^:]*:Guardian of Paradise:3DA6:/ -203.0 "Mana Burst" sync / 1[56]:[^:]*:Guardian of Paradise:3DA7:/ -209.1 "Mana Slice" sync / 1[56]:[^:]*:Guardian of Paradise:3DA6:/ -218.3 "Mana Burst" sync / 1[56]:[^:]*:Guardian of Paradise:3DA7:/ -223.5 "Mana Slice" sync / 1[56]:[^:]*:Guardian of Paradise:3DA6:/ -228.7 "Mana Slice" sync / 1[56]:[^:]*:Guardian of Paradise:3DA6:/ -242.7 "Unto Dust Enrage" sync / 1[56]:[^:]*:Guardian of Paradise:3DA8:/ +182.7 "Paradisal Dive" Ability { id: "3DA9", source: "Guardian of Paradise" } +193.8 "Mana Slice" Ability { id: "3DA6", source: "Guardian of Paradise" } +203.0 "Mana Burst" Ability { id: "3DA7", source: "Guardian of Paradise" } +209.1 "Mana Slice" Ability { id: "3DA6", source: "Guardian of Paradise" } +218.3 "Mana Burst" Ability { id: "3DA7", source: "Guardian of Paradise" } +223.5 "Mana Slice" Ability { id: "3DA6", source: "Guardian of Paradise" } +228.7 "Mana Slice" Ability { id: "3DA6", source: "Guardian of Paradise" } +242.7 "Unto Dust Enrage" Ability { id: "3DA8", source: "Guardian of Paradise" } ### Phase 3: more of the same -300.0 "Primeval Stasis" sync / 1[56]:[^:]*:Eden:3E3A:/ window 300,0 -343.6 "Eternal Breath" sync / 1[56]:[^:]*:Eden Prime:3DA5:/ +300.0 "Primeval Stasis" Ability { id: "3E3A", source: "Eden" } window 300,0 +343.6 "Eternal Breath" Ability { id: "3DA5", source: "Eden Prime" } 354.0 "--targetable--" -360.0 "Vice And Virtue" sync / 1[56]:[^:]*:Eden Prime:44E4:/ -360.8 "Vice Of Vanity" sync / 1[56]:[^:]*:Eden Prime:44E7:/ -370.6 "Spear Of Paradise" sync / 1[56]:[^:]*:Eden Prime:3DA1:/ -372.1 "Heavensunder" sync / 1[56]:[^:]*:Eden Prime:3DA2:/ -377.0 "--corner--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -390.3 "Pure Light" sync / 1[56]:[^:]*:Eden Prime:3DA3:/ -396.2 "--center--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -405.5 "Delta Attack" sync / 1[56]:[^:]*:Eden Prime:44EA:/ -406.1 "Eden's Thunder III" sync / 1[56]:[^:]*:Eden Prime:44ED:/ -406.1 "Eden's Blizzard III" sync / 1[56]:[^:]*:Eden Prime:44EC:/ -406.1 "Eden's Fire III" sync / 1[56]:[^:]*:Eden Prime:44EB:/ -412.1 "--sync--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -418.7 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D9C:/ -427.1 "Pure Beam x6" sync / 1[56]:[^:]*:Eden Prime:3D9D:/ duration 17.3 -432.6 "Paradise Lost x3" sync / 1[56]:[^:]*:Eden Prime:3D9F:/ duration 11.2 -435.1 "--corner--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -448.4 "Pure Light" sync / 1[56]:[^:]*:Eden Prime:3DA3:/ -451.2 "--center--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -457.8 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D9C:/ -470.3 "Vice And Virtue" sync / 1[56]:[^:]*:Eden Prime:44E5:/ -470.4 "Vice Of Apathy" sync / 1[56]:[^:]*:Eden Prime:44E8:/ -476.9 "Eden's Flare" sync / 1[56]:[^:]*:Eden Prime:3D97:/ -488.4 "Eden's Gravity" sync / 1[56]:[^:]*:Eden Prime:3D94:/ +360.0 "Vice And Virtue" Ability { id: "44E4", source: "Eden Prime" } +360.8 "Vice Of Vanity" Ability { id: "44E7", source: "Eden Prime" } +370.6 "Spear Of Paradise" Ability { id: "3DA1", source: "Eden Prime" } +372.1 "Heavensunder" Ability { id: "3DA2", source: "Eden Prime" } +377.0 "--corner--" Ability { id: "4683", source: "Eden Prime" } +390.3 "Pure Light" Ability { id: "3DA3", source: "Eden Prime" } +396.2 "--center--" Ability { id: "4683", source: "Eden Prime" } +405.5 "Delta Attack" Ability { id: "44EA", source: "Eden Prime" } +406.1 "Eden's Thunder III" Ability { id: "44ED", source: "Eden Prime" } +406.1 "Eden's Blizzard III" Ability { id: "44EC", source: "Eden Prime" } +406.1 "Eden's Fire III" Ability { id: "44EB", source: "Eden Prime" } +412.1 "--sync--" Ability { id: "4683", source: "Eden Prime" } +418.7 "Dimensional Shift" Ability { id: "3D9C", source: "Eden Prime" } +427.1 "Pure Beam x6" Ability { id: "3D9D", source: "Eden Prime" } duration 17.3 +432.6 "Paradise Lost x3" Ability { id: "3D9F", source: "Eden Prime" } duration 11.2 +435.1 "--corner--" Ability { id: "4683", source: "Eden Prime" } +448.4 "Pure Light" Ability { id: "3DA3", source: "Eden Prime" } +451.2 "--center--" Ability { id: "4683", source: "Eden Prime" } +457.8 "Dimensional Shift" Ability { id: "3D9C", source: "Eden Prime" } +470.3 "Vice And Virtue" Ability { id: "44E5", source: "Eden Prime" } +470.4 "Vice Of Apathy" Ability { id: "44E8", source: "Eden Prime" } +476.9 "Eden's Flare" Ability { id: "3D97", source: "Eden Prime" } +488.4 "Eden's Gravity" Ability { id: "3D94", source: "Eden Prime" } -502.0 "Vice And Virtue" sync / 1[56]:[^:]*:Eden Prime:44E4:/ window 100,100 jump 360.0 +502.0 "Vice And Virtue" Ability { id: "44E4", source: "Eden Prime" } window 100,100 jump 360.0 502.7 "Vice Of Vanity" 512.5 "Spear Of Paradise" 514.0 "Heavensunder" diff --git a/ui/raidboss/data/05-shb/raid/e1s.txt b/ui/raidboss/data/05-shb/raid/e1s.txt index d4359b5202..11f0a7c40f 100644 --- a/ui/raidboss/data/05-shb/raid/e1s.txt +++ b/ui/raidboss/data/05-shb/raid/e1s.txt @@ -7,76 +7,76 @@ hideall "--sync--" ### Phase 1 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.0 "Eden's Gravity" sync / 1[56]:[^:]*:Eden Prime:3D70:/ window 12,5 -25.6 "Vice And Virtue (D)" sync / 1[56]:[^:]*:Eden Prime:44EF:/ -32.0 "Eden's Flare" sync / 1[56]:[^:]*:Eden Prime:3D73:/ -50.5 "Vice And Virtue (T)" sync / 1[56]:[^:]*:Eden Prime:44EE:/ -58.0 "Spear Of Paradise" sync / 1[56]:[^:]*:Eden Prime:3D88:/ -59.5 "Heavensunder" sync / 1[56]:[^:]*:Eden Prime:3D89:/ -69.4 "Vice And Virtue (H)" sync / 1[56]:[^:]*:Eden Prime:44F0:/ -71.7 "--corner--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -80.4 "Pure Light" sync / 1[56]:[^:]*:Eden Prime:3D8A:/ -83.2 "--center--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -93.3 "Delta Attack (Cross)" sync / 1[56]:[^:]*:Eden Prime:44F4:/ -98.9 "--sync--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -105.5 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D7F:/ -112.0 "Paradise Lost" sync / 1[56]:[^:]*:Eden Prime:3D86:/ duration 9 -122.5 "Pure Beam" sync / 1[56]:[^:]*:Eden Prime:3D80:/ -125.0 "--corner--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -133.7 "Pure Light" sync / 1[56]:[^:]*:Eden Prime:3D8A:/ -136.5 "--center--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -143.1 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D7F:/ -153.7 "Fragor Maximus" sync / 1[56]:[^:]*:Eden Prime:3D8B:/ window 200,0 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.0 "Eden's Gravity" Ability { id: "3D70", source: "Eden Prime" } window 12,5 +25.6 "Vice And Virtue (D)" Ability { id: "44EF", source: "Eden Prime" } +32.0 "Eden's Flare" Ability { id: "3D73", source: "Eden Prime" } +50.5 "Vice And Virtue (T)" Ability { id: "44EE", source: "Eden Prime" } +58.0 "Spear Of Paradise" Ability { id: "3D88", source: "Eden Prime" } +59.5 "Heavensunder" Ability { id: "3D89", source: "Eden Prime" } +69.4 "Vice And Virtue (H)" Ability { id: "44F0", source: "Eden Prime" } +71.7 "--corner--" Ability { id: "4683", source: "Eden Prime" } +80.4 "Pure Light" Ability { id: "3D8A", source: "Eden Prime" } +83.2 "--center--" Ability { id: "4683", source: "Eden Prime" } +93.3 "Delta Attack (Cross)" Ability { id: "44F4", source: "Eden Prime" } +98.9 "--sync--" Ability { id: "4683", source: "Eden Prime" } +105.5 "Dimensional Shift" Ability { id: "3D7F", source: "Eden Prime" } +112.0 "Paradise Lost" Ability { id: "3D86", source: "Eden Prime" } duration 9 +122.5 "Pure Beam" Ability { id: "3D80", source: "Eden Prime" } +125.0 "--corner--" Ability { id: "4683", source: "Eden Prime" } +133.7 "Pure Light" Ability { id: "3D8A", source: "Eden Prime" } +136.5 "--center--" Ability { id: "4683", source: "Eden Prime" } +143.1 "Dimensional Shift" Ability { id: "3D7F", source: "Eden Prime" } +153.7 "Fragor Maximus" Ability { id: "3D8B", source: "Eden Prime" } window 200,0 154.3 "--untargetable--" ### Phase 2 - Adds 169.9 "--targetable--" -169.9 "Paradisal Dive" sync / 1[56]:[^:]*:Guardian of Paradise:3D91:/ -185.2 "Mana Slice" sync / 1[56]:[^:]*:Guardian of Paradise:3D8E:/ -194.3 "Mana Burst" sync / 1[56]:[^:]*:Guardian of Paradise:3D8F:/ -199.4 "Mana Slice" sync / 1[56]:[^:]*:Guardian of Paradise:3D8E:/ -208.6 "Mana Burst" sync / 1[56]:[^:]*:Guardian of Paradise:3D8F:/ -213.7 "Mana Slice" sync / 1[56]:[^:]*:Guardian of Paradise:3D8E:/ +169.9 "Paradisal Dive" Ability { id: "3D91", source: "Guardian of Paradise" } +185.2 "Mana Slice" Ability { id: "3D8E", source: "Guardian of Paradise" } +194.3 "Mana Burst" Ability { id: "3D8F", source: "Guardian of Paradise" } +199.4 "Mana Slice" Ability { id: "3D8E", source: "Guardian of Paradise" } +208.6 "Mana Burst" Ability { id: "3D8F", source: "Guardian of Paradise" } +213.7 "Mana Slice" Ability { id: "3D8E", source: "Guardian of Paradise" } ### Phase 3 -500.0 "Eternal Breath" sync / 1[56]:[^:]*:Eden Prime:3D8C:/ window 500,0 +500.0 "Eternal Breath" Ability { id: "3D8C", source: "Eden Prime" } window 500,0 510.0 "--targetable--" -518.4 "Paradise Regained" sync / 1[56]:[^:]*:Eden Prime:44FC:/ -528.8 "Vice And Virtue! (T)" sync / 1[56]:[^:]*:Eden Prime:3D78:/ -542.5 "Vice And Virtue! (D)" sync / 1[56]:[^:]*:Eden Prime:3D7A:/ -544.9 "--sync--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -555.0 "Delta Attack (Donut)" sync / 1[56]:[^:]*:Eden Prime:44F8:/ -568.8 "Vice And Virtue! (H)" sync / 1[56]:[^:]*:Eden Prime:3D7D:/ -576.1 "Spear Of Paradise" sync / 1[56]:[^:]*:Eden Prime:3D88:/ -577.7 "Heavensunder" sync / 1[56]:[^:]*:Eden Prime:3D89:/ -582.5 "--sync--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -589.1 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D7F:/ -599.5 "Pure Beam!" sync / 1[56]:[^:]*:Eden Prime:3D82:/ -611.2 "--corner--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -619.9 "Pure Light" sync / 1[56]:[^:]*:Eden Prime:3D8A:/ duration 11.7 -622.8 "--center--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -629.3 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D7F:/ -642.1 "Eden's Gravity" sync / 1[56]:[^:]*:Eden Prime:3D70:/ -653.6 "Eden's Flare" sync / 1[56]:[^:]*:Eden Prime:3D73:/ -669.2 "Vice And Virtue (T)" sync / 1[56]:[^:]*:Eden Prime:44EE:/ -676.8 "Spear Of Paradise" sync / 1[56]:[^:]*:Eden Prime:3D88:/ -678.3 "Heavensunder" sync / 1[56]:[^:]*:Eden Prime:3D89:/ -688.0 "Vice And Virtue (D)" sync / 1[56]:[^:]*:Eden Prime:44EF:/ -690.5 "--sync--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -700.6 "Delta Attack (Cross)" sync / 1[56]:[^:]*:Eden Prime:44F4:/ -714.1 "Vice And Virtue (H)" sync / 1[56]:[^:]*:Eden Prime:44F0:/ -719.8 "--sync--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -726.4 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D7F:/ -736.9 "Pure Beam!" sync / 1[56]:[^:]*:Eden Prime:3D82:/ duration 11.7 -748.3 "--corner--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -757.1 "Pure Light" sync / 1[56]:[^:]*:Eden Prime:3D8A:/ -760.0 "--center--" sync / 1[56]:[^:]*:Eden Prime:4683:/ -766.5 "Dimensional Shift" sync / 1[56]:[^:]*:Eden Prime:3D7F:/ -779.2 "Eden's Gravity" sync / 1[56]:[^:]*:Eden Prime:3D70:/ -790.7 "Eden's Flare" sync / 1[56]:[^:]*:Eden Prime:3D73:/ +518.4 "Paradise Regained" Ability { id: "44FC", source: "Eden Prime" } +528.8 "Vice And Virtue! (T)" Ability { id: "3D78", source: "Eden Prime" } +542.5 "Vice And Virtue! (D)" Ability { id: "3D7A", source: "Eden Prime" } +544.9 "--sync--" Ability { id: "4683", source: "Eden Prime" } +555.0 "Delta Attack (Donut)" Ability { id: "44F8", source: "Eden Prime" } +568.8 "Vice And Virtue! (H)" Ability { id: "3D7D", source: "Eden Prime" } +576.1 "Spear Of Paradise" Ability { id: "3D88", source: "Eden Prime" } +577.7 "Heavensunder" Ability { id: "3D89", source: "Eden Prime" } +582.5 "--sync--" Ability { id: "4683", source: "Eden Prime" } +589.1 "Dimensional Shift" Ability { id: "3D7F", source: "Eden Prime" } +599.5 "Pure Beam!" Ability { id: "3D82", source: "Eden Prime" } +611.2 "--corner--" Ability { id: "4683", source: "Eden Prime" } +619.9 "Pure Light" Ability { id: "3D8A", source: "Eden Prime" } duration 11.7 +622.8 "--center--" Ability { id: "4683", source: "Eden Prime" } +629.3 "Dimensional Shift" Ability { id: "3D7F", source: "Eden Prime" } +642.1 "Eden's Gravity" Ability { id: "3D70", source: "Eden Prime" } +653.6 "Eden's Flare" Ability { id: "3D73", source: "Eden Prime" } +669.2 "Vice And Virtue (T)" Ability { id: "44EE", source: "Eden Prime" } +676.8 "Spear Of Paradise" Ability { id: "3D88", source: "Eden Prime" } +678.3 "Heavensunder" Ability { id: "3D89", source: "Eden Prime" } +688.0 "Vice And Virtue (D)" Ability { id: "44EF", source: "Eden Prime" } +690.5 "--sync--" Ability { id: "4683", source: "Eden Prime" } +700.6 "Delta Attack (Cross)" Ability { id: "44F4", source: "Eden Prime" } +714.1 "Vice And Virtue (H)" Ability { id: "44F0", source: "Eden Prime" } +719.8 "--sync--" Ability { id: "4683", source: "Eden Prime" } +726.4 "Dimensional Shift" Ability { id: "3D7F", source: "Eden Prime" } +736.9 "Pure Beam!" Ability { id: "3D82", source: "Eden Prime" } duration 11.7 +748.3 "--corner--" Ability { id: "4683", source: "Eden Prime" } +757.1 "Pure Light" Ability { id: "3D8A", source: "Eden Prime" } +760.0 "--center--" Ability { id: "4683", source: "Eden Prime" } +766.5 "Dimensional Shift" Ability { id: "3D7F", source: "Eden Prime" } +779.2 "Eden's Gravity" Ability { id: "3D70", source: "Eden Prime" } +790.7 "Eden's Flare" Ability { id: "3D73", source: "Eden Prime" } -801.2 "Paradise Regained" sync / 1[56]:[^:]*:Eden Prime:44FC:/ window 200,200 jump 518.4 +801.2 "Paradise Regained" Ability { id: "44FC", source: "Eden Prime" } window 200,200 jump 518.4 811.6 "Vice And Virtue! (T)" 825.3 "Vice And Virtue! (D)" 827.7 "--sync--" @@ -87,4 +87,4 @@ hideall "--sync--" ### Enrage -900.0 "Fragor Maximus (Enrage)" sync / 14:[^:]*:Eden Prime:45E4:/ window 500,0 duration 10.0 +900.0 "Fragor Maximus (Enrage)" StartsUsing { id: "45E4", source: "Eden Prime" } window 500,0 duration 10.0 diff --git a/ui/raidboss/data/05-shb/raid/e2n.txt b/ui/raidboss/data/05-shb/raid/e2n.txt index 0a23e1619c..8bce8c9854 100644 --- a/ui/raidboss/data/05-shb/raid/e2n.txt +++ b/ui/raidboss/data/05-shb/raid/e2n.txt @@ -7,59 +7,59 @@ hideall "--sync--" hideall "Spell-In-Waiting" 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.7 "Doomvoid Guillotine" sync / 1[56]:[^:]*:Voidwalker:3E3B:/ window 11,5 -27.7 "Doomvoid Slicer" sync / 1[56]:[^:]*:Voidwalker:3E3C:/ -46.7 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E4D:/ -59.4 "Dark Fire III" sync / 1[56]:[^:]*:Voidwalker:3E43:/ window 60,5 -67.4 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E40:/ -72.7 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -91.2 "Dark Fire III" sync / 1[56]:[^:]*:Voidwalker:3E43:/ -92.9 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -111.4 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E40:/ -113.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -127.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -146.4 "Dark Fire III" sync / 1[56]:[^:]*:Voidwalker:3E43:/ -146.4 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E40:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.7 "Doomvoid Guillotine" Ability { id: "3E3B", source: "Voidwalker" } window 11,5 +27.7 "Doomvoid Slicer" Ability { id: "3E3C", source: "Voidwalker" } +46.7 "Shadowflame" Ability { id: "3E4D", source: "Voidwalker" } +59.4 "Dark Fire III" Ability { id: "3E43", source: "Voidwalker" } window 60,5 +67.4 "Unholy Darkness" Ability { id: "3E40", source: "Voidwalker" } +72.7 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +91.2 "Dark Fire III" Ability { id: "3E43", source: "Voidwalker" } +92.9 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +111.4 "Unholy Darkness" Ability { id: "3E40", source: "Voidwalker" } +113.3 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +127.3 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +146.4 "Dark Fire III" Ability { id: "3E43", source: "Voidwalker" } +146.4 "Unholy Darkness" Ability { id: "3E40", source: "Voidwalker" } -156.8 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E6E:/ window 200,5 -167.3 "Empty Hate" sync / 1[56]:[^:]*:The Hand of Erebos:3E46:/ -174.3 "Doomvoid Guillotine" sync / 1[56]:[^:]*:Voidwalker:3E3B:/ -184.3 "Empty Hate" sync / 1[56]:[^:]*:The Hand of Erebos:3E46:/ -191.3 "Doomvoid Slicer" sync / 1[56]:[^:]*:Voidwalker:3E3C:/ -206.3 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E4D:/ +156.8 "Entropy" Ability { id: "3E6E", source: "Voidwalker" } window 200,5 +167.3 "Empty Hate" Ability { id: "3E46", source: "The Hand of Erebos" } +174.3 "Doomvoid Guillotine" Ability { id: "3E3B", source: "Voidwalker" } +184.3 "Empty Hate" Ability { id: "3E46", source: "The Hand of Erebos" } +191.3 "Doomvoid Slicer" Ability { id: "3E3C", source: "Voidwalker" } +206.3 "Shadowflame" Ability { id: "3E4D", source: "Voidwalker" } -216.8 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E6E:/ window 50,5 -223.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -230.3 "Punishing Ray" sync / 1[56]:[^:]*:Voidwalker:3E47:/ -241.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -252.4 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E40:/ -259.4 "Dark Fire III" sync / 1[56]:[^:]*:Voidwalker:3E43:/ -270.3 "Empty Hate" sync / 1[56]:[^:]*:The Hand of Erebos:3E46:/ -277.3 "Punishing Ray" sync / 1[56]:[^:]*:Voidwalker:3E47:/ +216.8 "Entropy" Ability { id: "3E6E", source: "Voidwalker" } window 50,5 +223.3 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +230.3 "Punishing Ray" Ability { id: "3E47", source: "Voidwalker" } +241.3 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +252.4 "Unholy Darkness" Ability { id: "3E40", source: "Voidwalker" } +259.4 "Dark Fire III" Ability { id: "3E43", source: "Voidwalker" } +270.3 "Empty Hate" Ability { id: "3E46", source: "The Hand of Erebos" } +277.3 "Punishing Ray" Ability { id: "3E47", source: "Voidwalker" } -286.8 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E6E:/ -296.0 "Shadoweye" sync / 1[56]:[^:]*:Voidwalker:40B7:/ -301.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -316.3 "Doomvoid Guillotine" sync / 1[56]:[^:]*:Voidwalker:3E3B:/ -331.3 "Doomvoid Slicer" sync / 1[56]:[^:]*:Voidwalker:3E3C:/ -331.4 "Shadoweye" sync / 1[56]:[^:]*:Voidwalker:40B7:/ +286.8 "Entropy" Ability { id: "3E6E", source: "Voidwalker" } +296.0 "Shadoweye" Ability { id: "40B7", source: "Voidwalker" } +301.3 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +316.3 "Doomvoid Guillotine" Ability { id: "3E3B", source: "Voidwalker" } +331.3 "Doomvoid Slicer" Ability { id: "3E3C", source: "Voidwalker" } +331.4 "Shadoweye" Ability { id: "40B7", source: "Voidwalker" } -351.8 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E6E:/ -360.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -366.3 "Empty Hate" sync / 1[56]:[^:]*:The Hand of Erebos:3E46:/ -374.3 "Punishing Ray" sync / 1[56]:[^:]*:Voidwalker:3E47:/ -383.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E3E:/ -394.5 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E40:/ -401.5 "Dark Fire III" sync / 1[56]:[^:]*:Voidwalker:3E43:/ -408.4 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E4D:/ -416.4 "Doomvoid Guillotine" sync / 1[56]:[^:]*:Voidwalker:3E3B:/ -426.4 "Empty Hate" sync / 1[56]:[^:]*:The Hand of Erebos:3E46:/ -431.4 "Doomvoid Slicer" sync / 1[56]:[^:]*:Voidwalker:3E3C:/ -441.1 "Shadoweye" sync / 1[56]:[^:]*:Voidwalker:40B7:/ -450.4 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E4D:/ +351.8 "Entropy" Ability { id: "3E6E", source: "Voidwalker" } +360.3 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +366.3 "Empty Hate" Ability { id: "3E46", source: "The Hand of Erebos" } +374.3 "Punishing Ray" Ability { id: "3E47", source: "Voidwalker" } +383.3 "Spell-In-Waiting" Ability { id: "3E3E", source: "Voidwalker" } +394.5 "Unholy Darkness" Ability { id: "3E40", source: "Voidwalker" } +401.5 "Dark Fire III" Ability { id: "3E43", source: "Voidwalker" } +408.4 "Shadowflame" Ability { id: "3E4D", source: "Voidwalker" } +416.4 "Doomvoid Guillotine" Ability { id: "3E3B", source: "Voidwalker" } +426.4 "Empty Hate" Ability { id: "3E46", source: "The Hand of Erebos" } +431.4 "Doomvoid Slicer" Ability { id: "3E3C", source: "Voidwalker" } +441.1 "Shadoweye" Ability { id: "40B7", source: "Voidwalker" } +450.4 "Shadowflame" Ability { id: "3E4D", source: "Voidwalker" } -461.8 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E6E:/ window 50,50 jump 351.8 +461.8 "Entropy" Ability { id: "3E6E", source: "Voidwalker" } window 50,50 jump 351.8 470.3 "Spell-In-Waiting" 476.3 "Empty Hate" 484.3 "Punishing Ray" diff --git a/ui/raidboss/data/05-shb/raid/e2s.txt b/ui/raidboss/data/05-shb/raid/e2s.txt index d8eebf34b5..7f4ec1149f 100644 --- a/ui/raidboss/data/05-shb/raid/e2s.txt +++ b/ui/raidboss/data/05-shb/raid/e2s.txt @@ -7,80 +7,80 @@ hideall "--sync--" hideall "Spell-In-Waiting" 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.5 "--sync--" sync / 1[56]:[^:]*:Voidwalker:3E63:/ window 11,5 -11.2 "Doomvoid Cleaver" sync / 1[56]:[^:]*:Voidwalker:3E64:/ -25.4 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E54:/ -31.8 "Slicer/Guillotine" sync / 1[56]:[^:]*:Voidwalker:(3E4F|3E50):/ -43.8 "Dark Fire III" sync / 1[56]:[^:]*:Voidwalker:3E57:/ -59.2 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -69.3 "Punishing Ray" sync / 1[56]:[^:]*:Voidwalker:3E5B:/ -72.7 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -86.1 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -95.3 "Dark Fire III" sync / 1[56]:[^:]*:Voidwalker:3E57:/ -105.3 "Hell Wind" sync / 1[56]:[^:]*:Voidwalker:3E66:/ -106.8 "Shadoweye" sync / 1[56]:[^:]*:Voidwalker:3E69:/ -106.8 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E54:/ -121.9 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E61:/ -134.1 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E70:/ -143.8 "Empty Rage" sync / 1[56]:[^:]*:Voidwalker:3E6C:/ -148.7 "Doomvoid Guillotine" sync / 1[56]:[^:]*:Voidwalker:3E4F:/ -156.9 "Doomvoid Slicer" sync / 1[56]:[^:]*:Voidwalker:3E50:/ -164.9 "Empty Hate" sync / 1[56]:[^:]*:Voidwalker:3E5A:/ -175.8 "Doomvoid Cleaver" sync / 1[56]:[^:]*:Voidwalker:3E64:/ -191.2 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E61:/ -203.4 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E70:/ -208.0 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -224.9 "Flare" sync / 1[56]:[^:]*:Voidwalker:4685:/ -229.3 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -242.5 "Hell Wind" sync / 1[56]:[^:]*:Voidwalker:3E66:/ -248.5 "Punishing Ray" sync / 1[56]:[^:]*:Voidwalker:3E5B:/ -248.9 "Shadoweye" sync / 1[56]:[^:]*:Voidwalker:3E69:/ -260.7 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E61:/ -272.9 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E70:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.5 "--sync--" Ability { id: "3E63", source: "Voidwalker" } window 11,5 +11.2 "Doomvoid Cleaver" Ability { id: "3E64", source: "Voidwalker" } +25.4 "Unholy Darkness" Ability { id: "3E54", source: "Voidwalker" } +31.8 "Slicer/Guillotine" Ability { id: ["3E4F", "3E50"], source: "Voidwalker" } +43.8 "Dark Fire III" Ability { id: "3E57", source: "Voidwalker" } +59.2 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +69.3 "Punishing Ray" Ability { id: "3E5B", source: "Voidwalker" } +72.7 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +86.1 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +95.3 "Dark Fire III" Ability { id: "3E57", source: "Voidwalker" } +105.3 "Hell Wind" Ability { id: "3E66", source: "Voidwalker" } +106.8 "Shadoweye" Ability { id: "3E69", source: "Voidwalker" } +106.8 "Unholy Darkness" Ability { id: "3E54", source: "Voidwalker" } +121.9 "Shadowflame" Ability { id: "3E61", source: "Voidwalker" } +134.1 "Entropy" Ability { id: "3E70", source: "Voidwalker" } +143.8 "Empty Rage" Ability { id: "3E6C", source: "Voidwalker" } +148.7 "Doomvoid Guillotine" Ability { id: "3E4F", source: "Voidwalker" } +156.9 "Doomvoid Slicer" Ability { id: "3E50", source: "Voidwalker" } +164.9 "Empty Hate" Ability { id: "3E5A", source: "Voidwalker" } +175.8 "Doomvoid Cleaver" Ability { id: "3E64", source: "Voidwalker" } +191.2 "Shadowflame" Ability { id: "3E61", source: "Voidwalker" } +203.4 "Entropy" Ability { id: "3E70", source: "Voidwalker" } +208.0 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +224.9 "Flare" Ability { id: "4685", source: "Voidwalker" } +229.3 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +242.5 "Hell Wind" Ability { id: "3E66", source: "Voidwalker" } +248.5 "Punishing Ray" Ability { id: "3E5B", source: "Voidwalker" } +248.9 "Shadoweye" Ability { id: "3E69", source: "Voidwalker" } +260.7 "Shadowflame" Ability { id: "3E61", source: "Voidwalker" } +272.9 "Entropy" Ability { id: "3E70", source: "Voidwalker" } 282.9 "Light/Dark Circles" # ??? -286.4 "Doomvoid Cleaver" sync / 1[56]:[^:]*:Voidwalker:3E64:/ -295.7 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E54:/ -304.1 "Slicer/Guillotine" sync / 1[56]:[^:]*:Voidwalker:(3E4F|3E50):/ -330.3 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E61:/ -342.5 "Entropy" sync / 1[56]:[^:]*:Voidwalker:3E70:/ -348.1 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -358.2 "Empty Hate/Rage" sync / 1[56]:[^:]*:Voidwalker:(3E5A|3E6C):/ -361.4 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -374.7 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -381.6 "Flare" sync / 1[56]:[^:]*:Voidwalker:4685:/ -386.9 "Unholy Darkness" sync / 1[56]:[^:]*:Voidwalker:3E54:/ -399.9 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E61:/ -408.5 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -421.8 "Spell-In-Waiting" sync / 1[56]:[^:]*:Voidwalker:3E52:/ -430.0 "Shadoweye" sync / 1[56]:[^:]*:Voidwalker:3E69:/ -430.0 "Flare" sync / 1[56]:[^:]*:Voidwalker:4685:/ -437.4 "Dark Fire III" sync / 1[56]:[^:]*:Voidwalker:3E57:/ +286.4 "Doomvoid Cleaver" Ability { id: "3E64", source: "Voidwalker" } +295.7 "Unholy Darkness" Ability { id: "3E54", source: "Voidwalker" } +304.1 "Slicer/Guillotine" Ability { id: ["3E4F", "3E50"], source: "Voidwalker" } +330.3 "Shadowflame" Ability { id: "3E61", source: "Voidwalker" } +342.5 "Entropy" Ability { id: "3E70", source: "Voidwalker" } +348.1 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +358.2 "Empty Hate/Rage" Ability { id: ["3E5A", "3E6C"], source: "Voidwalker" } +361.4 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +374.7 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +381.6 "Flare" Ability { id: "4685", source: "Voidwalker" } +386.9 "Unholy Darkness" Ability { id: "3E54", source: "Voidwalker" } +399.9 "Shadowflame" Ability { id: "3E61", source: "Voidwalker" } +408.5 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +421.8 "Spell-In-Waiting" Ability { id: "3E52", source: "Voidwalker" } +430.0 "Shadoweye" Ability { id: "3E69", source: "Voidwalker" } +430.0 "Flare" Ability { id: "4685", source: "Voidwalker" } +437.4 "Dark Fire III" Ability { id: "3E57", source: "Voidwalker" } 445.4 "Light/Dark Circles" # ??? -450.2 "Punishing Ray" sync / 1[56]:[^:]*:Voidwalker:3E5B:/ -455.0 "Doomvoid Cleaver" sync / 1[56]:[^:]*:Voidwalker:3E64:/ -469.4 "Shadowflame" sync / 1[56]:[^:]*:Voidwalker:3E61:/ +450.2 "Punishing Ray" Ability { id: "3E5B", source: "Voidwalker" } +455.0 "Doomvoid Cleaver" Ability { id: "3E64", source: "Voidwalker" } +469.4 "Shadowflame" Ability { id: "3E61", source: "Voidwalker" } # FIXME: I've seen this push ~6s earlier once # but is pretty consistent otherwise? -499.2 "Quietus" sync / 1[56]:[^:]*:Voidwalker:3E71:/ window 500,20 -507.4 "Cycle Of ?" sync / 1[56]:[^:]*:Voidwalker:(40B9|4659):/ -510.5 "Slicer/Guillotine?" sync / 1[56]:[^:]*:Voidwalker:465A:/ -511.2 "Cleaver/Slicer?" sync / 1[56]:[^:]*:Voidwalker:3E64:/ -513.6 "Guillotine/Cleaver?" sync / 1[56]:[^:]*:Voidwalker:465B:/ +499.2 "Quietus" Ability { id: "3E71", source: "Voidwalker" } window 500,20 +507.4 "Cycle Of ?" Ability { id: ["40B9", "4659"], source: "Voidwalker" } +510.5 "Slicer/Guillotine?" Ability { id: "465A", source: "Voidwalker" } +511.2 "Cleaver/Slicer?" Ability { id: "3E64", source: "Voidwalker" } +513.6 "Guillotine/Cleaver?" Ability { id: "465B", source: "Voidwalker" } -531.8 "Cycle Of ?" sync / 1[56]:[^:]*:Voidwalker:(40B9|4659):/ -534.9 "Slicer/Guillotine?" sync / 1[56]:[^:]*:Voidwalker:40BA:/ -538.0 "Cleaver/Slicer?" sync / 1[56]:[^:]*:Voidwalker:40BB:/ -538.7 "Guillotine/Cleaver?" sync / 1[56]:[^:]*:Voidwalker:3E64:/ +531.8 "Cycle Of ?" Ability { id: ["40B9", "4659"], source: "Voidwalker" } +534.9 "Slicer/Guillotine?" Ability { id: "40BA", source: "Voidwalker" } +538.0 "Cleaver/Slicer?" Ability { id: "40BB", source: "Voidwalker" } +538.7 "Guillotine/Cleaver?" Ability { id: "3E64", source: "Voidwalker" } -558.2 "Quietus" sync / 1[56]:[^:]*:Voidwalker:3E71:/ -568.2 "Cycle Of ?" sync / 1[56]:[^:]*:Voidwalker:(40B9|4659):/ -571.3 "Slicer/Guillotine?" sync / 1[56]:[^:]*:Voidwalker:(40BA|465A):/ -574.4 "Cleaver/Slicer?" #sync / 1[56]:[^:]*:Voidwalker:(40BB|3E64):/ -575.1 "Guillotine/Cleaver?" #sync / 1[56]:[^:]*:Voidwalker:(3E64|465B):/ -593.2 "Quietus" sync / 1[56]:[^:]*:Voidwalker:3E71:/ -602.5 "Quietus" sync / 1[56]:[^:]*:Voidwalker:3E71:/ -611.8 "Quietus" sync / 1[56]:[^:]*:Voidwalker:3E71:/ -624.8 "--sync--" sync / 14:[^:]*:Voidwalker:3E73:/ window 700,5 +558.2 "Quietus" Ability { id: "3E71", source: "Voidwalker" } +568.2 "Cycle Of ?" Ability { id: ["40B9", "4659"], source: "Voidwalker" } +571.3 "Slicer/Guillotine?" Ability { id: ["40BA", "465A"], source: "Voidwalker" } +574.4 "Cleaver/Slicer?" #Ability { id: ["40BB", "3E64"], source: "Voidwalker" } +575.1 "Guillotine/Cleaver?" #Ability { id: ["3E64", "465B"], source: "Voidwalker" } +593.2 "Quietus" Ability { id: "3E71", source: "Voidwalker" } +602.5 "Quietus" Ability { id: "3E71", source: "Voidwalker" } +611.8 "Quietus" Ability { id: "3E71", source: "Voidwalker" } +624.8 "--sync--" StartsUsing { id: "3E73", source: "Voidwalker" } window 700,5 629.8 "Quietus Enrage" diff --git a/ui/raidboss/data/05-shb/raid/e3n.txt b/ui/raidboss/data/05-shb/raid/e3n.txt index d428ca382f..1e0f27f430 100644 --- a/ui/raidboss/data/05-shb/raid/e3n.txt +++ b/ui/raidboss/data/05-shb/raid/e3n.txt @@ -5,81 +5,81 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.5 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ window 13,5 -23.5 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FC6:/ -37.7 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:3FC[DE]:/ -47.0 "Drenching Pulse" sync / 1[56]:[^:]*:Leviathan:3FC8:/ -51.1 "Monster Wave" sync / 1[56]:[^:]*:Leviathan:3FCA:/ -55.1 "Freak Wave" sync / 1[56]:[^:]*:Leviathan:3FCB:/ -60.2 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:3FC[DE]:/ -70.4 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ window 30,30 -77.4 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FC6:/ -98.7 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:3FD3:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.5 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } window 13,5 +23.5 "Rip Current" Ability { id: "3FC6", source: "Leviathan" } +37.7 "Temporary Current" Ability { id: "3FC[DE]", source: "Leviathan" } +47.0 "Drenching Pulse" Ability { id: "3FC8", source: "Leviathan" } +51.1 "Monster Wave" Ability { id: "3FCA", source: "Leviathan" } +55.1 "Freak Wave" Ability { id: "3FCB", source: "Leviathan" } +60.2 "Temporary Current" Ability { id: "3FC[DE]", source: "Leviathan" } +70.4 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } window 30,30 +77.4 "Rip Current" Ability { id: "3FC6", source: "Leviathan" } +98.7 "Tidal Wave" Ability { id: "3FD3", source: "Leviathan" } -105.6 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FD0:/ window 105.6,10 -114.8 "Crashing Pulse" sync / 1[56]:[^:]*:Leviathan:3FC9:/ -118.9 "Monster Wave" sync / 1[56]:[^:]*:Leviathan:3FCA:/ -122.9 "Killer Wave" sync / 1[56]:[^:]*:Leviathan:3FCC:/ -128.9 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ -140.0 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:3FC[DE]:/ window 30,30 -162.3 "Tsunami" sync / 1[56]:[^:]*:Leviathan:441B:/ -171.9 "Surging Tsunami" sync / 1[56]:[^:]*:Leviathan:4011:/ -178.9 "Smothering Tsunami" sync / 1[56]:[^:]*:Leviathan:3FD7:/ -184.9 "Splashing Tsunami" sync / 1[56]:[^:]*:Leviathan:3FD6:/ -185.8 "Swirling Tsunami" sync / 1[56]:[^:]*:Leviathan:3FD5:/ -192.8 "Surging Tsunami" sync / 1[56]:[^:]*:Leviathan:4011:/ -203.5 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ window 20,20 +105.6 "Undersea Quake" Ability { id: "3FD0", source: "Leviathan" } window 105.6,10 +114.8 "Crashing Pulse" Ability { id: "3FC9", source: "Leviathan" } +118.9 "Monster Wave" Ability { id: "3FCA", source: "Leviathan" } +122.9 "Killer Wave" Ability { id: "3FCC", source: "Leviathan" } +128.9 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } +140.0 "Temporary Current" Ability { id: "3FC[DE]", source: "Leviathan" } window 30,30 +162.3 "Tsunami" Ability { id: "441B", source: "Leviathan" } +171.9 "Surging Tsunami" Ability { id: "4011", source: "Leviathan" } +178.9 "Smothering Tsunami" Ability { id: "3FD7", source: "Leviathan" } +184.9 "Splashing Tsunami" Ability { id: "3FD6", source: "Leviathan" } +185.8 "Swirling Tsunami" Ability { id: "3FD5", source: "Leviathan" } +192.8 "Surging Tsunami" Ability { id: "4011", source: "Leviathan" } +203.5 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } window 20,20 -216.7 "Maelstrom" sync / 1[56]:[^:]*:Leviathan:3FD8:/ window 216.7,2.5 duration 30 +216.7 "Maelstrom" Ability { id: "3FD8", source: "Leviathan" } window 216.7,2.5 duration 30 218.7 "--untargetable--" -222.0 "--sync--" sync / 1[56]:[^:]*:Leviathan:3F7E:/ -226.9 "Spinning Dive 1" sync / 1[56]:[^:]*:Leviathan:3FDB:/ -229.1 "--sync--" sync / 1[56]:[^:]*:Leviathan:3F7E:/ -234.0 "Spinning Dive 2" sync / 1[56]:[^:]*:Leviathan:3FDB:/ +222.0 "--sync--" Ability { id: "3F7E", source: "Leviathan" } +226.9 "Spinning Dive 1" Ability { id: "3FDB", source: "Leviathan" } +229.1 "--sync--" Ability { id: "3F7E", source: "Leviathan" } +234.0 "Spinning Dive 2" Ability { id: "3FDB", source: "Leviathan" } 240.4 "--targetable--" -248.4 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ -255.4 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FC6:/ window 30,30 -276.8 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:3FD3:/ +248.4 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } +255.4 "Rip Current" Ability { id: "3FC6", source: "Leviathan" } window 30,30 +276.8 "Tidal Wave" Ability { id: "3FD3", source: "Leviathan" } -283.8 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FCF:/ window 300,100 -293.0 "Drenching Pulse" sync / 1[56]:[^:]*:Leviathan:3FC8:/ -297.1 "Monster Wave" sync / 1[56]:[^:]*:Leviathan:3FCA:/ -301.1 "Freak Wave" sync / 1[56]:[^:]*:Leviathan:3FCB:/ -308.2 "Temporary Current 1" sync / 1[56]:[^:]*:Leviathan:3FC[DE]:/ -317.3 "Temporary Current 2" sync / 1[56]:[^:]*:Leviathan:3FC[DE]:/ -332.5 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ -338.6 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ -348.8 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FC6:/ window 30,30 -360.0 "Drenching Pulse" sync / 1[56]:[^:]*:Leviathan:3FC8:/ -364.1 "Monster Wave" sync / 1[56]:[^:]*:Leviathan:3FCA:/ -368.1 "Freak Wave" sync / 1[56]:[^:]*:Leviathan:3FCB:/ +283.8 "Undersea Quake" Ability { id: "3FCF", source: "Leviathan" } window 300,100 +293.0 "Drenching Pulse" Ability { id: "3FC8", source: "Leviathan" } +297.1 "Monster Wave" Ability { id: "3FCA", source: "Leviathan" } +301.1 "Freak Wave" Ability { id: "3FCB", source: "Leviathan" } +308.2 "Temporary Current 1" Ability { id: "3FC[DE]", source: "Leviathan" } +317.3 "Temporary Current 2" Ability { id: "3FC[DE]", source: "Leviathan" } +332.5 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } +338.6 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } +348.8 "Rip Current" Ability { id: "3FC6", source: "Leviathan" } window 30,30 +360.0 "Drenching Pulse" Ability { id: "3FC8", source: "Leviathan" } +364.1 "Monster Wave" Ability { id: "3FCA", source: "Leviathan" } +368.1 "Freak Wave" Ability { id: "3FCB", source: "Leviathan" } -372.1 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FD0:/ window 30,30 -386.3 "Tsunami" sync / 1[56]:[^:]*:Leviathan:441B:/ -395.9 "Surging Tsunami" sync / 1[56]:[^:]*:Leviathan:4011:/ -402.9 "Smothering Tsunami" sync / 1[56]:[^:]*:Leviathan:3FD7:/ -408.8 "Splashing Tsunami" sync / 1[56]:[^:]*:Leviathan:3FD6:/ -409.8 "Swirling Tsunami" sync / 1[56]:[^:]*:Leviathan:3FD5:/ -416.8 "Surging Tsunami" sync / 1[56]:[^:]*:Leviathan:4011:/ -429.4 "Temporary Current 1" sync / 1[56]:[^:]*:Leviathan:3FC[DE]:/ -438.4 "Temporary Current 2" sync / 1[56]:[^:]*:Leviathan:3FC[DE]:/ -449.4 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FC6:/ window 30,30 -455.4 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ -461.4 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ +372.1 "Undersea Quake" Ability { id: "3FD0", source: "Leviathan" } window 30,30 +386.3 "Tsunami" Ability { id: "441B", source: "Leviathan" } +395.9 "Surging Tsunami" Ability { id: "4011", source: "Leviathan" } +402.9 "Smothering Tsunami" Ability { id: "3FD7", source: "Leviathan" } +408.8 "Splashing Tsunami" Ability { id: "3FD6", source: "Leviathan" } +409.8 "Swirling Tsunami" Ability { id: "3FD5", source: "Leviathan" } +416.8 "Surging Tsunami" Ability { id: "4011", source: "Leviathan" } +429.4 "Temporary Current 1" Ability { id: "3FC[DE]", source: "Leviathan" } +438.4 "Temporary Current 2" Ability { id: "3FC[DE]", source: "Leviathan" } +449.4 "Rip Current" Ability { id: "3FC6", source: "Leviathan" } window 30,30 +455.4 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } +461.4 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } -476.4 "Maelstrom" sync / 1[56]:[^:]*:Leviathan:3FD8:/ duration 30 +476.4 "Maelstrom" Ability { id: "3FD8", source: "Leviathan" } duration 30 478.4 "--untargetable--" -481.4 "--sync--" sync / 1[56]:[^:]*:Leviathan:3F7E:/ -486.4 "Spinning Dive 1" sync / 1[56]:[^:]*:Leviathan:3FDB:/ -488.4 "--sync--" sync / 1[56]:[^:]*:Leviathan:3F7E:/ -493.4 "Spinning Dive 2" sync / 1[56]:[^:]*:Leviathan:3FDB:/ +481.4 "--sync--" Ability { id: "3F7E", source: "Leviathan" } +486.4 "Spinning Dive 1" Ability { id: "3FDB", source: "Leviathan" } +488.4 "--sync--" Ability { id: "3F7E", source: "Leviathan" } +493.4 "Spinning Dive 2" Ability { id: "3FDB", source: "Leviathan" } 499.9 "--targetable--" -507.9 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FC4:/ -515.0 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FC6:/ window 30,30 -536.4 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:3FD3:/ +507.9 "Tidal Roar" Ability { id: "3FC4", source: "Leviathan" } +515.0 "Rip Current" Ability { id: "3FC6", source: "Leviathan" } window 30,30 +536.4 "Tidal Wave" Ability { id: "3FD3", source: "Leviathan" } -543.4 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FCF:/ window 100,100 jump 283.8 +543.4 "Undersea Quake" Ability { id: "3FCF", source: "Leviathan" } window 100,100 jump 283.8 552.6 "Drenching Pulse" 556.7 "Monster Wave" 560.7 "Freak Wave" diff --git a/ui/raidboss/data/05-shb/raid/e3s.txt b/ui/raidboss/data/05-shb/raid/e3s.txt index 793c86dd6a..f6415e8855 100644 --- a/ui/raidboss/data/05-shb/raid/e3s.txt +++ b/ui/raidboss/data/05-shb/raid/e3s.txt @@ -6,92 +6,92 @@ hideall "--Reset--" hideall "--sync--" 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.8 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FDC:/ window 13,10 -23.9 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FE0:/ -43.3 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FEF:/ -46.1 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:3FF2:/ -52.4 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -61.6 "Drenching Pulse" sync / 1[56]:[^:]*:Leviathan:3FE2:/ -65.7 "Monster Wave" sync / 1[56]:[^:]*:Leviathan:3FE5:/ -69.7 "Freak Wave" sync / 1[56]:[^:]*:Leviathan:3FE6:/ -73.7 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -87.9 "Maelstrom" sync / 1[56]:[^:]*:Leviathan:3FFA:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.8 "Tidal Roar" Ability { id: "3FDC", source: "Leviathan" } window 13,10 +23.9 "Rip Current" Ability { id: "3FE0", source: "Leviathan" } +43.3 "Undersea Quake" Ability { id: "3FEF", source: "Leviathan" } +46.1 "Tidal Wave" Ability { id: "3FF2", source: "Leviathan" } +52.4 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +61.6 "Drenching Pulse" Ability { id: "3FE2", source: "Leviathan" } +65.7 "Monster Wave" Ability { id: "3FE5", source: "Leviathan" } +69.7 "Freak Wave" Ability { id: "3FE6", source: "Leviathan" } +73.7 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +87.9 "Maelstrom" Ability { id: "3FFA", source: "Leviathan" } 90.0 "--untargetable--" -99.3 "Spinning Dive 1" #sync / 1[56]:[^:]*:Leviathan:3FFD:/ -101.3 "Spinning Dive 2" #sync / 1[56]:[^:]*:Leviathan:3FFD:/ +99.3 "Spinning Dive 1" #Ability { id: "3FFD", source: "Leviathan" } +101.3 "Spinning Dive 2" #Ability { id: "3FFD", source: "Leviathan" } 106.0 "--targetable--" -111.5 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FDC:/ -127.8 "Tsunami" sync / 1[56]:[^:]*:Leviathan:3FF3:/ -132.8 "Tsunami" sync / 1[56]:[^:]*:Leviathan:441C:/ -141.4 "Sundering Tsunami" sync / 1[56]:[^:]*:Leviathan:3FF6:/ -146.1 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FEE:/ -158.4 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -158.4 "Smothering Tsunami" sync / 1[56]:[^:]*:Leviathan:3FF7:/ -158.4 "Swirling Tsunami" sync / 1[56]:[^:]*:Leviathan:3FF4:/ -168.7 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FDC:/ -175.9 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FE0:/ -186.1 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -197.3 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:3FDC:/ -210.4 "Refreshing Shower" sync / 1[56]:[^:]*:Leviathan:400F:/ -223.6 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:3FDE:/ -235.9 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FEF:/ -238.9 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:3FF2:/ -246.0 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -250.1 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEC|3FED):/ -256.2 "Drenching Pulse" sync / 1[56]:[^:]*:Leviathan:3FE2:/ -260.3 "Monster Wave" sync / 1[56]:[^:]*:Leviathan:3FE9:/ -264.3 "Freak Wave" sync / 1[56]:[^:]*:Leviathan:3FE6:/ -269.4 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -273.5 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEC|3FED):/ -287.8 "Maelstrom" sync / 1[56]:[^:]*:Leviathan:3FFA:/ +111.5 "Tidal Roar" Ability { id: "3FDC", source: "Leviathan" } +127.8 "Tsunami" Ability { id: "3FF3", source: "Leviathan" } +132.8 "Tsunami" Ability { id: "441C", source: "Leviathan" } +141.4 "Sundering Tsunami" Ability { id: "3FF6", source: "Leviathan" } +146.1 "Undersea Quake" Ability { id: "3FEE", source: "Leviathan" } +158.4 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +158.4 "Smothering Tsunami" Ability { id: "3FF7", source: "Leviathan" } +158.4 "Swirling Tsunami" Ability { id: "3FF4", source: "Leviathan" } +168.7 "Tidal Roar" Ability { id: "3FDC", source: "Leviathan" } +175.9 "Rip Current" Ability { id: "3FE0", source: "Leviathan" } +186.1 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +197.3 "Tidal Roar" Ability { id: "3FDC", source: "Leviathan" } +210.4 "Refreshing Shower" Ability { id: "400F", source: "Leviathan" } +223.6 "Tidal Rage" Ability { id: "3FDE", source: "Leviathan" } +235.9 "Undersea Quake" Ability { id: "3FEF", source: "Leviathan" } +238.9 "Tidal Wave" Ability { id: "3FF2", source: "Leviathan" } +246.0 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +250.1 "Temporary Current" Ability { id: ["3FEC", "3FED"], source: "Leviathan" } +256.2 "Drenching Pulse" Ability { id: "3FE2", source: "Leviathan" } +260.3 "Monster Wave" Ability { id: "3FE9", source: "Leviathan" } +264.3 "Freak Wave" Ability { id: "3FE6", source: "Leviathan" } +269.4 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +273.5 "Temporary Current" Ability { id: ["3FEC", "3FED"], source: "Leviathan" } +287.8 "Maelstrom" Ability { id: "3FFA", source: "Leviathan" } 290.0 "--untargetable--" -301.2 "Spinning Dive 1" #sync / 1[56]:[^:]*:Leviathan:3FFD:/ -303.1 "Spinning Dive 2" #sync / 1[56]:[^:]*:Leviathan:3FFD:/ -305.1 "Spinning Dive 3" #sync / 1[56]:[^:]*:Leviathan:3FFD:/ +301.2 "Spinning Dive 1" #Ability { id: "3FFD", source: "Leviathan" } +303.1 "Spinning Dive 2" #Ability { id: "3FFD", source: "Leviathan" } +305.1 "Spinning Dive 3" #Ability { id: "3FFD", source: "Leviathan" } 310.0 "--targetable--" -316.4 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:3FDE:/ -323.5 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FE0:/ -339.7 "Stormy Horizon" sync / 1[56]:[^:]*:Leviathan:3FFE:/ -346.8 "Monster Wave x4" duration 6 #sync / 1[56]:[^:]*:Leviathan:3FE9:/ -352.8 "Backbreaking Wave" sync / 1[56]:[^:]*:Leviathan:4001:/ -353.9 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -358.1 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEC|3FED):/ -363.0 "Plunging Wave x5" duration 4.4 #sync / 1[56]:[^:]*:Leviathan:4003:/ -373.2 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:3FDE:/ -383.5 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:3FDE:/ -402.3 "Drenching Pulse" sync / 1[56]:[^:]*:Leviathan:3FE2:/ -406.4 "Monster Wave" sync / 1[56]:[^:]*:Leviathan:3FE9:/ -410.4 "Freak Wave" sync / 1[56]:[^:]*:Leviathan:3FE6:/ -413.4 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FEF:/ -422.6 "Tsunami" sync / 1[56]:[^:]*:Leviathan:3FF3:/ -427.6 "Tsunami" sync / 1[56]:[^:]*:Leviathan:441C:/ -436.1 "Surging Tsunami" sync / 1[56]:[^:]*:Leviathan:3FF8:/ -441.1 "Smothering Tsunami" sync / 1[56]:[^:]*:Leviathan:3FF7:/ -443.1 "Sweeping Tsunami" sync / 1[56]:[^:]*:Leviathan:3FF5:/ -449.2 "Sundering Tsunami" #sync / 1[56]:[^:]*:Leviathan:3FF6:/ -453.2 "Sundering Tsunami" #sync / 1[56]:[^:]*:Leviathan:3FF6:/ -457.1 "Scouring Tsunami" sync / 1[56]:[^:]*:Leviathan:3CE0:/ -466.8 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -470.9 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEC|3FED):/ -483.1 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:3FDE:/ -493.2 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:3FDE:/ -500.3 "Rip Current" sync / 1[56]:[^:]*:Leviathan:3FE0:/ -516.5 "Roiling Pulse" sync / 1[56]:[^:]*:Leviathan:3FE4:/ -520.6 "Monster Wave" sync / 1[56]:[^:]*:Leviathan:3FE9:/ -524.6 "Breaking Wave" sync / 1[56]:[^:]*:Leviathan:3FE8:/ -524.6 "Killer Wave" sync / 1[56]:[^:]*:Leviathan:3FE7:/ -525.7 "Undersea Quake" sync / 1[56]:[^:]*:Leviathan:3FEE:/ -534.9 "Black Smokers" sync / 1[56]:[^:]*:Leviathan:4007:/ -536.9 "Spilling Wave x12" duration 15 #sync / 1[56]:[^:]*:Leviathan:4008:/ -540.9 "Hydrothermal Vent x4" duration 9 #sync / 1[56]:[^:]*:Leviathan:4004:/ -544.4 "Hot Water x5" duration 9 #sync / 1[56]:[^:]*:Leviathan:4005:/ -561.9 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEB|3FEA):/ -565.9 "Temporary Current" sync / 1[56]:[^:]*:Leviathan:(3FEC|3FED):/ -576.9 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:3FDE:/ -587.9 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:3FDE:/ -604.9 "The Calm" sync / 1[56]:[^:]*:Leviathan:4009:/ -617.9 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:400B:/ -625.9 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:400B:/ -633.9 "Tidal Rage" sync / 1[56]:[^:]*:Leviathan:400B:/ -654.9 "The Storm" sync / 1[56]:[^:]*:Leviathan:400D:/ +316.4 "Tidal Rage" Ability { id: "3FDE", source: "Leviathan" } +323.5 "Rip Current" Ability { id: "3FE0", source: "Leviathan" } +339.7 "Stormy Horizon" Ability { id: "3FFE", source: "Leviathan" } +346.8 "Monster Wave x4" duration 6 #Ability { id: "3FE9", source: "Leviathan" } +352.8 "Backbreaking Wave" Ability { id: "4001", source: "Leviathan" } +353.9 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +358.1 "Temporary Current" Ability { id: ["3FEC", "3FED"], source: "Leviathan" } +363.0 "Plunging Wave x5" duration 4.4 #Ability { id: "4003", source: "Leviathan" } +373.2 "Tidal Rage" Ability { id: "3FDE", source: "Leviathan" } +383.5 "Tidal Rage" Ability { id: "3FDE", source: "Leviathan" } +402.3 "Drenching Pulse" Ability { id: "3FE2", source: "Leviathan" } +406.4 "Monster Wave" Ability { id: "3FE9", source: "Leviathan" } +410.4 "Freak Wave" Ability { id: "3FE6", source: "Leviathan" } +413.4 "Undersea Quake" Ability { id: "3FEF", source: "Leviathan" } +422.6 "Tsunami" Ability { id: "3FF3", source: "Leviathan" } +427.6 "Tsunami" Ability { id: "441C", source: "Leviathan" } +436.1 "Surging Tsunami" Ability { id: "3FF8", source: "Leviathan" } +441.1 "Smothering Tsunami" Ability { id: "3FF7", source: "Leviathan" } +443.1 "Sweeping Tsunami" Ability { id: "3FF5", source: "Leviathan" } +449.2 "Sundering Tsunami" #Ability { id: "3FF6", source: "Leviathan" } +453.2 "Sundering Tsunami" #Ability { id: "3FF6", source: "Leviathan" } +457.1 "Scouring Tsunami" Ability { id: "3CE0", source: "Leviathan" } +466.8 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +470.9 "Temporary Current" Ability { id: ["3FEC", "3FED"], source: "Leviathan" } +483.1 "Tidal Rage" Ability { id: "3FDE", source: "Leviathan" } +493.2 "Tidal Rage" Ability { id: "3FDE", source: "Leviathan" } +500.3 "Rip Current" Ability { id: "3FE0", source: "Leviathan" } +516.5 "Roiling Pulse" Ability { id: "3FE4", source: "Leviathan" } +520.6 "Monster Wave" Ability { id: "3FE9", source: "Leviathan" } +524.6 "Breaking Wave" Ability { id: "3FE8", source: "Leviathan" } +524.6 "Killer Wave" Ability { id: "3FE7", source: "Leviathan" } +525.7 "Undersea Quake" Ability { id: "3FEE", source: "Leviathan" } +534.9 "Black Smokers" Ability { id: "4007", source: "Leviathan" } +536.9 "Spilling Wave x12" duration 15 #Ability { id: "4008", source: "Leviathan" } +540.9 "Hydrothermal Vent x4" duration 9 #Ability { id: "4004", source: "Leviathan" } +544.4 "Hot Water x5" duration 9 #Ability { id: "4005", source: "Leviathan" } +561.9 "Temporary Current" Ability { id: ["3FEB", "3FEA"], source: "Leviathan" } +565.9 "Temporary Current" Ability { id: ["3FEC", "3FED"], source: "Leviathan" } +576.9 "Tidal Rage" Ability { id: "3FDE", source: "Leviathan" } +587.9 "Tidal Rage" Ability { id: "3FDE", source: "Leviathan" } +604.9 "The Calm" Ability { id: "4009", source: "Leviathan" } +617.9 "Tidal Rage" Ability { id: "400B", source: "Leviathan" } +625.9 "Tidal Rage" Ability { id: "400B", source: "Leviathan" } +633.9 "Tidal Rage" Ability { id: "400B", source: "Leviathan" } +654.9 "The Storm" Ability { id: "400D", source: "Leviathan" } diff --git a/ui/raidboss/data/05-shb/raid/e4n.txt b/ui/raidboss/data/05-shb/raid/e4n.txt index 3a07ff9513..d51b5bd03a 100644 --- a/ui/raidboss/data/05-shb/raid/e4n.txt +++ b/ui/raidboss/data/05-shb/raid/e4n.txt @@ -16,54 +16,54 @@ hideall "Earthen Wheels" ### Phase 1 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -13.0 "Voice Of The Land" sync / 1[56]:[^:]*:Titan:40F7:/ window 13,8 -21.3 "Evil Earth" sync / 1[56]:[^:]*:Titan:40EE:/ -30.5 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:40EA:/ -41.6 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -54.0 "Crumbling Down" sync / 1[56]:[^:]*:Massive Boulder:40F2:/ -66.0 "Seismic Wave" sync / 1[56]:[^:]*:Titan:40F3:/ -79.3 "Geocrush" sync / 1[56]:[^:]*:Titan:40F6:/ -83.2 "Earthen Gauntlets" sync / 1[56]:[^:]*:Titan:40E6:/ -91.3 "Massive Landslide" sync / 1[56]:[^:]*:Titan:40FA:/ -97.1 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E7:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +13.0 "Voice Of The Land" Ability { id: "40F7", source: "Titan" } window 13,8 +21.3 "Evil Earth" Ability { id: "40EE", source: "Titan" } +30.5 "Weight Of The Land" Ability { id: "40EA", source: "Titan" } +41.6 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +54.0 "Crumbling Down" Ability { id: "40F2", source: "Massive Boulder" } +66.0 "Seismic Wave" Ability { id: "40F3", source: "Titan" } +79.3 "Geocrush" Ability { id: "40F6", source: "Titan" } +83.2 "Earthen Gauntlets" Ability { id: "40E6", source: "Titan" } +91.3 "Massive Landslide" Ability { id: "40FA", source: "Titan" } +97.1 "Earthen Armor" Ability { id: "40E7", source: "Titan" } ### Phase 2 -109.1 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -115.2 "Bomb Boulders" sync / 1[56]:[^:]*:Titan:40EC:/ -116.2 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -122.1 "Cobalt Bomb" sync / 1[56]:[^:]*:Titan:40F4:/ -129.3 "Explosion" sync / 1[56]:[^:]*:Bomb Boulder:40F5:/ -137.3 "Voice Of The Land" sync / 1[56]:[^:]*:Titan:40F7:/ -149.7 "Geocrush" sync / 1[56]:[^:]*:Titan:40F6:/ -153.6 "Earthen Wheels" sync / 1[56]:[^:]*:Titan:40E8:/ -161.7 "Fault Zone" sync / 1[56]:[^:]*:Titan:4102:/ -163.9 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E9:/ +109.1 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +115.2 "Bomb Boulders" Ability { id: "40EC", source: "Titan" } +116.2 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +122.1 "Cobalt Bomb" Ability { id: "40F4", source: "Titan" } +129.3 "Explosion" Ability { id: "40F5", source: "Bomb Boulder" } +137.3 "Voice Of The Land" Ability { id: "40F7", source: "Titan" } +149.7 "Geocrush" Ability { id: "40F6", source: "Titan" } +153.6 "Earthen Wheels" Ability { id: "40E8", source: "Titan" } +161.7 "Fault Zone" Ability { id: "4102", source: "Titan" } +163.9 "Earthen Armor" Ability { id: "40E9", source: "Titan" } ### Phase 3 -182.0 "Earthen Fury" sync / 1[56]:[^:]*:Titan:40F8:/ -197.2 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -203.4 "Bomb Boulders" sync / 1[56]:[^:]*:Titan:40EC:/ -204.5 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -206.5 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -208.5 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -209.9 "Cobalt Bomb" sync / 1[56]:[^:]*:Titan:40F4:/ -217.4 "Explosion" sync / 1[56]:[^:]*:Bomb Boulder:40F5:/ -221.2 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:40EA:/ -231.3 "Voice Of The Land" sync / 1[56]:[^:]*:Titan:40F7:/ -244.6 "Crumbling Down" sync / 1[56]:[^:]*:Massive Boulder:40F2:/ -245.7 "Evil Earth" sync / 1[56]:[^:]*:Titan:40EE:/ -256.8 "Seismic Wave" sync / 1[56]:[^:]*:Titan:40F3:/ +182.0 "Earthen Fury" Ability { id: "40F8", source: "Titan" } +197.2 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +203.4 "Bomb Boulders" Ability { id: "40EC", source: "Titan" } +204.5 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +206.5 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +208.5 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +209.9 "Cobalt Bomb" Ability { id: "40F4", source: "Titan" } +217.4 "Explosion" Ability { id: "40F5", source: "Bomb Boulder" } +221.2 "Weight Of The Land" Ability { id: "40EA", source: "Titan" } +231.3 "Voice Of The Land" Ability { id: "40F7", source: "Titan" } +244.6 "Crumbling Down" Ability { id: "40F2", source: "Massive Boulder" } +245.7 "Evil Earth" Ability { id: "40EE", source: "Titan" } +256.8 "Seismic Wave" Ability { id: "40F3", source: "Titan" } ### Phase 4A or Phase 6B? -267.0 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -274.3 "Geocrush" sync / 1[56]:[^:]*:Titan:40F6:/ +267.0 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +274.3 "Geocrush" Ability { id: "40F6", source: "Titan" } -278.1 "Earthen Gauntlets" sync / 1[56]:[^:]*:Titan:40E6:/ window 30,30 jump 1278.1 -278.1 "Earthen Wheels" sync / 1[56]:[^:]*:Titan:40E8:/ window 30,30 jump 2278.1 +278.1 "Earthen Gauntlets" Ability { id: "40E6", source: "Titan" } window 30,30 jump 1278.1 +278.1 "Earthen Wheels" Ability { id: "40E8", source: "Titan" } window 30,30 jump 2278.1 286.2 "Massive Landslide?" 288.2 "Fault Zone?" @@ -77,55 +77,55 @@ hideall "Earthen Wheels" ### Phase 4A -1267.0 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -1274.3 "Geocrush" sync / 1[56]:[^:]*:Titan:40F6:/ -1278.1 "Earthen Gauntlets" sync / 1[56]:[^:]*:Titan:40E6:/ -1286.2 "Massive Landslide" sync / 1[56]:[^:]*:Titan:40FA:/ -1300.8 "Left/Right Landslide" sync / 1[56]:[^:]*:Titan:(40FF|4100):/ -1315.4 "Left/Right Landslide" sync / 1[56]:[^:]*:Titan:(40FF|4100):/ -1324.1 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E7:/ +1267.0 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +1274.3 "Geocrush" Ability { id: "40F6", source: "Titan" } +1278.1 "Earthen Gauntlets" Ability { id: "40E6", source: "Titan" } +1286.2 "Massive Landslide" Ability { id: "40FA", source: "Titan" } +1300.8 "Left/Right Landslide" Ability { id: ["40FF", "4100"], source: "Titan" } +1315.4 "Left/Right Landslide" Ability { id: ["40FF", "4100"], source: "Titan" } +1324.1 "Earthen Armor" Ability { id: "40E7", source: "Titan" } ### Phase 5A -1339.3 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -1345.5 "Bomb Boulders" sync / 1[56]:[^:]*:Titan:40EC:/ -1346.5 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -1350.6 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -1361.9 "Evil Earth" sync / 1[56]:[^:]*:Titan:40EE:/ -1373.0 "Voice Of The Land" sync / 1[56]:[^:]*:Titan:40F7:/ -1382.3 "Evil Earth" sync / 1[56]:[^:]*:Titan:40EE:/ -1392.5 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:40EA:/ +1339.3 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +1345.5 "Bomb Boulders" Ability { id: "40EC", source: "Titan" } +1346.5 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +1350.6 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +1361.9 "Evil Earth" Ability { id: "40EE", source: "Titan" } +1373.0 "Voice Of The Land" Ability { id: "40F7", source: "Titan" } +1382.3 "Evil Earth" Ability { id: "40EE", source: "Titan" } +1392.5 "Weight Of The Land" Ability { id: "40EA", source: "Titan" } ### Phase 6A -1402.6 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -1411.9 "Geocrush" sync / 1[56]:[^:]*:Titan:40F6:/ -1415.6 "Earthen Wheels" sync / 1[56]:[^:]*:Titan:40E8:/ -1423.8 "Fault Zone" sync / 1[56]:[^:]*:Titan:4102:/ -1431.4 "Fault Zone" sync / 1[56]:[^:]*:Titan:4102:/ -1439.0 "Fault Zone" sync / 1[56]:[^:]*:Titan:4102:/ -1447.0 "Magnitude 5.0" sync / 1[56]:[^:]*:Titan:4104:/ -1450.2 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E9:/ +1402.6 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +1411.9 "Geocrush" Ability { id: "40F6", source: "Titan" } +1415.6 "Earthen Wheels" Ability { id: "40E8", source: "Titan" } +1423.8 "Fault Zone" Ability { id: "4102", source: "Titan" } +1431.4 "Fault Zone" Ability { id: "4102", source: "Titan" } +1439.0 "Fault Zone" Ability { id: "4102", source: "Titan" } +1447.0 "Magnitude 5.0" Ability { id: "4104", source: "Titan" } +1450.2 "Earthen Armor" Ability { id: "40E9", source: "Titan" } ### Phase 3A Redux -1463.3 "Earthen Fury" sync / 1[56]:[^:]*:Titan:40F8:/ -1478.4 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -1484.6 "Bomb Boulders" sync / 1[56]:[^:]*:Titan:40EC:/ -1485.5 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -1487.5 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -1489.5 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -1491.0 "Cobalt Bomb" sync / 1[56]:[^:]*:Titan:40F4:/ -1498.6 "Explosion" sync / 1[56]:[^:]*:Bomb Boulder:40F5:/ -1502.2 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:40EA:/ -1512.3 "Voice Of The Land" sync / 1[56]:[^:]*:Titan:40F7:/ -1525.6 "Crumbling Down" sync / 1[56]:[^:]*:Massive Boulder:40F2:/ -1526.8 "Evil Earth" sync / 1[56]:[^:]*:Titan:40EE:/ -1537.9 "Seismic Wave" sync / 1[56]:[^:]*:Titan:40F3:/ +1463.3 "Earthen Fury" Ability { id: "40F8", source: "Titan" } +1478.4 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +1484.6 "Bomb Boulders" Ability { id: "40EC", source: "Titan" } +1485.5 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +1487.5 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +1489.5 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +1491.0 "Cobalt Bomb" Ability { id: "40F4", source: "Titan" } +1498.6 "Explosion" Ability { id: "40F5", source: "Bomb Boulder" } +1502.2 "Weight Of The Land" Ability { id: "40EA", source: "Titan" } +1512.3 "Voice Of The Land" Ability { id: "40F7", source: "Titan" } +1525.6 "Crumbling Down" Ability { id: "40F2", source: "Massive Boulder" } +1526.8 "Evil Earth" Ability { id: "40EE", source: "Titan" } +1537.9 "Seismic Wave" Ability { id: "40F3", source: "Titan" } ### Phase 4A loop -1548.0 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 50,50 jump 1267 +1548.0 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 50,50 jump 1267 1555.2 "Geocrush" 1559.0 "Earthen Gauntlets" 1567.2 "Massive Landslide" @@ -137,55 +137,55 @@ hideall "Earthen Wheels" ### Phase 6B -2267.0 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -2274.3 "Geocrush" sync / 1[56]:[^:]*:Titan:40F6:/ -2278.1 "Earthen Wheels" sync / 1[56]:[^:]*:Titan:40E8:/ -2286.2 "Fault Zone" sync / 1[56]:[^:]*:Titan:4102:/ -2293.8 "Fault Zone" sync / 1[56]:[^:]*:Titan:4102:/ -2301.4 "Fault Zone" sync / 1[56]:[^:]*:Titan:4102:/ -2309.4 "Magnitude 5.0" sync / 1[56]:[^:]*:Titan:4104:/ -2312.6 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E9:/ +2267.0 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +2274.3 "Geocrush" Ability { id: "40F6", source: "Titan" } +2278.1 "Earthen Wheels" Ability { id: "40E8", source: "Titan" } +2286.2 "Fault Zone" Ability { id: "4102", source: "Titan" } +2293.8 "Fault Zone" Ability { id: "4102", source: "Titan" } +2301.4 "Fault Zone" Ability { id: "4102", source: "Titan" } +2309.4 "Magnitude 5.0" Ability { id: "4104", source: "Titan" } +2312.6 "Earthen Armor" Ability { id: "40E9", source: "Titan" } ### Phase 5B -2329.4 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -2335.4 "Bomb Boulders" sync / 1[56]:[^:]*:Titan:40EC:/ -2336.4 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -2340.4 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -2351.5 "Evil Earth" sync / 1[56]:[^:]*:Titan:40EE:/ -2362.4 "Voice Of The Land" sync / 1[56]:[^:]*:Titan:40F7:/ -2371.5 "Evil Earth" sync / 1[56]:[^:]*:Titan:40EE:/ -2381.5 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:40EA:/ +2329.4 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +2335.4 "Bomb Boulders" Ability { id: "40EC", source: "Titan" } +2336.4 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +2340.4 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +2351.5 "Evil Earth" Ability { id: "40EE", source: "Titan" } +2362.4 "Voice Of The Land" Ability { id: "40F7", source: "Titan" } +2371.5 "Evil Earth" Ability { id: "40EE", source: "Titan" } +2381.5 "Weight Of The Land" Ability { id: "40EA", source: "Titan" } ### Phase 4B -2391.4 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -2400.4 "Geocrush" sync / 1[56]:[^:]*:Titan:40F6:/ -2404.2 "Earthen Gauntlets" sync / 1[56]:[^:]*:Titan:40E6:/ -2412.3 "Massive Landslide" sync / 1[56]:[^:]*:Titan:40FA:/ -2426.9 "Left/Right Landslide" sync / 1[56]:[^:]*:Titan:(40FF|4100):/ -2441.5 "Left/Right Landslide" sync / 1[56]:[^:]*:Titan:(40FF|4100):/ -2450.1 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E7:/ +2391.4 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +2400.4 "Geocrush" Ability { id: "40F6", source: "Titan" } +2404.2 "Earthen Gauntlets" Ability { id: "40E6", source: "Titan" } +2412.3 "Massive Landslide" Ability { id: "40FA", source: "Titan" } +2426.9 "Left/Right Landslide" Ability { id: ["40FF", "4100"], source: "Titan" } +2441.5 "Left/Right Landslide" Ability { id: ["40FF", "4100"], source: "Titan" } +2450.1 "Earthen Armor" Ability { id: "40E7", source: "Titan" } ### Phase 3B Redux -2461.2 "Earthen Fury" sync / 1[56]:[^:]*:Titan:40F8:/ -2476.2 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 30,30 -2482.8 "Bomb Boulders" sync / 1[56]:[^:]*:Titan:40EC:/ -2483.8 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -2485.8 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -2487.8 "Bury" #sync / 1[56]:[^:]*:Bomb Boulder:4141:/ -2489.4 "Cobalt Bomb" sync / 1[56]:[^:]*:Titan:40F4:/ -2496.8 "Explosion" sync / 1[56]:[^:]*:Bomb Boulder:40F5:/ -2500.6 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:40EA:/ -2510.5 "Voice Of The Land" sync / 1[56]:[^:]*:Titan:40F7:/ -2523.5 "Crumbling Down" sync / 1[56]:[^:]*:Massive Boulder:40F2:/ -2524.6 "Evil Earth" sync / 1[56]:[^:]*:Titan:40EE:/ -2535.5 "Seismic Wave" sync / 1[56]:[^:]*:Titan:40F3:/ +2461.2 "Earthen Fury" Ability { id: "40F8", source: "Titan" } +2476.2 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 30,30 +2482.8 "Bomb Boulders" Ability { id: "40EC", source: "Titan" } +2483.8 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +2485.8 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +2487.8 "Bury" #Ability { id: "4141", source: "Bomb Boulder" } +2489.4 "Cobalt Bomb" Ability { id: "40F4", source: "Titan" } +2496.8 "Explosion" Ability { id: "40F5", source: "Bomb Boulder" } +2500.6 "Weight Of The Land" Ability { id: "40EA", source: "Titan" } +2510.5 "Voice Of The Land" Ability { id: "40F7", source: "Titan" } +2523.5 "Crumbling Down" Ability { id: "40F2", source: "Massive Boulder" } +2524.6 "Evil Earth" Ability { id: "40EE", source: "Titan" } +2535.5 "Seismic Wave" Ability { id: "40F3", source: "Titan" } ### Phase 6B Loop -2545.5 "Stonecrusher" sync / 1[56]:[^:]*:Titan:40F9:/ window 50,50 jump 2267 +2545.5 "Stonecrusher" Ability { id: "40F9", source: "Titan" } window 50,50 jump 2267 2554.8 "Geocrush" 2558.5 "Earthen Wheels" 2566.7 "Fault Zone" diff --git a/ui/raidboss/data/05-shb/raid/e4s.ts b/ui/raidboss/data/05-shb/raid/e4s.ts index 3dc9747983..bed0ee460b 100644 --- a/ui/raidboss/data/05-shb/raid/e4s.ts +++ b/ui/raidboss/data/05-shb/raid/e4s.ts @@ -72,7 +72,10 @@ const triggerSet: TriggerSet = { outputStrings: { text: { en: 'Yellow Spread', + de: 'Gelb Verteilen', + fr: 'Dispersion des jaunes', cn: '黄标分散', + ko: '노란색 산개', }, }, }, @@ -102,7 +105,10 @@ const triggerSet: TriggerSet = { outputStrings: { text: { en: 'Orange Stack', + de: 'Orange Sammeln', + fr: 'Package des oranges', cn: '橙标分摊', + ko: '주황색 쉐어', }, }, }, @@ -363,7 +369,10 @@ const triggerSet: TriggerSet = { outputStrings: { text: { en: 'Blue Weight', + de: 'Blau Gewicht', + fr: 'Poids bleu', cn: '蓝标大陆之重', + ko: '파란징 대륙의 무게', }, }, }, @@ -412,7 +421,10 @@ const triggerSet: TriggerSet = { outputStrings: { text: { en: 'Gaol on YOU (w/${player})', + de: 'Gefängnis auf DIR (mit ${player})', + fr: 'Geôle sur VOUS (avec ${player})', cn: '石牢点名 (与${player})', + ko: '돌감옥 대상자 (+${player})', }, }, }, @@ -433,11 +445,11 @@ const triggerSet: TriggerSet = { outputStrings: { leftOrBack: { en: 'Left (or Back)', - de: 'VON VORNE RECHTS RUNTER', // FIXME - fr: 'PARTEZ DE L\'AVANT DROITE', // FIXME + de: 'Links (oder Hinten)', + fr: 'Gauche (ou Arrière)', ja: '右前壊れるよ', // FIXME cn: '左 (或 后)', - ko: '앞 오른쪽 피하기', // FIXME + ko: '왼쪽 (또는 뒤)', }, left: Outputs.left, back: Outputs.back, @@ -460,11 +472,11 @@ const triggerSet: TriggerSet = { outputStrings: { leftOrFront: { en: 'Left (or Front)', - de: 'VON HINTEN RECHTS RUNTER', // FIXME - fr: 'PARTEZ DE L\'ARRIÈRE DROITE', // FIXME + de: 'Links (oder Vorne)', + fr: 'Gauche (ou Devant)', ja: '右後ろ壊れるよ', // FIXME cn: '左 (或 前)', - ko: '뒤 오른쪽 피하기', // FIXME + ko: '왼쪽 (또는 앞)', }, left: Outputs.left, front: Outputs.front, @@ -487,11 +499,11 @@ const triggerSet: TriggerSet = { outputStrings: { frontOrRight: { en: 'Right (or Front)', - de: 'VON HINTEN LINKS RUNTER', // FIXME - fr: 'PARTEZ DE L\'ARRIÈRE GAUCHE', // FIXME + de: 'Rechts (oder Vorne)', + fr: 'Droite (ou Devant)', ja: '左後ろ壊れるよ', // FIXME cn: '右 (或 前)', - ko: '뒤 왼쪽 피하기', // FIXME + ko: '오른쪽 (또는 앞)', }, right: Outputs.right, front: Outputs.front, @@ -514,11 +526,11 @@ const triggerSet: TriggerSet = { outputStrings: { backOrRight: { en: 'Right (or Back)', - de: 'VON VORNE LINKS RUNTER', // FIXME - fr: 'PARTEZ DE L\'AVANT GAUCHE', // FIXME + de: 'Rechts (oder Hinten)', + fr: 'Droite (ou Arrière)', ja: '左前壊れるよ', // FIXME cn: '右 (或 后)', - ko: '앞 왼쪽 피하기', // FIXME + ko: '오른쪽 (또는 뒤)', }, right: Outputs.right, back: Outputs.back, diff --git a/ui/raidboss/data/05-shb/raid/e4s.txt b/ui/raidboss/data/05-shb/raid/e4s.txt index 3e01e27c00..347d42b7ce 100644 --- a/ui/raidboss/data/05-shb/raid/e4s.txt +++ b/ui/raidboss/data/05-shb/raid/e4s.txt @@ -9,136 +9,136 @@ hideall "Earthen Gauntlets" hideall "Earthen Wheels" ### Warmup -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.0 "--sync--" sync / 14:[^:]*:Titan:4116:/ window 11,5 -16.0 "Stonecrusher 1" sync / 1[56]:[^:]*:Titan:4116:/ -19.1 "Stonecrusher 2" #sync / 1[56]:[^:]*:Titan:4143:/ -22.1 "Stonecrusher 3" #sync / 1[56]:[^:]*:Titan:4143:/ -34.2 "Weight of the Land" sync / 1[56]:[^:]*:Titan:4108:/ -37.2 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -39.5 "Evil Earth" sync / 1[56]:[^:]*:Titan:410B:/ -48.4 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -54.6 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -66.8 "Geocrush" sync / 1[56]:[^:]*:Titan:4113:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.0 "--sync--" StartsUsing { id: "4116", source: "Titan" } window 11,5 +16.0 "Stonecrusher 1" Ability { id: "4116", source: "Titan" } +19.1 "Stonecrusher 2" #Ability { id: "4143", source: "Titan" } +22.1 "Stonecrusher 3" #Ability { id: "4143", source: "Titan" } +34.2 "Weight of the Land" Ability { id: "4108", source: "Titan" } +37.2 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +39.5 "Evil Earth" Ability { id: "410B", source: "Titan" } +48.4 "Force of the Land" Ability { id: "4107", source: "Titan" } +54.6 "Voice of the Land" Ability { id: "4114", source: "Titan" } +66.8 "Geocrush" Ability { id: "4113", source: "Titan" } 70.5 "Earthen Wheels/Gauntlets?" -70.5 "--sync--" sync / 1[56]:[^:]*:Titan:40E8:/ window 100,100 jump 270.5 -70.5 "--sync--" sync / 1[56]:[^:]*:Titan:40E6:/ window 100,100 jump 570.5 +70.5 "--sync--" Ability { id: "40E8", source: "Titan" } window 100,100 jump 270.5 +70.5 "--sync--" Ability { id: "40E6", source: "Titan" } window 100,100 jump 570.5 ### Wheels Path -270.5 "Earthen Wheels" sync / 1[56]:[^:]*:Titan:40E8:/ -277.7 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -277.7 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -286.0 "Magnitude 5.0" sync / 1[56]:[^:]*:Titan:4121:/ window 10,10 -289.1 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E9:/ -291.0 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -307.2 "Crumbling Down" sync / 1[56]:[^:]*:Titan:410E:/ -315.3 "Bomb Boulders" sync / 1[56]:[^:]*:Titan:4109:/ -327.4 "Seismic Wave" sync / 1[56]:[^:]*:Titan:4110:/ -340.7 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -350.0 "Stonecrusher 1" sync / 1[56]:[^:]*:Titan:4116:/ -353.1 "Stonecrusher 2" #sync / 1[56]:[^:]*:Titan:4143:/ -356.1 "Stonecrusher 3" #sync / 1[56]:[^:]*:Titan:4143:/ -372.4 "Geocrush" sync / 1[56]:[^:]*:Titan:4113:/ -376.2 "Earthen Gauntlets" sync / 1[56]:[^:]*:Titan:40E6:/ -382.6 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -382.6 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -396.7 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -407.5 "Landslide" sync / 1[56]:[^:]*:Titan:411A:/ -413.5 "Right/Left Landslide" sync / 1[56]:[^:]*:Titan:411[CD]:/ -420.7 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E7:/ +270.5 "Earthen Wheels" Ability { id: "40E8", source: "Titan" } +277.7 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +277.7 "Force of the Land" Ability { id: "4107", source: "Titan" } +286.0 "Magnitude 5.0" Ability { id: "4121", source: "Titan" } window 10,10 +289.1 "Earthen Armor" Ability { id: "40E9", source: "Titan" } +291.0 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +307.2 "Crumbling Down" Ability { id: "410E", source: "Titan" } +315.3 "Bomb Boulders" Ability { id: "4109", source: "Titan" } +327.4 "Seismic Wave" Ability { id: "4110", source: "Titan" } +340.7 "Voice of the Land" Ability { id: "4114", source: "Titan" } +350.0 "Stonecrusher 1" Ability { id: "4116", source: "Titan" } +353.1 "Stonecrusher 2" #Ability { id: "4143", source: "Titan" } +356.1 "Stonecrusher 3" #Ability { id: "4143", source: "Titan" } +372.4 "Geocrush" Ability { id: "4113", source: "Titan" } +376.2 "Earthen Gauntlets" Ability { id: "40E6", source: "Titan" } +382.6 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +382.6 "Force of the Land" Ability { id: "4107", source: "Titan" } +396.7 "Voice of the Land" Ability { id: "4114", source: "Titan" } +407.5 "Landslide" Ability { id: "411A", source: "Titan" } +413.5 "Right/Left Landslide" Ability { id: "411[CD]", source: "Titan" } +420.7 "Earthen Armor" Ability { id: "40E7", source: "Titan" } 425.7 "--untargetable--" -431.1 "Orogenesis" #sync / 1[56]:[^:]*:Titan:4371:/ +431.1 "Orogenesis" #Ability { id: "4371", source: "Titan" } ### Gauntlets path -570.5 "Earthen Gauntlets" sync / 1[56]:[^:]*:Titan:40E6:/ -576.8 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -576.8 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -590.8 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -601.5 "Landslide" sync / 1[56]:[^:]*:Titan:411A:/ -607.5 "Right/Left Landslide" sync / 1[56]:[^:]*:Titan:411[CD]:/ -614.7 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E7:/ -632.9 "Crumbling Down" sync / 1[56]:[^:]*:Titan:410E:/ -641.1 "Bomb Boulders" sync / 1[56]:[^:]*:Titan:4109:/ -653.1 "Seismic Wave" sync / 1[56]:[^:]*:Titan:4110:/ -666.4 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -675.6 "Stonecrusher 1" sync / 1[56]:[^:]*:Titan:4116:/ -678.7 "Stonecrusher 2" #sync / 1[56]:[^:]*:Titan:4143:/ -681.8 "Stonecrusher 3" #sync / 1[56]:[^:]*:Titan:4143:/ -698.1 "Geocrush" sync / 1[56]:[^:]*:Titan:4113:/ -702.0 "Earthen Wheels" sync / 1[56]:[^:]*:Titan:40E8:/ -709.0 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -709.0 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -717.6 "Magnitude 5.0" sync / 1[56]:[^:]*:Titan:4121:/ window 10,10 -720.7 "Earthen Armor" sync / 1[56]:[^:]*:Titan:40E9:/ -722.6 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ +570.5 "Earthen Gauntlets" Ability { id: "40E6", source: "Titan" } +576.8 "Force of the Land" Ability { id: "4107", source: "Titan" } +576.8 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +590.8 "Voice of the Land" Ability { id: "4114", source: "Titan" } +601.5 "Landslide" Ability { id: "411A", source: "Titan" } +607.5 "Right/Left Landslide" Ability { id: "411[CD]", source: "Titan" } +614.7 "Earthen Armor" Ability { id: "40E7", source: "Titan" } +632.9 "Crumbling Down" Ability { id: "410E", source: "Titan" } +641.1 "Bomb Boulders" Ability { id: "4109", source: "Titan" } +653.1 "Seismic Wave" Ability { id: "4110", source: "Titan" } +666.4 "Voice of the Land" Ability { id: "4114", source: "Titan" } +675.6 "Stonecrusher 1" Ability { id: "4116", source: "Titan" } +678.7 "Stonecrusher 2" #Ability { id: "4143", source: "Titan" } +681.8 "Stonecrusher 3" #Ability { id: "4143", source: "Titan" } +698.1 "Geocrush" Ability { id: "4113", source: "Titan" } +702.0 "Earthen Wheels" Ability { id: "40E8", source: "Titan" } +709.0 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +709.0 "Force of the Land" Ability { id: "4107", source: "Titan" } +717.6 "Magnitude 5.0" Ability { id: "4121", source: "Titan" } window 10,10 +720.7 "Earthen Armor" Ability { id: "40E9", source: "Titan" } +722.6 "Pulse of the Land" Ability { id: "4106", source: "Titan" } 725.8 "--untargetable--" -730.5 "Orogenesis" #sync / 1[56]:[^:]*:Titan:4371:/ +730.5 "Orogenesis" #Ability { id: "4371", source: "Titan" } ### Transition -1000.0 "Orogenesis" sync / 1[56]:[^:]*:Titan:4371:/ window 1000,0 +1000.0 "Orogenesis" Ability { id: "4371", source: "Titan" } window 1000,0 1026.3 "--targetable--" -1033.1 "Earthen Fury" sync / 1[56]:[^:]*:Titan Maximum:4124:/ -1048.3 "Earthen Fist" sync / 1[56]:[^:]*:Titan Maximum:(4130|4131|4132|412F):/ -1053.2 "Weight of the Land" sync / 1[56]:[^:]*:Titan:4108:/ -1061.9 "Dual Earthen Fists" sync / 1[56]:[^:]*:Titan Maximum:4135:/ -1065.9 "Earthen Anguish" sync / 1[56]:[^:]*:Titan:4137:/ -1071.8 "Megalith" sync / 1[56]:[^:]*:Titan Maximum:4138:/ -1088.0 "Tectonic Uplift" sync / 1[56]:[^:]*:Titan Maximum:4122:/ window 20,20 -1100.1 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -1100.1 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -1108.2 "Earthen Fury" sync / 1[56]:[^:]*:Titan Maximum:4124:/ -1122.3 "Rock Throw" sync / 1[56]:[^:]*:Titan Maximum:412D:/ -1135.1 "Plate Fracture 1" sync / 1[56]:[^:]*:Titan:43EA:/ -1149.2 "Plate Fracture 2" sync / 1[56]:[^:]*:Titan:43EA:/ -1162.4 "Plate Fracture 3" sync / 1[56]:[^:]*:Titan:43EA:/ -1171.9 "Earthen Fury" sync / 1[56]:[^:]*:Titan Maximum:4124:/ -1180.7 "Tumult x5" sync / 1[56]:[^:]*:Titan Maximum:412A:/ duration 6 -1197.4 "Dual Earthen Fists" sync / 1[56]:[^:]*:Titan Maximum:4135:/ -1201.4 "Earthen Anguish" sync / 1[56]:[^:]*:Titan:4137:/ -1208.3 "Earthen Fist" sync / 1[56]:[^:]*:Titan Maximum:(4130|4131|4132|412F):/ -1225.7 "Tectonic Uplift" sync / 1[56]:[^:]*:Titan Maximum:4122:/ -1249.0 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -1226.6 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -1263.2 "Weight of the World" sync / 1[56]:[^:]*:Titan Maximum:442B:/ -1275.1 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -1283.4 "Earthen Fury" sync / 1[56]:[^:]*:Titan Maximum:4124:/ -1292.2 "Tumult x5" sync / 1[56]:[^:]*:Titan Maximum:412A:/ duration 6 -1314.4 "Plate Fracture 1" sync / 1[56]:[^:]*:Titan:43EA:/ -1324.0 "Megalith" sync / 1[56]:[^:]*:Titan Maximum:4138:/ -1337.7 "Plate Fracture 2" sync / 1[56]:[^:]*:Titan:43EA:/ -1340.7 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -1340.7 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -1349.1 "Earthen Fury" sync / 1[56]:[^:]*:Titan Maximum:4124:/ +1033.1 "Earthen Fury" Ability { id: "4124", source: "Titan Maximum" } +1048.3 "Earthen Fist" Ability { id: ["4130", "4131", "4132", "412F"], source: "Titan Maximum" } +1053.2 "Weight of the Land" Ability { id: "4108", source: "Titan" } +1061.9 "Dual Earthen Fists" Ability { id: "4135", source: "Titan Maximum" } +1065.9 "Earthen Anguish" Ability { id: "4137", source: "Titan" } +1071.8 "Megalith" Ability { id: "4138", source: "Titan Maximum" } +1088.0 "Tectonic Uplift" Ability { id: "4122", source: "Titan Maximum" } window 20,20 +1100.1 "Force of the Land" Ability { id: "4107", source: "Titan" } +1100.1 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +1108.2 "Earthen Fury" Ability { id: "4124", source: "Titan Maximum" } +1122.3 "Rock Throw" Ability { id: "412D", source: "Titan Maximum" } +1135.1 "Plate Fracture 1" Ability { id: "43EA", source: "Titan" } +1149.2 "Plate Fracture 2" Ability { id: "43EA", source: "Titan" } +1162.4 "Plate Fracture 3" Ability { id: "43EA", source: "Titan" } +1171.9 "Earthen Fury" Ability { id: "4124", source: "Titan Maximum" } +1180.7 "Tumult x5" Ability { id: "412A", source: "Titan Maximum" } duration 6 +1197.4 "Dual Earthen Fists" Ability { id: "4135", source: "Titan Maximum" } +1201.4 "Earthen Anguish" Ability { id: "4137", source: "Titan" } +1208.3 "Earthen Fist" Ability { id: ["4130", "4131", "4132", "412F"], source: "Titan Maximum" } +1225.7 "Tectonic Uplift" Ability { id: "4122", source: "Titan Maximum" } +1249.0 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +1226.6 "Force of the Land" Ability { id: "4107", source: "Titan" } +1263.2 "Weight of the World" Ability { id: "442B", source: "Titan Maximum" } +1275.1 "Force of the Land" Ability { id: "4107", source: "Titan" } +1283.4 "Earthen Fury" Ability { id: "4124", source: "Titan Maximum" } +1292.2 "Tumult x5" Ability { id: "412A", source: "Titan Maximum" } duration 6 +1314.4 "Plate Fracture 1" Ability { id: "43EA", source: "Titan" } +1324.0 "Megalith" Ability { id: "4138", source: "Titan Maximum" } +1337.7 "Plate Fracture 2" Ability { id: "43EA", source: "Titan" } +1340.7 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +1340.7 "Force of the Land" Ability { id: "4107", source: "Titan" } +1349.1 "Earthen Fury" Ability { id: "4124", source: "Titan Maximum" } 1359.3 "--untargetable--" -1359.3 "Orogenesis" sync / 1[56]:[^:]*:Titan Maximum:4372:/ window 1500,1500 +1359.3 "Orogenesis" Ability { id: "4372", source: "Titan Maximum" } window 1500,1500 1364.3 "--targetable--" -1373.3 "Earthen Fury" sync / 1[56]:[^:]*:Titan Maximum:413A:/ -1392.6 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -1392.6 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -1401.9 "Dual Earthen Fists" sync / 1[56]:[^:]*:Titan Maximum:4135:/ -1406.0 "Earthen Anguish" sync / 1[56]:[^:]*:Titan:4137:/ -1414.6 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -1417.4 "Tumult x5" sync / 1[56]:[^:]*:Titan Maximum:412A:/ duration 6 -1426.9 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -1438.1 "Earthen Fury" sync / 1[56]:[^:]*:Titan Maximum:413A:/ -1457.3 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -1457.3 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -1468.4 "Earthen Fist" sync / 1[56]:[^:]*:Titan Maximum:(4130|4131|4132|412F):/ -1479.5 "Stonecrusher 1" sync / 1[56]:[^:]*:Titan:4116:/ -1482.6 "Stonecrusher 2" #sync / 1[56]:[^:]*:Titan:4143:/ -1485.7 "Stonecrusher 3" #sync / 1[56]:[^:]*:Titan:4143:/ -1491.8 "Megalith" sync / 1[56]:[^:]*:Titan Maximum:4138:/ -1504.1 "Earthen Fury" sync / 1[56]:[^:]*:Titan Maximum:413A:/ -1523.4 "Pulse of the Land" sync / 1[56]:[^:]*:Titan:4106:/ -1523.4 "Force of the Land" sync / 1[56]:[^:]*:Titan:4107:/ -1534.3 "Earthen Fist" sync / 1[56]:[^:]*:Titan Maximum:(4130|4131|4132|412F):/ -1543.4 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -1546.2 "Tumult x5" sync / 1[56]:[^:]*:Titan Maximum:412A:/ duration 6 -1555.6 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -1558.4 "Tumult x5" sync / 1[56]:[^:]*:Titan Maximum:412A:/ duration 6 -1567.9 "Voice of the Land" sync / 1[56]:[^:]*:Titan:4114:/ -1581.1 "Earthen Fury Enrage" sync / 1[56]:[^:]*:Titan Maximum:4140:/ +1373.3 "Earthen Fury" Ability { id: "413A", source: "Titan Maximum" } +1392.6 "Force of the Land" Ability { id: "4107", source: "Titan" } +1392.6 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +1401.9 "Dual Earthen Fists" Ability { id: "4135", source: "Titan Maximum" } +1406.0 "Earthen Anguish" Ability { id: "4137", source: "Titan" } +1414.6 "Voice of the Land" Ability { id: "4114", source: "Titan" } +1417.4 "Tumult x5" Ability { id: "412A", source: "Titan Maximum" } duration 6 +1426.9 "Voice of the Land" Ability { id: "4114", source: "Titan" } +1438.1 "Earthen Fury" Ability { id: "413A", source: "Titan Maximum" } +1457.3 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +1457.3 "Force of the Land" Ability { id: "4107", source: "Titan" } +1468.4 "Earthen Fist" Ability { id: ["4130", "4131", "4132", "412F"], source: "Titan Maximum" } +1479.5 "Stonecrusher 1" Ability { id: "4116", source: "Titan" } +1482.6 "Stonecrusher 2" #Ability { id: "4143", source: "Titan" } +1485.7 "Stonecrusher 3" #Ability { id: "4143", source: "Titan" } +1491.8 "Megalith" Ability { id: "4138", source: "Titan Maximum" } +1504.1 "Earthen Fury" Ability { id: "413A", source: "Titan Maximum" } +1523.4 "Pulse of the Land" Ability { id: "4106", source: "Titan" } +1523.4 "Force of the Land" Ability { id: "4107", source: "Titan" } +1534.3 "Earthen Fist" Ability { id: ["4130", "4131", "4132", "412F"], source: "Titan Maximum" } +1543.4 "Voice of the Land" Ability { id: "4114", source: "Titan" } +1546.2 "Tumult x5" Ability { id: "412A", source: "Titan Maximum" } duration 6 +1555.6 "Voice of the Land" Ability { id: "4114", source: "Titan" } +1558.4 "Tumult x5" Ability { id: "412A", source: "Titan Maximum" } duration 6 +1567.9 "Voice of the Land" Ability { id: "4114", source: "Titan" } +1581.1 "Earthen Fury Enrage" Ability { id: "4140", source: "Titan Maximum" } diff --git a/ui/raidboss/data/05-shb/raid/e5n.txt b/ui/raidboss/data/05-shb/raid/e5n.txt index 783061e55d..3f1a74332f 100644 --- a/ui/raidboss/data/05-shb/raid/e5n.txt +++ b/ui/raidboss/data/05-shb/raid/e5n.txt @@ -8,61 +8,61 @@ hideall "--sync--" # Opening block 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -13.6 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BA3:/ window 15,15 -20.9 "--sync--" sync / 1[56]:[^:]*:Ramuh:4BCB:/ -26.8 "Stratospear Summons" sync / 1[56]:[^:]*:Ramuh:4B8D:/ window 30,30 -31.7 "Impact" sync / 1[56]:[^:]*:Ramuh:4E3A:/ -38.7 "Judgment Jolt" sync / 1[56]:[^:]*:Ramuh:4B8E:/ -47.8 "Stormcloud Summons" sync / 1[56]:[^:]*:Ramuh:4B9B:/ -63.3 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4B98:/ -75.5 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BA3:/ window 30,30 -84.8 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4B90:/ -93.9 "Divine Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4E62:/ -107.1 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4B91:/ -114.6 "Deadly Discharge" sync / 1[56]:[^:]*:Will Of Ramuh:4B92:/ -123.7 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4B91:/ -131.2 "Gallop" sync / 1[56]:[^:]*:Will Of Ixion:4B96:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +13.6 "Crippling Blow" Ability { id: "4BA3", source: "Ramuh" } window 15,15 +20.9 "--sync--" Ability { id: "4BCB", source: "Ramuh" } +26.8 "Stratospear Summons" Ability { id: "4B8D", source: "Ramuh" } window 30,30 +31.7 "Impact" Ability { id: "4E3A", source: "Ramuh" } +38.7 "Judgment Jolt" Ability { id: "4B8E", source: "Ramuh" } +47.8 "Stormcloud Summons" Ability { id: "4B9B", source: "Ramuh" } +63.3 "Judgment Volts" Ability { id: "4B98", source: "Ramuh" } +75.5 "Crippling Blow" Ability { id: "4BA3", source: "Ramuh" } window 30,30 +84.8 "Fury's Bolt" Ability { id: "4B90", source: "Ramuh" } +93.9 "Divine Judgment Volts" Ability { id: "4E62", source: "Ramuh" } +107.1 "Tribunal Summons" Ability { id: "4B91", source: "Ramuh" } +114.6 "Deadly Discharge" Ability { id: "4B92", source: "Will Of Ramuh" } +123.7 "Tribunal Summons" Ability { id: "4B91", source: "Ramuh" } +131.2 "Gallop" Ability { id: "4B96", source: "Will Of Ixion" } #Training block -137.3 "--sync--" sync / 1[56]:[^:]*:Ramuh:4BCB:/ -143.3 "Stratospear Summons" sync / 1[56]:[^:]*:Ramuh:4B8D:/ -148.2 "Impact" sync / 1[56]:[^:]*:Ramuh:4E3A:/ -155.2 "Judgment Jolt" sync / 1[56]:[^:]*:Ramuh:4B8E:/ window 30,30 -164.4 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4B90:/ -173.5 "Divine Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4E62:/ -181.7 "Thunderstorm" sync / 1[56]:[^:]*:Ramuh:4BA0:/ window 30,30 -192.1 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4CF2:/ -199.1 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4CF2:/ -211.1 "Stormcloud Summons" sync / 1[56]:[^:]*:Ramuh:4B9B:/ window 30,30 -221.6 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4B91:/ -229.0 "Deadly Discharge" sync / 1[56]:[^:]*:Will Of Ramuh:4B92:/ -244.1 "Thunderstorm" sync / 1[56]:[^:]*:Ramuh:4BA0:/ window 30,30 -251.5 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4B91:/ -254.5 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4CF2:/ -261.0 "Gallop" sync / 1[56]:[^:]*:Will Of Ixion:4B96:/ -261.6 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4CF2:/ -272.0 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BA3:/ window 30,30 +137.3 "--sync--" Ability { id: "4BCB", source: "Ramuh" } +143.3 "Stratospear Summons" Ability { id: "4B8D", source: "Ramuh" } +148.2 "Impact" Ability { id: "4E3A", source: "Ramuh" } +155.2 "Judgment Jolt" Ability { id: "4B8E", source: "Ramuh" } window 30,30 +164.4 "Fury's Bolt" Ability { id: "4B90", source: "Ramuh" } +173.5 "Divine Judgment Volts" Ability { id: "4E62", source: "Ramuh" } +181.7 "Thunderstorm" Ability { id: "4BA0", source: "Ramuh" } window 30,30 +192.1 "Volt Strike" Ability { id: "4CF2", source: "Ramuh" } +199.1 "Volt Strike" Ability { id: "4CF2", source: "Ramuh" } +211.1 "Stormcloud Summons" Ability { id: "4B9B", source: "Ramuh" } window 30,30 +221.6 "Tribunal Summons" Ability { id: "4B91", source: "Ramuh" } +229.0 "Deadly Discharge" Ability { id: "4B92", source: "Will Of Ramuh" } +244.1 "Thunderstorm" Ability { id: "4BA0", source: "Ramuh" } window 30,30 +251.5 "Tribunal Summons" Ability { id: "4B91", source: "Ramuh" } +254.5 "Volt Strike" Ability { id: "4CF2", source: "Ramuh" } +261.0 "Gallop" Ability { id: "4B96", source: "Will Of Ixion" } +261.6 "Volt Strike" Ability { id: "4CF2", source: "Ramuh" } +272.0 "Crippling Blow" Ability { id: "4BA3", source: "Ramuh" } window 30,30 #Rotation block -279.3 "--sync--" sync / 1[56]:[^:]*:Ramuh:4BCB:/ window 30,30 -285.2 "Stratospear Summons" sync / 1[56]:[^:]*:Ramuh:4B8D:/ -290.1 "Impact" sync / 1[56]:[^:]*:Ramuh:4E3A:/ -293.6 "Stormcloud Summons" sync / 1[56]:[^:]*:Ramuh:4B9B:/ -303.1 "Judgment Jolt" sync / 1[56]:[^:]*:Ramuh:4B8E:/ -311.3 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4B90:/ -320.4 "Divine Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4E62:/ -331.6 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4B91:/ window 30,30 -339.1 "Gallop" sync / 1[56]:[^:]*:Will Of Ixion:4B96:/ -339.1 "Deadly Discharge" sync / 1[56]:[^:]*:Will Of Ramuh:4B92:/ -350.1 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BA3:/ -362.4 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4B98:/ -371.6 "Thunderstorm" sync / 1[56]:[^:]*:Ramuh:4BA0:/ window 30,30 -379.0 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4B91:/ -382.0 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4CF2:/ -388.5 "Gallop" sync / 1[56]:[^:]*:Will Of Ixion:4B96:/ -389.1 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4CF2:/ -399.5 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BA3:/ window 30,30 jump 272.0 +279.3 "--sync--" Ability { id: "4BCB", source: "Ramuh" } window 30,30 +285.2 "Stratospear Summons" Ability { id: "4B8D", source: "Ramuh" } +290.1 "Impact" Ability { id: "4E3A", source: "Ramuh" } +293.6 "Stormcloud Summons" Ability { id: "4B9B", source: "Ramuh" } +303.1 "Judgment Jolt" Ability { id: "4B8E", source: "Ramuh" } +311.3 "Fury's Bolt" Ability { id: "4B90", source: "Ramuh" } +320.4 "Divine Judgment Volts" Ability { id: "4E62", source: "Ramuh" } +331.6 "Tribunal Summons" Ability { id: "4B91", source: "Ramuh" } window 30,30 +339.1 "Gallop" Ability { id: "4B96", source: "Will Of Ixion" } +339.1 "Deadly Discharge" Ability { id: "4B92", source: "Will Of Ramuh" } +350.1 "Crippling Blow" Ability { id: "4BA3", source: "Ramuh" } +362.4 "Judgment Volts" Ability { id: "4B98", source: "Ramuh" } +371.6 "Thunderstorm" Ability { id: "4BA0", source: "Ramuh" } window 30,30 +379.0 "Tribunal Summons" Ability { id: "4B91", source: "Ramuh" } +382.0 "Volt Strike" Ability { id: "4CF2", source: "Ramuh" } +388.5 "Gallop" Ability { id: "4B96", source: "Will Of Ixion" } +389.1 "Volt Strike" Ability { id: "4CF2", source: "Ramuh" } +399.5 "Crippling Blow" Ability { id: "4BA3", source: "Ramuh" } window 30,30 jump 272.0 412.7 "Stratospear Summons" 417.6 "Impact" diff --git a/ui/raidboss/data/05-shb/raid/e5s.txt b/ui/raidboss/data/05-shb/raid/e5s.txt index 94affeed08..06b3eba6c9 100644 --- a/ui/raidboss/data/05-shb/raid/e5s.txt +++ b/ui/raidboss/data/05-shb/raid/e5s.txt @@ -6,109 +6,109 @@ hideall "--Reset--" hideall "--sync--" 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.0 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ window 12,20 -22.2 "Stratospear Summons" sync / 1[56]:[^:]*:Ramuh:4BA5:/ -27.1 "Impact" sync / 1[56]:[^:]*:Ramuh:4E3B:/ -35.6 "Judgment Jolt" sync / 1[56]:[^:]*:Ramuh:4BA6:/ -42.7 "Executor Summons" sync / 1[56]:[^:]*:Ramuh:4BBC:/ -52.2 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4BAA:/ -63.3 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -69.5 "Shock Blast" sync / 1[56]:[^:]*:Raiden:4BBE:/ -73.4 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BCA:/ -79.7 "Stormcloud Summons" sync / 1[56]:[^:]*:Ramuh:4BB8:/ -84.8 "Chaos Strike" sync / 1[56]:[^:]*:Ramuh:4BBB:/ -89.2 "--sync--" sync / 1[56]:[^:]*:Ramuh:4BCB:/ -89.9 "Lightning Bolt" duration 24.5 # sync / 1[56]:[^:]*:Stormcloud:4BB9:/ -96.2 "Levinforce" sync / 1[56]:[^:]*:Ramuh:4BCC:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.0 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } window 12,20 +22.2 "Stratospear Summons" Ability { id: "4BA5", source: "Ramuh" } +27.1 "Impact" Ability { id: "4E3B", source: "Ramuh" } +35.6 "Judgment Jolt" Ability { id: "4BA6", source: "Ramuh" } +42.7 "Executor Summons" Ability { id: "4BBC", source: "Ramuh" } +52.2 "Fury's Bolt" Ability { id: "4BAA", source: "Ramuh" } +63.3 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +69.5 "Shock Blast" Ability { id: "4BBE", source: "Raiden" } +73.4 "Crippling Blow" Ability { id: "4BCA", source: "Ramuh" } +79.7 "Stormcloud Summons" Ability { id: "4BB8", source: "Ramuh" } +84.8 "Chaos Strike" Ability { id: "4BBB", source: "Ramuh" } +89.2 "--sync--" Ability { id: "4BCB", source: "Ramuh" } +89.9 "Lightning Bolt" duration 24.5 # Ability { id: "4BB9", source: "Stormcloud" } +96.2 "Levinforce" Ability { id: "4BCC", source: "Ramuh" } -110.6 "Fury's Bolt?" sync / 1[56]:[^:]*:Ramuh:4BAA:/ -117.7 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4BAC:/ -128.6 "Gallop" sync / 1[56]:[^:]*:Will Of Ixion:4BB3:/ -138.1 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BCA:/ -148.3 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -155.5 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4BAA:/ -163.6 "Thunderstorm" sync / 1[56]:[^:]*:Ramuh:4BBF:/ -174.5 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4BC3:/ -182.6 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4BC3:/ -189.1 "Executor Summons" sync / 1[56]:[^:]*:Ramuh:4BBC:/ -198.5 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BCA:/ -210.1 "Stepped Leader" sync / 1[56]:[^:]*:Ramuh:4BC7:/ -215.9 "Shock Blast" sync / 1[56]:[^:]*:Raiden:4BBE:/ -221.2 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ +110.6 "Fury's Bolt?" Ability { id: "4BAA", source: "Ramuh" } +117.7 "Tribunal Summons" Ability { id: "4BAC", source: "Ramuh" } +128.6 "Gallop" Ability { id: "4BB3", source: "Will Of Ixion" } +138.1 "Crippling Blow" Ability { id: "4BCA", source: "Ramuh" } +148.3 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +155.5 "Fury's Bolt" Ability { id: "4BAA", source: "Ramuh" } +163.6 "Thunderstorm" Ability { id: "4BBF", source: "Ramuh" } +174.5 "Volt Strike" Ability { id: "4BC3", source: "Ramuh" } +182.6 "Volt Strike" Ability { id: "4BC3", source: "Ramuh" } +189.1 "Executor Summons" Ability { id: "4BBC", source: "Ramuh" } +198.5 "Crippling Blow" Ability { id: "4BCA", source: "Ramuh" } +210.1 "Stepped Leader" Ability { id: "4BC7", source: "Ramuh" } +215.9 "Shock Blast" Ability { id: "4BBE", source: "Raiden" } +221.2 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } -230.5 "Fury's Fourteen" sync / 1[56]:[^:]*:Ramuh:4BAB:/ -244.6 "Stratospear Summons" sync / 1[56]:[^:]*:Ramuh:4BA5:/ -249.5 "Impact" sync / 1[56]:[^:]*:Ramuh:4E3B:/ -253.0 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4BAC:/ -255.4 "--sync--" sync / 1[56]:[^:]*:Ramuh:4BCB:/ -262.3 "Centaur's Charge" sync / 1[56]:[^:]*:Ramuh:4BAD:/ -267.3 "Gallop" sync / 1[56]:[^:]*:Will Of Ixion:4BB3:/ +230.5 "Fury's Fourteen" Ability { id: "4BAB", source: "Ramuh" } +244.6 "Stratospear Summons" Ability { id: "4BA5", source: "Ramuh" } +249.5 "Impact" Ability { id: "4E3B", source: "Ramuh" } +253.0 "Tribunal Summons" Ability { id: "4BAC", source: "Ramuh" } +255.4 "--sync--" Ability { id: "4BCB", source: "Ramuh" } +262.3 "Centaur's Charge" Ability { id: "4BAD", source: "Ramuh" } +267.3 "Gallop" Ability { id: "4BB3", source: "Will Of Ixion" } -267.5 "Judgment Jolt" sync / 1[56]:[^:]*:Will Of Ramuh:4BA9:/ -279.1 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4BAA:/ -287.9 "Stepped Leader" sync / 1[56]:[^:]*:Ramuh:4BC8:/ -297.8 "Chain Lightning" sync / 1[56]:[^:]*:Ramuh:4BC4:/ -301.6 "Chain Lightning 1" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -305.2 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BCA:/ -305.3 "Chain Lightning 2" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -309.0 "Chain Lightning 3" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -312.7 "Chain Lightning 4" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -316.4 "Chain Lightning 5" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -317.4 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -320.1 "Chain Lightning 6" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -323.8 "Chain Lightning 7" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -327.5 "Chain Lightning 8" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ +267.5 "Judgment Jolt" Ability { id: "4BA9", source: "Will Of Ramuh" } +279.1 "Fury's Bolt" Ability { id: "4BAA", source: "Ramuh" } +287.9 "Stepped Leader" Ability { id: "4BC8", source: "Ramuh" } +297.8 "Chain Lightning" Ability { id: "4BC4", source: "Ramuh" } +301.6 "Chain Lightning 1" #Ability { id: "4BC5", source: "Ramuh" } +305.2 "Crippling Blow" Ability { id: "4BCA", source: "Ramuh" } +305.3 "Chain Lightning 2" #Ability { id: "4BC5", source: "Ramuh" } +309.0 "Chain Lightning 3" #Ability { id: "4BC5", source: "Ramuh" } +312.7 "Chain Lightning 4" #Ability { id: "4BC5", source: "Ramuh" } +316.4 "Chain Lightning 5" #Ability { id: "4BC5", source: "Ramuh" } +317.4 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +320.1 "Chain Lightning 6" #Ability { id: "4BC5", source: "Ramuh" } +323.8 "Chain Lightning 7" #Ability { id: "4BC5", source: "Ramuh" } +327.5 "Chain Lightning 8" #Ability { id: "4BC5", source: "Ramuh" } -329.6 "Executor Summons" sync / 1[56]:[^:]*:Ramuh:4BBC:/ -337.0 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4BAA:/ -346.2 "Thunderstorm" sync / 1[56]:[^:]*:Ramuh:4BBF:/ -356.4 "Shock Blast" sync / 1[56]:[^:]*:Raiden:4BBE:/ -357.1 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4BC3:/ -365.2 "Volt Strike" sync / 1[56]:[^:]*:Ramuh:4BC3:/ -368.0 "Stepped Leader" sync / 1[56]:[^:]*:Ramuh:4BC7:/ -380.1 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BCA:/ -388.3 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ +329.6 "Executor Summons" Ability { id: "4BBC", source: "Ramuh" } +337.0 "Fury's Bolt" Ability { id: "4BAA", source: "Ramuh" } +346.2 "Thunderstorm" Ability { id: "4BBF", source: "Ramuh" } +356.4 "Shock Blast" Ability { id: "4BBE", source: "Raiden" } +357.1 "Volt Strike" Ability { id: "4BC3", source: "Ramuh" } +365.2 "Volt Strike" Ability { id: "4BC3", source: "Ramuh" } +368.0 "Stepped Leader" Ability { id: "4BC7", source: "Ramuh" } +380.1 "Crippling Blow" Ability { id: "4BCA", source: "Ramuh" } +388.3 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } -395.6 "Fury's Fourteen" sync / 1[56]:[^:]*:Ramuh:4BAB:/ -411.7 "Stratospear Summons" sync / 1[56]:[^:]*:Ramuh:4BA5:/ -416.6 "Impact" sync / 1[56]:[^:]*:Ramuh:4E3B:/ -420.1 "Tribunal Summons" sync / 1[56]:[^:]*:Ramuh:4BAC:/ -422.5 "--sync--" sync / 1[56]:[^:]*:Ramuh:4BCB:/ -429.4 "Centaur's Charge" sync / 1[56]:[^:]*:Ramuh:4BAD:/ -434.4 "Gallop" sync / 1[56]:[^:]*:Will Of Ixion:4BB3:/ +395.6 "Fury's Fourteen" Ability { id: "4BAB", source: "Ramuh" } +411.7 "Stratospear Summons" Ability { id: "4BA5", source: "Ramuh" } +416.6 "Impact" Ability { id: "4E3B", source: "Ramuh" } +420.1 "Tribunal Summons" Ability { id: "4BAC", source: "Ramuh" } +422.5 "--sync--" Ability { id: "4BCB", source: "Ramuh" } +429.4 "Centaur's Charge" Ability { id: "4BAD", source: "Ramuh" } +434.4 "Gallop" Ability { id: "4BB3", source: "Will Of Ixion" } -434.6 "Judgment Jolt" sync / 1[56]:[^:]*:Will Of Ramuh:4BA9:/ -440.2 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4BAA:/ -450.4 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -460.5 "Stormcloud Summons" sync / 1[56]:[^:]*:Ramuh:4BB8:/ -465.6 "Chaos Strike" sync / 1[56]:[^:]*:Ramuh:4BBB:/ -470.7 "Lightning Bolt" duration 24.5 # sync / 1[56]:[^:]*:Stormcloud:4BB9:/ -470.0 "--sync--" sync / 1[56]:[^:]*:Ramuh:4BCB:/ -477.0 "Levinforce" sync / 1[56]:[^:]*:Ramuh:4BCC:/ -487.4 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -502.6 "Chain Lightning" sync / 1[56]:[^:]*:Ramuh:4BC4:/ -506.4 "Chain Lightning 1" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -510.0 "Crippling Blow" sync / 1[56]:[^:]*:Ramuh:4BCA:/ -510.1 "Chain Lightning 2" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -513.8 "Chain Lightning 3" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -517.5 "Chain Lightning 4" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -521.2 "Chain Lightning 5" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -523.2 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -524.8 "Chain Lightning 6" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -528.5 "Chain Lightning 7" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ -532.2 "Chain Lightning 8" #sync / 1[56]:[^:]*:Ramuh:4BC5:/ +434.6 "Judgment Jolt" Ability { id: "4BA9", source: "Will Of Ramuh" } +440.2 "Fury's Bolt" Ability { id: "4BAA", source: "Ramuh" } +450.4 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +460.5 "Stormcloud Summons" Ability { id: "4BB8", source: "Ramuh" } +465.6 "Chaos Strike" Ability { id: "4BBB", source: "Ramuh" } +470.7 "Lightning Bolt" duration 24.5 # Ability { id: "4BB9", source: "Stormcloud" } +470.0 "--sync--" Ability { id: "4BCB", source: "Ramuh" } +477.0 "Levinforce" Ability { id: "4BCC", source: "Ramuh" } +487.4 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +502.6 "Chain Lightning" Ability { id: "4BC4", source: "Ramuh" } +506.4 "Chain Lightning 1" #Ability { id: "4BC5", source: "Ramuh" } +510.0 "Crippling Blow" Ability { id: "4BCA", source: "Ramuh" } +510.1 "Chain Lightning 2" #Ability { id: "4BC5", source: "Ramuh" } +513.8 "Chain Lightning 3" #Ability { id: "4BC5", source: "Ramuh" } +517.5 "Chain Lightning 4" #Ability { id: "4BC5", source: "Ramuh" } +521.2 "Chain Lightning 5" #Ability { id: "4BC5", source: "Ramuh" } +523.2 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +524.8 "Chain Lightning 6" #Ability { id: "4BC5", source: "Ramuh" } +528.5 "Chain Lightning 7" #Ability { id: "4BC5", source: "Ramuh" } +532.2 "Chain Lightning 8" #Ability { id: "4BC5", source: "Ramuh" } -539.7 "Stepped Leader" sync / 1[56]:[^:]*:Ramuh:4BC7:/ -545.8 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4BAA:/ -554.9 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -566.0 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -574.1 "Fury's Bolt" sync / 1[56]:[^:]*:Ramuh:4BAA:/ -583.2 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -594.3 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ -605.4 "Judgment Volts" sync / 1[56]:[^:]*:Ramuh:4BB5:/ +539.7 "Stepped Leader" Ability { id: "4BC7", source: "Ramuh" } +545.8 "Fury's Bolt" Ability { id: "4BAA", source: "Ramuh" } +554.9 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +566.0 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +574.1 "Fury's Bolt" Ability { id: "4BAA", source: "Ramuh" } +583.2 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +594.3 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } +605.4 "Judgment Volts" Ability { id: "4BB5", source: "Ramuh" } -612.3 "Fury's Fourteen" sync / 1[56]:[^:]*:Ramuh:4BAB:/ -628.4 "Stratospear Summons" sync / 1[56]:[^:]*:Ramuh:4BA5:/ +612.3 "Fury's Fourteen" Ability { id: "4BAB", source: "Ramuh" } +628.4 "Stratospear Summons" Ability { id: "4BA5", source: "Ramuh" } #??? "Judgment Volts Enrage" diff --git a/ui/raidboss/data/05-shb/raid/e6n.txt b/ui/raidboss/data/05-shb/raid/e6n.txt index dc568c6eb4..b559261be9 100644 --- a/ui/raidboss/data/05-shb/raid/e6n.txt +++ b/ui/raidboss/data/05-shb/raid/e6n.txt @@ -8,96 +8,96 @@ hideall "--sync--" # -ic "Tumultuous Nexus" "Great Ball Of Fire" # Garuda solo -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -13.5 "Ferostorm" # sync / 1[56]:[^:]*:Garuda:4BD[DEF]:/ -20.6 "Superstorm" sync / 1[56]:[^:]*:Garuda:4BD7:/ window 21,30 -31.4 "Air Bump" sync / 1[56]:[^:]*:Garuda:4BD1:/ -36.8 "Thorns" sync / 1[56]:[^:]*:Garuda:4BDA:/ -48.0 "Downburst" sync / 1[56]:[^:]*:Garuda:4BDB:/ window 30,30 -54.6 "Air Bump" sync / 1[56]:[^:]*:Garuda:4BD1:/ -60.0 "Thorns" sync / 1[56]:[^:]*:Garuda:4BDA:/ -72.2 "Storm Of Fury" sync / 1[56]:[^:]*:Garuda:4BE0:/ -75.4 "--sync--" sync / 1[56]:[^:]*:Garuda:4BD0:/ -81.7 "Vacuum Slice" sync / 1[56]:[^:]*:Garuda:4BD5:/ -88.8 "Occluded Front" sync / 1[56]:[^:]*:Garuda:4BD2:/ window 30,30 -98.3 "Irresistible Pull" sync / 1[56]:[^:]*:Garuda:4BD6:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +13.5 "Ferostorm" # Ability { id: "4BD[DEF]", source: "Garuda" } +20.6 "Superstorm" Ability { id: "4BD7", source: "Garuda" } window 21,30 +31.4 "Air Bump" Ability { id: "4BD1", source: "Garuda" } +36.8 "Thorns" Ability { id: "4BDA", source: "Garuda" } +48.0 "Downburst" Ability { id: "4BDB", source: "Garuda" } window 30,30 +54.6 "Air Bump" Ability { id: "4BD1", source: "Garuda" } +60.0 "Thorns" Ability { id: "4BDA", source: "Garuda" } +72.2 "Storm Of Fury" Ability { id: "4BE0", source: "Garuda" } +75.4 "--sync--" Ability { id: "4BD0", source: "Garuda" } +81.7 "Vacuum Slice" Ability { id: "4BD5", source: "Garuda" } +88.8 "Occluded Front" Ability { id: "4BD2", source: "Garuda" } window 30,30 +98.3 "Irresistible Pull" Ability { id: "4BD6", source: "Garuda" } 111.0 "--untargetable--" # Ifrit solo -114.1 "Touchdown" sync / 1[56]:[^:]*:Ifrit:4BE8:/ window 30,30 +114.1 "Touchdown" Ability { id: "4BE8", source: "Ifrit" } window 30,30 115.5 "--targetable--" -129.2 "Hands Of Flame" sync / 1[56]:[^:]*:Ifrit:4CFE:/ -143.6 "Hands Of Hell" sync / 1[56]:[^:]*:Ifrit:4CFF:/ -152.3 "Instant Incineration" sync / 1[56]:[^:]*:Ifrit:4BED:/ window 30,30 -156.9 "Eruption" sync / 1[56]:[^:]*:Ifrit:4BF3:/ -166.1 "Strike Spark" sync / 1[56]:[^:]*:Ifrit:4BD3:/ -177.5 "Hot Foot" sync / 1[56]:[^:]*:Ifrit:4BEF:/ -188.2 "Inferno Howl" sync / 1[56]:[^:]*:Ifrit:4BF1:/ window 30,30 +129.2 "Hands Of Flame" Ability { id: "4CFE", source: "Ifrit" } +143.6 "Hands Of Hell" Ability { id: "4CFF", source: "Ifrit" } +152.3 "Instant Incineration" Ability { id: "4BED", source: "Ifrit" } window 30,30 +156.9 "Eruption" Ability { id: "4BF3", source: "Ifrit" } +166.1 "Strike Spark" Ability { id: "4BD3", source: "Ifrit" } +177.5 "Hot Foot" Ability { id: "4BEF", source: "Ifrit" } +188.2 "Inferno Howl" Ability { id: "4BF1", source: "Ifrit" } window 30,30 196.3 "--untargetable--" # Garuda and Ifrit 200.6 "--targetable--" -207.2 "Vacuum Slice" sync / 1[56]:[^:]*:Garuda:4BD5:/ window 30,30 -209.9 "Eruption" sync / 1[56]:[^:]*:Ifrit:4BF3:/ -209.9 "Eruption" sync / 1[56]:[^:]*:Ifrit:4BF4:/ -213.1 "--sync--" sync / 1[56]:[^:]*:Ifrit:4F98:/ -214.3 "Occluded Front" sync / 1[56]:[^:]*:Garuda:4BD2:/ -221.2 "Hot Foot" sync / 1[56]:[^:]*:Ifrit:4BEF:/ -223.8 "Irresistible Pull" sync / 1[56]:[^:]*:Garuda:4BD6:/ window 30,30 -228.0 "Air Bump" sync / 1[56]:[^:]*:Garuda:4BD1:/ -233.3 "Thorns" sync / 1[56]:[^:]*:Garuda:4BDA:/ -237.9 "Hands Of Hell" sync / 1[56]:[^:]*:Ifrit:4CFF:/ -245.5 "Ferostorm" # sync / 1[56]:[^:]*:Garuda:4BD[DEF]:/ +207.2 "Vacuum Slice" Ability { id: "4BD5", source: "Garuda" } window 30,30 +209.9 "Eruption" Ability { id: "4BF3", source: "Ifrit" } +209.9 "Eruption" Ability { id: "4BF4", source: "Ifrit" } +213.1 "--sync--" Ability { id: "4F98", source: "Ifrit" } +214.3 "Occluded Front" Ability { id: "4BD2", source: "Garuda" } +221.2 "Hot Foot" Ability { id: "4BEF", source: "Ifrit" } +223.8 "Irresistible Pull" Ability { id: "4BD6", source: "Garuda" } window 30,30 +228.0 "Air Bump" Ability { id: "4BD1", source: "Garuda" } +233.3 "Thorns" Ability { id: "4BDA", source: "Garuda" } +237.9 "Hands Of Hell" Ability { id: "4CFF", source: "Ifrit" } +245.5 "Ferostorm" # Ability { id: "4BD[DEF]", source: "Garuda" } 250.2 "--untargetable--" # Raktapaksa initial block -267.9 "Firestorm" sync / 1[56]:[^:]*:Raktapaksa:4BD8:/ window 30,30 +267.9 "Firestorm" Ability { id: "4BD8", source: "Raktapaksa" } window 30,30 272.1 "--targetable--" -283.2 "Radiant Plume" sync / 1[56]:[^:]*:Raktapaksa:4BF2:/ -286.2 "Ferostorm" # sync / 1[56]:[^:]*:Raktapaksa:4BE[345]:/ -297.3 "Hands Of Flame" sync / 1[56]:[^:]*:Raktapaksa:4CFE:/ window 30,30 -301.1 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C1E:/ -311.2 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4BF4:/ -312.6 "Thorns" sync / 1[56]:[^:]*:Raktapaksa:4BDA:/ -313.7 "Hands Of Hell" sync / 1[56]:[^:]*:Raktapaksa:4CFF:/ -317.6 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C1E:/ +283.2 "Radiant Plume" Ability { id: "4BF2", source: "Raktapaksa" } +286.2 "Ferostorm" # Ability { id: "4BE[345]", source: "Raktapaksa" } +297.3 "Hands Of Flame" Ability { id: "4CFE", source: "Raktapaksa" } window 30,30 +301.1 "Heat Burst" Ability { id: "4C1E", source: "Raktapaksa" } +311.2 "Eruption" Ability { id: "4BF4", source: "Raktapaksa" } +312.6 "Thorns" Ability { id: "4BDA", source: "Raktapaksa" } +313.7 "Hands Of Hell" Ability { id: "4CFF", source: "Raktapaksa" } +317.6 "Heat Burst" Ability { id: "4C1E", source: "Raktapaksa" } 325.2 "--untargetable--" -325.2 "Downburst" sync / 1[56]:[^:]*:Raktapaksa:4BDC:/ window 30,30 +325.2 "Downburst" Ability { id: "4BDC", source: "Raktapaksa" } window 30,30 329.5 "--targetable--" -336.6 "Radiant Plume" sync / 1[56]:[^:]*:Raktapaksa:4BF2:/ -341.6 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4BF4:/ -348.1 "Radiant Plume" sync / 1[56]:[^:]*:Raktapaksa:4BF2:/ -353.1 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4BF4:/ -360.4 "Conflag Strike" sync / 1[56]:[^:]*:Raktapaksa:4BEE:/ window 30,30 +336.6 "Radiant Plume" Ability { id: "4BF2", source: "Raktapaksa" } +341.6 "Eruption" Ability { id: "4BF4", source: "Raktapaksa" } +348.1 "Radiant Plume" Ability { id: "4BF2", source: "Raktapaksa" } +353.1 "Eruption" Ability { id: "4BF4", source: "Raktapaksa" } +360.4 "Conflag Strike" Ability { id: "4BEE", source: "Raktapaksa" } window 30,30 # Raktapaksa rotation block -375.6 "Ferostorm" # sync / 1[56]:[^:]*:Raktapaksa:4BE[345]:/ -377.6 "Air Bump" sync / 1[56]:[^:]*:Raktapaksa:4BD4:/ -382.5 "Thorns" sync / 1[56]:[^:]*:Raktapaksa:4BDA:/ window 30,30 -390.7 "Storm Of Fury" sync / 1[56]:[^:]*:Raktapaksa:4BE6:/ -391.7 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4BF4:/ -401.4 "Inferno Howl" sync / 1[56]:[^:]*:Raktapaksa:4BF1:/ -415.6 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4BF4:/ -416.6 "Hands Of Hell" sync / 1[56]:[^:]*:Raktapaksa:4CFF:/ window 30,30 -420.5 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C1E:/ -427.2 "Instant Incineration" sync / 1[56]:[^:]*:Raktapaksa:4BED:/ -433.4 "Radiant Plume" sync / 1[56]:[^:]*:Raktapaksa:4BF2:/ -439.4 "Inferno Howl" sync / 1[56]:[^:]*:Raktapaksa:4BF1:/ window 30,30 +375.6 "Ferostorm" # Ability { id: "4BE[345]", source: "Raktapaksa" } +377.6 "Air Bump" Ability { id: "4BD4", source: "Raktapaksa" } +382.5 "Thorns" Ability { id: "4BDA", source: "Raktapaksa" } window 30,30 +390.7 "Storm Of Fury" Ability { id: "4BE6", source: "Raktapaksa" } +391.7 "Eruption" Ability { id: "4BF4", source: "Raktapaksa" } +401.4 "Inferno Howl" Ability { id: "4BF1", source: "Raktapaksa" } +415.6 "Eruption" Ability { id: "4BF4", source: "Raktapaksa" } +416.6 "Hands Of Hell" Ability { id: "4CFF", source: "Raktapaksa" } window 30,30 +420.5 "Heat Burst" Ability { id: "4C1E", source: "Raktapaksa" } +427.2 "Instant Incineration" Ability { id: "4BED", source: "Raktapaksa" } +433.4 "Radiant Plume" Ability { id: "4BF2", source: "Raktapaksa" } +439.4 "Inferno Howl" Ability { id: "4BF1", source: "Raktapaksa" } window 30,30 -454.6 "Ferostorm" # sync / 1[56]:[^:]*:Raktapaksa:4BE[345]:/ -456.6 "Air Bump" sync / 1[56]:[^:]*:Raktapaksa:4BD4:/ -461.5 "Thorns" sync / 1[56]:[^:]*:Raktapaksa:4BDA:/ window 30,30 -469.7 "Storm Of Fury" sync / 1[56]:[^:]*:Raktapaksa:4BE6:/ -470.7 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4BF4:/ -480.4 "Inferno Howl" sync / 1[56]:[^:]*:Raktapaksa:4BF1:/ -494.6 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4BF4:/ -495.6 "Hands Of Hell" sync / 1[56]:[^:]*:Raktapaksa:4CFF:/ window 30,30 -499.5 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C1E:/ -506.2 "Instant Incineration" sync / 1[56]:[^:]*:Raktapaksa:4BED:/ -512.4 "Radiant Plume" sync / 1[56]:[^:]*:Raktapaksa:4BF2:/ -518.4 "Inferno Howl" sync / 1[56]:[^:]*:Raktapaksa:4BF1:/ window 30,30 jump 439.4 +454.6 "Ferostorm" # Ability { id: "4BE[345]", source: "Raktapaksa" } +456.6 "Air Bump" Ability { id: "4BD4", source: "Raktapaksa" } +461.5 "Thorns" Ability { id: "4BDA", source: "Raktapaksa" } window 30,30 +469.7 "Storm Of Fury" Ability { id: "4BE6", source: "Raktapaksa" } +470.7 "Eruption" Ability { id: "4BF4", source: "Raktapaksa" } +480.4 "Inferno Howl" Ability { id: "4BF1", source: "Raktapaksa" } +494.6 "Eruption" Ability { id: "4BF4", source: "Raktapaksa" } +495.6 "Hands Of Hell" Ability { id: "4CFF", source: "Raktapaksa" } window 30,30 +499.5 "Heat Burst" Ability { id: "4C1E", source: "Raktapaksa" } +506.2 "Instant Incineration" Ability { id: "4BED", source: "Raktapaksa" } +512.4 "Radiant Plume" Ability { id: "4BF2", source: "Raktapaksa" } +518.4 "Inferno Howl" Ability { id: "4BF1", source: "Raktapaksa" } window 30,30 jump 439.4 533.6 "Ferostorm" 535.6 "Air Bump" diff --git a/ui/raidboss/data/05-shb/raid/e6s.txt b/ui/raidboss/data/05-shb/raid/e6s.txt index 3a9dfed932..5d2f6fcd4e 100644 --- a/ui/raidboss/data/05-shb/raid/e6s.txt +++ b/ui/raidboss/data/05-shb/raid/e6s.txt @@ -8,132 +8,132 @@ hideall "--sync--" ### Phase 1: Garuda 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -18.0 "Superstorm" sync / 1[56]:[^:]*:Garuda:4BF7:/ window 18,20 -27.1 "Occluded Front" sync / 1[56]:[^:]*:Garuda:4BD2:/ -36.2 "Wind Cutter" sync / 1[56]:[^:]*:Tumultuous Nexus:4C02:/ -39.2 "Storm Of Fury" sync / 1[56]:[^:]*:Garuda:4C01:/ -46.8 "Air Bump" sync / 1[56]:[^:]*:Garuda:4BF9:/ -64.0 "Ferostorm" sync / 1[56]:[^:]*:Garuda:4BFD:/ -73.6 "Downburst" sync / 1[56]:[^:]*:Garuda:4BFB:/ -76.1 "Air Bump" sync / 1[56]:[^:]*:Garuda:4BF9:/ -88.0 "Vacuum Slice" sync / 1[56]:[^:]*:Garuda:4BF5:/ -95.2 "Occluded Front" sync / 1[56]:[^:]*:Garuda:4BD2:/ -103.3 "Storm Of Fury" sync / 1[56]:[^:]*:Garuda:4C01:/ -104.7 "Irresistible Pull" sync / 1[56]:[^:]*:Garuda:4BF6:/ -105.5 "Explosions" #sync / 1[56]:[^:]*:Tumultuous Nexus:4C03:/ -110.8 "Ferostorm" sync / 1[56]:[^:]*:Garuda:4BFD:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +18.0 "Superstorm" Ability { id: "4BF7", source: "Garuda" } window 18,20 +27.1 "Occluded Front" Ability { id: "4BD2", source: "Garuda" } +36.2 "Wind Cutter" Ability { id: "4C02", source: "Tumultuous Nexus" } +39.2 "Storm Of Fury" Ability { id: "4C01", source: "Garuda" } +46.8 "Air Bump" Ability { id: "4BF9", source: "Garuda" } +64.0 "Ferostorm" Ability { id: "4BFD", source: "Garuda" } +73.6 "Downburst" Ability { id: "4BFB", source: "Garuda" } +76.1 "Air Bump" Ability { id: "4BF9", source: "Garuda" } +88.0 "Vacuum Slice" Ability { id: "4BF5", source: "Garuda" } +95.2 "Occluded Front" Ability { id: "4BD2", source: "Garuda" } +103.3 "Storm Of Fury" Ability { id: "4C01", source: "Garuda" } +104.7 "Irresistible Pull" Ability { id: "4BF6", source: "Garuda" } +105.5 "Explosions" #Ability { id: "4C03", source: "Tumultuous Nexus" } +110.8 "Ferostorm" Ability { id: "4BFD", source: "Garuda" } 119.0 "--untargetable--" ### Phase 2: Ifrit -122.0 "Touchdown" sync / 1[56]:[^:]*:Ifrit:4C09:/ -135.3 "Hands Of Flame" sync / 1[56]:[^:]*:Ifrit:4C0A:/ -139.6 "Eruption" sync / 1[56]:[^:]*:Ifrit:4C17:/ -143.5 "Instant Incineration" sync / 1[56]:[^:]*:Ifrit:4C0E:/ -147.1 "Meteor Strike" sync / 1[56]:[^:]*:Ifrit:4C0F:/ -159.2 "Inferno Howl" sync / 1[56]:[^:]*:Ifrit:4C14:/ -172.3 "Hands Of Hell" sync / 1[56]:[^:]*:Ifrit:4D01:/ -176.9 "Eruption" sync / 1[56]:[^:]*:Ifrit:4C17:/ -184.7 "Strike Spark" sync / 1[56]:[^:]*:Ifrit:4BD3:/ -187.9 "Call Of The Inferno" sync / 1[56]:[^:]*:Ifrit:4C12:/ -197.1 "Hot Foot" sync / 1[56]:[^:]*:Ifrit:4C11:/ -198.5 "Eruption" sync / 1[56]:[^:]*:Ifrit:4C17:/ -215.1 "Hands Of Hell" sync / 1[56]:[^:]*:Ifrit:4D01:/ -219.8 "Eruption" sync / 1[56]:[^:]*:Ifrit:4C17:/ -223.9 "Hands Of Flame" sync / 1[56]:[^:]*:Ifrit:4C0A:/ -228.2 "Eruption" sync / 1[56]:[^:]*:Ifrit:4C17:/ -232.1 "Instant Incineration" sync / 1[56]:[^:]*:Ifrit:4C0E:/ -235.7 "Meteor Strike" sync / 1[56]:[^:]*:Ifrit:4C0F:/ +122.0 "Touchdown" Ability { id: "4C09", source: "Ifrit" } +135.3 "Hands Of Flame" Ability { id: "4C0A", source: "Ifrit" } +139.6 "Eruption" Ability { id: "4C17", source: "Ifrit" } +143.5 "Instant Incineration" Ability { id: "4C0E", source: "Ifrit" } +147.1 "Meteor Strike" Ability { id: "4C0F", source: "Ifrit" } +159.2 "Inferno Howl" Ability { id: "4C14", source: "Ifrit" } +172.3 "Hands Of Hell" Ability { id: "4D01", source: "Ifrit" } +176.9 "Eruption" Ability { id: "4C17", source: "Ifrit" } +184.7 "Strike Spark" Ability { id: "4BD3", source: "Ifrit" } +187.9 "Call Of The Inferno" Ability { id: "4C12", source: "Ifrit" } +197.1 "Hot Foot" Ability { id: "4C11", source: "Ifrit" } +198.5 "Eruption" Ability { id: "4C17", source: "Ifrit" } +215.1 "Hands Of Hell" Ability { id: "4D01", source: "Ifrit" } +219.8 "Eruption" Ability { id: "4C17", source: "Ifrit" } +223.9 "Hands Of Flame" Ability { id: "4C0A", source: "Ifrit" } +228.2 "Eruption" Ability { id: "4C17", source: "Ifrit" } +232.1 "Instant Incineration" Ability { id: "4C0E", source: "Ifrit" } +235.7 "Meteor Strike" Ability { id: "4C0F", source: "Ifrit" } 241.1 "--untargetable--" ### Phase 3: Garuda and Ifrit 245.4 "--targetable--" -248.4 "Hated Of Embers/Vortex" sync / 1[56]:[^:]*:Ifrit:4FA0:/ -253.6 "Occluded Front" sync / 1[56]:[^:]*:Garuda:4BD2:/ -262.7 "Wind Cutter" sync / 1[56]:[^:]*:Tumultuous Nexus:4C02:/ -265.1 "Hands Of Flame" sync / 1[56]:[^:]*:Ifrit:4C0A:/ -269.4 "Eruption" sync / 1[56]:[^:]*:Ifrit:4C17:/ -273.3 "Instant Incineration" sync / 1[56]:[^:]*:Ifrit:4C0E:/ -276.9 "Meteor Strike" sync / 1[56]:[^:]*:Ifrit:4C0F:/ -277.0 "Vacuum Slice" sync / 1[56]:[^:]*:Garuda:4BF5:/ -280.1 "Call Of The Inferno" sync / 1[56]:[^:]*:Ifrit:4C12:/ -284.2 "Occluded Front" sync / 1[56]:[^:]*:Garuda:4BD2:/ -291.8 "Hot Foot" sync / 1[56]:[^:]*:Ifrit:4C11:/ -293.7 "Irresistible Pull" sync / 1[56]:[^:]*:Garuda:4BF6:/ -293.7 "Eruption" sync / 1[56]:[^:]*:Ifrit:4C17:/ -294.5 "Explosion" sync / 1[56]:[^:]*:Tumultuous Nexus:4C03:/ -294.5 "Explosion" sync / 1[56]:[^:]*:Tumultuous Nexus:4C03:/ -294.5 "Explosion" sync / 1[56]:[^:]*:Tumultuous Nexus:4C03:/ -294.5 "Explosion" sync / 1[56]:[^:]*:Tumultuous Nexus:4C03:/ -298.6 "Ferostorm" sync / 1[56]:[^:]*:Garuda:4BFD:/ +248.4 "Hated Of Embers/Vortex" Ability { id: "4FA0", source: "Ifrit" } +253.6 "Occluded Front" Ability { id: "4BD2", source: "Garuda" } +262.7 "Wind Cutter" Ability { id: "4C02", source: "Tumultuous Nexus" } +265.1 "Hands Of Flame" Ability { id: "4C0A", source: "Ifrit" } +269.4 "Eruption" Ability { id: "4C17", source: "Ifrit" } +273.3 "Instant Incineration" Ability { id: "4C0E", source: "Ifrit" } +276.9 "Meteor Strike" Ability { id: "4C0F", source: "Ifrit" } +277.0 "Vacuum Slice" Ability { id: "4BF5", source: "Garuda" } +280.1 "Call Of The Inferno" Ability { id: "4C12", source: "Ifrit" } +284.2 "Occluded Front" Ability { id: "4BD2", source: "Garuda" } +291.8 "Hot Foot" Ability { id: "4C11", source: "Ifrit" } +293.7 "Irresistible Pull" Ability { id: "4BF6", source: "Garuda" } +293.7 "Eruption" Ability { id: "4C17", source: "Ifrit" } +294.5 "Explosion" Ability { id: "4C03", source: "Tumultuous Nexus" } +294.5 "Explosion" Ability { id: "4C03", source: "Tumultuous Nexus" } +294.5 "Explosion" Ability { id: "4C03", source: "Tumultuous Nexus" } +294.5 "Explosion" Ability { id: "4C03", source: "Tumultuous Nexus" } +298.6 "Ferostorm" Ability { id: "4BFD", source: "Garuda" } 303.2 "--untargetable--" ### Phase 4: Raktapaksa -309.6 "--sync--" sync / 1[56]:[^:]*:Raktapaksa:4D55:/ -320.4 "Firestorm" sync / 1[56]:[^:]*:Raktapaksa:4BF8:/ window 350,5 +309.6 "--sync--" Ability { id: "4D55", source: "Raktapaksa" } +320.4 "Firestorm" Ability { id: "4BF8", source: "Raktapaksa" } window 350,5 324.5 "--targetable--" -343.8 "Hands Of Hell" sync / 1[56]:[^:]*:Raktapaksa:4D01:/ -348.1 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C0D:/ -348.3 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4C17:/ -361.1 "Hands Of Hell" sync / 1[56]:[^:]*:Raktapaksa:4D01:/ -365.5 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C0D:/ -365.7 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4C17:/ -376.5 "Inferno Howl" sync / 1[56]:[^:]*:Raktapaksa:4C14:/ -384.1 "Air Bump" sync / 1[56]:[^:]*:Raktapaksa:4BF9:/ -387.1 "Ferostorm" sync / 1[56]:[^:]*:Raktapaksa:4C06:/ +343.8 "Hands Of Hell" Ability { id: "4D01", source: "Raktapaksa" } +348.1 "Heat Burst" Ability { id: "4C0D", source: "Raktapaksa" } +348.3 "Eruption" Ability { id: "4C17", source: "Raktapaksa" } +361.1 "Hands Of Hell" Ability { id: "4D01", source: "Raktapaksa" } +365.5 "Heat Burst" Ability { id: "4C0D", source: "Raktapaksa" } +365.7 "Eruption" Ability { id: "4C17", source: "Raktapaksa" } +376.5 "Inferno Howl" Ability { id: "4C14", source: "Raktapaksa" } +384.1 "Air Bump" Ability { id: "4BF9", source: "Raktapaksa" } +387.1 "Ferostorm" Ability { id: "4C06", source: "Raktapaksa" } -394.8 "Strike Spark" sync / 1[56]:[^:]*:Raktapaksa:4BD3:/ -398.0 "Call Of The Inferno" sync / 1[56]:[^:]*:Raktapaksa:4C12:/ -407.2 "Hot Foot" sync / 1[56]:[^:]*:Raktapaksa:4C11:/ -408.6 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4C17:/ -411.0 "Hands Of Flame" sync / 1[56]:[^:]*:Raktapaksa:4C0A:/ -415.0 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C0D:/ -415.3 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4C17:/ -419.2 "Instant Incineration" sync / 1[56]:[^:]*:Raktapaksa:4C0E:/ -423.0 "Meteor Strike" sync / 1[56]:[^:]*:Raktapaksa:4C0F:/ -436.7 "Downburst" sync / 1[56]:[^:]*:Raktapaksa:4BFC:/ +394.8 "Strike Spark" Ability { id: "4BD3", source: "Raktapaksa" } +398.0 "Call Of The Inferno" Ability { id: "4C12", source: "Raktapaksa" } +407.2 "Hot Foot" Ability { id: "4C11", source: "Raktapaksa" } +408.6 "Eruption" Ability { id: "4C17", source: "Raktapaksa" } +411.0 "Hands Of Flame" Ability { id: "4C0A", source: "Raktapaksa" } +415.0 "Heat Burst" Ability { id: "4C0D", source: "Raktapaksa" } +415.3 "Eruption" Ability { id: "4C17", source: "Raktapaksa" } +419.2 "Instant Incineration" Ability { id: "4C0E", source: "Raktapaksa" } +423.0 "Meteor Strike" Ability { id: "4C0F", source: "Raktapaksa" } +436.7 "Downburst" Ability { id: "4BFC", source: "Raktapaksa" } 436.7 "--untargetable--" 441.0 "--targetable--" -445.2 "--sync--" sync / 1[56]:[^:]*:Raktapaksa:4C19:/ -449.2 "Radiant Plume" sync / 1[56]:[^:]*:Raktapaksa:4C15:/ -457.3 "Blaze 1" #sync / 1[56]:[^:]*:Twisting Blaze:4C1B:/ -459.4 "Blaze 2" #sync / 1[56]:[^:]*:Twisting Blaze:4C1B:/ -459.8 "Wind Cutter" #sync / 1[56]:[^:]*:Tumultuous Nexus:4C02:/ -461.5 "Blaze 3" #sync / 1[56]:[^:]*:Twisting Blaze:4C1B:/ -462.8 "Wind Cutter" #sync / 1[56]:[^:]*:Tumultuous Nexus:4C02:/ -463.6 "Blaze 4" #sync / 1[56]:[^:]*:Twisting Blaze:4C1B:/ -465.7 "Blaze 5" #sync / 1[56]:[^:]*:Twisting Blaze:4C1B:/ -465.8 "Wind Cutter" #sync / 1[56]:[^:]*:Tumultuous Nexus:4C02:/ -472.3 "Spread Of Fire" sync / 1[56]:[^:]*:Raktapaksa:4C18:/ -472.8 "Air Bump" sync / 1[56]:[^:]*:Raktapaksa:4BF9:/ -476.0 "Conflag Strike" sync / 1[56]:[^:]*:Raktapaksa:4C10:/ +445.2 "--sync--" Ability { id: "4C19", source: "Raktapaksa" } +449.2 "Radiant Plume" Ability { id: "4C15", source: "Raktapaksa" } +457.3 "Blaze 1" #Ability { id: "4C1B", source: "Twisting Blaze" } +459.4 "Blaze 2" #Ability { id: "4C1B", source: "Twisting Blaze" } +459.8 "Wind Cutter" #Ability { id: "4C02", source: "Tumultuous Nexus" } +461.5 "Blaze 3" #Ability { id: "4C1B", source: "Twisting Blaze" } +462.8 "Wind Cutter" #Ability { id: "4C02", source: "Tumultuous Nexus" } +463.6 "Blaze 4" #Ability { id: "4C1B", source: "Twisting Blaze" } +465.7 "Blaze 5" #Ability { id: "4C1B", source: "Twisting Blaze" } +465.8 "Wind Cutter" #Ability { id: "4C02", source: "Tumultuous Nexus" } +472.3 "Spread Of Fire" Ability { id: "4C18", source: "Raktapaksa" } +472.8 "Air Bump" Ability { id: "4BF9", source: "Raktapaksa" } +476.0 "Conflag Strike" Ability { id: "4C10", source: "Raktapaksa" } -490.2 "Occluded Front" sync / 1[56]:[^:]*:Raktapaksa:4E4C:/ -494.7 "Air Bump" sync / 1[56]:[^:]*:Raktapaksa:4BF9:/ -499.2 "Wind Cutter" sync / 1[56]:[^:]*:Tumultuous Nexus:4C02:/ -502.2 "Storm Of Fury" sync / 1[56]:[^:]*:Raktapaksa:4C08:/ -509.4 "Inferno Howl" sync / 1[56]:[^:]*:Raktapaksa:4C14:/ -520.5 "Occluded Front" sync / 1[56]:[^:]*:Raktapaksa:4E4C:/ -529.6 "Wind Cutter" sync / 1[56]:[^:]*:Tumultuous Nexus:4C02:/ +490.2 "Occluded Front" Ability { id: "4E4C", source: "Raktapaksa" } +494.7 "Air Bump" Ability { id: "4BF9", source: "Raktapaksa" } +499.2 "Wind Cutter" Ability { id: "4C02", source: "Tumultuous Nexus" } +502.2 "Storm Of Fury" Ability { id: "4C08", source: "Raktapaksa" } +509.4 "Inferno Howl" Ability { id: "4C14", source: "Raktapaksa" } +520.5 "Occluded Front" Ability { id: "4E4C", source: "Raktapaksa" } +529.6 "Wind Cutter" Ability { id: "4C02", source: "Tumultuous Nexus" } -530.6 "Hands Of Hell" sync / 1[56]:[^:]*:Raktapaksa:4D01:/ -535.0 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C0D:/ -535.2 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4C17:/ -546.6 "Air Bump" sync / 1[56]:[^:]*:Raktapaksa:4BF9:/ +530.6 "Hands Of Hell" Ability { id: "4D01", source: "Raktapaksa" } +535.0 "Heat Burst" Ability { id: "4C0D", source: "Raktapaksa" } +535.2 "Eruption" Ability { id: "4C17", source: "Raktapaksa" } +546.6 "Air Bump" Ability { id: "4BF9", source: "Raktapaksa" } -548.1 "Hands Of Hell" sync / 1[56]:[^:]*:Raktapaksa:4D01:/ -552.4 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C0D:/ -552.6 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4C17:/ -556.7 "Hands Of Flame" sync / 1[56]:[^:]*:Raktapaksa:4C0A:/ -560.7 "Heat Burst" sync / 1[56]:[^:]*:Raktapaksa:4C0D:/ -561.0 "Eruption" sync / 1[56]:[^:]*:Raktapaksa:4C17:/ -565.0 "Instant Incineration" sync / 1[56]:[^:]*:Raktapaksa:4C0E:/ -568.7 "Meteor Strike" sync / 1[56]:[^:]*:Raktapaksa:4C0F:/ -586.4 "Ferostorm" sync / 1[56]:[^:]*:Raktapaksa:4C06:/ -594.5 "Ferostorm" sync / 1[56]:[^:]*:Raktapaksa:4C06:/ +548.1 "Hands Of Hell" Ability { id: "4D01", source: "Raktapaksa" } +552.4 "Heat Burst" Ability { id: "4C0D", source: "Raktapaksa" } +552.6 "Eruption" Ability { id: "4C17", source: "Raktapaksa" } +556.7 "Hands Of Flame" Ability { id: "4C0A", source: "Raktapaksa" } +560.7 "Heat Burst" Ability { id: "4C0D", source: "Raktapaksa" } +561.0 "Eruption" Ability { id: "4C17", source: "Raktapaksa" } +565.0 "Instant Incineration" Ability { id: "4C0E", source: "Raktapaksa" } +568.7 "Meteor Strike" Ability { id: "4C0F", source: "Raktapaksa" } +586.4 "Ferostorm" Ability { id: "4C06", source: "Raktapaksa" } +594.5 "Ferostorm" Ability { id: "4C06", source: "Raktapaksa" } -603.3 "Downburst" sync / 1[56]:[^:]*:Raktapaksa:4BFC:/ +603.3 "Downburst" Ability { id: "4BFC", source: "Raktapaksa" } 603.3 "--untargetable--" 607.6 "--targetable--" -619.6 "Conflag Strike Enrage" sync / 1[56]:[^:]*:Raktapaksa:4C1C:/ +619.6 "Conflag Strike Enrage" Ability { id: "4C1C", source: "Raktapaksa" } diff --git a/ui/raidboss/data/05-shb/raid/e7n.txt b/ui/raidboss/data/05-shb/raid/e7n.txt index 159715c9c2..4baac59b79 100644 --- a/ui/raidboss/data/05-shb/raid/e7n.txt +++ b/ui/raidboss/data/05-shb/raid/e7n.txt @@ -7,89 +7,89 @@ hideall "--sync--" # -ii 4C30 4C32 4C33 4C36 4C3A 4C49 4D0A 4D0B # Opening block -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.8 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4C52:/ window 12.8,30 -25.0 "Unshadowed Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C51:/ -37.8 "Words of Motion" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2B:/ window 30,30 -49.6 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C3C:/ -52.6 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C3C:/ -55.5 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4CF8:/ window 20,20 -72.7 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:(4E63|4C3C):/ -75.7 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:(4E63|4C3C):/ -78.7 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C40:/ -81.7 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C40:/ -88.7 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4CF8:/ -104.9 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:(4E63|4C3C):/ -107.9 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:(4E63|4C3C):/ -110.8 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C40:/ -113.8 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C40:/ -124.6 "Away with Thee" sync / 1[56]:[^:]*:The Idol Of Darkness:4C39:/ window 30,30 -141.8 "False Twilight" sync / 1[56]:[^:]*:The Idol Of Darkness:4C59:/ -145.9 "Stygian Sword" sync / 1[56]:[^:]*:The Idol Of Darkness:4C55:/ -150.9 "Silver Sledge" sync / 1[56]:[^:]*:The Idol Of Darkness:4C54:/ -157.9 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4C52:/ -165.5 "Unshadowed Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C51:/ -175.7 "Unjoined Aspect" sync / 1[56]:[^:]*:The Idol Of Darkness:4C3B:/ window 30,30 -184.4 "Words of Night" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2C:/ -196.2 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C3[CD]:/ -203.3 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C2[23]:/ -210.3 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C2[23]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.8 "Empty Wave" Ability { id: "4C52", source: "The Idol Of Darkness" } window 12.8,30 +25.0 "Unshadowed Stake" Ability { id: "4C51", source: "The Idol Of Darkness" } +37.8 "Words of Motion" Ability { id: "4C2B", source: "The Idol Of Darkness" } window 30,30 +49.6 "Light's Course" # Ability { id: "4C3C", source: "Unforgiven Idolatry" } +52.6 "Light's Course" # Ability { id: "4C3C", source: "Unforgiven Idolatry" } +55.5 "Betwixt Worlds" Ability { id: "4CF8", source: "The Idol Of Darkness" } window 20,20 +72.7 "Light's Course" # Ability { id: ["4E63", "4C3C"], source: "Unforgiven Idolatry" } +75.7 "Light's Course" # Ability { id: ["4E63", "4C3C"], source: "Unforgiven Idolatry" } +78.7 "Light's Course" # Ability { id: "4C40", source: "Unforgiven Idolatry" } +81.7 "Light's Course" # Ability { id: "4C40", source: "Unforgiven Idolatry" } +88.7 "Betwixt Worlds" Ability { id: "4CF8", source: "The Idol Of Darkness" } +104.9 "Light's Course" # Ability { id: ["4E63", "4C3C"], source: "Unforgiven Idolatry" } +107.9 "Light's Course" # Ability { id: ["4E63", "4C3C"], source: "Unforgiven Idolatry" } +110.8 "Light's Course" # Ability { id: "4C40", source: "Unforgiven Idolatry" } +113.8 "Light's Course" # Ability { id: "4C40", source: "Unforgiven Idolatry" } +124.6 "Away with Thee" Ability { id: "4C39", source: "The Idol Of Darkness" } window 30,30 +141.8 "False Twilight" Ability { id: "4C59", source: "The Idol Of Darkness" } +145.9 "Stygian Sword" Ability { id: "4C55", source: "The Idol Of Darkness" } +150.9 "Silver Sledge" Ability { id: "4C54", source: "The Idol Of Darkness" } +157.9 "Empty Wave" Ability { id: "4C52", source: "The Idol Of Darkness" } +165.5 "Unshadowed Stake" Ability { id: "4C51", source: "The Idol Of Darkness" } +175.7 "Unjoined Aspect" Ability { id: "4C3B", source: "The Idol Of Darkness" } window 30,30 +184.4 "Words of Night" Ability { id: "4C2C", source: "The Idol Of Darkness" } +196.2 "Dark's Course/Light's Course" # Ability { id: "4C3[CD]", source: "Unforgiven Idolatry" } +203.3 "Dark's Course/Light's Course" # Ability { id: "4C2[23]", source: "Unforgiven Idolatry" } +210.3 "Dark's Course/Light's Course" # Ability { id: "4C2[23]", source: "Unforgiven Idolatry" } 219.1 "--untargetable--" # Intermission block 226.3 "--targetable--" -236.8 "Away with Thee" sync / 1[56]:[^:]*:The Idol Of Darkness:(4C39|4E7E):/ window 30,30 -251.7 "Strength in Numbers" sync / 1[56]:[^:]*:Idolatry:4C4[CD]:/ window 251.7,5 -262.3 "Silver Shot" sync / 1[56]:[^:]*:The Idol Of Darkness:4E7[CD]:/ -270.3 "Silver Shot" sync / 1[56]:[^:]*:The Idol Of Darkness:4E7[CD]:/ -271.7 "Strength in Numbers" sync / 1[56]:[^:]*:Idolatry:4C4[CD]:/ +236.8 "Away with Thee" Ability { id: ["4C39", "4E7E"], source: "The Idol Of Darkness" } window 30,30 +251.7 "Strength in Numbers" Ability { id: "4C4[CD]", source: "Idolatry" } window 251.7,5 +262.3 "Silver Shot" Ability { id: "4E7[CD]", source: "The Idol Of Darkness" } +270.3 "Silver Shot" Ability { id: "4E7[CD]", source: "The Idol Of Darkness" } +271.7 "Strength in Numbers" Ability { id: "4C4[CD]", source: "Idolatry" } 281.7 "Explosion enrage?" # Rotation block. 135.6 seconds -393.3 "--sync--" sync / 14:[^:]*:The Idol Of Darkness:(4E5[46]|4C53):/ window 400,20 -400.0 "Empty Flood" sync / 1[56]:[^:]*:The Idol Of Darkness:(4E5[46]|4C53):/ window 400,20 +393.3 "--sync--" StartsUsing { id: ["4E5[46]", "4C53"], source: "The Idol Of Darkness" } window 400,20 +400.0 "Empty Flood" Ability { id: ["4E5[46]", "4C53"], source: "The Idol Of Darkness" } window 400,20 410.3 "--targetable--" -414.4 "Unjoined Aspect" sync / 1[56]:[^:]*:The Idol Of Darkness:4C3B:/ -419.6 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4CF8:/ -424.6 "Words of Night" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2C:/ window 30,30 -436.8 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C(3[CDE]|4[013]):/ -439.8 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C(3[CDE]|4[013]):/ -449.9 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C2[23]:/ -460.8 "Away with Thee" sync / 1[56]:[^:]*:The Idol Of Darkness:4C39:/ window 30,30 -475.9 "Black Smoke" sync / 1[56]:[^:]*:The Idol Of Darkness:4C56:/ -485.1 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4C52:/ -492.7 "Unshadowed Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C51:/ -501.4 "Words of Motion" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2B:/ -505.6 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4CF8:/ window 30,30 -522.8 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C3[CE]:/ -525.8 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C3[CE]:/ -528.9 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C40:/ -532.0 "False Twilight" sync / 1[56]:[^:]*:The Idol Of Darkness:4C59:/ -532.1 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C40:/ -536.0 "Stygian Sword" sync / 1[56]:[^:]*:The Idol Of Darkness:4C55:/ window 30,30 -541.0 "Silver Sledge" sync / 1[56]:[^:]*:The Idol Of Darkness:4C54:/ +414.4 "Unjoined Aspect" Ability { id: "4C3B", source: "The Idol Of Darkness" } +419.6 "Betwixt Worlds" Ability { id: "4CF8", source: "The Idol Of Darkness" } +424.6 "Words of Night" Ability { id: "4C2C", source: "The Idol Of Darkness" } window 30,30 +436.8 "Dark's Course/Light's Course" # Ability { id: "4C(3[CDE]|4[013])", source: "Unforgiven Idolatry" } +439.8 "Dark's Course/Light's Course" # Ability { id: "4C(3[CDE]|4[013])", source: "Unforgiven Idolatry" } +449.9 "Dark's Course/Light's Course" # Ability { id: "4C2[23]", source: "Unforgiven Idolatry" } +460.8 "Away with Thee" Ability { id: "4C39", source: "The Idol Of Darkness" } window 30,30 +475.9 "Black Smoke" Ability { id: "4C56", source: "The Idol Of Darkness" } +485.1 "Empty Wave" Ability { id: "4C52", source: "The Idol Of Darkness" } +492.7 "Unshadowed Stake" Ability { id: "4C51", source: "The Idol Of Darkness" } +501.4 "Words of Motion" Ability { id: "4C2B", source: "The Idol Of Darkness" } +505.6 "Betwixt Worlds" Ability { id: "4CF8", source: "The Idol Of Darkness" } window 30,30 +522.8 "Light's Course" # Ability { id: "4C3[CE]", source: "Unforgiven Idolatry" } +525.8 "Light's Course" # Ability { id: "4C3[CE]", source: "Unforgiven Idolatry" } +528.9 "Light's Course" # Ability { id: "4C40", source: "Unforgiven Idolatry" } +532.0 "False Twilight" Ability { id: "4C59", source: "The Idol Of Darkness" } +532.1 "Light's Course" # Ability { id: "4C40", source: "Unforgiven Idolatry" } +536.0 "Stygian Sword" Ability { id: "4C55", source: "The Idol Of Darkness" } window 30,30 +541.0 "Silver Sledge" Ability { id: "4C54", source: "The Idol Of Darkness" } -550.0 "Unjoined Aspect" sync / 1[56]:[^:]*:The Idol Of Darkness:4C3B:/ -555.2 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4CF8:/ -560.2 "Words of Night" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2C:/ window 30,30 -572.4 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C(3[CDE]|4[013]):/ -575.4 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C(3[CDE]|4[013]):/ -585.5 "Dark's Course/Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C2[23]:/ -596.4 "Away with Thee" sync / 1[56]:[^:]*:The Idol Of Darkness:4C39:/ window 30,30 -611.5 "Black Smoke" sync / 1[56]:[^:]*:The Idol Of Darkness:4C56:/ -620.7 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4C52:/ -628.3 "Unshadowed Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C51:/ -637.0 "Words of Motion" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2B:/ -641.2 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4CF8:/ window 30,30 -658.4 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C3[CE]:/ -661.4 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C3[CE]:/ -664.5 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C40:/ -667.6 "False Twilight" sync / 1[56]:[^:]*:The Idol Of Darkness:4C59:/ -667.7 "Light's Course" # sync / 1[56]:[^:]*:Unforgiven Idolatry:4C40:/ -671.6 "Stygian Sword" sync / 1[56]:[^:]*:The Idol Of Darkness:4C55:/ window 30,30 -676.6 "Silver Sledge" sync / 1[56]:[^:]*:The Idol Of Darkness:4C54:/ jump 541.0 +550.0 "Unjoined Aspect" Ability { id: "4C3B", source: "The Idol Of Darkness" } +555.2 "Betwixt Worlds" Ability { id: "4CF8", source: "The Idol Of Darkness" } +560.2 "Words of Night" Ability { id: "4C2C", source: "The Idol Of Darkness" } window 30,30 +572.4 "Dark's Course/Light's Course" # Ability { id: "4C(3[CDE]|4[013])", source: "Unforgiven Idolatry" } +575.4 "Dark's Course/Light's Course" # Ability { id: "4C(3[CDE]|4[013])", source: "Unforgiven Idolatry" } +585.5 "Dark's Course/Light's Course" # Ability { id: "4C2[23]", source: "Unforgiven Idolatry" } +596.4 "Away with Thee" Ability { id: "4C39", source: "The Idol Of Darkness" } window 30,30 +611.5 "Black Smoke" Ability { id: "4C56", source: "The Idol Of Darkness" } +620.7 "Empty Wave" Ability { id: "4C52", source: "The Idol Of Darkness" } +628.3 "Unshadowed Stake" Ability { id: "4C51", source: "The Idol Of Darkness" } +637.0 "Words of Motion" Ability { id: "4C2B", source: "The Idol Of Darkness" } +641.2 "Betwixt Worlds" Ability { id: "4CF8", source: "The Idol Of Darkness" } window 30,30 +658.4 "Light's Course" # Ability { id: "4C3[CE]", source: "Unforgiven Idolatry" } +661.4 "Light's Course" # Ability { id: "4C3[CE]", source: "Unforgiven Idolatry" } +664.5 "Light's Course" # Ability { id: "4C40", source: "Unforgiven Idolatry" } +667.6 "False Twilight" Ability { id: "4C59", source: "The Idol Of Darkness" } +667.7 "Light's Course" # Ability { id: "4C40", source: "Unforgiven Idolatry" } +671.6 "Stygian Sword" Ability { id: "4C55", source: "The Idol Of Darkness" } window 30,30 +676.6 "Silver Sledge" Ability { id: "4C54", source: "The Idol Of Darkness" } jump 541.0 685.6 "Unjoined Aspect" 690.8 "Betwixt Worlds" diff --git a/ui/raidboss/data/05-shb/raid/e7s.txt b/ui/raidboss/data/05-shb/raid/e7s.txt index 70f97677da..3b6a730e80 100644 --- a/ui/raidboss/data/05-shb/raid/e7s.txt +++ b/ui/raidboss/data/05-shb/raid/e7s.txt @@ -10,135 +10,135 @@ hideall "--Reset--" hideall "--sync--" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -13.0 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4C8A:/ window 13,20 -25.2 "Unshadowed Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C88:/ -27.8 "Silver Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C89:/ -40.4 "Words Of Motion" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2B:/ -44.6 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4CF9:/ -51.7 "--sync--" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C37:/ -54.7 "--sync--" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C37:/ -59.7 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C62:/ -62.7 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C62:/ -71.3 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C63:/ -74.3 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C63:/ -81.9 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C63:/ -84.9 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C63:/ -92.5 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C63:/ -95.5 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C64:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +13.0 "Empty Wave" Ability { id: "4C8A", source: "The Idol Of Darkness" } window 13,20 +25.2 "Unshadowed Stake" Ability { id: "4C88", source: "The Idol Of Darkness" } +27.8 "Silver Stake" Ability { id: "4C89", source: "The Idol Of Darkness" } +40.4 "Words Of Motion" Ability { id: "4C2B", source: "The Idol Of Darkness" } +44.6 "Betwixt Worlds" Ability { id: "4CF9", source: "The Idol Of Darkness" } +51.7 "--sync--" Ability { id: "4C37", source: "Unforgiven Idolatry" } +54.7 "--sync--" Ability { id: "4C37", source: "Unforgiven Idolatry" } +59.7 "Light's Course" #Ability { id: "4C62", source: "Unforgiven Idolatry" } +62.7 "Light's Course" #Ability { id: "4C62", source: "Unforgiven Idolatry" } +71.3 "Light's Course" #Ability { id: "4C63", source: "Unforgiven Idolatry" } +74.3 "Light's Course" #Ability { id: "4C63", source: "Unforgiven Idolatry" } +81.9 "Light's Course" #Ability { id: "4C63", source: "Unforgiven Idolatry" } +84.9 "Light's Course" #Ability { id: "4C63", source: "Unforgiven Idolatry" } +92.5 "Light's Course" #Ability { id: "4C63", source: "Unforgiven Idolatry" } +95.5 "Light's Course" #Ability { id: "4C64", source: "Unforgiven Idolatry" } -96.5 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C30:/ -105.4 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4C6B:/ -108.5 "Shockwave" sync / 1[56]:[^:]*:The Idol Of Darkness:4C6C:/ -111.0 "Words Of Spite" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2F:/ -113.7 "--sync--" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C37:/ -116.7 "Away With Thee" sync / 1[56]:[^:]*:The Idol Of Darkness:4C39:/ -122.9 "Silver Sledge" sync / 1[56]:[^:]*:The Idol Of Darkness:4C26:/ -130.9 "Fate's Course" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C61:/ -131.0 "Silver Sledge" sync / 1[56]:[^:]*:The Idol Of Darkness:4C27:/ +96.5 "--sync--" Ability { id: "4C30", source: "The Idol Of Darkness" } +105.4 "Betwixt Worlds" Ability { id: "4C6B", source: "The Idol Of Darkness" } +108.5 "Shockwave" Ability { id: "4C6C", source: "The Idol Of Darkness" } +111.0 "Words Of Spite" Ability { id: "4C2F", source: "The Idol Of Darkness" } +113.7 "--sync--" Ability { id: "4C37", source: "Unforgiven Idolatry" } +116.7 "Away With Thee" Ability { id: "4C39", source: "The Idol Of Darkness" } +122.9 "Silver Sledge" Ability { id: "4C26", source: "The Idol Of Darkness" } +130.9 "Fate's Course" Ability { id: "4C61", source: "Unforgiven Idolatry" } +131.0 "Silver Sledge" Ability { id: "4C27", source: "The Idol Of Darkness" } -132.1 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C30:/ -139.9 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4C8A:/ -147.5 "Unshadowed Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C88:/ -150.1 "Silver Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C89:/ -159.1 "Words Of Motion" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2B:/ -162.3 "--sync--" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C37:/ -163.3 "False Moonlight" sync / 1[56]:[^:]*:The Idol Of Darkness:4C98:/ -166.5 "--sync--" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C37:/ -167.4 "Silver Sword" sync / 1[56]:[^:]*:The Idol Of Darkness:4C8E:/ -170.4 "Dark's Course" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C5A:/ -170.4 "Silver Scourge" sync / 1[56]:[^:]*:The Idol Of Darkness:4C93:/ -174.5 "Dark's Course" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C5A:/ -177.5 "Away With Thee" sync / 1[56]:[^:]*:The Idol Of Darkness:4C39:/ +132.1 "--sync--" Ability { id: "4C30", source: "The Idol Of Darkness" } +139.9 "Empty Wave" Ability { id: "4C8A", source: "The Idol Of Darkness" } +147.5 "Unshadowed Stake" Ability { id: "4C88", source: "The Idol Of Darkness" } +150.1 "Silver Stake" Ability { id: "4C89", source: "The Idol Of Darkness" } +159.1 "Words Of Motion" Ability { id: "4C2B", source: "The Idol Of Darkness" } +162.3 "--sync--" Ability { id: "4C37", source: "Unforgiven Idolatry" } +163.3 "False Moonlight" Ability { id: "4C98", source: "The Idol Of Darkness" } +166.5 "--sync--" Ability { id: "4C37", source: "Unforgiven Idolatry" } +167.4 "Silver Sword" Ability { id: "4C8E", source: "The Idol Of Darkness" } +170.4 "Dark's Course" Ability { id: "4C5A", source: "Unforgiven Idolatry" } +170.4 "Silver Scourge" Ability { id: "4C93", source: "The Idol Of Darkness" } +174.5 "Dark's Course" Ability { id: "4C5A", source: "Unforgiven Idolatry" } +177.5 "Away With Thee" Ability { id: "4C39", source: "The Idol Of Darkness" } -179.5 "--sync--" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C37:/ -183.7 "False Midnight" sync / 1[56]:[^:]*:The Idol Of Darkness:4C99:/ -183.7 "--sync--" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C37:/ -187.5 "Dark's Course" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C5A:/ -191.7 "Silver Sledge" sync / 1[56]:[^:]*:The Idol Of Darkness:4C8D:/ -191.7 "Silver Shot" sync / 1[56]:[^:]*:The Idol Of Darkness:4C92:/ -191.7 "Dark's Course" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C5A:/ -191.7 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C30:/ +179.5 "--sync--" Ability { id: "4C37", source: "Unforgiven Idolatry" } +183.7 "False Midnight" Ability { id: "4C99", source: "The Idol Of Darkness" } +183.7 "--sync--" Ability { id: "4C37", source: "Unforgiven Idolatry" } +187.5 "Dark's Course" Ability { id: "4C5A", source: "Unforgiven Idolatry" } +191.7 "Silver Sledge" Ability { id: "4C8D", source: "The Idol Of Darkness" } +191.7 "Silver Shot" Ability { id: "4C92", source: "The Idol Of Darkness" } +191.7 "Dark's Course" Ability { id: "4C5A", source: "Unforgiven Idolatry" } +191.7 "--sync--" Ability { id: "4C30", source: "The Idol Of Darkness" } 198.5 "--untargetable--" -198.6 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4D0A:/ +198.6 "--sync--" Ability { id: "4D0A", source: "The Idol Of Darkness" } -202.7 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C32:/ window 210,10 -203.6 "--sync--" sync / 1[56]:[^:]*:Idolatry:4C3A:/ +202.7 "--sync--" Ability { id: "4C32", source: "The Idol Of Darkness" } window 210,10 +203.6 "--sync--" Ability { id: "4C3A", source: "Idolatry" } 205.6 "--targetable--" -224.9 "Overwhelming Force" sync / 1[56]:[^:]*:Blasphemy:4C73:/ -231.8 "Insatiable Light" sync / 1[56]:[^:]*:Idolatry:4C6D:/ -239.5 "Advent Of Light" sync / 14:[^:]*:Idolatry:4C6E:/ # use start of cast for this interrupt -243.6 "Overwhelming Force" sync / 1[56]:[^:]*:Blasphemy:4C73:/ -253.7 "Overwhelming Force" sync / 1[56]:[^:]*:Blasphemy:4C73:/ -254.5 "Insatiable Light" sync / 1[56]:[^:]*:Idolatry:4C6D:/ -264.3 "Away With Thee" sync / 1[56]:[^:]*:The Idol Of Darkness:4C39:/ -268.1 "Strength In Numbers" sync / 1[56]:[^:]*:Idolatry:4C70:/ -278.2 "Insatiable Light" sync / 1[56]:[^:]*:Idolatry:4C6D:/ -290.9 "Overwhelming Force" sync / 1[56]:[^:]*:Blasphemy:4C73:/ -291.8 "Strength In Numbers" sync / 1[56]:[^:]*:Idolatry:4C7[01]:/ -302.0 "Insatiable Light" sync / 1[56]:[^:]*:Idolatry:4C6D:/ +224.9 "Overwhelming Force" Ability { id: "4C73", source: "Blasphemy" } +231.8 "Insatiable Light" Ability { id: "4C6D", source: "Idolatry" } +239.5 "Advent Of Light" StartsUsing { id: "4C6E", source: "Idolatry" } # use start of cast for this interrupt +243.6 "Overwhelming Force" Ability { id: "4C73", source: "Blasphemy" } +253.7 "Overwhelming Force" Ability { id: "4C73", source: "Blasphemy" } +254.5 "Insatiable Light" Ability { id: "4C6D", source: "Idolatry" } +264.3 "Away With Thee" Ability { id: "4C39", source: "The Idol Of Darkness" } +268.1 "Strength In Numbers" Ability { id: "4C70", source: "Idolatry" } +278.2 "Insatiable Light" Ability { id: "4C6D", source: "Idolatry" } +290.9 "Overwhelming Force" Ability { id: "4C73", source: "Blasphemy" } +291.8 "Strength In Numbers" Ability { id: "4C7[01]", source: "Idolatry" } +302.0 "Insatiable Light" Ability { id: "4C6D", source: "Idolatry" } # TODO: fix this sync up -323.4 "Unearned Envy" sync / 1[56]:[^:]*:Blasphemy:4C74:/ -325.5 "Unearned Envy" #sync / 1[56]:[^:]*:Blasphemy:4C74:/ -327.6 "Unearned Envy" #sync / 1[56]:[^:]*:Blasphemy:4C74:/ -329.7 "Unearned Envy" #sync / 1[56]:[^:]*:Blasphemy:4C74:/ -331.8 "Unearned Envy" #sync / 1[56]:[^:]*:Blasphemy:4C74:/ -333.9 "Unearned Envy" #sync / 1[56]:[^:]*:Blasphemy:4C74:/ +323.4 "Unearned Envy" Ability { id: "4C74", source: "Blasphemy" } +325.5 "Unearned Envy" #Ability { id: "4C74", source: "Blasphemy" } +327.6 "Unearned Envy" #Ability { id: "4C74", source: "Blasphemy" } +329.7 "Unearned Envy" #Ability { id: "4C74", source: "Blasphemy" } +331.8 "Unearned Envy" #Ability { id: "4C74", source: "Blasphemy" } +333.9 "Unearned Envy" #Ability { id: "4C74", source: "Blasphemy" } # TODO: explosion? -500.0 "Empty Flood" sync / 1[56]:[^:]*:The Idol Of Darkness:4C8B:/ window 500,10 -503.2 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4D0B:/ -507.3 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C32:/ +500.0 "Empty Flood" Ability { id: "4C8B", source: "The Idol Of Darkness" } window 500,10 +503.2 "--sync--" Ability { id: "4D0B", source: "The Idol Of Darkness" } +507.3 "--sync--" Ability { id: "4C32", source: "The Idol Of Darkness" } 510.3 "--targetable--" -514.4 "Unjoined Aspect" sync / 1[56]:[^:]*:The Idol Of Darkness:4C3B:/ -519.4 "Words Of Unity" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2D:/ -524.0 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C5E:/ -529.0 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C5B:/ -529.5 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C30:/ -534.8 "Words Of Entrapment" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2E:/ -550.5 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C5F:/ -550.5 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C30:/ -550.5 "White/Black Smoke" sync / 1[56]:[^:]*:The Idol Of Darkness:4C9[46]:/ -555.7 "Words Of Unity" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2D:/ -560.4 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C5E:/ -565.4 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C5B:/ -565.5 "Boundless Light" sync / 1[56]:[^:]*:Unforgiven Idolatry:4C5C:/ -565.9 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C30:/ +514.4 "Unjoined Aspect" Ability { id: "4C3B", source: "The Idol Of Darkness" } +519.4 "Words Of Unity" Ability { id: "4C2D", source: "The Idol Of Darkness" } +524.0 "--sync--" Ability { id: "4C5E", source: "The Idol Of Darkness" } +529.0 "Light's Course" #Ability { id: "4C5B", source: "Unforgiven Idolatry" } +529.5 "--sync--" Ability { id: "4C30", source: "The Idol Of Darkness" } +534.8 "Words Of Entrapment" Ability { id: "4C2E", source: "The Idol Of Darkness" } +550.5 "Light's Course" #Ability { id: "4C5F", source: "Unforgiven Idolatry" } +550.5 "--sync--" Ability { id: "4C30", source: "The Idol Of Darkness" } +550.5 "White/Black Smoke" Ability { id: "4C9[46]", source: "The Idol Of Darkness" } +555.7 "Words Of Unity" Ability { id: "4C2D", source: "The Idol Of Darkness" } +560.4 "--sync--" Ability { id: "4C5E", source: "The Idol Of Darkness" } +565.4 "Light's Course" #Ability { id: "4C5B", source: "Unforgiven Idolatry" } +565.5 "Boundless Light" Ability { id: "4C5C", source: "Unforgiven Idolatry" } +565.9 "--sync--" Ability { id: "4C30", source: "The Idol Of Darkness" } -578.8 "Unjoined Aspect" sync / 1[56]:[^:]*:The Idol Of Darkness:4C3B:/ -582.0 "Betwixt Worlds" sync / 1[56]:[^:]*:The Idol Of Darkness:4CF9:/ -587.0 "Words Of Night" sync / 1[56]:[^:]*:The Idol Of Darkness:4C2C:/ -596.6 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C62:/ -605.2 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C63:/ -610.2 "False Dawn" sync / 1[56]:[^:]*:The Idol Of Darkness:4C9A:/ -614.3 "Stygian Sword" sync / 1[56]:[^:]*:The Idol Of Darkness:4C8F:/ -614.4 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C63:/ -617.3 "Stygian Spear" sync / 1[56]:[^:]*:The Idol Of Darkness:4C91:/ -617.3 "Silver Spear" sync / 1[56]:[^:]*:The Idol Of Darkness:4C90:/ -622.4 "Light's Course" #sync / 1[56]:[^:]*:Unforgiven Idolatry:4C63:/ +578.8 "Unjoined Aspect" Ability { id: "4C3B", source: "The Idol Of Darkness" } +582.0 "Betwixt Worlds" Ability { id: "4CF9", source: "The Idol Of Darkness" } +587.0 "Words Of Night" Ability { id: "4C2C", source: "The Idol Of Darkness" } +596.6 "Light's Course" #Ability { id: "4C62", source: "Unforgiven Idolatry" } +605.2 "Light's Course" #Ability { id: "4C63", source: "Unforgiven Idolatry" } +610.2 "False Dawn" Ability { id: "4C9A", source: "The Idol Of Darkness" } +614.3 "Stygian Sword" Ability { id: "4C8F", source: "The Idol Of Darkness" } +614.4 "Light's Course" #Ability { id: "4C63", source: "Unforgiven Idolatry" } +617.3 "Stygian Spear" Ability { id: "4C91", source: "The Idol Of Darkness" } +617.3 "Silver Spear" Ability { id: "4C90", source: "The Idol Of Darkness" } +622.4 "Light's Course" #Ability { id: "4C63", source: "Unforgiven Idolatry" } -625.4 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C30:/ -636.2 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4C8A:/ -643.8 "Unshadowed Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C88:/ -646.4 "Silver Stake" sync / 1[56]:[^:]*:The Idol Of Darkness:4C89:/ +625.4 "--sync--" Ability { id: "4C30", source: "The Idol Of Darkness" } +636.2 "Empty Wave" Ability { id: "4C8A", source: "The Idol Of Darkness" } +643.8 "Unshadowed Stake" Ability { id: "4C88", source: "The Idol Of Darkness" } +646.4 "Silver Stake" Ability { id: "4C89", source: "The Idol Of Darkness" } 658.8 "--untargetable--" -658.9 "--sync--" sync / 1[56]:[^:]*:The Idol Of Darkness:4C31:/ +658.9 "--sync--" Ability { id: "4C31", source: "The Idol Of Darkness" } -668.5 "Crusade" sync / 1[56]:[^:]*:The Idol Of Darkness:4C58:/ window 700,10 +668.5 "Crusade" Ability { id: "4C58", source: "The Idol Of Darkness" } window 700,10 673.5 "--targetable--" -677.6 "Unjoined Aspect" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7A:/ -683.7 "Words Of Fervor" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7B:/ -716.9 "Threefold Grace" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7E:/ -722.6 "Threefold Grace" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7E:/ -728.3 "Threefold Grace" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7E:/ -736.6 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4CB0:/ -746.2 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4CB0:/ +677.6 "Unjoined Aspect" Ability { id: "4C7A", source: "The Idol Of Darkness" } +683.7 "Words Of Fervor" Ability { id: "4C7B", source: "The Idol Of Darkness" } +716.9 "Threefold Grace" Ability { id: "4C7E", source: "The Idol Of Darkness" } +722.6 "Threefold Grace" Ability { id: "4C7E", source: "The Idol Of Darkness" } +728.3 "Threefold Grace" Ability { id: "4C7E", source: "The Idol Of Darkness" } +736.6 "Empty Wave" Ability { id: "4CB0", source: "The Idol Of Darkness" } +746.2 "Empty Wave" Ability { id: "4CB0", source: "The Idol Of Darkness" } -755.7 "Unjoined Aspect" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7A:/ -761.9 "Words Of Fervor" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7B:/ -795.1 "Threefold Grace" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7E:/ -800.8 "Threefold Grace" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7E:/ -806.5 "Threefold Grace" sync / 1[56]:[^:]*:The Idol Of Darkness:4C7E:/ -814.8 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4CB0:/ -824.3 "Empty Wave" sync / 1[56]:[^:]*:The Idol Of Darkness:4CB0:/ +755.7 "Unjoined Aspect" Ability { id: "4C7A", source: "The Idol Of Darkness" } +761.9 "Words Of Fervor" Ability { id: "4C7B", source: "The Idol Of Darkness" } +795.1 "Threefold Grace" Ability { id: "4C7E", source: "The Idol Of Darkness" } +800.8 "Threefold Grace" Ability { id: "4C7E", source: "The Idol Of Darkness" } +806.5 "Threefold Grace" Ability { id: "4C7E", source: "The Idol Of Darkness" } +814.8 "Empty Wave" Ability { id: "4CB0", source: "The Idol Of Darkness" } +824.3 "Empty Wave" Ability { id: "4CB0", source: "The Idol Of Darkness" } diff --git a/ui/raidboss/data/05-shb/raid/e8n.txt b/ui/raidboss/data/05-shb/raid/e8n.txt index 14c6e5f617..9a2ee3c5e3 100644 --- a/ui/raidboss/data/05-shb/raid/e8n.txt +++ b/ui/raidboss/data/05-shb/raid/e8n.txt @@ -10,90 +10,90 @@ hideall "--sync--" # change the player's InCombat status. # Opening block -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.1 "--sync--" sync / 1[56]:[^:]*:Shiva:4DD7:/ window 15,5 -15.1 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:4DD7:/ -27.2 "Redress" sync / 1[56]:[^:]*:Shiva:4F4F:/ -32.4 "Shining Armor" sync / 1[56]:[^:]*:Shiva:4DF1:/ window 32.4,5 -40.4 "Axe Kick/Scythe Kick" sync / 1[56]:[^:]*:Shiva:4DE[23]:/ -52.5 "Redress" sync / 1[56]:[^:]*:Shiva:4F4E:/ -57.6 "Frost Armor" sync / 1[56]:[^:]*:Shiva:4DF0:/ -65.6 "Biting Frost/Driving Frost" sync / 1[56]:[^:]*:Shiva:4DD[BC]:/ -78.8 "Double Slap" sync / 1[56]:[^:]*:Shiva:4DDA:/ -92.0 "Diamond Frost" sync / 1[56]:[^:]*:Shiva:4DE1:/ -100.2 "Frigid Water/Frigid Stone" # sync / 1[56]:[^:]*:Shiva:4E(08|66):/ -103.1 "Icicle Impact" sync / 1[56]:[^:]*:Shiva:4E0A:/ -110.2 "Frigid Eruption" # sync / 1[56]:[^:]*:Shiva:4E09:/ -111.2 "Icicle Impact" sync / 1[56]:[^:]*:Shiva:4E0A:/ -112.3 "Frigid Eruption" # sync / 1[56]:[^:]*:Shiva:4E09:/ -114.3 "Frigid Eruption" # sync / 1[56]:[^:]*:Shiva:4E09:/ -120.1 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:4DD8:/ window 120,10 -131.2 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4DD4:/ -143.4 "Driving Frost/Biting Frost" sync / 1[56]:[^:]*:Shiva:4DD[BC]:/ -148.5 "Reflected Frost" sync / 1[56]:[^:]*:Frozen Mirror:4DF[EF]:/ -160.6 "Redress" sync / 1[56]:[^:]*:Shiva:4F4F:/ -165.7 "Shining Armor" sync / 1[56]:[^:]*:Shiva:4DF1:/ -173.7 "Axe Kick/Scythe Kick" sync / 1[56]:[^:]*:Shiva:4DE[23]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.1 "--sync--" Ability { id: "4DD7", source: "Shiva" } window 15,5 +15.1 "Absolute Zero" Ability { id: "4DD7", source: "Shiva" } +27.2 "Redress" Ability { id: "4F4F", source: "Shiva" } +32.4 "Shining Armor" Ability { id: "4DF1", source: "Shiva" } window 32.4,5 +40.4 "Axe Kick/Scythe Kick" Ability { id: "4DE[23]", source: "Shiva" } +52.5 "Redress" Ability { id: "4F4E", source: "Shiva" } +57.6 "Frost Armor" Ability { id: "4DF0", source: "Shiva" } +65.6 "Biting Frost/Driving Frost" Ability { id: "4DD[BC]", source: "Shiva" } +78.8 "Double Slap" Ability { id: "4DDA", source: "Shiva" } +92.0 "Diamond Frost" Ability { id: "4DE1", source: "Shiva" } +100.2 "Frigid Water/Frigid Stone" # Ability { id: "4E(08|66)", source: "Shiva" } +103.1 "Icicle Impact" Ability { id: "4E0A", source: "Shiva" } +110.2 "Frigid Eruption" # Ability { id: "4E09", source: "Shiva" } +111.2 "Icicle Impact" Ability { id: "4E0A", source: "Shiva" } +112.3 "Frigid Eruption" # Ability { id: "4E09", source: "Shiva" } +114.3 "Frigid Eruption" # Ability { id: "4E09", source: "Shiva" } +120.1 "Heavenly Strike" Ability { id: "4DD8", source: "Shiva" } window 120,10 +131.2 "Mirror, Mirror" Ability { id: "4DD4", source: "Shiva" } +143.4 "Driving Frost/Biting Frost" Ability { id: "4DD[BC]", source: "Shiva" } +148.5 "Reflected Frost" Ability { id: "4DF[EF]", source: "Frozen Mirror" } +160.6 "Redress" Ability { id: "4F4F", source: "Shiva" } +165.7 "Shining Armor" Ability { id: "4DF1", source: "Shiva" } +173.7 "Axe Kick/Scythe Kick" Ability { id: "4DE[23]", source: "Shiva" } 181.9 "--Untargetable--" -193.2 "Shattered World" sync / 1[56]:[^:]*:Shiva:4DE9:/ window 193.2,15 +193.2 "Shattered World" Ability { id: "4DE9", source: "Shiva" } window 193.2,15 # Intermission. Fixed length. -209.4 "Heart Asunder" sync / 1[56]:[^:]*:Mothercrystal:4E12:/ -218.1 "Stoneskin" # sync / 1[56]:[^:]*:Earthen Aether:4DEF:/ -223.5 "Heart Asunder" sync / 1[56]:[^:]*:Mothercrystal:4E12:/ -228.2 "Shock Spikes" sync / 1[56]:[^:]*:Electric Aether:4DEE:/ -233.2 "Rush" sync / 1[56]:[^:]*:Luminous Aether:4FC8:/ -237.5 "Heart Asunder" sync / 1[56]:[^:]*:Mothercrystal:4E12:/ -251.5 "Heart Asunder" sync / 1[56]:[^:]*:Mothercrystal:4E12:/ -256.2 "Shock Spikes" sync / 1[56]:[^:]*:Electric Aether:4DEE:/ -260.2 "Stoneskin" # sync / 1[56]:[^:]*:Earthen Aether:4DEF:/ -261.2 "Rush" sync / 1[56]:[^:]*:Luminous Aether:4FC8:/ +209.4 "Heart Asunder" Ability { id: "4E12", source: "Mothercrystal" } +218.1 "Stoneskin" # Ability { id: "4DEF", source: "Earthen Aether" } +223.5 "Heart Asunder" Ability { id: "4E12", source: "Mothercrystal" } +228.2 "Shock Spikes" Ability { id: "4DEE", source: "Electric Aether" } +233.2 "Rush" Ability { id: "4FC8", source: "Luminous Aether" } +237.5 "Heart Asunder" Ability { id: "4E12", source: "Mothercrystal" } +251.5 "Heart Asunder" Ability { id: "4E12", source: "Mothercrystal" } +256.2 "Shock Spikes" Ability { id: "4DEE", source: "Electric Aether" } +260.2 "Stoneskin" # Ability { id: "4DEF", source: "Earthen Aether" } +261.2 "Rush" Ability { id: "4FC8", source: "Luminous Aether" } # Post-intermission block -272.6 "Skyfall" sync / 1[56]:[^:]*:Shiva:4E13:/ window 272.6,20 +272.6 "Skyfall" Ability { id: "4E13", source: "Shiva" } window 272.6,20 287.9 "--targetable--" -306.9 "Holy" sync / 1[56]:[^:]*:Shiva:4DE[CD]:/ -321.4 "Light Rampant" sync / 1[56]:[^:]*:Shiva:4DE8:/ -329.6 "The Path of Light" sync / 1[56]:[^:]*:Shiva:4DD9:/ -332.6 "Bright Hunger" sync / 1[56]:[^:]*:Shiva:4E0C:/ -337.7 "The Path of Light" sync / 1[56]:[^:]*:Shiva:4DD9:/ -340.6 "Bright Hunger" sync / 1[56]:[^:]*:Shiva:4E0C:/ -345.9 "The Path of Light" sync / 1[56]:[^:]*:Shiva:4DD9:/ -348.6 "Bright Hunger" sync / 1[56]:[^:]*:Shiva:4E0C:/ -356.0 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4DD4:/ -368.1 "Kick/Frost" sync / 1[56]:[^:]*:Shiva:4D(D[BC]|E[23]):/ -373.2 "Reflected Kick/Frost" sync / 1[56]:[^:]*:Frozen Mirror:(4DF[EF]|4E0[01]):/ +306.9 "Holy" Ability { id: "4DE[CD]", source: "Shiva" } +321.4 "Light Rampant" Ability { id: "4DE8", source: "Shiva" } +329.6 "The Path of Light" Ability { id: "4DD9", source: "Shiva" } +332.6 "Bright Hunger" Ability { id: "4E0C", source: "Shiva" } +337.7 "The Path of Light" Ability { id: "4DD9", source: "Shiva" } +340.6 "Bright Hunger" Ability { id: "4E0C", source: "Shiva" } +345.9 "The Path of Light" Ability { id: "4DD9", source: "Shiva" } +348.6 "Bright Hunger" Ability { id: "4E0C", source: "Shiva" } +356.0 "Mirror, Mirror" Ability { id: "4DD4", source: "Shiva" } +368.1 "Kick/Frost" Ability { id: "4D(D[BC]|E[23])", source: "Shiva" } +373.2 "Reflected Kick/Frost" Ability { id: ["4DF[EF]", "4E0[01]"], source: "Frozen Mirror" } # Rotation block -385.3 "Redress" sync / 1[56]:[^:]*:Shiva:4F4E:/ -390.4 "Frost Armor" sync / 1[56]:[^:]*:Shiva:4DF0:/ -398.4 "Twin Stillness/Twin Silence" sync / 1[56]:[^:]*:Shiva:4DD[DE]:/ -413.7 "Double Slap" sync / 1[56]:[^:]*:Shiva:4DDA:/ -424.8 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4DD4:/ -437.0 "Kick/Frost" sync / 1[56]:[^:]*:Shiva:4D(D[BC]|E[23]):/ -442.1 "Reflected Kick/Frost" sync / 1[56]:[^:]*:Frozen Mirror:(4DF[EF]|4E0[01]):/ -455.2 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:4DD7:/ -467.4 "Redress" sync / 1[56]:[^:]*:Shiva:4F4F:/ -472.6 "Shining Armor" sync / 1[56]:[^:]*:Shiva:4DF1:/ -480.6 "Embittered Dance/Spiteful Dance" sync / 1[56]:[^:]*:Shiva:4DE[4567]:/ -484.7 "Spiteful Dance/Embittered Dance" sync / 1[56]:[^:]*:Shiva:4DE[4567]:/ -500.8 "Holy" sync / 1[56]:[^:]*:Shiva:4DE[CD]:/ -513.9 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:4DD7:/ +385.3 "Redress" Ability { id: "4F4E", source: "Shiva" } +390.4 "Frost Armor" Ability { id: "4DF0", source: "Shiva" } +398.4 "Twin Stillness/Twin Silence" Ability { id: "4DD[DE]", source: "Shiva" } +413.7 "Double Slap" Ability { id: "4DDA", source: "Shiva" } +424.8 "Mirror, Mirror" Ability { id: "4DD4", source: "Shiva" } +437.0 "Kick/Frost" Ability { id: "4D(D[BC]|E[23])", source: "Shiva" } +442.1 "Reflected Kick/Frost" Ability { id: ["4DF[EF]", "4E0[01]"], source: "Frozen Mirror" } +455.2 "Absolute Zero" Ability { id: "4DD7", source: "Shiva" } +467.4 "Redress" Ability { id: "4F4F", source: "Shiva" } +472.6 "Shining Armor" Ability { id: "4DF1", source: "Shiva" } +480.6 "Embittered Dance/Spiteful Dance" Ability { id: "4DE[4567]", source: "Shiva" } +484.7 "Spiteful Dance/Embittered Dance" Ability { id: "4DE[4567]", source: "Shiva" } +500.8 "Holy" Ability { id: "4DE[CD]", source: "Shiva" } +513.9 "Absolute Zero" Ability { id: "4DD7", source: "Shiva" } -526.1 "Redress" sync / 1[56]:[^:]*:Shiva:4F4E:/ -531.2 "Frost Armor" sync / 1[56]:[^:]*:Shiva:4DF0:/ -539.2 "Twin Stillness/Twin Silence" sync / 1[56]:[^:]*:Shiva:4DD[DE]:/ -554.5 "Double Slap" sync / 1[56]:[^:]*:Shiva:4DDA:/ -565.6 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4DD4:/ -577.8 "Kick/Frost" sync / 1[56]:[^:]*:Shiva:4D(D[BC]|E[23]):/ -582.9 "Reflected Kick/Frost" sync / 1[56]:[^:]*:Frozen Mirror:(4DF[EF]|4E0[01]):/ -596.0 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:4DD7:/ -608.2 "Redress" sync / 1[56]:[^:]*:Shiva:4F4F:/ -613.4 "Shining Armor" sync / 1[56]:[^:]*:Shiva:4DF1:/ -621.4 "Embittered Dance/Spiteful Dance" sync / 1[56]:[^:]*:Shiva:4DE[4567]:/ -625.5 "Spiteful Dance/Embittered Dance" sync / 1[56]:[^:]*:Shiva:4DE[4567]:/ -641.6 "Holy" sync / 1[56]:[^:]*:Shiva:4DE[CD]:/ -654.7 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:4DD7:/ jump 513.9 +526.1 "Redress" Ability { id: "4F4E", source: "Shiva" } +531.2 "Frost Armor" Ability { id: "4DF0", source: "Shiva" } +539.2 "Twin Stillness/Twin Silence" Ability { id: "4DD[DE]", source: "Shiva" } +554.5 "Double Slap" Ability { id: "4DDA", source: "Shiva" } +565.6 "Mirror, Mirror" Ability { id: "4DD4", source: "Shiva" } +577.8 "Kick/Frost" Ability { id: "4D(D[BC]|E[23])", source: "Shiva" } +582.9 "Reflected Kick/Frost" Ability { id: ["4DF[EF]", "4E0[01]"], source: "Frozen Mirror" } +596.0 "Absolute Zero" Ability { id: "4DD7", source: "Shiva" } +608.2 "Redress" Ability { id: "4F4F", source: "Shiva" } +613.4 "Shining Armor" Ability { id: "4DF1", source: "Shiva" } +621.4 "Embittered Dance/Spiteful Dance" Ability { id: "4DE[4567]", source: "Shiva" } +625.5 "Spiteful Dance/Embittered Dance" Ability { id: "4DE[4567]", source: "Shiva" } +641.6 "Holy" Ability { id: "4DE[CD]", source: "Shiva" } +654.7 "Absolute Zero" Ability { id: "4DD7", source: "Shiva" } jump 513.9 666.9 "Redress" 672.0 "Frost Armor" @@ -103,5 +103,5 @@ hideall "--sync--" # There's an Absolute Zero spam sequence before this, but # it's indistinguishable from the standard usage. -1000.0 "--sync--" sync / 1[56]:[^:]*:Shiva:4E29:/ window 1000,0 +1000.0 "--sync--" Ability { id: "4E29", source: "Shiva" } window 1000,0 1066.2 "--targetable--" diff --git a/ui/raidboss/data/05-shb/raid/e8s.ts b/ui/raidboss/data/05-shb/raid/e8s.ts index 8cec6f2f48..0ad45d4732 100644 --- a/ui/raidboss/data/05-shb/raid/e8s.ts +++ b/ui/raidboss/data/05-shb/raid/e8s.ts @@ -89,7 +89,7 @@ const triggerSet: TriggerSet = { name: { en: 'Enable uptime knockback strat', de: 'Aktiviere Uptime Rückstoß Strategie', - fr: 'e8s : activer cactbot pour la strat Uptime Knockback', // FIXME + fr: 'Activer la strat Poussée-Uptime', ja: 'エデン零式共鳴編4層:cactbot「ヘヴンリーストライク (ノックバック)」ギミック', // FIXME cn: '启用 cactbot 精确计时防击退策略', ko: '정확한 타이밍 넉백방지 공략 사용', @@ -97,12 +97,30 @@ const triggerSet: TriggerSet = { comment: { en: `If you want cactbot to callout Mirror Mirror 4's double knockback, enable this option. Callout happens during/after boss turns and requires <1.4s reaction time - to avoid both Green and Read Mirror knockbacks. + to avoid both Green and Red Mirror knockbacks. Example: https://clips.twitch.tv/CreativeDreamyAsparagusKlappa Group splits into two groups behind boss after the jump. Tanks adjust to where the Red and Green Mirror are located. One tank must be inbetween the party, the other closest to Greem Mirror. Once Green Mirror goes off, the tanks adjust for Red Mirror.`, + de: + `Wenn du möchten, dass Cactbot den doppelten Knockback von Spiegelland 4 auslöst, aktivieren Sie diese Option. + Die Anzeige erfolgt während/nach den Drehungen des Bosses und erfordert <1,4s Reaktionszeit + um sowohl den grünen als auch den roten Spiegel-Rückstoß zu vermeiden. + Beispiel: https://clips.twitch.tv/CreativeDreamyAsparagusKlappa + Die Gruppe teilt sich nach dem Sprung hinter dem Boss in zwei Gruppen auf. + Die Tanks passen sich danach an, wo sich der rote und der grüne Spiegel befinden. + Ein Tank muss sich in der Mitte der Gruppe befinden, der andere in der Nähe des grünen Spiegels. + Sobald der grüne Spiegel ausgelöst wird, passen sich die Tanks auf den roten Spiegel an.`, + fr: + `Si vous voulez que cactbot signale le double knockback de Mirror Mirror 4, activez cette option. + L'annonce se fait pendant/après les tours du boss et nécessite un temps de réaction < à 1.4s + pour éviter les deux poussées du miroir vert et du miroir rouge. + Exemple : https://clips.twitch.tv/CreativeDreamyAsparagusKlappa + Le groupe se divise en deux groupes derrière le boss après le saut. + Les tanks s'adaptent à l'emplacement des miroirs rouge et vert. + Un tank doit être entre les deux groupes, l'autre doit être le plus proche du miroir vert. + Une fois que le miroir vert s'éteint, les tanks s'ajustent au miroir rouge.`, cn: `此选项可让 cactbot 提示第四次镜中奇遇的双击退。 会在 BOSS 转身期间或之后播报提示, 需要小于 1.4 秒 的反应时间来同时躲避绿镜和红镜击退。 @@ -111,6 +129,14 @@ const triggerSet: TriggerSet = { 坦克根据红镜和绿镜的位置进行调整。 一个坦克必须在分组中间,另一个坦克最靠近绿镜。 绿镜熄灭后,坦克调整到红镜位置。`, + ko: `캑트봇이 거울 나라 4의 이중 넉백을 호출하게 하려면 이 옵션을 활성화하세요. + 알람은 보스의 시전 중간이나 이후에 발생하며 + 녹색 및 빨강 거울의 넉백을 모두 피하려면 반응 시간이 1.4초 미만이어야 합니다. + 예시: https://clips.twitch.tv/CreativeDreamyAsparagusKlappa + 점프 후 보스 뒤에서 파티가 두 그룹으로 나뉩니다. + 탱커 빨강 및 초록 거울이 있는 위치에 맞춰 조정합니다. + 탱커 한 명은 파티 사이에, 다른 한 명은 초록 거울에 가장 가까운 곳에 위치해야 합니다. + 초록 거울이 발동하면 탱커는 빨강 거울에 맞춰 위치를 조정합니다.`, }, type: 'checkbox', default: (options) => { @@ -222,11 +248,16 @@ const triggerSet: TriggerSet = { outputStrings: { scytheNext: { en: '(under boss => under mirrors soon)', + de: '(unter den Boss => gleich unter den Spiegel)', + fr: '(sous le boss => sous les miroirs bientôt', cn: '(BOSS 下方 => 即将去镜子下方)', + ko: '(보스 밑 => 이후 거울 밑)', }, axeNext: { en: '(out => middle soon)', + de: '(raus => gleich Mitte)', cn: '(外 => 即将去中间)', + ko: '(밖 => 이후 중앙)', }, }, }, @@ -258,11 +289,17 @@ const triggerSet: TriggerSet = { outputStrings: { redMirrorWest: { en: 'Behind => SW', + de: 'Hinten => SW', + fr: 'Derrière => SO', cn: '后 => 左下 (西南)', + ko: '뒤 => 남서', }, redMirrorEast: { en: 'Behind => SE', + de: 'Hinten => SO', + fr: 'Derrière => SE', cn: '后 => 右下 (东南)', + ko: '뒤 => 남동', }, getBehind: Outputs.getBehind, }, @@ -282,11 +319,17 @@ const triggerSet: TriggerSet = { outputStrings: { redMirrorEast: { en: 'Front => NW', + de: 'Vorne => NW', + fr: 'Devant => NO', cn: '前 => 左上 (西北)', + ko: '앞 => 북서', }, redMirrorWest: { en: 'Front => NE', + de: 'Vorne => NO', + fr: 'Devant => NE', cn: '前 => 右上 (东北)', + ko: '앞 => 북동', }, goFront: Outputs.goFront, }, @@ -351,19 +394,19 @@ const triggerSet: TriggerSet = { outputStrings: { bitingFrostNext: { en: 'Biting Next (face outward)', - de: 'Frosthieb als nächstes', // FIXME - fr: 'Taillade de givre bientôt', // FIXME + de: 'Frosthieb als nächstes (nach außen drehen)', + fr: 'Taillade de givre (pointez vers l\'extérieur)', ja: '次はフロストスラッシュ', // FIXME cn: '冰霜斩 (去背后)', - ko: '다음: 서리 참격', // FIXME + ko: '서리 참격 (뒤로)', }, drivingFrostNext: { en: 'Driving Next (face inward)', - de: 'Froststoß als nächstes', // FIXME - fr: 'Percée de givre bientôt', // FIXME + de: 'Froststoß als nächstes (nach innen drehen)', + fr: 'Percée de givre (pointez vers l\'intérieur)', ja: '次はフロストスラスト', // FIXME cn: '冰霜刺 (去前面)', - ko: '다음: 서리 일격', // FIXME + ko: '서리 일격 (앞으로)', }, }, }, @@ -393,7 +436,10 @@ const triggerSet: TriggerSet = { outputStrings: { cleanse: { en: 'Cleanse: ${players}', + de: 'Reinige: ${players}', + fr: 'Guérison : ${players}', cn: '驱散: ${players}', + ko: '에스나: ${players}', }, }, }, @@ -406,7 +452,10 @@ const triggerSet: TriggerSet = { outputStrings: { text: { en: 'Star on YOU', + de: 'Stern auf DIR', + fr: 'Étoile sur VOUS', cn: '冰针点名', + ko: '별 징 대상자', }, }, }, @@ -497,7 +546,10 @@ const triggerSet: TriggerSet = { outputStrings: { outThenMiddle: { en: 'Out => Middle', + de: 'Raus => Mitte', + fr: 'Extérieur => Milieu', cn: '远离 => 中间', + ko: '밖 => 중앙', }, out: Outputs.out, }, @@ -520,15 +572,24 @@ const triggerSet: TriggerSet = { outputStrings: { getUnderCards: { en: 'Under => Under Cardinal Mirrors', + de: 'Unter den Boss => Unter Kardinal-Spiegel', + fr: 'Dessous => Sous les miroirs cardinaux', cn: '下方 => 正点镜下方', + ko: '보스 밑 => 십자 방향 거울 밑', }, getUnderIntercards: { en: 'Under => Under Intercard Mirrors', + de: 'Unter den Boss => Unter Interkardinal-Spiegel', + fr: 'Dessous => Sous les miroirs intercardinaux', cn: '下方 => 斜点镜下方', + ko: '보스 밑 => 대각선 방향 거울 밑', }, getUnderUnknown: { en: 'Under Boss => Under Mirrors', + de: 'Unter den Boss => Unter Spiegel', + fr: 'Sous le boss => Sous les miroirs', cn: 'BOSS 下方 => 镜下方', + ko: '보스 밑 => 거울 밑', }, getUnder: Outputs.getUnder, }, @@ -594,11 +655,17 @@ const triggerSet: TriggerSet = { output.responseOutputStrings = { getFinalTower: { en: 'Get Final Tower', + de: 'Nimm letzten Turm', + fr: 'Prenez la tour finale', cn: '踩最后塔', + ko: '마지막 기둥 들어가기', }, avoidFinalTower: { en: 'Avoid Final Tower', + de: 'Vermeide letzten Turm', + fr: 'Évitez la tour finale', cn: '躲最后塔', + ko: '마지막 기둥 피하기', }, }; @@ -648,7 +715,10 @@ const triggerSet: TriggerSet = { outputStrings: { text: { en: 'Stun Aqueous Aether', + de: 'Wasseräther unterbrechen', + fr: 'Étourdissez l\'ether aqueux', cn: '眩晕水以太', + ko: '물 에테르 기절', }, }, }, @@ -747,9 +817,18 @@ const triggerSet: TriggerSet = { en: `Fast means you can go from the 1st to the 3rd safe spot directly. Slow means you need to go 1 => 2 => 3 without skipping 2. This is for casters who may not want to move as much.`, + de: `Schnell bedeutet, dass man direkt vom 1. zum 3. sicheren Punkt gehen kann. + Langsam bedeutet, dass man 1 => 2 => 3 gehen muss, ohne 2 zu überspringen. + Dies ist für Magier, die sich vielleicht nicht so viel bewegen wollen.`, + fr: `Rapide signifie que vous pouvez passer directement du premier au troisième point sûr. + Lent signifie que vous devez aller de 1 => 2 => 3 sans omettre 2. + C'est pour les lanceurs de sorts qui ne veulent pas se déplacer autant.`, cn: `快指你可以从第 1 个安全点直接到达第 3 个安全点。 慢指你需要走 1 => 2 => 3 ,不跳过 2。 适用于不想移动太多的读条职业。`, + ko: `빠름은 첫 번째 안전 지점에서 세 번째 안전 지점으로 바로 이동할 수 있음을 의미합니다. + 느림은 2번을 건너뛰지 않고 1번 => 2번 => 3번으로 이동해야 한다는 뜻입니다. + 많이 움직이고 싶지 않은 캐스터를 위한 옵션입니다.`, }, type: 'StartsUsing', netRegex: { source: 'Shiva', id: ['4D75', '4D76'] }, @@ -809,11 +888,17 @@ const triggerSet: TriggerSet = { outputStrings: { slowText: { en: '${dir1} => ${dir2} => ${dir3} (slow)', + de: '${dir1} => ${dir2} => ${dir3} (langsam)', + fr: '${dir1} => ${dir2} => ${dir3} (lent)', cn: '${dir1} => ${dir2} => ${dir3} (慢)', + ko: '${dir1} => ${dir2} => ${dir3} (느림)', }, fastText: { en: '${dir1} => ${dir2} => ${dir3} (fast)', + de: '${dir1} => ${dir2} => ${dir3} (schnell)', + fr: '${dir1} => ${dir2} => ${dir3} (rapide)', cn: '${dir1} => ${dir2} => ${dir3} (快)', + ko: '${dir1} => ${dir2} => ${dir3} (빠름)', }, dirNW: Outputs.dirNW, dirNE: Outputs.dirNE, @@ -1006,11 +1091,17 @@ const triggerSet: TriggerSet = { outputStrings: { redDragonHead: { en: 'Pop Head #${num}', + de: 'Nimm Kopf #${num}', + fr: 'Tête #${num}', cn: '撞头 #${num}', + ko: '${num}번 머리 부딪히기', }, bluePuddle: { en: 'Get Puddle #${num}', + de: 'Nimm Fläche #${num}', + fr: 'Prenez le puddle #${num}', cn: '踩圈 #${num}', + ko: '${num}번 장판 밟기', }, }, }, @@ -1084,7 +1175,10 @@ const triggerSet: TriggerSet = { }, bluCleanse: { en: 'Exuviation', + de: 'Exuviation', + fr: 'Exuviation', cn: '蜕皮', + ko: '허물 벗기', }, }, }, @@ -1135,11 +1229,17 @@ const triggerSet: TriggerSet = { outputStrings: { proteanGetFinalTower: { en: 'Protean => Get Final Tower', + de: 'Himmelsrichtung => Nimm letzten Turm', + fr: 'Positions => Prenez la tour finale', cn: '八方分散 => 踩最后塔', + ko: '8방향 산개 => 마지막 기둥 들어가기', }, proteanAvoidFinalTower: { en: 'Protean => Avoid Final Tower', + de: 'Himmelsrichtung => Vermeide letzten Turm', + fr: 'Position => Évitez la tour finale', cn: '八方分散 => 躲最后塔', + ko: '8방향 산개 => 마지막 기둥 피하기', }, }, }, @@ -1147,8 +1247,8 @@ const triggerSet: TriggerSet = { timelineReplace: [ { 'locale': 'de', - 'missingTranslations': true, 'replaceSync': { + 'Earthen Aether': 'Erdäther', 'Frozen Mirror': 'Eisspiegel', 'great wyrm': 'Körper des heiligen Drachen', 'Luminous Aether': 'Lichtäther', @@ -1211,8 +1311,8 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', - 'missingTranslations': true, 'replaceSync': { + 'Earthen Aether': 'éther de terre', 'frozen mirror': 'Miroir de glace', 'great wyrm': 'Dragon divin', 'luminous Aether': 'Éther de lumière', @@ -1276,8 +1376,8 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ja', - 'missingTranslations': true, 'replaceSync': { + 'Earthen Aether': 'アース・エーテル', 'frozen mirror': '氷面鏡', 'great wyrm': '聖竜', 'luminous Aether': 'ライト・エーテル', @@ -1404,8 +1504,8 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ko', - 'missingTranslations': true, 'replaceSync': { + 'Earthen Aether': '땅 에테르', 'Shiva': '시바', 'Frozen Mirror': '얼음 거울', 'Mothercrystal': '어머니 크리스탈', diff --git a/ui/raidboss/data/05-shb/raid/e8s.txt b/ui/raidboss/data/05-shb/raid/e8s.txt index dc074e8576..a3218612d0 100644 --- a/ui/raidboss/data/05-shb/raid/e8s.txt +++ b/ui/raidboss/data/05-shb/raid/e8s.txt @@ -10,151 +10,151 @@ hideall "--sync--" # TODO: is there a missing bright hunger in icelit? (4DA3?) -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -16.0 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:4DCC:/ window 17,20 -27.2 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4D5A:/ -39.3 "Biting/Driving Frost" sync / 1[56]:[^:]*:Shiva:4D6[67]:/ -44.4 "Reflected Frost (G)" sync / 1[56]:[^:]*:Frozen Mirror:4DB[78]:/ -49.4 "Reflected Frost (R)" sync / 1[56]:[^:]*:Frozen Mirror:4DC[34]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +16.0 "Absolute Zero" Ability { id: "4DCC", source: "Shiva" } window 17,20 +27.2 "Mirror, Mirror" Ability { id: "4D5A", source: "Shiva" } +39.3 "Biting/Driving Frost" Ability { id: "4D6[67]", source: "Shiva" } +44.4 "Reflected Frost (G)" Ability { id: "4DB[78]", source: "Frozen Mirror" } +49.4 "Reflected Frost (R)" Ability { id: "4DC[34]", source: "Frozen Mirror" } ### Diamond Frost -57.5 "--middle--" sync / 1[56]:[^:]*:Shiva:4D58:/ -63.7 "Diamond Frost" sync / 1[56]:[^:]*:Shiva:4D6C:/ -71.9 "Frigid Stone" sync / 1[56]:[^:]*:Shiva:4D9B:/ -74.9 "Icicle Impact" sync / 1[56]:[^:]*:Shiva:4DA0:/ -76.9 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:4D61:/ -78.9 "Icicle Impact" sync / 1[56]:[^:]*:Shiva:4DA0:/ -80.9 "Frigid Needle" sync / 1[56]:[^:]*:Shiva:4D9D:/ -80.9 "Frigid Water" sync / 1[56]:[^:]*:Shiva:4D9E:/ -82.9 "Icicle Impact" sync / 1[56]:[^:]*:Shiva:4DA0:/ -83.9 "Frigid Eruption 1" #sync / 1[56]:[^:]*:Shiva:4D9F:/ -85.9 "Frigid Eruption 2" #sync / 1[56]:[^:]*:Shiva:4D9F:/ -87.9 "Frigid Eruption 3" #sync / 1[56]:[^:]*:Shiva:4D9F:/ -92.9 "Driving/Biting Frost" sync / 1[56]:[^:]*:Shiva:4D6[67]:/ -101.7 "Double Slap" sync / 1[56]:[^:]*:Shiva:4D65:/ -115.0 "Shining Armor" sync / 1[56]:[^:]*:Shiva:4DD1:/ -123.0 "Axe/Scythe Kick" sync / 1[56]:[^:]*:Shiva:4D6[DE]:/ +57.5 "--middle--" Ability { id: "4D58", source: "Shiva" } +63.7 "Diamond Frost" Ability { id: "4D6C", source: "Shiva" } +71.9 "Frigid Stone" Ability { id: "4D9B", source: "Shiva" } +74.9 "Icicle Impact" Ability { id: "4DA0", source: "Shiva" } +76.9 "Heavenly Strike" Ability { id: "4D61", source: "Shiva" } +78.9 "Icicle Impact" Ability { id: "4DA0", source: "Shiva" } +80.9 "Frigid Needle" Ability { id: "4D9D", source: "Shiva" } +80.9 "Frigid Water" Ability { id: "4D9E", source: "Shiva" } +82.9 "Icicle Impact" Ability { id: "4DA0", source: "Shiva" } +83.9 "Frigid Eruption 1" #Ability { id: "4D9F", source: "Shiva" } +85.9 "Frigid Eruption 2" #Ability { id: "4D9F", source: "Shiva" } +87.9 "Frigid Eruption 3" #Ability { id: "4D9F", source: "Shiva" } +92.9 "Driving/Biting Frost" Ability { id: "4D6[67]", source: "Shiva" } +101.7 "Double Slap" Ability { id: "4D65", source: "Shiva" } +115.0 "Shining Armor" Ability { id: "4DD1", source: "Shiva" } +123.0 "Axe/Scythe Kick" Ability { id: "4D6[DE]", source: "Shiva" } ### Light Rampant -131.2 "--middle--" sync / 1[56]:[^:]*:Shiva:4D58:/ -137.4 "Light Rampant" sync / 1[56]:[^:]*:Shiva:4D73:/ window 150,10 -148.6 "Bright Hunger 4x1" sync / 1[56]:[^:]*:Shiva:4DA2:/ -148.6 "The Path Of Light 1" sync / 1[56]:[^:]*:Shiva:4D63:/ -156.6 "Bright Hunger 2x2" sync / 1[56]:[^:]*:Shiva:4DA2:/ -159.8 "The Path Of Light 2" sync / 1[56]:[^:]*:Shiva:4D63:/ -164.7 "Bright Hunger 1x4" sync / 1[56]:[^:]*:Shiva:4DA2:/ - -173.0 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4D5A:/ -185.2 "Scythe/Axe Kick" sync / 1[56]:[^:]*:Shiva:4D6[DE]:/ -190.2 "Reflected Kick (G)" sync / 1[56]:[^:]*:Frozen Mirror:4DB[9A]:/ -193.3 "Banish III" sync / 1[56]:[^:]*:Shiva:4D8[01]:/ +131.2 "--middle--" Ability { id: "4D58", source: "Shiva" } +137.4 "Light Rampant" Ability { id: "4D73", source: "Shiva" } window 150,10 +148.6 "Bright Hunger 4x1" Ability { id: "4DA2", source: "Shiva" } +148.6 "The Path Of Light 1" Ability { id: "4D63", source: "Shiva" } +156.6 "Bright Hunger 2x2" Ability { id: "4DA2", source: "Shiva" } +159.8 "The Path Of Light 2" Ability { id: "4D63", source: "Shiva" } +164.7 "Bright Hunger 1x4" Ability { id: "4DA2", source: "Shiva" } + +173.0 "Mirror, Mirror" Ability { id: "4D5A", source: "Shiva" } +185.2 "Scythe/Axe Kick" Ability { id: "4D6[DE]", source: "Shiva" } +190.2 "Reflected Kick (G)" Ability { id: "4DB[9A]", source: "Frozen Mirror" } +193.3 "Banish III" Ability { id: "4D8[01]", source: "Shiva" } ### Adds Phase 201.5 "--untargetable--" -201.7 "--sync--" sync / 1[56]:[^:]*:Shiva:4D58:/ -213.0 "Shattered World" sync / 1[56]:[^:]*:Shiva:4D74:/ window 220,20 -229.2 "Heart Asunder" sync / 1[56]:[^:]*:Mothercrystal:4DAC:/ -238.9 "Rush 1" sync / 1[56]:[^:]*:Luminous Aether:4D86:/ -243.3 "Heart Asunder" sync / 1[56]:[^:]*:Mothercrystal:4DAC:/ -253.0 "Rush 2" sync / 1[56]:[^:]*:Luminous Aether:4D86:/ -257.4 "Heart Asunder" sync / 1[56]:[^:]*:Mothercrystal:4DAC:/ -267.1 "Rush 3" sync / 1[56]:[^:]*:Luminous Aether:4D86:/ -271.5 "Heart Asunder" sync / 1[56]:[^:]*:Mothercrystal:4DAC:/ -281.2 "Rush 4" sync / 1[56]:[^:]*:Luminous Aether:4D86:/ -292.6 "Skyfall" sync / 1[56]:[^:]*:Shiva:4DAD:/ window 100,100 +201.7 "--sync--" Ability { id: "4D58", source: "Shiva" } +213.0 "Shattered World" Ability { id: "4D74", source: "Shiva" } window 220,20 +229.2 "Heart Asunder" Ability { id: "4DAC", source: "Mothercrystal" } +238.9 "Rush 1" Ability { id: "4D86", source: "Luminous Aether" } +243.3 "Heart Asunder" Ability { id: "4DAC", source: "Mothercrystal" } +253.0 "Rush 2" Ability { id: "4D86", source: "Luminous Aether" } +257.4 "Heart Asunder" Ability { id: "4DAC", source: "Mothercrystal" } +267.1 "Rush 3" Ability { id: "4D86", source: "Luminous Aether" } +271.5 "Heart Asunder" Ability { id: "4DAC", source: "Mothercrystal" } +281.2 "Rush 4" Ability { id: "4D86", source: "Luminous Aether" } +292.6 "Skyfall" Ability { id: "4DAD", source: "Shiva" } window 100,100 ### Dragon Fanfic # :eyes: ### Wing Mirrors 350.5 "--targetable--" -364.2 "--sync--" sync / 14:[^:]*:Shiva:4D79:/ window 370,10 -368.6 "Akh Morn x3" sync / 1[56]:[^:]*:Shiva:4D79:/ duration 3.1 -378.0 "Morn Afah" sync / 1[56]:[^:]*:Shiva:4D7B:/ -389.4 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4D5A:/ -396.9 "--sync--" sync / 1[56]:[^:]*:Shiva:4D58:/ -403.2 "Hallowed Wings 1" sync / 1[56]:[^:]*:Shiva:4D7[56]:/ -403.2 "Reflected Wings (B)" sync / 1[56]:[^:]*:Frozen Mirror:4D9[01]:/ -408.2 "Reflected Wings (G)" sync / 1[56]:[^:]*:Frozen Mirror:4DB[BC]:/ -413.2 "Hallowed Wings 2" sync / 1[56]:[^:]*:Shiva:4D7[56]:/ -413.2 "Reflected Wings (R)" sync / 1[56]:[^:]*:Frozen Mirror:4DC[78]:/ +364.2 "--sync--" StartsUsing { id: "4D79", source: "Shiva" } window 370,10 +368.6 "Akh Morn x3" Ability { id: "4D79", source: "Shiva" } duration 3.1 +378.0 "Morn Afah" Ability { id: "4D7B", source: "Shiva" } +389.4 "Mirror, Mirror" Ability { id: "4D5A", source: "Shiva" } +396.9 "--sync--" Ability { id: "4D58", source: "Shiva" } +403.2 "Hallowed Wings 1" Ability { id: "4D7[56]", source: "Shiva" } +403.2 "Reflected Wings (B)" Ability { id: "4D9[01]", source: "Frozen Mirror" } +408.2 "Reflected Wings (G)" Ability { id: "4DB[BC]", source: "Frozen Mirror" } +413.2 "Hallowed Wings 2" Ability { id: "4D7[56]", source: "Shiva" } +413.2 "Reflected Wings (R)" Ability { id: "4DC[78]", source: "Frozen Mirror" } ### Wyrm's Lament -421.7 "--middle--" sync / 1[56]:[^:]*:Shiva:4D58:/ -427.9 "Wyrm's Lament" sync / 1[56]:[^:]*:Shiva:4D7C:/ -441.0 "Hallowed Wings 1" sync / 1[56]:[^:]*:Shiva:4D7[56]:/ -449.1 "Hallowed Wings 2" sync / 1[56]:[^:]*:Shiva:4D7[56]:/ -457.2 "Hallowed Wings 3" sync / 1[56]:[^:]*:Shiva:4D7[56]:/ -465.3 "Hallowed Wings 4" sync / 1[56]:[^:]*:Shiva:4D7[56]:/ -473.5 "Frost Armor" sync / 1[56]:[^:]*:Shiva:4DD0:/ -481.4 "Twin Silence/Stillness" sync / 1[56]:[^:]*:Shiva:4D6[89]:/ -483.5 "Twin Stillness/Silence" sync / 1[56]:[^:]*:Shiva:4D6[AB]:/ -491.6 "Double Slap" sync / 1[56]:[^:]*:Shiva:4D65:/ -504.8 "Drachen Armor" sync / 1[56]:[^:]*:Shiva:4DD2:/ -507.3 "Akh Rhai" sync / 1[56]:[^:]*:Shiva:4D99:/ +421.7 "--middle--" Ability { id: "4D58", source: "Shiva" } +427.9 "Wyrm's Lament" Ability { id: "4D7C", source: "Shiva" } +441.0 "Hallowed Wings 1" Ability { id: "4D7[56]", source: "Shiva" } +449.1 "Hallowed Wings 2" Ability { id: "4D7[56]", source: "Shiva" } +457.2 "Hallowed Wings 3" Ability { id: "4D7[56]", source: "Shiva" } +465.3 "Hallowed Wings 4" Ability { id: "4D7[56]", source: "Shiva" } +473.5 "Frost Armor" Ability { id: "4DD0", source: "Shiva" } +481.4 "Twin Silence/Stillness" Ability { id: "4D6[89]", source: "Shiva" } +483.5 "Twin Stillness/Silence" Ability { id: "4D6[AB]", source: "Shiva" } +491.6 "Double Slap" Ability { id: "4D65", source: "Shiva" } +504.8 "Drachen Armor" Ability { id: "4DD2", source: "Shiva" } +507.3 "Akh Rhai" Ability { id: "4D99", source: "Shiva" } ### Stack Mirrors -516.1 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4D5A:/ -523.6 "--teleport--" sync / 1[56]:[^:]*:Shiva:4D58:/ -530.0 "Hallowed Wings" sync / 1[56]:[^:]*:Shiva:4D77:/ -535.1 "Reflected Wings (G)" sync / 1[56]:[^:]*:Frozen Mirror:4DBD:/ -540.1 "Reflected Wings (R)" sync / 1[56]:[^:]*:Frozen Mirror:4DC9:/ +516.1 "Mirror, Mirror" Ability { id: "4D5A", source: "Shiva" } +523.6 "--teleport--" Ability { id: "4D58", source: "Shiva" } +530.0 "Hallowed Wings" Ability { id: "4D77", source: "Shiva" } +535.1 "Reflected Wings (G)" Ability { id: "4DBD", source: "Frozen Mirror" } +540.1 "Reflected Wings (R)" Ability { id: "4DC9", source: "Frozen Mirror" } ### Lookaway Mirrors -554.1 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4D5A:/ -566.6 "Shining Armor" sync / 1[56]:[^:]*:Shiva:4DD1:/ -566.6 "Reflected Armor (B)" sync / 1[56]:[^:]*:Frozen Mirror:4D8A:/ -571.7 "Reflected Armor (G)" sync / 1[56]:[^:]*:Frozen Mirror:4DB5:/ -576.7 "Reflected Armor (R)" sync / 1[56]:[^:]*:Frozen Mirror:4DC1:/ -577.6 "Holy" sync / 1[56]:[^:]*:Shiva:4D8[23]:/ -585.7 "Embittered/Spiteful Dance" sync / 1[56]:[^:]*:Shiva:4D(6F|70):/ -589.8 "Spiteful/Embittered Dance" sync / 1[56]:[^:]*:Shiva:4D7[12]:/ +554.1 "Mirror, Mirror" Ability { id: "4D5A", source: "Shiva" } +566.6 "Shining Armor" Ability { id: "4DD1", source: "Shiva" } +566.6 "Reflected Armor (B)" Ability { id: "4D8A", source: "Frozen Mirror" } +571.7 "Reflected Armor (G)" Ability { id: "4DB5", source: "Frozen Mirror" } +576.7 "Reflected Armor (R)" Ability { id: "4DC1", source: "Frozen Mirror" } +577.6 "Holy" Ability { id: "4D8[23]", source: "Shiva" } +585.7 "Embittered/Spiteful Dance" Ability { id: "4D(6F|70)", source: "Shiva" } +589.8 "Spiteful/Embittered Dance" Ability { id: "4D7[12]", source: "Shiva" } ### Akh Rhai Mirrors -600.9 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4D5A:/ -608.1 "Drachen Armor" sync / 1[56]:[^:]*:Shiva:4DD2:/ -610.6 "Akh Rhai" sync / 1[56]:[^:]*:Shiva:4D99:/ -618.2 "Reflected Drachen" sync / 1[56]:[^:]*:Frozen Mirror:4DC2:/ -620.4 "Akh Morn x4" sync / 1[56]:[^:]*:Shiva:4D79:/ duration 4.2 -620.7 "Akh Rhai" sync / 1[56]:[^:]*:Shiva:4D99:/ -630.8 "Morn Afah" sync / 1[56]:[^:]*:Shiva:4D7B:/ +600.9 "Mirror, Mirror" Ability { id: "4D5A", source: "Shiva" } +608.1 "Drachen Armor" Ability { id: "4DD2", source: "Shiva" } +610.6 "Akh Rhai" Ability { id: "4D99", source: "Shiva" } +618.2 "Reflected Drachen" Ability { id: "4DC2", source: "Frozen Mirror" } +620.4 "Akh Morn x4" Ability { id: "4D79", source: "Shiva" } duration 4.2 +620.7 "Akh Rhai" Ability { id: "4D99", source: "Shiva" } +630.8 "Morn Afah" Ability { id: "4D7B", source: "Shiva" } ### Icelit Dragonsong -648.8 "--middle--" sync / 1[56]:[^:]*:Shiva:4D58:/ -655.4 "Icelit Dragonsong" sync / 1[56]:[^:]*:Shiva:4D7D:/ -663.6 "Frigid Stone" sync / 1[56]:[^:]*:Shiva:4D9B:/ -666.6 "Bright Hunger 4x1" sync / 1[56]:[^:]*:Shiva:4DA2:/ -668.6 "Draconic Strike" sync / 1[56]:[^:]*:Shiva:4D62:/ +648.8 "--middle--" Ability { id: "4D58", source: "Shiva" } +655.4 "Icelit Dragonsong" Ability { id: "4D7D", source: "Shiva" } +663.6 "Frigid Stone" Ability { id: "4D9B", source: "Shiva" } +666.6 "Bright Hunger 4x1" Ability { id: "4DA2", source: "Shiva" } +668.6 "Draconic Strike" Ability { id: "4D62", source: "Shiva" } 669.3 "--knockback--" -672.7 "Frigid Needle" sync / 1[56]:[^:]*:Shiva:4D9D:/ -674.7 "Bright Hunger 3x1" sync / 1[56]:[^:]*:Shiva:4DA2:/ -676.7 "Frigid Eruption 1" #sync / 1[56]:[^:]*:Shiva:4D9F:/ -676.8 "Banish" sync / 1[56]:[^:]*:Shiva:4D7[EF]:/ -678.7 "Frigid Eruption 2" #sync / 1[56]:[^:]*:Shiva:4D9F:/ -680.8 "Frigid Eruption 3" #sync / 1[56]:[^:]*:Shiva:4D9F:/ -682.7 "Inescapable Illumination" sync / 1[56]:[^:]*:Shiva:4DA3:/ -688.0 "The House Of Light" sync / 1[56]:[^:]*:Shiva:4D64:/ -688.9 "The Path Of Light" sync / 1[56]:[^:]*:Shiva:4DA1:/ +672.7 "Frigid Needle" Ability { id: "4D9D", source: "Shiva" } +674.7 "Bright Hunger 3x1" Ability { id: "4DA2", source: "Shiva" } +676.7 "Frigid Eruption 1" #Ability { id: "4D9F", source: "Shiva" } +676.8 "Banish" Ability { id: "4D7[EF]", source: "Shiva" } +678.7 "Frigid Eruption 2" #Ability { id: "4D9F", source: "Shiva" } +680.8 "Frigid Eruption 3" #Ability { id: "4D9F", source: "Shiva" } +682.7 "Inescapable Illumination" Ability { id: "4DA3", source: "Shiva" } +688.0 "The House Of Light" Ability { id: "4D64", source: "Shiva" } +688.9 "The Path Of Light" Ability { id: "4DA1", source: "Shiva" } ### Ice Mirror -699.6 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4D5A:/ -709.9 "Frost Armor" sync / 1[56]:[^:]*:Shiva:4DD0:/ -719.9 "Reflected Frost Armor (R)" sync / 1[56]:[^:]*:Frozen Mirror:4DC0:/ -720.4 "Drachen Armor" sync / 1[56]:[^:]*:Shiva:4DD2:/ -722.9 "Akh Rhai" sync / 1[56]:[^:]*:Shiva:4D99:/ +699.6 "Mirror, Mirror" Ability { id: "4D5A", source: "Shiva" } +709.9 "Frost Armor" Ability { id: "4DD0", source: "Shiva" } +719.9 "Reflected Frost Armor (R)" Ability { id: "4DC0", source: "Frozen Mirror" } +720.4 "Drachen Armor" Ability { id: "4DD2", source: "Shiva" } +722.9 "Akh Rhai" Ability { id: "4D99", source: "Shiva" } ### Wyrm's Lament Take 2 -732.1 "--middle--" sync / 1[56]:[^:]*:Shiva:4D58:/ -738.3 "Wyrm's Lament" sync / 1[56]:[^:]*:Shiva:4D7C:/ -745.5 "Akh Morn x5" sync / 1[56]:[^:]*:Shiva:4D79:/ duration 5.3 -757.1 "Morn Afah" sync / 1[56]:[^:]*:Shiva:4D7B:/ -764.3 "Akh Morn x6" sync / 1[56]:[^:]*:Shiva:4D79:/ duration 6.4 -777.0 "Morn Afah" sync / 1[56]:[^:]*:Shiva:4D7B:/ -784.3 "Akh Morn x7" sync / 1[56]:[^:]*:Shiva:4D79:/ duration 7.5 -798.1 "Morn Afah" sync / 1[56]:[^:]*:Shiva:4D7B:/ +732.1 "--middle--" Ability { id: "4D58", source: "Shiva" } +738.3 "Wyrm's Lament" Ability { id: "4D7C", source: "Shiva" } +745.5 "Akh Morn x5" Ability { id: "4D79", source: "Shiva" } duration 5.3 +757.1 "Morn Afah" Ability { id: "4D7B", source: "Shiva" } +764.3 "Akh Morn x6" Ability { id: "4D79", source: "Shiva" } duration 6.4 +777.0 "Morn Afah" Ability { id: "4D7B", source: "Shiva" } +784.3 "Akh Morn x7" Ability { id: "4D79", source: "Shiva" } duration 7.5 +798.1 "Morn Afah" Ability { id: "4D7B", source: "Shiva" } ### Enrage Mirrors -817.1 "Mirror, Mirror" sync / 1[56]:[^:]*:Shiva:4D5A:/ -819.2 "--teleport--" sync / 1[56]:[^:]*:Shiva:4D58:/ -830.6 "Hallowed Wings" sync / 1[56]:[^:]*:Shiva:4D78:/ -840.8 "Enrage" sync / 1[56]:[^:]*:Frozen Mirror:4DC[AB]:/ +817.1 "Mirror, Mirror" Ability { id: "4D5A", source: "Shiva" } +819.2 "--teleport--" Ability { id: "4D58", source: "Shiva" } +830.6 "Hallowed Wings" Ability { id: "4D78", source: "Shiva" } +840.8 "Enrage" Ability { id: "4DC[AB]", source: "Frozen Mirror" } diff --git a/ui/raidboss/data/05-shb/raid/e9n.txt b/ui/raidboss/data/05-shb/raid/e9n.txt index d83c20bd9e..df3363e8d4 100644 --- a/ui/raidboss/data/05-shb/raid/e9n.txt +++ b/ui/raidboss/data/05-shb/raid/e9n.txt @@ -6,57 +6,57 @@ hideall "--sync--" # -ii 5626 5B18 55E1 55E3 5159 532F 55DB 55E5 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.4 "--sync--" sync / 14:[^:]*:Cloud Of Darkness:55ED:/ window 10.4,5 -15.1 "Ground-Razing Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55ED:/ -25.3 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:522[34]:/ -34.8 "Wide-Angle Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:5AFF:/ -45.2 "Zero-Form Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55EB:/ -56.7 "Empty Plane" sync / 1[56]:[^:]*:Cloud Of Darkness:4FC6:/ window 56.7,10 -70.9 "Flood Of Emptiness" sync / 1[56]:[^:]*:Cloud Of Darkness:5132:/ -71.3 "Mire Of Despair" sync / 1[56]:[^:]*:Cloud Of Darkness:5B07:/ -71.3 "Earth-Shattering Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:5225:/ -88.0 "Ground-Razing Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55ED:/ -99.2 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:522[34]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.4 "--sync--" StartsUsing { id: "55ED", source: "Cloud Of Darkness" } window 10.4,5 +15.1 "Ground-Razing Particle Beam" Ability { id: "55ED", source: "Cloud Of Darkness" } +25.3 "The Art Of Darkness" Ability { id: "522[34]", source: "Cloud Of Darkness" } +34.8 "Wide-Angle Particle Beam" Ability { id: "5AFF", source: "Cloud Of Darkness" } +45.2 "Zero-Form Particle Beam" Ability { id: "55EB", source: "Cloud Of Darkness" } +56.7 "Empty Plane" Ability { id: "4FC6", source: "Cloud Of Darkness" } window 56.7,10 +70.9 "Flood Of Emptiness" Ability { id: "5132", source: "Cloud Of Darkness" } +71.3 "Mire Of Despair" Ability { id: "5B07", source: "Cloud Of Darkness" } +71.3 "Earth-Shattering Particle Beam" Ability { id: "5225", source: "Cloud Of Darkness" } +88.0 "Ground-Razing Particle Beam" Ability { id: "55ED", source: "Cloud Of Darkness" } +99.2 "The Art Of Darkness" Ability { id: "522[34]", source: "Cloud Of Darkness" } -111.5 "Obscure Woods" sync / 1[56]:[^:]*:Cloud Of Darkness:4FA2:/ window 111.5,10 -124.7 "Flood Of Obscurity" sync / 1[56]:[^:]*:Cloud Of Darkness:58F1:/ -124.9 "Waste Away" sync / 1[56]:[^:]*:Cloud Of Darkness:55DE:/ -127.2 "Evil Seed" sync / 1[56]:[^:]*:Cloud Of Darkness:55E7:/ -145.3 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:522[34]:/ -157.3 "Wide-Angle Phaser" sync / 1[56]:[^:]*:Cloud Of Darkness:55E0:/ -171.1 "Rejuvenating Balm" sync / 1[56]:[^:]*:Cloud Of Darkness:55E2:/ -181.3 "Bad Vibrations" sync / 1[56]:[^:]*:Stygian Arbor:55E6:/ window 30,30 -192.3 "Deluge Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:5155:/ -205.7 "Zero-Form Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55EB:/ -211.9 "Particle Concentration" sync / 1[56]:[^:]*:Cloud Of Darkness:55E8:/ -222.9 "Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55E9:/ -226.6 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:522[34]:/ +111.5 "Obscure Woods" Ability { id: "4FA2", source: "Cloud Of Darkness" } window 111.5,10 +124.7 "Flood Of Obscurity" Ability { id: "58F1", source: "Cloud Of Darkness" } +124.9 "Waste Away" Ability { id: "55DE", source: "Cloud Of Darkness" } +127.2 "Evil Seed" Ability { id: "55E7", source: "Cloud Of Darkness" } +145.3 "The Art Of Darkness" Ability { id: "522[34]", source: "Cloud Of Darkness" } +157.3 "Wide-Angle Phaser" Ability { id: "55E0", source: "Cloud Of Darkness" } +171.1 "Rejuvenating Balm" Ability { id: "55E2", source: "Cloud Of Darkness" } +181.3 "Bad Vibrations" Ability { id: "55E6", source: "Stygian Arbor" } window 30,30 +192.3 "Deluge Of Darkness" Ability { id: "5155", source: "Cloud Of Darkness" } +205.7 "Zero-Form Particle Beam" Ability { id: "55EB", source: "Cloud Of Darkness" } +211.9 "Particle Concentration" Ability { id: "55E8", source: "Cloud Of Darkness" } +222.9 "Particle Beam" Ability { id: "55E9", source: "Cloud Of Darkness" } +226.6 "The Art Of Darkness" Ability { id: "522[34]", source: "Cloud Of Darkness" } -239.2 "Empty Plane" sync / 1[56]:[^:]*:Cloud Of Darkness:4FC6:/ window 30,30 -253.4 "Flood Of Emptiness" sync / 1[56]:[^:]*:Cloud Of Darkness:5132:/ -253.8 "Mire Of Despair" sync / 1[56]:[^:]*:Cloud Of Darkness:5B07:/ -253.8 "Earth-Shattering Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:5225:/ -259.5 "Hypercharged Condensation" sync / 1[56]:[^:]*:Cloud Of Darkness:532E:/ -281.7 "Summon" sync / 1[56]:[^:]*:Cloud Of Darkness:5330:/ window 30,30 -289.8 "Anti-Air Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55DC:/ -301.0 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:522[34]:/ -313.2 "Ground-Razing Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55ED:/ +239.2 "Empty Plane" Ability { id: "4FC6", source: "Cloud Of Darkness" } window 30,30 +253.4 "Flood Of Emptiness" Ability { id: "5132", source: "Cloud Of Darkness" } +253.8 "Mire Of Despair" Ability { id: "5B07", source: "Cloud Of Darkness" } +253.8 "Earth-Shattering Particle Beam" Ability { id: "5225", source: "Cloud Of Darkness" } +259.5 "Hypercharged Condensation" Ability { id: "532E", source: "Cloud Of Darkness" } +281.7 "Summon" Ability { id: "5330", source: "Cloud Of Darkness" } window 30,30 +289.8 "Anti-Air Particle Beam" Ability { id: "55DC", source: "Cloud Of Darkness" } +301.0 "The Art Of Darkness" Ability { id: "522[34]", source: "Cloud Of Darkness" } +313.2 "Ground-Razing Particle Beam" Ability { id: "55ED", source: "Cloud Of Darkness" } -327.7 "Obscure Woods" sync / 1[56]:[^:]*:Cloud Of Darkness:4FA2:/ window 30,30 -339.9 "Flood Of Obscurity" sync / 1[56]:[^:]*:Cloud Of Darkness:58F1:/ -340.1 "Waste Away" sync / 1[56]:[^:]*:Cloud Of Darkness:55DE:/ -342.4 "Evil Seed" sync / 1[56]:[^:]*:Cloud Of Darkness:55E7:/ -361.7 "Wide-Angle Phaser" sync / 1[56]:[^:]*:Cloud Of Darkness:55E0:/ -376.8 "Rejuvenating Balm" sync / 1[56]:[^:]*:Cloud Of Darkness:55E2:/ -384.2 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:522[34]:/ -386.6 "Bad Vibrations" sync / 1[56]:[^:]*:Stygian Arbor:55E6:/ window 30,30 -399.2 "Deluge Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:5155:/ -414.3 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:522[34]:/ -426.5 "Ground-Razing Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55ED:/ -434.9 "Zero-Form Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:55EB:/ +327.7 "Obscure Woods" Ability { id: "4FA2", source: "Cloud Of Darkness" } window 30,30 +339.9 "Flood Of Obscurity" Ability { id: "58F1", source: "Cloud Of Darkness" } +340.1 "Waste Away" Ability { id: "55DE", source: "Cloud Of Darkness" } +342.4 "Evil Seed" Ability { id: "55E7", source: "Cloud Of Darkness" } +361.7 "Wide-Angle Phaser" Ability { id: "55E0", source: "Cloud Of Darkness" } +376.8 "Rejuvenating Balm" Ability { id: "55E2", source: "Cloud Of Darkness" } +384.2 "The Art Of Darkness" Ability { id: "522[34]", source: "Cloud Of Darkness" } +386.6 "Bad Vibrations" Ability { id: "55E6", source: "Stygian Arbor" } window 30,30 +399.2 "Deluge Of Darkness" Ability { id: "5155", source: "Cloud Of Darkness" } +414.3 "The Art Of Darkness" Ability { id: "522[34]", source: "Cloud Of Darkness" } +426.5 "Ground-Razing Particle Beam" Ability { id: "55ED", source: "Cloud Of Darkness" } +434.9 "Zero-Form Particle Beam" Ability { id: "55EB", source: "Cloud Of Darkness" } -449.6 "Empty Plane" sync / 1[56]:[^:]*:Cloud Of Darkness:4FC6:/ window 30,30 jump 239.2 +449.6 "Empty Plane" Ability { id: "4FC6", source: "Cloud Of Darkness" } window 30,30 jump 239.2 463.8 "Flood Of Emptiness" 464.2 "Mire Of Despair" 464.2 "Earth-Shattering Particle Beam" diff --git a/ui/raidboss/data/05-shb/raid/e9s.txt b/ui/raidboss/data/05-shb/raid/e9s.txt index 88c87c8601..8a83c5e4d3 100644 --- a/ui/raidboss/data/05-shb/raid/e9s.txt +++ b/ui/raidboss/data/05-shb/raid/e9s.txt @@ -5,63 +5,63 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -16.9 "Ground-Razing Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:5625:/ window 17,10 -27.1 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:5B4[56]:/ -36.8 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:5B4[56]:/ -47.5 "Devouring Dark" sync / 1[56]:[^:]*:Cloud Of Darkness:5623:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +16.9 "Ground-Razing Particle Beam" Ability { id: "5625", source: "Cloud Of Darkness" } window 17,10 +27.1 "The Art Of Darkness" Ability { id: "5B4[56]", source: "Cloud Of Darkness" } +36.8 "The Art Of Darkness" Ability { id: "5B4[56]", source: "Cloud Of Darkness" } +47.5 "Devouring Dark" Ability { id: "5623", source: "Cloud Of Darkness" } ## Woods -63.1 "Obscure Woods" sync / 1[56]:[^:]*:Cloud Of Darkness:55EE:/ -74.3 "Flood Of Obscurity" sync / 1[56]:[^:]*:Cloud Of Darkness:5907:/ -81.8 "Rejuvenating Balm" sync / 1[56]:[^:]*:Cloud Of Darkness:5618:/ -101.6 "Phaser Unlimited 1" sync / 1[56]:[^:]*:Cloud Of Darkness:56(1[23]|0[DE]):/ window 4,4 -103.7 "--1--" sync / 1[56]:[^:]*:Cloud Of Darkness:56(14|0F):/ -105.7 "--2--" sync / 1[56]:[^:]*:Cloud Of Darkness:561[05]:/ -109.0 "--3--" sync / 1[56]:[^:]*:Cloud Of Darkness:5B0[01]:/ -126.2 "Ground-Razing Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:5625:/ -144.4 "The Second Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:560[12]:/ -159.5 "Phaser Unlimited 2" sync / 1[56]:[^:]*:Cloud Of Darkness:56(1[23]|0[DE]):/ window 4,4 -161.6 "--1--" sync / 1[56]:[^:]*:Cloud Of Darkness:56(14|0F):/ -163.6 "--2--" sync / 1[56]:[^:]*:Cloud Of Darkness:561[05]:/ -166.9 "--3--" sync / 1[56]:[^:]*:Cloud Of Darkness:5B0[01]:/ -182.1 "Devouring Dark" sync / 1[56]:[^:]*:Cloud Of Darkness:5623:/ +63.1 "Obscure Woods" Ability { id: "55EE", source: "Cloud Of Darkness" } +74.3 "Flood Of Obscurity" Ability { id: "5907", source: "Cloud Of Darkness" } +81.8 "Rejuvenating Balm" Ability { id: "5618", source: "Cloud Of Darkness" } +101.6 "Phaser Unlimited 1" Ability { id: "56(1[23]|0[DE])", source: "Cloud Of Darkness" } window 4,4 +103.7 "--1--" Ability { id: "56(14|0F)", source: "Cloud Of Darkness" } +105.7 "--2--" Ability { id: "561[05]", source: "Cloud Of Darkness" } +109.0 "--3--" Ability { id: "5B0[01]", source: "Cloud Of Darkness" } +126.2 "Ground-Razing Particle Beam" Ability { id: "5625", source: "Cloud Of Darkness" } +144.4 "The Second Art Of Darkness" Ability { id: "560[12]", source: "Cloud Of Darkness" } +159.5 "Phaser Unlimited 2" Ability { id: "56(1[23]|0[DE])", source: "Cloud Of Darkness" } window 4,4 +161.6 "--1--" Ability { id: "56(14|0F)", source: "Cloud Of Darkness" } +163.6 "--2--" Ability { id: "561[05]", source: "Cloud Of Darkness" } +166.9 "--3--" Ability { id: "5B0[01]", source: "Cloud Of Darkness" } +182.1 "Devouring Dark" Ability { id: "5623", source: "Cloud Of Darkness" } ## Tiles -197.7 "Empty Plane" sync / 1[56]:[^:]*:Cloud Of Darkness:55EF:/ -208.9 "Flood Of Emptiness" sync / 1[56]:[^:]*:Cloud Of Darkness:55F0:/ -216.0 "Hypercharged Condensation" sync / 1[56]:[^:]*:Cloud Of Darkness:560C:/ -231.2 "Full-Perimeter Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:5629:/ -248.5 "The Art Of Darkness (L/R)" sync / 1[56]:[^:]*:Cloud Of Darkness:5A9[56]:/ -264.3 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:55F[BE]:/ -279.0 "Deluge Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:55F1:/ +197.7 "Empty Plane" Ability { id: "55EF", source: "Cloud Of Darkness" } +208.9 "Flood Of Emptiness" Ability { id: "55F0", source: "Cloud Of Darkness" } +216.0 "Hypercharged Condensation" Ability { id: "560C", source: "Cloud Of Darkness" } +231.2 "Full-Perimeter Particle Beam" Ability { id: "5629", source: "Cloud Of Darkness" } +248.5 "The Art Of Darkness (L/R)" Ability { id: "5A9[56]", source: "Cloud Of Darkness" } +264.3 "The Art Of Darkness" Ability { id: "55F[BE]", source: "Cloud Of Darkness" } +279.0 "Deluge Of Darkness" Ability { id: "55F1", source: "Cloud Of Darkness" } ## Default -285.9 "Summon" sync / 1[56]:[^:]*:Cloud Of Darkness:5019:/ -301.2 "The Art Of Darkness (L/R)" sync / 1[56]:[^:]*:Cloud Of Darkness:5A9[56]:/ -314.8 "Devouring Dark" sync / 1[56]:[^:]*:Cloud Of Darkness:5623:/ -337.4 "The Third Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:560[34]:/ +285.9 "Summon" Ability { id: "5019", source: "Cloud Of Darkness" } +301.2 "The Art Of Darkness (L/R)" Ability { id: "5A9[56]", source: "Cloud Of Darkness" } +314.8 "Devouring Dark" Ability { id: "5623", source: "Cloud Of Darkness" } +337.4 "The Third Art Of Darkness" Ability { id: "560[34]", source: "Cloud Of Darkness" } ## Woods -358.0 "Obscure Woods" sync / 1[56]:[^:]*:Cloud Of Darkness:55EE:/ -369.2 "Flood Of Obscurity" sync / 1[56]:[^:]*:Cloud Of Darkness:5907:/ -377.3 "Particle Concentration" sync / 1[56]:[^:]*:Cloud Of Darkness:5620:/ -397.3 "Phaser Unlimited 3" sync / 1[56]:[^:]*:Cloud Of Darkness:56(1[23]|0[DE]):/ window 4,4 -399.4 "--1--" sync / 1[56]:[^:]*:Cloud Of Darkness:56(14|0F):/ -401.4 "--2--" sync / 1[56]:[^:]*:Cloud Of Darkness:561[05]:/ -404.7 "--3--" sync / 1[56]:[^:]*:Cloud Of Darkness:5B0[01]:/ -418.9 "Ground-Razing Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:5625:/ -433.0 "Rejuvenating Balm" sync / 1[56]:[^:]*:Cloud Of Darkness:5618:/ -444.6 "The Second Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:560[12]:/ -461.3 "Devouring Dark" sync / 1[56]:[^:]*:Cloud Of Darkness:5623:/ +358.0 "Obscure Woods" Ability { id: "55EE", source: "Cloud Of Darkness" } +369.2 "Flood Of Obscurity" Ability { id: "5907", source: "Cloud Of Darkness" } +377.3 "Particle Concentration" Ability { id: "5620", source: "Cloud Of Darkness" } +397.3 "Phaser Unlimited 3" Ability { id: "56(1[23]|0[DE])", source: "Cloud Of Darkness" } window 4,4 +399.4 "--1--" Ability { id: "56(14|0F)", source: "Cloud Of Darkness" } +401.4 "--2--" Ability { id: "561[05]", source: "Cloud Of Darkness" } +404.7 "--3--" Ability { id: "5B0[01]", source: "Cloud Of Darkness" } +418.9 "Ground-Razing Particle Beam" Ability { id: "5625", source: "Cloud Of Darkness" } +433.0 "Rejuvenating Balm" Ability { id: "5618", source: "Cloud Of Darkness" } +444.6 "The Second Art Of Darkness" Ability { id: "560[12]", source: "Cloud Of Darkness" } +461.3 "Devouring Dark" Ability { id: "5623", source: "Cloud Of Darkness" } ## Tiles -476.7 "Empty Plane" sync / 1[56]:[^:]*:Cloud Of Darkness:55EF:/ -487.9 "Flood Of Emptiness" sync / 1[56]:[^:]*:Cloud Of Darkness:55F0:/ -495.0 "Hypercharged Condensation" sync / 1[56]:[^:]*:Cloud Of Darkness:560C:/ -510.2 "Full-Perimeter Particle Beam" sync / 1[56]:[^:]*:Cloud Of Darkness:5629:/ -527.5 "The Art Of Darkness (L/R)" sync / 1[56]:[^:]*:Cloud Of Darkness:5A9[56]:/ -543.3 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:55F[BE]:/ -564.2 "The Art Of Darkness (L/R)" sync / 1[56]:[^:]*:Cloud Of Darkness:5A9[56]:/ -580.0 "The Art Of Darkness" sync / 1[56]:[^:]*:Cloud Of Darkness:55F[BE]:/ -597.1 "Enrage" sync / 1[56]:[^:]*:Cloud Of Darkness:562A:/ +476.7 "Empty Plane" Ability { id: "55EF", source: "Cloud Of Darkness" } +487.9 "Flood Of Emptiness" Ability { id: "55F0", source: "Cloud Of Darkness" } +495.0 "Hypercharged Condensation" Ability { id: "560C", source: "Cloud Of Darkness" } +510.2 "Full-Perimeter Particle Beam" Ability { id: "5629", source: "Cloud Of Darkness" } +527.5 "The Art Of Darkness (L/R)" Ability { id: "5A9[56]", source: "Cloud Of Darkness" } +543.3 "The Art Of Darkness" Ability { id: "55F[BE]", source: "Cloud Of Darkness" } +564.2 "The Art Of Darkness (L/R)" Ability { id: "5A9[56]", source: "Cloud Of Darkness" } +580.0 "The Art Of Darkness" Ability { id: "55F[BE]", source: "Cloud Of Darkness" } +597.1 "Enrage" Ability { id: "562A", source: "Cloud Of Darkness" } diff --git a/ui/raidboss/data/05-shb/trial/diamond_weapon-ex.txt b/ui/raidboss/data/05-shb/trial/diamond_weapon-ex.txt index a1a1bdfb5d..67a70db8be 100644 --- a/ui/raidboss/data/05-shb/trial/diamond_weapon-ex.txt +++ b/ui/raidboss/data/05-shb/trial/diamond_weapon-ex.txt @@ -8,116 +8,116 @@ hideall "--sync--" # -p 5FA7:21.3 ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -16.3 "--sync--" sync / 14:[^:]*:The Diamond Weapon:5FA7:/ window 17,10 -21.3 "Diamond Rain" sync / 1[56]:[^:]*:The Diamond Weapon:5FA7:/ window 25,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +16.3 "--sync--" StartsUsing { id: "5FA7", source: "The Diamond Weapon" } window 17,10 +21.3 "Diamond Rain" Ability { id: "5FA7", source: "The Diamond Weapon" } window 25,10 # 5FA2 = Spread (Homing Laser, 5FA0) # 5F9B = "nothing" (Diamond Rain, 5FA7) # 5FA5 = Stack (Diamond Flash, 5FA1) -36.5 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5FA[2345]:/ window 20,5 -46.7 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -49.9 "Homing Laser/Diamond Flash" sync / 1[56]:[^:]*:The Diamond Weapon:5FA[01]:/ -67.1 "Photon Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FA8:/ -83.4 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[8AB]:/ -93.6 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -104.8 "Diamond Rain" sync / 1[56]:[^:]*:The Diamond Weapon:5FA7:/ -120.0 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5FA[2345]:/ -130.2 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -133.7 "Homing Laser/Diamond Flash" sync / 1[56]:[^:]*:The Diamond Weapon:5FA[01]:/ -151.4 "Photon Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FA8:/ +36.5 "Adamant Purge" Ability { id: "5FA[2345]", source: "The Diamond Weapon" } window 20,5 +46.7 "Claw Swipe" Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +49.9 "Homing Laser/Diamond Flash" Ability { id: "5FA[01]", source: "The Diamond Weapon" } +67.1 "Photon Burst" Ability { id: "5FA8", source: "The Diamond Weapon" } +83.4 "Adamant Purge" Ability { id: "5F9[8AB]", source: "The Diamond Weapon" } +93.6 "Claw Swipe" Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +104.8 "Diamond Rain" Ability { id: "5FA7", source: "The Diamond Weapon" } +120.0 "Adamant Purge" Ability { id: "5FA[2345]", source: "The Diamond Weapon" } +130.2 "Claw Swipe" Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +133.7 "Homing Laser/Diamond Flash" Ability { id: "5FA[01]", source: "The Diamond Weapon" } +151.4 "Photon Burst" Ability { id: "5FA8", source: "The Diamond Weapon" } # Phase transition -167.7 "Code Chi-Xi-Stigma" sync / 1[56]:[^:]*:The Diamond Weapon:5FAD:/ +167.7 "Code Chi-Xi-Stigma" Ability { id: "5FAD", source: "The Diamond Weapon" } 168.0 "--untargetable--" -183.3 "Auri Cyclone" sync / 1[56]:[^:]*:The Diamond Weapon:5FB9:/ -188.0 "Diamond Shot" sync / 1[56]:[^:]*:Articulated Bit:5FC0:/ +183.3 "Auri Cyclone" Ability { id: "5FB9", source: "The Diamond Weapon" } +188.0 "Diamond Shot" Ability { id: "5FC0", source: "Articulated Bit" } ### Phase 2 197.8 "--targetable--" -210.0 "Outrage" sync / 1[56]:[^:]*:The Diamond Weapon:5FBC:/ -218.2 "Outrage" sync / 1[56]:[^:]*:The Diamond Weapon:5FBC:/ -229.6 "Auri Arts (Z)" sync / 1[56]:[^:]*:The Diamond Weapon:(5FAF|5FF8):/ +210.0 "Outrage" Ability { id: "5FBC", source: "The Diamond Weapon" } +218.2 "Outrage" Ability { id: "5FBC", source: "The Diamond Weapon" } +229.6 "Auri Arts (Z)" Ability { id: ["5FAF", "5FF8"], source: "The Diamond Weapon" } 229.6 "--untargetable--" -236.4 "Auri Arts (Jump)" sync / 1[56]:[^:]*:The Diamond Weapon:5FB2:/ +236.4 "Auri Arts (Jump)" Ability { id: "5FB2", source: "The Diamond Weapon" } 241.0 "--targetable--" -250.4 "Outrage" sync / 1[56]:[^:]*:The Diamond Weapon:5FBC:/ -257.6 "Auri Doomstead" sync / 1[56]:[^:]*:The Diamond Weapon:5FBD:/ +250.4 "Outrage" Ability { id: "5FBC", source: "The Diamond Weapon" } +257.6 "Auri Doomstead" Ability { id: "5FBD", source: "The Diamond Weapon" } 265.5 "--untargetable--" -271.8 "Auri Arts (Cleave)?" sync / 1[56]:[^:]*:The Diamond Weapon:5FB5:/ -272.8 "Auri Arts (Jump)" sync / 1[56]:[^:]*:The Diamond Weapon:5FCF:/ +271.8 "Auri Arts (Cleave)?" Ability { id: "5FB5", source: "The Diamond Weapon" } +272.8 "Auri Arts (Jump)" Ability { id: "5FCF", source: "The Diamond Weapon" } 272.8 "--targetable--" -278.7 "Vertical Cleave" sync / 1[56]:[^:]*:The Diamond Weapon:5FD0:/ -291.1 "Outrage" sync / 1[56]:[^:]*:The Diamond Weapon:5FBC:/ -301.3 "Articulated Bits" sync / 1[56]:[^:]*:The Diamond Weapon:5FC1:/ -312.4 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -312.9 "Auri Arts (Z)" sync / 1[56]:[^:]*:The Diamond Weapon:(5FAF|5FF8):/ +278.7 "Vertical Cleave" Ability { id: "5FD0", source: "The Diamond Weapon" } +291.1 "Outrage" Ability { id: "5FBC", source: "The Diamond Weapon" } +301.3 "Articulated Bits" Ability { id: "5FC1", source: "The Diamond Weapon" } +312.4 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +312.9 "Auri Arts (Z)" Ability { id: ["5FAF", "5FF8"], source: "The Diamond Weapon" } 312.9 "--untargetable--" -319.7 "Auri Arts (Jump)" sync / 1[56]:[^:]*:The Diamond Weapon:5FB2:/ -320.4 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ +319.7 "Auri Arts (Jump)" Ability { id: "5FB2", source: "The Diamond Weapon" } +320.4 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } 324.2 "--targetable--" -333.7 "Outrage" sync / 1[56]:[^:]*:The Diamond Weapon:5FBC:/ -340.9 "Auri Doomstead" sync / 1[56]:[^:]*:The Diamond Weapon:5FBD:/ -353.1 "Articulated Bits" sync / 1[56]:[^:]*:The Diamond Weapon:5FC1:/ +333.7 "Outrage" Ability { id: "5FBC", source: "The Diamond Weapon" } +340.9 "Auri Doomstead" Ability { id: "5FBD", source: "The Diamond Weapon" } +353.1 "Articulated Bits" Ability { id: "5FC1", source: "The Diamond Weapon" } 355.7 "--untargetable--" -360.7 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -362.2 "Auri Arts (Cleave)?" sync / 1[56]:[^:]*:The Diamond Weapon:5FB5:/ +360.7 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +362.2 "Auri Arts (Cleave)?" Ability { id: "5FB5", source: "The Diamond Weapon" } 364.0 "--targetable--" -364.0 "Auri Arts (Jump)" sync / 1[56]:[^:]*:The Diamond Weapon:5FCF:/ -369.9 "Vertical Cleave" sync / 1[56]:[^:]*:The Diamond Weapon:5FD0:/ -370.7 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -382.4 "Outrage" sync / 1[56]:[^:]*:The Diamond Weapon:5FBC:/ +364.0 "Auri Arts (Jump)" Ability { id: "5FCF", source: "The Diamond Weapon" } +369.9 "Vertical Cleave" Ability { id: "5FD0", source: "The Diamond Weapon" } +370.7 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +382.4 "Outrage" Ability { id: "5FBC", source: "The Diamond Weapon" } 388.0 "--untargetable--" ### Phase 3 397.9 "--targetable--" -422.1 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FA6:/ -422.7 "Flood Ray 1" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -424.2 "Flood Ray 2" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -425.7 "Flood Ray 3" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -427.2 "Flood Ray 4" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -428.7 "Flood Ray 5" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -430.2 "Flood Ray 6" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -431.7 "Flood Ray 7" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -433.2 "Flood Ray 8" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -450.7 "Photon Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FA8:/ -470.0 "Articulated Bits" sync / 1[56]:[^:]*:The Diamond Weapon:5FA9:/ -477.1 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5FA[2345]:/ -481.6 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -486.2 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -489.7 "Homing Laser/Diamond Flash" sync / 1[56]:[^:]*:The Diamond Weapon:5FA[01]:/ -490.6 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -501.3 "Diamond Rain" sync / 1[56]:[^:]*:The Diamond Weapon:5FA7:/ -516.5 "Articulated Bits" sync / 1[56]:[^:]*:The Diamond Weapon:5FA9:/ -523.6 "Diamond Shrapnel" sync / 1[56]:[^:]*:The Diamond Weapon:5FAC:/ -528.1 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -537.1 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -541.5 "Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FC[56]:/ -546.8 "Photon Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FA8:/ -566.1 "Articulated Bits" sync / 1[56]:[^:]*:The Diamond Weapon:5FA9:/ +422.1 "--sync--" Ability { id: "5FA6", source: "The Diamond Weapon" } +422.7 "Flood Ray 1" #Ability { id: "5FC7", source: "The Diamond Weapon" } +424.2 "Flood Ray 2" #Ability { id: "5FC7", source: "The Diamond Weapon" } +425.7 "Flood Ray 3" #Ability { id: "5FC7", source: "The Diamond Weapon" } +427.2 "Flood Ray 4" #Ability { id: "5FC7", source: "The Diamond Weapon" } +428.7 "Flood Ray 5" #Ability { id: "5FC7", source: "The Diamond Weapon" } +430.2 "Flood Ray 6" #Ability { id: "5FC7", source: "The Diamond Weapon" } +431.7 "Flood Ray 7" #Ability { id: "5FC7", source: "The Diamond Weapon" } +433.2 "Flood Ray 8" #Ability { id: "5FC7", source: "The Diamond Weapon" } +450.7 "Photon Burst" Ability { id: "5FA8", source: "The Diamond Weapon" } +470.0 "Articulated Bits" Ability { id: "5FA9", source: "The Diamond Weapon" } +477.1 "Adamant Purge" Ability { id: "5FA[2345]", source: "The Diamond Weapon" } +481.6 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +486.2 "Claw Swipe" Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +489.7 "Homing Laser/Diamond Flash" Ability { id: "5FA[01]", source: "The Diamond Weapon" } +490.6 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +501.3 "Diamond Rain" Ability { id: "5FA7", source: "The Diamond Weapon" } +516.5 "Articulated Bits" Ability { id: "5FA9", source: "The Diamond Weapon" } +523.6 "Diamond Shrapnel" Ability { id: "5FAC", source: "The Diamond Weapon" } +528.1 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +537.1 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +541.5 "Burst" Ability { id: "5FC[56]", source: "The Diamond Weapon" } +546.8 "Photon Burst" Ability { id: "5FA8", source: "The Diamond Weapon" } +566.1 "Articulated Bits" Ability { id: "5FA9", source: "The Diamond Weapon" } # This Purge seems to be able to be at least 5FA3, 5FA4, 5FA5, so including every possiblility -573.2 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F(9[ABCD]|A[2345]):/ -577.7 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -583.4 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -586.8 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -597.8 "Diamond Rain" sync / 1[56]:[^:]*:The Diamond Weapon:5FA7:/ -621.0 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FA6:/ -621.1 "Flood Ray 1" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -622.6 "Flood Ray 2" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -624.1 "Flood Ray 3" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -625.6 "Flood Ray 4" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -627.1 "Flood Ray 5" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -628.6 "Flood Ray 6" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -630.1 "Flood Ray 7" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -631.6 "Flood Ray 8" #sync / 1[56]:[^:]*:The Diamond Weapon:5FC7:/ -649.2 "Photon Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FA8:/ -668.5 "Articulated Bits" sync / 1[56]:[^:]*:The Diamond Weapon:5FA9:/ -675.6 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5FA[2345]:/ -680.1 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -685.8 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -689.0 "Homing Laser/Diamond Flash" sync / 1[56]:[^:]*:The Diamond Weapon:5FA[01]:/ -689.2 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FAB:/ -700.2 "Diamond Rain" sync / 1[56]:[^:]*:The Diamond Weapon:5FA7:/ +573.2 "Adamant Purge" Ability { id: "5F(9[ABCD]|A[2345])", source: "The Diamond Weapon" } +577.7 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +583.4 "Claw Swipe" Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +586.8 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +597.8 "Diamond Rain" Ability { id: "5FA7", source: "The Diamond Weapon" } +621.0 "--sync--" Ability { id: "5FA6", source: "The Diamond Weapon" } +621.1 "Flood Ray 1" #Ability { id: "5FC7", source: "The Diamond Weapon" } +622.6 "Flood Ray 2" #Ability { id: "5FC7", source: "The Diamond Weapon" } +624.1 "Flood Ray 3" #Ability { id: "5FC7", source: "The Diamond Weapon" } +625.6 "Flood Ray 4" #Ability { id: "5FC7", source: "The Diamond Weapon" } +627.1 "Flood Ray 5" #Ability { id: "5FC7", source: "The Diamond Weapon" } +628.6 "Flood Ray 6" #Ability { id: "5FC7", source: "The Diamond Weapon" } +630.1 "Flood Ray 7" #Ability { id: "5FC7", source: "The Diamond Weapon" } +631.6 "Flood Ray 8" #Ability { id: "5FC7", source: "The Diamond Weapon" } +649.2 "Photon Burst" Ability { id: "5FA8", source: "The Diamond Weapon" } +668.5 "Articulated Bits" Ability { id: "5FA9", source: "The Diamond Weapon" } +675.6 "Adamant Purge" Ability { id: "5FA[2345]", source: "The Diamond Weapon" } +680.1 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +685.8 "Claw Swipe" Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +689.0 "Homing Laser/Diamond Flash" Ability { id: "5FA[01]", source: "The Diamond Weapon" } +689.2 "Aetherial Bullet" Ability { id: "5FAB", source: "Articulated Bit" } +700.2 "Diamond Rain" Ability { id: "5FA7", source: "The Diamond Weapon" } # Enrage -718.6 "Flood Ray (Enrage)" sync / 1[56]:[^:]*:The Diamond Weapon:5FEE:/ +718.6 "Flood Ray (Enrage)" Ability { id: "5FEE", source: "The Diamond Weapon" } diff --git a/ui/raidboss/data/05-shb/trial/diamond_weapon.txt b/ui/raidboss/data/05-shb/trial/diamond_weapon.txt index 44026036ab..13a4e79772 100644 --- a/ui/raidboss/data/05-shb/trial/diamond_weapon.txt +++ b/ui/raidboss/data/05-shb/trial/diamond_weapon.txt @@ -7,95 +7,95 @@ hideall "--Reset--" hideall "--sync--" # Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.0 "--sync--" sync / 14:[^:]*:The Diamond Weapon:5FA7:/ window 10,10 -11.0 "Diamond Rain" sync / 1[56]:[^:]*:The Diamond Weapon:5FA7:/ -40.3 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F9B:/ -50.5 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9F:/ -63.7 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F9A:/ -73.9 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9E:/ -91.2 "Diamond Rain" sync / 1[56]:[^:]*:The Diamond Weapon:5FA7:/ -102.4 "Photon Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FA8:/ -115.6 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F9D:/ -118.8 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5779:/ -127.2 "Diamond Flash" sync / 1[56]:[^:]*:The Diamond Weapon:5FD4:/ -144.1 "Code Chi-Xi-Stigma" sync / 1[56]:[^:]*:The Diamond Weapon:5FAD:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.0 "--sync--" StartsUsing { id: "5FA7", source: "The Diamond Weapon" } window 10,10 +11.0 "Diamond Rain" Ability { id: "5FA7", source: "The Diamond Weapon" } +40.3 "Adamant Purge" Ability { id: "5F9B", source: "The Diamond Weapon" } +50.5 "Claw Swipe" Ability { id: "5F9F", source: "The Diamond Weapon" } +63.7 "Adamant Purge" Ability { id: "5F9A", source: "The Diamond Weapon" } +73.9 "Claw Swipe" Ability { id: "5F9E", source: "The Diamond Weapon" } +91.2 "Diamond Rain" Ability { id: "5FA7", source: "The Diamond Weapon" } +102.4 "Photon Burst" Ability { id: "5FA8", source: "The Diamond Weapon" } +115.6 "Adamant Purge" Ability { id: "5F9D", source: "The Diamond Weapon" } +118.8 "--sync--" Ability { id: "5779", source: "The Diamond Weapon" } +127.2 "Diamond Flash" Ability { id: "5FD4", source: "The Diamond Weapon" } +144.1 "Code Chi-Xi-Stigma" Ability { id: "5FAD", source: "The Diamond Weapon" } # Intermission 144.1 "--untargetable--" -147.1 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FEB:/ -149.0 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FBE:/ -159.6 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FB9:/ # Auri Cyclone castbar -160.6 "Auri Cyclone 1" sync / 1[56]:[^:]*:The Diamond Weapon:5FE6:/ -162.1 "Auri Cyclone 2" sync / 1[56]:[^:]*:The Diamond Weapon:5FE7:/ -169.1 "Airship's Bane" sync / 1[56]:[^:]*:The Diamond Weapon:5FFE:/ -169.9 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FBB:/ +147.1 "--sync--" Ability { id: "5FEB", source: "The Diamond Weapon" } +149.0 "--sync--" Ability { id: "5FBE", source: "The Diamond Weapon" } +159.6 "--sync--" Ability { id: "5FB9", source: "The Diamond Weapon" } # Auri Cyclone castbar +160.6 "Auri Cyclone 1" Ability { id: "5FE6", source: "The Diamond Weapon" } +162.1 "Auri Cyclone 2" Ability { id: "5FE7", source: "The Diamond Weapon" } +169.1 "Airship's Bane" Ability { id: "5FFE", source: "The Diamond Weapon" } +169.9 "--sync--" Ability { id: "5FBB", source: "The Diamond Weapon" } # Phase 2 174.1 "--targetable--" -186.3 "Outrage" sync / 1[56]:[^:]*:The Diamond Weapon:5FD7:/ -193.5 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:6055:/ -201.5 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:61A0:/ +186.3 "Outrage" Ability { id: "5FD7", source: "The Diamond Weapon" } +193.5 "--sync--" Ability { id: "6055", source: "The Diamond Weapon" } +201.5 "--sync--" Ability { id: "61A0", source: "The Diamond Weapon" } -201.9 "Auri Arts (Z)" sync / 1[56]:[^:]*:The Diamond Weapon:5FF8:/ +201.9 "Auri Arts (Z)" Ability { id: "5FF8", source: "The Diamond Weapon" } 201.9 "--untargetable--" -210.2 "Auri Arts (Jump)" sync / 1[56]:[^:]*:The Diamond Weapon:5FE4:/ +210.2 "Auri Arts (Jump)" Ability { id: "5FE4", source: "The Diamond Weapon" } 213.6 "--targetable--" -220.7 "Auri Doomstead" sync / 1[56]:[^:]*:The Diamond Weapon:5FD8:/ +220.7 "Auri Doomstead" Ability { id: "5FD8", source: "The Diamond Weapon" } 226.8 "--untargetable--" -232.9 "Auri Arts (Cleave)" sync / 1[56]:[^:]*:The Diamond Weapon:6151:/ +232.9 "Auri Arts (Cleave)" Ability { id: "6151", source: "The Diamond Weapon" } 234.6 "--targetable--" -234.9 "Auri Arts (Jump)" sync / 1[56]:[^:]*:The Diamond Weapon:6152:/ +234.9 "Auri Arts (Jump)" Ability { id: "6152", source: "The Diamond Weapon" } -245.0 "Outrage" sync / 1[56]:[^:]*:The Diamond Weapon:5FD7:/ -255.2 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FD6:/ # Vertical Cleave castbar -256.9 "Vertical Cleave" sync / 1[56]:[^:]*:The Diamond Weapon:5FE5:/ -266.4 "Auri Doomstead" sync / 1[56]:[^:]*:The Diamond Weapon:5FD8:/ +245.0 "Outrage" Ability { id: "5FD7", source: "The Diamond Weapon" } +255.2 "--sync--" Ability { id: "5FD6", source: "The Diamond Weapon" } # Vertical Cleave castbar +256.9 "Vertical Cleave" Ability { id: "5FE5", source: "The Diamond Weapon" } +266.4 "Auri Doomstead" Ability { id: "5FD8", source: "The Diamond Weapon" } -269.6 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:6055:/ -277.6 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:61A0:/ -278.0 "Auri Arts (Z)" sync / 1[56]:[^:]*:The Diamond Weapon:5FF8:/ +269.6 "--sync--" Ability { id: "6055", source: "The Diamond Weapon" } +277.6 "--sync--" Ability { id: "61A0", source: "The Diamond Weapon" } +278.0 "Auri Arts (Z)" Ability { id: "5FF8", source: "The Diamond Weapon" } 278.0 "--untargetable--" -281.8 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:6130:/ -286.3 "Auri Arts (Jump)" sync / 1[56]:[^:]*:The Diamond Weapon:5FE4:/ +281.8 "--sync--" Ability { id: "6130", source: "The Diamond Weapon" } +286.3 "Auri Arts (Jump)" Ability { id: "5FE4", source: "The Diamond Weapon" } 289.7 "--targetable--" # Intermission 299.8 "--untargetable--" -302.2 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FBF:/ -303.0 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FEB:/ -304.6 "--sync--" sync / 1[56]:[^:]*:The Diamond Weapon:5FAE:/ +302.2 "--sync--" Ability { id: "5FBF", source: "The Diamond Weapon" } +303.0 "--sync--" Ability { id: "5FEB", source: "The Diamond Weapon" } +304.6 "--sync--" Ability { id: "5FAE", source: "The Diamond Weapon" } 309.7 "--targetable--" # Phase 3 -335.0 "Diamond Shrapnel" sync / 1[56]:[^:]*:The Diamond Weapon:5FAC:/ duration 8 -342.1 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F9B:/ -352.3 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -368.6 "Articulated Bits" sync / 1[56]:[^:]*:The Diamond Weapon:5FA9:/ -375.7 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F9A:/ -376.2 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FD5:/ -385.9 "Claw Swipe" sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -387.8 "Aetherial Bullet" sync / 1[56]:[^:]*:Articulated Bit:5FD5:/ +335.0 "Diamond Shrapnel" Ability { id: "5FAC", source: "The Diamond Weapon" } duration 8 +342.1 "Adamant Purge" Ability { id: "5F9B", source: "The Diamond Weapon" } +352.3 "Claw Swipe" Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +368.6 "Articulated Bits" Ability { id: "5FA9", source: "The Diamond Weapon" } +375.7 "Adamant Purge" Ability { id: "5F9A", source: "The Diamond Weapon" } +376.2 "Aetherial Bullet" Ability { id: "5FD5", source: "Articulated Bit" } +385.9 "Claw Swipe" Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +387.8 "Aetherial Bullet" Ability { id: "5FD5", source: "Articulated Bit" } -400.2 "Photon Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FA8:/ -410.4 "Adamant Sphere" sync / 1[56]:[^:]*:The Diamond Weapon:6144:/ -420.5 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F9D:/ -421.2 "Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FDC:/ +400.2 "Photon Burst" Ability { id: "5FA8", source: "The Diamond Weapon" } +410.4 "Adamant Sphere" Ability { id: "6144", source: "The Diamond Weapon" } +420.5 "Adamant Purge" Ability { id: "5F9D", source: "The Diamond Weapon" } +421.2 "Burst" Ability { id: "5FDC", source: "The Diamond Weapon" } -432.1 "Diamond Flash" sync / 1[56]:[^:]*:The Diamond Weapon:5FD4:/ -446.8 "Diamond Rain" sync / 1[56]:[^:]*:The Diamond Weapon:5FA7:/ -460.0 "Adamant Purge" sync / 1[56]:[^:]*:The Diamond Weapon:5F9C:/ -470.2 "Homing Laser" sync / 1[56]:[^:]*:The Diamond Weapon:5FA0:/ -484.4 "Photon Burst" sync / 1[56]:[^:]*:The Diamond Weapon:5FA8:/ +432.1 "Diamond Flash" Ability { id: "5FD4", source: "The Diamond Weapon" } +446.8 "Diamond Rain" Ability { id: "5FA7", source: "The Diamond Weapon" } +460.0 "Adamant Purge" Ability { id: "5F9C", source: "The Diamond Weapon" } +470.2 "Homing Laser" Ability { id: "5FA0", source: "The Diamond Weapon" } +484.4 "Photon Burst" Ability { id: "5FA8", source: "The Diamond Weapon" } # loop -497.6 "Diamond Shrapnel" sync / 1[56]:[^:]*:The Diamond Weapon:5FAC:/ window 100,100 jump 335 -504.7 "Adamant Purge" #sync / 1[56]:[^:]*:The Diamond Weapon:5F9B:/ -514.9 "Claw Swipe" #sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -531.2 "Articulated Bits" #sync / 1[56]:[^:]*:The Diamond Weapon:5FA9:/ -538.3 "Adamant Purge" #sync / 1[56]:[^:]*:The Diamond Weapon:5F9A:/ -538.8 "Aetherial Bullet" #sync / 1[56]:[^:]*:Articulated Bit:5FD5:/ -548.5 "Claw Swipe" #sync / 1[56]:[^:]*:The Diamond Weapon:5F9[EF]:/ -550.4 "Aetherial Bullet" #sync / 1[56]:[^:]*:Articulated Bit:5FD5:/ +497.6 "Diamond Shrapnel" Ability { id: "5FAC", source: "The Diamond Weapon" } window 100,100 jump 335 +504.7 "Adamant Purge" #Ability { id: "5F9B", source: "The Diamond Weapon" } +514.9 "Claw Swipe" #Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +531.2 "Articulated Bits" #Ability { id: "5FA9", source: "The Diamond Weapon" } +538.3 "Adamant Purge" #Ability { id: "5F9A", source: "The Diamond Weapon" } +538.8 "Aetherial Bullet" #Ability { id: "5FD5", source: "Articulated Bit" } +548.5 "Claw Swipe" #Ability { id: "5F9[EF]", source: "The Diamond Weapon" } +550.4 "Aetherial Bullet" #Ability { id: "5FD5", source: "Articulated Bit" } diff --git a/ui/raidboss/data/05-shb/trial/emerald_weapon-ex.txt b/ui/raidboss/data/05-shb/trial/emerald_weapon-ex.txt index f020acb62a..956dd953ed 100644 --- a/ui/raidboss/data/05-shb/trial/emerald_weapon-ex.txt +++ b/ui/raidboss/data/05-shb/trial/emerald_weapon-ex.txt @@ -7,32 +7,32 @@ hideall "--sync--" # -p 55B0:17.1 # -ii 55AF 55AE 557B 58D3 557D 557F 5BA6 5BA7 5596 557A 5579 5BD3 5017 559E 55A0 5597 5018 55A4 5BA3 554B 554C 5593 559A 5B03 5598 5B1A -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -1.1 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1A:/ window 1.1,0 -12.1 "--sync--" sync / 14:[^:]*:The Emerald Weapon:55B0:/ window 20,20 -17.1 "Emerald Shot" sync / 1[56]:[^:]*:The Emerald Weapon:55B0:/ -28.2 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:55B1:/ -39.4 "Aetheroplasm Production" sync / 1[56]:[^:]*:The Emerald Weapon:55AA:/ -65.6 "Emerald Beam" sync / 1[56]:[^:]*:The Emerald Weapon:557[13]:/ -92.8 "Magitek Magnetism" sync / 1[56]:[^:]*:The Emerald Weapon:5594:/ -118.0 "Magitek Magnetism" sync / 1[56]:[^:]*:The Emerald Weapon:5594:/ -138.1 "Emerald Beam" sync / 1[56]:[^:]*:The Emerald Weapon:557[57]:/ -160.3 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:55B1:/ -171.4 "Bit Storm" sync / 1[56]:[^:]*:The Emerald Weapon:55A2:/ -178.5 "Divide Et Impera" sync / 1[56]:[^:]*:The Emerald Weapon:5537:/ -198.6 "Expire" sync / 1[56]:[^:]*:The Emerald Weapon:5591:/ -208.6 "Aire Tam Storm" sync / 1[56]:[^:]*:The Emerald Weapon:558F:/ -231.7 "Photon Ring" sync / 1[56]:[^:]*:The Emerald Weapon:55A9:/ -243.9 "Magitek Magnetism" sync / 1[56]:[^:]*:The Emerald Weapon:5594:/ -278.1 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:55B1:/ -291.1 "Bit Storm" sync / 1[56]:[^:]*:The Emerald Weapon:55A2:/ -298.2 "Divide Et Impera" sync / 1[56]:[^:]*:The Emerald Weapon:5537:/ -312.5 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:55B2:/ -339.6 "Enrage" sync / 1[56]:[^:]*:The Emerald Weapon:5B16:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +1.1 "--sync--" Ability { id: "5B1A", source: "The Emerald Weapon" } window 1.1,0 +12.1 "--sync--" StartsUsing { id: "55B0", source: "The Emerald Weapon" } window 20,20 +17.1 "Emerald Shot" Ability { id: "55B0", source: "The Emerald Weapon" } +28.2 "Optimized Ultima" Ability { id: "55B1", source: "The Emerald Weapon" } +39.4 "Aetheroplasm Production" Ability { id: "55AA", source: "The Emerald Weapon" } +65.6 "Emerald Beam" Ability { id: "557[13]", source: "The Emerald Weapon" } +92.8 "Magitek Magnetism" Ability { id: "5594", source: "The Emerald Weapon" } +118.0 "Magitek Magnetism" Ability { id: "5594", source: "The Emerald Weapon" } +138.1 "Emerald Beam" Ability { id: "557[57]", source: "The Emerald Weapon" } +160.3 "Optimized Ultima" Ability { id: "55B1", source: "The Emerald Weapon" } +171.4 "Bit Storm" Ability { id: "55A2", source: "The Emerald Weapon" } +178.5 "Divide Et Impera" Ability { id: "5537", source: "The Emerald Weapon" } +198.6 "Expire" Ability { id: "5591", source: "The Emerald Weapon" } +208.6 "Aire Tam Storm" Ability { id: "558F", source: "The Emerald Weapon" } +231.7 "Photon Ring" Ability { id: "55A9", source: "The Emerald Weapon" } +243.9 "Magitek Magnetism" Ability { id: "5594", source: "The Emerald Weapon" } +278.1 "Optimized Ultima" Ability { id: "55B1", source: "The Emerald Weapon" } +291.1 "Bit Storm" Ability { id: "55A2", source: "The Emerald Weapon" } +298.2 "Divide Et Impera" Ability { id: "5537", source: "The Emerald Weapon" } +312.5 "Optimized Ultima" Ability { id: "55B2", source: "The Emerald Weapon" } +339.6 "Enrage" Ability { id: "5B16", source: "The Emerald Weapon" } ### Cutscene -800.0 "--cutscene--" sync / 1[56]:[^:]*:The Emerald Weapon:5B02:/ window 800,0 duration 58.5 +800.0 "--cutscene--" Ability { id: "5B02", source: "The Emerald Weapon" } window 800,0 duration 58.5 858.5 "--targetable--" @@ -43,58 +43,58 @@ hideall "--sync--" # -ii 5B1C 55DA 55D9 55C4 55C5 55C6 55C7 55BC 55BD 55CD 55D2 5585 55CA 55C9 55CB 1000.0 "Start" -1001.0 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1C:/ window 1001,0 -1010.0 "--sync--" sync / 14:[^:]*:The Emerald Weapon:555B:/ window 1015,20 -1015.0 "Divide Et Impera" sync / 1[56]:[^:]*:The Emerald Weapon:555B:/ -1021.3 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1F:/ -1031.3 "Primus Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:55C3:/ -1046.4 "Tertius Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:55CC:/ -1056.4 "Tertius Terminus Est 1" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ -1057.6 "Tertius Terminus Est 2" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ -1058.8 "Tertius Terminus Est 3" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ +1001.0 "--sync--" Ability { id: "5B1C", source: "The Emerald Weapon" } window 1001,0 +1010.0 "--sync--" StartsUsing { id: "555B", source: "The Emerald Weapon" } window 1015,20 +1015.0 "Divide Et Impera" Ability { id: "555B", source: "The Emerald Weapon" } +1021.3 "--sync--" Ability { id: "5B1F", source: "The Emerald Weapon" } +1031.3 "Primus Terminus Est" Ability { id: "55C3", source: "The Emerald Weapon" } +1046.4 "Tertius Terminus Est" Ability { id: "55CC", source: "The Emerald Weapon" } +1056.4 "Tertius Terminus Est 1" #Ability { id: "55CE", source: "The Emerald Weapon" } +1057.6 "Tertius Terminus Est 2" #Ability { id: "55CE", source: "The Emerald Weapon" } +1058.8 "Tertius Terminus Est 3" #Ability { id: "55CE", source: "The Emerald Weapon" } -1075.6 "Legio Phantasmatis" sync / 1[56]:[^:]*:The Emerald Weapon:55B4:/ window 20,20 +1075.6 "Legio Phantasmatis" Ability { id: "55B4", source: "The Emerald Weapon" } window 20,20 1077.7 "--untargetable--" 1080.8 "--targetable--" -1084.7 "Mechanized Maneuver" sync / 1[56]:[^:]*:Black Wolf's Image:55BA:/ -1096.2 "Heirsbane" sync / 1[56]:[^:]*:Black Wolf's Image:55B9:/ -1099.4 "Bombs Away" sync / 1[56]:[^:]*:Black Wolf's Image:55BB:/ +1084.7 "Mechanized Maneuver" Ability { id: "55BA", source: "Black Wolf's Image" } +1096.2 "Heirsbane" Ability { id: "55B9", source: "Black Wolf's Image" } +1099.4 "Bombs Away" Ability { id: "55BB", source: "Black Wolf's Image" } 1104.6 "--untargetable--" -1117.6 "Magitek Cannon" sync / 1[56]:[^:]*:Reaper Image:55BE:/ window 20,20 +1117.6 "Magitek Cannon" Ability { id: "55BE", source: "Reaper Image" } window 20,20 1127.3 "--targetable--" -1135.4 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:5B10:/ -1148.6 "Divide Et Impera" sync / 1[56]:[^:]*:The Emerald Weapon:555B:/ -1155.4 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1F:/ -1162.4 "Tertius Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:55CC:/ -1168.1 "Split" sync / 1[56]:[^:]*:The Emerald Weapon:55(CF|D3):/ -1174.3 "Expire / Sidescathe" sync / 1[56]:[^:]*:The Emerald Weapon:55D[145]:/ -1183.3 "Aire Tam Storm / Emerald Crusher" sync / 1[56]:[^:]*:The Emerald Weapon:(55D0|5585):/ -1186.7 "Tertius Terminus Est 1" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ -1187.9 "Tertius Terminus Est 2" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ -1189.0 "Tertius Terminus Est 3" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ +1135.4 "Optimized Ultima" Ability { id: "5B10", source: "The Emerald Weapon" } +1148.6 "Divide Et Impera" Ability { id: "555B", source: "The Emerald Weapon" } +1155.4 "--sync--" Ability { id: "5B1F", source: "The Emerald Weapon" } +1162.4 "Tertius Terminus Est" Ability { id: "55CC", source: "The Emerald Weapon" } +1168.1 "Split" Ability { id: "55(CF|D3)", source: "The Emerald Weapon" } +1174.3 "Expire / Sidescathe" Ability { id: "55D[145]", source: "The Emerald Weapon" } +1183.3 "Aire Tam Storm / Emerald Crusher" Ability { id: ["55D0", "5585"], source: "The Emerald Weapon" } +1186.7 "Tertius Terminus Est 1" #Ability { id: "55CE", source: "The Emerald Weapon" } +1187.9 "Tertius Terminus Est 2" #Ability { id: "55CE", source: "The Emerald Weapon" } +1189.0 "Tertius Terminus Est 3" #Ability { id: "55CE", source: "The Emerald Weapon" } -1205.5 "Legio Phantasmatis" sync / 1[56]:[^:]*:The Emerald Weapon:55B4:/ window 20,20 +1205.5 "Legio Phantasmatis" Ability { id: "55B4", source: "The Emerald Weapon" } window 20,20 1207.5 "--untargetable--" 1210.7 "--targetable--" -1214.9 "Full Rank" sync / 1[56]:[^:]*:Black Wolf's Image:55C0:/ -1226.2 "Final Formation" sync / 1[56]:[^:]*:Black Wolf's Image:55C1:/ -1232.4 "Fatal Fire" sync / 1[56]:[^:]*:Black Wolf's Image:55C2:/ +1214.9 "Full Rank" Ability { id: "55C0", source: "Black Wolf's Image" } +1226.2 "Final Formation" Ability { id: "55C1", source: "Black Wolf's Image" } +1232.4 "Fatal Fire" Ability { id: "55C2", source: "Black Wolf's Image" } 1234.6 "--untargetable--" -1238.4 "Shots Fired 1" #sync / 1[56]:[^:]*:Imperial Image:55B7:/ -1240.4 "Shots Fired 2" #sync / 1[56]:[^:]*:Imperial Image:55B7:/ -1242.4 "Shots Fired 3" #sync / 1[56]:[^:]*:Imperial Image:55B7:/ -1247.5 "Magitek Cannon" sync / 1[56]:[^:]*:Reaper Image:55BE:/ window 20,20 +1238.4 "Shots Fired 1" #Ability { id: "55B7", source: "Imperial Image" } +1240.4 "Shots Fired 2" #Ability { id: "55B7", source: "Imperial Image" } +1242.4 "Shots Fired 3" #Ability { id: "55B7", source: "Imperial Image" } +1247.5 "Magitek Cannon" Ability { id: "55BE", source: "Reaper Image" } window 20,20 1257.2 "--targetable--" -1269.4 "Secundus Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:55C8:/ -1286.5 "Tertius Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:55CC:/ -1292.7 "Split" sync / 1[56]:[^:]*:The Emerald Weapon:55(CF|D3):/ -1298.5 "Sidescathe / Expire" sync / 1[56]:[^:]*:The Emerald Weapon:55D[145]:/ -1307.5 "Emerald Crusher / Aire Tam Storm" sync / 1[56]:[^:]*:The Emerald Weapon:(55D0|5585):/ -1310.4 "Tertius Terminus Est 1" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ -1311.6 "Tertius Terminus Est 2" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ -1312.8 "Tertius Terminus Est 3" #sync / 1[56]:[^:]*:The Emerald Weapon:55CE:/ -1326.5 "Primus Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:55C3:/ -1343.2 "Divide Et Impera" sync / 1[56]:[^:]*:The Emerald Weapon:555B:/ -1374.5 "Enrage" sync / 1[56]:[^:]*:The Emerald Weapon:5B17:/ +1269.4 "Secundus Terminus Est" Ability { id: "55C8", source: "The Emerald Weapon" } +1286.5 "Tertius Terminus Est" Ability { id: "55CC", source: "The Emerald Weapon" } +1292.7 "Split" Ability { id: "55(CF|D3)", source: "The Emerald Weapon" } +1298.5 "Sidescathe / Expire" Ability { id: "55D[145]", source: "The Emerald Weapon" } +1307.5 "Emerald Crusher / Aire Tam Storm" Ability { id: ["55D0", "5585"], source: "The Emerald Weapon" } +1310.4 "Tertius Terminus Est 1" #Ability { id: "55CE", source: "The Emerald Weapon" } +1311.6 "Tertius Terminus Est 2" #Ability { id: "55CE", source: "The Emerald Weapon" } +1312.8 "Tertius Terminus Est 3" #Ability { id: "55CE", source: "The Emerald Weapon" } +1326.5 "Primus Terminus Est" Ability { id: "55C3", source: "The Emerald Weapon" } +1343.2 "Divide Et Impera" Ability { id: "555B", source: "The Emerald Weapon" } +1374.5 "Enrage" Ability { id: "5B17", source: "The Emerald Weapon" } diff --git a/ui/raidboss/data/05-shb/trial/emerald_weapon.txt b/ui/raidboss/data/05-shb/trial/emerald_weapon.txt index 5edca44990..a1f98fd453 100644 --- a/ui/raidboss/data/05-shb/trial/emerald_weapon.txt +++ b/ui/raidboss/data/05-shb/trial/emerald_weapon.txt @@ -11,141 +11,141 @@ hideall "--sync--" ### Phase 1 0 "Start" -0.5 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1A:/ window 1,0.5 -8.4 "--sync--" sync / 14:[^:]*:The Emerald Weapon:5554:/ window 10,5 -13.4 "Emerald Shot" sync / 1[56]:[^:]*:The Emerald Weapon:5554:/ - -26.6 "Emerald Beam" sync / 1[56]:[^:]*:The Emerald Weapon:552A:/ -26.6 "Heat Ray" sync / 1[56]:[^:]*:The Emerald Weapon:4F9D:/ duration 9.7 -26.6 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5534:/ -28.6 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5536:/ -30.6 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5538:/ -32.4 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5534:/ -34.4 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5536:/ -36.4 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5538:/ -39.4 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5017:/ - -50.7 "Magitek Magnetism" sync / 1[56]:[^:]*:The Emerald Weapon:5B05:/ -64.3 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5545:/ -65.2 "Explosion" sync / 1[56]:[^:]*:Magnetic Mine:5B04:/ - -73.9 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:5555:/ -79.1 "Split" sync / 1[56]:[^:]*:The Emerald Weapon:553A:/ -85.2 "Sidescathe" sync / 1[56]:[^:]*:The Emerald Weapon:(553F|5541):/ -95.0 "Emerald Crusher" sync / 1[56]:[^:]*:The Emerald Weapon:553E:/ - -99.2 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5543:/ -108.6 "Emerald Beam" sync / 1[56]:[^:]*:The Emerald Weapon:5530:/ - -108.6 "Heat Ray" sync / 1[56]:[^:]*:The Emerald Weapon:4F9D:/ duration 9.7 -108.6 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5534:/ -110.6 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5536:/ -112.6 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5538:/ -114.4 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5534:/ -116.4 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5536:/ -118.4 "Photon Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5538:/ -121.5 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5018:/ - -134.8 "Bit Storm" sync / 1[56]:[^:]*:The Emerald Weapon:554A:/ -134.8 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:4F9C:/ -149.9 "Divide Et Impera" sync / 1[56]:[^:]*:The Emerald Weapon:5535:/ -162.2 "Magitek Magnetism" sync / 1[56]:[^:]*:The Emerald Weapon:5B06:/ -175.8 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5545:/ -176.6 "Explosion" sync / 1[56]:[^:]*:Magnetic Mine:5B04:/ - -180.2 "Pulse Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5547:/ -180.4 "Pulse Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5548:/ -184.5 "Pulse Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5547:/ -184.7 "Pulse Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5548:/ -188.8 "Pulse Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5547:/ -189.0 "Pulse Laser" sync / 1[56]:[^:]*:The Emerald Weapon:5548:/ -195.5 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1D:/ - -200.6 "Split" sync / 1[56]:[^:]*:The Emerald Weapon:553B:/ -211.7 "Bit Plasma" sync / 1[56]:[^:]*:Claw Bit:554F:/ -211.7 "Sidescathe" sync / 1[56]:[^:]*:The Emerald Weapon:(5540|5542):/ -219.2 "Bit Plasma" sync / 1[56]:[^:]*:Claw Bit:554F:/ -226.7 "Bit Plasma" sync / 1[56]:[^:]*:Claw Bit:554F:/ - -240.5 "Emerald Crusher" sync / 1[56]:[^:]*:The Emerald Weapon:553E:/ -244.8 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5544:/ -247.9 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1E:/ -260.1 "Magitek Magnetism" sync / 1[56]:[^:]*:The Emerald Weapon:5B06:/ -273.6 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5545:/ -274.4 "Explosion" sync / 1[56]:[^:]*:Magnetic Mine:5B04:/ -284.2 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:5556:/ -296.4 "Emerald Shot" sync / 1[56]:[^:]*:The Emerald Weapon:5554:/ -308.7 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:5556:/ -315.9 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1D:/ +0.5 "--sync--" Ability { id: "5B1A", source: "The Emerald Weapon" } window 1,0.5 +8.4 "--sync--" StartsUsing { id: "5554", source: "The Emerald Weapon" } window 10,5 +13.4 "Emerald Shot" Ability { id: "5554", source: "The Emerald Weapon" } + +26.6 "Emerald Beam" Ability { id: "552A", source: "The Emerald Weapon" } +26.6 "Heat Ray" Ability { id: "4F9D", source: "The Emerald Weapon" } duration 9.7 +26.6 "Photon Laser" Ability { id: "5534", source: "The Emerald Weapon" } +28.6 "Photon Laser" Ability { id: "5536", source: "The Emerald Weapon" } +30.6 "Photon Laser" Ability { id: "5538", source: "The Emerald Weapon" } +32.4 "Photon Laser" Ability { id: "5534", source: "The Emerald Weapon" } +34.4 "Photon Laser" Ability { id: "5536", source: "The Emerald Weapon" } +36.4 "Photon Laser" Ability { id: "5538", source: "The Emerald Weapon" } +39.4 "--sync--" Ability { id: "5017", source: "The Emerald Weapon" } + +50.7 "Magitek Magnetism" Ability { id: "5B05", source: "The Emerald Weapon" } +64.3 "--sync--" Ability { id: "5545", source: "The Emerald Weapon" } +65.2 "Explosion" Ability { id: "5B04", source: "Magnetic Mine" } + +73.9 "Optimized Ultima" Ability { id: "5555", source: "The Emerald Weapon" } +79.1 "Split" Ability { id: "553A", source: "The Emerald Weapon" } +85.2 "Sidescathe" Ability { id: ["553F", "5541"], source: "The Emerald Weapon" } +95.0 "Emerald Crusher" Ability { id: "553E", source: "The Emerald Weapon" } + +99.2 "--sync--" Ability { id: "5543", source: "The Emerald Weapon" } +108.6 "Emerald Beam" Ability { id: "5530", source: "The Emerald Weapon" } + +108.6 "Heat Ray" Ability { id: "4F9D", source: "The Emerald Weapon" } duration 9.7 +108.6 "Photon Laser" Ability { id: "5534", source: "The Emerald Weapon" } +110.6 "Photon Laser" Ability { id: "5536", source: "The Emerald Weapon" } +112.6 "Photon Laser" Ability { id: "5538", source: "The Emerald Weapon" } +114.4 "Photon Laser" Ability { id: "5534", source: "The Emerald Weapon" } +116.4 "Photon Laser" Ability { id: "5536", source: "The Emerald Weapon" } +118.4 "Photon Laser" Ability { id: "5538", source: "The Emerald Weapon" } +121.5 "--sync--" Ability { id: "5018", source: "The Emerald Weapon" } + +134.8 "Bit Storm" Ability { id: "554A", source: "The Emerald Weapon" } +134.8 "--sync--" Ability { id: "4F9C", source: "The Emerald Weapon" } +149.9 "Divide Et Impera" Ability { id: "5535", source: "The Emerald Weapon" } +162.2 "Magitek Magnetism" Ability { id: "5B06", source: "The Emerald Weapon" } +175.8 "--sync--" Ability { id: "5545", source: "The Emerald Weapon" } +176.6 "Explosion" Ability { id: "5B04", source: "Magnetic Mine" } + +180.2 "Pulse Laser" Ability { id: "5547", source: "The Emerald Weapon" } +180.4 "Pulse Laser" Ability { id: "5548", source: "The Emerald Weapon" } +184.5 "Pulse Laser" Ability { id: "5547", source: "The Emerald Weapon" } +184.7 "Pulse Laser" Ability { id: "5548", source: "The Emerald Weapon" } +188.8 "Pulse Laser" Ability { id: "5547", source: "The Emerald Weapon" } +189.0 "Pulse Laser" Ability { id: "5548", source: "The Emerald Weapon" } +195.5 "--sync--" Ability { id: "5B1D", source: "The Emerald Weapon" } + +200.6 "Split" Ability { id: "553B", source: "The Emerald Weapon" } +211.7 "Bit Plasma" Ability { id: "554F", source: "Claw Bit" } +211.7 "Sidescathe" Ability { id: ["5540", "5542"], source: "The Emerald Weapon" } +219.2 "Bit Plasma" Ability { id: "554F", source: "Claw Bit" } +226.7 "Bit Plasma" Ability { id: "554F", source: "Claw Bit" } + +240.5 "Emerald Crusher" Ability { id: "553E", source: "The Emerald Weapon" } +244.8 "--sync--" Ability { id: "5544", source: "The Emerald Weapon" } +247.9 "--sync--" Ability { id: "5B1E", source: "The Emerald Weapon" } +260.1 "Magitek Magnetism" Ability { id: "5B06", source: "The Emerald Weapon" } +273.6 "--sync--" Ability { id: "5545", source: "The Emerald Weapon" } +274.4 "Explosion" Ability { id: "5B04", source: "Magnetic Mine" } +284.2 "Optimized Ultima" Ability { id: "5556", source: "The Emerald Weapon" } +296.4 "Emerald Shot" Ability { id: "5554", source: "The Emerald Weapon" } +308.7 "Optimized Ultima" Ability { id: "5556", source: "The Emerald Weapon" } +315.9 "--sync--" Ability { id: "5B1D", source: "The Emerald Weapon" } # TODO: loop??? # TODO: there's sometimes a 5544/5B1E ability here? -321.0 "Split" sync / 1[56]:[^:]*:The Emerald Weapon:553B:/ window 100,100 jump 200.6 -332.1 "Bit Plasma" #sync / 1[56]:[^:]*:Claw Bit:554F:/ -332.1 "Sidescathe" #sync / 1[56]:[^:]*:The Emerald Weapon:(5541|5542):/ -339.6 "Bit Plasma" #sync / 1[56]:[^:]*:Claw Bit:554F:/ -347.1 "Bit Plasma" #sync / 1[56]:[^:]*:Claw Bit:554F:/ +321.0 "Split" Ability { id: "553B", source: "The Emerald Weapon" } window 100,100 jump 200.6 +332.1 "Bit Plasma" #Ability { id: "554F", source: "Claw Bit" } +332.1 "Sidescathe" #Ability { id: ["5541", "5542"], source: "The Emerald Weapon" } +339.6 "Bit Plasma" #Ability { id: "554F", source: "Claw Bit" } +347.1 "Bit Plasma" #Ability { id: "554F", source: "Claw Bit" } ### Intermission 936.6 "--untargetable--" -936.7 "--sync--" sync / 14:[^:]*:The Emerald Weapon:5B02:/ window 1000,10 -940.7 "Disruption Field" sync / 1[56]:[^:]*:The Emerald Weapon:5B02:/ +936.7 "--sync--" StartsUsing { id: "5B02", source: "The Emerald Weapon" } window 1000,10 +940.7 "Disruption Field" Ability { id: "5B02", source: "The Emerald Weapon" } 1000.0 "--targetable--" ### Phase 2 (checkpoint) -1006.2 "--sync--" sync / 14:[^:]*:The Emerald Weapon:5539:/ window 1200,10 -1011.2 "Divide Et Impera" sync / 1[56]:[^:]*:The Emerald Weapon:5539:/ -1016.5 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1F:/ -1025.6 "Primus Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:5562:/ -1037.7 "Secundus Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:5567:/ +1006.2 "--sync--" StartsUsing { id: "5539", source: "The Emerald Weapon" } window 1200,10 +1011.2 "Divide Et Impera" Ability { id: "5539", source: "The Emerald Weapon" } +1016.5 "--sync--" Ability { id: "5B1F", source: "The Emerald Weapon" } +1025.6 "Primus Terminus Est" Ability { id: "5562", source: "The Emerald Weapon" } +1037.7 "Secundus Terminus Est" Ability { id: "5567", source: "The Emerald Weapon" } # Swords -1053.9 "Tertius Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:556B:/ -1055.9 "Tertius Terminus Est 1" #sync / 1[56]:[^:]*:Bitblade:556C:/ -1057.4 "Tertius Terminus Est 2" #sync / 1[56]:[^:]*:Bitblade:556C:/ -1058.9 "Tertius Terminus Est 3" #sync / 1[56]:[^:]*:Bitblade:556C:/ -1063.9 "Tertius Terminus Est 1" #sync / 1[56]:[^:]*:The Emerald Weapon:556D:/ -1065.4 "Tertius Terminus Est 2" #sync / 1[56]:[^:]*:The Emerald Weapon:556D:/ -1066.9 "Tertius Terminus Est 3" #sync / 1[56]:[^:]*:The Emerald Weapon:556D:/ +1053.9 "Tertius Terminus Est" Ability { id: "556B", source: "The Emerald Weapon" } +1055.9 "Tertius Terminus Est 1" #Ability { id: "556C", source: "Bitblade" } +1057.4 "Tertius Terminus Est 2" #Ability { id: "556C", source: "Bitblade" } +1058.9 "Tertius Terminus Est 3" #Ability { id: "556C", source: "Bitblade" } +1063.9 "Tertius Terminus Est 1" #Ability { id: "556D", source: "The Emerald Weapon" } +1065.4 "Tertius Terminus Est 2" #Ability { id: "556D", source: "The Emerald Weapon" } +1066.9 "Tertius Terminus Est 3" #Ability { id: "556D", source: "The Emerald Weapon" } # Soldier phase -1070.1 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B20:/ -1082.3 "Legio Phantasmatis" sync / 1[56]:[^:]*:The Emerald Weapon:5559:/ +1070.1 "--sync--" Ability { id: "5B20", source: "The Emerald Weapon" } +1082.3 "Legio Phantasmatis" Ability { id: "5559", source: "The Emerald Weapon" } 1084.3 "--untargetable--" -1091.6 "Rank And File" sync / 1[56]:[^:]*:Black Wolf's Image:555A:/ - -1096.9 "Threefold Formation" sync / 1[56]:[^:]*:Black Wolf's Image:555D:/ -1104.8 "Fire Away" sync / 1[56]:[^:]*:Black Wolf's Image:555E:/ -1107.9 "Shots Fired 1" #sync / 1[56]:[^:]*:Imperial Image:555F:/ -1109.9 "Shots Fired 2" #sync / 1[56]:[^:]*:Imperial Image:555F:/ -1111.9 "Shots Fired 3" #sync / 1[56]:[^:]*:Imperial Image:555F:/ -1114.6 "Heirsbane" sync / 1[56]:[^:]*:Black Wolf's Image:5561:/ - -1117.8 "Threefold Formation" sync / 1[56]:[^:]*:Black Wolf's Image:555D:/ -1125.4 "Fire Away" sync / 1[56]:[^:]*:Black Wolf's Image:555E:/ -1128.5 "Shots Fired 1" #sync / 1[56]:[^:]*:Imperial Image:555F:/ -1130.5 "Shots Fired 2" #sync / 1[56]:[^:]*:Imperial Image:555F:/ -1132.5 "Shots Fired 3" #sync / 1[56]:[^:]*:Imperial Image:555F:/ -1135.1 "Heirsbane" sync / 1[56]:[^:]*:Black Wolf's Image:5561:/ +1091.6 "Rank And File" Ability { id: "555A", source: "Black Wolf's Image" } + +1096.9 "Threefold Formation" Ability { id: "555D", source: "Black Wolf's Image" } +1104.8 "Fire Away" Ability { id: "555E", source: "Black Wolf's Image" } +1107.9 "Shots Fired 1" #Ability { id: "555F", source: "Imperial Image" } +1109.9 "Shots Fired 2" #Ability { id: "555F", source: "Imperial Image" } +1111.9 "Shots Fired 3" #Ability { id: "555F", source: "Imperial Image" } +1114.6 "Heirsbane" Ability { id: "5561", source: "Black Wolf's Image" } + +1117.8 "Threefold Formation" Ability { id: "555D", source: "Black Wolf's Image" } +1125.4 "Fire Away" Ability { id: "555E", source: "Black Wolf's Image" } +1128.5 "Shots Fired 1" #Ability { id: "555F", source: "Imperial Image" } +1130.5 "Shots Fired 2" #Ability { id: "555F", source: "Imperial Image" } +1132.5 "Shots Fired 3" #Ability { id: "555F", source: "Imperial Image" } +1135.1 "Heirsbane" Ability { id: "5561", source: "Black Wolf's Image" } 1146.8 "--targetable--" -1157.9 "Optimized Ultima" sync / 1[56]:[^:]*:The Emerald Weapon:5B0F:/ -1166.1 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B1F:/ +1157.9 "Optimized Ultima" Ability { id: "5B0F", source: "The Emerald Weapon" } +1166.1 "--sync--" Ability { id: "5B1F", source: "The Emerald Weapon" } # Swords -1173.2 "Tertius Terminus Est" sync / 1[56]:[^:]*:The Emerald Weapon:556B:/ -1175.2 "Tertius Terminus Est 1" #sync / 1[56]:[^:]*:Bitblade:556C:/ -1176.7 "Tertius Terminus Est 2" #sync / 1[56]:[^:]*:Bitblade:556C:/ -1178.2 "Tertius Terminus Est 3" #sync / 1[56]:[^:]*:Bitblade:556C:/ -1183.2 "Tertius Terminus Est 1" #sync / 1[56]:[^:]*:The Emerald Weapon:556D:/ -1184.7 "Tertius Terminus Est 2" #sync / 1[56]:[^:]*:The Emerald Weapon:556D:/ -1186.2 "Tertius Terminus Est 3" #sync / 1[56]:[^:]*:The Emerald Weapon:556D:/ -1189.4 "--sync--" sync / 1[56]:[^:]*:The Emerald Weapon:5B20:/ +1173.2 "Tertius Terminus Est" Ability { id: "556B", source: "The Emerald Weapon" } +1175.2 "Tertius Terminus Est 1" #Ability { id: "556C", source: "Bitblade" } +1176.7 "Tertius Terminus Est 2" #Ability { id: "556C", source: "Bitblade" } +1178.2 "Tertius Terminus Est 3" #Ability { id: "556C", source: "Bitblade" } +1183.2 "Tertius Terminus Est 1" #Ability { id: "556D", source: "The Emerald Weapon" } +1184.7 "Tertius Terminus Est 2" #Ability { id: "556D", source: "The Emerald Weapon" } +1186.2 "Tertius Terminus Est 3" #Ability { id: "556D", source: "The Emerald Weapon" } +1189.4 "--sync--" Ability { id: "5B20", source: "The Emerald Weapon" } # loop? -1196.5 "Divide Et Impera" sync / 1[56]:[^:]*:The Emerald Weapon:5539:/ window 100,100 jump 1011.2 -1201.8 "--sync--" #sync / 1[56]:[^:]*:The Emerald Weapon:5B1F:/ -1210.9 "Primus Terminus Est" #sync / 1[56]:[^:]*:The Emerald Weapon:5562:/ -1223.0 "Secundus Terminus Est" #sync / 1[56]:[^:]*:The Emerald Weapon:5567:/ +1196.5 "Divide Et Impera" Ability { id: "5539", source: "The Emerald Weapon" } window 100,100 jump 1011.2 +1201.8 "--sync--" #Ability { id: "5B1F", source: "The Emerald Weapon" } +1210.9 "Primus Terminus Est" #Ability { id: "5562", source: "The Emerald Weapon" } +1223.0 "Secundus Terminus Est" #Ability { id: "5567", source: "The Emerald Weapon" } diff --git a/ui/raidboss/data/05-shb/trial/hades-ex.ts b/ui/raidboss/data/05-shb/trial/hades-ex.ts index 0c58707ada..144fd52775 100644 --- a/ui/raidboss/data/05-shb/trial/hades-ex.ts +++ b/ui/raidboss/data/05-shb/trial/hades-ex.ts @@ -704,6 +704,7 @@ const triggerSet: TriggerSet = { timelineReplace: [ { 'locale': 'de', + 'missingTranslations': true, 'replaceSync': { 'Aetherial Gaol': 'Ätherkerker', 'Arcane Font': 'Arkan(?:e|er|es|en) Körper', @@ -768,6 +769,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', + 'missingTranslations': true, 'replaceSync': { 'Aetherial Gaol': 'Geôle Éthérée', 'Arcane Font': 'Solide Arcanique', @@ -962,6 +964,7 @@ const triggerSet: TriggerSet = { }, { 'locale': 'ko', + 'missingTranslations': true, 'replaceSync': { 'Aetherial Gaol': '에테르 감옥', 'Arcane Font': '입체 마법진', diff --git a/ui/raidboss/data/05-shb/trial/hades-ex.txt b/ui/raidboss/data/05-shb/trial/hades-ex.txt index bb42642aa6..8280965e47 100644 --- a/ui/raidboss/data/05-shb/trial/hades-ex.txt +++ b/ui/raidboss/data/05-shb/trial/hades-ex.txt @@ -7,33 +7,33 @@ hideall "--sync--" ### Phase 1 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.6 "--sync--" sync / 14:[^:]*:Hades:47A5:/ window 10,10 -9.6 "Ancient Double" sync / 1[56]:[^:]*:Hades:47A5:/ -18.7 "Shadow Spread 1" sync / 1[56]:[^:]*:Hades:47A9:/ -21.7 "Shadow Spread 2" sync / 1[56]:[^:]*:Hades:47AA:/ -29.6 "Bad Faith 1" sync / 1[56]:[^:]*:Hades:(47AE|47AD):/ -32.7 "Bad Faith 2" sync / 1[56]:[^:]*:Hades:(47AF|47B0):/ -40.9 "Ravenous Assault 1" sync / 1[56]:[^:]*:Hades:47A6:/ -44.1 "Ravenous Assault 2" sync / 1[56]:[^:]*:Hades:47A7:/ -50.2 "Arcane Utterance" sync / 1[56]:[^:]*:Hades:47B3:/ -58.3 "Arcane Control" sync / 1[56]:[^:]*:Hades:47B4:/ -59.2 "Magic Chakram/Spear" #sync / 1[56]:[^:]*:Arcane Globe:47B5:/ -67.4 "Broken Faith" sync / 1[56]:[^:]*:Hades:47B1:/ duration 35.3 -106.7 "Arcane Utterance" sync / 1[56]:[^:]*:Hades:47B3:/ -114.8 "Arcane Control" sync / 1[56]:[^:]*:Hades:47B4:/ -115.7 "Magic Spear/Chakram" #sync / 1[56]:[^:]*:Arcane Font:47B6:/ -128.9 "Shadow Spread 1" sync / 1[56]:[^:]*:Hades:47A9:/ -131.9 "Shadow Spread 2" sync / 1[56]:[^:]*:Hades:47AA:/ -139.8 "Bad Faith 1" sync / 1[56]:[^:]*:Hades:(47AE|47AD):/ -142.9 "Bad Faith 2" sync / 1[56]:[^:]*:Hades:(47AF|47B0):/ -151.1 "Ravenous Assault 1" sync / 1[56]:[^:]*:Hades:47A6:/ -154.3 "Ravenous Assault 2" sync / 1[56]:[^:]*:Hades:47A7:/ -168.6 "Ancient Dark IV" sync / 1[56]:[^:]*:Hades:47B7:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.6 "--sync--" StartsUsing { id: "47A5", source: "Hades" } window 10,10 +9.6 "Ancient Double" Ability { id: "47A5", source: "Hades" } +18.7 "Shadow Spread 1" Ability { id: "47A9", source: "Hades" } +21.7 "Shadow Spread 2" Ability { id: "47AA", source: "Hades" } +29.6 "Bad Faith 1" Ability { id: ["47AE", "47AD"], source: "Hades" } +32.7 "Bad Faith 2" Ability { id: ["47AF", "47B0"], source: "Hades" } +40.9 "Ravenous Assault 1" Ability { id: "47A6", source: "Hades" } +44.1 "Ravenous Assault 2" Ability { id: "47A7", source: "Hades" } +50.2 "Arcane Utterance" Ability { id: "47B3", source: "Hades" } +58.3 "Arcane Control" Ability { id: "47B4", source: "Hades" } +59.2 "Magic Chakram/Spear" #Ability { id: "47B5", source: "Arcane Globe" } +67.4 "Broken Faith" Ability { id: "47B1", source: "Hades" } duration 35.3 +106.7 "Arcane Utterance" Ability { id: "47B3", source: "Hades" } +114.8 "Arcane Control" Ability { id: "47B4", source: "Hades" } +115.7 "Magic Spear/Chakram" #Ability { id: "47B6", source: "Arcane Font" } +128.9 "Shadow Spread 1" Ability { id: "47A9", source: "Hades" } +131.9 "Shadow Spread 2" Ability { id: "47AA", source: "Hades" } +139.8 "Bad Faith 1" Ability { id: ["47AE", "47AD"], source: "Hades" } +142.9 "Bad Faith 2" Ability { id: ["47AF", "47B0"], source: "Hades" } +151.1 "Ravenous Assault 1" Ability { id: "47A6", source: "Hades" } +154.3 "Ravenous Assault 2" Ability { id: "47A7", source: "Hades" } +168.6 "Ancient Dark IV" Ability { id: "47B7", source: "Hades" } ### Phase 2 -200.0 "--sync--" sync / 22:........:Hades:........:Hades:00/ window 200,0 +200.0 "--sync--" NameToggle { name: "Hades", toggle: "00" } window 200,0 # 00:0044:Hades:Pitiful, malformed, wretched creatures! # 00:0044:Hades:Your call for aid beyond this world will avail you naught! # 00:0044:Hades:My brethren are legion! @@ -41,98 +41,98 @@ hideall "--sync--" # 00:0044:Hades:Come, Nabriales! # 00:0044:Hades:Tremble and fall to the ground before me! 227.9 "--targetable--" -232.0 "--sync--" sync / 14:[^:]*:Nabriales's Shade:47B8:/ window 232,0 -238.0 "Comet 1" #sync / 1[56]:[^:]*:Nabriales's Shade:4951:/ -241.0 "Comet 2" #sync / 1[56]:[^:]*:Nabriales's Shade:4951:/ -241.2 "Dark II" sync / 1[56]:[^:]*:Shadow of the Ancients:47BA:/ -243.9 "Comet 3" #sync / 1[56]:[^:]*:Nabriales's Shade:4951:/ -246.9 "Comet 4" #sync / 1[56]:[^:]*:Nabriales's Shade:4951:/ -254.2 "Ancient Water III" sync / 1[56]:[^:]*:Shadow of the Ancients:47BC:/ -254.2 "Ancient Darkness" sync / 1[56]:[^:]*:Shadow of the Ancients:47BB:/ -259.7 "Quake III" sync / 1[56]:[^:]*:Nabriales's Shade:47B8:/ +232.0 "--sync--" StartsUsing { id: "47B8", source: "Nabriales's Shade" } window 232,0 +238.0 "Comet 1" #Ability { id: "4951", source: "Nabriales's Shade" } +241.0 "Comet 2" #Ability { id: "4951", source: "Nabriales's Shade" } +241.2 "Dark II" Ability { id: "47BA", source: "Shadow of the Ancients" } +243.9 "Comet 3" #Ability { id: "4951", source: "Nabriales's Shade" } +246.9 "Comet 4" #Ability { id: "4951", source: "Nabriales's Shade" } +254.2 "Ancient Water III" Ability { id: "47BC", source: "Shadow of the Ancients" } +254.2 "Ancient Darkness" Ability { id: "47BB", source: "Shadow of the Ancients" } +259.7 "Quake III" Ability { id: "47B8", source: "Nabriales's Shade" } # 00:0044:Hades:Emerge, Lahabrea! Rise, Igeyorhm! 272.3 "--targetable--" -277.5 "Annihilation" sync / 1[56]:[^:]*:Lahabrea's and Igeyorhm's Shades:47BF:/ window 50,10 -277.5 "Fire Sphere" #sync / 1[56]:[^:]*:Lahabrea's Shade:47BE:/ -277.5 "Blizzard Sphere" #sync / 1[56]:[^:]*:Igeyorhm's Shade:47BD:/ -295.6 "Fire IV" sync / 1[56]:[^:]*:Lahabrea's Shade:47C2:/ -295.6 "Blizzard IV" #sync / 1[56]:[^:]*:Igeyorhm's Shade:47C3:/ -299.5 "Dark Flame" sync / 1[56]:[^:]*:Shadow of the Ancients:47C6:/ -299.5 "Dark Freeze" #sync / 1[56]:[^:]*:Shadow of the Ancients:47C4:/ -307.6 "Annihilation" sync / 1[56]:[^:]*:Lahabrea's and Igeyorhm's Shades:47BF:/ -307.6 "Fire Sphere" #sync / 1[56]:[^:]*:Lahabrea's Shade:47BE:/ -307.6 "Blizzard Sphere" #sync / 1[56]:[^:]*:Igeyorhm's Shade:47BD:/ -320.8 "Fire IV" sync / 1[56]:[^:]*:Lahabrea's Shade:47C2:/ -320.8 "Blizzard IV" sync / 1[56]:[^:]*:Igeyorhm's Shade:47C3:/ -336.6 "Fire IV" sync / 1[56]:[^:]*:Lahabrea's Shade:47C2:/ -336.6 "Blizzard IV" sync / 1[56]:[^:]*:Igeyorhm's Shade:47C3:/ -355.2 "Shadow Flare" #sync / 1[56]:[^:]*:Lahabrea's Shade:47FD:/ +277.5 "Annihilation" Ability { id: "47BF", source: "Lahabrea's and Igeyorhm's Shades" } window 50,10 +277.5 "Fire Sphere" #Ability { id: "47BE", source: "Lahabrea's Shade" } +277.5 "Blizzard Sphere" #Ability { id: "47BD", source: "Igeyorhm's Shade" } +295.6 "Fire IV" Ability { id: "47C2", source: "Lahabrea's Shade" } +295.6 "Blizzard IV" #Ability { id: "47C3", source: "Igeyorhm's Shade" } +299.5 "Dark Flame" Ability { id: "47C6", source: "Shadow of the Ancients" } +299.5 "Dark Freeze" #Ability { id: "47C4", source: "Shadow of the Ancients" } +307.6 "Annihilation" Ability { id: "47BF", source: "Lahabrea's and Igeyorhm's Shades" } +307.6 "Fire Sphere" #Ability { id: "47BE", source: "Lahabrea's Shade" } +307.6 "Blizzard Sphere" #Ability { id: "47BD", source: "Igeyorhm's Shade" } +320.8 "Fire IV" Ability { id: "47C2", source: "Lahabrea's Shade" } +320.8 "Blizzard IV" Ability { id: "47C3", source: "Igeyorhm's Shade" } +336.6 "Fire IV" Ability { id: "47C2", source: "Lahabrea's Shade" } +336.6 "Blizzard IV" Ability { id: "47C3", source: "Igeyorhm's Shade" } +355.2 "Shadow Flare" #Ability { id: "47FD", source: "Lahabrea's Shade" } ### Phase 3 -493.0 "--sync--" sync / 00:0044:Hades:Our plea transcends/ window 500,0 +493.0 "--sync--" GameLog { code: "0044", name: "Hades", line: "Our plea transcends.*?" } window 500,0 # 00:0044:Hades:At last, you are one! 499.9 "--targetable--" -500.0 "--sync--" sync / 14:[^:]*:Ascian Prime's Shade:47C8:/ window 500,0 -510.0 "Universal Manipulation" sync / 1[56]:[^:]*:Ascian Prime's Shade:47C8:/ -520.2 "Ancient Circle" sync / 1[56]:[^:]*:Ascian Prime's Shade:47CA:/ -522.2 "Death Shriek" sync / 1[56]:[^:]*:Ascian Prime's Shade:47CB:/ -524.2 "Forked Lightning" sync / 1[56]:[^:]*:Ascian Prime's Shade:47C9:/ -531.2 "Blight" sync / 1[56]:[^:]*:Ascian Prime's Shade:47CC:/ -542.6 "Height Of Chaos" sync / 1[56]:[^:]*:Ascian Prime's Shade:47D1:/ -552.8 "Megiddo Flame" sync / 1[56]:[^:]*:Ascian Prime's Shade:47CD:/ -561.9 "Shadow Flare" sync / 1[56]:[^:]*:Ascian Prime's Shade:47D0:/ -569.4 "Ancient Eruption" sync / 1[56]:[^:]*:Ascian Prime's Shade:47D2:/ -580.8 "Shadow Flare" sync / 1[56]:[^:]*:Ascian Prime's Shade:47D0:/ -609.3 "Shadow Flare Enrage" sync / 1[56]:[^:]*:Ascian Prime's Shade:47D4:/ +500.0 "--sync--" StartsUsing { id: "47C8", source: "Ascian Prime's Shade" } window 500,0 +510.0 "Universal Manipulation" Ability { id: "47C8", source: "Ascian Prime's Shade" } +520.2 "Ancient Circle" Ability { id: "47CA", source: "Ascian Prime's Shade" } +522.2 "Death Shriek" Ability { id: "47CB", source: "Ascian Prime's Shade" } +524.2 "Forked Lightning" Ability { id: "47C9", source: "Ascian Prime's Shade" } +531.2 "Blight" Ability { id: "47CC", source: "Ascian Prime's Shade" } +542.6 "Height Of Chaos" Ability { id: "47D1", source: "Ascian Prime's Shade" } +552.8 "Megiddo Flame" Ability { id: "47CD", source: "Ascian Prime's Shade" } +561.9 "Shadow Flare" Ability { id: "47D0", source: "Ascian Prime's Shade" } +569.4 "Ancient Eruption" Ability { id: "47D2", source: "Ascian Prime's Shade" } +580.8 "Shadow Flare" Ability { id: "47D0", source: "Ascian Prime's Shade" } +609.3 "Shadow Flare Enrage" Ability { id: "47D4", source: "Ascian Prime's Shade" } ### Phase 4 -750.2 "--sync--" sync / 22:........:Ascian Prime's Shade:........:Ascian Prime's Shade:00/ window 800,0 +750.2 "--sync--" NameToggle { name: "Ascian Prime's Shade", toggle: "00" } window 800,0 799.9 "--targetable--" -800.0 "--sync--" sync / 14:[^:]*:Hades:47D5:/ window 800,0 -804.0 "Again The Majestic" sync / 1[56]:[^:]*:Hades:47D5:/ -810.6 "Comet 1" sync / 1[56]:[^:]*:Hades:4952:/ -812.2 "Captivity" sync / 1[56]:[^:]*:Hades:47D[67]:/ -816.6 "Comet 2" sync / 1[56]:[^:]*:Hades:4952:/ -822.6 "Comet 3" sync / 1[56]:[^:]*:Hades:4952:/ -828.6 "Comet 4" sync / 1[56]:[^:]*:Hades:4952:/ -837.2 "Again The Martyr" sync / 1[56]:[^:]*:Hades:47DE:/ -846.3 "Wail Of The Lost" sync / 1[56]:[^:]*:Hades:47E1:/ -848.4 "Dark Flame" sync / 1[56]:[^:]*:Hades:47E0:/ -848.4 "Dark Freeze" sync / 1[56]:[^:]*:Hades:47DF:/ -856.5 "Again The Abyssal Celebrant" sync / 1[56]:[^:]*:Hades:47E2:/ -864.6 "Shadow Spread x3" #sync / 1[56]:[^:]*:Hades:47E4:/ -865.6 "Megiddo Flame x3" #sync / 1[56]:[^:]*:Hades:47E8:/ -865.6 "Nether Blast x3" #sync / 1[56]:[^:]*:Hades:47E6:/ -876.7 "Dark Seal" sync / 1[56]:[^:]*:Hades:47E9:/ -884.8 "Purgation/Stream" sync / 1[56]:[^:]*:Hades:47E[AB]:/ -892.9 "Stream/Purgation" sync / 1[56]:[^:]*:Hades:47E[AB]:/ -904.1 "Dark Seal" sync / 1[56]:[^:]*:Hades:47E9:/ -912.2 "Purgation/Stream" sync / 1[56]:[^:]*:Hades:47E[AB]:/ -918.3 "Stream/Purgation" sync / 1[56]:[^:]*:Hades:47E[AB]:/ -950.2 "Titanomachy Enrage" sync / 1[56]:[^:]*:Hades:47EF:/ +800.0 "--sync--" StartsUsing { id: "47D5", source: "Hades" } window 800,0 +804.0 "Again The Majestic" Ability { id: "47D5", source: "Hades" } +810.6 "Comet 1" Ability { id: "4952", source: "Hades" } +812.2 "Captivity" Ability { id: "47D[67]", source: "Hades" } +816.6 "Comet 2" Ability { id: "4952", source: "Hades" } +822.6 "Comet 3" Ability { id: "4952", source: "Hades" } +828.6 "Comet 4" Ability { id: "4952", source: "Hades" } +837.2 "Again The Martyr" Ability { id: "47DE", source: "Hades" } +846.3 "Wail Of The Lost" Ability { id: "47E1", source: "Hades" } +848.4 "Dark Flame" Ability { id: "47E0", source: "Hades" } +848.4 "Dark Freeze" Ability { id: "47DF", source: "Hades" } +856.5 "Again The Abyssal Celebrant" Ability { id: "47E2", source: "Hades" } +864.6 "Shadow Spread x3" #Ability { id: "47E4", source: "Hades" } +865.6 "Megiddo Flame x3" #Ability { id: "47E8", source: "Hades" } +865.6 "Nether Blast x3" #Ability { id: "47E6", source: "Hades" } +876.7 "Dark Seal" Ability { id: "47E9", source: "Hades" } +884.8 "Purgation/Stream" Ability { id: "47E[AB]", source: "Hades" } +892.9 "Stream/Purgation" Ability { id: "47E[AB]", source: "Hades" } +904.1 "Dark Seal" Ability { id: "47E9", source: "Hades" } +912.2 "Purgation/Stream" Ability { id: "47E[AB]", source: "Hades" } +918.3 "Stream/Purgation" Ability { id: "47E[AB]", source: "Hades" } +950.2 "Titanomachy Enrage" Ability { id: "47EF", source: "Hades" } ### Phase 5 -1200.0 "--sync--" sync / 14:[^:]*:Hades:4948:/ window 1200,0 -1204.0 "Life In Captivity" sync / 1[56]:[^:]*:Hades:4948:/ -1207.2 "--sync--" sync / 1[56]:[^:]*:Hades:47D9:/ -1210.2 "--sync--" sync / 1[56]:[^:]*:Hades:4949:/ -1242.3 "--sync--" sync / 1[56]:[^:]*:Hades:494A:/ +1200.0 "--sync--" StartsUsing { id: "4948", source: "Hades" } window 1200,0 +1204.0 "Life In Captivity" Ability { id: "4948", source: "Hades" } +1207.2 "--sync--" Ability { id: "47D9", source: "Hades" } +1210.2 "--sync--" Ability { id: "4949", source: "Hades" } +1242.3 "--sync--" Ability { id: "494A", source: "Hades" } 1282.4 "--targetable--" -1286.6 "Dark Current" sync / 1[56]:[^:]*:Hades:47F0:/ -1311.2 "Gigantomachy" sync / 1[56]:[^:]*:Hades:47F3:/ -1318.4 "--sync--" sync / 1[56]:[^:]*:Hades:47F4:/ -1318.8 "Quadrastrike 1" #sync / 1[56]:[^:]*:Hades:47F5:/ -1320.2 "Quadrastrike 2" #sync / 1[56]:[^:]*:Hades:47F5:/ -1323.8 "Quadrastrike Tower" sync / 1[56]:[^:]*:Hades:47F6:/ -1330.6 "Quadrastrike Bleed" sync / 1[56]:[^:]*:Hades:47F8:/ -1344.5 "Dark Current" sync / 1[56]:[^:]*:Hades:47F0:/ -1369.0 "Gigantomachy" sync / 1[56]:[^:]*:Hades:47F3:/ -1376.2 "--sync--" sync / 1[56]:[^:]*:Hades:47F4:/ -1376.6 "Quadrastrike 1" #sync / 1[56]:[^:]*:Hades:47F5:/ -1378.0 "Quadrastrike 2" #sync / 1[56]:[^:]*:Hades:47F5:/ -1381.7 "Quadrastrike Tower" sync / 1[56]:[^:]*:Hades:47F6:/ -1388.5 "Quadrastrike Bleed" sync / 1[56]:[^:]*:Hades:47F8:/ -1426.5 "Gigantomachy Enrage" sync / 1[56]:[^:]*:Hades:47F9:/ +1286.6 "Dark Current" Ability { id: "47F0", source: "Hades" } +1311.2 "Gigantomachy" Ability { id: "47F3", source: "Hades" } +1318.4 "--sync--" Ability { id: "47F4", source: "Hades" } +1318.8 "Quadrastrike 1" #Ability { id: "47F5", source: "Hades" } +1320.2 "Quadrastrike 2" #Ability { id: "47F5", source: "Hades" } +1323.8 "Quadrastrike Tower" Ability { id: "47F6", source: "Hades" } +1330.6 "Quadrastrike Bleed" Ability { id: "47F8", source: "Hades" } +1344.5 "Dark Current" Ability { id: "47F0", source: "Hades" } +1369.0 "Gigantomachy" Ability { id: "47F3", source: "Hades" } +1376.2 "--sync--" Ability { id: "47F4", source: "Hades" } +1376.6 "Quadrastrike 1" #Ability { id: "47F5", source: "Hades" } +1378.0 "Quadrastrike 2" #Ability { id: "47F5", source: "Hades" } +1381.7 "Quadrastrike Tower" Ability { id: "47F6", source: "Hades" } +1388.5 "Quadrastrike Bleed" Ability { id: "47F8", source: "Hades" } +1426.5 "Gigantomachy Enrage" Ability { id: "47F9", source: "Hades" } diff --git a/ui/raidboss/data/05-shb/trial/hades.txt b/ui/raidboss/data/05-shb/trial/hades.txt index 0bc988572a..c1505baa5e 100644 --- a/ui/raidboss/data/05-shb/trial/hades.txt +++ b/ui/raidboss/data/05-shb/trial/hades.txt @@ -6,29 +6,29 @@ hideall "--sync--" hideall "Double" # Phase 1: Everybody Murdered By Circles -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -1.5 "--sync--" sync / 1[56]:[^:]*:Hades:368:/ window 2,0 -15.5 "Ravenous Assault" sync / 1[56]:[^:]*:Hades:4158:/ window 16,5 -25.9 "Bad Faith" sync / 1[56]:[^:]*:Hades:414[9A]:/ -32.9 "Double" sync / 1[56]:[^:]*:Hades:414F:/ -38.9 "Dark Eruption" sync / 1[56]:[^:]*:Hades:4150:/ -47.9 "Broken Faith" sync / 1[56]:[^:]*:Hades:414D:/ duration 22.5 -72.9 "Double" sync / 1[56]:[^:]*:Hades:414F:/ -78.9 "Shadow Spread" sync / 1[56]:[^:]*:Hades:4154:/ -84.9 "Shadow Spread" sync / 1[56]:[^:]*:Hades:4157:/ -90.9 "Ravenous Assault" sync / 1[56]:[^:]*:Hades:4158:/ - -104.4 "Bad Faith" sync / 1[56]:[^:]*:Hades:414[9A]:/ -114.4 "Ravenous Assault" sync / 1[56]:[^:]*:Hades:4158:/ -122.4 "Double" sync / 1[56]:[^:]*:Hades:414F:/ -128.4 "Dark Eruption" sync / 1[56]:[^:]*:Hades:4150:/ -139.4 "Broken Faith" sync / 1[56]:[^:]*:Hades:414D:/ duration 22.5 -156.4 "Double" sync / 1[56]:[^:]*:Hades:414F:/ -162.4 "Shadow Spread" sync / 1[56]:[^:]*:Hades:4154:/ -168.4 "Shadow Spread" sync / 1[56]:[^:]*:Hades:4157:/ -175.4 "Ravenous Assault" sync / 1[56]:[^:]*:Hades:4158:/ - -190.2 "Bad Faith" sync / 1[56]:[^:]*:Hades:414[9A]:/ window 80,80 jump 104.4 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +1.5 "--sync--" Ability { id: "368", source: "Hades" } window 2,0 +15.5 "Ravenous Assault" Ability { id: "4158", source: "Hades" } window 16,5 +25.9 "Bad Faith" Ability { id: "414[9A]", source: "Hades" } +32.9 "Double" Ability { id: "414F", source: "Hades" } +38.9 "Dark Eruption" Ability { id: "4150", source: "Hades" } +47.9 "Broken Faith" Ability { id: "414D", source: "Hades" } duration 22.5 +72.9 "Double" Ability { id: "414F", source: "Hades" } +78.9 "Shadow Spread" Ability { id: "4154", source: "Hades" } +84.9 "Shadow Spread" Ability { id: "4157", source: "Hades" } +90.9 "Ravenous Assault" Ability { id: "4158", source: "Hades" } + +104.4 "Bad Faith" Ability { id: "414[9A]", source: "Hades" } +114.4 "Ravenous Assault" Ability { id: "4158", source: "Hades" } +122.4 "Double" Ability { id: "414F", source: "Hades" } +128.4 "Dark Eruption" Ability { id: "4150", source: "Hades" } +139.4 "Broken Faith" Ability { id: "414D", source: "Hades" } duration 22.5 +156.4 "Double" Ability { id: "414F", source: "Hades" } +162.4 "Shadow Spread" Ability { id: "4154", source: "Hades" } +168.4 "Shadow Spread" Ability { id: "4157", source: "Hades" } +175.4 "Ravenous Assault" Ability { id: "4158", source: "Hades" } + +190.2 "Bad Faith" Ability { id: "414[9A]", source: "Hades" } window 80,80 jump 104.4 200.2 "Ravenous Assault" 208.2 "Double" 214.2 "Dark Eruption" @@ -41,40 +41,40 @@ hideall "Double" # Phase 2: Push at 10% # (untargetable happens 2 seconds before :4599:, so no warning, sorry) -300.0 "--sync--" sync / 1[56]:[^:]*:Hades:4599:/ window 300,0 +300.0 "--sync--" Ability { id: "4599", source: "Hades" } window 300,0 # Give voice to your anguish, my brethren! 304.5 "Adds (E/W)" -400.0 "--sync--" sync / 14:[^:]*:Shadow .f .he Ancients:4593:/ window 500,0 -405.0 "Ancient Darkness" sync / 1[56]:[^:]*:Shadow .f .he Ancients:4593:/ -405.0 "Ancient Water III" sync / 1[56]:[^:]*:Shadow .f .he Ancients:4594:/ +400.0 "--sync--" StartsUsing { id: "4593", source: "Shadow .f .he Ancients" } window 500,0 +405.0 "Ancient Darkness" Ability { id: "4593", source: "Shadow .f .he Ancients" } +405.0 "Ancient Water III" Ability { id: "4594", source: "Shadow .f .he Ancients" } # Give substance to our hopes, our dreams, our prayers... 408.0 "Adds (NE/SW)" -500.0 "--sync--" sync / 14:[^:]*:Shadow .f .he Ancients:4595:/ window 600,0 -505.0 "Ancient Aero" sync / 1[56]:[^:]*:Shadow .f .he Ancients:4595:/ -508.0 "Ancient Water III" sync / 1[56]:[^:]*:Shadow .f .he Ancients:4594:/ -508.0 "Ancient Darkness" sync / 1[56]:[^:]*:Shadow .f .he Ancients:4593:/ +500.0 "--sync--" StartsUsing { id: "4595", source: "Shadow .f .he Ancients" } window 600,0 +505.0 "Ancient Aero" Ability { id: "4595", source: "Shadow .f .he Ancients" } +508.0 "Ancient Water III" Ability { id: "4594", source: "Shadow .f .he Ancients" } +508.0 "Ancient Darkness" Ability { id: "4593", source: "Shadow .f .he Ancients" } # And by their undeniable grace, may our perfect world rise anew! 510.0 "Adds (N/S)" # Yawn wide, the ever-hungering void! -600.0 "--sync--" sync / 14:[^:]*:Hades:4597:/ window 600,0 -605.0 "Ancient Dark IV" sync / 1[56]:[^:]*:Hades:4597:/ +600.0 "--sync--" StartsUsing { id: "4597", source: "Hades" } window 600,0 +605.0 "Ancient Dark IV" Ability { id: "4597", source: "Hades" } # Phase 3: neo hades 666.8 "--targetable--" -666.8 "--sync--" sync / 1[56]:[^:]*:Hades:417C:/ window 680,0 -680.8 "Titanomachy" sync / 1[56]:[^:]*:Hades:4180:/ window 80,5 -689.8 "Shadow Stream" sync / 1[56]:[^:]*:Hades:415C:/ -696.8 "Dual Strike" sync / 1[56]:[^:]*:Hades:4161:/ -711.8 "Echo Of The Lost" sync / 1[56]:[^:]*:Hades:416[34]:/ -720.8 "Polydegmon's Purgation" sync / 1[56]:[^:]*:Hades:4170:/ -729.8 "Titanomachy" sync / 1[56]:[^:]*:Hades:4180:/ -739.8 "Hellborn Yawp" sync / 1[56]:[^:]*:Hades:416E:/ - -780.1 "Titanomachy" sync / 1[56]:[^:]*:Hades:4180:/ window 40,40 jump 680.8 +666.8 "--sync--" Ability { id: "417C", source: "Hades" } window 680,0 +680.8 "Titanomachy" Ability { id: "4180", source: "Hades" } window 80,5 +689.8 "Shadow Stream" Ability { id: "415C", source: "Hades" } +696.8 "Dual Strike" Ability { id: "4161", source: "Hades" } +711.8 "Echo Of The Lost" Ability { id: "416[34]", source: "Hades" } +720.8 "Polydegmon's Purgation" Ability { id: "4170", source: "Hades" } +729.8 "Titanomachy" Ability { id: "4180", source: "Hades" } +739.8 "Hellborn Yawp" Ability { id: "416E", source: "Hades" } + +780.1 "Titanomachy" Ability { id: "4180", source: "Hades" } window 40,40 jump 680.8 789.1 "Shadow Stream" 796.1 "Dual Strike" 811.1 "Echo Of The Lost" @@ -86,41 +86,41 @@ hideall "Double" # There is technically an echo of the lost before this captivity # but impossible to properly sync that given that the previous phase # also uses that ability. -895.0 "--sync--" sync / 14:[^:]*:Hades:4168:/ window 300,0 -900.0 "Captivity" sync / 1[56]:[^:]*:Hades:4168:/ +895.0 "--sync--" StartsUsing { id: "4168", source: "Hades" } window 300,0 +900.0 "Captivity" Ability { id: "4168", source: "Hades" } 900.8 "--fetters--" -903.0 "--sync--" sync / 1[56]:[^:]*:Hades:417F:/ +903.0 "--sync--" Ability { id: "417F", source: "Hades" } 905.0 "Gaol Add" -906.5 "--sync--" sync / 14:[^:]*:Hades:416C:/ -936.2 "Chorus Of The Lost" sync / 1[56]:[^:]*:Hades:416C:/ +906.5 "--sync--" StartsUsing { id: "416C", source: "Hades" } +936.2 "Chorus Of The Lost" Ability { id: "416C", source: "Hades" } # FIXME: I've never seen this go off, so unclear how far 416D is from 416C. # Chorus of the lost does seem likely to be 30 seconds. -939.0 "--sync--" sync / 1[56]:[^:]*:Hades:416D:/ window 100,0 +939.0 "--sync--" Ability { id: "416D", source: "Hades" } window 100,0 -952.0 "Dual Strike" sync / 1[56]:[^:]*:Hades:4161:/ window 50,5 -953.0 "Nether Blast x6" duration 5 #sync / 1[56]:[^:]*:Hades:4173:/ +952.0 "Dual Strike" Ability { id: "4161", source: "Hades" } window 50,5 +953.0 "Nether Blast x6" duration 5 #Ability { id: "4173", source: "Hades" } 962.3 "Doom" -985.0 "Wail Of The Lost" sync / 1[56]:[^:]*:Hades:416[56]:/ -993.0 "Stream/Purgation?" sync / 1[56]:[^:]*:Hades:(415C|4170):/ -1002.0 "Titanomachy" sync / 1[56]:[^:]*:Hades:4180:/ -1011.0 "Hellborn Yawp" sync / 1[56]:[^:]*:Hades:416E:/ -1021.0 "Echo Of The Lost" sync / 1[56]:[^:]*:Hades:416[34]:/ -1031.0 "Dual Strike" sync / 1[56]:[^:]*:Hades:4161:/ -1039.0 "Titanomachy" sync / 1[56]:[^:]*:Hades:4180:/ -1046.0 "Shadow Spread" sync / 1[56]:[^:]*:Hades:415D:/ -1051.0 "Nether Blast x6" duration 5 #sync / 1[56]:[^:]*:Hades:4173:/ - -1062.0 "Captivity" sync / 1[56]:[^:]*:Hades:4168:/ window 150,10 +985.0 "Wail Of The Lost" Ability { id: "416[56]", source: "Hades" } +993.0 "Stream/Purgation?" Ability { id: ["415C", "4170"], source: "Hades" } +1002.0 "Titanomachy" Ability { id: "4180", source: "Hades" } +1011.0 "Hellborn Yawp" Ability { id: "416E", source: "Hades" } +1021.0 "Echo Of The Lost" Ability { id: "416[34]", source: "Hades" } +1031.0 "Dual Strike" Ability { id: "4161", source: "Hades" } +1039.0 "Titanomachy" Ability { id: "4180", source: "Hades" } +1046.0 "Shadow Spread" Ability { id: "415D", source: "Hades" } +1051.0 "Nether Blast x6" duration 5 #Ability { id: "4173", source: "Hades" } + +1062.0 "Captivity" Ability { id: "4168", source: "Hades" } window 150,10 1062.8 "--fetters--" -1065.0 "--sync--" sync / 1[56]:[^:]*:Hades:417F:/ +1065.0 "--sync--" Ability { id: "417F", source: "Hades" } 1066.0 "Doom" 1067.0 "Gaol Add" -1068.5 "--sync--" sync / 14:[^:]*:Hades:416C:/ -1098.2 "Chorus Of The Lost" sync / 1[56]:[^:]*:Hades:416C:/ -1101.0 "--sync--" sync / 1[56]:[^:]*:Hades:416D:/ window 100,0 +1068.5 "--sync--" StartsUsing { id: "416C", source: "Hades" } +1098.2 "Chorus Of The Lost" Ability { id: "416C", source: "Hades" } +1101.0 "--sync--" Ability { id: "416D", source: "Hades" } window 100,0 -1114.0 "Wail Of The Lost" sync / 1[56]:[^:]*:Hades:416[56]:/ window 50,5 jump 985 +1114.0 "Wail Of The Lost" Ability { id: "416[56]", source: "Hades" } window 50,5 jump 985 1122.0 "Stream/Purgation?" 1131.0 "Titanomachy" 1140.0 "Hellborn Yawp" @@ -131,21 +131,21 @@ hideall "Double" # Cutscene: Push at 30%? -1300.0 "--sync--" sync / 14:[^:]*:Hades:4175:/ window 1300,0 +1300.0 "--sync--" StartsUsing { id: "4175", source: "Hades" } window 1300,0 1304.0 "--untargetable--" -1304.0 "Life In Captivity" sync / 1[56]:[^:]*:Hades:4175:/ -1307.0 "--sync--" sync / 1[56]:[^:]*:Hades:417F:/ -1307.0 "--sync--" sync / 1[56]:[^:]*:Hades:442C:/ -1310.0 "--sync--" sync / 1[56]:[^:]*:Hades:4176:/ -1342.0 "Black Cauldron" sync / 1[56]:[^:]*:Hades:415A:/ +1304.0 "Life In Captivity" Ability { id: "4175", source: "Hades" } +1307.0 "--sync--" Ability { id: "417F", source: "Hades" } +1307.0 "--sync--" Ability { id: "442C", source: "Hades" } +1310.0 "--sync--" Ability { id: "4176", source: "Hades" } +1342.0 "Black Cauldron" Ability { id: "415A", source: "Hades" } # Final dps race 1354.0 "--targetable--" -1361.0 "The Dark Devours x5" sync / 1[56]:[^:]*:Hades:4177:/ duration 9 -1376.0 "The Dark Devours x5" sync / 1[56]:[^:]*:Hades:4177:/ duration 9 -1391.0 "The Dark Devours x5" sync / 1[56]:[^:]*:Hades:4177:/ duration 9 -1403.0 "--sync--" sync / 1[56]:[^:]*:Hades:4159:/ +1361.0 "The Dark Devours x5" Ability { id: "4177", source: "Hades" } duration 9 +1376.0 "The Dark Devours x5" Ability { id: "4177", source: "Hades" } duration 9 +1391.0 "The Dark Devours x5" Ability { id: "4177", source: "Hades" } duration 9 +1403.0 "--sync--" Ability { id: "4159", source: "Hades" } # Gratuitous 45 second enrage. -1412.7 "--sync--" sync / 14:[^:]*:Hades:417B:/ window 100,100 -1457.7 "Enrage" sync / 1[56]:[^:]*:Hades:417B:/ +1412.7 "--sync--" StartsUsing { id: "417B", source: "Hades" } window 100,100 +1457.7 "Enrage" Ability { id: "417B", source: "Hades" } diff --git a/ui/raidboss/data/05-shb/trial/innocence-ex.txt b/ui/raidboss/data/05-shb/trial/innocence-ex.txt index 2bfded04a9..e848d5bac9 100644 --- a/ui/raidboss/data/05-shb/trial/innocence-ex.txt +++ b/ui/raidboss/data/05-shb/trial/innocence-ex.txt @@ -9,126 +9,126 @@ hideall "Soul And Body" ### Phase 1 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -17.0 "Shadowreaver" sync / 1[56]:[^:]*:Innocence:3EEA:/ window 20,5 -28.0 "Winged Rep Tethers" sync / 1[56]:[^:]*:Innocence:40BD:/ -37.0 "Duel Descent" sync / 1[56]:[^:]*:Nail of Condemnation:3EA9:/ -47.0 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3ECD:/ -58.0 "Winged Rep Tethers" sync / 1[56]:[^:]*:Innocence:40BD:/ -61.0 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -65.2 "Rightful Reprobation" sync / 1[56]:[^:]*:Innocence:3EDC:/ -67.0 "Duel Descent" sync / 1[56]:[^:]*:Nail of Condemnation:3EA9:/ -72.1 "Reprobation" sync / 1[56]:[^:]*:Innocence:3ECC:/ -81.2 "Winged Rep Rotate" sync / 1[56]:[^:]*:Innocence:40BD:/ -95.2 "Drop Of Light" sync / 1[56]:[^:]*:Innocence:3EEC:/ -107.8 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3ECD:/ -118.8 "Winged Rep Trident" sync / 1[56]:[^:]*:Innocence:40BD:/ -121.8 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -124.8 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -125.8 "Rightful Reprobation" sync / 1[56]:[^:]*:Innocence:3EDD:/ -129.3 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -132.6 "Reprobation" sync / 1[56]:[^:]*:Innocence:3ECC:/ -133.7 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -137.0 "Light Pillar" sync / 1[56]:[^:]*:Innocence:3EED:/ -144.0 "Shadowreaver" sync / 1[56]:[^:]*:Innocence:3EEA:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +17.0 "Shadowreaver" Ability { id: "3EEA", source: "Innocence" } window 20,5 +28.0 "Winged Rep Tethers" Ability { id: "40BD", source: "Innocence" } +37.0 "Duel Descent" Ability { id: "3EA9", source: "Nail of Condemnation" } +47.0 "Righteous Bolt" Ability { id: "3ECD", source: "Innocence" } +58.0 "Winged Rep Tethers" Ability { id: "40BD", source: "Innocence" } +61.0 "--sync--" Ability { id: "3EA2", source: "Innocence" } +65.2 "Rightful Reprobation" Ability { id: "3EDC", source: "Innocence" } +67.0 "Duel Descent" Ability { id: "3EA9", source: "Nail of Condemnation" } +72.1 "Reprobation" Ability { id: "3ECC", source: "Innocence" } +81.2 "Winged Rep Rotate" Ability { id: "40BD", source: "Innocence" } +95.2 "Drop Of Light" Ability { id: "3EEC", source: "Innocence" } +107.8 "Righteous Bolt" Ability { id: "3ECD", source: "Innocence" } +118.8 "Winged Rep Trident" Ability { id: "40BD", source: "Innocence" } +121.8 "--sync--" Ability { id: "3EA2", source: "Innocence" } +124.8 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +125.8 "Rightful Reprobation" Ability { id: "3EDD", source: "Innocence" } +129.3 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +132.6 "Reprobation" Ability { id: "3ECC", source: "Innocence" } +133.7 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +137.0 "Light Pillar" Ability { id: "3EED", source: "Innocence" } +144.0 "Shadowreaver" Ability { id: "3EEA", source: "Innocence" } # technically Tethers + Rotate -155.0 "Winged Rep Tethers" sync / 1[56]:[^:]*:Innocence:40BD:/ -161.0 "Soul And Body" sync / 1[56]:[^:]*:Innocence:3ED7:/ -161.0 "Duel Descent" sync / 1[56]:[^:]*:Nail of Condemnation:3EA9:/ +155.0 "Winged Rep Tethers" Ability { id: "40BD", source: "Innocence" } +161.0 "Soul And Body" Ability { id: "3ED7", source: "Innocence" } +161.0 "Duel Descent" Ability { id: "3EA9", source: "Nail of Condemnation" } ### Phase 2: Adds -178.0 "--untargetable--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -180.3 "--targetable--" sync / 1[56]:[^:]*:Innocence:42B0:/ window 200,200 -183.3 "--sync--" sync / 1[56]:[^:]*:Sword of Condemnation:42B1:/ -190.3 "Scold's Bridle" sync / 1[56]:[^:]*:Forgiven Shame:3EC8:/ -195.3 "Holy Sword" sync / 1[56]:[^:]*:Forgiven Venery:3EC9:/ -197.3 "Guiding Light" sync / 1[56]:[^:]*:Innocence:3F46:/ -211.3 "Holy Sword" sync / 1[56]:[^:]*:Forgiven Venery:3EC9:/ -213.3 "Guiding Light" sync / 1[56]:[^:]*:Innocence:3F46:/ -227.3 "Holy Sword" sync / 1[56]:[^:]*:Forgiven Venery:3EC9:/ +178.0 "--untargetable--" Ability { id: "3EA2", source: "Innocence" } +180.3 "--targetable--" Ability { id: "42B0", source: "Innocence" } window 200,200 +183.3 "--sync--" Ability { id: "42B1", source: "Sword of Condemnation" } +190.3 "Scold's Bridle" Ability { id: "3EC8", source: "Forgiven Shame" } +195.3 "Holy Sword" Ability { id: "3EC9", source: "Forgiven Venery" } +197.3 "Guiding Light" Ability { id: "3F46", source: "Innocence" } +211.3 "Holy Sword" Ability { id: "3EC9", source: "Forgiven Venery" } +213.3 "Guiding Light" Ability { id: "3F46", source: "Innocence" } +227.3 "Holy Sword" Ability { id: "3EC9", source: "Forgiven Venery" } 230.3 "Enrage" ### Phase 3: Starbirth -300.0 "--sync--" sync / 1[56]:[^:]*:Sword of Condemnation:3EE9:/ window 300,0 +300.0 "--sync--" Ability { id: "3EE9", source: "Sword of Condemnation" } window 300,0 314.0 "--targetable--" -323.0 "Starbirth Corner" sync / 1[56]:[^:]*:Innocence:3EEF:/ -336.0 "Shadowreaver" sync / 1[56]:[^:]*:Innocence:3EEA:/ -337.0 "Explosion" sync / 1[56]:[^:]*:Innocence:3EF0:/ -347.0 "Winged Rep Rotate" sync / 1[56]:[^:]*:Innocence:40BD:/ -353.0 "Soul And Body" sync / 1[56]:[^:]*:Innocence:3ED9:/ -359.0 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -363.0 "Rightful Reprobation" sync / 1[56]:[^:]*:Innocence:3EDD:/ -367.0 "--jump--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -369.8 "Reprobation" sync / 1[56]:[^:]*:Innocence:3ECC:/ -373.7 "Beatific Vision" sync / 1[56]:[^:]*:Innocence:3EEE:/ -389.7 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3ECD:/ +323.0 "Starbirth Corner" Ability { id: "3EEF", source: "Innocence" } +336.0 "Shadowreaver" Ability { id: "3EEA", source: "Innocence" } +337.0 "Explosion" Ability { id: "3EF0", source: "Innocence" } +347.0 "Winged Rep Rotate" Ability { id: "40BD", source: "Innocence" } +353.0 "Soul And Body" Ability { id: "3ED9", source: "Innocence" } +359.0 "--sync--" Ability { id: "3EA2", source: "Innocence" } +363.0 "Rightful Reprobation" Ability { id: "3EDD", source: "Innocence" } +367.0 "--jump--" Ability { id: "3EA2", source: "Innocence" } +369.8 "Reprobation" Ability { id: "3ECC", source: "Innocence" } +373.7 "Beatific Vision" Ability { id: "3EEE", source: "Innocence" } +389.7 "Righteous Bolt" Ability { id: "3ECD", source: "Innocence" } -400.7 "Starbirth Avoid" sync / 1[56]:[^:]*:Innocence:3EEF:/ -407.7 "Drop Of Light 1" #sync / 1[56]:[^:]*:Innocence:3EEC:/ -412.8 "Drop Of Light 2" #sync / 1[56]:[^:]*:Innocence:3EEC:/ -419.7 "Light Pillar" sync / 1[56]:[^:]*:Innocence:3EED:/ -421.7 "--jump--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -428.3 "Beatific Vision" sync / 1[56]:[^:]*:Innocence:3EEE:/ -441.3 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -445.4 "Rightful Reprobation" sync / 1[56]:[^:]*:Innocence:3EDC:/ -452.3 "Reprobation" sync / 1[56]:[^:]*:Innocence:3ECC:/ -452.9 "God Ray x3" sync / 1[56]:[^:]*:Innocence:3EE6:/ window 5,1 duration 10 -469.9 "Shadowreaver" sync / 1[56]:[^:]*:Innocence:3EEA:/ -480.9 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3ECD:/ +400.7 "Starbirth Avoid" Ability { id: "3EEF", source: "Innocence" } +407.7 "Drop Of Light 1" #Ability { id: "3EEC", source: "Innocence" } +412.8 "Drop Of Light 2" #Ability { id: "3EEC", source: "Innocence" } +419.7 "Light Pillar" Ability { id: "3EED", source: "Innocence" } +421.7 "--jump--" Ability { id: "3EA2", source: "Innocence" } +428.3 "Beatific Vision" Ability { id: "3EEE", source: "Innocence" } +441.3 "--sync--" Ability { id: "3EA2", source: "Innocence" } +445.4 "Rightful Reprobation" Ability { id: "3EDC", source: "Innocence" } +452.3 "Reprobation" Ability { id: "3ECC", source: "Innocence" } +452.9 "God Ray x3" Ability { id: "3EE6", source: "Innocence" } window 5,1 duration 10 +469.9 "Shadowreaver" Ability { id: "3EEA", source: "Innocence" } +480.9 "Righteous Bolt" Ability { id: "3ECD", source: "Innocence" } -489.9 "Starbirth Explode" sync / 1[56]:[^:]*:Innocence:3EEF:/ -494.9 "Winged Rep Trident" sync / 1[56]:[^:]*:Innocence:40BD:/ -500.9 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -505.4 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -509.9 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -514.2 "Light Pillar" sync / 1[56]:[^:]*:Innocence:3EED:/ -523.2 "Shadowreaver" sync / 1[56]:[^:]*:Innocence:3EEA:/ -538.3 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3ECD:/ +489.9 "Starbirth Explode" Ability { id: "3EEF", source: "Innocence" } +494.9 "Winged Rep Trident" Ability { id: "40BD", source: "Innocence" } +500.9 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +505.4 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +509.9 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +514.2 "Light Pillar" Ability { id: "3EED", source: "Innocence" } +523.2 "Shadowreaver" Ability { id: "3EEA", source: "Innocence" } +538.3 "Righteous Bolt" Ability { id: "3ECD", source: "Innocence" } # technical tethers + trident -547.3 "Winged Rep Tethers" sync / 1[56]:[^:]*:Innocence:40BD:/ -553.3 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -553.3 "Duel Descent" sync / 1[56]:[^:]*:Nail of Condemnation:3EA9:/ -557.8 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ +547.3 "Winged Rep Tethers" Ability { id: "40BD", source: "Innocence" } +553.3 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +553.3 "Duel Descent" Ability { id: "3EA9", source: "Nail of Condemnation" } +557.8 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } # technically trident + rotate -561.3 "Winged Rep Trident" sync / 1[56]:[^:]*:Innocence:40BD:/ -562.3 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -562.3 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ +561.3 "Winged Rep Trident" Ability { id: "40BD", source: "Innocence" } +562.3 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +562.3 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } -570.3 "Starbirth Charge" sync / 1[56]:[^:]*:Innocence:3EEF:/ -573.3 "--jump--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -579.9 "Beatific Vision" sync / 1[56]:[^:]*:Innocence:3EEE:/ -592.9 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -597.1 "Rightful Reprobation" sync / 1[56]:[^:]*:Innocence:3EDC:/ -598.9 "Drop Of Light 1" #sync / 1[56]:[^:]*:Innocence:3EEC:/ -604.0 "Reprobation" sync / 1[56]:[^:]*:Innocence:3ECC:/ -604.8 "Drop Of Light 2" #sync / 1[56]:[^:]*:Innocence:3EEC:/ -613.4 "Winged Rep Tethers" sync / 1[56]:[^:]*:Innocence:40BD:/ -622.4 "Duel Descent" sync / 1[56]:[^:]*:Nail of Condemnation:3EA9:/ -623.4 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3ECD:/ +570.3 "Starbirth Charge" Ability { id: "3EEF", source: "Innocence" } +573.3 "--jump--" Ability { id: "3EA2", source: "Innocence" } +579.9 "Beatific Vision" Ability { id: "3EEE", source: "Innocence" } +592.9 "--sync--" Ability { id: "3EA2", source: "Innocence" } +597.1 "Rightful Reprobation" Ability { id: "3EDC", source: "Innocence" } +598.9 "Drop Of Light 1" #Ability { id: "3EEC", source: "Innocence" } +604.0 "Reprobation" Ability { id: "3ECC", source: "Innocence" } +604.8 "Drop Of Light 2" #Ability { id: "3EEC", source: "Innocence" } +613.4 "Winged Rep Tethers" Ability { id: "40BD", source: "Innocence" } +622.4 "Duel Descent" Ability { id: "3EA9", source: "Nail of Condemnation" } +623.4 "Righteous Bolt" Ability { id: "3ECD", source: "Innocence" } -634.4 "Starbirth Avoid" sync / 1[56]:[^:]*:Innocence:3EEF:/ -641.4 "Drop Of Light 1" #sync / 1[56]:[^:]*:Innocence:3EEC:/ -646.5 "Drop Of Light 2" #sync / 1[56]:[^:]*:Innocence:3EEC:/ -653.4 "Light Pillar" sync / 1[56]:[^:]*:Innocence:3EED:/ -655.4 "--jump--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -662.1 "Beatific Vision" sync / 1[56]:[^:]*:Innocence:3EEE:/ -675.2 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -679.4 "Rightful Reprobation" sync / 1[56]:[^:]*:Innocence:3EDC:/ -686.3 "Reprobation" sync / 1[56]:[^:]*:Innocence:3ECC:/ -686.9 "God Ray x3" sync / 1[56]:[^:]*:Innocence:3EE6:/ window 5,1 duration 10 -703.9 "Shadowreaver" sync / 1[56]:[^:]*:Innocence:3EEA:/ -714.9 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3ECD:/ +634.4 "Starbirth Avoid" Ability { id: "3EEF", source: "Innocence" } +641.4 "Drop Of Light 1" #Ability { id: "3EEC", source: "Innocence" } +646.5 "Drop Of Light 2" #Ability { id: "3EEC", source: "Innocence" } +653.4 "Light Pillar" Ability { id: "3EED", source: "Innocence" } +655.4 "--jump--" Ability { id: "3EA2", source: "Innocence" } +662.1 "Beatific Vision" Ability { id: "3EEE", source: "Innocence" } +675.2 "--sync--" Ability { id: "3EA2", source: "Innocence" } +679.4 "Rightful Reprobation" Ability { id: "3EDC", source: "Innocence" } +686.3 "Reprobation" Ability { id: "3ECC", source: "Innocence" } +686.9 "God Ray x3" Ability { id: "3EE6", source: "Innocence" } window 5,1 duration 10 +703.9 "Shadowreaver" Ability { id: "3EEA", source: "Innocence" } +714.9 "Righteous Bolt" Ability { id: "3ECD", source: "Innocence" } -723.9 "Starbirth Final" sync / 1[56]:[^:]*:Innocence:3EEF:/ -728.9 "Winged Rep Trident" sync / 1[56]:[^:]*:Innocence:40BD:/ -734.9 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -739.4 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ -740.4 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -743.9 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EDB:/ +723.9 "Starbirth Final" Ability { id: "3EEF", source: "Innocence" } +728.9 "Winged Rep Trident" Ability { id: "40BD", source: "Innocence" } +734.9 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +739.4 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } +740.4 "--sync--" Ability { id: "3EA2", source: "Innocence" } +743.9 "Holy Trinity" #Ability { id: "3EDB", source: "Innocence" } -741.7 "--sync--" sync / 14:[^:]*:Innocence:3EEF:/ window 10,10 -744.7 "Starbirth Final" sync / 1[56]:[^:]*:Innocence:3EEF:/ -764.7 "Beatific Vision" sync / 1[56]:[^:]*:Innocence:3EF1:/ -765.6 "Explosion Enrage" sync / 1[56]:[^:]*:Innocence:3EF0:/ +741.7 "--sync--" StartsUsing { id: "3EEF", source: "Innocence" } window 10,10 +744.7 "Starbirth Final" Ability { id: "3EEF", source: "Innocence" } +764.7 "Beatific Vision" Ability { id: "3EF1", source: "Innocence" } +765.6 "Explosion Enrage" Ability { id: "3EF0", source: "Innocence" } diff --git a/ui/raidboss/data/05-shb/trial/innocence.txt b/ui/raidboss/data/05-shb/trial/innocence.txt index b4c0a4948e..9a06fb099c 100644 --- a/ui/raidboss/data/05-shb/trial/innocence.txt +++ b/ui/raidboss/data/05-shb/trial/innocence.txt @@ -6,84 +6,84 @@ hideall "--sync--" ### Phase 1 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -15.0 "Realmrazer" sync / 1[56]:[^:]*:Innocence:3E9A:/ window 15,5 -28.2 "Heavenly Host" sync / 1[56]:[^:]*:Innocence:3E95:/ -54.9 "Daybreak" sync / 1[56]:[^:]*:Innocence:3E9D:/ -69.1 "Enthrall" sync / 1[56]:[^:]*:Innocence:3E99:/ -71.1 "Sinsphere" sync / 1[56]:[^:]*:Innocence:3E97:/ -80.3 "Heavenly Host" sync / 1[56]:[^:]*:Innocence:3E95:/ -82.4 "--center--" sync / 1[56]:[^:]*:Innocence:3E91:/ -86.7 "Guiding Light" sync / 1[56]:[^:]*:Innocence:3E96:/ -100.4 "Daybreak" sync / 1[56]:[^:]*:Innocence:3E9D:/ -111.5 "Realmrazer" sync / 1[56]:[^:]*:Innocence:3E9A:/ -123.6 "Enthrall" sync / 1[56]:[^:]*:Innocence:3E99:/ -125.8 "Sinsphere" sync / 1[56]:[^:]*:Innocence:3E97:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +15.0 "Realmrazer" Ability { id: "3E9A", source: "Innocence" } window 15,5 +28.2 "Heavenly Host" Ability { id: "3E95", source: "Innocence" } +54.9 "Daybreak" Ability { id: "3E9D", source: "Innocence" } +69.1 "Enthrall" Ability { id: "3E99", source: "Innocence" } +71.1 "Sinsphere" Ability { id: "3E97", source: "Innocence" } +80.3 "Heavenly Host" Ability { id: "3E95", source: "Innocence" } +82.4 "--center--" Ability { id: "3E91", source: "Innocence" } +86.7 "Guiding Light" Ability { id: "3E96", source: "Innocence" } +100.4 "Daybreak" Ability { id: "3E9D", source: "Innocence" } +111.5 "Realmrazer" Ability { id: "3E9A", source: "Innocence" } +123.6 "Enthrall" Ability { id: "3E99", source: "Innocence" } +125.8 "Sinsphere" Ability { id: "3E97", source: "Innocence" } # aoe spam until low -200.0 "--north--" sync / 1[56]:[^:]*:Innocence:3E91:/ window 100,0 -205.5 "--sync--" sync / 1[56]:[^:]*:Innocence:3E92:/ window 200,0 -209.2 "Exalted Wing" #sync / 1[56]:[^:]*:Innocence:3E93:/ -215.6 "Exalted Wing" sync / 1[56]:[^:]*:Innocence:3E93:/ window 0,30 -220.6 "Exalted Wing" #sync / 1[56]:[^:]*:Innocence:3E93:/ -225.6 "Exalted Wing" #sync / 1[56]:[^:]*:Innocence:3E93:/ -230.6 "Exalted Wing" #sync / 1[56]:[^:]*:Innocence:3E93:/ -235.6 "Exalted Wing" #sync / 1[56]:[^:]*:Innocence:3E93:/ -240.6 "Exalted Wing" #sync / 1[56]:[^:]*:Innocence:3E93:/ -245.6 "Exalted Wing" #sync / 1[56]:[^:]*:Innocence:3E93:/ -250.6 "Exalted Wing" #sync / 1[56]:[^:]*:Innocence:3E93:/ +200.0 "--north--" Ability { id: "3E91", source: "Innocence" } window 100,0 +205.5 "--sync--" Ability { id: "3E92", source: "Innocence" } window 200,0 +209.2 "Exalted Wing" #Ability { id: "3E93", source: "Innocence" } +215.6 "Exalted Wing" Ability { id: "3E93", source: "Innocence" } window 0,30 +220.6 "Exalted Wing" #Ability { id: "3E93", source: "Innocence" } +225.6 "Exalted Wing" #Ability { id: "3E93", source: "Innocence" } +230.6 "Exalted Wing" #Ability { id: "3E93", source: "Innocence" } +235.6 "Exalted Wing" #Ability { id: "3E93", source: "Innocence" } +240.6 "Exalted Wing" #Ability { id: "3E93", source: "Innocence" } +245.6 "Exalted Wing" #Ability { id: "3E93", source: "Innocence" } +250.6 "Exalted Wing" #Ability { id: "3E93", source: "Innocence" } # ye olde cutscene -300.0 "--sync--" sync / 1[56]:[^:]*:Innocence:4144:/ window 300,0 -302.5 "Exalted Plumes" sync / 1[56]:[^:]*:Innocence:3EF2:/ -306.6 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA1:/ -306.6 "--sync--" sync / 1[56]:[^:]*:Innocence:3E94:/ -363.2 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3EA3:/ -372.4 "Winged Reprobation" sync / 1[56]:[^:]*:Innocence:40BC:/ -378.5 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EB3:/ -383.6 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EB3:/ -388.7 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EB3:/ -397.6 "Winged Reprobation" sync / 1[56]:[^:]*:Innocence:40BC:/ -403.8 "Soul And Body" sync / 1[56]:[^:]*:Innocence:3EB1:/ -416.7 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -420.9 "Rightful Reprobation" sync / 1[56]:[^:]*:Innocence:3EB5:/ -428.2 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3EA3:/ -430.7 "Reprobation" sync / 1[56]:[^:]*:Innocence:3ECB:/ -439.3 "Shadowreaver" sync / 1[56]:[^:]*:Innocence:3EEA:/ +300.0 "--sync--" Ability { id: "4144", source: "Innocence" } window 300,0 +302.5 "Exalted Plumes" Ability { id: "3EF2", source: "Innocence" } +306.6 "--sync--" Ability { id: "3EA1", source: "Innocence" } +306.6 "--sync--" Ability { id: "3E94", source: "Innocence" } +363.2 "Righteous Bolt" Ability { id: "3EA3", source: "Innocence" } +372.4 "Winged Reprobation" Ability { id: "40BC", source: "Innocence" } +378.5 "Holy Trinity" #Ability { id: "3EB3", source: "Innocence" } +383.6 "Holy Trinity" #Ability { id: "3EB3", source: "Innocence" } +388.7 "Holy Trinity" #Ability { id: "3EB3", source: "Innocence" } +397.6 "Winged Reprobation" Ability { id: "40BC", source: "Innocence" } +403.8 "Soul And Body" Ability { id: "3EB1", source: "Innocence" } +416.7 "--sync--" Ability { id: "3EA2", source: "Innocence" } +420.9 "Rightful Reprobation" Ability { id: "3EB5", source: "Innocence" } +428.2 "Righteous Bolt" Ability { id: "3EA3", source: "Innocence" } +430.7 "Reprobation" Ability { id: "3ECB", source: "Innocence" } +439.3 "Shadowreaver" Ability { id: "3EEA", source: "Innocence" } # add phase with manacles -449.5 "--add Phase--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -451.9 "--untargetable--" sync / 1[56]:[^:]*:Innocence:42B0:/ +449.5 "--add Phase--" Ability { id: "3EA2", source: "Innocence" } +451.9 "--untargetable--" Ability { id: "42B0", source: "Innocence" } # looping final phase -579.8 "Flaming Sword" sync / 1[56]:[^:]*:Sword of Condemnation:3EC1:/ window 600,0 -588.6 "Flaming Sword" sync / 1[56]:[^:]*:Innocence:4708:/ -600.0 "--targetable--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -605.7 "God Ray" #sync / 1[56]:[^:]*:Innocence:3EBE:/ -610.8 "God Ray" #sync / 1[56]:[^:]*:Innocence:3EBE:/ -615.9 "God Ray" #sync / 1[56]:[^:]*:Innocence:3EBE:/ -618.1 "--sync--" sync / 1[56]:[^:]*:Innocence:38FC:/ -623.1 "Light Pillar" sync / 1[56]:[^:]*:Innocence:3F3E:/ -632.6 "Winged Reprobation" sync / 1[56]:[^:]*:Innocence:40BC:/ -638.6 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EB3:/ -638.6 "Soul And Body" sync / 1[56]:[^:]*:Innocence:3EB1:/ -643.7 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EB3:/ -644.6 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3EA3:/ -648.8 "Holy Trinity" #sync / 1[56]:[^:]*:Innocence:3EB3:/ -651.8 "--jump--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -658.5 "Beatific Vision" sync / 1[56]:[^:]*:Innocence:3EC7:/ -676.8 "Shadowreaver" sync / 1[56]:[^:]*:Innocence:3EEA:/ -685.0 "--sync--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -689.2 "Rightful Reprobation" sync / 1[56]:[^:]*:Innocence:3EB5:/ -695.8 "Drop Of Light" sync / 1[56]:[^:]*:Innocence:3EC4:/ -697.9 "--sync--" sync / 1[56]:[^:]*:Innocence:38FC:/ -699.1 "Reprobation" sync / 1[56]:[^:]*:Innocence:3ECB:/ -702.9 "Light Pillar" sync / 1[56]:[^:]*:Innocence:3F3E:/ -707.4 "--jump--" sync / 1[56]:[^:]*:Innocence:3EA2:/ -714.2 "Beatific Vision" sync / 1[56]:[^:]*:Innocence:3EC7:/ -730.4 "Righteous Bolt" sync / 1[56]:[^:]*:Innocence:3EA3:/ +579.8 "Flaming Sword" Ability { id: "3EC1", source: "Sword of Condemnation" } window 600,0 +588.6 "Flaming Sword" Ability { id: "4708", source: "Innocence" } +600.0 "--targetable--" Ability { id: "3EA2", source: "Innocence" } +605.7 "God Ray" #Ability { id: "3EBE", source: "Innocence" } +610.8 "God Ray" #Ability { id: "3EBE", source: "Innocence" } +615.9 "God Ray" #Ability { id: "3EBE", source: "Innocence" } +618.1 "--sync--" Ability { id: "38FC", source: "Innocence" } +623.1 "Light Pillar" Ability { id: "3F3E", source: "Innocence" } +632.6 "Winged Reprobation" Ability { id: "40BC", source: "Innocence" } +638.6 "Holy Trinity" #Ability { id: "3EB3", source: "Innocence" } +638.6 "Soul And Body" Ability { id: "3EB1", source: "Innocence" } +643.7 "Holy Trinity" #Ability { id: "3EB3", source: "Innocence" } +644.6 "Righteous Bolt" Ability { id: "3EA3", source: "Innocence" } +648.8 "Holy Trinity" #Ability { id: "3EB3", source: "Innocence" } +651.8 "--jump--" Ability { id: "3EA2", source: "Innocence" } +658.5 "Beatific Vision" Ability { id: "3EC7", source: "Innocence" } +676.8 "Shadowreaver" Ability { id: "3EEA", source: "Innocence" } +685.0 "--sync--" Ability { id: "3EA2", source: "Innocence" } +689.2 "Rightful Reprobation" Ability { id: "3EB5", source: "Innocence" } +695.8 "Drop Of Light" Ability { id: "3EC4", source: "Innocence" } +697.9 "--sync--" Ability { id: "38FC", source: "Innocence" } +699.1 "Reprobation" Ability { id: "3ECB", source: "Innocence" } +702.9 "Light Pillar" Ability { id: "3F3E", source: "Innocence" } +707.4 "--jump--" Ability { id: "3EA2", source: "Innocence" } +714.2 "Beatific Vision" Ability { id: "3EC7", source: "Innocence" } +730.4 "Righteous Bolt" Ability { id: "3EA3", source: "Innocence" } -738.5 "--targetable--" sync / 1[56]:[^:]*:Innocence:3EA2:/ window 10,10 jump 600 +738.5 "--targetable--" Ability { id: "3EA2", source: "Innocence" } window 10,10 jump 600 744.2 "God Ray" 749.3 "God Ray" 754.4 "God Ray" diff --git a/ui/raidboss/data/05-shb/trial/levi-un.txt b/ui/raidboss/data/05-shb/trial/levi-un.txt index ac4d1f2cbb..62de35c4e4 100644 --- a/ui/raidboss/data/05-shb/trial/levi-un.txt +++ b/ui/raidboss/data/05-shb/trial/levi-un.txt @@ -37,151 +37,151 @@ hideall "--sync--" ### Phase 1: Literally Just Autos (100% -> 90%) 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -25.8 "--untargetable--" sync / 22:........:Leviathan:........:Leviathan:00/ window 30,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +25.8 "--untargetable--" NameToggle { name: "Leviathan", toggle: "00" } window 30,10 ### Phase 2: One Set of Orbs (90% -> 50%?) 33.0 "--targetable--" -33.1 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 40,10 -38.3 "Veil Of The Whorl" sync / 1[56]:[^:]*:Leviathan:5CE5:/ window 40,10 -43.3 "Mantle Of The Whorl" sync / 1[56]:[^:]*:Leviathan's Tail:5CE4:/ +33.1 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 40,10 +38.3 "Veil Of The Whorl" Ability { id: "5CE5", source: "Leviathan" } window 40,10 +43.3 "Mantle Of The Whorl" Ability { id: "5CE4", source: "Leviathan's Tail" } 45.6 "--2x Wavespine Sahagin (N)--" -53.2 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:5CCD:/ -59.3 "Tail Whip" sync / 1[56]:[^:]*:Leviathan's Tail:5CCE:/ -60.4 "Waterspout" sync / 1[56]:[^:]*:Leviathan:5CD0:/ -73.8 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -77.9 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ +53.2 "Aqua Breath" Ability { id: "5CCD", source: "Leviathan" } +59.3 "Tail Whip" Ability { id: "5CCE", source: "Leviathan's Tail" } +60.4 "Waterspout" Ability { id: "5CD0", source: "Leviathan" } +73.8 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +77.9 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } 85.2 "--untargetable--" -88.3 "Grand Fall" sync / 1[56]:[^:]*:Leviathan:5CDF:/ -90.8 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ -94.3 "Grand Fall" sync / 1[56]:[^:]*:Leviathan:5CDF:/ -95.8 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +88.3 "Grand Fall" Ability { id: "5CDF", source: "Leviathan" } +90.8 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } +94.3 "Grand Fall" Ability { id: "5CDF", source: "Leviathan" } +95.8 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 101.5 "--targetable--" -101.6 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 30,30 -106.0 "Briny Veil" sync / 1[56]:[^:]*:Leviathan:5CE1:/ +101.6 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 30,30 +106.0 "Briny Veil" Ability { id: "5CE1", source: "Leviathan" } 110.7 "--Wavetooth Sahagin (E)--" -121.0 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -125.1 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:5CCD:/ -126.0 "Tail Whip" sync / 1[56]:[^:]*:Leviathan's Tail:5CCE:/ -132.3 "Waterspout" sync / 1[56]:[^:]*:Leviathan:5CD0:/ -145.7 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -149.8 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ +121.0 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +125.1 "Aqua Breath" Ability { id: "5CCD", source: "Leviathan" } +126.0 "Tail Whip" Ability { id: "5CCE", source: "Leviathan's Tail" } +132.3 "Waterspout" Ability { id: "5CD0", source: "Leviathan" } +145.7 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +149.8 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } 154.9 "--untargetable--" -158.0 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:5CDF:/ -160.5 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ -165.4 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +158.0 "Grand Fall x3" #Ability { id: "5CDF", source: "Leviathan" } +160.5 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } +165.4 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 171.1 "--targetable--" -171.2 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 30,30 +171.2 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 30,30 180.8 "--4x Gyre Spume--" -192.7 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -196.3 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:5CCE:/ -196.8 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:5CCD:/ -204.0 "Waterspout" sync / 1[56]:[^:]*:Leviathan:5CD0:/ -217.3 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -221.4 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ +192.7 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +196.3 "Tail Whip" #Ability { id: "5CCE", source: "Leviathan's Tail" } +196.8 "Aqua Breath" Ability { id: "5CCD", source: "Leviathan" } +204.0 "Waterspout" Ability { id: "5CD0", source: "Leviathan" } +217.3 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +221.4 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } 228.9 "--untargetable--" -232.0 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:5CDF:/ -234.5 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ -239.4 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +232.0 "Grand Fall x3" #Ability { id: "5CDF", source: "Leviathan" } +234.5 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } +239.4 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 245.1 "--targetable--" -245.2 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 30,30 -267.5 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ +245.2 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 30,30 +267.5 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } 275.2 "--untargetable--" -278.3 "Grand Fall" sync / 1[56]:[^:]*:Leviathan:5CDF:/ -280.8 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +278.3 "Grand Fall" Ability { id: "5CDF", source: "Leviathan" } +280.8 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 280.8 "--untargetable--" -286.5 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:5CDE:/ window 300,100 +286.5 "Tidal Wave" Ability { id: "5CDE", source: "Leviathan" } window 300,100 ### Phase 3: Two Sets of Orbs (50% -> 20%?) 299.2 "--targetable--" -299.3 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 30,30 +299.3 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 30,30 301.3 "--2x Wavespine Sahagin (S)--" -318.6 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:5CCD:/ -318.6 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:5CCE:/ -322.7 "Waterspout" sync / 1[56]:[^:]*:Leviathan:5CD0:/ -329.9 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -338.1 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ +318.6 "Aqua Breath" Ability { id: "5CCD", source: "Leviathan" } +318.6 "Tail Whip" #Ability { id: "5CCE", source: "Leviathan's Tail" } +322.7 "Waterspout" Ability { id: "5CD0", source: "Leviathan" } +329.9 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +338.1 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } 347.3 "--untargetable--" -350.4 "Grand Fall" sync / 1[56]:[^:]*:Leviathan:5CDF:/ -352.9 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ -357.8 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +350.4 "Grand Fall" Ability { id: "5CDF", source: "Leviathan" } +352.9 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } +357.8 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 363.5 "--targetable--" -363.6 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 30,30 +363.6 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 30,30 364.9 "--4x Gyre Spume--" -382.9 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:5CCD:/ -385.0 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:5CCE:/ -387.1 "Waterspout" sync / 1[56]:[^:]*:Leviathan:5CD0:/ -394.3 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ +382.9 "Aqua Breath" Ability { id: "5CCD", source: "Leviathan" } +385.0 "Tail Whip" #Ability { id: "5CCE", source: "Leviathan's Tail" } +387.1 "Waterspout" Ability { id: "5CD0", source: "Leviathan" } +394.3 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } 402.4 "--4x Wave Spume--" -402.5 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ +402.5 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } 413.8 "--untargetable--" -416.9 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:5CDF:/ -419.4 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +416.9 "Grand Fall x3" #Ability { id: "5CDF", source: "Leviathan" } +419.4 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 425.1 "--targetable--" -425.2 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ -435.3 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -439.6 "Aqua Burst" sync / 1[56]:[^:]*:Wave Spume:888:/ -442.5 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:5CCD:/ -446.6 "Waterspout" sync / 1[56]:[^:]*:Leviathan:5CD0:/ -455.8 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ +425.2 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } +435.3 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +439.6 "Aqua Burst" Ability { id: "888", source: "Wave Spume" } +442.5 "Aqua Breath" Ability { id: "5CCD", source: "Leviathan" } +446.6 "Waterspout" Ability { id: "5CD0", source: "Leviathan" } +455.8 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } 462.5 "--untargetable--" -465.6 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:5CDF:/ -468.1 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +465.6 "Grand Fall x3" #Ability { id: "5CDF", source: "Leviathan" } +468.1 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 468.1 "--untargetable--" -473.9 "Tidal Wave" sync / 1[56]:[^:]*:Leviathan:5CDE:/ window 150,100 +473.9 "Tidal Wave" Ability { id: "5CDE", source: "Leviathan" } window 150,100 ### Phase 4: more adds, enrage 486.6 "--targetable--" -486.7 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 30,30 +486.7 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 30,30 488.2 "--Wavetooth Sahagin (NW)--" -500.3 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ -508.5 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:5CCD:/ -512.6 "Waterspout" sync / 1[56]:[^:]*:Leviathan:5CD0:/ -512.6 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:5CCE:/ -519.8 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -523.9 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ +500.3 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } +508.5 "Aqua Breath" Ability { id: "5CCD", source: "Leviathan" } +512.6 "Waterspout" Ability { id: "5CD0", source: "Leviathan" } +512.6 "Tail Whip" #Ability { id: "5CCE", source: "Leviathan's Tail" } +519.8 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +523.9 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } 532.1 "--untargetable--" -535.2 "Grand Fall x3" #sync / 1[56]:[^:]*:Leviathan:5CDF:/ -537.7 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ -542.6 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +535.2 "Grand Fall x3" #Ability { id: "5CDF", source: "Leviathan" } +537.7 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } +542.6 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 548.3 "--targetable--" -548.4 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 30,30 -563.6 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -567.7 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ -581.1 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -587.3 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ +548.4 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 30,30 +563.6 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +567.7 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } +581.1 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +587.3 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } 600.9 "--2x Wavespine Sahagin--" # ? not sure where -601.6 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ -609.8 "Aqua Breath" sync / 1[56]:[^:]*:Leviathan:5CCD:/ -613.9 "Waterspout" sync / 1[56]:[^:]*:Leviathan:5CD0:/ -614.8 "Tail Whip" #sync / 1[56]:[^:]*:Leviathan's Tail:5CCE:/ -621.1 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ -625.2 "Tidal Roar" sync / 1[56]:[^:]*:Leviathan:5CDA:/ +601.6 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } +609.8 "Aqua Breath" Ability { id: "5CCD", source: "Leviathan" } +613.9 "Waterspout" Ability { id: "5CD0", source: "Leviathan" } +614.8 "Tail Whip" #Ability { id: "5CCE", source: "Leviathan's Tail" } +621.1 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } +625.2 "Tidal Roar" Ability { id: "5CDA", source: "Leviathan" } 634.1 "--untargetable--" -637.2 "Grand Fall x3" sync / 1[56]:[^:]*:Leviathan:5CDF:/ -639.7 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ -644.6 "Spinning Dive" sync / 1[56]:[^:]*:Leviathan:5CDB:/ +637.2 "Grand Fall x3" Ability { id: "5CDF", source: "Leviathan" } +639.7 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } +644.6 "Spinning Dive" Ability { id: "5CDB", source: "Leviathan" } 650.3 "--targetable--" -650.4 "Body Slam" sync / 1[56]:[^:]*:Leviathan:5CD2:/ window 30,30 -665.6 "Dread Tide" sync / 1[56]:[^:]*:Leviathan:5CC9:/ +650.4 "Body Slam" Ability { id: "5CD2", source: "Leviathan" } window 30,30 +665.6 "Dread Tide" Ability { id: "5CC9", source: "Leviathan" } 669.6 "--untargetable--" -676.9 "Tidal Wave Enrage" sync / 1[56]:[^:]*:Leviathan:5CDE:/ +676.9 "Tidal Wave Enrage" Ability { id: "5CDE", source: "Leviathan" } diff --git a/ui/raidboss/data/05-shb/trial/ruby_weapon-ex.txt b/ui/raidboss/data/05-shb/trial/ruby_weapon-ex.txt index 0461663d45..f202e7397d 100644 --- a/ui/raidboss/data/05-shb/trial/ruby_weapon-ex.txt +++ b/ui/raidboss/data/05-shb/trial/ruby_weapon-ex.txt @@ -11,82 +11,82 @@ hideall "--sync--" # as timeline resets out of combat. 0 "Start" -2.0 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:368:/ window 3,0 -14.5 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4ABE:/ window 15,5 -28.7 "Magitek Bit" sync / 1[56]:[^:]*:The Ruby Weapon:4AD1:/ -30.8 "--middle--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -36.0 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -38.9 "Magitek Ray" sync / 1[56]:[^:]*:Ruby Bit:4AD2:/ -44.6 "Helicoclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A99:/ -45.3 "Spike Of Flame" sync / 1[56]:[^:]*:The Ruby Weapon:(4D04|4AD3):/ -46.7 "Magitek Ray" sync / 1[56]:[^:]*:Ruby Bit:4AD2:/ -52.7 "Helicoclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A99:/ -53.4 "Spike Of Flame" sync / 1[56]:[^:]*:The Ruby Weapon:(4D04|4AD3):/ -54.5 "Magitek Ray" sync / 1[56]:[^:]*:Ruby Bit:4AD2:/ -62.4 "Magitek Ray" sync / 1[56]:[^:]*:Ruby Bit:4AD2:/ -72.6 "Stamp" sync / 1[56]:[^:]*:The Ruby Weapon:4B03:/ -77.8 "--middle--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -80.2 "Ruby Sphere" sync / 1[56]:[^:]*:The Ruby Weapon:4AC9:/ -86.3 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -95.9 "Ravensclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4ACC:/ -102.0 "Liquefaction?/Undermine?" sync / 1[56]:[^:]*:The Ruby Weapon:(4ACF|4AD0):/ -105.2 "Ruby Sphere 1" #sync / 1[56]:[^:]*:The Ruby Weapon:4ACA:/ -108.2 "Ruby Sphere 2" #sync / 1[56]:[^:]*:The Ruby Weapon:4ACA:/ -111.2 "Ruby Sphere 3" #sync / 1[56]:[^:]*:The Ruby Weapon:4ACA:/ +2.0 "--sync--" Ability { id: "368", source: "The Ruby Weapon" } window 3,0 +14.5 "Optimized Ultima" Ability { id: "4ABE", source: "The Ruby Weapon" } window 15,5 +28.7 "Magitek Bit" Ability { id: "4AD1", source: "The Ruby Weapon" } +30.8 "--middle--" Ability { id: "4A9B", source: "The Ruby Weapon" } +36.0 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +38.9 "Magitek Ray" Ability { id: "4AD2", source: "Ruby Bit" } +44.6 "Helicoclaw" Ability { id: "4A99", source: "The Ruby Weapon" } +45.3 "Spike Of Flame" Ability { id: ["4D04", "4AD3"], source: "The Ruby Weapon" } +46.7 "Magitek Ray" Ability { id: "4AD2", source: "Ruby Bit" } +52.7 "Helicoclaw" Ability { id: "4A99", source: "The Ruby Weapon" } +53.4 "Spike Of Flame" Ability { id: ["4D04", "4AD3"], source: "The Ruby Weapon" } +54.5 "Magitek Ray" Ability { id: "4AD2", source: "Ruby Bit" } +62.4 "Magitek Ray" Ability { id: "4AD2", source: "Ruby Bit" } +72.6 "Stamp" Ability { id: "4B03", source: "The Ruby Weapon" } +77.8 "--middle--" Ability { id: "4A9B", source: "The Ruby Weapon" } +80.2 "Ruby Sphere" Ability { id: "4AC9", source: "The Ruby Weapon" } +86.3 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +95.9 "Ravensclaw" Ability { id: "4ACC", source: "The Ruby Weapon" } +102.0 "Liquefaction?/Undermine?" Ability { id: ["4ACF", "4AD0"], source: "The Ruby Weapon" } +105.2 "Ruby Sphere 1" #Ability { id: "4ACA", source: "The Ruby Weapon" } +108.2 "Ruby Sphere 2" #Ability { id: "4ACA", source: "The Ruby Weapon" } +111.2 "Ruby Sphere 3" #Ability { id: "4ACA", source: "The Ruby Weapon" } # can be slightly delayed -122.6 "--sync--" sync / 14:[^:]*:The Ruby Weapon:4B02:/ window 10,10 -127.6 "Ruby Ray" sync / 1[56]:[^:]*:The Ruby Weapon:4B02:/ -134.7 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4ABE:/ -145.4 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -151.1 "Liquefaction" sync / 1[56]:[^:]*:The Ruby Weapon:4AEC:/ -157.6 "--north--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ +122.6 "--sync--" StartsUsing { id: "4B02", source: "The Ruby Weapon" } window 10,10 +127.6 "Ruby Ray" Ability { id: "4B02", source: "The Ruby Weapon" } +134.7 "Optimized Ultima" Ability { id: "4ABE", source: "The Ruby Weapon" } +145.4 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +151.1 "Liquefaction" Ability { id: "4AEC", source: "The Ruby Weapon" } +157.6 "--north--" Ability { id: "4A9B", source: "The Ruby Weapon" } 168.0 "--untargetable--" -168.0 "Ravensflight" sync / 1[56]:[^:]*:The Ruby Weapon:4AA1:/ +168.0 "Ravensflight" Ability { id: "4AA1", source: "The Ruby Weapon" } 181.8 "--targetable--" -196.9 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4ABE:/ -205.2 "Stamp" sync / 1[56]:[^:]*:The Ruby Weapon:4B03:/ -212.4 "--teleport--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -220.3 "Ruby Dynamics" sync / 1[56]:[^:]*:The Ruby Weapon:4B09:/ -221.4 "High-Powered Homing Lasers" sync / 1[56]:[^:]*:The Ruby Weapon:4AD8:/ -229.5 "Cut And Run" sync / 1[56]:[^:]*:The Ruby Weapon:4B05:/ duration 2.5 -231.1 "Homing Lasers" sync / 1[56]:[^:]*:The Ruby Weapon:4AD6:/ -237.1 "Magitek Charge" sync / 1[56]:[^:]*:The Ruby Weapon:4AD4:/ -246.2 "Ruby Ray" sync / 1[56]:[^:]*:The Ruby Weapon:4B02:/ -253.3 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4ABE:/ -259.5 "--middle--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -261.8 "Ruby Sphere" sync / 1[56]:[^:]*:The Ruby Weapon:4AC9:/ -267.9 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -277.5 "Ravensclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4ACC:/ -283.6 "Undermine?/Liquefaction?" sync / 1[56]:[^:]*:The Ruby Weapon:(4ACF|4AD0):/ -286.9 "Ruby Sphere 1" #sync / 1[56]:[^:]*:The Ruby Weapon:4ACA:/ -289.9 "Ruby Sphere 2" #sync / 1[56]:[^:]*:The Ruby Weapon:4ACA:/ -292.9 "Ruby Sphere 3" #sync / 1[56]:[^:]*:The Ruby Weapon:4ACA:/ -307.2 "Ruby Ray" sync / 1[56]:[^:]*:The Ruby Weapon:4B02:/ -314.3 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4ABE:/ -325.0 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -330.7 "Liquefaction" sync / 1[56]:[^:]*:The Ruby Weapon:4AEC:/ -337.2 "--north--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ +196.9 "Optimized Ultima" Ability { id: "4ABE", source: "The Ruby Weapon" } +205.2 "Stamp" Ability { id: "4B03", source: "The Ruby Weapon" } +212.4 "--teleport--" Ability { id: "4A9B", source: "The Ruby Weapon" } +220.3 "Ruby Dynamics" Ability { id: "4B09", source: "The Ruby Weapon" } +221.4 "High-Powered Homing Lasers" Ability { id: "4AD8", source: "The Ruby Weapon" } +229.5 "Cut And Run" Ability { id: "4B05", source: "The Ruby Weapon" } duration 2.5 +231.1 "Homing Lasers" Ability { id: "4AD6", source: "The Ruby Weapon" } +237.1 "Magitek Charge" Ability { id: "4AD4", source: "The Ruby Weapon" } +246.2 "Ruby Ray" Ability { id: "4B02", source: "The Ruby Weapon" } +253.3 "Optimized Ultima" Ability { id: "4ABE", source: "The Ruby Weapon" } +259.5 "--middle--" Ability { id: "4A9B", source: "The Ruby Weapon" } +261.8 "Ruby Sphere" Ability { id: "4AC9", source: "The Ruby Weapon" } +267.9 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +277.5 "Ravensclaw" Ability { id: "4ACC", source: "The Ruby Weapon" } +283.6 "Undermine?/Liquefaction?" Ability { id: ["4ACF", "4AD0"], source: "The Ruby Weapon" } +286.9 "Ruby Sphere 1" #Ability { id: "4ACA", source: "The Ruby Weapon" } +289.9 "Ruby Sphere 2" #Ability { id: "4ACA", source: "The Ruby Weapon" } +292.9 "Ruby Sphere 3" #Ability { id: "4ACA", source: "The Ruby Weapon" } +307.2 "Ruby Ray" Ability { id: "4B02", source: "The Ruby Weapon" } +314.3 "Optimized Ultima" Ability { id: "4ABE", source: "The Ruby Weapon" } +325.0 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +330.7 "Liquefaction" Ability { id: "4AEC", source: "The Ruby Weapon" } +337.2 "--north--" Ability { id: "4A9B", source: "The Ruby Weapon" } 347.6 "--untargetable--" -347.6 "Ravensflight" sync / 1[56]:[^:]*:The Ruby Weapon:4AA1:/ +347.6 "Ravensflight" Ability { id: "4AA1", source: "The Ruby Weapon" } 360.4 "--targetable--" -375.5 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4ABE:/ -383.8 "Stamp" sync / 1[56]:[^:]*:The Ruby Weapon:4B03:/ -391.0 "--teleport--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -398.8 "Ruby Dynamics" sync / 1[56]:[^:]*:The Ruby Weapon:4B09:/ -399.9 "High-Powered Homing Lasers" sync / 1[56]:[^:]*:The Ruby Weapon:4AD8:/ -407.9 "Cut And Run" sync / 1[56]:[^:]*:The Ruby Weapon:4B05:/ -409.5 "Homing Lasers" sync / 1[56]:[^:]*:The Ruby Weapon:4AD6:/ -414.9 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -415.4 "Magitek Charge" sync / 1[56]:[^:]*:The Ruby Weapon:4AD4:/ -424.5 "Ruby Ray" sync / 1[56]:[^:]*:The Ruby Weapon:4B02:/ -431.7 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4ABE:/ -437.9 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ +375.5 "Optimized Ultima" Ability { id: "4ABE", source: "The Ruby Weapon" } +383.8 "Stamp" Ability { id: "4B03", source: "The Ruby Weapon" } +391.0 "--teleport--" Ability { id: "4A9B", source: "The Ruby Weapon" } +398.8 "Ruby Dynamics" Ability { id: "4B09", source: "The Ruby Weapon" } +399.9 "High-Powered Homing Lasers" Ability { id: "4AD8", source: "The Ruby Weapon" } +407.9 "Cut And Run" Ability { id: "4B05", source: "The Ruby Weapon" } +409.5 "Homing Lasers" Ability { id: "4AD6", source: "The Ruby Weapon" } +414.9 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } +415.4 "Magitek Charge" Ability { id: "4AD4", source: "The Ruby Weapon" } +424.5 "Ruby Ray" Ability { id: "4B02", source: "The Ruby Weapon" } +431.7 "Optimized Ultima" Ability { id: "4ABE", source: "The Ruby Weapon" } +437.9 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } ### Enrage (both time and hp% pushes) -440.2 "--sync--" sync / 14:[^:]*:The Ruby Weapon:4B2D:/ window 600,0 -455.2 "Enrage" sync / 1[56]:[^:]*:The Ruby Weapon:4B2D:/ +440.2 "--sync--" StartsUsing { id: "4B2D", source: "The Ruby Weapon" } window 600,0 +455.2 "Enrage" Ability { id: "4B2D", source: "The Ruby Weapon" } ### Cutscene -800.0 "--cutscene--" sync / 1[56]:[^:]*:The Ruby Weapon:4E1C:/ window 800,0 duration 65.5 +800.0 "--cutscene--" Ability { id: "4E1C", source: "The Ruby Weapon" } window 800,0 duration 65.5 865.5 "--targetable--" ### Phase 2 @@ -94,37 +94,37 @@ hideall "--sync--" # -ii 4CF7 4E68 4B00 4E20 4AF3 4AF4 4AF1 4AF2 4B30 4E31 4AB1 1000.0 "Start" -1000.5 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4CF7:/ window 1001,0 -1007.0 "Meteor Project" sync / 1[56]:[^:]*:The Ruby Weapon:4AAA:/ window 1007,5 -1013.2 "Negative Personae" sync / 1[56]:[^:]*:The Ruby Weapon:4ABD:/ -1023.9 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E72:/ -1029.3 "Greater Memory" sync / 1[56]:[^:]*:Raven's Image:4AFD:/ -1035.4 "Chariot/Dynamo" sync / 1[56]:[^:]*:Raven's Image:4EB[01]:/ -1035.5 "Negative Affect" sync / 1[56]:[^:]*:The Ruby Weapon:4AF8:/ -1043.7 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E72:/ -1052.0 "Ruby Claw x5" sync / 1[56]:[^:]*:Raven's Image:4AFF:/ duration 2.5 -1061.8 "Change Of Heart" sync / 1[56]:[^:]*:The Ruby Weapon:4AFC:/ -1063.4 "Greater Memory" sync / 1[56]:[^:]*:Raven's Image:4AFD:/ -1071.0 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E72:/ -1075.6 "Chariot/Dynamo" sync / 1[56]:[^:]*:Raven's Image:4EB[01]:/ -1092.2 "Negative Aura" sync / 1[56]:[^:]*:The Ruby Weapon:4AFE:/ -1106.0 "Dalamud Impact" sync / 1[56]:[^:]*:The Ruby Weapon:4B0B:/ -1120.4 "Meteor Project" sync / 1[56]:[^:]*:The Ruby Weapon:4AAA:/ -1126.6 "Meteor Mine" sync / 1[56]:[^:]*:The Ruby Weapon:4E89:/ -1143.8 "Landing x8" duration 7 #sync / 1[56]:[^:]*:Meteor:4AF1:/ -1156.0 "Screech" sync / 1[56]:[^:]*:The Ruby Weapon:4AEE:/ -1157.0 "Burst x8" duration 7 #sync / 1[56]:[^:]*:Meteor:4AF2:/ -1159.7 "Magitek Meteor" sync / 1[56]:[^:]*:The Ruby Weapon:4AF0:/ -1167.2 "Mark II Magitek Comet" sync / 1[56]:[^:]*:The Ruby Weapon:4AB6:/ +1000.5 "--sync--" Ability { id: "4CF7", source: "The Ruby Weapon" } window 1001,0 +1007.0 "Meteor Project" Ability { id: "4AAA", source: "The Ruby Weapon" } window 1007,5 +1013.2 "Negative Personae" Ability { id: "4ABD", source: "The Ruby Weapon" } +1023.9 "Meteor Stream" Ability { id: "4E72", source: "The Ruby Weapon" } +1029.3 "Greater Memory" Ability { id: "4AFD", source: "Raven's Image" } +1035.4 "Chariot/Dynamo" Ability { id: "4EB[01]", source: "Raven's Image" } +1035.5 "Negative Affect" Ability { id: "4AF8", source: "The Ruby Weapon" } +1043.7 "Meteor Stream" Ability { id: "4E72", source: "The Ruby Weapon" } +1052.0 "Ruby Claw x5" Ability { id: "4AFF", source: "Raven's Image" } duration 2.5 +1061.8 "Change Of Heart" Ability { id: "4AFC", source: "The Ruby Weapon" } +1063.4 "Greater Memory" Ability { id: "4AFD", source: "Raven's Image" } +1071.0 "Meteor Stream" Ability { id: "4E72", source: "The Ruby Weapon" } +1075.6 "Chariot/Dynamo" Ability { id: "4EB[01]", source: "Raven's Image" } +1092.2 "Negative Aura" Ability { id: "4AFE", source: "The Ruby Weapon" } +1106.0 "Dalamud Impact" Ability { id: "4B0B", source: "The Ruby Weapon" } +1120.4 "Meteor Project" Ability { id: "4AAA", source: "The Ruby Weapon" } +1126.6 "Meteor Mine" Ability { id: "4E89", source: "The Ruby Weapon" } +1143.8 "Landing x8" duration 7 #Ability { id: "4AF1", source: "Meteor" } +1156.0 "Screech" Ability { id: "4AEE", source: "The Ruby Weapon" } +1157.0 "Burst x8" duration 7 #Ability { id: "4AF2", source: "Meteor" } +1159.7 "Magitek Meteor" Ability { id: "4AF0", source: "The Ruby Weapon" } +1167.2 "Mark II Magitek Comet" Ability { id: "4AB6", source: "The Ruby Weapon" } 1178.8 "Tank Comets" -1190.4 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4E38:/ -1190.5 "Bradamante" sync / 1[56]:[^:]*:The Ruby Weapon:4AF7:/ -1199.6 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4E38:/ -1199.7 "Bradamante" sync / 1[56]:[^:]*:The Ruby Weapon:4AF7:/ -1208.6 "Dalamud Impact" sync / 1[56]:[^:]*:The Ruby Weapon:4E52:/ -1221.9 "Meteor Project" sync / 1[56]:[^:]*:The Ruby Weapon:4AAC:/ -1235.1 "Outrage" sync / 1[56]:[^:]*:The Ruby Weapon:4B04:/ -1245.2 "Outrage" sync / 1[56]:[^:]*:The Ruby Weapon:4B04:/ -1254.3 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E72:/ -1262.1 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E72:/ +1190.4 "--sync--" Ability { id: "4E38", source: "The Ruby Weapon" } +1190.5 "Bradamante" Ability { id: "4AF7", source: "The Ruby Weapon" } +1199.6 "--sync--" Ability { id: "4E38", source: "The Ruby Weapon" } +1199.7 "Bradamante" Ability { id: "4AF7", source: "The Ruby Weapon" } +1208.6 "Dalamud Impact" Ability { id: "4E52", source: "The Ruby Weapon" } +1221.9 "Meteor Project" Ability { id: "4AAC", source: "The Ruby Weapon" } +1235.1 "Outrage" Ability { id: "4B04", source: "The Ruby Weapon" } +1245.2 "Outrage" Ability { id: "4B04", source: "The Ruby Weapon" } +1254.3 "Meteor Stream" Ability { id: "4E72", source: "The Ruby Weapon" } +1262.1 "Meteor Stream" Ability { id: "4E72", source: "The Ruby Weapon" } # Enrage ??? diff --git a/ui/raidboss/data/05-shb/trial/ruby_weapon.txt b/ui/raidboss/data/05-shb/trial/ruby_weapon.txt index da2924f111..a8b6b29893 100644 --- a/ui/raidboss/data/05-shb/trial/ruby_weapon.txt +++ b/ui/raidboss/data/05-shb/trial/ruby_weapon.txt @@ -13,55 +13,55 @@ hideall "--sync--" # -ii 4AA7 4E6A 4AA3 4E69 4AA5 4B2E 4D03 4C21 4AA4 4C2A 4AA2 4AA6 4A95 4AC4 4A98 0 "Start" -2.0 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:368:/ window 3,0 -16.0 "Stamp" sync / 1[56]:[^:]*:The Ruby Weapon:4AC7:/ window 17,0 -24.1 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4AA8:/ -31.3 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -36.7 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -46.4 "Ravensclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A93:/ -47.0 "Spike Of Flame" sync / 1[56]:[^:]*:The Ruby Weapon:4A94:/ -53.6 "Liquefaction?/Undermine?" sync / 1[56]:[^:]*:The Ruby Weapon:4A9[67]:/ -70.6 "Ruby Ray" sync / 1[56]:[^:]*:The Ruby Weapon:4AC6:/ -79.7 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4AA8:/ -84.9 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -90.1 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -98.7 "Helicoclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A99:/ -99.4 "Spike Of Flame" sync / 1[56]:[^:]*:The Ruby Weapon:(4A9A|4D02):/ -113.8 "High-Powered Homing Lasers" sync / 1[56]:[^:]*:The Ruby Weapon:4AC5:/ -120.5 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -130.8 "Ravensflight" sync / 1[56]:[^:]*:The Ruby Weapon:4AA1:/ -138.0 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4BCD:/ -154.3 "Stamp" sync / 1[56]:[^:]*:The Ruby Weapon:4AC7:/ -161.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ruby Weapon:4AC2:/ -164.0 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -171.7 "Ruby Dynamics" sync / 1[56]:[^:]*:The Ruby Weapon:4AA0:/ -178.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ruby Weapon:4AC3:/ -186.0 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4AA8:/ -191.2 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -196.4 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -206.0 "Ravensclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A93:/ -206.6 "Spike Of Flame" sync / 1[56]:[^:]*:The Ruby Weapon:4A94:/ -213.1 "Undermine?/Liquifaction?" sync / 1[56]:[^:]*:The Ruby Weapon:4A9[67]:/ -224.8 "Ruby Ray" sync / 1[56]:[^:]*:The Ruby Weapon:4AC6:/ -233.9 "Optimized Ultima" sync / 1[56]:[^:]*:The Ruby Weapon:4AA8:/ -239.1 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -244.4 "Flexiclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A92:/ -253.0 "Helicoclaw" sync / 1[56]:[^:]*:The Ruby Weapon:4A99:/ -253.7 "Spike Of Flame" sync / 1[56]:[^:]*:The Ruby Weapon:(4A9A|4D02):/ -268.2 "High-Powered Homing Lasers" sync / 1[56]:[^:]*:The Ruby Weapon:4AC5:/ -274.9 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ -285.2 "Ravensflight" sync / 1[56]:[^:]*:The Ruby Weapon:4AA1:/ -292.4 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4BCD:/ -308.7 "Stamp" sync / 1[56]:[^:]*:The Ruby Weapon:4AC7:/ -311.8 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4A9B:/ +2.0 "--sync--" Ability { id: "368", source: "The Ruby Weapon" } window 3,0 +16.0 "Stamp" Ability { id: "4AC7", source: "The Ruby Weapon" } window 17,0 +24.1 "Optimized Ultima" Ability { id: "4AA8", source: "The Ruby Weapon" } +31.3 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } +36.7 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +46.4 "Ravensclaw" Ability { id: "4A93", source: "The Ruby Weapon" } +47.0 "Spike Of Flame" Ability { id: "4A94", source: "The Ruby Weapon" } +53.6 "Liquefaction?/Undermine?" Ability { id: "4A9[67]", source: "The Ruby Weapon" } +70.6 "Ruby Ray" Ability { id: "4AC6", source: "The Ruby Weapon" } +79.7 "Optimized Ultima" Ability { id: "4AA8", source: "The Ruby Weapon" } +84.9 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } +90.1 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +98.7 "Helicoclaw" Ability { id: "4A99", source: "The Ruby Weapon" } +99.4 "Spike Of Flame" Ability { id: ["4A9A", "4D02"], source: "The Ruby Weapon" } +113.8 "High-Powered Homing Lasers" Ability { id: "4AC5", source: "The Ruby Weapon" } +120.5 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } +130.8 "Ravensflight" Ability { id: "4AA1", source: "The Ruby Weapon" } +138.0 "--sync--" Ability { id: "4BCD", source: "The Ruby Weapon" } +154.3 "Stamp" Ability { id: "4AC7", source: "The Ruby Weapon" } +161.4 "Homing Lasers" Ability { id: "4AC2", source: "The Ruby Weapon" } +164.0 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } +171.7 "Ruby Dynamics" Ability { id: "4AA0", source: "The Ruby Weapon" } +178.4 "Homing Lasers" Ability { id: "4AC3", source: "The Ruby Weapon" } +186.0 "Optimized Ultima" Ability { id: "4AA8", source: "The Ruby Weapon" } +191.2 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } +196.4 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +206.0 "Ravensclaw" Ability { id: "4A93", source: "The Ruby Weapon" } +206.6 "Spike Of Flame" Ability { id: "4A94", source: "The Ruby Weapon" } +213.1 "Undermine?/Liquifaction?" Ability { id: "4A9[67]", source: "The Ruby Weapon" } +224.8 "Ruby Ray" Ability { id: "4AC6", source: "The Ruby Weapon" } +233.9 "Optimized Ultima" Ability { id: "4AA8", source: "The Ruby Weapon" } +239.1 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } +244.4 "Flexiclaw" Ability { id: "4A92", source: "The Ruby Weapon" } +253.0 "Helicoclaw" Ability { id: "4A99", source: "The Ruby Weapon" } +253.7 "Spike Of Flame" Ability { id: ["4A9A", "4D02"], source: "The Ruby Weapon" } +268.2 "High-Powered Homing Lasers" Ability { id: "4AC5", source: "The Ruby Weapon" } +274.9 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } +285.2 "Ravensflight" Ability { id: "4AA1", source: "The Ruby Weapon" } +292.4 "--sync--" Ability { id: "4BCD", source: "The Ruby Weapon" } +308.7 "Stamp" Ability { id: "4AC7", source: "The Ruby Weapon" } +311.8 "--sync--" Ability { id: "4A9B", source: "The Ruby Weapon" } # FIXME: does this push at a percent like extreme? -314.0 "--sync--" sync / 14:[^:]*:The Ruby Weapon:4AA9:/ window 500,500 -329.0 "Optimized Ultima Enrage" sync / 1[56]:[^:]*:The Ruby Weapon:4AA9:/ +314.0 "--sync--" StartsUsing { id: "4AA9", source: "The Ruby Weapon" } window 500,500 +329.0 "Optimized Ultima Enrage" Ability { id: "4AA9", source: "The Ruby Weapon" } ### Cutscene # FIXME: this duration differs from the extreme version??? is that true?? -500.0 "--cutscene--" sync / 1[56]:[^:]*:The Ruby Weapon:4E1C:/ window 500,0 duration 61.5 +500.0 "--cutscene--" Ability { id: "4E1C", source: "The Ruby Weapon" } window 500,0 duration 61.5 561.5 "--targetable--" ### Phase 2 @@ -69,28 +69,28 @@ hideall "--sync--" # -ii 4CF6 4AC0 4AB8 4AB7 4E31 4E67 4ABB 4AB1 1000.0 "Start" -1000.5 "--sync--" sync / 1[56]:[^:]*:The Ruby Weapon:4CF6:/ window 1001,0 -1007.0 "Meteor Project" sync / 1[56]:[^:]*:The Ruby Weapon:4AAA:/ window 1007,5 -1014.2 "Negative Personae" sync / 1[56]:[^:]*:The Ruby Weapon:4ABD:/ -1023.3 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E71:/ -1031.8 "Ruby Claw" sync / 1[56]:[^:]*:Raven's Image:4ABF:/ duration 2.5 -1039.5 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E71:/ -1052.0 "Ruby Claw" sync / 1[56]:[^:]*:Raven's Image:4ABF:/ duration 2.5 -1057.7 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E71:/ -1069.0 "Dalamud Impact" sync / 1[56]:[^:]*:The Ruby Weapon:4AAE:/ -1080.9 "Meteor Project" sync / 1[56]:[^:]*:The Ruby Weapon:4AAA:/ -1094.2 "Magitek Comet" sync / 1[56]:[^:]*:The Ruby Weapon:4AB0:/ -1104.3 "Landing" sync / 1[56]:[^:]*:Comet:4E2B:/ -1114.9 "Magitek Meteor" sync / 1[56]:[^:]*:The Ruby Weapon:4AB2:/ -1115.9 "Burst" sync / 1[56]:[^:]*:Comet:4AB4:/ -1122.4 "Mark II Magitek Comet" sync / 1[56]:[^:]*:The Ruby Weapon:4AB6:/ -1150.5 "Bradamante" sync / 1[56]:[^:]*:The Ruby Weapon:4ABC:/ -1159.7 "Dalamud Impact" sync / 1[56]:[^:]*:The Ruby Weapon:4E51:/ -1171.7 "Meteor Project" sync / 1[56]:[^:]*:The Ruby Weapon:4AAC:/ -1181.9 "Outrage" sync / 1[56]:[^:]*:The Ruby Weapon:4AC8:/ -1192.0 "Outrage" sync / 1[56]:[^:]*:The Ruby Weapon:4AC8:/ -1202.1 "Outrage" sync / 1[56]:[^:]*:The Ruby Weapon:4AC8:/ -1212.2 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E71:/ -1220.5 "Meteor Stream" sync / 1[56]:[^:]*:The Ruby Weapon:4E71:/ -1230.7 "Outrage" sync / 1[56]:[^:]*:The Ruby Weapon:4AC8:/ +1000.5 "--sync--" Ability { id: "4CF6", source: "The Ruby Weapon" } window 1001,0 +1007.0 "Meteor Project" Ability { id: "4AAA", source: "The Ruby Weapon" } window 1007,5 +1014.2 "Negative Personae" Ability { id: "4ABD", source: "The Ruby Weapon" } +1023.3 "Meteor Stream" Ability { id: "4E71", source: "The Ruby Weapon" } +1031.8 "Ruby Claw" Ability { id: "4ABF", source: "Raven's Image" } duration 2.5 +1039.5 "Meteor Stream" Ability { id: "4E71", source: "The Ruby Weapon" } +1052.0 "Ruby Claw" Ability { id: "4ABF", source: "Raven's Image" } duration 2.5 +1057.7 "Meteor Stream" Ability { id: "4E71", source: "The Ruby Weapon" } +1069.0 "Dalamud Impact" Ability { id: "4AAE", source: "The Ruby Weapon" } +1080.9 "Meteor Project" Ability { id: "4AAA", source: "The Ruby Weapon" } +1094.2 "Magitek Comet" Ability { id: "4AB0", source: "The Ruby Weapon" } +1104.3 "Landing" Ability { id: "4E2B", source: "Comet" } +1114.9 "Magitek Meteor" Ability { id: "4AB2", source: "The Ruby Weapon" } +1115.9 "Burst" Ability { id: "4AB4", source: "Comet" } +1122.4 "Mark II Magitek Comet" Ability { id: "4AB6", source: "The Ruby Weapon" } +1150.5 "Bradamante" Ability { id: "4ABC", source: "The Ruby Weapon" } +1159.7 "Dalamud Impact" Ability { id: "4E51", source: "The Ruby Weapon" } +1171.7 "Meteor Project" Ability { id: "4AAC", source: "The Ruby Weapon" } +1181.9 "Outrage" Ability { id: "4AC8", source: "The Ruby Weapon" } +1192.0 "Outrage" Ability { id: "4AC8", source: "The Ruby Weapon" } +1202.1 "Outrage" Ability { id: "4AC8", source: "The Ruby Weapon" } +1212.2 "Meteor Stream" Ability { id: "4E71", source: "The Ruby Weapon" } +1220.5 "Meteor Stream" Ability { id: "4E71", source: "The Ruby Weapon" } +1230.7 "Outrage" Ability { id: "4AC8", source: "The Ruby Weapon" } ### ??? diff --git a/ui/raidboss/data/05-shb/trial/shiva-un.txt b/ui/raidboss/data/05-shb/trial/shiva-un.txt index 2e8317d020..abfcc91985 100644 --- a/ui/raidboss/data/05-shb/trial/shiva-un.txt +++ b/ui/raidboss/data/05-shb/trial/shiva-un.txt @@ -27,205 +27,205 @@ hideall "--sync--" hideall "--Reset--" # Phase 1: Literally Just Autos (100% -> 95%) -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -2.0 "--sync--" sync / 1[56]:[^:]*:Shiva:5365:/ window 10,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +2.0 "--sync--" Ability { id: "5365", source: "Shiva" } window 10,10 # jump to staff -10.0 "--sync--" sync / 1[56]:[^:]*:Shiva:5367:/ window 10,100 jump 100 +10.0 "--sync--" Ability { id: "5367", source: "Shiva" } window 10,100 jump 100 # jump to sword -10.0 "--sync--" sync / 1[56]:[^:]*:Shiva:5366:/ window 10,100 jump 400 +10.0 "--sync--" Ability { id: "5366", source: "Shiva" } window 10,100 jump 400 # Phase 2a: Staff (95% -> 90%) -100.0 "Frost Staff" sync / 1[56]:[^:]*:Shiva:5367:/ -108.1 "Hailstorm" sync / 1[56]:[^:]*:Shiva:536E:/ +100.0 "Frost Staff" Ability { id: "5367", source: "Shiva" } +108.1 "Hailstorm" Ability { id: "536E", source: "Shiva" } -117.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ -127.0 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ +117.6 "Absolute Zero" Ability { id: "5370", source: "Shiva" } +127.0 "Absolute Zero" Ability { id: "5370", source: "Shiva" } -140.5 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ window 8,8 jump 117.6 -149.9 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:5370:/ +140.5 "Absolute Zero" Ability { id: "5370", source: "Shiva" } window 8,8 jump 117.6 +149.9 "Absolute Zero" #Ability { id: "5370", source: "Shiva" } -163.4 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:5370:/ -173.8 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:5370:/ +163.4 "Absolute Zero" #Ability { id: "5370", source: "Shiva" } +173.8 "Absolute Zero" #Ability { id: "5370", source: "Shiva" } # Phase 3a: Sword (90% -> 80%) -200.0 "Melt" sync / 1[56]:[^:]*:Shiva:53AE:/ window 100,0 +200.0 "Melt" Ability { id: "53AE", source: "Shiva" } window 100,0 # This rolls out x4 over 1.5 seconds, so don't sync -207.2 "Icicle Impact" #sync / 1[56]:[^:]*:Shiva:537B:/ -212.3 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:536A:/ +207.2 "Icicle Impact" #Ability { id: "537B", source: "Shiva" } +212.3 "Dreams Of Ice" Ability { id: "536A", source: "Shiva" } -225.0 "Frost Blade" sync / 1[56]:[^:]*:Shiva:5366:/ -230.1 "Icebrand" sync / 1[56]:[^:]*:Shiva:5373:/ +225.0 "Frost Blade" Ability { id: "5366", source: "Shiva" } +230.1 "Icebrand" Ability { id: "5373", source: "Shiva" } -235.4 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:5374:/ -245.0 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:5375:/ -255.4 "Whiteout" sync / 1[56]:[^:]*:Shiva:5376:/ +235.4 "Heavenly Strike" Ability { id: "5374", source: "Shiva" } +245.0 "Glacier Bash" Ability { id: "5375", source: "Shiva" } +255.4 "Whiteout" Ability { id: "5376", source: "Shiva" } -263.9 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:5374:/ -273.5 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:5375:/ -284.5 "Whiteout" sync / 1[56]:[^:]*:Shiva:5376:/ +263.9 "Heavenly Strike" Ability { id: "5374", source: "Shiva" } +273.5 "Glacier Bash" Ability { id: "5375", source: "Shiva" } +284.5 "Whiteout" Ability { id: "5376", source: "Shiva" } -292.8 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:5374:/ window 20,20 jump 235.4 -302.4 "Glacier Bash" #sync / 1[56]:[^:]*:Shiva:5375:/ -312.8 "Whiteout" #sync / 1[56]:[^:]*:Shiva:5376:/ +292.8 "Heavenly Strike" Ability { id: "5374", source: "Shiva" } window 20,20 jump 235.4 +302.4 "Glacier Bash" #Ability { id: "5375", source: "Shiva" } +312.8 "Whiteout" #Ability { id: "5376", source: "Shiva" } -321.3 "Heavenly Strike" #sync / 1[56]:[^:]*:Shiva:5374:/ -330.9 "Glacier Bash" #sync / 1[56]:[^:]*:Shiva:5375:/ -341.9 "Whiteout" #sync / 1[56]:[^:]*:Shiva:5376:/ +321.3 "Heavenly Strike" #Ability { id: "5374", source: "Shiva" } +330.9 "Glacier Bash" #Ability { id: "5375", source: "Shiva" } +341.9 "Whiteout" #Ability { id: "5376", source: "Shiva" } # Jump to adds phase from 1a/2a -350.0 "--sync--" sync / 1[56]:[^:]*:Shiva:5372:/ window 350,0 jump 800 +350.0 "--sync--" Ability { id: "5372", source: "Shiva" } window 350,0 jump 800 # Phase 2b: Sword (95% -> 90%) -400.0 "Frost Blade" sync / 1[56]:[^:]*:Shiva:5366:/ -405.1 "Icebrand" sync / 1[56]:[^:]*:Shiva:5373:/ +400.0 "Frost Blade" Ability { id: "5366", source: "Shiva" } +405.1 "Icebrand" Ability { id: "5373", source: "Shiva" } -410.3 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:5374:/ -419.9 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:5375:/ -430.3 "Whiteout" sync / 1[56]:[^:]*:Shiva:5376:/ +410.3 "Heavenly Strike" Ability { id: "5374", source: "Shiva" } +419.9 "Glacier Bash" Ability { id: "5375", source: "Shiva" } +430.3 "Whiteout" Ability { id: "5376", source: "Shiva" } -438.8 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:5374:/ -448.4 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:5375:/ -458.8 "Whiteout" sync / 1[56]:[^:]*:Shiva:5376:/ +438.8 "Heavenly Strike" Ability { id: "5374", source: "Shiva" } +448.4 "Glacier Bash" Ability { id: "5375", source: "Shiva" } +458.8 "Whiteout" Ability { id: "5376", source: "Shiva" } -467.2 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:5374:/ window 20,20 jump 410.3 -477.3 "Glacier Bash" #sync / 1[56]:[^:]*:Shiva:5375:/ -487.7 "Whiteout" #sync / 1[56]:[^:]*:Shiva:5376:/ +467.2 "Heavenly Strike" Ability { id: "5374", source: "Shiva" } window 20,20 jump 410.3 +477.3 "Glacier Bash" #Ability { id: "5375", source: "Shiva" } +487.7 "Whiteout" #Ability { id: "5376", source: "Shiva" } -496.2 "Heavenly Strike" #sync / 1[56]:[^:]*:Shiva:5374:/ -505.8 "Glacier Bash" #sync / 1[56]:[^:]*:Shiva:5375:/ -516.8 "Whiteout" #sync / 1[56]:[^:]*:Shiva:5376:/ +496.2 "Heavenly Strike" #Ability { id: "5374", source: "Shiva" } +505.8 "Glacier Bash" #Ability { id: "5375", source: "Shiva" } +516.8 "Whiteout" #Ability { id: "5376", source: "Shiva" } # Phase 3b: Staff (90% -> 80%) -600.0 "Melt" sync / 1[56]:[^:]*:Shiva:5372:/ window 200,0 +600.0 "Melt" Ability { id: "5372", source: "Shiva" } window 200,0 # This rolls out x4 over 1.5 seconds, so don't sync -607.2 "Icicle Impact" #sync / 1[56]:[^:]*:Shiva:537B:/ -612.3 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:536A:/ +607.2 "Icicle Impact" #Ability { id: "537B", source: "Shiva" } +612.3 "Dreams Of Ice" Ability { id: "536A", source: "Shiva" } -625.0 "Frost Staff" sync / 1[56]:[^:]*:Shiva:5367:/ -633.1 "Hailstorm" sync / 1[56]:[^:]*:Shiva:536E:/ +625.0 "Frost Staff" Ability { id: "5367", source: "Shiva" } +633.1 "Hailstorm" Ability { id: "536E", source: "Shiva" } -642.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ -652.0 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ +642.6 "Absolute Zero" Ability { id: "5370", source: "Shiva" } +652.0 "Absolute Zero" Ability { id: "5370", source: "Shiva" } -665.5 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ window 8,8 jump 642.6 -674.9 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:5370:/ +665.5 "Absolute Zero" Ability { id: "5370", source: "Shiva" } window 8,8 jump 642.6 +674.9 "Absolute Zero" #Ability { id: "5370", source: "Shiva" } -688.4 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:5370:/ -698.8 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:5370:/ +688.4 "Absolute Zero" #Ability { id: "5370", source: "Shiva" } +698.8 "Absolute Zero" #Ability { id: "5370", source: "Shiva" } # Jump to adds phase from 1b/2b -750.0 "--sync--" sync / 1[56]:[^:]*:Shiva:53AE:/ window 350,0 jump 801 +750.0 "--sync--" Ability { id: "53AE", source: "Shiva" } window 350,0 jump 801 # Phase 4: Adds -800.0 "--sync--" #sync / 1[56]:[^:]*:Shiva:5372:/ -801.0 "--sync--" #sync / 1[56]:[^:]*:Shiva:53AE:/ +800.0 "--sync--" #Ability { id: "5372", source: "Shiva" } +801.0 "--sync--" #Ability { id: "53AE", source: "Shiva" } # If you push *really* fast and skip a 3a/3b weapon phase, you'll miss the melt jump. # So, fix that up with a combatant sync here. -806.6 "--adds targetable--" sync / 03:........:Ice Soldier:/ window 807,10 -807.6 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:536A:/ -813.2 "Frost Blade" sync / 1[56]:[^:]*:Shiva:5366:/ -818.5 "Icebrand" sync / 1[56]:[^:]*:Shiva:5373:/ -828.0 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:5375:/ -837.5 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:5374:/ +806.6 "--adds targetable--" AddedCombatant { name: "Ice Soldier" } window 807,10 +807.6 "Dreams Of Ice" Ability { id: "536A", source: "Shiva" } +813.2 "Frost Blade" Ability { id: "5366", source: "Shiva" } +818.5 "Icebrand" Ability { id: "5373", source: "Shiva" } +828.0 "Glacier Bash" Ability { id: "5375", source: "Shiva" } +837.5 "Heavenly Strike" Ability { id: "5374", source: "Shiva" } # Diamond Dust Cutscene -854.4 "Melt" sync / 1[56]:[^:]*:Shiva:5372:/ window 60,10 +854.4 "Melt" Ability { id: "5372", source: "Shiva" } window 60,10 855.5 "--untargetable--" -866.7 "--frozen--" sync / 1[56]:[^:]*:Shiva:53AC:/ window 900,50 -871.6 "Diamond Dust" sync / 1[56]:[^:]*:Shiva:536C:/ +866.7 "--frozen--" Ability { id: "53AC", source: "Shiva" } window 900,50 +871.6 "Diamond Dust" Ability { id: "536C", source: "Shiva" } 878.7 "--targetable--" -878.9 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:536A:/ +878.9 "Dreams Of Ice" Ability { id: "536A", source: "Shiva" } # Phase 5: Post-Cutscene Staff # Unlike phase 7a staff, this one can only have a single optional Permafrost. -885.8 "Frost Staff" sync / 1[56]:[^:]*:Shiva:5367:/ -888.1 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:537B:/ -893.9 "Hailstorm" sync / 1[56]:[^:]*:Shiva:536E:/ -896.0 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:537B:/ -908.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ -920.2 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ -925.4 "Melt" sync / 1[56]:[^:]*:Shiva:53AE:/ -932.6 "Icicle Impact (circle)" duration 4 #sync / 1[56]:[^:]*:Shiva:537B:/ -935.5 "Permafrost?" sync / 1[56]:[^:]*:Shiva:5369:/ -939.7 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:536A:/ window 20,10 +885.8 "Frost Staff" Ability { id: "5367", source: "Shiva" } +888.1 "Icicle Impact (cross)" #Ability { id: "537B", source: "Shiva" } +893.9 "Hailstorm" Ability { id: "536E", source: "Shiva" } +896.0 "Icicle Impact (cross)" #Ability { id: "537B", source: "Shiva" } +908.6 "Absolute Zero" Ability { id: "5370", source: "Shiva" } +920.2 "Absolute Zero" Ability { id: "5370", source: "Shiva" } +925.4 "Melt" Ability { id: "53AE", source: "Shiva" } +932.6 "Icicle Impact (circle)" duration 4 #Ability { id: "537B", source: "Shiva" } +935.5 "Permafrost?" Ability { id: "5369", source: "Shiva" } +939.7 "Dreams Of Ice" Ability { id: "536A", source: "Shiva" } window 20,10 # Phase 6: Bow -942.8 "Frost Bow" sync / 1[56]:[^:]*:Shiva:5368:/ -947.9 "Glass Dance" sync / 1[56]:[^:]*:Shiva:5378:/ -970.5 "Avalanche" sync / 1[56]:[^:]*:Shiva:5379:/ -974.6 "Permafrost?" sync / 1[56]:[^:]*:Shiva:5369:/ -986.1 "Melt" sync / 1[56]:[^:]*:Shiva:53AD:/ window 20,20 -988.3 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:536A:/ +942.8 "Frost Bow" Ability { id: "5368", source: "Shiva" } +947.9 "Glass Dance" Ability { id: "5378", source: "Shiva" } +970.5 "Avalanche" Ability { id: "5379", source: "Shiva" } +974.6 "Permafrost?" Ability { id: "5369", source: "Shiva" } +986.1 "Melt" Ability { id: "53AD", source: "Shiva" } window 20,20 +988.3 "Dreams Of Ice" Ability { id: "536A", source: "Shiva" } -996.2 "Frost Staff?" sync / 1[56]:[^:]*:Shiva:5367:/ window 100,50 jump 1096.2 -996.2 "Frost Blade?" sync / 1[56]:[^:]*:Shiva:5366:/ window 100,50 jump 1296.2 +996.2 "Frost Staff?" Ability { id: "5367", source: "Shiva" } window 100,50 jump 1096.2 +996.2 "Frost Blade?" Ability { id: "5366", source: "Shiva" } window 100,50 jump 1296.2 # Phase 7a: Staff -1096.2 "Frost Staff" sync / 1[56]:[^:]*:Shiva:5367:/ -1098.1 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:537B:/ -1104.3 "Hailstorm" sync / 1[56]:[^:]*:Shiva:536E:/ -1106.1 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:537B:/ -1109.0 "Permafrost?" sync / 1[56]:[^:]*:Shiva:5369:/ -1117.8 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ window 20,2.5 -1125.6 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ -1133.0 "Absolute Zero" sync / 1[56]:[^:]*:Shiva:5370:/ +1096.2 "Frost Staff" Ability { id: "5367", source: "Shiva" } +1098.1 "Icicle Impact (cross)" #Ability { id: "537B", source: "Shiva" } +1104.3 "Hailstorm" Ability { id: "536E", source: "Shiva" } +1106.1 "Icicle Impact (cross)" #Ability { id: "537B", source: "Shiva" } +1109.0 "Permafrost?" Ability { id: "5369", source: "Shiva" } +1117.8 "Absolute Zero" Ability { id: "5370", source: "Shiva" } window 20,2.5 +1125.6 "Absolute Zero" Ability { id: "5370", source: "Shiva" } +1133.0 "Absolute Zero" Ability { id: "5370", source: "Shiva" } # Note: this last absolute zero can either happen at 1135.8 or 1140.4 depending on # where the permafrost shows up. So, don't sync it. -1138.0 "Absolute Zero" #sync / 1[56]:[^:]*:Shiva:5370:/ -1140.0 "Permafrost?" sync / 1[56]:[^:]*:Shiva:5369:/ -1149.4 "Melt" sync / 1[56]:[^:]*:Shiva:53AE:/ window 20,20 -1156.6 "Icicle Impact (circle)" duration 4 #sync / 1[56]:[^:]*:Shiva:537B:/ -1159.5 "Permafrost?" sync / 1[56]:[^:]*:Shiva:5369:/ -1163.7 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:536A:/ window 20,20 +1138.0 "Absolute Zero" #Ability { id: "5370", source: "Shiva" } +1140.0 "Permafrost?" Ability { id: "5369", source: "Shiva" } +1149.4 "Melt" Ability { id: "53AE", source: "Shiva" } window 20,20 +1156.6 "Icicle Impact (circle)" duration 4 #Ability { id: "537B", source: "Shiva" } +1159.5 "Permafrost?" Ability { id: "5369", source: "Shiva" } +1163.7 "Dreams Of Ice" Ability { id: "536A", source: "Shiva" } window 20,20 -1166.9 "Frost Bow" sync / 1[56]:[^:]*:Shiva:5368:/ window 100,20 jump 942.8 -1172.0 "Glass Dance" #sync / 1[56]:[^:]*:Shiva:5378:/ -1194.6 "Avalanche" #sync / 1[56]:[^:]*:Shiva:5379:/ -1198.7 "Permafrost?" #sync / 1[56]:[^:]*:Shiva:5369:/ -1210.2 "Melt" #sync / 1[56]:[^:]*:Shiva:53AD:/ window 20,20 -1212.4 "Dreams Of Ice" #sync / 1[56]:[^:]*:Shiva:536A:/ +1166.9 "Frost Bow" Ability { id: "5368", source: "Shiva" } window 100,20 jump 942.8 +1172.0 "Glass Dance" #Ability { id: "5378", source: "Shiva" } +1194.6 "Avalanche" #Ability { id: "5379", source: "Shiva" } +1198.7 "Permafrost?" #Ability { id: "5369", source: "Shiva" } +1210.2 "Melt" #Ability { id: "53AD", source: "Shiva" } window 20,20 +1212.4 "Dreams Of Ice" #Ability { id: "536A", source: "Shiva" } # Phase 7b: Sword -1296.2 "Frost Blade" sync / 1[56]:[^:]*:Shiva:5366:/ -1298.5 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:537B:/ -1302.3 "Icebrand" sync / 1[56]:[^:]*:Shiva:5373:/ -1306.4 "Icicle Impact (cross)" #sync / 1[56]:[^:]*:Shiva:537B:/ -1306.4 "Permafrost?" sync / 1[56]:[^:]*:Shiva:5369:/ -1316.8 "--sync--" sync / 14:[^:]*:Shiva:5375:/ window 10,10 -1319.0 "Glacier Bash" sync / 1[56]:[^:]*:Shiva:5375:/ -1329.4 "Whiteout" sync / 1[56]:[^:]*:Shiva:5376:/ -1334.7 "Heavenly Strike" sync / 1[56]:[^:]*:Shiva:5374:/ -1338.8 "Permafrost?" sync / 1[56]:[^:]*:Shiva:5369:/ -1350.7 "Melt" sync / 1[56]:[^:]*:Shiva:5372:/ window 20,10 -1357.9 "Icicle Impact (circle)" duration 4 #sync / 1[56]:[^:]*:Shiva:537B:/ -1360.8 "Permafrost?" sync / 1[56]:[^:]*:Shiva:5369:/ -1365.0 "Dreams Of Ice" sync / 1[56]:[^:]*:Shiva:536A:/ window 20,20 - -1368.2 "Frost Bow" sync / 1[56]:[^:]*:Shiva:5368:/ window 100,20 jump 942.8 -1373.3 "Glass Dance" #sync / 1[56]:[^:]*:Shiva:5378:/ -1395.9 "Avalanche" #sync / 1[56]:[^:]*:Shiva:5379:/ -1400.0 "Permafrost?" #sync / 1[56]:[^:]*:Shiva:5369:/ -1411.5 "Melt" #sync / 1[56]:[^:]*:Shiva:53AD:/ window 20,20 -1413.7 "Dreams Of Ice" #sync / 1[56]:[^:]*:Shiva:536A:/ +1296.2 "Frost Blade" Ability { id: "5366", source: "Shiva" } +1298.5 "Icicle Impact (cross)" #Ability { id: "537B", source: "Shiva" } +1302.3 "Icebrand" Ability { id: "5373", source: "Shiva" } +1306.4 "Icicle Impact (cross)" #Ability { id: "537B", source: "Shiva" } +1306.4 "Permafrost?" Ability { id: "5369", source: "Shiva" } +1316.8 "--sync--" StartsUsing { id: "5375", source: "Shiva" } window 10,10 +1319.0 "Glacier Bash" Ability { id: "5375", source: "Shiva" } +1329.4 "Whiteout" Ability { id: "5376", source: "Shiva" } +1334.7 "Heavenly Strike" Ability { id: "5374", source: "Shiva" } +1338.8 "Permafrost?" Ability { id: "5369", source: "Shiva" } +1350.7 "Melt" Ability { id: "5372", source: "Shiva" } window 20,10 +1357.9 "Icicle Impact (circle)" duration 4 #Ability { id: "537B", source: "Shiva" } +1360.8 "Permafrost?" Ability { id: "5369", source: "Shiva" } +1365.0 "Dreams Of Ice" Ability { id: "536A", source: "Shiva" } window 20,20 + +1368.2 "Frost Bow" Ability { id: "5368", source: "Shiva" } window 100,20 jump 942.8 +1373.3 "Glass Dance" #Ability { id: "5378", source: "Shiva" } +1395.9 "Avalanche" #Ability { id: "5379", source: "Shiva" } +1400.0 "Permafrost?" #Ability { id: "5369", source: "Shiva" } +1411.5 "Melt" #Ability { id: "53AD", source: "Shiva" } window 20,20 +1413.7 "Dreams Of Ice" #Ability { id: "536A", source: "Shiva" } # Enrage #1165.6 "--untargetable--" -#1176.7 "--sync--" sync / 1[56]:[^:]*:Shiva:53AC:/ -#1176.7 "Diamond Dust" sync / 1[56]:[^:]*:Shiva:536B:/ -#1181.6 "Diamond Dust" sync / 1[56]:[^:]*:Shiva:536C:/ +#1176.7 "--sync--" Ability { id: "53AC", source: "Shiva" } +#1176.7 "Diamond Dust" Ability { id: "536B", source: "Shiva" } +#1181.6 "Diamond Dust" Ability { id: "536C", source: "Shiva" } diff --git a/ui/raidboss/data/05-shb/trial/titan-un.txt b/ui/raidboss/data/05-shb/trial/titan-un.txt index 14f988ba3d..a9711cd309 100644 --- a/ui/raidboss/data/05-shb/trial/titan-un.txt +++ b/ui/raidboss/data/05-shb/trial/titan-un.txt @@ -10,21 +10,21 @@ hideall "--sync--" ### Phase 1: 100->85% 0.0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 - -10.0 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ window 10,10 -18.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ window 20,5 -22.3 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -27.5 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:58F8:/ -37.3 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -41.4 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -48.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ -55.7 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ - -62.0 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ window 15,15 jump 10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 + +10.0 "Landslide" Ability { id: "58FA", source: "Titan" } window 10,10 +18.7 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } window 20,5 +22.3 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +27.5 "Tumult x4" duration 3.5 #Ability { id: "58F8", source: "Titan" } +37.3 "Landslide" Ability { id: "58FA", source: "Titan" } +41.4 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +48.0 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } +55.7 "Mountain Buster" Ability { id: "58F7", source: "Titan" } + +62.0 "Landslide" Ability { id: "58FA", source: "Titan" } window 15,15 jump 10 70.2 "Weight Of The Land" 74.3 "Mountain Buster" -79.5 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:58F8:/ +79.5 "Tumult x4" duration 3.5 #Ability { id: "58F8", source: "Titan" } 89.3 "Landslide" 93.4 "Mountain Buster" 99.5 "Weight Of The Land" @@ -32,38 +32,38 @@ hideall "--sync--" # Phase 2: 85%->55% -200.0 "--sync--" sync / 14:[^:]*:Titan:58FF:/ window 200,0 -203.0 "Geocrush" sync / 1[56]:[^:]*:Titan:58FF:/ - -212.6 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -216.7 "Rock Throw" sync / 1[56]:[^:]*:Titan:5ADD:/ duration 21.5 -220.8 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -229.8 "Upheaval" sync / 1[56]:[^:]*:Titan:58F9:/ -234.8 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -242.0 "Tumult x4" duration 3.5 # sync / 1[56]:[^:]*:Titan:58F8:/ -251.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ window 15,15 -254.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -262.0 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -271.7 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ -276.8 "Bury (one side)" sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -278.0 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -287.4 "Burst" sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ - -288.1 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -292.2 "Rock Throw" sync / 1[56]:[^:]*:Titan:5ADD:/ duration 21.5 -296.3 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -305.4 "Upheaval" sync / 1[56]:[^:]*:Titan:58F9:/ -310.4 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -317.5 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:58F8:/ -326.5 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ window 15,15 -330.1 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -337.3 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -347.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ -351.7 "Bury (clock)" duration 4.2 #sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -353.6 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -360.9 "Burst" duration 4.2 #sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ - -363.9 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ window 20,20 jump 212.6 +200.0 "--sync--" StartsUsing { id: "58FF", source: "Titan" } window 200,0 +203.0 "Geocrush" Ability { id: "58FF", source: "Titan" } + +212.6 "Landslide" Ability { id: "58FA", source: "Titan" } +216.7 "Rock Throw" Ability { id: "5ADD", source: "Titan" } duration 21.5 +220.8 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +229.8 "Upheaval" Ability { id: "58F9", source: "Titan" } +234.8 "Landslide" Ability { id: "58FA", source: "Titan" } +242.0 "Tumult x4" duration 3.5 # Ability { id: "58F8", source: "Titan" } +251.0 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } window 15,15 +254.6 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +262.0 "Landslide" Ability { id: "58FA", source: "Titan" } +271.7 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } +276.8 "Bury (one side)" Ability { id: "5AFB", source: "Bomb Boulder" } +278.0 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +287.4 "Burst" Ability { id: "5ADF", source: "Bomb Boulder" } + +288.1 "Landslide" Ability { id: "58FA", source: "Titan" } +292.2 "Rock Throw" Ability { id: "5ADD", source: "Titan" } duration 21.5 +296.3 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +305.4 "Upheaval" Ability { id: "58F9", source: "Titan" } +310.4 "Landslide" Ability { id: "58FA", source: "Titan" } +317.5 "Tumult x4" duration 3.5 #Ability { id: "58F8", source: "Titan" } +326.5 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } window 15,15 +330.1 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +337.3 "Landslide" Ability { id: "58FA", source: "Titan" } +347.0 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } +351.7 "Bury (clock)" duration 4.2 #Ability { id: "5AFB", source: "Bomb Boulder" } +353.6 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +360.9 "Burst" duration 4.2 #Ability { id: "5ADF", source: "Bomb Boulder" } + +363.9 "Landslide" Ability { id: "58FA", source: "Titan" } window 20,20 jump 212.6 368.0 "Rock Throw" 372.1 "Mountain Buster" 381.1 "Upheaval" @@ -78,71 +78,71 @@ hideall "--sync--" ### Phase 3: Heart Phase (at 55%) -500.0 "--sync--" sync / 14:[^:]*:Titan:58FF:/ window 299,0 -503.0 "Geocrush" sync / 1[56]:[^:]*:Titan:58FF:/ -515.6 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ -521.2 "Rock Throw" sync / 1[56]:[^:]*:Titan:5ADD:/ duration 21.5 -526.0 "Rock Buster" sync / 1[56]:[^:]*:Titan:58F6:/ -533.0 "Upheaval" sync / 1[56]:[^:]*:Titan:58F9:/ -538.0 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -544.0 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:58F8:/ -553.1 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ window 15,15 -561.8 "Rock Buster" sync / 1[56]:[^:]*:Titan:58F6:/ -563.8 "Bury (clock)" duration 3 # sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -570.8 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -572.9 "Burst" duration 3 # sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ -574.9 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:58F8:/ -583.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ +500.0 "--sync--" StartsUsing { id: "58FF", source: "Titan" } window 299,0 +503.0 "Geocrush" Ability { id: "58FF", source: "Titan" } +515.6 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } +521.2 "Rock Throw" Ability { id: "5ADD", source: "Titan" } duration 21.5 +526.0 "Rock Buster" Ability { id: "58F6", source: "Titan" } +533.0 "Upheaval" Ability { id: "58F9", source: "Titan" } +538.0 "Landslide" Ability { id: "58FA", source: "Titan" } +544.0 "Tumult x4" duration 3.5 #Ability { id: "58F8", source: "Titan" } +553.1 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } window 15,15 +561.8 "Rock Buster" Ability { id: "58F6", source: "Titan" } +563.8 "Bury (clock)" duration 3 # Ability { id: "5AFB", source: "Bomb Boulder" } +570.8 "Landslide" Ability { id: "58FA", source: "Titan" } +572.9 "Burst" duration 3 # Ability { id: "5ADF", source: "Bomb Boulder" } +574.9 "Tumult x4" duration 3.5 #Ability { id: "58F8", source: "Titan" } +583.0 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } 593.0 "--untargetable--" ### Phase 4 -700.0 "Earthen Fury" sync / 1[56]:[^:]*:Titan:5900:/ window 700,0 +700.0 "Earthen Fury" Ability { id: "5900", source: "Titan" } window 700,0 713.1 "Gaoler Adds (E/W)" -715.8 "Gaoler Tumult" #sync / 1[56]:[^:]*:Granite Gaoler:5903:/ -716.3 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ - -723.3 "Bury x4" #sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -725.8 "Bury x4" #sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -730.2 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -732.5 "Burst x4" #sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ -734.9 "Burst x4" #sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ -735.4 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -739.8 "Gaoler Landslide?" #sync / 1[56]:[^:]*:Granite Gaoler:5902:/ -744.0 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ - -749.7 "Rock Throw" sync / 1[56]:[^:]*:Titan:5ADD:/ duration 21.5 -753.9 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ -762.9 "Upheaval" sync / 1[56]:[^:]*:Titan:58F9:/ -767.9 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -779.0 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ window 15,15 -783.2 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:58F8:/ -792.2 "Weight Of The Land 1" #sync / 1[56]:[^:]*:Titan:58FE:/ -794.7 "Weight Of The Land 2" #sync / 1[56]:[^:]*:Titan:58FE:/ -799.9 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ - -804.1 "Bury (row 1)" #sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -805.0 "Bury (row 2)" #sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -806.1 "Bury (row 3)" #sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -811.0 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ -813.1 "Burst 1" #sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ -814.6 "Burst 2" #sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ -816.1 "Burst 3" #sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ -819.2 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ - -832.7 "Bury (all)" sync / 1[56]:[^:]*:Bomb Boulder:5AFB:/ -837.0 "Tumult x4" duration 3.5 #sync / 1[56]:[^:]*:Titan:58F8:/ -845.9 "Weight Of The Land" sync / 1[56]:[^:]*:Titan:58FE:/ +715.8 "Gaoler Tumult" #Ability { id: "5903", source: "Granite Gaoler" } +716.3 "Mountain Buster" Ability { id: "58F7", source: "Titan" } + +723.3 "Bury x4" #Ability { id: "5AFB", source: "Bomb Boulder" } +725.8 "Bury x4" #Ability { id: "5AFB", source: "Bomb Boulder" } +730.2 "Landslide" Ability { id: "58FA", source: "Titan" } +732.5 "Burst x4" #Ability { id: "5ADF", source: "Bomb Boulder" } +734.9 "Burst x4" #Ability { id: "5ADF", source: "Bomb Boulder" } +735.4 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +739.8 "Gaoler Landslide?" #Ability { id: "5902", source: "Granite Gaoler" } +744.0 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } + +749.7 "Rock Throw" Ability { id: "5ADD", source: "Titan" } duration 21.5 +753.9 "Mountain Buster" Ability { id: "58F7", source: "Titan" } +762.9 "Upheaval" Ability { id: "58F9", source: "Titan" } +767.9 "Landslide" Ability { id: "58FA", source: "Titan" } +779.0 "Mountain Buster" Ability { id: "58F7", source: "Titan" } window 15,15 +783.2 "Tumult x4" duration 3.5 #Ability { id: "58F8", source: "Titan" } +792.2 "Weight Of The Land 1" #Ability { id: "58FE", source: "Titan" } +794.7 "Weight Of The Land 2" #Ability { id: "58FE", source: "Titan" } +799.9 "Mountain Buster" Ability { id: "58F7", source: "Titan" } + +804.1 "Bury (row 1)" #Ability { id: "5AFB", source: "Bomb Boulder" } +805.0 "Bury (row 2)" #Ability { id: "5AFB", source: "Bomb Boulder" } +806.1 "Bury (row 3)" #Ability { id: "5AFB", source: "Bomb Boulder" } +811.0 "Landslide" Ability { id: "58FA", source: "Titan" } +813.1 "Burst 1" #Ability { id: "5ADF", source: "Bomb Boulder" } +814.6 "Burst 2" #Ability { id: "5ADF", source: "Bomb Boulder" } +816.1 "Burst 3" #Ability { id: "5ADF", source: "Bomb Boulder" } +819.2 "Mountain Buster" Ability { id: "58F7", source: "Titan" } + +832.7 "Bury (all)" Ability { id: "5AFB", source: "Bomb Boulder" } +837.0 "Tumult x4" duration 3.5 #Ability { id: "58F8", source: "Titan" } +845.9 "Weight Of The Land" Ability { id: "58FE", source: "Titan" } 852.5 "--untargetable--" -855.1 "Burst" sync / 1[56]:[^:]*:Bomb Boulder:5ADF:/ -856.7 "Geocrush" sync / 1[56]:[^:]*:Titan:58FF:/ +855.1 "Burst" Ability { id: "5ADF", source: "Bomb Boulder" } +856.7 "Geocrush" Ability { id: "58FF", source: "Titan" } 857.1 "--targetable--" -862.4 "Landslide" sync / 1[56]:[^:]*:Titan:58FA:/ +862.4 "Landslide" Ability { id: "58FA", source: "Titan" } # loop 874.0 "Gaoler Adds (E/W)" -876.7 "Gaoler Tumult" #sync / 1[56]:[^:]*:Granite Gaoler:5903:/ -877.2 "Mountain Buster" sync / 1[56]:[^:]*:Titan:58F7:/ window 40,40 jump 716.3 +876.7 "Gaoler Tumult" #Ability { id: "5903", source: "Granite Gaoler" } +877.2 "Mountain Buster" Ability { id: "58F7", source: "Titan" } window 40,40 jump 716.3 884.2 "Bury x4" 886.7 "Bury x4" @@ -155,8 +155,8 @@ hideall "--sync--" ### Enrage -1000.0 "--sync--" sync / 14:[^:]*:Titan:5901:/ window 1000,1000 -1010.0 "Upheaval Enrage" #sync / 1[56]:[^:]*:Titan:5901:/ -1022.0 "Upheaval Enrage" #sync / 1[56]:[^:]*:Titan:5901:/ -1034.0 "Upheaval Enrage" #sync / 1[56]:[^:]*:Titan:5901:/ -1046.0 "Upheaval Enrage" #sync / 1[56]:[^:]*:Titan:5901:/ +1000.0 "--sync--" StartsUsing { id: "5901", source: "Titan" } window 1000,1000 +1010.0 "Upheaval Enrage" #Ability { id: "5901", source: "Titan" } +1022.0 "Upheaval Enrage" #Ability { id: "5901", source: "Titan" } +1034.0 "Upheaval Enrage" #Ability { id: "5901", source: "Titan" } +1046.0 "Upheaval Enrage" #Ability { id: "5901", source: "Titan" } diff --git a/ui/raidboss/data/05-shb/trial/titania-ex.ts b/ui/raidboss/data/05-shb/trial/titania-ex.ts index 070f4ebc76..9b58176bfe 100644 --- a/ui/raidboss/data/05-shb/trial/titania-ex.ts +++ b/ui/raidboss/data/05-shb/trial/titania-ex.ts @@ -138,7 +138,9 @@ const triggerSet: TriggerSet = { outputStrings: { breakTether: { en: 'Break Tether (w/${player})', + de: 'Verbindungen brechen (mit ${player})', cn: '拉断连线 (与${player})', + ko: '선 끊기 (+${player})', }, }, }, diff --git a/ui/raidboss/data/05-shb/trial/titania-ex.txt b/ui/raidboss/data/05-shb/trial/titania-ex.txt index e07053376c..a09bee5131 100644 --- a/ui/raidboss/data/05-shb/trial/titania-ex.txt +++ b/ui/raidboss/data/05-shb/trial/titania-ex.txt @@ -6,113 +6,113 @@ hideall "--Reset--" hideall "--sync--" ### Phase 1: single mechanics -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -8.0 "--sync--" sync / 14:[^:]*:Titania:3D4B:/ window 20,20 -12.0 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D4B:/ -26.0 "Phantom Rune Out" sync / 1[56]:[^:]*:Titania:3D4C:/ -37.0 "Mist Rune" sync / 1[56]:[^:]*:Titania:3D45:/ -55.5 "Flame Rune" sync / 1[56]:[^:]*:Titania:3D47:/ -69.7 "Flame Hammer 1" #sync / 1[56]:[^:]*:Spirit of Flame:3D48:/ -72.0 "Flame Hammer 2" #sync / 1[56]:[^:]*:Spirit of Flame:3D48:/ -78.6 "Divination Rune" sync / 1[56]:[^:]*:Titania:3D4A:/ -87.6 "Chain Of Brambles" sync / 1[56]:[^:]*:Titania:42D7:/ -103.9 "Phantom Rune In" sync / 1[56]:[^:]*:Titania:3D4D:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +8.0 "--sync--" StartsUsing { id: "3D4B", source: "Titania" } window 20,20 +12.0 "Bright Sabbath" Ability { id: "3D4B", source: "Titania" } +26.0 "Phantom Rune Out" Ability { id: "3D4C", source: "Titania" } +37.0 "Mist Rune" Ability { id: "3D45", source: "Titania" } +55.5 "Flame Rune" Ability { id: "3D47", source: "Titania" } +69.7 "Flame Hammer 1" #Ability { id: "3D48", source: "Spirit of Flame" } +72.0 "Flame Hammer 2" #Ability { id: "3D48", source: "Spirit of Flame" } +78.6 "Divination Rune" Ability { id: "3D4A", source: "Titania" } +87.6 "Chain Of Brambles" Ability { id: "42D7", source: "Titania" } +103.9 "Phantom Rune In" Ability { id: "3D4D", source: "Titania" } # Mini-phase skip here at least from Divination Rune to here -110.9 "--sync--" sync / 14:[^:]*:Titania:3D30:/ window 200,10 -114.9 "Midsummer Night's Dream" sync / 1[56]:[^:]*:Titania:3D30:/ -128.2 "--center--" sync / 1[56]:[^:]*:Titania:3D28:/ -133.8 "Thunder Rune 1" sync / 1[56]:[^:]*:Titania:3D29:/ window 5,1 -139.3 "Thunder Rune 2" #sync / 1[56]:[^:]*:Titania:3D29:/ -144.8 "Thunder Rune 3" #sync / 1[56]:[^:]*:Titania:3D29:/ -150.3 "Thunder Rune 4" #sync / 1[56]:[^:]*:Titania:3D29:/ -155.8 "Thunder Rune 5" #sync / 1[56]:[^:]*:Titania:3D29:/ -161.4 "Thunder Rune 6" sync / 1[56]:[^:]*:Titania:3F2A:/ window 15,15 -172.4 "Fae Light" sync / 1[56]:[^:]*:Titania:3D2C:/ -175.4 "Fae Light 1" #sync / 1[56]:[^:]*:Titania:3D2D:/ -177.4 "Fae Light 2" #sync / 1[56]:[^:]*:Titania:3D2D:/ -179.6 "Fae Light 3" #sync / 1[56]:[^:]*:Titania:3D2D:/ -188.6 "Growth Rune" sync / 1[56]:[^:]*:Titania:3D2E:/ -194.6 "Chain Of Brambles" sync / 1[56]:[^:]*:Titania:42D7:/ -213.8 "Divination Rune" sync / 1[56]:[^:]*:Titania:3D4A:/ -222.8 "Frost Rune" sync / 1[56]:[^:]*:Titania:3D2A:/ -230.8 "Frost Rune Middle" #sync / 1[56]:[^:]*:Titania:3D2B:/ -239.8 "Uplift" sync / 1[56]:[^:]*:Titania:421E:/ -246.8 "Phantom Rune In" sync / 1[56]:[^:]*:Titania:3D4D:/ +110.9 "--sync--" StartsUsing { id: "3D30", source: "Titania" } window 200,10 +114.9 "Midsummer Night's Dream" Ability { id: "3D30", source: "Titania" } +128.2 "--center--" Ability { id: "3D28", source: "Titania" } +133.8 "Thunder Rune 1" Ability { id: "3D29", source: "Titania" } window 5,1 +139.3 "Thunder Rune 2" #Ability { id: "3D29", source: "Titania" } +144.8 "Thunder Rune 3" #Ability { id: "3D29", source: "Titania" } +150.3 "Thunder Rune 4" #Ability { id: "3D29", source: "Titania" } +155.8 "Thunder Rune 5" #Ability { id: "3D29", source: "Titania" } +161.4 "Thunder Rune 6" Ability { id: "3F2A", source: "Titania" } window 15,15 +172.4 "Fae Light" Ability { id: "3D2C", source: "Titania" } +175.4 "Fae Light 1" #Ability { id: "3D2D", source: "Titania" } +177.4 "Fae Light 2" #Ability { id: "3D2D", source: "Titania" } +179.6 "Fae Light 3" #Ability { id: "3D2D", source: "Titania" } +188.6 "Growth Rune" Ability { id: "3D2E", source: "Titania" } +194.6 "Chain Of Brambles" Ability { id: "42D7", source: "Titania" } +213.8 "Divination Rune" Ability { id: "3D4A", source: "Titania" } +222.8 "Frost Rune" Ability { id: "3D2A", source: "Titania" } +230.8 "Frost Rune Middle" #Ability { id: "3D2B", source: "Titania" } +239.8 "Uplift" Ability { id: "421E", source: "Titania" } +246.8 "Phantom Rune In" Ability { id: "3D4D", source: "Titania" } ### Phase 2a: smol adds # Note: this can skip part of the prior phase with enough dps. -256.4 "--untargetable--" sync / 1[56]:[^:]*:Titania:3D31:/ window 300,0 +256.4 "--untargetable--" Ability { id: "3D31", source: "Titania" } window 300,0 258.8 "--targetable--" -271.0 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D38:/ -271.1 "Gentle Breeze" sync / 1[56]:[^:]*:Puck:3F82:/ -273.4 "Pease" sync / 1[56]:[^:]*:Peaseblossom:3D35:/ -273.4 "Peasebomb" sync / 1[56]:[^:]*:Peaseblossom:3D34:/ -277.1 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D38:/ -281.2 "Pummel" sync / 1[56]:[^:]*:Puck:3D37:/ -284.4 "Hard Swipe" sync / 1[56]:[^:]*:Peaseblossom:3D36:/ -293.2 "Pummel" sync / 1[56]:[^:]*:Puck:3D37:/ -296.9 "Pease" sync / 1[56]:[^:]*:Peaseblossom:3D35:/ -296.9 "Peasebomb" sync / 1[56]:[^:]*:Peaseblossom:3D34:/ -307.9 "Hard Swipe" sync / 1[56]:[^:]*:Peaseblossom:3D36:/ +271.0 "Leafstorm" Ability { id: "3D38", source: "Mustardseed" } +271.1 "Gentle Breeze" Ability { id: "3F82", source: "Puck" } +273.4 "Pease" Ability { id: "3D35", source: "Peaseblossom" } +273.4 "Peasebomb" Ability { id: "3D34", source: "Peaseblossom" } +277.1 "Leafstorm" Ability { id: "3D38", source: "Mustardseed" } +281.2 "Pummel" Ability { id: "3D37", source: "Puck" } +284.4 "Hard Swipe" Ability { id: "3D36", source: "Peaseblossom" } +293.2 "Pummel" Ability { id: "3D37", source: "Puck" } +296.9 "Pease" Ability { id: "3D35", source: "Peaseblossom" } +296.9 "Peasebomb" Ability { id: "3D34", source: "Peaseblossom" } +307.9 "Hard Swipe" Ability { id: "3D36", source: "Peaseblossom" } ### ??? ### Phase 2b: bigger is better -500.0 "Love-In-Idleness" sync / 1[56]:[^:]*:Titania:3D3D:/ window 500,0 +500.0 "Love-In-Idleness" Ability { id: "3D3D", source: "Titania" } window 500,0 518.2 "--targetable--" -528.5 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D3E:/ -529.0 "War And Pease" sync / 1[56]:[^:]*:Peaseblossom:3D40:/ -529.0 "Peasebomb" sync / 1[56]:[^:]*:Peaseblossom:3D3F:/ -536.0 "Puck's Breath" sync / 1[56]:[^:]*:Puck:3D41:/ -545.0 "Whispering Wind" sync / 1[56]:[^:]*:Mustardseed:40E2:/ -555.0 "Puck's Rebuke" sync / 1[56]:[^:]*:Puck:3D44:/ -557.0 "Wallop" sync / 1[56]:[^:]*:Spirit of Wood:3D3B:/ -559.5 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D3E:/ -568.0 "War And Pease" sync / 1[56]:[^:]*:Peaseblossom:3D40:/ -568.0 "Puck's Breath" sync / 1[56]:[^:]*:Puck:3D41:/ -568.0 "Peasebomb" sync / 1[56]:[^:]*:Peaseblossom:3D3F:/ -577.0 "Puck's Caprice" sync / 1[56]:[^:]*:Puck:3D3A:/ +528.5 "Leafstorm" Ability { id: "3D3E", source: "Mustardseed" } +529.0 "War And Pease" Ability { id: "3D40", source: "Peaseblossom" } +529.0 "Peasebomb" Ability { id: "3D3F", source: "Peaseblossom" } +536.0 "Puck's Breath" Ability { id: "3D41", source: "Puck" } +545.0 "Whispering Wind" Ability { id: "40E2", source: "Mustardseed" } +555.0 "Puck's Rebuke" Ability { id: "3D44", source: "Puck" } +557.0 "Wallop" Ability { id: "3D3B", source: "Spirit of Wood" } +559.5 "Leafstorm" Ability { id: "3D3E", source: "Mustardseed" } +568.0 "War And Pease" Ability { id: "3D40", source: "Peaseblossom" } +568.0 "Puck's Breath" Ability { id: "3D41", source: "Puck" } +568.0 "Peasebomb" Ability { id: "3D3F", source: "Peaseblossom" } +577.0 "Puck's Caprice" Ability { id: "3D3A", source: "Puck" } ### Phase 3: double mechanics -800.0 "Being Mortal" sync / 1[56]:[^:]*:Titania:3D32:/ window 800,0 -808.5 "Being Mortal" sync / 1[56]:[^:]*:Titania:3D33:/ +800.0 "Being Mortal" Ability { id: "3D32", source: "Titania" } window 800,0 +808.5 "Being Mortal" Ability { id: "3D33", source: "Titania" } 814.0 "--targetable--" -825.3 "Mist Rune" sync / 1[56]:[^:]*:Titania:3D45:/ -833.3 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D4[CD]:/ -846.3 "Flame Rune" sync / 1[56]:[^:]*:Titania:3D47:/ -852.3 "Growth Rune" sync / 1[56]:[^:]*:Titania:3D2E:/ -860.4 "Flame Hammer 1" #sync / 1[56]:[^:]*:Spirit of Flame:3D48:/ -862.6 "Flame Hammer 2" #sync / 1[56]:[^:]*:Spirit of Flame:3D48:/ -880.2 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D4[CD]:/ -891.2 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D4B:/ -903.2 "Fae Light" sync / 1[56]:[^:]*:Titania:3D2C:/ -906.2 "Fae Light 1" #sync / 1[56]:[^:]*:Titania:3D2D:/ -908.2 "Fae Light 2" #sync / 1[56]:[^:]*:Titania:3D2D:/ -910.2 "Fae Light 3" #sync / 1[56]:[^:]*:Titania:3D2D:/ -919.2 "Frost Rune" sync / 1[56]:[^:]*:Titania:3D2A:/ -927.2 "Frost Rune Middle" #sync / 1[56]:[^:]*:Titania:3D2B:/ -934.2 "Uplift" sync / 1[56]:[^:]*:Titania:421E:/ -942.2 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D4B:/ -950.6 "--center--" sync / 1[56]:[^:]*:Titania:3D28:/ -956.2 "Thunder Rune 1" sync / 1[56]:[^:]*:Titania:3D29:/ window 5,1 -961.7 "Thunder Rune 2" #sync / 1[56]:[^:]*:Titania:3D29:/ -967.2 "Thunder Rune 3" #sync / 1[56]:[^:]*:Titania:3D29:/ -972.7 "Thunder Rune 4" #sync / 1[56]:[^:]*:Titania:3D29:/ -978.2 "Thunder Rune 5" #sync / 1[56]:[^:]*:Titania:3D29:/ -983.7 "Thunder Rune 6" sync / 1[56]:[^:]*:Titania:3F2A:/ window 15,15 -994.7 "Growth Rune" sync / 1[56]:[^:]*:Titania:3D2E:/ -1000.7 "Chain Of Brambles" sync / 1[56]:[^:]*:Titania:42D7:/ -1023.7 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D4[CD]:/ -1031.7 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D4[CD]:/ -1043.7 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D4B:/ -1050.7 "Divination Rune" sync / 1[56]:[^:]*:Titania:3D4A:/ -1065.6 "Mist Rune" sync / 1[56]:[^:]*:Titania:3D45:/ +825.3 "Mist Rune" Ability { id: "3D45", source: "Titania" } +833.3 "Phantom Rune" Ability { id: "3D4[CD]", source: "Titania" } +846.3 "Flame Rune" Ability { id: "3D47", source: "Titania" } +852.3 "Growth Rune" Ability { id: "3D2E", source: "Titania" } +860.4 "Flame Hammer 1" #Ability { id: "3D48", source: "Spirit of Flame" } +862.6 "Flame Hammer 2" #Ability { id: "3D48", source: "Spirit of Flame" } +880.2 "Phantom Rune" Ability { id: "3D4[CD]", source: "Titania" } +891.2 "Bright Sabbath" Ability { id: "3D4B", source: "Titania" } +903.2 "Fae Light" Ability { id: "3D2C", source: "Titania" } +906.2 "Fae Light 1" #Ability { id: "3D2D", source: "Titania" } +908.2 "Fae Light 2" #Ability { id: "3D2D", source: "Titania" } +910.2 "Fae Light 3" #Ability { id: "3D2D", source: "Titania" } +919.2 "Frost Rune" Ability { id: "3D2A", source: "Titania" } +927.2 "Frost Rune Middle" #Ability { id: "3D2B", source: "Titania" } +934.2 "Uplift" Ability { id: "421E", source: "Titania" } +942.2 "Bright Sabbath" Ability { id: "3D4B", source: "Titania" } +950.6 "--center--" Ability { id: "3D28", source: "Titania" } +956.2 "Thunder Rune 1" Ability { id: "3D29", source: "Titania" } window 5,1 +961.7 "Thunder Rune 2" #Ability { id: "3D29", source: "Titania" } +967.2 "Thunder Rune 3" #Ability { id: "3D29", source: "Titania" } +972.7 "Thunder Rune 4" #Ability { id: "3D29", source: "Titania" } +978.2 "Thunder Rune 5" #Ability { id: "3D29", source: "Titania" } +983.7 "Thunder Rune 6" Ability { id: "3F2A", source: "Titania" } window 15,15 +994.7 "Growth Rune" Ability { id: "3D2E", source: "Titania" } +1000.7 "Chain Of Brambles" Ability { id: "42D7", source: "Titania" } +1023.7 "Phantom Rune" Ability { id: "3D4[CD]", source: "Titania" } +1031.7 "Phantom Rune" Ability { id: "3D4[CD]", source: "Titania" } +1043.7 "Bright Sabbath" Ability { id: "3D4B", source: "Titania" } +1050.7 "Divination Rune" Ability { id: "3D4A", source: "Titania" } +1065.6 "Mist Rune" Ability { id: "3D45", source: "Titania" } # ??? ### Phase 4: too slow -1500.0 "--sync--" sync / 14:[^:]*:Titania:3DAE:/ window 1500,0 -1510.0 "Bright Sabbath Enrage" sync / 1[56]:[^:]*:Titania:3DAE:/ +1500.0 "--sync--" StartsUsing { id: "3DAE", source: "Titania" } window 1500,0 +1510.0 "Bright Sabbath Enrage" Ability { id: "3DAE", source: "Titania" } diff --git a/ui/raidboss/data/05-shb/trial/titania.txt b/ui/raidboss/data/05-shb/trial/titania.txt index 590492e49a..4cb87d69d0 100644 --- a/ui/raidboss/data/05-shb/trial/titania.txt +++ b/ui/raidboss/data/05-shb/trial/titania.txt @@ -5,57 +5,57 @@ hideall "--Reset--" hideall "--sync--" ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -8.5 "--sync--" sync / 14:[^:]*:Titania:3D5C:/ window 13,5 -12.5 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D5C:/ -26.7 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D5[DE]:/ -37.9 "Divination Rune" sync / 1[56]:[^:]*:Titania:3D5B:/ -47.1 "Mist Rune" sync / 1[56]:[^:]*:Titania:3D45:/ -67.3 "Flame Rune" sync / 1[56]:[^:]*:Titania:3D47:/ -81.4 "Flame Hammer" sync / 1[56]:[^:]*:Spirit of Flame:4373:/ -91.4 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D5[DE]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +8.5 "--sync--" StartsUsing { id: "3D5C", source: "Titania" } window 13,5 +12.5 "Bright Sabbath" Ability { id: "3D5C", source: "Titania" } +26.7 "Phantom Rune" Ability { id: "3D5[DE]", source: "Titania" } +37.9 "Divination Rune" Ability { id: "3D5B", source: "Titania" } +47.1 "Mist Rune" Ability { id: "3D45", source: "Titania" } +67.3 "Flame Rune" Ability { id: "3D47", source: "Titania" } +81.4 "Flame Hammer" Ability { id: "4373", source: "Spirit of Flame" } +91.4 "Phantom Rune" Ability { id: "3D5[DE]", source: "Titania" } -103.7 "Midsummer Night's Dream" sync / 1[56]:[^:]*:Titania:3D30:/ window 150,0 -116.8 "Growth Rune" sync / 1[56]:[^:]*:Titania:3D2E:/ -144.0 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D5[DE]:/ -151.1 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D5C:/ -161.4 "Frost Rune" sync / 1[56]:[^:]*:Titania:3D2A:/ -170.4 "Frost Rune Middle" #sync / 1[56]:[^:]*:Titania:3D4E:/ -176.7 "Uplift" sync / 1[56]:[^:]*:Titania:421F:/ -182.8 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D5[DE]:/ +103.7 "Midsummer Night's Dream" Ability { id: "3D30", source: "Titania" } window 150,0 +116.8 "Growth Rune" Ability { id: "3D2E", source: "Titania" } +144.0 "Phantom Rune" Ability { id: "3D5[DE]", source: "Titania" } +151.1 "Bright Sabbath" Ability { id: "3D5C", source: "Titania" } +161.4 "Frost Rune" Ability { id: "3D2A", source: "Titania" } +170.4 "Frost Rune Middle" #Ability { id: "3D4E", source: "Titania" } +176.7 "Uplift" Ability { id: "421F", source: "Titania" } +182.8 "Phantom Rune" Ability { id: "3D5[DE]", source: "Titania" } ### Phase 2a -193.5 "--untargetable--" sync / 1[56]:[^:]*:Titania:3D31:/ window 200,0 +193.5 "--untargetable--" Ability { id: "3D31", source: "Titania" } window 200,0 196.0 "--targetable--" -208.5 "Gentle Breeze" sync / 1[56]:[^:]*:Puck:3F83:/ -208.5 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D38:/ -210.8 "Peasebomb" sync / 1[56]:[^:]*:Peaseblossom:3D34:/ -210.8 "Pease" sync / 1[56]:[^:]*:Peaseblossom:3D52:/ -219.7 "Pummel" sync / 1[56]:[^:]*:Puck:3D54:/ -220.9 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D38:/ -222.1 "Hard Swipe" sync / 1[56]:[^:]*:Peaseblossom:3D53:/ -238.5 "Gentle Breeze" sync / 1[56]:[^:]*:Puck:3F83:/ -238.6 "Peasebomb" sync / 1[56]:[^:]*:Peaseblossom:3D34:/ -238.6 "Pease" sync / 1[56]:[^:]*:Peaseblossom:3D52:/ -249.8 "Pummel" sync / 1[56]:[^:]*:Puck:3D54:/ -250.7 "Hard Swipe" sync / 1[56]:[^:]*:Peaseblossom:3D53:/ +208.5 "Gentle Breeze" Ability { id: "3F83", source: "Puck" } +208.5 "Leafstorm" Ability { id: "3D38", source: "Mustardseed" } +210.8 "Peasebomb" Ability { id: "3D34", source: "Peaseblossom" } +210.8 "Pease" Ability { id: "3D52", source: "Peaseblossom" } +219.7 "Pummel" Ability { id: "3D54", source: "Puck" } +220.9 "Leafstorm" Ability { id: "3D38", source: "Mustardseed" } +222.1 "Hard Swipe" Ability { id: "3D53", source: "Peaseblossom" } +238.5 "Gentle Breeze" Ability { id: "3F83", source: "Puck" } +238.6 "Peasebomb" Ability { id: "3D34", source: "Peaseblossom" } +238.6 "Pease" Ability { id: "3D52", source: "Peaseblossom" } +249.8 "Pummel" Ability { id: "3D54", source: "Puck" } +250.7 "Hard Swipe" Ability { id: "3D53", source: "Peaseblossom" } ### Phase 2b: bigger is better -500.0 "Love-In-Idleness" sync / 1[56]:[^:]*:Titania:3D3D:/ +500.0 "Love-In-Idleness" Ability { id: "3D3D", source: "Titania" } 518.1 "--targetable--" -528.5 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D3E:/ -529.0 "Peasebomb" sync / 1[56]:[^:]*:Peaseblossom:3D3F:/ -529.0 "War And Pease" sync / 1[56]:[^:]*:Peaseblossom:3DAD:/ -536.0 "Puck's Breath" sync / 1[56]:[^:]*:Puck:3D57:/ -541.0 "--sync--" sync / 1[56]:[^:]*:Puck:3D42:/ -546.0 "Puck's Rebuke" sync / 1[56]:[^:]*:Puck:3D59:/ +528.5 "Leafstorm" Ability { id: "3D3E", source: "Mustardseed" } +529.0 "Peasebomb" Ability { id: "3D3F", source: "Peaseblossom" } +529.0 "War And Pease" Ability { id: "3DAD", source: "Peaseblossom" } +536.0 "Puck's Breath" Ability { id: "3D57", source: "Puck" } +541.0 "--sync--" Ability { id: "3D42", source: "Puck" } +546.0 "Puck's Rebuke" Ability { id: "3D59", source: "Puck" } -551.5 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D3E:/ -560.0 "Peasebomb" sync / 1[56]:[^:]*:Peaseblossom:3D3F:/ -560.0 "War And Pease" sync / 1[56]:[^:]*:Peaseblossom:3DAD:/ -567.0 "Puck's Caprice" sync / 1[56]:[^:]*:Puck:3D56:/ +551.5 "Leafstorm" Ability { id: "3D3E", source: "Mustardseed" } +560.0 "Peasebomb" Ability { id: "3D3F", source: "Peaseblossom" } +560.0 "War And Pease" Ability { id: "3DAD", source: "Peaseblossom" } +567.0 "Puck's Caprice" Ability { id: "3D56", source: "Puck" } -583.5 "Leafstorm" sync / 1[56]:[^:]*:Mustardseed:3D3E:/ window 15,15 jump 528.5 +583.5 "Leafstorm" Ability { id: "3D3E", source: "Mustardseed" } window 15,15 jump 528.5 584.0 "Peasebomb" 584.0 "War And Pease" 591.0 "Puck's Breath" @@ -63,30 +63,30 @@ hideall "--sync--" 601.0 "Puck's Rebuke" ### Phase 3 -800.0 "Being Mortal" sync / 1[56]:[^:]*:Titania:3D32:/ window 800,0 -808.5 "Being Mortal" sync / 1[56]:[^:]*:Titania:3D51:/ +800.0 "Being Mortal" Ability { id: "3D32", source: "Titania" } window 800,0 +808.5 "Being Mortal" Ability { id: "3D51", source: "Titania" } 814.0 "--targetable--" -825.0 "Mist Rune" sync / 1[56]:[^:]*:Titania:3D45:/ -833.0 "Uplift" sync / 1[56]:[^:]*:Titania:421F:/ +825.0 "Mist Rune" Ability { id: "3D45", source: "Titania" } +833.0 "Uplift" Ability { id: "421F", source: "Titania" } -838.3 "Flame Rune" sync / 1[56]:[^:]*:Titania:3D47:/ -846.3 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D5E:/ -852.4 "Flame Hammer" sync / 1[56]:[^:]*:Spirit of Flame:4373:/ -856.3 "Growth Rune" sync / 1[56]:[^:]*:Titania:3D2E:/ -864.3 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D5D:/ -878.3 "Divination Rune" sync / 1[56]:[^:]*:Titania:3D5B:/ -887.3 "Frost Rune" sync / 1[56]:[^:]*:Titania:3D2A:/ -896.3 "Frost Rune Middle" #sync / 1[56]:[^:]*:Titania:3D4E:/ -903.3 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D5C:/ -915.3 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D5E:/ -923.3 "Phantom Rune" sync / 1[56]:[^:]*:Titania:3D5D:/ -937.3 "Divination Rune" sync / 1[56]:[^:]*:Titania:3D5B:/ -949.3 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D5C:/ -956.3 "Bright Sabbath" sync / 1[56]:[^:]*:Titania:3D5C:/ -970.3 "Mist Rune" sync / 1[56]:[^:]*:Titania:3D45:/ -978.3 "Uplift" sync / 1[56]:[^:]*:Titania:421F:/ +838.3 "Flame Rune" Ability { id: "3D47", source: "Titania" } +846.3 "Phantom Rune" Ability { id: "3D5E", source: "Titania" } +852.4 "Flame Hammer" Ability { id: "4373", source: "Spirit of Flame" } +856.3 "Growth Rune" Ability { id: "3D2E", source: "Titania" } +864.3 "Phantom Rune" Ability { id: "3D5D", source: "Titania" } +878.3 "Divination Rune" Ability { id: "3D5B", source: "Titania" } +887.3 "Frost Rune" Ability { id: "3D2A", source: "Titania" } +896.3 "Frost Rune Middle" #Ability { id: "3D4E", source: "Titania" } +903.3 "Bright Sabbath" Ability { id: "3D5C", source: "Titania" } +915.3 "Phantom Rune" Ability { id: "3D5E", source: "Titania" } +923.3 "Phantom Rune" Ability { id: "3D5D", source: "Titania" } +937.3 "Divination Rune" Ability { id: "3D5B", source: "Titania" } +949.3 "Bright Sabbath" Ability { id: "3D5C", source: "Titania" } +956.3 "Bright Sabbath" Ability { id: "3D5C", source: "Titania" } +970.3 "Mist Rune" Ability { id: "3D45", source: "Titania" } +978.3 "Uplift" Ability { id: "421F", source: "Titania" } -985.3 "Flame Rune" sync / 1[56]:[^:]*:Titania:3D47:/ window 100,100 jump 838.3 +985.3 "Flame Rune" Ability { id: "3D47", source: "Titania" } window 100,100 jump 838.3 993.3 "Phantom Rune" 999.4 "Flame Hammer" 1003.3 "Growth Rune" diff --git a/ui/raidboss/data/05-shb/trial/varis-ex.txt b/ui/raidboss/data/05-shb/trial/varis-ex.txt index ef66c677c8..f2df6cb6bf 100644 --- a/ui/raidboss/data/05-shb/trial/varis-ex.txt +++ b/ui/raidboss/data/05-shb/trial/varis-ex.txt @@ -5,267 +5,267 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 ### Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -19.0 "Altius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CCA:/ window 19,5 -28.5 "Alea Iacta Est" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD2:/ -29.7 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD3:/ -30.1 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD4:/ -30.5 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD5:/ -33.2 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD6:/ -34.1 "Terminus Est" sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -45.1 "Citius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ -56.0 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CB5:/ -64.2 "Ignis Est" sync / 1[56]:[^:]*:Ignis Est:4CB6:/ -64.2 "Festina Lente" sync / 1[56]:[^:]*:Varis Yae Galvus:4CC9:/ -82.4 "Electrified Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD7:/ -91.5 "Altius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CCA:/ -100.4 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CB5:/ -101.6 "Terminus Est" sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -108.5 "Ignis Est" sync / 1[56]:[^:]*:Ignis Est:4CB6:/ -109.6 "Magitek Shock" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDA:/ -120.7 "Reinforced Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD9:/ -128.9 "Citius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ -132.0 "Magitek Shielding" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD[BC]:/ -147.2 "Loaded Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD8:/ -156.0 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CC6:/ -163.6 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDE:/ -164.2 "Ventus Est" sync / 1[56]:[^:]*:Ventus Est:4CC7:/ -166.7 "Magitek Burst" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDF:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +19.0 "Altius" Ability { id: "4CCA", source: "Varis Yae Galvus" } window 19,5 +28.5 "Alea Iacta Est" Ability { id: "4CD2", source: "Varis Yae Galvus" } +29.7 "--sync--" Ability { id: "4CD3", source: "Varis Yae Galvus" } +30.1 "--sync--" Ability { id: "4CD4", source: "Varis Yae Galvus" } +30.5 "--sync--" Ability { id: "4CD5", source: "Varis Yae Galvus" } +33.2 "--sync--" Ability { id: "4CD6", source: "Varis Yae Galvus" } +34.1 "Terminus Est" Ability { id: "4CB4", source: "Terminus Est" } +45.1 "Citius" Ability { id: "4CF0", source: "Varis Yae Galvus" } +56.0 "--sync--" Ability { id: "4CB5", source: "Varis Yae Galvus" } +64.2 "Ignis Est" Ability { id: "4CB6", source: "Ignis Est" } +64.2 "Festina Lente" Ability { id: "4CC9", source: "Varis Yae Galvus" } +82.4 "Electrified Gunshield" Ability { id: "4CD7", source: "Varis Yae Galvus" } +91.5 "Altius" Ability { id: "4CCA", source: "Varis Yae Galvus" } +100.4 "--sync--" Ability { id: "4CB5", source: "Varis Yae Galvus" } +101.6 "Terminus Est" Ability { id: "4CB4", source: "Terminus Est" } +108.5 "Ignis Est" Ability { id: "4CB6", source: "Ignis Est" } +109.6 "Magitek Shock" Ability { id: "4CDA", source: "Varis Yae Galvus" } +120.7 "Reinforced Gunshield" Ability { id: "4CD9", source: "Varis Yae Galvus" } +128.9 "Citius" Ability { id: "4CF0", source: "Varis Yae Galvus" } +132.0 "Magitek Shielding" Ability { id: "4CD[BC]", source: "Varis Yae Galvus" } +147.2 "Loaded Gunshield" Ability { id: "4CD8", source: "Varis Yae Galvus" } +156.0 "--sync--" Ability { id: "4CC6", source: "Varis Yae Galvus" } +163.6 "--sync--" Ability { id: "4CDE", source: "Varis Yae Galvus" } +164.2 "Ventus Est" Ability { id: "4CC7", source: "Ventus Est" } +166.7 "Magitek Burst" Ability { id: "4CDF", source: "Varis Yae Galvus" } 177.1 "--untargetable--" ### Phase 2: Susano Remix -177.1 "Vivere Militare Est" sync / 1[56]:[^:]*:Varis Yae Galvus:4CCC:/ window 180,50 +177.1 "Vivere Militare Est" Ability { id: "4CCC", source: "Varis Yae Galvus" } window 180,50 192.3 "Blade's Pulse x2" 200.1 "--targetable--" -203.1 "Shockwave" #sync / 1[56]:[^:]*:Bladesblood:4CCE:/ +203.1 "Shockwave" #Ability { id: "4CCE", source: "Bladesblood" } # shockwaves continue every 2 seconds -260.1 "Vivere Militare Est" sync / 1[56]:[^:]*:Bladesblood:4CCF:/ window 261,50 +260.1 "Vivere Militare Est" Ability { id: "4CCF", source: "Bladesblood" } window 261,50 ### Phase 3: Random Groups # Note: all three of these blocks occur, but can occur in any order 269.1 "--targetable--" -274.3 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD8:/ window 100,100 jump 500 -274.3 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD9:/ window 100,100 jump 700 -274.3 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD7:/ window 100,100 jump 900 +274.3 "--sync--" StartsUsing { id: "4CD8", source: "Varis Yae Galvus" } window 100,100 jump 500 +274.3 "--sync--" StartsUsing { id: "4CD9", source: "Varis Yae Galvus" } window 100,100 jump 700 +274.3 "--sync--" StartsUsing { id: "4CD7", source: "Varis Yae Galvus" } window 100,100 jump 900 # loaded lookahead window -279.3 "Loaded Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD8:/ -288.2 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CB5:/ -292.5 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDE:/ -294.0 "--clones appear?--" #sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -295.6 "Magitek Burst?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDF:/ -296.3 "Ignis Est?" #sync / 1[56]:[^:]*:Ignis Est:4CB6:/ -303.6 "Terminus Est?" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -303.8 "Festina Lente?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CC9:/ -315.0 "Citius?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ +279.3 "Loaded Gunshield?" #Ability { id: "4CD8", source: "Varis Yae Galvus" } +288.2 "--sync--" #Ability { id: "4CB5", source: "Varis Yae Galvus" } +292.5 "--sync--" #Ability { id: "4CDE", source: "Varis Yae Galvus" } +294.0 "--clones appear?--" #Ability { id: "4CB3", source: "Phantom Varis" } +295.6 "Magitek Burst?" #Ability { id: "4CDF", source: "Varis Yae Galvus" } +296.3 "Ignis Est?" #Ability { id: "4CB6", source: "Ignis Est" } +303.6 "Terminus Est?" #Ability { id: "4CB4", source: "Terminus Est" } +303.8 "Festina Lente?" #Ability { id: "4CC9", source: "Varis Yae Galvus" } +315.0 "Citius?" #Ability { id: "4CF0", source: "Varis Yae Galvus" } # reinforced lookahead window -279.3 "Reinforced Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD9:/ -288.4 "Altius?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CCA:/ -297.3 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CC6:/ -298.5 "Terminus Est" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -300.6 "Magitek Shielding" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDB:/ -305.4 "Ventus Est" #sync / 1[56]:[^:]*:Ventus Est:4CC7:/ -315.8 "Citius" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ +279.3 "Reinforced Gunshield?" #Ability { id: "4CD9", source: "Varis Yae Galvus" } +288.4 "Altius?" #Ability { id: "4CCA", source: "Varis Yae Galvus" } +297.3 "--sync--" #Ability { id: "4CC6", source: "Varis Yae Galvus" } +298.5 "Terminus Est" #Ability { id: "4CB4", source: "Terminus Est" } +300.6 "Magitek Shielding" #Ability { id: "4CDB", source: "Varis Yae Galvus" } +305.4 "Ventus Est" #Ability { id: "4CC7", source: "Ventus Est" } +315.8 "Citius" #Ability { id: "4CF0", source: "Varis Yae Galvus" } # electrified lookahead window -279.3 "Electrified Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD7:/ -284.4 "Reinforcements?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CEA:/ -290.3 "--clones appear?--" #sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -293.5 "Aetherochemical Grenado?" #sync / 1[56]:[^:]*:Magitek Turret II:4CED:/ -303.2 "Terminus Est?" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -305.9 "Magitek Shock?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDA:/ -316.8 "Alea Iacta Est?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD2:/ -318.0 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD3:/ -318.4 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD4:/ -318.8 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD5:/ -321.5 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD6:/ +279.3 "Electrified Gunshield?" #Ability { id: "4CD7", source: "Varis Yae Galvus" } +284.4 "Reinforcements?" #Ability { id: "4CEA", source: "Varis Yae Galvus" } +290.3 "--clones appear?--" #Ability { id: "4CB3", source: "Phantom Varis" } +293.5 "Aetherochemical Grenado?" #Ability { id: "4CED", source: "Magitek Turret II" } +303.2 "Terminus Est?" #Ability { id: "4CB4", source: "Terminus Est" } +305.9 "Magitek Shock?" #Ability { id: "4CDA", source: "Varis Yae Galvus" } +316.8 "Alea Iacta Est?" #Ability { id: "4CD2", source: "Varis Yae Galvus" } +318.0 "--sync--" #Ability { id: "4CD3", source: "Varis Yae Galvus" } +318.4 "--sync--" #Ability { id: "4CD4", source: "Varis Yae Galvus" } +318.8 "--sync--" #Ability { id: "4CD5", source: "Varis Yae Galvus" } +321.5 "--sync--" #Ability { id: "4CD6", source: "Varis Yae Galvus" } ## Phase 3: Loaded Gunshield, Spread -500.0 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD8:/ -505.0 "Loaded Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD8:/ -513.9 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CB5:/ -518.2 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDE:/ -519.7 "--clones appear--" sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -521.3 "Magitek Burst" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDF:/ -522.0 "Ignis Est" sync / 1[56]:[^:]*:Ignis Est:4CB6:/ -529.3 "Terminus Est" sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -529.5 "Festina Lente" sync / 1[56]:[^:]*:Varis Yae Galvus:4CC9:/ -540.7 "Citius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ - -554.3 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD9:/ window 10,10 jump 700 -554.3 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD7:/ window 10,10 jump 900 +500.0 "--sync--" StartsUsing { id: "4CD8", source: "Varis Yae Galvus" } +505.0 "Loaded Gunshield" Ability { id: "4CD8", source: "Varis Yae Galvus" } +513.9 "--sync--" Ability { id: "4CB5", source: "Varis Yae Galvus" } +518.2 "--sync--" Ability { id: "4CDE", source: "Varis Yae Galvus" } +519.7 "--clones appear--" Ability { id: "4CB3", source: "Phantom Varis" } +521.3 "Magitek Burst" Ability { id: "4CDF", source: "Varis Yae Galvus" } +522.0 "Ignis Est" Ability { id: "4CB6", source: "Ignis Est" } +529.3 "Terminus Est" Ability { id: "4CB4", source: "Terminus Est" } +529.5 "Festina Lente" Ability { id: "4CC9", source: "Varis Yae Galvus" } +540.7 "Citius" Ability { id: "4CF0", source: "Varis Yae Galvus" } + +554.3 "--sync--" StartsUsing { id: "4CD9", source: "Varis Yae Galvus" } window 10,10 jump 700 +554.3 "--sync--" StartsUsing { id: "4CD7", source: "Varis Yae Galvus" } window 10,10 jump 900 # reinforced lookahead window -559.3 "Reinforced Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD9:/ -568.4 "Altius?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CCA:/ -577.3 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CC6:/ -578.5 "Terminus Est" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -580.6 "Magitek Shielding" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDB:/ -585.4 "Ventus Est" #sync / 1[56]:[^:]*:Ventus Est:4CC7:/ -595.8 "Citius" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ +559.3 "Reinforced Gunshield?" #Ability { id: "4CD9", source: "Varis Yae Galvus" } +568.4 "Altius?" #Ability { id: "4CCA", source: "Varis Yae Galvus" } +577.3 "--sync--" #Ability { id: "4CC6", source: "Varis Yae Galvus" } +578.5 "Terminus Est" #Ability { id: "4CB4", source: "Terminus Est" } +580.6 "Magitek Shielding" #Ability { id: "4CDB", source: "Varis Yae Galvus" } +585.4 "Ventus Est" #Ability { id: "4CC7", source: "Ventus Est" } +595.8 "Citius" #Ability { id: "4CF0", source: "Varis Yae Galvus" } # electrified lookahead window -559.3 "Electrified Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD7:/ -564.4 "Reinforcements?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CEA:/ -570.3 "--clones appear?--" #sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -573.5 "Aetherochemical Grenado?" #sync / 1[56]:[^:]*:Magitek Turret II:4CED:/ -583.2 "Terminus Est?" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -585.9 "Magitek Shock?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDA:/ -596.8 "Alea Iacta Est?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD2:/ -598.0 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD3:/ -598.4 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD4:/ -598.8 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD5:/ -601.5 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD6:/ +559.3 "Electrified Gunshield?" #Ability { id: "4CD7", source: "Varis Yae Galvus" } +564.4 "Reinforcements?" #Ability { id: "4CEA", source: "Varis Yae Galvus" } +570.3 "--clones appear?--" #Ability { id: "4CB3", source: "Phantom Varis" } +573.5 "Aetherochemical Grenado?" #Ability { id: "4CED", source: "Magitek Turret II" } +583.2 "Terminus Est?" #Ability { id: "4CB4", source: "Terminus Est" } +585.9 "Magitek Shock?" #Ability { id: "4CDA", source: "Varis Yae Galvus" } +596.8 "Alea Iacta Est?" #Ability { id: "4CD2", source: "Varis Yae Galvus" } +598.0 "--sync--" #Ability { id: "4CD3", source: "Varis Yae Galvus" } +598.4 "--sync--" #Ability { id: "4CD4", source: "Varis Yae Galvus" } +598.8 "--sync--" #Ability { id: "4CD5", source: "Varis Yae Galvus" } +601.5 "--sync--" #Ability { id: "4CD6", source: "Varis Yae Galvus" } ## Phase 3: Reinforced Gunshield, Block -700.0 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD9:/ -705.0 "Reinforced Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD9:/ -714.1 "Altius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CCA:/ -723.0 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CC6:/ -724.2 "Terminus Est" sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -726.3 "Magitek Shielding" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD[BC]:/ -731.1 "Ventus Est" sync / 1[56]:[^:]*:Ventus Est:4CC7:/ -741.5 "Citius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ - -752.8 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD8:/ window 10,10 jump 500 -752.8 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD7:/ window 10,10 jump 900 +700.0 "--sync--" StartsUsing { id: "4CD9", source: "Varis Yae Galvus" } +705.0 "Reinforced Gunshield" Ability { id: "4CD9", source: "Varis Yae Galvus" } +714.1 "Altius" Ability { id: "4CCA", source: "Varis Yae Galvus" } +723.0 "--sync--" Ability { id: "4CC6", source: "Varis Yae Galvus" } +724.2 "Terminus Est" Ability { id: "4CB4", source: "Terminus Est" } +726.3 "Magitek Shielding" Ability { id: "4CD[BC]", source: "Varis Yae Galvus" } +731.1 "Ventus Est" Ability { id: "4CC7", source: "Ventus Est" } +741.5 "Citius" Ability { id: "4CF0", source: "Varis Yae Galvus" } + +752.8 "--sync--" StartsUsing { id: "4CD8", source: "Varis Yae Galvus" } window 10,10 jump 500 +752.8 "--sync--" StartsUsing { id: "4CD7", source: "Varis Yae Galvus" } window 10,10 jump 900 # loaded lookahead window -757.8 "Loaded Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD8:/ -766.7 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CB5:/ -771.0 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDE:/ -772.5 "--clones appear?--" #sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -774.1 "Magitek Burst?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDF:/ -774.8 "Ignis Est?" #sync / 1[56]:[^:]*:Ignis Est:4CB6:/ -782.1 "Terminus Est?" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -782.3 "Festina Lente?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CC9:/ -793.5 "Citius?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ +757.8 "Loaded Gunshield?" #Ability { id: "4CD8", source: "Varis Yae Galvus" } +766.7 "--sync--" #Ability { id: "4CB5", source: "Varis Yae Galvus" } +771.0 "--sync--" #Ability { id: "4CDE", source: "Varis Yae Galvus" } +772.5 "--clones appear?--" #Ability { id: "4CB3", source: "Phantom Varis" } +774.1 "Magitek Burst?" #Ability { id: "4CDF", source: "Varis Yae Galvus" } +774.8 "Ignis Est?" #Ability { id: "4CB6", source: "Ignis Est" } +782.1 "Terminus Est?" #Ability { id: "4CB4", source: "Terminus Est" } +782.3 "Festina Lente?" #Ability { id: "4CC9", source: "Varis Yae Galvus" } +793.5 "Citius?" #Ability { id: "4CF0", source: "Varis Yae Galvus" } # electrified lookahead window -757.8 "Electrified Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD7:/ -762.9 "Reinforcements?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CEA:/ -768.8 "--clones appear?--" #sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -772.0 "Aetherochemical Grenado?" #sync / 1[56]:[^:]*:Magitek Turret II:4CED:/ -781.7 "Terminus Est?" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -784.4 "Magitek Shock?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDA:/ -795.3 "Alea Iacta Est?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD2:/ -796.5 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD3:/ -796.9 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD4:/ -797.3 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD5:/ -800.0 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD6:/ +757.8 "Electrified Gunshield?" #Ability { id: "4CD7", source: "Varis Yae Galvus" } +762.9 "Reinforcements?" #Ability { id: "4CEA", source: "Varis Yae Galvus" } +768.8 "--clones appear?--" #Ability { id: "4CB3", source: "Phantom Varis" } +772.0 "Aetherochemical Grenado?" #Ability { id: "4CED", source: "Magitek Turret II" } +781.7 "Terminus Est?" #Ability { id: "4CB4", source: "Terminus Est" } +784.4 "Magitek Shock?" #Ability { id: "4CDA", source: "Varis Yae Galvus" } +795.3 "Alea Iacta Est?" #Ability { id: "4CD2", source: "Varis Yae Galvus" } +796.5 "--sync--" #Ability { id: "4CD3", source: "Varis Yae Galvus" } +796.9 "--sync--" #Ability { id: "4CD4", source: "Varis Yae Galvus" } +797.3 "--sync--" #Ability { id: "4CD5", source: "Varis Yae Galvus" } +800.0 "--sync--" #Ability { id: "4CD6", source: "Varis Yae Galvus" } ## Phase 3: Electrified Gunshield, Knockback -900.0 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD7:/ -905.0 "Electrified Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD7:/ -910.1 "Reinforcements" sync / 1[56]:[^:]*:Varis Yae Galvus:4CEA:/ -916.0 "--clones appear--" sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -919.2 "Aetherochemical Grenado" sync / 1[56]:[^:]*:Magitek Turret II:4CED:/ -928.9 "Terminus Est" sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -931.6 "Magitek Shock" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDA:/ -942.5 "Alea Iacta Est" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD2:/ -943.7 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD3:/ -944.1 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD4:/ -944.5 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD5:/ -947.2 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD6:/ - -958.7 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD8:/ window 10,10 jump 500 -958.7 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CD9:/ window 10,10 jump 700 +900.0 "--sync--" StartsUsing { id: "4CD7", source: "Varis Yae Galvus" } +905.0 "Electrified Gunshield" Ability { id: "4CD7", source: "Varis Yae Galvus" } +910.1 "Reinforcements" Ability { id: "4CEA", source: "Varis Yae Galvus" } +916.0 "--clones appear--" Ability { id: "4CB3", source: "Phantom Varis" } +919.2 "Aetherochemical Grenado" Ability { id: "4CED", source: "Magitek Turret II" } +928.9 "Terminus Est" Ability { id: "4CB4", source: "Terminus Est" } +931.6 "Magitek Shock" Ability { id: "4CDA", source: "Varis Yae Galvus" } +942.5 "Alea Iacta Est" Ability { id: "4CD2", source: "Varis Yae Galvus" } +943.7 "--sync--" Ability { id: "4CD3", source: "Varis Yae Galvus" } +944.1 "--sync--" Ability { id: "4CD4", source: "Varis Yae Galvus" } +944.5 "--sync--" Ability { id: "4CD5", source: "Varis Yae Galvus" } +947.2 "--sync--" Ability { id: "4CD6", source: "Varis Yae Galvus" } + +958.7 "--sync--" StartsUsing { id: "4CD8", source: "Varis Yae Galvus" } window 10,10 jump 500 +958.7 "--sync--" StartsUsing { id: "4CD9", source: "Varis Yae Galvus" } window 10,10 jump 700 # loaded lookahead window -963.7 "Loaded Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD8:/ -972.6 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CB5:/ -976.9 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDE:/ -978.4 "--clones appear?--" #sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -980.0 "Magitek Burst?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDF:/ -980.7 "Ignis Est?" #sync / 1[56]:[^:]*:Ignis Est:4CB6:/ -988.0 "Terminus Est?" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -988.2 "Festina Lente?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CC9:/ -999.4 "Citius?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ +963.7 "Loaded Gunshield?" #Ability { id: "4CD8", source: "Varis Yae Galvus" } +972.6 "--sync--" #Ability { id: "4CB5", source: "Varis Yae Galvus" } +976.9 "--sync--" #Ability { id: "4CDE", source: "Varis Yae Galvus" } +978.4 "--clones appear?--" #Ability { id: "4CB3", source: "Phantom Varis" } +980.0 "Magitek Burst?" #Ability { id: "4CDF", source: "Varis Yae Galvus" } +980.7 "Ignis Est?" #Ability { id: "4CB6", source: "Ignis Est" } +988.0 "Terminus Est?" #Ability { id: "4CB4", source: "Terminus Est" } +988.2 "Festina Lente?" #Ability { id: "4CC9", source: "Varis Yae Galvus" } +999.4 "Citius?" #Ability { id: "4CF0", source: "Varis Yae Galvus" } # reinforced lookahead window -963.7 "Reinforced Gunshield?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CD9:/ -972.8 "Altius?" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CCA:/ -981.7 "--sync--" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CC6:/ -982.9 "Terminus Est" #sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -985.0 "Magitek Shielding" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CDB:/ -989.8 "Ventus Est" #sync / 1[56]:[^:]*:Ventus Est:4CC7:/ -1000.2 "Citius" #sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ +963.7 "Reinforced Gunshield?" #Ability { id: "4CD9", source: "Varis Yae Galvus" } +972.8 "Altius?" #Ability { id: "4CCA", source: "Varis Yae Galvus" } +981.7 "--sync--" #Ability { id: "4CC6", source: "Varis Yae Galvus" } +982.9 "Terminus Est" #Ability { id: "4CB4", source: "Terminus Est" } +985.0 "Magitek Shielding" #Ability { id: "4CDB", source: "Varis Yae Galvus" } +989.8 "Ventus Est" #Ability { id: "4CC7", source: "Ventus Est" } +1000.2 "Citius" #Ability { id: "4CF0", source: "Varis Yae Galvus" } ### Phase 4: Stack Spread Shield 1200.0 "--untargetable--" -1200.0 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE0:/ window 1200,0 +1200.0 "--sync--" Ability { id: "4CE0", source: "Varis Yae Galvus" } window 1200,0 1200.1 "Gunshield" -1210.4 "Magitek Spark/Torch" sync / 1[56]:[^:]*:Gunshield:(4CE4|4CE3):/ window 10,5 -1219.1 "Magitek Torch/Spark" sync / 1[56]:[^:]*:Gunshield:(4CE4|4CE3):/ window 5,5 +1210.4 "Magitek Spark/Torch" Ability { id: ["4CE4", "4CE3"], source: "Gunshield" } window 10,5 +1219.1 "Magitek Torch/Spark" Ability { id: ["4CE4", "4CE3"], source: "Gunshield" } window 5,5 # 52 second cast -1254.0 "Altius Enrage" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE1:/ +1254.0 "Altius Enrage" Ability { id: "4CE1", source: "Varis Yae Galvus" } ### Phase 5: Fortius -1300.0 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE2:/ window 1300,0 +1300.0 "--sync--" Ability { id: "4CE2", source: "Varis Yae Galvus" } window 1300,0 1303.0 "--targetable--" -1313.3 "Loaded Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD8:/ +1313.3 "Loaded Gunshield" Ability { id: "4CD8", source: "Varis Yae Galvus" } # note: two different abilities for clockwise vs counter-clockwise -1322.5 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE[56]:/ -1323.3 "Fortius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE7:/ -1335.0 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDE:/ -1338.0 "Magitek Burst" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDF:/ -1343.3 "Festina Lente" sync / 1[56]:[^:]*:Varis Yae Galvus:4CC9:/ -1354.4 "Citius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ - -1363.3 "--clones appear--" sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -1368.0 "Electrified Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD7:/ -1377.2 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE[56]:/ -1378.0 "Fortius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE7:/ -1392.2 "Terminus Est" sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -1394.6 "Magitek Shock" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDA:/ -1408.5 "--clones appear--" sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -1412.9 "Altius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CCA:/ -1421.2 "Festina Lente" sync / 1[56]:[^:]*:Varis Yae Galvus:4CC9:/ -1427.7 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CC6:/ -1435.1 "Alea Iacta Est" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD2:/ -1436.3 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD3:/ -1436.7 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD4:/ -1437.1 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD5:/ -1439.8 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD6:/ -1440.9 "Terminus Est" sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -1440.9 "Ventus Est" sync / 1[56]:[^:]*:Ventus Est:4CC7:/ -1451.5 "Citius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ - -1461.0 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CB5:/ -1468.8 "Alea Iacta Est" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD2:/ -1470.0 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD3:/ -1470.4 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD4:/ -1470.8 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD5:/ -1473.5 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD6:/ -1474.2 "Ignis Est" sync / 1[56]:[^:]*:Ignis Est:4CB6:/ - -1492.4 "Loaded Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD8:/ -1501.6 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE[56]:/ -1502.4 "Fortius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE7:/ -1514.1 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDE:/ -1517.2 "Magitek Burst" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDF:/ - -1522.4 "Festina Lente" sync / 1[56]:[^:]*:Varis Yae Galvus:4CC9:/ -1533.7 "Citius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CF0:/ -1542.5 "--clones appear--" sync / 1[56]:[^:]*:Phantom Varis:4CB3:/ -1547.0 "Electrified Gunshield" sync / 1[56]:[^:]*:Varis Yae Galvus:4CD7:/ -1556.3 "--sync--" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE[56]:/ -1557.1 "Fortius" sync / 1[56]:[^:]*:Varis Yae Galvus:4CE7:/ -1571.3 "Terminus Est" sync / 1[56]:[^:]*:Terminus Est:4CB4:/ -1573.6 "Magitek Shock" sync / 1[56]:[^:]*:Varis Yae Galvus:4CDA:/ - -1579.7 "--sync--" sync / 14:[^:]*:Varis Yae Galvus:4CA9:/ window 30,30 -1589.7 "Altius Enrage" sync / 1[56]:[^:]*:Varis Yae Galvus:4CA9:/ +1322.5 "--sync--" Ability { id: "4CE[56]", source: "Varis Yae Galvus" } +1323.3 "Fortius" Ability { id: "4CE7", source: "Varis Yae Galvus" } +1335.0 "--sync--" Ability { id: "4CDE", source: "Varis Yae Galvus" } +1338.0 "Magitek Burst" Ability { id: "4CDF", source: "Varis Yae Galvus" } +1343.3 "Festina Lente" Ability { id: "4CC9", source: "Varis Yae Galvus" } +1354.4 "Citius" Ability { id: "4CF0", source: "Varis Yae Galvus" } + +1363.3 "--clones appear--" Ability { id: "4CB3", source: "Phantom Varis" } +1368.0 "Electrified Gunshield" Ability { id: "4CD7", source: "Varis Yae Galvus" } +1377.2 "--sync--" Ability { id: "4CE[56]", source: "Varis Yae Galvus" } +1378.0 "Fortius" Ability { id: "4CE7", source: "Varis Yae Galvus" } +1392.2 "Terminus Est" Ability { id: "4CB4", source: "Terminus Est" } +1394.6 "Magitek Shock" Ability { id: "4CDA", source: "Varis Yae Galvus" } +1408.5 "--clones appear--" Ability { id: "4CB3", source: "Phantom Varis" } +1412.9 "Altius" Ability { id: "4CCA", source: "Varis Yae Galvus" } +1421.2 "Festina Lente" Ability { id: "4CC9", source: "Varis Yae Galvus" } +1427.7 "--sync--" Ability { id: "4CC6", source: "Varis Yae Galvus" } +1435.1 "Alea Iacta Est" Ability { id: "4CD2", source: "Varis Yae Galvus" } +1436.3 "--sync--" Ability { id: "4CD3", source: "Varis Yae Galvus" } +1436.7 "--sync--" Ability { id: "4CD4", source: "Varis Yae Galvus" } +1437.1 "--sync--" Ability { id: "4CD5", source: "Varis Yae Galvus" } +1439.8 "--sync--" Ability { id: "4CD6", source: "Varis Yae Galvus" } +1440.9 "Terminus Est" Ability { id: "4CB4", source: "Terminus Est" } +1440.9 "Ventus Est" Ability { id: "4CC7", source: "Ventus Est" } +1451.5 "Citius" Ability { id: "4CF0", source: "Varis Yae Galvus" } + +1461.0 "--sync--" Ability { id: "4CB5", source: "Varis Yae Galvus" } +1468.8 "Alea Iacta Est" Ability { id: "4CD2", source: "Varis Yae Galvus" } +1470.0 "--sync--" Ability { id: "4CD3", source: "Varis Yae Galvus" } +1470.4 "--sync--" Ability { id: "4CD4", source: "Varis Yae Galvus" } +1470.8 "--sync--" Ability { id: "4CD5", source: "Varis Yae Galvus" } +1473.5 "--sync--" Ability { id: "4CD6", source: "Varis Yae Galvus" } +1474.2 "Ignis Est" Ability { id: "4CB6", source: "Ignis Est" } + +1492.4 "Loaded Gunshield" Ability { id: "4CD8", source: "Varis Yae Galvus" } +1501.6 "--sync--" Ability { id: "4CE[56]", source: "Varis Yae Galvus" } +1502.4 "Fortius" Ability { id: "4CE7", source: "Varis Yae Galvus" } +1514.1 "--sync--" Ability { id: "4CDE", source: "Varis Yae Galvus" } +1517.2 "Magitek Burst" Ability { id: "4CDF", source: "Varis Yae Galvus" } + +1522.4 "Festina Lente" Ability { id: "4CC9", source: "Varis Yae Galvus" } +1533.7 "Citius" Ability { id: "4CF0", source: "Varis Yae Galvus" } +1542.5 "--clones appear--" Ability { id: "4CB3", source: "Phantom Varis" } +1547.0 "Electrified Gunshield" Ability { id: "4CD7", source: "Varis Yae Galvus" } +1556.3 "--sync--" Ability { id: "4CE[56]", source: "Varis Yae Galvus" } +1557.1 "Fortius" Ability { id: "4CE7", source: "Varis Yae Galvus" } +1571.3 "Terminus Est" Ability { id: "4CB4", source: "Terminus Est" } +1573.6 "Magitek Shock" Ability { id: "4CDA", source: "Varis Yae Galvus" } + +1579.7 "--sync--" StartsUsing { id: "4CA9", source: "Varis Yae Galvus" } window 30,30 +1589.7 "Altius Enrage" Ability { id: "4CA9", source: "Varis Yae Galvus" } diff --git a/ui/raidboss/data/05-shb/trial/wol-ex.txt b/ui/raidboss/data/05-shb/trial/wol-ex.txt index 4440720939..4a619c2223 100644 --- a/ui/raidboss/data/05-shb/trial/wol-ex.txt +++ b/ui/raidboss/data/05-shb/trial/wol-ex.txt @@ -26,424 +26,424 @@ hideall "--Reset--" hideall "Limit Break" ### Phase 1: Warmup -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.7 "Terror Unleashed" sync / 1[56]:[^:]*:Warrior Of Light:4F09:/ window 20,20 -15.8 "To The Limit 3" sync / 1[56]:[^:]*:Warrior Of Light:4F36:/ -27.6 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -32.1 "Absolute Stone III" sync / 1[56]:[^:]*:Warrior Of Light:4F2C:/ -41.2 "Limit Break" sync / 1[56]:[^:]*:Warrior Of Light:4EFB:/ -41.3 "Radiant Meteor" sync / 1[56]:[^:]*:Warrior Of Light:4EFC:/ -49.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -54.6 "Imbued Stone" sync / 1[56]:[^:]*:Warrior Of Light:4EF6:/ -63.7 "Imbued Fire/Ice" sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ -76.8 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[9A]:/ -84.0 "To The Limit 2" sync / 1[56]:[^:]*:Warrior Of Light:4F35:/ -92.1 "Sword Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F42:/ -109.4 "Absolute Holy" sync / 1[56]:[^:]*:Warrior Of Light:4F2B:/ -110.4 "Shining Wave" sync / 1[56]:[^:]*:Warrior Of Light:4F08:/ -118.6 "Limit Break" sync / 1[56]:[^:]*:Warrior Of Light:53CB:/ -119.0 "Radiant Desperado 1" sync / 1[56]:[^:]*:Warrior Of Light:4EF9:/ -123.3 "Radiant Desperado 2" sync / 1[56]:[^:]*:Warrior Of Light:4EFA:/ -127.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -132.7 "To The Limit 1" sync / 1[56]:[^:]*:Warrior Of Light:4F34:/ -140.8 "Imbued Holy" sync / 1[56]:[^:]*:Warrior Of Light:4EF5:/ -149.9 "Imbued Ice/Fire" sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ -163.0 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[9A]:/ -173.1 "Limit Break" sync / 1[56]:[^:]*:Warrior Of Light:515C:/ -173.4 "Radiant Braver" sync / 1[56]:[^:]*:Warrior Of Light:4EF7:/ -186.5 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ -192.7 "Summon Wyrm" sync / 1[56]:[^:]*:Warrior Of Light:4F41:/ -198.8 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -200.8 "Absolute Flash" sync / 1[56]:[^:]*:Warrior Of Light:4F2F:/ -202.9 "Cauterize" sync / 1[56]:[^:]*:Wyrm Of Light:4F07:/ -209.0 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.7 "Terror Unleashed" Ability { id: "4F09", source: "Warrior Of Light" } window 20,20 +15.8 "To The Limit 3" Ability { id: "4F36", source: "Warrior Of Light" } +27.6 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +32.1 "Absolute Stone III" Ability { id: "4F2C", source: "Warrior Of Light" } +41.2 "Limit Break" Ability { id: "4EFB", source: "Warrior Of Light" } +41.3 "Radiant Meteor" Ability { id: "4EFC", source: "Warrior Of Light" } +49.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +54.6 "Imbued Stone" Ability { id: "4EF6", source: "Warrior Of Light" } +63.7 "Imbued Fire/Ice" Ability { id: "4EF[34]", source: "Warrior Of Light" } +76.8 "Imbued Coruscance" Ability { id: "4F4[9A]", source: "Warrior Of Light" } +84.0 "To The Limit 2" Ability { id: "4F35", source: "Warrior Of Light" } +92.1 "Sword Of Light" Ability { id: "4F42", source: "Warrior Of Light" } +109.4 "Absolute Holy" Ability { id: "4F2B", source: "Warrior Of Light" } +110.4 "Shining Wave" Ability { id: "4F08", source: "Warrior Of Light" } +118.6 "Limit Break" Ability { id: "53CB", source: "Warrior Of Light" } +119.0 "Radiant Desperado 1" Ability { id: "4EF9", source: "Warrior Of Light" } +123.3 "Radiant Desperado 2" Ability { id: "4EFA", source: "Warrior Of Light" } +127.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +132.7 "To The Limit 1" Ability { id: "4F34", source: "Warrior Of Light" } +140.8 "Imbued Holy" Ability { id: "4EF5", source: "Warrior Of Light" } +149.9 "Imbued Ice/Fire" Ability { id: "4EF[34]", source: "Warrior Of Light" } +163.0 "Imbued Coruscance" Ability { id: "4F4[9A]", source: "Warrior Of Light" } +173.1 "Limit Break" Ability { id: "515C", source: "Warrior Of Light" } +173.4 "Radiant Braver" Ability { id: "4EF7", source: "Warrior Of Light" } +186.5 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } +192.7 "Summon Wyrm" Ability { id: "4F41", source: "Warrior Of Light" } +198.8 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +200.8 "Absolute Flash" Ability { id: "4F2F", source: "Warrior Of Light" } +202.9 "Cauterize" Ability { id: "4F07", source: "Wyrm Of Light" } +209.0 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } ### Phase 2: Adds -217.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -222.8 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ window 300,10 +217.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +222.8 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } window 300,10 225.9 "--untargetable--" -226.0 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:5151:/ +226.0 "--sync--" Ability { id: "5151", source: "Warrior Of Light" } 231.2 "--adds targetable--" -239.3 "Deluge Of Death" sync / 1[56]:[^:]*:Spectral Bard:4F3B:/ -241.3 "Twincast" sync / 1[56]:[^:]*:Spectral Black Mage:4F3D:/ -243.3 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:4F39:/ -244.0 "--sync--" sync / 1[56]:[^:]*:Spectral White Mage:531E:/ -245.4 "Fatal Cleave" sync / 1[56]:[^:]*:Spectral Warrior:5154:/ -245.4 "Blade Of Shadow" sync / 1[56]:[^:]*:Spectral Dark Knight:5157:/ -246.3 "Summon" sync / 1[56]:[^:]*:Spectral Summoner:4F3F:/ -247.4 "Deluge Of Death" sync / 1[56]:[^:]*:Spectral Bard:4F02:/ -251.0 "--sync--" sync / 1[56]:[^:]*:Spectral Bard:531E:/ -251.4 "Katon: San" sync / 1[56]:[^:]*:Spectral Ninja:4EFE:/ -253.4 "Meteor Impact" sync / 1[56]:[^:]*:Spectral Black Mage:5098:/ -255.1 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:531E:/ -258.4 "Berserk" #sync / 1[56]:[^:]*:Spectral Warrior:5156:/ -258.4 "Deep Darkside" #sync / 1[56]:[^:]*:Spectral Dark Knight:5158:/ -260.4 "Flare Breath" sync / 1[56]:[^:]*:Spectral Summoner:4F40:/ -266.2 "--sync--" sync / 1[56]:[^:]*:Spectral Summoner:531E:/ - -272.6 "Fatal Cleave" sync / 1[56]:[^:]*:Spectral Warrior:5154:/ -272.6 "Blade Of Shadow" sync / 1[56]:[^:]*:Spectral Dark Knight:5157:/ - -288.8 "Fatal Cleave" sync / 1[56]:[^:]*:Spectral Warrior:5154:/ -288.8 "Blade Of Shadow" sync / 1[56]:[^:]*:Spectral Dark Knight:5157:/ - -305.4 "Fatal Cleave" sync / 1[56]:[^:]*:Spectral Warrior:5154:/ -305.4 "Blade Of Shadow" sync / 1[56]:[^:]*:Spectral Dark Knight:5157:/ +239.3 "Deluge Of Death" Ability { id: "4F3B", source: "Spectral Bard" } +241.3 "Twincast" Ability { id: "4F3D", source: "Spectral Black Mage" } +243.3 "--sync--" Ability { id: "4F39", source: "Spectral Ninja" } +244.0 "--sync--" Ability { id: "531E", source: "Spectral White Mage" } +245.4 "Fatal Cleave" Ability { id: "5154", source: "Spectral Warrior" } +245.4 "Blade Of Shadow" Ability { id: "5157", source: "Spectral Dark Knight" } +246.3 "Summon" Ability { id: "4F3F", source: "Spectral Summoner" } +247.4 "Deluge Of Death" Ability { id: "4F02", source: "Spectral Bard" } +251.0 "--sync--" Ability { id: "531E", source: "Spectral Bard" } +251.4 "Katon: San" Ability { id: "4EFE", source: "Spectral Ninja" } +253.4 "Meteor Impact" Ability { id: "5098", source: "Spectral Black Mage" } +255.1 "--sync--" Ability { id: "531E", source: "Spectral Ninja" } +258.4 "Berserk" #Ability { id: "5156", source: "Spectral Warrior" } +258.4 "Deep Darkside" #Ability { id: "5158", source: "Spectral Dark Knight" } +260.4 "Flare Breath" Ability { id: "4F40", source: "Spectral Summoner" } +266.2 "--sync--" Ability { id: "531E", source: "Spectral Summoner" } + +272.6 "Fatal Cleave" Ability { id: "5154", source: "Spectral Warrior" } +272.6 "Blade Of Shadow" Ability { id: "5157", source: "Spectral Dark Knight" } + +288.8 "Fatal Cleave" Ability { id: "5154", source: "Spectral Warrior" } +288.8 "Blade Of Shadow" Ability { id: "5157", source: "Spectral Dark Knight" } + +305.4 "Fatal Cleave" Ability { id: "5154", source: "Spectral Warrior" } +305.4 "Blade Of Shadow" Ability { id: "5157", source: "Spectral Dark Knight" } # ??? enrage ### Phase 3: Random Summons -500.0 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:5152:/ window 500,0 -506.1 "Ultimate Crossover" sync / 1[56]:[^:]*:Warrior Of Light:5153:/ +500.0 "--sync--" Ability { id: "5152", source: "Warrior Of Light" } window 500,0 +506.1 "Ultimate Crossover" Ability { id: "5153", source: "Warrior Of Light" } 513.1 "--targetable--" -517.3 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +517.3 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # BLM/WHM -519.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F73:/ window 5,5 jump 1519.5 -522.6 "Specter -> BLM/WHM" #sync / 1[56]:[^:]*:Warrior Of Light:4F73:/ -527.8 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ window 40,40 jump 1527.8 +519.6 "--sync--" StartsUsing { id: "4F73", source: "Warrior Of Light" } window 5,5 jump 1519.5 +522.6 "Specter -> BLM/WHM" #Ability { id: "4F73", source: "Warrior Of Light" } +527.8 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } window 40,40 jump 1527.8 # DRK/BRD -519.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[456]:/ window 5,5 jump 2519.6 -522.6 "Limit -> DRK/BRD" #sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -534.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ window 40,40 jump 2534.0 +519.6 "--sync--" StartsUsing { id: "4F3[456]", source: "Warrior Of Light" } window 5,5 jump 2519.6 +522.6 "Limit -> DRK/BRD" #Ability { id: "4F3[456]", source: "Warrior Of Light" } +534.0 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } window 40,40 jump 2534.0 # NIN -519.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ window 40,40 jump 3519.6 -522.6 "Stone/Holy -> NIN" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ +519.6 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } window 40,40 jump 3519.6 +522.6 "Stone/Holy -> NIN" #Ability { id: "4EF[56]", source: "Warrior Of Light" } # SMN/WAR -519.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ window 40,40 jump 4519.7 -522.6 "Fire/Ice -> SMN/WAR" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ +519.6 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } window 40,40 jump 4519.7 +522.6 "Fire/Ice -> SMN/WAR" #Ability { id: "4EF[34]", source: "Warrior Of Light" } ### Phase 3a: BLM/WHM -1517.3 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -1519.5 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F37:/ -1522.5 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -1525.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[56]:/ -1527.8 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ -1528.6 "To The Limit" sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -1530.8 "Twincast" sync / 1[56]:[^:]*:Spectral Black Mage:4F3D:/ -1533.2 "--sync--" sync / 1[56]:[^:]*:Spectral White Mage:531E:/ -1533.2 "--sync--" sync / 1[56]:[^:]*:Spectral Black Mage:531E:/ -1545.3 "Meteor Impact 1" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -1547.3 "Meteor Impact 2" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -1549.4 "Meteor Impact 3" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -1551.4 "Meteor Impact 4" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -1553.4 "Meteor Impact 5" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -1555.4 "Meteor Impact 6" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -1557.4 "Meteor Impact 7" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -1557.8 "Summon Wyrm" sync / 1[56]:[^:]*:Warrior Of Light:4F41:/ -1559.4 "Meteor Impact 8" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -1567.9 "Coruscant Saber" sync / 1[56]:[^:]*:Warrior Of Light:4EF[12]:/ -1568.0 "Cauterize" sync / 1[56]:[^:]*:Wyrm Of Light:4F07:/ -1580.2 "Limit Break" sync / 1[56]:[^:]*:Warrior Of Light:(4EFB|53CB|515C):/ +1517.3 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +1519.5 "--sync--" StartsUsing { id: "4F37", source: "Warrior Of Light" } +1522.5 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +1525.6 "--sync--" StartsUsing { id: "4F3[56]", source: "Warrior Of Light" } +1527.8 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } +1528.6 "To The Limit" Ability { id: "4F3[456]", source: "Warrior Of Light" } +1530.8 "Twincast" Ability { id: "4F3D", source: "Spectral Black Mage" } +1533.2 "--sync--" Ability { id: "531E", source: "Spectral White Mage" } +1533.2 "--sync--" Ability { id: "531E", source: "Spectral Black Mage" } +1545.3 "Meteor Impact 1" #Ability { id: "4F03", source: "Spectral Black Mage" } +1547.3 "Meteor Impact 2" #Ability { id: "4F03", source: "Spectral Black Mage" } +1549.4 "Meteor Impact 3" #Ability { id: "4F03", source: "Spectral Black Mage" } +1551.4 "Meteor Impact 4" #Ability { id: "4F03", source: "Spectral Black Mage" } +1553.4 "Meteor Impact 5" #Ability { id: "4F03", source: "Spectral Black Mage" } +1555.4 "Meteor Impact 6" #Ability { id: "4F03", source: "Spectral Black Mage" } +1557.4 "Meteor Impact 7" #Ability { id: "4F03", source: "Spectral Black Mage" } +1557.8 "Summon Wyrm" Ability { id: "4F41", source: "Warrior Of Light" } +1559.4 "Meteor Impact 8" #Ability { id: "4F03", source: "Spectral Black Mage" } +1567.9 "Coruscant Saber" Ability { id: "4EF[12]", source: "Warrior Of Light" } +1568.0 "Cauterize" Ability { id: "4F07", source: "Wyrm Of Light" } +1580.2 "Limit Break" Ability { id: ["4EFB", "53CB", "515C"], source: "Warrior Of Light" } ### TODO: bitter end gets moved up 0.5s if it's meteor??? -1593.1 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F0A:/ window 10,10 -1598.1 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ - -1605.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -1619.6 "Quintuplecast" sync / 1[56]:[^:]*:Warrior Of Light:4EEF:/ -1622.8 "Cast 1" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -1625.9 "Cast 2" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -1629.0 "Cast 3" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -1632.1 "Cast 4" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -1635.2 "Cast 5" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -1650.2 "Shining Wave" sync / 1[56]:[^:]*:Warrior Of Light:4F08:/ -1651.4 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ -1661.7 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +1593.1 "--sync--" StartsUsing { id: "4F0A", source: "Warrior Of Light" } window 10,10 +1598.1 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } + +1605.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +1619.6 "Quintuplecast" Ability { id: "4EEF", source: "Warrior Of Light" } +1622.8 "Cast 1" Ability { id: "4EF0", source: "Warrior Of Light" } +1625.9 "Cast 2" Ability { id: "4EF0", source: "Warrior Of Light" } +1629.0 "Cast 3" Ability { id: "4EF0", source: "Warrior Of Light" } +1632.1 "Cast 4" Ability { id: "4EF0", source: "Warrior Of Light" } +1635.2 "Cast 5" Ability { id: "4EF0", source: "Warrior Of Light" } +1650.2 "Shining Wave" Ability { id: "4F08", source: "Warrior Of Light" } +1651.4 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } +1661.7 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # DRK/BRD -1664.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[456]:/ window 5,5 jump 7002.2 -1667.0 "Limit -> DRK/BRD" #sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -1678.3 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ window 40,40 jump 7016.6 +1664.0 "--sync--" StartsUsing { id: "4F3[456]", source: "Warrior Of Light" } window 5,5 jump 7002.2 +1667.0 "Limit -> DRK/BRD" #Ability { id: "4F3[456]", source: "Warrior Of Light" } +1678.3 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } window 40,40 jump 7016.6 # NIN -1664.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ window 40,40 jump 8002.3 -1667.0 "Stone/Holy -> NIN" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ +1664.0 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } window 40,40 jump 8002.3 +1667.0 "Stone/Holy -> NIN" #Ability { id: "4EF[56]", source: "Warrior Of Light" } # SMN/WAR -1664.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ window 40,40 jump 9002.3 -1667.0 "Fire/Ice -> SMN/WAR" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ +1664.0 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } window 40,40 jump 9002.3 +1667.0 "Fire/Ice -> SMN/WAR" #Ability { id: "4EF[34]", source: "Warrior Of Light" } ### Phase 3a: DRK/BRD -2517.3 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -2519.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[46]:/ -2522.6 "To The Limit" sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -2530.8 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -2534.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ -2537.0 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:4F43:/ -2540.6 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -2544.1 "Brimstone Earth" sync / 1[56]:[^:]*:Spectral Dark Knight:4F3A:/ -2547.4 "--sync--" sync / 1[56]:[^:]*:Spectral Dark Knight:531E:/ -2548.4 "Deluge Of Death" sync / 1[56]:[^:]*:Spectral Bard:4F3B:/ -2552.0 "--sync--" sync / 1[56]:[^:]*:Spectral Bard:531E:/ -2556.6 "Absolute Holy" sync / 1[56]:[^:]*:Warrior Of Light:4F2B:/ -2556.6 "Deluge Of Death" sync / 1[56]:[^:]*:Spectral Bard:4F02:/ -2563.6 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -2571.8 "Limit Break" sync / 1[56]:[^:]*:Warrior Of Light:(4EFB|53CB|515C):/ -2584.1 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F0A:/ window 10,10 -2589.1 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ - -2596.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -2610.6 "Quintuplecast" sync / 1[56]:[^:]*:Warrior Of Light:4EEF:/ -2613.8 "Cast 1" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -2616.9 "Cast 2" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -2620.0 "Cast 3" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -2623.1 "Cast 4" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -2626.2 "Cast 5" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -2641.2 "Shining Wave" sync / 1[56]:[^:]*:Warrior Of Light:4F08:/ -2642.4 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ -2652.7 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +2517.3 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +2519.6 "--sync--" StartsUsing { id: "4F3[46]", source: "Warrior Of Light" } +2522.6 "To The Limit" Ability { id: "4F3[456]", source: "Warrior Of Light" } +2530.8 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +2534.0 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } +2537.0 "--sync--" Ability { id: "4F43", source: "Warrior Of Light" } +2540.6 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +2544.1 "Brimstone Earth" Ability { id: "4F3A", source: "Spectral Dark Knight" } +2547.4 "--sync--" Ability { id: "531E", source: "Spectral Dark Knight" } +2548.4 "Deluge Of Death" Ability { id: "4F3B", source: "Spectral Bard" } +2552.0 "--sync--" Ability { id: "531E", source: "Spectral Bard" } +2556.6 "Absolute Holy" Ability { id: "4F2B", source: "Warrior Of Light" } +2556.6 "Deluge Of Death" Ability { id: "4F02", source: "Spectral Bard" } +2563.6 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +2571.8 "Limit Break" Ability { id: ["4EFB", "53CB", "515C"], source: "Warrior Of Light" } +2584.1 "--sync--" StartsUsing { id: "4F0A", source: "Warrior Of Light" } window 10,10 +2589.1 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } + +2596.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +2610.6 "Quintuplecast" Ability { id: "4EEF", source: "Warrior Of Light" } +2613.8 "Cast 1" Ability { id: "4EF0", source: "Warrior Of Light" } +2616.9 "Cast 2" Ability { id: "4EF0", source: "Warrior Of Light" } +2620.0 "Cast 3" Ability { id: "4EF0", source: "Warrior Of Light" } +2623.1 "Cast 4" Ability { id: "4EF0", source: "Warrior Of Light" } +2626.2 "Cast 5" Ability { id: "4EF0", source: "Warrior Of Light" } +2641.2 "Shining Wave" Ability { id: "4F08", source: "Warrior Of Light" } +2642.4 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } +2652.7 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # BLM/WHM -2655.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F73:/ window 5,5 jump 6002.4 -2658.0 "Specter -> BLM/WHM" #sync / 1[56]:[^:]*:Warrior Of Light:4F73:/ -2663.4 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ window 40,40 jump 6010.7 +2655.0 "--sync--" StartsUsing { id: "4F73", source: "Warrior Of Light" } window 5,5 jump 6002.4 +2658.0 "Specter -> BLM/WHM" #Ability { id: "4F73", source: "Warrior Of Light" } +2663.4 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } window 40,40 jump 6010.7 # NIN -2655.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ window 40,40 jump 8002.3 -2658.0 "Stone/Holy -> NIN" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ +2655.0 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } window 40,40 jump 8002.3 +2658.0 "Stone/Holy -> NIN" #Ability { id: "4EF[56]", source: "Warrior Of Light" } # SMN/WAR -2655.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ window 40,40 jump 9002.3 -2658.0 "Fire/Ice -> SMN/WAR" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ +2655.0 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } window 40,40 jump 9002.3 +2658.0 "Fire/Ice -> SMN/WAR" #Ability { id: "4EF[34]", source: "Warrior Of Light" } ### Phase 3a: NIN -3517.3 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -3519.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ -3522.6 "Imbued Stone/Holy" sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ -3531.7 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -3540.0 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:4F38:/ -3547.1 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:4F39:/ -3550.5 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -3554.1 "Suiton: San" sync / 1[56]:[^:]*:Spectral Ninja:4EFD:/ -3557.2 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -3557.2 "Katon: San" sync / 1[56]:[^:]*:Spectral Ninja:4EFE:/ -3558.0 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:531E:/ -3566.6 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[9A]:/ -3575.7 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ -3589.0 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ - -3596.3 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -3610.5 "Quintuplecast" sync / 1[56]:[^:]*:Warrior Of Light:4EEF:/ -3613.7 "Cast 1" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -3616.8 "Cast 2" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -3619.9 "Cast 3" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -3623.0 "Cast 4" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -3626.1 "Cast 5" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -3641.1 "Shining Wave" sync / 1[56]:[^:]*:Warrior Of Light:4F08:/ -3642.3 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ -3652.6 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +3517.3 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +3519.6 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } +3522.6 "Imbued Stone/Holy" Ability { id: "4EF[56]", source: "Warrior Of Light" } +3531.7 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +3540.0 "--sync--" Ability { id: "4F38", source: "Spectral Ninja" } +3547.1 "--sync--" Ability { id: "4F39", source: "Spectral Ninja" } +3550.5 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +3554.1 "Suiton: San" Ability { id: "4EFD", source: "Spectral Ninja" } +3557.2 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +3557.2 "Katon: San" Ability { id: "4EFE", source: "Spectral Ninja" } +3558.0 "--sync--" Ability { id: "531E", source: "Spectral Ninja" } +3566.6 "Imbued Coruscance" Ability { id: "4F4[9A]", source: "Warrior Of Light" } +3575.7 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } +3589.0 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } + +3596.3 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +3610.5 "Quintuplecast" Ability { id: "4EEF", source: "Warrior Of Light" } +3613.7 "Cast 1" Ability { id: "4EF0", source: "Warrior Of Light" } +3616.8 "Cast 2" Ability { id: "4EF0", source: "Warrior Of Light" } +3619.9 "Cast 3" Ability { id: "4EF0", source: "Warrior Of Light" } +3623.0 "Cast 4" Ability { id: "4EF0", source: "Warrior Of Light" } +3626.1 "Cast 5" Ability { id: "4EF0", source: "Warrior Of Light" } +3641.1 "Shining Wave" Ability { id: "4F08", source: "Warrior Of Light" } +3642.3 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } +3652.6 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # BLM/WHM -3654.9 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F73:/ window 5,5 jump 6002.4 -3657.9 "Specter -> BLM/WHM" #sync / 1[56]:[^:]*:Warrior Of Light:4F73:/ -3663.3 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ window 40,40 jump 6010.7 +3654.9 "--sync--" StartsUsing { id: "4F73", source: "Warrior Of Light" } window 5,5 jump 6002.4 +3657.9 "Specter -> BLM/WHM" #Ability { id: "4F73", source: "Warrior Of Light" } +3663.3 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } window 40,40 jump 6010.7 # DRK/BRD -3654.9 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[456]:/ window 5,5 jump 7002.2 -3657.9 "Limit -> DRK/BRD" #sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -3669.2 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ window 40,40 jump 7016.6 +3654.9 "--sync--" StartsUsing { id: "4F3[456]", source: "Warrior Of Light" } window 5,5 jump 7002.2 +3657.9 "Limit -> DRK/BRD" #Ability { id: "4F3[456]", source: "Warrior Of Light" } +3669.2 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } window 40,40 jump 7016.6 # SMN/WAR -3654.9 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ window 40,40 jump 9002.3 -3657.9 "Fire/Ice -> SMN/WAR" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ +3654.9 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } window 40,40 jump 9002.3 +3657.9 "Fire/Ice -> SMN/WAR" #Ability { id: "4EF[34]", source: "Warrior Of Light" } ### Phase 3a: SMN/WAR -4517.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -4519.7 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ -4522.7 "Imbued Fire/Ice" sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ -4531.9 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -4540.2 "Summon" sync / 1[56]:[^:]*:Spectral Summoner:4F3F:/ -4554.4 "Flare Breath" sync / 1[56]:[^:]*:Spectral Summoner:4F40:/ -4554.7 "Perfect Decimation" sync / 1[56]:[^:]*:(Spectral Warrior|Warrior Of Light):4F05:/ -4554.9 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -4566.1 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -4566.5 "Flare Breath" sync / 1[56]:[^:]*:Spectral Summoner:4F40:/ -4566.9 "Perfect Decimation" sync / 1[56]:[^:]*:(Spectral Warrior|Warrior Of Light):4F05:/ -4568.2 "--sync--" sync / 1[56]:[^:]*:Spectral Warrior:531E:/ -4572.4 "--sync--" sync / 1[56]:[^:]*:Spectral Summoner:531E:/ -4572.8 "Summon Wyrm" sync / 1[56]:[^:]*:Warrior Of Light:4F41:/ -4576.0 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -4583.1 "Cauterize" sync / 1[56]:[^:]*:Wyrm Of Light:4F07:/ -4585.2 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[9A]:/ -4594.3 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ -4607.6 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ - -4614.9 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -4629.1 "Quintuplecast" sync / 1[56]:[^:]*:Warrior Of Light:4EEF:/ -4632.3 "Cast 1" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -4635.4 "Cast 2" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -4638.5 "Cast 3" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -4641.6 "Cast 4" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -4644.7 "Cast 5" sync / 1[56]:[^:]*:Warrior Of Light:4EF0:/ -4659.7 "Shining Wave" sync / 1[56]:[^:]*:Warrior Of Light:4F08:/ -4660.9 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ -4671.2 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +4517.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +4519.7 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } +4522.7 "Imbued Fire/Ice" Ability { id: "4EF[34]", source: "Warrior Of Light" } +4531.9 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +4540.2 "Summon" Ability { id: "4F3F", source: "Spectral Summoner" } +4554.4 "Flare Breath" Ability { id: "4F40", source: "Spectral Summoner" } +4554.7 "Perfect Decimation" Ability { id: "4F05", source: ["Spectral Warrior", "Warrior Of Light"] } +4554.9 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +4566.1 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +4566.5 "Flare Breath" Ability { id: "4F40", source: "Spectral Summoner" } +4566.9 "Perfect Decimation" Ability { id: "4F05", source: ["Spectral Warrior", "Warrior Of Light"] } +4568.2 "--sync--" Ability { id: "531E", source: "Spectral Warrior" } +4572.4 "--sync--" Ability { id: "531E", source: "Spectral Summoner" } +4572.8 "Summon Wyrm" Ability { id: "4F41", source: "Warrior Of Light" } +4576.0 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +4583.1 "Cauterize" Ability { id: "4F07", source: "Wyrm Of Light" } +4585.2 "Imbued Coruscance" Ability { id: "4F4[9A]", source: "Warrior Of Light" } +4594.3 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } +4607.6 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } + +4614.9 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +4629.1 "Quintuplecast" Ability { id: "4EEF", source: "Warrior Of Light" } +4632.3 "Cast 1" Ability { id: "4EF0", source: "Warrior Of Light" } +4635.4 "Cast 2" Ability { id: "4EF0", source: "Warrior Of Light" } +4638.5 "Cast 3" Ability { id: "4EF0", source: "Warrior Of Light" } +4641.6 "Cast 4" Ability { id: "4EF0", source: "Warrior Of Light" } +4644.7 "Cast 5" Ability { id: "4EF0", source: "Warrior Of Light" } +4659.7 "Shining Wave" Ability { id: "4F08", source: "Warrior Of Light" } +4660.9 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } +4671.2 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # BLM/WHM -4673.5 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F73:/ window 5,5 jump 6002.4 -4676.5 "Specter -> BLM/WHM" #sync / 1[56]:[^:]*:Warrior Of Light:4F73:/ -4681.9 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ window 40,40 jump 6010.7 +4673.5 "--sync--" StartsUsing { id: "4F73", source: "Warrior Of Light" } window 5,5 jump 6002.4 +4676.5 "Specter -> BLM/WHM" #Ability { id: "4F73", source: "Warrior Of Light" } +4681.9 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } window 40,40 jump 6010.7 # DRK/BRD -4673.5 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[456]:/ window 5,5 jump 7002.2 -4676.5 "Limit -> DRK/BRD" #sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -4687.8 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ window 40,40 jump 7016.6 +4673.5 "--sync--" StartsUsing { id: "4F3[456]", source: "Warrior Of Light" } window 5,5 jump 7002.2 +4676.5 "Limit -> DRK/BRD" #Ability { id: "4F3[456]", source: "Warrior Of Light" } +4687.8 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } window 40,40 jump 7016.6 # NIN -4673.5 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ window 40,40 jump 8002.3 -4676.5 "Stone/Holy -> NIN" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ +4673.5 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } window 40,40 jump 8002.3 +4676.5 "Stone/Holy -> NIN" #Ability { id: "4EF[56]", source: "Warrior Of Light" } ### Phase 3b: BLM/WHM -6000.0 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -6002.4 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F37:/ -6005.4 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -6008.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[56]:/ -6010.7 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ -6011.6 "To The Limit" sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -6013.7 "Twincast" sync / 1[56]:[^:]*:Spectral Black Mage:4F3D:/ -6016.2 "--sync--" sync / 1[56]:[^:]*:Spectral White Mage:531E:/ -6028.3 "Meteor Impact 1" #sync / 1[56]:[^:]*:Warrior Of Light:4F03:/ -6030.3 "Meteor Impact 2" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -6032.3 "Meteor Impact 3" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -6034.3 "Meteor Impact 4" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -6036.3 "Meteor Impact 5" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -6038.3 "Meteor Impact 6" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -6040.3 "Meteor Impact 7" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -6040.8 "Summon Wyrm" sync / 1[56]:[^:]*:Warrior Of Light:4F41:/ -6042.3 "Meteor Impact 8" #sync / 1[56]:[^:]*:Spectral Black Mage:4F03:/ -6050.9 "Coruscant Saber" sync / 1[56]:[^:]*:Warrior Of Light:4EF[12]:/ -6051.0 "Cauterize" sync / 1[56]:[^:]*:Wyrm Of Light:4F07:/ +6000.0 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +6002.4 "--sync--" StartsUsing { id: "4F37", source: "Warrior Of Light" } +6005.4 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +6008.6 "--sync--" StartsUsing { id: "4F3[56]", source: "Warrior Of Light" } +6010.7 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } +6011.6 "To The Limit" Ability { id: "4F3[456]", source: "Warrior Of Light" } +6013.7 "Twincast" Ability { id: "4F3D", source: "Spectral Black Mage" } +6016.2 "--sync--" Ability { id: "531E", source: "Spectral White Mage" } +6028.3 "Meteor Impact 1" #Ability { id: "4F03", source: "Warrior Of Light" } +6030.3 "Meteor Impact 2" #Ability { id: "4F03", source: "Spectral Black Mage" } +6032.3 "Meteor Impact 3" #Ability { id: "4F03", source: "Spectral Black Mage" } +6034.3 "Meteor Impact 4" #Ability { id: "4F03", source: "Spectral Black Mage" } +6036.3 "Meteor Impact 5" #Ability { id: "4F03", source: "Spectral Black Mage" } +6038.3 "Meteor Impact 6" #Ability { id: "4F03", source: "Spectral Black Mage" } +6040.3 "Meteor Impact 7" #Ability { id: "4F03", source: "Spectral Black Mage" } +6040.8 "Summon Wyrm" Ability { id: "4F41", source: "Warrior Of Light" } +6042.3 "Meteor Impact 8" #Ability { id: "4F03", source: "Spectral Black Mage" } +6050.9 "Coruscant Saber" Ability { id: "4EF[12]", source: "Warrior Of Light" } +6051.0 "Cauterize" Ability { id: "4F07", source: "Wyrm Of Light" } ### TODO: This is random (note: bitter end gets moved up 0.5s if it's meteor) -6063.1 "Limit Break" sync / 1[56]:[^:]*:Warrior Of Light:(4EFB|53CB|515C):/ -6075.9 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F0A:/ window 10,10 -6080.9 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ -6084.1 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +6063.1 "Limit Break" Ability { id: ["4EFB", "53CB", "515C"], source: "Warrior Of Light" } +6075.9 "--sync--" StartsUsing { id: "4F0A", source: "Warrior Of Light" } window 10,10 +6080.9 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } +6084.1 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # DRK/BRD -6086.4 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[456]:/ window 5,5 jump 7002.2 -6089.4 "Limit -> DRK/BRD" #sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -6100.7 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ window 40,40 jump 7016.6 +6086.4 "--sync--" StartsUsing { id: "4F3[456]", source: "Warrior Of Light" } window 5,5 jump 7002.2 +6089.4 "Limit -> DRK/BRD" #Ability { id: "4F3[456]", source: "Warrior Of Light" } +6100.7 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } window 40,40 jump 7016.6 # NIN -6086.4 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ window 40,40 jump 8002.3 -6089.4 "Stone/Holy -> NIN" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ +6086.4 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } window 40,40 jump 8002.3 +6089.4 "Stone/Holy -> NIN" #Ability { id: "4EF[56]", source: "Warrior Of Light" } # SMN/WAR -6086.4 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ window 40,40 jump 9002.3 -6089.4 "Fire/Ice -> SMN/WAR" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ +6086.4 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } window 40,40 jump 9002.3 +6089.4 "Fire/Ice -> SMN/WAR" #Ability { id: "4EF[34]", source: "Warrior Of Light" } ### Phase 3b: DRK/BRD -7000.0 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -7002.2 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[46]:/ -7005.2 "To The Limit" sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -7013.4 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -7016.6 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ -7019.6 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:4F43:/ -7023.2 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -7026.8 "Brimstone Earth" sync / 1[56]:[^:]*:Spectral Dark Knight:4F3A:/ -7030.1 "--sync--" sync / 1[56]:[^:]*:Spectral Dark Knight:531E:/ -7031.1 "Deluge Of Death" sync / 1[56]:[^:]*:Spectral Bard:4F3B:/ -7034.7 "--sync--" sync / 1[56]:[^:]*:Spectral Bard:531E:/ -7039.3 "Deluge Of Death" sync / 1[56]:[^:]*:Spectral Bard:4F02:/ -7039.3 "Absolute Holy" sync / 1[56]:[^:]*:Warrior Of Light:4F2B:/ -7046.3 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -7054.6 "Limit Break" sync / 1[56]:[^:]*:Warrior Of Light:(4EFB|53CB|515C):/ +7000.0 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +7002.2 "--sync--" StartsUsing { id: "4F3[46]", source: "Warrior Of Light" } +7005.2 "To The Limit" Ability { id: "4F3[456]", source: "Warrior Of Light" } +7013.4 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +7016.6 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } +7019.6 "--sync--" Ability { id: "4F43", source: "Warrior Of Light" } +7023.2 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +7026.8 "Brimstone Earth" Ability { id: "4F3A", source: "Spectral Dark Knight" } +7030.1 "--sync--" Ability { id: "531E", source: "Spectral Dark Knight" } +7031.1 "Deluge Of Death" Ability { id: "4F3B", source: "Spectral Bard" } +7034.7 "--sync--" Ability { id: "531E", source: "Spectral Bard" } +7039.3 "Deluge Of Death" Ability { id: "4F02", source: "Spectral Bard" } +7039.3 "Absolute Holy" Ability { id: "4F2B", source: "Warrior Of Light" } +7046.3 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +7054.6 "Limit Break" Ability { id: ["4EFB", "53CB", "515C"], source: "Warrior Of Light" } # TODO: guessing here -7066.8 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F0A:/ window 10,10 -7071.8 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ -7079.1 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +7066.8 "--sync--" StartsUsing { id: "4F0A", source: "Warrior Of Light" } window 10,10 +7071.8 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } +7079.1 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # BLM/WHM -7081.4 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F73:/ window 5,5 jump 6002.4 -7084.4 "Specter -> BLM/WHM" #sync / 1[56]:[^:]*:Warrior Of Light:4F73:/ -7089.8 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ window 40,40 jump 6010.7 +7081.4 "--sync--" StartsUsing { id: "4F73", source: "Warrior Of Light" } window 5,5 jump 6002.4 +7084.4 "Specter -> BLM/WHM" #Ability { id: "4F73", source: "Warrior Of Light" } +7089.8 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } window 40,40 jump 6010.7 # NIN -7081.4 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ window 40,40 jump 8002.3 -7084.4 "Stone/Holy -> NIN" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ +7081.4 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } window 40,40 jump 8002.3 +7084.4 "Stone/Holy -> NIN" #Ability { id: "4EF[56]", source: "Warrior Of Light" } # SMN/WAR -7081.4 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ window 40,40 jump 9002.3 -7084.4 "Fire/Ice -> SMN/WAR" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ +7081.4 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } window 40,40 jump 9002.3 +7084.4 "Fire/Ice -> SMN/WAR" #Ability { id: "4EF[34]", source: "Warrior Of Light" } ### Phase 3b: NIN -8000.0 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -8002.3 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ -8005.3 "Imbued Stone/Holy" sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ -8014.4 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -8022.7 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:4F38:/ -8029.8 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:4F39:/ -8033.2 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -8036.8 "Suiton: San " sync / 1[56]:[^:]*:Spectral Ninja:4EFD:/ -8039.8 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -8039.9 "Katon: San " sync / 1[56]:[^:]*:Spectral Ninja:4EFE:/ -8040.7 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:531E:/ -8049.1 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[9A]:/ -8058.2 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ -8071.5 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ -8074.7 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +8000.0 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +8002.3 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } +8005.3 "Imbued Stone/Holy" Ability { id: "4EF[56]", source: "Warrior Of Light" } +8014.4 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +8022.7 "--sync--" Ability { id: "4F38", source: "Spectral Ninja" } +8029.8 "--sync--" Ability { id: "4F39", source: "Spectral Ninja" } +8033.2 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +8036.8 "Suiton: San " Ability { id: "4EFD", source: "Spectral Ninja" } +8039.8 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +8039.9 "Katon: San " Ability { id: "4EFE", source: "Spectral Ninja" } +8040.7 "--sync--" Ability { id: "531E", source: "Spectral Ninja" } +8049.1 "Imbued Coruscance" Ability { id: "4F4[9A]", source: "Warrior Of Light" } +8058.2 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } +8071.5 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } +8074.7 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # BLM/WHM -8077.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F73:/ window 5,5 jump 6002.4 -8080.0 "Specter -> BLM/WHM" #sync / 1[56]:[^:]*:Warrior Of Light:4F73:/ -8085.4 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ window 40,40 jump 6010.7 +8077.0 "--sync--" StartsUsing { id: "4F73", source: "Warrior Of Light" } window 5,5 jump 6002.4 +8080.0 "Specter -> BLM/WHM" #Ability { id: "4F73", source: "Warrior Of Light" } +8085.4 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } window 40,40 jump 6010.7 # DRK/BRD -8077.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[456]:/ window 5,5 jump 7002.2 -8080.0 "Limit -> DRK/BRD" #sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -8091.3 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ window 40,40 jump 7016.6 +8077.0 "--sync--" StartsUsing { id: "4F3[456]", source: "Warrior Of Light" } window 5,5 jump 7002.2 +8080.0 "Limit -> DRK/BRD" #Ability { id: "4F3[456]", source: "Warrior Of Light" } +8091.3 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } window 40,40 jump 7016.6 # SMN/WAR -8077.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ window 40,40 jump 9002.3 -8080.0 "Fire/Ice -> SMN/WAR" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ +8077.0 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } window 40,40 jump 9002.3 +8080.0 "Fire/Ice -> SMN/WAR" #Ability { id: "4EF[34]", source: "Warrior Of Light" } ### Phase 3b: SMN/WAR -9000.0 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -9002.3 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[34]:/ -9005.3 "Imbued Fire/Ice" sync / 1[56]:[^:]*:Warrior Of Light:4EF[34]:/ -9014.3 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -9022.6 "Summon" sync / 1[56]:[^:]*:Spectral Summoner:4F3F:/ -9036.7 "Flare Breath" sync / 1[56]:[^:]*:Spectral Summoner:4F40:/ -9037.0 "Perfect Decimation" sync / 1[56]:[^:]*:(Spectral Warrior|Warrior Of Light):4F05:/ -9037.2 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -9048.5 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F0C:/ -9048.8 "Flare Breath" sync / 1[56]:[^:]*:Spectral Summoner:4F40:/ -9049.2 "Perfect Decimation" sync / 1[56]:[^:]*:(Spectral Warrior|Warrior Of Light):4F05:/ -9050.8 "--sync--" sync / 1[56]:[^:]*:Spectral Warrior:531E:/ -9054.8 "--sync--" sync / 1[56]:[^:]*:Spectral Summoner:531E:/ -9055.2 "Summon Wyrm" sync / 1[56]:[^:]*:Warrior Of Light:4F41:/ -9058.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -9065.5 "Cauterize" sync / 1[56]:[^:]*:Wyrm Of Light:4F07:/ -9067.8 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[9A]:/ -9076.9 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F0B:/ -9090.2 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F0A:/ -9093.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ +9000.0 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +9002.3 "--sync--" StartsUsing { id: "4EF[34]", source: "Warrior Of Light" } +9005.3 "Imbued Fire/Ice" Ability { id: "4EF[34]", source: "Warrior Of Light" } +9014.3 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +9022.6 "Summon" Ability { id: "4F3F", source: "Spectral Summoner" } +9036.7 "Flare Breath" Ability { id: "4F40", source: "Spectral Summoner" } +9037.0 "Perfect Decimation" Ability { id: "4F05", source: ["Spectral Warrior", "Warrior Of Light"] } +9037.2 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +9048.5 "Solemn Confiteor" Ability { id: "4F0C", source: "Warrior Of Light" } +9048.8 "Flare Breath" Ability { id: "4F40", source: "Spectral Summoner" } +9049.2 "Perfect Decimation" Ability { id: "4F05", source: ["Spectral Warrior", "Warrior Of Light"] } +9050.8 "--sync--" Ability { id: "531E", source: "Spectral Warrior" } +9054.8 "--sync--" Ability { id: "531E", source: "Spectral Summoner" } +9055.2 "Summon Wyrm" Ability { id: "4F41", source: "Warrior Of Light" } +9058.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +9065.5 "Cauterize" Ability { id: "4F07", source: "Wyrm Of Light" } +9067.8 "Imbued Coruscance" Ability { id: "4F4[9A]", source: "Warrior Of Light" } +9076.9 "Elddragon Dive" Ability { id: "4F0B", source: "Warrior Of Light" } +9090.2 "The Bitter End" Ability { id: "4F0A", source: "Warrior Of Light" } +9093.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } # BLM/WHM -9095.7 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F73:/ window 5,5 jump 6002.4 -9098.7 "Specter -> BLM/WHM" #sync / 1[56]:[^:]*:Warrior Of Light:4F73:/ -9104.1 "--sync--" sync / 14:[^:]*:Spectral Black Mage:4F3D:/ window 40,40 jump 6010.7 +9095.7 "--sync--" StartsUsing { id: "4F73", source: "Warrior Of Light" } window 5,5 jump 6002.4 +9098.7 "Specter -> BLM/WHM" #Ability { id: "4F73", source: "Warrior Of Light" } +9104.1 "--sync--" StartsUsing { id: "4F3D", source: "Spectral Black Mage" } window 40,40 jump 6010.7 # DRK/BRD -9095.7 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F3[456]:/ window 5,5 jump 7002.2 -9098.7 "Limit -> DRK/BRD" #sync / 1[56]:[^:]*:Warrior Of Light:4F3[456]:/ -9110.0 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F43:/ window 40,40 jump 7016.6 +9095.7 "--sync--" StartsUsing { id: "4F3[456]", source: "Warrior Of Light" } window 5,5 jump 7002.2 +9098.7 "Limit -> DRK/BRD" #Ability { id: "4F3[456]", source: "Warrior Of Light" } +9110.0 "--sync--" StartsUsing { id: "4F43", source: "Warrior Of Light" } window 40,40 jump 7016.6 # NIN -9095.7 "--sync--" sync / 14:[^:]*:Warrior Of Light:4EF[56]:/ window 40,40 jump 8002.3 -9098.7 "Stone/Holy -> NIN" #sync / 1[56]:[^:]*:Warrior Of Light:4EF[56]:/ +9095.7 "--sync--" StartsUsing { id: "4EF[56]", source: "Warrior Of Light" } window 40,40 jump 8002.3 +9098.7 "Stone/Holy -> NIN" #Ability { id: "4EF[56]", source: "Warrior Of Light" } diff --git a/ui/raidboss/data/05-shb/trial/wol.txt b/ui/raidboss/data/05-shb/trial/wol.txt index 274a9588de..d818a7472b 100644 --- a/ui/raidboss/data/05-shb/trial/wol.txt +++ b/ui/raidboss/data/05-shb/trial/wol.txt @@ -10,112 +10,112 @@ hideall "--Reset--" # Note: Don't sync on engage or auto here because there's a checkpoint. 0.0 "Start" -5.2 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ window 20,20 jump 475.4 -6.3 "--sync--" sync / 14:[^:]*:Warrior Of Light:4F27:/ window 10,10 -9.3 "Terror Unleashed" sync / 1[56]:[^:]*:Warrior Of Light:4F27:/ -25.1 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F2A:/ -31.6 "Coruscant Saber (In)" sync / 1[56]:[^:]*:Warrior Of Light:4F11:/ -42.7 "Coruscant Saber (Out)" sync / 1[56]:[^:]*:Warrior Of Light:4F10:/ -51.9 "Absolute Fire III" sync / 1[56]:[^:]*:Warrior Of Light:4F2E:/ -65.2 "Absolute Blizzard III" sync / 1[56]:[^:]*:Warrior Of Light:4F2D:/ - -76.5 "Imbued Fire/Blizzard" sync / 1[56]:[^:]*:Warrior Of Light:4F1[23]:/ -89.6 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[BC]:/ - -101.9 "Sword Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F42:/ -115.2 "Summon Wyrm" sync / 1[56]:[^:]*:Warrior Of Light:4F41:/ -120.1 "Shining Wave" sync / 1[56]:[^:]*:Warrior Of Light:4F26:/ -125.4 "Cauterize" sync / 1[56]:[^:]*:Wyrm Of Light:4F25:/ -131.4 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F28:/ -139.5 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F29:/ -153.1 "Imbued Fire/Blizzard" sync / 1[56]:[^:]*:Warrior Of Light:4F1[23]:/ +5.2 "--sync--" Ability { id: "4F45", source: "Warrior Of Light" } window 20,20 jump 475.4 +6.3 "--sync--" StartsUsing { id: "4F27", source: "Warrior Of Light" } window 10,10 +9.3 "Terror Unleashed" Ability { id: "4F27", source: "Warrior Of Light" } +25.1 "Solemn Confiteor" Ability { id: "4F2A", source: "Warrior Of Light" } +31.6 "Coruscant Saber (In)" Ability { id: "4F11", source: "Warrior Of Light" } +42.7 "Coruscant Saber (Out)" Ability { id: "4F10", source: "Warrior Of Light" } +51.9 "Absolute Fire III" Ability { id: "4F2E", source: "Warrior Of Light" } +65.2 "Absolute Blizzard III" Ability { id: "4F2D", source: "Warrior Of Light" } + +76.5 "Imbued Fire/Blizzard" Ability { id: "4F1[23]", source: "Warrior Of Light" } +89.6 "Imbued Coruscance" Ability { id: "4F4[BC]", source: "Warrior Of Light" } + +101.9 "Sword Of Light" Ability { id: "4F42", source: "Warrior Of Light" } +115.2 "Summon Wyrm" Ability { id: "4F41", source: "Warrior Of Light" } +120.1 "Shining Wave" Ability { id: "4F26", source: "Warrior Of Light" } +125.4 "Cauterize" Ability { id: "4F25", source: "Wyrm Of Light" } +131.4 "The Bitter End" Ability { id: "4F28", source: "Warrior Of Light" } +139.5 "Elddragon Dive" Ability { id: "4F29", source: "Warrior Of Light" } +153.1 "Imbued Fire/Blizzard" Ability { id: "4F1[23]", source: "Warrior Of Light" } # FIXME: guessing here on timing -166.2 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[BC]:/ +166.2 "Imbued Coruscance" Ability { id: "4F4[BC]", source: "Warrior Of Light" } # FIXME: missing an elddragon dive too?? # FIXME: need a natural push ### Cutscene: 50% -300.0 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -302.3 "--sync--" sync / 14:[^:]*:Warrior Of Light:5331:/ window 400,100 -308.3 "Ascendance" sync / 1[56]:[^:]*:Warrior Of Light:5331:/ +300.0 "--sync--" Ability { id: "4F45", source: "Warrior Of Light" } +302.3 "--sync--" StartsUsing { id: "5331", source: "Warrior Of Light" } window 400,100 +308.3 "Ascendance" Ability { id: "5331", source: "Warrior Of Light" } 311.4 "--untargetable--" -311.5 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:5071:/ -319.6 "Absolute Teleport" sync / 1[56]:[^:]*:Warrior Of Light:5332:/ -324.3 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:5083:/ +311.5 "--sync--" Ability { id: "5071", source: "Warrior Of Light" } +319.6 "Absolute Teleport" Ability { id: "5332", source: "Warrior Of Light" } +324.3 "--sync--" Ability { id: "5083", source: "Warrior Of Light" } 346.0 "--active time event--" duration 15 -447.1 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:5383:/ -457.1 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:547B:/ -463.2 "Ultimate Crossover" sync / 1[56]:[^:]*:Warrior Of Light:547C:/ +447.1 "--sync--" Ability { id: "5383", source: "Warrior Of Light" } +457.1 "--sync--" Ability { id: "547B", source: "Warrior Of Light" } +463.2 "Ultimate Crossover" Ability { id: "547C", source: "Warrior Of Light" } ### Phase 2: Checkpoint, 50%->0% # Can't sync any of these things back to t=0 because they all appear in phase 1. # Phase 1 includes a jump to the middle line to sync. 470.2 "--targetable--" -475.4 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -480.8 "Imbued Fire/Blizzard" sync / 1[56]:[^:]*:Warrior Of Light:4F1[23]:/ - -490.0 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ window 491,10 -500.4 "Twincast" sync / 1[56]:[^:]*:Spectral Black Mage:4F3D:/ -515.0 "Meteor Impact 1" #sync / 1[56]:[^:]*:Spectral Black Mage:4F21:/ -518.0 "Meteor Impact 2" #sync / 1[56]:[^:]*:Spectral Black Mage:4F21:/ -521.0 "Meteor Impact 3" #sync / 1[56]:[^:]*:Spectral Black Mage:4F21:/ -524.0 "Meteor Impact 4" #sync / 1[56]:[^:]*:Spectral Black Mage:4F21:/ -528.2 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[BC]:/ - -537.3 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F29:/ -547.6 "Summon Wyrm" sync / 1[56]:[^:]*:Warrior Of Light:4F41:/ -551.7 "Brimstone Earth" sync / 1[56]:[^:]*:Spectral Dark Knight:4F1E:/ -555.9 "Deluge Of Death" sync / 1[56]:[^:]*:Spectral Bard:4F3B:/ -557.8 "Cauterize" sync / 1[56]:[^:]*:Wyrm Of Light:4F25:/ -566.0 "Deluge Of Death" sync / 1[56]:[^:]*:Spectral Bard:4F20:/ -566.0 "Absolute Holy" sync / 1[56]:[^:]*:Warrior Of Light:4F2B:/ -575.9 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F28:/ -582.2 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ - -587.5 "To The Limit 1" sync / 1[56]:[^:]*:Warrior Of Light:4F34:/ -598.7 "Radiant Braver" sync / 1[56]:[^:]*:Warrior Of Light:5254:/ - -605.1 "To The Limit 2" sync / 1[56]:[^:]*:Warrior Of Light:4F35:/ -610.4 "--sync--" sync / 1[56]:[^:]*:Warrior Of Light:4F46:/ -616.3 "Radiant Desperado" sync / 1[56]:[^:]*:Warrior Of Light:515D:/ - -628.0 "To The Limit 3" sync / 1[56]:[^:]*:Warrior Of Light:4F36:/ -639.1 "Radiant Meteor" sync / 1[56]:[^:]*:Warrior Of Light:4F1A:/ - -650.4 "Sword Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F42:/ -668.6 "Shining Wave" sync / 1[56]:[^:]*:Warrior Of Light:4F26:/ - -670.7 "Absolute Fire/Blizzard" sync / 1[56]:[^:]*:Warrior Of Light:4F2[DE]:/ -678.9 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F29:/ -683.1 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -688.3 "Imbued Fire/Blizzard" sync / 1[56]:[^:]*:Warrior Of Light:4F1[23]:/ - -697.5 "Specter Of Light" sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -706.9 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:4F38:/ -714.0 "--sync--" sync / 1[56]:[^:]*:Spectral Ninja:4F39:/ -717.0 "Suiton: San" sync / 1[56]:[^:]*:Spectral Ninja:4F1C:/ -718.8 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ -722.1 "Katon: San" sync / 1[56]:[^:]*:Spectral Ninja:4F1D:/ - -727.0 "Summon" sync / 1[56]:[^:]*:Spectral Summoner:4F3F:/ -727.9 "Imbued Coruscance" sync / 1[56]:[^:]*:Warrior Of Light:4F4[BC]:/ - -738.6 "Solemn Confiteor" sync / 1[56]:[^:]*:Warrior Of Light:4F2A:/ -743.3 "Flare Breath" sync / 1[56]:[^:]*:Spectral Egi:4F24:/ -752.4 "The Bitter End" sync / 1[56]:[^:]*:Warrior Of Light:4F28:/ -756.1 "Perfect Decimation" sync / 1[56]:[^:]*:Spectral Warrior:4F3E:/ - -760.6 "Absolute Fire/Blizzard" sync / 1[56]:[^:]*:Warrior Of Light:4F2[DE]:/ -761.0 "Perfect Decimation" sync / 1[56]:[^:]*:Spectral Warrior:4F23:/ -772.8 "Elddragon Dive" sync / 1[56]:[^:]*:Warrior Of Light:4F29:/ - -786.2 "--middle--" sync / 1[56]:[^:]*:Warrior Of Light:4F45:/ window 50,50 jump 475.4 -791.6 "Imbued Fire/Blizzard" #sync / 1[56]:[^:]*:Warrior Of Light:4F1[23]:/ - -800.8 "Specter Of Light" #sync / 1[56]:[^:]*:Warrior Of Light:4F37:/ -811.2 "Twincast" #sync / 1[56]:[^:]*:Spectral Black Mage:4F3D:/ -825.8 "Meteor Impact 1" #sync / 1[56]:[^:]*:Spectral Black Mage:4F21:/ -828.8 "Meteor Impact 2" #sync / 1[56]:[^:]*:Spectral Black Mage:4F21:/ -831.8 "Meteor Impact 3" #sync / 1[56]:[^:]*:Spectral Black Mage:4F21:/ -834.8 "Meteor Impact 4" #sync / 1[56]:[^:]*:Spectral Black Mage:4F21:/ -839.0 "Imbued Coruscance" #sync / 1[56]:[^:]*:Warrior Of Light:4F4[BC]:/ +475.4 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +480.8 "Imbued Fire/Blizzard" Ability { id: "4F1[23]", source: "Warrior Of Light" } + +490.0 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } window 491,10 +500.4 "Twincast" Ability { id: "4F3D", source: "Spectral Black Mage" } +515.0 "Meteor Impact 1" #Ability { id: "4F21", source: "Spectral Black Mage" } +518.0 "Meteor Impact 2" #Ability { id: "4F21", source: "Spectral Black Mage" } +521.0 "Meteor Impact 3" #Ability { id: "4F21", source: "Spectral Black Mage" } +524.0 "Meteor Impact 4" #Ability { id: "4F21", source: "Spectral Black Mage" } +528.2 "Imbued Coruscance" Ability { id: "4F4[BC]", source: "Warrior Of Light" } + +537.3 "Elddragon Dive" Ability { id: "4F29", source: "Warrior Of Light" } +547.6 "Summon Wyrm" Ability { id: "4F41", source: "Warrior Of Light" } +551.7 "Brimstone Earth" Ability { id: "4F1E", source: "Spectral Dark Knight" } +555.9 "Deluge Of Death" Ability { id: "4F3B", source: "Spectral Bard" } +557.8 "Cauterize" Ability { id: "4F25", source: "Wyrm Of Light" } +566.0 "Deluge Of Death" Ability { id: "4F20", source: "Spectral Bard" } +566.0 "Absolute Holy" Ability { id: "4F2B", source: "Warrior Of Light" } +575.9 "The Bitter End" Ability { id: "4F28", source: "Warrior Of Light" } +582.2 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } + +587.5 "To The Limit 1" Ability { id: "4F34", source: "Warrior Of Light" } +598.7 "Radiant Braver" Ability { id: "5254", source: "Warrior Of Light" } + +605.1 "To The Limit 2" Ability { id: "4F35", source: "Warrior Of Light" } +610.4 "--sync--" Ability { id: "4F46", source: "Warrior Of Light" } +616.3 "Radiant Desperado" Ability { id: "515D", source: "Warrior Of Light" } + +628.0 "To The Limit 3" Ability { id: "4F36", source: "Warrior Of Light" } +639.1 "Radiant Meteor" Ability { id: "4F1A", source: "Warrior Of Light" } + +650.4 "Sword Of Light" Ability { id: "4F42", source: "Warrior Of Light" } +668.6 "Shining Wave" Ability { id: "4F26", source: "Warrior Of Light" } + +670.7 "Absolute Fire/Blizzard" Ability { id: "4F2[DE]", source: "Warrior Of Light" } +678.9 "Elddragon Dive" Ability { id: "4F29", source: "Warrior Of Light" } +683.1 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +688.3 "Imbued Fire/Blizzard" Ability { id: "4F1[23]", source: "Warrior Of Light" } + +697.5 "Specter Of Light" Ability { id: "4F37", source: "Warrior Of Light" } +706.9 "--sync--" Ability { id: "4F38", source: "Spectral Ninja" } +714.0 "--sync--" Ability { id: "4F39", source: "Spectral Ninja" } +717.0 "Suiton: San" Ability { id: "4F1C", source: "Spectral Ninja" } +718.8 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } +722.1 "Katon: San" Ability { id: "4F1D", source: "Spectral Ninja" } + +727.0 "Summon" Ability { id: "4F3F", source: "Spectral Summoner" } +727.9 "Imbued Coruscance" Ability { id: "4F4[BC]", source: "Warrior Of Light" } + +738.6 "Solemn Confiteor" Ability { id: "4F2A", source: "Warrior Of Light" } +743.3 "Flare Breath" Ability { id: "4F24", source: "Spectral Egi" } +752.4 "The Bitter End" Ability { id: "4F28", source: "Warrior Of Light" } +756.1 "Perfect Decimation" Ability { id: "4F3E", source: "Spectral Warrior" } + +760.6 "Absolute Fire/Blizzard" Ability { id: "4F2[DE]", source: "Warrior Of Light" } +761.0 "Perfect Decimation" Ability { id: "4F23", source: "Spectral Warrior" } +772.8 "Elddragon Dive" Ability { id: "4F29", source: "Warrior Of Light" } + +786.2 "--middle--" Ability { id: "4F45", source: "Warrior Of Light" } window 50,50 jump 475.4 +791.6 "Imbued Fire/Blizzard" #Ability { id: "4F1[23]", source: "Warrior Of Light" } + +800.8 "Specter Of Light" #Ability { id: "4F37", source: "Warrior Of Light" } +811.2 "Twincast" #Ability { id: "4F3D", source: "Spectral Black Mage" } +825.8 "Meteor Impact 1" #Ability { id: "4F21", source: "Spectral Black Mage" } +828.8 "Meteor Impact 2" #Ability { id: "4F21", source: "Spectral Black Mage" } +831.8 "Meteor Impact 3" #Ability { id: "4F21", source: "Spectral Black Mage" } +834.8 "Meteor Impact 4" #Ability { id: "4F21", source: "Spectral Black Mage" } +839.0 "Imbued Coruscance" #Ability { id: "4F4[BC]", source: "Warrior Of Light" } diff --git a/ui/raidboss/data/05-shb/ultimate/the_epic_of_alexander.txt b/ui/raidboss/data/05-shb/ultimate/the_epic_of_alexander.txt index f22802c8bf..9d4286a54e 100644 --- a/ui/raidboss/data/05-shb/ultimate/the_epic_of_alexander.txt +++ b/ui/raidboss/data/05-shb/ultimate/the_epic_of_alexander.txt @@ -7,241 +7,241 @@ hideall "--sync--" ### Phase 1: Living Liquid 0 "Start" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.4 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:49B0:/ window 10,2.5 -19.5 "Cascade" sync / 1[56]:[^:]*:Living Liquid:4826:/ -35.8 "Hand of Prayer/Parting" sync / 1[56]:[^:]*:Liquid Hand:482[BC]:/ -36.7 "Rage Wave 1" sync / 1[56]:[^:]*:Liquid Rage:49B5:/ -37.7 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:49B0:/ -37.7 "Fluid Strike" #sync / 1[56]:[^:]*:Liquid Hand:49B7:/ -38.7 "Rage Wave 2" sync / 1[56]:[^:]*:Liquid Rage:49B6:/ -39.7 "Exhaust" sync / 1[56]:[^:]*:Jagd Doll:481E:/ -41.6 "Embolus" sync / 1[56]:[^:]*:Liquid Rage:4829:/ -42.8 "Hand of Pain" sync / 1[56]:[^:]*:Liquid Hand:482D:/ -50.3 "Exhaust" sync / 1[56]:[^:]*:Jagd Doll:481E:/ -56.7 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:49B0:/ -56.7 "Fluid Strike" #sync / 1[56]:[^:]*:Liquid Hand:49B7:/ -69.8 "Protean Wave 1" sync / 1[56]:[^:]*:Living Liquid:4822:/ -70.0 "Hand of Pain" sync / 1[56]:[^:]*:Liquid Hand:482D:/ -71.9 "Protean Wave 2" sync / 1[56]:[^:]*:Living Liquid:4823:/ -74.9 "Sluice" sync / 1[56]:[^:]*:Living Liquid:49B1:/ -75.0 "Protean Wave 3" sync / 1[56]:[^:]*:Living Liquid:4823:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.4 "Fluid Swing" Ability { id: "49B0", source: "Living Liquid" } window 10,2.5 +19.5 "Cascade" Ability { id: "4826", source: "Living Liquid" } +35.8 "Hand of Prayer/Parting" Ability { id: "482[BC]", source: "Liquid Hand" } +36.7 "Rage Wave 1" Ability { id: "49B5", source: "Liquid Rage" } +37.7 "Fluid Swing" Ability { id: "49B0", source: "Living Liquid" } +37.7 "Fluid Strike" #Ability { id: "49B7", source: "Liquid Hand" } +38.7 "Rage Wave 2" Ability { id: "49B6", source: "Liquid Rage" } +39.7 "Exhaust" Ability { id: "481E", source: "Jagd Doll" } +41.6 "Embolus" Ability { id: "4829", source: "Liquid Rage" } +42.8 "Hand of Pain" Ability { id: "482D", source: "Liquid Hand" } +50.3 "Exhaust" Ability { id: "481E", source: "Jagd Doll" } +56.7 "Fluid Swing" Ability { id: "49B0", source: "Living Liquid" } +56.7 "Fluid Strike" #Ability { id: "49B7", source: "Liquid Hand" } +69.8 "Protean Wave 1" Ability { id: "4822", source: "Living Liquid" } +70.0 "Hand of Pain" Ability { id: "482D", source: "Liquid Hand" } +71.9 "Protean Wave 2" Ability { id: "4823", source: "Living Liquid" } +74.9 "Sluice" Ability { id: "49B1", source: "Living Liquid" } +75.0 "Protean Wave 3" Ability { id: "4823", source: "Living Liquid" } 81.1 "Splash x6" duration 5.6 -86.6 "Drainage" sync / 1[56]:[^:]*:Liquid Rage:4827:/ -89.1 "Hand of Pain" sync / 1[56]:[^:]*:Liquid Hand:482D:/ -91.7 "Cascade" sync / 1[56]:[^:]*:Living Liquid:4826:/ -95.9 "Throttles" sync / 1[56]:[^:]*:Liquid Rage:4828:/ -107.0 "Protean Wave 1" sync / 1[56]:[^:]*:Living Liquid:4822:/ -109.0 "Hand of Pain" sync / 1[56]:[^:]*:Liquid Hand:482D:/ -109.1 "Protean Wave 2" sync / 1[56]:[^:]*:Living Liquid:4823:/ -112.0 "Sluice" sync / 1[56]:[^:]*:Living Liquid:49B1:/ -112.1 "Protean Wave 3" sync / 1[56]:[^:]*:Living Liquid:4823:/ -113.0 "Rage Wave 1" sync / 1[56]:[^:]*:Liquid Rage :49B5:/ -115.1 "Rage Wave 2" sync / 1[56]:[^:]*:Liquid Rage:49B6:/ -119.1 "Embolus" sync / 1[56]:[^:]*:Liquid Rage:4829:/ -124.2 "Hand of Prayer/Parting" sync / 1[56]:[^:]*:Liquid Hand:482[BC]:/ +86.6 "Drainage" Ability { id: "4827", source: "Liquid Rage" } +89.1 "Hand of Pain" Ability { id: "482D", source: "Liquid Hand" } +91.7 "Cascade" Ability { id: "4826", source: "Living Liquid" } +95.9 "Throttles" Ability { id: "4828", source: "Liquid Rage" } +107.0 "Protean Wave 1" Ability { id: "4822", source: "Living Liquid" } +109.0 "Hand of Pain" Ability { id: "482D", source: "Liquid Hand" } +109.1 "Protean Wave 2" Ability { id: "4823", source: "Living Liquid" } +112.0 "Sluice" Ability { id: "49B1", source: "Living Liquid" } +112.1 "Protean Wave 3" Ability { id: "4823", source: "Living Liquid" } +113.0 "Rage Wave 1" Ability { id: "49B5", source: "Liquid Rage " } +115.1 "Rage Wave 2" Ability { id: "49B6", source: "Liquid Rage" } +119.1 "Embolus" Ability { id: "4829", source: "Liquid Rage" } +124.2 "Hand of Prayer/Parting" Ability { id: "482[BC]", source: "Liquid Hand" } 127.4 "Splash x6" duration 5.6 -129.3 "Hand of Pain" sync / 1[56]:[^:]*:Liquid Hand:482D:/ -134.1 "Fluid Swing" sync / 1[56]:[^:]*:Living Liquid:49B0:/ -142.1 "Cascade Enrage" sync / 1[56]:[^:]*:Living Liquid:49B3:/ +129.3 "Hand of Pain" Ability { id: "482D", source: "Liquid Hand" } +134.1 "Fluid Swing" Ability { id: "49B0", source: "Living Liquid" } +142.1 "Cascade Enrage" Ability { id: "49B3", source: "Living Liquid" } ### Transition 1: Cruise Chaser -196.0 "--sync--" sync / 04:........:Liquid Hand:/ window 50,0 -200.0 "Hawk Blaster 1" sync / 1[56]:[^:]*:Cruise Chaser:4830:/ window 200,0 +196.0 "--sync--" RemovedCombatant { name: "Liquid Hand" } window 50,0 +200.0 "Hawk Blaster 1" Ability { id: "4830", source: "Cruise Chaser" } window 200,0 202.2 "Hawk Blaster 2" 204.4 "Hawk Blaster 3" 206.6 "Hawk Blaster 4" -207.4 "#1 Alpha Sword" sync / 1[56]:[^:]*:Cruise Chaser:4834:/ +207.4 "#1 Alpha Sword" Ability { id: "4834", source: "Cruise Chaser" } 208.8 "Middle Blaster" -208.9 "#2 Super Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:4B4F:/ +208.9 "#2 Super Blassty Charge" Ability { id: "4B4F", source: "Cruise Chaser" } 211.0 "Hawk Blaster 1" -212.1 "#3 Alpha Sword" sync / 1[56]:[^:]*:Cruise Chaser:4834:/ +212.1 "#3 Alpha Sword" Ability { id: "4834", source: "Cruise Chaser" } 213.2 "Hawk Blaster 2" -213.6 "#4 Super Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:4B4F:/ +213.6 "#4 Super Blassty Charge" Ability { id: "4B4F", source: "Cruise Chaser" } 215.5 "Hawk Blaster 3" -216.8 "#5 Alpha Sword" sync / 1[56]:[^:]*:Cruise Chaser:4834:/ +216.8 "#5 Alpha Sword" Ability { id: "4834", source: "Cruise Chaser" } 217.7 "Hawk Blaster 4" -218.3 "#6 Super Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:4B4F:/ +218.3 "#6 Super Blassty Charge" Ability { id: "4B4F", source: "Cruise Chaser" } 219.9 "Middle Blaster" -221.4 "#7 Alpha Sword" sync / 1[56]:[^:]*:Cruise Chaser:4834:/ -222.9 "#8 Super Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:4B4F:/ +221.4 "#7 Alpha Sword" Ability { id: "4834", source: "Cruise Chaser" } +222.9 "#8 Super Blassty Charge" Ability { id: "4B4F", source: "Cruise Chaser" } ### Phase 2: Cruise Chaser and Brute Justice -226.1 "J Kick" sync / 1[56]:[^:]*:Brute Justice:4854:/ window 250,5 +226.1 "J Kick" Ability { id: "4854", source: "Brute Justice" } window 250,5 229.1 "--targetable--" -238.3 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:49C2:/ -241.3 "Judgment Nisi" sync / 1[56]:[^:]*:Brute Justice:483E:/ -247.4 "Link-Up" sync / 1[56]:[^:]*:Brute Justice:483F:/ -255.4 "Optical Sight" sync / 1[56]:[^:]*:Cruise Chaser:482F:/ -256.2 "Chakrams" sync / 1[56]:[^:]*:Steam Chakram:4855:/ -260.6 "Hawk Blaster" sync / 1[56]:[^:]*:Cruise Chaser:4831:/ -262.5 "Photon" sync / 1[56]:[^:]*:Cruise Chaser:4836:/ -272.7 "Spin Crusher" sync / 1[56]:[^:]*:Cruise Chaser:4A72:/ -277.3 "Water and Thunder" sync / 1[56]:[^:]*:Brute Justice:4841:/ -288.6 "Earth Missile" sync / 1[56]:[^:]*:Brute Justice:484E:/ -290.6 "Hidden Minefield" sync / 1[56]:[^:]*:Brute Justice:4851:/ -292.7 "Enumeration" sync / 1[56]:[^:]*:Brute Justice:4850:/ -306.7 "Water and Thunder" sync / 1[56]:[^:]*:Brute Justice:4841:/ -313.5 "Limit Cut" sync / 1[56]:[^:]*:Cruise Chaser:4833:/ +238.3 "Whirlwind" Ability { id: "49C2", source: "Cruise Chaser" } +241.3 "Judgment Nisi" Ability { id: "483E", source: "Brute Justice" } +247.4 "Link-Up" Ability { id: "483F", source: "Brute Justice" } +255.4 "Optical Sight" Ability { id: "482F", source: "Cruise Chaser" } +256.2 "Chakrams" Ability { id: "4855", source: "Steam Chakram" } +260.6 "Hawk Blaster" Ability { id: "4831", source: "Cruise Chaser" } +262.5 "Photon" Ability { id: "4836", source: "Cruise Chaser" } +272.7 "Spin Crusher" Ability { id: "4A72", source: "Cruise Chaser" } +277.3 "Water and Thunder" Ability { id: "4841", source: "Brute Justice" } +288.6 "Earth Missile" Ability { id: "484E", source: "Brute Justice" } +290.6 "Hidden Minefield" Ability { id: "4851", source: "Brute Justice" } +292.7 "Enumeration" Ability { id: "4850", source: "Brute Justice" } +306.7 "Water and Thunder" Ability { id: "4841", source: "Brute Justice" } +313.5 "Limit Cut" Ability { id: "4833", source: "Cruise Chaser" } 314.1 "--Cruise Chaser Invincible--" duration 6.3 -315.5 "Flarethrower" sync / 1[56]:[^:]*:Brute Justice:4845:/ -327.6 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:49C2:/ -336.2 "Water and Thunder" sync / 1[56]:[^:]*:Brute Justice:4841:/ -354.5 "Propeller Wind" sync / 1[56]:[^:]*:Cruise Chaser:4832:/ -356.5 "Gavel" sync / 1[56]:[^:]*:Brute Justice:483C:/ -366.8 "Photon" sync / 1[56]:[^:]*:Cruise Chaser:4836:/ -374.8 "Double Rocket Punch" sync / 1[56]:[^:]*:Brute Justice:4847:/ -382.1 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:484A:/ +315.5 "Flarethrower" Ability { id: "4845", source: "Brute Justice" } +327.6 "Whirlwind" Ability { id: "49C2", source: "Cruise Chaser" } +336.2 "Water and Thunder" Ability { id: "4841", source: "Brute Justice" } +354.5 "Propeller Wind" Ability { id: "4832", source: "Cruise Chaser" } +356.5 "Gavel" Ability { id: "483C", source: "Brute Justice" } +366.8 "Photon" Ability { id: "4836", source: "Cruise Chaser" } +374.8 "Double Rocket Punch" Ability { id: "4847", source: "Brute Justice" } +382.1 "Super Jump" Ability { id: "484A", source: "Brute Justice" } 384.4 "Apocalyptic Ray x5" duration 4.4 -395.0 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:49C2:/ -403.1 "Whirlwind" sync / 1[56]:[^:]*:Cruise Chaser:49C2:/ -413.7 "Final Sentence" sync / 1[56]:[^:]*:Brute Justice:4856:/ -423.7 "Eternal Darkness Enrage" sync / 1[56]:[^:]*:Cruise Chaser:483A:/ +395.0 "Whirlwind" Ability { id: "49C2", source: "Cruise Chaser" } +403.1 "Whirlwind" Ability { id: "49C2", source: "Cruise Chaser" } +413.7 "Final Sentence" Ability { id: "4856", source: "Brute Justice" } +423.7 "Eternal Darkness Enrage" Ability { id: "483A", source: "Cruise Chaser" } ### Transition 2: Cruise Chaser, Brute Justice and Alexander Prime -492.0 "--sync--" sync / 14:[^:]*:Alexander Prime:485A:/ window 500,0 -500.0 "Temporal Stasis" sync / 1[56]:[^:]*:Alexander Prime:485A:/ -503.1 "Surety and Severity" sync / 1[56]:[^:]*:Alexander Prime:4861:/ -505.1 "Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:486B:/ -505.2 "Flarethrower 1" #sync / 1[56]:[^:]*:Brute Justice:486C:/ -506.1 "Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:486B:/ -507.4 "Flarethrower 2" #sync / 1[56]:[^:]*:Brute Justice:486C:/ -507.2 "Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:486B:/ +492.0 "--sync--" StartsUsing { id: "485A", source: "Alexander Prime" } window 500,0 +500.0 "Temporal Stasis" Ability { id: "485A", source: "Alexander Prime" } +503.1 "Surety and Severity" Ability { id: "4861", source: "Alexander Prime" } +505.1 "Alpha Sword" #Ability { id: "486B", source: "Cruise Chaser" } +505.2 "Flarethrower 1" #Ability { id: "486C", source: "Brute Justice" } +506.1 "Alpha Sword" #Ability { id: "486B", source: "Cruise Chaser" } +507.4 "Flarethrower 2" #Ability { id: "486C", source: "Brute Justice" } +507.2 "Alpha Sword" #Ability { id: "486B", source: "Cruise Chaser" } 511.4 "--targetable--" -521.5 "Chastening Heat" sync / 1[56]:[^:]*:Alexander Prime:4A80:/ -524.6 "Divine Spear 1" #sync / 1[56]:[^:]*:Alexander Prime:4A82:/ -526.7 "Divine Spear 2" #sync / 1[56]:[^:]*:Alexander Prime:4A82:/ -528.8 "Divine Spear 3" #sync / 1[56]:[^:]*:Alexander Prime:4A82:/ +521.5 "Chastening Heat" Ability { id: "4A80", source: "Alexander Prime" } +524.6 "Divine Spear 1" #Ability { id: "4A82", source: "Alexander Prime" } +526.7 "Divine Spear 2" #Ability { id: "4A82", source: "Alexander Prime" } +528.8 "Divine Spear 3" #Ability { id: "4A82", source: "Alexander Prime" } ### Phase 3 Part 1 - Inception Formation -537.9 "Inception Formation" sync / 1[56]:[^:]*:Alexander Prime:486F:/ +537.9 "Inception Formation" Ability { id: "486F", source: "Alexander Prime" } 541.0 "--untargetable--" -552.4 "Judgment Crystal" sync / 1[56]:[^:]*:Alexander Prime:485B:/ -558.2 "Judgment Crystal + True Heart" sync / 1[56]:[^:]*:Alexander Prime:485C:/ -569.5 "Flarethrower 1" #sync / 1[56]:[^:]*:Brute Justice:486C:/ -571.7 "Flarethrower 2" #sync / 1[56]:[^:]*:Brute Justice:486C:/ -573.8 "Flarethrower 3" #sync / 1[56]:[^:]*:Brute Justice:486C:/ -581.0 "Inception" sync / 1[56]:[^:]*:Alexander Prime:485E:/ -589.1 "Surety, Solidarity and Severity" sync / 1[56]:[^:]*:Alexander Prime:4861:/ -589.4 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:485F:/ -595.3 "Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:486B:/ -596.4 "Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:486B:/ -597.5 "Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:486B:/ -598.3 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:484A:/ +552.4 "Judgment Crystal" Ability { id: "485B", source: "Alexander Prime" } +558.2 "Judgment Crystal + True Heart" Ability { id: "485C", source: "Alexander Prime" } +569.5 "Flarethrower 1" #Ability { id: "486C", source: "Brute Justice" } +571.7 "Flarethrower 2" #Ability { id: "486C", source: "Brute Justice" } +573.8 "Flarethrower 3" #Ability { id: "486C", source: "Brute Justice" } +581.0 "Inception" Ability { id: "485E", source: "Alexander Prime" } +589.1 "Surety, Solidarity and Severity" Ability { id: "4861", source: "Alexander Prime" } +589.4 "Sacrament" Ability { id: "485F", source: "Alexander Prime" } +595.3 "Alpha Sword" #Ability { id: "486B", source: "Cruise Chaser" } +596.4 "Alpha Sword" #Ability { id: "486B", source: "Cruise Chaser" } +597.5 "Alpha Sword" #Ability { id: "486B", source: "Cruise Chaser" } +598.3 "Super Jump" Ability { id: "484A", source: "Brute Justice" } 600.3 "--targetable--" -610.9 "Chastening Heat" sync / 1[56]:[^:]*:Alexander Prime:4A80:/ -616.0 "Divine Spear 1" #sync / 1[56]:[^:]*:Alexander Prime:4A82:/ -618.1 "Divine Spear 2" #sync / 1[56]:[^:]*:Alexander Prime:4A82:/ -620.2 "Divine Spear 3" #sync / 1[56]:[^:]*:Alexander Prime:4A82:/ +610.9 "Chastening Heat" Ability { id: "4A80", source: "Alexander Prime" } +616.0 "Divine Spear 1" #Ability { id: "4A82", source: "Alexander Prime" } +618.1 "Divine Spear 2" #Ability { id: "4A82", source: "Alexander Prime" } +620.2 "Divine Spear 3" #Ability { id: "4A82", source: "Alexander Prime" } ### Phase 3 Part 2 - Wormhole Formation -629.3 "Wormhole Formation" sync / 1[56]:[^:]*:Alexander Prime:486E:/ +629.3 "Wormhole Formation" Ability { id: "486E", source: "Alexander Prime" } 632.3 "--untargetable--" -637.7 "Limit Cut" sync / 1[56]:[^:]*:Cruise Chaser:4B0F:/ -640.7 "Link-Up" sync / 1[56]:[^:]*:Brute Justice:483F:/ -643.7 "Void Of Repentance" sync / 1[56]:[^:]*:Alexander Prime:4866:/ -649.5 "Chakrams" #sync / 1[56]:[^:]*:Steam Chakram:4855:/ -650.9 "Super Jump" sync / 1[56]:[^:]*:Brute Justice:484A:/ -650.9 "#1 Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:4834:/ -652.4 "#2 Super Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:49C3:/ +637.7 "Limit Cut" Ability { id: "4B0F", source: "Cruise Chaser" } +640.7 "Link-Up" Ability { id: "483F", source: "Brute Justice" } +643.7 "Void Of Repentance" Ability { id: "4866", source: "Alexander Prime" } +649.5 "Chakrams" #Ability { id: "4855", source: "Steam Chakram" } +650.9 "Super Jump" Ability { id: "484A", source: "Brute Justice" } +650.9 "#1 Alpha Sword" #Ability { id: "4834", source: "Cruise Chaser" } +652.4 "#2 Super Blassty Charge" Ability { id: "49C3", source: "Cruise Chaser" } 653.3 "Apocalyptic Ray x5" duration 5 -655.2 "#3 Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:4834:/ -655.6 "Repentance 1" sync / 1[56]:[^:]*:Alexander Prime:4869:/ -656.7 "#4 Super Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:49C3:/ -657.9 "Sacrament" sync / 1[56]:[^:]*:Alexander Prime:4857:/ -659.5 "#5 Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:4834:/ -659.7 "Repentance 2" sync / 1[56]:[^:]*:Alexander Prime:4868:/ -660.8 "#6 Super Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:49C3:/ -663.6 "#7 Alpha Sword" #sync / 1[56]:[^:]*:Cruise Chaser:4834:/ -664.0 "Repentance 3" sync / 1[56]:[^:]*:Alexander Prime:4867:/ -665.1 "#8 Super Blassty Charge" sync / 1[56]:[^:]*:Cruise Chaser:49C3:/ -666.4 "Missile Command" sync / 1[56]:[^:]*:Brute Justice:484D:/ -670.0 "Incinerating Heat" sync / 1[56]:[^:]*:Alexander Prime:4A51:/ +655.2 "#3 Alpha Sword" #Ability { id: "4834", source: "Cruise Chaser" } +655.6 "Repentance 1" Ability { id: "4869", source: "Alexander Prime" } +656.7 "#4 Super Blassty Charge" Ability { id: "49C3", source: "Cruise Chaser" } +657.9 "Sacrament" Ability { id: "4857", source: "Alexander Prime" } +659.5 "#5 Alpha Sword" #Ability { id: "4834", source: "Cruise Chaser" } +659.7 "Repentance 2" Ability { id: "4868", source: "Alexander Prime" } +660.8 "#6 Super Blassty Charge" Ability { id: "49C3", source: "Cruise Chaser" } +663.6 "#7 Alpha Sword" #Ability { id: "4834", source: "Cruise Chaser" } +664.0 "Repentance 3" Ability { id: "4867", source: "Alexander Prime" } +665.1 "#8 Super Blassty Charge" Ability { id: "49C3", source: "Cruise Chaser" } +666.4 "Missile Command" Ability { id: "484D", source: "Brute Justice" } +670.0 "Incinerating Heat" Ability { id: "4A51", source: "Alexander Prime" } 674.2 "--targetable--" -674.6 "Enumeration" sync / 1[56]:[^:]*:Brute Justice:4850:/ -682.9 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:4A83:/ -690.0 "Mega Holy" sync / 1[56]:[^:]*:Alexander Prime:4A83:/ +674.6 "Enumeration" Ability { id: "4850", source: "Brute Justice" } +682.9 "Mega Holy" Ability { id: "4A83", source: "Alexander Prime" } +690.0 "Mega Holy" Ability { id: "4A83", source: "Alexander Prime" } ### Transition 3: DPS Checks -699.4 "Summon Alexander" sync / 1[56]:[^:]*:Alexander Prime:4A55:/ +699.4 "Summon Alexander" Ability { id: "4A55", source: "Alexander Prime" } 705.6 "--alex untargetable--" 706.8 "--adds targetable--" -705.7 "J Storm + Waves x16" sync / 1[56]:[^:]*:Brute Justice:4876:/ duration 50 -731.7 "Eternal Darkness Enrage" sync / 1[56]:[^:]*:Cruise Chaser:4875:/ -771.9 "Divine Judgment Enrage" sync / 1[56]:[^:]*:Alexander Prime:4879:/ window 67,5 -787.3 "Divine Judgment" sync / 1[56]:[^:]*:Alexander:487A:/ +705.7 "J Storm + Waves x16" Ability { id: "4876", source: "Brute Justice" } duration 50 +731.7 "Eternal Darkness Enrage" Ability { id: "4875", source: "Cruise Chaser" } +771.9 "Divine Judgment Enrage" Ability { id: "4879", source: "Alexander Prime" } window 67,5 +787.3 "Divine Judgment" Ability { id: "487A", source: "Alexander" } 787.4 "Down for the Count" duration 57 ### Phase 4: Perfect Alexander Part 1 - Fate Projection α 845.4 "--targetable--" -900.0 "--sync--" sync / 1[56]:[^:]*:Perfect Alexander:4A8B:/ window 900,0 -909.1 "The Final Word" sync / 1[56]:[^:]*:Perfect Alexander:487D:/ -916.1 "Ordained Motion/Stillness" sync / 1[56]:[^:]*:Perfect Alexander:487[EF]:/ -926.3 "Ordained Motion/Stillness" sync / 1[56]:[^:]*:Perfect Alexander:487[EF]:/ -936.5 "Optical Sight 1" sync / 1[56]:[^:]*:Perfect Alexander:488[AB]:/ -938.6 "Individual/Collective Reprobation" sync / 1[56]:[^:]*:Perfect Alexander:488[CD]:/ -942.7 "Optical Sight 2" sync / 1[56]:[^:]*:Perfect Alexander:488[AB]:/ -944.7 "Individual/Collective Reprobation" sync / 1[56]:[^:]*:Perfect Alexander:488[CD]:/ -957.6 "Fate Projection α" sync / 1[56]:[^:]*:Perfect Alexander:487B:/ +900.0 "--sync--" Ability { id: "4A8B", source: "Perfect Alexander" } window 900,0 +909.1 "The Final Word" Ability { id: "487D", source: "Perfect Alexander" } +916.1 "Ordained Motion/Stillness" Ability { id: "487[EF]", source: "Perfect Alexander" } +926.3 "Ordained Motion/Stillness" Ability { id: "487[EF]", source: "Perfect Alexander" } +936.5 "Optical Sight 1" Ability { id: "488[AB]", source: "Perfect Alexander" } +938.6 "Individual/Collective Reprobation" Ability { id: "488[CD]", source: "Perfect Alexander" } +942.7 "Optical Sight 2" Ability { id: "488[AB]", source: "Perfect Alexander" } +944.7 "Individual/Collective Reprobation" Ability { id: "488[CD]", source: "Perfect Alexander" } +957.6 "Fate Projection α" Ability { id: "487B", source: "Perfect Alexander" } ### Enigma Codex Revealed Events -966.8 "Fate: Ordained Motion/Stillness" sync / 1[56]:[^:]*:Perfect Alexander:4B0[DE]:/ -972.7 "Fate: Obloquy, Solidarity and 3x Severity" sync / 1[56]:[^:]*:Perfect Alexander:48A4:/ -974.9 "Fate: Ordained Motion/Stillness" sync / 1[56]:[^:]*:Perfect Alexander:489[9A]:/ +966.8 "Fate: Ordained Motion/Stillness" Ability { id: "4B0[DE]", source: "Perfect Alexander" } +972.7 "Fate: Obloquy, Solidarity and 3x Severity" Ability { id: "48A4", source: "Perfect Alexander" } +974.9 "Fate: Ordained Motion/Stillness" Ability { id: "489[9A]", source: "Perfect Alexander" } 975.9 "Fate: Sacrament x3" duration 1.5 -982.6 "Fate Calibration α" sync / 1[56]:[^:]*:Perfect Alexander:487C:/ +982.6 "Fate Calibration α" Ability { id: "487C", source: "Perfect Alexander" } 985.6 "--untargetable--" -989.8 "Ordained Motion/Stillness" sync / 1[56]:[^:]*:Perfect Alexander:49A[BC]:/ -992.8 "Obloquy, Solidarity and 3x Severity" sync / 1[56]:[^:]*:Perfect Alexander:4861:/ -993.8 "Ordained Motion/Stillness" sync / 1[56]:[^:]*:Perfect Alexander:49A[BC]:/ +989.8 "Ordained Motion/Stillness" Ability { id: "49A[BC]", source: "Perfect Alexander" } +992.8 "Obloquy, Solidarity and 3x Severity" Ability { id: "4861", source: "Perfect Alexander" } +993.8 "Ordained Motion/Stillness" Ability { id: "49A[BC]", source: "Perfect Alexander" } 993.8 "Sacrament x3" duration 1.5 998.8 "--targetable--" ### Phase 4 Part 2 - Fate Projection β -1008.0 "Ordained Capital Punishment" sync / 1[56]:[^:]*:Perfect Alexander:4892:/ -1011.1 "Ordained Capital Punishment 1" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1012.2 "Ordained Capital Punishment 2" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1013.3 "Ordained Capital Punishment 3" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1017.2 "Ordained Punishment" sync / 1[56]:[^:]*:Perfect Alexander:4891:/ -1032.3 "Fate Projection β" sync / 1[56]:[^:]*:Perfect Alexander:4B13:/ +1008.0 "Ordained Capital Punishment" Ability { id: "4892", source: "Perfect Alexander" } +1011.1 "Ordained Capital Punishment 1" #Ability { id: "4893", source: "Perfect Alexander" } +1012.2 "Ordained Capital Punishment 2" #Ability { id: "4893", source: "Perfect Alexander" } +1013.3 "Ordained Capital Punishment 3" #Ability { id: "4893", source: "Perfect Alexander" } +1017.2 "Ordained Punishment" Ability { id: "4891", source: "Perfect Alexander" } +1032.3 "Fate Projection β" Ability { id: "4B13", source: "Perfect Alexander" } ### Enigma Codex Revealed Events -1047.7 "Fate: Surety and Solidarity" #sync / 1[56]:[^:]*:Perfect Alexander:489C:/ -1050.5 "Fate: J Jump" sync / 1[56]:[^:]*:Perfect Alexander:489D:/ -1056.0 "Fate: Optical Sight" sync / 1[56]:[^:]*:Perfect Alexander:48A[01]:/ -1058.1 "Fate: Individual/Collective Reprobation" sync / 1[56]:[^:]*:Perfect Alexander:48A[23]:/ -1061.5 "Fate: Radiant Sacrament" sync / 1[56]:[^:]*:Perfect Alexander:489E:/ -1070.3 "Fate Calibration β" sync / 1[56]:[^:]*:Perfect Alexander:4B14:/ +1047.7 "Fate: Surety and Solidarity" #Ability { id: "489C", source: "Perfect Alexander" } +1050.5 "Fate: J Jump" Ability { id: "489D", source: "Perfect Alexander" } +1056.0 "Fate: Optical Sight" Ability { id: "48A[01]", source: "Perfect Alexander" } +1058.1 "Fate: Individual/Collective Reprobation" Ability { id: "48A[23]", source: "Perfect Alexander" } +1061.5 "Fate: Radiant Sacrament" Ability { id: "489E", source: "Perfect Alexander" } +1070.3 "Fate Calibration β" Ability { id: "4B14", source: "Perfect Alexander" } 1073.3 "--untargetable--" -1081.5 "Surety and Solidarity" sync / 1[56]:[^:]*:Perfect Alexander:4863:/ -1082.5 "J Jump" sync / 1[56]:[^:]*:Perfect Alexander:4885:/ -1086.5 "Optical Sight 1" sync / 1[56]:[^:]*:Perfect Alexander:49A[ED]:/ -1088.6 "Individual/Collective Reprobation" sync / 1[56]:[^:]*:Perfect Alexander:488[CD]:/ -1093.5 "Radiant Sacrament" sync / 1[56]:[^:]*:Perfect Alexander:4886:/ +1081.5 "Surety and Solidarity" Ability { id: "4863", source: "Perfect Alexander" } +1082.5 "J Jump" Ability { id: "4885", source: "Perfect Alexander" } +1086.5 "Optical Sight 1" Ability { id: "49A[ED]", source: "Perfect Alexander" } +1088.6 "Individual/Collective Reprobation" Ability { id: "488[CD]", source: "Perfect Alexander" } +1093.5 "Radiant Sacrament" Ability { id: "4886", source: "Perfect Alexander" } 1098.5 "--targetable--" -1106.8 "Ordained Capital Punishment" sync / 1[56]:[^:]*:Perfect Alexander:4892:/ -1109.9 "Ordained Capital Punishment 1" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1111.0 "Ordained Capital Punishment 2" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1112.1 "Ordained Capital Punishment 3" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1116.0 "Ordained Punishment" sync / 1[56]:[^:]*:Perfect Alexander:4891:/ +1106.8 "Ordained Capital Punishment" Ability { id: "4892", source: "Perfect Alexander" } +1109.9 "Ordained Capital Punishment 1" #Ability { id: "4893", source: "Perfect Alexander" } +1111.0 "Ordained Capital Punishment 2" #Ability { id: "4893", source: "Perfect Alexander" } +1112.1 "Ordained Capital Punishment 3" #Ability { id: "4893", source: "Perfect Alexander" } +1116.0 "Ordained Punishment" Ability { id: "4891", source: "Perfect Alexander" } ### Phase 4 Part 3 - Almighty Judgments and Burn -1126.2 "Almighty Judgment" sync / 1[56]:[^:]*:Perfect Alexander:488E:/ +1126.2 "Almighty Judgment" Ability { id: "488E", source: "Perfect Alexander" } 1130.8 "Almighty Judgment Reveal x3" duration 6 -1137.4 "Almighty Judgment 1" #sync / 1[56]:[^:]*:Perfect Alexander:4890:/ -1139.4 "Almighty Judgment 2" #sync / 1[56]:[^:]*:Perfect Alexander:4890:/ -1141.4 "Almighty Judgment 3" #sync / 1[56]:[^:]*:Perfect Alexander:4890:/ -1142.5 "Irresistible Grace" sync / 1[56]:[^:]*:Perfect Alexander:4894:/ -1152.6 "Ordained Capital Punishment" sync / 1[56]:[^:]*:Perfect Alexander:4892:/ -1155.7 "Ordained Capital Punishment 1" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1156.8 "Ordained Capital Punishment 2" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1157.9 "Ordained Capital Punishment 3" #sync / 1[56]:[^:]*:Perfect Alexander:4893:/ -1161.8 "Ordained Punishment" sync / 1[56]:[^:]*:Perfect Alexander:4891:/ -1171.7 "Almighty Judgment" sync / 1[56]:[^:]*:Perfect Alexander:488E:/ +1137.4 "Almighty Judgment 1" #Ability { id: "4890", source: "Perfect Alexander" } +1139.4 "Almighty Judgment 2" #Ability { id: "4890", source: "Perfect Alexander" } +1141.4 "Almighty Judgment 3" #Ability { id: "4890", source: "Perfect Alexander" } +1142.5 "Irresistible Grace" Ability { id: "4894", source: "Perfect Alexander" } +1152.6 "Ordained Capital Punishment" Ability { id: "4892", source: "Perfect Alexander" } +1155.7 "Ordained Capital Punishment 1" #Ability { id: "4893", source: "Perfect Alexander" } +1156.8 "Ordained Capital Punishment 2" #Ability { id: "4893", source: "Perfect Alexander" } +1157.9 "Ordained Capital Punishment 3" #Ability { id: "4893", source: "Perfect Alexander" } +1161.8 "Ordained Punishment" Ability { id: "4891", source: "Perfect Alexander" } +1171.7 "Almighty Judgment" Ability { id: "488E", source: "Perfect Alexander" } 1176.3 "Almighty Judgment Reveal x3" duration 6 -1182.9 "Almighty Judgment 1" #sync / 1[56]:[^:]*:Perfect Alexander:4890:/ -1184.9 "Almighty Judgment 2" #sync / 1[56]:[^:]*:Perfect Alexander:4890:/ -1186.9 "Almighty Judgment 3" #sync / 1[56]:[^:]*:Perfect Alexander:4890:/ -1187.9 "Irresistible Grace" sync / 1[56]:[^:]*:Perfect Alexander:4894:/ -1202.8 "Temporal Interference" sync / 1[56]:[^:]*:Perfect Alexander:4896:/ +1182.9 "Almighty Judgment 1" #Ability { id: "4890", source: "Perfect Alexander" } +1184.9 "Almighty Judgment 2" #Ability { id: "4890", source: "Perfect Alexander" } +1186.9 "Almighty Judgment 3" #Ability { id: "4890", source: "Perfect Alexander" } +1187.9 "Irresistible Grace" Ability { id: "4894", source: "Perfect Alexander" } +1202.8 "Temporal Interference" Ability { id: "4896", source: "Perfect Alexander" } 1216.4 "7 Players Remaining" 1221.4 "6 Players Remaining" 1226.4 "5 Players Remaining" @@ -249,5 +249,5 @@ hideall "--sync--" 1236.5 "3 Players Remaining" 1241.6 "2 Players Remaining" 1246.6 "1 Players Remaining" -1247.6 "Temporal Prison Enrage" sync / 1[56]:[^:]*:Perfect Alexander:4897:/ duration 9 +1247.6 "Temporal Prison Enrage" Ability { id: "4897", source: "Perfect Alexander" } duration 9 1249.8 "0 Players Remaining" diff --git a/ui/raidboss/data/06-ew/alliance/aglaia.txt b/ui/raidboss/data/06-ew/alliance/aglaia.txt index 5e32b14273..d89c32c67c 100644 --- a/ui/raidboss/data/06-ew/alliance/aglaia.txt +++ b/ui/raidboss/data/06-ew/alliance/aglaia.txt @@ -5,7 +5,7 @@ hideall "--sync--" hideall "Fan Flames" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~# # BYREGOT # @@ -20,87 +20,87 @@ hideall "Fan Flames" # Note: "--hammer--" lines are done visually, as there seem to be no log line for them. # Ingenuity's Foothold will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:104D:/ window 10000,0 -1005.5 "--sync--" sync / 14:[^:]*:Byregot:7176:/ window 10,10 -1010.5 "Ordeal of Thunder" sync / 1[56]:[^:]*:Byregot:7176:/ -1022.4 "Byregot's Strike" sync / 1[56]:[^:]*:Byregot:725A:/ -1036.7 "Byregot's Ward" sync / 1[56]:[^:]*:Byregot:7175:/ -1044.8 "Builder's Build" sync / 1[56]:[^:]*:Byregot:72F9:/ -1053.2 "Byregot's Strike" sync / 1[56]:[^:]*:Byregot:7167:/ - -1060.4 "--middle--" sync / 1[56]:[^:]*:Byregot:7169:/ -1062.9 "The Builder's Forge" sync / 1[56]:[^:]*:Byregot:716A:/ -1069.4 "--sync--" sync / 1[56]:[^:]*:Byregot:7174:/ -1083.3 "Peal of the Hammer" sync / 1[56]:[^:]*:Byregot:716F:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "104D" } window 10000,0 +1005.5 "--sync--" StartsUsing { id: "7176", source: "Byregot" } window 10,10 +1010.5 "Ordeal of Thunder" Ability { id: "7176", source: "Byregot" } +1022.4 "Byregot's Strike" Ability { id: "725A", source: "Byregot" } +1036.7 "Byregot's Ward" Ability { id: "7175", source: "Byregot" } +1044.8 "Builder's Build" Ability { id: "72F9", source: "Byregot" } +1053.2 "Byregot's Strike" Ability { id: "7167", source: "Byregot" } + +1060.4 "--middle--" Ability { id: "7169", source: "Byregot" } +1062.9 "The Builder's Forge" Ability { id: "716A", source: "Byregot" } +1069.4 "--sync--" Ability { id: "7174", source: "Byregot" } +1083.3 "Peal of the Hammer" Ability { id: "716F", source: "Byregot" } 1110.1 "--hammer--" -1108.3 "--sync--" sync / 1[56]:[^:]*:Byregot:7171:/ -1110.4 "Peal of the Hammer" sync / 1[56]:[^:]*:Byregot:716F:/ +1108.3 "--sync--" Ability { id: "7171", source: "Byregot" } +1110.4 "Peal of the Hammer" Ability { id: "716F", source: "Byregot" } 1127.2 "--hammer--" -1127.6 "Levinforge" sync / 1[56]:[^:]*:Byregot:7172:/ -1129.1 "Peal of the Hammer" sync / 1[56]:[^:]*:Byregot:716F:/ -1135.3 "--north--" sync / 1[56]:[^:]*:Byregot:7169:/ +1127.6 "Levinforge" Ability { id: "7172", source: "Byregot" } +1129.1 "Peal of the Hammer" Ability { id: "716F", source: "Byregot" } +1135.3 "--north--" Ability { id: "7169", source: "Byregot" } 1145.9 "--hammer--" -1148.1 "Byregot's Spire" sync / 1[56]:[^:]*:Byregot:7170:/ +1148.1 "Byregot's Spire" Ability { id: "7170", source: "Byregot" } # If Byregot uses Builder's Build, then Strike has lightning and is pushed # back ~5.6seconds. The real time for Builder's Build is 1176.6. This # sync adjusts the timeline backwards in time to adjust for this. -1151.2 "--middle--" sync / 1[56]:[^:]*:Byregot:7169:/ -1153.4 "The Builder's Forge" sync / 1[56]:[^:]*:Byregot:716A:/ -1168.0 "--sync--" sync / 14:[^:]*:Byregot:72F9:/ window 10,10 -1171.0 "Builder's Build?" sync / 1[56]:[^:]*:Byregot:72F9:/ -1173.7 "--sync--" sync / 14:[^:]*:Byregot:(725A|7167):/ window 10,10 -1179.7 "Byregot's Strike" sync / 1[56]:[^:]*:Byregot:(725A|7167):/ -1187.8 "Ordeal of Thunder" sync / 1[56]:[^:]*:Byregot:7176:/ -1196.9 "Reproduce" sync / 1[56]:[^:]*:Byregot:716B:/ -1199.8 "Builder's Build" sync / 1[56]:[^:]*:Byregot's Avatar:72FA:/ -1207.8 "Cloud to Ground" sync / 1[56]:[^:]*:Byregot's Avatar:716C:/ duration 7.6 -1223.0 "Byregot's Ward" sync / 1[56]:[^:]*:Byregot:7175:/ - -1225.1 "--middle--" sync / 1[56]:[^:]*:Byregot:7169:/ -1227.4 "The Builder's Forge" sync / 1[56]:[^:]*:Byregot:716A:/ -1234.1 "--sync--" sync / 1[56]:[^:]*:Byregot:7174:/ -1247.7 "--sync--" sync / 1[56]:[^:]*:Byregot:7171:/ -1249.8 "Peal of the Hammer" sync / 1[56]:[^:]*:Byregot:716F:/ +1151.2 "--middle--" Ability { id: "7169", source: "Byregot" } +1153.4 "The Builder's Forge" Ability { id: "716A", source: "Byregot" } +1168.0 "--sync--" StartsUsing { id: "72F9", source: "Byregot" } window 10,10 +1171.0 "Builder's Build?" Ability { id: "72F9", source: "Byregot" } +1173.7 "--sync--" StartsUsing { id: ["725A", "7167"], source: "Byregot" } window 10,10 +1179.7 "Byregot's Strike" Ability { id: ["725A", "7167"], source: "Byregot" } +1187.8 "Ordeal of Thunder" Ability { id: "7176", source: "Byregot" } +1196.9 "Reproduce" Ability { id: "716B", source: "Byregot" } +1199.8 "Builder's Build" Ability { id: "72FA", source: "Byregot's Avatar" } +1207.8 "Cloud to Ground" Ability { id: "716C", source: "Byregot's Avatar" } duration 7.6 +1223.0 "Byregot's Ward" Ability { id: "7175", source: "Byregot" } + +1225.1 "--middle--" Ability { id: "7169", source: "Byregot" } +1227.4 "The Builder's Forge" Ability { id: "716A", source: "Byregot" } +1234.1 "--sync--" Ability { id: "7174", source: "Byregot" } +1247.7 "--sync--" Ability { id: "7171", source: "Byregot" } +1249.8 "Peal of the Hammer" Ability { id: "716F", source: "Byregot" } 1266.6 "--hammer--" -1267.0 "Levinforge" sync / 1[56]:[^:]*:Byregot:7172:/ -1274.8 "--sync--" sync / 1[56]:[^:]*:Byregot:7171:/ -1276.9 "Peal of the Hammer" sync / 1[56]:[^:]*:Byregot:716F:/ +1267.0 "Levinforge" Ability { id: "7172", source: "Byregot" } +1274.8 "--sync--" Ability { id: "7171", source: "Byregot" } +1276.9 "Peal of the Hammer" Ability { id: "716F", source: "Byregot" } 1293.7 "--hammer--" -1294.1 "Levinforge" sync / 1[56]:[^:]*:Byregot:7172:/ -1295.6 "Peal of the Hammer" sync / 1[56]:[^:]*:Byregot:716F:/ -1301.8 "--north--" sync / 1[56]:[^:]*:Byregot:7169:/ +1294.1 "Levinforge" Ability { id: "7172", source: "Byregot" } +1295.6 "Peal of the Hammer" Ability { id: "716F", source: "Byregot" } +1301.8 "--north--" Ability { id: "7169", source: "Byregot" } 1312.4 "--hammer--" -1314.6 "Byregot's Spire" sync / 1[56]:[^:]*:Byregot:7170:/ - -1317.7 "--middle--" sync / 1[56]:[^:]*:Byregot:7169:/ -1319.9 "The Builder's Forge" sync / 1[56]:[^:]*:Byregot:716A:/ -1334.5 "--sync--" sync / 14:[^:]*:Byregot:72F9:/ window 10,10 -1337.5 "Builder's Build?" sync / 1[56]:[^:]*:Byregot:72F9:/ -1340.2 "--sync--" sync / 14:[^:]*:Byregot:(725A|7167):/ window 10,10 -1346.2 "Byregot's Strike" sync / 1[56]:[^:]*:Byregot:(725A|7167):/ -1354.3 "Ordeal of Thunder" sync / 1[56]:[^:]*:Byregot:7176:/ -1366.5 "Byregot's Ward" sync / 1[56]:[^:]*:Byregot:7175:/ -1374.6 "Reproduce" sync / 1[56]:[^:]*:Byregot:716B:/ -1377.5 "Builder's Build" sync / 1[56]:[^:]*:Byregot's Avatar:72FA:/ -1385.5 "Cloud to Ground" sync / 1[56]:[^:]*:Byregot's Avatar:716C:/ duration 7.6 +1314.6 "Byregot's Spire" Ability { id: "7170", source: "Byregot" } + +1317.7 "--middle--" Ability { id: "7169", source: "Byregot" } +1319.9 "The Builder's Forge" Ability { id: "716A", source: "Byregot" } +1334.5 "--sync--" StartsUsing { id: "72F9", source: "Byregot" } window 10,10 +1337.5 "Builder's Build?" Ability { id: "72F9", source: "Byregot" } +1340.2 "--sync--" StartsUsing { id: ["725A", "7167"], source: "Byregot" } window 10,10 +1346.2 "Byregot's Strike" Ability { id: ["725A", "7167"], source: "Byregot" } +1354.3 "Ordeal of Thunder" Ability { id: "7176", source: "Byregot" } +1366.5 "Byregot's Ward" Ability { id: "7175", source: "Byregot" } +1374.6 "Reproduce" Ability { id: "716B", source: "Byregot" } +1377.5 "Builder's Build" Ability { id: "72FA", source: "Byregot's Avatar" } +1385.5 "Cloud to Ground" Ability { id: "716C", source: "Byregot's Avatar" } duration 7.6 # LOOP -1395.7 "--middle--" sync / 1[56]:[^:]*:Byregot:7169:/ -1398.1 "The Builder's Forge" sync / 1[56]:[^:]*:Byregot:716A:/ window 50,50 jump 1227.4 -1404.7 "--sync--" #sync / 1[56]:[^:]*:Byregot:7174:/ -1418.4 "--sync--" #sync / 1[56]:[^:]*:Byregot:7171:/ -1420.5 "Peal of the Hammer" #sync / 1[56]:[^:]*:Byregot:716F:/ +1395.7 "--middle--" Ability { id: "7169", source: "Byregot" } +1398.1 "The Builder's Forge" Ability { id: "716A", source: "Byregot" } window 50,50 jump 1227.4 +1404.7 "--sync--" #Ability { id: "7174", source: "Byregot" } +1418.4 "--sync--" #Ability { id: "7171", source: "Byregot" } +1420.5 "Peal of the Hammer" #Ability { id: "716F", source: "Byregot" } 1437.3 "--hammer--" -1437.7 "Levinforge" #sync / 1[56]:[^:]*:Byregot:7172:/ -1445.4 "--sync--" #sync / 1[56]:[^:]*:Byregot:7171:/ -1447.5 "Peal of the Hammer" #sync / 1[56]:[^:]*:Byregot:716F:/ +1437.7 "Levinforge" #Ability { id: "7172", source: "Byregot" } +1445.4 "--sync--" #Ability { id: "7171", source: "Byregot" } +1447.5 "Peal of the Hammer" #Ability { id: "716F", source: "Byregot" } 1464.3 "--hammer--" -1464.7 "Levinforge" #sync / 1[56]:[^:]*:Byregot:7172:/ -1466.2 "Peal of the Hammer" #sync / 1[56]:[^:]*:Byregot:716F:/ -1472.4 "--north--" #sync / 1[56]:[^:]*:Byregot:7169:/ +1464.7 "Levinforge" #Ability { id: "7172", source: "Byregot" } +1466.2 "Peal of the Hammer" #Ability { id: "716F", source: "Byregot" } +1472.4 "--north--" #Ability { id: "7169", source: "Byregot" } 1483.0 "--hammer--" -1485.2 "Byregot's Spire" #sync / 1[56]:[^:]*:Byregot:7170:/ +1485.2 "Byregot's Spire" #Ability { id: "7170", source: "Byregot" } #~~~~~~~~~~~~~~~~~~~# @@ -111,24 +111,24 @@ hideall "Fan Flames" # -ii 70D8 70E2 70E4 70DC # The Path will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:104E:/ window 10000,0 -2004.8 "--sync--" sync / 14:[^:]*:Rhalgr's Emissary:70E0:/ window 10,10 -2012.8 "Destructive Static" sync / 1[56]:[^:]*:Rhalgr's Emissary:70E0:/ -2019.8 "Destructive Charge" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DA:/ duration 17 -2036.9 "--sync--" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DB:/ -2037.5 "Lightning Bolt x3" sync / 1[56]:[^:]*:Rhalgr's Emissary:70E1:/ duration 8 -2052.7 "Bolts from the Blue" sync / 1[56]:[^:]*:Rhalgr's Emissary:70E3:/ -2058.1 "Destructive Charge" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DA:/ duration 17 -2075.2 "--sync--" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DB:/ -2078.1 "Destructive Static" sync / 1[56]:[^:]*:Rhalgr's Emissary:70E0:/ -2087.4 "Boltloop 1" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DD:/ -2089.4 "Boltloop 2" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DE:/ -2091.4 "Boltloop 3" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DF:/ -2100.6 "Destructive Strike" sync / 1[56]:[^:]*:Rhalgr's Emissary:70D9:/ -2111.7 "Bolts from the Blue" sync / 1[56]:[^:]*:Rhalgr's Emissary:70E3:/ -2118.1 "Destructive Charge" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DA:/ duration 17 -2135.2 "--sync--" sync / 1[56]:[^:]*:Rhalgr's Emissary:70DB:/ -2135.7 "Lightning Bolt x3" sync / 1[56]:[^:]*:Rhalgr's Emissary:70E1:/ duration 8 +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "104E" } window 10000,0 +2004.8 "--sync--" StartsUsing { id: "70E0", source: "Rhalgr's Emissary" } window 10,10 +2012.8 "Destructive Static" Ability { id: "70E0", source: "Rhalgr's Emissary" } +2019.8 "Destructive Charge" Ability { id: "70DA", source: "Rhalgr's Emissary" } duration 17 +2036.9 "--sync--" Ability { id: "70DB", source: "Rhalgr's Emissary" } +2037.5 "Lightning Bolt x3" Ability { id: "70E1", source: "Rhalgr's Emissary" } duration 8 +2052.7 "Bolts from the Blue" Ability { id: "70E3", source: "Rhalgr's Emissary" } +2058.1 "Destructive Charge" Ability { id: "70DA", source: "Rhalgr's Emissary" } duration 17 +2075.2 "--sync--" Ability { id: "70DB", source: "Rhalgr's Emissary" } +2078.1 "Destructive Static" Ability { id: "70E0", source: "Rhalgr's Emissary" } +2087.4 "Boltloop 1" Ability { id: "70DD", source: "Rhalgr's Emissary" } +2089.4 "Boltloop 2" Ability { id: "70DE", source: "Rhalgr's Emissary" } +2091.4 "Boltloop 3" Ability { id: "70DF", source: "Rhalgr's Emissary" } +2100.6 "Destructive Strike" Ability { id: "70D9", source: "Rhalgr's Emissary" } +2111.7 "Bolts from the Blue" Ability { id: "70E3", source: "Rhalgr's Emissary" } +2118.1 "Destructive Charge" Ability { id: "70DA", source: "Rhalgr's Emissary" } duration 17 +2135.2 "--sync--" Ability { id: "70DB", source: "Rhalgr's Emissary" } +2135.7 "Lightning Bolt x3" Ability { id: "70E1", source: "Rhalgr's Emissary" } duration 8 # TODO: is this a loop back to 2037.5?? @@ -142,65 +142,65 @@ hideall "Fan Flames" # TODO: is the ordering of fake vs real Broken World correct? Every log has been this. # Monument to Destruction will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:104F:/ window 10000,0 -3007.5 "--sync--" sync / 14:[^:]*:Rhalgr:70A5:/ window 10,10 -3012.5 "Lightning Reign" sync / 1[56]:[^:]*:Rhalgr:70A5:/ -3023.6 "Advent of the Eighth" sync / 1[56]:[^:]*:Rhalgr:70A7:/ -3038.7 "Hand of the Destroyer" sync / 1[56]:[^:]*:Rhalgr:70A[89]:/ -3054.6 "Broken World (summon)" sync / 1[56]:[^:]*:Rhalgr:70A6:/ -3067.3 "Broken World (proximity)" sync / 1[56]:[^:]*:Rhalgr:70B6:/ -3078.1 "Rhalgr's Beacon" sync / 1[56]:[^:]*:Rhalgr:70AA:/ -3094.3 "Advent of the Eighth" sync / 1[56]:[^:]*:Rhalgr:70A7:/ -3109.5 "Hand of the Destroyer" sync / 1[56]:[^:]*:Rhalgr:70A[89]:/ -3125.3 "Destructive Bolt" sync / 1[56]:[^:]*:Rhalgr:70A4:/ -3136.5 "Advent of the Eighth" sync / 1[56]:[^:]*:Rhalgr:70A7:/ -3142.6 "--jump--" sync / 1[56]:[^:]*:Rhalgr:70AE:/ -3147.0 "Broken World (summon)" sync / 1[56]:[^:]*:Rhalgr:70A6:/ -3158.1 "Hand of the Destroyer" sync / 1[56]:[^:]*:Rhalgr:70AC:/ -3163.9 "Broken World (fake)" sync / 1[56]:[^:]*:Rhalgr:71DD:/ -3180.2 "Advent of the Eighth" sync / 1[56]:[^:]*:Rhalgr:70A7:/ -3189.3 "Broken World (summon)" sync / 1[56]:[^:]*:Rhalgr:70A6:/ -3200.4 "Hand of the Destroyer" sync / 1[56]:[^:]*:Rhalgr:70AC:/ -3206.2 "Broken World (fake)" sync / 1[56]:[^:]*:Rhalgr:71DD:/ - -3214.6 "--middle--" sync / 1[56]:[^:]*:Rhalgr:70AE:/ -3222.5 "Bronze Work" sync / 1[56]:[^:]*:Rhalgr:70AB:/ -3223.0 "Bronze Lightning 1" sync / 1[56]:[^:]*:Rhalgr:70B9:/ window 1,1 -3225.0 "Striking Meteor 1" sync / 1[56]:[^:]*:Rhalgr:70BB:/ window 1,1 -3225.0 "Bronze Lightning 2" sync / 1[56]:[^:]*:Rhalgr:70B9:/ window 1,1 -3227.0 "Striking Meteor 2" sync / 1[56]:[^:]*:Rhalgr:70BB:/ window 1,1 -3230.6 "Destructive Bolt" sync / 1[56]:[^:]*:Rhalgr:70A4:/ - -3236.7 "Advent of the Eighth" sync / 1[56]:[^:]*:Rhalgr:70A7:/ -3245.8 "Broken World (summon)" sync / 1[56]:[^:]*:Rhalgr:70A6:/ -3256.9 "Hand of the Destroyer" sync / 1[56]:[^:]*:Rhalgr:70A9:/ -3258.5 "Broken World (proximity)" sync / 1[56]:[^:]*:Rhalgr:70B6:/ -3265.9 "Lightning Storm" sync / 1[56]:[^:]*:Rhalgr:70BA:/ - -3274.7 "Hell of Lightning" sync / 1[56]:[^:]*:Rhalgr:70AD:/ -3286.1 "Rhalgr's Beacon" sync / 1[56]:[^:]*:Rhalgr:70AA:/ -3289.8 "Shock" sync / 1[56]:[^:]*:Lightning Orb:70B3:/ - -3302.2 "Advent of the Eighth" sync / 1[56]:[^:]*:Rhalgr:70A7:/ -3311.3 "Broken World (summon)" sync / 1[56]:[^:]*:Rhalgr:70A6:/ -3322.4 "Hand of the Destroyer" sync / 1[56]:[^:]*:Rhalgr:70A[C9]:/ -3328.3 "Broken World (fake)" sync / 1[56]:[^:]*:Rhalgr:71DD:/ -3337.6 "Lightning Reign" sync / 1[56]:[^:]*:Rhalgr:70A5:/ - -3347.8 "--middle--" sync / 1[56]:[^:]*:Rhalgr:70AE:/ -3355.5 "Bronze Work" sync / 1[56]:[^:]*:Rhalgr:70AB:/ -3356.0 "Bronze Lightning 1" sync / 1[56]:[^:]*:Rhalgr:70B9:/ window 1,1 -3358.0 "Striking Meteor 1" sync / 1[56]:[^:]*:Rhalgr:70BB:/ window 1,1 -3358.0 "Bronze Lightning 2" sync / 1[56]:[^:]*:Rhalgr:70B9:/ window 1,1 -3360.0 "Striking Meteor 2" sync / 1[56]:[^:]*:Rhalgr:70BB:/ window 1,1 -3363.6 "Destructive Bolt" sync / 1[56]:[^:]*:Rhalgr:70A4:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "104F" } window 10000,0 +3007.5 "--sync--" StartsUsing { id: "70A5", source: "Rhalgr" } window 10,10 +3012.5 "Lightning Reign" Ability { id: "70A5", source: "Rhalgr" } +3023.6 "Advent of the Eighth" Ability { id: "70A7", source: "Rhalgr" } +3038.7 "Hand of the Destroyer" Ability { id: "70A[89]", source: "Rhalgr" } +3054.6 "Broken World (summon)" Ability { id: "70A6", source: "Rhalgr" } +3067.3 "Broken World (proximity)" Ability { id: "70B6", source: "Rhalgr" } +3078.1 "Rhalgr's Beacon" Ability { id: "70AA", source: "Rhalgr" } +3094.3 "Advent of the Eighth" Ability { id: "70A7", source: "Rhalgr" } +3109.5 "Hand of the Destroyer" Ability { id: "70A[89]", source: "Rhalgr" } +3125.3 "Destructive Bolt" Ability { id: "70A4", source: "Rhalgr" } +3136.5 "Advent of the Eighth" Ability { id: "70A7", source: "Rhalgr" } +3142.6 "--jump--" Ability { id: "70AE", source: "Rhalgr" } +3147.0 "Broken World (summon)" Ability { id: "70A6", source: "Rhalgr" } +3158.1 "Hand of the Destroyer" Ability { id: "70AC", source: "Rhalgr" } +3163.9 "Broken World (fake)" Ability { id: "71DD", source: "Rhalgr" } +3180.2 "Advent of the Eighth" Ability { id: "70A7", source: "Rhalgr" } +3189.3 "Broken World (summon)" Ability { id: "70A6", source: "Rhalgr" } +3200.4 "Hand of the Destroyer" Ability { id: "70AC", source: "Rhalgr" } +3206.2 "Broken World (fake)" Ability { id: "71DD", source: "Rhalgr" } + +3214.6 "--middle--" Ability { id: "70AE", source: "Rhalgr" } +3222.5 "Bronze Work" Ability { id: "70AB", source: "Rhalgr" } +3223.0 "Bronze Lightning 1" Ability { id: "70B9", source: "Rhalgr" } window 1,1 +3225.0 "Striking Meteor 1" Ability { id: "70BB", source: "Rhalgr" } window 1,1 +3225.0 "Bronze Lightning 2" Ability { id: "70B9", source: "Rhalgr" } window 1,1 +3227.0 "Striking Meteor 2" Ability { id: "70BB", source: "Rhalgr" } window 1,1 +3230.6 "Destructive Bolt" Ability { id: "70A4", source: "Rhalgr" } + +3236.7 "Advent of the Eighth" Ability { id: "70A7", source: "Rhalgr" } +3245.8 "Broken World (summon)" Ability { id: "70A6", source: "Rhalgr" } +3256.9 "Hand of the Destroyer" Ability { id: "70A9", source: "Rhalgr" } +3258.5 "Broken World (proximity)" Ability { id: "70B6", source: "Rhalgr" } +3265.9 "Lightning Storm" Ability { id: "70BA", source: "Rhalgr" } + +3274.7 "Hell of Lightning" Ability { id: "70AD", source: "Rhalgr" } +3286.1 "Rhalgr's Beacon" Ability { id: "70AA", source: "Rhalgr" } +3289.8 "Shock" Ability { id: "70B3", source: "Lightning Orb" } + +3302.2 "Advent of the Eighth" Ability { id: "70A7", source: "Rhalgr" } +3311.3 "Broken World (summon)" Ability { id: "70A6", source: "Rhalgr" } +3322.4 "Hand of the Destroyer" Ability { id: "70A[C9]", source: "Rhalgr" } +3328.3 "Broken World (fake)" Ability { id: "71DD", source: "Rhalgr" } +3337.6 "Lightning Reign" Ability { id: "70A5", source: "Rhalgr" } + +3347.8 "--middle--" Ability { id: "70AE", source: "Rhalgr" } +3355.5 "Bronze Work" Ability { id: "70AB", source: "Rhalgr" } +3356.0 "Bronze Lightning 1" Ability { id: "70B9", source: "Rhalgr" } window 1,1 +3358.0 "Striking Meteor 1" Ability { id: "70BB", source: "Rhalgr" } window 1,1 +3358.0 "Bronze Lightning 2" Ability { id: "70B9", source: "Rhalgr" } window 1,1 +3360.0 "Striking Meteor 2" Ability { id: "70BB", source: "Rhalgr" } window 1,1 +3363.6 "Destructive Bolt" Ability { id: "70A4", source: "Rhalgr" } # Loop -3369.7 "Advent of the Eighth" sync / 1[56]:[^:]*:Rhalgr:70A7:/ window 30,30 jump 3236.7 -3378.8 "Broken World (summon)" #sync / 1[56]:[^:]*:Rhalgr:70A6:/ -3389.9 "Hand of the Destroyer" #sync / 1[56]:[^:]*:Rhalgr:70A9:/ -3391.5 "Broken World (proximity)" #sync / 1[56]:[^:]*:Rhalgr:70B6:/ -3398.9 "Lightning Storm" #sync / 1[56]:[^:]*:Rhalgr:70BA:/ +3369.7 "Advent of the Eighth" Ability { id: "70A7", source: "Rhalgr" } window 30,30 jump 3236.7 +3378.8 "Broken World (summon)" #Ability { id: "70A6", source: "Rhalgr" } +3389.9 "Hand of the Destroyer" #Ability { id: "70A9", source: "Rhalgr" } +3391.5 "Broken World (proximity)" #Ability { id: "70B6", source: "Rhalgr" } +3398.9 "Lightning Storm" #Ability { id: "70BA", source: "Rhalgr" } #~~~~~~~~~~~~~~~~~# @@ -213,50 +213,50 @@ hideall "Fan Flames" # TODO: These do "Rejuvenating Spark" (71D9) to rebalance health. Does that adjust timings? # Endless City will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1050:/ window 10000,0 -4007.0 "--sync--" sync / 14:[^:]*:Lioness of Aglaia:71D7:/ window 10,10 -4012.0 "Double Immolation" sync / 1[56]:[^:]*:Lioness of Aglaia:71D7:/ -4019.8 "--sync--" sync / 1[56]:[^:]*:Lioness of Aglaia:71CD:/ window 10,10 -4028.1 "Slash and Burn" sync / 1[56]:[^:]*:(Lion of Aglaia|Lioness of Aglaia):(71D0|71D2):/ -4031.3 "Slash and Burn" sync / 1[56]:[^:]*:(Lioness of Aglaia|Lion of Aglaia):(71D6|71D5):/ -4036.1 "--sync--" sync / 1[56]:[^:]*:Lioness of Aglaia:71CD:/ window 10,10 -4044.7 "Slash and Burn" sync / 1[56]:[^:]*:(Lion of Aglaia|Lioness of Aglaia):(71D0|71D2):/ -4047.9 "Slash and Burn" sync / 1[56]:[^:]*:(Lioness of Aglaia|Lion of Aglaia):(71D6|71D5):/ -4056.7 "--sync--" sync / 1[56]:[^:]*:Lioness of Aglaia:71CD:/ window 10,10 -4063.8 "Roaring Blaze" sync / 1[56]:[^:]*:Lioness of Aglaia:71CE:/ -4066.8 "Roaring Blaze" sync / 1[56]:[^:]*:Lion of Aglaia:71CF:/ -4072.4 "--sync--" sync / 1[56]:[^:]*:Lioness of Aglaia:71CD:/ window 10,10 -4079.5 "Roaring Blaze" sync / 1[56]:[^:]*:Lion of Aglaia:71CE:/ -4082.5 "Roaring Blaze" sync / 1[56]:[^:]*:Lioness of Aglaia:71CF:/ -4085.1 "Rejuvenating Spark" sync / 1[56]:[^:]*:(Lion of Aglaia|Lioness of Aglaia):71D9:/ -4093.4 "--sync--" sync / 1[56]:[^:]*:Lioness of Aglaia:71CD:/ window 10,10 -4101.7 "Slash and Burn" sync / 1[56]:[^:]*:Lioness of Aglaia:71D2:/ +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1050" } window 10000,0 +4007.0 "--sync--" StartsUsing { id: "71D7", source: "Lioness of Aglaia" } window 10,10 +4012.0 "Double Immolation" Ability { id: "71D7", source: "Lioness of Aglaia" } +4019.8 "--sync--" Ability { id: "71CD", source: "Lioness of Aglaia" } window 10,10 +4028.1 "Slash and Burn" Ability { id: ["71D0", "71D2"], source: ["Lion of Aglaia", "Lioness of Aglaia"] } +4031.3 "Slash and Burn" Ability { id: ["71D6", "71D5"], source: ["Lioness of Aglaia", "Lion of Aglaia"] } +4036.1 "--sync--" Ability { id: "71CD", source: "Lioness of Aglaia" } window 10,10 +4044.7 "Slash and Burn" Ability { id: ["71D0", "71D2"], source: ["Lion of Aglaia", "Lioness of Aglaia"] } +4047.9 "Slash and Burn" Ability { id: ["71D6", "71D5"], source: ["Lioness of Aglaia", "Lion of Aglaia"] } +4056.7 "--sync--" Ability { id: "71CD", source: "Lioness of Aglaia" } window 10,10 +4063.8 "Roaring Blaze" Ability { id: "71CE", source: "Lioness of Aglaia" } +4066.8 "Roaring Blaze" Ability { id: "71CF", source: "Lion of Aglaia" } +4072.4 "--sync--" Ability { id: "71CD", source: "Lioness of Aglaia" } window 10,10 +4079.5 "Roaring Blaze" Ability { id: "71CE", source: "Lion of Aglaia" } +4082.5 "Roaring Blaze" Ability { id: "71CF", source: "Lioness of Aglaia" } +4085.1 "Rejuvenating Spark" Ability { id: "71D9", source: ["Lion of Aglaia", "Lioness of Aglaia"] } +4093.4 "--sync--" Ability { id: "71CD", source: "Lioness of Aglaia" } window 10,10 +4101.7 "Slash and Burn" Ability { id: "71D2", source: "Lioness of Aglaia" } # ??? (is this a loop?) # Lioness dead branch -4500.0 "--sync--" sync / 14:[^:]*:Lion of Aglaia:72C0:/ window 500,100 -4504.0 "Trial by Fire" sync / 1[56]:[^:]*:Lion of Aglaia:72C0:/ -4515.5 "Roaring Blaze" sync / 1[56]:[^:]*:Lion of Aglaia:72BF:/ +4500.0 "--sync--" StartsUsing { id: "72C0", source: "Lion of Aglaia" } window 500,100 +4504.0 "Trial by Fire" Ability { id: "72C0", source: "Lion of Aglaia" } +4515.5 "Roaring Blaze" Ability { id: "72BF", source: "Lion of Aglaia" } -4526.9 "Trial by Fire" #sync / 1[56]:[^:]*:Lion of Aglaia:72C0:/ -4538.4 "Roaring Blaze" #sync / 1[56]:[^:]*:Lion of Aglaia:72BF:/ +4526.9 "Trial by Fire" #Ability { id: "72C0", source: "Lion of Aglaia" } +4538.4 "Roaring Blaze" #Ability { id: "72BF", source: "Lion of Aglaia" } # guessing at these two and the loop -4549.8 "Trial by Fire" #sync / 1[56]:[^:]*:Lion of Aglaia:72C0:/ -4561.3 "Roaring Blaze" #sync / 1[56]:[^:]*:Lion of Aglaia:72BF:/ +4549.8 "Trial by Fire" #Ability { id: "72C0", source: "Lion of Aglaia" } +4561.3 "Roaring Blaze" #Ability { id: "72BF", source: "Lion of Aglaia" } # Lion dead branch -4800.0 "--sync--" sync / 14:[^:]*:Lioness of Aglaia:72C1:/ window 800,100 -4804.0 "Spinning Slash" sync / 1[56]:[^:]*:Lioness of Aglaia:72C1:/ -4815.5 "Roaring Blaze" sync / 1[56]:[^:]*:Lioness of Aglaia:72BF:/ +4800.0 "--sync--" StartsUsing { id: "72C1", source: "Lioness of Aglaia" } window 800,100 +4804.0 "Spinning Slash" Ability { id: "72C1", source: "Lioness of Aglaia" } +4815.5 "Roaring Blaze" Ability { id: "72BF", source: "Lioness of Aglaia" } -4526.9 "Spinning Slash" #sync / 1[56]:[^:]*:Lioness of Aglaia:72C1:/ -4538.4 "Roaring Blaze" #sync / 1[56]:[^:]*:Lioness of Aglaia:72BF:/ +4526.9 "Spinning Slash" #Ability { id: "72C1", source: "Lioness of Aglaia" } +4538.4 "Roaring Blaze" #Ability { id: "72BF", source: "Lioness of Aglaia" } -4549.8 "Spinning Slash" #sync / 1[56]:[^:]*:Lioness of Aglaia:72C1:/ -4561.3 "Roaring Blaze" #sync / 1[56]:[^:]*:Lioness of Aglaia:72BF:/ +4549.8 "Spinning Slash" #Ability { id: "72C1", source: "Lioness of Aglaia" } +4561.3 "Roaring Blaze" #Ability { id: "72BF", source: "Lioness of Aglaia" } #~~~~~~~~# @@ -267,120 +267,120 @@ hideall "Fan Flames" # -ii 70A1 7082 7083 709F 708E 72BE 7093 7094 71EE 7089 731C 708C 7092 7087 # Circle of Inquiry will be sealed off -5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1051:/ window 10000,0 -5006.2 "--sync--" sync / 14:[^:]*:Azeyma:70A0:/ window 10,10 -5012.2 "Warden's Prominence" sync / 1[56]:[^:]*:Azeyma:70A0:/ - -5018.3 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5019.9 "Fan Flames" sync / 1[56]:[^:]*:Azeyma:7080:/ -5030.2 "Solar Wings" sync / 1[56]:[^:]*:Azeyma:7081:/ -5037.9 "Solar Flair" sync / 1[56]:[^:]*:Sunstorm:7084:/ -5050.6 "Warden's Warmth" sync / 1[56]:[^:]*:Azeyma:709E:/ - -5056.7 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5058.3 "Fan Flames" sync / 1[56]:[^:]*:Azeyma:7080:/ -5065.2 "Solar Wings" sync / 1[56]:[^:]*:Azeyma:7081:/ -5070.6 "Sun's Shine" sync / 1[56]:[^:]*:Azeyma:7085:/ -5073.5 "--sync--" sync / 1[56]:[^:]*:Azeyma's Heat:7315:/ -5081.4 "Haute Air" sync / 1[56]:[^:]*:Azeyma's Heat:7086:/ -5084.0 "Solar Flair" sync / 1[56]:[^:]*:Sunstorm:7084:/ - -5084.7 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5086.3 "Fan Flames" sync / 1[56]:[^:]*:Azeyma:7080:/ -5093.1 "Solar Fans" sync / 1[56]:[^:]*:Azeyma:708D:/ -5101.3 "Radiant Rhythm" sync / 1[56]:[^:]*:Azeyma:708F:/ -5102.7 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5104.1 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5105.5 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5109.9 "Radiant Finish" sync / 1[56]:[^:]*:Azeyma:7091:/ -5116.0 "--sync--" sync / 1[56]:[^:]*:Azeyma:72B0:/ -5126.1 "Warden's Warmth" sync / 1[56]:[^:]*:Azeyma:709E:/ -5137.9 "Fleeting Spark" sync / 1[56]:[^:]*:Azeyma:709C:/ - -5143.3 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5144.9 "Fan Flames" sync / 1[56]:[^:]*:Azeyma:7080:/ -5152.0 "Solar Fold" sync / 1[56]:[^:]*:Azeyma:7088:/ -5152.0 "Solar Fold" sync / 1[56]:[^:]*:Azeyma:71EE:/ -5157.1 "Sun's Shine" sync / 1[56]:[^:]*:Azeyma:7085:/ -5160.0 "--sync--" sync / 1[56]:[^:]*:Azeyma's Heat:7315:/ -5174.9 "Haute Air" sync / 1[56]:[^:]*:Azeyma's Heat:708A:/ -5176.0 "Dancing Flame" sync / 1[56]:[^:]*:Azeyma:708B:/ -5184.2 "Warden's Prominence" sync / 1[56]:[^:]*:Azeyma:70A0:/ - -5188.4 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5195.0 "Wildfire Ward" sync / 1[56]:[^:]*:Azeyma:709A:/ -5211.2 "Illuminating Glimpse 1" sync / 1[56]:[^:]*:Azeyma's Heat:709B:/ -5215.3 "Illuminating Glimpse 2" sync / 1[56]:[^:]*:Azeyma's Heat:709B:/ -5219.3 "Illuminating Glimpse 3" sync / 1[56]:[^:]*:Azeyma's Heat:709B:/ - -5225.2 "--jump--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5230.8 "Noble Dawn" sync / 1[56]:[^:]*:Azeyma:7095:/ -5234.6 "Sunbeam 1" #sync / 1[56]:[^:]*:Prodigal Sun:7096:/ -5236.6 "Sunbeam 2" #sync / 1[56]:[^:]*:Prodigal Sun:7096:/ -5238.6 "Sunbeam 3" #sync / 1[56]:[^:]*:Prodigal Sun:7096:/ -5241.6 "Sunbeam 1" #sync / 1[56]:[^:]*:Prodigal Sun:7097:/ -5243.6 "Sunbeam 2" #sync / 1[56]:[^:]*:Prodigal Sun:7097:/ -5245.6 "Sunbeam 3" #sync / 1[56]:[^:]*:Prodigal Sun:7097:/ - -5248.8 "--jump--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5259.7 "Sublime Sunset" sync / 1[56]:[^:]*:Azeyma:7098:/ -5260.3 "Sunset" sync / 1[56]:[^:]*:Prodigal Sun:7099:/ - -5268.9 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5270.5 "Fan Flames" sync / 1[56]:[^:]*:Azeyma:7080:/ -5277.4 "Solar Fans" sync / 1[56]:[^:]*:Azeyma:708D:/ -5285.6 "Radiant Rhythm" sync / 1[56]:[^:]*:Azeyma:708F:/ -5287.0 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5288.4 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5289.8 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5291.2 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5295.6 "Radiant Finish" sync / 1[56]:[^:]*:Azeyma:7091:/ -5306.1 "Fleeting Spark" sync / 1[56]:[^:]*:Azeyma:709C:/ - -5309.8 "--sync--" sync / 1[56]:[^:]*:Azeyma:72B0:/ -5317.0 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5318.6 "Fan Flames" sync / 1[56]:[^:]*:Azeyma:7080:/ -5325.8 "Solar Wings" sync / 1[56]:[^:]*:Azeyma:7081:/ -5331.2 "Sun's Shine" sync / 1[56]:[^:]*:Azeyma:7085:/ -5334.1 "--sync--" sync / 1[56]:[^:]*:Azeyma's Heat:7315:/ -5342.0 "Haute Air" sync / 1[56]:[^:]*:Azeyma's Heat:7086:/ -5344.7 "Solar Flair" sync / 1[56]:[^:]*:Sunstorm:7084:/ -5352.4 "Warden's Warmth" sync / 1[56]:[^:]*:Azeyma:709E:/ - -5357.6 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5359.2 "Fan Flames" sync / 1[56]:[^:]*:Azeyma:7080:/ -5366.4 "Solar Fold" sync / 1[56]:[^:]*:Azeyma:7088:/ -5371.5 "Sun's Shine" sync / 1[56]:[^:]*:Azeyma:7085:/ -5374.4 "--sync--" sync / 1[56]:[^:]*:Azeyma's Heat:7315:/ -5389.3 "Haute Air" sync / 1[56]:[^:]*:Azeyma's Heat:708A:/ -5390.4 "Dancing Flame" sync / 1[56]:[^:]*:Azeyma:708B:/ - -5396.6 "Warden's Prominence" sync / 1[56]:[^:]*:Azeyma:70A0:/ -5402.7 "--sync--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5408.3 "Noble Dawn" sync / 1[56]:[^:]*:Azeyma:7095:/ -5412.1 "Sunbeam 1" #sync / 1[56]:[^:]*:Prodigal Sun:7096:/ -5414.1 "Sunbeam 2" #sync / 1[56]:[^:]*:Prodigal Sun:7096:/ -5416.1 "Sunbeam 3" #sync / 1[56]:[^:]*:Prodigal Sun:7096:/ -5419.1 "Sunbeam 1" #sync / 1[56]:[^:]*:Prodigal Sun:7097:/ -5421.1 "Sunbeam 2" #sync / 1[56]:[^:]*:Prodigal Sun:7097:/ -5423.1 "Sunbeam 3" #sync / 1[56]:[^:]*:Prodigal Sun:7097:/ -5431.0 "Fleeting Spark" sync / 1[56]:[^:]*:Azeyma:709C:/ -5433.4 "--sync--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5444.7 "Sublime Sunset" sync / 1[56]:[^:]*:Azeyma:7098:/ -5445.2 "Sunset" sync / 1[56]:[^:]*:Prodigal Sun:7099:/ -5453.8 "Warden's Warmth" sync / 1[56]:[^:]*:Azeyma:709E:/ +5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1051" } window 10000,0 +5006.2 "--sync--" StartsUsing { id: "70A0", source: "Azeyma" } window 10,10 +5012.2 "Warden's Prominence" Ability { id: "70A0", source: "Azeyma" } + +5018.3 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5019.9 "Fan Flames" Ability { id: "7080", source: "Azeyma" } +5030.2 "Solar Wings" Ability { id: "7081", source: "Azeyma" } +5037.9 "Solar Flair" Ability { id: "7084", source: "Sunstorm" } +5050.6 "Warden's Warmth" Ability { id: "709E", source: "Azeyma" } + +5056.7 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5058.3 "Fan Flames" Ability { id: "7080", source: "Azeyma" } +5065.2 "Solar Wings" Ability { id: "7081", source: "Azeyma" } +5070.6 "Sun's Shine" Ability { id: "7085", source: "Azeyma" } +5073.5 "--sync--" Ability { id: "7315", source: "Azeyma's Heat" } +5081.4 "Haute Air" Ability { id: "7086", source: "Azeyma's Heat" } +5084.0 "Solar Flair" Ability { id: "7084", source: "Sunstorm" } + +5084.7 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5086.3 "Fan Flames" Ability { id: "7080", source: "Azeyma" } +5093.1 "Solar Fans" Ability { id: "708D", source: "Azeyma" } +5101.3 "Radiant Rhythm" Ability { id: "708F", source: "Azeyma" } +5102.7 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5104.1 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5105.5 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5109.9 "Radiant Finish" Ability { id: "7091", source: "Azeyma" } +5116.0 "--sync--" Ability { id: "72B0", source: "Azeyma" } +5126.1 "Warden's Warmth" Ability { id: "709E", source: "Azeyma" } +5137.9 "Fleeting Spark" Ability { id: "709C", source: "Azeyma" } + +5143.3 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5144.9 "Fan Flames" Ability { id: "7080", source: "Azeyma" } +5152.0 "Solar Fold" Ability { id: "7088", source: "Azeyma" } +5152.0 "Solar Fold" Ability { id: "71EE", source: "Azeyma" } +5157.1 "Sun's Shine" Ability { id: "7085", source: "Azeyma" } +5160.0 "--sync--" Ability { id: "7315", source: "Azeyma's Heat" } +5174.9 "Haute Air" Ability { id: "708A", source: "Azeyma's Heat" } +5176.0 "Dancing Flame" Ability { id: "708B", source: "Azeyma" } +5184.2 "Warden's Prominence" Ability { id: "70A0", source: "Azeyma" } + +5188.4 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5195.0 "Wildfire Ward" Ability { id: "709A", source: "Azeyma" } +5211.2 "Illuminating Glimpse 1" Ability { id: "709B", source: "Azeyma's Heat" } +5215.3 "Illuminating Glimpse 2" Ability { id: "709B", source: "Azeyma's Heat" } +5219.3 "Illuminating Glimpse 3" Ability { id: "709B", source: "Azeyma's Heat" } + +5225.2 "--jump--" Ability { id: "70A2", source: "Azeyma" } +5230.8 "Noble Dawn" Ability { id: "7095", source: "Azeyma" } +5234.6 "Sunbeam 1" #Ability { id: "7096", source: "Prodigal Sun" } +5236.6 "Sunbeam 2" #Ability { id: "7096", source: "Prodigal Sun" } +5238.6 "Sunbeam 3" #Ability { id: "7096", source: "Prodigal Sun" } +5241.6 "Sunbeam 1" #Ability { id: "7097", source: "Prodigal Sun" } +5243.6 "Sunbeam 2" #Ability { id: "7097", source: "Prodigal Sun" } +5245.6 "Sunbeam 3" #Ability { id: "7097", source: "Prodigal Sun" } + +5248.8 "--jump--" Ability { id: "70A2", source: "Azeyma" } +5259.7 "Sublime Sunset" Ability { id: "7098", source: "Azeyma" } +5260.3 "Sunset" Ability { id: "7099", source: "Prodigal Sun" } + +5268.9 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5270.5 "Fan Flames" Ability { id: "7080", source: "Azeyma" } +5277.4 "Solar Fans" Ability { id: "708D", source: "Azeyma" } +5285.6 "Radiant Rhythm" Ability { id: "708F", source: "Azeyma" } +5287.0 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5288.4 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5289.8 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5291.2 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5295.6 "Radiant Finish" Ability { id: "7091", source: "Azeyma" } +5306.1 "Fleeting Spark" Ability { id: "709C", source: "Azeyma" } + +5309.8 "--sync--" Ability { id: "72B0", source: "Azeyma" } +5317.0 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5318.6 "Fan Flames" Ability { id: "7080", source: "Azeyma" } +5325.8 "Solar Wings" Ability { id: "7081", source: "Azeyma" } +5331.2 "Sun's Shine" Ability { id: "7085", source: "Azeyma" } +5334.1 "--sync--" Ability { id: "7315", source: "Azeyma's Heat" } +5342.0 "Haute Air" Ability { id: "7086", source: "Azeyma's Heat" } +5344.7 "Solar Flair" Ability { id: "7084", source: "Sunstorm" } +5352.4 "Warden's Warmth" Ability { id: "709E", source: "Azeyma" } + +5357.6 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5359.2 "Fan Flames" Ability { id: "7080", source: "Azeyma" } +5366.4 "Solar Fold" Ability { id: "7088", source: "Azeyma" } +5371.5 "Sun's Shine" Ability { id: "7085", source: "Azeyma" } +5374.4 "--sync--" Ability { id: "7315", source: "Azeyma's Heat" } +5389.3 "Haute Air" Ability { id: "708A", source: "Azeyma's Heat" } +5390.4 "Dancing Flame" Ability { id: "708B", source: "Azeyma" } + +5396.6 "Warden's Prominence" Ability { id: "70A0", source: "Azeyma" } +5402.7 "--sync--" Ability { id: "70A2", source: "Azeyma" } +5408.3 "Noble Dawn" Ability { id: "7095", source: "Azeyma" } +5412.1 "Sunbeam 1" #Ability { id: "7096", source: "Prodigal Sun" } +5414.1 "Sunbeam 2" #Ability { id: "7096", source: "Prodigal Sun" } +5416.1 "Sunbeam 3" #Ability { id: "7096", source: "Prodigal Sun" } +5419.1 "Sunbeam 1" #Ability { id: "7097", source: "Prodigal Sun" } +5421.1 "Sunbeam 2" #Ability { id: "7097", source: "Prodigal Sun" } +5423.1 "Sunbeam 3" #Ability { id: "7097", source: "Prodigal Sun" } +5431.0 "Fleeting Spark" Ability { id: "709C", source: "Azeyma" } +5433.4 "--sync--" Ability { id: "70A2", source: "Azeyma" } +5444.7 "Sublime Sunset" Ability { id: "7098", source: "Azeyma" } +5445.2 "Sunset" Ability { id: "7099", source: "Prodigal Sun" } +5453.8 "Warden's Warmth" Ability { id: "709E", source: "Azeyma" } # Loop? (this is a guess), 5516.7 is the furthest seen in a log. -5460.0 "--middle--" sync / 1[56]:[^:]*:Azeyma:70A2:/ -5461.6 "Fan Flames" sync / 1[56]:[^:]*:Azeyma:7080:/ window 50,50 jump 5270.5 -5468.5 "Solar Fans" #sync / 1[56]:[^:]*:Azeyma:708D:/ -5476.7 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:708F:/ -5478.1 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5479.5 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5480.9 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5482.3 "Radiant Rhythm" #sync / 1[56]:[^:]*:Azeyma:7090:/ -5486.7 "Radiant Finish" #sync / 1[56]:[^:]*:Azeyma:7091:/ -5497.2 "Fleeting Spark" #sync / 1[56]:[^:]*:Azeyma:709C:/ +5460.0 "--middle--" Ability { id: "70A2", source: "Azeyma" } +5461.6 "Fan Flames" Ability { id: "7080", source: "Azeyma" } window 50,50 jump 5270.5 +5468.5 "Solar Fans" #Ability { id: "708D", source: "Azeyma" } +5476.7 "Radiant Rhythm" #Ability { id: "708F", source: "Azeyma" } +5478.1 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5479.5 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5480.9 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5482.3 "Radiant Rhythm" #Ability { id: "7090", source: "Azeyma" } +5486.7 "Radiant Finish" #Ability { id: "7091", source: "Azeyma" } +5497.2 "Fleeting Spark" #Ability { id: "709C", source: "Azeyma" } #~~~~~~~~~~~# @@ -394,83 +394,83 @@ hideall "Fan Flames" # TODO: Is Fired Up I/II always knockback -> out and I/II/III is out -> knockback -> knockback or out? # The Twin Halls will be sealed off -6000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1052:/ window 10000,0 -6008.2 "--sync--" sync / 14:[^:]*:Nald'thal:70E9:/ window 10,10 -6013.2 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ -6027.4 "Heat Above, Flames Below" sync / 1[56]:[^:]*:Nald'thal:73A5:/ -6036.5 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ -6049.7 "Heat Above, Flames Below" sync / 1[56]:[^:]*:Nald'thal:73A4:/ -6056.8 "--sync--" sync / 1[56]:[^:]*:Nald'thal:73CD:/ -6061.8 "Heavens' Trial" sync / 1[56]:[^:]*:Nald'thal:711E:/ -6062.7 "Smelting" sync / 1[56]:[^:]*:Nald'thal:7120:/ -6070.0 "Golden Tenet" sync / 1[56]:[^:]*:Nald'thal:711A:/ -6081.6 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:70E8:/ - -6095.8 "Far Above, Deep Below" sync / 1[56]:[^:]*:Nald'thal:73A[AB]:/ -6096.7 "Far-flung Fire?" sync / 1[56]:[^:]*:Nald:73AD:/ -6102.1 "Deepest Pit?" sync / 1[56]:[^:]*:Thal:73C7:/ duration 4 +6000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1052" } window 10000,0 +6008.2 "--sync--" StartsUsing { id: "70E9", source: "Nald'thal" } window 10,10 +6013.2 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } +6027.4 "Heat Above, Flames Below" Ability { id: "73A5", source: "Nald'thal" } +6036.5 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } +6049.7 "Heat Above, Flames Below" Ability { id: "73A4", source: "Nald'thal" } +6056.8 "--sync--" Ability { id: "73CD", source: "Nald'thal" } +6061.8 "Heavens' Trial" Ability { id: "711E", source: "Nald'thal" } +6062.7 "Smelting" Ability { id: "7120", source: "Nald'thal" } +6070.0 "Golden Tenet" Ability { id: "711A", source: "Nald'thal" } +6081.6 "As Above, So Below" Ability { id: "70E8", source: "Nald'thal" } + +6095.8 "Far Above, Deep Below" Ability { id: "73A[AB]", source: "Nald'thal" } +6096.7 "Far-flung Fire?" Ability { id: "73AD", source: "Nald" } +6102.1 "Deepest Pit?" Ability { id: "73C7", source: "Thal" } duration 4 # Possible ~1s delay here -6102.0 "--sync--" sync / 14:[^:]*:Nald'thal:70E[89]:/ window 10,10 -6107.0 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:70E[89]:/ -6121.2 "Once Above, Ever Below" sync / 1[56]:[^:]*:Nald'thal:(73BF|73C0|741C|741D):/ +6102.0 "--sync--" StartsUsing { id: "70E[89]", source: "Nald'thal" } window 10,10 +6107.0 "As Above, So Below" Ability { id: "70E[89]", source: "Nald'thal" } +6121.2 "Once Above, Ever Below" Ability { id: ["73BF", "73C0", "741C", "741D"], source: "Nald'thal" } # Possible ~5s delay here -6132.6 "--sync--" sync / 14:[^:]*:Nald'thal:72B[79]:/ window 10,10 -6140.6 "Hell of Fire" sync / 1[56]:[^:]*:Nald'thal:72B[79]:/ -6147.2 "--sync--" sync / 1[56]:[^:]*:Nald'thal:710D:/ -6152.3 "Wayward Soul" sync / 1[56]:[^:]*:Nald'thal:710E:/ duration 20 -6175.3 "Wayward Soul" sync / 1[56]:[^:]*:Nald'thal:710E:/ duration 20 -6193.5 "--sync--" sync / 1[56]:[^:]*:Nald'thal:710F:/ - -6199.2 "--sync--" sync / 14:[^:]*:Nald'thal:72B[79]:/ window 10,10 -6207.2 "Hell of Fire" sync / 1[56]:[^:]*:Nald'thal:72B[79]:/ -6224.1 "Fired Up I" sync / 1[56]:[^:]*:Nald'thal:7111:/ -6230.2 "Fired Up II" sync / 1[56]:[^:]*:Nald'thal:738A:/ -6240.3 "Fortune's Flux" sync / 1[56]:[^:]*:Nald'thal:7113:/ -6242.8 "--sync--" sync / 1[56]:[^:]*:Thal:7430:/ -6242.8 "Seventh Passage" sync / 1[56]:[^:]*:(Thal|Nald'thal):73AF:/ -6244.5 "Seventh Passage" sync / 1[56]:[^:]*:Nald'thal:7118:/ -6244.8 "--sync--" sync / 1[56]:[^:]*:Thal:7431:/ -6250.9 "Fired Up I" sync / 1[56]:[^:]*:Nald'thal:7112:/ -6257.0 "Fired Up II" sync / 1[56]:[^:]*:Nald'thal:7389:/ -6263.1 "Fired Up III" sync / 1[56]:[^:]*:Nald'thal:741[9A]:/ -6273.2 "Fortune's Flux" sync / 1[56]:[^:]*:Nald'thal:7113:/ -6275.1 "Seventh Passage 1" sync / 1[56]:[^:]*:Nald'thal:7119:/ -6277.8 "Seventh Passage 2" #sync / 1[56]:[^:]*:Thal:73AF:/ -6279.2 "Seventh Passage 3" #sync / 1[56]:[^:]*:Thal:(73AF|7118):/ -6289.7 "Soul's Measure" sync / 1[56]:[^:]*:Nald'thal:7122:/ +6132.6 "--sync--" StartsUsing { id: "72B[79]", source: "Nald'thal" } window 10,10 +6140.6 "Hell of Fire" Ability { id: "72B[79]", source: "Nald'thal" } +6147.2 "--sync--" Ability { id: "710D", source: "Nald'thal" } +6152.3 "Wayward Soul" Ability { id: "710E", source: "Nald'thal" } duration 20 +6175.3 "Wayward Soul" Ability { id: "710E", source: "Nald'thal" } duration 20 +6193.5 "--sync--" Ability { id: "710F", source: "Nald'thal" } + +6199.2 "--sync--" StartsUsing { id: "72B[79]", source: "Nald'thal" } window 10,10 +6207.2 "Hell of Fire" Ability { id: "72B[79]", source: "Nald'thal" } +6224.1 "Fired Up I" Ability { id: "7111", source: "Nald'thal" } +6230.2 "Fired Up II" Ability { id: "738A", source: "Nald'thal" } +6240.3 "Fortune's Flux" Ability { id: "7113", source: "Nald'thal" } +6242.8 "--sync--" Ability { id: "7430", source: "Thal" } +6242.8 "Seventh Passage" Ability { id: "73AF", source: ["Thal", "Nald'thal"] } +6244.5 "Seventh Passage" Ability { id: "7118", source: "Nald'thal" } +6244.8 "--sync--" Ability { id: "7431", source: "Thal" } +6250.9 "Fired Up I" Ability { id: "7112", source: "Nald'thal" } +6257.0 "Fired Up II" Ability { id: "7389", source: "Nald'thal" } +6263.1 "Fired Up III" Ability { id: "741[9A]", source: "Nald'thal" } +6273.2 "Fortune's Flux" Ability { id: "7113", source: "Nald'thal" } +6275.1 "Seventh Passage 1" Ability { id: "7119", source: "Nald'thal" } +6277.8 "Seventh Passage 2" #Ability { id: "73AF", source: "Thal" } +6279.2 "Seventh Passage 3" #Ability { id: ["73AF", "7118"], source: "Thal" } +6289.7 "Soul's Measure" Ability { id: "7122", source: "Nald'thal" } 6290.8 "--untargetable--" # Add phase -6300.0 "--sync--" sync / 1[56]:[^:]*:Nald'thal:7123:/ window 300,10 -6311.0 "Equal Weight" sync / 1[56]:[^:]*:Soul Vessel:7124:/ -6311.2 "--sync--" sync / 1[56]:[^:]*:Nald'thal:7386:/ -6322.6 "Twingaze" sync / 1[56]:[^:]*:Soul Vessel:712A:/ -6339.5 "Magmatic Spell" sync / 1[56]:[^:]*:Soul Vessel:712D:/ -6346.0 "Twingaze" sync / 1[56]:[^:]*:Soul Vessel:712A:/ +6300.0 "--sync--" Ability { id: "7123", source: "Nald'thal" } window 300,10 +6311.0 "Equal Weight" Ability { id: "7124", source: "Soul Vessel" } +6311.2 "--sync--" Ability { id: "7386", source: "Nald'thal" } +6322.6 "Twingaze" Ability { id: "712A", source: "Soul Vessel" } +6339.5 "Magmatic Spell" Ability { id: "712D", source: "Soul Vessel" } +6346.0 "Twingaze" Ability { id: "712A", source: "Soul Vessel" } # ??? # Loop block intro -7000.0 "--sync--" sync / 14:[^:]*:Nald'thal:7125:/ window 1000,0 -7012.5 "Balance" sync / 1[56]:[^:]*:Nald'thal:7125:/ -7014.6 "Tipped Scales" sync / 1[56]:[^:]*:Nald'thal:7388:/ +7000.0 "--sync--" StartsUsing { id: "7125", source: "Nald'thal" } window 1000,0 +7012.5 "Balance" Ability { id: "7125", source: "Nald'thal" } +7014.6 "Tipped Scales" Ability { id: "7388", source: "Nald'thal" } 7058.7 "--targetable--" -7070.2 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ -7084.4 "Once Above, Ever Below" sync / 1[56]:[^:]*:Nald'thal:(73BF|73C0|741C|741D):/ +7070.2 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } +7084.4 "Once Above, Ever Below" Ability { id: ["73BF", "73C0", "741C", "741D"], source: "Nald'thal" } -7091.6 "--sync--" sync / 1[56]:[^:]*:Nald'thal:73CD:/ -7095.5 "Stygian Tenet?" sync / 1[56]:[^:]*:Nald'thal:711C:/ -7096.6 "Heavens' Trial?" sync / 1[56]:[^:]*:Nald'thal:711E:/ -7097.5 "Smelting?" sync / 1[56]:[^:]*:Nald:7120:/ +7091.6 "--sync--" Ability { id: "73CD", source: "Nald'thal" } +7095.5 "Stygian Tenet?" Ability { id: "711C", source: "Nald'thal" } +7096.6 "Heavens' Trial?" Ability { id: "711E", source: "Nald'thal" } +7097.5 "Smelting?" Ability { id: "7120", source: "Nald" } -7105.7 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ -7119.9 "Hearth Above, Flight Below" sync / 1[56]:[^:]*:Nald'thal:(741B|73CA|73CB|73CC):/ -7121.1 "Far-flung Fire?" sync / 1[56]:[^:]*:Nald:73AD:/ -7125.7 "Deepest Pit?" sync / 1[56]:[^:]*:Thal:73C7:/ duration 4 -7131.1 "Golden Tenet/Hells' Trial" sync / 1[56]:[^:]*:Nald'thal:(7121|711A):/ -7147.6 "Hell of Fire" sync / 1[56]:[^:]*:Nald'thal:72B[79]:/ +7105.7 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } +7119.9 "Hearth Above, Flight Below" Ability { id: ["741B", "73CA", "73CB", "73CC"], source: "Nald'thal" } +7121.1 "Far-flung Fire?" Ability { id: "73AD", source: "Nald" } +7125.7 "Deepest Pit?" Ability { id: "73C7", source: "Thal" } duration 4 +7131.1 "Golden Tenet/Hells' Trial" Ability { id: ["7121", "711A"], source: "Nald'thal" } +7147.6 "Hell of Fire" Ability { id: "72B[79]", source: "Nald'thal" } # Branch to Wayward Soul / Fired Up. # @@ -481,88 +481,88 @@ hideall "Fan Flames" # https://www.fflogs.com/reports/cxqYG1L3mFMrpZdQ#fight=last # -> initial Wayward Soul block -7156.0 "--sync--" sync / 1[56]:[^:]*:Nald'thal:710D:/ window 100,100 jump 7998.3 -7161.1 "Wayward Soul?" #sync / 1[56]:[^:]*:Nald'thal:710E:/ +7156.0 "--sync--" Ability { id: "710D", source: "Nald'thal" } window 100,100 jump 7998.3 +7161.1 "Wayward Soul?" #Ability { id: "710E", source: "Nald'thal" } # -> main loop block, starting with Fired Up -7159.5 "--sync--" sync / 14:[^:]*:Nald'thal:7112:/ window 100,100 jump 8159.5 -7163.5 "Fired Up I?" #sync / 1[56]:[^:]*:Nald'thal:7112:/ -7169.6 "Fired Up II?" #sync / 1[56]:[^:]*:Nald'thal:7389:/ -7175.7 "Fired Up III?" #sync / 1[56]:[^:]*:Nald'thal:7419:/ +7159.5 "--sync--" StartsUsing { id: "7112", source: "Nald'thal" } window 100,100 jump 8159.5 +7163.5 "Fired Up I?" #Ability { id: "7112", source: "Nald'thal" } +7169.6 "Fired Up II?" #Ability { id: "7389", source: "Nald'thal" } +7175.7 "Fired Up III?" #Ability { id: "7419", source: "Nald'thal" } # Initial Wayward Soul block, fall into Main loop block # This has slightly different timings here (+5/-5 on some abilities) than the loop. -7998.3 "--sync--" sync / 1[56]:[^:]*:Nald'thal:710D:/ -8003.4 "Wayward Soul" sync / 1[56]:[^:]*:Nald'thal:710E:/ -8023.6 "--sync--" sync / 1[56]:[^:]*:Nald'thal:710F:/ -8034.3 "Hell of Fire" sync / 1[56]:[^:]*:Nald'thal:72B7:/ -8044.5 "Stygian Tenet" sync / 1[56]:[^:]*:Nald'thal:711C:/ -8059.6 "Hells' Trial" sync / 1[56]:[^:]*:Nald'thal:7121:/ +7998.3 "--sync--" Ability { id: "710D", source: "Nald'thal" } +8003.4 "Wayward Soul" Ability { id: "710E", source: "Nald'thal" } +8023.6 "--sync--" Ability { id: "710F", source: "Nald'thal" } +8034.3 "Hell of Fire" Ability { id: "72B7", source: "Nald'thal" } +8044.5 "Stygian Tenet" Ability { id: "711C", source: "Nald'thal" } +8059.6 "Hells' Trial" Ability { id: "7121", source: "Nald'thal" } # Main loop, repeating the loop block intro, but with no more branching -8070.2 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ -8084.4 "Once Above, Ever Below" sync / 1[56]:[^:]*:Nald'thal:(73BF|73C0|741C|741D):/ - -8091.6 "--sync--" sync / 1[56]:[^:]*:Nald'thal:73CD:/ -8095.5 "Stygian Tenet?" sync / 1[56]:[^:]*:Nald'thal:711C:/ -8096.6 "Heavens' Trial?" sync / 1[56]:[^:]*:Nald'thal:711E:/ -8097.5 "Smelting?" sync / 1[56]:[^:]*:Nald:7120:/ - -8105.7 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ -8119.9 "Hearth Above, Flight Below" sync / 1[56]:[^:]*:Nald'thal:(741B|73CA|73CB|73CC):/ -8121.1 "Far-flung Fire?" sync / 1[56]:[^:]*:Nald:73AD:/ -8125.7 "Deepest Pit?" sync / 1[56]:[^:]*:Thal:73C7:/ duration 4 -8131.1 "Golden Tenet/Hells' Trial" sync / 1[56]:[^:]*:Nald'thal:(7121|711A):/ -8147.6 "Hell of Fire" sync / 1[56]:[^:]*:Nald'thal:72B[79]:/ - -8159.5 "--sync--" sync / 14:[^:]*:Nald'thal:7112:/ window 20,20 -8163.5 "Fired Up I" sync / 1[56]:[^:]*:Nald'thal:7112:/ -8169.6 "Fired Up II" sync / 1[56]:[^:]*:Nald'thal:7389:/ -8175.7 "Fired Up III" sync / 1[56]:[^:]*:Nald'thal:7419:/ -8185.8 "Fortune's Flux" sync / 1[56]:[^:]*:Nald'thal:7113:/ -8187.7 "Seventh Passage 1" sync / 1[56]:[^:]*:Nald'thal:7119:/ -8190.4 "Seventh Passage 2" #sync / 1[56]:[^:]*:Thal:73AF:/ -8191.7 "Seventh Passage 3" #sync / 1[56]:[^:]*:Thal:(73AF|7118):/ - -8197.1 "--sync--" sync / 1[56]:[^:]*:Nald'thal:73CD:/ -8202.1 "Heavens' Trial" sync / 1[56]:[^:]*:Nald'thal:711E:/ -8203.0 "Smelting" sync / 1[56]:[^:]*:Nald'thal:7120:/ -8212.3 "Golden Tenet" sync / 1[56]:[^:]*:Nald'thal:711A:/ -8227.5 "Hells' Trial" sync / 1[56]:[^:]*:Nald'thal:7121:/ - -8238.5 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ -8252.7 "Once Above, Ever Below" sync / 1[56]:[^:]*:Nald'thal:73C0:/ -8263.8 "Stygian Tenet?" sync / 1[56]:[^:]*:Nald'thal:711C:/ -8264.9 "Heavens' Trial?" sync / 1[56]:[^:]*:Nald'thal:711E:/ -8265.8 "Smelting?" sync / 1[56]:[^:]*:Nald:7120:/ - -8274.0 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ -8288.2 "Hearth Above, Flight Below" sync / 1[56]:[^:]*:Nald'thal:(741B|73CA|73CB|73CC):/ -8289.4 "Far-flung Fire?" sync / 1[56]:[^:]*:Nald:73AD:/ -8294.0 "Deepest Pit?" sync / 1[56]:[^:]*:Thal:73C7:/ duration 4 -8299.4 "Golden Tenet/Hells' Trial" sync / 1[56]:[^:]*:Nald'thal:(7121|711A):/ -8315.9 "Hell of Fire" sync / 1[56]:[^:]*:Nald'thal:72B[79]:/ - -8324.1 "--sync--" sync / 1[56]:[^:]*:Nald'thal:710D:/ window 20,20 -8329.2 "Wayward Soul" sync / 1[56]:[^:]*:Nald'thal:710E:/ -8344.4 "--sync--" sync / 1[56]:[^:]*:Nald'thal:710F:/ +8070.2 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } +8084.4 "Once Above, Ever Below" Ability { id: ["73BF", "73C0", "741C", "741D"], source: "Nald'thal" } + +8091.6 "--sync--" Ability { id: "73CD", source: "Nald'thal" } +8095.5 "Stygian Tenet?" Ability { id: "711C", source: "Nald'thal" } +8096.6 "Heavens' Trial?" Ability { id: "711E", source: "Nald'thal" } +8097.5 "Smelting?" Ability { id: "7120", source: "Nald" } + +8105.7 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } +8119.9 "Hearth Above, Flight Below" Ability { id: ["741B", "73CA", "73CB", "73CC"], source: "Nald'thal" } +8121.1 "Far-flung Fire?" Ability { id: "73AD", source: "Nald" } +8125.7 "Deepest Pit?" Ability { id: "73C7", source: "Thal" } duration 4 +8131.1 "Golden Tenet/Hells' Trial" Ability { id: ["7121", "711A"], source: "Nald'thal" } +8147.6 "Hell of Fire" Ability { id: "72B[79]", source: "Nald'thal" } + +8159.5 "--sync--" StartsUsing { id: "7112", source: "Nald'thal" } window 20,20 +8163.5 "Fired Up I" Ability { id: "7112", source: "Nald'thal" } +8169.6 "Fired Up II" Ability { id: "7389", source: "Nald'thal" } +8175.7 "Fired Up III" Ability { id: "7419", source: "Nald'thal" } +8185.8 "Fortune's Flux" Ability { id: "7113", source: "Nald'thal" } +8187.7 "Seventh Passage 1" Ability { id: "7119", source: "Nald'thal" } +8190.4 "Seventh Passage 2" #Ability { id: "73AF", source: "Thal" } +8191.7 "Seventh Passage 3" #Ability { id: ["73AF", "7118"], source: "Thal" } + +8197.1 "--sync--" Ability { id: "73CD", source: "Nald'thal" } +8202.1 "Heavens' Trial" Ability { id: "711E", source: "Nald'thal" } +8203.0 "Smelting" Ability { id: "7120", source: "Nald'thal" } +8212.3 "Golden Tenet" Ability { id: "711A", source: "Nald'thal" } +8227.5 "Hells' Trial" Ability { id: "7121", source: "Nald'thal" } + +8238.5 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } +8252.7 "Once Above, Ever Below" Ability { id: "73C0", source: "Nald'thal" } +8263.8 "Stygian Tenet?" Ability { id: "711C", source: "Nald'thal" } +8264.9 "Heavens' Trial?" Ability { id: "711E", source: "Nald'thal" } +8265.8 "Smelting?" Ability { id: "7120", source: "Nald" } + +8274.0 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } +8288.2 "Hearth Above, Flight Below" Ability { id: ["741B", "73CA", "73CB", "73CC"], source: "Nald'thal" } +8289.4 "Far-flung Fire?" Ability { id: "73AD", source: "Nald" } +8294.0 "Deepest Pit?" Ability { id: "73C7", source: "Thal" } duration 4 +8299.4 "Golden Tenet/Hells' Trial" Ability { id: ["7121", "711A"], source: "Nald'thal" } +8315.9 "Hell of Fire" Ability { id: "72B[79]", source: "Nald'thal" } + +8324.1 "--sync--" Ability { id: "710D", source: "Nald'thal" } window 20,20 +8329.2 "Wayward Soul" Ability { id: "710E", source: "Nald'thal" } +8344.4 "--sync--" Ability { id: "710F", source: "Nald'thal" } # Possibly ~5s delay here as well? -8347.1 "--sync--" sync / 14:[^:]*:Nald'thal:72B[79]:/ window 10,10 -8355.1 "Hell of Fire" sync / 1[56]:[^:]*:Nald'thal:72B[79]:/ -8375.3 "Stygian Tenet" sync / 1[56]:[^:]*:Nald'thal:711C:/ -8390.5 "Hells' Trial" sync / 1[56]:[^:]*:Nald'thal:7121:/ +8347.1 "--sync--" StartsUsing { id: "72B[79]", source: "Nald'thal" } window 10,10 +8355.1 "Hell of Fire" Ability { id: "72B[79]", source: "Nald'thal" } +8375.3 "Stygian Tenet" Ability { id: "711C", source: "Nald'thal" } +8390.5 "Hells' Trial" Ability { id: "7121", source: "Nald'thal" } # Loop back to beginning of loop block -8401.1 "As Above, So Below" sync / 1[56]:[^:]*:Nald'thal:(70E8|70E9):/ window 50,50 jump 8070.2 -8415.3 "Once Above, Ever Below" #sync / 1[56]:[^:]*:Nald'thal:(73BF|73C0|741C|741D):/ +8401.1 "As Above, So Below" Ability { id: ["70E8", "70E9"], source: "Nald'thal" } window 50,50 jump 8070.2 +8415.3 "Once Above, Ever Below" #Ability { id: ["73BF", "73C0", "741C", "741D"], source: "Nald'thal" } -8422.5 "--sync--" #sync / 1[56]:[^:]*:Nald'thal:73CD:/ -8426.4 "Stygian Tenet?" #sync / 1[56]:[^:]*:Nald'thal:711C:/ -8427.5 "Heavens' Trial?" #sync / 1[56]:[^:]*:Nald'thal:711E:/ -8428.4 "Smelting?" #sync / 1[56]:[^:]*:Nald:7120:/ +8422.5 "--sync--" #Ability { id: "73CD", source: "Nald'thal" } +8426.4 "Stygian Tenet?" #Ability { id: "711C", source: "Nald'thal" } +8427.5 "Heavens' Trial?" #Ability { id: "711E", source: "Nald'thal" } +8428.4 "Smelting?" #Ability { id: "7120", source: "Nald" } -8436.6 "As Above, So Below" #sync / 1[56]:[^:]*:Nald'thal:70E9:/ -8450.8 "Hearth Above, Flight Below" #sync / 1[56]:[^:]*:Nald'thal:(741B|73CA|73CB|73CC):/ +8436.6 "As Above, So Below" #Ability { id: "70E9", source: "Nald'thal" } +8450.8 "Hearth Above, Flight Below" #Ability { id: ["741B", "73CA", "73CB", "73CC"], source: "Nald'thal" } diff --git a/ui/raidboss/data/06-ew/alliance/euphrosyne.txt b/ui/raidboss/data/06-ew/alliance/euphrosyne.txt index 45cc243ed6..e9ccab46b7 100644 --- a/ui/raidboss/data/06-ew/alliance/euphrosyne.txt +++ b/ui/raidboss/data/06-ew/alliance/euphrosyne.txt @@ -5,7 +5,7 @@ hideall "--sync--" hideall "Season's Passing" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~# # NOPHICA # @@ -15,71 +15,71 @@ hideall "Season's Passing" # -ii 7C26 7C09 7C10 7C0F 7C14 7C15 7C23 # Fertile Plains will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10A9:/ window 10000,0 -1007.0 "--sync--" sync / 14:[^:]*:Nophica:7C24:/ window 20,20 -1012.0 "Abundance" sync / 1[56]:[^:]*:Nophica:7C24:/ -1020.7 "Matron's Plenty" sync / 1[56]:[^:]*:Nophica:7C08:/ -1031.8 "The Giving Land" sync / 1[56]:[^:]*:Nophica:801A:/ -1032.0 "Spring Flowers" sync / 1[56]:[^:]*:Nophica:7C10:/ -1034.9 "Season's Passing" sync / 1[56]:[^:]*:Nophica:7C0A:/ -1043.0 "The Giving Land" sync / 1[56]:[^:]*:Nophica:8018:/ - -1056.1 "Matron's Harvest" sync / 1[56]:[^:]*:Nophica:7C1D:/ -1068.2 "--sync--" sync / 1[56]:[^:]*:Nophica:7C0B:/ -1068.8 "Reaper's Gale 1" #sync / 1[56]:[^:]*:Nophica:7C0E:/ -1071.2 "Reaper's Gale 2" #sync / 1[56]:[^:]*:Nophica:7C0E:/ - -1075.9 "Matron's Plenty" sync / 1[56]:[^:]*:Nophica:7C08:/ -1084.0 "Floral Haze" sync / 1[56]:[^:]*:Nophica:7DEB:/ -1092.1 "The Giving Land" sync / 1[56]:[^:]*:Nophica:8018:/ -1094.2 "Season's Passing" sync / 1[56]:[^:]*:Nophica:7C0A:/ -1102.3 "The Giving Land" sync / 1[56]:[^:]*:Nophica:801A:/ - -1115.5 "Matron's Harvest" sync / 1[56]:[^:]*:Nophica:7C1E:/ -1123.7 "--middle--" sync / 1[56]:[^:]*:Nophica:7C25:/ -1143.8 "Blueblossoms/Giltblossoms 1" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1149.8 "Blueblossoms/Giltblossoms 2" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1155.8 "Blueblossoms/Giltblossoms 3" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1161.5 "Abundance" sync / 1[56]:[^:]*:Nophica:7C24:/ - -1170.3 "Matron's Plenty" sync / 1[56]:[^:]*:Nophica:7C08:/ -1179.4 "Floral Haze" sync / 1[56]:[^:]*:Nophica:7DEB:/ -1185.5 "Landwaker" sync / 1[56]:[^:]*:Nophica:7C19:/ -1192.6 "--sync--" sync / 1[56]:[^:]*:Nophica:7C0C:/ -1193.2 "Reaper's Gale 1" #sync / 1[56]:[^:]*:Nophica:7C0E:/ -1195.5 "Landwaker" sync / 1[56]:[^:]*:Nophica:7C1C:/ -1195.6 "Reaper's Gale 2" #sync / 1[56]:[^:]*:Nophica:7C0E:/ -1199.6 "The Giving Land" sync / 1[56]:[^:]*:Nophica:8018:/ -1206.7 "Sowing Circle" sync / 1[56]:[^:]*:Nophica:7C11:/ duration 14.3 -1208.8 "Season's Passing" sync / 1[56]:[^:]*:Nophica:7C0A:/ -1215.8 "The Giving Land" sync / 1[56]:[^:]*:Nophica:801A:/ - -1227.9 "Matron's Harvest" sync / 1[56]:[^:]*:Nophica:7C1E:/ -1236.1 "--sync--" sync / 1[56]:[^:]*:Nophica:7C25:/ -1240.5 "Matron's Breath" sync / 1[56]:[^:]*:Nophica:7C1F:/ -1256.1 "Blueblossoms/Giltblossoms 1" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1259.7 "Blueblossoms/Giltblossoms 2" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1263.3 "Blueblossoms/Giltblossoms 3" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1266.9 "Blueblossoms/Giltblossoms 4" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1270.5 "Blueblossoms/Giltblossoms 5" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1274.1 "Blueblossoms/Giltblossoms 6" sync / 1[56]:[^:]*:Nophica:(7C20|7C21):/ -1280.1 "Furrow" sync / 1[56]:[^:]*:Nophica:7C16:/ -1288.2 "Heavens' Earth" sync / 1[56]:[^:]*:Nophica:7C22:/ -1299.4 "Abundance" sync / 1[56]:[^:]*:Nophica:7C24:/ -1308.5 "Abundance" sync / 1[56]:[^:]*:Nophica:7C24:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10A9" } window 10000,0 +1007.0 "--sync--" StartsUsing { id: "7C24", source: "Nophica" } window 20,20 +1012.0 "Abundance" Ability { id: "7C24", source: "Nophica" } +1020.7 "Matron's Plenty" Ability { id: "7C08", source: "Nophica" } +1031.8 "The Giving Land" Ability { id: "801A", source: "Nophica" } +1032.0 "Spring Flowers" Ability { id: "7C10", source: "Nophica" } +1034.9 "Season's Passing" Ability { id: "7C0A", source: "Nophica" } +1043.0 "The Giving Land" Ability { id: "8018", source: "Nophica" } + +1056.1 "Matron's Harvest" Ability { id: "7C1D", source: "Nophica" } +1068.2 "--sync--" Ability { id: "7C0B", source: "Nophica" } +1068.8 "Reaper's Gale 1" #Ability { id: "7C0E", source: "Nophica" } +1071.2 "Reaper's Gale 2" #Ability { id: "7C0E", source: "Nophica" } + +1075.9 "Matron's Plenty" Ability { id: "7C08", source: "Nophica" } +1084.0 "Floral Haze" Ability { id: "7DEB", source: "Nophica" } +1092.1 "The Giving Land" Ability { id: "8018", source: "Nophica" } +1094.2 "Season's Passing" Ability { id: "7C0A", source: "Nophica" } +1102.3 "The Giving Land" Ability { id: "801A", source: "Nophica" } + +1115.5 "Matron's Harvest" Ability { id: "7C1E", source: "Nophica" } +1123.7 "--middle--" Ability { id: "7C25", source: "Nophica" } +1143.8 "Blueblossoms/Giltblossoms 1" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1149.8 "Blueblossoms/Giltblossoms 2" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1155.8 "Blueblossoms/Giltblossoms 3" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1161.5 "Abundance" Ability { id: "7C24", source: "Nophica" } + +1170.3 "Matron's Plenty" Ability { id: "7C08", source: "Nophica" } +1179.4 "Floral Haze" Ability { id: "7DEB", source: "Nophica" } +1185.5 "Landwaker" Ability { id: "7C19", source: "Nophica" } +1192.6 "--sync--" Ability { id: "7C0C", source: "Nophica" } +1193.2 "Reaper's Gale 1" #Ability { id: "7C0E", source: "Nophica" } +1195.5 "Landwaker" Ability { id: "7C1C", source: "Nophica" } +1195.6 "Reaper's Gale 2" #Ability { id: "7C0E", source: "Nophica" } +1199.6 "The Giving Land" Ability { id: "8018", source: "Nophica" } +1206.7 "Sowing Circle" Ability { id: "7C11", source: "Nophica" } duration 14.3 +1208.8 "Season's Passing" Ability { id: "7C0A", source: "Nophica" } +1215.8 "The Giving Land" Ability { id: "801A", source: "Nophica" } + +1227.9 "Matron's Harvest" Ability { id: "7C1E", source: "Nophica" } +1236.1 "--sync--" Ability { id: "7C25", source: "Nophica" } +1240.5 "Matron's Breath" Ability { id: "7C1F", source: "Nophica" } +1256.1 "Blueblossoms/Giltblossoms 1" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1259.7 "Blueblossoms/Giltblossoms 2" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1263.3 "Blueblossoms/Giltblossoms 3" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1266.9 "Blueblossoms/Giltblossoms 4" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1270.5 "Blueblossoms/Giltblossoms 5" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1274.1 "Blueblossoms/Giltblossoms 6" Ability { id: ["7C20", "7C21"], source: "Nophica" } +1280.1 "Furrow" Ability { id: "7C16", source: "Nophica" } +1288.2 "Heavens' Earth" Ability { id: "7C22", source: "Nophica" } +1299.4 "Abundance" Ability { id: "7C24", source: "Nophica" } +1308.5 "Abundance" Ability { id: "7C24", source: "Nophica" } # loop block -1322.3 "Matron's Plenty" sync / 1[56]:[^:]*:Nophica:7C08:/ window 50,50 jump 1170.3 -1331.4 "Floral Haze" #sync / 1[56]:[^:]*:Nophica:7DEB:/ -1337.5 "Landwaker" #sync / 1[56]:[^:]*:Nophica:7C19:/ -1344.6 "--sync--" #sync / 1[56]:[^:]*:Nophica:7C0C:/ -1345.2 "Reaper's Gale 1" #sync / 1[56]:[^:]*:Nophica:7C0E:/ -1347.5 "Landwaker" #sync / 1[56]:[^:]*:Nophica:7C1C:/ -1347.6 "Reaper's Gale 2" #sync / 1[56]:[^:]*:Nophica:7C0E:/ -1351.6 "The Giving Land" #sync / 1[56]:[^:]*:Nophica:8018:/ -1358.7 "Sowing Circle" #sync / 1[56]:[^:]*:Nophica:7C11:/ duration 14.3 -1360.8 "Season's Passing" #sync / 1[56]:[^:]*:Nophica:7C0A:/ -1367.8 "The Giving Land" #sync / 1[56]:[^:]*:Nophica:801A:/ +1322.3 "Matron's Plenty" Ability { id: "7C08", source: "Nophica" } window 50,50 jump 1170.3 +1331.4 "Floral Haze" #Ability { id: "7DEB", source: "Nophica" } +1337.5 "Landwaker" #Ability { id: "7C19", source: "Nophica" } +1344.6 "--sync--" #Ability { id: "7C0C", source: "Nophica" } +1345.2 "Reaper's Gale 1" #Ability { id: "7C0E", source: "Nophica" } +1347.5 "Landwaker" #Ability { id: "7C1C", source: "Nophica" } +1347.6 "Reaper's Gale 2" #Ability { id: "7C0E", source: "Nophica" } +1351.6 "The Giving Land" #Ability { id: "8018", source: "Nophica" } +1358.7 "Sowing Circle" #Ability { id: "7C11", source: "Nophica" } duration 14.3 +1360.8 "Season's Passing" #Ability { id: "7C0A", source: "Nophica" } +1367.8 "The Giving Land" #Ability { id: "801A", source: "Nophica" } #~~~~~~~~~~~~~~~~~# @@ -93,81 +93,81 @@ hideall "Season's Passing" # This is overall an awkward timeline. The two bosses can definitely desync by ~1-2s. # The Bole will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10AB:/ window 10000,0 -2009.0 "--sync--" sync / 14:[^:]*:Nymeia:7A38:/ window 10,10 -2013.5 "Spinner's Wheel" sync / 1[56]:[^:]*:Nymeia:7A38:/ -2019.2 "--sync--" sync / 14:[^:]*:Althyk:7A46:/ window 10,10 -2026.2 "Mythril Greataxe" sync / 1[56]:[^:]*:Althyk:7A46:/ -2041.1 "Spinner's Wheel" sync / 1[56]:[^:]*:Nymeia:7A38:/ window 10,10 -2052.7 "Time and Tide" sync / 1[56]:[^:]*:Althyk:7A39:/ - -2073.9 "--sync--" sync / 14:[^:]*:Althyk:7A47:/ window 10,10 -2078.9 "Axioma" sync / 1[56]:[^:]*:Althyk:7A47:/ -2087.2 "Hydroptosis" sync / 1[56]:[^:]*:Nymeia:7A44:/ -2099.2 "Inexorable Pull" sync / 1[56]:[^:]*:Althyk:7A42:/ -2113.9 "Hydrorythmos" sync / 1[56]:[^:]*:Nymeia:7A3F:/ duration 8 -2125.6 "Mythril Greataxe" sync / 1[56]:[^:]*:Althyk:7A46:/ - -2137.8 "--middle--" sync / 1[56]:[^:]*:Althyk:7A4A:/ -2144.1 "Hydrostasis" sync / 1[56]:[^:]*:Nymeia:7A3A:/ -2145.1 "Petrai" sync / 1[56]:[^:]*:Althyk:7A48:/ -2161.2 "Hydrostasis 1" sync / 1[56]:[^:]*:Nymeia:7A3B:/ -2164.2 "Hydrostasis 2" sync / 1[56]:[^:]*:Nymeia:7A3C:/ -2167.2 "Hydrostasis 3" sync / 1[56]:[^:]*:Nymeia:7A3D:/ - -2185.1 "Spinner's Wheel" sync / 1[56]:[^:]*:Nymeia:7A38:/ window 20,20 -2214.0 "Mythril Greataxe" sync / 1[56]:[^:]*:Althyk:7A46:/ -2218.4 "Hydroptosis" sync / 1[56]:[^:]*:Nymeia:7A44:/ -2235.2 "Petrai" sync / 1[56]:[^:]*:Althyk:7A48:/ - -2240.2 "--middle--" sync / 1[56]:[^:]*:Althyk:7A4A:/ -2243.9 "Philotes" sync / 1[56]:[^:]*:Althyk:(7A35|7A36):/ -2247.7 "Hydrostasis" sync / 1[56]:[^:]*:Nymeia:7A3A:/ window 20,20 -2261.0 "Time and Tide" sync / 1[56]:[^:]*:Althyk:7A39:/ -2261.8 "Hydrostasis 1" sync / 1[56]:[^:]*:Nymeia:7A3E:/ -2264.8 "Hydrostasis 2" sync / 1[56]:[^:]*:Nymeia:7A3B:/ -2267.8 "Hydrostasis 3" sync / 1[56]:[^:]*:Nymeia:7A3C:/ - -2284.5 "--sync--" sync / 14:[^:]*:Althyk:7A47:/ window 20,20 -2289.5 "Axioma" sync / 1[56]:[^:]*:Althyk:7A47:/ -2302.3 "Spinner's Wheel" sync / 1[56]:[^:]*:Nymeia:7A38:/ -2309.4 "Hydrorythmos" sync / 1[56]:[^:]*:Nymeia:7A3F:/ -2313.8 "Time and Tide" sync / 1[56]:[^:]*:Althyk:7A39:/ -2322.1 "Philotes" sync / 1[56]:[^:]*:Althyk:7A36:/ -2339.2 "Hydroptosis" sync / 1[56]:[^:]*:Nymeia:7A44:/ -2343.2 "Inexorable Pull" sync / 1[56]:[^:]*:Althyk:7A42:/ -2356.4 "Petrai" sync / 1[56]:[^:]*:Althyk:7A48:/ -2372.4 "Axioma" sync / 1[56]:[^:]*:Althyk:7A47:/ -2385.1 "Spinner's Wheel" sync / 1[56]:[^:]*:Nymeia:7A38:/ -2387.9 "Mythril Greataxe" sync / 1[56]:[^:]*:Althyk:7A46:/ - -2390.1 "--middle--" sync / 1[56]:[^:]*:Althyk:7A4A:/ -2393.5 "Philotes" sync / 1[56]:[^:]*:Althyk:7A36:/ -2401.6 "Hydrostasis" sync / 1[56]:[^:]*:Nymeia:7A3A:/ window 20,20 -2413.6 "Time and Tide" sync / 1[56]:[^:]*:Althyk:7A39:/ -2415.6 "Hydrostasis 1" sync / 1[56]:[^:]*:Nymeia:7A3E:/ -2418.6 "Hydrostasis 2" sync / 1[56]:[^:]*:Nymeia:7A3B:/ -2421.6 "Hydrostasis 3" sync / 1[56]:[^:]*:Nymeia:7A3C:/ - -2441.9 "Axioma" sync / 1[56]:[^:]*:Althyk:7A47:/ -2447.2 "Philotes" sync / 1[56]:[^:]*:Althyk:7A36:/ -2455.9 "Spinner's Wheel" sync / 1[56]:[^:]*:Nymeia:7A38:/ window 20,20 -2463.0 "Hydrorythmos" sync / 1[56]:[^:]*:Nymeia:7A3F:/ -2467.4 "Time and Tide" sync / 1[56]:[^:]*:Althyk:7A39:/ -2475.7 "Philotes" sync / 1[56]:[^:]*:Althyk:7A36:/ -2488.8 "Hydroptosis" sync / 1[56]:[^:]*:Nymeia:7A44:/ -2492.8 "Inexorable Pull" sync / 1[56]:[^:]*:Althyk:7A42:/ - -2496.9 "--sync--" sync / 1[56]:[^:]*:Althyk:7A4A:/ -2509.3 "--sync--" sync / 14:[^:]*:Althyk:7A4C:/ window 200,200 -2519.3 "Neikos Enrage" sync / 1[56]:[^:]*:Althyk:7A4C:/ -#2520.5 "Neikos" sync / 1[56]:[^:]*:Nymeia:7A4D:/ -#2520.5 "Neikos" sync / 1[56]:[^:]*:Althyk & Nymeia:7A4E:/ - -#2522.5 "--sync--" sync / 1[56]:[^:]*:Althyk & Nymeia:801C:/ -#2537.6 "Neikos" sync / 1[56]:[^:]*:Nymeia:7D99:/ -#2537.6 "Neikos" sync / 1[56]:[^:]*:Althyk:7D98:/ -#2537.6 "Neikos" sync / 1[56]:[^:]*:Althyk & Nymeia:7A4E:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10AB" } window 10000,0 +2009.0 "--sync--" StartsUsing { id: "7A38", source: "Nymeia" } window 10,10 +2013.5 "Spinner's Wheel" Ability { id: "7A38", source: "Nymeia" } +2019.2 "--sync--" StartsUsing { id: "7A46", source: "Althyk" } window 10,10 +2026.2 "Mythril Greataxe" Ability { id: "7A46", source: "Althyk" } +2041.1 "Spinner's Wheel" Ability { id: "7A38", source: "Nymeia" } window 10,10 +2052.7 "Time and Tide" Ability { id: "7A39", source: "Althyk" } + +2073.9 "--sync--" StartsUsing { id: "7A47", source: "Althyk" } window 10,10 +2078.9 "Axioma" Ability { id: "7A47", source: "Althyk" } +2087.2 "Hydroptosis" Ability { id: "7A44", source: "Nymeia" } +2099.2 "Inexorable Pull" Ability { id: "7A42", source: "Althyk" } +2113.9 "Hydrorythmos" Ability { id: "7A3F", source: "Nymeia" } duration 8 +2125.6 "Mythril Greataxe" Ability { id: "7A46", source: "Althyk" } + +2137.8 "--middle--" Ability { id: "7A4A", source: "Althyk" } +2144.1 "Hydrostasis" Ability { id: "7A3A", source: "Nymeia" } +2145.1 "Petrai" Ability { id: "7A48", source: "Althyk" } +2161.2 "Hydrostasis 1" Ability { id: "7A3B", source: "Nymeia" } +2164.2 "Hydrostasis 2" Ability { id: "7A3C", source: "Nymeia" } +2167.2 "Hydrostasis 3" Ability { id: "7A3D", source: "Nymeia" } + +2185.1 "Spinner's Wheel" Ability { id: "7A38", source: "Nymeia" } window 20,20 +2214.0 "Mythril Greataxe" Ability { id: "7A46", source: "Althyk" } +2218.4 "Hydroptosis" Ability { id: "7A44", source: "Nymeia" } +2235.2 "Petrai" Ability { id: "7A48", source: "Althyk" } + +2240.2 "--middle--" Ability { id: "7A4A", source: "Althyk" } +2243.9 "Philotes" Ability { id: ["7A35", "7A36"], source: "Althyk" } +2247.7 "Hydrostasis" Ability { id: "7A3A", source: "Nymeia" } window 20,20 +2261.0 "Time and Tide" Ability { id: "7A39", source: "Althyk" } +2261.8 "Hydrostasis 1" Ability { id: "7A3E", source: "Nymeia" } +2264.8 "Hydrostasis 2" Ability { id: "7A3B", source: "Nymeia" } +2267.8 "Hydrostasis 3" Ability { id: "7A3C", source: "Nymeia" } + +2284.5 "--sync--" StartsUsing { id: "7A47", source: "Althyk" } window 20,20 +2289.5 "Axioma" Ability { id: "7A47", source: "Althyk" } +2302.3 "Spinner's Wheel" Ability { id: "7A38", source: "Nymeia" } +2309.4 "Hydrorythmos" Ability { id: "7A3F", source: "Nymeia" } +2313.8 "Time and Tide" Ability { id: "7A39", source: "Althyk" } +2322.1 "Philotes" Ability { id: "7A36", source: "Althyk" } +2339.2 "Hydroptosis" Ability { id: "7A44", source: "Nymeia" } +2343.2 "Inexorable Pull" Ability { id: "7A42", source: "Althyk" } +2356.4 "Petrai" Ability { id: "7A48", source: "Althyk" } +2372.4 "Axioma" Ability { id: "7A47", source: "Althyk" } +2385.1 "Spinner's Wheel" Ability { id: "7A38", source: "Nymeia" } +2387.9 "Mythril Greataxe" Ability { id: "7A46", source: "Althyk" } + +2390.1 "--middle--" Ability { id: "7A4A", source: "Althyk" } +2393.5 "Philotes" Ability { id: "7A36", source: "Althyk" } +2401.6 "Hydrostasis" Ability { id: "7A3A", source: "Nymeia" } window 20,20 +2413.6 "Time and Tide" Ability { id: "7A39", source: "Althyk" } +2415.6 "Hydrostasis 1" Ability { id: "7A3E", source: "Nymeia" } +2418.6 "Hydrostasis 2" Ability { id: "7A3B", source: "Nymeia" } +2421.6 "Hydrostasis 3" Ability { id: "7A3C", source: "Nymeia" } + +2441.9 "Axioma" Ability { id: "7A47", source: "Althyk" } +2447.2 "Philotes" Ability { id: "7A36", source: "Althyk" } +2455.9 "Spinner's Wheel" Ability { id: "7A38", source: "Nymeia" } window 20,20 +2463.0 "Hydrorythmos" Ability { id: "7A3F", source: "Nymeia" } +2467.4 "Time and Tide" Ability { id: "7A39", source: "Althyk" } +2475.7 "Philotes" Ability { id: "7A36", source: "Althyk" } +2488.8 "Hydroptosis" Ability { id: "7A44", source: "Nymeia" } +2492.8 "Inexorable Pull" Ability { id: "7A42", source: "Althyk" } + +2496.9 "--sync--" Ability { id: "7A4A", source: "Althyk" } +2509.3 "--sync--" StartsUsing { id: "7A4C", source: "Althyk" } window 200,200 +2519.3 "Neikos Enrage" Ability { id: "7A4C", source: "Althyk" } +#2520.5 "Neikos" Ability { id: "7A4D", source: "Nymeia" } +#2520.5 "Neikos" Ability { id: "7A4E", source: "Althyk & Nymeia" } + +#2522.5 "--sync--" Ability { id: "801C", source: "Althyk & Nymeia" } +#2537.6 "Neikos" Ability { id: "7D99", source: "Nymeia" } +#2537.6 "Neikos" Ability { id: "7D98", source: "Althyk" } +#2537.6 "Neikos" Ability { id: "7A4E", source: "Althyk & Nymeia" } #~~~~~~~~# @@ -180,133 +180,133 @@ hideall "Season's Passing" # -it "Glacial Spear" # The Barbs will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10AD:/ window 10000,0 -3009.0 "--sync--" sync / 14:[^:]*:Halone:7D79:/ -3013.0 "Rain of Spears x3" sync / 1[56]:[^:]*:Halone:7D79:/ - -3024.6 "--sync--" sync / 14:[^:]*:Halone:7D45:/ -3037.9 "--sync--" sync / 1[56]:[^:]*:Halone:7D45:/ -3038.1 "Tetrapagos 1" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3040.1 "Tetrapagos 2" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3042.1 "Tetrapagos 3" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3044.1 "Tetrapagos 4" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ - -3049.2 "--sync--" sync / 14:[^:]*:Halone:7D45:/ -3062.2 "--sync--" sync / 1[56]:[^:]*:Halone:7D45:/ -3062.4 "Tetrapagos 1" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3064.4 "Tetrapagos 2" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3066.4 "Tetrapagos 3" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3068.4 "Tetrapagos 4" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ - -3077.4 "--sync--" sync / 1[56]:[^:]*:Halone:80AD:/ -3078.4 "Doom Spear 1" sync / 1[56]:[^:]*:Halone:80AF:/ -3080.4 "Doom Spear 2" sync / 1[56]:[^:]*:Halone:80B0:/ -3082.4 "Doom Spear 3" sync / 1[56]:[^:]*:Halone:80B1:/ -3087.8 "Spears Three" sync / 1[56]:[^:]*:Halone:7D77:/ - -3095.0 "--middle--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3102.9 "Thousandfold Thrust" sync / 1[56]:[^:]*:Halone:7D57:/ duration 4 - -3111.7 "--middle--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3119.8 "Thousandfold Thrust" sync / 1[56]:[^:]*:Halone:7D57:/ duration 4 - -3129.9 "--middle--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3136.3 "--sync--" sync / 1[56]:[^:]*:Halone:7D5A:/ -3142.2 "Lochos" sync / 1[56]:[^:]*:Halone:7D5B:/ duration 4 - -3149.3 "--middle--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3153.7 "Will of the Fury" sync / 1[56]:[^:]*:Halone:7D5D:/ -3159.6 "--sync--" sync / 1[56]:[^:]*:Halone:7D5E:/ -3161.6 "--sync--" sync / 1[56]:[^:]*:Halone:7D5F:/ -3163.6 "--sync--" sync / 1[56]:[^:]*:Halone:7D60:/ -3165.6 "--sync--" sync / 1[56]:[^:]*:Halone:7D61:/ -3165.9 "Wrath of Halone" sync / 1[56]:[^:]*:Halone:7D63:/ -3180.3 "--north--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3182.0 "--sync--" sync / 1[56]:[^:]*:Halone:7D68:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10AD" } window 10000,0 +3009.0 "--sync--" StartsUsing { id: "7D79", source: "Halone" } +3013.0 "Rain of Spears x3" Ability { id: "7D79", source: "Halone" } + +3024.6 "--sync--" StartsUsing { id: "7D45", source: "Halone" } +3037.9 "--sync--" Ability { id: "7D45", source: "Halone" } +3038.1 "Tetrapagos 1" #Ability { id: "7D4[ABCD]", source: "Halone" } +3040.1 "Tetrapagos 2" #Ability { id: "7D4[ABCD]", source: "Halone" } +3042.1 "Tetrapagos 3" #Ability { id: "7D4[ABCD]", source: "Halone" } +3044.1 "Tetrapagos 4" #Ability { id: "7D4[ABCD]", source: "Halone" } + +3049.2 "--sync--" StartsUsing { id: "7D45", source: "Halone" } +3062.2 "--sync--" Ability { id: "7D45", source: "Halone" } +3062.4 "Tetrapagos 1" #Ability { id: "7D4[ABCD]", source: "Halone" } +3064.4 "Tetrapagos 2" #Ability { id: "7D4[ABCD]", source: "Halone" } +3066.4 "Tetrapagos 3" #Ability { id: "7D4[ABCD]", source: "Halone" } +3068.4 "Tetrapagos 4" #Ability { id: "7D4[ABCD]", source: "Halone" } + +3077.4 "--sync--" Ability { id: "80AD", source: "Halone" } +3078.4 "Doom Spear 1" Ability { id: "80AF", source: "Halone" } +3080.4 "Doom Spear 2" Ability { id: "80B0", source: "Halone" } +3082.4 "Doom Spear 3" Ability { id: "80B1", source: "Halone" } +3087.8 "Spears Three" Ability { id: "7D77", source: "Halone" } + +3095.0 "--middle--" Ability { id: "7D7C", source: "Halone" } +3102.9 "Thousandfold Thrust" Ability { id: "7D57", source: "Halone" } duration 4 + +3111.7 "--middle--" Ability { id: "7D7C", source: "Halone" } +3119.8 "Thousandfold Thrust" Ability { id: "7D57", source: "Halone" } duration 4 + +3129.9 "--middle--" Ability { id: "7D7C", source: "Halone" } +3136.3 "--sync--" Ability { id: "7D5A", source: "Halone" } +3142.2 "Lochos" Ability { id: "7D5B", source: "Halone" } duration 4 + +3149.3 "--middle--" Ability { id: "7D7C", source: "Halone" } +3153.7 "Will of the Fury" Ability { id: "7D5D", source: "Halone" } +3159.6 "--sync--" Ability { id: "7D5E", source: "Halone" } +3161.6 "--sync--" Ability { id: "7D5F", source: "Halone" } +3163.6 "--sync--" Ability { id: "7D60", source: "Halone" } +3165.6 "--sync--" Ability { id: "7D61", source: "Halone" } +3165.9 "Wrath of Halone" Ability { id: "7D63", source: "Halone" } +3180.3 "--north--" Ability { id: "7D7C", source: "Halone" } +3182.0 "--sync--" Ability { id: "7D68", source: "Halone" } 3185.0 "--untargetable--" # Add phase 3187.8 "--adds targetable--" -3205.0 "Niphas" sync / 1[56]:[^:]*:Glacial Spear:7D69:/ -3205.0 "Ice Dart" sync / 1[56]:[^:]*:Halone:7D66:/ -3223.0 "Cheimon" sync / 1[56]:[^:]*:Glacial Spear:7D6A:/ -3239.0 "Ice Dart" sync / 1[56]:[^:]*:Halone:7D66:/ +3205.0 "Niphas" Ability { id: "7D69", source: "Glacial Spear" } +3205.0 "Ice Dart" Ability { id: "7D66", source: "Halone" } +3223.0 "Cheimon" Ability { id: "7D6A", source: "Glacial Spear" } +3239.0 "Ice Dart" Ability { id: "7D66", source: "Halone" } # ??? -3500.0 "Fury's Aegis" sync / 1[56]:[^:]*:Halone:7D6E:/ window 500,0 -3501.0 "Shockwave" sync / 1[56]:[^:]*:Halone:7D6F:/ -3508.9 "Fury's Aegis" sync / 1[56]:[^:]*:Halone:7D70:/ duration 8.5 -3509.5 "--sync--" sync / 1[56]:[^:]*:Halone:7D71:/ -3509.9 "--sync--" sync / 1[56]:[^:]*:Halone:7D72:/ -3510.5 "--sync--" sync / 1[56]:[^:]*:Halone:7D73:/ -3511.1 "--sync--" sync / 1[56]:[^:]*:Halone:7D74:/ -3517.4 "--sync--" sync / 1[56]:[^:]*:Halone:7D75:/ -3525.4 "--sync--" sync / 1[56]:[^:]*:Halone:7D7C:/ +3500.0 "Fury's Aegis" Ability { id: "7D6E", source: "Halone" } window 500,0 +3501.0 "Shockwave" Ability { id: "7D6F", source: "Halone" } +3508.9 "Fury's Aegis" Ability { id: "7D70", source: "Halone" } duration 8.5 +3509.5 "--sync--" Ability { id: "7D71", source: "Halone" } +3509.9 "--sync--" Ability { id: "7D72", source: "Halone" } +3510.5 "--sync--" Ability { id: "7D73", source: "Halone" } +3511.1 "--sync--" Ability { id: "7D74", source: "Halone" } +3517.4 "--sync--" Ability { id: "7D75", source: "Halone" } +3525.4 "--sync--" Ability { id: "7D7C", source: "Halone" } 3525.4 "--targetable--" -3531.8 "--middle--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3538.2 "--sync--" sync / 1[56]:[^:]*:Halone:7D5A:/ -3547.7 "Thousandfold Thrust" sync / 1[56]:[^:]*:Halone:7D57:/ duration 4 -3547.9 "Lochos" sync / 1[56]:[^:]*:Halone:7D5B:/ duration 4 - -3556.9 "Ice Dart" sync / 1[56]:[^:]*:Halone:7D66:/ -3561.6 "Will of the Fury" sync / 1[56]:[^:]*:Halone:7D5D:/ -3567.5 "--sync--" sync / 1[56]:[^:]*:Halone:7D5E:/ -3569.5 "--sync--" sync / 1[56]:[^:]*:Halone:7D5F:/ -3571.5 "--sync--" sync / 1[56]:[^:]*:Halone:7D60:/ -3573.5 "--sync--" sync / 1[56]:[^:]*:Halone:7D61:/ -3573.8 "Wrath of Halone" sync / 1[56]:[^:]*:Halone:7D63:/ -3575.5 "--sync--" sync / 1[56]:[^:]*:Halone:7D62:/ - -3578.1 "--sync--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3592.5 "--sync--" sync / 1[56]:[^:]*:Halone:7D59:/ -3592.7 "Tetrapagos 1" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3594.7 "Tetrapagos 2" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3596.7 "Tetrapagos 3" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3598.7 "Tetrapagos 4" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3602.8 "Thousandfold Thrust" sync / 1[56]:[^:]*:Halone:7D57:/ duration 4 - -3615.2 "--middle--" sync / 1[56]:[^:]*:Halone:80AD:/ -3616.2 "Doom Spear 1" sync / 1[56]:[^:]*:Halone:80AF:/ -3618.2 "Doom Spear 2" sync / 1[56]:[^:]*:Halone:80B0:/ -3620.2 "Doom Spear 3" sync / 1[56]:[^:]*:Halone:80B1:/ -3625.6 "Rain of Spears x3" sync / 1[56]:[^:]*:Halone:7D79:/ - -3638.8 "--middle--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3643.5 "Chalaza" sync / 1[56]:[^:]*:Halone:7D65:/ -3650.4 "Ice Rondel" sync / 1[56]:[^:]*:Halone:7D67:/ -3650.4 "Ice Dart" sync / 1[56]:[^:]*:Halone:7D66:/ - -3661.7 "--sync--" sync / 1[56]:[^:]*:Halone:7D45:/ -3661.9 "Tetrapagos 1" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3663.9 "Tetrapagos 2" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3665.9 "Tetrapagos 3" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3667.9 "Tetrapagos 4" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3674.2 "Spears Three" sync / 1[56]:[^:]*:Halone:7D77:/ - -3680.3 "--middle--" sync / 1[56]:[^:]*:Halone:7D7C:/ -3686.7 "--sync--" sync / 1[56]:[^:]*:Halone:7D5A:/ -3696.6 "Thousandfold Thrust" sync / 1[56]:[^:]*:Halone:7D57:/ duration 4 -3696.6 "Lochos" sync / 1[56]:[^:]*:Halone:7D5B:/ duration 4 -3705.7 "Ice Dart" sync / 1[56]:[^:]*:Halone:7D66:/ -3710.4 "Will of the Fury" sync / 1[56]:[^:]*:Halone:7D5D:/ -3716.3 "--sync--" sync / 1[56]:[^:]*:Halone:7D5E:/ -3718.3 "--sync--" sync / 1[56]:[^:]*:Halone:7D5F:/ -3720.3 "--sync--" sync / 1[56]:[^:]*:Halone:7D60:/ -3722.3 "--sync--" sync / 1[56]:[^:]*:Halone:7D61:/ -3722.6 "Wrath of Halone" sync / 1[56]:[^:]*:Halone:7D63:/ -3724.3 "--sync--" sync / 1[56]:[^:]*:Halone:7D62:/ -3731.1 "Rain of Spears" sync / 1[56]:[^:]*:Halone:7D79:/ +3531.8 "--middle--" Ability { id: "7D7C", source: "Halone" } +3538.2 "--sync--" Ability { id: "7D5A", source: "Halone" } +3547.7 "Thousandfold Thrust" Ability { id: "7D57", source: "Halone" } duration 4 +3547.9 "Lochos" Ability { id: "7D5B", source: "Halone" } duration 4 + +3556.9 "Ice Dart" Ability { id: "7D66", source: "Halone" } +3561.6 "Will of the Fury" Ability { id: "7D5D", source: "Halone" } +3567.5 "--sync--" Ability { id: "7D5E", source: "Halone" } +3569.5 "--sync--" Ability { id: "7D5F", source: "Halone" } +3571.5 "--sync--" Ability { id: "7D60", source: "Halone" } +3573.5 "--sync--" Ability { id: "7D61", source: "Halone" } +3573.8 "Wrath of Halone" Ability { id: "7D63", source: "Halone" } +3575.5 "--sync--" Ability { id: "7D62", source: "Halone" } + +3578.1 "--sync--" Ability { id: "7D7C", source: "Halone" } +3592.5 "--sync--" Ability { id: "7D59", source: "Halone" } +3592.7 "Tetrapagos 1" #Ability { id: "7D4[ABCD]", source: "Halone" } +3594.7 "Tetrapagos 2" #Ability { id: "7D4[ABCD]", source: "Halone" } +3596.7 "Tetrapagos 3" #Ability { id: "7D4[ABCD]", source: "Halone" } +3598.7 "Tetrapagos 4" #Ability { id: "7D4[ABCD]", source: "Halone" } +3602.8 "Thousandfold Thrust" Ability { id: "7D57", source: "Halone" } duration 4 + +3615.2 "--middle--" Ability { id: "80AD", source: "Halone" } +3616.2 "Doom Spear 1" Ability { id: "80AF", source: "Halone" } +3618.2 "Doom Spear 2" Ability { id: "80B0", source: "Halone" } +3620.2 "Doom Spear 3" Ability { id: "80B1", source: "Halone" } +3625.6 "Rain of Spears x3" Ability { id: "7D79", source: "Halone" } + +3638.8 "--middle--" Ability { id: "7D7C", source: "Halone" } +3643.5 "Chalaza" Ability { id: "7D65", source: "Halone" } +3650.4 "Ice Rondel" Ability { id: "7D67", source: "Halone" } +3650.4 "Ice Dart" Ability { id: "7D66", source: "Halone" } + +3661.7 "--sync--" Ability { id: "7D45", source: "Halone" } +3661.9 "Tetrapagos 1" #Ability { id: "7D4[ABCD]", source: "Halone" } +3663.9 "Tetrapagos 2" #Ability { id: "7D4[ABCD]", source: "Halone" } +3665.9 "Tetrapagos 3" #Ability { id: "7D4[ABCD]", source: "Halone" } +3667.9 "Tetrapagos 4" #Ability { id: "7D4[ABCD]", source: "Halone" } +3674.2 "Spears Three" Ability { id: "7D77", source: "Halone" } + +3680.3 "--middle--" Ability { id: "7D7C", source: "Halone" } +3686.7 "--sync--" Ability { id: "7D5A", source: "Halone" } +3696.6 "Thousandfold Thrust" Ability { id: "7D57", source: "Halone" } duration 4 +3696.6 "Lochos" Ability { id: "7D5B", source: "Halone" } duration 4 +3705.7 "Ice Dart" Ability { id: "7D66", source: "Halone" } +3710.4 "Will of the Fury" Ability { id: "7D5D", source: "Halone" } +3716.3 "--sync--" Ability { id: "7D5E", source: "Halone" } +3718.3 "--sync--" Ability { id: "7D5F", source: "Halone" } +3720.3 "--sync--" Ability { id: "7D60", source: "Halone" } +3722.3 "--sync--" Ability { id: "7D61", source: "Halone" } +3722.6 "Wrath of Halone" Ability { id: "7D63", source: "Halone" } +3724.3 "--sync--" Ability { id: "7D62", source: "Halone" } +3731.1 "Rain of Spears" Ability { id: "7D79", source: "Halone" } # loop -3742.2 "--middle--" sync / 1[56]:[^:]*:Halone:7D7C:/ jump 3578.1 window 50,50 -3756.6 "--sync--" #sync / 1[56]:[^:]*:Halone:7D59:/ -3756.8 "Tetrapagos 1" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3758.8 "Tetrapagos 2" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3760.8 "Tetrapagos 3" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3762.8 "Tetrapagos 4" #sync / 1[56]:[^:]*:Halone:7D4[ABCD]:/ -3766.9 "Thousandfold Thrust" #sync / 1[56]:[^:]*:Halone:7D57:/ duration 4 +3742.2 "--middle--" Ability { id: "7D7C", source: "Halone" } jump 3578.1 window 50,50 +3756.6 "--sync--" #Ability { id: "7D59", source: "Halone" } +3756.8 "Tetrapagos 1" #Ability { id: "7D4[ABCD]", source: "Halone" } +3758.8 "Tetrapagos 2" #Ability { id: "7D4[ABCD]", source: "Halone" } +3760.8 "Tetrapagos 3" #Ability { id: "7D4[ABCD]", source: "Halone" } +3762.8 "Tetrapagos 4" #Ability { id: "7D4[ABCD]", source: "Halone" } +3766.9 "Thousandfold Thrust" #Ability { id: "7D57", source: "Halone" } duration 4 #~~~~~~~~~~# @@ -319,114 +319,114 @@ hideall "Season's Passing" # -it "Ceremonial Pillar" # The Chamber of Revolutions will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10BC:/ window 10000,0 -4013.1 "Blue Moon" sync / 1[56]:[^:]*:Menphina:7BFA:/ -4020.9 "Love's Light" sync / 1[56]:[^:]*:Menphina:7BB8:/ -4026.6 "Full Bright" sync / 1[56]:[^:]*:Menphina:7BBB:/ -4038.0 "First Blush" sync / 1[56]:[^:]*:Menphina:7BBC:/ - -4040.3 "--middle--" sync / 1[56]:[^:]*:Menphina:7BD3:/ -4048.6 "Midnight Frost" sync / 1[56]:[^:]*:Menphina:(7BCB|7BCC):/ -4061.2 "Lunar Kiss" sync / 1[56]:[^:]*:Menphina:7BF7:/ - -4070.0 "--sync--" sync / 1[56]:[^:]*:Menphina:7BF5:/ -4070.0 "Silver Mirror 1" #sync / 1[56]:[^:]*:Menphina:7BF6:/ -4072.0 "Silver Mirror 2" #sync / 1[56]:[^:]*:Menphina:7BF6:/ -4074.0 "Silver Mirror 3" #sync / 1[56]:[^:]*:Menphina:7BF6:/ - -4076.7 "--sync--" sync / 1[56]:[^:]*:Menphina:7BC8:/ -4077.7 "Moonset 1" #sync / 1[56]:[^:]*:Menphina:7BCA:/ -4079.9 "Moonset 2" #sync / 1[56]:[^:]*:Menphina:7BCA:/ -4082.1 "Moonset 3" #sync / 1[56]:[^:]*:Menphina:7BCA:/ -4088.5 "Winter Halo" sync / 1[56]:[^:]*:Menphina:7BC6:/ - -4097.2 "Love's Light" sync / 1[56]:[^:]*:Menphina:7BB9:/ -4102.9 "Full Bright" sync / 1[56]:[^:]*:Menphina:7BBB:/ -4109.9 "Lovers' Bridge 1" sync / 1[56]:[^:]*:Menphina:7BBD:/ -4112.8 "--middle--" sync / 1[56]:[^:]*:Menphina:7BD3:/ -4116.0 "Lovers' Bridge 2" sync / 1[56]:[^:]*:Menphina:7BBE:/ -4121.0 "Midnight Frost" sync / 1[56]:[^:]*:Menphina:(7BCB|7BCC):/ +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10BC" } window 10000,0 +4013.1 "Blue Moon" Ability { id: "7BFA", source: "Menphina" } +4020.9 "Love's Light" Ability { id: "7BB8", source: "Menphina" } +4026.6 "Full Bright" Ability { id: "7BBB", source: "Menphina" } +4038.0 "First Blush" Ability { id: "7BBC", source: "Menphina" } + +4040.3 "--middle--" Ability { id: "7BD3", source: "Menphina" } +4048.6 "Midnight Frost" Ability { id: ["7BCB", "7BCC"], source: "Menphina" } +4061.2 "Lunar Kiss" Ability { id: "7BF7", source: "Menphina" } + +4070.0 "--sync--" Ability { id: "7BF5", source: "Menphina" } +4070.0 "Silver Mirror 1" #Ability { id: "7BF6", source: "Menphina" } +4072.0 "Silver Mirror 2" #Ability { id: "7BF6", source: "Menphina" } +4074.0 "Silver Mirror 3" #Ability { id: "7BF6", source: "Menphina" } + +4076.7 "--sync--" Ability { id: "7BC8", source: "Menphina" } +4077.7 "Moonset 1" #Ability { id: "7BCA", source: "Menphina" } +4079.9 "Moonset 2" #Ability { id: "7BCA", source: "Menphina" } +4082.1 "Moonset 3" #Ability { id: "7BCA", source: "Menphina" } +4088.5 "Winter Halo" Ability { id: "7BC6", source: "Menphina" } + +4097.2 "Love's Light" Ability { id: "7BB9", source: "Menphina" } +4102.9 "Full Bright" Ability { id: "7BBB", source: "Menphina" } +4109.9 "Lovers' Bridge 1" Ability { id: "7BBD", source: "Menphina" } +4112.8 "--middle--" Ability { id: "7BD3", source: "Menphina" } +4116.0 "Lovers' Bridge 2" Ability { id: "7BBE", source: "Menphina" } +4121.0 "Midnight Frost" Ability { id: ["7BCB", "7BCC"], source: "Menphina" } # add phase -4125.8 "--sync--" sync / 1[56]:[^:]*:Menphina:7BD3:/ -4131.5 "Selenain Mysteria" sync / 1[56]:[^:]*:Menphina:7ABC:/ +4125.8 "--sync--" Ability { id: "7BD3", source: "Menphina" } +4131.5 "Selenain Mysteria" Ability { id: "7ABC", source: "Menphina" } 4131.5 "--untargetable--" 4135.8 "--adds targetable--" -4145.4 "Ancient Blizzard" #sync / 1[56]:[^:]*:Ice Sprite:8066:/ -4148.3 "Keen Moonbeam" sync / 1[56]:[^:]*:Menphina:7BF4:/ -4155.2 "Ancient Blizzard" #sync / 1[56]:[^:]*:Ice Sprite:8066:/ -4162.9 "Keen Moonbeam" sync / 1[56]:[^:]*:Menphina:7BF4:/ -4169.8 "Ancient Blizzard" #sync / 1[56]:[^:]*:Ice Sprite:8066:/ +4145.4 "Ancient Blizzard" #Ability { id: "8066", source: "Ice Sprite" } +4148.3 "Keen Moonbeam" Ability { id: "7BF4", source: "Menphina" } +4155.2 "Ancient Blizzard" #Ability { id: "8066", source: "Ice Sprite" } +4162.9 "Keen Moonbeam" Ability { id: "7BF4", source: "Menphina" } +4169.8 "Ancient Blizzard" #Ability { id: "8066", source: "Ice Sprite" } # ??? -4500.0 "--sync--" sync / 14:[^:]*:Menphina:8064:/ window 500,0 -4510.0 "Rise of the Twin Moons" sync / 1[56]:[^:]*:Menphina:8064:/ +4500.0 "--sync--" StartsUsing { id: "8064", source: "Menphina" } window 500,0 +4510.0 "Rise of the Twin Moons" Ability { id: "8064", source: "Menphina" } 4513.2 "--targetable--" -4526.6 "Midnight Frost" sync / 1[56]:[^:]*:Menphina:(7BD7|7BD8|7BD9|7BDA):/ -4526.8 "Waxing Claw" sync / 1[56]:[^:]*:Menphina:(7BE0|7BE1):/ - -4535.5 "Playful Orbit" sync / 1[56]:[^:]*:Menphina:(7BE2|7BE3):/ -4545.7 "Midnight Frost" sync / 1[56]:[^:]*:Menphina:(7BE4|7BE5|7BE6|7BE7|7F0A|7F0B|7F0C|7F0D):/ -4545.8 "Waxing Claw" sync / 1[56]:[^:]*:Menphina:(7BE0|7BE1):/ - -4548.8 "--sync--" sync / 1[56]:[^:]*:Menphina:(7C06|7C07):/ -4558.9 "Blue Moon" sync / 1[56]:[^:]*:Menphina:7BFB:/ -4566.7 "--sync--" sync / 1[56]:[^:]*:Menphina:7BF3:/ -4573.3 "Keen Moonbeam" sync / 1[56]:[^:]*:Menphina:7BF4:/ -4579.3 "Midnight Frost" sync / 1[56]:[^:]*:Menphina:(7BD7|7BD8|7BD9|7BDA):/ -4579.4 "Waxing Claw" sync / 1[56]:[^:]*:Menphina:(7BE0|7BE1):/ - -4586.4 "Cratering Chill" sync / 1[56]:[^:]*:Menphina:7BEE:/ -4593.5 "Winter Solstice" sync / 1[56]:[^:]*:Menphina:7BED:/ -4593.8 "--sync--" sync / 1[56]:[^:]*:Menphina:7BEF:/ -4597.9 "Playful Orbit" sync / 1[56]:[^:]*:Menphina:(7BE2|7BE3):/ -4608.1 "Winter Halo" sync / 1[56]:[^:]*:Menphina:(7BE8|7BE9|7F0E|7F0F|7BDB|7BDC):/ -4608.2 "Waxing Claw" sync / 1[56]:[^:]*:Menphina:(7BE0|7BE1):/ - -4611.2 "--sync--" sync / 1[56]:[^:]*:Menphina:(7C06|7C07):/ -4619.3 "Moonset Rays" sync / 1[56]:[^:]*:Menphina:80F9:/ -4628.0 "Love's Light" sync / 1[56]:[^:]*:Menphina:7BC3:/ -4632.7 "Full Bright" sync / 1[56]:[^:]*:Menphina:7BC5:/ -4639.5 "--sync--" sync / 1[56]:[^:]*:Menphina:7BBD:/ -4645.5 "Lovers' Bridge 1" #sync / 1[56]:[^:]*:Menphina:7BBE:/ -4645.5 "Lovers' Bridge 2" #sync / 1[56]:[^:]*:Menphina:7BBE:/ - -4651.6 "--sync--" sync / 1[56]:[^:]*:Menphina:7AAA:/ -4651.6 "Silver Mirror 1" #sync / 1[56]:[^:]*:Menphina:7BF6:/ -4653.6 "Silver Mirror 2" #sync / 1[56]:[^:]*:Menphina:7BF6:/ -4655.6 "Silver Mirror 3" #sync / 1[56]:[^:]*:Menphina:7BF6:/ -4661.3 "Midnight Frost/Winter Halo" sync / 1[56]:[^:]*:Menphina:(7BD7|7BD8|7BD9|7BDA|7BE8|7BE9|7F0E|7F0F|7BDB|7BDC):/ -4661.5 "Waxing Claw" sync / 1[56]:[^:]*:Menphina:(7BE0|7BE1):/ - -4671.5 "Love's Light" sync / 1[56]:[^:]*:Menphina:7BC2:/ -4676.2 "Full Bright" sync / 1[56]:[^:]*:Menphina:7BC5:/ -4681.4 "Playful Orbit" sync / 1[56]:[^:]*:Menphina:(7BE2|7BE3):/ -4687.4 "First Blush" sync / 1[56]:[^:]*:Menphina:7BBC:/ -4691.5 "Midnight Frost" sync / 1[56]:[^:]*:Menphina:(7BE4|7BE5|7BE6|7BE7|7F0A|7F0B|7F0C|7F0D):/ -4691.7 "Waxing Claw" sync / 1[56]:[^:]*:Menphina:(7BE0|7BE1):/ - -4694.6 "--sync--" sync / 1[56]:[^:]*:Menphina:(7C06|7C07):/ -4702.7 "Moonset Rays" sync / 1[56]:[^:]*:Menphina:80F9:/ - -4717.4 "Lunar Kiss" sync / 1[56]:[^:]*:Menphina:7BF8:/ -4725.2 "Love's Light" sync / 1[56]:[^:]*:Menphina:7BC3:/ -4729.9 "Full Bright" sync / 1[56]:[^:]*:Menphina:7BC5:/ -4736.7 "Lovers' Bridge 1" sync / 1[56]:[^:]*:Menphina:7BBD:/ +4526.6 "Midnight Frost" Ability { id: ["7BD7", "7BD8", "7BD9", "7BDA"], source: "Menphina" } +4526.8 "Waxing Claw" Ability { id: ["7BE0", "7BE1"], source: "Menphina" } + +4535.5 "Playful Orbit" Ability { id: ["7BE2", "7BE3"], source: "Menphina" } +4545.7 "Midnight Frost" Ability { id: ["7BE4", "7BE5", "7BE6", "7BE7", "7F0A", "7F0B", "7F0C", "7F0D"], source: "Menphina" } +4545.8 "Waxing Claw" Ability { id: ["7BE0", "7BE1"], source: "Menphina" } + +4548.8 "--sync--" Ability { id: ["7C06", "7C07"], source: "Menphina" } +4558.9 "Blue Moon" Ability { id: "7BFB", source: "Menphina" } +4566.7 "--sync--" Ability { id: "7BF3", source: "Menphina" } +4573.3 "Keen Moonbeam" Ability { id: "7BF4", source: "Menphina" } +4579.3 "Midnight Frost" Ability { id: ["7BD7", "7BD8", "7BD9", "7BDA"], source: "Menphina" } +4579.4 "Waxing Claw" Ability { id: ["7BE0", "7BE1"], source: "Menphina" } + +4586.4 "Cratering Chill" Ability { id: "7BEE", source: "Menphina" } +4593.5 "Winter Solstice" Ability { id: "7BED", source: "Menphina" } +4593.8 "--sync--" Ability { id: "7BEF", source: "Menphina" } +4597.9 "Playful Orbit" Ability { id: ["7BE2", "7BE3"], source: "Menphina" } +4608.1 "Winter Halo" Ability { id: ["7BE8", "7BE9", "7F0E", "7F0F", "7BDB", "7BDC"], source: "Menphina" } +4608.2 "Waxing Claw" Ability { id: ["7BE0", "7BE1"], source: "Menphina" } + +4611.2 "--sync--" Ability { id: ["7C06", "7C07"], source: "Menphina" } +4619.3 "Moonset Rays" Ability { id: "80F9", source: "Menphina" } +4628.0 "Love's Light" Ability { id: "7BC3", source: "Menphina" } +4632.7 "Full Bright" Ability { id: "7BC5", source: "Menphina" } +4639.5 "--sync--" Ability { id: "7BBD", source: "Menphina" } +4645.5 "Lovers' Bridge 1" #Ability { id: "7BBE", source: "Menphina" } +4645.5 "Lovers' Bridge 2" #Ability { id: "7BBE", source: "Menphina" } + +4651.6 "--sync--" Ability { id: "7AAA", source: "Menphina" } +4651.6 "Silver Mirror 1" #Ability { id: "7BF6", source: "Menphina" } +4653.6 "Silver Mirror 2" #Ability { id: "7BF6", source: "Menphina" } +4655.6 "Silver Mirror 3" #Ability { id: "7BF6", source: "Menphina" } +4661.3 "Midnight Frost/Winter Halo" Ability { id: ["7BD7", "7BD8", "7BD9", "7BDA", "7BE8", "7BE9", "7F0E", "7F0F", "7BDB", "7BDC"], source: "Menphina" } +4661.5 "Waxing Claw" Ability { id: ["7BE0", "7BE1"], source: "Menphina" } + +4671.5 "Love's Light" Ability { id: "7BC2", source: "Menphina" } +4676.2 "Full Bright" Ability { id: "7BC5", source: "Menphina" } +4681.4 "Playful Orbit" Ability { id: ["7BE2", "7BE3"], source: "Menphina" } +4687.4 "First Blush" Ability { id: "7BBC", source: "Menphina" } +4691.5 "Midnight Frost" Ability { id: ["7BE4", "7BE5", "7BE6", "7BE7", "7F0A", "7F0B", "7F0C", "7F0D"], source: "Menphina" } +4691.7 "Waxing Claw" Ability { id: ["7BE0", "7BE1"], source: "Menphina" } + +4694.6 "--sync--" Ability { id: ["7C06", "7C07"], source: "Menphina" } +4702.7 "Moonset Rays" Ability { id: "80F9", source: "Menphina" } + +4717.4 "Lunar Kiss" Ability { id: "7BF8", source: "Menphina" } +4725.2 "Love's Light" Ability { id: "7BC3", source: "Menphina" } +4729.9 "Full Bright" Ability { id: "7BC5", source: "Menphina" } +4736.7 "Lovers' Bridge 1" Ability { id: "7BBD", source: "Menphina" } # This regex could probably be shorter, but need more info. -4739.7 "Midnight Frost" sync / 1[56]:[^:]*:Menphina:(7BCF|7BD0|7BD[789A]|7BE[4567]|7F0[ABCD]):/ -4742.7 "Lovers' Bridge 2" sync / 1[56]:[^:]*:Menphina:7BBE:/ +4739.7 "Midnight Frost" Ability { id: ["7BCF", "7BD0", "7BD[789A]", "7BE[4567]", "7F0[ABCD]"], source: "Menphina" } +4742.7 "Lovers' Bridge 2" Ability { id: "7BBE", source: "Menphina" } -4748.5 "Blue Moon" sync / 1[56]:[^:]*:Menphina:7BFB:/ -4759.2 "Lunar Kiss" sync / 1[56]:[^:]*:Menphina:7BF8:/ -4765.9 "--sync--" sync / 1[56]:[^:]*:Menphina:7BF3:/ -4772.5 "Keen Moonbeam" sync / 1[56]:[^:]*:Menphina:7BF4:/ -4778.2 "Midnight Frost" sync / 1[56]:[^:]*:Menphina:(7BD7|7BD8|7BD9|7BDA):/ -4778.4 "Waxing Claw" sync / 1[56]:[^:]*:Menphina:(7BE0|7BE1):/ +4748.5 "Blue Moon" Ability { id: "7BFB", source: "Menphina" } +4759.2 "Lunar Kiss" Ability { id: "7BF8", source: "Menphina" } +4765.9 "--sync--" Ability { id: "7BF3", source: "Menphina" } +4772.5 "Keen Moonbeam" Ability { id: "7BF4", source: "Menphina" } +4778.2 "Midnight Frost" Ability { id: ["7BD7", "7BD8", "7BD9", "7BDA"], source: "Menphina" } +4778.4 "Waxing Claw" Ability { id: ["7BE0", "7BE1"], source: "Menphina" } # loop, probably -4785.4 "Cratering Chill" sync / 1[56]:[^:]*:Menphina:7BEE:/ window 50,50 jump 4586.4 -4792.5 "Winter Solstice" #sync / 1[56]:[^:]*:Menphina:7BED:/ -4792.8 "--sync--" #sync / 1[56]:[^:]*:Menphina:7BEF:/ -4796.9 "Playful Orbit" sync / 1[56]:[^:]*:Menphina:(7BE2|7BE3):/ -4807.1 "Winter Halo" #sync / 1[56]:[^:]*:Menphina:(7BE8|7BE9|7F0E|7F0F|7BDB|7BDC):/ -4807.2 "Waxing Claw" sync / 1[56]:[^:]*:Menphina:(7BE0|7BE1):/ +4785.4 "Cratering Chill" Ability { id: "7BEE", source: "Menphina" } window 50,50 jump 4586.4 +4792.5 "Winter Solstice" #Ability { id: "7BED", source: "Menphina" } +4792.8 "--sync--" #Ability { id: "7BEF", source: "Menphina" } +4796.9 "Playful Orbit" Ability { id: ["7BE2", "7BE3"], source: "Menphina" } +4807.1 "Winter Halo" #Ability { id: ["7BE8", "7BE9", "7F0E", "7F0F", "7BDB", "7BDC"], source: "Menphina" } +4807.2 "Waxing Claw" Ability { id: ["7BE0", "7BE1"], source: "Menphina" } diff --git a/ui/raidboss/data/06-ew/alliance/thaleia.ts b/ui/raidboss/data/06-ew/alliance/thaleia.ts index ce0d89693b..f5c06ac0a7 100644 --- a/ui/raidboss/data/06-ew/alliance/thaleia.ts +++ b/ui/raidboss/data/06-ew/alliance/thaleia.ts @@ -144,6 +144,7 @@ const triggerSet: TriggerSet = { de: 'Nach Rückstoß Position schauen', fr: 'Repérez la zone de poussée', ja: 'ノックバック位置へ', + ko: '넉백 위치 찾기', }, }, }, @@ -158,6 +159,7 @@ const triggerSet: TriggerSet = { de: 'Rückstoß + rollende Steine', fr: 'Poussée + Rocher', ja: 'ノックバック + 石AOE', + ko: '넉백 + 돌 피하기', }, }, }, @@ -172,6 +174,7 @@ const triggerSet: TriggerSet = { de: 'Geh zum rotierten sicheren Feld', fr: 'Allez dans une zone sûre', // FIXME ja: '安置へ移動', // FIXME + ko: '회전한 뒤의 안전 지대로 가기', }, }, }, @@ -204,6 +207,7 @@ const triggerSet: TriggerSet = { de: 'Rückstoß', fr: 'Poussée', ja: 'まもなくノックバック', + ko: '넉백', }, }, }, @@ -218,6 +222,7 @@ const triggerSet: TriggerSet = { de: 'Weiter Rückstoß', fr: 'Poussée au loin', ja: '遠くノックバック', + ko: '멀리 넉백', }, }, }, @@ -258,6 +263,7 @@ const triggerSet: TriggerSet = { de: 'Letzer Dreizack => erster Dreizack', fr: 'Dernier trident -> 1er trident', ja: '最後の槍 => 1番目の槍へ', + ko: '마지막 창 => 1번째 창으로', }, }, }, @@ -284,6 +290,7 @@ const triggerSet: TriggerSet = { de: 'Geh seitlich des Pfeils (Boss bewegt sich nicht)', fr: 'Allez sur les côtés de la flèche (le boss ne bouge pas)', ja: '矢印の横へ (ボスは動かない)', + ko: '화살표 옆으로 (보스는 움직이지 않음)', }, }, }, @@ -302,12 +309,14 @@ const triggerSet: TriggerSet = { de: 'Geh seitlich des Pfeils', fr: 'Allez sur les côtés de la flèche', ja: '矢印の横へ', + ko: '화살표 옆으로', }, two: { en: 'Corner between two arrows', de: 'Ecke zwichen 2 Pfeilen', fr: 'Coin entre les 2 flèches', ja: '2つの矢印の隅', + ko: '두 화살표 사이로', }, }, }, @@ -324,10 +333,12 @@ const triggerSet: TriggerSet = { stackMarkerOn: { en: '6x Stack on ${player}', de: '6x Sammeln auf ${player}', + ko: '6x 쉐어: ${player}', }, stackMarkerOnYou: { en: '6x Stack on You', de: '6x Sammeln auf Dir', + ko: '6x 쉐어 대상자', }, }, }, @@ -378,6 +389,7 @@ const triggerSet: TriggerSet = { de: 'Rückstoß in die sichere Ecke', fr: 'Poussée vers un coin sûr', ja: 'AOEがないどころへ + ノックバック', + ko: '안전한 구석으로 넉백되기', }, }, }, @@ -392,6 +404,7 @@ const triggerSet: TriggerSet = { de: 'Oschon zweite Phase', fr: 'Oshon : deuxième phase', ja: 'すぐ大きくなる', + ko: '(2페이즈)', }, }, }, @@ -406,6 +419,7 @@ const triggerSet: TriggerSet = { text: { en: '${front} / ${back}', de: '${front} / ${back}', + ko: '${front} / ${back}', }, dirNE: Outputs.dirNE, dirSW: Outputs.dirSW, @@ -422,6 +436,7 @@ const triggerSet: TriggerSet = { text: { en: '${front} / ${back}', de: '${front} / ${back}', + ko: '${front} / ${back}', }, dirNW: Outputs.dirNW, dirSE: Outputs.dirSE, @@ -438,6 +453,7 @@ const triggerSet: TriggerSet = { de: 'Geh in den sicheren Bereich', fr: 'Allez dans une zone sûre', ja: '安置で待機', + ko: '안전지대로', }, }, }, @@ -450,6 +466,7 @@ const triggerSet: TriggerSet = { text: { en: 'South (away from orb)', de: 'Süden (weg vom Orb)', + ko: '남쪽 (구슬에서 멀리)', }, }, }, @@ -462,6 +479,7 @@ const triggerSet: TriggerSet = { text: { en: 'North (away from orb)', de: 'Norden (weg vom Orb)', + ko: '북쪽 (구슬에서 멀리)', }, }, }, @@ -474,6 +492,7 @@ const triggerSet: TriggerSet = { text: { en: 'Knockback to south safe spot', de: 'Rückstoß zum südlichen sicheren Zone', + ko: '남쪽 안전지대로 넉백되기', }, }, }, @@ -486,6 +505,7 @@ const triggerSet: TriggerSet = { text: { en: 'Knockback to north safe spot', de: 'Rückstoß zum nördliche sicheren Zone', + ko: '북쪽 안전지대로 넉백되기', }, }, }, @@ -516,6 +536,7 @@ const triggerSet: TriggerSet = { de: '${form1} => ${form2} => ${form3}', fr: '${form1} => ${form2} => ${form3}', ja: '${form1} => ${form2} => ${form3}', + ko: '${form1} => ${form2} => ${form3}', }, left: Outputs.left, right: Outputs.right, @@ -541,6 +562,7 @@ const triggerSet: TriggerSet = { de: 'Starte vom hellen Mond', fr: 'Commencez depuis la lune pleine', ja: '明るい月から', + ko: '밝은 달부터 시작', }, }, }, @@ -556,6 +578,7 @@ const triggerSet: TriggerSet = { de: '3 => 1 => 2', fr: '3 -> 1 -> 2', ja: '3 => 1 => 2', + ko: '3 => 1 => 2', }, }, }, @@ -571,6 +594,7 @@ const triggerSet: TriggerSet = { de: 'Geh in den sicheren Bereich', fr: 'Allez dans une zone sûre', // FIXME ja: '安置へ移動', // FIXME + ko: '회전한 뒤의 안전 지대로 가기', }, }, }, @@ -618,6 +642,7 @@ const triggerSet: TriggerSet = { de: 'Letzer Dreizack => erster Dreizack', fr: 'Dernier trident -> 1er trident', ja: '最後の槍 => 1番目の槍へ', + ko: '마지막 창 => 1번째 창으로', }, }, }, @@ -677,12 +702,14 @@ const triggerSet: TriggerSet = { de: 'Blau ist sicher', fr: 'Bleu est sûr', ja: '青安置', + ko: '파랑이 안전', }, blue: { en: 'Red is safe', de: 'Rot ist sicher', fr: 'Rouge est sûr', ja: '赤安置', + ko: '빨강이 안전', }, }, }, diff --git a/ui/raidboss/data/06-ew/alliance/thaleia.txt b/ui/raidboss/data/06-ew/alliance/thaleia.txt index 431fa000ac..0e688e45e3 100644 --- a/ui/raidboss/data/06-ew/alliance/thaleia.txt +++ b/ui/raidboss/data/06-ew/alliance/thaleia.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~# # Thaliak # @@ -15,84 +15,84 @@ hideall "--sync--" # Long pull: https://www.fflogs.com/reports/a:ZBxnrKWpPfdt2gCV#fight=11&type=damage-done # The River of Knowledge will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1169:/ window 10000,0 -1005.0 "--sync--" sync / 14:[^:]*:Thaliak:88D1:/ window 10,10 -1010.0 "Katarraktes" sync / 1[56]:[^:]*:Thaliak:88D1:/ - -1016.1 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ -1023.4 "Rheognosis (cast)" sync / 1[56]:[^:]*:Thaliak:88C4:/ -1029.5 "--sync--" sync / 1[56]:[^:]*:Thaliak:88C6:/ -1043.6 "Rheognosis" sync / 1[56]:[^:]*:Thaliak:88C7:/ - -1051.6 "Thlipsis" sync / 1[56]:[^:]*:Thaliak:88D8:/ - -1059.7 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ -1067.0 "Left Bank/Right Bank" sync / 1[56]:[^:]*:Thaliak:(88D2|88D3):/ -1074.1 "Right Bank/Left Bank" sync / 1[56]:[^:]*:Thaliak:(88D3|88D2):/ - -1080.2 "Hydroptosis" sync / 1[56]:[^:]*:Thaliak:88D4:/ - -1092.3 "Rhyton" sync / 1[56]:[^:]*:Thaliak:88D6:/ - -1099.5 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ -1107.8 "Tetraktys (cast)" sync / 1[56]:[^:]*:Thaliak:88C9:/ -1115.8 "Tetraktys 1" sync / 1[56]:[^:]*:Thaliak:88CA:/ -1118.4 "Tetraktys 2" #sync / 1[56]:[^:]*:Thaliak:88CA:/ -1120.8 "Tetraktys 3" #sync / 1[56]:[^:]*:Thaliak:88CA:/ -1123.2 "Tetraktys 4" #sync / 1[56]:[^:]*:Thaliak:88CB:/ -1125.6 "Tetraktys 5 " #sync / 1[56]:[^:]*:Thaliak:88CB:/ -1128.0 "Tetraktys 6" #sync / 1[56]:[^:]*:Thaliak:88CB:/ -1133.9 "Tetraktuos Kosmos 1 (cast)" sync / 1[56]:[^:]*:Thaliak:88CC:/ -1142.8 "Tetraktuos Kosmos 1" sync / 1[56]:[^:]*:Thaliak:88CD:/ -1145.1 "Tetraktuos Kosmos 2 (cast)" sync / 1[56]:[^:]*:Thaliak:88CC:/ -1154.0 "Tetraktuos Kosmos 2" sync / 1[56]:[^:]*:Thaliak:88CD:/ - -1164.3 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ -1171.5 "Rheognosis Petrine" sync / 1[56]:[^:]*:Thaliak:88C5:/ -1177.6 "--sync--" sync / 1[56]:[^:]*:Thaliak:88C6:/ -1191.7 "Rheognosis" sync / 1[56]:[^:]*:Thaliak:88C7:/ - -1197.7 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ -1205.1 "Hieroglyphika 1" sync / 1[56]:[^:]*:Thaliak:88CF:/ -1225.1 "--sync--" sync / 1[56]:[^:]*:Thaliak:88D0:/ -1234.5 "Hieroglyphika 2" sync / 1[56]:[^:]*:Thaliak:88CF:/ -1254.5 "--sync--" sync / 1[56]:[^:]*:Thaliak:88D0:/ -1258.6 "Left Bank/Right Bank" sync / 1[56]:[^:]*:Thaliak:(8C2C|8C2D):/ - -1264.7 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1169" } window 10000,0 +1005.0 "--sync--" StartsUsing { id: "88D1", source: "Thaliak" } window 10,10 +1010.0 "Katarraktes" Ability { id: "88D1", source: "Thaliak" } + +1016.1 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1023.4 "Rheognosis (cast)" Ability { id: "88C4", source: "Thaliak" } +1029.5 "--sync--" Ability { id: "88C6", source: "Thaliak" } +1043.6 "Rheognosis" Ability { id: "88C7", source: "Thaliak" } + +1051.6 "Thlipsis" Ability { id: "88D8", source: "Thaliak" } + +1059.7 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1067.0 "Left Bank/Right Bank" Ability { id: ["88D2", "88D3"], source: "Thaliak" } +1074.1 "Right Bank/Left Bank" Ability { id: ["88D3", "88D2"], source: "Thaliak" } + +1080.2 "Hydroptosis" Ability { id: "88D4", source: "Thaliak" } + +1092.3 "Rhyton" Ability { id: "88D6", source: "Thaliak" } + +1099.5 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1107.8 "Tetraktys (cast)" Ability { id: "88C9", source: "Thaliak" } +1115.8 "Tetraktys 1" Ability { id: "88CA", source: "Thaliak" } +1118.4 "Tetraktys 2" #Ability { id: "88CA", source: "Thaliak" } +1120.8 "Tetraktys 3" #Ability { id: "88CA", source: "Thaliak" } +1123.2 "Tetraktys 4" #Ability { id: "88CB", source: "Thaliak" } +1125.6 "Tetraktys 5 " #Ability { id: "88CB", source: "Thaliak" } +1128.0 "Tetraktys 6" #Ability { id: "88CB", source: "Thaliak" } +1133.9 "Tetraktuos Kosmos 1 (cast)" Ability { id: "88CC", source: "Thaliak" } +1142.8 "Tetraktuos Kosmos 1" Ability { id: "88CD", source: "Thaliak" } +1145.1 "Tetraktuos Kosmos 2 (cast)" Ability { id: "88CC", source: "Thaliak" } +1154.0 "Tetraktuos Kosmos 2" Ability { id: "88CD", source: "Thaliak" } + +1164.3 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1171.5 "Rheognosis Petrine" Ability { id: "88C5", source: "Thaliak" } +1177.6 "--sync--" Ability { id: "88C6", source: "Thaliak" } +1191.7 "Rheognosis" Ability { id: "88C7", source: "Thaliak" } + +1197.7 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1205.1 "Hieroglyphika 1" Ability { id: "88CF", source: "Thaliak" } +1225.1 "--sync--" Ability { id: "88D0", source: "Thaliak" } +1234.5 "Hieroglyphika 2" Ability { id: "88CF", source: "Thaliak" } +1254.5 "--sync--" Ability { id: "88D0", source: "Thaliak" } +1258.6 "Left Bank/Right Bank" Ability { id: ["8C2C", "8C2D"], source: "Thaliak" } + +1264.7 "--middle--" Ability { id: "88DB", source: "Thaliak" } 1272.9 label "thaliak-loop" -1272.9 "Tetraktys (cast)" sync / 1[56]:[^:]*:Thaliak:88C9:/ -1280.9 "Tetraktys 1" sync / 1[56]:[^:]*:Thaliak:88CA:/ -1283.5 "Tetraktys 2" #sync / 1[56]:[^:]*:Thaliak:88CA:/ -1285.9 "Tetraktys 3" #sync / 1[56]:[^:]*:Thaliak:88CA:/ -1288.3 "Tetraktys 4" #sync / 1[56]:[^:]*:Thaliak:88CB:/ -1290.7 "Tetraktys 5" #sync / 1[56]:[^:]*:Thaliak:88CB:/ -1293.1 "Tetraktys 6" #sync / 1[56]:[^:]*:Thaliak:88CB:/ +1272.9 "Tetraktys (cast)" Ability { id: "88C9", source: "Thaliak" } +1280.9 "Tetraktys 1" Ability { id: "88CA", source: "Thaliak" } +1283.5 "Tetraktys 2" #Ability { id: "88CA", source: "Thaliak" } +1285.9 "Tetraktys 3" #Ability { id: "88CA", source: "Thaliak" } +1288.3 "Tetraktys 4" #Ability { id: "88CB", source: "Thaliak" } +1290.7 "Tetraktys 5" #Ability { id: "88CB", source: "Thaliak" } +1293.1 "Tetraktys 6" #Ability { id: "88CB", source: "Thaliak" } -1297.1 "Tetraktuos Kosmos 1 (cast)" sync / 1[56]:[^:]*:Thaliak:88CC:/ -1306.0 "Tetraktuos Kosmos 1" sync / 1[56]:[^:]*:Thaliak:88CD:/ -1308.3 "Tetraktuos Kosmos 2 (cast)" sync / 1[56]:[^:]*:Thaliak:88CC:/ -1317.2 "Tetraktuos Kosmos 2" sync / 1[56]:[^:]*:Thaliak:88CD:/ +1297.1 "Tetraktuos Kosmos 1 (cast)" Ability { id: "88CC", source: "Thaliak" } +1306.0 "Tetraktuos Kosmos 1" Ability { id: "88CD", source: "Thaliak" } +1308.3 "Tetraktuos Kosmos 2 (cast)" Ability { id: "88CC", source: "Thaliak" } +1317.2 "Tetraktuos Kosmos 2" Ability { id: "88CD", source: "Thaliak" } -1331.6 "Rhyton" sync / 1[56]:[^:]*:Thaliak:88D6:/ +1331.6 "Rhyton" Ability { id: "88D6", source: "Thaliak" } -1337.7 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ -1344.9 "Rheognosis Petrine" sync / 1[56]:[^:]*:Thaliak:88C5:/ -1351.0 "--sync--" sync / 1[56]:[^:]*:Thaliak:88C6:/ -1365.1 "Rheognosis" sync / 1[56]:[^:]*:Thaliak:88C7:/ +1337.7 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1344.9 "Rheognosis Petrine" Ability { id: "88C5", source: "Thaliak" } +1351.0 "--sync--" Ability { id: "88C6", source: "Thaliak" } +1365.1 "Rheognosis" Ability { id: "88C7", source: "Thaliak" } -1373.1 "Thlipsis" sync / 1[56]:[^:]*:Thaliak:88D8:/ +1373.1 "Thlipsis" Ability { id: "88D8", source: "Thaliak" } -1379.2 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ -1386.5 "Hieroglyphika" sync / 1[56]:[^:]*:Thaliak:88CF:/ -1406.5 "--sync--" sync / 1[56]:[^:]*:Thaliak:88D0:/ -1410.5 "Left Bank/Right Bank" sync / 1[56]:[^:]*:Thaliak:(8C2C|8C2D):/ +1379.2 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1386.5 "Hieroglyphika" Ability { id: "88CF", source: "Thaliak" } +1406.5 "--sync--" Ability { id: "88D0", source: "Thaliak" } +1410.5 "Left Bank/Right Bank" Ability { id: ["8C2C", "8C2D"], source: "Thaliak" } -1416.6 "Hydroptosis" sync / 1[56]:[^:]*:Thaliak:88D4:/ -1427.7 "Katarraktes" sync / 1[56]:[^:]*:Thaliak:88D1:/ +1416.6 "Hydroptosis" Ability { id: "88D4", source: "Thaliak" } +1427.7 "Katarraktes" Ability { id: "88D1", source: "Thaliak" } -1433.9 "--middle--" sync / 1[56]:[^:]*:Thaliak:88DB:/ -1442.1 "Tetraktys (cast)" sync / 1[56]:[^:]*:Thaliak:88C9:/ window 40,40 forcejump "thaliak-loop" +1433.9 "--middle--" Ability { id: "88DB", source: "Thaliak" } +1442.1 "Tetraktys (cast)" Ability { id: "88C9", source: "Thaliak" } window 40,40 forcejump "thaliak-loop" # ALL ENCOUNTER ABILITIES @@ -134,132 +134,132 @@ hideall "--sync--" # Long pull: https://www.fflogs.com/reports/qW8TMthAcD1JbmNk#fight=21&type=damage-done # The Briny Deep will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:116A:/ window 10000,0 -2007.1 "--sync--" sync / 14:[^:]*:Llymlaen:880B:/ window 10,10 -2012.1 "Tempest" sync / 1[56]:[^:]*:Llymlaen:880B:/ -2023.2 "Seafoam Spiral/Wind Rose" sync / 1[56]:[^:]*:Llymlaen:(880D|880C):/ -2032.3 "Wind Rose/Seafoam Spiral" sync / 1[56]:[^:]*:Llymlaen:(880C|880D):/ - -2041.6 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2049.4 "Navigator's Trident" sync / 1[56]:[^:]*:Llymlaen:880E:/ -2050.5 "Dire Straits 1" #sync / 1[56]:[^:]*:Llymlaen:(880F|8810):/ -2052.3 "Dire Straits 2" #sync / 1[56]:[^:]*:Llymlaen:(880F|8810):/ - -2052.7 "--jump--" sync / 1[56]:[^:]*:Llymlaen:8CCF:/ -2060.9 "Navigator's Trident" sync / 1[56]:[^:]*:Llymlaen:8811:/ - -2064.0 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2073.0 "Seafoam Spiral/Wind Rose" sync / 1[56]:[^:]*:Llymlaen:(880D|880C):/ - -2084.0 "Surging Wave" sync / 1[56]:[^:]*:Llymlaen:8812:/ -2085.2 "Shockwave" sync / 1[56]:[^:]*:Llymlaen:8814:/ - -2105.2 "Left Strait/Right Strait" sync / 1[56]:[^:]*:Llymlaen:(8851|8852):/ -2113.4 "Deep Dive" sync / 1[56]:[^:]*:Llymlaen:8819:/ - -2122.6 "--sync--" sync / 14:[^:]*:Llymlaen:881A:/ window 20,20 -2126.6 "Torrential Tridents" sync / 1[56]:[^:]*:Llymlaen:881A:/ -2129.4 "Landing 1" #sync / 1[56]:[^:]*:Trident:881B:/ -2130.4 "Landing 2" #sync / 1[56]:[^:]*:Trident:881B:/ -2131.4 "Landing 3" #sync / 1[56]:[^:]*:Trident:881B:/ -2132.4 "Landing 4" #sync / 1[56]:[^:]*:Trident:881B:/ -2133.4 "Landing 5" #sync / 1[56]:[^:]*:Trident:881B:/ -2134.4 "Landing 6" #sync / 1[56]:[^:]*:Trident:881B:/ - -2142.4 "Landing 1" #sync / 1[56]:[^:]*:Trident:881C:/ -2143.4 "Landing 2" #sync / 1[56]:[^:]*:Trident:881C:/ -2144.4 "Landing 3" #sync / 1[56]:[^:]*:Trident:881C:/ -2145.4 "Landing 4" #sync / 1[56]:[^:]*:Trident:881C:/ -2146.4 "Landing 5" #sync / 1[56]:[^:]*:Trident:881C:/ -2147.4 "Landing 6" #sync / 1[56]:[^:]*:Trident:881C:/ - -2147.8 "Stormy Seas" sync / 1[56]:[^:]*:Llymlaen:881D:/ -2152.6 "Stormwhorl 1" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2154.6 "Stormwhorl 2" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2156.6 "Stormwhorl 3" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2157.6 "Stormwinds" sync / 1[56]:[^:]*:Llymlaen:881F:/ - -2166.0 "--jump--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2171.3 "Denizens of the Deep" sync / 1[56]:[^:]*:Llymlaen:8820:/ -2178.2 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2185.3 "Wind Rose" sync / 1[56]:[^:]*:Llymlaen:880C:/ - -2185.4 "Serpents' Tide 1" sync / 1[56]:[^:]*:Thalaos:(8828|8829):/ -2196.5 "Serpents' Tide 2" sync / 1[56]:[^:]*:Thalaos:(8828|8829):/ -2201.3 " /Right Strait" sync / 1[56]:[^:]*:Llymlaen:(8851|8852):/ -2207.4 "Serpents' Tide 3" sync / 1[56]:[^:]*:Thalaos:(8828|8829):/ -2212.0 "Maelstrom" sync / 1[56]:[^:]*:Llymlaen:882A:/ - -2213.3 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2217.3 "--sync--" sync / 1[56]:[^:]*:Llymlaen:8824:/ -2220.3 "Godsbane" sync / 1[56]:[^:]*:Llymlaen:8821:/ - -2230.5 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "116A" } window 10000,0 +2007.1 "--sync--" StartsUsing { id: "880B", source: "Llymlaen" } window 10,10 +2012.1 "Tempest" Ability { id: "880B", source: "Llymlaen" } +2023.2 "Seafoam Spiral/Wind Rose" Ability { id: ["880D", "880C"], source: "Llymlaen" } +2032.3 "Wind Rose/Seafoam Spiral" Ability { id: ["880C", "880D"], source: "Llymlaen" } + +2041.6 "--middle--" Ability { id: "8809", source: "Llymlaen" } +2049.4 "Navigator's Trident" Ability { id: "880E", source: "Llymlaen" } +2050.5 "Dire Straits 1" #Ability { id: ["880F", "8810"], source: "Llymlaen" } +2052.3 "Dire Straits 2" #Ability { id: ["880F", "8810"], source: "Llymlaen" } + +2052.7 "--jump--" Ability { id: "8CCF", source: "Llymlaen" } +2060.9 "Navigator's Trident" Ability { id: "8811", source: "Llymlaen" } + +2064.0 "--middle--" Ability { id: "8809", source: "Llymlaen" } +2073.0 "Seafoam Spiral/Wind Rose" Ability { id: ["880D", "880C"], source: "Llymlaen" } + +2084.0 "Surging Wave" Ability { id: "8812", source: "Llymlaen" } +2085.2 "Shockwave" Ability { id: "8814", source: "Llymlaen" } + +2105.2 "Left Strait/Right Strait" Ability { id: ["8851", "8852"], source: "Llymlaen" } +2113.4 "Deep Dive" Ability { id: "8819", source: "Llymlaen" } + +2122.6 "--sync--" StartsUsing { id: "881A", source: "Llymlaen" } window 20,20 +2126.6 "Torrential Tridents" Ability { id: "881A", source: "Llymlaen" } +2129.4 "Landing 1" #Ability { id: "881B", source: "Trident" } +2130.4 "Landing 2" #Ability { id: "881B", source: "Trident" } +2131.4 "Landing 3" #Ability { id: "881B", source: "Trident" } +2132.4 "Landing 4" #Ability { id: "881B", source: "Trident" } +2133.4 "Landing 5" #Ability { id: "881B", source: "Trident" } +2134.4 "Landing 6" #Ability { id: "881B", source: "Trident" } + +2142.4 "Landing 1" #Ability { id: "881C", source: "Trident" } +2143.4 "Landing 2" #Ability { id: "881C", source: "Trident" } +2144.4 "Landing 3" #Ability { id: "881C", source: "Trident" } +2145.4 "Landing 4" #Ability { id: "881C", source: "Trident" } +2146.4 "Landing 5" #Ability { id: "881C", source: "Trident" } +2147.4 "Landing 6" #Ability { id: "881C", source: "Trident" } + +2147.8 "Stormy Seas" Ability { id: "881D", source: "Llymlaen" } +2152.6 "Stormwhorl 1" #Ability { id: "881E", source: "Llymlaen" } +2154.6 "Stormwhorl 2" #Ability { id: "881E", source: "Llymlaen" } +2156.6 "Stormwhorl 3" #Ability { id: "881E", source: "Llymlaen" } +2157.6 "Stormwinds" Ability { id: "881F", source: "Llymlaen" } + +2166.0 "--jump--" Ability { id: "8809", source: "Llymlaen" } +2171.3 "Denizens of the Deep" Ability { id: "8820", source: "Llymlaen" } +2178.2 "--middle--" Ability { id: "8809", source: "Llymlaen" } +2185.3 "Wind Rose" Ability { id: "880C", source: "Llymlaen" } + +2185.4 "Serpents' Tide 1" Ability { id: ["8828", "8829"], source: "Thalaos" } +2196.5 "Serpents' Tide 2" Ability { id: ["8828", "8829"], source: "Thalaos" } +2201.3 " /Right Strait" Ability { id: ["8851", "8852"], source: "Llymlaen" } +2207.4 "Serpents' Tide 3" Ability { id: ["8828", "8829"], source: "Thalaos" } +2212.0 "Maelstrom" Ability { id: "882A", source: "Llymlaen" } + +2213.3 "--middle--" Ability { id: "8809", source: "Llymlaen" } +2217.3 "--sync--" Ability { id: "8824", source: "Llymlaen" } +2220.3 "Godsbane" Ability { id: "8821", source: "Llymlaen" } + +2230.5 "--middle--" Ability { id: "8809", source: "Llymlaen" } 2238.3 label "llymlaen-loop" -2238.3 "Navigator's Trident" sync / 1[56]:[^:]*:Llymlaen:880E:/ -2239.3 "Dire Straits 1" #sync / 1[56]:[^:]*:Llymlaen:(880F|8810):/ -2241.1 "Dire Straits 2" #sync / 1[56]:[^:]*:Llymlaen:(880F|8810):/ +2238.3 "Navigator's Trident" Ability { id: "880E", source: "Llymlaen" } +2239.3 "Dire Straits 1" #Ability { id: ["880F", "8810"], source: "Llymlaen" } +2241.1 "Dire Straits 2" #Ability { id: ["880F", "8810"], source: "Llymlaen" } # TODO: can this be 882B instead of 8CCF? -2241.5 "--jump--" sync / 1[56]:[^:]*:Llymlaen:8CCF:/ -2249.7 "Navigator's Trident" sync / 1[56]:[^:]*:Llymlaen:8811:/ -2250.8 "Serpents' Tide" sync / 1[56]:[^:]*:Thalaos:(8828|8829):/ - -2252.8 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2261.8 "Seafoam Spiral/Wind Rose" sync / 1[56]:[^:]*:Llymlaen:(880D|880C):/ -2272.8 "Surging Wave" sync / 1[56]:[^:]*:Llymlaen:8812:/ -2274.0 "Shockwave" sync / 1[56]:[^:]*:Llymlaen:8814:/ -2281.9 "--sync--" sync / 1[56]:[^:]*:Llymlaen:8815:/ -2282.1 "To the Last 1" #sync / 1[56]:[^:]*:Llymlaen:8817:/ -2284.1 "To the Last 2" #sync / 1[56]:[^:]*:Llymlaen:8817:/ -2286.2 "To the Last 3" #sync / 1[56]:[^:]*:Llymlaen:8817:/ -2294.3 "Left Strait/Right Strait" sync / 1[56]:[^:]*:Llymlaen:(8851|8852):/ - -2297.4 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2304.6 "Hard Water 1" sync / 1[56]:[^:]*:Perykos:8835:/ -2306.6 "Hard Water 2" sync / 1[56]:[^:]*:Thalaos:8836:/ -2308.5 "Deep Dive 3" sync / 1[56]:[^:]*:Llymlaen:8834:/ - -2314.7 "--sync--" sync / 14:[^:]*:Llymlaen:881A:/ window 20,20 -2318.7 "Torrential Tridents" sync / 1[56]:[^:]*:Llymlaen:881A:/ -2321.5 "Landing 1" #sync / 1[56]:[^:]*:Trident:881B:/ -2322.5 "Landing 2" #sync / 1[56]:[^:]*:Trident:881B:/ -2323.5 "Landing 3" #sync / 1[56]:[^:]*:Trident:881B:/ -2324.5 "Landing 4" #sync / 1[56]:[^:]*:Trident:881B:/ -2325.5 "Landing 5" #sync / 1[56]:[^:]*:Trident:881B:/ -2326.5 "Landing 6" #sync / 1[56]:[^:]*:Trident:881B:/ -2336.5 "Landing 1" #sync / 1[56]:[^:]*:Trident:881C:/ -2337.5 "Landing 2" #sync / 1[56]:[^:]*:Trident:881C:/ -2338.5 "Landing 3" #sync / 1[56]:[^:]*:Trident:881C:/ -2339.5 "Landing 4" #sync / 1[56]:[^:]*:Trident:881C:/ -2340.5 "Landing 5" #sync / 1[56]:[^:]*:Trident:881C:/ -2340.9 "Stormy Seas" sync / 1[56]:[^:]*:Llymlaen:881D:/ -2341.3 "Landing 6" #sync / 1[56]:[^:]*:Trident:881C:/ -2345.5 "Stormwhorl 1" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2347.5 "Stormwhorl 2" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2349.5 "Stormwhorl 3" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2350.7 "Stormwinds" sync / 1[56]:[^:]*:Llymlaen:881F:/ - -2355.0 "Serpents' Tide" sync / 1[56]:[^:]*:Thalaos:8829:/ -2359.6 "Maelstrom" sync / 1[56]:[^:]*:Llymlaen:882A:/ -2363.9 "Seafoam Spiral/Wind Rose" sync / 1[56]:[^:]*:Llymlaen:(880D|880C):/ - -2366.0 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2370.0 "--sync--" sync / 1[56]:[^:]*:Llymlaen:8824:/ -2373.0 "Godsbane" sync / 1[56]:[^:]*:Llymlaen:8821:/ - -2392.2 "Seafoam Spiral/Wind Rose" sync / 1[56]:[^:]*:Llymlaen:(880D|880C):/ -2394.3 "Stormy Seas" sync / 1[56]:[^:]*:Llymlaen:881D:/ -2399.1 "Stormwhorl 1" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2401.1 "Stormwhorl 2" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2403.1 "Stormwhorl 3" #sync / 1[56]:[^:]*:Llymlaen:881E:/ -2404.1 "Stormwinds" #sync / 1[56]:[^:]*:Llymlaen:881F:/ - -2410.4 "Left Strait/Right Strait" sync / 1[56]:[^:]*:Llymlaen:(8851|8852):/ -2421.5 "Tempest" sync / 1[56]:[^:]*:Llymlaen:880B:/ - -2431.8 "--middle--" sync / 1[56]:[^:]*:Llymlaen:8809:/ -2439.6 "Navigator's Trident" sync / 1[56]:[^:]*:Llymlaen:880E:/ window 40,40 forcejump "llymlaen-loop" +2241.5 "--jump--" Ability { id: "8CCF", source: "Llymlaen" } +2249.7 "Navigator's Trident" Ability { id: "8811", source: "Llymlaen" } +2250.8 "Serpents' Tide" Ability { id: ["8828", "8829"], source: "Thalaos" } + +2252.8 "--middle--" Ability { id: "8809", source: "Llymlaen" } +2261.8 "Seafoam Spiral/Wind Rose" Ability { id: ["880D", "880C"], source: "Llymlaen" } +2272.8 "Surging Wave" Ability { id: "8812", source: "Llymlaen" } +2274.0 "Shockwave" Ability { id: "8814", source: "Llymlaen" } +2281.9 "--sync--" Ability { id: "8815", source: "Llymlaen" } +2282.1 "To the Last 1" #Ability { id: "8817", source: "Llymlaen" } +2284.1 "To the Last 2" #Ability { id: "8817", source: "Llymlaen" } +2286.2 "To the Last 3" #Ability { id: "8817", source: "Llymlaen" } +2294.3 "Left Strait/Right Strait" Ability { id: ["8851", "8852"], source: "Llymlaen" } + +2297.4 "--middle--" Ability { id: "8809", source: "Llymlaen" } +2304.6 "Hard Water 1" Ability { id: "8835", source: "Perykos" } +2306.6 "Hard Water 2" Ability { id: "8836", source: "Thalaos" } +2308.5 "Deep Dive 3" Ability { id: "8834", source: "Llymlaen" } + +2314.7 "--sync--" StartsUsing { id: "881A", source: "Llymlaen" } window 20,20 +2318.7 "Torrential Tridents" Ability { id: "881A", source: "Llymlaen" } +2321.5 "Landing 1" #Ability { id: "881B", source: "Trident" } +2322.5 "Landing 2" #Ability { id: "881B", source: "Trident" } +2323.5 "Landing 3" #Ability { id: "881B", source: "Trident" } +2324.5 "Landing 4" #Ability { id: "881B", source: "Trident" } +2325.5 "Landing 5" #Ability { id: "881B", source: "Trident" } +2326.5 "Landing 6" #Ability { id: "881B", source: "Trident" } +2336.5 "Landing 1" #Ability { id: "881C", source: "Trident" } +2337.5 "Landing 2" #Ability { id: "881C", source: "Trident" } +2338.5 "Landing 3" #Ability { id: "881C", source: "Trident" } +2339.5 "Landing 4" #Ability { id: "881C", source: "Trident" } +2340.5 "Landing 5" #Ability { id: "881C", source: "Trident" } +2340.9 "Stormy Seas" Ability { id: "881D", source: "Llymlaen" } +2341.3 "Landing 6" #Ability { id: "881C", source: "Trident" } +2345.5 "Stormwhorl 1" #Ability { id: "881E", source: "Llymlaen" } +2347.5 "Stormwhorl 2" #Ability { id: "881E", source: "Llymlaen" } +2349.5 "Stormwhorl 3" #Ability { id: "881E", source: "Llymlaen" } +2350.7 "Stormwinds" Ability { id: "881F", source: "Llymlaen" } + +2355.0 "Serpents' Tide" Ability { id: "8829", source: "Thalaos" } +2359.6 "Maelstrom" Ability { id: "882A", source: "Llymlaen" } +2363.9 "Seafoam Spiral/Wind Rose" Ability { id: ["880D", "880C"], source: "Llymlaen" } + +2366.0 "--middle--" Ability { id: "8809", source: "Llymlaen" } +2370.0 "--sync--" Ability { id: "8824", source: "Llymlaen" } +2373.0 "Godsbane" Ability { id: "8821", source: "Llymlaen" } + +2392.2 "Seafoam Spiral/Wind Rose" Ability { id: ["880D", "880C"], source: "Llymlaen" } +2394.3 "Stormy Seas" Ability { id: "881D", source: "Llymlaen" } +2399.1 "Stormwhorl 1" #Ability { id: "881E", source: "Llymlaen" } +2401.1 "Stormwhorl 2" #Ability { id: "881E", source: "Llymlaen" } +2403.1 "Stormwhorl 3" #Ability { id: "881E", source: "Llymlaen" } +2404.1 "Stormwinds" #Ability { id: "881F", source: "Llymlaen" } + +2410.4 "Left Strait/Right Strait" Ability { id: ["8851", "8852"], source: "Llymlaen" } +2421.5 "Tempest" Ability { id: "880B", source: "Llymlaen" } + +2431.8 "--middle--" Ability { id: "8809", source: "Llymlaen" } +2439.6 "Navigator's Trident" Ability { id: "880E", source: "Llymlaen" } window 40,40 forcejump "llymlaen-loop" # ALL ENCOUNTER ABILITIES # 367 attack auto damage @@ -322,111 +322,111 @@ hideall "--sync--" # Long pull: https://www.fflogs.com/reports/GzjrkH97xXWFZvAM#fight=4&type=damage-done # The Windward Pass will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:116B:/ window 10000,0 +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "116B" } window 10000,0 # Phase 1 -3010.0 "--sync--" sync / 1[56]:[^:]*:Oschon:8999:/ window 10,10 -3014.0 "Sudden Downpour" sync / 1[56]:[^:]*:Oschon:8999:/ +3010.0 "--sync--" Ability { id: "8999", source: "Oschon" } window 10,10 +3014.0 "Sudden Downpour" Ability { id: "8999", source: "Oschon" } -3018.1 "--middle--" sync / 1[56]:[^:]*:Oschon:8998:/ -3019.3 "--sync--" sync / 1[56]:[^:]*:Oschon:882F:/ -3025.3 "--sync--" sync / 1[56]:[^:]*:Oschon:898E:/ -3028.9 "Trek Shot" sync / 1[56]:[^:]*:Oschon:8C44:/ +3018.1 "--middle--" Ability { id: "8998", source: "Oschon" } +3019.3 "--sync--" Ability { id: "882F", source: "Oschon" } +3025.3 "--sync--" Ability { id: "898E", source: "Oschon" } +3028.9 "Trek Shot" Ability { id: "8C44", source: "Oschon" } -3033.6 "--middle--" sync / 1[56]:[^:]*:Oschon:8998:/ -3037.7 "Reproduce" sync / 1[56]:[^:]*:Oschon:8989:/ -3040.7 "--sync--" sync / 1[56]:[^:]*:Oschon:(8830|8831):/ -3047.7 "--sync--" sync / 1[56]:[^:]*:Oschon's Avatar:(898A|898B):/ -3053.8 "Swinging Draw" sync / 1[56]:[^:]*:Oschon's Avatar:898C:/ +3033.6 "--middle--" Ability { id: "8998", source: "Oschon" } +3037.7 "Reproduce" Ability { id: "8989", source: "Oschon" } +3040.7 "--sync--" Ability { id: ["8830", "8831"], source: "Oschon" } +3047.7 "--sync--" Ability { id: ["898A", "898B"], source: "Oschon's Avatar" } +3053.8 "Swinging Draw" Ability { id: "898C", source: "Oschon's Avatar" } -3054.9 "--middle--" sync / 1[56]:[^:]*:Oschon:8998:/ -3059.2 "Reproduce" sync / 1[56]:[^:]*:Oschon:8989:/ -3062.2 "--sync--" sync / 1[56]:[^:]*:Oschon:(8830|8831):/ -3069.2 "--sync--" sync / 1[56]:[^:]*:Oschon's Avatar:(898A|898B):/ -3075.3 "Swinging Draw x2" sync / 1[56]:[^:]*:Oschon's Avatar:898C:/ +3054.9 "--middle--" Ability { id: "8998", source: "Oschon" } +3059.2 "Reproduce" Ability { id: "8989", source: "Oschon" } +3062.2 "--sync--" Ability { id: ["8830", "8831"], source: "Oschon" } +3069.2 "--sync--" Ability { id: ["898A", "898B"], source: "Oschon's Avatar" } +3075.3 "Swinging Draw x2" Ability { id: "898C", source: "Oschon's Avatar" } -3076.4 "--middle--" sync / 1[56]:[^:]*:Oschon:8998:/ -3082.0 "Flinted Foehn x6" sync / 1[56]:[^:]*:Oschon:89A3:/ duration 5.6 +3076.4 "--middle--" Ability { id: "8998", source: "Oschon" } +3082.0 "Flinted Foehn x6" Ability { id: "89A3", source: "Oschon" } duration 5.6 -3094.2 "Soaring Minuet" sync / 1[56]:[^:]*:Oschon:8D0E:/ -3101.3 "The Arrow" sync / 1[56]:[^:]*:Oschon:899B:/ +3094.2 "Soaring Minuet" Ability { id: "8D0E", source: "Oschon" } +3101.3 "The Arrow" Ability { id: "899B", source: "Oschon" } 3109.4 label "oschon-p1-loop" -3109.4 "Reproduce" sync / 1[56]:[^:]*:Oschon:8989:/ -3112.4 "--sync--" sync / 1[56]:[^:]*:Oschon:(8830|8831):/ -3119.4 "--sync--" sync / 1[56]:[^:]*:Oschon's Avatar:(898A|898B):/ -3125.5 "Swinging Draw x2" sync / 1[56]:[^:]*:Oschon's Avatar:898C:/ +3109.4 "Reproduce" Ability { id: "8989", source: "Oschon" } +3112.4 "--sync--" Ability { id: ["8830", "8831"], source: "Oschon" } +3119.4 "--sync--" Ability { id: ["898A", "898B"], source: "Oschon's Avatar" } +3125.5 "Swinging Draw x2" Ability { id: "898C", source: "Oschon's Avatar" } -3129.5 "Sudden Downpour" sync / 1[56]:[^:]*:Oschon:8999:/ +3129.5 "Sudden Downpour" Ability { id: "8999", source: "Oschon" } -3133.6 "--middle--" sync / 1[56]:[^:]*:Oschon:8998:/ -3137.9 "Downhill (cast)" sync / 1[56]:[^:]*:Oschon:899F:/ -3145.0 "Climbing Shot" sync / 1[56]:[^:]*:Oschon:(8990|8991|8992|8993):/ -3146.8 "Downhill" sync / 1[56]:[^:]*:Oschon:89A1:/ +3133.6 "--middle--" Ability { id: "8998", source: "Oschon" } +3137.9 "Downhill (cast)" Ability { id: "899F", source: "Oschon" } +3145.0 "Climbing Shot" Ability { id: ["8990", "8991", "8992", "8993"], source: "Oschon" } +3146.8 "Downhill" Ability { id: "89A1", source: "Oschon" } -3153.1 "Soaring Minuet" sync / 1[56]:[^:]*:Oschon:8994:/ -3160.8 "Flinted Foehn x6" sync / 1[56]:[^:]*:Oschon:89A3:/ duration 5.6 +3153.1 "Soaring Minuet" Ability { id: "8994", source: "Oschon" } +3160.8 "Flinted Foehn x6" Ability { id: "89A3", source: "Oschon" } duration 5.6 -3168.1 "--sync--" sync / 1[56]:[^:]*:Oschon:(882E|882F):/ -3174.1 "--sync--" sync / 1[56]:[^:]*:Oschon:(898D|898E):/ -3177.7 "Trek Shot" sync / 1[56]:[^:]*:Oschon:(898F|8C44):/ +3168.1 "--sync--" Ability { id: ["882E", "882F"], source: "Oschon" } +3174.1 "--sync--" Ability { id: ["898D", "898E"], source: "Oschon" } +3177.7 "Trek Shot" Ability { id: ["898F", "8C44"], source: "Oschon" } -3184.4 "Sudden Downpour 1" sync / 1[56]:[^:]*:Oschon:8999:/ -3190.5 "Sudden Downpour 2" sync / 1[56]:[^:]*:Oschon:8999:/ +3184.4 "Sudden Downpour 1" Ability { id: "8999", source: "Oschon" } +3190.5 "Sudden Downpour 2" Ability { id: "8999", source: "Oschon" } -3197.7 "--middle--" sync / 1[56]:[^:]*:Oschon:8998:/ -3202.0 "Reproduce" sync / 1[56]:[^:]*:Oschon:8989:/ window 40,40 forcejump "oschon-p1-loop" +3197.7 "--middle--" Ability { id: "8998", source: "Oschon" } +3202.0 "Reproduce" Ability { id: "8989", source: "Oschon" } window 40,40 forcejump "oschon-p1-loop" # Intermission -3493.6 "--middle--" sync / 1[56]:[^:]*:Oschon:8998:/ -3500.0 "--sync--" sync / 14:[^:]*:Oschon:89A7:/ window 500,0 -3505.0 "Lofty Peaks" sync / 1[56]:[^:]*:Oschon:89A7:/ +3493.6 "--middle--" Ability { id: "8998", source: "Oschon" } +3500.0 "--sync--" StartsUsing { id: "89A7", source: "Oschon" } window 500,0 +3505.0 "Lofty Peaks" Ability { id: "89A7", source: "Oschon" } 3505.0 "--untargetable--" -3506.0 "Moving Mountains 1" #sync / 1[56]:[^:]*:Oschon:8CE3:/ -3507.6 "Moving Mountains 2" #sync / 1[56]:[^:]*:Oschon:8CE3:/ -3509.2 "Moving Mountains 3" #sync / 1[56]:[^:]*:Oschon:8CE3:/ -3513.1 "Peak Peril" sync / 1[56]:[^:]*:Oschon:8CE4:/ -3528.9 "Shockwave" sync / 1[56]:[^:]*:Oschon:89A8:/ +3506.0 "Moving Mountains 1" #Ability { id: "8CE3", source: "Oschon" } +3507.6 "Moving Mountains 2" #Ability { id: "8CE3", source: "Oschon" } +3509.2 "Moving Mountains 3" #Ability { id: "8CE3", source: "Oschon" } +3513.1 "Peak Peril" Ability { id: "8CE4", source: "Oschon" } +3528.9 "Shockwave" Ability { id: "89A8", source: "Oschon" } 3530.9 "--targetable--" # Phase 2 -3544.0 "Piton Pull 1" sync / 1[56]:[^:]*:Oschon:(89A9|89AA):/ -3556.1 "Piton Pull 2" sync / 1[56]:[^:]*:Oschon:(89A9|89AA):/ -3568.2 "Altitude" sync / 1[56]:[^:]*:Oschon:89AF:/ -3578.9 "Flinted Foehn x6" sync / 1[56]:[^:]*:Oschon:89A4:/ duration 5.6 +3544.0 "Piton Pull 1" Ability { id: ["89A9", "89AA"], source: "Oschon" } +3556.1 "Piton Pull 2" Ability { id: ["89A9", "89AA"], source: "Oschon" } +3568.2 "Altitude" Ability { id: "89AF", source: "Oschon" } +3578.9 "Flinted Foehn x6" Ability { id: "89A4", source: "Oschon" } duration 5.6 -3595.1 "Wandering Shot 1" sync / 1[56]:[^:]*:Oschon:(8CF6|8CF7):/ -3598.8 "Great Whirlwind 1" sync / 1[56]:[^:]*:Oschon:89AE:/ -3609.4 "Wandering Shot 2" sync / 1[56]:[^:]*:Oschon:(8CF6|8CF7):/ -3613.1 "Great Whirlwind 2" sync / 1[56]:[^:]*:Oschon:89AE:/ +3595.1 "Wandering Shot 1" Ability { id: ["8CF6", "8CF7"], source: "Oschon" } +3598.8 "Great Whirlwind 1" Ability { id: "89AE", source: "Oschon" } +3609.4 "Wandering Shot 2" Ability { id: ["8CF6", "8CF7"], source: "Oschon" } +3613.1 "Great Whirlwind 2" Ability { id: "89AE", source: "Oschon" } -3622.5 "The Arrow" sync / 1[56]:[^:]*:Oschon:899C:/ +3622.5 "The Arrow" Ability { id: "899C", source: "Oschon" } 3631.7 label "oschon-p2-loop" -3631.7 "Arrow Trail" sync / 1[56]:[^:]*:Oschon:89B2:/ duration 18 -3642.9 "Downhill 1" sync / 1[56]:[^:]*:Oschon:8C45:/ -3646.9 "Downhill 2" sync / 1[56]:[^:]*:Oschon:8C45:/ -3650.9 "Downhill 3" sync / 1[56]:[^:]*:Oschon:8C45:/ -3657.9 "Piton Pull" sync / 1[56]:[^:]*:Oschon:(89A9|89AA):/ +3631.7 "Arrow Trail" Ability { id: "89B2", source: "Oschon" } duration 18 +3642.9 "Downhill 1" Ability { id: "8C45", source: "Oschon" } +3646.9 "Downhill 2" Ability { id: "8C45", source: "Oschon" } +3650.9 "Downhill 3" Ability { id: "8C45", source: "Oschon" } +3657.9 "Piton Pull" Ability { id: ["89A9", "89AA"], source: "Oschon" } -3668.1 "Downhill (cast)" sync / 1[56]:[^:]*:Oschon:89A0:/ -3681.2 "Wandering Volley" sync / 1[56]:[^:]*:Oschon:(89AC|89AD):/ -3682.4 "Downhill" sync / 1[56]:[^:]*:Oschon:89A2:/ -3684.7 "Great Whirlwind" sync / 1[56]:[^:]*:Oschon:89AE:/ +3668.1 "Downhill (cast)" Ability { id: "89A0", source: "Oschon" } +3681.2 "Wandering Volley" Ability { id: ["89AC", "89AD"], source: "Oschon" } +3682.4 "Downhill" Ability { id: "89A2", source: "Oschon" } +3684.7 "Great Whirlwind" Ability { id: "89AE", source: "Oschon" } -3692.1 "Piton Pull" sync / 1[56]:[^:]*:Oschon:(89A9|89AA):/ +3692.1 "Piton Pull" Ability { id: ["89A9", "89AA"], source: "Oschon" } -3702.6 "Flinted Foehn x6" sync / 1[56]:[^:]*:Oschon:89A4:/ duration 5.6 +3702.6 "Flinted Foehn x6" Ability { id: "89A4", source: "Oschon" } duration 5.6 -3715.6 "The Arrow" sync / 1[56]:[^:]*:Oschon:899C:/ -3724.7 "Altitude" sync / 1[56]:[^:]*:Oschon:89AF:/ +3715.6 "The Arrow" Ability { id: "899C", source: "Oschon" } +3724.7 "Altitude" Ability { id: "89AF", source: "Oschon" } -3736.8 "Sudden Downpour 1" sync / 1[56]:[^:]*:Oschon:899A:/ -3746.9 "Sudden Downpour 2" sync / 1[56]:[^:]*:Oschon:899A:/ +3736.8 "Sudden Downpour 1" Ability { id: "899A", source: "Oschon" } +3746.9 "Sudden Downpour 2" Ability { id: "899A", source: "Oschon" } -3758.1 "Arrow Trail" sync / 1[56]:[^:]*:Oschon:89B2:/ window 40,40 forcejump "oschon-p2-loop" +3758.1 "Arrow Trail" Ability { id: "89B2", source: "Oschon" } window 40,40 forcejump "oschon-p2-loop" # ALL ENCOUNTER ABILITIES @@ -500,209 +500,209 @@ hideall "--sync--" # Long pull: https://www.fflogs.com/reports/wRA1yPgGx8McNjnf#fight=7&type=damage-done # The Twelve's Embrace will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:116D:/ window 10000,0 -4009.6 "--sync--" sync / 14:[^:]*:Eulogia:8A03:/ window 10,10 -4014.6 "Dawn of Time" sync / 1[56]:[^:]*:Eulogia:8A03:/ - -4019.9 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -4022.0 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A08:/ -4031.4 "First Form" sync / 1[56]:[^:]*:Eulogia:(8A0A|8A0D|8A10):/ -4038.5 "Second Form" sync / 1[56]:[^:]*:Eulogia:(8A0B|8A0E|8A11):/ -4045.6 "Third Form" sync / 1[56]:[^:]*:Eulogia:(8A0C|8A0F|8A12):/ -4049.7 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A16:/ -4049.9 "Quintessence 1" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ -4053.6 "Quintessence 2" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ -4057.2 "Quintessence 3" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ - -4071.5 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -4073.7 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A08:/ - -4083.1 "First Form" sync / 1[56]:[^:]*:Eulogia:(8A0A|8A0D|8A10):/ -4090.3 "Second Form" sync / 1[56]:[^:]*:Eulogia:(8A0B|8A0E|8A11):/ -4097.4 "Third Form" sync / 1[56]:[^:]*:Eulogia:(8A0C|8A0F|8A12):/ -4101.5 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A16:/ -4101.7 "Quintessence 1" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ -4105.4 "Quintessence 2" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ -4109.0 "Quintessence 3" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ - -4122.0 "Sunbeam" sync / 1[56]:[^:]*:Eulogia:8A00:/ - -4128.2 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -4137.4 "The Whorl" sync / 1[56]:[^:]*:Eulogia:8A2F:/ -4144.5 "Love's Light" sync / 1[56]:[^:]*:Eulogia:8A30:/ - -4152.6 "Full Bright" sync / 1[56]:[^:]*:Eulogia:8A31:/ -4163.7 "First Blush 1" sync / 1[56]:[^:]*:Eulogia:8A33:/ -4165.7 "First Blush 2" sync / 1[56]:[^:]*:Eulogia:8A34:/ -4167.7 "First Blush 3" sync / 1[56]:[^:]*:Eulogia:8A35:/ -4169.7 "First Blush 4" sync / 1[56]:[^:]*:Eulogia:8A36:/ - -4172.7 "Solar Fans" sync / 1[56]:[^:]*:Eulogia:8A3B:/ -4175.8 "Radiant Rhythm 1" #sync / 1[56]:[^:]*:Eulogia:8A3D:/ -4177.9 "Radiant Rhythm 2" #sync / 1[56]:[^:]*:Eulogia:8A3D:/ -4180.0 "Radiant Rhythm 3" #sync / 1[56]:[^:]*:Eulogia:8A3D:/ -4182.1 "Radiant Rhythm 4" #sync / 1[56]:[^:]*:Eulogia:8A3D:/ -4187.6 "Radiant Finish" sync / 1[56]:[^:]*:Eulogia:8A40:/ - -4193.7 "Hydrostasis (cast)" sync / 1[56]:[^:]*:Eulogia:8A37:/ -4201.7 "Time and Tide" sync / 1[56]:[^:]*:Eulogia:8A32:/ -4204.6 "Hydrostasis 3" sync / 1[56]:[^:]*:Eulogia:8A38:/ -4207.6 "Hydrostasis 1" sync / 1[56]:[^:]*:Eulogia:8A39:/ -4210.6 "Hydrostasis 2" sync / 1[56]:[^:]*:Eulogia:8A3A:/ -4218.9 "Destructive Bolt" sync / 1[56]:[^:]*:Eulogia:8CEC:/ - -4223.0 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -4230.3 "Hieroglyphika" sync / 1[56]:[^:]*:Eulogia:8A43:/ -4247.4 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A44:/ -4252.2 "Hand of the Destroyer" sync / 1[56]:[^:]*:Eulogia:(8A47|8A48):/ - -4256.3 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -4261.4 "Matron's Breath" sync / 1[56]:[^:]*:Eulogia:8A4B:/ -4276.5 "Blueblossoms/Giltblossoms 1" sync / 1[56]:[^:]*:Eulogia:(8A4C|8A4D):/ -4280.1 "Blueblossoms/Giltblossoms 2" sync / 1[56]:[^:]*:Eulogia:(8A4C|8A4D):/ -4283.7 "Blueblossoms/Giltblossoms 3" sync / 1[56]:[^:]*:Eulogia:(8A4C|8A4D):/ -4287.3 "Blueblossoms/Giltblossoms 4" sync / 1[56]:[^:]*:Eulogia:(8A4C|8A4D):/ - -4290.7 "Torrential Tridents" sync / 1[56]:[^:]*:Eulogia:8A4E:/ -4291.6 "Landing 1" #sync / 1[56]:[^:]*:Trident:8A4F:/ -4292.7 "Landing 2" #sync / 1[56]:[^:]*:Trident:8A4F:/ -4293.8 "Landing 3" #sync / 1[56]:[^:]*:Trident:8A4F:/ -4294.9 "Landing 4" #sync / 1[56]:[^:]*:Trident:8A4F:/ -4295.9 "Landing 5" #sync / 1[56]:[^:]*:Trident:8A4F:/ -4297.0 "Landing 6" #sync / 1[56]:[^:]*:Trident:8A4F:/ -4305.1 "Lightning Bolt 1" #sync / 1[56]:[^:]*:Trident:8A50:/ -4306.1 "Lightning Bolt 2" #sync / 1[56]:[^:]*:Trident:8A50:/ -4307.1 "Lightning Bolt 3" #sync / 1[56]:[^:]*:Trident:8A50:/ -4308.1 "Lightning Bolt 4" #sync / 1[56]:[^:]*:Trident:8A50:/ -4309.1 "Lightning Bolt 5" #sync / 1[56]:[^:]*:Trident:8A50:/ -4310.1 "Lightning Bolt 6" #sync / 1[56]:[^:]*:Trident:8A50:/ -4316.7 "Destructive Bolt" sync / 1[56]:[^:]*:Eulogia:8CEC:/ - -4327.1 "Byregot's Strike" sync / 1[56]:[^:]*:Eulogia:8A52:/ -4334.0 "Thousandfold Thrust" sync / 1[56]:[^:]*:Eulogia:(8A57|8A58):/ duration 5.4 - -4343.0 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -4350.2 "As Above, So Below" sync / 1[56]:[^:]*:Eulogia:(8A5B|8A5C):/ -4362.3 "Climbing Shot" sync / 1[56]:[^:]*:Eulogia:(8D0A|8D0B):/ -4372.8 "Soaring Minuet" sync / 1[56]:[^:]*:Eulogia:8A69:/ - -4377.1 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A08:/ -4382.9 "The Builder's Art" sync / 1[56]:[^:]*:Eulogia:8A22:/ -4384.5 "The Destroyer's Might" sync / 1[56]:[^:]*:Eulogia:8A23:/ -4386.1 "The Warden's Radiance" sync / 1[56]:[^:]*:Eulogia:8A24:/ -4387.5 "The Traders' Equity" sync / 1[56]:[^:]*:Eulogia:8A25:/ -4389.1 "The Matron's Plenty" sync / 1[56]:[^:]*:Eulogia:8A26:/ -4390.7 "The Keeper's Gravity" sync / 1[56]:[^:]*:Eulogia:8A27:/ -4392.1 "The Fury's Ambition" sync / 1[56]:[^:]*:Eulogia:8A28:/ -4393.7 "The Lover's Devotion" sync / 1[56]:[^:]*:Eulogia:8A29:/ -4395.3 "The Scholar's Wisdom" sync / 1[56]:[^:]*:Eulogia:8A2A:/ -4396.7 "The Spinner's Cunning" sync / 1[56]:[^:]*:Eulogia:8A2B:/ -4398.3 "The Navigator's Command" sync / 1[56]:[^:]*:Eulogia:8A2D:/ -4399.9 "The Wanderer's Whimsy" sync / 1[56]:[^:]*:Eulogia:8A2E:/ -4402.2 "Eudaimon Eorzea" sync / 1[56]:[^:]*:Eulogia:8A2C:/ - -4418.0 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A02:/ +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "116D" } window 10000,0 +4009.6 "--sync--" StartsUsing { id: "8A03", source: "Eulogia" } window 10,10 +4014.6 "Dawn of Time" Ability { id: "8A03", source: "Eulogia" } + +4019.9 "--sync--" Ability { id: "8A02", source: "Eulogia" } +4022.0 "--sync--" Ability { id: "8A08", source: "Eulogia" } +4031.4 "First Form" Ability { id: ["8A0A", "8A0D", "8A10"], source: "Eulogia" } +4038.5 "Second Form" Ability { id: ["8A0B", "8A0E", "8A11"], source: "Eulogia" } +4045.6 "Third Form" Ability { id: ["8A0C", "8A0F", "8A12"], source: "Eulogia" } +4049.7 "--sync--" Ability { id: "8A16", source: "Eulogia" } +4049.9 "Quintessence 1" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } +4053.6 "Quintessence 2" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } +4057.2 "Quintessence 3" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } + +4071.5 "--sync--" Ability { id: "8A02", source: "Eulogia" } +4073.7 "--sync--" Ability { id: "8A08", source: "Eulogia" } + +4083.1 "First Form" Ability { id: ["8A0A", "8A0D", "8A10"], source: "Eulogia" } +4090.3 "Second Form" Ability { id: ["8A0B", "8A0E", "8A11"], source: "Eulogia" } +4097.4 "Third Form" Ability { id: ["8A0C", "8A0F", "8A12"], source: "Eulogia" } +4101.5 "--sync--" Ability { id: "8A16", source: "Eulogia" } +4101.7 "Quintessence 1" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } +4105.4 "Quintessence 2" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } +4109.0 "Quintessence 3" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } + +4122.0 "Sunbeam" Ability { id: "8A00", source: "Eulogia" } + +4128.2 "--middle--" Ability { id: "8A02", source: "Eulogia" } +4137.4 "The Whorl" Ability { id: "8A2F", source: "Eulogia" } +4144.5 "Love's Light" Ability { id: "8A30", source: "Eulogia" } + +4152.6 "Full Bright" Ability { id: "8A31", source: "Eulogia" } +4163.7 "First Blush 1" Ability { id: "8A33", source: "Eulogia" } +4165.7 "First Blush 2" Ability { id: "8A34", source: "Eulogia" } +4167.7 "First Blush 3" Ability { id: "8A35", source: "Eulogia" } +4169.7 "First Blush 4" Ability { id: "8A36", source: "Eulogia" } + +4172.7 "Solar Fans" Ability { id: "8A3B", source: "Eulogia" } +4175.8 "Radiant Rhythm 1" #Ability { id: "8A3D", source: "Eulogia" } +4177.9 "Radiant Rhythm 2" #Ability { id: "8A3D", source: "Eulogia" } +4180.0 "Radiant Rhythm 3" #Ability { id: "8A3D", source: "Eulogia" } +4182.1 "Radiant Rhythm 4" #Ability { id: "8A3D", source: "Eulogia" } +4187.6 "Radiant Finish" Ability { id: "8A40", source: "Eulogia" } + +4193.7 "Hydrostasis (cast)" Ability { id: "8A37", source: "Eulogia" } +4201.7 "Time and Tide" Ability { id: "8A32", source: "Eulogia" } +4204.6 "Hydrostasis 3" Ability { id: "8A38", source: "Eulogia" } +4207.6 "Hydrostasis 1" Ability { id: "8A39", source: "Eulogia" } +4210.6 "Hydrostasis 2" Ability { id: "8A3A", source: "Eulogia" } +4218.9 "Destructive Bolt" Ability { id: "8CEC", source: "Eulogia" } + +4223.0 "--middle--" Ability { id: "8A02", source: "Eulogia" } +4230.3 "Hieroglyphika" Ability { id: "8A43", source: "Eulogia" } +4247.4 "--sync--" Ability { id: "8A44", source: "Eulogia" } +4252.2 "Hand of the Destroyer" Ability { id: ["8A47", "8A48"], source: "Eulogia" } + +4256.3 "--middle--" Ability { id: "8A02", source: "Eulogia" } +4261.4 "Matron's Breath" Ability { id: "8A4B", source: "Eulogia" } +4276.5 "Blueblossoms/Giltblossoms 1" Ability { id: ["8A4C", "8A4D"], source: "Eulogia" } +4280.1 "Blueblossoms/Giltblossoms 2" Ability { id: ["8A4C", "8A4D"], source: "Eulogia" } +4283.7 "Blueblossoms/Giltblossoms 3" Ability { id: ["8A4C", "8A4D"], source: "Eulogia" } +4287.3 "Blueblossoms/Giltblossoms 4" Ability { id: ["8A4C", "8A4D"], source: "Eulogia" } + +4290.7 "Torrential Tridents" Ability { id: "8A4E", source: "Eulogia" } +4291.6 "Landing 1" #Ability { id: "8A4F", source: "Trident" } +4292.7 "Landing 2" #Ability { id: "8A4F", source: "Trident" } +4293.8 "Landing 3" #Ability { id: "8A4F", source: "Trident" } +4294.9 "Landing 4" #Ability { id: "8A4F", source: "Trident" } +4295.9 "Landing 5" #Ability { id: "8A4F", source: "Trident" } +4297.0 "Landing 6" #Ability { id: "8A4F", source: "Trident" } +4305.1 "Lightning Bolt 1" #Ability { id: "8A50", source: "Trident" } +4306.1 "Lightning Bolt 2" #Ability { id: "8A50", source: "Trident" } +4307.1 "Lightning Bolt 3" #Ability { id: "8A50", source: "Trident" } +4308.1 "Lightning Bolt 4" #Ability { id: "8A50", source: "Trident" } +4309.1 "Lightning Bolt 5" #Ability { id: "8A50", source: "Trident" } +4310.1 "Lightning Bolt 6" #Ability { id: "8A50", source: "Trident" } +4316.7 "Destructive Bolt" Ability { id: "8CEC", source: "Eulogia" } + +4327.1 "Byregot's Strike" Ability { id: "8A52", source: "Eulogia" } +4334.0 "Thousandfold Thrust" Ability { id: ["8A57", "8A58"], source: "Eulogia" } duration 5.4 + +4343.0 "--middle--" Ability { id: "8A02", source: "Eulogia" } +4350.2 "As Above, So Below" Ability { id: ["8A5B", "8A5C"], source: "Eulogia" } +4362.3 "Climbing Shot" Ability { id: ["8D0A", "8D0B"], source: "Eulogia" } +4372.8 "Soaring Minuet" Ability { id: "8A69", source: "Eulogia" } + +4377.1 "--middle--" Ability { id: "8A08", source: "Eulogia" } +4382.9 "The Builder's Art" Ability { id: "8A22", source: "Eulogia" } +4384.5 "The Destroyer's Might" Ability { id: "8A23", source: "Eulogia" } +4386.1 "The Warden's Radiance" Ability { id: "8A24", source: "Eulogia" } +4387.5 "The Traders' Equity" Ability { id: "8A25", source: "Eulogia" } +4389.1 "The Matron's Plenty" Ability { id: "8A26", source: "Eulogia" } +4390.7 "The Keeper's Gravity" Ability { id: "8A27", source: "Eulogia" } +4392.1 "The Fury's Ambition" Ability { id: "8A28", source: "Eulogia" } +4393.7 "The Lover's Devotion" Ability { id: "8A29", source: "Eulogia" } +4395.3 "The Scholar's Wisdom" Ability { id: "8A2A", source: "Eulogia" } +4396.7 "The Spinner's Cunning" Ability { id: "8A2B", source: "Eulogia" } +4398.3 "The Navigator's Command" Ability { id: "8A2D", source: "Eulogia" } +4399.9 "The Wanderer's Whimsy" Ability { id: "8A2E", source: "Eulogia" } +4402.2 "Eudaimon Eorzea" Ability { id: "8A2C", source: "Eulogia" } + +4418.0 "--sync--" Ability { id: "8A02", source: "Eulogia" } 4420.3 label "Quintessence" -4420.3 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A08:/ -4429.7 "First Form" sync / 1[56]:[^:]*:Eulogia:(8A0A|8A0D|8A10):/ -4436.9 "Second Form" sync / 1[56]:[^:]*:Eulogia:(8A0B|8A0E|8A11):/ -4444.1 "Third Form" sync / 1[56]:[^:]*:Eulogia:(8A0C|8A0F|8A12):/ -4448.2 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A16:/ -4448.4 "Quintessence 1" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ -4452.1 "Quintessence 2" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ -4455.7 "Quintessence 3" sync / 1[56]:[^:]*:Eulogia:(8A17|8A18|8A19):/ -4468.5 "Sunbeam" sync / 1[56]:[^:]*:Eulogia:8A00:/ - -4476.9 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -4486.2 "The Whorl" sync / 1[56]:[^:]*:Eulogia:8A2F:/ +4420.3 "--sync--" Ability { id: "8A08", source: "Eulogia" } +4429.7 "First Form" Ability { id: ["8A0A", "8A0D", "8A10"], source: "Eulogia" } +4436.9 "Second Form" Ability { id: ["8A0B", "8A0E", "8A11"], source: "Eulogia" } +4444.1 "Third Form" Ability { id: ["8A0C", "8A0F", "8A12"], source: "Eulogia" } +4448.2 "--sync--" Ability { id: "8A16", source: "Eulogia" } +4448.4 "Quintessence 1" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } +4452.1 "Quintessence 2" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } +4455.7 "Quintessence 3" Ability { id: ["8A17", "8A18", "8A19"], source: "Eulogia" } +4468.5 "Sunbeam" Ability { id: "8A00", source: "Eulogia" } + +4476.9 "--middle--" Ability { id: "8A02", source: "Eulogia" } +4486.2 "The Whorl" Ability { id: "8A2F", source: "Eulogia" } # Mechanics get a bit random here. There seem to be blocks that it executes all of in # some order before returning to Quintessence. There might be some order to it # as only some of them have Destructive Bolt stacks attached to them (although # it doesn't execute if it is the final mechanic prior to jumping back to Quintessence). # This is probably Good Enough (TM). -4400.0 "--sync--" sync / 14:[^:]*:Eulogia:8A3B:/ window 0,10000 jump "Solar Fans" -4400.0 "--sync--" sync / 14:[^:]*:Eulogia:8A4B:/ window 0,10000 jump "Matron's Breath" -4400.0 "--sync--" sync / 14:[^:]*:Eulogia:(8A5B|8A5C):/ window 0,10000 jump "As Above, So Below" -4400.0 "--sync--" sync / 14:[^:]*:Eulogia:8A4E:/ window 0,10000 jump "Torrential Tridents" -4400.0 "--sync--" sync / 14:[^:]*:Eulogia:8A30:/ window 0,10000 jump "Love's Light" -4400.0 "--sync--" sync / 14:[^:]*:Eulogia:8A43:/ window 0,10000 jump "Hieroglyphika" -4400.0 "--sync--" sync / 14:[^:]*:Eulogia:8A37:/ window 0,10000 jump "Hydrostasis" -4400.0 "--sync--" sync / 14:[^:]*:Eulogia:8A52:/ window 0,10000 jump "Byregot's Strike" -4400.0 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A08:/ window 0,10000 jump "Quintessence" +4400.0 "--sync--" StartsUsing { id: "8A3B", source: "Eulogia" } window 0,10000 jump "Solar Fans" +4400.0 "--sync--" StartsUsing { id: "8A4B", source: "Eulogia" } window 0,10000 jump "Matron's Breath" +4400.0 "--sync--" StartsUsing { id: ["8A5B", "8A5C"], source: "Eulogia" } window 0,10000 jump "As Above, So Below" +4400.0 "--sync--" StartsUsing { id: "8A4E", source: "Eulogia" } window 0,10000 jump "Torrential Tridents" +4400.0 "--sync--" StartsUsing { id: "8A30", source: "Eulogia" } window 0,10000 jump "Love's Light" +4400.0 "--sync--" StartsUsing { id: "8A43", source: "Eulogia" } window 0,10000 jump "Hieroglyphika" +4400.0 "--sync--" StartsUsing { id: "8A37", source: "Eulogia" } window 0,10000 jump "Hydrostasis" +4400.0 "--sync--" StartsUsing { id: "8A52", source: "Eulogia" } window 0,10000 jump "Byregot's Strike" +4400.0 "--sync--" Ability { id: "8A08", source: "Eulogia" } window 0,10000 jump "Quintessence" 5000.0 label "Solar Fans" -5000.0 "--sync--" sync / 14:[^:]*:Eulogia:8A3B:/ -5003.0 "Solar Fans" sync / 1[56]:[^:]*:Eulogia:8A3B:/ -5006.1 "Radiant Rhythm 1" #sync / 1[56]:[^:]*:Eulogia:8A3D:/ -5008.2 "Radiant Rhythm 2" #sync / 1[56]:[^:]*:Eulogia:8A3D:/ -5010.3 "Radiant Rhythm 3" #sync / 1[56]:[^:]*:Eulogia:8A3D:/ -5012.4 "Radiant Rhythm 4" #sync / 1[56]:[^:]*:Eulogia:8A3D:/ -5017.8 "Radiant Finish" sync / 1[56]:[^:]*:Eulogia:8A40:/ +5000.0 "--sync--" StartsUsing { id: "8A3B", source: "Eulogia" } +5003.0 "Solar Fans" Ability { id: "8A3B", source: "Eulogia" } +5006.1 "Radiant Rhythm 1" #Ability { id: "8A3D", source: "Eulogia" } +5008.2 "Radiant Rhythm 2" #Ability { id: "8A3D", source: "Eulogia" } +5010.3 "Radiant Rhythm 3" #Ability { id: "8A3D", source: "Eulogia" } +5012.4 "Radiant Rhythm 4" #Ability { id: "8A3D", source: "Eulogia" } +5017.8 "Radiant Finish" Ability { id: "8A40", source: "Eulogia" } 5100.0 label "Matron's Breath" -5100.0 "--sync--"sync / 14:[^:]*:Eulogia:8A4B:/ -5103.0 "Matron's Breath" sync / 1[56]:[^:]*:Eulogia:8A4B:/ -5118.1 "Blueblossoms/Giltblossoms 1" sync / 1[56]:[^:]*:Eulogia:(8A4C|8A4D):/ -5121.7 "Blueblossoms/Giltblossoms 2" sync / 1[56]:[^:]*:Eulogia:(8A4C|8A4D):/ -5125.3 "Blueblossoms/Giltblossoms 3" sync / 1[56]:[^:]*:Eulogia:(8A4C|8A4D):/ -5128.9 "Blueblossoms/Giltblossoms 4" sync / 1[56]:[^:]*:Eulogia:(8A4C|8A4D):/ +5100.0 "--sync--"StartsUsing { id: "8A4B", source: "Eulogia" } +5103.0 "Matron's Breath" Ability { id: "8A4B", source: "Eulogia" } +5118.1 "Blueblossoms/Giltblossoms 1" Ability { id: ["8A4C", "8A4D"], source: "Eulogia" } +5121.7 "Blueblossoms/Giltblossoms 2" Ability { id: ["8A4C", "8A4D"], source: "Eulogia" } +5125.3 "Blueblossoms/Giltblossoms 3" Ability { id: ["8A4C", "8A4D"], source: "Eulogia" } +5128.9 "Blueblossoms/Giltblossoms 4" Ability { id: ["8A4C", "8A4D"], source: "Eulogia" } 5200.0 label "As Above, So Below" -5200.0 "--sync--" sync / 14:[^:]*:Eulogia:(8A5B|8A5C):/ -5205.0 "As Above, So Below" sync / 1[56]:[^:]*:Eulogia:(8A5B|8A5C):/ -5217.1 "Climbing Shot" sync / 1[56]:[^:]*:Eulogia:(8D0A|8D0B):/ -5227.4 "Soaring Minuet" sync / 1[56]:[^:]*:Eulogia:8A69:/ -5237.6 "Destructive Bolt" sync / 1[56]:[^:]*:Eulogia:8CEC:/ +5200.0 "--sync--" StartsUsing { id: ["8A5B", "8A5C"], source: "Eulogia" } +5205.0 "As Above, So Below" Ability { id: ["8A5B", "8A5C"], source: "Eulogia" } +5217.1 "Climbing Shot" Ability { id: ["8D0A", "8D0B"], source: "Eulogia" } +5227.4 "Soaring Minuet" Ability { id: "8A69", source: "Eulogia" } +5237.6 "Destructive Bolt" Ability { id: "8CEC", source: "Eulogia" } 5300.0 label "Torrential Tridents" -5297.8 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -5300.0 "--sync--" sync / 14:[^:]*:Eulogia:8A4E:/ -5302.0 "Torrential Tridents" sync / 1[56]:[^:]*:Eulogia:8A4E:/ -5302.9 "Landing 1" #sync / 1[56]:[^:]*:Trident:8A4F:/ -5304.0 "Landing 2" #sync / 1[56]:[^:]*:Trident:8A4F:/ -5305.1 "Landing 3" #sync / 1[56]:[^:]*:Trident:8A4F:/ -5306.2 "Landing 4" #sync / 1[56]:[^:]*:Trident:8A4F:/ -5307.2 "Landing 5" #sync / 1[56]:[^:]*:Trident:8A4F:/ -5308.3 "Landing 6" #sync / 1[56]:[^:]*:Trident:8A4F:/ -5316.4 "Lightning Bolt 1" #sync / 1[56]:[^:]*:Trident:8A50:/ -5317.4 "Lightning Bolt 2" #sync / 1[56]:[^:]*:Trident:8A50:/ -5318.4 "Lightning Bolt 3" #sync / 1[56]:[^:]*:Trident:8A50:/ -5319.4 "Lightning Bolt 4" #sync / 1[56]:[^:]*:Trident:8A50:/ -5320.4 "Lightning Bolt 5" #sync / 1[56]:[^:]*:Trident:8A50:/ -5321.4 "Lightning Bolt 6" #sync / 1[56]:[^:]*:Trident:8A50:/ +5297.8 "--middle--" Ability { id: "8A02", source: "Eulogia" } +5300.0 "--sync--" StartsUsing { id: "8A4E", source: "Eulogia" } +5302.0 "Torrential Tridents" Ability { id: "8A4E", source: "Eulogia" } +5302.9 "Landing 1" #Ability { id: "8A4F", source: "Trident" } +5304.0 "Landing 2" #Ability { id: "8A4F", source: "Trident" } +5305.1 "Landing 3" #Ability { id: "8A4F", source: "Trident" } +5306.2 "Landing 4" #Ability { id: "8A4F", source: "Trident" } +5307.2 "Landing 5" #Ability { id: "8A4F", source: "Trident" } +5308.3 "Landing 6" #Ability { id: "8A4F", source: "Trident" } +5316.4 "Lightning Bolt 1" #Ability { id: "8A50", source: "Trident" } +5317.4 "Lightning Bolt 2" #Ability { id: "8A50", source: "Trident" } +5318.4 "Lightning Bolt 3" #Ability { id: "8A50", source: "Trident" } +5319.4 "Lightning Bolt 4" #Ability { id: "8A50", source: "Trident" } +5320.4 "Lightning Bolt 5" #Ability { id: "8A50", source: "Trident" } +5321.4 "Lightning Bolt 6" #Ability { id: "8A50", source: "Trident" } 5400.0 label "Love's Light" -5400.0 "--sync--" sync / 14:[^:]*:Eulogia:8A30:/ -5404.0 "Love's Light" sync / 1[56]:[^:]*:Eulogia:8A30:/ -5412.1 "Full Bright" sync / 1[56]:[^:]*:Eulogia:8A31:/ -5423.2 "First Blush 1" sync / 1[56]:[^:]*:Eulogia:8A33:/ -5425.2 "First Blush 2" sync / 1[56]:[^:]*:Eulogia:8A34:/ -5427.2 "First Blush 3" sync / 1[56]:[^:]*:Eulogia:8A35:/ -5429.2 "First Blush 4" sync / 1[56]:[^:]*:Eulogia:8A36:/ +5400.0 "--sync--" StartsUsing { id: "8A30", source: "Eulogia" } +5404.0 "Love's Light" Ability { id: "8A30", source: "Eulogia" } +5412.1 "Full Bright" Ability { id: "8A31", source: "Eulogia" } +5423.2 "First Blush 1" Ability { id: "8A33", source: "Eulogia" } +5425.2 "First Blush 2" Ability { id: "8A34", source: "Eulogia" } +5427.2 "First Blush 3" Ability { id: "8A35", source: "Eulogia" } +5429.2 "First Blush 4" Ability { id: "8A36", source: "Eulogia" } 5500.0 label "Hieroglyphika" -5497.7 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -5500.0 "--sync--" sync / 14:[^:]*:Eulogia:8A43:/ -5505.0 "Hieroglyphika" sync / 1[56]:[^:]*:Eulogia:8A43:/ -5522.1 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A44:/ -5526.8 "Hand of the Destroyer" sync / 1[56]:[^:]*:Eulogia:(8A47|8A48):/ -5537.9 "Destructive Bolt" sync / 1[56]:[^:]*:Eulogia:8CEC:/ +5497.7 "--middle--" Ability { id: "8A02", source: "Eulogia" } +5500.0 "--sync--" StartsUsing { id: "8A43", source: "Eulogia" } +5505.0 "Hieroglyphika" Ability { id: "8A43", source: "Eulogia" } +5522.1 "--sync--" Ability { id: "8A44", source: "Eulogia" } +5526.8 "Hand of the Destroyer" Ability { id: ["8A47", "8A48"], source: "Eulogia" } +5537.9 "Destructive Bolt" Ability { id: "8CEC", source: "Eulogia" } 5600.0 label "Hydrostasis" -5597.8 "--middle--" sync / 1[56]:[^:]*:Eulogia:8A02:/ -5600.0 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A37:/ -5604.0 "Hydrostasis" sync / 1[56]:[^:]*:Eulogia:8A37:/ -5612.0 "Time and Tide" sync / 1[56]:[^:]*:Eulogia:8A32:/ -5614.9 "Hydrostasis 3" sync / 1[56]:[^:]*:Eulogia:8A38:/ -5617.9 "Hydrostasis 1" sync / 1[56]:[^:]*:Eulogia:8A39:/ -5620.9 "Hydrostasis 2" sync / 1[56]:[^:]*:Eulogia:8A3A:/ +5597.8 "--middle--" Ability { id: "8A02", source: "Eulogia" } +5600.0 "--sync--" Ability { id: "8A37", source: "Eulogia" } +5604.0 "Hydrostasis" Ability { id: "8A37", source: "Eulogia" } +5612.0 "Time and Tide" Ability { id: "8A32", source: "Eulogia" } +5614.9 "Hydrostasis 3" Ability { id: "8A38", source: "Eulogia" } +5617.9 "Hydrostasis 1" Ability { id: "8A39", source: "Eulogia" } +5620.9 "Hydrostasis 2" Ability { id: "8A3A", source: "Eulogia" } 5700.0 label "Byregot's Strike" -5700.0 "--sync--" sync / 1[56]:[^:]*:Eulogia:8A52:/ -5706.0 "Byregot's Strike" sync / 1[56]:[^:]*:Eulogia:8A52:/ -5712.9 "Thousandfold Thrust" sync / 1[56]:[^:]*:Eulogia:(8A57|8A58):/ duration 5.4 -5727.1 "Destructive Bolt" sync / 1[56]:[^:]*:Eulogia:8CEC:/ +5700.0 "--sync--" Ability { id: "8A52", source: "Eulogia" } +5706.0 "Byregot's Strike" Ability { id: "8A52", source: "Eulogia" } +5712.9 "Thousandfold Thrust" Ability { id: ["8A57", "8A58"], source: "Eulogia" } duration 5.4 +5727.1 "Destructive Bolt" Ability { id: "8CEC", source: "Eulogia" } # ALL ENCOUNTER ABILITIES diff --git a/ui/raidboss/data/06-ew/dungeon/aetherfont.txt b/ui/raidboss/data/06-ew/dungeon/aetherfont.txt index 84f114ec0b..daa4d09bde 100644 --- a/ui/raidboss/data/06-ew/dungeon/aetherfont.txt +++ b/ui/raidboss/data/06-ew/dungeon/aetherfont.txt @@ -6,7 +6,7 @@ hideall "--sync--" # TODO: verify loops with longer logs? # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~~~~# # Lyngbakr :U # @@ -16,37 +16,37 @@ hideall "--sync--" # -p 823A:111.3 # Landfast Floe will be sealed off -100.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10CD:/ window 100000,0 -106.3 "--sync--" sync / 14:[^:]*:Lyngbakr:823A:/ window 10,10 -111.3 "Upsweep" sync / 1[56]:[^:]*:Lyngbakr:823A:/ -121.7 "Tidal Breath" sync / 1[56]:[^:]*:Lyngbakr:8240:/ -131.8 "Body Slam" sync / 1[56]:[^:]*:Lyngbakr:8237:/ -140.5 "Upsweep" sync / 1[56]:[^:]*:Lyngbakr:823A:/ -146.6 "Resonant Frequency (small)" sync / 1[56]:[^:]*:Lyngbakr:823B:/ - -154.8 "Body Slam" sync / 1[56]:[^:]*:Lyngbakr:8237:/ -163.5 "Upsweep" sync / 1[56]:[^:]*:Lyngbakr:823A:/ -174.5 "Explosive Frequency (big)" sync / 1[56]:[^:]*:Lyngbakr:823C:/ -174.5 "Floodstide" sync / 1[56]:[^:]*:Lyngbakr:823D:/ -180.5 "Waterspout" sync / 1[56]:[^:]*:Lyngbakr:823E:/ -186.5 "Tidalspout" sync / 1[56]:[^:]*:Lyngbakr:823F:/ -192.6 "Tidal Breath" sync / 1[56]:[^:]*:Lyngbakr:8240:/ -203.2 "Body Slam" sync / 1[56]:[^:]*:Lyngbakr:8237:/ -211.9 "Upsweep" sync / 1[56]:[^:]*:Lyngbakr:823A:/ -218.0 "Resonant Frequency (small)" sync / 1[56]:[^:]*:Lyngbakr:823B:/ -223.0 "Explosive Frequency (big)" sync / 1[56]:[^:]*:Lyngbakr:823C:/ -229.0 "Tidal Breath" sync / 1[56]:[^:]*:Lyngbakr:8240:/ -237.2 "Sonic Bloop" sync / 1[56]:[^:]*:Lyngbakr:8241:/ -245.3 "Upsweep" sync / 1[56]:[^:]*:Lyngbakr:823A:/ -252.4 "Upsweep" sync / 1[56]:[^:]*:Lyngbakr:823A:/ +100.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10CD" } window 100000,0 +106.3 "--sync--" StartsUsing { id: "823A", source: "Lyngbakr" } window 10,10 +111.3 "Upsweep" Ability { id: "823A", source: "Lyngbakr" } +121.7 "Tidal Breath" Ability { id: "8240", source: "Lyngbakr" } +131.8 "Body Slam" Ability { id: "8237", source: "Lyngbakr" } +140.5 "Upsweep" Ability { id: "823A", source: "Lyngbakr" } +146.6 "Resonant Frequency (small)" Ability { id: "823B", source: "Lyngbakr" } + +154.8 "Body Slam" Ability { id: "8237", source: "Lyngbakr" } +163.5 "Upsweep" Ability { id: "823A", source: "Lyngbakr" } +174.5 "Explosive Frequency (big)" Ability { id: "823C", source: "Lyngbakr" } +174.5 "Floodstide" Ability { id: "823D", source: "Lyngbakr" } +180.5 "Waterspout" Ability { id: "823E", source: "Lyngbakr" } +186.5 "Tidalspout" Ability { id: "823F", source: "Lyngbakr" } +192.6 "Tidal Breath" Ability { id: "8240", source: "Lyngbakr" } +203.2 "Body Slam" Ability { id: "8237", source: "Lyngbakr" } +211.9 "Upsweep" Ability { id: "823A", source: "Lyngbakr" } +218.0 "Resonant Frequency (small)" Ability { id: "823B", source: "Lyngbakr" } +223.0 "Explosive Frequency (big)" Ability { id: "823C", source: "Lyngbakr" } +229.0 "Tidal Breath" Ability { id: "8240", source: "Lyngbakr" } +237.2 "Sonic Bloop" Ability { id: "8241", source: "Lyngbakr" } +245.3 "Upsweep" Ability { id: "823A", source: "Lyngbakr" } +252.4 "Upsweep" Ability { id: "823A", source: "Lyngbakr" } # Probably a loop, at least up until 223.0/332.3 Explosive Frequency -264.5 "Body Slam" sync / 1[56]:[^:]*:Lyngbakr:8237:/ window 30,30 jump 154.8 -273.2 "Upsweep" #sync / 1[56]:[^:]*:Lyngbakr:823A:/ -284.2 "Explosive Frequency (big)" #sync / 1[56]:[^:]*:Lyngbakr:823C:/ -284.2 "Floodstide" #sync / 1[56]:[^:]*:Lyngbakr:823D:/ -290.2 "Waterspout" #sync / 1[56]:[^:]*:Lyngbakr:823E:/ -296.2 "Tidalspout" #sync / 1[56]:[^:]*:Lyngbakr:823F:/ +264.5 "Body Slam" Ability { id: "8237", source: "Lyngbakr" } window 30,30 jump 154.8 +273.2 "Upsweep" #Ability { id: "823A", source: "Lyngbakr" } +284.2 "Explosive Frequency (big)" #Ability { id: "823C", source: "Lyngbakr" } +284.2 "Floodstide" #Ability { id: "823D", source: "Lyngbakr" } +290.2 "Waterspout" #Ability { id: "823E", source: "Lyngbakr" } +296.2 "Tidalspout" #Ability { id: "823F", source: "Lyngbakr" } #~~~~~~~# @@ -57,55 +57,55 @@ hideall "--sync--" # -p 872D:510 # Cyancap Cavern will be sealed off -500.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10CE:/ window 100000,0 -505.0 "--sync--" sync / 14:[^:]*:Arkas:872D:/ window 10,10 -510.0 "Battle Cry" sync / 1[56]:[^:]*:Arkas:872D:/ -521.3 "Lightning Leap" sync / 1[56]:[^:]*:Arkas:824E:/ -522.3 "--sync--" sync / 1[56]:[^:]*:Arkas:8799:/ -528.4 "Forked Fissures" sync / 1[56]:[^:]*:Arkas:8251:/ -531.4 "Lightning Leap" sync / 1[56]:[^:]*:Arkas:824F:/ -532.4 "--sync--" sync / 1[56]:[^:]*:Arkas:8250:/ -538.5 "Forked Fissures" sync / 1[56]:[^:]*:Arkas:8251:/ -548.1 "Ripper Claw" sync / 1[56]:[^:]*:Arkas:8258:/ -558.1 "Spinning Claw" sync / 1[56]:[^:]*:Arkas:8252:/ -563.7 "Spun Lightning" sync / 1[56]:[^:]*:Arkas:8253:/ - -572.3 "Battle Cry" sync / 1[56]:[^:]*:Arkas:8254:/ -583.4 "Lightning Rampage 1" sync / 1[56]:[^:]*:Arkas:860E:/ -584.4 "--sync--" sync / 1[56]:[^:]*:Arkas:879A:/ -588.4 "Lightning Rampage 2" sync / 1[56]:[^:]*:Arkas:860F:/ -589.4 "--sync--" sync / 1[56]:[^:]*:Arkas:8611:/ -590.4 "Forked Fissures" sync / 1[56]:[^:]*:Arkas:8251:/ -594.4 "Lightning Rampage 3" sync / 1[56]:[^:]*:Arkas:860F:/ -595.3 "--sync--" sync / 1[56]:[^:]*:Arkas:8611:/ -595.4 "Forked Fissures" sync / 1[56]:[^:]*:Arkas:8251:/ -600.4 "Lightning Rampage 4" sync / 1[56]:[^:]*:Arkas:8610:/ -601.3 "--sync--" sync / 1[56]:[^:]*:Arkas:8611:/ -601.5 "Forked Fissures" sync / 1[56]:[^:]*:Arkas:8251:/ -607.5 "Forked Fissures" sync / 1[56]:[^:]*:Arkas:8251:/ - -613.2 "Lightning Claw" sync / 1[56]:[^:]*:Arkas:8798:/ -621.0 "Electrify" sync / 1[56]:[^:]*:Arkas:8257:/ -629.2 "Ripper Claw" sync / 1[56]:[^:]*:Arkas:8258:/ -641.8 "Electric Eruption" sync / 1[56]:[^:]*:Arkas:834F:/ -646.4 "Shock" sync / 1[56]:[^:]*:Arkas:8255:/ -651.8 "Spinning Claw" sync / 1[56]:[^:]*:Arkas:8252:/ -657.4 "Spun Lightning" sync / 1[56]:[^:]*:Arkas:8253:/ +500.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10CE" } window 100000,0 +505.0 "--sync--" StartsUsing { id: "872D", source: "Arkas" } window 10,10 +510.0 "Battle Cry" Ability { id: "872D", source: "Arkas" } +521.3 "Lightning Leap" Ability { id: "824E", source: "Arkas" } +522.3 "--sync--" Ability { id: "8799", source: "Arkas" } +528.4 "Forked Fissures" Ability { id: "8251", source: "Arkas" } +531.4 "Lightning Leap" Ability { id: "824F", source: "Arkas" } +532.4 "--sync--" Ability { id: "8250", source: "Arkas" } +538.5 "Forked Fissures" Ability { id: "8251", source: "Arkas" } +548.1 "Ripper Claw" Ability { id: "8258", source: "Arkas" } +558.1 "Spinning Claw" Ability { id: "8252", source: "Arkas" } +563.7 "Spun Lightning" Ability { id: "8253", source: "Arkas" } + +572.3 "Battle Cry" Ability { id: "8254", source: "Arkas" } +583.4 "Lightning Rampage 1" Ability { id: "860E", source: "Arkas" } +584.4 "--sync--" Ability { id: "879A", source: "Arkas" } +588.4 "Lightning Rampage 2" Ability { id: "860F", source: "Arkas" } +589.4 "--sync--" Ability { id: "8611", source: "Arkas" } +590.4 "Forked Fissures" Ability { id: "8251", source: "Arkas" } +594.4 "Lightning Rampage 3" Ability { id: "860F", source: "Arkas" } +595.3 "--sync--" Ability { id: "8611", source: "Arkas" } +595.4 "Forked Fissures" Ability { id: "8251", source: "Arkas" } +600.4 "Lightning Rampage 4" Ability { id: "8610", source: "Arkas" } +601.3 "--sync--" Ability { id: "8611", source: "Arkas" } +601.5 "Forked Fissures" Ability { id: "8251", source: "Arkas" } +607.5 "Forked Fissures" Ability { id: "8251", source: "Arkas" } + +613.2 "Lightning Claw" Ability { id: "8798", source: "Arkas" } +621.0 "Electrify" Ability { id: "8257", source: "Arkas" } +629.2 "Ripper Claw" Ability { id: "8258", source: "Arkas" } +641.8 "Electric Eruption" Ability { id: "834F", source: "Arkas" } +646.4 "Shock" Ability { id: "8255", source: "Arkas" } +651.8 "Spinning Claw" Ability { id: "8252", source: "Arkas" } +657.4 "Spun Lightning" Ability { id: "8253", source: "Arkas" } # Probably a loop, at least up until 629.2/722.1 Ripper Claw -665.0 "Battle Cry" sync / 1[56]:[^:]*:Arkas:8254:/ window 30,30 jump 572.3 -676.1 "Lightning Rampage 1" #sync / 1[56]:[^:]*:Arkas:860E:/ -677.1 "--sync--" #sync / 1[56]:[^:]*:Arkas:879A:/ -681.1 "Lightning Rampage 2" #sync / 1[56]:[^:]*:Arkas:860F:/ -682.1 "--sync--" #sync / 1[56]:[^:]*:Arkas:8611:/ -683.1 "Forked Fissures" #sync / 1[56]:[^:]*:Arkas:8251:/ -687.1 "Lightning Rampage 3" #sync / 1[56]:[^:]*:Arkas:860F:/ -688.0 "--sync--" #sync / 1[56]:[^:]*:Arkas:8611:/ -688.1 "Forked Fissures" #sync / 1[56]:[^:]*:Arkas:8251:/ -693.1 "Lightning Rampage 4" #sync / 1[56]:[^:]*:Arkas:8610:/ -694.0 "--sync--" #sync / 1[56]:[^:]*:Arkas:8611:/ -694.2 "Forked Fissures" #sync / 1[56]:[^:]*:Arkas:8251:/ -700.2 "Forked Fissures" #sync / 1[56]:[^:]*:Arkas:8251:/ +665.0 "Battle Cry" Ability { id: "8254", source: "Arkas" } window 30,30 jump 572.3 +676.1 "Lightning Rampage 1" #Ability { id: "860E", source: "Arkas" } +677.1 "--sync--" #Ability { id: "879A", source: "Arkas" } +681.1 "Lightning Rampage 2" #Ability { id: "860F", source: "Arkas" } +682.1 "--sync--" #Ability { id: "8611", source: "Arkas" } +683.1 "Forked Fissures" #Ability { id: "8251", source: "Arkas" } +687.1 "Lightning Rampage 3" #Ability { id: "860F", source: "Arkas" } +688.0 "--sync--" #Ability { id: "8611", source: "Arkas" } +688.1 "Forked Fissures" #Ability { id: "8251", source: "Arkas" } +693.1 "Lightning Rampage 4" #Ability { id: "8610", source: "Arkas" } +694.0 "--sync--" #Ability { id: "8611", source: "Arkas" } +694.2 "Forked Fissures" #Ability { id: "8251", source: "Arkas" } +700.2 "Forked Fissures" #Ability { id: "8251", source: "Arkas" } #~~~~~~~~~~~~~# @@ -116,41 +116,41 @@ hideall "--sync--" # -p 824C:1009.6 # The Deep Below will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10CF:/ window 100000,0 -1004.6 "--sync--" sync / 14:[^:]*:Octomammoth:824C:/ window 10,10 -1009.6 "Tidal Roar" sync / 1[56]:[^:]*:Octomammoth:824C:/ -1032.7 "Octostroke" sync / 1[56]:[^:]*:Octomammoth:8243:/ -1033.0 "Clearout" sync / 1[56]:[^:]*:Mammoth Tentacle:8244:/ -1045.0 "Vivid Eyes" sync / 1[56]:[^:]*:Octomammoth:824B:/ -1053.1 "Saline Spit" sync / 1[56]:[^:]*:Octomammoth:8248:/ -1071.5 "Tidal Breath" sync / 1[56]:[^:]*:Octomammoth:824A:/ -1078.8 "Tidal Roar" sync / 1[56]:[^:]*:Octomammoth:824C:/ -1091.0 "Telekinesis (tether)" sync / 1[56]:[^:]*:Octomammoth:8245:/ -1101.8 "Telekinesis (explosion)" sync / 1[56]:[^:]*:Octomammoth:8247:/ -1103.9 "--sync--" sync / 1[56]:[^:]*:Octomammoth:8246:/ -1130.8 "Clearout" sync / 1[56]:[^:]*:Mammoth Tentacle:8244:/ -1130.8 "Breathstroke" sync / 1[56]:[^:]*:Octomammoth:86F7:/ -1136.1 "Saline Spit" sync / 1[56]:[^:]*:Octomammoth:8248:/ -1143.2 "Vivid Eyes" sync / 1[56]:[^:]*:Octomammoth:824B:/ -1144.2 "Water Drop" sync / 1[56]:[^:]*:Octomammoth:8684:/ -1156.5 "Telekinesis (tether)" sync / 1[56]:[^:]*:Octomammoth:8245:/ -1167.3 "Telekinesis (explosion)" sync / 1[56]:[^:]*:Octomammoth:8247:/ -1169.4 "--sync--" sync / 1[56]:[^:]*:Octomammoth:8246:/ -1178.4 "Tidal Roar" sync / 1[56]:[^:]*:Octomammoth:824C:/ - -1208.3 "Clearout" sync / 1[56]:[^:]*:Mammoth Tentacle:8244:/ -1208.3 "Breathstroke" sync / 1[56]:[^:]*:Octomammoth:86F7:/ -1213.6 "Saline Spit" sync / 1[56]:[^:]*:Octomammoth:8248:/ -1220.7 "Vivid Eyes" sync / 1[56]:[^:]*:Octomammoth:824B:/ -1221.7 "Water Drop" sync / 1[56]:[^:]*:Octomammoth:8684:/ -1232.8 "Tidal Roar" sync / 1[56]:[^:]*:Octomammoth:824C:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10CF" } window 100000,0 +1004.6 "--sync--" StartsUsing { id: "824C", source: "Octomammoth" } window 10,10 +1009.6 "Tidal Roar" Ability { id: "824C", source: "Octomammoth" } +1032.7 "Octostroke" Ability { id: "8243", source: "Octomammoth" } +1033.0 "Clearout" Ability { id: "8244", source: "Mammoth Tentacle" } +1045.0 "Vivid Eyes" Ability { id: "824B", source: "Octomammoth" } +1053.1 "Saline Spit" Ability { id: "8248", source: "Octomammoth" } +1071.5 "Tidal Breath" Ability { id: "824A", source: "Octomammoth" } +1078.8 "Tidal Roar" Ability { id: "824C", source: "Octomammoth" } +1091.0 "Telekinesis (tether)" Ability { id: "8245", source: "Octomammoth" } +1101.8 "Telekinesis (explosion)" Ability { id: "8247", source: "Octomammoth" } +1103.9 "--sync--" Ability { id: "8246", source: "Octomammoth" } +1130.8 "Clearout" Ability { id: "8244", source: "Mammoth Tentacle" } +1130.8 "Breathstroke" Ability { id: "86F7", source: "Octomammoth" } +1136.1 "Saline Spit" Ability { id: "8248", source: "Octomammoth" } +1143.2 "Vivid Eyes" Ability { id: "824B", source: "Octomammoth" } +1144.2 "Water Drop" Ability { id: "8684", source: "Octomammoth" } +1156.5 "Telekinesis (tether)" Ability { id: "8245", source: "Octomammoth" } +1167.3 "Telekinesis (explosion)" Ability { id: "8247", source: "Octomammoth" } +1169.4 "--sync--" Ability { id: "8246", source: "Octomammoth" } +1178.4 "Tidal Roar" Ability { id: "824C", source: "Octomammoth" } + +1208.3 "Clearout" Ability { id: "8244", source: "Mammoth Tentacle" } +1208.3 "Breathstroke" Ability { id: "86F7", source: "Octomammoth" } +1213.6 "Saline Spit" Ability { id: "8248", source: "Octomammoth" } +1220.7 "Vivid Eyes" Ability { id: "824B", source: "Octomammoth" } +1221.7 "Water Drop" Ability { id: "8684", source: "Octomammoth" } +1232.8 "Tidal Roar" Ability { id: "824C", source: "Octomammoth" } # It seems unlikely that this is a loop as it's very short. # However, the longest log I've seen is ~5m. # I've seen up to the Tidal Roar at 1232.8/1291.1. -1266.6 "Clearout" sync / 1[56]:[^:]*:Mammoth Tentacle:8244:/ window 30,30 jump 1208.3 -1266.6 "Breathstroke" #sync / 1[56]:[^:]*:Octomammoth:86F7:/ -1271.9 "Saline Spit" #sync / 1[56]:[^:]*:Octomammoth:8248:/ -1279.0 "Vivid Eyes" #sync / 1[56]:[^:]*:Octomammoth:824B:/ -1280.0 "Water Drop" #sync / 1[56]:[^:]*:Octomammoth:8684:/ -1291.1 "Tidal Roar" #sync / 1[56]:[^:]*:Octomammoth:824C:/ +1266.6 "Clearout" Ability { id: "8244", source: "Mammoth Tentacle" } window 30,30 jump 1208.3 +1266.6 "Breathstroke" #Ability { id: "86F7", source: "Octomammoth" } +1271.9 "Saline Spit" #Ability { id: "8248", source: "Octomammoth" } +1279.0 "Vivid Eyes" #Ability { id: "824B", source: "Octomammoth" } +1280.0 "Water Drop" #Ability { id: "8684", source: "Octomammoth" } +1291.1 "Tidal Roar" #Ability { id: "824C", source: "Octomammoth" } diff --git a/ui/raidboss/data/06-ew/dungeon/aloalo_island.ts b/ui/raidboss/data/06-ew/dungeon/aloalo_island.ts index 2792211c9d..d8d4278f87 100644 --- a/ui/raidboss/data/06-ew/dungeon/aloalo_island.ts +++ b/ui/raidboss/data/06-ew/dungeon/aloalo_island.ts @@ -66,16 +66,19 @@ const triggerSet: TriggerSet = { en: 'Away from Orbs', de: 'Außen zwichen den Orbs', ja: 'ハンマー、玉の間の外側へ', + ko: '구슬에서 멀리 떨어지기', }, second: { en: 'Under Orbs', de: 'Unter einen Orbs', ja: 'ドーナツ、玉の下へ', + ko: '구슬 밑으로', }, third: { en: 'Under Donut Far From Axe', de: 'Unter Donut und weit weg von der Axt', ja: '玉に気を付けて', + ko: '도끼에서 먼 도넛 밑으로', }, }, }, @@ -89,6 +92,7 @@ const triggerSet: TriggerSet = { en: '3x Knockback', de: '3x Rückstoß', ja: '3x ノックバック', + ko: '3x 넉백', }, }, }, @@ -102,6 +106,7 @@ const triggerSet: TriggerSet = { en: '4x Charge', de: '4x Ansturm', ja: '4x 突進', + ko: '4x 돌진', }, }, }, @@ -115,6 +120,7 @@ const triggerSet: TriggerSet = { en: 'Away from spears', de: 'Außen zwichen den Dreizack', ja: '槍の間の外側へ', + ko: '창에서 멀리 떨어지기', }, }, }, @@ -127,6 +133,7 @@ const triggerSet: TriggerSet = { text: { en: 'Avoid spreading spear puddles', de: 'Weiche den größer werdenen Speerflächen aus', + ko: '커지는 창 장판 피하기', }, }, }, @@ -183,6 +190,7 @@ const triggerSet: TriggerSet = { en: 'Bubbles Move 2 Tiles', de: 'Blasen 2 Flächen Rückstoß', ja: '泡のみ2マスのノックバック', + ko: '거품은 2칸 이동함', }, }, }, @@ -197,6 +205,7 @@ const triggerSet: TriggerSet = { text: { en: 'Stretch Tether', de: 'Verbindung langziehen', + ko: '선 늘이기', }, }, }, @@ -210,6 +219,7 @@ const triggerSet: TriggerSet = { text: { en: 'Knockback => Get in Bubble', de: 'Rückstoß => Geh in eine Blase', + ko: '넉백 => 거품 안으로', }, }, }, @@ -226,6 +236,7 @@ const triggerSet: TriggerSet = { text: { en: 'Get behind non-bubbled Zaratan', de: 'Geh hinter einen Zaratan ohne Blase', + ko: '거품 밖에 있는 쫄 뒤로', }, }, }, @@ -242,6 +253,7 @@ const triggerSet: TriggerSet = { text: { en: 'Get in Bubble', de: 'Geh in eine Blase', + ko: '거품 안으로', }, }, }, @@ -311,6 +323,7 @@ const triggerSet: TriggerSet = { en: 'Go to safe zone', de: 'Geh in den sicheren Bereich', ja: '安置へ移動', + ko: '안전지대로', }, front: Outputs.front, back: Outputs.back, @@ -360,18 +373,22 @@ const triggerSet: TriggerSet = { front: { en: 'Face Towards Lala', de: 'Schau Lala an', + ko: '보스 쳐다보기', }, back: { en: 'Look Away from Lala', de: 'Schau von Lala weg', + ko: '뒤돌기', }, left: { en: 'Left Flank towards Lala', de: 'Linke Seite zu Lala drehen', + ko: '왼쪽 측면을 보스쪽으로', }, right: { en: 'Right Flank towards Lala', de: 'Rechte Seite zu Lala drehen', + ko: '오른쪽 측면을 보스쪽으로', }, }, }, @@ -385,6 +402,7 @@ const triggerSet: TriggerSet = { en: 'Seed adds => Donut AOEs', de: 'Samen Adds => Donut AoEs', ja: '種 => ドーナツAOE', + ko: '씨앗 등장 => 도넛 장판', }, }, }, @@ -398,6 +416,7 @@ const triggerSet: TriggerSet = { en: 'Armadillo adds => Big AOEs', de: 'Fledermaus Adds => Große AoEs', ja: 'コウモリ => ゆかAOE', + ko: '아르마딜로 등장 => 거리비례 장판', }, }, }, @@ -411,6 +430,7 @@ const triggerSet: TriggerSet = { en: 'Tree adds => Line AOEs', de: 'Baum Adds => Linien AoEs', ja: '木 => 直線AOE', + ko: '나무 등장 => 직선 장판', }, }, }, @@ -461,7 +481,7 @@ const triggerSet: TriggerSet = { fr: 'Piratage mental : Vers l\'avant', // FIXME ja: '強制移動 : 前', // FIXME cn: '强制移动 : 前', // FIXME - ko: '강제이동: 앞', // FIXME + ko: '강제이동: 앞 (1칸)', }, back: { en: 'Backwards March (1 square)', @@ -469,7 +489,7 @@ const triggerSet: TriggerSet = { fr: 'Piratage mental : Vers l\'arrière', // FIXME ja: '強制移動 : 後ろ', // FIXME cn: '强制移动 : 后', // FIXME - ko: '강제이동: 뒤', // FIXME + ko: '강제이동: 뒤 (1칸)', }, left: { en: 'Left March (1 square)', @@ -477,7 +497,7 @@ const triggerSet: TriggerSet = { fr: 'Piratage mental : Vers la gauche', // FIXME ja: '強制移動 : 左', // FIXME cn: '强制移动 : 左', // FIXME - ko: '강제이동: 왼쪽', // FIXME + ko: '강제이동: 왼쪽 (1칸)', }, right: { en: 'Right March (1 square)', @@ -485,7 +505,7 @@ const triggerSet: TriggerSet = { fr: 'Piratage mental : Vers la droite', // FIXME ja: '強制移動 : 右', // FIXME cn: '强制移动 : 右', // FIXME - ko: '강제이동: 오른쪽', // FIXME + ko: '강제이동: 오른쪽 (1칸)', }, }, }, @@ -532,6 +552,7 @@ const triggerSet: TriggerSet = { en: 'Safe: ${safe}', de: 'Sicher: ${safe}', ja: '安置: ${safe}', + ko: '안전: ${safe}', }, }, }, @@ -556,6 +577,7 @@ const triggerSet: TriggerSet = { text: { en: 'Stand on cushion', de: 'Auf einem Kissen stehen', + ko: '발판 위에 있기', }, }, }, @@ -577,6 +599,7 @@ const triggerSet: TriggerSet = { en: 'Glowing adds get larger', de: 'Weiche leuchtenden Adds aus', ja: '光ってる物に注意', + ko: '빛나는 쫄 장판은 커짐', }, }, }, @@ -597,6 +620,7 @@ const triggerSet: TriggerSet = { en: 'Away from tether ends', de: 'Weiche Verbindungen aus', ja: '縮む線を回避', + ko: '선 끝부분 멀리 피하기', }, }, }, @@ -617,6 +641,7 @@ const triggerSet: TriggerSet = { en: 'Last bloom => Walk into Safe', de: 'Letzte Blüte => Geh zum sicheren Bereich', ja: '最後の花畑 => 安置へ移動', + ko: '마지막 꽃 => 안전지대로', }, }, }, @@ -638,6 +663,7 @@ const triggerSet: TriggerSet = { en: '5x Knockback', de: '5x Rückstoß', ja: '5x ノックバック', + ko: '5x 넉백', }, }, }, diff --git a/ui/raidboss/data/06-ew/dungeon/aloalo_island.txt b/ui/raidboss/data/06-ew/dungeon/aloalo_island.txt index 63f85b4fac..19f518f872 100644 --- a/ui/raidboss/data/06-ew/dungeon/aloalo_island.txt +++ b/ui/raidboss/data/06-ew/dungeon/aloalo_island.txt @@ -5,7 +5,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~~~~~~~~~~~# # Quaqua (left path) # @@ -15,110 +15,110 @@ hideall "--sync--" # -ii 8B89 8B98 8B9C 8B9D 8B93 # Ketulu Cove will be sealed off -#1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1128:/ window 10000,0 -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1128:/ window 10000,0 -1006.1 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1007.4 "--sync--" sync / 14:[^:]*:Quaqua:8B94:/ window 10,10 -1012.4 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -1022.5 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -1024.7 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1027.5 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ - -1031.2 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -1041.3 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -1046.2 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ - -1051.5 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +#1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1128" } window 10000,0 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1128" } window 10000,0 +1006.1 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1007.4 "--sync--" StartsUsing { id: "8B94", source: "Quaqua" } window 10,10 +1012.4 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +1022.5 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +1024.7 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1027.5 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } + +1031.2 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +1041.3 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +1046.2 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } + +1051.5 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 1057.6 "Arcane Armaments" -1052.6 "--sync--" sync / 14:[^:]*:Quaqua:8B8C:/ window 40,40 jump "quaqua-left-sunny" -1052.6 "--sync--" sync / 14:[^:]*:Quaqua:8B90:/ window 40,40 jump "quaqua-left-rainy" +1052.6 "--sync--" StartsUsing { id: "8B8C", source: "Quaqua" } window 40,40 jump "quaqua-left-sunny" +1052.6 "--sync--" StartsUsing { id: "8B90", source: "Quaqua" } window 40,40 jump "quaqua-left-rainy" 1252.6 label "quaqua-left-sunny" -1252.6 "--sync--" sync / 14:[^:]*:Quaqua:8B8C:/ -1257.6 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B8C:/ -1267.7 "Hammer Landing 1" sync / 1[56]:[^:]*:Quaqua:8B8D:/ -1269.7 "Hammer Landing 2" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ -1271.7 "Hammer Landing 3" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ +1252.6 "--sync--" StartsUsing { id: "8B8C", source: "Quaqua" } +1257.6 "Arcane Armaments" Ability { id: "8B8C", source: "Quaqua" } +1267.7 "Hammer Landing 1" Ability { id: "8B8D", source: "Quaqua" } +1269.7 "Hammer Landing 2" #Ability { id: "8B8E", source: "Quaqua" } +1271.7 "Hammer Landing 3" #Ability { id: "8B8E", source: "Quaqua" } -1279.8 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1286.5 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +1279.8 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1286.5 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -1292.6 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1297.8 "Howl" sync / 1[56]:[^:]*:Quaqua:8B96:/ -1308.7 "Scalding Waves" sync / 1[56]:[^:]*:Anala Familiar:8B97:/ duration 15 +1292.6 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1297.8 "Howl" Ability { id: "8B96", source: "Quaqua" } +1308.7 "Scalding Waves" Ability { id: "8B97", source: "Anala Familiar" } duration 15 -1317.0 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1323.7 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +1317.0 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1323.7 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -1330.9 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +1330.9 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 1337.1 label "quaqua-left-sunny-loop" -1337.1 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -1347.2 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -1352.1 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ -1352.1 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ +1337.1 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +1347.2 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +1352.1 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } +1352.1 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } -1361.4 "Howl" sync / 1[56]:[^:]*:Quaqua:8B96:/ -1372.3 "Scalding Waves" sync / 1[56]:[^:]*:Anala Familiar:8B97:/ duration 15 +1361.4 "Howl" Ability { id: "8B96", source: "Quaqua" } +1372.3 "Scalding Waves" Ability { id: "8B97", source: "Anala Familiar" } duration 15 -1386.4 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1392.9 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B8C:/ -1403.0 "Hammer Landing 1" sync / 1[56]:[^:]*:Quaqua:8B8D:/ -1405.0 "Hammer Landing 2" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ -1407.0 "Hammer Landing 3" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ +1386.4 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1392.9 "Arcane Armaments" Ability { id: "8B8C", source: "Quaqua" } +1403.0 "Hammer Landing 1" Ability { id: "8B8D", source: "Quaqua" } +1405.0 "Hammer Landing 2" #Ability { id: "8B8E", source: "Quaqua" } +1407.0 "Hammer Landing 3" #Ability { id: "8B8E", source: "Quaqua" } -1416.1 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1422.9 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +1416.1 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1422.9 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -1429.1 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1435.3 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ window 40,40 forcejump "quaqua-left-sunny-loop" +1429.1 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1435.3 "Made Magic" Ability { id: "8B94", source: "Quaqua" } window 40,40 forcejump "quaqua-left-sunny-loop" 1652.6 label "quaqua-left-rainy" -1652.6 "--sync--" sync / 14:[^:]*:Quaqua:8B90:/ -1657.6 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B90:/ +1652.6 "--sync--" StartsUsing { id: "8B90", source: "Quaqua" } +1657.6 "Arcane Armaments" Ability { id: "8B90", source: "Quaqua" } -1659.7 "--jump--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1666.6 "Rout 1" sync / 1[56]:[^:]*:Quaqua:8B91:/ -1668.4 "Rout 2" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -1670.0 "Rout 3" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -1671.6 "Rout 4" #sync / 1[56]:[^:]*:Quaqua:8B92:/ +1659.7 "--jump--" Ability { id: "8B8F", source: "Quaqua" } +1666.6 "Rout 1" Ability { id: "8B91", source: "Quaqua" } +1668.4 "Rout 2" #Ability { id: "8B92", source: "Quaqua" } +1670.0 "Rout 3" #Ability { id: "8B92", source: "Quaqua" } +1671.6 "Rout 4" #Ability { id: "8B92", source: "Quaqua" } -1678.7 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1685.5 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +1678.7 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1685.5 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -1691.6 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1696.9 "Howl" sync / 1[56]:[^:]*:Quaqua:8B96:/ +1691.6 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1696.9 "Howl" Ability { id: "8B96", source: "Quaqua" } -1706.8 "Cloud to Ground" sync / 1[56]:[^:]*:Drake Familiar:8B9B:/ duration 18.6 -#1110.8 "Cloud to Ground 2" sync / 1[56]:[^:]*:Drake Familiar:8B9B:/ +1706.8 "Cloud to Ground" Ability { id: "8B9B", source: "Drake Familiar" } duration 18.6 +#1110.8 "Cloud to Ground 2" Ability { id: "8B9B", source: "Drake Familiar" } -1732.2 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +1732.2 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 1738.4 label "quaqua-left-rainy-loop" -1738.4 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -1748.5 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -1753.4 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ -1753.4 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ +1738.4 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +1748.5 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +1753.4 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } +1753.4 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } -1762.7 "Howl" sync / 1[56]:[^:]*:Quaqua:8B96:/ -1772.6 "Cloud to Ground" sync / 1[56]:[^:]*:Drake Familiar:8B9B:/ duration 18.6 -#1176.6 "Cloud to Ground" sync / 1[56]:[^:]*:Drake Familiar:8B9B:/ +1762.7 "Howl" Ability { id: "8B96", source: "Quaqua" } +1772.6 "Cloud to Ground" Ability { id: "8B9B", source: "Drake Familiar" } duration 18.6 +#1176.6 "Cloud to Ground" Ability { id: "8B9B", source: "Drake Familiar" } -1787.9 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1794.1 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B90:/ +1787.9 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1794.1 "Arcane Armaments" Ability { id: "8B90", source: "Quaqua" } -1796.1 "--jump--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1802.8 "Rout 1" sync / 1[56]:[^:]*:Quaqua:8B91:/ -1804.5 "Rout 2" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -1806.1 "Rout 3" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -1807.9 "Rout 4" #sync / 1[56]:[^:]*:Quaqua:8B92:/ +1796.1 "--jump--" Ability { id: "8B8F", source: "Quaqua" } +1802.8 "Rout 1" Ability { id: "8B91", source: "Quaqua" } +1804.5 "Rout 2" #Ability { id: "8B92", source: "Quaqua" } +1806.1 "Rout 3" #Ability { id: "8B92", source: "Quaqua" } +1807.9 "Rout 4" #Ability { id: "8B92", source: "Quaqua" } -1814.0 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1820.8 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +1814.0 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1820.8 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -1826.9 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -1833.1 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ forcejump "quaqua-left-rainy-loop" +1826.9 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +1833.1 "Made Magic" Ability { id: "8B94", source: "Quaqua" } forcejump "quaqua-left-rainy-loop" # ALL ENCOUNTER ABILITIES (all paths) @@ -155,104 +155,104 @@ hideall "--sync--" # -ii 8A78 8AA6 8A7A 8A7B 8A81 8D1D 8AA4 8A89 8A8A 8A82 8A83 8A8C 8D10 8A94 8A98 8A99 8A96 # Seasong's Rest will be sealed off -#2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112B:/ window 10000,0 -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112B:/ window 10000,0 -2009.0 "--sync--" sync / 14:[^:]*:Ketuduke:8AA5:/ -2014.0 "Tidal Roar" sync / 1[56]:[^:]*:Ketuduke:8AA5:/ +#2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112B" } window 10000,0 +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112B" } window 10000,0 +2009.0 "--sync--" StartsUsing { id: "8AA5", source: "Ketuduke" } +2014.0 "Tidal Roar" Ability { id: "8AA5", source: "Ketuduke" } -2023.0 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ -2038.0 "Saturate" sync / 1[56]:[^:]*:Spring Crystal:8A7C:/ +2023.0 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } +2038.0 "Saturate" Ability { id: "8A7C", source: "Spring Crystal" } -2044.2 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ -2059.2 "Saturate" sync / 1[56]:[^:]*:Spring Crystal:8A7E:/ +2044.2 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } +2059.2 "Saturate" Ability { id: "8A7E", source: "Spring Crystal" } -2066.4 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ -2075.5 "Bubble Net" sync / 1[56]:[^:]*:Ketuduke:8A80:/ +2066.4 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } +2075.5 "Bubble Net" Ability { id: "8A80", source: "Ketuduke" } -2087.6 "Fluke Typhoon (cast)" sync / 1[56]:[^:]*:Ketuduke:8A84:/ -2093.6 "Fluke Typhoon" sync / 1[56]:[^:]*:Ketuduke:8A85:/ -2096.7 "Saturate" sync / 1[56]:[^:]*:Spring Crystal:8A7F:/ +2087.6 "Fluke Typhoon (cast)" Ability { id: "8A84", source: "Ketuduke" } +2093.6 "Fluke Typhoon" Ability { id: "8A85", source: "Ketuduke" } +2096.7 "Saturate" Ability { id: "8A7F", source: "Spring Crystal" } -2107.5 "Strewn Bubbles" sync / 1[56]:[^:]*:Ketuduke:8A86:/ -2114.5 "Sphere Shatter" sync / 1[56]:[^:]*:Ketuduke:8A87:/ +2107.5 "Strewn Bubbles" Ability { id: "8A86", source: "Ketuduke" } +2114.5 "Sphere Shatter" Ability { id: "8A87", source: "Ketuduke" } -2123.5 "Receding Twintides/Encroaching Twintides" sync / 1[56]:[^:]*:Ketuduke:(8A9D|8A9F):/ -2127.5 "Far Tide/Near Tide" sync / 1[56]:[^:]*:Ketuduke:(8AA0|8A9E):/ +2123.5 "Receding Twintides/Encroaching Twintides" Ability { id: ["8A9D", "8A9F"], source: "Ketuduke" } +2127.5 "Far Tide/Near Tide" Ability { id: ["8AA0", "8A9E"], source: "Ketuduke" } -2134.2 "--middle--" sync / 1[56]:[^:]*:Ketuduke:8A77:/ -2146.4 "--sync--" sync / 14:[^:]*:Ketuduke:8A79:/ jump "ketuduke-01" -2137.0 "--sync--" sync / 14:[^:]*:Ketuduke:8D11:/ jump "ketuduke-02" -2137.0 "--sync--" sync / 14:[^:]*:Ketuduke:8A92:/ jump "ketuduke-0304" +2134.2 "--middle--" Ability { id: "8A77", source: "Ketuduke" } +2146.4 "--sync--" StartsUsing { id: "8A79", source: "Ketuduke" } jump "ketuduke-01" +2137.0 "--sync--" StartsUsing { id: "8D11", source: "Ketuduke" } jump "ketuduke-02" +2137.0 "--sync--" StartsUsing { id: "8A92", source: "Ketuduke" } jump "ketuduke-0304" # path 01 -2234.2 "--middle--" sync / 1[56]:[^:]*:Ketuduke:8A77:/ +2234.2 "--middle--" Ability { id: "8A77", source: "Ketuduke" } 2246.4 label "ketuduke-01" -2246.4 "--sync--" sync / 14:[^:]*:Ketuduke:8A79:/ -2248.6 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ -2254.3 "Summon" sync / 1[56]:[^:]*:Zeal-blind Zozone:8A8E:/ -2258.7 "Bubble Net" sync / 1[56]:[^:]*:Ketuduke:8A80:/ -2264.7 "Fluke Typhoon (cast)" sync / 1[56]:[^:]*:Ketuduke:8A84:/ -2270.7 "Fluke Typhoon" sync / 1[56]:[^:]*:Ketuduke:8A85:/ -2273.4 "Water III" sync / 1[56]:[^:]*:Summoned Apa:8D14:/ -2273.8 "Saturate" sync / 1[56]:[^:]*:Spring Crystal:8A7F:/ -2291.0 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ window 40,40 forcejump "ketuduke-loop" +2246.4 "--sync--" StartsUsing { id: "8A79", source: "Ketuduke" } +2248.6 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } +2254.3 "Summon" Ability { id: "8A8E", source: "Zeal-blind Zozone" } +2258.7 "Bubble Net" Ability { id: "8A80", source: "Ketuduke" } +2264.7 "Fluke Typhoon (cast)" Ability { id: "8A84", source: "Ketuduke" } +2270.7 "Fluke Typhoon" Ability { id: "8A85", source: "Ketuduke" } +2273.4 "Water III" Ability { id: "8D14", source: "Summoned Apa" } +2273.8 "Saturate" Ability { id: "8A7F", source: "Spring Crystal" } +2291.0 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } window 40,40 forcejump "ketuduke-loop" # path 02 -2334.2 "--sync--" sync / 1[56]:[^:]*:Ketuduke:8A77:/ +2334.2 "--sync--" Ability { id: "8A77", source: "Ketuduke" } 2337.0 label "ketuduke-02" -2337.0 "--sync--" sync / 14:[^:]*:Ketuduke:8D11:/ -2339.2 "Tidal Wave (cast)" sync / 1[56]:[^:]*:Ketuduke:8D11:/ -2346.2 "Tidal Wave" sync / 1[56]:[^:]*:Ketuduke:8D12:/ -2347.3 "Hydrosurge" sync / 1[56]:[^:]*:Ketuduke:8A8B:/ -2363.1 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ -2370.1 "Summon" sync / 1[56]:[^:]*:Zeal-blind Zozone:8A8E:/ -2377.2 "Wavefoam" sync / 1[56]:[^:]*:Summoned Apa:8D13:/ -2390.2 "Fluke Typhoon" sync / 1[56]:[^:]*:Summoned Anila:8A8F:/ -2392.0 "Saturate" sync / 1[56]:[^:]*:Spring Crystal:8A7F:/ -2408.2 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ window 40,40 forcejump "ketuduke-loop" +2337.0 "--sync--" StartsUsing { id: "8D11", source: "Ketuduke" } +2339.2 "Tidal Wave (cast)" Ability { id: "8D11", source: "Ketuduke" } +2346.2 "Tidal Wave" Ability { id: "8D12", source: "Ketuduke" } +2347.3 "Hydrosurge" Ability { id: "8A8B", source: "Ketuduke" } +2363.1 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } +2370.1 "Summon" Ability { id: "8A8E", source: "Zeal-blind Zozone" } +2377.2 "Wavefoam" Ability { id: "8D13", source: "Summoned Apa" } +2390.2 "Fluke Typhoon" Ability { id: "8A8F", source: "Summoned Anila" } +2392.0 "Saturate" Ability { id: "8A7F", source: "Spring Crystal" } +2408.2 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } window 40,40 forcejump "ketuduke-loop" # path 03 / path 04 -2434.2 "--sync--" sync / 1[56]:[^:]*:Ketuduke:8A77:/ +2434.2 "--sync--" Ability { id: "8A77", source: "Ketuduke" } 2437.0 label "ketuduke-0304" -2437.0 "--sync--" sync / 14:[^:]*:Ketuduke:8A92:/ -2442.0 "Roar" sync / 1[56]:[^:]*:Ketuduke:8A92:/ -# 2142.7 "--sync--" sync / 03:[^:]*:Aloalo Zaratan:/ # path 03 -# 2142.7 "--sync--" sync / 03:[^:]*:Aloalo Ogrebon:/ # path 04 -2454.8 "Bubble Net" sync / 1[56]:[^:]*:Ketuduke:8A93:/ -2465.4 "Updraft" sync / 1[56]:[^:]*:Ketuduke:8D0F:/ -2467.6 "Hundred Lashings?" sync / 1[56]:[^:]*:Aloalo Zaratan:8A97:/ # path 03 -2470.5 "Shock?" sync / 1[56]:[^:]*:Aloalo Ogrebon:8A9A:/ # path 04 +2437.0 "--sync--" StartsUsing { id: "8A92", source: "Ketuduke" } +2442.0 "Roar" Ability { id: "8A92", source: "Ketuduke" } +# 2142.7 "--sync--" AddedCombatant { name: "Aloalo Zaratan" } # path 03 +# 2142.7 "--sync--" AddedCombatant { name: "Aloalo Ogrebon" } # path 04 +2454.8 "Bubble Net" Ability { id: "8A93", source: "Ketuduke" } +2465.4 "Updraft" Ability { id: "8D0F", source: "Ketuduke" } +2467.6 "Hundred Lashings?" Ability { id: "8A97", source: "Aloalo Zaratan" } # path 03 +2470.5 "Shock?" Ability { id: "8A9A", source: "Aloalo Ogrebon" } # path 04 # this cast is ~+1.5s in path04, but the paths are close enough that we'll just combine them -2476.4 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ window 40,40 forcejump "ketuduke-loop" +2476.4 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } window 40,40 forcejump "ketuduke-loop" # final loop (all paths) 2800.0 label "ketuduke-loop" -2800.0 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ -2810.0 "Bubble Net" sync / 1[56]:[^:]*:Ketuduke:8A80:/ -2816.0 "Fluke Typhoon (cast)" sync / 1[56]:[^:]*:Ketuduke:8A84:/ -2822.0 "Fluke Typhoon" sync / 1[56]:[^:]*:Ketuduke:8A85:/ -2822.8 "Hydrobomb (cast)" sync / 1[56]:[^:]*:Ketuduke:8AA1:/ -#2216.0 "Saturate" sync / 1[56]:[^:]*:Spring Crystal:8A7F:/ -2825.0 "Saturate" sync / 1[56]:[^:]*:Spring Crystal:8A7D:/ -2827.9 "Hydrobomb 1" #sync / 1[56]:[^:]*:Ketuduke:8AA2:/ -2829.9 "Hydrobomb 2" #sync / 1[56]:[^:]*:Ketuduke:8AAffff2:/ -2831.9 "Hydrobomb 3" #sync / 1[56]:[^:]*:Ketuduke:8AA2:/ - -2837.9 "Blowing Bubbles" sync / 1[56]:[^:]*:Ketuduke:8A88:/ -2843.9 "--middle--" sync / 1[56]:[^:]*:Ketuduke:8A77:/ -2851.8 "Receding Twintides/Encroaching Twintides" sync / 1[56]:[^:]*:Ketuduke:(8A9D|8A9F):/ -2855.8 "Far Tide/Near Tide" sync / 1[56]:[^:]*:Ketuduke:(8AA0|8A9E):/ -2867.5 "Tidal Roar" sync / 1[56]:[^:]*:Ketuduke:8AA5:/ - -2874.3 "--middle--" sync / 1[56]:[^:]*:Ketuduke:8A77:/ -2879.4 "Strewn Bubbles" sync / 1[56]:[^:]*:Ketuduke:8A86:/ -2886.4 "Sphere Shatter" sync / 1[56]:[^:]*:Ketuduke:8A87:/ -2887.4 "Receding Twintides/Encroaching Twintides" sync / 1[56]:[^:]*:Ketuduke:(8A9D|8A9F):/ -2891.4 "Far Tide/Near Tide" sync / 1[56]:[^:]*:Ketuduke:(8AA0|8A9E):/ -2903.1 "Hydroblast" sync / 1[56]:[^:]*:Ketuduke:8AA3:/ -2914.8 "Tidal Roar" sync / 1[56]:[^:]*:Ketuduke:8AA5:/ - -2923.8 "Spring Crystals" sync / 1[56]:[^:]*:Ketuduke:8A79:/ window 40,40 forcejump "ketuduke-loop" +2800.0 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } +2810.0 "Bubble Net" Ability { id: "8A80", source: "Ketuduke" } +2816.0 "Fluke Typhoon (cast)" Ability { id: "8A84", source: "Ketuduke" } +2822.0 "Fluke Typhoon" Ability { id: "8A85", source: "Ketuduke" } +2822.8 "Hydrobomb (cast)" Ability { id: "8AA1", source: "Ketuduke" } +#2216.0 "Saturate" Ability { id: "8A7F", source: "Spring Crystal" } +2825.0 "Saturate" Ability { id: "8A7D", source: "Spring Crystal" } +2827.9 "Hydrobomb 1" #Ability { id: "8AA2", source: "Ketuduke" } +2829.9 "Hydrobomb 2" #Ability { id: "8AAffff2", source: "Ketuduke" } +2831.9 "Hydrobomb 3" #Ability { id: "8AA2", source: "Ketuduke" } + +2837.9 "Blowing Bubbles" Ability { id: "8A88", source: "Ketuduke" } +2843.9 "--middle--" Ability { id: "8A77", source: "Ketuduke" } +2851.8 "Receding Twintides/Encroaching Twintides" Ability { id: ["8A9D", "8A9F"], source: "Ketuduke" } +2855.8 "Far Tide/Near Tide" Ability { id: ["8AA0", "8A9E"], source: "Ketuduke" } +2867.5 "Tidal Roar" Ability { id: "8AA5", source: "Ketuduke" } + +2874.3 "--middle--" Ability { id: "8A77", source: "Ketuduke" } +2879.4 "Strewn Bubbles" Ability { id: "8A86", source: "Ketuduke" } +2886.4 "Sphere Shatter" Ability { id: "8A87", source: "Ketuduke" } +2887.4 "Receding Twintides/Encroaching Twintides" Ability { id: ["8A9D", "8A9F"], source: "Ketuduke" } +2891.4 "Far Tide/Near Tide" Ability { id: ["8AA0", "8A9E"], source: "Ketuduke" } +2903.1 "Hydroblast" Ability { id: "8AA3", source: "Ketuduke" } +2914.8 "Tidal Roar" Ability { id: "8AA5", source: "Ketuduke" } + +2923.8 "Spring Crystals" Ability { id: "8A79", source: "Ketuduke" } window 40,40 forcejump "ketuduke-loop" # ALL ENCOUNTER ABILITIES # 8A77 --sync-- repositioning @@ -315,108 +315,108 @@ hideall "--sync--" # -ii 8B89 8BA2 8CD1 8B93 # Elder Stump will be sealed off -#3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1129:/ window 10000,0 -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1129:/ window 10000,0 +#3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1129" } window 10000,0 +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1129" } window 10000,0 -3007.0 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3008.4 "--sync--" sync / 14:[^:]*:Quaqua:8B94:/ window 10,10 -3013.4 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -3023.5 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -3025.6 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3028.4 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ +3007.0 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3008.4 "--sync--" StartsUsing { id: "8B94", source: "Quaqua" } window 10,10 +3013.4 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +3023.5 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +3025.6 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3028.4 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } -3032.0 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -3042.1 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -3047.0 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ +3032.0 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +3042.1 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +3047.0 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } -3052.3 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +3052.3 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 3058.4 "Arcane Armaments" -3053.4 "--sync--" sync / 14:[^:]*:Quaqua:8B8C:/ window 40,40 jump "quaqua-middle-water" -3053.4 "--sync--" sync / 14:[^:]*:Quaqua:8B90:/ window 40,40 jump "quaqua-middle-poison" +3053.4 "--sync--" StartsUsing { id: "8B8C", source: "Quaqua" } window 40,40 jump "quaqua-middle-water" +3053.4 "--sync--" StartsUsing { id: "8B90", source: "Quaqua" } window 40,40 jump "quaqua-middle-poison" 3153.4 label "quaqua-middle-water" -3153.4 "--sync--" sync / 14:[^:]*:Quaqua:8B8C:/ -3158.4 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B8C:/ -3168.7 "Hammer Landing 1" sync / 1[56]:[^:]*:Quaqua:8B8D:/ -3170.7 "Hammer Landing 2" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ -3172.7 "Hammer Landing 3" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ +3153.4 "--sync--" StartsUsing { id: "8B8C", source: "Quaqua" } +3158.4 "Arcane Armaments" Ability { id: "8B8C", source: "Quaqua" } +3168.7 "Hammer Landing 1" Ability { id: "8B8D", source: "Quaqua" } +3170.7 "Hammer Landing 2" #Ability { id: "8B8E", source: "Quaqua" } +3172.7 "Hammer Landing 3" #Ability { id: "8B8E", source: "Quaqua" } -3180.7 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3187.5 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +3180.7 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3187.5 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -3193.6 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3203.0 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B9F:/ -3210.2 "Elemental Impact" sync / 1[56]:[^:]*:Quaqua:8BA0:/ -3224.3 "Flowing Lance" sync / 1[56]:[^:]*:Quaqua:8BA1:/ duration 12 +3193.6 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3203.0 "Arcane Armaments" Ability { id: "8B9F", source: "Quaqua" } +3210.2 "Elemental Impact" Ability { id: "8BA0", source: "Quaqua" } +3224.3 "Flowing Lance" Ability { id: "8BA1", source: "Quaqua" } duration 12 -3253.1 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +3253.1 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 3259.2 label "quaqua-middle-water-loop" -3259.2 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -3269.2 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -3274.1 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ -3274.1 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ +3259.2 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +3269.2 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +3274.1 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } +3274.1 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } -3279.4 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3288.7 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B9F:/ -3295.9 "Elemental Impact" sync / 1[56]:[^:]*:Quaqua:8BA0:/ -3310.0 "Flowing Lance" sync / 1[56]:[^:]*:Quaqua:8BA1:/ duration 12 +3279.4 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3288.7 "Arcane Armaments" Ability { id: "8B9F", source: "Quaqua" } +3295.9 "Elemental Impact" Ability { id: "8BA0", source: "Quaqua" } +3310.0 "Flowing Lance" Ability { id: "8BA1", source: "Quaqua" } duration 12 -3329.8 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3336.1 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B8C:/ -3346.2 "Hammer Landing 1" sync / 1[56]:[^:]*:Quaqua:8B8D:/ -3348.2 "Hammer Landing 2" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ -3350.2 "Hammer Landing 3" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ +3329.8 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3336.1 "Arcane Armaments" Ability { id: "8B8C", source: "Quaqua" } +3346.2 "Hammer Landing 1" Ability { id: "8B8D", source: "Quaqua" } +3348.2 "Hammer Landing 2" #Ability { id: "8B8E", source: "Quaqua" } +3350.2 "Hammer Landing 3" #Ability { id: "8B8E", source: "Quaqua" } -3358.3 "--sync--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3365.1 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +3358.3 "--sync--" Ability { id: "8B8F", source: "Quaqua" } +3365.1 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -3371.2 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3377.4 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ window 40,40 forcejump "quaqua-middle-water-loop" +3371.2 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3377.4 "Made Magic" Ability { id: "8B94", source: "Quaqua" } window 40,40 forcejump "quaqua-middle-water-loop" 3453.4 label "quaqua-middle-poison" -3453.4 "--sync--" sync / 14:[^:]*:Quaqua:8B90:/ -3458.4 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B90:/ -3460.4 "--jump--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3467.3 "Rout 1" sync / 1[56]:[^:]*:Quaqua:8B91:/ -3469.1 "Rout 2" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -3470.7 "Rout 3" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -3472.3 "Rout 4" #sync / 1[56]:[^:]*:Quaqua:8B92:/ +3453.4 "--sync--" StartsUsing { id: "8B90", source: "Quaqua" } +3458.4 "Arcane Armaments" Ability { id: "8B90", source: "Quaqua" } +3460.4 "--jump--" Ability { id: "8B8F", source: "Quaqua" } +3467.3 "Rout 1" Ability { id: "8B91", source: "Quaqua" } +3469.1 "Rout 2" #Ability { id: "8B92", source: "Quaqua" } +3470.7 "Rout 3" #Ability { id: "8B92", source: "Quaqua" } +3472.3 "Rout 4" #Ability { id: "8B92", source: "Quaqua" } -3479.5 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3486.3 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +3479.5 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3486.3 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -3492.4 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3501.5 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8BA3:/ +3492.4 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3501.5 "Arcane Armaments" Ability { id: "8BA3", source: "Quaqua" } -3525.6 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3532.4 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +3525.6 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3532.4 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -3538.6 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +3538.6 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 3544.7 label "quaqua-middle-poison-loop" -3544.7 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -3554.8 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -3559.7 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ -3559.7 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ +3544.7 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +3554.8 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +3559.7 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } +3559.7 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } -3565.0 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3574.2 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8BA3:/ +3565.0 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +3574.2 "Arcane Armaments" Ability { id: "8BA3", source: "Quaqua" } -3590.3 "--sync--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3596.6 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B90:/ -3598.6 "--jump--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3605.4 "Rout 1" sync / 1[56]:[^:]*:Quaqua:8B91:/ -3607.2 "Rout 2" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -3608.8 "Rout 3" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -3610.5 "Rout 4" #sync / 1[56]:[^:]*:Quaqua:8B92:/ +3590.3 "--sync--" Ability { id: "8B8F", source: "Quaqua" } +3596.6 "Arcane Armaments" Ability { id: "8B90", source: "Quaqua" } +3598.6 "--jump--" Ability { id: "8B8F", source: "Quaqua" } +3605.4 "Rout 1" Ability { id: "8B91", source: "Quaqua" } +3607.2 "Rout 2" #Ability { id: "8B92", source: "Quaqua" } +3608.8 "Rout 3" #Ability { id: "8B92", source: "Quaqua" } +3610.5 "Rout 4" #Ability { id: "8B92", source: "Quaqua" } -3617.7 "--sync--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3624.4 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +3617.7 "--sync--" Ability { id: "8B8F", source: "Quaqua" } +3624.4 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -3630.6 "--sync--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -3636.7 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ window 40,40 forcejump "quaqua-middle-poison-loop" +3630.6 "--sync--" Ability { id: "8B8F", source: "Quaqua" } +3636.7 "Made Magic" Ability { id: "8B94", source: "Quaqua" } window 40,40 forcejump "quaqua-middle-poison-loop" # ALL ENCOUNTER ABILITIES (middle path only) # 8B9F Arcane Armaments self-targeted cast before water spear Arcane Armaments @@ -435,134 +435,134 @@ hideall "--sync--" # -ii 8878 8879 8873 8CDD # The Origin Spring will be sealed off -#4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112C:/ window 10000,0 -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112C:/ window 10000,0 -4011.2 "--sync--" sync / 14:[^:]*:Lala:887F:/ window 10,10 -4016.2 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ +#4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112C" } window 10000,0 +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112C" } window 10000,0 +4011.2 "--sync--" StartsUsing { id: "887F", source: "Lala" } window 10,10 +4016.2 "Inferno Theorem" Ability { id: "887F", source: "Lala" } -4019.3 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ -4027.4 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ -4040.5 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8875:/ -4062.6 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ +4019.3 "--middle--" Ability { id: "8874", source: "Lala" } +4027.4 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } +4040.5 "Arcane Plot" Ability { id: "8875", source: "Lala" } +4062.6 "Inferno Theorem" Ability { id: "887F", source: "Lala" } -4069.7 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ -4077.8 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ -4088.9 "Analysis" sync / 1[56]:[^:]*:Lala:887B:/ -4102.7 "Targeted Light" sync / 1[56]:[^:]*:Lala:8CDC:/ +4069.7 "--middle--" Ability { id: "8874", source: "Lala" } +4077.8 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } +4088.9 "Analysis" Ability { id: "887B", source: "Lala" } +4102.7 "Targeted Light" Ability { id: "8CDC", source: "Lala" } -4111.0 "--sync--" sync / 14:[^:]*:Lala:8882:/ window 40,40 jump "lala-05" -4114.0 "Faunal Figure?" #sync / 1[56]:[^:]*:Lala:8882:/ +4111.0 "--sync--" StartsUsing { id: "8882", source: "Lala" } window 40,40 jump "lala-05" +4114.0 "Faunal Figure?" #Ability { id: "8882", source: "Lala" } -4111.0 "--sync--" sync / 14:[^:]*:Lala:8880:/ window 40,40 jump "lala-06" -4114.0 "Floral Figure?" #sync / 1[56]:[^:]*:Lala:8880:/ +4111.0 "--sync--" StartsUsing { id: "8880", source: "Lala" } window 40,40 jump "lala-06" +4114.0 "Floral Figure?" #Ability { id: "8880", source: "Lala" } -4111.0 "--sync--" sync / 14:[^:]*:Lala:8884:/ window 40,40 jump "lala-07" -4114.0 "Constructive Figure?" #sync / 1[56]:[^:]*:Lala:8884:/ +4111.0 "--sync--" StartsUsing { id: "8884", source: "Lala" } window 40,40 jump "lala-07" +4114.0 "Constructive Figure?" #Ability { id: "8884", source: "Lala" } -4111.0 "--sync--" sync / 14:[^:]*:Lala:8D2C:/ window 40,40 jump "lala-08" -4114.0 "Volcanic Coordinates (cast)?" #sync / 1[56]:[^:]*:Lala:8D2C:/ +4111.0 "--sync--" StartsUsing { id: "8D2C", source: "Lala" } window 40,40 jump "lala-08" +4114.0 "Volcanic Coordinates (cast)?" #Ability { id: "8D2C", source: "Lala" } 4211.0 label "lala-05" -4211.0 "--sync--" sync / 14:[^:]*:Lala:8882:/ -4214.0 "Faunal Figure" sync / 1[56]:[^:]*:Lala:8882:/ -4227.3 "Flail Smash" sync / 1[56]:[^:]*:Rodiaki:8883:/ -4235.2 "Strategic Strike" sync / 1[56]:[^:]*:Lala:887E:/ +4211.0 "--sync--" StartsUsing { id: "8882", source: "Lala" } +4214.0 "Faunal Figure" Ability { id: "8882", source: "Lala" } +4227.3 "Flail Smash" Ability { id: "8883", source: "Rodiaki" } +4235.2 "Strategic Strike" Ability { id: "887E", source: "Lala" } -4243.4 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ +4243.4 "--middle--" Ability { id: "8874", source: "Lala" } 4251.7 label "lala-05-loop" -4251.7 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ -4260.8 "Analysis" sync / 1[56]:[^:]*:Lala:887B:/ -4272.5 "Targeted Light" sync / 1[56]:[^:]*:Lala:8CDC:/ +4251.7 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } +4260.8 "Analysis" Ability { id: "887B", source: "Lala" } +4272.5 "Targeted Light" Ability { id: "8CDC", source: "Lala" } -4283.6 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8876:/ -4299.7 "Calculated Trajectory" sync / 1[56]:[^:]*:Lala:887D:/ -4314.8 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ -4324.9 "Faunal Figure" sync / 1[56]:[^:]*:Lala:8882:/ -4332.0 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8875:/ -4350.7 "Flail Smash" sync / 1[56]:[^:]*:Rodiaki:8A6C:/ -4353.1 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ -4363.2 "Strategic Strike" sync / 1[56]:[^:]*:Lala:887E:/ +4283.6 "Arcane Plot" Ability { id: "8876", source: "Lala" } +4299.7 "Calculated Trajectory" Ability { id: "887D", source: "Lala" } +4314.8 "Inferno Theorem" Ability { id: "887F", source: "Lala" } +4324.9 "Faunal Figure" Ability { id: "8882", source: "Lala" } +4332.0 "Arcane Plot" Ability { id: "8875", source: "Lala" } +4350.7 "Flail Smash" Ability { id: "8A6C", source: "Rodiaki" } +4353.1 "Inferno Theorem" Ability { id: "887F", source: "Lala" } +4363.2 "Strategic Strike" Ability { id: "887E", source: "Lala" } -4371.4 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ -4379.7 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ window 40,40 forcejump "lala-05-loop" +4371.4 "--middle--" Ability { id: "8874", source: "Lala" } +4379.7 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } window 40,40 forcejump "lala-05-loop" 4411.0 label "lala-06" -4411.0 "--sync--" sync / 14:[^:]*:Lala:8880:/ -4414.0 "Floral Figure" sync / 1[56]:[^:]*:Lala:8880:/ -4427.8 "Rolling Spout" sync / 1[56]:[^:]*:Kapokapo:8881:/ -4435.2 "Strategic Strike" sync / 1[56]:[^:]*:Lala:887E:/ +4411.0 "--sync--" StartsUsing { id: "8880", source: "Lala" } +4414.0 "Floral Figure" Ability { id: "8880", source: "Lala" } +4427.8 "Rolling Spout" Ability { id: "8881", source: "Kapokapo" } +4435.2 "Strategic Strike" Ability { id: "887E", source: "Lala" } -4443.4 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ +4443.4 "--middle--" Ability { id: "8874", source: "Lala" } 4451.7 label "lala-06-loop" -4451.7 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ -4460.8 "Analysis" sync / 1[56]:[^:]*:Lala:887B:/ -4472.5 "Targeted Light" sync / 1[56]:[^:]*:Lala:8CDC:/ +4451.7 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } +4460.8 "Analysis" Ability { id: "887B", source: "Lala" } +4472.5 "Targeted Light" Ability { id: "8CDC", source: "Lala" } -4483.6 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8876:/ -4499.7 "Calculated Trajectory" sync / 1[56]:[^:]*:Lala:887D:/ -4514.8 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ -4525.0 "Floral Figure" sync / 1[56]:[^:]*:Lala:8880:/ -4532.1 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8875:/ -4553.8 "Rolling Spout" sync / 1[56]:[^:]*:Kapokapo:8A6B:/ -4558.4 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ -4568.5 "Strategic Strike" sync / 1[56]:[^:]*:Lala:887E:/ +4483.6 "Arcane Plot" Ability { id: "8876", source: "Lala" } +4499.7 "Calculated Trajectory" Ability { id: "887D", source: "Lala" } +4514.8 "Inferno Theorem" Ability { id: "887F", source: "Lala" } +4525.0 "Floral Figure" Ability { id: "8880", source: "Lala" } +4532.1 "Arcane Plot" Ability { id: "8875", source: "Lala" } +4553.8 "Rolling Spout" Ability { id: "8A6B", source: "Kapokapo" } +4558.4 "Inferno Theorem" Ability { id: "887F", source: "Lala" } +4568.5 "Strategic Strike" Ability { id: "887E", source: "Lala" } -4576.7 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ -4584.9 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ window 40,40 forcejump "lala-06-loop" +4576.7 "--middle--" Ability { id: "8874", source: "Lala" } +4584.9 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } window 40,40 forcejump "lala-06-loop" 4611.0 label "lala-07" -4611.0 "--sync--" sync / 14:[^:]*:Lala:8884:/ -4614.0 "Constructive Figure" sync / 1[56]:[^:]*:Lala:8884:/ -4629.1 "Aero II" sync / 1[56]:[^:]*:Aloalo Golem:8885:/ -4634.9 "Strategic Strike" sync / 1[56]:[^:]*:Lala:887E:/ +4611.0 "--sync--" StartsUsing { id: "8884", source: "Lala" } +4614.0 "Constructive Figure" Ability { id: "8884", source: "Lala" } +4629.1 "Aero II" Ability { id: "8885", source: "Aloalo Golem" } +4634.9 "Strategic Strike" Ability { id: "887E", source: "Lala" } -4643.1 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ +4643.1 "--middle--" Ability { id: "8874", source: "Lala" } 4651.3 label "lala-07-loop" -4651.3 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ -4660.4 "Analysis" sync / 1[56]:[^:]*:Lala:887B:/ -4672.1 "Targeted Light" sync / 1[56]:[^:]*:Lala:8CDC:/ +4651.3 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } +4660.4 "Analysis" Ability { id: "887B", source: "Lala" } +4672.1 "Targeted Light" Ability { id: "8CDC", source: "Lala" } -4683.2 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8876:/ -4699.3 "Calculated Trajectory" sync / 1[56]:[^:]*:Lala:887D:/ -4714.4 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ -4724.6 "Constructive Figure" sync / 1[56]:[^:]*:Lala:8884:/ -4731.5 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8875:/ -4750.5 "Aero II" sync / 1[56]:[^:]*:Aloalo Golem:8A6D:/ -4752.6 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ -4762.7 "Strategic Strike" sync / 1[56]:[^:]*:Lala:887E:/ +4683.2 "Arcane Plot" Ability { id: "8876", source: "Lala" } +4699.3 "Calculated Trajectory" Ability { id: "887D", source: "Lala" } +4714.4 "Inferno Theorem" Ability { id: "887F", source: "Lala" } +4724.6 "Constructive Figure" Ability { id: "8884", source: "Lala" } +4731.5 "Arcane Plot" Ability { id: "8875", source: "Lala" } +4750.5 "Aero II" Ability { id: "8A6D", source: "Aloalo Golem" } +4752.6 "Inferno Theorem" Ability { id: "887F", source: "Lala" } +4762.7 "Strategic Strike" Ability { id: "887E", source: "Lala" } -4770.9 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ -4779.1 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ window 40,40 forcejump "lala-07-loop" +4770.9 "--middle--" Ability { id: "8874", source: "Lala" } +4779.1 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } window 40,40 forcejump "lala-07-loop" 4811.0 label "lala-08" -4811.0 "--sync--" sync / 14:[^:]*:Lala:8D2C:/ -4814.0 "Volcanic Coordinates (cast)" sync / 1[56]:[^:]*:Lala:8D2C:/ -4824.1 "Volcanic Coordinates 1" sync / 1[56]:[^:]*:Lala:8D2D:/ -4831.1 "Volcanic Coordinates 2" sync / 1[56]:[^:]*:Lala:8D2D:/ -4836.1 "Strategic Strike" sync / 1[56]:[^:]*:Lala:887E:/ +4811.0 "--sync--" StartsUsing { id: "8D2C", source: "Lala" } +4814.0 "Volcanic Coordinates (cast)" Ability { id: "8D2C", source: "Lala" } +4824.1 "Volcanic Coordinates 1" Ability { id: "8D2D", source: "Lala" } +4831.1 "Volcanic Coordinates 2" Ability { id: "8D2D", source: "Lala" } +4836.1 "Strategic Strike" Ability { id: "887E", source: "Lala" } -4844.3 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ +4844.3 "--middle--" Ability { id: "8874", source: "Lala" } 4852.4 label "lala-08-loop" -4852.4 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ -4861.5 "Analysis" sync / 1[56]:[^:]*:Lala:887B:/ -4873.2 "Targeted Light" sync / 1[56]:[^:]*:Lala:8CDC:/ +4852.4 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } +4861.5 "Analysis" Ability { id: "887B", source: "Lala" } +4873.2 "Targeted Light" Ability { id: "8CDC", source: "Lala" } -4884.3 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8876:/ -4900.4 "Calculated Trajectory" sync / 1[56]:[^:]*:Lala:887D:/ -4915.5 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ -4925.6 "Volcanic Coordinates (cast)" sync / 1[56]:[^:]*:Lala:8D2C:/ -4933.7 "Arcane Plot" sync / 1[56]:[^:]*:Lala:8875:/ -4935.7 "Volcanic Coordinates 1" sync / 1[56]:[^:]*:Lala:8D2D:/ -4942.7 "Volcanic Coordinates 2" sync / 1[56]:[^:]*:Lala:8D2D:/ -4954.9 "Inferno Theorem" sync / 1[56]:[^:]*:Lala:887F:/ -4967.0 "Strategic Strike" sync / 1[56]:[^:]*:Lala:887E:/ +4884.3 "Arcane Plot" Ability { id: "8876", source: "Lala" } +4900.4 "Calculated Trajectory" Ability { id: "887D", source: "Lala" } +4915.5 "Inferno Theorem" Ability { id: "887F", source: "Lala" } +4925.6 "Volcanic Coordinates (cast)" Ability { id: "8D2C", source: "Lala" } +4933.7 "Arcane Plot" Ability { id: "8875", source: "Lala" } +4935.7 "Volcanic Coordinates 1" Ability { id: "8D2D", source: "Lala" } +4942.7 "Volcanic Coordinates 2" Ability { id: "8D2D", source: "Lala" } +4954.9 "Inferno Theorem" Ability { id: "887F", source: "Lala" } +4967.0 "Strategic Strike" Ability { id: "887E", source: "Lala" } -4975.2 "--middle--" sync / 1[56]:[^:]*:Lala:8874:/ -4983.5 "Arcane Blight" sync / 1[56]:[^:]*:Lala:(886F|8870|8871|8872):/ window 40,40 forcejump "lala-08-loop" +4975.2 "--middle--" Ability { id: "8874", source: "Lala" } +4983.5 "Arcane Blight" Ability { id: ["886F", "8870", "8871", "8872"], source: "Lala" } window 40,40 forcejump "lala-08-loop" # ALL ENCOUNTER ABILITIES @@ -604,116 +604,116 @@ hideall "--sync--" # -ii 8B89 8B93 # Ancient Forum will be sealed off -#5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112A:/ window 10000,0 -5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112A:/ window 10000,0 -5007.8 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5009.1 "--sync--" sync / 14:[^:]*:Quaqua:8B94:/ window 10,10 -5014.1 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -5024.2 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -5026.3 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5029.0 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ - -5032.8 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -5042.9 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -5047.8 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ - -5053.1 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +#5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112A" } window 10000,0 +5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112A" } window 10000,0 +5007.8 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5009.1 "--sync--" StartsUsing { id: "8B94", source: "Quaqua" } window 10,10 +5014.1 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +5024.2 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +5026.3 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5029.0 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } + +5032.8 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +5042.9 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +5047.8 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } + +5053.1 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 5059.3 "Arcane Armaments" -5054.3 "--sync--" sync / 14:[^:]*:Quaqua:8B8C:/ window 40,40 jump "quaqua-right-fixed" -5054.3 "--sync--" sync / 14:[^:]*:Quaqua:8B90:/ window 40,40 jump "quaqua-right-untouched" +5054.3 "--sync--" StartsUsing { id: "8B8C", source: "Quaqua" } window 40,40 jump "quaqua-right-fixed" +5054.3 "--sync--" StartsUsing { id: "8B90", source: "Quaqua" } window 40,40 jump "quaqua-right-untouched" 5154.3 label "quaqua-right-fixed" -5154.3 "--sync--" sync / 14:[^:]*:Quaqua:8B8C:/ -5159.3 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B8C:/ -5169.4 "Hammer Landing 1" sync / 1[56]:[^:]*:Quaqua:8B8D:/ -5171.4 "Hammer Landing 2" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ -5173.4 "Hammer Landing 3" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ - -5181.5 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5188.3 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ - -5194.4 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5200.8 "Arcane Pursuit" sync / 1[56]:[^:]*:Quaqua:8BA4:/ -5214.1 "--cleanse--" sync / 1[56]:[^:]*:[^:]*:8BAD:/ -5216.8 "--cleanse--" sync / 1[56]:[^:]*:[^:]*:8BAD:/ - -5214.9 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5221.1 "Arcane Pursuit" sync / 1[56]:[^:]*:Quaqua:8BA4:/ -5237.1 "--cleanse--" sync / 1[56]:[^:]*:[^:]*:8BA6:/ -5244.1 "--cleanse--" sync / 1[56]:[^:]*:[^:]*:8BA6:/ - -5248.2 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +5154.3 "--sync--" StartsUsing { id: "8B8C", source: "Quaqua" } +5159.3 "Arcane Armaments" Ability { id: "8B8C", source: "Quaqua" } +5169.4 "Hammer Landing 1" Ability { id: "8B8D", source: "Quaqua" } +5171.4 "Hammer Landing 2" #Ability { id: "8B8E", source: "Quaqua" } +5173.4 "Hammer Landing 3" #Ability { id: "8B8E", source: "Quaqua" } + +5181.5 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5188.3 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } + +5194.4 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5200.8 "Arcane Pursuit" Ability { id: "8BA4", source: "Quaqua" } +5214.1 "--cleanse--" Ability { id: "8BAD" } +5216.8 "--cleanse--" Ability { id: "8BAD" } + +5214.9 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5221.1 "Arcane Pursuit" Ability { id: "8BA4", source: "Quaqua" } +5237.1 "--cleanse--" Ability { id: "8BA6" } +5244.1 "--cleanse--" Ability { id: "8BA6" } + +5248.2 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 5254.6 label "quaqua-right-fixed-loop" -5254.6 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -5264.7 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -5269.6 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ -5269.6 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ +5254.6 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +5264.7 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +5269.6 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } +5269.6 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } -5274.9 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5281.1 "Arcane Pursuit" sync / 1[56]:[^:]*:Quaqua:8BA4:/ -5297.1 "--cleanse--" sync / 1[56]:[^:]*:[^:]*:8BA6:/ -5304.1 "--cleanse--" sync / 1[56]:[^:]*:[^:]*:8BA6:/ +5274.9 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5281.1 "Arcane Pursuit" Ability { id: "8BA4", source: "Quaqua" } +5297.1 "--cleanse--" Ability { id: "8BA6" } +5304.1 "--cleanse--" Ability { id: "8BA6" } -5297.2 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5303.3 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B8C:/ -5313.6 "Hammer Landing 1" sync / 1[56]:[^:]*:Quaqua:8B8D:/ -5315.7 "Hammer Landing 2" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ -5317.7 "Hammer Landing 3" #sync / 1[56]:[^:]*:Quaqua:8B8E:/ +5297.2 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5303.3 "Arcane Armaments" Ability { id: "8B8C", source: "Quaqua" } +5313.6 "Hammer Landing 1" Ability { id: "8B8D", source: "Quaqua" } +5315.7 "Hammer Landing 2" #Ability { id: "8B8E", source: "Quaqua" } +5317.7 "Hammer Landing 3" #Ability { id: "8B8E", source: "Quaqua" } -5325.8 "--sync--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5332.6 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ +5325.8 "--sync--" Ability { id: "8B8F", source: "Quaqua" } +5332.6 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } -5338.7 "--sync--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5345.0 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ window 40,40 forcejump "quaqua-right-fixed-loop" +5338.7 "--sync--" Ability { id: "8B8F", source: "Quaqua" } +5345.0 "Made Magic" Ability { id: "8B94", source: "Quaqua" } window 40,40 forcejump "quaqua-right-fixed-loop" 5454.3 label "quaqua-right-untouched" -5454.3 "--sync--" sync / 14:[^:]*:Quaqua:8B90:/ -5459.3 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B90:/ -5461.3 "--jump--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5468.0 "Rout 1" sync / 1[56]:[^:]*:Quaqua:8B91:/ -5469.7 "Rout 2" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -5471.3 "Rout 3" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -5473.1 "Rout 4" #sync / 1[56]:[^:]*:Quaqua:8B92:/ - -5480.2 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5487.0 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ - -5504.2 "Arcane Intervention 1" sync / 1[56]:[^:]*:Quaqua:8BAE:/ -5513.2 "Arcane Intervention 2" sync / 1[56]:[^:]*:Quaqua:8BAE:/ -5522.2 "Arcane Intervention 3" sync / 1[56]:[^:]*:Quaqua:8BAE:/ -5525.2 "Arcane Intervention 4" sync / 1[56]:[^:]*:Quaqua:8BAE:/ - -5529.2 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5535.9 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ - -5542.1 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ +5454.3 "--sync--" StartsUsing { id: "8B90", source: "Quaqua" } +5459.3 "Arcane Armaments" Ability { id: "8B90", source: "Quaqua" } +5461.3 "--jump--" Ability { id: "8B8F", source: "Quaqua" } +5468.0 "Rout 1" Ability { id: "8B91", source: "Quaqua" } +5469.7 "Rout 2" #Ability { id: "8B92", source: "Quaqua" } +5471.3 "Rout 3" #Ability { id: "8B92", source: "Quaqua" } +5473.1 "Rout 4" #Ability { id: "8B92", source: "Quaqua" } + +5480.2 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5487.0 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } + +5504.2 "Arcane Intervention 1" Ability { id: "8BAE", source: "Quaqua" } +5513.2 "Arcane Intervention 2" Ability { id: "8BAE", source: "Quaqua" } +5522.2 "Arcane Intervention 3" Ability { id: "8BAE", source: "Quaqua" } +5525.2 "Arcane Intervention 4" Ability { id: "8BAE", source: "Quaqua" } + +5529.2 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5535.9 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } + +5542.1 "--middle--" Ability { id: "8B8F", source: "Quaqua" } 5548.3 label "quaqua-right-untouched-loop" -5548.3 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ -5558.4 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B88:/ -5563.3 "Ringing Quoits" sync / 1[56]:[^:]*:Aetheric Charge:8B8B:/ -5563.3 "Ravaging Axe" sync / 1[56]:[^:]*:Aetheric Charge:8B8A:/ - -5575.6 "Arcane Intervention 1" sync / 1[56]:[^:]*:Quaqua:8BAE:/ -5584.6 "Arcane Intervention 2" sync / 1[56]:[^:]*:Quaqua:8BAE:/ -5593.6 "Arcane Intervention 3" sync / 1[56]:[^:]*:Quaqua:8BAE:/ -5596.6 "Arcane Intervention 4" sync / 1[56]:[^:]*:Quaqua:8BAE:/ - -5596.6 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5602.8 "Arcane Armaments" sync / 1[56]:[^:]*:Quaqua:8B90:/ -5604.9 "--jump--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5611.7 "Rout 1" sync / 1[56]:[^:]*:Quaqua:8B91:/ -5613.5 "Rout 2" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -5615.1 "Rout 3" #sync / 1[56]:[^:]*:Quaqua:8B92:/ -5616.7 "Rout 4" #sync / 1[56]:[^:]*:Quaqua:8B92:/ - -5619.8 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5626.5 "Violet Storm" sync / 1[56]:[^:]*:Quaqua:8B95:/ - -5633.6 "--middle--" sync / 1[56]:[^:]*:Quaqua:8B8F:/ -5639.7 "Made Magic" sync / 1[56]:[^:]*:Quaqua:8B94:/ window 40,40 forcejump "quaqua-right-untouched-loop" +5548.3 "Made Magic" Ability { id: "8B94", source: "Quaqua" } +5558.4 "Arcane Armaments" Ability { id: "8B88", source: "Quaqua" } +5563.3 "Ringing Quoits" Ability { id: "8B8B", source: "Aetheric Charge" } +5563.3 "Ravaging Axe" Ability { id: "8B8A", source: "Aetheric Charge" } + +5575.6 "Arcane Intervention 1" Ability { id: "8BAE", source: "Quaqua" } +5584.6 "Arcane Intervention 2" Ability { id: "8BAE", source: "Quaqua" } +5593.6 "Arcane Intervention 3" Ability { id: "8BAE", source: "Quaqua" } +5596.6 "Arcane Intervention 4" Ability { id: "8BAE", source: "Quaqua" } + +5596.6 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5602.8 "Arcane Armaments" Ability { id: "8B90", source: "Quaqua" } +5604.9 "--jump--" Ability { id: "8B8F", source: "Quaqua" } +5611.7 "Rout 1" Ability { id: "8B91", source: "Quaqua" } +5613.5 "Rout 2" #Ability { id: "8B92", source: "Quaqua" } +5615.1 "Rout 3" #Ability { id: "8B92", source: "Quaqua" } +5616.7 "Rout 4" #Ability { id: "8B92", source: "Quaqua" } + +5619.8 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5626.5 "Violet Storm" Ability { id: "8B95", source: "Quaqua" } + +5633.6 "--middle--" Ability { id: "8B8F", source: "Quaqua" } +5639.7 "Made Magic" Ability { id: "8B94", source: "Quaqua" } window 40,40 forcejump "quaqua-right-untouched-loop" # ALL ENCOUNTER ABILITIES (right path only) # 8BA4 Arcane Pursuit self-targeted cast to summon Aetheric Charge purple orb(s) @@ -732,147 +732,147 @@ hideall "--sync--" # -ii 8A04 8932 892C 8986 8925 8926 8981 8935 89F6 89F7 8CEB 89FB 8941 8942 8943 # Slumbering Canopy will be sealed off -#6000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112D:/ window 10000,0 -6000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112D:/ window 10000,0 +#6000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112D" } window 10000,0 +6000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112D" } window 10000,0 # Can be triggered by players earlier -6004.0 "Hidden Mine" #sync / 1[56]:[^:]*:Mine:892D:/ +6004.0 "Hidden Mine" #Ability { id: "892D", source: "Mine" } -6022.6 "--sync--" sync / 14:[^:]*:Statice:892E:/ window 30,30 -6026.6 "Surprise Balloon" sync / 1[56]:[^:]*:Statice:892E:/ -6034.7 "Surprise Needle" sync / 1[56]:[^:]*:Needle:8930:/ -6035.6 "Pop" sync / 1[56]:[^:]*:Statice:892F:/ -6036.7 "4-tonze Weight" sync / 1[56]:[^:]*:Statice:8931:/ +6022.6 "--sync--" StartsUsing { id: "892E", source: "Statice" } window 30,30 +6026.6 "Surprise Balloon" Ability { id: "892E", source: "Statice" } +6034.7 "Surprise Needle" Ability { id: "8930", source: "Needle" } +6035.6 "Pop" Ability { id: "892F", source: "Statice" } +6036.7 "4-tonze Weight" Ability { id: "8931", source: "Statice" } -6043.9 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6049.6 "Trick Reload" sync / 1[56]:[^:]*:Statice:892A:/ -6063.5 "Trigger Happy" sync / 1[56]:[^:]*:Statice:892B:/ -6072.6 "Trick Reload" sync / 1[56]:[^:]*:Statice:892A:/ -6086.5 "Trigger Happy" sync / 1[56]:[^:]*:Statice:892B:/ +6043.9 "--middle--" Ability { id: "8927", source: "Statice" } +6049.6 "Trick Reload" Ability { id: "892A", source: "Statice" } +6063.5 "Trigger Happy" Ability { id: "892B", source: "Statice" } +6072.6 "Trick Reload" Ability { id: "892A", source: "Statice" } +6086.5 "Trigger Happy" Ability { id: "892B", source: "Statice" } -6095.6 "Pinwheel" sync / 1[56]:[^:]*:Statice:8933:/ -6107.3 "Fire Spread" sync / 1[56]:[^:]*:Statice:8934:/ duration 10 -6116.9 "Aero IV" sync / 1[56]:[^:]*:Statice:8929:/ +6095.6 "Pinwheel" Ability { id: "8933", source: "Statice" } +6107.3 "Fire Spread" Ability { id: "8934", source: "Statice" } duration 10 +6116.9 "Aero IV" Ability { id: "8929", source: "Statice" } -6124.1 "--sync--" sync / 14:[^:]*:Statice:8945:/ window 40,40 jump "statice-09" -6128.1 "Whoopee Cushion?" #sync / 1[56]:[^:]*:Statice:8945:/ +6124.1 "--sync--" StartsUsing { id: "8945", source: "Statice" } window 40,40 jump "statice-09" +6128.1 "Whoopee Cushion?" #Ability { id: "8945", source: "Statice" } -6124.1 "--sync--" sync / 14:[^:]*:Statice:893E:/ window 40,40 jump "statice-10" -6128.1 "Present Box?" #sync / 1[56]:[^:]*:Statice:893E:/ +6124.1 "--sync--" StartsUsing { id: "893E", source: "Statice" } window 40,40 jump "statice-10" +6128.1 "Present Box?" #Ability { id: "893E", source: "Statice" } -6124.1 "--sync--" sync / 14:[^:]*:Statice:8936:/ window 40,40 jump "statice-11" -6128.1 "Jack-in-the-box?" #sync / 1[56]:[^:]*:Statice:8936:/ +6124.1 "--sync--" StartsUsing { id: "8936", source: "Statice" } window 40,40 jump "statice-11" +6128.1 "Jack-in-the-box?" #Ability { id: "8936", source: "Statice" } 6224.1 label "statice-09" -6224.1 "--sync--" sync / 14:[^:]*:Statice:8945:/ -6228.1 "Whoopee Cushion" sync / 1[56]:[^:]*:Statice:8945:/ -6246.2 "Fair Flight" sync / 1[56]:[^:]*:Statice:8946:/ +6224.1 "--sync--" StartsUsing { id: "8945", source: "Statice" } +6228.1 "Whoopee Cushion" Ability { id: "8945", source: "Statice" } +6246.2 "Fair Flight" Ability { id: "8946", source: "Statice" } -6262.5 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6267.1 "Dartboard" sync / 1[56]:[^:]*:Statice:8938:/ -6275.2 "Thunderstorm 1" sync / 1[56]:[^:]*:Statice:8939:/ -6279.2 "Thunderstorm 2" sync / 1[56]:[^:]*:Statice:8939:/ -6283.2 "Thunderstorm 3" sync / 1[56]:[^:]*:Statice:8939:/ -6300.4 "Meteor/Sledgemagic/Hunks of Junk/Happy Surprise" sync / 1[56]:[^:]*:Statice:(893A|893B|893C|893D):/ +6262.5 "--middle--" Ability { id: "8927", source: "Statice" } +6267.1 "Dartboard" Ability { id: "8938", source: "Statice" } +6275.2 "Thunderstorm 1" Ability { id: "8939", source: "Statice" } +6279.2 "Thunderstorm 2" Ability { id: "8939", source: "Statice" } +6283.2 "Thunderstorm 3" Ability { id: "8939", source: "Statice" } +6300.4 "Meteor/Sledgemagic/Hunks of Junk/Happy Surprise" Ability { id: ["893A", "893B", "893C", "893D"], source: "Statice" } 6310.5 label "statice-09-loop" -6310.5 "Pinwheel" sync / 1[56]:[^:]*:Statice:8933:/ -6313.6 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6319.2 "Trick Reload" sync / 1[56]:[^:]*:Statice:892A:/ -6330.1 "Fire Spread" sync / 1[56]:[^:]*:Statice:8934:/ duration 10 -6333.1 "Trigger Happy" sync / 1[56]:[^:]*:Statice:892B:/ -6343.2 "Aero IV" sync / 1[56]:[^:]*:Statice:8929:/ +6310.5 "Pinwheel" Ability { id: "8933", source: "Statice" } +6313.6 "--middle--" Ability { id: "8927", source: "Statice" } +6319.2 "Trick Reload" Ability { id: "892A", source: "Statice" } +6330.1 "Fire Spread" Ability { id: "8934", source: "Statice" } duration 10 +6333.1 "Trigger Happy" Ability { id: "892B", source: "Statice" } +6343.2 "Aero IV" Ability { id: "8929", source: "Statice" } -6350.4 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6355.8 "Surprise Balloon" sync / 1[56]:[^:]*:Statice:892E:/ -6362.9 "Trick Reload" sync / 1[56]:[^:]*:Statice:892A:/ -6374.5 "Surprise Needle" sync / 1[56]:[^:]*:Needle:8930:/ -6375.4 "Pop" sync / 1[56]:[^:]*:Statice:892F:/ -6377.0 "Trigger Happy" sync / 1[56]:[^:]*:Statice:892B:/ +6350.4 "--middle--" Ability { id: "8927", source: "Statice" } +6355.8 "Surprise Balloon" Ability { id: "892E", source: "Statice" } +6362.9 "Trick Reload" Ability { id: "892A", source: "Statice" } +6374.5 "Surprise Needle" Ability { id: "8930", source: "Needle" } +6375.4 "Pop" Ability { id: "892F", source: "Statice" } +6377.0 "Trigger Happy" Ability { id: "892B", source: "Statice" } -6388.2 "Whoopee Cushion" sync / 1[56]:[^:]*:Statice:8945:/ -6395.2 "Shocking Abandon" sync / 1[56]:[^:]*:Statice:8928:/ -6406.3 "Fair Flight" sync / 1[56]:[^:]*:Statice:8946:/ +6388.2 "Whoopee Cushion" Ability { id: "8945", source: "Statice" } +6395.2 "Shocking Abandon" Ability { id: "8928", source: "Statice" } +6406.3 "Fair Flight" Ability { id: "8946", source: "Statice" } -6419.6 "Pinwheel" sync / 1[56]:[^:]*:Statice:8933:/ window 40,40 forcejump "statice-09-loop" +6419.6 "Pinwheel" Ability { id: "8933", source: "Statice" } window 40,40 forcejump "statice-09-loop" 6424.1 label "statice-10" -6424.1 "--sync--" sync / 14:[^:]*:Statice:893E:/ -6428.1 "Present Box" sync / 1[56]:[^:]*:Statice:893E:/ -6436.8 "Faerie Ring 1" sync / 1[56]:[^:]*:Surprising Staff:893F:/ -6437.4 "Faerie Road 1" #sync / 1[56]:[^:]*:Surprising Staff:8940:/ -6442.5 "Faerie Ring 2" sync / 1[56]:[^:]*:Surprising Staff:893F:/ -6442.9 "Faerie Road 2" #sync / 1[56]:[^:]*:Surprising Staff:8940:/ -6447.9 "Faerie Ring 3" sync / 1[56]:[^:]*:Surprising Staff:893F:/ -6448.1 "Faerie Road 3" #sync / 1[56]:[^:]*:Surprising Staff:8940:/ - -6457.1 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6461.7 "Dartboard" sync / 1[56]:[^:]*:Statice:8938:/ -6469.8 "Thunderstorm 1" sync / 1[56]:[^:]*:Statice:8939:/ -6473.8 "Thunderstorm 2" sync / 1[56]:[^:]*:Statice:8939:/ -6477.8 "Thunderstorm 3" sync / 1[56]:[^:]*:Statice:8939:/ -6495.0 "Meteor/Sledgemagic/Hunks of Junk/Happy Surprise" sync / 1[56]:[^:]*:Statice:(893A|893B|893C|893D):/ +6424.1 "--sync--" StartsUsing { id: "893E", source: "Statice" } +6428.1 "Present Box" Ability { id: "893E", source: "Statice" } +6436.8 "Faerie Ring 1" Ability { id: "893F", source: "Surprising Staff" } +6437.4 "Faerie Road 1" #Ability { id: "8940", source: "Surprising Staff" } +6442.5 "Faerie Ring 2" Ability { id: "893F", source: "Surprising Staff" } +6442.9 "Faerie Road 2" #Ability { id: "8940", source: "Surprising Staff" } +6447.9 "Faerie Ring 3" Ability { id: "893F", source: "Surprising Staff" } +6448.1 "Faerie Road 3" #Ability { id: "8940", source: "Surprising Staff" } + +6457.1 "--middle--" Ability { id: "8927", source: "Statice" } +6461.7 "Dartboard" Ability { id: "8938", source: "Statice" } +6469.8 "Thunderstorm 1" Ability { id: "8939", source: "Statice" } +6473.8 "Thunderstorm 2" Ability { id: "8939", source: "Statice" } +6477.8 "Thunderstorm 3" Ability { id: "8939", source: "Statice" } +6495.0 "Meteor/Sledgemagic/Hunks of Junk/Happy Surprise" Ability { id: ["893A", "893B", "893C", "893D"], source: "Statice" } 6508.1 label "statice-10-loop" -6508.1 "Pinwheel" sync / 1[56]:[^:]*:Statice:8933:/ -6511.2 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6516.5 "Trick Reload" sync / 1[56]:[^:]*:Statice:892A:/ -6527.5 "Fire Spread" sync / 1[56]:[^:]*:Statice:8934:/ -6530.4 "Trigger Happy" sync / 1[56]:[^:]*:Statice:892B:/ -6540.5 "Aero IV" sync / 1[56]:[^:]*:Statice:8929:/ - -6547.7 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6553.4 "Surprise Balloon" sync / 1[56]:[^:]*:Statice:892E:/ -6560.5 "Trick Reload" sync / 1[56]:[^:]*:Statice:892A:/ -6572.1 "Surprise Needle" sync / 1[56]:[^:]*:Needle:8930:/ -6573.0 "Pop" sync / 1[56]:[^:]*:Statice:892F:/ -6574.4 "Trigger Happy" sync / 1[56]:[^:]*:Statice:892B:/ - -6585.5 "Present Box" sync / 1[56]:[^:]*:Statice:893E:/ -6594.2 "Faerie Ring 1" sync / 1[56]:[^:]*:Surprising Staff:893F:/ -6594.8 "Faerie Road 1" #sync / 1[56]:[^:]*:Surprising Staff:8940:/ -6599.9 "Faerie Ring 2" sync / 1[56]:[^:]*:Surprising Staff:893F:/ -6600.4 "Faerie Road 2" #sync / 1[56]:[^:]*:Surprising Staff:8940:/ -6601.5 "Shocking Abandon" sync / 1[56]:[^:]*:Statice:8928:/ -6605.5 "Faerie Ring 3" sync / 1[56]:[^:]*:Surprising Staff:893F:/ -6606.0 "Faerie Road 3" #sync / 1[56]:[^:]*:Surprising Staff:8940:/ - -6613.7 "Pinwheel" sync / 1[56]:[^:]*:Statice:8933:/ window 40,40 forcejump "statice-10-loop" +6508.1 "Pinwheel" Ability { id: "8933", source: "Statice" } +6511.2 "--middle--" Ability { id: "8927", source: "Statice" } +6516.5 "Trick Reload" Ability { id: "892A", source: "Statice" } +6527.5 "Fire Spread" Ability { id: "8934", source: "Statice" } +6530.4 "Trigger Happy" Ability { id: "892B", source: "Statice" } +6540.5 "Aero IV" Ability { id: "8929", source: "Statice" } + +6547.7 "--middle--" Ability { id: "8927", source: "Statice" } +6553.4 "Surprise Balloon" Ability { id: "892E", source: "Statice" } +6560.5 "Trick Reload" Ability { id: "892A", source: "Statice" } +6572.1 "Surprise Needle" Ability { id: "8930", source: "Needle" } +6573.0 "Pop" Ability { id: "892F", source: "Statice" } +6574.4 "Trigger Happy" Ability { id: "892B", source: "Statice" } + +6585.5 "Present Box" Ability { id: "893E", source: "Statice" } +6594.2 "Faerie Ring 1" Ability { id: "893F", source: "Surprising Staff" } +6594.8 "Faerie Road 1" #Ability { id: "8940", source: "Surprising Staff" } +6599.9 "Faerie Ring 2" Ability { id: "893F", source: "Surprising Staff" } +6600.4 "Faerie Road 2" #Ability { id: "8940", source: "Surprising Staff" } +6601.5 "Shocking Abandon" Ability { id: "8928", source: "Statice" } +6605.5 "Faerie Ring 3" Ability { id: "893F", source: "Surprising Staff" } +6606.0 "Faerie Road 3" #Ability { id: "8940", source: "Surprising Staff" } + +6613.7 "Pinwheel" Ability { id: "8933", source: "Statice" } window 40,40 forcejump "statice-10-loop" 6624.1 label "statice-11" -6624.1 "--sync--" sync / 14:[^:]*:Statice:8936:/ -6628.1 "Jack-in-the-box" sync / 1[56]:[^:]*:Statice:8936:/ -6647.2 "Burst" sync / 1[56]:[^:]*:Treasure Box:8937:/ +6624.1 "--sync--" StartsUsing { id: "8936", source: "Statice" } +6628.1 "Jack-in-the-box" Ability { id: "8936", source: "Statice" } +6647.2 "Burst" Ability { id: "8937", source: "Treasure Box" } -6659.6 "--sync--" sync / 1[56]:[^:]*:Statice:8927:/ -6664.0 "Dartboard" sync / 1[56]:[^:]*:Statice:8938:/ -6672.1 "Thunderstorm 1" sync / 1[56]:[^:]*:Statice:8939:/ -6676.1 "Thunderstorm 2" sync / 1[56]:[^:]*:Statice:8939:/ -6680.1 "Thunderstorm 3" sync / 1[56]:[^:]*:Statice:8939:/ -6697.2 "Meteor/Sledgemagic/Hunks of Junk/Happy Surprise" sync / 1[56]:[^:]*:Statice:(893A|893B|893C|893D):/ +6659.6 "--sync--" Ability { id: "8927", source: "Statice" } +6664.0 "Dartboard" Ability { id: "8938", source: "Statice" } +6672.1 "Thunderstorm 1" Ability { id: "8939", source: "Statice" } +6676.1 "Thunderstorm 2" Ability { id: "8939", source: "Statice" } +6680.1 "Thunderstorm 3" Ability { id: "8939", source: "Statice" } +6697.2 "Meteor/Sledgemagic/Hunks of Junk/Happy Surprise" Ability { id: ["893A", "893B", "893C", "893D"], source: "Statice" } 6707.3 label "statice-11-loop" -6707.3 "Pinwheel" sync / 1[56]:[^:]*:Statice:8933:/ -6710.4 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6715.7 "Trick Reload" sync / 1[56]:[^:]*:Statice:892A:/ -6726.7 "Fire Spread" sync / 1[56]:[^:]*:Statice:8934:/ -6729.6 "Trigger Happy" sync / 1[56]:[^:]*:Statice:892B:/ -6739.7 "Aero IV" sync / 1[56]:[^:]*:Statice:8929:/ +6707.3 "Pinwheel" Ability { id: "8933", source: "Statice" } +6710.4 "--middle--" Ability { id: "8927", source: "Statice" } +6715.7 "Trick Reload" Ability { id: "892A", source: "Statice" } +6726.7 "Fire Spread" Ability { id: "8934", source: "Statice" } +6729.6 "Trigger Happy" Ability { id: "892B", source: "Statice" } +6739.7 "Aero IV" Ability { id: "8929", source: "Statice" } -6746.9 "--middle--" sync / 1[56]:[^:]*:Statice:8927:/ -6752.3 "Surprise Balloon" sync / 1[56]:[^:]*:Statice:892E:/ -6759.4 "Trick Reload" sync / 1[56]:[^:]*:Statice:892A:/ -6771.0 "Surprise Needle" sync / 1[56]:[^:]*:Needle:8930:/ -6771.9 "Pop" sync / 1[56]:[^:]*:Statice:892F:/ -6773.5 "Trigger Happy" sync / 1[56]:[^:]*:Statice:892B:/ +6746.9 "--middle--" Ability { id: "8927", source: "Statice" } +6752.3 "Surprise Balloon" Ability { id: "892E", source: "Statice" } +6759.4 "Trick Reload" Ability { id: "892A", source: "Statice" } +6771.0 "Surprise Needle" Ability { id: "8930", source: "Needle" } +6771.9 "Pop" Ability { id: "892F", source: "Statice" } +6773.5 "Trigger Happy" Ability { id: "892B", source: "Statice" } -6784.6 "Jack-in-the-box" sync / 1[56]:[^:]*:Statice:8936:/ -6793.7 "Shocking Abandon" sync / 1[56]:[^:]*:Statice:8928:/ -6801.8 "Burst" sync / 1[56]:[^:]*:Treasure Box:8937:/ +6784.6 "Jack-in-the-box" Ability { id: "8936", source: "Statice" } +6793.7 "Shocking Abandon" Ability { id: "8928", source: "Statice" } +6801.8 "Burst" Ability { id: "8937", source: "Treasure Box" } -6817.1 "Pinwheel" sync / 1[56]:[^:]*:Statice:8933:/ window 40,40 forcejump "statice-11-loop" +6817.1 "Pinwheel" Ability { id: "8933", source: "Statice" } window 40,40 forcejump "statice-11-loop" # ALL ENCOUNTER ABILITIES @@ -926,67 +926,67 @@ hideall "--sync--" # -ii 87C1 87C3 8C34 8C35 8D38 8E47 # Kairimai Loquloqai will be sealed off -#7000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:112E:/ window 10000,0 -7000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:11DE:/ window 10000,0 -7006.8 "--sync--" sync / 14:[^:]*:Loquloqui:87BC:/ window 10,10 -7011.8 "Long-lost Light" sync / 1[56]:[^:]*:Loquloqui:87BC:/ - -7018.0 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7025.4 "Summoning Rite" sync / 1[56]:[^:]*:Loquloqui:87BF:/ -7033.5 "O Life, Flourish" sync / 1[56]:[^:]*:Loquloqui:87C4:/ -7042.1 "Rush" sync / 1[56]:[^:]*:Uolosapa Loqua:87C0:/ - -7043.7 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7050.8 "Summoning Rite" sync / 1[56]:[^:]*:Loquloqui:87BF:/ -7058.9 "O Life, Flourish" sync / 1[56]:[^:]*:Loquloqui:87C4:/ -7067.6 "Turnabout" sync / 1[56]:[^:]*:Repuruba Loqua:87C2:/ -7075.2 "Protective Will" sync / 1[56]:[^:]*:Loquloqui:87BE:/ - -7081.3 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7089.5 "O Petals, Unfurl" sync / 1[56]:[^:]*:Loquloqui:87C5:/ -7108.8 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7109.9 "Pliant Petals" sync / 1[56]:[^:]*:Loquloqui:87C6:/ -7118.3 "Land Wave" sync / 1[56]:[^:]*:Loquloqui:87BD:/ - -7124.5 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7132.6 "O Isle, Bloom" sync / 1[56]:[^:]*:Loquloqui:87C7:/ -7144.0 "Brilliant Blossoms x12" duration 5 #sync / 1[56]:[^:]*:Loquloqui:87C8:/ -7156.7 "Long-lost Light" sync / 1[56]:[^:]*:Loquloqui:87BC:/ - -7162.9 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7171.1 "O Sky, Be Mine" sync / 1[56]:[^:]*:Loquloqui:87C9:/ -7181.2 "Sanctuary" sync / 1[56]:[^:]*:Loquloqui:87CA:/ - -7189.3 "Stirring of Spirits 1" sync / 1[56]:[^:]*:Loquloqui:87CB:/ -7191.7 "Islebloom Light" sync / 1[56]:[^:]*:Loquloqui:87CD:/ -7192.1 "Shockwave 2" sync / 1[56]:[^:]*:Loquloqui:87CC:/ -7194.9 "Shockwave 3" sync / 1[56]:[^:]*:Loquloqui:87CC:/ -7197.2 "Islebloom Light" sync / 1[56]:[^:]*:Loquloqui:87CD:/ -7197.6 "Shockwave 4" sync / 1[56]:[^:]*:Loquloqui:87CC:/ -7200.4 "Shockwave 5" sync / 1[56]:[^:]*:Loquloqui:87CC:/ -7202.6 "Islebloom Light" sync / 1[56]:[^:]*:Loquloqui:87CD:/ - -7206.3 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ +#7000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "112E" } window 10000,0 +7000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "11DE" } window 10000,0 +7006.8 "--sync--" StartsUsing { id: "87BC", source: "Loquloqui" } window 10,10 +7011.8 "Long-lost Light" Ability { id: "87BC", source: "Loquloqui" } + +7018.0 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7025.4 "Summoning Rite" Ability { id: "87BF", source: "Loquloqui" } +7033.5 "O Life, Flourish" Ability { id: "87C4", source: "Loquloqui" } +7042.1 "Rush" Ability { id: "87C0", source: "Uolosapa Loqua" } + +7043.7 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7050.8 "Summoning Rite" Ability { id: "87BF", source: "Loquloqui" } +7058.9 "O Life, Flourish" Ability { id: "87C4", source: "Loquloqui" } +7067.6 "Turnabout" Ability { id: "87C2", source: "Repuruba Loqua" } +7075.2 "Protective Will" Ability { id: "87BE", source: "Loquloqui" } + +7081.3 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7089.5 "O Petals, Unfurl" Ability { id: "87C5", source: "Loquloqui" } +7108.8 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7109.9 "Pliant Petals" Ability { id: "87C6", source: "Loquloqui" } +7118.3 "Land Wave" Ability { id: "87BD", source: "Loquloqui" } + +7124.5 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7132.6 "O Isle, Bloom" Ability { id: "87C7", source: "Loquloqui" } +7144.0 "Brilliant Blossoms x12" duration 5 #Ability { id: "87C8", source: "Loquloqui" } +7156.7 "Long-lost Light" Ability { id: "87BC", source: "Loquloqui" } + +7162.9 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7171.1 "O Sky, Be Mine" Ability { id: "87C9", source: "Loquloqui" } +7181.2 "Sanctuary" Ability { id: "87CA", source: "Loquloqui" } + +7189.3 "Stirring of Spirits 1" Ability { id: "87CB", source: "Loquloqui" } +7191.7 "Islebloom Light" Ability { id: "87CD", source: "Loquloqui" } +7192.1 "Shockwave 2" Ability { id: "87CC", source: "Loquloqui" } +7194.9 "Shockwave 3" Ability { id: "87CC", source: "Loquloqui" } +7197.2 "Islebloom Light" Ability { id: "87CD", source: "Loquloqui" } +7197.6 "Shockwave 4" Ability { id: "87CC", source: "Loquloqui" } +7200.4 "Shockwave 5" Ability { id: "87CC", source: "Loquloqui" } +7202.6 "Islebloom Light" Ability { id: "87CD", source: "Loquloqui" } + +7206.3 "--middle--" Ability { id: "87BB", source: "Loquloqui" } 7213.5 label "loquloqui-loop" -7213.5 "Summoning Rite" sync / 1[56]:[^:]*:Loquloqui:87BF:/ -7221.6 "O Life, Flourish" sync / 1[56]:[^:]*:Loquloqui:87C4:/ -7230.2 "Turnabout" sync / 1[56]:[^:]*:Repuruba Loqua:87C2:/ -7230.2 "Rush" sync / 1[56]:[^:]*:Uolosapa Loqua:87C0:/ -7235.9 "Protective Will" sync / 1[56]:[^:]*:Loquloqui:87BE:/ - -7242.0 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7250.1 "O Petals, Unfurl" sync / 1[56]:[^:]*:Loquloqui:87C5:/ -7264.5 "Pliant Petals 1" sync / 1[56]:[^:]*:Loquloqui:87C6:/ -7270.4 "Pliant Petals 2" sync / 1[56]:[^:]*:Loquloqui:87C6:/ -7276.3 "Long-lost Light" sync / 1[56]:[^:]*:Loquloqui:87BC:/ - -7282.5 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7290.8 "O Isle, Bloom" sync / 1[56]:[^:]*:Loquloqui:87C7:/ -7302.2 "Brilliant Blossoms x12" duration 5 #sync / 1[56]:[^:]*:Loquloqui:87C8:/ -7309.2 "Land Wave" sync / 1[56]:[^:]*:Loquloqui:87BD:/ - -7315.3 "--middle--" sync / 1[56]:[^:]*:Loquloqui:87BB:/ -7322.4 "Summoning Rite" sync / 1[56]:[^:]*:Loquloqui:87BF:/ window 40,40 forcejump "loquloqui-loop" +7213.5 "Summoning Rite" Ability { id: "87BF", source: "Loquloqui" } +7221.6 "O Life, Flourish" Ability { id: "87C4", source: "Loquloqui" } +7230.2 "Turnabout" Ability { id: "87C2", source: "Repuruba Loqua" } +7230.2 "Rush" Ability { id: "87C0", source: "Uolosapa Loqua" } +7235.9 "Protective Will" Ability { id: "87BE", source: "Loquloqui" } + +7242.0 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7250.1 "O Petals, Unfurl" Ability { id: "87C5", source: "Loquloqui" } +7264.5 "Pliant Petals 1" Ability { id: "87C6", source: "Loquloqui" } +7270.4 "Pliant Petals 2" Ability { id: "87C6", source: "Loquloqui" } +7276.3 "Long-lost Light" Ability { id: "87BC", source: "Loquloqui" } + +7282.5 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7290.8 "O Isle, Bloom" Ability { id: "87C7", source: "Loquloqui" } +7302.2 "Brilliant Blossoms x12" duration 5 #Ability { id: "87C8", source: "Loquloqui" } +7309.2 "Land Wave" Ability { id: "87BD", source: "Loquloqui" } + +7315.3 "--middle--" Ability { id: "87BB", source: "Loquloqui" } +7322.4 "Summoning Rite" Ability { id: "87BF", source: "Loquloqui" } window 40,40 forcejump "loquloqui-loop" # ALL ENCOUNTER ABILITIES diff --git a/ui/raidboss/data/06-ew/dungeon/alzadaals_legacy.txt b/ui/raidboss/data/06-ew/dungeon/alzadaals_legacy.txt index 5dc28b9851..51992693ee 100644 --- a/ui/raidboss/data/06-ew/dungeon/alzadaals_legacy.txt +++ b/ui/raidboss/data/06-ew/dungeon/alzadaals_legacy.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~# # ABUJAM # @@ -13,23 +13,23 @@ hideall "--sync--" # -ii 71E5 # Undersea Entrance will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:103E:/ window 0,1 -11.0 "Big Wave" sync / 1[56]:[^:]*:Ambujam:6F60:/ window 11,5 -20.8 "Tentacle Dig" sync / 1[56]:[^:]*:Ambujam:6F55:/ window 20.8 -33.0 "--sync--" sync / 1[56]:[^:]*:Scarlet Tentacle:6F5B:/ -33.4 "Toxin Shower" sync / 1[56]:[^:]*:Ambujam:6F5C:/ -39.2 "--sync--" sync / 1[56]:[^:]*:Ambujam:6F56:/ window 39.2,10 - -47.6 "Tentacle Dig" sync / 1[56]:[^:]*:Ambujam:6F59:/ -59.8 "--sync--" sync / 1[56]:[^:]*:Scarlet Tentacle:6F5B:/ -60.2 "Corrosive Venom/Toxin Shower" sync / 1[56]:[^:]*:Ambujam:(6F5C|71E6):/ -66.0 "--sync--" sync / 1[56]:[^:]*:Ambujam:6F5A:/ window 66,20 -76.3 "Corrosive Fountain/Toxic Fountain 1" sync / 1[56]:[^:]*:Ambujam:(731A|731B|7374):/ -79.3 "Corrosive Fountain/Toxic Fountain 2" sync / 1[56]:[^:]*:Ambujam:(731A|731B|7374):/ -80.6 "Corrosive Fountain/Toxic Fountain 3" sync / 1[56]:[^:]*:Ambujam:(731A|731B|7374):/ -104.4 "Big Wave" sync / 1[56]:[^:]*:Ambujam:6F60:/ - -113.8 "Tentacle Dig" sync / 1[56]:[^:]*:Ambujam:6F59:/ window 30,30 jump 47.6 +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "103E" } window 0,1 +11.0 "Big Wave" Ability { id: "6F60", source: "Ambujam" } window 11,5 +20.8 "Tentacle Dig" Ability { id: "6F55", source: "Ambujam" } window 20.8 +33.0 "--sync--" Ability { id: "6F5B", source: "Scarlet Tentacle" } +33.4 "Toxin Shower" Ability { id: "6F5C", source: "Ambujam" } +39.2 "--sync--" Ability { id: "6F56", source: "Ambujam" } window 39.2,10 + +47.6 "Tentacle Dig" Ability { id: "6F59", source: "Ambujam" } +59.8 "--sync--" Ability { id: "6F5B", source: "Scarlet Tentacle" } +60.2 "Corrosive Venom/Toxin Shower" Ability { id: ["6F5C", "71E6"], source: "Ambujam" } +66.0 "--sync--" Ability { id: "6F5A", source: "Ambujam" } window 66,20 +76.3 "Corrosive Fountain/Toxic Fountain 1" Ability { id: ["731A", "731B", "7374"], source: "Ambujam" } +79.3 "Corrosive Fountain/Toxic Fountain 2" Ability { id: ["731A", "731B", "7374"], source: "Ambujam" } +80.6 "Corrosive Fountain/Toxic Fountain 3" Ability { id: ["731A", "731B", "7374"], source: "Ambujam" } +104.4 "Big Wave" Ability { id: "6F60", source: "Ambujam" } + +113.8 "Tentacle Dig" Ability { id: "6F59", source: "Ambujam" } window 30,30 jump 47.6 126.4 "Corrosive Venom/Toxin Shower" 142.5 "Corrosive Fountain/Toxic Fountain 1" 145.5 "Corrosive Fountain/Toxic Fountain 2" @@ -46,62 +46,62 @@ hideall "--sync--" # -ii 71CC 6F1A 6F1C 6F1D 6F26 6F27 # The Threshold of Bounty will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:103F:/ window 1000,1 -1011.0 "Articulated Bits" sync / 1[56]:[^:]*:Armored Chariot:6F19:/ window 1011,0 -1013.2 "Assail" sync / 1[56]:[^:]*:Armored Chariot:6F29:/ -1015.3 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F20|6F21):/ -1021.9 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 -1026.4 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:6F22:/ -1030.0 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "103F" } window 1000,1 +1011.0 "Articulated Bits" Ability { id: "6F19", source: "Armored Chariot" } window 1011,0 +1013.2 "Assail" Ability { id: "6F29", source: "Armored Chariot" } +1015.3 "--sync--" Ability { id: ["6F20", "6F21"], source: "Armored Chariot" } +1021.9 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 +1026.4 "--sync--" Ability { id: "6F22", source: "Armored Chariot" } +1030.0 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 # No Rail Cannon first time through the block. -1036.3 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F24|6F25):/ -1047.4 "Diffusion Ray" sync / 1[56]:[^:]*:Armored Chariot:6F1E:/ -1056.6 "Articulated Bits" sync / 1[56]:[^:]*:Armored Chariot:6F19:/ -1058.8 "Assail" sync / 1[56]:[^:]*:Armored Chariot:6F28:/ -1060.9 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F20|6F21):/ -1067.5 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 -1073.9 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F24|6F25):/ -1083.2 "Articulated Bits" sync / 1[56]:[^:]*:Armored Chariot:6F19:/ -1085.4 "Assail" sync / 1[56]:[^:]*:Armored Chariot:6F29:/ -1087.5 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F20|6F21):/ -1094.1 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 -1098.7 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:6F23:/ -1102.3 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 -1104.8 "Graviton Cannon" sync / 1[56]:[^:]*:Armored Chariot:7373:/ -1108.6 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F24|6F25):/ -1117.8 "Articulated Bits" sync / 1[56]:[^:]*:Armored Chariot:6F19:/ -1120.0 "Assail" sync / 1[56]:[^:]*:Armored Chariot:6F28:/ -1122.1 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F20|6F21):/ -1128.7 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 - -1135.0 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F24|6F25):/ -1145.1 "Diffusion Ray" sync / 1[56]:[^:]*:Armored Chariot:6F1E:/ -1155.2 "Rail Cannon" sync / 1[56]:[^:]*:Armored Chariot:6F1F:/ -1168.4 "Articulated Bits" sync / 1[56]:[^:]*:Armored Chariot:6F19:/ -1170.6 "Assail" sync / 1[56]:[^:]*:Armored Chariot:6F28:/ -1172.7 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F20|6F21):/ -1179.4 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 -1185.7 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F24|6F25):/ -1194.9 "Articulated Bits" sync / 1[56]:[^:]*:Armored Chariot:6F19:/ -1197.1 "Assail" sync / 1[56]:[^:]*:Armored Chariot:6F29:/ -1199.2 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F20|6F21):/ -1205.8 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 -1210.4 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:6F22:/ -1213.9 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 -1216.6 "Graviton Cannon" sync / 1[56]:[^:]*:Armored Chariot:7373:/ -1220.1 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F24|6F25):/ -1229.3 "Articulated Bits" sync / 1[56]:[^:]*:Armored Chariot:6F19:/ -1231.5 "Assail" sync / 1[56]:[^:]*:Armored Chariot:6F28:/ -1233.6 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F20|6F21):/ -1240.2 "Assault Cannon" sync / 1[56]:[^:]*:Armored Drudge:6F1B:/ duration 5 - -1246.5 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F24|6F25):/ window 10,10 jump 2135 -1256.6 "Diffusion Ray" sync / 1[56]:[^:]*:Armored Chariot:6F1E:/ -1266.7 "Rail Cannon" sync / 1[56]:[^:]*:Armored Chariot:6F1F:/ -1280.0 "Articulated Bits" sync / 1[56]:[^:]*:Armored Chariot:6F19:/ -1282.2 "Assail" sync / 1[56]:[^:]*:Armored Chariot:6F28:/ -1284.3 "--sync--" sync / 1[56]:[^:]*:Armored Chariot:(6F20|6F21):/ +1036.3 "--sync--" Ability { id: ["6F24", "6F25"], source: "Armored Chariot" } +1047.4 "Diffusion Ray" Ability { id: "6F1E", source: "Armored Chariot" } +1056.6 "Articulated Bits" Ability { id: "6F19", source: "Armored Chariot" } +1058.8 "Assail" Ability { id: "6F28", source: "Armored Chariot" } +1060.9 "--sync--" Ability { id: ["6F20", "6F21"], source: "Armored Chariot" } +1067.5 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 +1073.9 "--sync--" Ability { id: ["6F24", "6F25"], source: "Armored Chariot" } +1083.2 "Articulated Bits" Ability { id: "6F19", source: "Armored Chariot" } +1085.4 "Assail" Ability { id: "6F29", source: "Armored Chariot" } +1087.5 "--sync--" Ability { id: ["6F20", "6F21"], source: "Armored Chariot" } +1094.1 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 +1098.7 "--sync--" Ability { id: "6F23", source: "Armored Chariot" } +1102.3 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 +1104.8 "Graviton Cannon" Ability { id: "7373", source: "Armored Chariot" } +1108.6 "--sync--" Ability { id: ["6F24", "6F25"], source: "Armored Chariot" } +1117.8 "Articulated Bits" Ability { id: "6F19", source: "Armored Chariot" } +1120.0 "Assail" Ability { id: "6F28", source: "Armored Chariot" } +1122.1 "--sync--" Ability { id: ["6F20", "6F21"], source: "Armored Chariot" } +1128.7 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 + +1135.0 "--sync--" Ability { id: ["6F24", "6F25"], source: "Armored Chariot" } +1145.1 "Diffusion Ray" Ability { id: "6F1E", source: "Armored Chariot" } +1155.2 "Rail Cannon" Ability { id: "6F1F", source: "Armored Chariot" } +1168.4 "Articulated Bits" Ability { id: "6F19", source: "Armored Chariot" } +1170.6 "Assail" Ability { id: "6F28", source: "Armored Chariot" } +1172.7 "--sync--" Ability { id: ["6F20", "6F21"], source: "Armored Chariot" } +1179.4 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 +1185.7 "--sync--" Ability { id: ["6F24", "6F25"], source: "Armored Chariot" } +1194.9 "Articulated Bits" Ability { id: "6F19", source: "Armored Chariot" } +1197.1 "Assail" Ability { id: "6F29", source: "Armored Chariot" } +1199.2 "--sync--" Ability { id: ["6F20", "6F21"], source: "Armored Chariot" } +1205.8 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 +1210.4 "--sync--" Ability { id: "6F22", source: "Armored Chariot" } +1213.9 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 +1216.6 "Graviton Cannon" Ability { id: "7373", source: "Armored Chariot" } +1220.1 "--sync--" Ability { id: ["6F24", "6F25"], source: "Armored Chariot" } +1229.3 "Articulated Bits" Ability { id: "6F19", source: "Armored Chariot" } +1231.5 "Assail" Ability { id: "6F28", source: "Armored Chariot" } +1233.6 "--sync--" Ability { id: ["6F20", "6F21"], source: "Armored Chariot" } +1240.2 "Assault Cannon" Ability { id: "6F1B", source: "Armored Drudge" } duration 5 + +1246.5 "--sync--" Ability { id: ["6F24", "6F25"], source: "Armored Chariot" } window 10,10 jump 2135 +1256.6 "Diffusion Ray" Ability { id: "6F1E", source: "Armored Chariot" } +1266.7 "Rail Cannon" Ability { id: "6F1F", source: "Armored Chariot" } +1280.0 "Articulated Bits" Ability { id: "6F19", source: "Armored Chariot" } +1282.2 "Assail" Ability { id: "6F28", source: "Armored Chariot" } +1284.3 "--sync--" Ability { id: ["6F20", "6F21"], source: "Armored Chariot" } #~~~~~~~~~~# # KAPIKULU # @@ -110,38 +110,38 @@ hideall "--sync--" # -ii 6F71 6F64 6F65 6F66 6F67 6F6D 6F6F # Weaver's Warding will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1040:/ window 2000,1 -2015.2 "Billowing Bolts" sync / 1[56]:[^:]*:Kapikulu:6F70:/ window 2016,5 -2023.4 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ -2027.8 "Spin Out" sync / 1[56]:[^:]*:Kapikulu:6F63:/ -2044.1 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ -2054.3 "Crewel Slice" sync / 1[56]:[^:]*:Kapikulu:6F72:/ -2061.4 "Billowing Bolts" sync / 1[56]:[^:]*:Kapikulu:6F70:/ -2069.6 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ -2074.7 "Wild Weave" sync / 1[56]:[^:]*:Kapikulu:6F69:/ -2084.5 "Power Serge" sync / 1[56]:[^:]*:Kapikulu:6F6A:/ -2088.8 "Mana Explosion" sync / 1[56]:[^:]*:Kapikulu:6F6B:/ -2099.6 "Magnitude Opus/Rotary Gale" sync / 1[56]:[^:]*:Kapikulu:(6F6C|6F6E):/ -2108.8 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ -2112.8 "Spin Out" sync / 1[56]:[^:]*:Kapikulu:6F63:/ -2120.5 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ -2127.9 "Basting Blade" sync / 1[56]:[^:]*:Kapikulu:6F68:/ -2131.5 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ -2138.8 "Basting Blade" sync / 1[56]:[^:]*:Kapikulu:6F68:/ -2140.9 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ - -2151.1 "Crewel Slice" sync / 1[56]:[^:]*:Kapikulu:6F72:/ -2158.2 "Billowing Bolts" sync / 1[56]:[^:]*:Kapikulu:6F70:/ -2166.4 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ -2171.5 "Wild Weave" sync / 1[56]:[^:]*:Kapikulu:6F69:/ -2181.1 "Power Serge" sync / 1[56]:[^:]*:Kapikulu:6F6A:/ -2185.4 "Mana Explosion" sync / 1[56]:[^:]*:Kapikulu:6F6B:/ -2188.2 "Magnitude Opus/Rotary Gale" sync / 1[56]:[^:]*:Kapikulu:(6F6C|6F6E):/ - -2199.4 "Crewel Slice" sync / 1[56]:[^:]*:Kapikulu:6F72:/ jump 2151.1 -2206.5 "Billowing Bolts" sync / 1[56]:[^:]*:Kapikulu:6F70:/ -2216.7 "--sync--" sync / 1[56]:[^:]*:Kapikulu:6F62:/ -2221.8 "Wild Weave" sync / 1[56]:[^:]*:Kapikulu:6F69:/ -2231.7 "Power Serge" sync / 1[56]:[^:]*:Kapikulu:6F6A:/ -2236.0 "Mana Explosion" sync / 1[56]:[^:]*:Kapikulu:6F6B:/ -2238.8 "Magnitude Opus/Rotary Gale" sync / 1[56]:[^:]*:Kapikulu:(6F6C|6F6E):/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1040" } window 2000,1 +2015.2 "Billowing Bolts" Ability { id: "6F70", source: "Kapikulu" } window 2016,5 +2023.4 "--sync--" Ability { id: "6F62", source: "Kapikulu" } +2027.8 "Spin Out" Ability { id: "6F63", source: "Kapikulu" } +2044.1 "--sync--" Ability { id: "6F62", source: "Kapikulu" } +2054.3 "Crewel Slice" Ability { id: "6F72", source: "Kapikulu" } +2061.4 "Billowing Bolts" Ability { id: "6F70", source: "Kapikulu" } +2069.6 "--sync--" Ability { id: "6F62", source: "Kapikulu" } +2074.7 "Wild Weave" Ability { id: "6F69", source: "Kapikulu" } +2084.5 "Power Serge" Ability { id: "6F6A", source: "Kapikulu" } +2088.8 "Mana Explosion" Ability { id: "6F6B", source: "Kapikulu" } +2099.6 "Magnitude Opus/Rotary Gale" Ability { id: ["6F6C", "6F6E"], source: "Kapikulu" } +2108.8 "--sync--" Ability { id: "6F62", source: "Kapikulu" } +2112.8 "Spin Out" Ability { id: "6F63", source: "Kapikulu" } +2120.5 "--sync--" Ability { id: "6F62", source: "Kapikulu" } +2127.9 "Basting Blade" Ability { id: "6F68", source: "Kapikulu" } +2131.5 "--sync--" Ability { id: "6F62", source: "Kapikulu" } +2138.8 "Basting Blade" Ability { id: "6F68", source: "Kapikulu" } +2140.9 "--sync--" Ability { id: "6F62", source: "Kapikulu" } + +2151.1 "Crewel Slice" Ability { id: "6F72", source: "Kapikulu" } +2158.2 "Billowing Bolts" Ability { id: "6F70", source: "Kapikulu" } +2166.4 "--sync--" Ability { id: "6F62", source: "Kapikulu" } +2171.5 "Wild Weave" Ability { id: "6F69", source: "Kapikulu" } +2181.1 "Power Serge" Ability { id: "6F6A", source: "Kapikulu" } +2185.4 "Mana Explosion" Ability { id: "6F6B", source: "Kapikulu" } +2188.2 "Magnitude Opus/Rotary Gale" Ability { id: ["6F6C", "6F6E"], source: "Kapikulu" } + +2199.4 "Crewel Slice" Ability { id: "6F72", source: "Kapikulu" } jump 2151.1 +2206.5 "Billowing Bolts" Ability { id: "6F70", source: "Kapikulu" } +2216.7 "--sync--" Ability { id: "6F62", source: "Kapikulu" } +2221.8 "Wild Weave" Ability { id: "6F69", source: "Kapikulu" } +2231.7 "Power Serge" Ability { id: "6F6A", source: "Kapikulu" } +2236.0 "Mana Explosion" Ability { id: "6F6B", source: "Kapikulu" } +2238.8 "Magnitude Opus/Rotary Gale" Ability { id: ["6F6C", "6F6E"], source: "Kapikulu" } diff --git a/ui/raidboss/data/06-ew/dungeon/another_aloalo_island-savage.ts b/ui/raidboss/data/06-ew/dungeon/another_aloalo_island-savage.ts new file mode 100644 index 0000000000..21803d61cd --- /dev/null +++ b/ui/raidboss/data/06-ew/dungeon/another_aloalo_island-savage.ts @@ -0,0 +1,1907 @@ +// This file was autogenerated from running ts-node util/sync_files.ts. +// DO NOT EDIT THIS FILE DIRECTLY. +// Edit the source file below and then run `npm run sync-files` +// Source: ui/raidboss/data/06-ew/dungeon/another_aloalo_island.ts + +import Conditions from '../../../../../resources/conditions'; +import Outputs from '../../../../../resources/outputs'; +import { Responses } from '../../../../../resources/responses'; +import ZoneId from '../../../../../resources/zone_id'; +import { RaidbossData } from '../../../../../types/data'; +import { PluginCombatantState } from '../../../../../types/event'; +import { NetMatches } from '../../../../../types/net_matches'; +import { TriggerSet } from '../../../../../types/trigger'; + +// TODO: add callout for Monk Hydroshot target +// TODO: sc3 should say which bubble to take to the other side (for everyone) +// TODO: figure out directions for Lala for Radiance orbs +// TODO: map effects for Lala +// TODO: Lala Planar Tactics could add config strats and tell you who to stack with +// TODO: Statice colors could add config strats for role-based colors + melee flex + +export interface Data extends RaidbossData { + combatantData: PluginCombatantState[]; + ketuSpringCrystalCount: number; + ketuCrystalAdd: NetMatches['AddedCombatant'][]; + ketuHydroBuffCount: number; + ketuHydroBuffIsSpreadFirst?: boolean; + ketuHydroBuffIsRoleStacks?: boolean; + ketuBuff?: 'bubble' | 'fetters'; + ketuBuffPartner?: string; + ketuBuffCollect: NetMatches['GainsEffect'][]; + ketuStackTargets: string[]; + ketuTwintidesNext?: 'out' | 'in'; + lalaBossRotation?: 'clock' | 'counter'; + lalaBossTimes?: 3 | 5; + lalaBossInitialSafe?: 'north' | 'east' | 'south' | 'west'; + lalaUnseen?: 'front' | 'left' | 'right' | 'back'; + lalaPlayerTimes?: 3 | 5; + lalaPlayerRotation?: 'clock' | 'counter'; + lalaSubAlpha: NetMatches['GainsEffect'][]; + staticeBullet: NetMatches['Ability'][]; + staticeTriggerHappy?: number; + staticePopTriggerHappyNum?: number; + staticeTrapshooting: ('stack' | 'spread' | undefined)[]; + staticeDart: NetMatches['GainsEffect'][]; + staticePresentBoxCount: number; + staticeMissileCollect: NetMatches['AddedCombatant'][]; + staticeMissileIdToDir: { [id: string]: number }; + staticeMissileTether: NetMatches['Tether'][]; + staticeClawTether: NetMatches['Tether'][]; + staticeIsPinwheelingDartboard?: boolean; + staticeHomingColor?: 'blue' | 'yellow' | 'red'; + staticeDartboardTether: NetMatches['HeadMarker'][]; +} + +// Horizontal crystals have a heading of 0, vertical crystals are -pi/2. +const isHorizontalCrystal = (line: NetMatches['AddedCombatant']) => { + const epsilon = 0.1; + return Math.abs(parseFloat(line.heading)) < epsilon; +}; + +const headmarkerIds = { + tethers: '0061', + enumeration: '015B', +} as const; + +// TODO: this maybe should be a method on party? +const isStandardLightParty = (data: Data): boolean => { + const supports = [...data.party.healerNames, ...data.party.tankNames]; + const dps = data.party.dpsNames; + return supports.length === 2 && dps.length === 2; +}; + +const triggerSet: TriggerSet = { + id: 'AnotherAloaloIslandSavage', + zoneId: ZoneId.AnotherAloaloIslandSavage, + timelineFile: 'another_aloalo_island-savage.txt', + initData: () => { + return { + combatantData: [], + ketuSpringCrystalCount: 0, + ketuCrystalAdd: [], + ketuHydroBuffCount: 0, + ketuBuffCollect: [], + ketuStackTargets: [], + lalaSubAlpha: [], + staticeBullet: [], + staticeTrapshooting: [], + staticeDart: [], + staticePresentBoxCount: 0, + staticeMissileCollect: [], + staticeMissileIdToDir: {}, + staticeMissileTether: [], + staticeClawTether: [], + staticeDartboardTether: [], + }; + }, + timelineTriggers: [ + { + id: 'AAIS Lala Radiance', + regex: /^Radiance \d/, + beforeSeconds: 4, + alertText: (data, _matches, output) => { + // TODO: could figure out directions here and say "Point left at NW Orb" + const dir = data.lalaUnseen; + if (dir === undefined) + return output.orbGeneral!(); + return { + front: output.orbDirFront!(), + back: output.orbDirBack!(), + left: output.orbDirLeft!(), + right: output.orbDirRight!(), + }[dir]; + }, + outputStrings: { + orbDirFront: { + en: 'Face Towards Orb', + de: 'Den Orb anschauen', + }, + orbDirBack: { + en: 'Face Away from Orb', + de: 'Weg vom Orb schauen', + }, + orbDirLeft: { + en: 'Point Left at Orb', + de: 'Zeige links auf den Orb', + }, + orbDirRight: { + en: 'Point Right at Orb', + de: 'Zeige Rechts auf den Orb', + }, + orbGeneral: { + en: 'Point opening at Orb', + de: 'Zeige die Öffnung auf den Orb', + }, + }, + }, + ], + triggers: [ + // ---------------- first trash ---------------- + { + id: 'AAIS Kiwakin Lead Hook', + type: 'StartsUsing', + netRegex: { id: '8BC7', source: 'Aloalo Kiwakin' }, + response: (data, matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + tankBusterOnYou: { + en: '3x Tankbuster on YOU', + de: '3x Tankbuster auf DIR', + }, + tankBusterOnPlayer: { + en: '3x Tankbuster on ${player}', + de: '3x Tankbuster auf ${player}', + }, + }; + + if (matches.target === data.me) + return { alertText: output.tankBusterOnYou!() }; + const target = data.party.member(matches.target); + return { infoText: output.tankBusterOnPlayer!({ player: target }) }; + }, + }, + { + id: 'AAIS Kiwakin Sharp Strike', + type: 'StartsUsing', + netRegex: { id: '8BC8', source: 'Aloalo Kiwakin' }, + response: Responses.tankBuster(), + }, + { + id: 'AAIS Kiwakin Tail Screw', + type: 'StartsUsing', + // This is a baited targeted circle. + netRegex: { id: '8BC9', source: 'Aloalo Kiwakin', capture: false }, + response: Responses.moveAway(), + }, + { + id: 'AAIS Snipper Water III', + type: 'StartsUsing', + netRegex: { id: '8BCC', source: 'Aloalo Snipper' }, + response: Responses.stackMarkerOn(), + }, + { + id: 'AAIS Snipper Bubble Shower', + type: 'StartsUsing', + netRegex: { id: '8BCA', source: 'Aloalo Snipper', capture: false }, + response: Responses.getBackThenFront(), + }, + { + id: 'AAIS Snipper Crab Dribble', + type: 'Ability', + // Crab Dribble 8BCB has a fast cast, so trigger on Bubble Shower ability + netRegex: { id: '8BCA', source: 'Aloalo Snipper', capture: false }, + suppressSeconds: 5, + response: Responses.goFront('info'), + }, + { + id: 'AAIS Ray Hydrocannon', + type: 'StartsUsing', + netRegex: { id: '8C4B', source: 'Aloalo Ray', capture: false }, + response: Responses.getBehind(), + }, + { + id: 'AAIS Ray Expulsion', + type: 'StartsUsing', + netRegex: { id: '8BCE', source: 'Aloalo Ray', capture: false }, + response: Responses.getOut(), + }, + { + id: 'AAIS Ray Electric Whorl', + type: 'StartsUsing', + netRegex: { id: '8BCD', source: 'Aloalo Ray', capture: false }, + response: Responses.getUnder(), + }, + { + id: 'AAIS Monk Hydroshot', + type: 'StartsUsing', + netRegex: { id: '8BD1', source: 'Aloalo Monk' }, + condition: Conditions.targetIsYou(), + response: Responses.knockbackOn(), + }, + { + id: 'AAIS Monk Cross Attack', + type: 'StartsUsing', + netRegex: { id: '8C4F', source: 'Aloalo Monk' }, + response: Responses.tankBuster(), + }, + // ---------------- Ketuduke ---------------- + { + id: 'AAIS Ketuduke Tidal Roar', + type: 'StartsUsing', + netRegex: { id: '8AD4', source: 'Ketuduke', capture: false }, + response: Responses.bleedAoe(), + }, + { + id: 'AAIS Ketuduke Spring Crystals', + type: 'StartsUsing', + netRegex: { id: '8AA8', source: 'Ketuduke', capture: false }, + run: (data) => { + data.ketuSpringCrystalCount++; + // Note: cannot clear `data.ketuCrystalAdd` here as there has been at least one case + // where AddCombatant (coming from memory, so racy) is partially before this cast. + }, + }, + { + id: 'AAIS Ketuduke Spring Crystals Saturate Cleanup', + type: 'StartsUsing', + netRegex: { id: ['8ADB', '8ADC'], capture: false }, + run: (data) => data.ketuCrystalAdd = [], + }, + { + id: 'AAIS Ketuduke Spring Crystal Collect', + type: 'AddedCombatant', + netRegex: { npcNameId: '12607' }, + run: (data, matches) => data.ketuCrystalAdd.push(matches), + }, + { + id: 'AAIS Ketuduke Bubble Net', + type: 'StartsUsing', + netRegex: { id: ['8AC5', '8AAD'], source: 'Ketuduke', capture: false }, + response: Responses.aoe(), + }, + { + id: 'AAIS Ketuduke Foamy Fetters Bubble Weave', + type: 'GainsEffect', + // ECC = Foamy Fetters + // E9F = Bubble Weave + netRegex: { effectId: ['ECC', 'E9F'] }, + delaySeconds: (data, matches) => { + data.ketuBuffCollect.push(matches); + return data.ketuBuffCollect.length === 4 ? 0 : 0.5; + }, + alertText: (data, _matches, output) => { + if (data.ketuBuffCollect.length === 0) + return; + + const myBuff = data.ketuBuffCollect.find((x) => x.target === data.me)?.effectId; + if (myBuff === undefined) + return; + data.ketuBuff = myBuff === 'ECC' ? 'fetters' : 'bubble'; + data.ketuBuffPartner = data.ketuBuffCollect.find((x) => { + return x.target !== data.me && x.effectId === myBuff; + })?.target; + const player = data.party.member(data.ketuBuffPartner); + + // To avoid too many calls, we'll call this out later for the Fluke Gale + // versions of this. + if (data.ketuSpringCrystalCount === 1 || data.ketuSpringCrystalCount === 4) + return; + + if (data.ketuBuff === 'fetters') + return output.fetters!({ player: player }); + return output.bubble!({ player: player }); + }, + run: (data) => data.ketuBuffCollect = [], + outputStrings: { + fetters: { + en: 'Fetters (w/${player})', + de: 'Fesseln (mit ${player})', + }, + bubble: { + en: 'Bubble (w/${player})', + de: 'Blase (mit ${player})', + }, + }, + }, + { + id: 'AAIS Ketuduke Hydro Buff Counter', + type: 'StartsUsing', + // 8AB8 = Hydrobullet (spread) + // 8AB4 = Hydrofall (stack) + netRegex: { id: ['8AB8', '8AB4'], source: 'Ketuduke', capture: false }, + run: (data) => { + data.ketuHydroBuffCount++; + delete data.ketuHydroBuffIsSpreadFirst; + delete data.ketuHydroBuffIsRoleStacks; + }, + }, + { + id: 'AAIS Ketuduke Hydro Buff 1', + comment: { + en: `These directions assume that you always pick a square in the same + quadrant as the crystal specified. + For brevity, "next to" always means horizontal east/west of something. + See trigger source for diagrams in comments.`, + de: `Diese Anweisungen gehen davon aus, dass Sie immer ein Quadrat im gleichen + Quadranten wie der angegebene Kristall liegt. + Der Einfachheit halber bedeutet "neben" immer horizontal östlich/westlich von etwas. + Siehe Triggerquelle für Diagramme in den Kommentaren.`, + }, + type: 'StartsUsing', + netRegex: { id: ['8AB8', '8AB4'], source: 'Ketuduke' }, + condition: (data) => data.ketuHydroBuffCount === 1 || data.ketuHydroBuffCount === 6, + durationSeconds: 10, + alertText: (data, matches, output) => { + if (data.ketuBuff === undefined) + return; + + const isPlayerDPS = data.party.isDPS(data.me); + const isPartnerDPS = data.ketuBuffPartner !== undefined + ? data.party.isDPS(data.ketuBuffPartner) + : undefined; + const isBubbleNetPartnerSameRole = isPlayerDPS === isPartnerDPS && + isStandardLightParty(data); + + // Simplify callout in vast majority of cases where there's a normal light party setup + // and you and the two dps and two supports get the same debuff, so no need to list + // your partner. + // + // Otherwise, if you're doing this nonstandard for some reason or somebody is dead + // you can know if you need to flex. + const isSpread = matches.id === '8AB8'; + const bubbleStr = data.ketuBuff === 'bubble' ? output.bubbleBuff!() : output.fettersBuff!(); + // We don't know about role stacks at this point, as this is just the initial cast bar. + const stackStr = isSpread ? output.spread!() : output.stacks!(); + if (isBubbleNetPartnerSameRole || data.ketuBuffPartner === undefined) + return output.bubbleNetMech!({ fettersBubble: bubbleStr, spreadStack: stackStr }); + return output.bubbleNetMechPartner!({ + fettersBubble: bubbleStr, + spreadStack: stackStr, + player: data.party.member(data.ketuBuffPartner), + }); + }, + infoText: (data, matches, output) => { + // If somebody died and missed a debuff, good luck. + if (data.ketuBuff === undefined) + return; + + // Bubble always does the same thing. + if (data.ketuBuff === 'bubble') + return output.bubbleAnything!(); + + // Two layouts, one with each crystal in its own column ("split") + // and one with two columns that have an H and a V in that same column ("columns"). + // Wind doesn't matter, as "1" will always be on the horizontal crystals. + // These can be flipped somewhat, but the solution is always the same. + // Horizontal crystals are always in lc1 wind, and vertical crystals are always + // in lc2 wind. Players with bubbles always go either (1) adjacent to a horizontal + // crystal OR (2) diagonal of a vertical crystal. Either one works, but it + // depends on how you split your priorities / wind which one you'd take. + // + // Legend: V = vertical crystal, H = horizontal crystal + // 1 = limit cut wind 1, 2 = limit cut wind 2 + // f = fetters, b = bubble (if placed in lc1) + // + // STACK FETTERS COLUMNS (kitty to horizontal) + // 2 2 + // + - - - - + + - - - - + + // | V f | 1 | H f | 1 + // | H b | => | V | + // | H b | | V | + // 1 | f V | 1 | H f | + // + - - - - + + - - - - + + // 2 2 + // + // STACK FETTERS SPLIT (on horizontal) + // 2 2 + // + - - - - + + - - - - + + // 1 | V | 1 | V | + // | H b | => | f H | + // | V | | V | + // | b H | 1 | H f | 1 + // + - - - - + + - - - - + + // 2 2 + // + // SPREAD FETTERS COLUMNS (adjacent to vertical) + // 2 2 + // + - - - - + + - - - - + + // | V f | 1 | f H b | 1 + // | H b | => | V | + // | H b | | V | + // 1 | V f | 1 | H b f | + // + - - - - + + - - - - + + // 2 2 + // + // SPREAD FETTERS SPLIT (kitty to vertical) + // 2 2 + // + - - - - + + - - - - + + // | V | 1 | V | 1 + // | f b H | => | f H b | + // | V | | V | + // 1 | H b f | 1 | b H f | + // + - - - - + + - - - - + + // 2 2 + + const isSpread = matches.id === '8AB8'; + const horizontal = data.ketuCrystalAdd.filter((x) => isHorizontalCrystal(x)); + const vertical = data.ketuCrystalAdd.filter((x) => !isHorizontalCrystal(x)); + + const [firstHorizontal] = horizontal; + if (horizontal.length !== 2 || vertical.length !== 2 || firstHorizontal === undefined) + return; + const firstHorizX = parseFloat(firstHorizontal.x); + // It's split if no vertical is in the same column as either horizontal. + const isSplitLayout = + vertical.find((line) => Math.abs(parseFloat(line.x) - firstHorizX) < 1) === undefined; + + if (isSpread) + return isSplitLayout ? output.fettersSpreadSplit!() : output.fettersSpreadColumn!(); + return isSplitLayout ? output.fettersStackSplit!() : output.fettersStackColumn!(); + }, + outputStrings: { + bubbleNetMech: { + en: '${fettersBubble} + ${spreadStack}', + de: '${fettersBubble} + ${spreadStack}', + }, + bubbleNetMechPartner: { + en: '${fettersBubble} + ${spreadStack} (w/${player})', + de: '${fettersBubble} + ${spreadStack} (mit ${player})', + }, + bubbleBuff: { + en: 'Bubble', + de: 'Blase', + }, + fettersBuff: { + en: 'Fetters', + de: 'Ketten', + }, + spread: Outputs.spread, + stacks: { + en: 'Stacks', + de: 'Sammeln', + }, + bubbleAnything: { + en: 'Diagonal of Vertical / Next to Horizontal ', + de: 'Diagonale der Vertikalen / Neben Horizontal', + }, + fettersSpreadSplit: { + en: 'Diagonal of Vertical', + de: 'Diagonale der Vertikalen', + }, + fettersSpreadColumn: { + en: 'Next to Vertical', + de: 'Neben Vertikal', + }, + fettersStackSplit: { + en: 'On Horizontal', + de: 'Auf Horizontal', + }, + fettersStackColumn: { + en: 'Diagonal of Horizontal', + de: 'Diagonale der Horizontalen', + }, + }, + }, + { + id: 'AAIS Ketuduke Hydro Buff Double', + type: 'StartsUsing', + netRegex: { id: ['8AB8', '8AB4'], source: 'Ketuduke' }, + condition: (data) => data.ketuHydroBuffCount === 2 || data.ketuHydroBuffCount === 5, + alertText: (data, matches, output) => { + data.ketuHydroBuffIsSpreadFirst = matches.id === '8AB8'; + return data.ketuHydroBuffIsSpreadFirst ? output.spread!() : output.stacks!(); + }, + outputStrings: { + spread: { + en: 'Spread => Stacks', + de: 'Verteilen => Sammeln', + }, + stacks: { + en: 'Stacks => Spread', + de: 'Sammeln => Verteilen', + }, + }, + }, + { + id: 'AAIS Ketuduke Hydro Buff Double Followup', + type: 'Ability', + netRegex: { id: ['8ADF', '8ADE'], source: 'Ketuduke' }, + suppressSeconds: 10, + infoText: (data, matches, output) => { + const wasSpread = matches.id === '8ADF'; + if (wasSpread && data.ketuHydroBuffIsSpreadFirst === true) { + if (data.ketuHydroBuffIsRoleStacks) + return output.roleStacks!(); + return output.stacks!(); + } else if (!wasSpread && data.ketuHydroBuffIsSpreadFirst === false) { + return output.spread!(); + } + }, + outputStrings: { + spread: Outputs.spread, + stacks: { + en: 'Stacks', + de: 'Sammeln', + }, + roleStacks: { + en: 'Role Stacks', + de: 'Rollengruppe sammeln', + }, + }, + }, + { + id: 'AAIS Ketuduke Hydrofall Role Stack Warning', + type: 'GainsEffect', + netRegex: { effectId: 'EA3' }, + delaySeconds: (data, matches) => { + data.ketuStackTargets.push(matches.target); + return data.ketuStackTargets.length === 2 ? 0 : 0.5; + }, + alarmText: (data, _matches, output) => { + const [stack1, stack2] = data.ketuStackTargets; + if (data.ketuStackTargets.length !== 2 || stack1 === undefined || stack2 === undefined) + return; + + // Sorry, non-standard light party comps. + if (!isStandardLightParty(data)) + return; + + const isStack1DPS = data.party.isDPS(stack1); + const isStack2DPS = data.party.isDPS(stack2); + + // If both stacks are on dps or neither stack is on a dps, then you have + // standard "partner" stacks of one support and one dps. If one is on a dps + // and one is on a support (which can happen if somebody dies), then + // you (probably) need to have role stacks. + if (isStack1DPS === isStack2DPS) + return; + + data.ketuHydroBuffIsRoleStacks = true; + + // Handle Blowing Bubbles/Angry Seas spread+stack combo. + if (data.ketuHydroBuffIsSpreadFirst === true) + return output.spreadThenRoleStacks!(); + else if (data.ketuHydroBuffIsSpreadFirst === false) + return output.roleStacksThenSpread!(); + return output.roleStacks!(); + }, + run: (data) => data.ketuStackTargets = [], + outputStrings: { + roleStacks: { + en: 'Role Stacks', + de: 'Rollengruppe sammeln', + }, + spreadThenRoleStacks: { + en: 'Spread => Role Stacks', + de: 'Verteilen => Rollengruppe sammeln', + }, + roleStacksThenSpread: { + en: 'Role Stacks => Spread', + de: 'Rollengruppe sammeln => Verteilen', + }, + }, + }, + { + id: 'AAIS Ketuduke Receding Twintides', + type: 'StartsUsing', + netRegex: { id: '8AE7', source: 'Ketuduke', capture: false }, + alertText: (data, _matches, output) => { + if (data.ketuHydroBuffIsRoleStacks) + return output.outInRoleStacks!(); + return output.outInStacks!(); + }, + run: (data) => data.ketuTwintidesNext = 'in', + outputStrings: { + outInStacks: { + en: 'Out => In + Stacks', + de: 'Raus => Rein + sammeln', + }, + outInRoleStacks: { + en: 'Out => In + Role Stacks', + de: 'Raus => Rein + Rollengruppe sammeln', + }, + }, + }, + { + id: 'AAIS Ketuduke Encroaching Twintides', + type: 'StartsUsing', + netRegex: { id: '8AE9', source: 'Ketuduke', capture: false }, + alertText: (data, _matches, output) => { + if (data.ketuHydroBuffIsRoleStacks) + return output.inOutRoleStacks!(); + return output.inOutStacks!(); + }, + run: (data) => data.ketuTwintidesNext = 'out', + outputStrings: { + inOutStacks: { + en: 'In => Out + Stacks', + de: 'Rein => Raus + sammeln', + }, + inOutRoleStacks: { + en: 'In => Out + Role Stacks', + de: 'Rein => Raus + Rollengruppe sammeln', + }, + }, + }, + { + id: 'AAIS Ketuduke Twintides Followup', + type: 'Ability', + // 8AE0 = Sphere Shatter, which happens slightly after the Twintides hit. + // You can technically start moving along the safe Sphere Shatter side 0.5s earlier + // after the initial out/in, but this is hard to explain. + netRegex: { id: '8AE0', source: 'Ketuduke', capture: false }, + suppressSeconds: 5, + infoText: (data, _matches, output) => { + const mech = data.ketuTwintidesNext; + if (mech === undefined) + return; + const mechStr = output[mech]!(); + const stackStr = data.ketuHydroBuffIsRoleStacks ? output.roleStacks!() : output.stack!(); + return output.text!({ inOut: mechStr, stack: stackStr }); + }, + run: (data) => delete data.ketuTwintidesNext, + outputStrings: { + text: { + en: '${inOut} + ${stack}', + de: '${inOut} + ${stack}', + }, + in: Outputs.in, + out: Outputs.out, + stack: { + en: 'Stacks', + de: 'Sammeln', + }, + roleStacks: { + en: 'Role Stacks', + de: 'Rollengruppe sammeln', + }, + }, + }, + { + id: 'AAIS Ketuduke Spring Crystals 2', + type: 'AddedCombatant', + netRegex: { npcNameId: '12607', capture: false }, + condition: (data) => data.ketuSpringCrystalCount === 2 && data.ketuCrystalAdd.length === 4, + // We could call this absurdly early, but knowing this doesn't help with anything + // until you know what your debuff is, so move it later both so it is less absurd + // futuresight and so you don't have to remember it as long. + delaySeconds: 5, + alertText: (data, _matches, output) => { + const horizontal = data.ketuCrystalAdd.filter((x) => isHorizontalCrystal(x)); + const vertical = data.ketuCrystalAdd.filter((x) => !isHorizontalCrystal(x)); + if (horizontal.length !== 2 || vertical.length !== 2) + return; + + // Crystal positions are always -15, -5, 5, 15. + + // Check if any verticals are on the outer vertical edges. + for (const line of vertical) { + const y = parseFloat(line.y); + if (y < -10 || y > 10) + return output.eastWestSafe!(); + } + + // Check if any horizontals are on the outer horizontal edges. + for (const line of horizontal) { + const x = parseFloat(line.x); + if (x < -10 || x > 10) + return output.northSouthSafe!(); + } + + return output.cornersSafe!(); + }, + outputStrings: { + northSouthSafe: { + en: 'North/South', + de: 'Norden/Süden', + }, + eastWestSafe: { + en: 'East/West', + de: 'Osten/Westen', + }, + cornersSafe: { + en: 'Corners', + de: 'Ecken', + }, + }, + }, + { + id: 'AAIS Ketuduke Angry Seas', + type: 'StartsUsing', + netRegex: { id: '8AE1', source: 'Ketuduke', capture: false }, + alertText: (data, _matches, output) => { + if (data.ketuHydroBuffIsSpreadFirst) + return output.knockbackSpread!(); + if (data.ketuHydroBuffIsRoleStacks) + return output.knockbackRoleStacks!(); + return output.knockbackStacks!(); + }, + outputStrings: { + knockbackSpread: { + en: 'Knockback => Spread', + de: 'Rückstoß => verteilen', + }, + knockbackStacks: { + en: 'Knockback => Stacks', + de: 'Rückstoß => sammeln', + }, + knockbackRoleStacks: { + en: 'Knockback => Role Stacks', + de: 'Rückstoß => Rollengruppe sammeln', + }, + }, + }, + // ---------------- second trash ---------------- + { + id: 'AAIS Wood Golem Ancient Aero III', + type: 'StartsUsing', + netRegex: { id: '8BD2', source: 'Aloalo Wood Golem' }, + condition: (data) => data.CanSilence(), + response: Responses.interrupt('alarm'), + }, + { + id: 'AAIS Wood Golem Tornado', + type: 'StartsUsing', + netRegex: { id: '8BD3', source: 'Aloalo Wood Golem' }, + response: (data, matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + tornadoOn: { + en: 'Away from ${player}', + de: 'Weg von ${player}', + }, + tornadoOnYou: { + en: 'Tornado on YOU', + de: 'Tornado auf DIR', + }, + }; + + if (data.me === matches.target) + return { alertText: output.tornadoOnYou!() }; + return { infoText: output.tornadoOn!({ player: data.party.member(matches.target) }) }; + }, + }, + { + id: 'AAIS Wood Golem Tornado Bind', + type: 'GainsEffect', + netRegex: { effectId: 'EC0' }, + condition: (data) => data.CanCleanse(), + infoText: (data, matches, output) => { + return output.text!({ player: data.party.member(matches.target) }); + }, + outputStrings: { + text: { + en: 'Cleanse ${player}', + de: 'Reinige ${player}', + }, + }, + }, + { + id: 'AAIS Wood Golem Ovation', + type: 'StartsUsing', + netRegex: { id: '8BD4', source: 'Aloalo Wood Golem', capture: false }, + response: Responses.getBehind('info'), + }, + { + id: 'AAIS Islekeeper Gravity Force', + type: 'StartsUsing', + netRegex: { id: '8C3A', source: 'Aloalo Islekeeper' }, + response: Responses.stackMarkerOn(), + }, + { + id: 'AAIS Islekeeper Isle Drop', + type: 'StartsUsing', + netRegex: { id: '8C3C', source: 'Aloalo Islekeeper', capture: false }, + infoText: (_data, _matches, output) => output.text!(), + outputStrings: { + text: { + en: 'Get Behind + Out', + de: 'Geh nach Hinten + Raus', + }, + }, + }, + { + id: 'AAIS Islekeeper Ancient Quaga', + type: 'StartsUsing', + netRegex: { id: '8C39', source: 'Aloalo Islekeeper', capture: false }, + response: Responses.bleedAoe(), + }, + { + id: 'AAIS Islekeeper Ancient Quaga Enrage', + type: 'StartsUsing', + netRegex: { id: 'TODO', source: 'Aloalo Islekeeper', capture: false }, + alarmText: (_data, _matches, output) => output.text!(), + outputStrings: { + text: { + en: 'Kill Islekeeper!', + de: 'Wächter besiegen!', + }, + }, + }, + // ---------------- Lala ---------------- + { + id: 'AAIS Lala Inferno Theorem', + type: 'StartsUsing', + netRegex: { id: '8C05', source: 'Lala', capture: false }, + response: Responses.aoe(), + }, + { + id: 'AAIS Lala Rotation Tracker', + type: 'HeadMarker', + netRegex: { id: ['01E4', '01E5'], target: 'Lala' }, + run: (data, matches) => data.lalaBossRotation = matches.id === '01E4' ? 'clock' : 'counter', + }, + { + id: 'AAIS Lala Angular Addition Tracker', + type: 'Ability', + netRegex: { id: ['8BE0', '8D2F'], source: 'Lala' }, + run: (data, matches) => data.lalaBossTimes = matches.id === '8BE0' ? 3 : 5, + }, + { + id: 'AAIS Lala Arcane Blight', + type: 'StartsUsing', + netRegex: { id: ['8BE2', '8BE3', '8BE4', '8BE5'], source: 'Lala' }, + alertText: (data, matches, output) => { + const initialDir = { + '8BE2': 2, // initial back safe + '8BE3': 0, // initial front safe + '8BE4': 1, // initial right safe + '8BE5': 3, // initial left safe + }[matches.id]; + if (initialDir === undefined) + return; + if (data.lalaBossTimes === undefined) + return; + if (data.lalaBossRotation === undefined) + return; + const rotationFactor = data.lalaBossRotation === 'clock' ? 1 : -1; + const finalDir = (initialDir + rotationFactor * data.lalaBossTimes + 8) % 4; + + const diff = (finalDir - initialDir + 4) % 4; + if (diff !== 1 && diff !== 3) + return; + return { + 0: output.front!(), + 1: output.right!(), + 2: output.back!(), + 3: output.left!(), + }[finalDir]; + }, + run: (data) => { + delete data.lalaBossTimes; + delete data.lalaBossRotation; + }, + outputStrings: { + front: Outputs.front, + back: Outputs.back, + left: Outputs.left, + right: Outputs.right, + }, + }, + { + id: 'AAIS Lala Analysis Collect', + type: 'GainsEffect', + netRegex: { effectId: ['E8E', 'E8F', 'E90', 'E91'] }, + condition: Conditions.targetIsYou(), + run: (data, matches) => { + const effectMap: { [effectId: string]: typeof data.lalaUnseen } = { + 'E8E': 'front', + 'E8F': 'back', + 'E90': 'right', + 'E91': 'left', + } as const; + data.lalaUnseen = effectMap[matches.effectId]; + }, + }, + { + id: 'AAIS Lala Times Collect', + type: 'GainsEffect', + netRegex: { effectId: ['E89', 'ECE'] }, + condition: Conditions.targetIsYou(), + run: (data, matches) => { + const effectMap: { [effectId: string]: typeof data.lalaPlayerTimes } = { + 'E89': 3, + 'ECE': 5, + } as const; + data.lalaPlayerTimes = effectMap[matches.effectId]; + }, + }, + { + id: 'AAIS Lala Player Rotation Collect', + type: 'HeadMarker', + netRegex: { id: ['01ED', '01EE'] }, + condition: Conditions.targetIsYou(), + run: (data, matches) => { + const idMap: { [id: string]: typeof data.lalaPlayerRotation } = { + '01ED': 'counter', + '01EE': 'clock', + } as const; + data.lalaPlayerRotation = idMap[matches.id]; + }, + }, + { + id: 'AAIS Lala Targeted Light', + type: 'StartsUsing', + netRegex: { id: '8CE0', source: 'Lala', capture: false }, + alertText: (data, _matches, output) => { + const initialUnseen = data.lalaUnseen; + if (initialUnseen === undefined) + return; + + const initialDir = { + front: 0, + right: 1, + back: 2, + left: 3, + }[initialUnseen]; + + const rotation = data.lalaPlayerRotation; + if (rotation === undefined) + return; + const times = data.lalaPlayerTimes; + if (times === undefined) + return; + + // The safe spot rotates, so the player counter-rotates. + const rotationFactor = rotation === 'clock' ? -1 : 1; + const finalDir = (initialDir + rotationFactor * times + 8) % 4; + + return { + 0: output.front!(), + 1: output.right!(), + 2: output.back!(), + 3: output.left!(), + }[finalDir]; + }, + run: (data) => { + delete data.lalaUnseen; + delete data.lalaPlayerTimes; + }, + outputStrings: { + front: { + en: 'Face Towards Lala', + de: 'Lala anschauen', + }, + back: { + en: 'Look Away from Lala', + de: 'Von Lala weg schauen', + }, + left: { + en: 'Left Flank towards Lala', + de: 'Linke Seite zu Lala zeigen', + }, + right: { + en: 'Right Flank towards Lala', + de: 'Rechte Seite zu Lala zeigen', + }, + }, + }, + { + id: 'AAIS Lala Strategic Strike', + type: 'StartsUsing', + netRegex: { id: '8C04', source: 'Lala' }, + response: Responses.tankBuster(), + }, + { + id: 'AAIS Lala Planar Tactics', + type: 'GainsEffect', + // E8B = Surge Vector + // E8C = Subtractive Suppressor Alpha + netRegex: { effectId: ['E8C', 'E8B'] }, + condition: (data, matches) => { + data.lalaSubAlpha.push(matches); + return data.lalaSubAlpha.length === 6; + }, + durationSeconds: 7, + // Only run once, as Surge Vector is used again. + suppressSeconds: 9999999, + response: (data, _matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + one: { + en: 'One', + de: 'Eins', + }, + bigTwo: { + en: 'Two (stack with three)', + de: 'Zwei (sammeln mit Drei)', + }, + smallTwo: { + en: 'Two (stack with one)', + de: 'Zwei (sammeln mit Eins)', + }, + eitherTwo: { + en: 'Either Two (w/${player})', + de: 'Eine Zwei (mit ${player})', + }, + three: { + en: 'Three', + de: 'Drei', + }, + // This is just a raidcall so you can direct your friends. + smallTwoOn: { + en: '(Two with one: ${players})', + de: '(Zwei mit Eins: ${players})', + }, + unknownNum: { + en: '${num}', + de: '${num}', + }, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + }; + + // For brevity, this code calls "small two" the two that stacks with one + // and the "big two" the two that stacks with three. + const stacks = data.lalaSubAlpha.filter((x) => x.effectId === 'E8B').map((x) => x.target); + const nums = data.lalaSubAlpha.filter((x) => x.effectId === 'E8C'); + const myNumberStr = nums.find((x) => x.target === data.me)?.count; + if (myNumberStr === undefined) + return; + const myNumber = parseInt(myNumberStr); + if (myNumber < 1 || myNumber > 4) + return; + + const defaultOutput = { + alertText: output.unknownNum!({ num: output[`num${myNumber}`]!() }), + } as const; + + if (stacks.length !== 2 || nums.length !== 4) + return defaultOutput; + + const one = nums.find((x) => parseInt(x.count) === 1)?.target; + if (one === undefined) + return defaultOutput; + const isOneStack = stacks.includes(one); + const twos = nums.filter((x) => parseInt(x.count) === 2).map((x) => x.target); + + const smallTwos: string[] = []; + for (const thisTwo of twos) { + // can this two stack with the one? + const isThisTwoStack = stacks.includes(thisTwo); + if (isThisTwoStack && !isOneStack || !isThisTwoStack && isOneStack) + smallTwos.push(thisTwo); + } + + const [smallTwo1, smallTwo2] = smallTwos; + if (smallTwos.length === 0 || smallTwo1 === undefined) + return defaultOutput; + + const isPlayerSmallTwo = smallTwos.includes(data.me); + + // Worst case adjust + if (isPlayerSmallTwo && smallTwo2 !== undefined) { + const otherPlayer = smallTwo1 === data.me ? smallTwo2 : smallTwo1; + return { alarmText: output.eitherTwo!({ player: data.party.member(otherPlayer) }) }; + } + + let playerRole: string; + if (one === data.me) { + playerRole = output.one!(); + } else if (twos.includes(data.me)) { + playerRole = isPlayerSmallTwo ? output.smallTwo!() : output.bigTwo!(); + } else { + playerRole = output.three!(); + } + + if (isPlayerSmallTwo) + return { alertText: playerRole }; + + return { + alertText: playerRole, + infoText: output.smallTwoOn!({ players: smallTwos.map((x) => data.party.member(x)) }), + }; + }, + }, + { + id: 'AAIS Lala Forward March', + type: 'GainsEffect', + // E83 = Forward March + netRegex: { effectId: 'E83' }, + condition: Conditions.targetIsYou(), + delaySeconds: (_data, matches) => parseFloat(matches.duration) - 8, + durationSeconds: 4, + alertText: (data, _matches, output) => { + const rotation = data.lalaPlayerRotation; + if (rotation === undefined) + return; + const times = data.lalaPlayerTimes; + if (times === undefined) + return; + + const rotationFactor = rotation === 'clock' ? 1 : -1; + const finalDir = (rotationFactor * times + 8) % 4; + if (finalDir === 1) + return output.left!(); + if (finalDir === 3) + return output.right!(); + }, + run: (data) => { + delete data.lalaPlayerRotation; + delete data.lalaPlayerTimes; + }, + outputStrings: { + left: { + en: 'Leftward March', + de: 'Linker March', + }, + right: { + en: 'Rightward March', + de: 'Rechter March', + }, + }, + }, + { + id: 'AAIS Lala Spatial Tactics', + type: 'GainsEffect', + // E8D = Subtractive Suppressor Beta + netRegex: { effectId: 'E8D' }, + condition: Conditions.targetIsYou(), + suppressSeconds: 999999, + alertText: (_data, matches, output) => { + const num = parseInt(matches.count); + if (num < 1 || num > 4) + return; + return output[`num${num}`]!(); + }, + outputStrings: { + num1: { + en: 'One (avoid all)', + de: 'Eins (alles ausweichen)', + }, + num2: { + en: 'Two (stay middle)', + de: 'Zwei (steh in der Mitte)', + }, + num3: { + en: 'Three (adjacent to middle)', + de: 'Drei (steh neben der Mitte)', + }, + num4: { + en: 'Four', + de: 'Vier', + }, + }, + }, + // ---------------- Statice ---------------- + { + id: 'AAIS Statice Aero IV', + type: 'StartsUsing', + netRegex: { id: '8966', source: 'Statice', capture: false }, + response: Responses.aoe(), + }, + { + id: 'AAIS Statice Trick Reload', + type: 'Ability', + // 8925 = Locked and Loaded + // 8926 = Misload + netRegex: { id: ['8925', '8926'], source: 'Statice' }, + preRun: (data, matches) => data.staticeBullet.push(matches), + alertText: (data, _matches, output) => { + // Statice loads 8 bullets, two are duds. + // The first and the last are always opposite, and one of them is a dud. + // The first/ last bullets are for Trapshooting and the middle six are for Trigger Happy. + const [bullet] = data.staticeBullet; + if (data.staticeBullet.length !== 1 || bullet === undefined) + return; + const isStack = bullet.id === '8926'; + data.staticeTrapshooting = isStack ? ['stack', 'spread'] : ['spread', 'stack']; + return isStack ? output.stackThenSpread!() : output.spreadThenStack!(); + }, + infoText: (data, _matches, output) => { + const lastBullet = data.staticeBullet[data.staticeBullet.length - 1]; + if (data.staticeBullet.length < 2 || data.staticeBullet.length > 7) + return; + if (lastBullet?.id !== '8926') + return; + data.staticeTriggerHappy = data.staticeBullet.length - 1; + return output.numSafeLater!({ num: output[`num${data.staticeTriggerHappy}`]!() }); + }, + run: (data) => { + if (data.staticeBullet.length === 8) + data.staticeBullet = []; + }, + outputStrings: { + stackThenSpread: Outputs.stackThenSpread, + spreadThenStack: Outputs.spreadThenStack, + numSafeLater: { + en: '(${num} safe later)', + de: '(${num} später sicher)', + }, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + }, + }, + { + id: 'AAIS Statice Trapshooting', + type: 'StartsUsing', + netRegex: { id: ['8D1C', '8976'], source: 'Statice', capture: false }, + alertText: (data, _matches, output) => { + const mech = data.staticeTrapshooting.shift(); + if (mech === undefined) + return; + return output[mech]!(); + }, + outputStrings: { + spread: Outputs.spread, + stack: Outputs.stackMarker, + }, + }, + { + id: 'AAIS Statice Trigger Happy', + type: 'StartsUsing', + netRegex: { id: '8968', source: 'Statice', capture: false }, + alertText: (data, _matches, output) => { + const num = data.staticeTriggerHappy; + if (num === undefined) + return; + return output[`num${num}`]!(); + }, + run: (data) => delete data.staticeTriggerHappy, + outputStrings: { + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + }, + }, + { + id: 'AAIS Statice Bull\'s-eye', + type: 'GainsEffect', + netRegex: { effectId: 'E9E' }, + delaySeconds: (data, matches) => { + // Note: this collects for the pinwheeling dartboard version too. + data.staticeDart.push(matches); + return data.staticeDart.length === 3 ? 0 : 0.5; + }, + response: (data, _matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + dartOnYou: { + en: 'Dart on YOU', + de: 'Dart auf DIR', + }, + noDartOnYou: { + en: 'No Dart', + de: 'Kein Dart', + }, + flexCall: { + en: '(${player} unmarked)', + de: '(${player} unmarkiert)', + }, + }; + + if (data.staticeIsPinwheelingDartboard) + return; + + if (data.staticeDart.length === 0) + return; + + const dartTargets = data.staticeDart.map((x) => x.target); + + if (!dartTargets.includes(data.me)) + return { alertText: output.noDartOnYou!() }; + + const partyNames = data.party.partyNames; + + const flexers = partyNames.filter((x) => !dartTargets.includes(x)); + const [flex] = flexers; + const flexPlayer = flexers.length === 1 ? data.party.member(flex) : undefined; + + return { + alertText: output.dartOnYou!(), + infoText: output.flexCall!({ player: flexPlayer }), + }; + }, + run: (data) => data.staticeDart = [], + }, + { + id: 'AAIS Statice Surprise Balloon Reminder', + // This is an early reminder for the following Trigger Happy with knockback. + // However, because there's a tight window to immuune both knockbacks, + // call this ~15s early (in case anybody forgot). + type: 'StartsUsing', + netRegex: { id: '8927', source: 'Statice', capture: false }, + infoText: (data, _matches, output) => { + const num = data.staticeTriggerHappy; + if (num === undefined) + return; + // We'll re-call this out with the knockback warning. + // However, also clear `data.staticeTriggerHappy` to avoid double callouts. + data.staticePopTriggerHappyNum = num; + return output.numSafeSoon!({ num: output[`num${num}`]!() }); + }, + run: (data) => delete data.staticeTriggerHappy, + outputStrings: { + numSafeSoon: { + en: '(${num} safe soon)', + de: '(${num} gleich sicher)', + }, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + }, + }, + { + id: 'AAIS Statice Pop', + type: 'StartsUsing', + // TODO: this might need a slight delay + netRegex: { id: '896B', source: 'Statice', capture: false }, + suppressSeconds: 20, + alertText: (data, _matches, output) => { + const num = data.staticePopTriggerHappyNum; + if (num === undefined) + return output.knockback!(); + + const numStr = output[`num${num}`]!(); + return output.knockbackToNum!({ num: numStr }); + }, + run: (data) => delete data.staticePopTriggerHappyNum, + outputStrings: { + knockbackToNum: { + en: 'Knockback => ${num}', + de: 'Rückstoß => ${num}', + }, + knockback: Outputs.knockback, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + }, + }, + { + id: 'AAIS Statice Face', + type: 'GainsEffect', + // DD2 = Forward March + // DD3 = About Face + // DD4 = Left Face + // DD5 = Right Face + netRegex: { effectId: ['DD2', 'DD3', 'DD4', 'DD5'] }, + condition: Conditions.targetIsYou(), + delaySeconds: (_data, matches) => parseFloat(matches.duration) - 7, + durationSeconds: 5, + alertText: (data, matches, output) => { + let mech = output.unknown!(); + + const num = data.staticeTriggerHappy; + if (num !== undefined) { + mech = output[`num${num}`]!(); + delete data.staticeTriggerHappy; + } else { + const mechName = data.staticeTrapshooting.shift(); + mech = mechName === undefined ? output.unknown!() : output[mechName]!(); + } + + return { + 'DD2': output.forward!({ mech: mech }), + 'DD3': output.backward!({ mech: mech }), + 'DD4': output.left!({ mech: mech }), + 'DD5': output.right!({ mech: mech }), + }[matches.effectId]; + }, + outputStrings: { + forward: { + en: 'Forward March => ${mech}', + de: 'Vorwärtsmarsch => ${mech}', + }, + backward: { + en: 'Backward March => ${mech}', + de: 'Rückwärtsmarsch => ${mech}', + }, + left: { + en: 'Left March => ${mech}', + de: 'Marsch Links => ${mech}', + }, + right: { + en: 'Right March => ${mech}', + de: 'Marsch Rechts => ${mech}', + }, + spread: Outputs.spread, + stack: Outputs.stackMarker, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + unknown: Outputs.unknown, + }, + }, + { + id: 'AAIS Statice Present Box Counter', + // This happens ~1s prior to ActorControlExtra on bomb. + type: 'StartsUsing', + netRegex: { id: '8972', source: 'Statice', capture: false }, + run: (data) => data.staticePresentBoxCount++, + }, + { + id: 'AAIS Statice Present Box Missile', + type: 'Tether', + netRegex: { source: 'Surprising Missile', id: '0011' }, + delaySeconds: (data, matches) => { + data.staticeMissileTether.push(matches); + return data.staticeMissileTether.length === 2 ? 0 : 0.5; + }, + durationSeconds: 7, + response: (data, _matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + missileOnYou: { + en: 'Bait Tethers => Missile Spread', + de: 'Verbindungen ködern => Verteilen mit Raketen', + }, + }; + + if (data.staticeMissileTether.length !== 2) + return; + + const missileTether = data.staticeMissileTether.find((x) => x.target === data.me); + if (missileTether === undefined) + return; + + return { alertText: output.missileOnYou!() }; + }, + run: (data) => data.staticeMissileTether = [], + }, + { + id: 'AAIS Statice Present Box Claw', + type: 'Tether', + netRegex: { source: 'Surprising Claw', id: '0011' }, + delaySeconds: (data, matches) => { + data.staticeClawTether.push(matches); + return data.staticeClawTether.length === 2 ? 0 : 0.5; + }, + durationSeconds: 7, + alertText: (data, _matches, output) => { + if (data.staticeClawTether.length !== 2) + return; + if (!data.staticeClawTether.map((x) => x.target).includes(data.me)) + return; + return output.stack!(); + }, + run: (data) => data.staticeClawTether = [], + outputStrings: { + stack: { + en: 'Juke Claw => Stack', + de: 'Zieh Klaue => Sammeln', + }, + }, + }, + { + id: 'AAIS Statice Burning Chains', + type: 'GainsEffect', + netRegex: { effectId: '301' }, + condition: Conditions.targetIsYou(), + // TODO: add a strategy for dart colors and say where to go here + // for the Pinwheeling Dartboard if you have a dart. + response: Responses.breakChains(), + }, + { + id: 'AAIS Statice Shocking Abandon', + type: 'StartsUsing', + netRegex: { id: '8965', source: 'Statice' }, + response: Responses.tankBuster(), + }, + { + id: 'AAIS Statice Pinwheeling Dartboard Tracker', + type: 'StartsUsing', + netRegex: { id: '8CBF', source: 'Statice', capture: false }, + run: (data) => data.staticeIsPinwheelingDartboard = true, + }, + { + id: 'AAIS Statice Pinwheeling Dartboard Color', + type: 'AddedCombatant', + netRegex: { npcNameId: '12507' }, + durationSeconds: 6, + response: (data, matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + dartOnYou: { + en: 'Dart (w/${player})', + de: 'Dart (mit ${player})', + }, + noDartOnYou: { + en: 'No Dart', + de: 'Kein Dart', + }, + blue: { + en: 'Avoid Blue', + de: 'Vermeide Blau', + }, + red: { + en: 'Avoid Red', + de: 'Vermeide Rot', + }, + yellow: { + en: 'Avoid Yellow', + de: 'Vermeide Gelb', + }, + }; + + let infoText: string | undefined; + + const centerX = -200; + const centerY = 0; + const x = parseFloat(matches.x) - centerX; + const y = parseFloat(matches.y) - centerY; + + // 12 pie slices, the edge of the first one is directly north. + // It goes in B R Y order repeating 4 times. + // The 0.5 subtraction (12 - 0.5 = 11.5) is because the Homing Pattern + // lands directly in the middle of a slice. + const dir12 = Math.round(6 - 6 * Math.atan2(x, y) / Math.PI + 11.5) % 12; + + const colorOffset = dir12 % 3; + const colorMap: { [offset: number]: typeof data.staticeHomingColor } = { + 0: 'blue', + 1: 'red', + 2: 'yellow', + } as const; + + data.staticeHomingColor = colorMap[colorOffset]; + if (data.staticeHomingColor !== undefined) + infoText = output[data.staticeHomingColor]!(); + + if (data.staticeDart.length !== 2) + return { infoText }; + + const dartTargets = data.staticeDart.map((x) => x.target); + if (!dartTargets.includes(data.me)) + return { alertText: output.noDartOnYou!(), infoText: infoText }; + + const [target1, target2] = dartTargets; + if (target1 === undefined || target2 === undefined) + return { infoText }; + const otherTarget = data.party.member(target1 === data.me ? target2 : target1); + return { alertText: output.dartOnYou!({ player: otherTarget }), infoText: infoText }; + }, + }, + { + id: 'AAIS Statice Pinwheeling Dartboard Mech', + type: 'HeadMarker', + netRegex: { id: headmarkerIds.tethers }, + condition: (data) => data.staticeIsPinwheelingDartboard, + delaySeconds: (data, matches) => { + data.staticeDartboardTether.push(matches); + return data.staticeDartboardTether.length === 2 ? 0 : 0.5; + }, + alertText: (data, _matches, output) => { + if (data.staticeDartboardTether.length !== 2) + return; + + const tethers = data.staticeDartboardTether.map((x) => x.target); + + if (tethers.includes(data.me)) { + const [tether1, tether2] = tethers; + const other = data.party.member(tether1 === data.me ? tether2 : tether1); + return output.tether!({ player: other }); + } + + const partyNames = data.party.partyNames; + const nonTethers = partyNames.filter((x) => !tethers.includes(x)); + const [stack1, stack2] = nonTethers; + const other = data.party.member(stack1 === data.me ? stack2 : stack1); + return output.stack!({ player: other }); + }, + run: (data) => data.staticeDartboardTether = [], + outputStrings: { + // TODO: maybe this should remind you of dart color + tether: { + en: 'Tether w/${player}', + de: 'Verbindung mit ${player}', + }, + stack: { + en: 'Stack w/${player}', + de: 'Sammeln mit ${player}', + }, + }, + }, + ], + timelineReplace: [ + { + 'locale': 'en', + 'replaceText': { + 'Far Tide/Near Tide': 'Far/Near Tide', + 'Hydrobullet/Hydrofall': 'Hydrobullet/fall', + 'Hydrofall/Hydrobullet': 'Hydrofall/bullet', + 'Receding Twintides/Encroaching Twintides': 'Receding/Encroaching Twintides', + }, + }, + { + 'locale': 'de', + 'replaceSync': { + 'Aloalo Golem': 'Aloalo-Holzgolem', + 'Aloalo Islekeeper': 'Aloalo-Wächter', + 'Aloalo Kiwakin': 'Aloalo-Kiwakin', + 'Aloalo Monk': 'Aloalo-Mönch', + 'Aloalo Ray': 'Aloalo-Rochen', + 'Aloalo Snipper': 'Aloalo-Schnippler', + 'Aloalo Wood Golem': 'Aloalo-Holzgolem', + 'Aloalo Zaratan': 'Aloalo-Zaratan', + 'Arcane Font': 'arkan(?:e|er|es|en) Körper', + 'Arcane Globe': 'arkan(?:e|er|es|en) Kugel', + 'Ball of Fire': 'Feuerkugel', + 'Bomb': 'Bombe', + 'Ketuduke': 'Ketuduke', + 'Lala': 'Lala', + 'Needle': 'Nadel', + 'Spring Crystal': 'Wasserquell-Kristall', + 'Statice': 'Statice', + 'Surprising Claw': 'Überraschungsklaue', + 'Surprising Missile': 'Überraschungsrakete', + 'Surprising Staff': 'Überraschungsstab', + 'The Dawn Trial': 'Morgenrot-Probe', + 'The Dusk Trial': 'Abendrot-Probe', + 'The Midnight Trial': 'Vollmond-Probe', + }, + 'replaceText': { + '\\(buff\\)': '(Statusveränderung)', + '\\(cast\\)': '(wirken)', + 'Aero II': 'Windra', + 'Aero IV': 'Windka', + 'Analysis': 'Analyse', + 'Angry Seas': 'Zornige Fluten', + 'Angular Addition': 'Winkeladdition', + 'Arcane Array': 'Arkanes Spektrum', + 'Arcane Blight': 'Arkane Fäule', + 'Arcane Mine': 'Arkane Mine', + 'Arcane Plot': 'Arkane Flur', + 'Arcane Point': 'Arkane Stätte', + 'Beguiling Glitter': 'Irrleuchten', + 'Blowing Bubbles': 'Pusteblasen', + 'Bright Pulse': 'Glühen', + 'Bubble Net': 'Blasennetz', + 'Burning Chains': 'Brennende Ketten', + 'Burst': 'Explosion', + 'Constructive Figure': 'Ruf der Schöpfer', + 'Dartboard of Dancing Explosives': 'Darts und Drehung', + 'Encroaching Twintides': 'Ring der Zwiegezeiten', + 'Explosive Theorem': 'Arkane Fäule', + 'Faerie Ring': 'Feenring', + 'Far Tide': 'Ring der Gezeiten', + 'Fire Spread': 'Brandstiftung', + 'Fireworks': 'Feuerwerk', + 'Fluke Gale': 'Flossensturm', + 'Fluke Typhoon': 'Flossentaifun', + 'Hundred Lashings': 'Auspeitschung', + 'Hydrobomb': 'Hydro-Bombe', + 'Hydrobullet': 'Hydro-Kugel', + 'Hydrofall': 'Hydro-Sturz', + 'Inferno Divide': 'Infernale Teilung', + 'Inferno Theorem': 'Infernales Theorem', + 'Locked and Loaded': 'Geladen und entsichert', + 'Misload': 'Fehlladung', + 'Near Tide': 'Kreis der Gezeiten', + 'Pinwheeling Dartboard': 'Darts und Rad', + 'Planar Tactics': 'Flächentaktiken', + 'Pop': 'Platzen', + 'Powerful Light': 'Entladenes Licht', + 'Present Box': 'Geschenkschachtel', + 'Radiance': 'Radiation', + 'Receding Twintides': 'Kreis der Zwiegezeiten', + 'Ring a Ring o\' Explosions': 'Ringel-Ringel-Bombe', + '(?in +# 8AE8 Near Tide fast cast and damage for second out during in->out with 8AE9 Encroaching Twintides +# 8AE9 Encroaching Twintides cast and damage for initial in during in->out +# 8AEA Far Tide fast cast and damage for second in during out->in with 8AE7 Receding Twintides +# 8AD0 Hydrobomb self-targeted cast for 8AEB puddles +# 8AEB Hydrobomb cast and damage for 3x puddles duruing 8ABD Blowing Bubbles +# 8AD4 Tidal Roar self-targeted cast for raidwide aoe +# 8AED Tidal Roar damage from 8AD4 +# TODO Tidal Roar cast and enrage damage +# 8C6D Hydrobullet self-targeted "spread second" ability before Blowing Bubbles + + +#~~~~~~# +# LALA # +#~~~~~~# + +# -p 8C05:2011.1 +# -ii 8BE6 8BE9 8CE1 8BF1 8BF2 8BFF 8BF3 8BF4 + +# The Dusk Trial will be sealed off +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1147" } window 10000,0 +2006.1 "--sync--" StartsUsing { id: "8C05", source: "Lala" } window 20,20 +2011.1 "Inferno Theorem" Ability { id: "8C05", source: "Lala" } + +2013.2 "--middle--" Ability { id: "8874", source: "Lala" } +2018.3 "Angular Addition" Ability { id: ["8BE0", "8D2F"], source: "Lala" } +2026.4 "Arcane Blight" Ability { id: ["8BE2", "8BE3", "8BE4", "8BE5"], source: "Lala" } + +2029.6 "--middle--" Ability { id: "8874", source: "Lala" } +2034.7 "Analysis" Ability { id: "8BEC", source: "Lala" } +2039.8 "Arcane Array 1" Ability { id: "8BE7", source: "Lala" } +2044.9 "Angular Addition" Ability { id: ["8BE0", "8D2F"], source: "Lala" } +2045.6 "Bright Pulse" Ability { id: "8BE8", source: "Lala" } +2046.9 "Radiance 1" Ability { id: "8BEB", source: "Arcane Globe" } +2053.0 "Arcane Blight" Ability { id: ["8BE2", "8BE3", "8BE4", "8BE5"], source: "Lala" } +# This can be +1.2s if it's on the final square instead of penultimate. +2054.1 "Radiance 2" #Ability { id: "8BEB", source: "Arcane Globe" } +2061.2 "Targeted Light" Ability { id: "8CE0", source: "Lala" } + +2072.5 "Strategic Strike" Ability { id: "8C04", source: "Lala" } + +2085.6 "Planar Tactics" Ability { id: "8BEF", source: "Lala" } +2100.7 "Arcane Mine" Ability { id: "8BF0", source: "Lala" } +2108.6 "Symmetric Surge x2" Ability { id: "8BF5", source: "Lala" } + +2112.8 "Inferno Theorem" Ability { id: "8C05", source: "Lala" } +2122.9 "Strategic Strike" Ability { id: "8C04", source: "Lala" } + +2131.1 "--middle--" Ability { id: "8874", source: "Lala" } +2138.3 "Spatial Tactics" Ability { id: "8BF7", source: "Lala" } +2143.4 "Arcane Array 2" Ability { id: "8BF6", source: "Lala" } +2149.2 "Bright Pulse" Ability { id: "8BE8", source: "Lala" } +2150.5 "Inferno Divide 1" Ability { id: "8BEA", source: "Arcane Font" } window 1,1 +2150.5 "Radiance" Ability { id: "8D20", source: "Arcane Globe" } +2152.9 "Inferno Divide 2" Ability { id: "8BEA", source: "Arcane Font" } window 1,1 +2156.6 "Inferno Divide 3" Ability { id: "8BEA", source: "Arcane Font" } window 1,1 +2157.6 "Angular Addition" Ability { id: ["8BE0", "8D2F"], source: "Lala" } +2157.8 "Inferno Divide 4" Ability { id: "8BEA", source: "Arcane Font" } window 1,1 +2160.2 "Inferno Divide 5" Ability { id: "8BEA", source: "Arcane Font" } window 1,1 +2165.6 "Arcane Blight" Ability { id: ["8BE2", "8BE3", "8BE4", "8BE5"], source: "Lala" } + +2173.7 "Inferno Theorem" Ability { id: "8C05", source: "Lala" } +2184.8 "Inferno Theorem" Ability { id: "8C05", source: "Lala" } + +2196.9 "Symmetric Surge" Ability { id: "8BF8", source: "Lala" } +2202.0 "Constructive Figure" Ability { id: "8BFA", source: "Lala" } +2207.1 "Arcane Plot" Ability { id: "8BF9", source: "Lala" } +2212.9 "Bright Pulse" Ability { id: "8BE8", source: "Lala" } +2221.2 "Arcane Point" Ability { id: "8BFC", source: "Lala" } +2221.8 "Aero II" Ability { id: "8BFB", source: "Aloalo Golem" } +2222.0 "Powerful Light" Ability { id: "8BFD", source: "Lala" } +2230.3 "Explosive Theorem" Ability { id: "8BFE", source: "Lala" } +2234.7 "Symmetric Surge x2" Ability { id: "8BF5", source: "Lala" } +2235.4 "Telluric Theorem" Ability { id: "8C00", source: "Lala" } + +2248.4 "Strategic Strike" Ability { id: "8C04", source: "Lala" } +2256.5 "Inferno Theorem" Ability { id: "8C05", source: "Lala" } + +2263.6 "--middle--" Ability { id: "8874", source: "Lala" } +2269.0 "Analysis" Ability { id: "8BEC", source: "Lala" } +2274.1 "Arcane Array 3" Ability { id: "8BE7", source: "Lala" } +2279.2 "Angular Addition" Ability { id: ["8BE0", "8D2F"], source: "Lala" } +2279.9 "Bright Pulse" Ability { id: "8BE8", source: "Lala" } +2281.2 "Radiance 1" Ability { id: "8BEB", source: "Arcane Globe" } +2287.3 "Arcane Blight" Ability { id: ["8BE2", "8BE3", "8BE4", "8BE5"], source: "Lala" } +2290.9 "Radiance 2" Ability { id: "8BEB", source: "Arcane Globe" } +2295.6 "Targeted Light" Ability { id: "8CE0", source: "Lala" } +2306.7 "Strategic Strike" Ability { id: "8C04", source: "Lala" } + +2316.8 "Inferno Theorem" Ability { id: "8C05", source: "Lala" } + +2319.9 "--sync--" StartsUsing { id: "TODO", source: "Lala" } window 20,20 +2329.9 "Inferno Theorem Enrage" Ability { id: "TODO", source: "Lala" } + + +# ALL ENCOUNTER ABILITIES +# 368 attack auto damage from Lala +# 8874 --sync-- repositioning for Lala +# 8BE0 Angular Addition self-targeted ability to give boss III +# 8BE2 Arcane Blight self-targeted cast for initial back-safe 270 degree rotating cleave +# 8BE3 Arcane Blight self-targeted cast for initial front-safe 270 degree rotating cleave +# 8BE4 Arcane Blight self-targeted cast for initial east-safe 270 degree rotating cleave +# 8BE5 Arcane Blight self-targeted cast for initial west-safe 270 degree rotating cleave +# 8BE6 Arcane Blight cast and damage from 270 degree rotating cleave +# 8BE7 Arcane Array self-targeted cast to summon moving blue squares (#1) +# 8BE8 Bright Pulse cast and damage for initial blue square +# 8BE9 Bright Pulse damage from moving blue square +# 8BEA Inferno Divide orange square cross explosion damage during Spatial Tactics +# 8BEB Radiance damage from Arcane Globe being hit by a blue square (Arcane Array #1, #3) +# 8BEC Analysis self-targeted cast before giving players +# 8BEF Planar Tactics self-targeted cast before Arcane Mines +# 8BF0 Arcane Mine self-targeted cast to create 8 Arcane Mine squares +# 8BF1 Arcane Mine cast and damage for initial Arcane Mine squares +# 8BF2 Arcane Combustion damage from walking over an Arcane Mine +# 8BF3 Massive Explosion damage from failing to resolve Subractive Suppressor Alpha +# 8BF4 Massive Explosion damage from failing to resolve Subractive Suppressor Beta +# 8BF5 Symmetric Surge damage from two person stack that gives magic vuln up +# 8BF6 Arcane Array self-targeted cast to summon moving blue squares (#2) +# 8BF7 Spatial Tactics self-targeted cast prior to Arcane Array 2 +# 8BF8 Symmetric Surge self-targeted cast before this mechanic +# 8BF9 Arcane Plot self-targeted cast to summon blue squares for Symmetric Surge +# 8BFA Constructive Figure self-targeted cast that summons Aloalo Golem on edge +# 8BFB Aero II cast and line damage from Aloalo Golem during Symmetric Surge +# 8BFC Arcane Point self-targeted cast that gives players 8BFD Powerful Light spreads +# 8BFD Powerful Light spread damage on players that turn the squares they are on blue +# 8BFE Explosive Theorem self-targeted cast for very large spreads +# 8BFF Explosive Theorem cast and damage on players for spreads with Telluric Theorem puddles +# 8C00 Telluric Theorem cast and damage for large puddles from Explosive Theorem +# 8C04 Strategic Strike cast and damage for non-cleaving 3x tankbuster +# 8C05 Inferno Theorem cast and raidwide damage +# TODO Inferno Theorem cast and enrage damage +# 8CE0 Targeted Light self-targeted cast for weak spot boss tether +# 8CE1 Targeted Light cast and damage on players for 8CE0 +# 8D20 Radiance damage from Arcane Globe being hit by a blue square (Arcane Array #2) +# 8D2F Angular Addition self-targeted ability to give boss V + + +#~~~~~~~~~~~~~~~~~~~~# +# STATICE WITH A GUN # +#~~~~~~~~~~~~~~~~~~~~# + +# -p 8966:3013.8 +# -ii 8964 8925 8926 8977 8978 8969 8988 8A6A 897C 897D 8CC3 896F 8CC1 89FB TODO 8974 8975 +# -it Statice + +# Midnight Trial will be sealed off +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1148" } window 10000,0 +3008.8 "--sync--" StartsUsing { id: "8966", source: "Statice" } window 20,20 +3013.8 "Aero IV" Ability { id: "8966", source: "Statice" } + +3018.0 "--middle--" Ability { id: "8927", source: "Statice" } +3023.4 "Trick Reload" Ability { id: "8967", source: "Statice" } +3038.2 "Trapshooting 1" Ability { id: "8D1C", source: "Statice" } +3048.6 "Trigger Happy" Ability { id: "8968", source: "Statice" } +3056.5 "Ring a Ring o' Explosions" Ability { id: "8979", source: "Statice" } +3070.6 "Trapshooting 2" Ability { id: "8976", source: "Statice" } +3074.6 "Burst" Ability { id: "897A", source: "Bomb" } + +3081.8 "--middle--" Ability { id: "8927", source: "Statice" } +3087.4 "Trick Reload" Ability { id: "8967", source: "Statice" } +3101.2 "Ring a Ring o' Explosions" Ability { id: "8979", source: "Statice" } +3106.3 "Dartboard of Dancing Explosives " Ability { id: "8CC0", source: "Statice" } +3120.1 "Trapshooting 1" Ability { id: "8976", source: "Statice" } +3122.0 "Burst" Ability { id: "897A", source: "Bomb" } +3125.3 "Uncommon Ground" Ability { id: "8971", source: "Statice" } + +3132.3 "--middle--" Ability { id: "8927", source: "Statice" } +3137.7 "Surprise Balloon" Ability { id: "8927", source: "Statice" } +3144.8 "Beguiling Glitter" Ability { id: "8980", source: "Statice" } +3149.8 "Surprise Needle 1" #Ability { id: "896C", source: "Needle" } +3150.7 "Pop 1" Ability { id: "896B", source: "Statice" } +3151.5 "Surprise Needle 2" #Ability { id: "896C", source: "Needle" } +3152.4 "Trigger Happy" Ability { id: "8968", source: "Statice" } +3153.2 "Surprise Needle 3" #Ability { id: "896C", source: "Needle" } +3154.9 "Surprise Needle 4" #Ability { id: "896C", source: "Needle" } +3155.6 "Pop 2" Ability { id: "896B", source: "Statice" } +3160.4 "Trapshooting 2" Ability { id: "8976", source: "Statice" } +3172.5 "Aero IV" Ability { id: "8966", source: "Statice" } + +3179.7 "--untargetable--" +3179.7 "--middle--" Ability { id: "8927", source: "Statice" } +3184.1 "Ring a Ring o' Explosions" Ability { id: "8979", source: "Statice" } +3189.2 "Present Box 1" Ability { id: "8972", source: "Statice" } +3194.3 "Fireworks (cast)" Ability { id: "897B", source: "Statice" } +3204.0 "Fireworks" Ability { id: "897C", source: "Statice" } +3204.2 "Burst" Ability { id: "897A", source: "Bomb" } +3204.3 "Faerie Ring" Ability { id: "8973", source: "Surprising Staff" } + +3206.3 "--targetable--" +3212.5 "Shocking Abandon" Ability { id: "8965", source: "Statice" } + +3222.7 "Pinwheeling Dartboard" Ability { id: "8CBF", source: "Statice" } +3231.4 "Fireworks (cast)" Ability { id: "897B", source: "Statice" } +3233.4 "Fire Spread" Ability { id: "8952", source: "Statice" } duration 11 +3241.3 "Fireworks" Ability { id: "897C", source: "Statice" } +3241.6 "Uncommon Ground" Ability { id: "8971", source: "Statice" } +3253.6 "Aero IV" Ability { id: "8966", source: "Statice" } + +3260.8 "--middle--" Ability { id: "8927", source: "Statice" } +3266.5 "Beguiling Glitter" Ability { id: "8980", source: "Statice" } +3273.6 "Trick Reload" Ability { id: "8967", source: "Statice" } +3288.4 "Trapshooting 1" Ability { id: "8D1C", source: "Statice" } +3295.5 "Present Box 2" Ability { id: "8972", source: "Statice" } +3302.2 "Ring a Ring o' Explosions" Ability { id: "8979", source: "Statice" } +3309.6 "Trigger Happy" Ability { id: "8968", source: "Statice" } +3310.2 "Faerie Ring" Ability { id: "8973", source: "Surprising Staff" } +3316.5 "Trapshooting 2" Ability { id: "8976", source: "Statice" } +3320.4 "Burst" Ability { id: "897A", source: "Bomb" } + +3327.6 "Aero IV" Ability { id: "8966", source: "Statice" } +3335.7 "Aero IV" Ability { id: "8966", source: "Statice" } + +3338.8 "--sync--" StartsUsing { id: "TODO", source: "Statice" } +3348.8 "Aero IV Enrage" Ability { id: "TODO", source: "Statice" } + + +# ALL ENCOUNTER ABILITIES +# 8925 Locked and Loaded ability during 8967 Trick Reload when a bullet is in the gun +# 8926 Misload ability during 8967 Trick Reload when a bullet missed the gun oops +# 8927 --sync-- repositioning from Statice +# 8964 --sync-- auto damage from Statice +# 8965 Shocking Abandon cast and tankbuster damage +# 8966 Aero IV cast and raidwide damage +# 8967 Trick Reload self-targeted cast to load gun with 8925/8926 +# 8968 Trigger Happy self-targeted cast for limit cut dart board +# 8969 Trigger Happy cast and damage for limit cut dart board (filled pie slice) +# 8927 Surprise Balloon self-targeted cast +# 896B Pop knockback from Surprise Balloon being popped +# 896C Surprise Needle short cast and ability blue line aoe from needle adds that pop balloons +# 8971 Uncommon Ground light damage on people who are not on a dartboard color with Bull's-eye +# 8972 Present Box self-targeted cast for bombs/donuts/missiles/hands +# 8973 Faerie Ring cast and damage for donut rings during Present Box +# 8974 Burst high damage from running into Surprising Missile tethered add +# 8975 Death by Claw high damage from running into Surprising Claw tethered add +# 8976 Trapshooting self-targeted cast after Trick Reload (some instances are 8D1C) +# 8977 Trapshooting stack damage from Trick Reload +# 8978 Trapshooting spread damage from Trick Reload +# 8979 Ring a Ring o' Explosions self-targeted cast for rotating bombs +# 897A Burst cast and damage from bomb explosion +# 897B Fireworks self-targeted cast +# 897C Fireworks two person stack damage during Present Box / Pinwheeling Dartboard +# 897D Fireworks spread damage during Present Box / Pinwheeling Dartboard +# 8980 Beguiling Glitter self-targeted cast to give players Face debuffs +# 896F Fire Spread self-targeted damage for initial rotating fire (from Ball of Fire) +# 8988 Trigger Happy cast and zero damage for limit cut dart board (empty pie slice) +# 89FB Fire Spread ongoing rotating fire damage (from Statice) +# 8A6A --sync-- ability on Bomb when rotating +# TODO Aero IV cast and enrage damage +# TODO Aero IV post-enrage follow-up damage just in case +# 8CBF Pinwheeling Dartboard self-targeted cast to summon dartboard with rotating fire +# 8CC0 Dartboard of Dancing Explosives self-targeted cast for colored dartboard +# 8CC1 Burning Chains damage from not breaking chains +# 8CC3 Uncommon Ground heavy damage on people who are on the same dartboard color with Bull's-eye +# 8D1C Trapshooting self-targeted cast after Trick Reload (some instances are 8976) + + +#~~~~~~~~~# +# TRASH 1 # +#~~~~~~~~~# + +# ALL ENCOUNTER ABILITIES +# 7A56 --sync-- various auto damage (trash 1) +# 8BCF --sync-- damage from Twister tornados +# 8BC7 Lead Hook casted damage from Kiwakin 3x tankbuster +# 8BC6 Lead Hook damage from hit 2 +# 8BC4 Lead Hook damage from hit 3 +# 8BCC Water III casted damage from Snipper stack marker +# 8BC8 Sharp Strike casted damage from Kiwakin tank buster with a concussion dot +# 8BC9 Tail Screw casted damage from Kiwakin baited circle +# 8BCA Bubble Shower casted damage from Snipper front conal +# 8BCB Crab Dribble fast casted damage from Snipper back conal after Bubble Shower 8BCA +# 8C4B Hydrocannon casted damage from Ray front line +# 8BCE Expulsion casted damage from Ray "get out" +# 8BCD Electric Whorl casted damage from Ray "get in" +# 8BD1 Hydroshot casted damage from Monk knockback line with a dot +# 8C4F Cross Attack casted damage from Monk tankbuster + +#~~~~~~~~~# +# TRASH 2 # +#~~~~~~~~~# + +# TODO: does Wood Golem have an enrage?? + +# ALL ENCOUNTER ABILITIES +# 7A58 --sync-- various auto damage (trash 2) +# 8BD4 Ovation cast and damage from Wood Golem front line aoe +# 8C3A Gravity Force cast and stack damage from Islekeeper +# TODO Ancient Quaga cast and damage for Islekeeper raidwide enrage +# 8BD2 Ancient Aero III interruptable cast and damage for Wood Golem raidwide +# 8BD3 Tornado cast and damage from Wood Golem that binds the initial target and heavies all targets +# 8C39 Ancient Quaga cast and damage for Islekeeper raidwide +# 8C3C Isle Drop cast and damage for Islekeeper front circle diff --git a/ui/raidboss/data/06-ew/dungeon/another_aloalo_island.ts b/ui/raidboss/data/06-ew/dungeon/another_aloalo_island.ts new file mode 100644 index 0000000000..981f3bd6a2 --- /dev/null +++ b/ui/raidboss/data/06-ew/dungeon/another_aloalo_island.ts @@ -0,0 +1,1902 @@ +import Conditions from '../../../../../resources/conditions'; +import Outputs from '../../../../../resources/outputs'; +import { Responses } from '../../../../../resources/responses'; +import ZoneId from '../../../../../resources/zone_id'; +import { RaidbossData } from '../../../../../types/data'; +import { PluginCombatantState } from '../../../../../types/event'; +import { NetMatches } from '../../../../../types/net_matches'; +import { TriggerSet } from '../../../../../types/trigger'; + +// TODO: add callout for Monk Hydroshot target +// TODO: sc3 should say which bubble to take to the other side (for everyone) +// TODO: figure out directions for Lala for Radiance orbs +// TODO: map effects for Lala +// TODO: Lala Planar Tactics could add config strats and tell you who to stack with +// TODO: Statice colors could add config strats for role-based colors + melee flex + +export interface Data extends RaidbossData { + combatantData: PluginCombatantState[]; + ketuSpringCrystalCount: number; + ketuCrystalAdd: NetMatches['AddedCombatant'][]; + ketuHydroBuffCount: number; + ketuHydroBuffIsSpreadFirst?: boolean; + ketuHydroBuffIsRoleStacks?: boolean; + ketuBuff?: 'bubble' | 'fetters'; + ketuBuffPartner?: string; + ketuBuffCollect: NetMatches['GainsEffect'][]; + ketuStackTargets: string[]; + ketuTwintidesNext?: 'out' | 'in'; + lalaBossRotation?: 'clock' | 'counter'; + lalaBossTimes?: 3 | 5; + lalaBossInitialSafe?: 'north' | 'east' | 'south' | 'west'; + lalaUnseen?: 'front' | 'left' | 'right' | 'back'; + lalaPlayerTimes?: 3 | 5; + lalaPlayerRotation?: 'clock' | 'counter'; + lalaSubAlpha: NetMatches['GainsEffect'][]; + staticeBullet: NetMatches['Ability'][]; + staticeTriggerHappy?: number; + staticePopTriggerHappyNum?: number; + staticeTrapshooting: ('stack' | 'spread' | undefined)[]; + staticeDart: NetMatches['GainsEffect'][]; + staticePresentBoxCount: number; + staticeMissileCollect: NetMatches['AddedCombatant'][]; + staticeMissileIdToDir: { [id: string]: number }; + staticeMissileTether: NetMatches['Tether'][]; + staticeClawTether: NetMatches['Tether'][]; + staticeIsPinwheelingDartboard?: boolean; + staticeHomingColor?: 'blue' | 'yellow' | 'red'; + staticeDartboardTether: NetMatches['HeadMarker'][]; +} + +// Horizontal crystals have a heading of 0, vertical crystals are -pi/2. +const isHorizontalCrystal = (line: NetMatches['AddedCombatant']) => { + const epsilon = 0.1; + return Math.abs(parseFloat(line.heading)) < epsilon; +}; + +const headmarkerIds = { + tethers: '0061', + enumeration: '015B', +} as const; + +// TODO: this maybe should be a method on party? +const isStandardLightParty = (data: Data): boolean => { + const supports = [...data.party.healerNames, ...data.party.tankNames]; + const dps = data.party.dpsNames; + return supports.length === 2 && dps.length === 2; +}; + +const triggerSet: TriggerSet = { + id: 'AnotherAloaloIsland', + zoneId: ZoneId.AnotherAloaloIsland, + timelineFile: 'another_aloalo_island.txt', + initData: () => { + return { + combatantData: [], + ketuSpringCrystalCount: 0, + ketuCrystalAdd: [], + ketuHydroBuffCount: 0, + ketuBuffCollect: [], + ketuStackTargets: [], + lalaSubAlpha: [], + staticeBullet: [], + staticeTrapshooting: [], + staticeDart: [], + staticePresentBoxCount: 0, + staticeMissileCollect: [], + staticeMissileIdToDir: {}, + staticeMissileTether: [], + staticeClawTether: [], + staticeDartboardTether: [], + }; + }, + timelineTriggers: [ + { + id: 'AAI Lala Radiance', + regex: /^Radiance \d/, + beforeSeconds: 4, + alertText: (data, _matches, output) => { + // TODO: could figure out directions here and say "Point left at NW Orb" + const dir = data.lalaUnseen; + if (dir === undefined) + return output.orbGeneral!(); + return { + front: output.orbDirFront!(), + back: output.orbDirBack!(), + left: output.orbDirLeft!(), + right: output.orbDirRight!(), + }[dir]; + }, + outputStrings: { + orbDirFront: { + en: 'Face Towards Orb', + de: 'Den Orb anschauen', + }, + orbDirBack: { + en: 'Face Away from Orb', + de: 'Weg vom Orb schauen', + }, + orbDirLeft: { + en: 'Point Left at Orb', + de: 'Zeige links auf den Orb', + }, + orbDirRight: { + en: 'Point Right at Orb', + de: 'Zeige Rechts auf den Orb', + }, + orbGeneral: { + en: 'Point opening at Orb', + de: 'Zeige die Öffnung auf den Orb', + }, + }, + }, + ], + triggers: [ + // ---------------- first trash ---------------- + { + id: 'AAI Kiwakin Lead Hook', + type: 'StartsUsing', + netRegex: { id: '8C6E', source: 'Aloalo Kiwakin' }, + response: (data, matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + tankBusterOnYou: { + en: '3x Tankbuster on YOU', + de: '3x Tankbuster auf DIR', + }, + tankBusterOnPlayer: { + en: '3x Tankbuster on ${player}', + de: '3x Tankbuster auf ${player}', + }, + }; + + if (matches.target === data.me) + return { alertText: output.tankBusterOnYou!() }; + const target = data.party.member(matches.target); + return { infoText: output.tankBusterOnPlayer!({ player: target }) }; + }, + }, + { + id: 'AAI Kiwakin Sharp Strike', + type: 'StartsUsing', + netRegex: { id: '8C63', source: 'Aloalo Kiwakin' }, + response: Responses.tankBuster(), + }, + { + id: 'AAI Kiwakin Tail Screw', + type: 'StartsUsing', + // This is a baited targeted circle. + netRegex: { id: '8BB8', source: 'Aloalo Kiwakin', capture: false }, + response: Responses.moveAway(), + }, + { + id: 'AAI Snipper Water III', + type: 'StartsUsing', + netRegex: { id: '8C64', source: 'Aloalo Snipper' }, + response: Responses.stackMarkerOn(), + }, + { + id: 'AAI Snipper Bubble Shower', + type: 'StartsUsing', + netRegex: { id: '8BB9', source: 'Aloalo Snipper', capture: false }, + response: Responses.getBackThenFront(), + }, + { + id: 'AAI Snipper Crab Dribble', + type: 'Ability', + // Crab Dribble 8BBA has a fast cast, so trigger on Bubble Shower ability + netRegex: { id: '8BB9', source: 'Aloalo Snipper', capture: false }, + suppressSeconds: 5, + response: Responses.goFront('info'), + }, + { + id: 'AAI Ray Hydrocannon', + type: 'StartsUsing', + netRegex: { id: '8BBD', source: 'Aloalo Ray', capture: false }, + response: Responses.getBehind(), + }, + { + id: 'AAI Ray Expulsion', + type: 'StartsUsing', + netRegex: { id: '8BBF', source: 'Aloalo Ray', capture: false }, + response: Responses.getOut(), + }, + { + id: 'AAI Ray Electric Whorl', + type: 'StartsUsing', + netRegex: { id: '8BBE', source: 'Aloalo Ray', capture: false }, + response: Responses.getUnder(), + }, + { + id: 'AAI Monk Hydroshot', + type: 'StartsUsing', + netRegex: { id: '8C65', source: 'Aloalo Monk' }, + condition: Conditions.targetIsYou(), + response: Responses.knockbackOn(), + }, + { + id: 'AAI Monk Cross Attack', + type: 'StartsUsing', + netRegex: { id: '8BBB', source: 'Aloalo Monk' }, + response: Responses.tankBuster(), + }, + // ---------------- Ketuduke ---------------- + { + id: 'AAI Ketuduke Tidal Roar', + type: 'StartsUsing', + netRegex: { id: '8AD4', source: 'Ketuduke', capture: false }, + response: Responses.bleedAoe(), + }, + { + id: 'AAI Ketuduke Spring Crystals', + type: 'StartsUsing', + netRegex: { id: '8AA8', source: 'Ketuduke', capture: false }, + run: (data) => { + data.ketuSpringCrystalCount++; + // Note: cannot clear `data.ketuCrystalAdd` here as there has been at least one case + // where AddCombatant (coming from memory, so racy) is partially before this cast. + }, + }, + { + id: 'AAI Ketuduke Spring Crystals Saturate Cleanup', + type: 'StartsUsing', + netRegex: { id: ['8AAB', '8AAC'], capture: false }, + run: (data) => data.ketuCrystalAdd = [], + }, + { + id: 'AAI Ketuduke Spring Crystal Collect', + type: 'AddedCombatant', + netRegex: { npcNameId: '12607' }, + run: (data, matches) => data.ketuCrystalAdd.push(matches), + }, + { + id: 'AAI Ketuduke Bubble Net', + type: 'StartsUsing', + netRegex: { id: ['8AC5', '8AAD'], source: 'Ketuduke', capture: false }, + response: Responses.aoe(), + }, + { + id: 'AAI Ketuduke Foamy Fetters Bubble Weave', + type: 'GainsEffect', + // ECC = Foamy Fetters + // E9F = Bubble Weave + netRegex: { effectId: ['ECC', 'E9F'] }, + delaySeconds: (data, matches) => { + data.ketuBuffCollect.push(matches); + return data.ketuBuffCollect.length === 4 ? 0 : 0.5; + }, + alertText: (data, _matches, output) => { + if (data.ketuBuffCollect.length === 0) + return; + + const myBuff = data.ketuBuffCollect.find((x) => x.target === data.me)?.effectId; + if (myBuff === undefined) + return; + data.ketuBuff = myBuff === 'ECC' ? 'fetters' : 'bubble'; + data.ketuBuffPartner = data.ketuBuffCollect.find((x) => { + return x.target !== data.me && x.effectId === myBuff; + })?.target; + const player = data.party.member(data.ketuBuffPartner); + + // To avoid too many calls, we'll call this out later for the Fluke Gale + // versions of this. + if (data.ketuSpringCrystalCount === 1 || data.ketuSpringCrystalCount === 4) + return; + + if (data.ketuBuff === 'fetters') + return output.fetters!({ player: player }); + return output.bubble!({ player: player }); + }, + run: (data) => data.ketuBuffCollect = [], + outputStrings: { + fetters: { + en: 'Fetters (w/${player})', + de: 'Fesseln (mit ${player})', + }, + bubble: { + en: 'Bubble (w/${player})', + de: 'Blase (mit ${player})', + }, + }, + }, + { + id: 'AAI Ketuduke Hydro Buff Counter', + type: 'StartsUsing', + // 8AB8 = Hydrobullet (spread) + // 8AB4 = Hydrofall (stack) + netRegex: { id: ['8AB8', '8AB4'], source: 'Ketuduke', capture: false }, + run: (data) => { + data.ketuHydroBuffCount++; + delete data.ketuHydroBuffIsSpreadFirst; + delete data.ketuHydroBuffIsRoleStacks; + }, + }, + { + id: 'AAI Ketuduke Hydro Buff 1', + comment: { + en: `These directions assume that you always pick a square in the same + quadrant as the crystal specified. + For brevity, "next to" always means horizontal east/west of something. + See trigger source for diagrams in comments.`, + de: `Diese Anweisungen gehen davon aus, dass Sie immer ein Quadrat im gleichen + Quadranten wie der angegebene Kristall liegt. + Der Einfachheit halber bedeutet "neben" immer horizontal östlich/westlich von etwas. + Siehe Triggerquelle für Diagramme in den Kommentaren.`, + }, + type: 'StartsUsing', + netRegex: { id: ['8AB8', '8AB4'], source: 'Ketuduke' }, + condition: (data) => data.ketuHydroBuffCount === 1 || data.ketuHydroBuffCount === 6, + durationSeconds: 10, + alertText: (data, matches, output) => { + if (data.ketuBuff === undefined) + return; + + const isPlayerDPS = data.party.isDPS(data.me); + const isPartnerDPS = data.ketuBuffPartner !== undefined + ? data.party.isDPS(data.ketuBuffPartner) + : undefined; + const isBubbleNetPartnerSameRole = isPlayerDPS === isPartnerDPS && + isStandardLightParty(data); + + // Simplify callout in vast majority of cases where there's a normal light party setup + // and you and the two dps and two supports get the same debuff, so no need to list + // your partner. + // + // Otherwise, if you're doing this nonstandard for some reason or somebody is dead + // you can know if you need to flex. + const isSpread = matches.id === '8AB8'; + const bubbleStr = data.ketuBuff === 'bubble' ? output.bubbleBuff!() : output.fettersBuff!(); + // We don't know about role stacks at this point, as this is just the initial cast bar. + const stackStr = isSpread ? output.spread!() : output.stacks!(); + if (isBubbleNetPartnerSameRole || data.ketuBuffPartner === undefined) + return output.bubbleNetMech!({ fettersBubble: bubbleStr, spreadStack: stackStr }); + return output.bubbleNetMechPartner!({ + fettersBubble: bubbleStr, + spreadStack: stackStr, + player: data.party.member(data.ketuBuffPartner), + }); + }, + infoText: (data, matches, output) => { + // If somebody died and missed a debuff, good luck. + if (data.ketuBuff === undefined) + return; + + // Bubble always does the same thing. + if (data.ketuBuff === 'bubble') + return output.bubbleAnything!(); + + // Two layouts, one with each crystal in its own column ("split") + // and one with two columns that have an H and a V in that same column ("columns"). + // Wind doesn't matter, as "1" will always be on the horizontal crystals. + // These can be flipped somewhat, but the solution is always the same. + // Horizontal crystals are always in lc1 wind, and vertical crystals are always + // in lc2 wind. Players with bubbles always go either (1) adjacent to a horizontal + // crystal OR (2) diagonal of a vertical crystal. Either one works, but it + // depends on how you split your priorities / wind which one you'd take. + // + // Legend: V = vertical crystal, H = horizontal crystal + // 1 = limit cut wind 1, 2 = limit cut wind 2 + // f = fetters, b = bubble (if placed in lc1) + // + // STACK FETTERS COLUMNS (kitty to horizontal) + // 2 2 + // + - - - - + + - - - - + + // | V f | 1 | H f | 1 + // | H b | => | V | + // | H b | | V | + // 1 | f V | 1 | H f | + // + - - - - + + - - - - + + // 2 2 + // + // STACK FETTERS SPLIT (on horizontal) + // 2 2 + // + - - - - + + - - - - + + // 1 | V | 1 | V | + // | H b | => | f H | + // | V | | V | + // | b H | 1 | H f | 1 + // + - - - - + + - - - - + + // 2 2 + // + // SPREAD FETTERS COLUMNS (adjacent to vertical) + // 2 2 + // + - - - - + + - - - - + + // | V f | 1 | f H b | 1 + // | H b | => | V | + // | H b | | V | + // 1 | V f | 1 | H b f | + // + - - - - + + - - - - + + // 2 2 + // + // SPREAD FETTERS SPLIT (kitty to vertical) + // 2 2 + // + - - - - + + - - - - + + // | V | 1 | V | 1 + // | f b H | => | f H b | + // | V | | V | + // 1 | H b f | 1 | b H f | + // + - - - - + + - - - - + + // 2 2 + + const isSpread = matches.id === '8AB8'; + const horizontal = data.ketuCrystalAdd.filter((x) => isHorizontalCrystal(x)); + const vertical = data.ketuCrystalAdd.filter((x) => !isHorizontalCrystal(x)); + + const [firstHorizontal] = horizontal; + if (horizontal.length !== 2 || vertical.length !== 2 || firstHorizontal === undefined) + return; + const firstHorizX = parseFloat(firstHorizontal.x); + // It's split if no vertical is in the same column as either horizontal. + const isSplitLayout = + vertical.find((line) => Math.abs(parseFloat(line.x) - firstHorizX) < 1) === undefined; + + if (isSpread) + return isSplitLayout ? output.fettersSpreadSplit!() : output.fettersSpreadColumn!(); + return isSplitLayout ? output.fettersStackSplit!() : output.fettersStackColumn!(); + }, + outputStrings: { + bubbleNetMech: { + en: '${fettersBubble} + ${spreadStack}', + de: '${fettersBubble} + ${spreadStack}', + }, + bubbleNetMechPartner: { + en: '${fettersBubble} + ${spreadStack} (w/${player})', + de: '${fettersBubble} + ${spreadStack} (mit ${player})', + }, + bubbleBuff: { + en: 'Bubble', + de: 'Blase', + }, + fettersBuff: { + en: 'Fetters', + de: 'Ketten', + }, + spread: Outputs.spread, + stacks: { + en: 'Stacks', + de: 'Sammeln', + }, + bubbleAnything: { + en: 'Diagonal of Vertical / Next to Horizontal ', + de: 'Diagonale der Vertikalen / Neben Horizontal', + }, + fettersSpreadSplit: { + en: 'Diagonal of Vertical', + de: 'Diagonale der Vertikalen', + }, + fettersSpreadColumn: { + en: 'Next to Vertical', + de: 'Neben Vertikal', + }, + fettersStackSplit: { + en: 'On Horizontal', + de: 'Auf Horizontal', + }, + fettersStackColumn: { + en: 'Diagonal of Horizontal', + de: 'Diagonale der Horizontalen', + }, + }, + }, + { + id: 'AAI Ketuduke Hydro Buff Double', + type: 'StartsUsing', + netRegex: { id: ['8AB8', '8AB4'], source: 'Ketuduke' }, + condition: (data) => data.ketuHydroBuffCount === 2 || data.ketuHydroBuffCount === 5, + alertText: (data, matches, output) => { + data.ketuHydroBuffIsSpreadFirst = matches.id === '8AB8'; + return data.ketuHydroBuffIsSpreadFirst ? output.spread!() : output.stacks!(); + }, + outputStrings: { + spread: { + en: 'Spread => Stacks', + de: 'Verteilen => Sammeln', + }, + stacks: { + en: 'Stacks => Spread', + de: 'Sammeln => Verteilen', + }, + }, + }, + { + id: 'AAI Ketuduke Hydro Buff Double Followup', + type: 'Ability', + netRegex: { id: ['8ABA', '8AB7'], source: 'Ketuduke' }, + suppressSeconds: 10, + infoText: (data, matches, output) => { + const wasSpread = matches.id === '8ABA'; + if (wasSpread && data.ketuHydroBuffIsSpreadFirst === true) { + if (data.ketuHydroBuffIsRoleStacks) + return output.roleStacks!(); + return output.stacks!(); + } else if (!wasSpread && data.ketuHydroBuffIsSpreadFirst === false) { + return output.spread!(); + } + }, + outputStrings: { + spread: Outputs.spread, + stacks: { + en: 'Stacks', + de: 'Sammeln', + }, + roleStacks: { + en: 'Role Stacks', + de: 'Rollengruppe sammeln', + }, + }, + }, + { + id: 'AAI Ketuduke Hydrofall Role Stack Warning', + type: 'GainsEffect', + netRegex: { effectId: 'EA3' }, + delaySeconds: (data, matches) => { + data.ketuStackTargets.push(matches.target); + return data.ketuStackTargets.length === 2 ? 0 : 0.5; + }, + alarmText: (data, _matches, output) => { + const [stack1, stack2] = data.ketuStackTargets; + if (data.ketuStackTargets.length !== 2 || stack1 === undefined || stack2 === undefined) + return; + + // Sorry, non-standard light party comps. + if (!isStandardLightParty(data)) + return; + + const isStack1DPS = data.party.isDPS(stack1); + const isStack2DPS = data.party.isDPS(stack2); + + // If both stacks are on dps or neither stack is on a dps, then you have + // standard "partner" stacks of one support and one dps. If one is on a dps + // and one is on a support (which can happen if somebody dies), then + // you (probably) need to have role stacks. + if (isStack1DPS === isStack2DPS) + return; + + data.ketuHydroBuffIsRoleStacks = true; + + // Handle Blowing Bubbles/Angry Seas spread+stack combo. + if (data.ketuHydroBuffIsSpreadFirst === true) + return output.spreadThenRoleStacks!(); + else if (data.ketuHydroBuffIsSpreadFirst === false) + return output.roleStacksThenSpread!(); + return output.roleStacks!(); + }, + run: (data) => data.ketuStackTargets = [], + outputStrings: { + roleStacks: { + en: 'Role Stacks', + de: 'Rollengruppe sammeln', + }, + spreadThenRoleStacks: { + en: 'Spread => Role Stacks', + de: 'Verteilen => Rollengruppe sammeln', + }, + roleStacksThenSpread: { + en: 'Role Stacks => Spread', + de: 'Rollengruppe sammeln => Verteilen', + }, + }, + }, + { + id: 'AAI Ketuduke Receding Twintides', + type: 'StartsUsing', + netRegex: { id: '8ACC', source: 'Ketuduke', capture: false }, + alertText: (data, _matches, output) => { + if (data.ketuHydroBuffIsRoleStacks) + return output.outInRoleStacks!(); + return output.outInStacks!(); + }, + run: (data) => data.ketuTwintidesNext = 'in', + outputStrings: { + outInStacks: { + en: 'Out => In + Stacks', + de: 'Raus => Rein + sammeln', + }, + outInRoleStacks: { + en: 'Out => In + Role Stacks', + de: 'Raus => Rein + Rollengruppe sammeln', + }, + }, + }, + { + id: 'AAI Ketuduke Encroaching Twintides', + type: 'StartsUsing', + netRegex: { id: '8ACE', source: 'Ketuduke', capture: false }, + alertText: (data, _matches, output) => { + if (data.ketuHydroBuffIsRoleStacks) + return output.inOutRoleStacks!(); + return output.inOutStacks!(); + }, + run: (data) => data.ketuTwintidesNext = 'out', + outputStrings: { + inOutStacks: { + en: 'In => Out + Stacks', + de: 'Rein => Raus + sammeln', + }, + inOutRoleStacks: { + en: 'In => Out + Role Stacks', + de: 'Rein => Raus + Rollengruppe sammeln', + }, + }, + }, + { + id: 'AAI Ketuduke Twintides Followup', + type: 'Ability', + // 8ABC = Sphere Shatter, which happens slightly after the Twintides hit. + // You can technically start moving along the safe Sphere Shatter side 0.5s earlier + // after the initial out/in, but this is hard to explain. + netRegex: { id: '8ABC', source: 'Ketuduke', capture: false }, + suppressSeconds: 5, + infoText: (data, _matches, output) => { + const mech = data.ketuTwintidesNext; + if (mech === undefined) + return; + const mechStr = output[mech]!(); + const stackStr = data.ketuHydroBuffIsRoleStacks ? output.roleStacks!() : output.stack!(); + return output.text!({ inOut: mechStr, stack: stackStr }); + }, + run: (data) => delete data.ketuTwintidesNext, + outputStrings: { + text: { + en: '${inOut} + ${stack}', + de: '${inOut} + ${stack}', + }, + in: Outputs.in, + out: Outputs.out, + stack: { + en: 'Stacks', + de: 'Sammeln', + }, + roleStacks: { + en: 'Role Stacks', + de: 'Rollengruppe sammeln', + }, + }, + }, + { + id: 'AAI Ketuduke Spring Crystals 2', + type: 'AddedCombatant', + netRegex: { npcNameId: '12607', capture: false }, + condition: (data) => data.ketuSpringCrystalCount === 2 && data.ketuCrystalAdd.length === 4, + // We could call this absurdly early, but knowing this doesn't help with anything + // until you know what your debuff is, so move it later both so it is less absurd + // futuresight and so you don't have to remember it as long. + delaySeconds: 5, + alertText: (data, _matches, output) => { + const horizontal = data.ketuCrystalAdd.filter((x) => isHorizontalCrystal(x)); + const vertical = data.ketuCrystalAdd.filter((x) => !isHorizontalCrystal(x)); + if (horizontal.length !== 2 || vertical.length !== 2) + return; + + // Crystal positions are always -15, -5, 5, 15. + + // Check if any verticals are on the outer vertical edges. + for (const line of vertical) { + const y = parseFloat(line.y); + if (y < -10 || y > 10) + return output.eastWestSafe!(); + } + + // Check if any horizontals are on the outer horizontal edges. + for (const line of horizontal) { + const x = parseFloat(line.x); + if (x < -10 || x > 10) + return output.northSouthSafe!(); + } + + return output.cornersSafe!(); + }, + outputStrings: { + northSouthSafe: { + en: 'North/South', + de: 'Norden/Süden', + }, + eastWestSafe: { + en: 'East/West', + de: 'Osten/Westen', + }, + cornersSafe: { + en: 'Corners', + de: 'Ecken', + }, + }, + }, + { + id: 'AAI Ketuduke Angry Seas', + type: 'StartsUsing', + netRegex: { id: '8AC1', source: 'Ketuduke', capture: false }, + alertText: (data, _matches, output) => { + if (data.ketuHydroBuffIsSpreadFirst) + return output.knockbackSpread!(); + if (data.ketuHydroBuffIsRoleStacks) + return output.knockbackRoleStacks!(); + return output.knockbackStacks!(); + }, + outputStrings: { + knockbackSpread: { + en: 'Knockback => Spread', + de: 'Rückstoß => verteilen', + }, + knockbackStacks: { + en: 'Knockback => Stacks', + de: 'Rückstoß => sammeln', + }, + knockbackRoleStacks: { + en: 'Knockback => Role Stacks', + de: 'Rückstoß => Rollengruppe sammeln', + }, + }, + }, + // ---------------- second trash ---------------- + { + id: 'AAI Wood Golem Ancient Aero III', + type: 'StartsUsing', + netRegex: { id: '8C4C', source: 'Aloalo Wood Golem' }, + condition: (data) => data.CanSilence(), + response: Responses.interrupt('alarm'), + }, + { + id: 'AAI Wood Golem Tornado', + type: 'StartsUsing', + netRegex: { id: '8C4D', source: 'Aloalo Wood Golem' }, + response: (data, matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + tornadoOn: { + en: 'Away from ${player}', + de: 'Weg von ${player}', + }, + tornadoOnYou: { + en: 'Tornado on YOU', + de: 'Tornado auf DIR', + }, + }; + + if (data.me === matches.target) + return { alertText: output.tornadoOnYou!() }; + return { infoText: output.tornadoOn!({ player: data.party.member(matches.target) }) }; + }, + }, + { + id: 'AAI Wood Golem Tornado Bind', + type: 'GainsEffect', + netRegex: { effectId: 'EC0' }, + condition: (data) => data.CanCleanse(), + infoText: (data, matches, output) => { + return output.text!({ player: data.party.member(matches.target) }); + }, + outputStrings: { + text: { + en: 'Cleanse ${player}', + de: 'Reinige ${player}', + }, + }, + }, + { + id: 'AAI Wood Golem Ovation', + type: 'StartsUsing', + netRegex: { id: '8BC1', source: 'Aloalo Wood Golem', capture: false }, + response: Responses.getBehind('info'), + }, + { + id: 'AAI Islekeeper Gravity Force', + type: 'StartsUsing', + netRegex: { id: '8BC5', source: 'Aloalo Islekeeper' }, + response: Responses.stackMarkerOn(), + }, + { + id: 'AAI Islekeeper Isle Drop', + type: 'StartsUsing', + netRegex: { id: '8C6F', source: 'Aloalo Islekeeper', capture: false }, + infoText: (_data, _matches, output) => output.text!(), + outputStrings: { + text: { + en: 'Get Behind + Out', + de: 'Geh nach Hinten + Raus', + }, + }, + }, + { + id: 'AAI Islekeeper Ancient Quaga', + type: 'StartsUsing', + netRegex: { id: '8C4E', source: 'Aloalo Islekeeper', capture: false }, + response: Responses.bleedAoe(), + }, + { + id: 'AAI Islekeeper Ancient Quaga Enrage', + type: 'StartsUsing', + netRegex: { id: '8C2F', source: 'Aloalo Islekeeper', capture: false }, + alarmText: (_data, _matches, output) => output.text!(), + outputStrings: { + text: { + en: 'Kill Islekeeper!', + de: 'Wächter besiegen!', + }, + }, + }, + // ---------------- Lala ---------------- + { + id: 'AAI Lala Inferno Theorem', + type: 'StartsUsing', + netRegex: { id: '88AE', source: 'Lala', capture: false }, + response: Responses.aoe(), + }, + { + id: 'AAI Lala Rotation Tracker', + type: 'HeadMarker', + netRegex: { id: ['01E4', '01E5'], target: 'Lala' }, + run: (data, matches) => data.lalaBossRotation = matches.id === '01E4' ? 'clock' : 'counter', + }, + { + id: 'AAI Lala Angular Addition Tracker', + type: 'Ability', + netRegex: { id: ['8889', '8D2E'], source: 'Lala' }, + run: (data, matches) => data.lalaBossTimes = matches.id === '8889' ? 3 : 5, + }, + { + id: 'AAI Lala Arcane Blight', + type: 'StartsUsing', + netRegex: { id: ['888B', '888C', '888D', '888E'], source: 'Lala' }, + alertText: (data, matches, output) => { + const initialDir = { + '888B': 2, // initial back safe + '888C': 0, // initial front safe + '888D': 1, // initial right safe + '888E': 3, // initial left safe + }[matches.id]; + if (initialDir === undefined) + return; + if (data.lalaBossTimes === undefined) + return; + if (data.lalaBossRotation === undefined) + return; + const rotationFactor = data.lalaBossRotation === 'clock' ? 1 : -1; + const finalDir = (initialDir + rotationFactor * data.lalaBossTimes + 8) % 4; + + const diff = (finalDir - initialDir + 4) % 4; + if (diff !== 1 && diff !== 3) + return; + return { + 0: output.front!(), + 1: output.right!(), + 2: output.back!(), + 3: output.left!(), + }[finalDir]; + }, + run: (data) => { + delete data.lalaBossTimes; + delete data.lalaBossRotation; + }, + outputStrings: { + front: Outputs.front, + back: Outputs.back, + left: Outputs.left, + right: Outputs.right, + }, + }, + { + id: 'AAI Lala Analysis Collect', + type: 'GainsEffect', + netRegex: { effectId: ['E8E', 'E8F', 'E90', 'E91'] }, + condition: Conditions.targetIsYou(), + run: (data, matches) => { + const effectMap: { [effectId: string]: typeof data.lalaUnseen } = { + 'E8E': 'front', + 'E8F': 'back', + 'E90': 'right', + 'E91': 'left', + } as const; + data.lalaUnseen = effectMap[matches.effectId]; + }, + }, + { + id: 'AAI Lala Times Collect', + type: 'GainsEffect', + netRegex: { effectId: ['E89', 'ECE'] }, + condition: Conditions.targetIsYou(), + run: (data, matches) => { + const effectMap: { [effectId: string]: typeof data.lalaPlayerTimes } = { + 'E89': 3, + 'ECE': 5, + } as const; + data.lalaPlayerTimes = effectMap[matches.effectId]; + }, + }, + { + id: 'AAI Lala Player Rotation Collect', + type: 'HeadMarker', + netRegex: { id: ['01ED', '01EE'] }, + condition: Conditions.targetIsYou(), + run: (data, matches) => { + const idMap: { [id: string]: typeof data.lalaPlayerRotation } = { + '01ED': 'counter', + '01EE': 'clock', + } as const; + data.lalaPlayerRotation = idMap[matches.id]; + }, + }, + { + id: 'AAI Lala Targeted Light', + type: 'StartsUsing', + netRegex: { id: '8CDE', source: 'Lala', capture: false }, + alertText: (data, _matches, output) => { + const initialUnseen = data.lalaUnseen; + if (initialUnseen === undefined) + return; + + const initialDir = { + front: 0, + right: 1, + back: 2, + left: 3, + }[initialUnseen]; + + const rotation = data.lalaPlayerRotation; + if (rotation === undefined) + return; + const times = data.lalaPlayerTimes; + if (times === undefined) + return; + + // The safe spot rotates, so the player counter-rotates. + const rotationFactor = rotation === 'clock' ? -1 : 1; + const finalDir = (initialDir + rotationFactor * times + 8) % 4; + + return { + 0: output.front!(), + 1: output.right!(), + 2: output.back!(), + 3: output.left!(), + }[finalDir]; + }, + run: (data) => { + delete data.lalaUnseen; + delete data.lalaPlayerTimes; + }, + outputStrings: { + front: { + en: 'Face Towards Lala', + de: 'Lala anschauen', + }, + back: { + en: 'Look Away from Lala', + de: 'Von Lala weg schauen', + }, + left: { + en: 'Left Flank towards Lala', + de: 'Linke Seite zu Lala zeigen', + }, + right: { + en: 'Right Flank towards Lala', + de: 'Rechte Seite zu Lala zeigen', + }, + }, + }, + { + id: 'AAI Lala Strategic Strike', + type: 'StartsUsing', + netRegex: { id: '88AD', source: 'Lala' }, + response: Responses.tankBuster(), + }, + { + id: 'AAI Lala Planar Tactics', + type: 'GainsEffect', + // E8B = Surge Vector + // E8C = Subtractive Suppressor Alpha + netRegex: { effectId: ['E8C', 'E8B'] }, + condition: (data, matches) => { + data.lalaSubAlpha.push(matches); + return data.lalaSubAlpha.length === 6; + }, + durationSeconds: 7, + // Only run once, as Surge Vector is used again. + suppressSeconds: 9999999, + response: (data, _matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + one: { + en: 'One', + de: 'Eins', + }, + bigTwo: { + en: 'Two (stack with three)', + de: 'Zwei (sammeln mit Drei)', + }, + smallTwo: { + en: 'Two (stack with one)', + de: 'Zwei (sammeln mit Eins)', + }, + eitherTwo: { + en: 'Either Two (w/${player})', + de: 'Eine Zwei (mit ${player})', + }, + three: { + en: 'Three', + de: 'Drei', + }, + // This is just a raidcall so you can direct your friends. + smallTwoOn: { + en: '(Two with one: ${players})', + de: '(Zwei mit Eins: ${players})', + }, + unknownNum: { + en: '${num}', + de: '${num}', + }, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + }; + + // For brevity, this code calls "small two" the two that stacks with one + // and the "big two" the two that stacks with three. + const stacks = data.lalaSubAlpha.filter((x) => x.effectId === 'E8B').map((x) => x.target); + const nums = data.lalaSubAlpha.filter((x) => x.effectId === 'E8C'); + const myNumberStr = nums.find((x) => x.target === data.me)?.count; + if (myNumberStr === undefined) + return; + const myNumber = parseInt(myNumberStr); + if (myNumber < 1 || myNumber > 4) + return; + + const defaultOutput = { + alertText: output.unknownNum!({ num: output[`num${myNumber}`]!() }), + } as const; + + if (stacks.length !== 2 || nums.length !== 4) + return defaultOutput; + + const one = nums.find((x) => parseInt(x.count) === 1)?.target; + if (one === undefined) + return defaultOutput; + const isOneStack = stacks.includes(one); + const twos = nums.filter((x) => parseInt(x.count) === 2).map((x) => x.target); + + const smallTwos: string[] = []; + for (const thisTwo of twos) { + // can this two stack with the one? + const isThisTwoStack = stacks.includes(thisTwo); + if (isThisTwoStack && !isOneStack || !isThisTwoStack && isOneStack) + smallTwos.push(thisTwo); + } + + const [smallTwo1, smallTwo2] = smallTwos; + if (smallTwos.length === 0 || smallTwo1 === undefined) + return defaultOutput; + + const isPlayerSmallTwo = smallTwos.includes(data.me); + + // Worst case adjust + if (isPlayerSmallTwo && smallTwo2 !== undefined) { + const otherPlayer = smallTwo1 === data.me ? smallTwo2 : smallTwo1; + return { alarmText: output.eitherTwo!({ player: data.party.member(otherPlayer) }) }; + } + + let playerRole: string; + if (one === data.me) { + playerRole = output.one!(); + } else if (twos.includes(data.me)) { + playerRole = isPlayerSmallTwo ? output.smallTwo!() : output.bigTwo!(); + } else { + playerRole = output.three!(); + } + + if (isPlayerSmallTwo) + return { alertText: playerRole }; + + return { + alertText: playerRole, + infoText: output.smallTwoOn!({ players: smallTwos.map((x) => data.party.member(x)) }), + }; + }, + }, + { + id: 'AAI Lala Forward March', + type: 'GainsEffect', + // E83 = Forward March + netRegex: { effectId: 'E83' }, + condition: Conditions.targetIsYou(), + delaySeconds: (_data, matches) => parseFloat(matches.duration) - 8, + durationSeconds: 4, + alertText: (data, _matches, output) => { + const rotation = data.lalaPlayerRotation; + if (rotation === undefined) + return; + const times = data.lalaPlayerTimes; + if (times === undefined) + return; + + const rotationFactor = rotation === 'clock' ? 1 : -1; + const finalDir = (rotationFactor * times + 8) % 4; + if (finalDir === 1) + return output.left!(); + if (finalDir === 3) + return output.right!(); + }, + run: (data) => { + delete data.lalaPlayerRotation; + delete data.lalaPlayerTimes; + }, + outputStrings: { + left: { + en: 'Leftward March', + de: 'Linker March', + }, + right: { + en: 'Rightward March', + de: 'Rechter March', + }, + }, + }, + { + id: 'AAI Lala Spatial Tactics', + type: 'GainsEffect', + // E8D = Subtractive Suppressor Beta + netRegex: { effectId: 'E8D' }, + condition: Conditions.targetIsYou(), + suppressSeconds: 999999, + alertText: (_data, matches, output) => { + const num = parseInt(matches.count); + if (num < 1 || num > 4) + return; + return output[`num${num}`]!(); + }, + outputStrings: { + num1: { + en: 'One (avoid all)', + de: 'Eins (alles ausweichen)', + }, + num2: { + en: 'Two (stay middle)', + de: 'Zwei (steh in der Mitte)', + }, + num3: { + en: 'Three (adjacent to middle)', + de: 'Drei (steh neben der Mitte)', + }, + num4: { + en: 'Four', + de: 'Vier', + }, + }, + }, + // ---------------- Statice ---------------- + { + id: 'AAI Statice Aero IV', + type: 'StartsUsing', + netRegex: { id: '8949', source: 'Statice', capture: false }, + response: Responses.aoe(), + }, + { + id: 'AAI Statice Trick Reload', + type: 'Ability', + // 8925 = Locked and Loaded + // 8926 = Misload + netRegex: { id: ['8925', '8926'], source: 'Statice' }, + preRun: (data, matches) => data.staticeBullet.push(matches), + alertText: (data, _matches, output) => { + // Statice loads 8 bullets, two are duds. + // The first and the last are always opposite, and one of them is a dud. + // The first/ last bullets are for Trapshooting and the middle six are for Trigger Happy. + const [bullet] = data.staticeBullet; + if (data.staticeBullet.length !== 1 || bullet === undefined) + return; + const isStack = bullet.id === '8926'; + data.staticeTrapshooting = isStack ? ['stack', 'spread'] : ['spread', 'stack']; + return isStack ? output.stackThenSpread!() : output.spreadThenStack!(); + }, + infoText: (data, _matches, output) => { + const lastBullet = data.staticeBullet[data.staticeBullet.length - 1]; + if (data.staticeBullet.length < 2 || data.staticeBullet.length > 7) + return; + if (lastBullet?.id !== '8926') + return; + data.staticeTriggerHappy = data.staticeBullet.length - 1; + return output.numSafeLater!({ num: output[`num${data.staticeTriggerHappy}`]!() }); + }, + run: (data) => { + if (data.staticeBullet.length === 8) + data.staticeBullet = []; + }, + outputStrings: { + stackThenSpread: Outputs.stackThenSpread, + spreadThenStack: Outputs.spreadThenStack, + numSafeLater: { + en: '(${num} safe later)', + de: '(${num} später sicher)', + }, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + }, + }, + { + id: 'AAI Statice Trapshooting', + type: 'StartsUsing', + netRegex: { id: ['8D1A', '8959'], source: 'Statice', capture: false }, + alertText: (data, _matches, output) => { + const mech = data.staticeTrapshooting.shift(); + if (mech === undefined) + return; + return output[mech]!(); + }, + outputStrings: { + spread: Outputs.spread, + stack: Outputs.stackMarker, + }, + }, + { + id: 'AAI Statice Trigger Happy', + type: 'StartsUsing', + netRegex: { id: '894B', source: 'Statice', capture: false }, + alertText: (data, _matches, output) => { + const num = data.staticeTriggerHappy; + if (num === undefined) + return; + return output[`num${num}`]!(); + }, + run: (data) => delete data.staticeTriggerHappy, + outputStrings: { + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + }, + }, + { + id: 'AAI Statice Bull\'s-eye', + type: 'GainsEffect', + netRegex: { effectId: 'E9E' }, + delaySeconds: (data, matches) => { + // Note: this collects for the pinwheeling dartboard version too. + data.staticeDart.push(matches); + return data.staticeDart.length === 3 ? 0 : 0.5; + }, + response: (data, _matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + dartOnYou: { + en: 'Dart on YOU', + de: 'Dart auf DIR', + }, + noDartOnYou: { + en: 'No Dart', + de: 'Kein Dart', + }, + flexCall: { + en: '(${player} unmarked)', + de: '(${player} unmarkiert)', + }, + }; + + if (data.staticeIsPinwheelingDartboard) + return; + + if (data.staticeDart.length === 0) + return; + + const dartTargets = data.staticeDart.map((x) => x.target); + + if (!dartTargets.includes(data.me)) + return { alertText: output.noDartOnYou!() }; + + const partyNames = data.party.partyNames; + + const flexers = partyNames.filter((x) => !dartTargets.includes(x)); + const [flex] = flexers; + const flexPlayer = flexers.length === 1 ? data.party.member(flex) : undefined; + + return { + alertText: output.dartOnYou!(), + infoText: output.flexCall!({ player: flexPlayer }), + }; + }, + run: (data) => data.staticeDart = [], + }, + { + id: 'AAI Statice Surprise Balloon Reminder', + // This is an early reminder for the following Trigger Happy with knockback. + // However, because there's a tight window to immuune both knockbacks, + // call this ~15s early (in case anybody forgot). + type: 'StartsUsing', + netRegex: { id: '894D', source: 'Statice', capture: false }, + infoText: (data, _matches, output) => { + const num = data.staticeTriggerHappy; + if (num === undefined) + return; + // We'll re-call this out with the knockback warning. + // However, also clear `data.staticeTriggerHappy` to avoid double callouts. + data.staticePopTriggerHappyNum = num; + return output.numSafeSoon!({ num: output[`num${num}`]!() }); + }, + run: (data) => delete data.staticeTriggerHappy, + outputStrings: { + numSafeSoon: { + en: '(${num} safe soon)', + de: '(${num} gleich sicher)', + }, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + }, + }, + { + id: 'AAI Statice Pop', + type: 'StartsUsing', + // TODO: this might need a slight delay + netRegex: { id: '894E', source: 'Statice', capture: false }, + suppressSeconds: 20, + alertText: (data, _matches, output) => { + const num = data.staticePopTriggerHappyNum; + if (num === undefined) + return output.knockback!(); + + const numStr = output[`num${num}`]!(); + return output.knockbackToNum!({ num: numStr }); + }, + run: (data) => delete data.staticePopTriggerHappyNum, + outputStrings: { + knockbackToNum: { + en: 'Knockback => ${num}', + de: 'Rückstoß => ${num}', + }, + knockback: Outputs.knockback, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + }, + }, + { + id: 'AAI Statice Face', + type: 'GainsEffect', + // DD2 = Forward March + // DD3 = About Face + // DD4 = Left Face + // DD5 = Right Face + netRegex: { effectId: ['DD2', 'DD3', 'DD4', 'DD5'] }, + condition: Conditions.targetIsYou(), + delaySeconds: (_data, matches) => parseFloat(matches.duration) - 7, + durationSeconds: 5, + alertText: (data, matches, output) => { + let mech = output.unknown!(); + + const num = data.staticeTriggerHappy; + if (num !== undefined) { + mech = output[`num${num}`]!(); + delete data.staticeTriggerHappy; + } else { + const mechName = data.staticeTrapshooting.shift(); + mech = mechName === undefined ? output.unknown!() : output[mechName]!(); + } + + return { + 'DD2': output.forward!({ mech: mech }), + 'DD3': output.backward!({ mech: mech }), + 'DD4': output.left!({ mech: mech }), + 'DD5': output.right!({ mech: mech }), + }[matches.effectId]; + }, + outputStrings: { + forward: { + en: 'Forward March => ${mech}', + de: 'Vorwärtsmarsch => ${mech}', + }, + backward: { + en: 'Backward March => ${mech}', + de: 'Rückwärtsmarsch => ${mech}', + }, + left: { + en: 'Left March => ${mech}', + de: 'Marsch Links => ${mech}', + }, + right: { + en: 'Right March => ${mech}', + de: 'Marsch Rechts => ${mech}', + }, + spread: Outputs.spread, + stack: Outputs.stackMarker, + num1: Outputs.num1, + num2: Outputs.num2, + num3: Outputs.num3, + num4: Outputs.num4, + num5: Outputs.num5, + num6: Outputs.num6, + unknown: Outputs.unknown, + }, + }, + { + id: 'AAI Statice Present Box Counter', + // This happens ~1s prior to ActorControlExtra on bomb. + type: 'StartsUsing', + netRegex: { id: '8955', source: 'Statice', capture: false }, + run: (data) => data.staticePresentBoxCount++, + }, + { + id: 'AAI Statice Present Box Missile', + type: 'Tether', + netRegex: { source: 'Surprising Missile', id: '0011' }, + delaySeconds: (data, matches) => { + data.staticeMissileTether.push(matches); + return data.staticeMissileTether.length === 2 ? 0 : 0.5; + }, + durationSeconds: 7, + response: (data, _matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + missileOnYou: { + en: 'Bait Tethers => Missile Spread', + de: 'Verbindungen ködern => Verteilen mit Raketen', + }, + }; + + if (data.staticeMissileTether.length !== 2) + return; + + const missileTether = data.staticeMissileTether.find((x) => x.target === data.me); + if (missileTether === undefined) + return; + + return { alertText: output.missileOnYou!() }; + }, + run: (data) => data.staticeMissileTether = [], + }, + { + id: 'AAI Statice Present Box Claw', + type: 'Tether', + netRegex: { source: 'Surprising Claw', id: '0011' }, + delaySeconds: (data, matches) => { + data.staticeClawTether.push(matches); + return data.staticeClawTether.length === 2 ? 0 : 0.5; + }, + durationSeconds: 7, + alertText: (data, _matches, output) => { + if (data.staticeClawTether.length !== 2) + return; + if (!data.staticeClawTether.map((x) => x.target).includes(data.me)) + return; + return output.stack!(); + }, + run: (data) => data.staticeClawTether = [], + outputStrings: { + stack: { + en: 'Juke Claw => Stack', + de: 'Zieh Klaue => Sammeln', + }, + }, + }, + { + id: 'AAI Statice Burning Chains', + type: 'GainsEffect', + netRegex: { effectId: '301' }, + condition: Conditions.targetIsYou(), + // TODO: add a strategy for dart colors and say where to go here + // for the Pinwheeling Dartboard if you have a dart. + response: Responses.breakChains(), + }, + { + id: 'AAI Statice Shocking Abandon', + type: 'StartsUsing', + netRegex: { id: '8948', source: 'Statice' }, + response: Responses.tankBuster(), + }, + { + id: 'AAI Statice Pinwheeling Dartboard Tracker', + type: 'StartsUsing', + netRegex: { id: '8CBC', source: 'Statice', capture: false }, + run: (data) => data.staticeIsPinwheelingDartboard = true, + }, + { + id: 'AAI Statice Pinwheeling Dartboard Color', + type: 'AddedCombatant', + netRegex: { npcNameId: '12507' }, + durationSeconds: 6, + response: (data, matches, output) => { + // cactbot-builtin-response + output.responseOutputStrings = { + dartOnYou: { + en: 'Dart (w/${player})', + de: 'Dart (mit ${player})', + }, + noDartOnYou: { + en: 'No Dart', + de: 'Kein Dart', + }, + blue: { + en: 'Avoid Blue', + de: 'Vermeide Blau', + }, + red: { + en: 'Avoid Red', + de: 'Vermeide Rot', + }, + yellow: { + en: 'Avoid Yellow', + de: 'Vermeide Gelb', + }, + }; + + let infoText: string | undefined; + + const centerX = -200; + const centerY = 0; + const x = parseFloat(matches.x) - centerX; + const y = parseFloat(matches.y) - centerY; + + // 12 pie slices, the edge of the first one is directly north. + // It goes in B R Y order repeating 4 times. + // The 0.5 subtraction (12 - 0.5 = 11.5) is because the Homing Pattern + // lands directly in the middle of a slice. + const dir12 = Math.round(6 - 6 * Math.atan2(x, y) / Math.PI + 11.5) % 12; + + const colorOffset = dir12 % 3; + const colorMap: { [offset: number]: typeof data.staticeHomingColor } = { + 0: 'blue', + 1: 'red', + 2: 'yellow', + } as const; + + data.staticeHomingColor = colorMap[colorOffset]; + if (data.staticeHomingColor !== undefined) + infoText = output[data.staticeHomingColor]!(); + + if (data.staticeDart.length !== 2) + return { infoText }; + + const dartTargets = data.staticeDart.map((x) => x.target); + if (!dartTargets.includes(data.me)) + return { alertText: output.noDartOnYou!(), infoText: infoText }; + + const [target1, target2] = dartTargets; + if (target1 === undefined || target2 === undefined) + return { infoText }; + const otherTarget = data.party.member(target1 === data.me ? target2 : target1); + return { alertText: output.dartOnYou!({ player: otherTarget }), infoText: infoText }; + }, + }, + { + id: 'AAI Statice Pinwheeling Dartboard Mech', + type: 'HeadMarker', + netRegex: { id: headmarkerIds.tethers }, + condition: (data) => data.staticeIsPinwheelingDartboard, + delaySeconds: (data, matches) => { + data.staticeDartboardTether.push(matches); + return data.staticeDartboardTether.length === 2 ? 0 : 0.5; + }, + alertText: (data, _matches, output) => { + if (data.staticeDartboardTether.length !== 2) + return; + + const tethers = data.staticeDartboardTether.map((x) => x.target); + + if (tethers.includes(data.me)) { + const [tether1, tether2] = tethers; + const other = data.party.member(tether1 === data.me ? tether2 : tether1); + return output.tether!({ player: other }); + } + + const partyNames = data.party.partyNames; + const nonTethers = partyNames.filter((x) => !tethers.includes(x)); + const [stack1, stack2] = nonTethers; + const other = data.party.member(stack1 === data.me ? stack2 : stack1); + return output.stack!({ player: other }); + }, + run: (data) => data.staticeDartboardTether = [], + outputStrings: { + // TODO: maybe this should remind you of dart color + tether: { + en: 'Tether w/${player}', + de: 'Verbindung mit ${player}', + }, + stack: { + en: 'Stack w/${player}', + de: 'Sammeln mit ${player}', + }, + }, + }, + ], + timelineReplace: [ + { + 'locale': 'en', + 'replaceText': { + 'Far Tide/Near Tide': 'Far/Near Tide', + 'Hydrobullet/Hydrofall': 'Hydrobullet/fall', + 'Hydrofall/Hydrobullet': 'Hydrofall/bullet', + 'Receding Twintides/Encroaching Twintides': 'Receding/Encroaching Twintides', + }, + }, + { + 'locale': 'de', + 'replaceSync': { + 'Aloalo Golem': 'Aloalo-Holzgolem', + 'Aloalo Islekeeper': 'Aloalo-Wächter', + 'Aloalo Kiwakin': 'Aloalo-Kiwakin', + 'Aloalo Monk': 'Aloalo-Mönch', + 'Aloalo Ray': 'Aloalo-Rochen', + 'Aloalo Snipper': 'Aloalo-Schnippler', + 'Aloalo Wood Golem': 'Aloalo-Holzgolem', + 'Aloalo Zaratan': 'Aloalo-Zaratan', + 'Arcane Font': 'arkan(?:e|er|es|en) Körper', + 'Arcane Globe': 'arkan(?:e|er|es|en) Kugel', + 'Ball of Fire': 'Feuerkugel', + 'Bomb': 'Bombe', + 'Ketuduke': 'Ketuduke', + 'Lala': 'Lala', + 'Needle': 'Nadel', + 'Spring Crystal': 'Wasserquell-Kristall', + 'Statice': 'Statice', + 'Surprising Claw': 'Überraschungsklaue', + 'Surprising Missile': 'Überraschungsrakete', + 'Surprising Staff': 'Überraschungsstab', + 'The Dawn Trial': 'Morgenrot-Probe', + 'The Dusk Trial': 'Abendrot-Probe', + 'The Midnight Trial': 'Vollmond-Probe', + }, + 'replaceText': { + '\\(buff\\)': '(Statusveränderung)', + '\\(cast\\)': '(wirken)', + 'Aero II': 'Windra', + 'Aero IV': 'Windka', + 'Analysis': 'Analyse', + 'Angry Seas': 'Zornige Fluten', + 'Angular Addition': 'Winkeladdition', + 'Arcane Array': 'Arkanes Spektrum', + 'Arcane Blight': 'Arkane Fäule', + 'Arcane Mine': 'Arkane Mine', + 'Arcane Plot': 'Arkane Flur', + 'Arcane Point': 'Arkane Stätte', + 'Beguiling Glitter': 'Irrleuchten', + 'Blowing Bubbles': 'Pusteblasen', + 'Bright Pulse': 'Glühen', + 'Bubble Net': 'Blasennetz', + 'Burning Chains': 'Brennende Ketten', + 'Burst': 'Explosion', + 'Constructive Figure': 'Ruf der Schöpfer', + 'Dartboard of Dancing Explosives': 'Darts und Drehung', + 'Encroaching Twintides': 'Ring der Zwiegezeiten', + 'Explosive Theorem': 'Arkane Fäule', + 'Faerie Ring': 'Feenring', + 'Far Tide': 'Ring der Gezeiten', + 'Fire Spread': 'Brandstiftung', + 'Fireworks': 'Feuerwerk', + 'Fluke Gale': 'Flossensturm', + 'Fluke Typhoon': 'Flossentaifun', + 'Hundred Lashings': 'Auspeitschung', + 'Hydrobomb': 'Hydro-Bombe', + 'Hydrobullet': 'Hydro-Kugel', + 'Hydrofall': 'Hydro-Sturz', + 'Inferno Divide': 'Infernale Teilung', + 'Inferno Theorem': 'Infernales Theorem', + 'Locked and Loaded': 'Geladen und entsichert', + 'Misload': 'Fehlladung', + 'Near Tide': 'Kreis der Gezeiten', + 'Pinwheeling Dartboard': 'Darts und Rad', + 'Planar Tactics': 'Flächentaktiken', + 'Pop': 'Platzen', + 'Powerful Light': 'Entladenes Licht', + 'Present Box': 'Geschenkschachtel', + 'Radiance': 'Radiation', + 'Receding Twintides': 'Kreis der Zwiegezeiten', + 'Ring a Ring o\' Explosions': 'Ringel-Ringel-Bombe', + '(?in +# 8ACD Near Tide fast cast and damage for second out during in->out with 8ACE Encroaching Twintides +# 8ACE Encroaching Twintides cast and damage for initial in during in->out +# 8ACF Far Tide fast cast and damage for second in during out->in with 8ACC Receding Twintides +# 8AD0 Hydrobomb self-targeted cast for 8AD1 puddles +# 8AD1 Hydrobomb cast and damage for 3x puddles duruing 8ABD Blowing Bubbles +# 8AD4 Tidal Roar self-targeted cast for raidwide aoe +# 8AD5 Tidal Roar damage from 8AD4 +# 8AD6 Tidal Roar cast and enrage damage +# 8C6D Hydrobullet self-targeted "spread second" ability before Blowing Bubbles + + +#~~~~~~# +# LALA # +#~~~~~~# + +# -p 88AE:2011.1 +# -ii 888F 8892 8CDF 889A 889B 88A8 889C 889D + +# The Dusk Trial will be sealed off +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1147" } window 10000,0 +2006.1 "--sync--" StartsUsing { id: "88AE", source: "Lala" } window 20,20 +2011.1 "Inferno Theorem" Ability { id: "88AE", source: "Lala" } + +2013.2 "--middle--" Ability { id: "8874", source: "Lala" } +2018.3 "Angular Addition" Ability { id: ["8889", "8D2E"], source: "Lala" } +2026.4 "Arcane Blight" Ability { id: ["888B", "888C", "888D", "888E"], source: "Lala" } + +2029.6 "--middle--" Ability { id: "8874", source: "Lala" } +2034.7 "Analysis" Ability { id: "8895", source: "Lala" } +2039.8 "Arcane Array 1" Ability { id: "8890", source: "Lala" } +2044.9 "Angular Addition" Ability { id: ["8889", "8D2E"], source: "Lala" } +2045.6 "Bright Pulse" Ability { id: "8891", source: "Lala" } +2046.9 "Radiance 1" Ability { id: "8894", source: "Arcane Globe" } +2053.0 "Arcane Blight" Ability { id: ["888B", "888C", "888D", "888E"], source: "Lala" } +# This can be +1.2s if it's on the final square instead of penultimate. +2054.1 "Radiance 2" #Ability { id: "8894", source: "Arcane Globe" } +2061.2 "Targeted Light" Ability { id: "8CDE", source: "Lala" } + +2072.5 "Strategic Strike" Ability { id: "88AD", source: "Lala" } + +2085.6 "Planar Tactics" Ability { id: "8898", source: "Lala" } +2100.7 "Arcane Mine" Ability { id: "8899", source: "Lala" } +2108.6 "Symmetric Surge x2" Ability { id: "889E", source: "Lala" } + +2112.8 "Inferno Theorem" Ability { id: "88AE", source: "Lala" } +2122.9 "Strategic Strike" Ability { id: "88AD", source: "Lala" } + +2131.1 "--middle--" Ability { id: "8874", source: "Lala" } +2138.3 "Spatial Tactics" Ability { id: "88A0", source: "Lala" } +2143.4 "Arcane Array 2" Ability { id: "889F", source: "Lala" } +2149.2 "Bright Pulse" Ability { id: "8891", source: "Lala" } +2150.5 "Inferno Divide 1" Ability { id: "8893", source: "Arcane Font" } window 1,1 +2150.5 "Radiance" Ability { id: "8D1F", source: "Arcane Globe" } +2152.9 "Inferno Divide 2" Ability { id: "8893", source: "Arcane Font" } window 1,1 +2156.6 "Inferno Divide 3" Ability { id: "8893", source: "Arcane Font" } window 1,1 +2157.6 "Angular Addition" Ability { id: ["8889", "8D2E"], source: "Lala" } +2157.8 "Inferno Divide 4" Ability { id: "8893", source: "Arcane Font" } window 1,1 +2160.2 "Inferno Divide 5" Ability { id: "8893", source: "Arcane Font" } window 1,1 +2165.6 "Arcane Blight" Ability { id: ["888B", "888C", "888D", "888E"], source: "Lala" } + +2173.7 "Inferno Theorem" Ability { id: "88AE", source: "Lala" } +2184.8 "Inferno Theorem" Ability { id: "88AE", source: "Lala" } + +2196.9 "Symmetric Surge" Ability { id: "88A1", source: "Lala" } +2202.0 "Constructive Figure" Ability { id: "88A3", source: "Lala" } +2207.1 "Arcane Plot" Ability { id: "88A2", source: "Lala" } +2212.9 "Bright Pulse" Ability { id: "8891", source: "Lala" } +2221.2 "Arcane Point" Ability { id: "88A5", source: "Lala" } +2221.8 "Aero II" Ability { id: "88A4", source: "Aloalo Golem" } +2222.0 "Powerful Light" Ability { id: "88A6", source: "Lala" } +2230.3 "Explosive Theorem" Ability { id: "88A7", source: "Lala" } +2234.7 "Symmetric Surge x2" Ability { id: "889E", source: "Lala" } +2235.4 "Telluric Theorem" Ability { id: "88A9", source: "Lala" } + +2248.4 "Strategic Strike" Ability { id: "88AD", source: "Lala" } +2256.5 "Inferno Theorem" Ability { id: "88AE", source: "Lala" } + +2263.6 "--middle--" Ability { id: "8874", source: "Lala" } +2269.0 "Analysis" Ability { id: "8895", source: "Lala" } +2274.1 "Arcane Array 3" Ability { id: "8890", source: "Lala" } +2279.2 "Angular Addition" Ability { id: ["8889", "8D2E"], source: "Lala" } +2279.9 "Bright Pulse" Ability { id: "8891", source: "Lala" } +2281.2 "Radiance 1" Ability { id: "8894", source: "Arcane Globe" } +2287.3 "Arcane Blight" Ability { id: ["888B", "888C", "888D", "888E"], source: "Lala" } +2290.9 "Radiance 2" Ability { id: "8894", source: "Arcane Globe" } +2295.6 "Targeted Light" Ability { id: "8CDE", source: "Lala" } +2306.7 "Strategic Strike" Ability { id: "88AD", source: "Lala" } + +2316.8 "Inferno Theorem" Ability { id: "88AE", source: "Lala" } + +2319.9 "--sync--" StartsUsing { id: "8C25", source: "Lala" } window 20,20 +2329.9 "Inferno Theorem Enrage" Ability { id: "8C25", source: "Lala" } + + +# ALL ENCOUNTER ABILITIES +# 368 attack auto damage from Lala +# 8874 --sync-- repositioning for Lala +# 8889 Angular Addition self-targeted ability to give boss III +# 888B Arcane Blight self-targeted cast for initial back-safe 270 degree rotating cleave +# 888C Arcane Blight self-targeted cast for initial front-safe 270 degree rotating cleave +# 888D Arcane Blight self-targeted cast for initial east-safe 270 degree rotating cleave +# 888E Arcane Blight self-targeted cast for initial west-safe 270 degree rotating cleave +# 888F Arcane Blight cast and damage from 270 degree rotating cleave +# 8890 Arcane Array self-targeted cast to summon moving blue squares (#1) +# 8891 Bright Pulse cast and damage for initial blue square +# 8892 Bright Pulse damage from moving blue square +# 8893 Inferno Divide orange square cross explosion damage during Spatial Tactics +# 8894 Radiance damage from Arcane Globe being hit by a blue square (Arcane Array #1, #3) +# 8895 Analysis self-targeted cast before giving players +# 8898 Planar Tactics self-targeted cast before Arcane Mines +# 8899 Arcane Mine self-targeted cast to create 8 Arcane Mine squares +# 889A Arcane Mine cast and damage for initial Arcane Mine squares +# 889B Arcane Combustion damage from walking over an Arcane Mine +# 889C Massive Explosion damage from failing to resolve Subractive Suppressor Alpha +# 889D Massive Explosion damage from failing to resolve Subractive Suppressor Beta +# 889E Symmetric Surge damage from two person stack that gives magic vuln up +# 889F Arcane Array self-targeted cast to summon moving blue squares (#2) +# 88A0 Spatial Tactics self-targeted cast prior to Arcane Array 2 +# 88A1 Symmetric Surge self-targeted cast before this mechanic +# 88A2 Arcane Plot self-targeted cast to summon blue squares for Symmetric Surge +# 88A3 Constructive Figure self-targeted cast that summons Aloalo Golem on edge +# 88A4 Aero II cast and line damage from Aloalo Golem during Symmetric Surge +# 88A5 Arcane Point self-targeted cast that gives players 88A6 Powerful Light spreads +# 88A6 Powerful Light spread damage on players that turn the squares they are on blue +# 88A7 Explosive Theorem self-targeted cast for very large spreads +# 88A8 Explosive Theorem cast and damage on players for spreads with Telluric Theorem puddles +# 88A9 Telluric Theorem cast and damage for large puddles from Explosive Theorem +# 88AD Strategic Strike cast and damage for non-cleaving 3x tankbuster +# 88AE Inferno Theorem cast and raidwide damage +# 8C25 Inferno Theorem cast and enrage damage +# 8CDE Targeted Light self-targeted cast for weak spot boss tether +# 8CDF Targeted Light cast and damage on players for 8CDE +# 8D1F Radiance damage from Arcane Globe being hit by a blue square (Arcane Array #2) +# 8D2E Angular Addition self-targeted ability to give boss V + + +#~~~~~~~~~~~~~~~~~~~~# +# STATICE WITH A GUN # +#~~~~~~~~~~~~~~~~~~~~# + +# -p 8949:3013.8 +# -ii 8947 8925 8926 895A 895B 894C 8987 8A6A 895F 8960 8CC2 8982 8CBE 89F9 8C24 8957 8958 +# -it Statice + +# Midnight Trial will be sealed off +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1148" } window 10000,0 +3008.8 "--sync--" StartsUsing { id: "8949", source: "Statice" } window 20,20 +3013.8 "Aero IV" Ability { id: "8949", source: "Statice" } + +3018.0 "--middle--" Ability { id: "8927", source: "Statice" } +3023.4 "Trick Reload" Ability { id: "894A", source: "Statice" } +3038.2 "Trapshooting 1" Ability { id: "8D1A", source: "Statice" } +3048.6 "Trigger Happy" Ability { id: "894B", source: "Statice" } +3056.5 "Ring a Ring o' Explosions" Ability { id: "895C", source: "Statice" } +3070.6 "Trapshooting 2" Ability { id: "8959", source: "Statice" } +3074.6 "Burst" Ability { id: "895D", source: "Bomb" } + +3081.8 "--middle--" Ability { id: "8927", source: "Statice" } +3087.4 "Trick Reload" Ability { id: "894A", source: "Statice" } +3101.2 "Ring a Ring o' Explosions" Ability { id: "895C", source: "Statice" } +3106.3 "Dartboard of Dancing Explosives " Ability { id: "8CBD", source: "Statice" } +3120.1 "Trapshooting 1" Ability { id: "8959", source: "Statice" } +3122.0 "Burst" Ability { id: "895D", source: "Bomb" } +3125.3 "Uncommon Ground" Ability { id: "8954", source: "Statice" } + +3132.3 "--middle--" Ability { id: "8927", source: "Statice" } +3137.7 "Surprise Balloon" Ability { id: "894D", source: "Statice" } +3144.8 "Beguiling Glitter" Ability { id: "8963", source: "Statice" } +3149.8 "Surprise Needle 1" #Ability { id: "894F", source: "Needle" } +3150.7 "Pop 1" Ability { id: "894E", source: "Statice" } +3151.5 "Surprise Needle 2" #Ability { id: "894F", source: "Needle" } +3152.4 "Trigger Happy" Ability { id: "894B", source: "Statice" } +3153.2 "Surprise Needle 3" #Ability { id: "894F", source: "Needle" } +3154.9 "Surprise Needle 4" #Ability { id: "894F", source: "Needle" } +3155.6 "Pop 2" Ability { id: "894E", source: "Statice" } +3160.4 "Trapshooting 2" Ability { id: "8959", source: "Statice" } +3172.5 "Aero IV" Ability { id: "8949", source: "Statice" } + +3179.7 "--untargetable--" +3179.7 "--middle--" Ability { id: "8927", source: "Statice" } +3184.1 "Ring a Ring o' Explosions" Ability { id: "895C", source: "Statice" } +3189.2 "Present Box 1" Ability { id: "8955", source: "Statice" } +3194.3 "Fireworks (cast)" Ability { id: "895E", source: "Statice" } +3204.0 "Fireworks" Ability { id: "895F", source: "Statice" } +3204.2 "Burst" Ability { id: "895D", source: "Bomb" } +3204.3 "Faerie Ring" Ability { id: "8956", source: "Surprising Staff" } + +3206.3 "--targetable--" +3212.5 "Shocking Abandon" Ability { id: "8948", source: "Statice" } + +3222.7 "Pinwheeling Dartboard" Ability { id: "8CBC", source: "Statice" } +3231.4 "Fireworks (cast)" Ability { id: "895E", source: "Statice" } +3233.4 "Fire Spread" Ability { id: "8952", source: "Statice" } duration 11 +3241.3 "Fireworks" Ability { id: "895F", source: "Statice" } +3241.6 "Uncommon Ground" Ability { id: "8954", source: "Statice" } +3253.6 "Aero IV" Ability { id: "8949", source: "Statice" } + +3260.8 "--middle--" Ability { id: "8927", source: "Statice" } +3266.5 "Beguiling Glitter" Ability { id: "8963", source: "Statice" } +3273.6 "Trick Reload" Ability { id: "894A", source: "Statice" } +3288.4 "Trapshooting 1" Ability { id: "8D1A", source: "Statice" } +3295.5 "Present Box 2" Ability { id: "8955", source: "Statice" } +3302.2 "Ring a Ring o' Explosions" Ability { id: "895C", source: "Statice" } +3309.6 "Trigger Happy" Ability { id: "894B", source: "Statice" } +3310.2 "Faerie Ring" Ability { id: "8956", source: "Surprising Staff" } +3316.5 "Trapshooting 2" Ability { id: "8959", source: "Statice" } +3320.4 "Burst" Ability { id: "895D", source: "Bomb" } + +3327.6 "Aero IV" Ability { id: "8949", source: "Statice" } +3335.7 "Aero IV" Ability { id: "8949", source: "Statice" } + +3338.8 "--sync--" StartsUsing { id: "8C23", source: "Statice" } +3348.8 "Aero IV Enrage" Ability { id: "8C23", source: "Statice" } + + +# ALL ENCOUNTER ABILITIES +# 8925 Locked and Loaded ability during 894A Trick Reload when a bullet is in the gun +# 8926 Misload ability during 894A Trick Reload when a bullet missed the gun oops +# 8927 --sync-- repositioning from Statice +# 8947 --sync-- auto damage from Statice +# 8948 Shocking Abandon cast and tankbuster damage +# 8949 Aero IV cast and raidwide damage +# 894A Trick Reload self-targeted cast to load gun with 8925/8926 +# 894B Trigger Happy self-targeted cast for limit cut dart board +# 894C Trigger Happy cast and damage for limit cut dart board (filled pie slice) +# 894D Surprise Balloon self-targeted cast +# 894E Pop knockback from Surprise Balloon being popped +# 894F Surprise Needle short cast and ability blue line aoe from needle adds that pop balloons +# 8954 Uncommon Ground light damage on people who are not on a dartboard color with Bull's-eye +# 8955 Present Box self-targeted cast for bombs/donuts/missiles/hands +# 8956 Faerie Ring cast and damage for donut rings during Present Box +# 8957 Burst high damage from running into Surprising Missile tethered add +# 8958 Death by Claw high damage from running into Surprising Claw tethered add +# 8959 Trapshooting self-targeted cast after Trick Reload (some instances are 8D1A) +# 895A Trapshooting stack damage from Trick Reload +# 895B Trapshooting spread damage from Trick Reload +# 895C Ring a Ring o' Explosions self-targeted cast for rotating bombs +# 895D Burst cast and damage from bomb explosion +# 895E Fireworks self-targeted cast +# 895F Fireworks two person stack damage during Present Box / Pinwheeling Dartboard +# 8960 Fireworks spread damage during Present Box / Pinwheeling Dartboard +# 8963 Beguiling Glitter self-targeted cast to give players Face debuffs +# 8982 Fire Spread self-targeted damage for initial rotating fire (from Ball of Fire) +# 8987 Trigger Happy cast and zero damage for limit cut dart board (empty pie slice) +# 89F9 Fire Spread ongoing rotating fire damage (from Statice) +# 8A6A --sync-- ability on Bomb when rotating +# 8C23 Aero IV cast and enrage damage +# 8C24 Aero IV post-enrage follow-up damage just in case +# 8CBC Pinwheeling Dartboard self-targeted cast to summon dartboard with rotating fire +# 8CBD Dartboard of Dancing Explosives self-targeted cast for colored dartboard +# 8CBE Burning Chains damage from not breaking chains +# 8CC2 Uncommon Ground heavy damage on people who are on the same dartboard color with Bull's-eye +# 8D1A Trapshooting self-targeted cast after Trick Reload (some instances are 8959) + + +#~~~~~~~~~# +# TRASH 1 # +#~~~~~~~~~# + +# ALL ENCOUNTER ABILITIES +# 7A56 --sync-- various auto damage (trash 1) +# 8BC0 --sync-- damage from Twister tornados +# 8C6E Lead Hook casted damage from Kiwakin 3x tankbuster +# 8C62 Lead Hook damage from hit 2 +# 8C53 Lead Hook damage from hit 3 +# 8C64 Water III casted damage from Snipper stack marker +# 8C63 Sharp Strike casted damage from Kiwakin tank buster with a concussion dot +# 8BB8 Tail Screw casted damage from Kiwakin baited circle +# 8BB9 Bubble Shower casted damage from Snipper front conal +# 8BBA Crab Dribble fast casted damage from Snipper back conal after Bubble Shower 8BB9 +# 8BBD Hydrocannon casted damage from Ray front line +# 8BBF Expulsion casted damage from Ray "get out" +# 8BBE Electric Whorl casted damage from Ray "get in" +# 8C65 Hydroshot casted damage from Monk knockback line with a dot +# 8BBB Cross Attack casted damage from Monk tankbuster + +#~~~~~~~~~# +# TRASH 2 # +#~~~~~~~~~# + +# TODO: does Wood Golem have an enrage?? + +# ALL ENCOUNTER ABILITIES +# 7A58 --sync-- various auto damage (trash 2) +# 8BC1 Ovation cast and damage from Wood Golem front line aoe +# 8BC5 Gravity Force cast and stack damage from Islekeeper +# 8C2F Ancient Quaga cast and damage for Islekeeper raidwide enrage +# 8C4C Ancient Aero III interruptable cast and damage for Wood Golem raidwide +# 8C4D Tornado cast and damage from Wood Golem that binds the initial target and heavies all targets +# 8C4E Ancient Quaga cast and damage for Islekeeper raidwide +# 8C6F Isle Drop cast and damage for Islekeeper front circle diff --git a/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.ts b/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.ts index 9199e273d6..ae4bdb593b 100644 --- a/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.ts +++ b/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.ts @@ -1734,12 +1734,12 @@ const triggerSet: TriggerSet = { } const alertText = output.alertText!({ - color1: color1, - color2: color2, - color3: color3, + color1: output[color1]!(), + color2: output[color2]!(), + color3: output[color3]!(), mixedType: mixedType, }); - const infoText = output.infoText!({ color: color1, player: partner }); + const infoText = output.infoText!({ color: output[color1]!(), player: partner }); return { alertText, infoText }; }, }, diff --git a/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.txt b/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.txt index 5010629256..b98970c574 100644 --- a/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.txt +++ b/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.txt @@ -10,7 +10,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~# # SHISHIO # @@ -26,88 +26,88 @@ hideall "--sync--" # is just a dodge check. # Trial of Benevolence will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10F8:/ window 10000,0 -1007.0 "--sync--" sync / 14:[^:]*:Shishio:8441:/ window 10000,0 -1012.0 "Enkyo" sync / 1[56]:[^:]*:Shishio:8441:/ - -1014.1 "--middle--" sync / 1[56]:[^:]*:Shishio:8444:/ -1019.4 "Stormcloud Summons (circles)" sync / 1[56]:[^:]*:Shishio:841F:/ -1024.1 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:8420:/ -1026.2 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:8421:/ -1028.3 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:8421:/ - -1046.5 "--sync--" sync / 14:[^:]*:Shishio:8442:/ window 10,10 -1051.5 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:8442:/ -1055.5 "Slither" sync / 1[56]:[^:]*:Shishio:8443:/ - -1060.7 "--north--" sync / 1[56]:[^:]*:Shishio:8444:/ -1071.0 "Noble Pursuit 1" sync / 1[56]:[^:]*:Shishio:842E:/ -1071.8 "Levinburst 1" #sync / 1[56]:[^:]*:Rairin:8430:/ -1072.5 "Noble Pursuit 2" #sync / 1[56]:[^:]*:Shishio:842F:/ -1073.3 "Levinburst 2" #sync / 1[56]:[^:]*:Rairin:8430:/ -1074.0 "Noble Pursuit 3" #sync / 1[56]:[^:]*:Shishio:842F:/ -1074.8 "Levinburst 3" #sync / 1[56]:[^:]*:Rairin:8430:/ -1075.5 "Noble Pursuit 4" #sync / 1[56]:[^:]*:Shishio:842F:/ -1076.3 "Levinburst 4" #sync / 1[56]:[^:]*:Rairin:8430:/ -1081.7 "Enkyo" sync / 1[56]:[^:]*:Shishio:8441:/ - -1083.8 "--middle--" sync / 1[56]:[^:]*:Shishio:8444:/ -1088.8 "Unnatural Wail" sync / 1[56]:[^:]*:Shishio:843E:/ -1093.9 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:8431:/ -1105.9 "Right Swipe" sync / 1[56]:[^:]*:Devilish Thrall:8432:/ -1105.9 "Left Swipe" sync / 1[56]:[^:]*:Devilish Thrall:8433:/ -1106.8 "Unnatural Ailment/Unnatural Force 1" sync / 1[56]:[^:]*:Shishio:(843F|8440):/ -1112.9 "Right Swipe" sync / 1[56]:[^:]*:Devilish Thrall:8432:/ -1112.9 "Left Swipe" sync / 1[56]:[^:]*:Devilish Thrall:8433:/ -1113.8 "Unnatural Force/Unnatural Ailment 2" sync / 1[56]:[^:]*:Shishio:(8440|843F):/ - -1118.1 "--middle--" sync / 1[56]:[^:]*:Shishio:8444:/ -1123.4 "Stormcloud Summons (lines)" sync / 1[56]:[^:]*:Shishio:841F:/ -1128.1 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:8420:/ -1130.2 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:8421:/ -1132.2 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:8421:/ - -1155.7 "--middle--" sync / 1[56]:[^:]*:Shishio:8444:/ window 10,10 -1160.8 "Unnatural Wail" sync / 1[56]:[^:]*:Shishio:843E:/ -1168.1 "Eye of the Thunder Vortex/Vortex of the Thunder Eye" sync / 1[56]:[^:]*:Shishio:(843A|843C):/ -1168.8 "Unnatural Ailment/Unnatural Force 1" sync / 1[56]:[^:]*:Shishio:(843F|8440):/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10F8" } window 10000,0 +1007.0 "--sync--" StartsUsing { id: "8441", source: "Shishio" } window 10000,0 +1012.0 "Enkyo" Ability { id: "8441", source: "Shishio" } + +1014.1 "--middle--" Ability { id: "8444", source: "Shishio" } +1019.4 "Stormcloud Summons (circles)" Ability { id: "841F", source: "Shishio" } +1024.1 "Smokeater 1" Ability { id: "8420", source: "Shishio" } +1026.2 "Smokeater 2?" #Ability { id: "8421", source: "Shishio" } +1028.3 "Smokeater 3?" #Ability { id: "8421", source: "Shishio" } + +1046.5 "--sync--" StartsUsing { id: "8442", source: "Shishio" } window 10,10 +1051.5 "Splitting Cry" Ability { id: "8442", source: "Shishio" } +1055.5 "Slither" Ability { id: "8443", source: "Shishio" } + +1060.7 "--north--" Ability { id: "8444", source: "Shishio" } +1071.0 "Noble Pursuit 1" Ability { id: "842E", source: "Shishio" } +1071.8 "Levinburst 1" #Ability { id: "8430", source: "Rairin" } +1072.5 "Noble Pursuit 2" #Ability { id: "842F", source: "Shishio" } +1073.3 "Levinburst 2" #Ability { id: "8430", source: "Rairin" } +1074.0 "Noble Pursuit 3" #Ability { id: "842F", source: "Shishio" } +1074.8 "Levinburst 3" #Ability { id: "8430", source: "Rairin" } +1075.5 "Noble Pursuit 4" #Ability { id: "842F", source: "Shishio" } +1076.3 "Levinburst 4" #Ability { id: "8430", source: "Rairin" } +1081.7 "Enkyo" Ability { id: "8441", source: "Shishio" } + +1083.8 "--middle--" Ability { id: "8444", source: "Shishio" } +1088.8 "Unnatural Wail" Ability { id: "843E", source: "Shishio" } +1093.9 "Haunting Cry" Ability { id: "8431", source: "Shishio" } +1105.9 "Right Swipe" Ability { id: "8432", source: "Devilish Thrall" } +1105.9 "Left Swipe" Ability { id: "8433", source: "Devilish Thrall" } +1106.8 "Unnatural Ailment/Unnatural Force 1" Ability { id: ["843F", "8440"], source: "Shishio" } +1112.9 "Right Swipe" Ability { id: "8432", source: "Devilish Thrall" } +1112.9 "Left Swipe" Ability { id: "8433", source: "Devilish Thrall" } +1113.8 "Unnatural Force/Unnatural Ailment 2" Ability { id: ["8440", "843F"], source: "Shishio" } + +1118.1 "--middle--" Ability { id: "8444", source: "Shishio" } +1123.4 "Stormcloud Summons (lines)" Ability { id: "841F", source: "Shishio" } +1128.1 "Smokeater 1" Ability { id: "8420", source: "Shishio" } +1130.2 "Smokeater 2?" #Ability { id: "8421", source: "Shishio" } +1132.2 "Smokeater 3?" #Ability { id: "8421", source: "Shishio" } + +1155.7 "--middle--" Ability { id: "8444", source: "Shishio" } window 10,10 +1160.8 "Unnatural Wail" Ability { id: "843E", source: "Shishio" } +1168.1 "Eye of the Thunder Vortex/Vortex of the Thunder Eye" Ability { id: ["843A", "843C"], source: "Shishio" } +1168.8 "Unnatural Ailment/Unnatural Force 1" Ability { id: ["843F", "8440"], source: "Shishio" } # Technically, the in/out and out/in for each pair are named the same thing. # But in a timeline, switching them makes it obvious it's the other. -1172.1 "Vortex of the Thunder Eye/Eye of the Thunder Vortex" sync / 1[56]:[^:]*:Shishio:(843B|843D):/ -1172.8 "Unnatural Force/Unnatural Ailment 2" sync / 1[56]:[^:]*:Shishio:(8440|843F):/ -1181.4 "Enkyo" sync / 1[56]:[^:]*:Shishio:8441:/ - -1189.5 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:8431:/ -1194.6 "--sync--" sync / 1[56]:[^:]*:Shishio:8444:/ -1211.9 "Vengeful Souls" sync / 1[56]:[^:]*:Shishio:8435:/ -1211.9 "Stygian Aura" sync / 1[56]:[^:]*:Shishio:8437:/ -1211.9 "Vermilion Aura" sync / 1[56]:[^:]*:Shishio:8436:/ - -1219.0 "Thunder Vortex" sync / 1[56]:[^:]*:Shishio:8439:/ -1226.3 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:8442:/ -1230.3 "Slither" sync / 1[56]:[^:]*:Shishio:8443:/ - -1235.5 "--middle--" sync / 1[56]:[^:]*:Shishio:8444:/ -1240.8 "Stormcloud Summons (circles)" sync / 1[56]:[^:]*:Shishio:841F:/ -1245.5 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:8420:/ -1247.6 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:8421:/ -1249.7 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:8421:/ - -1267.1 "--middle--" sync / 1[56]:[^:]*:Shishio:8444:/ -1272.2 "Stormcloud Summons (lines)" sync / 1[56]:[^:]*:Shishio:841F:/ -1276.9 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:8420:/ -1279.0 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:8421:/ -1281.0 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:8421:/ - -1307.4 "--middle--" sync / 1[56]:[^:]*:Shishio:8444:/ -1312.5 "Unnatural Wail" sync / 1[56]:[^:]*:Shishio:843E:/ -1319.8 "Eye of the Thunder Vortex/Vortex of the Thunder Eye" sync / 1[56]:[^:]*:Shishio:(843A|843C):/ -1320.4 "Unnatural Ailment/Unnatural Force 1" sync / 1[56]:[^:]*:Shishio:(843F|8440):/ -1323.8 "Vortex of the Thunder Eye/Eye of the Thunder Vortex" sync / 1[56]:[^:]*:Shishio:(843B|843D):/ -1324.4 "Unnatural Force/Unnatural Ailment 2" sync / 1[56]:[^:]*:Shishio:(8440|843F):/ - -1329.4 "--sync--" sync / 14:[^:]*:Shishio:841E:/ window 20,20 -1339.4 "Enkyo Enrage" sync / 1[56]:[^:]*:Shishio:841E:/ +1172.1 "Vortex of the Thunder Eye/Eye of the Thunder Vortex" Ability { id: ["843B", "843D"], source: "Shishio" } +1172.8 "Unnatural Force/Unnatural Ailment 2" Ability { id: ["8440", "843F"], source: "Shishio" } +1181.4 "Enkyo" Ability { id: "8441", source: "Shishio" } + +1189.5 "Haunting Cry" Ability { id: "8431", source: "Shishio" } +1194.6 "--sync--" Ability { id: "8444", source: "Shishio" } +1211.9 "Vengeful Souls" Ability { id: "8435", source: "Shishio" } +1211.9 "Stygian Aura" Ability { id: "8437", source: "Shishio" } +1211.9 "Vermilion Aura" Ability { id: "8436", source: "Shishio" } + +1219.0 "Thunder Vortex" Ability { id: "8439", source: "Shishio" } +1226.3 "Splitting Cry" Ability { id: "8442", source: "Shishio" } +1230.3 "Slither" Ability { id: "8443", source: "Shishio" } + +1235.5 "--middle--" Ability { id: "8444", source: "Shishio" } +1240.8 "Stormcloud Summons (circles)" Ability { id: "841F", source: "Shishio" } +1245.5 "Smokeater 1" Ability { id: "8420", source: "Shishio" } +1247.6 "Smokeater 2?" #Ability { id: "8421", source: "Shishio" } +1249.7 "Smokeater 3?" #Ability { id: "8421", source: "Shishio" } + +1267.1 "--middle--" Ability { id: "8444", source: "Shishio" } +1272.2 "Stormcloud Summons (lines)" Ability { id: "841F", source: "Shishio" } +1276.9 "Smokeater 1" Ability { id: "8420", source: "Shishio" } +1279.0 "Smokeater 2?" #Ability { id: "8421", source: "Shishio" } +1281.0 "Smokeater 3?" #Ability { id: "8421", source: "Shishio" } + +1307.4 "--middle--" Ability { id: "8444", source: "Shishio" } +1312.5 "Unnatural Wail" Ability { id: "843E", source: "Shishio" } +1319.8 "Eye of the Thunder Vortex/Vortex of the Thunder Eye" Ability { id: ["843A", "843C"], source: "Shishio" } +1320.4 "Unnatural Ailment/Unnatural Force 1" Ability { id: ["843F", "8440"], source: "Shishio" } +1323.8 "Vortex of the Thunder Eye/Eye of the Thunder Vortex" Ability { id: ["843B", "843D"], source: "Shishio" } +1324.4 "Unnatural Force/Unnatural Ailment 2" Ability { id: ["8440", "843F"], source: "Shishio" } + +1329.4 "--sync--" StartsUsing { id: "841E", source: "Shishio" } window 20,20 +1339.4 "Enkyo Enrage" Ability { id: "841E", source: "Shishio" } # ALL ENCOUNTER ABILITIES # 841F Stormcloud Summons cast and self-targeted ability @@ -160,81 +160,81 @@ hideall "--sync--" # -ii 8502 8504 8555 8504 8545 851D 851E 8584 8585 852F 854B 8257 8549 8554 8628 8544 854E 853E 852B 854C 854A # Trial of Wisdom will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10F9:/ window 10000,0 -2009.3 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:8534:/ window 10000,0 -2014.3 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8534:/ - -2021.7 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2028.0 "Seal of Scurrying Sparks" sync / 1[56]:[^:]*:Gorai the Uncaged:8503:/ -2033.3 "Flame and Sulphur" sync / 1[56]:[^:]*:Gorai the Uncaged:8508:/ -2044.6 "Brazen Ballad" sync / 1[56]:[^:]*:Gorai the Uncaged:(8509|850A):/ -2047.7 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:(853F|8540):/ -2047.7 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:(853C|853D):/ -2048.0 "Greater Ball of Fire" sync / 1[56]:[^:]*:Gorai the Uncaged:8539:/ -2055.6 "Impure Purgation 1" sync / 1[56]:[^:]*:Gorai the Uncaged:8552:/ -2057.6 "Impure Purgation 2" sync / 1[56]:[^:]*:Gorai the Uncaged:8553:/ - -2063.5 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2068.7 "Thundercall" sync / 1[56]:[^:]*:Gorai the Uncaged:8520:/ -2079.6 "Humble Hammer" sync / 1[56]:[^:]*:Gorai the Uncaged:8502:/ -2083.2 "Flintlock" sync / 1[56]:[^:]*:Gorai the Uncaged:8526:/ -2083.6 "Shock" sync / 1[56]:[^:]*:Ball of Levin:8521:/ -2094.5 "Torching Torment" sync / 1[56]:[^:]*:Gorai the Uncaged:8532:/ - -2100.9 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2108.0 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:8512:/ -2114.3 "Malformed Prayer" sync / 1[56]:[^:]*:Gorai the Uncaged:8518:/ -2126.3 "Pointed Purgation 1" sync / 1[56]:[^:]*:Gorai the Uncaged:8548:/ -2126.4 "Burst 1" sync / 1[56]:[^:]*:Gorai the Uncaged:8546:/ -2132.4 "Pointed Purgation 2" sync / 1[56]:[^:]*:Gorai the Uncaged:8548:/ -2132.4 "Burst 2" sync / 1[56]:[^:]*:Gorai the Uncaged:8546:/ -2138.4 "Pointed Purgation 3" sync / 1[56]:[^:]*:Gorai the Uncaged:8548:/ -2138.4 "Burst 3" sync / 1[56]:[^:]*:Gorai the Uncaged:8546:/ -2144.4 "Pointed Purgation 4" sync / 1[56]:[^:]*:Gorai the Uncaged:8548:/ -2144.4 "Burst 4" sync / 1[56]:[^:]*:Gorai the Uncaged:8546:/ -2155.7 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8534:/ - -2163.1 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2169.2 "Seal of Scurrying Sparks" sync / 1[56]:[^:]*:Gorai the Uncaged:8503:/ -2178.5 "Cloud to Ground" sync / 1[56]:[^:]*:Gorai the Uncaged:854D:/ duration 6.3 -2180.5 "Greater Ball of Fire/Great Ball of Fire" sync / 1[56]:[^:]*:Gorai the Uncaged:(8539|853A):/ window 1,1 -2183.5 "Great Ball of Fire/Greater Ball of Fire" sync / 1[56]:[^:]*:Gorai the Uncaged:(853A|8539):/ window 1,1 - -2193.5 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2202.2 "Fighting Spirits" sync / 1[56]:[^:]*:Gorai the Uncaged:854F:/ -2205.5 "Worldly Pursuit 1" sync / 1[56]:[^:]*:Gorai the Uncaged:8550:/ -2208.6 "Worldly Pursuit 2" sync / 1[56]:[^:]*:Gorai the Uncaged:8550:/ -2211.6 "Worldly Pursuit 3" sync / 1[56]:[^:]*:Gorai the Uncaged:8550:/ -2214.6 "Worldly Pursuit 4" sync / 1[56]:[^:]*:Gorai the Uncaged:8550:/ -2217.6 "Worldly Pursuit 5" sync / 1[56]:[^:]*:Gorai the Uncaged:8550:/ -2232.2 "Torching Torment" sync / 1[56]:[^:]*:Gorai the Uncaged:8532:/ - -2238.6 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2245.8 "Malformed Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:8514:/ -2252.2 "Malformed Prayer" sync / 1[56]:[^:]*:Gorai the Uncaged:8518:/ -2265.3 "Flickering Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:8510:/ -2267.3 "Burst 1" #sync / 1[56]:[^:]*:Gorai the Uncaged:8546:/ -2269.9 "Burst 2" #sync / 1[56]:[^:]*:Gorai the Uncaged:8546:/ -2271.9 "Burst 3" #sync / 1[56]:[^:]*:Gorai the Uncaged:8546:/ -2272.6 "Fire Spread 1" #sync / 1[56]:[^:]*:Gorai the Uncaged:8541:/ -2274.6 "Fire Spread 2" #sync / 1[56]:[^:]*:Gorai the Uncaged:8541:/ - -2282.9 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2289.0 "Seal of Scurrying Sparks" sync / 1[56]:[^:]*:Gorai the Uncaged:8503:/ -2294.3 "Flame and Sulphur" sync / 1[56]:[^:]*:Gorai the Uncaged:8508:/ -2305.6 "Brazen Ballad" sync / 1[56]:[^:]*:Gorai the Uncaged:850A:/ -2308.7 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:8540:/ -2308.7 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:853D:/ -2309.1 "Greater Ball of Fire" sync / 1[56]:[^:]*:Gorai the Uncaged:8539:/ -2318.3 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8534:/ - -2325.4 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:8536:/ -2335.4 "Living Hell Enrage" sync / 1[56]:[^:]*:Gorai the Uncaged:8536:/ -#2336.0 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8538:/ -#2337.8 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8537:/ -#2338.4 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8538:/ -#2340.2 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8537:/ -#2340.8 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8538:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10F9" } window 10000,0 +2009.3 "--sync--" StartsUsing { id: "8534", source: "Gorai the Uncaged" } window 10000,0 +2014.3 "Unenlightenment" Ability { id: "8534", source: "Gorai the Uncaged" } + +2021.7 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2028.0 "Seal of Scurrying Sparks" Ability { id: "8503", source: "Gorai the Uncaged" } +2033.3 "Flame and Sulphur" Ability { id: "8508", source: "Gorai the Uncaged" } +2044.6 "Brazen Ballad" Ability { id: ["8509", "850A"], source: "Gorai the Uncaged" } +2047.7 "Falling Rock" Ability { id: ["853F", "8540"], source: "Gorai the Uncaged" } +2047.7 "Fire Spread" Ability { id: ["853C", "853D"], source: "Gorai the Uncaged" } +2048.0 "Greater Ball of Fire" Ability { id: "8539", source: "Gorai the Uncaged" } +2055.6 "Impure Purgation 1" Ability { id: "8552", source: "Gorai the Uncaged" } +2057.6 "Impure Purgation 2" Ability { id: "8553", source: "Gorai the Uncaged" } + +2063.5 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2068.7 "Thundercall" Ability { id: "8520", source: "Gorai the Uncaged" } +2079.6 "Humble Hammer" Ability { id: "8502", source: "Gorai the Uncaged" } +2083.2 "Flintlock" Ability { id: "8526", source: "Gorai the Uncaged" } +2083.6 "Shock" Ability { id: "8521", source: "Ball of Levin" } +2094.5 "Torching Torment" Ability { id: "8532", source: "Gorai the Uncaged" } + +2100.9 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2108.0 "Rousing Reincarnation" Ability { id: "8512", source: "Gorai the Uncaged" } +2114.3 "Malformed Prayer" Ability { id: "8518", source: "Gorai the Uncaged" } +2126.3 "Pointed Purgation 1" Ability { id: "8548", source: "Gorai the Uncaged" } +2126.4 "Burst 1" Ability { id: "8546", source: "Gorai the Uncaged" } +2132.4 "Pointed Purgation 2" Ability { id: "8548", source: "Gorai the Uncaged" } +2132.4 "Burst 2" Ability { id: "8546", source: "Gorai the Uncaged" } +2138.4 "Pointed Purgation 3" Ability { id: "8548", source: "Gorai the Uncaged" } +2138.4 "Burst 3" Ability { id: "8546", source: "Gorai the Uncaged" } +2144.4 "Pointed Purgation 4" Ability { id: "8548", source: "Gorai the Uncaged" } +2144.4 "Burst 4" Ability { id: "8546", source: "Gorai the Uncaged" } +2155.7 "Unenlightenment" Ability { id: "8534", source: "Gorai the Uncaged" } + +2163.1 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2169.2 "Seal of Scurrying Sparks" Ability { id: "8503", source: "Gorai the Uncaged" } +2178.5 "Cloud to Ground" Ability { id: "854D", source: "Gorai the Uncaged" } duration 6.3 +2180.5 "Greater Ball of Fire/Great Ball of Fire" Ability { id: ["8539", "853A"], source: "Gorai the Uncaged" } window 1,1 +2183.5 "Great Ball of Fire/Greater Ball of Fire" Ability { id: ["853A", "8539"], source: "Gorai the Uncaged" } window 1,1 + +2193.5 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2202.2 "Fighting Spirits" Ability { id: "854F", source: "Gorai the Uncaged" } +2205.5 "Worldly Pursuit 1" Ability { id: "8550", source: "Gorai the Uncaged" } +2208.6 "Worldly Pursuit 2" Ability { id: "8550", source: "Gorai the Uncaged" } +2211.6 "Worldly Pursuit 3" Ability { id: "8550", source: "Gorai the Uncaged" } +2214.6 "Worldly Pursuit 4" Ability { id: "8550", source: "Gorai the Uncaged" } +2217.6 "Worldly Pursuit 5" Ability { id: "8550", source: "Gorai the Uncaged" } +2232.2 "Torching Torment" Ability { id: "8532", source: "Gorai the Uncaged" } + +2238.6 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2245.8 "Malformed Reincarnation" Ability { id: "8514", source: "Gorai the Uncaged" } +2252.2 "Malformed Prayer" Ability { id: "8518", source: "Gorai the Uncaged" } +2265.3 "Flickering Flame" Ability { id: "8510", source: "Gorai the Uncaged" } +2267.3 "Burst 1" #Ability { id: "8546", source: "Gorai the Uncaged" } +2269.9 "Burst 2" #Ability { id: "8546", source: "Gorai the Uncaged" } +2271.9 "Burst 3" #Ability { id: "8546", source: "Gorai the Uncaged" } +2272.6 "Fire Spread 1" #Ability { id: "8541", source: "Gorai the Uncaged" } +2274.6 "Fire Spread 2" #Ability { id: "8541", source: "Gorai the Uncaged" } + +2282.9 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2289.0 "Seal of Scurrying Sparks" Ability { id: "8503", source: "Gorai the Uncaged" } +2294.3 "Flame and Sulphur" Ability { id: "8508", source: "Gorai the Uncaged" } +2305.6 "Brazen Ballad" Ability { id: "850A", source: "Gorai the Uncaged" } +2308.7 "Falling Rock" Ability { id: "8540", source: "Gorai the Uncaged" } +2308.7 "Fire Spread" Ability { id: "853D", source: "Gorai the Uncaged" } +2309.1 "Greater Ball of Fire" Ability { id: "8539", source: "Gorai the Uncaged" } +2318.3 "Unenlightenment" Ability { id: "8534", source: "Gorai the Uncaged" } + +2325.4 "--sync--" StartsUsing { id: "8536", source: "Gorai the Uncaged" } +2335.4 "Living Hell Enrage" Ability { id: "8536", source: "Gorai the Uncaged" } +#2336.0 "Living Hell" #Ability { id: "8538", source: "Gorai the Uncaged" } +#2337.8 "Living Hell" #Ability { id: "8537", source: "Gorai the Uncaged" } +#2338.4 "Living Hell" #Ability { id: "8538", source: "Gorai the Uncaged" } +#2340.2 "Living Hell" #Ability { id: "8537", source: "Gorai the Uncaged" } +#2340.8 "Living Hell" #Ability { id: "8538", source: "Gorai the Uncaged" } # ALL ENCOUNTER ABILITIES # 84D3 --sync-- repositioning @@ -299,92 +299,92 @@ hideall "--sync--" # -ii 8507 85EC 85ED 8601 860B 8C28 8607 85FD 8604 8606 8537 8538 # Trial of Responsibility will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10FA:/ window 10000,0 -3011.4 "--sync--" sync / 14:[^:]*:Moko the Restless:860C:/ window 10000,10 -3016.4 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:860C:/ - -3035.6 "Triple Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:(85E4|85E5|85E6|85E7|85EE|85EF|85F0|85F1):/ -3038.6 "Triple Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(85E8|85E9|85EA|85EB|85F2|85F3|85F4|85F5):/ -3041.6 "Triple Kasumi-giri 3" sync / 1[56]:[^:]*:Moko the Restless:(85E8|85E9|85EA|85EB|85F2|85F3|85F4|85F5):/ -3055.7 "Triple Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:(85E4|85E5|85E6|85E7|85EE|85EF|85F0|85F1):/ -3058.7 "Triple Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(85E8|85E9|85EA|85EB|85F2|85F3|85F4|85F5):/ -3061.7 "Triple Kasumi-giri 3" sync / 1[56]:[^:]*:Moko the Restless:(85E8|85E9|85EA|85EB|85F2|85F3|85F4|85F5):/ - -3063.8 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:(871F|8720):/ -3071.1 "Lateral Slice" sync / 1[56]:[^:]*:Moko the Restless:860D:/ - -3077.2 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3083.3 "Scarlet Auspice" sync / 1[56]:[^:]*:Moko the Restless:8600:/ -3088.9 "Boundless Scarlet" sync / 1[56]:[^:]*:Moko the Restless:8599:/ -3096.0 "Invocation of Vengeance" sync / 1[56]:[^:]*:Moko the Restless:85BD:/ -3108.1 "Fleeting Iai-giri (cast)" sync / 1[56]:[^:]*:Moko the Restless:85C2:/ -3108.3 "--jump--" sync / 1[56]:[^:]*:Moko the Restless:85C3:/ -3110.6 "Fleeting Iai-giri" sync / 1[56]:[^:]*:Moko the Restless:(85F6|85F7|85F8):/ -3111.7 "Explosion 1" sync / 1[56]:[^:]*:Moko the Restless:8602:/ -3111.8 "Vengeful Flame/Vengeful Pyre" sync / 1[56]:[^:]*:Moko the Restless:(8608|8609):/ -3118.6 "Explosion 2" sync / 1[56]:[^:]*:Moko the Restless:8602:/ -3119.7 "Vengeful Pyre/Vengeful Flame" sync / 1[56]:[^:]*:Moko the Restless:(8609|8608):/ - -3127.6 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:860C:/ - -3134.8 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3139.0 "Shadow-twin" sync / 1[56]:[^:]*:Moko the Restless:85C7:/ - -3145.1 "Moonless Night" sync / 1[56]:[^:]*:Moko the Restless:860A:/ -3154.2 "Near Edge/Far Edge 1" sync / 1[56]:[^:]*:Moko the Restless:(85D9|85D8):/ -3154.2 "Double Iai-giri x2" sync / 1[56]:[^:]*:Moko's Shadow:85C8:/ -3154.2 "Clearout x3" sync / 1[56]:[^:]*:Oni's Claw:8C22:/ -3154.2 "--jump--" sync / 1[56]:[^:]*:Moko's Shadow:85C9:/ -3156.9 "Shadow Kasumi-giri 1" sync / 1[56]:[^:]*:Moko's Shadow:85F9:/ -3160.0 "Shadow Kasumi-giri 2" sync / 1[56]:[^:]*:Moko's Shadow:(86CC|86CD|86CE):/ - -3165.4 "Moonless Night" sync / 1[56]:[^:]*:Moko the Restless:860A:/ -3174.5 "Far Edge/Near Edge 2" sync / 1[56]:[^:]*:Moko the Restless:(85D8|85D9):/ -3174.5 "Double Iai-giri x2" sync / 1[56]:[^:]*:Moko's Shadow:85C8:/ -3174.5 "Clearout x3" sync / 1[56]:[^:]*:Oni's Claw:8C22:/ -3174.7 "--jump--" sync / 1[56]:[^:]*:Moko's Shadow:85C9:/ -3176.8 "Shadow Kasumi-giri 1" sync / 1[56]:[^:]*:Moko's Shadow:85F9:/ -3179.8 "Shadow Kasumi-giri 2" sync / 1[56]:[^:]*:Moko's Shadow:(86CC|86CD|86CE):/ - -3187.1 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:860C:/ - -3195.3 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3201.4 "Azure Auspice" sync / 1[56]:[^:]*:Moko the Restless:8603:/ -3207.0 "Boundless Azure" sync / 1[56]:[^:]*:Moko the Restless:859D:/ -3218.8 "Upwell 1" sync / 1[56]:[^:]*:Moko the Restless:8605:/ -3221.8 "Upwell 2" sync / 1[56]:[^:]*:Moko the Restless:8605:/ -3224.8 "Upwell 3" sync / 1[56]:[^:]*:Moko the Restless:8605:/ -3225.2 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3227.8 "Upwell 4" sync / 1[56]:[^:]*:Moko the Restless:8605:/ -3238.7 "Triple Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:(85E4|85E5|85E6|85E7|85EE|85EF|85F0|85F1):/ -3241.7 "Triple Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(85E8|85E9|85EA|85EB|85F2|85F3|85F4|85F5):/ -3244.7 "Triple Kasumi-giri 3" sync / 1[56]:[^:]*:Moko the Restless:(85E8|85E9|85EA|85EB|85F2|85F3|85F4|85F5):/ - -3251.8 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:860C:/ -3254.9 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:(871F|8720):/ -3260.0 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3264.1 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -3270.2 "Shadow-twin" sync / 1[56]:[^:]*:Moko the Restless:85C7:/ -3285.4 "Double Iai-giri x4" sync / 1[56]:[^:]*:Moko's Shadow:85C8:/ -3285.6 "--jump--" sync / 1[56]:[^:]*:Moko's Shadow:85C9:/ -3285.9 "Iron Storm" sync / 1[56]:[^:]*:Ashigaru Kyuhei:85FF:/ -3285.9 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:85FE:/ -3288.3 "Shadow Kasumi-giri 1" sync / 1[56]:[^:]*:Moko's Shadow:85F9:/ -3291.3 "Shadow Kasumi-giri 2" sync / 1[56]:[^:]*:Moko's Shadow:(86CC|86CE):/ -3291.7 "Iron Storm" sync / 1[56]:[^:]*:Ashigaru Kyuhei:87AA:/ -3291.7 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:87A9:/ - -3291.8 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3305.1 "Triple Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:(85E4|85E5|85E6|85E7|85EE|85EF|85F0|85F1):/ -3308.2 "Triple Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(85E8|85E9|85EA|85EB|85F2|85F3|85F4|85F5):/ -3311.3 "Triple Kasumi-giri 3" sync / 1[56]:[^:]*:Moko the Restless:(85E8|85E9|85EA|85EB|85F2|85F3|85F4|85F5):/ -3318.3 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:860C:/ -3321.4 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:(871F|8720):/ -3328.8 "Lateral Slice" sync / 1[56]:[^:]*:Moko the Restless:860D:/ -3336.8 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:860C:/ - -3342.0 "--sync--" sync / 14:[^:]*:Moko the Restless:85E2:/ window 10,10 -3352.0 "Kenki Release Enrage" sync / 1[56]:[^:]*:Moko the Restless:85E2:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10FA" } window 10000,0 +3011.4 "--sync--" StartsUsing { id: "860C", source: "Moko the Restless" } window 10000,10 +3016.4 "Kenki Release" Ability { id: "860C", source: "Moko the Restless" } + +3035.6 "Triple Kasumi-giri 1" Ability { id: ["85E4", "85E5", "85E6", "85E7", "85EE", "85EF", "85F0", "85F1"], source: "Moko the Restless" } +3038.6 "Triple Kasumi-giri 2" Ability { id: ["85E8", "85E9", "85EA", "85EB", "85F2", "85F3", "85F4", "85F5"], source: "Moko the Restless" } +3041.6 "Triple Kasumi-giri 3" Ability { id: ["85E8", "85E9", "85EA", "85EB", "85F2", "85F3", "85F4", "85F5"], source: "Moko the Restless" } +3055.7 "Triple Kasumi-giri 1" Ability { id: ["85E4", "85E5", "85E6", "85E7", "85EE", "85EF", "85F0", "85F1"], source: "Moko the Restless" } +3058.7 "Triple Kasumi-giri 2" Ability { id: ["85E8", "85E9", "85EA", "85EB", "85F2", "85F3", "85F4", "85F5"], source: "Moko the Restless" } +3061.7 "Triple Kasumi-giri 3" Ability { id: ["85E8", "85E9", "85EA", "85EB", "85F2", "85F3", "85F4", "85F5"], source: "Moko the Restless" } + +3063.8 "--sync--" Ability { id: ["871F", "8720"], source: "Moko the Restless" } +3071.1 "Lateral Slice" Ability { id: "860D", source: "Moko the Restless" } + +3077.2 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3083.3 "Scarlet Auspice" Ability { id: "8600", source: "Moko the Restless" } +3088.9 "Boundless Scarlet" Ability { id: "8599", source: "Moko the Restless" } +3096.0 "Invocation of Vengeance" Ability { id: "85BD", source: "Moko the Restless" } +3108.1 "Fleeting Iai-giri (cast)" Ability { id: "85C2", source: "Moko the Restless" } +3108.3 "--jump--" Ability { id: "85C3", source: "Moko the Restless" } +3110.6 "Fleeting Iai-giri" Ability { id: ["85F6", "85F7", "85F8"], source: "Moko the Restless" } +3111.7 "Explosion 1" Ability { id: "8602", source: "Moko the Restless" } +3111.8 "Vengeful Flame/Vengeful Pyre" Ability { id: ["8608", "8609"], source: "Moko the Restless" } +3118.6 "Explosion 2" Ability { id: "8602", source: "Moko the Restless" } +3119.7 "Vengeful Pyre/Vengeful Flame" Ability { id: ["8609", "8608"], source: "Moko the Restless" } + +3127.6 "Kenki Release" Ability { id: "860C", source: "Moko the Restless" } + +3134.8 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3139.0 "Shadow-twin" Ability { id: "85C7", source: "Moko the Restless" } + +3145.1 "Moonless Night" Ability { id: "860A", source: "Moko the Restless" } +3154.2 "Near Edge/Far Edge 1" Ability { id: ["85D9", "85D8"], source: "Moko the Restless" } +3154.2 "Double Iai-giri x2" Ability { id: "85C8", source: "Moko's Shadow" } +3154.2 "Clearout x3" Ability { id: "8C22", source: "Oni's Claw" } +3154.2 "--jump--" Ability { id: "85C9", source: "Moko's Shadow" } +3156.9 "Shadow Kasumi-giri 1" Ability { id: "85F9", source: "Moko's Shadow" } +3160.0 "Shadow Kasumi-giri 2" Ability { id: ["86CC", "86CD", "86CE"], source: "Moko's Shadow" } + +3165.4 "Moonless Night" Ability { id: "860A", source: "Moko the Restless" } +3174.5 "Far Edge/Near Edge 2" Ability { id: ["85D8", "85D9"], source: "Moko the Restless" } +3174.5 "Double Iai-giri x2" Ability { id: "85C8", source: "Moko's Shadow" } +3174.5 "Clearout x3" Ability { id: "8C22", source: "Oni's Claw" } +3174.7 "--jump--" Ability { id: "85C9", source: "Moko's Shadow" } +3176.8 "Shadow Kasumi-giri 1" Ability { id: "85F9", source: "Moko's Shadow" } +3179.8 "Shadow Kasumi-giri 2" Ability { id: ["86CC", "86CD", "86CE"], source: "Moko's Shadow" } + +3187.1 "Kenki Release" Ability { id: "860C", source: "Moko the Restless" } + +3195.3 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3201.4 "Azure Auspice" Ability { id: "8603", source: "Moko the Restless" } +3207.0 "Boundless Azure" Ability { id: "859D", source: "Moko the Restless" } +3218.8 "Upwell 1" Ability { id: "8605", source: "Moko the Restless" } +3221.8 "Upwell 2" Ability { id: "8605", source: "Moko the Restless" } +3224.8 "Upwell 3" Ability { id: "8605", source: "Moko the Restless" } +3225.2 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3227.8 "Upwell 4" Ability { id: "8605", source: "Moko the Restless" } +3238.7 "Triple Kasumi-giri 1" Ability { id: ["85E4", "85E5", "85E6", "85E7", "85EE", "85EF", "85F0", "85F1"], source: "Moko the Restless" } +3241.7 "Triple Kasumi-giri 2" Ability { id: ["85E8", "85E9", "85EA", "85EB", "85F2", "85F3", "85F4", "85F5"], source: "Moko the Restless" } +3244.7 "Triple Kasumi-giri 3" Ability { id: ["85E8", "85E9", "85EA", "85EB", "85F2", "85F3", "85F4", "85F5"], source: "Moko the Restless" } + +3251.8 "Kenki Release" Ability { id: "860C", source: "Moko the Restless" } +3254.9 "--sync--" Ability { id: ["871F", "8720"], source: "Moko the Restless" } +3260.0 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3264.1 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +3270.2 "Shadow-twin" Ability { id: "85C7", source: "Moko the Restless" } +3285.4 "Double Iai-giri x4" Ability { id: "85C8", source: "Moko's Shadow" } +3285.6 "--jump--" Ability { id: "85C9", source: "Moko's Shadow" } +3285.9 "Iron Storm" Ability { id: "85FF", source: "Ashigaru Kyuhei" } +3285.9 "Iron Rain" Ability { id: "85FE", source: "Ashigaru Kyuhei" } +3288.3 "Shadow Kasumi-giri 1" Ability { id: "85F9", source: "Moko's Shadow" } +3291.3 "Shadow Kasumi-giri 2" Ability { id: ["86CC", "86CE"], source: "Moko's Shadow" } +3291.7 "Iron Storm" Ability { id: "87AA", source: "Ashigaru Kyuhei" } +3291.7 "Iron Rain" Ability { id: "87A9", source: "Ashigaru Kyuhei" } + +3291.8 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3305.1 "Triple Kasumi-giri 1" Ability { id: ["85E4", "85E5", "85E6", "85E7", "85EE", "85EF", "85F0", "85F1"], source: "Moko the Restless" } +3308.2 "Triple Kasumi-giri 2" Ability { id: ["85E8", "85E9", "85EA", "85EB", "85F2", "85F3", "85F4", "85F5"], source: "Moko the Restless" } +3311.3 "Triple Kasumi-giri 3" Ability { id: ["85E8", "85E9", "85EA", "85EB", "85F2", "85F3", "85F4", "85F5"], source: "Moko the Restless" } +3318.3 "Kenki Release" Ability { id: "860C", source: "Moko the Restless" } +3321.4 "--sync--" Ability { id: ["871F", "8720"], source: "Moko the Restless" } +3328.8 "Lateral Slice" Ability { id: "860D", source: "Moko the Restless" } +3336.8 "Kenki Release" Ability { id: "860C", source: "Moko the Restless" } + +3342.0 "--sync--" StartsUsing { id: "85E2", source: "Moko the Restless" } window 10,10 +3352.0 "Kenki Release Enrage" Ability { id: "85E2", source: "Moko the Restless" } # TODO: are any of these possible??? I think no diff --git a/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.ts b/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.ts index 9b762e1813..8924259aea 100644 --- a/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.ts +++ b/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.ts @@ -1729,12 +1729,12 @@ const triggerSet: TriggerSet = { } const alertText = output.alertText!({ - color1: color1, - color2: color2, - color3: color3, + color1: output[color1]!(), + color2: output[color2]!(), + color3: output[color3]!(), mixedType: mixedType, }); - const infoText = output.infoText!({ color: color1, player: partner }); + const infoText = output.infoText!({ color: output[color1]!(), player: partner }); return { alertText, infoText }; }, }, diff --git a/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.txt b/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.txt index f5bce5f6b0..6370e05d98 100644 --- a/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.txt +++ b/ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.txt @@ -5,7 +5,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~# # SHISHIO # @@ -21,88 +21,88 @@ hideall "--sync--" # is just a dodge check. # Trial of Benevolence will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10F8:/ window 10000,0 -1007.0 "--sync--" sync / 14:[^:]*:Shishio:841A:/ window 10000,0 -1012.0 "Enkyo" sync / 1[56]:[^:]*:Shishio:841A:/ - -1014.1 "--middle--" sync / 1[56]:[^:]*:Shishio:841D:/ -1019.4 "Stormcloud Summons (circles)" sync / 1[56]:[^:]*:Shishio:83F8:/ -1024.1 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:83F9:/ -1026.2 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:83FA:/ -1028.3 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:83FA:/ - -1046.5 "--sync--" sync / 14:[^:]*:Shishio:841B:/ window 10,10 -1051.5 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:841B:/ -1055.5 "Slither" sync / 1[56]:[^:]*:Shishio:841C:/ - -1060.7 "--north--" sync / 1[56]:[^:]*:Shishio:841D:/ -1071.0 "Noble Pursuit 1" sync / 1[56]:[^:]*:Shishio:8407:/ -1071.8 "Levinburst 1" #sync / 1[56]:[^:]*:Rairin:8409:/ -1072.5 "Noble Pursuit 2" #sync / 1[56]:[^:]*:Shishio:8408:/ -1073.3 "Levinburst 2" #sync / 1[56]:[^:]*:Rairin:8409:/ -1074.0 "Noble Pursuit 3" #sync / 1[56]:[^:]*:Shishio:8408:/ -1074.8 "Levinburst 3" #sync / 1[56]:[^:]*:Rairin:8409:/ -1075.5 "Noble Pursuit 4" #sync / 1[56]:[^:]*:Shishio:8408:/ -1076.3 "Levinburst 4" #sync / 1[56]:[^:]*:Rairin:8409:/ -1081.7 "Enkyo" sync / 1[56]:[^:]*:Shishio:841A:/ - -1083.8 "--middle--" sync / 1[56]:[^:]*:Shishio:841D:/ -1088.8 "Unnatural Wail" sync / 1[56]:[^:]*:Shishio:8417:/ -1093.9 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:840A:/ -1105.9 "Right Swipe" sync / 1[56]:[^:]*:Devilish Thrall:840B:/ -1105.9 "Left Swipe" sync / 1[56]:[^:]*:Devilish Thrall:840C:/ -1106.8 "Unnatural Ailment/Unnatural Force 1" sync / 1[56]:[^:]*:Shishio:(8418|8419):/ -1112.9 "Right Swipe" sync / 1[56]:[^:]*:Devilish Thrall:840B:/ -1112.9 "Left Swipe" sync / 1[56]:[^:]*:Devilish Thrall:840C:/ -1113.8 "Unnatural Force/Unnatural Ailment 2" sync / 1[56]:[^:]*:Shishio:(8419|8418):/ - -1118.1 "--middle--" sync / 1[56]:[^:]*:Shishio:841D:/ -1123.4 "Stormcloud Summons (lines)" sync / 1[56]:[^:]*:Shishio:83F8:/ -1128.1 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:83F9:/ -1130.2 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:83FA:/ -1132.2 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:83FA:/ - -1155.7 "--middle--" sync / 1[56]:[^:]*:Shishio:841D:/ window 10,10 -1160.8 "Unnatural Wail" sync / 1[56]:[^:]*:Shishio:8417:/ -1168.1 "Eye of the Thunder Vortex/Vortex of the Thunder Eye" sync / 1[56]:[^:]*:Shishio:(8413|8415):/ -1168.8 "Unnatural Ailment/Unnatural Force 1" sync / 1[56]:[^:]*:Shishio:(8418|8419):/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10F8" } window 10000,0 +1007.0 "--sync--" StartsUsing { id: "841A", source: "Shishio" } window 10000,0 +1012.0 "Enkyo" Ability { id: "841A", source: "Shishio" } + +1014.1 "--middle--" Ability { id: "841D", source: "Shishio" } +1019.4 "Stormcloud Summons (circles)" Ability { id: "83F8", source: "Shishio" } +1024.1 "Smokeater 1" Ability { id: "83F9", source: "Shishio" } +1026.2 "Smokeater 2?" #Ability { id: "83FA", source: "Shishio" } +1028.3 "Smokeater 3?" #Ability { id: "83FA", source: "Shishio" } + +1046.5 "--sync--" StartsUsing { id: "841B", source: "Shishio" } window 10,10 +1051.5 "Splitting Cry" Ability { id: "841B", source: "Shishio" } +1055.5 "Slither" Ability { id: "841C", source: "Shishio" } + +1060.7 "--north--" Ability { id: "841D", source: "Shishio" } +1071.0 "Noble Pursuit 1" Ability { id: "8407", source: "Shishio" } +1071.8 "Levinburst 1" #Ability { id: "8409", source: "Rairin" } +1072.5 "Noble Pursuit 2" #Ability { id: "8408", source: "Shishio" } +1073.3 "Levinburst 2" #Ability { id: "8409", source: "Rairin" } +1074.0 "Noble Pursuit 3" #Ability { id: "8408", source: "Shishio" } +1074.8 "Levinburst 3" #Ability { id: "8409", source: "Rairin" } +1075.5 "Noble Pursuit 4" #Ability { id: "8408", source: "Shishio" } +1076.3 "Levinburst 4" #Ability { id: "8409", source: "Rairin" } +1081.7 "Enkyo" Ability { id: "841A", source: "Shishio" } + +1083.8 "--middle--" Ability { id: "841D", source: "Shishio" } +1088.8 "Unnatural Wail" Ability { id: "8417", source: "Shishio" } +1093.9 "Haunting Cry" Ability { id: "840A", source: "Shishio" } +1105.9 "Right Swipe" Ability { id: "840B", source: "Devilish Thrall" } +1105.9 "Left Swipe" Ability { id: "840C", source: "Devilish Thrall" } +1106.8 "Unnatural Ailment/Unnatural Force 1" Ability { id: ["8418", "8419"], source: "Shishio" } +1112.9 "Right Swipe" Ability { id: "840B", source: "Devilish Thrall" } +1112.9 "Left Swipe" Ability { id: "840C", source: "Devilish Thrall" } +1113.8 "Unnatural Force/Unnatural Ailment 2" Ability { id: ["8419", "8418"], source: "Shishio" } + +1118.1 "--middle--" Ability { id: "841D", source: "Shishio" } +1123.4 "Stormcloud Summons (lines)" Ability { id: "83F8", source: "Shishio" } +1128.1 "Smokeater 1" Ability { id: "83F9", source: "Shishio" } +1130.2 "Smokeater 2?" #Ability { id: "83FA", source: "Shishio" } +1132.2 "Smokeater 3?" #Ability { id: "83FA", source: "Shishio" } + +1155.7 "--middle--" Ability { id: "841D", source: "Shishio" } window 10,10 +1160.8 "Unnatural Wail" Ability { id: "8417", source: "Shishio" } +1168.1 "Eye of the Thunder Vortex/Vortex of the Thunder Eye" Ability { id: ["8413", "8415"], source: "Shishio" } +1168.8 "Unnatural Ailment/Unnatural Force 1" Ability { id: ["8418", "8419"], source: "Shishio" } # Technically, the in/out and out/in for each pair are named the same thing. # But in a timeline, switching them makes it obvious it's the other. -1172.1 "Vortex of the Thunder Eye/Eye of the Thunder Vortex" sync / 1[56]:[^:]*:Shishio:(8414|8416):/ -1172.8 "Unnatural Force/Unnatural Ailment 2" sync / 1[56]:[^:]*:Shishio:(8419|8418):/ -1181.4 "Enkyo" sync / 1[56]:[^:]*:Shishio:841A:/ - -1189.5 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:840A:/ -1194.6 "--sync--" sync / 1[56]:[^:]*:Shishio:841D:/ -1211.9 "Vengeful Souls" sync / 1[56]:[^:]*:Shishio:840E:/ -1211.9 "Stygian Aura" sync / 1[56]:[^:]*:Shishio:8410:/ -1211.9 "Vermilion Aura" sync / 1[56]:[^:]*:Shishio:840F:/ - -1219.0 "Thunder Vortex" sync / 1[56]:[^:]*:Shishio:8412:/ -1226.3 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:841B:/ -1230.3 "Slither" sync / 1[56]:[^:]*:Shishio:841C:/ - -1235.5 "--middle--" sync / 1[56]:[^:]*:Shishio:841D:/ -1240.8 "Stormcloud Summons (circles)" sync / 1[56]:[^:]*:Shishio:83F8:/ -1245.5 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:83F9:/ -1247.6 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:83FA:/ -1249.7 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:83FA:/ - -1267.1 "--middle--" sync / 1[56]:[^:]*:Shishio:841D:/ -1272.2 "Stormcloud Summons (lines)" sync / 1[56]:[^:]*:Shishio:83F8:/ -1276.9 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:83F9:/ -1279.0 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:83FA:/ -1281.0 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:83FA:/ - -1307.4 "--middle--" sync / 1[56]:[^:]*:Shishio:841D:/ -1312.5 "Unnatural Wail" sync / 1[56]:[^:]*:Shishio:8417:/ -1319.8 "Eye of the Thunder Vortex/Vortex of the Thunder Eye" sync / 1[56]:[^:]*:Shishio:(8413|8415):/ -1320.4 "Unnatural Ailment/Unnatural Force 1" sync / 1[56]:[^:]*:Shishio:(8418|8419):/ -1323.8 "Vortex of the Thunder Eye/Eye of the Thunder Vortex" sync / 1[56]:[^:]*:Shishio:(8414|8416):/ -1324.4 "Unnatural Force/Unnatural Ailment 2" sync / 1[56]:[^:]*:Shishio:(8419|8418):/ - -1329.4 "--sync--" sync / 14:[^:]*:Shishio:841E:/ window 20,20 -1339.4 "Enkyo Enrage" sync / 1[56]:[^:]*:Shishio:841E:/ +1172.1 "Vortex of the Thunder Eye/Eye of the Thunder Vortex" Ability { id: ["8414", "8416"], source: "Shishio" } +1172.8 "Unnatural Force/Unnatural Ailment 2" Ability { id: ["8419", "8418"], source: "Shishio" } +1181.4 "Enkyo" Ability { id: "841A", source: "Shishio" } + +1189.5 "Haunting Cry" Ability { id: "840A", source: "Shishio" } +1194.6 "--sync--" Ability { id: "841D", source: "Shishio" } +1211.9 "Vengeful Souls" Ability { id: "840E", source: "Shishio" } +1211.9 "Stygian Aura" Ability { id: "8410", source: "Shishio" } +1211.9 "Vermilion Aura" Ability { id: "840F", source: "Shishio" } + +1219.0 "Thunder Vortex" Ability { id: "8412", source: "Shishio" } +1226.3 "Splitting Cry" Ability { id: "841B", source: "Shishio" } +1230.3 "Slither" Ability { id: "841C", source: "Shishio" } + +1235.5 "--middle--" Ability { id: "841D", source: "Shishio" } +1240.8 "Stormcloud Summons (circles)" Ability { id: "83F8", source: "Shishio" } +1245.5 "Smokeater 1" Ability { id: "83F9", source: "Shishio" } +1247.6 "Smokeater 2?" #Ability { id: "83FA", source: "Shishio" } +1249.7 "Smokeater 3?" #Ability { id: "83FA", source: "Shishio" } + +1267.1 "--middle--" Ability { id: "841D", source: "Shishio" } +1272.2 "Stormcloud Summons (lines)" Ability { id: "83F8", source: "Shishio" } +1276.9 "Smokeater 1" Ability { id: "83F9", source: "Shishio" } +1279.0 "Smokeater 2?" #Ability { id: "83FA", source: "Shishio" } +1281.0 "Smokeater 3?" #Ability { id: "83FA", source: "Shishio" } + +1307.4 "--middle--" Ability { id: "841D", source: "Shishio" } +1312.5 "Unnatural Wail" Ability { id: "8417", source: "Shishio" } +1319.8 "Eye of the Thunder Vortex/Vortex of the Thunder Eye" Ability { id: ["8413", "8415"], source: "Shishio" } +1320.4 "Unnatural Ailment/Unnatural Force 1" Ability { id: ["8418", "8419"], source: "Shishio" } +1323.8 "Vortex of the Thunder Eye/Eye of the Thunder Vortex" Ability { id: ["8414", "8416"], source: "Shishio" } +1324.4 "Unnatural Force/Unnatural Ailment 2" Ability { id: ["8419", "8418"], source: "Shishio" } + +1329.4 "--sync--" StartsUsing { id: "841E", source: "Shishio" } window 20,20 +1339.4 "Enkyo Enrage" Ability { id: "841E", source: "Shishio" } # ALL ENCOUNTER ABILITIES # 83F8 Stormcloud Summons cast and self-targeted ability @@ -155,81 +155,81 @@ hideall "--sync--" # -ii 8502 8504 8535 8504 851A 851D 851E 8513 8515 852F 8525 8257 8522 8533 8528 8519 852A 852D 852B 8527 8523 # Trial of Wisdom will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10F9:/ window 10000,0 -2009.3 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:8534:/ window 10000,0 -2014.3 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8534:/ - -2021.7 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2028.0 "Seal of Scurrying Sparks" sync / 1[56]:[^:]*:Gorai the Uncaged:8503:/ -2033.3 "Flame and Sulphur" sync / 1[56]:[^:]*:Gorai the Uncaged:8508:/ -2044.6 "Brazen Ballad" sync / 1[56]:[^:]*:Gorai the Uncaged:(8509|850A):/ -2047.7 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:(850E|850F):/ -2047.7 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:(850B|850C):/ -2048.0 "Greater Ball of Fire" sync / 1[56]:[^:]*:Gorai the Uncaged:8505:/ -2055.6 "Impure Purgation 1" sync / 1[56]:[^:]*:Gorai the Uncaged:8530:/ -2057.6 "Impure Purgation 2" sync / 1[56]:[^:]*:Gorai the Uncaged:8531:/ - -2063.5 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2068.7 "Thundercall" sync / 1[56]:[^:]*:Gorai the Uncaged:8520:/ -2079.6 "Humble Hammer" sync / 1[56]:[^:]*:Gorai the Uncaged:8524:/ -2083.2 "Flintlock" sync / 1[56]:[^:]*:Gorai the Uncaged:8526:/ -2083.6 "Shock" sync / 1[56]:[^:]*:Ball of Levin:8521:/ -2094.5 "Torching Torment" sync / 1[56]:[^:]*:Gorai the Uncaged:8532:/ - -2100.9 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2108.0 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:8512:/ -2114.3 "Malformed Prayer" sync / 1[56]:[^:]*:Gorai the Uncaged:8518:/ -2126.3 "Pointed Purgation 1" sync / 1[56]:[^:]*:Gorai the Uncaged:851F:/ -2126.4 "Burst 1" sync / 1[56]:[^:]*:Gorai the Uncaged:851B:/ -2132.4 "Pointed Purgation 2" sync / 1[56]:[^:]*:Gorai the Uncaged:851F:/ -2132.4 "Burst 2" sync / 1[56]:[^:]*:Gorai the Uncaged:851B:/ -2138.4 "Pointed Purgation 3" sync / 1[56]:[^:]*:Gorai the Uncaged:851F:/ -2138.4 "Burst 3" sync / 1[56]:[^:]*:Gorai the Uncaged:851B:/ -2144.4 "Pointed Purgation 4" sync / 1[56]:[^:]*:Gorai the Uncaged:851F:/ -2144.4 "Burst 4" sync / 1[56]:[^:]*:Gorai the Uncaged:851B:/ -2155.7 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8534:/ - -2163.1 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2169.2 "Seal of Scurrying Sparks" sync / 1[56]:[^:]*:Gorai the Uncaged:8503:/ -2178.5 "Cloud to Ground" sync / 1[56]:[^:]*:Gorai the Uncaged:8529:/ duration 6.3 -2180.5 "Greater Ball of Fire/Great Ball of Fire" sync / 1[56]:[^:]*:Gorai the Uncaged:(8505|8506):/ window 1,1 -2183.5 "Great Ball of Fire/Greater Ball of Fire" sync / 1[56]:[^:]*:Gorai the Uncaged:(8506|8505):/ window 1,1 - -2193.5 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2202.2 "Fighting Spirits" sync / 1[56]:[^:]*:Gorai the Uncaged:852C:/ -2205.5 "Worldly Pursuit 1" sync / 1[56]:[^:]*:Gorai the Uncaged:850D:/ -2208.6 "Worldly Pursuit 2" sync / 1[56]:[^:]*:Gorai the Uncaged:850D:/ -2211.6 "Worldly Pursuit 3" sync / 1[56]:[^:]*:Gorai the Uncaged:850D:/ -2214.6 "Worldly Pursuit 4" sync / 1[56]:[^:]*:Gorai the Uncaged:850D:/ -2217.6 "Worldly Pursuit 5" sync / 1[56]:[^:]*:Gorai the Uncaged:850D:/ -2232.2 "Torching Torment" sync / 1[56]:[^:]*:Gorai the Uncaged:8532:/ - -2238.6 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2245.8 "Malformed Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:8514:/ -2252.2 "Malformed Prayer" sync / 1[56]:[^:]*:Gorai the Uncaged:8518:/ -2265.3 "Flickering Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:8510:/ -2267.3 "Burst 1" #sync / 1[56]:[^:]*:Gorai the Uncaged:851B:/ -2269.9 "Burst 2" #sync / 1[56]:[^:]*:Gorai the Uncaged:851B:/ -2271.9 "Burst 3" #sync / 1[56]:[^:]*:Gorai the Uncaged:851B:/ -2272.6 "Fire Spread 1" #sync / 1[56]:[^:]*:Gorai the Uncaged:8511:/ -2274.6 "Fire Spread 2" #sync / 1[56]:[^:]*:Gorai the Uncaged:8511:/ - -2282.9 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -2289.0 "Seal of Scurrying Sparks" sync / 1[56]:[^:]*:Gorai the Uncaged:8503:/ -2294.3 "Flame and Sulphur" sync / 1[56]:[^:]*:Gorai the Uncaged:8508:/ -2305.6 "Brazen Ballad" sync / 1[56]:[^:]*:Gorai the Uncaged:850A:/ -2308.7 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:850F:/ -2308.7 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:850C:/ -2309.1 "Greater Ball of Fire" sync / 1[56]:[^:]*:Gorai the Uncaged:8505:/ -2318.3 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8534:/ - -2325.4 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:8536:/ -2335.4 "Living Hell Enrage" sync / 1[56]:[^:]*:Gorai the Uncaged:8536:/ -#2336.0 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8538:/ -#2337.8 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8537:/ -#2338.4 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8538:/ -#2340.2 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8537:/ -#2340.8 "Living Hell" #sync / 1[56]:[^:]*:Gorai the Uncaged:8538:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10F9" } window 10000,0 +2009.3 "--sync--" StartsUsing { id: "8534", source: "Gorai the Uncaged" } window 10000,0 +2014.3 "Unenlightenment" Ability { id: "8534", source: "Gorai the Uncaged" } + +2021.7 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2028.0 "Seal of Scurrying Sparks" Ability { id: "8503", source: "Gorai the Uncaged" } +2033.3 "Flame and Sulphur" Ability { id: "8508", source: "Gorai the Uncaged" } +2044.6 "Brazen Ballad" Ability { id: ["8509", "850A"], source: "Gorai the Uncaged" } +2047.7 "Falling Rock" Ability { id: ["850E", "850F"], source: "Gorai the Uncaged" } +2047.7 "Fire Spread" Ability { id: ["850B", "850C"], source: "Gorai the Uncaged" } +2048.0 "Greater Ball of Fire" Ability { id: "8505", source: "Gorai the Uncaged" } +2055.6 "Impure Purgation 1" Ability { id: "8530", source: "Gorai the Uncaged" } +2057.6 "Impure Purgation 2" Ability { id: "8531", source: "Gorai the Uncaged" } + +2063.5 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2068.7 "Thundercall" Ability { id: "8520", source: "Gorai the Uncaged" } +2079.6 "Humble Hammer" Ability { id: "8524", source: "Gorai the Uncaged" } +2083.2 "Flintlock" Ability { id: "8526", source: "Gorai the Uncaged" } +2083.6 "Shock" Ability { id: "8521", source: "Ball of Levin" } +2094.5 "Torching Torment" Ability { id: "8532", source: "Gorai the Uncaged" } + +2100.9 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2108.0 "Rousing Reincarnation" Ability { id: "8512", source: "Gorai the Uncaged" } +2114.3 "Malformed Prayer" Ability { id: "8518", source: "Gorai the Uncaged" } +2126.3 "Pointed Purgation 1" Ability { id: "851F", source: "Gorai the Uncaged" } +2126.4 "Burst 1" Ability { id: "851B", source: "Gorai the Uncaged" } +2132.4 "Pointed Purgation 2" Ability { id: "851F", source: "Gorai the Uncaged" } +2132.4 "Burst 2" Ability { id: "851B", source: "Gorai the Uncaged" } +2138.4 "Pointed Purgation 3" Ability { id: "851F", source: "Gorai the Uncaged" } +2138.4 "Burst 3" Ability { id: "851B", source: "Gorai the Uncaged" } +2144.4 "Pointed Purgation 4" Ability { id: "851F", source: "Gorai the Uncaged" } +2144.4 "Burst 4" Ability { id: "851B", source: "Gorai the Uncaged" } +2155.7 "Unenlightenment" Ability { id: "8534", source: "Gorai the Uncaged" } + +2163.1 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2169.2 "Seal of Scurrying Sparks" Ability { id: "8503", source: "Gorai the Uncaged" } +2178.5 "Cloud to Ground" Ability { id: "8529", source: "Gorai the Uncaged" } duration 6.3 +2180.5 "Greater Ball of Fire/Great Ball of Fire" Ability { id: ["8505", "8506"], source: "Gorai the Uncaged" } window 1,1 +2183.5 "Great Ball of Fire/Greater Ball of Fire" Ability { id: ["8506", "8505"], source: "Gorai the Uncaged" } window 1,1 + +2193.5 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2202.2 "Fighting Spirits" Ability { id: "852C", source: "Gorai the Uncaged" } +2205.5 "Worldly Pursuit 1" Ability { id: "850D", source: "Gorai the Uncaged" } +2208.6 "Worldly Pursuit 2" Ability { id: "850D", source: "Gorai the Uncaged" } +2211.6 "Worldly Pursuit 3" Ability { id: "850D", source: "Gorai the Uncaged" } +2214.6 "Worldly Pursuit 4" Ability { id: "850D", source: "Gorai the Uncaged" } +2217.6 "Worldly Pursuit 5" Ability { id: "850D", source: "Gorai the Uncaged" } +2232.2 "Torching Torment" Ability { id: "8532", source: "Gorai the Uncaged" } + +2238.6 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2245.8 "Malformed Reincarnation" Ability { id: "8514", source: "Gorai the Uncaged" } +2252.2 "Malformed Prayer" Ability { id: "8518", source: "Gorai the Uncaged" } +2265.3 "Flickering Flame" Ability { id: "8510", source: "Gorai the Uncaged" } +2267.3 "Burst 1" #Ability { id: "851B", source: "Gorai the Uncaged" } +2269.9 "Burst 2" #Ability { id: "851B", source: "Gorai the Uncaged" } +2271.9 "Burst 3" #Ability { id: "851B", source: "Gorai the Uncaged" } +2272.6 "Fire Spread 1" #Ability { id: "8511", source: "Gorai the Uncaged" } +2274.6 "Fire Spread 2" #Ability { id: "8511", source: "Gorai the Uncaged" } + +2282.9 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +2289.0 "Seal of Scurrying Sparks" Ability { id: "8503", source: "Gorai the Uncaged" } +2294.3 "Flame and Sulphur" Ability { id: "8508", source: "Gorai the Uncaged" } +2305.6 "Brazen Ballad" Ability { id: "850A", source: "Gorai the Uncaged" } +2308.7 "Falling Rock" Ability { id: "850F", source: "Gorai the Uncaged" } +2308.7 "Fire Spread" Ability { id: "850C", source: "Gorai the Uncaged" } +2309.1 "Greater Ball of Fire" Ability { id: "8505", source: "Gorai the Uncaged" } +2318.3 "Unenlightenment" Ability { id: "8534", source: "Gorai the Uncaged" } + +2325.4 "--sync--" StartsUsing { id: "8536", source: "Gorai the Uncaged" } +2335.4 "Living Hell Enrage" Ability { id: "8536", source: "Gorai the Uncaged" } +#2336.0 "Living Hell" #Ability { id: "8538", source: "Gorai the Uncaged" } +#2337.8 "Living Hell" #Ability { id: "8537", source: "Gorai the Uncaged" } +#2338.4 "Living Hell" #Ability { id: "8538", source: "Gorai the Uncaged" } +#2340.2 "Living Hell" #Ability { id: "8537", source: "Gorai the Uncaged" } +#2340.8 "Living Hell" #Ability { id: "8538", source: "Gorai the Uncaged" } # ALL ENCOUNTER ABILITIES # 84D3 --sync-- repositioning @@ -294,92 +294,92 @@ hideall "--sync--" # -ii 8507 85B8 85B9 85D2 85DF 8C27 85DA 85CE 85D5 85D7 8537 8538 # Trial of Responsibility will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10FA:/ window 10000,0 -3011.4 "--sync--" sync / 14:[^:]*:Moko the Restless:85E0:/ window 10000,10 -3016.4 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85E0:/ - -3035.6 "Triple Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:(85B0|85B1|85B2|85B3|85BA|85BB|85BC|85BD):/ -3038.6 "Triple Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(85B4|85B5|85B6|85B7|85BE|85BF|85C0|85C1):/ -3041.6 "Triple Kasumi-giri 3" sync / 1[56]:[^:]*:Moko the Restless:(85B4|85B5|85B6|85B7|85BE|85BF|85C0|85C1):/ -3055.7 "Triple Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:(85B0|85B1|85B2|85B3|85BA|85BB|85BC|85BD):/ -3058.7 "Triple Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(85B4|85B5|85B6|85B7|85BE|85BF|85C0|85C1):/ -3061.7 "Triple Kasumi-giri 3" sync / 1[56]:[^:]*:Moko the Restless:(85B4|85B5|85B6|85B7|85BE|85BF|85C0|85C1):/ - -3063.8 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:(871F|8720):/ -3071.1 "Lateral Slice" sync / 1[56]:[^:]*:Moko the Restless:85E3:/ - -3077.2 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3083.3 "Scarlet Auspice" sync / 1[56]:[^:]*:Moko the Restless:85D1:/ -3088.9 "Boundless Scarlet" sync / 1[56]:[^:]*:Moko the Restless:8599:/ -3096.0 "Invocation of Vengeance" sync / 1[56]:[^:]*:Moko the Restless:85DB:/ -3108.1 "Fleeting Iai-giri (cast)" sync / 1[56]:[^:]*:Moko the Restless:85C2:/ -3108.3 "--jump--" sync / 1[56]:[^:]*:Moko the Restless:85C3:/ -3110.6 "Fleeting Iai-giri" sync / 1[56]:[^:]*:Moko the Restless:(85C4|85C5|85C6):/ -3111.7 "Explosion 1" sync / 1[56]:[^:]*:Moko the Restless:85D3:/ -3111.8 "Vengeful Flame/Vengeful Pyre" sync / 1[56]:[^:]*:Moko the Restless:(85DC|85DD):/ -3118.6 "Explosion 2" sync / 1[56]:[^:]*:Moko the Restless:85D3:/ -3119.7 "Vengeful Pyre/Vengeful Flame" sync / 1[56]:[^:]*:Moko the Restless:(85DD|85DC):/ - -3127.6 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85E0:/ - -3134.8 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3139.0 "Shadow-twin" sync / 1[56]:[^:]*:Moko the Restless:85C7:/ - -3145.1 "Moonless Night" sync / 1[56]:[^:]*:Moko the Restless:85DE:/ -3154.2 "Near Edge/Far Edge 1" sync / 1[56]:[^:]*:Moko the Restless:(85D9|85D8):/ -3154.2 "Double Iai-giri x2" sync / 1[56]:[^:]*:Moko's Shadow:85C8:/ -3154.2 "Clearout x3" sync / 1[56]:[^:]*:Oni's Claw:8C21:/ -3154.2 "--jump--" sync / 1[56]:[^:]*:Moko's Shadow:85C9:/ -3156.9 "Shadow Kasumi-giri 1" sync / 1[56]:[^:]*:Moko's Shadow:85CA:/ -3160.0 "Shadow Kasumi-giri 2" sync / 1[56]:[^:]*:Moko's Shadow:(86C4|86C5|86C6):/ - -3165.4 "Moonless Night" sync / 1[56]:[^:]*:Moko the Restless:85DE:/ -3174.5 "Far Edge/Near Edge 2" sync / 1[56]:[^:]*:Moko the Restless:(85D8|85D9):/ -3174.5 "Double Iai-giri x2" sync / 1[56]:[^:]*:Moko's Shadow:85C8:/ -3174.5 "Clearout x3" sync / 1[56]:[^:]*:Oni's Claw:8C21:/ -3174.7 "--jump--" sync / 1[56]:[^:]*:Moko's Shadow:85C9:/ -3176.8 "Shadow Kasumi-giri 1" sync / 1[56]:[^:]*:Moko's Shadow:85CA:/ -3179.8 "Shadow Kasumi-giri 2" sync / 1[56]:[^:]*:Moko's Shadow:(86C4|86C5|86C6):/ - -3187.1 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85E0:/ - -3195.3 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3201.4 "Azure Auspice" sync / 1[56]:[^:]*:Moko the Restless:85D4:/ -3207.0 "Boundless Azure" sync / 1[56]:[^:]*:Moko the Restless:859D:/ -3218.8 "Upwell 1" sync / 1[56]:[^:]*:Moko the Restless:85D6:/ -3221.8 "Upwell 2" sync / 1[56]:[^:]*:Moko the Restless:85D6:/ -3224.8 "Upwell 3" sync / 1[56]:[^:]*:Moko the Restless:85D6:/ -3225.2 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3227.8 "Upwell 4" sync / 1[56]:[^:]*:Moko the Restless:85D6:/ -3238.7 "Triple Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:(85B0|85B1|85B2|85B3|85BA|85BB|85BC|85BD):/ -3241.7 "Triple Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(85B4|85B5|85B6|85B7|85BE|85BF|85C0|85C1):/ -3244.7 "Triple Kasumi-giri 3" sync / 1[56]:[^:]*:Moko the Restless:(85B4|85B5|85B6|85B7|85BE|85BF|85C0|85C1):/ - -3251.8 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85E0:/ -3254.9 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:(871F|8720):/ -3260.0 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3264.1 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -3270.2 "Shadow-twin" sync / 1[56]:[^:]*:Moko the Restless:85C7:/ -3285.4 "Double Iai-giri x4" sync / 1[56]:[^:]*:Moko's Shadow:85C8:/ -3285.6 "--jump--" sync / 1[56]:[^:]*:Moko's Shadow:85C9:/ -3285.9 "Iron Storm" sync / 1[56]:[^:]*:Ashigaru Kyuhei:85D0:/ -3285.9 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:85CF:/ -3288.3 "Shadow Kasumi-giri 1" sync / 1[56]:[^:]*:Moko's Shadow:85CA:/ -3291.3 "Shadow Kasumi-giri 2" sync / 1[56]:[^:]*:Moko's Shadow:(86C4|86C6):/ -3291.7 "Iron Storm" sync / 1[56]:[^:]*:Ashigaru Kyuhei:87A8:/ -3291.7 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:87A7:/ - -3291.8 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3305.1 "Triple Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:(85B0|85B1|85B2|85B3|85BA|85BB|85BC|85BD):/ -3308.2 "Triple Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(85B4|85B5|85B6|85B7|85BE|85BF|85C0|85C1):/ -3311.3 "Triple Kasumi-giri 3" sync / 1[56]:[^:]*:Moko the Restless:(85B4|85B5|85B6|85B7|85BE|85BF|85C0|85C1):/ -3318.3 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85E0:/ -3321.4 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:(871F|8720):/ -3328.8 "Lateral Slice" sync / 1[56]:[^:]*:Moko the Restless:85E3:/ -3336.8 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85E0:/ - -3342.0 "--sync--" sync / 14:[^:]*:Moko the Restless:85E1:/ window 10,10 -3352.0 "Kenki Release Enrage" sync / 1[56]:[^:]*:Moko the Restless:85E1:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10FA" } window 10000,0 +3011.4 "--sync--" StartsUsing { id: "85E0", source: "Moko the Restless" } window 10000,10 +3016.4 "Kenki Release" Ability { id: "85E0", source: "Moko the Restless" } + +3035.6 "Triple Kasumi-giri 1" Ability { id: ["85B0", "85B1", "85B2", "85B3", "85BA", "85BB", "85BC", "85BD"], source: "Moko the Restless" } +3038.6 "Triple Kasumi-giri 2" Ability { id: ["85B4", "85B5", "85B6", "85B7", "85BE", "85BF", "85C0", "85C1"], source: "Moko the Restless" } +3041.6 "Triple Kasumi-giri 3" Ability { id: ["85B4", "85B5", "85B6", "85B7", "85BE", "85BF", "85C0", "85C1"], source: "Moko the Restless" } +3055.7 "Triple Kasumi-giri 1" Ability { id: ["85B0", "85B1", "85B2", "85B3", "85BA", "85BB", "85BC", "85BD"], source: "Moko the Restless" } +3058.7 "Triple Kasumi-giri 2" Ability { id: ["85B4", "85B5", "85B6", "85B7", "85BE", "85BF", "85C0", "85C1"], source: "Moko the Restless" } +3061.7 "Triple Kasumi-giri 3" Ability { id: ["85B4", "85B5", "85B6", "85B7", "85BE", "85BF", "85C0", "85C1"], source: "Moko the Restless" } + +3063.8 "--sync--" Ability { id: ["871F", "8720"], source: "Moko the Restless" } +3071.1 "Lateral Slice" Ability { id: "85E3", source: "Moko the Restless" } + +3077.2 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3083.3 "Scarlet Auspice" Ability { id: "85D1", source: "Moko the Restless" } +3088.9 "Boundless Scarlet" Ability { id: "8599", source: "Moko the Restless" } +3096.0 "Invocation of Vengeance" Ability { id: "85DB", source: "Moko the Restless" } +3108.1 "Fleeting Iai-giri (cast)" Ability { id: "85C2", source: "Moko the Restless" } +3108.3 "--jump--" Ability { id: "85C3", source: "Moko the Restless" } +3110.6 "Fleeting Iai-giri" Ability { id: ["85C4", "85C5", "85C6"], source: "Moko the Restless" } +3111.7 "Explosion 1" Ability { id: "85D3", source: "Moko the Restless" } +3111.8 "Vengeful Flame/Vengeful Pyre" Ability { id: ["85DC", "85DD"], source: "Moko the Restless" } +3118.6 "Explosion 2" Ability { id: "85D3", source: "Moko the Restless" } +3119.7 "Vengeful Pyre/Vengeful Flame" Ability { id: ["85DD", "85DC"], source: "Moko the Restless" } + +3127.6 "Kenki Release" Ability { id: "85E0", source: "Moko the Restless" } + +3134.8 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3139.0 "Shadow-twin" Ability { id: "85C7", source: "Moko the Restless" } + +3145.1 "Moonless Night" Ability { id: "85DE", source: "Moko the Restless" } +3154.2 "Near Edge/Far Edge 1" Ability { id: ["85D9", "85D8"], source: "Moko the Restless" } +3154.2 "Double Iai-giri x2" Ability { id: "85C8", source: "Moko's Shadow" } +3154.2 "Clearout x3" Ability { id: "8C21", source: "Oni's Claw" } +3154.2 "--jump--" Ability { id: "85C9", source: "Moko's Shadow" } +3156.9 "Shadow Kasumi-giri 1" Ability { id: "85CA", source: "Moko's Shadow" } +3160.0 "Shadow Kasumi-giri 2" Ability { id: ["86C4", "86C5", "86C6"], source: "Moko's Shadow" } + +3165.4 "Moonless Night" Ability { id: "85DE", source: "Moko the Restless" } +3174.5 "Far Edge/Near Edge 2" Ability { id: ["85D8", "85D9"], source: "Moko the Restless" } +3174.5 "Double Iai-giri x2" Ability { id: "85C8", source: "Moko's Shadow" } +3174.5 "Clearout x3" Ability { id: "8C21", source: "Oni's Claw" } +3174.7 "--jump--" Ability { id: "85C9", source: "Moko's Shadow" } +3176.8 "Shadow Kasumi-giri 1" Ability { id: "85CA", source: "Moko's Shadow" } +3179.8 "Shadow Kasumi-giri 2" Ability { id: ["86C4", "86C5", "86C6"], source: "Moko's Shadow" } + +3187.1 "Kenki Release" Ability { id: "85E0", source: "Moko the Restless" } + +3195.3 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3201.4 "Azure Auspice" Ability { id: "85D4", source: "Moko the Restless" } +3207.0 "Boundless Azure" Ability { id: "859D", source: "Moko the Restless" } +3218.8 "Upwell 1" Ability { id: "85D6", source: "Moko the Restless" } +3221.8 "Upwell 2" Ability { id: "85D6", source: "Moko the Restless" } +3224.8 "Upwell 3" Ability { id: "85D6", source: "Moko the Restless" } +3225.2 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3227.8 "Upwell 4" Ability { id: "85D6", source: "Moko the Restless" } +3238.7 "Triple Kasumi-giri 1" Ability { id: ["85B0", "85B1", "85B2", "85B3", "85BA", "85BB", "85BC", "85BD"], source: "Moko the Restless" } +3241.7 "Triple Kasumi-giri 2" Ability { id: ["85B4", "85B5", "85B6", "85B7", "85BE", "85BF", "85C0", "85C1"], source: "Moko the Restless" } +3244.7 "Triple Kasumi-giri 3" Ability { id: ["85B4", "85B5", "85B6", "85B7", "85BE", "85BF", "85C0", "85C1"], source: "Moko the Restless" } + +3251.8 "Kenki Release" Ability { id: "85E0", source: "Moko the Restless" } +3254.9 "--sync--" Ability { id: ["871F", "8720"], source: "Moko the Restless" } +3260.0 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3264.1 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +3270.2 "Shadow-twin" Ability { id: "85C7", source: "Moko the Restless" } +3285.4 "Double Iai-giri x4" Ability { id: "85C8", source: "Moko's Shadow" } +3285.6 "--jump--" Ability { id: "85C9", source: "Moko's Shadow" } +3285.9 "Iron Storm" Ability { id: "85D0", source: "Ashigaru Kyuhei" } +3285.9 "Iron Rain" Ability { id: "85CF", source: "Ashigaru Kyuhei" } +3288.3 "Shadow Kasumi-giri 1" Ability { id: "85CA", source: "Moko's Shadow" } +3291.3 "Shadow Kasumi-giri 2" Ability { id: ["86C4", "86C6"], source: "Moko's Shadow" } +3291.7 "Iron Storm" Ability { id: "87A8", source: "Ashigaru Kyuhei" } +3291.7 "Iron Rain" Ability { id: "87A7", source: "Ashigaru Kyuhei" } + +3291.8 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3305.1 "Triple Kasumi-giri 1" Ability { id: ["85B0", "85B1", "85B2", "85B3", "85BA", "85BB", "85BC", "85BD"], source: "Moko the Restless" } +3308.2 "Triple Kasumi-giri 2" Ability { id: ["85B4", "85B5", "85B6", "85B7", "85BE", "85BF", "85C0", "85C1"], source: "Moko the Restless" } +3311.3 "Triple Kasumi-giri 3" Ability { id: ["85B4", "85B5", "85B6", "85B7", "85BE", "85BF", "85C0", "85C1"], source: "Moko the Restless" } +3318.3 "Kenki Release" Ability { id: "85E0", source: "Moko the Restless" } +3321.4 "--sync--" Ability { id: ["871F", "8720"], source: "Moko the Restless" } +3328.8 "Lateral Slice" Ability { id: "85E3", source: "Moko the Restless" } +3336.8 "Kenki Release" Ability { id: "85E0", source: "Moko the Restless" } + +3342.0 "--sync--" StartsUsing { id: "85E1", source: "Moko the Restless" } window 10,10 +3352.0 "Kenki Release Enrage" Ability { id: "85E1", source: "Moko the Restless" } # TODO: are any of these possible??? I think no diff --git a/ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane-savage.txt b/ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane-savage.txt index a00ee72303..8962f83f88 100644 --- a/ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane-savage.txt +++ b/ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane-savage.txt @@ -9,7 +9,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~# # SILKIE # @@ -18,86 +18,86 @@ hideall "--sync--" # -ii 7783 7784 7785 778B 778C 778D 77ED 77EE # Trial of Knowledge is sealed off -0.0 "--sync--" sync / 29:[^:]*:7DD:[^:]*:1087:/ window 0,1 -12.2 "--sync--" sync / 14:[^:]*:Silkie:777C:/ window 15,15 -14.9 "Fizzling Suds" sync / 1[56]:[^:]*:Silkie:777C:/ -21.0 "Soap's Up" sync / 1[56]:[^:]*:Silkie:777D:/ -22.0 "Fizzling Duster" sync / 1[56]:[^:]*:Silkie:7780:/ -32.2 "Dust Bluster" sync / 1[56]:[^:]*:Silkie:778F:/ +0.0 "--sync--" SystemLogMessage { id: "7DD", param1: "1087" } window 0,1 +12.2 "--sync--" StartsUsing { id: "777C", source: "Silkie" } window 15,15 +14.9 "Fizzling Suds" Ability { id: "777C", source: "Silkie" } +21.0 "Soap's Up" Ability { id: "777D", source: "Silkie" } +22.0 "Fizzling Duster" Ability { id: "7780", source: "Silkie" } +32.2 "Dust Bluster" Ability { id: "778F", source: "Silkie" } 32.2 "--middle--" -38.4 "Fresh Puff 1" sync / 1[56]:[^:]*:Silkie:7789:/ -43.5 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:777A:/ -50.1 "--sync--" sync / 1[56]:[^:]*:Silkie:(7774|7775):/ -51.6 "Squeaky Clean" sync / 1[56]:[^:]*:Silkie:7776:/ duration 3.2 -53.3 "--sync--" sync / 1[56]:[^:]*:Silkie:7777:/ -54.8 "--sync--" sync / 1[56]:[^:]*:Silkie:(7778|7779):/ -61.9 "Chilling Suds" sync / 1[56]:[^:]*:Silkie:777B:/ -64.0 "--sync--" sync / 1[56]:[^:]*:Silkie:79FB:/ -69.0 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:7781:/ -73.0 "Chilling Duster" sync / 1[56]:[^:]*:Silkie:7786:/ -80.6 "Carpet Beater" sync / 1[56]:[^:]*:Silkie:7772:/ -89.7 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:778A:/ -89.7 "Chilling Duster / Fizzling Duster" #sync / 1[56]:[^:]*:Silken Puff:(778B|778D):/ -89.7 "Bracing Duster" #sync / 1[56]:[^:]*:Silken Puff:778C:/ -89.7 "Chilling Duster" #sync / 1[56]:[^:]*:Silken Puff:778B:/ -100.9 "Total Wash 1" sync / 1[56]:[^:]*:Silkie:7773:/ -106.0 "Bracing Suds / Chilling Suds" sync / 1[56]:[^:]*:Silkie:(777A|777B):/ - -112.1 "Fresh Puff 2" sync / 1[56]:[^:]*:Silkie:7789:/ +38.4 "Fresh Puff 1" Ability { id: "7789", source: "Silkie" } +43.5 "Bracing Suds" Ability { id: "777A", source: "Silkie" } +50.1 "--sync--" Ability { id: ["7774", "7775"], source: "Silkie" } +51.6 "Squeaky Clean" Ability { id: "7776", source: "Silkie" } duration 3.2 +53.3 "--sync--" Ability { id: "7777", source: "Silkie" } +54.8 "--sync--" Ability { id: ["7778", "7779"], source: "Silkie" } +61.9 "Chilling Suds" Ability { id: "777B", source: "Silkie" } +64.0 "--sync--" Ability { id: "79FB", source: "Silkie" } +69.0 "Slippery Soap" Ability { id: "7781", source: "Silkie" } +73.0 "Chilling Duster" Ability { id: "7786", source: "Silkie" } +80.6 "Carpet Beater" Ability { id: "7772", source: "Silkie" } +89.7 "Soaping Spree" Ability { id: "778A", source: "Silkie" } +89.7 "Chilling Duster / Fizzling Duster" #Ability { id: ["778B", "778D"], source: "Silken Puff" } +89.7 "Bracing Duster" #Ability { id: "778C", source: "Silken Puff" } +89.7 "Chilling Duster" #Ability { id: "778B", source: "Silken Puff" } +100.9 "Total Wash 1" Ability { id: "7773", source: "Silkie" } +106.0 "Bracing Suds / Chilling Suds" Ability { id: ["777A", "777B"], source: "Silkie" } + +112.1 "Fresh Puff 2" Ability { id: "7789", source: "Silkie" } 116.3 "--middle--" -123.1 "Puff and Tumble" duration 0.7 #sync / 1[56]:[^:]*:Silken Puff:7794:/ -129.5 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:778A:/ -129.5 "Fizzling Duster x2" #sync / 1[56]:[^:]*:Silken Puff:778D:/ -129.5 "Chilling Duster x2" #sync / 1[56]:[^:]*:Silken Puff:778B:/ -129.5 "Bracing Duster / Chilling Duster" #sync / 1[56]:[^:]*:Silkie:(778C|778B):/ -134.6 "Bracing Suds / Fizzling Suds" sync / 1[56]:[^:]*:Silkie:(777A|777C):/ -136.7 "--sync--" sync / 1[56]:[^:]*:Silkie:79FB:/ -141.7 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:7781:/ -145.7 "Bracing Duster / Fizzling Duster" sync / 1[56]:[^:]*:Silkie:(7787|7788):/ -160.1 "Total Wash 2" sync / 1[56]:[^:]*:Silkie:7773:/ - -166.2 "Fresh Puff 3" sync / 1[56]:[^:]*:Silkie:7789:/ -172.3 "Eastern Ewers" sync / 1[56]:[^:]*:Silkie:7790:/ -178.6 "Rinse" sync / 1[56]:[^:]*:Eastern Ewer:7792:/ duration 7.3 -188.1 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:778A:/ -188.1 "Bracing Duster / Chilling Duster / Fizzling Duster" #sync / 1[56]:[^:]*:Silken Puff:(778C|778B|778D):/ -188.1 "Fizzling Duster" #sync / 1[56]:[^:]*:Silken Puff:778D:/ -195.2 "Chilling Suds" sync / 1[56]:[^:]*:Silkie:777B:/ -202.3 "Carpet Beater" sync / 1[56]:[^:]*:Silkie:7772:/ -204.4 "--sync--" sync / 1[56]:[^:]*:Eastern Ewer:79FB:/ -209.4 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:7781:/ -213.4 "Chilling Duster" sync / 1[56]:[^:]*:Silkie:7786:/ -225.9 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:777A:/ -233.0 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:778A:/ -233.0 "Chilling Duster x6" #sync / 1[56]:[^:]*:Silken Puff:778B:/ -233.0 "Bracing Duster" #sync / 1[56]:[^:]*:Silkie:778C:/ -244.2 "Dust Bluster" sync / 1[56]:[^:]*:Silkie:778F:/ +123.1 "Puff and Tumble" duration 0.7 #Ability { id: "7794", source: "Silken Puff" } +129.5 "Soaping Spree" Ability { id: "778A", source: "Silkie" } +129.5 "Fizzling Duster x2" #Ability { id: "778D", source: "Silken Puff" } +129.5 "Chilling Duster x2" #Ability { id: "778B", source: "Silken Puff" } +129.5 "Bracing Duster / Chilling Duster" #Ability { id: ["778C", "778B"], source: "Silkie" } +134.6 "Bracing Suds / Fizzling Suds" Ability { id: ["777A", "777C"], source: "Silkie" } +136.7 "--sync--" Ability { id: "79FB", source: "Silkie" } +141.7 "Slippery Soap" Ability { id: "7781", source: "Silkie" } +145.7 "Bracing Duster / Fizzling Duster" Ability { id: ["7787", "7788"], source: "Silkie" } +160.1 "Total Wash 2" Ability { id: "7773", source: "Silkie" } + +166.2 "Fresh Puff 3" Ability { id: "7789", source: "Silkie" } +172.3 "Eastern Ewers" Ability { id: "7790", source: "Silkie" } +178.6 "Rinse" Ability { id: "7792", source: "Eastern Ewer" } duration 7.3 +188.1 "Soaping Spree" Ability { id: "778A", source: "Silkie" } +188.1 "Bracing Duster / Chilling Duster / Fizzling Duster" #Ability { id: ["778C", "778B", "778D"], source: "Silken Puff" } +188.1 "Fizzling Duster" #Ability { id: "778D", source: "Silken Puff" } +195.2 "Chilling Suds" Ability { id: "777B", source: "Silkie" } +202.3 "Carpet Beater" Ability { id: "7772", source: "Silkie" } +204.4 "--sync--" Ability { id: "79FB", source: "Eastern Ewer" } +209.4 "Slippery Soap" Ability { id: "7781", source: "Silkie" } +213.4 "Chilling Duster" Ability { id: "7786", source: "Silkie" } +225.9 "Bracing Suds" Ability { id: "777A", source: "Silkie" } +233.0 "Soaping Spree" Ability { id: "778A", source: "Silkie" } +233.0 "Chilling Duster x6" #Ability { id: "778B", source: "Silken Puff" } +233.0 "Bracing Duster" #Ability { id: "778C", source: "Silkie" } +244.2 "Dust Bluster" Ability { id: "778F", source: "Silkie" } 244.2 "--north--" -249.6 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:777A:/ - -255.7 "Fresh Puff 4" sync / 1[56]:[^:]*:Silkie:7789:/ -262.3 "--sync--" sync / 1[56]:[^:]*:Silkie:(7774|7775):/ -263.8 "Squeaky Clean" sync / 1[56]:[^:]*:Silkie:7776:/ duration 3.2 -265.5 "--sync--" sync / 1[56]:[^:]*:Silkie:7777:/ -266.9 "Puff and Tumble x4" duration 0.7 #sync / 1[56]:[^:]*:Silken Puff:7794:/ -266.9 "--sync--" sync / 1[56]:[^:]*:Silkie:(7778|7779):/ -276.0 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:778A:/ -276.0 "Chilling Duster x4" #sync / 1[56]:[^:]*:Silken Puff:778B:/ -276.0 "Bracing Duster" #sync / 1[56]:[^:]*:Silkie:778C:/ -283.1 "Total Wash 3" sync / 1[56]:[^:]*:Silkie:7773:/ -292.3 "Bracing Suds / Chilling Suds / Fizzling Suds" sync / 1[56]:[^:]*:Silkie:(777A|777B|777C):/ -294.4 "--sync--" sync / 1[56]:[^:]*:Silkie:79FB:/ -299.4 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:7781:/ -303.5 "Bracing Duster / Chilling Duster / Fizzling Duster" sync / 1[56]:[^:]*:Silkie:(7787|7786|7788):/ -309.0 "Bracing Suds / Chilling Suds / Fizzling Suds" sync / 1[56]:[^:]*:Silkie:(777A|777B|777C):/ -311.1 "--sync--" sync / 1[56]:[^:]*:Silkie:79FB:/ -316.1 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:7781:/ -320.0 "Bracing Duster / Chilling Duster / Fizzling Duster" sync / 1[56]:[^:]*:Silkie:(7787|7786|7788):/ - -322.9 "--sync--" sync / 14:[^:]*:Silkie:79E1:/ window 15,5 -332.9 "Total Wash (enrage)" sync / 1[56]:[^:]*:Silkie:79E1:/ -338.1 "Total Wash (enrage)" sync / 1[56]:[^:]*:Silkie:79F9:/ +249.6 "Bracing Suds" Ability { id: "777A", source: "Silkie" } + +255.7 "Fresh Puff 4" Ability { id: "7789", source: "Silkie" } +262.3 "--sync--" Ability { id: ["7774", "7775"], source: "Silkie" } +263.8 "Squeaky Clean" Ability { id: "7776", source: "Silkie" } duration 3.2 +265.5 "--sync--" Ability { id: "7777", source: "Silkie" } +266.9 "Puff and Tumble x4" duration 0.7 #Ability { id: "7794", source: "Silken Puff" } +266.9 "--sync--" Ability { id: ["7778", "7779"], source: "Silkie" } +276.0 "Soaping Spree" Ability { id: "778A", source: "Silkie" } +276.0 "Chilling Duster x4" #Ability { id: "778B", source: "Silken Puff" } +276.0 "Bracing Duster" #Ability { id: "778C", source: "Silkie" } +283.1 "Total Wash 3" Ability { id: "7773", source: "Silkie" } +292.3 "Bracing Suds / Chilling Suds / Fizzling Suds" Ability { id: ["777A", "777B", "777C"], source: "Silkie" } +294.4 "--sync--" Ability { id: "79FB", source: "Silkie" } +299.4 "Slippery Soap" Ability { id: "7781", source: "Silkie" } +303.5 "Bracing Duster / Chilling Duster / Fizzling Duster" Ability { id: ["7787", "7786", "7788"], source: "Silkie" } +309.0 "Bracing Suds / Chilling Suds / Fizzling Suds" Ability { id: ["777A", "777B", "777C"], source: "Silkie" } +311.1 "--sync--" Ability { id: "79FB", source: "Silkie" } +316.1 "Slippery Soap" Ability { id: "7781", source: "Silkie" } +320.0 "Bracing Duster / Chilling Duster / Fizzling Duster" Ability { id: ["7787", "7786", "7788"], source: "Silkie" } + +322.9 "--sync--" StartsUsing { id: "79E1", source: "Silkie" } window 15,5 +332.9 "Total Wash (enrage)" Ability { id: "79E1", source: "Silkie" } +338.1 "Total Wash (enrage)" Ability { id: "79F9", source: "Silkie" } #~~~~~~~~~~~~~~~~~~~~~~# @@ -107,67 +107,67 @@ hideall "--sync--" # -ii 77B1 77B2 77B8 77B9 77BF 77A2 79F4 # Trial of Might will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1088:/ window 1000,1 -1006.8 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:77B3:/ window 1007.3,5 -1011.5 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B3:/ -1023.6 "Specter of Might" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B5:/ -1038.3 "Rush of Might 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:779D:/ -1040.4 "Rush of Might 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:779E:/ -1042.8 "Specter of Might" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B5:/ -1057.5 "Rush of Might 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:779D:/ -1059.6 "Rush of Might 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:779E:/ -1062.0 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:6854:/ -1067.0 "Sculptor's Passion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AE:/ -1082.4 "Mighty Smite" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B4:/ - -1095.5 "Curse of the Fallen" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B6:/ -1097.6 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -1110.2 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BF:/ -1113.6 "Echo of the Fallen" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B7:/ -1121.3 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B3:/ -1131.5 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ - -1136.6 "Hateful Visage" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B0:/ -1141.7 "Wrath of Ruin" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77A5:/ -1150.7 "Gold Flame x4" sync / 1[56]:[^:]*:Hateful Visage:77B1:/ -1150.7 "Silver Flame x4" #sync / 1[56]:[^:]*:Hateful Visage:77B2:/ -1152.3 "Nothing beside Remains" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(768B|77BC):/ -1161.4 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B3:/ -1171.6 "Accursed Visage" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BE:/ -1176.7 "Wrath of Ruin" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77A5:/ -1185.7 "Gold Flame x4" sync / 1[56]:[^:]*:Hateful Visage:77B1:/ -1185.7 "Silver Flame x4" #sync / 1[56]:[^:]*:Hateful Visage:77B2:/ -1187.3 "Nothing beside Remains" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(768B|77BC):/ -1196.4 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B3:/ - -1206.6 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -1212.7 "Curse of the Monument" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77A8:/ -1219.9 "Sundered Remains 1" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AA:/ -1220.5 "Sundered Remains 2" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AA:/ -1221.1 "Sundered Remains 3" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AA:/ -1221.7 "Sundered Remains 4" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AA:/ -1222.3 "Sundered Remains 5" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AA:/ -1224.9 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -1232.9 "Scream of the Fallen" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BA:/ -1233.3 "Colossal Wreck" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AB:/ -1233.8 "Explosion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AC:/ -1237.0 "Scream of the Fallen" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BA:/ -1237.8 "Explosion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AC:/ - -1245.0 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B3:/ -1259.2 "Specter of Might" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B5:/ -1273.9 "Rush of Might 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:779D:/ -1276.0 "Rush of Might 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:779E:/ -1278.3 "Specter of Might" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B5:/ -1293.0 "Rush of Might 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:779D:/ -1295.1 "Rush of Might 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:779E:/ -1297.5 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:6854:/ -1302.6 "Sculptor's Passion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77AE:/ - -1311.5 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -1318.9 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77B3:/ -1321.0 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:77BB:/ window 15,5 -1331.0 "Flash of Steel (enrage)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BB:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1088" } window 1000,1 +1006.8 "--sync--" StartsUsing { id: "77B3", source: "Gladiator of Sil'dih" } window 1007.3,5 +1011.5 "Flash of Steel" Ability { id: "77B3", source: "Gladiator of Sil'dih" } +1023.6 "Specter of Might" Ability { id: "77B5", source: "Gladiator of Sil'dih" } +1038.3 "Rush of Might 1" Ability { id: "779D", source: "Gladiator of Sil'dih" } +1040.4 "Rush of Might 2" Ability { id: "779E", source: "Gladiator of Sil'dih" } +1042.8 "Specter of Might" Ability { id: "77B5", source: "Gladiator of Sil'dih" } +1057.5 "Rush of Might 1" Ability { id: "779D", source: "Gladiator of Sil'dih" } +1059.6 "Rush of Might 2" Ability { id: "779E", source: "Gladiator of Sil'dih" } +1062.0 "--sync--" Ability { id: "6854", source: "Gladiator of Sil'dih" } +1067.0 "Sculptor's Passion" Ability { id: "77AE", source: "Gladiator of Sil'dih" } +1082.4 "Mighty Smite" Ability { id: "77B4", source: "Gladiator of Sil'dih" } + +1095.5 "Curse of the Fallen" Ability { id: "77B6", source: "Gladiator of Sil'dih" } +1097.6 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +1110.2 "--sync--" Ability { id: "77BF", source: "Gladiator of Sil'dih" } +1113.6 "Echo of the Fallen" Ability { id: "77B7", source: "Gladiator of Sil'dih" } +1121.3 "Flash of Steel" Ability { id: "77B3", source: "Gladiator of Sil'dih" } +1131.5 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } + +1136.6 "Hateful Visage" Ability { id: "77B0", source: "Gladiator of Sil'dih" } +1141.7 "Wrath of Ruin" Ability { id: "77A5", source: "Gladiator of Sil'dih" } +1150.7 "Gold Flame x4" Ability { id: "77B1", source: "Hateful Visage" } +1150.7 "Silver Flame x4" #Ability { id: "77B2", source: "Hateful Visage" } +1152.3 "Nothing beside Remains" Ability { id: ["768B", "77BC"], source: "Gladiator of Sil'dih" } +1161.4 "Flash of Steel" Ability { id: "77B3", source: "Gladiator of Sil'dih" } +1171.6 "Accursed Visage" Ability { id: "77BE", source: "Gladiator of Sil'dih" } +1176.7 "Wrath of Ruin" Ability { id: "77A5", source: "Gladiator of Sil'dih" } +1185.7 "Gold Flame x4" Ability { id: "77B1", source: "Hateful Visage" } +1185.7 "Silver Flame x4" #Ability { id: "77B2", source: "Hateful Visage" } +1187.3 "Nothing beside Remains" Ability { id: ["768B", "77BC"], source: "Gladiator of Sil'dih" } +1196.4 "Flash of Steel" Ability { id: "77B3", source: "Gladiator of Sil'dih" } + +1206.6 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +1212.7 "Curse of the Monument" Ability { id: "77A8", source: "Gladiator of Sil'dih" } +1219.9 "Sundered Remains 1" #Ability { id: "77AA", source: "Gladiator of Sil'dih" } +1220.5 "Sundered Remains 2" #Ability { id: "77AA", source: "Gladiator of Sil'dih" } +1221.1 "Sundered Remains 3" #Ability { id: "77AA", source: "Gladiator of Sil'dih" } +1221.7 "Sundered Remains 4" #Ability { id: "77AA", source: "Gladiator of Sil'dih" } +1222.3 "Sundered Remains 5" #Ability { id: "77AA", source: "Gladiator of Sil'dih" } +1224.9 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +1232.9 "Scream of the Fallen" Ability { id: "77BA", source: "Gladiator of Sil'dih" } +1233.3 "Colossal Wreck" Ability { id: "77AB", source: "Gladiator of Sil'dih" } +1233.8 "Explosion" Ability { id: "77AC", source: "Gladiator of Sil'dih" } +1237.0 "Scream of the Fallen" Ability { id: "77BA", source: "Gladiator of Sil'dih" } +1237.8 "Explosion" Ability { id: "77AC", source: "Gladiator of Sil'dih" } + +1245.0 "Flash of Steel" Ability { id: "77B3", source: "Gladiator of Sil'dih" } +1259.2 "Specter of Might" Ability { id: "77B5", source: "Gladiator of Sil'dih" } +1273.9 "Rush of Might 1" Ability { id: "779D", source: "Gladiator of Sil'dih" } +1276.0 "Rush of Might 2" Ability { id: "779E", source: "Gladiator of Sil'dih" } +1278.3 "Specter of Might" Ability { id: "77B5", source: "Gladiator of Sil'dih" } +1293.0 "Rush of Might 1" Ability { id: "779D", source: "Gladiator of Sil'dih" } +1295.1 "Rush of Might 2" Ability { id: "779E", source: "Gladiator of Sil'dih" } +1297.5 "--sync--" Ability { id: "6854", source: "Gladiator of Sil'dih" } +1302.6 "Sculptor's Passion" Ability { id: "77AE", source: "Gladiator of Sil'dih" } + +1311.5 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +1318.9 "Flash of Steel" Ability { id: "77B3", source: "Gladiator of Sil'dih" } +1321.0 "--sync--" StartsUsing { id: "77BB", source: "Gladiator of Sil'dih" } window 15,5 +1331.0 "Flash of Steel (enrage)" Ability { id: "77BB", source: "Gladiator of Sil'dih" } # There's probably a second, instant cast enrage version of the enrage after @@ -178,69 +178,69 @@ hideall "--sync--" # -ii 76CA 74B8 # Trial of Balance will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1089:/ window 2000,1 -2006.8 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:76C5:/ window 2007.3,5 -2011.5 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C5:/ -2023.7 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -2030.8 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7494:/ -2041.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B0:/ -2042.3 "Firesteel Strike 1" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C6:/ -2043.3 "Burn x4" sync / 1[56]:[^:]*:Ball of Fire:76BB:/ -2043.7 "Firesteel Strike 2" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C7:/ -2051.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B3:/ -2052.0 "Blessed Beacon 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C8:/ -2054.1 "Blessed Beacon 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C9:/ -2064.4 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C4:/ - -2076.6 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ duration 12 -2088.0 "Cryptic Flames" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B6:/ duration 12 -2094.9 "--middle--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -2101.4 "Blazing Benifice 1" sync / 1[56]:[^:]*:Arcane Font:76C1:/ -2102.0 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -2102.7 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76BD:/ -2104.7 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76BE:/ -2113.5 "Blazing Benifice 2" sync / 1[56]:[^:]*:Arcane Font:76C1:/ -2117.7 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C4:/ -2126.8 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C5:/ -2139.0 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -2147.1 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BA:/ -2147.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -2150.3 "--middle--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -2155.5 "Banishment" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BC:/ -2163.7 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -2164.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -2165.0 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7497:/ -2171.5 "Infern Wave 1" sync / 1[56]:[^:]*:Infern Brand:76CD:/ -2179.5 "Infern Wave 2" sync / 1[56]:[^:]*:Infern Brand:76CD:/ -2187.9 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C4:/ -2200.1 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -2207.2 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7494:/ -2218.3 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B0:/ -2218.6 "Firesteel Strike 1" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C6:/ -2219.7 "Blazing Benifice" sync / 1[56]:[^:]*:Arcane Font:76C1:/ -2220.1 "Firesteel Strike 2" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C7:/ -2228.1 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B3:/ -2228.5 "Blessed Beacon 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C8:/ -2230.7 "Blessed Beacon 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C9:/ -2240.8 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C5:/ - -2253.0 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ duration 12 -2261.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BA:/ -2262.0 "--sync--" sync / 1[56]:[^:]*:Infern Brand:7495:/ -2273.7 "Cryptic Flames" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B6:/ duration 12 -2277.7 "Infern Wave 1" sync / 1[56]:[^:]*:Infern Brand:76CD:/ -2287.7 "Infern Wave 2" sync / 1[56]:[^:]*:Infern Brand:76CD:/ -2288.7 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -2292.4 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76BF:/ -2294.8 "--middle--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -2297.6 "Infern Wave 3" sync / 1[56]:[^:]*:Infern Brand:76CD:/ -2302.0 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -2302.7 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76BD:/ -2304.7 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76BE:/ -2307.6 "Infern Wave 4" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76CD:/ - -2314.5 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C4:/ -2323.6 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:76C5:/ -2328.6 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74BF:/ window 15,5 -2338.6 "Show of Strength (enrage)" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BF:/ -2341.7 "Show of Strength (enrage)" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:73C9:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1089" } window 2000,1 +2006.8 "--sync--" StartsUsing { id: "76C5", source: "Shadowcaster Zeless Gah" } window 2007.3,5 +2011.5 "Show of Strength" Ability { id: "76C5", source: "Shadowcaster Zeless Gah" } +2023.7 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +2030.8 "Cryptic Portal" Ability { id: "7494", source: "Shadowcaster Zeless Gah" } +2041.9 "--sync--" Ability { id: "74B0", source: "Shadowcaster Zeless Gah" } +2042.3 "Firesteel Strike 1" #Ability { id: "76C6", source: "Shadowcaster Zeless Gah" } +2043.3 "Burn x4" Ability { id: "76BB", source: "Ball of Fire" } +2043.7 "Firesteel Strike 2" #Ability { id: "76C7", source: "Shadowcaster Zeless Gah" } +2051.6 "--sync--" Ability { id: "74B3", source: "Shadowcaster Zeless Gah" } +2052.0 "Blessed Beacon 1" Ability { id: "76C8", source: "Shadowcaster Zeless Gah" } +2054.1 "Blessed Beacon 2" Ability { id: "76C9", source: "Shadowcaster Zeless Gah" } +2064.4 "Firesteel Fracture" Ability { id: "76C4", source: "Shadowcaster Zeless Gah" } + +2076.6 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } duration 12 +2088.0 "Cryptic Flames" Ability { id: "74B6", source: "Shadowcaster Zeless Gah" } duration 12 +2094.9 "--middle--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +2101.4 "Blazing Benifice 1" Ability { id: "76C1", source: "Arcane Font" } +2102.0 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +2102.7 "Cast Shadow 1" Ability { id: "76BD", source: "Shadowcaster Zeless Gah" } +2104.7 "Cast Shadow 2" Ability { id: "76BE", source: "Shadowcaster Zeless Gah" } +2113.5 "Blazing Benifice 2" Ability { id: "76C1", source: "Arcane Font" } +2117.7 "Firesteel Fracture" Ability { id: "76C4", source: "Shadowcaster Zeless Gah" } +2126.8 "Show of Strength" Ability { id: "76C5", source: "Shadowcaster Zeless Gah" } +2139.0 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +2147.1 "--sync--" Ability { id: "74BA", source: "Shadowcaster Zeless Gah" } +2147.9 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +2150.3 "--middle--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +2155.5 "Banishment" Ability { id: "74BC", source: "Shadowcaster Zeless Gah" } +2163.7 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +2164.5 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +2165.0 "--sync--" Ability { id: "7497", source: "Shadowcaster Zeless Gah" } +2171.5 "Infern Wave 1" Ability { id: "76CD", source: "Infern Brand" } +2179.5 "Infern Wave 2" Ability { id: "76CD", source: "Infern Brand" } +2187.9 "Firesteel Fracture" Ability { id: "76C4", source: "Shadowcaster Zeless Gah" } +2200.1 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +2207.2 "Cryptic Portal" Ability { id: "7494", source: "Shadowcaster Zeless Gah" } +2218.3 "--sync--" Ability { id: "74B0", source: "Shadowcaster Zeless Gah" } +2218.6 "Firesteel Strike 1" #Ability { id: "76C6", source: "Shadowcaster Zeless Gah" } +2219.7 "Blazing Benifice" Ability { id: "76C1", source: "Arcane Font" } +2220.1 "Firesteel Strike 2" #Ability { id: "76C7", source: "Shadowcaster Zeless Gah" } +2228.1 "--sync--" Ability { id: "74B3", source: "Shadowcaster Zeless Gah" } +2228.5 "Blessed Beacon 1" Ability { id: "76C8", source: "Shadowcaster Zeless Gah" } +2230.7 "Blessed Beacon 2" Ability { id: "76C9", source: "Shadowcaster Zeless Gah" } +2240.8 "Show of Strength" Ability { id: "76C5", source: "Shadowcaster Zeless Gah" } + +2253.0 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } duration 12 +2261.2 "--sync--" Ability { id: "74BA", source: "Shadowcaster Zeless Gah" } +2262.0 "--sync--" Ability { id: "7495", source: "Infern Brand" } +2273.7 "Cryptic Flames" Ability { id: "74B6", source: "Shadowcaster Zeless Gah" } duration 12 +2277.7 "Infern Wave 1" Ability { id: "76CD", source: "Infern Brand" } +2287.7 "Infern Wave 2" Ability { id: "76CD", source: "Infern Brand" } +2288.7 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +2292.4 "Pure Fire" Ability { id: "76BF", source: "Shadowcaster Zeless Gah" } +2294.8 "--middle--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +2297.6 "Infern Wave 3" Ability { id: "76CD", source: "Infern Brand" } +2302.0 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +2302.7 "Cast Shadow 1" Ability { id: "76BD", source: "Shadowcaster Zeless Gah" } +2304.7 "Cast Shadow 2" Ability { id: "76BE", source: "Shadowcaster Zeless Gah" } +2307.6 "Infern Wave 4" Ability { id: "76CD", source: "Shadowcaster Zeless Gah" } + +2314.5 "Firesteel Fracture" Ability { id: "76C4", source: "Shadowcaster Zeless Gah" } +2323.6 "Show of Strength" Ability { id: "76C5", source: "Shadowcaster Zeless Gah" } +2328.6 "--sync--" StartsUsing { id: "74BF", source: "Shadowcaster Zeless Gah" } window 15,5 +2338.6 "Show of Strength (enrage)" Ability { id: "74BF", source: "Shadowcaster Zeless Gah" } +2341.7 "Show of Strength (enrage)" Ability { id: "73C9", source: "Shadowcaster Zeless Gah" } diff --git a/ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane.txt b/ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane.txt index 1756d25c30..bdbda23ca4 100644 --- a/ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane.txt +++ b/ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~# # SILKIE # @@ -13,86 +13,86 @@ hideall "--sync--" # -ii 7760 7761 7762 7768 7769 776A 77ED 77EE # Trial of Knowledge is sealed off -0.0 "--sync--" sync / 29:[^:]*:7DD:[^:]*:1087:/ window 0,1 -12.2 "--sync--" sync / 14:[^:]*:Silkie:7759:/ window 15,15 -14.9 "Fizzling Suds" sync / 1[56]:[^:]*:Silkie:7759:/ -21.0 "Soap's Up" sync / 1[56]:[^:]*:Silkie:775A:/ -22.0 "Fizzling Duster" sync / 1[56]:[^:]*:Silkie:775D:/ -32.2 "Dust Bluster" sync / 1[56]:[^:]*:Silkie:776C:/ +0.0 "--sync--" SystemLogMessage { id: "7DD", param1: "1087" } window 0,1 +12.2 "--sync--" StartsUsing { id: "7759", source: "Silkie" } window 15,15 +14.9 "Fizzling Suds" Ability { id: "7759", source: "Silkie" } +21.0 "Soap's Up" Ability { id: "775A", source: "Silkie" } +22.0 "Fizzling Duster" Ability { id: "775D", source: "Silkie" } +32.2 "Dust Bluster" Ability { id: "776C", source: "Silkie" } 32.2 "--middle--" -38.4 "Fresh Puff 1" sync / 1[56]:[^:]*:Silkie:7766:/ -43.5 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:7757:/ -50.1 "--sync--" sync / 1[56]:[^:]*:Silkie:(7751|7752):/ -51.6 "Squeaky Clean" sync / 1[56]:[^:]*:Silkie:7753:/ duration 3.2 -53.3 "--sync--" sync / 1[56]:[^:]*:Silkie:7754:/ -54.8 "--sync--" sync / 1[56]:[^:]*:Silkie:(7755|7756):/ -61.9 "Chilling Suds" sync / 1[56]:[^:]*:Silkie:7758:/ -64.0 "--sync--" sync / 1[56]:[^:]*:Silkie:79FB:/ -69.0 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:775E:/ -73.0 "Chilling Duster" sync / 1[56]:[^:]*:Silkie:7763:/ -80.6 "Carpet Beater" sync / 1[56]:[^:]*:Silkie:774F:/ -89.7 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:7767:/ -89.7 "Chilling Duster / Fizzling Duster" #sync / 1[56]:[^:]*:Silken Puff:(7768|776A):/ -89.7 "Bracing Duster" #sync / 1[56]:[^:]*:Silken Puff:7769:/ -89.7 "Chilling Duster" #sync / 1[56]:[^:]*:Silken Puff:7768:/ -100.9 "Total Wash 1" sync / 1[56]:[^:]*:Silkie:7750:/ -106.0 "Bracing Suds / Chilling Suds" sync / 1[56]:[^:]*:Silkie:(7757|7758):/ - -112.1 "Fresh Puff 2" sync / 1[56]:[^:]*:Silkie:7766:/ +38.4 "Fresh Puff 1" Ability { id: "7766", source: "Silkie" } +43.5 "Bracing Suds" Ability { id: "7757", source: "Silkie" } +50.1 "--sync--" Ability { id: ["7751", "7752"], source: "Silkie" } +51.6 "Squeaky Clean" Ability { id: "7753", source: "Silkie" } duration 3.2 +53.3 "--sync--" Ability { id: "7754", source: "Silkie" } +54.8 "--sync--" Ability { id: ["7755", "7756"], source: "Silkie" } +61.9 "Chilling Suds" Ability { id: "7758", source: "Silkie" } +64.0 "--sync--" Ability { id: "79FB", source: "Silkie" } +69.0 "Slippery Soap" Ability { id: "775E", source: "Silkie" } +73.0 "Chilling Duster" Ability { id: "7763", source: "Silkie" } +80.6 "Carpet Beater" Ability { id: "774F", source: "Silkie" } +89.7 "Soaping Spree" Ability { id: "7767", source: "Silkie" } +89.7 "Chilling Duster / Fizzling Duster" #Ability { id: ["7768", "776A"], source: "Silken Puff" } +89.7 "Bracing Duster" #Ability { id: "7769", source: "Silken Puff" } +89.7 "Chilling Duster" #Ability { id: "7768", source: "Silken Puff" } +100.9 "Total Wash 1" Ability { id: "7750", source: "Silkie" } +106.0 "Bracing Suds / Chilling Suds" Ability { id: ["7757", "7758"], source: "Silkie" } + +112.1 "Fresh Puff 2" Ability { id: "7766", source: "Silkie" } 116.3 "--middle--" -123.1 "Puff and Tumble" duration 0.7 #sync / 1[56]:[^:]*:Silken Puff:7771:/ -129.5 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:7767:/ -129.5 "Fizzling Duster x2" #sync / 1[56]:[^:]*:Silken Puff:776A:/ -129.5 "Chilling Duster x2" #sync / 1[56]:[^:]*:Silken Puff:7768:/ -129.5 "Bracing Duster / Chilling Duster" #sync / 1[56]:[^:]*:Silkie:(7769|7768):/ -134.6 "Bracing Suds / Fizzling Suds" sync / 1[56]:[^:]*:Silkie:(7757|7759):/ -136.7 "--sync--" sync / 1[56]:[^:]*:Silkie:79FB:/ -141.7 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:775E:/ -145.7 "Bracing Duster / Fizzling Duster" sync / 1[56]:[^:]*:Silkie:(7764|7765):/ -160.1 "Total Wash 2" sync / 1[56]:[^:]*:Silkie:7750:/ - -166.2 "Fresh Puff 3" sync / 1[56]:[^:]*:Silkie:7766:/ -172.3 "Eastern Ewers" sync / 1[56]:[^:]*:Silkie:776D:/ -178.6 "Rinse" sync / 1[56]:[^:]*:Eastern Ewer:776F:/ duration 7.3 -188.1 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:7767:/ -188.1 "Bracing Duster / Chilling Duster / Fizzling Duster" #sync / 1[56]:[^:]*:Silken Puff:(7769|7768|776A):/ -188.1 "Fizzling Duster" #sync / 1[56]:[^:]*:Silken Puff:776A:/ -195.2 "Chilling Suds" sync / 1[56]:[^:]*:Silkie:7758:/ -202.3 "Carpet Beater" sync / 1[56]:[^:]*:Silkie:774F:/ -204.4 "--sync--" sync / 1[56]:[^:]*:Eastern Ewer:79FB:/ -209.4 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:775E:/ -213.4 "Chilling Duster" sync / 1[56]:[^:]*:Silkie:7763:/ -225.9 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:7757:/ -233.0 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:7767:/ -233.0 "Chilling Duster x6" #sync / 1[56]:[^:]*:Silken Puff:7768:/ -233.0 "Bracing Duster" #sync / 1[56]:[^:]*:Silkie:7769:/ -244.2 "Dust Bluster" sync / 1[56]:[^:]*:Silkie:776C:/ +123.1 "Puff and Tumble" duration 0.7 #Ability { id: "7771", source: "Silken Puff" } +129.5 "Soaping Spree" Ability { id: "7767", source: "Silkie" } +129.5 "Fizzling Duster x2" #Ability { id: "776A", source: "Silken Puff" } +129.5 "Chilling Duster x2" #Ability { id: "7768", source: "Silken Puff" } +129.5 "Bracing Duster / Chilling Duster" #Ability { id: ["7769", "7768"], source: "Silkie" } +134.6 "Bracing Suds / Fizzling Suds" Ability { id: ["7757", "7759"], source: "Silkie" } +136.7 "--sync--" Ability { id: "79FB", source: "Silkie" } +141.7 "Slippery Soap" Ability { id: "775E", source: "Silkie" } +145.7 "Bracing Duster / Fizzling Duster" Ability { id: ["7764", "7765"], source: "Silkie" } +160.1 "Total Wash 2" Ability { id: "7750", source: "Silkie" } + +166.2 "Fresh Puff 3" Ability { id: "7766", source: "Silkie" } +172.3 "Eastern Ewers" Ability { id: "776D", source: "Silkie" } +178.6 "Rinse" Ability { id: "776F", source: "Eastern Ewer" } duration 7.3 +188.1 "Soaping Spree" Ability { id: "7767", source: "Silkie" } +188.1 "Bracing Duster / Chilling Duster / Fizzling Duster" #Ability { id: ["7769", "7768", "776A"], source: "Silken Puff" } +188.1 "Fizzling Duster" #Ability { id: "776A", source: "Silken Puff" } +195.2 "Chilling Suds" Ability { id: "7758", source: "Silkie" } +202.3 "Carpet Beater" Ability { id: "774F", source: "Silkie" } +204.4 "--sync--" Ability { id: "79FB", source: "Eastern Ewer" } +209.4 "Slippery Soap" Ability { id: "775E", source: "Silkie" } +213.4 "Chilling Duster" Ability { id: "7763", source: "Silkie" } +225.9 "Bracing Suds" Ability { id: "7757", source: "Silkie" } +233.0 "Soaping Spree" Ability { id: "7767", source: "Silkie" } +233.0 "Chilling Duster x6" #Ability { id: "7768", source: "Silken Puff" } +233.0 "Bracing Duster" #Ability { id: "7769", source: "Silkie" } +244.2 "Dust Bluster" Ability { id: "776C", source: "Silkie" } 244.2 "--north--" -249.6 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:7757:/ - -255.7 "Fresh Puff 4" sync / 1[56]:[^:]*:Silkie:7766:/ -262.3 "--sync--" sync / 1[56]:[^:]*:Silkie:(7751|7752):/ -263.8 "Squeaky Clean" sync / 1[56]:[^:]*:Silkie:7753:/ duration 3.2 -265.5 "--sync--" sync / 1[56]:[^:]*:Silkie:7754:/ -266.9 "Puff and Tumble x4" duration 0.7 #sync / 1[56]:[^:]*:Silken Puff:7771:/ -266.9 "--sync--" sync / 1[56]:[^:]*:Silkie:(7755|7756):/ -276.0 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:7767:/ -276.0 "Chilling Duster x4" #sync / 1[56]:[^:]*:Silken Puff:7768:/ -276.0 "Bracing Duster" #sync / 1[56]:[^:]*:Silkie:7769:/ -283.1 "Total Wash 3" sync / 1[56]:[^:]*:Silkie:7750:/ -292.3 "Bracing Suds / Chilling Suds / Fizzling Suds" sync / 1[56]:[^:]*:Silkie:(7757|7758|7759):/ -294.4 "--sync--" sync / 1[56]:[^:]*:Silkie:79FB:/ -299.4 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:775E:/ -303.5 "Bracing Duster / Chilling Duster / Fizzling Duster" sync / 1[56]:[^:]*:Silkie:(7764|7763|7765):/ -309.0 "Bracing Suds / Chilling Suds / Fizzling Suds" sync / 1[56]:[^:]*:Silkie:(7757|7758|7759):/ -311.1 "--sync--" sync / 1[56]:[^:]*:Silkie:79FB:/ -316.1 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:775E:/ -320.0 "Bracing Duster / Chilling Duster / Fizzling Duster" sync / 1[56]:[^:]*:Silkie:(7764|7763|7765):/ - -322.9 "--sync--" sync / 14:[^:]*:Silkie:79E0:/ window 15,5 -332.9 "Total Wash (enrage)" sync / 1[56]:[^:]*:Silkie:79E0:/ -338.1 "Total Wash (enrage)" sync / 1[56]:[^:]*:Silkie:79F9:/ +249.6 "Bracing Suds" Ability { id: "7757", source: "Silkie" } + +255.7 "Fresh Puff 4" Ability { id: "7766", source: "Silkie" } +262.3 "--sync--" Ability { id: ["7751", "7752"], source: "Silkie" } +263.8 "Squeaky Clean" Ability { id: "7753", source: "Silkie" } duration 3.2 +265.5 "--sync--" Ability { id: "7754", source: "Silkie" } +266.9 "Puff and Tumble x4" duration 0.7 #Ability { id: "7771", source: "Silken Puff" } +266.9 "--sync--" Ability { id: ["7755", "7756"], source: "Silkie" } +276.0 "Soaping Spree" Ability { id: "7767", source: "Silkie" } +276.0 "Chilling Duster x4" #Ability { id: "7768", source: "Silken Puff" } +276.0 "Bracing Duster" #Ability { id: "7769", source: "Silkie" } +283.1 "Total Wash 3" Ability { id: "7750", source: "Silkie" } +292.3 "Bracing Suds / Chilling Suds / Fizzling Suds" Ability { id: ["7757", "7758", "7759"], source: "Silkie" } +294.4 "--sync--" Ability { id: "79FB", source: "Silkie" } +299.4 "Slippery Soap" Ability { id: "775E", source: "Silkie" } +303.5 "Bracing Duster / Chilling Duster / Fizzling Duster" Ability { id: ["7764", "7763", "7765"], source: "Silkie" } +309.0 "Bracing Suds / Chilling Suds / Fizzling Suds" Ability { id: ["7757", "7758", "7759"], source: "Silkie" } +311.1 "--sync--" Ability { id: "79FB", source: "Silkie" } +316.1 "Slippery Soap" Ability { id: "775E", source: "Silkie" } +320.0 "Bracing Duster / Chilling Duster / Fizzling Duster" Ability { id: ["7764", "7763", "7765"], source: "Silkie" } + +322.9 "--sync--" StartsUsing { id: "79E0", source: "Silkie" } window 15,5 +332.9 "Total Wash (enrage)" Ability { id: "79E0", source: "Silkie" } +338.1 "Total Wash (enrage)" Ability { id: "79F9", source: "Silkie" } #~~~~~~~~~~~~~~~~~~~~~~# @@ -102,67 +102,67 @@ hideall "--sync--" # -ii 766F 7670 7676 7677 77BF 7660 79F3 # Trial of Might will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1088:/ window 1000,1 -1006.8 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7671:/ window 1007.3,5 -1011.5 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7671:/ -1023.6 "Specter of Might" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7673:/ -1038.3 "Rush of Might 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:765B:/ -1040.4 "Rush of Might 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:765C:/ -1042.8 "Specter of Might" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7673:/ -1057.5 "Rush of Might 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:765B:/ -1059.6 "Rush of Might 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:765C:/ -1062.0 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:6854:/ -1067.0 "Sculptor's Passion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:766C:/ -1082.4 "Mighty Smite" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7672:/ - -1095.5 "Curse of the Fallen" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7674:/ -1097.6 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -1110.2 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BF:/ -1113.6 "Echo of the Fallen" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7675:/ -1121.3 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7671:/ -1131.5 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ - -1136.6 "Hateful Visage" sync / 1[56]:[^:]*:Gladiator of Sil'dih:766E:/ -1141.7 "Wrath of Ruin" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7663:/ -1150.7 "Gold Flame x4" sync / 1[56]:[^:]*:Hateful Visage:766F:/ -1150.7 "Silver Flame x4" #sync / 1[56]:[^:]*:Hateful Visage:7670:/ -1152.3 "Nothing beside Remains" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(768B|768C):/ -1161.4 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7671:/ -1171.6 "Accursed Visage" sync / 1[56]:[^:]*:Gladiator of Sil'dih:768D:/ -1176.7 "Wrath of Ruin" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7663:/ -1185.7 "Gold Flame x4" sync / 1[56]:[^:]*:Hateful Visage:766F:/ -1185.7 "Silver Flame x4" #sync / 1[56]:[^:]*:Hateful Visage:7670:/ -1187.3 "Nothing beside Remains" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(768B|768C):/ -1196.4 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7671:/ - -1206.6 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -1212.7 "Curse of the Monument" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7666:/ -1219.9 "Sundered Remains 1" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7668:/ -1220.5 "Sundered Remains 2" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7668:/ -1221.1 "Sundered Remains 3" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7668:/ -1221.7 "Sundered Remains 4" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7668:/ -1222.3 "Sundered Remains 5" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7668:/ -1224.9 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -1232.9 "Scream of the Fallen" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7678:/ -1233.3 "Colossal Wreck" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7669:/ -1233.8 "Explosion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:766A:/ -1237.0 "Scream of the Fallen" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7678:/ -1237.8 "Explosion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:766A:/ - -1245.0 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7671:/ -1259.2 "Specter of Might" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7673:/ -1273.9 "Rush of Might 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:765B:/ -1276.0 "Rush of Might 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:765C:/ -1278.3 "Specter of Might" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7673:/ -1293.0 "Rush of Might 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:765B:/ -1295.1 "Rush of Might 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:765C:/ -1297.5 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:6854:/ -1302.6 "Sculptor's Passion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:766C:/ - -1311.5 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -1318.9 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7671:/ -1321.0 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7679:/ window 15,5 -1331.0 "Flash of Steel (enrage)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7679:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1088" } window 1000,1 +1006.8 "--sync--" StartsUsing { id: "7671", source: "Gladiator of Sil'dih" } window 1007.3,5 +1011.5 "Flash of Steel" Ability { id: "7671", source: "Gladiator of Sil'dih" } +1023.6 "Specter of Might" Ability { id: "7673", source: "Gladiator of Sil'dih" } +1038.3 "Rush of Might 1" Ability { id: "765B", source: "Gladiator of Sil'dih" } +1040.4 "Rush of Might 2" Ability { id: "765C", source: "Gladiator of Sil'dih" } +1042.8 "Specter of Might" Ability { id: "7673", source: "Gladiator of Sil'dih" } +1057.5 "Rush of Might 1" Ability { id: "765B", source: "Gladiator of Sil'dih" } +1059.6 "Rush of Might 2" Ability { id: "765C", source: "Gladiator of Sil'dih" } +1062.0 "--sync--" Ability { id: "6854", source: "Gladiator of Sil'dih" } +1067.0 "Sculptor's Passion" Ability { id: "766C", source: "Gladiator of Sil'dih" } +1082.4 "Mighty Smite" Ability { id: "7672", source: "Gladiator of Sil'dih" } + +1095.5 "Curse of the Fallen" Ability { id: "7674", source: "Gladiator of Sil'dih" } +1097.6 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +1110.2 "--sync--" Ability { id: "77BF", source: "Gladiator of Sil'dih" } +1113.6 "Echo of the Fallen" Ability { id: "7675", source: "Gladiator of Sil'dih" } +1121.3 "Flash of Steel" Ability { id: "7671", source: "Gladiator of Sil'dih" } +1131.5 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } + +1136.6 "Hateful Visage" Ability { id: "766E", source: "Gladiator of Sil'dih" } +1141.7 "Wrath of Ruin" Ability { id: "7663", source: "Gladiator of Sil'dih" } +1150.7 "Gold Flame x4" Ability { id: "766F", source: "Hateful Visage" } +1150.7 "Silver Flame x4" #Ability { id: "7670", source: "Hateful Visage" } +1152.3 "Nothing beside Remains" Ability { id: ["768B", "768C"], source: "Gladiator of Sil'dih" } +1161.4 "Flash of Steel" Ability { id: "7671", source: "Gladiator of Sil'dih" } +1171.6 "Accursed Visage" Ability { id: "768D", source: "Gladiator of Sil'dih" } +1176.7 "Wrath of Ruin" Ability { id: "7663", source: "Gladiator of Sil'dih" } +1185.7 "Gold Flame x4" Ability { id: "766F", source: "Hateful Visage" } +1185.7 "Silver Flame x4" #Ability { id: "7670", source: "Hateful Visage" } +1187.3 "Nothing beside Remains" Ability { id: ["768B", "768C"], source: "Gladiator of Sil'dih" } +1196.4 "Flash of Steel" Ability { id: "7671", source: "Gladiator of Sil'dih" } + +1206.6 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +1212.7 "Curse of the Monument" Ability { id: "7666", source: "Gladiator of Sil'dih" } +1219.9 "Sundered Remains 1" #Ability { id: "7668", source: "Gladiator of Sil'dih" } +1220.5 "Sundered Remains 2" #Ability { id: "7668", source: "Gladiator of Sil'dih" } +1221.1 "Sundered Remains 3" #Ability { id: "7668", source: "Gladiator of Sil'dih" } +1221.7 "Sundered Remains 4" #Ability { id: "7668", source: "Gladiator of Sil'dih" } +1222.3 "Sundered Remains 5" #Ability { id: "7668", source: "Gladiator of Sil'dih" } +1224.9 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +1232.9 "Scream of the Fallen" Ability { id: "7678", source: "Gladiator of Sil'dih" } +1233.3 "Colossal Wreck" Ability { id: "7669", source: "Gladiator of Sil'dih" } +1233.8 "Explosion" Ability { id: "766A", source: "Gladiator of Sil'dih" } +1237.0 "Scream of the Fallen" Ability { id: "7678", source: "Gladiator of Sil'dih" } +1237.8 "Explosion" Ability { id: "766A", source: "Gladiator of Sil'dih" } + +1245.0 "Flash of Steel" Ability { id: "7671", source: "Gladiator of Sil'dih" } +1259.2 "Specter of Might" Ability { id: "7673", source: "Gladiator of Sil'dih" } +1273.9 "Rush of Might 1" Ability { id: "765B", source: "Gladiator of Sil'dih" } +1276.0 "Rush of Might 2" Ability { id: "765C", source: "Gladiator of Sil'dih" } +1278.3 "Specter of Might" Ability { id: "7673", source: "Gladiator of Sil'dih" } +1293.0 "Rush of Might 1" Ability { id: "765B", source: "Gladiator of Sil'dih" } +1295.1 "Rush of Might 2" Ability { id: "765C", source: "Gladiator of Sil'dih" } +1297.5 "--sync--" Ability { id: "6854", source: "Gladiator of Sil'dih" } +1302.6 "Sculptor's Passion" Ability { id: "766C", source: "Gladiator of Sil'dih" } + +1311.5 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +1318.9 "Flash of Steel" Ability { id: "7671", source: "Gladiator of Sil'dih" } +1321.0 "--sync--" StartsUsing { id: "7679", source: "Gladiator of Sil'dih" } window 15,5 +1331.0 "Flash of Steel (enrage)" Ability { id: "7679", source: "Gladiator of Sil'dih" } # There's probably a second, instant cast enrage version of the enrage after @@ -173,69 +173,69 @@ hideall "--sync--" # -ii 74B7 74B8 # Trial of Balance will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1089:/ window 2000,1 -2006.8 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74AF:/ window 2007.3,5 -2011.5 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AF:/ -2023.7 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -2030.8 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7494:/ -2041.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B0:/ -2042.3 "Firesteel Strike 1" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B1:/ -2043.3 "Burn x4" sync / 1[56]:[^:]*:Ball of Fire:7490:/ -2043.7 "Firesteel Strike 2" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B2:/ -2051.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B3:/ -2052.0 "Blessed Beacon 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B4:/ -2054.1 "Blessed Beacon 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B5:/ -2064.4 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AD:/ - -2076.6 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ duration 12 -2088.0 "Cryptic Flames" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B6:/ duration 12 -2094.9 "--middle--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -2101.4 "Blazing Benifice 1" sync / 1[56]:[^:]*:Arcane Font:74A6:/ -2102.0 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -2102.7 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749C:/ -2104.7 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749E:/ -2113.5 "Blazing Benifice 2" sync / 1[56]:[^:]*:Arcane Font:74A6:/ -2117.7 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AD:/ -2126.8 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AF:/ -2139.0 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -2147.1 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BA:/ -2147.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -2150.3 "--middle--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -2155.5 "Banishment" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BC:/ -2163.7 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -2164.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -2165.0 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7497:/ -2171.5 "Infern Wave 1" sync / 1[56]:[^:]*:Infern Brand:74BB:/ -2179.5 "Infern Wave 2" sync / 1[56]:[^:]*:Infern Brand:74BB:/ -2187.9 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AD:/ -2200.1 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -2207.2 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7494:/ -2218.3 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B0:/ -2218.6 "Firesteel Strike 1" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B1:/ -2219.7 "Blazing Benifice" sync / 1[56]:[^:]*:Arcane Font:74A6:/ -2220.1 "Firesteel Strike 2" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B2:/ -2228.1 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B3:/ -2228.5 "Blessed Beacon 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B4:/ -2230.7 "Blessed Beacon 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B5:/ -2240.8 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AF:/ - -2253.0 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ duration 12 -2261.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BA:/ -2262.0 "--sync--" sync / 1[56]:[^:]*:Infern Brand:7495:/ -2273.7 "Cryptic Flames" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74B6:/ duration 12 -2277.7 "Infern Wave 1" sync / 1[56]:[^:]*:Infern Brand:74BB:/ -2287.7 "Infern Wave 2" sync / 1[56]:[^:]*:Infern Brand:74BB:/ -2288.7 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -2292.4 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A1:/ -2294.8 "--middle--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -2297.6 "Infern Wave 3" sync / 1[56]:[^:]*:Infern Brand:74BB:/ -2302.0 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -2302.7 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749C:/ -2304.7 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749E:/ -2307.6 "Infern Wave 4" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BB:/ - -2314.5 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AD:/ -2323.6 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AF:/ -2328.6 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74BF:/ window 15,5 -2338.6 "Show of Strength (enrage)" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BF:/ -2341.7 "Show of Strength (enrage)" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:73C9:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1089" } window 2000,1 +2006.8 "--sync--" StartsUsing { id: "74AF", source: "Shadowcaster Zeless Gah" } window 2007.3,5 +2011.5 "Show of Strength" Ability { id: "74AF", source: "Shadowcaster Zeless Gah" } +2023.7 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +2030.8 "Cryptic Portal" Ability { id: "7494", source: "Shadowcaster Zeless Gah" } +2041.9 "--sync--" Ability { id: "74B0", source: "Shadowcaster Zeless Gah" } +2042.3 "Firesteel Strike 1" #Ability { id: "74B1", source: "Shadowcaster Zeless Gah" } +2043.3 "Burn x4" Ability { id: "7490", source: "Ball of Fire" } +2043.7 "Firesteel Strike 2" #Ability { id: "74B2", source: "Shadowcaster Zeless Gah" } +2051.6 "--sync--" Ability { id: "74B3", source: "Shadowcaster Zeless Gah" } +2052.0 "Blessed Beacon 1" Ability { id: "74B4", source: "Shadowcaster Zeless Gah" } +2054.1 "Blessed Beacon 2" Ability { id: "74B5", source: "Shadowcaster Zeless Gah" } +2064.4 "Firesteel Fracture" Ability { id: "74AD", source: "Shadowcaster Zeless Gah" } + +2076.6 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } duration 12 +2088.0 "Cryptic Flames" Ability { id: "74B6", source: "Shadowcaster Zeless Gah" } duration 12 +2094.9 "--middle--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +2101.4 "Blazing Benifice 1" Ability { id: "74A6", source: "Arcane Font" } +2102.0 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +2102.7 "Cast Shadow 1" Ability { id: "749C", source: "Shadowcaster Zeless Gah" } +2104.7 "Cast Shadow 2" Ability { id: "749E", source: "Shadowcaster Zeless Gah" } +2113.5 "Blazing Benifice 2" Ability { id: "74A6", source: "Arcane Font" } +2117.7 "Firesteel Fracture" Ability { id: "74AD", source: "Shadowcaster Zeless Gah" } +2126.8 "Show of Strength" Ability { id: "74AF", source: "Shadowcaster Zeless Gah" } +2139.0 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +2147.1 "--sync--" Ability { id: "74BA", source: "Shadowcaster Zeless Gah" } +2147.9 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +2150.3 "--middle--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +2155.5 "Banishment" Ability { id: "74BC", source: "Shadowcaster Zeless Gah" } +2163.7 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +2164.5 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +2165.0 "--sync--" Ability { id: "7497", source: "Shadowcaster Zeless Gah" } +2171.5 "Infern Wave 1" Ability { id: "74BB", source: "Infern Brand" } +2179.5 "Infern Wave 2" Ability { id: "74BB", source: "Infern Brand" } +2187.9 "Firesteel Fracture" Ability { id: "74AD", source: "Shadowcaster Zeless Gah" } +2200.1 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +2207.2 "Cryptic Portal" Ability { id: "7494", source: "Shadowcaster Zeless Gah" } +2218.3 "--sync--" Ability { id: "74B0", source: "Shadowcaster Zeless Gah" } +2218.6 "Firesteel Strike 1" #Ability { id: "74B1", source: "Shadowcaster Zeless Gah" } +2219.7 "Blazing Benifice" Ability { id: "74A6", source: "Arcane Font" } +2220.1 "Firesteel Strike 2" #Ability { id: "74B2", source: "Shadowcaster Zeless Gah" } +2228.1 "--sync--" Ability { id: "74B3", source: "Shadowcaster Zeless Gah" } +2228.5 "Blessed Beacon 1" Ability { id: "74B4", source: "Shadowcaster Zeless Gah" } +2230.7 "Blessed Beacon 2" Ability { id: "74B5", source: "Shadowcaster Zeless Gah" } +2240.8 "Show of Strength" Ability { id: "74AF", source: "Shadowcaster Zeless Gah" } + +2253.0 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } duration 12 +2261.2 "--sync--" Ability { id: "74BA", source: "Shadowcaster Zeless Gah" } +2262.0 "--sync--" Ability { id: "7495", source: "Infern Brand" } +2273.7 "Cryptic Flames" Ability { id: "74B6", source: "Shadowcaster Zeless Gah" } duration 12 +2277.7 "Infern Wave 1" Ability { id: "74BB", source: "Infern Brand" } +2287.7 "Infern Wave 2" Ability { id: "74BB", source: "Infern Brand" } +2288.7 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +2292.4 "Pure Fire" Ability { id: "74A1", source: "Shadowcaster Zeless Gah" } +2294.8 "--middle--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +2297.6 "Infern Wave 3" Ability { id: "74BB", source: "Infern Brand" } +2302.0 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +2302.7 "Cast Shadow 1" Ability { id: "749C", source: "Shadowcaster Zeless Gah" } +2304.7 "Cast Shadow 2" Ability { id: "749E", source: "Shadowcaster Zeless Gah" } +2307.6 "Infern Wave 4" Ability { id: "74BB", source: "Shadowcaster Zeless Gah" } + +2314.5 "Firesteel Fracture" Ability { id: "74AD", source: "Shadowcaster Zeless Gah" } +2323.6 "Show of Strength" Ability { id: "74AF", source: "Shadowcaster Zeless Gah" } +2328.6 "--sync--" StartsUsing { id: "74BF", source: "Shadowcaster Zeless Gah" } window 15,5 +2338.6 "Show of Strength (enrage)" Ability { id: "74BF", source: "Shadowcaster Zeless Gah" } +2341.7 "Show of Strength (enrage)" Ability { id: "73C9", source: "Shadowcaster Zeless Gah" } diff --git a/ui/raidboss/data/06-ew/dungeon/ktisis_hyperboreia.txt b/ui/raidboss/data/06-ew/dungeon/ktisis_hyperboreia.txt index 35049bd486..49f88ed5a4 100644 --- a/ui/raidboss/data/06-ew/dungeon/ktisis_hyperboreia.txt +++ b/ui/raidboss/data/06-ew/dungeon/ktisis_hyperboreia.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~# # LYSSA # @@ -13,42 +13,42 @@ hideall "--sync--" # -ii 1961 6258 6E90 -it Lyssa # Frozen Sphere will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:EB6:/ window 0,1 -10.7 "Skull Dasher" sync / 1[56]:[^:]*:Lyssa:625E:/ window 10.7,10 -21.2 "Frostbite and Seek" sync / 1[56]:[^:]*:Lyssa:6257:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "EB6" } window 0,1 +10.7 "Skull Dasher" Ability { id: "625E", source: "Lyssa" } window 10.7,10 +21.2 "Frostbite and Seek" Ability { id: "6257", source: "Lyssa" } 23.2 "--untargetable--" -35.2 "Punishing Slice" sync / 1[56]:[^:]*:Lyssa:6259:/ window 35.2,30 +35.2 "Punishing Slice" Ability { id: "6259", source: "Lyssa" } window 35.2,30 36.3 "--targetable--" 42.0 "--middle--" -46.0 "Icicall" sync / 1[56]:[^:]*:Lyssa:625A:/ -50.9 "Ice Pillar" sync / 1[56]:[^:]*:Ice Pillar:625B:/ -54.2 "Frigid Stomp" sync / 1[56]:[^:]*:Lyssa:625D:/ +46.0 "Icicall" Ability { id: "625A", source: "Lyssa" } +50.9 "Ice Pillar" Ability { id: "625B", source: "Ice Pillar" } +54.2 "Frigid Stomp" Ability { id: "625D", source: "Lyssa" } -60.0 "Pillar Pierce" sync / 1[56]:[^:]*:Ice Pillar:631F:/ window 60.0,30 -70.6 "Skull Dasher" sync / 1[56]:[^:]*:Lyssa:625E:/ -81.0 "Frostbite and Seek" sync / 1[56]:[^:]*:Lyssa:6257:/ +60.0 "Pillar Pierce" Ability { id: "631F", source: "Ice Pillar" } window 60.0,30 +70.6 "Skull Dasher" Ability { id: "625E", source: "Lyssa" } +81.0 "Frostbite and Seek" Ability { id: "6257", source: "Lyssa" } 83.1 "--untargetable--" -98.0 "Punishing Slice" sync / 1[56]:[^:]*:Lyssa:6259:/ +98.0 "Punishing Slice" Ability { id: "6259", source: "Lyssa" } 99.1 "--targetable--" -109.2 "Frigid Stomp" sync / 1[56]:[^:]*:Lyssa:625D:/ window 30,30 +109.2 "Frigid Stomp" Ability { id: "625D", source: "Lyssa" } window 30,30 114.6 "--middle--" -118.6 "Icicall" sync / 1[56]:[^:]*:Lyssa:625A:/ -123.5 "Ice Pillar" sync / 1[56]:[^:]*:Ice Pillar:625B:/ +118.6 "Icicall" Ability { id: "625A", source: "Lyssa" } +123.5 "Ice Pillar" Ability { id: "625B", source: "Ice Pillar" } # Rotate from here -132.5 "Pillar Pierce" sync / 1[56]:[^:]*:Ice Pillar:631F:/ window 30,30 -133.8 "Heavy Smash" sync / 1[56]:[^:]*:Lyssa:625C:/ -146.1 "Skull Dasher" sync / 1[56]:[^:]*:Lyssa:625E:/ -156.7 "Frostbite and Seek" sync / 1[56]:[^:]*:Lyssa:6257:/ +132.5 "Pillar Pierce" Ability { id: "631F", source: "Ice Pillar" } window 30,30 +133.8 "Heavy Smash" Ability { id: "625C", source: "Lyssa" } +146.1 "Skull Dasher" Ability { id: "625E", source: "Lyssa" } +156.7 "Frostbite and Seek" Ability { id: "6257", source: "Lyssa" } 158.7 "--untargetable--" -173.7 "Punishing Slice" sync / 1[56]:[^:]*:Lyssa:6259:/ +173.7 "Punishing Slice" Ability { id: "6259", source: "Lyssa" } 174.8 "--targetable--" -184.9 "Frigid Stomp" sync / 1[56]:[^:]*:Lyssa:625D:/ window 30,30 +184.9 "Frigid Stomp" Ability { id: "625D", source: "Lyssa" } window 30,30 190.7 "--middle--" -194.7 "Icicall" sync / 1[56]:[^:]*:Lyssa:625A:/ -199.5 "Ice Pillar" sync / 1[56]:[^:]*:Ice Pillar:625B:/ +194.7 "Icicall" Ability { id: "625A", source: "Lyssa" } +199.5 "Ice Pillar" Ability { id: "625B", source: "Ice Pillar" } -208.6 "Pillar Pierce" sync / 1[56]:[^:]*:Ice Pillar:631F:/ jump 132.5 +208.6 "Pillar Pierce" Ability { id: "631F", source: "Ice Pillar" } jump 132.5 209.9 "Heavy Smash" 222.2 "Skull Dasher" 232.8 "Frostbite and Seek" @@ -61,47 +61,47 @@ hideall "--sync--" # -ii 368 653B -# "Pyric Breath" sync / 1[56]:[^:]*:Ladon Lord:(6486|6487|6488|6489|648A|648B):/ +# "Pyric Breath" Ability { id: ["6486", "6487", "6488", "6489", "648A", "648B"], source: "Ladon Lord" } # Concept Review will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:EB7:/ window 1000,5 -1010.3 "Scratch" sync / 1[56]:[^:]*:Ladon Lord:648F:/ window 1010.3,10 -1019.3 "Inhale" sync / 1[56]:[^:]*:Ladon Lord:6484:/ -1025.5 "--sync--" sync / 1[56]:[^:]*:Ladon Lord:6485:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "EB7" } window 1000,5 +1010.3 "Scratch" Ability { id: "648F", source: "Ladon Lord" } window 1010.3,10 +1019.3 "Inhale" Ability { id: "6484", source: "Ladon Lord" } +1025.5 "--sync--" Ability { id: "6485", source: "Ladon Lord" } 1027.2 "--rotate--" -1034.2 "Pyric Breath" sync / 1[56]:[^:]*:Ladon Lord:6486:/ window 1034.2,10 -1045.3 "Inhale" sync / 1[56]:[^:]*:Ladon Lord:6484:/ -1051.6 "--sync--" sync / 1[56]:[^:]*:Ladon Lord:6485:/ +1034.2 "Pyric Breath" Ability { id: "6486", source: "Ladon Lord" } window 1034.2,10 +1045.3 "Inhale" Ability { id: "6484", source: "Ladon Lord" } +1051.6 "--sync--" Ability { id: "6485", source: "Ladon Lord" } 1053.1 "--rotate--" -1060.1 "Pyric Breath #1" #sync / 1[56]:[^:]*:Ladon Lord:(6486|6487|6488|6489|648A|648B):/ -1062.2 "Pyric Breath #2" #sync / 1[56]:[^:]*:Ladon Lord:(6486|6487|6488|6489|648A|648B):/ -1067.3 "--sync--" sync / 1[56]:[^:]*:Ladon Lord:648C:/ +1060.1 "Pyric Breath #1" #Ability { id: ["6486", "6487", "6488", "6489", "648A", "648B"], source: "Ladon Lord" } +1062.2 "Pyric Breath #2" #Ability { id: ["6486", "6487", "6488", "6489", "648A", "648B"], source: "Ladon Lord" } +1067.3 "--sync--" Ability { id: "648C", source: "Ladon Lord" } # Rotation block. # TODO: Need extended rotations on this. The Pyric Sphere at 120 may not always be there? -1074.4 "Inhale" sync / 1[56]:[^:]*:Ladon Lord:6484:/ window 15,15 -1077.4 "Pyric Sphere" sync / 1[56]:[^:]*:Pyric Sphere:6490:/ -1079.8 "--sync--" sync / 1[56]:[^:]*:Ladon Lord:6485:/ +1074.4 "Inhale" Ability { id: "6484", source: "Ladon Lord" } window 15,15 +1077.4 "Pyric Sphere" Ability { id: "6490", source: "Pyric Sphere" } +1079.8 "--sync--" Ability { id: "6485", source: "Ladon Lord" } 1081.9 "--rotate--" -1082.5 "Pyric Sphere" sync / 1[56]:[^:]*:Pyric Sphere:6491:/ -1088.9 "Pyric Breath #1" #sync / 1[56]:[^:]*:Ladon Lord:(6486|6487|6488|6489|648A|648B):/ -1091.0 "Pyric Breath #2" #sync / 1[56]:[^:]*:Ladon Lord:(6486|6487|6488|6489|648A|648B):/ -1099.1 "Intimidation" sync / 1[56]:[^:]*:Ladon Lord:648D:/ -1105.3 "--sync--" sync / 1[56]:[^:]*:Ladon Lord:648C:/ -1110.4 "Inhale" sync / 1[56]:[^:]*:Ladon Lord:6484:/ window 30,30 -1115.4 "Pyric Sphere #1" sync / 1[56]:[^:]*:Pyric Sphere:6490:/ -1120.5 "Pyric Sphere #2" sync / 1[56]:[^:]*:Pyric Sphere:6491:/ -1122.9 "Pyric Blast" sync / 1[56]:[^:]*:Ladon Lord:648E:/ window 10,10 -1126.2 "--sync--" sync / 1[56]:[^:]*:Ladon Lord:6485:/ +1082.5 "Pyric Sphere" Ability { id: "6491", source: "Pyric Sphere" } +1088.9 "Pyric Breath #1" #Ability { id: ["6486", "6487", "6488", "6489", "648A", "648B"], source: "Ladon Lord" } +1091.0 "Pyric Breath #2" #Ability { id: ["6486", "6487", "6488", "6489", "648A", "648B"], source: "Ladon Lord" } +1099.1 "Intimidation" Ability { id: "648D", source: "Ladon Lord" } +1105.3 "--sync--" Ability { id: "648C", source: "Ladon Lord" } +1110.4 "Inhale" Ability { id: "6484", source: "Ladon Lord" } window 30,30 +1115.4 "Pyric Sphere #1" Ability { id: "6490", source: "Pyric Sphere" } +1120.5 "Pyric Sphere #2" Ability { id: "6491", source: "Pyric Sphere" } +1122.9 "Pyric Blast" Ability { id: "648E", source: "Ladon Lord" } window 10,10 +1126.2 "--sync--" Ability { id: "6485", source: "Ladon Lord" } 1128.0 "--rotate--" -1135.0 "Pyric Breath #1" #sync / 1[56]:[^:]*:Ladon Lord:(6486|6487|6488|6489|648A|648B):/ -1137.1 "Pyric Breath #2" #sync / 1[56]:[^:]*:Ladon Lord:(6486|6487|6488|6489|648A|648B):/ -1146.3 "Scratch" sync / 1[56]:[^:]*:Ladon Lord:648F:/ -1151.4 "--sync--" sync / 1[56]:[^:]*:Ladon Lord:648C:/ window 30,30 +1135.0 "Pyric Breath #1" #Ability { id: ["6486", "6487", "6488", "6489", "648A", "648B"], source: "Ladon Lord" } +1137.1 "Pyric Breath #2" #Ability { id: ["6486", "6487", "6488", "6489", "648A", "648B"], source: "Ladon Lord" } +1146.3 "Scratch" Ability { id: "648F", source: "Ladon Lord" } +1151.4 "--sync--" Ability { id: "648C", source: "Ladon Lord" } window 30,30 -1158.8 "Inhale" sync / 1[56]:[^:]*:Ladon Lord:6484:/ jump 1074.4 +1158.8 "Inhale" Ability { id: "6484", source: "Ladon Lord" } jump 1074.4 1161.8 "Pyric Sphere" 1166.9 "Pyric Sphere" 1166.3 "--rotate--" @@ -116,46 +116,46 @@ hideall "--sync--" # -ii 368 # Celestial Sphere will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:EB8:/ window 2000,10 -2013.1 "Trismegistos" sync / 1[56]:[^:]*:Hermes:651E:/ window 2013.1,10 +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "EB8" } window 2000,10 +2013.1 "Trismegistos" Ability { id: "651E", source: "Hermes" } window 2013.1,10 2020.2 "--middle--" -2024.2 "Hermetica" sync / 1[56]:[^:]*:Hermes:6520:/ -2029.7 "True Aero IV" sync / 1[56]:[^:]*:Karukeion:6521:/ -2038.4 "True Tornado" sync / 1[56]:[^:]*:Hermes:652E:/ -2038.5 "--sync--" sync / 1[56]:[^:]*:Hermes:652F:/ # True Tornado -2038.5 "--sync--" sync / 1[56]:[^:]*:Hermes:(6530|6531):/ # True Tornado - -2046.6 "Meteor" sync / 1[56]:[^:]*:Hermes:6522:/ window 2046.6,30 -2054.7 "Cosmic Kiss" sync / 1[56]:[^:]*:Meteor:6523:/ -2055.7 "Double" sync / 1[56]:[^:]*:Hermes:6524:/ -2063.8 "Hermetica" sync / 1[56]:[^:]*:Hermes:6525:/ -2066.3 "True Aero IV #1" #sync / 1[56]:[^:]*:Karukeion:6CBC:/ -2069.3 "True Aero IV #2" #sync / 1[56]:[^:]*:Karukeion:6CBC:/ +2024.2 "Hermetica" Ability { id: "6520", source: "Hermes" } +2029.7 "True Aero IV" Ability { id: "6521", source: "Karukeion" } +2038.4 "True Tornado" Ability { id: "652E", source: "Hermes" } +2038.5 "--sync--" Ability { id: "652F", source: "Hermes" } # True Tornado +2038.5 "--sync--" Ability { id: ["6530", "6531"], source: "Hermes" } # True Tornado + +2046.6 "Meteor" Ability { id: "6522", source: "Hermes" } window 2046.6,30 +2054.7 "Cosmic Kiss" Ability { id: "6523", source: "Meteor" } +2055.7 "Double" Ability { id: "6524", source: "Hermes" } +2063.8 "Hermetica" Ability { id: "6525", source: "Hermes" } +2066.3 "True Aero IV #1" #Ability { id: "6CBC", source: "Karukeion" } +2069.3 "True Aero IV #2" #Ability { id: "6CBC", source: "Karukeion" } 2074.7 "--middle--" -2078.7 "Double" sync / 1[56]:[^:]*:Hermes:6524:/ -2080.8 "--sync--" sync / 1[56]:[^:]*:Hermes:651F:/ -2085.8 "True Aero" sync / 1[56]:[^:]*:Hermes:652B:/ -2086.6 "--sync--" sync / 1[56]:[^:]*:Hermes:652C:/ -2089.7 "--sync--" sync / 1[56]:[^:]*:Hermes:652D:/ -2105.0 "Trismegistos" sync / 1[56]:[^:]*:Hermes:651E:/ window 30,30 -2115.3 "Quadruple" sync / 1[56]:[^:]*:Hermes:6526:/ -2129.4 "Hermetica" sync / 1[56]:[^:]*:Hermes:6527:/ -2131.9 "True Aero IV #1" sync / 1[56]:[^:]*:Karukeion:6CBD:/ -2134.9 "True Aero IV #2" sync / 1[56]:[^:]*:Karukeion:6CBD:/ -2137.9 "True Aero IV #3" sync / 1[56]:[^:]*:Karukeion:6CBD:/ -2140.7 "Double" sync / 1[56]:[^:]*:Hermes:6524:/ window 30,10 -2140.9 "True Aero IV #4" sync / 1[56]:[^:]*:Karukeion:6CBD:/ -2147.8 "True Aero II #1" sync / 1[56]:[^:]*:Hermes:(6528|6529):/ -2152.3 "True Aero II #2" sync / 1[56]:[^:]*:Hermes:652A:/ -2160.0 "Double" sync / 1[56]:[^:]*:Hermes:6524:/ -2167.2 "True Tornado" sync / 1[56]:[^:]*:Hermes:652E:/ window 30,30 -2167.3 "--sync--" sync / 1[56]:[^:]*:Hermes:(6530|6531):/ # True Tornado -2170.9 "--sync--" sync / 1[56]:[^:]*:Hermes:6532:/ # True Tornado -2186.5 "Trismegistos" sync / 1[56]:[^:]*:Hermes:651E:/ -2194.7 "Trismegistos" sync / 1[56]:[^:]*:Hermes:651E:/ +2078.7 "Double" Ability { id: "6524", source: "Hermes" } +2080.8 "--sync--" Ability { id: "651F", source: "Hermes" } +2085.8 "True Aero" Ability { id: "652B", source: "Hermes" } +2086.6 "--sync--" Ability { id: "652C", source: "Hermes" } +2089.7 "--sync--" Ability { id: "652D", source: "Hermes" } +2105.0 "Trismegistos" Ability { id: "651E", source: "Hermes" } window 30,30 +2115.3 "Quadruple" Ability { id: "6526", source: "Hermes" } +2129.4 "Hermetica" Ability { id: "6527", source: "Hermes" } +2131.9 "True Aero IV #1" Ability { id: "6CBD", source: "Karukeion" } +2134.9 "True Aero IV #2" Ability { id: "6CBD", source: "Karukeion" } +2137.9 "True Aero IV #3" Ability { id: "6CBD", source: "Karukeion" } +2140.7 "Double" Ability { id: "6524", source: "Hermes" } window 30,10 +2140.9 "True Aero IV #4" Ability { id: "6CBD", source: "Karukeion" } +2147.8 "True Aero II #1" Ability { id: ["6528", "6529"], source: "Hermes" } +2152.3 "True Aero II #2" Ability { id: "652A", source: "Hermes" } +2160.0 "Double" Ability { id: "6524", source: "Hermes" } +2167.2 "True Tornado" Ability { id: "652E", source: "Hermes" } window 30,30 +2167.3 "--sync--" Ability { id: ["6530", "6531"], source: "Hermes" } # True Tornado +2170.9 "--sync--" Ability { id: "6532", source: "Hermes" } # True Tornado +2186.5 "Trismegistos" Ability { id: "651E", source: "Hermes" } +2194.7 "Trismegistos" Ability { id: "651E", source: "Hermes" } # TODO: Likely the rotation point? Might need more data. -2204.9 "Meteor" sync / 1[56]:[^:]*:Hermes:6522:/ jump 2046.6 +2204.9 "Meteor" Ability { id: "6522", source: "Hermes" } jump 2046.6 2213.0 "Cosmic Kiss" 2214.0 "Double" 2222.1 "Hermetica" diff --git a/ui/raidboss/data/06-ew/dungeon/lapis_manalis.txt b/ui/raidboss/data/06-ew/dungeon/lapis_manalis.txt index 3c9d22ec82..31429ef611 100644 --- a/ui/raidboss/data/06-ew/dungeon/lapis_manalis.txt +++ b/ui/raidboss/data/06-ew/dungeon/lapis_manalis.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~# # Albion # @@ -13,47 +13,47 @@ hideall "--sync--" # -ii 7A7D 7A7E # The Silvan Throne will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10B2:/ window 0,1 -6.0 "--sync--" sync / 1[56]:[^:]*:Albion:802C:/ -10.6 "Call of the Mountain" sync / 1[56]:[^:]*:Albion:7A7C:/ - -12.9 "Wildlife Crossing 1" sync / 257 101:........:00020001:/ window 5,5 duration 15 -26.9 "Wildlife Crossing 2" sync / 257 101:........:00020001:/ window 5,5 duration 15 -41.4 "Albion's Embrace" sync / 1[56]:[^:]*:Albion:7A85:/ -48.4 "--sync--" sync / 1[56]:[^:]*:Albion:802C:/ -55.1 "Left Slam/Right Slam" sync / 1[56]:[^:]*:Albion:(802E|802D):/ -65.7 "Knock on Ice" sync / 1[56]:[^:]*:Albion:7A7F:/ -72.0 "Icebreaker" sync / 1[56]:[^:]*:Albion:7A81:/ -75.0 "--sync--" sync / 1[56]:[^:]*:Albion:7A82:/ -81.2 "Icy Throes" sync / 1[56]:[^:]*:Albion:(800F|7A83):/ -81.6 "--sync--" sync / 1[56]:[^:]*:Albion:802C:/ -86.2 "Icy Throes" sync / 1[56]:[^:]*:Albion:7FB9:/ - -90.2 "Roar of Albion" sync / 1[56]:[^:]*:Albion:7A84:/ -103.3 "Call of the Mountain" sync / 1[56]:[^:]*:Albion:7A7C:/ -106.1 "Wildlife Crossing 1" sync / 257 101:........:00020001:/ window 5,5 duration 15 -108.7 "--sync--" sync / 1[56]:[^:]*:Albion:802C:/ -115.5 "Left Slam/Right Slam" sync / 1[56]:[^:]*:Albion:(802E|802D):/ -120.0 "Wildlife Crossing 2" sync / 257 101:........:00020001:/ window 5,5 duration 15 -123.9 "--sync--" sync / 1[56]:[^:]*:Albion:802C:/ -130.8 "Left Slam/Right Slam" sync / 1[56]:[^:]*:Albion:(802E|802D):/ -141.4 "Albion's Embrace" sync / 1[56]:[^:]*:Albion:7A85:/ -151.5 "Knock on Ice" sync / 1[56]:[^:]*:Albion:7A7F:/ -157.6 "Icebreaker" sync / 1[56]:[^:]*:Albion:7A81:/ -160.6 "--sync--" sync / 1[56]:[^:]*:Albion:7A82:/ -166.8 "Icy Throes" sync / 1[56]:[^:]*:Albion:(800F|7A83):/ -167.2 "--sync--" sync / 1[56]:[^:]*:Albion:802C:/ -171.8 "Icy Throes" sync / 1[56]:[^:]*:Albion:7FB9:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10B2" } window 0,1 +6.0 "--sync--" Ability { id: "802C", source: "Albion" } +10.6 "Call of the Mountain" Ability { id: "7A7C", source: "Albion" } + +12.9 "Wildlife Crossing 1" MapEffect { flags: "00020001" } window 5,5 duration 15 +26.9 "Wildlife Crossing 2" MapEffect { flags: "00020001" } window 5,5 duration 15 +41.4 "Albion's Embrace" Ability { id: "7A85", source: "Albion" } +48.4 "--sync--" Ability { id: "802C", source: "Albion" } +55.1 "Left Slam/Right Slam" Ability { id: ["802E", "802D"], source: "Albion" } +65.7 "Knock on Ice" Ability { id: "7A7F", source: "Albion" } +72.0 "Icebreaker" Ability { id: "7A81", source: "Albion" } +75.0 "--sync--" Ability { id: "7A82", source: "Albion" } +81.2 "Icy Throes" Ability { id: ["800F", "7A83"], source: "Albion" } +81.6 "--sync--" Ability { id: "802C", source: "Albion" } +86.2 "Icy Throes" Ability { id: "7FB9", source: "Albion" } + +90.2 "Roar of Albion" Ability { id: "7A84", source: "Albion" } +103.3 "Call of the Mountain" Ability { id: "7A7C", source: "Albion" } +106.1 "Wildlife Crossing 1" MapEffect { flags: "00020001" } window 5,5 duration 15 +108.7 "--sync--" Ability { id: "802C", source: "Albion" } +115.5 "Left Slam/Right Slam" Ability { id: ["802E", "802D"], source: "Albion" } +120.0 "Wildlife Crossing 2" MapEffect { flags: "00020001" } window 5,5 duration 15 +123.9 "--sync--" Ability { id: "802C", source: "Albion" } +130.8 "Left Slam/Right Slam" Ability { id: ["802E", "802D"], source: "Albion" } +141.4 "Albion's Embrace" Ability { id: "7A85", source: "Albion" } +151.5 "Knock on Ice" Ability { id: "7A7F", source: "Albion" } +157.6 "Icebreaker" Ability { id: "7A81", source: "Albion" } +160.6 "--sync--" Ability { id: "7A82", source: "Albion" } +166.8 "Icy Throes" Ability { id: ["800F", "7A83"], source: "Albion" } +167.2 "--sync--" Ability { id: "802C", source: "Albion" } +171.8 "Icy Throes" Ability { id: "7FB9", source: "Albion" } # loop -175.8 "Roar of Albion" sync / 1[56]:[^:]*:Albion:7A84:/ window 30,30 jump 90.2 -188.9 "Call of the Mountain" #sync / 1[56]:[^:]*:Albion:7A7C:/ -191.7 "Wildlife Crossing 1" #sync / 257 101:........:00020001:/ window 5,5 duration 15 -194.3 "--sync--" #sync / 1[56]:[^:]*:Albion:802C:/ -201.1 "Left Slam/Right Slam" #sync / 1[56]:[^:]*:Albion:(802E|802D):/ -205.6 "Wildlife Crossing 2" #sync / 257 101:........:00020001:/ window 5,5 duration 15 -209.5 "--sync--" #sync / 1[56]:[^:]*:Albion:802C:/ -216.4 "Left Slam/Right Slam" #sync / 1[56]:[^:]*:Albion:(802E|802D):/ +175.8 "Roar of Albion" Ability { id: "7A84", source: "Albion" } window 30,30 jump 90.2 +188.9 "Call of the Mountain" #Ability { id: "7A7C", source: "Albion" } +191.7 "Wildlife Crossing 1" #MapEffect { flags: "00020001" } window 5,5 duration 15 +194.3 "--sync--" #Ability { id: "802C", source: "Albion" } +201.1 "Left Slam/Right Slam" #Ability { id: ["802E", "802D"], source: "Albion" } +205.6 "Wildlife Crossing 2" #MapEffect { flags: "00020001" } window 5,5 duration 15 +209.5 "--sync--" #Ability { id: "802C", source: "Albion" } +216.4 "Left Slam/Right Slam" #Ability { id: ["802E", "802D"], source: "Albion" } #~~~~~~~~~~~~~~~# # Galatea Magna # @@ -62,68 +62,68 @@ hideall "--sync--" # -ii 7F71 7A9D # Forum Messorum will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10B3:/ window 1000,1 -1010.2 "--sync--" sync / 1[56]:[^:]*:Galatea Magna:7F71:/ # manually added for early sync -1015.2 "Waxing Cycle/Waning Cycle" sync / 1[56]:[^:]*:Galatea Magna:(7A91|7F6E):/ -1016.8 "--sync--" sync / 1[56]:[^:]*:Galatea Magna:7F6F:/ -1017.2 "Waxing Cycle/Waning Cycle" sync / 1[56]:[^:]*:Galatea Magna:(7A93|7F70):/ -1028.3 "Soul Scythe" sync / 1[56]:[^:]*:Galatea Magna:7A9A:/ -1037.4 "Soul Nebula" sync / 1[56]:[^:]*:Galatea Magna:7A9E:/ -1049.1 "--sync--" sync / 1[56]:[^:]*:Galatea Magna:7A9B:/ -1051.1 "Scarecrow Chase 1" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1054.1 "Scarecrow Chase 2" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1064.1 "Tenebrism" sync / 1[56]:[^:]*:Galatea Magna:7A96:/ -1071.1 "Burst 1" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1073.1 "Burst 2" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1075.1 "Burst 3" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1077.1 "Burst 4" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1079.1 "Stony Gaze x4" sync / 1[56]:[^:]*:Galatea Magna:7A99:/ -1091.1 "Waxing Cycle/Waning Cycle" sync / 1[56]:[^:]*:Galatea Magna:(7A91|7F6E):/ -1092.7 "--sync--" sync / 1[56]:[^:]*:Galatea Magna:7A92:/ -1093.9 "Waxing Cycle/Waning Cycle" sync / 1[56]:[^:]*:Galatea Magna:(7A93|7F70):/ -1103.1 "Soul Scythe" sync / 1[56]:[^:]*:Galatea Magna:7A9A:/ -1111.1 "Soul Nebula" sync / 1[56]:[^:]*:Galatea Magna:7A9E:/ -1122.8 "--sync--" sync / 1[56]:[^:]*:Galatea Magna:7A9B:/ -1124.8 "Scarecrow Chase 1" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1127.8 "Scarecrow Chase 2" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1130.8 "Scarecrow Chase 3" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1133.8 "Scarecrow Chase 4" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1140.8 "Tenebrism" sync / 1[56]:[^:]*:Galatea Magna:7A96:/ -1147.8 "Burst 1" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1149.8 "Burst 2" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1151.8 "Burst 3" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1153.8 "Burst 4" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1155.8 "Stony Gaze x4" sync / 1[56]:[^:]*:Galatea Magna:7A99:/ -1162.9 "Waxing Cycle/Waning Cycle" sync / 1[56]:[^:]*:Galatea Magna:(7A91|7F6E):/ -1164.5 "--sync--" sync / 1[56]:[^:]*:Galatea Magna:7A92:/ -1165.6 "Waxing Cycle/Waning Cycle" sync / 1[56]:[^:]*:Galatea Magna:(7A93|7F70):/ -1174.3 "Soul Scythe" sync / 1[56]:[^:]*:Galatea Magna:7A9A:/ -1182.3 "Soul Nebula" sync / 1[56]:[^:]*:Galatea Magna:7A9E:/ -1194.0 "--sync--" sync / 1[56]:[^:]*:Galatea Magna:7A9B:/ -1196.0 "Scarecrow Chase 1" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1199.0 "Scarecrow Chase 2" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1202.0 "Scarecrow Chase 3" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1205.1 "Scarecrow Chase 4" sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1212.0 "Tenebrism" sync / 1[56]:[^:]*:Galatea Magna:7A96:/ -1219.0 "Burst 1" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1221.0 "Burst 2" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1223.0 "Burst 3" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1225.0 "Burst 4" #sync / 1[56]:[^:]*:Galatea Magna:7A97:/ -1227.0 "Stony Gaze x4" #sync / 1[56]:[^:]*:Galatea Magna:7A99:/ -1232.0 "Dark Harvest" sync / 1[56]:[^:]*:Galatea Magna:7A9F:/ # first time tankbuster is used -1244.1 "Waxing Cycle/Waning Cycle" sync / 1[56]:[^:]*:Galatea Magna:(7A91|7F6E):/ -1245.7 "--sync--" sync / 1[56]:[^:]*:Galatea Magna:7F6F:/ -1246.1 "Waxing Cycle/Waning Cycle" sync / 1[56]:[^:]*:Galatea Magna:(7A93|7F70):/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10B3" } window 1000,1 +1010.2 "--sync--" Ability { id: "7F71", source: "Galatea Magna" } # manually added for early sync +1015.2 "Waxing Cycle/Waning Cycle" Ability { id: ["7A91", "7F6E"], source: "Galatea Magna" } +1016.8 "--sync--" Ability { id: "7F6F", source: "Galatea Magna" } +1017.2 "Waxing Cycle/Waning Cycle" Ability { id: ["7A93", "7F70"], source: "Galatea Magna" } +1028.3 "Soul Scythe" Ability { id: "7A9A", source: "Galatea Magna" } +1037.4 "Soul Nebula" Ability { id: "7A9E", source: "Galatea Magna" } +1049.1 "--sync--" Ability { id: "7A9B", source: "Galatea Magna" } +1051.1 "Scarecrow Chase 1" Ability { id: "7FBF", source: "Galatea Magna" } +1054.1 "Scarecrow Chase 2" Ability { id: "7FBF", source: "Galatea Magna" } +1064.1 "Tenebrism" Ability { id: "7A96", source: "Galatea Magna" } +1071.1 "Burst 1" #Ability { id: "7A97", source: "Galatea Magna" } +1073.1 "Burst 2" #Ability { id: "7A97", source: "Galatea Magna" } +1075.1 "Burst 3" #Ability { id: "7A97", source: "Galatea Magna" } +1077.1 "Burst 4" #Ability { id: "7A97", source: "Galatea Magna" } +1079.1 "Stony Gaze x4" Ability { id: "7A99", source: "Galatea Magna" } +1091.1 "Waxing Cycle/Waning Cycle" Ability { id: ["7A91", "7F6E"], source: "Galatea Magna" } +1092.7 "--sync--" Ability { id: "7A92", source: "Galatea Magna" } +1093.9 "Waxing Cycle/Waning Cycle" Ability { id: ["7A93", "7F70"], source: "Galatea Magna" } +1103.1 "Soul Scythe" Ability { id: "7A9A", source: "Galatea Magna" } +1111.1 "Soul Nebula" Ability { id: "7A9E", source: "Galatea Magna" } +1122.8 "--sync--" Ability { id: "7A9B", source: "Galatea Magna" } +1124.8 "Scarecrow Chase 1" Ability { id: "7FBF", source: "Galatea Magna" } +1127.8 "Scarecrow Chase 2" Ability { id: "7FBF", source: "Galatea Magna" } +1130.8 "Scarecrow Chase 3" Ability { id: "7FBF", source: "Galatea Magna" } +1133.8 "Scarecrow Chase 4" Ability { id: "7FBF", source: "Galatea Magna" } +1140.8 "Tenebrism" Ability { id: "7A96", source: "Galatea Magna" } +1147.8 "Burst 1" #Ability { id: "7A97", source: "Galatea Magna" } +1149.8 "Burst 2" #Ability { id: "7A97", source: "Galatea Magna" } +1151.8 "Burst 3" #Ability { id: "7A97", source: "Galatea Magna" } +1153.8 "Burst 4" #Ability { id: "7A97", source: "Galatea Magna" } +1155.8 "Stony Gaze x4" Ability { id: "7A99", source: "Galatea Magna" } +1162.9 "Waxing Cycle/Waning Cycle" Ability { id: ["7A91", "7F6E"], source: "Galatea Magna" } +1164.5 "--sync--" Ability { id: "7A92", source: "Galatea Magna" } +1165.6 "Waxing Cycle/Waning Cycle" Ability { id: ["7A93", "7F70"], source: "Galatea Magna" } +1174.3 "Soul Scythe" Ability { id: "7A9A", source: "Galatea Magna" } +1182.3 "Soul Nebula" Ability { id: "7A9E", source: "Galatea Magna" } +1194.0 "--sync--" Ability { id: "7A9B", source: "Galatea Magna" } +1196.0 "Scarecrow Chase 1" Ability { id: "7FBF", source: "Galatea Magna" } +1199.0 "Scarecrow Chase 2" Ability { id: "7FBF", source: "Galatea Magna" } +1202.0 "Scarecrow Chase 3" Ability { id: "7FBF", source: "Galatea Magna" } +1205.1 "Scarecrow Chase 4" Ability { id: "7FBF", source: "Galatea Magna" } +1212.0 "Tenebrism" Ability { id: "7A96", source: "Galatea Magna" } +1219.0 "Burst 1" #Ability { id: "7A97", source: "Galatea Magna" } +1221.0 "Burst 2" #Ability { id: "7A97", source: "Galatea Magna" } +1223.0 "Burst 3" #Ability { id: "7A97", source: "Galatea Magna" } +1225.0 "Burst 4" #Ability { id: "7A97", source: "Galatea Magna" } +1227.0 "Stony Gaze x4" #Ability { id: "7A99", source: "Galatea Magna" } +1232.0 "Dark Harvest" Ability { id: "7A9F", source: "Galatea Magna" } # first time tankbuster is used +1244.1 "Waxing Cycle/Waning Cycle" Ability { id: ["7A91", "7F6E"], source: "Galatea Magna" } +1245.7 "--sync--" Ability { id: "7F6F", source: "Galatea Magna" } +1246.1 "Waxing Cycle/Waning Cycle" Ability { id: ["7A93", "7F70"], source: "Galatea Magna" } # loop -1256.0 "Soul Scythe" sync / 1[56]:[^:]*:Galatea Magna:7A9A:/ window 30,30 jump 1174.3 -1264.0 "Soul Nebula" #sync / 1[56]:[^:]*:Galatea Magna:7A9E:/ -1275.7 "--sync--" #sync / 1[56]:[^:]*:Galatea Magna:7A9B:/ -1277.7 "Scarecrow Chase 1" #sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1280.7 "Scarecrow Chase 2" #sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1283.7 "Scarecrow Chase 3" #sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1286.7 "Scarecrow Chase 4" #sync / 1[56]:[^:]*:Galatea Magna:7FBF:/ -1293.6 "Tenebrism" #sync / 1[56]:[^:]*:Galatea Magna:7A96:/ +1256.0 "Soul Scythe" Ability { id: "7A9A", source: "Galatea Magna" } window 30,30 jump 1174.3 +1264.0 "Soul Nebula" #Ability { id: "7A9E", source: "Galatea Magna" } +1275.7 "--sync--" #Ability { id: "7A9B", source: "Galatea Magna" } +1277.7 "Scarecrow Chase 1" #Ability { id: "7FBF", source: "Galatea Magna" } +1280.7 "Scarecrow Chase 2" #Ability { id: "7FBF", source: "Galatea Magna" } +1283.7 "Scarecrow Chase 3" #Ability { id: "7FBF", source: "Galatea Magna" } +1286.7 "Scarecrow Chase 4" #Ability { id: "7FBF", source: "Galatea Magna" } +1293.6 "Tenebrism" #Ability { id: "7A96", source: "Galatea Magna" } #~~~~~~~~~~# # Cagnazzo # @@ -134,73 +134,73 @@ hideall "--sync--" # -it "Cagnazzo" # Deepspine will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10B4:/ window 2000,1 -2015.6 "Stygian Deluge" sync / 1[56]:[^:]*:Cagnazzo:79A3:/ -2025.4 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:798F:/ -2038.0 "Antediluvian 1" sync / 1[56]:[^:]*:Cagnazzo:7990:/ -2042.0 "Antediluvian 2" sync / 1[56]:[^:]*:Cagnazzo:7990:/ -2043.3 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7991:/ -2044.3 "Body Slam" sync / 1[56]:[^:]*:Cagnazzo:(7992|7993):/ -2046.0 "Antediluvian 3" sync / 1[56]:[^:]*:Cagnazzo:7990:/ -2051.1 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799B:/ -2060.9 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7FB4:/ -2062.8 "Hydraulic Ram" duration 6 #sync / 1[56]:[^:]*:Cagnazzo:7FB6:/ -2069.4 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7996:/ -2073.5 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799B:/ -2084.6 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7A8F:/ -2085.2 "Hydrofall" sync / 1[56]:[^:]*:Cagnazzo:7A90:/ -2095.9 "Cursed Tide" sync / 1[56]:[^:]*:Cagnazzo:799A:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10B4" } window 2000,1 +2015.6 "Stygian Deluge" Ability { id: "79A3", source: "Cagnazzo" } +2025.4 "--sync--" Ability { id: "798F", source: "Cagnazzo" } +2038.0 "Antediluvian 1" Ability { id: "7990", source: "Cagnazzo" } +2042.0 "Antediluvian 2" Ability { id: "7990", source: "Cagnazzo" } +2043.3 "--sync--" Ability { id: "7991", source: "Cagnazzo" } +2044.3 "Body Slam" Ability { id: ["7992", "7993"], source: "Cagnazzo" } +2046.0 "Antediluvian 3" Ability { id: "7990", source: "Cagnazzo" } +2051.1 "--sync--" Ability { id: "799B", source: "Cagnazzo" } +2060.9 "--sync--" Ability { id: "7FB4", source: "Cagnazzo" } +2062.8 "Hydraulic Ram" duration 6 #Ability { id: "7FB6", source: "Cagnazzo" } +2069.4 "--sync--" Ability { id: "7996", source: "Cagnazzo" } +2073.5 "--sync--" Ability { id: "799B", source: "Cagnazzo" } +2084.6 "--sync--" Ability { id: "7A8F", source: "Cagnazzo" } +2085.2 "Hydrofall" Ability { id: "7A90", source: "Cagnazzo" } +2095.9 "Cursed Tide" Ability { id: "799A", source: "Cagnazzo" } # add phase 2099.5 "--untargetable--" -2099.5 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799B:/ -2102.9 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799C:/ -2113.7 "Neap Tide" sync / 1[56]:[^:]*:Cagnazzo:799E:/ -2118.1 "Hydrovent" sync / 1[56]:[^:]*:Cagnazzo:79A0:/ -2124.7 "Spring Tide" sync / 1[56]:[^:]*:Cagnazzo:799F:/ -2134.1 "Hydrovent" sync / 1[56]:[^:]*:Cagnazzo:79A0:/ -2145.1 "Hydrovent" sync / 1[56]:[^:]*:Cagnazzo:79A0:/ +2099.5 "--sync--" Ability { id: "799B", source: "Cagnazzo" } +2102.9 "--sync--" Ability { id: "799C", source: "Cagnazzo" } +2113.7 "Neap Tide" Ability { id: "799E", source: "Cagnazzo" } +2118.1 "Hydrovent" Ability { id: "79A0", source: "Cagnazzo" } +2124.7 "Spring Tide" Ability { id: "799F", source: "Cagnazzo" } +2134.1 "Hydrovent" Ability { id: "79A0", source: "Cagnazzo" } +2145.1 "Hydrovent" Ability { id: "79A0", source: "Cagnazzo" } # probably more Hydrovent spam here until phase end or enrage -2500.0 "--sync--" sync / 00:0044:Cagnazzo:No more games!/ window 500,0 -2513.0 "Tsunami" sync / 1[56]:[^:]*:Cagnazzo:79A1:/ window 500,1 # if we miss the chatline sync we'll still resync here +2500.0 "--sync--" GameLog { code: "0044", name: "Cagnazzo", line: "No more games!.*?" } window 500,0 +2513.0 "Tsunami" Ability { id: "79A1", source: "Cagnazzo" } window 500,1 # if we miss the chatline sync we'll still resync here 2516.9 "--targetable--" -2523.0 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799B:/ -2530.1 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7986:/ -2531.0 "Voidcleaver" sync / 1[56]:[^:]*:Cagnazzo:7987:/ -2540.0 "Void Miasma 1" sync / 1[56]:[^:]*:Cagnazzo:7FB3:/ -2546.0 "Void Miasma 2" sync / 1[56]:[^:]*:Cagnazzo:7FB3:/ -2546.3 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7988:/ -2547.3 "Lifescleaver x8" sync / 1[56]:[^:]*:Cagnazzo:7989:/ -2552.0 "Void Miasma 3" sync / 1[56]:[^:]*:Cagnazzo:7FB3:/ -2556.7 "Void Torrent" sync / 1[56]:[^:]*:Cagnazzo:798E:/ -2564.5 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799B:/ -2574.3 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7FB4:/ -2576.2 "Hydraulic Ram" duration 6 #sync / 1[56]:[^:]*:Cagnazzo:7FB6:/ -2582.8 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7996:/ -2586.8 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799B:/ -2597.9 "Stygian Deluge" sync / 1[56]:[^:]*:Cagnazzo:79A3:/ -2609.7 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:798F:/ -2622.3 "Antediluvian 1" sync / 1[56]:[^:]*:Cagnazzo:7990:/ -2626.3 "Antediluvian 2" sync / 1[56]:[^:]*:Cagnazzo:7990:/ -2627.6 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7991:/ -2628.6 "Body Slam" sync / 1[56]:[^:]*:Cagnazzo:(7992|7993):/ -2630.3 "Antediluvian 3" sync / 1[56]:[^:]*:Cagnazzo:7990:/ -2635.3 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799B:/ -2642.6 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7986:/ -2643.5 "Voidcleaver" sync / 1[56]:[^:]*:Cagnazzo:7987:/ -2652.5 "Void Miasma 1" sync / 1[56]:[^:]*:Cagnazzo:7FB3:/ -2658.5 "Void Miasma 2" sync / 1[56]:[^:]*:Cagnazzo:7FB3:/ -2658.7 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7988:/ -2659.7 "Lifescleaver x8" sync / 1[56]:[^:]*:Cagnazzo:7989:/ -2664.5 "Void Miasma 3" sync / 1[56]:[^:]*:Cagnazzo:7FB3:/ -2669.1 "Void Torrent" sync / 1[56]:[^:]*:Cagnazzo:798E:/ -2676.9 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:799B:/ +2523.0 "--sync--" Ability { id: "799B", source: "Cagnazzo" } +2530.1 "--sync--" Ability { id: "7986", source: "Cagnazzo" } +2531.0 "Voidcleaver" Ability { id: "7987", source: "Cagnazzo" } +2540.0 "Void Miasma 1" Ability { id: "7FB3", source: "Cagnazzo" } +2546.0 "Void Miasma 2" Ability { id: "7FB3", source: "Cagnazzo" } +2546.3 "--sync--" Ability { id: "7988", source: "Cagnazzo" } +2547.3 "Lifescleaver x8" Ability { id: "7989", source: "Cagnazzo" } +2552.0 "Void Miasma 3" Ability { id: "7FB3", source: "Cagnazzo" } +2556.7 "Void Torrent" Ability { id: "798E", source: "Cagnazzo" } +2564.5 "--sync--" Ability { id: "799B", source: "Cagnazzo" } +2574.3 "--sync--" Ability { id: "7FB4", source: "Cagnazzo" } +2576.2 "Hydraulic Ram" duration 6 #Ability { id: "7FB6", source: "Cagnazzo" } +2582.8 "--sync--" Ability { id: "7996", source: "Cagnazzo" } +2586.8 "--sync--" Ability { id: "799B", source: "Cagnazzo" } +2597.9 "Stygian Deluge" Ability { id: "79A3", source: "Cagnazzo" } +2609.7 "--sync--" Ability { id: "798F", source: "Cagnazzo" } +2622.3 "Antediluvian 1" Ability { id: "7990", source: "Cagnazzo" } +2626.3 "Antediluvian 2" Ability { id: "7990", source: "Cagnazzo" } +2627.6 "--sync--" Ability { id: "7991", source: "Cagnazzo" } +2628.6 "Body Slam" Ability { id: ["7992", "7993"], source: "Cagnazzo" } +2630.3 "Antediluvian 3" Ability { id: "7990", source: "Cagnazzo" } +2635.3 "--sync--" Ability { id: "799B", source: "Cagnazzo" } +2642.6 "--sync--" Ability { id: "7986", source: "Cagnazzo" } +2643.5 "Voidcleaver" Ability { id: "7987", source: "Cagnazzo" } +2652.5 "Void Miasma 1" Ability { id: "7FB3", source: "Cagnazzo" } +2658.5 "Void Miasma 2" Ability { id: "7FB3", source: "Cagnazzo" } +2658.7 "--sync--" Ability { id: "7988", source: "Cagnazzo" } +2659.7 "Lifescleaver x8" Ability { id: "7989", source: "Cagnazzo" } +2664.5 "Void Miasma 3" Ability { id: "7FB3", source: "Cagnazzo" } +2669.1 "Void Torrent" Ability { id: "798E", source: "Cagnazzo" } +2676.9 "--sync--" Ability { id: "799B", source: "Cagnazzo" } # loop -2686.6 "--sync--" sync / 1[56]:[^:]*:Cagnazzo:7FB4:/ window 30,30 jump 2574.3 -2688.5 "Hydraulic Ram" duration 6 #sync / 1[56]:[^:]*:Cagnazzo:7FB6:/ -2695.1 "--sync--" #sync / 1[56]:[^:]*:Cagnazzo:7996:/ -2699.2 "--sync--" #sync / 1[56]:[^:]*:Cagnazzo:799B:/ -2710.3 "Stygian Deluge" #sync / 1[56]:[^:]*:Cagnazzo:79A3:/ -2722.0 "--sync--" #sync / 1[56]:[^:]*:Cagnazzo:798F:/ +2686.6 "--sync--" Ability { id: "7FB4", source: "Cagnazzo" } window 30,30 jump 2574.3 +2688.5 "Hydraulic Ram" duration 6 #Ability { id: "7FB6", source: "Cagnazzo" } +2695.1 "--sync--" #Ability { id: "7996", source: "Cagnazzo" } +2699.2 "--sync--" #Ability { id: "799B", source: "Cagnazzo" } +2710.3 "Stygian Deluge" #Ability { id: "79A3", source: "Cagnazzo" } +2722.0 "--sync--" #Ability { id: "798F", source: "Cagnazzo" } diff --git a/ui/raidboss/data/06-ew/dungeon/mount_rokkon.txt b/ui/raidboss/data/06-ew/dungeon/mount_rokkon.txt index 75bf378e24..e09ee63857 100644 --- a/ui/raidboss/data/06-ew/dungeon/mount_rokkon.txt +++ b/ui/raidboss/data/06-ew/dungeon/mount_rokkon.txt @@ -12,108 +12,108 @@ hideall "--sync--" # -ii 838A 8391 8382 # Last Glimpse will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10DC:/ window 10000,0 -1011.6 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ -1021.6 "Art of the Windblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ -1030.7 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -1035.8 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -1040.1 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10DC" } window 10000,0 +1011.6 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } +1021.6 "Art of the Windblossom" Ability { id: "8369", source: "Yozakura the Fleeting" } +1030.7 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +1035.8 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +1040.1 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } # TODO: is this always wind? -#1040.3 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#1042.3 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -1049.5 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -1052.7 "Seal of the Blossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -1059.7 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +#1040.3 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#1042.3 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +1049.5 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +1052.7 "Seal of the Blossom" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +1059.7 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } # -> rain path -1060.9 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:837E:/ window 50,50 jump 1360.9 -1065.9 "Bunshin?" #sync / 1[56]:[^:]*:Yozakura the Fleeting:837E:/ +1060.9 "--sync--" StartsUsing { id: "837E", source: "Yozakura the Fleeting" } window 50,50 jump 1360.9 +1065.9 "Bunshin?" #Ability { id: "837E", source: "Yozakura the Fleeting" } # -> wind path -1060.8 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:838F:/ window 50,50 jump 1660.8 -1070.1 "Windblossom Whirl?" #sync / 1[56]:[^:]*:Yozakura the Fleeting:8390:/ +1060.8 "--sync--" StartsUsing { id: "838F", source: "Yozakura the Fleeting" } window 50,50 jump 1660.8 +1070.1 "Windblossom Whirl?" #Ability { id: "8390", source: "Yozakura the Fleeting" } # Rain path -1359.7 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -1360.9 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:837E:/ -1365.9 "Bunshin" sync / 1[56]:[^:]*:Yozakura the Fleeting:837E:/ -1375.0 "Shadowflight (cast)" sync / 1[56]:[^:]*:Yozakura the Fleeting:837F:/ -1380.0 "Shadowflight" sync / 1[56]:[^:]*:Mirrored Yozakura:8380:/ -1385.2 "Art of the Fireblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ - -1394.3 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -1399.4 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -1403.5 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#1103.7 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#1105.7 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#1107.7 "Seal Marker 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#1109.7 "Seal Marker 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -1416.9 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -1420.1 "Seal of the Blossom 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -1425.1 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -1428.1 "Seal of the Blossom 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -1437.2 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -1443.4 "Bunshin" sync / 1[56]:[^:]*:Yozakura the Fleeting:837E:/ -1451.5 "Mudrain" sync / 1[56]:[^:]*:Yozakura the Fleeting:8389:/ -1456.7 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:838B:/ -1460.9 "Icebloom 1" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838C:/ -1462.9 "Icebloom 2" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838C:/ -1464.8 "Mud Pie (cast)" sync / 1[56]:[^:]*:Yozakura the Fleeting:838D:/ -1464.9 "Icebloom 3" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838C:/ -1471.9 "Mud Pie" #sync / 1[56]:[^:]*:Mud Bubble:838E:/ -1472.7 "Shadowflight (cast)" sync / 1[56]:[^:]*:Yozakura the Fleeting:837F:/ -1477.7 "Shadowflight" sync / 1[56]:[^:]*:Mirrored Yozakura:8380:/ -1484.9 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ -1493.1 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ - -1503.3 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ window 20,20 forcejump 1394.3 +1359.7 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +1360.9 "--sync--" StartsUsing { id: "837E", source: "Yozakura the Fleeting" } +1365.9 "Bunshin" Ability { id: "837E", source: "Yozakura the Fleeting" } +1375.0 "Shadowflight (cast)" Ability { id: "837F", source: "Yozakura the Fleeting" } +1380.0 "Shadowflight" Ability { id: "8380", source: "Mirrored Yozakura" } +1385.2 "Art of the Fireblossom" Ability { id: "8368", source: "Yozakura the Fleeting" } + +1394.3 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +1399.4 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +1403.5 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#1103.7 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#1105.7 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#1107.7 "Seal Marker 3" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#1109.7 "Seal Marker 4" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +1416.9 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +1420.1 "Seal of the Blossom 1" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +1425.1 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +1428.1 "Seal of the Blossom 2" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +1437.2 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +1443.4 "Bunshin" Ability { id: "837E", source: "Yozakura the Fleeting" } +1451.5 "Mudrain" Ability { id: "8389", source: "Yozakura the Fleeting" } +1456.7 "--sync--" Ability { id: "838B", source: "Yozakura the Fleeting" } +1460.9 "Icebloom 1" #Ability { id: "838C", source: "Yozakura the Fleeting" } +1462.9 "Icebloom 2" #Ability { id: "838C", source: "Yozakura the Fleeting" } +1464.8 "Mud Pie (cast)" Ability { id: "838D", source: "Yozakura the Fleeting" } +1464.9 "Icebloom 3" #Ability { id: "838C", source: "Yozakura the Fleeting" } +1471.9 "Mud Pie" #Ability { id: "838E", source: "Mud Bubble" } +1472.7 "Shadowflight (cast)" Ability { id: "837F", source: "Yozakura the Fleeting" } +1477.7 "Shadowflight" Ability { id: "8380", source: "Mirrored Yozakura" } +1484.9 "Kuge Rantsui" Ability { id: "83AA", source: "Yozakura the Fleeting" } +1493.1 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } + +1503.3 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } window 20,20 forcejump 1394.3 # Wind path -1659.7 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -1660.8 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:838F:/ -1663.8 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:838F:/ -1670.1 "Windblossom Whirl" sync / 1[56]:[^:]*:Yozakura the Fleeting:8390:/ -1670.1 "Levinblossom Strike" sync / 1[56]:[^:]*:Yozakura the Fleeting:8392:/ -1675.2 "Windblossom Whirl" sync / 1[56]:[^:]*:Yozakura the Fleeting:86F0:/ -1675.2 "Levinblossom Strike" sync / 1[56]:[^:]*:Yozakura the Fleeting:8392:/ -1680.2 "Windblossom Whirl" sync / 1[56]:[^:]*:Yozakura the Fleeting:86F0:/ -1680.2 "Levinblossom Strike" sync / 1[56]:[^:]*:Yozakura the Fleeting:8392:/ -1685.2 "Windblossom Whirl" sync / 1[56]:[^:]*:Yozakura the Fleeting:86F0:/ -1685.2 "Levinblossom Strike" sync / 1[56]:[^:]*:Yozakura the Fleeting:8392:/ -1687.2 "Drifting Petals" sync / 1[56]:[^:]*:Yozakura the Fleeting:8393:/ -1693.3 "Windblossom Whirl" sync / 1[56]:[^:]*:Yozakura the Fleeting:8390:/ -1693.3 "Levinblossom Strike" sync / 1[56]:[^:]*:Yozakura the Fleeting:8392:/ -1696.3 "Art of the Fireblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ -1705.4 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -1710.5 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -1714.8 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#1713.9 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#1715.9 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#1717.9 "Seal Marker 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#1719.9 "Seal Marker 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -1728.2 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -1731.4 "Seal of the Blossom 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -1736.4 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -1739.4 "Seal of the Blossom 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ - -1748.6 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -#1752.8 "Season Indicator 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:838[34]:/ -#1754.9 "Season Indicator 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:838[34]:/ -#1757.0 "Season Indicator 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:838[34]:/ -#1759.1 "Season Indicator 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:838[34]:/ -1759.5 "Seasons of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8381:/ -1760.4 "Season of Element 1" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838[5678]:/ -1762.5 "Season of Element 2" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838[5678]:/ -1764.6 "Season of Element 3" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838[5678]:/ -1766.7 "Season of Element 4" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838[5678]:/ -1776.0 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ -1784.2 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ - -1789.3 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -1790.5 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:838F:/ -1793.5 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:838F:/ window 30,30 forcejump 1663.8 +1659.7 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +1660.8 "--sync--" StartsUsing { id: "838F", source: "Yozakura the Fleeting" } +1663.8 "--sync--" Ability { id: "838F", source: "Yozakura the Fleeting" } +1670.1 "Windblossom Whirl" Ability { id: "8390", source: "Yozakura the Fleeting" } +1670.1 "Levinblossom Strike" Ability { id: "8392", source: "Yozakura the Fleeting" } +1675.2 "Windblossom Whirl" Ability { id: "86F0", source: "Yozakura the Fleeting" } +1675.2 "Levinblossom Strike" Ability { id: "8392", source: "Yozakura the Fleeting" } +1680.2 "Windblossom Whirl" Ability { id: "86F0", source: "Yozakura the Fleeting" } +1680.2 "Levinblossom Strike" Ability { id: "8392", source: "Yozakura the Fleeting" } +1685.2 "Windblossom Whirl" Ability { id: "86F0", source: "Yozakura the Fleeting" } +1685.2 "Levinblossom Strike" Ability { id: "8392", source: "Yozakura the Fleeting" } +1687.2 "Drifting Petals" Ability { id: "8393", source: "Yozakura the Fleeting" } +1693.3 "Windblossom Whirl" Ability { id: "8390", source: "Yozakura the Fleeting" } +1693.3 "Levinblossom Strike" Ability { id: "8392", source: "Yozakura the Fleeting" } +1696.3 "Art of the Fireblossom" Ability { id: "8368", source: "Yozakura the Fleeting" } +1705.4 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +1710.5 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +1714.8 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#1713.9 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#1715.9 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#1717.9 "Seal Marker 3" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#1719.9 "Seal Marker 4" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +1728.2 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +1731.4 "Seal of the Blossom 1" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +1736.4 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +1739.4 "Seal of the Blossom 2" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } + +1748.6 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +#1752.8 "Season Indicator 1" Ability { id: "838[34]", source: "Yozakura the Fleeting" } +#1754.9 "Season Indicator 2" Ability { id: "838[34]", source: "Yozakura the Fleeting" } +#1757.0 "Season Indicator 3" Ability { id: "838[34]", source: "Yozakura the Fleeting" } +#1759.1 "Season Indicator 4" Ability { id: "838[34]", source: "Yozakura the Fleeting" } +1759.5 "Seasons of the Fleeting" Ability { id: "8381", source: "Yozakura the Fleeting" } +1760.4 "Season of Element 1" #Ability { id: "838[5678]", source: "Yozakura the Fleeting" } +1762.5 "Season of Element 2" #Ability { id: "838[5678]", source: "Yozakura the Fleeting" } +1764.6 "Season of Element 3" #Ability { id: "838[5678]", source: "Yozakura the Fleeting" } +1766.7 "Season of Element 4" #Ability { id: "838[5678]", source: "Yozakura the Fleeting" } +1776.0 "Kuge Rantsui" Ability { id: "83AA", source: "Yozakura the Fleeting" } +1784.2 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } + +1789.3 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +1790.5 "--sync--" StartsUsing { id: "838F", source: "Yozakura the Fleeting" } +1793.5 "--sync--" Ability { id: "838F", source: "Yozakura the Fleeting" } window 30,30 forcejump 1663.8 # YOZAKURA ABILITIES (ALL PATHS) # 1961 attack @@ -170,199 +170,199 @@ hideall "--sync--" # -ii 8597 86D2 878A 85A0 859A 859E 871C 85A4 85A7 # Hall of the Unseen will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10DF:/ window 10000,0 -2011.9 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ -2022.1 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2028.5 "Iai-kasumi-giri" sync / 1[56]:[^:]*:Moko the Restless:8587:/ -2035.6 "Iai-kasumi-giri" sync / 1[56]:[^:]*:Moko the Restless:858[98A]:/ -2048.7 "Iai-kasumi-giri" sync / 1[56]:[^:]*:Moko the Restless:858[98A]:/ -2056.8 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -2071.8 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:8594:/ -2074.9 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -2083.6 "Spearman's Orders" sync / 1[56]:[^:]*:Moko the Restless:8595:/ -2083.6 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -2095.7 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -2103.1 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -2118.1 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:8594:/ -2124.2 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ -2131.4 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2143.5 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2147.1 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -2160.2 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2163.8 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10DF" } window 10000,0 +2011.9 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } +2022.1 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2028.5 "Iai-kasumi-giri" Ability { id: "8587", source: "Moko the Restless" } +2035.6 "Iai-kasumi-giri" Ability { id: "858[98A]", source: "Moko the Restless" } +2048.7 "Iai-kasumi-giri" Ability { id: "858[98A]", source: "Moko the Restless" } +2056.8 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +2071.8 "Iron Rain" Ability { id: "8594", source: "Ashigaru Kyuhei" } +2074.9 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +2083.6 "Spearman's Orders" Ability { id: "8595", source: "Moko the Restless" } +2083.6 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +2095.7 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +2103.1 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +2118.1 "Iron Rain" Ability { id: "8594", source: "Ashigaru Kyuhei" } +2124.2 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } +2131.4 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2143.5 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2147.1 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +2160.2 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2163.8 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } # => path 01 -2169.0 "--sync--" sync / 14:[^:]*:Moko the Restless:85A8:/ window 50,50 jump 2269.0 -2172.0 "Untempered Sword?" #sync / 1[56]:[^:]*:Moko the Restless:85A8:/ +2169.0 "--sync--" StartsUsing { id: "85A8", source: "Moko the Restless" } window 50,50 jump 2269.0 +2172.0 "Untempered Sword?" #Ability { id: "85A8", source: "Moko the Restless" } # => path 02 -2170.5 "--sync--" sync / 14:[^:]*:Moko the Restless:85AB:/ window 50,50 jump 2570.5 -2173.5 "Moonless Night?" #sync / 1[56]:[^:]*:Moko the Restless:85AB:/ +2170.5 "--sync--" StartsUsing { id: "85AB", source: "Moko the Restless" } window 50,50 jump 2570.5 +2173.5 "Moonless Night?" #Ability { id: "85AB", source: "Moko the Restless" } # => path 03 -2169.0 "--sync--" sync / 14:[^:]*:Moko the Restless:85A1:/ window 50,50 jump 2869.0 -2172.0 "Tengu-yobi?" #sync / 1[56]:[^:]*:Moko the Restless:85A1:/ +2169.0 "--sync--" StartsUsing { id: "85A1", source: "Moko the Restless" } window 50,50 jump 2869.0 +2172.0 "Tengu-yobi?" #Ability { id: "85A1", source: "Moko the Restless" } # => path 04 -2169.0 "--sync--" sync / 14:[^:]*:Moko the Restless:85A5:/ window 50,50 jump 3169.0 -2172.0 "Spiritspark?" #sync / 1[56]:[^:]*:Moko the Restless:85A5:/ +2169.0 "--sync--" StartsUsing { id: "85A5", source: "Moko the Restless" } window 50,50 jump 3169.0 +2172.0 "Spiritspark?" #Ability { id: "85A5", source: "Moko the Restless" } # path 01 -2231.4 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2243.5 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2247.1 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -2260.2 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2263.8 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ - -2269.0 "--sync--" sync / 14:[^:]*:Moko the Restless:85A8:/ -2272.0 "Untempered Sword" sync / 1[56]:[^:]*:Moko the Restless:85A8:/ -2276.0 "Unsheathing 1" sync / 1[56]:[^:]*:Ancient Katana:85A9:/ -2280.0 "Unsheathing 2" sync / 1[56]:[^:]*:Ancient Katana:85A9:/ -2282.2 "Veil Sever 1" sync / 1[56]:[^:]*:Ancient Katana:85AA:/ -2284.1 "Unsheathing 3" sync / 1[56]:[^:]*:Ancient Katana:85A9:/ -2286.3 "Veil Sever 2" sync / 1[56]:[^:]*:Ancient Katana:85AA:/ -2288.2 "Unsheathing 4" sync / 1[56]:[^:]*:Ancient Katana:85A9:/ -2290.4 "Veil Sever 3" sync / 1[56]:[^:]*:Ancient Katana:85AA:/ -2294.4 "Veil Sever 4" sync / 1[56]:[^:]*:Ancient Katana:85AA:/ - -2298.1 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2304.4 "Iai-kasumi-giri" sync / 1[56]:[^:]*:Moko the Restless:858[789A]:/ -2311.5 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ - -2317.7 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2324.1 "Azure Auspice" sync / 1[56]:[^:]*:Moko the Restless:859C:/ -2329.7 "Boundless Azure" sync / 1[56]:[^:]*:Moko the Restless:859D:/ -2342.4 "Upwell 1" sync / 1[56]:[^:]*:Moko the Restless:859F:/ duration 10 -2348.3 "Upwell 2" sync / 1[56]:[^:]*:Moko the Restless:859F:/ duration 10 -2356.3 "Upwell 3" sync / 1[56]:[^:]*:Moko the Restless:859F:/ duration 10 -2366.7 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2378.8 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2382.4 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -2389.5 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ -2398.6 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -2407.3 "Spearman's Orders" sync / 1[56]:[^:]*:Moko the Restless:8595:/ -2407.3 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -2418.8 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -2426.2 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -2441.2 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:8594:/ - -2448.4 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ window 30,30 forcejump 2231.4 +2231.4 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2243.5 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2247.1 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +2260.2 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2263.8 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } + +2269.0 "--sync--" StartsUsing { id: "85A8", source: "Moko the Restless" } +2272.0 "Untempered Sword" Ability { id: "85A8", source: "Moko the Restless" } +2276.0 "Unsheathing 1" Ability { id: "85A9", source: "Ancient Katana" } +2280.0 "Unsheathing 2" Ability { id: "85A9", source: "Ancient Katana" } +2282.2 "Veil Sever 1" Ability { id: "85AA", source: "Ancient Katana" } +2284.1 "Unsheathing 3" Ability { id: "85A9", source: "Ancient Katana" } +2286.3 "Veil Sever 2" Ability { id: "85AA", source: "Ancient Katana" } +2288.2 "Unsheathing 4" Ability { id: "85A9", source: "Ancient Katana" } +2290.4 "Veil Sever 3" Ability { id: "85AA", source: "Ancient Katana" } +2294.4 "Veil Sever 4" Ability { id: "85AA", source: "Ancient Katana" } + +2298.1 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2304.4 "Iai-kasumi-giri" Ability { id: "858[789A]", source: "Moko the Restless" } +2311.5 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } + +2317.7 "--sync--" Ability { id: "85AF", source: "Moko the Restless" } +2324.1 "Azure Auspice" Ability { id: "859C", source: "Moko the Restless" } +2329.7 "Boundless Azure" Ability { id: "859D", source: "Moko the Restless" } +2342.4 "Upwell 1" Ability { id: "859F", source: "Moko the Restless" } duration 10 +2348.3 "Upwell 2" Ability { id: "859F", source: "Moko the Restless" } duration 10 +2356.3 "Upwell 3" Ability { id: "859F", source: "Moko the Restless" } duration 10 +2366.7 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2378.8 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2382.4 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +2389.5 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } +2398.6 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +2407.3 "Spearman's Orders" Ability { id: "8595", source: "Moko the Restless" } +2407.3 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +2418.8 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +2426.2 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +2441.2 "Iron Rain" Ability { id: "8594", source: "Ashigaru Kyuhei" } + +2448.4 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } window 30,30 forcejump 2231.4 # path 02 -2531.4 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2543.5 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2547.1 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -2560.2 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2563.8 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ - -2569.1 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2570.5 "--sync--" sync / 14:[^:]*:Moko the Restless:85AB:/ -2573.5 "Moonless Night" sync / 1[56]:[^:]*:Moko the Restless:85AB:/ -2581.7 "Clearout 1" sync / 1[56]:[^:]*:Oni's Claw:85AC:/ -2590.9 "Clearout 2" sync / 1[56]:[^:]*:Oni's Claw:85AC:/ - -2595.7 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2601.9 "Iai-kasumi-giri" sync / 1[56]:[^:]*:Moko the Restless:858[789A]:/ -2609.0 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ - -2615.2 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2621.6 "Scarlet Auspice" sync / 1[56]:[^:]*:Moko the Restless:8598:/ -2627.2 "Boundless Scarlet" sync / 1[56]:[^:]*:Moko the Restless:8599:/ -2641.9 "Explosion 1" sync / 1[56]:[^:]*:Moko the Restless:859B:/ -2646.9 "Explosion 2" sync / 1[56]:[^:]*:Moko the Restless:859B:/ -2651.9 "Explosion 3" sync / 1[56]:[^:]*:Moko the Restless:859B:/ -2652.3 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2664.5 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2668.1 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -2675.2 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ -2684.3 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -2693.0 "Spearman's Orders" sync / 1[56]:[^:]*:Moko the Restless:8595:/ -2693.0 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -2704.7 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -2712.3 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -2727.3 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:8594:/ - -2734.5 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ window 30,30 forcejump 2531.4 +2531.4 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2543.5 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2547.1 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +2560.2 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2563.8 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } + +2569.1 "--sync--" Ability { id: "85AF", source: "Moko the Restless" } +2570.5 "--sync--" StartsUsing { id: "85AB", source: "Moko the Restless" } +2573.5 "Moonless Night" Ability { id: "85AB", source: "Moko the Restless" } +2581.7 "Clearout 1" Ability { id: "85AC", source: "Oni's Claw" } +2590.9 "Clearout 2" Ability { id: "85AC", source: "Oni's Claw" } + +2595.7 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2601.9 "Iai-kasumi-giri" Ability { id: "858[789A]", source: "Moko the Restless" } +2609.0 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } + +2615.2 "--sync--" Ability { id: "85AF", source: "Moko the Restless" } +2621.6 "Scarlet Auspice" Ability { id: "8598", source: "Moko the Restless" } +2627.2 "Boundless Scarlet" Ability { id: "8599", source: "Moko the Restless" } +2641.9 "Explosion 1" Ability { id: "859B", source: "Moko the Restless" } +2646.9 "Explosion 2" Ability { id: "859B", source: "Moko the Restless" } +2651.9 "Explosion 3" Ability { id: "859B", source: "Moko the Restless" } +2652.3 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2664.5 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2668.1 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +2675.2 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } +2684.3 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +2693.0 "Spearman's Orders" Ability { id: "8595", source: "Moko the Restless" } +2693.0 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +2704.7 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +2712.3 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +2727.3 "Iron Rain" Ability { id: "8594", source: "Ashigaru Kyuhei" } + +2734.5 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } window 30,30 forcejump 2531.4 # path 03 -2831.4 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2843.5 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2847.1 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -2860.2 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2863.8 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ - -2869.0 "--sync--" sync / 14:[^:]*:Moko the Restless:85A1:/ -2872.0 "Tengu-yobi" sync / 1[56]:[^:]*:Moko the Restless:85A1:/ -2884.0 "Yama-kagura" sync / 1[56]:[^:]*:Ill-come Tengu:85A2:/ - -2889.1 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2895.4 "Iai-kasumi-giri" sync / 1[56]:[^:]*:Moko the Restless:858[789A]:/ - -2908.6 "Yama-kagura" sync / 1[56]:[^:]*:Ill-come Tengu:85A2:/ -2910.6 "Ghastly Grasp" sync / 1[56]:[^:]*:Moko the Restless:85A3:/ -2918.6 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ -2924.7 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2931.1 "Azure Auspice" sync / 1[56]:[^:]*:Moko the Restless:859C:/ -2936.7 "Boundless Azure" sync / 1[56]:[^:]*:Moko the Restless:859D:/ -2949.4 "Upwell 1" sync / 1[56]:[^:]*:Moko the Restless:859F:/ duration 10 -2955.4 "Upwell 2" sync / 1[56]:[^:]*:Moko the Restless:859F:/ duration 10 -2963.4 "Upwell 3" sync / 1[56]:[^:]*:Moko the Restless:859F:/ duration 10 - -2973.8 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -2985.9 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -2989.5 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -2996.6 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ - -3005.7 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -3014.3 "Spearman's Orders" sync / 1[56]:[^:]*:Moko the Restless:8595:/ -3014.3 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -3026.0 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -3033.4 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -3048.4 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:8594:/ - -3055.6 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ window 30,30 forcejump 2831.4 +2831.4 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2843.5 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2847.1 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +2860.2 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2863.8 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } + +2869.0 "--sync--" StartsUsing { id: "85A1", source: "Moko the Restless" } +2872.0 "Tengu-yobi" Ability { id: "85A1", source: "Moko the Restless" } +2884.0 "Yama-kagura" Ability { id: "85A2", source: "Ill-come Tengu" } + +2889.1 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2895.4 "Iai-kasumi-giri" Ability { id: "858[789A]", source: "Moko the Restless" } + +2908.6 "Yama-kagura" Ability { id: "85A2", source: "Ill-come Tengu" } +2910.6 "Ghastly Grasp" Ability { id: "85A3", source: "Moko the Restless" } +2918.6 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } +2924.7 "--sync--" Ability { id: "85AF", source: "Moko the Restless" } +2931.1 "Azure Auspice" Ability { id: "859C", source: "Moko the Restless" } +2936.7 "Boundless Azure" Ability { id: "859D", source: "Moko the Restless" } +2949.4 "Upwell 1" Ability { id: "859F", source: "Moko the Restless" } duration 10 +2955.4 "Upwell 2" Ability { id: "859F", source: "Moko the Restless" } duration 10 +2963.4 "Upwell 3" Ability { id: "859F", source: "Moko the Restless" } duration 10 + +2973.8 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +2985.9 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +2989.5 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +2996.6 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } + +3005.7 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +3014.3 "Spearman's Orders" Ability { id: "8595", source: "Moko the Restless" } +3014.3 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +3026.0 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +3033.4 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +3048.4 "Iron Rain" Ability { id: "8594", source: "Ashigaru Kyuhei" } + +3055.6 "--sync--" Ability { id: "85AF", source: "Moko the Restless" } window 30,30 forcejump 2831.4 # path 04 -3131.4 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3143.5 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -3147.1 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -3160.2 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -3163.8 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ - -3169.0 "--sync--" sync / 14:[^:]*:Moko the Restless:85A5:/ -3172.0 "Spiritspark" sync / 1[56]:[^:]*:Moko the Restless:85A5:/ -3177.0 "Spiritflame 1" sync / 1[56]:[^:]*:Moko the Restless:85A6:/ -3182.8 "Spiritflame 2" sync / 1[56]:[^:]*:Moko the Restless:85A6:/ -3188.6 "Spiritflame 3" sync / 1[56]:[^:]*:Moko the Restless:85A6:/ -3194.3 "Spiritflame 4" sync / 1[56]:[^:]*:Moko the Restless:85A6:/ - -3205.1 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3211.4 "Iai-kasumi-giri" sync / 1[56]:[^:]*:Moko the Restless:858[789A]:/ -3218.5 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ - -3224.7 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3230.9 "Scarlet Auspice" sync / 1[56]:[^:]*:Moko the Restless:8598:/ -3236.5 "Boundless Scarlet" sync / 1[56]:[^:]*:Moko the Restless:8599:/ -3251.3 "Explosion 1" sync / 1[56]:[^:]*:Moko the Restless:859B:/ -3256.3 "Explosion 2" sync / 1[56]:[^:]*:Moko the Restless:859B:/ -3261.3 "Explosion 3" sync / 1[56]:[^:]*:Moko the Restless:859B:/ - -3261.7 "--middle--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ -3273.9 "Double Kasumi-giri 1" sync / 1[56]:[^:]*:Moko the Restless:858[BCDE]:/ -3277.5 "Double Kasumi-giri 2" sync / 1[56]:[^:]*:Moko the Restless:(858F|859[012]):/ -3284.6 "Kenki Release" sync / 1[56]:[^:]*:Moko the Restless:85AD:/ -3293.7 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -3302.4 "Spearman's Orders" sync / 1[56]:[^:]*:Moko the Restless:8595:/ -3302.4 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -3314.1 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:8596:/ -3321.7 "Soldiers of Death" sync / 1[56]:[^:]*:Moko the Restless:8593:/ -3336.7 "Iron Rain" sync / 1[56]:[^:]*:Ashigaru Kyuhei:8594:/ - -3343.9 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ window 30,30 forcejump 3131.4 +3131.4 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3143.5 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +3147.1 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +3160.2 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +3163.8 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } + +3169.0 "--sync--" StartsUsing { id: "85A5", source: "Moko the Restless" } +3172.0 "Spiritspark" Ability { id: "85A5", source: "Moko the Restless" } +3177.0 "Spiritflame 1" Ability { id: "85A6", source: "Moko the Restless" } +3182.8 "Spiritflame 2" Ability { id: "85A6", source: "Moko the Restless" } +3188.6 "Spiritflame 3" Ability { id: "85A6", source: "Moko the Restless" } +3194.3 "Spiritflame 4" Ability { id: "85A6", source: "Moko the Restless" } + +3205.1 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3211.4 "Iai-kasumi-giri" Ability { id: "858[789A]", source: "Moko the Restless" } +3218.5 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } + +3224.7 "--sync--" Ability { id: "85AF", source: "Moko the Restless" } +3230.9 "Scarlet Auspice" Ability { id: "8598", source: "Moko the Restless" } +3236.5 "Boundless Scarlet" Ability { id: "8599", source: "Moko the Restless" } +3251.3 "Explosion 1" Ability { id: "859B", source: "Moko the Restless" } +3256.3 "Explosion 2" Ability { id: "859B", source: "Moko the Restless" } +3261.3 "Explosion 3" Ability { id: "859B", source: "Moko the Restless" } + +3261.7 "--middle--" Ability { id: "85AF", source: "Moko the Restless" } +3273.9 "Double Kasumi-giri 1" Ability { id: "858[BCDE]", source: "Moko the Restless" } +3277.5 "Double Kasumi-giri 2" Ability { id: ["858F", "859[012]"], source: "Moko the Restless" } +3284.6 "Kenki Release" Ability { id: "85AD", source: "Moko the Restless" } +3293.7 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +3302.4 "Spearman's Orders" Ability { id: "8595", source: "Moko the Restless" } +3302.4 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +3314.1 "--sync--" Ability { id: "8596", source: "Moko the Restless" } +3321.7 "Soldiers of Death" Ability { id: "8593", source: "Moko the Restless" } +3336.7 "Iron Rain" Ability { id: "8594", source: "Ashigaru Kyuhei" } + +3343.9 "--sync--" Ability { id: "85AF", source: "Moko the Restless" } window 30,30 forcejump 3131.4 # MOKO ABILITIES @@ -421,98 +421,98 @@ hideall "--sync--" # -ii 8396 8399 839A 839D 839F # Hall of Temptation will be sealed off -4000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10DD:/ window 10000,0 -4011.6 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ +4000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10DD" } window 10000,0 +4011.6 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } # -> door -4016.7 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8394:/ window 20,20 jump 4116.7 -4019.7 "Tatami Trap?" #sync / 1[56]:[^:]*:Yozakura the Fleeting:8394:/ +4016.7 "--sync--" StartsUsing { id: "8394", source: "Yozakura the Fleeting" } window 20,20 jump 4116.7 +4019.7 "Tatami Trap?" #Ability { id: "8394", source: "Yozakura the Fleeting" } # -> rope -4015.7 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8369:/ window 20,20 jump 4315.7 -4020.7 "Art of the Windblossom?" #sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ +4015.7 "--sync--" StartsUsing { id: "8369", source: "Yozakura the Fleeting" } window 20,20 jump 4315.7 +4020.7 "Art of the Windblossom?" #Ability { id: "8369", source: "Yozakura the Fleeting" } # door -4116.7 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8394:/ -4119.7 "Tatami Trap" sync / 1[56]:[^:]*:Yozakura the Fleeting:8394:/ -4129.8 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ -4135.9 "Tatami-gaeshi" sync / 1[56]:[^:]*:Yozakura the Fleeting:8395:/ -4146.2 "Art of the Windblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ - -4155.3 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -4160.4 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -4164.5 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#4164.7 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#4166.7 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -4173.9 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -4176.9 "Seal of the Blossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ - -4184.0 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -4188.2 "Tatami Trap" sync / 1[56]:[^:]*:Yozakura the Fleeting:8394:/ -4195.4 "Levinblossom Lance 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:839[78]:/ duration 5 -4207.7 "Levinblossom Lance 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:839[78]:/ duration 5 -4217.7 "Tatami-gaeshi" sync / 1[56]:[^:]*:Yozakura the Fleeting:8395:/ - -4224.9 "Art of the Fireblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ -4234.0 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -4239.1 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -4243.2 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#4243.2 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#4245.2 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#4247.2 "Seal Marker 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#4249.2 "Seal Marker 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -4256.8 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -4259.9 "Seal of the Blossom 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -4264.9 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -4267.9 "Seal of the Blossom 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -4280.9 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ -4289.1 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ - -4293.2 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -4297.3 "Tatami Trap" sync / 1[56]:[^:]*:Yozakura the Fleeting:8394:/ window 30,30 forcejump 4188.2 +4116.7 "--sync--" StartsUsing { id: "8394", source: "Yozakura the Fleeting" } +4119.7 "Tatami Trap" Ability { id: "8394", source: "Yozakura the Fleeting" } +4129.8 "Kuge Rantsui" Ability { id: "83AA", source: "Yozakura the Fleeting" } +4135.9 "Tatami-gaeshi" Ability { id: "8395", source: "Yozakura the Fleeting" } +4146.2 "Art of the Windblossom" Ability { id: "8369", source: "Yozakura the Fleeting" } + +4155.3 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +4160.4 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +4164.5 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#4164.7 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#4166.7 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +4173.9 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +4176.9 "Seal of the Blossom" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } + +4184.0 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +4188.2 "Tatami Trap" Ability { id: "8394", source: "Yozakura the Fleeting" } +4195.4 "Levinblossom Lance 1" Ability { id: "839[78]", source: "Yozakura the Fleeting" } duration 5 +4207.7 "Levinblossom Lance 2" Ability { id: "839[78]", source: "Yozakura the Fleeting" } duration 5 +4217.7 "Tatami-gaeshi" Ability { id: "8395", source: "Yozakura the Fleeting" } + +4224.9 "Art of the Fireblossom" Ability { id: "8368", source: "Yozakura the Fleeting" } +4234.0 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +4239.1 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +4243.2 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#4243.2 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#4245.2 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#4247.2 "Seal Marker 3" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#4249.2 "Seal Marker 4" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +4256.8 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +4259.9 "Seal of the Blossom 1" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +4264.9 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +4267.9 "Seal of the Blossom 2" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +4280.9 "Kuge Rantsui" Ability { id: "83AA", source: "Yozakura the Fleeting" } +4289.1 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } + +4293.2 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +4297.3 "Tatami Trap" Ability { id: "8394", source: "Yozakura the Fleeting" } window 30,30 forcejump 4188.2 # rope -4315.7 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8369:/ -4320.7 "Art of the Windblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ -4329.8 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ - -4334.9 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -4339.1 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#4039.3 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#4041.3 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -4348.6 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -4351.8 "Seal of the Blossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ - -4358.8 "--north--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -4363.1 "Silent Whistle" sync / 1[56]:[^:]*:Yozakura the Fleeting:839B:/ -4373.2 "Donden-gaeshi" sync / 1[56]:[^:]*:Yozakura the Fleeting:839C:/ -4384.5 "Art of the Fluff" sync / 1[56]:[^:]*:Shiromaru:839E:/ -4386.5 "Fireblossom Flare" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A0:/ -4391.6 "Fireblossom Flare" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A0:/ -4393.5 "Donden-gaeshi" sync / 1[56]:[^:]*:Yozakura the Fleeting:839C:/ -4404.8 "Art of the Fluff" sync / 1[56]:[^:]*:Shiromaru:839E:/ -4406.8 "Fireblossom Flare" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A0:/ -4411.9 "Fireblossom Flare" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A0:/ -4417.8 "Art of the Fireblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ - -4427.0 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -4432.1 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -4436.4 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#4436.6 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#4438.6 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#4440.6 "Seal Marker 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#4442.6 "Seal Marker 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -4450.1 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -4453.2 "Seal of the Blossom 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -4458.2 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -4461.4 "Seal of the Blossom 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -4474.3 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ -4482.5 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ - -4486.6 "--north--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -4490.9 "Silent Whistle" sync / 1[56]:[^:]*:Yozakura the Fleeting:839B:/ window 50,50 jump 4363.1 +4315.7 "--sync--" StartsUsing { id: "8369", source: "Yozakura the Fleeting" } +4320.7 "Art of the Windblossom" Ability { id: "8369", source: "Yozakura the Fleeting" } +4329.8 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } + +4334.9 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +4339.1 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#4039.3 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#4041.3 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +4348.6 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +4351.8 "Seal of the Blossom" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } + +4358.8 "--north--" Ability { id: "8612", source: "Yozakura the Fleeting" } +4363.1 "Silent Whistle" Ability { id: "839B", source: "Yozakura the Fleeting" } +4373.2 "Donden-gaeshi" Ability { id: "839C", source: "Yozakura the Fleeting" } +4384.5 "Art of the Fluff" Ability { id: "839E", source: "Shiromaru" } +4386.5 "Fireblossom Flare" Ability { id: "83A0", source: "Yozakura the Fleeting" } +4391.6 "Fireblossom Flare" Ability { id: "83A0", source: "Yozakura the Fleeting" } +4393.5 "Donden-gaeshi" Ability { id: "839C", source: "Yozakura the Fleeting" } +4404.8 "Art of the Fluff" Ability { id: "839E", source: "Shiromaru" } +4406.8 "Fireblossom Flare" Ability { id: "83A0", source: "Yozakura the Fleeting" } +4411.9 "Fireblossom Flare" Ability { id: "83A0", source: "Yozakura the Fleeting" } +4417.8 "Art of the Fireblossom" Ability { id: "8368", source: "Yozakura the Fleeting" } + +4427.0 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +4432.1 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +4436.4 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#4436.6 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#4438.6 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#4440.6 "Seal Marker 3" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#4442.6 "Seal Marker 4" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +4450.1 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +4453.2 "Seal of the Blossom 1" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +4458.2 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +4461.4 "Seal of the Blossom 2" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +4474.3 "Kuge Rantsui" Ability { id: "83AA", source: "Yozakura the Fleeting" } +4482.5 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } + +4486.6 "--north--" Ability { id: "8612", source: "Yozakura the Fleeting" } +4490.9 "Silent Whistle" Ability { id: "839B", source: "Yozakura the Fleeting" } window 50,50 jump 4363.1 # YOZAKURA ABILITIES (MIDDLE PATH) @@ -540,126 +540,126 @@ hideall "--sync--" # -ii 84D4 8501 84EE 84E6 84E5 84E9 84E0 84FF 84F9 84F7 84F4 84F5 # Hall of Becoming will be sealed off -5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10E0:/ window 10000,0 -5012.6 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:8500:/ -5017.6 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8500:/ +5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10E0" } window 10000,0 +5012.6 "--sync--" StartsUsing { id: "8500", source: "Gorai the Uncaged" } +5017.6 "Unenlightenment" Ability { id: "8500", source: "Gorai the Uncaged" } -5027.1 "Flickering Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84D5:/ -5037.4 "Plectrum of Power" sync / 1[56]:[^:]*:Gorai the Uncaged:84D8:/ -5040.1 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:84DA:/ +5027.1 "Flickering Flame" Ability { id: "84D5", source: "Gorai the Uncaged" } +5037.4 "Plectrum of Power" Ability { id: "84D8", source: "Gorai the Uncaged" } +5040.1 "Fire Spread" Ability { id: "84DA", source: "Gorai the Uncaged" } -5047.3 "Flickering Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84D5:/ -5057.6 "Morphic Melody" sync / 1[56]:[^:]*:Gorai the Uncaged:84D9:/ -5060.3 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:84DB:/ +5047.3 "Flickering Flame" Ability { id: "84D5", source: "Gorai the Uncaged" } +5057.6 "Morphic Melody" Ability { id: "84D9", source: "Gorai the Uncaged" } +5060.3 "Fire Spread" Ability { id: "84DB", source: "Gorai the Uncaged" } -5072.6 "Sulphuric Stone" sync / 1[56]:[^:]*:Gorai the Uncaged:84D6:/ -5082.9 "Plectrum of Power" sync / 1[56]:[^:]*:Gorai the Uncaged:84D8:/ -5085.6 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:84DD:/ +5072.6 "Sulphuric Stone" Ability { id: "84D6", source: "Gorai the Uncaged" } +5082.9 "Plectrum of Power" Ability { id: "84D8", source: "Gorai the Uncaged" } +5085.6 "Falling Rock" Ability { id: "84DD", source: "Gorai the Uncaged" } -5092.8 "Sulphuric Stone" sync / 1[56]:[^:]*:Gorai the Uncaged:84D6:/ -5103.1 "Morphic Melody" sync / 1[56]:[^:]*:Gorai the Uncaged:84D9:/ -5105.8 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:84DE:/ +5092.8 "Sulphuric Stone" Ability { id: "84D6", source: "Gorai the Uncaged" } +5103.1 "Morphic Melody" Ability { id: "84D9", source: "Gorai the Uncaged" } +5105.8 "Falling Rock" Ability { id: "84DE", source: "Gorai the Uncaged" } # This is inconsistent among timelines, so don't sync. -5111.1 "--middle--" #sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5111.1 "--middle--" #Ability { id: "84D3", source: "Gorai the Uncaged" } # -> path 05 -5114.3 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84ED:/ window 30,30 jump 5214.3 -5116.8 "Pure Shock?" #sync / 1[56]:[^:]*:Gorai the Uncaged:84ED:/ +5114.3 "--sync--" StartsUsing { id: "84ED", source: "Gorai the Uncaged" } window 30,30 jump 5214.3 +5116.8 "Pure Shock?" #Ability { id: "84ED", source: "Gorai the Uncaged" } # -> path 06 -5112.1 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84F2:/ window 30,30 jump 5312.1 -5115.1 "Thundercall?" sync / 1[56]:[^:]*:Gorai the Uncaged:84F2:/ +5112.1 "--sync--" StartsUsing { id: "84F2", source: "Gorai the Uncaged" } window 30,30 jump 5312.1 +5115.1 "Thundercall?" Ability { id: "84F2", source: "Gorai the Uncaged" } # -> path 07 -5112.1 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84F8:/ window 30,30 jump 5412.1 -5117.1 "Fighting Spirits?" #sync / 1[56]:[^:]*:Gorai the Uncaged:84F8:/ +5112.1 "--sync--" StartsUsing { id: "84F8", source: "Gorai the Uncaged" } window 30,30 jump 5412.1 +5117.1 "Fighting Spirits?" #Ability { id: "84F8", source: "Gorai the Uncaged" } # path 05 -5211.1 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5214.3 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84ED:/ -5216.8 "Pure Shock" sync / 1[56]:[^:]*:Gorai the Uncaged:84ED:/ -5218.5 "--stun--" sync / 1[56]:[^:]*:Gorai the Uncaged:84EF:/ -5220.2 "Wily Wall" sync / 1[56]:[^:]*:Shishu White Baboon:84F0:/ +5211.1 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5214.3 "--sync--" StartsUsing { id: "84ED", source: "Gorai the Uncaged" } +5216.8 "Pure Shock" Ability { id: "84ED", source: "Gorai the Uncaged" } +5218.5 "--stun--" Ability { id: "84EF", source: "Gorai the Uncaged" } +5220.2 "Wily Wall" Ability { id: "84F0", source: "Shishu White Baboon" } 5222.2 "--targetable--" -5228.1 "Impure Purgation 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84E7:/ -5230.1 "Impure Purgation 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84E8:/ -5236.1 "Spike of Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84E4:/ -5245.0 "String Snap 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84EA:/ -5247.0 "String Snap 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84EB:/ -5249.0 "String Snap 3" sync / 1[56]:[^:]*:Gorai the Uncaged:84EC:/ -5252.3 "Self-destruct" sync / 1[56]:[^:]*:Shishu White Baboon:84F1:/ +5228.1 "Impure Purgation 1" Ability { id: "84E7", source: "Gorai the Uncaged" } +5230.1 "Impure Purgation 2" Ability { id: "84E8", source: "Gorai the Uncaged" } +5236.1 "Spike of Flame" Ability { id: "84E4", source: "Gorai the Uncaged" } +5245.0 "String Snap 1" Ability { id: "84EA", source: "Gorai the Uncaged" } +5247.0 "String Snap 2" Ability { id: "84EB", source: "Gorai the Uncaged" } +5249.0 "String Snap 3" Ability { id: "84EC", source: "Gorai the Uncaged" } +5252.3 "Self-destruct" Ability { id: "84F1", source: "Shishu White Baboon" } # -> shared loop -5260.4 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5267.7 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ window 30,30 forcejump 5567.7 +5260.4 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5267.7 "Rousing Reincarnation" Ability { id: "84DF", source: "Gorai the Uncaged" } window 30,30 forcejump 5567.7 # path 06 -5309.8 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5312.1 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84F2:/ -5315.1 "Thundercall" sync / 1[56]:[^:]*:Gorai the Uncaged:84F2:/ -5329.0 "Shock" sync / 1[56]:[^:]*:Ball of Levin:84DC:/ -5335.0 "Humble Hammer" sync / 1[56]:[^:]*:Gorai the Uncaged:84F6:/ duration 8.8 -5346.3 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5351.6 "Thundercall" sync / 1[56]:[^:]*:Gorai the Uncaged:84F2:/ -5359.5 "Humble Hammer" sync / 1[56]:[^:]*:Gorai the Uncaged:84F6:/ duration 8.8 -5376.5 "Shock" sync / 1[56]:[^:]*:Ball of Levin:84F3:/ +5309.8 "--sync--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5312.1 "--sync--" StartsUsing { id: "84F2", source: "Gorai the Uncaged" } +5315.1 "Thundercall" Ability { id: "84F2", source: "Gorai the Uncaged" } +5329.0 "Shock" Ability { id: "84DC", source: "Ball of Levin" } +5335.0 "Humble Hammer" Ability { id: "84F6", source: "Gorai the Uncaged" } duration 8.8 +5346.3 "--sync--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5351.6 "Thundercall" Ability { id: "84F2", source: "Gorai the Uncaged" } +5359.5 "Humble Hammer" Ability { id: "84F6", source: "Gorai the Uncaged" } duration 8.8 +5376.5 "Shock" Ability { id: "84F3", source: "Ball of Levin" } # -> shared loop -5379.9 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5387.2 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ window 30,30 forcejump 5567.7 +5379.9 "--sync--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5387.2 "Rousing Reincarnation" Ability { id: "84DF", source: "Gorai the Uncaged" } window 30,30 forcejump 5567.7 # path 07 -5409.9 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5412.1 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84F8:/ -5417.1 "Fighting Spirits" sync / 1[56]:[^:]*:Gorai the Uncaged:84F8:/ -5426.1 "Worldly Pursuit 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84FB:/ -5429.9 "Worldly Pursuit 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84FC:/ -5433.7 "Worldly Pursuit 3" sync / 1[56]:[^:]*:Gorai the Uncaged:84FC:/ -5437.5 "Worldly Pursuit 4" sync / 1[56]:[^:]*:Gorai the Uncaged:84FC:/ -5441.3 "Worldly Pursuit 5" sync / 1[56]:[^:]*:Gorai the Uncaged:84FC:/ -5447.4 "Biwa Breaker 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84FD:/ -5449.1 "Biwa Breaker 2" #sync / 1[56]:[^:]*:Gorai the Uncaged:86D1:/ -5450.8 "Biwa Breaker 3" #sync / 1[56]:[^:]*:Gorai the Uncaged:86D1:/ -5452.5 "Biwa Breaker 4" #sync / 1[56]:[^:]*:Gorai the Uncaged:86D1:/ -5454.2 "Biwa Breaker 5" #sync / 1[56]:[^:]*:Gorai the Uncaged:86D1:/ +5409.9 "--sync--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5412.1 "--sync--" StartsUsing { id: "84F8", source: "Gorai the Uncaged" } +5417.1 "Fighting Spirits" Ability { id: "84F8", source: "Gorai the Uncaged" } +5426.1 "Worldly Pursuit 1" Ability { id: "84FB", source: "Gorai the Uncaged" } +5429.9 "Worldly Pursuit 2" Ability { id: "84FC", source: "Gorai the Uncaged" } +5433.7 "Worldly Pursuit 3" Ability { id: "84FC", source: "Gorai the Uncaged" } +5437.5 "Worldly Pursuit 4" Ability { id: "84FC", source: "Gorai the Uncaged" } +5441.3 "Worldly Pursuit 5" Ability { id: "84FC", source: "Gorai the Uncaged" } +5447.4 "Biwa Breaker 1" Ability { id: "84FD", source: "Gorai the Uncaged" } +5449.1 "Biwa Breaker 2" #Ability { id: "86D1", source: "Gorai the Uncaged" } +5450.8 "Biwa Breaker 3" #Ability { id: "86D1", source: "Gorai the Uncaged" } +5452.5 "Biwa Breaker 4" #Ability { id: "86D1", source: "Gorai the Uncaged" } +5454.2 "Biwa Breaker 5" #Ability { id: "86D1", source: "Gorai the Uncaged" } # -> shared loop -5461.9 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5469.1 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ window 30,30 forcejump 5567.7 +5461.9 "--sync--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5469.1 "Rousing Reincarnation" Ability { id: "84DF", source: "Gorai the Uncaged" } window 30,30 forcejump 5567.7 # shared loop -5560.4 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5567.7 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ -5574.0 "Malformed Prayer" sync / 1[56]:[^:]*:Gorai the Uncaged:84E1:/ -5585.0 "Burst 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84E2:/ -5586.2 "Impure Purgation 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84E7:/ -5588.2 "Impure Purgation 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84E8:/ -5591.0 "Burst 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84E2:/ -5597.0 "Burst 3" sync / 1[56]:[^:]*:Gorai the Uncaged:84E2:/ -5599.1 "Spike of Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84E4:/ - -5610.9 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8500:/ -5620.2 "Flame and Sulphur" sync / 1[56]:[^:]*:Gorai the Uncaged:84D7:/ -5630.5 "Plectrum of Power/Morphic Melody" sync / 1[56]:[^:]*:Gorai the Uncaged:(84D8|84D9):/ -5633.2 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:(84DD|84DE):/ -5633.2 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:(84DA|84DB):/ -5641.4 "Flame and Sulphur" sync / 1[56]:[^:]*:Gorai the Uncaged:84D7:/ -5651.7 "Morphic Melody/Plectrum of Power" sync / 1[56]:[^:]*:Gorai the Uncaged:(84D9|84D8):/ -5654.4 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:(84DD|84DE):/ -5654.4 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:(84DA|84DB):/ - -5664.5 "Torching Torment" sync / 1[56]:[^:]*:Gorai the Uncaged:84FE:/ -5676.8 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8500:/ -5687.1 "String Snap 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84EA:/ -5689.1 "String Snap 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84EB:/ -5691.1 "String Snap 3" sync / 1[56]:[^:]*:Gorai the Uncaged:84EC:/ -5697.0 "Spike of Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84E4:/ -5708.8 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8500:/ - -5717.2 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ -5724.4 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ window 100,100 forcejump 5567.7 +5560.4 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5567.7 "Rousing Reincarnation" Ability { id: "84DF", source: "Gorai the Uncaged" } +5574.0 "Malformed Prayer" Ability { id: "84E1", source: "Gorai the Uncaged" } +5585.0 "Burst 1" Ability { id: "84E2", source: "Gorai the Uncaged" } +5586.2 "Impure Purgation 1" Ability { id: "84E7", source: "Gorai the Uncaged" } +5588.2 "Impure Purgation 2" Ability { id: "84E8", source: "Gorai the Uncaged" } +5591.0 "Burst 2" Ability { id: "84E2", source: "Gorai the Uncaged" } +5597.0 "Burst 3" Ability { id: "84E2", source: "Gorai the Uncaged" } +5599.1 "Spike of Flame" Ability { id: "84E4", source: "Gorai the Uncaged" } + +5610.9 "Unenlightenment" Ability { id: "8500", source: "Gorai the Uncaged" } +5620.2 "Flame and Sulphur" Ability { id: "84D7", source: "Gorai the Uncaged" } +5630.5 "Plectrum of Power/Morphic Melody" Ability { id: ["84D8", "84D9"], source: "Gorai the Uncaged" } +5633.2 "Falling Rock" Ability { id: ["84DD", "84DE"], source: "Gorai the Uncaged" } +5633.2 "Fire Spread" Ability { id: ["84DA", "84DB"], source: "Gorai the Uncaged" } +5641.4 "Flame and Sulphur" Ability { id: "84D7", source: "Gorai the Uncaged" } +5651.7 "Morphic Melody/Plectrum of Power" Ability { id: ["84D9", "84D8"], source: "Gorai the Uncaged" } +5654.4 "Falling Rock" Ability { id: ["84DD", "84DE"], source: "Gorai the Uncaged" } +5654.4 "Fire Spread" Ability { id: ["84DA", "84DB"], source: "Gorai the Uncaged" } + +5664.5 "Torching Torment" Ability { id: "84FE", source: "Gorai the Uncaged" } +5676.8 "Unenlightenment" Ability { id: "8500", source: "Gorai the Uncaged" } +5687.1 "String Snap 1" Ability { id: "84EA", source: "Gorai the Uncaged" } +5689.1 "String Snap 2" Ability { id: "84EB", source: "Gorai the Uncaged" } +5691.1 "String Snap 3" Ability { id: "84EC", source: "Gorai the Uncaged" } +5697.0 "Spike of Flame" Ability { id: "84E4", source: "Gorai the Uncaged" } +5708.8 "Unenlightenment" Ability { id: "8500", source: "Gorai the Uncaged" } + +5717.2 "--middle--" Ability { id: "84D3", source: "Gorai the Uncaged" } +5724.4 "Rousing Reincarnation" Ability { id: "84DF", source: "Gorai the Uncaged" } window 100,100 forcejump 5567.7 # GORAI ABILITIES @@ -720,109 +720,109 @@ hideall "--sync--" # -ii 83A2 83A3 83A8 8382 838A # Autumn Rivers' End will be sealed off -6000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10DE:/ window 10000,0 -6012.0 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ +6000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10DE" } window 10000,0 +6012.0 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } # -> no dogu -6016.1 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8368:/ window 30,30 jump 6116.1 -6019.1 "Art of the Fireblossom?" #sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ +6016.1 "--sync--" StartsUsing { id: "8368", source: "Yozakura the Fleeting" } window 30,30 jump 6116.1 +6019.1 "Art of the Fireblossom?" #Ability { id: "8368", source: "Yozakura the Fleeting" } # -> dogu -6016.1 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8369:/ window 30,30 jump 6316.1 -6021.1 "Art of the Windblossom?" sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ +6016.1 "--sync--" StartsUsing { id: "8369", source: "Yozakura the Fleeting" } window 30,30 jump 6316.1 +6021.1 "Art of the Windblossom?" Ability { id: "8369", source: "Yozakura the Fleeting" } # no dogu path -6116.1 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8368:/ -6119.1 "Art of the Fireblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ -6123.3 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -6129.6 "Bunshin" sync / 1[56]:[^:]*:Yozakura the Fleeting:837E:/ -6138.7 "Shadowflight (cast)" sync / 1[56]:[^:]*:Yozakura the Fleeting:837F:/ -6143.6 "Shadowflight" sync / 1[56]:[^:]*:Mirrored Yozakura:8380:/ - -6150.8 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -6155.9 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -6160.0 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#6060.2 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#6062.2 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -6169.4 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -6172.6 "Seal of the Blossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ - -6182.6 "Nubuki" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A1:/ -6191.7 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A4:/ -6194.7 "Root Arrangement 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A5:/ -6195.8 "Root Arrangement 2" #sync / 1[56]:[^:]*:Yozakura the Fleeting:83A6:/ -6196.8 "Root Arrangement 3" #sync / 1[56]:[^:]*:Yozakura the Fleeting:83A6:/ -6197.8 "Root Arrangement 4" #sync / 1[56]:[^:]*:Yozakura the Fleeting:83A6:/ -6206.7 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A4:/ -6209.7 "Root Arrangement 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A5:/ -6210.8 "Root Arrangement 2" #sync / 1[56]:[^:]*:Yozakura the Fleeting:83A6:/ -6211.8 "Root Arrangement 3" #sync / 1[56]:[^:]*:Yozakura the Fleeting:83A6:/ -6212.8 "Root Arrangement 4" #sync / 1[56]:[^:]*:Yozakura the Fleeting:83A6:/ - -6221.7 "Art of the Windblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ -6230.8 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -6235.9 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -6240.1 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#6140.3 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#6142.3 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#6144.3 "Seal Marker 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#6146.3 "Seal Marker 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -6253.8 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -6257.0 "Seal of the Blossom 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -6262.0 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -6265.0 "Seal of the Blossom 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -6278.0 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ -6286.2 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ - -6293.3 "Nubuki" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A1:/ window 30,30 forcejump 6182.6 +6116.1 "--sync--" StartsUsing { id: "8368", source: "Yozakura the Fleeting" } +6119.1 "Art of the Fireblossom" Ability { id: "8368", source: "Yozakura the Fleeting" } +6123.3 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +6129.6 "Bunshin" Ability { id: "837E", source: "Yozakura the Fleeting" } +6138.7 "Shadowflight (cast)" Ability { id: "837F", source: "Yozakura the Fleeting" } +6143.6 "Shadowflight" Ability { id: "8380", source: "Mirrored Yozakura" } + +6150.8 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +6155.9 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +6160.0 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#6060.2 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#6062.2 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +6169.4 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +6172.6 "Seal of the Blossom" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } + +6182.6 "Nubuki" Ability { id: "83A1", source: "Yozakura the Fleeting" } +6191.7 "--sync--" Ability { id: "83A4", source: "Yozakura the Fleeting" } +6194.7 "Root Arrangement 1" Ability { id: "83A5", source: "Yozakura the Fleeting" } +6195.8 "Root Arrangement 2" #Ability { id: "83A6", source: "Yozakura the Fleeting" } +6196.8 "Root Arrangement 3" #Ability { id: "83A6", source: "Yozakura the Fleeting" } +6197.8 "Root Arrangement 4" #Ability { id: "83A6", source: "Yozakura the Fleeting" } +6206.7 "--sync--" Ability { id: "83A4", source: "Yozakura the Fleeting" } +6209.7 "Root Arrangement 1" Ability { id: "83A5", source: "Yozakura the Fleeting" } +6210.8 "Root Arrangement 2" #Ability { id: "83A6", source: "Yozakura the Fleeting" } +6211.8 "Root Arrangement 3" #Ability { id: "83A6", source: "Yozakura the Fleeting" } +6212.8 "Root Arrangement 4" #Ability { id: "83A6", source: "Yozakura the Fleeting" } + +6221.7 "Art of the Windblossom" Ability { id: "8369", source: "Yozakura the Fleeting" } +6230.8 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +6235.9 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +6240.1 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#6140.3 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#6142.3 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#6144.3 "Seal Marker 3" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#6146.3 "Seal Marker 4" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +6253.8 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +6257.0 "Seal of the Blossom 1" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +6262.0 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +6265.0 "Seal of the Blossom 2" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +6278.0 "Kuge Rantsui" Ability { id: "83AA", source: "Yozakura the Fleeting" } +6286.2 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } + +6293.3 "Nubuki" Ability { id: "83A1", source: "Yozakura the Fleeting" } window 30,30 forcejump 6182.6 # dogu path -6316.1 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8369:/ -6321.1 "Art of the Windblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ -6325.3 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -#6329.4 "Season Indicator 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:838[34]:/ -#6331.5 "Season Indicator 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:838[34]:/ -#6333.6 "Season Indicator 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:838[34]:/ -#6335.7 "Season Indicator 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:838[34]:/ -6336.1 "Seasons of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8381:/ -6337.0 "Season of Element 1" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838[5678]:/ -6339.1 "Season of Element 2" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838[5678]:/ -6341.2 "Season of Element 3" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838[5678]:/ -6343.3 "Season of Element 4" #sync / 1[56]:[^:]*:Yozakura the Fleeting:838[5678]:/ - -6351.6 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ -6356.7 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -6360.8 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#6361.0 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#6363.0 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -6370.2 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -6373.4 "Seal of the Blossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ - -6380.4 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -6384.5 "Witherwind" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A7:/ -6389.6 "Mudrain" sync / 1[56]:[^:]*:Yozakura the Fleeting:8389:/ -6399.8 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -6405.8 "Drifting Petals" sync / 1[56]:[^:]*:Yozakura the Fleeting:8393:/ -6429.9 "Art of the Fireblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ -6439.0 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ - -6444.1 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -6448.3 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ -#6448.5 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#6450.5 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#6452.5 "Seal Marker 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -#6454.5 "Seal Marker 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ -6461.7 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -6464.7 "Seal of the Blossom 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -6469.8 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ -6473.0 "Seal of the Blossom 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ -6486.0 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ -6494.2 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ - -6498.3 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ -6502.4 "Witherwind" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A7:/ window 30,30 forcejump 6384.5 +6316.1 "--sync--" StartsUsing { id: "8369", source: "Yozakura the Fleeting" } +6321.1 "Art of the Windblossom" Ability { id: "8369", source: "Yozakura the Fleeting" } +6325.3 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +#6329.4 "Season Indicator 1" Ability { id: "838[34]", source: "Yozakura the Fleeting" } +#6331.5 "Season Indicator 2" Ability { id: "838[34]", source: "Yozakura the Fleeting" } +#6333.6 "Season Indicator 3" Ability { id: "838[34]", source: "Yozakura the Fleeting" } +#6335.7 "Season Indicator 4" Ability { id: "838[34]", source: "Yozakura the Fleeting" } +6336.1 "Seasons of the Fleeting" Ability { id: "8381", source: "Yozakura the Fleeting" } +6337.0 "Season of Element 1" #Ability { id: "838[5678]", source: "Yozakura the Fleeting" } +6339.1 "Season of Element 2" #Ability { id: "838[5678]", source: "Yozakura the Fleeting" } +6341.2 "Season of Element 3" #Ability { id: "838[5678]", source: "Yozakura the Fleeting" } +6343.3 "Season of Element 4" #Ability { id: "838[5678]", source: "Yozakura the Fleeting" } + +6351.6 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } +6356.7 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +6360.8 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#6361.0 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#6363.0 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +6370.2 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +6373.4 "Seal of the Blossom" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } + +6380.4 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +6384.5 "Witherwind" Ability { id: "83A7", source: "Yozakura the Fleeting" } +6389.6 "Mudrain" Ability { id: "8389", source: "Yozakura the Fleeting" } +6399.8 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +6405.8 "Drifting Petals" Ability { id: "8393", source: "Yozakura the Fleeting" } +6429.9 "Art of the Fireblossom" Ability { id: "8368", source: "Yozakura the Fleeting" } +6439.0 "Oka Ranman" Ability { id: "836E", source: "Yozakura the Fleeting" } + +6444.1 "--sync--" Ability { id: "8612", source: "Yozakura the Fleeting" } +6448.3 "Seal of the Fleeting" Ability { id: "8379", source: "Yozakura the Fleeting" } +#6448.5 "Seal Marker 1" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#6450.5 "Seal Marker 2" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#6452.5 "Seal Marker 3" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +#6454.5 "Seal Marker 4" Ability { id: "837[ABCD]", source: "Yozakura the Fleeting" } +6461.7 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +6464.7 "Seal of the Blossom 1" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +6469.8 "Seal of Riotous Bloom" Ability { id: "8374", source: "Yozakura the Fleeting" } +6473.0 "Seal of the Blossom 2" Ability { id: "837[5678]", source: "Yozakura the Fleeting" } +6486.0 "Kuge Rantsui" Ability { id: "83AA", source: "Yozakura the Fleeting" } +6494.2 "Glory Neverlasting" Ability { id: "83A9", source: "Yozakura the Fleeting" } + +6498.3 "--middle--" Ability { id: "8612", source: "Yozakura the Fleeting" } +6502.4 "Witherwind" Ability { id: "83A7", source: "Yozakura the Fleeting" } window 30,30 forcejump 6384.5 # YOZAKURA ABILITIES (RIGHT PATH) @@ -844,127 +844,127 @@ hideall "--sync--" # -ii 86DE 83DA 83DE 83DF 83E0 83E3 83E4 83E5 83E2 87F9 87FB 83DB 87A3 87A4 87A6 87AB 83ED 872B 83F2 # Stone's Silence will be sealed off -7000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10E1:/ window 10000,0 -7015.7 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ -7017.8 "--middle--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7022.0 "Stormcloud Summons" sync / 1[56]:[^:]*:Shishio:83D7:/ -7026.7 "Smokeater" sync / 1[56]:[^:]*:Shishio:83D8:/ +7000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10E1" } window 10000,0 +7015.7 "Enkyo" Ability { id: "83F5", source: "Shishio" } +7017.8 "--middle--" Ability { id: "83F7", source: "Shishio" } +7022.0 "Stormcloud Summons" Ability { id: "83D7", source: "Shishio" } +7026.7 "Smokeater" Ability { id: "83D8", source: "Shishio" } # Note: This always seems to be Once on Rokujo -7036.8 "Once on Rokujo" sync / 1[56]:[^:]*:Shishio:83DD:/ -7053.4 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:83F6:/ -7055.5 "--middle--" sync / 1[56]:[^:]*:Shishio:83F7:/ +7036.8 "Once on Rokujo" Ability { id: "83DD", source: "Shishio" } +7053.4 "Splitting Cry" Ability { id: "83F6", source: "Shishio" } +7055.5 "--middle--" Ability { id: "83F7", source: "Shishio" } # Note: this one can be Twice or Thrice on Rokujo -7059.8 "Stormcloud Summons" sync / 1[56]:[^:]*:Shishio:83D7:/ -7064.5 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:83D8:/ -7066.6 "Smokeater 2" #sync / 1[56]:[^:]*:Shishio:83D9:/ -7068.5 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:83D9:/ -7093.0 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:83E8:/ +7059.8 "Stormcloud Summons" Ability { id: "83D7", source: "Shishio" } +7064.5 "Smokeater 1" Ability { id: "83D8", source: "Shishio" } +7066.6 "Smokeater 2" #Ability { id: "83D9", source: "Shishio" } +7068.5 "Smokeater 3?" #Ability { id: "83D9", source: "Shishio" } +7093.0 "Haunting Cry" Ability { id: "83E8", source: "Shishio" } # -> path 08 -7104.0 "--sync--" sync / 14:[^:]*:Feral Thrall:83EE:/ -7110.0 "Rush?" sync / 1[56]:[^:]*:Feral Thrall:83EE:/ window 30,30 jump 7210.0 +7104.0 "--sync--" StartsUsing { id: "83EE", source: "Feral Thrall" } +7110.0 "Rush?" Ability { id: "83EE", source: "Feral Thrall" } window 30,30 jump 7210.0 # -> path 09 -7093.9 "--sync--" sync / 14:[^:]*:Shishio:83E9:/ window 30,30 jump 7293.9 -7098.9 "Focused Tremor?" #sync / 1[56]:[^:]*:Shishio:83E9:/ +7093.9 "--sync--" StartsUsing { id: "83E9", source: "Shishio" } window 30,30 jump 7293.9 +7098.9 "Focused Tremor?" #Ability { id: "83E9", source: "Shishio" } # -> path 10 -7097.0 "--sync--" sync / 14:[^:]*:Devilish Thrall:83F0:/ window 30,30 jump 7397.0 -7105.0 "Left Swipe?" #sync / 1[56]:[^:]*:Devilish Thrall:83F1:/ -7105.0 "Right Swipe?" #sync / 1[56]:[^:]*:Devilish Thrall:83F0:/ +7097.0 "--sync--" StartsUsing { id: "83F0", source: "Devilish Thrall" } window 30,30 jump 7397.0 +7105.0 "Left Swipe?" #Ability { id: "83F1", source: "Devilish Thrall" } +7105.0 "Right Swipe?" #Ability { id: "83F0", source: "Devilish Thrall" } # -> path 11 -7099.0 "--sync--" sync / 14:[^:]*:Haunting Thrall:872B:/ window 30,30 jump 7599.0 -7103.0 "Reisho?" #sync / 1[56]:[^:]*:Haunting Thrall:872B:/ +7099.0 "--sync--" StartsUsing { id: "872B", source: "Haunting Thrall" } window 30,30 jump 7599.0 +7103.0 "Reisho?" #Ability { id: "872B", source: "Haunting Thrall" } # path 08 -7193.0 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:83E8:/ -7204.0 "--sync--" sync / 14:[^:]*:Feral Thrall:83EE:/ -7210.0 "Rush" sync / 1[56]:[^:]*:Feral Thrall:83EE:/ -7212.0 "Vasoconstrictor 1" sync / 1[56]:[^:]*:Venomous Thrall:83EF:/ -7217.0 "Vasoconstrictor 2" sync / 1[56]:[^:]*:Venomous Thrall:83EF:/ -7217.0 "--sync--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7223.0 "Thunder Vortex" sync / 1[56]:[^:]*:Shishio:83F4:/ -7230.2 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:83F6:/ +7193.0 "Haunting Cry" Ability { id: "83E8", source: "Shishio" } +7204.0 "--sync--" StartsUsing { id: "83EE", source: "Feral Thrall" } +7210.0 "Rush" Ability { id: "83EE", source: "Feral Thrall" } +7212.0 "Vasoconstrictor 1" Ability { id: "83EF", source: "Venomous Thrall" } +7217.0 "Vasoconstrictor 2" Ability { id: "83EF", source: "Venomous Thrall" } +7217.0 "--sync--" Ability { id: "83F7", source: "Shishio" } +7223.0 "Thunder Vortex" Ability { id: "83F4", source: "Shishio" } +7230.2 "Splitting Cry" Ability { id: "83F6", source: "Shishio" } # -> shared loop -7240.3 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ window 30,30 forcejump 7634.4 +7240.3 "Enkyo" Ability { id: "83F5", source: "Shishio" } window 30,30 forcejump 7634.4 # path 09 -7293.0 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:83E8:/ -7293.9 "--sync--" sync / 14:[^:]*:Shishio:83E9:/ -7298.9 "Focused Tremor" sync / 1[56]:[^:]*:Shishio:83E9:/ -7303.2 "Yoki (cast)" sync / 1[56]:[^:]*:Shishio:83EA:/ -7308.0 "Yoki 1" sync / 1[56]:[^:]*:Shishio:83EB:/ -7312.0 "Yoki 2" sync / 1[56]:[^:]*:Shishio:83EB:/ -7315.3 "--sync--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7324.3 "Yoki-uzu" sync / 1[56]:[^:]*:Shishio:83EC:/ +7293.0 "Haunting Cry" Ability { id: "83E8", source: "Shishio" } +7293.9 "--sync--" StartsUsing { id: "83E9", source: "Shishio" } +7298.9 "Focused Tremor" Ability { id: "83E9", source: "Shishio" } +7303.2 "Yoki (cast)" Ability { id: "83EA", source: "Shishio" } +7308.0 "Yoki 1" Ability { id: "83EB", source: "Shishio" } +7312.0 "Yoki 2" Ability { id: "83EB", source: "Shishio" } +7315.3 "--sync--" Ability { id: "83F7", source: "Shishio" } +7324.3 "Yoki-uzu" Ability { id: "83EC", source: "Shishio" } # -> shared loop -7334.4 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ window 30,30 forcejump 7634.4 +7334.4 "Enkyo" Ability { id: "83F5", source: "Shishio" } window 30,30 forcejump 7634.4 # path 10 -7393.0 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:83E8:/ -7397.0 "--sync--" sync / 14:[^:]*:Devilish Thrall:83F0:/ -7405.0 "Left Swipe 1" sync / 1[56]:[^:]*:Devilish Thrall:83F1:/ -7405.0 "Right Swipe 1" sync / 1[56]:[^:]*:Devilish Thrall:83F0:/ -7415.3 "Left Swipe 2" sync / 1[56]:[^:]*:Devilish Thrall:83F1:/ -7415.3 "Right Swipe 2" sync / 1[56]:[^:]*:Devilish Thrall:83F0:/ -7424.3 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:83F6:/ +7393.0 "Haunting Cry" Ability { id: "83E8", source: "Shishio" } +7397.0 "--sync--" StartsUsing { id: "83F0", source: "Devilish Thrall" } +7405.0 "Left Swipe 1" Ability { id: "83F1", source: "Devilish Thrall" } +7405.0 "Right Swipe 1" Ability { id: "83F0", source: "Devilish Thrall" } +7415.3 "Left Swipe 2" Ability { id: "83F1", source: "Devilish Thrall" } +7415.3 "Right Swipe 2" Ability { id: "83F0", source: "Devilish Thrall" } +7424.3 "Splitting Cry" Ability { id: "83F6", source: "Shishio" } # -> shared loop -7434.4 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ window 30,30 forcejump 7634.4 +7434.4 "Enkyo" Ability { id: "83F5", source: "Shishio" } window 30,30 forcejump 7634.4 # path 11 -7593.0 "Haunting Cry" sync / 1[56]:[^:]*:Shishio:83E8:/ -7599.0 "--sync--" sync / 14:[^:]*:Haunting Thrall:872B:/ -7603.0 "Reisho" sync / 1[56]:[^:]*:Haunting Thrall:872B:/ -7611.1 "--middle--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7617.1 "Thunder Vortex" sync / 1[56]:[^:]*:Shishio:83F4:/ -7624.3 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:83F6:/ +7593.0 "Haunting Cry" Ability { id: "83E8", source: "Shishio" } +7599.0 "--sync--" StartsUsing { id: "872B", source: "Haunting Thrall" } +7603.0 "Reisho" Ability { id: "872B", source: "Haunting Thrall" } +7611.1 "--middle--" Ability { id: "83F7", source: "Shishio" } +7617.1 "Thunder Vortex" Ability { id: "83F4", source: "Shishio" } +7624.3 "Splitting Cry" Ability { id: "83F6", source: "Shishio" } # -> shared loop -7634.4 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ window 30,30 forcejump 7634.4 +7634.4 "Enkyo" Ability { id: "83F5", source: "Shishio" } window 30,30 forcejump 7634.4 # shared loop -7634.4 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ -7636.5 "--middle--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7640.7 "Stormcloud Summons" sync / 1[56]:[^:]*:Shishio:83D7:/ -7645.4 "Smokeater" sync / 1[56]:[^:]*:Shishio:83D8:/ +7634.4 "Enkyo" Ability { id: "83F5", source: "Shishio" } +7636.5 "--middle--" Ability { id: "83F7", source: "Shishio" } +7640.7 "Stormcloud Summons" Ability { id: "83D7", source: "Shishio" } +7645.4 "Smokeater" Ability { id: "83D8", source: "Shishio" } # Note: This always seems to be Onefold the first time around. -7650.5 "Thunder Onefold" sync / 1[56]:[^:]*:Shishio:83E1:/ -7678.1 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:83F6:/ - -7684.2 "--jump--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7693.5 "Noble Pursuit" sync / 1[56]:[^:]*:Shishio:83E6:/ -7694.4 "Levinburst" sync / 1[56]:[^:]*:Rairin:83E7:/ -7700.4 "Thunder Vortex" sync / 1[56]:[^:]*:Shishio:83F4:/ -7707.5 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ - -7713.7 "--middle--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7717.9 "Stormcloud Summons" sync / 1[56]:[^:]*:Shishio:83D7:/ -7722.6 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:83D8:/ -7724.7 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:83D9:/ -7726.6 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:83D9:/ -7750.2 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ +7650.5 "Thunder Onefold" Ability { id: "83E1", source: "Shishio" } +7678.1 "Splitting Cry" Ability { id: "83F6", source: "Shishio" } + +7684.2 "--jump--" Ability { id: "83F7", source: "Shishio" } +7693.5 "Noble Pursuit" Ability { id: "83E6", source: "Shishio" } +7694.4 "Levinburst" Ability { id: "83E7", source: "Rairin" } +7700.4 "Thunder Vortex" Ability { id: "83F4", source: "Shishio" } +7707.5 "Enkyo" Ability { id: "83F5", source: "Shishio" } + +7713.7 "--middle--" Ability { id: "83F7", source: "Shishio" } +7717.9 "Stormcloud Summons" Ability { id: "83D7", source: "Shishio" } +7722.6 "Smokeater 1" Ability { id: "83D8", source: "Shishio" } +7724.7 "Smokeater 2?" #Ability { id: "83D9", source: "Shishio" } +7726.6 "Smokeater 3?" #Ability { id: "83D9", source: "Shishio" } +7750.2 "Enkyo" Ability { id: "83F5", source: "Shishio" } # this is the start of the loop, as there's an extra delay on the 7713.7 jump # the first time through -7757.4 "--middle--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7761.6 "Stormcloud Summons" sync / 1[56]:[^:]*:Shishio:83D7:/ -7766.3 "Smokeater 1" sync / 1[56]:[^:]*:Shishio:83D8:/ -7768.4 "Smokeater 2?" #sync / 1[56]:[^:]*:Shishio:83D9:/ -7770.4 "Smokeater 3?" #sync / 1[56]:[^:]*:Shishio:83D9:/ +7757.4 "--middle--" Ability { id: "83F7", source: "Shishio" } +7761.6 "Stormcloud Summons" Ability { id: "83D7", source: "Shishio" } +7766.3 "Smokeater 1" Ability { id: "83D8", source: "Shishio" } +7768.4 "Smokeater 2?" #Ability { id: "83D9", source: "Shishio" } +7770.4 "Smokeater 3?" #Ability { id: "83D9", source: "Shishio" } # Note: this is +/- 2 seconds depending on how many Smokeaters, so no sync -7773.4 "Thunder Onefold/Thunder Twofold/Thunder Threefold" #sync / 1[56]:[^:]*:Shishio:(83E1|87AD|87FA):/ -7798.8 "Splitting Cry" sync / 1[56]:[^:]*:Shishio:83F6:/ +7773.4 "Thunder Onefold/Thunder Twofold/Thunder Threefold" #Ability { id: ["83E1", "87AD", "87FA"], source: "Shishio" } +7798.8 "Splitting Cry" Ability { id: "83F6", source: "Shishio" } -7804.9 "--jump--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7814.2 "Noble Pursuit" sync / 1[56]:[^:]*:Shishio:83E6:/ -7815.1 "Levinburst" sync / 1[56]:[^:]*:Rairin:83E7:/ -7821.1 "Thunder Vortex" sync / 1[56]:[^:]*:Shishio:83F4:/ -7828.2 "Enkyo" sync / 1[56]:[^:]*:Shishio:83F5:/ +7804.9 "--jump--" Ability { id: "83F7", source: "Shishio" } +7814.2 "Noble Pursuit" Ability { id: "83E6", source: "Shishio" } +7815.1 "Levinburst" Ability { id: "83E7", source: "Rairin" } +7821.1 "Thunder Vortex" Ability { id: "83F4", source: "Shishio" } +7828.2 "Enkyo" Ability { id: "83F5", source: "Shishio" } -7835.4 "--middle--" sync / 1[56]:[^:]*:Shishio:83F7:/ -7839.6 "Stormcloud Summons" sync / 1[56]:[^:]*:Shishio:83D7:/ window 30,30 forcejump 7717.9 +7835.4 "--middle--" Ability { id: "83F7", source: "Shishio" } +7839.6 "Stormcloud Summons" Ability { id: "83D7", source: "Shishio" } window 30,30 forcejump 7717.9 # SHISHIO ABILITIES @@ -1027,74 +1027,74 @@ hideall "--sync--" # -ii 8058 8049 804A 804B 8047 # Pond of Spring Rain will be sealed off -8000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:10E2:/ window 10000,0 -8013.0 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ -8016.1 "--jump--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8029.9 "Out of the Smoke" sync / 1[56]:[^:]*:Enenra:804C:/ -8030.1 "--sync--" sync / 1[56]:[^:]*:Enenra:804E:/ -8034.0 "Into the Fire" sync / 1[56]:[^:]*:Enenra:804D:/ -8043.1 "Kiseru Clamor 1" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 -8047.2 "Kiseru Clamor 2" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 - -8049.3 "--jump--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8063.1 "Out of the Smoke" sync / 1[56]:[^:]*:Enenra:804C:/ -8063.3 "--sync--" sync / 1[56]:[^:]*:Enenra:804E:/ -8067.2 "Into the Fire" sync / 1[56]:[^:]*:Enenra:804D:/ - -8073.4 "--west--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8077.4 "Smoke and Mirrors" sync / 1[56]:[^:]*:Enenra:8043:/ -8077.7 "--sync--" sync / 1[56]:[^:]*:Enenra:8045:/ -8083.4 "Kiseru Clamor x2" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 -8087.5 "Kiseru Clamor x2" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 -8089.7 "--jump--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8103.5 "Out of the Smoke x2" sync / 1[56]:[^:]*:Enenra:804C:/ -8103.7 "--sync--" sync / 1[56]:[^:]*:Enenra:804E:/ -8107.6 "Into the Fire x2" #sync / 1[56]:[^:]*:Enenra:804D:/ -8111.8 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8121.6 "--sync--" sync / 1[56]:[^:]*:Enenra:(8062|8063):/ -8125.0 "Clearing Smoke/Smoke Rings" sync / 1[56]:[^:]*:Enenra:(8052|8053):/ -8130.8 "Smoke Stack" sync / 1[56]:[^:]*:Enenra:8046:/ - -8136.3 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8142.0 "Smoldering Damnation" sync / 1[56]:[^:]*:Enenra:804F:/ -8154.6 "Smoldering 1" #sync / 1[56]:[^:]*:Enenra:8050:/ -8157.2 "Smoldering 2" #sync / 1[56]:[^:]*:Enenra:8050:/ -8159.8 "Smoldering 3" #sync / 1[56]:[^:]*:Enenra:8050:/ -8162.7 "Pipe Cleaner" sync / 1[56]:[^:]*:Enenra:8054:/ -#8162.9 "Pipe Cleaner" sync / 1[56]:[^:]*:Enenra:8055:/ +8000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "10E2" } window 10000,0 +8013.0 "Flagrant Combustion" Ability { id: "8042", source: "Enenra" } +8016.1 "--jump--" Ability { id: "84C2", source: "Enenra" } +8029.9 "Out of the Smoke" Ability { id: "804C", source: "Enenra" } +8030.1 "--sync--" Ability { id: "804E", source: "Enenra" } +8034.0 "Into the Fire" Ability { id: "804D", source: "Enenra" } +8043.1 "Kiseru Clamor 1" Ability { id: "8048", source: "Enenra" } duration 6 +8047.2 "Kiseru Clamor 2" Ability { id: "8048", source: "Enenra" } duration 6 + +8049.3 "--jump--" Ability { id: "84C2", source: "Enenra" } +8063.1 "Out of the Smoke" Ability { id: "804C", source: "Enenra" } +8063.3 "--sync--" Ability { id: "804E", source: "Enenra" } +8067.2 "Into the Fire" Ability { id: "804D", source: "Enenra" } + +8073.4 "--west--" Ability { id: "84C2", source: "Enenra" } +8077.4 "Smoke and Mirrors" Ability { id: "8043", source: "Enenra" } +8077.7 "--sync--" Ability { id: "8045", source: "Enenra" } +8083.4 "Kiseru Clamor x2" Ability { id: "8048", source: "Enenra" } duration 6 +8087.5 "Kiseru Clamor x2" Ability { id: "8048", source: "Enenra" } duration 6 +8089.7 "--jump--" Ability { id: "84C2", source: "Enenra" } +8103.5 "Out of the Smoke x2" Ability { id: "804C", source: "Enenra" } +8103.7 "--sync--" Ability { id: "804E", source: "Enenra" } +8107.6 "Into the Fire x2" #Ability { id: "804D", source: "Enenra" } +8111.8 "--sync--" Ability { id: "84C2", source: "Enenra" } +8121.6 "--sync--" Ability { id: ["8062", "8063"], source: "Enenra" } +8125.0 "Clearing Smoke/Smoke Rings" Ability { id: ["8052", "8053"], source: "Enenra" } +8130.8 "Smoke Stack" Ability { id: "8046", source: "Enenra" } + +8136.3 "--sync--" Ability { id: "84C2", source: "Enenra" } +8142.0 "Smoldering Damnation" Ability { id: "804F", source: "Enenra" } +8154.6 "Smoldering 1" #Ability { id: "8050", source: "Enenra" } +8157.2 "Smoldering 2" #Ability { id: "8050", source: "Enenra" } +8159.8 "Smoldering 3" #Ability { id: "8050", source: "Enenra" } +8162.7 "Pipe Cleaner" Ability { id: "8054", source: "Enenra" } +#8162.9 "Pipe Cleaner" Ability { id: "8055", source: "Enenra" } # TODO: this can tether multiple people and delay the timeline? -8167.8 "--west--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8169.4 "--sync--" sync / 14:[^:]*:Enenra:8043:/ window 10,20 -8171.9 "Smoke and Mirrors" sync / 1[56]:[^:]*:Enenra:8043:/ -8172.2 "--sync--" sync / 1[56]:[^:]*:Enenra:8045:/ -8179.9 "Flagrant Combustion x2" sync / 1[56]:[^:]*:Enenra:8042:/ -8182.9 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8188.7 "Smoldering Damnation" sync / 1[56]:[^:]*:Enenra:804F:/ -8195.3 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8201.3 "Smoldering 1" #sync / 1[56]:[^:]*:Enenra:8050:/ -8203.9 "Smoldering 2" #sync / 1[56]:[^:]*:Enenra:8050:/ -8205.1 "--sync--" sync / 1[56]:[^:]*:Enenra:(8062|8063):/ -8206.3 "Smoldering 3" #sync / 1[56]:[^:]*:Enenra:8050:/ -8208.5 "Clearing Smoke/Smoke Rings" sync / 1[56]:[^:]*:Enenra:(8052|8053):/ -8214.3 "Smoke Stack" sync / 1[56]:[^:]*:Enenra:8046:/ - -8222.7 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ -8238.9 "Snuff" sync / 1[56]:[^:]*:Enenra:8056:/ -8243.1 "Uplift" sync / 1[56]:[^:]*:Enenra:8057:/ -8248.0 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ -8258.1 "Kiseru Clamor 1" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 -8262.2 "Kiseru Clamor 2" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 - -8264.3 "--jump--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8277.9 "Out of the Smoke" sync / 1[56]:[^:]*:Enenra:804C:/ -8278.1 "--sync--" sync / 1[56]:[^:]*:Enenra:804E:/ -8282.0 "Into the Fire" sync / 1[56]:[^:]*:Enenra:804D:/ -8291.1 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ -8300.2 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ - -8313.4 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ -8317.4 "Smoke and Mirrors" sync / 1[56]:[^:]*:Enenra:8043:/ window 30,30 forcejump 8077.4 +8167.8 "--west--" Ability { id: "84C2", source: "Enenra" } +8169.4 "--sync--" StartsUsing { id: "8043", source: "Enenra" } window 10,20 +8171.9 "Smoke and Mirrors" Ability { id: "8043", source: "Enenra" } +8172.2 "--sync--" Ability { id: "8045", source: "Enenra" } +8179.9 "Flagrant Combustion x2" Ability { id: "8042", source: "Enenra" } +8182.9 "--sync--" Ability { id: "84C2", source: "Enenra" } +8188.7 "Smoldering Damnation" Ability { id: "804F", source: "Enenra" } +8195.3 "--sync--" Ability { id: "84C2", source: "Enenra" } +8201.3 "Smoldering 1" #Ability { id: "8050", source: "Enenra" } +8203.9 "Smoldering 2" #Ability { id: "8050", source: "Enenra" } +8205.1 "--sync--" Ability { id: ["8062", "8063"], source: "Enenra" } +8206.3 "Smoldering 3" #Ability { id: "8050", source: "Enenra" } +8208.5 "Clearing Smoke/Smoke Rings" Ability { id: ["8052", "8053"], source: "Enenra" } +8214.3 "Smoke Stack" Ability { id: "8046", source: "Enenra" } + +8222.7 "Flagrant Combustion" Ability { id: "8042", source: "Enenra" } +8238.9 "Snuff" Ability { id: "8056", source: "Enenra" } +8243.1 "Uplift" Ability { id: "8057", source: "Enenra" } +8248.0 "Flagrant Combustion" Ability { id: "8042", source: "Enenra" } +8258.1 "Kiseru Clamor 1" Ability { id: "8048", source: "Enenra" } duration 6 +8262.2 "Kiseru Clamor 2" Ability { id: "8048", source: "Enenra" } duration 6 + +8264.3 "--jump--" Ability { id: "84C2", source: "Enenra" } +8277.9 "Out of the Smoke" Ability { id: "804C", source: "Enenra" } +8278.1 "--sync--" Ability { id: "804E", source: "Enenra" } +8282.0 "Into the Fire" Ability { id: "804D", source: "Enenra" } +8291.1 "Flagrant Combustion" Ability { id: "8042", source: "Enenra" } +8300.2 "Flagrant Combustion" Ability { id: "8042", source: "Enenra" } + +8313.4 "--sync--" Ability { id: "84C2", source: "Enenra" } +8317.4 "Smoke and Mirrors" Ability { id: "8043", source: "Enenra" } window 30,30 forcejump 8077.4 # ENENRA ABILITIES diff --git a/ui/raidboss/data/06-ew/dungeon/smileton.txt b/ui/raidboss/data/06-ew/dungeon/smileton.txt index 02dbb22545..2811b11ba3 100644 --- a/ui/raidboss/data/06-ew/dungeon/smileton.txt +++ b/ui/raidboss/data/06-ew/dungeon/smileton.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~# # FACE # @@ -14,38 +14,38 @@ hideall "--sync--" # -ii 6741 6736 6737 6C5E 673A 673B 673C 673D # Smileport will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:EBE:/ window 10000,0 -1009.0 "Lines of Fire" sync / 1[56]:[^:]*:Face:6735:/ -1018.1 "Mixed Feelings" sync / 1[56]:[^:]*:Face:6738:/ -1023.2 "Lines of Fire" sync / 1[56]:[^:]*:Face:6735:/ -1032.3 "Mixed Feelings" sync / 1[56]:[^:]*:Face:6738:/ -1043.4 "Off My Lawn" sync / 1[56]:[^:]*:Face:673E:/ -1044.4 "Temper, Temper" sync / 1[56]:[^:]*:Face:6740:/ -1054.6 "Temper's Flare" sync / 1[56]:[^:]*:Face:6743:/ - -1063.8 "Upside Down" sync / 1[56]:[^:]*:Face:6739:/ -1072.0 "Lines of Fire" sync / 1[56]:[^:]*:Face:6735:/ -1079.1 "Off My Lawn" sync / 1[56]:[^:]*:Face:673E:/ -1081.1 "Mixed Feelings" sync / 1[56]:[^:]*:Face:6738:/ -1091.3 "Upside Down" sync / 1[56]:[^:]*:Face:6739:/ -1099.5 "Lines of Fire" sync / 1[56]:[^:]*:Face:6735:/ - -1106.7 "Temper, Temper" sync / 1[56]:[^:]*:Face:6740:/ -1108.7 "Mixed Feelings" sync / 1[56]:[^:]*:Face:6738:/ -1112.7 "Lines of Fire" sync / 1[56]:[^:]*:Face:6735:/ -1119.8 "Off My Lawn" sync / 1[56]:[^:]*:Face:673E:/ -1121.8 "Mixed Feelings" sync / 1[56]:[^:]*:Face:6738:/ -1133.0 "Heart on Fire IV" sync / 1[56]:[^:]*:Face:6742:/ -1140.2 "Temper's Flare" sync / 1[56]:[^:]*:Face:6743:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "EBE" } window 10000,0 +1009.0 "Lines of Fire" Ability { id: "6735", source: "Face" } +1018.1 "Mixed Feelings" Ability { id: "6738", source: "Face" } +1023.2 "Lines of Fire" Ability { id: "6735", source: "Face" } +1032.3 "Mixed Feelings" Ability { id: "6738", source: "Face" } +1043.4 "Off My Lawn" Ability { id: "673E", source: "Face" } +1044.4 "Temper, Temper" Ability { id: "6740", source: "Face" } +1054.6 "Temper's Flare" Ability { id: "6743", source: "Face" } + +1063.8 "Upside Down" Ability { id: "6739", source: "Face" } +1072.0 "Lines of Fire" Ability { id: "6735", source: "Face" } +1079.1 "Off My Lawn" Ability { id: "673E", source: "Face" } +1081.1 "Mixed Feelings" Ability { id: "6738", source: "Face" } +1091.3 "Upside Down" Ability { id: "6739", source: "Face" } +1099.5 "Lines of Fire" Ability { id: "6735", source: "Face" } + +1106.7 "Temper, Temper" Ability { id: "6740", source: "Face" } +1108.7 "Mixed Feelings" Ability { id: "6738", source: "Face" } +1112.7 "Lines of Fire" Ability { id: "6735", source: "Face" } +1119.8 "Off My Lawn" Ability { id: "673E", source: "Face" } +1121.8 "Mixed Feelings" Ability { id: "6738", source: "Face" } +1133.0 "Heart on Fire IV" Ability { id: "6742", source: "Face" } +1140.2 "Temper's Flare" Ability { id: "6743", source: "Face" } # TODO: Guessing at the loop here. 1158.6 is the latest seen in an actual log. -1150.4 "Upside Down" sync / 1[56]:[^:]*:Face:6739:/ window 50,50 jump 1063.8 -1158.6 "Lines of Fire" #sync / 1[56]:[^:]*:Face:6735:/ +1150.4 "Upside Down" Ability { id: "6739", source: "Face" } window 50,50 jump 1063.8 +1158.6 "Lines of Fire" #Ability { id: "6735", source: "Face" } # guessing below here -1165.7 "Off My Lawn" #sync / 1[56]:[^:]*:Face:673E:/ -1167.7 "Mixed Feelings" #sync / 1[56]:[^:]*:Face:6738:/ -1177.9 "Upside Down" #sync / 1[56]:[^:]*:Face:6739:/ -1186.1 "Lines of Fire" #sync / 1[56]:[^:]*:Face:6735:/ +1165.7 "Off My Lawn" #Ability { id: "673E", source: "Face" } +1167.7 "Mixed Feelings" #Ability { id: "6738", source: "Face" } +1177.9 "Upside Down" #Ability { id: "6739", source: "Face" } +1186.1 "Lines of Fire" #Ability { id: "6735", source: "Face" } #~~~~~~~~~~~~~# @@ -56,24 +56,24 @@ hideall "--sync--" # -ii 6749 674B # The Welcome Wheel will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:EBF:/ window 10000,0 -2011.0 "Circular Saw" sync / 1[56]:[^:]*:Frameworker:6745:/ -2017.6 "--sync--" sync / 1[56]:[^:]*:Frameworker:674A:/ -2022.8 "Leap Forward" sync / 1[56]:[^:]*:Frameworker:6746:/ - -2032.0 "Print Workers" sync / 1[56]:[^:]*:Frameworker:6DBC:/ -2044.2 "Leap Forward" sync / 1[56]:[^:]*:Printed Worker:6747:/ -2059.2 "Omnidimensional Onslaught" sync / 1[56]:[^:]*:Frameworker:6748:/ -2070.4 "Print Workers" sync / 1[56]:[^:]*:Frameworker:6DBC:/ -2082.1 "Leap Forward" sync / 1[56]:[^:]*:Printed Worker:6747:/ -2095.6 "Print Workers" sync / 1[56]:[^:]*:Frameworker:6DBC:/ -2107.3 "Leap Forward" sync / 1[56]:[^:]*:Printed Worker:6747:/ -2112.0 "Leap Forward" sync / 1[56]:[^:]*:Frameworker:6746:/ - -2122.2 "Print Workers" sync / 1[56]:[^:]*:Frameworker:6DBC:/ -2133.9 "Leap Forward" sync / 1[56]:[^:]*:Printed Worker:6747:/ -2136.4 "Omnidimensional Onslaught" sync / 1[56]:[^:]*:Frameworker:6748:/ -2140.6 "Steel Beam" sync / 1[56]:[^:]*:Frameworker:6744:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "EBF" } window 10000,0 +2011.0 "Circular Saw" Ability { id: "6745", source: "Frameworker" } +2017.6 "--sync--" Ability { id: "674A", source: "Frameworker" } +2022.8 "Leap Forward" Ability { id: "6746", source: "Frameworker" } + +2032.0 "Print Workers" Ability { id: "6DBC", source: "Frameworker" } +2044.2 "Leap Forward" Ability { id: "6747", source: "Printed Worker" } +2059.2 "Omnidimensional Onslaught" Ability { id: "6748", source: "Frameworker" } +2070.4 "Print Workers" Ability { id: "6DBC", source: "Frameworker" } +2082.1 "Leap Forward" Ability { id: "6747", source: "Printed Worker" } +2095.6 "Print Workers" Ability { id: "6DBC", source: "Frameworker" } +2107.3 "Leap Forward" Ability { id: "6747", source: "Printed Worker" } +2112.0 "Leap Forward" Ability { id: "6746", source: "Frameworker" } + +2122.2 "Print Workers" Ability { id: "6DBC", source: "Frameworker" } +2133.9 "Leap Forward" Ability { id: "6747", source: "Printed Worker" } +2136.4 "Omnidimensional Onslaught" Ability { id: "6748", source: "Frameworker" } +2140.6 "Steel Beam" Ability { id: "6744", source: "Frameworker" } # ??? #~~~~~~~~~~~~~~~~# @@ -84,51 +84,51 @@ hideall "--sync--" # -ii 674C 6755 # The Frame will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:EC0:/ window 10000,0 -3009.0 "Explosives Distribution" sync / 1[56]:[^:]*:The Big Cheese:674E:/ -3022.2 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ -3028.2 "Piercing Missile" sync / 1[56]:[^:]*:The Big Cheese:6751:/ -3036.4 "Dispense Explosives" sync / 1[56]:[^:]*:The Big Cheese:6C30:/ -3037.6 "--sync--" sync / 1[56]:[^:]*:Excavation Bomb:6C34:/ -3041.6 "Explosives Distribution" sync / 1[56]:[^:]*:The Big Cheese:674E:/ -3054.8 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ -3058.8 "Explosive Power" sync / 1[56]:[^:]*:The Big Cheese:6C31:/ -3060.0 "Excavated" sync / 1[56]:[^:]*:Excavation Bomb:6C32:/ -3064.0 "Explosives Distribution" sync / 1[56]:[^:]*:The Big Cheese:674E:/ - -3077.1 "Left Disassembler/Right Disassembler" sync / 1[56]:[^:]*:The Big Cheese:(674F|6750):/ -3077.1 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ -3086.2 "Dispense Explosives" sync / 1[56]:[^:]*:The Big Cheese:6C30:/ -3087.4 "--sync--" sync / 1[56]:[^:]*:Excavation Bomb:6C34:/ -3091.4 "Explosives Distribution" sync / 1[56]:[^:]*:The Big Cheese:674E:/ -3104.6 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ -3108.6 "Electric Arc" sync / 1[56]:[^:]*:The Big Cheese:6753:/ -3121.2 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ - -3124.7 "Left Disassembler/Right Disassembler" sync / 1[56]:[^:]*:The Big Cheese:(674F|6750):/ -3137.8 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ -3141.9 "Leveling Missile" sync / 1[56]:[^:]*:The Big Cheese:6754:/ -3147.0 "Explosive Power" sync / 1[56]:[^:]*:The Big Cheese:6C31:/ -3148.2 "Excavated" sync / 1[56]:[^:]*:Excavation Bomb:6C32:/ -3158.2 "Piercing Missile" sync / 1[56]:[^:]*:The Big Cheese:6751:/ -3165.3 "Violent Discharge" sync / 1[56]:[^:]*:The Big Cheese:6752:/ -3173.4 "Explosives Distribution" sync / 1[56]:[^:]*:The Big Cheese:674E:/ - -3186.5 "Left Disassembler/Right Disassembler" sync / 1[56]:[^:]*:The Big Cheese:(674F|6750):/ -3186.5 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ -3196.6 "Dispense Explosives" sync / 1[56]:[^:]*:The Big Cheese:6C30:/ -3197.8 "--sync--" sync / 1[56]:[^:]*:Excavation Bomb:6C34:/ -3201.8 "Explosives Distribution" sync / 1[56]:[^:]*:The Big Cheese:674E:/ -3215.0 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ -3219.0 "Electric Arc" sync / 1[56]:[^:]*:The Big Cheese:6753:/ -3231.6 "Iron Kiss" sync / 1[56]:[^:]*:Bomb:674D:/ -3234.5 "Excavated" sync / 1[56]:[^:]*:Excavation Bomb:6C32:/ - -3235.1 "Left Disassembler/Right Disassembler" sync / 1[56]:[^:]*:The Big Cheese:(674F|6750):/ window 30,30 jump 3124.7 -3248.3 "Iron Kiss" #sync / 1[56]:[^:]*:Bomb:674D:/ -3252.3 "Leveling Missile" #sync / 1[56]:[^:]*:The Big Cheese:6754:/ -3257.4 "Explosive Power" #sync / 1[56]:[^:]*:The Big Cheese:6C31:/ -3258.6 "Excavated" #sync / 1[56]:[^:]*:Excavation Bomb:6C32:/ -3268.6 "Piercing Missile" #sync / 1[56]:[^:]*:The Big Cheese:6751:/ -3275.7 "Violent Discharge" #sync / 1[56]:[^:]*:The Big Cheese:6752:/ -3283.8 "Explosives Distribution" #sync / 1[56]:[^:]*:The Big Cheese:674E:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "EC0" } window 10000,0 +3009.0 "Explosives Distribution" Ability { id: "674E", source: "The Big Cheese" } +3022.2 "Iron Kiss" Ability { id: "674D", source: "Bomb" } +3028.2 "Piercing Missile" Ability { id: "6751", source: "The Big Cheese" } +3036.4 "Dispense Explosives" Ability { id: "6C30", source: "The Big Cheese" } +3037.6 "--sync--" Ability { id: "6C34", source: "Excavation Bomb" } +3041.6 "Explosives Distribution" Ability { id: "674E", source: "The Big Cheese" } +3054.8 "Iron Kiss" Ability { id: "674D", source: "Bomb" } +3058.8 "Explosive Power" Ability { id: "6C31", source: "The Big Cheese" } +3060.0 "Excavated" Ability { id: "6C32", source: "Excavation Bomb" } +3064.0 "Explosives Distribution" Ability { id: "674E", source: "The Big Cheese" } + +3077.1 "Left Disassembler/Right Disassembler" Ability { id: ["674F", "6750"], source: "The Big Cheese" } +3077.1 "Iron Kiss" Ability { id: "674D", source: "Bomb" } +3086.2 "Dispense Explosives" Ability { id: "6C30", source: "The Big Cheese" } +3087.4 "--sync--" Ability { id: "6C34", source: "Excavation Bomb" } +3091.4 "Explosives Distribution" Ability { id: "674E", source: "The Big Cheese" } +3104.6 "Iron Kiss" Ability { id: "674D", source: "Bomb" } +3108.6 "Electric Arc" Ability { id: "6753", source: "The Big Cheese" } +3121.2 "Iron Kiss" Ability { id: "674D", source: "Bomb" } + +3124.7 "Left Disassembler/Right Disassembler" Ability { id: ["674F", "6750"], source: "The Big Cheese" } +3137.8 "Iron Kiss" Ability { id: "674D", source: "Bomb" } +3141.9 "Leveling Missile" Ability { id: "6754", source: "The Big Cheese" } +3147.0 "Explosive Power" Ability { id: "6C31", source: "The Big Cheese" } +3148.2 "Excavated" Ability { id: "6C32", source: "Excavation Bomb" } +3158.2 "Piercing Missile" Ability { id: "6751", source: "The Big Cheese" } +3165.3 "Violent Discharge" Ability { id: "6752", source: "The Big Cheese" } +3173.4 "Explosives Distribution" Ability { id: "674E", source: "The Big Cheese" } + +3186.5 "Left Disassembler/Right Disassembler" Ability { id: ["674F", "6750"], source: "The Big Cheese" } +3186.5 "Iron Kiss" Ability { id: "674D", source: "Bomb" } +3196.6 "Dispense Explosives" Ability { id: "6C30", source: "The Big Cheese" } +3197.8 "--sync--" Ability { id: "6C34", source: "Excavation Bomb" } +3201.8 "Explosives Distribution" Ability { id: "674E", source: "The Big Cheese" } +3215.0 "Iron Kiss" Ability { id: "674D", source: "Bomb" } +3219.0 "Electric Arc" Ability { id: "6753", source: "The Big Cheese" } +3231.6 "Iron Kiss" Ability { id: "674D", source: "Bomb" } +3234.5 "Excavated" Ability { id: "6C32", source: "Excavation Bomb" } + +3235.1 "Left Disassembler/Right Disassembler" Ability { id: ["674F", "6750"], source: "The Big Cheese" } window 30,30 jump 3124.7 +3248.3 "Iron Kiss" #Ability { id: "674D", source: "Bomb" } +3252.3 "Leveling Missile" #Ability { id: "6754", source: "The Big Cheese" } +3257.4 "Explosive Power" #Ability { id: "6C31", source: "The Big Cheese" } +3258.6 "Excavated" #Ability { id: "6C32", source: "Excavation Bomb" } +3268.6 "Piercing Missile" #Ability { id: "6751", source: "The Big Cheese" } +3275.7 "Violent Discharge" #Ability { id: "6752", source: "The Big Cheese" } +3283.8 "Explosives Distribution" #Ability { id: "674E", source: "The Big Cheese" } diff --git a/ui/raidboss/data/06-ew/dungeon/stigma_dreamscape.txt b/ui/raidboss/data/06-ew/dungeon/stigma_dreamscape.txt index a078661868..8326d9d41f 100644 --- a/ui/raidboss/data/06-ew/dungeon/stigma_dreamscape.txt +++ b/ui/raidboss/data/06-ew/dungeon/stigma_dreamscape.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~~~~# @@ -12,25 +12,25 @@ hideall "--sync--" #~~~~~~~~~~~~~# # A-4 Command will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:ECF:/ window 0,1 -12.6 "Side Cannons" sync / 1[56]:[^:]*:Proto-Omega:(6320|6321):/ window 12.6,10 -24.2 "Forward Interceptors/Rear Interceptors" sync / 1[56]:[^:]*:Proto-Omega:(6322|6324):/ -29.3 "Chemical Missile" sync / 1[56]:[^:]*:Proto-Omega:6328:/ -34.4 "Burn" sync / 1[56]:[^:]*:Proto-Omega:6329:/ -40.6 "Electric Slide" sync / 1[56]:[^:]*:Proto-Omega:632A:/ window 30,30 -49.7 "Guided Missile" sync / 1[56]:[^:]*:Proto-Omega:6326:/ - -65.6 "Iron Kiss" sync / 1[56]:[^:]*:Mark II Guided Missile:6327:/ -73.0 "Electric Slide" sync / 1[56]:[^:]*:Proto-Omega:632A:/ -84.2 "Mustard Bomb" sync / 1[56]:[^:]*:Proto-Omega:632B:/ -96.4 "Side Cannons" sync / 1[56]:[^:]*:Proto-Omega:(6320|6321):/ window 10,10 -104.6 "Guided Missile" sync / 1[56]:[^:]*:Proto-Omega:6326:/ -111.7 "Chemical Missile" sync / 1[56]:[^:]*:Proto-Omega:6328:/ -116.8 "Burn" sync / 1[56]:[^:]*:Proto-Omega:6329:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "ECF" } window 0,1 +12.6 "Side Cannons" Ability { id: ["6320", "6321"], source: "Proto-Omega" } window 12.6,10 +24.2 "Forward Interceptors/Rear Interceptors" Ability { id: ["6322", "6324"], source: "Proto-Omega" } +29.3 "Chemical Missile" Ability { id: "6328", source: "Proto-Omega" } +34.4 "Burn" Ability { id: "6329", source: "Proto-Omega" } +40.6 "Electric Slide" Ability { id: "632A", source: "Proto-Omega" } window 30,30 +49.7 "Guided Missile" Ability { id: "6326", source: "Proto-Omega" } + +65.6 "Iron Kiss" Ability { id: "6327", source: "Mark II Guided Missile" } +73.0 "Electric Slide" Ability { id: "632A", source: "Proto-Omega" } +84.2 "Mustard Bomb" Ability { id: "632B", source: "Proto-Omega" } +96.4 "Side Cannons" Ability { id: ["6320", "6321"], source: "Proto-Omega" } window 10,10 +104.6 "Guided Missile" Ability { id: "6326", source: "Proto-Omega" } +111.7 "Chemical Missile" Ability { id: "6328", source: "Proto-Omega" } +116.8 "Burn" Ability { id: "6329", source: "Proto-Omega" } # TODO This is likely inaccurate, but it's all we have. # More data is needed. -120.4 "Iron Kiss" sync / 1[56]:[^:]*:Mark II Guided Missile:6327:/ jump 65.6 +120.4 "Iron Kiss" Ability { id: "6327", source: "Mark II Guided Missile" } jump 65.6 127.8 "Electric Slide" 139.0 "Mustard Bomb" 151.2 "Side Cannons" @@ -45,31 +45,31 @@ hideall "--sync--" # -ii 368 63AE 63B2 # A-4 Conquest will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:ED0:/ window 1000,10 -1010.7 "Wheel" sync / 1[56]:[^:]*:Arch-Lambda:63B5:/ window 1010.7,10 -1021.0 "--sync--" sync / 1[56]:[^:]*:Arch-Lambda:63AA:/ -1028.4 "Auto-mobile Assault Cannon" sync / 1[56]:[^:]*:Arch-Lambda:63AB:/ -1028.7 "Tread x4" duration 4 #sync / 1[56]:[^:]*:Arch-Lambda:63AC:/ -1032.1 "--sync--" sync / 1[56]:[^:]*:Arch-Lambda:63AD:/ -1036.3 "Wave Cannon" sync / 1[56]:[^:]*:Arch-Lambda:63AF:/ window 30,30 -1049.5 "Atomic Flame" sync / 1[56]:[^:]*:Arch-Lambda:63B4:/ -1061.8 "--sync--" sync / 1[56]:[^:]*:Arch-Lambda:63AA:/ -1070.7 "Auto-mobile Sniper Cannon" sync / 1[56]:[^:]*:Arch-Lambda:63B0:/ -1071.2 "Entrench" sync / 1[56]:[^:]*:Arch-Lambda:63B1:/ - -1080.9 "Wheel" sync / 1[56]:[^:]*:Arch-Lambda:63B5:/ window 30,30 -1091.1 "--sync--" sync / 1[56]:[^:]*:Arch-Lambda:63AA:/ -1098.6 "Auto-mobile Assault Cannon" sync / 1[56]:[^:]*:Arch-Lambda:63AB:/ -1098.9 "Tread x4" duration 4 #sync / 1[56]:[^:]*:Arch-Lambda:63AC:/ -1102.2 "--sync--" sync / 1[56]:[^:]*:Arch-Lambda:63AD:/ -1106.4 "Wave Cannon" sync / 1[56]:[^:]*:Arch-Lambda:63AF:/ window 30,30 -1119.6 "Atomic Flame" sync / 1[56]:[^:]*:Arch-Lambda:63B4:/ -1131.9 "--sync--" sync / 1[56]:[^:]*:Arch-Lambda:63AA:/ -1140.8 "Auto-mobile Sniper Cannon" sync / 1[56]:[^:]*:Arch-Lambda:63B0:/ -1141.3 "Entrench" sync / 1[56]:[^:]*:Arch-Lambda:63B1:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "ED0" } window 1000,10 +1010.7 "Wheel" Ability { id: "63B5", source: "Arch-Lambda" } window 1010.7,10 +1021.0 "--sync--" Ability { id: "63AA", source: "Arch-Lambda" } +1028.4 "Auto-mobile Assault Cannon" Ability { id: "63AB", source: "Arch-Lambda" } +1028.7 "Tread x4" duration 4 #Ability { id: "63AC", source: "Arch-Lambda" } +1032.1 "--sync--" Ability { id: "63AD", source: "Arch-Lambda" } +1036.3 "Wave Cannon" Ability { id: "63AF", source: "Arch-Lambda" } window 30,30 +1049.5 "Atomic Flame" Ability { id: "63B4", source: "Arch-Lambda" } +1061.8 "--sync--" Ability { id: "63AA", source: "Arch-Lambda" } +1070.7 "Auto-mobile Sniper Cannon" Ability { id: "63B0", source: "Arch-Lambda" } +1071.2 "Entrench" Ability { id: "63B1", source: "Arch-Lambda" } + +1080.9 "Wheel" Ability { id: "63B5", source: "Arch-Lambda" } window 30,30 +1091.1 "--sync--" Ability { id: "63AA", source: "Arch-Lambda" } +1098.6 "Auto-mobile Assault Cannon" Ability { id: "63AB", source: "Arch-Lambda" } +1098.9 "Tread x4" duration 4 #Ability { id: "63AC", source: "Arch-Lambda" } +1102.2 "--sync--" Ability { id: "63AD", source: "Arch-Lambda" } +1106.4 "Wave Cannon" Ability { id: "63AF", source: "Arch-Lambda" } window 30,30 +1119.6 "Atomic Flame" Ability { id: "63B4", source: "Arch-Lambda" } +1131.9 "--sync--" Ability { id: "63AA", source: "Arch-Lambda" } +1140.8 "Auto-mobile Sniper Cannon" Ability { id: "63B0", source: "Arch-Lambda" } +1141.3 "Entrench" Ability { id: "63B1", source: "Arch-Lambda" } # TODO: Probably the loop point? More data needed. -1151.0 "Wheel" sync / 1[56]:[^:]*:Arch-Lambda:63B5:/ window 30,30 jump 1080.9 +1151.0 "Wheel" Ability { id: "63B5", source: "Arch-Lambda" } window 30,30 jump 1080.9 1168.7 "Auto-mobile Assault Cannon" 1169.0 "Tread x4" 1176.5 "Wave Cannon" @@ -85,43 +85,43 @@ hideall "--sync--" # -ii 6435 # A-4 Headquarters will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:ED2:/ window 2000,1 -2010.0 "AI Takeover" sync / 1[56]:[^:]*:Stigma-4:6429:/ -2015.6 "Touchdown?" sync / 1[56]:[^:]*:Hybrid Dragon:68F9:/ -2024.7 "Proto-wave Cannon?" sync / 1[56]:[^:]*:Omega Frame:(642A|642B):/ -2024.7 "Fire Breath?" sync / 1[56]:[^:]*:Hybrid Dragon:642E:/ -2031.3 "AI Takeover" sync / 1[56]:[^:]*:Stigma-4:6429:/ -2037.1 "Touchdown?" sync / 1[56]:[^:]*:Hybrid Dragon:68F9:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "ED2" } window 2000,1 +2010.0 "AI Takeover" Ability { id: "6429", source: "Stigma-4" } +2015.6 "Touchdown?" Ability { id: "68F9", source: "Hybrid Dragon" } +2024.7 "Proto-wave Cannon?" Ability { id: ["642A", "642B"], source: "Omega Frame" } +2024.7 "Fire Breath?" Ability { id: "642E", source: "Hybrid Dragon" } +2031.3 "AI Takeover" Ability { id: "6429", source: "Stigma-4" } +2037.1 "Touchdown?" Ability { id: "68F9", source: "Hybrid Dragon" } 2044.5 "Self-Destruct?" # 14.7s cast time, cast seems to start 5.1s after Breath/Cannon -2046.2 "Fire Breath?" sync / 1[56]:[^:]*:Hybrid Dragon:642E:/ -2046.2 "Proto-wave Cannon?" sync / 1[56]:[^:]*:Omega Frame:(642A|642B):/ -2052.6 "AI Takeover" sync / 1[56]:[^:]*:Stigma-4:6429:/ -2061.5 "Rush" sync / 1[56]:[^:]*:Proto-rocket Punch:642D:/ window 30,30 +2046.2 "Fire Breath?" Ability { id: "642E", source: "Hybrid Dragon" } +2046.2 "Proto-wave Cannon?" Ability { id: ["642A", "642B"], source: "Omega Frame" } +2052.6 "AI Takeover" Ability { id: "6429", source: "Stigma-4" } +2061.5 "Rush" Ability { id: "642D", source: "Proto-rocket Punch" } window 30,30 2066.0 "Self-Destruct?" -2067.0 "--sync--" sync / 1[56]:[^:]*:Stigma-4:6433:/ -2077.0 "Electromagnetic Release" sync / 1[56]:[^:]*:Stigma-4:6434:/ -2085.1 "--sync--" sync / 1[56]:[^:]*:Stigma-4:6431:/ -2095.1 "Electromagnetic Release" sync / 1[56]:[^:]*:Stigma-4:6432:/ -2108.2 "Mindhack" sync / 1[56]:[^:]*:Stigma-4:6430:/ window 30,30 -2113.4 "--sync--" sync / 1[56]:[^:]*:Stigma-4:(6431|6433):/ -2123.4 "Electromagnetic Release" sync / 1[56]:[^:]*:Stigma-4:(6432|6434):/ -2132.5 "Atomic Ray" sync / 1[56]:[^:]*:Stigma-4:6436:/ -2142.7 "Multi-AI Takeover" sync / 1[56]:[^:]*:Stigma-4:6C4B:/ -2148.4 "Touchdown?" sync / 1[56]:[^:]*:Hybrid Dragon:68F9:/ -2151.6 "Rush" sync / 1[56]:[^:]*:Proto-rocket Punch:642D:/ window 30,30 -2157.5 "Fire Breath?" sync / 1[56]:[^:]*:Hybrid Dragon:642E:/ -2157.5 "Proto-wave Cannon?" sync / 1[56]:[^:]*:Omega Frame:(642A|642B):/ +2067.0 "--sync--" Ability { id: "6433", source: "Stigma-4" } +2077.0 "Electromagnetic Release" Ability { id: "6434", source: "Stigma-4" } +2085.1 "--sync--" Ability { id: "6431", source: "Stigma-4" } +2095.1 "Electromagnetic Release" Ability { id: "6432", source: "Stigma-4" } +2108.2 "Mindhack" Ability { id: "6430", source: "Stigma-4" } window 30,30 +2113.4 "--sync--" Ability { id: ["6431", "6433"], source: "Stigma-4" } +2123.4 "Electromagnetic Release" Ability { id: ["6432", "6434"], source: "Stigma-4" } +2132.5 "Atomic Ray" Ability { id: "6436", source: "Stigma-4" } +2142.7 "Multi-AI Takeover" Ability { id: "6C4B", source: "Stigma-4" } +2148.4 "Touchdown?" Ability { id: "68F9", source: "Hybrid Dragon" } +2151.6 "Rush" Ability { id: "642D", source: "Proto-rocket Punch" } window 30,30 +2157.5 "Fire Breath?" Ability { id: "642E", source: "Hybrid Dragon" } +2157.5 "Proto-wave Cannon?" Ability { id: ["642A", "642B"], source: "Omega Frame" } # TODO: Still not a loop, more data is needed -2168.1 "Mindhack" sync / 1[56]:[^:]*:Stigma-4:6430:/ window 30,30 -2172.2 "--sync--" sync / 1[56]:[^:]*:Stigma-4:(6431|6433):/ +2168.1 "Mindhack" Ability { id: "6430", source: "Stigma-4" } window 30,30 +2172.2 "--sync--" Ability { id: ["6431", "6433"], source: "Stigma-4" } 2177.3 "Self-Destruct?" -2182.2 "Electromagnetic Release" sync / 1[56]:[^:]*:Stigma-4:(6432|6434):/ -2192.3 "Multi-AI Takeover" sync / 1[56]:[^:]*:Stigma-4:6C4B:/ -2198.0 "Touchdown?" sync / 1[56]:[^:]*:Hybrid Dragon:68F9:/ -2201.1 "Rush" sync / 1[56]:[^:]*:Proto-rocket Punch:642D:/ window 30,30 -2207.1 "Fire Breath?" sync / 1[56]:[^:]*:Hybrid Dragon:642E:/ -2207.1 "Proto-wave Cannon?" sync / 1[56]:[^:]*:Omega Frame:(642A|642B):/ -2217.6 "Atomic Ray" sync / 1[56]:[^:]*:Stigma-4:6436:/ +2182.2 "Electromagnetic Release" Ability { id: ["6432", "6434"], source: "Stigma-4" } +2192.3 "Multi-AI Takeover" Ability { id: "6C4B", source: "Stigma-4" } +2198.0 "Touchdown?" Ability { id: "68F9", source: "Hybrid Dragon" } +2201.1 "Rush" Ability { id: "642D", source: "Proto-rocket Punch" } window 30,30 +2207.1 "Fire Breath?" Ability { id: "642E", source: "Hybrid Dragon" } +2207.1 "Proto-wave Cannon?" Ability { id: ["642A", "642B"], source: "Omega Frame" } +2217.6 "Atomic Ray" Ability { id: "6436", source: "Stigma-4" } # ??? diff --git a/ui/raidboss/data/06-ew/dungeon/the_aitiascope.txt b/ui/raidboss/data/06-ew/dungeon/the_aitiascope.txt index 71423a29a1..c0134beff9 100644 --- a/ui/raidboss/data/06-ew/dungeon/the_aitiascope.txt +++ b/ui/raidboss/data/06-ew/dungeon/the_aitiascope.txt @@ -6,7 +6,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~~~~~~~~~~~~~# # LIVIA THE UNDETERRED # @@ -16,46 +16,46 @@ hideall "--sync--" # -ii 60C3 6444 6446 # Central Observatory will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:F98:/ window 10000,0 -1012.0 "Frustration" sync / 1[56]:[^:]*:Livia the Undeterred:6448:/ -1022.2 "Aglaea Bite" sync / 1[56]:[^:]*:Livia the Undeterred:6449:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "F98" } window 10000,0 +1012.0 "Frustration" Ability { id: "6448", source: "Livia the Undeterred" } +1022.2 "Aglaea Bite" Ability { id: "6449", source: "Livia the Undeterred" } 1029.3 "--middle--" -1037.3 "Aglaea Climb" sync / 1[56]:[^:]*:Livia the Undeterred:644[23]:/ -1047.4 "Aglaea Climb" sync / 1[56]:[^:]*:Livia the Undeterred:644[23]:/ -1057.8 "Aglaea Shot 1" sync / 1[56]:[^:]*:Livia the Undeterred:6445:/ -1068.0 "Aglaea Shot 2" sync / 1[56]:[^:]*:Aethershot:6447:/ - -1079.0 "Odi et Amo" sync / 1[56]:[^:]*:Livia the Undeterred:644B:/ -1083.9 "Ignis Amoris" sync / 1[56]:[^:]*:Livia the Undeterred:644C:/ -1089.1 "Ignis Odi" sync / 1[56]:[^:]*:Livia the Undeterred:644D:/ -1094.4 "Disparagement" sync / 1[56]:[^:]*:Livia the Undeterred:644A:/ - -1105.6 "Frustration" sync / 1[56]:[^:]*:Livia the Undeterred:6448:/ -1117.0 "Aglaea Shot 1" sync / 1[56]:[^:]*:Livia the Undeterred:6445:/ -1127.1 "Aglaea Climb" sync / 1[56]:[^:]*:Livia the Undeterred:644[23]:/ -1128.2 "Aglaea Shot 2" sync / 1[56]:[^:]*:Aethershot:6447:/ - -1138.3 "Frustration" sync / 1[56]:[^:]*:Livia the Undeterred:6448:/ -1150.6 "Odi et Amo" sync / 1[56]:[^:]*:Livia the Undeterred:644B:/ -1155.5 "Ignis Amoris" sync / 1[56]:[^:]*:Livia the Undeterred:644C:/ -1160.7 "Ignis Odi" sync / 1[56]:[^:]*:Livia the Undeterred:644D:/ -1167.7 "Aglaea Climb" sync / 1[56]:[^:]*:Livia the Undeterred:644[23]:/ - -1180.8 "Frustration" sync / 1[56]:[^:]*:Livia the Undeterred:6448:/ -1194.0 "Aglaea Bite" sync / 1[56]:[^:]*:Livia the Undeterred:6449:/ -1207.4 "Disparagement" sync / 1[56]:[^:]*:Livia the Undeterred:644A:/ -1218.8 "Aglaea Shot 1" sync / 1[56]:[^:]*:Livia the Undeterred:6445:/ -1229.0 "Aglaea Shot 2" sync / 1[56]:[^:]*:Aethershot:6447:/ - -1240.0 "Odi et Amo" sync / 1[56]:[^:]*:Livia the Undeterred:644B:/ window 50,50 jump 1079.0 -1244.9 "Ignis Amoris" #sync / 1[56]:[^:]*:Livia the Undeterred:644C:/ -1250.1 "Ignis Odi" #sync / 1[56]:[^:]*:Livia the Undeterred:644D:/ -1255.4 "Disparagement" #sync / 1[56]:[^:]*:Livia the Undeterred:644A:/ - -1266.6 "Frustration" #sync / 1[56]:[^:]*:Livia the Undeterred:6448:/ -1278.0 "Aglaea Shot 1" #sync / 1[56]:[^:]*:Livia the Undeterred:6445:/ -1288.1 "Aglaea Climb" #sync / 1[56]:[^:]*:Livia the Undeterred:644[23]:/ -1289.2 "Aglaea Shot 2" #sync / 1[56]:[^:]*:Aethershot:6447:/ +1037.3 "Aglaea Climb" Ability { id: "644[23]", source: "Livia the Undeterred" } +1047.4 "Aglaea Climb" Ability { id: "644[23]", source: "Livia the Undeterred" } +1057.8 "Aglaea Shot 1" Ability { id: "6445", source: "Livia the Undeterred" } +1068.0 "Aglaea Shot 2" Ability { id: "6447", source: "Aethershot" } + +1079.0 "Odi et Amo" Ability { id: "644B", source: "Livia the Undeterred" } +1083.9 "Ignis Amoris" Ability { id: "644C", source: "Livia the Undeterred" } +1089.1 "Ignis Odi" Ability { id: "644D", source: "Livia the Undeterred" } +1094.4 "Disparagement" Ability { id: "644A", source: "Livia the Undeterred" } + +1105.6 "Frustration" Ability { id: "6448", source: "Livia the Undeterred" } +1117.0 "Aglaea Shot 1" Ability { id: "6445", source: "Livia the Undeterred" } +1127.1 "Aglaea Climb" Ability { id: "644[23]", source: "Livia the Undeterred" } +1128.2 "Aglaea Shot 2" Ability { id: "6447", source: "Aethershot" } + +1138.3 "Frustration" Ability { id: "6448", source: "Livia the Undeterred" } +1150.6 "Odi et Amo" Ability { id: "644B", source: "Livia the Undeterred" } +1155.5 "Ignis Amoris" Ability { id: "644C", source: "Livia the Undeterred" } +1160.7 "Ignis Odi" Ability { id: "644D", source: "Livia the Undeterred" } +1167.7 "Aglaea Climb" Ability { id: "644[23]", source: "Livia the Undeterred" } + +1180.8 "Frustration" Ability { id: "6448", source: "Livia the Undeterred" } +1194.0 "Aglaea Bite" Ability { id: "6449", source: "Livia the Undeterred" } +1207.4 "Disparagement" Ability { id: "644A", source: "Livia the Undeterred" } +1218.8 "Aglaea Shot 1" Ability { id: "6445", source: "Livia the Undeterred" } +1229.0 "Aglaea Shot 2" Ability { id: "6447", source: "Aethershot" } + +1240.0 "Odi et Amo" Ability { id: "644B", source: "Livia the Undeterred" } window 50,50 jump 1079.0 +1244.9 "Ignis Amoris" #Ability { id: "644C", source: "Livia the Undeterred" } +1250.1 "Ignis Odi" #Ability { id: "644D", source: "Livia the Undeterred" } +1255.4 "Disparagement" #Ability { id: "644A", source: "Livia the Undeterred" } + +1266.6 "Frustration" #Ability { id: "6448", source: "Livia the Undeterred" } +1278.0 "Aglaea Shot 1" #Ability { id: "6445", source: "Livia the Undeterred" } +1288.1 "Aglaea Climb" #Ability { id: "644[23]", source: "Livia the Undeterred" } +1289.2 "Aglaea Shot 2" #Ability { id: "6447", source: "Aethershot" } #~~~~~~~~~~~~~~~~~~~~~~~~~~# @@ -66,45 +66,45 @@ hideall "--sync--" # -ii 6454 # Saltcrystal Strings will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:F99:/ window 10000,0 -2012.0 "Tartarean Impact" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6455:/ -2020.5 "Tartarean Spark" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6457:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "F99" } window 10000,0 +2012.0 "Tartarean Impact" Ability { id: "6455", source: "Rhitahtyn the Unshakable" } +2020.5 "Tartarean Spark" Ability { id: "6457", source: "Rhitahtyn the Unshakable" } # Initial Shield Skewer -2027.7 "--north--" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6458:/ -2034.0 "Vexillatio" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:644E:/ -2034.0 "Impact" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:644F:/ -2048.1 "Shield Skewer" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6450:/ -2051.3 "--middle--" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6458:/ -2059.5 "Anvil of Tartarus" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6456:/ -2065.7 "--sync--" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6458:/ -2071.0 "Shrapnel Shell" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6452:/ -2086.2 "Tartarean Spark" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6457:/ -2098.4 "Tartarean Impact" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6455:/ +2027.7 "--north--" Ability { id: "6458", source: "Rhitahtyn the Unshakable" } +2034.0 "Vexillatio" Ability { id: "644E", source: "Rhitahtyn the Unshakable" } +2034.0 "Impact" Ability { id: "644F", source: "Rhitahtyn the Unshakable" } +2048.1 "Shield Skewer" Ability { id: "6450", source: "Rhitahtyn the Unshakable" } +2051.3 "--middle--" Ability { id: "6458", source: "Rhitahtyn the Unshakable" } +2059.5 "Anvil of Tartarus" Ability { id: "6456", source: "Rhitahtyn the Unshakable" } +2065.7 "--sync--" Ability { id: "6458", source: "Rhitahtyn the Unshakable" } +2071.0 "Shrapnel Shell" Ability { id: "6452", source: "Rhitahtyn the Unshakable" } +2086.2 "Tartarean Spark" Ability { id: "6457", source: "Rhitahtyn the Unshakable" } +2098.4 "Tartarean Impact" Ability { id: "6455", source: "Rhitahtyn the Unshakable" } # Shield Skewer with Shrapnel Shell -2105.6 "--north--" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6458:/ -2111.9 "Vexillatio" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:644E:/ -2111.9 "Impact" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:644F:/ -2118.0 "Shrapnel Shell" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6452:/ -2132.2 "Shield Skewer" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6450:/ -2135.3 "--middle--" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6458:/ -2142.4 "Tartarean Impact" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6455:/ -2150.6 "--sync--" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6458:/ -2155.8 "Shrapnel Shell" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6452:/ -2162.1 "Tartarean Spark" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6457:/ -2168.4 "Tartarean Spark" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6457:/ -2176.6 "Anvil of Tartarus" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6456:/ -2188.7 "Tartarean Impact" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6455:/ -2200.9 "Tartarean Impact" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6455:/ +2105.6 "--north--" Ability { id: "6458", source: "Rhitahtyn the Unshakable" } +2111.9 "Vexillatio" Ability { id: "644E", source: "Rhitahtyn the Unshakable" } +2111.9 "Impact" Ability { id: "644F", source: "Rhitahtyn the Unshakable" } +2118.0 "Shrapnel Shell" Ability { id: "6452", source: "Rhitahtyn the Unshakable" } +2132.2 "Shield Skewer" Ability { id: "6450", source: "Rhitahtyn the Unshakable" } +2135.3 "--middle--" Ability { id: "6458", source: "Rhitahtyn the Unshakable" } +2142.4 "Tartarean Impact" Ability { id: "6455", source: "Rhitahtyn the Unshakable" } +2150.6 "--sync--" Ability { id: "6458", source: "Rhitahtyn the Unshakable" } +2155.8 "Shrapnel Shell" Ability { id: "6452", source: "Rhitahtyn the Unshakable" } +2162.1 "Tartarean Spark" Ability { id: "6457", source: "Rhitahtyn the Unshakable" } +2168.4 "Tartarean Spark" Ability { id: "6457", source: "Rhitahtyn the Unshakable" } +2176.6 "Anvil of Tartarus" Ability { id: "6456", source: "Rhitahtyn the Unshakable" } +2188.7 "Tartarean Impact" Ability { id: "6455", source: "Rhitahtyn the Unshakable" } +2200.9 "Tartarean Impact" Ability { id: "6455", source: "Rhitahtyn the Unshakable" } # Guessing this is the loop. Have only seen up to 2239.8 in logs. -2210.1 "--north--" sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6458:/ window 30,30 jump 2105.6 -2216.4 "Vexillatio" #sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:644E:/ -2216.4 "Impact" #sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:644F:/ -2222.5 "Shrapnel Shell" #sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6452:/ -2236.7 "Shield Skewer" #sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6450:/ -2239.8 "--middle--" #sync / 1[56]:[^:]*:Rhitahtyn the Unshakable:6458:/ +2210.1 "--north--" Ability { id: "6458", source: "Rhitahtyn the Unshakable" } window 30,30 jump 2105.6 +2216.4 "Vexillatio" #Ability { id: "644E", source: "Rhitahtyn the Unshakable" } +2216.4 "Impact" #Ability { id: "644F", source: "Rhitahtyn the Unshakable" } +2222.5 "Shrapnel Shell" #Ability { id: "6452", source: "Rhitahtyn the Unshakable" } +2236.7 "Shield Skewer" #Ability { id: "6450", source: "Rhitahtyn the Unshakable" } +2239.8 "--middle--" #Ability { id: "6458", source: "Rhitahtyn the Unshakable" } #~~~~~~~~~~~~~~~~~~# @@ -115,102 +115,102 @@ hideall "--sync--" # -ii 6088 # Midnight Downwell will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:F9A:/ window 10000,0 -3012.0 "Dark Forte" sync / 1[56]:[^:]*:Amon the Undying:6464:/ -3022.2 "Thundaga Forte (proximity)" sync / 1[56]:[^:]*:Amon the Undying:645A:/ -3028.0 "Thundaga Forte 1" sync / 1[56]:[^:]*:Amon the Undying:645B:/ -3034.0 "Thundaga Forte 2" sync / 1[56]:[^:]*:Amon the Undying:645C:/ -3038.4 "Strophe" sync / 1[56]:[^:]*:Amon the Undying:645D:/ -3044.5 "Antistrophe" sync / 1[56]:[^:]*:Amon the Undying:645E:/ -3053.3 "Epode" sync / 1[56]:[^:]*:Amon the Undying:645F:/ -3061.7 "Left Firaga Forte/Right Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:646[01]:/ -3071.8 "Entr'acte" sync / 1[56]:[^:]*:Amon the Undying:6465:/ -3086.0 "Eruption Forte" sync / 1[56]:[^:]*:Amon the Undying:6468:/ -3091.0 "--sync--" sync / 1[56]:[^:]*:Ysayle's Spirit:6467:/ -3093.0 "Eruption Forte" sync / 1[56]:[^:]*:Amon the Undying:6468:/ - -3105.7 "Dreams of Ice" sync / 1[56]:[^:]*:Ysayle's Spirit:6C6C:/ -3111.0 "Curtain Call" sync / 1[56]:[^:]*:Amon the Undying:6466:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "F9A" } window 10000,0 +3012.0 "Dark Forte" Ability { id: "6464", source: "Amon the Undying" } +3022.2 "Thundaga Forte (proximity)" Ability { id: "645A", source: "Amon the Undying" } +3028.0 "Thundaga Forte 1" Ability { id: "645B", source: "Amon the Undying" } +3034.0 "Thundaga Forte 2" Ability { id: "645C", source: "Amon the Undying" } +3038.4 "Strophe" Ability { id: "645D", source: "Amon the Undying" } +3044.5 "Antistrophe" Ability { id: "645E", source: "Amon the Undying" } +3053.3 "Epode" Ability { id: "645F", source: "Amon the Undying" } +3061.7 "Left Firaga Forte/Right Firaga Forte" Ability { id: "646[01]", source: "Amon the Undying" } +3071.8 "Entr'acte" Ability { id: "6465", source: "Amon the Undying" } +3086.0 "Eruption Forte" Ability { id: "6468", source: "Amon the Undying" } +3091.0 "--sync--" Ability { id: "6467", source: "Ysayle's Spirit" } +3093.0 "Eruption Forte" Ability { id: "6468", source: "Amon the Undying" } + +3105.7 "Dreams of Ice" Ability { id: "6C6C", source: "Ysayle's Spirit" } +3111.0 "Curtain Call" Ability { id: "6466", source: "Amon the Undying" } # post curtain-call branching # TODO: unclear if once post jump it keeps the pattern of Strophe vs Thundaga first, or if random. # 4/4 pulls that saw this all had the same, but that's not quite enough confidence. # -> Strophe first, then Thundaga? -3119.2 "--sync--" sync / 14:[^:]*:Amon the Undying:645D:/ jump 4119.2 window 50,50 -3122.2 "Strophe?" #sync / 1[56]:[^:]*:Amon the Undying:645D:/ -3128.3 "Antistrophe?" #sync / 1[56]:[^:]*:Amon the Undying:645E:/ -3137.1 "Epode?" #sync / 1[56]:[^:]*:Amon the Undying:645F:/ +3119.2 "--sync--" StartsUsing { id: "645D", source: "Amon the Undying" } jump 4119.2 window 50,50 +3122.2 "Strophe?" #Ability { id: "645D", source: "Amon the Undying" } +3128.3 "Antistrophe?" #Ability { id: "645E", source: "Amon the Undying" } +3137.1 "Epode?" #Ability { id: "645F", source: "Amon the Undying" } # -> Thundaga first, then Strophe? -3119.2 "--sync--" sync / 14:[^:]*:Amon the Undying:645A:/ jump 5119.2 window 50,50 -3124.2 "Thundaga Forte (proximity)?" #sync / 1[56]:[^:]*:Amon the Undying:645A:/ -3130.0 "Thundaga Forte 1?" #sync / 1[56]:[^:]*:Amon the Undying:645B:/ -3136.0 "Thundaga Forte 2?" #sync / 1[56]:[^:]*:Amon the Undying:645C:/ +3119.2 "--sync--" StartsUsing { id: "645A", source: "Amon the Undying" } jump 5119.2 window 50,50 +3124.2 "Thundaga Forte (proximity)?" #Ability { id: "645A", source: "Amon the Undying" } +3130.0 "Thundaga Forte 1?" #Ability { id: "645B", source: "Amon the Undying" } +3136.0 "Thundaga Forte 2?" #Ability { id: "645C", source: "Amon the Undying" } ### Strophe -> Thundaga -> shared Eruption section -> (Strophe or Thundaga) -4119.2 "--sync--" sync / 14:[^:]*:Amon the Undying:645D:/ -4122.2 "Strophe" sync / 1[56]:[^:]*:Amon the Undying:645D:/ -4128.3 "Antistrophe" sync / 1[56]:[^:]*:Amon the Undying:645E:/ -4137.1 "Epode" sync / 1[56]:[^:]*:Amon the Undying:645F:/ -4146.4 "Left Firaga Forte/Right Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:646[01]:/ -4154.5 "Dark Forte" sync / 1[56]:[^:]*:Amon the Undying:6464:/ -4167.7 "Thundaga Forte (proximity)" sync / 1[56]:[^:]*:Amon the Undying:645A:/ -4173.5 "Thundaga Forte 1" sync / 1[56]:[^:]*:Amon the Undying:645B:/ -4179.5 "Thundaga Forte 2" sync / 1[56]:[^:]*:Amon the Undying:645C:/ -4186.9 "Left Firaga Forte/Right Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:646[01]:/ -4195.1 "Entr'acte" sync / 1[56]:[^:]*:Amon the Undying:6465:/ - -4206.3 "Eruption Forte" sync / 1[56]:[^:]*:Amon the Undying:6085:/ -4210.3 "Eruption Forte" sync / 1[56]:[^:]*:Amon the Undying:6468:/ -4220.5 "Left Firaga Forte/Right Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:646[01]:/ -4230.7 "Left Firaga Forte/Right Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:646[01]:/ -4238.9 "Entr'acte" sync / 1[56]:[^:]*:Amon the Undying:6465:/ -4247.0 "Dark Forte" sync / 1[56]:[^:]*:Amon the Undying:6464:/ -4255.1 "Entr'acte" sync / 1[56]:[^:]*:Amon the Undying:6465:/ +4119.2 "--sync--" StartsUsing { id: "645D", source: "Amon the Undying" } +4122.2 "Strophe" Ability { id: "645D", source: "Amon the Undying" } +4128.3 "Antistrophe" Ability { id: "645E", source: "Amon the Undying" } +4137.1 "Epode" Ability { id: "645F", source: "Amon the Undying" } +4146.4 "Left Firaga Forte/Right Firaga Forte" Ability { id: "646[01]", source: "Amon the Undying" } +4154.5 "Dark Forte" Ability { id: "6464", source: "Amon the Undying" } +4167.7 "Thundaga Forte (proximity)" Ability { id: "645A", source: "Amon the Undying" } +4173.5 "Thundaga Forte 1" Ability { id: "645B", source: "Amon the Undying" } +4179.5 "Thundaga Forte 2" Ability { id: "645C", source: "Amon the Undying" } +4186.9 "Left Firaga Forte/Right Firaga Forte" Ability { id: "646[01]", source: "Amon the Undying" } +4195.1 "Entr'acte" Ability { id: "6465", source: "Amon the Undying" } + +4206.3 "Eruption Forte" Ability { id: "6085", source: "Amon the Undying" } +4210.3 "Eruption Forte" Ability { id: "6468", source: "Amon the Undying" } +4220.5 "Left Firaga Forte/Right Firaga Forte" Ability { id: "646[01]", source: "Amon the Undying" } +4230.7 "Left Firaga Forte/Right Firaga Forte" Ability { id: "646[01]", source: "Amon the Undying" } +4238.9 "Entr'acte" Ability { id: "6465", source: "Amon the Undying" } +4247.0 "Dark Forte" Ability { id: "6464", source: "Amon the Undying" } +4255.1 "Entr'acte" Ability { id: "6465", source: "Amon the Undying" } # -> Strophe first, then Thundaga? -4267.3 "--sync--" sync / 14:[^:]*:Amon the Undying:645D:/ jump 4119.2 window 50,50 -4270.3 "Strophe?" #sync / 1[56]:[^:]*:Amon the Undying:645D:/ -4276.4 "Antistrophe?" #sync / 1[56]:[^:]*:Amon the Undying:645E:/ -4285.2 "Epode?" #sync / 1[56]:[^:]*:Amon the Undying:645F:/ +4267.3 "--sync--" StartsUsing { id: "645D", source: "Amon the Undying" } jump 4119.2 window 50,50 +4270.3 "Strophe?" #Ability { id: "645D", source: "Amon the Undying" } +4276.4 "Antistrophe?" #Ability { id: "645E", source: "Amon the Undying" } +4285.2 "Epode?" #Ability { id: "645F", source: "Amon the Undying" } # -> Thundaga first, then Strophe? -4267.3 "--sync--" sync / 14:[^:]*:Amon the Undying:645A:/ jump 5119.2 window 50,50 -4272.3 "Thundaga Forte (proximity)?" #sync / 1[56]:[^:]*:Amon the Undying:645A:/ -4278.1 "Thundaga Forte 1?" #sync / 1[56]:[^:]*:Amon the Undying:645B:/ -4284.1 "Thundaga Forte 2?" #sync / 1[56]:[^:]*:Amon the Undying:645C:/ +4267.3 "--sync--" StartsUsing { id: "645A", source: "Amon the Undying" } jump 5119.2 window 50,50 +4272.3 "Thundaga Forte (proximity)?" #Ability { id: "645A", source: "Amon the Undying" } +4278.1 "Thundaga Forte 1?" #Ability { id: "645B", source: "Amon the Undying" } +4284.1 "Thundaga Forte 2?" #Ability { id: "645C", source: "Amon the Undying" } ### Thundaga -> Strophe -> shared Eruption section -> (Strophe or Thundaga) -5119.2 "--sync--" sync / 14:[^:]*:Amon the Undying:645A:/ -5124.2 "Thundaga Forte" sync / 1[56]:[^:]*:Amon the Undying:645A:/ -5130.0 "Thundaga Forte" sync / 1[56]:[^:]*:Amon the Undying:645B:/ -5136.0 "Thundaga Forte" sync / 1[56]:[^:]*:Amon the Undying:645C:/ -5143.4 "Left Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:6461:/ -5151.6 "Entr'acte" sync / 1[56]:[^:]*:Amon the Undying:6465:/ -5162.8 "Strophe" sync / 1[56]:[^:]*:Amon the Undying:645D:/ -5168.9 "Antistrophe" sync / 1[56]:[^:]*:Amon the Undying:645E:/ -5177.7 "Epode" sync / 1[56]:[^:]*:Amon the Undying:645F:/ -5187.0 "Right Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:6460:/ -5195.2 "Dark Forte" sync / 1[56]:[^:]*:Amon the Undying:6464:/ - -5206.3 "Eruption Forte" sync / 1[56]:[^:]*:Amon the Undying:6085:/ -5210.3 "Eruption Forte" sync / 1[56]:[^:]*:Amon the Undying:6468:/ -5220.5 "Left Firaga Forte/Right Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:646[01]:/ -5230.7 "Left Firaga Forte/Right Firaga Forte" sync / 1[56]:[^:]*:Amon the Undying:646[01]:/ -5238.9 "Entr'acte" sync / 1[56]:[^:]*:Amon the Undying:6465:/ -5247.0 "Dark Forte" sync / 1[56]:[^:]*:Amon the Undying:6464:/ -5255.1 "Entr'acte" sync / 1[56]:[^:]*:Amon the Undying:6465:/ +5119.2 "--sync--" StartsUsing { id: "645A", source: "Amon the Undying" } +5124.2 "Thundaga Forte" Ability { id: "645A", source: "Amon the Undying" } +5130.0 "Thundaga Forte" Ability { id: "645B", source: "Amon the Undying" } +5136.0 "Thundaga Forte" Ability { id: "645C", source: "Amon the Undying" } +5143.4 "Left Firaga Forte" Ability { id: "6461", source: "Amon the Undying" } +5151.6 "Entr'acte" Ability { id: "6465", source: "Amon the Undying" } +5162.8 "Strophe" Ability { id: "645D", source: "Amon the Undying" } +5168.9 "Antistrophe" Ability { id: "645E", source: "Amon the Undying" } +5177.7 "Epode" Ability { id: "645F", source: "Amon the Undying" } +5187.0 "Right Firaga Forte" Ability { id: "6460", source: "Amon the Undying" } +5195.2 "Dark Forte" Ability { id: "6464", source: "Amon the Undying" } + +5206.3 "Eruption Forte" Ability { id: "6085", source: "Amon the Undying" } +5210.3 "Eruption Forte" Ability { id: "6468", source: "Amon the Undying" } +5220.5 "Left Firaga Forte/Right Firaga Forte" Ability { id: "646[01]", source: "Amon the Undying" } +5230.7 "Left Firaga Forte/Right Firaga Forte" Ability { id: "646[01]", source: "Amon the Undying" } +5238.9 "Entr'acte" Ability { id: "6465", source: "Amon the Undying" } +5247.0 "Dark Forte" Ability { id: "6464", source: "Amon the Undying" } +5255.1 "Entr'acte" Ability { id: "6465", source: "Amon the Undying" } # -> Strophe first, then Thundaga? -5267.3 "--sync--" sync / 14:[^:]*:Amon the Undying:645D:/ jump 4119.2 window 50,50 -5270.3 "Strophe?" #sync / 1[56]:[^:]*:Amon the Undying:645D:/ -5276.4 "Antistrophe?" #sync / 1[56]:[^:]*:Amon the Undying:645E:/ -5285.2 "Epode?" #sync / 1[56]:[^:]*:Amon the Undying:645F:/ +5267.3 "--sync--" StartsUsing { id: "645D", source: "Amon the Undying" } jump 4119.2 window 50,50 +5270.3 "Strophe?" #Ability { id: "645D", source: "Amon the Undying" } +5276.4 "Antistrophe?" #Ability { id: "645E", source: "Amon the Undying" } +5285.2 "Epode?" #Ability { id: "645F", source: "Amon the Undying" } # -> Thundaga first, then Strophe? -5267.3 "--sync--" sync / 14:[^:]*:Amon the Undying:645A:/ jump 5119.2 window 50,50 -5272.3 "Thundaga Forte (proximity)?" #sync / 1[56]:[^:]*:Amon the Undying:645A:/ -5278.1 "Thundaga Forte 1?" #sync / 1[56]:[^:]*:Amon the Undying:645B:/ -5284.1 "Thundaga Forte 2?" #sync / 1[56]:[^:]*:Amon the Undying:645C:/ +5267.3 "--sync--" StartsUsing { id: "645A", source: "Amon the Undying" } jump 5119.2 window 50,50 +5272.3 "Thundaga Forte (proximity)?" #Ability { id: "645A", source: "Amon the Undying" } +5278.1 "Thundaga Forte 1?" #Ability { id: "645B", source: "Amon the Undying" } +5284.1 "Thundaga Forte 2?" #Ability { id: "645C", source: "Amon the Undying" } diff --git a/ui/raidboss/data/06-ew/dungeon/the_dead_ends.txt b/ui/raidboss/data/06-ew/dungeon/the_dead_ends.txt index 7417d25180..faa5dc78bc 100644 --- a/ui/raidboss/data/06-ew/dungeon/the_dead_ends.txt +++ b/ui/raidboss/data/06-ew/dungeon/the_dead_ends.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~~~~~~~~~~# # CAUSTIC GREBULOFF # @@ -14,26 +14,26 @@ hideall "--sync--" # -ii 6542 6EBC 6544 653E # Shell Mound will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1008:/ window 10000,0 -1013.1 "--sync--" sync / 14:[^:]*:Caustic Grebuloff:653C:/ -1018.1 "Miasmata" sync / 1[56]:[^:]*:Caustic Grebuloff:653C:/ -1028.5 "Necrotic Fluid" sync / 1[56]:[^:]*:Weeping Miasma:653F:/ duration 10.6 - -1050.2 "Cough Up x3" sync / 1[56]:[^:]*:Caustic Grebuloff:653D:/ -1055.4 "Certain Solitude" sync / 1[56]:[^:]*:Caustic Grebuloff:6EBD:/ -1067.5 "Wave of Nausea" sync / 1[56]:[^:]*:Caustic Grebuloff:6EBB:/ -1080.8 "Miasmata" sync / 1[56]:[^:]*:Caustic Grebuloff:653C:/ -1090.9 "Wave of Nausea" sync / 1[56]:[^:]*:Caustic Grebuloff:6EBB:/ -1091.1 "Necrotic Fluid" sync / 1[56]:[^:]*:Weeping Miasma:653F:/ duration 10.6 -1114.9 "Pox Flail" sync / 1[56]:[^:]*:Caustic Grebuloff:6540:/ -1125.0 "Blighted Water" sync / 1[56]:[^:]*:Caustic Grebuloff:6541:/ -1135.2 "Befoulment" sync / 1[56]:[^:]*:Caustic Grebuloff:6543:/ - -1150.4 "Cough Up x3" sync / 1[56]:[^:]*:Caustic Grebuloff:653D:/ window 50,50 jump 1050.2 -1155.6 "Certain Solitude" #sync / 1[56]:[^:]*:Caustic Grebuloff:6EBD:/ -1167.7 "Wave of Nausea" #sync / 1[56]:[^:]*:Caustic Grebuloff:6EBB:/ -1181.0 "Miasmata" #sync / 1[56]:[^:]*:Caustic Grebuloff:653C:/ -1191.1 "Wave of Nausea" #sync / 1[56]:[^:]*:Caustic Grebuloff:6EBB:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1008" } window 10000,0 +1013.1 "--sync--" StartsUsing { id: "653C", source: "Caustic Grebuloff" } +1018.1 "Miasmata" Ability { id: "653C", source: "Caustic Grebuloff" } +1028.5 "Necrotic Fluid" Ability { id: "653F", source: "Weeping Miasma" } duration 10.6 + +1050.2 "Cough Up x3" Ability { id: "653D", source: "Caustic Grebuloff" } +1055.4 "Certain Solitude" Ability { id: "6EBD", source: "Caustic Grebuloff" } +1067.5 "Wave of Nausea" Ability { id: "6EBB", source: "Caustic Grebuloff" } +1080.8 "Miasmata" Ability { id: "653C", source: "Caustic Grebuloff" } +1090.9 "Wave of Nausea" Ability { id: "6EBB", source: "Caustic Grebuloff" } +1091.1 "Necrotic Fluid" Ability { id: "653F", source: "Weeping Miasma" } duration 10.6 +1114.9 "Pox Flail" Ability { id: "6540", source: "Caustic Grebuloff" } +1125.0 "Blighted Water" Ability { id: "6541", source: "Caustic Grebuloff" } +1135.2 "Befoulment" Ability { id: "6543", source: "Caustic Grebuloff" } + +1150.4 "Cough Up x3" Ability { id: "653D", source: "Caustic Grebuloff" } window 50,50 jump 1050.2 +1155.6 "Certain Solitude" #Ability { id: "6EBD", source: "Caustic Grebuloff" } +1167.7 "Wave of Nausea" #Ability { id: "6EBB", source: "Caustic Grebuloff" } +1181.0 "Miasmata" #Ability { id: "653C", source: "Caustic Grebuloff" } +1191.1 "Wave of Nausea" #Ability { id: "6EBB", source: "Caustic Grebuloff" } #~~~~~~~~~~~~~# @@ -46,47 +46,47 @@ hideall "--sync--" hideall "Disengage Hatch" # Deterrence Grounds will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1009:/ window 10000,0 -2007.0 "--sync--" sync / 14:[^:]*:Peacekeeper:6550:/ -2012.0 "Decimation" sync / 1[56]:[^:]*:Peacekeeper:6550:/ -2018.1 "Electromagnetic Repellant" sync / 1[56]:[^:]*:Peacekeeper:6EC8:/ -2021.0 "Disengage Hatch" sync / 1[56]:[^:]*:Peacekeeper:6EC4:/ -2026.3 "--sync--" sync / 1[56]:[^:]*:Peacekeeper:6EC5:/ -2028.6 "Infantry Deterrent" sync / 1[56]:[^:]*:Peacekeeper:6EC6:/ -2036.7 "Small-bore Laser" sync / 1[56]:[^:]*:Perpetual War Machine:6EC0:/ -2036.7 "Order to Fire" sync / 1[56]:[^:]*:Peacekeeper:6EBF:/ -2038.6 "Infantry Deterrent" sync / 1[56]:[^:]*:Peacekeeper:6EC7:/ -2041.0 "Disengage Hatch" sync / 1[56]:[^:]*:Peacekeeper:6EC4:/ -2046.7 "--sync--" sync / 1[56]:[^:]*:Peacekeeper:6EC5:/ - -2051.9 "No Future (circles)" sync / 1[56]:[^:]*:Peacekeeper:6545:/ duration 12.4 -2064.9 "--sync--" sync / 1[56]:[^:]*:Peacekeeper:6546:/ -2065.8 "No Future (spread)" sync / 1[56]:[^:]*:Peacekeeper:6548:/ - -2077.3 "Peacefire" sync / 1[56]:[^:]*:Peacekeeper:654D:/ duration 38.7 -2083.4 "Electromagnetic Repellant" sync / 1[56]:[^:]*:Peacekeeper:6EC8:/ -2085.6 "Disengage Hatch" sync / 1[56]:[^:]*:Peacekeeper:6EC4:/ -2090.8 "--sync--" sync / 1[56]:[^:]*:Peacekeeper:6EC5:/ -2098.0 "Small-bore Laser" sync / 1[56]:[^:]*:Perpetual War Machine:6EC0:/ -2098.0 "Order to Fire" sync / 1[56]:[^:]*:Peacekeeper:6EBF:/ -2102.2 "Disengage Hatch" sync / 1[56]:[^:]*:Peacekeeper:6EC4:/ -2107.9 "--sync--" sync / 1[56]:[^:]*:Peacekeeper:6EC5:/ -2114.0 "Eclipsing Exhaust" sync / 1[56]:[^:]*:Peacekeeper:654B:/ -2123.3 "Elimination" sync / 1[56]:[^:]*:Peacekeeper:654F:/ - -2134.0 "No Future (circles)" sync / 1[56]:[^:]*:Peacekeeper:6545:/ -2151.4 "No Future (spread)" sync / 1[56]:[^:]*:Peacekeeper:6548:/ -2153.1 "--sync--" sync / 1[56]:[^:]*:Peacekeeper:6546:/ -2171.3 "Decimation" sync / 1[56]:[^:]*:Peacekeeper:6550:/ -2182.5 "Elimination" sync / 1[56]:[^:]*:Peacekeeper:654F:/ -2194.6 "Decimation" sync / 1[56]:[^:]*:Peacekeeper:6550:/ - -2203.9 "Peacefire" sync / 1[56]:[^:]*:Peacekeeper:654D:/ duration 38.7 window 50,50 jump 2077.3 -2210.0 "Electromagnetic Repellant" #sync / 1[56]:[^:]*:Peacekeeper:6EC8:/ -2212.2 "Disengage Hatch" #sync / 1[56]:[^:]*:Peacekeeper:6EC4:/ -2217.4 "--sync--" #sync / 1[56]:[^:]*:Peacekeeper:6EC5:/ -2224.6 "Small-bore Laser" #sync / 1[56]:[^:]*:Perpetual War Machine:6EC0:/ -2224.6 "Order to Fire" #sync / 1[56]:[^:]*:Peacekeeper:6EBF:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1009" } window 10000,0 +2007.0 "--sync--" StartsUsing { id: "6550", source: "Peacekeeper" } +2012.0 "Decimation" Ability { id: "6550", source: "Peacekeeper" } +2018.1 "Electromagnetic Repellant" Ability { id: "6EC8", source: "Peacekeeper" } +2021.0 "Disengage Hatch" Ability { id: "6EC4", source: "Peacekeeper" } +2026.3 "--sync--" Ability { id: "6EC5", source: "Peacekeeper" } +2028.6 "Infantry Deterrent" Ability { id: "6EC6", source: "Peacekeeper" } +2036.7 "Small-bore Laser" Ability { id: "6EC0", source: "Perpetual War Machine" } +2036.7 "Order to Fire" Ability { id: "6EBF", source: "Peacekeeper" } +2038.6 "Infantry Deterrent" Ability { id: "6EC7", source: "Peacekeeper" } +2041.0 "Disengage Hatch" Ability { id: "6EC4", source: "Peacekeeper" } +2046.7 "--sync--" Ability { id: "6EC5", source: "Peacekeeper" } + +2051.9 "No Future (circles)" Ability { id: "6545", source: "Peacekeeper" } duration 12.4 +2064.9 "--sync--" Ability { id: "6546", source: "Peacekeeper" } +2065.8 "No Future (spread)" Ability { id: "6548", source: "Peacekeeper" } + +2077.3 "Peacefire" Ability { id: "654D", source: "Peacekeeper" } duration 38.7 +2083.4 "Electromagnetic Repellant" Ability { id: "6EC8", source: "Peacekeeper" } +2085.6 "Disengage Hatch" Ability { id: "6EC4", source: "Peacekeeper" } +2090.8 "--sync--" Ability { id: "6EC5", source: "Peacekeeper" } +2098.0 "Small-bore Laser" Ability { id: "6EC0", source: "Perpetual War Machine" } +2098.0 "Order to Fire" Ability { id: "6EBF", source: "Peacekeeper" } +2102.2 "Disengage Hatch" Ability { id: "6EC4", source: "Peacekeeper" } +2107.9 "--sync--" Ability { id: "6EC5", source: "Peacekeeper" } +2114.0 "Eclipsing Exhaust" Ability { id: "654B", source: "Peacekeeper" } +2123.3 "Elimination" Ability { id: "654F", source: "Peacekeeper" } + +2134.0 "No Future (circles)" Ability { id: "6545", source: "Peacekeeper" } +2151.4 "No Future (spread)" Ability { id: "6548", source: "Peacekeeper" } +2153.1 "--sync--" Ability { id: "6546", source: "Peacekeeper" } +2171.3 "Decimation" Ability { id: "6550", source: "Peacekeeper" } +2182.5 "Elimination" Ability { id: "654F", source: "Peacekeeper" } +2194.6 "Decimation" Ability { id: "6550", source: "Peacekeeper" } + +2203.9 "Peacefire" Ability { id: "654D", source: "Peacekeeper" } duration 38.7 window 50,50 jump 2077.3 +2210.0 "Electromagnetic Repellant" #Ability { id: "6EC8", source: "Peacekeeper" } +2212.2 "Disengage Hatch" #Ability { id: "6EC4", source: "Peacekeeper" } +2217.4 "--sync--" #Ability { id: "6EC5", source: "Peacekeeper" } +2224.6 "Small-bore Laser" #Ability { id: "6EC0", source: "Perpetual War Machine" } +2224.6 "Order to Fire" #Ability { id: "6EBF", source: "Peacekeeper" } #~~~~~~~# @@ -97,61 +97,61 @@ hideall "Disengage Hatch" # -ii 655A 655C 655F # The World Tree will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:100A:/ window 10000,0 -3008.5 "--sync--" sync / 14:[^:]*:Ra-la:655E:/ -3013.5 "Warm Glow" sync / 1[56]:[^:]*:Ra-la:655E:/ -3023.7 "Pity" sync / 1[56]:[^:]*:Ra-la:655D:/ -3035.9 "Prance 1" sync / 1[56]:[^:]*:Ra-la:6551:/ -3037.8 "Prance 2" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3039.6 "Prance 3" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3041.4 "Prance 4" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3043.1 "Lamellar Light 1" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3045.0 "Lamellar Light 2" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3046.8 "Lamellar Light 3" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3048.6 "Lamellar Light 4" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3055.2 "Warm Glow" sync / 1[56]:[^:]*:Ra-la:655E:/ -3061.4 "--jump--" sync / 1[56]:[^:]*:Ra-la:6555:/ -3067.8 "Lifesbreath" sync / 1[56]:[^:]*:Ra-la:6554:/ -3071.9 "--jump--" sync / 1[56]:[^:]*:Ra-la:6555:/ -3074.7 "Lamellar Light" sync / 1[56]:[^:]*:Golden Wings:6556:/ - -3082.0 "Benevolence" sync / 1[56]:[^:]*:Ra-la:6559:/ -3095.2 "Loving Embrace" sync / 1[56]:[^:]*:Ra-la:(6557|6558):/ -3103.3 "Warm Glow" sync / 1[56]:[^:]*:Ra-la:655E:/ -3117.5 "Prance 1" sync / 1[56]:[^:]*:Ra-la:6551:/ -3119.4 "Prance 2" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3121.2 "Prance 3" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3123.0 "Prance 4" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3124.7 "Lamellar Light 1" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3126.6 "Lamellar Light 2" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3128.4 "Lamellar Light 3" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3130.2 "Lamellar Light 4" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3135.8 "Still Embrace" sync / 1[56]:[^:]*:Ra-la:655B:/ - -3143.0 "--jump--" sync / 1[56]:[^:]*:Ra-la:6555:/ -3149.4 "Lifesbreath" sync / 1[56]:[^:]*:Ra-la:6554:/ -3156.4 "Lamellar Light" sync / 1[56]:[^:]*:Golden Wings:6556:/ -3160.6 "Loving Embrace" sync / 1[56]:[^:]*:Ra-la:(6557|6558):/ -3163.8 "--jump--" sync / 1[56]:[^:]*:Ra-la:6555:/ -3170.9 "Benevolence" sync / 1[56]:[^:]*:Ra-la:6559:/ -3183.1 "Warm Glow" sync / 1[56]:[^:]*:Ra-la:655E:/ -3194.3 "Warm Glow" sync / 1[56]:[^:]*:Ra-la:655E:/ -3205.6 "Pity" sync / 1[56]:[^:]*:Ra-la:655D:/ -3218.8 "Prance 1" sync / 1[56]:[^:]*:Ra-la:6551:/ -3220.7 "Prance 2" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3222.5 "Prance 3" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3224.3 "Prance 4" #sync / 1[56]:[^:]*:Ra-la:6552:/ -3226.0 "Lamellar Light 1" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3227.9 "Lamellar Light 2" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3229.7 "Lamellar Light 3" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3231.5 "Lamellar Light 4" #sync / 1[56]:[^:]*:Ra-la:6553:/ -3237.1 "Still Embrace" sync / 1[56]:[^:]*:Ra-la:655B:/ - -3244.3 "--jump--" sync / 1[56]:[^:]*:Ra-la:6555:/ -3250.7 "Lifesbreath" sync / 1[56]:[^:]*:Ra-la:6554:/ window 50,50 jump 3149.4 -3257.7 "Lamellar Light" #sync / 1[56]:[^:]*:Golden Wings:6556:/ -3261.9 "Loving Embrace" #sync / 1[56]:[^:]*:Ra-la:(6557|6558):/ -3265.1 "--jump--" #sync / 1[56]:[^:]*:Ra-la:6555:/ -3272.2 "Benevolence" #sync / 1[56]:[^:]*:Ra-la:6559:/ -3284.4 "Warm Glow" #sync / 1[56]:[^:]*:Ra-la:655E:/ -3295.6 "Warm Glow" #sync / 1[56]:[^:]*:Ra-la:655E:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "100A" } window 10000,0 +3008.5 "--sync--" StartsUsing { id: "655E", source: "Ra-la" } +3013.5 "Warm Glow" Ability { id: "655E", source: "Ra-la" } +3023.7 "Pity" Ability { id: "655D", source: "Ra-la" } +3035.9 "Prance 1" Ability { id: "6551", source: "Ra-la" } +3037.8 "Prance 2" #Ability { id: "6552", source: "Ra-la" } +3039.6 "Prance 3" #Ability { id: "6552", source: "Ra-la" } +3041.4 "Prance 4" #Ability { id: "6552", source: "Ra-la" } +3043.1 "Lamellar Light 1" #Ability { id: "6553", source: "Ra-la" } +3045.0 "Lamellar Light 2" #Ability { id: "6553", source: "Ra-la" } +3046.8 "Lamellar Light 3" #Ability { id: "6553", source: "Ra-la" } +3048.6 "Lamellar Light 4" #Ability { id: "6553", source: "Ra-la" } +3055.2 "Warm Glow" Ability { id: "655E", source: "Ra-la" } +3061.4 "--jump--" Ability { id: "6555", source: "Ra-la" } +3067.8 "Lifesbreath" Ability { id: "6554", source: "Ra-la" } +3071.9 "--jump--" Ability { id: "6555", source: "Ra-la" } +3074.7 "Lamellar Light" Ability { id: "6556", source: "Golden Wings" } + +3082.0 "Benevolence" Ability { id: "6559", source: "Ra-la" } +3095.2 "Loving Embrace" Ability { id: ["6557", "6558"], source: "Ra-la" } +3103.3 "Warm Glow" Ability { id: "655E", source: "Ra-la" } +3117.5 "Prance 1" Ability { id: "6551", source: "Ra-la" } +3119.4 "Prance 2" #Ability { id: "6552", source: "Ra-la" } +3121.2 "Prance 3" #Ability { id: "6552", source: "Ra-la" } +3123.0 "Prance 4" #Ability { id: "6552", source: "Ra-la" } +3124.7 "Lamellar Light 1" #Ability { id: "6553", source: "Ra-la" } +3126.6 "Lamellar Light 2" #Ability { id: "6553", source: "Ra-la" } +3128.4 "Lamellar Light 3" #Ability { id: "6553", source: "Ra-la" } +3130.2 "Lamellar Light 4" #Ability { id: "6553", source: "Ra-la" } +3135.8 "Still Embrace" Ability { id: "655B", source: "Ra-la" } + +3143.0 "--jump--" Ability { id: "6555", source: "Ra-la" } +3149.4 "Lifesbreath" Ability { id: "6554", source: "Ra-la" } +3156.4 "Lamellar Light" Ability { id: "6556", source: "Golden Wings" } +3160.6 "Loving Embrace" Ability { id: ["6557", "6558"], source: "Ra-la" } +3163.8 "--jump--" Ability { id: "6555", source: "Ra-la" } +3170.9 "Benevolence" Ability { id: "6559", source: "Ra-la" } +3183.1 "Warm Glow" Ability { id: "655E", source: "Ra-la" } +3194.3 "Warm Glow" Ability { id: "655E", source: "Ra-la" } +3205.6 "Pity" Ability { id: "655D", source: "Ra-la" } +3218.8 "Prance 1" Ability { id: "6551", source: "Ra-la" } +3220.7 "Prance 2" #Ability { id: "6552", source: "Ra-la" } +3222.5 "Prance 3" #Ability { id: "6552", source: "Ra-la" } +3224.3 "Prance 4" #Ability { id: "6552", source: "Ra-la" } +3226.0 "Lamellar Light 1" #Ability { id: "6553", source: "Ra-la" } +3227.9 "Lamellar Light 2" #Ability { id: "6553", source: "Ra-la" } +3229.7 "Lamellar Light 3" #Ability { id: "6553", source: "Ra-la" } +3231.5 "Lamellar Light 4" #Ability { id: "6553", source: "Ra-la" } +3237.1 "Still Embrace" Ability { id: "655B", source: "Ra-la" } + +3244.3 "--jump--" Ability { id: "6555", source: "Ra-la" } +3250.7 "Lifesbreath" Ability { id: "6554", source: "Ra-la" } window 50,50 jump 3149.4 +3257.7 "Lamellar Light" #Ability { id: "6556", source: "Golden Wings" } +3261.9 "Loving Embrace" #Ability { id: ["6557", "6558"], source: "Ra-la" } +3265.1 "--jump--" #Ability { id: "6555", source: "Ra-la" } +3272.2 "Benevolence" #Ability { id: "6559", source: "Ra-la" } +3284.4 "Warm Glow" #Ability { id: "655E", source: "Ra-la" } +3295.6 "Warm Glow" #Ability { id: "655E", source: "Ra-la" } diff --git a/ui/raidboss/data/06-ew/dungeon/the_fell_court_of_troia.txt b/ui/raidboss/data/06-ew/dungeon/the_fell_court_of_troia.txt index 0fba26f3d8..c57a54403d 100644 --- a/ui/raidboss/data/06-ew/dungeon/the_fell_court_of_troia.txt +++ b/ui/raidboss/data/06-ew/dungeon/the_fell_court_of_troia.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~~~~~~~~# # EVIL DREAMER(s) # @@ -17,27 +17,27 @@ hideall "--sync--" # Hard to tell if there's a time based push, but have seen it push when some adds still alive? # Penitence will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1058:/ window 10000,0 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1058" } window 10000,0 -1200.0 "--sync--" sync / 14:[^:]*:Evil Dreamer:73B8:/ window 200,0 -1208.0 "Dark Vision" sync / 1[56]:[^:]*:Evil Dreamer:73B8:/ +1200.0 "--sync--" StartsUsing { id: "73B8", source: "Evil Dreamer" } window 200,0 +1208.0 "Dark Vision" Ability { id: "73B8", source: "Evil Dreamer" } -1200.0 "--sync--" sync / 14:[^:]*:Evil Dreamer:73B8:/ window 200,0 -1408.0 "Dark Vision" sync / 1[56]:[^:]*:Evil Dreamer:73B8:/ -1408.0 "Void Gravity" sync / 1[56]:[^:]*:Evil Dreamer:73BA:/ +1200.0 "--sync--" StartsUsing { id: "73B8", source: "Evil Dreamer" } window 200,0 +1408.0 "Dark Vision" Ability { id: "73B8", source: "Evil Dreamer" } +1408.0 "Void Gravity" Ability { id: "73BA", source: "Evil Dreamer" } -1600.0 "--sync--" sync / 14:[^:]*:Evil Dreamer:73BB:/ window 200,0 -1608.0 "Dark Vision" sync / 1[56]:[^:]*:Evil Dreamer:73BB:/ -1608.0 "Unite Mare" sync / 1[56]:[^:]*:Evil Dreamer:73BC:/ +1600.0 "--sync--" StartsUsing { id: "73BB", source: "Evil Dreamer" } window 200,0 +1608.0 "Dark Vision" Ability { id: "73BB", source: "Evil Dreamer" } +1608.0 "Unite Mare" Ability { id: "73BC", source: "Evil Dreamer" } -1800.0 "--sync--" sync / 14:[^:]*:Evil Dreamer:73BE:/ window 200,0 -1817.0 "Unite Mare" sync / 1[56]:[^:]*:Evil Dreamer:73B6:/ -1828.0 "Unite Mare" sync / 1[56]:[^:]*:Evil Dreamer:73B6:/ +1800.0 "--sync--" StartsUsing { id: "73BE", source: "Evil Dreamer" } window 200,0 +1817.0 "Unite Mare" Ability { id: "73B6", source: "Evil Dreamer" } +1828.0 "Unite Mare" Ability { id: "73B6", source: "Evil Dreamer" } # guessing at these -1839.0 "Unite Mare" sync / 1[56]:[^:]*:Evil Dreamer:73B6:/ -1850.0 "Unite Mare" sync / 1[56]:[^:]*:Evil Dreamer:73B6:/ +1839.0 "Unite Mare" Ability { id: "73B6", source: "Evil Dreamer" } +1850.0 "Unite Mare" Ability { id: "73B6", source: "Evil Dreamer" } -1860.0 "Endless Nightmare Enrage" sync / 14:[^:]*:Evil Dreamer:73BE:/ +1860.0 "Endless Nightmare Enrage" StartsUsing { id: "73BE", source: "Evil Dreamer" } #~~~~~~~~~~# @@ -50,52 +50,52 @@ hideall "--sync--" # TODO: Beatific Scorn is 747 + 5/8/4/7, or 3/8/6/7, are these directions?? # Seat of the Foremost will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1059:/ window 10000,0 -2011.3 "--middle--" sync / 1[56]:[^:]*:Beatrice:747C:/ -2016.5 "Eye of Troia" sync / 1[56]:[^:]*:Beatrice:747A:/ -2022.5 "Death Foreseen" sync / 1[56]:[^:]*:Beatrice:747D:/ -2029.7 "Beatific Scorn x4" #sync / 1[56]:[^:]*:Beatrice:7475:/ # ??? -2040.5 "Beatific Scorn 1" #sync / 1[56]:[^:]*:Beatrice:7479:/ -2042.2 "Beatific Scorn 2" #sync / 1[56]:[^:]*:Beatrice:7479:/ -2043.8 "Beatific Scorn 3" #sync / 1[56]:[^:]*:Beatrice:7479:/ -2045.5 "Beatific Scorn 4" #sync / 1[56]:[^:]*:Beatrice:7479:/ -2048.4 "--sync--" sync / 1[56]:[^:]*:Beatrice:747B:/ -2060.6 "Hush" sync / 1[56]:[^:]*:Beatrice:7480:/ - -2067.7 "--middle--" sync / 1[56]:[^:]*:Beatrice:747C:/ -2074.0 "Voidshaker" sync / 1[56]:[^:]*:Beatrice:747E:/ -2077.0 "Void Nail" sync / 1[56]:[^:]*:Beatrice:747F:/ - -2084.2 "--middle--" sync / 1[56]:[^:]*:Beatrice:747C:/ -2089.4 "Eye of Troia" sync / 1[56]:[^:]*:Beatrice:747A:/ -2100.5 "Death Foreseen 1" sync / 1[56]:[^:]*:Beatrice:7484:/ -2100.5 "Toric Void" sync / 1[56]:[^:]*:Beatrice:7485:/ -2104.5 "Death Foreseen 2" sync / 1[56]:[^:]*:Beatrice:7484:/ -2104.6 "Toric Void" sync / 1[56]:[^:]*:Beatrice:79E6:/ -2107.4 "Void Nail" sync / 1[56]:[^:]*:Beatrice:747F:/ - -2114.8 "--middle--" sync / 1[56]:[^:]*:Beatrice:747C:/ -2120.0 "Beatific Scorn x4" #sync / 1[56]:[^:]*:Beatrice:7473:/ # ??? -2122.9 "Antipressure" sync / 1[56]:[^:]*:Beatrice:79E8:/ -2130.7 "Beatific Scorn 1" #sync / 1[56]:[^:]*:Beatrice:7479:/ -2132.4 "Beatific Scorn 2" #sync / 1[56]:[^:]*:Beatrice:7479:/ -2134.0 "Beatific Scorn 3" #sync / 1[56]:[^:]*:Beatrice:7479:/ -2135.7 "Beatific Scorn 4" #sync / 1[56]:[^:]*:Beatrice:7479:/ -2138.6 "--sync--" sync / 1[56]:[^:]*:Beatrice:747B:/ -2150.8 "Hush" sync / 1[56]:[^:]*:Beatrice:7480:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1059" } window 10000,0 +2011.3 "--middle--" Ability { id: "747C", source: "Beatrice" } +2016.5 "Eye of Troia" Ability { id: "747A", source: "Beatrice" } +2022.5 "Death Foreseen" Ability { id: "747D", source: "Beatrice" } +2029.7 "Beatific Scorn x4" #Ability { id: "7475", source: "Beatrice" } # ??? +2040.5 "Beatific Scorn 1" #Ability { id: "7479", source: "Beatrice" } +2042.2 "Beatific Scorn 2" #Ability { id: "7479", source: "Beatrice" } +2043.8 "Beatific Scorn 3" #Ability { id: "7479", source: "Beatrice" } +2045.5 "Beatific Scorn 4" #Ability { id: "7479", source: "Beatrice" } +2048.4 "--sync--" Ability { id: "747B", source: "Beatrice" } +2060.6 "Hush" Ability { id: "7480", source: "Beatrice" } + +2067.7 "--middle--" Ability { id: "747C", source: "Beatrice" } +2074.0 "Voidshaker" Ability { id: "747E", source: "Beatrice" } +2077.0 "Void Nail" Ability { id: "747F", source: "Beatrice" } + +2084.2 "--middle--" Ability { id: "747C", source: "Beatrice" } +2089.4 "Eye of Troia" Ability { id: "747A", source: "Beatrice" } +2100.5 "Death Foreseen 1" Ability { id: "7484", source: "Beatrice" } +2100.5 "Toric Void" Ability { id: "7485", source: "Beatrice" } +2104.5 "Death Foreseen 2" Ability { id: "7484", source: "Beatrice" } +2104.6 "Toric Void" Ability { id: "79E6", source: "Beatrice" } +2107.4 "Void Nail" Ability { id: "747F", source: "Beatrice" } + +2114.8 "--middle--" Ability { id: "747C", source: "Beatrice" } +2120.0 "Beatific Scorn x4" #Ability { id: "7473", source: "Beatrice" } # ??? +2122.9 "Antipressure" Ability { id: "79E8", source: "Beatrice" } +2130.7 "Beatific Scorn 1" #Ability { id: "7479", source: "Beatrice" } +2132.4 "Beatific Scorn 2" #Ability { id: "7479", source: "Beatrice" } +2134.0 "Beatific Scorn 3" #Ability { id: "7479", source: "Beatrice" } +2135.7 "Beatific Scorn 4" #Ability { id: "7479", source: "Beatrice" } +2138.6 "--sync--" Ability { id: "747B", source: "Beatrice" } +2150.8 "Hush" Ability { id: "7480", source: "Beatrice" } # loop -2157.9 "--middle--" sync / 1[56]:[^:]*:Beatrice:747C:/ -2164.2 "Voidshaker" sync / 1[56]:[^:]*:Beatrice:747E:/ window 80,80 jump 2074 -2167.2 "Void Nail" #sync / 1[56]:[^:]*:Beatrice:747F:/ +2157.9 "--middle--" Ability { id: "747C", source: "Beatrice" } +2164.2 "Voidshaker" Ability { id: "747E", source: "Beatrice" } window 80,80 jump 2074 +2167.2 "Void Nail" #Ability { id: "747F", source: "Beatrice" } -2174.4 "--middle--" #sync / 1[56]:[^:]*:Beatrice:747C:/ -2179.6 "Eye of Troia" #sync / 1[56]:[^:]*:Beatrice:747A:/ -2190.7 "Death Foreseen 1" #sync / 1[56]:[^:]*:Beatrice:7484:/ -2190.7 "Toric Void" #sync / 1[56]:[^:]*:Beatrice:7485:/ -2194.7 "Death Foreseen 2" #sync / 1[56]:[^:]*:Beatrice:7484:/ -2194.8 "Toric Void" #sync / 1[56]:[^:]*:Beatrice:79E6:/ -2197.6 "Void Nail" #sync / 1[56]:[^:]*:Beatrice:747F:/ +2174.4 "--middle--" #Ability { id: "747C", source: "Beatrice" } +2179.6 "Eye of Troia" #Ability { id: "747A", source: "Beatrice" } +2190.7 "Death Foreseen 1" #Ability { id: "7484", source: "Beatrice" } +2190.7 "Toric Void" #Ability { id: "7485", source: "Beatrice" } +2194.7 "Death Foreseen 2" #Ability { id: "7484", source: "Beatrice" } +2194.8 "Toric Void" #Ability { id: "79E6", source: "Beatrice" } +2197.6 "Void Nail" #Ability { id: "747F", source: "Beatrice" } #~~~~~~~~~~~~~~# @@ -107,52 +107,52 @@ hideall "--sync--" # -it "Scarmiglione" # The Garden of Epopts will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:105A:/ window 10000,0 -3005.1 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:7631:/ window 10,10 -3009.1 "Cursed Echo" sync / 1[56]:[^:]*:Scarmiglione:7631:/ -3016.3 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:761D:/ -3027.1 "Rotten Rampage" sync / 1[56]:[^:]*:Scarmiglione:7617:/ -3034.2 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:761A:/ -3041.6 "Blighted Bedevilment" sync / 1[56]:[^:]*:Scarmiglione:761B:/ -3042.2 "Vacuum Wave" sync / 1[56]:[^:]*:Scarmiglione:761C:/ -3048.3 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:761D:/ -3061.5 "Blighted Bladework" sync / 1[56]:[^:]*:Scarmiglione:7633:/ -3072.5 "Blighted Sweep" sync / 1[56]:[^:]*:Scarmiglione:7635:/ -3083.6 "Firedamp" sync / 1[56]:[^:]*:Scarmiglione:7636:/ -3088.9 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:761D:/ -3095.3 "Creeping Decay" sync / 1[56]:[^:]*:Scarmiglione:7620:/ - -3098.4 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:7624:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "105A" } window 10000,0 +3005.1 "--sync--" Ability { id: "7631", source: "Scarmiglione" } window 10,10 +3009.1 "Cursed Echo" Ability { id: "7631", source: "Scarmiglione" } +3016.3 "--sync--" Ability { id: "761D", source: "Scarmiglione" } +3027.1 "Rotten Rampage" Ability { id: "7617", source: "Scarmiglione" } +3034.2 "--sync--" Ability { id: "761A", source: "Scarmiglione" } +3041.6 "Blighted Bedevilment" Ability { id: "761B", source: "Scarmiglione" } +3042.2 "Vacuum Wave" Ability { id: "761C", source: "Scarmiglione" } +3048.3 "--sync--" Ability { id: "761D", source: "Scarmiglione" } +3061.5 "Blighted Bladework" Ability { id: "7633", source: "Scarmiglione" } +3072.5 "Blighted Sweep" Ability { id: "7635", source: "Scarmiglione" } +3083.6 "Firedamp" Ability { id: "7636", source: "Scarmiglione" } +3088.9 "--sync--" Ability { id: "761D", source: "Scarmiglione" } +3095.3 "Creeping Decay" Ability { id: "7620", source: "Scarmiglione" } + +3098.4 "--sync--" Ability { id: "7624", source: "Scarmiglione" } 3098.4 "--untargetable--" -3115.5 "Nox" sync / 1[56]:[^:]*:Scarmiglione:7621:/ +3115.5 "Nox" Ability { id: "7621", source: "Scarmiglione" } # These seem to be adjusted slightly in time based on which order they come in. -3118.5 "Void Gravity/Void Vortex" #sync / 1[56]:[^:]*:Scarmiglione:(7622|7623):/ -3142.1 "Nox" sync / 1[56]:[^:]*:Scarmiglione:7621:/ -3148.1 "Void Vortex/Void Gravity" #sync / 1[56]:[^:]*:Scarmiglione:(7623|7622):/ +3118.5 "Void Gravity/Void Vortex" #Ability { id: ["7622", "7623"], source: "Scarmiglione" } +3142.1 "Nox" Ability { id: "7621", source: "Scarmiglione" } +3148.1 "Void Vortex/Void Gravity" #Ability { id: ["7623", "7622"], source: "Scarmiglione" } # natural enrage, if add phase is failed -3191.8 "Corruptor's Pitch" sync / 1[56]:[^:]*:Scarmiglione:7625:/ duration 8 window 200,50 +3191.8 "Corruptor's Pitch" Ability { id: "7625", source: "Scarmiglione" } duration 8 window 200,50 3206.4 "--targetable--" -3212.5 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:761D:/ -3222.7 "Rotten Rampage" sync / 1[56]:[^:]*:Scarmiglione:7617:/ -3229.8 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:761A:/ -3237.2 "Blighted Bedevilment" sync / 1[56]:[^:]*:Scarmiglione:761B:/ -3237.8 "Vacuum Wave" sync / 1[56]:[^:]*:Scarmiglione:761C:/ -3241.9 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:762D:/ -3246.9 "Void Vortex" sync / 1[56]:[^:]*:Scarmiglione:762E:/ -3254.0 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:761D:/ -3266.2 "Blighted Bladework" sync / 1[56]:[^:]*:Scarmiglione:7633:/ -3277.2 "Blighted Sweep" sync / 1[56]:[^:]*:Scarmiglione:7635:/ -3291.4 "Firedamp" sync / 1[56]:[^:]*:Scarmiglione:7636:/ -3301.5 "Cursed Echo" sync / 1[56]:[^:]*:Scarmiglione:7631:/ +3212.5 "--sync--" Ability { id: "761D", source: "Scarmiglione" } +3222.7 "Rotten Rampage" Ability { id: "7617", source: "Scarmiglione" } +3229.8 "--sync--" Ability { id: "761A", source: "Scarmiglione" } +3237.2 "Blighted Bedevilment" Ability { id: "761B", source: "Scarmiglione" } +3237.8 "Vacuum Wave" Ability { id: "761C", source: "Scarmiglione" } +3241.9 "--sync--" Ability { id: "762D", source: "Scarmiglione" } +3246.9 "Void Vortex" Ability { id: "762E", source: "Scarmiglione" } +3254.0 "--sync--" Ability { id: "761D", source: "Scarmiglione" } +3266.2 "Blighted Bladework" Ability { id: "7633", source: "Scarmiglione" } +3277.2 "Blighted Sweep" Ability { id: "7635", source: "Scarmiglione" } +3291.4 "Firedamp" Ability { id: "7636", source: "Scarmiglione" } +3301.5 "Cursed Echo" Ability { id: "7631", source: "Scarmiglione" } # loop -3308.7 "--sync--" sync / 1[56]:[^:]*:Scarmiglione:761D:/ -3318.9 "Rotten Rampage" sync / 1[56]:[^:]*:Scarmiglione:7617:/ window 50,50 jump 3222.7 -3326.0 "--sync--" #sync / 1[56]:[^:]*:Scarmiglione:761A:/ -3333.4 "Blighted Bedevilment" #sync / 1[56]:[^:]*:Scarmiglione:761B:/ -3334.0 "Vacuum Wave" #sync / 1[56]:[^:]*:Scarmiglione:761C:/ -3338.1 "--sync--" #sync / 1[56]:[^:]*:Scarmiglione:762D:/ -3343.1 "Void Vortex" #sync / 1[56]:[^:]*:Scarmiglione:762E:/ +3308.7 "--sync--" Ability { id: "761D", source: "Scarmiglione" } +3318.9 "Rotten Rampage" Ability { id: "7617", source: "Scarmiglione" } window 50,50 jump 3222.7 +3326.0 "--sync--" #Ability { id: "761A", source: "Scarmiglione" } +3333.4 "Blighted Bedevilment" #Ability { id: "761B", source: "Scarmiglione" } +3334.0 "Vacuum Wave" #Ability { id: "761C", source: "Scarmiglione" } +3338.1 "--sync--" #Ability { id: "762D", source: "Scarmiglione" } +3343.1 "Void Vortex" #Ability { id: "762E", source: "Scarmiglione" } diff --git a/ui/raidboss/data/06-ew/dungeon/the_lunar_subterrane.ts b/ui/raidboss/data/06-ew/dungeon/the_lunar_subterrane.ts index fce37bf176..eaa7e6a7a1 100644 --- a/ui/raidboss/data/06-ew/dungeon/the_lunar_subterrane.ts +++ b/ui/raidboss/data/06-ew/dungeon/the_lunar_subterrane.ts @@ -167,18 +167,22 @@ const triggerSet: TriggerSet = { northeast: { en: 'Inner northeast safe', de: 'Innen nordöstlich sicher', + ko: '안쪽 북동 안전', }, northwest: { en: 'Inner northwest safe', de: 'Innen nordwestlich sicher', + ko: '안쪽 북서 안전', }, southeast: { en: 'Inner southeast safe', de: 'Innen südöstlich sicher', + ko: '안쪽 남동 안전', }, southwest: { en: 'Inner southwest safe', de: 'Innen südwestlich sicher', + ko: '안쪽 남서 안전', }, unknown: Outputs.unknown, }, @@ -299,6 +303,7 @@ const triggerSet: TriggerSet = { en: 'Away from orbs', de: 'Weg von den Orbs', ja: '玉から離れて', + ko: '구슬에서 멀리 떨어지기', }, }, }, diff --git a/ui/raidboss/data/06-ew/dungeon/the_lunar_subterrane.txt b/ui/raidboss/data/06-ew/dungeon/the_lunar_subterrane.txt index 70c44bbc47..8983063d53 100644 --- a/ui/raidboss/data/06-ew/dungeon/the_lunar_subterrane.txt +++ b/ui/raidboss/data/06-ew/dungeon/the_lunar_subterrane.txt @@ -5,7 +5,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~# # DARK ELF # @@ -15,30 +15,30 @@ hideall "--sync--" # -ii 87E5 89B6 87DF # Cloven Crystal Square will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1153:/ window 10000,0 -1006.0 "--sync--" sync / 14:[^:]*:Dark Elf:87D9:/ window 10,10 -1009.0 "Hexing Staves" sync / 1[56]:[^:]*:Dark Elf:87D9:/ -1017.1 "Ruinous Confluence" sync / 1[56]:[^:]*:Dark Elf:8985:/ -1027.1 "Shadowy Sigil" sync / 1[56]:[^:]*:Dark Elf:87D[BC]:/ -1027.5 "Explosion" sync / 1[56]:[^:]*:Dark Elf:87E3:/ -1034.2 "Hexing Staves" sync / 1[56]:[^:]*:Dark Elf:87D9:/ -1044.3 "Sorcerous Shroud" sync / 1[56]:[^:]*:Dark Elf:87DA:/ -1051.0 "Void Dark II (cast)" sync / 1[56]:[^:]*:Dark Elf:87DD:/ -1056.6 "Void Dark II (spread)" sync / 1[56]:[^:]*:Dark Elf:87E4:/ -1060.3 "Ruinous Confluence" sync / 1[56]:[^:]*:Dark Elf:8985:/ - -1067.2 "Hexing Staves" sync / 1[56]:[^:]*:Dark Elf:87D9:/ -1077.3 "Sorcerous Shroud" sync / 1[56]:[^:]*:Dark Elf:87DA:/ -1084.0 "Void Dark II (cast)" sync / 1[56]:[^:]*:Dark Elf:87DD:/ -1091.6 "Void Dark II (spread)" sync / 1[56]:[^:]*:Dark Elf:87E4:/ -1092.2 "Shadowy Sigil" sync / 1[56]:[^:]*:Dark Elf:87D[BC]:/ -1092.8 "Explosion" sync / 1[56]:[^:]*:Dark Elf:87E3:/ -1099.4 "Ruinous Confluence" sync / 1[56]:[^:]*:Dark Elf:8985:/ -1109.6 "Staff Smite" sync / 1[56]:[^:]*:Dark Elf:8984:/ -1120.6 "Abyssal Outburst" sync / 1[56]:[^:]*:Dark Elf:87DE:/ -1129.7 "Abyssal Outburst" sync / 1[56]:[^:]*:Dark Elf:87DE:/ - -1140.4 "Hexing Staves" sync / 1[56]:[^:]*:Dark Elf:87D9:/ window 50,50 forcejump 1067.2 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1153" } window 10000,0 +1006.0 "--sync--" StartsUsing { id: "87D9", source: "Dark Elf" } window 10,10 +1009.0 "Hexing Staves" Ability { id: "87D9", source: "Dark Elf" } +1017.1 "Ruinous Confluence" Ability { id: "8985", source: "Dark Elf" } +1027.1 "Shadowy Sigil" Ability { id: "87D[BC]", source: "Dark Elf" } +1027.5 "Explosion" Ability { id: "87E3", source: "Dark Elf" } +1034.2 "Hexing Staves" Ability { id: "87D9", source: "Dark Elf" } +1044.3 "Sorcerous Shroud" Ability { id: "87DA", source: "Dark Elf" } +1051.0 "Void Dark II (cast)" Ability { id: "87DD", source: "Dark Elf" } +1056.6 "Void Dark II (spread)" Ability { id: "87E4", source: "Dark Elf" } +1060.3 "Ruinous Confluence" Ability { id: "8985", source: "Dark Elf" } + +1067.2 "Hexing Staves" Ability { id: "87D9", source: "Dark Elf" } +1077.3 "Sorcerous Shroud" Ability { id: "87DA", source: "Dark Elf" } +1084.0 "Void Dark II (cast)" Ability { id: "87DD", source: "Dark Elf" } +1091.6 "Void Dark II (spread)" Ability { id: "87E4", source: "Dark Elf" } +1092.2 "Shadowy Sigil" Ability { id: "87D[BC]", source: "Dark Elf" } +1092.8 "Explosion" Ability { id: "87E3", source: "Dark Elf" } +1099.4 "Ruinous Confluence" Ability { id: "8985", source: "Dark Elf" } +1109.6 "Staff Smite" Ability { id: "8984", source: "Dark Elf" } +1120.6 "Abyssal Outburst" Ability { id: "87DE", source: "Dark Elf" } +1129.7 "Abyssal Outburst" Ability { id: "87DE", source: "Dark Elf" } + +1140.4 "Hexing Staves" Ability { id: "87D9", source: "Dark Elf" } window 50,50 forcejump 1067.2 # ALL ENCOUNTER ABILITIES # 368 Attack ye olde auto @@ -68,62 +68,62 @@ hideall "--sync--" # Note: timing is the same, even once all towers have fallen # Bloodied Barbican will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1154:/ window 10000,0 -2009.5 "--sync--" sync / 14:[^:]*:Damcyan Antlion:87FD:/ window 10,10 -2014.5 "Sandblast" sync / 1[56]:[^:]*:Damcyan Antlion:87FD:/ -2023.6 "Landslip" sync / 1[56]:[^:]*:Damcyan Antlion:8802:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1154" } window 10000,0 +2009.5 "--sync--" StartsUsing { id: "87FD", source: "Damcyan Antlion" } window 10,10 +2014.5 "Sandblast" Ability { id: "87FD", source: "Damcyan Antlion" } +2023.6 "Landslip" Ability { id: "8802", source: "Damcyan Antlion" } -2028.8 "--north--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2037.0 "Antlion March" sync / 1[56]:[^:]*:Damcyan Antlion:8800:/ duration 4.1 -2049.6 "Landslip" sync / 1[56]:[^:]*:Damcyan Antlion:8802:/ -2052.9 "Towerfall 1" sync / 1[56]:[^:]*:Stone Pillar:8804:/ +2028.8 "--north--" Ability { id: "8808", source: "Damcyan Antlion" } +2037.0 "Antlion March" Ability { id: "8800", source: "Damcyan Antlion" } duration 4.1 +2049.6 "Landslip" Ability { id: "8802", source: "Damcyan Antlion" } +2052.9 "Towerfall 1" Ability { id: "8804", source: "Stone Pillar" } -2056.7 "--middle--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2062.8 "Earthen Geyser" sync / 1[56]:[^:]*:Damcyan Antlion:8805:/ -2073.9 "Pound Sand" sync / 1[56]:[^:]*:Damcyan Antlion:868B:/ -2083.0 "Sandblast" sync / 1[56]:[^:]*:Damcyan Antlion:87FD:/ +2056.7 "--middle--" Ability { id: "8808", source: "Damcyan Antlion" } +2062.8 "Earthen Geyser" Ability { id: "8805", source: "Damcyan Antlion" } +2073.9 "Pound Sand" Ability { id: "868B", source: "Damcyan Antlion" } +2083.0 "Sandblast" Ability { id: "87FD", source: "Damcyan Antlion" } # note: we cooould just loop here -2089.1 "--north--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2097.3 "Antlion March" sync / 1[56]:[^:]*:Damcyan Antlion:8800:/ duration 4.1 -2109.9 "Landslip" sync / 1[56]:[^:]*:Damcyan Antlion:8802:/ -2113.2 "Towerfall 2" sync / 1[56]:[^:]*:Stone Pillar:8804:/ +2089.1 "--north--" Ability { id: "8808", source: "Damcyan Antlion" } +2097.3 "Antlion March" Ability { id: "8800", source: "Damcyan Antlion" } duration 4.1 +2109.9 "Landslip" Ability { id: "8802", source: "Damcyan Antlion" } +2113.2 "Towerfall 2" Ability { id: "8804", source: "Stone Pillar" } -2117.0 "--middle--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2123.1 "Earthen Geyser" sync / 1[56]:[^:]*:Damcyan Antlion:8805:/ -2134.2 "Pound Sand" sync / 1[56]:[^:]*:Damcyan Antlion:868B:/ -2143.3 "Sandblast" sync / 1[56]:[^:]*:Damcyan Antlion:87FD:/ +2117.0 "--middle--" Ability { id: "8808", source: "Damcyan Antlion" } +2123.1 "Earthen Geyser" Ability { id: "8805", source: "Damcyan Antlion" } +2134.2 "Pound Sand" Ability { id: "868B", source: "Damcyan Antlion" } +2143.3 "Sandblast" Ability { id: "87FD", source: "Damcyan Antlion" } -2149.4 "--north--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2157.6 "Antlion March" sync / 1[56]:[^:]*:Damcyan Antlion:8800:/ duration 4.1 -2170.2 "Landslip" sync / 1[56]:[^:]*:Damcyan Antlion:8802:/ -2173.5 "Towerfall 3" sync / 1[56]:[^:]*:Stone Pillar:8804:/ +2149.4 "--north--" Ability { id: "8808", source: "Damcyan Antlion" } +2157.6 "Antlion March" Ability { id: "8800", source: "Damcyan Antlion" } duration 4.1 +2170.2 "Landslip" Ability { id: "8802", source: "Damcyan Antlion" } +2173.5 "Towerfall 3" Ability { id: "8804", source: "Stone Pillar" } -2177.3 "--middle--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2183.4 "Earthen Geyser" sync / 1[56]:[^:]*:Damcyan Antlion:8805:/ -2194.5 "Pound Sand" sync / 1[56]:[^:]*:Damcyan Antlion:868B:/ -2203.6 "Sandblast" sync / 1[56]:[^:]*:Damcyan Antlion:87FD:/ +2177.3 "--middle--" Ability { id: "8808", source: "Damcyan Antlion" } +2183.4 "Earthen Geyser" Ability { id: "8805", source: "Damcyan Antlion" } +2194.5 "Pound Sand" Ability { id: "868B", source: "Damcyan Antlion" } +2203.6 "Sandblast" Ability { id: "87FD", source: "Damcyan Antlion" } -2209.7 "--north--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2217.9 "Antlion March" sync / 1[56]:[^:]*:Damcyan Antlion:8800:/ duration 4.1 -2230.5 "Landslip" sync / 1[56]:[^:]*:Damcyan Antlion:8802:/ -2233.8 "Towerfall 4" sync / 1[56]:[^:]*:Stone Pillar:8804:/ +2209.7 "--north--" Ability { id: "8808", source: "Damcyan Antlion" } +2217.9 "Antlion March" Ability { id: "8800", source: "Damcyan Antlion" } duration 4.1 +2230.5 "Landslip" Ability { id: "8802", source: "Damcyan Antlion" } +2233.8 "Towerfall 4" Ability { id: "8804", source: "Stone Pillar" } -2237.6 "--middle--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2243.7 "Earthen Geyser" sync / 1[56]:[^:]*:Damcyan Antlion:8805:/ -2254.8 "Pound Sand" sync / 1[56]:[^:]*:Damcyan Antlion:868B:/ -2263.9 "Sandblast" sync / 1[56]:[^:]*:Damcyan Antlion:87FD:/ +2237.6 "--middle--" Ability { id: "8808", source: "Damcyan Antlion" } +2243.7 "Earthen Geyser" Ability { id: "8805", source: "Damcyan Antlion" } +2254.8 "Pound Sand" Ability { id: "868B", source: "Damcyan Antlion" } +2263.9 "Sandblast" Ability { id: "87FD", source: "Damcyan Antlion" } -2270.0 "--north--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2278.2 "Antlion March" sync / 1[56]:[^:]*:Damcyan Antlion:8800:/ duration 4.1 -2290.8 "Landslip" sync / 1[56]:[^:]*:Damcyan Antlion:8802:/ +2270.0 "--north--" Ability { id: "8808", source: "Damcyan Antlion" } +2278.2 "Antlion March" Ability { id: "8800", source: "Damcyan Antlion" } duration 4.1 +2290.8 "Landslip" Ability { id: "8802", source: "Damcyan Antlion" } -2297.9 "--middle--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ -2304.0 "Earthen Geyser" sync / 1[56]:[^:]*:Damcyan Antlion:8805:/ -2315.1 "Pound Sand" sync / 1[56]:[^:]*:Damcyan Antlion:868B:/ -2324.2 "Sandblast" sync / 1[56]:[^:]*:Damcyan Antlion:87FD:/ +2297.9 "--middle--" Ability { id: "8808", source: "Damcyan Antlion" } +2304.0 "Earthen Geyser" Ability { id: "8805", source: "Damcyan Antlion" } +2315.1 "Pound Sand" Ability { id: "868B", source: "Damcyan Antlion" } +2324.2 "Sandblast" Ability { id: "87FD", source: "Damcyan Antlion" } -2330.3 "--north--" sync / 1[56]:[^:]*:Damcyan Antlion:8808:/ window 50,50 forcejump 2270.0 +2330.3 "--north--" Ability { id: "8808", source: "Damcyan Antlion" } window 50,50 forcejump 2270.0 # ALL ENCOUNTER ABILITIES @@ -152,66 +152,66 @@ hideall "--sync--" # -ii 8CDA 88B2 88B6 8CD8 88C0 88B9 8C20 88B4 # Carnelian Courtyard will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1155:/ window 10000,0 -3007.3 "--sync--" sync / 14:[^:]*:Durante:88C3:/ window 10,10 -3012.3 "Old Magic" sync / 1[56]:[^:]*:Durante:88C3:/ -3014.4 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3022.7 "Duplicitous Battery" sync / 1[56]:[^:]*:Durante:8CD9:/ duration 2.5 -3035.5 "Forsaken Fount" sync / 1[56]:[^:]*:Durante:88BB:/ -3044.3 "Explosion" sync / 1[56]:[^:]*:Aetheric Charge:88BE:/ - -3048.6 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3058.0 "Duplicitous Battery" sync / 1[56]:[^:]*:Durante:8CD9:/ duration 2.5 -3064.6 "Fallen Grace" sync / 1[56]:[^:]*:Durante:8C2A:/ - -3070.7 "--north--" sync / 1[56]:[^:]*:Durante:88AF:/ -3076.1 "Forsaken Fount" sync / 1[56]:[^:]*:Durante:88BB:/ -3081.2 "Contrapasso" sync / 1[56]:[^:]*:Durante:8C41:/ -3082.1 "Splinter" sync / 1[56]:[^:]*:Aetheric Charge:88BC:/ -3094.1 "Explosion" sync / 1[56]:[^:]*:Durante:88BD:/ - -3094.5 "--north--" sync / 1[56]:[^:]*:Durante:88AF:/ -3099.8 "Forsaken Fount" sync / 1[56]:[^:]*:Durante:88BB:/ -3104.9 "Contrapasso" sync / 1[56]:[^:]*:Durante:8C41:/ -3105.8 "Splinter" sync / 1[56]:[^:]*:Aetheric Charge:88BC:/ -3117.8 "Explosion" sync / 1[56]:[^:]*:Durante:88BD:/ -3123.2 "Old Magic" sync / 1[56]:[^:]*:Durante:88C3:/ - -3128.4 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3130.4 "--sync--" sync / 1[56]:[^:]*:Durante:38FC:/ -3135.4 "Antipodal Assault" sync / 1[56]:[^:]*:Durante:88BF:/ -3142.9 "Hard Slash" sync / 1[56]:[^:]*:Durante:88C1:/ - -3145.2 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3154.4 "Twilight Phase" sync / 1[56]:[^:]*:Durante:8CD7:/ -3165.6 "Dark Impact" sync / 1[56]:[^:]*:Durante:88BA:/ - -3172.3 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3180.6 "Death's Journey" sync / 1[56]:[^:]*:Durante:88B3:/ - -3185.7 "--north--" sync / 1[56]:[^:]*:Durante:88AF:/ -3191.0 "Forsaken Fount" sync / 1[56]:[^:]*:Durante:88BB:/ -3196.1 "Contrapasso" sync / 1[56]:[^:]*:Durante:8C41:/ -3197.0 "Splinter" sync / 1[56]:[^:]*:Aetheric Charge:88BC:/ -3209.0 "Explosion" sync / 1[56]:[^:]*:Durante:88BD:/ -3212.3 "Old Magic" sync / 1[56]:[^:]*:Durante:88C3:/ - -3217.4 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3226.8 "Duplicitous Battery" sync / 1[56]:[^:]*:Durante:8CD9:/ -3233.2 "Fallen Grace" sync / 1[56]:[^:]*:Durante:8C2A:/ - -3241.3 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3243.4 "--sync--" sync / 1[56]:[^:]*:Durante:38FC:/ -3248.4 "Antipodal Assault" sync / 1[56]:[^:]*:Durante:88BF:/ -3255.8 "Hard Slash" sync / 1[56]:[^:]*:Durante:88C1:/ - -3257.9 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3267.1 "Twilight Phase" sync / 1[56]:[^:]*:Durante:8CD7:/ -3278.3 "Dark Impact" sync / 1[56]:[^:]*:Durante:88BA:/ -3287.2 "Arcane Edge" sync / 1[56]:[^:]*:Durante:88C2:/ - -3295.4 "--middle--" sync / 1[56]:[^:]*:Durante:88AF:/ -3303.7 "Death's Journey" sync / 1[56]:[^:]*:Durante:88B3:/ window 100,100 forcejump 3180.6 +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1155" } window 10000,0 +3007.3 "--sync--" StartsUsing { id: "88C3", source: "Durante" } window 10,10 +3012.3 "Old Magic" Ability { id: "88C3", source: "Durante" } +3014.4 "--middle--" Ability { id: "88AF", source: "Durante" } +3022.7 "Duplicitous Battery" Ability { id: "8CD9", source: "Durante" } duration 2.5 +3035.5 "Forsaken Fount" Ability { id: "88BB", source: "Durante" } +3044.3 "Explosion" Ability { id: "88BE", source: "Aetheric Charge" } + +3048.6 "--middle--" Ability { id: "88AF", source: "Durante" } +3058.0 "Duplicitous Battery" Ability { id: "8CD9", source: "Durante" } duration 2.5 +3064.6 "Fallen Grace" Ability { id: "8C2A", source: "Durante" } + +3070.7 "--north--" Ability { id: "88AF", source: "Durante" } +3076.1 "Forsaken Fount" Ability { id: "88BB", source: "Durante" } +3081.2 "Contrapasso" Ability { id: "8C41", source: "Durante" } +3082.1 "Splinter" Ability { id: "88BC", source: "Aetheric Charge" } +3094.1 "Explosion" Ability { id: "88BD", source: "Durante" } + +3094.5 "--north--" Ability { id: "88AF", source: "Durante" } +3099.8 "Forsaken Fount" Ability { id: "88BB", source: "Durante" } +3104.9 "Contrapasso" Ability { id: "8C41", source: "Durante" } +3105.8 "Splinter" Ability { id: "88BC", source: "Aetheric Charge" } +3117.8 "Explosion" Ability { id: "88BD", source: "Durante" } +3123.2 "Old Magic" Ability { id: "88C3", source: "Durante" } + +3128.4 "--middle--" Ability { id: "88AF", source: "Durante" } +3130.4 "--sync--" Ability { id: "38FC", source: "Durante" } +3135.4 "Antipodal Assault" Ability { id: "88BF", source: "Durante" } +3142.9 "Hard Slash" Ability { id: "88C1", source: "Durante" } + +3145.2 "--middle--" Ability { id: "88AF", source: "Durante" } +3154.4 "Twilight Phase" Ability { id: "8CD7", source: "Durante" } +3165.6 "Dark Impact" Ability { id: "88BA", source: "Durante" } + +3172.3 "--middle--" Ability { id: "88AF", source: "Durante" } +3180.6 "Death's Journey" Ability { id: "88B3", source: "Durante" } + +3185.7 "--north--" Ability { id: "88AF", source: "Durante" } +3191.0 "Forsaken Fount" Ability { id: "88BB", source: "Durante" } +3196.1 "Contrapasso" Ability { id: "8C41", source: "Durante" } +3197.0 "Splinter" Ability { id: "88BC", source: "Aetheric Charge" } +3209.0 "Explosion" Ability { id: "88BD", source: "Durante" } +3212.3 "Old Magic" Ability { id: "88C3", source: "Durante" } + +3217.4 "--middle--" Ability { id: "88AF", source: "Durante" } +3226.8 "Duplicitous Battery" Ability { id: "8CD9", source: "Durante" } +3233.2 "Fallen Grace" Ability { id: "8C2A", source: "Durante" } + +3241.3 "--middle--" Ability { id: "88AF", source: "Durante" } +3243.4 "--sync--" Ability { id: "38FC", source: "Durante" } +3248.4 "Antipodal Assault" Ability { id: "88BF", source: "Durante" } +3255.8 "Hard Slash" Ability { id: "88C1", source: "Durante" } + +3257.9 "--middle--" Ability { id: "88AF", source: "Durante" } +3267.1 "Twilight Phase" Ability { id: "8CD7", source: "Durante" } +3278.3 "Dark Impact" Ability { id: "88BA", source: "Durante" } +3287.2 "Arcane Edge" Ability { id: "88C2", source: "Durante" } + +3295.4 "--middle--" Ability { id: "88AF", source: "Durante" } +3303.7 "Death's Journey" Ability { id: "88B3", source: "Durante" } window 100,100 forcejump 3180.6 # ALL ENCOUNTER ABILITIES # 366 attack diff --git a/ui/raidboss/data/06-ew/dungeon/the_sildihn_subterrane.txt b/ui/raidboss/data/06-ew/dungeon/the_sildihn_subterrane.txt index fbec9334e0..95f7a1c903 100644 --- a/ui/raidboss/data/06-ew/dungeon/the_sildihn_subterrane.txt +++ b/ui/raidboss/data/06-ew/dungeon/the_sildihn_subterrane.txt @@ -4,138 +4,138 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 ### Geryon the Steer (left door, 1st boss) # -p 74CF:1010.6 74D2:2019.7 # -ii 7A1C 74D3 # Silt Pump will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1068:/ window 100000,0 -1005.6 "--sync--" sync / 14:[^:]*:Geryon the Steer:74CF:/ -1010.6 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1068" } window 100000,0 +1005.6 "--sync--" StartsUsing { id: "74CF", source: "Geryon the Steer" } +1010.6 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } # -> yes pump -1019.7 "--sync--" sync / 14:[^:]*:Geryon the Steer:74C7:/ window 20,20 jump 1219.7 -1024.7 "Exploding Catapult?" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ +1019.7 "--sync--" StartsUsing { id: "74C7", source: "Geryon the Steer" } window 20,20 jump 1219.7 +1024.7 "Exploding Catapult?" #Ability { id: "74C7", source: "Geryon the Steer" } # -> no pump -1014.7 "--sync--" sync / 14:[^:]*:Geryon the Steer:74D2:/ window 20,20 jump 2014.7 -1019.7 "Subterranean Shudder" #sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ +1014.7 "--sync--" StartsUsing { id: "74D2", source: "Geryon the Steer" } window 20,20 jump 2014.7 +1019.7 "Subterranean Shudder" #Ability { id: "74D2", source: "Geryon the Steer" } # Geryon the Steer (left door, 1st boss, yes pump) -1219.7 "--sync--" sync / 14:[^:]*:Geryon the Steer:74C7:/ -1224.7 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1241.5 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1246.1 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1256.3 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -1261.7 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1265.7 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ - -1272.8 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -1283.9 "Runaway Runoff" sync / 1[56]:[^:]*:Geryon the Steer:74D7:/ -1288.3 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1292.7 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1295.8 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -1304.0 "Colossal Launch" sync / 1[56]:[^:]*:Geryon the Steer:74C8:/ -1309.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -1310.6 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1316.5 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1327.6 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -1333.0 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1338.0 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -1347.4 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1355.5 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -1364.4 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1365.8 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -1367.6 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -1369.4 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -1371.2 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -1373.0 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -1382.7 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ - -1389.8 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -1400.9 "Runaway Runoff" sync / 1[56]:[^:]*:Geryon the Steer:74D7:/ -1405.5 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1410.1 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1413.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -1421.5 "Colossal Launch / Colossal Swing" sync / 1[56]:[^:]*:Geryon the Steer:(74C8|74D1):/ # only seen Launch -1428.1 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1434.9 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -1445.3 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ -1449.4 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -1456.7 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1467.8 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -1473.2 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1478.2 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -1487.6 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1495.7 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -1504.6 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1506.0 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -1507.8 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -1509.6 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -1511.4 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -1513.2 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -1522.9 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ - -1530.0 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ window 80,80 jump 1389.8 -1541.1 "Runaway Runoff" #sync / 1[56]:[^:]*:Geryon the Steer:74D7:/ -1545.7 "Explosion" #sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -1550.3 "Exploding Catapult" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -1553.4 "--sync--" #sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -1561.7 "Colossal Launch" #sync / 1[56]:[^:]*:Geryon the Steer:74C8:/ -1568.3 "Explosion" #sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ +1219.7 "--sync--" StartsUsing { id: "74C7", source: "Geryon the Steer" } +1224.7 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +1241.5 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1246.1 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +1256.3 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +1261.7 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1265.7 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } + +1272.8 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +1283.9 "Runaway Runoff" Ability { id: "74D7", source: "Geryon the Steer" } +1288.3 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1292.7 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +1295.8 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +1304.0 "Colossal Launch" Ability { id: "74C8", source: "Geryon the Steer" } +1309.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +1310.6 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1316.5 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +1327.6 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +1333.0 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1338.0 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +1347.4 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +1355.5 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +1364.4 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1365.8 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +1367.6 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +1369.4 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +1371.2 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +1373.0 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +1382.7 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } + +1389.8 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +1400.9 "Runaway Runoff" Ability { id: "74D7", source: "Geryon the Steer" } +1405.5 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1410.1 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +1413.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +1421.5 "Colossal Launch / Colossal Swing" Ability { id: ["74C8", "74D1"], source: "Geryon the Steer" } # only seen Launch +1428.1 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1434.9 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +1445.3 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } +1449.4 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +1456.7 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +1467.8 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +1473.2 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1478.2 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +1487.6 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +1495.7 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +1504.6 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +1506.0 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +1507.8 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +1509.6 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +1511.4 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +1513.2 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +1522.9 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } + +1530.0 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } window 80,80 jump 1389.8 +1541.1 "Runaway Runoff" #Ability { id: "74D7", source: "Geryon the Steer" } +1545.7 "Explosion" #Ability { id: "74D[45]", source: "Powder Keg" } +1550.3 "Exploding Catapult" #Ability { id: "74C7", source: "Geryon the Steer" } +1553.4 "--sync--" #Ability { id: "74C6", source: "Geryon the Steer" } +1561.7 "Colossal Launch" #Ability { id: "74C8", source: "Geryon the Steer" } +1568.3 "Explosion" #Ability { id: "74D[45]", source: "Powder Keg" } # Geryon the Steer (left door, 1st boss, no pump) -2014.7 "--sync--" sync / 14:[^:]*:Geryon the Steer:74D2:/ -2019.7 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -2025.8 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -2026.8 "Runaway Sludge" sync / 1[56]:[^:]*:Geryon the Steer:74D6:/ -2033.1 "Shockwave" sync / 1[56]:[^:]*:Geryon the Steer:74CE:/ -2042.3 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -2059.0 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -2063.6 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -2073.8 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -2079.2 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -2083.2 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -2086.3 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -2094.5 "Colossal Launch" sync / 1[56]:[^:]*:Geryon the Steer:74C8:/ -2101.2 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ - -2104.8 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -2106.9 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -2111.9 "Runaway Sludge" sync / 1[56]:[^:]*:Geryon the Steer:74D6:/ -2117.1 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -2118.9 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -2120.7 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -2122.5 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -2124.3 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -2129.0 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -2136.3 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -2147.4 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -2152.8 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -2157.8 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -2167.2 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -2173.3 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -2174.3 "Runaway Sludge" sync / 1[56]:[^:]*:Geryon the Steer:74D6:/ -2180.6 "Shockwave" sync / 1[56]:[^:]*:Geryon the Steer:74CE:/ -2190.7 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -2193.8 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -2202.0 "Colossal Launch / Colossal Swing" sync / 1[56]:[^:]*:Geryon the Steer:(74C8|74D1):/ -2208.7 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -2215.3 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -2225.7 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ - -2235.8 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ window 40,40 jump 2104.8 -2237.9 "--sync--" #sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -2242.9 "Runaway Sludge" #sync / 1[56]:[^:]*:Geryon the Steer:74D6:/ -2248.1 "--sync--" #sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -2249.9 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -2251.7 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -2253.5 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -2255.3 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ +2014.7 "--sync--" StartsUsing { id: "74D2", source: "Geryon the Steer" } +2019.7 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +2025.8 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +2026.8 "Runaway Sludge" Ability { id: "74D6", source: "Geryon the Steer" } +2033.1 "Shockwave" Ability { id: "74CE", source: "Geryon the Steer" } +2042.3 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +2059.0 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +2063.6 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +2073.8 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +2079.2 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +2083.2 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +2086.3 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +2094.5 "Colossal Launch" Ability { id: "74C8", source: "Geryon the Steer" } +2101.2 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } + +2104.8 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +2106.9 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +2111.9 "Runaway Sludge" Ability { id: "74D6", source: "Geryon the Steer" } +2117.1 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +2118.9 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +2120.7 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +2122.5 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +2124.3 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +2129.0 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +2136.3 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +2147.4 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +2152.8 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +2157.8 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +2167.2 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +2173.3 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +2174.3 "Runaway Sludge" Ability { id: "74D6", source: "Geryon the Steer" } +2180.6 "Shockwave" Ability { id: "74CE", source: "Geryon the Steer" } +2190.7 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +2193.8 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +2202.0 "Colossal Launch / Colossal Swing" Ability { id: ["74C8", "74D1"], source: "Geryon the Steer" } +2208.7 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +2215.3 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +2225.7 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } + +2235.8 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } window 40,40 jump 2104.8 +2237.9 "--sync--" #Ability { id: "74C6", source: "Geryon the Steer" } +2242.9 "Runaway Sludge" #Ability { id: "74D6", source: "Geryon the Steer" } +2248.1 "--sync--" #Ability { id: "74C[9A]", source: "Geryon the Steer" } +2249.9 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +2251.7 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +2253.5 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +2255.3 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } ### Geryon the Steer (middle door, 1st boss) @@ -143,137 +143,137 @@ hideall "--sync--" # -ii 7A1C 74D3 # Sifting Site will be sealed off -3000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1070:/ window 100000,0 -3005.0 "--sync--" sync / 14:[^:]*:Geryon the Steer:74CF:/ -3010.0 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ -3019.1 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3035.8 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3040.4 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3050.6 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -3056.0 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ - -3060.0 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -3067.1 "Exploding Catapult" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ +3000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1070" } window 100000,0 +3005.0 "--sync--" StartsUsing { id: "74CF", source: "Geryon the Steer" } +3010.0 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } +3019.1 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3035.8 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3040.4 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3050.6 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +3056.0 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } + +3060.0 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +3067.1 "Exploding Catapult" #Ability { id: "74C7", source: "Geryon the Steer" } # -> left handle -3062.1 "--sync--" sync / 257 101:80038CA1:00020001:09:/ window 70,70 jump 3262.1 -3076.2 "Intake?" #sync / 1[56]:[^:]*:Geryon the Steer:74D9:/ +3062.1 "--sync--" MapEffect { flags: "00020001", location: "09" } window 70,70 jump 3262.1 +3076.2 "Intake?" #Ability { id: "74D9", source: "Geryon the Steer" } # -> right handle -3062.1 "--sync--" sync / 257 101:80038CA1:20000004:0A:/ window 70,70 jump 4062.1 -3078.2 "Rolling Boulder?" #sync / 1[56]:[^:]*:Geryon the Steer:74DA:/ +3062.1 "--sync--" MapEffect { flags: "20000004", location: "0A" } window 70,70 jump 4062.1 +3078.2 "Rolling Boulder?" #Ability { id: "74DA", source: "Geryon the Steer" } # TODO: fix the test_timeline utilities (python doesn't handle this, typescript is broken) -3076.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74D9:/ window 70,70 jump 3276.2 -3078.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74DA:/ window 70,70 jump 4078.2 +3076.2 "--sync--" Ability { id: "74D9", source: "Geryon the Steer" } window 70,70 jump 3276.2 +3078.2 "--sync--" Ability { id: "74DA", source: "Geryon the Steer" } window 70,70 jump 4078.2 # Geryon the Steer (middle door, 1st boss, left handle) -3260.0 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -3262.1 "--sync--" sync / 257 101:80038CA1:00020001:09:/ -3267.1 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3276.2 "Intake" sync / 1[56]:[^:]*:Geryon the Steer:74D9:/ window 300,10 -3280.6 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3285.2 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3288.3 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -3296.5 "Colossal Launch" sync / 1[56]:[^:]*:Geryon the Steer:74C8:/ -3303.2 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3306.8 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3314.9 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -3323.9 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3325.3 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -3327.1 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -3328.9 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -3330.7 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -3332.5 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -3336.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -3343.5 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3354.6 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -3360.0 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3365.0 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ - -3374.4 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -3381.5 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3390.6 "Intake" sync / 1[56]:[^:]*:Geryon the Steer:74D9:/ -3395.0 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3399.6 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3402.7 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -3410.8 "Colossal Launch / Colossal Swing" sync / 1[56]:[^:]*:Geryon the Steer:(74C8|74D1):/ # only seen Launch -3417.5 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3424.3 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -3433.7 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ -3442.8 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3450.9 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -3459.6 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3461.0 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -3462.8 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -3464.6 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -3466.4 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -3468.2 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -3471.9 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -3479.2 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3490.3 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -3495.7 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3500.7 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ - -3510.1 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ window 80,80 jump 3374.4 -3517.2 "Exploding Catapult" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -3526.3 "Intake" #sync / 1[56]:[^:]*:Geryon the Steer:74D9:/ -3530.7 "Explosion" #sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -3535.3 "Exploding Catapult" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ +3260.0 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +3262.1 "--sync--" MapEffect { flags: "00020001", location: "09" } +3267.1 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3276.2 "Intake" Ability { id: "74D9", source: "Geryon the Steer" } window 300,10 +3280.6 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3285.2 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3288.3 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +3296.5 "Colossal Launch" Ability { id: "74C8", source: "Geryon the Steer" } +3303.2 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3306.8 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3314.9 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +3323.9 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3325.3 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +3327.1 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +3328.9 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +3330.7 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +3332.5 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +3336.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +3343.5 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3354.6 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +3360.0 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3365.0 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } + +3374.4 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +3381.5 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3390.6 "Intake" Ability { id: "74D9", source: "Geryon the Steer" } +3395.0 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3399.6 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3402.7 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +3410.8 "Colossal Launch / Colossal Swing" Ability { id: ["74C8", "74D1"], source: "Geryon the Steer" } # only seen Launch +3417.5 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3424.3 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +3433.7 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } +3442.8 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3450.9 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +3459.6 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3461.0 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +3462.8 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +3464.6 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +3466.4 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +3468.2 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +3471.9 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +3479.2 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +3490.3 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +3495.7 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +3500.7 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } + +3510.1 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } window 80,80 jump 3374.4 +3517.2 "Exploding Catapult" #Ability { id: "74C7", source: "Geryon the Steer" } +3526.3 "Intake" #Ability { id: "74D9", source: "Geryon the Steer" } +3530.7 "Explosion" #Ability { id: "74D[45]", source: "Powder Keg" } +3535.3 "Exploding Catapult" #Ability { id: "74C7", source: "Geryon the Steer" } # Geryon the Steer (middle door, 1st boss, right handle) -4060.0 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -4067.1 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4078.2 "Rolling Boulder" #sync / 1[56]:[^:]*:Geryon the Steer:74DA:/ -4081.7 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4086.1 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4089.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -4097.3 "Colossal Launch" sync / 1[56]:[^:]*:Geryon the Steer:74C8:/ -4102.5 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -4103.9 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4109.8 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4120.9 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -4126.3 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4131.3 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -4140.7 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4148.8 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -4157.6 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4159.0 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -4160.8 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -4162.6 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -4164.4 "Gigantomill 3 " #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -4166.2 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ - -4174.9 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -4182.0 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4193.1 "Rolling Boulder" #sync / 1[56]:[^:]*:Geryon the Steer:74DA:/ -4196.6 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4201.1 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4204.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -4212.3 "Colossal Launch / Colossal Swing" sync / 1[56]:[^:]*:Geryon the Steer:(74C8|74D1):/ # only seen Swing -4218.0 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4224.7 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -4234.1 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ -4238.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -4245.5 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4256.6 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -4262.0 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4267.0 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -4276.4 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4284.5 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -4293.4 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4294.8 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -4296.6 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -4298.4 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -4300.2 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -4302.0 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ - -4310.7 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ window 70,70 jump 4174.9 -4317.8 "Exploding Catapult" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -4328.9 "Rolling Boulder" #sync / 1[56]:[^:]*:Geryon the Steer:74DA:/ -4332.4 "Explosion" #sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -4336.9 "Exploding Catapult" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ +4060.0 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +4067.1 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +4078.2 "Rolling Boulder" #Ability { id: "74DA", source: "Geryon the Steer" } +4081.7 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +4086.1 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +4089.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +4097.3 "Colossal Launch" Ability { id: "74C8", source: "Geryon the Steer" } +4102.5 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +4103.9 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +4109.8 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +4120.9 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +4126.3 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +4131.3 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +4140.7 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +4148.8 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +4157.6 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +4159.0 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +4160.8 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +4162.6 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +4164.4 "Gigantomill 3 " #Ability { id: "74CB", source: "Geryon the Steer" } +4166.2 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } + +4174.9 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +4182.0 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +4193.1 "Rolling Boulder" #Ability { id: "74DA", source: "Geryon the Steer" } +4196.6 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +4201.1 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +4204.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +4212.3 "Colossal Launch / Colossal Swing" Ability { id: ["74C8", "74D1"], source: "Geryon the Steer" } # only seen Swing +4218.0 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +4224.7 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +4234.1 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } +4238.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +4245.5 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +4256.6 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +4262.0 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +4267.0 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +4276.4 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +4284.5 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +4293.4 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +4294.8 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +4296.6 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +4298.4 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +4300.2 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +4302.0 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } + +4310.7 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } window 70,70 jump 4174.9 +4317.8 "Exploding Catapult" #Ability { id: "74C7", source: "Geryon the Steer" } +4328.9 "Rolling Boulder" #Ability { id: "74DA", source: "Geryon the Steer" } +4332.4 "Explosion" #Ability { id: "74D[45]", source: "Powder Keg" } +4336.9 "Exploding Catapult" #Ability { id: "74C7", source: "Geryon the Steer" } ### Geryon the Steer (right door, 1st boss) @@ -281,129 +281,129 @@ hideall "--sync--" # -ii 7A1C 74D3 # Settling Basin will be sealed off -5000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:106D:/ window 100000,0 -5005.0 "--sync--" sync / 14:[^:]*:Geryon the Steer:74CF:/ -5010.0 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ +5000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "106D" } window 100000,0 +5005.0 "--sync--" StartsUsing { id: "74CF", source: "Geryon the Steer" } +5010.0 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } -5020.1 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -5030.2 "Suddenly Sewage 1" #sync / 1[56]:[^:]*:Geryon the Steer:74D8:/ -5032.2 "Suddenly Sewage 2" #sync / 1[56]:[^:]*:Geryon the Steer:74D8:/ +5020.1 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +5030.2 "Suddenly Sewage 1" #Ability { id: "74D8", source: "Geryon the Steer" } +5032.2 "Suddenly Sewage 2" #Ability { id: "74D8", source: "Geryon the Steer" } # We could probably jump from MapEffect lines here to each branch # But for simplicity, just use the "jump to middle" before Gigantomill # to differentiate the timelines. -5023.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ window 30,30 jump 6023.2 +5023.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } window 30,30 jump 6023.2 # Geryon the Steer (right door, 1st boss, ceruleum leak) -5020.1 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -5030.2 "Suddenly Sewage 1" #sync / 1[56]:[^:]*:Geryon the Steer:74D8:/ -5032.2 "Suddenly Sewage 2" #sync / 1[56]:[^:]*:Geryon the Steer:74D8:/ -5040.2 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -5056.9 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -5061.5 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -5071.7 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -5077.1 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -5081.1 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -5084.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -5092.4 "Colossal Launch" sync / 1[56]:[^:]*:Geryon the Steer:74C8:/ -5099.1 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -5102.7 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -5110.8 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -5119.7 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -5121.1 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -5122.9 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -5124.7 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -5126.5 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -5128.3 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -5132.0 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -5139.3 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -5150.4 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -5155.8 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -5160.8 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ - -5170.2 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -5174.3 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -5180.3 "Suddenly Sewage 1" #sync / 1[56]:[^:]*:Geryon the Steer:74D8:/ -5181.7 "Colossal Swing" sync / 1[56]:[^:]*:Geryon the Steer:74D1:/ -5182.3 "Suddenly Sewage 2" #sync / 1[56]:[^:]*:Geryon the Steer:74D8:/ -5190.9 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -5194.0 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -5202.4 "Colossal Launch / Colossal Swing" sync / 1[56]:[^:]*:Geryon the Steer:(74C8|74D1):/ -5209.1 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -5215.8 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -5225.2 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ -5234.3 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -5242.4 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -5251.3 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -5252.7 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -5254.5 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -5256.3 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -5258.1 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -5259.9 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -5263.6 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -5270.9 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -5282.0 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -5287.4 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -5292.4 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ - -5301.8 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ window 70,70 jump 5370.2 -5305.9 "--sync--" #sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -5311.9 "Suddenly Sewage 1" #sync / 1[56]:[^:]*:Geryon the Steer:74D8:/ -5313.3 "Colossal Swing" #sync / 1[56]:[^:]*:Geryon the Steer:74D1:/ -5313.9 "Suddenly Sewage 2" #sync / 1[56]:[^:]*:Geryon the Steer:74D8:/ -5322.5 "Exploding Catapult" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ +5020.1 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +5030.2 "Suddenly Sewage 1" #Ability { id: "74D8", source: "Geryon the Steer" } +5032.2 "Suddenly Sewage 2" #Ability { id: "74D8", source: "Geryon the Steer" } +5040.2 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +5056.9 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +5061.5 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +5071.7 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +5077.1 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +5081.1 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +5084.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +5092.4 "Colossal Launch" Ability { id: "74C8", source: "Geryon the Steer" } +5099.1 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +5102.7 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +5110.8 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +5119.7 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +5121.1 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +5122.9 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +5124.7 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +5126.5 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +5128.3 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +5132.0 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +5139.3 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +5150.4 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +5155.8 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +5160.8 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } + +5170.2 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +5174.3 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +5180.3 "Suddenly Sewage 1" #Ability { id: "74D8", source: "Geryon the Steer" } +5181.7 "Colossal Swing" Ability { id: "74D1", source: "Geryon the Steer" } +5182.3 "Suddenly Sewage 2" #Ability { id: "74D8", source: "Geryon the Steer" } +5190.9 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +5194.0 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +5202.4 "Colossal Launch / Colossal Swing" Ability { id: ["74C8", "74D1"], source: "Geryon the Steer" } +5209.1 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +5215.8 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +5225.2 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } +5234.3 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +5242.4 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +5251.3 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +5252.7 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +5254.5 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +5256.3 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +5258.1 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +5259.9 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +5263.6 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +5270.9 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +5282.0 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +5287.4 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +5292.4 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } + +5301.8 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } window 70,70 jump 5370.2 +5305.9 "--sync--" #Ability { id: "74C6", source: "Geryon the Steer" } +5311.9 "Suddenly Sewage 1" #Ability { id: "74D8", source: "Geryon the Steer" } +5313.3 "Colossal Swing" #Ability { id: "74D1", source: "Geryon the Steer" } +5313.9 "Suddenly Sewage 2" #Ability { id: "74D8", source: "Geryon the Steer" } +5322.5 "Exploding Catapult" #Ability { id: "74C7", source: "Geryon the Steer" } # Geryon the Steer (right door, 1st boss, no ceruleum leak) -6020.1 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -6023.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -6033.6 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -6035.4 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6037.2 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6039.0 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6040.8 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6049.5 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -6066.2 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -6070.8 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -6081.0 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -6086.4 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -6090.4 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -6093.5 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -6101.6 "Colossal Launch" sync / 1[56]:[^:]*:Geryon the Steer:74C8:/ -6108.3 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -6108.9 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -6116.2 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -6127.3 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -6132.7 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -6137.7 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ - -6147.1 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ -6150.2 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -6160.5 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -6162.3 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6164.1 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6165.9 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6167.7 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6176.4 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -6179.5 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -6187.7 "Colossal Launch / Colossal Swing" sync / 1[56]:[^:]*:Geryon the Steer:(74C8|74D1):/ -6194.4 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -6201.0 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ -6210.4 "Colossal Strike" sync / 1[56]:[^:]*:Geryon the Steer:74CF:/ -6214.5 "--sync--" sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -6221.8 "Exploding Catapult" sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ -6232.9 "Colossal Charge" sync / 1[56]:[^:]*:Geryon the Steer:74C[CD]:/ -6238.3 "Explosion" sync / 1[56]:[^:]*:Powder Keg:74D[45]:/ -6243.3 "Colossal Slam" sync / 1[56]:[^:]*:Geryon the Steer:74D0:/ - -6252.7 "Subterranean Shudder" sync / 1[56]:[^:]*:Geryon the Steer:74D2:/ window 70,70 jump 6147.1 -6255.8 "--sync--" #sync / 1[56]:[^:]*:Geryon the Steer:74C6:/ -6266.1 "--sync--" #sync / 1[56]:[^:]*:Geryon the Steer:74C[9A]:/ -6267.9 "Gigantomill 1" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6269.7 "Gigantomill 2" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6271.5 "Gigantomill 3" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6273.3 "Gigantomill 4" #sync / 1[56]:[^:]*:Geryon the Steer:74CB:/ -6282.0 "Exploding Catapult" #sync / 1[56]:[^:]*:Geryon the Steer:74C7:/ +6020.1 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +6023.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +6033.6 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +6035.4 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +6037.2 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +6039.0 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +6040.8 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +6049.5 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +6066.2 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +6070.8 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +6081.0 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +6086.4 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +6090.4 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +6093.5 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +6101.6 "Colossal Launch" Ability { id: "74C8", source: "Geryon the Steer" } +6108.3 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +6108.9 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +6116.2 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +6127.3 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +6132.7 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +6137.7 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } + +6147.1 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } +6150.2 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +6160.5 "--sync--" Ability { id: "74C[9A]", source: "Geryon the Steer" } +6162.3 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +6164.1 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +6165.9 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +6167.7 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +6176.4 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +6179.5 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +6187.7 "Colossal Launch / Colossal Swing" Ability { id: ["74C8", "74D1"], source: "Geryon the Steer" } +6194.4 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +6201.0 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } +6210.4 "Colossal Strike" Ability { id: "74CF", source: "Geryon the Steer" } +6214.5 "--sync--" Ability { id: "74C6", source: "Geryon the Steer" } +6221.8 "Exploding Catapult" Ability { id: "74C7", source: "Geryon the Steer" } +6232.9 "Colossal Charge" Ability { id: "74C[CD]", source: "Geryon the Steer" } +6238.3 "Explosion" Ability { id: "74D[45]", source: "Powder Keg" } +6243.3 "Colossal Slam" Ability { id: "74D0", source: "Geryon the Steer" } + +6252.7 "Subterranean Shudder" Ability { id: "74D2", source: "Geryon the Steer" } window 70,70 jump 6147.1 +6255.8 "--sync--" #Ability { id: "74C6", source: "Geryon the Steer" } +6266.1 "--sync--" #Ability { id: "74C[9A]", source: "Geryon the Steer" } +6267.9 "Gigantomill 1" #Ability { id: "74CB", source: "Geryon the Steer" } +6269.7 "Gigantomill 2" #Ability { id: "74CB", source: "Geryon the Steer" } +6271.5 "Gigantomill 3" #Ability { id: "74CB", source: "Geryon the Steer" } +6273.3 "Gigantomill 4" #Ability { id: "74CB", source: "Geryon the Steer" } +6282.0 "Exploding Catapult" #Ability { id: "74C7", source: "Geryon the Steer" } ### Silkie (left door, 2nd boss) @@ -411,24 +411,24 @@ hideall "--sync--" # -ii 772F 7730 7731 7732 7733 7734 7743 7749 7741 7746 774B 774C 77C0 # Forgotten Forecourt will be sealed off -7000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1069:/ window 100000,0 -7009.3 "--sync--" sync / 14:[^:]*:Silkie:772C:/ window 10,10 -7014.3 "Total Wash" sync / 1[56]:[^:]*:Silkie:772C:/ -7022.0 "Squeaky Left/Squeaky Right" sync / 1[56]:[^:]*:Silkie:(772E|772D):/ -7040.9 "Carpet Beater" sync / 1[56]:[^:]*:Silkie:772B:/ -7051.6 "Squeaky Left/Squeaky Right" sync / 1[56]:[^:]*:Silkie:(772E|772D):/ -7069.6 "Chilling Suds" sync / 1[56]:[^:]*:Silkie:7736:/ -7076.7 "Soap's Up" sync / 1[56]:[^:]*:Silkie:7737:/ -7077.7 "Chilling Duster" sync / 1[56]:[^:]*:Silkie:7738:/ -7086.8 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:7735:/ -7093.9 "Soap's Up" sync / 1[56]:[^:]*:Silkie:7737:/ -7094.9 "Bracing Duster" sync / 1[56]:[^:]*:Silkie:7739:/ -7104.0 "Bracing Suds / Chilling Suds" sync / 1[56]:[^:]*:Silkie:(7735|7736):/ -7112.8 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:773A:/ -7116.2 "Bracing Duster / Chilling Duster" sync / 1[56]:[^:]*:Silkie:(773B|773C):/ -7128.3 "Spot Remover" sync / 1[56]:[^:]*:Silkie:7742:/ -7137.4 "Dust Bluster" sync / 1[56]:[^:]*:Silkie:7744:/ -7148.5 "Total Wash" sync / 1[56]:[^:]*:Silkie:772C:/ +7000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1069" } window 100000,0 +7009.3 "--sync--" StartsUsing { id: "772C", source: "Silkie" } window 10,10 +7014.3 "Total Wash" Ability { id: "772C", source: "Silkie" } +7022.0 "Squeaky Left/Squeaky Right" Ability { id: ["772E", "772D"], source: "Silkie" } +7040.9 "Carpet Beater" Ability { id: "772B", source: "Silkie" } +7051.6 "Squeaky Left/Squeaky Right" Ability { id: ["772E", "772D"], source: "Silkie" } +7069.6 "Chilling Suds" Ability { id: "7736", source: "Silkie" } +7076.7 "Soap's Up" Ability { id: "7737", source: "Silkie" } +7077.7 "Chilling Duster" Ability { id: "7738", source: "Silkie" } +7086.8 "Bracing Suds" Ability { id: "7735", source: "Silkie" } +7093.9 "Soap's Up" Ability { id: "7737", source: "Silkie" } +7094.9 "Bracing Duster" Ability { id: "7739", source: "Silkie" } +7104.0 "Bracing Suds / Chilling Suds" Ability { id: ["7735", "7736"], source: "Silkie" } +7112.8 "Slippery Soap" Ability { id: "773A", source: "Silkie" } +7116.2 "Bracing Duster / Chilling Duster" Ability { id: ["773B", "773C"], source: "Silkie" } +7128.3 "Spot Remover" Ability { id: "7742", source: "Silkie" } +7137.4 "Dust Bluster" Ability { id: "7744", source: "Silkie" } +7148.5 "Total Wash" Ability { id: "772C", source: "Silkie" } # TODO: depending on which branch you take, the middle # section of Silkie between Total Wash and Fresh Puff @@ -439,76 +439,76 @@ hideall "--sync--" # some of it, so maybe Good Enough (TM). # Bridge 01 -#7148.5 "Total Wash" sync / 1[56]:[^:]*:Silkie:772C:/ -#7158.6 "Eastern Ewers" sync / 1[56]:[^:]*:Silkie:7747:/ -#7162.7 "Brim Over" sync / 1[56]:[^:]*:Eastern Ewer:7748:/ -#7164.7 "Rinse" duration 19.7 #sync / 1[56]:[^:]*:Eastern Ewer:7749:/ -#7165.7 "Brim Over" sync / 1[56]:[^:]*:Eastern Ewer:7748:/ -#7168.7 "Brim Over" sync / 1[56]:[^:]*:Eastern Ewer:7748:/ -#7171.7 "Brim Over" sync / 1[56]:[^:]*:Eastern Ewer:7748:/ -#7172.7 "Chilling Suds" sync / 1[56]:[^:]*:Silkie:7736:/ -#7174.7 "Brim Over" sync / 1[56]:[^:]*:Eastern Ewer:7748:/ -#7179.8 "Soap's Up" sync / 1[56]:[^:]*:Silkie:7737:/ -#7180.8 "Chilling Duster" sync / 1[56]:[^:]*:Silkie:7738:/ -#7191.0 "Fresh Puff" sync / 1[56]:[^:]*:Silkie:773D:/ +#7148.5 "Total Wash" Ability { id: "772C", source: "Silkie" } +#7158.6 "Eastern Ewers" Ability { id: "7747", source: "Silkie" } +#7162.7 "Brim Over" Ability { id: "7748", source: "Eastern Ewer" } +#7164.7 "Rinse" duration 19.7 #Ability { id: "7749", source: "Eastern Ewer" } +#7165.7 "Brim Over" Ability { id: "7748", source: "Eastern Ewer" } +#7168.7 "Brim Over" Ability { id: "7748", source: "Eastern Ewer" } +#7171.7 "Brim Over" Ability { id: "7748", source: "Eastern Ewer" } +#7172.7 "Chilling Suds" Ability { id: "7736", source: "Silkie" } +#7174.7 "Brim Over" Ability { id: "7748", source: "Eastern Ewer" } +#7179.8 "Soap's Up" Ability { id: "7737", source: "Silkie" } +#7180.8 "Chilling Duster" Ability { id: "7738", source: "Silkie" } +#7191.0 "Fresh Puff" Ability { id: "773D", source: "Silkie" } # Bridge 02 -#7148.5 "Total Wash" sync / 1[56]:[^:]*:Silkie:772C:/ -#7159.6 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:7735:/ -#7166.3 "Spot Remover" sync / 1[56]:[^:]*:Silkie:7742:/ -#7178.4 "Wash Out" sync / 1[56]:[^:]*:Silkie:7745:/ -#7186.4 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:773A:/ -#7190.0 "Bracing Duster" sync / 1[56]:[^:]*:Silkie:773C:/ -#7200.9 "Fresh Puff" sync / 1[56]:[^:]*:Silkie:773D:/ +#7148.5 "Total Wash" Ability { id: "772C", source: "Silkie" } +#7159.6 "Bracing Suds" Ability { id: "7735", source: "Silkie" } +#7166.3 "Spot Remover" Ability { id: "7742", source: "Silkie" } +#7178.4 "Wash Out" Ability { id: "7745", source: "Silkie" } +#7186.4 "Slippery Soap" Ability { id: "773A", source: "Silkie" } +#7190.0 "Bracing Duster" Ability { id: "773C", source: "Silkie" } +#7200.9 "Fresh Puff" Ability { id: "773D", source: "Silkie" } # Bridge 03 -#7148.5 "Total Wash" sync / 1[56]:[^:]*:Silkie:772C:/ -#7164.6 "Fresh Puff" sync / 1[56]:[^:]*:Silkie:773D:/ -#7177.7 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:7735:/ -#7178.7 "Deep Clean" sync / 1[56]:[^:]*:Silken Puff:774E:/ -#7186.9 "Soap's Up" sync / 1[56]:[^:]*:Silkie:7737:/ -#7187.9 "Bracing Duster" sync / 1[56]:[^:]*:Silkie:7739:/ -#7197.0 "Fresh Puff" sync / 1[56]:[^:]*:Silkie:773D:/ +#7148.5 "Total Wash" Ability { id: "772C", source: "Silkie" } +#7164.6 "Fresh Puff" Ability { id: "773D", source: "Silkie" } +#7177.7 "Bracing Suds" Ability { id: "7735", source: "Silkie" } +#7178.7 "Deep Clean" Ability { id: "774E", source: "Silken Puff" } +#7186.9 "Soap's Up" Ability { id: "7737", source: "Silkie" } +#7187.9 "Bracing Duster" Ability { id: "7739", source: "Silkie" } +#7197.0 "Fresh Puff" Ability { id: "773D", source: "Silkie" } # Bridge 04 -#7148.5 "Total Wash" sync / 1[56]:[^:]*:Silkie:772C:/ -#7158.6 "Fresh Puff" sync / 1[56]:[^:]*:Silkie:773D:/ -#7164.8 "Puff and Tumble" sync / 1[56]:[^:]*:Silken Puff:774A:/ duration 11.4 -#7173.1 "Bracing Suds" sync / 1[56]:[^:]*:Silkie:7735:/ -#7182.1 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:773A:/ -#7185.5 "Bracing Duster" sync / 1[56]:[^:]*:Silkie:773C:/ -#7196.3 "Fresh Puff" sync / 1[56]:[^:]*:Silkie:773D:/ +#7148.5 "Total Wash" Ability { id: "772C", source: "Silkie" } +#7158.6 "Fresh Puff" Ability { id: "773D", source: "Silkie" } +#7164.8 "Puff and Tumble" Ability { id: "774A", source: "Silken Puff" } duration 11.4 +#7173.1 "Bracing Suds" Ability { id: "7735", source: "Silkie" } +#7182.1 "Slippery Soap" Ability { id: "773A", source: "Silkie" } +#7185.5 "Bracing Duster" Ability { id: "773C", source: "Silkie" } +#7196.3 "Fresh Puff" Ability { id: "773D", source: "Silkie" } # Puffs # Note: this is timed to the longest of all bridge sections -7196.9 "--sync--" sync / 14:[^:]*:Silkie:773D:/ window 20,100 -7200.9 "Fresh Puff" sync / 1[56]:[^:]*:Silkie:773D:/ -7210.3 "Chilling Suds" sync / 1[56]:[^:]*:Silkie:7736:/ -7217.0 "Squeaky Left/Squeaky Right" sync / 1[56]:[^:]*:Silkie:(772E|772D):/ -7233.9 "Soaping Spree" sync / 1[56]:[^:]*:Silkie:773E:/ -7234.9 "Chilling Duster" sync / 1[56]:[^:]*:Silken Puff:773F:/ -7245.0 "Total Wash" sync / 1[56]:[^:]*:Silkie:772C:/ -7256.2 "Bracing Suds / Chilling Suds" sync / 1[56]:[^:]*:Silkie:(7735|7736):/ -7264.0 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:773A:/ -7267.6 "Bracing Duster / Chilling Duster" sync / 1[56]:[^:]*:Silkie:(773B|773C):/ - -7278.8 "Squeaky Left/Squeaky Right" sync / 1[56]:[^:]*:Silkie:(772E|772D):/ -7298.7 "Carpet Beater" sync / 1[56]:[^:]*:Silkie:772B:/ -7306.4 "Spot Remover" sync / 1[56]:[^:]*:Silkie:7742:/ -7315.5 "Dust Bluster" sync / 1[56]:[^:]*:Silkie:7744:/ -7326.6 "Total Wash" sync / 1[56]:[^:]*:Silkie:772C:/ -7337.7 "Bracing Suds / Chilling Suds" sync / 1[56]:[^:]*:Silkie:(7735|7736):/ -7345.4 "Slippery Soap" sync / 1[56]:[^:]*:Silkie:773A:/ -7348.8 "Bracing Duster / Chilling Duster" sync / 1[56]:[^:]*:Silkie:(773B|773C):/ - -7359.9 "Squeaky Left/Squeaky Right" sync / 1[56]:[^:]*:Silkie:(772E|772D):/ window 20,20 jump 7278.8 -7379.8 "Carpet Beater" #sync / 1[56]:[^:]*:Silkie:772B:/ -7387.5 "Spot Remover" #sync / 1[56]:[^:]*:Silkie:7742:/ -7396.6 "Dust Bluster" #sync / 1[56]:[^:]*:Silkie:7744:/ -7407.7 "Total Wash" #sync / 1[56]:[^:]*:Silkie:772C:/ -7418.8 "Bracing Suds / Chilling Suds" #sync / 1[56]:[^:]*:Silkie:(7735|7736):/ -7426.5 "Slippery Soap" #sync / 1[56]:[^:]*:Silkie:773A:/ -7429.9 "Bracing Duster / Chilling Duster" #sync / 1[56]:[^:]*:Silkie:(773B|773C):/ +7196.9 "--sync--" StartsUsing { id: "773D", source: "Silkie" } window 20,100 +7200.9 "Fresh Puff" Ability { id: "773D", source: "Silkie" } +7210.3 "Chilling Suds" Ability { id: "7736", source: "Silkie" } +7217.0 "Squeaky Left/Squeaky Right" Ability { id: ["772E", "772D"], source: "Silkie" } +7233.9 "Soaping Spree" Ability { id: "773E", source: "Silkie" } +7234.9 "Chilling Duster" Ability { id: "773F", source: "Silken Puff" } +7245.0 "Total Wash" Ability { id: "772C", source: "Silkie" } +7256.2 "Bracing Suds / Chilling Suds" Ability { id: ["7735", "7736"], source: "Silkie" } +7264.0 "Slippery Soap" Ability { id: "773A", source: "Silkie" } +7267.6 "Bracing Duster / Chilling Duster" Ability { id: ["773B", "773C"], source: "Silkie" } + +7278.8 "Squeaky Left/Squeaky Right" Ability { id: ["772E", "772D"], source: "Silkie" } +7298.7 "Carpet Beater" Ability { id: "772B", source: "Silkie" } +7306.4 "Spot Remover" Ability { id: "7742", source: "Silkie" } +7315.5 "Dust Bluster" Ability { id: "7744", source: "Silkie" } +7326.6 "Total Wash" Ability { id: "772C", source: "Silkie" } +7337.7 "Bracing Suds / Chilling Suds" Ability { id: ["7735", "7736"], source: "Silkie" } +7345.4 "Slippery Soap" Ability { id: "773A", source: "Silkie" } +7348.8 "Bracing Duster / Chilling Duster" Ability { id: ["773B", "773C"], source: "Silkie" } + +7359.9 "Squeaky Left/Squeaky Right" Ability { id: ["772E", "772D"], source: "Silkie" } window 20,20 jump 7278.8 +7379.8 "Carpet Beater" #Ability { id: "772B", source: "Silkie" } +7387.5 "Spot Remover" #Ability { id: "7742", source: "Silkie" } +7396.6 "Dust Bluster" #Ability { id: "7744", source: "Silkie" } +7407.7 "Total Wash" #Ability { id: "772C", source: "Silkie" } +7418.8 "Bracing Suds / Chilling Suds" #Ability { id: ["7735", "7736"], source: "Silkie" } +7426.5 "Slippery Soap" #Ability { id: "773A", source: "Silkie" } +7429.9 "Bracing Duster / Chilling Duster" #Ability { id: ["773B", "773C"], source: "Silkie" } ### Gladiator of Sil'dih @@ -516,388 +516,388 @@ hideall "--sync--" # -ii 764E 763A 763B 763C 764D 7654 7655 # The Cornice of Favor will be sealed off -8000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1071:/ window 100000,0 -8007.0 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7656:/ window 20,20 -8012.0 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7656:/ -8019.2 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -8031.4 "Ring of Might (out)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(763F|7640|7641):/ -8031.4 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BF:/ -8033.4 "Ring of Might (in)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(7642|7643|7644):/ -8044.6 "Sculptor's Passion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764A:/ -8050.8 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -8063.6 "Ring of Might (out)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(763F|7640|7641):/ -8063.6 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BF:/ -8065.6 "Ring of Might (in)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(7642|7643|7644):/ -8078.8 "Flash of Steel?" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764C:/ +8000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1071" } window 100000,0 +8007.0 "--sync--" StartsUsing { id: "7656", source: "Gladiator of Sil'dih" } window 20,20 +8012.0 "Flash of Steel" Ability { id: "7656", source: "Gladiator of Sil'dih" } +8019.2 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +8031.4 "Ring of Might (out)" Ability { id: ["763F", "7640", "7641"], source: "Gladiator of Sil'dih" } +8031.4 "--sync--" Ability { id: "77BF", source: "Gladiator of Sil'dih" } +8033.4 "Ring of Might (in)" Ability { id: ["7642", "7643", "7644"], source: "Gladiator of Sil'dih" } +8044.6 "Sculptor's Passion" Ability { id: "764A", source: "Gladiator of Sil'dih" } +8050.8 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +8063.6 "Ring of Might (out)" Ability { id: ["763F", "7640", "7641"], source: "Gladiator of Sil'dih" } +8063.6 "--sync--" Ability { id: "77BF", source: "Gladiator of Sil'dih" } +8065.6 "Ring of Might (in)" Ability { id: ["7642", "7643", "7644"], source: "Gladiator of Sil'dih" } +8078.8 "Flash of Steel?" Ability { id: "764C", source: "Gladiator of Sil'dih" } # Bridge 08 -#8065.6 "Ring of Might (in)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7644:/ -#8078.8 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764C:/ -#8080.9 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:79F6:/ -#8084.9 "Biting Wind" sync / 1[56]:[^:]*:Gladiator of Sil'dih:79F6:/ -#8088.5 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -#8102.8 "Shattering Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764B:/ -#8111.1 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7657:/ -#8116.1 "Mighty Smite" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7657:/ +#8065.6 "Ring of Might (in)" Ability { id: "7644", source: "Gladiator of Sil'dih" } +#8078.8 "Flash of Steel" Ability { id: "764C", source: "Gladiator of Sil'dih" } +#8080.9 "--sync--" StartsUsing { id: "79F6", source: "Gladiator of Sil'dih" } +#8084.9 "Biting Wind" Ability { id: "79F6", source: "Gladiator of Sil'dih" } +#8088.5 "--sync--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +#8102.8 "Shattering Steel" Ability { id: "764B", source: "Gladiator of Sil'dih" } +#8111.1 "--sync--" StartsUsing { id: "7657", source: "Gladiator of Sil'dih" } +#8116.1 "Mighty Smite" Ability { id: "7657", source: "Gladiator of Sil'dih" } # Bridge 09 -#8065.6 "Ring of Might (in)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7644:/ -#8078.8 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764F:/ -#8081.9 "--sync--" sync / 14:[^:]*:Antique Boulder:7650:/ -#8088.9 "Landing 1" sync / 1[56]:[^:]*:Antique Boulder:7650:/ -#8092.9 "Landing 2" sync / 1[56]:[^:]*:Antique Boulder:7650:/ -#8096.0 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -#8096.9 "Landing 3" sync / 1[56]:[^:]*:Antique Boulder:7650:/ -#8100.9 "Landing 4" sync / 1[56]:[^:]*:Antique Boulder:7650:/ -#8110.7 "Shattering Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764B:/ -#8117.0 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7657:/ -#8122.0 "Mighty Smite" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7657:/ +#8065.6 "Ring of Might (in)" Ability { id: "7644", source: "Gladiator of Sil'dih" } +#8078.8 "Flash of Steel" Ability { id: "764F", source: "Gladiator of Sil'dih" } +#8081.9 "--sync--" StartsUsing { id: "7650", source: "Antique Boulder" } +#8088.9 "Landing 1" Ability { id: "7650", source: "Antique Boulder" } +#8092.9 "Landing 2" Ability { id: "7650", source: "Antique Boulder" } +#8096.0 "--sync--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +#8096.9 "Landing 3" Ability { id: "7650", source: "Antique Boulder" } +#8100.9 "Landing 4" Ability { id: "7650", source: "Antique Boulder" } +#8110.7 "Shattering Steel" Ability { id: "764B", source: "Gladiator of Sil'dih" } +#8117.0 "--sync--" StartsUsing { id: "7657", source: "Gladiator of Sil'dih" } +#8122.0 "Mighty Smite" Ability { id: "7657", source: "Gladiator of Sil'dih" } # Bridge 10 -#8065.6 "Ring of Might (in)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7644:/ -#8073.8 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7651:/ -#8076.8 "Hateful Visage 1" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7651:/ -#8089.0 "Golden Flame 1" sync / 1[56]:[^:]*:Hateful Visage:7652:/ -#8095.0 "Hateful Visage 2" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7651:/ -#8107.2 "Golden Flame 2" sync / 1[56]:[^:]*:Hateful Visage:7652:/ -#8107.2 "Sculptor's Passion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764A:/ -#8114.5 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7657:/ -#8119.5 "Mighty Smite" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7657:/ +#8065.6 "Ring of Might (in)" Ability { id: "7644", source: "Gladiator of Sil'dih" } +#8073.8 "--sync--" StartsUsing { id: "7651", source: "Gladiator of Sil'dih" } +#8076.8 "Hateful Visage 1" Ability { id: "7651", source: "Gladiator of Sil'dih" } +#8089.0 "Golden Flame 1" Ability { id: "7652", source: "Hateful Visage" } +#8095.0 "Hateful Visage 2" Ability { id: "7651", source: "Gladiator of Sil'dih" } +#8107.2 "Golden Flame 2" Ability { id: "7652", source: "Hateful Visage" } +#8107.2 "Sculptor's Passion" Ability { id: "764A", source: "Gladiator of Sil'dih" } +#8114.5 "--sync--" StartsUsing { id: "7657", source: "Gladiator of Sil'dih" } +#8119.5 "Mighty Smite" Ability { id: "7657", source: "Gladiator of Sil'dih" } # Bridge 11 -#8065.6 "Ring of Might (in)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7644:/ -#8073.8 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7651:/ -#8076.8 "Hateful Visage" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7651:/ -#8089.0 "Silver Flame" sync / 1[56]:[^:]*:Hateful Visage:7653:/ duration 7.7 -#8094.0 "Sculptor's Passion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764A:/ -#8107.1 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7656:/ -#8114.4 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7657:/ -#8118.4 "Mighty Smite" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7657:/ - -8117.0 "--sync--" sync / 14:[^:]*:Gladiator of Sil'dih:7657:/ window 120,20 -8122.0 "Mighty Smite" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7657:/ -8128.1 "--corner--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -8141.3 "Rush of Might (near)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:763D:/ -8143.3 "Rush of Might (far)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:763E:/ -8152.0 "Wrath of Ruin" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7645:/ -8164.2 "Rack and Ruin 1" sync / 1[56]:[^:]*:Regret:7646:/ -8165.2 "Sculptor's Passion" sync / 1[56]:[^:]*:Gladiator of Sil'dih:764A:/ -8167.2 "Rack and Ruin 2" sync / 1[56]:[^:]*:Regret:7646:/ -8167.3 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -8180.5 "Rush of Might (near)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:763D:/ -8182.5 "Rush of Might (far)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:763E:/ - -8198.2 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7656:/ -8206.3 "Sundered Remains" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7648:/ -8214.4 "--middle--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -8218.4 "Sundered Remains (mid)" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7649:/ -8226.9 "Ring of Might (out)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(763F|7640|7641):/ -8226.9 "--sync--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BF:/ -8228.9 "Ring of Might (in)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:(7642|7643|7644):/ -8240.1 "Mighty Smite" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7657:/ -8253.2 "Wrath of Ruin" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7645:/ -8259.3 "--corner--" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -8265.3 "Rack and Ruin 1" sync / 1[56]:[^:]*:Regret:7646:/ -8268.3 "Rack and Ruin 2" sync / 1[56]:[^:]*:Regret:7646:/ -8272.4 "Rush of Might (near)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:763D:/ -8274.4 "Rush of Might (far)" sync / 1[56]:[^:]*:Gladiator of Sil'dih:763E:/ - -8291.1 "Flash of Steel" sync / 1[56]:[^:]*:Gladiator of Sil'dih:7656:/ window 70,70 jump 8198.2 -8299.2 "Sundered Remains" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7648:/ -8307.3 "--middle--" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7639:/ -8311.3 "Sundered Remains (mid)" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:7649:/ -8319.8 "Ring of Might (out)" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:(763F|7640|7641):/ -8319.8 "--sync--" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:77BF:/ -8321.8 "Ring of Might (in)" #sync / 1[56]:[^:]*:Gladiator of Sil'dih:(7642|7643|7644):/ +#8065.6 "Ring of Might (in)" Ability { id: "7644", source: "Gladiator of Sil'dih" } +#8073.8 "--sync--" StartsUsing { id: "7651", source: "Gladiator of Sil'dih" } +#8076.8 "Hateful Visage" Ability { id: "7651", source: "Gladiator of Sil'dih" } +#8089.0 "Silver Flame" Ability { id: "7653", source: "Hateful Visage" } duration 7.7 +#8094.0 "Sculptor's Passion" Ability { id: "764A", source: "Gladiator of Sil'dih" } +#8107.1 "Flash of Steel" Ability { id: "7656", source: "Gladiator of Sil'dih" } +#8114.4 "--sync--" StartsUsing { id: "7657", source: "Gladiator of Sil'dih" } +#8118.4 "Mighty Smite" Ability { id: "7657", source: "Gladiator of Sil'dih" } + +8117.0 "--sync--" StartsUsing { id: "7657", source: "Gladiator of Sil'dih" } window 120,20 +8122.0 "Mighty Smite" Ability { id: "7657", source: "Gladiator of Sil'dih" } +8128.1 "--corner--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +8141.3 "Rush of Might (near)" Ability { id: "763D", source: "Gladiator of Sil'dih" } +8143.3 "Rush of Might (far)" Ability { id: "763E", source: "Gladiator of Sil'dih" } +8152.0 "Wrath of Ruin" Ability { id: "7645", source: "Gladiator of Sil'dih" } +8164.2 "Rack and Ruin 1" Ability { id: "7646", source: "Regret" } +8165.2 "Sculptor's Passion" Ability { id: "764A", source: "Gladiator of Sil'dih" } +8167.2 "Rack and Ruin 2" Ability { id: "7646", source: "Regret" } +8167.3 "--sync--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +8180.5 "Rush of Might (near)" Ability { id: "763D", source: "Gladiator of Sil'dih" } +8182.5 "Rush of Might (far)" Ability { id: "763E", source: "Gladiator of Sil'dih" } + +8198.2 "Flash of Steel" Ability { id: "7656", source: "Gladiator of Sil'dih" } +8206.3 "Sundered Remains" Ability { id: "7648", source: "Gladiator of Sil'dih" } +8214.4 "--middle--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +8218.4 "Sundered Remains (mid)" #Ability { id: "7649", source: "Gladiator of Sil'dih" } +8226.9 "Ring of Might (out)" Ability { id: ["763F", "7640", "7641"], source: "Gladiator of Sil'dih" } +8226.9 "--sync--" Ability { id: "77BF", source: "Gladiator of Sil'dih" } +8228.9 "Ring of Might (in)" Ability { id: ["7642", "7643", "7644"], source: "Gladiator of Sil'dih" } +8240.1 "Mighty Smite" Ability { id: "7657", source: "Gladiator of Sil'dih" } +8253.2 "Wrath of Ruin" Ability { id: "7645", source: "Gladiator of Sil'dih" } +8259.3 "--corner--" Ability { id: "7639", source: "Gladiator of Sil'dih" } +8265.3 "Rack and Ruin 1" Ability { id: "7646", source: "Regret" } +8268.3 "Rack and Ruin 2" Ability { id: "7646", source: "Regret" } +8272.4 "Rush of Might (near)" Ability { id: "763D", source: "Gladiator of Sil'dih" } +8274.4 "Rush of Might (far)" Ability { id: "763E", source: "Gladiator of Sil'dih" } + +8291.1 "Flash of Steel" Ability { id: "7656", source: "Gladiator of Sil'dih" } window 70,70 jump 8198.2 +8299.2 "Sundered Remains" #Ability { id: "7648", source: "Gladiator of Sil'dih" } +8307.3 "--middle--" #Ability { id: "7639", source: "Gladiator of Sil'dih" } +8311.3 "Sundered Remains (mid)" #Ability { id: "7649", source: "Gladiator of Sil'dih" } +8319.8 "Ring of Might (out)" #Ability { id: ["763F", "7640", "7641"], source: "Gladiator of Sil'dih" } +8319.8 "--sync--" #Ability { id: "77BF", source: "Gladiator of Sil'dih" } +8321.8 "Ring of Might (in)" #Ability { id: ["7642", "7643", "7644"], source: "Gladiator of Sil'dih" } ### Shadowcaster Zeless Gah # -p 74AE:9015.6 # -ii 7498 7497 74 # Eternal Ease will be sealed off -9000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:106E:/ window 100000,0 -9010.6 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74AE:/ window 20,20 -9015.6 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +9000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "106E" } window 100000,0 +9010.6 "--sync--" StartsUsing { id: "74AE", source: "Shadowcaster Zeless Gah" } window 20,20 +9015.6 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # -> Path 05 -9019.7 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74A2:/ window 20,20 jump 10019.7 -9023.7 "Infern Gale?" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A2:/ +9019.7 "--sync--" StartsUsing { id: "74A2", source: "Shadowcaster Zeless Gah" } window 20,20 jump 10019.7 +9023.7 "Infern Gale?" #Ability { id: "74A2", source: "Shadowcaster Zeless Gah" } # -> Path 06 -9023.8 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:7491:/ window 20,20 jump 11023.8 -9027.8 "Infern Brand?" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ +9023.8 "--sync--" StartsUsing { id: "7491", source: "Shadowcaster Zeless Gah" } window 20,20 jump 11023.8 +9027.8 "Infern Brand?" #Ability { id: "7491", source: "Shadowcaster Zeless Gah" } # -> Path 07 -9019.7 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74A7:/ window 20,20 jump 12019.7 -9023.7 "Infern Well?" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A7:/ +9019.7 "--sync--" StartsUsing { id: "74A7", source: "Shadowcaster Zeless Gah" } window 20,20 jump 12019.7 +9023.7 "Infern Well?" #Ability { id: "74A7", source: "Shadowcaster Zeless Gah" } ### Path 05 # Note: this could be combined with Path 07 with knockback/draw-in replacements # Eternal Ease will be sealed off -10000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:106E:/ -10010.6 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74AE:/ window 20,20 -10015.6 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ -10019.7 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74A2:/ -10023.7 "Infern Gale" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A2:/ -10024.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -10030.1 "--knockback--" sync / 1[56]:[^:]*:Infern Brand:74A3:/ +10000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "106E" } +10010.6 "--sync--" StartsUsing { id: "74AE", source: "Shadowcaster Zeless Gah" } window 20,20 +10015.6 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } +10019.7 "--sync--" StartsUsing { id: "74A2", source: "Shadowcaster Zeless Gah" } +10023.7 "Infern Gale" Ability { id: "74A2", source: "Shadowcaster Zeless Gah" } +10024.5 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +10030.1 "--knockback--" Ability { id: "74A3", source: "Infern Brand" } # 4 static fireballs -10041.0 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10052.3 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -10060.2 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +10041.0 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10052.3 "Burn" Ability { id: "748F", source: "Ball of Fire" } +10060.2 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } # 4 fireballs with teleporters -10068.3 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10077.5 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -10082.0 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -10085.6 "Infern Gale" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A2:/ -10086.4 "--sync--" sync / 1[56]:[^:]*:Infern Brand:7495:/ -10092.0 "--knockback--" sync / 1[56]:[^:]*:Infern Brand:74A3:/ +10068.3 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10077.5 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +10082.0 "Burn" Ability { id: "748F", source: "Ball of Fire" } +10085.6 "Infern Gale" Ability { id: "74A2", source: "Shadowcaster Zeless Gah" } +10086.4 "--sync--" Ability { id: "7495", source: "Infern Brand" } +10092.0 "--knockback--" Ability { id: "74A3", source: "Infern Brand" } # 4 staggered lasers -10102.9 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10111.1 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -10111.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -10120.3 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -10124.1 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ -10126.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -10133.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -10134.3 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -10136.3 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ - -10141.9 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +10102.9 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10111.1 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +10111.9 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +10120.3 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +10124.1 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } +10126.5 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +10133.6 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +10134.3 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +10136.3 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } + +10141.9 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 2 static + 2 rotating fireballs -10154.1 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10166.3 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7493:/ -10170.8 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -10175.6 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +10154.1 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10166.3 "Cryptic Portal" Ability { id: "7493", source: "Shadowcaster Zeless Gah" } +10170.8 "Burn" Ability { id: "748F", source: "Ball of Fire" } +10175.6 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } # 4 vertical/horizontal lasers -10187.7 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10190.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -10196.1 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -10196.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -10203.3 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -10207.1 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ -10213.5 "Infern Gale" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A2:/ -10214.3 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -10217.7 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -10219.9 "--knockback--" sync / 1[56]:[^:]*:Infern Brand:74A3:/ -10224.8 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -10225.5 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -10227.5 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ - -10233.2 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +10187.7 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10190.9 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +10196.1 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +10196.9 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +10203.3 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +10207.1 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } +10213.5 "Infern Gale" Ability { id: "74A2", source: "Shadowcaster Zeless Gah" } +10214.3 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +10217.7 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +10219.9 "--knockback--" Ability { id: "74A3", source: "Infern Brand" } +10224.8 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +10225.5 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +10227.5 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } + +10233.2 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 4 fireballs with teleporters + knockback -10245.4 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10252.5 "Infern Gale" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A2:/ -10253.3 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -10258.8 "--knockback--" sync / 1[56]:[^:]*:Infern Brand:74A3:/ -10260.6 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -10265.1 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -10269.9 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +10245.4 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10252.5 "Infern Gale" Ability { id: "74A2", source: "Shadowcaster Zeless Gah" } +10253.3 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +10258.8 "--knockback--" Ability { id: "74A3", source: "Infern Brand" } +10260.6 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +10265.1 "Burn" Ability { id: "748F", source: "Ball of Fire" } +10269.9 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } # 2 static + 2 rotating fireballs -10278.0 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10290.2 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7493:/ -10294.7 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ +10278.0 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10290.2 "Cryptic Portal" Ability { id: "7493", source: "Shadowcaster Zeless Gah" } +10294.7 "Burn" Ability { id: "748F", source: "Ball of Fire" } -10299.3 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +10299.3 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 4 vertical/horizontal lasers -10311.5 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10314.7 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -10320.1 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -10320.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -10327.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -10331.0 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ -10337.4 "Infern Gale" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A2:/ -10338.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -10341.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -10343.8 "--knockback--" sync / 1[56]:[^:]*:Infern Brand:74A3:/ -10348.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -10349.3 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -10351.3 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ - -10357.0 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ window 30,30 jump 10233.2 -10369.2 "Infern Brand" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -10376.3 "Infern Gale" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A2:/ -10377.1 "--sync--" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ +10311.5 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10314.7 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +10320.1 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +10320.9 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +10327.2 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +10331.0 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } +10337.4 "Infern Gale" Ability { id: "74A2", source: "Shadowcaster Zeless Gah" } +10338.2 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +10341.6 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +10343.8 "--knockback--" Ability { id: "74A3", source: "Infern Brand" } +10348.6 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +10349.3 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +10351.3 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } + +10357.0 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } window 30,30 jump 10233.2 +10369.2 "Infern Brand" #Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +10376.3 "Infern Gale" #Ability { id: "74A2", source: "Shadowcaster Zeless Gah" } +10377.1 "--sync--" #Ability { id: "7495", source: "Shadowcaster Zeless Gah" } ### Path 06 # Eternal Ease will be sealed off -11000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:106E:/ -11010.6 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74AE:/ window 20,20 -11015.6 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +11000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "106E" } +11010.6 "--sync--" StartsUsing { id: "74AE", source: "Shadowcaster Zeless Gah" } window 20,20 +11015.6 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 2 static portals -11023.8 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:7491:/ -11027.8 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11039.1 "Blazing Benifice" sync / 1[56]:[^:]*:Arcane Font:74A5:/ -11047.0 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +11023.8 "--sync--" StartsUsing { id: "7491", source: "Shadowcaster Zeless Gah" } +11027.8 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11039.1 "Blazing Benifice" Ability { id: "74A5", source: "Arcane Font" } +11047.0 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } # 4 static fireballs -11055.1 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11066.5 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ +11055.1 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11066.5 "Burn" Ability { id: "748F", source: "Ball of Fire" } # 3 portals with teleporters -11078.4 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11087.6 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -11092.1 "Blazing Benifice" sync / 1[56]:[^:]*:Arcane Font:74A5:/ +11078.4 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11087.6 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +11092.1 "Blazing Benifice" Ability { id: "74A5", source: "Arcane Font" } -11097.7 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +11097.7 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 4 fireballs with teleporters -11105.9 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11115.1 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -11119.6 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ +11105.9 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11115.1 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +11119.6 "Burn" Ability { id: "748F", source: "Ball of Fire" } # 4 staggered lasers -11128.3 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11136.4 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -11137.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -11145.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -11149.3 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ +11128.3 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11136.4 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +11137.2 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +11145.5 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +11149.3 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } # 4 static fireballs -11157.7 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11169.0 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ +11157.7 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11169.0 "Burn" Ability { id: "748F", source: "Ball of Fire" } # 3 portals with teleporters -11177.8 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -11182.3 "Blazing Benifice" sync / 1[56]:[^:]*:Arcane Font:74A5:/ -11189.0 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ -11193.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -11200.3 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -11201.0 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -11203.0 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ +11177.8 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +11182.3 "Blazing Benifice" Ability { id: "74A5", source: "Arcane Font" } +11189.0 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } +11193.2 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +11200.3 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +11201.0 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +11203.0 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } # 4 vertical/horizontal lasers -11213.7 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ -11225.9 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11229.1 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -11234.4 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -11235.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -11241.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -11245.4 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ -11249.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -11250.3 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -11252.3 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ - -11258.0 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +11213.7 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } +11225.9 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11229.1 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +11234.4 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +11235.2 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +11241.6 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +11245.4 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } +11249.6 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +11250.3 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +11252.3 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } + +11258.0 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 2 static portals + 4 fireballs with teleporters -11270.2 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11281.5 "Blazing Benifice" sync / 1[56]:[^:]*:Arcane Font:74A5:/ -11282.3 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -11286.8 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -11293.5 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +11270.2 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11281.5 "Blazing Benifice" Ability { id: "74A5", source: "Arcane Font" } +11282.3 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +11286.8 "Burn" Ability { id: "748F", source: "Ball of Fire" } +11293.5 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } # 4 static fireballs -11301.6 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11312.9 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ +11301.6 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11312.9 "Burn" Ability { id: "748F", source: "Ball of Fire" } # 3 portals with teleporters -11321.7 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -11326.2 "Blazing Benifice" sync / 1[56]:[^:]*:Arcane Font:74A5:/ - -11332.8 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ -11345.0 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11348.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -11353.4 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -11354.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -11360.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -11364.3 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ -11368.4 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -11369.1 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -11371.1 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ - -11376.7 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ window 30,30 jump 11258 +11321.7 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +11326.2 "Blazing Benifice" Ability { id: "74A5", source: "Arcane Font" } + +11332.8 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } +11345.0 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11348.2 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +11353.4 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +11354.2 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +11360.5 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +11364.3 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } +11368.4 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +11369.1 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +11371.1 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } + +11376.7 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } window 30,30 jump 11258 # 2 static portals + 4 fireballs with teleporters -11388.9 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -11400.2 "Blazing Benifice" sync / 1[56]:[^:]*:Arcane Font:74A5:/ -11401.0 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -11405.5 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -11412.2 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +11388.9 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +11400.2 "Blazing Benifice" Ability { id: "74A5", source: "Arcane Font" } +11401.0 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +11405.5 "Burn" Ability { id: "748F", source: "Ball of Fire" } +11412.2 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } ### Path 07 # Note: this could be combined with Path 05 with knockback/draw-in replacements # Eternal Ease will be sealed off -12000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:106E:/ -12010.6 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74AE:/ window 20,20 -12015.6 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ -12019.7 "--sync--" sync / 14:[^:]*:Shadowcaster Zeless Gah:74A7:/ -12023.7 "Infern Well" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A7:/ -12024.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -12032.2 "--sync--" sync / 1[56]:[^:]*:Infern Brand:74A8:/ -12033.7 "--draw in--" sync / 1[56]:[^:]*:Infern Brand:74AA:/ +12000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "106E" } +12010.6 "--sync--" StartsUsing { id: "74AE", source: "Shadowcaster Zeless Gah" } window 20,20 +12015.6 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } +12019.7 "--sync--" StartsUsing { id: "74A7", source: "Shadowcaster Zeless Gah" } +12023.7 "Infern Well" Ability { id: "74A7", source: "Shadowcaster Zeless Gah" } +12024.6 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +12032.2 "--sync--" Ability { id: "74A8", source: "Infern Brand" } +12033.7 "--draw in--" Ability { id: "74AA", source: "Infern Brand" } # 4 static fireballs -12043.1 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12054.5 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -12062.5 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +12043.1 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12054.5 "Burn" Ability { id: "748F", source: "Ball of Fire" } +12062.5 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } # 4 fireballs with teleporters -12070.6 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12079.8 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -12084.3 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -12087.9 "Infern Well" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A7:/ -12088.7 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -12096.2 "--sync--" sync / 1[56]:[^:]*:Infern Brand:74A8:/ -12097.7 "--draw in--" sync / 1[56]:[^:]*:Infern Brand:74AA:/ +12070.6 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12079.8 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +12084.3 "Burn" Ability { id: "748F", source: "Ball of Fire" } +12087.9 "Infern Well" Ability { id: "74A7", source: "Shadowcaster Zeless Gah" } +12088.7 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +12096.2 "--sync--" Ability { id: "74A8", source: "Infern Brand" } +12097.7 "--draw in--" Ability { id: "74AA", source: "Infern Brand" } # 4 staggered lasers -12107.1 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12115.2 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -12116.0 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -12124.4 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -12128.2 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ -12130.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -12137.8 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -12138.5 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -12140.5 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ - -12146.1 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +12107.1 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12115.2 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +12116.0 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +12124.4 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +12128.2 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } +12130.6 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +12137.8 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +12138.5 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +12140.5 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } + +12146.1 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 2 static + 2 rotating fireballs -12158.3 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12170.5 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7493:/ -12175.0 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -12179.7 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +12158.3 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12170.5 "Cryptic Portal" Ability { id: "7493", source: "Shadowcaster Zeless Gah" } +12175.0 "Burn" Ability { id: "748F", source: "Ball of Fire" } +12179.7 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } # 4 vertical/horizontal lasers -12191.9 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12195.0 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -12200.4 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -12201.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -12207.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -12211.3 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ -12217.7 "Infern Well" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A7:/ -12218.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -12223.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -12226.1 "--sync--" sync / 1[56]:[^:]*:Infern Brand:74A8:/ -12227.6 "--draw in--" sync / 1[56]:[^:]*:Infern Brand:74AA:/ -12231.1 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -12231.8 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -12233.8 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ - -12239.4 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +12191.9 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12195.0 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +12200.4 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +12201.2 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +12207.5 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +12211.3 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } +12217.7 "Infern Well" Ability { id: "74A7", source: "Shadowcaster Zeless Gah" } +12218.5 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +12223.9 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +12226.1 "--sync--" Ability { id: "74A8", source: "Infern Brand" } +12227.6 "--draw in--" Ability { id: "74AA", source: "Infern Brand" } +12231.1 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +12231.8 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +12233.8 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } + +12239.4 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 4 fireballs with teleporters + draw in -12251.6 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12258.7 "Infern Well" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A7:/ -12259.5 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -12267.1 "--sync--" sync / 1[56]:[^:]*:Infern Brand:74A8:/ -12268.6 "--draw in--" sync / 1[56]:[^:]*:Infern Brand:74AA:/ -12268.9 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7492:/ -12273.4 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ -12278.2 "Firesteel Fracture" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AC:/ +12251.6 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12258.7 "Infern Well" Ability { id: "74A7", source: "Shadowcaster Zeless Gah" } +12259.5 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +12267.1 "--sync--" Ability { id: "74A8", source: "Infern Brand" } +12268.6 "--draw in--" Ability { id: "74AA", source: "Infern Brand" } +12268.9 "Cryptic Portal" Ability { id: "7492", source: "Shadowcaster Zeless Gah" } +12273.4 "Burn" Ability { id: "748F", source: "Ball of Fire" } +12278.2 "Firesteel Fracture" Ability { id: "74AC", source: "Shadowcaster Zeless Gah" } # 2 static + 2 rotating fireballs -12286.3 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12298.5 "Cryptic Portal" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7493:/ -12303.0 "Burn" sync / 1[56]:[^:]*:Ball of Fire:748F:/ +12286.3 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12298.5 "Cryptic Portal" Ability { id: "7493", source: "Shadowcaster Zeless Gah" } +12303.0 "Burn" Ability { id: "748F", source: "Ball of Fire" } -12307.6 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ +12307.6 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } # 4 vertical/horizontal lasers -12319.8 "Infern Brand" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12322.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -12328.1 "Infern Ward" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7496:/ -12328.9 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -12335.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749F:/ -12339.0 "Pure Fire" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A0:/ -12345.4 "Infern Well" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A7:/ -12346.2 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ -12351.6 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74BE:/ -12353.8 "--sync--" sync / 1[56]:[^:]*:Infern Brand:74A8:/ -12355.3 "Infern Well" sync / 1[56]:[^:]*:Infern Brand:74AA:/ -12358.8 "--sync--" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749A:/ -12359.5 "Cast Shadow 1" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749B:/ -12361.5 "Cast Shadow 2" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:749D:/ - -12367.1 "Show of Strength" sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74AE:/ window 30,30 jump 12239.4 +12319.8 "Infern Brand" Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12322.9 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +12328.1 "Infern Ward" Ability { id: "7496", source: "Shadowcaster Zeless Gah" } +12328.9 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +12335.2 "--sync--" Ability { id: "749F", source: "Shadowcaster Zeless Gah" } +12339.0 "Pure Fire" Ability { id: "74A0", source: "Shadowcaster Zeless Gah" } +12345.4 "Infern Well" Ability { id: "74A7", source: "Shadowcaster Zeless Gah" } +12346.2 "--sync--" Ability { id: "7495", source: "Shadowcaster Zeless Gah" } +12351.6 "--sync--" Ability { id: "74BE", source: "Shadowcaster Zeless Gah" } +12353.8 "--sync--" Ability { id: "74A8", source: "Infern Brand" } +12355.3 "Infern Well" Ability { id: "74AA", source: "Infern Brand" } +12358.8 "--sync--" Ability { id: "749A", source: "Shadowcaster Zeless Gah" } +12359.5 "Cast Shadow 1" Ability { id: "749B", source: "Shadowcaster Zeless Gah" } +12361.5 "Cast Shadow 2" Ability { id: "749D", source: "Shadowcaster Zeless Gah" } + +12367.1 "Show of Strength" Ability { id: "74AE", source: "Shadowcaster Zeless Gah" } window 30,30 jump 12239.4 # 4 fireballs with teleporters + draw in -12379.3 "Infern Brand" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7491:/ -12386.4 "Infern Well" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:74A7:/ -12387.2 "--sync--" #sync / 1[56]:[^:]*:Shadowcaster Zeless Gah:7495:/ +12379.3 "Infern Brand" #Ability { id: "7491", source: "Shadowcaster Zeless Gah" } +12386.4 "Infern Well" #Ability { id: "74A7", source: "Shadowcaster Zeless Gah" } +12387.2 "--sync--" #Ability { id: "7495", source: "Shadowcaster Zeless Gah" } ### Thorne Knight @@ -908,70 +908,70 @@ hideall "--sync--" # It's possible that 70EF/7102 are "normal" and 70F0/70F1 are reversed. # Cold Arms' Quietus will be sealed off -13000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:1076:/ window 100000,0 -13011.8 "--sync--" sync / 14:[^:]*:Thorne Knight:70EB:/ -13016.8 "Cogwheel" sync / 1[56]:[^:]*:Thorne Knight:70EB:/ -13030.3 "Spring to Life" sync / 1[56]:[^:]*:Thorne Knight:(70ED|70EE):/ -13031.1 "--sync--" sync / 1[56]:[^:]*:Magicked Puppet:7126:/ -13034.1 "Magic Cannon" sync / 1[56]:[^:]*:Magicked Puppet:70F7:/ -13034.7 "Amalj'aa Artillery" sync / 1[56]:[^:]*:Amalj'aa Artillery Carriage:70F8:/ -13037.1 "--sync--" sync / 1[56]:[^:]*:Magicked Puppet:7127:/ -13052.5 "Blistering Blow" sync / 1[56]:[^:]*:Thorne Knight:70EA:/ -13064.6 "Spring to Life" sync / 1[56]:[^:]*:Thorne Knight:(70ED|70EE):/ -13065.4 "--sync--" sync / 1[56]:[^:]*:Magicked Puppet:7126:/ -13068.4 "Magic Cannon" sync / 1[56]:[^:]*:Magicked Puppet:70F7:/ -13069.1 "Amalj'aa Artillery" sync / 1[56]:[^:]*:Amalj'aa Artillery Carriage:70F8:/ -13071.5 "--sync--" sync / 1[56]:[^:]*:Magicked Puppet:7127:/ -13075.1 "Fore Honor" sync / 1[56]:[^:]*:Thorne Knight:70EC:/ -13090.8 "Slashburn" sync / 1[56]:[^:]*:Thorne Knight:(70EF|70F0|70F1|7102):/ -13103.5 "--sync--" sync / 1[56]:[^:]*:Thorne Knight:70F5:/ - -13105.0 "Signal Flare 1" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13106.6 "Signal Flare 2" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13108.2 "Signal Flare 3" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13114.1 "Blistering Blow" sync / 1[56]:[^:]*:Thorne Knight:70EA:/ -13131.1 "Slashburn" sync / 1[56]:[^:]*:Thorne Knight:(70EF|70F0|70F1|7102):/ -13142.7 "Blaze of Glory" sync / 1[56]:[^:]*:Thorne Knight:70F4:/ -13152.6 "Spring to Life" sync / 1[56]:[^:]*:Thorne Knight:(70ED|70EE):/ -13153.4 "--sync--" sync / 1[56]:[^:]*:Magicked Puppet:7126:/ -13156.3 "Magic Cannon" sync / 1[56]:[^:]*:Magicked Puppet:70F7:/ -13157.0 "Amalj'aa Artillery" sync / 1[56]:[^:]*:Amalj'aa Artillery Carriage:70F8:/ -13157.0 "Explosion" sync / 1[56]:[^:]*:Ball of Fire:70FD:/ -13159.4 "--sync--" sync / 1[56]:[^:]*:Magicked Puppet:7127:/ -13169.2 "Slashburn" sync / 1[56]:[^:]*:Thorne Knight:(70EF|70F0|70F1|7102):/ -13178.7 "Blaze of Glory" sync / 1[56]:[^:]*:Thorne Knight:70F4:/ -13193.1 "Explosion" sync / 1[56]:[^:]*:Ball of Fire:70FD:/ -13193.1 "Slashburn" sync / 1[56]:[^:]*:Thorne Knight:(70EF|70F0|70F1|7102):/ -13205.7 "--sync--" sync / 1[56]:[^:]*:Thorne Knight:70F5:/ -13207.3 "Signal Flare 1" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13208.9 "Signal Flare 2" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13210.4 "Signal Flare 3" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13214.3 "Fore Honor" sync / 1[56]:[^:]*:Thorne Knight:70EC:/ - -13221.4 "Cogwheel" sync / 1[56]:[^:]*:Thorne Knight:70EB:/ -13234.1 "Blaze of Glory" sync / 1[56]:[^:]*:Thorne Knight:70F4:/ -13244.1 "Spring to Life" sync / 1[56]:[^:]*:Thorne Knight:(70ED|70EE):/ -13244.9 "--sync--" sync / 1[56]:[^:]*:Magicked Puppet:7126:/ -13247.9 "Magic Cannon" sync / 1[56]:[^:]*:Magicked Puppet:70F7:/ -13248.5 "Amalj'aa Artillery" sync / 1[56]:[^:]*:Amalj'aa Artillery Carriage:70F8:/ -13248.5 "Explosion" sync / 1[56]:[^:]*:Ball of Fire:70FD:/ -13250.9 "--sync--" sync / 1[56]:[^:]*:Magicked Puppet:7127:/ - -13253.2 "Cogwheel" sync / 1[56]:[^:]*:Thorne Knight:70EB:/ -13265.8 "Blaze of Glory" sync / 1[56]:[^:]*:Thorne Knight:70F4:/ -13280.3 "Slashburn" sync / 1[56]:[^:]*:Thorne Knight:(70EF|70F0|70F1|7102):/ -13280.3 "Explosion" sync / 1[56]:[^:]*:Ball of Fire:70FD:/ -13293.0 "--sync--" sync / 1[56]:[^:]*:Thorne Knight:70F5:/ -13294.6 "Signal Flare 1" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13296.2 "Signal Flare 2" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13297.7 "Signal Flare 3" #sync / 1[56]:[^:]*:Thorne Knight:70FB:/ -13301.6 "Fore Honor" sync / 1[56]:[^:]*:Thorne Knight:70EC:/ - -13308.8 "Cogwheel" sync / 1[56]:[^:]*:Thorne Knight:70EB:/ window 40,40 jump 13221.4 -13321.5 "Blaze of Glory" #sync / 1[56]:[^:]*:Thorne Knight:70F4:/ -13331.5 "Spring to Life" #sync / 1[56]:[^:]*:Thorne Knight:(70ED|70EE):/ -13332.3 "--sync--" #sync / 1[56]:[^:]*:Magicked Puppet:7126:/ -13335.3 "Magic Cannon" #sync / 1[56]:[^:]*:Magicked Puppet:70F7:/ -13335.9 "Amalj'aa Artillery" #sync / 1[56]:[^:]*:Amalj'aa Artillery Carriage:70F8:/ -13335.9 "Explosion" #sync / 1[56]:[^:]*:Ball of Fire:70FD:/ -13338.3 "--sync--" #sync / 1[56]:[^:]*:Magicked Puppet:7127:/ +13000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "1076" } window 100000,0 +13011.8 "--sync--" StartsUsing { id: "70EB", source: "Thorne Knight" } +13016.8 "Cogwheel" Ability { id: "70EB", source: "Thorne Knight" } +13030.3 "Spring to Life" Ability { id: ["70ED", "70EE"], source: "Thorne Knight" } +13031.1 "--sync--" Ability { id: "7126", source: "Magicked Puppet" } +13034.1 "Magic Cannon" Ability { id: "70F7", source: "Magicked Puppet" } +13034.7 "Amalj'aa Artillery" Ability { id: "70F8", source: "Amalj'aa Artillery Carriage" } +13037.1 "--sync--" Ability { id: "7127", source: "Magicked Puppet" } +13052.5 "Blistering Blow" Ability { id: "70EA", source: "Thorne Knight" } +13064.6 "Spring to Life" Ability { id: ["70ED", "70EE"], source: "Thorne Knight" } +13065.4 "--sync--" Ability { id: "7126", source: "Magicked Puppet" } +13068.4 "Magic Cannon" Ability { id: "70F7", source: "Magicked Puppet" } +13069.1 "Amalj'aa Artillery" Ability { id: "70F8", source: "Amalj'aa Artillery Carriage" } +13071.5 "--sync--" Ability { id: "7127", source: "Magicked Puppet" } +13075.1 "Fore Honor" Ability { id: "70EC", source: "Thorne Knight" } +13090.8 "Slashburn" Ability { id: ["70EF", "70F0", "70F1", "7102"], source: "Thorne Knight" } +13103.5 "--sync--" Ability { id: "70F5", source: "Thorne Knight" } + +13105.0 "Signal Flare 1" #Ability { id: "70FB", source: "Thorne Knight" } +13106.6 "Signal Flare 2" #Ability { id: "70FB", source: "Thorne Knight" } +13108.2 "Signal Flare 3" #Ability { id: "70FB", source: "Thorne Knight" } +13114.1 "Blistering Blow" Ability { id: "70EA", source: "Thorne Knight" } +13131.1 "Slashburn" Ability { id: ["70EF", "70F0", "70F1", "7102"], source: "Thorne Knight" } +13142.7 "Blaze of Glory" Ability { id: "70F4", source: "Thorne Knight" } +13152.6 "Spring to Life" Ability { id: ["70ED", "70EE"], source: "Thorne Knight" } +13153.4 "--sync--" Ability { id: "7126", source: "Magicked Puppet" } +13156.3 "Magic Cannon" Ability { id: "70F7", source: "Magicked Puppet" } +13157.0 "Amalj'aa Artillery" Ability { id: "70F8", source: "Amalj'aa Artillery Carriage" } +13157.0 "Explosion" Ability { id: "70FD", source: "Ball of Fire" } +13159.4 "--sync--" Ability { id: "7127", source: "Magicked Puppet" } +13169.2 "Slashburn" Ability { id: ["70EF", "70F0", "70F1", "7102"], source: "Thorne Knight" } +13178.7 "Blaze of Glory" Ability { id: "70F4", source: "Thorne Knight" } +13193.1 "Explosion" Ability { id: "70FD", source: "Ball of Fire" } +13193.1 "Slashburn" Ability { id: ["70EF", "70F0", "70F1", "7102"], source: "Thorne Knight" } +13205.7 "--sync--" Ability { id: "70F5", source: "Thorne Knight" } +13207.3 "Signal Flare 1" #Ability { id: "70FB", source: "Thorne Knight" } +13208.9 "Signal Flare 2" #Ability { id: "70FB", source: "Thorne Knight" } +13210.4 "Signal Flare 3" #Ability { id: "70FB", source: "Thorne Knight" } +13214.3 "Fore Honor" Ability { id: "70EC", source: "Thorne Knight" } + +13221.4 "Cogwheel" Ability { id: "70EB", source: "Thorne Knight" } +13234.1 "Blaze of Glory" Ability { id: "70F4", source: "Thorne Knight" } +13244.1 "Spring to Life" Ability { id: ["70ED", "70EE"], source: "Thorne Knight" } +13244.9 "--sync--" Ability { id: "7126", source: "Magicked Puppet" } +13247.9 "Magic Cannon" Ability { id: "70F7", source: "Magicked Puppet" } +13248.5 "Amalj'aa Artillery" Ability { id: "70F8", source: "Amalj'aa Artillery Carriage" } +13248.5 "Explosion" Ability { id: "70FD", source: "Ball of Fire" } +13250.9 "--sync--" Ability { id: "7127", source: "Magicked Puppet" } + +13253.2 "Cogwheel" Ability { id: "70EB", source: "Thorne Knight" } +13265.8 "Blaze of Glory" Ability { id: "70F4", source: "Thorne Knight" } +13280.3 "Slashburn" Ability { id: ["70EF", "70F0", "70F1", "7102"], source: "Thorne Knight" } +13280.3 "Explosion" Ability { id: "70FD", source: "Ball of Fire" } +13293.0 "--sync--" Ability { id: "70F5", source: "Thorne Knight" } +13294.6 "Signal Flare 1" #Ability { id: "70FB", source: "Thorne Knight" } +13296.2 "Signal Flare 2" #Ability { id: "70FB", source: "Thorne Knight" } +13297.7 "Signal Flare 3" #Ability { id: "70FB", source: "Thorne Knight" } +13301.6 "Fore Honor" Ability { id: "70EC", source: "Thorne Knight" } + +13308.8 "Cogwheel" Ability { id: "70EB", source: "Thorne Knight" } window 40,40 jump 13221.4 +13321.5 "Blaze of Glory" #Ability { id: "70F4", source: "Thorne Knight" } +13331.5 "Spring to Life" #Ability { id: ["70ED", "70EE"], source: "Thorne Knight" } +13332.3 "--sync--" #Ability { id: "7126", source: "Magicked Puppet" } +13335.3 "Magic Cannon" #Ability { id: "70F7", source: "Magicked Puppet" } +13335.9 "Amalj'aa Artillery" #Ability { id: "70F8", source: "Amalj'aa Artillery Carriage" } +13335.9 "Explosion" #Ability { id: "70FD", source: "Ball of Fire" } +13338.3 "--sync--" #Ability { id: "7127", source: "Magicked Puppet" } diff --git a/ui/raidboss/data/06-ew/dungeon/the_tower_of_babil.txt b/ui/raidboss/data/06-ew/dungeon/the_tower_of_babil.txt index e794a1d133..9200a5bdb4 100644 --- a/ui/raidboss/data/06-ew/dungeon/the_tower_of_babil.txt +++ b/ui/raidboss/data/06-ew/dungeon/the_tower_of_babil.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~# @@ -15,18 +15,18 @@ hideall "--sync--" # Common opener # Magitek Servicing will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:101C:/ window 0,1 -5.7 "--sync--" sync / 14:[^:]*:Barnabas:6247:/ window 5.7,5 -8.9 "Ground and Pound" sync / 1[56]:[^:]*:Barnabas:6247:/ -27.3 "Ground and Pound" sync / 1[56]:[^:]*:Barnabas:62EA:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "101C" } window 0,1 +5.7 "--sync--" StartsUsing { id: "6247", source: "Barnabas" } window 5.7,5 +8.9 "Ground and Pound" Ability { id: "6247", source: "Barnabas" } +27.3 "Ground and Pound" Ability { id: "62EA", source: "Barnabas" } # Barnabas can use either Dynamic Pound or Dynamic Scrapline first. # Unfortunately, the timing on the abilities up to Thundercall # is just offset enough to make it impractical to interleave the possibilities. # The Thundercall after the Pound/Scrapline blocks is the same # regardless of path taken. -33.8 "--sync--" sync / 14:[^:]*:Barnabas:(6246|62F0):/ window 33.8,5 jump 193.3 -36.4 "--sync--" sync / 14:[^:]*:Barnabas:(6245|62EE):/ window 36.4,5 jump 293.3 +33.8 "--sync--" StartsUsing { id: ["6246", "62F0"], source: "Barnabas" } window 33.8,5 jump 193.3 +36.4 "--sync--" StartsUsing { id: ["6245", "62EE"], source: "Barnabas" } window 36.4,5 jump 293.3 40.5 "Dynamic Scrapline?" 43.0 "Electromagnetic Release?" 43.1 "Dynamic Pound?" @@ -34,16 +34,16 @@ hideall "--sync--" 55.2 "Shocking Force" # Scrapline first -193.3 "--sync--" sync / 14:[^:]*:Barnabas:(6246|62F0):/ -200.0 "Dynamic Scrapline" sync / 1[56]:[^:]*:Barnabas:(6246|62F0):/ -201.1 "--sync--" sync / 1[56]:[^:]*:Barnabas:61DD:/ -202.5 "Electromagnetic Release" sync / 1[56]:[^:]*:Barnabas:62F1:/ -214.7 "Shocking Force" sync / 1[56]:[^:]*:Barnabas:62EC:/ window 15,15 -231.7 "Dynamic Pound" sync / 1[56]:[^:]*:Barnabas:(6245|62EE):/ -232.8 "--sync--" sync / 1[56]:[^:]*:Barnabas:6075:/ -234.2 "Electromagnetic Release" sync / 1[56]:[^:]*:Barnabas:62EF:/ - -244.8 "Thundercall" sync / 1[56]:[^:]*:Barnabas:62ED:/ window 44.8,5 jump 400 +193.3 "--sync--" StartsUsing { id: ["6246", "62F0"], source: "Barnabas" } +200.0 "Dynamic Scrapline" Ability { id: ["6246", "62F0"], source: "Barnabas" } +201.1 "--sync--" Ability { id: "61DD", source: "Barnabas" } +202.5 "Electromagnetic Release" Ability { id: "62F1", source: "Barnabas" } +214.7 "Shocking Force" Ability { id: "62EC", source: "Barnabas" } window 15,15 +231.7 "Dynamic Pound" Ability { id: ["6245", "62EE"], source: "Barnabas" } +232.8 "--sync--" Ability { id: "6075", source: "Barnabas" } +234.2 "Electromagnetic Release" Ability { id: "62EF", source: "Barnabas" } + +244.8 "Thundercall" Ability { id: "62ED", source: "Barnabas" } window 44.8,5 jump 400 251.3 "Rolling Scrapline" 251.6 "Shock" 261.8 "Shocking Force" @@ -51,16 +51,16 @@ hideall "--sync--" 276.4 "Ground and Pound 2" # Pound first -293.3 "--sync--" sync / 14:[^:]*:Barnabas:(6245|62EE):/ -300.0 "Dynamic Pound" sync / 1[56]:[^:]*:Barnabas:(6245|62EE):/ -301.1 "--sync--" sync / 1[56]:[^:]*:Barnabas:6075:/ -302.5 "Electromagnetic Release" sync / 1[56]:[^:]*:Barnabas:62EF:/ -314.7 "Shocking Force" sync / 1[56]:[^:]*:Barnabas:62EC:/ window 15,15 -329.9 "Dynamic Scrapline" sync / 1[56]:[^:]*:Barnabas:(6246|62F0):/ -331.0 "--sync--" sync / 1[56]:[^:]*:Barnabas:61DD:/ -332.4 "Electromagnetic Release" sync / 1[56]:[^:]*:Barnabas:62F1:/ - -342.7 "Thundercall" sync / 1[56]:[^:]*:Barnabas:62ED:/ window 42.7,5 jump 400.0 +293.3 "--sync--" StartsUsing { id: ["6245", "62EE"], source: "Barnabas" } +300.0 "Dynamic Pound" Ability { id: ["6245", "62EE"], source: "Barnabas" } +301.1 "--sync--" Ability { id: "6075", source: "Barnabas" } +302.5 "Electromagnetic Release" Ability { id: "62EF", source: "Barnabas" } +314.7 "Shocking Force" Ability { id: "62EC", source: "Barnabas" } window 15,15 +329.9 "Dynamic Scrapline" Ability { id: ["6246", "62F0"], source: "Barnabas" } +331.0 "--sync--" Ability { id: "61DD", source: "Barnabas" } +332.4 "Electromagnetic Release" Ability { id: "62F1", source: "Barnabas" } + +342.7 "Thundercall" Ability { id: "62ED", source: "Barnabas" } window 42.7,5 jump 400.0 349.2 "Rolling Scrapline" 349.5 "Shock" 359.8 "Shocking Force" @@ -68,16 +68,16 @@ hideall "--sync--" 374.4 "Ground and Pound 2" # Common Thundercall block, looping back to one of the two blocks. -400.0 "Thundercall" sync / 1[56]:[^:]*:Barnabas:62ED:/ -406.5 "Rolling Scrapline" sync / 1[56]:[^:]*:Barnabas:62EB:/ -406.8 "Shock" sync / 1[56]:[^:]*:Thunderball:62F2:/ -417.0 "Shocking Force" sync / 1[56]:[^:]*:Barnabas:62EC:/ -425.6 "Ground and Pound 1" sync / 1[56]:[^:]*:Barnabas:62EA:/ -431.6 "Ground and Pound 2" sync / 1[56]:[^:]*:Barnabas:62EA:/ -437.6 "Ground and Pound 3" sync / 1[56]:[^:]*:Barnabas:62EA:/ - -446.5 "--sync--" sync / 14:[^:]*:Barnabas:(6246|62F0):/ window 30,5 jump 193.3 -449.1 "--sync--" sync / 14:[^:]*:Barnabas:(6245|62EE):/ window 30,5 jump 293.3 +400.0 "Thundercall" Ability { id: "62ED", source: "Barnabas" } +406.5 "Rolling Scrapline" Ability { id: "62EB", source: "Barnabas" } +406.8 "Shock" Ability { id: "62F2", source: "Thunderball" } +417.0 "Shocking Force" Ability { id: "62EC", source: "Barnabas" } +425.6 "Ground and Pound 1" Ability { id: "62EA", source: "Barnabas" } +431.6 "Ground and Pound 2" Ability { id: "62EA", source: "Barnabas" } +437.6 "Ground and Pound 3" Ability { id: "62EA", source: "Barnabas" } + +446.5 "--sync--" StartsUsing { id: ["6246", "62F0"], source: "Barnabas" } window 30,5 jump 193.3 +449.1 "--sync--" StartsUsing { id: ["6245", "62EE"], source: "Barnabas" } window 30,5 jump 293.3 453.2 "Dynamic Scrapline?" 455.7 "Electromagnetic Release?" 455.8 "Dynamic Pound?" @@ -89,14 +89,14 @@ hideall "--sync--" #~~~~~~~~~~~# # Martial Conditioning will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:101D:/ window 1000,5 -1009.7 "Thermal Suppression" sync / 1[56]:[^:]*:Lugae:62FA:/ window 1009.7,10 -1018.2 "Magitek Missile" sync / 1[56]:[^:]*:Lugae:62F6:/ -1022.5 "Surface Missile" sync / 1[56]:[^:]*:Lugae:62F7:/ -1028.8 "Magitek Ray" sync / 1[56]:[^:]*:Lugae:62FC:/ - -1039.8 "Magitek Chakram?" sync / 1[56]:[^:]*:Lugae:62F3:/ window 1039.8,10 jump 1200 -1040.3 "Downpour?" sync / 1[56]:[^:]*:Lugae:62F5:/ window 1040.5,10 jump 1266.9 +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "101D" } window 1000,5 +1009.7 "Thermal Suppression" Ability { id: "62FA", source: "Lugae" } window 1009.7,10 +1018.2 "Magitek Missile" Ability { id: "62F6", source: "Lugae" } +1022.5 "Surface Missile" Ability { id: "62F7", source: "Lugae" } +1028.8 "Magitek Ray" Ability { id: "62FC", source: "Lugae" } + +1039.8 "Magitek Chakram?" Ability { id: "62F3", source: "Lugae" } window 1039.8,10 jump 1200 +1040.3 "Downpour?" Ability { id: "62F5", source: "Lugae" } window 1040.5,10 jump 1266.9 1047.8 "Magitek Missile?" 1048.3 "Magitek Chakram?" 1050.8 "Mighty Blow?" @@ -107,29 +107,29 @@ hideall "--sync--" 1059.3 "Mighty Blow?" -1200.0 "Magitek Chakram" sync / 1[56]:[^:]*:Lugae:62F3:/ -1208.5 "Magitek Chakram" sync / 1[56]:[^:]*:Lugae:62F3:/ -1211.0 "Mighty Blow" sync / 1[56]:[^:]*:Magitek Chakram:62F4:/ -1219.5 "Mighty Blow" sync / 1[56]:[^:]*:Magitek Chakram:62F4:/ - -1227.0 "Thermal Suppression" sync / 1[56]:[^:]*:Lugae:62FA:/ -1232.6 "Magitek Ray" sync / 1[56]:[^:]*:Lugae:62FC:/ -1244.1 "Magitek Explosive" sync / 1[56]:[^:]*:Lugae:62F8:/ -1255.1 "Explosion" sync / 1[56]:[^:]*:Magitek Explosive:62F9:/ - -1266.9 "Downpour" sync / 1[56]:[^:]*:Lugae:62F5:/ window 66.9,10 -1274.4 "Magitek Missile" sync / 1[56]:[^:]*:Lugae:62F6:/ -1278.7 "Surface Missile" sync / 1[56]:[^:]*:Lugae:62F7:/ -1279.9 "Magitek Missile" sync / 1[56]:[^:]*:Lugae:62F6:/ -1284.2 "Surface Missile" sync / 1[56]:[^:]*:Lugae:62F7:/ -1285.4 "Magitek Missile" sync / 1[56]:[^:]*:Lugae:62F6:/ -1289.7 "Surface Missile" sync / 1[56]:[^:]*:Lugae:62F7:/ -1294.9 "Thermal Suppression" sync / 1[56]:[^:]*:Lugae:62FA:/ window 30,30 -1300.4 "Magitek Ray" sync / 1[56]:[^:]*:Lugae:62FC:/ -1312.0 "Magitek Explosive" sync / 1[56]:[^:]*:Lugae:62F8:/ -1323.0 "Explosion" sync / 1[56]:[^:]*:Magitek Explosive:62F9:/ - -1335.3 "Magitek Chakram" sync / 1[56]:[^:]*:Lugae:62F3:/ jump 1200.0 +1200.0 "Magitek Chakram" Ability { id: "62F3", source: "Lugae" } +1208.5 "Magitek Chakram" Ability { id: "62F3", source: "Lugae" } +1211.0 "Mighty Blow" Ability { id: "62F4", source: "Magitek Chakram" } +1219.5 "Mighty Blow" Ability { id: "62F4", source: "Magitek Chakram" } + +1227.0 "Thermal Suppression" Ability { id: "62FA", source: "Lugae" } +1232.6 "Magitek Ray" Ability { id: "62FC", source: "Lugae" } +1244.1 "Magitek Explosive" Ability { id: "62F8", source: "Lugae" } +1255.1 "Explosion" Ability { id: "62F9", source: "Magitek Explosive" } + +1266.9 "Downpour" Ability { id: "62F5", source: "Lugae" } window 66.9,10 +1274.4 "Magitek Missile" Ability { id: "62F6", source: "Lugae" } +1278.7 "Surface Missile" Ability { id: "62F7", source: "Lugae" } +1279.9 "Magitek Missile" Ability { id: "62F6", source: "Lugae" } +1284.2 "Surface Missile" Ability { id: "62F7", source: "Lugae" } +1285.4 "Magitek Missile" Ability { id: "62F6", source: "Lugae" } +1289.7 "Surface Missile" Ability { id: "62F7", source: "Lugae" } +1294.9 "Thermal Suppression" Ability { id: "62FA", source: "Lugae" } window 30,30 +1300.4 "Magitek Ray" Ability { id: "62FC", source: "Lugae" } +1312.0 "Magitek Explosive" Ability { id: "62F8", source: "Lugae" } +1323.0 "Explosion" Ability { id: "62F9", source: "Magitek Explosive" } + +1335.3 "Magitek Chakram" Ability { id: "62F3", source: "Lugae" } jump 1200.0 1343.8 "Magitek Chakram" 1346.3 "Mighty Blow" 1354.9 "Mighty Blow" @@ -143,62 +143,62 @@ hideall "--sync--" # -ii 52BE 5E68 6305 # The Iron Womb will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:101E:/ window 2000,1 -2009.8 "Lunar Nail" sync / 1[56]:[^:]*:Anima:62FE:/ window 2009.8,10 -2020.7 "Phantom Pain" sync / 1[56]:[^:]*:Anima:62FF:/ -2029.8 "Mega Graviton" sync / 1[56]:[^:]*:Anima:6300:/ -2037.8 "Pater Patriae" sync / 1[56]:[^:]*:Anima:6306:/ -2043.7 "Aetherial Pull" sync / 1[56]:[^:]*:Mega-graviton:6301:/ window 2043.7,10 -2045.8 "Graviton Spark" sync / 1[56]:[^:]*:Mega-graviton:6302:/ -2058.4 "Boundless Pain" sync / 1[56]:[^:]*:Anima:6303:/ -2058.5 "--sync--" sync / 1[56]:[^:]*:Anima:6675:/ -2059.6 "Boundless Pain" sync / 1[56]:[^:]*:Anima:6304:/ duration 11 -2082.5 "Imperatum" sync / 1[56]:[^:]*:Anima:6309:/ window 2082.5,10 +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "101E" } window 2000,1 +2009.8 "Lunar Nail" Ability { id: "62FE", source: "Anima" } window 2009.8,10 +2020.7 "Phantom Pain" Ability { id: "62FF", source: "Anima" } +2029.8 "Mega Graviton" Ability { id: "6300", source: "Anima" } +2037.8 "Pater Patriae" Ability { id: "6306", source: "Anima" } +2043.7 "Aetherial Pull" Ability { id: "6301", source: "Mega-graviton" } window 2043.7,10 +2045.8 "Graviton Spark" Ability { id: "6302", source: "Mega-graviton" } +2058.4 "Boundless Pain" Ability { id: "6303", source: "Anima" } +2058.5 "--sync--" Ability { id: "6675", source: "Anima" } +2059.6 "Boundless Pain" Ability { id: "6304", source: "Anima" } duration 11 +2082.5 "Imperatum" Ability { id: "6309", source: "Anima" } window 2082.5,10 2083.3 "--untargetable--" -2085.0 "--sync--" sync / 1[56]:[^:]*:Anima:5D79:/ +2085.0 "--sync--" Ability { id: "5D79", source: "Anima" } # Teleport to alternate dimension. Possible HP% push? # TODO # Need more data in case there are mechanics past Charnel Claw 2. # Might repeat Obliviating Claw? 2101.5 "--targetable--" -2109.8 "--sync--" sync / 1[56]:[^:]*:Anima:630B:/ -2116.6 "Obliviating Claw #1" sync / 1[56]:[^:]*:Iron Nail:630C:/ -2121.6 "Obliviating Claw #2" sync / 1[56]:[^:]*:Iron Nail:630C:/ -2127.6 "Charnel Claw #1" sync / 1[56]:[^:]*:Iron Nail:630D:/ -2132.6 "Charnel Claw #2" sync / 1[56]:[^:]*:Iron Nail:630D:/ -2135.1 "--sync--" sync / 1[56]:[^:]*:Anima:6A5C:/ -2143.6 "Obliviating Claw" sync / 1[56]:[^:]*:Anima:630A:/ -2149.1 "Coffin Scratch x5" sync / 1[56]:[^:]*:Anima:630E:/ duration 5 -2155.7 "--sync--" sync / 1[56]:[^:]*:Anima:6A5C:/ -2164.2 "--sync--" sync / 1[56]:[^:]*:Anima:630B:/ -2171.0 "Obliviating Claw #1" sync / 1[56]:[^:]*:Iron Nail:630C:/ -2176.0 "Obliviating Claw #2" sync / 1[56]:[^:]*:Iron Nail:630C:/ -2182.0 "Charnel Claw #1" sync / 1[56]:[^:]*:Iron Nail:630D:/ -2187.0 "Charnel Claw #2" sync / 1[56]:[^:]*:Iron Nail:630D:/ # can be skipped if DPS is high enough -2189.5 "--sync--" sync / 1[56]:[^:]*:Anima:6A5C:/ window 20,20 +2109.8 "--sync--" Ability { id: "630B", source: "Anima" } +2116.6 "Obliviating Claw #1" Ability { id: "630C", source: "Iron Nail" } +2121.6 "Obliviating Claw #2" Ability { id: "630C", source: "Iron Nail" } +2127.6 "Charnel Claw #1" Ability { id: "630D", source: "Iron Nail" } +2132.6 "Charnel Claw #2" Ability { id: "630D", source: "Iron Nail" } +2135.1 "--sync--" Ability { id: "6A5C", source: "Anima" } +2143.6 "Obliviating Claw" Ability { id: "630A", source: "Anima" } +2149.1 "Coffin Scratch x5" Ability { id: "630E", source: "Anima" } duration 5 +2155.7 "--sync--" Ability { id: "6A5C", source: "Anima" } +2164.2 "--sync--" Ability { id: "630B", source: "Anima" } +2171.0 "Obliviating Claw #1" Ability { id: "630C", source: "Iron Nail" } +2176.0 "Obliviating Claw #2" Ability { id: "630C", source: "Iron Nail" } +2182.0 "Charnel Claw #1" Ability { id: "630D", source: "Iron Nail" } +2187.0 "Charnel Claw #2" Ability { id: "630D", source: "Iron Nail" } # can be skipped if DPS is high enough +2189.5 "--sync--" Ability { id: "6A5C", source: "Anima" } window 20,20 2192.9 "--untargetable--" -2199.1 "Oblivion" sync / 1[56]:[^:]*:Anima:630F:/ duration 5 -2205.8 "--sync--" sync / 1[56]:[^:]*:Anima:5D40:/ window 2205.8,30 +2199.1 "Oblivion" Ability { id: "630F", source: "Anima" } duration 5 +2205.8 "--sync--" Ability { id: "5D40", source: "Anima" } window 2205.8,30 # Return from alternate dimension. 2216.2 "--targetable--" -2229.4 "--sync--" sync / 1[56]:[^:]*:Anima:6303:/ # Boundless Pain -2229.5 "--sync--" sync / 1[56]:[^:]*:Anima:6675:/ -2230.6 "Boundless Pain" sync / 1[56]:[^:]*:Anima:6304:/ duration 12 -2249.8 "Pater Patriae" sync / 1[56]:[^:]*:Anima:6306:/ -2258.3 "Lunar Nail" sync / 1[56]:[^:]*:Anima:62FE:/ -2269.2 "Phantom Pain" sync / 1[56]:[^:]*:Anima:62FF:/ window 30,30 -2289.2 "Erupting Pain" sync / 1[56]:[^:]*:Anima:6308:/ -2289.6 "--sync--" sync / 1[56]:[^:]*:Anima:6307:/ # Erupting Pain -2302.1 "Mega Graviton" sync / 1[56]:[^:]*:Anima:6300:/ window 30,30 -2310.1 "Pater Patriae" sync / 1[56]:[^:]*:Anima:6306:/ -2316.0 "Aetherial Pull" sync / 1[56]:[^:]*:Mega-graviton:6301:/ -2327.6 "--sync--" sync / 1[56]:[^:]*:Anima:6307:/ # Erupting Pain -2327.6 "Erupting Pain" sync / 1[56]:[^:]*:Anima:6308:/ - -2349.4 "Boundless Pain" sync / 1[56]:[^:]*:Anima:6304:/ duration 12 -2368.6 "Pater Patriae" sync / 1[56]:[^:]*:Anima:6306:/ window 15,15 jump 2249.8 +2229.4 "--sync--" Ability { id: "6303", source: "Anima" } # Boundless Pain +2229.5 "--sync--" Ability { id: "6675", source: "Anima" } +2230.6 "Boundless Pain" Ability { id: "6304", source: "Anima" } duration 12 +2249.8 "Pater Patriae" Ability { id: "6306", source: "Anima" } +2258.3 "Lunar Nail" Ability { id: "62FE", source: "Anima" } +2269.2 "Phantom Pain" Ability { id: "62FF", source: "Anima" } window 30,30 +2289.2 "Erupting Pain" Ability { id: "6308", source: "Anima" } +2289.6 "--sync--" Ability { id: "6307", source: "Anima" } # Erupting Pain +2302.1 "Mega Graviton" Ability { id: "6300", source: "Anima" } window 30,30 +2310.1 "Pater Patriae" Ability { id: "6306", source: "Anima" } +2316.0 "Aetherial Pull" Ability { id: "6301", source: "Mega-graviton" } +2327.6 "--sync--" Ability { id: "6307", source: "Anima" } # Erupting Pain +2327.6 "Erupting Pain" Ability { id: "6308", source: "Anima" } + +2349.4 "Boundless Pain" Ability { id: "6304", source: "Anima" } duration 12 +2368.6 "Pater Patriae" Ability { id: "6306", source: "Anima" } window 15,15 jump 2249.8 2377.1 "Lunar Nail" 2388.0 "Phantom Pain" 2408.0 "Erupting Pain" diff --git a/ui/raidboss/data/06-ew/dungeon/the_tower_of_zot.txt b/ui/raidboss/data/06-ew/dungeon/the_tower_of_zot.txt index 60139ff4b0..51564e2199 100644 --- a/ui/raidboss/data/06-ew/dungeon/the_tower_of_zot.txt +++ b/ui/raidboss/data/06-ew/dungeon/the_tower_of_zot.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~~# # MINDURUVA # @@ -14,66 +14,66 @@ hideall "--sync--" ## Fixed-ish opening block # Ingenuity's Ingress will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E95:/ window 0,1 -8.9 "Manusya Bio" sync / 1[56]:[^:]*:Minduruva:62A0:/ window 8.9,5 -12.1 "--sync--" sync / 1[56]:[^:]*:Minduruva:6299:/ -17.5 "Manusya Blizzard III" sync / 1[56]:[^:]*:Minduruva:6296:/ -22.6 "Manusya Fire III" sync / 1[56]:[^:]*:Minduruva:6295:/ -27.8 "Manusya Thunder III x7" sync / 1[56]:[^:]*:Minduruva:6293:/ -32.9 "Manusya Bio III" sync / 1[56]:[^:]*:Minduruva:6298:/ -34.1 "--sync--" sync / 1[56]:[^:]*:Minduruva:6299:/ -38.0 "Transmute Element III" sync / 1[56]:[^:]*:Minduruva:6(29A|31[BCD]):/ -38.9 "--sync--" sync / 1[56]:[^:]*:Minduruva:629B:/ -42.3 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:6463:/ -47.7 "Manusya Element III" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -51.8 "Delayed Element III" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -61.9 "Manusya Bio" sync / 1[56]:[^:]*:Minduruva:62A0:/ -69.0 "Dhrupad" sync / 1[56]:[^:]*:Minduruva:629C:/ window 30,30 +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E95" } window 0,1 +8.9 "Manusya Bio" Ability { id: "62A0", source: "Minduruva" } window 8.9,5 +12.1 "--sync--" Ability { id: "6299", source: "Minduruva" } +17.5 "Manusya Blizzard III" Ability { id: "6296", source: "Minduruva" } +22.6 "Manusya Fire III" Ability { id: "6295", source: "Minduruva" } +27.8 "Manusya Thunder III x7" Ability { id: "6293", source: "Minduruva" } +32.9 "Manusya Bio III" Ability { id: "6298", source: "Minduruva" } +34.1 "--sync--" Ability { id: "6299", source: "Minduruva" } +38.0 "Transmute Element III" Ability { id: "6(29A|31[BCD])", source: "Minduruva" } +38.9 "--sync--" Ability { id: "629B", source: "Minduruva" } +42.3 "Manusya Fire" Ability { id: "6463", source: "Minduruva" } +47.7 "Manusya Element III" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +51.8 "Delayed Element III" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +61.9 "Manusya Bio" Ability { id: "62A0", source: "Minduruva" } +69.0 "Dhrupad" Ability { id: "629C", source: "Minduruva" } window 30,30 # Transmute block, no initial Bio -70.3 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:629D:/ -71.4 "Manusya Blizzard" sync / 1[56]:[^:]*:Minduruva:629E:/ -72.5 "Manusya Thunder" sync / 1[56]:[^:]*:Minduruva:629F:/ -75.7 "--sync--" sync / 1[56]:[^:]*:Minduruva:6299:/ -79.9 "Transmute Element III #1" sync / 1[56]:[^:]*:Minduruva:6(29A|31[BCD]):/ -80.8 "--sync--" sync / 1[56]:[^:]*:Minduruva:629B:/ -84.0 "Transmute Element III #2" sync / 1[56]:[^:]*:Minduruva:6(29A|31[BCD]):/ -84.9 "--sync--" sync / 1[56]:[^:]*:Minduruva:629B:/ -89.3 "Manusya Element III" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -93.4 "Delayed Element III #1" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -97.5 "Delayed Element III #2" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -107.6 "Dhrupad" sync / 1[56]:[^:]*:Minduruva:629C:/ window 30,30 +70.3 "Manusya Fire" Ability { id: "629D", source: "Minduruva" } +71.4 "Manusya Blizzard" Ability { id: "629E", source: "Minduruva" } +72.5 "Manusya Thunder" Ability { id: "629F", source: "Minduruva" } +75.7 "--sync--" Ability { id: "6299", source: "Minduruva" } +79.9 "Transmute Element III #1" Ability { id: "6(29A|31[BCD])", source: "Minduruva" } +80.8 "--sync--" Ability { id: "629B", source: "Minduruva" } +84.0 "Transmute Element III #2" Ability { id: "6(29A|31[BCD])", source: "Minduruva" } +84.9 "--sync--" Ability { id: "629B", source: "Minduruva" } +89.3 "Manusya Element III" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +93.4 "Delayed Element III #1" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +97.5 "Delayed Element III #2" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +107.6 "Dhrupad" Ability { id: "629C", source: "Minduruva" } window 30,30 # Rotation block with Bio -108.8 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:629D:/ -109.9 "Manusya Blizzard" sync / 1[56]:[^:]*:Minduruva:629E:/ -111.0 "Manusya Thunder" sync / 1[56]:[^:]*:Minduruva:629F:/ -117.1 "Manusya Bio" sync / 1[56]:[^:]*:Minduruva:62A0:/ -127.3 "--sync--" sync / 1[56]:[^:]*:Minduruva:6299:/ -131.5 "Transmute Element III #1" sync / 1[56]:[^:]*:Minduruva:6(29A|31[BCD]):/ -132.4 "--sync--" sync / 1[56]:[^:]*:Minduruva:629B:/ -135.5 "Transmute Element III #2" sync / 1[56]:[^:]*:Minduruva:6(29A|31[BCD]):/ -136.4 "--sync--" sync / 1[56]:[^:]*:Minduruva:629B:/ -140.8 "Manusya Element III" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -144.9 "Delayed Element III #1" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -148.9 "Delayed Element III #2" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -159.0 "Dhrupad" sync / 1[56]:[^:]*:Minduruva:629C:/ window 30,30 - -160.1 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:629D:/ -161.2 "Manusya Blizzard" sync / 1[56]:[^:]*:Minduruva:629E:/ -162.3 "Manusya Thunder" sync / 1[56]:[^:]*:Minduruva:629F:/ -168.4 "Manusya Bio" sync / 1[56]:[^:]*:Minduruva:62A0:/ -178.6 "--sync--" sync / 1[56]:[^:]*:Minduruva:6299:/ -182.8 "Transmute Element III #1" sync / 1[56]:[^:]*:Minduruva:6(29A|31[BCD]):/ -183.7 "--sync--" sync / 1[56]:[^:]*:Minduruva:629B:/ -186.8 "Transmute Element III #2" sync / 1[56]:[^:]*:Minduruva:6(29A|31[BCD]):/ -187.7 "--sync--" sync / 1[56]:[^:]*:Minduruva:629B:/ -192.1 "Manusya Element III" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -196.2 "Delayed Element III #1" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -200.2 "Delayed Element III #2" #sync / 1[56]:[^:]*:Minduruva:(6295|6296|6297|6298):/ -210.3 "Dhrupad" sync / 1[56]:[^:]*:Minduruva:629C:/ window 30,30 - -211.4 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:629D:/ jump 160.1 +108.8 "Manusya Fire" Ability { id: "629D", source: "Minduruva" } +109.9 "Manusya Blizzard" Ability { id: "629E", source: "Minduruva" } +111.0 "Manusya Thunder" Ability { id: "629F", source: "Minduruva" } +117.1 "Manusya Bio" Ability { id: "62A0", source: "Minduruva" } +127.3 "--sync--" Ability { id: "6299", source: "Minduruva" } +131.5 "Transmute Element III #1" Ability { id: "6(29A|31[BCD])", source: "Minduruva" } +132.4 "--sync--" Ability { id: "629B", source: "Minduruva" } +135.5 "Transmute Element III #2" Ability { id: "6(29A|31[BCD])", source: "Minduruva" } +136.4 "--sync--" Ability { id: "629B", source: "Minduruva" } +140.8 "Manusya Element III" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +144.9 "Delayed Element III #1" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +148.9 "Delayed Element III #2" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +159.0 "Dhrupad" Ability { id: "629C", source: "Minduruva" } window 30,30 + +160.1 "Manusya Fire" Ability { id: "629D", source: "Minduruva" } +161.2 "Manusya Blizzard" Ability { id: "629E", source: "Minduruva" } +162.3 "Manusya Thunder" Ability { id: "629F", source: "Minduruva" } +168.4 "Manusya Bio" Ability { id: "62A0", source: "Minduruva" } +178.6 "--sync--" Ability { id: "6299", source: "Minduruva" } +182.8 "Transmute Element III #1" Ability { id: "6(29A|31[BCD])", source: "Minduruva" } +183.7 "--sync--" Ability { id: "629B", source: "Minduruva" } +186.8 "Transmute Element III #2" Ability { id: "6(29A|31[BCD])", source: "Minduruva" } +187.7 "--sync--" Ability { id: "629B", source: "Minduruva" } +192.1 "Manusya Element III" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +196.2 "Delayed Element III #1" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +200.2 "Delayed Element III #2" #Ability { id: ["6295", "6296", "6297", "6298"], source: "Minduruva" } +210.3 "Dhrupad" Ability { id: "629C", source: "Minduruva" } window 30,30 + +211.4 "Manusya Fire" Ability { id: "629D", source: "Minduruva" } jump 160.1 212.5 "Manusya Blizzard" 213.6 "Manusya Thunder" 219.7 "Manusya Bio" @@ -88,31 +88,31 @@ hideall "--sync--" # Opening block # Prosperity's Promise will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E96:/ window 1000,5 -1009.3 "Isitva Siddhi" sync / 1[56]:[^:]*:Sanduruva:62A9:/ window 1009.3,5 -1015.7 "Prapti Siddhi #1" sync / 1[56]:[^:]*:Sanduruva:62A8:/ -1019.6 "Prapti Siddhi #2" #sync / 1[56]:[^:]*:Sanduruva:62A8:/ -1023.4 "Prapti Siddhi #3" #sync / 1[56]:[^:]*:Sanduruva:62A8:/ -1027.4 "Prapti Siddhi #4" #sync / 1[56]:[^:]*:Sanduruva:62A8:/ -1032.3 "Manusya Berserk" sync / 1[56]:[^:]*:Sanduruva:62A1:/ window 15,15 -1041.5 "Explosive Force" sync / 1[56]:[^:]*:Sanduruva:62A2:/ -1043.5 "Sphere Shatter" sync / 1[56]:[^:]*:Berserker Sphere:62A4:/ -1050.6 "Prakamya Siddhi" sync / 1[56]:[^:]*:Sanduruva:62A3:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E96" } window 1000,5 +1009.3 "Isitva Siddhi" Ability { id: "62A9", source: "Sanduruva" } window 1009.3,5 +1015.7 "Prapti Siddhi #1" Ability { id: "62A8", source: "Sanduruva" } +1019.6 "Prapti Siddhi #2" #Ability { id: "62A8", source: "Sanduruva" } +1023.4 "Prapti Siddhi #3" #Ability { id: "62A8", source: "Sanduruva" } +1027.4 "Prapti Siddhi #4" #Ability { id: "62A8", source: "Sanduruva" } +1032.3 "Manusya Berserk" Ability { id: "62A1", source: "Sanduruva" } window 15,15 +1041.5 "Explosive Force" Ability { id: "62A2", source: "Sanduruva" } +1043.5 "Sphere Shatter" Ability { id: "62A4", source: "Berserker Sphere" } +1050.6 "Prakamya Siddhi" Ability { id: "62A3", source: "Sanduruva" } # Rotation block -1055.8 "--sync--" sync / 1[56]:[^:]*:Sanduruva:62A6:/ window 1055.8,10 -1059.9 "Manusya Stop" sync / 1[56]:[^:]*:Sanduruva:62A7:/ -1067.1 "Prapti Siddhi #1" sync / 1[56]:[^:]*:Sanduruva:62A8:/ -1070.9 "Prapti Siddhi #2" #sync / 1[56]:[^:]*:Sanduruva:62A8:/ -1074.8 "Prapti Siddhi #3" #sync / 1[56]:[^:]*:Sanduruva:62A8:/ -1078.7 "Prapti Siddhi #4" #sync / 1[56]:[^:]*:Sanduruva:62A8:/ -1087.7 "Manusya Confuse" sync / 1[56]:[^:]*:Sanduruva:62A5:/ -1102.8 "Explosive Force" sync / 1[56]:[^:]*:Sanduruva:62A2:/ -1104.9 "Sphere Shatter" sync / 1[56]:[^:]*:Berserker Sphere:62A4:/ -1112.0 "Prakamya Siddhi" sync / 1[56]:[^:]*:Sanduruva:62A3:/ -1120.2 "Isitva Siddhi" sync / 1[56]:[^:]*:Sanduruva:62A9:/ window 30,30 - -1127.3 "--sync--" sync / 1[56]:[^:]*:Sanduruva:62A6:/ jump 1055.8 +1055.8 "--sync--" Ability { id: "62A6", source: "Sanduruva" } window 1055.8,10 +1059.9 "Manusya Stop" Ability { id: "62A7", source: "Sanduruva" } +1067.1 "Prapti Siddhi #1" Ability { id: "62A8", source: "Sanduruva" } +1070.9 "Prapti Siddhi #2" #Ability { id: "62A8", source: "Sanduruva" } +1074.8 "Prapti Siddhi #3" #Ability { id: "62A8", source: "Sanduruva" } +1078.7 "Prapti Siddhi #4" #Ability { id: "62A8", source: "Sanduruva" } +1087.7 "Manusya Confuse" Ability { id: "62A5", source: "Sanduruva" } +1102.8 "Explosive Force" Ability { id: "62A2", source: "Sanduruva" } +1104.9 "Sphere Shatter" Ability { id: "62A4", source: "Berserker Sphere" } +1112.0 "Prakamya Siddhi" Ability { id: "62A3", source: "Sanduruva" } +1120.2 "Isitva Siddhi" Ability { id: "62A9", source: "Sanduruva" } window 30,30 + +1127.3 "--sync--" Ability { id: "62A6", source: "Sanduruva" } jump 1055.8 1131.4 "Manusya Stop" 1138.6 "Prapti Siddhi #1" 1142.4 "Prapti Siddhi #2" @@ -130,48 +130,48 @@ hideall "--sync--" # we sync aggressively all over the rotation block. # Wisdom's Ward will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:E97:/ window 2000,5 -2002.5 "--sync--" sync / 1[56]:[^:]*:Cinduruva:62BA:/ window 2002.5,2 -2009.8 "Samsara" sync / 1[56]:[^:]*:Cinduruva:62B9:/ -2025.6 "Manusya Faith" sync / 1[56]:[^:]*:Sanduruva:62AA:/ -2025.8 "Manusya Reflect" sync / 1[56]:[^:]*:Cinduruva:62AB:/ -2026.7 "Delta Attack" sync / 1[56]:[^:]*:Minduruva:62A[CDE]:/ -2034.9 "Delta Blizzard/Fire/Thunder III" duration 10 #sync / 1[56]:[^:]*:Cinduruva:62B[37]:/ -2056.2 "Dhrupad" sync / 1[56]:[^:]*:Minduruva:62C1:/ -2056.3 "Isitva Siddhi" sync / 1[56]:[^:]*:Sanduruva:62C0:/ -2057.3 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:62C2:/ -2058.4 "Manusya Blizzard" sync / 1[56]:[^:]*:Minduruva:62C3:/ -2059.5 "Manusya Thunder" sync / 1[56]:[^:]*:Minduruva:62C4:/ -2063.6 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:62C7:/ -2064.6 "Prapti Siddhi" sync / 1[56]:[^:]*:Sanduruva:62BB:/ -2067.0 "Samsara" sync / 1[56]:[^:]*:Cinduruva:62B9:/ -2067.8 "Manusya Blizzard" sync / 1[56]:[^:]*:Minduruva:62C8:/ -2068.5 "Prapti Siddhi" sync / 1[56]:[^:]*:Sanduruva:62BB:/ -2071.9 "Manusya Thunder" sync / 1[56]:[^:]*:Minduruva:62C9:/ - -2075.1 "--sync--" sync / 1[56]:[^:]*:Sanduruva:62A6:/ window 100,30 -2080.3 "Manusya Faith" sync / 1[56]:[^:]*:Sanduruva:62AA:/ window 30,30 -2080.4 "Manusya Reflect" sync / 1[56]:[^:]*:Cinduruva:62AB:/ window 30,30 -2081.2 "Delta Attack" sync / 1[56]:[^:]*:Minduruva:62A[CDE]:/ -2089.4 "Delta Blizzard/Fire/Thunder III" duration 10 #sync / 1[56]:[^:]*:Cinduruva:62B[37]:/ -2110.6 "Dhrupad" sync / 1[56]:[^:]*:Minduruva:62C1:/ window 30,30 -2110.7 "Isitva Siddhi" sync / 1[56]:[^:]*:Sanduruva:62C0:/ window 30,30 -2111.7 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:62C2:/ -2112.8 "Manusya Blizzard" sync / 1[56]:[^:]*:Minduruva:62C3:/ -2113.9 "Manusya Thunder" sync / 1[56]:[^:]*:Minduruva:62C4:/ -2118.0 "Manusya Fire" sync / 1[56]:[^:]*:Minduruva:62C7:/ -2118.9 "Prapti Siddhi" sync / 1[56]:[^:]*:Sanduruva:62BB:/ window 30,2.5 -2121.3 "Samsara" sync / 1[56]:[^:]*:Cinduruva:62B9:/ window 30,30 -2122.1 "Manusya Blizzard" sync / 1[56]:[^:]*:Minduruva:62C8:/ -2122.7 "Prapti Siddhi" sync / 1[56]:[^:]*:Sanduruva:62BB:/ -2126.2 "Manusya Thunder" sync / 1[56]:[^:]*:Minduruva:62C9:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "E97" } window 2000,5 +2002.5 "--sync--" Ability { id: "62BA", source: "Cinduruva" } window 2002.5,2 +2009.8 "Samsara" Ability { id: "62B9", source: "Cinduruva" } +2025.6 "Manusya Faith" Ability { id: "62AA", source: "Sanduruva" } +2025.8 "Manusya Reflect" Ability { id: "62AB", source: "Cinduruva" } +2026.7 "Delta Attack" Ability { id: "62A[CDE]", source: "Minduruva" } +2034.9 "Delta Blizzard/Fire/Thunder III" duration 10 #Ability { id: "62B[37]", source: "Cinduruva" } +2056.2 "Dhrupad" Ability { id: "62C1", source: "Minduruva" } +2056.3 "Isitva Siddhi" Ability { id: "62C0", source: "Sanduruva" } +2057.3 "Manusya Fire" Ability { id: "62C2", source: "Minduruva" } +2058.4 "Manusya Blizzard" Ability { id: "62C3", source: "Minduruva" } +2059.5 "Manusya Thunder" Ability { id: "62C4", source: "Minduruva" } +2063.6 "Manusya Fire" Ability { id: "62C7", source: "Minduruva" } +2064.6 "Prapti Siddhi" Ability { id: "62BB", source: "Sanduruva" } +2067.0 "Samsara" Ability { id: "62B9", source: "Cinduruva" } +2067.8 "Manusya Blizzard" Ability { id: "62C8", source: "Minduruva" } +2068.5 "Prapti Siddhi" Ability { id: "62BB", source: "Sanduruva" } +2071.9 "Manusya Thunder" Ability { id: "62C9", source: "Minduruva" } + +2075.1 "--sync--" Ability { id: "62A6", source: "Sanduruva" } window 100,30 +2080.3 "Manusya Faith" Ability { id: "62AA", source: "Sanduruva" } window 30,30 +2080.4 "Manusya Reflect" Ability { id: "62AB", source: "Cinduruva" } window 30,30 +2081.2 "Delta Attack" Ability { id: "62A[CDE]", source: "Minduruva" } +2089.4 "Delta Blizzard/Fire/Thunder III" duration 10 #Ability { id: "62B[37]", source: "Cinduruva" } +2110.6 "Dhrupad" Ability { id: "62C1", source: "Minduruva" } window 30,30 +2110.7 "Isitva Siddhi" Ability { id: "62C0", source: "Sanduruva" } window 30,30 +2111.7 "Manusya Fire" Ability { id: "62C2", source: "Minduruva" } +2112.8 "Manusya Blizzard" Ability { id: "62C3", source: "Minduruva" } +2113.9 "Manusya Thunder" Ability { id: "62C4", source: "Minduruva" } +2118.0 "Manusya Fire" Ability { id: "62C7", source: "Minduruva" } +2118.9 "Prapti Siddhi" Ability { id: "62BB", source: "Sanduruva" } window 30,2.5 +2121.3 "Samsara" Ability { id: "62B9", source: "Cinduruva" } window 30,30 +2122.1 "Manusya Blizzard" Ability { id: "62C8", source: "Minduruva" } +2122.7 "Prapti Siddhi" Ability { id: "62BB", source: "Sanduruva" } +2126.2 "Manusya Thunder" Ability { id: "62C9", source: "Minduruva" } # We can't rely on any given sister being alive, # so sync + jump for all. -2129.5 "--sync--" sync / 1[56]:[^:]*:Sanduruva:62A6:/ window 30,30 -2134.7 "Manusya Faith" sync / 1[56]:[^:]*:Sanduruva:62AA:/ window 30,30 jump 2080.3 -2134.8 "Manusya Reflect" sync / 1[56]:[^:]*:Cinduruva:62AB:/ window 30,30 jump 2080.4 -2135.6 "Delta Attack" sync / 1[56]:[^:]*:Minduruva:62A[CDE]:/ window 30,30 jump 2081.2 +2129.5 "--sync--" Ability { id: "62A6", source: "Sanduruva" } window 30,30 +2134.7 "Manusya Faith" Ability { id: "62AA", source: "Sanduruva" } window 30,30 jump 2080.3 +2134.8 "Manusya Reflect" Ability { id: "62AB", source: "Cinduruva" } window 30,30 jump 2080.4 +2135.6 "Delta Attack" Ability { id: "62A[CDE]", source: "Minduruva" } window 30,30 jump 2081.2 2143.8 "Delta Blizzard/Fire/Thunder III" 2165.0 "Dhrupad" 2165.1 "Isitva Siddhi" diff --git a/ui/raidboss/data/06-ew/dungeon/vanaspati.txt b/ui/raidboss/data/06-ew/dungeon/vanaspati.txt index 471d8d9ffc..1ab8fcb1cb 100644 --- a/ui/raidboss/data/06-ew/dungeon/vanaspati.txt +++ b/ui/raidboss/data/06-ew/dungeon/vanaspati.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" # .*is no longer sealed -0.0 "--Reset--" sync / 29:[^:]*:7DE:/ window 100000 jump 0 +0.0 "--Reset--" SystemLogMessage { id: "7DE" } window 100000 jump 0 #~~~~~~~~~~~~~~~~~~~# # Terminus Snatcher # @@ -14,32 +14,32 @@ hideall "--sync--" # -ii 366 6291 6292 # Trnakiya will be sealed off -0.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:FAC:/ window 0,1 -7.1 "--sync--" sync / 14:[^:]*:Terminus Snatcher:6238:/ window 10,10 -12.1 "Note of Despair" sync / 1[56]:[^:]*:Terminus Snatcher:6238:/ -19.6 "Mouth Off" sync / 1[56]:[^:]*:Terminus Snatcher:6231:/ -31.4 "Vitriol" sync / 1[56]:[^:]*:Terminus Snatcher:6232:/ -41.0 "Last Gasp" sync / 1[56]:[^:]*:Terminus Snatcher:6235:/ -48.7 "Mouth Off" sync / 1[56]:[^:]*:Terminus Snatcher:6231:/ -59.8 "What Is Left/What Is Right" sync / 1[56]:[^:]*:Terminus Snatcher:623[34]:/ -60.5 "Vitriol" sync / 1[56]:[^:]*:Terminus Snatcher:6232:/ - -72.1 "Note of Despair" sync / 1[56]:[^:]*:Terminus Snatcher:6238:/ -80.4 "Lost Hope" sync / 1[56]:[^:]*:Terminus Snatcher:6237:/ -85.5 "Mouth Off" sync / 1[56]:[^:]*:Terminus Snatcher:6231:/ -97.3 "Vitriol" sync / 1[56]:[^:]*:Terminus Snatcher:6232:/ -107.0 "Last Gasp" sync / 1[56]:[^:]*:Terminus Snatcher:6235:/ -114.8 "Mouth Off" sync / 1[56]:[^:]*:Terminus Snatcher:6231:/ -125.9 "What Is Left/What Is Right" sync / 1[56]:[^:]*:Terminus Snatcher:623[34]:/ -126.6 "Vitriol" sync / 1[56]:[^:]*:Terminus Snatcher:6232:/ -137.1 "What Is Left/What Is Right" sync / 1[56]:[^:]*:Terminus Snatcher:623[34]:/ -138.2 "Wallow" sync / 1[56]:[^:]*:Terminus Snatcher:6236:/ - -149.3 "Note of Despair" sync / 1[56]:[^:]*:Terminus Snatcher:6238:/ window 40,40 jump 72.1 -157.6 "Lost Hope" #sync / 1[56]:[^:]*:Terminus Snatcher:6237:/ -162.7 "Mouth Off" #sync / 1[56]:[^:]*:Terminus Snatcher:6231:/ -174.5 "Vitriol" #sync / 1[56]:[^:]*:Terminus Snatcher:6232:/ -184.2 "Last Gasp" #sync / 1[56]:[^:]*:Terminus Snatcher:6235:/ +0.0 "--sync--" SystemLogMessage { id: "7DC", param1: "FAC" } window 0,1 +7.1 "--sync--" StartsUsing { id: "6238", source: "Terminus Snatcher" } window 10,10 +12.1 "Note of Despair" Ability { id: "6238", source: "Terminus Snatcher" } +19.6 "Mouth Off" Ability { id: "6231", source: "Terminus Snatcher" } +31.4 "Vitriol" Ability { id: "6232", source: "Terminus Snatcher" } +41.0 "Last Gasp" Ability { id: "6235", source: "Terminus Snatcher" } +48.7 "Mouth Off" Ability { id: "6231", source: "Terminus Snatcher" } +59.8 "What Is Left/What Is Right" Ability { id: "623[34]", source: "Terminus Snatcher" } +60.5 "Vitriol" Ability { id: "6232", source: "Terminus Snatcher" } + +72.1 "Note of Despair" Ability { id: "6238", source: "Terminus Snatcher" } +80.4 "Lost Hope" Ability { id: "6237", source: "Terminus Snatcher" } +85.5 "Mouth Off" Ability { id: "6231", source: "Terminus Snatcher" } +97.3 "Vitriol" Ability { id: "6232", source: "Terminus Snatcher" } +107.0 "Last Gasp" Ability { id: "6235", source: "Terminus Snatcher" } +114.8 "Mouth Off" Ability { id: "6231", source: "Terminus Snatcher" } +125.9 "What Is Left/What Is Right" Ability { id: "623[34]", source: "Terminus Snatcher" } +126.6 "Vitriol" Ability { id: "6232", source: "Terminus Snatcher" } +137.1 "What Is Left/What Is Right" Ability { id: "623[34]", source: "Terminus Snatcher" } +138.2 "Wallow" Ability { id: "6236", source: "Terminus Snatcher" } + +149.3 "Note of Despair" Ability { id: "6238", source: "Terminus Snatcher" } window 40,40 jump 72.1 +157.6 "Lost Hope" #Ability { id: "6237", source: "Terminus Snatcher" } +162.7 "Mouth Off" #Ability { id: "6231", source: "Terminus Snatcher" } +174.5 "Vitriol" #Ability { id: "6232", source: "Terminus Snatcher" } +184.2 "Last Gasp" #Ability { id: "6235", source: "Terminus Snatcher" } #~~~~~~~~~~~~~~~~~~# @@ -52,38 +52,38 @@ hideall "--sync--" # Note: 623F is also called "Poison Heart" but that's when the stack marker appears. # Insight will be sealed off -1000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:FAD:/ window 1000,0 -1006.2 "--sync--" sync / 14:[^:]*:Terminus Wrecker:6241:/ window 1010,10 -1011.2 "Meaningless Destruction" sync / 1[56]:[^:]*:Terminus Wrecker:6241:/ -1021.4 "Unholy Water" sync / 1[56]:[^:]*:Terminus Wrecker:6CCC:/ -1026.8 "Aether Siphon" sync / 1[56]:[^:]*:Terminus Wrecker:623A:/ -1036.2 "Aether Spray (Knockback)" sync / 1[56]:[^:]*:Terminus Wrecker:623C:/ -1048.5 "Total Wreck" sync / 1[56]:[^:]*:Terminus Wrecker:6242:/ -1053.8 "Unholy Water" sync / 1[56]:[^:]*:Terminus Wrecker:6CCC:/ -1059.2 "Aether Siphon" sync / 1[56]:[^:]*:Terminus Wrecker:6239:/ -1068.5 "Aether Spray (Bubble)" sync / 1[56]:[^:]*:Terminus Wrecker:623B:/ - -1080.7 "Meaningless Destruction" sync / 1[56]:[^:]*:Terminus Wrecker:6241:/ -1091.0 "Unholy Water" sync / 1[56]:[^:]*:Terminus Wrecker:6CCC:/ -1096.4 "Aether Siphon" sync / 1[56]:[^:]*:Terminus Wrecker:623A:/ -1105.8 "Aether Spray (Knockback)" sync / 1[56]:[^:]*:Terminus Wrecker:623C:/ -1112.9 "--sync--" sync / 1[56]:[^:]*:Terminus Wrecker:623F:/ -1118.0 "Poison Heart" sync / 1[56]:[^:]*:Terminus Wrecker:6CCB:/ -1125.2 "Total Wreck" sync / 1[56]:[^:]*:Terminus Wrecker:6242:/ -1135.5 "Unholy Water" sync / 1[56]:[^:]*:Terminus Wrecker:6CCC:/ -1140.9 "Aether Siphon" sync / 1[56]:[^:]*:Terminus Wrecker:6239:/ -1150.2 "Aether Spray (Bubble)" sync / 1[56]:[^:]*:Terminus Wrecker:623B:/ - -1162.4 "Meaningless Destruction" sync / 1[56]:[^:]*:Terminus Wrecker:6241:/ window 40,40 jump 1080.7 -1172.7 "Unholy Water" #sync / 1[56]:[^:]*:Terminus Wrecker:6CCC:/ -1178.1 "Aether Siphon" #sync / 1[56]:[^:]*:Terminus Wrecker:623A:/ -1187.5 "Aether Spray (Knockback)" #sync / 1[56]:[^:]*:Terminus Wrecker:623C:/ -1194.6 "--sync--" #sync / 1[56]:[^:]*:Terminus Wrecker:623F:/ -1199.7 "Poison Heart" #sync / 1[56]:[^:]*:Terminus Wrecker:6CCB:/ -1206.9 "Total Wreck" #sync / 1[56]:[^:]*:Terminus Wrecker:6242:/ -1217.2 "Unholy Water" #sync / 1[56]:[^:]*:Terminus Wrecker:6CCC:/ -1222.6 "Aether Siphon" #sync / 1[56]:[^:]*:Terminus Wrecker:6239:/ -1231.9 "Aether Spray (Bubble)" #sync / 1[56]:[^:]*:Terminus Wrecker:623B:/ +1000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "FAD" } window 1000,0 +1006.2 "--sync--" StartsUsing { id: "6241", source: "Terminus Wrecker" } window 1010,10 +1011.2 "Meaningless Destruction" Ability { id: "6241", source: "Terminus Wrecker" } +1021.4 "Unholy Water" Ability { id: "6CCC", source: "Terminus Wrecker" } +1026.8 "Aether Siphon" Ability { id: "623A", source: "Terminus Wrecker" } +1036.2 "Aether Spray (Knockback)" Ability { id: "623C", source: "Terminus Wrecker" } +1048.5 "Total Wreck" Ability { id: "6242", source: "Terminus Wrecker" } +1053.8 "Unholy Water" Ability { id: "6CCC", source: "Terminus Wrecker" } +1059.2 "Aether Siphon" Ability { id: "6239", source: "Terminus Wrecker" } +1068.5 "Aether Spray (Bubble)" Ability { id: "623B", source: "Terminus Wrecker" } + +1080.7 "Meaningless Destruction" Ability { id: "6241", source: "Terminus Wrecker" } +1091.0 "Unholy Water" Ability { id: "6CCC", source: "Terminus Wrecker" } +1096.4 "Aether Siphon" Ability { id: "623A", source: "Terminus Wrecker" } +1105.8 "Aether Spray (Knockback)" Ability { id: "623C", source: "Terminus Wrecker" } +1112.9 "--sync--" Ability { id: "623F", source: "Terminus Wrecker" } +1118.0 "Poison Heart" Ability { id: "6CCB", source: "Terminus Wrecker" } +1125.2 "Total Wreck" Ability { id: "6242", source: "Terminus Wrecker" } +1135.5 "Unholy Water" Ability { id: "6CCC", source: "Terminus Wrecker" } +1140.9 "Aether Siphon" Ability { id: "6239", source: "Terminus Wrecker" } +1150.2 "Aether Spray (Bubble)" Ability { id: "623B", source: "Terminus Wrecker" } + +1162.4 "Meaningless Destruction" Ability { id: "6241", source: "Terminus Wrecker" } window 40,40 jump 1080.7 +1172.7 "Unholy Water" #Ability { id: "6CCC", source: "Terminus Wrecker" } +1178.1 "Aether Siphon" #Ability { id: "623A", source: "Terminus Wrecker" } +1187.5 "Aether Spray (Knockback)" #Ability { id: "623C", source: "Terminus Wrecker" } +1194.6 "--sync--" #Ability { id: "623F", source: "Terminus Wrecker" } +1199.7 "Poison Heart" #Ability { id: "6CCB", source: "Terminus Wrecker" } +1206.9 "Total Wreck" #Ability { id: "6242", source: "Terminus Wrecker" } +1217.2 "Unholy Water" #Ability { id: "6CCC", source: "Terminus Wrecker" } +1222.6 "Aether Siphon" #Ability { id: "6239", source: "Terminus Wrecker" } +1231.9 "Aether Spray (Bubble)" #Ability { id: "623B", source: "Terminus Wrecker" } #~~~~~~~~~~~# @@ -99,56 +99,56 @@ hideall "--sync--" hideall "Crumbling Sky" # Devatagara will be sealed off -2000.0 "--sync--" sync / 29:[^:]*:7DC:[^:]*:FAE:/ window 2000,0 -2005.1 "--sync--" sync / 14:[^:]*:Svarbhanu:6252:/ window 2020,10 -2010.1 "Flames of Decay" sync / 1[56]:[^:]*:Svarbhanu:6252:/ -2018.0 "Chaotic Pulse" sync / 1[56]:[^:]*:Svarbhanu:6B61:/ -2020.1 "--sync--" sync / 1[56]:[^:]*:Svarbhanu:624C:/ -2027.0 "Aetherial Disruption" sync / 1[56]:[^:]*:Svarbhanu:6248:/ -2027.9 "Chaotic Undercurrent" sync / 1[56]:[^:]*:Svarbhanu:624A:/ -2034.6 "Chaotic Pulse" sync / 1[56]:[^:]*:Svarbhanu:6B61:/ -2039.7 "Crumbling Sky" sync / 1[56]:[^:]*:Svarbhanu:624E:/ -2041.9 "--sync--" sync / 1[56]:[^:]*:Svarbhanu:624D:/ -2048.8 "Aetherial Disruption" sync / 1[56]:[^:]*:Svarbhanu:6248:/ -2049.3 "Cosmic Kiss (Spread)" sync / 1[56]:[^:]*:Svarbhanu:6250:/ -2049.7 "Chaotic Undercurrent" sync / 1[56]:[^:]*:Svarbhanu:624B:/ -2061.1 "Gnashing of Teeth" sync / 1[56]:[^:]*:Svarbhanu:6253:/ -2068.2 "Chaotic Pulse" sync / 1[56]:[^:]*:Svarbhanu:6B61:/ -2073.3 "Crumbling Sky" sync / 1[56]:[^:]*:Svarbhanu:624E:/ -2075.5 "--sync--" sync / 1[56]:[^:]*:Svarbhanu:624C:/ -2080.4 "Cosmic Kiss (Knockback)" sync / 1[56]:[^:]*:Svarbhanu:6251:/ -2082.4 "Aetherial Disruption" sync / 1[56]:[^:]*:Svarbhanu:6248:/ -2083.3 "Chaotic Undercurrent" sync / 1[56]:[^:]*:Svarbhanu:624A:/ -2094.4 "Crumbling Sky" sync / 1[56]:[^:]*:Svarbhanu:624E:/ +2000.0 "--sync--" SystemLogMessage { id: "7DC", param1: "FAE" } window 2000,0 +2005.1 "--sync--" StartsUsing { id: "6252", source: "Svarbhanu" } window 2020,10 +2010.1 "Flames of Decay" Ability { id: "6252", source: "Svarbhanu" } +2018.0 "Chaotic Pulse" Ability { id: "6B61", source: "Svarbhanu" } +2020.1 "--sync--" Ability { id: "624C", source: "Svarbhanu" } +2027.0 "Aetherial Disruption" Ability { id: "6248", source: "Svarbhanu" } +2027.9 "Chaotic Undercurrent" Ability { id: "624A", source: "Svarbhanu" } +2034.6 "Chaotic Pulse" Ability { id: "6B61", source: "Svarbhanu" } +2039.7 "Crumbling Sky" Ability { id: "624E", source: "Svarbhanu" } +2041.9 "--sync--" Ability { id: "624D", source: "Svarbhanu" } +2048.8 "Aetherial Disruption" Ability { id: "6248", source: "Svarbhanu" } +2049.3 "Cosmic Kiss (Spread)" Ability { id: "6250", source: "Svarbhanu" } +2049.7 "Chaotic Undercurrent" Ability { id: "624B", source: "Svarbhanu" } +2061.1 "Gnashing of Teeth" Ability { id: "6253", source: "Svarbhanu" } +2068.2 "Chaotic Pulse" Ability { id: "6B61", source: "Svarbhanu" } +2073.3 "Crumbling Sky" Ability { id: "624E", source: "Svarbhanu" } +2075.5 "--sync--" Ability { id: "624C", source: "Svarbhanu" } +2080.4 "Cosmic Kiss (Knockback)" Ability { id: "6251", source: "Svarbhanu" } +2082.4 "Aetherial Disruption" Ability { id: "6248", source: "Svarbhanu" } +2083.3 "Chaotic Undercurrent" Ability { id: "624A", source: "Svarbhanu" } +2094.4 "Crumbling Sky" Ability { id: "624E", source: "Svarbhanu" } 2096.4 "--untargetable--" -2105.2 "--sync--" sync / 1[56]:[^:]*:Svarbhanu:6249:/ -2110.3 "--sync--" sync / 1[56]:[^:]*:Svarbhanu:6249:/ -2110.7 "--meteor 1--" sync / 1[56]:[^:]*:Svarbhanu:631E:/ -2114.5 "Cosmic Kiss" sync / 1[56]:[^:]*:Svarbhanu:624F:/ -2115.4 "--sync--" sync / 1[56]:[^:]*:Svarbhanu:6249:/ -2115.8 "--meteor 2--" sync / 1[56]:[^:]*:Svarbhanu:631E:/ -2119.5 "Cosmic Kiss" sync / 1[56]:[^:]*:Svarbhanu:624F:/ -2120.9 "--meteor 3--" sync / 1[56]:[^:]*:Svarbhanu:631E:/ -2123.5 "Cosmic Kiss" sync / 1[56]:[^:]*:Svarbhanu:624F:/ +2105.2 "--sync--" Ability { id: "6249", source: "Svarbhanu" } +2110.3 "--sync--" Ability { id: "6249", source: "Svarbhanu" } +2110.7 "--meteor 1--" Ability { id: "631E", source: "Svarbhanu" } +2114.5 "Cosmic Kiss" Ability { id: "624F", source: "Svarbhanu" } +2115.4 "--sync--" Ability { id: "6249", source: "Svarbhanu" } +2115.8 "--meteor 2--" Ability { id: "631E", source: "Svarbhanu" } +2119.5 "Cosmic Kiss" Ability { id: "624F", source: "Svarbhanu" } +2120.9 "--meteor 3--" Ability { id: "631E", source: "Svarbhanu" } +2123.5 "Cosmic Kiss" Ability { id: "624F", source: "Svarbhanu" } 2125.1 "--targetable--" -2136.2 "Flames of Decay" sync / 1[56]:[^:]*:Svarbhanu:6252:/ window 100,10 -2143.4 "Chaotic Pulse" sync / 1[56]:[^:]*:Svarbhanu:6B61:/ -2148.5 "Crumbling Sky" sync / 1[56]:[^:]*:Svarbhanu:624E:/ -2150.7 "--sync--" sync / 1[56]:[^:]*:Svarbhanu:624C:/ -2155.6 "Cosmic Kiss (Knockback)" sync / 1[56]:[^:]*:Svarbhanu:6251:/ -2157.6 "Aetherial Disruption" sync / 1[56]:[^:]*:Svarbhanu:6248:/ -2158.5 "Chaotic Undercurrent" sync / 1[56]:[^:]*:Svarbhanu:624A:/ -2159.6 "Cosmic Kiss (Spread)" sync / 1[56]:[^:]*:Svarbhanu:6250:/ -2169.8 "Gnashing of Teeth" sync / 1[56]:[^:]*:Svarbhanu:6253:/ - -2187.7 "Flames of Decay" sync / 1[56]:[^:]*:Svarbhanu:6252:/ window 30,30 jump 2136.2 -2194.9 "Chaotic Pulse" #sync / 1[56]:[^:]*:Svarbhanu:6B61:/ -2200.0 "Crumbling Sky" #sync / 1[56]:[^:]*:Svarbhanu:624E:/ -2202.2 "--sync--" #sync / 1[56]:[^:]*:Svarbhanu:624C:/ -2207.1 "Cosmic Kiss (Knockback)" #sync / 1[56]:[^:]*:Svarbhanu:6251:/ -2209.1 "Aetherial Disruption" #sync / 1[56]:[^:]*:Svarbhanu:6248:/ -2210.0 "Chaotic Undercurrent" #sync / 1[56]:[^:]*:Svarbhanu:624A:/ -2211.1 "Cosmic Kiss (Spread)" #sync / 1[56]:[^:]*:Svarbhanu:6250:/ -2221.3 "Gnashing of Teeth" #sync / 1[56]:[^:]*:Svarbhanu:6253:/ +2136.2 "Flames of Decay" Ability { id: "6252", source: "Svarbhanu" } window 100,10 +2143.4 "Chaotic Pulse" Ability { id: "6B61", source: "Svarbhanu" } +2148.5 "Crumbling Sky" Ability { id: "624E", source: "Svarbhanu" } +2150.7 "--sync--" Ability { id: "624C", source: "Svarbhanu" } +2155.6 "Cosmic Kiss (Knockback)" Ability { id: "6251", source: "Svarbhanu" } +2157.6 "Aetherial Disruption" Ability { id: "6248", source: "Svarbhanu" } +2158.5 "Chaotic Undercurrent" Ability { id: "624A", source: "Svarbhanu" } +2159.6 "Cosmic Kiss (Spread)" Ability { id: "6250", source: "Svarbhanu" } +2169.8 "Gnashing of Teeth" Ability { id: "6253", source: "Svarbhanu" } + +2187.7 "Flames of Decay" Ability { id: "6252", source: "Svarbhanu" } window 30,30 jump 2136.2 +2194.9 "Chaotic Pulse" #Ability { id: "6B61", source: "Svarbhanu" } +2200.0 "Crumbling Sky" #Ability { id: "624E", source: "Svarbhanu" } +2202.2 "--sync--" #Ability { id: "624C", source: "Svarbhanu" } +2207.1 "Cosmic Kiss (Knockback)" #Ability { id: "6251", source: "Svarbhanu" } +2209.1 "Aetherial Disruption" #Ability { id: "6248", source: "Svarbhanu" } +2210.0 "Chaotic Undercurrent" #Ability { id: "624A", source: "Svarbhanu" } +2211.1 "Cosmic Kiss (Spread)" #Ability { id: "6250", source: "Svarbhanu" } +2221.3 "Gnashing of Teeth" #Ability { id: "6253", source: "Svarbhanu" } diff --git a/ui/raidboss/data/06-ew/raid/p10n.txt b/ui/raidboss/data/06-ew/raid/p10n.txt index 0d2d914983..58e8b00413 100644 --- a/ui/raidboss/data/06-ew/raid/p10n.txt +++ b/ui/raidboss/data/06-ew/raid/p10n.txt @@ -23,59 +23,59 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.9 "--sync--" sync / 14:[^:]*:Pand\u00e6monium:8259:/ window 15,15 -10.9 "Silkspit (marked)" sync / 1[56]:[^:]*:Pand\u00e6monium:8259:/ -23.0 "Silkspit (resolves)" sync / 1[56]:[^:]*:Pand\u00e6monium:825A:/ -35.4 "Pandaemoniac Pillars" sync / 1[56]:[^:]*:Pand\u00e6monium:825D:/ -43.4 "Imprisonment" sync / 1[56]:[^:]*:Pand\u00e6monium:8262:/ -50.1 "Ultima" sync / 1[56]:[^:]*:Pand\u00e6monium:827B:/ -59.9 "Pandaemoniac Pillars" sync / 1[56]:[^:]*:Pand\u00e6monium:825D:/ -67.8 "Cannonspawn" sync / 1[56]:[^:]*:Pand\u00e6monium:8264:/ -74.6 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:87A2:/ -80.0 "Pandaemoniac Meltdown" sync / 1[56]:[^:]*:Pand\u00e6monium:8276:/ -90.1 "Soul Grasp" sync / 1[56]:[^:]*:Pand\u00e6monium:8278:/ -101.3 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:8721:/ -114.7 "Silkspit (marked)" sync / 1[56]:[^:]*:Pand\u00e6monium:8259:/ -126.7 "Silkspit (resolves)" sync / 1[56]:[^:]*:Pand\u00e6monium:825A:/ -140.4 "Pandaemoniac Ray" sync / 1[56]:[^:]*:Pand\u00e6monium:826[57]:/ -150.6 "Parted Plumes" sync / 1[56]:[^:]*:Pand\u00e6monium:8270:/ duration 11 -165.2 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:87A2:/ -170.5 "Pandaemoniac Meltdown" sync / 1[56]:[^:]*:Pand\u00e6monium:8276:/ -179.7 "Soul Grasp" sync / 1[56]:[^:]*:Pand\u00e6monium:8278:/ -191.0 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:8721:/ -210.5 "Pandaemoniac Ray" sync / 1[56]:[^:]*:Pand\u00e6monium:826[57]:/ -224.6 "Touchdown" sync / 1[56]:[^:]*:Pand\u00e6monium:8268:/ -233.8 "Ultima" sync / 1[56]:[^:]*:Pand\u00e6monium:827B:/ -245.7 "Pandaemoniac Pillars" sync / 1[56]:[^:]*:Pand\u00e6monium:825D:/ -253.5 "Imprisonment/Cannonspawn" sync / 1[56]:[^:]*:Pand\u00e6monium:826[24]:/ -259.3 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:87A2:/ -264.7 "Pandaemoniac Meltdown" sync / 1[56]:[^:]*:Pand\u00e6monium:8276:/ -272.8 "Harrowing Hell (x8)" sync / 1[56]:[^:]*:Pand\u00e6monium:826A:/ duration 12 -289.0 "Harrowing Hell (knockback)" sync / 1[56]:[^:]*:Pand\u00e6monium:826F:/ -304.2 "Parted Plumes" sync / 1[56]:[^:]*:Pand\u00e6monium:8270:/ duration 11 -322.7 "Wicked Step" sync / 1[56]:[^:]*:Pand\u00e6monium:8272:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.9 "--sync--" StartsUsing { id: "8259", source: "Pand\\u00e6monium" } window 15,15 +10.9 "Silkspit (marked)" Ability { id: "8259", source: "Pand\\u00e6monium" } +23.0 "Silkspit (resolves)" Ability { id: "825A", source: "Pand\\u00e6monium" } +35.4 "Pandaemoniac Pillars" Ability { id: "825D", source: "Pand\\u00e6monium" } +43.4 "Imprisonment" Ability { id: "8262", source: "Pand\\u00e6monium" } +50.1 "Ultima" Ability { id: "827B", source: "Pand\\u00e6monium" } +59.9 "Pandaemoniac Pillars" Ability { id: "825D", source: "Pand\\u00e6monium" } +67.8 "Cannonspawn" Ability { id: "8264", source: "Pand\\u00e6monium" } +74.6 "--sync--" Ability { id: "87A2", source: "Pand\\u00e6monium" } +80.0 "Pandaemoniac Meltdown" Ability { id: "8276", source: "Pand\\u00e6monium" } +90.1 "Soul Grasp" Ability { id: "8278", source: "Pand\\u00e6monium" } +101.3 "Entangling Web" Ability { id: "8721", source: "Pand\\u00e6monium" } +114.7 "Silkspit (marked)" Ability { id: "8259", source: "Pand\\u00e6monium" } +126.7 "Silkspit (resolves)" Ability { id: "825A", source: "Pand\\u00e6monium" } +140.4 "Pandaemoniac Ray" Ability { id: "826[57]", source: "Pand\\u00e6monium" } +150.6 "Parted Plumes" Ability { id: "8270", source: "Pand\\u00e6monium" } duration 11 +165.2 "--sync--" Ability { id: "87A2", source: "Pand\\u00e6monium" } +170.5 "Pandaemoniac Meltdown" Ability { id: "8276", source: "Pand\\u00e6monium" } +179.7 "Soul Grasp" Ability { id: "8278", source: "Pand\\u00e6monium" } +191.0 "Entangling Web" Ability { id: "8721", source: "Pand\\u00e6monium" } +210.5 "Pandaemoniac Ray" Ability { id: "826[57]", source: "Pand\\u00e6monium" } +224.6 "Touchdown" Ability { id: "8268", source: "Pand\\u00e6monium" } +233.8 "Ultima" Ability { id: "827B", source: "Pand\\u00e6monium" } +245.7 "Pandaemoniac Pillars" Ability { id: "825D", source: "Pand\\u00e6monium" } +253.5 "Imprisonment/Cannonspawn" Ability { id: "826[24]", source: "Pand\\u00e6monium" } +259.3 "--sync--" Ability { id: "87A2", source: "Pand\\u00e6monium" } +264.7 "Pandaemoniac Meltdown" Ability { id: "8276", source: "Pand\\u00e6monium" } +272.8 "Harrowing Hell (x8)" Ability { id: "826A", source: "Pand\\u00e6monium" } duration 12 +289.0 "Harrowing Hell (knockback)" Ability { id: "826F", source: "Pand\\u00e6monium" } +304.2 "Parted Plumes" Ability { id: "8270", source: "Pand\\u00e6monium" } duration 11 +322.7 "Wicked Step" Ability { id: "8272", source: "Pand\\u00e6monium" } # Loop begins here -339.5 "Pandaemoniac Pillars" sync / 1[56]:[^:]*:Pand\u00e6monium:825D:/ -347.4 "Imprisonment/Cannonspawn" sync / 1[56]:[^:]*:Pand\u00e6monium:826[24]:/ -353.2 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:8721:/ -374.4 "Touchdown" sync / 1[56]:[^:]*:Pand\u00e6monium:8268:/ -380.5 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:87A2:/ -385.8 "Pandaemoniac Meltdown" sync / 1[56]:[^:]*:Pand\u00e6monium:8276:/ -392.0 "Silkspit (marked)" sync / 1[56]:[^:]*:Pand\u00e6monium:8259:/ -404.0 "Silkspit (resolves)" sync / 1[56]:[^:]*:Pand\u00e6monium:825A:/ -417.7 "Pandaemoniac Ray" sync / 1[56]:[^:]*:Pand\u00e6monium:826[57]:/ -423.8 "Parted Plumes" sync / 1[56]:[^:]*:Pand\u00e6monium:8270:/ duration 11 -442.4 "Soul Grasp" sync / 1[56]:[^:]*:Pand\u00e6monium:8278:/ -457.6 "Ultima" sync / 1[56]:[^:]*:Pand\u00e6monium:827B:/ +339.5 "Pandaemoniac Pillars" Ability { id: "825D", source: "Pand\\u00e6monium" } +347.4 "Imprisonment/Cannonspawn" Ability { id: "826[24]", source: "Pand\\u00e6monium" } +353.2 "Entangling Web" Ability { id: "8721", source: "Pand\\u00e6monium" } +374.4 "Touchdown" Ability { id: "8268", source: "Pand\\u00e6monium" } +380.5 "--sync--" Ability { id: "87A2", source: "Pand\\u00e6monium" } +385.8 "Pandaemoniac Meltdown" Ability { id: "8276", source: "Pand\\u00e6monium" } +392.0 "Silkspit (marked)" Ability { id: "8259", source: "Pand\\u00e6monium" } +404.0 "Silkspit (resolves)" Ability { id: "825A", source: "Pand\\u00e6monium" } +417.7 "Pandaemoniac Ray" Ability { id: "826[57]", source: "Pand\\u00e6monium" } +423.8 "Parted Plumes" Ability { id: "8270", source: "Pand\\u00e6monium" } duration 11 +442.4 "Soul Grasp" Ability { id: "8278", source: "Pand\\u00e6monium" } +457.6 "Ultima" Ability { id: "827B", source: "Pand\\u00e6monium" } # Repeat -485.0 "Pandaemoniac Pillars" sync / 1[56]:[^:]*:Pand\u00e6monium:825D:/ window 50,50 jump 339.5 -492.9 "Imprisonment/Cannonspawn" sync / 1[56]:[^:]*:Pand\u00e6monium:826[24]:/ -498.7 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:8721:/ -519.9 "Touchdown" sync / 1[56]:[^:]*:Pand\u00e6monium:8268:/ -525.9 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:87A2:/ -531.3 "Pandaemoniac Meltdown" sync / 1[56]:[^:]*:Pand\u00e6monium:8276:/ +485.0 "Pandaemoniac Pillars" Ability { id: "825D", source: "Pand\\u00e6monium" } window 50,50 jump 339.5 +492.9 "Imprisonment/Cannonspawn" Ability { id: "826[24]", source: "Pand\\u00e6monium" } +498.7 "Entangling Web" Ability { id: "8721", source: "Pand\\u00e6monium" } +519.9 "Touchdown" Ability { id: "8268", source: "Pand\\u00e6monium" } +525.9 "--sync--" Ability { id: "87A2", source: "Pand\\u00e6monium" } +531.3 "Pandaemoniac Meltdown" Ability { id: "8276", source: "Pand\\u00e6monium" } diff --git a/ui/raidboss/data/06-ew/raid/p10s.txt b/ui/raidboss/data/06-ew/raid/p10s.txt index 480b80f152..11b25d979f 100644 --- a/ui/raidboss/data/06-ew/raid/p10s.txt +++ b/ui/raidboss/data/06-ew/raid/p10s.txt @@ -22,140 +22,140 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 - -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.1 "--sync--" sync / 14:[^:]*:Pand\u00e6monium:82A5:/ window 15,15 -14.1 "Ultima" sync / 1[56]:[^:]*:Pand\u00e6monium:82A5:/ -23.2 "Soul Grasp x4" sync / 1[56]:[^:]*:Pand\u00e6monium:829F:/ duration 5.7 -34.7 "Dividing Wings (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:8297:/ -40.8 "Steel Web (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:8723:/ -48.5 "Dividing Wings (cone)" sync / 1[56]:[^:]*:Pand\u00e6monium:8298:/ -48.7 "Steel Web (share)" sync / 1[56]:[^:]*:Pand\u00e6monium:827F:/ -58.7 "Pandaemon's Holy/Circles of Pandaemonium" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A6|82A7):/ -67.4 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:8299:/ -68.5 "Wicked Step 1" sync / 1[56]:[^:]*:Pand\u00e6monium:829A:/ -70.9 "Wicked Step 2" sync / 1[56]:[^:]*:Pand\u00e6monium:829B:/ -78.6 "Entangling Web (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:8722:/ -89.6 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:827E:/ - -96.0 "Pandaemoniac Pillars" sync / 1[56]:[^:]*:Pand\u00e6monium:8280:/ -97.3 "Bury" sync / 1[56]:[^:]*:Pand\u00e6monium:8282:/ -102.9 "Pandaemon's Holy/Circles of Pandaemonium" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A6|82A7):/ -103.0 "Peal of Damnation" sync / 1[56]:[^:]*:Pand\u00e6moniac Pillar:87B0:/ - -108.4 "Silkspit (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:827C:/ -118.4 "Silkspit" sync / 1[56]:[^:]*:Pand\u00e6monium:827D:/ -122.8 "Daemoniac Bonds" sync / 1[56]:[^:]*:Pand\u00e6monium:82A1:/ -126.9 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:6854:/ -131.9 "Pandaemoniac Meltdown" sync / 1[56]:[^:]*:Pand\u00e6monium:829D:/ - -144.2 "Touchdown" sync / 1[56]:[^:]*:Pand\u00e6monium:828D:/ -145.8 "Daemoniac Bonds 1" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A2|82A3|87AE):/ -148.8 "Daemoniac Bonds 2" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A2|82A3|87AE):/ - -159.8 "Ultima" sync / 1[56]:[^:]*:Pand\u00e6monium:82A5:/ -168.9 "Soul Grasp x4" sync / 1[56]:[^:]*:Pand\u00e6monium:829F:/ duration 5.7 - -185.0 "Daemoniac Bonds" sync / 1[56]:[^:]*:Pand\u00e6monium:82A1:/ -194.1 "Pandaemoniac Turrets" sync / 1[56]:[^:]*:Pand\u00e6monium:87AF:/ -195.4 "Bury" sync / 1[56]:[^:]*:Pand\u00e6monium:8282:/ -206.1 "Peal of Condemnation 1" sync / 1[56]:[^:]*:Pand\u00e6moniac Pillar:8288:/ -210.7 "Peal of Condemnation 2" sync / 1[56]:[^:]*:Pand\u00e6moniac Pillar:8288:/ -215.1 "Peal of Condemnation 3" sync / 1[56]:[^:]*:Pand\u00e6moniac Pillar:8288:/ -219.7 "Peal of Condemnation 4" sync / 1[56]:[^:]*:Pand\u00e6moniac Pillar:8288:/ - -223.9 "Daemoniac Bonds 1" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A2|82A3|87AE):/ -226.9 "Daemoniac Bonds 2" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A2|82A3|87AE):/ -233.8 "Pandaemoniac Ray" sync / 1[56]:[^:]*:Pand\u00e6monium:(8289|828B):/ -237.6 "Jade Passage" sync / 1[56]:[^:]*:Arcane Sphere:828C:/ - -249.3 "Ultima" sync / 1[56]:[^:]*:Pand\u00e6monium:82A5:/ -258.4 "Soul Grasp x4" sync / 1[56]:[^:]*:Pand\u00e6monium:829F:/ duration 5.7 -277.5 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:8299:/ -278.6 "Wicked Step 1" sync / 1[56]:[^:]*:Pand\u00e6monium:829A:/ -281.0 "Wicked Step 2" sync / 1[56]:[^:]*:Pand\u00e6monium:829B:/ -288.7 "Entangling Web (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:8722:/ -298.9 "Silkspit (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:827C:/ -299.6 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:827E:/ - -308.0 "Daemoniac Bonds" sync / 1[56]:[^:]*:Pand\u00e6monium:82A1:/ -308.9 "Silkspit" sync / 1[56]:[^:]*:Pand\u00e6monium:827D:/ -316.2 "Pandaemoniac Pillars" sync / 1[56]:[^:]*:Pand\u00e6monium:8280:/ -317.5 "Bury" sync / 1[56]:[^:]*:Pand\u00e6monium:8282:/ -323.1 "Pandaemon's Holy/Circles of Pandaemonium" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A6|82A7):/ -323.2 "Peal of Damnation" sync / 1[56]:[^:]*:Pand\u00e6moniac Pillar:87B0:/ - -329.9 "Daemoniac Bonds 1" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A2|82A3|87AE):/ -330.6 "Pandaemoniac Ray" sync / 1[56]:[^:]*:Pand\u00e6monium:(8289|828B):/ -333.9 "Daemoniac Bonds 2" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A2|82A3|87AE):/ - -334.3 "Jade Passage" #sync / 1[56]:[^:]*:Arcane Sphere:828C:/ -338.6 "Dividing Wings" sync / 1[56]:[^:]*:Pand\u00e6monium:8297:/ -344.7 "Steel Web (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:8723:/ -356.8 "Touchdown" sync / 1[56]:[^:]*:Pand\u00e6monium:828D:/ -357.4 "Dividing Wings" sync / 1[56]:[^:]*:Pand\u00e6monium:8298:/ -357.7 "Steel Web" sync / 1[56]:[^:]*:Pand\u00e6monium:827F:/ -357.7 "Touchdown" sync / 1[56]:[^:]*:Pand\u00e6monium:828E:/ -370.3 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:6854:/ -375.3 "Pandaemoniac Meltdown" sync / 1[56]:[^:]*:Pand\u00e6monium:829D:/ -384.6 "Soul Grasp x4" sync / 1[56]:[^:]*:Pand\u00e6monium:829F:/ duration 5.7 - -405.0 "Dividing Wings" sync / 1[56]:[^:]*:Pand\u00e6monium:8297:/ -411.1 "Pandaemoniac Web (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:8724:/ -418.9 "Dividing Wings" sync / 1[56]:[^:]*:Pand\u00e6monium:8298:/ -419.1 "Steel Web" sync / 1[56]:[^:]*:Pand\u00e6monium:827F:/ -419.2 "Pandaemon's Holy" sync / 1[56]:[^:]*:Pand\u00e6monium:82A6:/ -422.1 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:827E:/ -426.4 "Daemoniac Bonds" sync / 1[56]:[^:]*:Pand\u00e6monium:82A1:/ -428.1 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:827E:/ - -437.8 "Harrowing Hell (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:828F:/ -438.8 "Harrowing Hell 1" sync / 1[56]:[^:]*:Pand\u00e6monium:8290:/ -440.8 "Harrowing Hell 2" sync / 1[56]:[^:]*:Pand\u00e6monium:8291:/ -442.6 "Harrowing Hell 3" sync / 1[56]:[^:]*:Pand\u00e6monium:8292:/ -444.3 "Harrowing Hell 4" sync / 1[56]:[^:]*:Pand\u00e6monium:8293:/ -446.0 "Harrowing Hell 5" sync / 1[56]:[^:]*:Pand\u00e6monium:86B9:/ -447.6 "Harrowing Hell 6" sync / 1[56]:[^:]*:Pand\u00e6monium:86BA:/ -448.9 "Harrowing Hell 7" sync / 1[56]:[^:]*:Pand\u00e6monium:86BB:/ -450.1 "Harrowing Hell 8" sync / 1[56]:[^:]*:Pand\u00e6monium:86BC:/ -454.0 "Harrowing Hell (knockback)" sync / 1[56]:[^:]*:Pand\u00e6monium:8294:/ - -459.3 "Daemoniac Bonds 1" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A2|82A3|87AE):/ -462.3 "Daemoniac Bonds 2" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A2|82A3|87AE):/ - -480.5 "Ultima" sync / 1[56]:[^:]*:Pand\u00e6monium:82A5:/ -490.6 "Soul Grasp x4" sync / 1[56]:[^:]*:Pand\u00e6monium:829F:/ duration 5.7 -512.9 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:8299:/ -514.0 "Wicked Step 1" sync / 1[56]:[^:]*:Pand\u00e6monium:829A:/ -516.4 "Wicked Step 2" sync / 1[56]:[^:]*:Pand\u00e6monium:829B:/ -523.1 "Entangling Web (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:8722:/ -534.1 "Entangling Web" sync / 1[56]:[^:]*:Pand\u00e6monium:827E:/ - -543.8 "Parted Plumes" sync / 1[56]:[^:]*:Pand\u00e6monium:8295:/ duration 10 - -555.9 "Pandaemoniac Ray" sync / 1[56]:[^:]*:Pand\u00e6monium:(8289|828B):/ - -559.7 "Jade Passage" sync / 1[56]:[^:]*:Arcane Sphere:828C:/ -563.0 "Pandaemon's Holy/Circles of Pandaemonium" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A6|82A7):/ -569.1 "Silkspit (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:827C:/ -579.1 "Silkspit" sync / 1[56]:[^:]*:Pand\u00e6monium:827D:/ - -586.4 "Pandaemoniac Pillars" sync / 1[56]:[^:]*:Pand\u00e6monium:8280:/ -587.3 "Bury" sync / 1[56]:[^:]*:Pand\u00e6moniac Pillar:8281:/ -593.3 "Pandaemon's Holy/Circles of Pandaemonium" sync / 1[56]:[^:]*:Pand\u00e6monium:(82A6|82A7):/ -593.4 "Peal of Damnation" sync / 1[56]:[^:]*:Pand\u00e6moniac Pillar:87B0:/ - -595.8 "--sync--" sync / 1[56]:[^:]*:Pand\u00e6monium:6854:/ -600.8 "Pandaemoniac Meltdown" sync / 1[56]:[^:]*:Pand\u00e6monium:829D:/ - -623.5 "Harrowing Hell (cast)" sync / 1[56]:[^:]*:Pand\u00e6monium:828F:/ -624.5 "Harrowing Hell 1" sync / 1[56]:[^:]*:Pand\u00e6monium:8290:/ -626.5 "Harrowing Hell 2" sync / 1[56]:[^:]*:Pand\u00e6monium:8291:/ -628.3 "Harrowing Hell 3" sync / 1[56]:[^:]*:Pand\u00e6monium:8292:/ -630.0 "Harrowing Hell 4" sync / 1[56]:[^:]*:Pand\u00e6monium:8293:/ -631.7 "Harrowing Hell 5" sync / 1[56]:[^:]*:Pand\u00e6monium:86B9:/ -633.3 "Harrowing Hell 6" sync / 1[56]:[^:]*:Pand\u00e6monium:86BA:/ -634.6 "Harrowing Hell 7" sync / 1[56]:[^:]*:Pand\u00e6monium:86BB:/ -635.8 "Harrowing Hell 8" sync / 1[56]:[^:]*:Pand\u00e6monium:86BC:/ -639.7 "Harrowing Hell (enrage)" sync / 1[56]:[^:]*:Pand\u00e6monium:8294:/ +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 + +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.1 "--sync--" StartsUsing { id: "82A5", source: "Pand\\u00e6monium" } window 15,15 +14.1 "Ultima" Ability { id: "82A5", source: "Pand\\u00e6monium" } +23.2 "Soul Grasp x4" Ability { id: "829F", source: "Pand\\u00e6monium" } duration 5.7 +34.7 "Dividing Wings (cast)" Ability { id: "8297", source: "Pand\\u00e6monium" } +40.8 "Steel Web (cast)" Ability { id: "8723", source: "Pand\\u00e6monium" } +48.5 "Dividing Wings (cone)" Ability { id: "8298", source: "Pand\\u00e6monium" } +48.7 "Steel Web (share)" Ability { id: "827F", source: "Pand\\u00e6monium" } +58.7 "Pandaemon's Holy/Circles of Pandaemonium" Ability { id: ["82A6", "82A7"], source: "Pand\\u00e6monium" } +67.4 "--sync--" Ability { id: "8299", source: "Pand\\u00e6monium" } +68.5 "Wicked Step 1" Ability { id: "829A", source: "Pand\\u00e6monium" } +70.9 "Wicked Step 2" Ability { id: "829B", source: "Pand\\u00e6monium" } +78.6 "Entangling Web (cast)" Ability { id: "8722", source: "Pand\\u00e6monium" } +89.6 "Entangling Web" Ability { id: "827E", source: "Pand\\u00e6monium" } + +96.0 "Pandaemoniac Pillars" Ability { id: "8280", source: "Pand\\u00e6monium" } +97.3 "Bury" Ability { id: "8282", source: "Pand\\u00e6monium" } +102.9 "Pandaemon's Holy/Circles of Pandaemonium" Ability { id: ["82A6", "82A7"], source: "Pand\\u00e6monium" } +103.0 "Peal of Damnation" Ability { id: "87B0", source: "Pand\\u00e6moniac Pillar" } + +108.4 "Silkspit (cast)" Ability { id: "827C", source: "Pand\\u00e6monium" } +118.4 "Silkspit" Ability { id: "827D", source: "Pand\\u00e6monium" } +122.8 "Daemoniac Bonds" Ability { id: "82A1", source: "Pand\\u00e6monium" } +126.9 "--sync--" Ability { id: "6854", source: "Pand\\u00e6monium" } +131.9 "Pandaemoniac Meltdown" Ability { id: "829D", source: "Pand\\u00e6monium" } + +144.2 "Touchdown" Ability { id: "828D", source: "Pand\\u00e6monium" } +145.8 "Daemoniac Bonds 1" Ability { id: ["82A2", "82A3", "87AE"], source: "Pand\\u00e6monium" } +148.8 "Daemoniac Bonds 2" Ability { id: ["82A2", "82A3", "87AE"], source: "Pand\\u00e6monium" } + +159.8 "Ultima" Ability { id: "82A5", source: "Pand\\u00e6monium" } +168.9 "Soul Grasp x4" Ability { id: "829F", source: "Pand\\u00e6monium" } duration 5.7 + +185.0 "Daemoniac Bonds" Ability { id: "82A1", source: "Pand\\u00e6monium" } +194.1 "Pandaemoniac Turrets" Ability { id: "87AF", source: "Pand\\u00e6monium" } +195.4 "Bury" Ability { id: "8282", source: "Pand\\u00e6monium" } +206.1 "Peal of Condemnation 1" Ability { id: "8288", source: "Pand\\u00e6moniac Pillar" } +210.7 "Peal of Condemnation 2" Ability { id: "8288", source: "Pand\\u00e6moniac Pillar" } +215.1 "Peal of Condemnation 3" Ability { id: "8288", source: "Pand\\u00e6moniac Pillar" } +219.7 "Peal of Condemnation 4" Ability { id: "8288", source: "Pand\\u00e6moniac Pillar" } + +223.9 "Daemoniac Bonds 1" Ability { id: ["82A2", "82A3", "87AE"], source: "Pand\\u00e6monium" } +226.9 "Daemoniac Bonds 2" Ability { id: ["82A2", "82A3", "87AE"], source: "Pand\\u00e6monium" } +233.8 "Pandaemoniac Ray" Ability { id: ["8289", "828B"], source: "Pand\\u00e6monium" } +237.6 "Jade Passage" Ability { id: "828C", source: "Arcane Sphere" } + +249.3 "Ultima" Ability { id: "82A5", source: "Pand\\u00e6monium" } +258.4 "Soul Grasp x4" Ability { id: "829F", source: "Pand\\u00e6monium" } duration 5.7 +277.5 "--sync--" Ability { id: "8299", source: "Pand\\u00e6monium" } +278.6 "Wicked Step 1" Ability { id: "829A", source: "Pand\\u00e6monium" } +281.0 "Wicked Step 2" Ability { id: "829B", source: "Pand\\u00e6monium" } +288.7 "Entangling Web (cast)" Ability { id: "8722", source: "Pand\\u00e6monium" } +298.9 "Silkspit (cast)" Ability { id: "827C", source: "Pand\\u00e6monium" } +299.6 "Entangling Web" Ability { id: "827E", source: "Pand\\u00e6monium" } + +308.0 "Daemoniac Bonds" Ability { id: "82A1", source: "Pand\\u00e6monium" } +308.9 "Silkspit" Ability { id: "827D", source: "Pand\\u00e6monium" } +316.2 "Pandaemoniac Pillars" Ability { id: "8280", source: "Pand\\u00e6monium" } +317.5 "Bury" Ability { id: "8282", source: "Pand\\u00e6monium" } +323.1 "Pandaemon's Holy/Circles of Pandaemonium" Ability { id: ["82A6", "82A7"], source: "Pand\\u00e6monium" } +323.2 "Peal of Damnation" Ability { id: "87B0", source: "Pand\\u00e6moniac Pillar" } + +329.9 "Daemoniac Bonds 1" Ability { id: ["82A2", "82A3", "87AE"], source: "Pand\\u00e6monium" } +330.6 "Pandaemoniac Ray" Ability { id: ["8289", "828B"], source: "Pand\\u00e6monium" } +333.9 "Daemoniac Bonds 2" Ability { id: ["82A2", "82A3", "87AE"], source: "Pand\\u00e6monium" } + +334.3 "Jade Passage" #Ability { id: "828C", source: "Arcane Sphere" } +338.6 "Dividing Wings" Ability { id: "8297", source: "Pand\\u00e6monium" } +344.7 "Steel Web (cast)" Ability { id: "8723", source: "Pand\\u00e6monium" } +356.8 "Touchdown" Ability { id: "828D", source: "Pand\\u00e6monium" } +357.4 "Dividing Wings" Ability { id: "8298", source: "Pand\\u00e6monium" } +357.7 "Steel Web" Ability { id: "827F", source: "Pand\\u00e6monium" } +357.7 "Touchdown" Ability { id: "828E", source: "Pand\\u00e6monium" } +370.3 "--sync--" Ability { id: "6854", source: "Pand\\u00e6monium" } +375.3 "Pandaemoniac Meltdown" Ability { id: "829D", source: "Pand\\u00e6monium" } +384.6 "Soul Grasp x4" Ability { id: "829F", source: "Pand\\u00e6monium" } duration 5.7 + +405.0 "Dividing Wings" Ability { id: "8297", source: "Pand\\u00e6monium" } +411.1 "Pandaemoniac Web (cast)" Ability { id: "8724", source: "Pand\\u00e6monium" } +418.9 "Dividing Wings" Ability { id: "8298", source: "Pand\\u00e6monium" } +419.1 "Steel Web" Ability { id: "827F", source: "Pand\\u00e6monium" } +419.2 "Pandaemon's Holy" Ability { id: "82A6", source: "Pand\\u00e6monium" } +422.1 "Entangling Web" Ability { id: "827E", source: "Pand\\u00e6monium" } +426.4 "Daemoniac Bonds" Ability { id: "82A1", source: "Pand\\u00e6monium" } +428.1 "Entangling Web" Ability { id: "827E", source: "Pand\\u00e6monium" } + +437.8 "Harrowing Hell (cast)" Ability { id: "828F", source: "Pand\\u00e6monium" } +438.8 "Harrowing Hell 1" Ability { id: "8290", source: "Pand\\u00e6monium" } +440.8 "Harrowing Hell 2" Ability { id: "8291", source: "Pand\\u00e6monium" } +442.6 "Harrowing Hell 3" Ability { id: "8292", source: "Pand\\u00e6monium" } +444.3 "Harrowing Hell 4" Ability { id: "8293", source: "Pand\\u00e6monium" } +446.0 "Harrowing Hell 5" Ability { id: "86B9", source: "Pand\\u00e6monium" } +447.6 "Harrowing Hell 6" Ability { id: "86BA", source: "Pand\\u00e6monium" } +448.9 "Harrowing Hell 7" Ability { id: "86BB", source: "Pand\\u00e6monium" } +450.1 "Harrowing Hell 8" Ability { id: "86BC", source: "Pand\\u00e6monium" } +454.0 "Harrowing Hell (knockback)" Ability { id: "8294", source: "Pand\\u00e6monium" } + +459.3 "Daemoniac Bonds 1" Ability { id: ["82A2", "82A3", "87AE"], source: "Pand\\u00e6monium" } +462.3 "Daemoniac Bonds 2" Ability { id: ["82A2", "82A3", "87AE"], source: "Pand\\u00e6monium" } + +480.5 "Ultima" Ability { id: "82A5", source: "Pand\\u00e6monium" } +490.6 "Soul Grasp x4" Ability { id: "829F", source: "Pand\\u00e6monium" } duration 5.7 +512.9 "--sync--" Ability { id: "8299", source: "Pand\\u00e6monium" } +514.0 "Wicked Step 1" Ability { id: "829A", source: "Pand\\u00e6monium" } +516.4 "Wicked Step 2" Ability { id: "829B", source: "Pand\\u00e6monium" } +523.1 "Entangling Web (cast)" Ability { id: "8722", source: "Pand\\u00e6monium" } +534.1 "Entangling Web" Ability { id: "827E", source: "Pand\\u00e6monium" } + +543.8 "Parted Plumes" Ability { id: "8295", source: "Pand\\u00e6monium" } duration 10 + +555.9 "Pandaemoniac Ray" Ability { id: ["8289", "828B"], source: "Pand\\u00e6monium" } + +559.7 "Jade Passage" Ability { id: "828C", source: "Arcane Sphere" } +563.0 "Pandaemon's Holy/Circles of Pandaemonium" Ability { id: ["82A6", "82A7"], source: "Pand\\u00e6monium" } +569.1 "Silkspit (cast)" Ability { id: "827C", source: "Pand\\u00e6monium" } +579.1 "Silkspit" Ability { id: "827D", source: "Pand\\u00e6monium" } + +586.4 "Pandaemoniac Pillars" Ability { id: "8280", source: "Pand\\u00e6monium" } +587.3 "Bury" Ability { id: "8281", source: "Pand\\u00e6moniac Pillar" } +593.3 "Pandaemon's Holy/Circles of Pandaemonium" Ability { id: ["82A6", "82A7"], source: "Pand\\u00e6monium" } +593.4 "Peal of Damnation" Ability { id: "87B0", source: "Pand\\u00e6moniac Pillar" } + +595.8 "--sync--" Ability { id: "6854", source: "Pand\\u00e6monium" } +600.8 "Pandaemoniac Meltdown" Ability { id: "829D", source: "Pand\\u00e6monium" } + +623.5 "Harrowing Hell (cast)" Ability { id: "828F", source: "Pand\\u00e6monium" } +624.5 "Harrowing Hell 1" Ability { id: "8290", source: "Pand\\u00e6monium" } +626.5 "Harrowing Hell 2" Ability { id: "8291", source: "Pand\\u00e6monium" } +628.3 "Harrowing Hell 3" Ability { id: "8292", source: "Pand\\u00e6monium" } +630.0 "Harrowing Hell 4" Ability { id: "8293", source: "Pand\\u00e6monium" } +631.7 "Harrowing Hell 5" Ability { id: "86B9", source: "Pand\\u00e6monium" } +633.3 "Harrowing Hell 6" Ability { id: "86BA", source: "Pand\\u00e6monium" } +634.6 "Harrowing Hell 7" Ability { id: "86BB", source: "Pand\\u00e6monium" } +635.8 "Harrowing Hell 8" Ability { id: "86BC", source: "Pand\\u00e6monium" } +639.7 "Harrowing Hell (enrage)" Ability { id: "8294", source: "Pand\\u00e6monium" } diff --git a/ui/raidboss/data/06-ew/raid/p11n.txt b/ui/raidboss/data/06-ew/raid/p11n.txt index 961d0bd1be..ec23ebcf19 100644 --- a/ui/raidboss/data/06-ew/raid/p11n.txt +++ b/ui/raidboss/data/06-ew/raid/p11n.txt @@ -22,123 +22,123 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.4 "--sync--" sync / 14:[^:]*:Themis:81E2:/ window 7.4,10 -12.1 "Eunomia" sync / 1[56]:[^:]*:Themis:81E2:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.4 "--sync--" StartsUsing { id: "81E2", source: "Themis" } window 7.4,10 +12.1 "Eunomia" Ability { id: "81E2", source: "Themis" } # Divisive Ruling Intro -16.2 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ -25.5 "Divisive Ruling (in)" sync / 1[56]:[^:]*:Themis:81B5:/ -28.2 "Ripples of Gloom" sync / 1[56]:[^:]*:Themis:(81B7|81B8):/ -37.8 "Divisive Ruling (out)" sync / 1[56]:[^:]*:Themis:81B5:/ -40.4 "Divine Ruination" sync / 1[56]:[^:]*:Themis:81B6:/ -50.1 "Divisive Ruling (random)" sync / 1[56]:[^:]*:Themis:81B5:/ -52.7 "Divine Ruination/Ripples of Gloom" sync / 1[56]:[^:]*:Themis:(81B6|81B7|81B8):/ -60.9 "Eunomia" sync / 1[56]:[^:]*:Themis:81E2:/ +16.2 "--center--" Ability { id: "8235", source: "Themis" } +25.5 "Divisive Ruling (in)" Ability { id: "81B5", source: "Themis" } +28.2 "Ripples of Gloom" Ability { id: ["81B7", "81B8"], source: "Themis" } +37.8 "Divisive Ruling (out)" Ability { id: "81B5", source: "Themis" } +40.4 "Divine Ruination" Ability { id: "81B6", source: "Themis" } +50.1 "Divisive Ruling (random)" Ability { id: "81B5", source: "Themis" } +52.7 "Divine Ruination/Ripples of Gloom" Ability { id: ["81B6", "81B7", "81B8"], source: "Themis" } +60.9 "Eunomia" Ability { id: "81E2", source: "Themis" } # Dark and Light Intro -67.0 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ window 30,30 -73.1 "Dark and Light" sync / 1[56]:[^:]*:Themis:81C3:/ -80.2 "Sigils of Discord" sync / 1[56]:[^:]*:Themis:81C4:/ window 80.2,15 -90.3 "Dineis (cast)" sync / 1[56]:[^:]*:Themis:8725:/ -94.3 "Dineis (puddle 1)" #sync / 1[56]:[^:]*:Themis:8726:/ -96.3 "Dineis (puddle 2)" #sync / 1[56]:[^:]*:Themis:8726:/ -100.3 "Emissary's Will" sync / 1[56]:[^:]*:Themis:81C7:/ -112.4 "Dismissal Ruling (dynamo)" sync / 1[56]:[^:]*:Themis:81FB:/ -116.0 "Outer Dark" sync / 1[56]:[^:]*:Themis:86F4:/ -123.1 "Dismissal Ruling (chariot)" sync / 1[56]:[^:]*:Themis:81FA:/ -126.7 "Inner Light" sync / 1[56]:[^:]*:Themis:86F3:/ -132.8 "Dike" sync / 1[56]:[^:]*:Themis:81E3:/ +67.0 "--center--" Ability { id: "8235", source: "Themis" } window 30,30 +73.1 "Dark and Light" Ability { id: "81C3", source: "Themis" } +80.2 "Sigils of Discord" Ability { id: "81C4", source: "Themis" } window 80.2,15 +90.3 "Dineis (cast)" Ability { id: "8725", source: "Themis" } +94.3 "Dineis (puddle 1)" #Ability { id: "8726", source: "Themis" } +96.3 "Dineis (puddle 2)" #Ability { id: "8726", source: "Themis" } +100.3 "Emissary's Will" Ability { id: "81C7", source: "Themis" } +112.4 "Dismissal Ruling (dynamo)" Ability { id: "81FB", source: "Themis" } +116.0 "Outer Dark" Ability { id: "86F4", source: "Themis" } +123.1 "Dismissal Ruling (chariot)" Ability { id: "81FA", source: "Themis" } +126.7 "Inner Light" Ability { id: "86F3", source: "Themis" } +132.8 "Dike" Ability { id: "81E3", source: "Themis" } # Upheld Ruling Intro -138.0 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ -144.1 "Dark and Light" sync / 1[56]:[^:]*:Themis:81C3:/ -151.2 "Sigils of Discord" sync / 1[56]:[^:]*:Themis:81C4:/ -164.3 "Dismissal Ruling (random)" sync / 1[56]:[^:]*:Themis:(81FA|81FB):/ -167.9 "Inner Light/Outer Dark" sync / 1[56]:[^:]*:Themis:(86F3|86F4):/ -174.0 "Emissary's Will" sync / 1[56]:[^:]*:Themis:81C7:/ -186.4 "Upheld Ruling (cleave -> dynamo)" sync / 1[56]:[^:]*:Themis:81BA:/ window 186.4,10 -193.0 "Dark Perimeter" sync / 1[56]:[^:]*:Themis:81BE:/ -201.0 "Upheld Ruling (stack -> chariot)" sync / 1[56]:[^:]*:Themis:81B9:/ -206.7 "Lightburst" sync / 1[56]:[^:]*:Themis:81BD:/ -216.3 "Styx x5" sync / 1[56]:[^:]*:Themis:81DB:/ window 216.3,10 duration 5 +138.0 "--center--" Ability { id: "8235", source: "Themis" } +144.1 "Dark and Light" Ability { id: "81C3", source: "Themis" } +151.2 "Sigils of Discord" Ability { id: "81C4", source: "Themis" } +164.3 "Dismissal Ruling (random)" Ability { id: ["81FA", "81FB"], source: "Themis" } +167.9 "Inner Light/Outer Dark" Ability { id: ["86F3", "86F4"], source: "Themis" } +174.0 "Emissary's Will" Ability { id: "81C7", source: "Themis" } +186.4 "Upheld Ruling (cleave -> dynamo)" Ability { id: "81BA", source: "Themis" } window 186.4,10 +193.0 "Dark Perimeter" Ability { id: "81BE", source: "Themis" } +201.0 "Upheld Ruling (stack -> chariot)" Ability { id: "81B9", source: "Themis" } +206.7 "Lightburst" Ability { id: "81BD", source: "Themis" } +216.3 "Styx x5" Ability { id: "81DB", source: "Themis" } window 216.3,10 duration 5 # Combine it all to this point -228.0 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ window 30,30 -235.3 "Dark and Light" sync / 1[56]:[^:]*:Themis:81C3:/ -242.4 "Sigils of Discord" sync / 1[56]:[^:]*:Themis:81C4:/ -256.5 "Divisive Ruling (in/out)" sync / 1[56]:[^:]*:Themis:81B5:/ -259.1 "Divine Ruination/Ripples of Gloom" sync / 1[56]:[^:]*:Themis:(81B6|81B7|81B8):/ -271.3 "Dismissal Ruling (random)" sync / 1[56]:[^:]*:Themis:(81FA|81FB):/ -274.9 "Inner Light/Outer Dark" sync / 1[56]:[^:]*:Themis:(86F3|86F4):/ -281.0 "Emissary's Will" sync / 1[56]:[^:]*:Themis:81C7:/ -290.1 "Dike" sync / 1[56]:[^:]*:Themis:81E3:/ -297.3 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ window 30,30 -302.3 "Dineis (cast)" sync / 1[56]:[^:]*:Themis:8725:/ -306.3 "Dineis (puddle 1)" #sync / 1[56]:[^:]*:Themis:8726:/ -308.3 "Dineis (puddle 2)" #sync / 1[56]:[^:]*:Themis:8726:/ -311.7 "Divisive Ruling (in/out)" sync / 1[56]:[^:]*:Themis:81B5:/ -314.3 "Divine Ruination/Ripples of Gloom" sync / 1[56]:[^:]*:Themis:(81B6|81B7|81B8):/ -322.7 "Upheld Ruling (random)" sync / 1[56]:[^:]*:Themis:(81B9|81BA):/ -329.3 "Dark Perimeter/Lightburst" sync / 1[56]:[^:]*:Themis:(81BE|81BD):/ -336.9 "Eunomia" sync / 1[56]:[^:]*:Themis:81E2:/ -346.1 "Shadowed Messengers" sync / 1[56]:[^:]*:Themis:81D4:/ +228.0 "--center--" Ability { id: "8235", source: "Themis" } window 30,30 +235.3 "Dark and Light" Ability { id: "81C3", source: "Themis" } +242.4 "Sigils of Discord" Ability { id: "81C4", source: "Themis" } +256.5 "Divisive Ruling (in/out)" Ability { id: "81B5", source: "Themis" } +259.1 "Divine Ruination/Ripples of Gloom" Ability { id: ["81B6", "81B7", "81B8"], source: "Themis" } +271.3 "Dismissal Ruling (random)" Ability { id: ["81FA", "81FB"], source: "Themis" } +274.9 "Inner Light/Outer Dark" Ability { id: ["86F3", "86F4"], source: "Themis" } +281.0 "Emissary's Will" Ability { id: "81C7", source: "Themis" } +290.1 "Dike" Ability { id: "81E3", source: "Themis" } +297.3 "--center--" Ability { id: "8235", source: "Themis" } window 30,30 +302.3 "Dineis (cast)" Ability { id: "8725", source: "Themis" } +306.3 "Dineis (puddle 1)" #Ability { id: "8726", source: "Themis" } +308.3 "Dineis (puddle 2)" #Ability { id: "8726", source: "Themis" } +311.7 "Divisive Ruling (in/out)" Ability { id: "81B5", source: "Themis" } +314.3 "Divine Ruination/Ripples of Gloom" Ability { id: ["81B6", "81B7", "81B8"], source: "Themis" } +322.7 "Upheld Ruling (random)" Ability { id: ["81B9", "81BA"], source: "Themis" } +329.3 "Dark Perimeter/Lightburst" Ability { id: ["81BE", "81BD"], source: "Themis" } +336.9 "Eunomia" Ability { id: "81E2", source: "Themis" } +346.1 "Shadowed Messengers" Ability { id: "81D4", source: "Themis" } # Camera-spinny Adds -356.8 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ window 15,15 -357.6 "Divisive Ruling" sync / 1[56]:[^:]*:Illusory Themis:81D7:/ -360.7 "Divine Ruination" sync / 1[56]:[^:]*:Illusory Themis:81D8:/ -360.7 "Ripples of Gloom" sync / 1[56]:[^:]*:Illusory Themis:(81D9|81DA):/ -361.8 "--sync--" sync / 1[56]:[^:]*:Themis:81E0:/ window 361.8,10 # Blinding Light cast -367.0 "Blinding Light" sync / 1[56]:[^:]*:Themis:81E1:/ -372.0 "Dismissal Ruling (random)" sync / 1[56]:[^:]*:Themis:(81FA|81FB):/ -375.6 "Inner Light/Outer Dark" sync / 1[56]:[^:]*:Themis:(86F3|86F4):/ -380.7 "Styx x5" sync / 1[56]:[^:]*:Themis:81DB:/ duration 5 +356.8 "--center--" Ability { id: "8235", source: "Themis" } window 15,15 +357.6 "Divisive Ruling" Ability { id: "81D7", source: "Illusory Themis" } +360.7 "Divine Ruination" Ability { id: "81D8", source: "Illusory Themis" } +360.7 "Ripples of Gloom" Ability { id: ["81D9", "81DA"], source: "Illusory Themis" } +361.8 "--sync--" Ability { id: "81E0", source: "Themis" } window 361.8,10 # Blinding Light cast +367.0 "Blinding Light" Ability { id: "81E1", source: "Themis" } +372.0 "Dismissal Ruling (random)" Ability { id: ["81FA", "81FB"], source: "Themis" } +375.6 "Inner Light/Outer Dark" Ability { id: ["86F3", "86F4"], source: "Themis" } +380.7 "Styx x5" Ability { id: "81DB", source: "Themis" } duration 5 # Loop until death (208.2) -391.4 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ window 15,15 -396.4 "Dineis (cast)" sync / 1[56]:[^:]*:Themis:8725:/ -400.4 "Dineis (puddle 1)" #sync / 1[56]:[^:]*:Themis:8726:/ -402.4 "Dineis (puddle 2)" #sync / 1[56]:[^:]*:Themis:8726:/ -406.0 "Divisive Ruling (in/out)" sync / 1[56]:[^:]*:Themis:81B5:/ -408.6 "Divine Ruination/Ripples of Gloom" sync / 1[56]:[^:]*:Themis:(81B6|81B7|81B8):/ -417.3 "Upheld Ruling (random)" sync / 1[56]:[^:]*:Themis:(81B9|81BA):/ -423.0 "Dark Perimeter/Lightburst" sync / 1[56]:[^:]*:Themis:(81BE|81BD):/ -431.6 "Eunomia" sync / 1[56]:[^:]*:Themis:81E2:/ -436.8 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ window 30,30 -444.0 "Dark and Light" sync / 1[56]:[^:]*:Themis:81C3:/ -451.1 "Sigils of Discord" sync / 1[56]:[^:]*:Themis:81C4:/ -465.1 "Divisive Ruling (in/out)" sync / 1[56]:[^:]*:Themis:81B5:/ -467.7 "Divine Ruination/Ripples of Gloom" sync / 1[56]:[^:]*:Themis:(81B6|81B7|81B8):/ -479.9 "Dismissal Ruling (random)" sync / 1[56]:[^:]*:Themis:(81FA|81FB):/ -483.5 "Inner Light/Outer Dark" sync / 1[56]:[^:]*:Themis:(86F3|86F4):/ -489.6 "Emissary's Will" sync / 1[56]:[^:]*:Themis:81C7:/ -498.7 "Dike" sync / 1[56]:[^:]*:Themis:81E3:/ -505.9 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ window 30,30 -510.9 "Dineis (cast)" sync / 1[56]:[^:]*:Themis:8725:/ -514.9 "Dineis" #sync / 1[56]:[^:]*:Themis:8726:/ -516.9 "Dineis" #sync / 1[56]:[^:]*:Themis:8726:/ -520.3 "Divisive Ruling (in/out)" sync / 1[56]:[^:]*:Themis:81B5:/ -522.9 "Divine Ruination/Ripples of Gloom" sync / 1[56]:[^:]*:Themis:(81B6|81B7|81B8):/ -531.5 "Upheld Ruling (random)" sync / 1[56]:[^:]*:Themis:(81B9|81BA):/ -537.2 "Dark Perimeter/Lightburst" sync / 1[56]:[^:]*:Themis:(81BE|81BD):/ -545.6 "Eunomia" sync / 1[56]:[^:]*:Themis:81E2:/ -554.7 "Shadowed Messengers" sync / 1[56]:[^:]*:Themis:81D4:/ -565.4 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ -566.1 "Divisive Ruling" sync / 1[56]:[^:]*:Illusory Themis:81D7:/ -569.2 "Divine Ruination" sync / 1[56]:[^:]*:Illusory Themis:81D8:/ -569.2 "Ripples of Gloom" sync / 1[56]:[^:]*:Illusory Themis:(81D9|81DA):/ -570.3 "--sync--" sync / 1[56]:[^:]*:Themis:81E0:/ # Blinding Light cast -575.5 "Blinding Light" sync / 1[56]:[^:]*:Themis:81E1:/ -580.5 "Dismissal Ruling (random)" sync / 1[56]:[^:]*:Themis:(81FA|81FB):/ -584.1 "Inner Light/Outer Dark" sync / 1[56]:[^:]*:Themis:(86F3|86F4):/ -589.2 "Styx x5" sync / 1[56]:[^:]*:Themis:81DB:/ duration 5 +391.4 "--center--" Ability { id: "8235", source: "Themis" } window 15,15 +396.4 "Dineis (cast)" Ability { id: "8725", source: "Themis" } +400.4 "Dineis (puddle 1)" #Ability { id: "8726", source: "Themis" } +402.4 "Dineis (puddle 2)" #Ability { id: "8726", source: "Themis" } +406.0 "Divisive Ruling (in/out)" Ability { id: "81B5", source: "Themis" } +408.6 "Divine Ruination/Ripples of Gloom" Ability { id: ["81B6", "81B7", "81B8"], source: "Themis" } +417.3 "Upheld Ruling (random)" Ability { id: ["81B9", "81BA"], source: "Themis" } +423.0 "Dark Perimeter/Lightburst" Ability { id: ["81BE", "81BD"], source: "Themis" } +431.6 "Eunomia" Ability { id: "81E2", source: "Themis" } +436.8 "--center--" Ability { id: "8235", source: "Themis" } window 30,30 +444.0 "Dark and Light" Ability { id: "81C3", source: "Themis" } +451.1 "Sigils of Discord" Ability { id: "81C4", source: "Themis" } +465.1 "Divisive Ruling (in/out)" Ability { id: "81B5", source: "Themis" } +467.7 "Divine Ruination/Ripples of Gloom" Ability { id: ["81B6", "81B7", "81B8"], source: "Themis" } +479.9 "Dismissal Ruling (random)" Ability { id: ["81FA", "81FB"], source: "Themis" } +483.5 "Inner Light/Outer Dark" Ability { id: ["86F3", "86F4"], source: "Themis" } +489.6 "Emissary's Will" Ability { id: "81C7", source: "Themis" } +498.7 "Dike" Ability { id: "81E3", source: "Themis" } +505.9 "--center--" Ability { id: "8235", source: "Themis" } window 30,30 +510.9 "Dineis (cast)" Ability { id: "8725", source: "Themis" } +514.9 "Dineis" #Ability { id: "8726", source: "Themis" } +516.9 "Dineis" #Ability { id: "8726", source: "Themis" } +520.3 "Divisive Ruling (in/out)" Ability { id: "81B5", source: "Themis" } +522.9 "Divine Ruination/Ripples of Gloom" Ability { id: ["81B6", "81B7", "81B8"], source: "Themis" } +531.5 "Upheld Ruling (random)" Ability { id: ["81B9", "81BA"], source: "Themis" } +537.2 "Dark Perimeter/Lightburst" Ability { id: ["81BE", "81BD"], source: "Themis" } +545.6 "Eunomia" Ability { id: "81E2", source: "Themis" } +554.7 "Shadowed Messengers" Ability { id: "81D4", source: "Themis" } +565.4 "--center--" Ability { id: "8235", source: "Themis" } +566.1 "Divisive Ruling" Ability { id: "81D7", source: "Illusory Themis" } +569.2 "Divine Ruination" Ability { id: "81D8", source: "Illusory Themis" } +569.2 "Ripples of Gloom" Ability { id: ["81D9", "81DA"], source: "Illusory Themis" } +570.3 "--sync--" Ability { id: "81E0", source: "Themis" } # Blinding Light cast +575.5 "Blinding Light" Ability { id: "81E1", source: "Themis" } +580.5 "Dismissal Ruling (random)" Ability { id: ["81FA", "81FB"], source: "Themis" } +584.1 "Inner Light/Outer Dark" Ability { id: ["86F3", "86F4"], source: "Themis" } +589.2 "Styx x5" Ability { id: "81DB", source: "Themis" } duration 5 -599.6 "--center--" sync / 1[56]:[^:]*:Themis:8235:/ jump 391.4 window 30,30 +599.6 "--center--" Ability { id: "8235", source: "Themis" } jump 391.4 window 30,30 604.6 "Dineis (cast)" 608.6 "Dineis (puddle 1)" 610.6 "Dineis (puddle 2)" diff --git a/ui/raidboss/data/06-ew/raid/p11s.txt b/ui/raidboss/data/06-ew/raid/p11s.txt index c41538e4dd..855952388d 100644 --- a/ui/raidboss/data/06-ew/raid/p11s.txt +++ b/ui/raidboss/data/06-ew/raid/p11s.txt @@ -4,120 +4,120 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 - -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.0 "--sync--" sync / 14:[^:]*:Themis:822B:/ window 12,10 -16.0 "Eunomia" sync / 1[56]:[^:]*:Themis:822B:/ -26.1 "Dike 1" sync / 1[56]:[^:]*:Themis:822D:/ -29.2 "Dike 2" sync / 1[56]:[^:]*:Themis:822E:/ - -42.3 "Jury Overruling" sync / 1[56]:[^:]*:Themis:(81E6|81E7):/ -48.3 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -61.7 "Upheld Overruling" sync / 1[56]:[^:]*:Themis:(87D3|87D4):/ -66.3 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -70.3 "--middle--" sync / 1[56]:[^:]*:Themis:867F:/ -79.9 "Divisive Overruling" sync / 1[56]:[^:]*:Themis:(81EC|81ED):/ -84.5 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -93.7 "Styx x5" sync / 1[56]:[^:]*:Themis:8217:/ duration 4.4 - -105.2 "--middle--" sync / 1[56]:[^:]*:Themis:867F:/ -113.3 "Arcane Revelation" sync / 1[56]:[^:]*:Themis:(820D|820E):/ -120.4 "Dismissal Overruling" sync / 1[56]:[^:]*:Themis:(8784|8785):/ -122.8 "Arche" sync / 1[56]:[^:]*:Arcane Sphere:(8213|8214):/ -125.8 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -145.5 "--middle--" sync / 1[56]:[^:]*:Themis:867F:/ -152.6 "Shadowed Messengers" sync / 1[56]:[^:]*:Themis:8219:/ -166.9 "Divisive Ruling" sync / 1[56]:[^:]*:Illusory Themis:821C:/ -169.6 "Divisive Overruling" sync / 1[56]:[^:]*:Themis:(87B3|87B4):/ -174.1 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ -179.5 "Upheld Ruling" sync / 1[56]:[^:]*:Illusory Themis:8221:/ -183.5 "Lightburst" sync / 1[56]:[^:]*:Illusory Themis:8224:/ -183.5 "Dark Perimeter" sync / 1[56]:[^:]*:Illusory Themis:8225:/ - -189.2 "Jury Overruling" sync / 1[56]:[^:]*:Themis:(81E6|81E7):/ -195.2 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -203.3 "Styx x6" sync / 1[56]:[^:]*:Themis:8217:/ duration 5.5 - -220.9 "Lightstream (cast)" sync / 1[56]:[^:]*:Themis:8203:/ -230.6 "--sync--" sync / 1[56]:[^:]*:Themis:867F:/ -233.2 "Lightstream x7" sync / 1[56]:[^:]*:Arcane Cylinder:8207:/ duration 6.1 - -240.1 "Divisive Overruling" sync / 1[56]:[^:]*:Themis:(81EC|81ED):/ -244.7 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -256.8 "Eunomia" sync / 1[56]:[^:]*:Themis:822B:/ -271.2 "Upheld Overruling" sync / 1[56]:[^:]*:Themis:(87D3|87D4):/ -275.6 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -286.6 "--middle--" sync / 1[56]:[^:]*:Themis:867F:/ -293.9 "Dark and Light" sync / 1[56]:[^:]*:Themis:81FE:/ -307.0 "Arcane Revelation" sync / 1[56]:[^:]*:Themis:(820F|8210):/ -316.7 "Unlucky Lot" sync / 1[56]:[^:]*:Arcane Sphere:(8215|8216):/ -323.1 "Jury Overruling" sync / 1[56]:[^:]*:Themis:(81E6|81E7):/ -329.1 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ -341.5 "Divisive Overruling" sync / 1[56]:[^:]*:Themis:(81EC|81ED):/ -346.1 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ -353.2 "Emissary's Will" sync / 1[56]:[^:]*:Themis:8202:/ - -361.4 "Styx x7" sync / 1[56]:[^:]*:Themis:8217:/ duration 6.6 - -380.2 "Dike 1" sync / 1[56]:[^:]*:Themis:822D:/ -383.3 "Dike 2" sync / 1[56]:[^:]*:Themis:822E:/ - -395.4 "--middle--" sync / 1[56]:[^:]*:Themis:867F:/ -402.5 "Dark Current (cast)" sync / 1[56]:[^:]*:Themis:8204:/ -410.6 "Dark Current x8" duration 7 sync / 1[56]:[^:]*:Themis:8209:/ -412.5 "Blinding Light" sync / 1[56]:[^:]*:Themis:8229:/ - -426.6 "Jury Overruling" sync / 1[56]:[^:]*:Themis:(81E6|81E7):/ -432.6 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ -446.0 "Upheld Overruling" sync / 1[56]:[^:]*:Themis:(87D3|87D4):/ -450.4 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -456.4 "--middle--" sync / 1[56]:[^:]*:Themis:867F:/ -466.2 "Divisive Overruling" sync / 1[56]:[^:]*:Themis:(81EC|81ED):/ -470.8 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ -483.9 "Eunomia" sync / 1[56]:[^:]*:Themis:822B:/ - -503.1 "--middle--" sync / 1[56]:[^:]*:Themis:867F:/ -510.2 "Letter of the Law" sync / 1[56]:[^:]*:Themis:87D2:/ -517.3 "Twofold Revelation" sync / 1[56]:[^:]*:Themis:(8211|8212):/ -526.4 "Heart of Judgment" sync / 1[56]:[^:]*:Themis:8226:/ -527.0 "Arche" sync / 1[56]:[^:]*:Arcane Sphere:(8213|8214):/ -527.0 "Unlucky Lot" sync / 1[56]:[^:]*:Arcane Sphere:(8215|8216):/ -529.5 "Upheld Ruling" sync / 1[56]:[^:]*:Illusory Themis:8221:/ -533.5 "Lightburst" sync / 1[56]:[^:]*:Illusory Themis:8224:/ -533.5 "Dark Perimeter" sync / 1[56]:[^:]*:Illusory Themis:8225:/ -538.4 "Explosion" sync / 1[56]:[^:]*:Themis:8227:/ -541.8 "Divisive Ruling" sync / 1[56]:[^:]*:Illusory Themis:821C:/ - -547.4 "Dismissal Overruling" sync / 1[56]:[^:]*:Themis:(8784|8785):/ -553.0 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -561.6 "Styx x8" sync / 1[56]:[^:]*:Themis:8217:/ duration 7.7 - -580.4 "Lightstream (cast)" sync / 1[56]:[^:]*:Themis:8203:/ -589.5 "--sync--" sync / 1[56]:[^:]*:Themis:867F:/ -592.6 "Lightstream x7" sync / 1[56]:[^:]*:Arcane Cylinder:8207:/ duration 6.1 - -598.9 "Divisive Overruling" sync / 1[56]:[^:]*:Themis:(81EC|81ED):/ -603.4 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ - -619.5 "Dike 1" sync / 1[56]:[^:]*:Themis:822D:/ -622.6 "Dike 2" sync / 1[56]:[^:]*:Themis:822E:/ - -638.7 "Jury Overruling" sync / 1[56]:[^:]*:Themis:(81E6|81E7):/ -644.7 "Inevitable Law/Inevitable Sentence" sync / 1[56]:[^:]*:Themis:(81FC|81FD):/ -655.8 "Eunomia" sync / 1[56]:[^:]*:Themis:822B:/ - -662.5 "--sync--" sync / 14:[^:]*:Themis:822C:/ window 30,10 -672.5 "Ultimate Verdict (enrage)" sync / 1[56]:[^:]*:Themis:822C:/ +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 + +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.0 "--sync--" StartsUsing { id: "822B", source: "Themis" } window 12,10 +16.0 "Eunomia" Ability { id: "822B", source: "Themis" } +26.1 "Dike 1" Ability { id: "822D", source: "Themis" } +29.2 "Dike 2" Ability { id: "822E", source: "Themis" } + +42.3 "Jury Overruling" Ability { id: ["81E6", "81E7"], source: "Themis" } +48.3 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +61.7 "Upheld Overruling" Ability { id: ["87D3", "87D4"], source: "Themis" } +66.3 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +70.3 "--middle--" Ability { id: "867F", source: "Themis" } +79.9 "Divisive Overruling" Ability { id: ["81EC", "81ED"], source: "Themis" } +84.5 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +93.7 "Styx x5" Ability { id: "8217", source: "Themis" } duration 4.4 + +105.2 "--middle--" Ability { id: "867F", source: "Themis" } +113.3 "Arcane Revelation" Ability { id: ["820D", "820E"], source: "Themis" } +120.4 "Dismissal Overruling" Ability { id: ["8784", "8785"], source: "Themis" } +122.8 "Arche" Ability { id: ["8213", "8214"], source: "Arcane Sphere" } +125.8 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +145.5 "--middle--" Ability { id: "867F", source: "Themis" } +152.6 "Shadowed Messengers" Ability { id: "8219", source: "Themis" } +166.9 "Divisive Ruling" Ability { id: "821C", source: "Illusory Themis" } +169.6 "Divisive Overruling" Ability { id: ["87B3", "87B4"], source: "Themis" } +174.1 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } +179.5 "Upheld Ruling" Ability { id: "8221", source: "Illusory Themis" } +183.5 "Lightburst" Ability { id: "8224", source: "Illusory Themis" } +183.5 "Dark Perimeter" Ability { id: "8225", source: "Illusory Themis" } + +189.2 "Jury Overruling" Ability { id: ["81E6", "81E7"], source: "Themis" } +195.2 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +203.3 "Styx x6" Ability { id: "8217", source: "Themis" } duration 5.5 + +220.9 "Lightstream (cast)" Ability { id: "8203", source: "Themis" } +230.6 "--sync--" Ability { id: "867F", source: "Themis" } +233.2 "Lightstream x7" Ability { id: "8207", source: "Arcane Cylinder" } duration 6.1 + +240.1 "Divisive Overruling" Ability { id: ["81EC", "81ED"], source: "Themis" } +244.7 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +256.8 "Eunomia" Ability { id: "822B", source: "Themis" } +271.2 "Upheld Overruling" Ability { id: ["87D3", "87D4"], source: "Themis" } +275.6 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +286.6 "--middle--" Ability { id: "867F", source: "Themis" } +293.9 "Dark and Light" Ability { id: "81FE", source: "Themis" } +307.0 "Arcane Revelation" Ability { id: ["820F", "8210"], source: "Themis" } +316.7 "Unlucky Lot" Ability { id: ["8215", "8216"], source: "Arcane Sphere" } +323.1 "Jury Overruling" Ability { id: ["81E6", "81E7"], source: "Themis" } +329.1 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } +341.5 "Divisive Overruling" Ability { id: ["81EC", "81ED"], source: "Themis" } +346.1 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } +353.2 "Emissary's Will" Ability { id: "8202", source: "Themis" } + +361.4 "Styx x7" Ability { id: "8217", source: "Themis" } duration 6.6 + +380.2 "Dike 1" Ability { id: "822D", source: "Themis" } +383.3 "Dike 2" Ability { id: "822E", source: "Themis" } + +395.4 "--middle--" Ability { id: "867F", source: "Themis" } +402.5 "Dark Current (cast)" Ability { id: "8204", source: "Themis" } +410.6 "Dark Current x8" duration 7 Ability { id: "8209", source: "Themis" } +412.5 "Blinding Light" Ability { id: "8229", source: "Themis" } + +426.6 "Jury Overruling" Ability { id: ["81E6", "81E7"], source: "Themis" } +432.6 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } +446.0 "Upheld Overruling" Ability { id: ["87D3", "87D4"], source: "Themis" } +450.4 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +456.4 "--middle--" Ability { id: "867F", source: "Themis" } +466.2 "Divisive Overruling" Ability { id: ["81EC", "81ED"], source: "Themis" } +470.8 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } +483.9 "Eunomia" Ability { id: "822B", source: "Themis" } + +503.1 "--middle--" Ability { id: "867F", source: "Themis" } +510.2 "Letter of the Law" Ability { id: "87D2", source: "Themis" } +517.3 "Twofold Revelation" Ability { id: ["8211", "8212"], source: "Themis" } +526.4 "Heart of Judgment" Ability { id: "8226", source: "Themis" } +527.0 "Arche" Ability { id: ["8213", "8214"], source: "Arcane Sphere" } +527.0 "Unlucky Lot" Ability { id: ["8215", "8216"], source: "Arcane Sphere" } +529.5 "Upheld Ruling" Ability { id: "8221", source: "Illusory Themis" } +533.5 "Lightburst" Ability { id: "8224", source: "Illusory Themis" } +533.5 "Dark Perimeter" Ability { id: "8225", source: "Illusory Themis" } +538.4 "Explosion" Ability { id: "8227", source: "Themis" } +541.8 "Divisive Ruling" Ability { id: "821C", source: "Illusory Themis" } + +547.4 "Dismissal Overruling" Ability { id: ["8784", "8785"], source: "Themis" } +553.0 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +561.6 "Styx x8" Ability { id: "8217", source: "Themis" } duration 7.7 + +580.4 "Lightstream (cast)" Ability { id: "8203", source: "Themis" } +589.5 "--sync--" Ability { id: "867F", source: "Themis" } +592.6 "Lightstream x7" Ability { id: "8207", source: "Arcane Cylinder" } duration 6.1 + +598.9 "Divisive Overruling" Ability { id: ["81EC", "81ED"], source: "Themis" } +603.4 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } + +619.5 "Dike 1" Ability { id: "822D", source: "Themis" } +622.6 "Dike 2" Ability { id: "822E", source: "Themis" } + +638.7 "Jury Overruling" Ability { id: ["81E6", "81E7"], source: "Themis" } +644.7 "Inevitable Law/Inevitable Sentence" Ability { id: ["81FC", "81FD"], source: "Themis" } +655.8 "Eunomia" Ability { id: "822B", source: "Themis" } + +662.5 "--sync--" StartsUsing { id: "822C", source: "Themis" } window 30,10 +672.5 "Ultimate Verdict (enrage)" Ability { id: "822C", source: "Themis" } # Abilities, ignored and not diff --git a/ui/raidboss/data/06-ew/raid/p12n.txt b/ui/raidboss/data/06-ew/raid/p12n.txt index efcab21866..a80f467a38 100644 --- a/ui/raidboss/data/06-ew/raid/p12n.txt +++ b/ui/raidboss/data/06-ew/raid/p12n.txt @@ -7,108 +7,108 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 # Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "--sync--" sync / 14:[^:]*:Athena:82D9:/ window 20,20 -12.0 "On the Soul" sync / 1[56]:[^:]*:Athena:82D9:/ -29.1 "Trinity of Souls 1" sync / 1[56]:[^:]*:Athena:82C[12]:/ -31.8 "Trinity of Souls 2" sync / 1[56]:[^:]*:Athena:82C[34]:/ -34.4 "Trinity of Souls 3" sync / 1[56]:[^:]*:Athena:82C[56]:/ -43.7 "Paradeigma" sync / 1[56]:[^:]*:Athena:82C7:/ -47.9 "--sync--" sync / 1[56]:[^:]*:Thymou Idea:8314:/ -57.1 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82C8:/ -57.1 "White Flame" sync / 1[56]:[^:]*:Anthropos:82C9:/ -70.8 "Trinity of Souls 1" sync / 1[56]:[^:]*:Athena:82C[12]:/ -73.5 "Trinity of Souls 2" sync / 1[56]:[^:]*:Athena:82C[34]:/ -76.1 "Trinity of Souls 3" sync / 1[56]:[^:]*:Athena:82C[56]:/ -84.3 "On the Soul" sync / 1[56]:[^:]*:Athena:82D9:/ -92.5 "Glaukopis" sync / 1[56]:[^:]*:Athena:82D5:/ -104.6 "Superchain Theory" sync / 1[56]:[^:]*:Athena:82BC:/ -119.8 "Superchain Coil" sync / 1[56]:[^:]*:Athena:82BE:/ -119.8 "Superchain Burst" sync / 1[56]:[^:]*:Athena:82BD:/ -130.8 "Superchain Theory" sync / 1[56]:[^:]*:Athena:82BC:/ -144.0 "Superchain Coil 1" sync / 1[56]:[^:]*:Athena:82BE:/ -147.0 "Superchain Coil 2" sync / 1[56]:[^:]*:Athena:82BE:/ -155.0 "Parthenos" sync / 1[56]:[^:]*:Athena:82D8:/ -162.7 "On the Soul" sync / 1[56]:[^:]*:Athena:82D9:/ -169.9 "--sync--" sync / 1[56]:[^:]*:Athena:8315:/ -178.5 "Unnatural Enchainment" sync / 1[56]:[^:]*:Athena:82BF:/ -179.6 "Sample" sync / 1[56]:[^:]*:Athena:82C0:/ -186.6 "Paradeigma" sync / 1[56]:[^:]*:Athena:82C7:/ -190.8 "--sync--" sync / 1[56]:[^:]*:Thymou Idea:8314:/ -196.8 "--sync--" sync / 1[56]:[^:]*:Athena:8315:/ -200.0 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82C8:/ -200.0 "White Flame" sync / 1[56]:[^:]*:Anthropos:82C9:/ -205.1 "Unnatural Enchainment" sync / 1[56]:[^:]*:Athena:82BF:/ -206.2 "Sample" sync / 1[56]:[^:]*:Athena:82C0:/ -221.2 "Trinity of Souls 1" sync / 1[56]:[^:]*:Athena:82C[12]:/ -223.9 "Trinity of Souls 2" sync / 1[56]:[^:]*:Athena:82C[34]:/ -226.5 "Trinity of Souls 3" sync / 1[56]:[^:]*:Athena:82C[56]:/ -234.7 "On the Soul" sync / 1[56]:[^:]*:Athena:82D9:/ -241.8 "--sync--" sync / 1[56]:[^:]*:Athena:8315:/ -246.4 "Ultima Blade" sync / 1[56]:[^:]*:Athena:82CB:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "--sync--" StartsUsing { id: "82D9", source: "Athena" } window 20,20 +12.0 "On the Soul" Ability { id: "82D9", source: "Athena" } +29.1 "Trinity of Souls 1" Ability { id: "82C[12]", source: "Athena" } +31.8 "Trinity of Souls 2" Ability { id: "82C[34]", source: "Athena" } +34.4 "Trinity of Souls 3" Ability { id: "82C[56]", source: "Athena" } +43.7 "Paradeigma" Ability { id: "82C7", source: "Athena" } +47.9 "--sync--" Ability { id: "8314", source: "Thymou Idea" } +57.1 "Ray of Light" Ability { id: "82C8", source: "Anthropos" } +57.1 "White Flame" Ability { id: "82C9", source: "Anthropos" } +70.8 "Trinity of Souls 1" Ability { id: "82C[12]", source: "Athena" } +73.5 "Trinity of Souls 2" Ability { id: "82C[34]", source: "Athena" } +76.1 "Trinity of Souls 3" Ability { id: "82C[56]", source: "Athena" } +84.3 "On the Soul" Ability { id: "82D9", source: "Athena" } +92.5 "Glaukopis" Ability { id: "82D5", source: "Athena" } +104.6 "Superchain Theory" Ability { id: "82BC", source: "Athena" } +119.8 "Superchain Coil" Ability { id: "82BE", source: "Athena" } +119.8 "Superchain Burst" Ability { id: "82BD", source: "Athena" } +130.8 "Superchain Theory" Ability { id: "82BC", source: "Athena" } +144.0 "Superchain Coil 1" Ability { id: "82BE", source: "Athena" } +147.0 "Superchain Coil 2" Ability { id: "82BE", source: "Athena" } +155.0 "Parthenos" Ability { id: "82D8", source: "Athena" } +162.7 "On the Soul" Ability { id: "82D9", source: "Athena" } +169.9 "--sync--" Ability { id: "8315", source: "Athena" } +178.5 "Unnatural Enchainment" Ability { id: "82BF", source: "Athena" } +179.6 "Sample" Ability { id: "82C0", source: "Athena" } +186.6 "Paradeigma" Ability { id: "82C7", source: "Athena" } +190.8 "--sync--" Ability { id: "8314", source: "Thymou Idea" } +196.8 "--sync--" Ability { id: "8315", source: "Athena" } +200.0 "Ray of Light" Ability { id: "82C8", source: "Anthropos" } +200.0 "White Flame" Ability { id: "82C9", source: "Anthropos" } +205.1 "Unnatural Enchainment" Ability { id: "82BF", source: "Athena" } +206.2 "Sample" Ability { id: "82C0", source: "Athena" } +221.2 "Trinity of Souls 1" Ability { id: "82C[12]", source: "Athena" } +223.9 "Trinity of Souls 2" Ability { id: "82C[34]", source: "Athena" } +226.5 "Trinity of Souls 3" Ability { id: "82C[56]", source: "Athena" } +234.7 "On the Soul" Ability { id: "82D9", source: "Athena" } +241.8 "--sync--" Ability { id: "8315", source: "Athena" } +246.4 "Ultima Blade" Ability { id: "82CB", source: "Athena" } 256.4 "--untargetable--" # Add Phase 256.4 "--adds targetable--" -266.7 "--sync--" sync / 1[56]:[^:]*:Athena:82CD:/ window 30,30 -266.9 "Palladion 1" sync / 1[56]:[^:]*:Athena:82CE:/ -268.5 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82D4:/ -270.1 "Palladion 2" sync / 1[56]:[^:]*:Athena:82CE:/ -273.1 "Palladion 3" sync / 1[56]:[^:]*:Athena:82CE:/ -274.1 "Clear Cut" sync / 1[56]:[^:]*:Anthropos:82D3:/ -276.2 "Palladion 4" sync / 1[56]:[^:]*:Athena:82CE:/ -279.2 "Palladion 5" sync / 1[56]:[^:]*:Athena:82CE:/ -281.0 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82D4:/ -282.3 "Palladion 6" sync / 1[56]:[^:]*:Athena:82CE:/ -285.3 "Palladion 7" sync / 1[56]:[^:]*:Athena:82CE:/ -287.4 "Clear Cut" sync / 1[56]:[^:]*:Anthropos:82D3:/ -288.4 "Palladion 8" sync / 1[56]:[^:]*:Athena:82CE:/ -293.4 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82D4:/ +266.7 "--sync--" Ability { id: "82CD", source: "Athena" } window 30,30 +266.9 "Palladion 1" Ability { id: "82CE", source: "Athena" } +268.5 "Ray of Light" Ability { id: "82D4", source: "Anthropos" } +270.1 "Palladion 2" Ability { id: "82CE", source: "Athena" } +273.1 "Palladion 3" Ability { id: "82CE", source: "Athena" } +274.1 "Clear Cut" Ability { id: "82D3", source: "Anthropos" } +276.2 "Palladion 4" Ability { id: "82CE", source: "Athena" } +279.2 "Palladion 5" Ability { id: "82CE", source: "Athena" } +281.0 "Ray of Light" Ability { id: "82D4", source: "Anthropos" } +282.3 "Palladion 6" Ability { id: "82CE", source: "Athena" } +285.3 "Palladion 7" Ability { id: "82CE", source: "Athena" } +287.4 "Clear Cut" Ability { id: "82D3", source: "Anthropos" } +288.4 "Palladion 8" Ability { id: "82CE", source: "Athena" } +293.4 "Ray of Light" Ability { id: "82D4", source: "Anthropos" } # ??? this is ~90% on the enrage # Final Phase -500.0 "--sync--" sync / 14:[^:]*:Athena:82D1:/ window 500,0 -505.8 "Palladion" sync / 1[56]:[^:]*:Athena:82D1:/ -510.8 "--sync--" sync / 14:[^:]*:Athena:82D2:/ -517.8 "Theos's Ultima" sync / 1[56]:[^:]*:Athena:82D2:/ window 20,20 +500.0 "--sync--" StartsUsing { id: "82D1", source: "Athena" } window 500,0 +505.8 "Palladion" Ability { id: "82D1", source: "Athena" } +510.8 "--sync--" StartsUsing { id: "82D2", source: "Athena" } +517.8 "Theos's Ultima" Ability { id: "82D2", source: "Athena" } window 20,20 525.8 "--targetable--" -537.4 "Superchain Theory" sync / 1[56]:[^:]*:Athena:82BC:/ -550.5 "Superchain Burst" sync / 1[56]:[^:]*:Athena:82BD:/ -554.6 "Parthenos" sync / 1[56]:[^:]*:Athena:82D8:/ -555.5 "Superchain Burst" sync / 1[56]:[^:]*:Athena:82BD:/ -560.5 "Superchain Coil" sync / 1[56]:[^:]*:Athena:82BE:/ -560.5 "Superchain Burst" sync / 1[56]:[^:]*:Athena:82BD:/ -569.3 "Trinity of Souls 1" sync / 1[56]:[^:]*:Athena:82C[12]:/ -572.0 "Trinity of Souls 2" sync / 1[56]:[^:]*:Athena:82C[34]:/ -574.6 "Trinity of Souls 3" sync / 1[56]:[^:]*:Athena:82C[56]:/ -582.8 "Dialogos (stack)" sync / 1[56]:[^:]*:Athena:82D6:/ -587.8 "Dialogos (spread)" sync / 1[56]:[^:]*:Athena:82D7:/ -596.5 "Glaukopis" sync / 1[56]:[^:]*:Athena:82D5:/ -606.6 "Paradeigma" sync / 1[56]:[^:]*:Athena:82C7:/ -614.7 "Superchain Theory" sync / 1[56]:[^:]*:Athena:82BC:/ -628.7 "Superchain Burst" sync / 1[56]:[^:]*:Athena:82BD:/ -628.7 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82C8:/ -628.7 "White Flame" sync / 1[56]:[^:]*:Anthropos:82C9:/ -631.6 "Unnatural Enchainment" sync / 1[56]:[^:]*:Athena:82BF:/ -632.7 "Sample" sync / 1[56]:[^:]*:Athena:82C0:/ -643.7 "Parthenos" sync / 1[56]:[^:]*:Athena:82D8:/ -651.4 "On the Soul" sync / 1[56]:[^:]*:Athena:82D9:/ -661.6 "Paradeigma" sync / 1[56]:[^:]*:Athena:82C7:/ -669.8 "Dialogos (stack)" sync / 1[56]:[^:]*:Athena:82D6:/ -674.8 "Dialogos (spread)" sync / 1[56]:[^:]*:Athena:82D7:/ -678.8 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82C8:/ -678.8 "White Flame" sync / 1[56]:[^:]*:Anthropos:82C9:/ -683.4 "Glaukopis" sync / 1[56]:[^:]*:Athena:82D5:/ -691.5 "On the Soul" sync / 1[56]:[^:]*:Athena:82D9:/ +537.4 "Superchain Theory" Ability { id: "82BC", source: "Athena" } +550.5 "Superchain Burst" Ability { id: "82BD", source: "Athena" } +554.6 "Parthenos" Ability { id: "82D8", source: "Athena" } +555.5 "Superchain Burst" Ability { id: "82BD", source: "Athena" } +560.5 "Superchain Coil" Ability { id: "82BE", source: "Athena" } +560.5 "Superchain Burst" Ability { id: "82BD", source: "Athena" } +569.3 "Trinity of Souls 1" Ability { id: "82C[12]", source: "Athena" } +572.0 "Trinity of Souls 2" Ability { id: "82C[34]", source: "Athena" } +574.6 "Trinity of Souls 3" Ability { id: "82C[56]", source: "Athena" } +582.8 "Dialogos (stack)" Ability { id: "82D6", source: "Athena" } +587.8 "Dialogos (spread)" Ability { id: "82D7", source: "Athena" } +596.5 "Glaukopis" Ability { id: "82D5", source: "Athena" } +606.6 "Paradeigma" Ability { id: "82C7", source: "Athena" } +614.7 "Superchain Theory" Ability { id: "82BC", source: "Athena" } +628.7 "Superchain Burst" Ability { id: "82BD", source: "Athena" } +628.7 "Ray of Light" Ability { id: "82C8", source: "Anthropos" } +628.7 "White Flame" Ability { id: "82C9", source: "Anthropos" } +631.6 "Unnatural Enchainment" Ability { id: "82BF", source: "Athena" } +632.7 "Sample" Ability { id: "82C0", source: "Athena" } +643.7 "Parthenos" Ability { id: "82D8", source: "Athena" } +651.4 "On the Soul" Ability { id: "82D9", source: "Athena" } +661.6 "Paradeigma" Ability { id: "82C7", source: "Athena" } +669.8 "Dialogos (stack)" Ability { id: "82D6", source: "Athena" } +674.8 "Dialogos (spread)" Ability { id: "82D7", source: "Athena" } +678.8 "Ray of Light" Ability { id: "82C8", source: "Anthropos" } +678.8 "White Flame" Ability { id: "82C9", source: "Anthropos" } +683.4 "Glaukopis" Ability { id: "82D5", source: "Athena" } +691.5 "On the Soul" Ability { id: "82D9", source: "Athena" } # TODO: probably a loop, have seen up to Paradeigma at 606.6/767.3 -703.7 "Superchain Theory" sync / 1[56]:[^:]*:Athena:82BC:/ window 30,30 jump 537.4 -716.8 "Superchain Burst" #sync / 1[56]:[^:]*:Athena:82BD:/ -720.9 "Parthenos" #sync / 1[56]:[^:]*:Athena:82D8:/ -721.8 "Superchain Burst" #sync / 1[56]:[^:]*:Athena:82BD:/ -726.8 "Superchain Coil" #sync / 1[56]:[^:]*:Athena:82BE:/ -726.8 "Superchain Burst" #sync / 1[56]:[^:]*:Athena:82BD:/ +703.7 "Superchain Theory" Ability { id: "82BC", source: "Athena" } window 30,30 jump 537.4 +716.8 "Superchain Burst" #Ability { id: "82BD", source: "Athena" } +720.9 "Parthenos" #Ability { id: "82D8", source: "Athena" } +721.8 "Superchain Burst" #Ability { id: "82BD", source: "Athena" } +726.8 "Superchain Coil" #Ability { id: "82BE", source: "Athena" } +726.8 "Superchain Burst" #Ability { id: "82BD", source: "Athena" } diff --git a/ui/raidboss/data/06-ew/raid/p12s.txt b/ui/raidboss/data/06-ew/raid/p12s.txt index 0233d12261..acec3199ea 100644 --- a/ui/raidboss/data/06-ew/raid/p12s.txt +++ b/ui/raidboss/data/06-ew/raid/p12s.txt @@ -3,209 +3,209 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 ### Phase 1: Athena # -ii 8677 8314 8350 82F0 8308 8309 8331 8313 # -p 8304:11.1 # -it "Athena" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -1.0 "--sync--" sync / 03:[^:]*:Hemitheos:00:5A:0{4}:00::12383:/ window 10,3 jump 1000.5 # Sync to P2 immediately through AddCombatant. -11.1 "On the Soul" sync / 1[56]:[^:]*:Athena:8304:/ window 20,20 -21.2 "Paradeigma 1" sync / 1[56]:[^:]*:Athena:82ED:/ -24.3 "--middle--" sync / 1[56]:[^:]*:Athena:8315:/ -36.7 "Trinity of Souls 1" sync / 1[56]:[^:]*:Athena:(82E7|82E8):/ -36.7 "White Flame" sync / 1[56]:[^:]*:Anthropos:82EF:/ -39.3 "Trinity of Souls 2" sync / 1[56]:[^:]*:Athena:(82E9|82EA):/ -41.7 "White Flame" sync / 1[56]:[^:]*:Anthropos:82EF:/ -41.9 "Trinity of Souls 3" sync / 1[56]:[^:]*:Athena:(82EB|82EC):/ - -57.3 "Paradeigma 2" sync / 1[56]:[^:]*:Athena:82ED:/ -65.0 "Engravement of Souls" sync / 1[56]:[^:]*:Athena:8305:/ -74.8 "Searing Radiance/Shadowsear" sync / 1[56]:[^:]*:Anthropos:82F[12]:/ -75.8 "Astral Glow/Umbral Glow" sync / 1[56]:[^:]*:Athena:830[CD]:/ -78.8 "Astral Advance/Umbral Advance" sync / 1[56]:[^:]*:Anthropos:830[EF]:/ -81.8 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82EE:/ - -88.8 "On the Soul" sync / 1[56]:[^:]*:Athena:8304:/ -97.0 "Glaukopis 1" sync / 1[56]:[^:]*:Athena:82FC:/ -100.0 "Glaukopis 2" sync / 1[56]:[^:]*:Athena:82FD:/ - -116.1 "Superchain Theory I" sync / 1[56]:[^:]*:Athena:82DA:/ -123.2 "Engravement of Souls" sync / 1[56]:[^:]*:Athena:8305:/ -128.2 "Superchain Coil/Superchain Burst" sync / 1[56]:[^:]*:Athena:82D[BC]:/ -134.3 "Polarized Ray" sync / 1[56]:[^:]*:Athena:8307:/ -135.2 "Superchain Coil/Superchain Burst" sync / 1[56]:[^:]*:Athena:82D[BC]:/ -135.5 "Astral Impact/Umbral Impact" sync / 1[56]:[^:]*:Athena:830[89]:/ -140.2 "Superchain Coil/Superchain Burst" #sync / 1[56]:[^:]*:Athena:82D[BC]:/ -142.2 "Superchain Coil/Superchain Burst" #sync / 1[56]:[^:]*:Athena:82D[BC]:/ -143.5 "Astral Glow/Umbral Glow" sync / 1[56]:[^:]*:Athena:830[CD]:/ -145.2 "Theos's Holy" sync / 1[56]:[^:]*:Athena:8306:/ -146.4 "Astral Advance/Umbral Advance" sync / 1[56]:[^:]*:Anthropos:830[FE]:/ - -157.4 "Trinity of Souls 1" sync / 1[56]:[^:]*:Athena:(82E7|82E8|82E1|82E2):/ -160.1 "Trinity of Souls 2" sync / 1[56]:[^:]*:Athena:(82E9|82EA):/ -162.7 "Trinity of Souls 3" sync / 1[56]:[^:]*:Athena:(82EB|82EC|82E5|82E6):/ - -171.1 "Apodialogos/Peridialogos" sync / 1[56]:[^:]*:Athena:830[01]:/ -172.1 "Dialogos" sync / 1[56]:[^:]*:Athena:8302:/ -178.8 "On the Soul" sync / 1[56]:[^:]*:Athena:8304:/ -190.0 "--middle--" sync / 1[56]:[^:]*:Athena:8315:/ -195.3 "Paradeigma 3" sync / 1[56]:[^:]*:Athena:82ED:/ -202.4 "Engravement of Souls" sync / 1[56]:[^:]*:Athena:8305:/ -212.5 "Shock" sync / 1[56]:[^:]*:Athena:8312:/ -213.6 "Sample" sync / 1[56]:[^:]*:Athena:82E0:/ -213.7 "Searing Radiance/Shadowsear" sync / 1[56]:[^:]*:Anthropos:82F[12]:/ -220.5 "Theos's Saltire/Theos's Cross" sync / 1[56]:[^:]*:Athena:830[AB]:/ -220.7 "White Flame" sync / 1[56]:[^:]*:Anthropos:82EF:/ -220.8 "Astral Glow/Umbral Glow" sync / 1[56]:[^:]*:Athena:830[CD]:/ -223.8 "Astral Advance/Umbral Advance" sync / 1[56]:[^:]*:Anthropos:830[EF]:/ - -229.8 "On the Soul" sync / 1[56]:[^:]*:Athena:8304:/ -242.1 "Glaukopis 1" sync / 1[56]:[^:]*:Athena:82FC:/ -245.2 "Glaukopis 2" sync / 1[56]:[^:]*:Athena:82FD:/ -254.3 "--middle--" sync / 1[56]:[^:]*:Athena:8315:/ -259.9 "--sync--" sync / 1[56]:[^:]*:Athena:82F3:/ -267.3 "Ultima Blade" sync / 1[56]:[^:]*:Athena:82F4:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +1.0 "--sync--" AddedCombatant { npcNameId: "12383", name: "Hemitheos", job: "00", level: "5A", ownerId: "0{4}", worldId: "00" } window 10,3 jump 1000.5 # Sync to P2 immediately through AddCombatant. +11.1 "On the Soul" Ability { id: "8304", source: "Athena" } window 20,20 +21.2 "Paradeigma 1" Ability { id: "82ED", source: "Athena" } +24.3 "--middle--" Ability { id: "8315", source: "Athena" } +36.7 "Trinity of Souls 1" Ability { id: ["82E7", "82E8"], source: "Athena" } +36.7 "White Flame" Ability { id: "82EF", source: "Anthropos" } +39.3 "Trinity of Souls 2" Ability { id: ["82E9", "82EA"], source: "Athena" } +41.7 "White Flame" Ability { id: "82EF", source: "Anthropos" } +41.9 "Trinity of Souls 3" Ability { id: ["82EB", "82EC"], source: "Athena" } + +57.3 "Paradeigma 2" Ability { id: "82ED", source: "Athena" } +65.0 "Engravement of Souls" Ability { id: "8305", source: "Athena" } +74.8 "Searing Radiance/Shadowsear" Ability { id: "82F[12]", source: "Anthropos" } +75.8 "Astral Glow/Umbral Glow" Ability { id: "830[CD]", source: "Athena" } +78.8 "Astral Advance/Umbral Advance" Ability { id: "830[EF]", source: "Anthropos" } +81.8 "Ray of Light" Ability { id: "82EE", source: "Anthropos" } + +88.8 "On the Soul" Ability { id: "8304", source: "Athena" } +97.0 "Glaukopis 1" Ability { id: "82FC", source: "Athena" } +100.0 "Glaukopis 2" Ability { id: "82FD", source: "Athena" } + +116.1 "Superchain Theory I" Ability { id: "82DA", source: "Athena" } +123.2 "Engravement of Souls" Ability { id: "8305", source: "Athena" } +128.2 "Superchain Coil/Superchain Burst" Ability { id: "82D[BC]", source: "Athena" } +134.3 "Polarized Ray" Ability { id: "8307", source: "Athena" } +135.2 "Superchain Coil/Superchain Burst" Ability { id: "82D[BC]", source: "Athena" } +135.5 "Astral Impact/Umbral Impact" Ability { id: "830[89]", source: "Athena" } +140.2 "Superchain Coil/Superchain Burst" #Ability { id: "82D[BC]", source: "Athena" } +142.2 "Superchain Coil/Superchain Burst" #Ability { id: "82D[BC]", source: "Athena" } +143.5 "Astral Glow/Umbral Glow" Ability { id: "830[CD]", source: "Athena" } +145.2 "Theos's Holy" Ability { id: "8306", source: "Athena" } +146.4 "Astral Advance/Umbral Advance" Ability { id: "830[FE]", source: "Anthropos" } + +157.4 "Trinity of Souls 1" Ability { id: ["82E7", "82E8", "82E1", "82E2"], source: "Athena" } +160.1 "Trinity of Souls 2" Ability { id: ["82E9", "82EA"], source: "Athena" } +162.7 "Trinity of Souls 3" Ability { id: ["82EB", "82EC", "82E5", "82E6"], source: "Athena" } + +171.1 "Apodialogos/Peridialogos" Ability { id: "830[01]", source: "Athena" } +172.1 "Dialogos" Ability { id: "8302", source: "Athena" } +178.8 "On the Soul" Ability { id: "8304", source: "Athena" } +190.0 "--middle--" Ability { id: "8315", source: "Athena" } +195.3 "Paradeigma 3" Ability { id: "82ED", source: "Athena" } +202.4 "Engravement of Souls" Ability { id: "8305", source: "Athena" } +212.5 "Shock" Ability { id: "8312", source: "Athena" } +213.6 "Sample" Ability { id: "82E0", source: "Athena" } +213.7 "Searing Radiance/Shadowsear" Ability { id: "82F[12]", source: "Anthropos" } +220.5 "Theos's Saltire/Theos's Cross" Ability { id: "830[AB]", source: "Athena" } +220.7 "White Flame" Ability { id: "82EF", source: "Anthropos" } +220.8 "Astral Glow/Umbral Glow" Ability { id: "830[CD]", source: "Athena" } +223.8 "Astral Advance/Umbral Advance" Ability { id: "830[EF]", source: "Anthropos" } + +229.8 "On the Soul" Ability { id: "8304", source: "Athena" } +242.1 "Glaukopis 1" Ability { id: "82FC", source: "Athena" } +245.2 "Glaukopis 2" Ability { id: "82FD", source: "Athena" } +254.3 "--middle--" Ability { id: "8315", source: "Athena" } +259.9 "--sync--" Ability { id: "82F3", source: "Athena" } +267.3 "Ultima Blade" Ability { id: "82F4", source: "Athena" } 280.0 "--untargetable--" # Laser/Cleave order is random here so we can only really timeline the Palladion dashes. -290.6 "Palladion 1" sync / 1[56]:[^:]*:Athena:82F6:/ window 1.5,0.5 -293.7 "Palladion 2" sync / 1[56]:[^:]*:Athena:82F6:/ window 1.5,0.5 -296.8 "Palladion 3" sync / 1[56]:[^:]*:Athena:82F6:/ window 1.5,0.5 -299.9 "Palladion 4" sync / 1[56]:[^:]*:Athena:82F6:/ window 1.5,0.5 -303.0 "Palladion 5" sync / 1[56]:[^:]*:Athena:82F6:/ window 1.5,0.5 -306.1 "Palladion 6" sync / 1[56]:[^:]*:Athena:82F6:/ window 1.5,0.5 -309.2 "Palladion 7" sync / 1[56]:[^:]*:Athena:82F6:/ window 1.5,0.5 -312.4 "Palladion 8" sync / 1[56]:[^:]*:Athena:82F6:/ window 1.5,0.5 -317.5 "--sync--" sync / 1[56]:[^:]*:Athena:82F8:/ -321.5 "Palladion (Floor Drop)" sync / 1[56]:[^:]*:Athena:82F9:/ window 20,20 +290.6 "Palladion 1" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +293.7 "Palladion 2" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +296.8 "Palladion 3" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +299.9 "Palladion 4" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +303.0 "Palladion 5" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +306.1 "Palladion 6" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +309.2 "Palladion 7" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +312.4 "Palladion 8" Ability { id: "82F6", source: "Athena" } window 1.5,0.5 +317.5 "--sync--" Ability { id: "82F8", source: "Athena" } +321.5 "Palladion (Floor Drop)" Ability { id: "82F9", source: "Athena" } window 20,20 324.4 "--targetable--" -333.2 "Theos's Ultima" sync / 1[56]:[^:]*:Athena:82FA:/ -352.6 "Superchain Theory IIA" sync / 1[56]:[^:]*:Athena:86FA:/ -365.7 "Trinity of Souls 1" sync / 1[56]:[^:]*:Athena:(82E7|82E8|82E1|82E2):/ -368.3 "Trinity of Souls 2" sync / 1[56]:[^:]*:Athena:(82E9|82EA):/ -370.7 "Trinity of Souls 3" sync / 1[56]:[^:]*:Athena:(82EB|82EC|82E5|82E6):/ -374.0 "Superchain Coil/Superchain Burst" sync / 1[56]:[^:]*:Athena:82D[BC]:/ - -380.2 "Apodialogos/Peridialogos" sync / 1[56]:[^:]*:Athena:830[01]:/ -381.2 "Dialogos" sync / 1[56]:[^:]*:Athena:8302:/ -387.9 "On the Soul" sync / 1[56]:[^:]*:Athena:8304:/ -395.1 "--middle--" sync / 1[56]:[^:]*:Athena:8315:/ -402.5 "Superchain Theory IIB" sync / 1[56]:[^:]*:Athena:86FB:/ -408.6 "Paradeigma 4" sync / 1[56]:[^:]*:Athena:82ED:/ -415.6 "Superchain Coil/Superchain Burst" sync / 1[56]:[^:]*:Athena:82D[BC]:/ -418.6 "Parthenos" sync / 1[56]:[^:]*:Athena:8303:/ -422.5 "Superchain Coil/Superchain Burst" sync / 1[56]:[^:]*:Athena:82D[BC]:/ -424.9 "Ray of Light" sync / 1[56]:[^:]*:Anthropos:82EE:/ -431.5 "Superchain Coil/Superchain Burst" sync / 1[56]:[^:]*:Athena:82D[BC]:/ - -434.3 "Unnatural Enchainment" sync / 1[56]:[^:]*:Athena:82DF:/ -435.4 "Sample" sync / 1[56]:[^:]*:Athena:82E0:/ -442.4 "On the Soul" sync / 1[56]:[^:]*:Athena:8304:/ -450.5 "On the Soul" sync / 1[56]:[^:]*:Athena:8304:/ -459.0 "--untargetable--" sync / 14:[^:]*:Athena:8556:/ -466.0 "Theos's Ultima (enrage)" sync / 1[56]:[^:]*:Athena:8556:/ +333.2 "Theos's Ultima" Ability { id: "82FA", source: "Athena" } +352.6 "Superchain Theory IIA" Ability { id: "86FA", source: "Athena" } +365.7 "Trinity of Souls 1" Ability { id: ["82E7", "82E8", "82E1", "82E2"], source: "Athena" } +368.3 "Trinity of Souls 2" Ability { id: ["82E9", "82EA"], source: "Athena" } +370.7 "Trinity of Souls 3" Ability { id: ["82EB", "82EC", "82E5", "82E6"], source: "Athena" } +374.0 "Superchain Coil/Superchain Burst" Ability { id: "82D[BC]", source: "Athena" } + +380.2 "Apodialogos/Peridialogos" Ability { id: "830[01]", source: "Athena" } +381.2 "Dialogos" Ability { id: "8302", source: "Athena" } +387.9 "On the Soul" Ability { id: "8304", source: "Athena" } +395.1 "--middle--" Ability { id: "8315", source: "Athena" } +402.5 "Superchain Theory IIB" Ability { id: "86FB", source: "Athena" } +408.6 "Paradeigma 4" Ability { id: "82ED", source: "Athena" } +415.6 "Superchain Coil/Superchain Burst" Ability { id: "82D[BC]", source: "Athena" } +418.6 "Parthenos" Ability { id: "8303", source: "Athena" } +422.5 "Superchain Coil/Superchain Burst" Ability { id: "82D[BC]", source: "Athena" } +424.9 "Ray of Light" Ability { id: "82EE", source: "Anthropos" } +431.5 "Superchain Coil/Superchain Burst" Ability { id: "82D[BC]", source: "Athena" } + +434.3 "Unnatural Enchainment" Ability { id: "82DF", source: "Athena" } +435.4 "Sample" Ability { id: "82E0", source: "Athena" } +442.4 "On the Soul" Ability { id: "8304", source: "Athena" } +450.5 "On the Soul" Ability { id: "8304", source: "Athena" } +459.0 "--untargetable--" StartsUsing { id: "8556", source: "Athena" } +466.0 "Theos's Ultima (enrage)" Ability { id: "8556", source: "Athena" } ### Phase 2: Pallas Athena # -p 8682:1012.1 # -ii 8678 831C 831D 879F 832C 87A0 8334 8325 8323 833D 8792 833E 86FD 831F 8683 8320 8322 8340 8328 834D 86F5 8337 8339 8341 8332 8335 -1007.1 "--sync--" sync / 14:[^:]*:Pallas Athena:8682:/ window 1100,10 -1012.1 "Ultima 1" sync / 1[56]:[^:]*:Pallas Athena:8682:/ -1024.2 "Palladian Grasp 1" sync / 1[56]:[^:]*:Pallas Athena:831A:/ -1027.4 "Palladian Grasp 2" sync / 1[56]:[^:]*:Pallas Athena:831B:/ -1040.8 "Gaiaochos 1" sync / 1[56]:[^:]*:Pallas Athena:8326:/ -1051.9 "Summon Darkness" sync / 1[56]:[^:]*:Pallas Athena:832F:/ +1007.1 "--sync--" StartsUsing { id: "8682", source: "Pallas Athena" } window 1100,10 +1012.1 "Ultima 1" Ability { id: "8682", source: "Pallas Athena" } +1024.2 "Palladian Grasp 1" Ability { id: "831A", source: "Pallas Athena" } +1027.4 "Palladian Grasp 2" Ability { id: "831B", source: "Pallas Athena" } +1040.8 "Gaiaochos 1" Ability { id: "8326", source: "Pallas Athena" } +1051.9 "Summon Darkness" Ability { id: "832F", source: "Pallas Athena" } 1059.0 "--tethers--" -1063.8 "Ultima Ray" sync / 1[56]:[^:]*:Hemitheos:8330:/ - -1065.1 "Missing Link" sync / 1[56]:[^:]*:Pallas Athena:8586:/ -1074.1 "Demi Parhelion" sync / 1[56]:[^:]*:Pallas Athena:8327:/ -1084.2 "Geocentrism" sync / 1[56]:[^:]*:Pallas Athena:832[AB9]:/ -1085.2 "Divine Excoriation" sync / 1[56]:[^:]*:Pallas Athena:832E:/ - -1094.4 "Ultima 2" sync / 1[56]:[^:]*:Pallas Athena:86F6:/ -1108.6 "The Classical Concepts 1" sync / 1[56]:[^:]*:Pallas Athena:8331:/ -1130.0 "Implode" sync / 1[56]:[^:]*:Concept of Water:8333:/ -1133.4 "Palladian Ray" sync / 1[56]:[^:]*:Pallas Athena:8324:/ duration 4 - -1143.8 "Ultima 3" sync / 1[56]:[^:]*:Pallas Athena:8682:/ -1153.0 "--sync--" sync / 1[56]:[^:]*:Pallas Athena:8317:/ -1153.8 "Crush Helm 1" #sync / 1[56]:[^:]*:Pallas Athena:8318:/ -1154.9 "Crush Helm 2" #sync / 1[56]:[^:]*:Pallas Athena:8318:/ -1156.0 "Crush Helm 3" #sync / 1[56]:[^:]*:Pallas Athena:8318:/ -1157.1 "Crush Helm 4" #sync / 1[56]:[^:]*:Pallas Athena:8318:/ -1159.2 "Crush Helm Buster" sync / 1[56]:[^:]*:Pallas Athena:8319:/ - -1173.2 "Caloric Theory 1" sync / 1[56]:[^:]*:Pallas Athena:8338:/ -1185.9 "Pyre Pulse 1" sync / 1[56]:[^:]*:Pallas Athena:833A:/ -1197.3 "Pyre Pulse 2" sync / 1[56]:[^:]*:Pallas Athena:833A:/ -1197.3 "Dynamic Atmosphere" sync / 1[56]:[^:]*:Pallas Athena:833B:/ - -1207.6 "Ekpyrosis (cast)" sync / 1[56]:[^:]*:Pallas Athena:831E:/ -1215.4 "Ekpyrosis (proximity)" sync / 1[56]:[^:]*:Pallas Athena:8683:/ -1218.5 "Ekpyrosis (spread)" sync / 1[56]:[^:]*:Pallas Athena:8322:/ - -1226.8 "Ultima 4" sync / 1[56]:[^:]*:Pallas Athena:8682:/ -1241.0 "Pangenesis" sync / 1[56]:[^:]*:Pallas Athena:833F:/ - -1254.9 "Astral Advent/Umbral Advent 1" sync / 1[56]:[^:]*:Hemitheos:834[34]:/ -1260.0 "Astral Advent/Umbral Advent 2" sync / 1[56]:[^:]*:Hemitheos:834[34]:/ -1265.0 "Astral Advent/Umbral Advent 3" sync / 1[56]:[^:]*:Hemitheos:834[34]:/ -1277.4 "Factor In" sync / 1[56]:[^:]*:Forbidden Factor:8347:/ -1280.4 "Palladian Grasp 1" sync / 1[56]:[^:]*:Pallas Athena:831A:/ -1283.6 "Palladian Grasp 2" sync / 1[56]:[^:]*:Pallas Athena:831B:/ - -1296.8 "The Classical Concepts 2" sync / 1[56]:[^:]*:Pallas Athena:8331:/ -1313.9 "Panta Rhei" sync / 1[56]:[^:]*:Pallas Athena:8336:/ -1322.7 "Palladian Ray" sync / 1[56]:[^:]*:Pallas Athena:8324:/ duration 4 -1325.2 "Implode" sync / 1[56]:[^:]*:Concept of Water:8333:/ - -1333.1 "Ultima 5" sync / 1[56]:[^:]*:Pallas Athena:8682:/ -1342.2 "--sync--" sync / 1[56]:[^:]*:Pallas Athena:8317:/ -1343.0 "Crush Helm 1" #sync / 1[56]:[^:]*:Pallas Athena:8318:/ -1344.1 "Crush Helm 2" #sync / 1[56]:[^:]*:Pallas Athena:8318:/ +1063.8 "Ultima Ray" Ability { id: "8330", source: "Hemitheos" } + +1065.1 "Missing Link" Ability { id: "8586", source: "Pallas Athena" } +1074.1 "Demi Parhelion" Ability { id: "8327", source: "Pallas Athena" } +1084.2 "Geocentrism" Ability { id: "832[AB9]", source: "Pallas Athena" } +1085.2 "Divine Excoriation" Ability { id: "832E", source: "Pallas Athena" } + +1094.4 "Ultima 2" Ability { id: "86F6", source: "Pallas Athena" } +1108.6 "The Classical Concepts 1" Ability { id: "8331", source: "Pallas Athena" } +1130.0 "Implode" Ability { id: "8333", source: "Concept of Water" } +1133.4 "Palladian Ray" Ability { id: "8324", source: "Pallas Athena" } duration 4 + +1143.8 "Ultima 3" Ability { id: "8682", source: "Pallas Athena" } +1153.0 "--sync--" Ability { id: "8317", source: "Pallas Athena" } +1153.8 "Crush Helm 1" #Ability { id: "8318", source: "Pallas Athena" } +1154.9 "Crush Helm 2" #Ability { id: "8318", source: "Pallas Athena" } +1156.0 "Crush Helm 3" #Ability { id: "8318", source: "Pallas Athena" } +1157.1 "Crush Helm 4" #Ability { id: "8318", source: "Pallas Athena" } +1159.2 "Crush Helm Buster" Ability { id: "8319", source: "Pallas Athena" } + +1173.2 "Caloric Theory 1" Ability { id: "8338", source: "Pallas Athena" } +1185.9 "Pyre Pulse 1" Ability { id: "833A", source: "Pallas Athena" } +1197.3 "Pyre Pulse 2" Ability { id: "833A", source: "Pallas Athena" } +1197.3 "Dynamic Atmosphere" Ability { id: "833B", source: "Pallas Athena" } + +1207.6 "Ekpyrosis (cast)" Ability { id: "831E", source: "Pallas Athena" } +1215.4 "Ekpyrosis (proximity)" Ability { id: "8683", source: "Pallas Athena" } +1218.5 "Ekpyrosis (spread)" Ability { id: "8322", source: "Pallas Athena" } + +1226.8 "Ultima 4" Ability { id: "8682", source: "Pallas Athena" } +1241.0 "Pangenesis" Ability { id: "833F", source: "Pallas Athena" } + +1254.9 "Astral Advent/Umbral Advent 1" Ability { id: "834[34]", source: "Hemitheos" } +1260.0 "Astral Advent/Umbral Advent 2" Ability { id: "834[34]", source: "Hemitheos" } +1265.0 "Astral Advent/Umbral Advent 3" Ability { id: "834[34]", source: "Hemitheos" } +1277.4 "Factor In" Ability { id: "8347", source: "Forbidden Factor" } +1280.4 "Palladian Grasp 1" Ability { id: "831A", source: "Pallas Athena" } +1283.6 "Palladian Grasp 2" Ability { id: "831B", source: "Pallas Athena" } + +1296.8 "The Classical Concepts 2" Ability { id: "8331", source: "Pallas Athena" } +1313.9 "Panta Rhei" Ability { id: "8336", source: "Pallas Athena" } +1322.7 "Palladian Ray" Ability { id: "8324", source: "Pallas Athena" } duration 4 +1325.2 "Implode" Ability { id: "8333", source: "Concept of Water" } + +1333.1 "Ultima 5" Ability { id: "8682", source: "Pallas Athena" } +1342.2 "--sync--" Ability { id: "8317", source: "Pallas Athena" } +1343.0 "Crush Helm 1" #Ability { id: "8318", source: "Pallas Athena" } +1344.1 "Crush Helm 2" #Ability { id: "8318", source: "Pallas Athena" } 1345.2 "Crush Helm 3" #sync / 1[56]:[^:]*:Pallas Athena:8318: -1346.3 "Crush Helm 4" #sync / 1[56]:[^:]*:Pallas Athena:8318:/ -1348.4 "Crush Helm Buster" sync / 1[56]:[^:]*:Pallas Athena:8319:/ - -1362.5 "Caloric Theory 2" sync / 1[56]:[^:]*:Pallas Athena:8338:/ -1369.3 "Entropic Excess 1" sync / 1[56]:[^:]*:Pallas Athena:833C:/ window 1.5,1.5 -1372.3 "Entropic Excess 2" sync / 1[56]:[^:]*:Pallas Athena:833C:/ window 1.5,1.5 -1375.3 "Entropic Excess 3" sync / 1[56]:[^:]*:Pallas Athena:833C:/ window 1.5,1.5 -1378.3 "Entropic Excess 4" sync / 1[56]:[^:]*:Pallas Athena:833C:/ window 1.5,1.5 -1381.3 "Entropic Excess 5" sync / 1[56]:[^:]*:Pallas Athena:833C:/ window 1.5,1.5 -1384.3 "Entropic Excess 6" sync / 1[56]:[^:]*:Pallas Athena:833C:/ window 1.5,1.5 -1387.3 "Entropic Excess 7" sync / 1[56]:[^:]*:Pallas Athena:833C:/ window 1.5,1.5 -1390.3 "Entropic Excess 8" sync / 1[56]:[^:]*:Pallas Athena:833C:/ window 1.5,1.5 -1390.3 "Dynamic Atmosphere" sync / 1[56]:[^:]*:Pallas Athena:833B:/ - -1392.6 "Ekpyrosis (cast)" sync / 1[56]:[^:]*:Pallas Athena:831E:/ -1400.4 "Ekpyrosis (proximity)" sync / 1[56]:[^:]*:Pallas Athena:8683:/ -1403.5 "Ekpyrosis (spread)" sync / 1[56]:[^:]*:Pallas Athena:8322:/ - -1411.7 "Ultima 6" sync / 1[56]:[^:]*:Pallas Athena:8682:/ -1425.9 "Gaiaochos 2" sync / 1[56]:[^:]*:Pallas Athena:8326:/ -1437.0 "Summon Darkness" sync / 1[56]:[^:]*:Pallas Athena:832F:/ -1443.1 "Demi Parhelion" sync / 1[56]:[^:]*:Pallas Athena:8327:/ +1346.3 "Crush Helm 4" #Ability { id: "8318", source: "Pallas Athena" } +1348.4 "Crush Helm Buster" Ability { id: "8319", source: "Pallas Athena" } + +1362.5 "Caloric Theory 2" Ability { id: "8338", source: "Pallas Athena" } +1369.3 "Entropic Excess 1" Ability { id: "833C", source: "Pallas Athena" } window 1.5,1.5 +1372.3 "Entropic Excess 2" Ability { id: "833C", source: "Pallas Athena" } window 1.5,1.5 +1375.3 "Entropic Excess 3" Ability { id: "833C", source: "Pallas Athena" } window 1.5,1.5 +1378.3 "Entropic Excess 4" Ability { id: "833C", source: "Pallas Athena" } window 1.5,1.5 +1381.3 "Entropic Excess 5" Ability { id: "833C", source: "Pallas Athena" } window 1.5,1.5 +1384.3 "Entropic Excess 6" Ability { id: "833C", source: "Pallas Athena" } window 1.5,1.5 +1387.3 "Entropic Excess 7" Ability { id: "833C", source: "Pallas Athena" } window 1.5,1.5 +1390.3 "Entropic Excess 8" Ability { id: "833C", source: "Pallas Athena" } window 1.5,1.5 +1390.3 "Dynamic Atmosphere" Ability { id: "833B", source: "Pallas Athena" } + +1392.6 "Ekpyrosis (cast)" Ability { id: "831E", source: "Pallas Athena" } +1400.4 "Ekpyrosis (proximity)" Ability { id: "8683", source: "Pallas Athena" } +1403.5 "Ekpyrosis (spread)" Ability { id: "8322", source: "Pallas Athena" } + +1411.7 "Ultima 6" Ability { id: "8682", source: "Pallas Athena" } +1425.9 "Gaiaochos 2" Ability { id: "8326", source: "Pallas Athena" } +1437.0 "Summon Darkness" Ability { id: "832F", source: "Pallas Athena" } +1443.1 "Demi Parhelion" Ability { id: "8327", source: "Pallas Athena" } 1448.1 "--tethers--" -1453.2 "Geocentrism" sync / 1[56]:[^:]*:Pallas Athena:832[AB9]:/ -1453.8 "Ultima Ray" sync / 1[56]:[^:]*:Hemitheos:8330:/ -1454.0 "Missing Link" sync / 1[56]:[^:]*:Pallas Athena:8586:/ -1457.1 "Divine Excoriation" sync / 1[56]:[^:]*:Pallas Athena:832E:/ - -1465.2 "Summon Darkness" sync / 1[56]:[^:]*:Pallas Athena:832F:/ -1476.2 "Ultima Blow" #sync / 1[56]:[^:]*:Hemitheos:8348:/ -1480.4 "Ultima 7" sync / 1[56]:[^:]*:Pallas Athena:86F6:/ -1490.1 "Ultima Blow" #sync / 1[56]:[^:]*:Hemitheos:8348:/ -1494.6 "Ultima 8" sync / 1[56]:[^:]*:Pallas Athena:86F6:/ - -1508.4 "--sync--" sync / 14:[^:]*:Pallas Athena:8349:/ window 30,30 -1523.4 "Ignorabimus" sync / 1[56]:[^:]*:Pallas Athena:8349:/ +1453.2 "Geocentrism" Ability { id: "832[AB9]", source: "Pallas Athena" } +1453.8 "Ultima Ray" Ability { id: "8330", source: "Hemitheos" } +1454.0 "Missing Link" Ability { id: "8586", source: "Pallas Athena" } +1457.1 "Divine Excoriation" Ability { id: "832E", source: "Pallas Athena" } + +1465.2 "Summon Darkness" Ability { id: "832F", source: "Pallas Athena" } +1476.2 "Ultima Blow" #Ability { id: "8348", source: "Hemitheos" } +1480.4 "Ultima 7" Ability { id: "86F6", source: "Pallas Athena" } +1490.1 "Ultima Blow" #Ability { id: "8348", source: "Hemitheos" } +1494.6 "Ultima 8" Ability { id: "86F6", source: "Pallas Athena" } + +1508.4 "--sync--" StartsUsing { id: "8349", source: "Pallas Athena" } window 30,30 +1523.4 "Ignorabimus" Ability { id: "8349", source: "Pallas Athena" } ### Ability Chart diff --git a/ui/raidboss/data/06-ew/raid/p1n.txt b/ui/raidboss/data/06-ew/raid/p1n.txt index df85f5047a..1d37ca598e 100644 --- a/ui/raidboss/data/06-ew/raid/p1n.txt +++ b/ui/raidboss/data/06-ew/raid/p1n.txt @@ -9,72 +9,72 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 ## First Gaoler's Flail -8.7 "--sync--" sync / 14:[^:]*:Erichthonios:(6DA3|6DA2):/ window 10,9 -17.4 "Gaoler's Flail Left/Gaoler's Flail Right" sync / 1[56]:[^:]*:Erichthonios:(6DA3|6DA2):/ -28.5 "Gaoler's Flail Right/Gaoler's Flail Left" sync / 1[56]:[^:]*:Erichthonios:(6DA2|6DA3):/ -39.0 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:65F4:/ -46.2 "--knockback stack--" sync / 1[56]:[^:]*:Erichthonios:6D15:/ -51.5 "Pitiless Flail" sync / 1[56]:[^:]*:Erichthonios:65E5:/ -58.6 "True Holy" sync / 1[56]:[^:]*:Erichthonios:65E7:/ +8.7 "--sync--" StartsUsing { id: ["6DA3", "6DA2"], source: "Erichthonios" } window 10,9 +17.4 "Gaoler's Flail Left/Gaoler's Flail Right" Ability { id: ["6DA3", "6DA2"], source: "Erichthonios" } +28.5 "Gaoler's Flail Right/Gaoler's Flail Left" Ability { id: ["6DA2", "6DA3"], source: "Erichthonios" } +39.0 "Warder's Wrath" Ability { id: "65F4", source: "Erichthonios" } +46.2 "--knockback stack--" Ability { id: "6D15", source: "Erichthonios" } +51.5 "Pitiless Flail" Ability { id: "65E5", source: "Erichthonios" } +58.6 "True Holy" Ability { id: "65E7", source: "Erichthonios" } ## Third Gaoler's Flail -70.5 "Gaoler's Flail Left/Gaoler's Flail Right" sync / 1[56]:[^:]*:Erichthonios:(6DA3|6DA2):/ -81.1 "Heavy Hand" sync / 1[56]:[^:]*:Erichthonios:65F3:/ -93.2 "Intemperance" sync / 1[56]:[^:]*:Erichthonios:65EE:/ -97.3 "--middle--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -105.1 "Intemperate Torment" sync / 1[56]:[^:]*:Erichthonios:65EF:/ -107.7 "Hot Spell/Cold Spell 1" sync / 1[56]:[^:]*:Erichthonios:(65F0|54F1):/ -116.7 "Hot Spell/Cold Spell 2" sync / 1[56]:[^:]*:Erichthonios:(6CC5|6CC6):/ -125.7 "Hot Spell/Cold Spell 3" sync / 1[56]:[^:]*:Erichthonios:(6CC5|6CC6):/ -135.3 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:65F4:/ -147.6 "Heavy Hand" sync / 1[56]:[^:]*:Erichthonios:65F3:/ -162.7 "Shining Cells" sync / 1[56]:[^:]*:Erichthonios:65E9:/ -174.9 "Aetherchain" sync / 1[56]:[^:]*:Erichthonios:65EB:/ -175.8 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:(65EC|65ED):/ -183.1 "Aetherchain" sync / 1[56]:[^:]*:Erichthonios:65EB:/ -184.0 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:(65EC|65ED):/ +70.5 "Gaoler's Flail Left/Gaoler's Flail Right" Ability { id: ["6DA3", "6DA2"], source: "Erichthonios" } +81.1 "Heavy Hand" Ability { id: "65F3", source: "Erichthonios" } +93.2 "Intemperance" Ability { id: "65EE", source: "Erichthonios" } +97.3 "--middle--" Ability { id: "65F5", source: "Erichthonios" } +105.1 "Intemperate Torment" Ability { id: "65EF", source: "Erichthonios" } +107.7 "Hot Spell/Cold Spell 1" Ability { id: ["65F0", "54F1"], source: "Erichthonios" } +116.7 "Hot Spell/Cold Spell 2" Ability { id: ["6CC5", "6CC6"], source: "Erichthonios" } +125.7 "Hot Spell/Cold Spell 3" Ability { id: ["6CC5", "6CC6"], source: "Erichthonios" } +135.3 "Warder's Wrath" Ability { id: "65F4", source: "Erichthonios" } +147.6 "Heavy Hand" Ability { id: "65F3", source: "Erichthonios" } +162.7 "Shining Cells" Ability { id: "65E9", source: "Erichthonios" } +174.9 "Aetherchain" Ability { id: "65EB", source: "Erichthonios" } +175.8 "Powerful Fire/Powerful Light" Ability { id: ["65EC", "65ED"], source: "Erichthonios" } +183.1 "Aetherchain" Ability { id: "65EB", source: "Erichthonios" } +184.0 "Powerful Fire/Powerful Light" Ability { id: ["65EC", "65ED"], source: "Erichthonios" } ## Beginning of Loop -188.3 "--middle--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ +188.3 "--middle--" Ability { id: "65F5", source: "Erichthonios" } # Fourth Gaoler's Flail -198.7 "Aetherflail Left/Aetherflail Right" sync / 1[56]:[^:]*:Erichthonios:(6DA3|6DA2):/ -198.8 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:(65EC|65ED):/ -209.8 "Aetherflail Right/Aetherflail Left" sync / 1[56]:[^:]*:Erichthonios:(6DA2|6DA3):/ -209.9 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:(65EC|65ED):/ -214.3 "--knockback stack--" sync / 1[56]:[^:]*:Erichthonios:6D15:/ -219.6 "Pitiless Flail" sync / 1[56]:[^:]*:Erichthonios:65E5:/ -226.7 "True Holy" sync / 1[56]:[^:]*:Erichthonios:65E7:/ -232.9 "--middle--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ +198.7 "Aetherflail Left/Aetherflail Right" Ability { id: ["6DA3", "6DA2"], source: "Erichthonios" } +198.8 "Powerful Fire/Powerful Light" Ability { id: ["65EC", "65ED"], source: "Erichthonios" } +209.8 "Aetherflail Right/Aetherflail Left" Ability { id: ["6DA2", "6DA3"], source: "Erichthonios" } +209.9 "Powerful Fire/Powerful Light" Ability { id: ["65EC", "65ED"], source: "Erichthonios" } +214.3 "--knockback stack--" Ability { id: "6D15", source: "Erichthonios" } +219.6 "Pitiless Flail" Ability { id: "65E5", source: "Erichthonios" } +226.7 "True Holy" Ability { id: "65E7", source: "Erichthonios" } +232.9 "--middle--" Ability { id: "65F5", source: "Erichthonios" } # Sixth Gaoler's Flail -243.3 "Aetherflail Left/Aetherflail Right" sync / 1[56]:[^:]*:Erichthonios:(6DA3|6DA2):/ -243.4 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:(65EC|65ED):/ -260.8 "Slam Shut" sync / 1[56]:[^:]*:Erichthonios:65EA:/ -270.0 "Intemperance" sync / 1[56]:[^:]*:Erichthonios:65EE:/ -274.1 "--middle--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -281.7 "Intemperate Torment" sync / 1[56]:[^:]*:Erichthonios:65EF:/ -284.3 "Hot Spell/Cold Spell 1" sync / 1[56]:[^:]*:Erichthonios:(65F0|54F1):/ -293.3 "Hot Spell/Cold Spell 2" sync / 1[56]:[^:]*:Erichthonios:(6CC5|6CC6):/ -302.3 "Hot Spell/Cold Spell 3" sync / 1[56]:[^:]*:Erichthonios:(6CC5|6CC6):/ -305.6 "Gaoler's Flail Right/Gaoler's Flail Left" sync / 1[56]:[^:]*:Erichthonios:(6DA2|6DA3):/ -316.1 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:65F4:/ -327.3 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:65F4:/ -336.6 "Heavy Hand" sync / 1[56]:[^:]*:Erichthonios:65F3:/ -355.8 "Shining Cells" sync / 1[56]:[^:]*:Erichthonios:65E9:/ +243.3 "Aetherflail Left/Aetherflail Right" Ability { id: ["6DA3", "6DA2"], source: "Erichthonios" } +243.4 "Powerful Fire/Powerful Light" Ability { id: ["65EC", "65ED"], source: "Erichthonios" } +260.8 "Slam Shut" Ability { id: "65EA", source: "Erichthonios" } +270.0 "Intemperance" Ability { id: "65EE", source: "Erichthonios" } +274.1 "--middle--" Ability { id: "65F5", source: "Erichthonios" } +281.7 "Intemperate Torment" Ability { id: "65EF", source: "Erichthonios" } +284.3 "Hot Spell/Cold Spell 1" Ability { id: ["65F0", "54F1"], source: "Erichthonios" } +293.3 "Hot Spell/Cold Spell 2" Ability { id: ["6CC5", "6CC6"], source: "Erichthonios" } +302.3 "Hot Spell/Cold Spell 3" Ability { id: ["6CC5", "6CC6"], source: "Erichthonios" } +305.6 "Gaoler's Flail Right/Gaoler's Flail Left" Ability { id: ["6DA2", "6DA3"], source: "Erichthonios" } +316.1 "Warder's Wrath" Ability { id: "65F4", source: "Erichthonios" } +327.3 "Warder's Wrath" Ability { id: "65F4", source: "Erichthonios" } +336.6 "Heavy Hand" Ability { id: "65F3", source: "Erichthonios" } +355.8 "Shining Cells" Ability { id: "65E9", source: "Erichthonios" } # Repeat -360.0 "--middle--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ window 50,50 jump 188.3 -370.3 "Aetherflail Left/Aetherflail Right" #sync / 1[56]:[^:]*:Erichthonios:(6DA3|6DA2):/ -370.4 "Powerful Fire/Powerful Light" #sync / 1[56]:[^:]*:Erichthonios:(65EC|65ED):/ -381.4 "Aetherflail Right/Aetherflail Left" #sync / 1[56]:[^:]*:Erichthonios:(6DA2|6DA3):/ -381.5 "Powerful Fire/Powerful Light" #sync / 1[56]:[^:]*:Erichthonios:(65EC|65ED):/ -385.9 "--knockback stack--" #sync / 1[56]:[^:]*:Erichthonios:6D15:/ -391.2 "Pitiless Flail" #sync / 1[56]:[^:]*:Erichthonios:65E5:/ -398.3 "True Holy" #sync / 1[56]:[^:]*:Erichthonios:65E7:/ -404.5 "--middle--" #sync / 1[56]:[^:]*:Erichthonios:65F5:/ +360.0 "--middle--" Ability { id: "65F5", source: "Erichthonios" } window 50,50 jump 188.3 +370.3 "Aetherflail Left/Aetherflail Right" #Ability { id: ["6DA3", "6DA2"], source: "Erichthonios" } +370.4 "Powerful Fire/Powerful Light" #Ability { id: ["65EC", "65ED"], source: "Erichthonios" } +381.4 "Aetherflail Right/Aetherflail Left" #Ability { id: ["6DA2", "6DA3"], source: "Erichthonios" } +381.5 "Powerful Fire/Powerful Light" #Ability { id: ["65EC", "65ED"], source: "Erichthonios" } +385.9 "--knockback stack--" #Ability { id: "6D15", source: "Erichthonios" } +391.2 "Pitiless Flail" #Ability { id: "65E5", source: "Erichthonios" } +398.3 "True Holy" #Ability { id: "65E7", source: "Erichthonios" } +404.5 "--middle--" #Ability { id: "65F5", source: "Erichthonios" } diff --git a/ui/raidboss/data/06-ew/raid/p1s.txt b/ui/raidboss/data/06-ew/raid/p1s.txt index 27d94b10c9..38719251d7 100644 --- a/ui/raidboss/data/06-ew/raid/p1s.txt +++ b/ui/raidboss/data/06-ew/raid/p1s.txt @@ -17,159 +17,159 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 # First flail set -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.4 "--sync--" sync / 14:[^:]*:Erichthonios:6629:/ window 11,9 -14.1 "Heavy Hand" sync / 1[56]:[^:]*:Erichthonios:6629:/ -18.2 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -22.8 "Aetherial Shackles" sync / 1[56]:[^:]*:Erichthonios:6625:/ -31.9 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ -41.7 "Chain Pain" sync / 1[56]:[^:]*:Erichthonios:6627:/ -58.5 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ window 3,2 -61.3 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ window 2,3 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.4 "--sync--" StartsUsing { id: "6629", source: "Erichthonios" } window 11,9 +14.1 "Heavy Hand" Ability { id: "6629", source: "Erichthonios" } +18.2 "--sync--" Ability { id: "65F5", source: "Erichthonios" } +22.8 "Aetherial Shackles" Ability { id: "6625", source: "Erichthonios" } +31.9 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } +41.7 "Chain Pain" Ability { id: "6627", source: "Erichthonios" } +58.5 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } window 3,2 +61.3 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } window 2,3 # First tank mechanic -72.1 "Pitiless Flail of Grace/Pitiless Flail of Purgation" sync / 1[56]:[^:]*:Erichthonios:660[EF]:/ -75.5 "True Flare/True Holy" sync / 1[56]:[^:]*:Erichthonios:661[01]:/ +72.1 "Pitiless Flail of Grace/Pitiless Flail of Purgation" Ability { id: "660[EF]", source: "Erichthonios" } +75.5 "True Flare/True Holy" Ability { id: "661[01]", source: "Erichthonios" } # Second flail set -91.9 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ window 3,2 -94.7 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ window 2,3 -105.3 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ +91.9 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } window 3,2 +94.7 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } window 2,3 +105.3 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } # Tiles 1 -118.5 "Intemperance" sync / 1[56]:[^:]*:Erichthonios:661E:/ -122.6 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -134.4 "Intemperate Torment" sync / 1[56]:[^:]*:Erichthonios:(661F|6620):/ -135.3 "First Element" sync / 1[56]:[^:]*:Erichthonios:6621:/ -141.4 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ -146.4 "Second Element" sync / 1[56]:[^:]*:Erichthonios:6621:/ -151.6 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ -157.3 "Third Element" sync / 1[56]:[^:]*:Erichthonios:6621:/ +118.5 "Intemperance" Ability { id: "661E", source: "Erichthonios" } +122.6 "--sync--" Ability { id: "65F5", source: "Erichthonios" } +134.4 "Intemperate Torment" Ability { id: ["661F", "6620"], source: "Erichthonios" } +135.3 "First Element" Ability { id: "6621", source: "Erichthonios" } +141.4 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } +146.4 "Second Element" Ability { id: "6621", source: "Erichthonios" } +151.6 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } +157.3 "Third Element" Ability { id: "6621", source: "Erichthonios" } # Second tank mechanic -167.9 "Pitiless Flail of Grace/Pitiless Flail of Purgation" sync / 1[56]:[^:]*:Erichthonios:660[EF]:/ -171.1 "True Flare/True Holy" sync / 1[56]:[^:]*:Erichthonios:661[01]:/ +167.9 "Pitiless Flail of Grace/Pitiless Flail of Purgation" Ability { id: "660[EF]", source: "Erichthonios" } +171.1 "True Flare/True Holy" Ability { id: "661[01]", source: "Erichthonios" } # Cells 1 -188.2 "Shining Cells" sync / 1[56]:[^:]*:Erichthonios:6616:/ -194.5 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -208.6 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -208.6 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ -211.4 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -211.4 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ -224.2 "Pitiless Flail of Grace/Pitiless Flail of Purgation" sync / 1[56]:[^:]*:Erichthonios:660[EF]:/ -227.6 "True Flare/True Holy" sync / 1[56]:[^:]*:Erichthonios:661[01]:/ -229.7 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -243.7 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -243.7 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ -246.5 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -246.5 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ -255.1 "Shackles of Time" sync / 1[56]:[^:]*:Erichthonios:661C:/ -265.3 "Heavy Hand" sync / 1[56]:[^:]*:Erichthonios:6629:/ -270.0 "Inevitable Flame/Inevitable Light" sync / 1[56]:[^:]*:Erichthonios:6EC[12]:/ -278.4 "Slam Shut" sync / 1[56]:[^:]*:Erichthonios:6617:/ -289.6 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ +188.2 "Shining Cells" Ability { id: "6616", source: "Erichthonios" } +194.5 "--sync--" Ability { id: "65F5", source: "Erichthonios" } +208.6 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +208.6 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } +211.4 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +211.4 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } +224.2 "Pitiless Flail of Grace/Pitiless Flail of Purgation" Ability { id: "660[EF]", source: "Erichthonios" } +227.6 "True Flare/True Holy" Ability { id: "661[01]", source: "Erichthonios" } +229.7 "--sync--" Ability { id: "65F5", source: "Erichthonios" } +243.7 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +243.7 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } +246.5 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +246.5 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } +255.1 "Shackles of Time" Ability { id: "661C", source: "Erichthonios" } +265.3 "Heavy Hand" Ability { id: "6629", source: "Erichthonios" } +270.0 "Inevitable Flame/Inevitable Light" Ability { id: "6EC[12]", source: "Erichthonios" } +278.4 "Slam Shut" Ability { id: "6617", source: "Erichthonios" } +289.6 "--sync--" Ability { id: "65F5", source: "Erichthonios" } # Fourfold Shackles -294.2 "Fourfold Shackles" sync / 1[56]:[^:]*:Erichthonios:6626:/ -303.2 "Chain Pain #1" sync / 1[56]:[^:]*:Erichthonios:6627:/ -308.2 "Chain Pain #2" sync / 1[56]:[^:]*:Erichthonios:6627:/ -313.2 "Chain Pain #3" sync / 1[56]:[^:]*:Erichthonios:6627:/ -318.2 "Chain Pain #4" sync / 1[56]:[^:]*:Erichthonios:6627:/ -328.4 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ +294.2 "Fourfold Shackles" Ability { id: "6626", source: "Erichthonios" } +303.2 "Chain Pain #1" Ability { id: "6627", source: "Erichthonios" } +308.2 "Chain Pain #2" Ability { id: "6627", source: "Erichthonios" } +313.2 "Chain Pain #3" Ability { id: "6627", source: "Erichthonios" } +318.2 "Chain Pain #4" Ability { id: "6627", source: "Erichthonios" } +328.4 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } # Tiles 2 -341.6 "Intemperance" sync / 1[56]:[^:]*:Erichthonios:661E:/ -345.7 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -357.4 "Intemperate Torment" sync / 1[56]:[^:]*:Erichthonios:(661F|6620):/ -358.6 "First Element" sync / 1[56]:[^:]*:Erichthonios:6621:/ -369.6 "Second Element" sync / 1[56]:[^:]*:Erichthonios:6621:/ -374.0 "Gaoler's Flail In/Out" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ window 3,2 -376.8 "Gaoler's Flail Out/In" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ window 2,3 -380.6 "Third Element" sync / 1[56]:[^:]*:Erichthonios:6621:/ -389.4 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ +341.6 "Intemperance" Ability { id: "661E", source: "Erichthonios" } +345.7 "--sync--" Ability { id: "65F5", source: "Erichthonios" } +357.4 "Intemperate Torment" Ability { id: ["661F", "6620"], source: "Erichthonios" } +358.6 "First Element" Ability { id: "6621", source: "Erichthonios" } +369.6 "Second Element" Ability { id: "6621", source: "Erichthonios" } +374.0 "Gaoler's Flail In/Out" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } window 3,2 +376.8 "Gaoler's Flail Out/In" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } window 2,3 +380.6 "Third Element" Ability { id: "6621", source: "Erichthonios" } +389.4 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } # Cells 2 -> branch -407.6 "Shining Cells" sync / 1[56]:[^:]*:Erichthonios:6616:/ +407.6 "Shining Cells" Ability { id: "6616", source: "Erichthonios" } # -> Shackles of Time first? -417.8 "Shackles of Time?" sync / 1[56]:[^:]*:Erichthonios:661C:/ jump 617.8 window 20,20 -425.1 "Pitiless Flail of Grace/Pitiless Flail of Purgation?" #sync / 1[56]:[^:]*:Erichthonios:660[EF]:/ -428.4 "True Flare/True Holy?" #sync / 1[56]:[^:]*:Erichthonios:661[01]:/ -432.8 "Inevitable Flame/Inevitable Light?" #sync / 1[56]:[^:]*:Erichthonios:6EC[12]:/ -441.9 "Warder's Wrath?" #sync / 1[56]:[^:]*:Erichthonios:662A:/ +417.8 "Shackles of Time?" Ability { id: "661C", source: "Erichthonios" } jump 617.8 window 20,20 +425.1 "Pitiless Flail of Grace/Pitiless Flail of Purgation?" #Ability { id: "660[EF]", source: "Erichthonios" } +428.4 "True Flare/True Holy?" #Ability { id: "661[01]", source: "Erichthonios" } +432.8 "Inevitable Flame/Inevitable Light?" #Ability { id: "6EC[12]", source: "Erichthonios" } +441.9 "Warder's Wrath?" #Ability { id: "662A", source: "Erichthonios" } # -> Aetherial Shackles first? -417.8 "Aetherial Shackles?" sync / 1[56]:[^:]*:Erichthonios:6625:/ jump 1010.8 window 20,20 -428.9 "Aetherchain?" #sync / 1[56]:[^:]*:Erichthonios:6619:/ -429.8 "Powerful Fire/Powerful Light?" #sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -436.7 "Chain Pain?" #sync / 1[56]:[^:]*:Erichthonios:6627:/ -438.0 "Powerful Fire/Powerful Light?" #sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -447.3 "Warder's Wrath?" #sync / 1[56]:[^:]*:Erichthonios:662A:/ +417.8 "Aetherial Shackles?" Ability { id: "6625", source: "Erichthonios" } jump 1010.8 window 20,20 +428.9 "Aetherchain?" #Ability { id: "6619", source: "Erichthonios" } +429.8 "Powerful Fire/Powerful Light?" #Ability { id: "661[AB]", source: "Erichthonios" } +436.7 "Chain Pain?" #Ability { id: "6627", source: "Erichthonios" } +438.0 "Powerful Fire/Powerful Light?" #Ability { id: "661[AB]", source: "Erichthonios" } +447.3 "Warder's Wrath?" #Ability { id: "662A", source: "Erichthonios" } # Cells 2, Shackles of Time first -617.8 "Shackles of Time" sync / 1[56]:[^:]*:Erichthonios:661C:/ -625.1 "Pitiless Flail of Grace/Pitiless Flail of Purgation" sync / 1[56]:[^:]*:Erichthonios:660[EF]:/ -628.4 "True Flare/True Holy" sync / 1[56]:[^:]*:Erichthonios:661[01]:/ -632.8 "Inevitable Flame/Inevitable Light" sync / 1[56]:[^:]*:Erichthonios:6EC[12]:/ -641.9 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ -649.1 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -653.9 "Aetherial Shackles" sync / 1[56]:[^:]*:Erichthonios:6625:/ -665.1 "Aetherchain" sync / 1[56]:[^:]*:Erichthonios:6619:/ -666.0 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -672.9 "Chain Pain" sync / 1[56]:[^:]*:Erichthonios:6627:/ -674.2 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ - -685.5 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ jump 1077.3 -692.7 "--sync--" #sync / 1[56]:[^:]*:Erichthonios:65F5:/ -706.8 "Powerful Fire/Powerful Light" #sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -706.8 "Gaoler's Flail" #sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ -709.6 "Powerful Fire/Powerful Light" #sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -709.6 "Gaoler's Flail" #sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ +617.8 "Shackles of Time" Ability { id: "661C", source: "Erichthonios" } +625.1 "Pitiless Flail of Grace/Pitiless Flail of Purgation" Ability { id: "660[EF]", source: "Erichthonios" } +628.4 "True Flare/True Holy" Ability { id: "661[01]", source: "Erichthonios" } +632.8 "Inevitable Flame/Inevitable Light" Ability { id: "6EC[12]", source: "Erichthonios" } +641.9 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } +649.1 "--sync--" Ability { id: "65F5", source: "Erichthonios" } +653.9 "Aetherial Shackles" Ability { id: "6625", source: "Erichthonios" } +665.1 "Aetherchain" Ability { id: "6619", source: "Erichthonios" } +666.0 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +672.9 "Chain Pain" Ability { id: "6627", source: "Erichthonios" } +674.2 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } + +685.5 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } jump 1077.3 +692.7 "--sync--" #Ability { id: "65F5", source: "Erichthonios" } +706.8 "Powerful Fire/Powerful Light" #Ability { id: "661[AB]", source: "Erichthonios" } +706.8 "Gaoler's Flail" #Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } +709.6 "Powerful Fire/Powerful Light" #Ability { id: "661[AB]", source: "Erichthonios" } +709.6 "Gaoler's Flail" #Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } # Cells 2, Aetherial Shackles first -1010.8 "Aetherial Shackles" sync / 1[56]:[^:]*:Erichthonios:6625:/ -1021.9 "Aetherchain" sync / 1[56]:[^:]*:Erichthonios:6619:/ -1022.8 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -1029.7 "Chain Pain" sync / 1[56]:[^:]*:Erichthonios:6627:/ -1031.0 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -1040.3 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ -1051.5 "Shackles of Time" sync / 1[56]:[^:]*:Erichthonios:661C:/ -1058.9 "Pitiless Flail of Grace/Pitiless Flail of Purgation" sync / 1[56]:[^:]*:Erichthonios:660[EF]:/ -1062.1 "True Flare/True Holy" sync / 1[56]:[^:]*:Erichthonios:661[01]:/ -1066.4 "Inevitable Flame/Inevitable Light" sync / 1[56]:[^:]*:Erichthonios:6EC[12]:/ +1010.8 "Aetherial Shackles" Ability { id: "6625", source: "Erichthonios" } +1021.9 "Aetherchain" Ability { id: "6619", source: "Erichthonios" } +1022.8 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +1029.7 "Chain Pain" Ability { id: "6627", source: "Erichthonios" } +1031.0 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +1040.3 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } +1051.5 "Shackles of Time" Ability { id: "661C", source: "Erichthonios" } +1058.9 "Pitiless Flail of Grace/Pitiless Flail of Purgation" Ability { id: "660[EF]", source: "Erichthonios" } +1062.1 "True Flare/True Holy" Ability { id: "661[01]", source: "Erichthonios" } +1066.4 "Inevitable Flame/Inevitable Light" Ability { id: "6EC[12]", source: "Erichthonios" } # Final section -1077.3 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ -1084.5 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ +1077.3 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } +1084.5 "--sync--" Ability { id: "65F5", source: "Erichthonios" } # Seems to be E/W+In/Out for first two, and last one swaps between In/Out -1098.6 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -1098.6 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ -1101.4 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -1101.4 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ +1098.6 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +1098.6 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } +1101.4 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +1101.4 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } -1115.7 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -1115.7 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ -1119.5 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -1119.5 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ +1115.7 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +1115.7 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } +1119.5 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +1119.5 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } -1134.2 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -1134.2 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ -1137.3 "Powerful Fire/Powerful Light" sync / 1[56]:[^:]*:Erichthonios:661[AB]:/ -1137.3 "Gaoler's Flail" sync / 1[56]:[^:]*:Erichthonios:6DA[2-9A-D]:/ +1134.2 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +1134.2 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } +1137.3 "Powerful Fire/Powerful Light" Ability { id: "661[AB]", source: "Erichthonios" } +1137.3 "Gaoler's Flail" Ability { id: "6DA[2-9A-D]", source: "Erichthonios" } # Soft enrage -1152.7 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ -1161.9 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ -1171.1 "Warder's Wrath" sync / 1[56]:[^:]*:Erichthonios:662A:/ +1152.7 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } +1161.9 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } +1171.1 "Warder's Wrath" Ability { id: "662A", source: "Erichthonios" } -1177.0 "--sync--" sync / 1[56]:[^:]*:Erichthonios:65F5:/ -1190.6 "Lethe (enrage)" sync / 1[56]:[^:]*:Erichthonios:6618:/ +1177.0 "--sync--" Ability { id: "65F5", source: "Erichthonios" } +1190.6 "Lethe (enrage)" Ability { id: "6618", source: "Erichthonios" } diff --git a/ui/raidboss/data/06-ew/raid/p2n.txt b/ui/raidboss/data/06-ew/raid/p2n.txt index 7eb858ffd8..584e6f91c5 100644 --- a/ui/raidboss/data/06-ew/raid/p2n.txt +++ b/ui/raidboss/data/06-ew/raid/p2n.txt @@ -5,62 +5,62 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.3 "--sync--" sync / 14:[^:]*:Hippokampos:680F:/ window 20,20 -14.3 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:680F:/ -26.6 "Doubled Impact" sync / 1[56]:[^:]*:Hippokampos:680E:/ -32.8 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6835:/ -43.6 "Spoken Cataract" sync / 1[56]:[^:]*:Hippokampos:(67F7|67F8|67F9|67FD):/ -58.3 "Spoken Cataract" sync / 1[56]:[^:]*:Hippokampos:(67F7|67F8|67F9|67FD):/ -72.0 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:680F:/ -77.2 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6835:/ -84.6 "Sewage Deluge" sync / 1[56]:[^:]*:Hippokampos:67F6:/ -111.0 "Tainted Flood" sync / 1[56]:[^:]*:Hippokampos:6809:/ -126.9 "Predatory Sight" sync / 1[56]:[^:]*:Hippokampos:680B:/ -137.3 "Shockwave" sync / 1[56]:[^:]*:Hippokampos:6807:/ -148.6 "Dissociation" sync / 1[56]:[^:]*:Hippokampos:6804:/ -153.7 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6805:/ -165.8 "Dissociation Dive" sync / 1[56]:[^:]*:Hippokampos:6806:/ -172.5 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6D14:/ -178.2 "Coherence Flare" sync / 1[56]:[^:]*:Hippokampos:6800:/ -180.7 "Coherence Line" sync / 1[56]:[^:]*:Hippokampos:6802:/ -182.7 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6803:/ -194.8 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:680F:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.3 "--sync--" StartsUsing { id: "680F", source: "Hippokampos" } window 20,20 +14.3 "Murky Depths" Ability { id: "680F", source: "Hippokampos" } +26.6 "Doubled Impact" Ability { id: "680E", source: "Hippokampos" } +32.8 "--middle--" Ability { id: "6835", source: "Hippokampos" } +43.6 "Spoken Cataract" Ability { id: ["67F7", "67F8", "67F9", "67FD"], source: "Hippokampos" } +58.3 "Spoken Cataract" Ability { id: ["67F7", "67F8", "67F9", "67FD"], source: "Hippokampos" } +72.0 "Murky Depths" Ability { id: "680F", source: "Hippokampos" } +77.2 "--middle--" Ability { id: "6835", source: "Hippokampos" } +84.6 "Sewage Deluge" Ability { id: "67F6", source: "Hippokampos" } +111.0 "Tainted Flood" Ability { id: "6809", source: "Hippokampos" } +126.9 "Predatory Sight" Ability { id: "680B", source: "Hippokampos" } +137.3 "Shockwave" Ability { id: "6807", source: "Hippokampos" } +148.6 "Dissociation" Ability { id: "6804", source: "Hippokampos" } +153.7 "--sync--" Ability { id: "6805", source: "Hippokampos" } +165.8 "Dissociation Dive" Ability { id: "6806", source: "Hippokampos" } +172.5 "--sync--" Ability { id: "6D14", source: "Hippokampos" } +178.2 "Coherence Flare" Ability { id: "6800", source: "Hippokampos" } +180.7 "Coherence Line" Ability { id: "6802", source: "Hippokampos" } +182.7 "--sync--" Ability { id: "6803", source: "Hippokampos" } +194.8 "Murky Depths" Ability { id: "680F", source: "Hippokampos" } -201.0 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6835:/ -208.6 "Sewage Deluge" sync / 1[56]:[^:]*:Hippokampos:67F6:/ -227.1 "Tainted Flood" sync / 1[56]:[^:]*:Hippokampos:6809:/ -235.0 "Spoken Cataract" sync / 1[56]:[^:]*:Hippokampos:(67F7|67F8|67F9|67FD):/ -250.7 "Sewage Eruption 1" #sync / 1[56]:[^:]*:Hippokampos:680D:/ -252.2 "Sewage Eruption 2" #sync / 1[56]:[^:]*:Hippokampos:680D:/ -253.7 "Sewage Eruption 3" #sync / 1[56]:[^:]*:Hippokampos:680D:/ -259.5 "Spoken Cataract" sync / 1[56]:[^:]*:Hippokampos:(67F7|67F8|67F9|67FD):/ -273.4 "Tainted Flood" sync / 1[56]:[^:]*:Hippokampos:6809:/ -279.8 "Predatory Sight" sync / 1[56]:[^:]*:Hippokampos:680B:/ -287.0 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:680F:/ -296.2 "Dissociation" sync / 1[56]:[^:]*:Hippokampos:6804:/ -301.3 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6805:/ -310.7 "Shockwave (knockback)" sync / 1[56]:[^:]*:Hippokampos:6807:/ -313.4 "Dissociation Dive" sync / 1[56]:[^:]*:Hippokampos:6806:/ -318.9 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6835:/ -325.3 "Dissociation" sync / 1[56]:[^:]*:Hippokampos:6804:/ -330.4 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6805:/ -342.3 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6D14:/ -342.5 "Dissociation Dive" sync / 1[56]:[^:]*:Hippokampos:6806:/ -342.5 "Sewage Eruption 1" #sync / 1[56]:[^:]*:Hippokampos:680D:/ -344.0 "Sewage Eruption 2" #sync / 1[56]:[^:]*:Hippokampos:680D:/ -345.5 "Sewage Eruption 3" #sync / 1[56]:[^:]*:Hippokampos:680D:/ -347.9 "Coherence Flare" sync / 1[56]:[^:]*:Hippokampos:6800:/ -350.4 "Coherence Line" sync / 1[56]:[^:]*:Hippokampos:6802:/ -352.4 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6803:/ -360.6 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:680F:/ -371.8 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:680F:/ -383.1 "Doubled Impact" sync / 1[56]:[^:]*:Hippokampos:680E:/ +201.0 "--middle--" Ability { id: "6835", source: "Hippokampos" } +208.6 "Sewage Deluge" Ability { id: "67F6", source: "Hippokampos" } +227.1 "Tainted Flood" Ability { id: "6809", source: "Hippokampos" } +235.0 "Spoken Cataract" Ability { id: ["67F7", "67F8", "67F9", "67FD"], source: "Hippokampos" } +250.7 "Sewage Eruption 1" #Ability { id: "680D", source: "Hippokampos" } +252.2 "Sewage Eruption 2" #Ability { id: "680D", source: "Hippokampos" } +253.7 "Sewage Eruption 3" #Ability { id: "680D", source: "Hippokampos" } +259.5 "Spoken Cataract" Ability { id: ["67F7", "67F8", "67F9", "67FD"], source: "Hippokampos" } +273.4 "Tainted Flood" Ability { id: "6809", source: "Hippokampos" } +279.8 "Predatory Sight" Ability { id: "680B", source: "Hippokampos" } +287.0 "Murky Depths" Ability { id: "680F", source: "Hippokampos" } +296.2 "Dissociation" Ability { id: "6804", source: "Hippokampos" } +301.3 "--sync--" Ability { id: "6805", source: "Hippokampos" } +310.7 "Shockwave (knockback)" Ability { id: "6807", source: "Hippokampos" } +313.4 "Dissociation Dive" Ability { id: "6806", source: "Hippokampos" } +318.9 "--middle--" Ability { id: "6835", source: "Hippokampos" } +325.3 "Dissociation" Ability { id: "6804", source: "Hippokampos" } +330.4 "--sync--" Ability { id: "6805", source: "Hippokampos" } +342.3 "--sync--" Ability { id: "6D14", source: "Hippokampos" } +342.5 "Dissociation Dive" Ability { id: "6806", source: "Hippokampos" } +342.5 "Sewage Eruption 1" #Ability { id: "680D", source: "Hippokampos" } +344.0 "Sewage Eruption 2" #Ability { id: "680D", source: "Hippokampos" } +345.5 "Sewage Eruption 3" #Ability { id: "680D", source: "Hippokampos" } +347.9 "Coherence Flare" Ability { id: "6800", source: "Hippokampos" } +350.4 "Coherence Line" Ability { id: "6802", source: "Hippokampos" } +352.4 "--sync--" Ability { id: "6803", source: "Hippokampos" } +360.6 "Murky Depths" Ability { id: "680F", source: "Hippokampos" } +371.8 "Murky Depths" Ability { id: "680F", source: "Hippokampos" } +383.1 "Doubled Impact" Ability { id: "680E", source: "Hippokampos" } -392.3 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6835:/ window 50,50 jump 201.0 -399.7 "Sewage Deluge" #sync / 1[56]:[^:]*:Hippokampos:67F6:/ -418.2 "Tainted Flood" #sync / 1[56]:[^:]*:Hippokampos:6809:/ -426.1 "Spoken Cataract" #sync / 1[56]:[^:]*:Hippokampos:(67F7|67F8|67F9|67FD):/ -441.8 "Sewage Eruption 1" #sync / 1[56]:[^:]*:Hippokampos:680D:/ +392.3 "--middle--" Ability { id: "6835", source: "Hippokampos" } window 50,50 jump 201.0 +399.7 "Sewage Deluge" #Ability { id: "67F6", source: "Hippokampos" } +418.2 "Tainted Flood" #Ability { id: "6809", source: "Hippokampos" } +426.1 "Spoken Cataract" #Ability { id: ["67F7", "67F8", "67F9", "67FD"], source: "Hippokampos" } +441.8 "Sewage Eruption 1" #Ability { id: "680D", source: "Hippokampos" } diff --git a/ui/raidboss/data/06-ew/raid/p2s.txt b/ui/raidboss/data/06-ew/raid/p2s.txt index 1771286fde..221081f38d 100644 --- a/ui/raidboss/data/06-ew/raid/p2s.txt +++ b/ui/raidboss/data/06-ew/raid/p2s.txt @@ -6,118 +6,118 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.0 "--sync--" sync / 14:[^:]*:Hippokampos:6833:/ window 15,15 -16.0 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:6833:/ -26.3 "Doubled Impact" sync / 1[56]:[^:]*:Hippokampos:6832:/ -31.5 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -38.8 "Sewage Deluge" sync / 1[56]:[^:]*:Hippokampos:6810:/ -48.0 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -61.8 "Spoken Cataract/Winged Cataract" sync / 1[56]:[^:]*:Hippokampos:(6811|6812|6813|6814|6815|6816|6817|6818):/ -81.9 "Coherence" sync / 1[56]:[^:]*:Hippokampos:681B:/ -82.6 "Coherence Flare" sync / 1[56]:[^:]*:Hippokampos:681A:/ -85.1 "Coherence Line" sync / 1[56]:[^:]*:Hippokampos:681C:/ -87.2 "--sync--" sync / 1[56]:[^:]*:Hippokampos:681D:/ -98.4 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:6833:/ -105.1 "Ominous Bubbling" sync / 1[56]:[^:]*:Hippokampos:682A:/ -115.9 "Shockwave" sync / 1[56]:[^:]*:Hippokampos:682F:/ -119.7 "Ominous Bubbling Groups" sync / 1[56]:[^:]*:Hippokampos:682B:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.0 "--sync--" StartsUsing { id: "6833", source: "Hippokampos" } window 15,15 +16.0 "Murky Depths" Ability { id: "6833", source: "Hippokampos" } +26.3 "Doubled Impact" Ability { id: "6832", source: "Hippokampos" } +31.5 "--middle--" Ability { id: "6836", source: "Hippokampos" } +38.8 "Sewage Deluge" Ability { id: "6810", source: "Hippokampos" } +48.0 "--middle--" Ability { id: "6836", source: "Hippokampos" } +61.8 "Spoken Cataract/Winged Cataract" Ability { id: ["6811", "6812", "6813", "6814", "6815", "6816", "6817", "6818"], source: "Hippokampos" } +81.9 "Coherence" Ability { id: "681B", source: "Hippokampos" } +82.6 "Coherence Flare" Ability { id: "681A", source: "Hippokampos" } +85.1 "Coherence Line" Ability { id: "681C", source: "Hippokampos" } +87.2 "--sync--" Ability { id: "681D", source: "Hippokampos" } +98.4 "Murky Depths" Ability { id: "6833", source: "Hippokampos" } +105.1 "Ominous Bubbling" Ability { id: "682A", source: "Hippokampos" } +115.9 "Shockwave" Ability { id: "682F", source: "Hippokampos" } +119.7 "Ominous Bubbling Groups" Ability { id: "682B", source: "Hippokampos" } # Predatory Avarice and Channeling Flow -128.1 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -134.5 "Predatory Avarice" sync / 1[56]:[^:]*:Hippokampos:6827:/ -152.2 "Winged Cataract/Spoken Cataract" sync / 1[56]:[^:]*:Hippokampos:(6811|6812|6813|6814|6815|6816|6817|6818):/ -158.5 "Hard Water" sync / 1[56]:[^:]*:Hippokampos:6828:/ -158.5 "Deadly Current" #sync sync / 1[56]:[^:]*:Hippokampos:6829:/ -171.9 "Channeling Flow" sync / 1[56]:[^:]*:Hippokampos:681E:/ -187.2 "Great Typhoon" sync / 1[56]:[^:]*:Hippokampos:(6820|6822):/ -187.7 "Crash" #sync / 1[56]:[^:]*:Hippokampos:6821:/ -202.2 "Doubled Impact" sync / 1[56]:[^:]*:Hippokampos:6832:/ -212.3 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:6833:/ +128.1 "--middle--" Ability { id: "6836", source: "Hippokampos" } +134.5 "Predatory Avarice" Ability { id: "6827", source: "Hippokampos" } +152.2 "Winged Cataract/Spoken Cataract" Ability { id: ["6811", "6812", "6813", "6814", "6815", "6816", "6817", "6818"], source: "Hippokampos" } +158.5 "Hard Water" Ability { id: "6828", source: "Hippokampos" } +158.5 "Deadly Current" #sync Ability { id: "6829", source: "Hippokampos" } +171.9 "Channeling Flow" Ability { id: "681E", source: "Hippokampos" } +187.2 "Great Typhoon" Ability { id: ["6820", "6822"], source: "Hippokampos" } +187.7 "Crash" #Ability { id: "6821", source: "Hippokampos" } +202.2 "Doubled Impact" Ability { id: "6832", source: "Hippokampos" } +212.3 "Murky Depths" Ability { id: "6833", source: "Hippokampos" } # Kampeos Harma -221.5 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -228.9 "Sewage Deluge" sync / 1[56]:[^:]*:Hippokampos:6810:/ -246.4 "Shockwave" sync / 1[56]:[^:]*:Hippokampos:682F:/ -259.3 "Kampeos Harma" sync / 1[56]:[^:]*:Hippokampos:6823:/ +221.5 "--middle--" Ability { id: "6836", source: "Hippokampos" } +228.9 "Sewage Deluge" Ability { id: "6810", source: "Hippokampos" } +246.4 "Shockwave" Ability { id: "682F", source: "Hippokampos" } +259.3 "Kampeos Harma" Ability { id: "6823", source: "Hippokampos" } 259.3 "--untargetable--" -259.7 "Kampeos Harma 1" #sync / 1[56]:[^:]*:Hippokampos:6824:/ -261.5 "Kampeos Harma 2" #sync / 1[56]:[^:]*:Hippokampos:6824:/ -263.3 "Kampeos Harma 3" #sync / 1[56]:[^:]*:Hippokampos:6824:/ -265.2 "Kampeos Harma 4" sync / 1[56]:[^:]*:Hippokampos:6824:/ +259.7 "Kampeos Harma 1" #Ability { id: "6824", source: "Hippokampos" } +261.5 "Kampeos Harma 2" #Ability { id: "6824", source: "Hippokampos" } +263.3 "Kampeos Harma 3" #Ability { id: "6824", source: "Hippokampos" } +265.2 "Kampeos Harma 4" Ability { id: "6824", source: "Hippokampos" } 266.7 "--targetable--" -266.8 "--sync--" sync / 1[56]:[^:]*:Hippokampos:682D:/ -269.9 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -281.7 "Doubled Impact" sync / 1[56]:[^:]*:Hippokampos:6832:/ -290.8 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:6833:/ +266.8 "--sync--" Ability { id: "682D", source: "Hippokampos" } +269.9 "--middle--" Ability { id: "6836", source: "Hippokampos" } +281.7 "Doubled Impact" Ability { id: "6832", source: "Hippokampos" } +290.8 "Murky Depths" Ability { id: "6833", source: "Hippokampos" } # Timed Channeling Flow 1 -297.0 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -304.4 "Channeling Overflow" sync / 1[56]:[^:]*:Hippokampos:6DC2:/ -311.6 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6837:/ -318.7 "Tainted Flood" sync / 1[56]:[^:]*:Hippokampos:6838:/ -319.7 "Great Typhoon (short)" sync / 1[56]:[^:]*:Hippokampos:(6820|6822):/ -320.2 "Crash" #sync / 1[56]:[^:]*:Hippokampos:6821:/ -327.0 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6837:/ -334.1 "Tainted Flood" sync / 1[56]:[^:]*:Hippokampos:6838:/ -334.7 "Great Typhoon (long)" sync / 1[56]:[^:]*:Hippokampos:(6820|6822):/ -335.2 "Crash" #sync / 1[56]:[^:]*:Hippokampos:6821:/ -345.2 "Spoken Cataract/Winged Cataract" sync / 1[56]:[^:]*:Hippokampos:(6811|6812|6813|6814|6815|6816|6817|6818):/ +297.0 "--middle--" Ability { id: "6836", source: "Hippokampos" } +304.4 "Channeling Overflow" Ability { id: "6DC2", source: "Hippokampos" } +311.6 "--sync--" Ability { id: "6837", source: "Hippokampos" } +318.7 "Tainted Flood" Ability { id: "6838", source: "Hippokampos" } +319.7 "Great Typhoon (short)" Ability { id: ["6820", "6822"], source: "Hippokampos" } +320.2 "Crash" #Ability { id: "6821", source: "Hippokampos" } +327.0 "--sync--" Ability { id: "6837", source: "Hippokampos" } +334.1 "Tainted Flood" Ability { id: "6838", source: "Hippokampos" } +334.7 "Great Typhoon (long)" Ability { id: ["6820", "6822"], source: "Hippokampos" } +335.2 "Crash" #Ability { id: "6821", source: "Hippokampos" } +345.2 "Spoken Cataract/Winged Cataract" Ability { id: ["6811", "6812", "6813", "6814", "6815", "6816", "6817", "6818"], source: "Hippokampos" } # Dissociation and Sewage Eruption 1 -357.9 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -364.4 "Predatory Avarice" sync / 1[56]:[^:]*:Hippokampos:6827:/ -370.8 "Dissociation" sync / 1[56]:[^:]*:Hippokampos:682C:/ -375.9 "--sync--" sync / 1[56]:[^:]*:Hippokampos:682D:/ -388.5 "Hard Water" sync / 1[56]:[^:]*:Hippokampos:6828:/ -388.5 "Deadly Current" #sync / 1[56]:[^:]*:Hippokampos:6829:/ -388.9 "Dissociation Dive" #sync / 1[56]:[^:]*:Hippokampos:682E:/ -388.9 "Winged Cataract/Spoken Cataract" #sync / 1[56]:[^:]*:Hippokampos:(6811|6812|6813|6814|6815|6816|6817|6818):/ -402.6 "Dissociation" sync / 1[56]:[^:]*:Hippokampos:682C:/ -407.7 "--sync--" sync / 1[56]:[^:]*:Hippokampos:682D:/ -415.8 "Sewage Eruption" sync / 1[56]:[^:]*:Hippokampos:6830:/ -419.8 "Sewage Eruption 1" #sync / 1[56]:[^:]*:Hippokampos:6831:/ -421.1 "--sync--" sync / 1[56]:[^:]*:Hippokampos:6837:/ -421.6 "Dissociation Dive" #sync / 1[56]:[^:]*:Hippokampos:682E:/ -421.6 "Sewage Eruption 2" #sync / 1[56]:[^:]*:Hippokampos:6831:/ -423.4 "Sewage Eruption 3" #sync / 1[56]:[^:]*:Hippokampos:6831:/ -428.2 "Tainted Flood" sync / 1[56]:[^:]*:Hippokampos:6838:/ -437.8 "--sync--" sync / 1[56]:[^:]*:Hippokampos:681B:/ -438.5 "Coherence Flare" sync / 1[56]:[^:]*:Hippokampos:681A:/ -441.1 "Coherence Line" sync / 1[56]:[^:]*:Hippokampos:681C:/ -443.1 "--sync--" sync / 1[56]:[^:]*:Hippokampos:681D:/ -453.4 "Doubled Impact" sync / 1[56]:[^:]*:Hippokampos:6832:/ -461.5 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:6833:/ +357.9 "--middle--" Ability { id: "6836", source: "Hippokampos" } +364.4 "Predatory Avarice" Ability { id: "6827", source: "Hippokampos" } +370.8 "Dissociation" Ability { id: "682C", source: "Hippokampos" } +375.9 "--sync--" Ability { id: "682D", source: "Hippokampos" } +388.5 "Hard Water" Ability { id: "6828", source: "Hippokampos" } +388.5 "Deadly Current" #Ability { id: "6829", source: "Hippokampos" } +388.9 "Dissociation Dive" #Ability { id: "682E", source: "Hippokampos" } +388.9 "Winged Cataract/Spoken Cataract" #Ability { id: ["6811", "6812", "6813", "6814", "6815", "6816", "6817", "6818"], source: "Hippokampos" } +402.6 "Dissociation" Ability { id: "682C", source: "Hippokampos" } +407.7 "--sync--" Ability { id: "682D", source: "Hippokampos" } +415.8 "Sewage Eruption" Ability { id: "6830", source: "Hippokampos" } +419.8 "Sewage Eruption 1" #Ability { id: "6831", source: "Hippokampos" } +421.1 "--sync--" Ability { id: "6837", source: "Hippokampos" } +421.6 "Dissociation Dive" #Ability { id: "682E", source: "Hippokampos" } +421.6 "Sewage Eruption 2" #Ability { id: "6831", source: "Hippokampos" } +423.4 "Sewage Eruption 3" #Ability { id: "6831", source: "Hippokampos" } +428.2 "Tainted Flood" Ability { id: "6838", source: "Hippokampos" } +437.8 "--sync--" Ability { id: "681B", source: "Hippokampos" } +438.5 "Coherence Flare" Ability { id: "681A", source: "Hippokampos" } +441.1 "Coherence Line" Ability { id: "681C", source: "Hippokampos" } +443.1 "--sync--" Ability { id: "681D", source: "Hippokampos" } +453.4 "Doubled Impact" Ability { id: "6832", source: "Hippokampos" } +461.5 "Murky Depths" Ability { id: "6833", source: "Hippokampos" } # Timed Channeling Flow 2 -471.7 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -479.2 "Sewage Deluge" sync / 1[56]:[^:]*:Hippokampos:6810:/ -488.4 "--middle--" sync / 1[56]:[^:]*:Hippokampos:6836:/ -496.1 "Channeling Overflow" sync / 1[56]:[^:]*:Hippokampos:6DC2:/ -511.3 "Great Typhoon (short)" sync / 1[56]:[^:]*:Hippokampos:(6820|6822):/ -511.8 "Crash" #sync / 1[56]:[^:]*:Hippokampos:6821:/ -513.5 "Coherence" sync / 1[56]:[^:]*:Hippokampos:681B:/ -514.2 "Coherence Flare" sync / 1[56]:[^:]*:Hippokampos:681A:/ -516.6 "Coherence Line" sync / 1[56]:[^:]*:Hippokampos:681C:/ -518.6 "--sync--" sync / 1[56]:[^:]*:Hippokampos:681D:/ -526.2 "Great Typhoon (long)" sync / 1[56]:[^:]*:Hippokampos:(6820|6822):/ -526.7 "Crash" #sync / 1[56]:[^:]*:Hippokampos:6821:/ +471.7 "--middle--" Ability { id: "6836", source: "Hippokampos" } +479.2 "Sewage Deluge" Ability { id: "6810", source: "Hippokampos" } +488.4 "--middle--" Ability { id: "6836", source: "Hippokampos" } +496.1 "Channeling Overflow" Ability { id: "6DC2", source: "Hippokampos" } +511.3 "Great Typhoon (short)" Ability { id: ["6820", "6822"], source: "Hippokampos" } +511.8 "Crash" #Ability { id: "6821", source: "Hippokampos" } +513.5 "Coherence" Ability { id: "681B", source: "Hippokampos" } +514.2 "Coherence Flare" Ability { id: "681A", source: "Hippokampos" } +516.6 "Coherence Line" Ability { id: "681C", source: "Hippokampos" } +518.6 "--sync--" Ability { id: "681D", source: "Hippokampos" } +526.2 "Great Typhoon (long)" Ability { id: ["6820", "6822"], source: "Hippokampos" } +526.7 "Crash" #Ability { id: "6821", source: "Hippokampos" } # Dissociation and Sewage Eruption 2 -538.8 "Dissociation" sync / 1[56]:[^:]*:Hippokampos:682C:/ -543.9 "--sync--" sync / 1[56]:[^:]*:Hippokampos:682D:/ -552.0 "Sewage Eruption" sync / 1[56]:[^:]*:Hippokampos:6830:/ -555.9 "Dissociation Dive" #sync / 1[56]:[^:]*:Hippokampos:682E:/ -556.0 "Sewage Eruption 1" #sync / 1[56]:[^:]*:Hippokampos:6831:/ -557.8 "Sewage Eruption 2" #sync / 1[56]:[^:]*:Hippokampos:6831:/ -559.6 "Sewage Eruption 3" #sync / 1[56]:[^:]*:Hippokampos:6831:/ -563.3 "Ominous Bubbling" sync / 1[56]:[^:]*:Hippokampos:682A:/ -573.9 "Shockwave" sync / 1[56]:[^:]*:Hippokampos:682F:/ -577.9 "Ominous Bubbling Groups" sync / 1[56]:[^:]*:Hippokampos:682B:/ -588.3 "Doubled Impact" sync / 1[56]:[^:]*:Hippokampos:6832:/ -600.4 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:6833:/ -611.6 "Murky Depths" sync / 1[56]:[^:]*:Hippokampos:6833:/ +538.8 "Dissociation" Ability { id: "682C", source: "Hippokampos" } +543.9 "--sync--" Ability { id: "682D", source: "Hippokampos" } +552.0 "Sewage Eruption" Ability { id: "6830", source: "Hippokampos" } +555.9 "Dissociation Dive" #Ability { id: "682E", source: "Hippokampos" } +556.0 "Sewage Eruption 1" #Ability { id: "6831", source: "Hippokampos" } +557.8 "Sewage Eruption 2" #Ability { id: "6831", source: "Hippokampos" } +559.6 "Sewage Eruption 3" #Ability { id: "6831", source: "Hippokampos" } +563.3 "Ominous Bubbling" Ability { id: "682A", source: "Hippokampos" } +573.9 "Shockwave" Ability { id: "682F", source: "Hippokampos" } +577.9 "Ominous Bubbling Groups" Ability { id: "682B", source: "Hippokampos" } +588.3 "Doubled Impact" Ability { id: "6832", source: "Hippokampos" } +600.4 "Murky Depths" Ability { id: "6833", source: "Hippokampos" } +611.6 "Murky Depths" Ability { id: "6833", source: "Hippokampos" } -626.5 "Sewage Deluge (enrage)" sync / 1[56]:[^:]*:Hippokampos:6834:/ +626.5 "Sewage Deluge (enrage)" Ability { id: "6834", source: "Hippokampos" } diff --git a/ui/raidboss/data/06-ew/raid/p3n.txt b/ui/raidboss/data/06-ew/raid/p3n.txt index dd93aeeb0f..c6b0001d21 100644 --- a/ui/raidboss/data/06-ew/raid/p3n.txt +++ b/ui/raidboss/data/06-ew/raid/p3n.txt @@ -3,35 +3,35 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 # -ii 669F 66A7 66A8 66A0 66A1 66AF 66B0 66B3 6D0C 6DDC 6EDD # -ic "Liturgic Bell" # -it Phoinix # -p 66AD:118 66A3: 200 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.1 "--sync--" sync / 14:[^:]*:Phoinix:(6696|6698):/ window 9.1,5 -13.8 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:(6696|6698):/ window 13.8,5 -19.0 "--giant fireplume?--" #sync / 1[56]:[^:]*:Phoinix:(6697|6699):/ -31.0 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:(6696|6698):/ -37.1 "--giant fireplume?--" #sync / 1[56]:[^:]*:Phoinix:(6697|6699):/ -49.2 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:66B8:/ -61.4 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:66B2:/ window 61.4,10 -75.6 "Darkened Fire" sync / 1[56]:[^:]*:Phoinix:6EDA:/ -85.7 "--sync--" sync / 1[56]:[^:]*:Phoinix:6EDC:/ -86.1 "Brightened Fire #1" #sync / 1[56]:[^:]*:Phoinix:6EDD:/ -87.2 "Brightened Fire #2" #sync / 1[56]:[^:]*:Phoinix:6EDD:/ -88.4 "Brightened Fire #3" #sync / 1[56]:[^:]*:Phoinix:6EDD:/ -89.5 "Brightened Fire #4" #sync / 1[56]:[^:]*:Phoinix:6EDD:/ -105.6 "Left Cinderwing/Right Cinderwing" sync / 1[56]:[^:]*:Phoinix:(66B4|66B5):/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.1 "--sync--" StartsUsing { id: ["6696", "6698"], source: "Phoinix" } window 9.1,5 +13.8 "Experimental Fireplume" Ability { id: ["6696", "6698"], source: "Phoinix" } window 13.8,5 +19.0 "--giant fireplume?--" #Ability { id: ["6697", "6699"], source: "Phoinix" } +31.0 "Experimental Fireplume" Ability { id: ["6696", "6698"], source: "Phoinix" } +37.1 "--giant fireplume?--" #Ability { id: ["6697", "6699"], source: "Phoinix" } +49.2 "Scorched Exaltation" Ability { id: "66B8", source: "Phoinix" } +61.4 "Heat of Condemnation" Ability { id: "66B2", source: "Phoinix" } window 61.4,10 +75.6 "Darkened Fire" Ability { id: "6EDA", source: "Phoinix" } +85.7 "--sync--" Ability { id: "6EDC", source: "Phoinix" } +86.1 "Brightened Fire #1" #Ability { id: "6EDD", source: "Phoinix" } +87.2 "Brightened Fire #2" #Ability { id: "6EDD", source: "Phoinix" } +88.4 "Brightened Fire #3" #Ability { id: "6EDD", source: "Phoinix" } +89.5 "Brightened Fire #4" #Ability { id: "6EDD", source: "Phoinix" } +105.6 "Left Cinderwing/Right Cinderwing" Ability { id: ["66B4", "66B5"], source: "Phoinix" } # There might be an enrage here? More data will be needed. 110.7 "--untargetable--" -118.0 "Trail of Condemnation" sync / 1[56]:[^:]*:Phoinix:66AD:/ window 118.0,10 +118.0 "Trail of Condemnation" Ability { id: "66AD", source: "Phoinix" } window 118.0,10 126.8 "--adds targetable--" -127.0 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66A2:/ -135.1 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66A2:/ jump 127.0 +127.0 "Blazing Rain" Ability { id: "66A2", source: "Phoinix" } +135.1 "Blazing Rain" Ability { id: "66A2", source: "Phoinix" } jump 127.0 143.2 "Blazing Rain" 151.3 "Blazing Rain" 159.4 "Blazing Rain" @@ -40,70 +40,70 @@ hideall "--sync--" 183.7 "Blazing Rain" # There's no cast time on this ability. -200.0 "Flames of Undeath" sync / 1[56]:[^:]*:Phoinix:66A3:/ window 200,10 +200.0 "Flames of Undeath" Ability { id: "66A3", source: "Phoinix" } window 200,10 202.0 "--targetable--" # Post-intermission block, small differences from main rotation block. -203.4 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66A2:/ -206.2 "Joint Pyre" sync / 1[56]:[^:]*:Sparkfledged:66A5:/ -209.1 "--sync--" sync / 1[56]:[^:]*:Phoinix:66AC:/ -221.2 "Dead Rebirth" sync / 1[56]:[^:]*:Phoinix:66A9:/ window 221.2,60 -231.4 "Left Cinderwing/Right Cinderwing" sync / 1[56]:[^:]*:Phoinix:(66B4|66B5):/ -239.6 "Fledgling Flight" sync / 1[56]:[^:]*:Phoinix:66AA:/ -253.8 "Ashen Eye #1" #sync / 1[56]:[^:]*:Sparkfledged:66AB:/ -255.7 "Ashen Eye #2" #sync / 1[56]:[^:]*:Sparkfledged:66AB:/ -257.7 "Experimental Charplume" sync / 1[56]:[^:]*:Phoinix:669C:/ -257.7 "Ashen Eye #3" #sync / 1[56]:[^:]*:Sparkfledged:66AB:/ -259.7 "Ashen Eye #4" #sync / 1[56]:[^:]*:Sparkfledged:66AB:/ -262.8 "Charplume" sync / 1[56]:[^:]*:Phoinix:669D:/ -262.8 "--sync--" sync / 1[56]:[^:]*:Phoinix:66AC:/ -277.9 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:66B2:/ -289.2 "--sync--" sync / 1[56]:[^:]*:Phoinix:669E:/ -291.3 "Devouring Brand" sync / 1[56]:[^:]*:Phoinix:66A0:/ duration 13 -300.7 "--fire expands--" sync / 1[56]:[^:]*:Phoinix:6D82:/ -305.6 "--sync--" sync / 1[56]:[^:]*:Phoinix:66B6:/ -308.7 "Searing Breeze" sync / 1[56]:[^:]*:Phoinix:66B7:/ -316.8 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:66B8:/ -326.0 "Experimental Charplume" sync / 1[56]:[^:]*:Phoinix:669C:/ -331.1 "Charplume" sync / 1[56]:[^:]*:Phoinix:669D:/ -335.1 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:(6696|6698):/ window 30,30 -341.2 "--giant fireplume?--" #sync / 1[56]:[^:]*:Phoinix:(6697|6699):/ +203.4 "Blazing Rain" Ability { id: "66A2", source: "Phoinix" } +206.2 "Joint Pyre" Ability { id: "66A5", source: "Sparkfledged" } +209.1 "--sync--" Ability { id: "66AC", source: "Phoinix" } +221.2 "Dead Rebirth" Ability { id: "66A9", source: "Phoinix" } window 221.2,60 +231.4 "Left Cinderwing/Right Cinderwing" Ability { id: ["66B4", "66B5"], source: "Phoinix" } +239.6 "Fledgling Flight" Ability { id: "66AA", source: "Phoinix" } +253.8 "Ashen Eye #1" #Ability { id: "66AB", source: "Sparkfledged" } +255.7 "Ashen Eye #2" #Ability { id: "66AB", source: "Sparkfledged" } +257.7 "Experimental Charplume" Ability { id: "669C", source: "Phoinix" } +257.7 "Ashen Eye #3" #Ability { id: "66AB", source: "Sparkfledged" } +259.7 "Ashen Eye #4" #Ability { id: "66AB", source: "Sparkfledged" } +262.8 "Charplume" Ability { id: "669D", source: "Phoinix" } +262.8 "--sync--" Ability { id: "66AC", source: "Phoinix" } +277.9 "Heat of Condemnation" Ability { id: "66B2", source: "Phoinix" } +289.2 "--sync--" Ability { id: "669E", source: "Phoinix" } +291.3 "Devouring Brand" Ability { id: "66A0", source: "Phoinix" } duration 13 +300.7 "--fire expands--" Ability { id: "6D82", source: "Phoinix" } +305.6 "--sync--" Ability { id: "66B6", source: "Phoinix" } +308.7 "Searing Breeze" Ability { id: "66B7", source: "Phoinix" } +316.8 "Scorched Exaltation" Ability { id: "66B8", source: "Phoinix" } +326.0 "Experimental Charplume" Ability { id: "669C", source: "Phoinix" } +331.1 "Charplume" Ability { id: "669D", source: "Phoinix" } +335.1 "Experimental Fireplume" Ability { id: ["6696", "6698"], source: "Phoinix" } window 30,30 +341.2 "--giant fireplume?--" #Ability { id: ["6697", "6699"], source: "Phoinix" } 349.2 "--untargetable--" -356.5 "Trail of Condemnation" sync / 1[56]:[^:]*:Phoinix:66AD:/ +356.5 "Trail of Condemnation" Ability { id: "66AD", source: "Phoinix" } 361.2 "--targetable--" # Rotation block -369.3 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:66B2:/ -378.5 "Fledgling Flight" sync / 1[56]:[^:]*:Phoinix:66AA:/ -392.4 "Ashen Eye #1" #sync / 1[56]:[^:]*:Sparkfledged:66AB:/ -394.3 "Ashen Eye #2" #sync / 1[56]:[^:]*:Sparkfledged:66AB:/ -396.3 "Ashen Eye #3" #sync / 1[56]:[^:]*:Sparkfledged:66AB:/ -398.3 "Ashen Eye #4" #sync / 1[56]:[^:]*:Sparkfledged:66AB:/ -399.7 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:(6696|6698):/ -405.8 "--giant fireplume?--" #sync / 1[56]:[^:]*:Phoinix:(6697|6699):/ -405.9 "--sync--" sync / 1[56]:[^:]*:Phoinix:66AC:/ -417.0 "--sync--" sync / 1[56]:[^:]*:Phoinix:66B6:/ -420.1 "Searing Breeze x3" #sync / 1[56]:[^:]*:Phoinix:66B7:/ -422.1 "Devouring Brand" sync / 1[56]:[^:]*:Phoinix:669E:/ duration 15 -433.4 "Darkened Fire" sync / 1[56]:[^:]*:Phoinix:6EDA:/ -433.8 "--fire expands--" sync / 1[56]:[^:]*:Phoinix:6D82:/ -443.7 "--sync--" sync / 1[56]:[^:]*:Phoinix:6EDC:/ -444.0 "Brightened Fire #1" #sync / 1[56]:[^:]*:Phoinix:6EDD:/ -445.2 "Brightened Fire #2" #sync / 1[56]:[^:]*:Phoinix:6EDD:/ -446.3 "Brightened Fire #3" #sync / 1[56]:[^:]*:Phoinix:6EDD:/ -447.5 "Brightened Fire #4" #sync / 1[56]:[^:]*:Phoinix:6EDD:/ -463.6 "Left Cinderwing/Right Cinderwing" sync / 1[56]:[^:]*:Phoinix:(66B4|66B5):/ window 30,30 -474.7 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:66B8:/ -484.9 "Experimental Charplume" sync / 1[56]:[^:]*:Phoinix:669C:/ -490.0 "Charplume" sync / 1[56]:[^:]*:Phoinix:669D:/ -494.0 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:(6696|6698):/ window 30,30 -500.1 "--giant fireplume?--" #sync / 1[56]:[^:]*:Phoinix:(6697|6699):/ +369.3 "Heat of Condemnation" Ability { id: "66B2", source: "Phoinix" } +378.5 "Fledgling Flight" Ability { id: "66AA", source: "Phoinix" } +392.4 "Ashen Eye #1" #Ability { id: "66AB", source: "Sparkfledged" } +394.3 "Ashen Eye #2" #Ability { id: "66AB", source: "Sparkfledged" } +396.3 "Ashen Eye #3" #Ability { id: "66AB", source: "Sparkfledged" } +398.3 "Ashen Eye #4" #Ability { id: "66AB", source: "Sparkfledged" } +399.7 "Experimental Fireplume" Ability { id: ["6696", "6698"], source: "Phoinix" } +405.8 "--giant fireplume?--" #Ability { id: ["6697", "6699"], source: "Phoinix" } +405.9 "--sync--" Ability { id: "66AC", source: "Phoinix" } +417.0 "--sync--" Ability { id: "66B6", source: "Phoinix" } +420.1 "Searing Breeze x3" #Ability { id: "66B7", source: "Phoinix" } +422.1 "Devouring Brand" Ability { id: "669E", source: "Phoinix" } duration 15 +433.4 "Darkened Fire" Ability { id: "6EDA", source: "Phoinix" } +433.8 "--fire expands--" Ability { id: "6D82", source: "Phoinix" } +443.7 "--sync--" Ability { id: "6EDC", source: "Phoinix" } +444.0 "Brightened Fire #1" #Ability { id: "6EDD", source: "Phoinix" } +445.2 "Brightened Fire #2" #Ability { id: "6EDD", source: "Phoinix" } +446.3 "Brightened Fire #3" #Ability { id: "6EDD", source: "Phoinix" } +447.5 "Brightened Fire #4" #Ability { id: "6EDD", source: "Phoinix" } +463.6 "Left Cinderwing/Right Cinderwing" Ability { id: ["66B4", "66B5"], source: "Phoinix" } window 30,30 +474.7 "Scorched Exaltation" Ability { id: "66B8", source: "Phoinix" } +484.9 "Experimental Charplume" Ability { id: "669C", source: "Phoinix" } +490.0 "Charplume" Ability { id: "669D", source: "Phoinix" } +494.0 "Experimental Fireplume" Ability { id: ["6696", "6698"], source: "Phoinix" } window 30,30 +500.1 "--giant fireplume?--" #Ability { id: ["6697", "6699"], source: "Phoinix" } 508.1 "--untargetable--" -515.4 "Trail of Condemnation" sync / 1[56]:[^:]*:Phoinix:66AD:/ -518.9 "Flare of Condemnation" sync / 1[56]:[^:]*:Phoinix:66B0:/ +515.4 "Trail of Condemnation" Ability { id: "66AD", source: "Phoinix" } +518.9 "Flare of Condemnation" Ability { id: "66B0", source: "Phoinix" } 520.1 "--targetable--" -528.2 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:66B2:/ jump 369.3 +528.2 "Heat of Condemnation" Ability { id: "66B2", source: "Phoinix" } jump 369.3 537.4 "Fledgling Flight" 551.3 "Ashen Eye #1" 553.2 "Ashen Eye #2" diff --git a/ui/raidboss/data/06-ew/raid/p3s.txt b/ui/raidboss/data/06-ew/raid/p3s.txt index 03ebd2bad6..8b46a863de 100644 --- a/ui/raidboss/data/06-ew/raid/p3s.txt +++ b/ui/raidboss/data/06-ew/raid/p3s.txt @@ -8,145 +8,145 @@ hideall "--sync--" # Note: 66BF "middle" happens 6.2s after experimental fireplume -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 - -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -8.7 "--sync--" sync / 14:[^:]*:Phoinix:6706:/ window 10,10 -13.7 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:6706:/ -22.8 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:6700:/ - -34.0 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:(66BE|66C0):/ -40.1 "--giant fireplume?--" #sync / 1[56]:[^:]*:Phoinix:66BF:/ -44.6 "Left Cinderwing/Right Cinderwing" sync / 1[56]:[^:]*:Phoinix:(6702|6703):/ -58.8 "Darkened Fire" sync / 1[56]:[^:]*:Phoinix:66B9:/ -69.0 "Brightened Fire x8" sync / 1[56]:[^:]*:Phoinix:66BC:/ duration 8.7 -96.5 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:6700:/ -104.7 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:6706:/ -114.9 "Devouring Brand" sync / 1[56]:[^:]*:Phoinix:66CE:/ -122.0 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:(66BE|66C0):/ -128.2 "--giant fireplume?--" #sync / 1[56]:[^:]*:Phoinix:66BF:/ -131.9 "--fire expands--" sync / 1[56]:[^:]*:Phoinix:6D83:/ -132.2 "Searing Breeze" sync / 1[56]:[^:]*:Phoinix:6704:/ -140.4 "Left Cinderwing/Right Cinderwing" sync / 1[56]:[^:]*:Phoinix:(6702|6703):/ -149.5 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:6700:/ -157.6 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:(66BE|66C0):/ -163.7 "--giant fireplume?--" #sync / 1[56]:[^:]*:Phoinix:66BF:/ +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 + +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +8.7 "--sync--" StartsUsing { id: "6706", source: "Phoinix" } window 10,10 +13.7 "Scorched Exaltation" Ability { id: "6706", source: "Phoinix" } +22.8 "Heat of Condemnation" Ability { id: "6700", source: "Phoinix" } + +34.0 "Experimental Fireplume" Ability { id: ["66BE", "66C0"], source: "Phoinix" } +40.1 "--giant fireplume?--" #Ability { id: "66BF", source: "Phoinix" } +44.6 "Left Cinderwing/Right Cinderwing" Ability { id: ["6702", "6703"], source: "Phoinix" } +58.8 "Darkened Fire" Ability { id: "66B9", source: "Phoinix" } +69.0 "Brightened Fire x8" Ability { id: "66BC", source: "Phoinix" } duration 8.7 +96.5 "Heat of Condemnation" Ability { id: "6700", source: "Phoinix" } +104.7 "Scorched Exaltation" Ability { id: "6706", source: "Phoinix" } +114.9 "Devouring Brand" Ability { id: "66CE", source: "Phoinix" } +122.0 "Experimental Fireplume" Ability { id: ["66BE", "66C0"], source: "Phoinix" } +128.2 "--giant fireplume?--" #Ability { id: "66BF", source: "Phoinix" } +131.9 "--fire expands--" Ability { id: "6D83", source: "Phoinix" } +132.2 "Searing Breeze" Ability { id: "6704", source: "Phoinix" } +140.4 "Left Cinderwing/Right Cinderwing" Ability { id: ["6702", "6703"], source: "Phoinix" } +149.5 "Heat of Condemnation" Ability { id: "6700", source: "Phoinix" } +157.6 "Experimental Fireplume" Ability { id: ["66BE", "66C0"], source: "Phoinix" } +163.7 "--giant fireplume?--" #Ability { id: "66BF", source: "Phoinix" } 162.2 "--untargetable--" -172.0 "Trail of Condemnation" sync / 1[56]:[^:]*:Phoinix:(66FB|66FC):/ -173.6 "Flare of Condemnation/Sparks of Condemnation" sync / 1[56]:[^:]*:Phoinix:(66FE|66FF):/ +172.0 "Trail of Condemnation" Ability { id: ["66FB", "66FC"], source: "Phoinix" } +173.6 "Flare of Condemnation/Sparks of Condemnation" Ability { id: ["66FE", "66FF"], source: "Phoinix" } # Adds Phase 1 180.8 "--adds targetable--" -180.9 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -189.0 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -197.1 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -205.2 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -208.9 "Great Whirlwind (enrage?)" sync / 1[56]:[^:]*:Sunbird:66D3:/ +180.9 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +189.0 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +197.1 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +205.2 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +208.9 "Great Whirlwind (enrage?)" Ability { id: "66D3", source: "Sunbird" } # Adds Phase 2 -300.0 "Flames of Undeath 1" sync / 1[56]:[^:]*:Phoinix:66D6:/ window 300,0 -300.3 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ +300.0 "Flames of Undeath 1" Ability { id: "66D6", source: "Phoinix" } window 300,0 +300.3 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } 301.1 "--adds targetable--" -303.3 "Joint Pyre" sync / 1[56]:[^:]*:Sunbird:66D8:/ -303.8 "Joint Pyre" #sync / 1[56]:[^:]*:Sunbird:66D8:/ -304.7 "Joint Pyre" sync / 1[56]:[^:]*:Sunbird:66D8:/ -305.1 "Joint Pyre" #sync / 1[56]:[^:]*:Sunbird:66D8:/ -308.3 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -316.4 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -317.2 "Fireglide Sweep" sync / 1[56]:[^:]*:Sunbird:66E0:/ -317.5 "Fireglide Sweep 1" #sync / 1[56]:[^:]*:Sunbird:66E1:/ -319.8 "Fireglide Sweep 2" #sync / 1[56]:[^:]*:Sunbird:66E1:/ -324.4 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -332.5 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -340.6 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -348.7 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -354.1 "Great Whirlwind (enrage?)" sync / 1[56]:[^:]*:Sunbird:66D5:/ +303.3 "Joint Pyre" Ability { id: "66D8", source: "Sunbird" } +303.8 "Joint Pyre" #Ability { id: "66D8", source: "Sunbird" } +304.7 "Joint Pyre" Ability { id: "66D8", source: "Sunbird" } +305.1 "Joint Pyre" #Ability { id: "66D8", source: "Sunbird" } +308.3 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +316.4 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +317.2 "Fireglide Sweep" Ability { id: "66E0", source: "Sunbird" } +317.5 "Fireglide Sweep 1" #Ability { id: "66E1", source: "Sunbird" } +319.8 "Fireglide Sweep 2" #Ability { id: "66E1", source: "Sunbird" } +324.4 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +332.5 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +340.6 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +348.7 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +354.1 "Great Whirlwind (enrage?)" Ability { id: "66D5", source: "Sunbird" } # Adds Phase 3 -500.0 "Flames of Undeath 2" sync / 1[56]:[^:]*:Phoinix:66D6:/ window 199,0 +500.0 "Flames of Undeath 2" Ability { id: "66D6", source: "Phoinix" } window 199,0 502.0 "--targetable--" -509.1 "--sync--" sync / 1[56]:[^:]*:Phoinix:66AC:/ -511.2 "--sync--" sync / 14:[^:]*:Phoinix:66E4:/ window 600,20 -521.2 "Dead Rebirth" sync / 1[56]:[^:]*:Phoinix:66E4:/ - -536.4 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:6700:/ -547.6 "Fledgling Flight" sync / 1[56]:[^:]*:Phoinix:66AA:/ -561.9 "Ashen Eye" sync / 1[56]:[^:]*:Sparkfledged:66E6:/ - -564.8 "--sync--" sync / 1[56]:[^:]*:Phoinix:66AC:/ -574.9 "Experimental Gloryplume" sync / 1[56]:[^:]*:Phoinix:66CA:/ -577.5 "--sync--" sync / 1[56]:[^:]*:Phoinix:(66CC|66C8):/ -588.1 "Gloryplume" sync / 1[56]:[^:]*:Phoinix:(66CD|66C9):/ -606.1 "Fountain of Fire" sync / 1[56]:[^:]*:Phoinix:66E7:/ -614.2 "Sun's Pinion" sync / 1[56]:[^:]*:Phoinix:66EA:/ -614.2 "Sun's Pinion 1" sync / 1[56]:[^:]*:Phoinix:66EB:/ -616.1 "Fountain of Death 1" sync / 1[56]:[^:]*:Fountain of Fire:66E9:/ -619.3 "Sun's Pinion 2" sync / 1[56]:[^:]*:Phoinix:66EB:/ -621.1 "Fountain of Death 2" sync / 1[56]:[^:]*:Fountain of Fire:66E9:/ -624.3 "Sun's Pinion 3" sync / 1[56]:[^:]*:Phoinix:66EB:/ -626.1 "Fountain of Death 3" sync / 1[56]:[^:]*:Fountain of Fire:66E9:/ -631.1 "Fountain of Death 4" sync / 1[56]:[^:]*:Fountain of Fire:66E9:/ -637.4 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:6706:/ -644.5 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:6706:/ -655.6 "Heat of Condemnation" sync / 1[56]:[^:]*:Phoinix:6700:/ - -661.8 "--sync--" sync / 1[56]:[^:]*:Phoinix:6F16:/ -670.3 "Firestorms of Asphodelos" sync / 1[56]:[^:]*:Phoinix:66F0:/ - -676.5 "Flames of Asphodelos" sync / 1[56]:[^:]*:Phoinix:66F1:/ -681.7 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -683.7 "Experimental Ashplume" sync / 1[56]:[^:]*:Phoinix:(66C2|66C4):/ -684.5 "Flames of Asphodelos 1" sync / 1[56]:[^:]*:Phoinix:66F2:/ -685.5 "Flames of Asphodelos 2" sync / 1[56]:[^:]*:Phoinix:66F3:/ -686.5 "Flames of Asphodelos 3" sync / 1[56]:[^:]*:Phoinix:66F4:/ -687.8 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -689.8 "Ashplume" sync / 1[56]:[^:]*:Phoinix:(66C3|66C5):/ - -694.8 "Flames of Asphodelos" sync / 1[56]:[^:]*:Phoinix:66F1:/ -696.9 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -702.7 "Flames of Asphodelos 1" sync / 1[56]:[^:]*:Phoinix:66F2:/ -703.7 "Flames of Asphodelos 2" sync / 1[56]:[^:]*:Phoinix:66F3:/ -704.7 "Flames of Asphodelos 3" sync / 1[56]:[^:]*:Phoinix:66F4:/ -708.9 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ - -712.9 "Storms of Asphodelos" sync / 1[56]:[^:]*:Phoinix:66F5:/ -713.0 "Winds of Asphodelos" sync / 1[56]:[^:]*:Phoinix:66F6:/ -713.1 "Beacons of Asphodelos" sync / 1[56]:[^:]*:Phoinix:66F7:/ -719.0 "Darkblaze Twister" sync / 1[56]:[^:]*:Phoinix:66F8:/ -721.0 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -726.1 "Searing Breeze" sync / 1[56]:[^:]*:Phoinix:6704:/ -728.1 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ - -735.2 "Experimental Ashplume" sync / 1[56]:[^:]*:Phoinix:(66C2|66C4):/ -736.2 "Blazing Rain" sync / 1[56]:[^:]*:Phoinix:66D2:/ -738.0 "Dark Twister" sync / 1[56]:[^:]*:Darkblaze Twister:66F9:/ -740.0 "Burning Twister" sync / 1[56]:[^:]*:Darkblaze Twister:66FA:/ -742.3 "Ashplume" sync / 1[56]:[^:]*:Phoinix:(66C3|66C5):/ -749.3 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:6706:/ - -762.5 "Death's Toll" sync / 1[56]:[^:]*:Phoinix:66ED:/ -768.7 "Fledgling Flight" sync / 1[56]:[^:]*:Phoinix:66AA:/ -783.0 "Ashen Eye x4" duration 3 #sync / 1[56]:[^:]*:Sparkfledged:66E6:/ - -794.9 "Life's Agonies" sync / 1[56]:[^:]*:Phoinix:66EE:/ -798.1 "--sync--" sync / 1[56]:[^:]*:Phoinix:66AC:/ - -807.2 "Experimental Gloryplume" sync / 1[56]:[^:]*:Phoinix:66C6:/ -809.8 "--sync--" sync / 1[56]:[^:]*:Phoinix:(66CC|66C8):/ -814.4 "Gloryplume" sync / 1[56]:[^:]*:Phoinix:(66CD|66C9):/ +509.1 "--sync--" Ability { id: "66AC", source: "Phoinix" } +511.2 "--sync--" StartsUsing { id: "66E4", source: "Phoinix" } window 600,20 +521.2 "Dead Rebirth" Ability { id: "66E4", source: "Phoinix" } + +536.4 "Heat of Condemnation" Ability { id: "6700", source: "Phoinix" } +547.6 "Fledgling Flight" Ability { id: "66AA", source: "Phoinix" } +561.9 "Ashen Eye" Ability { id: "66E6", source: "Sparkfledged" } + +564.8 "--sync--" Ability { id: "66AC", source: "Phoinix" } +574.9 "Experimental Gloryplume" Ability { id: "66CA", source: "Phoinix" } +577.5 "--sync--" Ability { id: ["66CC", "66C8"], source: "Phoinix" } +588.1 "Gloryplume" Ability { id: ["66CD", "66C9"], source: "Phoinix" } +606.1 "Fountain of Fire" Ability { id: "66E7", source: "Phoinix" } +614.2 "Sun's Pinion" Ability { id: "66EA", source: "Phoinix" } +614.2 "Sun's Pinion 1" Ability { id: "66EB", source: "Phoinix" } +616.1 "Fountain of Death 1" Ability { id: "66E9", source: "Fountain of Fire" } +619.3 "Sun's Pinion 2" Ability { id: "66EB", source: "Phoinix" } +621.1 "Fountain of Death 2" Ability { id: "66E9", source: "Fountain of Fire" } +624.3 "Sun's Pinion 3" Ability { id: "66EB", source: "Phoinix" } +626.1 "Fountain of Death 3" Ability { id: "66E9", source: "Fountain of Fire" } +631.1 "Fountain of Death 4" Ability { id: "66E9", source: "Fountain of Fire" } +637.4 "Scorched Exaltation" Ability { id: "6706", source: "Phoinix" } +644.5 "Scorched Exaltation" Ability { id: "6706", source: "Phoinix" } +655.6 "Heat of Condemnation" Ability { id: "6700", source: "Phoinix" } + +661.8 "--sync--" Ability { id: "6F16", source: "Phoinix" } +670.3 "Firestorms of Asphodelos" Ability { id: "66F0", source: "Phoinix" } + +676.5 "Flames of Asphodelos" Ability { id: "66F1", source: "Phoinix" } +681.7 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +683.7 "Experimental Ashplume" Ability { id: ["66C2", "66C4"], source: "Phoinix" } +684.5 "Flames of Asphodelos 1" Ability { id: "66F2", source: "Phoinix" } +685.5 "Flames of Asphodelos 2" Ability { id: "66F3", source: "Phoinix" } +686.5 "Flames of Asphodelos 3" Ability { id: "66F4", source: "Phoinix" } +687.8 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +689.8 "Ashplume" Ability { id: ["66C3", "66C5"], source: "Phoinix" } + +694.8 "Flames of Asphodelos" Ability { id: "66F1", source: "Phoinix" } +696.9 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +702.7 "Flames of Asphodelos 1" Ability { id: "66F2", source: "Phoinix" } +703.7 "Flames of Asphodelos 2" Ability { id: "66F3", source: "Phoinix" } +704.7 "Flames of Asphodelos 3" Ability { id: "66F4", source: "Phoinix" } +708.9 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } + +712.9 "Storms of Asphodelos" Ability { id: "66F5", source: "Phoinix" } +713.0 "Winds of Asphodelos" Ability { id: "66F6", source: "Phoinix" } +713.1 "Beacons of Asphodelos" Ability { id: "66F7", source: "Phoinix" } +719.0 "Darkblaze Twister" Ability { id: "66F8", source: "Phoinix" } +721.0 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +726.1 "Searing Breeze" Ability { id: "6704", source: "Phoinix" } +728.1 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } + +735.2 "Experimental Ashplume" Ability { id: ["66C2", "66C4"], source: "Phoinix" } +736.2 "Blazing Rain" Ability { id: "66D2", source: "Phoinix" } +738.0 "Dark Twister" Ability { id: "66F9", source: "Darkblaze Twister" } +740.0 "Burning Twister" Ability { id: "66FA", source: "Darkblaze Twister" } +742.3 "Ashplume" Ability { id: ["66C3", "66C5"], source: "Phoinix" } +749.3 "Scorched Exaltation" Ability { id: "6706", source: "Phoinix" } + +762.5 "Death's Toll" Ability { id: "66ED", source: "Phoinix" } +768.7 "Fledgling Flight" Ability { id: "66AA", source: "Phoinix" } +783.0 "Ashen Eye x4" duration 3 #Ability { id: "66E6", source: "Sparkfledged" } + +794.9 "Life's Agonies" Ability { id: "66EE", source: "Phoinix" } +798.1 "--sync--" Ability { id: "66AC", source: "Phoinix" } + +807.2 "Experimental Gloryplume" Ability { id: "66C6", source: "Phoinix" } +809.8 "--sync--" Ability { id: ["66CC", "66C8"], source: "Phoinix" } +814.4 "Gloryplume" Ability { id: ["66CD", "66C9"], source: "Phoinix" } 817.3 "--untargetable--" -827.1 "Trail of Condemnation" sync / 1[56]:[^:]*:Phoinix:(66FB|66FC):/ -828.7 "Flare of Condemnation/Sparks of Condemnation" sync / 1[56]:[^:]*:Phoinix:(66FE|66FF):/ +827.1 "Trail of Condemnation" Ability { id: ["66FB", "66FC"], source: "Phoinix" } +828.7 "Flare of Condemnation/Sparks of Condemnation" Ability { id: ["66FE", "66FF"], source: "Phoinix" } 831.8 "--targetable--" -839.9 "Devouring Brand" sync / 1[56]:[^:]*:Phoinix:66CE:/ -847.0 "Experimental Fireplume" sync / 1[56]:[^:]*:Phoinix:66BE:/ -856.9 "Devouring Brand" sync / 1[56]:[^:]*:Phoinix:6D83:/ -857.2 "Searing Breeze" sync / 1[56]:[^:]*:Phoinix:6704:/ -865.4 "Left Cinderwing/Right Cinderwing" sync / 1[56]:[^:]*:Phoinix:(6702|6703):/ -876.5 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:6706:/ -883.6 "Scorched Exaltation" sync / 1[56]:[^:]*:Phoinix:6706:/ - -885.8 "--sync--" sync / 14:[^:]*:Phoinix:6C2B:/ window 20,20 -895.8 "Final Exaltation (enrage)" sync / 1[56]:[^:]*:Phoinix:6C2B:/ +839.9 "Devouring Brand" Ability { id: "66CE", source: "Phoinix" } +847.0 "Experimental Fireplume" Ability { id: "66BE", source: "Phoinix" } +856.9 "Devouring Brand" Ability { id: "6D83", source: "Phoinix" } +857.2 "Searing Breeze" Ability { id: "6704", source: "Phoinix" } +865.4 "Left Cinderwing/Right Cinderwing" Ability { id: ["6702", "6703"], source: "Phoinix" } +876.5 "Scorched Exaltation" Ability { id: "6706", source: "Phoinix" } +883.6 "Scorched Exaltation" Ability { id: "6706", source: "Phoinix" } + +885.8 "--sync--" StartsUsing { id: "6C2B", source: "Phoinix" } window 20,20 +895.8 "Final Exaltation (enrage)" Ability { id: "6C2B", source: "Phoinix" } diff --git a/ui/raidboss/data/06-ew/raid/p4n.txt b/ui/raidboss/data/06-ew/raid/p4n.txt index 8213281de5..432c7a6575 100644 --- a/ui/raidboss/data/06-ew/raid/p4n.txt +++ b/ui/raidboss/data/06-ew/raid/p4n.txt @@ -17,83 +17,83 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.8 "--sync--" sync / 14:[^:]*:Hesperos:6A50:/ window 20,20 -15.8 "Elegant Evisceration" sync / 1[56]:[^:]*:Hesperos:6A50:/ -24.0 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CA:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.8 "--sync--" StartsUsing { id: "6A50", source: "Hesperos" } window 20,20 +15.8 "Elegant Evisceration" Ability { id: "6A50", source: "Hesperos" } +24.0 "--sync--" Ability { id: "69CA", source: "Hesperos" } -31.0 "Setting the Scene 1" sync / 1[56]:[^:]*:Hesperos:69CB:/ -43.2 "Pinax" sync / 1[56]:[^:]*:Hesperos:69CF:/ -53.3 "Levinstrike Pinax" sync / 1[56]:[^:]*:Hesperos:6A3F:/ -65.4 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A51:/ -69.6 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CA:/ +31.0 "Setting the Scene 1" Ability { id: "69CB", source: "Hesperos" } +43.2 "Pinax" Ability { id: "69CF", source: "Hesperos" } +53.3 "Levinstrike Pinax" Ability { id: "6A3F", source: "Hesperos" } +65.4 "Decollation" Ability { id: "6A51", source: "Hesperos" } +69.6 "--sync--" Ability { id: "69CA", source: "Hesperos" } -76.6 "Setting the Scene 2" sync / 1[56]:[^:]*:Hesperos:69CB:/ -88.8 "Pinax" sync / 1[56]:[^:]*:Hesperos:69CF:/ -98.9 "Well Pinax" sync / 1[56]:[^:]*:Hesperos:6A3E:/ -112.1 "Hell Skewer" sync / 1[56]:[^:]*:Hesperos:6A4F:/ -121.3 "Elegant Evisceration" sync / 1[56]:[^:]*:Hesperos:6A50:/ -125.5 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CA:/ +76.6 "Setting the Scene 2" Ability { id: "69CB", source: "Hesperos" } +88.8 "Pinax" Ability { id: "69CF", source: "Hesperos" } +98.9 "Well Pinax" Ability { id: "6A3E", source: "Hesperos" } +112.1 "Hell Skewer" Ability { id: "6A4F", source: "Hesperos" } +121.3 "Elegant Evisceration" Ability { id: "6A50", source: "Hesperos" } +125.5 "--sync--" Ability { id: "69CA", source: "Hesperos" } -132.5 "Setting the Scene 3" sync / 1[56]:[^:]*:Hesperos:69CB:/ -144.7 "Pinax" sync / 1[56]:[^:]*:Hesperos:69CF:/ -154.8 "Well Pinax/Levinstrike Pinax" sync / 1[56]:[^:]*:Hesperos:(6A3E|6A3F):/ -162.0 "Hell Skewer" sync / 1[56]:[^:]*:Hesperos:6A4F:/ -165.7 "Acid Pinax" sync / 1[56]:[^:]*:Hesperos:6A3C:/ -176.7 "Levinstrike Pinax/Well Pinax" sync / 1[56]:[^:]*:Hesperos:(6A3E|6A3F):/ -184.1 "Hell Skewer" sync / 1[56]:[^:]*:Hesperos:6A4F:/ -199.3 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:6A40:/ -208.4 "Belone Coils" sync / 1[56]:[^:]*:Hesperos:69DD:/ -219.2 "Burst" sync / 1[56]:[^:]*:Hesperos:6A4[456]:/ -223.3 "Hell Skewer" sync / 1[56]:[^:]*:Hesperos:6A4F:/ -232.5 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A51:/ +132.5 "Setting the Scene 3" Ability { id: "69CB", source: "Hesperos" } +144.7 "Pinax" Ability { id: "69CF", source: "Hesperos" } +154.8 "Well Pinax/Levinstrike Pinax" Ability { id: ["6A3E", "6A3F"], source: "Hesperos" } +162.0 "Hell Skewer" Ability { id: "6A4F", source: "Hesperos" } +165.7 "Acid Pinax" Ability { id: "6A3C", source: "Hesperos" } +176.7 "Levinstrike Pinax/Well Pinax" Ability { id: ["6A3E", "6A3F"], source: "Hesperos" } +184.1 "Hell Skewer" Ability { id: "6A4F", source: "Hesperos" } +199.3 "Bloodrake" Ability { id: "6A40", source: "Hesperos" } +208.4 "Belone Coils" Ability { id: "69DD", source: "Hesperos" } +219.2 "Burst" Ability { id: "6A4[456]", source: "Hesperos" } +223.3 "Hell Skewer" Ability { id: "6A4F", source: "Hesperos" } +232.5 "Decollation" Ability { id: "6A51", source: "Hesperos" } -239.7 "--middle--" sync / 1[56]:[^:]*:Hesperos:69CE:/ -248.4 "Directional Shift" sync / 1[56]:[^:]*:Hesperos:(6A4A|6A4B|6A4C|6A4D):/ -249.9 "Shifting Strike (cleave)" sync / 1[56]:[^:]*:Hesperos:6A4E:/ -257.6 "--middle--" sync / 1[56]:[^:]*:Hesperos:69CE:/ -266.2 "Directional Shift" sync / 1[56]:[^:]*:Hesperos:(6DAE|6DAF|6DB0|6DB1):/ -267.9 "Shifting Strike (knockback)" sync / 1[56]:[^:]*:Hesperos:6DB2:/ -269.4 "--middle--" sync / 1[56]:[^:]*:Hesperos:69CE:/ -278.4 "Directional Shift" sync / 1[56]:[^:]*:Hesperos:(6A4A|6A4B|6A4C|6A4D|6DAE|6DAF|6DB0|6DB1):/ -279.9 "Shifting Strike" sync / 1[56]:[^:]*:Hesperos:(6DB2|6A4E):/ -285.6 "--middle--" sync / 1[56]:[^:]*:Hesperos:69CE:/ +239.7 "--middle--" Ability { id: "69CE", source: "Hesperos" } +248.4 "Directional Shift" Ability { id: ["6A4A", "6A4B", "6A4C", "6A4D"], source: "Hesperos" } +249.9 "Shifting Strike (cleave)" Ability { id: "6A4E", source: "Hesperos" } +257.6 "--middle--" Ability { id: "69CE", source: "Hesperos" } +266.2 "Directional Shift" Ability { id: ["6DAE", "6DAF", "6DB0", "6DB1"], source: "Hesperos" } +267.9 "Shifting Strike (knockback)" Ability { id: "6DB2", source: "Hesperos" } +269.4 "--middle--" Ability { id: "69CE", source: "Hesperos" } +278.4 "Directional Shift" Ability { id: ["6A4A", "6A4B", "6A4C", "6A4D", "6DAE", "6DAF", "6DB0", "6DB1"], source: "Hesperos" } +279.9 "Shifting Strike" Ability { id: ["6DB2", "6A4E"], source: "Hesperos" } +285.6 "--middle--" Ability { id: "69CE", source: "Hesperos" } -292.3 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:6A40:/ -300.5 "Belone Bursts" sync / 1[56]:[^:]*:Hesperos:69D9:/ -324.7 "Elegant Evisceration" sync / 1[56]:[^:]*:Hesperos:6A50:/ -328.9 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CA:/ +292.3 "Bloodrake" Ability { id: "6A40", source: "Hesperos" } +300.5 "Belone Bursts" Ability { id: "69D9", source: "Hesperos" } +324.7 "Elegant Evisceration" Ability { id: "6A50", source: "Hesperos" } +328.9 "--sync--" Ability { id: "69CA", source: "Hesperos" } -335.9 "Setting the Scene" sync / 1[56]:[^:]*:Hesperos:69CB:/ -349.1 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:6A40:/ -358.3 "Pinax" sync / 1[56]:[^:]*:Hesperos:69CF:/ -368.4 "Pinax 1" sync / 1[56]:[^:]*:Hesperos:(6A3C|6A3D|6A3E|6A3F):/ -371.5 "Hell Skewer" sync / 1[56]:[^:]*:Hesperos:6A4F:/ -379.4 "Pinax 2" sync / 1[56]:[^:]*:Hesperos:(6A3C|6A3D|6A3E|6A3F):/ -380.7 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CE:/ -386.3 "Belone Coils" sync / 1[56]:[^:]*:Hesperos:69DD:/ -390.4 "Pinax 3" sync / 1[56]:[^:]*:Hesperos:(6A3C|6A3D|6A3E|6A3F):/ -397.1 "Burst" sync / 1[56]:[^:]*:Hesperos:6A4[456]:/ -403.4 "Pinax 4" sync / 1[56]:[^:]*:Hesperos:(6A3C|6A3D|6A3E|6A3F):/ -404.5 "--middle--" sync / 1[56]:[^:]*:Hesperos:69CE:/ -413.5 "Directional Shift" sync / 1[56]:[^:]*:Hesperos:(6A4A|6A4B|6A4C|6A4D|6DAE|6DAF|6DB0|6DB1):/ -415.0 "Shifting Strike" sync / 1[56]:[^:]*:Hesperos:(6DB2|6A4E):/ -428.9 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A51:/ +335.9 "Setting the Scene" Ability { id: "69CB", source: "Hesperos" } +349.1 "Bloodrake" Ability { id: "6A40", source: "Hesperos" } +358.3 "Pinax" Ability { id: "69CF", source: "Hesperos" } +368.4 "Pinax 1" Ability { id: ["6A3C", "6A3D", "6A3E", "6A3F"], source: "Hesperos" } +371.5 "Hell Skewer" Ability { id: "6A4F", source: "Hesperos" } +379.4 "Pinax 2" Ability { id: ["6A3C", "6A3D", "6A3E", "6A3F"], source: "Hesperos" } +380.7 "--sync--" Ability { id: "69CE", source: "Hesperos" } +386.3 "Belone Coils" Ability { id: "69DD", source: "Hesperos" } +390.4 "Pinax 3" Ability { id: ["6A3C", "6A3D", "6A3E", "6A3F"], source: "Hesperos" } +397.1 "Burst" Ability { id: "6A4[456]", source: "Hesperos" } +403.4 "Pinax 4" Ability { id: ["6A3C", "6A3D", "6A3E", "6A3F"], source: "Hesperos" } +404.5 "--middle--" Ability { id: "69CE", source: "Hesperos" } +413.5 "Directional Shift" Ability { id: ["6A4A", "6A4B", "6A4C", "6A4D", "6DAE", "6DAF", "6DB0", "6DB1"], source: "Hesperos" } +415.0 "Shifting Strike" Ability { id: ["6DB2", "6A4E"], source: "Hesperos" } +428.9 "Decollation" Ability { id: "6A51", source: "Hesperos" } -438.1 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:6A40:/ -446.3 "Belone Bursts" sync / 1[56]:[^:]*:Hesperos:69D9:/ -454.5 "--middle--" sync / 1[56]:[^:]*:Hesperos:69CE:/ -463.1 "Westerly Shift" sync / 1[56]:[^:]*:Hesperos:6DB1:/ -464.8 "Shifting Strike" sync / 1[56]:[^:]*:Hesperos:6DB2:/ -478.3 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A51:/ -491.5 "Elegant Evisceration" sync / 1[56]:[^:]*:Hesperos:6A50:/ -495.7 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CA:/ +438.1 "Bloodrake" Ability { id: "6A40", source: "Hesperos" } +446.3 "Belone Bursts" Ability { id: "69D9", source: "Hesperos" } +454.5 "--middle--" Ability { id: "69CE", source: "Hesperos" } +463.1 "Westerly Shift" Ability { id: "6DB1", source: "Hesperos" } +464.8 "Shifting Strike" Ability { id: "6DB2", source: "Hesperos" } +478.3 "Decollation" Ability { id: "6A51", source: "Hesperos" } +491.5 "Elegant Evisceration" Ability { id: "6A50", source: "Hesperos" } +495.7 "--sync--" Ability { id: "69CA", source: "Hesperos" } -502.7 "Setting the Scene" sync / 1[56]:[^:]*:Hesperos:69CB:/ window 50,50 jump 335.9 -515.9 "Bloodrake" #sync / 1[56]:[^:]*:Hesperos:6A40:/ -525.1 "Pinax" #sync / 1[56]:[^:]*:Hesperos:69CF:/ -535.2 "Pinax 1" #sync / 1[56]:[^:]*:Hesperos:(6A3C|6A3D|6A3E|6A3F):/ -538.3 "Hell Skewer" #sync / 1[56]:[^:]*:Hesperos:6A4F:/ -546.2 "Pinax 2" #sync / 1[56]:[^:]*:Hesperos:(6A3C|6A3D|6A3E|6A3F):/ +502.7 "Setting the Scene" Ability { id: "69CB", source: "Hesperos" } window 50,50 jump 335.9 +515.9 "Bloodrake" #Ability { id: "6A40", source: "Hesperos" } +525.1 "Pinax" #Ability { id: "69CF", source: "Hesperos" } +535.2 "Pinax 1" #Ability { id: ["6A3C", "6A3D", "6A3E", "6A3F"], source: "Hesperos" } +538.3 "Hell Skewer" #Ability { id: "6A4F", source: "Hesperos" } +546.2 "Pinax 2" #Ability { id: ["6A3C", "6A3D", "6A3E", "6A3F"], source: "Hesperos" } diff --git a/ui/raidboss/data/06-ew/raid/p4s.txt b/ui/raidboss/data/06-ew/raid/p4s.txt index c6520359d8..bb9fa4bfc8 100644 --- a/ui/raidboss/data/06-ew/raid/p4s.txt +++ b/ui/raidboss/data/06-ew/raid/p4s.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 ### Hesperos I # @@ -26,86 +26,86 @@ hideall "--sync--" # Acid Pinax (69F5), Lava Pinax (69F6), Well Pinax (69F7), Levinstrike Pinax (69F8) # are the safe tiles. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.0 "--sync--" sync / 14:[^:]*:Hesperos:6A09:/ window 10,20 -15.0 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A09:/ -23.2 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:69D8:/ -30.3 "Aetheric Chlamys" sync / 1[56]:[^:]*:Hesperos:69EC:/ -38.5 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:69D8:/ -47.7 "Director's Belone" sync / 1[56]:[^:]*:Hesperos:69E6:/ -48.5 "--debuffs--" sync / 1[56]:[^:]*:Hesperos:69E7:/ -63.9 "Inversive Chlamys" sync / 1[56]:[^:]*:Hesperos:69ED:/ -64.1 "Cursed Casting" sync / 1[56]:[^:]*:Hesperos:(69E8|69E9):/ -64.7 "Inversive Chlamys" sync / 1[56]:[^:]*:Hesperos:(69EE|69EF):/ -73.1 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A09:/ -82.3 "Elegant Evisceration 1" sync / 1[56]:[^:]*:Hesperos:6A08:/ -85.5 "Elegant Evisceration 2" sync / 1[56]:[^:]*:Hesperos:6819:/ -93.7 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CA:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.0 "--sync--" StartsUsing { id: "6A09", source: "Hesperos" } window 10,20 +15.0 "Decollation" Ability { id: "6A09", source: "Hesperos" } +23.2 "Bloodrake" Ability { id: "69D8", source: "Hesperos" } +30.3 "Aetheric Chlamys" Ability { id: "69EC", source: "Hesperos" } +38.5 "Bloodrake" Ability { id: "69D8", source: "Hesperos" } +47.7 "Director's Belone" Ability { id: "69E6", source: "Hesperos" } +48.5 "--debuffs--" Ability { id: "69E7", source: "Hesperos" } +63.9 "Inversive Chlamys" Ability { id: "69ED", source: "Hesperos" } +64.1 "Cursed Casting" Ability { id: ["69E8", "69E9"], source: "Hesperos" } +64.7 "Inversive Chlamys" Ability { id: ["69EE", "69EF"], source: "Hesperos" } +73.1 "Decollation" Ability { id: "6A09", source: "Hesperos" } +82.3 "Elegant Evisceration 1" Ability { id: "6A08", source: "Hesperos" } +85.5 "Elegant Evisceration 2" Ability { id: "6819", source: "Hesperos" } +93.7 "--sync--" Ability { id: "69CA", source: "Hesperos" } # Scene 1 -100.7 "Setting the Scene" sync / 1[56]:[^:]*:Hesperos:69CB:/ -113.8 "Pinax" sync / 1[56]:[^:]*:Hesperos:69CF:/ -123.9 "Well Pinax/Levinstrike Pinax" sync / 1[56]:[^:]*:Hesperos:(69D6|69D7):/ -126.8 "Acid Pinax/Lava Pinax" sync / 1[56]:[^:]*:Hesperos:(69D4|69D5):/ -128.9 "--middle--" sync / 1[56]:[^:]*:Hesperos:69CE:/ -136.8 "Levinstrike Pinax/Well Pinax" sync / 1[56]:[^:]*:Hesperos:(69D7|69D6):/ -138.4 "Directional Shift" sync / 1[56]:[^:]*:Hesperos:(69FD|69FE|69FF|6A00|6A02|6A03|6A04|6A05):/ -140.1 "Shifting Strike" sync / 1[56]:[^:]*:Hesperos:(6A01|6A06):/ -147.7 "Lava Pinax/Acid Pinax" sync / 1[56]:[^:]*:Hesperos:(69D5|69D4):/ -156.5 "Elegant Evisceration 1" sync / 1[56]:[^:]*:Hesperos:6A08:/ -159.7 "Elegant Evisceration 2" sync / 1[56]:[^:]*:Hesperos:6819:/ +100.7 "Setting the Scene" Ability { id: "69CB", source: "Hesperos" } +113.8 "Pinax" Ability { id: "69CF", source: "Hesperos" } +123.9 "Well Pinax/Levinstrike Pinax" Ability { id: ["69D6", "69D7"], source: "Hesperos" } +126.8 "Acid Pinax/Lava Pinax" Ability { id: ["69D4", "69D5"], source: "Hesperos" } +128.9 "--middle--" Ability { id: "69CE", source: "Hesperos" } +136.8 "Levinstrike Pinax/Well Pinax" Ability { id: ["69D7", "69D6"], source: "Hesperos" } +138.4 "Directional Shift" Ability { id: ["69FD", "69FE", "69FF", "6A00", "6A02", "6A03", "6A04", "6A05"], source: "Hesperos" } +140.1 "Shifting Strike" Ability { id: ["6A01", "6A06"], source: "Hesperos" } +147.7 "Lava Pinax/Acid Pinax" Ability { id: ["69D5", "69D4"], source: "Hesperos" } +156.5 "Elegant Evisceration 1" Ability { id: "6A08", source: "Hesperos" } +159.7 "Elegant Evisceration 2" Ability { id: "6819", source: "Hesperos" } # Scene 2 -167.8 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:69D8:/ -172.0 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CA:/ -179.0 "Setting the Scene" sync / 1[56]:[^:]*:Hesperos:69CB:/ -191.1 "Vengeful Belone" sync / 1[56]:[^:]*:Hesperos:6E22:/ -191.9 "--role debuffs--" sync / 1[56]:[^:]*:Hesperos:6E23:/ -199.3 "Elemental Belone" sync / 1[56]:[^:]*:Hesperos:69F2:/ -200.1 "--element debuffs--" sync / 1[56]:[^:]*:Hesperos:69F3:/ -207.5 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:69D8:/ -216.7 "Belone Bursts" sync / 1[56]:[^:]*:Hesperos:69D9:/ -230.8 "Periaktoi" sync / 1[56]:[^:]*:Hesperos:69F4:/ -230.8 "Acid Pinax" #sync / 1[56]:[^:]*:Hesperos:(69F5|69F9):/ -230.8 "Well Pinax" #sync / 1[56]:[^:]*:Hesperos:(69F7|69FB):/ -230.8 "Lava Pinax" #sync / 1[56]:[^:]*:Hesperos:(69F6|69FA):/ -230.8 "Levinstrike Pinax" #sync / 1[56]:[^:]*:Hesperos:(69F8|69FC):/ +167.8 "Bloodrake" Ability { id: "69D8", source: "Hesperos" } +172.0 "--sync--" Ability { id: "69CA", source: "Hesperos" } +179.0 "Setting the Scene" Ability { id: "69CB", source: "Hesperos" } +191.1 "Vengeful Belone" Ability { id: "6E22", source: "Hesperos" } +191.9 "--role debuffs--" Ability { id: "6E23", source: "Hesperos" } +199.3 "Elemental Belone" Ability { id: "69F2", source: "Hesperos" } +200.1 "--element debuffs--" Ability { id: "69F3", source: "Hesperos" } +207.5 "Bloodrake" Ability { id: "69D8", source: "Hesperos" } +216.7 "Belone Bursts" Ability { id: "69D9", source: "Hesperos" } +230.8 "Periaktoi" Ability { id: "69F4", source: "Hesperos" } +230.8 "Acid Pinax" #Ability { id: ["69F5", "69F9"], source: "Hesperos" } +230.8 "Well Pinax" #Ability { id: ["69F7", "69FB"], source: "Hesperos" } +230.8 "Lava Pinax" #Ability { id: ["69F6", "69FA"], source: "Hesperos" } +230.8 "Levinstrike Pinax" #Ability { id: ["69F8", "69FC"], source: "Hesperos" } # Towers -243.0 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:69D8:/ -250.1 "Belone Coils" sync / 1[56]:[^:]*:Hesperos:69DD:/ -260.3 "Inversive Chlamys" sync / 1[56]:[^:]*:Hesperos:69ED:/ -260.9 "Burst" sync / 1[56]:[^:]*:Hesperos:(69DE|69DF|69E0|69E1):/ -261.1 "Inversive Chlamys" #sync / 1[56]:[^:]*:Hesperos:6F15:/ -267.4 "Aetheric Chlamys" sync / 1[56]:[^:]*:Hesperos:69EC:/ -275.6 "Bloodrake" sync / 1[56]:[^:]*:Hesperos:69D8:/ -283.7 "Belone Coils" sync / 1[56]:[^:]*:Hesperos:69DD:/ -294.5 "Burst" sync / 1[56]:[^:]*:Hesperos:(69DE|69DF|69E0|69E1):/ -297.9 "Director's Belone" sync / 1[56]:[^:]*:Hesperos:69E6:/ -298.7 "--debuffs--" sync / 1[56]:[^:]*:Hesperos:69E7:/ -314.1 "Inversive Chlamys" sync / 1[56]:[^:]*:Hesperos:69ED:/ -314.3 "Cursed Casting" #sync / 1[56]:[^:]*:Hesperos:(69E8|69E9):/ -314.9 "Inversive Chlamys" sync / 1[56]:[^:]*:Hesperos:(69EE|69EF):/ -323.3 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A09:/ -332.5 "Elegant Evisceration 1" sync / 1[56]:[^:]*:Hesperos:6A08:/ -335.7 "Elegant Evisceration 2" sync / 1[56]:[^:]*:Hesperos:6819:/ -343.9 "--sync--" sync / 1[56]:[^:]*:Hesperos:69CA:/ +243.0 "Bloodrake" Ability { id: "69D8", source: "Hesperos" } +250.1 "Belone Coils" Ability { id: "69DD", source: "Hesperos" } +260.3 "Inversive Chlamys" Ability { id: "69ED", source: "Hesperos" } +260.9 "Burst" Ability { id: ["69DE", "69DF", "69E0", "69E1"], source: "Hesperos" } +261.1 "Inversive Chlamys" #Ability { id: "6F15", source: "Hesperos" } +267.4 "Aetheric Chlamys" Ability { id: "69EC", source: "Hesperos" } +275.6 "Bloodrake" Ability { id: "69D8", source: "Hesperos" } +283.7 "Belone Coils" Ability { id: "69DD", source: "Hesperos" } +294.5 "Burst" Ability { id: ["69DE", "69DF", "69E0", "69E1"], source: "Hesperos" } +297.9 "Director's Belone" Ability { id: "69E6", source: "Hesperos" } +298.7 "--debuffs--" Ability { id: "69E7", source: "Hesperos" } +314.1 "Inversive Chlamys" Ability { id: "69ED", source: "Hesperos" } +314.3 "Cursed Casting" #Ability { id: ["69E8", "69E9"], source: "Hesperos" } +314.9 "Inversive Chlamys" Ability { id: ["69EE", "69EF"], source: "Hesperos" } +323.3 "Decollation" Ability { id: "6A09", source: "Hesperos" } +332.5 "Elegant Evisceration 1" Ability { id: "6A08", source: "Hesperos" } +335.7 "Elegant Evisceration 2" Ability { id: "6819", source: "Hesperos" } +343.9 "--sync--" Ability { id: "69CA", source: "Hesperos" } # Scene 3 -350.9 "Setting the Scene" sync / 1[56]:[^:]*:Hesperos:69CB:/ -364.1 "Pinax" sync / 1[56]:[^:]*:Hesperos:69CF:/ -374.2 "Well Pinax/Levinstrike Pinax" sync / 1[56]:[^:]*:Hesperos:(69D6|69D7):/ -377.1 "Acid Pinax/Lava Pinax" sync / 1[56]:[^:]*:Hesperos:(69D4|69D5):/ -379.2 "--middle--" sync / 1[56]:[^:]*:Hesperos:69CE:/ -387.1 "Levinstrike Pinax/Well Pinax" sync / 1[56]:[^:]*:Hesperos:(69D7|69D6):/ -389.1 "Directional Shift" sync / 1[56]:[^:]*:Hesperos:(69FD|69FE|69FF|6A00|6A02|6A03|6A04|6A05):/ -390.6 "Shifting Strike" sync / 1[56]:[^:]*:Hesperos:(6A01|6A06):/ -398.1 "Lava Pinax/Acid Pinax" sync / 1[56]:[^:]*:Hesperos:(69D5|69D4):/ -403.2 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A09:/ -412.4 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A09:/ -421.6 "Decollation" sync / 1[56]:[^:]*:Hesperos:6A09:/ +350.9 "Setting the Scene" Ability { id: "69CB", source: "Hesperos" } +364.1 "Pinax" Ability { id: "69CF", source: "Hesperos" } +374.2 "Well Pinax/Levinstrike Pinax" Ability { id: ["69D6", "69D7"], source: "Hesperos" } +377.1 "Acid Pinax/Lava Pinax" Ability { id: ["69D4", "69D5"], source: "Hesperos" } +379.2 "--middle--" Ability { id: "69CE", source: "Hesperos" } +387.1 "Levinstrike Pinax/Well Pinax" Ability { id: ["69D7", "69D6"], source: "Hesperos" } +389.1 "Directional Shift" Ability { id: ["69FD", "69FE", "69FF", "6A00", "6A02", "6A03", "6A04", "6A05"], source: "Hesperos" } +390.6 "Shifting Strike" Ability { id: ["6A01", "6A06"], source: "Hesperos" } +398.1 "Lava Pinax/Acid Pinax" Ability { id: ["69D5", "69D4"], source: "Hesperos" } +403.2 "Decollation" Ability { id: "6A09", source: "Hesperos" } +412.4 "Decollation" Ability { id: "6A09", source: "Hesperos" } +421.6 "Decollation" Ability { id: "6A09", source: "Hesperos" } 432.5 "--untargetable--" -437.6 "Decollation (enrage)" sync / 1[56]:[^:]*:Hesperos:6A0B:/ +437.6 "Decollation (enrage)" Ability { id: "6A0B", source: "Hesperos" } ### Hesperos II @@ -120,79 +120,79 @@ hideall "--sync--" # Hemitheos's Aero III (6A1B, 6A1A) 1000.0 "Start" -1011.0 "--sync--" sync / 14:[^:]*:Hesperos:6A2D:/ window 1011,0 -1016.0 "Searing Stream" sync / 1[56]:[^:]*:Hesperos:6A2D:/ +1011.0 "--sync--" StartsUsing { id: "6A2D", source: "Hesperos" } window 1011,0 +1016.0 "Searing Stream" Ability { id: "6A2D", source: "Hesperos" } # Act 1 - Thorns 1 -1031.2 "Akanthai: Act 1" sync / 1[56]:[^:]*:Hesperos:6A0C:/ -1040.4 "Searing Stream" sync / 1[56]:[^:]*:Hesperos:6A2D:/ -1054.6 "Wreath of Thorns 1" sync / 1[56]:[^:]*:Hesperos:6A2F:/ -1057.7 "Hemitheos's Fire IV" sync / 1[56]:[^:]*:Hesperos:6A0D:/ -1060.7 "Hemitheos's Thunder III" sync / 1[56]:[^:]*:Hesperos:6A0E:/ -1063.7 "Hemitheos's Fire IV" sync / 1[56]:[^:]*:Hesperos:6A0D:/ -1070.9 "Nearsight/Farsight" sync / 1[56]:[^:]*:Hesperos:(6A28|6DDB):/ +1031.2 "Akanthai: Act 1" Ability { id: "6A0C", source: "Hesperos" } +1040.4 "Searing Stream" Ability { id: "6A2D", source: "Hesperos" } +1054.6 "Wreath of Thorns 1" Ability { id: "6A2F", source: "Hesperos" } +1057.7 "Hemitheos's Fire IV" Ability { id: "6A0D", source: "Hesperos" } +1060.7 "Hemitheos's Thunder III" Ability { id: "6A0E", source: "Hesperos" } +1063.7 "Hemitheos's Fire IV" Ability { id: "6A0D", source: "Hesperos" } +1070.9 "Nearsight/Farsight" Ability { id: ["6A28", "6DDB"], source: "Hesperos" } # Act 2 - Thorns 2 with Red/Purple/Green Colors -1083.0 "Akanthai: Act 2" sync / 1[56]:[^:]*:Hesperos:6EB4:/ -1092.2 "Demigod Double" sync / 1[56]:[^:]*:Hesperos:6E78:/ -1102.4 "Wreath of Thorns 2" sync / 1[56]:[^:]*:Hesperos:6A30:/ -1110.4 "Hemitheos's Dark IV" #sync / 1[56]:[^:]*:Hesperos:6A16:/ -1113.7 "Dark Design" sync / 1[56]:[^:]*:Hesperos:6A2A:/ -1115.5 "Hemitheos's Fire IV" sync / 1[56]:[^:]*:Hesperos:(6A0D|6A0E):/ -1115.5 "Hemitheos's Thunder III x2" #sync / 1[56]:[^:]*:Hesperos:6A0E:/ -1115.9 "Hemitheos's Fire III x2" #sync / 1[56]:[^:]*:Hesperos:6A18:/ -1122.5 "Hemitheos's Thunder III x2" sync / 1[56]:[^:]*:Hesperos:(6A0D|6A0E):/ -1122.5 "Hemitheos's Fire IV" #sync / 1[56]:[^:]*:Hesperos:6A0D:/ -1123.2 "Hemitheos's Fire III x2" #sync / 1[56]:[^:]*:Hesperos:6A18:/ -1124.2 "Hemitheos's Aero III" #sync / 1[56]:[^:]*:Hesperos:6A1B:/ -1129.7 "Ultimate Impulse" sync / 1[56]:[^:]*:Hesperos:6A2C:/ +1083.0 "Akanthai: Act 2" Ability { id: "6EB4", source: "Hesperos" } +1092.2 "Demigod Double" Ability { id: "6E78", source: "Hesperos" } +1102.4 "Wreath of Thorns 2" Ability { id: "6A30", source: "Hesperos" } +1110.4 "Hemitheos's Dark IV" #Ability { id: "6A16", source: "Hesperos" } +1113.7 "Dark Design" Ability { id: "6A2A", source: "Hesperos" } +1115.5 "Hemitheos's Fire IV" Ability { id: ["6A0D", "6A0E"], source: "Hesperos" } +1115.5 "Hemitheos's Thunder III x2" #Ability { id: "6A0E", source: "Hesperos" } +1115.9 "Hemitheos's Fire III x2" #Ability { id: "6A18", source: "Hesperos" } +1122.5 "Hemitheos's Thunder III x2" Ability { id: ["6A0D", "6A0E"], source: "Hesperos" } +1122.5 "Hemitheos's Fire IV" #Ability { id: "6A0D", source: "Hesperos" } +1123.2 "Hemitheos's Fire III x2" #Ability { id: "6A18", source: "Hesperos" } +1124.2 "Hemitheos's Aero III" #Ability { id: "6A1B", source: "Hesperos" } +1129.7 "Ultimate Impulse" Ability { id: "6A2C", source: "Hesperos" } # Act 3 - Thorns 3 plus Jump, Shakers, and Knockback -1142.9 "Akanthai: Act 3" sync / 1[56]:[^:]*:Hesperos:6EB5:/ -1155.1 "Wreath of Thorns 3" sync / 1[56]:[^:]*:Hesperos:6A31:/ -1163.3 "Kothornos Kick 1" sync / 1[56]:[^:]*:Hesperos:6A23:/ -1167.4 "Kothornos Quake 1" sync / 1[56]:[^:]*:Hesperos:6E74:/ -1168.2 "Hemitheos's Thunder III 1" sync / 1[56]:[^:]*:Hesperos:6A0E:/ -1170.2 "Hemitheos's Water IV" sync / 1[56]:[^:]*:Hesperos:6A10:/ -1173.5 "Kothornos Kick 2" sync / 1[56]:[^:]*:Hesperos:6A23:/ -1174.2 "Hemitheos's Thunder III 2" sync / 1[56]:[^:]*:Hesperos:6A0E:/ -1177.5 "Kothornos Quake 2" sync / 1[56]:[^:]*:Hesperos:6A24:/ -1187.7 "Nearsight/Farsight" sync / 1[56]:[^:]*:Hesperos:(6A28|6DDB):/ -1201.8 "Heart Stake" sync / 1[56]:[^:]*:Hesperos:6A2B:/ -1205.0 "Heart Stake OT" sync / 1[56]:[^:]*:Hesperos:6E77:/ +1142.9 "Akanthai: Act 3" Ability { id: "6EB5", source: "Hesperos" } +1155.1 "Wreath of Thorns 3" Ability { id: "6A31", source: "Hesperos" } +1163.3 "Kothornos Kick 1" Ability { id: "6A23", source: "Hesperos" } +1167.4 "Kothornos Quake 1" Ability { id: "6E74", source: "Hesperos" } +1168.2 "Hemitheos's Thunder III 1" Ability { id: "6A0E", source: "Hesperos" } +1170.2 "Hemitheos's Water IV" Ability { id: "6A10", source: "Hesperos" } +1173.5 "Kothornos Kick 2" Ability { id: "6A23", source: "Hesperos" } +1174.2 "Hemitheos's Thunder III 2" Ability { id: "6A0E", source: "Hesperos" } +1177.5 "Kothornos Quake 2" Ability { id: "6A24", source: "Hesperos" } +1187.7 "Nearsight/Farsight" Ability { id: ["6A28", "6DDB"], source: "Hesperos" } +1201.8 "Heart Stake" Ability { id: "6A2B", source: "Hesperos" } +1205.0 "Heart Stake OT" Ability { id: "6E77", source: "Hesperos" } # Act 4 - Thorns 4 plus 4x Water/Thunder and 4x Dark/Fire Tethers # Note: Water and Thunder resolve first, then Dark and Fire resolve -1214.1 "Akanthai: Act 4" sync / 1[56]:[^:]*:Hesperos:6EB6:/ -1223.3 "Searing Stream" sync / 1[56]:[^:]*:Hesperos:6A2D:/ -1232.5 "Wreath of Thorns 4" sync / 1[56]:[^:]*:Hesperos:6A32:/ -1240.6 "Searing Stream" sync / 1[56]:[^:]*:Hesperos:6A2D:/ -1275.8 "Ultimate Impulse" sync / 1[56]:[^:]*:Hesperos:6A2C:/ -1290.1 "Searing Stream" sync / 1[56]:[^:]*:Hesperos:6A2D:/ +1214.1 "Akanthai: Act 4" Ability { id: "6EB6", source: "Hesperos" } +1223.3 "Searing Stream" Ability { id: "6A2D", source: "Hesperos" } +1232.5 "Wreath of Thorns 4" Ability { id: "6A32", source: "Hesperos" } +1240.6 "Searing Stream" Ability { id: "6A2D", source: "Hesperos" } +1275.8 "Ultimate Impulse" Ability { id: "6A2C", source: "Hesperos" } +1290.1 "Searing Stream" Ability { id: "6A2D", source: "Hesperos" } # Finale - Thorns 5 and plus Fleeting Impulse -1299.3 "Akanthai: Finale" sync / 1[56]:[^:]*:Hesperos:6EB7:/ -1308.5 "Wreath of Thorns 5" sync / 1[56]:[^:]*:Hesperos:6A34:/ -1316.5 "Fleeting Impulse x8" sync / 1[56]:[^:]*:Hesperos:6EB8:/ duration 9.8 -1327.3 "Hemitheos's Aero III" sync / 1[56]:[^:]*:Hesperos:6A1B:/ -1336.0 "Wreath of Thorns 6" sync / 1[56]:[^:]*:Hesperos:6A35:/ -1339.1 "Hemitheos's Thunder III x8" #sync / 1[56]:[^:]*:Hesperos:6A0E:/ duration 8.4 -1353.3 "Nearsight/Farsight" sync / 1[56]:[^:]*:Hesperos:(6A28|6DDB):/ -1365.4 "Searing Stream" sync / 1[56]:[^:]*:Hesperos:6A2D:/ -1374.5 "Demigod Double" sync / 1[56]:[^:]*:Hesperos:6E78:/ +1299.3 "Akanthai: Finale" Ability { id: "6EB7", source: "Hesperos" } +1308.5 "Wreath of Thorns 5" Ability { id: "6A34", source: "Hesperos" } +1316.5 "Fleeting Impulse x8" Ability { id: "6EB8", source: "Hesperos" } duration 9.8 +1327.3 "Hemitheos's Aero III" Ability { id: "6A1B", source: "Hesperos" } +1336.0 "Wreath of Thorns 6" Ability { id: "6A35", source: "Hesperos" } +1339.1 "Hemitheos's Thunder III x8" #Ability { id: "6A0E", source: "Hesperos" } duration 8.4 +1353.3 "Nearsight/Farsight" Ability { id: ["6A28", "6DDB"], source: "Hesperos" } +1365.4 "Searing Stream" Ability { id: "6A2D", source: "Hesperos" } +1374.5 "Demigod Double" Ability { id: "6E78", source: "Hesperos" } # Curtain Call # Note: Each player must break a tether that triggers Hemitheos's Dark IV AoE # These need to all break before Ultimate Impulse. -1387.7 "Akanthai: Curtain Call" sync / 1[56]:[^:]*:Hesperos:6A36:/ -1401.0 "Hell's Sting 1" sync / 1[56]:[^:]*:Hesperos:6A20:/ -1404.1 "Hell's Sting 2" sync / 1[56]:[^:]*:Hesperos:6A21:/ -1421.2 "Hell's Sting 1" sync / 1[56]:[^:]*:Hesperos:6A20:/ -1424.3 "Hell's Sting 2" sync / 1[56]:[^:]*:Hesperos:6A21:/ -1440.4 "Ultimate Impulse" sync / 1[56]:[^:]*:Hesperos:6A2C:/ -1450.5 "Hell's Sting 1" sync / 1[56]:[^:]*:Hesperos:6A20:/ -1453.6 "Hell's Sting 2" sync / 1[56]:[^:]*:Hesperos:6A21:/ -1470.7 "Hell's Sting 1" sync / 1[56]:[^:]*:Hesperos:6A20:/ -1473.8 "Hell's Sting 2" sync / 1[56]:[^:]*:Hesperos:6A21:/ -1489.9 "Ultimate Impulse" sync / 1[56]:[^:]*:Hesperos:6A2C:/ -1504.8 "Ultimate Impulse (enrage)" sync / 1[56]:[^:]*:Hesperos:6A37:/ +1387.7 "Akanthai: Curtain Call" Ability { id: "6A36", source: "Hesperos" } +1401.0 "Hell's Sting 1" Ability { id: "6A20", source: "Hesperos" } +1404.1 "Hell's Sting 2" Ability { id: "6A21", source: "Hesperos" } +1421.2 "Hell's Sting 1" Ability { id: "6A20", source: "Hesperos" } +1424.3 "Hell's Sting 2" Ability { id: "6A21", source: "Hesperos" } +1440.4 "Ultimate Impulse" Ability { id: "6A2C", source: "Hesperos" } +1450.5 "Hell's Sting 1" Ability { id: "6A20", source: "Hesperos" } +1453.6 "Hell's Sting 2" Ability { id: "6A21", source: "Hesperos" } +1470.7 "Hell's Sting 1" Ability { id: "6A20", source: "Hesperos" } +1473.8 "Hell's Sting 2" Ability { id: "6A21", source: "Hesperos" } +1489.9 "Ultimate Impulse" Ability { id: "6A2C", source: "Hesperos" } +1504.8 "Ultimate Impulse (enrage)" Ability { id: "6A37", source: "Hesperos" } diff --git a/ui/raidboss/data/06-ew/raid/p5n.txt b/ui/raidboss/data/06-ew/raid/p5n.txt index e66c811fed..db1f9a08bc 100644 --- a/ui/raidboss/data/06-ew/raid/p5n.txt +++ b/ui/raidboss/data/06-ew/raid/p5n.txt @@ -4,68 +4,68 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.3 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76D6:/ window 11,10 -19.1 "Searing Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:76D7:/ -28.2 "Ruby Glow" sync / 1[56]:[^:]*:Proto-Carbuncle:76D4:/ -31.4 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76D6:/ -39.7 "Searing Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:76D8:/ -51.9 "Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:76F0:/ -59.1 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76DE:/ -59.1 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76DF:/ -75.3 "Ruby Glow" sync / 1[56]:[^:]*:Proto-Carbuncle:76D4:/ -81.4 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76DE:/ -81.4 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76DF:/ -97.6 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:76F2:/ -101.8 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76D6:/ -110.4 "Searing Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:76D7:/ -117.6 "Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:76F0:/ -126.7 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:76F2:/ -128.8 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76E3:/ -138.9 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:78EA:/ -144.2 "--untargetable--" sync / 1[56]:[^:]*:Proto-Carbuncle:78EB:/ # Acidic Slaver +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.3 "--sync--" Ability { id: "76D6", source: "Proto-Carbuncle" } window 11,10 +19.1 "Searing Ray" Ability { id: "76D7", source: "Proto-Carbuncle" } +28.2 "Ruby Glow" Ability { id: "76D4", source: "Proto-Carbuncle" } +31.4 "--sync--" Ability { id: "76D6", source: "Proto-Carbuncle" } +39.7 "Searing Ray" Ability { id: "76D8", source: "Proto-Carbuncle" } +51.9 "Crunch" Ability { id: "76F0", source: "Proto-Carbuncle" } +59.1 "Topaz Stones" Ability { id: "76DE", source: "Proto-Carbuncle" } +59.1 "--sync--" Ability { id: "76DF", source: "Proto-Carbuncle" } +75.3 "Ruby Glow" Ability { id: "76D4", source: "Proto-Carbuncle" } +81.4 "Topaz Stones" Ability { id: "76DE", source: "Proto-Carbuncle" } +81.4 "--sync--" Ability { id: "76DF", source: "Proto-Carbuncle" } +97.6 "Sonic Howl" Ability { id: "76F2", source: "Proto-Carbuncle" } +101.8 "--sync--" Ability { id: "76D6", source: "Proto-Carbuncle" } +110.4 "Searing Ray" Ability { id: "76D7", source: "Proto-Carbuncle" } +117.6 "Crunch" Ability { id: "76F0", source: "Proto-Carbuncle" } +126.7 "Sonic Howl" Ability { id: "76F2", source: "Proto-Carbuncle" } +128.8 "--sync--" Ability { id: "76E3", source: "Proto-Carbuncle" } +138.9 "--sync--" Ability { id: "78EA", source: "Proto-Carbuncle" } +144.2 "--untargetable--" Ability { id: "78EB", source: "Proto-Carbuncle" } # Acidic Slaver 189.2 "--targetable--" -199.7 "Ruby Glow" sync / 1[56]:[^:]*:Proto-Carbuncle:76D4:/ window 20,20 -205.8 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76DE:/ -205.8 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76DF:/ -220.9 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:76F1:/ -238.0 "Venom Squall" sync / 1[56]:[^:]*:Proto-Carbuncle:76EC:/ -245.8 "Venom Rain" sync / 1[56]:[^:]*:Proto-Carbuncle:76ED:/ -252.8 "Venom Pool" sync / 1[56]:[^:]*:Proto-Carbuncle:76EF:/ -261.2 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:76F2:/ -272.3 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76DE:/ -272.3 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76DF:/ -281.4 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:76F1:/ -300.6 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76E3:/ -311.8 "--untargetable--" sync / 1[56]:[^:]*:Proto-Carbuncle:76E5:/ -311.8 "Starving Stampede" sync / 1[56]:[^:]*:Proto-Carbuncle:76E5:/ duration 6 +199.7 "Ruby Glow" Ability { id: "76D4", source: "Proto-Carbuncle" } window 20,20 +205.8 "Topaz Stones" Ability { id: "76DE", source: "Proto-Carbuncle" } +205.8 "--sync--" Ability { id: "76DF", source: "Proto-Carbuncle" } +220.9 "Toxic Crunch" Ability { id: "76F1", source: "Proto-Carbuncle" } +238.0 "Venom Squall" Ability { id: "76EC", source: "Proto-Carbuncle" } +245.8 "Venom Rain" Ability { id: "76ED", source: "Proto-Carbuncle" } +252.8 "Venom Pool" Ability { id: "76EF", source: "Proto-Carbuncle" } +261.2 "Sonic Howl" Ability { id: "76F2", source: "Proto-Carbuncle" } +272.3 "Topaz Stones" Ability { id: "76DE", source: "Proto-Carbuncle" } +272.3 "--sync--" Ability { id: "76DF", source: "Proto-Carbuncle" } +281.4 "Toxic Crunch" Ability { id: "76F1", source: "Proto-Carbuncle" } +300.6 "--sync--" Ability { id: "76E3", source: "Proto-Carbuncle" } +311.8 "--untargetable--" Ability { id: "76E5", source: "Proto-Carbuncle" } +311.8 "Starving Stampede" Ability { id: "76E5", source: "Proto-Carbuncle" } duration 6 317.8 "--targetable--" -324.8 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:7A21:/ window 5,5 -325.9 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76D6:/ -334.1 "Ruby Glow" sync / 1[56]:[^:]*:Proto-Carbuncle:76D4:/ +324.8 "--sync--" Ability { id: "7A21", source: "Proto-Carbuncle" } window 5,5 +325.9 "--sync--" Ability { id: "76D6", source: "Proto-Carbuncle" } +334.1 "Ruby Glow" Ability { id: "76D4", source: "Proto-Carbuncle" } -340.2 "Topaz Cluster" sync / 1[56]:[^:]*:Proto-Carbuncle:76E6:/ window 5,5 -342.2 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76E8:/ -344.2 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76E9:/ -346.2 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76EA:/ -359.3 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76D6:/ -368.1 "Searing Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:76D7:/ -382.3 "Ruby Glow" sync / 1[56]:[^:]*:Proto-Carbuncle:76D4:/ -388.4 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76DE:/ -388.4 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76DF:/ -394.5 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76D6:/ -402.8 "Searing Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:76D8:/ -415.9 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:76F1:/ -425.0 "Ruby Glow" sync / 1[56]:[^:]*:Proto-Carbuncle:76D4:/ -431.1 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76DE:/ -431.1 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76DF:/ -438.2 "Venom Squall" sync / 1[56]:[^:]*:Proto-Carbuncle:76EC:/ -446.0 "Venom Rain" sync / 1[56]:[^:]*:Proto-Carbuncle:76ED:/ -453.0 "Venom Pool" sync / 1[56]:[^:]*:Proto-Carbuncle:76EF:/ -463.3 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:76F2:/ -475.5 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:76F1:/ -482.6 "Ruby Glow" sync / 1[56]:[^:]*:Proto-Carbuncle:76D4:/ -488.7 "Topaz Cluster" sync / 1[56]:[^:]*:Proto-Carbuncle:76E6:/ window 5,5 jump 340.2 +340.2 "Topaz Cluster" Ability { id: "76E6", source: "Proto-Carbuncle" } window 5,5 +342.2 "--sync--" Ability { id: "76E8", source: "Proto-Carbuncle" } +344.2 "--sync--" Ability { id: "76E9", source: "Proto-Carbuncle" } +346.2 "--sync--" Ability { id: "76EA", source: "Proto-Carbuncle" } +359.3 "--sync--" Ability { id: "76D6", source: "Proto-Carbuncle" } +368.1 "Searing Ray" Ability { id: "76D7", source: "Proto-Carbuncle" } +382.3 "Ruby Glow" Ability { id: "76D4", source: "Proto-Carbuncle" } +388.4 "Topaz Stones" Ability { id: "76DE", source: "Proto-Carbuncle" } +388.4 "--sync--" Ability { id: "76DF", source: "Proto-Carbuncle" } +394.5 "--sync--" Ability { id: "76D6", source: "Proto-Carbuncle" } +402.8 "Searing Ray" Ability { id: "76D8", source: "Proto-Carbuncle" } +415.9 "Toxic Crunch" Ability { id: "76F1", source: "Proto-Carbuncle" } +425.0 "Ruby Glow" Ability { id: "76D4", source: "Proto-Carbuncle" } +431.1 "Topaz Stones" Ability { id: "76DE", source: "Proto-Carbuncle" } +431.1 "--sync--" Ability { id: "76DF", source: "Proto-Carbuncle" } +438.2 "Venom Squall" Ability { id: "76EC", source: "Proto-Carbuncle" } +446.0 "Venom Rain" Ability { id: "76ED", source: "Proto-Carbuncle" } +453.0 "Venom Pool" Ability { id: "76EF", source: "Proto-Carbuncle" } +463.3 "Sonic Howl" Ability { id: "76F2", source: "Proto-Carbuncle" } +475.5 "Toxic Crunch" Ability { id: "76F1", source: "Proto-Carbuncle" } +482.6 "Ruby Glow" Ability { id: "76D4", source: "Proto-Carbuncle" } +488.7 "Topaz Cluster" Ability { id: "76E6", source: "Proto-Carbuncle" } window 5,5 jump 340.2 diff --git a/ui/raidboss/data/06-ew/raid/p5s.txt b/ui/raidboss/data/06-ew/raid/p5s.txt index 0b562d9b04..8cff9d241d 100644 --- a/ui/raidboss/data/06-ew/raid/p5s.txt +++ b/ui/raidboss/data/06-ew/raid/p5s.txt @@ -7,151 +7,151 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 - -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.9 "--sync--" sync / 14:[^:]*:Proto-Carbuncle:7720:/ window 20,20 -14.9 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:7720:/ -22.0 "Ruby Glow 1" sync / 1[56]:[^:]*:Proto-Carbuncle:76F3:/ -29.1 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76FD:/ -29.1 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76FE:/ -42.7 "Topaz Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:79FE:/ -43.3 "Ruby Reflection" sync / 1[56]:[^:]*:Proto-Carbuncle:7700:/ -56.3 "Venomous Mass" sync / 1[56]:[^:]*:Proto-Carbuncle:771D:/ -63.5 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:784A:/ +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 + +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.9 "--sync--" StartsUsing { id: "7720", source: "Proto-Carbuncle" } window 20,20 +14.9 "Sonic Howl" Ability { id: "7720", source: "Proto-Carbuncle" } +22.0 "Ruby Glow 1" Ability { id: "76F3", source: "Proto-Carbuncle" } +29.1 "Topaz Stones" Ability { id: "76FD", source: "Proto-Carbuncle" } +29.1 "--sync--" Ability { id: "76FE", source: "Proto-Carbuncle" } +42.7 "Topaz Ray" Ability { id: "79FE", source: "Proto-Carbuncle" } +43.3 "Ruby Reflection" Ability { id: "7700", source: "Proto-Carbuncle" } +56.3 "Venomous Mass" Ability { id: "771D", source: "Proto-Carbuncle" } +63.5 "Toxic Crunch" Ability { id: "784A", source: "Proto-Carbuncle" } 72.1 "--towers--" duration 10 -94.1 "Venomous Mass" sync / 1[56]:[^:]*:Proto-Carbuncle:771D:/ window 20,20 # safety -101.3 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:784A:/ +94.1 "Venomous Mass" Ability { id: "771D", source: "Proto-Carbuncle" } window 20,20 # safety +101.3 "Toxic Crunch" Ability { id: "784A", source: "Proto-Carbuncle" } # Double Rush -115.6 "Ruby Glow 2" sync / 1[56]:[^:]*:Proto-Carbuncle:76F3:/ -122.7 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76FD:/ -122.7 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76FE:/ -125.9 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76F5:/ -133.2 "Double Rush 1" sync / 1[56]:[^:]*:Proto-Carbuncle:771B:/ -135.2 "Double Rush 2" sync / 1[56]:[^:]*:Proto-Carbuncle:771C:/ -136.1 "Topaz Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:79FE:/ -136.7 "Ruby Reflection" sync / 1[56]:[^:]*:Proto-Carbuncle:76F8:/ -137.3 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76F5:/ -146.4 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:7720:/ +115.6 "Ruby Glow 2" Ability { id: "76F3", source: "Proto-Carbuncle" } +122.7 "Topaz Stones" Ability { id: "76FD", source: "Proto-Carbuncle" } +122.7 "--sync--" Ability { id: "76FE", source: "Proto-Carbuncle" } +125.9 "--sync--" Ability { id: "76F5", source: "Proto-Carbuncle" } +133.2 "Double Rush 1" Ability { id: "771B", source: "Proto-Carbuncle" } +135.2 "Double Rush 2" Ability { id: "771C", source: "Proto-Carbuncle" } +136.1 "Topaz Ray" Ability { id: "79FE", source: "Proto-Carbuncle" } +136.7 "Ruby Reflection" Ability { id: "76F8", source: "Proto-Carbuncle" } +137.3 "--sync--" Ability { id: "76F5", source: "Proto-Carbuncle" } +146.4 "Sonic Howl" Ability { id: "7720", source: "Proto-Carbuncle" } # Topaz Stones Memory Dodge -159.6 "Ruby Glow 3" sync / 1[56]:[^:]*:Proto-Carbuncle:76F3:/ -165.7 "Topaz Cluster" sync / 1[56]:[^:]*:Proto-Carbuncle:7702:/ -165.7 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:7703:/ -168.1 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:7704:/ -170.5 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:7705:/ -173.1 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:7706:/ -#176.1 "Topaz Ray 1" #sync / 1[56]:[^:]*:Proto-Carbuncle:79FF:/ -176.7 "Ruby Reflection 1" #sync / 1[56]:[^:]*:Proto-Carbuncle:7700:/ -#178.7 "Topaz Ray 2" #sync / 1[56]:[^:]*:Proto-Carbuncle:79FF:/ -179.3 "Ruby Reflection 2" #sync / 1[56]:[^:]*:Proto-Carbuncle:7700:/ -#181.3 "Topaz Ray 3" #sync / 1[56]:[^:]*:Proto-Carbuncle:79FF:/ -181.9 "Ruby Reflection 3" #sync / 1[56]:[^:]*:Proto-Carbuncle:7700:/ -#183.9 "Topaz Ray 4" #sync / 1[56]:[^:]*:Proto-Carbuncle:79FF:/ -184.5 "Ruby Reflection 4" #sync / 1[56]:[^:]*:Proto-Carbuncle:7700:/ - -193.1 "Venomous Mass" sync / 1[56]:[^:]*:Proto-Carbuncle:771D:/ -200.2 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:784A:/ - -211.6 "Venom Squall/Venom Surge" sync / 1[56]:[^:]*:Proto-Carbuncle:(7716|7717):/ -215.5 "Venom Rain/Venom Pool" sync / 1[56]:[^:]*:Proto-Carbuncle:(7718|771A):/ -221.5 "Venom Drops" sync / 1[56]:[^:]*:Proto-Carbuncle:7719:/ -224.5 "Venom Pool/Venom Rain" sync / 1[56]:[^:]*:Proto-Carbuncle:(771A|7718):/ -232.8 "Claw to Tail/Tail to Claw" sync / 1[56]:[^:]*:Proto-Carbuncle:(770E|7712):/ -#232.8 "Raging Claw x7" sync / 1[56]:[^:]*:Proto-Carbuncle:770F:/ duration 2.2 -#236.7 "Raging Tail" sync / 1[56]:[^:]*:Proto-Carbuncle:7711:/ - -239.0 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76F5:/ -245.1 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:7708:/ +159.6 "Ruby Glow 3" Ability { id: "76F3", source: "Proto-Carbuncle" } +165.7 "Topaz Cluster" Ability { id: "7702", source: "Proto-Carbuncle" } +165.7 "--sync--" Ability { id: "7703", source: "Proto-Carbuncle" } +168.1 "--sync--" Ability { id: "7704", source: "Proto-Carbuncle" } +170.5 "--sync--" Ability { id: "7705", source: "Proto-Carbuncle" } +173.1 "--sync--" Ability { id: "7706", source: "Proto-Carbuncle" } +#176.1 "Topaz Ray 1" #Ability { id: "79FF", source: "Proto-Carbuncle" } +176.7 "Ruby Reflection 1" #Ability { id: "7700", source: "Proto-Carbuncle" } +#178.7 "Topaz Ray 2" #Ability { id: "79FF", source: "Proto-Carbuncle" } +179.3 "Ruby Reflection 2" #Ability { id: "7700", source: "Proto-Carbuncle" } +#181.3 "Topaz Ray 3" #Ability { id: "79FF", source: "Proto-Carbuncle" } +181.9 "Ruby Reflection 3" #Ability { id: "7700", source: "Proto-Carbuncle" } +#183.9 "Topaz Ray 4" #Ability { id: "79FF", source: "Proto-Carbuncle" } +184.5 "Ruby Reflection 4" #Ability { id: "7700", source: "Proto-Carbuncle" } + +193.1 "Venomous Mass" Ability { id: "771D", source: "Proto-Carbuncle" } +200.2 "Toxic Crunch" Ability { id: "784A", source: "Proto-Carbuncle" } + +211.6 "Venom Squall/Venom Surge" Ability { id: ["7716", "7717"], source: "Proto-Carbuncle" } +215.5 "Venom Rain/Venom Pool" Ability { id: ["7718", "771A"], source: "Proto-Carbuncle" } +221.5 "Venom Drops" Ability { id: "7719", source: "Proto-Carbuncle" } +224.5 "Venom Pool/Venom Rain" Ability { id: ["771A", "7718"], source: "Proto-Carbuncle" } +232.8 "Claw to Tail/Tail to Claw" Ability { id: ["770E", "7712"], source: "Proto-Carbuncle" } +#232.8 "Raging Claw x7" Ability { id: "770F", source: "Proto-Carbuncle" } duration 2.2 +#236.7 "Raging Tail" Ability { id: "7711", source: "Proto-Carbuncle" } + +239.0 "--sync--" Ability { id: "76F5", source: "Proto-Carbuncle" } +245.1 "--sync--" Ability { id: "7708", source: "Proto-Carbuncle" } 256.1 "--untargetable--" -257.0 "Starving Stampede 1" duration 9 #sync / 1[56]:[^:]*:Proto-Carbuncle:7A03:/ -258.4 "Starving Stampede 2" #sync / 1[56]:[^:]*:Proto-Carbuncle:7A03:/ -259.8 "Starving Stampede 3" #sync / 1[56]:[^:]*:Proto-Carbuncle:7A03:/ -261.2 "Starving Stampede 4" #sync / 1[56]:[^:]*:Proto-Carbuncle:7A03:/ -262.5 "Starving Stampede 5" #sync / 1[56]:[^:]*:Proto-Carbuncle:7A03:/ -263.7 "Starving Stampede 6" #sync / 1[56]:[^:]*:Proto-Carbuncle:7A03:/ -264.9 "Starving Stampede 7" #sync / 1[56]:[^:]*:Proto-Carbuncle:7A03:/ -266.0 "Starving Stampede 8" #sync / 1[56]:[^:]*:Proto-Carbuncle:7A03:/ +257.0 "Starving Stampede 1" duration 9 #Ability { id: "7A03", source: "Proto-Carbuncle" } +258.4 "Starving Stampede 2" #Ability { id: "7A03", source: "Proto-Carbuncle" } +259.8 "Starving Stampede 3" #Ability { id: "7A03", source: "Proto-Carbuncle" } +261.2 "Starving Stampede 4" #Ability { id: "7A03", source: "Proto-Carbuncle" } +262.5 "Starving Stampede 5" #Ability { id: "7A03", source: "Proto-Carbuncle" } +263.7 "Starving Stampede 6" #Ability { id: "7A03", source: "Proto-Carbuncle" } +264.9 "Starving Stampede 7" #Ability { id: "7A03", source: "Proto-Carbuncle" } +266.0 "Starving Stampede 8" #Ability { id: "7A03", source: "Proto-Carbuncle" } 267.0 "--targetable--" # This section can be extended by 10+ seconds if multiple towers are missed # due to multiple Devour/Spits. Have this timelime reflect the "good" pattern. # Unclear what the timeline looks like if you let one bait spawn. 267.0 "--targetable--" -270.3 "Venom" sync / 1[56]:[^:]*:Proto-Carbuncle:770C:/ -272.4 "Devour" sync / 1[56]:[^:]*:Proto-Carbuncle:7849:/ -275.5 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76F5:/ +270.3 "Venom" Ability { id: "770C", source: "Proto-Carbuncle" } +272.4 "Devour" Ability { id: "7849", source: "Proto-Carbuncle" } +275.5 "--sync--" Ability { id: "76F5", source: "Proto-Carbuncle" } # 2/3 Topaz Stones + stacks to break them -280.6 "--sync--" sync / 14:[^:]*:Proto-Carbuncle:7720:/ window 50,10 -285.6 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:7720:/ -292.7 "Ruby Glow 4" sync / 1[56]:[^:]*:Proto-Carbuncle:76F3:/ -298.8 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76FD:/ -298.8 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76FE:/ -305.9 "Venom Pool" sync / 1[56]:[^:]*:Proto-Carbuncle:79E2:/ -311.1 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76F5:/ -312.3 "Topaz Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:79FE:/ -312.9 "Ruby Reflection" sync / 1[56]:[^:]*:Proto-Carbuncle:76F8:/ -318.0 "Raging Claw x7 / Searing Ray?" #sync / 1[56]:[^:]*:Proto-Carbuncle:(76FA|76F7):/ -318.8 "Ruby Reflection?" #sync / 1[56]:[^:]*:Proto-Carbuncle:76F8:/ +280.6 "--sync--" StartsUsing { id: "7720", source: "Proto-Carbuncle" } window 50,10 +285.6 "Sonic Howl" Ability { id: "7720", source: "Proto-Carbuncle" } +292.7 "Ruby Glow 4" Ability { id: "76F3", source: "Proto-Carbuncle" } +298.8 "Topaz Stones" Ability { id: "76FD", source: "Proto-Carbuncle" } +298.8 "--sync--" Ability { id: "76FE", source: "Proto-Carbuncle" } +305.9 "Venom Pool" Ability { id: "79E2", source: "Proto-Carbuncle" } +311.1 "--sync--" Ability { id: "76F5", source: "Proto-Carbuncle" } +312.3 "Topaz Ray" Ability { id: "79FE", source: "Proto-Carbuncle" } +312.9 "Ruby Reflection" Ability { id: "76F8", source: "Proto-Carbuncle" } +318.0 "Raging Claw x7 / Searing Ray?" #Ability { id: ["76FA", "76F7"], source: "Proto-Carbuncle" } +318.8 "Ruby Reflection?" #Ability { id: "76F8", source: "Proto-Carbuncle" } # Light party splits -332.1 "Venomous Mass" sync / 1[56]:[^:]*:Proto-Carbuncle:771D:/ -339.2 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:784A:/ -352.6 "Ruby Glow 5" sync / 1[56]:[^:]*:Proto-Carbuncle:76F3:/ -359.7 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76FD:/ -359.7 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76FE:/ -373.3 "Topaz Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:79FE:/ -373.9 "Ruby Reflection" sync / 1[56]:[^:]*:Proto-Carbuncle:7700:/ -373.9 "Venom Squall" sync / 1[56]:[^:]*:Proto-Carbuncle:7716:/ -377.8 "Venom Rain" sync / 1[56]:[^:]*:Proto-Carbuncle:7718:/ -383.8 "Venom Drops" sync / 1[56]:[^:]*:Proto-Carbuncle:7719:/ -386.8 "Venom Pool" sync / 1[56]:[^:]*:Proto-Carbuncle:771A:/ +332.1 "Venomous Mass" Ability { id: "771D", source: "Proto-Carbuncle" } +339.2 "Toxic Crunch" Ability { id: "784A", source: "Proto-Carbuncle" } +352.6 "Ruby Glow 5" Ability { id: "76F3", source: "Proto-Carbuncle" } +359.7 "Topaz Stones" Ability { id: "76FD", source: "Proto-Carbuncle" } +359.7 "--sync--" Ability { id: "76FE", source: "Proto-Carbuncle" } +373.3 "Topaz Ray" Ability { id: "79FE", source: "Proto-Carbuncle" } +373.9 "Ruby Reflection" Ability { id: "7700", source: "Proto-Carbuncle" } +373.9 "Venom Squall" Ability { id: "7716", source: "Proto-Carbuncle" } +377.8 "Venom Rain" Ability { id: "7718", source: "Proto-Carbuncle" } +383.8 "Venom Drops" Ability { id: "7719", source: "Proto-Carbuncle" } +386.8 "Venom Pool" Ability { id: "771A", source: "Proto-Carbuncle" } 390.0 "--towers--" duration 10 # guessing -404.8 "Claw to Tail/Tail to Claw" sync / 1[56]:[^:]*:Proto-Carbuncle:(770E|7712):/ -#414.9 "Raging Tail" sync / 1[56]:[^:]*:Proto-Carbuncle:7A0C:/ -#416.8 "Raging Claw" sync / 1[56]:[^:]*:Proto-Carbuncle:7713:/ duration 2.2 -417.0 "Venomous Mass" sync / 1[56]:[^:]*:Proto-Carbuncle:771D:/ -424.1 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:784A:/ -435.4 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:7720:/ +404.8 "Claw to Tail/Tail to Claw" Ability { id: ["770E", "7712"], source: "Proto-Carbuncle" } +#414.9 "Raging Tail" Ability { id: "7A0C", source: "Proto-Carbuncle" } +#416.8 "Raging Claw" Ability { id: "7713", source: "Proto-Carbuncle" } duration 2.2 +417.0 "Venomous Mass" Ability { id: "771D", source: "Proto-Carbuncle" } +424.1 "Toxic Crunch" Ability { id: "784A", source: "Proto-Carbuncle" } +435.4 "Sonic Howl" Ability { id: "7720", source: "Proto-Carbuncle" } # Break Topaz Stones with poison stacks again -442.5 "Ruby Glow 6" sync / 1[56]:[^:]*:Proto-Carbuncle:76F3:/ -448.6 "Topaz Stones" sync / 1[56]:[^:]*:Proto-Carbuncle:76FD:/ -448.6 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76FE:/ -455.7 "Venom Pool" sync / 1[56]:[^:]*:Proto-Carbuncle:79E2:/ -462.2 "Topaz Ray" sync / 1[56]:[^:]*:Proto-Carbuncle:79FE:/ -462.8 "Ruby Reflection" sync / 1[56]:[^:]*:Proto-Carbuncle:7700:/ +442.5 "Ruby Glow 6" Ability { id: "76F3", source: "Proto-Carbuncle" } +448.6 "Topaz Stones" Ability { id: "76FD", source: "Proto-Carbuncle" } +448.6 "--sync--" Ability { id: "76FE", source: "Proto-Carbuncle" } +455.7 "Venom Pool" Ability { id: "79E2", source: "Proto-Carbuncle" } +462.2 "Topaz Ray" Ability { id: "79FE", source: "Proto-Carbuncle" } +462.8 "Ruby Reflection" Ability { id: "7700", source: "Proto-Carbuncle" } # Double Rush -465.6 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76F5:/ -472.7 "Double Rush 1" sync / 1[56]:[^:]*:Proto-Carbuncle:771B:/ -474.7 "Double Rush 2" sync / 1[56]:[^:]*:Proto-Carbuncle:771C:/ +465.6 "--sync--" Ability { id: "76F5", source: "Proto-Carbuncle" } +472.7 "Double Rush 1" Ability { id: "771B", source: "Proto-Carbuncle" } +474.7 "Double Rush 2" Ability { id: "771C", source: "Proto-Carbuncle" } -476.7 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:76F5:/ -482.7 "Venomous Mass" sync / 1[56]:[^:]*:Proto-Carbuncle:771D:/ -489.8 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:784A:/ -503.2 "Sonic Howl" sync / 1[56]:[^:]*:Proto-Carbuncle:7720:/ +476.7 "--sync--" Ability { id: "76F5", source: "Proto-Carbuncle" } +482.7 "Venomous Mass" Ability { id: "771D", source: "Proto-Carbuncle" } +489.8 "Toxic Crunch" Ability { id: "784A", source: "Proto-Carbuncle" } +503.2 "Sonic Howl" Ability { id: "7720", source: "Proto-Carbuncle" } -511.4 "Venom Squall/Venom Surge" sync / 1[56]:[^:]*:Proto-Carbuncle:(7716|7717):/ -515.3 "Venom Rain/Venom Pool" sync / 1[56]:[^:]*:Proto-Carbuncle:(7718|771A):/ -521.3 "Venom Drops" sync / 1[56]:[^:]*:Proto-Carbuncle:7719:/ -524.3 "Venom Pool/Venom Rain" sync / 1[56]:[^:]*:Proto-Carbuncle:(771A|7718):/ +511.4 "Venom Squall/Venom Surge" Ability { id: ["7716", "7717"], source: "Proto-Carbuncle" } +515.3 "Venom Rain/Venom Pool" Ability { id: ["7718", "771A"], source: "Proto-Carbuncle" } +521.3 "Venom Drops" Ability { id: "7719", source: "Proto-Carbuncle" } +524.3 "Venom Pool/Venom Rain" Ability { id: ["771A", "7718"], source: "Proto-Carbuncle" } -530.7 "Claw to Tail/Tail to Claw" sync / 1[56]:[^:]*:Proto-Carbuncle:(770E|7712):/ -544.1 "Venomous Mass" sync / 1[56]:[^:]*:Proto-Carbuncle:771D:/ -551.2 "Toxic Crunch" sync / 1[56]:[^:]*:Proto-Carbuncle:784A:/ +530.7 "Claw to Tail/Tail to Claw" Ability { id: ["770E", "7712"], source: "Proto-Carbuncle" } +544.1 "Venomous Mass" Ability { id: "771D", source: "Proto-Carbuncle" } +551.2 "Toxic Crunch" Ability { id: "784A", source: "Proto-Carbuncle" } # Soft enrage -565.5 "Sonic Shatter" sync / 1[56]:[^:]*:Proto-Carbuncle:7721:/ -568.6 "Sonic Shatter" sync / 1[56]:[^:]*:Proto-Carbuncle:7722:/ -571.7 "Sonic Shatter" sync / 1[56]:[^:]*:Proto-Carbuncle:7722:/ -574.8 "Sonic Shatter" sync / 1[56]:[^:]*:Proto-Carbuncle:7722:/ -577.9 "Sonic Shatter" sync / 1[56]:[^:]*:Proto-Carbuncle:7722:/ -583.0 "--sync--" sync / 1[56]:[^:]*:Proto-Carbuncle:7708:/ +565.5 "Sonic Shatter" Ability { id: "7721", source: "Proto-Carbuncle" } +568.6 "Sonic Shatter" Ability { id: "7722", source: "Proto-Carbuncle" } +571.7 "Sonic Shatter" Ability { id: "7722", source: "Proto-Carbuncle" } +574.8 "Sonic Shatter" Ability { id: "7722", source: "Proto-Carbuncle" } +577.9 "Sonic Shatter" Ability { id: "7722", source: "Proto-Carbuncle" } +583.0 "--sync--" Ability { id: "7708", source: "Proto-Carbuncle" } # Hard Enrage -593.4 "--sync--" sync / 14:[^:]*:Proto-Carbuncle:7723:/ window 1850,10 -598.1 "Acidic Slaver (enrage)" sync / 1[56]:[^:]*:Proto-Carbuncle:7723:/ +593.4 "--sync--" StartsUsing { id: "7723", source: "Proto-Carbuncle" } window 1850,10 +598.1 "Acidic Slaver (enrage)" Ability { id: "7723", source: "Proto-Carbuncle" } diff --git a/ui/raidboss/data/06-ew/raid/p6n.txt b/ui/raidboss/data/06-ew/raid/p6n.txt index 2dedb23a37..a37961e50f 100644 --- a/ui/raidboss/data/06-ew/raid/p6n.txt +++ b/ui/raidboss/data/06-ew/raid/p6n.txt @@ -4,104 +4,104 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.1 "Aetheric Polyominoid" sync / 1[56]:[^:]*:Hegemone:7853:/ window 11,5 -10.1 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -20.0 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -23.8 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -30.9 "Choros Ixou 1" sync / 1[56]:[^:]*:Hegemone:(7857|7858):/ -41.0 "Choros Ixou 2" sync / 1[56]:[^:]*:Hegemone:(7857|7858):/ -51.1 "Choros Ixou 3" sync / 1[56]:[^:]*:Hegemone:(7857|7858):/ -62.6 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:784E:/ window 65,10 -74.3 "Transmission 1" sync / 1[56]:[^:]*:Hegemone:784F:/ -84.0 "Transmission 2" sync / 1[56]:[^:]*:Hegemone:784F:/ -91.1 "Reek Havoc 1" sync / 1[56]:[^:]*:Parasitos:79ED:/ -100.8 "Reek Havoc 2" sync / 1[56]:[^:]*:Parasitos:79ED:/ -109.9 "Synergy" sync / 1[56]:[^:]*:Hegemone:785B:/ -121.8 "Aetheric Polyominoid" sync / 1[56]:[^:]*:Hegemone:7853:/ -121.8 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -127.5 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -134.7 "Choros Ixou" sync / 1[56]:[^:]*:Hegemone:(7857|7858):/ -135.9 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -141.3 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -149.1 "Strophe Ixou x8" sync / 1[56]:[^:]*:Hegemone:7A11:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.1 "Aetheric Polyominoid" Ability { id: "7853", source: "Hegemone" } window 11,5 +10.1 "--sync--" Ability { id: "7854", source: "Hegemone" } +20.0 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +23.8 "--sync--" Ability { id: "784C", source: "Hegemone" } +30.9 "Choros Ixou 1" Ability { id: ["7857", "7858"], source: "Hegemone" } +41.0 "Choros Ixou 2" Ability { id: ["7857", "7858"], source: "Hegemone" } +51.1 "Choros Ixou 3" Ability { id: ["7857", "7858"], source: "Hegemone" } +62.6 "Hemitheos's Dark IV" Ability { id: "784E", source: "Hegemone" } window 65,10 +74.3 "Transmission 1" Ability { id: "784F", source: "Hegemone" } +84.0 "Transmission 2" Ability { id: "784F", source: "Hegemone" } +91.1 "Reek Havoc 1" Ability { id: "79ED", source: "Parasitos" } +100.8 "Reek Havoc 2" Ability { id: "79ED", source: "Parasitos" } +109.9 "Synergy" Ability { id: "785B", source: "Hegemone" } +121.8 "Aetheric Polyominoid" Ability { id: "7853", source: "Hegemone" } +121.8 "--sync--" Ability { id: "7854", source: "Hegemone" } +127.5 "--sync--" Ability { id: "784C", source: "Hegemone" } +134.7 "Choros Ixou" Ability { id: ["7857", "7858"], source: "Hegemone" } +135.9 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +141.3 "--sync--" Ability { id: "784C", source: "Hegemone" } +149.1 "Strophe Ixou x8" Ability { id: "7A11", source: "Hegemone" } # Transmission All + Choros Ixou + Ashes -170.7 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:784E:/ window 30,30 -177.5 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -185.2 "Transmission" sync / 1[56]:[^:]*:Hegemone:784F:/ -195.4 "Choros Ixou" sync / 1[56]:[^:]*:Hegemone:7858:/ -201.8 "Reek Havoc 1" sync / 1[56]:[^:]*:Parasitos:79ED:/ -203.0 "--sync--" sync / 1[56]:[^:]*:Hegemone:785E:/ -211.8 "Reek Havoc 2" sync / 1[56]:[^:]*:Parasitos:79ED:/ -211.8 "Dark Ashes" sync / 1[56]:[^:]*:Hegemone:785F:/ -221.4 "Synergy" sync / 1[56]:[^:]*:Hegemone:785B:/ window 30,30 +170.7 "Hemitheos's Dark IV" Ability { id: "784E", source: "Hegemone" } window 30,30 +177.5 "--sync--" Ability { id: "784C", source: "Hegemone" } +185.2 "Transmission" Ability { id: "784F", source: "Hegemone" } +195.4 "Choros Ixou" Ability { id: "7858", source: "Hegemone" } +201.8 "Reek Havoc 1" Ability { id: "79ED", source: "Parasitos" } +203.0 "--sync--" Ability { id: "785E", source: "Hegemone" } +211.8 "Reek Havoc 2" Ability { id: "79ED", source: "Parasitos" } +211.8 "Dark Ashes" Ability { id: "785F", source: "Hegemone" } +221.4 "Synergy" Ability { id: "785B", source: "Hegemone" } window 30,30 # Exchange Introduction -234.3 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:784E:/ -244.1 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -250.8 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7856:/ -250.8 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -262.5 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -270.5 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -277.2 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7856:/ -277.2 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -288.9 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -297.9 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:784E:/ window 30,30 -307.7 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -314.4 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7856:/ -314.4 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -319.0 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -326.8 "Strophe Ixou x8" sync / 1[56]:[^:]*:Hegemone:7A11:/ duration 11.5 -327.0 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -347.3 "Synergy" sync / 1[56]:[^:]*:Hegemone:785B:/ window 30,30 +234.3 "Hemitheos's Dark IV" Ability { id: "784E", source: "Hegemone" } +244.1 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +250.8 "Polyominoid Sigma" Ability { id: "7856", source: "Hegemone" } +250.8 "--sync--" Ability { id: "7854", source: "Hegemone" } +262.5 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +270.5 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +277.2 "Polyominoid Sigma" Ability { id: "7856", source: "Hegemone" } +277.2 "--sync--" Ability { id: "7854", source: "Hegemone" } +288.9 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +297.9 "Hemitheos's Dark IV" Ability { id: "784E", source: "Hegemone" } window 30,30 +307.7 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +314.4 "Polyominoid Sigma" Ability { id: "7856", source: "Hegemone" } +314.4 "--sync--" Ability { id: "7854", source: "Hegemone" } +319.0 "--sync--" Ability { id: "784C", source: "Hegemone" } +326.8 "Strophe Ixou x8" Ability { id: "7A11", source: "Hegemone" } duration 11.5 +327.0 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +347.3 "Synergy" Ability { id: "785B", source: "Hegemone" } window 30,30 # Transmission All + Exchange + Choros Ixou -360.2 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:784E:/ -372.0 "Transmission" sync / 1[56]:[^:]*:Hegemone:784F:/ -381.7 "Aetheric Polyominoid" sync / 1[56]:[^:]*:Hegemone:7853:/ -381.7 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -388.7 "Reek Havoc 1" sync / 1[56]:[^:]*:Parasitos:79ED:/ -394.0 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -398.7 "Reek Havoc 2" sync / 1[56]:[^:]*:Parasitos:79ED:/ -407.4 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -414.1 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7856:/ -414.1 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -419.2 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -426.4 "Choros Ixou" sync / 1[56]:[^:]*:Hegemone:(7857|7858):/ -427.1 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -437.2 "Synergy" sync / 1[56]:[^:]*:Hegemone:785B:/ +360.2 "Hemitheos's Dark IV" Ability { id: "784E", source: "Hegemone" } +372.0 "Transmission" Ability { id: "784F", source: "Hegemone" } +381.7 "Aetheric Polyominoid" Ability { id: "7853", source: "Hegemone" } +381.7 "--sync--" Ability { id: "7854", source: "Hegemone" } +388.7 "Reek Havoc 1" Ability { id: "79ED", source: "Parasitos" } +394.0 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +398.7 "Reek Havoc 2" Ability { id: "79ED", source: "Parasitos" } +407.4 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +414.1 "Polyominoid Sigma" Ability { id: "7856", source: "Hegemone" } +414.1 "--sync--" Ability { id: "7854", source: "Hegemone" } +419.2 "--sync--" Ability { id: "784C", source: "Hegemone" } +426.4 "Choros Ixou" Ability { id: ["7857", "7858"], source: "Hegemone" } +427.1 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +437.2 "Synergy" Ability { id: "785B", source: "Hegemone" } # Exchange + Ashes -450.1 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:784E:/ -459.9 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -466.6 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7856:/ -466.6 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -474.2 "--sync--" sync / 1[56]:[^:]*:Hegemone:785E:/ -482.9 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -483.1 "Dark Ashes" sync / 1[56]:[^:]*:Hegemone:785F:/ -491.3 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -498.0 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7856:/ -498.0 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -502.6 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -510.5 "Strophe Ixou x8" sync / 1[56]:[^:]*:Hegemone:7A11:/ duration 11.5 -510.6 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7855:/ -531.0 "Synergy" sync / 1[56]:[^:]*:Hegemone:785B:/ +450.1 "Hemitheos's Dark IV" Ability { id: "784E", source: "Hegemone" } +459.9 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +466.6 "Polyominoid Sigma" Ability { id: "7856", source: "Hegemone" } +466.6 "--sync--" Ability { id: "7854", source: "Hegemone" } +474.2 "--sync--" Ability { id: "785E", source: "Hegemone" } +482.9 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +483.1 "Dark Ashes" Ability { id: "785F", source: "Hegemone" } +491.3 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +498.0 "Polyominoid Sigma" Ability { id: "7856", source: "Hegemone" } +498.0 "--sync--" Ability { id: "7854", source: "Hegemone" } +502.6 "--sync--" Ability { id: "784C", source: "Hegemone" } +510.5 "Strophe Ixou x8" Ability { id: "7A11", source: "Hegemone" } duration 11.5 +510.6 "Polyominous Dark IV" Ability { id: "7855", source: "Hegemone" } +531.0 "Synergy" Ability { id: "785B", source: "Hegemone" } # -> loop -543.9 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:784E:/ window 50,50 jump 360.2 -555.7 "Transmission" #sync / 1[56]:[^:]*:Hegemone:784F:/ -565.4 "Aetheric Polyominoid" #sync / 1[56]:[^:]*:Hegemone:7853:/ -565.4 "--sync--" #sync / 1[56]:[^:]*:Hegemone:7854:/ -572.4 "Reek Havoc 1" #sync / 1[56]:[^:]*:Parasitos:79ED:/ -577.7 "Polyominous Dark IV" #sync / 1[56]:[^:]*:Hegemone:7855:/ -582.4 "Reek Havoc 2" #sync / 1[56]:[^:]*:Parasitos:79ED:/ -591.1 "Aetherial Exchange" #sync / 1[56]:[^:]*:Hegemone:784D:/ -597.8 "Polyominoid Sigma" #sync / 1[56]:[^:]*:Hegemone:7856:/ -597.8 "--sync--" #sync / 1[56]:[^:]*:Hegemone:7854:/ -602.9 "--sync--" #sync / 1[56]:[^:]*:Hegemone:784C:/ -610.1 "Choros Ixou" #sync / 1[56]:[^:]*:Hegemone:(7857|7858):/ -610.8 "Polyominous Dark IV" #sync / 1[56]:[^:]*:Hegemone:7855:/ -620.9 "Synergy" #sync / 1[56]:[^:]*:Hegemone:785B:/ +543.9 "Hemitheos's Dark IV" Ability { id: "784E", source: "Hegemone" } window 50,50 jump 360.2 +555.7 "Transmission" #Ability { id: "784F", source: "Hegemone" } +565.4 "Aetheric Polyominoid" #Ability { id: "7853", source: "Hegemone" } +565.4 "--sync--" #Ability { id: "7854", source: "Hegemone" } +572.4 "Reek Havoc 1" #Ability { id: "79ED", source: "Parasitos" } +577.7 "Polyominous Dark IV" #Ability { id: "7855", source: "Hegemone" } +582.4 "Reek Havoc 2" #Ability { id: "79ED", source: "Parasitos" } +591.1 "Aetherial Exchange" #Ability { id: "784D", source: "Hegemone" } +597.8 "Polyominoid Sigma" #Ability { id: "7856", source: "Hegemone" } +597.8 "--sync--" #Ability { id: "7854", source: "Hegemone" } +602.9 "--sync--" #Ability { id: "784C", source: "Hegemone" } +610.1 "Choros Ixou" #Ability { id: ["7857", "7858"], source: "Hegemone" } +610.8 "Polyominous Dark IV" #Ability { id: "7855", source: "Hegemone" } +620.9 "Synergy" #Ability { id: "785B", source: "Hegemone" } diff --git a/ui/raidboss/data/06-ew/raid/p6s.txt b/ui/raidboss/data/06-ew/raid/p6s.txt index b02a0635af..efb7a91d0d 100644 --- a/ui/raidboss/data/06-ew/raid/p6s.txt +++ b/ui/raidboss/data/06-ew/raid/p6s.txt @@ -4,130 +4,130 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -9.5 "--sync--" sync / 14:[^:]*:Hegemone:7860:/ window 10,5 -14.2 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:7860:/ -28.0 "Synergy" sync / 1[56]:[^:]*:Hegemone:(7887|788A):/ -35.1 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -42.0 "Aetheric Polyominoid" sync / 1[56]:[^:]*:Hegemone:7866:/ window 15,15 -42.0 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -48.6 "Unholy Darkness" sync / 1[56]:[^:]*:Hegemone:(786D|786E|7891):/ -54.6 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7867:/ -54.7 "Exocleaver 1" sync / 1[56]:[^:]*:Hegemone:(7869|786B):/ window 2,2 -56.8 "Unholy Darkness" sync / 1[56]:[^:]*:Hegemone:7892:/ -57.2 "Exocleaver 2" sync / 1[56]:[^:]*:Hegemone:(7869|786B):/ window 2,2 -71.2 "--sync--" sync / 1[56]:[^:]*:Hegemone:7864:/ -71.7 "#1 Pathogenic Cells" #sync / 1[56]:[^:]*:Hegemone:7865:/ -73.6 "#2 Pathogenic Cells" #sync / 1[56]:[^:]*:Hegemone:7865:/ -75.6 "#3 Pathogenic Cells" #sync / 1[56]:[^:]*:Hegemone:7865:/ -77.5 "#4 Pathogenic Cells" #sync / 1[56]:[^:]*:Hegemone:7865:/ -79.5 "#5 Pathogenic Cells" #sync / 1[56]:[^:]*:Hegemone:7865:/ -81.4 "#6 Pathogenic Cells" #sync / 1[56]:[^:]*:Hegemone:7865:/ -83.4 "#7 Pathogenic Cells" #sync / 1[56]:[^:]*:Hegemone:7865:/ -85.3 "#8 Pathogenic Cells" #sync / 1[56]:[^:]*:Hegemone:7865:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +9.5 "--sync--" StartsUsing { id: "7860", source: "Hegemone" } window 10,5 +14.2 "Hemitheos's Dark IV" Ability { id: "7860", source: "Hegemone" } +28.0 "Synergy" Ability { id: ["7887", "788A"], source: "Hegemone" } +35.1 "--sync--" Ability { id: "784C", source: "Hegemone" } +42.0 "Aetheric Polyominoid" Ability { id: "7866", source: "Hegemone" } window 15,15 +42.0 "--sync--" Ability { id: "7854", source: "Hegemone" } +48.6 "Unholy Darkness" Ability { id: ["786D", "786E", "7891"], source: "Hegemone" } +54.6 "Polyominous Dark IV" Ability { id: "7867", source: "Hegemone" } +54.7 "Exocleaver 1" Ability { id: ["7869", "786B"], source: "Hegemone" } window 2,2 +56.8 "Unholy Darkness" Ability { id: "7892", source: "Hegemone" } +57.2 "Exocleaver 2" Ability { id: ["7869", "786B"], source: "Hegemone" } window 2,2 +71.2 "--sync--" Ability { id: "7864", source: "Hegemone" } +71.7 "#1 Pathogenic Cells" #Ability { id: "7865", source: "Hegemone" } +73.6 "#2 Pathogenic Cells" #Ability { id: "7865", source: "Hegemone" } +75.6 "#3 Pathogenic Cells" #Ability { id: "7865", source: "Hegemone" } +77.5 "#4 Pathogenic Cells" #Ability { id: "7865", source: "Hegemone" } +79.5 "#5 Pathogenic Cells" #Ability { id: "7865", source: "Hegemone" } +81.4 "#6 Pathogenic Cells" #Ability { id: "7865", source: "Hegemone" } +83.4 "#7 Pathogenic Cells" #Ability { id: "7865", source: "Hegemone" } +85.3 "#8 Pathogenic Cells" #Ability { id: "7865", source: "Hegemone" } -91.9 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -97.7 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ window 100,30 -104.4 "Exchange Of Agonies" sync / 1[56]:[^:]*:Hegemone:786C:/ -111.6 "Choros Ixou 1" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -112.3 "Unholy Darkness" sync / 1[56]:[^:]*:Hegemone:(786D|786E|7891):/ -114.7 "Choros Ixou 2" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -128.5 "Synergy" sync / 1[56]:[^:]*:Hegemone:(7887|788A):/ -141.4 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:7860:/ window 30,30 -153.2 "Transmission" sync / 1[56]:[^:]*:Hegemone:7861:/ -159.0 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -166.1 "Choros Ixou 1" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -168.0 "Chelic Claw/Reek Havoc" sync / 1[56]:[^:]*:Parasitos:(79EE|79EF):/ -169.2 "Choros Ixou 2" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -179.0 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -185.7 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7868:/ window 30,30 -185.7 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -195.3 "Dark Dome 1" sync / 1[56]:[^:]*:Hegemone:788B:/ -200.1 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7867:/ -200.1 "Dark Dome 2" sync / 1[56]:[^:]*:Hegemone:788C:/ -204.0 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -209.8 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -216.5 "Exchange Of Agonies" sync / 1[56]:[^:]*:Hegemone:786C:/ window 30,30 -224.4 "Exocleaver 1" sync / 1[56]:[^:]*:Hegemone:(7869|786B):/ window 2,2 -224.4 "Unholy Darkness" sync / 1[56]:[^:]*:Hegemone:7A0F:/ -227.0 "Exocleaver 2" sync / 1[56]:[^:]*:Hegemone:(7869|786B):/ window 2,2 -239.3 "Synergy" sync / 1[56]:[^:]*:Hegemone:(7887|788A):/ -252.2 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:7860:/ window 30,30 -262.0 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -268.7 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7868:/ -268.7 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -275.3 "Unholy Darkness" sync / 1[56]:[^:]*:Hegemone:7892:/ -282.3 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7867:/ window 30,30 -287.3 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -294.0 "Dark Ashes" sync / 1[56]:[^:]*:Hegemone:788D:/ -302.0 "Choros Ixou 1" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -303.0 "Dark Ashes" sync / 1[56]:[^:]*:Hegemone:788E:/ -305.1 "Choros Ixou 2" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -311.8 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -317.6 "Cachexia" sync / 1[56]:[^:]*:Hegemone:7876:/ window 30,30 -326.6 "Aetheronecrosis 1" #sync / 1[56]:[^:]*:Hegemone:7877:/ -330.6 "Aetheronecrosis 2" #sync / 1[56]:[^:]*:Hegemone:7877:/ -334.6 "Aetheronecrosis 3" #sync / 1[56]:[^:]*:Hegemone:7877:/ -334.8 "Dual Predation" sync / 1[56]:[^:]*:Hegemone:7878:/ -335.8 "Predation 1" sync / 1[56]:[^:]*:Hegemone:(787A|787B):/ -338.7 "Aetheronecrosis 4" #sync / 1[56]:[^:]*:Hegemone:7877:/ -339.9 "Predation 2" sync / 1[56]:[^:]*:Hegemone:(787A|787B):/ -343.9 "Predation 3" sync / 1[56]:[^:]*:Hegemone:(787A|787B):/ -347.9 "Predation 4" sync / 1[56]:[^:]*:Hegemone:(787A|787B):/ -356.9 "Ptera Ixou" sync / 1[56]:[^:]*:Hegemone:787C:/ -372.2 "Synergy" sync / 1[56]:[^:]*:Hegemone:(7887|788A):/ -384.3 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:7860:/ window 30,30 -395.0 "Aetheric Polyominoid" sync / 1[56]:[^:]*:Hegemone:7866:/ -395.0 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -401.6 "Dark Sphere" sync / 1[56]:[^:]*:Hegemone:788F:/ -407.7 "Dark Dome 1" sync / 1[56]:[^:]*:Hegemone:788B:/ -408.6 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7867:/ -412.6 "Dark Dome 2" sync / 1[56]:[^:]*:Hegemone:788C:/ -417.5 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ window 30,30 -423.4 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -430.1 "Exchange Of Agonies" sync / 1[56]:[^:]*:Hegemone:786C:/ -437.3 "Choros Ixou 1" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -437.8 "Unholy Darkness" sync / 1[56]:[^:]*:Hegemone:(786D|786E|7891):/ -440.2 "Choros Ixou 2" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -449.9 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -456.6 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7868:/ -456.6 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -461.2 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -468.3 "Choros Ixou 1" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -469.2 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7867:/ -471.4 "Choros Ixou 2" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -485.0 "Synergy" sync / 1[56]:[^:]*:Hegemone:(7887|788A):/ -497.1 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:7860:/ -503.9 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -509.7 "Cachexia" sync / 1[56]:[^:]*:Hegemone:7876:/ -517.4 "Transmission" sync / 1[56]:[^:]*:Hegemone:7861:/ window 30,30 -525.1 "Aetherial Exchange" sync / 1[56]:[^:]*:Hegemone:784D:/ -531.8 "Polyominoid Sigma" sync / 1[56]:[^:]*:Hegemone:7868:/ -531.8 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -537.5 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -545.3 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7867:/ -545.4 "Dark Sphere" sync / 1[56]:[^:]*:Hegemone:7880:/ -545.4 "Ptera Ixou" sync / 1[56]:[^:]*:Hegemone:787C:/ window 30,30 -545.4 "Unholy Darkness" sync / 1[56]:[^:]*:Hegemone:787F:/ -546.4 "Chelic Claw/Reek Havoc" sync / 1[56]:[^:]*:Parasitos:(79EE|79EF):/ -551.6 "--sync--" sync / 1[56]:[^:]*:Hegemone:7A19:/ -558.7 "Aetheric Polyominoid" sync / 1[56]:[^:]*:Hegemone:7866:/ -558.7 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -567.3 "Dark Dome" sync / 1[56]:[^:]*:Hegemone:788B:/ -571.7 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7867:/ -572.1 "Dark Dome" sync / 1[56]:[^:]*:Hegemone:788C:/ -577.0 "--sync--" sync / 1[56]:[^:]*:Hegemone:784C:/ -583.7 "Aetheric Polyominoid" sync / 1[56]:[^:]*:Hegemone:7866:/ -583.7 "--sync--" sync / 1[56]:[^:]*:Hegemone:7854:/ -592.8 "Choros Ixou 1" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -593.5 "Polyominous Dark IV" sync / 1[56]:[^:]*:Hegemone:7867:/ -595.9 "Choros Ixou 2" sync / 1[56]:[^:]*:Hegemone:(7881|7882|7883|7884):/ -608.9 "Synergy" sync / 1[56]:[^:]*:Hegemone:(7887|788A):/ -621.8 "Hemitheos's Dark IV" sync / 1[56]:[^:]*:Hegemone:7860:/ +91.9 "--sync--" Ability { id: "784C", source: "Hegemone" } +97.7 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } window 100,30 +104.4 "Exchange Of Agonies" Ability { id: "786C", source: "Hegemone" } +111.6 "Choros Ixou 1" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +112.3 "Unholy Darkness" Ability { id: ["786D", "786E", "7891"], source: "Hegemone" } +114.7 "Choros Ixou 2" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +128.5 "Synergy" Ability { id: ["7887", "788A"], source: "Hegemone" } +141.4 "Hemitheos's Dark IV" Ability { id: "7860", source: "Hegemone" } window 30,30 +153.2 "Transmission" Ability { id: "7861", source: "Hegemone" } +159.0 "--sync--" Ability { id: "784C", source: "Hegemone" } +166.1 "Choros Ixou 1" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +168.0 "Chelic Claw/Reek Havoc" Ability { id: ["79EE", "79EF"], source: "Parasitos" } +169.2 "Choros Ixou 2" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +179.0 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +185.7 "Polyominoid Sigma" Ability { id: "7868", source: "Hegemone" } window 30,30 +185.7 "--sync--" Ability { id: "7854", source: "Hegemone" } +195.3 "Dark Dome 1" Ability { id: "788B", source: "Hegemone" } +200.1 "Polyominous Dark IV" Ability { id: "7867", source: "Hegemone" } +200.1 "Dark Dome 2" Ability { id: "788C", source: "Hegemone" } +204.0 "--sync--" Ability { id: "784C", source: "Hegemone" } +209.8 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +216.5 "Exchange Of Agonies" Ability { id: "786C", source: "Hegemone" } window 30,30 +224.4 "Exocleaver 1" Ability { id: ["7869", "786B"], source: "Hegemone" } window 2,2 +224.4 "Unholy Darkness" Ability { id: "7A0F", source: "Hegemone" } +227.0 "Exocleaver 2" Ability { id: ["7869", "786B"], source: "Hegemone" } window 2,2 +239.3 "Synergy" Ability { id: ["7887", "788A"], source: "Hegemone" } +252.2 "Hemitheos's Dark IV" Ability { id: "7860", source: "Hegemone" } window 30,30 +262.0 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +268.7 "Polyominoid Sigma" Ability { id: "7868", source: "Hegemone" } +268.7 "--sync--" Ability { id: "7854", source: "Hegemone" } +275.3 "Unholy Darkness" Ability { id: "7892", source: "Hegemone" } +282.3 "Polyominous Dark IV" Ability { id: "7867", source: "Hegemone" } window 30,30 +287.3 "--sync--" Ability { id: "784C", source: "Hegemone" } +294.0 "Dark Ashes" Ability { id: "788D", source: "Hegemone" } +302.0 "Choros Ixou 1" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +303.0 "Dark Ashes" Ability { id: "788E", source: "Hegemone" } +305.1 "Choros Ixou 2" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +311.8 "--sync--" Ability { id: "784C", source: "Hegemone" } +317.6 "Cachexia" Ability { id: "7876", source: "Hegemone" } window 30,30 +326.6 "Aetheronecrosis 1" #Ability { id: "7877", source: "Hegemone" } +330.6 "Aetheronecrosis 2" #Ability { id: "7877", source: "Hegemone" } +334.6 "Aetheronecrosis 3" #Ability { id: "7877", source: "Hegemone" } +334.8 "Dual Predation" Ability { id: "7878", source: "Hegemone" } +335.8 "Predation 1" Ability { id: ["787A", "787B"], source: "Hegemone" } +338.7 "Aetheronecrosis 4" #Ability { id: "7877", source: "Hegemone" } +339.9 "Predation 2" Ability { id: ["787A", "787B"], source: "Hegemone" } +343.9 "Predation 3" Ability { id: ["787A", "787B"], source: "Hegemone" } +347.9 "Predation 4" Ability { id: ["787A", "787B"], source: "Hegemone" } +356.9 "Ptera Ixou" Ability { id: "787C", source: "Hegemone" } +372.2 "Synergy" Ability { id: ["7887", "788A"], source: "Hegemone" } +384.3 "Hemitheos's Dark IV" Ability { id: "7860", source: "Hegemone" } window 30,30 +395.0 "Aetheric Polyominoid" Ability { id: "7866", source: "Hegemone" } +395.0 "--sync--" Ability { id: "7854", source: "Hegemone" } +401.6 "Dark Sphere" Ability { id: "788F", source: "Hegemone" } +407.7 "Dark Dome 1" Ability { id: "788B", source: "Hegemone" } +408.6 "Polyominous Dark IV" Ability { id: "7867", source: "Hegemone" } +412.6 "Dark Dome 2" Ability { id: "788C", source: "Hegemone" } +417.5 "--sync--" Ability { id: "784C", source: "Hegemone" } window 30,30 +423.4 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +430.1 "Exchange Of Agonies" Ability { id: "786C", source: "Hegemone" } +437.3 "Choros Ixou 1" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +437.8 "Unholy Darkness" Ability { id: ["786D", "786E", "7891"], source: "Hegemone" } +440.2 "Choros Ixou 2" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +449.9 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +456.6 "Polyominoid Sigma" Ability { id: "7868", source: "Hegemone" } +456.6 "--sync--" Ability { id: "7854", source: "Hegemone" } +461.2 "--sync--" Ability { id: "784C", source: "Hegemone" } +468.3 "Choros Ixou 1" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +469.2 "Polyominous Dark IV" Ability { id: "7867", source: "Hegemone" } +471.4 "Choros Ixou 2" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +485.0 "Synergy" Ability { id: ["7887", "788A"], source: "Hegemone" } +497.1 "Hemitheos's Dark IV" Ability { id: "7860", source: "Hegemone" } +503.9 "--sync--" Ability { id: "784C", source: "Hegemone" } +509.7 "Cachexia" Ability { id: "7876", source: "Hegemone" } +517.4 "Transmission" Ability { id: "7861", source: "Hegemone" } window 30,30 +525.1 "Aetherial Exchange" Ability { id: "784D", source: "Hegemone" } +531.8 "Polyominoid Sigma" Ability { id: "7868", source: "Hegemone" } +531.8 "--sync--" Ability { id: "7854", source: "Hegemone" } +537.5 "--sync--" Ability { id: "784C", source: "Hegemone" } +545.3 "Polyominous Dark IV" Ability { id: "7867", source: "Hegemone" } +545.4 "Dark Sphere" Ability { id: "7880", source: "Hegemone" } +545.4 "Ptera Ixou" Ability { id: "787C", source: "Hegemone" } window 30,30 +545.4 "Unholy Darkness" Ability { id: "787F", source: "Hegemone" } +546.4 "Chelic Claw/Reek Havoc" Ability { id: ["79EE", "79EF"], source: "Parasitos" } +551.6 "--sync--" Ability { id: "7A19", source: "Hegemone" } +558.7 "Aetheric Polyominoid" Ability { id: "7866", source: "Hegemone" } +558.7 "--sync--" Ability { id: "7854", source: "Hegemone" } +567.3 "Dark Dome" Ability { id: "788B", source: "Hegemone" } +571.7 "Polyominous Dark IV" Ability { id: "7867", source: "Hegemone" } +572.1 "Dark Dome" Ability { id: "788C", source: "Hegemone" } +577.0 "--sync--" Ability { id: "784C", source: "Hegemone" } +583.7 "Aetheric Polyominoid" Ability { id: "7866", source: "Hegemone" } +583.7 "--sync--" Ability { id: "7854", source: "Hegemone" } +592.8 "Choros Ixou 1" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +593.5 "Polyominous Dark IV" Ability { id: "7867", source: "Hegemone" } +595.9 "Choros Ixou 2" Ability { id: ["7881", "7882", "7883", "7884"], source: "Hegemone" } +608.9 "Synergy" Ability { id: ["7887", "788A"], source: "Hegemone" } +621.8 "Hemitheos's Dark IV" Ability { id: "7860", source: "Hegemone" } # Enrage -631.0 "--sync--" sync / 14:[^:]*:Hegemone:7893:/ window 1000,10 -640.7 "Hemitheos's Dark IV (enrage)" sync / 1[56]:[^:]*:Hegemone:7893:/ +631.0 "--sync--" StartsUsing { id: "7893", source: "Hegemone" } window 1000,10 +640.7 "Hemitheos's Dark IV (enrage)" Ability { id: "7893", source: "Hegemone" } diff --git a/ui/raidboss/data/06-ew/raid/p7n.txt b/ui/raidboss/data/06-ew/raid/p7n.txt index 7639c9057f..4d2b883371 100644 --- a/ui/raidboss/data/06-ew/raid/p7n.txt +++ b/ui/raidboss/data/06-ew/raid/p7n.txt @@ -4,38 +4,38 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 # -ii 77F6 77F7 77FA 77FD 77FF 7800 7804 7806 7807 780A 783E 7841 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -3.0 "--sync--" sync / 1[56]:[^:]*:Agdistis:78E3:/ window 3,0 -15.8 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ window 16,5 -23.4 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:(77FB|77FC):/ -37.6 "Hemitheos's Holy" sync / 1[56]:[^:]*:Agdistis:7808:/ -44.0 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:77F8:/ -54.1 "Bough of Attis (in)" sync / 1[56]:[^:]*:Agdistis:77FE:/ -64.5 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ -72.1 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:(77FB|77FC):/ -81.9 "Immortal's Obol" sync / 1[56]:[^:]*:Agdistis:77F5:/ -102.0 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ -109.6 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:(77FB|77FC):/ -119.7 "Hemitheos's Aero II" sync / 1[56]:[^:]*:Agdistis:7809:/ window 215,10 -128.9 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:780B:/ -143.2 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7801:/ -154.9 "Static Moon" sync / 1[56]:[^:]*:Immature Io:7802:/ window 155,10 -166.9 "Blades of Attis (lines)" sync / 1[56]:[^:]*:Agdistis:7805:/ -184.1 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7801:/ -195.8 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7803:/ window 50,50 -216.9 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:79FA:/ -224.5 "Blades of Attis (triangle)" sync / 1[56]:[^:]*:Agdistis:7805:/ -238.5 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ -246.1 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:77FB:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +3.0 "--sync--" Ability { id: "78E3", source: "Agdistis" } window 3,0 +15.8 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } window 16,5 +23.4 "Bough of Attis (left/right)" Ability { id: ["77FB", "77FC"], source: "Agdistis" } +37.6 "Hemitheos's Holy" Ability { id: "7808", source: "Agdistis" } +44.0 "Hemitheos's Glare III" Ability { id: "77F8", source: "Agdistis" } +54.1 "Bough of Attis (in)" Ability { id: "77FE", source: "Agdistis" } +64.5 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } +72.1 "Bough of Attis (left/right)" Ability { id: ["77FB", "77FC"], source: "Agdistis" } +81.9 "Immortal's Obol" Ability { id: "77F5", source: "Agdistis" } +102.0 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } +109.6 "Bough of Attis (left/right)" Ability { id: ["77FB", "77FC"], source: "Agdistis" } +119.7 "Hemitheos's Aero II" Ability { id: "7809", source: "Agdistis" } window 215,10 +128.9 "Spark of Life" Ability { id: "780B", source: "Agdistis" } +143.2 "Forbidden Fruit" Ability { id: "7801", source: "Agdistis" } +154.9 "Static Moon" Ability { id: "7802", source: "Immature Io" } window 155,10 +166.9 "Blades of Attis (lines)" Ability { id: "7805", source: "Agdistis" } +184.1 "Forbidden Fruit" Ability { id: "7801", source: "Agdistis" } +195.8 "Stymphalian Strike" Ability { id: "7803", source: "Immature Stymphalide" } window 50,50 +216.9 "Hemitheos's Glare III" Ability { id: "79FA", source: "Agdistis" } +224.5 "Blades of Attis (triangle)" Ability { id: "7805", source: "Agdistis" } +238.5 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } +246.1 "Bough of Attis (left/right)" Ability { id: "77FB", source: "Agdistis" } # Forbidden Fruit pre-cast -249.5 "--sync--" sync / 14:[^:]*:Agdistis:7800:/ window 30,30 jump 400 +249.5 "--sync--" StartsUsing { id: "7800", source: "Agdistis" } window 30,30 jump 400 # Hemitheos' Holy pre-cast -250.6 "--sync--" sync / 14:[^:]*:Agdistis:7807:/ window 30,30 jump 1000 +250.6 "--sync--" StartsUsing { id: "7807", source: "Agdistis" } window 30,30 jump 1000 258.2 "Forbidden Fruit?" 260.4 "Hemitheos's Holy?" 266.8 "Hemitheos's Glare III?" @@ -47,39 +47,39 @@ hideall "--sync--" # Forbidden Fruit block -400.0 "--sync--" sync / 14:[^:]*:Agdistis:7800:/ -408.7 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7801:/ -420.8 "Static Moon" sync / 1[56]:[^:]*:Immature Io:7802:/ -420.8 "Hemitheos's Holy" sync / 1[56]:[^:]*:Agdistis:7808:/ -430.6 "Immortal's Obol" sync / 1[56]:[^:]*:Agdistis:77F5:/ -450.9 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7801:/ -464.3 "Bough of Attis (in)" sync / 1[56]:[^:]*:Agdistis:77FE:/ -465.7 "Static Moon" sync / 1[56]:[^:]*:Immature Io:7802:/ -475.9 "Hemitheos's Aero II" sync / 1[56]:[^:]*:Agdistis:7809:/ window 30,30 -489.2 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7801:/ -492.3 "Shadow of Attis" sync / 1[56]:[^:]*:Agdistis:783C:/ -500.7 "Static Moon/Stymphalian Strike" sync / 1[56]:[^:]*:(Immature Io|Immature Stymphalide):(7802|7803):/ -505.4 "Burst" sync / 1[56]:[^:]*:Agdistis:783D:/ -513.6 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ -521.2 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:(77FB|77FC):/ -530.4 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:780B:/ -539.5 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:780B:/ -548.6 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:780B:/ -563.8 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7801:/ -576.9 "Hemitheos's Aero IV" sync / 1[56]:[^:]*:Agdistis:7840:/ window 30,30 -580.5 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7803:/ -580.5 "Static Moon" sync / 1[56]:[^:]*:Immature Io:7802:/ -588.2 "Blades of Attis (lines)" sync / 1[56]:[^:]*:Agdistis:7805:/ -599.5 "Hemitheos's Holy" sync / 1[56]:[^:]*:Agdistis:7808:/ -607.8 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:780B:/ -616.9 "Hemitheos's Aero II" sync / 1[56]:[^:]*:Agdistis:7809:/ -636.1 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:79FA:/ window 30,30 -643.7 "Blades of Attis (triangle)" sync / 1[56]:[^:]*:Agdistis:7805:/ -658.0 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ -665.6 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:(77FB|77FC):/ +400.0 "--sync--" StartsUsing { id: "7800", source: "Agdistis" } +408.7 "Forbidden Fruit" Ability { id: "7801", source: "Agdistis" } +420.8 "Static Moon" Ability { id: "7802", source: "Immature Io" } +420.8 "Hemitheos's Holy" Ability { id: "7808", source: "Agdistis" } +430.6 "Immortal's Obol" Ability { id: "77F5", source: "Agdistis" } +450.9 "Forbidden Fruit" Ability { id: "7801", source: "Agdistis" } +464.3 "Bough of Attis (in)" Ability { id: "77FE", source: "Agdistis" } +465.7 "Static Moon" Ability { id: "7802", source: "Immature Io" } +475.9 "Hemitheos's Aero II" Ability { id: "7809", source: "Agdistis" } window 30,30 +489.2 "Forbidden Fruit" Ability { id: "7801", source: "Agdistis" } +492.3 "Shadow of Attis" Ability { id: "783C", source: "Agdistis" } +500.7 "Static Moon/Stymphalian Strike" Ability { id: ["7802", "7803"], source: ["Immature Io", "Immature Stymphalide"] } +505.4 "Burst" Ability { id: "783D", source: "Agdistis" } +513.6 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } +521.2 "Bough of Attis (left/right)" Ability { id: ["77FB", "77FC"], source: "Agdistis" } +530.4 "Spark of Life" Ability { id: "780B", source: "Agdistis" } +539.5 "Spark of Life" Ability { id: "780B", source: "Agdistis" } +548.6 "Spark of Life" Ability { id: "780B", source: "Agdistis" } +563.8 "Forbidden Fruit" Ability { id: "7801", source: "Agdistis" } +576.9 "Hemitheos's Aero IV" Ability { id: "7840", source: "Agdistis" } window 30,30 +580.5 "Stymphalian Strike" Ability { id: "7803", source: "Immature Stymphalide" } +580.5 "Static Moon" Ability { id: "7802", source: "Immature Io" } +588.2 "Blades of Attis (lines)" Ability { id: "7805", source: "Agdistis" } +599.5 "Hemitheos's Holy" Ability { id: "7808", source: "Agdistis" } +607.8 "Spark of Life" Ability { id: "780B", source: "Agdistis" } +616.9 "Hemitheos's Aero II" Ability { id: "7809", source: "Agdistis" } +636.1 "Hemitheos's Glare III" Ability { id: "79FA", source: "Agdistis" } window 30,30 +643.7 "Blades of Attis (triangle)" Ability { id: "7805", source: "Agdistis" } +658.0 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } +665.6 "Bough of Attis (left/right)" Ability { id: ["77FB", "77FC"], source: "Agdistis" } -669.1 "--sync--" sync / 14:[^:]*:Agdistis:7800:/ window 30,30 jump 400 -670.2 "--sync--" sync / 14:[^:]*:Agdistis:7807:/ window 30,30 jump 1000 +669.1 "--sync--" StartsUsing { id: "7800", source: "Agdistis" } window 30,30 jump 400 +670.2 "--sync--" StartsUsing { id: "7807", source: "Agdistis" } window 30,30 jump 1000 677.8 "Forbidden Fruit?" 680.0 "Hemitheos's Holy?" 686.4 "Hemitheos's Glare III?" @@ -91,29 +91,29 @@ hideall "--sync--" # Hemitheos' Holy block -1000.0 "--sync--" sync / 14:[^:]*:Agdistis:7807:/ -1009.8 "Hemitheos's Holy" sync / 1[56]:[^:]*:Agdistis:7808:/ -1016.2 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:77F8:/ window 30,30 -1026.3 "Bough of Attis (in)" sync / 1[56]:[^:]*:Agdistis:77FE:/ -1036.7 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ -1044.3 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:(77FB|77FC):/ -1054.1 "Immortal's Obol" sync / 1[56]:[^:]*:Agdistis:77F5:/ window 30,30 -1074.2 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ -1081.8 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:(77FB|77FC):/ -1091.9 "Hemitheos's Aero II" sync / 1[56]:[^:]*:Agdistis:7809:/ window 30,30 -1101.1 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:780B:/ -1115.5 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7801:/ -1127.2 "Static Moon" sync / 1[56]:[^:]*:Immature Io:7802:/ -1139.2 "Blades of Attis" sync / 1[56]:[^:]*:Agdistis:7805:/ -1156.9 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7801:/ -1168.6 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7803:/ -1189.8 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:79FA:/ window 30,30 -1197.4 "Blades of Attis" sync / 1[56]:[^:]*:Agdistis:7805:/ -1211.7 "Bough of Attis (out)" sync / 1[56]:[^:]*:Agdistis:77F9:/ -1219.3 "Bough of Attis (left/right)" sync / 1[56]:[^:]*:Agdistis:(77FB|77FC):/ +1000.0 "--sync--" StartsUsing { id: "7807", source: "Agdistis" } +1009.8 "Hemitheos's Holy" Ability { id: "7808", source: "Agdistis" } +1016.2 "Hemitheos's Glare III" Ability { id: "77F8", source: "Agdistis" } window 30,30 +1026.3 "Bough of Attis (in)" Ability { id: "77FE", source: "Agdistis" } +1036.7 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } +1044.3 "Bough of Attis (left/right)" Ability { id: ["77FB", "77FC"], source: "Agdistis" } +1054.1 "Immortal's Obol" Ability { id: "77F5", source: "Agdistis" } window 30,30 +1074.2 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } +1081.8 "Bough of Attis (left/right)" Ability { id: ["77FB", "77FC"], source: "Agdistis" } +1091.9 "Hemitheos's Aero II" Ability { id: "7809", source: "Agdistis" } window 30,30 +1101.1 "Spark of Life" Ability { id: "780B", source: "Agdistis" } +1115.5 "Forbidden Fruit" Ability { id: "7801", source: "Agdistis" } +1127.2 "Static Moon" Ability { id: "7802", source: "Immature Io" } +1139.2 "Blades of Attis" Ability { id: "7805", source: "Agdistis" } +1156.9 "Forbidden Fruit" Ability { id: "7801", source: "Agdistis" } +1168.6 "Stymphalian Strike" Ability { id: "7803", source: "Immature Stymphalide" } +1189.8 "Hemitheos's Glare III" Ability { id: "79FA", source: "Agdistis" } window 30,30 +1197.4 "Blades of Attis" Ability { id: "7805", source: "Agdistis" } +1211.7 "Bough of Attis (out)" Ability { id: "77F9", source: "Agdistis" } +1219.3 "Bough of Attis (left/right)" Ability { id: ["77FB", "77FC"], source: "Agdistis" } -1222.5 "--sync--" sync / 14:[^:]*:Agdistis:7800:/ window 30,30 jump 400 -1223.6 "--sync--" sync / 14:[^:]*:Agdistis:7807:/ window 30,30 jump 1000 +1222.5 "--sync--" StartsUsing { id: "7800", source: "Agdistis" } window 30,30 jump 400 +1223.6 "--sync--" StartsUsing { id: "7807", source: "Agdistis" } window 30,30 jump 1000 1231.2 "Forbidden Fruit?" 1233.4 "Hemitheos's Holy?" 1239.8 "Hemitheos's Glare III?" diff --git a/ui/raidboss/data/06-ew/raid/p7s.txt b/ui/raidboss/data/06-ew/raid/p7s.txt index 7d30a0cfac..72081cc718 100644 --- a/ui/raidboss/data/06-ew/raid/p7s.txt +++ b/ui/raidboss/data/06-ew/raid/p7s.txt @@ -5,139 +5,139 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -13.0 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:7839:/ window 50,50 -26.3 "Condensed Aero II/Dispersed Aero II" sync / 1[56]:[^:]*:Agdistis:(7836|7835):/ -34.1 "--sync--" sync / 1[56]:[^:]*:Agdistis:782E:/ -42.7 "Immortal's Obol" sync / 1[56]:[^:]*:Agdistis:780C:/ -44.6 "Blades of Attis" sync / 1[56]:[^:]*:Agdistis:782F:/ duration 14 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +13.0 "Spark of Life" Ability { id: "7839", source: "Agdistis" } window 50,50 +26.3 "Condensed Aero II/Dispersed Aero II" Ability { id: ["7836", "7835"], source: "Agdistis" } +34.1 "--sync--" Ability { id: "782E", source: "Agdistis" } +42.7 "Immortal's Obol" Ability { id: "780C", source: "Agdistis" } +44.6 "Blades of Attis" Ability { id: "782F", source: "Agdistis" } duration 14 # Forbidden Fruit: Healer Stacks -59.4 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7810:/ -64.5 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -70.7 "--sync--" sync / 1[56]:[^:]*:Agdistis:783A:/ -79.8 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:783B:/ -80.0 "Bough of Attis (far)" sync / 1[56]:[^:]*:Agdistis:7826:/ -80.3 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7815:/ -91.7 "Condensed Aero II/Dispersed Aero II" sync / 1[56]:[^:]*:Agdistis:(7836|7835):/ -102.5 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:7839:/ +59.4 "Forbidden Fruit" Ability { id: "7810", source: "Agdistis" } +64.5 "--eggs--" Ability { id: "7811", source: "Agdistis" } +70.7 "--sync--" Ability { id: "783A", source: "Agdistis" } +79.8 "Hemitheos's Holy III" Ability { id: "783B", source: "Agdistis" } +80.0 "Bough of Attis (far)" Ability { id: "7826", source: "Agdistis" } +80.3 "Stymphalian Strike" Ability { id: "7815", source: "Immature Stymphalide" } +91.7 "Condensed Aero II/Dispersed Aero II" Ability { id: ["7836", "7835"], source: "Agdistis" } +102.5 "Spark of Life" Ability { id: "7839", source: "Agdistis" } # Inviolate Bonds: Spread/Stack -111.8 "Inviolate Bonds" sync / 1[56]:[^:]*:Agdistis:781A:/ -121.8 "Bough of Attis (close)" sync / 1[56]:[^:]*:Agdistis:7821:/ -121.9 "Hemitheos's Aero III" sync / 1[56]:[^:]*:Agdistis:781B:/ -121.9 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:781C:/ -129.4 "Bough of Attis (arrow)" sync / 1[56]:[^:]*:Agdistis:(7823|7824):/ -132.9 "Hemitheos's Aero III" sync / 1[56]:[^:]*:Agdistis:781B:/ -132.9 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:781C:/ -138.6 "Roots of Attis" sync / 1[56]:[^:]*:Agdistis:780E:/ -157.1 "Condensed Aero II/Dispersed Aero II" sync / 1[56]:[^:]*:Agdistis:(7836|7835):/ +111.8 "Inviolate Bonds" Ability { id: "781A", source: "Agdistis" } +121.8 "Bough of Attis (close)" Ability { id: "7821", source: "Agdistis" } +121.9 "Hemitheos's Aero III" Ability { id: "781B", source: "Agdistis" } +121.9 "Hemitheos's Holy III" Ability { id: "781C", source: "Agdistis" } +129.4 "Bough of Attis (arrow)" Ability { id: ["7823", "7824"], source: "Agdistis" } +132.9 "Hemitheos's Aero III" Ability { id: "781B", source: "Agdistis" } +132.9 "Hemitheos's Holy III" Ability { id: "781C", source: "Agdistis" } +138.6 "Roots of Attis" Ability { id: "780E", source: "Agdistis" } +157.1 "Condensed Aero II/Dispersed Aero II" Ability { id: ["7836", "7835"], source: "Agdistis" } # Forbidden Fruit: Birds + Knockback -165.8 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7810:/ -170.9 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -176.0 "Multicast" sync / 1[56]:[^:]*:Agdistis:79F5:/ -182.0 "Hemitheos's Aero IV" sync / 1[56]:[^:]*:Agdistis:7A0B:/ -185.8 "Hemitheos's Holy" sync / 1[56]:[^:]*:Agdistis:7832:/ -186.8 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7815:/ -194.1 "Roots of Attis" sync / 1[56]:[^:]*:Agdistis:780E:/ +165.8 "Forbidden Fruit" Ability { id: "7810", source: "Agdistis" } +170.9 "--eggs--" Ability { id: "7811", source: "Agdistis" } +176.0 "Multicast" Ability { id: "79F5", source: "Agdistis" } +182.0 "Hemitheos's Aero IV" Ability { id: "7A0B", source: "Agdistis" } +185.8 "Hemitheos's Holy" Ability { id: "7832", source: "Agdistis" } +186.8 "Stymphalian Strike" Ability { id: "7815", source: "Immature Stymphalide" } +194.1 "Roots of Attis" Ability { id: "780E", source: "Agdistis" } # Forbidden Fruit: Stacks on walkway -205.5 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7810:/ -210.6 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -217.4 "--sync--" sync / 1[56]:[^:]*:Agdistis:783A:/ -223.4 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:783B:/ +205.5 "Forbidden Fruit" Ability { id: "7810", source: "Agdistis" } +210.6 "--eggs--" Ability { id: "7811", source: "Agdistis" } +217.4 "--sync--" Ability { id: "783A", source: "Agdistis" } +223.4 "Hemitheos's Holy III" Ability { id: "783B", source: "Agdistis" } -240.6 "Bough of Attis (close)" sync / 1[56]:[^:]*:Agdistis:7821:/ -248.2 "Bough of Attis (arrow)" sync / 1[56]:[^:]*:Agdistis:(7823|7824):/ -258.3 "Condensed Aero II/Dispersed Aero II" sync / 1[56]:[^:]*:Agdistis:(7836|7835):/ +240.6 "Bough of Attis (close)" Ability { id: "7821", source: "Agdistis" } +248.2 "Bough of Attis (arrow)" Ability { id: ["7823", "7824"], source: "Agdistis" } +258.3 "Condensed Aero II/Dispersed Aero II" Ability { id: ["7836", "7835"], source: "Agdistis" } # Forbidden Fruit: 3 Minos, 2 Bulls -266.0 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7810:/ -271.1 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -286.7 "Bullish Swipe" sync / 1[56]:[^:]*:Immature Minotaur:7818:/ -286.7 "Bullish Slash" sync / 1[56]:[^:]*:Immature Minotaur:7817:/ -286.7 "Static Path" sync / 1[56]:[^:]*:Immature Io:7813:/ +266.0 "Forbidden Fruit" Ability { id: "7810", source: "Agdistis" } +271.1 "--eggs--" Ability { id: "7811", source: "Agdistis" } +286.7 "Bullish Swipe" Ability { id: "7818", source: "Immature Minotaur" } +286.7 "Bullish Slash" Ability { id: "7817", source: "Immature Minotaur" } +286.7 "Static Path" Ability { id: "7813", source: "Immature Io" } # Knockback into stack groups with exaflares -294.8 "--sync--" sync / 1[56]:[^:]*:Agdistis:782E:/ -300.9 "Multicast" sync / 1[56]:[^:]*:Agdistis:79F5:/ -305.3 "Blades of Attis" sync / 1[56]:[^:]*:Agdistis:782F:/ duration 14 -307.0 "Hemitheos's Aero IV" sync / 1[56]:[^:]*:Agdistis:7834:/ -309.7 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:783B:/ -324.2 "Condensed Aero II/Dispersed Aero II" sync / 1[56]:[^:]*:Agdistis:(7836|7835):/ +294.8 "--sync--" Ability { id: "782E", source: "Agdistis" } +300.9 "Multicast" Ability { id: "79F5", source: "Agdistis" } +305.3 "Blades of Attis" Ability { id: "782F", source: "Agdistis" } duration 14 +307.0 "Hemitheos's Aero IV" Ability { id: "7834", source: "Agdistis" } +309.7 "Hemitheos's Holy III" Ability { id: "783B", source: "Agdistis" } +324.2 "Condensed Aero II/Dispersed Aero II" Ability { id: ["7836", "7835"], source: "Agdistis" } # Forbidden Fruit: Towers and Birds -333.9 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7810:/ -339.0 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -342.7 "Shadow of Attis" sync / 1[56]:[^:]*:Agdistis:782B:/ -354.2 "Bronze Bellows" sync / 1[56]:[^:]*:Immature Stymphalide:7816:/ -363.3 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:7839:/ -376.1 "Immortal's Obol" sync / 1[56]:[^:]*:Agdistis:780C:/ +333.9 "Forbidden Fruit" Ability { id: "7810", source: "Agdistis" } +339.0 "--eggs--" Ability { id: "7811", source: "Agdistis" } +342.7 "Shadow of Attis" Ability { id: "782B", source: "Agdistis" } +354.2 "Bronze Bellows" Ability { id: "7816", source: "Immature Stymphalide" } +363.3 "Spark of Life" Ability { id: "7839", source: "Agdistis" } +376.1 "Immortal's Obol" Ability { id: "780C", source: "Agdistis" } # Inviolate Purgation -385.2 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7810:/ -390.3 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -396.4 "Inviolate Purgation" sync / 1[56]:[^:]*:Agdistis:781E:/ -407.5 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:781C:/ -407.5 "Hemitheos's Aero III" sync / 1[56]:[^:]*:Agdistis:781B:/ -407.9 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7815:/ -422.5 "Hemitheos's Aero III" sync / 1[56]:[^:]*:Agdistis:781B:/ -422.5 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:781C:/ -422.6 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:7820:/ -422.6 "Hemitheos's Tornado" sync / 1[56]:[^:]*:Agdistis:781F:/ -429.7 "Light of Life 1" sync / 1[56]:[^:]*:Agdistis:78E2:/ -437.5 "Hemitheos's Aero III" sync / 1[56]:[^:]*:Agdistis:781B:/ -437.5 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:781C:/ -437.5 "Hemitheos's Tornado" sync / 1[56]:[^:]*:Agdistis:781F:/ -437.5 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:7820:/ -437.5 "Hemitheos's Tornado" sync / 1[56]:[^:]*:Agdistis:781F:/ -452.5 "Hemitheos's Aero III" sync / 1[56]:[^:]*:Agdistis:781B:/ -452.5 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:781C:/ -452.5 "Hemitheos's Tornado" sync / 1[56]:[^:]*:Agdistis:781F:/ -452.5 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:7820:/ -452.5 "Hemitheos's Tornado" sync / 1[56]:[^:]*:Agdistis:781F:/ -460.8 "Light of Life 2" sync / 1[56]:[^:]*:Agdistis:78E2:/ -467.5 "Hemitheos's Tornado" sync / 1[56]:[^:]*:Agdistis:781F:/ -467.5 "Hemitheos's Glare III" sync / 1[56]:[^:]*:Agdistis:7820:/ +385.2 "Forbidden Fruit" Ability { id: "7810", source: "Agdistis" } +390.3 "--eggs--" Ability { id: "7811", source: "Agdistis" } +396.4 "Inviolate Purgation" Ability { id: "781E", source: "Agdistis" } +407.5 "Hemitheos's Holy III" Ability { id: "781C", source: "Agdistis" } +407.5 "Hemitheos's Aero III" Ability { id: "781B", source: "Agdistis" } +407.9 "Stymphalian Strike" Ability { id: "7815", source: "Immature Stymphalide" } +422.5 "Hemitheos's Aero III" Ability { id: "781B", source: "Agdistis" } +422.5 "Hemitheos's Holy III" Ability { id: "781C", source: "Agdistis" } +422.6 "Hemitheos's Glare III" Ability { id: "7820", source: "Agdistis" } +422.6 "Hemitheos's Tornado" Ability { id: "781F", source: "Agdistis" } +429.7 "Light of Life 1" Ability { id: "78E2", source: "Agdistis" } +437.5 "Hemitheos's Aero III" Ability { id: "781B", source: "Agdistis" } +437.5 "Hemitheos's Holy III" Ability { id: "781C", source: "Agdistis" } +437.5 "Hemitheos's Tornado" Ability { id: "781F", source: "Agdistis" } +437.5 "Hemitheos's Glare III" Ability { id: "7820", source: "Agdistis" } +437.5 "Hemitheos's Tornado" Ability { id: "781F", source: "Agdistis" } +452.5 "Hemitheos's Aero III" Ability { id: "781B", source: "Agdistis" } +452.5 "Hemitheos's Holy III" Ability { id: "781C", source: "Agdistis" } +452.5 "Hemitheos's Tornado" Ability { id: "781F", source: "Agdistis" } +452.5 "Hemitheos's Glare III" Ability { id: "7820", source: "Agdistis" } +452.5 "Hemitheos's Tornado" Ability { id: "781F", source: "Agdistis" } +460.8 "Light of Life 2" Ability { id: "78E2", source: "Agdistis" } +467.5 "Hemitheos's Tornado" Ability { id: "781F", source: "Agdistis" } +467.5 "Hemitheos's Glare III" Ability { id: "7820", source: "Agdistis" } # Forbidden Fruit: chasing aoes -476.2 "Forbidden Fruit" sync / 1[56]:[^:]*:Agdistis:7810:/ -481.3 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -486.4 "Roots of Attis" sync / 1[56]:[^:]*:Agdistis:780E:/ -493.5 "Hemitheos's Glare" sync / 1[56]:[^:]*:Agdistis:7828:/ -498.5 "--chasing aoe--" sync / 1[56]:[^:]*:Agdistis:7829:/ duration 5.5 -501.1 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7815:/ +476.2 "Forbidden Fruit" Ability { id: "7810", source: "Agdistis" } +481.3 "--eggs--" Ability { id: "7811", source: "Agdistis" } +486.4 "Roots of Attis" Ability { id: "780E", source: "Agdistis" } +493.5 "Hemitheos's Glare" Ability { id: "7828", source: "Agdistis" } +498.5 "--chasing aoe--" Ability { id: "7829", source: "Agdistis" } duration 5.5 +501.1 "Stymphalian Strike" Ability { id: "7815", source: "Immature Stymphalide" } # Famine's Harvest -508.0 "Famine's Harvest" sync / 1[56]:[^:]*:Agdistis:7A4F:/ -513.1 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -528.7 "Bullish Swipe" sync / 1[56]:[^:]*:Immature Minotaur:7818:/ -528.7 "Bullish Slash" sync / 1[56]:[^:]*:Immature Minotaur:7817:/ -528.9 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7815:/ +508.0 "Famine's Harvest" Ability { id: "7A4F", source: "Agdistis" } +513.1 "--eggs--" Ability { id: "7811", source: "Agdistis" } +528.7 "Bullish Swipe" Ability { id: "7818", source: "Immature Minotaur" } +528.7 "Bullish Slash" Ability { id: "7817", source: "Immature Minotaur" } +528.9 "Stymphalian Strike" Ability { id: "7815", source: "Immature Stymphalide" } # Death's Harvest -540.6 "Death's Harvest" sync / 1[56]:[^:]*:Agdistis:7A50:/ -545.7 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -561.3 "Static Path" sync / 1[56]:[^:]*:Immature Io:7813:/ -561.6 "Stymphalian Strike" sync / 1[56]:[^:]*:Immature Stymphalide:7815:/ +540.6 "Death's Harvest" Ability { id: "7A50", source: "Agdistis" } +545.7 "--eggs--" Ability { id: "7811", source: "Agdistis" } +561.3 "Static Path" Ability { id: "7813", source: "Immature Io" } +561.6 "Stymphalian Strike" Ability { id: "7815", source: "Immature Stymphalide" } # War's Harvest -573.3 "War's Harvest" sync / 1[56]:[^:]*:Agdistis:7A51:/ -578.4 "--eggs--" sync / 1[56]:[^:]*:Agdistis:7811:/ -594.0 "Bullish Slash" sync / 1[56]:[^:]*:Immature Minotaur:7817:/ -594.0 "Bronze Bellows" sync / 1[56]:[^:]*:Immature Stymphalide:7816:/ -594.0 "Static Path" sync / 1[56]:[^:]*:Immature Io:7813:/ - -607.0 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:7839:/ -617.3 "--sync--" sync / 1[56]:[^:]*:Agdistis:783A:/ -626.3 "Bough of Attis (close)" sync / 1[56]:[^:]*:Agdistis:7821:/ -627.5 "Hemitheos's Holy III" sync / 1[56]:[^:]*:Agdistis:783B:/ -633.9 "Bough of Attis (arrow)" sync / 1[56]:[^:]*:Agdistis:(7823|7824):/ -643.1 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:7839:/ -656.3 "Spark of Life" sync / 1[56]:[^:]*:Agdistis:7839:/ - -663.5 "--sync--" sync / 14:[^:]*:Agdistis:783F:/ window 50,50 -673.5 "Light of Life (enrage)" sync / 1[56]:[^:]*:Agdistis:783F:/ +573.3 "War's Harvest" Ability { id: "7A51", source: "Agdistis" } +578.4 "--eggs--" Ability { id: "7811", source: "Agdistis" } +594.0 "Bullish Slash" Ability { id: "7817", source: "Immature Minotaur" } +594.0 "Bronze Bellows" Ability { id: "7816", source: "Immature Stymphalide" } +594.0 "Static Path" Ability { id: "7813", source: "Immature Io" } + +607.0 "Spark of Life" Ability { id: "7839", source: "Agdistis" } +617.3 "--sync--" Ability { id: "783A", source: "Agdistis" } +626.3 "Bough of Attis (close)" Ability { id: "7821", source: "Agdistis" } +627.5 "Hemitheos's Holy III" Ability { id: "783B", source: "Agdistis" } +633.9 "Bough of Attis (arrow)" Ability { id: ["7823", "7824"], source: "Agdistis" } +643.1 "Spark of Life" Ability { id: "7839", source: "Agdistis" } +656.3 "Spark of Life" Ability { id: "7839", source: "Agdistis" } + +663.5 "--sync--" StartsUsing { id: "783F", source: "Agdistis" } window 50,50 +673.5 "Light of Life (enrage)" Ability { id: "783F", source: "Agdistis" } diff --git a/ui/raidboss/data/06-ew/raid/p8n.txt b/ui/raidboss/data/06-ew/raid/p8n.txt index 72807063cf..d512a6ea54 100644 --- a/ui/raidboss/data/06-ew/raid/p8n.txt +++ b/ui/raidboss/data/06-ew/raid/p8n.txt @@ -18,281 +18,281 @@ hideall "--sync--" # (cont.) --+ +-> Sunforge v2 -+ # +-> Gorgon v2 -> Vent v2 -> Quadruped v2 -+ +-> Gorgon v2 -> etc -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "--sync--" sync / 14:[^:]*:Hephaistos:7905:/ window 10,10 -12.0 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "--sync--" StartsUsing { id: "7905", source: "Hephaistos" } window 10,10 +12.0 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } # Sunforge v1 -17.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -26.4 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:78EC:/ -27.4 "Scorching Fang" sync / 1[56]:[^:]*:Hephaistos:78EE:/ -36.6 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:78ED:/ -37.6 "Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:78EF:/ -46.8 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ -47.8 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -56.1 "Flameviper" sync / 1[56]:[^:]*:Hephaistos:7908:/ +17.1 "--sync--" Ability { id: "7108", source: "Hephaistos" } +26.4 "Sunforge" Ability { id: "78EC", source: "Hephaistos" } +27.4 "Scorching Fang" Ability { id: "78EE", source: "Hephaistos" } +36.6 "Sunforge" Ability { id: "78ED", source: "Hephaistos" } +37.6 "Sun's Pinion" Ability { id: "78EF", source: "Hephaistos" } +46.8 "Sunforge" Ability { id: ["78EC", "78ED"], source: "Hephaistos" } +47.8 "Scorching Fang/Sun's Pinion" Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +56.1 "Flameviper" Ability { id: "7908", source: "Hephaistos" } # jump to Quadruped v1 or Gorgon v1 # -> Quadruped v1 branch -63.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -68.5 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ window 50,50 jump 168.5 -79.1 "Quadrupedal Crush?" #sync / 1[56]:[^:]*:Hephaistos:7904:/ -85.1 "--sync--" #sync / 1[56]:[^:]*:Hephaistos:790B:/ -91.6 "Blazing Footfalls?" #sync / 1[56]:[^:]*:Hephaistos:7900:/ +63.3 "--sync--" Ability { id: "7108", source: "Hephaistos" } +68.5 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } window 50,50 jump 168.5 +79.1 "Quadrupedal Crush?" #Ability { id: "7904", source: "Hephaistos" } +85.1 "--sync--" #Ability { id: "790B", source: "Hephaistos" } +91.6 "Blazing Footfalls?" #Ability { id: "7900", source: "Hephaistos" } # -> Gorgon v1 branch -63.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ +63.3 "--sync--" Ability { id: "7108", source: "Hephaistos" } # don't double up with quadruped's 794B Reforged Reflection above -68.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:794C:/ window 50,50 jump 468.5 -80.8 "Into the Shadows?" #sync / 1[56]:[^:]*:Hephaistos:78FB:/ -88.8 "--sync--" #sync / 1[56]:[^:]*:Gorgon:78FC:/ -89.9 "Petrifaction?" #sync / 1[56]:[^:]*:[^:]*:6723:/ +68.5 "--sync--" Ability { id: "794C", source: "Hephaistos" } window 50,50 jump 468.5 +80.8 "Into the Shadows?" #Ability { id: "78FB", source: "Hephaistos" } +88.8 "--sync--" #Ability { id: "78FC", source: "Gorgon" } +89.9 "Petrifaction?" #Ability { id: "6723" } # Quadruped v1 (Quadruped branch) -163.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -168.5 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ -179.1 "Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:7904:/ -185.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:790B:/ -191.6 "Blazing Footfalls" sync / 1[56]:[^:]*:Hephaistos:7900:/ +163.3 "--sync--" Ability { id: "7108", source: "Hephaistos" } +168.5 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } +179.1 "Quadrupedal Crush" Ability { id: "7904", source: "Hephaistos" } +185.1 "--sync--" Ability { id: "790B", source: "Hephaistos" } +191.6 "Blazing Footfalls" Ability { id: "7900", source: "Hephaistos" } 191.6 "--untargetable--" -192.3 "Trailblaze" sync / 1[56]:[^:]*:Hephaistos:790D:/ -194.6 "Quadrupedal Impact" sync / 1[56]:[^:]*:Hephaistos:7103:/ -197.2 "Quadrupedal Impact" sync / 1[56]:[^:]*:Hephaistos:7103:/ +192.3 "Trailblaze" Ability { id: "790D", source: "Hephaistos" } +194.6 "Quadrupedal Impact" Ability { id: "7103", source: "Hephaistos" } +197.2 "Quadrupedal Impact" Ability { id: "7103", source: "Hephaistos" } 198.9 "--targetable--" -208.0 "Rearing Rampage" sync / 1[56]:[^:]*:Hephaistos:79AB:/ +208.0 "Rearing Rampage" Ability { id: "79AB", source: "Hephaistos" } # Vent v1 (Quadruped branch) -221.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -226.8 "Fourfold Fires" sync / 1[56]:[^:]*:Hephaistos:78F2:/ -232.6 "Abyssal Fires" sync / 1[56]:[^:]*:Hephaistos:78F1:/ -235.9 "--sync--" sync / 1[56]:[^:]*:Hephaistos:78F0:/ -241.8 "Cthonic Vent 1" sync / 1[56]:[^:]*:Suneater:78F5:/ -249.8 "Cthonic Vent 2" sync / 1[56]:[^:]*:Suneater:794D:/ -257.8 "Cthonic Vent 3" sync / 1[56]:[^:]*:Suneater:78F6:/ -264.2 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ -265.2 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -272.3 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ +221.5 "--sync--" Ability { id: "7108", source: "Hephaistos" } +226.8 "Fourfold Fires" Ability { id: "78F2", source: "Hephaistos" } +232.6 "Abyssal Fires" Ability { id: "78F1", source: "Hephaistos" } +235.9 "--sync--" Ability { id: "78F0", source: "Hephaistos" } +241.8 "Cthonic Vent 1" Ability { id: "78F5", source: "Suneater" } +249.8 "Cthonic Vent 2" Ability { id: "794D", source: "Suneater" } +257.8 "Cthonic Vent 3" Ability { id: "78F6", source: "Suneater" } +264.2 "Sunforge" Ability { id: ["78EC", "78ED"], source: "Hephaistos" } +265.2 "Scorching Fang/Sun's Pinion" Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +272.3 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } # Gorgon v1 (Quadruped branch) -279.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -284.7 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794C:/ -297.0 "Into the Shadows" sync / 1[56]:[^:]*:Hephaistos:78FB:/ -305.0 "--sync--" sync / 1[56]:[^:]*:Gorgon:78FC:/ -306.1 "Petrifaction" sync / 1[56]:[^:]*:[^:]*:6723:/ +279.5 "--sync--" Ability { id: "7108", source: "Hephaistos" } +284.7 "Reforged Reflection" Ability { id: "794C", source: "Hephaistos" } +297.0 "Into the Shadows" Ability { id: "78FB", source: "Hephaistos" } +305.0 "--sync--" Ability { id: "78FC", source: "Gorgon" } +306.1 "Petrifaction" Ability { id: "6723" } 306.1 "--targetable--" -312.3 "Gorgospit" sync / 1[56]:[^:]*:Hephaistos:78FF:/ -319.6 "Gorgospit" sync / 1[56]:[^:]*:Hephaistos:78FF:/ -327.7 "Ektothermos" sync / 1[56]:[^:]*:Hephaistos:78FE:/ -338.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ +312.3 "Gorgospit" Ability { id: "78FF", source: "Hephaistos" } +319.6 "Gorgospit" Ability { id: "78FF", source: "Hephaistos" } +327.7 "Ektothermos" Ability { id: "78FE", source: "Hephaistos" } +338.1 "--sync--" Ability { id: "7108", source: "Hephaistos" } # -> Torches v1 (both branches) -343.6 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -348.7 "Volcanic Torches" sync / 1[56]:[^:]*:Hephaistos:78F7:/ window 50,50 jump 643.7 -362.7 "Torch Flame" #sync / 1[56]:[^:]*:Hephaistos:78F8:/ -366.8 "Volcanic Torches" #sync / 1[56]:[^:]*:Hephaistos:78F7:/ -374.9 "Hemitheos's Flare" #sync / 1[56]:[^:]*:Hephaistos:7906:/ -380.8 "Torch Flame" #sync / 1[56]:[^:]*:Hephaistos:78F8:/ -380.9 "Hemitheos's Flare" #sync / 1[56]:[^:]*:Hephaistos:7907:/ -388.1 "Sunforge" #sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ -389.1 "Scorching Fang/Sun's Pinion" #sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -396.2 "Genesis of Flame" #sync / 1[56]:[^:]*:Hephaistos:7905:/ -404.4 "Flameviper" #sync / 1[56]:[^:]*:Hephaistos:7908:/ +343.6 "--sync--" Ability { id: "7108", source: "Hephaistos" } +348.7 "Volcanic Torches" Ability { id: "78F7", source: "Hephaistos" } window 50,50 jump 643.7 +362.7 "Torch Flame" #Ability { id: "78F8", source: "Hephaistos" } +366.8 "Volcanic Torches" #Ability { id: "78F7", source: "Hephaistos" } +374.9 "Hemitheos's Flare" #Ability { id: "7906", source: "Hephaistos" } +380.8 "Torch Flame" #Ability { id: "78F8", source: "Hephaistos" } +380.9 "Hemitheos's Flare" #Ability { id: "7907", source: "Hephaistos" } +388.1 "Sunforge" #Ability { id: ["78EC", "78ED"], source: "Hephaistos" } +389.1 "Scorching Fang/Sun's Pinion" #Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +396.2 "Genesis of Flame" #Ability { id: "7905", source: "Hephaistos" } +404.4 "Flameviper" #Ability { id: "7908", source: "Hephaistos" } # Gorgon v1 (Gorgon branch) -463.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -468.5 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794C:/ -480.8 "Into the Shadows" sync / 1[56]:[^:]*:Hephaistos:78FB:/ -488.8 "--sync--" sync / 1[56]:[^:]*:Gorgon:78FC:/ -489.9 "Petrifaction" sync / 1[56]:[^:]*:[^:]*:6723:/ +463.3 "--sync--" Ability { id: "7108", source: "Hephaistos" } +468.5 "Reforged Reflection" Ability { id: "794C", source: "Hephaistos" } +480.8 "Into the Shadows" Ability { id: "78FB", source: "Hephaistos" } +488.8 "--sync--" Ability { id: "78FC", source: "Gorgon" } +489.9 "Petrifaction" Ability { id: "6723" } 489.9 "--targetable--" -496.1 "Gorgospit" sync / 1[56]:[^:]*:Hephaistos:78FF:/ -503.4 "Gorgospit" sync / 1[56]:[^:]*:Hephaistos:78FF:/ -511.5 "Ektothermos" sync / 1[56]:[^:]*:Hephaistos:78FE:/ +496.1 "Gorgospit" Ability { id: "78FF", source: "Hephaistos" } +503.4 "Gorgospit" Ability { id: "78FF", source: "Hephaistos" } +511.5 "Ektothermos" Ability { id: "78FE", source: "Hephaistos" } # Vent v1 (Gorgon branch) -521.9 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -527.2 "Fourfold Fires" sync / 1[56]:[^:]*:Hephaistos:78F2:/ -533.0 "Abyssal Fires" sync / 1[56]:[^:]*:Hephaistos:78F1:/ -536.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:78F0:/ -542.2 "Cthonic Vent 1" sync / 1[56]:[^:]*:Suneater:78F5:/ -550.2 "Cthonic Vent 2" sync / 1[56]:[^:]*:Suneater:794D:/ -558.2 "Cthonic Vent 3" sync / 1[56]:[^:]*:Suneater:78F6:/ -564.6 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ -565.6 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -572.7 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ +521.9 "--sync--" Ability { id: "7108", source: "Hephaistos" } +527.2 "Fourfold Fires" Ability { id: "78F2", source: "Hephaistos" } +533.0 "Abyssal Fires" Ability { id: "78F1", source: "Hephaistos" } +536.3 "--sync--" Ability { id: "78F0", source: "Hephaistos" } +542.2 "Cthonic Vent 1" Ability { id: "78F5", source: "Suneater" } +550.2 "Cthonic Vent 2" Ability { id: "794D", source: "Suneater" } +558.2 "Cthonic Vent 3" Ability { id: "78F6", source: "Suneater" } +564.6 "Sunforge" Ability { id: ["78EC", "78ED"], source: "Hephaistos" } +565.6 "Scorching Fang/Sun's Pinion" Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +572.7 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } # Quadruped v1 (Gorgon branch) -579.9 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -585.1 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ -595.8 "Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:7904:/ -601.8 "--sync--" sync / 1[56]:[^:]*:Hephaistos:790B:/ -608.4 "Blazing Footfalls" sync / 1[56]:[^:]*:Hephaistos:7900:/ +579.9 "--sync--" Ability { id: "7108", source: "Hephaistos" } +585.1 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } +595.8 "Quadrupedal Crush" Ability { id: "7904", source: "Hephaistos" } +601.8 "--sync--" Ability { id: "790B", source: "Hephaistos" } +608.4 "Blazing Footfalls" Ability { id: "7900", source: "Hephaistos" } 608.4 "--untargetable--" -609.1 "Trailblaze" sync / 1[56]:[^:]*:Hephaistos:790D:/ -611.6 "Quadrupedal Impact 1" sync / 1[56]:[^:]*:Hephaistos:7103:/ -614.4 "Quadrupedal Impact 2" sync / 1[56]:[^:]*:Hephaistos:7103:/ +609.1 "Trailblaze" Ability { id: "790D", source: "Hephaistos" } +611.6 "Quadrupedal Impact 1" Ability { id: "7103", source: "Hephaistos" } +614.4 "Quadrupedal Impact 2" Ability { id: "7103", source: "Hephaistos" } 616.2 "--targetable--" -625.3 "Rearing Rampage" sync / 1[56]:[^:]*:Hephaistos:79AB:/ +625.3 "Rearing Rampage" Ability { id: "79AB", source: "Hephaistos" } # Torches v1 (both branches) -638.6 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -643.7 "Volcanic Torches" sync / 1[56]:[^:]*:Hephaistos:78F7:/ -657.7 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:78F8:/ -661.8 "Volcanic Torches" sync / 1[56]:[^:]*:Hephaistos:78F7:/ -669.9 "Hemitheos's Flare" sync / 1[56]:[^:]*:Hephaistos:7906:/ -675.8 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:78F8:/ -675.9 "Hemitheos's Flare" sync / 1[56]:[^:]*:Hephaistos:7907:/ -683.1 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ -684.1 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -691.2 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ -699.4 "Flameviper" sync / 1[56]:[^:]*:Hephaistos:7908:/ +638.6 "--sync--" Ability { id: "7108", source: "Hephaistos" } +643.7 "Volcanic Torches" Ability { id: "78F7", source: "Hephaistos" } +657.7 "Torch Flame" Ability { id: "78F8", source: "Hephaistos" } +661.8 "Volcanic Torches" Ability { id: "78F7", source: "Hephaistos" } +669.9 "Hemitheos's Flare" Ability { id: "7906", source: "Hephaistos" } +675.8 "Torch Flame" Ability { id: "78F8", source: "Hephaistos" } +675.9 "Hemitheos's Flare" Ability { id: "7907", source: "Hephaistos" } +683.1 "Sunforge" Ability { id: ["78EC", "78ED"], source: "Hephaistos" } +684.1 "Scorching Fang/Sun's Pinion" Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +691.2 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } +699.4 "Flameviper" Ability { id: "7908", source: "Hephaistos" } # jump to Quadruped v2 or Gorgon v2 # -> Quadruped v2 branch -706.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -711.7 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ window 50,50 jump 811.7 -722.3 "Quadrupedal Crush?" #sync / 1[56]:[^:]*:Hephaistos:7904:/ -728.3 "--sync--" #sync / 1[56]:[^:]*:Hephaistos:790B:/ -737.0 "Blazing Footfalls?" #sync / 1[56]:[^:]*:Hephaistos:790A:/ +706.5 "--sync--" Ability { id: "7108", source: "Hephaistos" } +711.7 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } window 50,50 jump 811.7 +722.3 "Quadrupedal Crush?" #Ability { id: "7904", source: "Hephaistos" } +728.3 "--sync--" #Ability { id: "790B", source: "Hephaistos" } +737.0 "Blazing Footfalls?" #Ability { id: "790A", source: "Hephaistos" } # -> Gorgon v2 branch -706.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -711.7 "--sync--" sync / 1[56]:[^:]*:Hephaistos:794C:/ window 50,50 jump 1111.7 -724.0 "Into the Shadows?" #sync / 1[56]:[^:]*:Hephaistos:78FB:/ -732.0 "--sync--" #sync / 1[56]:[^:]*:Gorgon:78FC:/ -732.0 "Gorgospit?" #sync / 1[56]:[^:]*:Illusory Hephaistos:6FD7:/ -732.0 "Volcanic Torches?" #sync / 1[56]:[^:]*:Hephaistos:71DE:/ +706.5 "--sync--" Ability { id: "7108", source: "Hephaistos" } +711.7 "--sync--" Ability { id: "794C", source: "Hephaistos" } window 50,50 jump 1111.7 +724.0 "Into the Shadows?" #Ability { id: "78FB", source: "Hephaistos" } +732.0 "--sync--" #Ability { id: "78FC", source: "Gorgon" } +732.0 "Gorgospit?" #Ability { id: "6FD7", source: "Illusory Hephaistos" } +732.0 "Volcanic Torches?" #Ability { id: "71DE", source: "Hephaistos" } # Quadruped v2 (Quadruped2 branch) -806.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -811.7 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ -822.3 "Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:7904:/ -828.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:790B:/ -837.0 "Blazing Footfalls" sync / 1[56]:[^:]*:Hephaistos:790A:/ +806.5 "--sync--" Ability { id: "7108", source: "Hephaistos" } +811.7 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } +822.3 "Quadrupedal Crush" Ability { id: "7904", source: "Hephaistos" } +828.3 "--sync--" Ability { id: "790B", source: "Hephaistos" } +837.0 "Blazing Footfalls" Ability { id: "790A", source: "Hephaistos" } 837.0 "--untargetable--" -837.7 "Trailblaze" sync / 1[56]:[^:]*:Hephaistos:790D:/ -840.2 "Quadrupedal Impact 1" sync / 1[56]:[^:]*:Hephaistos:7103:/ -843.0 "Quadrupedal Impact 2" sync / 1[56]:[^:]*:Hephaistos:7103:/ -845.8 "Quadrupedal Impact 3" sync / 1[56]:[^:]*:Hephaistos:7103:/ +837.7 "Trailblaze" Ability { id: "790D", source: "Hephaistos" } +840.2 "Quadrupedal Impact 1" Ability { id: "7103", source: "Hephaistos" } +843.0 "Quadrupedal Impact 2" Ability { id: "7103", source: "Hephaistos" } +845.8 "Quadrupedal Impact 3" Ability { id: "7103", source: "Hephaistos" } 847.6 "--targetable--" -857.7 "Rearing Rampage" sync / 1[56]:[^:]*:Hephaistos:79AB:/ +857.7 "Rearing Rampage" Ability { id: "79AB", source: "Hephaistos" } # Vent v2 (Quadruped2 branch) -871.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -876.2 "Fourfold Fires" sync / 1[56]:[^:]*:Hephaistos:78F2:/ -882.0 "Abyssal Fires" sync / 1[56]:[^:]*:Hephaistos:78F1:/ -885.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:78F0:/ -891.2 "Cthonic Vent 1" sync / 1[56]:[^:]*:Suneater:78F5:/ -896.4 "Volcanic Torches" sync / 1[56]:[^:]*:Hephaistos:78F7:/ -899.1 "Cthonic Vent 2" sync / 1[56]:[^:]*:Suneater:794D:/ -907.1 "Cthonic Vent 3" sync / 1[56]:[^:]*:Suneater:78F6:/ -909.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7906:/ -910.4 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:78F8:/ -915.5 "Hemitheos's Flare" sync / 1[56]:[^:]*:Hephaistos:7907:/ -919.7 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ -920.7 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -927.8 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ -935.9 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ -944.1 "Flameviper" sync / 1[56]:[^:]*:Hephaistos:7908:/ +871.1 "--sync--" Ability { id: "7108", source: "Hephaistos" } +876.2 "Fourfold Fires" Ability { id: "78F2", source: "Hephaistos" } +882.0 "Abyssal Fires" Ability { id: "78F1", source: "Hephaistos" } +885.3 "--sync--" Ability { id: "78F0", source: "Hephaistos" } +891.2 "Cthonic Vent 1" Ability { id: "78F5", source: "Suneater" } +896.4 "Volcanic Torches" Ability { id: "78F7", source: "Hephaistos" } +899.1 "Cthonic Vent 2" Ability { id: "794D", source: "Suneater" } +907.1 "Cthonic Vent 3" Ability { id: "78F6", source: "Suneater" } +909.5 "--sync--" Ability { id: "7906", source: "Hephaistos" } +910.4 "Torch Flame" Ability { id: "78F8", source: "Hephaistos" } +915.5 "Hemitheos's Flare" Ability { id: "7907", source: "Hephaistos" } +919.7 "Sunforge" Ability { id: ["78EC", "78ED"], source: "Hephaistos" } +920.7 "Scorching Fang/Sun's Pinion" Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +927.8 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } +935.9 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } +944.1 "Flameviper" Ability { id: "7908", source: "Hephaistos" } # Gorgon v2 (Quadruped2 branch) -952.2 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -957.4 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794C:/ -969.7 "Into the Shadows" sync / 1[56]:[^:]*:Hephaistos:78FB:/ -977.7 "--sync--" sync / 1[56]:[^:]*:Gorgon:78FC:/ -977.7 "Gorgospit" sync / 1[56]:[^:]*:Illusory Hephaistos:6FD7:/ -977.7 "Volcanic Torches" sync / 1[56]:[^:]*:Hephaistos:71DE:/ -978.7 "Petrifaction" sync / 1[56]:[^:]*:[^:]*:6723:/ +952.2 "--sync--" Ability { id: "7108", source: "Hephaistos" } +957.4 "Reforged Reflection" Ability { id: "794C", source: "Hephaistos" } +969.7 "Into the Shadows" Ability { id: "78FB", source: "Hephaistos" } +977.7 "--sync--" Ability { id: "78FC", source: "Gorgon" } +977.7 "Gorgospit" Ability { id: "6FD7", source: "Illusory Hephaistos" } +977.7 "Volcanic Torches" Ability { id: "71DE", source: "Hephaistos" } +978.7 "Petrifaction" Ability { id: "6723" } 978.7 "--targetable--" -983.9 "Gorgospit" sync / 1[56]:[^:]*:Hephaistos:78FF:/ -990.1 "Gorgospit" sync / 1[56]:[^:]*:Hephaistos:78FF:/ -991.7 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:78F8:/ -998.3 "Ektothermos" sync / 1[56]:[^:]*:Hephaistos:78FE:/ +983.9 "Gorgospit" Ability { id: "78FF", source: "Hephaistos" } +990.1 "Gorgospit" Ability { id: "78FF", source: "Hephaistos" } +991.7 "Torch Flame" Ability { id: "78F8", source: "Hephaistos" } +998.3 "Ektothermos" Ability { id: "78FE", source: "Hephaistos" } # -> Sunforge v2 (both branches) -1008.7 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1017.9 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ window 50,50 jump 1317.9 -1018.9 "Scorching Fang/Sun\'s Pinion" #sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -1029.1 "Genesis of Flame" #sync / 1[56]:[^:]*:Hephaistos:7905:/ -1037.4 "Flameviper" #sync / 1[56]:[^:]*:Hephaistos:7908:/ -1052.6 "Sunforge" #sync / 1[56]:[^:]*:Hephaistos:78EC:/ -1053.6 "Scorching Fang/Sun\'s Pinion" #sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ +1008.7 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1017.9 "Sunforge" Ability { id: ["78EC", "78ED"], source: "Hephaistos" } window 50,50 jump 1317.9 +1018.9 "Scorching Fang/Sun\'s Pinion" #Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +1029.1 "Genesis of Flame" #Ability { id: "7905", source: "Hephaistos" } +1037.4 "Flameviper" #Ability { id: "7908", source: "Hephaistos" } +1052.6 "Sunforge" #Ability { id: "78EC", source: "Hephaistos" } +1053.6 "Scorching Fang/Sun\'s Pinion" #Ability { id: ["78EE", "78EF"], source: "Hephaistos" } # Gorgon v2 (Gorgon2 branch) -1106.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1111.7 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794C:/ -1124.0 "Into the Shadows" sync / 1[56]:[^:]*:Hephaistos:78FB:/ -1132.0 "--sync--" sync / 1[56]:[^:]*:Gorgon:78FC:/ -1132.0 "Gorgospit" sync / 1[56]:[^:]*:Illusory Hephaistos:6FD7:/ -1132.0 "Volcanic Torches" sync / 1[56]:[^:]*:Hephaistos:71DE:/ -1133.0 "Petrifaction" sync / 1[56]:[^:]*:[^:]*:6723:/ +1106.5 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1111.7 "Reforged Reflection" Ability { id: "794C", source: "Hephaistos" } +1124.0 "Into the Shadows" Ability { id: "78FB", source: "Hephaistos" } +1132.0 "--sync--" Ability { id: "78FC", source: "Gorgon" } +1132.0 "Gorgospit" Ability { id: "6FD7", source: "Illusory Hephaistos" } +1132.0 "Volcanic Torches" Ability { id: "71DE", source: "Hephaistos" } +1133.0 "Petrifaction" Ability { id: "6723" } 1133.0 "--targetable--" -1138.2 "Gorgospit" sync / 1[56]:[^:]*:Hephaistos:78FF:/ -1144.4 "Gorgospit" sync / 1[56]:[^:]*:Hephaistos:78FF:/ -1146.0 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:78F8:/ -1152.6 "Ektothermos" sync / 1[56]:[^:]*:Hephaistos:78FE:/ +1138.2 "Gorgospit" Ability { id: "78FF", source: "Hephaistos" } +1144.4 "Gorgospit" Ability { id: "78FF", source: "Hephaistos" } +1146.0 "Torch Flame" Ability { id: "78F8", source: "Hephaistos" } +1152.6 "Ektothermos" Ability { id: "78FE", source: "Hephaistos" } # Vent v2 (Gorgon2 branch) -1163.0 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1168.1 "Fourfold Fires" sync / 1[56]:[^:]*:Hephaistos:78F2:/ -1173.9 "Abyssal Fires" sync / 1[56]:[^:]*:Hephaistos:78F1:/ -1177.2 "--sync--" sync / 1[56]:[^:]*:Hephaistos:78F0:/ -1183.1 "Cthonic Vent 1" sync / 1[56]:[^:]*:Suneater:78F5:/ -1188.3 "Volcanic Torches" sync / 1[56]:[^:]*:Hephaistos:78F7:/ -1191.0 "Cthonic Vent 2" sync / 1[56]:[^:]*:Suneater:794D:/ -1199.0 "Cthonic Vent 3" sync / 1[56]:[^:]*:Suneater:78F6:/ -1201.4 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7906:/ -1202.3 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:78F8:/ -1207.4 "Hemitheos's Flare" sync / 1[56]:[^:]*:Hephaistos:7907:/ -1211.6 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ -1212.6 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -1219.7 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ -1227.8 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ -1236.0 "Flameviper" sync / 1[56]:[^:]*:Hephaistos:7908:/ +1163.0 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1168.1 "Fourfold Fires" Ability { id: "78F2", source: "Hephaistos" } +1173.9 "Abyssal Fires" Ability { id: "78F1", source: "Hephaistos" } +1177.2 "--sync--" Ability { id: "78F0", source: "Hephaistos" } +1183.1 "Cthonic Vent 1" Ability { id: "78F5", source: "Suneater" } +1188.3 "Volcanic Torches" Ability { id: "78F7", source: "Hephaistos" } +1191.0 "Cthonic Vent 2" Ability { id: "794D", source: "Suneater" } +1199.0 "Cthonic Vent 3" Ability { id: "78F6", source: "Suneater" } +1201.4 "--sync--" Ability { id: "7906", source: "Hephaistos" } +1202.3 "Torch Flame" Ability { id: "78F8", source: "Hephaistos" } +1207.4 "Hemitheos's Flare" Ability { id: "7907", source: "Hephaistos" } +1211.6 "Sunforge" Ability { id: ["78EC", "78ED"], source: "Hephaistos" } +1212.6 "Scorching Fang/Sun's Pinion" Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +1219.7 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } +1227.8 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } +1236.0 "Flameviper" Ability { id: "7908", source: "Hephaistos" } # Quadruped v2 (Gorgon2 branch) -1244.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1249.3 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ -1259.9 "Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:7904:/ -1265.9 "--sync--" sync / 1[56]:[^:]*:Hephaistos:790B:/ -1274.6 "Blazing Footfalls" sync / 1[56]:[^:]*:Hephaistos:790A:/ +1244.1 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1249.3 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } +1259.9 "Quadrupedal Crush" Ability { id: "7904", source: "Hephaistos" } +1265.9 "--sync--" Ability { id: "790B", source: "Hephaistos" } +1274.6 "Blazing Footfalls" Ability { id: "790A", source: "Hephaistos" } 1274.6 "--untargetable--" -1275.3 "Trailblaze" sync / 1[56]:[^:]*:Hephaistos:790D:/ -1277.8 "Quadrupedal Impact 1" sync / 1[56]:[^:]*:Hephaistos:7103:/ -1280.6 "Quadrupedal Impact 2" sync / 1[56]:[^:]*:Hephaistos:7103:/ -1283.4 "Quadrupedal Impact 3" sync / 1[56]:[^:]*:Hephaistos:7103:/ +1275.3 "Trailblaze" Ability { id: "790D", source: "Hephaistos" } +1277.8 "Quadrupedal Impact 1" Ability { id: "7103", source: "Hephaistos" } +1280.6 "Quadrupedal Impact 2" Ability { id: "7103", source: "Hephaistos" } +1283.4 "Quadrupedal Impact 3" Ability { id: "7103", source: "Hephaistos" } 1285.2 "--targetable--" -1295.3 "Rearing Rampage" sync / 1[56]:[^:]*:Hephaistos:79AB:/ +1295.3 "Rearing Rampage" Ability { id: "79AB", source: "Hephaistos" } # Sunforge v2 (both branches) -1308.7 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1317.9 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(78EC|78ED):/ -1318.9 "Scorching Fang/Sun\'s Pinion" sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ -1329.1 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7905:/ -1337.4 "Flameviper" sync / 1[56]:[^:]*:Hephaistos:7908:/ -1352.6 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:78EC:/ -1353.6 "Scorching Fang/Sun\'s Pinion" sync / 1[56]:[^:]*:Hephaistos:(78EE|78EF):/ +1308.7 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1317.9 "Sunforge" Ability { id: ["78EC", "78ED"], source: "Hephaistos" } +1318.9 "Scorching Fang/Sun\'s Pinion" Ability { id: ["78EE", "78EF"], source: "Hephaistos" } +1329.1 "Genesis of Flame" Ability { id: "7905", source: "Hephaistos" } +1337.4 "Flameviper" Ability { id: "7908", source: "Hephaistos" } +1352.6 "Sunforge" Ability { id: "78EC", source: "Hephaistos" } +1353.6 "Scorching Fang/Sun\'s Pinion" Ability { id: ["78EE", "78EF"], source: "Hephaistos" } # jump to Quadruped v2 or Gorgon v2 # -> Quadruped v2 branch -1360.8 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1366.0 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ window 50,50 jump 811.7 -1376.6 "Quadrupedal Crush?" #sync / 1[56]:[^:]*:Hephaistos:7904:/ -1382.6 "--sync--" #sync / 1[56]:[^:]*:Hephaistos:790B:/ -1391.3 "Blazing Footfalls?" #sync / 1[56]:[^:]*:Hephaistos:790A:/ +1360.8 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1366.0 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } window 50,50 jump 811.7 +1376.6 "Quadrupedal Crush?" #Ability { id: "7904", source: "Hephaistos" } +1382.6 "--sync--" #Ability { id: "790B", source: "Hephaistos" } +1391.3 "Blazing Footfalls?" #Ability { id: "790A", source: "Hephaistos" } # -> Gorgon v2 branch -1360.8 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1366.0 "--sync--" sync / 1[56]:[^:]*:Hephaistos:794C:/ window 50,50 jump 1111.7 -1378.3 "Into the Shadows?" #sync / 1[56]:[^:]*:Hephaistos:78FB:/ -1386.3 "--sync--" #sync / 1[56]:[^:]*:Gorgon:78FC:/ -1386.3 "Gorgospit?" #sync / 1[56]:[^:]*:Illusory Hephaistos:6FD7:/ -1386.3 "Volcanic Torches?" #sync / 1[56]:[^:]*:Hephaistos:71DE:/ +1360.8 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1366.0 "--sync--" Ability { id: "794C", source: "Hephaistos" } window 50,50 jump 1111.7 +1378.3 "Into the Shadows?" #Ability { id: "78FB", source: "Hephaistos" } +1386.3 "--sync--" #Ability { id: "78FC", source: "Gorgon" } +1386.3 "Gorgospit?" #Ability { id: "6FD7", source: "Illusory Hephaistos" } +1386.3 "Volcanic Torches?" #Ability { id: "71DE", source: "Hephaistos" } diff --git a/ui/raidboss/data/06-ew/raid/p8s.txt b/ui/raidboss/data/06-ew/raid/p8s.txt index b3aca6907f..62c69da7ae 100644 --- a/ui/raidboss/data/06-ew/raid/p8s.txt +++ b/ui/raidboss/data/06-ew/raid/p8s.txt @@ -4,7 +4,7 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 ### P8S Part 1 # -p 7944:12.1 @@ -16,269 +16,269 @@ hideall "--sync--" # Human1 -> Beast1 -> Human2 -> Snake1 -> Human3 -> Beast2 -> Snake2 -> Human4 # instant auto @_@;; -0.0 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7947:/ window 1,0 -7.1 "--sync--" sync / 14:[^:]*:Hephaistos:7944:/ window 20,20 -12.1 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7944:/ -18.2 "Conceptual Octaflare/Conceptual Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7914|7915):/ -24.4 "Volcanic Torches" sync / 1[56]:[^:]*:Hephaistos:78F7:/ -30.6 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -38.5 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:7927:/ +0.0 "--sync--" Ability { id: "7947", source: "Hephaistos" } window 1,0 +7.1 "--sync--" StartsUsing { id: "7944", source: "Hephaistos" } window 20,20 +12.1 "Genesis of Flame" Ability { id: "7944", source: "Hephaistos" } +18.2 "Conceptual Octaflare/Conceptual Tetraflare" Ability { id: ["7914", "7915"], source: "Hephaistos" } +24.4 "Volcanic Torches" Ability { id: "78F7", source: "Hephaistos" } +30.6 "--sync--" Ability { id: "7108", source: "Hephaistos" } +38.5 "Torch Flame" Ability { id: "7927", source: "Hephaistos" } # Human 1 -39.9 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:7911:/ -40.9 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(7912|7913):/ -41.1 "Emergent Octaflare/Emergent Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7918|7919):/ -48.3 "Flameviper 1" sync / 1[56]:[^:]*:Hephaistos:7945:/ -51.5 "Flameviper 2" sync / 1[56]:[^:]*:Hephaistos:7946:/ +39.9 "Sunforge" Ability { id: "7911", source: "Hephaistos" } +40.9 "Scorching Fang/Sun's Pinion" Ability { id: ["7912", "7913"], source: "Hephaistos" } +41.1 "Emergent Octaflare/Emergent Tetraflare" Ability { id: ["7918", "7919"], source: "Hephaistos" } +48.3 "Flameviper 1" Ability { id: "7945", source: "Hephaistos" } +51.5 "Flameviper 2" Ability { id: "7946", source: "Hephaistos" } -58.7 "--sync--" #sync / 1[56]:[^:]*:Hephaistos:7108:/ +58.7 "--sync--" #Ability { id: "7108", source: "Hephaistos" } 63.9 "Reforged Reflection" # => Snake first branch -58.7 "--sync--" #sync / 1[56]:[^:]*:Hephaistos:7108:/ -63.9 "--sync--" sync / 1[56]:[^:]*:Hephaistos:794C:/ window 100,100 jump 163.9 -71.2 "Snaking Kick?" #sync / 1[56]:[^:]*:Hephaistos:7929:/ -77.3 "Gorgomanteia?" #sync / 1[56]:[^:]*:Hephaistos:791A:/ -83.4 "Into the Shadows?" #sync / 1[56]:[^:]*:Hephaistos:792A:/ +58.7 "--sync--" #Ability { id: "7108", source: "Hephaistos" } +63.9 "--sync--" Ability { id: "794C", source: "Hephaistos" } window 100,100 jump 163.9 +71.2 "Snaking Kick?" #Ability { id: "7929", source: "Hephaistos" } +77.3 "Gorgomanteia?" #Ability { id: "791A", source: "Hephaistos" } +83.4 "Into the Shadows?" #Ability { id: "792A", source: "Hephaistos" } # => Beast first branch -58.7 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -63.9 "--sync--" sync / 1[56]:[^:]*:Hephaistos:794B:/ window 100,100 jump 1163.9 -70.3 "Footprint?" #sync / 1[56]:[^:]*:Hephaistos:7109:/ -77.2 "Uplift 1?" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -79.3 "Uplift 2?" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -81.5 "Uplift 3?" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -83.6 "Uplift 4?" #sync / 1[56]:[^:]*:Hephaistos:7935:/ +58.7 "--sync--" Ability { id: "7108", source: "Hephaistos" } +63.9 "--sync--" Ability { id: "794B", source: "Hephaistos" } window 100,100 jump 1163.9 +70.3 "Footprint?" #Ability { id: "7109", source: "Hephaistos" } +77.2 "Uplift 1?" #Ability { id: "7935", source: "Hephaistos" } +79.3 "Uplift 2?" #Ability { id: "7935", source: "Hephaistos" } +81.5 "Uplift 3?" #Ability { id: "7935", source: "Hephaistos" } +83.6 "Uplift 4?" #Ability { id: "7935", source: "Hephaistos" } # Snake 1 (Snake first) -158.7 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -163.9 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794C:/ -171.2 "Snaking Kick" sync / 1[56]:[^:]*:Hephaistos:7929:/ -177.3 "Gorgomanteia" sync / 1[56]:[^:]*:Hephaistos:791A:/ -183.4 "Into the Shadows" sync / 1[56]:[^:]*:Hephaistos:792A:/ -197.5 "--sync--" sync / 1[56]:[^:]*:Gorgon:792B:/ -198.6 "Petrifaction 1" sync / 1[56]:[^:]*:Gorgon:6724:/ -201.1 "Eye of the Gorgon 1" sync / 1[56]:[^:]*:Hephaistos:792D:/ -204.2 "Blood of the Gorgon 1" sync / 1[56]:[^:]*:Hephaistos:792F:/ -205.5 "--sync--" sync / 1[56]:[^:]*:Gorgon:792B:/ -206.7 "Petrifaction 2" sync / 1[56]:[^:]*:Gorgon:6724:/ -209.2 "Eye of the Gorgon 2" sync / 1[56]:[^:]*:Hephaistos:792D:/ -212.2 "Blood of the Gorgon 2" sync / 1[56]:[^:]*:Hephaistos:792F:/ -216.8 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7949:/ -221.8 "Ektothermos" sync / 1[56]:[^:]*:Hephaistos:79EA:/ +158.7 "--sync--" Ability { id: "7108", source: "Hephaistos" } +163.9 "Reforged Reflection" Ability { id: "794C", source: "Hephaistos" } +171.2 "Snaking Kick" Ability { id: "7929", source: "Hephaistos" } +177.3 "Gorgomanteia" Ability { id: "791A", source: "Hephaistos" } +183.4 "Into the Shadows" Ability { id: "792A", source: "Hephaistos" } +197.5 "--sync--" Ability { id: "792B", source: "Gorgon" } +198.6 "Petrifaction 1" Ability { id: "6724", source: "Gorgon" } +201.1 "Eye of the Gorgon 1" Ability { id: "792D", source: "Hephaistos" } +204.2 "Blood of the Gorgon 1" Ability { id: "792F", source: "Hephaistos" } +205.5 "--sync--" Ability { id: "792B", source: "Gorgon" } +206.7 "Petrifaction 2" Ability { id: "6724", source: "Gorgon" } +209.2 "Eye of the Gorgon 2" Ability { id: "792D", source: "Hephaistos" } +212.2 "Blood of the Gorgon 2" Ability { id: "792F", source: "Hephaistos" } +216.8 "--sync--" Ability { id: "7949", source: "Hephaistos" } +221.8 "Ektothermos" Ability { id: "79EA", source: "Hephaistos" } # Human 2 (Snake first) -224.8 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7949:/ -240.2 "Illusory Creation" sync / 1[56]:[^:]*:Hephaistos:791C:/ -246.3 "Creation on Command" sync / 1[56]:[^:]*:Hephaistos:794F:/ -254.1 "Sunforge" sync / 1[56]:[^:]*:Illusory Hephaistos:7950:/ -254.5 "Manifold Flames" sync / 1[56]:[^:]*:Hephaistos:7921:/ -255.1 "Scorching Fang" sync / 1[56]:[^:]*:Illusory Hephaistos:7952:/ -255.1 "Scorched Pinion" sync / 1[56]:[^:]*:Illusory Hephaistos:7953:/ -255.3 "Hemitheos's Flare" sync / 1[56]:[^:]*:Hephaistos:72CE:/ -258.7 "Manifold Flames" sync / 1[56]:[^:]*:Hephaistos:7922:/ -259.5 "Nest of Flamevipers" sync / 1[56]:[^:]*:Hephaistos:7920:/ -266.2 "Sunforge" sync / 1[56]:[^:]*:Illusory Hephaistos:(7950|7951):/ -266.8 "Tetraflare/Nest of Flamevipers" sync / 1[56]:[^:]*:Hephaistos:(791E|791F):/ -267.2 "Scorching Fang/Scorched Pinion" sync / 1[56]:[^:]*:Illusory Hephaistos:(7952|7953):/ -267.6 "Emergent Octaflare/Emergent Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7918|7919):/ -279.8 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:7927:/ -283.9 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7944:/ +224.8 "--sync--" Ability { id: "7949", source: "Hephaistos" } +240.2 "Illusory Creation" Ability { id: "791C", source: "Hephaistos" } +246.3 "Creation on Command" Ability { id: "794F", source: "Hephaistos" } +254.1 "Sunforge" Ability { id: "7950", source: "Illusory Hephaistos" } +254.5 "Manifold Flames" Ability { id: "7921", source: "Hephaistos" } +255.1 "Scorching Fang" Ability { id: "7952", source: "Illusory Hephaistos" } +255.1 "Scorched Pinion" Ability { id: "7953", source: "Illusory Hephaistos" } +255.3 "Hemitheos's Flare" Ability { id: "72CE", source: "Hephaistos" } +258.7 "Manifold Flames" Ability { id: "7922", source: "Hephaistos" } +259.5 "Nest of Flamevipers" Ability { id: "7920", source: "Hephaistos" } +266.2 "Sunforge" Ability { id: ["7950", "7951"], source: "Illusory Hephaistos" } +266.8 "Tetraflare/Nest of Flamevipers" Ability { id: ["791E", "791F"], source: "Hephaistos" } +267.2 "Scorching Fang/Scorched Pinion" Ability { id: ["7952", "7953"], source: "Illusory Hephaistos" } +267.6 "Emergent Octaflare/Emergent Tetraflare" Ability { id: ["7918", "7919"], source: "Hephaistos" } +279.8 "Torch Flame" Ability { id: "7927", source: "Hephaistos" } +283.9 "Genesis of Flame" Ability { id: "7944", source: "Hephaistos" } # Beast 1 (Snake first) -291.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -296.4 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ -302.8 "Footprint" sync / 1[56]:[^:]*:Hephaistos:7109:/ -309.7 "Uplift 1" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -311.8 "Uplift 2" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -314.0 "Uplift 3" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -316.1 "Uplift 4" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -322.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7936:/ -322.5 "Stomp Dead 1" #sync / 1[56]:[^:]*:Hephaistos:7937:/ -324.8 "Stomp Dead 2" #sync / 1[56]:[^:]*:Hephaistos:7937:/ -327.1 "Stomp Dead 3" #sync / 1[56]:[^:]*:Hephaistos:7937:/ -329.3 "Stomp Dead 4" #sync / 1[56]:[^:]*:Hephaistos:7937:/ +291.1 "--sync--" Ability { id: "7108", source: "Hephaistos" } +296.4 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } +302.8 "Footprint" Ability { id: "7109", source: "Hephaistos" } +309.7 "Uplift 1" #Ability { id: "7935", source: "Hephaistos" } +311.8 "Uplift 2" #Ability { id: "7935", source: "Hephaistos" } +314.0 "Uplift 3" #Ability { id: "7935", source: "Hephaistos" } +316.1 "Uplift 4" #Ability { id: "7935", source: "Hephaistos" } +322.3 "--sync--" Ability { id: "7936", source: "Hephaistos" } +322.5 "Stomp Dead 1" #Ability { id: "7937", source: "Hephaistos" } +324.8 "Stomp Dead 2" #Ability { id: "7937", source: "Hephaistos" } +327.1 "Stomp Dead 3" #Ability { id: "7937", source: "Hephaistos" } +329.3 "Stomp Dead 4" #Ability { id: "7937", source: "Hephaistos" } # Human 3 (Snake first) -346.7 "Conceptual Octaflare/Conceptual Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7914|7915):/ -352.8 "Fourfold Fires" sync / 1[56]:[^:]*:Hephaistos:78F2:/ window 300,10 -358.6 "Abyssal Fires" sync / 1[56]:[^:]*:Hephaistos:7954:/ -362.0 "--sync--" sync / 1[56]:[^:]*:Hephaistos:78F0:/ -367.9 "Cthonic Vent 1" sync / 1[56]:[^:]*:Suneater:7925:/ -376.9 "Cthonic Vent 2" sync / 1[56]:[^:]*:Suneater:794E:/ -377.2 "Tetraflare/Octaflare" sync / 1[56]:[^:]*:Hephaistos:(791E|791D):/ -381.4 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -385.9 "Cthonic Vent 3" sync / 1[56]:[^:]*:Suneater:7926:/ -390.6 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(7910|7911):/ -391.6 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(7912|7913):/ -391.8 "Emergent Octaflare/Emergent Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7918|7919):/ -399.0 "Flameviper 1" sync / 1[56]:[^:]*:Hephaistos:7945:/ -402.2 "Flameviper 2" sync / 1[56]:[^:]*:Hephaistos:7946:/ +346.7 "Conceptual Octaflare/Conceptual Tetraflare" Ability { id: ["7914", "7915"], source: "Hephaistos" } +352.8 "Fourfold Fires" Ability { id: "78F2", source: "Hephaistos" } window 300,10 +358.6 "Abyssal Fires" Ability { id: "7954", source: "Hephaistos" } +362.0 "--sync--" Ability { id: "78F0", source: "Hephaistos" } +367.9 "Cthonic Vent 1" Ability { id: "7925", source: "Suneater" } +376.9 "Cthonic Vent 2" Ability { id: "794E", source: "Suneater" } +377.2 "Tetraflare/Octaflare" Ability { id: ["791E", "791D"], source: "Hephaistos" } +381.4 "--sync--" Ability { id: "7108", source: "Hephaistos" } +385.9 "Cthonic Vent 3" Ability { id: "7926", source: "Suneater" } +390.6 "Sunforge" Ability { id: ["7910", "7911"], source: "Hephaistos" } +391.6 "Scorching Fang/Sun's Pinion" Ability { id: ["7912", "7913"], source: "Hephaistos" } +391.8 "Emergent Octaflare/Emergent Tetraflare" Ability { id: ["7918", "7919"], source: "Hephaistos" } +399.0 "Flameviper 1" Ability { id: "7945", source: "Hephaistos" } +402.2 "Flameviper 2" Ability { id: "7946", source: "Hephaistos" } # Snake 2 (Snake first) -409.4 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -414.6 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794C:/ -421.9 "Snaking Kick" sync / 1[56]:[^:]*:Hephaistos:7929:/ -428.0 "Gorgomanteia" sync / 1[56]:[^:]*:Hephaistos:791A:/ -434.1 "Into the Shadows" sync / 1[56]:[^:]*:Hephaistos:792A:/ -448.1 "--sync--" sync / 1[56]:[^:]*:Gorgon:792B:/ -449.3 "Petrifaction" sync / 1[56]:[^:]*:Gorgon:6724:/ -450.3 "Gorgospit (outside)" sync / 1[56]:[^:]*:Illusory Hephaistos:7932:/ -451.8 "Blood of the Gorgon 1" sync / 1[56]:[^:]*:Hephaistos:792F:/ -451.8 "Eye of the Gorgon 1" sync / 1[56]:[^:]*:Hephaistos:792D:/ -456.4 "Illusory Creation" sync / 1[56]:[^:]*:Hephaistos:7931:/ -457.8 "Blood of the Gorgon 2" sync / 1[56]:[^:]*:Hephaistos:792F:/ -457.8 "Eye of the Gorgon 2" sync / 1[56]:[^:]*:Hephaistos:792D:/ -465.3 "Gorgospit (line)" sync / 1[56]:[^:]*:Illusory Hephaistos:7932:/ -466.9 "Crown of the Gorgon" sync / 1[56]:[^:]*:Hephaistos:792E:/ -467.8 "Breath of the Gorgon" sync / 1[56]:[^:]*:Hephaistos:7930:/ -481.0 "Flameviper 1" sync / 1[56]:[^:]*:Hephaistos:7945:/ -484.2 "Flameviper 2" sync / 1[56]:[^:]*:Hephaistos:7946:/ +409.4 "--sync--" Ability { id: "7108", source: "Hephaistos" } +414.6 "Reforged Reflection" Ability { id: "794C", source: "Hephaistos" } +421.9 "Snaking Kick" Ability { id: "7929", source: "Hephaistos" } +428.0 "Gorgomanteia" Ability { id: "791A", source: "Hephaistos" } +434.1 "Into the Shadows" Ability { id: "792A", source: "Hephaistos" } +448.1 "--sync--" Ability { id: "792B", source: "Gorgon" } +449.3 "Petrifaction" Ability { id: "6724", source: "Gorgon" } +450.3 "Gorgospit (outside)" Ability { id: "7932", source: "Illusory Hephaistos" } +451.8 "Blood of the Gorgon 1" Ability { id: "792F", source: "Hephaistos" } +451.8 "Eye of the Gorgon 1" Ability { id: "792D", source: "Hephaistos" } +456.4 "Illusory Creation" Ability { id: "7931", source: "Hephaistos" } +457.8 "Blood of the Gorgon 2" Ability { id: "792F", source: "Hephaistos" } +457.8 "Eye of the Gorgon 2" Ability { id: "792D", source: "Hephaistos" } +465.3 "Gorgospit (line)" Ability { id: "7932", source: "Illusory Hephaistos" } +466.9 "Crown of the Gorgon" Ability { id: "792E", source: "Hephaistos" } +467.8 "Breath of the Gorgon" Ability { id: "7930", source: "Hephaistos" } +481.0 "Flameviper 1" Ability { id: "7945", source: "Hephaistos" } +484.2 "Flameviper 2" Ability { id: "7946", source: "Hephaistos" } # Beast 2 (Snake first) -491.4 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -496.6 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ -503.1 "Footprint" sync / 1[56]:[^:]*:Hephaistos:7109:/ -509.4 "Quadrupedal Impact/Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:(7A04|7A05):/ -515.8 "Conceptual Diflare/Conceptual Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7917|7916):/ -522.0 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793B:/ -524.2 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793D:/ -526.4 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793B:/ -528.6 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793C:/ +491.4 "--sync--" Ability { id: "7108", source: "Hephaistos" } +496.6 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } +503.1 "Footprint" Ability { id: "7109", source: "Hephaistos" } +509.4 "Quadrupedal Impact/Quadrupedal Crush" Ability { id: ["7A04", "7A05"], source: "Hephaistos" } +515.8 "Conceptual Diflare/Conceptual Tetraflare" Ability { id: ["7917", "7916"], source: "Hephaistos" } +522.0 "--sync--" Ability { id: "793B", source: "Hephaistos" } +524.2 "--sync--" Ability { id: "793D", source: "Hephaistos" } +526.4 "--sync--" Ability { id: "793B", source: "Hephaistos" } +528.6 "--sync--" Ability { id: "793C", source: "Hephaistos" } 531.0 "--untargetable--" -531.0 "Blazing Footfalls" sync / 1[56]:[^:]*:Hephaistos:7938:/ -531.6 "Trailblaze 1" sync / 1[56]:[^:]*:Hephaistos:793E:/ -532.8 "Emergent Diflare/Emergent Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(791B|7919):/ -535.7 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793F:/ -536.6 "Quadrupedal Impact/Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:7107:/ -539.5 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7939:/ -540.2 "Trailblaze 2" sync / 1[56]:[^:]*:Hephaistos:793E:/ -542.2 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793A:/ -543.1 "Quadrupedal Impact/Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:7106:/ -546.5 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:7927:/ +531.0 "Blazing Footfalls" Ability { id: "7938", source: "Hephaistos" } +531.6 "Trailblaze 1" Ability { id: "793E", source: "Hephaistos" } +532.8 "Emergent Diflare/Emergent Tetraflare" Ability { id: ["791B", "7919"], source: "Hephaistos" } +535.7 "--sync--" Ability { id: "793F", source: "Hephaistos" } +536.6 "Quadrupedal Impact/Quadrupedal Crush" Ability { id: "7107", source: "Hephaistos" } +539.5 "--sync--" Ability { id: "7939", source: "Hephaistos" } +540.2 "Trailblaze 2" Ability { id: "793E", source: "Hephaistos" } +542.2 "--sync--" Ability { id: "793A", source: "Hephaistos" } +543.1 "Quadrupedal Impact/Quadrupedal Crush" Ability { id: "7106", source: "Hephaistos" } +546.5 "Torch Flame" Ability { id: "7927", source: "Hephaistos" } 547.4 "--targetable--" # Human 4 (Snake first) -552.6 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -559.9 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7944:/ +552.6 "--sync--" Ability { id: "7108", source: "Hephaistos" } +559.9 "Genesis of Flame" Ability { id: "7944", source: "Hephaistos" } 568.1 "--untargetable--" -573.1 "Genesis of Flame (enrage)" sync / 1[56]:[^:]*:Hephaistos:794A:/ +573.1 "Genesis of Flame (enrage)" Ability { id: "794A", source: "Hephaistos" } # Beast 1 (Beast first) -1158.7 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1163.9 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ -1170.3 "Footprint" sync / 1[56]:[^:]*:Hephaistos:7109:/ window 100,100 -1177.2 "Uplift 1" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -1179.3 "Uplift 2" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -1181.5 "Uplift 3" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -1183.6 "Uplift 4" #sync / 1[56]:[^:]*:Hephaistos:7935:/ -1189.8 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7936:/ -1190.0 "Stomp Dead 1" #sync / 1[56]:[^:]*:Hephaistos:7937:/ -1192.3 "Stomp Dead 2" #sync / 1[56]:[^:]*:Hephaistos:7937:/ -1194.6 "Stomp Dead 3" #sync / 1[56]:[^:]*:Hephaistos:7937:/ -1196.8 "Stomp Dead 4" #sync / 1[56]:[^:]*:Hephaistos:7937:/ +1158.7 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1163.9 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } +1170.3 "Footprint" Ability { id: "7109", source: "Hephaistos" } window 100,100 +1177.2 "Uplift 1" #Ability { id: "7935", source: "Hephaistos" } +1179.3 "Uplift 2" #Ability { id: "7935", source: "Hephaistos" } +1181.5 "Uplift 3" #Ability { id: "7935", source: "Hephaistos" } +1183.6 "Uplift 4" #Ability { id: "7935", source: "Hephaistos" } +1189.8 "--sync--" Ability { id: "7936", source: "Hephaistos" } +1190.0 "Stomp Dead 1" #Ability { id: "7937", source: "Hephaistos" } +1192.3 "Stomp Dead 2" #Ability { id: "7937", source: "Hephaistos" } +1194.6 "Stomp Dead 3" #Ability { id: "7937", source: "Hephaistos" } +1196.8 "Stomp Dead 4" #Ability { id: "7937", source: "Hephaistos" } # Human 2 (Beast first) -1214.1 "Illusory Creation" sync / 1[56]:[^:]*:Hephaistos:791C:/ -1220.2 "Creation on Command" sync / 1[56]:[^:]*:Hephaistos:794F:/ -1228.0 "Sunforge" sync / 1[56]:[^:]*:Illusory Hephaistos:7950:/ -1228.4 "Manifold Flames" sync / 1[56]:[^:]*:Hephaistos:7921:/ -1229.0 "Scorching Fang" sync / 1[56]:[^:]*:Illusory Hephaistos:7952:/ -1229.0 "Scorched Pinion" sync / 1[56]:[^:]*:Illusory Hephaistos:7953:/ -1229.2 "Hemitheos's Flare" sync / 1[56]:[^:]*:Hephaistos:72CE:/ -1232.6 "Manifold Flames" sync / 1[56]:[^:]*:Hephaistos:7922:/ -1233.4 "Nest of Flamevipers" sync / 1[56]:[^:]*:Hephaistos:7920:/ -1240.1 "Sunforge" sync / 1[56]:[^:]*:Illusory Hephaistos:(7950|7951):/ -1240.7 "Tetraflare/Nest of Flamevipers" sync / 1[56]:[^:]*:Hephaistos:(791E|791F):/ -1241.1 "Scorching Fang/Scorched Pinion" sync / 1[56]:[^:]*:Illusory Hephaistos:(7952|7953):/ -1241.5 "Emergent Octaflare/Emergent Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7918|7919):/ -1253.7 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:7927:/ -1257.8 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7944:/ +1214.1 "Illusory Creation" Ability { id: "791C", source: "Hephaistos" } +1220.2 "Creation on Command" Ability { id: "794F", source: "Hephaistos" } +1228.0 "Sunforge" Ability { id: "7950", source: "Illusory Hephaistos" } +1228.4 "Manifold Flames" Ability { id: "7921", source: "Hephaistos" } +1229.0 "Scorching Fang" Ability { id: "7952", source: "Illusory Hephaistos" } +1229.0 "Scorched Pinion" Ability { id: "7953", source: "Illusory Hephaistos" } +1229.2 "Hemitheos's Flare" Ability { id: "72CE", source: "Hephaistos" } +1232.6 "Manifold Flames" Ability { id: "7922", source: "Hephaistos" } +1233.4 "Nest of Flamevipers" Ability { id: "7920", source: "Hephaistos" } +1240.1 "Sunforge" Ability { id: ["7950", "7951"], source: "Illusory Hephaistos" } +1240.7 "Tetraflare/Nest of Flamevipers" Ability { id: ["791E", "791F"], source: "Hephaistos" } +1241.1 "Scorching Fang/Scorched Pinion" Ability { id: ["7952", "7953"], source: "Illusory Hephaistos" } +1241.5 "Emergent Octaflare/Emergent Tetraflare" Ability { id: ["7918", "7919"], source: "Hephaistos" } +1253.7 "Torch Flame" Ability { id: "7927", source: "Hephaistos" } +1257.8 "Genesis of Flame" Ability { id: "7944", source: "Hephaistos" } # Snake 1 (Beast first) -1265.0 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1270.2 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794C:/ -1277.5 "Snaking Kick" sync / 1[56]:[^:]*:Hephaistos:7929:/ -1283.6 "Gorgomanteia" sync / 1[56]:[^:]*:Hephaistos:791A:/ -1289.7 "Into the Shadows" sync / 1[56]:[^:]*:Hephaistos:792A:/ -1303.8 "--sync--" sync / 1[56]:[^:]*:Gorgon:792B:/ -1304.9 "Petrifaction 1" sync / 1[56]:[^:]*:Gorgon:6724:/ -1307.4 "Eye of the Gorgon 1" sync / 1[56]:[^:]*:Hephaistos:792D:/ -1310.5 "Blood of the Gorgon 1" sync / 1[56]:[^:]*:Hephaistos:792F:/ -1311.8 "--sync--" sync / 1[56]:[^:]*:Gorgon:792B:/ -1313.0 "Petrifaction 2" sync / 1[56]:[^:]*:Gorgon:6724:/ -1315.5 "Eye of the Gorgon 2" sync / 1[56]:[^:]*:Hephaistos:792D:/ -1318.5 "Blood of the Gorgon 2" sync / 1[56]:[^:]*:Hephaistos:792F:/ -1323.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7949:/ -1328.1 "Ektothermos" sync / 1[56]:[^:]*:Hephaistos:79EA:/ +1265.0 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1270.2 "Reforged Reflection" Ability { id: "794C", source: "Hephaistos" } +1277.5 "Snaking Kick" Ability { id: "7929", source: "Hephaistos" } +1283.6 "Gorgomanteia" Ability { id: "791A", source: "Hephaistos" } +1289.7 "Into the Shadows" Ability { id: "792A", source: "Hephaistos" } +1303.8 "--sync--" Ability { id: "792B", source: "Gorgon" } +1304.9 "Petrifaction 1" Ability { id: "6724", source: "Gorgon" } +1307.4 "Eye of the Gorgon 1" Ability { id: "792D", source: "Hephaistos" } +1310.5 "Blood of the Gorgon 1" Ability { id: "792F", source: "Hephaistos" } +1311.8 "--sync--" Ability { id: "792B", source: "Gorgon" } +1313.0 "Petrifaction 2" Ability { id: "6724", source: "Gorgon" } +1315.5 "Eye of the Gorgon 2" Ability { id: "792D", source: "Hephaistos" } +1318.5 "Blood of the Gorgon 2" Ability { id: "792F", source: "Hephaistos" } +1323.1 "--sync--" Ability { id: "7949", source: "Hephaistos" } +1328.1 "Ektothermos" Ability { id: "79EA", source: "Hephaistos" } # Human 3 (Beast first) -1331.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7949:/ -1346.5 "Conceptual Octaflare/Conceptual Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7914|7915):/ -1352.6 "Fourfold Fires" sync / 1[56]:[^:]*:Hephaistos:78F2:/ window 300,10 -1358.4 "Abyssal Fires" sync / 1[56]:[^:]*:Hephaistos:7954:/ -1361.8 "--sync--" sync / 1[56]:[^:]*:Hephaistos:78F0:/ -1367.7 "Cthonic Vent 1" sync / 1[56]:[^:]*:Suneater:7925:/ -1376.7 "Cthonic Vent 2" sync / 1[56]:[^:]*:Suneater:794E:/ -1377.0 "Tetraflare/Octaflare" sync / 1[56]:[^:]*:Hephaistos:(791E|791D):/ -1381.2 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1385.7 "Cthonic Vent 3" sync / 1[56]:[^:]*:Suneater:7926:/ -1390.4 "Sunforge" sync / 1[56]:[^:]*:Hephaistos:(7910|7911):/ -1391.4 "Scorching Fang/Sun's Pinion" sync / 1[56]:[^:]*:Hephaistos:(7912|7913):/ -1391.6 "Emergent Octaflare/Emergent Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7918|7919):/ -1398.8 "Flameviper 1" sync / 1[56]:[^:]*:Hephaistos:7945:/ -1402.0 "Flameviper 2" sync / 1[56]:[^:]*:Hephaistos:7946:/ +1331.1 "--sync--" Ability { id: "7949", source: "Hephaistos" } +1346.5 "Conceptual Octaflare/Conceptual Tetraflare" Ability { id: ["7914", "7915"], source: "Hephaistos" } +1352.6 "Fourfold Fires" Ability { id: "78F2", source: "Hephaistos" } window 300,10 +1358.4 "Abyssal Fires" Ability { id: "7954", source: "Hephaistos" } +1361.8 "--sync--" Ability { id: "78F0", source: "Hephaistos" } +1367.7 "Cthonic Vent 1" Ability { id: "7925", source: "Suneater" } +1376.7 "Cthonic Vent 2" Ability { id: "794E", source: "Suneater" } +1377.0 "Tetraflare/Octaflare" Ability { id: ["791E", "791D"], source: "Hephaistos" } +1381.2 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1385.7 "Cthonic Vent 3" Ability { id: "7926", source: "Suneater" } +1390.4 "Sunforge" Ability { id: ["7910", "7911"], source: "Hephaistos" } +1391.4 "Scorching Fang/Sun's Pinion" Ability { id: ["7912", "7913"], source: "Hephaistos" } +1391.6 "Emergent Octaflare/Emergent Tetraflare" Ability { id: ["7918", "7919"], source: "Hephaistos" } +1398.8 "Flameviper 1" Ability { id: "7945", source: "Hephaistos" } +1402.0 "Flameviper 2" Ability { id: "7946", source: "Hephaistos" } # Beast 2 (Beast first) -1409.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1414.3 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794B:/ -1420.8 "Footprint" sync / 1[56]:[^:]*:Hephaistos:7109:/ -1427.1 "Quadrupedal Impact/Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:(7A04|7A05):/ -1433.5 "Conceptual Diflare/Conceptual Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(7917|7916):/ -1439.7 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793B:/ -1441.9 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793D:/ -1444.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793B:/ -1446.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793C:/ +1409.1 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1414.3 "Reforged Reflection" Ability { id: "794B", source: "Hephaistos" } +1420.8 "Footprint" Ability { id: "7109", source: "Hephaistos" } +1427.1 "Quadrupedal Impact/Quadrupedal Crush" Ability { id: ["7A04", "7A05"], source: "Hephaistos" } +1433.5 "Conceptual Diflare/Conceptual Tetraflare" Ability { id: ["7917", "7916"], source: "Hephaistos" } +1439.7 "--sync--" Ability { id: "793B", source: "Hephaistos" } +1441.9 "--sync--" Ability { id: "793D", source: "Hephaistos" } +1444.1 "--sync--" Ability { id: "793B", source: "Hephaistos" } +1446.3 "--sync--" Ability { id: "793C", source: "Hephaistos" } 1448.7 "--untargetable--" -1448.7 "Blazing Footfalls" sync / 1[56]:[^:]*:Hephaistos:7938:/ -1449.3 "Trailblaze 1" sync / 1[56]:[^:]*:Hephaistos:793E:/ -1450.5 "Emergent Diflare/Emergent Tetraflare" sync / 1[56]:[^:]*:Hephaistos:(791B|7919):/ -1453.4 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793F:/ -1454.3 "Quadrupedal Impact/Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:7107:/ -1457.2 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7939:/ -1457.9 "Trailblaze 2" sync / 1[56]:[^:]*:Hephaistos:793E:/ -1459.9 "--sync--" sync / 1[56]:[^:]*:Hephaistos:793A:/ -1460.8 "Quadrupedal Impact/Quadrupedal Crush" sync / 1[56]:[^:]*:Hephaistos:7106:/ -1464.2 "Torch Flame" sync / 1[56]:[^:]*:Hephaistos:7927:/ +1448.7 "Blazing Footfalls" Ability { id: "7938", source: "Hephaistos" } +1449.3 "Trailblaze 1" Ability { id: "793E", source: "Hephaistos" } +1450.5 "Emergent Diflare/Emergent Tetraflare" Ability { id: ["791B", "7919"], source: "Hephaistos" } +1453.4 "--sync--" Ability { id: "793F", source: "Hephaistos" } +1454.3 "Quadrupedal Impact/Quadrupedal Crush" Ability { id: "7107", source: "Hephaistos" } +1457.2 "--sync--" Ability { id: "7939", source: "Hephaistos" } +1457.9 "Trailblaze 2" Ability { id: "793E", source: "Hephaistos" } +1459.9 "--sync--" Ability { id: "793A", source: "Hephaistos" } +1460.8 "Quadrupedal Impact/Quadrupedal Crush" Ability { id: "7106", source: "Hephaistos" } +1464.2 "Torch Flame" Ability { id: "7927", source: "Hephaistos" } 1465.1 "--targetable--" -1470.3 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1477.7 "Flameviper 1" sync / 1[56]:[^:]*:Hephaistos:7945:/ -1480.9 "Flameviper 2" sync / 1[56]:[^:]*:Hephaistos:7946:/ +1470.3 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1477.7 "Flameviper 1" Ability { id: "7945", source: "Hephaistos" } +1480.9 "Flameviper 2" Ability { id: "7946", source: "Hephaistos" } # Snake 2 (Beast first) -1488.0 "--sync--" sync / 1[56]:[^:]*:Hephaistos:7108:/ -1493.2 "Reforged Reflection" sync / 1[56]:[^:]*:Hephaistos:794C:/ -1500.5 "Snaking Kick" sync / 1[56]:[^:]*:Hephaistos:7929:/ -1506.6 "Gorgomanteia" sync / 1[56]:[^:]*:Hephaistos:791A:/ -1512.7 "Into the Shadows" sync / 1[56]:[^:]*:Hephaistos:792A:/ -1526.7 "--sync--" sync / 1[56]:[^:]*:Gorgon:792B:/ -1527.9 "Petrifaction" sync / 1[56]:[^:]*:Gorgon:6724:/ -1528.9 "Gorgospit (outside)" sync / 1[56]:[^:]*:Illusory Hephaistos:7932:/ -1530.4 "Blood of the Gorgon 1" sync / 1[56]:[^:]*:Hephaistos:792F:/ -1530.4 "Eye of the Gorgon 1" sync / 1[56]:[^:]*:Hephaistos:792D:/ -1535.0 "Illusory Creation" sync / 1[56]:[^:]*:Hephaistos:7931:/ -1536.4 "Blood of the Gorgon 2" sync / 1[56]:[^:]*:Hephaistos:792F:/ -1536.4 "Eye of the Gorgon 2" sync / 1[56]:[^:]*:Hephaistos:792D:/ -1543.9 "Gorgospit (line)" sync / 1[56]:[^:]*:Illusory Hephaistos:7932:/ -1545.5 "Crown of the Gorgon" sync / 1[56]:[^:]*:Hephaistos:792E:/ -1546.4 "Breath of the Gorgon" sync / 1[56]:[^:]*:Hephaistos:7930:/ +1488.0 "--sync--" Ability { id: "7108", source: "Hephaistos" } +1493.2 "Reforged Reflection" Ability { id: "794C", source: "Hephaistos" } +1500.5 "Snaking Kick" Ability { id: "7929", source: "Hephaistos" } +1506.6 "Gorgomanteia" Ability { id: "791A", source: "Hephaistos" } +1512.7 "Into the Shadows" Ability { id: "792A", source: "Hephaistos" } +1526.7 "--sync--" Ability { id: "792B", source: "Gorgon" } +1527.9 "Petrifaction" Ability { id: "6724", source: "Gorgon" } +1528.9 "Gorgospit (outside)" Ability { id: "7932", source: "Illusory Hephaistos" } +1530.4 "Blood of the Gorgon 1" Ability { id: "792F", source: "Hephaistos" } +1530.4 "Eye of the Gorgon 1" Ability { id: "792D", source: "Hephaistos" } +1535.0 "Illusory Creation" Ability { id: "7931", source: "Hephaistos" } +1536.4 "Blood of the Gorgon 2" Ability { id: "792F", source: "Hephaistos" } +1536.4 "Eye of the Gorgon 2" Ability { id: "792D", source: "Hephaistos" } +1543.9 "Gorgospit (line)" Ability { id: "7932", source: "Illusory Hephaistos" } +1545.5 "Crown of the Gorgon" Ability { id: "792E", source: "Hephaistos" } +1546.4 "Breath of the Gorgon" Ability { id: "7930", source: "Hephaistos" } # Human 4 (Beast first) -1559.4 "Genesis of Flame" sync / 1[56]:[^:]*:Hephaistos:7944:/ +1559.4 "Genesis of Flame" Ability { id: "7944", source: "Hephaistos" } 1567.4 "--untargetable--" -1572.4 "Genesis of Flame (enrage)" sync / 1[56]:[^:]*:Hephaistos:794A:/ +1572.4 "Genesis of Flame (enrage)" Ability { id: "794A", source: "Hephaistos" } ### P8S Part 2 @@ -288,116 +288,116 @@ hideall "--sync--" # -it "Hephaistos" 5000.0 "--sync--" -5005.0 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5008.0 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5011.0 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5011.0 "--sync--" sync / 14:[^:]*:Hephaistos:79DF:/ window 6000,10 -5016.0 "Aioniopyr" sync / 1[56]:[^:]*:Hephaistos:79DF:/ -5019.0 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5022.0 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5027.2 "Tyrant's Unholy Darkness" sync / 1[56]:[^:]*:Hephaistos:79DD:/ -5032.2 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5035.3 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ - -5040.4 "Natural Alignment 1" sync / 1[56]:[^:]*:Hephaistos:79BB:/ window 20,20 -5049.5 "Twist Nature" sync / 1[56]:[^:]*:Hephaistos:79BC:/ -5055.6 "Tyrant's Flare" sync / 1[56]:[^:]*:Hephaistos:7A89:/ -5058.6 "Forcible Fire III/Forcible Fire II" sync / 1[56]:[^:]*:Hephaistos:(79BF|79C0):/ -5058.6 "Tyrant's Flare" sync / 1[56]:[^:]*:Hephaistos:7A8A:/ -5064.6 "Forcible Fire II/Forcible Fire III" sync / 1[56]:[^:]*:Hephaistos:(79C0|79BF):/ - -5064.6 "Ashing Blaze" sync / 1[56]:[^:]*:Hephaistos:(79D7|79D8):/ -5076.4 "Forcible Trifire/Forcible Difreeze" sync / 1[56]:[^:]*:Hephaistos:(79BD|79BE):/ -5082.4 "Forcible Difreeze/Forcible Trifire" sync / 1[56]:[^:]*:Hephaistos:(79BE|79BD):/ - -5088.7 "Aioniopyr" sync / 1[56]:[^:]*:Hephaistos:79DF:/ window 20,20 -5091.7 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5094.8 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5101.9 "Tyrant's Unholy Darkness" sync / 1[56]:[^:]*:Hephaistos:79DD:/ -5114.1 "--sync--" sync / 1[56]:[^:]*:Hephaistos:79AC:/ -5106.9 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5118.6 "High Concept 1" sync / 1[56]:[^:]*:Hephaistos:710A:/ window 20,20 +5005.0 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5008.0 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5011.0 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5011.0 "--sync--" StartsUsing { id: "79DF", source: "Hephaistos" } window 6000,10 +5016.0 "Aioniopyr" Ability { id: "79DF", source: "Hephaistos" } +5019.0 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5022.0 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5027.2 "Tyrant's Unholy Darkness" Ability { id: "79DD", source: "Hephaistos" } +5032.2 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5035.3 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } + +5040.4 "Natural Alignment 1" Ability { id: "79BB", source: "Hephaistos" } window 20,20 +5049.5 "Twist Nature" Ability { id: "79BC", source: "Hephaistos" } +5055.6 "Tyrant's Flare" Ability { id: "7A89", source: "Hephaistos" } +5058.6 "Forcible Fire III/Forcible Fire II" Ability { id: ["79BF", "79C0"], source: "Hephaistos" } +5058.6 "Tyrant's Flare" Ability { id: "7A8A", source: "Hephaistos" } +5064.6 "Forcible Fire II/Forcible Fire III" Ability { id: ["79C0", "79BF"], source: "Hephaistos" } + +5064.6 "Ashing Blaze" Ability { id: ["79D7", "79D8"], source: "Hephaistos" } +5076.4 "Forcible Trifire/Forcible Difreeze" Ability { id: ["79BD", "79BE"], source: "Hephaistos" } +5082.4 "Forcible Difreeze/Forcible Trifire" Ability { id: ["79BE", "79BD"], source: "Hephaistos" } + +5088.7 "Aioniopyr" Ability { id: "79DF", source: "Hephaistos" } window 20,20 +5091.7 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5094.8 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5101.9 "Tyrant's Unholy Darkness" Ability { id: "79DD", source: "Hephaistos" } +5114.1 "--sync--" Ability { id: "79AC", source: "Hephaistos" } +5106.9 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5118.6 "High Concept 1" Ability { id: "710A", source: "Hephaistos" } window 20,20 5118.6 "--untargetable--" -5126.3 "Arcane Control" sync / 1[56]:[^:]*:Hephaistos:79B6:/ -5126.7 "Conceptual Shift" sync / 1[56]:[^:]*:Hephaistos:79AD:/ -5126.7 "Splicer" sync / 1[56]:[^:]*:Hephaistos:79B3:/ -5138.5 "Ashing Blaze" sync / 1[56]:[^:]*:Hephaistos:(79D7|79D8):/ -5138.5 "Arcane Channel" sync / 1[56]:[^:]*:Hephaistos:79B7:/ -5144.6 "Arcane Control" sync / 1[56]:[^:]*:Hephaistos:79B6:/ -5144.7 "Conceptual Shift" sync / 1[56]:[^:]*:Hephaistos:79AD:/ -5156.7 "Ashing Blaze" sync / 1[56]:[^:]*:Hephaistos:(79D7|79D8):/ -5156.7 "Arcane Channel" sync / 1[56]:[^:]*:Hephaistos:79B7:/ +5126.3 "Arcane Control" Ability { id: "79B6", source: "Hephaistos" } +5126.7 "Conceptual Shift" Ability { id: "79AD", source: "Hephaistos" } +5126.7 "Splicer" Ability { id: "79B3", source: "Hephaistos" } +5138.5 "Ashing Blaze" Ability { id: ["79D7", "79D8"], source: "Hephaistos" } +5138.5 "Arcane Channel" Ability { id: "79B7", source: "Hephaistos" } +5144.6 "Arcane Control" Ability { id: "79B6", source: "Hephaistos" } +5144.7 "Conceptual Shift" Ability { id: "79AD", source: "Hephaistos" } +5156.7 "Ashing Blaze" Ability { id: ["79D7", "79D8"], source: "Hephaistos" } +5156.7 "Arcane Channel" Ability { id: "79B7", source: "Hephaistos" } 5159.8 "--targetable--" -5162.8 "Deconceptualize" sync / 1[56]:[^:]*:Hephaistos:7A8E:/ - -5170.9 "Aioniopyr" sync / 1[56]:[^:]*:Hephaistos:79DF:/ window 20,20 -5174.0 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5177.1 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5180.1 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5185.3 "Limitless Desolation" sync / 1[56]:[^:]*:Hephaistos:75ED:/ -5186.5 "Tyrant's Fire III 1" sync / 1[56]:[^:]*:Hephaistos:75F0:/ -5189.5 "Tyrant's Fire III 2" sync / 1[56]:[^:]*:Hephaistos:75F0:/ -5192.5 "Tyrant's Fire III 3" sync / 1[56]:[^:]*:Hephaistos:75F0:/ -5195.5 "Tyrant's Fire III 4" sync / 1[56]:[^:]*:Hephaistos:75F0:/ -5197.5 "Tyrant's Flare II" sync / 1[56]:[^:]*:Hephaistos:7A88:/ -5197.5 "Burst 1" #sync / 1[56]:[^:]*:Hephaistos:79D5:/ -5200.4 "Tyrant's Flare II" #sync / 1[56]:[^:]*:Hephaistos:7A88:/ -5200.4 "Burst 2" #sync / 1[56]:[^:]*:Hephaistos:79D5:/ -5203.4 "Tyrant's Flare II" #sync / 1[56]:[^:]*:Hephaistos:7A88:/ -5203.4 "Burst 3" #sync / 1[56]:[^:]*:Hephaistos:79D5:/ -5206.3 "Tyrant's Flare II" #sync / 1[56]:[^:]*:Hephaistos:7A88:/ -5206.3 "Burst 4" #sync / 1[56]:[^:]*:Hephaistos:79D5:/ - -5213.2 "Aioniopyr" sync / 1[56]:[^:]*:Hephaistos:79DF:/ window 20,20 -5216.3 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5219.3 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5226.3 "Tyrant's Unholy Darkness" sync / 1[56]:[^:]*:Hephaistos:79DD:/ -5231.4 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5234.4 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5241.5 "Natural Alignment 2" sync / 1[56]:[^:]*:Hephaistos:79BB:/ -5247.6 "Inverse Magicks" sync / 1[56]:[^:]*:Hephaistos:79C2:/ -5253.7 "Twist Nature" sync / 1[56]:[^:]*:Hephaistos:79BC:/ -5262.9 "Forcible Fire III/Forcible Fire II" sync / 1[56]:[^:]*:Hephaistos:(79BF|79C0):/ -5268.9 "Forcible Fire II/Forcible Fire III" sync / 1[56]:[^:]*:Hephaistos:(79C0|79BF):/ -5281.8 "Forcible Trifire/Forcible Difreeze" sync / 1[56]:[^:]*:Hephaistos:(79BD|79BE):/ -5287.9 "Forcible Difreeze/Forcible Trifire" sync / 1[56]:[^:]*:Hephaistos:(79BE|79BD):/ -5293.8 "Ashing Blaze" sync / 1[56]:[^:]*:Hephaistos:(79D7|79D8):/ - -5301.9 "Aioniopyr" sync / 1[56]:[^:]*:Hephaistos:79DF:/ window 20,20 -5305.0 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5308.0 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ -5315.0 "Tyrant's Unholy Darkness" sync / 1[56]:[^:]*:Hephaistos:79DD:/ -5320.2 "--auto--" #sync / 1[56]:[^:]*:Hephaistos:72C2:/ - -5327.2 "--sync--" sync / 1[56]:[^:]*:Hephaistos:79AC:/ -5331.7 "High Concept 2" sync / 1[56]:[^:]*:Hephaistos:710A:/ window 20,20 +5162.8 "Deconceptualize" Ability { id: "7A8E", source: "Hephaistos" } + +5170.9 "Aioniopyr" Ability { id: "79DF", source: "Hephaistos" } window 20,20 +5174.0 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5177.1 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5180.1 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5185.3 "Limitless Desolation" Ability { id: "75ED", source: "Hephaistos" } +5186.5 "Tyrant's Fire III 1" Ability { id: "75F0", source: "Hephaistos" } +5189.5 "Tyrant's Fire III 2" Ability { id: "75F0", source: "Hephaistos" } +5192.5 "Tyrant's Fire III 3" Ability { id: "75F0", source: "Hephaistos" } +5195.5 "Tyrant's Fire III 4" Ability { id: "75F0", source: "Hephaistos" } +5197.5 "Tyrant's Flare II" Ability { id: "7A88", source: "Hephaistos" } +5197.5 "Burst 1" #Ability { id: "79D5", source: "Hephaistos" } +5200.4 "Tyrant's Flare II" #Ability { id: "7A88", source: "Hephaistos" } +5200.4 "Burst 2" #Ability { id: "79D5", source: "Hephaistos" } +5203.4 "Tyrant's Flare II" #Ability { id: "7A88", source: "Hephaistos" } +5203.4 "Burst 3" #Ability { id: "79D5", source: "Hephaistos" } +5206.3 "Tyrant's Flare II" #Ability { id: "7A88", source: "Hephaistos" } +5206.3 "Burst 4" #Ability { id: "79D5", source: "Hephaistos" } + +5213.2 "Aioniopyr" Ability { id: "79DF", source: "Hephaistos" } window 20,20 +5216.3 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5219.3 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5226.3 "Tyrant's Unholy Darkness" Ability { id: "79DD", source: "Hephaistos" } +5231.4 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5234.4 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5241.5 "Natural Alignment 2" Ability { id: "79BB", source: "Hephaistos" } +5247.6 "Inverse Magicks" Ability { id: "79C2", source: "Hephaistos" } +5253.7 "Twist Nature" Ability { id: "79BC", source: "Hephaistos" } +5262.9 "Forcible Fire III/Forcible Fire II" Ability { id: ["79BF", "79C0"], source: "Hephaistos" } +5268.9 "Forcible Fire II/Forcible Fire III" Ability { id: ["79C0", "79BF"], source: "Hephaistos" } +5281.8 "Forcible Trifire/Forcible Difreeze" Ability { id: ["79BD", "79BE"], source: "Hephaistos" } +5287.9 "Forcible Difreeze/Forcible Trifire" Ability { id: ["79BE", "79BD"], source: "Hephaistos" } +5293.8 "Ashing Blaze" Ability { id: ["79D7", "79D8"], source: "Hephaistos" } + +5301.9 "Aioniopyr" Ability { id: "79DF", source: "Hephaistos" } window 20,20 +5305.0 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5308.0 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } +5315.0 "Tyrant's Unholy Darkness" Ability { id: "79DD", source: "Hephaistos" } +5320.2 "--auto--" #Ability { id: "72C2", source: "Hephaistos" } + +5327.2 "--sync--" Ability { id: "79AC", source: "Hephaistos" } +5331.7 "High Concept 2" Ability { id: "710A", source: "Hephaistos" } window 20,20 5331.7 "--untargetable--" -5339.4 "Arcane Control" sync / 1[56]:[^:]*:Hephaistos:79B6:/ -5339.8 "Conceptual Shift" sync / 1[56]:[^:]*:Hephaistos:79AD:/ -5339.8 "Splicer" sync / 1[56]:[^:]*:Hephaistos:79B3:/ -5351.6 "Ashing Blaze" sync / 1[56]:[^:]*:Hephaistos:(79D7|79D8):/ -5351.6 "Arcane Channel" sync / 1[56]:[^:]*:Hephaistos:79B7:/ -5357.7 "Arcane Control" sync / 1[56]:[^:]*:Hephaistos:79B6:/ -5357.8 "Conceptual Shift" sync / 1[56]:[^:]*:Hephaistos:79AD:/ -5370.0 "End of Days" sync / 1[56]:[^:]*:Illusory Hephaistos:79B9:/ -5370.0 "Arcane Channel" sync / 1[56]:[^:]*:Hephaistos:79B7:/ +5339.4 "Arcane Control" Ability { id: "79B6", source: "Hephaistos" } +5339.8 "Conceptual Shift" Ability { id: "79AD", source: "Hephaistos" } +5339.8 "Splicer" Ability { id: "79B3", source: "Hephaistos" } +5351.6 "Ashing Blaze" Ability { id: ["79D7", "79D8"], source: "Hephaistos" } +5351.6 "Arcane Channel" Ability { id: "79B7", source: "Hephaistos" } +5357.7 "Arcane Control" Ability { id: "79B6", source: "Hephaistos" } +5357.8 "Conceptual Shift" Ability { id: "79AD", source: "Hephaistos" } +5370.0 "End of Days" Ability { id: "79B9", source: "Illusory Hephaistos" } +5370.0 "Arcane Channel" Ability { id: "79B7", source: "Hephaistos" } 5373.9 "--targetable--" -5390.0 "Ego Death" sync / 1[56]:[^:]*:Hephaistos:79BA:/ -5403.4 "--sync--" sync / 1[56]:[^:]*:Hephaistos:79F0:/ +5390.0 "Ego Death" Ability { id: "79BA", source: "Hephaistos" } +5403.4 "--sync--" Ability { id: "79F0", source: "Hephaistos" } -5424.5 "Aionagonia 1" sync / 1[56]:[^:]*:Hephaistos:7A22:/ window 20,20 -5434.6 "Dominion" sync / 1[56]:[^:]*:Hephaistos:79D9:/ -5435.7 "Orogenic Deformation" sync / 1[56]:[^:]*:Hephaistos:79DB:/ -5442.7 "Orogenic Shift 1" sync / 1[56]:[^:]*:Hephaistos:79DC:/ -5448.7 "Orogenic Shift 2" sync / 1[56]:[^:]*:Hephaistos:79DC:/ +5424.5 "Aionagonia 1" Ability { id: "7A22", source: "Hephaistos" } window 20,20 +5434.6 "Dominion" Ability { id: "79D9", source: "Hephaistos" } +5435.7 "Orogenic Deformation" Ability { id: "79DB", source: "Hephaistos" } +5442.7 "Orogenic Shift 1" Ability { id: "79DC", source: "Hephaistos" } +5448.7 "Orogenic Shift 2" Ability { id: "79DC", source: "Hephaistos" } -5453.8 "Aionagonia 2" sync / 1[56]:[^:]*:Hephaistos:7A22:/ -5463.9 "Dominion" sync / 1[56]:[^:]*:Hephaistos:79D9:/ -5465.0 "Orogenic Deformation" sync / 1[56]:[^:]*:Hephaistos:79DB:/ -5472.0 "Orogenic Shift 1" sync / 1[56]:[^:]*:Hephaistos:79DC:/ -5478.0 "Orogenic Shift 2" sync / 1[56]:[^:]*:Hephaistos:79DC:/ +5453.8 "Aionagonia 2" Ability { id: "7A22", source: "Hephaistos" } +5463.9 "Dominion" Ability { id: "79D9", source: "Hephaistos" } +5465.0 "Orogenic Deformation" Ability { id: "79DB", source: "Hephaistos" } +5472.0 "Orogenic Shift 1" Ability { id: "79DC", source: "Hephaistos" } +5478.0 "Orogenic Shift 2" Ability { id: "79DC", source: "Hephaistos" } -5483.0 "Aionagonia 3" sync / 1[56]:[^:]*:Hephaistos:7A22:/ window 20,20 +5483.0 "Aionagonia 3" Ability { id: "7A22", source: "Hephaistos" } window 20,20 -5490.3 "--sync--" sync / 14:[^:]*:Hephaistos:79E4:/ window 50,50 -5506.3 "Ego Death (enrage)" sync / 1[56]:[^:]*:Hephaistos:79E4:/ +5490.3 "--sync--" StartsUsing { id: "79E4", source: "Hephaistos" } window 50,50 +5506.3 "Ego Death (enrage)" Ability { id: "79E4", source: "Hephaistos" } diff --git a/ui/raidboss/data/06-ew/raid/p9n.txt b/ui/raidboss/data/06-ew/raid/p9n.txt index f3222fc9fc..abe721e931 100644 --- a/ui/raidboss/data/06-ew/raid/p9n.txt +++ b/ui/raidboss/data/06-ew/raid/p9n.txt @@ -10,139 +10,139 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "--sync--" sync / 1[56]:[^:]*:Kokytos:8115:/ window 10,10 -18.2 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:8116:/ window 15,15 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "--sync--" Ability { id: "8115", source: "Kokytos" } window 10,10 +18.2 "Gluttony's Augur" Ability { id: "8116", source: "Kokytos" } window 15,15 # Mage Phase 1 -26.4 "Ravening (Mage)" sync / 1[56]:[^:]*:Kokytos:8118:/ -41.7 "--sync--" sync / 1[56]:[^:]*:Kokytos:8144:/ -48.4 "Fire III (cast)" sync / 1[56]:[^:]*:Kokytos:814E:/ -51.7 "--sync--" sync / 1[56]:[^:]*:Kokytos:8122:/ -56.3 "Fire III (resolve)" sync / 1[56]:[^:]*:Kokytos:8120:/ -68.1 "Blizzard III (cast)" sync / 1[56]:[^:]*:Kokytos:814F:/ -71.4 "--sync--" sync / 1[56]:[^:]*:Kokytos:8123:/ -76.0 "Blizzard III (resolve)" sync / 1[56]:[^:]*:Kokytos:8121:/ -82.6 "Dualspell" sync / 1[56]:[^:]*:Kokytos:811D:/ -85.9 "--sync--" sync / 1[56]:[^:]*:Kokytos:812[23]:/ -90.3 "Fire III" sync / 1[56]:[^:]*:Kokytos:(8120|811E):/ -90.3 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(811F|8121):/ -99.8 "Global Spell" sync / 1[56]:[^:]*:Kokytos:8141:/ -103.0 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8124:/ +26.4 "Ravening (Mage)" Ability { id: "8118", source: "Kokytos" } +41.7 "--sync--" Ability { id: "8144", source: "Kokytos" } +48.4 "Fire III (cast)" Ability { id: "814E", source: "Kokytos" } +51.7 "--sync--" Ability { id: "8122", source: "Kokytos" } +56.3 "Fire III (resolve)" Ability { id: "8120", source: "Kokytos" } +68.1 "Blizzard III (cast)" Ability { id: "814F", source: "Kokytos" } +71.4 "--sync--" Ability { id: "8123", source: "Kokytos" } +76.0 "Blizzard III (resolve)" Ability { id: "8121", source: "Kokytos" } +82.6 "Dualspell" Ability { id: "811D", source: "Kokytos" } +85.9 "--sync--" Ability { id: "812[23]", source: "Kokytos" } +90.3 "Fire III" Ability { id: ["8120", "811E"], source: "Kokytos" } +90.3 "Blizzard III" Ability { id: ["811F", "8121"], source: "Kokytos" } +99.8 "Global Spell" Ability { id: "8141", source: "Kokytos" } +103.0 "Disgorge" Ability { id: "8124", source: "Kokytos" } # Fighter phase 1 -115.2 "Ravening (Fighter)" sync / 1[56]:[^:]*:Kokytos:8119:/ -136.6 "Archaic Rockbreaker" sync / 1[56]:[^:]*:Kokytos:8128:/ -138.2 "Shockwave" sync / 1[56]:[^:]*:Kokytos:8129:/ -145.1 "Archaic Rockbreaker 1" sync / 1[56]:[^:]*:Kokytos:812A:/ -150.1 "Archaic Rockbreaker 2" sync / 1[56]:[^:]*:Kokytos:812A:/ -156.7 "Archaic Demolish" sync / 1[56]:[^:]*:Kokytos:812F:/ -163.8 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:8116:/ -170.9 "Ascendant Fist" sync / 1[56]:[^:]*:Kokytos:8131:/ -183.2 "Front Combination/Rear Combination" sync / 1[56]:[^:]*:Kokytos:814[8A]:/ -183.4 "Outside Roundhouse" sync / 1[56]:[^:]*:Kokytos:812C:/ -186.4 "Swinging Kick" sync / 1[56]:[^:]*:Kokytos:812[DE]:/ -190.5 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8125:/ -198.8 "--sync--" sync / 1[56]:[^:]*:Kokytos:8144:/ +115.2 "Ravening (Fighter)" Ability { id: "8119", source: "Kokytos" } +136.6 "Archaic Rockbreaker" Ability { id: "8128", source: "Kokytos" } +138.2 "Shockwave" Ability { id: "8129", source: "Kokytos" } +145.1 "Archaic Rockbreaker 1" Ability { id: "812A", source: "Kokytos" } +150.1 "Archaic Rockbreaker 2" Ability { id: "812A", source: "Kokytos" } +156.7 "Archaic Demolish" Ability { id: "812F", source: "Kokytos" } +163.8 "Gluttony's Augur" Ability { id: "8116", source: "Kokytos" } +170.9 "Ascendant Fist" Ability { id: "8131", source: "Kokytos" } +183.2 "Front Combination/Rear Combination" Ability { id: "814[8A]", source: "Kokytos" } +183.4 "Outside Roundhouse" Ability { id: "812C", source: "Kokytos" } +186.4 "Swinging Kick" Ability { id: "812[DE]", source: "Kokytos" } +190.5 "Disgorge" Ability { id: "8125", source: "Kokytos" } +198.8 "--sync--" Ability { id: "8144", source: "Kokytos" } # Behemoth phase 1 -203.5 "Ravening (Behemoth)" sync / 1[56]:[^:]*:Kokytos:811A:/ -220.8 "Charybdis" sync / 1[56]:[^:]*:Kokytos:8132:/ -221.8 "--sync--" sync / 1[56]:[^:]*:Kokytos:8133:/ -226.9 "Beastly Roar" sync / 1[56]:[^:]*:Kokytos:8138:/ -229.0 "Beastly Bile" sync / 1[56]:[^:]*:Kokytos:813D:/ -238.1 "Pulverizing Pounce" sync / 1[56]:[^:]*:Kokytos:813F:/ -253.4 "Gluttonous Rampage" sync / 1[56]:[^:]*:Kokytos:8139:/ -253.6 "Ravenous Bite 1" #sync / 1[56]:[^:]*:Kokytos:813A:/ -255.7 "Ravenous Bite 2" #sync / 1[56]:[^:]*:Kokytos:813A:/ -257.9 "Touchdown" sync / 1[56]:[^:]*:Kokytos:8137:/ -258.1 "--sync--" sync / 1[56]:[^:]*:Kokytos:8146:/ -268.8 "Comet" sync / 1[56]:[^:]*:Kokytos:8134:/ -269.8 "--sync--" sync / 1[56]:[^:]*:Comet:8135:/ -277.8 "--sync--" sync / 1[56]:[^:]*:Kokytos:813B:/ -278.8 "--sync--" sync / 1[56]:[^:]*:Kokytos:813C:/ -279.8 "Ecliptic Meteor" sync / 1[56]:[^:]*:Kokytos:8188:/ -279.9 "--sync--" sync / 1[56]:[^:]*:Comet:8143:/ -285.9 "Burst" sync / 1[56]:[^:]*:Comet:8136:/ -286.0 "Pulverizing Pounce" sync / 1[56]:[^:]*:Kokytos:813F:/ -288.8 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8126:/ +203.5 "Ravening (Behemoth)" Ability { id: "811A", source: "Kokytos" } +220.8 "Charybdis" Ability { id: "8132", source: "Kokytos" } +221.8 "--sync--" Ability { id: "8133", source: "Kokytos" } +226.9 "Beastly Roar" Ability { id: "8138", source: "Kokytos" } +229.0 "Beastly Bile" Ability { id: "813D", source: "Kokytos" } +238.1 "Pulverizing Pounce" Ability { id: "813F", source: "Kokytos" } +253.4 "Gluttonous Rampage" Ability { id: "8139", source: "Kokytos" } +253.6 "Ravenous Bite 1" #Ability { id: "813A", source: "Kokytos" } +255.7 "Ravenous Bite 2" #Ability { id: "813A", source: "Kokytos" } +257.9 "Touchdown" Ability { id: "8137", source: "Kokytos" } +258.1 "--sync--" Ability { id: "8146", source: "Kokytos" } +268.8 "Comet" Ability { id: "8134", source: "Kokytos" } +269.8 "--sync--" Ability { id: "8135", source: "Comet" } +277.8 "--sync--" Ability { id: "813B", source: "Kokytos" } +278.8 "--sync--" Ability { id: "813C", source: "Kokytos" } +279.8 "Ecliptic Meteor" Ability { id: "8188", source: "Kokytos" } +279.9 "--sync--" Ability { id: "8143", source: "Comet" } +285.9 "Burst" Ability { id: "8136", source: "Comet" } +286.0 "Pulverizing Pounce" Ability { id: "813F", source: "Kokytos" } +288.8 "Disgorge" Ability { id: "8126", source: "Kokytos" } # Mage phase 2 -304.3 "Ravening (Mage)" sync / 1[56]:[^:]*:Kokytos:8118:/ -318.6 "--sync--" sync / 1[56]:[^:]*:Kokytos:8144:/ -325.2 "Iceflame Summoning" sync / 1[56]:[^:]*:Kokytos:86E1:/ -330.1 "--sync--" sync / 1[56]:[^:]*:Kokytos:812[23]:/ -336.1 "--sync--" sync / 1[56]:[^:]*:Ice Sphere:872[9A]:/ -336.1 "--sync--" sync / 1[56]:[^:]*:Fire Sphere:872[78]:/ -336.1 "Sphere Shatter" sync / 1[56]:[^:]*:Ice Sphere:86E[45]:/ -336.1 "Explosion" sync / 1[56]:[^:]*:Fire Sphere:86E[23]:/ -340.7 "Iceflame Summoning" sync / 1[56]:[^:]*:Kokytos:86E1:/ -345.6 "--sync--" sync / 1[56]:[^:]*:Kokytos:812[23]:/ -351.6 "--sync--" sync / 1[56]:[^:]*:Ice Sphere:872[9A]:/ -351.6 "--sync--" sync / 1[56]:[^:]*:Fire Sphere:872[78]:/ -351.6 "Sphere Shatter" sync / 1[56]:[^:]*:Ice Sphere:86E[45]:/ -351.6 "Explosion" sync / 1[56]:[^:]*:Fire Sphere:86E[23]:/ -356.0 "Dualspell" sync / 1[56]:[^:]*:Kokytos:811D:/ -359.3 "--sync--" sync / 1[56]:[^:]*:Kokytos:812[23]:/ -363.8 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(811F|8121):/ -363.8 "Fire III" sync / 1[56]:[^:]*:Kokytos:(811E|8120):/ -370.5 "Global Spell" sync / 1[56]:[^:]*:Kokytos:8141:/ -372.7 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8124:/ +304.3 "Ravening (Mage)" Ability { id: "8118", source: "Kokytos" } +318.6 "--sync--" Ability { id: "8144", source: "Kokytos" } +325.2 "Iceflame Summoning" Ability { id: "86E1", source: "Kokytos" } +330.1 "--sync--" Ability { id: "812[23]", source: "Kokytos" } +336.1 "--sync--" Ability { id: "872[9A]", source: "Ice Sphere" } +336.1 "--sync--" Ability { id: "872[78]", source: "Fire Sphere" } +336.1 "Sphere Shatter" Ability { id: "86E[45]", source: "Ice Sphere" } +336.1 "Explosion" Ability { id: "86E[23]", source: "Fire Sphere" } +340.7 "Iceflame Summoning" Ability { id: "86E1", source: "Kokytos" } +345.6 "--sync--" Ability { id: "812[23]", source: "Kokytos" } +351.6 "--sync--" Ability { id: "872[9A]", source: "Ice Sphere" } +351.6 "--sync--" Ability { id: "872[78]", source: "Fire Sphere" } +351.6 "Sphere Shatter" Ability { id: "86E[45]", source: "Ice Sphere" } +351.6 "Explosion" Ability { id: "86E[23]", source: "Fire Sphere" } +356.0 "Dualspell" Ability { id: "811D", source: "Kokytos" } +359.3 "--sync--" Ability { id: "812[23]", source: "Kokytos" } +363.8 "Blizzard III" Ability { id: ["811F", "8121"], source: "Kokytos" } +363.8 "Fire III" Ability { id: ["811E", "8120"], source: "Kokytos" } +370.5 "Global Spell" Ability { id: "8141", source: "Kokytos" } +372.7 "Disgorge" Ability { id: "8124", source: "Kokytos" } # Fighter phase 2 -385.0 "Ravening (Fighter)" sync / 1[56]:[^:]*:Kokytos:8119:/ -403.2 "Archaic Rockbreaker" sync / 1[56]:[^:]*:Kokytos:8128:/ -404.8 "Shockwave" sync / 1[56]:[^:]*:Kokytos:8129:/ -411.7 "Archaic Rockbreaker 1" sync / 1[56]:[^:]*:Kokytos:812A:/ -416.7 "Archaic Rockbreaker 2" sync / 1[56]:[^:]*:Kokytos:812A:/ -421.8 "Front Combination/Rear Combination" sync / 1[56]:[^:]*:Kokytos:814[789A]:/ -422.0 "Inside Roundhouse/Outside Roundhouse" sync / 1[56]:[^:]*:Kokytos:812[BC]:/ -425.0 "Swinging Kick" sync / 1[56]:[^:]*:Kokytos:812[DE]:/ -433.1 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:8116:/ -445.4 "Ascendant Fist" sync / 1[56]:[^:]*:Kokytos:8131:/ -447.5 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8125:/ -457.9 "--sync--" sync / 1[56]:[^:]*:Kokytos:8144:/ +385.0 "Ravening (Fighter)" Ability { id: "8119", source: "Kokytos" } +403.2 "Archaic Rockbreaker" Ability { id: "8128", source: "Kokytos" } +404.8 "Shockwave" Ability { id: "8129", source: "Kokytos" } +411.7 "Archaic Rockbreaker 1" Ability { id: "812A", source: "Kokytos" } +416.7 "Archaic Rockbreaker 2" Ability { id: "812A", source: "Kokytos" } +421.8 "Front Combination/Rear Combination" Ability { id: "814[789A]", source: "Kokytos" } +422.0 "Inside Roundhouse/Outside Roundhouse" Ability { id: "812[BC]", source: "Kokytos" } +425.0 "Swinging Kick" Ability { id: "812[DE]", source: "Kokytos" } +433.1 "Gluttony's Augur" Ability { id: "8116", source: "Kokytos" } +445.4 "Ascendant Fist" Ability { id: "8131", source: "Kokytos" } +447.5 "Disgorge" Ability { id: "8125", source: "Kokytos" } +457.9 "--sync--" Ability { id: "8144", source: "Kokytos" } # Behemoth phase 2 -462.5 "Ravening (Behemoth)" sync / 1[56]:[^:]*:Kokytos:811A:/ -486.1 "Comet" sync / 1[56]:[^:]*:Kokytos:8134:/ -487.1 "--sync--" sync / 1[56]:[^:]*:Comet:8135:/ -495.1 "--sync--" sync / 1[56]:[^:]*:Kokytos:813B:/ -496.1 "--sync--" sync / 1[56]:[^:]*:Kokytos:813C:/ -497.1 "Ecliptic Meteor" sync / 1[56]:[^:]*:Kokytos:8188:/ -497.2 "--sync--" sync / 1[56]:[^:]*:Comet:8143:/ -501.2 "Beastly Bile" sync / 1[56]:[^:]*:Kokytos:813D:/ -503.1 "Burst" sync / 1[56]:[^:]*:Comet:8136:/ -510.3 "Pulverizing Pounce" sync / 1[56]:[^:]*:Kokytos:813F:/ -523.7 "Gluttonous Rampage" sync / 1[56]:[^:]*:Kokytos:8139:/ -523.9 "Ravenous Bite 1" #sync / 1[56]:[^:]*:Kokytos:813A:/ -526.1 "Ravenous Bite 2" #sync / 1[56]:[^:]*:Kokytos:813A:/ -528.1 "Touchdown" sync / 1[56]:[^:]*:Kokytos:8137:/ -528.5 "--sync--" sync / 1[56]:[^:]*:Kokytos:8146:/ -531.3 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8126:/ +462.5 "Ravening (Behemoth)" Ability { id: "811A", source: "Kokytos" } +486.1 "Comet" Ability { id: "8134", source: "Kokytos" } +487.1 "--sync--" Ability { id: "8135", source: "Comet" } +495.1 "--sync--" Ability { id: "813B", source: "Kokytos" } +496.1 "--sync--" Ability { id: "813C", source: "Kokytos" } +497.1 "Ecliptic Meteor" Ability { id: "8188", source: "Kokytos" } +497.2 "--sync--" Ability { id: "8143", source: "Comet" } +501.2 "Beastly Bile" Ability { id: "813D", source: "Kokytos" } +503.1 "Burst" Ability { id: "8136", source: "Comet" } +510.3 "Pulverizing Pounce" Ability { id: "813F", source: "Kokytos" } +523.7 "Gluttonous Rampage" Ability { id: "8139", source: "Kokytos" } +523.9 "Ravenous Bite 1" #Ability { id: "813A", source: "Kokytos" } +526.1 "Ravenous Bite 2" #Ability { id: "813A", source: "Kokytos" } +528.1 "Touchdown" Ability { id: "8137", source: "Kokytos" } +528.5 "--sync--" Ability { id: "8146", source: "Kokytos" } +531.3 "Disgorge" Ability { id: "8126", source: "Kokytos" } # Mage phase 3, loops back to mage phase 2 -549.8 "Ravening (Mage)" sync / 1[56]:[^:]*:Kokytos:8118:/ window 50,50 jump 304.3 -570.7 "Iceflame Summoning" #sync / 1[56]:[^:]*:Kokytos:86E1:/ -581.6 "Sphere Shatter" #sync / 1[56]:[^:]*:Ice Sphere:86E[45]:/ -581.6 "Explosion" #sync / 1[56]:[^:]*:Fire Sphere:86E[23]:/ -586.2 "Iceflame Summoning" #sync / 1[56]:[^:]*:Kokytos:86E1:/ +549.8 "Ravening (Mage)" Ability { id: "8118", source: "Kokytos" } window 50,50 jump 304.3 +570.7 "Iceflame Summoning" #Ability { id: "86E1", source: "Kokytos" } +581.6 "Sphere Shatter" #Ability { id: "86E[45]", source: "Ice Sphere" } +581.6 "Explosion" #Ability { id: "86E[23]", source: "Fire Sphere" } +586.2 "Iceflame Summoning" #Ability { id: "86E1", source: "Kokytos" } # Ability IDs that appear in this instance: # UMFB = Unaspected, Mage, Fighter, Behemoth diff --git a/ui/raidboss/data/06-ew/raid/p9s.txt b/ui/raidboss/data/06-ew/raid/p9s.txt index 0e1383c44d..2fc63da63d 100644 --- a/ui/raidboss/data/06-ew/raid/p9s.txt +++ b/ui/raidboss/data/06-ew/raid/p9s.txt @@ -7,197 +7,197 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.2 "--sync--" sync / 14:[^:]*:Kokytos:814C:/ window 10,10 -12.2 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:814C:/ -19.6 "--middle--" sync / 1[56]:[^:]*:Kokytos:8144:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.2 "--sync--" StartsUsing { id: "814C", source: "Kokytos" } window 10,10 +12.2 "Gluttony's Augur" Ability { id: "814C", source: "Kokytos" } +19.6 "--middle--" Ability { id: "8144", source: "Kokytos" } # Mage 1 -25.3 "Ravening (Mage #1)" sync / 1[56]:[^:]*:Kokytos:8118:/ -32.0 "Soul Surge" sync / 1[56]:[^:]*:Kokytos:811B:/ -47.0 "Duality of Death" sync / 1[56]:[^:]*:Kokytos:8151:/ -47.9 "Aero IV/Fire IV #1" #sync / 1[56]:[^:]*:Kokytos:(8152|8153):/ -50.2 "Aero IV/Fire IV #2" #sync / 1[56]:[^:]*:Kokytos:(8152|8153):/ +25.3 "Ravening (Mage #1)" Ability { id: "8118", source: "Kokytos" } +32.0 "Soul Surge" Ability { id: "811B", source: "Kokytos" } +47.0 "Duality of Death" Ability { id: "8151", source: "Kokytos" } +47.9 "Aero IV/Fire IV #1" #Ability { id: ["8152", "8153"], source: "Kokytos" } +50.2 "Aero IV/Fire IV #2" #Ability { id: ["8152", "8153"], source: "Kokytos" } -60.4 "Dualspell (Fire/Ice)" sync / 1[56]:[^:]*:Kokytos:8154:/ -63.7 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8122|8123):/ -68.1 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -68.1 "Pile Pyre" sync / 1[56]:[^:]*:Kokytos:(8156|8158):/ +60.4 "Dualspell (Fire/Ice)" Ability { id: "8154", source: "Kokytos" } +63.7 "--sync--" Ability { id: ["8122", "8123"], source: "Kokytos" } +68.1 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +68.1 "Pile Pyre" Ability { id: ["8156", "8158"], source: "Kokytos" } -73.4 "Dualspell (Thunder/Ice)" sync / 1[56]:[^:]*:Kokytos:8155:/ -76.7 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8123|815C):/ -81.1 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -81.1 "Thunder III" sync / 1[56]:[^:]*:Kokytos:(815A|815B):/ +73.4 "Dualspell (Thunder/Ice)" Ability { id: "8155", source: "Kokytos" } +76.7 "--sync--" Ability { id: ["8123", "815C"], source: "Kokytos" } +81.1 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +81.1 "Thunder III" Ability { id: ["815A", "815B"], source: "Kokytos" } -86.4 "Dualspell (Fire/Ice)" sync / 1[56]:[^:]*:Kokytos:8154:/ -89.7 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8122|8123):/ -94.1 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -94.1 "Pile Pyre" sync / 1[56]:[^:]*:Kokytos:(8156|8158):/ +86.4 "Dualspell (Fire/Ice)" Ability { id: "8154", source: "Kokytos" } +89.7 "--sync--" Ability { id: ["8122", "8123"], source: "Kokytos" } +94.1 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +94.1 "Pile Pyre" Ability { id: ["8156", "8158"], source: "Kokytos" } -101.8 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8124:/ +101.8 "Disgorge" Ability { id: "8124", source: "Kokytos" } # Fighter -114.2 "Ravening (Fighter)" sync / 1[56]:[^:]*:Kokytos:8119:/ window 40,40 -120.9 "Soul Surge" sync / 1[56]:[^:]*:Kokytos:811B:/ -134.0 "Ascendant Fist" sync / 1[56]:[^:]*:Kokytos:816F:/ - -146.4 "Archaic Rockbreaker (cast)" sync / 1[56]:[^:]*:Kokytos:815F:/ -148.0 "Shockwave" sync / 1[56]:[^:]*:Kokytos:8160:/ -149.3 "Archaic Rockbreaker (stacks)" sync / 1[56]:[^:]*:Kokytos:8162:/ -155.5 "Front Combination/Rear Combination" sync / 1[56]:[^:]*:Kokytos:(8167|8168|8169|816A):/ -155.8 "Archaic Rockbreaker #1" sync / 1[56]:[^:]*:Kokytos:8161:/ -156.3 "Inside Roundhouse/Outside Roundhouse" sync / 1[56]:[^:]*:Kokytos:(8238|8239):/ -158.7 "Swinging Kick" sync / 1[56]:[^:]*:Kokytos:(816B|816C):/ -161.7 "Archaic Rockbreaker #2" sync / 1[56]:[^:]*:Kokytos:8161:/ -162.4 "Outside Roundhouse/Inside Roundhouse" sync / 1[56]:[^:]*:Kokytos:(8239|8238):/ -168.7 "Archaic Demolish" sync / 1[56]:[^:]*:Kokytos:816D:/ - -175.8 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:814C:/ -187.1 "Ascendant Fist" sync / 1[56]:[^:]*:Kokytos:816F:/ - -194.5 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8125:/ +114.2 "Ravening (Fighter)" Ability { id: "8119", source: "Kokytos" } window 40,40 +120.9 "Soul Surge" Ability { id: "811B", source: "Kokytos" } +134.0 "Ascendant Fist" Ability { id: "816F", source: "Kokytos" } + +146.4 "Archaic Rockbreaker (cast)" Ability { id: "815F", source: "Kokytos" } +148.0 "Shockwave" Ability { id: "8160", source: "Kokytos" } +149.3 "Archaic Rockbreaker (stacks)" Ability { id: "8162", source: "Kokytos" } +155.5 "Front Combination/Rear Combination" Ability { id: ["8167", "8168", "8169", "816A"], source: "Kokytos" } +155.8 "Archaic Rockbreaker #1" Ability { id: "8161", source: "Kokytos" } +156.3 "Inside Roundhouse/Outside Roundhouse" Ability { id: ["8238", "8239"], source: "Kokytos" } +158.7 "Swinging Kick" Ability { id: ["816B", "816C"], source: "Kokytos" } +161.7 "Archaic Rockbreaker #2" Ability { id: "8161", source: "Kokytos" } +162.4 "Outside Roundhouse/Inside Roundhouse" Ability { id: ["8239", "8238"], source: "Kokytos" } +168.7 "Archaic Demolish" Ability { id: "816D", source: "Kokytos" } + +175.8 "Gluttony's Augur" Ability { id: "814C", source: "Kokytos" } +187.1 "Ascendant Fist" Ability { id: "816F", source: "Kokytos" } + +194.5 "Disgorge" Ability { id: "8125", source: "Kokytos" } # Chimera 1 -202.9 "--middle--" sync / 1[56]:[^:]*:Kokytos:8144:/ -208.2 "Ravening (Chimera #1)" sync / 1[56]:[^:]*:Kokytos:817B:/ -214.8 "Soul Surge" sync / 1[56]:[^:]*:Kokytos:811B:/ +202.9 "--middle--" Ability { id: "8144", source: "Kokytos" } +208.2 "Ravening (Chimera #1)" Ability { id: "817B", source: "Kokytos" } +214.8 "Soul Surge" Ability { id: "811B", source: "Kokytos" } -221.4 "Levinstrike Summoning" sync / 1[56]:[^:]*:Kokytos:817C:/ -233.5 "Scrambled Succession" sync / 1[56]:[^:]*:Kokytos:817D:/ +221.4 "Levinstrike Summoning" Ability { id: "817C", source: "Kokytos" } +233.5 "Scrambled Succession" Ability { id: "817D", source: "Kokytos" } 233.6 "--untargetable--" # Limit Cut 1 -233.7 "--sync--" sync / 1[56]:[^:]*:Kokytos:8144:/ -235.3 "--sync--" sync / 1[56]:[^:]*:Kokytos:817E:/ -238.4 "Firemeld #1" sync / 1[56]:[^:]*:Kokytos:8180:/ -238.5 "Icemeld #1" sync / 1[56]:[^:]*:Kokytos's Echo:8183:/ -239.4 "Shock #1" sync / 1[56]:[^:]*:Kokytos:8181:/ - -239.4 "--sync--" sync / 1[56]:[^:]*:Kokytos:8144:/ -241.0 "--sync--" sync / 1[56]:[^:]*:Kokytos:817E:/ -244.1 "Firemeld #2" sync / 1[56]:[^:]*:Kokytos:8180:/ -244.3 "Icemeld #2" sync / 1[56]:[^:]*:Kokytos's Echo:8190:/ -245.2 "Shock #2" sync / 1[56]:[^:]*:Kokytos:8181:/ - -245.2 "--sync--" sync / 1[56]:[^:]*:Kokytos:8144:/ -246.6 "--sync--" sync / 1[56]:[^:]*:Kokytos:817E:/ -249.7 "Firemeld #3" sync / 1[56]:[^:]*:Kokytos:8180:/ -250.0 "Icemeld #3" sync / 1[56]:[^:]*:Kokytos's Echo:8191:/ -250.7 "Shock #3" sync / 1[56]:[^:]*:Kokytos:8181:/ - -250.7 "--sync--" sync / 1[56]:[^:]*:Kokytos:8144:/ -252.3 "--sync--" sync / 1[56]:[^:]*:Kokytos:817E:/ -255.4 "Firemeld #4" sync / 1[56]:[^:]*:Kokytos:8180:/ -255.8 "Icemeld #4" sync / 1[56]:[^:]*:Kokytos's Echo:8192:/ -256.5 "Shock #4" sync / 1[56]:[^:]*:Kokytos:8181:/ -256.5 "--middle--" sync / 1[56]:[^:]*:Kokytos:8144:/ +233.7 "--sync--" Ability { id: "8144", source: "Kokytos" } +235.3 "--sync--" Ability { id: "817E", source: "Kokytos" } +238.4 "Firemeld #1" Ability { id: "8180", source: "Kokytos" } +238.5 "Icemeld #1" Ability { id: "8183", source: "Kokytos's Echo" } +239.4 "Shock #1" Ability { id: "8181", source: "Kokytos" } + +239.4 "--sync--" Ability { id: "8144", source: "Kokytos" } +241.0 "--sync--" Ability { id: "817E", source: "Kokytos" } +244.1 "Firemeld #2" Ability { id: "8180", source: "Kokytos" } +244.3 "Icemeld #2" Ability { id: "8190", source: "Kokytos's Echo" } +245.2 "Shock #2" Ability { id: "8181", source: "Kokytos" } + +245.2 "--sync--" Ability { id: "8144", source: "Kokytos" } +246.6 "--sync--" Ability { id: "817E", source: "Kokytos" } +249.7 "Firemeld #3" Ability { id: "8180", source: "Kokytos" } +250.0 "Icemeld #3" Ability { id: "8191", source: "Kokytos's Echo" } +250.7 "Shock #3" Ability { id: "8181", source: "Kokytos" } + +250.7 "--sync--" Ability { id: "8144", source: "Kokytos" } +252.3 "--sync--" Ability { id: "817E", source: "Kokytos" } +255.4 "Firemeld #4" Ability { id: "8180", source: "Kokytos" } +255.8 "Icemeld #4" Ability { id: "8192", source: "Kokytos's Echo" } +256.5 "Shock #4" Ability { id: "8181", source: "Kokytos" } +256.5 "--middle--" Ability { id: "8144", source: "Kokytos" } 258.1 "--targetable--" -262.2 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8122|8123|815C):/ -265.1 "Two Minds" sync / 1[56]:[^:]*:Kokytos:(8184|8185):/ -266.2 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -266.2 "Pile Pyre/Thunder III" sync / 1[56]:[^:]*:Kokytos:(8156|8158|815A|815B):/ -272.2 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:814C:/ +262.2 "--sync--" Ability { id: ["8122", "8123", "815C"], source: "Kokytos" } +265.1 "Two Minds" Ability { id: ["8184", "8185"], source: "Kokytos" } +266.2 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +266.2 "Pile Pyre/Thunder III" Ability { id: ["8156", "8158", "815A", "815B"], source: "Kokytos" } +272.2 "Gluttony's Augur" Ability { id: "814C", source: "Kokytos" } -276.3 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8236:/ +276.3 "Disgorge" Ability { id: "8236", source: "Kokytos" } # Beast -284.7 "--middle--" sync / 1[56]:[^:]*:Kokytos:8144:/ -289.1 "Ravening (Beast)" sync / 1[56]:[^:]*:Kokytos:811A:/ -297.0 "Soul Surge" sync / 1[56]:[^:]*:Kokytos:811B:/ -302.6 "Charybdis" sync / 1[56]:[^:]*:Kokytos:8170:/ -309.7 "Comet" sync / 1[56]:[^:]*:Kokytos:8172:/ +284.7 "--middle--" Ability { id: "8144", source: "Kokytos" } +289.1 "Ravening (Beast)" Ability { id: "811A", source: "Kokytos" } +297.0 "Soul Surge" Ability { id: "811B", source: "Kokytos" } +302.6 "Charybdis" Ability { id: "8170", source: "Kokytos" } +309.7 "Comet" Ability { id: "8172", source: "Kokytos" } -318.7 "Beastly Bile (cast)" sync / 1[56]:[^:]*:Kokytos:8177:/ -323.8 "Thunderbolt #1" sync / 1[56]:[^:]*:Kokytos:8179:/ -325.7 "Beastly Bile #1" sync / 1[56]:[^:]*:Kokytos:8178:/ +318.7 "Beastly Bile (cast)" Ability { id: "8177", source: "Kokytos" } +323.8 "Thunderbolt #1" Ability { id: "8179", source: "Kokytos" } +325.7 "Beastly Bile #1" Ability { id: "8178", source: "Kokytos" } -329.9 "Thunderbolt #2" sync / 1[56]:[^:]*:Kokytos:8179:/ -331.7 "Beastly Bile #2" sync / 1[56]:[^:]*:Kokytos:8178:/ +329.9 "Thunderbolt #2" Ability { id: "8179", source: "Kokytos" } +331.7 "Beastly Bile #2" Ability { id: "8178", source: "Kokytos" } -332.5 "Burst #1" sync / 1[56]:[^:]*:Comet:8174:/ -338.5 "Burst #2" sync / 1[56]:[^:]*:Comet:8174:/ -341.3 "Ecliptic Meteor" sync / 1[56]:[^:]*:Kokytos:8175:/ -349.4 "Burst #3" sync / 1[56]:[^:]*:Comet:8174:/ -355.0 "Beastly Fury" sync / 1[56]:[^:]*:Kokytos:8186:/ +332.5 "Burst #1" Ability { id: "8174", source: "Comet" } +338.5 "Burst #2" Ability { id: "8174", source: "Comet" } +341.3 "Ecliptic Meteor" Ability { id: "8175", source: "Kokytos" } +349.4 "Burst #3" Ability { id: "8174", source: "Comet" } +355.0 "Beastly Fury" Ability { id: "8186", source: "Kokytos" } -357.2 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8126:/ +357.2 "Disgorge" Ability { id: "8126", source: "Kokytos" } # Chimera 2 -368.9 "--middle--" sync / 1[56]:[^:]*:Kokytos:8144:/ -374.2 "Ravening (Chimera #2)" sync / 1[56]:[^:]*:Kokytos:817B:/ -380.8 "Soul Surge" sync / 1[56]:[^:]*:Kokytos:811B:/ -393.7 "Duality of Death" sync / 1[56]:[^:]*:Kokytos:8151:/ -394.6 "Aero IV/Fire IV #1" #sync / 1[56]:[^:]*:Kokytos:(8152|8153):/ -396.4 "Aero IV/Fire IV #2" #sync / 1[56]:[^:]*:Kokytos:(8152|8153):/ - -402.9 "Archaic Rockbreaker (cast)" sync / 1[56]:[^:]*:Kokytos:815F:/ -404.5 "Shockwave" sync / 1[56]:[^:]*:Kokytos:8160:/ -405.8 "Archaic Rockbreaker (stacks)" sync / 1[56]:[^:]*:Kokytos:8162:/ -412.5 "Archaic Rockbreaker #1" sync / 1[56]:[^:]*:Kokytos:8161:/ -413.2 "Dualspell" sync / 1[56]:[^:]*:Kokytos:(8154|8155):/ -416.5 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8122|8123|815C):/ -418.5 "Archaic Rockbreaker #2" sync / 1[56]:[^:]*:Kokytos:8161:/ - -420.9 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -420.9 "Pile Pyre/Thunder III" sync / 1[56]:[^:]*:Kokytos:(8156|8158|815A|815B):/ -426.2 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:814C:/ +368.9 "--middle--" Ability { id: "8144", source: "Kokytos" } +374.2 "Ravening (Chimera #2)" Ability { id: "817B", source: "Kokytos" } +380.8 "Soul Surge" Ability { id: "811B", source: "Kokytos" } +393.7 "Duality of Death" Ability { id: "8151", source: "Kokytos" } +394.6 "Aero IV/Fire IV #1" #Ability { id: ["8152", "8153"], source: "Kokytos" } +396.4 "Aero IV/Fire IV #2" #Ability { id: ["8152", "8153"], source: "Kokytos" } + +402.9 "Archaic Rockbreaker (cast)" Ability { id: "815F", source: "Kokytos" } +404.5 "Shockwave" Ability { id: "8160", source: "Kokytos" } +405.8 "Archaic Rockbreaker (stacks)" Ability { id: "8162", source: "Kokytos" } +412.5 "Archaic Rockbreaker #1" Ability { id: "8161", source: "Kokytos" } +413.2 "Dualspell" Ability { id: ["8154", "8155"], source: "Kokytos" } +416.5 "--sync--" Ability { id: ["8122", "8123", "815C"], source: "Kokytos" } +418.5 "Archaic Rockbreaker #2" Ability { id: "8161", source: "Kokytos" } + +420.9 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +420.9 "Pile Pyre/Thunder III" Ability { id: ["8156", "8158", "815A", "815B"], source: "Kokytos" } +426.2 "Gluttony's Augur" Ability { id: "814C", source: "Kokytos" } # Limit Cut 2 -438.6 "Chimeric Succession" sync / 1[56]:[^:]*:Kokytos:81BB:/ -449.5 "Icemeld #1" sync / 1[56]:[^:]*:Kokytos's Echo:8183:/ -452.5 "Icemeld #2" sync / 1[56]:[^:]*:Kokytos's Echo:8190:/ -454.2 "Front Firestrikes/Rear Firestrikes" sync / 1[56]:[^:]*:Kokytos:(878E|878F):/ +438.6 "Chimeric Succession" Ability { id: "81BB", source: "Kokytos" } +449.5 "Icemeld #1" Ability { id: "8183", source: "Kokytos's Echo" } +452.5 "Icemeld #2" Ability { id: "8190", source: "Kokytos's Echo" } +454.2 "Front Firestrikes/Rear Firestrikes" Ability { id: ["878E", "878F"], source: "Kokytos" } -454.4 "Pyremeld" sync / 1[56]:[^:]*:Kokytos:(8793|8794):/ -455.8 "Icemeld #3" sync / 1[56]:[^:]*:Kokytos's Echo:8191:/ -458.6 "Icemeld #4" sync / 1[56]:[^:]*:Kokytos's Echo:8192:/ -459.7 "Swinging Kick" sync / 1[56]:[^:]*:Kokytos:(8795|8796):/ +454.4 "Pyremeld" Ability { id: ["8793", "8794"], source: "Kokytos" } +455.8 "Icemeld #3" Ability { id: "8191", source: "Kokytos's Echo" } +458.6 "Icemeld #4" Ability { id: "8192", source: "Kokytos's Echo" } +459.7 "Swinging Kick" Ability { id: ["8795", "8796"], source: "Kokytos" } -461.8 "--middle--" sync / 1[56]:[^:]*:Kokytos:8144:/ -467.4 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8122|8123|815C):/ -470.3 "Two Minds" sync / 1[56]:[^:]*:Kokytos:(8184|8185):/ -471.4 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -471.4 "Pile Pyre/Thunder III" sync / 1[56]:[^:]*:Kokytos:(8156|8158|815A|815B):/ +461.8 "--middle--" Ability { id: "8144", source: "Kokytos" } +467.4 "--sync--" Ability { id: ["8122", "8123", "815C"], source: "Kokytos" } +470.3 "Two Minds" Ability { id: ["8184", "8185"], source: "Kokytos" } +471.4 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +471.4 "Pile Pyre/Thunder III" Ability { id: ["8156", "8158", "815A", "815B"], source: "Kokytos" } -472.4 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8236:/ +472.4 "Disgorge" Ability { id: "8236", source: "Kokytos" } # Mage 2 -480.8 "--middle--" sync / 1[56]:[^:]*:Kokytos:8144:/ -486.1 "Ravening (Mage #2)" sync / 1[56]:[^:]*:Kokytos:8118:/ -492.7 "Soul Surge" sync / 1[56]:[^:]*:Kokytos:811B:/ +480.8 "--middle--" Ability { id: "8144", source: "Kokytos" } +486.1 "Ravening (Mage #2)" Ability { id: "8118", source: "Kokytos" } +492.7 "Soul Surge" Ability { id: "811B", source: "Kokytos" } -500.3 "Dualspell" sync / 1[56]:[^:]*:Kokytos:(8154|8155):/ -503.6 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8122|8123|815C):/ -508.2 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -508.2 "Pile Pyre/Thunder III" sync / 1[56]:[^:]*:Kokytos:(8156|8158|815A|815B):/ -513.5 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:814C:/ +500.3 "Dualspell" Ability { id: ["8154", "8155"], source: "Kokytos" } +503.6 "--sync--" Ability { id: ["8122", "8123", "815C"], source: "Kokytos" } +508.2 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +508.2 "Pile Pyre/Thunder III" Ability { id: ["8156", "8158", "815A", "815B"], source: "Kokytos" } +513.5 "Gluttony's Augur" Ability { id: "814C", source: "Kokytos" } -520.6 "Dualspell" sync / 1[56]:[^:]*:Kokytos:(8154|8155):/ -523.9 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8122|8123|815C):/ -528.5 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -528.5 "Pile Pyre/Thunder III" sync / 1[56]:[^:]*:Kokytos:(8156|8158|815A|815B):/ +520.6 "Dualspell" Ability { id: ["8154", "8155"], source: "Kokytos" } +523.9 "--sync--" Ability { id: ["8122", "8123", "815C"], source: "Kokytos" } +528.5 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +528.5 "Pile Pyre/Thunder III" Ability { id: ["8156", "8158", "815A", "815B"], source: "Kokytos" } -534.8 "Duality of Death" sync / 1[56]:[^:]*:Kokytos:8151:/ -535.7 "Aero IV/Fire IV #1" #sync / 1[56]:[^:]*:Kokytos:(8152|8153):/ -538.0 "Aero IV/Fire IV #2" #sync / 1[56]:[^:]*:Kokytos:(8152|8153):/ +534.8 "Duality of Death" Ability { id: "8151", source: "Kokytos" } +535.7 "Aero IV/Fire IV #1" #Ability { id: ["8152", "8153"], source: "Kokytos" } +538.0 "Aero IV/Fire IV #2" #Ability { id: ["8152", "8153"], source: "Kokytos" } -544.0 "Dualspell" sync / 1[56]:[^:]*:Kokytos:(8154|8155):/ -547.3 "--sync--" sync / 1[56]:[^:]*:Kokytos:(8122|8123|815C):/ -551.9 "Blizzard III" sync / 1[56]:[^:]*:Kokytos:(8157|8159):/ -551.9 "Pile Pyre/Thunder III" sync / 1[56]:[^:]*:Kokytos:(8156|8158|815A|815B):/ -557.1 "Gluttony's Augur" sync / 1[56]:[^:]*:Kokytos:814C:/ +544.0 "Dualspell" Ability { id: ["8154", "8155"], source: "Kokytos" } +547.3 "--sync--" Ability { id: ["8122", "8123", "815C"], source: "Kokytos" } +551.9 "Blizzard III" Ability { id: ["8157", "8159"], source: "Kokytos" } +551.9 "Pile Pyre/Thunder III" Ability { id: ["8156", "8158", "815A", "815B"], source: "Kokytos" } +557.1 "Gluttony's Augur" Ability { id: "814C", source: "Kokytos" } -564.7 "Disgorge" sync / 1[56]:[^:]*:Kokytos:8124:/ +564.7 "Disgorge" Ability { id: "8124", source: "Kokytos" } # Final sequence -573.1 "--middle--" sync / 1[56]:[^:]*:Kokytos:8144:/ -578.5 "Ravening (Final)" sync / 1[56]:[^:]*:Kokytos:817B:/ -585.1 "Soul Surge" sync / 1[56]:[^:]*:Kokytos:811B:/ +573.1 "--middle--" Ability { id: "8144", source: "Kokytos" } +578.5 "Ravening (Final)" Ability { id: "817B", source: "Kokytos" } +585.1 "Soul Surge" Ability { id: "811B", source: "Kokytos" } -597.7 "Disintegration (enrage)" sync / 1[56]:[^:]*:Kokytos:818A:/ +597.7 "Disintegration (enrage)" Ability { id: "818A", source: "Kokytos" } # Abilities diff --git a/ui/raidboss/data/06-ew/trial/barbariccia-ex.txt b/ui/raidboss/data/06-ew/trial/barbariccia-ex.txt index bd314dcd63..db4832a04b 100644 --- a/ui/raidboss/data/06-ew/trial/barbariccia-ex.txt +++ b/ui/raidboss/data/06-ew/trial/barbariccia-ex.txt @@ -6,238 +6,238 @@ hideall "--Reset--" hideall "--sync--" hideall "Brush with Death" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.1 "--sync--" sync / 14:[^:]*:Barbariccia:7570:/ window 11,10 -15.1 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:7570:/ -22.3 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.1 "--sync--" StartsUsing { id: "7570", source: "Barbariccia" } window 11,10 +15.1 "Void Aero IV" Ability { id: "7570", source: "Barbariccia" } +22.3 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } # Pattern 1a, linked with pattern 2a through 757A+7575 and 757A+757B # 6? Possible Spell Ids -25.7 "--sync--" sync / 14:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ window 10,10 -31.7 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ -32.7 "Savage Barbery (line/donut)" sync / 1[56]:[^:]*:Barbariccia:(7574|757A):/ -34.8 "Savage Barbery (out)" sync / 1[56]:[^:]*:Barbariccia:(7575|757B):/ -35.8 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A4:/ +25.7 "--sync--" StartsUsing { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } window 10,10 +31.7 "--sync--" Ability { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } +32.7 "Savage Barbery (line/donut)" Ability { id: ["7574", "757A"], source: "Barbariccia" } +34.8 "Savage Barbery (out)" Ability { id: ["7575", "757B"], source: "Barbariccia" } +35.8 "Brush with Death" Ability { id: "75A4", source: "Barbariccia" } # Pattern 1b, linked with Pattern 2b through 757C+757D and 757E+757F and also independently by 75A6 and 75A7 -44.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(757C|757E):/ -46.9 "Hair Raid" sync / 1[56]:[^:]*:Barbariccia:(757D|757F):/ -49.1 "Hair Spray/Deadly Twist" sync / 1[56]:[^:]*:Barbariccia:(75A6|75A7):/ +44.9 "--sync--" Ability { id: ["757C", "757E"], source: "Barbariccia" } +46.9 "Hair Raid" Ability { id: ["757D", "757F"], source: "Barbariccia" } +49.1 "Hair Spray/Deadly Twist" Ability { id: ["75A6", "75A7"], source: "Barbariccia" } -51.0 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +51.0 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } # Pattern 2a -54.4 "--sync--" sync / 14:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ window 10,10 -60.4 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ -61.4 "Savage Barbery (donut/line)" sync / 1[56]:[^:]*:Barbariccia:(757A|7574):/ -63.5 "Savage Barbery (out)" sync / 1[56]:[^:]*:Barbariccia:(757B|7575):/ -64.5 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A4:/ +54.4 "--sync--" StartsUsing { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } window 10,10 +60.4 "--sync--" Ability { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } +61.4 "Savage Barbery (donut/line)" Ability { id: ["757A", "7574"], source: "Barbariccia" } +63.5 "Savage Barbery (out)" Ability { id: ["757B", "7575"], source: "Barbariccia" } +64.5 "Brush with Death" Ability { id: "75A4", source: "Barbariccia" } # Pattern 2b -73.6 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(757E|757C):/ -75.6 "Hair Raid" sync / 1[56]:[^:]*:Barbariccia:(757F|757D):/ -77.9 "Deadly Twist/Hair Spray" sync / 1[56]:[^:]*:Barbariccia:(75A7|75A6):/ +73.6 "--sync--" Ability { id: ["757E", "757C"], source: "Barbariccia" } +75.6 "Hair Raid" Ability { id: ["757F", "757D"], source: "Barbariccia" } +77.9 "Deadly Twist/Hair Spray" Ability { id: ["75A7", "75A6"], source: "Barbariccia" } -85.8 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:7570:/ -92.9 "Void Aero III" sync / 1[56]:[^:]*:Barbariccia:7571:/ -100.1 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +85.8 "Void Aero IV" Ability { id: "7570", source: "Barbariccia" } +92.9 "Void Aero III" Ability { id: "7571", source: "Barbariccia" } +100.1 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } # Teasing Tangles 1 -107.2 "Teasing Tangles" sync / 1[56]:[^:]*:Barbariccia:75A9:/ -108.0 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -109.5 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AC:/ -110.3 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A3:/ -119.1 "Upbraid" sync / 1[56]:[^:]*:Barbariccia:75A8:/ -119.6 "Secret Breeze (ground)" #sync / 1[56]:[^:]*:Barbariccia:7415:/ -121.6 "Secret Breeze (protean)" #sync / 1[56]:[^:]*:Barbariccia:7581:/ -130.7 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:7570:/ -137.9 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +107.2 "Teasing Tangles" Ability { id: "75A9", source: "Barbariccia" } +108.0 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +109.5 "--sync--" Ability { id: "75AC", source: "Barbariccia" } +110.3 "Brush with Death" Ability { id: "75A3", source: "Barbariccia" } +119.1 "Upbraid" Ability { id: "75A8", source: "Barbariccia" } +119.6 "Secret Breeze (ground)" #Ability { id: "7415", source: "Barbariccia" } +121.6 "Secret Breeze (protean)" #Ability { id: "7581", source: "Barbariccia" } +130.7 "Void Aero IV" Ability { id: "7570", source: "Barbariccia" } +137.9 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } # Transition 1 - First Curling Iron -146.3 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75B2:/ -152.0 "Voidstrom" duration 2 #sync / 1[56]:[^:]*:Barbariccia:7577:/ -154.5 "Curling Iron" sync / 1[56]:[^:]*:Barbariccia:75B3:/ -156.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75B4:/ +146.3 "--sync--" Ability { id: "75B2", source: "Barbariccia" } +152.0 "Voidstrom" duration 2 #Ability { id: "7577", source: "Barbariccia" } +154.5 "Curling Iron" Ability { id: "75B3", source: "Barbariccia" } +156.9 "--sync--" Ability { id: "75B4", source: "Barbariccia" } 160.6 "--untargetable--" -163.7 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7488:/ -171.7 "Catabasis" sync / 1[56]:[^:]*:Barbariccia:7576:/ +163.7 "--sync--" Ability { id: "7488", source: "Barbariccia" } +171.7 "Catabasis" Ability { id: "7576", source: "Barbariccia" } ### Phase 2 171.8 "--targetable--" -175.9 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -177.7 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -179.4 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -181.2 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:7584:/ -190.1 "Winding Gale" sync / 1[56]:[^:]*:Barbariccia:7486:/ -190.9 "Boulder Break" sync / 1[56]:[^:]*:Barbariccia:7383:/ -192.7 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A5:/ -203.8 "Brittle Boulder" sync / 1[56]:[^:]*:Barbariccia:759E:/ -204.6 "Winding Gale" sync / 1[56]:[^:]*:Barbariccia:7486:/ -204.8 "Boulder" sync / 1[56]:[^:]*:Barbariccia:759D:/ -208.4 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758C:/ -210.9 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758D:/ -212.0 "Upbraid" sync / 1[56]:[^:]*:Barbariccia:75A8:/ -214.9 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -216.5 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -218.3 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -219.9 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:7584:/ -222.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7597:/ -225.2 "Knuckle Drum" duration 7.5 #sync / 1[56]:[^:]*:Barbariccia:7598:/ -232.7 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7599:/ -234.8 "Blow Away" sync / 1[56]:[^:]*:Barbariccia:7595:/ -238.5 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -240.1 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -241.7 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -243.3 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:7584:/ -244.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:759A:/ -250.1 "Impact" sync / 1[56]:[^:]*:Barbariccia:759F:/ -252.9 "Bold Boulder" sync / 1[56]:[^:]*:Barbariccia:759B:/ -253.3 "Trample" sync / 1[56]:[^:]*:Barbariccia:75A2:/ -259.1 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -260.7 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -262.3 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -264.0 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:7584:/ +175.9 "Brutal Rush 1" #Ability { id: "7583", source: "Barbariccia" } +177.7 "Brutal Rush 2" #Ability { id: "7583", source: "Barbariccia" } +179.4 "Brutal Rush 3" #Ability { id: "7583", source: "Barbariccia" } +181.2 "Brutal Rush 4" Ability { id: "7584", source: "Barbariccia" } +190.1 "Winding Gale" Ability { id: "7486", source: "Barbariccia" } +190.9 "Boulder Break" Ability { id: "7383", source: "Barbariccia" } +192.7 "Brush with Death" Ability { id: "75A5", source: "Barbariccia" } +203.8 "Brittle Boulder" Ability { id: "759E", source: "Barbariccia" } +204.6 "Winding Gale" Ability { id: "7486", source: "Barbariccia" } +204.8 "Boulder" Ability { id: "759D", source: "Barbariccia" } +208.4 "Tornado Chain (out)" Ability { id: "758C", source: "Barbariccia" } +210.9 "Tornado Chain (in)" Ability { id: "758D", source: "Barbariccia" } +212.0 "Upbraid" Ability { id: "75A8", source: "Barbariccia" } +214.9 "Brutal Rush 1" #Ability { id: "7583", source: "Barbariccia" } +216.5 "Brutal Rush 2" #Ability { id: "7583", source: "Barbariccia" } +218.3 "Brutal Rush 3" #Ability { id: "7583", source: "Barbariccia" } +219.9 "Brutal Rush 4" Ability { id: "7584", source: "Barbariccia" } +222.9 "--sync--" Ability { id: "7597", source: "Barbariccia" } +225.2 "Knuckle Drum" duration 7.5 #Ability { id: "7598", source: "Barbariccia" } +232.7 "--sync--" Ability { id: "7599", source: "Barbariccia" } +234.8 "Blow Away" Ability { id: "7595", source: "Barbariccia" } +238.5 "Brutal Rush 1" #Ability { id: "7583", source: "Barbariccia" } +240.1 "Brutal Rush 2" #Ability { id: "7583", source: "Barbariccia" } +241.7 "Brutal Rush 3" #Ability { id: "7583", source: "Barbariccia" } +243.3 "Brutal Rush 4" Ability { id: "7584", source: "Barbariccia" } +244.9 "--sync--" Ability { id: "759A", source: "Barbariccia" } +250.1 "Impact" Ability { id: "759F", source: "Barbariccia" } +252.9 "Bold Boulder" Ability { id: "759B", source: "Barbariccia" } +253.3 "Trample" Ability { id: "75A2", source: "Barbariccia" } +259.1 "Brutal Rush 1" #Ability { id: "7583", source: "Barbariccia" } +260.7 "Brutal Rush 2" #Ability { id: "7583", source: "Barbariccia" } +262.3 "Brutal Rush 3" #Ability { id: "7583", source: "Barbariccia" } +264.0 "Brutal Rush 4" Ability { id: "7584", source: "Barbariccia" } # Teasing Tangles 2 -266.7 "Teasing Tangles" sync / 1[56]:[^:]*:Barbariccia:75AA:/ -267.5 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -269.0 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AC:/ -270.8 "Blustery Ruler" sync / 1[56]:[^:]*:Barbariccia:7591:/ -278.0 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A5:/ -279.1 "Dry Blows" duration 8.2 #sync / 1[56]:[^:]*:Barbariccia:7594:/ -285.7 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758C:/ -288.1 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758D:/ -290.0 "Upbraid" sync / 1[56]:[^:]*:Barbariccia:75A8:/ -291.0 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7597:/ -293.3 "Knuckle Drum" duration 7.5 #sync / 1[56]:[^:]*:Barbariccia:7598:/ -300.8 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7599:/ +266.7 "Teasing Tangles" Ability { id: "75AA", source: "Barbariccia" } +267.5 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +269.0 "--sync--" Ability { id: "75AC", source: "Barbariccia" } +270.8 "Blustery Ruler" Ability { id: "7591", source: "Barbariccia" } +278.0 "Brush with Death" Ability { id: "75A5", source: "Barbariccia" } +279.1 "Dry Blows" duration 8.2 #Ability { id: "7594", source: "Barbariccia" } +285.7 "Tornado Chain (out)" Ability { id: "758C", source: "Barbariccia" } +288.1 "Tornado Chain (in)" Ability { id: "758D", source: "Barbariccia" } +290.0 "Upbraid" Ability { id: "75A8", source: "Barbariccia" } +291.0 "--sync--" Ability { id: "7597", source: "Barbariccia" } +293.3 "Knuckle Drum" duration 7.5 #Ability { id: "7598", source: "Barbariccia" } +300.8 "--sync--" Ability { id: "7599", source: "Barbariccia" } # Transition 2 -304.2 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75B5:/ -309.4 "Voidstrom" duration 2 #sync / 1[56]:[^:]*:Barbariccia:7577:/ -312.4 "Iron Out" sync / 1[56]:[^:]*:Barbariccia:7455:/ -318.5 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +304.2 "--sync--" Ability { id: "75B5", source: "Barbariccia" } +309.4 "Voidstrom" duration 2 #Ability { id: "7577", source: "Barbariccia" } +312.4 "Iron Out" Ability { id: "7455", source: "Barbariccia" } +318.5 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } # Playstation 1 -325.6 "Entanglement" sync / 1[56]:[^:]*:Barbariccia:75AD:/ -326.4 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -327.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AF:/ -335.1 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7580:/ -336.1 "Secret Breeze (ground)" #sync / 1[56]:[^:]*:Barbariccia:7415:/ -338.2 "Secret Breeze (protean)" #sync / 1[56]:[^:]*:Barbariccia:7581:/ +325.6 "Entanglement" Ability { id: "75AD", source: "Barbariccia" } +326.4 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +327.9 "--sync--" Ability { id: "75AF", source: "Barbariccia" } +335.1 "--sync--" Ability { id: "7580", source: "Barbariccia" } +336.1 "Secret Breeze (ground)" #Ability { id: "7415", source: "Barbariccia" } +338.2 "Secret Breeze (protean)" #Ability { id: "7581", source: "Barbariccia" } # Pattern 3a, linked with pattern 4a through 757A+7575 and 757A+757B -341.4 "--sync--" sync / 14:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ window 10,10 -347.4 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ -348.4 "Savage Barbery (line/donut)" sync / 1[56]:[^:]*:Barbariccia:(7574|757A):/ -350.5 "Savage Barbery (out)" sync / 1[56]:[^:]*:Barbariccia:(7575|757B):/ +341.4 "--sync--" StartsUsing { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } window 10,10 +347.4 "--sync--" Ability { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } +348.4 "Savage Barbery (line/donut)" Ability { id: ["7574", "757A"], source: "Barbariccia" } +350.5 "Savage Barbery (out)" Ability { id: ["7575", "757B"], source: "Barbariccia" } -351.5 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A4:/ +351.5 "Brush with Death" Ability { id: "75A4", source: "Barbariccia" } # Pattern 3b, linked with Pattern 4b through 757C+757D and 757E+757F and also independently by 75A6 and 75A7 -360.6 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(757C|757E):/ -362.6 "Hair Raid" sync / 1[56]:[^:]*:Barbariccia:(757D|757F):/ -364.9 "Deadly Twist/Hair Spray" sync / 1[56]:[^:]*:Barbariccia:(75A7|75A6):/ +360.6 "--sync--" Ability { id: ["757C", "757E"], source: "Barbariccia" } +362.6 "Hair Raid" Ability { id: ["757D", "757F"], source: "Barbariccia" } +364.9 "Deadly Twist/Hair Spray" Ability { id: ["75A7", "75A6"], source: "Barbariccia" } -373.8 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:7570:/ -380.9 "Void Aero III" sync / 1[56]:[^:]*:Barbariccia:7571:/ -388.1 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +373.8 "Void Aero IV" Ability { id: "7570", source: "Barbariccia" } +380.9 "Void Aero III" Ability { id: "7571", source: "Barbariccia" } +388.1 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } # Playstation 2 -395.2 "Entanglement" sync / 1[56]:[^:]*:Barbariccia:75AD:/ -396.0 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -397.5 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AF:/ -400.4 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A3:/ -409.2 "Upbraid" sync / 1[56]:[^:]*:Barbariccia:75A8:/ +395.2 "Entanglement" Ability { id: "75AD", source: "Barbariccia" } +396.0 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +397.5 "--sync--" Ability { id: "75AF", source: "Barbariccia" } +400.4 "Brush with Death" Ability { id: "75A3", source: "Barbariccia" } +409.2 "Upbraid" Ability { id: "75A8", source: "Barbariccia" } # Pattern 4a -410.7 "--sync--" sync / 14:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ window 10,10 -416.7 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ -417.7 "Savage Barbery (donut/line)" sync / 1[56]:[^:]*:Barbariccia:(757A|7574):/ -419.8 "Savage Barbery (out)" sync / 1[56]:[^:]*:Barbariccia:(757B|7575):/ +410.7 "--sync--" StartsUsing { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } window 10,10 +416.7 "--sync--" Ability { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } +417.7 "Savage Barbery (donut/line)" Ability { id: ["757A", "7574"], source: "Barbariccia" } +419.8 "Savage Barbery (out)" Ability { id: ["757B", "7575"], source: "Barbariccia" } # Pattern 4b -426.8 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(757C|757E):/ -428.8 "Hair Raid" sync / 1[56]:[^:]*:Barbariccia:(757D|757F):/ -430.7 "Hair Spray/Deadly Twist" sync / 1[56]:[^:]*:Barbariccia:(75A6|75A7):/ +426.8 "--sync--" Ability { id: ["757C", "757E"], source: "Barbariccia" } +428.8 "Hair Raid" Ability { id: ["757D", "757F"], source: "Barbariccia" } +430.7 "Hair Spray/Deadly Twist" Ability { id: ["75A6", "75A7"], source: "Barbariccia" } -439.9 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:7570:/ -447.1 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +439.9 "Void Aero IV" Ability { id: "7570", source: "Barbariccia" } +447.1 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } # Transition 3 - Second Curling Iron -455.4 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75B2:/ -460.7 "Voidstrom" duration 2 #sync / 1[56]:[^:]*:Barbariccia:7577:/ -463.7 "Curling Iron" sync / 1[56]:[^:]*:Barbariccia:75B3:/ - -468.8 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -470.6 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -472.3 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -474.1 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:7584:/ -477.1 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7597:/ -479.4 "Knuckle Drum" duration 7.5 #sync / 1[56]:[^:]*:Barbariccia:7598:/ -486.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7599:/ -489.0 "Blow Away" sync / 1[56]:[^:]*:Barbariccia:7595:/ -500.5 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -502.1 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -503.1 "Brittle Boulder" sync / 1[56]:[^:]*:Barbariccia:759E:/ -503.7 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -504.1 "Boulder" sync / 1[56]:[^:]*:Barbariccia:759D:/ -505.4 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:7584:/ -509.2 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A5:/ -513.1 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758C:/ -515.6 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758D:/ -518.5 "Impact" sync / 1[56]:[^:]*:Barbariccia:759F:/ -521.0 "Hair Spray" sync / 1[56]:[^:]*:Barbariccia:75A6:/ -522.8 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -524.4 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -526.2 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:7583:/ -527.9 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:7584:/ -530.6 "Blustery Ruler" sync / 1[56]:[^:]*:Barbariccia:7591:/ -538.9 "Dry Blows" duration 8.2 #sync / 1[56]:[^:]*:Barbariccia:7594:/ -543.6 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758C:/ -546.2 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758D:/ -548.8 "Boulder Break" sync / 1[56]:[^:]*:Barbariccia:7383:/ -554.2 "Winding Gale" sync / 1[56]:[^:]*:Barbariccia:7486:/ -561.9 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758C:/ -564.4 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758D:/ -569.2 "Winding Gale" sync / 1[56]:[^:]*:Barbariccia:7486:/ -572.0 "Trample" sync / 1[56]:[^:]*:Barbariccia:75A2:/ -572.9 "Bold Boulder" sync / 1[56]:[^:]*:Barbariccia:759B:/ -576.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7597:/ -579.2 "Knuckle Drum" duration 7.5 #sync / 1[56]:[^:]*:Barbariccia:7598:/ -586.7 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7599:/ +455.4 "--sync--" Ability { id: "75B2", source: "Barbariccia" } +460.7 "Voidstrom" duration 2 #Ability { id: "7577", source: "Barbariccia" } +463.7 "Curling Iron" Ability { id: "75B3", source: "Barbariccia" } + +468.8 "Brutal Rush 1" #Ability { id: "7583", source: "Barbariccia" } +470.6 "Brutal Rush 2" #Ability { id: "7583", source: "Barbariccia" } +472.3 "Brutal Rush 3" #Ability { id: "7583", source: "Barbariccia" } +474.1 "Brutal Rush 4" Ability { id: "7584", source: "Barbariccia" } +477.1 "--sync--" Ability { id: "7597", source: "Barbariccia" } +479.4 "Knuckle Drum" duration 7.5 #Ability { id: "7598", source: "Barbariccia" } +486.9 "--sync--" Ability { id: "7599", source: "Barbariccia" } +489.0 "Blow Away" Ability { id: "7595", source: "Barbariccia" } +500.5 "Brutal Rush 1" #Ability { id: "7583", source: "Barbariccia" } +502.1 "Brutal Rush 2" #Ability { id: "7583", source: "Barbariccia" } +503.1 "Brittle Boulder" Ability { id: "759E", source: "Barbariccia" } +503.7 "Brutal Rush 3" #Ability { id: "7583", source: "Barbariccia" } +504.1 "Boulder" Ability { id: "759D", source: "Barbariccia" } +505.4 "Brutal Rush 4" Ability { id: "7584", source: "Barbariccia" } +509.2 "Brush with Death" Ability { id: "75A5", source: "Barbariccia" } +513.1 "Tornado Chain (out)" Ability { id: "758C", source: "Barbariccia" } +515.6 "Tornado Chain (in)" Ability { id: "758D", source: "Barbariccia" } +518.5 "Impact" Ability { id: "759F", source: "Barbariccia" } +521.0 "Hair Spray" Ability { id: "75A6", source: "Barbariccia" } +522.8 "Brutal Rush 1" #Ability { id: "7583", source: "Barbariccia" } +524.4 "Brutal Rush 2" #Ability { id: "7583", source: "Barbariccia" } +526.2 "Brutal Rush 3" #Ability { id: "7583", source: "Barbariccia" } +527.9 "Brutal Rush 4" Ability { id: "7584", source: "Barbariccia" } +530.6 "Blustery Ruler" Ability { id: "7591", source: "Barbariccia" } +538.9 "Dry Blows" duration 8.2 #Ability { id: "7594", source: "Barbariccia" } +543.6 "Tornado Chain (out)" Ability { id: "758C", source: "Barbariccia" } +546.2 "Tornado Chain (in)" Ability { id: "758D", source: "Barbariccia" } +548.8 "Boulder Break" Ability { id: "7383", source: "Barbariccia" } +554.2 "Winding Gale" Ability { id: "7486", source: "Barbariccia" } +561.9 "Tornado Chain (out)" Ability { id: "758C", source: "Barbariccia" } +564.4 "Tornado Chain (in)" Ability { id: "758D", source: "Barbariccia" } +569.2 "Winding Gale" Ability { id: "7486", source: "Barbariccia" } +572.0 "Trample" Ability { id: "75A2", source: "Barbariccia" } +572.9 "Bold Boulder" Ability { id: "759B", source: "Barbariccia" } +576.9 "--sync--" Ability { id: "7597", source: "Barbariccia" } +579.2 "Knuckle Drum" duration 7.5 #Ability { id: "7598", source: "Barbariccia" } +586.7 "--sync--" Ability { id: "7599", source: "Barbariccia" } # Transition 4 -589.0 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75B5:/ -594.2 "Voidstrom" duration 2 #sync / 1[56]:[^:]*:Barbariccia:7577:/ -597.2 "Iron Out" sync / 1[56]:[^:]*:Barbariccia:7455:/ -603.3 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +589.0 "--sync--" Ability { id: "75B5", source: "Barbariccia" } +594.2 "Voidstrom" duration 2 #Ability { id: "7577", source: "Barbariccia" } +597.2 "Iron Out" Ability { id: "7455", source: "Barbariccia" } +603.3 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } # Playstation 3 -610.4 "Entanglement" sync / 1[56]:[^:]*:Barbariccia:75AD:/ -611.2 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -612.7 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AF:/ -619.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7580:/ -620.9 "Secret Breeze (ground)" #sync / 1[56]:[^:]*:Barbariccia:7415:/ -622.9 "Secret Breeze (protean)" #sync / 1[56]:[^:]*:Barbariccia:7581:/ +610.4 "Entanglement" Ability { id: "75AD", source: "Barbariccia" } +611.2 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +612.7 "--sync--" Ability { id: "75AF", source: "Barbariccia" } +619.9 "--sync--" Ability { id: "7580", source: "Barbariccia" } +620.9 "Secret Breeze (ground)" #Ability { id: "7415", source: "Barbariccia" } +622.9 "Secret Breeze (protean)" #Ability { id: "7581", source: "Barbariccia" } # Pattern 5a -626.2 "--sync--" sync / 14:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ window 10,10 -632.2 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(7573|7464|7465|7466|7489|748B):/ -633.2 "Savage Barbery (line/donut)" sync / 1[56]:[^:]*:Barbariccia:(7574|757A):/ -635.3 "Savage Barbery (out)" sync / 1[56]:[^:]*:Barbariccia:(7575|757B):/ +626.2 "--sync--" StartsUsing { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } window 10,10 +632.2 "--sync--" Ability { id: ["7573", "7464", "7465", "7466", "7489", "748B"], source: "Barbariccia" } +633.2 "Savage Barbery (line/donut)" Ability { id: ["7574", "757A"], source: "Barbariccia" } +635.3 "Savage Barbery (out)" Ability { id: ["7575", "757B"], source: "Barbariccia" } -636.3 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A4:/ +636.3 "Brush with Death" Ability { id: "75A4", source: "Barbariccia" } # Pattern 5b -645.4 "--sync--" sync / 1[56]:[^:]*:Barbariccia:(757C|757E):/ -647.4 "Hair Raid" sync / 1[56]:[^:]*:Barbariccia:(757D|757F):/ -649.7 "Hair Spray/Deadly Twist" sync / 1[56]:[^:]*:Barbariccia:(75A6|75A7):/ +645.4 "--sync--" Ability { id: ["757C", "757E"], source: "Barbariccia" } +647.4 "Hair Raid" Ability { id: ["757D", "757F"], source: "Barbariccia" } +649.7 "Hair Spray/Deadly Twist" Ability { id: ["75A6", "75A7"], source: "Barbariccia" } -658.6 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:7570:/ -660.7 "Raging Storm" sync / 1[56]:[^:]*:Barbariccia:7572:/ +658.6 "Void Aero IV" Ability { id: "7570", source: "Barbariccia" } +660.7 "Raging Storm" Ability { id: "7572", source: "Barbariccia" } -664.0 "--sync--" sync / 14:[^:]*:Barbariccia:75BE:/ window 700,10 -673.0 "Maelstrom (enrage)" sync / 1[56]:[^:]*:Barbariccia:75BE:/ +664.0 "--sync--" StartsUsing { id: "75BE", source: "Barbariccia" } window 700,10 +673.0 "Maelstrom (enrage)" Ability { id: "75BE", source: "Barbariccia" } diff --git a/ui/raidboss/data/06-ew/trial/barbariccia.txt b/ui/raidboss/data/06-ew/trial/barbariccia.txt index e07a2f9f79..b32403a6e7 100644 --- a/ui/raidboss/data/06-ew/trial/barbariccia.txt +++ b/ui/raidboss/data/06-ew/trial/barbariccia.txt @@ -7,168 +7,168 @@ hideall "--Reset--" hideall "--sync--" hideall "Brush with Death" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 # Intro -15.1 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:75B6:/ window 16,10 -22.3 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7381:/ -34.6 "Savage Barbery" sync / 1[56]:[^:]*:Barbariccia:75C1:/ window 10,10 -41.6 "Hair Raid" sync / 1[56]:[^:]*:Barbariccia:75C2:/ -50.8 "Void Aero III" sync / 1[56]:[^:]*:Barbariccia:75B7:/ -56.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7381:/ -67.3 "Savage Barbery" sync / 1[56]:[^:]*:Barbariccia:75BA:/ -76.4 "Hair Raid" sync / 1[56]:[^:]*:Barbariccia:75C2:/ -88.6 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:75B6:/ -95.8 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7381:/ -101.4 "Teasing Tangles" sync / 1[56]:[^:]*:Barbariccia:75DE:/ -102.2 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -103.7 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AC:/ -111.5 "Secret Breeze" sync / 1[56]:[^:]*:Barbariccia:75C4:/ window 10,10 -114.5 "Secret Breeze" sync / 1[56]:[^:]*:Barbariccia:75C5:/ -118.7 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A3:/ window 10,10 -124.5 "Deadly Twist" sync / 1[56]:[^:]*:Barbariccia:75DC:/ -129.8 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7381:/ -142.0 "Savage Barbery" sync / 1[56]:[^:]*:Barbariccia:75C1:/ -143.1 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A4:/ -152.2 "Hair Raid" sync / 1[56]:[^:]*:Barbariccia:75C2:/ -160.0 "Hair Spray" sync / 1[56]:[^:]*:Barbariccia:75DB:/ -168.5 "Void Aero IV" sync / 1[56]:[^:]*:Barbariccia:75B6:/ -175.6 "Void Aero III" sync / 1[56]:[^:]*:Barbariccia:75B7:/ -182.7 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7381:/ -188.5 "Teasing Tangles" sync / 1[56]:[^:]*:Barbariccia:75DE:/ -189.3 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -190.8 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AC:/ -198.6 "Secret Breeze" sync / 1[56]:[^:]*:Barbariccia:75C4:/ window 10,10 -199.6 "Secret Breeze" sync / 1[56]:[^:]*:Barbariccia:75C5:/ -205.7 "Void Aero" sync / 1[56]:[^:]*:Barbariccia:746A:/ -208.8 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7380:/ -210.5 "Void Aero" sync / 1[56]:[^:]*:Barbariccia:746B:/ -212.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7381:/ +15.1 "Void Aero IV" Ability { id: "75B6", source: "Barbariccia" } window 16,10 +22.3 "--sync--" Ability { id: "7381", source: "Barbariccia" } +34.6 "Savage Barbery" Ability { id: "75C1", source: "Barbariccia" } window 10,10 +41.6 "Hair Raid" Ability { id: "75C2", source: "Barbariccia" } +50.8 "Void Aero III" Ability { id: "75B7", source: "Barbariccia" } +56.9 "--sync--" Ability { id: "7381", source: "Barbariccia" } +67.3 "Savage Barbery" Ability { id: "75BA", source: "Barbariccia" } +76.4 "Hair Raid" Ability { id: "75C2", source: "Barbariccia" } +88.6 "Void Aero IV" Ability { id: "75B6", source: "Barbariccia" } +95.8 "--sync--" Ability { id: "7381", source: "Barbariccia" } +101.4 "Teasing Tangles" Ability { id: "75DE", source: "Barbariccia" } +102.2 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +103.7 "--sync--" Ability { id: "75AC", source: "Barbariccia" } +111.5 "Secret Breeze" Ability { id: "75C4", source: "Barbariccia" } window 10,10 +114.5 "Secret Breeze" Ability { id: "75C5", source: "Barbariccia" } +118.7 "Brush with Death" Ability { id: "75A3", source: "Barbariccia" } window 10,10 +124.5 "Deadly Twist" Ability { id: "75DC", source: "Barbariccia" } +129.8 "--sync--" Ability { id: "7381", source: "Barbariccia" } +142.0 "Savage Barbery" Ability { id: "75C1", source: "Barbariccia" } +143.1 "Brush with Death" Ability { id: "75A4", source: "Barbariccia" } +152.2 "Hair Raid" Ability { id: "75C2", source: "Barbariccia" } +160.0 "Hair Spray" Ability { id: "75DB", source: "Barbariccia" } +168.5 "Void Aero IV" Ability { id: "75B6", source: "Barbariccia" } +175.6 "Void Aero III" Ability { id: "75B7", source: "Barbariccia" } +182.7 "--sync--" Ability { id: "7381", source: "Barbariccia" } +188.5 "Teasing Tangles" Ability { id: "75DE", source: "Barbariccia" } +189.3 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +190.8 "--sync--" Ability { id: "75AC", source: "Barbariccia" } +198.6 "Secret Breeze" Ability { id: "75C4", source: "Barbariccia" } window 10,10 +199.6 "Secret Breeze" Ability { id: "75C5", source: "Barbariccia" } +205.7 "Void Aero" Ability { id: "746A", source: "Barbariccia" } +208.8 "--sync--" Ability { id: "7380", source: "Barbariccia" } +210.5 "Void Aero" Ability { id: "746B", source: "Barbariccia" } +212.9 "--sync--" Ability { id: "7381", source: "Barbariccia" } # Phase Change -219.5 "Curling Iron" sync / 1[56]:[^:]*:Barbariccia:75B2:/ -225.3 "Voidstrom" sync / 1[56]:[^:]*:Barbariccia:75BD:/ window 10,10 duration 2 -230.3 "Catabasis" sync / 1[56]:[^:]*:Barbariccia:75E3:/ -262.4 "Brutal Rush 1" sync / 1[56]:[^:]*:Barbariccia:75C6:/ window 5,5 -264.0 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -265.7 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -267.3 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ window 20,20 -270.1 "Winding Gale" sync / 1[56]:[^:]*:Barbariccia:75CA:/ -273.6 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A5:/ -289.5 "Deadly Twist" sync / 1[56]:[^:]*:Barbariccia:75DC:/ -295.6 "Boulder Break" sync / 1[56]:[^:]*:Barbariccia:73CF:/ -295.7 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ +219.5 "Curling Iron" Ability { id: "75B2", source: "Barbariccia" } +225.3 "Voidstrom" Ability { id: "75BD", source: "Barbariccia" } window 10,10 duration 2 +230.3 "Catabasis" Ability { id: "75E3", source: "Barbariccia" } +262.4 "Brutal Rush 1" Ability { id: "75C6", source: "Barbariccia" } window 5,5 +264.0 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +265.7 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +267.3 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } window 20,20 +270.1 "Winding Gale" Ability { id: "75CA", source: "Barbariccia" } +273.6 "Brush with Death" Ability { id: "75A5", source: "Barbariccia" } +289.5 "Deadly Twist" Ability { id: "75DC", source: "Barbariccia" } +295.6 "Boulder Break" Ability { id: "73CF", source: "Barbariccia" } +295.7 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } # Loop every other trample? -317.8 "Trample" sync / 1[56]:[^:]*:Barbariccia:75DA:/ -317.9 "Bold Boulder" sync / 1[56]:[^:]*:Barbariccia:75D6:/ -320.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -322.0 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A5:/ -325.1 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758E:/ -327.7 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758F:/ -331.3 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -332.8 "Hair Spray" sync / 1[56]:[^:]*:Barbariccia:75DB:/ -344.7 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -346.3 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -348.0 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -349.7 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -351.3 "Blow Away" sync / 1[56]:[^:]*:Barbariccia:7595:/ -354.9 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -356.5 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -358.1 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -359.8 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -361.4 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -362.5 "Teasing Tangles" sync / 1[56]:[^:]*:Barbariccia:75DF:/ -363.3 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -364.8 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AC:/ -368.1 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758E:/ -370.7 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758F:/ -375.3 "Touchdown" sync / 1[56]:[^:]*:Barbariccia:746D:/ -377.4 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -383.5 "Boulder Break" sync / 1[56]:[^:]*:Barbariccia:73CF:/ -383.6 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -396.8 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -398.6 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -400.2 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -401.9 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -404.3 "Impact" sync / 1[56]:[^:]*:Barbariccia:75D8:/ -406.7 "Dry Blows" sync / 1[56]:[^:]*:Barbariccia:7593:/ -412.5 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -414.2 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -416.0 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -417.6 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -420.2 "Teasing Tangles" sync / 1[56]:[^:]*:Barbariccia:75DF:/ -421.0 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -422.5 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AC:/ -423.3 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -428.0 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -440.1 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758E:/ -442.7 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758F:/ -446.3 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -459.7 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -461.3 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -462.9 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -464.6 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -467.4 "Winding Gale" sync / 1[56]:[^:]*:Barbariccia:75CA:/ -470.9 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A5:/ -486.8 "Deadly Twist" sync / 1[56]:[^:]*:Barbariccia:75DC:/ -492.9 "Boulder Break" sync / 1[56]:[^:]*:Barbariccia:73CF:/ -493.0 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -515.1 "Trample" sync / 1[56]:[^:]*:Barbariccia:75DA:/ -515.2 "Bold Boulder" sync / 1[56]:[^:]*:Barbariccia:75D6:/ -518.2 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -519.3 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A5:/ -522.4 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758E:/ -525.0 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758F:/ -528.6 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -530.1 "Hair Spray" sync / 1[56]:[^:]*:Barbariccia:75DB:/ -542.0 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -543.6 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -545.4 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -547.2 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -548.8 "Blow Away" sync / 1[56]:[^:]*:Barbariccia:7595:/ -552.5 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -554.3 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -556.0 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -557.6 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -559.2 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -560.3 "Teasing Tangles" sync / 1[56]:[^:]*:Barbariccia:75DF:/ -561.1 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -562.6 "--sync--" sync / 1[56]:[^:]*:Barbariccia:75AC:/ -565.9 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758E:/ -568.5 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758F:/ -571.6 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7380:/ -573.1 "Touchdown" sync / 1[56]:[^:]*:Barbariccia:746D:/ -575.3 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -581.4 "Boulder Break" sync / 1[56]:[^:]*:Barbariccia:73CF:/ -581.5 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -594.7 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -596.4 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -598.0 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -599.6 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -602.1 "Impact" sync / 1[56]:[^:]*:Barbariccia:75D8:/ -604.3 "Dry Blows" sync / 1[56]:[^:]*:Barbariccia:7593:/ -609.9 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -611.6 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -613.4 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -615.2 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -617.8 "Teasing Tangles" sync / 1[56]:[^:]*:Barbariccia:75DF:/ -618.6 "Fetters" sync / 1[56]:[^:]*:Barbariccia:75B0:/ -620.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -625.6 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -637.7 "Tornado Chain (out)" sync / 1[56]:[^:]*:Barbariccia:758E:/ -640.3 "Tornado Chain (in)" sync / 1[56]:[^:]*:Barbariccia:758F:/ -643.9 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -657.3 "Brutal Rush 1" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -659.0 "Brutal Rush 2" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -660.6 "Brutal Rush 3" #sync / 1[56]:[^:]*:Barbariccia:75C6:/ -662.3 "Brutal Rush 4" sync / 1[56]:[^:]*:Barbariccia:75C7:/ -663.9 "--sync--" sync / 1[56]:[^:]*:Barbariccia:7582:/ -665.1 "Winding Gale" sync / 1[56]:[^:]*:Barbariccia:75CA:/ -668.6 "Brush with Death" sync / 1[56]:[^:]*:Barbariccia:75A5:/ -684.5 "Deadly Twist" sync / 1[56]:[^:]*:Barbariccia:75DC:/ -690.6 "Boulder Break" sync / 1[56]:[^:]*:Barbariccia:73CF:/ -690.7 "Knuckle Drum" sync / 1[56]:[^:]*:Barbariccia:7597:/ -712.7 "Trample" sync / 1[56]:[^:]*:Barbariccia:75DA:/ jump 317.8 window 10,10 +317.8 "Trample" Ability { id: "75DA", source: "Barbariccia" } +317.9 "Bold Boulder" Ability { id: "75D6", source: "Barbariccia" } +320.9 "--sync--" Ability { id: "7582", source: "Barbariccia" } +322.0 "Brush with Death" Ability { id: "75A5", source: "Barbariccia" } +325.1 "Tornado Chain (out)" Ability { id: "758E", source: "Barbariccia" } +327.7 "Tornado Chain (in)" Ability { id: "758F", source: "Barbariccia" } +331.3 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +332.8 "Hair Spray" Ability { id: "75DB", source: "Barbariccia" } +344.7 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +346.3 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +348.0 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +349.7 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +351.3 "Blow Away" Ability { id: "7595", source: "Barbariccia" } +354.9 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +356.5 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +358.1 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +359.8 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +361.4 "--sync--" Ability { id: "7582", source: "Barbariccia" } +362.5 "Teasing Tangles" Ability { id: "75DF", source: "Barbariccia" } +363.3 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +364.8 "--sync--" Ability { id: "75AC", source: "Barbariccia" } +368.1 "Tornado Chain (out)" Ability { id: "758E", source: "Barbariccia" } +370.7 "Tornado Chain (in)" Ability { id: "758F", source: "Barbariccia" } +375.3 "Touchdown" Ability { id: "746D", source: "Barbariccia" } +377.4 "--sync--" Ability { id: "7582", source: "Barbariccia" } +383.5 "Boulder Break" Ability { id: "73CF", source: "Barbariccia" } +383.6 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +396.8 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +398.6 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +400.2 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +401.9 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +404.3 "Impact" Ability { id: "75D8", source: "Barbariccia" } +406.7 "Dry Blows" Ability { id: "7593", source: "Barbariccia" } +412.5 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +414.2 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +416.0 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +417.6 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +420.2 "Teasing Tangles" Ability { id: "75DF", source: "Barbariccia" } +421.0 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +422.5 "--sync--" Ability { id: "75AC", source: "Barbariccia" } +423.3 "--sync--" Ability { id: "7582", source: "Barbariccia" } +428.0 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +440.1 "Tornado Chain (out)" Ability { id: "758E", source: "Barbariccia" } +442.7 "Tornado Chain (in)" Ability { id: "758F", source: "Barbariccia" } +446.3 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +459.7 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +461.3 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +462.9 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +464.6 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +467.4 "Winding Gale" Ability { id: "75CA", source: "Barbariccia" } +470.9 "Brush with Death" Ability { id: "75A5", source: "Barbariccia" } +486.8 "Deadly Twist" Ability { id: "75DC", source: "Barbariccia" } +492.9 "Boulder Break" Ability { id: "73CF", source: "Barbariccia" } +493.0 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +515.1 "Trample" Ability { id: "75DA", source: "Barbariccia" } +515.2 "Bold Boulder" Ability { id: "75D6", source: "Barbariccia" } +518.2 "--sync--" Ability { id: "7582", source: "Barbariccia" } +519.3 "Brush with Death" Ability { id: "75A5", source: "Barbariccia" } +522.4 "Tornado Chain (out)" Ability { id: "758E", source: "Barbariccia" } +525.0 "Tornado Chain (in)" Ability { id: "758F", source: "Barbariccia" } +528.6 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +530.1 "Hair Spray" Ability { id: "75DB", source: "Barbariccia" } +542.0 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +543.6 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +545.4 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +547.2 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +548.8 "Blow Away" Ability { id: "7595", source: "Barbariccia" } +552.5 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +554.3 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +556.0 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +557.6 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +559.2 "--sync--" Ability { id: "7582", source: "Barbariccia" } +560.3 "Teasing Tangles" Ability { id: "75DF", source: "Barbariccia" } +561.1 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +562.6 "--sync--" Ability { id: "75AC", source: "Barbariccia" } +565.9 "Tornado Chain (out)" Ability { id: "758E", source: "Barbariccia" } +568.5 "Tornado Chain (in)" Ability { id: "758F", source: "Barbariccia" } +571.6 "--sync--" Ability { id: "7380", source: "Barbariccia" } +573.1 "Touchdown" Ability { id: "746D", source: "Barbariccia" } +575.3 "--sync--" Ability { id: "7582", source: "Barbariccia" } +581.4 "Boulder Break" Ability { id: "73CF", source: "Barbariccia" } +581.5 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +594.7 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +596.4 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +598.0 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +599.6 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +602.1 "Impact" Ability { id: "75D8", source: "Barbariccia" } +604.3 "Dry Blows" Ability { id: "7593", source: "Barbariccia" } +609.9 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +611.6 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +613.4 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +615.2 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +617.8 "Teasing Tangles" Ability { id: "75DF", source: "Barbariccia" } +618.6 "Fetters" Ability { id: "75B0", source: "Barbariccia" } +620.9 "--sync--" Ability { id: "7582", source: "Barbariccia" } +625.6 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +637.7 "Tornado Chain (out)" Ability { id: "758E", source: "Barbariccia" } +640.3 "Tornado Chain (in)" Ability { id: "758F", source: "Barbariccia" } +643.9 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +657.3 "Brutal Rush 1" #Ability { id: "75C6", source: "Barbariccia" } +659.0 "Brutal Rush 2" #Ability { id: "75C6", source: "Barbariccia" } +660.6 "Brutal Rush 3" #Ability { id: "75C6", source: "Barbariccia" } +662.3 "Brutal Rush 4" Ability { id: "75C7", source: "Barbariccia" } +663.9 "--sync--" Ability { id: "7582", source: "Barbariccia" } +665.1 "Winding Gale" Ability { id: "75CA", source: "Barbariccia" } +668.6 "Brush with Death" Ability { id: "75A5", source: "Barbariccia" } +684.5 "Deadly Twist" Ability { id: "75DC", source: "Barbariccia" } +690.6 "Boulder Break" Ability { id: "73CF", source: "Barbariccia" } +690.7 "Knuckle Drum" Ability { id: "7597", source: "Barbariccia" } +712.7 "Trample" Ability { id: "75DA", source: "Barbariccia" } jump 317.8 window 10,10 diff --git a/ui/raidboss/data/06-ew/trial/endsinger-ex.ts b/ui/raidboss/data/06-ew/trial/endsinger-ex.ts index 1184bc7737..c0d1cb8eb4 100644 --- a/ui/raidboss/data/06-ew/trial/endsinger-ex.ts +++ b/ui/raidboss/data/06-ew/trial/endsinger-ex.ts @@ -80,6 +80,7 @@ export const orbOutputStrings: OutputStrings = { knockback: { en: '${dir} Knockback', de: '${dir} Rückstoß', + fr: 'Poussée ${dir}', ja: '${dir} ノックバック', cn: '${dir} 击退', ko: '${dir} 넉백', @@ -87,6 +88,7 @@ export const orbOutputStrings: OutputStrings = { knockbackWithHead: { en: '${dir1} Knockback -> ${dir2}', de: '${dir1} Rückstoß -> ${dir2}', + fr: 'Poussée ${dir1} -> ${dir2}', ja: '${dir1} ノックバック -> ${dir2}', cn: '${dir1} 击退 -> ${dir2}', ko: '${dir1} 넉백 -> ${dir2}', @@ -94,6 +96,7 @@ export const orbOutputStrings: OutputStrings = { aoeWithHead: { en: 'Go ${dir1} (lean ${dir2})', de: 'Geh ${dir1} (nach ${dir2} bewegen)', + fr: 'Allez ${dir1} (côté ${dir2})', ja: '${dir1}方に (そっと${dir2}方へ)', cn: '去${dir1} (偏${dir2})', ko: '${dir1}쪽으로 (살짝 ${dir2}쪽으로)', @@ -347,6 +350,7 @@ const triggerSet: TriggerSet = { sides: { en: 'Out (Sides)', de: 'Raus (Seiten)', + fr: 'Extérieur (Côtés)', ja: '外 (横へ)', cn: '去外面 (两边)', ko: '밖으로 (양 옆)', @@ -354,6 +358,7 @@ const triggerSet: TriggerSet = { sidesWithTower: { en: 'Tower + Outside', de: 'Turm + Außerhalb', + fr: 'Tour + Extérieur', ja: '塔踏み + 外側', cn: '踩塔 + 去外面', ko: '기둥 + 양 옆', @@ -361,6 +366,7 @@ const triggerSet: TriggerSet = { sidesWithStacks: { en: 'Outside + Healer Groups', de: 'Außerhalb + Heiler-Gruppen', + fr: 'Extérieur + Groupes sur les heals', ja: '外側 + ヒーラと4:4頭割り', cn: '去外面 + 治疗分组分摊', ko: '양 옆 + 힐러 그룹', @@ -385,6 +391,7 @@ const triggerSet: TriggerSet = { middle: { en: 'Inside (Middle)', de: 'Innen (Mitte)', + fr: 'Intérieur (Milieu)', ja: '中へ (真ん中)', cn: '去里面 (中间)', ko: '안으로 (가운데)', @@ -392,6 +399,7 @@ const triggerSet: TriggerSet = { middleWithTower: { en: 'Tower + Inside', de: 'Turm + Innen', + fr: 'Tour + Intérieur', ja: '塔踏み + 内側', cn: '踩塔 + 去里面', ko: '기둥 + 안으로', @@ -399,6 +407,7 @@ const triggerSet: TriggerSet = { middleWithStacks: { en: 'Inside + Healer Groups', de: 'Innen + Heiler-Gruppen', + fr: 'Intérieur + Groupes sur les heals', ja: '内側 + ヒーラと4:4頭割り', cn: '去里面 + 治疗分组分摊', ko: '안으로 + 힐러 그룹', @@ -943,11 +952,10 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', - 'missingTranslations': true, 'replaceSync': { - 'Azure Star': 'astre azuré', - 'Fiery Star': 'astre incarnat', - 'The Endsinger': 'chantre de l\'anéantissement', + 'Azure Star': 'Astre azuré', + 'Fiery Star': 'Astre incarnat', + 'The Endsinger': 'Chantre de l\'anéantissement', }, 'replaceText': { 'Befoulment': 'Bombe de pus', @@ -962,8 +970,10 @@ const triggerSet: TriggerSet = { '(? spread, after exaflares if this is the 2nd/3rd iteration -144.4 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -159.5 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8478:/ jump 200.0 -159.5 "--sync--" sync / 1[56]:[^:]*:Golbez:8479:/ jump 300.0 +144.4 "--sync--" Ability { id: "8475", source: "Golbez" } +159.5 "Azdaja's Shadow" Ability { id: "8478", source: "Golbez" } jump 200.0 +159.5 "--sync--" Ability { id: "8479", source: "Golbez" } jump 300.0 164.7 "Flames of Eventide 1" 167.8 "Flames of Eventide 2" 170.9 "Flames of Eventide 3" @@ -59,45 +59,45 @@ hideall "--sync--" # out -> light parties variation -200.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8478:/ -205.2 "Flames of Eventide 1" sync / 1[56]:[^:]*:Golbez:847B:/ -208.3 "Flames of Eventide 2" sync / 1[56]:[^:]*:Golbez:847B:/ -211.4 "Flames of Eventide 3" sync / 1[56]:[^:]*:Golbez:847B:/ -213.4 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ +200.0 "Azdaja's Shadow" Ability { id: "8478", source: "Golbez" } +205.2 "Flames of Eventide 1" Ability { id: "847B", source: "Golbez" } +208.3 "Flames of Eventide 2" Ability { id: "847B", source: "Golbez" } +211.4 "Flames of Eventide 3" Ability { id: "847B", source: "Golbez" } +213.4 "--middle--" Ability { id: "84B8", source: "Golbez" } -220.7 "Phases of the Shadow (front)" sync / 1[56]:[^:]*:Golbez:86E7:/ -222.5 "--sync--" sync / 1[56]:[^:]*:Golbez:86E9:/ -224.2 "Phases of the Shadow (back)" sync / 1[56]:[^:]*:Golbez:86EF:/ -225.4 "Rising Beacon (out)" sync / 1[56]:[^:]*:Golbez:86EC:/ -228.1 "Immolating Shade (light parties)" sync / 1[56]:[^:]*:Golbez:8496:/ -228.7 "--north--" sync / 1[56]:[^:]*:Golbez:84B8:/ forcejump 400.0 +220.7 "Phases of the Shadow (front)" Ability { id: "86E7", source: "Golbez" } +222.5 "--sync--" Ability { id: "86E9", source: "Golbez" } +224.2 "Phases of the Shadow (back)" Ability { id: "86EF", source: "Golbez" } +225.4 "Rising Beacon (out)" Ability { id: "86EC", source: "Golbez" } +228.1 "Immolating Shade (light parties)" Ability { id: "8496", source: "Golbez" } +228.7 "--north--" Ability { id: "84B8", source: "Golbez" } forcejump 400.0 # in -> spread variation -300.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8479:/ -305.2 "Flames of Eventide 1" sync / 1[56]:[^:]*:Golbez:847B:/ -308.3 "Flames of Eventide 2" sync / 1[56]:[^:]*:Golbez:847B:/ -311.4 "Flames of Eventide 3" sync / 1[56]:[^:]*:Golbez:847B:/ -313.4 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ +300.0 "Azdaja's Shadow" Ability { id: "8479", source: "Golbez" } +305.2 "Flames of Eventide 1" Ability { id: "847B", source: "Golbez" } +308.3 "Flames of Eventide 2" Ability { id: "847B", source: "Golbez" } +311.4 "Flames of Eventide 3" Ability { id: "847B", source: "Golbez" } +313.4 "--middle--" Ability { id: "84B8", source: "Golbez" } -320.7 "Phases of the Shadow (front)" sync / 1[56]:[^:]*:Golbez:86E7:/ -322.5 "--sync--" sync / 1[56]:[^:]*:Golbez:86E9:/ -324.2 "Phases of the Shadow (back)" sync / 1[56]:[^:]*:Golbez:86EF:/ -325.4 "Rising Ring (under)" sync / 1[56]:[^:]*:Golbez:86ED:/ -328.1 "Burning Shade (spread)" sync / 1[56]:[^:]*:Golbez:8494:/ -328.7 "--north--" sync / 1[56]:[^:]*:Golbez:84B8:/ forcejump 400.0 +320.7 "Phases of the Shadow (front)" Ability { id: "86E7", source: "Golbez" } +322.5 "--sync--" Ability { id: "86E9", source: "Golbez" } +324.2 "Phases of the Shadow (back)" Ability { id: "86EF", source: "Golbez" } +325.4 "Rising Ring (under)" Ability { id: "86ED", source: "Golbez" } +328.1 "Burning Shade (spread)" Ability { id: "8494", source: "Golbez" } +328.7 "--north--" Ability { id: "84B8", source: "Golbez" } forcejump 400.0 # knockback phase -400.0 "--north--" sync / 1[56]:[^:]*:Golbez:84B8:/ -410.4 "Dragon's Descent" sync / 1[56]:[^:]*:Shadow Dragon:8498:/ -412.8 "Explosion" sync / 1[56]:[^:]*:Golbez:849D:/ -413.5 "Double Meteor" sync / 1[56]:[^:]*:Golbez:878C:/ -415.1 "Cauterize" sync / 1[56]:[^:]*:Shadow Dragon:84A2:/ -418.7 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -436.8 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8478:/ jump 500.0 -436.8 "--sync--" sync / 1[56]:[^:]*:Golbez:8479:/ jump 700.0 +400.0 "--north--" Ability { id: "84B8", source: "Golbez" } +410.4 "Dragon's Descent" Ability { id: "8498", source: "Shadow Dragon" } +412.8 "Explosion" Ability { id: "849D", source: "Golbez" } +413.5 "Double Meteor" Ability { id: "878C", source: "Golbez" } +415.1 "Cauterize" Ability { id: "84A2", source: "Shadow Dragon" } +418.7 "--sync--" Ability { id: "8475", source: "Golbez" } +436.8 "Azdaja's Shadow" Ability { id: "8478", source: "Golbez" } jump 500.0 +436.8 "--sync--" Ability { id: "8479", source: "Golbez" } jump 700.0 # repeated for timeline rolling @@ -109,86 +109,86 @@ hideall "--sync--" # Mini-phase 2, exaflares -> pairs -> role stacks or light parties -> out then light parties -500.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8478:/ -505.2 "Flames of Eventide 1" sync / 1[56]:[^:]*:Golbez:847B:/ -508.3 "Flames of Eventide 2" sync / 1[56]:[^:]*:Golbez:847B:/ -511.4 "Flames of Eventide 3" sync / 1[56]:[^:]*:Golbez:847B:/ -513.4 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -518.5 "Void Stardust (preview)" sync / 1[56]:[^:]*:Golbez:84A4:/ -524.6 "Void Stardust" duration 2.3 sync / 1[56]:[^:]*:Golbez:84A6:/ -530.4 "Abyssal Quasar" sync / 1[56]:[^:]*:Golbez:84AB:/ -535.4 "Eventide Fall?" sync / 1[56]:[^:]*:Golbez:8485:/ -540.4 "Eventide Triad?" sync / 1[56]:[^:]*:Golbez:8480:/ -548.5 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B3:/ - -556.6 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84AD:/ -556.7 "Void Comet x4" duration 3 #sync / 1[56]:[^:]*:Golbez:84B0:/ -560.7 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84B1:/ - -562.7 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -570.0 "Phases of the Shadow (front)" sync / 1[56]:[^:]*:Golbez:86E7:/ -571.8 "--sync--" sync / 1[56]:[^:]*:Golbez:86E9:/ -573.5 "Phases of the Shadow (back)" sync / 1[56]:[^:]*:Golbez:86EF:/ -574.7 "Rising Beacon (out)" sync / 1[56]:[^:]*:Golbez:86EC:/ -576.8 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -577.2 "Immolating Shade (light parties)" sync / 1[56]:[^:]*:Golbez:8496:/ forcejump 1000.0 +500.0 "Azdaja's Shadow" Ability { id: "8478", source: "Golbez" } +505.2 "Flames of Eventide 1" Ability { id: "847B", source: "Golbez" } +508.3 "Flames of Eventide 2" Ability { id: "847B", source: "Golbez" } +511.4 "Flames of Eventide 3" Ability { id: "847B", source: "Golbez" } +513.4 "--middle--" Ability { id: "84B8", source: "Golbez" } +518.5 "Void Stardust (preview)" Ability { id: "84A4", source: "Golbez" } +524.6 "Void Stardust" duration 2.3 Ability { id: "84A6", source: "Golbez" } +530.4 "Abyssal Quasar" Ability { id: "84AB", source: "Golbez" } +535.4 "Eventide Fall?" Ability { id: "8485", source: "Golbez" } +540.4 "Eventide Triad?" Ability { id: "8480", source: "Golbez" } +548.5 "Binding Cold" Ability { id: "84B3", source: "Golbez" } + +556.6 "Void Meteor" Ability { id: "84AD", source: "Golbez" } +556.7 "Void Comet x4" duration 3 #Ability { id: "84B0", source: "Golbez" } +560.7 "Void Meteor" Ability { id: "84B1", source: "Golbez" } + +562.7 "--middle--" Ability { id: "84B8", source: "Golbez" } +570.0 "Phases of the Shadow (front)" Ability { id: "86E7", source: "Golbez" } +571.8 "--sync--" Ability { id: "86E9", source: "Golbez" } +573.5 "Phases of the Shadow (back)" Ability { id: "86EF", source: "Golbez" } +574.7 "Rising Beacon (out)" Ability { id: "86EC", source: "Golbez" } +576.8 "--sync--" Ability { id: "8475", source: "Golbez" } +577.2 "Immolating Shade (light parties)" Ability { id: "8496", source: "Golbez" } forcejump 1000.0 # Mini-phase 2, exaflares -> pairs -> role stacks or light parties -> in then spread -700.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8479:/ -705.2 "Flames of Eventide 1" sync / 1[56]:[^:]*:Golbez:847B:/ -708.3 "Flames of Eventide 2" sync / 1[56]:[^:]*:Golbez:847B:/ -711.4 "Flames of Eventide 3" sync / 1[56]:[^:]*:Golbez:847B:/ -713.4 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -718.5 "Void Stardust (preview)" sync / 1[56]:[^:]*:Golbez:84A4:/ -724.6 "Void Stardust" duration 2.3 sync / 1[56]:[^:]*:Golbez:84A6:/ -730.4 "Abyssal Quasar" sync / 1[56]:[^:]*:Golbez:84AB:/ -735.4 "Eventide Fall?" sync / 1[56]:[^:]*:Golbez:8485:/ -740.4 "Eventide Triad?" sync / 1[56]:[^:]*:Golbez:8480:/ -748.5 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B3:/ - -756.6 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84AD:/ -756.7 "Void Comet x4" duration 3 #sync / 1[56]:[^:]*:Golbez:84B0:/ -760.7 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84B1:/ - -762.7 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -770.0 "Phases of the Shadow (front)" sync / 1[56]:[^:]*:Golbez:86E7:/ -771.8 "--sync--" sync / 1[56]:[^:]*:Golbez:86E9:/ -773.5 "Phases of the Shadow (back)" sync / 1[56]:[^:]*:Golbez:86EF:/ -774.7 "Rising Ring (under)" sync / 1[56]:[^:]*:Golbez:86ED:/ -776.8 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -777.2 "Burning Shade (spread)" sync / 1[56]:[^:]*:Golbez:8494:/ forcejump 1000.0 +700.0 "Azdaja's Shadow" Ability { id: "8479", source: "Golbez" } +705.2 "Flames of Eventide 1" Ability { id: "847B", source: "Golbez" } +708.3 "Flames of Eventide 2" Ability { id: "847B", source: "Golbez" } +711.4 "Flames of Eventide 3" Ability { id: "847B", source: "Golbez" } +713.4 "--middle--" Ability { id: "84B8", source: "Golbez" } +718.5 "Void Stardust (preview)" Ability { id: "84A4", source: "Golbez" } +724.6 "Void Stardust" duration 2.3 Ability { id: "84A6", source: "Golbez" } +730.4 "Abyssal Quasar" Ability { id: "84AB", source: "Golbez" } +735.4 "Eventide Fall?" Ability { id: "8485", source: "Golbez" } +740.4 "Eventide Triad?" Ability { id: "8480", source: "Golbez" } +748.5 "Binding Cold" Ability { id: "84B3", source: "Golbez" } + +756.6 "Void Meteor" Ability { id: "84AD", source: "Golbez" } +756.7 "Void Comet x4" duration 3 #Ability { id: "84B0", source: "Golbez" } +760.7 "Void Meteor" Ability { id: "84B1", source: "Golbez" } + +762.7 "--middle--" Ability { id: "84B8", source: "Golbez" } +770.0 "Phases of the Shadow (front)" Ability { id: "86E7", source: "Golbez" } +771.8 "--sync--" Ability { id: "86E9", source: "Golbez" } +773.5 "Phases of the Shadow (back)" Ability { id: "86EF", source: "Golbez" } +774.7 "Rising Ring (under)" Ability { id: "86ED", source: "Golbez" } +776.8 "--sync--" Ability { id: "8475", source: "Golbez" } +777.2 "Burning Shade (spread)" Ability { id: "8494", source: "Golbez" } forcejump 1000.0 # terrastorm + light parties 1000.0 "Burning/Immolating Shade" -1007.8 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -1012.9 "Terrastorm (cast)" sync / 1[56]:[^:]*:Golbez:8464:/ -1019.0 "Arctic Assault" sync / 1[56]:[^:]*:Golbez:845F:/ -1022.0 "Void Blizzard III" sync / 1[56]:[^:]*:Golbez:8462:/ -1022.0 "Terrastorm (hit)" sync / 1[56]:[^:]*:Golbez:8466:/ -1029.1 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B3:/ +1007.8 "--middle--" Ability { id: "84B8", source: "Golbez" } +1012.9 "Terrastorm (cast)" Ability { id: "8464", source: "Golbez" } +1019.0 "Arctic Assault" Ability { id: "845F", source: "Golbez" } +1022.0 "Void Blizzard III" Ability { id: "8462", source: "Golbez" } +1022.0 "Terrastorm (hit)" Ability { id: "8466", source: "Golbez" } +1029.1 "Binding Cold" Ability { id: "84B3", source: "Golbez" } # gale sphere + light parties or pairs mechanic # tornado = lp, aero = pairs -1035.2 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -1040.3 "Gale Sphere" sync / 1[56]:[^:]*:Golbez:844D:/ -1051.0 "--sync--" sync / 1[56]:[^:]*:Golbez:844E:/ -1053.3 "Void Tornado/Void Aero III" sync / 1[56]:[^:]*:Golbez:845[CD]:/ -1053.5 "Gale Sphere 1" sync / 1[56]:[^:]*:Gale Sphere:845[89AB]:/ -1056.0 "Arctic Assault" sync / 1[56]:[^:]*:Golbez:845F:/ -1057.0 "Gale Sphere 2" sync / 1[56]:[^:]*:Gale Sphere:845[89AB]:/ -1060.4 "Gale Sphere 3" sync / 1[56]:[^:]*:Gale Sphere:845[89AB]:/ -1063.8 "Gale Sphere 4" sync / 1[56]:[^:]*:Gale Sphere:845[89AB]:/ -1065.0 "Void Aero III/Void Tornado" sync / 1[56]:[^:]*:Golbez:845[CD]:/ -1069.1 "Phases of the Blade (front)" sync / 1[56]:[^:]*:Golbez:86DB:/ -1071.0 "--sync--" sync / 1[56]:[^:]*:Golbez:86DD:/ -1072.7 "Phases of the Blade (back)" sync / 1[56]:[^:]*:Golbez:86F2:/ -1082.1 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B3:/ -1098.2 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8478:/ jump 1200.0 -1098.2 "--sync--" sync / 1[56]:[^:]*:Golbez:8479:/ jump 1400.0 +1035.2 "--middle--" Ability { id: "84B8", source: "Golbez" } +1040.3 "Gale Sphere" Ability { id: "844D", source: "Golbez" } +1051.0 "--sync--" Ability { id: "844E", source: "Golbez" } +1053.3 "Void Tornado/Void Aero III" Ability { id: "845[CD]", source: "Golbez" } +1053.5 "Gale Sphere 1" Ability { id: "845[89AB]", source: "Gale Sphere" } +1056.0 "Arctic Assault" Ability { id: "845F", source: "Golbez" } +1057.0 "Gale Sphere 2" Ability { id: "845[89AB]", source: "Gale Sphere" } +1060.4 "Gale Sphere 3" Ability { id: "845[89AB]", source: "Gale Sphere" } +1063.8 "Gale Sphere 4" Ability { id: "845[89AB]", source: "Gale Sphere" } +1065.0 "Void Aero III/Void Tornado" Ability { id: "845[CD]", source: "Golbez" } +1069.1 "Phases of the Blade (front)" Ability { id: "86DB", source: "Golbez" } +1071.0 "--sync--" Ability { id: "86DD", source: "Golbez" } +1072.7 "Phases of the Blade (back)" Ability { id: "86F2", source: "Golbez" } +1082.1 "Binding Cold" Ability { id: "84B3", source: "Golbez" } +1098.2 "Azdaja's Shadow" Ability { id: "8478", source: "Golbez" } jump 1200.0 +1098.2 "--sync--" Ability { id: "8479", source: "Golbez" } jump 1400.0 # repeated for timeline rolling @@ -200,131 +200,131 @@ hideall "--sync--" # Mini-phase 3, exaflares -> pairs -> role stacks or light parties -> out then light parties -1200.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8478:/ -1205.2 "Flames of Eventide 1" sync / 1[56]:[^:]*:Golbez:847B:/ -1208.3 "Flames of Eventide 2" sync / 1[56]:[^:]*:Golbez:847B:/ -1211.4 "Flames of Eventide 3" sync / 1[56]:[^:]*:Golbez:847B:/ -1213.4 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -1218.5 "Void Stardust (preview)" sync / 1[56]:[^:]*:Golbez:84A4:/ -1224.6 "Void Stardust" duration 2.3 sync / 1[56]:[^:]*:Golbez:84A6:/ -1230.4 "Abyssal Quasar" sync / 1[56]:[^:]*:Golbez:84AB:/ -1231.3 "Lingering Spark (cast)" sync / 1[56]:[^:]*:Golbez:8468:/ -1235.4 "Lingering Spark (explode)" sync / 1[56]:[^:]*:Golbez:846A:/ -1240.4 "Eventide Fall/Eventide Triad" sync / 1[56]:[^:]*:Golbez:848[05]:/ - -1251.4 "Phases of the Shadow (front)" sync / 1[56]:[^:]*:Golbez:86E7:/ -1253.2 "--sync--" sync / 1[56]:[^:]*:Golbez:86E9:/ -1254.9 "Phases of the Shadow (back)" sync / 1[56]:[^:]*:Golbez:86EF:/ -1256.1 "Rising Beacon (out)" sync / 1[56]:[^:]*:Golbez:86EC:/ -1258.2 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -1258.6 "Immolating Shade (light parties)" sync / 1[56]:[^:]*:Golbez:8496:/ forcejump 1600.0 +1200.0 "Azdaja's Shadow" Ability { id: "8478", source: "Golbez" } +1205.2 "Flames of Eventide 1" Ability { id: "847B", source: "Golbez" } +1208.3 "Flames of Eventide 2" Ability { id: "847B", source: "Golbez" } +1211.4 "Flames of Eventide 3" Ability { id: "847B", source: "Golbez" } +1213.4 "--middle--" Ability { id: "84B8", source: "Golbez" } +1218.5 "Void Stardust (preview)" Ability { id: "84A4", source: "Golbez" } +1224.6 "Void Stardust" duration 2.3 Ability { id: "84A6", source: "Golbez" } +1230.4 "Abyssal Quasar" Ability { id: "84AB", source: "Golbez" } +1231.3 "Lingering Spark (cast)" Ability { id: "8468", source: "Golbez" } +1235.4 "Lingering Spark (explode)" Ability { id: "846A", source: "Golbez" } +1240.4 "Eventide Fall/Eventide Triad" Ability { id: "848[05]", source: "Golbez" } + +1251.4 "Phases of the Shadow (front)" Ability { id: "86E7", source: "Golbez" } +1253.2 "--sync--" Ability { id: "86E9", source: "Golbez" } +1254.9 "Phases of the Shadow (back)" Ability { id: "86EF", source: "Golbez" } +1256.1 "Rising Beacon (out)" Ability { id: "86EC", source: "Golbez" } +1258.2 "--sync--" Ability { id: "8475", source: "Golbez" } +1258.6 "Immolating Shade (light parties)" Ability { id: "8496", source: "Golbez" } forcejump 1600.0 # Mini-phase 3, exaflares -> pairs -> role stacks or light parties -> in then spread -1400.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8479:/ -1405.2 "Flames of Eventide 1" sync / 1[56]:[^:]*:Golbez:847B:/ -1408.3 "Flames of Eventide 2" sync / 1[56]:[^:]*:Golbez:847B:/ -1411.4 "Flames of Eventide 3" sync / 1[56]:[^:]*:Golbez:847B:/ -1413.4 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -1418.5 "Void Stardust (preview)" sync / 1[56]:[^:]*:Golbez:84A4:/ -1424.6 "Void Stardust" duration 2.3 sync / 1[56]:[^:]*:Golbez:84A6:/ -1430.4 "Abyssal Quasar" sync / 1[56]:[^:]*:Golbez:84AB:/ -1431.3 "Lingering Spark (cast)" sync / 1[56]:[^:]*:Golbez:8468:/ -1435.4 "Lingering Spark (explode)" sync / 1[56]:[^:]*:Golbez:846A:/ -1240.4 "Eventide Fall/Eventide Triad" sync / 1[56]:[^:]*:Golbez:848[05]:/ - -1451.4 "Phases of the Shadow (front)" sync / 1[56]:[^:]*:Golbez:86E7:/ -1453.2 "--sync--" sync / 1[56]:[^:]*:Golbez:86E9:/ -1454.9 "Phases of the Shadow (back)" sync / 1[56]:[^:]*:Golbez:86EF:/ -1456.1 "Rising Ring (under)" sync / 1[56]:[^:]*:Golbez:86ED:/ -1458.2 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -1458.6 "Burning Shade (spread)" sync / 1[56]:[^:]*:Golbez:8494:/ forcejump 1600.0 +1400.0 "Azdaja's Shadow" Ability { id: "8479", source: "Golbez" } +1405.2 "Flames of Eventide 1" Ability { id: "847B", source: "Golbez" } +1408.3 "Flames of Eventide 2" Ability { id: "847B", source: "Golbez" } +1411.4 "Flames of Eventide 3" Ability { id: "847B", source: "Golbez" } +1413.4 "--middle--" Ability { id: "84B8", source: "Golbez" } +1418.5 "Void Stardust (preview)" Ability { id: "84A4", source: "Golbez" } +1424.6 "Void Stardust" duration 2.3 Ability { id: "84A6", source: "Golbez" } +1430.4 "Abyssal Quasar" Ability { id: "84AB", source: "Golbez" } +1431.3 "Lingering Spark (cast)" Ability { id: "8468", source: "Golbez" } +1435.4 "Lingering Spark (explode)" Ability { id: "846A", source: "Golbez" } +1240.4 "Eventide Fall/Eventide Triad" Ability { id: "848[05]", source: "Golbez" } + +1451.4 "Phases of the Shadow (front)" Ability { id: "86E7", source: "Golbez" } +1453.2 "--sync--" Ability { id: "86E9", source: "Golbez" } +1454.9 "Phases of the Shadow (back)" Ability { id: "86EF", source: "Golbez" } +1456.1 "Rising Ring (under)" Ability { id: "86ED", source: "Golbez" } +1458.2 "--sync--" Ability { id: "8475", source: "Golbez" } +1458.6 "Burning Shade (spread)" Ability { id: "8494", source: "Golbez" } forcejump 1600.0 # knockback phase 1600.0 "Burning/Immolating Shade" -1600.4 "--north--" sync / 1[56]:[^:]*:Golbez:84B8:/ -1610.8 "Dragon's Descent" sync / 1[56]:[^:]*:Shadow Dragon:8498:/ -1613.2 "Explosion" sync / 1[56]:[^:]*:Golbez:849D:/ -1613.9 "Double Meteor" sync / 1[56]:[^:]*:Golbez:878C:/ -1615.5 "Cauterize" sync / 1[56]:[^:]*:Shadow Dragon:84A2:/ - -1618.9 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -1629.0 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84AD:/ -1629.1 "Void Comet x4" duration 3 #sync / 1[56]:[^:]*:Golbez:84B0:/ -1633.1 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84B1:/ - -1640.2 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -1645.3 "Gale Sphere" sync / 1[56]:[^:]*:Golbez:844D:/ -1656.0 "--sync--" sync / 1[56]:[^:]*:Golbez:844E:/ -1658.3 "Void Tornado/Void Aero III" sync / 1[56]:[^:]*:Golbez:845[CD]:/ -1658.5 "Gale Sphere 1" sync / 1[56]:[^:]*:Gale Sphere:845[89AB]:/ -1661.0 "Arctic Assault" sync / 1[56]:[^:]*:Golbez:845F:/ -1662.0 "Gale Sphere 2" sync / 1[56]:[^:]*:Gale Sphere:845[89AB]:/ -1665.4 "Gale Sphere 3" sync / 1[56]:[^:]*:Gale Sphere:845[89AB]:/ -1668.8 "Gale Sphere 4" sync / 1[56]:[^:]*:Gale Sphere:845[89AB]:/ -1670.0 "Void Aero III/Void Tornado" sync / 1[56]:[^:]*:Golbez:845[CD]:/ -1674.1 "Phases of the Blade (front)" sync / 1[56]:[^:]*:Golbez:86DB:/ -1676.0 "--sync--" sync / 1[56]:[^:]*:Golbez:86DD:/ -1677.7 "Phases of the Blade (back)" sync / 1[56]:[^:]*:Golbez:86F2:/ -1687.1 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B3:/ -1703.6 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8478:/ jump 1800.0 -1703.6 "--sync--" sync / 1[56]:[^:]*:Golbez:8479:/ jump 1900.0 +1600.4 "--north--" Ability { id: "84B8", source: "Golbez" } +1610.8 "Dragon's Descent" Ability { id: "8498", source: "Shadow Dragon" } +1613.2 "Explosion" Ability { id: "849D", source: "Golbez" } +1613.9 "Double Meteor" Ability { id: "878C", source: "Golbez" } +1615.5 "Cauterize" Ability { id: "84A2", source: "Shadow Dragon" } + +1618.9 "--sync--" Ability { id: "8475", source: "Golbez" } +1629.0 "Void Meteor" Ability { id: "84AD", source: "Golbez" } +1629.1 "Void Comet x4" duration 3 #Ability { id: "84B0", source: "Golbez" } +1633.1 "Void Meteor" Ability { id: "84B1", source: "Golbez" } + +1640.2 "--middle--" Ability { id: "84B8", source: "Golbez" } +1645.3 "Gale Sphere" Ability { id: "844D", source: "Golbez" } +1656.0 "--sync--" Ability { id: "844E", source: "Golbez" } +1658.3 "Void Tornado/Void Aero III" Ability { id: "845[CD]", source: "Golbez" } +1658.5 "Gale Sphere 1" Ability { id: "845[89AB]", source: "Gale Sphere" } +1661.0 "Arctic Assault" Ability { id: "845F", source: "Golbez" } +1662.0 "Gale Sphere 2" Ability { id: "845[89AB]", source: "Gale Sphere" } +1665.4 "Gale Sphere 3" Ability { id: "845[89AB]", source: "Gale Sphere" } +1668.8 "Gale Sphere 4" Ability { id: "845[89AB]", source: "Gale Sphere" } +1670.0 "Void Aero III/Void Tornado" Ability { id: "845[CD]", source: "Golbez" } +1674.1 "Phases of the Blade (front)" Ability { id: "86DB", source: "Golbez" } +1676.0 "--sync--" Ability { id: "86DD", source: "Golbez" } +1677.7 "Phases of the Blade (back)" Ability { id: "86F2", source: "Golbez" } +1687.1 "Binding Cold" Ability { id: "84B3", source: "Golbez" } +1703.6 "Azdaja's Shadow" Ability { id: "8478", source: "Golbez" } jump 1800.0 +1703.6 "--sync--" Ability { id: "8479", source: "Golbez" } jump 1900.0 # repeated for timeline rolling -1708.8 "Flames of Eventide 1" #sync / 1[56]:[^:]*:Golbez:847B:/ -1711.9 "Flames of Eventide 2" #sync / 1[56]:[^:]*:Golbez:847B:/ -1715.0 "Flames of Eventide 3" #sync / 1[56]:[^:]*:Golbez:847B:/ -1717.0 "--middle--" #sync / 1[56]:[^:]*:Golbez:84B8:/ -1724.3 "Phases of the Shadow (front)" #sync / 1[56]:[^:]*:Golbez:86E7:/ -1727.8 "Phases of the Shadow (back)" #sync / 1[56]:[^:]*:Golbez:86EF:/ +1708.8 "Flames of Eventide 1" #Ability { id: "847B", source: "Golbez" } +1711.9 "Flames of Eventide 2" #Ability { id: "847B", source: "Golbez" } +1715.0 "Flames of Eventide 3" #Ability { id: "847B", source: "Golbez" } +1717.0 "--middle--" #Ability { id: "84B8", source: "Golbez" } +1724.3 "Phases of the Shadow (front)" #Ability { id: "86E7", source: "Golbez" } +1727.8 "Phases of the Shadow (back)" #Ability { id: "86EF", source: "Golbez" } # Mini-phase 4, in then spread, or out then light parties # out -> light parties variation -1800.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8478:/ -1805.2 "Flames of Eventide 1" sync / 1[56]:[^:]*:Golbez:847B:/ -1808.3 "Flames of Eventide 2" sync / 1[56]:[^:]*:Golbez:847B:/ -1811.4 "Flames of Eventide 3" sync / 1[56]:[^:]*:Golbez:847B:/ -1813.4 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ +1800.0 "Azdaja's Shadow" Ability { id: "8478", source: "Golbez" } +1805.2 "Flames of Eventide 1" Ability { id: "847B", source: "Golbez" } +1808.3 "Flames of Eventide 2" Ability { id: "847B", source: "Golbez" } +1811.4 "Flames of Eventide 3" Ability { id: "847B", source: "Golbez" } +1813.4 "--middle--" Ability { id: "84B8", source: "Golbez" } -1820.7 "Phases of the Shadow (front)" sync / 1[56]:[^:]*:Golbez:86E7:/ -1822.5 "--sync--" sync / 1[56]:[^:]*:Golbez:86E9:/ -1824.2 "Phases of the Shadow (back)" sync / 1[56]:[^:]*:Golbez:86EF:/ -1825.4 "Rising Beacon (out)" sync / 1[56]:[^:]*:Golbez:86EC:/ -1828.1 "Immolating Shade (light parties)" sync / 1[56]:[^:]*:Golbez:8496:/ forcejump 2000.0 +1820.7 "Phases of the Shadow (front)" Ability { id: "86E7", source: "Golbez" } +1822.5 "--sync--" Ability { id: "86E9", source: "Golbez" } +1824.2 "Phases of the Shadow (back)" Ability { id: "86EF", source: "Golbez" } +1825.4 "Rising Beacon (out)" Ability { id: "86EC", source: "Golbez" } +1828.1 "Immolating Shade (light parties)" Ability { id: "8496", source: "Golbez" } forcejump 2000.0 # in -> spread variation -1900.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8479:/ -1905.2 "Flames of Eventide 1" sync / 1[56]:[^:]*:Golbez:847B:/ -1908.3 "Flames of Eventide 2" sync / 1[56]:[^:]*:Golbez:847B:/ -1911.4 "Flames of Eventide 3" sync / 1[56]:[^:]*:Golbez:847B:/ +1900.0 "Azdaja's Shadow" Ability { id: "8479", source: "Golbez" } +1905.2 "Flames of Eventide 1" Ability { id: "847B", source: "Golbez" } +1908.3 "Flames of Eventide 2" Ability { id: "847B", source: "Golbez" } +1911.4 "Flames of Eventide 3" Ability { id: "847B", source: "Golbez" } -1913.4 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -1920.7 "Phases of the Shadow (front)" sync / 1[56]:[^:]*:Golbez:86E7:/ -1922.5 "--sync--" sync / 1[56]:[^:]*:Golbez:86E9:/ -1924.2 "Phases of the Shadow (back)" sync / 1[56]:[^:]*:Golbez:86EF:/ -1925.4 "Rising Ring (under)" sync / 1[56]:[^:]*:Golbez:86ED:/ -1928.1 "Burning Shade (spread)" sync / 1[56]:[^:]*:Golbez:8494:/ forcejump 2000.0 +1913.4 "--middle--" Ability { id: "84B8", source: "Golbez" } +1920.7 "Phases of the Shadow (front)" Ability { id: "86E7", source: "Golbez" } +1922.5 "--sync--" Ability { id: "86E9", source: "Golbez" } +1924.2 "Phases of the Shadow (back)" Ability { id: "86EF", source: "Golbez" } +1925.4 "Rising Ring (under)" Ability { id: "86ED", source: "Golbez" } +1928.1 "Burning Shade (spread)" Ability { id: "8494", source: "Golbez" } forcejump 2000.0 # final segment 2000.0 "Burning/Immolating Shade" -2009.3 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B3:/ -2022.5 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B3:/ +2009.3 "Binding Cold" Ability { id: "84B3", source: "Golbez" } +2022.5 "Binding Cold" Ability { id: "84B3", source: "Golbez" } # last buster -2030.6 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84AD:/ -2030.7 "Void Comet x4" duration 3 #sync / 1[56]:[^:]*:Golbez:84B0:/ -2034.7 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84B1:/ +2030.6 "Void Meteor" Ability { id: "84AD", source: "Golbez" } +2030.7 "Void Comet x4" duration 3 #Ability { id: "84B0", source: "Golbez" } +2034.7 "Void Meteor" Ability { id: "84B1", source: "Golbez" } # enrage -2038.7 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -2046.0 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:84B9:/ -2055.1 "--sync--" sync / 1[56]:[^:]*:Shadow Dragon:84BB:/ -2055.2 "Black Fang (big)" sync / 1[56]:[^:]*:Golbez:84BA:/ -2059.1 "Black Fang (small) x5" sync / 1[56]:[^:]*:Golbez:871B:/ -2061.9 "Black Fang (Enrage)" sync / 1[56]:[^:]*:Golbez:84BC:/ +2038.7 "--middle--" Ability { id: "84B8", source: "Golbez" } +2046.0 "Azdaja's Shadow" Ability { id: "84B9", source: "Golbez" } +2055.1 "--sync--" Ability { id: "84BB", source: "Shadow Dragon" } +2055.2 "Black Fang (big)" Ability { id: "84BA", source: "Golbez" } +2059.1 "Black Fang (small) x5" Ability { id: "871B", source: "Golbez" } +2061.9 "Black Fang (Enrage)" Ability { id: "84BC", source: "Golbez" } diff --git a/ui/raidboss/data/06-ew/trial/golbez.txt b/ui/raidboss/data/06-ew/trial/golbez.txt index ad5c1184b8..aba1928b95 100644 --- a/ui/raidboss/data/06-ew/trial/golbez.txt +++ b/ui/raidboss/data/06-ew/trial/golbez.txt @@ -28,85 +28,85 @@ hideall "--Reset--" hideall "--sync--" hideall "--middle--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.0 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ window 12,12 -25.2 "Terrastorm" sync / 1[56]:[^:]*:Golbez:8465:/ -30.3 "Crescent Blade" sync / 1[56]:[^:]*:Golbez:846B:/ -37.0 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -42.1 "Arctic Assault" sync / 1[56]:[^:]*:Golbez:845E:/ -50.3 "Crescent Blade" sync / 1[56]:[^:]*:Golbez:846B:/ -60.9 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84AC:/ duration 4 -69.1 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -74.2 "Lingering Spark" sync / 1[56]:[^:]*:Golbez:8467:/ duration 8 -86.5 "Crescent Blade" sync / 1[56]:[^:]*:Golbez:846B:/ -97.1 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B2:/ -106.3 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -113.6 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:86FE:/ +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.0 "--middle--" Ability { id: "84B8", source: "Golbez" } window 12,12 +25.2 "Terrastorm" Ability { id: "8465", source: "Golbez" } +30.3 "Crescent Blade" Ability { id: "846B", source: "Golbez" } +37.0 "--middle--" Ability { id: "84B8", source: "Golbez" } +42.1 "Arctic Assault" Ability { id: "845E", source: "Golbez" } +50.3 "Crescent Blade" Ability { id: "846B", source: "Golbez" } +60.9 "Void Meteor" Ability { id: "84AC", source: "Golbez" } duration 4 +69.1 "--middle--" Ability { id: "84B8", source: "Golbez" } +74.2 "Lingering Spark" Ability { id: "8467", source: "Golbez" } duration 8 +86.5 "Crescent Blade" Ability { id: "846B", source: "Golbez" } +97.1 "Binding Cold" Ability { id: "84B2", source: "Golbez" } +106.3 "--middle--" Ability { id: "84B8", source: "Golbez" } +113.6 "Azdaja's Shadow" Ability { id: "86FE", source: "Golbez" } 113.6 "--untargetable--" 128.6 "--targetable--" -132.6 "Black Fang" sync / 1[56]:[^:]*:Golbez:8471:/ duration 6.5 -142.7 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -150.8 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -156.8 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8476:/ -167.1 "Shadow Crescent" sync / 1[56]:[^:]*:Golbez:8487:/ -169.4 "Rising Beacon" sync / 1[56]:[^:]*:Golbez:848F:/ -172.2 "Burning Shade" sync / 1[56]:[^:]*:Golbez:8493:/ -172.8 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -186.7 "Explosion" sync / 1[56]:[^:]*:Golbez:8499:/ -191.1 "Double Meteor" sync / 1[56]:[^:]*:Golbez:84B4:/ -194.2 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -200.3 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -205.6 "Gale Sphere" sync / 1[56]:[^:]*:Golbez:844D:/ -225.3 "--sync--" sync / 1[56]:[^:]*:Golbez:844E:/ -234.3 "Void Stardust (preview)" sync / 1[56]:[^:]*:Golbez:84A3:/ -238.2 "Void Stardust" sync / 1[56]:[^:]*:Golbez:84A5:/ duration 3 -248.5 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84AC:/ duration 4 -259.7 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -265.7 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8476:/ -274.0 "Lingering Spark" sync / 1[56]:[^:]*:Golbez:8467:/ duration 8 -285.2 "Eventide Fall" sync / 1[56]:[^:]*:Golbez:8482:/ duration 4.6 -298.5 "Gale Sphere" sync / 1[56]:[^:]*:Golbez:844D:/ -318.2 "--sync--" sync / 1[56]:[^:]*:Golbez:844E:/ -325.5 "Shadow Crescent" sync / 1[56]:[^:]*:Golbez:8487:/ -327.8 "Rising Beacon" sync / 1[56]:[^:]*:Golbez:848F:/ -330.0 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -331.4 "Immolating Shade" sync / 1[56]:[^:]*:Golbez:8495:/ +132.6 "Black Fang" Ability { id: "8471", source: "Golbez" } duration 6.5 +142.7 "--sync--" Ability { id: "8475", source: "Golbez" } +150.8 "--middle--" Ability { id: "84B8", source: "Golbez" } +156.8 "Azdaja's Shadow" Ability { id: "8476", source: "Golbez" } +167.1 "Shadow Crescent" Ability { id: "8487", source: "Golbez" } +169.4 "Rising Beacon" Ability { id: "848F", source: "Golbez" } +172.2 "Burning Shade" Ability { id: "8493", source: "Golbez" } +172.8 "--middle--" Ability { id: "84B8", source: "Golbez" } +186.7 "Explosion" Ability { id: "8499", source: "Golbez" } +191.1 "Double Meteor" Ability { id: "84B4", source: "Golbez" } +194.2 "--sync--" Ability { id: "8475", source: "Golbez" } +200.3 "--middle--" Ability { id: "84B8", source: "Golbez" } +205.6 "Gale Sphere" Ability { id: "844D", source: "Golbez" } +225.3 "--sync--" Ability { id: "844E", source: "Golbez" } +234.3 "Void Stardust (preview)" Ability { id: "84A3", source: "Golbez" } +238.2 "Void Stardust" Ability { id: "84A5", source: "Golbez" } duration 3 +248.5 "Void Meteor" Ability { id: "84AC", source: "Golbez" } duration 4 +259.7 "--middle--" Ability { id: "84B8", source: "Golbez" } +265.7 "Azdaja's Shadow" Ability { id: "8476", source: "Golbez" } +274.0 "Lingering Spark" Ability { id: "8467", source: "Golbez" } duration 8 +285.2 "Eventide Fall" Ability { id: "8482", source: "Golbez" } duration 4.6 +298.5 "Gale Sphere" Ability { id: "844D", source: "Golbez" } +318.2 "--sync--" Ability { id: "844E", source: "Golbez" } +325.5 "Shadow Crescent" Ability { id: "8487", source: "Golbez" } +327.8 "Rising Beacon" Ability { id: "848F", source: "Golbez" } +330.0 "--sync--" Ability { id: "8475", source: "Golbez" } +331.4 "Immolating Shade" Ability { id: "8495", source: "Golbez" } # begin loop -340.1 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B2:/ -346.3 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -352.3 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8476:/ -360.5 "Void Stardust (preview)" sync / 1[56]:[^:]*:Golbez:84A3:/ -364.4 "Void Stardust" sync / 1[56]:[^:]*:Golbez:84A5:/ duration 3 -370.7 "Arctic Assault" sync / 1[56]:[^:]*:Golbez:845E:/ -386.9 "Terrastorm" sync / 1[56]:[^:]*:Golbez:8465:/ -391.2 "Shadow Crescent" sync / 1[56]:[^:]*:Golbez:8487:/ -393.5 "Rising Beacon" sync / 1[56]:[^:]*:Golbez:848F:/ -396.3 "Burning Shade" sync / 1[56]:[^:]*:Golbez:8493:/ -396.9 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -410.9 "Explosion" sync / 1[56]:[^:]*:Golbez:849A:/ -415.3 "Double Meteor" sync / 1[56]:[^:]*:Golbez:84B4:/ -418.4 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ -431.5 "Void Meteor" sync / 1[56]:[^:]*:Golbez:84AC:/ duration 4 -441.7 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -447.7 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8476:/ -456.1 "Lingering Spark" sync / 1[56]:[^:]*:Golbez:8467:/ duration 8 -467.3 "Eventide Fall" sync / 1[56]:[^:]*:Golbez:8482:/ duration 4.6 -480.4 "Gale Sphere" sync / 1[56]:[^:]*:Golbez:844D:/ -500.1 "--sync--" sync / 1[56]:[^:]*:Golbez:844E:/ -507.4 "Shadow Crescent" sync / 1[56]:[^:]*:Golbez:8487:/ -509.7 "Rising Beacon" sync / 1[56]:[^:]*:Golbez:848F:/ -511.9 "--sync--" sync / 1[56]:[^:]*:Golbez:8475:/ +340.1 "Binding Cold" Ability { id: "84B2", source: "Golbez" } +346.3 "--middle--" Ability { id: "84B8", source: "Golbez" } +352.3 "Azdaja's Shadow" Ability { id: "8476", source: "Golbez" } +360.5 "Void Stardust (preview)" Ability { id: "84A3", source: "Golbez" } +364.4 "Void Stardust" Ability { id: "84A5", source: "Golbez" } duration 3 +370.7 "Arctic Assault" Ability { id: "845E", source: "Golbez" } +386.9 "Terrastorm" Ability { id: "8465", source: "Golbez" } +391.2 "Shadow Crescent" Ability { id: "8487", source: "Golbez" } +393.5 "Rising Beacon" Ability { id: "848F", source: "Golbez" } +396.3 "Burning Shade" Ability { id: "8493", source: "Golbez" } +396.9 "--middle--" Ability { id: "84B8", source: "Golbez" } +410.9 "Explosion" Ability { id: "849A", source: "Golbez" } +415.3 "Double Meteor" Ability { id: "84B4", source: "Golbez" } +418.4 "--sync--" Ability { id: "8475", source: "Golbez" } +431.5 "Void Meteor" Ability { id: "84AC", source: "Golbez" } duration 4 +441.7 "--middle--" Ability { id: "84B8", source: "Golbez" } +447.7 "Azdaja's Shadow" Ability { id: "8476", source: "Golbez" } +456.1 "Lingering Spark" Ability { id: "8467", source: "Golbez" } duration 8 +467.3 "Eventide Fall" Ability { id: "8482", source: "Golbez" } duration 4.6 +480.4 "Gale Sphere" Ability { id: "844D", source: "Golbez" } +500.1 "--sync--" Ability { id: "844E", source: "Golbez" } +507.4 "Shadow Crescent" Ability { id: "8487", source: "Golbez" } +509.7 "Rising Beacon" Ability { id: "848F", source: "Golbez" } +511.9 "--sync--" Ability { id: "8475", source: "Golbez" } # jump + fake loop -522.0 "Binding Cold" sync / 1[56]:[^:]*:Golbez:84B2:/ window 60,60 jump 340.1 -528.2 "--middle--" sync / 1[56]:[^:]*:Golbez:84B8:/ -534.2 "Azdaja's Shadow" sync / 1[56]:[^:]*:Golbez:8476:/ -542.4 "Void Stardust (preview)" sync / 1[56]:[^:]*:Golbez:84A3:/ -546.3 "Void Stardust" sync / 1[56]:[^:]*:Golbez:84A5:/ -552.6 "Arctic Assault" sync / 1[56]:[^:]*:Golbez:845E:/ -568.8 "Terrastorm" sync / 1[56]:[^:]*:Golbez:8465:/ -572.9 "Shadow Crescent" sync / 1[56]:[^:]*:Golbez:8487:/ -575.2 "Rising Beacon" sync / 1[56]:[^:]*:Golbez:848F:/ +522.0 "Binding Cold" Ability { id: "84B2", source: "Golbez" } window 60,60 jump 340.1 +528.2 "--middle--" Ability { id: "84B8", source: "Golbez" } +534.2 "Azdaja's Shadow" Ability { id: "8476", source: "Golbez" } +542.4 "Void Stardust (preview)" Ability { id: "84A3", source: "Golbez" } +546.3 "Void Stardust" Ability { id: "84A5", source: "Golbez" } +552.6 "Arctic Assault" Ability { id: "845E", source: "Golbez" } +568.8 "Terrastorm" Ability { id: "8465", source: "Golbez" } +572.9 "Shadow Crescent" Ability { id: "8487", source: "Golbez" } +575.2 "Rising Beacon" Ability { id: "848F", source: "Golbez" } diff --git a/ui/raidboss/data/06-ew/trial/hydaelyn-ex.txt b/ui/raidboss/data/06-ew/trial/hydaelyn-ex.txt index f0197cd115..7df5dc82e6 100644 --- a/ui/raidboss/data/06-ew/trial/hydaelyn-ex.txt +++ b/ui/raidboss/data/06-ew/trial/hydaelyn-ex.txt @@ -7,218 +7,218 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.0 "--sync--" sync / 14:[^:]*:Hydaelyn:65C1:/ window 15,15 -16.0 "Heros's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65C1:/ -26.1 "Shining Saber" sync / 1[56]:[^:]*:Hydaelyn:68C8:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.0 "--sync--" StartsUsing { id: "65C1", source: "Hydaelyn" } window 15,15 +16.0 "Heros's Radiance" Ability { id: "65C1", source: "Hydaelyn" } +26.1 "Shining Saber" Ability { id: "68C8", source: "Hydaelyn" } # Crystallize 1 -35.6 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659A:/ -44.8 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:6598:/ jump 144.8 -44.8 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:6594:/ jump 242.9 +35.6 "Crystallize" Ability { id: "659A", source: "Hydaelyn" } +44.8 "--sync--" Ability { id: "6598", source: "Hydaelyn" } jump 144.8 +44.8 "--sync--" Ability { id: "6594", source: "Hydaelyn" } jump 242.9 -44.8 "Highest Holy/Anthelion?" #sync / 1[56]:[^:]*:Hydaelyn:(6598|6594):/ -47.9 "--sync--" #sync / 1[56]:[^:]*:Hydaelyn:65A[01]:/ -48.8 "Crystalline Water III" #sync / 1[56]:[^:]*:Hydaelyn:65A2:/ -56.4 "Magos's Radiance/Mousa's Scorn?" #sync / 1[56]:[^:]*:Hydaelyn:(65C2|65C0):/ -66.6 "Aureole/Lateral Aureole?" #sync / 1[56]:[^:]*:Hydaelyn:(6C91|6F13):/ +44.8 "Highest Holy/Anthelion?" #Ability { id: ["6598", "6594"], source: "Hydaelyn" } +47.9 "--sync--" #Ability { id: "65A[01]", source: "Hydaelyn" } +48.8 "Crystalline Water III" #Ability { id: "65A2", source: "Hydaelyn" } +56.4 "Magos's Radiance/Mousa's Scorn?" #Ability { id: ["65C2", "65C0"], source: "Hydaelyn" } +66.6 "Aureole/Lateral Aureole?" #Ability { id: ["6C91", "6F13"], source: "Hydaelyn" } # Highest Holy first -144.8 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:6598:/ -147.9 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A0:/ -148.8 "Crystalline Water III" sync / 1[56]:[^:]*:Hydaelyn:65A2:/ -156.4 "Magos's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65C2:/ -166.6 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6C91|6F13):/ -175.7 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659C:/ -184.9 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:6594:/ -188.0 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A1:/ -188.9 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Hydaelyn:65A4:/ -197.1 "Mousa's Scorn" sync / 1[56]:[^:]*:Hydaelyn:65C0:/ - -207.3 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6F11|65C5):/ jump 307.1 -216.6 "Crystallize" #sync / 1[56]:[^:]*:Hydaelyn:(659E|6ED5|659A|659B):/ -225.8 "Equinox" #sync / 1[56]:[^:]*:Hydaelyn:65C3:/ -228.9 "--sync--" #sync / 1[56]:[^:]*:Hydaelyn:659F:/ -229.8 "Crystalline Water/Stone III" #sync / 1[56]:[^:]*:Hydaelyn:65A[23]:/ +144.8 "Highest Holy" Ability { id: "6598", source: "Hydaelyn" } +147.9 "--sync--" Ability { id: "65A0", source: "Hydaelyn" } +148.8 "Crystalline Water III" Ability { id: "65A2", source: "Hydaelyn" } +156.4 "Magos's Radiance" Ability { id: "65C2", source: "Hydaelyn" } +166.6 "Aureole/Lateral Aureole" Ability { id: ["6C91", "6F13"], source: "Hydaelyn" } +175.7 "Crystallize" Ability { id: "659C", source: "Hydaelyn" } +184.9 "Anthelion" Ability { id: "6594", source: "Hydaelyn" } +188.0 "--sync--" Ability { id: "65A1", source: "Hydaelyn" } +188.9 "Crystalline Blizzard III" Ability { id: "65A4", source: "Hydaelyn" } +197.1 "Mousa's Scorn" Ability { id: "65C0", source: "Hydaelyn" } + +207.3 "Aureole/Lateral Aureole" Ability { id: ["6F11", "65C5"], source: "Hydaelyn" } jump 307.1 +216.6 "Crystallize" #Ability { id: ["659E", "6ED5", "659A", "659B"], source: "Hydaelyn" } +225.8 "Equinox" #Ability { id: "65C3", source: "Hydaelyn" } +228.9 "--sync--" #Ability { id: "659F", source: "Hydaelyn" } +229.8 "Crystalline Water/Stone III" #Ability { id: "65A[23]", source: "Hydaelyn" } 231.9 "--untargetable--" # Anthelion first -242.9 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:6594:/ -246.0 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A1:/ -246.9 "Crystalline Water III" sync / 1[56]:[^:]*:Hydaelyn:65A2:/ -255.1 "Mousa's Scorn" sync / 1[56]:[^:]*:Hydaelyn:65C0:/ -265.3 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6F11|65C5):/ -276.1 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659D:/ -285.3 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:6598:/ -288.4 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A0:/ -289.2 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Hydaelyn:65A4:/ -296.9 "Magos's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65C2:/ +242.9 "Anthelion" Ability { id: "6594", source: "Hydaelyn" } +246.0 "--sync--" Ability { id: "65A1", source: "Hydaelyn" } +246.9 "Crystalline Water III" Ability { id: "65A2", source: "Hydaelyn" } +255.1 "Mousa's Scorn" Ability { id: "65C0", source: "Hydaelyn" } +265.3 "Aureole/Lateral Aureole" Ability { id: ["6F11", "65C5"], source: "Hydaelyn" } +276.1 "Crystallize" Ability { id: "659D", source: "Hydaelyn" } +285.3 "Highest Holy" Ability { id: "6598", source: "Hydaelyn" } +288.4 "--sync--" Ability { id: "65A0", source: "Hydaelyn" } +289.2 "Crystalline Blizzard III" Ability { id: "65A4", source: "Hydaelyn" } +296.9 "Magos's Radiance" Ability { id: "65C2", source: "Hydaelyn" } # -> naturally into Crystallize 3 (or jump from above) # Crystallize 3 (Equinox and Water/Stone) -307.1 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6C91|6F13):/ -316.4 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:(659E|6ED5|659A|659B):/ -325.6 "Equinox" sync / 1[56]:[^:]*:Hydaelyn:65C3:/ -328.7 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:659F:/ -329.6 "Crystalline Water/Stone III" sync / 1[56]:[^:]*:Hydaelyn:65A[23]:/ +307.1 "Aureole/Lateral Aureole" Ability { id: ["6C91", "6F13"], source: "Hydaelyn" } +316.4 "Crystallize" Ability { id: ["659E", "6ED5", "659A", "659B"], source: "Hydaelyn" } +325.6 "Equinox" Ability { id: "65C3", source: "Hydaelyn" } +328.7 "--sync--" Ability { id: "659F", source: "Hydaelyn" } +329.6 "Crystalline Water/Stone III" Ability { id: "65A[23]", source: "Hydaelyn" } 331.7 "--untargetable--" # Adds -336.2 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65BC:/ window 350,10 -344.3 "Pure Crystal" sync / 1[56]:[^:]*:Hydaelyn:65BD:/ +336.2 "--sync--" Ability { id: "65BC", source: "Hydaelyn" } window 350,10 +344.3 "Pure Crystal" Ability { id: "65BD", source: "Hydaelyn" } 344.3 "--targetable--" -1433.6 "Exodus" sync / 1[56]:[^:]*:Hydaelyn:65BB:/ window 2000,10 -1448.4 "Exodus" sync / 1[56]:[^:]*:Hydaelyn:662B:/ +1433.6 "Exodus" Ability { id: "65BB", source: "Hydaelyn" } window 2000,10 +1448.4 "Exodus" Ability { id: "662B", source: "Hydaelyn" } 1453.7 "--targetable--" -1468.8 "Halo" sync / 1[56]:[^:]*:Hydaelyn:65A5:/ +1468.8 "Halo" Ability { id: "65A5", source: "Hydaelyn" } # Lightwave 1 -1476.9 "Lightwave" sync / 1[56]:[^:]*:Hydaelyn:6693:/ -1488.7 "Light of the Crystal" #sync / 1[56]:[^:]*:Hydaelyn:65A6:/ -1490.7 "--top-middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -1490.8 "Light of the Crystal" #sync / 1[56]:[^:]*:Hydaelyn:65A6:/ -1496.6 "Infralateral Arc x3" sync / 1[56]:[^:]*:Hydaelyn:6669:/ duration 3.2 -1497.8 "Light of the Crystal" sync / 1[56]:[^:]*:Hydaelyn:65A6:/ +1476.9 "Lightwave" Ability { id: "6693", source: "Hydaelyn" } +1488.7 "Light of the Crystal" #Ability { id: "65A6", source: "Hydaelyn" } +1490.7 "--top-middle--" Ability { id: "65A9", source: "Hydaelyn" } +1490.8 "Light of the Crystal" #Ability { id: "65A6", source: "Hydaelyn" } +1496.6 "Infralateral Arc x3" Ability { id: "6669", source: "Hydaelyn" } duration 3.2 +1497.8 "Light of the Crystal" Ability { id: "65A6", source: "Hydaelyn" } # Lightwave 2 -1505.8 "Lightwave" sync / 1[56]:[^:]*:Hydaelyn:6693:/ -1509.0 "--top-middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -1515.4 "Heros's Glory" sync / 1[56]:[^:]*:Hydaelyn:65A8:/ -1520.5 "Light of the Crystal" sync / 1[56]:[^:]*:Hydaelyn:65A6:/ -1523.9 "Light of the Crystal" sync / 1[56]:[^:]*:Hydaelyn:65A6:/ -1527.1 "Light of the Crystal" #sync / 1[56]:[^:]*:Hydaelyn:65A6:/ -1528.7 "--top-middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -1529.9 "Light of the Crystal" sync / 1[56]:[^:]*:Hydaelyn:65A6:/ -1535.1 "Heros's Glory" sync / 1[56]:[^:]*:Hydaelyn:65A8:/ -1536.3 "Light of the Crystal" sync / 1[56]:[^:]*:Hydaelyn:65A6:/ -1544.6 "Halo" sync / 1[56]:[^:]*:Hydaelyn:65A5:/ -1555.7 "Heros's Sundering" sync / 1[56]:[^:]*:Hydaelyn:65BF:/ -1565.8 "Shining Saber" sync / 1[56]:[^:]*:Hydaelyn:68C8:/ +1505.8 "Lightwave" Ability { id: "6693", source: "Hydaelyn" } +1509.0 "--top-middle--" Ability { id: "65A9", source: "Hydaelyn" } +1515.4 "Heros's Glory" Ability { id: "65A8", source: "Hydaelyn" } +1520.5 "Light of the Crystal" Ability { id: "65A6", source: "Hydaelyn" } +1523.9 "Light of the Crystal" Ability { id: "65A6", source: "Hydaelyn" } +1527.1 "Light of the Crystal" #Ability { id: "65A6", source: "Hydaelyn" } +1528.7 "--top-middle--" Ability { id: "65A9", source: "Hydaelyn" } +1529.9 "Light of the Crystal" Ability { id: "65A6", source: "Hydaelyn" } +1535.1 "Heros's Glory" Ability { id: "65A8", source: "Hydaelyn" } +1536.3 "Light of the Crystal" Ability { id: "65A6", source: "Hydaelyn" } +1544.6 "Halo" Ability { id: "65A5", source: "Hydaelyn" } +1555.7 "Heros's Sundering" Ability { id: "65BF", source: "Hydaelyn" } +1565.8 "Shining Saber" Ability { id: "68C8", source: "Hydaelyn" } # Parhelion or Parhelic Circle -1575.3 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:6594:/ jump 1675.3 -1575.3 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:6598:/ jump 1966.1 -1575.3 "Anthelion/Highest Holy?" #sync / 1[56]:[^:]*:Hydaelyn:(6594|6598):/ -1585.5 "Mousa's Scorn/Magos's Radiance?" #sync / 1[56]:[^:]*:Hydaelyn:(65C0|65C2):/ -1590.7 "--middle?--" #sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -1594.6 "Crystallize?" #sync / 1[56]:[^:]*:Hydaelyn:659C:/ -1597.2 "Parhelion?" sync / 1[56]:[^:]*:Hydaelyn:(65B0|65AC):/ -1597.8 "--top-middle?--" #sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -1605.4 "Parhelic Circle?" #sync / 1[56]:[^:]*:Hydaelyn:65AC:/ +1575.3 "--sync--" Ability { id: "6594", source: "Hydaelyn" } jump 1675.3 +1575.3 "--sync--" Ability { id: "6598", source: "Hydaelyn" } jump 1966.1 +1575.3 "Anthelion/Highest Holy?" #Ability { id: ["6594", "6598"], source: "Hydaelyn" } +1585.5 "Mousa's Scorn/Magos's Radiance?" #Ability { id: ["65C0", "65C2"], source: "Hydaelyn" } +1590.7 "--middle?--" #Ability { id: "6E7A", source: "Hydaelyn" } +1594.6 "Crystallize?" #Ability { id: "659C", source: "Hydaelyn" } +1597.2 "Parhelion?" Ability { id: ["65B0", "65AC"], source: "Hydaelyn" } +1597.8 "--top-middle?--" #Ability { id: "65A9", source: "Hydaelyn" } +1605.4 "Parhelic Circle?" #Ability { id: "65AC", source: "Hydaelyn" } # Parhelion first -1675.3 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:6594:/ -1685.5 "Mousa's Scorn" sync / 1[56]:[^:]*:Hydaelyn:65C0:/ -1690.7 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -1697.2 "Parhelion" sync / 1[56]:[^:]*:Hydaelyn:65B0:/ -1697.5 "Beacon 1" #sync / 1[56]:[^:]*:Parhelion:65B2:/ -1699.1 "Beacon 2" #sync / 1[56]:[^:]*:Parhelion:65B2:/ -1700.7 "Beacon 3" #sync / 1[56]:[^:]*:Parhelion:65B2:/ -1706.0 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:6ED5:/ -1714.1 "Subparhelion" sync / 1[56]:[^:]*:Hydaelyn:6C56:/ -1716.1 "Crystalline Water III" sync / 1[56]:[^:]*:Hydaelyn:65A2:/ -1716.3 "Beacon 1" #sync / 1[56]:[^:]*:Parhelion:65B3:/ -1717.2 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A1:/ -1717.9 "Beacon 2" #sync / 1[56]:[^:]*:Parhelion:65B3:/ -1719.5 "Beacon 3" #sync / 1[56]:[^:]*:Parhelion:65B3:/ -1724.4 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6F11|65C5):/ - -1733.5 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:6598:/ -1743.6 "Magos's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65C2:/ -1752.7 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659C:/ -1755.9 "--top-middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -1763.5 "Parhelic Circle" sync / 1[56]:[^:]*:Hydaelyn:65AC:/ -1764.3 "--sync--" sync / 1[56]:[^:]*:Mystic Refulgence:65AE:/ -1765.4 "Incandescence" sync / 1[56]:[^:]*:Mystic Refulgence:65AF:/ -1766.7 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A0:/ -1768.9 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Hydaelyn:65A4:/ -1774.7 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6C91|6F13):/ -1783.8 "Equinox" sync / 1[56]:[^:]*:Hydaelyn:65C3:/ -1791.0 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -1797.6 "Radiant Halo" sync / 1[56]:[^:]*:Hydaelyn:65B4:/ - -1806.7 "Lightwave" sync / 1[56]:[^:]*:Hydaelyn:669[345]:/ jump 2206.7 -1826.3 "Echoes x5" #sync / 1[56]:[^:]*:Hydaelyn:65B5:/ duration 4.5 -1834.0 "Bright Spectrum" #sync / 1[56]:[^:]*:Hydaelyn:65B9:/ -1834.0 "Dichroic Spectrum" #sync / 1[56]:[^:]*:Hydaelyn:65B8:/ -1846.3 "Crystallize" #sync / 1[56]:[^:]*:Hydaelyn:659A:/ +1675.3 "Anthelion" Ability { id: "6594", source: "Hydaelyn" } +1685.5 "Mousa's Scorn" Ability { id: "65C0", source: "Hydaelyn" } +1690.7 "--middle--" Ability { id: "6E7A", source: "Hydaelyn" } +1697.2 "Parhelion" Ability { id: "65B0", source: "Hydaelyn" } +1697.5 "Beacon 1" #Ability { id: "65B2", source: "Parhelion" } +1699.1 "Beacon 2" #Ability { id: "65B2", source: "Parhelion" } +1700.7 "Beacon 3" #Ability { id: "65B2", source: "Parhelion" } +1706.0 "Crystallize" Ability { id: "6ED5", source: "Hydaelyn" } +1714.1 "Subparhelion" Ability { id: "6C56", source: "Hydaelyn" } +1716.1 "Crystalline Water III" Ability { id: "65A2", source: "Hydaelyn" } +1716.3 "Beacon 1" #Ability { id: "65B3", source: "Parhelion" } +1717.2 "--sync--" Ability { id: "65A1", source: "Hydaelyn" } +1717.9 "Beacon 2" #Ability { id: "65B3", source: "Parhelion" } +1719.5 "Beacon 3" #Ability { id: "65B3", source: "Parhelion" } +1724.4 "Aureole/Lateral Aureole" Ability { id: ["6F11", "65C5"], source: "Hydaelyn" } + +1733.5 "Highest Holy" Ability { id: "6598", source: "Hydaelyn" } +1743.6 "Magos's Radiance" Ability { id: "65C2", source: "Hydaelyn" } +1752.7 "Crystallize" Ability { id: "659C", source: "Hydaelyn" } +1755.9 "--top-middle--" Ability { id: "65A9", source: "Hydaelyn" } +1763.5 "Parhelic Circle" Ability { id: "65AC", source: "Hydaelyn" } +1764.3 "--sync--" Ability { id: "65AE", source: "Mystic Refulgence" } +1765.4 "Incandescence" Ability { id: "65AF", source: "Mystic Refulgence" } +1766.7 "--sync--" Ability { id: "65A0", source: "Hydaelyn" } +1768.9 "Crystalline Blizzard III" Ability { id: "65A4", source: "Hydaelyn" } +1774.7 "Aureole/Lateral Aureole" Ability { id: ["6C91", "6F13"], source: "Hydaelyn" } +1783.8 "Equinox" Ability { id: "65C3", source: "Hydaelyn" } +1791.0 "--middle--" Ability { id: "65A9", source: "Hydaelyn" } +1797.6 "Radiant Halo" Ability { id: "65B4", source: "Hydaelyn" } + +1806.7 "Lightwave" Ability { id: "669[345]", source: "Hydaelyn" } jump 2206.7 +1826.3 "Echoes x5" #Ability { id: "65B5", source: "Hydaelyn" } duration 4.5 +1834.0 "Bright Spectrum" #Ability { id: "65B9", source: "Hydaelyn" } +1834.0 "Dichroic Spectrum" #Ability { id: "65B8", source: "Hydaelyn" } +1846.3 "Crystallize" #Ability { id: "659A", source: "Hydaelyn" } # Parhelic Circle first -1966.1 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:6598:/ -1976.3 "Magos's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65C2:/ -1985.4 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659C:/ -1988.6 "--top-middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -1996.3 "Parhelic Circle" sync / 1[56]:[^:]*:Hydaelyn:65AC:/ -1997.1 "--sync--" sync / 1[56]:[^:]*:Mystic Refulgence:65AE:/ -1998.2 "Incandescence" sync / 1[56]:[^:]*:Mystic Refulgence:65AF:/ -1999.5 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A0:/ -2001.7 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Hydaelyn:65A4:/ -2007.6 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6C91|6F13):/ - -2016.7 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:6594:/ -2026.9 "Mousa's Scorn" sync / 1[56]:[^:]*:Hydaelyn:65C0:/ -2032.1 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -2038.7 "Parhelion" sync / 1[56]:[^:]*:Hydaelyn:65B0:/ -2039.0 "Beacon 1" #sync / 1[56]:[^:]*:Parhelion:65B2:/ -2040.6 "Beacon 2" #sync / 1[56]:[^:]*:Parhelion:65B2:/ -2042.2 "Beacon 3" #sync / 1[56]:[^:]*:Parhelion:65B2:/ -2047.5 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:6ED5:/ -2055.6 "Subparhelion" sync / 1[56]:[^:]*:Hydaelyn:6C56:/ -2057.6 "Crystalline Water III" sync / 1[56]:[^:]*:Hydaelyn:65A2:/ -2057.8 "Beacon 1" #sync / 1[56]:[^:]*:Parhelion:65B3:/ -2058.7 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A1:/ -2059.4 "Beacon 2" #sync / 1[56]:[^:]*:Parhelion:65B3:/ -2061.0 "Beacon 3" #sync / 1[56]:[^:]*:Parhelion:65B3:/ -2065.8 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6F11|65C5):/ -2074.9 "Equinox" sync / 1[56]:[^:]*:Hydaelyn:65C3:/ -2082.1 "--top-middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -2088.6 "Radiant Halo" sync / 1[56]:[^:]*:Hydaelyn:65B4:/ - -2097.7 "Lightwave" sync / 1[56]:[^:]*:Hydaelyn:669[345]:/ jump 2206.7 -2117.2 "Echoes x5" #sync / 1[56]:[^:]*:Hydaelyn:65B5:/ -2125.0 "Bright Spectrum" #sync / 1[56]:[^:]*:Hydaelyn:65B9:/ -2125.0 "Dichroic Spectrum" #sync / 1[56]:[^:]*:Hydaelyn:65B8:/ -2137.3 "Crystallize" #sync / 1[56]:[^:]*:Hydaelyn:659A:/ +1966.1 "Highest Holy" Ability { id: "6598", source: "Hydaelyn" } +1976.3 "Magos's Radiance" Ability { id: "65C2", source: "Hydaelyn" } +1985.4 "Crystallize" Ability { id: "659C", source: "Hydaelyn" } +1988.6 "--top-middle--" Ability { id: "65A9", source: "Hydaelyn" } +1996.3 "Parhelic Circle" Ability { id: "65AC", source: "Hydaelyn" } +1997.1 "--sync--" Ability { id: "65AE", source: "Mystic Refulgence" } +1998.2 "Incandescence" Ability { id: "65AF", source: "Mystic Refulgence" } +1999.5 "--sync--" Ability { id: "65A0", source: "Hydaelyn" } +2001.7 "Crystalline Blizzard III" Ability { id: "65A4", source: "Hydaelyn" } +2007.6 "Aureole/Lateral Aureole" Ability { id: ["6C91", "6F13"], source: "Hydaelyn" } + +2016.7 "Anthelion" Ability { id: "6594", source: "Hydaelyn" } +2026.9 "Mousa's Scorn" Ability { id: "65C0", source: "Hydaelyn" } +2032.1 "--middle--" Ability { id: "6E7A", source: "Hydaelyn" } +2038.7 "Parhelion" Ability { id: "65B0", source: "Hydaelyn" } +2039.0 "Beacon 1" #Ability { id: "65B2", source: "Parhelion" } +2040.6 "Beacon 2" #Ability { id: "65B2", source: "Parhelion" } +2042.2 "Beacon 3" #Ability { id: "65B2", source: "Parhelion" } +2047.5 "Crystallize" Ability { id: "6ED5", source: "Hydaelyn" } +2055.6 "Subparhelion" Ability { id: "6C56", source: "Hydaelyn" } +2057.6 "Crystalline Water III" Ability { id: "65A2", source: "Hydaelyn" } +2057.8 "Beacon 1" #Ability { id: "65B3", source: "Parhelion" } +2058.7 "--sync--" Ability { id: "65A1", source: "Hydaelyn" } +2059.4 "Beacon 2" #Ability { id: "65B3", source: "Parhelion" } +2061.0 "Beacon 3" #Ability { id: "65B3", source: "Parhelion" } +2065.8 "Aureole/Lateral Aureole" Ability { id: ["6F11", "65C5"], source: "Hydaelyn" } +2074.9 "Equinox" Ability { id: "65C3", source: "Hydaelyn" } +2082.1 "--top-middle--" Ability { id: "65A9", source: "Hydaelyn" } +2088.6 "Radiant Halo" Ability { id: "65B4", source: "Hydaelyn" } + +2097.7 "Lightwave" Ability { id: "669[345]", source: "Hydaelyn" } jump 2206.7 +2117.2 "Echoes x5" #Ability { id: "65B5", source: "Hydaelyn" } +2125.0 "Bright Spectrum" #Ability { id: "65B9", source: "Hydaelyn" } +2125.0 "Dichroic Spectrum" #Ability { id: "65B8", source: "Hydaelyn" } +2137.3 "Crystallize" #Ability { id: "659A", source: "Hydaelyn" } # Lightwave 3 -2206.7 "Lightwave" sync / 1[56]:[^:]*:Hydaelyn:669[345]:/ -2226.3 "Echoes x5" sync / 1[56]:[^:]*:Hydaelyn:65B5:/ duration 4.5 -2234.0 "Bright Spectrum" sync / 1[56]:[^:]*:Hydaelyn:65B9:/ -2234.0 "Dichroic Spectrum" sync / 1[56]:[^:]*:Hydaelyn:65B8:/ +2206.7 "Lightwave" Ability { id: "669[345]", source: "Hydaelyn" } +2226.3 "Echoes x5" Ability { id: "65B5", source: "Hydaelyn" } duration 4.5 +2234.0 "Bright Spectrum" Ability { id: "65B9", source: "Hydaelyn" } +2234.0 "Dichroic Spectrum" Ability { id: "65B8", source: "Hydaelyn" } -2246.3 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659A:/ -2253.9 "Shining Saber" sync / 1[56]:[^:]*:Hydaelyn:68C8:/ -2258.2 "Crystalline Water III" sync / 1[56]:[^:]*:Hydaelyn:65A2:/ -2263.2 "Highest Holy/Anthelion" sync / 1[56]:[^:]*:Hydaelyn:(6594|6598):/ -2266.3 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A[01]:/ +2246.3 "Crystallize" Ability { id: "659A", source: "Hydaelyn" } +2253.9 "Shining Saber" Ability { id: "68C8", source: "Hydaelyn" } +2258.2 "Crystalline Water III" Ability { id: "65A2", source: "Hydaelyn" } +2263.2 "Highest Holy/Anthelion" Ability { id: ["6594", "6598"], source: "Hydaelyn" } +2266.3 "--sync--" Ability { id: "65A[01]", source: "Hydaelyn" } # Lightwave 4 -2274.4 "Lightwave" sync / 1[56]:[^:]*:Hydaelyn:669[345]:/ -2293.9 "Echoes x5" sync / 1[56]:[^:]*:Hydaelyn:65B[67]:/ -2301.8 "Bright Spectrum" sync / 1[56]:[^:]*:Hydaelyn:65B9:/ -2301.8 "Dichroic Spectrum" sync / 1[56]:[^:]*:Hydaelyn:65B8:/ - -2314.0 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659[CD]:/ -2321.7 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6C91|6F13|6F11|65C5):/ -2325.9 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Hydaelyn:65A4:/ -2330.9 "Highest Holy/Anthelion" sync / 1[56]:[^:]*:Hydaelyn:(6594|6598):/ -2334.0 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A[01]:/ - -2342.1 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659E:/ -2350.3 "Aureole/Lateral Aureole" sync / 1[56]:[^:]*:Hydaelyn:(6C91|6F13|6F11|65C5):/ -2354.5 "Crystalline Stone III" sync / 1[56]:[^:]*:Hydaelyn:65A3:/ -2359.5 "Equinox" sync / 1[56]:[^:]*:Hydaelyn:65C3:/ - -2362.6 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:659F:/ -2369.7 "--sync--" sync / 14:[^:]*:Hydaelyn:5FFB:/ window 100,10 -2379.7 "Heros's Radiance Enrage" sync / 1[56]:[^:]*:Hydaelyn:5FFB:/ +2274.4 "Lightwave" Ability { id: "669[345]", source: "Hydaelyn" } +2293.9 "Echoes x5" Ability { id: "65B[67]", source: "Hydaelyn" } +2301.8 "Bright Spectrum" Ability { id: "65B9", source: "Hydaelyn" } +2301.8 "Dichroic Spectrum" Ability { id: "65B8", source: "Hydaelyn" } + +2314.0 "Crystallize" Ability { id: "659[CD]", source: "Hydaelyn" } +2321.7 "Aureole/Lateral Aureole" Ability { id: ["6C91", "6F13", "6F11", "65C5"], source: "Hydaelyn" } +2325.9 "Crystalline Blizzard III" Ability { id: "65A4", source: "Hydaelyn" } +2330.9 "Highest Holy/Anthelion" Ability { id: ["6594", "6598"], source: "Hydaelyn" } +2334.0 "--sync--" Ability { id: "65A[01]", source: "Hydaelyn" } + +2342.1 "Crystallize" Ability { id: "659E", source: "Hydaelyn" } +2350.3 "Aureole/Lateral Aureole" Ability { id: ["6C91", "6F13", "6F11", "65C5"], source: "Hydaelyn" } +2354.5 "Crystalline Stone III" Ability { id: "65A3", source: "Hydaelyn" } +2359.5 "Equinox" Ability { id: "65C3", source: "Hydaelyn" } + +2362.6 "--sync--" Ability { id: "659F", source: "Hydaelyn" } +2369.7 "--sync--" StartsUsing { id: "5FFB", source: "Hydaelyn" } window 100,10 +2379.7 "Heros's Radiance Enrage" Ability { id: "5FFB", source: "Hydaelyn" } diff --git a/ui/raidboss/data/06-ew/trial/hydaelyn.txt b/ui/raidboss/data/06-ew/trial/hydaelyn.txt index 60299f9022..a5cf40bbc4 100644 --- a/ui/raidboss/data/06-ew/trial/hydaelyn.txt +++ b/ui/raidboss/data/06-ew/trial/hydaelyn.txt @@ -7,202 +7,202 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 # Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -11.1 "--sync--" sync / 14:[^:]*:Hydaelyn:65D7:/ window 20,20 -16.1 "Heros's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65D7:/ -23.3 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -29.9 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -36.2 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:65C8:/ -45.3 "Mousa's Scorn" sync / 1[56]:[^:]*:Hydaelyn:65D6:/ -52.5 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -58.8 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -65.1 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:65C7:/ -74.2 "Magos's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65D8:/ -78.7 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -85.1 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -91.4 "Equinox" sync / 1[56]:[^:]*:Hydaelyn:65C3:/ -100.6 "Heros's Sundering" sync / 1[56]:[^:]*:Hydaelyn:65D5:/ -107.8 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -114.1 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +11.1 "--sync--" StartsUsing { id: "65D7", source: "Hydaelyn" } window 20,20 +16.1 "Heros's Radiance" Ability { id: "65D7", source: "Hydaelyn" } +23.3 "--middle--" Ability { id: "65A9", source: "Hydaelyn" } +29.9 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +36.2 "Anthelion" Ability { id: "65C8", source: "Hydaelyn" } +45.3 "Mousa's Scorn" Ability { id: "65D6", source: "Hydaelyn" } +52.5 "--middle--" Ability { id: "6E7A", source: "Hydaelyn" } +58.8 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +65.1 "Highest Holy" Ability { id: "65C7", source: "Hydaelyn" } +74.2 "Magos's Radiance" Ability { id: "65D8", source: "Hydaelyn" } +78.7 "--middle--" Ability { id: "65A9", source: "Hydaelyn" } +85.1 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +91.4 "Equinox" Ability { id: "65C3", source: "Hydaelyn" } +100.6 "Heros's Sundering" Ability { id: "65D5", source: "Hydaelyn" } +107.8 "--middle--" Ability { id: "65A9", source: "Hydaelyn" } +114.1 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } # -> branch # Anthelion branch jump -120.4 "Anthelion?" sync / 1[56]:[^:]*:Hydaelyn:65C8:/ window 30,30 jump 220.4 -129.5 "Mousa's Scorn?" #sync / 1[56]:[^:]*:Hydaelyn:65D6:/ -133.7 "--middle--" #sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -140.0 "Dawn Mantle?" #sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -146.3 "Equinox?" #sync / 1[56]:[^:]*:Hydaelyn:65C3:/ +120.4 "Anthelion?" Ability { id: "65C8", source: "Hydaelyn" } window 30,30 jump 220.4 +129.5 "Mousa's Scorn?" #Ability { id: "65D6", source: "Hydaelyn" } +133.7 "--middle--" #Ability { id: "6E7A", source: "Hydaelyn" } +140.0 "Dawn Mantle?" #Ability { id: "6C0C", source: "Hydaelyn" } +146.3 "Equinox?" #Ability { id: "65C3", source: "Hydaelyn" } 154.4 "--untargetable--" # Highest Holy branch jump # FIXME: are Dawn Mantle/Equinox times slightly different here or is that just one log? -120.4 "Highest Holy?" sync / 1[56]:[^:]*:Hydaelyn:65C7:/ window 30,30 jump 320.4 -129.5 "Magos's Radiance?" #sync / 1[56]:[^:]*:Hydaelyn:65D8:/ +120.4 "Highest Holy?" Ability { id: "65C7", source: "Hydaelyn" } window 30,30 jump 320.4 +129.5 "Magos's Radiance?" #Ability { id: "65D8", source: "Hydaelyn" } # Anthelion/Mousa's Scorn -> add phase -220.4 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:65C8:/ -229.5 "Mousa's Scorn" sync / 1[56]:[^:]*:Hydaelyn:65D6:/ -233.7 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -240.0 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -246.3 "Equinox" sync / 1[56]:[^:]*:Hydaelyn:65C3:/ +220.4 "Anthelion" Ability { id: "65C8", source: "Hydaelyn" } +229.5 "Mousa's Scorn" Ability { id: "65D6", source: "Hydaelyn" } +233.7 "--middle--" Ability { id: "6E7A", source: "Hydaelyn" } +240.0 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +246.3 "Equinox" Ability { id: "65C3", source: "Hydaelyn" } 254.4 "--untargetable--" -258.8 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65D3:/ window 50,50 jump 804.4 +258.8 "--sync--" Ability { id: "65D3", source: "Hydaelyn" } window 50,50 jump 804.4 # Highest Holy/Raidwide -> add phase -320.4 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:65C7:/ -329.5 "Magos's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65D8:/ -334.0 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -340.3 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -346.6 "Equinox" sync / 1[56]:[^:]*:Hydaelyn:65C3:/ +320.4 "Highest Holy" Ability { id: "65C7", source: "Hydaelyn" } +329.5 "Magos's Radiance" Ability { id: "65D8", source: "Hydaelyn" } +334.0 "--middle--" Ability { id: "65A9", source: "Hydaelyn" } +340.3 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +346.6 "Equinox" Ability { id: "65C3", source: "Hydaelyn" } 354.7 "--untargetable--" -359.1 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65D3:/ window 50,50 jump 804.4 +359.1 "--sync--" Ability { id: "65D3", source: "Hydaelyn" } window 50,50 jump 804.4 # Add phase: timed push (70% push?) 800.0 "--untargetable--" -804.4 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65D3:/ window 1000,1000 +804.4 "--sync--" Ability { id: "65D3", source: "Hydaelyn" } window 1000,1000 812.4 "--targetable--" -826.7 "Hydaelyn's Ray" sync / 1[56]:[^:]*:Echo of Hydaelyn:65CC:/ -828.8 "Crystallize" sync / 1[56]:[^:]*:Echo of Hydaelyn:6C51:/ -837.7 "Crystalline Stone III" sync / 1[56]:[^:]*:Echo of Hydaelyn:6C59:/ -840.1 "--sync--" sync / 1[56]:[^:]*:Echo of Hydaelyn:659F:/ -853.8 "Hydaelyn's Ray" sync / 1[56]:[^:]*:Echo of Hydaelyn:65CC:/ -858.9 "Crystallize" sync / 1[56]:[^:]*:Echo of Hydaelyn:6CCD:/ -867.8 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Echo of Hydaelyn:6C5A:/ -870.2 "--sync--" sync / 1[56]:[^:]*:Echo of Hydaelyn:659F:/ -880.9 "Hydaelyn's Ray" sync / 1[56]:[^:]*:Echo of Hydaelyn:65CC:/ -886.0 "Crystallize" sync / 1[56]:[^:]*:Echo of Hydaelyn:6C51:/ -894.9 "Crystalline Stone III" sync / 1[56]:[^:]*:Echo of Hydaelyn:6C59:/ +826.7 "Hydaelyn's Ray" Ability { id: "65CC", source: "Echo of Hydaelyn" } +828.8 "Crystallize" Ability { id: "6C51", source: "Echo of Hydaelyn" } +837.7 "Crystalline Stone III" Ability { id: "6C59", source: "Echo of Hydaelyn" } +840.1 "--sync--" Ability { id: "659F", source: "Echo of Hydaelyn" } +853.8 "Hydaelyn's Ray" Ability { id: "65CC", source: "Echo of Hydaelyn" } +858.9 "Crystallize" Ability { id: "6CCD", source: "Echo of Hydaelyn" } +867.8 "Crystalline Blizzard III" Ability { id: "6C5A", source: "Echo of Hydaelyn" } +870.2 "--sync--" Ability { id: "659F", source: "Echo of Hydaelyn" } +880.9 "Hydaelyn's Ray" Ability { id: "65CC", source: "Echo of Hydaelyn" } +886.0 "Crystallize" Ability { id: "6C51", source: "Echo of Hydaelyn" } +894.9 "Crystalline Stone III" Ability { id: "6C59", source: "Echo of Hydaelyn" } # Final Phase -1000.0 "Exodus" sync / 1[56]:[^:]*:Hydaelyn:65BB:/ window 1000,0 -1014.8 "Exodus" sync / 1[56]:[^:]*:Hydaelyn:65D2:/ +1000.0 "Exodus" Ability { id: "65BB", source: "Hydaelyn" } window 1000,0 +1014.8 "Exodus" Ability { id: "65D2", source: "Hydaelyn" } 1020.0 "--targetable--" -1029.2 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -1034.8 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659C:/ -1042.8 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -1052.0 "Crystalline Blizzard III" #sync / 1[56]:[^:]*:Hydaelyn:6C5A:/ +1029.2 "--sync--" Ability { id: "65A9", source: "Hydaelyn" } +1034.8 "Crystallize" Ability { id: "659C", source: "Hydaelyn" } +1042.8 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +1052.0 "Crystalline Blizzard III" #Ability { id: "6C5A", source: "Hydaelyn" } # -> jump to Parhelic Circle first -1049.1 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:65C7:/ window 30,30 jump 2049.1 -1066.0 "Parhelic Circle?" sync / 1[56]:[^:]*:Hydaelyn:65AC:/ +1049.1 "Highest Holy" Ability { id: "65C7", source: "Hydaelyn" } window 30,30 jump 2049.1 +1066.0 "Parhelic Circle?" Ability { id: "65AC", source: "Hydaelyn" } # -> jump to Parhelion first -1049.1 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:65C8:/ window 30,30 jump 3049.1 -1064.3 "Mousa's Scorn?" #sync / 1[56]:[^:]*:Hydaelyn:65D6:/ -1075.0 "Parhelion?" #sync / 1[56]:[^:]*:Hydaelyn:65B0:/ +1049.1 "Anthelion" Ability { id: "65C8", source: "Hydaelyn" } window 30,30 jump 3049.1 +1064.3 "Mousa's Scorn?" #Ability { id: "65D6", source: "Hydaelyn" } +1075.0 "Parhelion?" #Ability { id: "65B0", source: "Hydaelyn" } ### Parhelic Circle first -2034.8 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659C:/ -2042.8 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -2049.1 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:65C7:/ -2052.0 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Hydaelyn:6C5A:/ -2052.2 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A0:/ -2058.3 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ - -2066.0 "Parhelic Circle" sync / 1[56]:[^:]*:Hydaelyn:65AC:/ -2066.8 "--sync--" sync / 1[56]:[^:]*:Mystic Refulgence:65AE:/ -2066.8 "--sync--" sync / 1[56]:[^:]*:Mystic Refulgence:65AD:/ -2069.3 "Incandescence" sync / 1[56]:[^:]*:Mystic Refulgence:65CD:/ -2077.2 "Magos's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65D8:/ -2081.8 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -2087.5 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659C:/ -2095.6 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -2101.9 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:65C8:/ -2105.0 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A1:/ -2105.7 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Hydaelyn:6C5A:/ -2117.1 "Mousa's Scorn" sync / 1[56]:[^:]*:Hydaelyn:65D6:/ -2121.2 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ - -2127.7 "Parhelion" sync / 1[56]:[^:]*:Hydaelyn:65B0:/ -2128.0 "Beacon 1" #sync / 1[56]:[^:]*:Parhelion:65CE:/ -2129.6 "Beacon 2" #sync / 1[56]:[^:]*:Parhelion:65CE:/ -2131.2 "Beacon 3" #sync / 1[56]:[^:]*:Parhelion:65CE:/ -2137.6 "Subparhelion" sync / 1[56]:[^:]*:Hydaelyn:6C56:/ -2141.8 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -2144.0 "Beacon 1" #sync / 1[56]:[^:]*:Parhelion:65CF:/ -2145.6 "Beacon 2" #sync / 1[56]:[^:]*:Parhelion:65CF:/ -2147.2 "Beacon 3" #sync / 1[56]:[^:]*:Parhelion:65CF:/ +2034.8 "Crystallize" Ability { id: "659C", source: "Hydaelyn" } +2042.8 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +2049.1 "Highest Holy" Ability { id: "65C7", source: "Hydaelyn" } +2052.0 "Crystalline Blizzard III" Ability { id: "6C5A", source: "Hydaelyn" } +2052.2 "--sync--" Ability { id: "65A0", source: "Hydaelyn" } +2058.3 "--sync--" Ability { id: "65A9", source: "Hydaelyn" } + +2066.0 "Parhelic Circle" Ability { id: "65AC", source: "Hydaelyn" } +2066.8 "--sync--" Ability { id: "65AE", source: "Mystic Refulgence" } +2066.8 "--sync--" Ability { id: "65AD", source: "Mystic Refulgence" } +2069.3 "Incandescence" Ability { id: "65CD", source: "Mystic Refulgence" } +2077.2 "Magos's Radiance" Ability { id: "65D8", source: "Hydaelyn" } +2081.8 "--sync--" Ability { id: "65A9", source: "Hydaelyn" } +2087.5 "Crystallize" Ability { id: "659C", source: "Hydaelyn" } +2095.6 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +2101.9 "Anthelion" Ability { id: "65C8", source: "Hydaelyn" } +2105.0 "--sync--" Ability { id: "65A1", source: "Hydaelyn" } +2105.7 "Crystalline Blizzard III" Ability { id: "6C5A", source: "Hydaelyn" } +2117.1 "Mousa's Scorn" Ability { id: "65D6", source: "Hydaelyn" } +2121.2 "--middle--" Ability { id: "6E7A", source: "Hydaelyn" } + +2127.7 "Parhelion" Ability { id: "65B0", source: "Hydaelyn" } +2128.0 "Beacon 1" #Ability { id: "65CE", source: "Parhelion" } +2129.6 "Beacon 2" #Ability { id: "65CE", source: "Parhelion" } +2131.2 "Beacon 3" #Ability { id: "65CE", source: "Parhelion" } +2137.6 "Subparhelion" Ability { id: "6C56", source: "Hydaelyn" } +2141.8 "--sync--" Ability { id: "6E7A", source: "Hydaelyn" } +2144.0 "Beacon 1" #Ability { id: "65CF", source: "Parhelion" } +2145.6 "Beacon 2" #Ability { id: "65CF", source: "Parhelion" } +2147.2 "Beacon 3" #Ability { id: "65CF", source: "Parhelion" } # -> jump back to shared loop below -2147.3 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659E:/ window 50,50 jump 3147.3 -2155.4 "Dawn Mantle" #sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -2161.7 "Equinox" #sync / 1[56]:[^:]*:Hydaelyn:65C3:/ -2164.8 "--sync--" #sync / 1[56]:[^:]*:Hydaelyn:659F:/ -2165.5 "Crystalline Blizzard III/Crystalline Stone III" #sync / 1[56]:[^:]*:Hydaelyn:(6C5A|6C59):/ +2147.3 "Crystallize" Ability { id: "659E", source: "Hydaelyn" } window 50,50 jump 3147.3 +2155.4 "Dawn Mantle" #Ability { id: "6C0C", source: "Hydaelyn" } +2161.7 "Equinox" #Ability { id: "65C3", source: "Hydaelyn" } +2164.8 "--sync--" #Ability { id: "659F", source: "Hydaelyn" } +2165.5 "Crystalline Blizzard III/Crystalline Stone III" #Ability { id: ["6C5A", "6C59"], source: "Hydaelyn" } ### Parhelion first -3034.8 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659C:/ -3042.9 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -3049.1 "Anthelion" sync / 1[56]:[^:]*:Hydaelyn:65C8:/ -3052.3 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A1:/ -3053.0 "Crystalline Blizzard III" sync / 1[56]:[^:]*:Hydaelyn:6C5A:/ -3064.4 "Mousa's Scorn" sync / 1[56]:[^:]*:Hydaelyn:65D6:/ -3068.6 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -3075.1 "Parhelion" sync / 1[56]:[^:]*:Hydaelyn:65B0:/ -3075.3 "Beacon 1" #sync / 1[56]:[^:]*:Parhelion:65CE:/ -3076.9 "Beacon 2" #sync / 1[56]:[^:]*:Parhelion:65CE:/ -3078.5 "Beacon 3" #sync / 1[56]:[^:]*:Parhelion:65CE:/ -3084.9 "Subparhelion" sync / 1[56]:[^:]*:Hydaelyn:6C56:/ -3089.1 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:6E7A:/ -3091.2 "Beacon 1" #sync / 1[56]:[^:]*:Parhelion:65CF:/ -3092.8 "Beacon 2" #sync / 1[56]:[^:]*:Parhelion:65CF:/ -3094.4 "Beacon 3" #sync / 1[56]:[^:]*:Parhelion:65CF:/ - -3094.5 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659E:/ -3102.5 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -3108.8 "Highest Holy" sync / 1[56]:[^:]*:Hydaelyn:65C7:/ -3111.9 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A0:/ -3112.7 "Crystalline Stone III" sync / 1[56]:[^:]*:Hydaelyn:6C59:/ -3118.1 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -3125.8 "Parhelic Circle" sync / 1[56]:[^:]*:Hydaelyn:65AC:/ -3126.6 "--sync--" sync / 1[56]:[^:]*:Mystic Refulgence:65AE:/ -3126.6 "--sync--" sync / 1[56]:[^:]*:Mystic Refulgence:65AD:/ -3129.1 "Incandescence" sync / 1[56]:[^:]*:Mystic Refulgence:65CD:/ -3136.9 "Magos's Radiance" sync / 1[56]:[^:]*:Hydaelyn:65D8:/ -3141.5 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ +3034.8 "Crystallize" Ability { id: "659C", source: "Hydaelyn" } +3042.9 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +3049.1 "Anthelion" Ability { id: "65C8", source: "Hydaelyn" } +3052.3 "--sync--" Ability { id: "65A1", source: "Hydaelyn" } +3053.0 "Crystalline Blizzard III" Ability { id: "6C5A", source: "Hydaelyn" } +3064.4 "Mousa's Scorn" Ability { id: "65D6", source: "Hydaelyn" } +3068.6 "--sync--" Ability { id: "6E7A", source: "Hydaelyn" } +3075.1 "Parhelion" Ability { id: "65B0", source: "Hydaelyn" } +3075.3 "Beacon 1" #Ability { id: "65CE", source: "Parhelion" } +3076.9 "Beacon 2" #Ability { id: "65CE", source: "Parhelion" } +3078.5 "Beacon 3" #Ability { id: "65CE", source: "Parhelion" } +3084.9 "Subparhelion" Ability { id: "6C56", source: "Hydaelyn" } +3089.1 "--sync--" Ability { id: "6E7A", source: "Hydaelyn" } +3091.2 "Beacon 1" #Ability { id: "65CF", source: "Parhelion" } +3092.8 "Beacon 2" #Ability { id: "65CF", source: "Parhelion" } +3094.4 "Beacon 3" #Ability { id: "65CF", source: "Parhelion" } + +3094.5 "Crystallize" Ability { id: "659E", source: "Hydaelyn" } +3102.5 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +3108.8 "Highest Holy" Ability { id: "65C7", source: "Hydaelyn" } +3111.9 "--sync--" Ability { id: "65A0", source: "Hydaelyn" } +3112.7 "Crystalline Stone III" Ability { id: "6C59", source: "Hydaelyn" } +3118.1 "--sync--" Ability { id: "65A9", source: "Hydaelyn" } +3125.8 "Parhelic Circle" Ability { id: "65AC", source: "Hydaelyn" } +3126.6 "--sync--" Ability { id: "65AE", source: "Mystic Refulgence" } +3126.6 "--sync--" Ability { id: "65AD", source: "Mystic Refulgence" } +3129.1 "Incandescence" Ability { id: "65CD", source: "Mystic Refulgence" } +3136.9 "Magos's Radiance" Ability { id: "65D8", source: "Hydaelyn" } +3141.5 "--sync--" Ability { id: "65A9", source: "Hydaelyn" } # -> Crystallize below ### Shared branch after Parhelion / Parhelic Circle -3147.2 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659C:/ -3155.2 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -3161.5 "Equinox" sync / 1[56]:[^:]*:Hydaelyn:65C3:/ -3164.6 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:659F:/ -3165.4 "Crystalline Blizzard III/Crystalline Stone III" sync / 1[56]:[^:]*:Hydaelyn:(6C5A|6C59):/ -3176.9 "Heros's Sundering" sync / 1[56]:[^:]*:Hydaelyn:65D5:/ -3180.0 "--sync--" sync / 1[56]:[^:]*:Hydaelyn:65A9:/ -3186.5 "Radiant Halo" sync / 1[56]:[^:]*:Hydaelyn:65D0:/ +3147.2 "Crystallize" Ability { id: "659C", source: "Hydaelyn" } +3155.2 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +3161.5 "Equinox" Ability { id: "65C3", source: "Hydaelyn" } +3164.6 "--sync--" Ability { id: "659F", source: "Hydaelyn" } +3165.4 "Crystalline Blizzard III/Crystalline Stone III" Ability { id: ["6C5A", "6C59"], source: "Hydaelyn" } +3176.9 "Heros's Sundering" Ability { id: "65D5", source: "Hydaelyn" } +3180.0 "--sync--" Ability { id: "65A9", source: "Hydaelyn" } +3186.5 "Radiant Halo" Ability { id: "65D0", source: "Hydaelyn" } # Lightwave loop -3191.8 "--sync--" sync / 14:[^:]*:Hydaelyn:(6693|6694|6695):/ -3195.8 "Lightwave" sync / 1[56]:[^:]*:Hydaelyn:(6693|6694|6695):/ -3203.9 "Echoes" sync / 1[56]:[^:]*:Hydaelyn:(65B5|65B6|65B7):/ -3221.1 "Crystallize" sync / 1[56]:[^:]*:Hydaelyn:659[CE]:/ -3224.3 "--middle--" sync / 1[56]:[^:]*:Hydaelyn:(65A9|6E7A):/ -3230.7 "Dawn Mantle" sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -3237.0 "Highest Holy/Anthelion/Equinox" sync / 1[56]:[^:]*:Hydaelyn:(65C3|65C7|65C8):/ +3191.8 "--sync--" StartsUsing { id: ["6693", "6694", "6695"], source: "Hydaelyn" } +3195.8 "Lightwave" Ability { id: ["6693", "6694", "6695"], source: "Hydaelyn" } +3203.9 "Echoes" Ability { id: ["65B5", "65B6", "65B7"], source: "Hydaelyn" } +3221.1 "Crystallize" Ability { id: "659[CE]", source: "Hydaelyn" } +3224.3 "--middle--" Ability { id: ["65A9", "6E7A"], source: "Hydaelyn" } +3230.7 "Dawn Mantle" Ability { id: "6C0C", source: "Hydaelyn" } +3237.0 "Highest Holy/Anthelion/Equinox" Ability { id: ["65C3", "65C7", "65C8"], source: "Hydaelyn" } # This timing is +/- 1 second for some reason (even with the same Crystallize), # so don't sync because it throws Lightwave off even more. -3239.9 "Crystalline Blizzard III/Crystalline Stone III" #sync / 1[56]:[^:]*:Hydaelyn:(6C5A|6C59):/ +3239.9 "Crystalline Blizzard III/Crystalline Stone III" #Ability { id: ["6C5A", "6C59"], source: "Hydaelyn" } # Even ignoring the blizzard/stone above, this is still +/- 0.5s, so add a starts using cast. # TODO: it's possible the first loop is slightly different?? -3245.8 "--sync--" sync / 14:[^:]*:Hydaelyn:(6693|6694|6695):/ window 30,30 jump 3191.8 -3249.8 "Lightwave" #sync / 1[56]:[^:]*:Hydaelyn:(6693|6694|6695):/ -3257.9 "Echoes" #sync / 1[56]:[^:]*:Hydaelyn:(65B5|65B6|65B7):/ -3275.1 "Crystallize" #sync / 1[56]:[^:]*:Hydaelyn:659[CE]:/ -3278.3 "--middle--" #sync / 1[56]:[^:]*:Hydaelyn:(65A9|6E7A):/ -3284.7 "Dawn Mantle" #sync / 1[56]:[^:]*:Hydaelyn:6C0C:/ -3291.0 "Highest Holy/Anthelion/Equinox" #sync / 1[56]:[^:]*:Hydaelyn:(65C3|65C7|65C8):/ -3293.9 "Crystalline Blizzard III/Crystalline Stone III" #sync / 1[56]:[^:]*:Hydaelyn:(6C5A|6C59):/ +3245.8 "--sync--" StartsUsing { id: ["6693", "6694", "6695"], source: "Hydaelyn" } window 30,30 jump 3191.8 +3249.8 "Lightwave" #Ability { id: ["6693", "6694", "6695"], source: "Hydaelyn" } +3257.9 "Echoes" #Ability { id: ["65B5", "65B6", "65B7"], source: "Hydaelyn" } +3275.1 "Crystallize" #Ability { id: "659[CE]", source: "Hydaelyn" } +3278.3 "--middle--" #Ability { id: ["65A9", "6E7A"], source: "Hydaelyn" } +3284.7 "Dawn Mantle" #Ability { id: "6C0C", source: "Hydaelyn" } +3291.0 "Highest Holy/Anthelion/Equinox" #Ability { id: ["65C3", "65C7", "65C8"], source: "Hydaelyn" } +3293.9 "Crystalline Blizzard III/Crystalline Stone III" #Ability { id: ["6C5A", "6C59"], source: "Hydaelyn" } diff --git a/ui/raidboss/data/06-ew/trial/rubicante-ex.txt b/ui/raidboss/data/06-ew/trial/rubicante-ex.txt index aeaaf1634c..80bcea5c23 100644 --- a/ui/raidboss/data/06-ew/trial/rubicante-ex.txt +++ b/ui/raidboss/data/06-ew/trial/rubicante-ex.txt @@ -8,132 +8,132 @@ hideall "--Reset--" hideall "--sync--" hideall "Infernal Slaughter" -0.0 "--Reset--" sync / 21:........:40000010:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "40000010" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "--sync--" sync / 14:[^:]*:Rubicante:7D2C:/ window 10,20 -12.0 "Inferno (aoe)" sync / 1[56]:[^:]*:Rubicante:7D2C:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "--sync--" StartsUsing { id: "7D2C", source: "Rubicante" } window 10,20 +12.0 "Inferno (aoe)" Ability { id: "7D2C", source: "Rubicante" } # Purgation 1 & 2 -15.1 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -17.4 "Hope Abandon Ye" sync / 1[56]:[^:]*:Rubicante:7F27:/ -26.8 "Arcane Revelation" sync / 1[56]:[^:]*:Rubicante:7CBE:/ -49.0 "Ordeal of Purgation 1" sync / 1[56]:[^:]*:Rubicante:80E9:/ -57.0 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:(7CEF|7CF0):/ -75.8 "Ordeal of Purgation 2" sync / 1[56]:[^:]*:Rubicante:80E9:/ -83.8 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CF0:/ -97.9 "Shattering Heat" sync / 1[56]:[^:]*:Rubicante:7D2D:/ +15.1 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +17.4 "Hope Abandon Ye" Ability { id: "7F27", source: "Rubicante" } +26.8 "Arcane Revelation" Ability { id: "7CBE", source: "Rubicante" } +49.0 "Ordeal of Purgation 1" Ability { id: "80E9", source: "Rubicante" } +57.0 "Fiery Expiation" Ability { id: ["7CEF", "7CF0"], source: "Circle of Purgatory" } +75.8 "Ordeal of Purgation 2" Ability { id: "80E9", source: "Rubicante" } +83.8 "Fiery Expiation" Ability { id: "7CF0", source: "Circle of Purgatory" } +97.9 "Shattering Heat" Ability { id: "7D2D", source: "Rubicante" } # Archi Inferno -105.1 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -113.1 "Arch Inferno" sync / 1[56]:[^:]*:Rubicante:7CF9:/ -113.1 "Inferno Devil x2" sync / 1[56]:[^:]*:Rubicante:7CFB:/ duration 26 -116.2 "Infernal Slaughter" sync / 1[56]:[^:]*:Rubicante:7D00:/ -122.1 "Spike of Flame/Fourfold Flame/Twinfold Flame 1" sync / 1[56]:[^:]*:Rubicante:(7D02|7D03|7D04):/ -126.3 "Conflagration" sync / 1[56]:[^:]*:Rubicante:7CFD:/ -129.4 "Infernal Slaughter" sync / 1[56]:[^:]*:Rubicante:7D00:/ -135.3 "Spike of Flame/Fourfold Flame/Twinfold Flame 2" sync / 1[56]:[^:]*:Rubicante:(7D02|7D03|7D04):/ - -142.5 "Radial Flagration" sync / 1[56]:[^:]*:Rubicante:7CFE:/ -152.6 "Inferno (aoe)" sync / 1[56]:[^:]*:Rubicante:7D2C:/ +105.1 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +113.1 "Arch Inferno" Ability { id: "7CF9", source: "Rubicante" } +113.1 "Inferno Devil x2" Ability { id: "7CFB", source: "Rubicante" } duration 26 +116.2 "Infernal Slaughter" Ability { id: "7D00", source: "Rubicante" } +122.1 "Spike of Flame/Fourfold Flame/Twinfold Flame 1" Ability { id: ["7D02", "7D03", "7D04"], source: "Rubicante" } +126.3 "Conflagration" Ability { id: "7CFD", source: "Rubicante" } +129.4 "Infernal Slaughter" Ability { id: "7D00", source: "Rubicante" } +135.3 "Spike of Flame/Fourfold Flame/Twinfold Flame 2" Ability { id: ["7D02", "7D03", "7D04"], source: "Rubicante" } + +142.5 "Radial Flagration" Ability { id: "7CFE", source: "Rubicante" } +152.6 "Inferno (aoe)" Ability { id: "7D2C", source: "Rubicante" } # Purgation 3 & 4 -155.7 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -157.9 "Hope Abandon Ye" sync / 1[56]:[^:]*:Rubicante:7F27:/ -167.3 "Arcane Revelation" sync / 1[56]:[^:]*:Rubicante:7CBE:/ -190.3 "Ordeal of Purgation 3" sync / 1[56]:[^:]*:Rubicante:80E9:/ -198.3 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CEF:/ -217.2 "Ordeal of Purgation 4" sync / 1[56]:[^:]*:Rubicante:80E9:/ -225.2 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CF0:/ +155.7 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +157.9 "Hope Abandon Ye" Ability { id: "7F27", source: "Rubicante" } +167.3 "Arcane Revelation" Ability { id: "7CBE", source: "Rubicante" } +190.3 "Ordeal of Purgation 3" Ability { id: "80E9", source: "Rubicante" } +198.3 "Fiery Expiation" Ability { id: "7CEF", source: "Circle of Purgatory" } +217.2 "Ordeal of Purgation 4" Ability { id: "80E9", source: "Rubicante" } +225.2 "Fiery Expiation" Ability { id: "7CF0", source: "Circle of Purgatory" } 230.3 "--untargetable--" # Adds phase -232.7 "--sync--" sync / 1[56]:[^:]*:Rubicante:7D05:/ window 500,0 -240.8 "Ghastly Flame" sync / 1[56]:[^:]*:Flamesent:7D0D:/ -244.8 "Ghastly Torch" sync / 1[56]:[^:]*:Greater Flamesent:7D09:/ -247.8 "Ghastly Wind" sync / 1[56]:[^:]*:Flamesent:7D0B:/ -250.8 "Ghastly Torch" sync / 1[56]:[^:]*:Greater Flamesent:7D09:/ -259.8 "Shattering Heat" sync / 1[56]:[^:]*:Flamesent:7D0A:/ -270.8 "Ghastly Flame" sync / 1[56]:[^:]*:Flamesent:7D0D:/ +232.7 "--sync--" Ability { id: "7D05", source: "Rubicante" } window 500,0 +240.8 "Ghastly Flame" Ability { id: "7D0D", source: "Flamesent" } +244.8 "Ghastly Torch" Ability { id: "7D09", source: "Greater Flamesent" } +247.8 "Ghastly Wind" Ability { id: "7D0B", source: "Flamesent" } +250.8 "Ghastly Torch" Ability { id: "7D09", source: "Greater Flamesent" } +259.8 "Shattering Heat" Ability { id: "7D0A", source: "Flamesent" } +270.8 "Ghastly Flame" Ability { id: "7D0D", source: "Flamesent" } # ??? # Phase 2 -996.0 "--sync--" sync / 14:[^:]*:Rubicante:7D06:/ window 1000,0 -1000.0 "--sync--" sync / 1[56]:[^:]*:Rubicante:7D06:/ -1009.8 "Blazing Rapture" sync / 1[56]:[^:]*:Rubicante:7D07:/ +996.0 "--sync--" StartsUsing { id: "7D06", source: "Rubicante" } window 1000,0 +1000.0 "--sync--" Ability { id: "7D06", source: "Rubicante" } +1009.8 "Blazing Rapture" Ability { id: "7D07", source: "Rubicante" } # Flamespire Brand -1034.4 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBD:/ -1040.5 "Flamespire Brand" sync / 1[56]:[^:]*:Rubicante:7D13:/ -1048.6 "--sync--" sync / 1[56]:[^:]*:Rubicante:7D17:/ -1049.9 "--sync--" sync / 1[56]:[^:]*:Rubicante:7D18:/ -1051.1 "Flamerake 1" sync / 1[56]:[^:]*:Rubicante:7D19:/ -1053.1 "Flamerake 2" sync / 1[56]:[^:]*:Rubicante:7D1C:/ -1053.5 "Blooming Welt" sync / 1[56]:[^:]*:Rubicante:7D14:/ -1053.5 "Furious Welt" sync / 1[56]:[^:]*:Rubicante:7D15:/ -1055.5 "Flamerake 3" sync / 1[56]:[^:]*:Rubicante:7D1D:/ -1056.5 "Stinging Welt" sync / 1[56]:[^:]*:Rubicante:7D16:/ - -1059.9 "Explosive Pyre" sync / 1[56]:[^:]*:Rubicante:7D11:/ -1066.9 "Inferno (spread)" sync / 1[56]:[^:]*:Rubicante:7D0F:/ +1034.4 "--middle--" Ability { id: "7CBD", source: "Rubicante" } +1040.5 "Flamespire Brand" Ability { id: "7D13", source: "Rubicante" } +1048.6 "--sync--" Ability { id: "7D17", source: "Rubicante" } +1049.9 "--sync--" Ability { id: "7D18", source: "Rubicante" } +1051.1 "Flamerake 1" Ability { id: "7D19", source: "Rubicante" } +1053.1 "Flamerake 2" Ability { id: "7D1C", source: "Rubicante" } +1053.5 "Blooming Welt" Ability { id: "7D14", source: "Rubicante" } +1053.5 "Furious Welt" Ability { id: "7D15", source: "Rubicante" } +1055.5 "Flamerake 3" Ability { id: "7D1D", source: "Rubicante" } +1056.5 "Stinging Welt" Ability { id: "7D16", source: "Rubicante" } + +1059.9 "Explosive Pyre" Ability { id: "7D11", source: "Rubicante" } +1066.9 "Inferno (spread)" Ability { id: "7D0F", source: "Rubicante" } # Scalding/Line baits 1 -1071.0 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBD:/ -1078.0 "Scalding Ring/Scalding Signal" sync / 1[56]:[^:]*:Rubicante:(7D25|7D24):/ -1079.1 "Scalding Fleet" sync / 1[56]:[^:]*:Rubicante Mirage:7D26:/ -1088.1 "Sweeping Immolation" sync / 1[56]:[^:]*:Rubicante:7D21:/ -1088.5 "Scalding Fleet" #sync / 1[56]:[^:]*:Rubicante Mirage:7D27:/ -1088.5 "Partial Immolation/Total Immolation" sync / 1[56]:[^:]*:Rubicante:(7D22|7D23):/ +1071.0 "--middle--" Ability { id: "7CBD", source: "Rubicante" } +1078.0 "Scalding Ring/Scalding Signal" Ability { id: ["7D25", "7D24"], source: "Rubicante" } +1079.1 "Scalding Fleet" Ability { id: "7D26", source: "Rubicante Mirage" } +1088.1 "Sweeping Immolation" Ability { id: "7D21", source: "Rubicante" } +1088.5 "Scalding Fleet" #Ability { id: "7D27", source: "Rubicante Mirage" } +1088.5 "Partial Immolation/Total Immolation" Ability { id: ["7D22", "7D23"], source: "Rubicante" } -1094.2 "Explosive Pyre" sync / 1[56]:[^:]*:Rubicante:7D11:/ -1102.3 "Dualfire" sync / 1[56]:[^:]*:Rubicante:7D2E:/ +1094.2 "Explosive Pyre" Ability { id: "7D11", source: "Rubicante" } +1102.3 "Dualfire" Ability { id: "7D2E", source: "Rubicante" } # Purgation 5 & 6 -1112.5 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -1114.7 "Hope Abandon Ye" sync / 1[56]:[^:]*:Rubicante:7F27:/ -1124.1 "Arcane Revelation" sync / 1[56]:[^:]*:Rubicante:7CBE:/ -1146.8 "Ordeal of Purgation 5" sync / 1[56]:[^:]*:Rubicante:80E9:/ -1154.8 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:(7CEF|7CF0):/ -1173.1 "Ordeal of Purgation 6" sync / 1[56]:[^:]*:Rubicante:80E9:/ -1181.1 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:(7CEF|7CF0):/ +1112.5 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +1114.7 "Hope Abandon Ye" Ability { id: "7F27", source: "Rubicante" } +1124.1 "Arcane Revelation" Ability { id: "7CBE", source: "Rubicante" } +1146.8 "Ordeal of Purgation 5" Ability { id: "80E9", source: "Rubicante" } +1154.8 "Fiery Expiation" Ability { id: ["7CEF", "7CF0"], source: "Circle of Purgatory" } +1173.1 "Ordeal of Purgation 6" Ability { id: "80E9", source: "Rubicante" } +1181.1 "Fiery Expiation" Ability { id: ["7CEF", "7CF0"], source: "Circle of Purgatory" } -1190.2 "Inferno (aoe)" sync / 1[56]:[^:]*:Rubicante:7D2C:/ +1190.2 "Inferno (aoe)" Ability { id: "7D2C", source: "Rubicante" } # Flamespire Claw Limit Cut -1199.4 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBD:/ -1207.4 "--sync--" sync / 1[56]:[^:]*:Rubicante:7D28:/ window 20,20 -1207.8 "Flamespire Claw 1" #sync / 1[56]:[^:]*:Rubicante:7D29:/ -1210.2 "Flamespire Claw 2" #sync / 1[56]:[^:]*:Rubicante:7D29:/ -1212.6 "Flamespire Claw 3" #sync / 1[56]:[^:]*:Rubicante:7D29:/ -1215.4 "Flamespire Claw 4" #sync / 1[56]:[^:]*:Rubicante:7D29:/ -1218.2 "Flamespire Claw 5" #sync / 1[56]:[^:]*:Rubicante:7D29:/ -1221.0 "Flamespire Claw 6" #sync / 1[56]:[^:]*:Rubicante:7D29:/ -1223.6 "Flamespire Claw 7" #sync / 1[56]:[^:]*:Rubicante:7D29:/ -1226.0 "Flamespire Claw 8" #sync / 1[56]:[^:]*:Rubicante:7D29:/ - -1236.0 "Inferno (spread)" sync / 1[56]:[^:]*:Rubicante:7D0F:/ +1199.4 "--middle--" Ability { id: "7CBD", source: "Rubicante" } +1207.4 "--sync--" Ability { id: "7D28", source: "Rubicante" } window 20,20 +1207.8 "Flamespire Claw 1" #Ability { id: "7D29", source: "Rubicante" } +1210.2 "Flamespire Claw 2" #Ability { id: "7D29", source: "Rubicante" } +1212.6 "Flamespire Claw 3" #Ability { id: "7D29", source: "Rubicante" } +1215.4 "Flamespire Claw 4" #Ability { id: "7D29", source: "Rubicante" } +1218.2 "Flamespire Claw 5" #Ability { id: "7D29", source: "Rubicante" } +1221.0 "Flamespire Claw 6" #Ability { id: "7D29", source: "Rubicante" } +1223.6 "Flamespire Claw 7" #Ability { id: "7D29", source: "Rubicante" } +1226.0 "Flamespire Claw 8" #Ability { id: "7D29", source: "Rubicante" } + +1236.0 "Inferno (spread)" Ability { id: "7D0F", source: "Rubicante" } # Scalding/Line baits 2 -1240.1 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBD:/ -1247.1 "Scalding Ring/Scalding Signal" sync / 1[56]:[^:]*:Rubicante:(7D25|7D24):/ -1248.2 "Scalding Fleet" sync / 1[56]:[^:]*:Rubicante Mirage:7D26:/ -1257.4 "Sweeping Immolation" sync / 1[56]:[^:]*:Rubicante:7D20:/ -1257.7 "Scalding Fleet" sync / 1[56]:[^:]*:Rubicante Mirage:7D27:/ -1257.8 "Partial Immolation/Total Immolation" sync / 1[56]:[^:]*:Rubicante:(7D22|7D23):/ +1240.1 "--middle--" Ability { id: "7CBD", source: "Rubicante" } +1247.1 "Scalding Ring/Scalding Signal" Ability { id: ["7D25", "7D24"], source: "Rubicante" } +1248.2 "Scalding Fleet" Ability { id: "7D26", source: "Rubicante Mirage" } +1257.4 "Sweeping Immolation" Ability { id: "7D20", source: "Rubicante" } +1257.7 "Scalding Fleet" Ability { id: "7D27", source: "Rubicante Mirage" } +1257.8 "Partial Immolation/Total Immolation" Ability { id: ["7D22", "7D23"], source: "Rubicante" } -1263.5 "Explosive Pyre" sync / 1[56]:[^:]*:Rubicante:7D11:/ -1271.5 "Dualfire" sync / 1[56]:[^:]*:Rubicante:7D2E:/ +1263.5 "Explosive Pyre" Ability { id: "7D11", source: "Rubicante" } +1271.5 "Dualfire" Ability { id: "7D2E", source: "Rubicante" } # Purgation 7 & 8 -1281.8 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -1284.1 "Hope Abandon Ye" sync / 1[56]:[^:]*:Rubicante:7F27:/ -1293.5 "Arcane Revelation" sync / 1[56]:[^:]*:Rubicante:7CBE:/ -1315.8 "Ordeal of Purgation 7" sync / 1[56]:[^:]*:Rubicante:80E9:/ -1323.8 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CEF:/ -1342.2 "Ordeal of Purgation 8" sync / 1[56]:[^:]*:Rubicante:80E9:/ -1350.2 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CF0:/ +1281.8 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +1284.1 "Hope Abandon Ye" Ability { id: "7F27", source: "Rubicante" } +1293.5 "Arcane Revelation" Ability { id: "7CBE", source: "Rubicante" } +1315.8 "Ordeal of Purgation 7" Ability { id: "80E9", source: "Rubicante" } +1323.8 "Fiery Expiation" Ability { id: "7CEF", source: "Circle of Purgatory" } +1342.2 "Ordeal of Purgation 8" Ability { id: "80E9", source: "Rubicante" } +1350.2 "Fiery Expiation" Ability { id: "7CF0", source: "Circle of Purgatory" } # Enrage -1359.4 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -1371.7 "Inferno Enrage" sync / 1[56]:[^:]*:Rubicante:7D2B:/ +1359.4 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +1371.7 "Inferno Enrage" Ability { id: "7D2B", source: "Rubicante" } 1371.7 "--untargetable--" diff --git a/ui/raidboss/data/06-ew/trial/rubicante.txt b/ui/raidboss/data/06-ew/trial/rubicante.txt index 2714453ff2..af83f06794 100644 --- a/ui/raidboss/data/06-ew/trial/rubicante.txt +++ b/ui/raidboss/data/06-ew/trial/rubicante.txt @@ -9,97 +9,97 @@ hideall "--sync--" hideall "Arcane Revelation" hideall "Infernal Slaughter" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.0 "--sync--" sync / 14:[^:]*:Rubicante:7CEA:/ window 10,10 -12.0 "Inferno" sync / 1[56]:[^:]*:Rubicante:7CEA:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.0 "--sync--" StartsUsing { id: "7CEA", source: "Rubicante" } window 10,10 +12.0 "Inferno" Ability { id: "7CEA", source: "Rubicante" } # Phase 1 (Purgations & Arch Inferno) -15.1 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -17.3 "Hope Abandon Ye" sync / 1[56]:[^:]*:Rubicante:7F26:/ -26.7 "Arcane Revelation" sync / 1[56]:[^:]*:Rubicante:7CBE:/ -47.7 "Ordeal of Purgation" sync / 1[56]:[^:]*:Rubicante:7CC4:/ # no spin, straight line -52.7 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CC5:/ -68.9 "Ordeal of Purgation" sync / 1[56]:[^:]*:Rubicante:7CC4:/ # no spin, jagged line -73.9 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CC5:/ -86.9 "Shattering Heat" sync / 1[56]:[^:]*:Rubicante:7CEB:/ -94.1 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ +15.1 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +17.3 "Hope Abandon Ye" Ability { id: "7F26", source: "Rubicante" } +26.7 "Arcane Revelation" Ability { id: "7CBE", source: "Rubicante" } +47.7 "Ordeal of Purgation" Ability { id: "7CC4", source: "Rubicante" } # no spin, straight line +52.7 "Fiery Expiation" Ability { id: "7CC5", source: "Circle of Purgatory" } +68.9 "Ordeal of Purgation" Ability { id: "7CC4", source: "Rubicante" } # no spin, jagged line +73.9 "Fiery Expiation" Ability { id: "7CC5", source: "Circle of Purgatory" } +86.9 "Shattering Heat" Ability { id: "7CEB", source: "Rubicante" } +94.1 "--middle--" Ability { id: "7CBC", source: "Rubicante" } -102.1 "Arch Inferno" sync / 1[56]:[^:]*:Rubicante:7CC7:/ window 30,30 -102.1 "Inferno Devil" sync / 1[56]:[^:]*:Rubicante:7CC9:/ -105.2 "Infernal Slaughter" sync / 1[56]:[^:]*:Rubicante:7CCE:/ -112.2 "Conflagration" sync / 1[56]:[^:]*:Rubicante:7CCB:/ -115.3 "Infernal Slaughter" sync / 1[56]:[^:]*:Rubicante:7CCE:/ -122.3 "Radial Flagration" sync / 1[56]:[^:]*:Rubicante:7CCC:/ -130.4 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ +102.1 "Arch Inferno" Ability { id: "7CC7", source: "Rubicante" } window 30,30 +102.1 "Inferno Devil" Ability { id: "7CC9", source: "Rubicante" } +105.2 "Infernal Slaughter" Ability { id: "7CCE", source: "Rubicante" } +112.2 "Conflagration" Ability { id: "7CCB", source: "Rubicante" } +115.3 "Infernal Slaughter" Ability { id: "7CCE", source: "Rubicante" } +122.3 "Radial Flagration" Ability { id: "7CCC", source: "Rubicante" } +130.4 "--middle--" Ability { id: "7CBC", source: "Rubicante" } -132.8 "Hope Abandon Ye" sync / 1[56]:[^:]*:Rubicante:7F26:/ window 30,30 -142.2 "Arcane Revelation" sync / 1[56]:[^:]*:Rubicante:7CBE:/ -163.1 "Ordeal of Purgation" sync / 1[56]:[^:]*:Rubicante:80E8:/ # middle-disc spin, jagged line (from this point forward) -171.1 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CC5:/ -187.5 "Ordeal of Purgation" sync / 1[56]:[^:]*:Rubicante:80E8:/ -195.5 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CC5:/ +132.8 "Hope Abandon Ye" Ability { id: "7F26", source: "Rubicante" } window 30,30 +142.2 "Arcane Revelation" Ability { id: "7CBE", source: "Rubicante" } +163.1 "Ordeal of Purgation" Ability { id: "80E8", source: "Rubicante" } # middle-disc spin, jagged line (from this point forward) +171.1 "Fiery Expiation" Ability { id: "7CC5", source: "Circle of Purgatory" } +187.5 "Ordeal of Purgation" Ability { id: "80E8", source: "Rubicante" } +195.5 "Fiery Expiation" Ability { id: "7CC5", source: "Circle of Purgatory" } 201.6 "--untargetable--" # Adds Phase # The adds will intermittently cast various AoEs. # All are ground-telegraphed except 7CD4 (Ghastly Torch), a small raid-wide. # Because variation in adds deaths can affect casts, only display the first few mechanics. -1000.0 "--sync--" sync / 1[56]:[^:]*:Rubicante:7CD0:/ window 1000,0 -1011.1 "Ghastly Torch" sync / 1[56]:[^:]*:Greater Flamesent:7CD4:/ -1012.1 "Ghastly Flame" sync / 1[56]:[^:]*:Flamesent:7CD7:/ -1016.2 "Ghastly Wind" sync / 1[56]:[^:]*:Flamesent:7CD6:/ -1017.2 "Ghastly Torch" sync / 1[56]:[^:]*:Greater Flamesent:7CD4:/ -1022.2 "Shattering Heat" sync / 1[56]:[^:]*:Flamesent:7CD5:/ +1000.0 "--sync--" Ability { id: "7CD0", source: "Rubicante" } window 1000,0 +1011.1 "Ghastly Torch" Ability { id: "7CD4", source: "Greater Flamesent" } +1012.1 "Ghastly Flame" Ability { id: "7CD7", source: "Flamesent" } +1016.2 "Ghastly Wind" Ability { id: "7CD6", source: "Flamesent" } +1017.2 "Ghastly Torch" Ability { id: "7CD4", source: "Greater Flamesent" } +1022.2 "Shattering Heat" Ability { id: "7CD5", source: "Flamesent" } # Phase 2 (Flamerake & Sweeping Immolation) -1986.4 "--sync--" sync / 14:[^:]*:Rubicante:7CD2:/ window 1000,0 +1986.4 "--sync--" StartsUsing { id: "7CD2", source: "Rubicante" } window 1000,0 1986.4 "--targetable--" -2000.0 "Blazing Rapture" sync / 1[56]:[^:]*:Rubicante:7CD2:/ +2000.0 "Blazing Rapture" Ability { id: "7CD2", source: "Rubicante" } 2013.4 "--untargetable--" 2036.4 "--targetable--" -2048.5 "Inferno (spread)" sync / 1[56]:[^:]*:Rubicante:7CDA:/ -2062.2 "--sync--" sync / 1[56]:[^:]*:Rubicante:7CDD:/ -2064.6 "Flamerake 1" sync / 1[56]:[^:]*:Rubicante:7CDF:/ -2065.6 "Flamerake 2" sync / 1[56]:[^:]*:Rubicante:7CE0:/ -2066.6 "Flamerake 3" sync / 1[56]:[^:]*:Rubicante:7CE1:/ -2077.0 "--sync--" sync / 1[56]:[^:]*:Rubicante:7CC3:/ -2082.0 "Soulscald" sync / 1[56]:[^:]*:Rubicante:7CE6:/ -2088.1 "Scalding Fleet" #sync / 1[56]:[^:]*:Rubicante Mirage:7CE9:/ -2094.3 "--sync--" sync / 1[56]:[^:]*:Rubicante:8034:/ -2099.3 "Dualfire" sync / 1[56]:[^:]*:Rubicante:7D95:/ -2114.1 "Sweeping Immolation" sync / 1[56]:[^:]*:Rubicante:7CE3:/ -2114.5 "Total Immolation" sync / 1[56]:[^:]*:Rubicante:7CE5:/ window 30,30 +2048.5 "Inferno (spread)" Ability { id: "7CDA", source: "Rubicante" } +2062.2 "--sync--" Ability { id: "7CDD", source: "Rubicante" } +2064.6 "Flamerake 1" Ability { id: "7CDF", source: "Rubicante" } +2065.6 "Flamerake 2" Ability { id: "7CE0", source: "Rubicante" } +2066.6 "Flamerake 3" Ability { id: "7CE1", source: "Rubicante" } +2077.0 "--sync--" Ability { id: "7CC3", source: "Rubicante" } +2082.0 "Soulscald" Ability { id: "7CE6", source: "Rubicante" } +2088.1 "Scalding Fleet" #Ability { id: "7CE9", source: "Rubicante Mirage" } +2094.3 "--sync--" Ability { id: "8034", source: "Rubicante" } +2099.3 "Dualfire" Ability { id: "7D95", source: "Rubicante" } +2114.1 "Sweeping Immolation" Ability { id: "7CE3", source: "Rubicante" } +2114.5 "Total Immolation" Ability { id: "7CE5", source: "Rubicante" } window 30,30 # Loop begins -2127.5 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -2129.7 "Hope Abandon Ye" sync / 1[56]:[^:]*:Rubicante:7F26:/ -2139.1 "Arcane Revelation" sync / 1[56]:[^:]*:Rubicante:7CBE:/ -2160.0 "Ordeal of Purgation" sync / 1[56]:[^:]*:Rubicante:80E8:/ -2168.0 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CC5:/ -2184.7 "Ordeal of Purgation" sync / 1[56]:[^:]*:Rubicante:80E8:/ -2192.7 "Fiery Expiation" sync / 1[56]:[^:]*:Circle of Purgatory:7CC5:/ -2201.7 "Inferno (aoe)" sync / 1[56]:[^:]*:Rubicante:7CEA:/ -2207.8 "--middle--" sync / 1[56]:[^:]*:Rubicante:7CBC:/ -2215.8 "Arch Inferno" sync / 1[56]:[^:]*:Rubicante:7CC7:/ -2215.8 "Inferno Devil" sync / 1[56]:[^:]*:Rubicante:7CC9:/ -2218.9 "Infernal Slaughter" sync / 1[56]:[^:]*:Rubicante:7CCE:/ -2225.9 "Conflagration" sync / 1[56]:[^:]*:Rubicante:7CCB:/ -2229.0 "Infernal Slaughter" sync / 1[56]:[^:]*:Rubicante:7CCE:/ -2236.0 "Radial Flagration" sync / 1[56]:[^:]*:Rubicante:7CCC:/ -2257.3 "--sync--" sync / 1[56]:[^:]*:Rubicante:7CDD:/ -2259.5 "Flamerake 1" sync / 1[56]:[^:]*:Rubicante:7CDF:/ -2260.5 "Flamerake 2" sync / 1[56]:[^:]*:Rubicante:7CE0:/ -2261.5 "Flamerake 3" sync / 1[56]:[^:]*:Rubicante:7CE1:/ -2273.5 "Inferno (spread)" sync / 1[56]:[^:]*:Rubicante:7CDA:/ -2281.8 "--sync--" sync / 1[56]:[^:]*:Rubicante:7CC3:/ -2286.8 "Soulscald" sync / 1[56]:[^:]*:Rubicante:7CE6:/ -2292.9 "Scalding Fleet" #sync / 1[56]:[^:]*:Rubicante Mirage:7CE9:/ -2299.1 "--sync--" sync / 1[56]:[^:]*:Rubicante:8034:/ -2304.1 "Dualfire" sync / 1[56]:[^:]*:Rubicante:7D95:/ -2318.9 "Sweeping Immolation" sync / 1[56]:[^:]*:Rubicante:7CE3:/ -2319.3 "Total Immolation" sync / 1[56]:[^:]*:Rubicante:7CE5:/ window 30,10000 jump 1114.5 +2127.5 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +2129.7 "Hope Abandon Ye" Ability { id: "7F26", source: "Rubicante" } +2139.1 "Arcane Revelation" Ability { id: "7CBE", source: "Rubicante" } +2160.0 "Ordeal of Purgation" Ability { id: "80E8", source: "Rubicante" } +2168.0 "Fiery Expiation" Ability { id: "7CC5", source: "Circle of Purgatory" } +2184.7 "Ordeal of Purgation" Ability { id: "80E8", source: "Rubicante" } +2192.7 "Fiery Expiation" Ability { id: "7CC5", source: "Circle of Purgatory" } +2201.7 "Inferno (aoe)" Ability { id: "7CEA", source: "Rubicante" } +2207.8 "--middle--" Ability { id: "7CBC", source: "Rubicante" } +2215.8 "Arch Inferno" Ability { id: "7CC7", source: "Rubicante" } +2215.8 "Inferno Devil" Ability { id: "7CC9", source: "Rubicante" } +2218.9 "Infernal Slaughter" Ability { id: "7CCE", source: "Rubicante" } +2225.9 "Conflagration" Ability { id: "7CCB", source: "Rubicante" } +2229.0 "Infernal Slaughter" Ability { id: "7CCE", source: "Rubicante" } +2236.0 "Radial Flagration" Ability { id: "7CCC", source: "Rubicante" } +2257.3 "--sync--" Ability { id: "7CDD", source: "Rubicante" } +2259.5 "Flamerake 1" Ability { id: "7CDF", source: "Rubicante" } +2260.5 "Flamerake 2" Ability { id: "7CE0", source: "Rubicante" } +2261.5 "Flamerake 3" Ability { id: "7CE1", source: "Rubicante" } +2273.5 "Inferno (spread)" Ability { id: "7CDA", source: "Rubicante" } +2281.8 "--sync--" Ability { id: "7CC3", source: "Rubicante" } +2286.8 "Soulscald" Ability { id: "7CE6", source: "Rubicante" } +2292.9 "Scalding Fleet" #Ability { id: "7CE9", source: "Rubicante Mirage" } +2299.1 "--sync--" Ability { id: "8034", source: "Rubicante" } +2304.1 "Dualfire" Ability { id: "7D95", source: "Rubicante" } +2318.9 "Sweeping Immolation" Ability { id: "7CE3", source: "Rubicante" } +2319.3 "Total Immolation" Ability { id: "7CE5", source: "Rubicante" } window 30,10000 jump 1114.5 # pretty sure this is the end of the loop, but didn't go far enough to see it loop around again # Fake loop diff --git a/ui/raidboss/data/06-ew/trial/sephirot-un.txt b/ui/raidboss/data/06-ew/trial/sephirot-un.txt index 14930e55a6..cb2e9f313e 100644 --- a/ui/raidboss/data/06-ew/trial/sephirot-un.txt +++ b/ui/raidboss/data/06-ew/trial/sephirot-un.txt @@ -5,45 +5,45 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.1 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:7693:/ window 7.1,5 -11.2 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -17.4 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.1 "Triple Trial" Ability { id: "7693", source: "Sephirot" } window 7.1,5 +11.2 "Tiferet" Ability { id: "7695", source: "Sephirot" } +17.4 "Tiferet" Ability { id: "7695", source: "Sephirot" } # Phase 1 rotation block, 76.3 seconds -21.6 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:7693:/ -25.6 "Ein Sof (4 puddles)" sync / 1[56]:[^:]*:Sephirot:769B:/ -29.7 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -38.3 "Fiendish Rage 1" sync / 1[56]:[^:]*:Sephirot:769A:/ -42.0 "Fiendish Rage 2" sync / 1[56]:[^:]*:Sephirot:769A:/ -49.2 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -53.3 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -59.4 "Chesed" sync / 1[56]:[^:]*:Sephirot:7694:/ window 20,20 -61.6 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:7693:/ -67.7 "Ein Sof (1 puddle)" sync / 1[56]:[^:]*:Sephirot:769B:/ -70.9 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -81.3 "Ratzon" # sync / 1[56]:[^:]*:Sephirot:7697:/ -85.5 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -89.6 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -95.7 "Chesed" sync / 1[56]:[^:]*:Sephirot:7694:/ window 20,20 +21.6 "Triple Trial" Ability { id: "7693", source: "Sephirot" } +25.6 "Ein Sof (4 puddles)" Ability { id: "769B", source: "Sephirot" } +29.7 "Tiferet" Ability { id: "7695", source: "Sephirot" } +38.3 "Fiendish Rage 1" Ability { id: "769A", source: "Sephirot" } +42.0 "Fiendish Rage 2" Ability { id: "769A", source: "Sephirot" } +49.2 "Tiferet" Ability { id: "7695", source: "Sephirot" } +53.3 "Tiferet" Ability { id: "7695", source: "Sephirot" } +59.4 "Chesed" Ability { id: "7694", source: "Sephirot" } window 20,20 +61.6 "Triple Trial" Ability { id: "7693", source: "Sephirot" } +67.7 "Ein Sof (1 puddle)" Ability { id: "769B", source: "Sephirot" } +70.9 "Tiferet" Ability { id: "7695", source: "Sephirot" } +81.3 "Ratzon" # Ability { id: "7697", source: "Sephirot" } +85.5 "Tiferet" Ability { id: "7695", source: "Sephirot" } +89.6 "Tiferet" Ability { id: "7695", source: "Sephirot" } +95.7 "Chesed" Ability { id: "7694", source: "Sephirot" } window 20,20 -97.9 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:7693:/ -101.9 "Ein Sof (4 puddles)" sync / 1[56]:[^:]*:Sephirot:769B:/ -106.0 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -114.6 "Fiendish Rage 1" sync / 1[56]:[^:]*:Sephirot:769A:/ -118.3 "Fiendish Rage 2" sync / 1[56]:[^:]*:Sephirot:769A:/ -125.5 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -129.6 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -135.7 "Chesed" sync / 1[56]:[^:]*:Sephirot:7694:/ window 20,20 -137.9 "Triple Trial" sync / 1[56]:[^:]*:Sephirot:7693:/ -144.0 "Ein Sof (1 puddle)" sync / 1[56]:[^:]*:Sephirot:769B:/ -147.2 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -157.6 "Ratzon" # sync / 1[56]:[^:]*:Sephirot:7697:/ -161.8 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -165.9 "Tiferet" sync / 1[56]:[^:]*:Sephirot:7695:/ -172.0 "Chesed" sync / 1[56]:[^:]*:Sephirot:7694:/ window 20,20 jump 95.7 +97.9 "Triple Trial" Ability { id: "7693", source: "Sephirot" } +101.9 "Ein Sof (4 puddles)" Ability { id: "769B", source: "Sephirot" } +106.0 "Tiferet" Ability { id: "7695", source: "Sephirot" } +114.6 "Fiendish Rage 1" Ability { id: "769A", source: "Sephirot" } +118.3 "Fiendish Rage 2" Ability { id: "769A", source: "Sephirot" } +125.5 "Tiferet" Ability { id: "7695", source: "Sephirot" } +129.6 "Tiferet" Ability { id: "7695", source: "Sephirot" } +135.7 "Chesed" Ability { id: "7694", source: "Sephirot" } window 20,20 +137.9 "Triple Trial" Ability { id: "7693", source: "Sephirot" } +144.0 "Ein Sof (1 puddle)" Ability { id: "769B", source: "Sephirot" } +147.2 "Tiferet" Ability { id: "7695", source: "Sephirot" } +157.6 "Ratzon" # Ability { id: "7697", source: "Sephirot" } +161.8 "Tiferet" Ability { id: "7695", source: "Sephirot" } +165.9 "Tiferet" Ability { id: "7695", source: "Sephirot" } +172.0 "Chesed" Ability { id: "7694", source: "Sephirot" } window 20,20 jump 95.7 174.2 "Triple Trial" 178.2 "Ein Sof (4 puddles)" @@ -58,86 +58,86 @@ hideall "--sync--" # Instead we just go straight for the ultimate cast. (It has no cast time.) # However, we don't want timeline triggers firing during the intermission. -500.0 "--sync--" sync / 22:........:Sephirot:........:Sephirot:00/ window 500,0 -1000.0 "Ein Sof Ohr" sync / 1[56]:[^:]*:Sephirot:769E:/ window 1000,5 +500.0 "--sync--" NameToggle { name: "Sephirot", toggle: "00" } window 500,0 +1000.0 "Ein Sof Ohr" Ability { id: "769E", source: "Sephirot" } window 1000,5 # Phase 2 rotation block, 197.3 seconds -1013.2 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ window 30,30 -1016.2 "Force Field" sync / 1[56]:[^:]*:Sephirot:76B4:/ -1028.4 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1029.0 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1034.6 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1042.7 "Da'at Tethers" duration 5 #sync / 1[56]:[^:]*:Sephirot:769F:/ -1053.3 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1060.3 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1060.9 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1068.4 "Earth Shaker" sync / 1[56]:[^:]*:Sephirot:76AA:/ -1070.1 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ window 20,20 -1077.7 "Da'at spread" duration 3.2 #sync / 1[56]:[^:]*:Sephirot:76AD:/ -1085.1 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1092.2 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1092.9 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1101.0 "Pillar of Mercy 1" sync / 1[56]:[^:]*:Sephirot:76AD:/ -1101.3 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ window 20,20 -1106.2 "Pillar of Mercy 2" sync / 1[56]:[^:]*:Sephirot:76AD:/ -1110.1 "Pillar of Mercy 3" sync / 1[56]:[^:]*:Sephirot:76AD:/ -1119.3 "Earth Shaker" sync / 1[56]:[^:]*:Sephirot:76AA:/ -1128.8 "Da'at spread" duration 3.2 #sync / 1[56]:[^:]*:Sephirot:76AD:/ -1129.7 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ window 20,20 -1136.1 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1143.2 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1143.8 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1149.4 "Malkuth" sync / 1[56]:[^:]*:Sephirot:76AF:/ window 30,30 -1150.5 "Adds Spawn" sync / 03:........:Storm Of Words:/ -1158.7 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1159.3 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1164.9 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1166.5 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ -1172.2 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1172.8 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1185.8 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ -1188.4 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1189.0 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1191.6 "Pillar of Severity" sync / 1[56]:[^:]*:Sephirot:76B2:/ -1195.3 "Impact of Hod" sync / 1[56]:[^:]*:Sephirot:76BA:/ -1199.7 "Ascension" sync / 1[56]:[^:]*:Coronal Wind:76B1:/ +1013.2 "Yesod" Ability { id: "76AB", source: "Sephirot" } window 30,30 +1016.2 "Force Field" Ability { id: "76B4", source: "Sephirot" } +1028.4 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1029.0 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1034.6 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1042.7 "Da'at Tethers" duration 5 #Ability { id: "769F", source: "Sephirot" } +1053.3 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1060.3 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1060.9 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1068.4 "Earth Shaker" Ability { id: "76AA", source: "Sephirot" } +1070.1 "Yesod" Ability { id: "76AB", source: "Sephirot" } window 20,20 +1077.7 "Da'at spread" duration 3.2 #Ability { id: "76AD", source: "Sephirot" } +1085.1 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1092.2 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1092.9 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1101.0 "Pillar of Mercy 1" Ability { id: "76AD", source: "Sephirot" } +1101.3 "Yesod" Ability { id: "76AB", source: "Sephirot" } window 20,20 +1106.2 "Pillar of Mercy 2" Ability { id: "76AD", source: "Sephirot" } +1110.1 "Pillar of Mercy 3" Ability { id: "76AD", source: "Sephirot" } +1119.3 "Earth Shaker" Ability { id: "76AA", source: "Sephirot" } +1128.8 "Da'at spread" duration 3.2 #Ability { id: "76AD", source: "Sephirot" } +1129.7 "Yesod" Ability { id: "76AB", source: "Sephirot" } window 20,20 +1136.1 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1143.2 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1143.8 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1149.4 "Malkuth" Ability { id: "76AF", source: "Sephirot" } window 30,30 +1150.5 "Adds Spawn" AddedCombatant { name: "Storm Of Words" } +1158.7 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1159.3 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1164.9 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1166.5 "Yesod" Ability { id: "76AB", source: "Sephirot" } +1172.2 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1172.8 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1185.8 "Yesod" Ability { id: "76AB", source: "Sephirot" } +1188.4 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1189.0 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1191.6 "Pillar of Severity" Ability { id: "76B2", source: "Sephirot" } +1195.3 "Impact of Hod" Ability { id: "76BA", source: "Sephirot" } +1199.7 "Ascension" Ability { id: "76B1", source: "Coronal Wind" } -1210.4 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ window 30,30 -1213.5 "Force Field" sync / 1[56]:[^:]*:Sephirot:76B4:/ -1225.7 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1226.3 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1231.9 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1240.0 "Da'at Tethers" duration 5 #sync / 1[56]:[^:]*:Sephirot:769F:/ -1250.6 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1257.6 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1258.2 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1265.7 "Earth Shaker" sync / 1[56]:[^:]*:Sephirot:76AA:/ -1267.4 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ window 20,20 -1275.0 "Da'at spread" duration 3.2 #sync / 1[56]:[^:]*:Sephirot:76AD:/ -1282.4 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1289.5 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1290.2 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1298.3 "Pillar of Mercy 1" sync / 1[56]:[^:]*:Sephirot:76AD:/ -1298.6 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ window 20,20 -1303.5 "Pillar of Mercy 2" sync / 1[56]:[^:]*:Sephirot:76AD:/ -1307.4 "Pillar of Mercy 3" sync / 1[56]:[^:]*:Sephirot:76AD:/ -1316.6 "Earth Shaker" sync / 1[56]:[^:]*:Sephirot:76AA:/ -1326.1 "Da'at spread" duration 3.2 #sync / 1[56]:[^:]*:Sephirot:76AD:/ -1327.0 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ window 20,20 -1333.4 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1340.5 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1341.1 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1346.7 "Malkuth" sync / 1[56]:[^:]*:Sephirot:76AF:/ -1347.8 "Adds Spawn" sync / 03:........:Storm Of Words:/ -1356.0 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1356.6 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1362.2 "Fiendish Wail" sync / 1[56]:[^:]*:Sephirot:76A3:/ -1363.8 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ -1369.5 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1370.1 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1382.9 "Yesod" sync / 1[56]:[^:]*:Sephirot:76AB:/ -1385.7 "Chesed Gevurah" sync / 1[56]:[^:]*:Sephirot:(76A5|76A6):/ -1386.3 "Life Force + Spirit" sync / 1[56]:[^:]*:Sephirot:(76A7|76A8):/ -1388.9 "Pillar of Severity" sync / 1[56]:[^:]*:Sephirot:76B2:/ -1392.6 "Impact of Hod" sync / 1[56]:[^:]*:Sephirot:76BA:/ -1397.0 "Pillar of Severity Enrage" sync / 1[56]:[^:]*:Sephirot:76B2:/ +1210.4 "Yesod" Ability { id: "76AB", source: "Sephirot" } window 30,30 +1213.5 "Force Field" Ability { id: "76B4", source: "Sephirot" } +1225.7 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1226.3 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1231.9 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1240.0 "Da'at Tethers" duration 5 #Ability { id: "769F", source: "Sephirot" } +1250.6 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1257.6 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1258.2 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1265.7 "Earth Shaker" Ability { id: "76AA", source: "Sephirot" } +1267.4 "Yesod" Ability { id: "76AB", source: "Sephirot" } window 20,20 +1275.0 "Da'at spread" duration 3.2 #Ability { id: "76AD", source: "Sephirot" } +1282.4 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1289.5 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1290.2 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1298.3 "Pillar of Mercy 1" Ability { id: "76AD", source: "Sephirot" } +1298.6 "Yesod" Ability { id: "76AB", source: "Sephirot" } window 20,20 +1303.5 "Pillar of Mercy 2" Ability { id: "76AD", source: "Sephirot" } +1307.4 "Pillar of Mercy 3" Ability { id: "76AD", source: "Sephirot" } +1316.6 "Earth Shaker" Ability { id: "76AA", source: "Sephirot" } +1326.1 "Da'at spread" duration 3.2 #Ability { id: "76AD", source: "Sephirot" } +1327.0 "Yesod" Ability { id: "76AB", source: "Sephirot" } window 20,20 +1333.4 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1340.5 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1341.1 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1346.7 "Malkuth" Ability { id: "76AF", source: "Sephirot" } +1347.8 "Adds Spawn" AddedCombatant { name: "Storm Of Words" } +1356.0 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1356.6 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1362.2 "Fiendish Wail" Ability { id: "76A3", source: "Sephirot" } +1363.8 "Yesod" Ability { id: "76AB", source: "Sephirot" } +1369.5 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1370.1 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1382.9 "Yesod" Ability { id: "76AB", source: "Sephirot" } +1385.7 "Chesed Gevurah" Ability { id: ["76A5", "76A6"], source: "Sephirot" } +1386.3 "Life Force + Spirit" Ability { id: ["76A7", "76A8"], source: "Sephirot" } +1388.9 "Pillar of Severity" Ability { id: "76B2", source: "Sephirot" } +1392.6 "Impact of Hod" Ability { id: "76BA", source: "Sephirot" } +1397.0 "Pillar of Severity Enrage" Ability { id: "76B2", source: "Sephirot" } diff --git a/ui/raidboss/data/06-ew/trial/sophia-un.txt b/ui/raidboss/data/06-ew/trial/sophia-un.txt index f0273f59f9..c825513ede 100644 --- a/ui/raidboss/data/06-ew/trial/sophia-un.txt +++ b/ui/raidboss/data/06-ew/trial/sophia-un.txt @@ -17,105 +17,105 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -12.0 "Thunder II" sync / 1[56]:[^:]*:Sophia:7DAA:/ window 12,5 -22.4 "Gnosis" sync / 1[56]:[^:]*:Barbelo:7DBC:/ -41.4 "Arms Of Wisdom?" sync / 1[56]:[^:]*:Sophia:7DBE:/ # May be skipped depending on DPS +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +12.0 "Thunder II" Ability { id: "7DAA", source: "Sophia" } window 12,5 +22.4 "Gnosis" Ability { id: "7DBC", source: "Barbelo" } +41.4 "Arms Of Wisdom?" Ability { id: "7DBE", source: "Sophia" } # May be skipped depending on DPS # This section will be reached either at 56.0, or at the time she is pushed to 90% -56.0 "--clones appear--" sync / 03:........:Aion Teleos:/ window 56,5 -63.6 "Thunder II/III" sync / 1[56]:[^:]*:Sophia:(7DA6|7DAA):/ -63.6 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:7DA5:/ window 30,2.5 -69.7 "Aero III" sync / 1[56]:[^:]*:Sophia:7DA8:/ -69.7 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:7DA5:/ -79.8 "Execute" sync / 1[56]:[^:]*:Sophia:7DA4:/ -#79.8 "Execute" sync / 1[56]:[^:]*:Aion Teleos:7DA9:/ -90.2 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ +56.0 "--clones appear--" AddedCombatant { name: "Aion Teleos" } window 56,5 +63.6 "Thunder II/III" Ability { id: ["7DA6", "7DAA"], source: "Sophia" } +63.6 "--sync--" Ability { id: "7DA5", source: "Aion Teleos" } window 30,2.5 +69.7 "Aero III" Ability { id: "7DA8", source: "Sophia" } +69.7 "--sync--" Ability { id: "7DA5", source: "Aion Teleos" } +79.8 "Execute" Ability { id: "7DA4", source: "Sophia" } +#79.8 "Execute" Ability { id: "7DA9", source: "Aion Teleos" } +90.2 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } # Intermission. # Divine Spark can be pushed and thus is not synced. # Gnostic Rant and Infusion are purely HP-based pushes. -110.6 "Cloudy Heavens" sync / 1[56]:[^:]*:Sophia:7DB8:/ window 110.6 +110.6 "Cloudy Heavens" Ability { id: "7DB8", source: "Sophia" } window 110.6 111.6 "--untargetable--" 111.6 "--adds spawn--" -120.9 "Horizontal Kenoma/Vertical Kenoma" sync / 1[56]:[^:]*:The First Demiurge:(7DB5|7DB6):/ -121.9 "Gnostic Spear" sync / 1[56]:[^:]*:The Third Demiurge:7DB3:/ -125.9 "Divine Spark" # sync / 1[56]:[^:]*:The Second Demiurge:7DB0:/ -129.0 "Ring Of Pain" sync / 1[56]:[^:]*:The Third Demiurge:7DB4:/ -135.1 "Horizontal Kenoma/Vertical Kenoma" sync / 1[56]:[^:]*:The First Demiurge:(7DB5|7DB6):/ -147.3 "Gnostic Spear?" sync / 1[56]:[^:]*:The Third Demiurge:7DB3:/ -149.2 "Horizontal Kenoma/Vertical Kenoma" sync / 1[56]:[^:]*:The First Demiurge:(7DB5|7DB6):/ +120.9 "Horizontal Kenoma/Vertical Kenoma" Ability { id: ["7DB5", "7DB6"], source: "The First Demiurge" } +121.9 "Gnostic Spear" Ability { id: "7DB3", source: "The Third Demiurge" } +125.9 "Divine Spark" # Ability { id: "7DB0", source: "The Second Demiurge" } +129.0 "Ring Of Pain" Ability { id: "7DB4", source: "The Third Demiurge" } +135.1 "Horizontal Kenoma/Vertical Kenoma" Ability { id: ["7DB5", "7DB6"], source: "The First Demiurge" } +147.3 "Gnostic Spear?" Ability { id: "7DB3", source: "The Third Demiurge" } +149.2 "Horizontal Kenoma/Vertical Kenoma" Ability { id: ["7DB5", "7DB6"], source: "The First Demiurge" } 191.6 "Zombification Enrage?" # There's an introductory block leading into a rotation. -250.0 "The Scales Of Wisdom" sync / 1[56]:[^:]*:Sophia:7D9C:/ window 250,5 -267.5 "The Scales Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DC6:/ +250.0 "The Scales Of Wisdom" Ability { id: "7D9C", source: "Sophia" } window 250,5 +267.5 "The Scales Of Wisdom" Ability { id: "7DC6", source: "Sophia" } 272.9 "--targetable--" -280.8 "Quasar (Snapshot)" sync / 1[56]:[^:]*:Sophia:(7D9B|7DA1):/ -286.8 "Quasar (Meteor Detonate)" sync / 1[56]:[^:]*:Sophia:7E81:/ -291.3 "Aero III/Thunder II/Thunder III" sync / 1[56]:[^:]*:Sophia:(7DA6|7DA8|7DAA):/ window 41.3,5 -297.1 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:7D9B:/ -305.7 "Quasar (Tilt)" sync / 1[56]:[^:]*:Sophia:7E46:/ -310.7 "Cintamani x2" duration 3 # sync / 1[56]:[^:]*:Sophia:7DBF:/ -318.8 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ +280.8 "Quasar (Snapshot)" Ability { id: ["7D9B", "7DA1"], source: "Sophia" } +286.8 "Quasar (Meteor Detonate)" Ability { id: "7E81", source: "Sophia" } +291.3 "Aero III/Thunder II/Thunder III" Ability { id: ["7DA6", "7DA8", "7DAA"], source: "Sophia" } window 41.3,5 +297.1 "Quasar Tethers" Ability { id: "7D9B", source: "Sophia" } +305.7 "Quasar (Tilt)" Ability { id: "7E46", source: "Sophia" } +310.7 "Cintamani x2" duration 3 # Ability { id: "7DBF", source: "Sophia" } +318.8 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } # Potential landing point if DPS is high. Push seems to be 70%? -328.3 "Thunder II" sync / 1[56]:[^:]*:Sophia:7DAA:/ window 35.8,5 -334.0 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:7DA1:/ +328.3 "Thunder II" Ability { id: "7DAA", source: "Sophia" } window 35.8,5 +334.0 "Quasar Tethers" Ability { id: "7DA1", source: "Sophia" } 335.0 "--untargetable--" -341.2 "Onrush" sync / 1[56]:[^:]*:Sophia:7DBB:/ -341.8 "Quasar (Tilt)" # sync / 1[56]:[^:]*:Sophia:7E46:/ +341.2 "Onrush" Ability { id: "7DBB", source: "Sophia" } +341.8 "Quasar (Tilt)" # Ability { id: "7E46", source: "Sophia" } 345.4 "--targetable--" -361.5 "Dischordant Cleansing" # sync / 1[56]:[^:]*:Sophia:(7DAD|7DAF):/ -361.5 "Cintamani x2" duration 3 # sync / 1[56]:[^:]*:Sophia:7DBF:/ -370.8 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ window 30,5 -379.0 "--clones appear--" sync / 03:........:Aion Teleos:/ window 60,20 -382.0 "Cintamani x3" duration 6 # sync / 1[56]:[^:]*:Sophia:7DBF:/ -393.3 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:7DA5:/ -393.3 "Thunder II/III" sync / 1[56]:[^:]*:Sophia:(7DA6|7DAA):/ -399.4 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:7DA5:/ -399.4 "Aero III" sync / 1[56]:[^:]*:Sophia:7DA8:/ window 30,5 -408.5 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ -419.8 "Light Dew" sync / 1[56]:[^:]*:Barbelo:7DB9:/ -420.5 "Execute" sync / 1[56]:[^:]*:Sophia:7DA4:/ window 30,30 +361.5 "Dischordant Cleansing" # Ability { id: ["7DAD", "7DAF"], source: "Sophia" } +361.5 "Cintamani x2" duration 3 # Ability { id: "7DBF", source: "Sophia" } +370.8 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } window 30,5 +379.0 "--clones appear--" AddedCombatant { name: "Aion Teleos" } window 60,20 +382.0 "Cintamani x3" duration 6 # Ability { id: "7DBF", source: "Sophia" } +393.3 "--sync--" Ability { id: "7DA5", source: "Aion Teleos" } +393.3 "Thunder II/III" Ability { id: ["7DA6", "7DAA"], source: "Sophia" } +399.4 "--sync--" Ability { id: "7DA5", source: "Aion Teleos" } +399.4 "Aero III" Ability { id: "7DA8", source: "Sophia" } window 30,5 +408.5 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } +419.8 "Light Dew" Ability { id: "7DB9", source: "Barbelo" } +420.5 "Execute" Ability { id: "7DA4", source: "Sophia" } window 30,30 # Rotation block. # Technically it can loop, but unless party DPS is VERY high, # enrage will occur long before the second loop completes. -429.3 "Cintamani x3" duration 6 # sync / 1[56]:[^:]*:Sophia:7DBF:/ duration 5 -440.7 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ -446.5 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:7D9B:/ -455.2 "Quasar (Tilt)" sync / 1[56]:[^:]*:Sophia:7E46:/ -457.7 "Light Dew" sync / 1[56]:[^:]*:Barbelo:7DB9:/ window 30,30 -470.0 "Thunder III" sync / 1[56]:[^:]*:Sophia:7DA6:/ -478.3 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ -484.5 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:7DA1:/ +429.3 "Cintamani x3" duration 6 # Ability { id: "7DBF", source: "Sophia" } duration 5 +440.7 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } +446.5 "Quasar Tethers" Ability { id: "7D9B", source: "Sophia" } +455.2 "Quasar (Tilt)" Ability { id: "7E46", source: "Sophia" } +457.7 "Light Dew" Ability { id: "7DB9", source: "Barbelo" } window 30,30 +470.0 "Thunder III" Ability { id: "7DA6", source: "Sophia" } +478.3 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } +484.5 "Quasar Tethers" Ability { id: "7DA1", source: "Sophia" } 485.5 "--untargetable--" -493.2 "Quasar (Tilt)" sync / 1[56]:[^:]*:Sophia:7E46:/ -494.7 "Onrush" sync / 1[56]:[^:]*:Sophia:7DBB:/ -495.7 "Light Dew" sync / 1[56]:[^:]*:Barbelo:7DBA:/ window 30,30 +493.2 "Quasar (Tilt)" Ability { id: "7E46", source: "Sophia" } +494.7 "Onrush" Ability { id: "7DBB", source: "Sophia" } +495.7 "Light Dew" Ability { id: "7DBA", source: "Barbelo" } window 30,30 499.0 "--targetable--" -507.1 "Cintamani x3" duration 6 # sync / 1[56]:[^:]*:Sophia:7DBF:/ -518.3 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ -525.4 "Thunder II" sync / 1[56]:[^:]*:Sophia:7DAA:/ -535.9 "Dischordant Cleansing" # sync / 1[56]:[^:]*:Sophia:(7DAD|7DAF):/ -539.7 "Gnosis" sync / 1[56]:[^:]*:Barbelo:7DBC:/ window 30,5 -552.2 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ -567.0 "Quasar Tethers" sync / 1[56]:[^:]*:Sophia:7D9B:/ -568.3 "Dischordant Cleansing" # sync / 1[56]:[^:]*:Sophia:(7DAD|7DAF):/ -575.7 "Quasar (Tilt)" # sync / 1[56]:[^:]*:Sophia:7E46:/ -581.5 "Cintamani x3" duration 6 # sync / 1[56]:[^:]*:Sophia:7DBF:/ -577.5 "--clones appear--" sync / 03:........:Aion Teleos:/ window 60,5 -592.8 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ -599.9 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:7DA5:/ window 10,2.5 -599.9 "Thunder II/III" sync / 1[56]:[^:]*:Sophia:(7DA6|7DAA):/ -606.1 "--sync--" sync / 1[56]:[^:]*:Aion Teleos:7DA5:/ -606.1 "Aero III" sync / 1[56]:[^:]*:Sophia:7DA8:/ -611.9 "Quasar (Snapshot)" sync / 1[56]:[^:]*:Sophia:(7D9B|7DA1):/ -617.9 "Quasar (Meteor Detonate)" sync / 1[56]:[^:]*:Sophia:7E81:/ -624.4 "Arms Of Wisdom" sync / 1[56]:[^:]*:Sophia:7DBE:/ -636.6 "Dischordant Cleansing" # sync / 1[56]:[^:]*:Sophia:(7DAD|7DAF):/ -639.0 "Execute" sync / 1[56]:[^:]*:Sophia:7DA4:/ window 30,30 jump 420.5 +507.1 "Cintamani x3" duration 6 # Ability { id: "7DBF", source: "Sophia" } +518.3 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } +525.4 "Thunder II" Ability { id: "7DAA", source: "Sophia" } +535.9 "Dischordant Cleansing" # Ability { id: ["7DAD", "7DAF"], source: "Sophia" } +539.7 "Gnosis" Ability { id: "7DBC", source: "Barbelo" } window 30,5 +552.2 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } +567.0 "Quasar Tethers" Ability { id: "7D9B", source: "Sophia" } +568.3 "Dischordant Cleansing" # Ability { id: ["7DAD", "7DAF"], source: "Sophia" } +575.7 "Quasar (Tilt)" # Ability { id: "7E46", source: "Sophia" } +581.5 "Cintamani x3" duration 6 # Ability { id: "7DBF", source: "Sophia" } +577.5 "--clones appear--" AddedCombatant { name: "Aion Teleos" } window 60,5 +592.8 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } +599.9 "--sync--" Ability { id: "7DA5", source: "Aion Teleos" } window 10,2.5 +599.9 "Thunder II/III" Ability { id: ["7DA6", "7DAA"], source: "Sophia" } +606.1 "--sync--" Ability { id: "7DA5", source: "Aion Teleos" } +606.1 "Aero III" Ability { id: "7DA8", source: "Sophia" } +611.9 "Quasar (Snapshot)" Ability { id: ["7D9B", "7DA1"], source: "Sophia" } +617.9 "Quasar (Meteor Detonate)" Ability { id: "7E81", source: "Sophia" } +624.4 "Arms Of Wisdom" Ability { id: "7DBE", source: "Sophia" } +636.6 "Dischordant Cleansing" # Ability { id: ["7DAD", "7DAF"], source: "Sophia" } +639.0 "Execute" Ability { id: "7DA4", source: "Sophia" } window 30,30 jump 420.5 650.9 "Cintamani x3" 662.3 "Arms Of Wisdom" diff --git a/ui/raidboss/data/06-ew/trial/thordan-un.ts b/ui/raidboss/data/06-ew/trial/thordan-un.ts index 392bbbd217..85fe679998 100644 --- a/ui/raidboss/data/06-ew/trial/thordan-un.ts +++ b/ui/raidboss/data/06-ew/trial/thordan-un.ts @@ -644,7 +644,6 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', - 'missingTranslations': true, 'replaceSync': { 'Comet Circle': 'sceau de la comète', 'King Thordan': 'roi Thordan', @@ -663,6 +662,8 @@ const triggerSet: TriggerSet = { 'Ser Zephirin': 'sire Zéphirin', }, 'replaceText': { + '--chains appear--': '--Apparition des chaines--', + '--towers spawn--': '--Apparition des tours--', 'Absolute Conviction': 'Conviction absolue', 'Ancient Quaga': 'Méga Séisme ancien', 'Ascalon\'s Mercy': 'Grâce d\'Ascalon', diff --git a/ui/raidboss/data/06-ew/trial/thordan-un.txt b/ui/raidboss/data/06-ew/trial/thordan-un.txt index 4f9b4097b1..960ea554ba 100644 --- a/ui/raidboss/data/06-ew/trial/thordan-un.txt +++ b/ui/raidboss/data/06-ew/trial/thordan-un.txt @@ -13,42 +13,42 @@ hideall "--Reset--" hideall "--sync--" # Phase 1. Pushes at 70% HP? -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -5.0 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ -14.8 "Meteorain" sync / 1[56]:[^:]*:King Thordan:89C2:/ -15.1 "--sync--" sync / 1[56]:[^:]*:King Thordan:89C3:/ # Meteorain -20.0 "--sync--" sync / 1[56]:[^:]*:King Thordan:89BE:/ -20.0 "Ascalon's Mercy" sync / 1[56]:[^:]*:King Thordan:89BF:/ -22.1 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ -27.2 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:89C7:/ -37.3 "the Dragon's Gaze" sync / 1[56]:[^:]*:King Thordan:89C8:/ -42.4 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ -51.1 "Lightning Storm" sync / 1[56]:[^:]*:King Thordan:89C0:/ -51.5 "--sync--" sync / 1[56]:[^:]*:King Thordan:89C1:/ # Lightning Storm -58.2 "the Dragon's Rage" sync / 1[56]:[^:]*:King Thordan:89CA:/ -63.3 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:89C4:/ -69.4 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ -75.4 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:89C6:/ -77.5 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +5.0 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } +14.8 "Meteorain" Ability { id: "89C2", source: "King Thordan" } +15.1 "--sync--" Ability { id: "89C3", source: "King Thordan" } # Meteorain +20.0 "--sync--" Ability { id: "89BE", source: "King Thordan" } +20.0 "Ascalon's Mercy" Ability { id: "89BF", source: "King Thordan" } +22.1 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } +27.2 "the Dragon's Eye" Ability { id: "89C7", source: "King Thordan" } +37.3 "the Dragon's Gaze" Ability { id: "89C8", source: "King Thordan" } +42.4 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } +51.1 "Lightning Storm" Ability { id: "89C0", source: "King Thordan" } +51.5 "--sync--" Ability { id: "89C1", source: "King Thordan" } # Lightning Storm +58.2 "the Dragon's Rage" Ability { id: "89CA", source: "King Thordan" } +63.3 "Ancient Quaga" Ability { id: "89C4", source: "King Thordan" } +69.4 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } +75.4 "Heavenly Heel" Ability { id: "89C6", source: "King Thordan" } +77.5 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } 79.6 "--untargetable--" # Phase 2 # Intermission part 1 -82.4 "--sync--" sync / 1[56]:[^:]*:King Thordan:89BA:/ window 82.4,10 -91.4 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:89B7:/ -93.4 "--sync--" sync / 1[56]:[^:]*:Ser Hermenost:89B7:/ +82.4 "--sync--" Ability { id: "89BA", source: "King Thordan" } window 82.4,10 +91.4 "--sync--" Ability { id: "89B7", source: "Ser Charibert" } +93.4 "--sync--" Ability { id: "89B7", source: "Ser Hermenost" } 95.7 "--chains appear--" -98.0 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:89EA:/ window 10,10 # Heavensflame cast -98.4 "Heavensflame 1" #sync / 1[56]:[^:]*:Ser Charibert:89EB:/ -99.4 "Heavensflame 2" #sync / 1[56]:[^:]*:Ser Charibert:89EB:/ +98.0 "--sync--" Ability { id: "89EA", source: "Ser Charibert" } window 10,10 # Heavensflame cast +98.4 "Heavensflame 1" #Ability { id: "89EB", source: "Ser Charibert" } +99.4 "Heavensflame 2" #Ability { id: "89EB", source: "Ser Charibert" } 99.4 "--towers spawn--" -100.4 "Heavensflame 3" #sync / 1[56]:[^:]*:Ser Charibert:89EB:/ -101.4 "Heavensflame 4" #sync / 1[56]:[^:]*:Ser Charibert:89EB:/ -101.5 "--sync--" sync / 1[56]:[^:]*:Ser Hermenost:89DB:/ # Conviction (model animation, no actual snapshot) -104.3 "Conviction" sync / 1[56]:[^:]*:Ser Hermenost:89DC:/ -107.4 "Sacred Cross" sync / 14:[^:]*:Ser Zephirin:89CF:/ duration 19.7 -127.1 "--sync--" sync / 1[56]:[^:]*:Ser Zephirin:89CF:/ -133.1 "Spiral Thrust" sync / 1[56]:[^:]*:(Ser Ignasse|Ser Paulecrain|Ser Vellguine):89E5:/ +100.4 "Heavensflame 3" #Ability { id: "89EB", source: "Ser Charibert" } +101.4 "Heavensflame 4" #Ability { id: "89EB", source: "Ser Charibert" } +101.5 "--sync--" Ability { id: "89DB", source: "Ser Hermenost" } # Conviction (model animation, no actual snapshot) +104.3 "Conviction" Ability { id: "89DC", source: "Ser Hermenost" } +107.4 "Sacred Cross" StartsUsing { id: "89CF", source: "Ser Zephirin" } duration 19.7 +127.1 "--sync--" Ability { id: "89CF", source: "Ser Zephirin" } +133.1 "Spiral Thrust" Ability { id: "89E5", source: ["Ser Ignasse", "Ser Paulecrain", "Ser Vellguine"] } # Intermission part 2 # This loops until both Adelphel and Janlenoux are dead. @@ -59,155 +59,155 @@ hideall "--sync--" # but it's more important that we sync during the loop, # so we accept a small amount of jumpiness in the timeline. 140.2 "--targetable--" -150.2 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D2:/ -159.3 "Holy Bladedance" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D5:/ -175.3 "Skyward Leap 1" sync / 1[56]:[^:]*:Ser Vellguine:89E8:/ -177.3 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D2:/ -178.3 "Skyward Leap 2" sync / 1[56]:[^:]*:Ser Paulecrain:89E8:/ -179.4 "Heavenly Slash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D3:/ -181.3 "Skyward Leap 3" sync / 1[56]:[^:]*:Ser Ignasse:89E8:/ -192.4 "Holiest Of Holy" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D4:/ -198.5 "Holy Bladedance" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D5:/ -205.6 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D2:/ -212.7 "Holiest Of Holy" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D4:/ -216.8 "Heavenly Slash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D3:/ +150.2 "Divine Right" Ability { id: "89D2", source: ["Ser Adelphel", "Ser Janlenoux"] } +159.3 "Holy Bladedance" Ability { id: "89D5", source: ["Ser Adelphel", "Ser Janlenoux"] } +175.3 "Skyward Leap 1" Ability { id: "89E8", source: "Ser Vellguine" } +177.3 "Divine Right" Ability { id: "89D2", source: ["Ser Adelphel", "Ser Janlenoux"] } +178.3 "Skyward Leap 2" Ability { id: "89E8", source: "Ser Paulecrain" } +179.4 "Heavenly Slash" Ability { id: "89D3", source: ["Ser Adelphel", "Ser Janlenoux"] } +181.3 "Skyward Leap 3" Ability { id: "89E8", source: "Ser Ignasse" } +192.4 "Holiest Of Holy" Ability { id: "89D4", source: ["Ser Adelphel", "Ser Janlenoux"] } +198.5 "Holy Bladedance" Ability { id: "89D5", source: ["Ser Adelphel", "Ser Janlenoux"] } +205.6 "Divine Right" Ability { id: "89D2", source: ["Ser Adelphel", "Ser Janlenoux"] } +212.7 "Holiest Of Holy" Ability { id: "89D4", source: ["Ser Adelphel", "Ser Janlenoux"] } +216.8 "Heavenly Slash" Ability { id: "89D3", source: ["Ser Adelphel", "Ser Janlenoux"] } -232.9 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D2:/ -242.0 "Holy Bladedance" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D5:/ -260.0 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D2:/ -262.1 "Heavenly Slash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D3:/ -275.2 "Holiest Of Holy" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D4:/ -281.3 "Holy Bladedance" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D5:/ -288.3 "Divine Right" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D2:/ -295.4 "Holiest Of Holy" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D4:/ -299.5 "Heavenly Slash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D3:/ forcejump 216.8 +232.9 "Divine Right" Ability { id: "89D2", source: ["Ser Adelphel", "Ser Janlenoux"] } +242.0 "Holy Bladedance" Ability { id: "89D5", source: ["Ser Adelphel", "Ser Janlenoux"] } +260.0 "Divine Right" Ability { id: "89D2", source: ["Ser Adelphel", "Ser Janlenoux"] } +262.1 "Heavenly Slash" Ability { id: "89D3", source: ["Ser Adelphel", "Ser Janlenoux"] } +275.2 "Holiest Of Holy" Ability { id: "89D4", source: ["Ser Adelphel", "Ser Janlenoux"] } +281.3 "Holy Bladedance" Ability { id: "89D5", source: ["Ser Adelphel", "Ser Janlenoux"] } +288.3 "Divine Right" Ability { id: "89D2", source: ["Ser Adelphel", "Ser Janlenoux"] } +295.4 "Holiest Of Holy" Ability { id: "89D4", source: ["Ser Adelphel", "Ser Janlenoux"] } +299.5 "Heavenly Slash" Ability { id: "89D3", source: ["Ser Adelphel", "Ser Janlenoux"] } forcejump 216.8 # Intermission part 3 -350.0 "--sync--" sync / 1[56]:[^:]*:Ser Paulecrain:89B7:/ window 150,10 -352.0 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:89B7:/ window 150,10 -353.0 "--sync--" sync / 1[56]:[^:]*:Ser Haumeric:89B7:/ window 150,10 -359.6 "Hiemal Storm" sync / 1[56]:[^:]*:Ser Haumeric:89ED:/ window 328,10 -359.8 "--sync--" sync / 1[56]:[^:]*:(Ser Haumeric|Ser Noudenet):89EE:/ # Hiemal Storm -360.2 "Spiral Pierce" sync / 1[56]:[^:]*:(Ser Ignasse|Ser Paulecrain|Ser Vellguine):89E6:/ -361.5 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:89D8:/ -361.9 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:89D9:/ # Dimensional Collapse -365.0 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:89DA:/ +350.0 "--sync--" Ability { id: "89B7", source: "Ser Paulecrain" } window 150,10 +352.0 "--sync--" Ability { id: "89B7", source: "Ser Grinnaux" } window 150,10 +353.0 "--sync--" Ability { id: "89B7", source: "Ser Haumeric" } window 150,10 +359.6 "Hiemal Storm" Ability { id: "89ED", source: "Ser Haumeric" } window 328,10 +359.8 "--sync--" Ability { id: "89EE", source: ["Ser Haumeric", "Ser Noudenet"] } # Hiemal Storm +360.2 "Spiral Pierce" Ability { id: "89E6", source: ["Ser Ignasse", "Ser Paulecrain", "Ser Vellguine"] } +361.5 "Dimensional Collapse" Ability { id: "89D8", source: "Ser Grinnaux" } +361.9 "--sync--" Ability { id: "89D9", source: "Ser Grinnaux" } # Dimensional Collapse +365.0 "Faith Unmoving" Ability { id: "89DA", source: "Ser Grinnaux" } # Intermission part 4 # Two sets of four Heavy Impacts used during this intermission. # They overlap heavily. Because they use different IDs for each ring, # it's safe to leave them all synced. -366.0 "Holy Meteor" sync / 1[56]:[^:]*:Ser Noudenet:89EF:/ window 220,10 -374.6 "Heavy Impact Set 1" sync / 1[56]:[^:]*:Ser Guerrique:89DE:/ duration 10 -376.0 "Comet x4" duration 4 #sync / 1[56]:[^:]*:Ser Noudenet:89F4:/ -379.9 "Heavy Impact Set 2" sync / 1[56]:[^:]*:Ser Guerrique:89DE:/ duration 10 -383.8 "Comet x4" duration 4 #sync / 1[56]:[^:]*:Ser Noudenet:89F4:/ -398.1 "Comet Impact" sync / 1[56]:[^:]*:Comet Circle:89F2:/ -420.7 "Meteor Impact Enrage" sync / 1[56]:[^:]*:Meteor Circle:89F3:/ +366.0 "Holy Meteor" Ability { id: "89EF", source: "Ser Noudenet" } window 220,10 +374.6 "Heavy Impact Set 1" Ability { id: "89DE", source: "Ser Guerrique" } duration 10 +376.0 "Comet x4" duration 4 #Ability { id: "89F4", source: "Ser Noudenet" } +379.9 "Heavy Impact Set 2" Ability { id: "89DE", source: "Ser Guerrique" } duration 10 +383.8 "Comet x4" duration 4 #Ability { id: "89F4", source: "Ser Noudenet" } +398.1 "Comet Impact" Ability { id: "89F2", source: "Comet Circle" } +420.7 "Meteor Impact Enrage" Ability { id: "89F3", source: "Meteor Circle" } -427.0 "--sync--" sync / 1[56]:[^:]*:King Thordan:89BB:/ window 260,10 -437.7 "The Light Of Ascalon 1" #sync / 1[56]:[^:]*:Ascalon:89CE:/ -439.1 "The Light Of Ascalon 2" #sync / 1[56]:[^:]*:Ascalon:89CE:/ -440.5 "The Light Of Ascalon 3" #sync / 1[56]:[^:]*:Ascalon:89CE:/ -441.9 "The Light Of Ascalon 4" #sync / 1[56]:[^:]*:Ascalon:89CE:/ -443.3 "The Light Of Ascalon 5" #sync / 1[56]:[^:]*:Ascalon:89CE:/ -444.7 "The Light Of Ascalon 6" #sync / 1[56]:[^:]*:Ascalon:89CE:/ -446.1 "The Light Of Ascalon 7" #sync / 1[56]:[^:]*:Ascalon:89CE:/ -447.2 "--sync--" sync / 1[56]:[^:]*:King Thordan:89CC:/ # Ultimate End wind-up -451.8 "--sync--" sync / 1[56]:[^:]*:[^:]*:89B9:/ # All the knights use this unknown attack here -455.8 "Ultimate End" sync / 1[56]:[^:]*:King Thordan:89CD:/ +427.0 "--sync--" Ability { id: "89BB", source: "King Thordan" } window 260,10 +437.7 "The Light Of Ascalon 1" #Ability { id: "89CE", source: "Ascalon" } +439.1 "The Light Of Ascalon 2" #Ability { id: "89CE", source: "Ascalon" } +440.5 "The Light Of Ascalon 3" #Ability { id: "89CE", source: "Ascalon" } +441.9 "The Light Of Ascalon 4" #Ability { id: "89CE", source: "Ascalon" } +443.3 "The Light Of Ascalon 5" #Ability { id: "89CE", source: "Ascalon" } +444.7 "The Light Of Ascalon 6" #Ability { id: "89CE", source: "Ascalon" } +446.1 "The Light Of Ascalon 7" #Ability { id: "89CE", source: "Ascalon" } +447.2 "--sync--" Ability { id: "89CC", source: "King Thordan" } # Ultimate End wind-up +451.8 "--sync--" Ability { id: "89B9" } # All the knights use this unknown attack here +455.8 "Ultimate End" Ability { id: "89CD", source: "King Thordan" } 460.3 "--targetable--" # Phase 3 # Save the [healer]! -466.4 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:89C7:/ -476.6 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:89CB:/ -481.7 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ -488.1 "Holy Shield Bash" sync / 1[56]:[^:]*:(Ser Adelphel|Ser Janlenoux):89D6:/ -497.1 "Spear Of the Fury" sync / 1[56]:[^:]*:Ser Zephirin:89D1:/ # A smile better suits a hero -499.5 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:89C6:/ -504.6 "The Dragon's Gaze/The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:(89C8|89C9):/ -516.6 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:89C4:/ +466.4 "the Dragon's Eye" Ability { id: "89C7", source: "King Thordan" } +476.6 "Knights Of the Round" Ability { id: "89CB", source: "King Thordan" } +481.7 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } +488.1 "Holy Shield Bash" Ability { id: "89D6", source: ["Ser Adelphel", "Ser Janlenoux"] } +497.1 "Spear Of the Fury" Ability { id: "89D1", source: "Ser Zephirin" } # A smile better suits a hero +499.5 "Heavenly Heel" Ability { id: "89C6", source: "King Thordan" } +504.6 "The Dragon's Gaze/The Dragon's Glory" Ability { id: ["89C8", "89C9"], source: "King Thordan" } +516.6 "Ancient Quaga" Ability { id: "89C4", source: "King Thordan" } #Phase 4 # Conviction Trio -521.8 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:89C7:/ -532.0 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:89CB:/ -543.1 "The Dragon's Gaze/The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:(89C8|89C9):/ -543.2 "Conviction" sync / 1[56]:[^:]*:Ser Hermenost:89DB:/ -544.1 "Heavy Impact 1" sync / 1[56]:[^:]*:Ser Guerrique:89DF:/ -546.0 "Conviction" sync / 1[56]:[^:]*:Ser Hermenost:89DC:/ -546.0 "Heavy Impact 2" sync / 1[56]:[^:]*:Ser Guerrique:89E0:/ -548.0 "Heavy Impact 3" sync / 1[56]:[^:]*:Ser Guerrique:89E1:/ -550.0 "Heavy Impact 4" sync / 1[56]:[^:]*:Ser Guerrique:89E2:/ -552.4 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:89D8:/ -552.8 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:89D9:/ # Dimensional Collapse -555.9 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:89DA:/ -557.9 "the Dragon's Rage" sync / 1[56]:[^:]*:King Thordan:89CA:/ -563.0 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ +521.8 "the Dragon's Eye" Ability { id: "89C7", source: "King Thordan" } +532.0 "Knights Of the Round" Ability { id: "89CB", source: "King Thordan" } +543.1 "The Dragon's Gaze/The Dragon's Glory" Ability { id: ["89C8", "89C9"], source: "King Thordan" } +543.2 "Conviction" Ability { id: "89DB", source: "Ser Hermenost" } +544.1 "Heavy Impact 1" Ability { id: "89DF", source: "Ser Guerrique" } +546.0 "Conviction" Ability { id: "89DC", source: "Ser Hermenost" } +546.0 "Heavy Impact 2" Ability { id: "89E0", source: "Ser Guerrique" } +548.0 "Heavy Impact 3" Ability { id: "89E1", source: "Ser Guerrique" } +550.0 "Heavy Impact 4" Ability { id: "89E2", source: "Ser Guerrique" } +552.4 "Dimensional Collapse" Ability { id: "89D8", source: "Ser Grinnaux" } +552.8 "--sync--" Ability { id: "89D9", source: "Ser Grinnaux" } # Dimensional Collapse +555.9 "Faith Unmoving" Ability { id: "89DA", source: "Ser Grinnaux" } +557.9 "the Dragon's Rage" Ability { id: "89CA", source: "King Thordan" } +563.0 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } # Phase 5 # Spiral Sky Trio -572.1 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:89C7:/ -582.2 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:89CB:/ -588.9 "Lightning Storm" sync / 1[56]:[^:]*:King Thordan:89C0:/ -589.3 "--sync--" sync / 1[56]:[^:]*:King Thordan:89C1:/# Lightning Storm -597.3 "Spiral Thrust" sync / 1[56]:[^:]*:Ser Vellguine:89E5:/ -597.3 "Spiral Pierce" sync / 1[56]:[^:]*:Ser Paulecrain:89E6:/ -597.5 "Skyward Leap" sync / 1[56]:[^:]*:Ser Ignasse:89E8:/ -598.9 "the Dragon's Rage" sync / 1[56]:[^:]*:King Thordan:89CA:/ -609.9 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:89C6:/ -612.0 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ +572.1 "the Dragon's Eye" Ability { id: "89C7", source: "King Thordan" } +582.2 "Knights Of the Round" Ability { id: "89CB", source: "King Thordan" } +588.9 "Lightning Storm" Ability { id: "89C0", source: "King Thordan" } +589.3 "--sync--" Ability { id: "89C1", source: "King Thordan" }# Lightning Storm +597.3 "Spiral Thrust" Ability { id: "89E5", source: "Ser Vellguine" } +597.3 "Spiral Pierce" Ability { id: "89E6", source: "Ser Paulecrain" } +597.5 "Skyward Leap" Ability { id: "89E8", source: "Ser Ignasse" } +598.9 "the Dragon's Rage" Ability { id: "89CA", source: "King Thordan" } +609.9 "Heavenly Heel" Ability { id: "89C6", source: "King Thordan" } +612.0 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } # Phase 6 # Meteor Trio -622.1 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:89C7:/ -632.3 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:89CB:/ -638.4 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ +622.1 "the Dragon's Eye" Ability { id: "89C7", source: "King Thordan" } +632.3 "Knights Of the Round" Ability { id: "89CB", source: "King Thordan" } +638.4 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } 641.5 "--chains appear--" -642.4 "Holy Meteor" sync / 1[56]:[^:]*:Ser Noudenet:89EF:/ -643.5 "Comet x4" duration 4 #sync / 1[56]:[^:]*:Ser Noudenet:89F4:/ -643.5 "The Dragon's Gaze/The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:(89C8|89C9):/ -643.8 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:89EA:/ # Heavensflame (cast) -644.2 "Heavensflame 1" #sync / 1[56]:[^:]*:Ser Charibert:89EB:/ -645.3 "Heavensflame 2" #sync / 1[56]:[^:]*:Ser Charibert:89EB:/ -646.4 "Heavensflame 3" #sync / 1[56]:[^:]*:Ser Charibert:89EB:/ -646.8 "Hiemal Storm" sync / 1[56]:[^:]*:Ser Haumeric:89ED:/ -647.4 "--sync--" sync / 1[56]:[^:]*:(Ser Haumeric|Ser Noudenet):89EE:/ # Hiemal Storm -648.7 "Ascalon's Mercy" sync / 1[56]:[^:]*:King Thordan:89BE:/ -656.8 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:89C4:/ -662.9 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:89C6:/ -668.0 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:89C4:/ +642.4 "Holy Meteor" Ability { id: "89EF", source: "Ser Noudenet" } +643.5 "Comet x4" duration 4 #Ability { id: "89F4", source: "Ser Noudenet" } +643.5 "The Dragon's Gaze/The Dragon's Glory" Ability { id: ["89C8", "89C9"], source: "King Thordan" } +643.8 "--sync--" Ability { id: "89EA", source: "Ser Charibert" } # Heavensflame (cast) +644.2 "Heavensflame 1" #Ability { id: "89EB", source: "Ser Charibert" } +645.3 "Heavensflame 2" #Ability { id: "89EB", source: "Ser Charibert" } +646.4 "Heavensflame 3" #Ability { id: "89EB", source: "Ser Charibert" } +646.8 "Hiemal Storm" Ability { id: "89ED", source: "Ser Haumeric" } +647.4 "--sync--" Ability { id: "89EE", source: ["Ser Haumeric", "Ser Noudenet"] } # Hiemal Storm +648.7 "Ascalon's Mercy" Ability { id: "89BE", source: "King Thordan" } +656.8 "Ancient Quaga" Ability { id: "89C4", source: "King Thordan" } +662.9 "Heavenly Heel" Ability { id: "89C6", source: "King Thordan" } +668.0 "Ancient Quaga" Ability { id: "89C4", source: "King Thordan" } # Phase 7 -- zomg SO MUCH AOE DAMAGE # Heavensward Trio -673.1 "the Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:89C7:/ -683.3 "Knights Of the Round" sync / 1[56]:[^:]*:King Thordan:89CB:/ -688.4 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ -693.4 "Holiest Of Holy" sync / 1[56]:[^:]*:Ser Janlenoux:89D4:/ -698.5 "Ascalon's Might" sync / 1[56]:[^:]*:King Thordan:89BD:/ -704.6 "Heavensward Leap 1" sync / 1[56]:[^:]*:Ser Vellguine:89E9:/ -707.6 "Heavensward Leap 2" sync / 1[56]:[^:]*:Ser Paulecrain:89E9:/ -710.6 "Heavensward Leap 3" sync / 1[56]:[^:]*:Ser Ignasse:89E9:/ -718.7 "Sacred Cross" sync / 14:[^:]*:Ser Zephirin:89D0:/ duration 24.7 -724.6 "Pure Of Soul" sync / 1[56]:[^:]*:(Ser Charibert|Ser Noudenet|Ser Haumeric):(89F0|89F1):/ -732.6 "Absolute Conviction 1" sync / 1[56]:[^:]*:Ser Guerrique:89E3:/ -735.5 "Absolute Conviction 2" sync / 1[56]:[^:]*:Ser Hermenost:89E4:/ -740.6 "The Dragon's Gaze/The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:(89C8|89C9):/ -743.4 "--sync--" sync / 1[56]:[^:]*:Ser Zephirin:89D0:/ # Sacred Cross resolves -750.7 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:89C4:/ +673.1 "the Dragon's Eye" Ability { id: "89C7", source: "King Thordan" } +683.3 "Knights Of the Round" Ability { id: "89CB", source: "King Thordan" } +688.4 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } +693.4 "Holiest Of Holy" Ability { id: "89D4", source: "Ser Janlenoux" } +698.5 "Ascalon's Might" Ability { id: "89BD", source: "King Thordan" } +704.6 "Heavensward Leap 1" Ability { id: "89E9", source: "Ser Vellguine" } +707.6 "Heavensward Leap 2" Ability { id: "89E9", source: "Ser Paulecrain" } +710.6 "Heavensward Leap 3" Ability { id: "89E9", source: "Ser Ignasse" } +718.7 "Sacred Cross" StartsUsing { id: "89D0", source: "Ser Zephirin" } duration 24.7 +724.6 "Pure Of Soul" Ability { id: ["89F0", "89F1"], source: ["Ser Charibert", "Ser Noudenet", "Ser Haumeric"] } +732.6 "Absolute Conviction 1" Ability { id: "89E3", source: "Ser Guerrique" } +735.5 "Absolute Conviction 2" Ability { id: "89E4", source: "Ser Hermenost" } +740.6 "The Dragon's Gaze/The Dragon's Glory" Ability { id: ["89C8", "89C9"], source: "King Thordan" } +743.4 "--sync--" Ability { id: "89D0", source: "Ser Zephirin" } # Sacred Cross resolves +750.7 "Ancient Quaga" Ability { id: "89C4", source: "King Thordan" } # Enrage sequence -759.8 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:89C6:/ -761.9 "Ascalon's Might 1" sync / 1[56]:[^:]*:King Thordan:89BD:/ -767.0 "Ascalon's Might 2" sync / 1[56]:[^:]*:King Thordan:89BD:/ -770.1 "Ascalon's Might 3" sync / 1[56]:[^:]*:King Thordan:89BD:/ -773.2 "Ascalon's Might 4" sync / 1[56]:[^:]*:King Thordan:89BD:/ -776.3 "Ascalon's Might 5" sync / 1[56]:[^:]*:King Thordan:89BD:/ -779.4 "Ascalon's Might 6" sync / 1[56]:[^:]*:King Thordan:89BD:/ -791.4 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:89C5:/ +759.8 "Heavenly Heel" Ability { id: "89C6", source: "King Thordan" } +761.9 "Ascalon's Might 1" Ability { id: "89BD", source: "King Thordan" } +767.0 "Ascalon's Might 2" Ability { id: "89BD", source: "King Thordan" } +770.1 "Ascalon's Might 3" Ability { id: "89BD", source: "King Thordan" } +773.2 "Ascalon's Might 4" Ability { id: "89BD", source: "King Thordan" } +776.3 "Ascalon's Might 5" Ability { id: "89BD", source: "King Thordan" } +779.4 "Ascalon's Might 6" Ability { id: "89BD", source: "King Thordan" } +791.4 "Ancient Quaga" Ability { id: "89C5", source: "King Thordan" } # IGNORED ABILITIES # 89B7 --sync-- diff --git a/ui/raidboss/data/06-ew/trial/ultima-un.txt b/ui/raidboss/data/06-ew/trial/ultima-un.txt index ff5e56c2b5..4ec4858b28 100644 --- a/ui/raidboss/data/06-ew/trial/ultima-un.txt +++ b/ui/raidboss/data/06-ew/trial/ultima-un.txt @@ -5,23 +5,23 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 # Phase 1: 100% - 85% -3.2 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ window 3.2,10 -15.1 "Vulcan Burst" sync / 1[56]:[^:]*:The Ultima Weapon:6EFD:/ -16.6 "Mistral Song" sync / 1[56]:[^:]*:Ultima Garuda:6EFC:/ -26.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -29.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -33.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ window 10,10 -41.3 "Eye of the Storm" sync / 1[56]:[^:]*:The Ultima Weapon:6EFE:/ -43.9 "Geocrush" sync / 1[56]:[^:]*:Ultima Titan:6EFF:/ -48.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -51.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ - -55.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ window 10,10 jump 3.2 +3.2 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } window 3.2,10 +15.1 "Vulcan Burst" Ability { id: "6EFD", source: "The Ultima Weapon" } +16.6 "Mistral Song" Ability { id: "6EFC", source: "Ultima Garuda" } +26.4 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +29.7 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +33.0 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } window 10,10 +41.3 "Eye of the Storm" Ability { id: "6EFE", source: "The Ultima Weapon" } +43.9 "Geocrush" Ability { id: "6EFF", source: "Ultima Titan" } +48.4 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +51.7 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } + +55.0 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } window 10,10 jump 3.2 66.9 "Vulcan Burst" 68.4 "Mistral Song" 78.2 "Homing Lasers" @@ -32,36 +32,36 @@ hideall "--sync--" # Phase 2: 84.9% - 65% # The animation for Garuda dying precedes this, # but there are no log lines that show for her death. -98.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ window 98.3,5 -100.0 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -103.0 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:6F01:/ -107.1 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ - -115.9 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ window 30,30 -119.3 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -125.6 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -129.6 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:6F01:/ -130.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -134.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -141.3 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -148.6 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -151.6 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:6F01:/ -152.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -156.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ - -164.8 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ window 30,30 -168.2 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -175.5 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -179.5 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:6F01:/ -179.6 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -182.9 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -190.3 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -195.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -198.6 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -201.6 "Weight of the Land" sync / 1[56]:[^:]*:The Ultima Weapon:6F01:/ -203.7 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ - -212.5 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ window 30,30 jump 164.8 +98.3 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } window 98.3,5 +100.0 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +103.0 "Weight of the Land" Ability { id: "6F01", source: "The Ultima Weapon" } +107.1 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } + +115.9 "Tank Purge" Ability { id: "6EF9", source: "The Ultima Weapon" } window 30,30 +119.3 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +125.6 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +129.6 "Weight of the Land" Ability { id: "6F01", source: "The Ultima Weapon" } +130.7 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +134.0 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +141.3 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +148.6 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +151.6 "Weight of the Land" Ability { id: "6F01", source: "The Ultima Weapon" } +152.7 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +156.0 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } + +164.8 "Tank Purge" Ability { id: "6EF9", source: "The Ultima Weapon" } window 30,30 +168.2 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +175.5 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +179.5 "Weight of the Land" Ability { id: "6F01", source: "The Ultima Weapon" } +179.6 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +182.9 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +190.3 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +195.7 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +198.6 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +201.6 "Weight of the Land" Ability { id: "6F01", source: "The Ultima Weapon" } +203.7 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } + +212.5 "Tank Purge" Ability { id: "6EF9", source: "The Ultima Weapon" } window 30,30 jump 164.8 215.9 "Homing Lasers" 223.2 "Radiant Plume" 227.2 "Weight of the Land" @@ -74,33 +74,33 @@ hideall "--sync--" # The phase opens with what seems to be a *long* set of fixed blocks. # A Viscous Aetheroplasm may or may not be skipped. -297.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F03:/ window 297.3,0 -300.0 "Eruption x5" duration 8 #sync / 1[56]:[^:]*:The Ultima Weapon:6F03:/ -306.6 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -315.3 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ window 15,15 -318.6 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -323.9 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -327.2 "Viscous Aetheroplasm?" #sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -332.4 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ window 20,2.5 -335.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -337.9 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:6F04:/ -339.2 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -343.2 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -345.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ window 15,15 -345.9 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:6F04:/ -347.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -352.7 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ - -360.6 "Eruption x5" duration 8 #sync / 1[56]:[^:]*:The Ultima Weapon:6F03:/ -365.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -368.5 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -377.2 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ window 15,15 -380.6 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ +297.3 "--sync--" StartsUsing { id: "6F03", source: "The Ultima Weapon" } window 297.3,0 +300.0 "Eruption x5" duration 8 #Ability { id: "6F03", source: "The Ultima Weapon" } +306.6 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +315.3 "Tank Purge" Ability { id: "6EF9", source: "The Ultima Weapon" } window 15,15 +318.6 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +323.9 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +327.2 "Viscous Aetheroplasm?" #Ability { id: "6EEE", source: "The Ultima Weapon" } +332.4 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } window 20,2.5 +335.1 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +337.9 "Crimson Cyclone" Ability { id: "6F04", source: "Ultima Ifrit" } +339.2 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +343.2 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +345.4 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } window 15,15 +345.9 "Crimson Cyclone" Ability { id: "6F04", source: "Ultima Ifrit" } +347.1 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +352.7 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } + +360.6 "Eruption x5" duration 8 #Ability { id: "6F03", source: "The Ultima Weapon" } +365.1 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +368.5 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +377.2 "Tank Purge" Ability { id: "6EF9", source: "The Ultima Weapon" } window 15,15 +380.6 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } # A possible extra block is here, but it doesn't seem to change the rotation. # Ceruleum Vent jumps to a small sidetrack before continuing. -385.2 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ window 15,15 jump 547.3 # Radiant Plume -385.9 "Ceruleum Vent?" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ window 15,15 jump 450 +385.2 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } window 15,15 jump 547.3 # Radiant Plume +385.9 "Ceruleum Vent?" Ability { id: "6EEF", source: "The Ultima Weapon" } window 15,15 jump 450 387.9 "Radiant Plume?" 389.2 "Viscous Aetheroplasm?" 390.7 "Crimson Cyclone?" @@ -109,26 +109,26 @@ hideall "--sync--" 396.5 "Homing Lasers?" # Vent sidetrack into normal early Eruption block -450.0 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -453.3 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -460.6 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -466.0 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ +450.0 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +453.3 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +460.6 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +466.0 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } # Normal early Eruption block -466.5 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F03:/ window 30,1 -469.2 "Eruption x5" duration 8 #sync / 1[56]:[^:]*:The Ultima Weapon:6F03:/ -475.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -483.8 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ window 15,15 -487.1 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -492.5 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ +466.5 "--sync--" StartsUsing { id: "6F03", source: "The Ultima Weapon" } window 30,1 +469.2 "Eruption x5" duration 8 #Ability { id: "6F03", source: "The Ultima Weapon" } +475.0 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +483.8 "Tank Purge" Ability { id: "6EF9", source: "The Ultima Weapon" } window 15,15 +487.1 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +492.5 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } # Eruption and Cyclone blocks will alternate from here. # *However*, at any time, a Viscous Aetheroplasm bridge may follow. # Subesquent blocks are different, ending with an Aetheroplasm rather than a Vent. -492.7 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ window 20,20 jump 547.3 # Radiant Plume +492.7 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } window 20,20 jump 547.3 # Radiant Plume 495.4 "Radiant Plume?" -495.8 "Viscous Aetheroplasm?" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ window 15,15 jump 650 +495.8 "Viscous Aetheroplasm?" Ability { id: "6EEE", source: "The Ultima Weapon" } window 15,15 jump 650 498.2 "Crimson Cyclone?" 499.5 "Radiant Plume" 503.1 "Homing Lasers?" @@ -139,22 +139,22 @@ hideall "--sync--" # Ceruleum Vent doesn't always happen during these Cyclone blocks. # However, timings don't seem dependent on its use, # so we can safely just not sync it and leave the block alone. -547.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ -550.0 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -552.8 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:6F04:/ -554.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -558.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -560.9 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:6F04:/ -561.1 "Ceruleum Vent?" #sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -562.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -564.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -571.7 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -577.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ +547.3 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } +550.0 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +552.8 "Crimson Cyclone" Ability { id: "6F04", source: "Ultima Ifrit" } +554.1 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +558.1 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +560.9 "Crimson Cyclone" Ability { id: "6F04", source: "Ultima Ifrit" } +561.1 "Ceruleum Vent?" #Ability { id: "6EEF", source: "The Ultima Weapon" } +562.1 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +564.4 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +571.7 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +577.1 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } # Jump to the Aetheroplasm bridge or the early Eruption block -577.4 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F03:/ window 20,20 jump 466.5 +577.4 "--sync--" StartsUsing { id: "6F03", source: "The Ultima Weapon" } window 20,20 jump 466.5 580.1 "Eruption x5?" -580.4 "Viscous Aetheroplasm?" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ window 5,5 jump 650 +580.4 "Viscous Aetheroplasm?" Ability { id: "6EEE", source: "The Ultima Weapon" } window 5,5 jump 650 585.9 "Viscous Aetheroplasm?" 587.7 "Homing Lasers?" 593.0 "Ceruleum Vent?" @@ -163,54 +163,54 @@ hideall "--sync--" # An Aetheroplasm immediately following a Vent seems to indicate the start of the late rotation. # If this block follows an Eruption block, Tank Purge is skipped. # If this block follows a Cyclone block, Aetheroplasm is skipped -650.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -658.7 "Tank Purge?" #sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ -662.0 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ window 12,5 -667.3 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -670.7 "Viscous Aetheroplasm?" #sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ +650.0 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +658.7 "Tank Purge?" #Ability { id: "6EF9", source: "The Ultima Weapon" } +662.0 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } window 12,5 +667.3 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +670.7 "Viscous Aetheroplasm?" #Ability { id: "6EEE", source: "The Ultima Weapon" } # From here, the late Cyclone/EruptionHoming Lasers blocks are added. -669.9 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ window 15,15 jump 697.3 # Radiant Plume -671.0 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F03:/ window 15,15 jump 797.3 # Eruption +669.9 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } window 15,15 jump 697.3 # Radiant Plume +671.0 "--sync--" StartsUsing { id: "6F03", source: "The Ultima Weapon" } window 15,15 jump 797.3 # Eruption 672.6 "Radiant Plume?" 673.7 "Eruption x5?" 675.4 "Crimson Cyclone?" 676.7 "Radiant Plume?" -678.0 "Homing Lasers?" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ window 10,10 jump 900 +678.0 "Homing Lasers?" Ability { id: "6EF0", source: "The Ultima Weapon" } window 10,10 jump 900 680.7 "Radiant Plume?" 684.3 "Tank Purge?" # Late Cyclone block -697.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ -700.0 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -702.8 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:6F04:/ -704.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -708.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -710.9 "Crimson Cyclone" sync / 1[56]:[^:]*:Ultima Ifrit:6F04:/ -712.1 "Radiant Plume" sync / 1[56]:[^:]*:The Ultima Weapon:6F00:/ -716.1 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ window 12,5 -721.4 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -724.7 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ - -727.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F03:/ window 15,15 jump 797.3 # Eruption +697.3 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } +700.0 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +702.8 "Crimson Cyclone" Ability { id: "6F04", source: "Ultima Ifrit" } +704.1 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +708.1 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +710.9 "Crimson Cyclone" Ability { id: "6F04", source: "Ultima Ifrit" } +712.1 "Radiant Plume" Ability { id: "6F00", source: "The Ultima Weapon" } +716.1 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } window 12,5 +721.4 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +724.7 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } + +727.3 "--sync--" StartsUsing { id: "6F03", source: "The Ultima Weapon" } window 15,15 jump 797.3 # Eruption 730.0 "Eruption x5?" -732.0 "Homing Lasers?" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ window 10,10 jump 900 +732.0 "Homing Lasers?" Ability { id: "6EF0", source: "The Ultima Weapon" } window 10,10 jump 900 737.3 "Ceruleum Vent?" 740.6 "Viscous Aetheroplasm?" 740.6 "Tank Purge?" 743.9 "Homing Lasers?" # Late Eruption block -797.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F03:/ window 2.5,0 -800.0 "Eruption x5" duration 8 #sync / 1[56]:[^:]*:The Ultima Weapon:6F03:/ -810.6 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ window 15,15 -813.9 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -819.2 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -822.5 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ - -825.1 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ window 15,15 jump 697.3 # Radiant Plume +797.3 "--sync--" StartsUsing { id: "6F03", source: "The Ultima Weapon" } window 2.5,0 +800.0 "Eruption x5" duration 8 #Ability { id: "6F03", source: "The Ultima Weapon" } +810.6 "Tank Purge" Ability { id: "6EF9", source: "The Ultima Weapon" } window 15,15 +813.9 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +819.2 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +822.5 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } + +825.1 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } window 15,15 jump 697.3 # Radiant Plume 827.8 "Radiant Plume?" -829.8 "Homing Lasers?" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ window 10,10 jump 900 +829.8 "Homing Lasers?" Ability { id: "6EF0", source: "The Ultima Weapon" } window 10,10 jump 900 830.6 "Crimson Cyclone?" 831.9 "Radiant Plume?" 835.1 "Ceruleum Vent?" @@ -218,12 +218,12 @@ hideall "--sync--" 838.4 "Viscous Aetheroplasm?" # Late Homing Lasers sidetrack -900.0 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -905.3 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -908.6 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ +900.0 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +905.3 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +908.6 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } -912.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F03:/ window 15,15 jump 797.3 # Eruption -913.2 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6F00:/ window 15,15 jump 697.3 # Radiant Plume +912.3 "--sync--" StartsUsing { id: "6F03", source: "The Ultima Weapon" } window 15,15 jump 797.3 # Eruption +913.2 "--sync--" StartsUsing { id: "6F00", source: "The Ultima Weapon" } window 15,15 jump 697.3 # Radiant Plume 915.0 "Eruption x5?" 915.9 "Radiant Plume?" 918.7 "Crimson Cyclone?" @@ -241,35 +241,35 @@ hideall "--sync--" # Because of this, we add many more sync windows than we normally would. # The opening block is short. -1000.0 "Aetheric Boom" sync / 1[56]:[^:]*:The Ultima Weapon:6EF6:/ window 1000,5 -1011.3 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -1015.6 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ -1019.9 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -1023.1 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -1034.1 "Magitek Ray 1" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ -1037.1 "Magitek Ray 2" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ -1040.1 "Magitek Ray 3" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ - -1042.7 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6EF9:/ window 45,45 -1045.9 "Tank Purge" sync / 1[56]:[^:]*:The Ultima Weapon:6EF9:/ -1049.2 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -1052.5 "Diffractive Laser" sync / 1[56]:[^:]*:The Ultima Weapon:6EF1:/ window 20,20 -1054.8 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ window 20,20 -1059.1 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -1062.4 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -1070.5 "Magitek Ray 1" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ window 15,1 -1073.5 "Magitek Ray 2" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ -1076.5 "Magitek Ray 3" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ -1080.8 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -1084.1 "Diffractive Laser" sync / 1[56]:[^:]*:The Ultima Weapon:6EF1:/ window 10,20 -1086.4 "Homing Lasers" sync / 1[56]:[^:]*:The Ultima Weapon:6EF0:/ window 10,20 -1090.7 "Ceruleum Vent" sync / 1[56]:[^:]*:The Ultima Weapon:6EEF:/ -1094.0 "Viscous Aetheroplasm" sync / 1[56]:[^:]*:The Ultima Weapon:6EEE:/ -1105.1 "Magitek Ray 1" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ window 15,1 -1108.1 "Magitek Ray 2" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ -1111.0 "Magitek Ray 3" sync / 1[56]:[^:]*:The Ultima Weapon:(6EF2|6EF3|6EF4):/ - -1113.6 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6EF9:/ window 45,45 jump 1042.7 +1000.0 "Aetheric Boom" Ability { id: "6EF6", source: "The Ultima Weapon" } window 1000,5 +1011.3 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +1015.6 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } +1019.9 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +1023.1 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +1034.1 "Magitek Ray 1" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } +1037.1 "Magitek Ray 2" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } +1040.1 "Magitek Ray 3" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } + +1042.7 "--sync--" StartsUsing { id: "6EF9", source: "The Ultima Weapon" } window 45,45 +1045.9 "Tank Purge" Ability { id: "6EF9", source: "The Ultima Weapon" } +1049.2 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +1052.5 "Diffractive Laser" Ability { id: "6EF1", source: "The Ultima Weapon" } window 20,20 +1054.8 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } window 20,20 +1059.1 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +1062.4 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +1070.5 "Magitek Ray 1" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } window 15,1 +1073.5 "Magitek Ray 2" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } +1076.5 "Magitek Ray 3" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } +1080.8 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +1084.1 "Diffractive Laser" Ability { id: "6EF1", source: "The Ultima Weapon" } window 10,20 +1086.4 "Homing Lasers" Ability { id: "6EF0", source: "The Ultima Weapon" } window 10,20 +1090.7 "Ceruleum Vent" Ability { id: "6EEF", source: "The Ultima Weapon" } +1094.0 "Viscous Aetheroplasm" Ability { id: "6EEE", source: "The Ultima Weapon" } +1105.1 "Magitek Ray 1" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } window 15,1 +1108.1 "Magitek Ray 2" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } +1111.0 "Magitek Ray 3" Ability { id: ["6EF2", "6EF3", "6EF4"], source: "The Ultima Weapon" } + +1113.6 "--sync--" StartsUsing { id: "6EF9", source: "The Ultima Weapon" } window 45,45 jump 1042.7 1116.8 "Tank Purge" 1120.2 "Viscous Aetheroplasm" 1123.5 "Diffractive Laser" @@ -282,7 +282,7 @@ hideall "--sync--" # Enrage appears to be at 10:30. # Ultima Weapon teleports to the center and casts Ultima. -9989.3 "--sync--" sync / 14:[^:]*:The Ultima Weapon:6EFB:/ window 10000 -10000.0 "Ultima Enrage" sync / 1[56]:[^:]*:The Ultima Weapon:6EFB:/ +9989.3 "--sync--" StartsUsing { id: "6EFB", source: "The Ultima Weapon" } window 10000 +10000.0 "Ultima Enrage" Ability { id: "6EFB", source: "The Ultima Weapon" } diff --git a/ui/raidboss/data/06-ew/trial/zeromus-ex.txt b/ui/raidboss/data/06-ew/trial/zeromus-ex.txt index d0b80da17f..4031a3338a 100644 --- a/ui/raidboss/data/06-ew/trial/zeromus-ex.txt +++ b/ui/raidboss/data/06-ew/trial/zeromus-ex.txt @@ -11,132 +11,132 @@ hideall "--Reset--" hideall "--sync--" # Phase 1 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.1 "--sync--" sync / 14:[^:]*:Zeromus:8B3F:/ window 10,10 -11.1 "Abyssal Nox" sync / 1[56]:[^:]*:Zeromus:8B3F:/ -27.1 "Abyssal Echoes 1" sync / 1[56]:[^:]*:Zeromus:8B42:/ -32.1 "Abyssal Echoes 2" sync / 1[56]:[^:]*:Zeromus:8B42:/ -42.1 "Sable Thread x6" sync / 1[56]:[^:]*:Zeromus:8B38:/ duration 6.9 -#43.8 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#45.1 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#46.4 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#47.7 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -49.0 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B3A:/ - -61.7 "Dark Matter x3" sync / 1[56]:[^:]*:Zeromus:8B83:/ duration 4.1 - -78.8 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8B4[36]:/ -87.8 "Miasmic Blast" sync / 1[56]:[^:]*:Zeromus:8B49:/ - -101.8 "Flare" sync / 1[56]:[^:]*:Zeromus:8B5D:/ -109.9 "Prominence Spine" sync / 1[56]:[^:]*:Zeromus:8B63:/ -119.9 "Void Bio" sync / 1[56]:[^:]*:Zeromus:8B66:/ -134.1 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8B4[36]:/ -143.1 "Miasmic Blast" sync / 1[56]:[^:]*:Zeromus:8B49:/ - -148.1 "--sync--" sync / 14:[^:]*:Zeromus:8B4C:/ window 10,10 -153.1 "--spread--" #sync / 1[56]:[^:]*:Zeromus:8BDE:/ -158.1 "Big Bang" sync / 1[56]:[^:]*:Zeromus:8B4C:/ - -173.1 "Void Meteor" sync / 1[56]:[^:]*:Zeromus:8B57:/ -186.3 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B56:/ -188.3 "Meteor Impact 1" #sync / 1[56]:[^:]*:Comet:8B58:/ -194.8 "Meteor Impact 2" #sync / 1[56]:[^:]*:Comet:8B58:/ -202.0 "Explosion" sync / 1[56]:[^:]*:Comet:8D34:/ - -214.4 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8B4[36]:/ -223.5 "Miasmic Blast" sync / 1[56]:[^:]*:Zeromus:8B49:/ -227.1 "The Dark Divides" sync / 1[56]:[^:]*:Zeromus:8B52:/ -233.5 "Dark Matter x3" sync / 1[56]:[^:]*:Zeromus:8B83:/ duration 4.1 -234.1 "The Dark Beckons" sync / 1[56]:[^:]*:Zeromus:8D3A:/ -234.1 "Forked Lightning" sync / 1[56]:[^:]*:Zeromus:8B54:/ - -247.7 "Black Hole" sync / 1[56]:[^:]*:Zeromus:8B69:/ -259.8 "Fractured Eventide" sync / 1[56]:[^:]*:Zeromus:8B3[CD]:/ - -278.0 "--sync--" sync / 14:[^:]*:Zeromus:8B4D:/ window 10,10 -282.1 "--spread--" #sync / 1[56]:[^:]*:Zeromus:8D32:/ -288.0 "Big Crunch" sync / 1[56]:[^:]*:Zeromus:8B4D:/ - -303.2 "Abyssal Nox" sync / 1[56]:[^:]*:Zeromus:8B3F:/ -319.2 "Abyssal Echoes 1" sync / 1[56]:[^:]*:Zeromus:8B42:/ -324.2 "Abyssal Echoes 2" sync / 1[56]:[^:]*:Zeromus:8B42:/ -329.2 "Sable Thread x7" sync / 1[56]:[^:]*:Zeromus:8B38:/ duration 8.2 -#330.9 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#332.2 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#333.5 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#334.8 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#336.1 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -337.4 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B3A:/ - -353.2 "--towers--" sync / 1[56]:[^:]*:Zeromus:8B5[EF]:/ -361.2 "Branding Flare/Sparking Flare" sync / 1[56]:[^:]*:Zeromus:8B6[45]:/ -361.2 "Prominence Spine" sync / 1[56]:[^:]*:Zeromus:8B63:/ -380.2 "Void Bio" sync / 1[56]:[^:]*:Zeromus:8B66:/ -394.4 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8B4[36]:/ -403.4 "Miasmic Blast" sync / 1[56]:[^:]*:Zeromus:8B49:/ -414.4 "Dark Matter x3" sync / 1[56]:[^:]*:Zeromus:8B83:/ duration 4.1 - -430.6 "--towers--" sync / 1[56]:[^:]*:Zeromus:8B5[EF]:/ -438.6 "Branding Flare/Sparking Flare" sync / 1[56]:[^:]*:Zeromus:8B6[45]:/ -438.6 "Prominence Spine" sync / 1[56]:[^:]*:Zeromus:8B63:/ -467.7 "Abyssal Nox" sync / 1[56]:[^:]*:Zeromus:8B3F:/ -483.7 "Abyssal Echoes 1" sync / 1[56]:[^:]*:Zeromus:8B42:/ -488.7 "Abyssal Echoes 2" sync / 1[56]:[^:]*:Zeromus:8B42:/ -493.7 "Sable Thread x7" sync / 1[56]:[^:]*:Zeromus:8B38:/ duration 8.2 -#495.4 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#496.7 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#498.0 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#499.3 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -#500.6 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8B39:/ -501.9 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B3A:/ - -517.7 "--towers--" sync / 1[56]:[^:]*:Zeromus:8B5[EF]:/ -525.7 "Branding Flare/Sparking Flare" sync / 1[56]:[^:]*:Zeromus:8B6[45]:/ -525.7 "Prominence Spine" sync / 1[56]:[^:]*:Zeromus:8B63:/ -544.8 "Void Bio" sync / 1[56]:[^:]*:Zeromus:8B66:/ -558.9 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8B4[36]:/ -567.9 "Miasmic Blast" sync / 1[56]:[^:]*:Zeromus:8B49:/ -578.9 "Dark Matter x3" sync / 1[56]:[^:]*:Zeromus:8B83:/ duration 4.1 - -595.0 "--towers--" sync / 1[56]:[^:]*:Zeromus:8B5[EF]:/ -603.0 "Branding Flare/Sparking Flare" sync / 1[56]:[^:]*:Zeromus:8B6[45]:/ -603.0 "Prominence Spine" sync / 1[56]:[^:]*:Zeromus:8B63:/ -632.1 "Abyssal Nox" sync / 1[56]:[^:]*:Zeromus:8B3F:/ -648.1 "Abyssal Echoes 1" sync / 1[56]:[^:]*:Zeromus:8B42:/ -653.1 "Abyssal Echoes 2" sync / 1[56]:[^:]*:Zeromus:8B42:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.1 "--sync--" StartsUsing { id: "8B3F", source: "Zeromus" } window 10,10 +11.1 "Abyssal Nox" Ability { id: "8B3F", source: "Zeromus" } +27.1 "Abyssal Echoes 1" Ability { id: "8B42", source: "Zeromus" } +32.1 "Abyssal Echoes 2" Ability { id: "8B42", source: "Zeromus" } +42.1 "Sable Thread x6" Ability { id: "8B38", source: "Zeromus" } duration 6.9 +#43.8 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#45.1 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#46.4 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#47.7 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +49.0 "--sync--" Ability { id: "8B3A", source: "Zeromus" } + +61.7 "Dark Matter x3" Ability { id: "8B83", source: "Zeromus" } duration 4.1 + +78.8 "Visceral Whirl" Ability { id: "8B4[36]", source: "Zeromus" } +87.8 "Miasmic Blast" Ability { id: "8B49", source: "Zeromus" } + +101.8 "Flare" Ability { id: "8B5D", source: "Zeromus" } +109.9 "Prominence Spine" Ability { id: "8B63", source: "Zeromus" } +119.9 "Void Bio" Ability { id: "8B66", source: "Zeromus" } +134.1 "Visceral Whirl" Ability { id: "8B4[36]", source: "Zeromus" } +143.1 "Miasmic Blast" Ability { id: "8B49", source: "Zeromus" } + +148.1 "--sync--" StartsUsing { id: "8B4C", source: "Zeromus" } window 10,10 +153.1 "--spread--" #Ability { id: "8BDE", source: "Zeromus" } +158.1 "Big Bang" Ability { id: "8B4C", source: "Zeromus" } + +173.1 "Void Meteor" Ability { id: "8B57", source: "Zeromus" } +186.3 "--sync--" Ability { id: "8B56", source: "Zeromus" } +188.3 "Meteor Impact 1" #Ability { id: "8B58", source: "Comet" } +194.8 "Meteor Impact 2" #Ability { id: "8B58", source: "Comet" } +202.0 "Explosion" Ability { id: "8D34", source: "Comet" } + +214.4 "Visceral Whirl" Ability { id: "8B4[36]", source: "Zeromus" } +223.5 "Miasmic Blast" Ability { id: "8B49", source: "Zeromus" } +227.1 "The Dark Divides" Ability { id: "8B52", source: "Zeromus" } +233.5 "Dark Matter x3" Ability { id: "8B83", source: "Zeromus" } duration 4.1 +234.1 "The Dark Beckons" Ability { id: "8D3A", source: "Zeromus" } +234.1 "Forked Lightning" Ability { id: "8B54", source: "Zeromus" } + +247.7 "Black Hole" Ability { id: "8B69", source: "Zeromus" } +259.8 "Fractured Eventide" Ability { id: "8B3[CD]", source: "Zeromus" } + +278.0 "--sync--" StartsUsing { id: "8B4D", source: "Zeromus" } window 10,10 +282.1 "--spread--" #Ability { id: "8D32", source: "Zeromus" } +288.0 "Big Crunch" Ability { id: "8B4D", source: "Zeromus" } + +303.2 "Abyssal Nox" Ability { id: "8B3F", source: "Zeromus" } +319.2 "Abyssal Echoes 1" Ability { id: "8B42", source: "Zeromus" } +324.2 "Abyssal Echoes 2" Ability { id: "8B42", source: "Zeromus" } +329.2 "Sable Thread x7" Ability { id: "8B38", source: "Zeromus" } duration 8.2 +#330.9 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#332.2 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#333.5 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#334.8 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#336.1 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +337.4 "--sync--" Ability { id: "8B3A", source: "Zeromus" } + +353.2 "--towers--" Ability { id: "8B5[EF]", source: "Zeromus" } +361.2 "Branding Flare/Sparking Flare" Ability { id: "8B6[45]", source: "Zeromus" } +361.2 "Prominence Spine" Ability { id: "8B63", source: "Zeromus" } +380.2 "Void Bio" Ability { id: "8B66", source: "Zeromus" } +394.4 "Visceral Whirl" Ability { id: "8B4[36]", source: "Zeromus" } +403.4 "Miasmic Blast" Ability { id: "8B49", source: "Zeromus" } +414.4 "Dark Matter x3" Ability { id: "8B83", source: "Zeromus" } duration 4.1 + +430.6 "--towers--" Ability { id: "8B5[EF]", source: "Zeromus" } +438.6 "Branding Flare/Sparking Flare" Ability { id: "8B6[45]", source: "Zeromus" } +438.6 "Prominence Spine" Ability { id: "8B63", source: "Zeromus" } +467.7 "Abyssal Nox" Ability { id: "8B3F", source: "Zeromus" } +483.7 "Abyssal Echoes 1" Ability { id: "8B42", source: "Zeromus" } +488.7 "Abyssal Echoes 2" Ability { id: "8B42", source: "Zeromus" } +493.7 "Sable Thread x7" Ability { id: "8B38", source: "Zeromus" } duration 8.2 +#495.4 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#496.7 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#498.0 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#499.3 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +#500.6 "Sable Thread" #Ability { id: "8B39", source: "Zeromus" } +501.9 "--sync--" Ability { id: "8B3A", source: "Zeromus" } + +517.7 "--towers--" Ability { id: "8B5[EF]", source: "Zeromus" } +525.7 "Branding Flare/Sparking Flare" Ability { id: "8B6[45]", source: "Zeromus" } +525.7 "Prominence Spine" Ability { id: "8B63", source: "Zeromus" } +544.8 "Void Bio" Ability { id: "8B66", source: "Zeromus" } +558.9 "Visceral Whirl" Ability { id: "8B4[36]", source: "Zeromus" } +567.9 "Miasmic Blast" Ability { id: "8B49", source: "Zeromus" } +578.9 "Dark Matter x3" Ability { id: "8B83", source: "Zeromus" } duration 4.1 + +595.0 "--towers--" Ability { id: "8B5[EF]", source: "Zeromus" } +603.0 "Branding Flare/Sparking Flare" Ability { id: "8B6[45]", source: "Zeromus" } +603.0 "Prominence Spine" Ability { id: "8B63", source: "Zeromus" } +632.1 "Abyssal Nox" Ability { id: "8B3F", source: "Zeromus" } +648.1 "Abyssal Echoes 1" Ability { id: "8B42", source: "Zeromus" } +653.1 "Abyssal Echoes 2" Ability { id: "8B42", source: "Zeromus" } # Note that this enrage can happen at any time in P2, because it always happens at roughly 11m into the pull regardless of when you hit P2 -658.2 "--sync--" sync / 14:[^:]*:Zeromus:8C1E:/ window 1000,1000 -668.2 "Big Bang (Enrage)" sync / 1[56]:[^:]*:Zeromus:8C1E:/ +658.2 "--sync--" StartsUsing { id: "8C1E", source: "Zeromus" } window 1000,1000 +668.2 "Big Bang (Enrage)" Ability { id: "8C1E", source: "Zeromus" } # Phase 2: ~25% push -1000.0 "--sync--" sync / 14:[^:]*:Zeromus:8C0D:/ window 1000,0 -1006.0 "Rend the Rift" sync / 1[56]:[^:]*:Zeromus:8C0D:/ -1023.1 "Nostalgia" sync / 1[56]:[^:]*:Zeromus:8B6B:/ -1023.9 "Bury 1" sync / 1[56]:[^:]*:Zeromus:8B6D:/ -1024.9 "Bury 2" sync / 1[56]:[^:]*:Zeromus:8B6E:/ -1025.9 "Bury 3" sync / 1[56]:[^:]*:Zeromus:8B6F:/ -1026.9 "Bury 4" sync / 1[56]:[^:]*:Zeromus:8B70:/ -1028.9 "Roar 5" sync / 1[56]:[^:]*:Zeromus:8B71:/ -1029.9 "Roar 6" sync / 1[56]:[^:]*:Zeromus:8B72:/ -1032.9 "Primal Roar 7" sync / 1[56]:[^:]*:Zeromus:8B73:/ - -1047.2 "Flow of the Abyss" sync / 1[56]:[^:]*:Zeromus:8CFA:/ -1048.3 "Akh Rhai/Umbral Prism/Umbral Rays" sync / 1[56]:[^:]*:Zeromus:8B7[467]:/ -1049.2 "Dimensional Surge" sync / 1[56]:[^:]*:Zeromus:8B82:/ -1060.3 "Chasmic Nails" sync / 1[56]:[^:]*:Zeromus:8B78:/ -1062.3 "Dimensional Surge" sync / 1[56]:[^:]*:Zeromus:8B82:/ - -1081.4 "Flow of the Abyss" sync / 1[56]:[^:]*:Zeromus:8CFA:/ -1082.5 "Akh Rhai/Umbral Prism/Umbral Rays" sync / 1[56]:[^:]*:Zeromus:8B7[467]:/ -1083.4 "Dimensional Surge" sync / 1[56]:[^:]*:Zeromus:8B82:/ -1094.5 "Chasmic Nails" sync / 1[56]:[^:]*:Zeromus:8B78:/ -1096.5 "Dimensional Surge" sync / 1[56]:[^:]*:Zeromus:8B82:/ +1000.0 "--sync--" StartsUsing { id: "8C0D", source: "Zeromus" } window 1000,0 +1006.0 "Rend the Rift" Ability { id: "8C0D", source: "Zeromus" } +1023.1 "Nostalgia" Ability { id: "8B6B", source: "Zeromus" } +1023.9 "Bury 1" Ability { id: "8B6D", source: "Zeromus" } +1024.9 "Bury 2" Ability { id: "8B6E", source: "Zeromus" } +1025.9 "Bury 3" Ability { id: "8B6F", source: "Zeromus" } +1026.9 "Bury 4" Ability { id: "8B70", source: "Zeromus" } +1028.9 "Roar 5" Ability { id: "8B71", source: "Zeromus" } +1029.9 "Roar 6" Ability { id: "8B72", source: "Zeromus" } +1032.9 "Primal Roar 7" Ability { id: "8B73", source: "Zeromus" } + +1047.2 "Flow of the Abyss" Ability { id: "8CFA", source: "Zeromus" } +1048.3 "Akh Rhai/Umbral Prism/Umbral Rays" Ability { id: "8B7[467]", source: "Zeromus" } +1049.2 "Dimensional Surge" Ability { id: "8B82", source: "Zeromus" } +1060.3 "Chasmic Nails" Ability { id: "8B78", source: "Zeromus" } +1062.3 "Dimensional Surge" Ability { id: "8B82", source: "Zeromus" } + +1081.4 "Flow of the Abyss" Ability { id: "8CFA", source: "Zeromus" } +1082.5 "Akh Rhai/Umbral Prism/Umbral Rays" Ability { id: "8B7[467]", source: "Zeromus" } +1083.4 "Dimensional Surge" Ability { id: "8B82", source: "Zeromus" } +1094.5 "Chasmic Nails" Ability { id: "8B78", source: "Zeromus" } +1096.5 "Dimensional Surge" Ability { id: "8B82", source: "Zeromus" } # Is this the loop? -1114.7 "Nostalgia" sync / 1[56]:[^:]*:Zeromus:8B6B:/ window 30,30 forcejump 1023.1 +1114.7 "Nostalgia" Ability { id: "8B6B", source: "Zeromus" } window 30,30 forcejump 1023.1 # ALL ENCOUNTER ABILITIES diff --git a/ui/raidboss/data/06-ew/trial/zeromus.txt b/ui/raidboss/data/06-ew/trial/zeromus.txt index 1ab402bb2f..838ba8368f 100644 --- a/ui/raidboss/data/06-ew/trial/zeromus.txt +++ b/ui/raidboss/data/06-ew/trial/zeromus.txt @@ -7,124 +7,124 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.7 "--sync--" sync / 14:[^:]*:Zeromus:8AF7:/ window 10,10 -11.7 "Abyssal Nox" sync / 1[56]:[^:]*:Zeromus:8AF7:/ -20.7 "--sync--" sync / 1[56]:[^:]*:Zeromus:8AF8:/ -27.7 "Abyssal Echoes" sync / 1[56]:[^:]*:Zeromus:8AFA:/ -33.8 "--sync--" sync / 1[56]:[^:]*:Zeromus:8AEF:/ -38.8 "Sable Thread x5" sync / 1[56]:[^:]*:Zeromus:8AEE:/ duration 5.6 -#40.5 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8AF0:/ -#41.8 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8AF0:/ -#43.1 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8AF0:/ -44.4 "--sync--" sync / 1[56]:[^:]*:Zeromus:8AF1:/ - -61.8 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8AF[BE]:/ - -73.0 "Dark Matter x3" sync / 1[56]:[^:]*:Zeromus:8B36:/ duration 4.1 -#73.9 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ -#75.5 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ -#77.1 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ - -89.2 "Flare" sync / 1[56]:[^:]*:Zeromus:8B12:/ -95.3 "Nox (cast)" sync / 1[56]:[^:]*:Zeromus:8D27:/ -97.3 "Prominence Spine" sync / 1[56]:[^:]*:Zeromus:8B16:/ - -101.3 "Nox x3" sync / 1[56]:[^:]*:Zeromus:8D29:/ duration 3.3 -#103.0 "Nox" #sync / 1[56]:[^:]*:Zeromus:8D23:/ -#104.6 "Nox" #sync / 1[56]:[^:]*:Zeromus:8D23:/ - -116.6 "Void Bio" sync / 1[56]:[^:]*:Zeromus:8B17:/ -130.8 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8AF[BE]:/ - -135.8 "--sync--" sync / 14:[^:]*:Zeromus:8B03:/ window 20,20 -145.8 "Big Bang" sync / 1[56]:[^:]*:Zeromus:8B03:/ -163.9 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8AF[BE]:/ -172.7 "The Dark Beckons" sync / 1[56]:[^:]*:Zeromus:8B0A:/ -177.7 "The Dark Divides" sync / 1[56]:[^:]*:Zeromus:8B09:/ - -195.1 "Meteor Impact" sync / 1[56]:[^:]*:Zeromus:8B0B:/ - -210.2 "Dark Matter x3" sync / 1[56]:[^:]*:Zeromus:8B36:/ duration 4.1 -#211.1 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ -#212.7 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ -#214.3 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ - -225.5 "Black Hole" sync / 1[56]:[^:]*:Zeromus:8D25:/ -235.6 "Fractured Eventide" sync / 1[56]:[^:]*:Zeromus:8AF[34]:/ - -256.6 "Void Meteor" sync / 1[56]:[^:]*:Zeromus:8B0C:/ -257.8 "Meteor Impact (proximity)" sync / 1[56]:[^:]*:Comet:8B11:/ -269.7 "Meteor Impact (cast)" sync / 1[56]:[^:]*:Zeromus:8B0B:/ -274.1 "Meteor Impact" sync / 1[56]:[^:]*:Zeromus:8B0F:/ -280.1 "Explosion" sync / 1[56]:[^:]*:Comet:8D33:/ - -286.7 "Black Hole" sync / 1[56]:[^:]*:Zeromus:8D25:/ -296.8 "Fractured Eventide" sync / 1[56]:[^:]*:Zeromus:8AF[34]:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.7 "--sync--" StartsUsing { id: "8AF7", source: "Zeromus" } window 10,10 +11.7 "Abyssal Nox" Ability { id: "8AF7", source: "Zeromus" } +20.7 "--sync--" Ability { id: "8AF8", source: "Zeromus" } +27.7 "Abyssal Echoes" Ability { id: "8AFA", source: "Zeromus" } +33.8 "--sync--" Ability { id: "8AEF", source: "Zeromus" } +38.8 "Sable Thread x5" Ability { id: "8AEE", source: "Zeromus" } duration 5.6 +#40.5 "Sable Thread" #Ability { id: "8AF0", source: "Zeromus" } +#41.8 "Sable Thread" #Ability { id: "8AF0", source: "Zeromus" } +#43.1 "Sable Thread" #Ability { id: "8AF0", source: "Zeromus" } +44.4 "--sync--" Ability { id: "8AF1", source: "Zeromus" } + +61.8 "Visceral Whirl" Ability { id: "8AF[BE]", source: "Zeromus" } + +73.0 "Dark Matter x3" Ability { id: "8B36", source: "Zeromus" } duration 4.1 +#73.9 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } +#75.5 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } +#77.1 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } + +89.2 "Flare" Ability { id: "8B12", source: "Zeromus" } +95.3 "Nox (cast)" Ability { id: "8D27", source: "Zeromus" } +97.3 "Prominence Spine" Ability { id: "8B16", source: "Zeromus" } + +101.3 "Nox x3" Ability { id: "8D29", source: "Zeromus" } duration 3.3 +#103.0 "Nox" #Ability { id: "8D23", source: "Zeromus" } +#104.6 "Nox" #Ability { id: "8D23", source: "Zeromus" } + +116.6 "Void Bio" Ability { id: "8B17", source: "Zeromus" } +130.8 "Visceral Whirl" Ability { id: "8AF[BE]", source: "Zeromus" } + +135.8 "--sync--" StartsUsing { id: "8B03", source: "Zeromus" } window 20,20 +145.8 "Big Bang" Ability { id: "8B03", source: "Zeromus" } +163.9 "Visceral Whirl" Ability { id: "8AF[BE]", source: "Zeromus" } +172.7 "The Dark Beckons" Ability { id: "8B0A", source: "Zeromus" } +177.7 "The Dark Divides" Ability { id: "8B09", source: "Zeromus" } + +195.1 "Meteor Impact" Ability { id: "8B0B", source: "Zeromus" } + +210.2 "Dark Matter x3" Ability { id: "8B36", source: "Zeromus" } duration 4.1 +#211.1 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } +#212.7 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } +#214.3 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } + +225.5 "Black Hole" Ability { id: "8D25", source: "Zeromus" } +235.6 "Fractured Eventide" Ability { id: "8AF[34]", source: "Zeromus" } + +256.6 "Void Meteor" Ability { id: "8B0C", source: "Zeromus" } +257.8 "Meteor Impact (proximity)" Ability { id: "8B11", source: "Comet" } +269.7 "Meteor Impact (cast)" Ability { id: "8B0B", source: "Zeromus" } +274.1 "Meteor Impact" Ability { id: "8B0F", source: "Zeromus" } +280.1 "Explosion" Ability { id: "8D33", source: "Comet" } + +286.7 "Black Hole" Ability { id: "8D25", source: "Zeromus" } +296.8 "Fractured Eventide" Ability { id: "8AF[34]", source: "Zeromus" } # Note: seen slightly irregular +3 time offsets here -309.9 "--sync--" sync / 14:[^:]*:Zeromus:8B04:/ window 20,20 -319.9 "Big Crunch" sync / 1[56]:[^:]*:Zeromus:8B04:/ - -335.1 "Abyssal Nox" sync / 1[56]:[^:]*:Zeromus:8AF7:/ -344.1 "--sync--" sync / 1[56]:[^:]*:Zeromus:8AF8:/ -351.1 "Abyssal Echoes" sync / 1[56]:[^:]*:Zeromus:8AFA:/ -354.1 "--sync--" sync / 1[56]:[^:]*:Zeromus:8AEF:/ -359.1 "Sable Thread x5" sync / 1[56]:[^:]*:Zeromus:8AEE:/ -#360.8 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8AF0:/ -#362.1 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8AF0:/ -#363.4 "Sable Thread" #sync / 1[56]:[^:]*:Zeromus:8AF0:/ -364.7 "--sync--" sync / 1[56]:[^:]*:Zeromus:8AF1:/ - -380.1 "Flare" sync / 1[56]:[^:]*:Zeromus:8B12:/ -386.1 "Nox (cast)" sync / 1[56]:[^:]*:Zeromus:8D27:/ -388.1 "Prominence Spine" sync / 1[56]:[^:]*:Zeromus:8B16:/ -392.1 "Nox x3" sync / 1[56]:[^:]*:Zeromus:8D29:/ duration 3.3 -#393.8 "Nox" #sync / 1[56]:[^:]*:Zeromus:8D23:/ -#395.4 "Nox" #sync / 1[56]:[^:]*:Zeromus:8D23:/ - -412.4 "Dark Matter x3" sync / 1[56]:[^:]*:Zeromus:8B36:/ duration 4.1 -#413.3 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ -#414.9 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ -#416.5 "Dark Matter" #sync / 1[56]:[^:]*:Zeromus:8B37:/ - -428.7 "Void Bio" sync / 1[56]:[^:]*:Zeromus:8B17:/ -442.8 "Visceral Whirl" sync / 1[56]:[^:]*:Zeromus:8AFB:/ +309.9 "--sync--" StartsUsing { id: "8B04", source: "Zeromus" } window 20,20 +319.9 "Big Crunch" Ability { id: "8B04", source: "Zeromus" } + +335.1 "Abyssal Nox" Ability { id: "8AF7", source: "Zeromus" } +344.1 "--sync--" Ability { id: "8AF8", source: "Zeromus" } +351.1 "Abyssal Echoes" Ability { id: "8AFA", source: "Zeromus" } +354.1 "--sync--" Ability { id: "8AEF", source: "Zeromus" } +359.1 "Sable Thread x5" Ability { id: "8AEE", source: "Zeromus" } +#360.8 "Sable Thread" #Ability { id: "8AF0", source: "Zeromus" } +#362.1 "Sable Thread" #Ability { id: "8AF0", source: "Zeromus" } +#363.4 "Sable Thread" #Ability { id: "8AF0", source: "Zeromus" } +364.7 "--sync--" Ability { id: "8AF1", source: "Zeromus" } + +380.1 "Flare" Ability { id: "8B12", source: "Zeromus" } +386.1 "Nox (cast)" Ability { id: "8D27", source: "Zeromus" } +388.1 "Prominence Spine" Ability { id: "8B16", source: "Zeromus" } +392.1 "Nox x3" Ability { id: "8D29", source: "Zeromus" } duration 3.3 +#393.8 "Nox" #Ability { id: "8D23", source: "Zeromus" } +#395.4 "Nox" #Ability { id: "8D23", source: "Zeromus" } + +412.4 "Dark Matter x3" Ability { id: "8B36", source: "Zeromus" } duration 4.1 +#413.3 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } +#414.9 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } +#416.5 "Dark Matter" #Ability { id: "8B37", source: "Zeromus" } + +428.7 "Void Bio" Ability { id: "8B17", source: "Zeromus" } +442.8 "Visceral Whirl" Ability { id: "8AFB", source: "Zeromus" } # FIXME: is this the loop? have seen through the sable thread at 360/484 -460.9 "Abyssal Nox" sync / 1[56]:[^:]*:Zeromus:8AF7:/ window 30,30 forcejump 335.1 +460.9 "Abyssal Nox" Ability { id: "8AF7", source: "Zeromus" } window 30,30 forcejump 335.1 # Phase 2: ~25% push -1000.0 "--sync--" sync / 14:[^:]*:Zeromus:8B19:/ window 1000,0 -1006.0 "Rend the Rift" sync / 1[56]:[^:]*:Zeromus:8B19:/ -1023.3 "Nostalgia" sync / 1[56]:[^:]*:Zeromus:8B1A:/ -1024.1 "Bury 1" sync / 1[56]:[^:]*:Zeromus:8B1C:/ -1025.1 "Bury 2" sync / 1[56]:[^:]*:Zeromus:8B1D:/ -1026.1 "Bury 3" sync / 1[56]:[^:]*:Zeromus:8B1E:/ -1027.1 "Bury 4" sync / 1[56]:[^:]*:Zeromus:8B1F:/ -1029.1 "Roar 5" sync / 1[56]:[^:]*:Zeromus:8B20:/ -1030.1 "Roar 6" sync / 1[56]:[^:]*:Zeromus:8B21:/ -1033.1 "Primal Roar 7" sync / 1[56]:[^:]*:Zeromus:8B22:/ - -1047.4 "Flow of the Abyss" sync / 1[56]:[^:]*:Zeromus:8CF9:/ -1049.4 "Dimensional Surge" sync / 1[56]:[^:]*:Zeromus:8B35:/ - -1057.9 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B27:/ -1059.5 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B28:/ -1060.5 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B29:/ -1061.5 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B2A:/ -1062.5 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B2B:/ - -1063.5 "--sync--" sync / 1[56]:[^:]*:Zeromus:8B26:/ -1064.2 "Chasmic Nails 1" sync / 1[56]:[^:]*:Zeromus:8B2C:/ -1065.0 "Chasmic Nails 2" sync / 1[56]:[^:]*:Zeromus:8B2D:/ -1065.8 "Chasmic Nails 3" sync / 1[56]:[^:]*:Zeromus:8B2E:/ -1066.5 "Chasmic Nails 4" sync / 1[56]:[^:]*:Zeromus:8B2F:/ -1067.3 "Chasmic Nails 5" sync / 1[56]:[^:]*:Zeromus:8B30:/ +1000.0 "--sync--" StartsUsing { id: "8B19", source: "Zeromus" } window 1000,0 +1006.0 "Rend the Rift" Ability { id: "8B19", source: "Zeromus" } +1023.3 "Nostalgia" Ability { id: "8B1A", source: "Zeromus" } +1024.1 "Bury 1" Ability { id: "8B1C", source: "Zeromus" } +1025.1 "Bury 2" Ability { id: "8B1D", source: "Zeromus" } +1026.1 "Bury 3" Ability { id: "8B1E", source: "Zeromus" } +1027.1 "Bury 4" Ability { id: "8B1F", source: "Zeromus" } +1029.1 "Roar 5" Ability { id: "8B20", source: "Zeromus" } +1030.1 "Roar 6" Ability { id: "8B21", source: "Zeromus" } +1033.1 "Primal Roar 7" Ability { id: "8B22", source: "Zeromus" } + +1047.4 "Flow of the Abyss" Ability { id: "8CF9", source: "Zeromus" } +1049.4 "Dimensional Surge" Ability { id: "8B35", source: "Zeromus" } + +1057.9 "--sync--" Ability { id: "8B27", source: "Zeromus" } +1059.5 "--sync--" Ability { id: "8B28", source: "Zeromus" } +1060.5 "--sync--" Ability { id: "8B29", source: "Zeromus" } +1061.5 "--sync--" Ability { id: "8B2A", source: "Zeromus" } +1062.5 "--sync--" Ability { id: "8B2B", source: "Zeromus" } + +1063.5 "--sync--" Ability { id: "8B26", source: "Zeromus" } +1064.2 "Chasmic Nails 1" Ability { id: "8B2C", source: "Zeromus" } +1065.0 "Chasmic Nails 2" Ability { id: "8B2D", source: "Zeromus" } +1065.8 "Chasmic Nails 3" Ability { id: "8B2E", source: "Zeromus" } +1066.5 "Chasmic Nails 4" Ability { id: "8B2F", source: "Zeromus" } +1067.3 "Chasmic Nails 5" Ability { id: "8B30", source: "Zeromus" } # TODO: probably the loop?? -1082.1 "Nostalgia" sync / 1[56]:[^:]*:Zeromus:8B1A:/ window 40,40 forcejump 1023.3 +1082.1 "Nostalgia" Ability { id: "8B1A", source: "Zeromus" } window 40,40 forcejump 1023.3 # ALL ENCOUNTER ABILITIES diff --git a/ui/raidboss/data/06-ew/trial/zodiark-ex.txt b/ui/raidboss/data/06-ew/trial/zodiark-ex.txt index e20b6858b1..a6ef2161ee 100644 --- a/ui/raidboss/data/06-ew/trial/zodiark-ex.txt +++ b/ui/raidboss/data/06-ew/trial/zodiark-ex.txt @@ -8,144 +8,144 @@ hideall "Triple Esoteric Ray" hideall "Infernal Stream" hideall "Infernal Torrent" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 - -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -10.8 "Kokytos" sync / 1[56]:[^:]*:Zodiark:6C60:/ window 11.3,5 -21.0 "Paradeigma 1" sync / 1[56]:[^:]*:Zodiark:67BF:/ -33.0 "Keraunos Eidolon" sync / 1[56]:[^:]*:Quetzalcoatl:67E1:/ -37.1 "Styx x6" sync / 1[56]:[^:]*:Zodiark:67F3:/ duration 5.5 -50.4 "Ania" sync / 1[56]:[^:]*:Zodiark:67EF:/ -60.5 "Exoterikos 1" sync / 1[56]:[^:]*:Zodiark:67C1:/ -69.6 "Esoterikos 2" sync / 1[56]:[^:]*:Zodiark:67C0:/ -69.7 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ - -81.8 "Paradeigma 2" sync / 1[56]:[^:]*:Zodiark:67BF:/ -93.8 "Keraunos Eidolon" sync / 1[56]:[^:]*:Quetzalcoatl:67E1:/ -93.9 "Algedon" sync / 1[56]:[^:]*:Zodiark:67E[CD]:/ -94.3 "Meteoros Eidolon" sync / 1[56]:[^:]*:Behemoth:67E2:/ -106.1 "Phobos" sync / 1[56]:[^:]*:Zodiark:67F0:/ - -116.3 "Paradeigma 3" sync / 1[56]:[^:]*:Zodiark:67BF:/ -123.5 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -135.6 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:666[23]:/ -141.2 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -141.8 "Opheos Eidolon" sync / 1[56]:[^:]*:python:67E3:/ -148.8 "Ania" sync / 1[56]:[^:]*:Zodiark:67EF:/ - -155.9 "Paradeigma 4" sync / 1[56]:[^:]*:Zodiark:67BF:/ -166.0 "Adikia" sync / 1[56]:[^:]*:Zodiark:67F1:/ -167.4 "Opheos Eidolon" sync / 1[56]:[^:]*:python:67E3:/ +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 + +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +10.8 "Kokytos" Ability { id: "6C60", source: "Zodiark" } window 11.3,5 +21.0 "Paradeigma 1" Ability { id: "67BF", source: "Zodiark" } +33.0 "Keraunos Eidolon" Ability { id: "67E1", source: "Quetzalcoatl" } +37.1 "Styx x6" Ability { id: "67F3", source: "Zodiark" } duration 5.5 +50.4 "Ania" Ability { id: "67EF", source: "Zodiark" } +60.5 "Exoterikos 1" Ability { id: "67C1", source: "Zodiark" } +69.6 "Esoterikos 2" Ability { id: "67C0", source: "Zodiark" } +69.7 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } + +81.8 "Paradeigma 2" Ability { id: "67BF", source: "Zodiark" } +93.8 "Keraunos Eidolon" Ability { id: "67E1", source: "Quetzalcoatl" } +93.9 "Algedon" Ability { id: "67E[CD]", source: "Zodiark" } +94.3 "Meteoros Eidolon" Ability { id: "67E2", source: "Behemoth" } +106.1 "Phobos" Ability { id: "67F0", source: "Zodiark" } + +116.3 "Paradeigma 3" Ability { id: "67BF", source: "Zodiark" } +123.5 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +135.6 "Astral Flow" Ability { id: "666[23]", source: "Zodiark" } +141.2 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +141.8 "Opheos Eidolon" Ability { id: "67E3", source: "python" } +148.8 "Ania" Ability { id: "67EF", source: "Zodiark" } + +155.9 "Paradeigma 4" Ability { id: "67BF", source: "Zodiark" } +166.0 "Adikia" Ability { id: "67F1", source: "Zodiark" } +167.4 "Opheos Eidolon" Ability { id: "67E3", source: "python" } # Adds 177.4 "--adds targetable--" -182.3 "--sync--" sync / 1[56]:[^:]*:Roiling Darkness:6631:/ -187.4 "--sync--" sync / 1[56]:[^:]*:Roiling Darkness:6631:/ -190.6 "Esoteric Pattern 1" sync / 1[56]:[^:]*:Arcane Sigil:67E[456]:/ +182.3 "--sync--" Ability { id: "6631", source: "Roiling Darkness" } +187.4 "--sync--" Ability { id: "6631", source: "Roiling Darkness" } +190.6 "Esoteric Pattern 1" Ability { id: "67E[456]", source: "Arcane Sigil" } -192.5 "--sync--" sync / 1[56]:[^:]*:Roiling Darkness:6631:/ -197.6 "--sync--" sync / 1[56]:[^:]*:Roiling Darkness:6631:/ -200.9 "Esoteric Pattern 2" sync / 1[56]:[^:]*:Arcane Sigil:67E[456]:/ +192.5 "--sync--" Ability { id: "6631", source: "Roiling Darkness" } +197.6 "--sync--" Ability { id: "6631", source: "Roiling Darkness" } +200.9 "Esoteric Pattern 2" Ability { id: "67E[456]", source: "Arcane Sigil" } -202.6 "--sync--" sync / 1[56]:[^:]*:Roiling Darkness:6631:/ -207.7 "--sync--" sync / 1[56]:[^:]*:Roiling Darkness:6631:/ -211.2 "Esoteric Pattern 3" sync / 1[56]:[^:]*:Arcane Sigil:67E[456]:/ +202.6 "--sync--" Ability { id: "6631", source: "Roiling Darkness" } +207.7 "--sync--" Ability { id: "6631", source: "Roiling Darkness" } +211.2 "Esoteric Pattern 3" Ability { id: "67E[456]", source: "Arcane Sigil" } # Note: 67E8 + 67EA is adds still alive, 67E9 + 6D7B means all adds were killed -214.4 "Apomnemoneumata Enrage?" sync / 1[56]:[^:]*:Zodiark:67E8:/ -225.9 "Apomnemoneumata" sync / 1[56]:[^:]*:Zodiark:6D7A:/ +214.4 "Apomnemoneumata Enrage?" Ability { id: "67E8", source: "Zodiark" } +225.9 "Apomnemoneumata" Ability { id: "6D7A", source: "Zodiark" } # Star tethers -314.4 "--sync--" sync / 1[56]:[^:]*:Zodiark:67E9:/ window 300,10 -325.9 "Apomnemoneumata" sync / 1[56]:[^:]*:Zodiark:6D7B:/ +314.4 "--sync--" Ability { id: "67E9", source: "Zodiark" } window 300,10 +325.9 "Apomnemoneumata" Ability { id: "6D7B", source: "Zodiark" } 336.9 "--targetable--" -347.6 "Astral Eclipse" sync / 1[56]:[^:]*:Zodiark:67C3:/ +347.6 "Astral Eclipse" Ability { id: "67C3", source: "Zodiark" } 347.6 "--untargetable--" 359.7 "--targetable--" -364.7 "Explosion 1" sync / 1[56]:[^:]*:Zodiark:67E7:/ -368.7 "Explosion 2" sync / 1[56]:[^:]*:Zodiark:67E7:/ -372.7 "Explosion 3" sync / 1[56]:[^:]*:Zodiark:67E7:/ - -374.8 "Triple Esoteric Ray" sync / 1[56]:[^:]*:Zodiark:67C4:/ -374.9 "Esoteric Ray 1" sync / 1[56]:[^:]*:Arcane Sigil:67E4:/ -377.9 "Esoteric Ray 2" sync / 1[56]:[^:]*:Arcane Sigil:67E4:/ -390.9 "Paradeigma 5" sync / 1[56]:[^:]*:Zodiark:67BF:/ -406.1 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:666[23]:/ -406.2 "Infernal Stream" sync / 1[56]:[^:]*:Zodiark:52D1:/ -407.2 "Infernal Torrent" #sync / 1[56]:[^:]*:Zodiark:67E0:/ duration 2 -411.9 "Keraunos Eidolon" sync / 1[56]:[^:]*:Quetzalcoatl:67E1:/ -412.4 "Meteoros Eidolon" sync / 1[56]:[^:]*:Behemoth:67E2:/ - -425.2 "Ania" sync / 1[56]:[^:]*:Zodiark:67EF:/ -437.3 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -446.4 "Algedon" sync / 1[56]:[^:]*:Zodiark:67E[CD]:/ -447.5 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ - -460.6 "Paradeigma 6" sync / 1[56]:[^:]*:Zodiark:67BF:/ -475.8 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:666[23]:/ -475.9 "Infernal Stream" sync / 1[56]:[^:]*:Zodiark:52D1:/ -476.9 "Infernal Torrent" #sync / 1[56]:[^:]*:Zodiark:67E0:/ duration 2 -481.6 "Keraunos Eidolon" sync / 1[56]:[^:]*:Quetzalcoatl:67E1:/ -481.6 "Opheos Eidolon" sync / 1[56]:[^:]*:python:67E3:/ - -486.9 "Styx x7" sync / 1[56]:[^:]*:Zodiark:67F3:/ duration 8 -506.0 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -508.3 "Trimorphos Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C2:/ -510.1 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -514.1 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -520.5 "Adikia" sync / 1[56]:[^:]*:Zodiark:67F1:/ +364.7 "Explosion 1" Ability { id: "67E7", source: "Zodiark" } +368.7 "Explosion 2" Ability { id: "67E7", source: "Zodiark" } +372.7 "Explosion 3" Ability { id: "67E7", source: "Zodiark" } + +374.8 "Triple Esoteric Ray" Ability { id: "67C4", source: "Zodiark" } +374.9 "Esoteric Ray 1" Ability { id: "67E4", source: "Arcane Sigil" } +377.9 "Esoteric Ray 2" Ability { id: "67E4", source: "Arcane Sigil" } +390.9 "Paradeigma 5" Ability { id: "67BF", source: "Zodiark" } +406.1 "Astral Flow" Ability { id: "666[23]", source: "Zodiark" } +406.2 "Infernal Stream" Ability { id: "52D1", source: "Zodiark" } +407.2 "Infernal Torrent" #Ability { id: "67E0", source: "Zodiark" } duration 2 +411.9 "Keraunos Eidolon" Ability { id: "67E1", source: "Quetzalcoatl" } +412.4 "Meteoros Eidolon" Ability { id: "67E2", source: "Behemoth" } + +425.2 "Ania" Ability { id: "67EF", source: "Zodiark" } +437.3 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +446.4 "Algedon" Ability { id: "67E[CD]", source: "Zodiark" } +447.5 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } + +460.6 "Paradeigma 6" Ability { id: "67BF", source: "Zodiark" } +475.8 "Astral Flow" Ability { id: "666[23]", source: "Zodiark" } +475.9 "Infernal Stream" Ability { id: "52D1", source: "Zodiark" } +476.9 "Infernal Torrent" #Ability { id: "67E0", source: "Zodiark" } duration 2 +481.6 "Keraunos Eidolon" Ability { id: "67E1", source: "Quetzalcoatl" } +481.6 "Opheos Eidolon" Ability { id: "67E3", source: "python" } + +486.9 "Styx x7" Ability { id: "67F3", source: "Zodiark" } duration 8 +506.0 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +508.3 "Trimorphos Exoterikos" Ability { id: "67C2", source: "Zodiark" } +510.1 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +514.1 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +520.5 "Adikia" Ability { id: "67F1", source: "Zodiark" } # Star tethers 2 -535.7 "Astral Eclipse" sync / 1[56]:[^:]*:Zodiark:67C3:/ +535.7 "Astral Eclipse" Ability { id: "67C3", source: "Zodiark" } 535.7 "--untargetable--" 547.8 "--targetable--" -552.8 "Explosion 1" sync / 1[56]:[^:]*:Zodiark:67E7:/ -556.8 "Explosion 2" sync / 1[56]:[^:]*:Zodiark:67E7:/ -560.8 "Explosion 3" sync / 1[56]:[^:]*:Zodiark:67E7:/ -565.3 "Algedon" sync / 1[56]:[^:]*:Zodiark:67E[CD]:/ -577.5 "Ania" sync / 1[56]:[^:]*:Zodiark:67EF:/ - -587.6 "Paradeigma 7" sync / 1[56]:[^:]*:Zodiark:67BF:/ -594.7 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -606.8 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:666[23]:/ -606.9 "Infernal Stream" sync / 1[56]:[^:]*:Zodiark:52D1:/ -607.9 "Infernal Torrent" #sync / 1[56]:[^:]*:Zodiark:67E0:/ duration 2 -612.4 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -613.0 "Opheos Eidolon" sync / 1[56]:[^:]*:python:67E3:/ -615.9 "Phlegethon x3" sync / 1[56]:[^:]*:Zodiark:67EB:/ duration 4 - -622.9 "Styx x8" sync / 1[56]:[^:]*:Zodiark:67F3:/ duration 9 -639.3 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -648.4 "Triple Esoteric Ray" sync / 1[56]:[^:]*:Zodiark:67C4:/ -648.5 "Esoteric Ray 1" sync / 1[56]:[^:]*:Arcane Sigil:67E4:/ -648.5 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -651.5 "Esoteric Ray 2" sync / 1[56]:[^:]*:Arcane Sigil:67E4:/ - -659.6 "Paradeigma 8" sync / 1[56]:[^:]*:Zodiark:67BF:/ -666.7 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -678.8 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:666[23]:/ -678.9 "Infernal Stream" sync / 1[56]:[^:]*:Zodiark:52D1:/ -679.9 "Infernal Torrent" #sync / 1[56]:[^:]*:Zodiark:67E0:/ duration 2 -684.4 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -685.0 "Keraunos Eidolon" sync / 1[56]:[^:]*:Quetzalcoatl:67E1:/ -685.5 "Meteoros Eidolon" sync / 1[56]:[^:]*:Behemoth:67E2:/ - -693.9 "Phobos" sync / 1[56]:[^:]*:Zodiark:67F0:/ -714.8 "Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E6:/ -717.0 "Trimorphos Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C2:/ -718.7 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -722.7 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -729.2 "Algedon" sync / 1[56]:[^:]*:Zodiark:67E[CD]:/ -738.4 "Styx x9" sync / 1[56]:[^:]*:Zodiark:67F3:/ duration 10 - -751.8 "Paradeigma 9" sync / 1[56]:[^:]*:Zodiark:67BF:/ -758.9 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -771.0 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:666[23]:/ -771.1 "Infernal Stream" sync / 1[56]:[^:]*:Zodiark:52D1:/ -772.1 "Infernal Torrent" # sync / 1[56]:[^:]*:Zodiark:67E0:/ duration 2 -776.6 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67E[56]:/ -777.2 "Keraunos Eidolon" sync / 1[56]:[^:]*:Quetzalcoatl:67E1:/ -777.2 "Opheos Eidolon" sync / 1[56]:[^:]*:python:67E3:/ - -782.1 "Styx x9" sync / 1[56]:[^:]*:Zodiark:67F3:/ duration 10 -803.6 "Apomnemoneumata Enrage" sync / 1[56]:[^:]*:Zodiark:67F5:/ +552.8 "Explosion 1" Ability { id: "67E7", source: "Zodiark" } +556.8 "Explosion 2" Ability { id: "67E7", source: "Zodiark" } +560.8 "Explosion 3" Ability { id: "67E7", source: "Zodiark" } +565.3 "Algedon" Ability { id: "67E[CD]", source: "Zodiark" } +577.5 "Ania" Ability { id: "67EF", source: "Zodiark" } + +587.6 "Paradeigma 7" Ability { id: "67BF", source: "Zodiark" } +594.7 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +606.8 "Astral Flow" Ability { id: "666[23]", source: "Zodiark" } +606.9 "Infernal Stream" Ability { id: "52D1", source: "Zodiark" } +607.9 "Infernal Torrent" #Ability { id: "67E0", source: "Zodiark" } duration 2 +612.4 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +613.0 "Opheos Eidolon" Ability { id: "67E3", source: "python" } +615.9 "Phlegethon x3" Ability { id: "67EB", source: "Zodiark" } duration 4 + +622.9 "Styx x8" Ability { id: "67F3", source: "Zodiark" } duration 9 +639.3 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +648.4 "Triple Esoteric Ray" Ability { id: "67C4", source: "Zodiark" } +648.5 "Esoteric Ray 1" Ability { id: "67E4", source: "Arcane Sigil" } +648.5 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +651.5 "Esoteric Ray 2" Ability { id: "67E4", source: "Arcane Sigil" } + +659.6 "Paradeigma 8" Ability { id: "67BF", source: "Zodiark" } +666.7 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +678.8 "Astral Flow" Ability { id: "666[23]", source: "Zodiark" } +678.9 "Infernal Stream" Ability { id: "52D1", source: "Zodiark" } +679.9 "Infernal Torrent" #Ability { id: "67E0", source: "Zodiark" } duration 2 +684.4 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +685.0 "Keraunos Eidolon" Ability { id: "67E1", source: "Quetzalcoatl" } +685.5 "Meteoros Eidolon" Ability { id: "67E2", source: "Behemoth" } + +693.9 "Phobos" Ability { id: "67F0", source: "Zodiark" } +714.8 "Esoteric Sect" Ability { id: "67E6", source: "Arcane Sigil" } +717.0 "Trimorphos Exoterikos" Ability { id: "67C2", source: "Zodiark" } +718.7 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +722.7 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +729.2 "Algedon" Ability { id: "67E[CD]", source: "Zodiark" } +738.4 "Styx x9" Ability { id: "67F3", source: "Zodiark" } duration 10 + +751.8 "Paradeigma 9" Ability { id: "67BF", source: "Zodiark" } +758.9 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +771.0 "Astral Flow" Ability { id: "666[23]", source: "Zodiark" } +771.1 "Infernal Stream" Ability { id: "52D1", source: "Zodiark" } +772.1 "Infernal Torrent" # Ability { id: "67E0", source: "Zodiark" } duration 2 +776.6 "Esoteric Dyad/Esoteric Sect" Ability { id: "67E[56]", source: "Arcane Sigil" } +777.2 "Keraunos Eidolon" Ability { id: "67E1", source: "Quetzalcoatl" } +777.2 "Opheos Eidolon" Ability { id: "67E3", source: "python" } + +782.1 "Styx x9" Ability { id: "67F3", source: "Zodiark" } duration 10 +803.6 "Apomnemoneumata Enrage" Ability { id: "67F5", source: "Zodiark" } diff --git a/ui/raidboss/data/06-ew/trial/zodiark.txt b/ui/raidboss/data/06-ew/trial/zodiark.txt index ae63a09b11..9fa9c4dae4 100644 --- a/ui/raidboss/data/06-ew/trial/zodiark.txt +++ b/ui/raidboss/data/06-ew/trial/zodiark.txt @@ -16,104 +16,104 @@ hideall "Triple Esoteric Ray" # Note: Opheos Eidolon sometimes comes from Zodiark/Behemoth and not Python, # maybe a race condition in FFXIV ACT Plugin? -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -7.1 "--sync--" sync / 14:[^:]*:Zodiark:6C27:/ window 10,10 -11.1 "Kokytos" sync / 1[56]:[^:]*:Zodiark:6C27:/ -20.2 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:6C36:/ -27.5 "Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67CC:/ -31.5 "Ania" sync / 1[56]:[^:]*:Zodiark:67D5:/ -41.6 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:6C36:/ -48.9 "Esoteric Dyad" sync / 1[56]:[^:]*:Arcane Sigil:67CB:/ -58.3 "Paradeigma" sync / 1[56]:[^:]*:Zodiark:67C8:/ -71.0 "Meteoros Eidolon" sync / 1[56]:[^:]*:Behemoth:67C6:/ -76.1 "Paradeigma" sync / 1[56]:[^:]*:Zodiark:67C8:/ -88.3 "Opheos Eidolon" sync / 1[56]:[^:]*:(Python|Behemoth|Zodiark):67C7:/ -94.9 "Phlegethon x3" sync / 1[56]:[^:]*:Zodiark:67D0:/ duration 4.6 -103.1 "Styx x5" sync / 1[56]:[^:]*:Zodiark:67DB:/ duration 5.5 -115.7 "Paradeigma" sync / 1[56]:[^:]*:Zodiark:67C8:/ -122.8 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:6C36:/ -129.1 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -129.4 "Meteoros Eidolon" sync / 1[56]:[^:]*:Behemoth:67C6:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +7.1 "--sync--" StartsUsing { id: "6C27", source: "Zodiark" } window 10,10 +11.1 "Kokytos" Ability { id: "6C27", source: "Zodiark" } +20.2 "Exoterikos" Ability { id: "6C36", source: "Zodiark" } +27.5 "Esoteric Sect" Ability { id: "67CC", source: "Arcane Sigil" } +31.5 "Ania" Ability { id: "67D5", source: "Zodiark" } +41.6 "Exoterikos" Ability { id: "6C36", source: "Zodiark" } +48.9 "Esoteric Dyad" Ability { id: "67CB", source: "Arcane Sigil" } +58.3 "Paradeigma" Ability { id: "67C8", source: "Zodiark" } +71.0 "Meteoros Eidolon" Ability { id: "67C6", source: "Behemoth" } +76.1 "Paradeigma" Ability { id: "67C8", source: "Zodiark" } +88.3 "Opheos Eidolon" Ability { id: "67C7", source: ["Python", "Behemoth", "Zodiark"] } +94.9 "Phlegethon x3" Ability { id: "67D0", source: "Zodiark" } duration 4.6 +103.1 "Styx x5" Ability { id: "67DB", source: "Zodiark" } duration 5.5 +115.7 "Paradeigma" Ability { id: "67C8", source: "Zodiark" } +122.8 "Exoterikos" Ability { id: "6C36", source: "Zodiark" } +129.1 "Esoteric Dyad/Esoteric Sect" Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +129.4 "Meteoros Eidolon" Ability { id: "67C6", source: "Behemoth" } # Cutscene -144.6 "--sync--" sync / 14:[^:]*:Zodiark:6734:/ window 150,10 -149.6 "Complete Control" sync / 1[56]:[^:]*:Zodiark:6734:/ +144.6 "--sync--" StartsUsing { id: "6734", source: "Zodiark" } window 150,10 +149.6 "Complete Control" Ability { id: "6734", source: "Zodiark" } 150.2 "--untargetable--" -150.3 "--sync--" sync / 1[56]:[^:]*:Zodiark:67DD:/ +150.3 "--sync--" Ability { id: "67DD", source: "Zodiark" } 174.3 "--targetable--" -179.4 "Paradeigma" sync / 1[56]:[^:]*:Zodiark:67BF:/ -194.5 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:6EC9:/ -205.3 "Meteoros Eidolon" sync / 1[56]:[^:]*:Behemoth:67C6:/ -215.0 "Adikia" sync / 1[56]:[^:]*:Zodiark:67D8:/ -226.2 "Phlegethon x3" sync / 1[56]:[^:]*:Zodiark:67CF:/ duration 4.6 -235.3 "Triple Esoteric Ray" sync / 1[56]:[^:]*:Zodiark:67C4:/ -235.4 "Esoteric Ray 1" sync / 1[56]:[^:]*:Arcane Sigil:67CA:/ -238.4 "Esoteric Ray 2" sync / 1[56]:[^:]*:Arcane Sigil:67CA:/ -247.4 "Algedon" sync / 1[56]:[^:]*:Zodiark:67D[12]:/ -253.6 "Paradeigma" sync / 1[56]:[^:]*:Zodiark:67BF:/ -268.7 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:6630:/ +179.4 "Paradeigma" Ability { id: "67BF", source: "Zodiark" } +194.5 "Astral Flow" Ability { id: "6EC9", source: "Zodiark" } +205.3 "Meteoros Eidolon" Ability { id: "67C6", source: "Behemoth" } +215.0 "Adikia" Ability { id: "67D8", source: "Zodiark" } +226.2 "Phlegethon x3" Ability { id: "67CF", source: "Zodiark" } duration 4.6 +235.3 "Triple Esoteric Ray" Ability { id: "67C4", source: "Zodiark" } +235.4 "Esoteric Ray 1" Ability { id: "67CA", source: "Arcane Sigil" } +238.4 "Esoteric Ray 2" Ability { id: "67CA", source: "Arcane Sigil" } +247.4 "Algedon" Ability { id: "67D[12]", source: "Zodiark" } +253.6 "Paradeigma" Ability { id: "67BF", source: "Zodiark" } +268.7 "Astral Flow" Ability { id: "6630", source: "Zodiark" } # Note: this mob is sometimes Zodiark and sometimes Python. -274.6 "Opheos Eidolon" sync / 1[56]:[^:]*:(Python|Behemoth|Zodiark):67C7:/ window 10,10 +274.6 "Opheos Eidolon" Ability { id: "67C7", source: ["Python", "Behemoth", "Zodiark"] } window 10,10 # Star tethers -280.9 "--sync--" sync / 14:[^:]*:Zodiark:67C3:/ window 300,10 -285.9 "Astral Eclipse" sync / 1[56]:[^:]*:Zodiark:67C3:/ +280.9 "--sync--" StartsUsing { id: "67C3", source: "Zodiark" } window 300,10 +285.9 "Astral Eclipse" Ability { id: "67C3", source: "Zodiark" } 285.9 "--untargetable--" 298.0 "--targetable--" -303.0 "Explosion 1" sync / 1[56]:[^:]*:Zodiark:67CD:/ -307.0 "Explosion 2" sync / 1[56]:[^:]*:Zodiark:67CD:/ -311.0 "Explosion 3" sync / 1[56]:[^:]*:Zodiark:67CD:/ +303.0 "Explosion 1" Ability { id: "67CD", source: "Zodiark" } +307.0 "Explosion 2" Ability { id: "67CD", source: "Zodiark" } +311.0 "Explosion 3" Ability { id: "67CD", source: "Zodiark" } -318.1 "Styx x5" sync / 1[56]:[^:]*:Zodiark:67DA:/ duration 5.5 -333.2 "Kokytos" sync / 1[56]:[^:]*:Zodiark:6C5F:/ -338.3 "Paradeigma" sync / 1[56]:[^:]*:Zodiark:67BF:/ -353.4 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:(662F|6630):/ -359.8 "Meteoros Eidolon" sync / 1[56]:[^:]*:Behemoth:67C6:/ -368.6 "Styx" sync / 1[56]:[^:]*:Zodiark:67DA:/ -378.7 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -386.8 "Adikia" sync / 1[56]:[^:]*:Zodiark:67D8:/ -388.0 "Esoteric Dyad" sync / 1[56]:[^:]*:Arcane Sigil:67CB:/ +318.1 "Styx x5" Ability { id: "67DA", source: "Zodiark" } duration 5.5 +333.2 "Kokytos" Ability { id: "6C5F", source: "Zodiark" } +338.3 "Paradeigma" Ability { id: "67BF", source: "Zodiark" } +353.4 "Astral Flow" Ability { id: ["662F", "6630"], source: "Zodiark" } +359.8 "Meteoros Eidolon" Ability { id: "67C6", source: "Behemoth" } +368.6 "Styx" Ability { id: "67DA", source: "Zodiark" } +378.7 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +386.8 "Adikia" Ability { id: "67D8", source: "Zodiark" } +388.0 "Esoteric Dyad" Ability { id: "67CB", source: "Arcane Sigil" } -391.0 "Trimorphos Exoterikos" sync / 14:[^:]*:Zodiark:67C2:/ -401.7 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -405.7 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -409.7 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -416.2 "Paradeigma" sync / 1[56]:[^:]*:Zodiark:67BF:/ -431.4 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:(662F|6630):/ -437.2 "Opheos Eidolon" sync / 1[56]:[^:]*:(Python|Behemoth|Zodiark):67C7:/ -446.5 "Styx x5" sync / 1[56]:[^:]*:Zodiark:67DA:/ duration 5.5 -456.6 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -465.7 "Triple Esoteric Ray" sync / 1[56]:[^:]*:Zodiark:67C4:/ -465.8 "Esoteric Ray 1" sync / 1[56]:[^:]*:Arcane Sigil:67CA:/ -465.9 "Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67CC:/ -468.8 "Esoteric Ray 2" sync / 1[56]:[^:]*:Arcane Sigil:67CA:/ -472.8 "Ania" sync / 1[56]:[^:]*:Zodiark:67D4:/ +391.0 "Trimorphos Exoterikos" StartsUsing { id: "67C2", source: "Zodiark" } +401.7 "Esoteric Dyad/Esoteric Sect" Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +405.7 "Esoteric Dyad/Esoteric Sect" Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +409.7 "Esoteric Dyad/Esoteric Sect" Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +416.2 "Paradeigma" Ability { id: "67BF", source: "Zodiark" } +431.4 "Astral Flow" Ability { id: ["662F", "6630"], source: "Zodiark" } +437.2 "Opheos Eidolon" Ability { id: "67C7", source: ["Python", "Behemoth", "Zodiark"] } +446.5 "Styx x5" Ability { id: "67DA", source: "Zodiark" } duration 5.5 +456.6 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +465.7 "Triple Esoteric Ray" Ability { id: "67C4", source: "Zodiark" } +465.8 "Esoteric Ray 1" Ability { id: "67CA", source: "Arcane Sigil" } +465.9 "Esoteric Sect" Ability { id: "67CC", source: "Arcane Sigil" } +468.8 "Esoteric Ray 2" Ability { id: "67CA", source: "Arcane Sigil" } +472.8 "Ania" Ability { id: "67D4", source: "Zodiark" } -479.0 "Trimorphos Exoterikos" sync / 14:[^:]*:Zodiark:67C2:/ -489.8 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -493.8 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -497.1 "Phlegethon x3" sync / 1[56]:[^:]*:Zodiark:67CF:/ duration 4.6 -497.7 "Esoteric Dyad/Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -505.3 "Styx x5" sync / 1[56]:[^:]*:Zodiark:67DA:/ duration 5.5 -517.5 "Algedon" sync / 1[56]:[^:]*:Zodiark:67D[12]:/ -530.7 "Paradeigma" sync / 1[56]:[^:]*:Zodiark:67BF:/ -545.9 "Astral Flow" sync / 1[56]:[^:]*:Zodiark:(662F|6630):/ -551.7 "Opheos Eidolon" sync / 1[56]:[^:]*:(Python|Behemoth|Zodiark):67C7:/ -561.0 "Styx x5" sync / 1[56]:[^:]*:Zodiark:67DA:/ duration 5.5 -571.2 "Exoterikos" sync / 1[56]:[^:]*:Zodiark:67C1:/ -580.3 "Triple Esoteric Ray" sync / 1[56]:[^:]*:Zodiark:67C4:/ -580.4 "Esoteric Ray 1" sync / 1[56]:[^:]*:Arcane Sigil:67CA:/ -580.4 "Esoteric Sect" sync / 1[56]:[^:]*:Arcane Sigil:67CC:/ -583.4 "Esoteric Ray 2" sync / 1[56]:[^:]*:Arcane Sigil:67CA:/ -587.4 "Ania" sync / 1[56]:[^:]*:Zodiark:67D4:/ +479.0 "Trimorphos Exoterikos" StartsUsing { id: "67C2", source: "Zodiark" } +489.8 "Esoteric Dyad/Esoteric Sect" Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +493.8 "Esoteric Dyad/Esoteric Sect" Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +497.1 "Phlegethon x3" Ability { id: "67CF", source: "Zodiark" } duration 4.6 +497.7 "Esoteric Dyad/Esoteric Sect" Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +505.3 "Styx x5" Ability { id: "67DA", source: "Zodiark" } duration 5.5 +517.5 "Algedon" Ability { id: "67D[12]", source: "Zodiark" } +530.7 "Paradeigma" Ability { id: "67BF", source: "Zodiark" } +545.9 "Astral Flow" Ability { id: ["662F", "6630"], source: "Zodiark" } +551.7 "Opheos Eidolon" Ability { id: "67C7", source: ["Python", "Behemoth", "Zodiark"] } +561.0 "Styx x5" Ability { id: "67DA", source: "Zodiark" } duration 5.5 +571.2 "Exoterikos" Ability { id: "67C1", source: "Zodiark" } +580.3 "Triple Esoteric Ray" Ability { id: "67C4", source: "Zodiark" } +580.4 "Esoteric Ray 1" Ability { id: "67CA", source: "Arcane Sigil" } +580.4 "Esoteric Sect" Ability { id: "67CC", source: "Arcane Sigil" } +583.4 "Esoteric Ray 2" Ability { id: "67CA", source: "Arcane Sigil" } +587.4 "Ania" Ability { id: "67D4", source: "Zodiark" } -593.5 "Trimorphos Exoterikos" sync / 14:[^:]*:Zodiark:67C2:/ window 50,50 jump 479 -604.3 "Esoteric Dyad/Esoteric Sect" #sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -608.3 "Esoteric Dyad/Esoteric Sect" #sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -611.6 "Phlegethon x3" #sync / 1[56]:[^:]*:Zodiark:67CF:/ duration 4.6 -612.2 "Esoteric Dyad/Esoteric Sect" #sync / 1[56]:[^:]*:Arcane Sigil:(67CB|67CC):/ -619.8 "Styx x5" #sync / 1[56]:[^:]*:Zodiark:67DA:/ duration 5.5 -632.0 "Algedon" #sync / 1[56]:[^:]*:Zodiark:67D[12]:/ +593.5 "Trimorphos Exoterikos" StartsUsing { id: "67C2", source: "Zodiark" } window 50,50 jump 479 +604.3 "Esoteric Dyad/Esoteric Sect" #Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +608.3 "Esoteric Dyad/Esoteric Sect" #Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +611.6 "Phlegethon x3" #Ability { id: "67CF", source: "Zodiark" } duration 4.6 +612.2 "Esoteric Dyad/Esoteric Sect" #Ability { id: ["67CB", "67CC"], source: "Arcane Sigil" } +619.8 "Styx x5" #Ability { id: "67DA", source: "Zodiark" } duration 5.5 +632.0 "Algedon" #Ability { id: "67D[12]", source: "Zodiark" } diff --git a/ui/raidboss/data/06-ew/trial/zurvan-un.ts b/ui/raidboss/data/06-ew/trial/zurvan-un.ts index b761e27240..e8eced40b7 100644 --- a/ui/raidboss/data/06-ew/trial/zurvan-un.ts +++ b/ui/raidboss/data/06-ew/trial/zurvan-un.ts @@ -57,6 +57,7 @@ const triggerSet: TriggerSet = { waveCannonTarget: { en: 'Wave Cannon on YOU', de: 'Wellenkanone auf DIR', + fr: 'Canon plasma sur VOUS', ja: '波動砲対象', cn: '波动炮点名', ko: '파동포 대상자', @@ -64,6 +65,7 @@ const triggerSet: TriggerSet = { avoidWaveCannon: { en: 'Away from ${target} -- Wave Cannon', de: 'Weg von ${target} -- Wellenkanone', + fr: 'Éloignez-vous de ${target} -- Canon plasma', ja: '${target} から離れる -- 波動砲', cn: '远离 ${target} -- 波动炮', ko: '${target} 피하기 -- 파동포', @@ -107,6 +109,7 @@ const triggerSet: TriggerSet = { demonClawYou: { en: 'Knockback from boss on YOU', de: 'Rückstoß vom Boss auf DIR', + fr: 'Poussée depuis le boss sur VOUS', ja: 'デモンクロー ノックバック対象', cn: 'BOSS击退点名', ko: '넉백공격 대상자', @@ -149,6 +152,7 @@ const triggerSet: TriggerSet = { demonicSpread: { en: 'Spread -- Don\'t stack!', de: 'Verteilen -- Nicht aufeinander!', + fr: 'Écartez-vous - Ne vous packez pas !', ja: '散開 -- 重ならないで!', cn: '分散 -- 不要集合!', ko: '산개 -- 쉐어맞으면 안됨!', @@ -188,6 +192,7 @@ const triggerSet: TriggerSet = { text: { en: 'Stay outside hitbox', de: 'Auserhalb der Hitbox stehen', + fr: 'Restez à l\'extérieur de la hitbox', ja: '範囲攻撃を避ける', cn: '站在判定圈外', ko: '히트박스 밖으로', @@ -216,6 +221,7 @@ const triggerSet: TriggerSet = { baitSouthernCross: { en: 'Bait Ice Puddles', de: 'Eisflächen ködern', + fr: 'Bait les puddles de glace', ja: '氷範囲を捨てる', cn: '诱导冰圈', ko: '얼음장판 유도', @@ -245,6 +251,7 @@ const triggerSet: TriggerSet = { tetherBuddy: { en: 'Tethered with ${buddy}', de: 'Mit ${buddy} verbunden', + fr: 'Lié avec ${buddy}', ja: '${buddy} とペア', cn: '与 ${buddy} 连线', ko: '선 연결 ${buddy}', @@ -274,6 +281,7 @@ const triggerSet: TriggerSet = { infiniteDebuff: { en: '${element} on you', de: '${element} auf dir', + fr: '${element} sur vous', ja: '${element} 付与', cn: '${element} 点名', ko: '${element}', @@ -281,6 +289,7 @@ const triggerSet: TriggerSet = { fire: { en: 'Fire', de: 'Feuer', + fr: 'Feu', ja: '炎', cn: '火', ko: '불', @@ -288,6 +297,7 @@ const triggerSet: TriggerSet = { ice: { en: 'Ice', de: 'Eis', + fr: 'Glace', ja: '氷', cn: '冰', ko: '얼음', @@ -312,6 +322,7 @@ const triggerSet: TriggerSet = { sealTowers: { en: '${element} towers with ${buddy}', de: '${element} Türme mit ${buddy}', + fr: 'Tour de ${element} avec ${buddy}', ja: '${buddy} と ${element} の塔に入る', cn: '与${buddy}踩${element}塔', ko: '${element} 기둥 +${buddy}', @@ -319,6 +330,7 @@ const triggerSet: TriggerSet = { fire: { en: 'Fire', de: 'Feuer', + fr: 'Feu', ja: '炎', cn: '火', ko: '불', @@ -326,6 +338,7 @@ const triggerSet: TriggerSet = { ice: { en: 'Ice', de: 'Eis', + fr: 'Glace', ja: '氷', cn: '冰', ko: '얼음', @@ -384,12 +397,17 @@ const triggerSet: TriggerSet = { }, { 'locale': 'fr', - 'missingTranslations': true, 'replaceSync': { 'Execrated Wile': 'ruse honnie', 'Zurvan': 'Zurvan', }, 'replaceText': { + '\\(circles\\)': '(Cerles)', + '\\(explosion\\)': '(Explosion)', + '\\(puddle\\)': '(Puddle)', + '\\(snapshot\\)': '(Copie)', + '\\(avoid\\)': '(Évitez)', + '\\(stack\\)': '(Package)', 'Ahura Mazda': 'Ahura Mazda', 'Biting Halberd': 'Hallebarde mordante', 'Broken Seal': 'Marque brisée', diff --git a/ui/raidboss/data/06-ew/trial/zurvan-un.txt b/ui/raidboss/data/06-ew/trial/zurvan-un.txt index 5df864efae..a34ebf0d59 100644 --- a/ui/raidboss/data/06-ew/trial/zurvan-un.txt +++ b/ui/raidboss/data/06-ew/trial/zurvan-un.txt @@ -22,31 +22,31 @@ hideall "--Reset--" hideall "--sync--" # Preliminary phase. No pushes. -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 -6.4 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:857F:/ window 6.5,2.5 -10.5 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:857F:/ -16.6 "Flare Star (circles)" sync / 1[56]:[^:]*:Zurvan:8557:/ -17.3 "Flare Star (explosion)" sync / 1[56]:[^:]*:Zurvan:8558:/ -21.9 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:857F:/ -28.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:857F:/ -35.0 "Flare Star (circles)" sync / 1[56]:[^:]*:Zurvan:8557:/ -35.7 "Flare Star (explosion)" sync / 1[56]:[^:]*:Zurvan:8558:/ -40.6 "the Purge" sync / 1[56]:[^:]*:Zurvan:8559:/ window 40.6,10 +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 +6.4 "Metal Cutter" Ability { id: "857F", source: "Zurvan" } window 6.5,2.5 +10.5 "Metal Cutter" Ability { id: "857F", source: "Zurvan" } +16.6 "Flare Star (circles)" Ability { id: "8557", source: "Zurvan" } +17.3 "Flare Star (explosion)" Ability { id: "8558", source: "Zurvan" } +21.9 "Metal Cutter" Ability { id: "857F", source: "Zurvan" } +28.0 "Metal Cutter" Ability { id: "857F", source: "Zurvan" } +35.0 "Flare Star (circles)" Ability { id: "8557", source: "Zurvan" } +35.7 "Flare Star (explosion)" Ability { id: "8558", source: "Zurvan" } +40.6 "the Purge" Ability { id: "8559", source: "Zurvan" } window 40.6,10 49.6 "--untargetable--" 58.6 "--targetable--" -61.7 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ window 61.7,2.5 # Different from preliminary phase, so this is safe. -66.8 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -73.9 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:857C:/ +61.7 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } window 61.7,2.5 # Different from preliminary phase, so this is safe. +66.8 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +73.9 "Wave Cannon (avoid)" Ability { id: "857C", source: "Zurvan" } -80.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -85.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -90.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -95.3 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -102.4 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:857C:/ +80.0 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +85.1 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +90.2 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +95.3 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +102.4 "Wave Cannon (avoid)" Ability { id: "857C", source: "Zurvan" } -108.5 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ jump 80.0 +108.5 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } jump 80.0 113.6 "Metal Cutter" 118.7 "Metal Cutter" 123.8 "Metal Cutter" @@ -58,36 +58,36 @@ hideall "--sync--" #Phase push at <90% # It may look like this is two copies of one block, # but it alternates between one and two Metal Cutters after Soar. -200.0 "Eidos" sync / 1[56]:[^:]*:Zurvan:855A:/ window 200,10 -206.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -211.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ +200.0 "Eidos" Ability { id: "855A", source: "Zurvan" } window 200,10 +206.1 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +211.2 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } -221.3 "Soar" sync / 1[56]:[^:]*:Zurvan:857E:/ window 30,30 +221.3 "Soar" Ability { id: "857E", source: "Zurvan" } window 30,30 221.4 "--untargetable--" -230.4 "Flaming Halberd" sync / 1[56]:[^:]*:Zurvan:855D:/ -235.5 "Demonic Dive" sync / 1[56]:[^:]*:Zurvan:855E:/ -236.4 "Cool Flame" sync / 1[56]:[^:]*:Zurvan:855F:/ +230.4 "Flaming Halberd" Ability { id: "855D", source: "Zurvan" } +235.5 "Demonic Dive" Ability { id: "855E", source: "Zurvan" } +236.4 "Cool Flame" Ability { id: "855F", source: "Zurvan" } 238.5 "--targetable--" -241.6 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -246.7 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -254.8 "The Demon's Claw" sync / 1[56]:[^:]*:Zurvan:857A:/ -261.9 "Wave Cannon (stack)" sync / 1[56]:[^:]*:Zurvan:857B:/ -268.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -273.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ - -283.1 "Soar" sync / 1[56]:[^:]*:Zurvan:857E:/ window 30,30 +241.6 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +246.7 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +254.8 "The Demon's Claw" Ability { id: "857A", source: "Zurvan" } +261.9 "Wave Cannon (stack)" Ability { id: "857B", source: "Zurvan" } +268.0 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +273.1 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } + +283.1 "Soar" Ability { id: "857E", source: "Zurvan" } window 30,30 283.2 "--untargetable--" -292.2 "Flaming Halberd" sync / 1[56]:[^:]*:Zurvan:855D:/ -297.3 "Demonic Dive" sync / 1[56]:[^:]*:Zurvan:855E:/ -298.2 "Cool Flame" sync / 1[56]:[^:]*:Zurvan:855F:/ +292.2 "Flaming Halberd" Ability { id: "855D", source: "Zurvan" } +297.3 "Demonic Dive" Ability { id: "855E", source: "Zurvan" } +298.2 "Cool Flame" Ability { id: "855F", source: "Zurvan" } 300.3 "--targetable--" -303.4 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -311.5 "The Demon's Claw" sync / 1[56]:[^:]*:Zurvan:857A:/ -318.6 "Wave Cannon (stack)" sync / 1[56]:[^:]*:Zurvan:857B:/ -324.7 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -329.8 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ +303.4 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +311.5 "The Demon's Claw" Ability { id: "857A", source: "Zurvan" } +318.6 "Wave Cannon (stack)" Ability { id: "857B", source: "Zurvan" } +324.7 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +329.8 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } -339.8 "Soar" sync / 1[56]:[^:]*:Zurvan:857E:/ window 30,30 jump 221.3 +339.8 "Soar" Ability { id: "857E", source: "Zurvan" } window 30,30 jump 221.3 339.8 "Twin Spirit" 339.9 "--untargetable--" 348.9 "Flaming Halberd" @@ -100,23 +100,23 @@ hideall "--sync--" # Phase push at <75% -400.0 "Eidos" sync / 1[56]:[^:]*:Zurvan:8560:/ window 150,50 -403.1 "Ice and Fire" sync / 1[56]:[^:]*:Zurvan:8561:/ window 403.1,10 -407.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -411.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -415.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ +400.0 "Eidos" Ability { id: "8560", source: "Zurvan" } window 150,50 +403.1 "Ice and Fire" Ability { id: "8561", source: "Zurvan" } window 403.1,10 +407.2 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +411.2 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +415.2 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } -423.2 "Biting Halberd" sync / 1[56]:[^:]*:Zurvan:8562:/ -429.3 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:8565:/ window 430,10 -432.9 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:8566:/ -434.6 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -444.7 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(8562|8563|8564):/ +423.2 "Biting Halberd" Ability { id: "8562", source: "Zurvan" } +429.3 "Southern Cross (snapshot)" Ability { id: "8565", source: "Zurvan" } window 430,10 +432.9 "Southern Cross (puddle)" Ability { id: "8566", source: "Zurvan" } +434.6 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +444.7 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["8562", "8563", "8564"], source: "Zurvan" } # This is the earliest point this phase can push -448.8 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -452.9 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -457.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -465.1 "Biting Halberd" sync / 1[56]:[^:]*:Zurvan:8562:/ window 15,15 jump 423.2 +448.8 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +452.9 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +457.0 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +465.1 "Biting Halberd" Ability { id: "8562", source: "Zurvan" } window 15,15 jump 423.2 471.2 "Southern Cross (snapshot)" 474.8 "Southern Cross (puddle)" 476.5 "Metal Cutter" @@ -128,7 +128,7 @@ hideall "--sync--" # Intermission push at <69% # This ability is untranslated, so we ensure it doesn't cause issues in non-JP timelines. # 鬼神:履行技スタート:演出アクション:極 -500.0 "--sync--" sync / 1[56]:[^:]*:Zurvan:8567:/ window 500,10 +500.0 "--sync--" Ability { id: "8567", source: "Zurvan" } window 500,10 # Intermission gauge increases will vary depnding on how fast mobs die and in what order. # There's no good way to figure out the gauge timing here, @@ -136,95 +136,95 @@ hideall "--sync--" -990.3 "Eidos" sync / 1[56]:[^:]*:Zurvan:8568:/ window 500,10 -1000.0 "Ahura Mazda" sync / 1[56]:[^:]*:Zurvan:8569:/ window 1000,10 +990.3 "Eidos" Ability { id: "8568", source: "Zurvan" } window 500,10 +1000.0 "Ahura Mazda" Ability { id: "8569", source: "Zurvan" } window 1000,10 1018.2 "--targetable--" -1024.4 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(8570|8571):/ -1032.5 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:857C:/ -1039.7 "Tyrfing x5" sync / 1[56]:[^:]*:Zurvan:8576:/ duration 5 window 1040,5 -1044.8 "Fire III" sync / 1[56]:[^:]*:Zurvan:8578:/ -1050.9 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:8565:/ -1054.5 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:8566:/ -1056.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1065.3 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:857D:/ window 30,30 -1081.0 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(8562|8564|8563):/ -1086.3 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1091.1 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(8570|8571):/ -1099.5 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:857C:/ -1106.6 "Tyrfing x6" sync / 1[56]:[^:]*:Zurvan:8576:/ duration 6 -1112.7 "Fire III" sync / 1[56]:[^:]*:Zurvan:8578:/ -1118.8 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:8565:/ -1122.4 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:8566:/ -1124.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1133.2 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:857D:/ -1147.9 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(8562|8564|8563):/ -1154.0 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1164.1 "Soar" sync / 1[56]:[^:]*:Zurvan:857E:/ window 100,20 +1024.4 "Infinite Fire/Infinite Ice" Ability { id: ["8570", "8571"], source: "Zurvan" } +1032.5 "Wave Cannon (avoid)" Ability { id: "857C", source: "Zurvan" } +1039.7 "Tyrfing x5" Ability { id: "8576", source: "Zurvan" } duration 5 window 1040,5 +1044.8 "Fire III" Ability { id: "8578", source: "Zurvan" } +1050.9 "Southern Cross (snapshot)" Ability { id: "8565", source: "Zurvan" } +1054.5 "Southern Cross (puddle)" Ability { id: "8566", source: "Zurvan" } +1056.2 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1065.3 "Broken Seal" Ability { id: "857D", source: "Zurvan" } window 30,30 +1081.0 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["8562", "8564", "8563"], source: "Zurvan" } +1086.3 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1091.1 "Infinite Fire/Infinite Ice" Ability { id: ["8570", "8571"], source: "Zurvan" } +1099.5 "Wave Cannon (avoid)" Ability { id: "857C", source: "Zurvan" } +1106.6 "Tyrfing x6" Ability { id: "8576", source: "Zurvan" } duration 6 +1112.7 "Fire III" Ability { id: "8578", source: "Zurvan" } +1118.8 "Southern Cross (snapshot)" Ability { id: "8565", source: "Zurvan" } +1122.4 "Southern Cross (puddle)" Ability { id: "8566", source: "Zurvan" } +1124.1 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1133.2 "Broken Seal" Ability { id: "857D", source: "Zurvan" } +1147.9 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["8562", "8564", "8563"], source: "Zurvan" } +1154.0 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1164.1 "Soar" Ability { id: "857E", source: "Zurvan" } window 100,20 1164.2 "--untargetable--" -1173.2 "Flaming Halberd" sync / 1[56]:[^:]*:Zurvan:855D:/ -1178.3 "Demonic Dive" sync / 1[56]:[^:]*:Zurvan:855E:/ -1179.2 "Cool Flame" sync / 1[56]:[^:]*:Zurvan:855F:/ +1173.2 "Flaming Halberd" Ability { id: "855D", source: "Zurvan" } +1178.3 "Demonic Dive" Ability { id: "855E", source: "Zurvan" } +1179.2 "Cool Flame" Ability { id: "855F", source: "Zurvan" } 1181.3 "--targetable--" -1187.4 "The Demon's Claw" sync / 1[56]:[^:]*:Zurvan:857A:/ -1194.5 "Wave Cannon (stack)" sync / 1[56]:[^:]*:Zurvan:857B:/ -1200.6 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(8570|8571):/ -1208.7 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:857C:/ -1215.8 "Tyrfing x7" sync / 1[56]:[^:]*:Zurvan:8576:/ duration 7 -1222.9 "Fire III" sync / 1[56]:[^:]*:Zurvan:8578:/ -1229.0 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:8565:/ -1232.6 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:8566:/ -1234.3 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1243.4 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:857D:/ window 30,30 -1258.4 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(8562|8564|8563):/ -1264.5 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1269.6 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(8570|8571):/ -1277.7 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:857C:/ -1284.8 "Tyrfing x8" sync / 1[56]:[^:]*:Zurvan:8576:/ duration 8 -1292.9 "Fire III" sync / 1[56]:[^:]*:Zurvan:8578:/ -1299.0 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:8565:/ -1302.6 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:8566:/ -1304.3 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1313.4 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:857D:/ -1328.6 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(8562|8564|8563):/ -1334.8 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1344.8 "Soar" sync / 1[56]:[^:]*:Zurvan:857E:/ window 100,20 +1187.4 "The Demon's Claw" Ability { id: "857A", source: "Zurvan" } +1194.5 "Wave Cannon (stack)" Ability { id: "857B", source: "Zurvan" } +1200.6 "Infinite Fire/Infinite Ice" Ability { id: ["8570", "8571"], source: "Zurvan" } +1208.7 "Wave Cannon (avoid)" Ability { id: "857C", source: "Zurvan" } +1215.8 "Tyrfing x7" Ability { id: "8576", source: "Zurvan" } duration 7 +1222.9 "Fire III" Ability { id: "8578", source: "Zurvan" } +1229.0 "Southern Cross (snapshot)" Ability { id: "8565", source: "Zurvan" } +1232.6 "Southern Cross (puddle)" Ability { id: "8566", source: "Zurvan" } +1234.3 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1243.4 "Broken Seal" Ability { id: "857D", source: "Zurvan" } window 30,30 +1258.4 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["8562", "8564", "8563"], source: "Zurvan" } +1264.5 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1269.6 "Infinite Fire/Infinite Ice" Ability { id: ["8570", "8571"], source: "Zurvan" } +1277.7 "Wave Cannon (avoid)" Ability { id: "857C", source: "Zurvan" } +1284.8 "Tyrfing x8" Ability { id: "8576", source: "Zurvan" } duration 8 +1292.9 "Fire III" Ability { id: "8578", source: "Zurvan" } +1299.0 "Southern Cross (snapshot)" Ability { id: "8565", source: "Zurvan" } +1302.6 "Southern Cross (puddle)" Ability { id: "8566", source: "Zurvan" } +1304.3 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1313.4 "Broken Seal" Ability { id: "857D", source: "Zurvan" } +1328.6 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["8562", "8564", "8563"], source: "Zurvan" } +1334.8 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1344.8 "Soar" Ability { id: "857E", source: "Zurvan" } window 100,20 1344.9 "--untargetable--" -1353.9 "Flaming Halberd" sync / 1[56]:[^:]*:Zurvan:855D:/ -1359.0 "Demonic Dive" sync / 1[56]:[^:]*:Zurvan:855E:/ -1359.9 "Cool Flame" sync / 1[56]:[^:]*:Zurvan:855F:/ +1353.9 "Flaming Halberd" Ability { id: "855D", source: "Zurvan" } +1359.0 "Demonic Dive" Ability { id: "855E", source: "Zurvan" } +1359.9 "Cool Flame" Ability { id: "855F", source: "Zurvan" } 1362.0 "--targetable--" -1368.1 "The Demon's Claw" sync / 1[56]:[^:]*:Zurvan:857A:/ -1375.2 "Wave Cannon (stack)" sync / 1[56]:[^:]*:Zurvan:857B:/ -1381.3 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(8570|8571):/ -1389.5 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:857C:/ -1396.6 "Tyrfing x9" sync / 1[56]:[^:]*:Zurvan:8576:/ duration 9 -1405.7 "Fire III" sync / 1[56]:[^:]*:Zurvan:8578:/ -1411.8 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:8565:/ -1415.4 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:8566:/ -1417.1 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1426.2 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:857D:/ window 30,30 -1441.2 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(8562|8564|8563):/ +1368.1 "The Demon's Claw" Ability { id: "857A", source: "Zurvan" } +1375.2 "Wave Cannon (stack)" Ability { id: "857B", source: "Zurvan" } +1381.3 "Infinite Fire/Infinite Ice" Ability { id: ["8570", "8571"], source: "Zurvan" } +1389.5 "Wave Cannon (avoid)" Ability { id: "857C", source: "Zurvan" } +1396.6 "Tyrfing x9" Ability { id: "8576", source: "Zurvan" } duration 9 +1405.7 "Fire III" Ability { id: "8578", source: "Zurvan" } +1411.8 "Southern Cross (snapshot)" Ability { id: "8565", source: "Zurvan" } +1415.4 "Southern Cross (puddle)" Ability { id: "8566", source: "Zurvan" } +1417.1 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1426.2 "Broken Seal" Ability { id: "857D", source: "Zurvan" } window 30,30 +1441.2 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["8562", "8564", "8563"], source: "Zurvan" } # It should theoretically be impossible to reach here before enrage, # but just in case we'll unroll a bit more to get to 10x Tyrfings. -1447.4 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1452.5 "Infinite Fire/Infinite Ice" sync / 1[56]:[^:]*:Zurvan:(8570|8571):/ -1460.6 "Wave Cannon (avoid)" sync / 1[56]:[^:]*:Zurvan:857C:/ -1467.7 "Tyrfing x10" sync / 1[56]:[^:]*:Zurvan:8576:/ duration 10 -1475.8 "Fire III" sync / 1[56]:[^:]*:Zurvan:8578:/ -1481.9 "Southern Cross (snapshot)" sync / 1[56]:[^:]*:Zurvan:8565:/ -1485.5 "Southern Cross (puddle)" sync / 1[56]:[^:]*:Zurvan:8566:/ -1487.2 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1496.3 "Broken Seal" sync / 1[56]:[^:]*:Zurvan:857D:/ -1511.5 "Biting Halberd/Ciclicle/Tail End" sync / 1[56]:[^:]*:Zurvan:(8562|8564|8563):/ -1517.7 "Metal Cutter" sync / 1[56]:[^:]*:Zurvan:8579:/ -1527.7 "Soar" sync / 1[56]:[^:]*:Zurvan:857E:/ +1447.4 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1452.5 "Infinite Fire/Infinite Ice" Ability { id: ["8570", "8571"], source: "Zurvan" } +1460.6 "Wave Cannon (avoid)" Ability { id: "857C", source: "Zurvan" } +1467.7 "Tyrfing x10" Ability { id: "8576", source: "Zurvan" } duration 10 +1475.8 "Fire III" Ability { id: "8578", source: "Zurvan" } +1481.9 "Southern Cross (snapshot)" Ability { id: "8565", source: "Zurvan" } +1485.5 "Southern Cross (puddle)" Ability { id: "8566", source: "Zurvan" } +1487.2 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1496.3 "Broken Seal" Ability { id: "857D", source: "Zurvan" } +1511.5 "Biting Halberd/Ciclicle/Tail End" Ability { id: ["8562", "8564", "8563"], source: "Zurvan" } +1517.7 "Metal Cutter" Ability { id: "8579", source: "Zurvan" } +1527.7 "Soar" Ability { id: "857E", source: "Zurvan" } 1527.8 "--untargetable--" # Enrage at 12 minutes -1989.7 "--sync--" sync / 14:[^:]*:Zurvan:8592:/ window 2000,100 -1998.8 "Flame Halberd Enrage" sync / 1[56]:[^:]*:Zurvan:8592:/ +1989.7 "--sync--" StartsUsing { id: "8592", source: "Zurvan" } window 2000,100 +1998.8 "Flame Halberd Enrage" Ability { id: "8592", source: "Zurvan" } 1998.8 "--untargetable--" -2000.0 "--sync--" sync / 1[56]:[^:]*:Zurvan:8591:/ +2000.0 "--sync--" Ability { id: "8591", source: "Zurvan" } diff --git a/ui/raidboss/data/06-ew/ultimate/dragonsongs_reprise_ultimate.txt b/ui/raidboss/data/06-ew/ultimate/dragonsongs_reprise_ultimate.txt index 7307c65edd..98d48d0011 100644 --- a/ui/raidboss/data/06-ew/ultimate/dragonsongs_reprise_ultimate.txt +++ b/ui/raidboss/data/06-ew/ultimate/dragonsongs_reprise_ultimate.txt @@ -9,139 +9,139 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 ### Phase 1: Adelphel, Grinnaux and Charibert # No engage sync, due to checkpoint. 0.0 "Start" -6.0 "--sync--" sync / 14:[^:]*:Ser Adelphel:62D4:/ window 10,10 -10.0 "Holiest of Holy" sync / 1[56]:[^:]*:Ser Adelphel:62D4:/ -23.2 "Empty Dimension" sync / 1[56]:[^:]*:Ser Grinnaux:62DA:/ -23.2 "Holy Shield Bash" sync / 1[56]:[^:]*:Ser Adelphel:62D1:/ -23.9 "--sync--" sync / 1[56]:[^:]*:Ser Adelphel:63EB:/ -25.3 "Holy Bladedance" sync / 1[56]:[^:]*:Ser Adelphel:62D2:/ duration 2.5 -28.2 "Heavensblaze" sync / 1[56]:[^:]*:Ser Charibert:62DD:/ -36.5 "--middle--" sync / 1[56]:[^:]*:Ser Grinnaux:62E9:/ +6.0 "--sync--" StartsUsing { id: "62D4", source: "Ser Adelphel" } window 10,10 +10.0 "Holiest of Holy" Ability { id: "62D4", source: "Ser Adelphel" } +23.2 "Empty Dimension" Ability { id: "62DA", source: "Ser Grinnaux" } +23.2 "Holy Shield Bash" Ability { id: "62D1", source: "Ser Adelphel" } +23.9 "--sync--" Ability { id: "63EB", source: "Ser Adelphel" } +25.3 "Holy Bladedance" Ability { id: "62D2", source: "Ser Adelphel" } duration 2.5 +28.2 "Heavensblaze" Ability { id: "62DD", source: "Ser Charibert" } +36.5 "--middle--" Ability { id: "62E9", source: "Ser Grinnaux" } 38.4 "--untargetable--" -43.6 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:62D6:/ +43.6 "--sync--" Ability { id: "62D6", source: "Ser Grinnaux" } # These slashes come from Ser Grinnaux, but sometimes name updates are sloppy. -44.8 "Hyperdimensional Slash 1" sync / 1[56]:[^:]*:(Ser Grinnaux|Ser Charibert):62D7:/ -50.7 "--sync--" sync / 1[56]:[^:]*:Ser Grinnaux:6315:/ -51.9 "Hyperdimensional Slash 2" sync / 1[56]:[^:]*:(Ser Grinnaux|Ser Charibert):62D7:/ +44.8 "Hyperdimensional Slash 1" Ability { id: "62D7", source: ["Ser Grinnaux", "Ser Charibert"] } +50.7 "--sync--" Ability { id: "6315", source: "Ser Grinnaux" } +51.9 "Hyperdimensional Slash 2" Ability { id: "62D7", source: ["Ser Grinnaux", "Ser Charibert"] } 54.8 "--targetable--" -59.8 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:62DC:/ -60.9 "Holiest of Holy" sync / 1[56]:[^:]*:Ser Adelphel:62D4:/ +59.8 "Faith Unmoving" Ability { id: "62DC", source: "Ser Grinnaux" } +60.9 "Holiest of Holy" Ability { id: "62D4", source: "Ser Adelphel" } 67.5 "--untargetable--" -69.1 "Execution" sync / 1[56]:[^:]*:Ser Adelphel:62D5:/ +69.1 "Execution" Ability { id: "62D5", source: "Ser Adelphel" } 70.8 "--targetable--" -86.2 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:62DC:/ -88.2 "Heavensflame" sync / 1[56]:[^:]*:Ser Charibert:62DE:/ -102.2 "Holiest of Holy" sync / 1[56]:[^:]*:Ser Adelphel:62D4:/ -104.2 "Empty Dimension/Full Dimension" sync / 1[56]:[^:]*:Ser Grinnaux:(62DA|62DB):/ -122.2 "Holiest of Holy" sync / 1[56]:[^:]*:Ser Adelphel:62D4:/ +86.2 "Faith Unmoving" Ability { id: "62DC", source: "Ser Grinnaux" } +88.2 "Heavensflame" Ability { id: "62DE", source: "Ser Charibert" } +102.2 "Holiest of Holy" Ability { id: "62D4", source: "Ser Adelphel" } +104.2 "Empty Dimension/Full Dimension" Ability { id: ["62DA", "62DB"], source: "Ser Grinnaux" } +122.2 "Holiest of Holy" Ability { id: "62D4", source: "Ser Adelphel" } # "soft" enrage -127.4 "The Bull's Steel" sync / 1[56]:[^:]*:Ser Grinnaux:62CD:/ -127.4 "Brightblade's Steel" sync / 1[56]:[^:]*:Ser Adelphel:62CC:/ -133.6 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:62DC:/ -133.6 "Holiest of Holy" sync / 1[56]:[^:]*:Ser Adelphel:62D4:/ +127.4 "The Bull's Steel" Ability { id: "62CD", source: "Ser Grinnaux" } +127.4 "Brightblade's Steel" Ability { id: "62CC", source: "Ser Adelphel" } +133.6 "Faith Unmoving" Ability { id: "62DC", source: "Ser Grinnaux" } +133.6 "Holiest of Holy" Ability { id: "62D4", source: "Ser Adelphel" } # ??? ### Phase 1.5: Haurchefant v1, a time loop better suits a hero -500.0 "Planar Prison" sync / 1[56]:[^:]*:Ser Grinnaux:62E1:/ window 500,0 -500.0 "Pure of Heart" sync / 14:[^:]*:Ser Charibert:62E4:/ duration 36 -500.0 "Brightwinged Flight" sync / 1[56]:[^:]*:Ser Adelphel:6316:/ -510.0 "Spear of the Fury" sync / 1[56]:[^:]*:Ser Zephirin:62E2:/ -515.9 "Brightwing 1" sync / 1[56]:[^:]*:Ser Charibert:6319:/ -520.9 "Brightwing 2" sync / 1[56]:[^:]*:Ser Charibert:6319:/ -523.8 "Skyblind 1" sync / 1[56]:[^:]*:Ser Charibert:631A:/ -525.9 "Brightwing 3" sync / 1[56]:[^:]*:Ser Charibert:6319:/ -528.8 "Skyblind 2" sync / 1[56]:[^:]*:Ser Charibert:631A:/ -530.9 "Brightwing 4" sync / 1[56]:[^:]*:Ser Charibert:6319:/ -533.8 "Skyblind 3" sync / 1[56]:[^:]*:Ser Charibert:631A:/ -535.9 "Pure of Heart" sync / 1[56]:[^:]*:Ser Charibert:62E4:/ +500.0 "Planar Prison" Ability { id: "62E1", source: "Ser Grinnaux" } window 500,0 +500.0 "Pure of Heart" StartsUsing { id: "62E4", source: "Ser Charibert" } duration 36 +500.0 "Brightwinged Flight" Ability { id: "6316", source: "Ser Adelphel" } +510.0 "Spear of the Fury" Ability { id: "62E2", source: "Ser Zephirin" } +515.9 "Brightwing 1" Ability { id: "6319", source: "Ser Charibert" } +520.9 "Brightwing 2" Ability { id: "6319", source: "Ser Charibert" } +523.8 "Skyblind 1" Ability { id: "631A", source: "Ser Charibert" } +525.9 "Brightwing 3" Ability { id: "6319", source: "Ser Charibert" } +528.8 "Skyblind 2" Ability { id: "631A", source: "Ser Charibert" } +530.9 "Brightwing 4" Ability { id: "6319", source: "Ser Charibert" } +533.8 "Skyblind 3" Ability { id: "631A", source: "Ser Charibert" } +535.9 "Pure of Heart" Ability { id: "62E4", source: "Ser Charibert" } 537.8 "--untargetable--" -538.8 "Skyblind 4" sync / 1[56]:[^:]*:Ser Charibert:631A:/ +538.8 "Skyblind 4" Ability { id: "631A", source: "Ser Charibert" } # Enrage?? (or just die to Pure of Heart?) ### Phase 2: King Thordan 541.5 "--targetable--" -550.0 "--sync--" sync / 14:[^:]*:King Thordan:63C8:/ window 600,10 -553.0 "Ascalon's Mercy Concealed" sync / 1[56]:[^:]*:King Thordan:63C8:/ -554.6 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C9:/ -556.2 "Ascalon's Might 1" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -557.8 "Ascalon's Might 2" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -559.4 "Ascalon's Might 3" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -562.2 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C4:/ -563.3 "Knights of the Round" sync / 1[56]:[^:]*:King Thordan:63ED:/ -570.4 "Strength of the Ward" sync / 1[56]:[^:]*:King Thordan:63D3:/ +550.0 "--sync--" StartsUsing { id: "63C8", source: "King Thordan" } window 600,10 +553.0 "Ascalon's Mercy Concealed" Ability { id: "63C8", source: "King Thordan" } +554.6 "--sync--" Ability { id: "63C9", source: "King Thordan" } +556.2 "Ascalon's Might 1" #Ability { id: "63C5", source: "King Thordan" } +557.8 "Ascalon's Might 2" #Ability { id: "63C5", source: "King Thordan" } +559.4 "Ascalon's Might 3" #Ability { id: "63C5", source: "King Thordan" } +562.2 "--sync--" Ability { id: "63C4", source: "King Thordan" } +563.3 "Knights of the Round" Ability { id: "63ED", source: "King Thordan" } +570.4 "Strength of the Ward" Ability { id: "63D3", source: "King Thordan" } 573.5 "--untargetable--" -581.3 "--sync--" sync / 1[56]:[^:]*:Ser Guerrique:63D5:/ # self-targeted Heavy Impact -582.7 "Lightning Storm" sync / 1[56]:[^:]*:King Thordan:63CC:/ -583.0 "Heavy Impact 1" sync / 1[56]:[^:]*:Ser Guerrique:63D6:/ -583.0 "Spiral Thrust" sync / 1[56]:[^:]*:Ser Ignasse:63D4:/ -584.9 "Heavy Impact 2" sync / 1[56]:[^:]*:Ser Guerrique:63D7:/ -586.8 "Heavy Impact 3" sync / 1[56]:[^:]*:Ser Guerrique:63D8:/ -588.1 "Ascalon's Mercy Concealed" sync / 1[56]:[^:]*:King Thordan:63C8:/ -588.7 "Heavy Impact 4" sync / 1[56]:[^:]*:Ser Guerrique:63D9:/ -589.7 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C9:/ -590.3 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C4:/ -590.6 "Heavy Impact 5" sync / 1[56]:[^:]*:Ser Guerrique:63DA:/ -598.1 "Dimensional Collapse" sync / 1[56]:[^:]*:Ser Grinnaux:63DB:/ -598.1 "The Dragon's Rage" sync / 1[56]:[^:]*:King Thordan:63CE:/ -599.0 "Skyward Leap" #sync / 1[56]:[^:]*:Ser Ignasse:63DD:/ -599.4 "Holy Shield Bash" sync / 1[56]:[^:]*:Ser Adelphel:62D1:/ -599.9 "--sync--" sync / 1[56]:[^:]*:Ser Hermenost:63DE:/ # Conviction, self-casted -600.1 "--sync--" sync / 1[56]:[^:]*:Ser Janlenoux:63EB:/ # Holy Shield Bash line aoe -601.5 "Holy Bladedance" sync / 1[56]:[^:]*:Ser Adelphel:62D2:/ -602.5 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C4:/ -602.8 "Conviction" sync / 1[56]:[^:]*:Ser Hermenost:63DF:/ +581.3 "--sync--" Ability { id: "63D5", source: "Ser Guerrique" } # self-targeted Heavy Impact +582.7 "Lightning Storm" Ability { id: "63CC", source: "King Thordan" } +583.0 "Heavy Impact 1" Ability { id: "63D6", source: "Ser Guerrique" } +583.0 "Spiral Thrust" Ability { id: "63D4", source: "Ser Ignasse" } +584.9 "Heavy Impact 2" Ability { id: "63D7", source: "Ser Guerrique" } +586.8 "Heavy Impact 3" Ability { id: "63D8", source: "Ser Guerrique" } +588.1 "Ascalon's Mercy Concealed" Ability { id: "63C8", source: "King Thordan" } +588.7 "Heavy Impact 4" Ability { id: "63D9", source: "Ser Guerrique" } +589.7 "--sync--" Ability { id: "63C9", source: "King Thordan" } +590.3 "--sync--" Ability { id: "63C4", source: "King Thordan" } +590.6 "Heavy Impact 5" Ability { id: "63DA", source: "Ser Guerrique" } +598.1 "Dimensional Collapse" Ability { id: "63DB", source: "Ser Grinnaux" } +598.1 "The Dragon's Rage" Ability { id: "63CE", source: "King Thordan" } +599.0 "Skyward Leap" #Ability { id: "63DD", source: "Ser Ignasse" } +599.4 "Holy Shield Bash" Ability { id: "62D1", source: "Ser Adelphel" } +599.9 "--sync--" Ability { id: "63DE", source: "Ser Hermenost" } # Conviction, self-casted +600.1 "--sync--" Ability { id: "63EB", source: "Ser Janlenoux" } # Holy Shield Bash line aoe +601.5 "Holy Bladedance" Ability { id: "62D2", source: "Ser Adelphel" } +602.5 "--sync--" Ability { id: "63C4", source: "King Thordan" } +602.8 "Conviction" Ability { id: "63DF", source: "Ser Hermenost" } 604.9 "--targetable--" -611.0 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:63C6:/ -621.2 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:63C7:/ -624.4 "Ascalon's Might 1" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -626.0 "Ascalon's Might 2" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -627.7 "Ascalon's Might 3" #sync / 1[56]:[^:]*:King Thordan:63C5:/ - -630.5 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C4:/ -631.6 "Knights of the Round" sync / 1[56]:[^:]*:King Thordan:63ED:/ -638.7 "Sanctity of the Ward" sync / 1[56]:[^:]*:King Thordan:63E1:/ +611.0 "Ancient Quaga" Ability { id: "63C6", source: "King Thordan" } +621.2 "Heavenly Heel" Ability { id: "63C7", source: "King Thordan" } +624.4 "Ascalon's Might 1" #Ability { id: "63C5", source: "King Thordan" } +626.0 "Ascalon's Might 2" #Ability { id: "63C5", source: "King Thordan" } +627.7 "Ascalon's Might 3" #Ability { id: "63C5", source: "King Thordan" } + +630.5 "--sync--" Ability { id: "63C4", source: "King Thordan" } +631.6 "Knights of the Round" Ability { id: "63ED", source: "King Thordan" } +638.7 "Sanctity of the Ward" Ability { id: "63E1", source: "King Thordan" } 641.8 "--untargetable--" -652.2 "Sacred Sever 1" #sync / 1[56]:[^:]*:Ser Zephirin:63E3:/ -652.4 "The Dragon's Glory" sync / 1[56]:[^:]*:King Thordan:63D2:/ -652.4 "The Dragon's Gaze" sync / 1[56]:[^:]*:King Thordan:63D1:/ -654.0 "Sacred Sever 2" #sync / 1[56]:[^:]*:Ser Zephirin:63E3:/ -655.8 "Sacred Sever 3" #sync / 1[56]:[^:]*:Ser Zephirin:63E3:/ -657.6 "Sacred Sever 4" #sync / 1[56]:[^:]*:Ser Zephirin:63E3:/ -658.5 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C4:/ -669.8 "Heavens' Stake" sync / 1[56]:[^:]*:Ser Charibert:6FAE:/ -669.8 "Hiemal Storm" sync / 1[56]:[^:]*:Ser Haumeric:63E6:/ -671.9 "Conviction 1" sync / 1[56]:[^:]*:Ser Hermenost:737B:/ -674.7 "--sync--" sync / 1[56]:[^:]*:Ser Noudenet:63E8:/ -675.6 "Holy Comet 1" #sync / 1[56]:[^:]*:Holy Comet:63E9:/ -677.0 "Holy Comet 2" #sync / 1[56]:[^:]*:Holy Comet:63E9:/ -678.4 "Holy Comet 3" #sync / 1[56]:[^:]*:Holy Comet:63E9:/ -679.8 "Holy Comet 4" #sync / 1[56]:[^:]*:Holy Comet:63E9:/ -681.2 "Holy Comet 5" #sync / 1[56]:[^:]*:Holy Comet:63E9:/ -682.6 "Holy Comet 6" #sync / 1[56]:[^:]*:Holy Comet:63E9:/ -684.0 "Holy Comet 7" #sync / 1[56]:[^:]*:Holy Comet:63E9:/ - -685.1 "Faith Unmoving" sync / 1[56]:[^:]*:Ser Grinnaux:62DC:/ -685.2 "Conviction 2" sync / 1[56]:[^:]*:Ser Hermenost:6FEA:/ +652.2 "Sacred Sever 1" #Ability { id: "63E3", source: "Ser Zephirin" } +652.4 "The Dragon's Glory" Ability { id: "63D2", source: "King Thordan" } +652.4 "The Dragon's Gaze" Ability { id: "63D1", source: "King Thordan" } +654.0 "Sacred Sever 2" #Ability { id: "63E3", source: "Ser Zephirin" } +655.8 "Sacred Sever 3" #Ability { id: "63E3", source: "Ser Zephirin" } +657.6 "Sacred Sever 4" #Ability { id: "63E3", source: "Ser Zephirin" } +658.5 "--sync--" Ability { id: "63C4", source: "King Thordan" } +669.8 "Heavens' Stake" Ability { id: "6FAE", source: "Ser Charibert" } +669.8 "Hiemal Storm" Ability { id: "63E6", source: "Ser Haumeric" } +671.9 "Conviction 1" Ability { id: "737B", source: "Ser Hermenost" } +674.7 "--sync--" Ability { id: "63E8", source: "Ser Noudenet" } +675.6 "Holy Comet 1" #Ability { id: "63E9", source: "Holy Comet" } +677.0 "Holy Comet 2" #Ability { id: "63E9", source: "Holy Comet" } +678.4 "Holy Comet 3" #Ability { id: "63E9", source: "Holy Comet" } +679.8 "Holy Comet 4" #Ability { id: "63E9", source: "Holy Comet" } +681.2 "Holy Comet 5" #Ability { id: "63E9", source: "Holy Comet" } +682.6 "Holy Comet 6" #Ability { id: "63E9", source: "Holy Comet" } +684.0 "Holy Comet 7" #Ability { id: "63E9", source: "Holy Comet" } + +685.1 "Faith Unmoving" Ability { id: "62DC", source: "Ser Grinnaux" } +685.2 "Conviction 2" Ability { id: "6FEA", source: "Ser Hermenost" } 692.5 "--targetable--" -692.6 "--sync--" sync / 1[56]:[^:]*:King Thordan:63BC:/ -697.7 "--sync--" sync / 1[56]:[^:]*:King Thordan:63BD:/ window 20,20 -706.1 "Ultimate End" sync / 1[56]:[^:]*:King Thordan:63BE:/ +692.6 "--sync--" Ability { id: "63BC", source: "King Thordan" } +697.7 "--sync--" Ability { id: "63BD", source: "King Thordan" } window 20,20 +706.1 "Ultimate End" Ability { id: "63BE", source: "King Thordan" } -711.8 "--sync--" sync / 1[56]:[^:]*:King Thordan:63BF:/ -718.4 "Broad Swing 1" sync / 1[56]:[^:]*:King Thordan:63C[01]:/ -726.9 "Broad Swing 2" sync / 1[56]:[^:]*:King Thordan:63C[01]:/ -732.0 "--sync--" sync / 14:[^:]*:King Thordan:63C3:/ window 30,10 -738.0 "Aetheric Burst Enrage" sync / 1[56]:[^:]*:King Thordan:63C3:/ +711.8 "--sync--" Ability { id: "63BF", source: "King Thordan" } +718.4 "Broad Swing 1" Ability { id: "63C[01]", source: "King Thordan" } +726.9 "Broad Swing 2" Ability { id: "63C[01]", source: "King Thordan" } +732.0 "--sync--" StartsUsing { id: "63C3", source: "King Thordan" } window 30,10 +738.0 "Aetheric Burst Enrage" Ability { id: "63C3", source: "King Thordan" } ### Phase 3: Nidhogg @@ -153,148 +153,148 @@ hideall "--sync--" # If Aetheric Burst gets interrupted, then we can sync earlier, # but if you kill it before then, there's less indication of when to sync. -993.1 "--sync--" sync / 17:[^:]*:King Thordan:63C3:/ window 300,0 -1000.0 "--sync--" sync / 1[56]:[^:]*:Nidhogg:6708:/ window 1000,0 +993.1 "--sync--" NetworkCancelAbility { id: "63C3", source: "King Thordan" } window 300,0 +1000.0 "--sync--" Ability { id: "6708", source: "Nidhogg" } window 1000,0 1002.3 "--targetable--" -1002.3 "Final Chorus" sync / 1[56]:[^:]*:Nidhogg:6709:/ -1020.5 "Dive from Grace" sync / 1[56]:[^:]*:Nidhogg:670D:/ -1030.2 "Lash and Gnash/Gnash and Lash" sync / 1[56]:[^:]*:Nidhogg:671[23]:/ -1030.4 "Tower 1" sync / 1[56]:[^:]*:Nidhogg:(670E|670F|6710):/ -1030.5 "Eye of the Tyrant" sync / 1[56]:[^:]*:Nidhogg:6714:/ -1036.9 "Darkdragon Dive" sync / 1[56]:[^:]*:Nidhogg:671[1789B]:/ -1040.3 "Tower 2" sync / 1[56]:[^:]*:Nidhogg:(670E|670F|6710):/ -1044.0 "Geirskogul" sync / 1[56]:[^:]*:Nidhogg:670A:/ -1046.9 "Darkdragon Dive" sync / 1[56]:[^:]*:Nidhogg:671[1789B]:/ -1051.3 "Tower 3" sync / 1[56]:[^:]*:Nidhogg:(670E|670F|6710):/ -1051.7 "Lash and Gnash/Gnash and Lash" sync / 1[56]:[^:]*:Nidhogg:671[23]:/ -1052.0 "Eye of the Tyrant" sync / 1[56]:[^:]*:Nidhogg:6714:/ -1054.0 "Geirskogul" sync / 1[56]:[^:]*:Nidhogg:670A:/ -1057.9 "Darkdragon Dive" sync / 1[56]:[^:]*:Nidhogg:671[1789B]:/ -1064.9 "Geirskogul" sync / 1[56]:[^:]*:Nidhogg:670A:/ -1069.9 "Drachenlance" sync / 1[56]:[^:]*:Nidhogg:670B:/ +1002.3 "Final Chorus" Ability { id: "6709", source: "Nidhogg" } +1020.5 "Dive from Grace" Ability { id: "670D", source: "Nidhogg" } +1030.2 "Lash and Gnash/Gnash and Lash" Ability { id: "671[23]", source: "Nidhogg" } +1030.4 "Tower 1" Ability { id: ["670E", "670F", "6710"], source: "Nidhogg" } +1030.5 "Eye of the Tyrant" Ability { id: "6714", source: "Nidhogg" } +1036.9 "Darkdragon Dive" Ability { id: "671[1789B]", source: "Nidhogg" } +1040.3 "Tower 2" Ability { id: ["670E", "670F", "6710"], source: "Nidhogg" } +1044.0 "Geirskogul" Ability { id: "670A", source: "Nidhogg" } +1046.9 "Darkdragon Dive" Ability { id: "671[1789B]", source: "Nidhogg" } +1051.3 "Tower 3" Ability { id: ["670E", "670F", "6710"], source: "Nidhogg" } +1051.7 "Lash and Gnash/Gnash and Lash" Ability { id: "671[23]", source: "Nidhogg" } +1052.0 "Eye of the Tyrant" Ability { id: "6714", source: "Nidhogg" } +1054.0 "Geirskogul" Ability { id: "670A", source: "Nidhogg" } +1057.9 "Darkdragon Dive" Ability { id: "671[1789B]", source: "Nidhogg" } +1064.9 "Geirskogul" Ability { id: "670A", source: "Nidhogg" } +1069.9 "Drachenlance" Ability { id: "670B", source: "Nidhogg" } 1073.0 "Tower x4" # TODO: can this be better timed? -1077.0 "Darkdragon Dive" sync / 1[56]:[^:]*:Nidhogg:671[1789B]:/ -1084.0 "Soul Tether x2" sync / 1[56]:[^:]*:Nidhogg:671C:/ -1084.0 "Geirskogul" sync / 1[56]:[^:]*:Nidhogg:670A:/ -1107.8 "Drachenlance" sync / 1[56]:[^:]*:Nidhogg:670B:/ -1120.9 "Revenge of the Horde Enrage" sync / 1[56]:[^:]*:Nidhogg:7436:/ +1077.0 "Darkdragon Dive" Ability { id: "671[1789B]", source: "Nidhogg" } +1084.0 "Soul Tether x2" Ability { id: "671C", source: "Nidhogg" } +1084.0 "Geirskogul" Ability { id: "670A", source: "Nidhogg" } +1107.8 "Drachenlance" Ability { id: "670B", source: "Nidhogg" } +1120.9 "Revenge of the Horde Enrage" Ability { id: "7436", source: "Nidhogg" } ### Phase 4: The Eyes -1500.0 "--sync--" sync / 1[56]:[^:]*:Right Eye:717A:/ window 500,0 +1500.0 "--sync--" Ability { id: "717A", source: "Right Eye" } window 500,0 1502.9 "--targetable--" -1503.0 "Soul of Devotion" sync / 1[56]:[^:]*:Ysayle:68C6:/ -1503.0 "Soul of Friendship" sync / 1[56]:[^:]*:Haurchefant:68C5:/ -1510.2 "Resentment" sync / 1[56]:[^:]*:Estinien:68BA:/ -1518.6 "Hatebound" sync / 1[56]:[^:]*:Right Eye:68BE:/ +1503.0 "Soul of Devotion" Ability { id: "68C6", source: "Ysayle" } +1503.0 "Soul of Friendship" Ability { id: "68C5", source: "Haurchefant" } +1510.2 "Resentment" Ability { id: "68BA", source: "Estinien" } +1518.6 "Hatebound" Ability { id: "68BE", source: "Right Eye" } # These times are very roughly when it has grown enough and you can pop it. -1526.4 "Flare Nova x2" #sync / 1[56]:[^:]*:The Gilded Price:68C1:/ -1532.4 "Flare Star x4" #sync / 1[56]:[^:]*:The Azure Price:68BF:/ - -1544.7 "--sync--" sync / 1[56]:[^:]*:Right Eye:68C3:/ -1545.5 "Mirage Dive 1" #sync / 1[56]:[^:]*:Nidhogg:68C4:/ -1550.6 "Mirage Dive 2" #sync / 1[56]:[^:]*:Nidhogg:68C4:/ -1555.7 "Mirage Dive 3" #sync / 1[56]:[^:]*:Nidhogg:68C4:/ -1560.8 "Mirage Dive 4" #sync / 1[56]:[^:]*:Nidhogg:68C4:/ -1570.6 "Steep in Rage" #sync / 1[56]:[^:]*:Right Eye:68BD:/ +1526.4 "Flare Nova x2" #Ability { id: "68C1", source: "The Gilded Price" } +1532.4 "Flare Star x4" #Ability { id: "68BF", source: "The Azure Price" } + +1544.7 "--sync--" Ability { id: "68C3", source: "Right Eye" } +1545.5 "Mirage Dive 1" #Ability { id: "68C4", source: "Nidhogg" } +1550.6 "Mirage Dive 2" #Ability { id: "68C4", source: "Nidhogg" } +1555.7 "Mirage Dive 3" #Ability { id: "68C4", source: "Nidhogg" } +1560.8 "Mirage Dive 4" #Ability { id: "68C4", source: "Nidhogg" } +1570.6 "Steep in Rage" #Ability { id: "68BD", source: "Right Eye" } 1577.9 "--untargetable--" -1590.1 "Revenge of the Horde Enrage" sync / 1[56]:[^:]*:Nidhogg:6722:/ +1590.1 "Revenge of the Horde Enrage" Ability { id: "6722", source: "Nidhogg" } ### Phase 4.5: Haurchefant v2 -2000.0 "Planar Prison" sync / 1[56]:[^:]*:Ser Grinnaux:62E1:/ window 500,0 -2000.0 "Brightwinged Flight" sync / 1[56]:[^:]*:Ser Adelphel:6316:/ -2010.0 "Spear of the Fury" sync / 1[56]:[^:]*:Ser Zephirin:62E2:/ -2015.9 "Brightwing 1" sync / 1[56]:[^:]*:Ser Charibert:6319:/ -2021.0 "Brightwing 2" sync / 1[56]:[^:]*:Ser Charibert:6319:/ -2024.0 "Skyblind 1" sync / 1[56]:[^:]*:Ser Charibert:631A:/ -2026.1 "Brightwing 3" sync / 1[56]:[^:]*:Ser Charibert:6319:/ -2029.0 "Skyblind 2" sync / 1[56]:[^:]*:Ser Charibert:631A:/ -2031.1 "Brightwing 4" sync / 1[56]:[^:]*:Ser Charibert:6319:/ -2034.1 "Skyblind 3" sync / 1[56]:[^:]*:Ser Charibert:631A:/ -2036.3 "Pure of Heart" sync / 1[56]:[^:]*:Ser Charibert:62E4:/ +2000.0 "Planar Prison" Ability { id: "62E1", source: "Ser Grinnaux" } window 500,0 +2000.0 "Brightwinged Flight" Ability { id: "6316", source: "Ser Adelphel" } +2010.0 "Spear of the Fury" Ability { id: "62E2", source: "Ser Zephirin" } +2015.9 "Brightwing 1" Ability { id: "6319", source: "Ser Charibert" } +2021.0 "Brightwing 2" Ability { id: "6319", source: "Ser Charibert" } +2024.0 "Skyblind 1" Ability { id: "631A", source: "Ser Charibert" } +2026.1 "Brightwing 3" Ability { id: "6319", source: "Ser Charibert" } +2029.0 "Skyblind 2" Ability { id: "631A", source: "Ser Charibert" } +2031.1 "Brightwing 4" Ability { id: "6319", source: "Ser Charibert" } +2034.1 "Skyblind 3" Ability { id: "631A", source: "Ser Charibert" } +2036.3 "Pure of Heart" Ability { id: "62E4", source: "Ser Charibert" } 2038.3 "--targetable--" -2039.3 "Skyblind 4" sync / 1[56]:[^:]*:Ser Charibert:631A:/ -2041.0 "--sync--" sync / 14:[^:]*:Spear of the Fury:69B5:/ window 10,10 -2052.0 "Pierce Enrage" sync / 1[56]:[^:]*:Spear of the Fury:69B5:/ +2039.3 "Skyblind 4" Ability { id: "631A", source: "Ser Charibert" } +2041.0 "--sync--" StartsUsing { id: "69B5", source: "Spear of the Fury" } window 10,10 +2052.0 "Pierce Enrage" Ability { id: "69B5", source: "Spear of the Fury" } # Ascalon's Mercy Concealed cast from King Thordan if Haurchefant dies and it loops. -2055.9 "--sync--" sync / 14:[^:]*:King Thordan:63C8:/ window 60,200 jump 550 +2055.9 "--sync--" StartsUsing { id: "63C8", source: "King Thordan" } window 60,200 jump 550 ### Phase 5: King Thordan II -2980.8 "--sync--" sync / 1[56]:[^:]*:Haurchefant:6317:/ window 1000,0 +2980.8 "--sync--" Ability { id: "6317", source: "Haurchefant" } window 1000,0 2995.9 "--targetable--" -2996.0 "--sync--" sync / 14:[^:]*:King Thordan:6B86:/ window 1000,10 -3000.0 "Incarnation" sync / 1[56]:[^:]*:King Thordan:6B86:/ -3006.2 "The Dragon's Eye" sync / 1[56]:[^:]*:King Thordan:6B87:/ -3016.7 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C4:/ +2996.0 "--sync--" StartsUsing { id: "6B86", source: "King Thordan" } window 1000,10 +3000.0 "Incarnation" Ability { id: "6B86", source: "King Thordan" } +3006.2 "The Dragon's Eye" Ability { id: "6B87", source: "King Thordan" } +3016.7 "--sync--" Ability { id: "63C4", source: "King Thordan" } -3017.8 "Knights of the Round" sync / 1[56]:[^:]*:King Thordan:63ED:/ -3024.9 "Wrath of the Heavens" sync / 1[56]:[^:]*:King Thordan:6B89:/ +3017.8 "Knights of the Round" Ability { id: "63ED", source: "King Thordan" } +3024.9 "Wrath of the Heavens" Ability { id: "6B89", source: "King Thordan" } 3028.0 "--untargetable--" -3034.4 "Chain Lightning" sync / 1[56]:[^:]*:Darkscale:6B8F:/ -3036.8 "Twisting Dive" sync / 1[56]:[^:]*:Vedrfolnir:6B8B:/ -3036.8 "Skyward Leap" #sync / 1[56]:[^:]*:Ser Paulecrain:72A2:/ -3036.8 "Spiral Pierce" #sync / 1[56]:[^:]*:Ser Ignasse:6B8A:/ -3042.2 "Ascalon's Mercy Revealed" sync / 1[56]:[^:]*:King Thordan:63CA:/ -3043.1 "Liquid Heaven 1" #sync / 1[56]:[^:]*:Vedrfolnir:6B91:/ -3044.3 "Liquid Heaven 2" #sync / 1[56]:[^:]*:Vedrfolnir:6B91:/ -3045.5 "Liquid Heaven 3" #sync / 1[56]:[^:]*:Vedrfolnir:6B91:/ -3046.6 "--sync--" sync / 1[56]:[^:]*:Ser Charibert:63E4:/ -3046.7 "Liquid Heaven 4" #sync / 1[56]:[^:]*:Vedrfolnir:6B91:/ -3047.1 "Altar Flare 1" #sync / 1[56]:[^:]*:Ser Charibert:63E5:/ -3047.9 "Liquid Heaven 5" #sync / 1[56]:[^:]*:Vedrfolnir:6B91:/ -3048.7 "Altar Flare 2" #sync / 1[56]:[^:]*:Ser Charibert:63E5:/ -3050.1 "Cauterize" sync / 1[56]:[^:]*:Darkscale:6B8D:/ -3050.2 "Altar Flare 3" #sync / 1[56]:[^:]*:Ser Charibert:63E5:/ -3050.3 "Empty Dimension" sync / 1[56]:[^:]*:Ser Grinnaux:62DA:/ -3051.7 "Altar Flare 4" #sync / 1[56]:[^:]*:Ser Charibert:63E5:/ +3034.4 "Chain Lightning" Ability { id: "6B8F", source: "Darkscale" } +3036.8 "Twisting Dive" Ability { id: "6B8B", source: "Vedrfolnir" } +3036.8 "Skyward Leap" #Ability { id: "72A2", source: "Ser Paulecrain" } +3036.8 "Spiral Pierce" #Ability { id: "6B8A", source: "Ser Ignasse" } +3042.2 "Ascalon's Mercy Revealed" Ability { id: "63CA", source: "King Thordan" } +3043.1 "Liquid Heaven 1" #Ability { id: "6B91", source: "Vedrfolnir" } +3044.3 "Liquid Heaven 2" #Ability { id: "6B91", source: "Vedrfolnir" } +3045.5 "Liquid Heaven 3" #Ability { id: "6B91", source: "Vedrfolnir" } +3046.6 "--sync--" Ability { id: "63E4", source: "Ser Charibert" } +3046.7 "Liquid Heaven 4" #Ability { id: "6B91", source: "Vedrfolnir" } +3047.1 "Altar Flare 1" #Ability { id: "63E5", source: "Ser Charibert" } +3047.9 "Liquid Heaven 5" #Ability { id: "6B91", source: "Vedrfolnir" } +3048.7 "Altar Flare 2" #Ability { id: "63E5", source: "Ser Charibert" } +3050.1 "Cauterize" Ability { id: "6B8D", source: "Darkscale" } +3050.2 "Altar Flare 3" #Ability { id: "63E5", source: "Ser Charibert" } +3050.3 "Empty Dimension" Ability { id: "62DA", source: "Ser Grinnaux" } +3051.7 "Altar Flare 4" #Ability { id: "63E5", source: "Ser Charibert" } 3051.4 "--targetable--" -3057.4 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:63C6:/ -3067.8 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:63C7:/ -3071.0 "Ascalon's Might 1" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -3072.6 "Ascalon's Might 2" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -3074.2 "Ascalon's Might 3" #sync / 1[56]:[^:]*:King Thordan:63C5:/ - -3077.0 "--sync--" sync / 1[56]:[^:]*:King Thordan:63C4:/ -3078.1 "Knights of the Round" sync / 1[56]:[^:]*:King Thordan:63ED:/ -3085.2 "Death of the Heavens" sync / 1[56]:[^:]*:King Thordan:6B92:/ +3057.4 "Ancient Quaga" Ability { id: "63C6", source: "King Thordan" } +3067.8 "Heavenly Heel" Ability { id: "63C7", source: "King Thordan" } +3071.0 "Ascalon's Might 1" #Ability { id: "63C5", source: "King Thordan" } +3072.6 "Ascalon's Might 2" #Ability { id: "63C5", source: "King Thordan" } +3074.2 "Ascalon's Might 3" #Ability { id: "63C5", source: "King Thordan" } + +3077.0 "--sync--" Ability { id: "63C4", source: "King Thordan" } +3078.1 "Knights of the Round" Ability { id: "63ED", source: "King Thordan" } +3085.2 "Death of the Heavens" Ability { id: "6B92", source: "King Thordan" } 3088.3 "--untargetable--" -3092.2 "Deathstorm" sync / 1[56]:[^:]*:Darkscale:6B94:/ -3100.4 "Heavy Impact 1" sync / 1[56]:[^:]*:Ser Guerrique:63D6:/ -3102.0 "Lightning Storm" sync / 1[56]:[^:]*:King Thordan:63CC:/ -3102.3 "Twisting Dive" #sync / 1[56]:[^:]*:Vedrfolnir:6B8B:/ -3102.3 "Cauterize" sync / 1[56]:[^:]*:Darkscale:6B8D:/ -3102.3 "Spear of the Fury" #sync / 1[56]:[^:]*:Ser Zephirin:6B93:/ -3102.3 "Heavy Impact 2" #sync / 1[56]:[^:]*:Ser Guerrique:63D7:/ -3102.4 "Lightning Storm" #sync / 1[56]:[^:]*:King Thordan:63CD:/ -3104.1 "Heavy Impact 3" sync / 1[56]:[^:]*:Ser Guerrique:63D8:/ -3106.0 "Heavy Impact 4" sync / 1[56]:[^:]*:Ser Guerrique:63D9:/ -3107.9 "Heavy Impact 5" sync / 1[56]:[^:]*:Ser Guerrique:63DA:/ -3115.5 "Faith Unmoving" #sync / 1[56]:[^:]*:Ser Grinnaux:62DC:/ -3115.5 "The Dragon's Gaze" #sync / 1[56]:[^:]*:King Thordan:63D1:/ -3115.5 "The Dragon's Glory" #sync / 1[56]:[^:]*:King Thordan:63D2:/ -3117.4 "Heavensflame" sync / 1[56]:[^:]*:Ser Charibert:62DE:/ -3119.7 "Holy Meteor" sync / 1[56]:[^:]*:Ser Noudenet:6B97:/ +3092.2 "Deathstorm" Ability { id: "6B94", source: "Darkscale" } +3100.4 "Heavy Impact 1" Ability { id: "63D6", source: "Ser Guerrique" } +3102.0 "Lightning Storm" Ability { id: "63CC", source: "King Thordan" } +3102.3 "Twisting Dive" #Ability { id: "6B8B", source: "Vedrfolnir" } +3102.3 "Cauterize" Ability { id: "6B8D", source: "Darkscale" } +3102.3 "Spear of the Fury" #Ability { id: "6B93", source: "Ser Zephirin" } +3102.3 "Heavy Impact 2" #Ability { id: "63D7", source: "Ser Guerrique" } +3102.4 "Lightning Storm" #Ability { id: "63CD", source: "King Thordan" } +3104.1 "Heavy Impact 3" Ability { id: "63D8", source: "Ser Guerrique" } +3106.0 "Heavy Impact 4" Ability { id: "63D9", source: "Ser Guerrique" } +3107.9 "Heavy Impact 5" Ability { id: "63DA", source: "Ser Guerrique" } +3115.5 "Faith Unmoving" #Ability { id: "62DC", source: "Ser Grinnaux" } +3115.5 "The Dragon's Gaze" #Ability { id: "63D1", source: "King Thordan" } +3115.5 "The Dragon's Glory" #Ability { id: "63D2", source: "King Thordan" } +3117.4 "Heavensflame" Ability { id: "62DE", source: "Ser Charibert" } +3119.7 "Holy Meteor" Ability { id: "6B97", source: "Ser Noudenet" } # Meteors targetable 3120.7 "--targetable--" -3135.4 "Meteor Impact?" sync / 1[56]:[^:]*:Meteor Circle:6B98:/ +3135.4 "Meteor Impact?" Ability { id: "6B98", source: "Meteor Circle" } # skip to here when meteors are killed 3200.0 "--targetable--" -3202.1 "--sync--" sync / 14:[^:]*:King Thordan:63C6:/ window 80,10 -3208.1 "Ancient Quaga" sync / 1[56]:[^:]*:King Thordan:63C6:/ -3218.3 "Heavenly Heel" sync / 1[56]:[^:]*:King Thordan:63C7:/ -3221.4 "Ascalon's Might 1" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -3223.0 "Ascalon's Might 2" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -3224.6 "Ascalon's Might 3" #sync / 1[56]:[^:]*:King Thordan:63C5:/ -3229.5 "--sync--" sync / 14:[^:]*:King Thordan:6B88:/ -3235.5 "Aetheric Burst Enrage" sync / 1[56]:[^:]*:King Thordan:6B88:/ +3202.1 "--sync--" StartsUsing { id: "63C6", source: "King Thordan" } window 80,10 +3208.1 "Ancient Quaga" Ability { id: "63C6", source: "King Thordan" } +3218.3 "Heavenly Heel" Ability { id: "63C7", source: "King Thordan" } +3221.4 "Ascalon's Might 1" #Ability { id: "63C5", source: "King Thordan" } +3223.0 "Ascalon's Might 2" #Ability { id: "63C5", source: "King Thordan" } +3224.6 "Ascalon's Might 3" #Ability { id: "63C5", source: "King Thordan" } +3229.5 "--sync--" StartsUsing { id: "6B88", source: "King Thordan" } +3235.5 "Aetheric Burst Enrage" Ability { id: "6B88", source: "King Thordan" } # Phase 6: Nidhogg v2 @@ -304,76 +304,76 @@ hideall "--sync--" # 6D27 => 6D28 Head Up, Right Wing # 6D2D => 6D2E Hot Tail # 6D2B => 6D2C Hot Wing -3500.0 "--sync--" sync / 1[56]:[^:]*:King Thordan:6667:/ window 500,0 +3500.0 "--sync--" Ability { id: "6667", source: "King Thordan" } window 500,0 3517.3 "--targetable--" -3535.0 "Great Wyrmsbreath" sync / 1[56]:[^:]*:Hraesvelgr:6D35:/ -3535.0 "Dread Wyrmsbreath" #sync / 1[56]:[^:]*:Nidhogg:6D33:/ -3535.7 "Swirling Blizzard" #sync / 1[56]:[^:]*:Hraesvelgr:6D38:/ -3535.8 "Ice Breath" #sync / 1[56]:[^:]*:Hraesvelgr:6D37:/ -3535.8 "Holy Breath" #sync / 1[56]:[^:]*:Hraesvelgr:6D3C:/ -3535.8 "Flame Breath" #sync / 1[56]:[^:]*:Nidhogg:6D36:/ -3535.8 "Staggering Breath" #sync / 1[56]:[^:]*:Nidhogg:6D3D:/ -3543.0 "Mortal Vow" sync / 1[56]:[^:]*:Nidhogg:6D30:/ -3554.3 "Akh Afah" sync / 1[56]:[^:]*:Hraesvelgr:6D42:/ +3535.0 "Great Wyrmsbreath" Ability { id: "6D35", source: "Hraesvelgr" } +3535.0 "Dread Wyrmsbreath" #Ability { id: "6D33", source: "Nidhogg" } +3535.7 "Swirling Blizzard" #Ability { id: "6D38", source: "Hraesvelgr" } +3535.8 "Ice Breath" #Ability { id: "6D37", source: "Hraesvelgr" } +3535.8 "Holy Breath" #Ability { id: "6D3C", source: "Hraesvelgr" } +3535.8 "Flame Breath" #Ability { id: "6D36", source: "Nidhogg" } +3535.8 "Staggering Breath" #Ability { id: "6D3D", source: "Nidhogg" } +3543.0 "Mortal Vow" Ability { id: "6D30", source: "Nidhogg" } +3554.3 "Akh Afah" Ability { id: "6D42", source: "Hraesvelgr" } 3558.3 "--untargetable--" 3559.5 "--targetable--" -3567.4 "Hallowed Wings" sync / 1[56]:[^:]*:Hraesvelgr:(6D23|6D24|6D26|6D27):/ -3568.2 "Hallowed Plume" #sync / 1[56]:[^:]*:Hraesvelgr:6D29:/ -3568.5 "Cauterize" sync / 1[56]:[^:]*:Nidhogg:6D3E:/ +3567.4 "Hallowed Wings" Ability { id: ["6D23", "6D24", "6D26", "6D27"], source: "Hraesvelgr" } +3568.2 "Hallowed Plume" #Ability { id: "6D29", source: "Hraesvelgr" } +3568.5 "Cauterize" Ability { id: "6D3E", source: "Nidhogg" } 3568.8 "--untargetable--" 3571.9 "--targetable--" -3577.0 "Mortal Vow" sync / 1[56]:[^:]*:Nidhogg:6D31:/ -3582.4 "Wroth Flames" sync / 1[56]:[^:]*:Nidhogg:6D45:/ +3577.0 "Mortal Vow" Ability { id: "6D31", source: "Nidhogg" } +3582.4 "Wroth Flames" Ability { id: "6D45", source: "Nidhogg" } 3583.3 "--untargetable--" 3584.5 "--targetable--" -3593.2 "Akh Morn 1" sync / 1[56]:[^:]*:Nidhogg:6D46:/ -3593.3 "Cauterize" sync / 1[56]:[^:]*:Hraesvelgr:6D3F:/ +3593.2 "Akh Morn 1" Ability { id: "6D46", source: "Nidhogg" } +3593.3 "Cauterize" Ability { id: "6D3F", source: "Hraesvelgr" } 3593.8 "--untargetable--" -3594.9 "Akh Morn 2" #sync / 1[56]:[^:]*:Nidhogg:6D47:/ -3596.5 "Akh Morn 3" #sync / 1[56]:[^:]*:Nidhogg:6D47:/ -3598.1 "Akh Morn 4" #sync / 1[56]:[^:]*:Nidhogg:6D47:/ +3594.9 "Akh Morn 2" #Ability { id: "6D47", source: "Nidhogg" } +3596.5 "Akh Morn 3" #Ability { id: "6D47", source: "Nidhogg" } +3598.1 "Akh Morn 4" #Ability { id: "6D47", source: "Nidhogg" } 3599.1 "--targetable--" -3605.2 "Hot Tail/Hot Wing" sync / 1[56]:[^:]*:Nidhogg:(6D2D|6D2B):/ -3607.2 "Spreading Flames" #sync / 1[56]:[^:]*:Nidhogg:742B:/ -3607.2 "Entangled Flames" #sync / 1[56]:[^:]*:Nidhogg:742C:/ -3607.2 "Spreading Flames" #sync / 1[56]:[^:]*:Nidhogg:742B:/ -3607.2 "Entangled Flames" #sync / 1[56]:[^:]*:Nidhogg:742C:/ -3611.1 "Mortal Vow" sync / 1[56]:[^:]*:Nidhogg:6D31:/ -3623.4 "Akh Afah" sync / 1[56]:[^:]*:Hraesvelgr:6D42:/ -3635.4 "Hallowed Wings" sync / 1[56]:[^:]*:Hraesvelgr:(6D23|6D24|6D26|6D27):/ -3635.4 "Hot Tail/Hot Wing" #sync / 1[56]:[^:]*:Nidhogg:(6D2D|6D2B):/ -3635.5 "Hallowed Plume" #sync / 1[56]:[^:]*:Hraesvelgr:6D29:/ -3645.1 "Mortal Vow" sync / 1[56]:[^:]*:Nidhogg:6D31:/ -3655.1 "Great Wyrmsbreath" sync / 1[56]:[^:]*:Hraesvelgr:6D35:/ -3655.1 "Dread Wyrmsbreath" #sync / 1[56]:[^:]*:Nidhogg:6D33:/ -3655.8 "Swirling Blizzard" #sync / 1[56]:[^:]*:Hraesvelgr:6D38:/ -3655.9 "Ice Breath" #sync / 1[56]:[^:]*:Hraesvelgr:6D37:/ -3655.9 "Holy Orb" #sync / 1[56]:[^:]*:Hraesvelgr:6D3A:/ -3655.9 "Flame Breath" #sync / 1[56]:[^:]*:Nidhogg:6D36:/ -3655.9 "Dark Orb" #sync / 1[56]:[^:]*:Nidhogg:6D39:/ +3605.2 "Hot Tail/Hot Wing" Ability { id: ["6D2D", "6D2B"], source: "Nidhogg" } +3607.2 "Spreading Flames" #Ability { id: "742B", source: "Nidhogg" } +3607.2 "Entangled Flames" #Ability { id: "742C", source: "Nidhogg" } +3607.2 "Spreading Flames" #Ability { id: "742B", source: "Nidhogg" } +3607.2 "Entangled Flames" #Ability { id: "742C", source: "Nidhogg" } +3611.1 "Mortal Vow" Ability { id: "6D31", source: "Nidhogg" } +3623.4 "Akh Afah" Ability { id: "6D42", source: "Hraesvelgr" } +3635.4 "Hallowed Wings" Ability { id: ["6D23", "6D24", "6D26", "6D27"], source: "Hraesvelgr" } +3635.4 "Hot Tail/Hot Wing" #Ability { id: ["6D2D", "6D2B"], source: "Nidhogg" } +3635.5 "Hallowed Plume" #Ability { id: "6D29", source: "Hraesvelgr" } +3645.1 "Mortal Vow" Ability { id: "6D31", source: "Nidhogg" } +3655.1 "Great Wyrmsbreath" Ability { id: "6D35", source: "Hraesvelgr" } +3655.1 "Dread Wyrmsbreath" #Ability { id: "6D33", source: "Nidhogg" } +3655.8 "Swirling Blizzard" #Ability { id: "6D38", source: "Hraesvelgr" } +3655.9 "Ice Breath" #Ability { id: "6D37", source: "Hraesvelgr" } +3655.9 "Holy Orb" #Ability { id: "6D3A", source: "Hraesvelgr" } +3655.9 "Flame Breath" #Ability { id: "6D36", source: "Nidhogg" } +3655.9 "Dark Orb" #Ability { id: "6D39", source: "Nidhogg" } 3661.2 "--untargetable--" 3662.4 "--targetable--" -3668.4 "Cauterize" sync / 1[56]:[^:]*:Hraesvelgr:6D3F:/ +3668.4 "Cauterize" Ability { id: "6D3F", source: "Hraesvelgr" } 3668.7 "--untargetable--" -3674.5 "--sync--" sync / 1[56]:[^:]*:Hraesvelgr:6D40:/ -3675.4 "Touchdown" sync / 1[56]:[^:]*:(Hraesvelgr|Nidhogg):70E7:/ +3674.5 "--sync--" Ability { id: "6D40", source: "Hraesvelgr" } +3675.4 "Touchdown" Ability { id: "70E7", source: ["Hraesvelgr", "Nidhogg"] } 3675.7 "--targetable--" -3679.1 "Mortal Vow" sync / 1[56]:[^:]*:Nidhogg:6D31:/ -3701.8 "Revenge of the Horde (enrage)" sync / 1[56]:[^:]*:(Hraesvelgr|Nidhogg):6D21:/ +3679.1 "Mortal Vow" Ability { id: "6D31", source: "Nidhogg" } +3701.8 "Revenge of the Horde (enrage)" Ability { id: "6D21", source: ["Hraesvelgr", "Nidhogg"] } 3711.8 "Resentment?" -3718.8 "Shockwave?" #sync / 1[56]:[^:]*:(King Thordan|Nidhogg):71E4:/ -3744.6 "Alternative End?" #sync / 1[56]:[^:]*:Dragon-king Thordan:7438:/ +3718.8 "Shockwave?" #Ability { id: "71E4", source: ["King Thordan", "Nidhogg"] } +3744.6 "Alternative End?" #Ability { id: "7438", source: "Dragon-king Thordan" } # Phase 6.5: Eyes v2 # Note: Shockwave could come from King Thordan or Nidhogg -3809.5 "--sync--" sync / 1[56]:[^:]*:Right Eye:717A:/ window 200,0 +3809.5 "--sync--" Ability { id: "717A", source: "Right Eye" } window 200,0 3809.5 "Resentment" -3826.5 "Shockwave?" #sync / 1[56]:[^:]*:(King Thordan|Nidhogg):71E4:/ -3828.3 "--sync--" #sync / 1[56]:[^:]*:Left Eye:63F3:/ -3828.5 "--sync--" #sync / 1[56]:[^:]*:Right Eye:63F3:/ -3842.3 "Alternative End?" #sync / 1[56]:[^:]*:Dragon-king Thordan:7438:/ +3826.5 "Shockwave?" #Ability { id: "71E4", source: ["King Thordan", "Nidhogg"] } +3828.3 "--sync--" #Ability { id: "63F3", source: "Left Eye" } +3828.5 "--sync--" #Ability { id: "63F3", source: "Right Eye" } +3842.3 "Alternative End?" #Ability { id: "7438", source: "Dragon-king Thordan" } # Phase 7: Dragon-king Thordan @@ -406,74 +406,74 @@ hideall "--sync--" # 6DD3 = Third Proximity AoE # 6D91 = Flames of Ascalon (Out/Chariot) # 6D92 = Ice of Ascalon (In/Dynamo) -4000.0 "Shockwave" sync / 1[56]:[^:]*:(King Thordan|Nidhogg):71E4:/ window 400,0 -4001.8 "--sync--" sync / 1[56]:[^:]*:Left Eye:63F3:/ -4002.0 "--sync--" #sync / 1[56]:[^:]*:Right Eye:63F3:/ -4015.8 "Alternative End" sync / 1[56]:[^:]*:Dragon-king Thordan:7438:/ +4000.0 "Shockwave" Ability { id: "71E4", source: ["King Thordan", "Nidhogg"] } window 400,0 +4001.8 "--sync--" Ability { id: "63F3", source: "Left Eye" } +4002.0 "--sync--" #Ability { id: "63F3", source: "Right Eye" } +4015.8 "Alternative End" Ability { id: "7438", source: "Dragon-king Thordan" } 4024.8 "--targetable--" -4035.1 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9B:/ -4036.0 "Exaflare's Edge" duration 9.3 #sync / 1[56]:[^:]*:Dragon-king Thordan:6D9C:/ -4036.2 "Ice of Ascalon/Flames of Ascalon" sync / 1[56]:[^:]*:(Nidhogg|Dragon-king Thordan):(6D92|6D91):/ -4043.2 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4044.3 "Trinity 1" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4047.3 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4048.4 "Trinity 2" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4056.3 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D93:/ -4057.0 "Akh Morn's Edge x5" duration 5.5 #sync / 1[56]:[^:]*:Dragon-king Thordan:(730C|730D|730E):/ -4057.1 "Ice of Ascalon/Flames of Ascalon" sync / 1[56]:[^:]*:Dragon-king Thordan:(6D92|6D91):/ -4067.8 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4068.9 "Trinity 3" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4071.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4073.0 "Trinity 4" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4082.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D99:/ -4083.9 "Gigaflare's Edge x3" duration 7.9 #sync / 1[56]:[^:]*:Dragon-king Thordan:6D9A:/ -4084.0 "Ice of Ascalon/Flames of Ascalon" sync / 1[56]:[^:]*:Dragon-king Thordan:(6D92|6D91):/ -4100.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4102.0 "Trinity 5" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4104.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4106.0 "Trinity 6" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4113.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9B:/ -4114.8 "Exaflare's Edge" duration 9.3 #sync / 1[56]:[^:]*:Dragon-king Thordan:6D9C:/ -4115.0 "Ice of Ascalon/Flames of Ascalon" sync / 1[56]:[^:]*:Dragon-king Thordan:(6D92|6D91):/ -4121.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4122.9 "Trinity 1" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4125.8 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4126.9 "Trinity 2" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4134.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D93:/ -4135.6 "Akh Morn's Edge x6" duration 6.6 #sync / 1[56]:[^:]*:Dragon-king Thordan:(730C|730D|730E):/ -4135.7 "Ice of Ascalon/Flames of Ascalon" sync / 1[56]:[^:]*:Dragon-king Thordan:(6D92|6D91):/ -4147.5 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4148.6 "Trinity 3" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4151.6 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4152.7 "Trinity 4" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4162.6 "Gigaflare's Edge x3" sync / 1[56]:[^:]*:Dragon-king Thordan:6D99:/ duration 7.9 -4163.7 "Ice of Ascalon/Flames of Ascalon" sync / 1[56]:[^:]*:Dragon-king Thordan:(6D92|6D91):/ -4180.8 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4181.9 "Trinity 5" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4184.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4186.0 "Trinity 6" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4193.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9B:/ -4194.8 "Exaflare's Edge" duration 9.3 #sync / 1[56]:[^:]*:Dragon-king Thordan:6D9C:/ -4195.0 "Ice of Ascalon/Flames of Ascalon" sync / 1[56]:[^:]*:Dragon-king Thordan:(6D92|6D91):/ -4201.9 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4202.9 "Trinity 1" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4205.8 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4206.9 "Trinity 2" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4214.8 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D93:/ -4215.5 "Akh Morn's Edge x7" duration 7.7 #sync / 1[56]:[^:]*:Dragon-king Thordan:(730C|730D|730E):/ -4215.6 "Ice of Ascalon/Flames of Ascalon" sync / 1[56]:[^:]*:Dragon-king Thordan:(6D92|6D91):/ -4228.5 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4229.6 "Trinity 3" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4232.6 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6D9E:/ -4233.7 "Trinity 4" #sync / 1[56]:[^:]*:Dragon-king Thordan:(6D9F|6DA0|6DA1):/ -4245.6 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6E2E:/ -4246.3 "Morn Afah's Edge x3" sync / 1[56]:[^:]*:Dragon-king Thordan:(730F|7310|7311):/ +4035.1 "--sync--" Ability { id: "6D9B", source: "Dragon-king Thordan" } +4036.0 "Exaflare's Edge" duration 9.3 #Ability { id: "6D9C", source: "Dragon-king Thordan" } +4036.2 "Ice of Ascalon/Flames of Ascalon" Ability { id: ["6D92", "6D91"], source: ["Nidhogg", "Dragon-king Thordan"] } +4043.2 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4044.3 "Trinity 1" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4047.3 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4048.4 "Trinity 2" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4056.3 "--sync--" Ability { id: "6D93", source: "Dragon-king Thordan" } +4057.0 "Akh Morn's Edge x5" duration 5.5 #Ability { id: ["730C", "730D", "730E"], source: "Dragon-king Thordan" } +4057.1 "Ice of Ascalon/Flames of Ascalon" Ability { id: ["6D92", "6D91"], source: "Dragon-king Thordan" } +4067.8 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4068.9 "Trinity 3" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4071.9 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4073.0 "Trinity 4" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4082.9 "--sync--" Ability { id: "6D99", source: "Dragon-king Thordan" } +4083.9 "Gigaflare's Edge x3" duration 7.9 #Ability { id: "6D9A", source: "Dragon-king Thordan" } +4084.0 "Ice of Ascalon/Flames of Ascalon" Ability { id: ["6D92", "6D91"], source: "Dragon-king Thordan" } +4100.9 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4102.0 "Trinity 5" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4104.9 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4106.0 "Trinity 6" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4113.9 "--sync--" Ability { id: "6D9B", source: "Dragon-king Thordan" } +4114.8 "Exaflare's Edge" duration 9.3 #Ability { id: "6D9C", source: "Dragon-king Thordan" } +4115.0 "Ice of Ascalon/Flames of Ascalon" Ability { id: ["6D92", "6D91"], source: "Dragon-king Thordan" } +4121.9 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4122.9 "Trinity 1" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4125.8 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4126.9 "Trinity 2" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4134.9 "--sync--" Ability { id: "6D93", source: "Dragon-king Thordan" } +4135.6 "Akh Morn's Edge x6" duration 6.6 #Ability { id: ["730C", "730D", "730E"], source: "Dragon-king Thordan" } +4135.7 "Ice of Ascalon/Flames of Ascalon" Ability { id: ["6D92", "6D91"], source: "Dragon-king Thordan" } +4147.5 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4148.6 "Trinity 3" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4151.6 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4152.7 "Trinity 4" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4162.6 "Gigaflare's Edge x3" Ability { id: "6D99", source: "Dragon-king Thordan" } duration 7.9 +4163.7 "Ice of Ascalon/Flames of Ascalon" Ability { id: ["6D92", "6D91"], source: "Dragon-king Thordan" } +4180.8 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4181.9 "Trinity 5" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4184.9 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4186.0 "Trinity 6" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4193.9 "--sync--" Ability { id: "6D9B", source: "Dragon-king Thordan" } +4194.8 "Exaflare's Edge" duration 9.3 #Ability { id: "6D9C", source: "Dragon-king Thordan" } +4195.0 "Ice of Ascalon/Flames of Ascalon" Ability { id: ["6D92", "6D91"], source: "Dragon-king Thordan" } +4201.9 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4202.9 "Trinity 1" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4205.8 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4206.9 "Trinity 2" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4214.8 "--sync--" Ability { id: "6D93", source: "Dragon-king Thordan" } +4215.5 "Akh Morn's Edge x7" duration 7.7 #Ability { id: ["730C", "730D", "730E"], source: "Dragon-king Thordan" } +4215.6 "Ice of Ascalon/Flames of Ascalon" Ability { id: ["6D92", "6D91"], source: "Dragon-king Thordan" } +4228.5 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4229.6 "Trinity 3" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4232.6 "--sync--" Ability { id: "6D9E", source: "Dragon-king Thordan" } +4233.7 "Trinity 4" #Ability { id: ["6D9F", "6DA0", "6DA1"], source: "Dragon-king Thordan" } +4245.6 "--sync--" Ability { id: "6E2E", source: "Dragon-king Thordan" } +4246.3 "Morn Afah's Edge x3" Ability { id: ["730F", "7310", "7311"], source: "Dragon-king Thordan" } # This seems to loop indefinitely # 6E31 will fire if 6E30 does not hit a player -4248.7 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6E2F:/ -4249.5 "Morn Afah's Edge x3" sync / 1[56]:[^:]*:Dragon-king Thordan:6E30:/ -4251.8 "--sync--" sync / 1[56]:[^:]*:Dragon-king Thordan:6E2F:/ jump 4248.7 -4252.6 "Morn Afah's Edge x3" #sync / 1[56]:[^:]*:Dragon-king Thordan:6E30:/ -4255.7 "Morn Afah's Edge x3" #sync / 1[56]:[^:]*:Dragon-king Thordan:6E30:/ -4258.8 "Morn Afah's Edge x3" #sync / 1[56]:[^:]*:Dragon-king Thordan:6E30:/ +4248.7 "--sync--" Ability { id: "6E2F", source: "Dragon-king Thordan" } +4249.5 "Morn Afah's Edge x3" Ability { id: "6E30", source: "Dragon-king Thordan" } +4251.8 "--sync--" Ability { id: "6E2F", source: "Dragon-king Thordan" } jump 4248.7 +4252.6 "Morn Afah's Edge x3" #Ability { id: "6E30", source: "Dragon-king Thordan" } +4255.7 "Morn Afah's Edge x3" #Ability { id: "6E30", source: "Dragon-king Thordan" } +4258.8 "Morn Afah's Edge x3" #Ability { id: "6E30", source: "Dragon-king Thordan" } diff --git a/ui/raidboss/data/06-ew/ultimate/the_omega_protocol.txt b/ui/raidboss/data/06-ew/ultimate/the_omega_protocol.txt index 2ff48edc0c..dc6398aacf 100644 --- a/ui/raidboss/data/06-ew/ultimate/the_omega_protocol.txt +++ b/ui/raidboss/data/06-ew/ultimate/the_omega_protocol.txt @@ -6,364 +6,364 @@ hideall "--Reset--" hideall "--sync--" -0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0 +0.0 "--Reset--" ActorControl { command: "4000000F" } window 100000 jump 0 ### P1: Beetle -0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1 - -11.0 "--sync--" sync / 14:[^:]*:Omega:7B03:/ window 20,20 -15.0 "Program Loop" sync / 1[56]:[^:]*:Omega:7B03:/ -21.0 "--sync--" sync / 14:[^:]*:Omega:7B07:/ -29.0 "--sync--" sync / 1[56]:[^:]*:Omega:7B07:/ -29.1 "Storage Violation 1" sync / 1[56]:[^:]*:Omega:7B04:/ -29.1 "Blaster 1" sync / 1[56]:[^:]*:Omega:7B08:/ -38.1 "Storage Violation 2" sync / 1[56]:[^:]*:Omega:7B04:/ -38.1 "Blaster 2" sync / 1[56]:[^:]*:Omega:7B08:/ -47.1 "Storage Violation 3" sync / 1[56]:[^:]*:Omega:7B04:/ -47.1 "Blaster 3" sync / 1[56]:[^:]*:Omega:7B08:/ -56.1 "Storage Violation 4" sync / 1[56]:[^:]*:Omega:7B04:/ -56.1 "Blaster 4" sync / 1[56]:[^:]*:Omega:7B09:/ - -64.2 "--sync--" sync / 14:[^:]*:Omega:7B0B:/ window 20,20 -69.2 "Pantokrator" sync / 1[56]:[^:]*:Omega:7B0B:/ -75.3 "Flame Thrower" sync / 1[56]:[^:]*:Omega:7B0D:/ duration 25.6 -81.3 "Condensed Wave Cannon Kyrios 1" sync / 1[56]:[^:]*:Omega:7B0F:/ -81.3 "Guided Missile Kyrios 1" sync / 1[56]:[^:]*:Omega:7B0E:/ -87.3 "Condensed Wave Cannon Kyrios 2" sync / 1[56]:[^:]*:Omega:7B0F:/ -87.3 "Guided Missile Kyrios 2" sync / 1[56]:[^:]*:Omega:7B0E:/ -93.3 "Condensed Wave Cannon Kyrios 3" sync / 1[56]:[^:]*:Omega:7B0F:/ -93.3 "Guided Missile Kyrios 3" sync / 1[56]:[^:]*:Omega:7B0E:/ -99.3 "Condensed Wave Cannon Kyrios 4" sync / 1[56]:[^:]*:Omega:7B0F:/ -99.3 "Guided Missile Kyrios 4" sync / 1[56]:[^:]*:Omega:7B0E:/ - -108.0 "Diffuse Wave Cannon Kyrios x5" duration 8 #sync / 1[56]:[^:]*:Omega:7B10:/ -108.0 "Wave Cannon Kyrios 1" sync / 1[56]:[^:]*:Omega:7B11:/ -116.8 "Wave Cannon Kyrios 2" sync / 1[56]:[^:]*:Omega:7B11:/ - -122.7 "--sync--" sync / 14:[^:]*:Omega:7AF8:/ window 20,20 -127.7 "Atomic Ray Enrage" sync / 1[56]:[^:]*:Omega:7AF8:/ +0.0 "--sync--" InCombat { inGameCombat: "1" } window 0,1 + +11.0 "--sync--" StartsUsing { id: "7B03", source: "Omega" } window 20,20 +15.0 "Program Loop" Ability { id: "7B03", source: "Omega" } +21.0 "--sync--" StartsUsing { id: "7B07", source: "Omega" } +29.0 "--sync--" Ability { id: "7B07", source: "Omega" } +29.1 "Storage Violation 1" Ability { id: "7B04", source: "Omega" } +29.1 "Blaster 1" Ability { id: "7B08", source: "Omega" } +38.1 "Storage Violation 2" Ability { id: "7B04", source: "Omega" } +38.1 "Blaster 2" Ability { id: "7B08", source: "Omega" } +47.1 "Storage Violation 3" Ability { id: "7B04", source: "Omega" } +47.1 "Blaster 3" Ability { id: "7B08", source: "Omega" } +56.1 "Storage Violation 4" Ability { id: "7B04", source: "Omega" } +56.1 "Blaster 4" Ability { id: "7B09", source: "Omega" } + +64.2 "--sync--" StartsUsing { id: "7B0B", source: "Omega" } window 20,20 +69.2 "Pantokrator" Ability { id: "7B0B", source: "Omega" } +75.3 "Flame Thrower" Ability { id: "7B0D", source: "Omega" } duration 25.6 +81.3 "Condensed Wave Cannon Kyrios 1" Ability { id: "7B0F", source: "Omega" } +81.3 "Guided Missile Kyrios 1" Ability { id: "7B0E", source: "Omega" } +87.3 "Condensed Wave Cannon Kyrios 2" Ability { id: "7B0F", source: "Omega" } +87.3 "Guided Missile Kyrios 2" Ability { id: "7B0E", source: "Omega" } +93.3 "Condensed Wave Cannon Kyrios 3" Ability { id: "7B0F", source: "Omega" } +93.3 "Guided Missile Kyrios 3" Ability { id: "7B0E", source: "Omega" } +99.3 "Condensed Wave Cannon Kyrios 4" Ability { id: "7B0F", source: "Omega" } +99.3 "Guided Missile Kyrios 4" Ability { id: "7B0E", source: "Omega" } + +108.0 "Diffuse Wave Cannon Kyrios x5" duration 8 #Ability { id: "7B10", source: "Omega" } +108.0 "Wave Cannon Kyrios 1" Ability { id: "7B11", source: "Omega" } +116.8 "Wave Cannon Kyrios 2" Ability { id: "7B11", source: "Omega" } + +122.7 "--sync--" StartsUsing { id: "7AF8", source: "Omega" } window 20,20 +127.7 "Atomic Ray Enrage" Ability { id: "7AF8", source: "Omega" } ### P2: M/F -200.0 "--sync--" sync / 257 101:........:00020001:0A:/ window 200,0 +200.0 "--sync--" MapEffect { flags: "00020001", location: "0A" } window 200,0 202.3 "--targetable--" -203.4 "--sync--" sync / 14:[^:]*:Omega:7B40:/ window 210,5 # extra sync due to map effect sync -206.4 "Firewall" sync / 1[56]:[^:]*:Omega:7B40:/ -214.5 "Solar Ray" sync / 1[56]:[^:]*:Omega:7E6A:/ +203.4 "--sync--" StartsUsing { id: "7B40", source: "Omega" } window 210,5 # extra sync due to map effect sync +206.4 "Firewall" Ability { id: "7B40", source: "Omega" } +214.5 "Solar Ray" Ability { id: "7E6A", source: "Omega" } # Party Synergy -230.9 "Party Synergy" sync / 1[56]:[^:]*:Omega:7B3E:/ window 20,20 +230.9 "Party Synergy" Ability { id: "7B3E", source: "Omega" } window 20,20 233.9 "--untargetable--" -240.5 "--sync--" sync / 1[56]:[^:]*:Omega:7B1B:/ -241.3 "Superliminal Steel/Optimized Blizzard III" sync / 1[56]:[^:]*:Omega-F:(7B2A|7B2D):/ -241.3 "Efficient Bladework/Beyond Strength" sync / 1[56]:[^:]*:Omega-M:(7B25|7B26):/ -247.7 "Optimized Fire III" sync / 1[56]:[^:]*:Omega:7B2F:/ -248.0 "Optical Laser" sync / 1[56]:[^:]*:Optical Unit:7B21:/ -250.8 "--sync--" sync / 1[56]:[^:]*:Omega:7B1F:/ -254.9 "Discharger" sync / 1[56]:[^:]*:Omega:7B2E:/ -259.1 "Spotlight x2" sync / 1[56]:[^:]*:Omega-M:7B30:/ -259.1 "Efficient Bladework" sync / 1[56]:[^:]*:Omega-M:7B26:/ +240.5 "--sync--" Ability { id: "7B1B", source: "Omega" } +241.3 "Superliminal Steel/Optimized Blizzard III" Ability { id: ["7B2A", "7B2D"], source: "Omega-F" } +241.3 "Efficient Bladework/Beyond Strength" Ability { id: ["7B25", "7B26"], source: "Omega-M" } +247.7 "Optimized Fire III" Ability { id: "7B2F", source: "Omega" } +248.0 "Optical Laser" Ability { id: "7B21", source: "Optical Unit" } +250.8 "--sync--" Ability { id: "7B1F", source: "Omega" } +254.9 "Discharger" Ability { id: "7B2E", source: "Omega" } +259.1 "Spotlight x2" Ability { id: "7B30", source: "Omega-M" } +259.1 "Efficient Bladework" Ability { id: "7B26", source: "Omega-M" } # Limitless Synergy 262.1 "--targetable--" -272.2 "Synthetic Shield" sync / 1[56]:[^:]*:Omega:7E71:/ -282.4 "Limitless Synergy" sync / 1[56]:[^:]*:Omega:7B38:/ window 20,20 -285.5 "--sync--" sync / 1[56]:[^:]*:Omega:7B42:/ -287.4 "Optimized Passage of Arms" sync / 1[56]:[^:]*:Omega:7B44:/ -288.6 "Synthetic Shield" sync / 1[56]:[^:]*:Omega-M:7E71:/ -295.6 "Optimized Bladedance x2" sync / 1[56]:[^:]*:Omega-M:7B34:/ -295.7 "Optimized Sagittarius Arrow" sync / 1[56]:[^:]*:Omega-M:7B33:/ -306.7 "Beyond Defense" sync / 1[56]:[^:]*:Omega-M:7B27:/ -309.7 "Optimized Meteor" sync / 1[56]:[^:]*:Omega-F:7B31:/ -310.0 "Pile Pitch" sync / 1[56]:[^:]*:Omega-M:7B29:/ -318.8 "Cosmo Memory" sync / 1[56]:[^:]*:Omega-M:7B22:/ +272.2 "Synthetic Shield" Ability { id: "7E71", source: "Omega" } +282.4 "Limitless Synergy" Ability { id: "7B38", source: "Omega" } window 20,20 +285.5 "--sync--" Ability { id: "7B42", source: "Omega" } +287.4 "Optimized Passage of Arms" Ability { id: "7B44", source: "Omega" } +288.6 "Synthetic Shield" Ability { id: "7E71", source: "Omega-M" } +295.6 "Optimized Bladedance x2" Ability { id: "7B34", source: "Omega-M" } +295.7 "Optimized Sagittarius Arrow" Ability { id: "7B33", source: "Omega-M" } +306.7 "Beyond Defense" Ability { id: "7B27", source: "Omega-M" } +309.7 "Optimized Meteor" Ability { id: "7B31", source: "Omega-F" } +310.0 "Pile Pitch" Ability { id: "7B29", source: "Omega-M" } +318.8 "Cosmo Memory" Ability { id: "7B22", source: "Omega-M" } # 60 second cast, starting at same time of Passage of Arms -347.4 "Laser Shower Enrage" sync / 1[56]:[^:]*:Omega:7B45:/ +347.4 "Laser Shower Enrage" Ability { id: "7B45", source: "Omega" } ### P3: "Final" Omega -400.0 "--sync--" sync / 1[56]:[^:]*:Omega:7B13:/ window 400,0 -409.3 "--sync--" sync / 1[56]:[^:]*:Omega:7B4A:/ -412.3 "--sync--" sync / 1[56]:[^:]*:Omega:7B4B:/ -414.3 "Wave Repeater 1" sync / 1[56]:[^:]*:Omega:7B4F:/ -416.4 "Wave Repeater 2" sync / 1[56]:[^:]*:Omega:7B50:/ -418.4 "Wave Repeater 3" sync / 1[56]:[^:]*:Omega:7B51:/ -420.4 "Wave Repeater 4" sync / 1[56]:[^:]*:Omega:7B52:/ -422.4 "Wave Repeater 1" sync / 1[56]:[^:]*:Omega:7B4F:/ -424.5 "Wave Repeater 2" sync / 1[56]:[^:]*:Omega:7B50:/ -426.4 "Colossal Blow" sync / 1[56]:[^:]*:(Left Arm Unit|Right Arm Unit):7B4E:/ window 1,1 -426.6 "Wave Repeater 3" sync / 1[56]:[^:]*:Omega:7B51:/ +400.0 "--sync--" Ability { id: "7B13", source: "Omega" } window 400,0 +409.3 "--sync--" Ability { id: "7B4A", source: "Omega" } +412.3 "--sync--" Ability { id: "7B4B", source: "Omega" } +414.3 "Wave Repeater 1" Ability { id: "7B4F", source: "Omega" } +416.4 "Wave Repeater 2" Ability { id: "7B50", source: "Omega" } +418.4 "Wave Repeater 3" Ability { id: "7B51", source: "Omega" } +420.4 "Wave Repeater 4" Ability { id: "7B52", source: "Omega" } +422.4 "Wave Repeater 1" Ability { id: "7B4F", source: "Omega" } +424.5 "Wave Repeater 2" Ability { id: "7B50", source: "Omega" } +426.4 "Colossal Blow" Ability { id: "7B4E", source: ["Left Arm Unit", "Right Arm Unit"] } window 1,1 +426.6 "Wave Repeater 3" Ability { id: "7B51", source: "Omega" } # sniper cannon times are a little sloppy and have inconsistent actor names -427.3 "High-powered Sniper Cannon x2" #sync / 1[56]:[^:]*:Omega:7B54:/ -428.4 "Sniper Cannon x4" #sync / 1[56]:[^:]*:Omega:7B53:/ -428.7 "Wave Repeater 4" sync / 1[56]:[^:]*:Omega:7B52:/ -428.9 "Colossal Blow" sync / 1[56]:[^:]*:(Left Arm Unit|Right Arm Unit):7B4E:/ window 1,1 +427.3 "High-powered Sniper Cannon x2" #Ability { id: "7B54", source: "Omega" } +428.4 "Sniper Cannon x4" #Ability { id: "7B53", source: "Omega" } +428.7 "Wave Repeater 4" Ability { id: "7B52", source: "Omega" } +428.9 "Colossal Blow" Ability { id: "7B4E", source: ["Left Arm Unit", "Right Arm Unit"] } window 1,1 432.3 "--targetable--" -436.3 "--sync--" sync / 14:[^:]*:Omega:7B55:/ window 40,40 +436.3 "--sync--" StartsUsing { id: "7B55", source: "Omega" } window 40,40 -441.3 "Hello, World" sync / 1[56]:[^:]*:Omega:7B55:/ +441.3 "Hello, World" Ability { id: "7B55", source: "Omega" } # Most of the damage comes in 7B56 Critical Synchronization Bug, # and 7B57 Critical Overflow Bug which is 1s after latent defect # (and patch, obviously). There's also a ton of other Latent X # abilities here. All of these are skipped for noise reasons. -455.4 "--sync--" sync / 14:[^:]*:Omega:7B6F:/ -464.4 "Latent Defect 1" sync / 1[56]:[^:]*:Omega:7B6F:/ +455.4 "--sync--" StartsUsing { id: "7B6F", source: "Omega" } +464.4 "Latent Defect 1" Ability { id: "7B6F", source: "Omega" } # people break both patches here whenever, so don't sync these times # this time is roughly when people break the first one. -466.9 "Patch x2" #sync / 1[56]:[^:]*:Omega:7B63:/ +466.9 "Patch x2" #Ability { id: "7B63", source: "Omega" } -476.4 "--sync--" sync / 14:[^:]*:Omega:7B6F:/ -485.4 "Latent Defect 2" sync / 1[56]:[^:]*:Omega:7B6F:/ -487.9 "Patch x2" #sync / 1[56]:[^:]*:Omega:7B63:/ +476.4 "--sync--" StartsUsing { id: "7B6F", source: "Omega" } +485.4 "Latent Defect 2" Ability { id: "7B6F", source: "Omega" } +487.9 "Patch x2" #Ability { id: "7B63", source: "Omega" } -497.5 "--sync--" sync / 14:[^:]*:Omega:7B6F:/ -506.5 "Latent Defect 3" sync / 1[56]:[^:]*:Omega:7B6F:/ -509.0 "Patch x2" #sync / 1[56]:[^:]*:Omega:7B63:/ +497.5 "--sync--" StartsUsing { id: "7B6F", source: "Omega" } +506.5 "Latent Defect 3" Ability { id: "7B6F", source: "Omega" } +509.0 "Patch x2" #Ability { id: "7B63", source: "Omega" } -518.8 "--sync--" sync / 14:[^:]*:Omega:7B6F:/ -527.5 "Patch" #sync / 1[56]:[^:]*:Omega:7B63:/ -527.8 "Latent Defect 4" sync / 1[56]:[^:]*:Omega:7B6F:/ -533.5 "Patch" #sync / 1[56]:[^:]*:Omega:7B63:/ +518.8 "--sync--" StartsUsing { id: "7B6F", source: "Omega" } +527.5 "Patch" #Ability { id: "7B63", source: "Omega" } +527.8 "Latent Defect 4" Ability { id: "7B6F", source: "Omega" } +533.5 "Patch" #Ability { id: "7B63", source: "Omega" } -542.1 "--sync--" sync / 14:[^:]*:Omega:7B64:/ window 30,30 -550.1 "Critical Error" sync / 1[56]:[^:]*:Omega:7B64:/ +542.1 "--sync--" StartsUsing { id: "7B64", source: "Omega" } window 30,30 +550.1 "Critical Error" Ability { id: "7B64", source: "Omega" } -560.2 "--sync--" sync / 1[56]:[^:]*:Omega:7B46:/ -571.4 "Oversampled Wave Cannon" sync / 1[56]:[^:]*:Omega:(7B6B|7B6C):/ -577.4 "--sync--" sync / 14:[^:]*:Omega:7B48:/ window 50,50 -587.4 "Ion Efflux Enrage" sync / 1[56]:[^:]*:Omega:7B48:/ +560.2 "--sync--" Ability { id: "7B46", source: "Omega" } +571.4 "Oversampled Wave Cannon" Ability { id: ["7B6B", "7B6C"], source: "Omega" } +577.4 "--sync--" StartsUsing { id: "7B48", source: "Omega" } window 50,50 +587.4 "Ion Efflux Enrage" Ability { id: "7B48", source: "Omega" } ### P4: Blue Screen -600.0 "--sync--" sync / 1[56]:[^:]*:Omega:7B47:/ window 600,0 +600.0 "--sync--" Ability { id: "7B47", source: "Omega" } window 600,0 600.0 "--untargetable--" -607.1 "--sync--" sync / 1[56]:[^:]*:Omega:7B7A:/ +607.1 "--sync--" Ability { id: "7B7A", source: "Omega" } 607.1 "--targetable--" -615.2 "--sync--" sync / 1[56]:[^:]*:Omega:7B46:/ -619.0 "--sync--" sync / 1[56]:[^:]*:Omega:5779:/ -621.4 "Wave Cannon A" sync / 1[56]:[^:]*:Omega:7B81:/ -626.7 "Wave Cannon B" sync / 1[56]:[^:]*:Omega:7F16:/ -627.0 "Wave Cannon (stacks)" sync / 1[56]:[^:]*:Omega:7B7F:/ - -629.1 "--sync--" sync / 1[56]:[^:]*:Omega:5779:/ -629.4 "Wave Repeater 1" sync / 1[56]:[^:]*:Omega:7B4F:/ -631.5 "Wave Repeater 2" sync / 1[56]:[^:]*:Omega:7B50:/ -631.5 "Wave Cannon A" sync / 1[56]:[^:]*:Omega:7F16:/ -633.5 "Wave Repeater 3" sync / 1[56]:[^:]*:Omega:7B51:/ -635.5 "Wave Repeater 4" sync / 1[56]:[^:]*:Omega:7B52:/ -636.6 "Wave Cannon B" sync / 1[56]:[^:]*:Omega:7B82:/ -636.8 "Wave Cannon (stacks)" sync / 1[56]:[^:]*:Omega:7B7F:/ - -639.0 "--sync--" sync / 1[56]:[^:]*:Omega:5779:/ -641.6 "Wave Cannon A" sync / 1[56]:[^:]*:Omega:7B83:/ -646.6 "Wave Repeater 1" sync / 1[56]:[^:]*:Omega:7B4F:/ -646.7 "Wave Cannon B" sync / 1[56]:[^:]*:Omega:7B84:/ -646.9 "Wave Cannon (stacks)" sync / 1[56]:[^:]*:Omega:7B7F:/ -648.6 "Wave Repeater 2" sync / 1[56]:[^:]*:Omega:7B50:/ -650.6 "Wave Repeater 3" sync / 1[56]:[^:]*:Omega:7B51:/ -652.6 "Wave Repeater 4" sync / 1[56]:[^:]*:Omega:7B52:/ -661.6 "Blue Screen Enrage" sync / 1[56]:[^:]*:Omega:7B7B:/ +615.2 "--sync--" Ability { id: "7B46", source: "Omega" } +619.0 "--sync--" Ability { id: "5779", source: "Omega" } +621.4 "Wave Cannon A" Ability { id: "7B81", source: "Omega" } +626.7 "Wave Cannon B" Ability { id: "7F16", source: "Omega" } +627.0 "Wave Cannon (stacks)" Ability { id: "7B7F", source: "Omega" } + +629.1 "--sync--" Ability { id: "5779", source: "Omega" } +629.4 "Wave Repeater 1" Ability { id: "7B4F", source: "Omega" } +631.5 "Wave Repeater 2" Ability { id: "7B50", source: "Omega" } +631.5 "Wave Cannon A" Ability { id: "7F16", source: "Omega" } +633.5 "Wave Repeater 3" Ability { id: "7B51", source: "Omega" } +635.5 "Wave Repeater 4" Ability { id: "7B52", source: "Omega" } +636.6 "Wave Cannon B" Ability { id: "7B82", source: "Omega" } +636.8 "Wave Cannon (stacks)" Ability { id: "7B7F", source: "Omega" } + +639.0 "--sync--" Ability { id: "5779", source: "Omega" } +641.6 "Wave Cannon A" Ability { id: "7B83", source: "Omega" } +646.6 "Wave Repeater 1" Ability { id: "7B4F", source: "Omega" } +646.7 "Wave Cannon B" Ability { id: "7B84", source: "Omega" } +646.9 "Wave Cannon (stacks)" Ability { id: "7B7F", source: "Omega" } +648.6 "Wave Repeater 2" Ability { id: "7B50", source: "Omega" } +650.6 "Wave Repeater 3" Ability { id: "7B51", source: "Omega" } +652.6 "Wave Repeater 4" Ability { id: "7B52", source: "Omega" } +661.6 "Blue Screen Enrage" Ability { id: "7B7B", source: "Omega" } 661.6 "--untargetable--" ### P5: Run: Dynamis # Blue Screen DPS check passed -700.0 "--sync--" sync / 1[56]:[^:]*:Omega:7B7C:/ window 700,0 -706.0 "--sync--" sync / 1[56]:[^:]*:Omega-F:7B86:/ -706.0 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B85:/ +700.0 "--sync--" Ability { id: "7B7C", source: "Omega" } window 700,0 +706.0 "--sync--" Ability { id: "7B86", source: "Omega-F" } +706.0 "--sync--" Ability { id: "7B85", source: "Omega-M" } # Delta Version 715.6 "--targetable--" -723.6 "Solar Ray 1" sync / 1[56]:[^:]*:Omega-M:81AC:/ -726.8 "Solar Ray 2" sync / 1[56]:[^:]*:Omega-M:7B01:/ -733.9 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B42:/ -740.0 "Run: ****mi* (Delta Version)" sync / 1[56]:[^:]*:Omega-M:7B88:/ +723.6 "Solar Ray 1" Ability { id: "81AC", source: "Omega-M" } +726.8 "Solar Ray 2" Ability { id: "7B01", source: "Omega-M" } +733.9 "--sync--" Ability { id: "7B42", source: "Omega-M" } +740.0 "Run: ****mi* (Delta Version)" Ability { id: "7B88", source: "Omega-M" } 743.0 "--untargetable--" -750.2 "Peripheral Synthesis" sync / 1[56]:[^:]*:Omega:7B8C:/ -753.2 "Archive Peripheral" sync / 1[56]:[^:]*:Omega:7F76:/ -761.2 "Patch" #sync / 1[56]:[^:]*:Omega-M:7B63:/ -763.2 "Optical Laser" sync / 1[56]:[^:]*:Optical Unit:7B21:/ -764.9 "Patch" #sync / 1[56]:[^:]*:Omega-M:7B63:/ -766.4 "Explosion" sync / 1[56]:[^:]*:Rocket Punch:7AFA:/ -768.5 "Beyond Defense" sync / 1[56]:[^:]*:Omega-M:7B27:/ -771.1 "Hyper Pulse" sync / 1[56]:[^:]*:Right Arm Unit:7B70:/ -771.8 "Hyper Pulse" #sync / 1[56]:[^:]*:Right Arm Unit:7B71:/ -772.4 "Hyper Pulse" #sync / 1[56]:[^:]*:Right Arm Unit:7B71:/ -773.0 "Hyper Pulse" #sync / 1[56]:[^:]*:Right Arm Unit:7B71:/ -773.6 "Hyper Pulse" #sync / 1[56]:[^:]*:Right Arm Unit:7B71:/ -773.6 "Oversampled Wave Cannon" sync / 1[56]:[^:]*:Omega:7B6D:/ -774.0 "Pile Pitch" sync / 1[56]:[^:]*:Omega-M:7B29:/ -774.0 "Hyper Pulse" #sync / 1[56]:[^:]*:Right Arm Unit:7B71:/ -782.0 "Patch" #sync / 1[56]:[^:]*:Omega-M:7B63:/ -784.0 "Patch" #sync / 1[56]:[^:]*:Omega-M:7B63:/ -786.4 "Swivel Cannon" sync / 1[56]:[^:]*:Omega:(7B94|7B95):/ -787.0 "Hello, Distant World 1" sync / 1[56]:[^:]*:Omega-M:8110:/ -787.0 "Hello, Near World 1" sync / 1[56]:[^:]*:Omega-M:7B89:/ -788.0 "Hello, Distant World 2" #sync / 1[56]:[^:]*:Omega-M:8111:/ -788.0 "Hello, Near World 2" #sync / 1[56]:[^:]*:Omega-M:7B8A:/ -789.0 "Hello, Distant World 3" #sync / 1[56]:[^:]*:Omega-M:8111:/ -789.0 "Hello, Near World 3" #sync / 1[56]:[^:]*:Omega-M:7B8A:/ +750.2 "Peripheral Synthesis" Ability { id: "7B8C", source: "Omega" } +753.2 "Archive Peripheral" Ability { id: "7F76", source: "Omega" } +761.2 "Patch" #Ability { id: "7B63", source: "Omega-M" } +763.2 "Optical Laser" Ability { id: "7B21", source: "Optical Unit" } +764.9 "Patch" #Ability { id: "7B63", source: "Omega-M" } +766.4 "Explosion" Ability { id: "7AFA", source: "Rocket Punch" } +768.5 "Beyond Defense" Ability { id: "7B27", source: "Omega-M" } +771.1 "Hyper Pulse" Ability { id: "7B70", source: "Right Arm Unit" } +771.8 "Hyper Pulse" #Ability { id: "7B71", source: "Right Arm Unit" } +772.4 "Hyper Pulse" #Ability { id: "7B71", source: "Right Arm Unit" } +773.0 "Hyper Pulse" #Ability { id: "7B71", source: "Right Arm Unit" } +773.6 "Hyper Pulse" #Ability { id: "7B71", source: "Right Arm Unit" } +773.6 "Oversampled Wave Cannon" Ability { id: "7B6D", source: "Omega" } +774.0 "Pile Pitch" Ability { id: "7B29", source: "Omega-M" } +774.0 "Hyper Pulse" #Ability { id: "7B71", source: "Right Arm Unit" } +782.0 "Patch" #Ability { id: "7B63", source: "Omega-M" } +784.0 "Patch" #Ability { id: "7B63", source: "Omega-M" } +786.4 "Swivel Cannon" Ability { id: ["7B94", "7B95"], source: "Omega" } +787.0 "Hello, Distant World 1" Ability { id: "8110", source: "Omega-M" } +787.0 "Hello, Near World 1" Ability { id: "7B89", source: "Omega-M" } +788.0 "Hello, Distant World 2" #Ability { id: "8111", source: "Omega-M" } +788.0 "Hello, Near World 2" #Ability { id: "7B8A", source: "Omega-M" } +789.0 "Hello, Distant World 3" #Ability { id: "8111", source: "Omega-M" } +789.0 "Hello, Near World 3" #Ability { id: "7B8A", source: "Omega-M" } # Sigma Version 791.1 "--targetable--" -805.2 "Solar Ray 1" sync / 1[56]:[^:]*:Omega-M:81AC:/ -808.5 "Solar Ray 2" sync / 1[56]:[^:]*:Omega-M:7B01:/ -815.6 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B42:/ -821.7 "Run: ****mi* (Sigma Version)" sync / 1[56]:[^:]*:Omega-M:8014:/ +805.2 "Solar Ray 1" Ability { id: "81AC", source: "Omega-M" } +808.5 "Solar Ray 2" Ability { id: "7B01", source: "Omega-M" } +815.6 "--sync--" Ability { id: "7B42", source: "Omega-M" } +821.7 "Run: ****mi* (Sigma Version)" Ability { id: "8014", source: "Omega-M" } 824.7 "--untargetable--" -839.0 "Subject Simulation F" sync / 1[56]:[^:]*:Omega-M:7F2F:/ -840.4 "Program Loop" sync / 1[56]:[^:]*:Omega:7B98:/ -840.0 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B14:/ -841.1 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B16:/ -844.0 "Wave Cannon" sync / 1[56]:[^:]*:Omega:7B73:/ -843.8 "Hyper Pulse" sync / 1[56]:[^:]*:Right Arm Unit:7B72:/ -845.1 "--sync--" sync / 1[56]:[^:]*:Omega-M:7F30:/ -848.7 "--sync--" sync / 1[56]:[^:]*:Omega:7B15:/ -849.3 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B20:/ -851.3 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B43:/ - -852.4 "Discharger" sync / 1[56]:[^:]*:Omega-M:7B2E:/ -856.4 "Storage Violation x5 / Storage Violation x6" sync / 1[56]:[^:]*:Omega:7B0[45]:/ - -870.6 "Rear Lasers x14" sync / 1[56]:[^:]*:Rear Power Unit:7B8F:/ duration 7.8 -873.7 "Superliminal Steel/Optimized Blizzard III" sync / 1[56]:[^:]*:Omega-M:(7B2A|7B2D):/ -880.6 "Hello, Near World 1" sync / 1[56]:[^:]*:Omega-F:7B89:/ -880.6 "Hello, Distant World 1" sync / 1[56]:[^:]*:Omega-F:8110:/ -880.6 "Hyper Pulse" sync / 1[56]:[^:]*:Right Arm Unit:7B72:/ -881.6 "Hello, Near World 2" #sync / 1[56]:[^:]*:Omega-F:7B8A:/ -881.6 "Hello, Distant World 2" #sync / 1[56]:[^:]*:Omega-F:8111:/ -882.6 "Hello, Near World 3" #sync / 1[56]:[^:]*:Omega-F:7B8A:/ -882.6 "Hello, Distant World 3" #sync / 1[56]:[^:]*:Omega-F:8111:/ +839.0 "Subject Simulation F" Ability { id: "7F2F", source: "Omega-M" } +840.4 "Program Loop" Ability { id: "7B98", source: "Omega" } +840.0 "--sync--" Ability { id: "7B14", source: "Omega-M" } +841.1 "--sync--" Ability { id: "7B16", source: "Omega-M" } +844.0 "Wave Cannon" Ability { id: "7B73", source: "Omega" } +843.8 "Hyper Pulse" Ability { id: "7B72", source: "Right Arm Unit" } +845.1 "--sync--" Ability { id: "7F30", source: "Omega-M" } +848.7 "--sync--" Ability { id: "7B15", source: "Omega" } +849.3 "--sync--" Ability { id: "7B20", source: "Omega-M" } +851.3 "--sync--" Ability { id: "7B43", source: "Omega-M" } + +852.4 "Discharger" Ability { id: "7B2E", source: "Omega-M" } +856.4 "Storage Violation x5 / Storage Violation x6" Ability { id: "7B0[45]", source: "Omega" } + +870.6 "Rear Lasers x14" Ability { id: "7B8F", source: "Rear Power Unit" } duration 7.8 +873.7 "Superliminal Steel/Optimized Blizzard III" Ability { id: ["7B2A", "7B2D"], source: "Omega-M" } +880.6 "Hello, Near World 1" Ability { id: "7B89", source: "Omega-F" } +880.6 "Hello, Distant World 1" Ability { id: "8110", source: "Omega-F" } +880.6 "Hyper Pulse" Ability { id: "7B72", source: "Right Arm Unit" } +881.6 "Hello, Near World 2" #Ability { id: "7B8A", source: "Omega-F" } +881.6 "Hello, Distant World 2" #Ability { id: "8111", source: "Omega-F" } +882.6 "Hello, Near World 3" #Ability { id: "7B8A", source: "Omega-F" } +882.6 "Hello, Distant World 3" #Ability { id: "8111", source: "Omega-F" } # Omega Version 885.3 "--targetable--" -887.3 "--sync--" sync / 1[56]:[^:]*:Omega-M:7C02:/ -894.3 "Solar Ray 1" sync / 1[56]:[^:]*:Omega-M:81AD:/ -897.4 "Solar Ray 2" sync / 1[56]:[^:]*:Omega-M:7B02:/ -904.6 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B43:/ -910.7 "Run: ****mi* (Omega Version)" sync / 1[56]:[^:]*:Omega-M:8015:/ -927.8 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:(7B9B|7B9C):/ -# 928.8 "Superliminal Steel" sync / 1[56]:[^:]*:Omega-F:7B2A:/ -# 928.8 "Beyond Strength" sync / 1[56]:[^:]*:Omega-M:7B25:/ -931.9 "Diffuse Wave Cannon" sync / 1[56]:[^:]*:Omega:(7B78|7B77):/ -# 932.7 "Optimized Blizzard III" sync / 1[56]:[^:]*:Omega-F:7B2D:/ -# 932.7 "Beyond Strength" sync / 1[56]:[^:]*:Omega-M:7B25:/ +887.3 "--sync--" Ability { id: "7C02", source: "Omega-M" } +894.3 "Solar Ray 1" Ability { id: "81AD", source: "Omega-M" } +897.4 "Solar Ray 2" Ability { id: "7B02", source: "Omega-M" } +904.6 "--sync--" Ability { id: "7B43", source: "Omega-M" } +910.7 "Run: ****mi* (Omega Version)" Ability { id: "8015", source: "Omega-M" } +927.8 "Diffuse Wave Cannon" Ability { id: ["7B9B", "7B9C"], source: "Omega" } +# 928.8 "Superliminal Steel" Ability { id: "7B2A", source: "Omega-F" } +# 928.8 "Beyond Strength" Ability { id: "7B25", source: "Omega-M" } +931.9 "Diffuse Wave Cannon" Ability { id: ["7B78", "7B77"], source: "Omega" } +# 932.7 "Optimized Blizzard III" Ability { id: "7B2D", source: "Omega-F" } +# 932.7 "Beyond Strength" Ability { id: "7B25", source: "Omega-M" } 935.6 "--untargetable--" -945.4 "Hello, Distant World 1" sync / 1[56]:[^:]*:Omega-F:8110:/ -945.4 "Hello, Near World 1" sync / 1[56]:[^:]*:Omega-F:7B89:/ -945.8 "Oversampled Wave Cannon" sync / 1[56]:[^:]*:Omega:7B6D:/ -946.4 "Hello, Distant World 2" #sync / 1[56]:[^:]*:Omega-F:8111:/ -946.4 "Hello, Near World 2" #sync / 1[56]:[^:]*:Omega-F:7B8A:/ -947.4 "Hello, Distant World 3" #sync / 1[56]:[^:]*:Omega-F:8111:/ -947.4 "Hello, Near World 3" #sync / 1[56]:[^:]*:Omega-F:7B8A:/ - -961.6 "Blaster x2" sync / 1[56]:[^:]*:Omega-F:7E75:/ -963.4 "Hello, Distant World 1" sync / 1[56]:[^:]*:Omega-F:8110:/ -963.4 "Hello, Near World 1" sync / 1[56]:[^:]*:Omega-F:7B89:/ -964.4 "Hello, Distant World 2" #sync / 1[56]:[^:]*:Omega-F:8111:/ -964.4 "Hello, Near World 2" #sync / 1[56]:[^:]*:Omega-F:7B8A:/ -965.4 "Hello, Distant World 3" #sync / 1[56]:[^:]*:Omega-F:8111:/ -965.4 "Hello, Near World 3" #sync / 1[56]:[^:]*:Omega-F:7B8A:/ +945.4 "Hello, Distant World 1" Ability { id: "8110", source: "Omega-F" } +945.4 "Hello, Near World 1" Ability { id: "7B89", source: "Omega-F" } +945.8 "Oversampled Wave Cannon" Ability { id: "7B6D", source: "Omega" } +946.4 "Hello, Distant World 2" #Ability { id: "8111", source: "Omega-F" } +946.4 "Hello, Near World 2" #Ability { id: "7B8A", source: "Omega-F" } +947.4 "Hello, Distant World 3" #Ability { id: "8111", source: "Omega-F" } +947.4 "Hello, Near World 3" #Ability { id: "7B8A", source: "Omega-F" } + +961.6 "Blaster x2" Ability { id: "7E75", source: "Omega-F" } +963.4 "Hello, Distant World 1" Ability { id: "8110", source: "Omega-F" } +963.4 "Hello, Near World 1" Ability { id: "7B89", source: "Omega-F" } +964.4 "Hello, Distant World 2" #Ability { id: "8111", source: "Omega-F" } +964.4 "Hello, Near World 2" #Ability { id: "7B8A", source: "Omega-F" } +965.4 "Hello, Distant World 3" #Ability { id: "8111", source: "Omega-F" } +965.4 "Hello, Near World 3" #Ability { id: "7B8A", source: "Omega-F" } 967.7 "--targetable--" -976.8 "Solar Ray 1" sync / 1[56]:[^:]*:Omega-M:81AD:/ -979.9 "Solar Ray 2" sync / 1[56]:[^:]*:Omega-M:7B02:/ -988.2 "--sync--" sync / 1[56]:[^:]*:Omega-M:7B43:/ -998.5 "Blind Faith" sync / 1[56]:[^:]*:Omega-M:7B87:/ -999.7 "Blind Faith Enrage" sync / 1[56]:[^:]*:Omega-F:7F73:/ +976.8 "Solar Ray 1" Ability { id: "81AD", source: "Omega-M" } +979.9 "Solar Ray 2" Ability { id: "7B02", source: "Omega-M" } +988.2 "--sync--" Ability { id: "7B43", source: "Omega-M" } +998.5 "Blind Faith" Ability { id: "7B87", source: "Omega-M" } +999.7 "Blind Faith Enrage" Ability { id: "7F73", source: "Omega-F" } ### P6: Alpha Omega # Blind Faith DPS check passed -1100.0 "--sync--" sync / 1[56]:[^:]*:Omega-F:7F72:/ window 1100,0 +1100.0 "--sync--" Ability { id: "7F72", source: "Omega-F" } window 1100,0 1154.7 "--targetable--" # LB3 Check -1167.8 "Cosmo Memory" sync / 1[56]:[^:]*:Alpha Omega:7BA1:/ -1171.9 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1172.8 "Flash Gale 1" sync / 1[56]:[^:]*:Omega-F:7DDF:/ -1175.1 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1176.0 "Flash Gale 2" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ - -1182.2 "Cosmo Arrow" sync / 1[56]:[^:]*:Alpha Omega:7BA2:/ duration 14 -1196.9 "Cosmo Dive" sync / 1[56]:[^:]*:Alpha Omega:7BA6:/ -1199.3 "Cosmo Dive Far" #sync / 1[56]:[^:]*:Alpha Omega:7BA8:/ -1199.3 "Cosmo Dive Near x2" #sync / 1[56]:[^:]*:Alpha Omega:7BA7:/ -1206.1 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1207.0 "Flash Gale 1" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ -1209.3 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1210.2 "Flash Gale 2" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ - -1215.4 "Unlimited Wave Cannon" sync / 1[56]:[^:]*:Alpha Omega:7BAC:/ -1223.4 "Wave Cannon Puddle 1" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1225.2 "Wave Cannon Puddle 2" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1227.1 "Wave Cannon Puddle 3" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1229.0 "Wave Cannon Puddle 4" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1230.9 "Wave Cannon Puddle 5" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1232.9 "Wave Cannon Puddle 6" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1236.0 "Wave Cannon 1" #sync / 1[56]:[^:]*:Alpha Omega:7BAB:/ -1238.0 "Wave Cannon 2" #sync / 1[56]:[^:]*:Alpha Omega:7BAB:/ -1243.9 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7BA9:/ -1244.3 "Wave Cannon (Wild Charge)" #sync / 1[56]:[^:]*:Alpha Omega:7BAA:/ -1248.4 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1249.3 "Flash Gale 1" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ -1251.6 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1252.5 "Flash Gale 2" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ - -1258.7 "Cosmo Arrow" sync / 1[56]:[^:]*:Alpha Omega:7BA2:/ duration 14 -1269.9 "Wave Cannon 1" #sync / 1[56]:[^:]*:Alpha Omega:7BAB:/ -1271.9 "Wave Cannon 2" #sync / 1[56]:[^:]*:Alpha Omega:7BAB:/ -1277.8 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7BA9:/ -1278.2 "Wave Cannon (Wild Charge)" #sync / 1[56]:[^:]*:Alpha Omega:7BAA:/ -1282.3 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1283.2 "Flash Gale 1" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ -1285.5 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1286.4 "Flash Gale 2" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ - -1291.7 "Unlimited Wave Cannon" sync / 1[56]:[^:]*:Alpha Omega:7BAC:/ -1299.7 "Wave Cannon Puddle 1" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1301.5 "Wave Cannon Puddle 2" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1303.4 "Wave Cannon Puddle 3" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1305.3 "Wave Cannon Puddle 4" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1307.2 "Wave Cannon Puddle 5" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1309.2 "Wave Cannon Puddle 6" #sync / 1[56]:[^:]*:Alpha Omega:7BAF:/ -1310.0 "Cosmo Dive" sync / 1[56]:[^:]*:Alpha Omega:7BA6:/ -1312.4 "Cosmo Dive Far" #sync / 1[56]:[^:]*:Alpha Omega:7BA8:/ -1312.4 "Cosmo Dive Near x2" #sync / 1[56]:[^:]*:Alpha Omega:7BA7:/ -1319.2 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1320.1 "Flash Gale 1" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ -1322.4 "--sync--" sync / 1[56]:[^:]*:Alpha Omega:7C03:/ -1323.2 "Flash Gale 2" sync / 1[56]:[^:]*:Alpha Omega:7DDF:/ +1167.8 "Cosmo Memory" Ability { id: "7BA1", source: "Alpha Omega" } +1171.9 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1172.8 "Flash Gale 1" Ability { id: "7DDF", source: "Omega-F" } +1175.1 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1176.0 "Flash Gale 2" Ability { id: "7DDF", source: "Alpha Omega" } + +1182.2 "Cosmo Arrow" Ability { id: "7BA2", source: "Alpha Omega" } duration 14 +1196.9 "Cosmo Dive" Ability { id: "7BA6", source: "Alpha Omega" } +1199.3 "Cosmo Dive Far" #Ability { id: "7BA8", source: "Alpha Omega" } +1199.3 "Cosmo Dive Near x2" #Ability { id: "7BA7", source: "Alpha Omega" } +1206.1 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1207.0 "Flash Gale 1" Ability { id: "7DDF", source: "Alpha Omega" } +1209.3 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1210.2 "Flash Gale 2" Ability { id: "7DDF", source: "Alpha Omega" } + +1215.4 "Unlimited Wave Cannon" Ability { id: "7BAC", source: "Alpha Omega" } +1223.4 "Wave Cannon Puddle 1" #Ability { id: "7BAF", source: "Alpha Omega" } +1225.2 "Wave Cannon Puddle 2" #Ability { id: "7BAF", source: "Alpha Omega" } +1227.1 "Wave Cannon Puddle 3" #Ability { id: "7BAF", source: "Alpha Omega" } +1229.0 "Wave Cannon Puddle 4" #Ability { id: "7BAF", source: "Alpha Omega" } +1230.9 "Wave Cannon Puddle 5" #Ability { id: "7BAF", source: "Alpha Omega" } +1232.9 "Wave Cannon Puddle 6" #Ability { id: "7BAF", source: "Alpha Omega" } +1236.0 "Wave Cannon 1" #Ability { id: "7BAB", source: "Alpha Omega" } +1238.0 "Wave Cannon 2" #Ability { id: "7BAB", source: "Alpha Omega" } +1243.9 "--sync--" Ability { id: "7BA9", source: "Alpha Omega" } +1244.3 "Wave Cannon (Wild Charge)" #Ability { id: "7BAA", source: "Alpha Omega" } +1248.4 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1249.3 "Flash Gale 1" Ability { id: "7DDF", source: "Alpha Omega" } +1251.6 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1252.5 "Flash Gale 2" Ability { id: "7DDF", source: "Alpha Omega" } + +1258.7 "Cosmo Arrow" Ability { id: "7BA2", source: "Alpha Omega" } duration 14 +1269.9 "Wave Cannon 1" #Ability { id: "7BAB", source: "Alpha Omega" } +1271.9 "Wave Cannon 2" #Ability { id: "7BAB", source: "Alpha Omega" } +1277.8 "--sync--" Ability { id: "7BA9", source: "Alpha Omega" } +1278.2 "Wave Cannon (Wild Charge)" #Ability { id: "7BAA", source: "Alpha Omega" } +1282.3 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1283.2 "Flash Gale 1" Ability { id: "7DDF", source: "Alpha Omega" } +1285.5 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1286.4 "Flash Gale 2" Ability { id: "7DDF", source: "Alpha Omega" } + +1291.7 "Unlimited Wave Cannon" Ability { id: "7BAC", source: "Alpha Omega" } +1299.7 "Wave Cannon Puddle 1" #Ability { id: "7BAF", source: "Alpha Omega" } +1301.5 "Wave Cannon Puddle 2" #Ability { id: "7BAF", source: "Alpha Omega" } +1303.4 "Wave Cannon Puddle 3" #Ability { id: "7BAF", source: "Alpha Omega" } +1305.3 "Wave Cannon Puddle 4" #Ability { id: "7BAF", source: "Alpha Omega" } +1307.2 "Wave Cannon Puddle 5" #Ability { id: "7BAF", source: "Alpha Omega" } +1309.2 "Wave Cannon Puddle 6" #Ability { id: "7BAF", source: "Alpha Omega" } +1310.0 "Cosmo Dive" Ability { id: "7BA6", source: "Alpha Omega" } +1312.4 "Cosmo Dive Far" #Ability { id: "7BA8", source: "Alpha Omega" } +1312.4 "Cosmo Dive Near x2" #Ability { id: "7BA7", source: "Alpha Omega" } +1319.2 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1320.1 "Flash Gale 1" Ability { id: "7DDF", source: "Alpha Omega" } +1322.4 "--sync--" Ability { id: "7C03", source: "Alpha Omega" } +1323.2 "Flash Gale 2" Ability { id: "7DDF", source: "Alpha Omega" } # Range/Caster Brilliant Dynamis Checks -1331.6 "Cosmo Meteor" sync / 1[56]:[^:]*:Alpha Omega:7BB0:/ -1335.6 "Cosmo Meteor Baits" sync / 1[56]:[^:]*:Alpha Omega:7BB2:/ +1331.6 "Cosmo Meteor" Ability { id: "7BB0", source: "Alpha Omega" } +1335.6 "Cosmo Meteor Baits" Ability { id: "7BB2", source: "Alpha Omega" } -1336.7 "Cosmo Meteor 1 x4" #sync / 1[56]:[^:]*:Alpha Omega:7FBB:/ -1337.7 "Cosmo Meteor 2 x4" #sync / 1[56]:[^:]*:Alpha Omega:7FBB:/ +1336.7 "Cosmo Meteor 1 x4" #Ability { id: "7FBB", source: "Alpha Omega" } +1337.7 "Cosmo Meteor 2 x4" #Ability { id: "7FBB", source: "Alpha Omega" } # TODO: Adjust targetable 1339.3 "--adds targetable--" -1342.7 "Cosmo Meteor 1 x4" #sync / 1[56]:[^:]*:Alpha Omega:7FBB:/ -1343.7 "Cosmo Meteor 2 x4" #sync / 1[56]:[^:]*:Alpha Omega:7FBB:/ +1342.7 "Cosmo Meteor 1 x4" #Ability { id: "7FBB", source: "Alpha Omega" } +1343.7 "Cosmo Meteor 2 x4" #Ability { id: "7FBB", source: "Alpha Omega" } -1354.7 "Cosmo Meteor Stack" sync / 1[56]:[^:]*:Alpha Omega:7BB3:/ -1354.7 "Cosmo Meteor Flare x3" sync / 1[56]:[^:]*:Alpha Omega:7BB4:/ -1355.7 "Cosmo Meteor" sync / 1[56]:[^:]*:Alpha Omega:7BB1:/ -1357.0 "Cosmo Meteor Enrage" sync / 1[56]:[^:]*:Cosmo Meteor:7BB5:/ +1354.7 "Cosmo Meteor Stack" Ability { id: "7BB3", source: "Alpha Omega" } +1354.7 "Cosmo Meteor Flare x3" Ability { id: "7BB4", source: "Alpha Omega" } +1355.7 "Cosmo Meteor" Ability { id: "7BB1", source: "Alpha Omega" } +1357.0 "Cosmo Meteor Enrage" Ability { id: "7BB5", source: "Cosmo Meteor" } # Tank 1 and Healer 1 Brilliant Dynamis Checks -1361.7 "--sync--" sync / 14:[^:]*:Alpha Omega:7BB6:/ window 5,5 -1366.7 "Magic Number" sync / 1[56]:[^:]*:Alpha Omega:7BB6:/ +1361.7 "--sync--" StartsUsing { id: "7BB6", source: "Alpha Omega" } window 5,5 +1366.7 "Magic Number" Ability { id: "7BB6", source: "Alpha Omega" } # Tank 2 and Healer 2 Brilliant Dynamis Checks -1377.8 "--sync--" sync / 14:[^:]*:Alpha Omega:7BB6:/ window 5,5 -1382.8 "Magic Number" sync / 1[56]:[^:]*:Alpha Omega:7BB6:/ +1377.8 "--sync--" StartsUsing { id: "7BB6", source: "Alpha Omega" } window 5,5 +1382.8 "Magic Number" Ability { id: "7BB6", source: "Alpha Omega" } -1391.9 "--sync--" sync / 14:[^:]*:Alpha Omega:7BA0:/ window 50,50 +1391.9 "--sync--" StartsUsing { id: "7BA0", source: "Alpha Omega" } window 50,50 # The cast bar and logs say "16 seconds" but it appears to be ~30s in practice. -1421.9 "Run: ****mi* Enrage" sync / 1[56]:[^:]*:Alpha Omega:7BA0:/ +1421.9 "Run: ****mi* Enrage" Ability { id: "7BA0", source: "Alpha Omega" } diff --git a/ui/raidboss/raidboss_config.ts b/ui/raidboss/raidboss_config.ts index c3093ab1f5..240d51fded 100644 --- a/ui/raidboss/raidboss_config.ts +++ b/ui/raidboss/raidboss_config.ts @@ -2195,6 +2195,13 @@ const templateOptions: OptionsTemplate = { 'Full Job (Warrior)': 'jobFull', 'Full Name (Tini Poutini)': 'name', }, + de: { + 'Spitzname (Tini)': 'nick', + 'Rolle (Tank)': 'role', + 'Job (WAR)': 'job', + 'Job ausgeschrieben (Warrior)': 'jobFull', + 'Kompletter Name (Tini Poutini)': 'name', + }, ja: { 'あだ名 (Tini)': 'nick', 'ロール (ヒーラー)': 'role', diff --git a/util/coverage/coverage.ts b/util/coverage/coverage.ts index 2bf1c3d6e2..4ef6ad11ce 100644 --- a/util/coverage/coverage.ts +++ b/util/coverage/coverage.ts @@ -299,6 +299,7 @@ const translationGridHeaders = { }, missingFiles: { en: 'Missing', + de: 'Fehlend', ja: '欠落', cn: '缺失', ko: '누락됨', diff --git a/util/logtools/encounter_tools.ts b/util/logtools/encounter_tools.ts index c8fdee9424..8ae2463d97 100644 --- a/util/logtools/encounter_tools.ts +++ b/util/logtools/encounter_tools.ts @@ -129,11 +129,11 @@ export class EncounterFinder { const cZ = this.regex.changeZone.exec(line)?.groups; if (cZ) { - if (this.currentZone.zoneName === cZ.name) { - // Zoning into the same zone, possibly a d/c situation. - // Don't stop anything? - return; - } + // Note this could happen in the case of a d/c, + // however a log splitting scenario could only include + // the relevant change zone lines and not anything else, + // which is a much more common scenario, so don't check if + // this is the "same zone". // If we changed zones, we have definitely stopped fighting. // Therefore we can safely initialize everything. diff --git a/util/sync_files.ts b/util/sync_files.ts index 4092867d9f..46ce9d97f8 100644 --- a/util/sync_files.ts +++ b/util/sync_files.ts @@ -23,7 +23,7 @@ export type ZoneReplace = { const zoneReplace: ZoneReplace[] = [ { - // Criterion + // Sildihn Criterion fileMap: { 'ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane.ts': 'ui/raidboss/data/06-ew/dungeon/another_sildihn_subterrane-savage.ts', @@ -274,7 +274,7 @@ const zoneReplace: ZoneReplace[] = [ }, }, { - // Criterion + // Mount Rokkon Criterion fileMap: { 'ui/raidboss/data/06-ew/dungeon/another_mount_rokkon.ts': 'ui/raidboss/data/06-ew/dungeon/another_mount_rokkon-savage.ts', @@ -555,6 +555,177 @@ const zoneReplace: ZoneReplace[] = [ '14B5': '89F4', // Comet }, }, + { + // Aloalo Criterion + fileMap: { + 'ui/raidboss/data/06-ew/dungeon/another_aloalo_island.ts': + 'ui/raidboss/data/06-ew/dungeon/another_aloalo_island-savage.ts', + 'ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island.ts': + 'ui/oopsyraidsy/data/06-ew/dungeon/another_aloalo_island-savage.ts', + 'ui/raidboss/data/06-ew/dungeon/another_aloalo_island.txt': + 'ui/raidboss/data/06-ew/dungeon/another_aloalo_island-savage.txt', + }, + prefix: { 'AAI': 'AAIS' }, + other: { + 'AnotherAloaloIsland': 'AnotherAloaloIslandSavage', + 'another_aloalo_island.txt': 'another_aloalo_island-savage.txt', + '# Another Aloalo Island': '# Another Aloalo Island (Savage)', + '\(\'AAI ': '\(\'AAIS ', + }, + // eslint-disable-next-line max-len + // grep "^# [A-F0-9]\{4\} " ui/raidboss/data/06-ew/dungeon/another_aloalo_island.txt | sort | sed "s/^..//" | sed "s/^\(....\) \(.*\)$/ '\1': 'TODO', \/\/ \2/" + // TODO: missing various enrages (both listed and likely unlisted) + id: { + '7A56': '7A56', // --sync-- various auto damage (trash 1) + '7A58': '7A58', // --sync-- various auto damage (trash 2) + '8874': '8874', // --sync-- repositioning for Lala + '8889': '8BE0', // Angular Addition self-targeted ability to give boss III + '888B': '8BE2', // Arcane Blight self-targeted cast for initial back-safe 270 degree rotating cleave + '888C': '8BE3', // Arcane Blight self-targeted cast for initial front-safe 270 degree rotating cleave + '888D': '8BE4', // Arcane Blight self-targeted cast for initial east-safe 270 degree rotating cleave + '888E': '8BE5', // Arcane Blight self-targeted cast for initial west-safe 270 degree rotating cleave + '888F': '8BE6', // Arcane Blight cast and damage from 270 degree rotating cleave + '8890': '8BE7', // Arcane Array self-targeted cast to summon moving blue squares (#1) + '8891': '8BE8', // Bright Pulse cast and damage for initial blue square + '8892': '8BE9', // Bright Pulse damage from moving blue square + '8893': '8BEA', // Inferno Divide orange square cross explosion damage during Spatial Tactics + '8894': '8BEB', // Radiance damage from Arcane Globe being hit by a blue square (Arcane Array #1, #3) + '8895': '8BEC', // Analysis self-targeted cast before giving players + '8898': '8BEF', // Planar Tactics self-targeted cast before Arcane Mines + '8899': '8BF0', // Arcane Mine self-targeted cast to create 8 Arcane Mine squares + '889A': '8BF1', // Arcane Mine cast and damage for initial Arcane Mine squares + '889B': '8BF2', // Arcane Combustion damage from walking over an Arcane Mine + '889C': '8BF3', // Massive Explosion damage from failing to resolve Subractive Suppressor Alpha + '889D': '8BF4', // Massive Explosion damage from failing to resolve Subractive Suppressor Beta + '889E': '8BF5', // Symmetric Surge damage from two person stack that gives magic vuln up + '889F': '8BF6', // Arcane Array self-targeted cast to summon moving blue squares (#2) + '88A0': '8BF7', // Spatial Tactics self-targeted cast prior to Arcane Array 2 + '88A1': '8BF8', // Symmetric Surge self-targeted cast before this mechanic + '88A2': '8BF9', // Arcane Plot self-targeted cast to summon blue squares for Symmetric Surge + '88A3': '8BFA', // Constructive Figure self-targeted cast that summons Aloalo Golem on edge + '88A4': '8BFB', // Aero II cast and line damage from Aloalo Golem during Symmetric Surge + '88A5': '8BFC', // Arcane Point self-targeted cast that gives players 88A6 Powerful Light spreads + '88A6': '8BFD', // Powerful Light spread damage on players that turn the squares they are on blue + '88A7': '8BFE', // Explosive Theorem self-targeted cast for very large spreads + '88A8': '8BFF', // Explosive Theorem cast and damage on players for spreads with Telluric Theorem puddles + '88A9': '8C00', // Telluric Theorem cast and damage for large puddles from Explosive Theorem + '88AD': '8C04', // Strategic Strike cast and damage for non-cleaving 3x tankbuster + '88AE': '8C05', // Inferno Theorem cast and raidwide damage + '8925': '8925', // Locked and Loaded ability during 894A Trick Reload when a bullet is in the gun + '8926': '8926', // Misload ability during 894A Trick Reload when a bullet missed the gun oops + '8927': '8927', // --sync-- repositioning from Statice + '8947': '8964', // --sync-- auto damage from Statice + '8948': '8965', // Shocking Abandon cast and tankbuster damage + '8949': '8966', // Aero IV cast and raidwide damage + '894A': '8967', // Trick Reload self-targeted cast to load gun with 8925/8926 + '894B': '8968', // Trigger Happy self-targeted cast for limit cut dart board + '894C': '8969', // Trigger Happy cast and damage for limit cut dart board (filled pie slice) + '894D': '8927', // Surprise Balloon self-targeted cast + '894E': '896B', // Pop knockback from Surprise Balloon being popped + '894F': '896C', // Surprise Needle short cast and ability blue line aoe from needle adds that pop balloons + '8954': '8971', // Uncommon Ground light damage on people who are not on a dartboard color with Bull's-eye + '8955': '8972', // Present Box self-targeted cast for bombs/donuts/missiles/hands + '8956': '8973', // Faerie Ring cast and damage for donut rings during Present Box + '8957': '8974', // Burst high damage from running into Surprising Missile tethered add + '8958': '8975', // Death by Claw high damage from running into Surprising Claw tethered add + '8959': '8976', // Trapshooting self-targeted cast after Trick Reload (some instances are 8D1A) + '895A': '8977', // Trapshooting stack damage from Trick Reload + '895B': '8978', // Trapshooting spread damage from Trick Reload + '895C': '8979', // Ring a Ring o' Explosions self-targeted cast for rotating bombs + '895D': '897A', // Burst cast and damage from bomb explosion + '895E': '897B', // Fireworks self-targeted cast + '895F': '897C', // Fireworks two person stack damage during Present Box / Pinwheeling Dartboard + '8960': '897D', // Fireworks spread damage during Present Box / Pinwheeling Dartboard + '8963': '8980', // Beguiling Glitter self-targeted cast to give players Face debuffs + '8982': '896F', // Fire Spread self-targeted damage for initial rotating fire (from Ball of Fire) + '8987': '8988', // Trigger Happy cast and zero damage for limit cut dart board (empty pie slice) + '89F9': '89FB', // Fire Spread ongoing rotating fire damage (from Statice) + '8A6A': '8A6A', // --sync-- ability on Bomb when rotating + '8A77': '8A77', // --sync-- Ketuduke repositioning + '8A82': '8A82', // Riptide ability on players from Angry Seas Airy Bubble when you step in one + '8A83': '8A83', // Fetters ability on players from Angry Seas Airy Bubble when you step in one after 8A82 Riptide + '8AA7': '8AA7', // --sync-- auto damage from Ketuduke + '8AA8': '8AA8', // Spring Crystals cast and ability to summon Spring Crystal adds (all flavors) + '8AA9': '8AD9', // 衝撃 self-targeted ability from Spring Crystal orbs + '8AAA': '8ADA', // 衝撃 self-targeted ability from Spring Crystal rupees + '8AAB': '8ADB', // Saturate cast and damage from Spring Crystal orb circle + '8AAC': '8ADC', // Saturate cast and damage from Spring Crystal rupee line laser + '8AAD': '8AAD', // Bubble Net self-targeted cast before Bubbles along with 8AAE during Spring Crystals 1 + '8AAE': '8ADD', // Bubble Net cast and ability on players that adds Bubbles/Fetters debuffs during Spring Crystals 1 + '8AAF': '8AAF', // Fluke Typhoon self-targeted cast before 8AB0 knockback during Spring Crystals 3 + '8AB0': '8AB0', // Fluke Typhoon cast and knockback ability on Spring Crystal and players during Spring Crystals 3 + '8AB1': '8AB1', // Fluke Gale self-targeted cast that adds limit cut winds + '8AB2': '8AB2', // Fluke Gale cast and ability for limit cut 1 wind + '8AB3': '8AB3', // Fluke Gale cast and ability for limit cut 2 wind + '8AB4': '8AB4', // Hydrofall self-targeted cast that adds stack markers + '8AB5': '8AB5', // Hydrofall self-targeted "stack second" ability before Blowing Bubbles + '8AB6': '8AB6', // Hydrofall ability on players that adds stack debuffs + '8AB7': '8ADE', // Hydrofall damage from stack debuffs + '8AB8': '8AB8', // Hydrobullet self-targeted cast that adds stack markers + '8AB9': '8AB9', // Hydrobullet ability on players that adds spread debuffs + '8ABA': '8ADF', // Hydrobullet damage from spread debuffs + '8ABB': '8ABB', // Strewn Bubbles self-targeted cast before 8ABC Sphere Shatter moving arches + '8ABC': '8AE0', // Sphere Shatter damage from moving arches + '8ABD': '8ABD', // Blowing Bubbles self-targeted cast that adds Airy Bubble Adds + '8ABE': '8ABE', // Riptide ability on players from Blowing Bubbles Airy Bubble when you step in one + '8ABF': '8ABF', // Fetters ability on players from Blowing Bubbles Airy Bubble when you step in one after 8ABE Riptide + '8AC0': '8AC0', // Angry Seas self-targeted cast for 8AC1 red line knockback + '8AC1': '8AE1', // Angry Seas cast and knockback damage from red line + '8AC2': '8AE2', // Burst tower damage + '8AC3': '8AE3', // Big Burst tower failure damage + '8AC4': '8AC4', // Roar self-targeted cast that summons Zaratan adds + '8AC5': '8AC5', // Bubble Net self-targeted cast before Bubbles along with 8AC6 during Spring Crystals 2 + '8AC6': '8AE4', // Bubble Net cast and ability on players that adds Bubbles/Fetters debuffs during Spring Crystals 2 + '8AC7': '8AC7', // Updraft self-targeted cast to boost adds and players into the air + '8AC8': '8AC8', // Updraft ability on players for 8AC7 Updraft + '8AC9': '8AE5', // Hundred Lashings cast and damage for non-bubbled Zaratan 180 cleave (no damage on bubbled players) + '8ACA': '8ACA', // Hundred Lashings self-targeted cast for bubbled Zaratan adds + '8ACB': '8AE6', // Hundred Lashings cast and damage for bubbled Zaratan 180 cleave (no damage on non-bubbled players) + '8ACC': '8AE7', // Receding Twintides cast and damage for initial out during out->in + '8ACD': '8AE8', // Near Tide fast cast and damage for second out during in->out with 8ACE Encroaching Twintides + '8ACE': '8AE9', // Encroaching Twintides cast and damage for initial in during in->out + '8ACF': '8AEA', // Far Tide fast cast and damage for second in during out->in with 8ACC Receding Twintides + '8AD0': '8AD0', // Hydrobomb self-targeted cast for 8AD1 puddles + '8AD1': '8AEB', // Hydrobomb cast and damage for 3x puddles duruing 8ABD Blowing Bubbles + '8AD4': '8AD4', // Tidal Roar self-targeted cast for raidwide aoe + '8AD5': '8AED', // Tidal Roar damage from 8AD4 + '8AD6': 'TODO', // Tidal Roar cast and enrage damage + '8BB8': '8BC9', // Tail Screw casted damage from Kiwakin baited circle + '8BB9': '8BCA', // Bubble Shower casted damage from Snipper front conal + '8BBA': '8BCB', // Crab Dribble fast casted damage from Snipper back conal after Bubble Shower 8BB9 + '8BBB': '8C4F', // Cross Attack casted damage from Monk tankbuster + '8BBD': '8C4B', // Hydrocannon casted damage from Ray front line + '8BBE': '8BCD', // Electric Whorl casted damage from Ray "get in" + '8BBF': '8BCE', // Expulsion casted damage from Ray "get out" + '8BC0': '8BCF', // --sync-- damage from Twister tornados + '8BC1': '8BD4', // Ovation cast and damage from Wood Golem front line aoe + '8BC5': '8C3A', // Gravity Force cast and stack damage from Islekeeper + '8C23': 'TODO', // Aero IV cast and enrage damage + '8C24': 'TODO', // Aero IV post-enrage follow-up damage just in case + '8C25': 'TODO', // Inferno Theorem cast and enrage damage + '8C2F': 'TODO', // Ancient Quaga cast and damage for Islekeeper raidwide enrage + '8C4C': '8BD2', // Ancient Aero III interruptable cast and damage for Wood Golem raidwide + '8C4D': '8BD3', // Tornado cast and damage from Wood Golem that binds the initial target and heavies all targets + '8C4E': '8C39', // Ancient Quaga cast and damage for Islekeeper raidwide + '8C53': '8BC4', // Lead Hook damage from hit 3 + '8C62': '8BC6', // Lead Hook damage from hit 2 + '8C63': '8BC8', // Sharp Strike casted damage from Kiwakin tank buster with a concussion dot + '8C64': '8BCC', // Water III casted damage from Snipper stack marker + '8C65': '8BD1', // Hydroshot casted damage from Monk knockback line with a dot + '8C6D': '8C6D', // Hydrobullet self-targeted "spread second" ability before Blowing Bubbles + '8C6E': '8BC7', // Lead Hook casted damage from Kiwakin 3x tankbuster + '8C6F': '8C3C', // Isle Drop cast and damage for Islekeeper front circle + '8CBC': '8CBF', // Pinwheeling Dartboard self-targeted cast to summon dartboard with rotating fire + '8CBD': '8CC0', // Dartboard of Dancing Explosives self-targeted cast for colored dartboard + '8CBE': '8CC1', // Burning Chains damage from not breaking chains + '8CC2': '8CC3', // Uncommon Ground heavy damage on people who are on the same dartboard color with Bull's-eye + '8CDE': '8CE0', // Targeted Light self-targeted cast for weak spot boss tether + '8CDF': '8CE1', // Targeted Light cast and damage on players for 8CDE + '8D1A': '8D1C', // Trapshooting self-targeted cast after Trick Reload (some instances are 8959) + '8D1F': '8D20', // Radiance damage from Arcane Globe being hit by a blue square (Arcane Array #2) + '8D2E': '8D2F', // Angular Addition self-targeted ability to give boss V + }, + }, ]; const processFile = (filename: string, zone: ZoneReplace, inputText: string): string => {